From d88d442a6c118091fcdd9ac2c11f878ba499400d Mon Sep 17 00:00:00 2001 From: Nif <64535498+Nif00@users.noreply.github.com> Date: Wed, 22 Jul 2026 00:04:52 +0300 Subject: [PATCH] Add Manhattan 3D fire flow simulation --- .gitattributes | 3 + PLAN.md | 29 +- README.md | 32 +- data/processed/manhattan_buildings.json | 3 + data/processed/manhattan_network.json | 3 + data/raw/manhattan_buildings_metadata.json | 21 + data/raw/manhattan_metadata.json | 21 + data/raw/manhattan_osm_buildings.json | 3 + data/raw/manhattan_osm_roads.json | 1137548 +++++++++++++++++ launch_manhattan_ui.bat | 35 + launch_polatli_ui.bat | 8 +- src/fire_spread/buildings.py | 114 +- src/fire_spread/osm.py | 2 + src/fire_spread/propagation.py | 22 +- src/fire_spread/urban_wind.py | 239 + src/fire_spread/web.py | 255 +- tests/test_osm.py | 20 + tests/test_real_dataset.py | 15 + tests/test_urban_wind.py | 45 + web/app.js | 934 +- web/index.html | 58 +- web/styles.css | 70 +- 22 files changed, 1139155 insertions(+), 325 deletions(-) create mode 100644 .gitattributes create mode 100644 data/processed/manhattan_buildings.json create mode 100644 data/processed/manhattan_network.json create mode 100644 data/raw/manhattan_buildings_metadata.json create mode 100644 data/raw/manhattan_metadata.json create mode 100644 data/raw/manhattan_osm_buildings.json create mode 100644 data/raw/manhattan_osm_roads.json create mode 100644 launch_manhattan_ui.bat create mode 100644 src/fire_spread/urban_wind.py create mode 100644 tests/test_urban_wind.py diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f859874 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +data/processed/manhattan_buildings.json filter=lfs diff=lfs merge=lfs -text +data/processed/manhattan_network.json filter=lfs diff=lfs merge=lfs -text +data/raw/manhattan_osm_buildings.json filter=lfs diff=lfs merge=lfs -text diff --git a/PLAN.md b/PLAN.md index 84aecb4..9331124 100644 --- a/PLAN.md +++ b/PLAN.md @@ -32,7 +32,7 @@ SimulationResult -> ranked hotspots / downloadable JSON / restrained local web U - `fire_spread.buildings`: converts preserved direct OSM XML map tiles into projected building footprints and height-confidence records. - `fire_spread.propagation`: configurable edge traversal and event-driven spread. - `fire_spread.cli`: a small command-line entry point for repeatable runs. -- `fire_spread.web`: local HTTP API and small static UI for scenario controls, network view, 2.5D building rendering, and hotspot output. +- `fire_spread.web`: local HTTP API and small static UI for scenario controls, interactive 3D network/building rendering, and hotspot output. - `tests`: contract tests for graph validation, directional links, modifiers, horizon handling, deterministic results, OSM conversion, and building provenance. - `data/raw`: preserved source city files and provenance records. - `data/processed`: normalized network artifacts and derived simulation outputs. @@ -60,9 +60,18 @@ SimulationResult -> ranked hotspots / downloadable JSON / restrained local web U } ``` -Coordinates are projected/local meters in normalized data. The Polatlı adapter uses a local equirectangular projection centered on the Nominatim town-relation result, with the source WGS84 coordinates retained in node metadata. +Coordinates are projected/local meters in normalized data. The Manhattan and Polatlı adapters use a local equirectangular projection centered on each study area, with the source WGS84 coordinates retained in node metadata. -## Real starting dataset: Polatlı, Ankara +## Current starting dataset: Manhattan Island, New York + +- Source: OpenStreetMap road and building geometry retrieved from the public Overpass API. +- Coverage: `40.7000,-74.0200` to `40.8825,-73.9065`, covering Manhattan Island and its immediate shoreline. +- Normalized graph: 147,121 nodes and 161,601 links from 30,935 highway ways. +- Building layer: 157,202 OSM building/building-part footprints; 116,917 have explicit height tags, 2,171 have level estimates, and 38,114 are footprint-only. +- Files: `data/raw/manhattan_osm_roads.json`, `data/raw/manhattan_osm_buildings.json`, `data/raw/manhattan_metadata.json`, `data/raw/manhattan_buildings_metadata.json`, `data/processed/manhattan_network.json`, and `data/processed/manhattan_buildings.json`. +- License: OpenStreetMap data © OpenStreetMap contributors, ODbL 1.0. Query, coverage, origin, and height policy are preserved in the metadata files and normalized outputs. + +## Legacy regression dataset: Polatlı, Ankara - Source: OpenStreetMap road geometry retrieved from the public Overpass API. - Coverage: `39.54,32.08` to `39.63,32.22`, covering the Polatlı urban area and immediate outskirts rather than the full administrative district. @@ -75,17 +84,17 @@ Coordinates are projected/local meters in normalized data. The Polatlı adapter ## Current boundary decision -The street graph remains the only spatial input to fire propagation. The OSM building layer is currently presentation-only: it drives the 2.5D viewer but does not alter spread speed, connectivity, or hotspot scores. +The street graph remains the connectivity input to fire propagation. The web UI now offers an experimental QUIC-URB-inspired urban-wind layer: OSM building footprints are rasterized into a regular obstacle grid, and sampled local wind speed/direction alter edge spread speed. This is a transparent diagnostic heuristic, not a fluid solver. The web result also derives an adjacency layer that marks buildings near an activated road segment or ignition node as burning for 3D visualization. -The viewer exposes orthographic and perspective projections plus a clearly labeled vertical exaggeration control. Unknown building heights remain flat in source-only mode; the optional 3 m massing fallback is a visualization assumption, not a measured height. +The viewer exposes orthographic and perspective 3D cameras plus a clearly labeled vertical exaggeration control. Unknown building heights remain flat in source-only mode; the optional 3 m massing fallback is a visualization assumption, not a measured height. OSM `height`, `building:levels`, `min_height`, and roof metadata are preserved for rendering; sparse OSM node `ele` values are also carried when present. ## Simulation phases 1. **Baseline graph:** load and validate a normalized network; reject missing endpoints, duplicate IDs, non-positive lengths, and invalid parameter ranges. 2. **Deterministic propagation:** simulate one or more ignition nodes over a finite time horizon; preserve earliest arrival per node and link interval. 3. **Hotspot ranking:** rank links by normalized advancement score and nodes by arrival/exposure metrics. -4. **City ingestion:** retrieve and preserve the Polatlı OSM extract, reproject to local meters, split ways at geometry vertices, preserve one-way/surface/width tags, and validate topology. -5. **Current web UI:** run real scenarios against the Polatlı graph, show the full network and activated links, and allow JSON result download. +4. **City ingestion:** retrieve and preserve a city OSM extract, reproject to local meters, split ways at geometry vertices, preserve one-way/surface/width tags, and validate topology. +5. **Current web UI:** run real scenarios against the Manhattan graph, show the detailed 3D building layer, activated links, and local flow-vector fields, and allow JSON result download. 6. **Calibration:** compare modeled travel times and spread patterns against historical incidents or expert-labelled scenarios; keep calibrated coefficients versioned. 7. **Scenario analysis:** support multiple ignitions, barriers/closures, time-varying wind, fuel/moisture rasters, and repeated stochastic runs only when validated data exists. Building footprints and 3D tags may become simulation inputs only after their effect is specified and validated. 8. **Presentation:** export GeoJSON and extend the current map view with a timestamp slider and richer city layers after the baseline is validated. @@ -100,9 +109,9 @@ The viewer exposes orthographic and perspective projections plus a clearly label ## Definition of done for the current baseline -- The preserved Polatlı OSM road and building extracts load from disk through source-specific adapters. -- A normalized Polatlı graph and building layer are available with provenance, local-meter coordinates, and height-source labels. +- The preserved Manhattan OSM road and building extracts load from disk through source-specific adapters. +- A normalized Manhattan graph and detailed building layer are available with provenance, local-meter coordinates, and height-source labels. - A CLI and local web UI run real propagation scenarios against the road graph. -- The UI offers orthographic and perspective 2.5D views without feeding unvalidated building heights into propagation. +- The UI offers orthographic and perspective 3D views without feeding unvalidated building heights into propagation. - Outputs include arrival times, activated links, ranked advancement scores, and dataset/scenario provenance. - Tests cover the observable baseline contracts, OSM conversion, and building conversion boundaries. diff --git a/README.md b/README.md index cf2b78a..dc39cb5 100644 --- a/README.md +++ b/README.md @@ -4,21 +4,21 @@ A small, reproducible baseline for simulating an advancing fire front over urban ## Status -The repository contains a runnable baseline against a preserved real OpenStreetMap extract for Polatlı, Ankara: +The repository contains a runnable baseline against a preserved real OpenStreetMap extract for Manhattan Island, New York. The earlier Polatlı extract remains available as a smaller regression dataset: - validated normalized city-network model; -- 1,837 downloaded OSM highway ways with geometry; -- 12,266 normalized nodes and 13,920 street/alley links; -- 12,151 OSM building/building-part footprints for the 2.5D viewer; +- 30,935 downloaded OSM highway ways with geometry; +- 147,121 normalized nodes and 161,601 street/alley links; +- 157,202 OSM building/building-part footprints with height provenance for the 3D viewer; - configurable heuristic spread modifiers; - deterministic event-driven propagation; - JSON input/output CLI; -- local web UI with orthographic/perspective 2.5D views, hotspot ranking, and result download; +- local web UI with interactive WebGL 3D views, hotspot ranking, and result download; - contract tests and a small hand-authored network used only for unit tests. The architecture and staged roadmap are in [`PLAN.md`](PLAN.md). The current model is for exploration and ranking only; it is not a validated fire-behavior or life-safety system. -The current milestone is simulation-first: the real street/alley graph drives propagation. OSM building footprints and height tags are currently presentation-only and do not alter spread calculations. +The current milestone is simulation-first: the real street/alley graph drives propagation. The web UI now includes an explicitly labeled, experimental QUIC-URB-inspired urban-wind layer that rasterizes OSM footprints and heights, then changes local wind speed and direction along graph links. It is a diagnostic approximation, not the QUIC-URB solver. ## Run the sample @@ -39,29 +39,37 @@ python -m fire_spread --network examples/sample_city.json --ignition A --horizon Write a result file with `--output path/to/result.json`. -## Run the real Polatlı dataset +## Run the Manhattan dataset + +```text +python -m fire_spread --network data/processed/manhattan_network.json --ignition osm:40.7911145:-73.9631218 --horizon-minutes 60 --output data/processed/manhattan_result.json +``` + +The default web dataset is Manhattan Island. Its study area is `40.7000,-74.0200` to `40.8825,-73.9065`; the normalized origin is the center of that bbox. The current extract contains 147,121 nodes, 161,601 links, and 157,202 building/building-part footprints. + +## Run the legacy Polatlı dataset ```text python -m fire_spread --network data/processed/polatli_network.json --ignition osm:39.5852148:32.1436842 --horizon-minutes 60 --output data/processed/polatli_result.json ``` -The default ignition node used by the web UI is the normalized node nearest the Polatlı town-center origin. The exact graph node ID is reported by the UI and `/api/status`. +The legacy dataset's default ignition node is the normalized node nearest the Polatlı town-center origin. The exact graph node ID is reported by the UI and `/api/status`. The raw Overpass road response is preserved at `data/raw/polatli_osm_roads.json`. The building layer is preserved as direct OSM API XML tiles under `data/raw/polatli_osm_map_tiles/`. Queries, bounding boxes, source, license, coordinate origin, and height policy are recorded in `data/raw/polatli_metadata.json` and `data/raw/polatli_buildings_metadata.json`. ## Run the local web UI ```text -python -m fire_spread.web --dataset data/processed/polatli_network.json --buildings data/processed/polatli_buildings.json --host 127.0.0.1 --port 8000 +python -m fire_spread.web --dataset data/processed/manhattan_network.json --buildings data/processed/manhattan_buildings.json --host 127.0.0.1 --port 8000 ``` -On Windows, double-click [`launch_polatli_ui.bat`](launch_polatli_ui.bat). It creates `.venv` on the first run, installs the project, starts the server with the real Polatlı network and building layer, and opens the browser automatically. Press `Ctrl+C` in the launcher window to stop it. +On Windows, double-click [`launch_manhattan_ui.bat`](launch_manhattan_ui.bat). It creates `.venv` on the first run, installs the project, starts the server with the Manhattan network and detailed building layer, and opens the browser automatically. Press `Ctrl+C` in the launcher window to stop it. The older launcher now also points at Manhattan for compatibility. The launcher intentionally prefers the `python` command on `PATH`; `py -3` can select an older installed interpreter even when `python --version` reports 3.11.9. -Open `http://127.0.0.1:8000`. The UI reads the real local graph and building layer, allows a node ignition and parameterized run, supports orthographic and perspective projections, offers source-only or explicitly labeled 3 m massing fallback heights, shows activated links, ranks advancement scores, and downloads the exact JSON result returned by the simulation. +Open `http://127.0.0.1:8000`. The UI reads the real local graph and building layer, extrudes every OSM footprint into a 3D scene, applies tagged heights and `building:levels` estimates, highlights buildings adjacent to the advancing front in bright red, offers source-only or explicitly labeled 3 m massing fallback heights, applies the optional QUIC-URB-inspired urban-wind grid, and can draw a local flow-vector graph around the selected node. It also shows activated links, ranks advancement scores, and downloads the exact JSON result returned by the simulation. -Map navigation: use the mouse wheel to zoom, drag with the left button to pan, and hold `Shift` while dragging (or use the right mouse button) to rotate. `Reset view` restores the fitted scene. +Map navigation: use the mouse wheel or `E`/`Q` to zoom, drag with the left button to orbit, hold `Shift` while dragging (or use the right mouse button) to pan, use `W`/`A`/`S`/`D` to pan, and use the arrow keys to rotate. The scene has no distance fog; `Reset view` restores the fitted scene. Vertical exaggeration is a visual control only. It changes how height is displayed, not the stored OSM heights or fire propagation calculations. diff --git a/data/processed/manhattan_buildings.json b/data/processed/manhattan_buildings.json new file mode 100644 index 0000000..3fb4b53 --- /dev/null +++ b/data/processed/manhattan_buildings.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a966f75a5d6cd6bea79ddcf009acecf3f2e5f6234c9bdb781c008d68815c9fd6 +size 170180052 diff --git a/data/processed/manhattan_network.json b/data/processed/manhattan_network.json new file mode 100644 index 0000000..58eaf5d --- /dev/null +++ b/data/processed/manhattan_network.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1351c809c0bf35cbd1a89d8aa30837821f95cf233ba23201ec9b10eb047301d1 +size 112349066 diff --git a/data/raw/manhattan_buildings_metadata.json b/data/raw/manhattan_buildings_metadata.json new file mode 100644 index 0000000..fb8fe35 --- /dev/null +++ b/data/raw/manhattan_buildings_metadata.json @@ -0,0 +1,21 @@ +{ + "dataset": "Manhattan Island OSM building footprints and 3D tags", + "provider": "OpenStreetMap contributors", + "source_api": "Overpass API", + "source_url": "https://overpass.kumi.systems/api/interpreter", + "license": "OpenStreetMap data © OpenStreetMap contributors, ODbL 1.0", + "bbox": { + "south": 40.7, + "west": -74.02, + "north": 40.8825, + "east": -73.9065 + }, + "bbox_description": "Same Manhattan Island study area as the street graph", + "query": "[out:json][timeout:600];(way[building](40.7000,-74.0200,40.8825,-73.9065);way[\"building:part\"](40.7000,-74.0200,40.8825,-73.9065););out body geom;", + "origin": { + "latitude": 40.79125, + "longitude": -73.96325, + "source": "center of the Manhattan Island study bbox" + }, + "height_policy": "Use height tag when present; otherwise estimate building:levels at 3 metres per level; otherwise retain footprint with height 0 and mark footprint_only" +} diff --git a/data/raw/manhattan_metadata.json b/data/raw/manhattan_metadata.json new file mode 100644 index 0000000..fe30582 --- /dev/null +++ b/data/raw/manhattan_metadata.json @@ -0,0 +1,21 @@ +{ + "dataset": "Manhattan Island urban street network", + "provider": "OpenStreetMap contributors", + "source_api": "Overpass API", + "source_url": "https://overpass.kumi.systems/api/interpreter", + "license": "OpenStreetMap data © OpenStreetMap contributors, ODbL 1.0", + "bbox": { + "south": 40.7, + "west": -74.02, + "north": 40.8825, + "east": -73.9065 + }, + "bbox_description": "Manhattan Island and immediate shoreline study area", + "query": "[out:json][timeout:300];way[highway~\"^(motorway|trunk|primary|secondary|tertiary|unclassified|residential|living_street|service|road|track|pedestrian)$\"](40.7000,-74.0200,40.8825,-73.9065);out body geom;", + "origin": { + "latitude": 40.79125, + "longitude": -73.96325, + "source": "center of the Manhattan Island study bbox" + }, + "downloaded_for": "urban-fire-spread detailed city replacement" +} diff --git a/data/raw/manhattan_osm_buildings.json b/data/raw/manhattan_osm_buildings.json new file mode 100644 index 0000000..f18c34f --- /dev/null +++ b/data/raw/manhattan_osm_buildings.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e2b4a74014f90a5f5f3b642b75cb42ec693097274735c8008cec0e3d3a63254 +size 143505106 diff --git a/data/raw/manhattan_osm_roads.json b/data/raw/manhattan_osm_roads.json new file mode 100644 index 0000000..70da0ec --- /dev/null +++ b/data/raw/manhattan_osm_roads.json @@ -0,0 +1,1137548 @@ +{ + "version": 0.6, + "generator": "Overpass API 0.7.62.11 87bfad18", + "osm3s": { + "timestamp_osm_base": "2026-05-31T22:37:44Z", + "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL." + }, + "elements": [ + +{ + "type": "way", + "id": 5668966, + "bounds": { + "minlat": 40.7982075, + "minlon": -73.9611061, + "maxlat": 40.7984943, + "maxlon": -73.9604229 + }, + "nodes": [ + 4205830390, + 3602678205, + 4205830391 + ], + "geometry": [ + { "lat": 40.7982075, "lon": -73.9604229 }, + { "lat": 40.7983289, "lon": -73.9607088 }, + { "lat": 40.7984943, "lon": -73.9611061 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5668968, + "bounds": { + "minlat": 40.7826383, + "minlon": -73.9820041, + "maxlat": 40.7855915, + "maxlon": -73.9750067 + }, + "nodes": [ + 42421778, + 10039628106, + 8727756094, + 42421776, + 8727756090, + 8709392086, + 42421775, + 11655721345, + 8709392092, + 10037505646, + 6207264916, + 42421772, + 9897810868, + 9897810863, + 42421769 + ], + "geometry": [ + { "lat": 40.7855915, "lon": -73.9820041 }, + { "lat": 40.7855519, "lon": -73.9819094 }, + { "lat": 40.7850874, "lon": -73.9807991 }, + { "lat": 40.7850352, "lon": -73.9806732 }, + { "lat": 40.7849801, "lon": -73.9805399 }, + { "lat": 40.7846117, "lon": -73.9796837 }, + { "lat": 40.7845691, "lon": -73.9795827 }, + { "lat": 40.7844847, "lon": -73.9793825 }, + { "lat": 40.7844428, "lon": -73.9792832 }, + { "lat": 40.7838846, "lon": -73.9779614 }, + { "lat": 40.7838690, "lon": -73.9779225 }, + { "lat": 40.7838280, "lon": -73.9778254 }, + { "lat": 40.7837790, "lon": -73.9777095 }, + { "lat": 40.7826855, "lon": -73.9751186 }, + { "lat": 40.7826383, "lon": -73.9750067 } + ], + "tags": { + "alt_name": "West 80 Street", + "highway": "residential", + "lanes": "2", + "name": "West 80th Street", + "name:ru": "Западная 80-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5668973, + "bounds": { + "minlat": 40.8584081, + "minlon": -73.9314426, + "maxlat": 40.8613637, + "maxlon": -73.9252273 + }, + "nodes": [ + 8904913030, + 9561253106, + 8904913029, + 1253602763, + 6789770917, + 42421785, + 1763749985, + 1763749982, + 1763749983, + 1253602799, + 1253602778, + 1253602808, + 1763749975, + 1763749984, + 1253602787, + 42421786, + 42421788, + 1763749980, + 1764400287, + 11596424577, + 42421791, + 7071351523, + 7045498713, + 7045498726, + 1763748991, + 12998587118, + 7045498716, + 1764400316, + 12998587119, + 4814440061, + 4814440062 + ], + "geometry": [ + { "lat": 40.8590785, "lon": -73.9314426 }, + { "lat": 40.8591582, "lon": -73.9312315 }, + { "lat": 40.8591520, "lon": -73.9312010 }, + { "lat": 40.8591324, "lon": -73.9310907 }, + { "lat": 40.8587815, "lon": -73.9302155 }, + { "lat": 40.8587440, "lon": -73.9301220 }, + { "lat": 40.8584861, "lon": -73.9294511 }, + { "lat": 40.8584402, "lon": -73.9292936 }, + { "lat": 40.8584148, "lon": -73.9291161 }, + { "lat": 40.8584081, "lon": -73.9289784 }, + { "lat": 40.8584145, "lon": -73.9288580 }, + { "lat": 40.8584309, "lon": -73.9286974 }, + { "lat": 40.8584740, "lon": -73.9285588 }, + { "lat": 40.8585330, "lon": -73.9284067 }, + { "lat": 40.8586131, "lon": -73.9282468 }, + { "lat": 40.8590120, "lon": -73.9276250 }, + { "lat": 40.8597008, "lon": -73.9271440 }, + { "lat": 40.8597941, "lon": -73.9270589 }, + { "lat": 40.8598836, "lon": -73.9269013 }, + { "lat": 40.8599064, "lon": -73.9268578 }, + { "lat": 40.8599440, "lon": -73.9267860 }, + { "lat": 40.8602888, "lon": -73.9261216 }, + { "lat": 40.8603223, "lon": -73.9260551 }, + { "lat": 40.8604111, "lon": -73.9258888 }, + { "lat": 40.8604433, "lon": -73.9258300 }, + { "lat": 40.8604695, "lon": -73.9258017 }, + { "lat": 40.8606222, "lon": -73.9256897 }, + { "lat": 40.8612424, "lon": -73.9252356 }, + { "lat": 40.8612673, "lon": -73.9252273 }, + { "lat": 40.8612938, "lon": -73.9252318 }, + { "lat": 40.8613637, "lon": -73.9252612 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "no", + "name": "Hillside Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Hillside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5668977, + "bounds": { + "minlat": 40.7851818, + "minlon": -73.9810702, + "maxlat": 40.7884860, + "maxlon": -73.9731496 + }, + "nodes": [ + 42421820, + 9168918203, + 9168918202, + 10039741675, + 9168918204, + 9168918201, + 8727756063, + 42421810, + 8727756059, + 7182103205, + 42421809, + 11655721355, + 7182103207, + 10039932481, + 42421806, + 10039932492, + 8402020636, + 10042554907, + 42421803 + ], + "geometry": [ + { "lat": 40.7884860, "lon": -73.9810702 }, + { "lat": 40.7884811, "lon": -73.9810202 }, + { "lat": 40.7884732, "lon": -73.9809780 }, + { "lat": 40.7884674, "lon": -73.9809588 }, + { "lat": 40.7884609, "lon": -73.9809372 }, + { "lat": 40.7884456, "lon": -73.9808989 }, + { "lat": 40.7876221, "lon": -73.9789416 }, + { "lat": 40.7875711, "lon": -73.9788225 }, + { "lat": 40.7875161, "lon": -73.9786949 }, + { "lat": 40.7871294, "lon": -73.9777901 }, + { "lat": 40.7870876, "lon": -73.9776916 }, + { "lat": 40.7870124, "lon": -73.9775145 }, + { "lat": 40.7869661, "lon": -73.9774019 }, + { "lat": 40.7864198, "lon": -73.9761105 }, + { "lat": 40.7863627, "lon": -73.9759753 }, + { "lat": 40.7863177, "lon": -73.9758674 }, + { "lat": 40.7858619, "lon": -73.9747770 }, + { "lat": 40.7852306, "lon": -73.9732665 }, + { "lat": 40.7851818, "lon": -73.9731496 } + ], + "tags": { + "alt_name": "Edgar Allen Poe Street", + "highway": "residential", + "lane_markings": "no", + "name": "West 84th Street", + "name:ru": "Западная 84-я стрит", + "name_1": "West 84 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5668983, + "bounds": { + "minlat": 40.7253340, + "minlon": -73.9762137, + "maxlat": 40.7265403, + "maxlon": -73.9753040 + }, + "nodes": [ + 42421837, + 11998841138, + 11998841137, + 13191848971, + 8309479433, + 42421833, + 10837667706, + 7041111901, + 8309479447, + 42421828 + ], + "geometry": [ + { "lat": 40.7265403, "lon": -73.9753040 }, + { "lat": 40.7265364, "lon": -73.9753206 }, + { "lat": 40.7265145, "lon": -73.9753371 }, + { "lat": 40.7260092, "lon": -73.9757178 }, + { "lat": 40.7259820, "lon": -73.9757383 }, + { "lat": 40.7259200, "lon": -73.9757850 }, + { "lat": 40.7257607, "lon": -73.9758995 }, + { "lat": 40.7254408, "lon": -73.9761335 }, + { "lat": 40.7254001, "lon": -73.9761630 }, + { "lat": 40.7253340, "lon": -73.9762137 } + ], + "tags": { + "foot": "use_sidepath", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Szold Place", + "name:etymology:wikidata": "Q469664", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5668986, + "bounds": { + "minlat": 40.8126219, + "minlon": -73.9606929, + "maxlat": 40.8141840, + "maxlon": -73.9568234 + }, + "nodes": [ + 42421852, + 7087041449, + 7598688559, + 7620561449, + 7598688560, + 7598688564, + 7598688500, + 7598688545, + 7598688542, + 7620561448, + 7620561453, + 7732654841, + 7732654843, + 11851500942, + 561035342, + 2541754741, + 42421857, + 10050028848, + 6223571511, + 10050024776, + 42421865 + ], + "geometry": [ + { "lat": 40.8126219, "lon": -73.9568234 }, + { "lat": 40.8126767, "lon": -73.9569537 }, + { "lat": 40.8127960, "lon": -73.9572378 }, + { "lat": 40.8128425, "lon": -73.9573486 }, + { "lat": 40.8131140, "lon": -73.9579947 }, + { "lat": 40.8131351, "lon": -73.9580451 }, + { "lat": 40.8132732, "lon": -73.9583733 }, + { "lat": 40.8133751, "lon": -73.9586164 }, + { "lat": 40.8135396, "lon": -73.9590081 }, + { "lat": 40.8136031, "lon": -73.9591591 }, + { "lat": 40.8136223, "lon": -73.9592049 }, + { "lat": 40.8136348, "lon": -73.9592368 }, + { "lat": 40.8136436, "lon": -73.9592601 }, + { "lat": 40.8137096, "lon": -73.9594767 }, + { "lat": 40.8137352, "lon": -73.9595608 }, + { "lat": 40.8137856, "lon": -73.9596999 }, + { "lat": 40.8138218, "lon": -73.9598000 }, + { "lat": 40.8138544, "lon": -73.9598901 }, + { "lat": 40.8141246, "lon": -73.9605463 }, + { "lat": 40.8141507, "lon": -73.9606112 }, + { "lat": 40.8141840, "lon": -73.9606929 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "La Salle Street", + "name:etymology:wikidata": "Q312758", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5668989, + "bounds": { + "minlat": 40.7328696, + "minlon": -73.9987019, + "maxlat": 40.7340344, + "maxlon": -73.9959296 + }, + "nodes": [ + 42421877, + 8265964345, + 9512766062 + ], + "geometry": [ + { "lat": 40.7328696, "lon": -73.9959296 }, + { "lat": 40.7329068, "lon": -73.9960197 }, + { "lat": 40.7340344, "lon": -73.9987019 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right:lane": "exclusive", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 9th Street", + "name:ru": "Западная 9-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5668993, + "bounds": { + "minlat": 40.7347911, + "minlon": -73.9993707, + "maxlat": 40.7351891, + "maxlon": -73.9992532 + }, + "nodes": [ + 42421901, + 8262308491, + 42421905 + ], + "geometry": [ + { "lat": 40.7347911, "lon": -73.9992532 }, + { "lat": 40.7348384, "lon": -73.9992647 }, + { "lat": 40.7351891, "lon": -73.9993707 } + ], + "tags": { + "access": "private", + "attraction": "yes", + "highway": "service", + "maxspeed": "25 mph", + "name": "Patchin Place", + "wikidata": "Q3368666", + "wikipedia": "en:Patchin Place" + } +}, +{ + "type": "way", + "id": 5668997, + "bounds": { + "minlat": 40.7257190, + "minlon": -73.9940029, + "maxlat": 40.7257881, + "maxlon": -73.9939705 + }, + "nodes": [ + 5824300192, + 6213204073, + 8309479063, + 5824300191 + ], + "geometry": [ + { "lat": 40.7257190, "lon": -73.9940029 }, + { "lat": 40.7257517, "lon": -73.9939865 }, + { "lat": 40.7257706, "lon": -73.9939782 }, + { "lat": 40.7257881, "lon": -73.9939705 } + ], + "tags": { + "alt_name": "Shinbone Alley", + "highway": "service", + "name": "Jones Alley", + "name:etymology:wikidata": "Q5599378", + "name:ko": "존스 앨리", + "note": "nameing: http://forgotten-ny.com/2013/08/shinbone-alley-noho/", + "service": "alley", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Jones", + "tiger:name_type": "Aly", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5668999, + "bounds": { + "minlat": 40.7040164, + "minlon": -74.0087341, + "maxlat": 40.7042693, + "maxlon": -74.0085616 + }, + "nodes": [ + 12293746659, + 10435219301, + 7139624405, + 10435219298, + 10435219299, + 10435219297, + 10435219300, + 42421941 + ], + "geometry": [ + { "lat": 40.7040164, "lon": -74.0085616 }, + { "lat": 40.7041108, "lon": -74.0086703 }, + { "lat": 40.7041399, "lon": -74.0087040 }, + { "lat": 40.7041632, "lon": -74.0087216 }, + { "lat": 40.7041934, "lon": -74.0087318 }, + { "lat": 40.7042233, "lon": -74.0087341 }, + { "lat": 40.7042463, "lon": -74.0087319 }, + { "lat": 40.7042693, "lon": -74.0087265 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Old Slip", + "name:ko": "올드 슬립", + "name:ru": "Олд-Слип", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Old Slip", + "tiger:zip_left": "10005", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 5669002, + "bounds": { + "minlat": 40.7700572, + "minlon": -73.9838597, + "maxlat": 40.7704797, + "maxlon": -73.9828614 + }, + "nodes": [ + 42421974, + 9904544291, + 7551756705, + 7551756698, + 7551756700, + 7551756702, + 11107632623 + ], + "geometry": [ + { "lat": 40.7704797, "lon": -73.9838597 }, + { "lat": 40.7704255, "lon": -73.9837328 }, + { "lat": 40.7703356, "lon": -73.9835227 }, + { "lat": 40.7703081, "lon": -73.9834546 }, + { "lat": 40.7702807, "lon": -73.9833897 }, + { "lat": 40.7702395, "lon": -73.9832922 }, + { "lat": 40.7700572, "lon": -73.9828614 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "West 61st Street", + "name:ru": "Западная 61-я стрит", + "name_1": "West 61 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669004, + "bounds": { + "minlat": 40.7712531, + "minlon": -73.9859786, + "maxlat": 40.7713667, + "maxlon": -73.9859388 + }, + "nodes": [ + 2974462027, + 6791166002 + ], + "geometry": [ + { "lat": 40.7712531, "lon": -73.9859388 }, + { "lat": 40.7713667, "lon": -73.9859786 } + ], + "tags": { + "covered": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 61st Street", + "name:ru": "Западная 61-я стрит", + "name_1": "West 61 Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669008, + "bounds": { + "minlat": 40.7872350, + "minlon": -73.9786190, + "maxlat": 40.7917878, + "maxlon": -73.9679404 + }, + "nodes": [ + 42421993, + 9796827007, + 3718670419, + 42421996, + 9576549163, + 8699239315, + 42422000, + 8699249520, + 7004376643, + 1061531768, + 42422006, + 8699249522, + 9492542198, + 42422016, + 9492556518, + 9168918213, + 9168918214, + 10039861885, + 9168918215, + 9168918216, + 42422018 + ], + "geometry": [ + { "lat": 40.7872350, "lon": -73.9679404 }, + { "lat": 40.7872811, "lon": -73.9680574 }, + { "lat": 40.7883707, "lon": -73.9706375 }, + { "lat": 40.7884325, "lon": -73.9707862 }, + { "lat": 40.7884801, "lon": -73.9708999 }, + { "lat": 40.7895671, "lon": -73.9734928 }, + { "lat": 40.7896131, "lon": -73.9736025 }, + { "lat": 40.7896721, "lon": -73.9737378 }, + { "lat": 40.7901341, "lon": -73.9748370 }, + { "lat": 40.7901845, "lon": -73.9749558 }, + { "lat": 40.7902583, "lon": -73.9751294 }, + { "lat": 40.7903014, "lon": -73.9752309 }, + { "lat": 40.7907677, "lon": -73.9763203 }, + { "lat": 40.7908218, "lon": -73.9764487 }, + { "lat": 40.7908762, "lon": -73.9765835 }, + { "lat": 40.7916851, "lon": -73.9785105 }, + { "lat": 40.7917020, "lon": -73.9785429 }, + { "lat": 40.7917083, "lon": -73.9785527 }, + { "lat": 40.7917247, "lon": -73.9785780 }, + { "lat": 40.7917481, "lon": -73.9786017 }, + { "lat": 40.7917878, "lon": -73.9786190 } + ], + "tags": { + "alt_name": "West 89 Street", + "highway": "residential", + "name": "West 89th Street", + "name:ru": "Западная 89-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4645154", + "wikipedia": "en:89th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5669013, + "bounds": { + "minlat": 40.7111542, + "minlon": -74.0151629, + "maxlat": 40.7113238, + "maxlon": -74.0147543 + }, + "nodes": [ + 12299394198, + 11374486385, + 11374486384, + 11413101809 + ], + "geometry": [ + { "lat": 40.7113238, "lon": -74.0151629 }, + { "lat": 40.7112092, "lon": -74.0148875 }, + { "lat": 40.7111795, "lon": -74.0148141 }, + { "lat": 40.7111542, "lon": -74.0147543 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "oneway": "no", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|right", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5669174, + "bounds": { + "minlat": 40.7998083, + "minlon": -73.9276635, + "maxlat": 40.8003256, + "maxlon": -73.9264394 + }, + "nodes": [ + 277481423, + 7612920641, + 7495347010 + ], + "geometry": [ + { "lat": 40.7998083, "lon": -73.9264394 }, + { "lat": 40.7999563, "lon": -73.9267899 }, + { "lat": 40.8003256, "lon": -73.9276635 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "hgv": "local", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "no", + "toll": "no", + "unsigned_ref": "NY 900G", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 5669227, + "bounds": { + "minlat": 40.7588460, + "minlon": -73.9975781, + "maxlat": 40.7593876, + "maxlon": -73.9969538 + }, + "nodes": [ + 42423836, + 10169614496, + 8288270552, + 42446506 + ], + "geometry": [ + { "lat": 40.7593876, "lon": -73.9969538 }, + { "lat": 40.7593357, "lon": -73.9970135 }, + { "lat": 40.7588875, "lon": -73.9975282 }, + { "lat": 40.7588460, "lon": -73.9975781 } + ], + "tags": { + "cycleway:both": "no", + "destination": "Lincoln Tunnel", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Galvin Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "aerial", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 5669228, + "bounds": { + "minlat": 40.7583753, + "minlon": -73.9981326, + "maxlat": 40.7586026, + "maxlon": -73.9975574 + }, + "nodes": [ + 427804078, + 593926769, + 427804070, + 593926734 + ], + "geometry": [ + { "lat": 40.7583753, "lon": -73.9975574 }, + { "lat": 40.7584216, "lon": -73.9976739 }, + { "lat": 40.7585296, "lon": -73.9979404 }, + { "lat": 40.7586026, "lon": -73.9981326 } + ], + "tags": { + "access": "no", + "bus": "yes", + "destination": "Lincoln Tunnel", + "highway": "service", + "motor_vehicle": "customers", + "name": "PABT Ramp", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 5669236, + "bounds": { + "minlat": 40.7797423, + "minlon": -73.9442883, + "maxlat": 40.7799516, + "maxlon": -73.9441142 + }, + "nodes": [ + 42428052, + 6289180301, + 6289180294, + 3785532382 + ], + "geometry": [ + { "lat": 40.7797423, "lon": -73.9442883 }, + { "lat": 40.7798024, "lon": -73.9442255 }, + { "lat": 40.7798549, "lon": -73.9441826 }, + { "lat": 40.7799516, "lon": -73.9441142 } + ], + "tags": { + "destination": "FDR Drive North;Triboro Bridge", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxheight": "12'10\"", + "name": "York Avenue", + "name:etymology:wikidata": "Q8007", + "name:ru": "Йорк-авеню", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669279, + "bounds": { + "minlat": 40.7219980, + "minlon": -74.0077737, + "maxlat": 40.7233722, + "maxlon": -74.0065056 + }, + "nodes": [ + 246885877, + 8253282226, + 246885878, + 1701898740, + 4134676743, + 4134676742, + 1701898652, + 3788379670, + 1701898646, + 246885879, + 3788379671, + 246885880, + 1195433564, + 3788379672, + 246885881, + 3788379673, + 246885882 + ], + "geometry": [ + { "lat": 40.7233722, "lon": -74.0077737 }, + { "lat": 40.7233407, "lon": -74.0077307 }, + { "lat": 40.7226062, "lon": -74.0066998 }, + { "lat": 40.7225695, "lon": -74.0066545 }, + { "lat": 40.7225355, "lon": -74.0066172 }, + { "lat": 40.7225091, "lon": -74.0065926 }, + { "lat": 40.7224917, "lon": -74.0065752 }, + { "lat": 40.7224462, "lon": -74.0065515 }, + { "lat": 40.7224157, "lon": -74.0065373 }, + { "lat": 40.7223792, "lon": -74.0065252 }, + { "lat": 40.7223218, "lon": -74.0065142 }, + { "lat": 40.7222655, "lon": -74.0065082 }, + { "lat": 40.7222089, "lon": -74.0065056 }, + { "lat": 40.7221600, "lon": -74.0065082 }, + { "lat": 40.7221085, "lon": -74.0065135 }, + { "lat": 40.7220550, "lon": -74.0065255 }, + { "lat": 40.7219980, "lon": -74.0065419 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxaxles": "3", + "maxspeed": "35 mph", + "name": "Holland Tunnel Rotary", + "name:etymology:wikidata": "Q5133008", + "name:ko": "홀랜드 터널", + "oneway": "yes", + "ref": "I 78", + "sidewalk": "no", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "I 78" + } +}, +{ + "type": "way", + "id": 5669290, + "bounds": { + "minlat": 40.7916252, + "minlon": -73.9646940, + "maxlat": 40.7916758, + "maxlon": -73.9645552 + }, + "nodes": [ + 42424439, + 595703322 + ], + "geometry": [ + { "lat": 40.7916758, "lon": -73.9646940 }, + { "lat": 40.7916252, "lon": -73.9645552 } + ], + "tags": { + "alt_name": "Transverse Number Four", + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "97th Street Transverse", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669292, + "bounds": { + "minlat": 40.8000580, + "minlon": -73.9580097, + "maxlat": 40.8002595, + "maxlon": -73.9579325 + }, + "nodes": [ + 7801840674, + 3247295568 + ], + "geometry": [ + { "lat": 40.8002595, "lon": -73.9580097 }, + { "lat": 40.8000580, "lon": -73.9579325 } + ], + "tags": { + "bicycle": "designated", + "hgv": "no", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "West 110th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669316, + "bounds": { + "minlat": 40.8144025, + "minlon": -73.9356880, + "maxlat": 40.8146009, + "maxlon": -73.9352228 + }, + "nodes": [ + 373850912, + 8913610638 + ], + "geometry": [ + { "lat": 40.8144025, "lon": -73.9352228 }, + { "lat": 40.8146009, "lon": -73.9356880 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5669332, + "bounds": { + "minlat": 40.7572085, + "minlon": -73.9950492, + "maxlat": 40.7574730, + "maxlon": -73.9944943 + }, + "nodes": [ + 42424773, + 427850877, + 1695371007, + 427850880, + 42424774, + 427850882, + 427850883, + 427850885, + 427850886, + 1806430566, + 1806430425, + 1806430504, + 1806430410, + 11149329065, + 427850887 + ], + "geometry": [ + { "lat": 40.7573509, "lon": -73.9950492 }, + { "lat": 40.7574397, "lon": -73.9948706 }, + { "lat": 40.7574557, "lon": -73.9948225 }, + { "lat": 40.7574685, "lon": -73.9947693 }, + { "lat": 40.7574730, "lon": -73.9947177 }, + { "lat": 40.7574695, "lon": -73.9946627 }, + { "lat": 40.7574561, "lon": -73.9946176 }, + { "lat": 40.7574310, "lon": -73.9945711 }, + { "lat": 40.7574084, "lon": -73.9945382 }, + { "lat": 40.7573808, "lon": -73.9945124 }, + { "lat": 40.7573472, "lon": -73.9944999 }, + { "lat": 40.7573127, "lon": -73.9944943 }, + { "lat": 40.7572809, "lon": -73.9944944 }, + { "lat": 40.7572525, "lon": -73.9944984 }, + { "lat": 40.7572085, "lon": -73.9945123 } + ], + "tags": { + "access": "no", + "bus": "yes", + "destination": "Port Authority Bus Terminal", + "foot": "no", + "highway": "service", + "motor_vehicle": "customers", + "name": "PABT Ramp", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 5669343, + "bounds": { + "minlat": 40.7825726, + "minlon": -73.9693772, + "maxlat": 40.7837952, + "maxlon": -73.9691214 + }, + "nodes": [ + 2059304005, + 9908460413, + 9908460414, + 375858773, + 9908460415, + 9908460416, + 3605742643, + 3605742642, + 9908460417, + 3605742641, + 4332540833, + 9908460418, + 42424850 + ], + "geometry": [ + { "lat": 40.7837952, "lon": -73.9691268 }, + { "lat": 40.7837240, "lon": -73.9691221 }, + { "lat": 40.7836407, "lon": -73.9691214 }, + { "lat": 40.7835645, "lon": -73.9691248 }, + { "lat": 40.7834816, "lon": -73.9691313 }, + { "lat": 40.7833893, "lon": -73.9691468 }, + { "lat": 40.7833228, "lon": -73.9691624 }, + { "lat": 40.7831886, "lon": -73.9691980 }, + { "lat": 40.7830173, "lon": -73.9692510 }, + { "lat": 40.7828458, "lon": -73.9693063 }, + { "lat": 40.7827620, "lon": -73.9693380 }, + { "lat": 40.7827118, "lon": -73.9693547 }, + { "lat": 40.7825726, "lon": -73.9693772 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West 85th Street", + "name:ru": "Западная 85-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669355, + "bounds": { + "minlat": 40.7690911, + "minlon": -73.9444811, + "maxlat": 40.7698001, + "maxlon": -73.9431618 + }, + "nodes": [ + 593428194, + 9913669101, + 7799540769, + 9913669102, + 3262581661, + 9913669103, + 9913669104, + 9913669105, + 9913669106, + 42424905, + 7800922819, + 1241986688, + 9913669107, + 6647688905, + 42424903 + ], + "geometry": [ + { "lat": 40.7690911, "lon": -73.9431618 }, + { "lat": 40.7691231, "lon": -73.9432050 }, + { "lat": 40.7691371, "lon": -73.9432322 }, + { "lat": 40.7692736, "lon": -73.9435311 }, + { "lat": 40.7692884, "lon": -73.9435732 }, + { "lat": 40.7692973, "lon": -73.9436136 }, + { "lat": 40.7693198, "lon": -73.9437213 }, + { "lat": 40.7693315, "lon": -73.9437609 }, + { "lat": 40.7693447, "lon": -73.9437966 }, + { "lat": 40.7693618, "lon": -73.9438305 }, + { "lat": 40.7696604, "lon": -73.9443436 }, + { "lat": 40.7697503, "lon": -73.9444559 }, + { "lat": 40.7697640, "lon": -73.9444703 }, + { "lat": 40.7697813, "lon": -73.9444792 }, + { "lat": 40.7698001, "lon": -73.9444811 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "10 mph", + "name": "Main Street" + } +}, +{ + "type": "way", + "id": 5669407, + "bounds": { + "minlat": 40.8158343, + "minlon": -73.9344659, + "maxlat": 40.8171783, + "maxlon": -73.9343477 + }, + "nodes": [ + 42424235, + 9902223881, + 9557110404, + 589928012, + 9902223882, + 9166236587, + 589928013, + 589927993, + 589927994, + 42425425 + ], + "geometry": [ + { "lat": 40.8171783, "lon": -73.9344659 }, + { "lat": 40.8171561, "lon": -73.9344411 }, + { "lat": 40.8171265, "lon": -73.9344162 }, + { "lat": 40.8170847, "lon": -73.9343915 }, + { "lat": 40.8170463, "lon": -73.9343738 }, + { "lat": 40.8170011, "lon": -73.9343580 }, + { "lat": 40.8169633, "lon": -73.9343495 }, + { "lat": 40.8169324, "lon": -73.9343477 }, + { "lat": 40.8168661, "lon": -73.9343501 }, + { "lat": 40.8158343, "lon": -73.9344443 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "turn:lanes": "slight_left;through" + } +}, +{ + "type": "way", + "id": 5669501, + "bounds": { + "minlat": 40.7980438, + "minlon": -73.9531111, + "maxlat": 40.7982754, + "maxlon": -73.9525303 + }, + "nodes": [ + 3099327964, + 7123873140, + 3099327947, + 3099327958, + 12815989284, + 3099327963, + 3099327971, + 3099327949, + 3099327959, + 3099327953, + 12815989245, + 2058919983 + ], + "geometry": [ + { "lat": 40.7982754, "lon": -73.9525303 }, + { "lat": 40.7981845, "lon": -73.9526025 }, + { "lat": 40.7981513, "lon": -73.9526316 }, + { "lat": 40.7981290, "lon": -73.9526568 }, + { "lat": 40.7981159, "lon": -73.9526751 }, + { "lat": 40.7981065, "lon": -73.9526879 }, + { "lat": 40.7980870, "lon": -73.9527295 }, + { "lat": 40.7980725, "lon": -73.9527848 }, + { "lat": 40.7980614, "lon": -73.9528455 }, + { "lat": 40.7980511, "lon": -73.9529234 }, + { "lat": 40.7980438, "lon": -73.9530137 }, + { "lat": 40.7980453, "lon": -73.9531111 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "hgv": "no", + "highway": "service", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Lenox Avenue Approach", + "network": "lcn", + "oneway": "yes", + "oneway:bicycle": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669509, + "bounds": { + "minlat": 40.7602431, + "minlon": -73.9515065, + "maxlat": 40.7604557, + "maxlon": -73.9514600 + }, + "nodes": [ + 42426418, + 3785703010, + 3785703009, + 3569568707, + 3785702998 + ], + "geometry": [ + { "lat": 40.7602431, "lon": -73.9515065 }, + { "lat": 40.7603003, "lon": -73.9514988 }, + { "lat": 40.7603511, "lon": -73.9514880 }, + { "lat": 40.7603843, "lon": -73.9514799 }, + { "lat": 40.7604557, "lon": -73.9514600 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669563, + "bounds": { + "minlat": 40.7632907, + "minlon": -73.9480093, + "maxlat": 40.7636760, + "maxlon": -73.9472582 + }, + "nodes": [ + 42426775, + 5212861641 + ], + "geometry": [ + { "lat": 40.7632907, "lon": -73.9472582 }, + { "lat": 40.7636760, "lon": -73.9480093 } + ], + "tags": { + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669566, + "bounds": { + "minlat": 40.7629248, + "minlon": -74.0196392, + "maxlat": 40.7671184, + "maxlon": -74.0096744 + }, + "nodes": [ + 60007418, + 3276524464 + ], + "geometry": [ + { "lat": 40.7671184, "lon": -74.0196392 }, + { "lat": 40.7629248, "lon": -74.0096744 } + ], + "tags": { + "bicycle": "no", + "cycleway:both": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "-2", + "lit": "24/7", + "maxheight": "3.96", + "maxspeed": "35 mph", + "maxwidth": "8'6\"", + "motor_vehicle": "permissive", + "name": "Lincoln Tunnel", + "name:etymology:wikidata": "Q91", + "note": "Reversible lane", + "oneway": "reversible", + "psv": "designated", + "source": "usgs", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "no", + "toll:backward": "no", + "toll:forward": "yes", + "tunnel": "yes", + "wikidata": "Q125805", + "wikipedia": "en:Lincoln Tunnel" + } +}, +{ + "type": "way", + "id": 5669574, + "bounds": { + "minlat": 40.7917756, + "minlon": -73.9372379, + "maxlat": 40.7923959, + "maxlon": -73.9367868 + }, + "nodes": [ + 42426804, + 13721007536, + 13721007535, + 7924320744, + 42426805 + ], + "geometry": [ + { "lat": 40.7917756, "lon": -73.9372379 }, + { "lat": 40.7922730, "lon": -73.9368752 }, + { "lat": 40.7923000, "lon": -73.9368556 }, + { "lat": 40.7923150, "lon": -73.9368446 }, + { "lat": 40.7923959, "lon": -73.9367868 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "A New Street", + "oneway": "yes", + "parking:condition:right:time_interval": "Tu, Fr 00:00-09:30, 11:00-24:00;Mo, We, Th, Sa, Su 00:00-24:00", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:reviewed": "aerial" + } +}, +{ + "type": "way", + "id": 5669593, + "bounds": { + "minlat": 40.7624373, + "minlon": -73.9490990, + "maxlat": 40.7629715, + "maxlon": -73.9479808 + }, + "nodes": [ + 42426928, + 8265114646, + 42426931 + ], + "geometry": [ + { "lat": 40.7624373, "lon": -73.9479808 }, + { "lat": 40.7629396, "lon": -73.9490340 }, + { "lat": 40.7629715, "lon": -73.9490990 } + ], + "tags": { + "access": "private", + "highway": "residential", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669615, + "bounds": { + "minlat": 40.7557654, + "minlon": -73.9558339, + "maxlat": 40.7566077, + "maxlon": -73.9542710 + }, + "nodes": [ + 5487036755, + 4061444337, + 8265113553, + 9913659995, + 8265113451, + 8265113722, + 42427070 + ], + "geometry": [ + { "lat": 40.7557654, "lon": -73.9542710 }, + { "lat": 40.7558376, "lon": -73.9543983 }, + { "lat": 40.7558671, "lon": -73.9544524 }, + { "lat": 40.7565542, "lon": -73.9557302 }, + { "lat": 40.7565765, "lon": -73.9557744 }, + { "lat": 40.7565843, "lon": -73.9557889 }, + { "lat": 40.7566077, "lon": -73.9558339 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "no", + "highway": "unclassified", + "lanes": "1", + "lcn": "yes", + "maxspeed": "15 mph", + "name": "North Loop Road", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5669631, + "bounds": { + "minlat": 40.7101781, + "minlon": -74.0051452, + "maxlat": 40.7110418, + "maxlon": -74.0042431 + }, + "nodes": [ + 6990788770, + 42427239, + 4878934399, + 42427242 + ], + "geometry": [ + { "lat": 40.7110418, "lon": -74.0051452 }, + { "lat": 40.7109897, "lon": -74.0050914 }, + { "lat": 40.7102537, "lon": -74.0043205 }, + { "lat": 40.7101781, "lon": -74.0042431 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Spruce Street", + "name:ko": "스프루스 스트리트", + "name:ru": "Спрус-стрит", + "note": "older photos show this as one-way eastbound", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q20858363", + "wikipedia": "en:Spruce Street" + } +}, +{ + "type": "way", + "id": 5669633, + "bounds": { + "minlat": 40.7063813, + "minlon": -74.0064426, + "maxlat": 40.7070101, + "maxlon": -74.0056937 + }, + "nodes": [ + 42427249, + 11367912873, + 11367912874, + 11367912875, + 8094558987, + 1772140794, + 7139624431, + 42427251 + ], + "geometry": [ + { "lat": 40.7070101, "lon": -74.0064417 }, + { "lat": 40.7069962, "lon": -74.0064426 }, + { "lat": 40.7069828, "lon": -74.0064403 }, + { "lat": 40.7069705, "lon": -74.0064340 }, + { "lat": 40.7069629, "lon": -74.0064263 }, + { "lat": 40.7064814, "lon": -74.0058213 }, + { "lat": 40.7064562, "lon": -74.0057889 }, + { "lat": 40.7063813, "lon": -74.0056937 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Fletcher Street", + "name:etymology:wikidata": "Q4888590", + "name:ko": "플렛처 스트리트", + "name:ru": "Флетчер-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q13882294" + } +}, +{ + "type": "way", + "id": 5669636, + "bounds": { + "minlat": 40.7120623, + "minlon": -74.0048650, + "maxlat": 40.7124150, + "maxlon": -74.0044702 + }, + "nodes": [ + 11503416426, + 4143883225, + 4143883227, + 278640797, + 1369956654 + ], + "geometry": [ + { "lat": 40.7124150, "lon": -74.0048650 }, + { "lat": 40.7123954, "lon": -74.0048616 }, + { "lat": 40.7123775, "lon": -74.0048558 }, + { "lat": 40.7123625, "lon": -74.0048450 }, + { "lat": 40.7120623, "lon": -74.0044702 } + ], + "tags": { + "bicycle": "no", + "bus": "no", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Centre Street", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:left": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 5669639, + "bounds": { + "minlat": 40.7152425, + "minlon": -73.9842337, + "maxlat": 40.7162923, + "maxlon": -73.9835484 + }, + "nodes": [ + 42427335, + 5804835265, + 10718621128, + 8372982782, + 42427337, + 8372982785, + 9584424993 + ], + "geometry": [ + { "lat": 40.7152425, "lon": -73.9842337 }, + { "lat": 40.7153172, "lon": -73.9841854 }, + { "lat": 40.7157268, "lon": -73.9839124 }, + { "lat": 40.7160694, "lon": -73.9836841 }, + { "lat": 40.7161377, "lon": -73.9836386 }, + { "lat": 40.7161723, "lon": -73.9836184 }, + { "lat": 40.7162923, "lon": -73.9835484 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Pitt Street", + "name:etymology:wikidata": "Q208663", + "name:ko": "피트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669643, + "bounds": { + "minlat": 40.7458171, + "minlon": -74.0078822, + "maxlat": 40.7468041, + "maxlon": -74.0055340 + }, + "nodes": [ + 42427390, + 10168486371, + 2671667955, + 429568770, + 12161232292, + 3874653365, + 42427393 + ], + "geometry": [ + { "lat": 40.7458171, "lon": -74.0055340 }, + { "lat": 40.7458721, "lon": -74.0056676 }, + { "lat": 40.7459887, "lon": -74.0059426 }, + { "lat": 40.7460452, "lon": -74.0060754 }, + { "lat": 40.7467390, "lon": -74.0077070 }, + { "lat": 40.7467641, "lon": -74.0077686 }, + { "lat": 40.7468041, "lon": -74.0078822 } + ], + "tags": { + "cycleway:right": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 20th Street", + "name:ru": "Западная 20-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669652, + "bounds": { + "minlat": 40.8716544, + "minlon": -73.9126036, + "maxlat": 40.8722414, + "maxlon": -73.9112343 + }, + "nodes": [ + 42427507, + 9561125962, + 11591951175, + 9561125968, + 42427504 + ], + "geometry": [ + { "lat": 40.8722414, "lon": -73.9126036 }, + { "lat": 40.8722004, "lon": -73.9125073 }, + { "lat": 40.8717264, "lon": -73.9113945 }, + { "lat": 40.8717015, "lon": -73.9113362 }, + { "lat": 40.8716544, "lon": -73.9112343 } + ], + "tags": { + "highway": "residential", + "name": "West 220th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669661, + "bounds": { + "minlat": 40.8129400, + "minlon": -73.9517700, + "maxlat": 40.8214914, + "maxlon": -73.9475520 + }, + "nodes": [ + 42427735, + 8835657113, + 7732654898, + 7732654893, + 7732654892, + 7732654897, + 7732654888, + 7732654896, + 42427732, + 7732654894, + 7732654895, + 7732654891, + 42427730, + 42427727, + 7732654889, + 42427722, + 7732654890, + 42427713, + 42427706, + 42427700, + 2423522330, + 2428684123, + 42427691, + 42427680, + 42427677, + 42427675, + 42427673, + 42427670, + 42427667, + 42427665, + 42427664, + 7732654905, + 42427660, + 42427659, + 42427656, + 42427652, + 42427649, + 42427642, + 42427638, + 42427635, + 42427634, + 42427632, + 7045489986, + 42427628, + 42427625, + 42427622, + 42427620, + 6813350866, + 42427613, + 3579426911, + 42427606, + 42427596, + 42427586, + 42427581, + 42427576, + 42427572, + 42427560, + 42427552, + 10183024494, + 3579426933, + 42427538, + 42427531, + 4078840324, + 4078840321, + 42427523 + ], + "geometry": [ + { "lat": 40.8214914, "lon": -73.9485390 }, + { "lat": 40.8214479, "lon": -73.9484412 }, + { "lat": 40.8212809, "lon": -73.9480554 }, + { "lat": 40.8212650, "lon": -73.9480246 }, + { "lat": 40.8212376, "lon": -73.9479777 }, + { "lat": 40.8212185, "lon": -73.9479497 }, + { "lat": 40.8211945, "lon": -73.9479206 }, + { "lat": 40.8211787, "lon": -73.9479043 }, + { "lat": 40.8211557, "lon": -73.9478844 }, + { "lat": 40.8211150, "lon": -73.9478560 }, + { "lat": 40.8210826, "lon": -73.9478379 }, + { "lat": 40.8210409, "lon": -73.9478176 }, + { "lat": 40.8205803, "lon": -73.9476425 }, + { "lat": 40.8203725, "lon": -73.9475672 }, + { "lat": 40.8203371, "lon": -73.9475580 }, + { "lat": 40.8203010, "lon": -73.9475520 }, + { "lat": 40.8202595, "lon": -73.9475538 }, + { "lat": 40.8202200, "lon": -73.9475570 }, + { "lat": 40.8201330, "lon": -73.9475790 }, + { "lat": 40.8200520, "lon": -73.9476200 }, + { "lat": 40.8197076, "lon": -73.9478729 }, + { "lat": 40.8194596, "lon": -73.9480551 }, + { "lat": 40.8191670, "lon": -73.9482700 }, + { "lat": 40.8191050, "lon": -73.9483172 }, + { "lat": 40.8190174, "lon": -73.9483848 }, + { "lat": 40.8189423, "lon": -73.9484562 }, + { "lat": 40.8188579, "lon": -73.9485633 }, + { "lat": 40.8188119, "lon": -73.9486357 }, + { "lat": 40.8187051, "lon": -73.9488313 }, + { "lat": 40.8185932, "lon": -73.9490371 }, + { "lat": 40.8185314, "lon": -73.9491338 }, + { "lat": 40.8184516, "lon": -73.9492435 }, + { "lat": 40.8183832, "lon": -73.9493357 }, + { "lat": 40.8183270, "lon": -73.9493980 }, + { "lat": 40.8181900, "lon": -73.9495360 }, + { "lat": 40.8180730, "lon": -73.9496330 }, + { "lat": 40.8179231, "lon": -73.9497399 }, + { "lat": 40.8178890, "lon": -73.9497620 }, + { "lat": 40.8177490, "lon": -73.9498660 }, + { "lat": 40.8175910, "lon": -73.9499550 }, + { "lat": 40.8174410, "lon": -73.9500170 }, + { "lat": 40.8172860, "lon": -73.9500590 }, + { "lat": 40.8171665, "lon": -73.9500764 }, + { "lat": 40.8171280, "lon": -73.9500820 }, + { "lat": 40.8169540, "lon": -73.9500830 }, + { "lat": 40.8167980, "lon": -73.9500630 }, + { "lat": 40.8166411, "lon": -73.9500336 }, + { "lat": 40.8165572, "lon": -73.9500008 }, + { "lat": 40.8165008, "lon": -73.9499608 }, + { "lat": 40.8164267, "lon": -73.9498877 }, + { "lat": 40.8164100, "lon": -73.9498690 }, + { "lat": 40.8163210, "lon": -73.9497960 }, + { "lat": 40.8162380, "lon": -73.9497470 }, + { "lat": 40.8161350, "lon": -73.9497060 }, + { "lat": 40.8160270, "lon": -73.9496870 }, + { "lat": 40.8159200, "lon": -73.9496880 }, + { "lat": 40.8157990, "lon": -73.9497150 }, + { "lat": 40.8156890, "lon": -73.9497660 }, + { "lat": 40.8150823, "lon": -73.9502080 }, + { "lat": 40.8145637, "lon": -73.9505857 }, + { "lat": 40.8141870, "lon": -73.9508600 }, + { "lat": 40.8135670, "lon": -73.9513220 }, + { "lat": 40.8130295, "lon": -73.9517060 }, + { "lat": 40.8130063, "lon": -73.9517226 }, + { "lat": 40.8129400, "lon": -73.9517700 } + ], + "tags": { + "highway": "residential", + "name": "Saint Nicholas Terrace", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ter", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 5669662, + "bounds": { + "minlat": 40.7135531, + "minlon": -73.9809025, + "maxlat": 40.7142510, + "maxlon": -73.9808346 + }, + "nodes": [ + 42427744, + 8310246482, + 8270654738, + 42427742 + ], + "geometry": [ + { "lat": 40.7135531, "lon": -73.9808346 }, + { "lat": 40.7136337, "lon": -73.9808447 }, + { "lat": 40.7141581, "lon": -73.9809025 }, + { "lat": 40.7142510, "lon": -73.9808938 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Jackson Street", + "name:etymology:wikidata": "Q11817", + "name:ko": "잭슨 스트리트", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669664, + "bounds": { + "minlat": 40.7636536, + "minlon": -73.9741072, + "maxlat": 40.7639136, + "maxlon": -73.9734832 + }, + "nodes": [ + 42427764, + 3976008173, + 42427762 + ], + "geometry": [ + { "lat": 40.7639136, "lon": -73.9741072 }, + { "lat": 40.7637036, "lon": -73.9736128 }, + { "lat": 40.7636536, "lon": -73.9734832 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 58th Street", + "name:ru": "Западная 58-я стрит", + "name_1": "West 58th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "||right" + } +}, +{ + "type": "way", + "id": 5669665, + "bounds": { + "minlat": 40.8555980, + "minlon": -73.9297266, + "maxlat": 40.8566083, + "maxlon": -73.9273190 + }, + "nodes": [ + 42427773, + 7058422586, + 5403868128, + 42427769, + 5403868130, + 11596481916, + 9563795461, + 42427768 + ], + "geometry": [ + { "lat": 40.8566083, "lon": -73.9297266 }, + { "lat": 40.8565563, "lon": -73.9296065 }, + { "lat": 40.8562360, "lon": -73.9288410 }, + { "lat": 40.8561820, "lon": -73.9287160 }, + { "lat": 40.8561313, "lon": -73.9285947 }, + { "lat": 40.8556666, "lon": -73.9274833 }, + { "lat": 40.8556445, "lon": -73.9274262 }, + { "lat": 40.8555980, "lon": -73.9273190 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 192nd Street", + "name_1": "West 192 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "192nd", + "tiger:name_base_1": "192", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5669666, + "bounds": { + "minlat": 40.8578410, + "minlon": -73.9329770, + "maxlat": 40.8581161, + "maxlon": -73.9320430 + }, + "nodes": [ + 42427780, + 7395403286, + 8690797661, + 1763635682, + 42427782 + ], + "geometry": [ + { "lat": 40.8578410, "lon": -73.9320430 }, + { "lat": 40.8578830, "lon": -73.9321905 }, + { "lat": 40.8580829, "lon": -73.9328645 }, + { "lat": 40.8580956, "lon": -73.9329090 }, + { "lat": 40.8581161, "lon": -73.9329770 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 192nd Street", + "name_1": "West 192 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "192nd", + "tiger:name_base_1": "192", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5669669, + "bounds": { + "minlat": 40.7453010, + "minlon": -73.9900676, + "maxlat": 40.7466658, + "maxlon": -73.9868460 + }, + "nodes": [ + 42427786, + 10167162605, + 5481897724, + 9198484654, + 42427787, + 9198484652, + 10168911554, + 42427797 + ], + "geometry": [ + { "lat": 40.7453010, "lon": -73.9868460 }, + { "lat": 40.7453518, "lon": -73.9869658 }, + { "lat": 40.7456336, "lon": -73.9876312 }, + { "lat": 40.7459965, "lon": -73.9884930 }, + { "lat": 40.7460483, "lon": -73.9886101 }, + { "lat": 40.7460825, "lon": -73.9886932 }, + { "lat": 40.7466093, "lon": -73.9899342 }, + { "lat": 40.7466658, "lon": -73.9900676 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669679, + "bounds": { + "minlat": 40.8621121, + "minlon": -73.9300037, + "maxlat": 40.8623213, + "maxlon": -73.9294361 + }, + "nodes": [ + 42427844, + 2052329249, + 42427846, + 6882309078, + 1764647103 + ], + "geometry": [ + { "lat": 40.8621121, "lon": -73.9300037 }, + { "lat": 40.8621511, "lon": -73.9298608 }, + { "lat": 40.8622107, "lon": -73.9296676 }, + { "lat": 40.8622529, "lon": -73.9295376 }, + { "lat": 40.8623213, "lon": -73.9294361 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "secondary", + "name": "Sherman Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5669683, + "bounds": { + "minlat": 40.8259560, + "minlon": -73.9433570, + "maxlat": 40.8271984, + "maxlon": -73.9424324 + }, + "nodes": [ + 42432970, + 11218357994, + 11221649578, + 5864601688, + 11221649579, + 11218752318, + 42427881 + ], + "geometry": [ + { "lat": 40.8259560, "lon": -73.9433570 }, + { "lat": 40.8260105, "lon": -73.9433055 }, + { "lat": 40.8265246, "lon": -73.9429129 }, + { "lat": 40.8265782, "lon": -73.9428725 }, + { "lat": 40.8266356, "lon": -73.9428307 }, + { "lat": 40.8271400, "lon": -73.9424712 }, + { "lat": 40.8271984, "lon": -73.9424324 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 5669691, + "bounds": { + "minlat": 40.7817352, + "minlon": -73.9717224, + "maxlat": 40.7820388, + "maxlon": -73.9714120 + }, + "nodes": [ + 248709622, + 6946139596, + 6946139604, + 6946139597, + 1989096620, + 6946139589, + 9906879215, + 1989096622, + 9906879216, + 9906904116, + 42427915 + ], + "geometry": [ + { "lat": 40.7817352, "lon": -73.9714120 }, + { "lat": 40.7817714, "lon": -73.9714275 }, + { "lat": 40.7818045, "lon": -73.9714414 }, + { "lat": 40.7818396, "lon": -73.9714632 }, + { "lat": 40.7818801, "lon": -73.9714955 }, + { "lat": 40.7819166, "lon": -73.9715292 }, + { "lat": 40.7819469, "lon": -73.9715660 }, + { "lat": 40.7819692, "lon": -73.9715958 }, + { "lat": 40.7819979, "lon": -73.9716396 }, + { "lat": 40.7820197, "lon": -73.9716829 }, + { "lat": 40.7820388, "lon": -73.9717224 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "lit": "yes", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "maxspeed:advisory:backward": "20 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|right", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5669693, + "bounds": { + "minlat": 40.8734631, + "minlon": -73.9093180, + "maxlat": 40.8743203, + "maxlon": -73.9069997 + }, + "nodes": [ + 12234335817, + 10128431619, + 2041169566, + 10128431622, + 7037961264, + 42427925, + 2302043694, + 2302043692, + 2302043690, + 2303340507, + 2302043686, + 60915632, + 2303340506, + 7065653443, + 42427923 + ], + "geometry": [ + { "lat": 40.8743203, "lon": -73.9093180 }, + { "lat": 40.8741524, "lon": -73.9090883 }, + { "lat": 40.8740996, "lon": -73.9090163 }, + { "lat": 40.8740576, "lon": -73.9089602 }, + { "lat": 40.8739640, "lon": -73.9088352 }, + { "lat": 40.8738008, "lon": -73.9086174 }, + { "lat": 40.8737783, "lon": -73.9085855 }, + { "lat": 40.8737582, "lon": -73.9085515 }, + { "lat": 40.8737460, "lon": -73.9085201 }, + { "lat": 40.8737359, "lon": -73.9084764 }, + { "lat": 40.8737243, "lon": -73.9084158 }, + { "lat": 40.8737053, "lon": -73.9083093 }, + { "lat": 40.8736647, "lon": -73.9080702 }, + { "lat": 40.8735745, "lon": -73.9075928 }, + { "lat": 40.8734631, "lon": -73.9069997 } + ], + "tags": { + "highway": "secondary", + "name": "West 225th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "225th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_left_1": "10463", + "tiger:zip_right": "10463", + "tiger:zip_right_1": "10463" + } +}, +{ + "type": "way", + "id": 5669696, + "bounds": { + "minlat": 40.8746713, + "minlon": -73.9128004, + "maxlat": 40.8756706, + "maxlon": -73.9110993 + }, + "nodes": [ + 42427939, + 13068119348, + 1545097325, + 2024033390, + 1545097186, + 2024033393, + 1545097237, + 2024033374, + 2024033371, + 42427936, + 2024038779, + 1545097288, + 42427934 + ], + "geometry": [ + { "lat": 40.8756706, "lon": -73.9128004 }, + { "lat": 40.8756287, "lon": -73.9127879 }, + { "lat": 40.8754657, "lon": -73.9127382 }, + { "lat": 40.8753645, "lon": -73.9127025 }, + { "lat": 40.8753130, "lon": -73.9126782 }, + { "lat": 40.8752668, "lon": -73.9126384 }, + { "lat": 40.8752037, "lon": -73.9125838 }, + { "lat": 40.8751412, "lon": -73.9125026 }, + { "lat": 40.8750815, "lon": -73.9123833 }, + { "lat": 40.8750497, "lon": -73.9122655 }, + { "lat": 40.8749596, "lon": -73.9119686 }, + { "lat": 40.8748093, "lon": -73.9114811 }, + { "lat": 40.8746713, "lon": -73.9110993 } + ], + "tags": { + "alt_name": "West 225 Street", + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "yes", + "highway": "residential", + "inline_skates": "yes", + "lanes": "1", + "lcn": "yes", + "name": "West 225th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "225th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5669709, + "bounds": { + "minlat": 40.7593001, + "minlon": -73.9592658, + "maxlat": 40.7599137, + "maxlon": -73.9588108 + }, + "nodes": [ + 42424672, + 4918486763, + 4798293323, + 4918486955, + 42427965 + ], + "geometry": [ + { "lat": 40.7593001, "lon": -73.9592658 }, + { "lat": 40.7593570, "lon": -73.9592236 }, + { "lat": 40.7595890, "lon": -73.9590516 }, + { "lat": 40.7598567, "lon": -73.9588530 }, + { "lat": 40.7599137, "lon": -73.9588108 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "network": "lcn", + "old_name:1811-1928": "Avenue A", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 5669710, + "bounds": { + "minlat": 40.7812798, + "minlon": -73.9832997, + "maxlat": 40.7843551, + "maxlon": -73.9759984 + }, + "nodes": [ + 42428072, + 10164740263, + 9492556517, + 9492542211, + 42428068, + 9492556601, + 8709392045, + 42428065, + 1061531803, + 8709392051, + 9897724595, + 42428063, + 9897654909, + 9897654912, + 42428061 + ], + "geometry": [ + { "lat": 40.7843551, "lon": -73.9832997 }, + { "lat": 40.7843104, "lon": -73.9832030 }, + { "lat": 40.7837355, "lon": -73.9818404 }, + { "lat": 40.7837156, "lon": -73.9817937 }, + { "lat": 40.7836663, "lon": -73.9816706 }, + { "lat": 40.7836155, "lon": -73.9815477 }, + { "lat": 40.7832529, "lon": -73.9806896 }, + { "lat": 40.7832069, "lon": -73.9805809 }, + { "lat": 40.7831278, "lon": -73.9803916 }, + { "lat": 40.7830856, "lon": -73.9802919 }, + { "lat": 40.7825238, "lon": -73.9789623 }, + { "lat": 40.7824641, "lon": -73.9788209 }, + { "lat": 40.7824140, "lon": -73.9787016 }, + { "lat": 40.7813246, "lon": -73.9761035 }, + { "lat": 40.7812798, "lon": -73.9759984 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lane_markings": "no", + "name": "West 78th Street", + "name:ru": "Западная 78-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669714, + "bounds": { + "minlat": 40.8474296, + "minlon": -73.9342753, + "maxlat": 40.8486416, + "maxlon": -73.9313968 + }, + "nodes": [ + 13317587896, + 42428086, + 5403873766, + 9550791763, + 42428082, + 9550791760, + 13703332497, + 9566914924, + 42428080 + ], + "geometry": [ + { "lat": 40.8486416, "lon": -73.9342753 }, + { "lat": 40.8486260, "lon": -73.9342390 }, + { "lat": 40.8485750, "lon": -73.9341191 }, + { "lat": 40.8480834, "lon": -73.9329563 }, + { "lat": 40.8480380, "lon": -73.9328490 }, + { "lat": 40.8479998, "lon": -73.9327578 }, + { "lat": 40.8476631, "lon": -73.9319542 }, + { "lat": 40.8474872, "lon": -73.9315343 }, + { "lat": 40.8474296, "lon": -73.9313968 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 180th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "180th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5669719, + "bounds": { + "minlat": 40.8481999, + "minlon": -73.9413247, + "maxlat": 40.8488159, + "maxlon": -73.9411176 + }, + "nodes": [ + 5048446874, + 9566938939, + 9908570837 + ], + "geometry": [ + { "lat": 40.8481999, "lon": -73.9413247 }, + { "lat": 40.8482599, "lon": -73.9413045 }, + { "lat": 40.8488159, "lon": -73.9411176 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Cabrini Boulevard", + "name:etymology:wikidata": "Q238983", + "oneway": "yes", + "rcn_ref": "9", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cabrini", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5015842", + "wikipedia": "en:Cabrini Boulevard" + } +}, +{ + "type": "way", + "id": 5669742, + "bounds": { + "minlat": 40.7199362, + "minlon": -74.0014266, + "maxlat": 40.7208456, + "maxlon": -74.0006622 + }, + "nodes": [ + 42428436, + 8231922365, + 4754117950, + 8307641794, + 42428434 + ], + "geometry": [ + { "lat": 40.7208456, "lon": -74.0006622 }, + { "lat": 40.7207872, "lon": -74.0007107 }, + { "lat": 40.7205319, "lon": -74.0009219 }, + { "lat": 40.7199759, "lon": -74.0013928 }, + { "lat": 40.7199362, "lon": -74.0014266 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 5669799, + "bounds": { + "minlat": 40.8414936, + "minlon": -73.9395896, + "maxlat": 40.8417297, + "maxlon": -73.9394169 + }, + "nodes": [ + 2499757467, + 9566927263, + 7132814245 + ], + "geometry": [ + { "lat": 40.8417297, "lon": -73.9394169 }, + { "lat": 40.8416683, "lon": -73.9394618 }, + { "lat": 40.8414936, "lon": -73.9395896 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 5669802, + "bounds": { + "minlat": 40.7802244, + "minlon": -73.9596069, + "maxlat": 40.7811984, + "maxlon": -73.9572984 + }, + "nodes": [ + 596776164, + 7924099693, + 5402554234, + 3392519871, + 42429324, + 3392519868, + 9906879193 + ], + "geometry": [ + { "lat": 40.7802244, "lon": -73.9572984 }, + { "lat": 40.7802697, "lon": -73.9574043 }, + { "lat": 40.7807862, "lon": -73.9586251 }, + { "lat": 40.7808160, "lon": -73.9586964 }, + { "lat": 40.7808601, "lon": -73.9588013 }, + { "lat": 40.7809117, "lon": -73.9589273 }, + { "lat": 40.7811984, "lon": -73.9596069 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5669804, + "bounds": { + "minlat": 40.7078606, + "minlon": -74.0076543, + "maxlat": 40.7083391, + "maxlon": -74.0068365 + }, + "nodes": [ + 6262915547, + 11369961847, + 11369961846, + 8281922152, + 11369961779, + 8281922178, + 42429354 + ], + "geometry": [ + { "lat": 40.7083391, "lon": -74.0076543 }, + { "lat": 40.7083389, "lon": -74.0076340 }, + { "lat": 40.7083367, "lon": -74.0076137 }, + { "lat": 40.7083286, "lon": -74.0075906 }, + { "lat": 40.7079183, "lon": -74.0069261 }, + { "lat": 40.7078790, "lon": -74.0068635 }, + { "lat": 40.7078606, "lon": -74.0068365 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Platt Street", + "name:ko": "플랫 스트리트", + "name:ru": "Платт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669806, + "bounds": { + "minlat": 40.7353130, + "minlon": -74.0018106, + "maxlat": 40.7385321, + "maxlon": -73.9941180 + }, + "nodes": [ + 42429373, + 10198867146, + 11591890889, + 42429374, + 11591890888, + 8310246325, + 42429375, + 8310246328, + 11728146526 + ], + "geometry": [ + { "lat": 40.7353130, "lon": -73.9941180 }, + { "lat": 40.7353643, "lon": -73.9942401 }, + { "lat": 40.7366158, "lon": -73.9972169 }, + { "lat": 40.7366680, "lon": -73.9973410 }, + { "lat": 40.7367263, "lon": -73.9974794 }, + { "lat": 40.7378171, "lon": -74.0000690 }, + { "lat": 40.7378614, "lon": -74.0001742 }, + { "lat": 40.7379180, "lon": -74.0003122 }, + { "lat": 40.7385321, "lon": -74.0018106 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "name_1": "West 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669809, + "bounds": { + "minlat": 40.7390953, + "minlon": -74.0031635, + "maxlat": 40.7391128, + "maxlon": -74.0030301 + }, + "nodes": [ + 6211332483, + 42429388 + ], + "geometry": [ + { "lat": 40.7391128, "lon": -74.0031635 }, + { "lat": 40.7390953, "lon": -74.0030301 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669813, + "bounds": { + "minlat": 40.8429382, + "minlon": -73.9406197, + "maxlat": 40.8454183, + "maxlon": -73.9346816 + }, + "nodes": [ + 42429452, + 8723021873, + 8723021881, + 42429457, + 8723021885, + 8722881598, + 42429466, + 8722881600, + 2499802958, + 7604384268, + 42429474, + 7604384270, + 42428994, + 2499802960, + 7604384272, + 7555419446, + 7604384351, + 42427152, + 7604384353 + ], + "geometry": [ + { "lat": 40.8429382, "lon": -73.9346816 }, + { "lat": 40.8429935, "lon": -73.9348122 }, + { "lat": 40.8435133, "lon": -73.9360393 }, + { "lat": 40.8435500, "lon": -73.9361260 }, + { "lat": 40.8435940, "lon": -73.9362302 }, + { "lat": 40.8440848, "lon": -73.9373941 }, + { "lat": 40.8441370, "lon": -73.9375180 }, + { "lat": 40.8441915, "lon": -73.9376457 }, + { "lat": 40.8446216, "lon": -73.9386543 }, + { "lat": 40.8446228, "lon": -73.9386575 }, + { "lat": 40.8446487, "lon": -73.9387288 }, + { "lat": 40.8446540, "lon": -73.9387468 }, + { "lat": 40.8446886, "lon": -73.9388653 }, + { "lat": 40.8447340, "lon": -73.9389963 }, + { "lat": 40.8447357, "lon": -73.9390003 }, + { "lat": 40.8450820, "lon": -73.9398302 }, + { "lat": 40.8453302, "lon": -73.9404152 }, + { "lat": 40.8453757, "lon": -73.9405244 }, + { "lat": 40.8454183, "lon": -73.9406197 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 173rd Street", + "name_1": "West 173 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "173rd", + "tiger:name_base_1": "173", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5669815, + "bounds": { + "minlat": 40.7059282, + "minlon": -74.0088681, + "maxlat": 40.7059923, + "maxlon": -74.0087767 + }, + "nodes": [ + 11053183448, + 8276468659, + 42429512, + 11053183449, + 11053183450, + 2824895141 + ], + "geometry": [ + { "lat": 40.7059282, "lon": -74.0088681 }, + { "lat": 40.7059693, "lon": -74.0088450 }, + { "lat": 40.7059808, "lon": -74.0088345 }, + { "lat": 40.7059884, "lon": -74.0088180 }, + { "lat": 40.7059923, "lon": -74.0087979 }, + { "lat": 40.7059917, "lon": -74.0087767 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Hanover Street", + "name:etymology:wikidata": "Q157217", + "name:ko": "해노버 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Hanover", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "width": "17'8\"" + } +}, +{ + "type": "way", + "id": 5669820, + "bounds": { + "minlat": 40.8182287, + "minlon": -73.9593653, + "maxlat": 40.8193928, + "maxlon": -73.9565816 + }, + "nodes": [ + 42429541, + 10128889848, + 13703551240, + 10129081621, + 42428876 + ], + "geometry": [ + { "lat": 40.8193928, "lon": -73.9593653 }, + { "lat": 40.8193180, "lon": -73.9591858 }, + { "lat": 40.8185045, "lon": -73.9572409 }, + { "lat": 40.8182634, "lon": -73.9566646 }, + { "lat": 40.8182287, "lon": -73.9565816 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 132nd Street", + "name_1": "West 132 Street" + } +}, +{ + "type": "way", + "id": 5669822, + "bounds": { + "minlat": 40.8032304, + "minlon": -73.9461817, + "maxlat": 40.8038900, + "maxlon": -73.9446222 + }, + "nodes": [ + 2099150501, + 3023172123, + 5475082071, + 42429552 + ], + "geometry": [ + { "lat": 40.8038900, "lon": -73.9461817 }, + { "lat": 40.8036479, "lon": -73.9456292 }, + { "lat": 40.8032730, "lon": -73.9447227 }, + { "lat": 40.8032304, "lon": -73.9446222 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "residential", + "lanes": "2", + "name": "West 120th Street", + "name:ru": "Западная 120-я стрит", + "name_1": "West 120 Street", + "oneway": "yes", + "parking:lane:left": "parallel" + } +}, +{ + "type": "way", + "id": 5669826, + "bounds": { + "minlat": 40.7121302, + "minlon": -74.0057398, + "maxlat": 40.7122331, + "maxlon": -74.0056926 + }, + "nodes": [ + 2821304146, + 4452680808, + 3942249545 + ], + "geometry": [ + { "lat": 40.7121302, "lon": -74.0056926 }, + { "lat": 40.7122145, "lon": -74.0057312 }, + { "lat": 40.7122331, "lon": -74.0057398 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 5669829, + "bounds": { + "minlat": 40.7154525, + "minlon": -74.0153827, + "maxlat": 40.7158297, + "maxlon": -74.0146236 + }, + "nodes": [ + 3588508439, + 11439633458, + 7838207514, + 5836025493, + 42429630 + ], + "geometry": [ + { "lat": 40.7154525, "lon": -74.0146236 }, + { "lat": 40.7155046, "lon": -74.0146866 }, + { "lat": 40.7155334, "lon": -74.0147322 }, + { "lat": 40.7157579, "lon": -74.0152209 }, + { "lat": 40.7158297, "lon": -74.0153827 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through;right" + } +}, +{ + "type": "way", + "id": 5669835, + "bounds": { + "minlat": 40.7453904, + "minlon": -74.0083054, + "maxlat": 40.7454644, + "maxlon": -74.0081345 + }, + "nodes": [ + 373903786, + 11027912164 + ], + "geometry": [ + { "lat": 40.7454644, "lon": -74.0083054 }, + { "lat": 40.7453904, "lon": -74.0081345 } + ], + "tags": { + "bicycle": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 18th Street", + "name:ru": "Западная 18-я стрит", + "name_1": "West 18 Street", + "oneway": "yes", + "surface": "concrete", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 5669837, + "bounds": { + "minlat": 40.7265178, + "minlon": -73.9950815, + "maxlat": 40.7268583, + "maxlon": -73.9947981 + }, + "nodes": [ + 5824300187, + 42421932, + 5243701137 + ], + "geometry": [ + { "lat": 40.7265178, "lon": -73.9950815 }, + { "lat": 40.7265799, "lon": -73.9950298 }, + { "lat": 40.7268583, "lon": -73.9947981 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Great Jones Alley", + "name:etymology:wikidata": "Q2218465", + "name:ko": "그레이트 존스 앨리", + "note": "nameing: http://forgotten-ny.com/2013/08/shinbone-alley-noho/", + "service": "alley", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Shinbone", + "tiger:name_type": "Aly", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5669841, + "bounds": { + "minlat": 40.7664881, + "minlon": -73.9615751, + "maxlat": 40.7684416, + "maxlon": -73.9569436 + }, + "nodes": [ + 42429690, + 6747157053, + 8393918884, + 7097336611, + 10122943663, + 8851344399, + 42429693, + 8851344397, + 6670244849, + 42429694 + ], + "geometry": [ + { "lat": 40.7684416, "lon": -73.9615751 }, + { "lat": 40.7683810, "lon": -73.9614366 }, + { "lat": 40.7680638, "lon": -73.9606726 }, + { "lat": 40.7678314, "lon": -73.9601212 }, + { "lat": 40.7675642, "lon": -73.9594909 }, + { "lat": 40.7675479, "lon": -73.9594517 }, + { "lat": 40.7675009, "lon": -73.9593404 }, + { "lat": 40.7674465, "lon": -73.9592144 }, + { "lat": 40.7665522, "lon": -73.9570925 }, + { "lat": 40.7664881, "lon": -73.9569436 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 70th Street", + "name:ru": "Восточная 70-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669842, + "bounds": { + "minlat": 40.7311376, + "minlon": -74.0029381, + "maxlat": 40.7317982, + "maxlon": -74.0011515 + }, + "nodes": [ + 42429701, + 6213204069, + 8429015937, + 4375703339, + 4320105473, + 42429700 + ], + "geometry": [ + { "lat": 40.7311376, "lon": -74.0029381 }, + { "lat": 40.7311489, "lon": -74.0029063 }, + { "lat": 40.7311559, "lon": -74.0028868 }, + { "lat": 40.7317509, "lon": -74.0012210 }, + { "lat": 40.7317529, "lon": -74.0012171 }, + { "lat": 40.7317982, "lon": -74.0011515 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Fr 17:00-24:00; Sa-Su 12:00-24:00)", + "name": "Cornelia Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669846, + "bounds": { + "minlat": 40.8703989, + "minlon": -73.9139795, + "maxlat": 40.8711588, + "maxlon": -73.9121747 + }, + "nodes": [ + 42429703, + 9675601634, + 11587349743, + 9561126009, + 42429704 + ], + "geometry": [ + { "lat": 40.8703989, "lon": -73.9121747 }, + { "lat": 40.8704250, "lon": -73.9122641 }, + { "lat": 40.8704499, "lon": -73.9123224 }, + { "lat": 40.8711179, "lon": -73.9138829 }, + { "lat": 40.8711588, "lon": -73.9139795 } + ], + "tags": { + "highway": "tertiary", + "name": "West 218th Street", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "218th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034" + } +}, +{ + "type": "way", + "id": 5669850, + "bounds": { + "minlat": 40.8067090, + "minlon": -73.9563424, + "maxlat": 40.8081780, + "maxlon": -73.9528570 + }, + "nodes": [ + 42429747, + 7004396660, + 6586965815, + 11840444651, + 42429744, + 11840444653, + 11298919661, + 42429741, + 11298919658, + 11840444664, + 42429735 + ], + "geometry": [ + { "lat": 40.8081780, "lon": -73.9563424 }, + { "lat": 40.8081289, "lon": -73.9562212 }, + { "lat": 40.8078602, "lon": -73.9555967 }, + { "lat": 40.8076382, "lon": -73.9550456 }, + { "lat": 40.8075988, "lon": -73.9549478 }, + { "lat": 40.8075596, "lon": -73.9548557 }, + { "lat": 40.8070331, "lon": -73.9536197 }, + { "lat": 40.8069824, "lon": -73.9534985 }, + { "lat": 40.8069366, "lon": -73.9533911 }, + { "lat": 40.8067712, "lon": -73.9530030 }, + { "lat": 40.8067090, "lon": -73.9528570 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 120th Street", + "name:ru": "Западная 120-я стрит", + "name_1": "West 120 Street", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5669857, + "bounds": { + "minlat": 40.7194191, + "minlon": -73.9921764, + "maxlat": 40.7196785, + "maxlon": -73.9913219 + }, + "nodes": [ + 486867432, + 8231896494, + 13033174921, + 8821681989, + 8307642254, + 486867405 + ], + "geometry": [ + { "lat": 40.7196785, "lon": -73.9921764 }, + { "lat": 40.7196558, "lon": -73.9921006 }, + { "lat": 40.7196386, "lon": -73.9920440 }, + { "lat": 40.7194528, "lon": -73.9914320 }, + { "lat": 40.7194404, "lon": -73.9913896 }, + { "lat": 40.7194191, "lon": -73.9913219 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "name:zh": "地蘭西街", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 5669860, + "bounds": { + "minlat": 40.7164540, + "minlon": -73.9822890, + "maxlat": 40.7169760, + "maxlon": -73.9805736 + }, + "nodes": [ + 42429812, + 5690464192, + 42429811, + 7476371570, + 42429809 + ], + "geometry": [ + { "lat": 40.7164540, "lon": -73.9805736 }, + { "lat": 40.7164847, "lon": -73.9806742 }, + { "lat": 40.7167180, "lon": -73.9814380 }, + { "lat": 40.7169647, "lon": -73.9822530 }, + { "lat": 40.7169760, "lon": -73.9822890 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "perpendicular", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 5669863, + "bounds": { + "minlat": 40.8114975, + "minlon": -73.9550848, + "maxlat": 40.8120077, + "maxlon": -73.9547074 + }, + "nodes": [ + 7598970693, + 6823995470, + 9150563664, + 6823995474 + ], + "geometry": [ + { "lat": 40.8120077, "lon": -73.9550848 }, + { "lat": 40.8118519, "lon": -73.9550224 }, + { "lat": 40.8117108, "lon": -73.9549085 }, + { "lat": 40.8114975, "lon": -73.9547074 } + ], + "tags": { + "highway": "residential", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5669866, + "bounds": { + "minlat": 40.7157586, + "minlon": -74.0090000, + "maxlat": 40.7175980, + "maxlon": -74.0049777 + }, + "nodes": [ + 42428408, + 8307637666, + 4501889846, + 42429829, + 8312361664, + 42429830, + 11515468873, + 8312361667, + 8312361688, + 42429832, + 8312361691, + 8304498513, + 42429833 + ], + "geometry": [ + { "lat": 40.7157586, "lon": -74.0049777 }, + { "lat": 40.7158063, "lon": -74.0050772 }, + { "lat": 40.7159975, "lon": -74.0054873 }, + { "lat": 40.7163185, "lon": -74.0061911 }, + { "lat": 40.7164862, "lon": -74.0065658 }, + { "lat": 40.7165336, "lon": -74.0066670 }, + { "lat": 40.7165767, "lon": -74.0067634 }, + { "lat": 40.7165937, "lon": -74.0068013 }, + { "lat": 40.7170752, "lon": -74.0078553 }, + { "lat": 40.7171326, "lon": -74.0079807 }, + { "lat": 40.7171725, "lon": -74.0080685 }, + { "lat": 40.7175484, "lon": -74.0088915 }, + { "lat": 40.7175980, "lon": -74.0090000 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Thomas Street", + "name:ko": "토마스 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669870, + "bounds": { + "minlat": 40.7050011, + "minlon": -74.0061305, + "maxlat": 40.7052863, + "maxlon": -74.0057063 + }, + "nodes": [ + 11316393484, + 8276468569 + ], + "geometry": [ + { "lat": 40.7050011, "lon": -74.0057063 }, + { "lat": 40.7052863, "lon": -74.0061305 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Pine Street", + "name:ko": "파인 스트리트", + "oneway": "no", + "surface": "paving_stones", + "wikidata": "Q13845373" + } +}, +{ + "type": "way", + "id": 5669872, + "bounds": { + "minlat": 40.8015499, + "minlon": -73.9386603, + "maxlat": 40.8019127, + "maxlon": -73.9383985 + }, + "nodes": [ + 3903057548, + 10170762169, + 5551224307, + 42429868 + ], + "geometry": [ + { "lat": 40.8015499, "lon": -73.9386603 }, + { "lat": 40.8016050, "lon": -73.9386188 }, + { "lat": 40.8016170, "lon": -73.9386098 }, + { "lat": 40.8019127, "lon": -73.9383985 } + ], + "tags": { + "access": "private", + "bicycle": "dismount", + "foot": "private", + "highway": "service", + "horse": "no", + "motor_vehicle": "no", + "name": "Sylvan Court", + "service": "alley", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 5669875, + "bounds": { + "minlat": 40.7427711, + "minlon": -73.9881911, + "maxlat": 40.7434569, + "maxlon": -73.9865977 + }, + "nodes": [ + 42429874, + 3009534472, + 4276517132, + 42429876 + ], + "geometry": [ + { "lat": 40.7434569, "lon": -73.9881911 }, + { "lat": 40.7434109, "lon": -73.9880841 }, + { "lat": 40.7428172, "lon": -73.9867048 }, + { "lat": 40.7427711, "lon": -73.9865977 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 26th Street", + "name:ru": "Восточная 26-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669878, + "bounds": { + "minlat": 40.8688890, + "minlon": -73.9167458, + "maxlat": 40.8693238, + "maxlon": -73.9156810 + }, + "nodes": [ + 42429236, + 9561209011, + 11587266247, + 11587266265, + 13300264672, + 42429960 + ], + "geometry": [ + { "lat": 40.8693238, "lon": -73.9167458 }, + { "lat": 40.8692659, "lon": -73.9166070 }, + { "lat": 40.8689748, "lon": -73.9158918 }, + { "lat": 40.8689486, "lon": -73.9158274 }, + { "lat": 40.8689356, "lon": -73.9157955 }, + { "lat": 40.8688890, "lon": -73.9156810 } + ], + "tags": { + "highway": "residential", + "name": "West 214th Street", + "name_1": "West 214 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "214th", + "tiger:name_base_1": "214", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5669879, + "bounds": { + "minlat": 40.7611816, + "minlon": -73.9601302, + "maxlat": 40.7621180, + "maxlon": -73.9579018 + }, + "nodes": [ + 42427970, + 4918486968, + 4918486093, + 42429986 + ], + "geometry": [ + { "lat": 40.7611816, "lon": -73.9579018 }, + { "lat": 40.7612276, "lon": -73.9580272 }, + { "lat": 40.7620705, "lon": -73.9600107 }, + { "lat": 40.7621180, "lon": -73.9601302 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "East 63rd Street", + "name:ru": "Восточная 63-я стрит", + "name_1": "East 63 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669881, + "bounds": { + "minlat": 40.7730391, + "minlon": -73.9839423, + "maxlat": 40.7754121, + "maxlon": -73.9782890 + }, + "nodes": [ + 7802856341, + 3809536804, + 9902399064, + 9902399061, + 9902399056, + 9902175354, + 4557495130, + 9902164242, + 8780665883, + 1061531527, + 42428598, + 8780665889, + 7556282013, + 7556282021, + 7050687026, + 42429999 + ], + "geometry": [ + { "lat": 40.7730391, "lon": -73.9782890 }, + { "lat": 40.7730883, "lon": -73.9784017 }, + { "lat": 40.7734406, "lon": -73.9792557 }, + { "lat": 40.7739399, "lon": -73.9804419 }, + { "lat": 40.7739774, "lon": -73.9805309 }, + { "lat": 40.7741735, "lon": -73.9809967 }, + { "lat": 40.7742310, "lon": -73.9811332 }, + { "lat": 40.7742808, "lon": -73.9812512 }, + { "lat": 40.7745892, "lon": -73.9819827 }, + { "lat": 40.7746399, "lon": -73.9821073 }, + { "lat": 40.7747214, "lon": -73.9822972 }, + { "lat": 40.7747754, "lon": -73.9824247 }, + { "lat": 40.7752117, "lon": -73.9834568 }, + { "lat": 40.7752328, "lon": -73.9835102 }, + { "lat": 40.7753661, "lon": -73.9838345 }, + { "lat": 40.7754121, "lon": -73.9839423 } + ], + "tags": { + "alt_name": "West 67 Street", + "cycleway:both": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 67th Street", + "name:ru": "Западная 67-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "28'0\"" + } +}, +{ + "type": "way", + "id": 5669882, + "bounds": { + "minlat": 40.7138581, + "minlon": -74.0115197, + "maxlat": 40.7143259, + "maxlon": -74.0105746 + }, + "nodes": [ + 42430009, + 11460901506, + 11460901505, + 11460901504, + 11460901503, + 8304497721, + 8279851473, + 42430007 + ], + "geometry": [ + { "lat": 40.7143259, "lon": -74.0115197 }, + { "lat": 40.7143166, "lon": -74.0115117 }, + { "lat": 40.7143021, "lon": -74.0114959 }, + { "lat": 40.7142865, "lon": -74.0114706 }, + { "lat": 40.7142727, "lon": -74.0114424 }, + { "lat": 40.7142465, "lon": -74.0113876 }, + { "lat": 40.7139003, "lon": -74.0106672 }, + { "lat": 40.7138581, "lon": -74.0105746 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Park Place", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 플레이스", + "name:ru": "Парк-Плейс", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:both:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669886, + "bounds": { + "minlat": 40.8471725, + "minlon": -73.9407760, + "maxlat": 40.8473921, + "maxlon": -73.9406910 + }, + "nodes": [ + 42430022, + 9908572544, + 9566938950, + 42430023 + ], + "geometry": [ + { "lat": 40.8471725, "lon": -73.9407760 }, + { "lat": 40.8473054, "lon": -73.9407258 }, + { "lat": 40.8473313, "lon": -73.9407161 }, + { "lat": 40.8473921, "lon": -73.9406910 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "South Pinehurst Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pinehurst", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5669892, + "bounds": { + "minlat": 40.7203018, + "minlon": -73.9973963, + "maxlat": 40.7214592, + "maxlon": -73.9939937 + }, + "nodes": [ + 1773076511, + 42429752, + 5296795596, + 8821681996, + 8231909737, + 42430030, + 8231909740, + 8231927620, + 42430034, + 8231927623, + 8231927624, + 42430038, + 8231927627, + 12187436351, + 8307642228, + 42430041 + ], + "geometry": [ + { "lat": 40.7203018, "lon": -73.9939937 }, + { "lat": 40.7203425, "lon": -73.9941129 }, + { "lat": 40.7203727, "lon": -73.9942017 }, + { "lat": 40.7203942, "lon": -73.9942648 }, + { "lat": 40.7206108, "lon": -73.9949048 }, + { "lat": 40.7206316, "lon": -73.9949663 }, + { "lat": 40.7206558, "lon": -73.9950380 }, + { "lat": 40.7208752, "lon": -73.9956889 }, + { "lat": 40.7208958, "lon": -73.9957503 }, + { "lat": 40.7209205, "lon": -73.9958237 }, + { "lat": 40.7211511, "lon": -73.9965080 }, + { "lat": 40.7211736, "lon": -73.9965747 }, + { "lat": 40.7211981, "lon": -73.9966473 }, + { "lat": 40.7214175, "lon": -73.9972724 }, + { "lat": 40.7214369, "lon": -73.9973311 }, + { "lat": 40.7214592, "lon": -73.9973963 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lane_markings": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Kenmare Street", + "name:etymology:wikidata": "Q166232", + "name:ko": "켄메어 스트리트", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669896, + "bounds": { + "minlat": 40.7678229, + "minlon": -73.9523297, + "maxlat": 40.7688110, + "maxlon": -73.9499856 + }, + "nodes": [ + 589298326, + 13701288022, + 6689923818, + 42428013 + ], + "geometry": [ + { "lat": 40.7678229, "lon": -73.9499856 }, + { "lat": 40.7681626, "lon": -73.9507909 }, + { "lat": 40.7687536, "lon": -73.9521920 }, + { "lat": 40.7688110, "lon": -73.9523297 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "East 75th Street", + "name:ru": "Восточная 75-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669899, + "bounds": { + "minlat": 40.7242643, + "minlon": -74.0047442, + "maxlat": 40.7255633, + "maxlon": -74.0045513 + }, + "nodes": [ + 42430102, + 4890320314, + 4890320299, + 592484776, + 4890320320, + 4890320290, + 42430108 + ], + "geometry": [ + { "lat": 40.7255633, "lon": -74.0045513 }, + { "lat": 40.7254897, "lon": -74.0045622 }, + { "lat": 40.7249797, "lon": -74.0046379 }, + { "lat": 40.7249133, "lon": -74.0046478 }, + { "lat": 40.7248483, "lon": -74.0046575 }, + { "lat": 40.7243450, "lon": -74.0047319 }, + { "lat": 40.7242643, "lon": -74.0047442 } + ], + "tags": { + "alt_name:ko": "6번가", + "highway": "residential", + "name": "6th Avenue", + "name:ko": "식스 애비뉴", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669922, + "bounds": { + "minlat": 40.7179475, + "minlon": -74.0055763, + "maxlat": 40.7182917, + "maxlon": -74.0053562 + }, + "nodes": [ + 4143851142, + 4143859861, + 4143859854, + 11515468966, + 8304498316, + 42430115 + ], + "geometry": [ + { "lat": 40.7179475, "lon": -74.0055763 }, + { "lat": 40.7180149, "lon": -74.0055297 }, + { "lat": 40.7180915, "lon": -74.0054781 }, + { "lat": 40.7181968, "lon": -74.0054106 }, + { "lat": 40.7182487, "lon": -74.0053797 }, + { "lat": 40.7182917, "lon": -74.0053562 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:left": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left|slight_left", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 5669925, + "bounds": { + "minlat": 40.7278068, + "minlon": -74.0031234, + "maxlat": 40.7283967, + "maxlon": -74.0030772 + }, + "nodes": [ + 13082559909, + 4321677347, + 8821481440, + 42430470, + 42430468 + ], + "geometry": [ + { "lat": 40.7278068, "lon": -74.0030955 }, + { "lat": 40.7280185, "lon": -74.0031234 }, + { "lat": 40.7282798, "lon": -74.0030933 }, + { "lat": 40.7283272, "lon": -74.0030874 }, + { "lat": 40.7283967, "lon": -74.0030772 } + ], + "tags": { + "destination": "West Houston Street", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Congress Street", + "name:ko": "콘그레스 스트리트", + "name_1": "Avenue of Americas", + "name_2": "6 Avenue", + "old_name": "Congress Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Avenue of the Americas", + "tiger:name_base_1": "Avenue of Americas", + "tiger:name_base_2": "6", + "tiger:name_type_2": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 5669928, + "bounds": { + "minlat": 40.7884126, + "minlon": -73.9465498, + "maxlat": 40.7890006, + "maxlon": -73.9451981 + }, + "nodes": [ + 42430482, + 6190264248, + 6254902022, + 8732555119 + ], + "geometry": [ + { "lat": 40.7890006, "lon": -73.9465498 }, + { "lat": 40.7889352, "lon": -73.9464292 }, + { "lat": 40.7886600, "lon": -73.9457907 }, + { "lat": 40.7884126, "lon": -73.9451981 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "East 102nd Street", + "name:ru": "Восточная 102-я стрит", + "oneway": "\">", + "parking:condition:right": "private", + "parking:lane:left": "perpendicular", + "parking:lane:right": "diagonal" + } +}, +{ + "type": "way", + "id": 5669933, + "bounds": { + "minlat": 40.7023795, + "minlon": -74.0137834, + "maxlat": 40.7024066, + "maxlon": -74.0132927 + }, + "nodes": [ + 11107654706, + 2034011044, + 2034011041, + 1772096971, + 2034011046, + 279151954 + ], + "geometry": [ + { "lat": 40.7023967, "lon": -74.0132927 }, + { "lat": 40.7023818, "lon": -74.0135306 }, + { "lat": 40.7023795, "lon": -74.0135904 }, + { "lat": 40.7023806, "lon": -74.0136578 }, + { "lat": 40.7023849, "lon": -74.0137015 }, + { "lat": 40.7024066, "lon": -74.0137834 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "State Street", + "name:etymology:wikidata": "Q1384", + "name:ko": "스테이트 스트리트", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "State Street", + "tiger:name_type": "Plz", + "turn:lanes:forward": "left;through|through", + "wikidata": "Q13461917", + "wikipedia": "en:State Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5669935, + "bounds": { + "minlat": 40.7174024, + "minlon": -74.0106308, + "maxlat": 40.7174659, + "maxlon": -74.0100927 + }, + "nodes": [ + 42430519, + 8304497521, + 42430521 + ], + "geometry": [ + { "lat": 40.7174659, "lon": -74.0106308 }, + { "lat": 40.7174537, "lon": -74.0105455 }, + { "lat": 40.7174024, "lon": -74.0100927 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Duane Street", + "name:etymology:wikidata": "Q339274", + "name:ko": "두에인 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669938, + "bounds": { + "minlat": 40.7160045, + "minlon": -74.0083863, + "maxlat": 40.7166109, + "maxlon": -74.0070792 + }, + "nodes": [ + 42430557, + 8312361684, + 8312361675, + 11515468987, + 42430550 + ], + "geometry": [ + { "lat": 40.7166109, "lon": -74.0083863 }, + { "lat": 40.7165509, "lon": -74.0082560 }, + { "lat": 40.7160658, "lon": -74.0072097 }, + { "lat": 40.7160503, "lon": -74.0071768 }, + { "lat": 40.7160045, "lon": -74.0070792 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Duane Street", + "name:etymology:wikidata": "Q339274", + "name:ko": "두에인 스트리트", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669945, + "bounds": { + "minlat": 40.7484224, + "minlon": -74.0072425, + "maxlat": 40.7488909, + "maxlon": -74.0070027 + }, + "nodes": [ + 9143569913, + 9143569907, + 12161232228, + 3914863394, + 42430589 + ], + "geometry": [ + { "lat": 40.7484224, "lon": -74.0072425 }, + { "lat": 40.7487185, "lon": -74.0070365 }, + { "lat": 40.7487399, "lon": -74.0070228 }, + { "lat": 40.7487713, "lon": -74.0070186 }, + { "lat": 40.7488909, "lon": -74.0070027 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5669953, + "bounds": { + "minlat": 40.7357944, + "minlon": -74.0015452, + "maxlat": 40.7364599, + "maxlon": -74.0011844 + }, + "nodes": [ + 11062719791, + 5554351996, + 42430824 + ], + "geometry": [ + { "lat": 40.7364599, "lon": -74.0011844 }, + { "lat": 40.7358655, "lon": -74.0015067 }, + { "lat": 40.7357944, "lon": -74.0015452 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669962, + "bounds": { + "minlat": 40.7297790, + "minlon": -73.9955159, + "maxlat": 40.7334463, + "maxlon": -73.9868120 + }, + "nodes": [ + 42430857, + 8309479724, + 12179524679, + 11070155328, + 42430861, + 11070155329, + 12179524683, + 12179524684, + 11608923664, + 42428480, + 11608923663, + 4500033348, + 4500033344, + 12179524689, + 4234578192, + 42430872, + 8309479625, + 12179524694, + 8309479617, + 42430886, + 8309479614, + 3892037906, + 12179524697, + 12179524698, + 4236104521, + 42430898 + ], + "geometry": [ + { "lat": 40.7334463, "lon": -73.9955159 }, + { "lat": 40.7333931, "lon": -73.9953848 }, + { "lat": 40.7327975, "lon": -73.9939718 }, + { "lat": 40.7327674, "lon": -73.9939004 }, + { "lat": 40.7327322, "lon": -73.9938168 }, + { "lat": 40.7326940, "lon": -73.9937257 }, + { "lat": 40.7318214, "lon": -73.9916472 }, + { "lat": 40.7318058, "lon": -73.9916098 }, + { "lat": 40.7317902, "lon": -73.9915724 }, + { "lat": 40.7317437, "lon": -73.9914641 }, + { "lat": 40.7316983, "lon": -73.9913567 }, + { "lat": 40.7315866, "lon": -73.9910925 }, + { "lat": 40.7314421, "lon": -73.9907476 }, + { "lat": 40.7313768, "lon": -73.9905928 }, + { "lat": 40.7313539, "lon": -73.9905383 }, + { "lat": 40.7312878, "lon": -73.9903880 }, + { "lat": 40.7312270, "lon": -73.9902542 }, + { "lat": 40.7308061, "lon": -73.9892557 }, + { "lat": 40.7307776, "lon": -73.9891844 }, + { "lat": 40.7307259, "lon": -73.9890608 }, + { "lat": 40.7306657, "lon": -73.9889167 }, + { "lat": 40.7300742, "lon": -73.9875244 }, + { "lat": 40.7298645, "lon": -73.9870207 }, + { "lat": 40.7298497, "lon": -73.9869847 }, + { "lat": 40.7298275, "lon": -73.9869306 }, + { "lat": 40.7297790, "lon": -73.9868120 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 10th Street", + "name:ru": "Восточная 10-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669964, + "bounds": { + "minlat": 40.8506515, + "minlon": -73.9373618, + "maxlat": 40.8518944, + "maxlon": -73.9369058 + }, + "nodes": [ + 42430951, + 9550791815, + 11227281115, + 8151650903, + 12607382017, + 42430953 + ], + "geometry": [ + { "lat": 40.8506515, "lon": -73.9373618 }, + { "lat": 40.8507357, "lon": -73.9373309 }, + { "lat": 40.8513337, "lon": -73.9371064 }, + { "lat": 40.8513989, "lon": -73.9370819 }, + { "lat": 40.8518680, "lon": -73.9369058 }, + { "lat": 40.8518944, "lon": -73.9369077 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Colonel Robert Magaw Place", + "name:etymology:wikidata": "Q7347275", + "oneway": "yes", + "short_name": "Magaw Place", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Colonel Robert Magaw", + "tiger:name_base_1": "Magaw", + "tiger:name_type": "Pl", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5669966, + "bounds": { + "minlat": 40.7694673, + "minlon": -73.9499394, + "maxlat": 40.7700936, + "maxlon": -73.9494513 + }, + "nodes": [ + 42430959, + 3786873828, + 9906887433, + 3786873827, + 10122913409, + 9906887428, + 7103815251, + 4562863353 + ], + "geometry": [ + { "lat": 40.7694673, "lon": -73.9499394 }, + { "lat": 40.7694708, "lon": -73.9499221 }, + { "lat": 40.7694850, "lon": -73.9499022 }, + { "lat": 40.7695001, "lon": -73.9498863 }, + { "lat": 40.7697690, "lon": -73.9496858 }, + { "lat": 40.7699852, "lon": -73.9495247 }, + { "lat": 40.7700328, "lon": -73.9494895 }, + { "lat": 40.7700936, "lon": -73.9494513 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Cherokee Place", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669975, + "bounds": { + "minlat": 40.7716133, + "minlon": -73.9904508, + "maxlat": 40.7719754, + "maxlon": -73.9901846 + }, + "nodes": [ + 42430749, + 11608958692, + 595269619 + ], + "geometry": [ + { "lat": 40.7716133, "lon": -73.9904508 }, + { "lat": 40.7716766, "lon": -73.9904036 }, + { "lat": 40.7719754, "lon": -73.9901846 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5669976, + "bounds": { + "minlat": 40.7404227, + "minlon": -74.0089600, + "maxlat": 40.7407313, + "maxlon": -74.0082279 + }, + "nodes": [ + 42431156, + 4872626650, + 10168276347, + 11926998356 + ], + "geometry": [ + { "lat": 40.7407313, "lon": -74.0089600 }, + { "lat": 40.7406876, "lon": -74.0088565 }, + { "lat": 40.7406327, "lon": -74.0087319 }, + { "lat": 40.7404227, "lon": -74.0082279 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Little West 12th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669978, + "bounds": { + "minlat": 40.7270546, + "minlon": -73.9947496, + "maxlat": 40.7278276, + "maxlon": -73.9931487 + }, + "nodes": [ + 5481937333, + 12187431466, + 12187431467, + 8309479050, + 42431165, + 8309479053, + 42429676, + 5824300190, + 42428458 + ], + "geometry": [ + { "lat": 40.7270546, "lon": -73.9931487 }, + { "lat": 40.7272060, "lon": -73.9934518 }, + { "lat": 40.7272225, "lon": -73.9934856 }, + { "lat": 40.7272475, "lon": -73.9935369 }, + { "lat": 40.7272894, "lon": -73.9936231 }, + { "lat": 40.7273488, "lon": -73.9937447 }, + { "lat": 40.7275705, "lon": -73.9941899 }, + { "lat": 40.7278007, "lon": -73.9946540 }, + { "lat": 40.7278276, "lon": -73.9947496 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Great Jones Street", + "name:etymology:wikidata": "Q2218465", + "name:ko": "그레이트 존스 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5599378", + "wikipedia": "en:Great Jones Street" + } +}, +{ + "type": "way", + "id": 5669981, + "bounds": { + "minlat": 40.8609560, + "minlon": -73.9277660, + "maxlat": 40.8629260, + "maxlon": -73.9265020 + }, + "nodes": [ + 42427852, + 9561386512, + 11586960633, + 11586921263, + 9561344703, + 42431177 + ], + "geometry": [ + { "lat": 40.8629260, "lon": -73.9277660 }, + { "lat": 40.8628353, "lon": -73.9277077 }, + { "lat": 40.8623386, "lon": -73.9273891 }, + { "lat": 40.8611092, "lon": -73.9266004 }, + { "lat": 40.8610609, "lon": -73.9265691 }, + { "lat": 40.8609560, "lon": -73.9265020 } + ], + "tags": { + "alt_name": "West 198th Street", + "highway": "residential", + "name": "Arden Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:alt_name_base": "W 198th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Arden", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5669985, + "bounds": { + "minlat": 40.8000730, + "minlon": -73.9582337, + "maxlat": 40.8031025, + "maxlon": -73.9510373 + }, + "nodes": [ + 42431200, + 3099326117, + 8807524493, + 10165996983, + 42431201, + 10165996986, + 9150629534, + 2141026544, + 42431203, + 9150629533, + 11296200784, + 42431207, + 11296200787, + 7594535789, + 11296200794, + 42431210 + ], + "geometry": [ + { "lat": 40.8000730, "lon": -73.9510373 }, + { "lat": 40.8001332, "lon": -73.9511752 }, + { "lat": 40.8001662, "lon": -73.9512548 }, + { "lat": 40.8006283, "lon": -73.9523689 }, + { "lat": 40.8006859, "lon": -73.9525112 }, + { "lat": 40.8007494, "lon": -73.9526579 }, + { "lat": 40.8012103, "lon": -73.9537474 }, + { "lat": 40.8012531, "lon": -73.9538486 }, + { "lat": 40.8013250, "lon": -73.9540205 }, + { "lat": 40.8013698, "lon": -73.9541263 }, + { "lat": 40.8024460, "lon": -73.9566708 }, + { "lat": 40.8024899, "lon": -73.9567756 }, + { "lat": 40.8025417, "lon": -73.9569020 }, + { "lat": 40.8026754, "lon": -73.9572280 }, + { "lat": 40.8030607, "lon": -73.9581352 }, + { "lat": 40.8031025, "lon": -73.9582337 } + ], + "tags": { + "highway": "residential", + "name": "West 113th Street", + "name:ru": "Западная 113-я стрит", + "name_1": "West 113 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5669990, + "bounds": { + "minlat": 40.8691500, + "minlon": -73.9223430, + "maxlat": 40.8694590, + "maxlon": -73.9221450 + }, + "nodes": [ + 42431228, + 9561561665, + 42431230 + ], + "geometry": [ + { "lat": 40.8694590, "lon": -73.9223430 }, + { "lat": 40.8692351, "lon": -73.9221994 }, + { "lat": 40.8691500, "lon": -73.9221450 } + ], + "tags": { + "alt_name": "Bobby O'Shea Way", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 207th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5669993, + "bounds": { + "minlat": 40.7313550, + "minlon": -74.0060166, + "maxlat": 40.7318924, + "maxlon": -74.0037892 + }, + "nodes": [ + 42430796, + 8307641977, + 8429014581, + 42431273, + 8429014584, + 42431274, + 4816151666, + 4816151671, + 4816151669, + 4816151670, + 4816151668, + 9627010523, + 4816151667, + 42431275 + ], + "geometry": [ + { "lat": 40.7318924, "lon": -74.0037892 }, + { "lat": 40.7318348, "lon": -74.0039794 }, + { "lat": 40.7315578, "lon": -74.0048936 }, + { "lat": 40.7315444, "lon": -74.0049377 }, + { "lat": 40.7315290, "lon": -74.0049860 }, + { "lat": 40.7313550, "lon": -74.0055320 }, + { "lat": 40.7315061, "lon": -74.0056091 }, + { "lat": 40.7315362, "lon": -74.0056262 }, + { "lat": 40.7315542, "lon": -74.0056482 }, + { "lat": 40.7315638, "lon": -74.0056778 }, + { "lat": 40.7315712, "lon": -74.0057204 }, + { "lat": 40.7315839, "lon": -74.0058335 }, + { "lat": 40.7315886, "lon": -74.0058754 }, + { "lat": 40.7316248, "lon": -74.0060166 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Commerce Street", + "name:etymology:wikidata": "Q26643", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670007, + "bounds": { + "minlat": 40.7878926, + "minlon": -73.9670316, + "maxlat": 40.7879466, + "maxlon": -73.9666836 + }, + "nodes": [ + 2216999460, + 1997760561, + 9908460368, + 9908460367, + 1997760559, + 7155273367, + 3616582591, + 822671139 + ], + "geometry": [ + { "lat": 40.7879156, "lon": -73.9666836 }, + { "lat": 40.7879365, "lon": -73.9667590 }, + { "lat": 40.7879403, "lon": -73.9667912 }, + { "lat": 40.7879466, "lon": -73.9668600 }, + { "lat": 40.7879453, "lon": -73.9669010 }, + { "lat": 40.7879413, "lon": -73.9669378 }, + { "lat": 40.7879324, "lon": -73.9669661 }, + { "lat": 40.7878926, "lon": -73.9670316 } + ], + "tags": { + "bicycle": "yes", + "hgv": "no", + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "West 90th Street", + "name:ru": "Западная 90-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670010, + "bounds": { + "minlat": 40.7278801, + "minlon": -73.9751868, + "maxlat": 40.7291391, + "maxlon": -73.9722000 + }, + "nodes": [ + 42431482, + 4161568805, + 1991214272, + 274337154 + ], + "geometry": [ + { "lat": 40.7291391, "lon": -73.9751868 }, + { "lat": 40.7290937, "lon": -73.9750832 }, + { "lat": 40.7290534, "lon": -73.9749871 }, + { "lat": 40.7278801, "lon": -73.9722000 } + ], + "tags": { + "access": "no", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 15th Street", + "name:ru": "Восточная 15-я стрит", + "name_1": "East 15 Street" + } +}, +{ + "type": "way", + "id": 5670011, + "bounds": { + "minlat": 40.7359137, + "minlon": -73.9931200, + "maxlat": 40.7366910, + "maxlon": -73.9912118 + }, + "nodes": [ + 42431491, + 10174523977, + 10174523976, + 5148103557, + 8429175909, + 42431490 + ], + "geometry": [ + { "lat": 40.7359141, "lon": -73.9912118 }, + { "lat": 40.7359137, "lon": -73.9912325 }, + { "lat": 40.7359183, "lon": -73.9912570 }, + { "lat": 40.7359299, "lon": -73.9912934 }, + { "lat": 40.7366408, "lon": -73.9930020 }, + { "lat": 40.7366910, "lon": -73.9931200 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 15th Street", + "name:ru": "Восточная 15-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670012, + "bounds": { + "minlat": 40.7387624, + "minlon": -74.0081110, + "maxlat": 40.7387650, + "maxlon": -74.0063602 + }, + "nodes": [ + 42431508, + 8307642206, + 12162436991, + 8307642213, + 42431505, + 11159805947, + 9802967325 + ], + "geometry": [ + { "lat": 40.7387650, "lon": -74.0081110 }, + { "lat": 40.7387648, "lon": -74.0080072 }, + { "lat": 40.7387628, "lon": -74.0066094 }, + { "lat": 40.7387627, "lon": -74.0065499 }, + { "lat": 40.7387625, "lon": -74.0064480 }, + { "lat": 40.7387624, "lon": -74.0063812 }, + { "lat": 40.7387624, "lon": -74.0063602 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Horatio Street", + "name:etymology:wikidata": "Q365124", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670029, + "bounds": { + "minlat": 40.7637382, + "minlon": -73.9707280, + "maxlat": 40.7673940, + "maxlon": -73.9620616 + }, + "nodes": [ + 42431649, + 7797632754, + 2792783187, + 10171134792, + 42431650, + 2792783185, + 10171134790, + 12834723205, + 10125227983, + 596775963, + 42431652, + 10125227986, + 10125147525, + 42431654, + 10125147524, + 10166238433, + 42431656, + 10166238432, + 8851344396, + 42431659 + ], + "geometry": [ + { "lat": 40.7673940, "lon": -73.9707280 }, + { "lat": 40.7673527, "lon": -73.9706301 }, + { "lat": 40.7667723, "lon": -73.9692542 }, + { "lat": 40.7667672, "lon": -73.9692421 }, + { "lat": 40.7667187, "lon": -73.9691270 }, + { "lat": 40.7666793, "lon": -73.9690336 }, + { "lat": 40.7666738, "lon": -73.9690204 }, + { "lat": 40.7661550, "lon": -73.9677772 }, + { "lat": 40.7661303, "lon": -73.9677179 }, + { "lat": 40.7660871, "lon": -73.9676144 }, + { "lat": 40.7660116, "lon": -73.9674335 }, + { "lat": 40.7659610, "lon": -73.9673139 }, + { "lat": 40.7654095, "lon": -73.9660113 }, + { "lat": 40.7653629, "lon": -73.9659010 }, + { "lat": 40.7653215, "lon": -73.9658037 }, + { "lat": 40.7647426, "lon": -73.9644414 }, + { "lat": 40.7646823, "lon": -73.9642995 }, + { "lat": 40.7646281, "lon": -73.9641696 }, + { "lat": 40.7637931, "lon": -73.9621865 }, + { "lat": 40.7637382, "lon": -73.9620616 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "name": "East 64th Street", + "name:ru": "Восточная 64-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670031, + "bounds": { + "minlat": 40.8668739, + "minlon": -73.9309850, + "maxlat": 40.8677479, + "maxlon": -73.9300831 + }, + "nodes": [ + 42425780, + 9561543909, + 60916236, + 60916237, + 9561543894 + ], + "geometry": [ + { "lat": 40.8668739, "lon": -73.9309850 }, + { "lat": 40.8669234, "lon": -73.9309364 }, + { "lat": 40.8672216, "lon": -73.9307176 }, + { "lat": 40.8674423, "lon": -73.9304944 }, + { "lat": 40.8677479, "lon": -73.9300831 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Staff Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Staff", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5670034, + "bounds": { + "minlat": 40.7692257, + "minlon": -73.9689040, + "maxlat": 40.7699010, + "maxlon": -73.9673032 + }, + "nodes": [ + 42431671, + 7797632771, + 10170844866, + 42431674 + ], + "geometry": [ + { "lat": 40.7699010, "lon": -73.9689040 }, + { "lat": 40.7698590, "lon": -73.9688045 }, + { "lat": 40.7692704, "lon": -73.9674089 }, + { "lat": 40.7692257, "lon": -73.9673032 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 68th Street", + "name:ru": "Восточная 68-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670036, + "bounds": { + "minlat": 40.7333340, + "minlon": -74.0073908, + "maxlat": 40.7333688, + "maxlon": -74.0070250 + }, + "nodes": [ + 42431703, + 8288270328, + 5357277397, + 42431706 + ], + "geometry": [ + { "lat": 40.7333688, "lon": -74.0073908 }, + { "lat": 40.7333598, "lon": -74.0072958 }, + { "lat": 40.7333582, "lon": -74.0072789 }, + { "lat": 40.7333340, "lon": -74.0070250 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Greenwich Mews", + "name:etymology:wikidata": "Q205380", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 5670037, + "bounds": { + "minlat": 40.7213953, + "minlon": -73.9927139, + "maxlat": 40.7219465, + "maxlon": -73.9924653 + }, + "nodes": [ + 42431712, + 8231896505, + 2547684543, + 10649698117, + 42431714 + ], + "geometry": [ + { "lat": 40.7213953, "lon": -73.9927139 }, + { "lat": 40.7214411, "lon": -73.9926912 }, + { "lat": 40.7217763, "lon": -73.9925379 }, + { "lat": 40.7218294, "lon": -73.9925236 }, + { "lat": 40.7219465, "lon": -73.9924653 } + ], + "tags": { + "highway": "pedestrian", + "name": "Freeman Alley", + "oneway": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 5670039, + "bounds": { + "minlat": 40.8756706, + "minlon": -73.9129101, + "maxlat": 40.8779331, + "maxlon": -73.9100278 + }, + "nodes": [ + 42431724, + 1545097240, + 1545097330, + 1545097327, + 1545097414, + 1545097257, + 1545097409, + 1545097376, + 10868090835, + 42431726, + 42431729, + 1545097381, + 10868090748, + 1545097211, + 1545097253, + 1545097198, + 1545097302, + 13068119341, + 42427939 + ], + "geometry": [ + { "lat": 40.8778412, "lon": -73.9100278 }, + { "lat": 40.8778694, "lon": -73.9101083 }, + { "lat": 40.8779197, "lon": -73.9103054 }, + { "lat": 40.8779331, "lon": -73.9105330 }, + { "lat": 40.8779185, "lon": -73.9108142 }, + { "lat": 40.8778741, "lon": -73.9110202 }, + { "lat": 40.8778088, "lon": -73.9112372 }, + { "lat": 40.8776934, "lon": -73.9114596 }, + { "lat": 40.8775947, "lon": -73.9115969 }, + { "lat": 40.8775555, "lon": -73.9116513 }, + { "lat": 40.8767499, "lon": -73.9126886 }, + { "lat": 40.8765528, "lon": -73.9128027 }, + { "lat": 40.8764730, "lon": -73.9128474 }, + { "lat": 40.8764255, "lon": -73.9128740 }, + { "lat": 40.8762716, "lon": -73.9129100 }, + { "lat": 40.8761088, "lon": -73.9129101 }, + { "lat": 40.8759336, "lon": -73.9128801 }, + { "lat": 40.8757657, "lon": -73.9128294 }, + { "lat": 40.8756706, "lon": -73.9128004 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "foot": "yes", + "highway": "residential", + "inline_skates": "yes", + "lcn": "yes", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Terrace View", + "tiger:name_type": "Ave", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5670047, + "bounds": { + "minlat": 40.7051376, + "minlon": -74.0115211, + "maxlat": 40.7071202, + "maxlon": -74.0106735 + }, + "nodes": [ + 11050101247, + 10277180449, + 10958451055, + 3779246048, + 11053136348, + 11051773165, + 42431864, + 11051773164, + 11051773163, + 42431861, + 7168869970, + 1279337135, + 8855279588, + 42431858 + ], + "geometry": [ + { "lat": 40.7051376, "lon": -74.0115211 }, + { "lat": 40.7051784, "lon": -74.0115142 }, + { "lat": 40.7053845, "lon": -74.0114787 }, + { "lat": 40.7057178, "lon": -74.0114142 }, + { "lat": 40.7058053, "lon": -74.0113938 }, + { "lat": 40.7059086, "lon": -74.0113697 }, + { "lat": 40.7059960, "lon": -74.0113433 }, + { "lat": 40.7060581, "lon": -74.0113175 }, + { "lat": 40.7061292, "lon": -74.0112808 }, + { "lat": 40.7062780, "lon": -74.0111879 }, + { "lat": 40.7065485, "lon": -74.0110241 }, + { "lat": 40.7066222, "lon": -74.0109789 }, + { "lat": 40.7068095, "lon": -74.0108641 }, + { "lat": 40.7071202, "lon": -74.0106735 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "destination", + "name": "Broad Street", + "name:ko": "브로드 스트리트", + "name:ru": "Брод-стрит", + "oneway": "yes", + "surface": "sett", + "wikidata": "Q2613951", + "wikipedia": "en:Broad Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670058, + "bounds": { + "minlat": 40.7119737, + "minlon": -73.9982206, + "maxlat": 40.7132575, + "maxlon": -73.9977759 + }, + "nodes": [ + 42431992, + 11153640077, + 11504448508, + 6440842969, + 42431990, + 4158807601, + 8827539966, + 4158807602, + 4158807589, + 4158807595, + 4158807592 + ], + "geometry": [ + { "lat": 40.7119737, "lon": -73.9977759 }, + { "lat": 40.7120630, "lon": -73.9978015 }, + { "lat": 40.7126003, "lon": -73.9979553 }, + { "lat": 40.7126703, "lon": -73.9979753 }, + { "lat": 40.7127254, "lon": -73.9979907 }, + { "lat": 40.7131320, "lon": -73.9981107 }, + { "lat": 40.7131521, "lon": -73.9981212 }, + { "lat": 40.7131658, "lon": -73.9981283 }, + { "lat": 40.7131879, "lon": -73.9981482 }, + { "lat": 40.7132213, "lon": -73.9981817 }, + { "lat": 40.7132575, "lon": -73.9982206 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Oliver Street", + "name:etymology:wikidata": "Q7087491", + "name:ko": "올리버 스트리트", + "name_1": "Mariners Temple Lane", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670070, + "bounds": { + "minlat": 40.7113170, + "minlon": -73.9838874, + "maxlat": 40.7131988, + "maxlon": -73.9836160 + }, + "nodes": [ + 42432002, + 8310246547, + 9988423647, + 42432001, + 5377706584, + 8310246530, + 42432000 + ], + "geometry": [ + { "lat": 40.7113170, "lon": -73.9836160 }, + { "lat": 40.7113815, "lon": -73.9836249 }, + { "lat": 40.7118076, "lon": -73.9836819 }, + { "lat": 40.7124989, "lon": -73.9837744 }, + { "lat": 40.7130655, "lon": -73.9838501 }, + { "lat": 40.7131228, "lon": -73.9838662 }, + { "lat": 40.7131988, "lon": -73.9838874 } + ], + "tags": { + "foot": "use_sidepath", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Gouverneur Street", + "name:etymology:wikidata": "Q56742810", + "name:ko": "구버너 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670076, + "bounds": { + "minlat": 40.7219217, + "minlon": -73.9908923, + "maxlat": 40.7221822, + "maxlon": -73.9900420 + }, + "nodes": [ + 42432054, + 3316523989, + 4625620217, + 42429647 + ], + "geometry": [ + { "lat": 40.7221822, "lon": -73.9908923 }, + { "lat": 40.7221584, "lon": -73.9908141 }, + { "lat": 40.7219426, "lon": -73.9901051 }, + { "lat": 40.7219217, "lon": -73.9900420 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Stanton Street", + "name:ko": "스탠턴 스트리트", + "name:ru": "Стэнтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7600270", + "wikipedia": "en:Stanton Street" + } +}, +{ + "type": "way", + "id": 5670077, + "bounds": { + "minlat": 40.7228061, + "minlon": -73.9931650, + "maxlat": 40.7228311, + "maxlon": -73.9930344 + }, + "nodes": [ + 42432082, + 1773082408 + ], + "geometry": [ + { "lat": 40.7228311, "lon": -73.9931650 }, + { "lat": 40.7228061, "lon": -73.9930344 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Stanton Street", + "name:ko": "스탠턴 스트리트", + "name:ru": "Стэнтон-стрит", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt", + "wikidata": "Q7600270", + "wikipedia": "en:Stanton Street" + } +}, +{ + "type": "way", + "id": 5670079, + "bounds": { + "minlat": 40.7191341, + "minlon": -73.9942719, + "maxlat": 40.7193587, + "maxlon": -73.9935258 + }, + "nodes": [ + 12196062125, + 12195871652, + 8231909730 + ], + "geometry": [ + { "lat": 40.7191341, "lon": -73.9935258 }, + { "lat": 40.7193493, "lon": -73.9942407 }, + { "lat": 40.7193587, "lon": -73.9942719 } + ], + "tags": { + "cycleway:both": "no", + "highway": "secondary", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "smoothness": "intermediate", + "source:width": "ARCore", + "surface": "sett", + "width": "28'8\"", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 5670084, + "bounds": { + "minlat": 40.7194667, + "minlon": -73.9968358, + "maxlat": 40.7205066, + "maxlon": -73.9943946 + }, + "nodes": [ + 42432184, + 1773069828, + 8231909733, + 42432181, + 8231909736, + 8231927630, + 42432178, + 8231927633, + 12187433920, + 8231927635, + 42432174 + ], + "geometry": [ + { "lat": 40.7194667, "lon": -73.9943946 }, + { "lat": 40.7195685, "lon": -73.9945147 }, + { "lat": 40.7198465, "lon": -73.9951957 }, + { "lat": 40.7198711, "lon": -73.9952571 }, + { "lat": 40.7199006, "lon": -73.9953306 }, + { "lat": 40.7201568, "lon": -73.9959686 }, + { "lat": 40.7201804, "lon": -73.9960274 }, + { "lat": 40.7202084, "lon": -73.9960971 }, + { "lat": 40.7204622, "lon": -73.9967261 }, + { "lat": 40.7204808, "lon": -73.9967721 }, + { "lat": 40.7205066, "lon": -73.9968358 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "10.5", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 5670086, + "bounds": { + "minlat": 40.7148881, + "minlon": -73.9803139, + "maxlat": 40.7151250, + "maxlon": -73.9794886 + }, + "nodes": [ + 42432190, + 8310245619, + 42432189 + ], + "geometry": [ + { "lat": 40.7151250, "lon": -73.9803139 }, + { "lat": 40.7149302, "lon": -73.9796351 }, + { "lat": 40.7148881, "lon": -73.9794886 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "operator": "Hillman Housing Corp.", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 5670087, + "bounds": { + "minlat": 40.7336634, + "minlon": -73.9996733, + "maxlat": 40.7340784, + "maxlon": -73.9995234 + }, + "nodes": [ + 42432191, + 5690441975, + 12179564372, + 4320194276, + 42430237 + ], + "geometry": [ + { "lat": 40.7340784, "lon": -73.9996733 }, + { "lat": 40.7340155, "lon": -73.9996527 }, + { "lat": 40.7339663, "lon": -73.9996372 }, + { "lat": 40.7338159, "lon": -73.9995896 }, + { "lat": 40.7336634, "lon": -73.9995234 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenwich Avenue", + "name:etymology:wikidata": "Q205380", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5604832", + "wikipedia": "en:Greenwich Avenue" + } +}, +{ + "type": "way", + "id": 5670088, + "bounds": { + "minlat": 40.8381008, + "minlon": -73.9372062, + "maxlat": 40.8394631, + "maxlon": -73.9362457 + }, + "nodes": [ + 42432218, + 6836035789, + 2075592660, + 11758679666, + 6836035784, + 42432220, + 6836035785, + 11758679665, + 13716305947, + 2075592673, + 42432223 + ], + "geometry": [ + { "lat": 40.8381008, "lon": -73.9362457 }, + { "lat": 40.8381612, "lon": -73.9362958 }, + { "lat": 40.8381831, "lon": -73.9363119 }, + { "lat": 40.8385943, "lon": -73.9365983 }, + { "lat": 40.8386350, "lon": -73.9366266 }, + { "lat": 40.8386680, "lon": -73.9366500 }, + { "lat": 40.8387722, "lon": -73.9367234 }, + { "lat": 40.8388120, "lon": -73.9367512 }, + { "lat": 40.8392294, "lon": -73.9370428 }, + { "lat": 40.8393519, "lon": -73.9371284 }, + { "lat": 40.8394631, "lon": -73.9372062 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "West 167th Street", + "name_1": "West 167 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "167th", + "tiger:name_base_1": "167", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5670092, + "bounds": { + "minlat": 40.7168306, + "minlon": -73.9977656, + "maxlat": 40.7256521, + "maxlon": -73.9937550 + }, + "nodes": [ + 1692433911, + 10171486357, + 5829779506, + 42432308, + 1918039901, + 5829779507, + 3463814538, + 42432305, + 3463814535, + 4501924445, + 8231927617, + 42432302, + 8231927618, + 8231927621, + 42430034, + 8231927622, + 8231927631, + 42432178, + 8231927632, + 7641718046, + 42432282, + 7641718037, + 42432265, + 42432260, + 42432255, + 9929761167, + 8307641593, + 42432250, + 9929761172, + 7641718017, + 13233178428, + 8307641547, + 42432246 + ], + "geometry": [ + { "lat": 40.7256521, "lon": -73.9937550 }, + { "lat": 40.7255893, "lon": -73.9937819 }, + { "lat": 40.7248389, "lon": -73.9941169 }, + { "lat": 40.7247637, "lon": -73.9941491 }, + { "lat": 40.7246266, "lon": -73.9942080 }, + { "lat": 40.7245479, "lon": -73.9942419 }, + { "lat": 40.7230908, "lon": -73.9948861 }, + { "lat": 40.7230360, "lon": -73.9949090 }, + { "lat": 40.7229833, "lon": -73.9949296 }, + { "lat": 40.7223076, "lon": -73.9951943 }, + { "lat": 40.7216771, "lon": -73.9954408 }, + { "lat": 40.7216242, "lon": -73.9954604 }, + { "lat": 40.7215736, "lon": -73.9954805 }, + { "lat": 40.7209838, "lon": -73.9957153 }, + { "lat": 40.7208958, "lon": -73.9957503 }, + { "lat": 40.7208148, "lon": -73.9957814 }, + { "lat": 40.7202511, "lon": -73.9959990 }, + { "lat": 40.7201804, "lon": -73.9960274 }, + { "lat": 40.7201146, "lon": -73.9960519 }, + { "lat": 40.7191246, "lon": -73.9964464 }, + { "lat": 40.7190617, "lon": -73.9964718 }, + { "lat": 40.7189902, "lon": -73.9965025 }, + { "lat": 40.7186910, "lon": -73.9966320 }, + { "lat": 40.7184170, "lon": -73.9967710 }, + { "lat": 40.7181330, "lon": -73.9969360 }, + { "lat": 40.7179244, "lon": -73.9970726 }, + { "lat": 40.7179171, "lon": -73.9970776 }, + { "lat": 40.7178782, "lon": -73.9971031 }, + { "lat": 40.7178263, "lon": -73.9971344 }, + { "lat": 40.7178220, "lon": -73.9971378 }, + { "lat": 40.7175504, "lon": -73.9973097 }, + { "lat": 40.7169275, "lon": -73.9977039 }, + { "lat": 40.7168306, "lon": -73.9977656 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Mott Street", + "name:en": "Mott Street", + "name:ko": "모트 스트리트", + "name:zh": "勿街", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6918632", + "wikipedia": "en:Mott Street" + } +}, +{ + "type": "way", + "id": 5670099, + "bounds": { + "minlat": 40.7966362, + "minlon": -73.9497360, + "maxlat": 40.7970992, + "maxlon": -73.9494082 + }, + "nodes": [ + 595703226, + 7123873131, + 595703308, + 42432421, + 7123873111, + 42432418, + 42432415, + 3248816550, + 42432413, + 42432409, + 7123873150, + 42432405, + 7123798392, + 42432401, + 42432395 + ], + "geometry": [ + { "lat": 40.7970992, "lon": -73.9497360 }, + { "lat": 40.7970683, "lon": -73.9497003 }, + { "lat": 40.7970246, "lon": -73.9496720 }, + { "lat": 40.7969816, "lon": -73.9496557 }, + { "lat": 40.7969459, "lon": -73.9496493 }, + { "lat": 40.7969162, "lon": -73.9496539 }, + { "lat": 40.7968734, "lon": -73.9496550 }, + { "lat": 40.7968306, "lon": -73.9496491 }, + { "lat": 40.7967869, "lon": -73.9496324 }, + { "lat": 40.7967535, "lon": -73.9496165 }, + { "lat": 40.7967195, "lon": -73.9495858 }, + { "lat": 40.7966913, "lon": -73.9495513 }, + { "lat": 40.7966639, "lon": -73.9495077 }, + { "lat": 40.7966471, "lon": -73.9494559 }, + { "lat": 40.7966362, "lon": -73.9494082 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "name": "Duke Ellington Circle", + "name:etymology:wikidata": "Q4030", + "old_name": "Frawley Circle", + "oneway": "yes", + "parking:both": "no", + "parking:right:restriction": "no_parking", + "surface": "asphalt", + "wikidata": "Q5312765" + } +}, +{ + "type": "way", + "id": 5670106, + "bounds": { + "minlat": 40.7501946, + "minlon": -73.9765398, + "maxlat": 40.7507849, + "maxlon": -73.9751349 + }, + "nodes": [ + 42432444, + 10168841817, + 1731564119, + 12187391606 + ], + "geometry": [ + { "lat": 40.7507849, "lon": -73.9765398 }, + { "lat": 40.7507410, "lon": -73.9764330 }, + { "lat": 40.7503346, "lon": -73.9754693 }, + { "lat": 40.7501946, "lon": -73.9751349 } + ], + "tags": { + "alt_name": "Library Way", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 41st Street", + "name:ru": "Восточная 41-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 5670108, + "bounds": { + "minlat": 40.7046785, + "minlon": -74.0126169, + "maxlat": 40.7050096, + "maxlon": -74.0115534 + }, + "nodes": [ + 42442088, + 11050101187, + 8276468845, + 11050101189, + 42432552, + 11050101191, + 11050101190, + 3754499017, + 11050101181, + 8276468832, + 11050101182, + 11050101183, + 11050101184, + 11050101185, + 42431871 + ], + "geometry": [ + { "lat": 40.7050096, "lon": -74.0126119 }, + { "lat": 40.7049724, "lon": -74.0126169 }, + { "lat": 40.7049447, "lon": -74.0126164 }, + { "lat": 40.7047044, "lon": -74.0125929 }, + { "lat": 40.7046886, "lon": -74.0125877 }, + { "lat": 40.7046806, "lon": -74.0125743 }, + { "lat": 40.7046785, "lon": -74.0125550 }, + { "lat": 40.7047008, "lon": -74.0122052 }, + { "lat": 40.7047184, "lon": -74.0116913 }, + { "lat": 40.7047203, "lon": -74.0116403 }, + { "lat": 40.7047234, "lon": -74.0116113 }, + { "lat": 40.7047284, "lon": -74.0115924 }, + { "lat": 40.7047371, "lon": -74.0115767 }, + { "lat": 40.7047457, "lon": -74.0115657 }, + { "lat": 40.7047613, "lon": -74.0115534 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Marketfield Street", + "name:ko": "마켓필드 스트리트", + "name:ru": "Маркетфилд-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "service": "alley", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Marketfield;New", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q13616699", + "wikipedia": "en:Marketfield Street" + } +}, +{ + "type": "way", + "id": 5670111, + "bounds": { + "minlat": 40.7769031, + "minlon": -73.9783086, + "maxlat": 40.7781042, + "maxlon": -73.9754712 + }, + "nodes": [ + 42432556, + 7784867887, + 3269834162, + 8984859290, + 9674460649, + 42432558 + ], + "geometry": [ + { "lat": 40.7769031, "lon": -73.9754712 }, + { "lat": 40.7769527, "lon": -73.9755861 }, + { "lat": 40.7772465, "lon": -73.9762717 }, + { "lat": 40.7780440, "lon": -73.9781637 }, + { "lat": 40.7780657, "lon": -73.9782159 }, + { "lat": 40.7781042, "lon": -73.9783086 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "name": "West 73rd Street", + "name:ru": "Западная 73-я стрит", + "name_1": "West 73 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670114, + "bounds": { + "minlat": 40.7579096, + "minlon": -73.9808828, + "maxlat": 40.7592744, + "maxlon": -73.9776624 + }, + "nodes": [ + 42432580, + 3955372901, + 4782506033, + 805764932, + 10693951249, + 11304895434, + 4799735130, + 11304895437, + 3855009864, + 3971196621, + 42430356 + ], + "geometry": [ + { "lat": 40.7579096, "lon": -73.9776624 }, + { "lat": 40.7579660, "lon": -73.9777950 }, + { "lat": 40.7580743, "lon": -73.9780511 }, + { "lat": 40.7582415, "lon": -73.9784455 }, + { "lat": 40.7583864, "lon": -73.9787875 }, + { "lat": 40.7584075, "lon": -73.9788381 }, + { "lat": 40.7584528, "lon": -73.9789441 }, + { "lat": 40.7584762, "lon": -73.9790000 }, + { "lat": 40.7584988, "lon": -73.9790526 }, + { "lat": 40.7592183, "lon": -73.9807504 }, + { "lat": 40.7592744, "lon": -73.9808828 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "West 49th Street", + "name:ru": "Западная 49-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670118, + "bounds": { + "minlat": 40.7171454, + "minlon": -74.0029151, + "maxlat": 40.7177308, + "maxlon": -74.0024327 + }, + "nodes": [ + 42432623, + 8307641730, + 8307641732, + 591566825 + ], + "geometry": [ + { "lat": 40.7171454, "lon": -74.0029151 }, + { "lat": 40.7171950, "lon": -74.0028747 }, + { "lat": 40.7176849, "lon": -74.0024702 }, + { "lat": 40.7177308, "lon": -74.0024327 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "name": "Cortlandt Alley", + "name:ko": "코트랜드 앨리", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670119, + "bounds": { + "minlat": 40.8204475, + "minlon": -73.9362503, + "maxlat": 40.8211204, + "maxlon": -73.9357506 + }, + "nodes": [ + 42432659, + 9166288595, + 5478861077, + 5478861082, + 9557088460, + 42432665 + ], + "geometry": [ + { "lat": 40.8204475, "lon": -73.9362503 }, + { "lat": 40.8205415, "lon": -73.9361845 }, + { "lat": 40.8207092, "lon": -73.9360589 }, + { "lat": 40.8210377, "lon": -73.9358128 }, + { "lat": 40.8210727, "lon": -73.9357851 }, + { "lat": 40.8211204, "lon": -73.9357506 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "highway": "residential", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 5670121, + "bounds": { + "minlat": 40.7059306, + "minlon": -74.0110376, + "maxlat": 40.7062397, + "maxlon": -74.0102113 + }, + "nodes": [ + 11051773161, + 11051773168, + 11051773167, + 11051773166 + ], + "geometry": [ + { "lat": 40.7062397, "lon": -74.0110376 }, + { "lat": 40.7060164, "lon": -74.0104408 }, + { "lat": 40.7059374, "lon": -74.0102294 }, + { "lat": 40.7059306, "lon": -74.0102113 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "destination", + "name": "Exchange Place", + "name:etymology:wikidata": "Q1097619", + "name:ko": "익스체인지 플레이스", + "name:ru": "Эксчейндж-Плейс", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Exchange", + "tiger:name_type": "Pl", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q13578686", + "wikipedia": "en:Exchange Place (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670124, + "bounds": { + "minlat": 40.7556389, + "minlon": -73.9823131, + "maxlat": 40.7566051, + "maxlon": -73.9800189 + }, + "nodes": [ + 9753722444, + 2176936521, + 9753722445 + ], + "geometry": [ + { "lat": 40.7556389, "lon": -73.9800189 }, + { "lat": 40.7563566, "lon": -73.9817169 }, + { "lat": 40.7566051, "lon": -73.9823131 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "name_1": "West 45 Street", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670127, + "bounds": { + "minlat": 40.8595904, + "minlon": -73.9198460, + "maxlat": 40.8598980, + "maxlon": -73.9190766 + }, + "nodes": [ + 42432720, + 7570236332, + 6892932924, + 7570236333, + 42432722 + ], + "geometry": [ + { "lat": 40.8595904, "lon": -73.9190766 }, + { "lat": 40.8598381, "lon": -73.9197093 }, + { "lat": 40.8598491, "lon": -73.9197342 }, + { "lat": 40.8598846, "lon": -73.9198155 }, + { "lat": 40.8598980, "lon": -73.9198460 } + ], + "tags": { + "access": "no", + "highway": "residential", + "name": "West 201st Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "201", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5670129, + "bounds": { + "minlat": 40.7987264, + "minlon": -73.9679062, + "maxlat": 40.8022515, + "maxlon": -73.9595472 + }, + "nodes": [ + 42432736, + 9796881840, + 10171241063, + 42432737, + 10171241066, + 11548264829, + 42432744, + 11548264830, + 2539225403, + 10166004024, + 42432756, + 10166004027, + 10166004049, + 1061531717, + 42428760 + ], + "geometry": [ + { "lat": 40.7987264, "lon": -73.9595472 }, + { "lat": 40.7987760, "lon": -73.9596649 }, + { "lat": 40.7992916, "lon": -73.9608874 }, + { "lat": 40.7993297, "lon": -73.9609777 }, + { "lat": 40.7993740, "lon": -73.9610829 }, + { "lat": 40.7998654, "lon": -73.9622479 }, + { "lat": 40.7999222, "lon": -73.9623828 }, + { "lat": 40.7999741, "lon": -73.9625058 }, + { "lat": 40.8003937, "lon": -73.9635008 }, + { "lat": 40.8010646, "lon": -73.9650918 }, + { "lat": 40.8011081, "lon": -73.9651949 }, + { "lat": 40.8011744, "lon": -73.9653521 }, + { "lat": 40.8021168, "lon": -73.9675867 }, + { "lat": 40.8021586, "lon": -73.9676859 }, + { "lat": 40.8022515, "lon": -73.9679062 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 107th Street", + "name:ru": "Западная 107-я стрит", + "name_1": "West 107 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670131, + "bounds": { + "minlat": 40.8650356, + "minlon": -73.9272714, + "maxlat": 40.8655306, + "maxlon": -73.9269528 + }, + "nodes": [ + 42429215, + 9561395277, + 11787450969 + ], + "geometry": [ + { "lat": 40.8655306, "lon": -73.9272714 }, + { "lat": 40.8654368, "lon": -73.9272110 }, + { "lat": 40.8650356, "lon": -73.9269528 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Dyckman Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "turn:lanes:backward": "slight_left|", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 5670139, + "bounds": { + "minlat": 40.7626208, + "minlon": -73.9739744, + "maxlat": 40.7629723, + "maxlon": -73.9731390 + }, + "nodes": [ + 42432818, + 9971383724, + 9960054857 + ], + "geometry": [ + { "lat": 40.7629723, "lon": -73.9739744 }, + { "lat": 40.7629197, "lon": -73.9738494 }, + { "lat": 40.7626208, "lon": -73.9731390 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:left": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670141, + "bounds": { + "minlat": 40.8720821, + "minlon": -73.9196925, + "maxlat": 40.8730220, + "maxlon": -73.9184590 + }, + "nodes": [ + 42429709, + 42432882, + 42429950 + ], + "geometry": [ + { "lat": 40.8730220, "lon": -73.9184590 }, + { "lat": 40.8722490, "lon": -73.9194580 }, + { "lat": 40.8720821, "lon": -73.9196925 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Indian Road", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Indian", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5670164, + "bounds": { + "minlat": 40.8034963, + "minlon": -73.9527381, + "maxlat": 40.8041987, + "maxlon": -73.9527154 + }, + "nodes": [ + 42432894, + 10171219263, + 9150629540, + 1695379703 + ], + "geometry": [ + { "lat": 40.8041987, "lon": -73.9527337 }, + { "lat": 40.8041245, "lon": -73.9527374 }, + { "lat": 40.8040589, "lon": -73.9527381 }, + { "lat": 40.8034963, "lon": -73.9527154 } + ], + "tags": { + "highway": "tertiary", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 5670167, + "bounds": { + "minlat": 40.7077643, + "minlon": -74.0020637, + "maxlat": 40.7081931, + "maxlon": -74.0016856 + }, + "nodes": [ + 42433205, + 11375808069, + 11375808070, + 8279851808, + 11375807887, + 8279851783, + 42433212 + ], + "geometry": [ + { "lat": 40.7081931, "lon": -74.0020637 }, + { "lat": 40.7081855, "lon": -74.0020426 }, + { "lat": 40.7081782, "lon": -74.0020279 }, + { "lat": 40.7081666, "lon": -74.0020151 }, + { "lat": 40.7078287, "lon": -74.0017343 }, + { "lat": 40.7078108, "lon": -74.0017194 }, + { "lat": 40.7077643, "lon": -74.0016856 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Peck Slip", + "name:etymology:wikidata": "Q128782864", + "name:ko": "펙 슬립", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5670168, + "bounds": { + "minlat": 40.7074090, + "minlon": -74.0018996, + "maxlat": 40.7082744, + "maxlon": -74.0009920 + }, + "nodes": [ + 12299314854, + 42433243, + 8279851750, + 8279851780, + 42433237, + 8279851781, + 10309191114, + 8279851806, + 42433231 + ], + "geometry": [ + { "lat": 40.7074090, "lon": -74.0009920 }, + { "lat": 40.7074606, "lon": -74.0010414 }, + { "lat": 40.7074997, "lon": -74.0010816 }, + { "lat": 40.7078241, "lon": -74.0014168 }, + { "lat": 40.7078710, "lon": -74.0014617 }, + { "lat": 40.7079152, "lon": -74.0015088 }, + { "lat": 40.7082168, "lon": -74.0018341 }, + { "lat": 40.7082423, "lon": -74.0018618 }, + { "lat": 40.7082744, "lon": -74.0018996 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Peck Slip", + "name:etymology:wikidata": "Q128782864", + "name:ko": "펙 슬립", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5670169, + "bounds": { + "minlat": 40.7953672, + "minlon": -73.9736411, + "maxlat": 40.7971483, + "maxlon": -73.9694159 + }, + "nodes": [ + 42433256, + 11296570956, + 9496980738, + 42431104, + 9496980740, + 10170980712, + 42428720, + 1061531727, + 7004447599, + 6207264935, + 42433252 + ], + "geometry": [ + { "lat": 40.7971483, "lon": -73.9736411 }, + { "lat": 40.7971287, "lon": -73.9735952 }, + { "lat": 40.7966159, "lon": -73.9723929 }, + { "lat": 40.7965612, "lon": -73.9722665 }, + { "lat": 40.7965046, "lon": -73.9721297 }, + { "lat": 40.7960465, "lon": -73.9710380 }, + { "lat": 40.7960068, "lon": -73.9709423 }, + { "lat": 40.7959244, "lon": -73.9707469 }, + { "lat": 40.7958800, "lon": -73.9706417 }, + { "lat": 40.7954199, "lon": -73.9695494 }, + { "lat": 40.7953672, "lon": -73.9694159 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 98th Street", + "name:ru": "Западная 98-я стрит", + "name_1": "West 98 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5670170, + "bounds": { + "minlat": 40.7334390, + "minlon": -74.0012059, + "maxlat": 40.7338470, + "maxlon": -74.0011030 + }, + "nodes": [ + 42433260, + 8429015928, + 11987722732, + 4320028823, + 42433261 + ], + "geometry": [ + { "lat": 40.7334390, "lon": -74.0011030 }, + { "lat": 40.7335242, "lon": -74.0011245 }, + { "lat": 40.7337592, "lon": -74.0011838 }, + { "lat": 40.7338019, "lon": -74.0011946 }, + { "lat": 40.7338470, "lon": -74.0012059 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Waverly Place", + "name:etymology:wikidata": "Q678251", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4993391", + "wikipedia": "en:Waverly Place" + } +}, +{ + "type": "way", + "id": 5670171, + "bounds": { + "minlat": 40.7322180, + "minlon": -74.0016130, + "maxlat": 40.7337060, + "maxlon": -73.9986160 + }, + "nodes": [ + 42433281, + 5690447869, + 7646537226, + 42430235, + 8231954053, + 42433282, + 42433260, + 4320028844, + 42433286 + ], + "geometry": [ + { "lat": 40.7322180, "lon": -73.9986160 }, + { "lat": 40.7322465, "lon": -73.9986762 }, + { "lat": 40.7328680, "lon": -73.9999418 }, + { "lat": 40.7329290, "lon": -74.0000660 }, + { "lat": 40.7329901, "lon": -74.0001914 }, + { "lat": 40.7332427, "lon": -74.0007095 }, + { "lat": 40.7334390, "lon": -74.0011030 }, + { "lat": 40.7336782, "lon": -74.0015630 }, + { "lat": 40.7337060, "lon": -74.0016130 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Waverly Place", + "name:etymology:wikidata": "Q678251", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4993391", + "wikipedia": "en:Waverly Place" + } +}, +{ + "type": "way", + "id": 5670172, + "bounds": { + "minlat": 40.7299780, + "minlon": -73.9955665, + "maxlat": 40.7307210, + "maxlon": -73.9940640 + }, + "nodes": [ + 42433298, + 3584752276, + 13507209416, + 8309478888, + 42433295, + 8309478886, + 8309479178, + 42433292 + ], + "geometry": [ + { "lat": 40.7307210, "lon": -73.9955665 }, + { "lat": 40.7306780, "lon": -73.9954828 }, + { "lat": 40.7304082, "lon": -73.9949391 }, + { "lat": 40.7303784, "lon": -73.9948770 }, + { "lat": 40.7303546, "lon": -73.9948305 }, + { "lat": 40.7303245, "lon": -73.9947701 }, + { "lat": 40.7300023, "lon": -73.9941135 }, + { "lat": 40.7299780, "lon": -73.9940640 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Waverly Place", + "name:etymology:wikidata": "Q678251", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4993391", + "wikipedia": "en:Waverly Place" + } +}, +{ + "type": "way", + "id": 5670174, + "bounds": { + "minlat": 40.7079244, + "minlon": -74.0060233, + "maxlat": 40.7084065, + "maxlon": -74.0047821 + }, + "nodes": [ + 42433330, + 11369418305, + 11369418306, + 8281922170, + 11369418365, + 3784213866, + 6859553505, + 3784213868, + 11343006560, + 8262936336, + 673008453 + ], + "geometry": [ + { "lat": 40.7079259, "lon": -74.0060233 }, + { "lat": 40.7079244, "lon": -74.0059992 }, + { "lat": 40.7079287, "lon": -74.0059714 }, + { "lat": 40.7079375, "lon": -74.0059472 }, + { "lat": 40.7080953, "lon": -74.0055670 }, + { "lat": 40.7081032, "lon": -74.0055478 }, + { "lat": 40.7081528, "lon": -74.0054241 }, + { "lat": 40.7082540, "lon": -74.0051666 }, + { "lat": 40.7083453, "lon": -74.0049344 }, + { "lat": 40.7083662, "lon": -74.0048825 }, + { "lat": 40.7084065, "lon": -74.0047821 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Cliff Street", + "name:ko": "클리프 스트리트", + "name:ru": "Клифф-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670175, + "bounds": { + "minlat": 40.8322331, + "minlon": -73.9452488, + "maxlat": 40.8334033, + "maxlon": -73.9424802 + }, + "nodes": [ + 561035371, + 9680957586, + 11291862035, + 42433339 + ], + "geometry": [ + { "lat": 40.8334033, "lon": -73.9452488 }, + { "lat": 40.8333666, "lon": -73.9451652 }, + { "lat": 40.8322962, "lon": -73.9426298 }, + { "lat": 40.8322331, "lon": -73.9424802 } + ], + "tags": { + "highway": "residential", + "name": "West 156th Street", + "name_1": "West 156 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "156th", + "tiger:name_base_1": "156", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5670176, + "bounds": { + "minlat": 40.8562300, + "minlon": -73.9282660, + "maxlat": 40.8568009, + "maxlon": -73.9268630 + }, + "nodes": [ + 42433346, + 8725139251, + 5403868122, + 42433151 + ], + "geometry": [ + { "lat": 40.8562300, "lon": -73.9268630 }, + { "lat": 40.8562721, "lon": -73.9269654 }, + { "lat": 40.8567396, "lon": -73.9280995 }, + { "lat": 40.8568009, "lon": -73.9282660 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "West 193rd Street", + "name_1": "West 193 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "193rd", + "tiger:name_base_1": "193", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5670177, + "bounds": { + "minlat": 40.8579899, + "minlon": -73.9318180, + "maxlat": 40.8582710, + "maxlon": -73.9308883 + }, + "nodes": [ + 42433350, + 9561253098, + 42429109 + ], + "geometry": [ + { "lat": 40.8579899, "lon": -73.9308883 }, + { "lat": 40.8582329, "lon": -73.9316921 }, + { "lat": 40.8582710, "lon": -73.9318180 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "West 193rd Street", + "name_1": "West 193 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "193rd", + "tiger:name_base_1": "193", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5670178, + "bounds": { + "minlat": 40.7312576, + "minlon": -73.9960959, + "maxlat": 40.7316248, + "maxlon": -73.9952332 + }, + "nodes": [ + 9800536167, + 5784502858 + ], + "geometry": [ + { "lat": 40.7316248, "lon": -73.9960959 }, + { "lat": 40.7312576, "lon": -73.9952332 } + ], + "tags": { + "access": "permissive", + "attraction": "yes", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "private", + "name": "Washington Mews", + "name:etymology:wikidata": "Q909592", + "sidewalk:both": "separate", + "surface": "sett", + "tourism": "yes", + "wikidata": "Q4018413", + "wikipedia": "en:Washington Mews" + } +}, +{ + "type": "way", + "id": 5670184, + "bounds": { + "minlat": 40.7858286, + "minlon": -73.9398936, + "maxlat": 40.7860712, + "maxlon": -73.9396756 + }, + "nodes": [ + 42430491, + 7080329533, + 8834794442, + 5749215967 + ], + "geometry": [ + { "lat": 40.7860712, "lon": -73.9396756 }, + { "lat": 40.7860562, "lon": -73.9396822 }, + { "lat": 40.7860345, "lon": -73.9397006 }, + { "lat": 40.7858286, "lon": -73.9398936 } + ], + "tags": { + "destination": "East 100th Street", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670186, + "bounds": { + "minlat": 40.7792164, + "minlon": -73.9442812, + "maxlat": 40.7823635, + "maxlon": -73.9435413 + }, + "nodes": [ + 589929444, + 589929455, + 9178967025, + 7941041505, + 589929456, + 7941041506, + 589929457, + 9178967026, + 371214565, + 42450569, + 42450566, + 3785532363, + 9178967027, + 9178967028, + 371207270, + 3785532364, + 42433422 + ], + "geometry": [ + { "lat": 40.7823635, "lon": -73.9441993 }, + { "lat": 40.7822575, "lon": -73.9442240 }, + { "lat": 40.7821557, "lon": -73.9442453 }, + { "lat": 40.7820517, "lon": -73.9442620 }, + { "lat": 40.7819592, "lon": -73.9442726 }, + { "lat": 40.7818593, "lon": -73.9442793 }, + { "lat": 40.7817472, "lon": -73.9442812 }, + { "lat": 40.7816337, "lon": -73.9442750 }, + { "lat": 40.7815243, "lon": -73.9442671 }, + { "lat": 40.7814210, "lon": -73.9442538 }, + { "lat": 40.7813135, "lon": -73.9442337 }, + { "lat": 40.7804599, "lon": -73.9440290 }, + { "lat": 40.7802392, "lon": -73.9439642 }, + { "lat": 40.7800357, "lon": -73.9438952 }, + { "lat": 40.7798294, "lon": -73.9438173 }, + { "lat": 40.7796262, "lon": -73.9437294 }, + { "lat": 40.7792164, "lon": -73.9435413 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 5670189, + "bounds": { + "minlat": 40.7136728, + "minlon": -73.9980743, + "maxlat": 40.7137811, + "maxlon": -73.9979810 + }, + "nodes": [ + 588455742, + 11504053991, + 1773060099 + ], + "geometry": [ + { "lat": 40.7136728, "lon": -73.9979810 }, + { "lat": 40.7137225, "lon": -73.9980286 }, + { "lat": 40.7137811, "lon": -73.9980743 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670192, + "bounds": { + "minlat": 40.7839166, + "minlon": -73.9786335, + "maxlat": 40.7858381, + "maxlon": -73.9740729 + }, + "nodes": [ + 42428661, + 11655721350, + 8709397326, + 10039927876, + 42433567, + 10039927867, + 6877248401, + 10039972343, + 42433565 + ], + "geometry": [ + { "lat": 40.7858381, "lon": -73.9786335 }, + { "lat": 40.7857555, "lon": -73.9784379 }, + { "lat": 40.7857152, "lon": -73.9783425 }, + { "lat": 40.7851610, "lon": -73.9770304 }, + { "lat": 40.7851032, "lon": -73.9768937 }, + { "lat": 40.7850562, "lon": -73.9767821 }, + { "lat": 40.7841919, "lon": -73.9747296 }, + { "lat": 40.7839648, "lon": -73.9741877 }, + { "lat": 40.7839166, "lon": -73.9740729 } + ], + "tags": { + "alt_name": "West 82 Street", + "hgv": "local", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 82nd Street", + "name:ru": "Западная 82-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670193, + "bounds": { + "minlat": 40.7230033, + "minlon": -74.0021260, + "maxlat": 40.7254278, + "maxlon": -74.0000626 + }, + "nodes": [ + 8231934410, + 42433578, + 8231934411, + 8231885405, + 42433577, + 8231885406, + 12187433933, + 8231922389 + ], + "geometry": [ + { "lat": 40.7254278, "lon": -74.0000626 }, + { "lat": 40.7253820, "lon": -74.0001010 }, + { "lat": 40.7253394, "lon": -74.0001369 }, + { "lat": 40.7242147, "lon": -74.0010859 }, + { "lat": 40.7241660, "lon": -74.0011270 }, + { "lat": 40.7241223, "lon": -74.0011640 }, + { "lat": 40.7230266, "lon": -74.0021060 }, + { "lat": 40.7230033, "lon": -74.0021260 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Wooster Street", + "name:etymology:wikidata": "Q4993246", + "name:ko": "우스터 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q19582621", + "wikipedia": "en:Wooster Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670197, + "bounds": { + "minlat": 40.7549099, + "minlon": -73.9944753, + "maxlat": 40.7559045, + "maxlon": -73.9921117 + }, + "nodes": [ + 42433625, + 8288270382, + 9664959634 + ], + "geometry": [ + { "lat": 40.7559045, "lon": -73.9944753 }, + { "lat": 40.7558548, "lon": -73.9943412 }, + { "lat": 40.7549099, "lon": -73.9921117 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670202, + "bounds": { + "minlat": 40.8173165, + "minlon": -73.9413096, + "maxlat": 40.8184380, + "maxlon": -73.9386193 + }, + "nodes": [ + 2141026520, + 8758299316, + 5378686567, + 9557104515, + 42433779 + ], + "geometry": [ + { "lat": 40.8184380, "lon": -73.9413096 }, + { "lat": 40.8183903, "lon": -73.9411946 }, + { "lat": 40.8176039, "lon": -73.9393087 }, + { "lat": 40.8173588, "lon": -73.9387208 }, + { "lat": 40.8173165, "lon": -73.9386193 } + ], + "tags": { + "highway": "residential", + "name": "West 140th Street", + "name_1": "West 140 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670203, + "bounds": { + "minlat": 40.8220613, + "minlon": -73.9528694, + "maxlat": 40.8233117, + "maxlon": -73.9499097 + }, + "nodes": [ + 42428917, + 561035356, + 10170641705, + 9279073332, + 42433800, + 9279073328, + 10181632168, + 42433797 + ], + "geometry": [ + { "lat": 40.8233117, "lon": -73.9528694 }, + { "lat": 40.8232275, "lon": -73.9526780 }, + { "lat": 40.8231801, "lon": -73.9525658 }, + { "lat": 40.8226948, "lon": -73.9513873 }, + { "lat": 40.8226586, "lon": -73.9513037 }, + { "lat": 40.8226212, "lon": -73.9512172 }, + { "lat": 40.8221227, "lon": -73.9500532 }, + { "lat": 40.8220613, "lon": -73.9499097 } + ], + "tags": { + "highway": "residential", + "name": "West 140th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670204, + "bounds": { + "minlat": 40.7329507, + "minlon": -74.0025813, + "maxlat": 40.7333766, + "maxlon": -74.0018089 + }, + "nodes": [ + 42433822, + 4320028827, + 42433821 + ], + "geometry": [ + { "lat": 40.7333766, "lon": -74.0025813 }, + { "lat": 40.7333336, "lon": -74.0025087 }, + { "lat": 40.7329507, "lon": -74.0018089 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Sheridan Square", + "name:etymology:wikidata": "Q355452", + "name_1": "West Washington Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670205, + "bounds": { + "minlat": 40.7024415, + "minlon": -74.0128371, + "maxlat": 40.7027177, + "maxlon": -74.0122358 + }, + "nodes": [ + 42433834, + 1805328848, + 42426747 + ], + "geometry": [ + { "lat": 40.7027177, "lon": -74.0122358 }, + { "lat": 40.7024855, "lon": -74.0127390 }, + { "lat": 40.7024415, "lon": -74.0128371 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "parking:left:restriction": "no_standing", + "parking:left:taxi": "designated", + "sidewalk:left": "separate", + "source": "Bing", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "New York", + "tiger:name_type": "Plz" + } +}, +{ + "type": "way", + "id": 5670225, + "bounds": { + "minlat": 40.7553621, + "minlon": -73.9790227, + "maxlat": 40.7560373, + "maxlon": -73.9774077 + }, + "nodes": [ + 42434072, + 3944708043, + 13718155147, + 13718155150, + 13718155144, + 3944708040, + 42434074 + ], + "geometry": [ + { "lat": 40.7560373, "lon": -73.9790227 }, + { "lat": 40.7559876, "lon": -73.9789038 }, + { "lat": 40.7557985, "lon": -73.9784488 }, + { "lat": 40.7557794, "lon": -73.9784037 }, + { "lat": 40.7557581, "lon": -73.9783562 }, + { "lat": 40.7554098, "lon": -73.9775218 }, + { "lat": 40.7553621, "lon": -73.9774077 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "East 46th Street", + "name:ru": "Восточная 46-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670226, + "bounds": { + "minlat": 40.8184840, + "minlon": -73.9559061, + "maxlat": 40.8187602, + "maxlon": -73.9552918 + }, + "nodes": [ + 42434101, + 7124965417, + 10129081638, + 7732653969 + ], + "geometry": [ + { "lat": 40.8184840, "lon": -73.9552918 }, + { "lat": 40.8185359, "lon": -73.9553848 }, + { "lat": 40.8187261, "lon": -73.9558268 }, + { "lat": 40.8187602, "lon": -73.9559061 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxheight": "9'11\"", + "name": "West 133rd Street", + "name_1": "West 133 Street", + "surface": "asphalt", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670228, + "bounds": { + "minlat": 40.8127869, + "minlon": -73.9445691, + "maxlat": 40.8139768, + "maxlon": -73.9417352 + }, + "nodes": [ + 42434110, + 3099327931, + 10168169647, + 5481924124, + 5481924122, + 8758345325, + 2141026515 + ], + "geometry": [ + { "lat": 40.8127869, "lon": -73.9417352 }, + { "lat": 40.8128495, "lon": -73.9418835 }, + { "lat": 40.8128970, "lon": -73.9419922 }, + { "lat": 40.8130290, "lon": -73.9423078 }, + { "lat": 40.8130825, "lon": -73.9424345 }, + { "lat": 40.8139283, "lon": -73.9444558 }, + { "lat": 40.8139768, "lon": -73.9445691 } + ], + "tags": { + "highway": "residential", + "name": "West 133rd Street", + "oneway": "yes", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670230, + "bounds": { + "minlat": 40.8025081, + "minlon": -73.9324054, + "maxlat": 40.8031531, + "maxlon": -73.9308738 + }, + "nodes": [ + 42434135, + 13247437524, + 6133388352 + ], + "geometry": [ + { "lat": 40.8025081, "lon": -73.9308738 }, + { "lat": 40.8025464, "lon": -73.9309647 }, + { "lat": 40.8031531, "lon": -73.9324054 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 126th Street", + "oneway": "yes", + "sidewalk": "both" + } +}, +{ + "type": "way", + "id": 5670232, + "bounds": { + "minlat": 40.7286043, + "minlon": -73.9899050, + "maxlat": 40.7295679, + "maxlon": -73.9876651 + }, + "nodes": [ + 42434140, + 3919359298, + 4235738201, + 42434142 + ], + "geometry": [ + { "lat": 40.7295679, "lon": -73.9899050 }, + { "lat": 40.7294928, "lon": -73.9897716 }, + { "lat": 40.7286600, "lon": -73.9877947 }, + { "lat": 40.7286043, "lon": -73.9876651 } + ], + "tags": { + "alt_name": "East 8th Street", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Saint Marks Place", + "name:etymology:wikidata": "Q7589922", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2142493", + "wikipedia": "en:8th Street and St. Mark's Place" + } +}, +{ + "type": "way", + "id": 5670234, + "bounds": { + "minlat": 40.7871744, + "minlon": -73.9758801, + "maxlat": 40.7889354, + "maxlon": -73.9716995 + }, + "nodes": [ + 42434158, + 9634645805, + 10039808169, + 42434160, + 6207264911, + 10039808181, + 7004376645, + 1061531637 + ], + "geometry": [ + { "lat": 40.7871744, "lon": -73.9716995 }, + { "lat": 40.7872206, "lon": -73.9718092 }, + { "lat": 40.7883121, "lon": -73.9744004 }, + { "lat": 40.7883610, "lon": -73.9745165 }, + { "lat": 40.7884023, "lon": -73.9746145 }, + { "lat": 40.7884196, "lon": -73.9746553 }, + { "lat": 40.7888860, "lon": -73.9757579 }, + { "lat": 40.7889354, "lon": -73.9758801 } + ], + "tags": { + "alt_name": "West 87 Street", + "highway": "residential", + "lanes": "1", + "name": "West 87th Street", + "name:ru": "Западная 87-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670236, + "bounds": { + "minlat": 40.7825675, + "minlon": -73.9496936, + "maxlat": 40.7844695, + "maxlon": -73.9452196 + }, + "nodes": [ + 42434179, + 6169388285, + 6181480008, + 8735320758, + 13715743870, + 6181480007, + 6176004000, + 42434175, + 6181480011, + 12032673871, + 3590689290, + 6181480050 + ], + "geometry": [ + { "lat": 40.7825675, "lon": -73.9452196 }, + { "lat": 40.7826121, "lon": -73.9453251 }, + { "lat": 40.7826280, "lon": -73.9453626 }, + { "lat": 40.7830839, "lon": -73.9464410 }, + { "lat": 40.7833323, "lon": -73.9470286 }, + { "lat": 40.7835166, "lon": -73.9474646 }, + { "lat": 40.7835358, "lon": -73.9475101 }, + { "lat": 40.7835688, "lon": -73.9475880 }, + { "lat": 40.7836262, "lon": -73.9477219 }, + { "lat": 40.7839268, "lon": -73.9484206 }, + { "lat": 40.7843093, "lon": -73.9493179 }, + { "lat": 40.7844695, "lon": -73.9496936 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "East 95th Street", + "name:ru": "Восточная 95-я стрит", + "name_1": "East 95 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4646040", + "wikipedia": "en:95th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670238, + "bounds": { + "minlat": 40.7064948, + "minlon": -74.0175734, + "maxlat": 40.7068458, + "maxlon": -74.0167254 + }, + "nodes": [ + 42429521, + 4207000218, + 11416159842, + 5214620545, + 4206997135, + 42433715 + ], + "geometry": [ + { "lat": 40.7064948, "lon": -74.0167254 }, + { "lat": 40.7065234, "lon": -74.0167956 }, + { "lat": 40.7065416, "lon": -74.0168421 }, + { "lat": 40.7067800, "lon": -74.0174153 }, + { "lat": 40.7068016, "lon": -74.0174672 }, + { "lat": 40.7068458, "lon": -74.0175734 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "maxspeed": "20 mph", + "name": "2nd Place", + "name_1": "2 Place", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "2nd", + "tiger:name_base_1": "2", + "tiger:name_type": "Pl", + "tiger:name_type_1": "Pl" + } +}, +{ + "type": "way", + "id": 5670243, + "bounds": { + "minlat": 40.7290016, + "minlon": -73.9908514, + "maxlat": 40.7291667, + "maxlon": -73.9904821 + }, + "nodes": [ + 5784518539, + 5784518540 + ], + "geometry": [ + { "lat": 40.7291667, "lon": -73.9908514 }, + { "lat": 40.7290016, "lon": -73.9904821 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "East 7th Street", + "name:ru": "Восточная 7-я стрит", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670247, + "bounds": { + "minlat": 40.7470230, + "minlon": -74.0069328, + "maxlat": 40.7480006, + "maxlon": -74.0046530 + }, + "nodes": [ + 42434285, + 10168486322, + 9143569912, + 12161232248 + ], + "geometry": [ + { "lat": 40.7470230, "lon": -74.0046530 }, + { "lat": 40.7470805, "lon": -74.0047752 }, + { "lat": 40.7470933, "lon": -74.0048025 }, + { "lat": 40.7480006, "lon": -74.0069328 } + ], + "tags": { + "alt_name": "West 22 Street", + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 22nd Street", + "name:ru": "Западная 22-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670250, + "bounds": { + "minlat": 40.8241529, + "minlon": -73.9410462, + "maxlat": 40.8257967, + "maxlon": -73.9371350 + }, + "nodes": [ + 2141026509, + 42434306, + 9150629561, + 8008242749, + 42434308, + 8008242752, + 2504882477, + 11218357989, + 42434314 + ], + "geometry": [ + { "lat": 40.8241529, "lon": -73.9371350 }, + { "lat": 40.8242206, "lon": -73.9373000 }, + { "lat": 40.8242703, "lon": -73.9374178 }, + { "lat": 40.8253305, "lon": -73.9399386 }, + { "lat": 40.8253790, "lon": -73.9400540 }, + { "lat": 40.8254358, "lon": -73.9401890 }, + { "lat": 40.8257406, "lon": -73.9409096 }, + { "lat": 40.8257617, "lon": -73.9409625 }, + { "lat": 40.8257967, "lon": -73.9410462 } + ], + "tags": { + "highway": "residential", + "name": "West 149th Street", + "name_1": "West 149 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "149th", + "tiger:name_base_1": "149", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 5670252, + "bounds": { + "minlat": 40.8266537, + "minlon": -73.9500237, + "maxlat": 40.8295802, + "maxlon": -73.9430556 + }, + "nodes": [ + 42431643, + 11221649575, + 11218864397, + 42434338, + 11218884109, + 11218879850, + 42434340, + 11218879853, + 11218890524, + 561035365, + 42428941, + 11218890529, + 11193743285, + 12952282885 + ], + "geometry": [ + { "lat": 40.8266537, "lon": -73.9430556 }, + { "lat": 40.8267083, "lon": -73.9431857 }, + { "lat": 40.8271595, "lon": -73.9442736 }, + { "lat": 40.8271966, "lon": -73.9443629 }, + { "lat": 40.8272408, "lon": -73.9444668 }, + { "lat": 40.8277311, "lon": -73.9456193 }, + { "lat": 40.8277796, "lon": -73.9457333 }, + { "lat": 40.8278385, "lon": -73.9458728 }, + { "lat": 40.8288945, "lon": -73.9483822 }, + { "lat": 40.8289466, "lon": -73.9485061 }, + { "lat": 40.8290276, "lon": -73.9486953 }, + { "lat": 40.8290686, "lon": -73.9487929 }, + { "lat": 40.8295452, "lon": -73.9499316 }, + { "lat": 40.8295802, "lon": -73.9500237 } + ], + "tags": { + "highway": "residential", + "name": "West 149th Street", + "name_1": "West 149 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "149th", + "tiger:name_base_1": "149", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 5670253, + "bounds": { + "minlat": 40.7645689, + "minlon": -73.9762440, + "maxlat": 40.7656797, + "maxlon": -73.9736594 + }, + "nodes": [ + 42430394, + 7830685375, + 11359523994, + 4347534780, + 11359523997, + 4347534767 + ], + "geometry": [ + { "lat": 40.7656797, "lon": -73.9762440 }, + { "lat": 40.7656295, "lon": -73.9761245 }, + { "lat": 40.7646647, "lon": -73.9738252 }, + { "lat": 40.7646325, "lon": -73.9737635 }, + { "lat": 40.7645984, "lon": -73.9737040 }, + { "lat": 40.7645689, "lon": -73.9736594 } + ], + "tags": { + "alt_name": "West 59th Street", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park South", + "name_1": "West 59 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "20", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670254, + "bounds": { + "minlat": 40.7339696, + "minlon": -73.9887887, + "maxlat": 40.7358905, + "maxlon": -73.9873950 + }, + "nodes": [ + 42434352, + 8310246183, + 12183283842, + 12183283840, + 8569045566, + 42431453, + 8569045573, + 12183283839, + 12183283837, + 9507816951, + 42434354, + 9507816964, + 12183283836, + 12183283833, + 9679181049, + 42434355 + ], + "geometry": [ + { "lat": 40.7339696, "lon": -73.9887887 }, + { "lat": 40.7340631, "lon": -73.9887235 }, + { "lat": 40.7341205, "lon": -73.9886825 }, + { "lat": 40.7345606, "lon": -73.9883611 }, + { "lat": 40.7346013, "lon": -73.9883312 }, + { "lat": 40.7346528, "lon": -73.9882945 }, + { "lat": 40.7347203, "lon": -73.9882438 }, + { "lat": 40.7347596, "lon": -73.9882148 }, + { "lat": 40.7352010, "lon": -73.9878925 }, + { "lat": 40.7352464, "lon": -73.9878602 }, + { "lat": 40.7352981, "lon": -73.9878233 }, + { "lat": 40.7353578, "lon": -73.9877810 }, + { "lat": 40.7353990, "lon": -73.9877518 }, + { "lat": 40.7357965, "lon": -73.9874636 }, + { "lat": 40.7358358, "lon": -73.9874347 }, + { "lat": 40.7358905, "lon": -73.9873950 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Irving Place", + "name:etymology:wikidata": "Q181667", + "name:ru": "Ирвинг-Плейс", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q136393943" + } +}, +{ + "type": "way", + "id": 5670261, + "bounds": { + "minlat": 40.7955395, + "minlon": -73.9476486, + "maxlat": 40.7961631, + "maxlon": -73.9461625 + }, + "nodes": [ + 42434377, + 6900706759, + 8796922026, + 7781090342, + 596776325 + ], + "geometry": [ + { "lat": 40.7961631, "lon": -73.9476486 }, + { "lat": 40.7961154, "lon": -73.9475351 }, + { "lat": 40.7959370, "lon": -73.9471099 }, + { "lat": 40.7955693, "lon": -73.9462335 }, + { "lat": 40.7955395, "lon": -73.9461625 } + ], + "tags": { + "alt_name": "Tito Puente Way", + "alt_name:etymology:wikidata": "Q317122", + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "East 110th Street", + "name:ru": "Восточная 110-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670267, + "bounds": { + "minlat": 40.7088206, + "minlon": -74.0119350, + "maxlat": 40.7093107, + "maxlon": -74.0108604 + }, + "nodes": [ + 42428374, + 10288802760, + 10299850184, + 5083818845, + 8262936645, + 10288802745, + 42434412 + ], + "geometry": [ + { "lat": 40.7088206, "lon": -74.0108604 }, + { "lat": 40.7088311, "lon": -74.0108729 }, + { "lat": 40.7088477, "lon": -74.0108968 }, + { "lat": 40.7088642, "lon": -74.0109286 }, + { "lat": 40.7092778, "lon": -74.0118502 }, + { "lat": 40.7092904, "lon": -74.0118803 }, + { "lat": 40.7093107, "lon": -74.0119350 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cedar Street", + "name:etymology:wikidata": "Q128550", + "name:ko": "시더 스트리트", + "name:ru": "Сидар-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q13933858" + } +}, +{ + "type": "way", + "id": 5670268, + "bounds": { + "minlat": 40.7063877, + "minlon": -74.0086239, + "maxlat": 40.7073785, + "maxlon": -74.0071360 + }, + "nodes": [ + 42434418, + 8276468639, + 4942593333, + 4942593334, + 11369414016, + 11369414017, + 11369414018, + 42434420 + ], + "geometry": [ + { "lat": 40.7063877, "lon": -74.0071360 }, + { "lat": 40.7064096, "lon": -74.0071708 }, + { "lat": 40.7072793, "lon": -74.0085497 }, + { "lat": 40.7073033, "lon": -74.0085874 }, + { "lat": 40.7073164, "lon": -74.0086011 }, + { "lat": 40.7073353, "lon": -74.0086151 }, + { "lat": 40.7073561, "lon": -74.0086239 }, + { "lat": 40.7073785, "lon": -74.0086220 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cedar Street", + "name:etymology:wikidata": "Q128550", + "name:ko": "시더 스트리트", + "name:ru": "Сидар-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670275, + "bounds": { + "minlat": 40.7512711, + "minlon": -73.9997482, + "maxlat": 40.7518133, + "maxlon": -73.9989993 + }, + "nodes": [ + 427841071, + 12152867537, + 12152867536, + 3788348149, + 3788348147, + 1701844762, + 61274117, + 3788348146, + 427841064, + 427841065, + 427841066, + 12152867535, + 3788348145, + 61274116, + 11509842342, + 42434465 + ], + "geometry": [ + { "lat": 40.7518133, "lon": -73.9997474 }, + { "lat": 40.7517940, "lon": -73.9997482 }, + { "lat": 40.7517778, "lon": -73.9997478 }, + { "lat": 40.7517528, "lon": -73.9997420 }, + { "lat": 40.7517282, "lon": -73.9997321 }, + { "lat": 40.7517001, "lon": -73.9997153 }, + { "lat": 40.7516717, "lon": -73.9996939 }, + { "lat": 40.7516446, "lon": -73.9996681 }, + { "lat": 40.7516169, "lon": -73.9996422 }, + { "lat": 40.7515920, "lon": -73.9996178 }, + { "lat": 40.7515663, "lon": -73.9995814 }, + { "lat": 40.7515424, "lon": -73.9995428 }, + { "lat": 40.7515185, "lon": -73.9995014 }, + { "lat": 40.7515021, "lon": -73.9994665 }, + { "lat": 40.7514161, "lon": -73.9992688 }, + { "lat": 40.7512711, "lon": -73.9989993 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 5670296, + "bounds": { + "minlat": 40.7440672, + "minlon": -73.9909680, + "maxlat": 40.7454210, + "maxlon": -73.9877451 + }, + "nodes": [ + 42434800, + 10167162584, + 10167162589, + 42428220, + 10167162592, + 10168911614, + 42430279 + ], + "geometry": [ + { "lat": 40.7440672, "lon": -73.9877451 }, + { "lat": 40.7441156, "lon": -73.9878630 }, + { "lat": 40.7444898, "lon": -73.9887777 }, + { "lat": 40.7445363, "lon": -73.9888917 }, + { "lat": 40.7445717, "lon": -73.9889784 }, + { "lat": 40.7453655, "lon": -73.9908370 }, + { "lat": 40.7454210, "lon": -73.9909680 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 27th Street", + "name:ru": "Западная 27-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670297, + "bounds": { + "minlat": 40.7488506, + "minlon": -74.0023139, + "maxlat": 40.7502291, + "maxlon": -74.0004844 + }, + "nodes": [ + 358447541, + 8262309008, + 12152921362, + 12152921361, + 358447557, + 12152921360, + 12152921359, + 5122551879, + 5122551878, + 12152921358, + 358447559, + 12152921357, + 12152921356, + 358447560, + 12152921355, + 5122551884, + 12152921354, + 358447561, + 12152921353, + 5122551888, + 12152921352, + 42434818, + 4890040962, + 8262308987, + 42434821 + ], + "geometry": [ + { "lat": 40.7488506, "lon": -74.0009740 }, + { "lat": 40.7488969, "lon": -74.0009403 }, + { "lat": 40.7490141, "lon": -74.0008534 }, + { "lat": 40.7490431, "lon": -74.0008297 }, + { "lat": 40.7490694, "lon": -74.0008046 }, + { "lat": 40.7490925, "lon": -74.0007754 }, + { "lat": 40.7491085, "lon": -74.0007497 }, + { "lat": 40.7491208, "lon": -74.0007171 }, + { "lat": 40.7491467, "lon": -74.0006393 }, + { "lat": 40.7491663, "lon": -74.0005950 }, + { "lat": 40.7491852, "lon": -74.0005614 }, + { "lat": 40.7492112, "lon": -74.0005322 }, + { "lat": 40.7492411, "lon": -74.0005102 }, + { "lat": 40.7492762, "lon": -74.0004937 }, + { "lat": 40.7493135, "lon": -74.0004850 }, + { "lat": 40.7493508, "lon": -74.0004844 }, + { "lat": 40.7493821, "lon": -74.0004904 }, + { "lat": 40.7494166, "lon": -74.0005011 }, + { "lat": 40.7494476, "lon": -74.0005184 }, + { "lat": 40.7494802, "lon": -74.0005479 }, + { "lat": 40.7495084, "lon": -74.0005894 }, + { "lat": 40.7495345, "lon": -74.0006398 }, + { "lat": 40.7495532, "lon": -74.0006797 }, + { "lat": 40.7501795, "lon": -74.0021737 }, + { "lat": 40.7502291, "lon": -74.0023139 } + ], + "tags": { + "alt_name": "West 27 Street", + "highway": "residential", + "lanes": "1", + "maxspeed": "5 mph", + "name": "West 27th Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670299, + "bounds": { + "minlat": 40.7108145, + "minlon": -73.9833096, + "maxlat": 40.7113383, + "maxlon": -73.9832617 + }, + "nodes": [ + 42434833, + 8310246546, + 6865794111, + 6415259650, + 8310246551, + 11038072073, + 11038072074, + 11038072075, + 42434832 + ], + "geometry": [ + { "lat": 40.7113383, "lon": -73.9833096 }, + { "lat": 40.7112926, "lon": -73.9833048 }, + { "lat": 40.7111792, "lon": -73.9832930 }, + { "lat": 40.7109144, "lon": -73.9832653 }, + { "lat": 40.7108803, "lon": -73.9832617 }, + { "lat": 40.7108639, "lon": -73.9832620 }, + { "lat": 40.7108399, "lon": -73.9832693 }, + { "lat": 40.7108253, "lon": -73.9832837 }, + { "lat": 40.7108145, "lon": -73.9833045 } + ], + "tags": { + "highway": "residential", + "name": "Gouverneur Slip East", + "name:etymology:wikidata": "Q56742810", + "name:ko": "구버너 슬립 이스트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670308, + "bounds": { + "minlat": 40.7896375, + "minlon": -73.9476894, + "maxlat": 40.7903181, + "maxlon": -73.9460871 + }, + "nodes": [ + 42434898, + 6191027342, + 8571800880, + 7779545015, + 42434895 + ], + "geometry": [ + { "lat": 40.7896375, "lon": -73.9460871 }, + { "lat": 40.7896959, "lon": -73.9462245 }, + { "lat": 40.7898313, "lon": -73.9465430 }, + { "lat": 40.7902843, "lon": -73.9476074 }, + { "lat": 40.7903181, "lon": -73.9476894 } + ], + "tags": { + "highway": "residential", + "name": "East 103rd Street", + "name:be": "Усходняя 103-я вуліца", + "name:en": "East 103rd Street", + "name:pl": "Wschodnia 103 Ulica", + "name:ru": "Восточная 103-я улица", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670310, + "bounds": { + "minlat": 40.7916750, + "minlon": -73.9525217, + "maxlat": 40.7923469, + "maxlon": -73.9509196 + }, + "nodes": [ + 42434905, + 11292691127, + 5481897028, + 4969067232, + 42434904 + ], + "geometry": [ + { "lat": 40.7916750, "lon": -73.9509196 }, + { "lat": 40.7917234, "lon": -73.9510347 }, + { "lat": 40.7919704, "lon": -73.9516217 }, + { "lat": 40.7923063, "lon": -73.9524246 }, + { "lat": 40.7923469, "lon": -73.9525217 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 103rd Street", + "name:ru": "Восточная 103-я стрит", + "name_1": "East 103 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670311, + "bounds": { + "minlat": 40.7876920, + "minlon": -73.9438661, + "maxlat": 40.7886864, + "maxlon": -73.9414780 + }, + "nodes": [ + 42434910, + 6191027349, + 6191027345, + 5482216765, + 6191027323, + 6175905188, + 42434912 + ], + "geometry": [ + { "lat": 40.7876920, "lon": -73.9414780 }, + { "lat": 40.7877364, "lon": -73.9415844 }, + { "lat": 40.7877532, "lon": -73.9416260 }, + { "lat": 40.7878540, "lon": -73.9418664 }, + { "lat": 40.7886322, "lon": -73.9437360 }, + { "lat": 40.7886469, "lon": -73.9437713 }, + { "lat": 40.7886864, "lon": -73.9438661 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "East 103rd Street", + "name:ru": "Восточная 103-я стрит", + "name_1": "East 103 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670313, + "bounds": { + "minlat": 40.7246250, + "minlon": -73.9916185, + "maxlat": 40.7250585, + "maxlon": -73.9913924 + }, + "nodes": [ + 42434919, + 8309479077, + 42434921 + ], + "geometry": [ + { "lat": 40.7246250, "lon": -73.9916185 }, + { "lat": 40.7246805, "lon": -73.9915895 }, + { "lat": 40.7250585, "lon": -73.9913924 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Extra Place", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 5670317, + "bounds": { + "minlat": 40.7438669, + "minlon": -73.9719493, + "maxlat": 40.7439971, + "maxlon": -73.9716376 + }, + "nodes": [ + 406048768, + 5130933110, + 9076206578 + ], + "geometry": [ + { "lat": 40.7438669, "lon": -73.9716376 }, + { "lat": 40.7439149, "lon": -73.9717524 }, + { "lat": 40.7439971, "lon": -73.9719493 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "East 35th Street", + "name:ru": "Восточная 35-я стрит", + "name_1": "East 35 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5670318, + "bounds": { + "minlat": 40.8423228, + "minlon": -73.9411456, + "maxlat": 40.8440509, + "maxlon": -73.9370346 + }, + "nodes": [ + 42434992, + 11758679654, + 7604384230, + 42433043, + 7604384232, + 7604384244, + 42428985, + 7604384246, + 7604384374, + 42427146 + ], + "geometry": [ + { "lat": 40.8423228, "lon": -73.9370346 }, + { "lat": 40.8423630, "lon": -73.9371310 }, + { "lat": 40.8428507, "lon": -73.9383002 }, + { "lat": 40.8429055, "lon": -73.9384302 }, + { "lat": 40.8429576, "lon": -73.9385527 }, + { "lat": 40.8431682, "lon": -73.9390481 }, + { "lat": 40.8432230, "lon": -73.9391770 }, + { "lat": 40.8432851, "lon": -73.9393247 }, + { "lat": 40.8440071, "lon": -73.9410423 }, + { "lat": 40.8440509, "lon": -73.9411456 } + ], + "tags": { + "highway": "residential", + "name": "West 171st Street", + "name_1": "West 171 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "171st", + "tiger:name_base_1": "171", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5670333, + "bounds": { + "minlat": 40.8404757, + "minlon": -73.9354698, + "maxlat": 40.8408049, + "maxlon": -73.9353154 + }, + "nodes": [ + 42435197, + 765367023 + ], + "geometry": [ + { "lat": 40.8404757, "lon": -73.9353154 }, + { "lat": 40.8408049, "lon": -73.9354698 } + ], + "tags": { + "alt_name": "Paul Robeson Boulevard", + "alt_name:en": "Officer Michael Buczek Avenue", + "bicycle": "designated", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "description": "This honorary street name memorializes Paul Robeson.", + "description:de": "This honorary street name memorializes Officer Michael Buczek.", + "highway": "residential", + "historic": "memorial", + "name": "Edgecombe Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:zip_left": "10032" + } +}, +{ + "type": "way", + "id": 5670339, + "bounds": { + "minlat": 40.7961502, + "minlon": -73.9317474, + "maxlat": 40.7969920, + "maxlon": -73.9297538 + }, + "nodes": [ + 371218803, + 7925258964, + 7925258820, + 42435240 + ], + "geometry": [ + { "lat": 40.7961502, "lon": -73.9297538 }, + { "lat": 40.7965357, "lon": -73.9306667 }, + { "lat": 40.7969379, "lon": -73.9316192 }, + { "lat": 40.7969920, "lon": -73.9317474 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 119th Street", + "name:ru": "Восточная 119-я стрит", + "name_1": "East 119 Street" + } +}, +{ + "type": "way", + "id": 5670348, + "bounds": { + "minlat": 40.7682630, + "minlon": -73.9815245, + "maxlat": 40.7684537, + "maxlon": -73.9814740 + }, + "nodes": [ + 4347550065, + 1792549686 + ], + "geometry": [ + { "lat": 40.7682630, "lon": -73.9814740 }, + { "lat": 40.7684537, "lon": -73.9815245 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "right|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670354, + "bounds": { + "minlat": 40.7943904, + "minlon": -73.9405201, + "maxlat": 40.7972671, + "maxlon": -73.9336715 + }, + "nodes": [ + 42435403, + 7924346958, + 10239576930, + 7924346831, + 42435400, + 6216349379, + 4980851590, + 7473666325, + 7924346627, + 4207962275, + 7924346810, + 4585289965, + 8809432358, + 4983782409, + 42435396 + ], + "geometry": [ + { "lat": 40.7943904, "lon": -73.9336715 }, + { "lat": 40.7944342, "lon": -73.9337759 }, + { "lat": 40.7951272, "lon": -73.9354326 }, + { "lat": 40.7952693, "lon": -73.9357711 }, + { "lat": 40.7953208, "lon": -73.9359028 }, + { "lat": 40.7953544, "lon": -73.9360210 }, + { "lat": 40.7953640, "lon": -73.9360558 }, + { "lat": 40.7960242, "lon": -73.9376001 }, + { "lat": 40.7962618, "lon": -73.9381563 }, + { "lat": 40.7963136, "lon": -73.9382919 }, + { "lat": 40.7963642, "lon": -73.9384243 }, + { "lat": 40.7965815, "lon": -73.9389384 }, + { "lat": 40.7970235, "lon": -73.9399825 }, + { "lat": 40.7971973, "lon": -73.9403965 }, + { "lat": 40.7972671, "lon": -73.9405201 } + ], + "tags": { + "highway": "residential", + "name": "East 115th Street", + "name:ru": "Восточная 115-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670366, + "bounds": { + "minlat": 40.7139391, + "minlon": -73.9995913, + "maxlat": 40.7144791, + "maxlon": -73.9995613 + }, + "nodes": [ + 7132405548, + 10583167608, + 10583167607, + 10583167606, + 7132406686, + 11505205649, + 7132406720, + 42435435 + ], + "geometry": [ + { "lat": 40.7139391, "lon": -73.9995713 }, + { "lat": 40.7139598, "lon": -73.9995668 }, + { "lat": 40.7139817, "lon": -73.9995629 }, + { "lat": 40.7140045, "lon": -73.9995613 }, + { "lat": 40.7140267, "lon": -73.9995627 }, + { "lat": 40.7143731, "lon": -73.9995841 }, + { "lat": 40.7144140, "lon": -73.9995866 }, + { "lat": 40.7144791, "lon": -73.9995913 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Mulberry Street", + "name:en": "Mulberry Street", + "name:ko": "멀베리 스트리트", + "name:ru": "Малберри-стрит", + "name:zh": "摩比利街", + "oneway": "yes", + "parking:both:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1934308", + "wikipedia": "en:Mulberry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670370, + "bounds": { + "minlat": 40.7797538, + "minlon": -73.9613628, + "maxlat": 40.7802320, + "maxlon": -73.9602882 + }, + "nodes": [ + 42435497, + 9170796894, + 2238282386, + 9906879199, + 9906879198, + 9906879197, + 9906879196 + ], + "geometry": [ + { "lat": 40.7802320, "lon": -73.9613628 }, + { "lat": 40.7802070, "lon": -73.9613224 }, + { "lat": 40.7801830, "lon": -73.9612803 }, + { "lat": 40.7801518, "lon": -73.9612232 }, + { "lat": 40.7801209, "lon": -73.9611597 }, + { "lat": 40.7798468, "lon": -73.9605100 }, + { "lat": 40.7797538, "lon": -73.9602882 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 84th Street", + "name:ru": "Восточная 84-я стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670375, + "bounds": { + "minlat": 40.8756380, + "minlon": -73.9083295, + "maxlat": 40.8757242, + "maxlon": -73.9082537 + }, + "nodes": [ + 42429287, + 1544782730 + ], + "geometry": [ + { "lat": 40.8756380, "lon": -73.9082537 }, + { "lat": 40.8757242, "lon": -73.9083295 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "West 228th Street", + "name_1": "West 228 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "228th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5670405, + "bounds": { + "minlat": 40.8208228, + "minlon": -73.9529081, + "maxlat": 40.8217009, + "maxlon": -73.9508143 + }, + "nodes": [ + 42435943, + 10170703036, + 10170703045, + 42435940 + ], + "geometry": [ + { "lat": 40.8217009, "lon": -73.9529081 }, + { "lat": 40.8216713, "lon": -73.9528358 }, + { "lat": 40.8208785, "lon": -73.9509468 }, + { "lat": 40.8208228, "lon": -73.9508143 } + ], + "tags": { + "highway": "residential", + "name": "West 138th Street", + "name_1": "West 138 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670411, + "bounds": { + "minlat": 40.8126463, + "minlon": -73.9400767, + "maxlat": 40.8128979, + "maxlon": -73.9394725 + }, + "nodes": [ + 42435988, + 42435990, + 42435993 + ], + "geometry": [ + { "lat": 40.8126463, "lon": -73.9394725 }, + { "lat": 40.8127869, "lon": -73.9398101 }, + { "lat": 40.8128979, "lon": -73.9400767 } + ], + "tags": { + "bicycle": "no", + "highway": "residential", + "name": "West 134th Street", + "name_1": "West 134 Street" + } +}, +{ + "type": "way", + "id": 5670415, + "bounds": { + "minlat": 40.8146691, + "minlon": -73.9483560, + "maxlat": 40.8163740, + "maxlon": -73.9442672 + }, + "nodes": [ + 42432950, + 10171603054, + 10170605779, + 42435837, + 10170605775, + 3316662358, + 5487825388, + 5401664201, + 9150629544, + 42436003 + ], + "geometry": [ + { "lat": 40.8163740, "lon": -73.9483560 }, + { "lat": 40.8163281, "lon": -73.9482444 }, + { "lat": 40.8158861, "lon": -73.9471704 }, + { "lat": 40.8158300, "lon": -73.9470340 }, + { "lat": 40.8157798, "lon": -73.9469142 }, + { "lat": 40.8154979, "lon": -73.9462417 }, + { "lat": 40.8153634, "lon": -73.9459208 }, + { "lat": 40.8149900, "lon": -73.9450336 }, + { "lat": 40.8147193, "lon": -73.9443821 }, + { "lat": 40.8146691, "lon": -73.9442672 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 134th Street", + "oneway": "yes", + "parking:lane:both": "parallel" + } +}, +{ + "type": "way", + "id": 5670418, + "bounds": { + "minlat": 40.7232998, + "minlon": -74.0111627, + "maxlat": 40.7236070, + "maxlon": -74.0081625 + }, + "nodes": [ + 11659009135, + 8002650346, + 8429031609, + 42436017, + 8429031612, + 42436021, + 11492239001, + 8250851267, + 11660063353 + ], + "geometry": [ + { "lat": 40.7232998, "lon": -74.0081625 }, + { "lat": 40.7233509, "lon": -74.0086618 }, + { "lat": 40.7234320, "lon": -74.0094543 }, + { "lat": 40.7234406, "lon": -74.0095377 }, + { "lat": 40.7234507, "lon": -74.0096403 }, + { "lat": 40.7235227, "lon": -74.0103393 }, + { "lat": 40.7235761, "lon": -74.0108606 }, + { "lat": 40.7235883, "lon": -74.0109805 }, + { "lat": 40.7236070, "lon": -74.0111627 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Desbrosses Street", + "name:ko": "데브로시스 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5670432, + "bounds": { + "minlat": 40.7047291, + "minlon": -74.0149870, + "maxlat": 40.7048274, + "maxlon": -74.0149470 + }, + "nodes": [ + 3914862593, + 10316226215, + 588546798 + ], + "geometry": [ + { "lat": 40.7047291, "lon": -74.0149870 }, + { "lat": 40.7047711, "lon": -74.0149701 }, + { "lat": 40.7048274, "lon": -74.0149470 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Greenwich", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 5670438, + "bounds": { + "minlat": 40.8514290, + "minlon": -73.9281588, + "maxlat": 40.8518669, + "maxlon": -73.9270800 + }, + "nodes": [ + 42436283, + 8740550831, + 8740550969, + 8740550824, + 42436285 + ], + "geometry": [ + { "lat": 40.8514290, "lon": -73.9270800 }, + { "lat": 40.8514468, "lon": -73.9271696 }, + { "lat": 40.8514662, "lon": -73.9272179 }, + { "lat": 40.8518122, "lon": -73.9280305 }, + { "lat": 40.8518669, "lon": -73.9281588 } + ], + "tags": { + "highway": "residential", + "name": "West 187th Street", + "name_1": "W 187 St", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base_1": "187", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5670440, + "bounds": { + "minlat": 40.7214650, + "minlon": -74.0117761, + "maxlat": 40.7216368, + "maxlon": -74.0098818 + }, + "nodes": [ + 42436316, + 3874650171, + 42436313, + 12214442346, + 12416643515, + 12214442348, + 12214442350, + 5837174092, + 11489120592, + 42436060 + ], + "geometry": [ + { "lat": 40.7216368, "lon": -74.0117761 }, + { "lat": 40.7216219, "lon": -74.0116311 }, + { "lat": 40.7215342, "lon": -74.0107345 }, + { "lat": 40.7215306, "lon": -74.0106956 }, + { "lat": 40.7215294, "lon": -74.0106823 }, + { "lat": 40.7215216, "lon": -74.0105943 }, + { "lat": 40.7215110, "lon": -74.0104856 }, + { "lat": 40.7214654, "lon": -74.0099892 }, + { "lat": 40.7214650, "lon": -74.0099364 }, + { "lat": 40.7214680, "lon": -74.0098818 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Hubert Street", + "name:ko": "휴버트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670451, + "bounds": { + "minlat": 40.7387641, + "minlon": -74.0055102, + "maxlat": 40.7405180, + "maxlon": -74.0052346 + }, + "nodes": [ + 4685465959, + 11040029961, + 8262308681, + 42429394, + 8262308682, + 8262308641, + 42436431, + 8262308642, + 4685462237, + 8307463652, + 42431503 + ], + "geometry": [ + { "lat": 40.7405180, "lon": -74.0052346 }, + { "lat": 40.7404170, "lon": -74.0052490 }, + { "lat": 40.7400979, "lon": -74.0052946 }, + { "lat": 40.7400297, "lon": -74.0053043 }, + { "lat": 40.7399620, "lon": -74.0053156 }, + { "lat": 40.7394866, "lon": -74.0053948 }, + { "lat": 40.7394127, "lon": -74.0054071 }, + { "lat": 40.7393443, "lon": -74.0054186 }, + { "lat": 40.7390464, "lon": -74.0054685 }, + { "lat": 40.7388131, "lon": -74.0055030 }, + { "lat": 40.7387641, "lon": -74.0055102 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670454, + "bounds": { + "minlat": 40.7365313, + "minlon": -74.0058168, + "maxlat": 40.7368828, + "maxlon": -74.0055274 + }, + "nodes": [ + 42436411, + 1701921010, + 1412724864, + 1412724863, + 1412724862, + 1701920959, + 6211332478, + 6211334202 + ], + "geometry": [ + { "lat": 40.7365313, "lon": -74.0058168 }, + { "lat": 40.7365955, "lon": -74.0057914 }, + { "lat": 40.7366357, "lon": -74.0057694 }, + { "lat": 40.7366771, "lon": -74.0057465 }, + { "lat": 40.7367223, "lon": -74.0057039 }, + { "lat": 40.7367728, "lon": -74.0056494 }, + { "lat": 40.7368387, "lon": -74.0055773 }, + { "lat": 40.7368828, "lon": -74.0055274 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670458, + "bounds": { + "minlat": 40.7599137, + "minlon": -73.9610636, + "maxlat": 40.7608639, + "maxlon": -73.9588108 + }, + "nodes": [ + 42427965, + 4918486094, + 5119773922, + 3342322003, + 5119773933, + 8231348299, + 4918486946, + 42436531 + ], + "geometry": [ + { "lat": 40.7599137, "lon": -73.9588108 }, + { "lat": 40.7599671, "lon": -73.9589385 }, + { "lat": 40.7601619, "lon": -73.9593990 }, + { "lat": 40.7602054, "lon": -73.9595022 }, + { "lat": 40.7602350, "lon": -73.9595723 }, + { "lat": 40.7604242, "lon": -73.9600210 }, + { "lat": 40.7608069, "lon": -73.9609284 }, + { "lat": 40.7608639, "lon": -73.9610636 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 61st Street", + "name:ru": "Восточная 61-я стрит", + "name_1": "East 61 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670459, + "bounds": { + "minlat": 40.7768958, + "minlon": -73.9479508, + "maxlat": 40.7788150, + "maxlon": -73.9433989 + }, + "nodes": [ + 42436556, + 6352970510, + 7135164269, + 42428045, + 7135164274, + 13716172392, + 10121819480, + 7140667650, + 42436551 + ], + "geometry": [ + { "lat": 40.7768958, "lon": -73.9433989 }, + { "lat": 40.7769362, "lon": -73.9434813 }, + { "lat": 40.7778220, "lon": -73.9455762 }, + { "lat": 40.7778740, "lon": -73.9457066 }, + { "lat": 40.7779268, "lon": -73.9458367 }, + { "lat": 40.7780956, "lon": -73.9462355 }, + { "lat": 40.7787459, "lon": -73.9477788 }, + { "lat": 40.7787628, "lon": -73.9478189 }, + { "lat": 40.7788150, "lon": -73.9479508 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "East 89th Street", + "name:ru": "Восточная 89-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4645154", + "wikipedia": "en:89th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670462, + "bounds": { + "minlat": 40.7249133, + "minlon": -74.0058223, + "maxlat": 40.7250240, + "maxlon": -74.0046478 + }, + "nodes": [ + 42436567, + 4890333643, + 9988098416, + 12517077482, + 4890320315, + 592484776 + ], + "geometry": [ + { "lat": 40.7250240, "lon": -74.0058223 }, + { "lat": 40.7250181, "lon": -74.0057588 }, + { "lat": 40.7249919, "lon": -74.0054843 }, + { "lat": 40.7249251, "lon": -74.0047746 }, + { "lat": 40.7249205, "lon": -74.0047250 }, + { "lat": 40.7249133, "lon": -74.0046478 } + ], + "tags": { + "cycleway": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Dominick Street", + "name:ko": "도미닉 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670466, + "bounds": { + "minlat": 40.7408738, + "minlon": -73.9875061, + "maxlat": 40.7415447, + "maxlon": -73.9859403 + }, + "nodes": [ + 42436575, + 10166167553, + 10166167528, + 4597668029 + ], + "geometry": [ + { "lat": 40.7415447, "lon": -73.9875061 }, + { "lat": 40.7415008, "lon": -73.9874027 }, + { "lat": 40.7409123, "lon": -73.9860314 }, + { "lat": 40.7408738, "lon": -73.9859403 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 24th Street", + "name:ru": "Восточная 24-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670468, + "bounds": { + "minlat": 40.7902523, + "minlon": -73.9472342, + "maxlat": 40.7909469, + "maxlon": -73.9456376 + }, + "nodes": [ + 42436619, + 7779545010, + 6191027301, + 42436624 + ], + "geometry": [ + { "lat": 40.7909469, "lon": -73.9472342 }, + { "lat": 40.7909120, "lon": -73.9471507 }, + { "lat": 40.7903275, "lon": -73.9457676 }, + { "lat": 40.7902523, "lon": -73.9456376 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 104th Street", + "name:ru": "Восточная 104-я стрит", + "oneway": "yes", + "parking:lane:both": "parallel" + } +}, +{ + "type": "way", + "id": 5670470, + "bounds": { + "minlat": 40.7928745, + "minlon": -73.9468558, + "maxlat": 40.7941983, + "maxlon": -73.9437242 + }, + "nodes": [ + 9178807971, + 42436641, + 6256723733, + 5481998071, + 5481998074, + 7779608820, + 42436644, + 7779608795, + 5481998078, + 5481998085, + 5481998081, + 7777321713, + 42436647 + ], + "geometry": [ + { "lat": 40.7941983, "lon": -73.9468558 }, + { "lat": 40.7941810, "lon": -73.9468139 }, + { "lat": 40.7941525, "lon": -73.9467458 }, + { "lat": 40.7940067, "lon": -73.9463836 }, + { "lat": 40.7937277, "lon": -73.9457238 }, + { "lat": 40.7935986, "lon": -73.9454190 }, + { "lat": 40.7935598, "lon": -73.9453291 }, + { "lat": 40.7935197, "lon": -73.9452358 }, + { "lat": 40.7933572, "lon": -73.9448689 }, + { "lat": 40.7933178, "lon": -73.9447752 }, + { "lat": 40.7931427, "lon": -73.9443601 }, + { "lat": 40.7929321, "lon": -73.9438607 }, + { "lat": 40.7928745, "lon": -73.9437242 } + ], + "tags": { + "highway": "residential", + "name": "East 108th Street", + "name:ru": "Восточная 108-я стрит", + "name_1": "East 108 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5670472, + "bounds": { + "minlat": 40.7909050, + "minlon": -73.9415030, + "maxlat": 40.7919080, + "maxlon": -73.9391320 + }, + "nodes": [ + 42436651, + 6175905190, + 7777321747, + 5481998039, + 7929477356, + 7474589657, + 7777426420, + 6216349380, + 42436653 + ], + "geometry": [ + { "lat": 40.7919080, "lon": -73.9415030 }, + { "lat": 40.7918724, "lon": -73.9414116 }, + { "lat": 40.7918546, "lon": -73.9413701 }, + { "lat": 40.7916065, "lon": -73.9407903 }, + { "lat": 40.7913210, "lon": -73.9401154 }, + { "lat": 40.7910441, "lon": -73.9394608 }, + { "lat": 40.7909640, "lon": -73.9392715 }, + { "lat": 40.7909501, "lon": -73.9392386 }, + { "lat": 40.7909050, "lon": -73.9391320 } + ], + "tags": { + "highway": "residential", + "name": "East 108th Street", + "name:ru": "Восточная 108-я стрит", + "name_1": "East 108 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670488, + "bounds": { + "minlat": 40.7284251, + "minlon": -73.9996723, + "maxlat": 40.7296860, + "maxlon": -73.9986042 + }, + "nodes": [ + 42436793, + 8429053207, + 8429031591, + 1692433932 + ], + "geometry": [ + { "lat": 40.7296860, "lon": -73.9986042 }, + { "lat": 40.7296415, "lon": -73.9986419 }, + { "lat": 40.7284748, "lon": -73.9996302 }, + { "lat": 40.7284251, "lon": -73.9996723 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Thompson Street", + "name:etymology:wikidata": "Q3568998", + "name:ko": "톰슨 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12070954", + "wikipedia": "en:Thompson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670490, + "bounds": { + "minlat": 40.7220549, + "minlon": -74.0053623, + "maxlat": 40.7227332, + "maxlon": -74.0044383 + }, + "nodes": [ + 42436763, + 8231935501, + 4387367047, + 2477507992, + 42436761, + 11317570715, + 11317570716, + 11317570714, + 11317570713, + 11317570717, + 8304498342, + 42430136 + ], + "geometry": [ + { "lat": 40.7227332, "lon": -74.0044383 }, + { "lat": 40.7226731, "lon": -74.0044881 }, + { "lat": 40.7224088, "lon": -74.0047102 }, + { "lat": 40.7220957, "lon": -74.0049885 }, + { "lat": 40.7220744, "lon": -74.0050115 }, + { "lat": 40.7220602, "lon": -74.0050347 }, + { "lat": 40.7220549, "lon": -74.0050648 }, + { "lat": 40.7220597, "lon": -74.0050912 }, + { "lat": 40.7220709, "lon": -74.0051142 }, + { "lat": 40.7221111, "lon": -74.0051791 }, + { "lat": 40.7221512, "lon": -74.0052440 }, + { "lat": 40.7222252, "lon": -74.0053623 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Thompson Street", + "name:etymology:wikidata": "Q3568998", + "name:ko": "톰슨 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12070954", + "wikipedia": "en:Thompson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670495, + "bounds": { + "minlat": 40.8461050, + "minlon": -73.9421969, + "maxlat": 40.8476869, + "maxlon": -73.9360780 + }, + "nodes": [ + 42436832, + 9566938941, + 10670916659, + 42430023, + 10670916660, + 9566938955, + 42427164, + 9566938952, + 7604384314, + 42429006, + 7604384312, + 8722881559, + 42436812, + 8722881557, + 5403873780, + 42433058 + ], + "geometry": [ + { "lat": 40.8476869, "lon": -73.9421969 }, + { "lat": 40.8476705, "lon": -73.9421021 }, + { "lat": 40.8474073, "lon": -73.9407680 }, + { "lat": 40.8473921, "lon": -73.9406910 }, + { "lat": 40.8473761, "lon": -73.9406118 }, + { "lat": 40.8472341, "lon": -73.9398917 }, + { "lat": 40.8472122, "lon": -73.9397798 }, + { "lat": 40.8471901, "lon": -73.9396708 }, + { "lat": 40.8469374, "lon": -73.9383740 }, + { "lat": 40.8469437, "lon": -73.9382280 }, + { "lat": 40.8469528, "lon": -73.9380775 }, + { "lat": 40.8466672, "lon": -73.9374153 }, + { "lat": 40.8466230, "lon": -73.9373130 }, + { "lat": 40.8465867, "lon": -73.9372263 }, + { "lat": 40.8461592, "lon": -73.9362074 }, + { "lat": 40.8461050, "lon": -73.9360780 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 176th Street", + "name_1": "West 176 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "176th", + "tiger:name_base_1": "176", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5670498, + "bounds": { + "minlat": 40.7296922, + "minlon": -74.0021622, + "maxlat": 40.7302460, + "maxlon": -74.0010200 + }, + "nodes": [ + 42430187, + 5854302559, + 5854302556, + 5854302554, + 529556095, + 42436844, + 8429015947, + 42436848 + ], + "geometry": [ + { "lat": 40.7297532, "lon": -74.0021622 }, + { "lat": 40.7297236, "lon": -74.0021418 }, + { "lat": 40.7297007, "lon": -74.0021128 }, + { "lat": 40.7296922, "lon": -74.0020718 }, + { "lat": 40.7296922, "lon": -74.0020303 }, + { "lat": 40.7298963, "lon": -74.0013313 }, + { "lat": 40.7302232, "lon": -74.0010403 }, + { "lat": 40.7302460, "lon": -74.0010200 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Minetta Street", + "name:etymology:wikidata": "Q6864566", + "name:ko": "미네타 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670507, + "bounds": { + "minlat": 40.7707171, + "minlon": -73.9642177, + "maxlat": 40.7763096, + "maxlon": -73.9509410 + }, + "nodes": [ + 42436911, + 7094731938, + 10122937140, + 42436913, + 10122937139, + 10122937135, + 596776078, + 42436914, + 10122937136, + 10122937125, + 42436917, + 10122937124, + 10122913415, + 42436919, + 10122913416, + 8250715773, + 42436921, + 6176390286, + 8250715767, + 6689909664, + 42436922, + 6689909662, + 10122913412, + 6689923792, + 42428016 + ], + "geometry": [ + { "lat": 40.7763096, "lon": -73.9642177 }, + { "lat": 40.7762753, "lon": -73.9641368 }, + { "lat": 40.7756876, "lon": -73.9627449 }, + { "lat": 40.7756416, "lon": -73.9626345 }, + { "lat": 40.7755886, "lon": -73.9625086 }, + { "lat": 40.7750423, "lon": -73.9612133 }, + { "lat": 40.7749989, "lon": -73.9611070 }, + { "lat": 40.7749247, "lon": -73.9609303 }, + { "lat": 40.7748785, "lon": -73.9608204 }, + { "lat": 40.7743258, "lon": -73.9595065 }, + { "lat": 40.7742796, "lon": -73.9593972 }, + { "lat": 40.7742377, "lon": -73.9592985 }, + { "lat": 40.7736594, "lon": -73.9579345 }, + { "lat": 40.7736031, "lon": -73.9578018 }, + { "lat": 40.7735424, "lon": -73.9576575 }, + { "lat": 40.7727094, "lon": -73.9556834 }, + { "lat": 40.7726645, "lon": -73.9555742 }, + { "lat": 40.7726218, "lon": -73.9554681 }, + { "lat": 40.7726029, "lon": -73.9554236 }, + { "lat": 40.7717130, "lon": -73.9533240 }, + { "lat": 40.7716529, "lon": -73.9531803 }, + { "lat": 40.7715957, "lon": -73.9530454 }, + { "lat": 40.7707839, "lon": -73.9511119 }, + { "lat": 40.7707647, "lon": -73.9510628 }, + { "lat": 40.7707171, "lon": -73.9509410 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 78th Street", + "name:ru": "Восточная 78-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670508, + "bounds": { + "minlat": 40.8701866, + "minlon": -73.9190257, + "maxlat": 40.8721160, + "maxlon": -73.9162780 + }, + "nodes": [ + 6865009901, + 2034003389, + 2034003393, + 42429944, + 11587349752, + 9561209079, + 1764672568, + 42436929, + 9561209082, + 11587349751, + 42436930, + 1764671314, + 9561209094, + 42429707 + ], + "geometry": [ + { "lat": 40.8701866, "lon": -73.9190257 }, + { "lat": 40.8702152, "lon": -73.9189646 }, + { "lat": 40.8702939, "lon": -73.9188255 }, + { "lat": 40.8704222, "lon": -73.9186334 }, + { "lat": 40.8708596, "lon": -73.9180081 }, + { "lat": 40.8708808, "lon": -73.9179778 }, + { "lat": 40.8708854, "lon": -73.9179712 }, + { "lat": 40.8709230, "lon": -73.9179160 }, + { "lat": 40.8709722, "lon": -73.9178498 }, + { "lat": 40.8712865, "lon": -73.9174173 }, + { "lat": 40.8715840, "lon": -73.9170090 }, + { "lat": 40.8720334, "lon": -73.9163975 }, + { "lat": 40.8720600, "lon": -73.9163549 }, + { "lat": 40.8721160, "lon": -73.9162780 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Park Terrace West", + "oneway": "yes", + "sidewalk": "both" + } +}, +{ + "type": "way", + "id": 5670510, + "bounds": { + "minlat": 40.7282532, + "minlon": -73.9785360, + "maxlat": 40.7287460, + "maxlon": -73.9773526 + }, + "nodes": [ + 42436949, + 5178498523, + 7145875534, + 8309479476, + 42436947 + ], + "geometry": [ + { "lat": 40.7282532, "lon": -73.9773526 }, + { "lat": 40.7284975, "lon": -73.9779392 }, + { "lat": 40.7285458, "lon": -73.9780553 }, + { "lat": 40.7287130, "lon": -73.9784566 }, + { "lat": 40.7287460, "lon": -73.9785360 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 13th Street", + "name:ru": "Восточная 13-я стрит", + "name_1": "East 13 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670512, + "bounds": { + "minlat": 40.7267520, + "minlon": -73.9761698, + "maxlat": 40.7277504, + "maxlon": -73.9737990 + }, + "nodes": [ + 42436957, + 8309479568, + 12995387302, + 8309479565, + 3624790934 + ], + "geometry": [ + { "lat": 40.7277504, "lon": -73.9761698 }, + { "lat": 40.7277124, "lon": -73.9760798 }, + { "lat": 40.7273316, "lon": -73.9751754 }, + { "lat": 40.7267947, "lon": -73.9739005 }, + { "lat": 40.7267520, "lon": -73.9737990 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 13th Street", + "name:ru": "Восточная 13-я стрит", + "name_1": "East 13 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670514, + "bounds": { + "minlat": 40.7288513, + "minlon": -74.0052872, + "maxlat": 40.7297393, + "maxlon": -74.0021934 + }, + "nodes": [ + 5854302557, + 3891950555, + 5854302560, + 42436963, + 5866337889, + 8309469088, + 42431517, + 8309469089, + 7992059163, + 8307641963, + 42436968 + ], + "geometry": [ + { "lat": 40.7296952, "lon": -74.0021934 }, + { "lat": 40.7297288, "lon": -74.0023169 }, + { "lat": 40.7297393, "lon": -74.0023661 }, + { "lat": 40.7297360, "lon": -74.0024100 }, + { "lat": 40.7293755, "lon": -74.0035569 }, + { "lat": 40.7293605, "lon": -74.0036046 }, + { "lat": 40.7293440, "lon": -74.0036570 }, + { "lat": 40.7293288, "lon": -74.0037071 }, + { "lat": 40.7289143, "lon": -74.0050710 }, + { "lat": 40.7288932, "lon": -74.0051406 }, + { "lat": 40.7288513, "lon": -74.0052872 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Downing Street", + "name:ko": "다우닝 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670515, + "bounds": { + "minlat": 40.7107814, + "minlon": -73.9839123, + "maxlat": 40.7112964, + "maxlon": -73.9837964 + }, + "nodes": [ + 42436971, + 11038072070, + 11038072071, + 11038072072, + 8310246553, + 6415259651, + 8310246566, + 42436974 + ], + "geometry": [ + { "lat": 40.7107814, "lon": -73.9837964 }, + { "lat": 40.7107935, "lon": -73.9838198 }, + { "lat": 40.7108106, "lon": -73.9838373 }, + { "lat": 40.7108257, "lon": -73.9838441 }, + { "lat": 40.7108396, "lon": -73.9838469 }, + { "lat": 40.7111970, "lon": -73.9838985 }, + { "lat": 40.7112510, "lon": -73.9839060 }, + { "lat": 40.7112964, "lon": -73.9839123 } + ], + "tags": { + "highway": "residential", + "name": "Gouverneur Slip West", + "name:etymology:wikidata": "Q56742810", + "name:ko": "구버너 슬립 웨스트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670519, + "bounds": { + "minlat": 40.7927109, + "minlon": -73.9762395, + "maxlat": 40.7948250, + "maxlon": -73.9711972 + }, + "nodes": [ + 42437005, + 10061723884, + 9492556575, + 42431094, + 9492556581, + 10061731003, + 42428709, + 1061531847, + 7004379680, + 8687882686, + 42436990, + 8687882685 + ], + "geometry": [ + { "lat": 40.7948250, "lon": -73.9762395 }, + { "lat": 40.7948051, "lon": -73.9761920 }, + { "lat": 40.7940099, "lon": -73.9742950 }, + { "lat": 40.7939557, "lon": -73.9741657 }, + { "lat": 40.7939016, "lon": -73.9740367 }, + { "lat": 40.7934436, "lon": -73.9729441 }, + { "lat": 40.7933995, "lon": -73.9728390 }, + { "lat": 40.7933157, "lon": -73.9726391 }, + { "lat": 40.7932758, "lon": -73.9725439 }, + { "lat": 40.7928173, "lon": -73.9714503 }, + { "lat": 40.7927633, "lon": -73.9713214 }, + { "lat": 40.7927109, "lon": -73.9711972 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670522, + "bounds": { + "minlat": 40.7353170, + "minlon": -73.9898706, + "maxlat": 40.7365407, + "maxlon": -73.9889803 + }, + "nodes": [ + 42431452, + 12179582170, + 3670742472, + 12179582171, + 5266429283, + 5266429284, + 12179582164, + 3670742447, + 42437018, + 3670742479, + 4597668019, + 3252590542, + 42437021 + ], + "geometry": [ + { "lat": 40.7353170, "lon": -73.9898706 }, + { "lat": 40.7353642, "lon": -73.9898454 }, + { "lat": 40.7353898, "lon": -73.9898298 }, + { "lat": 40.7354080, "lon": -73.9898179 }, + { "lat": 40.7357456, "lon": -73.9895678 }, + { "lat": 40.7358089, "lon": -73.9895214 }, + { "lat": 40.7358625, "lon": -73.9894813 }, + { "lat": 40.7359082, "lon": -73.9894475 }, + { "lat": 40.7359658, "lon": -73.9894066 }, + { "lat": 40.7360327, "lon": -73.9893557 }, + { "lat": 40.7364467, "lon": -73.9890504 }, + { "lat": 40.7364957, "lon": -73.9890143 }, + { "lat": 40.7365407, "lon": -73.9889803 } + ], + "tags": { + "cycleway:left": "separate", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Union Square East", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670524, + "bounds": { + "minlat": 40.8033203, + "minlon": -73.9292304, + "maxlat": 40.8037129, + "maxlon": -73.9284613 + }, + "nodes": [ + 42437043, + 7477194684 + ], + "geometry": [ + { "lat": 40.8033203, "lon": -73.9292304 }, + { "lat": 40.8037129, "lon": -73.9284613 } + ], + "tags": { + "bicycle": "no", + "bridge": "movable", + "bridge:movable": "swing", + "bridge:name": "Willis Avenue Bridge", + "destination:lanes:forward": "Major Deegan Expressway North;Willis Avenue|Major Deegan Expressway North;Willis Avenue|Major Deegan Expressway North;Willis Avenue;Bruckner Expressway East;Bruckner Boulevad|Bruckner Expressway East;Bruckner Boulevard", + "destination:ref:lanes:forward": "I 87 North|I 87 North|I 87 North;I 278 East|I 278 East", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "4", + "layer": "1", + "maxspeed": "30 mph", + "name": "Willis Avenue Bridge", + "oneway": "yes", + "operator": "New York City Department of Transportation", + "sidewalk": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Willis Avenue", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "toll": "no", + "website": "https://www.nyc.gov/html/dot/html/infrastructure/willis-ave-bridge.shtml", + "wikidata": "Q2581529", + "wikipedia": "en:Willis Avenue Bridge" + } +}, +{ + "type": "way", + "id": 5670526, + "bounds": { + "minlat": 40.7909289, + "minlon": -73.9776753, + "maxlat": 40.7921750, + "maxlon": -73.9747804 + }, + "nodes": [ + 42437058, + 9916159533, + 9168918324, + 9168918322, + 9916159532, + 9492556594, + 42431057, + 9492556520, + 10060611744 + ], + "geometry": [ + { "lat": 40.7921750, "lon": -73.9776753 }, + { "lat": 40.7921539, "lon": -73.9776518 }, + { "lat": 40.7921377, "lon": -73.9776283 }, + { "lat": 40.7921254, "lon": -73.9776060 }, + { "lat": 40.7915123, "lon": -73.9761653 }, + { "lat": 40.7914933, "lon": -73.9761191 }, + { "lat": 40.7914429, "lon": -73.9759966 }, + { "lat": 40.7913918, "lon": -73.9758750 }, + { "lat": 40.7909289, "lon": -73.9747804 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 90th Street", + "name:ru": "Западная 90-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670532, + "bounds": { + "minlat": 40.7183141, + "minlon": -73.9842294, + "maxlat": 40.7188259, + "maxlon": -73.9825206 + }, + "nodes": [ + 42427346, + 8310245584, + 8310245578, + 42437067, + 8310245581, + 2715605021, + 42437071 + ], + "geometry": [ + { "lat": 40.7183141, "lon": -73.9825206 }, + { "lat": 40.7183434, "lon": -73.9826185 }, + { "lat": 40.7185573, "lon": -73.9833325 }, + { "lat": 40.7185765, "lon": -73.9833967 }, + { "lat": 40.7185964, "lon": -73.9834630 }, + { "lat": 40.7188050, "lon": -73.9841597 }, + { "lat": 40.7188259, "lon": -73.9842294 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "name:ko": "리빙턴 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 5670536, + "bounds": { + "minlat": 40.7140183, + "minlon": -73.9975839, + "maxlat": 40.7140701, + "maxlon": -73.9974891 + }, + "nodes": [ + 12374690314, + 11504054131, + 12374690312 + ], + "geometry": [ + { "lat": 40.7140701, "lon": -73.9975839 }, + { "lat": 40.7140396, "lon": -73.9975197 }, + { "lat": 40.7140183, "lon": -73.9974891 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Street", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 스트리트", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670539, + "bounds": { + "minlat": 40.8061125, + "minlon": -73.9610565, + "maxlat": 40.8068316, + "maxlon": -73.9593600 + }, + "nodes": [ + 1506445821, + 6791440554, + 8385765465, + 42437142 + ], + "geometry": [ + { "lat": 40.8061125, "lon": -73.9593600 }, + { "lat": 40.8061522, "lon": -73.9594541 }, + { "lat": 40.8067743, "lon": -73.9609214 }, + { "lat": 40.8068316, "lon": -73.9610565 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "name_1": "West 116 Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670540, + "bounds": { + "minlat": 40.8006650, + "minlon": -73.9496071, + "maxlat": 40.8020112, + "maxlon": -73.9464620 + }, + "nodes": [ + 42437174, + 10167137551, + 3817980392, + 5266449887, + 10170875043, + 42437177 + ], + "geometry": [ + { "lat": 40.8006650, "lon": -73.9464620 }, + { "lat": 40.8007218, "lon": -73.9465948 }, + { "lat": 40.8013515, "lon": -73.9480668 }, + { "lat": 40.8017559, "lon": -73.9490120 }, + { "lat": 40.8019666, "lon": -73.9495029 }, + { "lat": 40.8020112, "lon": -73.9496071 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "name_1": "West 116 Street", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670544, + "bounds": { + "minlat": 40.8054904, + "minlon": -73.9673730, + "maxlat": 40.8061270, + "maxlon": -73.9658601 + }, + "nodes": [ + 42437223, + 10168673736, + 1506445833, + 1506445810, + 7326861785, + 42428799 + ], + "geometry": [ + { "lat": 40.8061270, "lon": -73.9673730 }, + { "lat": 40.8061063, "lon": -73.9673239 }, + { "lat": 40.8056807, "lon": -73.9663117 }, + { "lat": 40.8056504, "lon": -73.9662396 }, + { "lat": 40.8055424, "lon": -73.9659834 }, + { "lat": 40.8054904, "lon": -73.9658601 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 112th Street", + "name:ru": "Западная 112-я стрит", + "name_1": "West 112 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670551, + "bounds": { + "minlat": 40.7360082, + "minlon": -73.9886277, + "maxlat": 40.7371730, + "maxlon": -73.9858628 + }, + "nodes": [ + 4597668026, + 42437280, + 9679181051, + 12183283830, + 9679181043, + 42434357, + 9679181028, + 9583218041 + ], + "geometry": [ + { "lat": 40.7371730, "lon": -73.9886277 }, + { "lat": 40.7371364, "lon": -73.9885416 }, + { "lat": 40.7370974, "lon": -73.9884487 }, + { "lat": 40.7365331, "lon": -73.9871118 }, + { "lat": 40.7365088, "lon": -73.9870540 }, + { "lat": 40.7364725, "lon": -73.9869684 }, + { "lat": 40.7364326, "lon": -73.9868712 }, + { "lat": 40.7360082, "lon": -73.9858628 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 18th Street", + "name:ru": "Восточная 18-я стрит", + "name_1": "East 18 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670553, + "bounds": { + "minlat": 40.7845451, + "minlon": -73.9764355, + "maxlat": 40.7857321, + "maxlon": -73.9736127 + }, + "nodes": [ + 42437300, + 10039972351, + 10039927888, + 42437305 + ], + "geometry": [ + { "lat": 40.7845451, "lon": -73.9736127 }, + { "lat": 40.7845941, "lon": -73.9737293 }, + { "lat": 40.7856841, "lon": -73.9763215 }, + { "lat": 40.7857321, "lon": -73.9764355 } + ], + "tags": { + "highway": "residential", + "name": "West 83rd Street", + "name:ru": "Западная 83-я стрит", + "name_1": "West 83 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670555, + "bounds": { + "minlat": 40.8371926, + "minlon": -73.9383539, + "maxlat": 40.8378835, + "maxlon": -73.9366896 + }, + "nodes": [ + 42437316, + 8725182233, + 2075595690, + 5748721453, + 13703112126, + 9569882312, + 42437319 + ], + "geometry": [ + { "lat": 40.8371926, "lon": -73.9366896 }, + { "lat": 40.8372375, "lon": -73.9367988 }, + { "lat": 40.8372614, "lon": -73.9368589 }, + { "lat": 40.8374807, "lon": -73.9373838 }, + { "lat": 40.8376467, "lon": -73.9377739 }, + { "lat": 40.8378456, "lon": -73.9382413 }, + { "lat": 40.8378835, "lon": -73.9383539 } + ], + "tags": { + "highway": "residential", + "name": "West 165th Street", + "name_1": "West 165 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "165th", + "tiger:name_base_1": "165", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5670560, + "bounds": { + "minlat": 40.7206740, + "minlon": -73.9806046, + "maxlat": 40.7216770, + "maxlon": -73.9782310 + }, + "nodes": [ + 42437354, + 8309479317, + 8309479338, + 42437349 + ], + "geometry": [ + { "lat": 40.7206740, "lon": -73.9782310 }, + { "lat": 40.7207170, "lon": -73.9783328 }, + { "lat": 40.7216425, "lon": -73.9805238 }, + { "lat": 40.7216770, "lon": -73.9806046 } + ], + "tags": { + "alt_name:ko": "이스트 3번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 3rd Street", + "name:ko": "이스트 3rd 스트리트", + "name:ru": "Восточная 3-я стрит", + "name_1": "East 3 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670566, + "bounds": { + "minlat": 40.7755427, + "minlon": -73.9793024, + "maxlat": 40.7767307, + "maxlon": -73.9764626 + }, + "nodes": [ + 42435272, + 7802856371, + 9668750178, + 42437384 + ], + "geometry": [ + { "lat": 40.7755427, "lon": -73.9764626 }, + { "lat": 40.7755936, "lon": -73.9765860 }, + { "lat": 40.7766765, "lon": -73.9791729 }, + { "lat": 40.7767307, "lon": -73.9793024 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 71st Street", + "name:ru": "Западная 71-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670572, + "bounds": { + "minlat": 40.7646145, + "minlon": -73.9606894, + "maxlat": 40.7656160, + "maxlon": -73.9583002 + }, + "nodes": [ + 42437451, + 9030177814, + 13701244192, + 8851344393, + 42437445 + ], + "geometry": [ + { "lat": 40.7646145, "lon": -73.9583002 }, + { "lat": 40.7646815, "lon": -73.9584577 }, + { "lat": 40.7654255, "lon": -73.9602341 }, + { "lat": 40.7655642, "lon": -73.9605654 }, + { "lat": 40.7656160, "lon": -73.9606894 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 67th Street", + "name:ru": "Восточная 67-я стрит", + "name_1": "East 67 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670574, + "bounds": { + "minlat": 40.7147553, + "minlon": -73.9845456, + "maxlat": 40.7151841, + "maxlon": -73.9842712 + }, + "nodes": [ + 11038072550, + 5804835257, + 11038072465 + ], + "geometry": [ + { "lat": 40.7147553, "lon": -73.9845456 }, + { "lat": 40.7151103, "lon": -73.9843187 }, + { "lat": 40.7151841, "lon": -73.9842712 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "track", + "cycleway:both:traffic_mode": "parking", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Samuel Dickstein Plaza", + "name:etymology:wikidata": "Q633827", + "name:ko": "사무엘 딕스타인 플라자", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 5670575, + "bounds": { + "minlat": 40.7173438, + "minlon": -74.0096330, + "maxlat": 40.7179048, + "maxlon": -74.0095136 + }, + "nodes": [ + 42430526, + 8304498483, + 10695199954 + ], + "geometry": [ + { "lat": 40.7173438, "lon": -74.0096330 }, + { "lat": 40.7174074, "lon": -74.0096193 }, + { "lat": 40.7179048, "lon": -74.0095136 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "name": "Staple Street", + "name:etymology:wikidata": "Q736427", + "name:ko": "스테이플 스트리트", + "oneway": "yes", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670578, + "bounds": { + "minlat": 40.7112524, + "minlon": -73.9896443, + "maxlat": 40.7117120, + "maxlon": -73.9848136 + }, + "nodes": [ + 42437505, + 11038072104, + 8310246621, + 8310246596, + 42437503, + 6214824202, + 10931516192, + 8310246599, + 7071398758, + 6330018943, + 6330018951, + 42437500, + 6330018954, + 6330018965, + 6330018924, + 42437496, + 8310246625, + 4487582555 + ], + "geometry": [ + { "lat": 40.7117120, "lon": -73.9848136 }, + { "lat": 40.7117109, "lon": -73.9848963 }, + { "lat": 40.7117023, "lon": -73.9849944 }, + { "lat": 40.7115424, "lon": -73.9866485 }, + { "lat": 40.7115328, "lon": -73.9867498 }, + { "lat": 40.7115284, "lon": -73.9867934 }, + { "lat": 40.7115269, "lon": -73.9868090 }, + { "lat": 40.7115228, "lon": -73.9868507 }, + { "lat": 40.7114939, "lon": -73.9871493 }, + { "lat": 40.7114593, "lon": -73.9875074 }, + { "lat": 40.7113945, "lon": -73.9881770 }, + { "lat": 40.7113815, "lon": -73.9883106 }, + { "lat": 40.7113449, "lon": -73.9886889 }, + { "lat": 40.7113334, "lon": -73.9888081 }, + { "lat": 40.7113193, "lon": -73.9889532 }, + { "lat": 40.7112616, "lon": -73.9895500 }, + { "lat": 40.7112592, "lon": -73.9895741 }, + { "lat": 40.7112524, "lon": -73.9896443 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Cherry Street", + "name:ko": "체리 스트리트", + "name:ru": "Черри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670579, + "bounds": { + "minlat": 40.7123357, + "minlon": -73.9789405, + "maxlat": 40.7124114, + "maxlon": -73.9780068 + }, + "nodes": [ + 42437519, + 9619793646, + 9907942849, + 5804713723, + 2348991669 + ], + "geometry": [ + { "lat": 40.7124114, "lon": -73.9780068 }, + { "lat": 40.7124015, "lon": -73.9780289 }, + { "lat": 40.7123971, "lon": -73.9780569 }, + { "lat": 40.7123926, "lon": -73.9781014 }, + { "lat": 40.7123357, "lon": -73.9789405 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Cherry Street", + "name:ko": "체리 스트리트", + "name:ru": "Черри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cherry", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10002", + "tiger:zip_right": "10002", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670581, + "bounds": { + "minlat": 40.7373284, + "minlon": -73.9853903, + "maxlat": 40.7379279, + "maxlon": -73.9849582 + }, + "nodes": [ + 42437529, + 9558740377, + 246539426, + 9558740378, + 42437530 + ], + "geometry": [ + { "lat": 40.7373284, "lon": -73.9853903 }, + { "lat": 40.7373887, "lon": -73.9853468 }, + { "lat": 40.7378227, "lon": -73.9850347 }, + { "lat": 40.7378696, "lon": -73.9850009 }, + { "lat": 40.7379279, "lon": -73.9849582 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Gramercy Park East", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "8" + } +}, +{ + "type": "way", + "id": 5670584, + "bounds": { + "minlat": 40.7043730, + "minlon": -74.0110975, + "maxlat": 40.7047630, + "maxlon": -74.0103270 + }, + "nodes": [ + 42437546, + 11040350670, + 4296895459, + 9017251855, + 42437542, + 42437540, + 42437537 + ], + "geometry": [ + { "lat": 40.7043730, "lon": -74.0110975 }, + { "lat": 40.7044117, "lon": -74.0109866 }, + { "lat": 40.7044574, "lon": -74.0108704 }, + { "lat": 40.7045137, "lon": -74.0107536 }, + { "lat": 40.7045410, "lon": -74.0106970 }, + { "lat": 40.7046410, "lon": -74.0105130 }, + { "lat": 40.7047630, "lon": -74.0103270 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "15 mph", + "maxspeed:type": "sign", + "name": "South William Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "사우스 윌리엄 스트리트", + "note": "school speed limit", + "oneway": "yes", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "William", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670594, + "bounds": { + "minlat": 40.7252555, + "minlon": -73.9922705, + "maxlat": 40.7270874, + "maxlon": -73.9915502 + }, + "nodes": [ + 1773084402, + 8309479116, + 5286255072, + 12187431462, + 8309479105, + 42431168, + 8309479106, + 12187431476, + 5243701466, + 12187431475, + 8309479095, + 42437618, + 8309479096, + 12187431492, + 8309479089, + 1692433907 + ], + "geometry": [ + { "lat": 40.7270874, "lon": -73.9915502 }, + { "lat": 40.7270321, "lon": -73.9915872 }, + { "lat": 40.7269097, "lon": -73.9916692 }, + { "lat": 40.7265434, "lon": -73.9918018 }, + { "lat": 40.7264959, "lon": -73.9918180 }, + { "lat": 40.7264229, "lon": -73.9918457 }, + { "lat": 40.7263395, "lon": -73.9918766 }, + { "lat": 40.7263127, "lon": -73.9918868 }, + { "lat": 40.7258299, "lon": -73.9920584 }, + { "lat": 40.7257842, "lon": -73.9920746 }, + { "lat": 40.7257345, "lon": -73.9920925 }, + { "lat": 40.7256649, "lon": -73.9921182 }, + { "lat": 40.7255916, "lon": -73.9921444 }, + { "lat": 40.7253615, "lon": -73.9922229 }, + { "lat": 40.7253141, "lon": -73.9922449 }, + { "lat": 40.7252555, "lon": -73.9922705 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "24/7", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 5670600, + "bounds": { + "minlat": 40.7486189, + "minlon": -73.9877463, + "maxlat": 40.7498011, + "maxlon": -73.9849473 + }, + "nodes": [ + 9971314382, + 4770624020, + 3857334397, + 42430304 + ], + "geometry": [ + { "lat": 40.7486189, "lon": -73.9849473 }, + { "lat": 40.7496595, "lon": -73.9874153 }, + { "lat": 40.7497588, "lon": -73.9876472 }, + { "lat": 40.7498011, "lon": -73.9877463 } + ], + "tags": { + "access:lanes": "yes|no", + "bus:lanes": "yes|designated", + "foot": "designated", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670603, + "bounds": { + "minlat": 40.7546144, + "minlon": -74.0071521, + "maxlat": 40.7546987, + "maxlon": -74.0069754 + }, + "nodes": [ + 589520212, + 12154605982, + 4379966376, + 246650546 + ], + "geometry": [ + { "lat": 40.7546987, "lon": -74.0071521 }, + { "lat": 40.7546603, "lon": -74.0070717 }, + { "lat": 40.7546441, "lon": -74.0070377 }, + { "lat": 40.7546144, "lon": -74.0069754 } + ], + "tags": { + "access": "customers", + "highway": "service", + "name_1": "West 30 Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670615, + "bounds": { + "minlat": 40.8127869, + "minlon": -73.9398101, + "maxlat": 40.8134646, + "maxlon": -73.9393193 + }, + "nodes": [ + 42435990, + 9559444354, + 42437801 + ], + "geometry": [ + { "lat": 40.8127869, "lon": -73.9398101 }, + { "lat": 40.8133707, "lon": -73.9393881 }, + { "lat": 40.8134646, "lon": -73.9393193 } + ], + "tags": { + "bicycle": "no", + "highway": "residential", + "name": "Lenox Terrace Place", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Lenox Terrace", + "tiger:name_type": "Pl", + "tiger:reviewed": "aerial", + "tiger:zip_left": "10037", + "tiger:zip_right": "10037" + } +}, +{ + "type": "way", + "id": 5670618, + "bounds": { + "minlat": 40.7072114, + "minlon": -74.0171151, + "maxlat": 40.7074717, + "maxlon": -74.0165152 + }, + "nodes": [ + 588593097, + 5214620547, + 4206997168, + 42433718 + ], + "geometry": [ + { "lat": 40.7072114, "lon": -74.0165152 }, + { "lat": 40.7074064, "lon": -74.0169677 }, + { "lat": 40.7074277, "lon": -74.0170143 }, + { "lat": 40.7074717, "lon": -74.0171151 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "3rd Place", + "name_1": "3 Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670621, + "bounds": { + "minlat": 40.7301698, + "minlon": -73.9760172, + "maxlat": 40.7314152, + "maxlon": -73.9749965 + }, + "nodes": [ + 10705337090, + 1927758596, + 3236082413, + 3236082414, + 3236082415, + 42437823, + 3236082417, + 3236082418, + 1927758597, + 7144880737, + 3236082421, + 247404990, + 3236082423, + 3236082426, + 247404989, + 1927758598, + 7144880739, + 3236082433, + 1927758599, + 3236082434, + 3236082436, + 42437824, + 3236082437, + 3236082435 + ], + "geometry": [ + { "lat": 40.7301698, "lon": -73.9756997 }, + { "lat": 40.7302085, "lon": -73.9757939 }, + { "lat": 40.7302506, "lon": -73.9758742 }, + { "lat": 40.7302931, "lon": -73.9759241 }, + { "lat": 40.7303570, "lon": -73.9759743 }, + { "lat": 40.7304314, "lon": -73.9760059 }, + { "lat": 40.7304938, "lon": -73.9760158 }, + { "lat": 40.7305734, "lon": -73.9760172 }, + { "lat": 40.7306555, "lon": -73.9760016 }, + { "lat": 40.7306672, "lon": -73.9759970 }, + { "lat": 40.7307325, "lon": -73.9759714 }, + { "lat": 40.7308009, "lon": -73.9759382 }, + { "lat": 40.7308592, "lon": -73.9759078 }, + { "lat": 40.7309534, "lon": -73.9758575 }, + { "lat": 40.7310636, "lon": -73.9757698 }, + { "lat": 40.7311678, "lon": -73.9756755 }, + { "lat": 40.7311766, "lon": -73.9756662 }, + { "lat": 40.7312426, "lon": -73.9755971 }, + { "lat": 40.7313283, "lon": -73.9754793 }, + { "lat": 40.7313760, "lon": -73.9754004 }, + { "lat": 40.7314051, "lon": -73.9753057 }, + { "lat": 40.7314152, "lon": -73.9752062 }, + { "lat": 40.7314085, "lon": -73.9751090 }, + { "lat": 40.7313827, "lon": -73.9749965 } + ], + "tags": { + "access": "destination", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C Loop", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670624, + "bounds": { + "minlat": 40.8756106, + "minlon": -73.9114590, + "maxlat": 40.8762720, + "maxlon": -73.9094470 + }, + "nodes": [ + 42437834, + 1545097201, + 1545097398, + 1545097419, + 1545097243, + 10868090819, + 1545097307, + 1545097379, + 10868090818, + 1545097279, + 1545097441, + 1545097404, + 10868090809, + 10868090812, + 42437835 + ], + "geometry": [ + { "lat": 40.8756987, "lon": -73.9114590 }, + { "lat": 40.8756326, "lon": -73.9113208 }, + { "lat": 40.8756106, "lon": -73.9112060 }, + { "lat": 40.8756161, "lon": -73.9111065 }, + { "lat": 40.8756460, "lon": -73.9110101 }, + { "lat": 40.8756913, "lon": -73.9109316 }, + { "lat": 40.8759363, "lon": -73.9106051 }, + { "lat": 40.8759544, "lon": -73.9105727 }, + { "lat": 40.8759711, "lon": -73.9105337 }, + { "lat": 40.8759912, "lon": -73.9104744 }, + { "lat": 40.8761298, "lon": -73.9097623 }, + { "lat": 40.8761605, "lon": -73.9096508 }, + { "lat": 40.8762007, "lon": -73.9095773 }, + { "lat": 40.8762251, "lon": -73.9095326 }, + { "lat": 40.8762720, "lon": -73.9094470 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Fort Charles Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Charles", + "tiger:name_type": "Pl", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5670627, + "bounds": { + "minlat": 40.7778454, + "minlon": -73.9885800, + "maxlat": 40.7781959, + "maxlon": -73.9877555 + }, + "nodes": [ + 42437845, + 9900041155, + 8528686517, + 9900041161, + 42437841 + ], + "geometry": [ + { "lat": 40.7781959, "lon": -73.9885800 }, + { "lat": 40.7781549, "lon": -73.9884839 }, + { "lat": 40.7779053, "lon": -73.9878991 }, + { "lat": 40.7778888, "lon": -73.9878595 }, + { "lat": 40.7778454, "lon": -73.9877555 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 68th Street", + "name:ru": "Западная 68-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670633, + "bounds": { + "minlat": 40.7169520, + "minlon": -73.9842443, + "maxlat": 40.7209056, + "maxlon": -73.9821814 + }, + "nodes": [ + 1919595923, + 3783146166, + 8310245655, + 42432078, + 8310245656, + 8310245579, + 42437067, + 8310245580, + 8310245571, + 42429806, + 8310245572, + 8310245564, + 42435534 + ], + "geometry": [ + { "lat": 40.7209056, "lon": -73.9821814 }, + { "lat": 40.7208250, "lon": -73.9822230 }, + { "lat": 40.7197679, "lon": -73.9827747 }, + { "lat": 40.7197245, "lon": -73.9827973 }, + { "lat": 40.7196777, "lon": -73.9828218 }, + { "lat": 40.7186200, "lon": -73.9833740 }, + { "lat": 40.7185765, "lon": -73.9833967 }, + { "lat": 40.7185261, "lon": -73.9834232 }, + { "lat": 40.7174776, "lon": -73.9839730 }, + { "lat": 40.7174310, "lon": -73.9839974 }, + { "lat": 40.7173695, "lon": -73.9840290 }, + { "lat": 40.7170149, "lon": -73.9842110 }, + { "lat": 40.7169520, "lon": -73.9842443 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Ridge Street", + "name:ko": "리지 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670640, + "bounds": { + "minlat": 40.7973764, + "minlon": -73.9690527, + "maxlat": 40.8009668, + "maxlon": -73.9605349 + }, + "nodes": [ + 42435337, + 7784826646, + 6935388008, + 11803975673, + 42437916, + 10171363571, + 10166004031, + 42437917, + 10166004034, + 11905290556, + 11803975684, + 42437918, + 11803975682, + 7004451411, + 11803957851, + 11803957852, + 11803957850, + 10166004085, + 42431118 + ], + "geometry": [ + { "lat": 40.7973764, "lon": -73.9605349 }, + { "lat": 40.7974259, "lon": -73.9606527 }, + { "lat": 40.7975063, "lon": -73.9608420 }, + { "lat": 40.7979407, "lon": -73.9618844 }, + { "lat": 40.7979763, "lon": -73.9619700 }, + { "lat": 40.7980198, "lon": -73.9620724 }, + { "lat": 40.7985089, "lon": -73.9632302 }, + { "lat": 40.7985681, "lon": -73.9633705 }, + { "lat": 40.7986202, "lon": -73.9634946 }, + { "lat": 40.7988923, "lon": -73.9641377 }, + { "lat": 40.7997152, "lon": -73.9660828 }, + { "lat": 40.7997657, "lon": -73.9662021 }, + { "lat": 40.7998211, "lon": -73.9663343 }, + { "lat": 40.8004220, "lon": -73.9677685 }, + { "lat": 40.8004669, "lon": -73.9678739 }, + { "lat": 40.8005602, "lon": -73.9680927 }, + { "lat": 40.8006059, "lon": -73.9682000 }, + { "lat": 40.8009102, "lon": -73.9689197 }, + { "lat": 40.8009668, "lon": -73.9690527 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 105th Street", + "name:ru": "Западная 105-я стрит", + "name_1": "West 105 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670642, + "bounds": { + "minlat": 40.8653673, + "minlon": -73.9243971, + "maxlat": 40.8667590, + "maxlon": -73.9206120 + }, + "nodes": [ + 13317697058, + 42437921, + 9561420897, + 9561420928, + 42437923, + 9561420926, + 9561420936, + 42431242 + ], + "geometry": [ + { "lat": 40.8653673, "lon": -73.9243971 }, + { "lat": 40.8653705, "lon": -73.9243885 }, + { "lat": 40.8654079, "lon": -73.9242871 }, + { "lat": 40.8660294, "lon": -73.9225962 }, + { "lat": 40.8660653, "lon": -73.9224988 }, + { "lat": 40.8660997, "lon": -73.9224051 }, + { "lat": 40.8667187, "lon": -73.9207216 }, + { "lat": 40.8667590, "lon": -73.9206120 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "yes", + "name": "Vermilyea Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Vermilyea", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5670647, + "bounds": { + "minlat": 40.7165204, + "minlon": -74.0033020, + "maxlat": 40.7170954, + "maxlon": -74.0028129 + }, + "nodes": [ + 42437933, + 8307641686, + 8307641688, + 591567288 + ], + "geometry": [ + { "lat": 40.7165204, "lon": -74.0033020 }, + { "lat": 40.7165663, "lon": -74.0032630 }, + { "lat": 40.7170556, "lon": -74.0028467 }, + { "lat": 40.7170954, "lon": -74.0028129 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "name": "Benson Street", + "name:ko": "벤슨 스트리트", + "service": "alley", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Benson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10013", + "tiger:zip_right": "10013" + } +}, +{ + "type": "way", + "id": 5670650, + "bounds": { + "minlat": 40.8549760, + "minlon": -73.9304068, + "maxlat": 40.8560770, + "maxlon": -73.9277810 + }, + "nodes": [ + 42437942, + 8740550767, + 5403868132, + 1762221470, + 5403868133, + 11596481932, + 9563795470, + 42437944 + ], + "geometry": [ + { "lat": 40.8549760, "lon": -73.9277810 }, + { "lat": 40.8550191, "lon": -73.9278858 }, + { "lat": 40.8554987, "lon": -73.9290542 }, + { "lat": 40.8555496, "lon": -73.9291780 }, + { "lat": 40.8556054, "lon": -73.9293081 }, + { "lat": 40.8560120, "lon": -73.9302553 }, + { "lat": 40.8560381, "lon": -73.9303162 }, + { "lat": 40.8560770, "lon": -73.9304068 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 191st Street", + "name_1": "West 191 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "191st", + "tiger:name_base_1": "191", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5670651, + "bounds": { + "minlat": 40.7322611, + "minlon": -73.9995234, + "maxlat": 40.7336634, + "maxlon": -73.9963683 + }, + "nodes": [ + 42430237, + 1760570975, + 12179562733, + 12179562734, + 1760570971, + 12179562736, + 8309478832, + 42437951, + 8309478830, + 8231298071, + 12179562735, + 8309478853, + 42437949 + ], + "geometry": [ + { "lat": 40.7336634, "lon": -73.9995234 }, + { "lat": 40.7335959, "lon": -73.9994926 }, + { "lat": 40.7335851, "lon": -73.9994842 }, + { "lat": 40.7335709, "lon": -73.9994654 }, + { "lat": 40.7335594, "lon": -73.9994428 }, + { "lat": 40.7334308, "lon": -73.9991482 }, + { "lat": 40.7329730, "lon": -73.9980602 }, + { "lat": 40.7329485, "lon": -73.9980019 }, + { "lat": 40.7329216, "lon": -73.9979381 }, + { "lat": 40.7324977, "lon": -73.9969306 }, + { "lat": 40.7323260, "lon": -73.9965225 }, + { "lat": 40.7322957, "lon": -73.9964504 }, + { "lat": 40.7322611, "lon": -73.9963683 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 8th Street", + "name:en": "West 8th Street", + "name:ru": "Западная 8-я стрит", + "name_1": "West 8 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2142493", + "wikipedia": "en:8th Street and St. Mark's Place" + } +}, +{ + "type": "way", + "id": 5670652, + "bounds": { + "minlat": 40.7143885, + "minlon": -73.9925918, + "maxlat": 40.7146073, + "maxlon": -73.9925624 + }, + "nodes": [ + 5796726888, + 7480301993, + 42437970 + ], + "geometry": [ + { "lat": 40.7143885, "lon": -73.9925624 }, + { "lat": 40.7144601, "lon": -73.9925720 }, + { "lat": 40.7146073, "lon": -73.9925918 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 5670655, + "bounds": { + "minlat": 40.8275879, + "minlon": -73.9389595, + "maxlat": 40.8289841, + "maxlon": -73.9357772 + }, + "nodes": [ + 2140997997, + 12994121393, + 9153608674, + 9153608673, + 9153608672, + 13703252432, + 11762434885, + 42435898, + 11762434888, + 9153608681, + 11218835139, + 42438018 + ], + "geometry": [ + { "lat": 40.8275879, "lon": -73.9357772 }, + { "lat": 40.8276420, "lon": -73.9358292 }, + { "lat": 40.8276661, "lon": -73.9358596 }, + { "lat": 40.8276888, "lon": -73.9358930 }, + { "lat": 40.8277028, "lon": -73.9359223 }, + { "lat": 40.8280317, "lon": -73.9366895 }, + { "lat": 40.8284465, "lon": -73.9376571 }, + { "lat": 40.8285000, "lon": -73.9377820 }, + { "lat": 40.8285545, "lon": -73.9379113 }, + { "lat": 40.8289446, "lon": -73.9388363 }, + { "lat": 40.8289601, "lon": -73.9388784 }, + { "lat": 40.8289841, "lon": -73.9389595 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 154th Street", + "name_1": "West 154 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "154th", + "tiger:name_base_1": "154", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 5670656, + "bounds": { + "minlat": 40.8301600, + "minlon": -73.9434627, + "maxlat": 40.8308881, + "maxlon": -73.9416670 + }, + "nodes": [ + 42438024, + 11193685103, + 11218835151, + 42432983 + ], + "geometry": [ + { "lat": 40.8308881, "lon": -73.9434627 }, + { "lat": 40.8308437, "lon": -73.9433533 }, + { "lat": 40.8302101, "lon": -73.9417905 }, + { "lat": 40.8301600, "lon": -73.9416670 } + ], + "tags": { + "highway": "residential", + "name": "West 154th Street", + "name_1": "West 154 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "154th", + "tiger:name_base_1": "154", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5670657, + "bounds": { + "minlat": 40.7074280, + "minlon": -74.0152562, + "maxlat": 40.7076042, + "maxlon": -74.0146924 + }, + "nodes": [ + 42438030, + 4149750389 + ], + "geometry": [ + { "lat": 40.7074280, "lon": -74.0146924 }, + { "lat": 40.7076042, "lon": -74.0152562 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Joseph P. Ward Street", + "name:ko": "조셉 P. 워드 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 5670658, + "bounds": { + "minlat": 40.7159216, + "minlon": -74.0001342, + "maxlat": 40.7162110, + "maxlon": -73.9993221 + }, + "nodes": [ + 7132405547, + 11505205691, + 11505205690, + 7641718048, + 11506378175, + 7132389383, + 7132405535 + ], + "geometry": [ + { "lat": 40.7162110, "lon": -74.0001342 }, + { "lat": 40.7162010, "lon": -74.0001125 }, + { "lat": 40.7161911, "lon": -74.0000904 }, + { "lat": 40.7161830, "lon": -74.0000709 }, + { "lat": 40.7160377, "lon": -73.9996507 }, + { "lat": 40.7159491, "lon": -73.9993942 }, + { "lat": 40.7159216, "lon": -73.9993221 } + ], + "tags": { + "alt_name": "Zhe \"Zack\" Zeng Way", + "alt_name:etymology:wikidata": "Q11091429", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Bayard Street", + "name:en": "Bayard Street", + "name:etymology:wikidata": "Q508327", + "name:ko": "베이어드 스트리트", + "name:zh": "擺也街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q111307679" + } +}, +{ + "type": "way", + "id": 5670659, + "bounds": { + "minlat": 40.7877988, + "minlon": -73.9794014, + "maxlat": 40.7912444, + "maxlon": -73.9712361 + }, + "nodes": [ + 42438052, + 10039815557, + 9492542200, + 42431044, + 9492556598, + 8699239304, + 42428682, + 1061531810, + 7004376644, + 8699239293, + 6207264906, + 42438045, + 8699239288, + 8002696369, + 10042608487, + 42438043 + ], + "geometry": [ + { "lat": 40.7912444, "lon": -73.9794014 }, + { "lat": 40.7912044, "lon": -73.9793064 }, + { "lat": 40.7902488, "lon": -73.9770347 }, + { "lat": 40.7901949, "lon": -73.9769096 }, + { "lat": 40.7901442, "lon": -73.9767862 }, + { "lat": 40.7896794, "lon": -73.9756852 }, + { "lat": 40.7896363, "lon": -73.9755873 }, + { "lat": 40.7895628, "lon": -73.9754158 }, + { "lat": 40.7895105, "lon": -73.9752923 }, + { "lat": 40.7890442, "lon": -73.9741981 }, + { "lat": 40.7890277, "lon": -73.9741584 }, + { "lat": 40.7889871, "lon": -73.9740595 }, + { "lat": 40.7889359, "lon": -73.9739373 }, + { "lat": 40.7888392, "lon": -73.9737080 }, + { "lat": 40.7878474, "lon": -73.9713515 }, + { "lat": 40.7877988, "lon": -73.9712361 } + ], + "tags": { + "alt_name": "West 88 Street", + "highway": "residential", + "name": "West 88th Street", + "name:ru": "Западная 88-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670667, + "bounds": { + "minlat": 40.8004726, + "minlon": -73.9319786, + "maxlat": 40.8006925, + "maxlon": -73.9314544 + }, + "nodes": [ + 42438090, + 7925258992, + 7925258546, + 9153715331, + 9153715332, + 42438153 + ], + "geometry": [ + { "lat": 40.8004726, "lon": -73.9314544 }, + { "lat": 40.8005445, "lon": -73.9315882 }, + { "lat": 40.8006531, "lon": -73.9318347 }, + { "lat": 40.8006721, "lon": -73.9318826 }, + { "lat": 40.8006840, "lon": -73.9319282 }, + { "lat": 40.8006925, "lon": -73.9319786 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Paladino Avenue", + "oneway": "yes", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 5670668, + "bounds": { + "minlat": 40.7098263, + "minlon": -74.0112079, + "maxlat": 40.7103692, + "maxlon": -74.0100172 + }, + "nodes": [ + 42428376, + 8281922231, + 8262936495, + 42438155 + ], + "geometry": [ + { "lat": 40.7098263, "lon": -74.0100172 }, + { "lat": 40.7098463, "lon": -74.0100611 }, + { "lat": 40.7103346, "lon": -74.0111322 }, + { "lat": 40.7103692, "lon": -74.0112079 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Cortlandt Street", + "name:ko": "코트랜드 스트리트", + "name:ru": "Кортландт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14627379", + "wikipedia": "en:Cortlandt Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670670, + "bounds": { + "minlat": 40.8513202, + "minlon": -73.9412123, + "maxlat": 40.8513723, + "maxlon": -73.9402230 + }, + "nodes": [ + 42428124, + 9563821097, + 12068591651, + 6363741706, + 12067141213, + 12067141201, + 12067141200, + 6363741705, + 1769708232, + 9563821094, + 9166213997 + ], + "geometry": [ + { "lat": 40.8513413, "lon": -73.9402230 }, + { "lat": 40.8513366, "lon": -73.9403217 }, + { "lat": 40.8513344, "lon": -73.9403961 }, + { "lat": 40.8513213, "lon": -73.9406758 }, + { "lat": 40.8513202, "lon": -73.9407270 }, + { "lat": 40.8513206, "lon": -73.9407815 }, + { "lat": 40.8513234, "lon": -73.9408370 }, + { "lat": 40.8513280, "lon": -73.9408902 }, + { "lat": 40.8513342, "lon": -73.9409474 }, + { "lat": 40.8513601, "lon": -73.9411264 }, + { "lat": 40.8513723, "lon": -73.9412123 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 181st Street", + "name_1": "W 181 St", + "name_2": "W 181st St", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base_1": "181", + "tiger:name_base_2": "181st", + "tiger:name_direction_prefix_1": "W", + "tiger:name_direction_prefix_2": "W", + "tiger:name_type_1": "St", + "tiger:name_type_2": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5670673, + "bounds": { + "minlat": 40.7379279, + "minlon": -73.9864141, + "maxlat": 40.7385416, + "maxlon": -73.9849582 + }, + "nodes": [ + 42437530, + 12181309692, + 9558740374, + 42438174, + 42438173 + ], + "geometry": [ + { "lat": 40.7379279, "lon": -73.9849582 }, + { "lat": 40.7381830, "lon": -73.9855644 }, + { "lat": 40.7381978, "lon": -73.9855995 }, + { "lat": 40.7382279, "lon": -73.9856739 }, + { "lat": 40.7385416, "lon": -73.9864141 } + ], + "tags": { + "alt_name": "East 21st Street", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Gramercy Park North", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9" + } +}, +{ + "type": "way", + "id": 5670675, + "bounds": { + "minlat": 40.8499048, + "minlon": -73.9340582, + "maxlat": 40.8510044, + "maxlon": -73.9314331 + }, + "nodes": [ + 13300404063, + 42438189, + 9566869997, + 5403873755, + 42433069, + 5403873751, + 8151650882, + 9550791874, + 13300404062 + ], + "geometry": [ + { "lat": 40.8499048, "lon": -73.9314331 }, + { "lat": 40.8499210, "lon": -73.9314720 }, + { "lat": 40.8499638, "lon": -73.9315736 }, + { "lat": 40.8504587, "lon": -73.9327487 }, + { "lat": 40.8505060, "lon": -73.9328610 }, + { "lat": 40.8505610, "lon": -73.9329929 }, + { "lat": 40.8507985, "lon": -73.9335636 }, + { "lat": 40.8509852, "lon": -73.9340121 }, + { "lat": 40.8510044, "lon": -73.9340582 } + ], + "tags": { + "alt_name": "Rafael A. Estevez Way", + "description": "This honorary intersection name memorializes Rafael A. Estevez", + "highway": "residential", + "historic": "memorial", + "name": "West 183rd Street", + "name_1": "West 183 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "183rd", + "tiger:name_base_1": "183", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5670676, + "bounds": { + "minlat": 40.8518944, + "minlon": -73.9378214, + "maxlat": 40.8521285, + "maxlon": -73.9369077 + }, + "nodes": [ + 42430953, + 12607365694, + 9563795433, + 42427196 + ], + "geometry": [ + { "lat": 40.8518944, "lon": -73.9369077 }, + { "lat": 40.8519119, "lon": -73.9369336 }, + { "lat": 40.8521026, "lon": -73.9377149 }, + { "lat": 40.8521285, "lon": -73.9378214 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 183rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "183rd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5670677, + "bounds": { + "minlat": 40.8176025, + "minlon": -73.9598117, + "maxlat": 40.8187841, + "maxlon": -73.9570440 + }, + "nodes": [ + 42428873, + 10128823992, + 10128660290, + 42438228 + ], + "geometry": [ + { "lat": 40.8176025, "lon": -73.9570440 }, + { "lat": 40.8176375, "lon": -73.9571260 }, + { "lat": 40.8187064, "lon": -73.9596296 }, + { "lat": 40.8187841, "lon": -73.9598117 } + ], + "tags": { + "highway": "residential", + "name": "West 131st Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670681, + "bounds": { + "minlat": 40.8158605, + "minlon": -73.9540766, + "maxlat": 40.8163558, + "maxlon": -73.9528655 + }, + "nodes": [ + 42438246, + 9150598858, + 9150598857, + 10170977528, + 9150598856, + 10171135917, + 42438247 + ], + "geometry": [ + { "lat": 40.8158605, "lon": -73.9528655 }, + { "lat": 40.8158688, "lon": -73.9529068 }, + { "lat": 40.8158828, "lon": -73.9529491 }, + { "lat": 40.8158879, "lon": -73.9529623 }, + { "lat": 40.8158957, "lon": -73.9529827 }, + { "lat": 40.8163098, "lon": -73.9539673 }, + { "lat": 40.8163558, "lon": -73.9540766 } + ], + "tags": { + "highway": "residential", + "name": "West 131st Street", + "name_1": "West 131 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670686, + "bounds": { + "minlat": 40.8171783, + "minlon": -73.9359497, + "maxlat": 40.8177958, + "maxlon": -73.9344659 + }, + "nodes": [ + 42438271, + 9166236603, + 9557110401, + 9166236597, + 42424235 + ], + "geometry": [ + { "lat": 40.8177958, "lon": -73.9359497 }, + { "lat": 40.8177569, "lon": -73.9358090 }, + { "lat": 40.8172206, "lon": -73.9345466 }, + { "lat": 40.8172018, "lon": -73.9345065 }, + { "lat": 40.8171783, "lon": -73.9344659 } + ], + "tags": { + "highway": "residential", + "name": "West 142nd Street", + "name_1": "West 142 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670688, + "bounds": { + "minlat": 40.8245675, + "minlon": -73.9536789, + "maxlat": 40.8253330, + "maxlon": -73.9519566 + }, + "nodes": [ + 6979088365, + 6979088366, + 10743657294, + 42428922 + ], + "geometry": [ + { "lat": 40.8253330, "lon": -73.9536789 }, + { "lat": 40.8252723, "lon": -73.9536150 }, + { "lat": 40.8246062, "lon": -73.9520476 }, + { "lat": 40.8245675, "lon": -73.9519566 } + ], + "tags": { + "highway": "residential", + "incline": "up", + "name": "West 142nd Street", + "name_1": "West 142 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "142nd", + "tiger:name_base_1": "142", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 5670694, + "bounds": { + "minlat": 40.7755748, + "minlon": -73.9901444, + "maxlat": 40.7768348, + "maxlon": -73.9891559 + }, + "nodes": [ + 595245925, + 10098621509, + 595250989, + 9170766746, + 9170766747, + 9900513533, + 595245859, + 9900513526, + 9170766748, + 9170766749, + 9243903031, + 42438300 + ], + "geometry": [ + { "lat": 40.7755748, "lon": -73.9901444 }, + { "lat": 40.7756389, "lon": -73.9900829 }, + { "lat": 40.7758536, "lon": -73.9898768 }, + { "lat": 40.7759497, "lon": -73.9897933 }, + { "lat": 40.7760569, "lon": -73.9897054 }, + { "lat": 40.7761174, "lon": -73.9896564 }, + { "lat": 40.7761698, "lon": -73.9896122 }, + { "lat": 40.7762279, "lon": -73.9895681 }, + { "lat": 40.7762588, "lon": -73.9895431 }, + { "lat": 40.7763802, "lon": -73.9894566 }, + { "lat": 40.7767528, "lon": -73.9892120 }, + { "lat": 40.7768348, "lon": -73.9891559 } + ], + "tags": { + "covered": "no", + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Riverside Boulevard", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670701, + "bounds": { + "minlat": 40.7329862, + "minlon": -73.9754466, + "maxlat": 40.7330899, + "maxlon": -73.9753702 + }, + "nodes": [ + 42438362, + 685164636 + ], + "geometry": [ + { "lat": 40.7330899, "lon": -73.9753702 }, + { "lat": 40.7329862, "lon": -73.9754466 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "20th Street Loop", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670703, + "bounds": { + "minlat": 40.7083786, + "minlon": -74.0008364, + "maxlat": 40.7087864, + "maxlon": -74.0004937 + }, + "nodes": [ + 5378284711, + 5378284707, + 11543856237, + 5378284709, + 42438471 + ], + "geometry": [ + { "lat": 40.7087864, "lon": -74.0008364 }, + { "lat": 40.7087376, "lon": -74.0007764 }, + { "lat": 40.7086975, "lon": -74.0007373 }, + { "lat": 40.7086583, "lon": -74.0007024 }, + { "lat": 40.7083786, "lon": -74.0004937 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Dover Street", + "name:etymology:wikidata": "Q179224", + "name:ko": "도버 스트리트", + "oneway": "yes", + "oneway:bicycle": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670707, + "bounds": { + "minlat": 40.7720762, + "minlon": -73.9632228, + "maxlat": 40.7776743, + "maxlon": -73.9499354 + }, + "nodes": [ + 42438485, + 3341915091, + 10156669030, + 42438487, + 10156669027, + 9563518596, + 596776083, + 42438490, + 9563518601, + 5375821999, + 10125087300, + 42438498, + 10125087299, + 10170793852, + 42438503, + 10170793856, + 13701356250, + 13701334567, + 8250715774, + 42438506, + 6176390180, + 8250715779, + 13713862163, + 9001600168, + 6691104515, + 6263083510, + 42438509, + 6691104517, + 8996371851, + 6691104522, + 42428022 + ], + "geometry": [ + { "lat": 40.7776743, "lon": -73.9632228 }, + { "lat": 40.7776356, "lon": -73.9631319 }, + { "lat": 40.7770525, "lon": -73.9617512 }, + { "lat": 40.7770011, "lon": -73.9616294 }, + { "lat": 40.7769554, "lon": -73.9615204 }, + { "lat": 40.7764127, "lon": -73.9602232 }, + { "lat": 40.7763680, "lon": -73.9601147 }, + { "lat": 40.7762910, "lon": -73.9599345 }, + { "lat": 40.7762452, "lon": -73.9598279 }, + { "lat": 40.7759054, "lon": -73.9590141 }, + { "lat": 40.7756903, "lon": -73.9585063 }, + { "lat": 40.7756450, "lon": -73.9583993 }, + { "lat": 40.7756008, "lon": -73.9582944 }, + { "lat": 40.7750281, "lon": -73.9569376 }, + { "lat": 40.7749679, "lon": -73.9567951 }, + { "lat": 40.7749114, "lon": -73.9566621 }, + { "lat": 40.7742434, "lon": -73.9550942 }, + { "lat": 40.7741715, "lon": -73.9549253 }, + { "lat": 40.7740701, "lon": -73.9546872 }, + { "lat": 40.7740206, "lon": -73.9545699 }, + { "lat": 40.7739844, "lon": -73.9544836 }, + { "lat": 40.7739624, "lon": -73.9544327 }, + { "lat": 40.7732848, "lon": -73.9528037 }, + { "lat": 40.7732379, "lon": -73.9526857 }, + { "lat": 40.7730883, "lon": -73.9523249 }, + { "lat": 40.7730723, "lon": -73.9522882 }, + { "lat": 40.7730268, "lon": -73.9521805 }, + { "lat": 40.7729689, "lon": -73.9520528 }, + { "lat": 40.7728341, "lon": -73.9517381 }, + { "lat": 40.7721324, "lon": -73.9500658 }, + { "lat": 40.7720762, "lon": -73.9499354 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 80th Street", + "name:ru": "Восточная 80-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670709, + "bounds": { + "minlat": 40.7133804, + "minlon": -73.9851117, + "maxlat": 40.7138032, + "maxlon": -73.9850499 + }, + "nodes": [ + 42435931, + 7196107837, + 5804425622, + 11038072187, + 11038072188, + 588455701 + ], + "geometry": [ + { "lat": 40.7138032, "lon": -73.9850499 }, + { "lat": 40.7137267, "lon": -73.9850681 }, + { "lat": 40.7136058, "lon": -73.9850889 }, + { "lat": 40.7135196, "lon": -73.9850968 }, + { "lat": 40.7134326, "lon": -73.9851040 }, + { "lat": 40.7133804, "lon": -73.9851117 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "foot": "use_sidepath", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Montgomery Street", + "name:etymology:wikidata": "Q444947", + "name:ko": "몽고메리 스트리트", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670711, + "bounds": { + "minlat": 40.7137882, + "minlon": -73.9853265, + "maxlat": 40.7144708, + "maxlon": -73.9852253 + }, + "nodes": [ + 42433553, + 7196135023, + 7179988086, + 588455700 + ], + "geometry": [ + { "lat": 40.7144708, "lon": -73.9853265 }, + { "lat": 40.7143845, "lon": -73.9853129 }, + { "lat": 40.7138646, "lon": -73.9852378 }, + { "lat": 40.7137882, "lon": -73.9852253 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Montgomery Street", + "name:etymology:wikidata": "Q444947", + "name:ko": "몽고메리 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 5670719, + "bounds": { + "minlat": 40.7496585, + "minlon": -74.0007230, + "maxlat": 40.7503428, + "maxlon": -73.9990646 + }, + "nodes": [ + 4890040961, + 12152894794, + 5122551883, + 42438672 + ], + "geometry": [ + { "lat": 40.7503428, "lon": -74.0007230 }, + { "lat": 40.7497232, "lon": -73.9992397 }, + { "lat": 40.7496973, "lon": -73.9991776 }, + { "lat": 40.7496585, "lon": -73.9990646 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 28th Street", + "name:ru": "Западная 28-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670728, + "bounds": { + "minlat": 40.7204519, + "minlon": -74.0059597, + "maxlat": 40.7216498, + "maxlon": -74.0057456 + }, + "nodes": [ + 11493357443, + 11492801353, + 42438779, + 11492801352, + 11492801326 + ], + "geometry": [ + { "lat": 40.7204519, "lon": -74.0059597 }, + { "lat": 40.7210389, "lon": -74.0058531 }, + { "lat": 40.7210691, "lon": -74.0058479 }, + { "lat": 40.7211390, "lon": -74.0058356 }, + { "lat": 40.7216498, "lon": -74.0057456 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Saint John's Lane", + "name:etymology:wikidata": "Q2957049", + "name:ko": "세인트 존스 레인", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5670731, + "bounds": { + "minlat": 40.7365119, + "minlon": -73.9907749, + "maxlat": 40.7371273, + "maxlon": -73.9903374 + }, + "nodes": [ + 42428170, + 8429207445, + 3875000767, + 5148103560, + 42438785 + ], + "geometry": [ + { "lat": 40.7371273, "lon": -73.9903374 }, + { "lat": 40.7370868, "lon": -73.9903625 }, + { "lat": 40.7370541, "lon": -73.9903858 }, + { "lat": 40.7365971, "lon": -73.9907181 }, + { "lat": 40.7365119, "lon": -73.9907749 } + ], + "tags": { + "bicycle": "designated", + "emergency": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Union Square West", + "note": "Motor vehicles banned as of summer 2019", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 5670733, + "bounds": { + "minlat": 40.7665323, + "minlon": -73.9514025, + "maxlat": 40.7667452, + "maxlon": -73.9510157 + }, + "nodes": [ + 596799891, + 3785448865, + 2868745711, + 9906953422, + 2868745710, + 2868745709, + 2868745708, + 2868745706, + 2868745705, + 9906953423, + 3785448866, + 3785448867, + 3785448869, + 42427036 + ], + "geometry": [ + { "lat": 40.7667452, "lon": -73.9514025 }, + { "lat": 40.7667271, "lon": -73.9513523 }, + { "lat": 40.7667181, "lon": -73.9513148 }, + { "lat": 40.7667123, "lon": -73.9512712 }, + { "lat": 40.7667067, "lon": -73.9512333 }, + { "lat": 40.7666980, "lon": -73.9511901 }, + { "lat": 40.7666861, "lon": -73.9511453 }, + { "lat": 40.7666699, "lon": -73.9511058 }, + { "lat": 40.7666468, "lon": -73.9510699 }, + { "lat": 40.7666249, "lon": -73.9510479 }, + { "lat": 40.7666023, "lon": -73.9510353 }, + { "lat": 40.7665799, "lon": -73.9510265 }, + { "lat": 40.7665612, "lon": -73.9510202 }, + { "lat": 40.7665323, "lon": -73.9510157 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 73rd Street", + "name:ru": "Восточная 73-я стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670734, + "bounds": { + "minlat": 40.7765109, + "minlon": -73.9883936, + "maxlat": 40.7791875, + "maxlon": -73.9871067 + }, + "nodes": [ + 42438819, + 9900507017, + 10742000956, + 5117745451, + 9374781628, + 42437841, + 42438825, + 8528686523, + 9374838667, + 42438832 + ], + "geometry": [ + { "lat": 40.7765109, "lon": -73.9883936 }, + { "lat": 40.7765956, "lon": -73.9883512 }, + { "lat": 40.7769749, "lon": -73.9881660 }, + { "lat": 40.7771123, "lon": -73.9880982 }, + { "lat": 40.7772166, "lon": -73.9880495 }, + { "lat": 40.7778454, "lon": -73.9877555 }, + { "lat": 40.7785248, "lon": -73.9874323 }, + { "lat": 40.7790149, "lon": -73.9871932 }, + { "lat": 40.7790754, "lon": -73.9871628 }, + { "lat": 40.7791875, "lon": -73.9871067 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Freedom Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670735, + "bounds": { + "minlat": 40.8183904, + "minlon": -73.9522115, + "maxlat": 40.8189320, + "maxlon": -73.9508662 + }, + "nodes": [ + 42438836, + 7260975619, + 7260975613, + 2505004937, + 8835729528, + 5487817597, + 10171129698, + 42438839 + ], + "geometry": [ + { "lat": 40.8189320, "lon": -73.9522115 }, + { "lat": 40.8189245, "lon": -73.9521711 }, + { "lat": 40.8189152, "lon": -73.9521335 }, + { "lat": 40.8189042, "lon": -73.9520996 }, + { "lat": 40.8188937, "lon": -73.9520740 }, + { "lat": 40.8187716, "lon": -73.9517728 }, + { "lat": 40.8184364, "lon": -73.9509760 }, + { "lat": 40.8183904, "lon": -73.9508662 } + ], + "tags": { + "highway": "tertiary", + "name": "West 135th Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5670736, + "bounds": { + "minlat": 40.7371496, + "minlon": -73.9868475, + "maxlat": 40.7379458, + "maxlon": -73.9849577 + }, + "nodes": [ + 42438849, + 12181309644, + 9558740375, + 42434360, + 7937421625, + 42437529, + 246539423 + ], + "geometry": [ + { "lat": 40.7379458, "lon": -73.9868475 }, + { "lat": 40.7376991, "lon": -73.9862582 }, + { "lat": 40.7376724, "lon": -73.9861979 }, + { "lat": 40.7376390, "lon": -73.9861202 }, + { "lat": 40.7376018, "lon": -73.9860348 }, + { "lat": 40.7373284, "lon": -73.9853903 }, + { "lat": 40.7371496, "lon": -73.9849577 } + ], + "tags": { + "alt_name": "East 20th Street", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Gramercy Park South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "8.5" + } +}, +{ + "type": "way", + "id": 5670738, + "bounds": { + "minlat": 40.7794865, + "minlon": -73.9764438, + "maxlat": 40.7806719, + "maxlon": -73.9735934 + }, + "nodes": [ + 42424225, + 7104619478, + 9915560879, + 3916376283, + 3916376281, + 9915560880, + 3718672431, + 42438859 + ], + "geometry": [ + { "lat": 40.7794865, "lon": -73.9735934 }, + { "lat": 40.7795440, "lon": -73.9737066 }, + { "lat": 40.7795587, "lon": -73.9737424 }, + { "lat": 40.7799769, "lon": -73.9747351 }, + { "lat": 40.7801899, "lon": -73.9752452 }, + { "lat": 40.7806159, "lon": -73.9762556 }, + { "lat": 40.7806322, "lon": -73.9762958 }, + { "lat": 40.7806719, "lon": -73.9764438 } + ], + "tags": { + "alt_name": "Richard Gilder Way", + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 77th Street", + "name:ru": "Западная 77-я стрит", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670742, + "bounds": { + "minlat": 40.8057865, + "minlon": -73.9493541, + "maxlat": 40.8077005, + "maxlon": -73.9448050 + }, + "nodes": [ + 42438906, + 11296130434, + 10170875063, + 42438908, + 3099326119, + 10170875067, + 8758345333, + 2141026538, + 42438913 + ], + "geometry": [ + { "lat": 40.8057865, "lon": -73.9448050 }, + { "lat": 40.8058277, "lon": -73.9449036 }, + { "lat": 40.8064032, "lon": -73.9462799 }, + { "lat": 40.8064396, "lon": -73.9463669 }, + { "lat": 40.8065066, "lon": -73.9465260 }, + { "lat": 40.8065439, "lon": -73.9466143 }, + { "lat": 40.8075904, "lon": -73.9490925 }, + { "lat": 40.8076346, "lon": -73.9491964 }, + { "lat": 40.8077005, "lon": -73.9493541 } + ], + "tags": { + "highway": "residential", + "name": "West 123rd Street", + "name_1": "West 123 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670744, + "bounds": { + "minlat": 40.8756987, + "minlon": -73.9115565, + "maxlat": 40.8769697, + "maxlon": -73.9100757 + }, + "nodes": [ + 42438935, + 10868090832, + 1545097374, + 1545097361, + 1545097261, + 1545097322, + 1545097217, + 1545097400, + 1545097445, + 1545097299, + 1545097208, + 1545097446, + 1545097347, + 1545097238, + 1545097449, + 42437834 + ], + "geometry": [ + { "lat": 40.8769697, "lon": -73.9100757 }, + { "lat": 40.8769242, "lon": -73.9101356 }, + { "lat": 40.8765862, "lon": -73.9105793 }, + { "lat": 40.8765667, "lon": -73.9106370 }, + { "lat": 40.8765585, "lon": -73.9106981 }, + { "lat": 40.8765571, "lon": -73.9107442 }, + { "lat": 40.8765506, "lon": -73.9108154 }, + { "lat": 40.8765308, "lon": -73.9108802 }, + { "lat": 40.8765020, "lon": -73.9109446 }, + { "lat": 40.8761042, "lon": -73.9114565 }, + { "lat": 40.8760427, "lon": -73.9115150 }, + { "lat": 40.8759748, "lon": -73.9115430 }, + { "lat": 40.8759077, "lon": -73.9115565 }, + { "lat": 40.8758470, "lon": -73.9115510 }, + { "lat": 40.8757790, "lon": -73.9115310 }, + { "lat": 40.8756987, "lon": -73.9114590 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Van Corlear Place", + "name:etymology:wikidata": "Q1967194", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Van Corlear", + "tiger:name_type": "Pl", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5670747, + "bounds": { + "minlat": 40.7883857, + "minlon": -73.9486102, + "maxlat": 40.7890610, + "maxlon": -73.9469991 + }, + "nodes": [ + 42438953, + 6190263584, + 7779533925, + 42438949 + ], + "geometry": [ + { "lat": 40.7883857, "lon": -73.9469991 }, + { "lat": 40.7884415, "lon": -73.9471407 }, + { "lat": 40.7890204, "lon": -73.9485180 }, + { "lat": 40.7890610, "lon": -73.9486102 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "East 101st Street", + "name:ru": "Восточная 101-я стрит", + "name_1": "East 101 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670748, + "bounds": { + "minlat": 40.7904162, + "minlon": -73.9534411, + "maxlat": 40.7910863, + "maxlon": -73.9518390 + }, + "nodes": [ + 42438963, + 6254630471, + 6029892037, + 5481897031, + 3982139315, + 7089698649, + 42438961 + ], + "geometry": [ + { "lat": 40.7904162, "lon": -73.9518390 }, + { "lat": 40.7904633, "lon": -73.9519535 }, + { "lat": 40.7906201, "lon": -73.9523219 }, + { "lat": 40.7907291, "lon": -73.9525812 }, + { "lat": 40.7909092, "lon": -73.9530148 }, + { "lat": 40.7910508, "lon": -73.9533444 }, + { "lat": 40.7910863, "lon": -73.9534411 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "name": "East 101st Street", + "name:ru": "Восточная 101-я стрит", + "name_1": "East 101 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670749, + "bounds": { + "minlat": 40.7864380, + "minlon": -73.9447838, + "maxlat": 40.7874477, + "maxlon": -73.9423950 + }, + "nodes": [ + 42438973, + 6190264226, + 6190264265, + 6190264221, + 6175905221, + 42438971 + ], + "geometry": [ + { "lat": 40.7864380, "lon": -73.9423950 }, + { "lat": 40.7864823, "lon": -73.9425000 }, + { "lat": 40.7864995, "lon": -73.9425407 }, + { "lat": 40.7873866, "lon": -73.9446393 }, + { "lat": 40.7874045, "lon": -73.9446817 }, + { "lat": 40.7874477, "lon": -73.9447838 } + ], + "tags": { + "highway": "residential", + "name": "East 101st Street", + "name:ru": "Восточная 101-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670751, + "bounds": { + "minlat": 40.8069238, + "minlon": -73.9370575, + "maxlat": 40.8075512, + "maxlon": -73.9355669 + }, + "nodes": [ + 42424757, + 10122952960, + 5481922046, + 10169396616, + 589928033 + ], + "geometry": [ + { "lat": 40.8069238, "lon": -73.9355669 }, + { "lat": 40.8069633, "lon": -73.9356601 }, + { "lat": 40.8073623, "lon": -73.9366040 }, + { "lat": 40.8075223, "lon": -73.9369879 }, + { "lat": 40.8075512, "lon": -73.9370575 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 129th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670756, + "bounds": { + "minlat": 40.7295617, + "minlon": -73.9803596, + "maxlat": 40.7310855, + "maxlon": -73.9777250 + }, + "nodes": [ + 42439006, + 4298757048, + 595655124, + 4161568369, + 3236082420, + 3236082422, + 247405047, + 3236082425, + 5785245998, + 42439010, + 8429307327, + 3236082428, + 3360773001, + 387185110, + 3236082430, + 3236082431, + 8575732686, + 247405048, + 8575732683, + 387185086, + 3236082429, + 7144880693, + 3236082427, + 247405049, + 3236082424, + 7144880695, + 387185109, + 42438998, + 3236082419, + 387185112, + 3236082416, + 387185113, + 8429307328, + 3236082412, + 5785246005, + 247405051, + 3236082411, + 3236082410, + 247405052, + 4298757016, + 595655123 + ], + "geometry": [ + { "lat": 40.7304142, "lon": -73.9803596 }, + { "lat": 40.7304953, "lon": -73.9803054 }, + { "lat": 40.7305456, "lon": -73.9802717 }, + { "lat": 40.7305918, "lon": -73.9802408 }, + { "lat": 40.7306999, "lon": -73.9801552 }, + { "lat": 40.7307570, "lon": -73.9800975 }, + { "lat": 40.7308359, "lon": -73.9799853 }, + { "lat": 40.7309072, "lon": -73.9798608 }, + { "lat": 40.7309490, "lon": -73.9797725 }, + { "lat": 40.7309752, "lon": -73.9797172 }, + { "lat": 40.7309939, "lon": -73.9796642 }, + { "lat": 40.7310205, "lon": -73.9795887 }, + { "lat": 40.7310332, "lon": -73.9795345 }, + { "lat": 40.7310538, "lon": -73.9794462 }, + { "lat": 40.7310754, "lon": -73.9793061 }, + { "lat": 40.7310855, "lon": -73.9791478 }, + { "lat": 40.7310851, "lon": -73.9790637 }, + { "lat": 40.7310849, "lon": -73.9790098 }, + { "lat": 40.7310817, "lon": -73.9789789 }, + { "lat": 40.7310697, "lon": -73.9788632 }, + { "lat": 40.7310395, "lon": -73.9787396 }, + { "lat": 40.7310344, "lon": -73.9787226 }, + { "lat": 40.7310036, "lon": -73.9786212 }, + { "lat": 40.7309371, "lon": -73.9784296 }, + { "lat": 40.7308837, "lon": -73.9783032 }, + { "lat": 40.7308234, "lon": -73.9781825 }, + { "lat": 40.7308117, "lon": -73.9781591 }, + { "lat": 40.7307114, "lon": -73.9780270 }, + { "lat": 40.7306079, "lon": -73.9779319 }, + { "lat": 40.7304774, "lon": -73.9778442 }, + { "lat": 40.7303636, "lon": -73.9777884 }, + { "lat": 40.7302553, "lon": -73.9777545 }, + { "lat": 40.7301778, "lon": -73.9777412 }, + { "lat": 40.7301169, "lon": -73.9777307 }, + { "lat": 40.7300795, "lon": -73.9777288 }, + { "lat": 40.7300067, "lon": -73.9777250 }, + { "lat": 40.7299432, "lon": -73.9777307 }, + { "lat": 40.7298681, "lon": -73.9777455 }, + { "lat": 40.7297654, "lon": -73.9777928 }, + { "lat": 40.7296112, "lon": -73.9779045 }, + { "lat": 40.7295617, "lon": -73.9779380 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "14th Street Loop", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670759, + "bounds": { + "minlat": 40.8213042, + "minlon": -73.9579208, + "maxlat": 40.8231276, + "maxlon": -73.9563100 + }, + "nodes": [ + 595338201, + 10129054166, + 10129054164, + 12005920173, + 10129054167, + 2383895311 + ], + "geometry": [ + { "lat": 40.8231276, "lon": -73.9563100 }, + { "lat": 40.8223746, "lon": -73.9570127 }, + { "lat": 40.8217098, "lon": -73.9574718 }, + { "lat": 40.8213825, "lon": -73.9577232 }, + { "lat": 40.8213042, "lon": -73.9577833 }, + { "lat": 40.8213327, "lon": -73.9579208 } + ], + "tags": { + "description": "I do not know the incline percentage but this is seriously downhill.", + "highway": "residential", + "incline": "down", + "name": "12th Avenue", + "oneway": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 5670762, + "bounds": { + "minlat": 40.8598980, + "minlon": -73.9212428, + "maxlat": 40.8604936, + "maxlon": -73.9198460 + }, + "nodes": [ + 42439065, + 9561557610, + 42432722 + ], + "geometry": [ + { "lat": 40.8604936, "lon": -73.9212428 }, + { "lat": 40.8599340, "lon": -73.9199306 }, + { "lat": 40.8598980, "lon": -73.9198460 } + ], + "tags": { + "highway": "residential", + "name": "West 201st Street", + "name_1": "West 201 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "201st", + "tiger:name_base_1": "201", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5670765, + "bounds": { + "minlat": 40.8194940, + "minlon": -73.9345517, + "maxlat": 40.8197371, + "maxlon": -73.9336744 + }, + "nodes": [ + 42439115, + 9166288603, + 1669480025, + 9903127427, + 7732264907, + 7732264906, + 1669480021, + 9903127426, + 373850905, + 7732264909, + 1669480023, + 42434243 + ], + "geometry": [ + { "lat": 40.8194940, "lon": -73.9336744 }, + { "lat": 40.8194945, "lon": -73.9337279 }, + { "lat": 40.8194969, "lon": -73.9337849 }, + { "lat": 40.8195014, "lon": -73.9338404 }, + { "lat": 40.8195093, "lon": -73.9339030 }, + { "lat": 40.8195198, "lon": -73.9339667 }, + { "lat": 40.8195339, "lon": -73.9340301 }, + { "lat": 40.8195503, "lon": -73.9340892 }, + { "lat": 40.8195695, "lon": -73.9341490 }, + { "lat": 40.8195903, "lon": -73.9342040 }, + { "lat": 40.8196143, "lon": -73.9342626 }, + { "lat": 40.8197371, "lon": -73.9345517 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "145th Street Bridge", + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "layer": "2", + "maxspeed": "25 mph", + "name": "145th Street Bridge", + "oneway": "no", + "sidewalk": "separate", + "wikidata": "Q4549789", + "wikipedia": "en:145th Street Bridge" + } +}, +{ + "type": "way", + "id": 5670768, + "bounds": { + "minlat": 40.8760338, + "minlon": -73.9135650, + "maxlat": 40.8765727, + "maxlon": -73.9129056 + }, + "nodes": [ + 13471668964, + 10868090826, + 42439164 + ], + "geometry": [ + { "lat": 40.8765727, "lon": -73.9129056 }, + { "lat": 40.8765323, "lon": -73.9129550 }, + { "lat": 40.8760338, "lon": -73.9135650 } + ], + "tags": { + "highway": "residential", + "name": "Teunissen Place", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Teunissen", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5670770, + "bounds": { + "minlat": 40.7369675, + "minlon": -73.9849577, + "maxlat": 40.7371496, + "maxlon": -73.9845133 + }, + "nodes": [ + 246539423, + 12181309640, + 12181309641, + 4132605207, + 42439170 + ], + "geometry": [ + { "lat": 40.7371496, "lon": -73.9849577 }, + { "lat": 40.7370534, "lon": -73.9847287 }, + { "lat": 40.7370381, "lon": -73.9846923 }, + { "lat": 40.7370228, "lon": -73.9846559 }, + { "lat": 40.7369675, "lon": -73.9845133 } + ], + "tags": { + "alt_name": "Gramercy Park South", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "8.5" + } +}, +{ + "type": "way", + "id": 5670771, + "bounds": { + "minlat": 40.7391688, + "minlon": -73.9909614, + "maxlat": 40.7396764, + "maxlon": -73.9897506 + }, + "nodes": [ + 42427369, + 7781127797, + 12181309651, + 12181309652, + 8569048158, + 42428183 + ], + "geometry": [ + { "lat": 40.7396764, "lon": -73.9909614 }, + { "lat": 40.7396206, "lon": -73.9908325 }, + { "lat": 40.7392549, "lon": -73.9899570 }, + { "lat": 40.7392410, "lon": -73.9899236 }, + { "lat": 40.7392164, "lon": -73.9898644 }, + { "lat": 40.7391688, "lon": -73.9897506 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "8.5" + } +}, +{ + "type": "way", + "id": 5670773, + "bounds": { + "minlat": 40.7195928, + "minlon": -73.9980860, + "maxlat": 40.7207124, + "maxlon": -73.9973444 + }, + "nodes": [ + 42432171, + 8307641669, + 13293918861, + 5805243783, + 8307641660, + 42439207 + ], + "geometry": [ + { "lat": 40.7207124, "lon": -73.9973444 }, + { "lat": 40.7206459, "lon": -73.9973865 }, + { "lat": 40.7205207, "lon": -73.9974657 }, + { "lat": 40.7196868, "lon": -73.9979878 }, + { "lat": 40.7196402, "lon": -73.9980171 }, + { "lat": 40.7195928, "lon": -73.9980860 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Centre Market Place", + "name:ko": "센터 마켓 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5062285", + "wikipedia": "en:Centre Market Place" + } +}, +{ + "type": "way", + "id": 5670774, + "bounds": { + "minlat": 40.8259560, + "minlon": -73.9504477, + "maxlat": 40.8289475, + "maxlon": -73.9433570 + }, + "nodes": [ + 42439216, + 12952282878, + 11193743284, + 11193722995, + 42428939, + 561035364, + 11218879842, + 11218879847, + 42439213, + 11218879844, + 11218864385, + 42439210, + 11218864382, + 11221649571, + 42432970 + ], + "geometry": [ + { "lat": 40.8289475, "lon": -73.9504477 }, + { "lat": 40.8289116, "lon": -73.9503631 }, + { "lat": 40.8288738, "lon": -73.9502743 }, + { "lat": 40.8284356, "lon": -73.9492404 }, + { "lat": 40.8284002, "lon": -73.9491568 }, + { "lat": 40.8283196, "lon": -73.9489611 }, + { "lat": 40.8282764, "lon": -73.9488587 }, + { "lat": 40.8272148, "lon": -73.9463406 }, + { "lat": 40.8271519, "lon": -73.9461917 }, + { "lat": 40.8271075, "lon": -73.9460867 }, + { "lat": 40.8266103, "lon": -73.9449142 }, + { "lat": 40.8265704, "lon": -73.9448200 }, + { "lat": 40.8265353, "lon": -73.9447365 }, + { "lat": 40.8260188, "lon": -73.9435065 }, + { "lat": 40.8259560, "lon": -73.9433570 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 148th Street", + "name_1": "West 148 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "148th", + "tiger:name_base_1": "148", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 5670776, + "bounds": { + "minlat": 40.8235986, + "minlon": -73.9415007, + "maxlat": 40.8251715, + "maxlon": -73.9377556 + }, + "nodes": [ + 42439228, + 11218357985, + 8008242744, + 42435876, + 8008242741, + 7229615769, + 9150629560, + 42439225 + ], + "geometry": [ + { "lat": 40.8251715, "lon": -73.9415007 }, + { "lat": 40.8251413, "lon": -73.9414290 }, + { "lat": 40.8248149, "lon": -73.9406532 }, + { "lat": 40.8247570, "lon": -73.9405150 }, + { "lat": 40.8247049, "lon": -73.9403908 }, + { "lat": 40.8245480, "lon": -73.9400167 }, + { "lat": 40.8236469, "lon": -73.9378678 }, + { "lat": 40.8235986, "lon": -73.9377556 } + ], + "tags": { + "highway": "residential", + "name": "West 148th Street", + "name_1": "West 148 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "148th", + "tiger:name_base_1": "148", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 5670778, + "bounds": { + "minlat": 40.7379458, + "minlon": -73.9868475, + "maxlat": 40.7385416, + "maxlon": -73.9864141 + }, + "nodes": [ + 42438173, + 9558740371, + 246539424, + 9558740372, + 42438849 + ], + "geometry": [ + { "lat": 40.7385416, "lon": -73.9864141 }, + { "lat": 40.7384842, "lon": -73.9864566 }, + { "lat": 40.7380480, "lon": -73.9867731 }, + { "lat": 40.7380040, "lon": -73.9868053 }, + { "lat": 40.7379458, "lon": -73.9868475 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Gramercy Park West", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "8.5" + } +}, +{ + "type": "way", + "id": 5670782, + "bounds": { + "minlat": 40.7295679, + "minlon": -73.9900935, + "maxlat": 40.7296621, + "maxlon": -73.9899050 + }, + "nodes": [ + 595407639, + 12179562773, + 3919350751, + 42434140 + ], + "geometry": [ + { "lat": 40.7296621, "lon": -73.9900935 }, + { "lat": 40.7296492, "lon": -73.9900600 }, + { "lat": 40.7296362, "lon": -73.9900322 }, + { "lat": 40.7295679, "lon": -73.9899050 } + ], + "tags": { + "alt_name": "East 8th Street", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Astor Place", + "name:etymology:wikidata": "Q57423", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592990", + "wikipedia": "en:Astor Place" + } +}, +{ + "type": "way", + "id": 5670785, + "bounds": { + "minlat": 40.7379242, + "minlon": -73.9954460, + "maxlat": 40.7392720, + "maxlon": -73.9922478 + }, + "nodes": [ + 42439272, + 8429175896, + 5481850676, + 9683231651, + 42430259 + ], + "geometry": [ + { "lat": 40.7379242, "lon": -73.9922478 }, + { "lat": 40.7379687, "lon": -73.9923540 }, + { "lat": 40.7387808, "lon": -73.9942821 }, + { "lat": 40.7392221, "lon": -73.9953276 }, + { "lat": 40.7392720, "lon": -73.9954460 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 17th Street", + "name:ru": "Западная 17-я стрит", + "name_1": "West 17 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670787, + "bounds": { + "minlat": 40.7321942, + "minlon": -73.9814480, + "maxlat": 40.7337515, + "maxlon": -73.9795627 + }, + "nodes": [ + 685164633, + 4298757037, + 10990454351, + 3236082452, + 3236082450, + 247405189, + 3236082449, + 3236082448, + 387185035, + 3236082446, + 42439304, + 7144880509, + 3236082443, + 247405190, + 387185036, + 247405191, + 7144880540, + 42439308, + 3236082440, + 387185037, + 3236082438, + 3360773023, + 247405192, + 3236082439, + 247405053, + 10990454350, + 4298757010, + 685164631 + ], + "geometry": [ + { "lat": 40.7337515, "lon": -73.9806008 }, + { "lat": 40.7337205, "lon": -73.9805379 }, + { "lat": 40.7335002, "lon": -73.9800097 }, + { "lat": 40.7334028, "lon": -73.9797763 }, + { "lat": 40.7333621, "lon": -73.9797005 }, + { "lat": 40.7332955, "lon": -73.9796226 }, + { "lat": 40.7332148, "lon": -73.9795796 }, + { "lat": 40.7331309, "lon": -73.9795627 }, + { "lat": 40.7330411, "lon": -73.9795691 }, + { "lat": 40.7329485, "lon": -73.9795932 }, + { "lat": 40.7328479, "lon": -73.9796284 }, + { "lat": 40.7328401, "lon": -73.9796321 }, + { "lat": 40.7327653, "lon": -73.9796678 }, + { "lat": 40.7326840, "lon": -73.9797142 }, + { "lat": 40.7325500, "lon": -73.9798111 }, + { "lat": 40.7324151, "lon": -73.9799248 }, + { "lat": 40.7323460, "lon": -73.9799990 }, + { "lat": 40.7323253, "lon": -73.9800213 }, + { "lat": 40.7322528, "lon": -73.9801483 }, + { "lat": 40.7322219, "lon": -73.9802445 }, + { "lat": 40.7322003, "lon": -73.9803559 }, + { "lat": 40.7321973, "lon": -73.9804087 }, + { "lat": 40.7321942, "lon": -73.9804644 }, + { "lat": 40.7322108, "lon": -73.9805834 }, + { "lat": 40.7322684, "lon": -73.9807415 }, + { "lat": 40.7323237, "lon": -73.9808661 }, + { "lat": 40.7325505, "lon": -73.9813769 }, + { "lat": 40.7325841, "lon": -73.9814480 } + ], + "tags": { + "alt_name": "1st Avenue Loop", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "First Avenue Loop", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670792, + "bounds": { + "minlat": 40.7268704, + "minlon": -74.0034450, + "maxlat": 40.7269580, + "maxlon": -74.0031066 + }, + "nodes": [ + 42439335, + 42439337, + 42439340, + 8231934390, + 42439343, + 42430164 + ], + "geometry": [ + { "lat": 40.7268704, "lon": -74.0031066 }, + { "lat": 40.7269160, "lon": -74.0032010 }, + { "lat": 40.7269410, "lon": -74.0032780 }, + { "lat": 40.7269425, "lon": -74.0032898 }, + { "lat": 40.7269534, "lon": -74.0033735 }, + { "lat": 40.7269580, "lon": -74.0034450 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Charlton Street", + "name:ko": "찰튼 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670793, + "bounds": { + "minlat": 40.8386680, + "minlon": -73.9366500, + "maxlat": 40.8404757, + "maxlon": -73.9353154 + }, + "nodes": [ + 42432220, + 6836035771, + 6836035770, + 42439362, + 6836035809, + 7675910666, + 2075592672, + 6836035768, + 42435197 + ], + "geometry": [ + { "lat": 40.8386680, "lon": -73.9366500 }, + { "lat": 40.8387468, "lon": -73.9365898 }, + { "lat": 40.8394134, "lon": -73.9360928 }, + { "lat": 40.8394840, "lon": -73.9360400 }, + { "lat": 40.8395681, "lon": -73.9359795 }, + { "lat": 40.8402235, "lon": -73.9355081 }, + { "lat": 40.8403255, "lon": -73.9354348 }, + { "lat": 40.8403860, "lon": -73.9353862 }, + { "lat": 40.8404757, "lon": -73.9353154 } + ], + "tags": { + "highway": "residential", + "name": "Jumel Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670795, + "bounds": { + "minlat": 40.7751542, + "minlon": -73.9452696, + "maxlat": 40.7755840, + "maxlon": -73.9449540 + }, + "nodes": [ + 42429346, + 7834030794, + 42439384 + ], + "geometry": [ + { "lat": 40.7751542, "lon": -73.9452696 }, + { "lat": 40.7752506, "lon": -73.9451995 }, + { "lat": 40.7755840, "lon": -73.9449540 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Henderson Place", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Henderson", + "tiger:name_type": "Pl", + "tiger:reviewed": "name", + "tiger:zip_left": "10028", + "tiger:zip_right": "10028" + } +}, +{ + "type": "way", + "id": 5670797, + "bounds": { + "minlat": 40.7723510, + "minlon": -73.9622984, + "maxlat": 40.7789465, + "maxlon": -73.9466560 + }, + "nodes": [ + 42439389, + 3341858523, + 3341917065, + 42439392, + 3341917066, + 3341912573, + 596776127, + 42439395, + 3341912575, + 10125087292, + 42439399, + 10125087291, + 10156669104, + 42439403, + 10156669101, + 8250715793, + 42439406, + 6176390176, + 8250715780, + 12345178389, + 6691104507, + 6263083525, + 42439409, + 6691104508, + 12345178387, + 12345178388, + 7834024328, + 42428027, + 7834024323, + 7135164278, + 42439416 + ], + "geometry": [ + { "lat": 40.7789465, "lon": -73.9622984 }, + { "lat": 40.7789129, "lon": -73.9622220 }, + { "lat": 40.7783182, "lon": -73.9608112 }, + { "lat": 40.7782718, "lon": -73.9607012 }, + { "lat": 40.7782261, "lon": -73.9605930 }, + { "lat": 40.7776799, "lon": -73.9592884 }, + { "lat": 40.7776373, "lon": -73.9591886 }, + { "lat": 40.7775625, "lon": -73.9590065 }, + { "lat": 40.7775139, "lon": -73.9588921 }, + { "lat": 40.7769598, "lon": -73.9575752 }, + { "lat": 40.7769156, "lon": -73.9574742 }, + { "lat": 40.7768700, "lon": -73.9573663 }, + { "lat": 40.7762970, "lon": -73.9560091 }, + { "lat": 40.7762350, "lon": -73.9558695 }, + { "lat": 40.7761774, "lon": -73.9557328 }, + { "lat": 40.7753464, "lon": -73.9537621 }, + { "lat": 40.7752935, "lon": -73.9536366 }, + { "lat": 40.7752549, "lon": -73.9535444 }, + { "lat": 40.7752420, "lon": -73.9535128 }, + { "lat": 40.7749852, "lon": -73.9529039 }, + { "lat": 40.7743526, "lon": -73.9514041 }, + { "lat": 40.7743364, "lon": -73.9513657 }, + { "lat": 40.7742922, "lon": -73.9512608 }, + { "lat": 40.7742368, "lon": -73.9511293 }, + { "lat": 40.7739973, "lon": -73.9505613 }, + { "lat": 40.7736386, "lon": -73.9497104 }, + { "lat": 40.7733982, "lon": -73.9491402 }, + { "lat": 40.7733435, "lon": -73.9490103 }, + { "lat": 40.7732893, "lon": -73.9488817 }, + { "lat": 40.7724097, "lon": -73.9467952 }, + { "lat": 40.7723510, "lon": -73.9466560 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "East 82nd Street", + "name:ru": "Восточная 82-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670798, + "bounds": { + "minlat": 40.8710440, + "minlon": -73.9170090, + "maxlat": 40.8715840, + "maxlon": -73.9157460 + }, + "nodes": [ + 42436930, + 11587349750, + 1764672569, + 11587411473, + 42434372 + ], + "geometry": [ + { "lat": 40.8715840, "lon": -73.9170090 }, + { "lat": 40.8715610, "lon": -73.9169553 }, + { "lat": 40.8711040, "lon": -73.9158813 }, + { "lat": 40.8710795, "lon": -73.9158260 }, + { "lat": 40.8710440, "lon": -73.9157460 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "West 217th Street", + "name_1": "West 217 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "217th", + "tiger:name_base_1": "217", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5670800, + "bounds": { + "minlat": 40.8682510, + "minlon": -73.9175456, + "maxlat": 40.8689088, + "maxlon": -73.9161390 + }, + "nodes": [ + 42439432, + 9561229784, + 9561209008, + 42429231 + ], + "geometry": [ + { "lat": 40.8682510, "lon": -73.9161390 }, + { "lat": 40.8683141, "lon": -73.9162834 }, + { "lat": 40.8688293, "lon": -73.9174663 }, + { "lat": 40.8689088, "lon": -73.9175456 } + ], + "tags": { + "highway": "residential", + "name": "West 213th Street", + "name_1": "West 213 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "213th", + "tiger:name_base_1": "213", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5670803, + "bounds": { + "minlat": 40.7503422, + "minlon": -73.9910985, + "maxlat": 40.7510092, + "maxlon": -73.9906121 + }, + "nodes": [ + 42437654, + 7782217024, + 7590955909, + 4461990857 + ], + "geometry": [ + { "lat": 40.7510092, "lon": -73.9906121 }, + { "lat": 40.7509212, "lon": -73.9906766 }, + { "lat": 40.7503888, "lon": -73.9910653 }, + { "lat": 40.7503422, "lon": -73.9910985 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|none", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670811, + "bounds": { + "minlat": 40.8008250, + "minlon": -73.9455080, + "maxlat": 40.8019710, + "maxlon": -73.9427901 + }, + "nodes": [ + 42439485, + 10167137532, + 8002880948, + 5481977581, + 10167137522, + 42439486, + 10167137519, + 7620520352 + ], + "geometry": [ + { "lat": 40.8019710, "lon": -73.9455080 }, + { "lat": 40.8019183, "lon": -73.9453789 }, + { "lat": 40.8017754, "lon": -73.9450462 }, + { "lat": 40.8014808, "lon": -73.9443505 }, + { "lat": 40.8013395, "lon": -73.9440150 }, + { "lat": 40.8012913, "lon": -73.9439003 }, + { "lat": 40.8012452, "lon": -73.9437935 }, + { "lat": 40.8008250, "lon": -73.9427901 } + ], + "tags": { + "highway": "residential", + "name": "East 118th Street", + "name:ru": "Восточная 118-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670814, + "bounds": { + "minlat": 40.7277329, + "minlon": -74.0013516, + "maxlat": 40.7306557, + "maxlon": -73.9988148 + }, + "nodes": [ + 42439533, + 5829827215, + 8429031589, + 1692433935, + 6213204056, + 8309478952, + 8309478971, + 42439537, + 8309478970, + 3584752262, + 11435989724, + 11435989725, + 11435989726, + 42439542 + ], + "geometry": [ + { "lat": 40.7277329, "lon": -74.0013516 }, + { "lat": 40.7278068, "lon": -74.0012878 }, + { "lat": 40.7287453, "lon": -74.0004784 }, + { "lat": 40.7288005, "lon": -74.0004308 }, + { "lat": 40.7288194, "lon": -74.0004148 }, + { "lat": 40.7288493, "lon": -74.0003895 }, + { "lat": 40.7300131, "lon": -73.9994050 }, + { "lat": 40.7300598, "lon": -73.9993655 }, + { "lat": 40.7301132, "lon": -73.9993196 }, + { "lat": 40.7306236, "lon": -73.9988974 }, + { "lat": 40.7306365, "lon": -73.9988817 }, + { "lat": 40.7306475, "lon": -73.9988596 }, + { "lat": 40.7306533, "lon": -73.9988378 }, + { "lat": 40.7306557, "lon": -73.9988148 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Sullivan Street", + "name:etymology:wikidata": "Q886420", + "name:ko": "설리번 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q15032064", + "wikipedia": "en:Sullivan Street" + } +}, +{ + "type": "way", + "id": 5670816, + "bounds": { + "minlat": 40.7222714, + "minlon": -74.0058990, + "maxlat": 40.7230406, + "maxlon": -74.0052594 + }, + "nodes": [ + 12133691788, + 4890633694, + 12133691789, + 12133691790, + 4890418800, + 42439550 + ], + "geometry": [ + { "lat": 40.7230406, "lon": -74.0052594 }, + { "lat": 40.7229576, "lon": -74.0053232 }, + { "lat": 40.7229293, "lon": -74.0053469 }, + { "lat": 40.7223842, "lon": -74.0058036 }, + { "lat": 40.7223643, "lon": -74.0058203 }, + { "lat": 40.7222714, "lon": -74.0058990 } + ], + "tags": { + "check_date": "2023-11-03", + "highway": "pedestrian", + "lit": "yes", + "name": "Sullivan Street", + "name:etymology:wikidata": "Q886420", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sullivan", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "wikidata": "Q15032064", + "wikipedia": "en:Sullivan Street" + } +}, +{ + "type": "way", + "id": 5670818, + "bounds": { + "minlat": 40.7681722, + "minlon": -73.9660692, + "maxlat": 40.7737745, + "maxlon": -73.9527922 + }, + "nodes": [ + 42439553, + 7785624657, + 10173250679, + 42439556, + 10173250676, + 10125222330, + 596788016, + 42439557, + 10125222329, + 10125087314, + 42439559, + 10125087313, + 10170793874, + 42439561, + 10170793878, + 8250715787, + 42439563, + 8250715786, + 6689909679, + 42439567, + 6689909677, + 12815741301, + 12815741306, + 6689923822, + 42428012 + ], + "geometry": [ + { "lat": 40.7737745, "lon": -73.9660692 }, + { "lat": 40.7737386, "lon": -73.9659841 }, + { "lat": 40.7731515, "lon": -73.9645927 }, + { "lat": 40.7731008, "lon": -73.9644727 }, + { "lat": 40.7730573, "lon": -73.9643696 }, + { "lat": 40.7725109, "lon": -73.9630745 }, + { "lat": 40.7724621, "lon": -73.9629588 }, + { "lat": 40.7723869, "lon": -73.9627807 }, + { "lat": 40.7723414, "lon": -73.9626729 }, + { "lat": 40.7717873, "lon": -73.9613597 }, + { "lat": 40.7717414, "lon": -73.9612509 }, + { "lat": 40.7716950, "lon": -73.9611407 }, + { "lat": 40.7711230, "lon": -73.9597854 }, + { "lat": 40.7710664, "lon": -73.9596511 }, + { "lat": 40.7710093, "lon": -73.9595157 }, + { "lat": 40.7701750, "lon": -73.9575385 }, + { "lat": 40.7701167, "lon": -73.9574004 }, + { "lat": 40.7700666, "lon": -73.9572817 }, + { "lat": 40.7691791, "lon": -73.9551783 }, + { "lat": 40.7691198, "lon": -73.9550385 }, + { "lat": 40.7690619, "lon": -73.9549007 }, + { "lat": 40.7688272, "lon": -73.9543443 }, + { "lat": 40.7684098, "lon": -73.9533552 }, + { "lat": 40.7682247, "lon": -73.9529165 }, + { "lat": 40.7681722, "lon": -73.9527922 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 74th Street", + "name:ru": "Восточная 74-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12052613", + "wikipedia": "en:74th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670822, + "bounds": { + "minlat": 40.7992618, + "minlon": -73.9559762, + "maxlat": 40.7994668, + "maxlon": -73.9553630 + }, + "nodes": [ + 42433743, + 12818364906, + 2058920057, + 9178942126, + 6804416822, + 595703238, + 6804416821, + 595703240, + 2058920048, + 9908455763, + 6804416823, + 2058920047, + 595703242 + ], + "geometry": [ + { "lat": 40.7994668, "lon": -73.9553630 }, + { "lat": 40.7994234, "lon": -73.9553989 }, + { "lat": 40.7993825, "lon": -73.9554381 }, + { "lat": 40.7993476, "lon": -73.9554729 }, + { "lat": 40.7993140, "lon": -73.9555135 }, + { "lat": 40.7992987, "lon": -73.9555357 }, + { "lat": 40.7992845, "lon": -73.9555644 }, + { "lat": 40.7992746, "lon": -73.9555936 }, + { "lat": 40.7992671, "lon": -73.9556288 }, + { "lat": 40.7992626, "lon": -73.9556650 }, + { "lat": 40.7992618, "lon": -73.9557011 }, + { "lat": 40.7992637, "lon": -73.9557434 }, + { "lat": 40.7992792, "lon": -73.9559762 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "7th Avenue", + "bicycle": "designated", + "cycleway:left": "lane", + "cycleway:right": "no", + "hgv": "no", + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "oneway:bicycle": "yes", + "route": "bicycle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670825, + "bounds": { + "minlat": 40.8171160, + "minlon": -73.9480090, + "maxlat": 40.8183800, + "maxlon": -73.9469800 + }, + "nodes": [ + 42439588, + 2562438691, + 7784459433, + 2562438692, + 2504896610, + 7784459442, + 42439590, + 7784459441, + 10171324738, + 42439598 + ], + "geometry": [ + { "lat": 40.8171160, "lon": -73.9480090 }, + { "lat": 40.8171532, "lon": -73.9479605 }, + { "lat": 40.8171841, "lon": -73.9478795 }, + { "lat": 40.8171962, "lon": -73.9478558 }, + { "lat": 40.8172200, "lon": -73.9478249 }, + { "lat": 40.8177095, "lon": -73.9474769 }, + { "lat": 40.8177600, "lon": -73.9474410 }, + { "lat": 40.8178229, "lon": -73.9473942 }, + { "lat": 40.8183334, "lon": -73.9470135 }, + { "lat": 40.8183800, "lon": -73.9469800 } + ], + "tags": { + "highway": "tertiary", + "name": "Edgecombe Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5670828, + "bounds": { + "minlat": 40.8302773, + "minlon": -73.9403469, + "maxlat": 40.8304568, + "maxlon": -73.9402064 + }, + "nodes": [ + 42439673, + 42427894 + ], + "geometry": [ + { "lat": 40.8304568, "lon": -73.9403469 }, + { "lat": 40.8302773, "lon": -73.9402064 } + ], + "tags": { + "highway": "tertiary", + "name": "Edgecombe Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5670832, + "bounds": { + "minlat": 40.7118790, + "minlon": -73.9989343, + "maxlat": 40.7125535, + "maxlon": -73.9986817 + }, + "nodes": [ + 42439813, + 11497487829, + 11497487827, + 3898690216, + 11497487828, + 11497487826, + 3884569950, + 42437753 + ], + "geometry": [ + { "lat": 40.7125535, "lon": -73.9989343 }, + { "lat": 40.7125321, "lon": -73.9989016 }, + { "lat": 40.7125136, "lon": -73.9988780 }, + { "lat": 40.7124968, "lon": -73.9988632 }, + { "lat": 40.7124807, "lon": -73.9988544 }, + { "lat": 40.7124553, "lon": -73.9988453 }, + { "lat": 40.7119637, "lon": -73.9987059 }, + { "lat": 40.7118790, "lon": -73.9986817 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "James Street", + "name:ko": "제임스 스트리트", + "name_1": "Ancient Order of Hibernians", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670836, + "bounds": { + "minlat": 40.7436348, + "minlon": -73.9959834, + "maxlat": 40.7441065, + "maxlon": -73.9956382 + }, + "nodes": [ + 42437890, + 10171337694, + 9971262481, + 8836214006 + ], + "geometry": [ + { "lat": 40.7441065, "lon": -73.9956382 }, + { "lat": 40.7440084, "lon": -73.9957096 }, + { "lat": 40.7440040, "lon": -73.9957128 }, + { "lat": 40.7436348, "lon": -73.9959834 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "oneway:bicycle": "yes", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670842, + "bounds": { + "minlat": 40.8038074, + "minlon": -73.9522043, + "maxlat": 40.8045644, + "maxlon": -73.9516496 + }, + "nodes": [ + 42439851, + 10172883034, + 10172883044, + 42439849, + 10172883041, + 9446943731 + ], + "geometry": [ + { "lat": 40.8045644, "lon": -73.9516496 }, + { "lat": 40.8045096, "lon": -73.9516898 }, + { "lat": 40.8039932, "lon": -73.9520690 }, + { "lat": 40.8039345, "lon": -73.9521121 }, + { "lat": 40.8038820, "lon": -73.9521502 }, + { "lat": 40.8038074, "lon": -73.9522043 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "rcn_ref": "9", + "route": "bicycle", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670848, + "bounds": { + "minlat": 40.8279282, + "minlon": -73.9350794, + "maxlat": 40.8279826, + "maxlon": -73.9350182 + }, + "nodes": [ + 42434935, + 373768744 + ], + "geometry": [ + { "lat": 40.8279826, "lon": -73.9350182 }, + { "lat": 40.8279282, "lon": -73.9350794 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk": "no", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam C Powell", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 5670851, + "bounds": { + "minlat": 40.8214604, + "minlon": -73.9446041, + "maxlat": 40.8232628, + "maxlon": -73.9429200 + }, + "nodes": [ + 42438288, + 10166154788, + 10743755884, + 42440052, + 10743755883, + 42440053, + 9903127422, + 42434251 + ], + "geometry": [ + { "lat": 40.8214604, "lon": -73.9446041 }, + { "lat": 40.8215128, "lon": -73.9445559 }, + { "lat": 40.8220038, "lon": -73.9440943 }, + { "lat": 40.8220520, "lon": -73.9440490 }, + { "lat": 40.8221024, "lon": -73.9440015 }, + { "lat": 40.8226280, "lon": -73.9435060 }, + { "lat": 40.8231742, "lon": -73.9430066 }, + { "lat": 40.8232628, "lon": -73.9429200 } + ], + "tags": { + "highway": "tertiary", + "name": "Bradhurst Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670853, + "bounds": { + "minlat": 40.8660250, + "minlon": -73.9268380, + "maxlat": 40.8670640, + "maxlon": -73.9258720 + }, + "nodes": [ + 42429216, + 9561420858, + 11586989915, + 9561420914, + 42440079 + ], + "geometry": [ + { "lat": 40.8660250, "lon": -73.9258720 }, + { "lat": 40.8661238, "lon": -73.9259639 }, + { "lat": 40.8669597, "lon": -73.9267410 }, + { "lat": 40.8669900, "lon": -73.9267691 }, + { "lat": 40.8670640, "lon": -73.9268380 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Cumming Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cumming", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5670859, + "bounds": { + "minlat": 40.8084851, + "minlon": -73.9561181, + "maxlat": 40.8094384, + "maxlon": -73.9554225 + }, + "nodes": [ + 13810010655, + 12000297471, + 42440131, + 12000297470, + 12000297469, + 42440134 + ], + "geometry": [ + { "lat": 40.8084851, "lon": -73.9561181 }, + { "lat": 40.8087575, "lon": -73.9559193 }, + { "lat": 40.8088028, "lon": -73.9558862 }, + { "lat": 40.8088656, "lon": -73.9558404 }, + { "lat": 40.8093914, "lon": -73.9554568 }, + { "lat": 40.8094384, "lon": -73.9554225 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "lcn": "yes", + "name": "Morningside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670867, + "bounds": { + "minlat": 40.7585437, + "minlon": -73.9804176, + "maxlat": 40.7599106, + "maxlon": -73.9772064 + }, + "nodes": [ + 42430358, + 3971196626, + 4782442668, + 3855009862, + 10693951250, + 11299027261, + 11383994323, + 11299027258, + 805764974, + 6814895823, + 3977886225, + 42440153 + ], + "geometry": [ + { "lat": 40.7599106, "lon": -73.9804176 }, + { "lat": 40.7598546, "lon": -73.9802853 }, + { "lat": 40.7597470, "lon": -73.9800607 }, + { "lat": 40.7591326, "lon": -73.9785910 }, + { "lat": 40.7591220, "lon": -73.9785659 }, + { "lat": 40.7591081, "lon": -73.9785331 }, + { "lat": 40.7590825, "lon": -73.9784731 }, + { "lat": 40.7590417, "lon": -73.9783774 }, + { "lat": 40.7588760, "lon": -73.9779906 }, + { "lat": 40.7587530, "lon": -73.9776955 }, + { "lat": 40.7586001, "lon": -73.9773305 }, + { "lat": 40.7585437, "lon": -73.9772064 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 50th Street", + "name:ru": "Западная 50-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670871, + "bounds": { + "minlat": 40.7062555, + "minlon": -74.0039515, + "maxlat": 40.7072377, + "maxlon": -74.0031168 + }, + "nodes": [ + 42440258, + 10942498432, + 10311946120, + 8276469211, + 10311946115, + 42440260, + 10311946109, + 42440264, + 10311937106, + 42440268 + ], + "geometry": [ + { "lat": 40.7062555, "lon": -74.0031168 }, + { "lat": 40.7062805, "lon": -74.0031819 }, + { "lat": 40.7062908, "lon": -74.0032087 }, + { "lat": 40.7062991, "lon": -74.0032161 }, + { "lat": 40.7066870, "lon": -74.0035344 }, + { "lat": 40.7067859, "lon": -74.0036179 }, + { "lat": 40.7068632, "lon": -74.0036761 }, + { "lat": 40.7069492, "lon": -74.0037408 }, + { "lat": 40.7070096, "lon": -74.0037849 }, + { "lat": 40.7072377, "lon": -74.0039515 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "surface": "sett", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670873, + "bounds": { + "minlat": 40.7645689, + "minlon": -73.9736594, + "maxlat": 40.7649692, + "maxlon": -73.9733392 + }, + "nodes": [ + 9433097821, + 6751794455, + 11359524023, + 11359524024, + 4347534767 + ], + "geometry": [ + { "lat": 40.7649692, "lon": -73.9733392 }, + { "lat": 40.7646811, "lon": -73.9735632 }, + { "lat": 40.7646378, "lon": -73.9735984 }, + { "lat": 40.7646019, "lon": -73.9736283 }, + { "lat": 40.7645689, "lon": -73.9736594 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Army Plaza", + "name_1": "5 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "left;through|right|right" + } +}, +{ + "type": "way", + "id": 5670874, + "bounds": { + "minlat": 40.7642754, + "minlon": -73.9736594, + "maxlat": 40.7645689, + "maxlon": -73.9730294 + }, + "nodes": [ + 4347534767, + 11359523996, + 3377461261, + 11359523995, + 3377461262, + 5706568771 + ], + "geometry": [ + { "lat": 40.7645689, "lon": -73.9736594 }, + { "lat": 40.7645262, "lon": -73.9735920 }, + { "lat": 40.7645019, "lon": -73.9735496 }, + { "lat": 40.7644751, "lon": -73.9734987 }, + { "lat": 40.7643233, "lon": -73.9731384 }, + { "lat": 40.7642754, "lon": -73.9730294 } + ], + "tags": { + "alt_name": "Grand Army Plaza", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "||right", + "width": "12", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670876, + "bounds": { + "minlat": 40.7406193, + "minlon": -73.9900833, + "maxlat": 40.7408858, + "maxlon": -73.9894421 + }, + "nodes": [ + 42434268, + 8264701232, + 8265964356, + 4687262928, + 3857400397, + 42428198 + ], + "geometry": [ + { "lat": 40.7408858, "lon": -73.9900833 }, + { "lat": 40.7408490, "lon": -73.9899960 }, + { "lat": 40.7408329, "lon": -73.9899573 }, + { "lat": 40.7406850, "lon": -73.9896024 }, + { "lat": 40.7406704, "lon": -73.9895631 }, + { "lat": 40.7406193, "lon": -73.9894421 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 22nd Street", + "name:ru": "Восточная 22-я стрит", + "name_1": "East 22 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670877, + "bounds": { + "minlat": 40.7090976, + "minlon": -74.0095729, + "maxlat": 40.7103389, + "maxlon": -74.0078157 + }, + "nodes": [ + 42428377, + 8281922224, + 11365172077, + 8281922139, + 42440335, + 8281922137, + 42440340 + ], + "geometry": [ + { "lat": 40.7103389, "lon": -74.0095729 }, + { "lat": 40.7102785, "lon": -74.0094709 }, + { "lat": 40.7095971, "lon": -74.0085123 }, + { "lat": 40.7095703, "lon": -74.0084723 }, + { "lat": 40.7095371, "lon": -74.0084241 }, + { "lat": 40.7095105, "lon": -74.0083888 }, + { "lat": 40.7090976, "lon": -74.0078157 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "John Street", + "name:etymology:wikidata": "Q113897737", + "name:ko": "존 스트리트", + "name:ru": "Джон-стрит", + "oneway": "yes", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q108240697" + } +}, +{ + "type": "way", + "id": 5670881, + "bounds": { + "minlat": 40.8156982, + "minlon": -73.9396028, + "maxlat": 40.8159970, + "maxlon": -73.9393897 + }, + "nodes": [ + 42440371, + 9557110355, + 42435957 + ], + "geometry": [ + { "lat": 40.8156982, "lon": -73.9396028 }, + { "lat": 40.8159469, "lon": -73.9394255 }, + { "lat": 40.8159970, "lon": -73.9393897 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 5670888, + "bounds": { + "minlat": 40.7106979, + "minlon": -73.9869665, + "maxlat": 40.7129093, + "maxlon": -73.9866180 + }, + "nodes": [ + 11037590245, + 6330089033, + 479847982, + 5804425625, + 42437503, + 8310246597, + 6330018947, + 6330018969, + 6330018945, + 9533242057, + 8231945176, + 42437770 + ], + "geometry": [ + { "lat": 40.7106979, "lon": -73.9866180 }, + { "lat": 40.7109974, "lon": -73.9866655 }, + { "lat": 40.7110436, "lon": -73.9866727 }, + { "lat": 40.7114502, "lon": -73.9867368 }, + { "lat": 40.7115328, "lon": -73.9867498 }, + { "lat": 40.7116299, "lon": -73.9867651 }, + { "lat": 40.7121071, "lon": -73.9868402 }, + { "lat": 40.7122172, "lon": -73.9868576 }, + { "lat": 40.7123475, "lon": -73.9868781 }, + { "lat": 40.7127503, "lon": -73.9869417 }, + { "lat": 40.7128131, "lon": -73.9869516 }, + { "lat": 40.7129093, "lon": -73.9869665 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clinton Street", + "name:etymology:wikidata": "Q201646", + "name:ko": "클린턴 스트리트", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670891, + "bounds": { + "minlat": 40.7538124, + "minlon": -73.9643470, + "maxlat": 40.7539350, + "maxlon": -73.9640504 + }, + "nodes": [ + 42440476, + 6672749628, + 42440472 + ], + "geometry": [ + { "lat": 40.7538124, "lon": -73.9640504 }, + { "lat": 40.7539118, "lon": -73.9642908 }, + { "lat": 40.7539350, "lon": -73.9643470 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "East 51st Street", + "name:ru": "Восточная 51-я стрит", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670894, + "bounds": { + "minlat": 40.8630200, + "minlon": -73.9194167, + "maxlat": 40.8638064, + "maxlon": -73.9175550 + }, + "nodes": [ + 42440494, + 1764626363, + 9561566541, + 13703148761, + 13703096287, + 13703171493, + 13703171490, + 1764746045, + 9561566521, + 42440499 + ], + "geometry": [ + { "lat": 40.8638064, "lon": -73.9194167 }, + { "lat": 40.8637692, "lon": -73.9193403 }, + { "lat": 40.8637481, "lon": -73.9192900 }, + { "lat": 40.8636215, "lon": -73.9189885 }, + { "lat": 40.8633890, "lon": -73.9184349 }, + { "lat": 40.8633068, "lon": -73.9182364 }, + { "lat": 40.8632370, "lon": -73.9180742 }, + { "lat": 40.8630661, "lon": -73.9176658 }, + { "lat": 40.8630636, "lon": -73.9176599 }, + { "lat": 40.8630200, "lon": -73.9175550 } + ], + "tags": { + "highway": "residential", + "name": "West 206th Street", + "name_1": "West 206 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "206th", + "tiger:name_base_1": "206", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5670896, + "bounds": { + "minlat": 40.7298330, + "minlon": -74.0107062, + "maxlat": 40.7298538, + "maxlon": -74.0104866 + }, + "nodes": [ + 246890579, + 9607729579 + ], + "geometry": [ + { "lat": 40.7298538, "lon": -74.0107062 }, + { "lat": 40.7298330, "lon": -74.0104866 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clarkson Street", + "name:etymology:wikidata": "Q6790308", + "name:ko": "클락슨 스트리트", + "name:ru": "Кларксон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 5670897, + "bounds": { + "minlat": 40.7278276, + "minlon": -73.9955850, + "maxlat": 40.7282036, + "maxlon": -73.9947496 + }, + "nodes": [ + 42428458, + 8309479042, + 5824300189, + 8309478986, + 42440545 + ], + "geometry": [ + { "lat": 40.7278276, "lon": -73.9947496 }, + { "lat": 40.7278512, "lon": -73.9948591 }, + { "lat": 40.7278545, "lon": -73.9948739 }, + { "lat": 40.7281722, "lon": -73.9955211 }, + { "lat": 40.7282036, "lon": -73.9955850 } + ], + "tags": { + "alt_name:ko": "웨스트 3번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 3rd Street", + "name:ko": "웨스트 3rd 스트리트", + "name:ru": "Западная 3-я стрит", + "name_1": "West 3 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670899, + "bounds": { + "minlat": 40.7548955, + "minlon": -73.9629036, + "maxlat": 40.7554632, + "maxlon": -73.9621088 + }, + "nodes": [ + 42440565, + 10992750781, + 10992750780, + 6747028073, + 13680946058, + 13680946063, + 10121802253, + 371021314, + 9142584925, + 9142584924, + 371021316, + 9142584923, + 8831647532, + 2902396741, + 3142994751, + 42436716 + ], + "geometry": [ + { "lat": 40.7554632, "lon": -73.9621088 }, + { "lat": 40.7554457, "lon": -73.9621446 }, + { "lat": 40.7554280, "lon": -73.9621722 }, + { "lat": 40.7554084, "lon": -73.9621931 }, + { "lat": 40.7551834, "lon": -73.9623501 }, + { "lat": 40.7550934, "lon": -73.9624129 }, + { "lat": 40.7549696, "lon": -73.9624993 }, + { "lat": 40.7549268, "lon": -73.9625314 }, + { "lat": 40.7549141, "lon": -73.9625426 }, + { "lat": 40.7549044, "lon": -73.9625568 }, + { "lat": 40.7548984, "lon": -73.9625744 }, + { "lat": 40.7548955, "lon": -73.9625921 }, + { "lat": 40.7548963, "lon": -73.9626161 }, + { "lat": 40.7549015, "lon": -73.9626485 }, + { "lat": 40.7549139, "lon": -73.9627012 }, + { "lat": 40.7549794, "lon": -73.9629036 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Sutton Place South", + "old_name:1811-1883": "Avenue A", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 5670920, + "bounds": { + "minlat": 40.7040261, + "minlon": -74.0132054, + "maxlat": 40.7040707, + "maxlon": -74.0115861 + }, + "nodes": [ + 42428524, + 11050101011, + 11050101010, + 11050101009, + 11050054104, + 11050054102, + 11050101026, + 11050101027, + 8276468828, + 42431877 + ], + "geometry": [ + { "lat": 40.7040707, "lon": -74.0132054 }, + { "lat": 40.7040635, "lon": -74.0131832 }, + { "lat": 40.7040572, "lon": -74.0131548 }, + { "lat": 40.7040540, "lon": -74.0131272 }, + { "lat": 40.7040530, "lon": -74.0131063 }, + { "lat": 40.7040524, "lon": -74.0130877 }, + { "lat": 40.7040504, "lon": -74.0125500 }, + { "lat": 40.7040393, "lon": -74.0120246 }, + { "lat": 40.7040280, "lon": -74.0116883 }, + { "lat": 40.7040261, "lon": -74.0115861 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Stone Street", + "name:etymology:wikidata": "Q2996907", + "name:ko": "스톤 스트리트", + "name:ru": "Стоун-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Stone", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q7619036", + "wikipedia": "en:Stone Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670922, + "bounds": { + "minlat": 40.7224119, + "minlon": -73.9871601, + "maxlat": 40.7225365, + "maxlon": -73.9870920 + }, + "nodes": [ + 4478001045, + 1919595911 + ], + "geometry": [ + { "lat": 40.7225365, "lon": -73.9870920 }, + { "lat": 40.7224119, "lon": -73.9871601 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Ludlow Street", + "name:etymology:wikidata": "Q4821485", + "name:ko": "러들로 스트리트", + "name:ru": "Ладлоу-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3935980", + "wikipedia": "en:Ludlow Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670924, + "bounds": { + "minlat": 40.7354508, + "minlon": -73.9936325, + "maxlat": 40.7360074, + "maxlon": -73.9923108 + }, + "nodes": [ + 42440710, + 8310246302, + 9907956916 + ], + "geometry": [ + { "lat": 40.7360074, "lon": -73.9936325 }, + { "lat": 40.7359554, "lon": -73.9935091 }, + { "lat": 40.7354508, "lon": -73.9923108 } + ], + "tags": { + "bus": "yes", + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670925, + "bounds": { + "minlat": 40.7141312, + "minlon": -73.9902277, + "maxlat": 40.7144207, + "maxlon": -73.9893164 + }, + "nodes": [ + 42433549, + 8231942802, + 42440785 + ], + "geometry": [ + { "lat": 40.7141312, "lon": -73.9893164 }, + { "lat": 40.7143981, "lon": -73.9901027 }, + { "lat": 40.7144207, "lon": -73.9902277 } + ], + "tags": { + "bicycle": "designated", + "highway": "pedestrian", + "horse": "=", + "lit": "yes", + "name": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670932, + "bounds": { + "minlat": 40.7217117, + "minlon": -74.0064418, + "maxlat": 40.7218220, + "maxlon": -74.0053067 + }, + "nodes": [ + 4778174564, + 11311088135, + 11311088136, + 11311088137, + 4890419521, + 42438781, + 4143859866, + 2151385505, + 4143859865 + ], + "geometry": [ + { "lat": 40.7218075, "lon": -74.0064418 }, + { "lat": 40.7218157, "lon": -74.0064013 }, + { "lat": 40.7218210, "lon": -74.0063556 }, + { "lat": 40.7218220, "lon": -74.0063254 }, + { "lat": 40.7218200, "lon": -74.0063016 }, + { "lat": 40.7217618, "lon": -74.0057305 }, + { "lat": 40.7217353, "lon": -74.0055247 }, + { "lat": 40.7217258, "lon": -74.0054656 }, + { "lat": 40.7217117, "lon": -74.0053067 } + ], + "tags": { + "cycleway:right": "no", + "destination": "Canal Street East", + "expressway": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Laight Street", + "name:ko": "레이트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5670938, + "bounds": { + "minlat": 40.7692310, + "minlon": -73.9875948, + "maxlat": 40.7704036, + "maxlon": -73.9847685 + }, + "nodes": [ + 42440934, + 10075274236, + 10183035757, + 7644293502, + 13198417096, + 13198417093, + 7246154629, + 9441141806, + 42440935 + ], + "geometry": [ + { "lat": 40.7692310, "lon": -73.9847685 }, + { "lat": 40.7692819, "lon": -73.9848912 }, + { "lat": 40.7695379, "lon": -73.9855076 }, + { "lat": 40.7696849, "lon": -73.9858617 }, + { "lat": 40.7697975, "lon": -73.9861329 }, + { "lat": 40.7698391, "lon": -73.9862330 }, + { "lat": 40.7702405, "lon": -73.9871998 }, + { "lat": 40.7703630, "lon": -73.9874965 }, + { "lat": 40.7704036, "lon": -73.9875948 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 59th Street", + "name:ru": "Западная 59-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670941, + "bounds": { + "minlat": 40.7366110, + "minlon": -74.0053140, + "maxlat": 40.7371680, + "maxlon": -74.0014630 + }, + "nodes": [ + 6213204061, + 529555931, + 9671730814, + 10168548422, + 42440940, + 10168548420, + 42433278, + 8262308440, + 42432205 + ], + "geometry": [ + { "lat": 40.7366110, "lon": -74.0053140 }, + { "lat": 40.7366174, "lon": -74.0052767 }, + { "lat": 40.7368249, "lon": -74.0038136 }, + { "lat": 40.7368308, "lon": -74.0037716 }, + { "lat": 40.7368390, "lon": -74.0037140 }, + { "lat": 40.7368471, "lon": -74.0036524 }, + { "lat": 40.7370660, "lon": -74.0021360 }, + { "lat": 40.7371528, "lon": -74.0015630 }, + { "lat": 40.7371680, "lon": -74.0014630 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bank Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4855978", + "wikipedia": "en:Bank Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670942, + "bounds": { + "minlat": 40.7362145, + "minlon": -74.0082211, + "maxlat": 40.7364239, + "maxlon": -74.0067120 + }, + "nodes": [ + 12162436910, + 11608895269, + 11608874766 + ], + "geometry": [ + { "lat": 40.7362145, "lon": -74.0082211 }, + { "lat": 40.7364199, "lon": -74.0067380 }, + { "lat": 40.7364239, "lon": -74.0067120 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Bank Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q4855978", + "wikipedia": "en:Bank Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670946, + "bounds": { + "minlat": 40.8655549, + "minlon": -73.9284054, + "maxlat": 40.8656310, + "maxlon": -73.9280646 + }, + "nodes": [ + 42441009, + 9561395288, + 1764661148, + 595729838 + ], + "geometry": [ + { "lat": 40.8656310, "lon": -73.9284054 }, + { "lat": 40.8655976, "lon": -73.9283189 }, + { "lat": 40.8655722, "lon": -73.9282530 }, + { "lat": 40.8655549, "lon": -73.9280646 } + ], + "tags": { + "bicycle": "designated", + "hgv": "destination", + "highway": "primary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 5670961, + "bounds": { + "minlat": 40.8163356, + "minlon": -73.9618860, + "maxlat": 40.8168887, + "maxlon": -73.9611688 + }, + "nodes": [ + 42441191, + 1705982072, + 7732571853, + 7732571849, + 1705982032, + 7732571848, + 1705982128, + 1705982106, + 1705982062, + 1705982153, + 7732571847, + 12015534416, + 1705982037 + ], + "geometry": [ + { "lat": 40.8168887, "lon": -73.9611688 }, + { "lat": 40.8168559, "lon": -73.9612239 }, + { "lat": 40.8168327, "lon": -73.9612511 }, + { "lat": 40.8168022, "lon": -73.9612783 }, + { "lat": 40.8167595, "lon": -73.9613139 }, + { "lat": 40.8167177, "lon": -73.9613567 }, + { "lat": 40.8166939, "lon": -73.9613778 }, + { "lat": 40.8166418, "lon": -73.9614334 }, + { "lat": 40.8165810, "lon": -73.9615027 }, + { "lat": 40.8165323, "lon": -73.9615618 }, + { "lat": 40.8164927, "lon": -73.9616234 }, + { "lat": 40.8163809, "lon": -73.9618103 }, + { "lat": 40.8163356, "lon": -73.9618860 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk": "right", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670971, + "bounds": { + "minlat": 40.7927869, + "minlon": -73.9770460, + "maxlat": 40.7959475, + "maxlon": -73.9751800 + }, + "nodes": [ + 595314125, + 9168918334, + 42441526, + 2029349815, + 9168918335, + 2029349817, + 2029349818, + 2029349820, + 2029349823, + 9168918336, + 42441521, + 9168918337, + 2029349835, + 2029349841, + 2029349847, + 9168918338, + 10061754171, + 42437005, + 2029349856, + 9168918339, + 1584624218, + 9168918340, + 9168918341, + 9168918342, + 9168918343, + 1584624215, + 2029349871, + 2029349876, + 9168918355, + 2029349903, + 595314114 + ], + "geometry": [ + { "lat": 40.7927869, "lon": -73.9770460 }, + { "lat": 40.7929152, "lon": -73.9768740 }, + { "lat": 40.7933236, "lon": -73.9765740 }, + { "lat": 40.7935065, "lon": -73.9764508 }, + { "lat": 40.7935693, "lon": -73.9764193 }, + { "lat": 40.7936377, "lon": -73.9763855 }, + { "lat": 40.7937002, "lon": -73.9763625 }, + { "lat": 40.7937679, "lon": -73.9763404 }, + { "lat": 40.7938511, "lon": -73.9763211 }, + { "lat": 40.7939334, "lon": -73.9763112 }, + { "lat": 40.7940047, "lon": -73.9763032 }, + { "lat": 40.7941215, "lon": -73.9763018 }, + { "lat": 40.7945208, "lon": -73.9762947 }, + { "lat": 40.7945840, "lon": -73.9762902 }, + { "lat": 40.7946691, "lon": -73.9762785 }, + { "lat": 40.7947481, "lon": -73.9762617 }, + { "lat": 40.7947647, "lon": -73.9762569 }, + { "lat": 40.7948250, "lon": -73.9762395 }, + { "lat": 40.7948923, "lon": -73.9762139 }, + { "lat": 40.7949658, "lon": -73.9761787 }, + { "lat": 40.7950307, "lon": -73.9761450 }, + { "lat": 40.7951002, "lon": -73.9761031 }, + { "lat": 40.7951664, "lon": -73.9760596 }, + { "lat": 40.7952213, "lon": -73.9760191 }, + { "lat": 40.7952918, "lon": -73.9759612 }, + { "lat": 40.7954048, "lon": -73.9758460 }, + { "lat": 40.7954481, "lon": -73.9757989 }, + { "lat": 40.7955232, "lon": -73.9757173 }, + { "lat": 40.7956664, "lon": -73.9754992 }, + { "lat": 40.7957929, "lon": -73.9752987 }, + { "lat": 40.7959475, "lon": -73.9751800 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670976, + "bounds": { + "minlat": 40.8380720, + "minlon": -73.9466482, + "maxlat": 40.8406863, + "maxlon": -73.9447550 + }, + "nodes": [ + 42441695, + 11296617475, + 11296617476, + 11296617477, + 2499827804, + 9935939351, + 42441701, + 9935939350, + 595352912, + 42441704, + 8151881624, + 587933836, + 4701483772, + 587933842, + 5552274522, + 5552274527, + 587933849, + 587933855 + ], + "geometry": [ + { "lat": 40.8380720, "lon": -73.9466482 }, + { "lat": 40.8381736, "lon": -73.9465237 }, + { "lat": 40.8383401, "lon": -73.9462148 }, + { "lat": 40.8384296, "lon": -73.9460542 }, + { "lat": 40.8385206, "lon": -73.9459162 }, + { "lat": 40.8385289, "lon": -73.9459044 }, + { "lat": 40.8385590, "lon": -73.9458560 }, + { "lat": 40.8386149, "lon": -73.9458182 }, + { "lat": 40.8389087, "lon": -73.9456187 }, + { "lat": 40.8392320, "lon": -73.9455430 }, + { "lat": 40.8395416, "lon": -73.9456204 }, + { "lat": 40.8396628, "lon": -73.9456279 }, + { "lat": 40.8397942, "lon": -73.9456091 }, + { "lat": 40.8399065, "lon": -73.9455387 }, + { "lat": 40.8399401, "lon": -73.9455129 }, + { "lat": 40.8399774, "lon": -73.9454843 }, + { "lat": 40.8401581, "lon": -73.9453456 }, + { "lat": 40.8406863, "lon": -73.9447550 } + ], + "tags": { + "highway": "residential", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670983, + "bounds": { + "minlat": 40.8382107, + "minlon": -73.9469759, + "maxlat": 40.8410394, + "maxlon": -73.9447121 + }, + "nodes": [ + 42437324, + 254312181, + 42441751, + 765251431, + 595352922, + 4701483778, + 595352923, + 595352924, + 595352897 + ], + "geometry": [ + { "lat": 40.8410394, "lon": -73.9447121 }, + { "lat": 40.8401091, "lon": -73.9457170 }, + { "lat": 40.8396416, "lon": -73.9461290 }, + { "lat": 40.8391065, "lon": -73.9462990 }, + { "lat": 40.8388763, "lon": -73.9464341 }, + { "lat": 40.8386593, "lon": -73.9465706 }, + { "lat": 40.8386206, "lon": -73.9465950 }, + { "lat": 40.8383730, "lon": -73.9468096 }, + { "lat": 40.8382107, "lon": -73.9469759 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670988, + "bounds": { + "minlat": 40.8296117, + "minlon": -73.9501081, + "maxlat": 40.8296438, + "maxlon": -73.9500111 + }, + "nodes": [ + 42434343, + 7738238873, + 11193743239 + ], + "geometry": [ + { "lat": 40.8296117, "lon": -73.9501081 }, + { "lat": 40.8296337, "lon": -73.9500271 }, + { "lat": 40.8296438, "lon": -73.9500111 } + ], + "tags": { + "highway": "residential", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 5670996, + "bounds": { + "minlat": 40.7927869, + "minlon": -73.9770460, + "maxlat": 40.7948687, + "maxlon": -73.9765627 + }, + "nodes": [ + 595314125, + 9168918326, + 2029349814, + 9168918327, + 42441529, + 9168918328, + 595314126, + 42441845, + 2029349821, + 42441849, + 9168918329, + 42441853, + 9168918330, + 42441856, + 42441860, + 2029349844, + 9168918331, + 42441864, + 12559072680, + 42441867 + ], + "geometry": [ + { "lat": 40.7927869, "lon": -73.9770460 }, + { "lat": 40.7928476, "lon": -73.9770198 }, + { "lat": 40.7929105, "lon": -73.9769936 }, + { "lat": 40.7929835, "lon": -73.9769697 }, + { "lat": 40.7930443, "lon": -73.9769581 }, + { "lat": 40.7931055, "lon": -73.9769486 }, + { "lat": 40.7931771, "lon": -73.9769415 }, + { "lat": 40.7937578, "lon": -73.9769129 }, + { "lat": 40.7938614, "lon": -73.9769056 }, + { "lat": 40.7939684, "lon": -73.9768910 }, + { "lat": 40.7940701, "lon": -73.9768714 }, + { "lat": 40.7941837, "lon": -73.9768440 }, + { "lat": 40.7942855, "lon": -73.9768148 }, + { "lat": 40.7943822, "lon": -73.9767839 }, + { "lat": 40.7944753, "lon": -73.9767500 }, + { "lat": 40.7945743, "lon": -73.9767083 }, + { "lat": 40.7946810, "lon": -73.9766620 }, + { "lat": 40.7947610, "lon": -73.9766221 }, + { "lat": 40.7947612, "lon": -73.9766220 }, + { "lat": 40.7948687, "lon": -73.9765627 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671007, + "bounds": { + "minlat": 40.7342172, + "minlon": -74.0100767, + "maxlat": 40.7344801, + "maxlon": -74.0084753 + }, + "nodes": [ + 42442081, + 5708244642, + 12162436920, + 12162436921, + 8307642134, + 12162436922, + 42442078 + ], + "geometry": [ + { "lat": 40.7342172, "lon": -74.0100767 }, + { "lat": 40.7342408, "lon": -74.0099319 }, + { "lat": 40.7344746, "lon": -74.0085979 }, + { "lat": 40.7344777, "lon": -74.0085743 }, + { "lat": 40.7344795, "lon": -74.0085519 }, + { "lat": 40.7344801, "lon": -74.0085321 }, + { "lat": 40.7344793, "lon": -74.0084753 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "name": "Charles Lane", + "oneway": "yes", + "service": "alley", + "surface": "cobblestone" + } +}, +{ + "type": "way", + "id": 5671008, + "bounds": { + "minlat": 40.7053435, + "minlon": -74.0088028, + "maxlat": 40.7054413, + "maxlon": -74.0080313 + }, + "nodes": [ + 42442107, + 11042989813, + 11042989812, + 11042989814, + 11042989811, + 12299470508 + ], + "geometry": [ + { "lat": 40.7054413, "lon": -74.0080313 }, + { "lat": 40.7054281, "lon": -74.0080738 }, + { "lat": 40.7054196, "lon": -74.0081147 }, + { "lat": 40.7054165, "lon": -74.0081398 }, + { "lat": 40.7054134, "lon": -74.0081654 }, + { "lat": 40.7053435, "lon": -74.0088028 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Beaver Street", + "name:etymology:wikidata": "Q47542", + "name:ko": "비버 스트리트", + "name:ru": "Бивер-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Beaver", + "tiger:name_type": "St", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "wikidata": "Q13463781", + "wikipedia": "en:Beaver Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671009, + "bounds": { + "minlat": 40.8038900, + "minlon": -73.9461817, + "maxlat": 40.8064044, + "maxlon": -73.9443406 + }, + "nodes": [ + 42442128, + 10170875107, + 42438906, + 10170875097, + 42442123, + 10170875100, + 3858909357, + 10170875078, + 2099150501 + ], + "geometry": [ + { "lat": 40.8064044, "lon": -73.9443406 }, + { "lat": 40.8063540, "lon": -73.9443785 }, + { "lat": 40.8057865, "lon": -73.9448050 }, + { "lat": 40.8052221, "lon": -73.9452106 }, + { "lat": 40.8051509, "lon": -73.9452617 }, + { "lat": 40.8050993, "lon": -73.9452995 }, + { "lat": 40.8045239, "lon": -73.9457212 }, + { "lat": 40.8039603, "lon": -73.9461306 }, + { "lat": 40.8038900, "lon": -73.9461817 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "name": "Mount Morris Park West", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Mount Morris Park", + "tiger:name_direction_suffix": "W", + "tiger:reviewed": "aerial", + "tiger:zip_left": "10027", + "tiger:zip_left_1": "10027" + } +}, +{ + "type": "way", + "id": 5671015, + "bounds": { + "minlat": 40.7936889, + "minlon": -73.9593404, + "maxlat": 40.7943982, + "maxlon": -73.9581369 + }, + "nodes": [ + 4332457585, + 4332457588, + 1203806179, + 1203806308, + 4302965041, + 9908390654, + 4332468831, + 9908390653, + 12817661207, + 1203806320 + ], + "geometry": [ + { "lat": 40.7943982, "lon": -73.9593404 }, + { "lat": 40.7943715, "lon": -73.9592941 }, + { "lat": 40.7943431, "lon": -73.9592478 }, + { "lat": 40.7940015, "lon": -73.9587742 }, + { "lat": 40.7939186, "lon": -73.9586502 }, + { "lat": 40.7938594, "lon": -73.9585569 }, + { "lat": 40.7938108, "lon": -73.9584761 }, + { "lat": 40.7937700, "lon": -73.9583813 }, + { "lat": 40.7937243, "lon": -73.9582572 }, + { "lat": 40.7936889, "lon": -73.9581369 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "hgv": "no", + "highway": "service", + "lit": "yes", + "motor_vehicle": "no", + "name": "102nd Street Crossing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671028, + "bounds": { + "minlat": 40.7260802, + "minlon": -74.0108723, + "maxlat": 40.7261761, + "maxlon": -74.0099122 + }, + "nodes": [ + 42442294, + 5708245833, + 12162542936, + 8307641944, + 42442291 + ], + "geometry": [ + { "lat": 40.7261761, "lon": -74.0108723 }, + { "lat": 40.7261603, "lon": -74.0107116 }, + { "lat": 40.7260972, "lon": -74.0100685 }, + { "lat": 40.7260927, "lon": -74.0100235 }, + { "lat": 40.7260802, "lon": -74.0099122 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671030, + "bounds": { + "minlat": 40.8526284, + "minlon": -73.9365357, + "maxlat": 40.8567453, + "maxlon": -73.9348568 + }, + "nodes": [ + 42442378, + 2348610322, + 2348610323, + 11594999836, + 2348610324, + 1215606737, + 11594999835, + 1763603318, + 11594999831, + 2348610325, + 2348610326, + 2348610327, + 42442384, + 2348610328, + 2348610329, + 2348610330, + 1763603320, + 9423152412, + 42436297, + 8955677111, + 2348610334, + 2348610336, + 8151650893, + 2348610338, + 2348610340, + 1215606727, + 2348610342, + 8151650891, + 1253602782, + 2348610343, + 42442400 + ], + "geometry": [ + { "lat": 40.8526284, "lon": -73.9365259 }, + { "lat": 40.8526461, "lon": -73.9365320 }, + { "lat": 40.8526700, "lon": -73.9365350 }, + { "lat": 40.8526806, "lon": -73.9365352 }, + { "lat": 40.8527030, "lon": -73.9365357 }, + { "lat": 40.8527296, "lon": -73.9365340 }, + { "lat": 40.8527713, "lon": -73.9365240 }, + { "lat": 40.8532831, "lon": -73.9364017 }, + { "lat": 40.8533012, "lon": -73.9363977 }, + { "lat": 40.8533542, "lon": -73.9363859 }, + { "lat": 40.8534118, "lon": -73.9363768 }, + { "lat": 40.8534801, "lon": -73.9363707 }, + { "lat": 40.8538229, "lon": -73.9363632 }, + { "lat": 40.8539501, "lon": -73.9363655 }, + { "lat": 40.8540497, "lon": -73.9363522 }, + { "lat": 40.8541541, "lon": -73.9363282 }, + { "lat": 40.8542428, "lon": -73.9363021 }, + { "lat": 40.8548663, "lon": -73.9360635 }, + { "lat": 40.8549324, "lon": -73.9360382 }, + { "lat": 40.8549922, "lon": -73.9360131 }, + { "lat": 40.8551888, "lon": -73.9359256 }, + { "lat": 40.8553164, "lon": -73.9358584 }, + { "lat": 40.8554042, "lon": -73.9358096 }, + { "lat": 40.8555069, "lon": -73.9357526 }, + { "lat": 40.8556192, "lon": -73.9356813 }, + { "lat": 40.8557219, "lon": -73.9356073 }, + { "lat": 40.8559280, "lon": -73.9354612 }, + { "lat": 40.8564379, "lon": -73.9350769 }, + { "lat": 40.8566707, "lon": -73.9349014 }, + { "lat": 40.8567119, "lon": -73.9348758 }, + { "lat": 40.8567453, "lon": -73.9348568 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Overlook Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Overlook", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033", + "width": "35'0\"" + } +}, +{ + "type": "way", + "id": 5671056, + "bounds": { + "minlat": 40.7720166, + "minlon": -73.9864164, + "maxlat": 40.7721529, + "maxlon": -73.9863173 + }, + "nodes": [ + 12840113947, + 12840113946 + ], + "geometry": [ + { "lat": 40.7720166, "lon": -73.9864164 }, + { "lat": 40.7721529, "lon": -73.9863173 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671059, + "bounds": { + "minlat": 40.7181150, + "minlon": -73.9768790, + "maxlat": 40.7190823, + "maxlon": -73.9763832 + }, + "nodes": [ + 42442788, + 3783073260, + 9010154532, + 4300994826, + 42442791 + ], + "geometry": [ + { "lat": 40.7190823, "lon": -73.9763832 }, + { "lat": 40.7189937, "lon": -73.9764270 }, + { "lat": 40.7182243, "lon": -73.9768238 }, + { "lat": 40.7181872, "lon": -73.9768425 }, + { "lat": 40.7181150, "lon": -73.9768790 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Baruch Place", + "name:etymology:wikidata": "Q1465166", + "name:ko": "바루크 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671061, + "bounds": { + "minlat": 40.7151586, + "minlon": -73.9783672, + "maxlat": 40.7156979, + "maxlon": -73.9780769 + }, + "nodes": [ + 42429819, + 4300994835, + 42435553 + ], + "geometry": [ + { "lat": 40.7156979, "lon": -73.9780769 }, + { "lat": 40.7156098, "lon": -73.9781244 }, + { "lat": 40.7151586, "lon": -73.9783672 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "Baruch Drive", + "name:etymology:wikidata": "Q1465166", + "name:ko": "바루크 드라이브", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Baruch", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10002", + "tiger:zip_right": "10002" + } +}, +{ + "type": "way", + "id": 5671083, + "bounds": { + "minlat": 40.7237271, + "minlon": -73.9910315, + "maxlat": 40.7241092, + "maxlon": -73.9909579 + }, + "nodes": [ + 42442838, + 1918039935, + 10606695724, + 3927743126, + 42443127 + ], + "geometry": [ + { "lat": 40.7241092, "lon": -73.9909579 }, + { "lat": 40.7239860, "lon": -73.9909867 }, + { "lat": 40.7238836, "lon": -73.9910011 }, + { "lat": 40.7238210, "lon": -73.9910105 }, + { "lat": 40.7237271, "lon": -73.9910315 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through|through", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671084, + "bounds": { + "minlat": 40.7079812, + "minlon": -74.0177130, + "maxlat": 40.7084570, + "maxlon": -74.0173980 + }, + "nodes": [ + 272196096, + 7728026096, + 7728026095, + 7728026094, + 10612369337, + 4876648472, + 42427412 + ], + "geometry": [ + { "lat": 40.7079812, "lon": -74.0177130 }, + { "lat": 40.7080271, "lon": -74.0176990 }, + { "lat": 40.7080748, "lon": -74.0176758 }, + { "lat": 40.7081190, "lon": -74.0176473 }, + { "lat": 40.7083477, "lon": -74.0174822 }, + { "lat": 40.7083805, "lon": -74.0174586 }, + { "lat": 40.7084570, "lon": -74.0173980 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "South End Avenue", + "name:ko": "사우스 엔드 애비뉴", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671086, + "bounds": { + "minlat": 40.8084658, + "minlon": -73.9648621, + "maxlat": 40.8089155, + "maxlon": -73.9645365 + }, + "nodes": [ + 3579426871, + 10169289750, + 12015534434, + 595314036 + ], + "geometry": [ + { "lat": 40.8084658, "lon": -73.9648621 }, + { "lat": 40.8085359, "lon": -73.9648117 }, + { "lat": 40.8085803, "lon": -73.9647795 }, + { "lat": 40.8089155, "lon": -73.9645365 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "name": "Claremont Avenue", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5126299", + "wikipedia": "en:Claremont Avenue" + } +}, +{ + "type": "way", + "id": 5671089, + "bounds": { + "minlat": 40.7885854, + "minlon": -73.9561398, + "maxlat": 40.7889623, + "maxlon": -73.9552649 + }, + "nodes": [ + 42443264, + 7061726466, + 2059119488 + ], + "geometry": [ + { "lat": 40.7885854, "lon": -73.9552649 }, + { "lat": 40.7886361, "lon": -73.9553824 }, + { "lat": 40.7889623, "lon": -73.9561398 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "cycleway:both": "no", + "destination": "West Side", + "foot": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxheight": "9'11\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "oneway": "yes", + "parking:both": "no", + "sidewalk": "no", + "surface": "asphalt", + "turn:lanes": "merge_to_right|through" + } +}, +{ + "type": "way", + "id": 5671090, + "bounds": { + "minlat": 40.7888413, + "minlon": -73.9570893, + "maxlat": 40.7893529, + "maxlon": -73.9564093 + }, + "nodes": [ + 42443263, + 9170867858, + 2059119491, + 9170867859, + 2059119490, + 2059119487, + 2059119485, + 42424842, + 2059119483 + ], + "geometry": [ + { "lat": 40.7893529, "lon": -73.9570893 }, + { "lat": 40.7892247, "lon": -73.9568436 }, + { "lat": 40.7891739, "lon": -73.9567630 }, + { "lat": 40.7891225, "lon": -73.9566867 }, + { "lat": 40.7890711, "lon": -73.9566189 }, + { "lat": 40.7890116, "lon": -73.9565513 }, + { "lat": 40.7889564, "lon": -73.9564995 }, + { "lat": 40.7889104, "lon": -73.9564601 }, + { "lat": 40.7888413, "lon": -73.9564093 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxheight": "9'11\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671092, + "bounds": { + "minlat": 40.7917087, + "minlon": -73.9630405, + "maxlat": 40.7918074, + "maxlon": -73.9627520 + }, + "nodes": [ + 42431293, + 9170867869, + 7012450754 + ], + "geometry": [ + { "lat": 40.7917087, "lon": -73.9627520 }, + { "lat": 40.7917741, "lon": -73.9629184 }, + { "lat": 40.7918074, "lon": -73.9630405 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxheight": "9'11\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671093, + "bounds": { + "minlat": 40.7829894, + "minlon": -73.9745499, + "maxlat": 40.7832589, + "maxlon": -73.9739751 + }, + "nodes": [ + 42443280, + 3248774424, + 4205805390 + ], + "geometry": [ + { "lat": 40.7832589, "lon": -73.9745499 }, + { "lat": 40.7831801, "lon": -73.9744248 }, + { "lat": 40.7829894, "lon": -73.9739751 } + ], + "tags": { + "alt_name": "West 81 Street", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West 81st Street", + "name:ru": "Западная 81-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|left" + } +}, +{ + "type": "way", + "id": 5671095, + "bounds": { + "minlat": 40.7298613, + "minlon": -73.9896920, + "maxlat": 40.7299155, + "maxlon": -73.9889177 + }, + "nodes": [ + 42443296, + 4235733230, + 12179565618, + 4235733228, + 42443298 + ], + "geometry": [ + { "lat": 40.7298613, "lon": -73.9896920 }, + { "lat": 40.7298733, "lon": -73.9895109 }, + { "lat": 40.7298981, "lon": -73.9891380 }, + { "lat": 40.7299045, "lon": -73.9890572 }, + { "lat": 40.7299155, "lon": -73.9889177 } + ], + "tags": { + "attraction": "yes", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Stuyvesant Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7629278", + "wikipedia": "en:Stuyvesant Street" + } +}, +{ + "type": "way", + "id": 5671103, + "bounds": { + "minlat": 40.8016013, + "minlon": -73.9611564, + "maxlat": 40.8017886, + "maxlon": -73.9610669 + }, + "nodes": [ + 42435359, + 1775693135, + 13777246506 + ], + "geometry": [ + { "lat": 40.8017886, "lon": -73.9610669 }, + { "lat": 40.8016766, "lon": -73.9611016 }, + { "lat": 40.8016013, "lon": -73.9611564 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671106, + "bounds": { + "minlat": 40.7891218, + "minlon": -73.9735644, + "maxlat": 40.7920649, + "maxlon": -73.9665628 + }, + "nodes": [ + 1061531736, + 8687882617, + 8687882661, + 42442502, + 8687882656, + 7801775732, + 42443363, + 3718670416, + 7123525304, + 42435317 + ], + "geometry": [ + { "lat": 40.7920649, "lon": -73.9735644 }, + { "lat": 40.7920225, "lon": -73.9734634 }, + { "lat": 40.7915603, "lon": -73.9723652 }, + { "lat": 40.7915049, "lon": -73.9722334 }, + { "lat": 40.7914520, "lon": -73.9721076 }, + { "lat": 40.7903654, "lon": -73.9695213 }, + { "lat": 40.7903176, "lon": -73.9694076 }, + { "lat": 40.7902558, "lon": -73.9692638 }, + { "lat": 40.7891709, "lon": -73.9666796 }, + { "lat": 40.7891218, "lon": -73.9665628 } + ], + "tags": { + "alt_name": "West 92 Street", + "highway": "residential", + "lane_markings": "no", + "name": "West 92nd Street", + "name:ru": "Западная 92-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671109, + "bounds": { + "minlat": 40.8545322, + "minlon": -73.9325403, + "maxlat": 40.8551570, + "maxlon": -73.9320920 + }, + "nodes": [ + 42443486, + 42443482 + ], + "geometry": [ + { "lat": 40.8551570, "lon": -73.9320920 }, + { "lat": 40.8545322, "lon": -73.9325403 } + ], + "tags": { + "highway": "residential", + "name": "Wadsworth Terrace", + "name:etymology:wikidata": "Q2339186", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5671111, + "bounds": { + "minlat": 40.7225365, + "minlon": -73.9870950, + "maxlat": 40.7227090, + "maxlon": -73.9870431 + }, + "nodes": [ + 4478001045, + 8307642240, + 9181587092, + 8307642237, + 9181587090, + 9181587091, + 42440702 + ], + "geometry": [ + { "lat": 40.7225365, "lon": -73.9870920 }, + { "lat": 40.7226100, "lon": -73.9870518 }, + { "lat": 40.7226263, "lon": -73.9870466 }, + { "lat": 40.7226474, "lon": -73.9870431 }, + { "lat": 40.7226693, "lon": -73.9870492 }, + { "lat": 40.7226904, "lon": -73.9870698 }, + { "lat": 40.7227090, "lon": -73.9870950 } + ], + "tags": { + "alt_name:ko": "이스트 1번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 1st Street", + "name:en": "East 1st Street", + "name:ko": "이스트 1st 스트리트", + "name:ru": "Восточная 1-я стрит", + "name_1": "East 1 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671112, + "bounds": { + "minlat": 40.8590120, + "minlon": -73.9284200, + "maxlat": 40.8602420, + "maxlon": -73.9276250 + }, + "nodes": [ + 42443522, + 9561344689, + 9561314677, + 42443520, + 11596424571, + 9561314691, + 42421786 + ], + "geometry": [ + { "lat": 40.8602420, "lon": -73.9284200 }, + { "lat": 40.8601495, "lon": -73.9283612 }, + { "lat": 40.8596198, "lon": -73.9280245 }, + { "lat": 40.8595450, "lon": -73.9279770 }, + { "lat": 40.8591303, "lon": -73.9277031 }, + { "lat": 40.8590866, "lon": -73.9276742 }, + { "lat": 40.8590120, "lon": -73.9276250 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Ellwood Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Ellwood", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5671115, + "bounds": { + "minlat": 40.7610365, + "minlon": -73.9955216, + "maxlat": 40.7646184, + "maxlon": -73.9870177 + }, + "nodes": [ + 42430694, + 10166521650, + 10698841376, + 593921849, + 10168029001, + 42443534, + 10168029005, + 10171089670, + 42443532, + 10171089667, + 9286503617, + 10168088501, + 42435680 + ], + "geometry": [ + { "lat": 40.7646184, "lon": -73.9955216 }, + { "lat": 40.7645737, "lon": -73.9954161 }, + { "lat": 40.7644118, "lon": -73.9950344 }, + { "lat": 40.7637752, "lon": -73.9935339 }, + { "lat": 40.7634838, "lon": -73.9928315 }, + { "lat": 40.7634277, "lon": -73.9927007 }, + { "lat": 40.7633755, "lon": -73.9925790 }, + { "lat": 40.7622876, "lon": -73.9899894 }, + { "lat": 40.7622326, "lon": -73.9898591 }, + { "lat": 40.7621817, "lon": -73.9897387 }, + { "lat": 40.7614274, "lon": -73.9879463 }, + { "lat": 40.7611006, "lon": -73.9871696 }, + { "lat": 40.7610365, "lon": -73.9870177 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 48th Street", + "name:ru": "Западная 48-я стрит", + "name_1": "West 48 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete:plates", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671117, + "bounds": { + "minlat": 40.7621145, + "minlon": -73.9995988, + "maxlat": 40.7630722, + "maxlon": -73.9973436 + }, + "nodes": [ + 62915509, + 12154605903, + 3874681640, + 5985110734, + 8513575879, + 10166505409, + 42430680 + ], + "geometry": [ + { "lat": 40.7630722, "lon": -73.9995988 }, + { "lat": 40.7630473, "lon": -73.9995447 }, + { "lat": 40.7630233, "lon": -73.9994881 }, + { "lat": 40.7623550, "lon": -73.9979063 }, + { "lat": 40.7622028, "lon": -73.9975481 }, + { "lat": 40.7621800, "lon": -73.9974973 }, + { "lat": 40.7621145, "lon": -73.9973436 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671118, + "bounds": { + "minlat": 40.8247731, + "minlon": -73.9405881, + "maxlat": 40.8264173, + "maxlon": -73.9366870 + }, + "nodes": [ + 42440065, + 11762434889, + 8008242755, + 42435881, + 8008242758, + 42443574, + 8008242764, + 9150629563, + 42439927, + 2141026522 + ], + "geometry": [ + { "lat": 40.8264173, "lon": -73.9405881 }, + { "lat": 40.8263837, "lon": -73.9405089 }, + { "lat": 40.8260550, "lon": -73.9397339 }, + { "lat": 40.8260017, "lon": -73.9396061 }, + { "lat": 40.8259506, "lon": -73.9394848 }, + { "lat": 40.8258825, "lon": -73.9393198 }, + { "lat": 40.8258371, "lon": -73.9392165 }, + { "lat": 40.8248882, "lon": -73.9369607 }, + { "lat": 40.8248415, "lon": -73.9368478 }, + { "lat": 40.8247731, "lon": -73.9366870 } + ], + "tags": { + "highway": "residential", + "name": "West 150th Street", + "name_1": "West 150 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "150th", + "tiger:name_base_1": "150", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 5671119, + "bounds": { + "minlat": 40.8271984, + "minlon": -73.9496880, + "maxlat": 40.8302440, + "maxlon": -73.9424324 + }, + "nodes": [ + 42441771, + 11191809985, + 11218866111, + 42428944, + 561035366, + 11218866105, + 11221649605, + 42442635, + 11221649602, + 8344802619, + 11218890518, + 42443582, + 11218890516, + 11221649567, + 42432974, + 11221649564, + 11218752319, + 42427881 + ], + "geometry": [ + { "lat": 40.8302440, "lon": -73.9496880 }, + { "lat": 40.8302214, "lon": -73.9496333 }, + { "lat": 40.8296881, "lon": -73.9483440 }, + { "lat": 40.8296454, "lon": -73.9482407 }, + { "lat": 40.8295673, "lon": -73.9480557 }, + { "lat": 40.8295189, "lon": -73.9479412 }, + { "lat": 40.8284550, "lon": -73.9454264 }, + { "lat": 40.8283947, "lon": -73.9452839 }, + { "lat": 40.8283475, "lon": -73.9451712 }, + { "lat": 40.8282090, "lon": -73.9448411 }, + { "lat": 40.8278622, "lon": -73.9440108 }, + { "lat": 40.8278201, "lon": -73.9439099 }, + { "lat": 40.8277793, "lon": -73.9438131 }, + { "lat": 40.8274038, "lon": -73.9429232 }, + { "lat": 40.8273441, "lon": -73.9427817 }, + { "lat": 40.8272952, "lon": -73.9426657 }, + { "lat": 40.8272402, "lon": -73.9425334 }, + { "lat": 40.8271984, "lon": -73.9424324 } + ], + "tags": { + "highway": "residential", + "name": "West 150th Street", + "name_1": "West 150 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "150th", + "tiger:name_base_1": "150", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 5671121, + "bounds": { + "minlat": 40.7134819, + "minlon": -74.0048174, + "maxlat": 40.7140166, + "maxlon": -74.0044302 + }, + "nodes": [ + 42431602, + 8262309637, + 5487729367, + 5487729370, + 11401559334, + 7182561635, + 42443588 + ], + "geometry": [ + { "lat": 40.7134819, "lon": -74.0048174 }, + { "lat": 40.7135592, "lon": -74.0047551 }, + { "lat": 40.7136386, "lon": -74.0046906 }, + { "lat": 40.7138630, "lon": -74.0045089 }, + { "lat": 40.7139069, "lon": -74.0044745 }, + { "lat": 40.7139493, "lon": -74.0044415 }, + { "lat": 40.7140166, "lon": -74.0044302 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Elk Street", + "name:etymology:wikidata": "Q2895789", + "name:ko": "엘크 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671129, + "bounds": { + "minlat": 40.7616156, + "minlon": -73.9744717, + "maxlat": 40.7622903, + "maxlon": -73.9728581 + }, + "nodes": [ + 42431544, + 10171655543, + 11294629840, + 42443612 + ], + "geometry": [ + { "lat": 40.7622903, "lon": -73.9744717 }, + { "lat": 40.7622384, "lon": -73.9743475 }, + { "lat": 40.7616631, "lon": -73.9729718 }, + { "lat": 40.7616156, "lon": -73.9728581 } + ], + "tags": { + "bicycle": "dismount", + "foot": "yes", + "highway": "residential", + "lanes": "2", + "motor_vehicle": "no", + "name": "East 56th Street", + "name:ru": "Восточная 56-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:right:surface": "concrete", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671134, + "bounds": { + "minlat": 40.7923773, + "minlon": -73.9662869, + "maxlat": 40.7932882, + "maxlon": -73.9641772 + }, + "nodes": [ + 42425232, + 7779666016, + 7801775726 + ], + "geometry": [ + { "lat": 40.7923773, "lon": -73.9641772 }, + { "lat": 40.7924476, "lon": -73.9642848 }, + { "lat": 40.7932882, "lon": -73.9662869 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 97th Street", + "name:ru": "Западная 97-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671135, + "bounds": { + "minlat": 40.8179047, + "minlon": -73.9371126, + "maxlat": 40.8191141, + "maxlon": -73.9342503 + }, + "nodes": [ + 3099327965, + 9557086589, + 10899250512, + 9902223879, + 9557110436, + 42426968 + ], + "geometry": [ + { "lat": 40.8191141, "lon": -73.9371126 }, + { "lat": 40.8190789, "lon": -73.9370293 }, + { "lat": 40.8185961, "lon": -73.9358865 }, + { "lat": 40.8179800, "lon": -73.9344284 }, + { "lat": 40.8179469, "lon": -73.9343501 }, + { "lat": 40.8179047, "lon": -73.9342503 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 143rd Street", + "name_1": "West 143 Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5671137, + "bounds": { + "minlat": 40.8233637, + "minlon": -73.9530658, + "maxlat": 40.8258457, + "maxlon": -73.9471685 + }, + "nodes": [ + 42443658, + 10743755851, + 10743755752, + 42442618, + 10743755747, + 10743755746, + 42443659, + 10743755741, + 2922071093, + 561035359, + 42428926, + 2922071092, + 10743755711, + 12952282847, + 42441952 + ], + "geometry": [ + { "lat": 40.8233637, "lon": -73.9471685 }, + { "lat": 40.8234006, "lon": -73.9472563 }, + { "lat": 40.8238926, "lon": -73.9484272 }, + { "lat": 40.8239409, "lon": -73.9485422 }, + { "lat": 40.8239976, "lon": -73.9486771 }, + { "lat": 40.8240523, "lon": -73.9488072 }, + { "lat": 40.8240836, "lon": -73.9488816 }, + { "lat": 40.8241257, "lon": -73.9489820 }, + { "lat": 40.8250564, "lon": -73.9511967 }, + { "lat": 40.8251039, "lon": -73.9513097 }, + { "lat": 40.8251862, "lon": -73.9515057 }, + { "lat": 40.8252253, "lon": -73.9515987 }, + { "lat": 40.8257741, "lon": -73.9529047 }, + { "lat": 40.8258092, "lon": -73.9529804 }, + { "lat": 40.8258457, "lon": -73.9530658 } + ], + "tags": { + "highway": "residential", + "incline": "down", + "name": "West 143rd Street", + "name_1": "West 143 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "143rd", + "tiger:name_base_1": "143", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 5671140, + "bounds": { + "minlat": 40.7049134, + "minlon": -74.0173422, + "maxlat": 40.7071296, + "maxlon": -74.0164774 + }, + "nodes": [ + 246901366, + 1430380058, + 7728114202, + 42443666, + 7728114203, + 5708140037, + 42429521, + 5708140036, + 10292280005, + 11416176631, + 3778160094 + ], + "geometry": [ + { "lat": 40.7049134, "lon": -74.0173422 }, + { "lat": 40.7050210, "lon": -74.0172994 }, + { "lat": 40.7057383, "lon": -74.0170129 }, + { "lat": 40.7057934, "lon": -74.0169952 }, + { "lat": 40.7058600, "lon": -74.0169675 }, + { "lat": 40.7064245, "lon": -74.0167543 }, + { "lat": 40.7064948, "lon": -74.0167254 }, + { "lat": 40.7065701, "lon": -74.0166943 }, + { "lat": 40.7070863, "lon": -74.0164932 }, + { "lat": 40.7071081, "lon": -74.0164850 }, + { "lat": 40.7071296, "lon": -74.0164774 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Little West Street", + "name:ko": "리틀 웨스트 스트리트", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671158, + "bounds": { + "minlat": 40.7281239, + "minlon": -73.9902269, + "maxlat": 40.7287000, + "maxlon": -73.9898044 + }, + "nodes": [ + 42434197, + 8309479209, + 12616810057, + 8309479204, + 42443799 + ], + "geometry": [ + { "lat": 40.7287000, "lon": -73.9898044 }, + { "lat": 40.7286393, "lon": -73.9898468 }, + { "lat": 40.7282224, "lon": -73.9901542 }, + { "lat": 40.7281735, "lon": -73.9901903 }, + { "lat": 40.7281239, "lon": -73.9902269 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Taras Shevchenko Place", + "name:etymology:wikidata": "Q134958", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7685550", + "wikipedia": "en:Taras Shevchenko Place" + } +}, +{ + "type": "way", + "id": 5671160, + "bounds": { + "minlat": 40.7525763, + "minlon": -73.9783319, + "maxlat": 40.7530493, + "maxlon": -73.9779849 + }, + "nodes": [ + 11507279855, + 11507279854 + ], + "geometry": [ + { "lat": 40.7525763, "lon": -73.9783319 }, + { "lat": 40.7530493, "lon": -73.9779849 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Vanderbilt Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "paving_stones", + "wikidata": "Q75889665", + "wikipedia": "en:Vanderbilt Avenue" + } +}, +{ + "type": "way", + "id": 5671162, + "bounds": { + "minlat": 40.8019158, + "minlon": -73.9446222, + "maxlat": 40.8032304, + "maxlon": -73.9415029 + }, + "nodes": [ + 42429552, + 4577988771, + 3023172096, + 11295744908, + 42443817, + 11295744905, + 13703650946, + 10170646987, + 596776594 + ], + "geometry": [ + { "lat": 40.8032304, "lon": -73.9446222 }, + { "lat": 40.8031616, "lon": -73.9444500 }, + { "lat": 40.8027649, "lon": -73.9435147 }, + { "lat": 40.8026123, "lon": -73.9431436 }, + { "lat": 40.8025484, "lon": -73.9429883 }, + { "lat": 40.8024998, "lon": -73.9428743 }, + { "lat": 40.8021950, "lon": -73.9421588 }, + { "lat": 40.8019472, "lon": -73.9415771 }, + { "lat": 40.8019158, "lon": -73.9415029 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "East 120th Street", + "name:ru": "Восточная 120-я стрит", + "name_1": "East 120 Street", + "oneway": "yes", + "parking:lane:both": "parallel", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671172, + "bounds": { + "minlat": 40.7139579, + "minlon": -74.0030498, + "maxlat": 40.7145189, + "maxlon": -74.0024513 + }, + "nodes": [ + 4561384853, + 11380040167, + 12198027590, + 11380040166, + 4561384854, + 9377535382, + 12198027587, + 1253070422, + 11380040172, + 42427290, + 12198027588, + 11380040175, + 4561384855, + 12198027589, + 1253071031 + ], + "geometry": [ + { "lat": 40.7139579, "lon": -74.0030498 }, + { "lat": 40.7140160, "lon": -74.0029524 }, + { "lat": 40.7140544, "lon": -74.0028892 }, + { "lat": 40.7140933, "lon": -74.0028320 }, + { "lat": 40.7141394, "lon": -74.0027686 }, + { "lat": 40.7141843, "lon": -74.0027113 }, + { "lat": 40.7142079, "lon": -74.0026842 }, + { "lat": 40.7142330, "lon": -74.0026574 }, + { "lat": 40.7142669, "lon": -74.0026272 }, + { "lat": 40.7142947, "lon": -74.0026013 }, + { "lat": 40.7143355, "lon": -74.0025692 }, + { "lat": 40.7143795, "lon": -74.0025371 }, + { "lat": 40.7144242, "lon": -74.0025053 }, + { "lat": 40.7144690, "lon": -74.0024780 }, + { "lat": 40.7145189, "lon": -74.0024513 } + ], + "tags": { + "alt_name": "Foley Square", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671179, + "bounds": { + "minlat": 40.7102983, + "minlon": -73.9892707, + "maxlat": 40.7106524, + "maxlon": -73.9883192 + }, + "nodes": [ + 4581870335, + 8310246592, + 4581870334, + 5487766136, + 5487766138, + 5487766140, + 5487766142 + ], + "geometry": [ + { "lat": 40.7102983, "lon": -73.9883192 }, + { "lat": 40.7103647, "lon": -73.9883259 }, + { "lat": 40.7106524, "lon": -73.9883808 }, + { "lat": 40.7106315, "lon": -73.9885948 }, + { "lat": 40.7106090, "lon": -73.9888256 }, + { "lat": 40.7105852, "lon": -73.9890697 }, + { "lat": 40.7105656, "lon": -73.9892707 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671181, + "bounds": { + "minlat": 40.7515125, + "minlon": -73.9863990, + "maxlat": 40.7517000, + "maxlon": -73.9859694 + }, + "nodes": [ + 4207937591, + 3769557281, + 10169532556, + 42430314 + ], + "geometry": [ + { "lat": 40.7515125, "lon": -73.9859694 }, + { "lat": 40.7515541, "lon": -73.9860648 }, + { "lat": 40.7516424, "lon": -73.9862670 }, + { "lat": 40.7517000, "lon": -73.9863990 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "||right" + } +}, +{ + "type": "way", + "id": 5671182, + "bounds": { + "minlat": 40.7578359, + "minlon": -73.9871891, + "maxlat": 40.7584619, + "maxlon": -73.9867284 + }, + "nodes": [ + 42443559, + 6598535219, + 6598535218, + 42432697 + ], + "geometry": [ + { "lat": 40.7578359, "lon": -73.9871891 }, + { "lat": 40.7578898, "lon": -73.9871494 }, + { "lat": 40.7584018, "lon": -73.9867726 }, + { "lat": 40.7584619, "lon": -73.9867284 } + ], + "tags": { + "highway": "pedestrian", + "name": "Shubert Alley", + "wikidata": "Q7504539", + "wikipedia": "en:Shubert Alley" + } +}, +{ + "type": "way", + "id": 5671185, + "bounds": { + "minlat": 40.8746713, + "minlon": -73.9110993, + "maxlat": 40.8766068, + "maxlon": -73.9094254 + }, + "nodes": [ + 42427934, + 10868090831, + 10868090816, + 42443987, + 10868090817, + 10868090810, + 10868090815, + 42437835, + 42443990 + ], + "geometry": [ + { "lat": 40.8746713, "lon": -73.9110993 }, + { "lat": 40.8747140, "lon": -73.9110440 }, + { "lat": 40.8759379, "lon": -73.9094650 }, + { "lat": 40.8759787, "lon": -73.9094307 }, + { "lat": 40.8760233, "lon": -73.9094254 }, + { "lat": 40.8760996, "lon": -73.9094321 }, + { "lat": 40.8761468, "lon": -73.9094362 }, + { "lat": 40.8762720, "lon": -73.9094470 }, + { "lat": 40.8766068, "lon": -73.9094916 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "foot": "yes", + "highway": "residential", + "inline_skates": "yes", + "lcn": "yes", + "name": "Marble Hill Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Marble Hill", + "tiger:name_type": "Ave", + "tiger:zip_left": "10463" + } +}, +{ + "type": "way", + "id": 5671187, + "bounds": { + "minlat": 40.8267340, + "minlon": -73.9396880, + "maxlat": 40.8276597, + "maxlon": -73.9375554 + }, + "nodes": [ + 42440072, + 11218821632, + 11762434880, + 42435891, + 11762434877, + 12879244606, + 13535333112, + 9153608676, + 11218602241, + 9153608677, + 13535333110, + 9153608678, + 13535333111, + 42444028 + ], + "geometry": [ + { "lat": 40.8276597, "lon": -73.9396880 }, + { "lat": 40.8276233, "lon": -73.9396001 }, + { "lat": 40.8273062, "lon": -73.9388346 }, + { "lat": 40.8272479, "lon": -73.9386938 }, + { "lat": 40.8271994, "lon": -73.9385767 }, + { "lat": 40.8270109, "lon": -73.9381217 }, + { "lat": 40.8269020, "lon": -73.9378587 }, + { "lat": 40.8268639, "lon": -73.9377668 }, + { "lat": 40.8268380, "lon": -73.9377127 }, + { "lat": 40.8268289, "lon": -73.9376920 }, + { "lat": 40.8268134, "lon": -73.9376665 }, + { "lat": 40.8267946, "lon": -73.9376391 }, + { "lat": 40.8267797, "lon": -73.9376154 }, + { "lat": 40.8267340, "lon": -73.9375554 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 152nd Street", + "name_1": "West 152 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "152nd", + "tiger:name_base_1": "152", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 5671189, + "bounds": { + "minlat": 40.8308032, + "minlon": -73.9473375, + "maxlat": 40.8308954, + "maxlon": -73.9471314 + }, + "nodes": [ + 42428951, + 561035368 + ], + "geometry": [ + { "lat": 40.8308954, "lon": -73.9473375 }, + { "lat": 40.8308032, "lon": -73.9471314 } + ], + "tags": { + "highway": "residential", + "name": "West 152nd Street", + "name_1": "West 152 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "152nd", + "tiger:name_base_1": "152", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 5671192, + "bounds": { + "minlat": 40.7507505, + "minlon": -73.9726808, + "maxlat": 40.7525411, + "maxlon": -73.9684095 + }, + "nodes": [ + 42444055, + 3569749123, + 3829871477, + 12673774534, + 42442947, + 10173288478, + 4207915681 + ], + "geometry": [ + { "lat": 40.7507505, "lon": -73.9684095 }, + { "lat": 40.7508123, "lon": -73.9685658 }, + { "lat": 40.7513585, "lon": -73.9698674 }, + { "lat": 40.7516917, "lon": -73.9706697 }, + { "lat": 40.7517476, "lon": -73.9708043 }, + { "lat": 40.7518048, "lon": -73.9709460 }, + { "lat": 40.7525411, "lon": -73.9726808 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "East 45th Street", + "name:ru": "Восточная 45-я стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9.2" + } +}, +{ + "type": "way", + "id": 5671196, + "bounds": { + "minlat": 40.8491056, + "minlon": -73.9337310, + "maxlat": 40.8493210, + "maxlon": -73.9332106 + }, + "nodes": [ + 4215780090, + 11595000900, + 11595000899, + 5403873762, + 42433066 + ], + "geometry": [ + { "lat": 40.8491056, "lon": -73.9332106 }, + { "lat": 40.8491364, "lon": -73.9332870 }, + { "lat": 40.8492398, "lon": -73.9335357 }, + { "lat": 40.8492701, "lon": -73.9336085 }, + { "lat": 40.8493210, "lon": -73.9337310 } + ], + "tags": { + "alt_name": "Manolo Tavarez Justo Way", + "bus": "yes", + "busway:both": "lane", + "description": "This honorary street name memorializes Manolo Tavarez Justo.", + "hgv": "local", + "highway": "tertiary", + "historic": "memorial", + "motor_vehicle:conditional": "destination @ (Mo-Su 06:00-20:00)", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5671197, + "bounds": { + "minlat": 40.7092439, + "minlon": -73.9959330, + "maxlat": 40.7095135, + "maxlon": -73.9940239 + }, + "nodes": [ + 588455857, + 8276469284, + 9907939578, + 7830788122, + 42444116 + ], + "geometry": [ + { "lat": 40.7092439, "lon": -73.9959330 }, + { "lat": 40.7092499, "lon": -73.9958833 }, + { "lat": 40.7094306, "lon": -73.9946347 }, + { "lat": 40.7094977, "lon": -73.9941701 }, + { "lat": 40.7095135, "lon": -73.9940239 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "no", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671202, + "bounds": { + "minlat": 40.7028071, + "minlon": -74.0086477, + "maxlat": 40.7032048, + "maxlon": -74.0079952 + }, + "nodes": [ + 42421965, + 8276468430, + 8629148774, + 12331047782 + ], + "geometry": [ + { "lat": 40.7032048, "lon": -74.0079952 }, + { "lat": 40.7031651, "lon": -74.0080546 }, + { "lat": 40.7030434, "lon": -74.0082584 }, + { "lat": 40.7028071, "lon": -74.0086477 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:left:restriction": "no_parking", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671203, + "bounds": { + "minlat": 40.7324688, + "minlon": -74.0098677, + "maxlat": 40.7331956, + "maxlon": -74.0098002 + }, + "nodes": [ + 42436899, + 8288270340, + 8526690229, + 8288270339, + 42444267 + ], + "geometry": [ + { "lat": 40.7324688, "lon": -74.0098677 }, + { "lat": 40.7325680, "lon": -74.0098591 }, + { "lat": 40.7331087, "lon": -74.0098089 }, + { "lat": 40.7331646, "lon": -74.0098037 }, + { "lat": 40.7331956, "lon": -74.0098002 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Weehawken Street", + "name:ru": "Вихокен-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q13443365", + "wikipedia": "en:Weehawken Street" + } +}, +{ + "type": "way", + "id": 5671212, + "bounds": { + "minlat": 40.7110832, + "minlon": -74.0006940, + "maxlat": 40.7111741, + "maxlon": -74.0006074 + }, + "nodes": [ + 42444282, + 11501440576, + 42444279 + ], + "geometry": [ + { "lat": 40.7111741, "lon": -74.0006940 }, + { "lat": 40.7111293, "lon": -74.0006565 }, + { "lat": 40.7110832, "lon": -74.0006074 } + ], + "tags": { + "bicycle": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671220, + "bounds": { + "minlat": 40.7861726, + "minlon": -73.9721811, + "maxlat": 40.7864968, + "maxlon": -73.9714151 + }, + "nodes": [ + 4215936660, + 9906904529, + 42443353 + ], + "geometry": [ + { "lat": 40.7861726, "lon": -73.9714151 }, + { "lat": 40.7864410, "lon": -73.9720479 }, + { "lat": 40.7864968, "lon": -73.9721811 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 86th Street", + "name:ru": "Западная 86-я стрит", + "name_1": "West 86 Street", + "oneway": "no", + "sidewalk:both": "separate", + "turn:lanes:forward": "left;through|through", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671222, + "bounds": { + "minlat": 40.7829443, + "minlon": -73.9567171, + "maxlat": 40.7866012, + "maxlon": -73.9480373 + }, + "nodes": [ + 42444485, + 7093620695, + 6270714174, + 42444487, + 7093620701, + 7093532776, + 596776173, + 42444491, + 7093620706, + 7093620697, + 42444495, + 7093620712, + 7158854729, + 6181478367, + 42444500, + 6181480027, + 5401363739, + 5401365122, + 8644420813, + 5399637662, + 6181480019, + 42443052 + ], + "geometry": [ + { "lat": 40.7866012, "lon": -73.9567171 }, + { "lat": 40.7865596, "lon": -73.9566199 }, + { "lat": 40.7859703, "lon": -73.9552216 }, + { "lat": 40.7859253, "lon": -73.9551138 }, + { "lat": 40.7858814, "lon": -73.9550096 }, + { "lat": 40.7853332, "lon": -73.9537082 }, + { "lat": 40.7852889, "lon": -73.9536033 }, + { "lat": 40.7852132, "lon": -73.9534225 }, + { "lat": 40.7851658, "lon": -73.9533088 }, + { "lat": 40.7846117, "lon": -73.9519952 }, + { "lat": 40.7845692, "lon": -73.9518920 }, + { "lat": 40.7845232, "lon": -73.9517831 }, + { "lat": 40.7840033, "lon": -73.9505221 }, + { "lat": 40.7839621, "lon": -73.9504221 }, + { "lat": 40.7839085, "lon": -73.9502957 }, + { "lat": 40.7838429, "lon": -73.9501526 }, + { "lat": 40.7834948, "lon": -73.9493441 }, + { "lat": 40.7833348, "lon": -73.9489644 }, + { "lat": 40.7831895, "lon": -73.9486195 }, + { "lat": 40.7831579, "lon": -73.9485444 }, + { "lat": 40.7830018, "lon": -73.9481740 }, + { "lat": 40.7829443, "lon": -73.9480373 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 94th Street", + "name:ru": "Восточная 94-я стрит", + "name_1": "East 94 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671244, + "bounds": { + "minlat": 40.8115152, + "minlon": -73.9349267, + "maxlat": 40.8140490, + "maxlon": -73.9346082 + }, + "nodes": [ + 589927965, + 9163819580, + 9163819579, + 9163819578, + 9163819576, + 9163819577, + 9163819574, + 5959344390, + 9902223893, + 9163819575, + 9902223894, + 589928025, + 9902223895, + 9902223896, + 373761176, + 9166236571, + 373760601, + 7732243576, + 589928047 + ], + "geometry": [ + { "lat": 40.8140490, "lon": -73.9348455 }, + { "lat": 40.8140148, "lon": -73.9348294 }, + { "lat": 40.8139905, "lon": -73.9348236 }, + { "lat": 40.8139713, "lon": -73.9348030 }, + { "lat": 40.8139490, "lon": -73.9347723 }, + { "lat": 40.8139047, "lon": -73.9346899 }, + { "lat": 40.8138836, "lon": -73.9346615 }, + { "lat": 40.8138535, "lon": -73.9346386 }, + { "lat": 40.8138239, "lon": -73.9346240 }, + { "lat": 40.8137847, "lon": -73.9346108 }, + { "lat": 40.8137474, "lon": -73.9346082 }, + { "lat": 40.8137089, "lon": -73.9346116 }, + { "lat": 40.8133174, "lon": -73.9346463 }, + { "lat": 40.8125657, "lon": -73.9347322 }, + { "lat": 40.8122596, "lon": -73.9347802 }, + { "lat": 40.8117604, "lon": -73.9348615 }, + { "lat": 40.8117081, "lon": -73.9348719 }, + { "lat": 40.8116473, "lon": -73.9348857 }, + { "lat": 40.8115152, "lon": -73.9349267 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671246, + "bounds": { + "minlat": 40.8142611, + "minlon": -73.9346833, + "maxlat": 40.8147435, + "maxlon": -73.9345542 + }, + "nodes": [ + 42425423, + 42444801, + 9163819582, + 5175281829, + 9902223891, + 6860035683, + 373761421 + ], + "geometry": [ + { "lat": 40.8147435, "lon": -73.9345542 }, + { "lat": 40.8145149, "lon": -73.9345778 }, + { "lat": 40.8144675, "lon": -73.9345870 }, + { "lat": 40.8144240, "lon": -73.9346005 }, + { "lat": 40.8143816, "lon": -73.9346168 }, + { "lat": 40.8143449, "lon": -73.9346348 }, + { "lat": 40.8142611, "lon": -73.9346833 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671248, + "bounds": { + "minlat": 40.7834134, + "minlon": -73.9585567, + "maxlat": 40.7840871, + "maxlon": -73.9569479 + }, + "nodes": [ + 42444809, + 5306313709, + 5306313695, + 42444810 + ], + "geometry": [ + { "lat": 40.7840871, "lon": -73.9585567 }, + { "lat": 40.7840511, "lon": -73.9584612 }, + { "lat": 40.7834639, "lon": -73.9570661 }, + { "lat": 40.7834134, "lon": -73.9569479 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "East 90th Street", + "name:ru": "Восточная 90-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671255, + "bounds": { + "minlat": 40.8210002, + "minlon": -73.9424110, + "maxlat": 40.8221640, + "maxlon": -73.9396466 + }, + "nodes": [ + 42435865, + 8008242708, + 9150629556, + 42439910 + ], + "geometry": [ + { "lat": 40.8221640, "lon": -73.9424110 }, + { "lat": 40.8221134, "lon": -73.9422908 }, + { "lat": 40.8210471, "lon": -73.9397588 }, + { "lat": 40.8210002, "lon": -73.9396466 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "West 144th Street", + "name_1": "West 144 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671257, + "bounds": { + "minlat": 40.8245499, + "minlon": -73.9508622, + "maxlat": 40.8257202, + "maxlon": -73.9480922 + }, + "nodes": [ + 561035360, + 11193596018, + 11200341574, + 42442621 + ], + "geometry": [ + { "lat": 40.8257202, "lon": -73.9508622 }, + { "lat": 40.8256755, "lon": -73.9507562 }, + { "lat": 40.8246072, "lon": -73.9482277 }, + { "lat": 40.8245499, "lon": -73.9480922 } + ], + "tags": { + "highway": "residential", + "name": "West 144th Street", + "name_1": "West 144 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "144th", + "tiger:name_base_1": "144", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 5671259, + "bounds": { + "minlat": 40.8687770, + "minlon": -73.9133520, + "maxlat": 40.8728056, + "maxlon": -73.9110801 + }, + "nodes": [ + 60915682, + 60915681, + 60915680, + 5487852123, + 60915679, + 5487851019, + 42444890, + 1769479908, + 5487855843, + 42427504, + 5487855835, + 42444884, + 9047393189, + 42429703, + 13715917447, + 13715917444, + 13715917441, + 9142910494, + 42444880, + 11591951182, + 9561160006, + 1769473620, + 42444873 + ], + "geometry": [ + { "lat": 40.8728056, "lon": -73.9116935 }, + { "lat": 40.8727559, "lon": -73.9116303 }, + { "lat": 40.8725417, "lon": -73.9114243 }, + { "lat": 40.8722864, "lon": -73.9112325 }, + { "lat": 40.8722561, "lon": -73.9112097 }, + { "lat": 40.8722404, "lon": -73.9112026 }, + { "lat": 40.8719706, "lon": -73.9110809 }, + { "lat": 40.8718722, "lon": -73.9110801 }, + { "lat": 40.8717159, "lon": -73.9111908 }, + { "lat": 40.8716544, "lon": -73.9112343 }, + { "lat": 40.8711148, "lon": -73.9116498 }, + { "lat": 40.8710506, "lon": -73.9116992 }, + { "lat": 40.8706123, "lon": -73.9120190 }, + { "lat": 40.8703989, "lon": -73.9121747 }, + { "lat": 40.8702056, "lon": -73.9123108 }, + { "lat": 40.8701155, "lon": -73.9123742 }, + { "lat": 40.8696560, "lon": -73.9126977 }, + { "lat": 40.8695575, "lon": -73.9127671 }, + { "lat": 40.8694440, "lon": -73.9128470 }, + { "lat": 40.8689133, "lon": -73.9132487 }, + { "lat": 40.8688781, "lon": -73.9132754 }, + { "lat": 40.8688730, "lon": -73.9132793 }, + { "lat": 40.8687770, "lon": -73.9133520 } + ], + "tags": { + "highway": "tertiary", + "name": "9th Avenue", + "name_1": "9 Avenue", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "9th", + "tiger:name_base_1": "9", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "tiger:zip_right_1": "10034", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671261, + "bounds": { + "minlat": 40.7394038, + "minlon": -74.0064427, + "maxlat": 40.7402910, + "maxlon": -74.0059134 + }, + "nodes": [ + 12162436970, + 8262308624, + 12162436977, + 12162436978, + 12162436979, + 12162436980, + 8262308587, + 42431151, + 12162436968, + 8262308649, + 4557517555 + ], + "geometry": [ + { "lat": 40.7394038, "lon": -74.0064406 }, + { "lat": 40.7394806, "lon": -74.0064417 }, + { "lat": 40.7395389, "lon": -74.0064427 }, + { "lat": 40.7395570, "lon": -74.0064422 }, + { "lat": 40.7395739, "lon": -74.0064401 }, + { "lat": 40.7395907, "lon": -74.0064344 }, + { "lat": 40.7396090, "lon": -74.0064240 }, + { "lat": 40.7396572, "lon": -74.0063902 }, + { "lat": 40.7402179, "lon": -74.0059674 }, + { "lat": 40.7402328, "lon": -74.0059562 }, + { "lat": 40.7402910, "lon": -74.0059134 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671276, + "bounds": { + "minlat": 40.7641124, + "minlon": -73.9884895, + "maxlat": 40.7647531, + "maxlon": -73.9880232 + }, + "nodes": [ + 42445027, + 3463815150, + 3463815149, + 42445025 + ], + "geometry": [ + { "lat": 40.7647531, "lon": -73.9880232 }, + { "lat": 40.7646848, "lon": -73.9880729 }, + { "lat": 40.7641739, "lon": -73.9884449 }, + { "lat": 40.7641124, "lon": -73.9884895 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671281, + "bounds": { + "minlat": 40.8598980, + "minlon": -73.9198460, + "maxlat": 40.8605270, + "maxlon": -73.9193790 + }, + "nodes": [ + 42432722, + 9561557609, + 11596481888, + 42445046 + ], + "geometry": [ + { "lat": 40.8598980, "lon": -73.9198460 }, + { "lat": 40.8599741, "lon": -73.9197895 }, + { "lat": 40.8604733, "lon": -73.9194189 }, + { "lat": 40.8605270, "lon": -73.9193790 } + ], + "tags": { + "highway": "residential", + "name": "9th Avenue", + "name_1": "9 Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "9th", + "tiger:name_base_1": "9", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671282, + "bounds": { + "minlat": 40.8010553, + "minlon": -73.9542177, + "maxlat": 40.8019538, + "maxlon": -73.9535577 + }, + "nodes": [ + 42448506, + 10170606859, + 10170606886, + 42431203, + 10170606882, + 9153603242 + ], + "geometry": [ + { "lat": 40.8019538, "lon": -73.9535577 }, + { "lat": 40.8019019, "lon": -73.9535959 }, + { "lat": 40.8013867, "lon": -73.9539751 }, + { "lat": 40.8013250, "lon": -73.9540205 }, + { "lat": 40.8012746, "lon": -73.9540573 }, + { "lat": 40.8010553, "lon": -73.9542177 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671283, + "bounds": { + "minlat": 40.8193928, + "minlon": -73.9601312, + "maxlat": 40.8197265, + "maxlon": -73.9593653 + }, + "nodes": [ + 42429541, + 10128889850, + 10128889851, + 42424701 + ], + "geometry": [ + { "lat": 40.8193928, "lon": -73.9593653 }, + { "lat": 40.8194350, "lon": -73.9594625 }, + { "lat": 40.8197101, "lon": -73.9600932 }, + { "lat": 40.8197265, "lon": -73.9601312 } + ], + "tags": { + "highway": "residential", + "name": "West 132nd Street", + "name_1": "West 132 Street" + } +}, +{ + "type": "way", + "id": 5671285, + "bounds": { + "minlat": 40.8587440, + "minlon": -73.9301220, + "maxlat": 40.8595450, + "maxlon": -73.9279770 + }, + "nodes": [ + 42421785, + 1764400314, + 9561314674, + 1764400293, + 9561314676, + 42443520 + ], + "geometry": [ + { "lat": 40.8587440, "lon": -73.9301220 }, + { "lat": 40.8587779, "lon": -73.9300312 }, + { "lat": 40.8587789, "lon": -73.9300289 }, + { "lat": 40.8595003, "lon": -73.9280974 }, + { "lat": 40.8595180, "lon": -73.9280494 }, + { "lat": 40.8595450, "lon": -73.9279770 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Bogardus Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bogardus", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q4937372", + "wikipedia": "en:Bogardus Place" + } +}, +{ + "type": "way", + "id": 5671291, + "bounds": { + "minlat": 40.7234576, + "minlon": -74.0047955, + "maxlat": 40.7236306, + "maxlon": -74.0038418 + }, + "nodes": [ + 42436770, + 8231938426, + 12187433943, + 4890320281, + 42430143 + ], + "geometry": [ + { "lat": 40.7234576, "lon": -74.0038418 }, + { "lat": 40.7234706, "lon": -74.0039114 }, + { "lat": 40.7235927, "lon": -74.0045853 }, + { "lat": 40.7236050, "lon": -74.0046503 }, + { "lat": 40.7236306, "lon": -74.0047955 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Watts Street", + "name:etymology:wikidata": "Q1702113", + "name:ko": "와츠 스트리트", + "name:ru": "Уоттс-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671295, + "bounds": { + "minlat": 40.8007405, + "minlon": -73.9420768, + "maxlat": 40.8038123, + "maxlon": -73.9347941 + }, + "nodes": [ + 42445183, + 10170656844, + 7471678537, + 10170656834, + 596776578, + 42445185, + 10170656839, + 5481977609, + 10122952977, + 42445189, + 10122952976, + 9148335673, + 11273617101, + 42445196, + 11273617098, + 5482291251, + 7925258746, + 42443099, + 3931534871 + ], + "geometry": [ + { "lat": 40.8038123, "lon": -73.9420768 }, + { "lat": 40.8037756, "lon": -73.9419896 }, + { "lat": 40.8033424, "lon": -73.9409601 }, + { "lat": 40.8032156, "lon": -73.9406603 }, + { "lat": 40.8031784, "lon": -73.9405724 }, + { "lat": 40.8030712, "lon": -73.9403209 }, + { "lat": 40.8030441, "lon": -73.9402566 }, + { "lat": 40.8026141, "lon": -73.9392377 }, + { "lat": 40.8024923, "lon": -73.9389337 }, + { "lat": 40.8024528, "lon": -73.9388372 }, + { "lat": 40.8024128, "lon": -73.9387416 }, + { "lat": 40.8020834, "lon": -73.9379787 }, + { "lat": 40.8018286, "lon": -73.9373807 }, + { "lat": 40.8017666, "lon": -73.9372351 }, + { "lat": 40.8017122, "lon": -73.9371055 }, + { "lat": 40.8012259, "lon": -73.9359475 }, + { "lat": 40.8008728, "lon": -73.9351217 }, + { "lat": 40.8008201, "lon": -73.9349913 }, + { "lat": 40.8007405, "lon": -73.9347941 } + ], + "tags": { + "highway": "residential", + "name": "East 122nd Street", + "name_1": "East 122 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671296, + "bounds": { + "minlat": 40.7210474, + "minlon": -74.0058479, + "maxlat": 40.7210872, + "maxlon": -74.0054166 + }, + "nodes": [ + 42438779, + 11492801311, + 11492801347, + 11492801310, + 11492801309, + 11492801308 + ], + "geometry": [ + { "lat": 40.7210691, "lon": -74.0058479 }, + { "lat": 40.7210802, "lon": -74.0058281 }, + { "lat": 40.7210840, "lon": -74.0058140 }, + { "lat": 40.7210865, "lon": -74.0058052 }, + { "lat": 40.7210872, "lon": -74.0057783 }, + { "lat": 40.7210474, "lon": -74.0054166 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "York Street", + "name:ko": "요크 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5671297, + "bounds": { + "minlat": 40.8093981, + "minlon": -73.9587270, + "maxlat": 40.8100023, + "maxlon": -73.9572467 + }, + "nodes": [ + 42435380, + 6791440576, + 1807949737, + 6816455652, + 3579432161 + ], + "geometry": [ + { "lat": 40.8093981, "lon": -73.9572467 }, + { "lat": 40.8094383, "lon": -73.9573426 }, + { "lat": 40.8098155, "lon": -73.9582578 }, + { "lat": 40.8099513, "lon": -73.9586028 }, + { "lat": 40.8100023, "lon": -73.9587270 } + ], + "tags": { + "alt_name": "George Carlin Way", + "cycleway:both": "no", + "highway": "residential", + "name": "West 121st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671298, + "bounds": { + "minlat": 40.8045239, + "minlon": -73.9502721, + "maxlat": 40.8064478, + "maxlon": -73.9457212 + }, + "nodes": [ + 3858909357, + 11296130431, + 7004418419, + 42445215, + 3099327957, + 7004418421, + 8758345334, + 2141026510, + 42439855 + ], + "geometry": [ + { "lat": 40.8045239, "lon": -73.9457212 }, + { "lat": 40.8045664, "lon": -73.9458214 }, + { "lat": 40.8051527, "lon": -73.9472050 }, + { "lat": 40.8051841, "lon": -73.9472816 }, + { "lat": 40.8052502, "lon": -73.9474392 }, + { "lat": 40.8052855, "lon": -73.9475231 }, + { "lat": 40.8063365, "lon": -73.9500182 }, + { "lat": 40.8063799, "lon": -73.9501152 }, + { "lat": 40.8064478, "lon": -73.9502721 } + ], + "tags": { + "highway": "residential", + "name": "West 121st Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671300, + "bounds": { + "minlat": 40.7652696, + "minlon": -73.9524669, + "maxlat": 40.7654155, + "maxlon": -73.9521462 + }, + "nodes": [ + 42427030, + 4562897759 + ], + "geometry": [ + { "lat": 40.7652696, "lon": -73.9521462 }, + { "lat": 40.7654155, "lon": -73.9524669 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 71st Street", + "name:ru": "Восточная 71-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671302, + "bounds": { + "minlat": 40.7885529, + "minlon": -73.9527422, + "maxlat": 40.7891818, + "maxlon": -73.9512551 + }, + "nodes": [ + 42445256, + 6254630418, + 5481897035, + 13715726946, + 8735320752, + 6254630440, + 596776231 + ], + "geometry": [ + { "lat": 40.7891818, "lon": -73.9527422 }, + { "lat": 40.7891339, "lon": -73.9526301 }, + { "lat": 40.7888815, "lon": -73.9520285 }, + { "lat": 40.7887448, "lon": -73.9517072 }, + { "lat": 40.7886039, "lon": -73.9513764 }, + { "lat": 40.7885853, "lon": -73.9513328 }, + { "lat": 40.7885529, "lon": -73.9512551 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 99th Street", + "name:ru": "Восточная 99-я стрит", + "name_1": "East 99 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671307, + "bounds": { + "minlat": 40.7155474, + "minlon": -74.0166469, + "maxlat": 40.7181293, + "maxlon": -74.0149597 + }, + "nodes": [ + 42445286, + 8304878679, + 1702442154, + 11432613106, + 1702442156, + 11432613105, + 1702442164, + 11432613104, + 1702442155, + 42429633, + 10172717293, + 8282447528, + 11450026775, + 1702442160, + 8282447529, + 42445289, + 10612369353, + 8282447533, + 8304878681, + 3762705796, + 10612369352, + 11450026883, + 1702442162, + 11450026882, + 1702442151, + 11450026886, + 11450026881, + 42445291, + 11450026892, + 5812734098, + 5812734099, + 11450026884, + 5812734100, + 5812734097, + 5812713656, + 5812713659, + 10612369350, + 42431635 + ], + "geometry": [ + { "lat": 40.7155474, "lon": -74.0166469 }, + { "lat": 40.7155813, "lon": -74.0166292 }, + { "lat": 40.7156969, "lon": -74.0165683 }, + { "lat": 40.7157808, "lon": -74.0165290 }, + { "lat": 40.7158521, "lon": -74.0165014 }, + { "lat": 40.7159402, "lon": -74.0164762 }, + { "lat": 40.7160345, "lon": -74.0164569 }, + { "lat": 40.7160983, "lon": -74.0164505 }, + { "lat": 40.7161678, "lon": -74.0164472 }, + { "lat": 40.7162867, "lon": -74.0164449 }, + { "lat": 40.7163703, "lon": -74.0164401 }, + { "lat": 40.7164618, "lon": -74.0164328 }, + { "lat": 40.7165629, "lon": -74.0164220 }, + { "lat": 40.7166624, "lon": -74.0164050 }, + { "lat": 40.7167684, "lon": -74.0163774 }, + { "lat": 40.7168730, "lon": -74.0163417 }, + { "lat": 40.7169480, "lon": -74.0163109 }, + { "lat": 40.7169849, "lon": -74.0162933 }, + { "lat": 40.7170498, "lon": -74.0162600 }, + { "lat": 40.7171209, "lon": -74.0162226 }, + { "lat": 40.7171412, "lon": -74.0162107 }, + { "lat": 40.7172492, "lon": -74.0161454 }, + { "lat": 40.7173573, "lon": -74.0160700 }, + { "lat": 40.7174389, "lon": -74.0160024 }, + { "lat": 40.7175205, "lon": -74.0159298 }, + { "lat": 40.7176072, "lon": -74.0158483 }, + { "lat": 40.7176212, "lon": -74.0158351 }, + { "lat": 40.7176755, "lon": -74.0157766 }, + { "lat": 40.7177199, "lon": -74.0157246 }, + { "lat": 40.7177430, "lon": -74.0156977 }, + { "lat": 40.7178132, "lon": -74.0156028 }, + { "lat": 40.7178845, "lon": -74.0154994 }, + { "lat": 40.7179525, "lon": -74.0153918 }, + { "lat": 40.7180382, "lon": -74.0152391 }, + { "lat": 40.7180923, "lon": -74.0151307 }, + { "lat": 40.7181165, "lon": -74.0150607 }, + { "lat": 40.7181293, "lon": -74.0149992 }, + { "lat": 40.7181289, "lon": -74.0149597 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "River Terrace", + "name:ko": "리버 테라스", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671311, + "bounds": { + "minlat": 40.7517376, + "minlon": -74.0080267, + "maxlat": 40.7518159, + "maxlon": -74.0078289 + }, + "nodes": [ + 12161224646, + 42445314 + ], + "geometry": [ + { "lat": 40.7518159, "lon": -74.0080267 }, + { "lat": 40.7517376, "lon": -74.0078289 } + ], + "tags": { + "bicycle": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 5671314, + "bounds": { + "minlat": 40.7136430, + "minlon": -74.0075330, + "maxlat": 40.7154325, + "maxlon": -74.0036108 + }, + "nodes": [ + 9121386349, + 9121386338, + 4878838722, + 11401559353, + 7182561637, + 42443588, + 7182561636, + 8279851426, + 42428402, + 8279851429, + 8312361679, + 42445356 + ], + "geometry": [ + { "lat": 40.7136430, "lon": -74.0036108 }, + { "lat": 40.7136604, "lon": -74.0036490 }, + { "lat": 40.7137036, "lon": -74.0037434 }, + { "lat": 40.7139592, "lon": -74.0043038 }, + { "lat": 40.7139888, "lon": -74.0043698 }, + { "lat": 40.7140166, "lon": -74.0044302 }, + { "lat": 40.7140431, "lon": -74.0044882 }, + { "lat": 40.7146394, "lon": -74.0057952 }, + { "lat": 40.7146811, "lon": -74.0058866 }, + { "lat": 40.7147261, "lon": -74.0059853 }, + { "lat": 40.7153850, "lon": -74.0074296 }, + { "lat": 40.7154325, "lon": -74.0075330 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Reade Street", + "name:etymology:wikidata": "Q38099995", + "name:ko": "리드 스트리트", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671315, + "bounds": { + "minlat": 40.7477705, + "minlon": -73.9834428, + "maxlat": 40.7479728, + "maxlon": -73.9829612 + }, + "nodes": [ + 42445365, + 8133342865, + 4207937589 + ], + "geometry": [ + { "lat": 40.7477705, "lon": -73.9829612 }, + { "lat": 40.7478098, "lon": -73.9830489 }, + { "lat": 40.7479728, "lon": -73.9834428 } + ], + "tags": { + "access:lanes:backward": "yes|yes|no", + "access:lanes:forward": "yes|no", + "bus:lanes:backward": "yes|yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671317, + "bounds": { + "minlat": 40.7452501, + "minlon": -73.9863915, + "maxlat": 40.7459215, + "maxlon": -73.9847940 + }, + "nodes": [ + 42437686, + 10167162610, + 10168210219, + 42445404 + ], + "geometry": [ + { "lat": 40.7459215, "lon": -73.9863915 }, + { "lat": 40.7458720, "lon": -73.9862735 }, + { "lat": 40.7452909, "lon": -73.9848906 }, + { "lat": 40.7452501, "lon": -73.9847940 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "East 30th Street", + "name:ru": "Восточная 30-я стрит", + "name_1": "East 30 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671318, + "bounds": { + "minlat": 40.7937567, + "minlon": -73.9363530, + "maxlat": 40.7947105, + "maxlon": -73.9341084 + }, + "nodes": [ + 42445426, + 4980851593, + 9906259298, + 7924346943, + 42445430 + ], + "geometry": [ + { "lat": 40.7947105, "lon": -73.9363530 }, + { "lat": 40.7946465, "lon": -73.9362310 }, + { "lat": 40.7938326, "lon": -73.9342927 }, + { "lat": 40.7938056, "lon": -73.9342285 }, + { "lat": 40.7937567, "lon": -73.9341084 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 114th Street", + "name:ru": "Восточная 114-я стрит", + "name_1": "East 114 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671319, + "bounds": { + "minlat": 40.7781744, + "minlon": -73.9773846, + "maxlat": 40.7793715, + "maxlon": -73.9745417 + }, + "nodes": [ + 42435295, + 7784867902, + 9001499679, + 42443344 + ], + "geometry": [ + { "lat": 40.7781744, "lon": -73.9745417 }, + { "lat": 40.7782247, "lon": -73.9746579 }, + { "lat": 40.7793169, "lon": -73.9772520 }, + { "lat": 40.7793715, "lon": -73.9773846 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 75th Street", + "name:ru": "Западная 75-я стрит", + "name_1": "West 75 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671322, + "bounds": { + "minlat": 40.7215953, + "minlon": -73.9977932, + "maxlat": 40.7222994, + "maxlon": -73.9971193 + }, + "nodes": [ + 42442247, + 2154628339, + 12187436346, + 5152337880, + 42430044 + ], + "geometry": [ + { "lat": 40.7222994, "lon": -73.9971193 }, + { "lat": 40.7222853, "lon": -73.9972121 }, + { "lat": 40.7216938, "lon": -73.9977108 }, + { "lat": 40.7216462, "lon": -73.9977495 }, + { "lat": 40.7215953, "lon": -73.9977932 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (12:00-23:00)", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 5671326, + "bounds": { + "minlat": 40.7033084, + "minlon": -74.0106418, + "maxlat": 40.7037261, + "maxlon": -74.0102058 + }, + "nodes": [ + 5228410329, + 11040253976, + 12133633861, + 11040280539, + 8276468768, + 11040280575, + 11040280507, + 8276468775 + ], + "geometry": [ + { "lat": 40.7033084, "lon": -74.0102058 }, + { "lat": 40.7033458, "lon": -74.0102450 }, + { "lat": 40.7033551, "lon": -74.0102547 }, + { "lat": 40.7033874, "lon": -74.0102883 }, + { "lat": 40.7036911, "lon": -74.0106062 }, + { "lat": 40.7037010, "lon": -74.0106160 }, + { "lat": 40.7037086, "lon": -74.0106235 }, + { "lat": 40.7037261, "lon": -74.0106418 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Coenties Slip", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Coenties Slip", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q5140796", + "wikipedia": "en:Coenties Slip" + } +}, +{ + "type": "way", + "id": 5671327, + "bounds": { + "minlat": 40.7266017, + "minlon": -74.0089600, + "maxlat": 40.7267539, + "maxlon": -74.0074309 + }, + "nodes": [ + 42436093, + 8307641930, + 8307641934, + 42436359 + ], + "geometry": [ + { "lat": 40.7267539, "lon": -74.0089600 }, + { "lat": 40.7267454, "lon": -74.0088702 }, + { "lat": 40.7266142, "lon": -74.0075643 }, + { "lat": 40.7266017, "lon": -74.0074309 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Vandam Street", + "name:ko": "밴담 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29135239", + "wikipedia": "en:Vandam Street" + } +}, +{ + "type": "way", + "id": 5671329, + "bounds": { + "minlat": 40.8766068, + "minlon": -73.9106070, + "maxlat": 40.8773550, + "maxlon": -73.9094916 + }, + "nodes": [ + 42445578, + 10868090833, + 13068324342, + 42438935, + 1545097195, + 8153243803, + 1545097214, + 10868090808, + 42443990 + ], + "geometry": [ + { "lat": 40.8773550, "lon": -73.9106070 }, + { "lat": 40.8773183, "lon": -73.9105563 }, + { "lat": 40.8770071, "lon": -73.9101274 }, + { "lat": 40.8769697, "lon": -73.9100757 }, + { "lat": 40.8766560, "lon": -73.9096539 }, + { "lat": 40.8766446, "lon": -73.9096272 }, + { "lat": 40.8766245, "lon": -73.9095799 }, + { "lat": 40.8766200, "lon": -73.9095577 }, + { "lat": 40.8766068, "lon": -73.9094916 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "West 227th Street", + "name_1": "West 227 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "227th", + "tiger:name_base_1": "227", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5671331, + "bounds": { + "minlat": 40.8214361, + "minlon": -73.9561111, + "maxlat": 40.8222347, + "maxlon": -73.9542488 + }, + "nodes": [ + 42428912, + 10168100447, + 10168100444, + 42441949 + ], + "geometry": [ + { "lat": 40.8214361, "lon": -73.9542488 }, + { "lat": 40.8214703, "lon": -73.9543288 }, + { "lat": 40.8222007, "lon": -73.9560319 }, + { "lat": 40.8222347, "lon": -73.9561111 } + ], + "tags": { + "highway": "residential", + "lit": "no", + "name": "West 137th Street", + "name_1": "West 137 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671332, + "bounds": { + "minlat": 40.8140424, + "minlon": -73.9398384, + "maxlat": 40.8153746, + "maxlon": -73.9366920 + }, + "nodes": [ + 42445587, + 9559408275, + 13703590965, + 13703433906, + 9559433251, + 42445585 + ], + "geometry": [ + { "lat": 40.8153746, "lon": -73.9398384 }, + { "lat": 40.8153309, "lon": -73.9397351 }, + { "lat": 40.8149343, "lon": -73.9387984 }, + { "lat": 40.8142125, "lon": -73.9370935 }, + { "lat": 40.8140991, "lon": -73.9368256 }, + { "lat": 40.8140424, "lon": -73.9366920 } + ], + "tags": { + "highway": "residential", + "name": "West 137th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671335, + "bounds": { + "minlat": 40.7782575, + "minlon": -73.9688949, + "maxlat": 40.7790791, + "maxlon": -73.9667472 + }, + "nodes": [ + 248709714, + 9170771804, + 42450256, + 9906879206, + 1834852945, + 9170771803, + 1834852942, + 3602649920, + 5533561147, + 5533561146, + 1170604778 + ], + "geometry": [ + { "lat": 40.7782575, "lon": -73.9667472 }, + { "lat": 40.7783071, "lon": -73.9669678 }, + { "lat": 40.7783247, "lon": -73.9670400 }, + { "lat": 40.7783491, "lon": -73.9671262 }, + { "lat": 40.7783776, "lon": -73.9672115 }, + { "lat": 40.7784083, "lon": -73.9672923 }, + { "lat": 40.7784436, "lon": -73.9673756 }, + { "lat": 40.7786974, "lon": -73.9679871 }, + { "lat": 40.7789069, "lon": -73.9684905 }, + { "lat": 40.7789505, "lon": -73.9685910 }, + { "lat": 40.7790791, "lon": -73.9688949 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671339, + "bounds": { + "minlat": 40.7172902, + "minlon": -73.9971031, + "maxlat": 40.7178782, + "maxlon": -73.9954393 + }, + "nodes": [ + 42437580, + 6369613034, + 8307641594, + 42445606, + 7641718014, + 7641718038, + 9929761170, + 42432250 + ], + "geometry": [ + { "lat": 40.7172902, "lon": -73.9954393 }, + { "lat": 40.7173363, "lon": -73.9955749 }, + { "lat": 40.7175811, "lon": -73.9962726 }, + { "lat": 40.7176001, "lon": -73.9963251 }, + { "lat": 40.7176262, "lon": -73.9963982 }, + { "lat": 40.7178580, "lon": -73.9970462 }, + { "lat": 40.7178593, "lon": -73.9970503 }, + { "lat": 40.7178782, "lon": -73.9971031 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Hester Street", + "name:ko": "헤스터 스트리트", + "name:ru": "Хестер-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5746336", + "wikipedia": "en:Hester Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671341, + "bounds": { + "minlat": 40.7162541, + "minlon": -73.9936732, + "maxlat": 40.7167392, + "maxlon": -73.9920566 + }, + "nodes": [ + 42445627, + 6369613040, + 6369625009, + 42429641, + 6369625007, + 5863593983, + 3212472963 + ], + "geometry": [ + { "lat": 40.7167392, "lon": -73.9936732 }, + { "lat": 40.7167189, "lon": -73.9936039 }, + { "lat": 40.7165043, "lon": -73.9928863 }, + { "lat": 40.7164855, "lon": -73.9928237 }, + { "lat": 40.7164666, "lon": -73.9927605 }, + { "lat": 40.7162779, "lon": -73.9921307 }, + { "lat": 40.7162541, "lon": -73.9920566 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Hester Street", + "name:ko": "헤스터 스트리트", + "name:ru": "Хестер-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5746336", + "wikipedia": "en:Hester Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671343, + "bounds": { + "minlat": 40.7144648, + "minlon": -73.9816369, + "maxlat": 40.7159233, + "maxlon": -73.9808785 + }, + "nodes": [ + 42445630, + 5377706588, + 42432088, + 8309738049, + 8310245631, + 42435544 + ], + "geometry": [ + { "lat": 40.7144648, "lon": -73.9816369 }, + { "lat": 40.7145631, "lon": -73.9815898 }, + { "lat": 40.7153762, "lon": -73.9811640 }, + { "lat": 40.7158149, "lon": -73.9809350 }, + { "lat": 40.7158438, "lon": -73.9809199 }, + { "lat": 40.7159233, "lon": -73.9808785 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbia Street", + "name:ko": "콜럼비아 스트리트", + "name_1": "Columbia Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671345, + "bounds": { + "minlat": 40.8644030, + "minlon": -73.9250050, + "maxlat": 40.8663360, + "maxlon": -73.9237670 + }, + "nodes": [ + 42427863, + 9561420902, + 9561420896, + 42437921, + 9561420898, + 9561420859, + 42429217 + ], + "geometry": [ + { "lat": 40.8644030, "lon": -73.9237670 }, + { "lat": 40.8645084, "lon": -73.9238347 }, + { "lat": 40.8652994, "lon": -73.9243430 }, + { "lat": 40.8653705, "lon": -73.9243885 }, + { "lat": 40.8654469, "lon": -73.9244373 }, + { "lat": 40.8662426, "lon": -73.9249455 }, + { "lat": 40.8663360, "lon": -73.9250050 } + ], + "tags": { + "highway": "tertiary", + "name": "Academy Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Academy", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5671349, + "bounds": { + "minlat": 40.7469293, + "minlon": -73.9727421, + "maxlat": 40.7475701, + "maxlon": -73.9712165 + }, + "nodes": [ + 42445667, + 3569749099, + 11395572692, + 5481907299, + 9987259786, + 42445666 + ], + "geometry": [ + { "lat": 40.7469293, "lon": -73.9712165 }, + { "lat": 40.7469892, "lon": -73.9713590 }, + { "lat": 40.7471813, "lon": -73.9718165 }, + { "lat": 40.7472346, "lon": -73.9719433 }, + { "lat": 40.7475365, "lon": -73.9726619 }, + { "lat": 40.7475701, "lon": -73.9727421 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "name_1": "East 39 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671352, + "bounds": { + "minlat": 40.8511930, + "minlon": -73.9327250, + "maxlat": 40.8528980, + "maxlon": -73.9286543 + }, + "nodes": [ + 42445680, + 9563795402, + 5403868153, + 42433077, + 5403868156, + 1762361905, + 42445675, + 8740550817, + 42445674, + 1253602814, + 9421763705, + 42442755 + ], + "geometry": [ + { "lat": 40.8528980, "lon": -73.9327250 }, + { "lat": 40.8528608, "lon": -73.9326366 }, + { "lat": 40.8524341, "lon": -73.9316237 }, + { "lat": 40.8523800, "lon": -73.9314950 }, + { "lat": 40.8523297, "lon": -73.9313755 }, + { "lat": 40.8518351, "lon": -73.9302010 }, + { "lat": 40.8517930, "lon": -73.9301010 }, + { "lat": 40.8517573, "lon": -73.9300166 }, + { "lat": 40.8514970, "lon": -73.9293991 }, + { "lat": 40.8513767, "lon": -73.9291156 }, + { "lat": 40.8512440, "lon": -73.9287825 }, + { "lat": 40.8511930, "lon": -73.9286543 } + ], + "tags": { + "highway": "residential", + "name": "West 186th Street", + "name_1": "West 186 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "186th", + "tiger:name_base_1": "186", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5671353, + "bounds": { + "minlat": 40.8532000, + "minlon": -73.9363632, + "maxlat": 40.8538229, + "maxlon": -73.9341930 + }, + "nodes": [ + 42429072, + 9563795533, + 10151452102, + 9563795535, + 42445689, + 9563795537, + 13011654517, + 8151650899, + 1763619174, + 9563795538, + 42442384 + ], + "geometry": [ + { "lat": 40.8532000, "lon": -73.9341930 }, + { "lat": 40.8532416, "lon": -73.9343331 }, + { "lat": 40.8532924, "lon": -73.9345044 }, + { "lat": 40.8534578, "lon": -73.9350616 }, + { "lat": 40.8534790, "lon": -73.9351330 }, + { "lat": 40.8535019, "lon": -73.9352140 }, + { "lat": 40.8535199, "lon": -73.9352777 }, + { "lat": 40.8536429, "lon": -73.9357136 }, + { "lat": 40.8537863, "lon": -73.9362062 }, + { "lat": 40.8538013, "lon": -73.9362724 }, + { "lat": 40.8538229, "lon": -73.9363632 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "West 186th Street", + "name_1": "West 186 Street", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "186th", + "tiger:name_base_1": "186", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5671354, + "bounds": { + "minlat": 40.7196981, + "minlon": -74.0085815, + "maxlat": 40.7199664, + "maxlon": -74.0059645 + }, + "nodes": [ + 42445700, + 8312344409, + 8312344401, + 42445702, + 8312344404, + 8312344393, + 42436336 + ], + "geometry": [ + { "lat": 40.7196981, "lon": -74.0059645 }, + { "lat": 40.7197093, "lon": -74.0060781 }, + { "lat": 40.7197713, "lon": -74.0066822 }, + { "lat": 40.7197847, "lon": -74.0068153 }, + { "lat": 40.7197990, "lon": -74.0069519 }, + { "lat": 40.7199553, "lon": -74.0084733 }, + { "lat": 40.7199664, "lon": -74.0085815 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "North Moore Street", + "name:etymology:wikidata": "Q16203667", + "name:ko": "노스 무어 스트리트", + "name:ru": "Норт-Мур-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7056143", + "wikipedia": "en:North Moore Street" + } +}, +{ + "type": "way", + "id": 5671357, + "bounds": { + "minlat": 40.7762511, + "minlon": -73.9594602, + "maxlat": 40.7828325, + "maxlon": -73.9438310 + }, + "nodes": [ + 42445731, + 5306314451, + 5306314434, + 42445733, + 5306314430, + 8780064277, + 7924099686, + 596776103, + 42445736, + 7924094017, + 7924099785, + 42445738, + 7924094027, + 7134855827, + 42445740, + 7134839383, + 7134855824, + 7134855829, + 42443042, + 6176003995, + 7134855835, + 5376251279, + 7834030785, + 6169388294, + 42445748, + 7834025552, + 13716172395, + 7834025517, + 42428043, + 7834025561, + 6352970553, + 42445757 + ], + "geometry": [ + { "lat": 40.7828325, "lon": -73.9594602 }, + { "lat": 40.7827956, "lon": -73.9593743 }, + { "lat": 40.7822152, "lon": -73.9579745 }, + { "lat": 40.7821666, "lon": -73.9578583 }, + { "lat": 40.7821197, "lon": -73.9577512 }, + { "lat": 40.7818054, "lon": -73.9570082 }, + { "lat": 40.7815711, "lon": -73.9564543 }, + { "lat": 40.7815278, "lon": -73.9563489 }, + { "lat": 40.7814517, "lon": -73.9561680 }, + { "lat": 40.7814025, "lon": -73.9560501 }, + { "lat": 40.7808478, "lon": -73.9547353 }, + { "lat": 40.7808061, "lon": -73.9546344 }, + { "lat": 40.7807617, "lon": -73.9545276 }, + { "lat": 40.7801880, "lon": -73.9531692 }, + { "lat": 40.7801285, "lon": -73.9530275 }, + { "lat": 40.7800730, "lon": -73.9528953 }, + { "lat": 40.7799104, "lon": -73.9525139 }, + { "lat": 40.7792308, "lon": -73.9509243 }, + { "lat": 40.7791759, "lon": -73.9507943 }, + { "lat": 40.7791409, "lon": -73.9507112 }, + { "lat": 40.7791234, "lon": -73.9506697 }, + { "lat": 40.7788555, "lon": -73.9500343 }, + { "lat": 40.7782370, "lon": -73.9485672 }, + { "lat": 40.7782213, "lon": -73.9485301 }, + { "lat": 40.7781772, "lon": -73.9484255 }, + { "lat": 40.7781198, "lon": -73.9482894 }, + { "lat": 40.7774695, "lon": -73.9467470 }, + { "lat": 40.7772837, "lon": -73.9463065 }, + { "lat": 40.7772288, "lon": -73.9461764 }, + { "lat": 40.7771751, "lon": -73.9460474 }, + { "lat": 40.7762992, "lon": -73.9439459 }, + { "lat": 40.7762511, "lon": -73.9438310 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 88th Street", + "name:ru": "Восточная 88-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671359, + "bounds": { + "minlat": 40.7366910, + "minlon": -73.9963370, + "maxlat": 40.7380440, + "maxlon": -73.9931200 + }, + "nodes": [ + 42431490, + 8429175913, + 4500012798, + 5416905054, + 8429175916, + 42430255 + ], + "geometry": [ + { "lat": 40.7366910, "lon": -73.9931200 }, + { "lat": 40.7367486, "lon": -73.9932470 }, + { "lat": 40.7369452, "lon": -73.9937245 }, + { "lat": 40.7377245, "lon": -73.9955735 }, + { "lat": 40.7379919, "lon": -73.9962124 }, + { "lat": 40.7380440, "lon": -73.9963370 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 15th Street", + "name:ru": "Западная 15-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671360, + "bounds": { + "minlat": 40.8670260, + "minlon": -73.9195139, + "maxlat": 40.8681842, + "maxlon": -73.9170440 + }, + "nodes": [ + 42445773, + 9561208950, + 9561229771, + 42437926, + 5071822865, + 5071822868, + 9561229747, + 5071822869, + 5071822870, + 5071822871 + ], + "geometry": [ + { "lat": 40.8670260, "lon": -73.9170440 }, + { "lat": 40.8670836, "lon": -73.9171855 }, + { "lat": 40.8675524, "lon": -73.9183364 }, + { "lat": 40.8675840, "lon": -73.9184140 }, + { "lat": 40.8680278, "lon": -73.9194382 }, + { "lat": 40.8680538, "lon": -73.9194831 }, + { "lat": 40.8680669, "lon": -73.9194937 }, + { "lat": 40.8680899, "lon": -73.9195124 }, + { "lat": 40.8681260, "lon": -73.9195139 }, + { "lat": 40.8681842, "lon": -73.9194970 } + ], + "tags": { + "highway": "tertiary", + "name": "West 211th Street", + "name_1": "West 211 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "211th", + "tiger:name_base_1": "211", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5671365, + "bounds": { + "minlat": 40.7479303, + "minlon": -73.9713072, + "maxlat": 40.7484102, + "maxlon": -73.9709247 + }, + "nodes": [ + 593886253, + 9509176058, + 42432540 + ], + "geometry": [ + { "lat": 40.7479303, "lon": -73.9713072 }, + { "lat": 40.7483613, "lon": -73.9709710 }, + { "lat": 40.7484102, "lon": -73.9709247 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "Tudor City Place", + "name:etymology:wikidata": "Q549206", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671367, + "bounds": { + "minlat": 40.7922463, + "minlon": -73.9473273, + "maxlat": 40.7935621, + "maxlon": -73.9441827 + }, + "nodes": [ + 7777321715, + 6216541832, + 5481998083, + 4970550396, + 42445823, + 4970550395, + 5481998093, + 13715611198, + 5481998099, + 6256723742, + 42445817, + 9178807968 + ], + "geometry": [ + { "lat": 40.7922463, "lon": -73.9441827 }, + { "lat": 40.7923034, "lon": -73.9443185 }, + { "lat": 40.7925367, "lon": -73.9448762 }, + { "lat": 40.7928876, "lon": -73.9456917 }, + { "lat": 40.7929300, "lon": -73.9457883 }, + { "lat": 40.7929670, "lon": -73.9458770 }, + { "lat": 40.7933124, "lon": -73.9467293 }, + { "lat": 40.7933385, "lon": -73.9467916 }, + { "lat": 40.7934530, "lon": -73.9470651 }, + { "lat": 40.7935153, "lon": -73.9472141 }, + { "lat": 40.7935411, "lon": -73.9472775 }, + { "lat": 40.7935621, "lon": -73.9473273 } + ], + "tags": { + "highway": "residential", + "name": "East 107th Street", + "name:ru": "Восточная 107-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5671368, + "bounds": { + "minlat": 40.7942835, + "minlon": -73.9506082, + "maxlat": 40.7949631, + "maxlon": -73.9490156 + }, + "nodes": [ + 42445843, + 11292691120, + 7781090347, + 42445840 + ], + "geometry": [ + { "lat": 40.7942835, "lon": -73.9490156 }, + { "lat": 40.7943320, "lon": -73.9491292 }, + { "lat": 40.7949203, "lon": -73.9505081 }, + { "lat": 40.7949631, "lon": -73.9506082 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 107th Street", + "name:ru": "Восточная 107-я стрит", + "name_1": "East 107 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671369, + "bounds": { + "minlat": 40.7894419, + "minlon": -73.9395853, + "maxlat": 40.7902846, + "maxlon": -73.9375390 + }, + "nodes": [ + 7474626847, + 42445848, + 7925258938, + 7925258806, + 7207886773, + 6216541837, + 42433516 + ], + "geometry": [ + { "lat": 40.7902846, "lon": -73.9395853 }, + { "lat": 40.7902291, "lon": -73.9394496 }, + { "lat": 40.7898142, "lon": -73.9384391 }, + { "lat": 40.7896672, "lon": -73.9380810 }, + { "lat": 40.7896348, "lon": -73.9379977 }, + { "lat": 40.7894735, "lon": -73.9376158 }, + { "lat": 40.7894419, "lon": -73.9375390 } + ], + "tags": { + "highway": "service", + "name_1": "East 107 Street", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 5671393, + "bounds": { + "minlat": 40.7408812, + "minlon": -73.9879853, + "maxlat": 40.7421570, + "maxlon": -73.9870446 + }, + "nodes": [ + 42445867, + 4276517099, + 10166167557, + 42436575, + 10166167555, + 11043321025, + 10179045680, + 42445879 + ], + "geometry": [ + { "lat": 40.7408812, "lon": -73.9879853 }, + { "lat": 40.7409801, "lon": -73.9879143 }, + { "lat": 40.7414985, "lon": -73.9875399 }, + { "lat": 40.7415447, "lon": -73.9875061 }, + { "lat": 40.7416002, "lon": -73.9874651 }, + { "lat": 40.7420240, "lon": -73.9871451 }, + { "lat": 40.7421022, "lon": -73.9870860 }, + { "lat": 40.7421570, "lon": -73.9870446 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 5671397, + "bounds": { + "minlat": 40.8688503, + "minlon": -73.9151316, + "maxlat": 40.8704145, + "maxlon": -73.9114398 + }, + "nodes": [ + 42446228, + 11591951180, + 9561143934, + 42444880, + 9561143936, + 11591951181, + 11587266262, + 9561160002, + 42446231, + 9561143946, + 1769493744, + 1769493750, + 9561143944, + 42429244 + ], + "geometry": [ + { "lat": 40.8688503, "lon": -73.9114398 }, + { "lat": 40.8693865, "lon": -73.9127108 }, + { "lat": 40.8694063, "lon": -73.9127577 }, + { "lat": 40.8694440, "lon": -73.9128470 }, + { "lat": 40.8694904, "lon": -73.9129566 }, + { "lat": 40.8695124, "lon": -73.9130086 }, + { "lat": 40.8701531, "lon": -73.9145238 }, + { "lat": 40.8701801, "lon": -73.9145867 }, + { "lat": 40.8702250, "lon": -73.9146940 }, + { "lat": 40.8702796, "lon": -73.9148202 }, + { "lat": 40.8702936, "lon": -73.9148515 }, + { "lat": 40.8703562, "lon": -73.9149973 }, + { "lat": 40.8703654, "lon": -73.9150201 }, + { "lat": 40.8704145, "lon": -73.9151316 } + ], + "tags": { + "highway": "residential", + "name": "West 216th Street", + "name_1": "West 216 Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "216th", + "tiger:name_base_1": "216", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5671400, + "bounds": { + "minlat": 40.7176795, + "minlon": -73.9848249, + "maxlat": 40.7188259, + "maxlon": -73.9842294 + }, + "nodes": [ + 5173594703, + 8310245637, + 8310245524, + 42437071 + ], + "geometry": [ + { "lat": 40.7176795, "lon": -73.9848249 }, + { "lat": 40.7177333, "lon": -73.9847973 }, + { "lat": 40.7187817, "lon": -73.9842523 }, + { "lat": 40.7188259, "lon": -73.9842294 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Attorney Street", + "name:ko": "어터니 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671401, + "bounds": { + "minlat": 40.7440084, + "minlon": -73.9873007, + "maxlat": 40.7446783, + "maxlon": -73.9856962 + }, + "nodes": [ + 42438544, + 10167162596, + 10167162558, + 42445888 + ], + "geometry": [ + { "lat": 40.7446783, "lon": -73.9873007 }, + { "lat": 40.7446294, "lon": -73.9871844 }, + { "lat": 40.7440468, "lon": -73.9857988 }, + { "lat": 40.7440084, "lon": -73.9856962 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 28th Street", + "name:ru": "Восточная 28-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671403, + "bounds": { + "minlat": 40.7897447, + "minlon": -73.9730999, + "maxlat": 40.7926891, + "maxlon": -73.9661041 + }, + "nodes": [ + 42435319, + 7123525309, + 10062984470, + 42443366, + 7801775749, + 8687882669, + 42442514, + 6207264933, + 8687882665, + 7004379681, + 1061531790 + ], + "geometry": [ + { "lat": 40.7897447, "lon": -73.9661041 }, + { "lat": 40.7897945, "lon": -73.9662234 }, + { "lat": 40.7908805, "lon": -73.9688150 }, + { "lat": 40.7909442, "lon": -73.9689668 }, + { "lat": 40.7909852, "lon": -73.9690645 }, + { "lat": 40.7920744, "lon": -73.9716471 }, + { "lat": 40.7921309, "lon": -73.9717771 }, + { "lat": 40.7921675, "lon": -73.9718684 }, + { "lat": 40.7921826, "lon": -73.9719040 }, + { "lat": 40.7926486, "lon": -73.9730025 }, + { "lat": 40.7926891, "lon": -73.9730999 } + ], + "tags": { + "alt_name": "West 93 Street", + "highway": "residential", + "lane_markings": "no", + "name": "West 93rd Street", + "name:ru": "Западная 93-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4645924", + "wikipedia": "en:93rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671404, + "bounds": { + "minlat": 40.7149113, + "minlon": -73.9833552, + "maxlat": 40.7169760, + "maxlon": -73.9822890 + }, + "nodes": [ + 42429809, + 5173594706, + 42435538, + 8310245595, + 42432089, + 5804713728, + 11038072433, + 42452107 + ], + "geometry": [ + { "lat": 40.7169760, "lon": -73.9822890 }, + { "lat": 40.7168864, "lon": -73.9823349 }, + { "lat": 40.7164371, "lon": -73.9825651 }, + { "lat": 40.7163681, "lon": -73.9826004 }, + { "lat": 40.7158586, "lon": -73.9828615 }, + { "lat": 40.7150498, "lon": -73.9832860 }, + { "lat": 40.7149720, "lon": -73.9833262 }, + { "lat": 40.7149113, "lon": -73.9833552 } + ], + "tags": { + "alt_name": "Bialystoker Place", + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Willett Street", + "name:etymology:wikidata": "Q1669276", + "name:ko": "윌렛 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671405, + "bounds": { + "minlat": 40.8750497, + "minlon": -73.9122655, + "maxlat": 40.8756987, + "maxlon": -73.9114590 + }, + "nodes": [ + 42427936, + 10868090823, + 8153243804, + 8153243810, + 10868090821, + 42437834 + ], + "geometry": [ + { "lat": 40.8750497, "lon": -73.9122655 }, + { "lat": 40.8751047, "lon": -73.9121986 }, + { "lat": 40.8751267, "lon": -73.9121699 }, + { "lat": 40.8756305, "lon": -73.9115438 }, + { "lat": 40.8756562, "lon": -73.9115120 }, + { "lat": 40.8756987, "lon": -73.9114590 } + ], + "tags": { + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "name": "Jacobus Place", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Jacobus", + "tiger:name_type": "Pl", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5671406, + "bounds": { + "minlat": 40.8442481, + "minlon": -73.9378090, + "maxlat": 40.8459480, + "maxlon": -73.9337236 + }, + "nodes": [ + 42423101, + 8723021840, + 8722881589, + 42446331, + 8722881591, + 8722881573, + 42433057, + 8722881579, + 7604384191, + 42446337 + ], + "geometry": [ + { "lat": 40.8442481, "lon": -73.9337236 }, + { "lat": 40.8442926, "lon": -73.9338563 }, + { "lat": 40.8448120, "lon": -73.9350980 }, + { "lat": 40.8448460, "lon": -73.9351810 }, + { "lat": 40.8448905, "lon": -73.9352862 }, + { "lat": 40.8453847, "lon": -73.9364536 }, + { "lat": 40.8454340, "lon": -73.9365700 }, + { "lat": 40.8454901, "lon": -73.9367054 }, + { "lat": 40.8459060, "lon": -73.9377078 }, + { "lat": 40.8459480, "lon": -73.9378090 } + ], + "tags": { + "highway": "residential", + "name": "West 175th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "175th", + "tiger:name_base_1": "175", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5671410, + "bounds": { + "minlat": 40.7178700, + "minlon": -73.9760270, + "maxlat": 40.7188934, + "maxlon": -73.9754842 + }, + "nodes": [ + 42442794, + 4300945415, + 607922768, + 3783088935, + 42446398 + ], + "geometry": [ + { "lat": 40.7178700, "lon": -73.9760270 }, + { "lat": 40.7179136, "lon": -73.9760035 }, + { "lat": 40.7187804, "lon": -73.9755358 }, + { "lat": 40.7188057, "lon": -73.9755241 }, + { "lat": 40.7188934, "lon": -73.9754842 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Mangin Street", + "name:etymology:wikidata": "Q6280621", + "name:ko": "맨진 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671413, + "bounds": { + "minlat": 40.7148947, + "minlon": -73.9775558, + "maxlat": 40.7154997, + "maxlon": -73.9772223 + }, + "nodes": [ + 42435556, + 8310245627, + 4487598490, + 42446424 + ], + "geometry": [ + { "lat": 40.7148947, "lon": -73.9775558 }, + { "lat": 40.7150080, "lon": -73.9774758 }, + { "lat": 40.7153915, "lon": -73.9772780 }, + { "lat": 40.7154997, "lon": -73.9772223 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "Mangin Street", + "name:etymology:wikidata": "Q6280621", + "name:ko": "맨진 스트리트", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671415, + "bounds": { + "minlat": 40.7742930, + "minlon": -73.9802121, + "maxlat": 40.7754797, + "maxlon": -73.9773736 + }, + "nodes": [ + 7802856372, + 7784826681, + 9902312974, + 42443329 + ], + "geometry": [ + { "lat": 40.7742930, "lon": -73.9773736 }, + { "lat": 40.7743426, "lon": -73.9774909 }, + { "lat": 40.7754249, "lon": -73.9800810 }, + { "lat": 40.7754797, "lon": -73.9802121 } + ], + "tags": { + "alt_name": "West 69 Street", + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 69th Street", + "name:ru": "Западная 69-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5671422, + "bounds": { + "minlat": 40.7694673, + "minlon": -73.9514050, + "maxlat": 40.7700880, + "maxlon": -73.9499394 + }, + "nodes": [ + 42428015, + 6689923796, + 6856727469, + 6856727460, + 42430959 + ], + "geometry": [ + { "lat": 40.7700880, "lon": -73.9514050 }, + { "lat": 40.7700277, "lon": -73.9512679 }, + { "lat": 40.7698834, "lon": -73.9509239 }, + { "lat": 40.7696339, "lon": -73.9503336 }, + { "lat": 40.7694673, "lon": -73.9499394 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 77th Street", + "name:ru": "Восточная 77-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671425, + "bounds": { + "minlat": 40.7592748, + "minlon": -73.9991828, + "maxlat": 40.7595158, + "maxlon": -73.9985897 + }, + "nodes": [ + 9019680390, + 8288270553, + 11252642361, + 4207942159 + ], + "geometry": [ + { "lat": 40.7595158, "lon": -73.9991828 }, + { "lat": 40.7594854, "lon": -73.9991095 }, + { "lat": 40.7594000, "lon": -73.9988988 }, + { "lat": 40.7592748, "lon": -73.9985897 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671429, + "bounds": { + "minlat": 40.7311859, + "minlon": -73.9946012, + "maxlat": 40.7346805, + "maxlon": -73.9862916 + }, + "nodes": [ + 42439070, + 8264701263, + 8309479785, + 8309479779, + 42446521, + 8309479776, + 8309479703, + 42428489, + 8309479700, + 5357086126, + 12179560531, + 8309479659, + 42446528, + 8309479656, + 12183286709, + 3627218182, + 42446533, + 3627218183, + 9492586118 + ], + "geometry": [ + { "lat": 40.7346805, "lon": -73.9946012 }, + { "lat": 40.7346468, "lon": -73.9945232 }, + { "lat": 40.7346297, "lon": -73.9944835 }, + { "lat": 40.7339582, "lon": -73.9928785 }, + { "lat": 40.7339220, "lon": -73.9927920 }, + { "lat": 40.7338892, "lon": -73.9927142 }, + { "lat": 40.7332605, "lon": -73.9912243 }, + { "lat": 40.7332140, "lon": -73.9911140 }, + { "lat": 40.7331738, "lon": -73.9910190 }, + { "lat": 40.7329392, "lon": -73.9904648 }, + { "lat": 40.7328433, "lon": -73.9902356 }, + { "lat": 40.7328170, "lon": -73.9901727 }, + { "lat": 40.7327562, "lon": -73.9900290 }, + { "lat": 40.7326995, "lon": -73.9898930 }, + { "lat": 40.7320479, "lon": -73.9883500 }, + { "lat": 40.7320236, "lon": -73.9882925 }, + { "lat": 40.7319665, "lon": -73.9881565 }, + { "lat": 40.7319114, "lon": -73.9880232 }, + { "lat": 40.7311859, "lon": -73.9862916 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 12th Street", + "name:el": "Ανατολική 12η Οδός", + "name:ru": "Восточная 12-я стрит", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671432, + "bounds": { + "minlat": 40.8640767, + "minlon": -73.9213458, + "maxlat": 40.8648090, + "maxlon": -73.9193620 + }, + "nodes": [ + 9561420894, + 42446604, + 9561420893, + 9561420910, + 42431252 + ], + "geometry": [ + { "lat": 40.8640767, "lon": -73.9213458 }, + { "lat": 40.8641120, "lon": -73.9212500 }, + { "lat": 40.8641467, "lon": -73.9211560 }, + { "lat": 40.8647683, "lon": -73.9194724 }, + { "lat": 40.8648090, "lon": -73.9193620 } + ], + "tags": { + "highway": "tertiary", + "name": "Post Avenue", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Post", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5671434, + "bounds": { + "minlat": 40.7146392, + "minlon": -73.9988660, + "maxlat": 40.7149950, + "maxlon": -73.9971724 + }, + "nodes": [ + 1773063787, + 12196074934, + 12196074933, + 11153640079, + 12196074932, + 42446617, + 1673332219, + 8307641520, + 42432241 + ], + "geometry": [ + { "lat": 40.7146392, "lon": -73.9971724 }, + { "lat": 40.7146539, "lon": -73.9972059 }, + { "lat": 40.7146627, "lon": -73.9972296 }, + { "lat": 40.7146688, "lon": -73.9972543 }, + { "lat": 40.7146750, "lon": -73.9972814 }, + { "lat": 40.7148262, "lon": -73.9980375 }, + { "lat": 40.7149682, "lon": -73.9987343 }, + { "lat": 40.7149831, "lon": -73.9988029 }, + { "lat": 40.7149950, "lon": -73.9988660 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle:conditional": "no @ (Sa 09:00-23:00; Su 09:00-21:00)", + "name": "Pell Street", + "name:ko": "펠 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671436, + "bounds": { + "minlat": 40.7077766, + "minlon": -74.0150455, + "maxlat": 40.7084467, + "maxlon": -74.0129583 + }, + "nodes": [ + 11415662946, + 11415663032, + 42446632, + 11415663042, + 4207000391, + 42436181, + 4206997188, + 4206997180, + 42446622 + ], + "geometry": [ + { "lat": 40.7084467, "lon": -74.0150455 }, + { "lat": 40.7082559, "lon": -74.0144520 }, + { "lat": 40.7082321, "lon": -74.0143778 }, + { "lat": 40.7082115, "lon": -74.0143133 }, + { "lat": 40.7080067, "lon": -74.0136728 }, + { "lat": 40.7079832, "lon": -74.0135999 }, + { "lat": 40.7079500, "lon": -74.0134991 }, + { "lat": 40.7078132, "lon": -74.0130694 }, + { "lat": 40.7077766, "lon": -74.0129583 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Rector Street", + "name:ko": "렉터 스트리트", + "name:ru": "Ректор-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "18'0\"", + "wikidata": "Q14135438" + } +}, +{ + "type": "way", + "id": 5671440, + "bounds": { + "minlat": 40.7508315, + "minlon": -73.9939428, + "maxlat": 40.7515320, + "maxlon": -73.9923103 + }, + "nodes": [ + 3799572065, + 9413881763, + 3799564971, + 13537506990, + 8660596950, + 42435642 + ], + "geometry": [ + { "lat": 40.7508315, "lon": -73.9923103 }, + { "lat": 40.7511975, "lon": -73.9931630 }, + { "lat": 40.7512058, "lon": -73.9931823 }, + { "lat": 40.7514628, "lon": -73.9937824 }, + { "lat": 40.7514782, "lon": -73.9938178 }, + { "lat": 40.7515320, "lon": -73.9939428 } + ], + "tags": { + "access": "no", + "highway": "service", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671442, + "bounds": { + "minlat": 40.7477740, + "minlon": -73.9880169, + "maxlat": 40.7490303, + "maxlon": -73.9850381 + }, + "nodes": [ + 42446701, + 10169157390, + 6224277863, + 6224277869 + ], + "geometry": [ + { "lat": 40.7477740, "lon": -73.9850381 }, + { "lat": 40.7478306, "lon": -73.9851724 }, + { "lat": 40.7489960, "lon": -73.9879356 }, + { "lat": 40.7490303, "lon": -73.9880169 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5671444, + "bounds": { + "minlat": 40.7974838, + "minlon": -73.9547684, + "maxlat": 40.8000053, + "maxlon": -73.9488026 + }, + "nodes": [ + 42446721, + 7803460156, + 6217820604, + 7802964961, + 42446723, + 3099326116, + 7802964963, + 7802964954, + 42433161, + 7802964914, + 9150629532, + 2141026500 + ], + "geometry": [ + { "lat": 40.7974838, "lon": -73.9488026 }, + { "lat": 40.7975328, "lon": -73.9489195 }, + { "lat": 40.7977327, "lon": -73.9493961 }, + { "lat": 40.7987771, "lon": -73.9518401 }, + { "lat": 40.7988147, "lon": -73.9519336 }, + { "lat": 40.7988778, "lon": -73.9520835 }, + { "lat": 40.7989137, "lon": -73.9521655 }, + { "lat": 40.7989759, "lon": -73.9523168 }, + { "lat": 40.7990263, "lon": -73.9524352 }, + { "lat": 40.7990800, "lon": -73.9525624 }, + { "lat": 40.7999569, "lon": -73.9546549 }, + { "lat": 40.8000053, "lon": -73.9547684 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "name": "West 111th Street", + "name:ru": "Западная 111-я стрит", + "name_1": "West 111 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671446, + "bounds": { + "minlat": 40.8036319, + "minlon": -73.9663136, + "maxlat": 40.8048633, + "maxlon": -73.9633898 + }, + "nodes": [ + 42442571, + 6814307789, + 2706603537, + 1506445723, + 1506445759, + 1506445745, + 2706603724, + 1506445841, + 7004396258, + 1506445808, + 42428790 + ], + "geometry": [ + { "lat": 40.8036319, "lon": -73.9633898 }, + { "lat": 40.8036819, "lon": -73.9635094 }, + { "lat": 40.8038553, "lon": -73.9639226 }, + { "lat": 40.8040041, "lon": -73.9642774 }, + { "lat": 40.8040615, "lon": -73.9644115 }, + { "lat": 40.8041502, "lon": -73.9646193 }, + { "lat": 40.8044332, "lon": -73.9652916 }, + { "lat": 40.8044402, "lon": -73.9653082 }, + { "lat": 40.8047437, "lon": -73.9660305 }, + { "lat": 40.8047876, "lon": -73.9661339 }, + { "lat": 40.8048633, "lon": -73.9663136 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "1", + "name": "West 111th Street", + "name:ru": "Западная 111-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671447, + "bounds": { + "minlat": 40.8073865, + "minlon": -73.9664760, + "maxlat": 40.8082218, + "maxlon": -73.9644893 + }, + "nodes": [ + 42428833, + 7004416672, + 11842918576, + 7785881390, + 5004570631 + ], + "geometry": [ + { "lat": 40.8073865, "lon": -73.9644893 }, + { "lat": 40.8074258, "lon": -73.9645828 }, + { "lat": 40.8079015, "lon": -73.9657142 }, + { "lat": 40.8081796, "lon": -73.9663755 }, + { "lat": 40.8082218, "lon": -73.9664760 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 115th Street", + "name:ru": "Западная 115-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671450, + "bounds": { + "minlat": 40.8000191, + "minlon": -73.9529374, + "maxlat": 40.8025132, + "maxlon": -73.9471084 + }, + "nodes": [ + 6784911810, + 13703666137, + 5481978580, + 8807524557, + 6784911807, + 42446772, + 3099327937, + 8807524531, + 5481882801, + 5481882798, + 10168729770, + 42433173, + 10168729773, + 8758345344, + 2141026546 + ], + "geometry": [ + { "lat": 40.8000191, "lon": -73.9471084 }, + { "lat": 40.8004451, "lon": -73.9480937 }, + { "lat": 40.8005903, "lon": -73.9484295 }, + { "lat": 40.8009070, "lon": -73.9491760 }, + { "lat": 40.8012845, "lon": -73.9500178 }, + { "lat": 40.8013237, "lon": -73.9501099 }, + { "lat": 40.8013803, "lon": -73.9502539 }, + { "lat": 40.8014149, "lon": -73.9503359 }, + { "lat": 40.8016263, "lon": -73.9508369 }, + { "lat": 40.8018252, "lon": -73.9513081 }, + { "lat": 40.8023107, "lon": -73.9524607 }, + { "lat": 40.8023660, "lon": -73.9525882 }, + { "lat": 40.8024213, "lon": -73.9527183 }, + { "lat": 40.8024754, "lon": -73.9528474 }, + { "lat": 40.8025132, "lon": -73.9529374 } + ], + "tags": { + "highway": "residential", + "name": "West 115th Street", + "name:ru": "Западная 115-я стрит", + "name_1": "West 115 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5671452, + "bounds": { + "minlat": 40.8054325, + "minlon": -73.9615515, + "maxlat": 40.8061528, + "maxlon": -73.9598246 + }, + "nodes": [ + 42442575, + 8385765478, + 7618358583, + 8379839213, + 42435362 + ], + "geometry": [ + { "lat": 40.8061528, "lon": -73.9615515 }, + { "lat": 40.8060964, "lon": -73.9614157 }, + { "lat": 40.8056491, "lon": -73.9603389 }, + { "lat": 40.8054753, "lon": -73.9599259 }, + { "lat": 40.8054325, "lon": -73.9598246 } + ], + "tags": { + "alt_name": "West 115 Street", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 115th Street", + "name:ru": "Западная 115-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671456, + "bounds": { + "minlat": 40.8620485, + "minlon": -73.9198485, + "maxlat": 40.8631688, + "maxlon": -73.9172236 + }, + "nodes": [ + 42445563, + 1764746043, + 9561557615, + 42445054, + 9561566518, + 1764746048, + 11587200845, + 9561566529, + 42446797 + ], + "geometry": [ + { "lat": 40.8620485, "lon": -73.9172236 }, + { "lat": 40.8623483, "lon": -73.9179114 }, + { "lat": 40.8623568, "lon": -73.9179282 }, + { "lat": 40.8623940, "lon": -73.9180150 }, + { "lat": 40.8624384, "lon": -73.9181180 }, + { "lat": 40.8624559, "lon": -73.9181608 }, + { "lat": 40.8630951, "lon": -73.9196795 }, + { "lat": 40.8631197, "lon": -73.9197379 }, + { "lat": 40.8631688, "lon": -73.9198485 } + ], + "tags": { + "highway": "residential", + "name": "West 205th Street", + "name_1": "West 205 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "205th", + "tiger:name_base_1": "205", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5671457, + "bounds": { + "minlat": 40.7159799, + "minlon": -74.0152880, + "maxlat": 40.7171130, + "maxlon": -74.0145447 + }, + "nodes": [ + 42446814, + 5836025487, + 8304878674, + 42446812, + 42446811, + 42446806, + 11445453900, + 42446804, + 42446802, + 11445453897, + 11445453894, + 42446800 + ], + "geometry": [ + { "lat": 40.7171130, "lon": -74.0145447 }, + { "lat": 40.7170474, "lon": -74.0145967 }, + { "lat": 40.7165275, "lon": -74.0150065 }, + { "lat": 40.7165009, "lon": -74.0150264 }, + { "lat": 40.7161779, "lon": -74.0152697 }, + { "lat": 40.7161531, "lon": -74.0152810 }, + { "lat": 40.7161266, "lon": -74.0152873 }, + { "lat": 40.7161043, "lon": -74.0152880 }, + { "lat": 40.7160696, "lon": -74.0152820 }, + { "lat": 40.7160362, "lon": -74.0152701 }, + { "lat": 40.7160092, "lon": -74.0152651 }, + { "lat": 40.7159799, "lon": -74.0152648 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671458, + "bounds": { + "minlat": 40.7159799, + "minlon": -74.0152648, + "maxlat": 40.7169994, + "maxlon": -74.0142977 + }, + "nodes": [ + 42446800, + 11445453895, + 11445453896, + 42446839, + 11445453898, + 11445453899, + 11445453893, + 42446830, + 8304878672, + 42446826, + 5836025491, + 42446825 + ], + "geometry": [ + { "lat": 40.7159799, "lon": -74.0152648 }, + { "lat": 40.7159952, "lon": -74.0152319 }, + { "lat": 40.7160058, "lon": -74.0151922 }, + { "lat": 40.7160128, "lon": -74.0151497 }, + { "lat": 40.7160233, "lon": -74.0151066 }, + { "lat": 40.7160368, "lon": -74.0150733 }, + { "lat": 40.7160517, "lon": -74.0150490 }, + { "lat": 40.7160758, "lon": -74.0150209 }, + { "lat": 40.7163676, "lon": -74.0147951 }, + { "lat": 40.7163890, "lon": -74.0147771 }, + { "lat": 40.7169360, "lon": -74.0143462 }, + { "lat": 40.7169994, "lon": -74.0142977 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671459, + "bounds": { + "minlat": 40.7371273, + "minlon": -73.9914128, + "maxlat": 40.7375794, + "maxlon": -73.9903374 + }, + "nodes": [ + 42428170, + 4285055690, + 9510853474 + ], + "geometry": [ + { "lat": 40.7371273, "lon": -73.9903374 }, + { "lat": 40.7371669, "lon": -73.9904127 }, + { "lat": 40.7375794, "lon": -73.9914128 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 17th Street", + "name:ru": "Восточная 17-я стрит", + "name_1": "East 17 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671460, + "bounds": { + "minlat": 40.7317466, + "minlon": -74.0032895, + "maxlat": 40.7323180, + "maxlon": -74.0016630 + }, + "nodes": [ + 42431789, + 6213204050, + 8310246689, + 8429015934, + 42446902 + ], + "geometry": [ + { "lat": 40.7317466, "lon": -74.0032895 }, + { "lat": 40.7317582, "lon": -74.0032564 }, + { "lat": 40.7317656, "lon": -74.0032353 }, + { "lat": 40.7322984, "lon": -74.0017189 }, + { "lat": 40.7323180, "lon": -74.0016630 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Jones Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14706709", + "wikipedia": "en:Jones Street" + } +}, +{ + "type": "way", + "id": 5671461, + "bounds": { + "minlat": 40.8377140, + "minlon": -73.9418259, + "maxlat": 40.8384885, + "maxlon": -73.9399940 + }, + "nodes": [ + 42428970, + 2541754804, + 561035379, + 9935939391, + 9569882307, + 42433024 + ], + "geometry": [ + { "lat": 40.8384885, "lon": -73.9418259 }, + { "lat": 40.8384257, "lon": -73.9416823 }, + { "lat": 40.8384061, "lon": -73.9416375 }, + { "lat": 40.8383523, "lon": -73.9415097 }, + { "lat": 40.8377724, "lon": -73.9401327 }, + { "lat": 40.8377140, "lon": -73.9399940 } + ], + "tags": { + "highway": "residential", + "name": "West 164th Street", + "name_1": "West 164 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "164th", + "tiger:name_base_1": "164", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5671463, + "bounds": { + "minlat": 40.8359859, + "minlon": -73.9468195, + "maxlat": 40.8373178, + "maxlon": -73.9436263 + }, + "nodes": [ + 587933945, + 9935939354, + 9935939371, + 42427112, + 9935939368, + 9935939267, + 42428964 + ], + "geometry": [ + { "lat": 40.8373178, "lon": -73.9468195 }, + { "lat": 40.8372860, "lon": -73.9467432 }, + { "lat": 40.8364256, "lon": -73.9446813 }, + { "lat": 40.8363811, "lon": -73.9445746 }, + { "lat": 40.8363426, "lon": -73.9444819 }, + { "lat": 40.8360238, "lon": -73.9437151 }, + { "lat": 40.8359859, "lon": -73.9436263 } + ], + "tags": { + "highway": "residential", + "name": "West 160th Street", + "name_1": "West 160 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "160th", + "tiger:name_base_1": "160", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5671472, + "bounds": { + "minlat": 40.7388483, + "minlon": -73.9852454, + "maxlat": 40.7395138, + "maxlon": -73.9847521 + }, + "nodes": [ + 42446925, + 8835579648, + 12181379204, + 8835579637, + 42440325 + ], + "geometry": [ + { "lat": 40.7395138, "lon": -73.9847521 }, + { "lat": 40.7394130, "lon": -73.9848260 }, + { "lat": 40.7389391, "lon": -73.9851715 }, + { "lat": 40.7389021, "lon": -73.9852015 }, + { "lat": 40.7388483, "lon": -73.9852454 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 5671475, + "bounds": { + "minlat": 40.7630517, + "minlon": -73.9633856, + "maxlat": 40.7659377, + "maxlon": -73.9565342 + }, + "nodes": [ + 42427979, + 4999169388, + 9030177779, + 9030177813, + 42447237, + 9030177805, + 5375679279, + 7640863612, + 5542680294, + 42442983, + 5542680299, + 6680686164, + 5550244689, + 6680686170, + 5542680312, + 12559421111, + 5542680306, + 42447235 + ], + "geometry": [ + { "lat": 40.7630517, "lon": -73.9565342 }, + { "lat": 40.7631033, "lon": -73.9566541 }, + { "lat": 40.7632726, "lon": -73.9570608 }, + { "lat": 40.7639388, "lon": -73.9586433 }, + { "lat": 40.7639926, "lon": -73.9587694 }, + { "lat": 40.7640551, "lon": -73.9589158 }, + { "lat": 40.7645804, "lon": -73.9601629 }, + { "lat": 40.7648365, "lon": -73.9607727 }, + { "lat": 40.7649413, "lon": -73.9610214 }, + { "lat": 40.7649919, "lon": -73.9611441 }, + { "lat": 40.7650488, "lon": -73.9612799 }, + { "lat": 40.7650784, "lon": -73.9613510 }, + { "lat": 40.7651489, "lon": -73.9615207 }, + { "lat": 40.7651785, "lon": -73.9615905 }, + { "lat": 40.7657768, "lon": -73.9630103 }, + { "lat": 40.7658549, "lon": -73.9631954 }, + { "lat": 40.7658778, "lon": -73.9632496 }, + { "lat": 40.7659377, "lon": -73.9633856 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 66th Street", + "name:ru": "Восточная 66-я стрит", + "name_1": "East 66 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671476, + "bounds": { + "minlat": 40.7528494, + "minlon": -73.9584288, + "maxlat": 40.7533795, + "maxlon": -73.9574057 + }, + "nodes": [ + 42447242, + 9913659977, + 9189040205, + 9189040206, + 9913659978, + 9913659979, + 9913659980, + 9915145351 + ], + "geometry": [ + { "lat": 40.7528494, "lon": -73.9574057 }, + { "lat": 40.7528582, "lon": -73.9574274 }, + { "lat": 40.7529149, "lon": -73.9575427 }, + { "lat": 40.7530702, "lon": -73.9578776 }, + { "lat": 40.7531003, "lon": -73.9579348 }, + { "lat": 40.7532350, "lon": -73.9581885 }, + { "lat": 40.7532774, "lon": -73.9582637 }, + { "lat": 40.7533795, "lon": -73.9584288 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "no", + "highway": "unclassified", + "lanes": "1", + "lcn": "yes", + "maxspeed": "15 mph", + "name": "South Loop Road", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Road 3", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5671485, + "bounds": { + "minlat": 40.7947885, + "minlon": -73.9642909, + "maxlat": 40.7986542, + "maxlon": -73.9614745 + }, + "nodes": [ + 42447273, + 7083341697, + 7083341689, + 42447275, + 7083341695, + 12030196610, + 7115910322, + 7571274551, + 42447278, + 10101650874, + 10101655892, + 42447281, + 10101505775, + 10101663904, + 42447285, + 10108614604, + 11803975671, + 42437916, + 11803975672, + 10171363561, + 42421731 + ], + "geometry": [ + { "lat": 40.7947885, "lon": -73.9642909 }, + { "lat": 40.7948919, "lon": -73.9642224 }, + { "lat": 40.7954072, "lon": -73.9638468 }, + { "lat": 40.7954638, "lon": -73.9638068 }, + { "lat": 40.7955114, "lon": -73.9637699 }, + { "lat": 40.7955384, "lon": -73.9637514 }, + { "lat": 40.7959894, "lon": -73.9634199 }, + { "lat": 40.7960402, "lon": -73.9633834 }, + { "lat": 40.7960913, "lon": -73.9633452 }, + { "lat": 40.7961522, "lon": -73.9633009 }, + { "lat": 40.7966664, "lon": -73.9629258 }, + { "lat": 40.7967143, "lon": -73.9628898 }, + { "lat": 40.7967772, "lon": -73.9628449 }, + { "lat": 40.7972707, "lon": -73.9624845 }, + { "lat": 40.7973362, "lon": -73.9624366 }, + { "lat": 40.7974114, "lon": -73.9623818 }, + { "lat": 40.7979263, "lon": -73.9620065 }, + { "lat": 40.7979763, "lon": -73.9619700 }, + { "lat": 40.7980368, "lon": -73.9619258 }, + { "lat": 40.7985694, "lon": -73.9615364 }, + { "lat": 40.7986542, "lon": -73.9614745 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "lit": "yes", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347126", + "wikipedia": "en:Manhattan Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671488, + "bounds": { + "minlat": 40.8165367, + "minlon": -73.9363728, + "maxlat": 40.8171962, + "maxlon": -73.9349057 + }, + "nodes": [ + 42447346, + 9557110434, + 7169239273, + 9166236598, + 9166236599, + 9166236600, + 42447348 + ], + "geometry": [ + { "lat": 40.8165367, "lon": -73.9349057 }, + { "lat": 40.8165801, "lon": -73.9350153 }, + { "lat": 40.8169430, "lon": -73.9358858 }, + { "lat": 40.8171293, "lon": -73.9363356 }, + { "lat": 40.8171454, "lon": -73.9363551 }, + { "lat": 40.8171673, "lon": -73.9363666 }, + { "lat": 40.8171962, "lon": -73.9363728 } + ], + "tags": { + "highway": "residential", + "name": "West 141st Street", + "name_1": "West 141 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "141st", + "tiger:name_base_1": "141", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "aerial", + "tiger:zip_left": "10037", + "tiger:zip_right": "10037" + } +}, +{ + "type": "way", + "id": 5671491, + "bounds": { + "minlat": 40.8178749, + "minlon": -73.9451567, + "maxlat": 40.8208736, + "maxlon": -73.9380263 + }, + "nodes": [ + 3099327935, + 42440381, + 9557104511, + 8758299315, + 2141026514, + 42439899, + 9150629553, + 13729911880, + 13392115771, + 9166175596, + 42435860, + 9166175595, + 10166154732, + 42439601 + ], + "geometry": [ + { "lat": 40.8178749, "lon": -73.9380263 }, + { "lat": 40.8179369, "lon": -73.9381673 }, + { "lat": 40.8179803, "lon": -73.9382707 }, + { "lat": 40.8190159, "lon": -73.9407370 }, + { "lat": 40.8190607, "lon": -73.9408456 }, + { "lat": 40.8191327, "lon": -73.9410141 }, + { "lat": 40.8191776, "lon": -73.9411224 }, + { "lat": 40.8196668, "lon": -73.9422864 }, + { "lat": 40.8198522, "lon": -73.9427276 }, + { "lat": 40.8202433, "lon": -73.9436582 }, + { "lat": 40.8202938, "lon": -73.9437782 }, + { "lat": 40.8203496, "lon": -73.9439108 }, + { "lat": 40.8208386, "lon": -73.9450739 }, + { "lat": 40.8208736, "lon": -73.9451567 } + ], + "tags": { + "highway": "residential", + "name": "West 141st Street", + "name_1": "West 141 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671492, + "bounds": { + "minlat": 40.7575380, + "minlon": -73.9548192, + "maxlat": 40.7578285, + "maxlon": -73.9538954 + }, + "nodes": [ + 42447412, + 8265115101, + 7966097308, + 7837541172, + 3569402101, + 9189040176, + 9913659998, + 8265113758, + 9189040177, + 9913659999, + 1241820953 + ], + "geometry": [ + { "lat": 40.7578285, "lon": -73.9548192 }, + { "lat": 40.7577819, "lon": -73.9546803 }, + { "lat": 40.7577702, "lon": -73.9546473 }, + { "lat": 40.7575703, "lon": -73.9541240 }, + { "lat": 40.7575592, "lon": -73.9540963 }, + { "lat": 40.7575472, "lon": -73.9540651 }, + { "lat": 40.7575400, "lon": -73.9540345 }, + { "lat": 40.7575380, "lon": -73.9540031 }, + { "lat": 40.7575399, "lon": -73.9539684 }, + { "lat": 40.7575449, "lon": -73.9539323 }, + { "lat": 40.7575515, "lon": -73.9538954 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "15 mph", + "name": "West Main Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Road 5", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5671494, + "bounds": { + "minlat": 40.8404789, + "minlon": -73.9392999, + "maxlat": 40.8416786, + "maxlon": -73.9364566 + }, + "nodes": [ + 42442717, + 6836035781, + 6836035742, + 42447418, + 6836035744, + 8150068508, + 7985644736, + 42428980 + ], + "geometry": [ + { "lat": 40.8404789, "lon": -73.9364566 }, + { "lat": 40.8405385, "lon": -73.9366009 }, + { "lat": 40.8410485, "lon": -73.9378359 }, + { "lat": 40.8410870, "lon": -73.9379290 }, + { "lat": 40.8411318, "lon": -73.9380333 }, + { "lat": 40.8416189, "lon": -73.9391772 }, + { "lat": 40.8416395, "lon": -73.9392126 }, + { "lat": 40.8416786, "lon": -73.9392999 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "West 169th Street", + "name_1": "West 169 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "169th", + "tiger:name_base_1": "169", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5671533, + "bounds": { + "minlat": 40.8200228, + "minlon": -73.9594899, + "maxlat": 40.8202619, + "maxlon": -73.9589033 + }, + "nodes": [ + 42434105, + 10128878988, + 42424679 + ], + "geometry": [ + { "lat": 40.8200228, "lon": -73.9589033 }, + { "lat": 40.8200614, "lon": -73.9589980 }, + { "lat": 40.8202619, "lon": -73.9594899 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 133rd Street", + "name_1": "West 133 Street", + "oneway": "yes", + "turn:lanes": "left|right", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671538, + "bounds": { + "minlat": 40.7179114, + "minlon": -74.0040126, + "maxlat": 40.7183233, + "maxlon": -74.0036727 + }, + "nodes": [ + 9805151007, + 8307641772, + 42448147 + ], + "geometry": [ + { "lat": 40.7179114, "lon": -74.0040126 }, + { "lat": 40.7182743, "lon": -74.0037132 }, + { "lat": 40.7183233, "lon": -74.0036727 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "name": "Franklin Place", + "name:etymology:wikidata": "Q34969", + "name:ko": "프랭클린 플레이스", + "service": "alley", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5671540, + "bounds": { + "minlat": 40.7967492, + "minlon": -73.9711777, + "maxlat": 40.8010338, + "maxlon": -73.9609910 + }, + "nodes": [ + 5004570627, + 42441907, + 7785782260, + 9916138287, + 42431116, + 10166004089, + 9646862887, + 42428746, + 2541754697, + 1061531496, + 7004451412, + 9646878721, + 42442561, + 9646878727, + 11930109069, + 5790702444, + 5790702448, + 7571410107, + 7146086674, + 10166004096, + 42443406, + 10166004093, + 9150552654, + 10108636807, + 42447285, + 10108646043, + 7784826639, + 42435336 + ], + "geometry": [ + { "lat": 40.8010338, "lon": -73.9711777 }, + { "lat": 40.8009607, "lon": -73.9710040 }, + { "lat": 40.8009396, "lon": -73.9709524 }, + { "lat": 40.8003916, "lon": -73.9696387 }, + { "lat": 40.8003353, "lon": -73.9695103 }, + { "lat": 40.8002850, "lon": -73.9693876 }, + { "lat": 40.7998683, "lon": -73.9684157 }, + { "lat": 40.7998235, "lon": -73.9683098 }, + { "lat": 40.7997858, "lon": -73.9682189 }, + { "lat": 40.7997386, "lon": -73.9681062 }, + { "lat": 40.7996979, "lon": -73.9680071 }, + { "lat": 40.7991934, "lon": -73.9667945 }, + { "lat": 40.7991346, "lon": -73.9666553 }, + { "lat": 40.7990872, "lon": -73.9665438 }, + { "lat": 40.7988066, "lon": -73.9658880 }, + { "lat": 40.7987617, "lon": -73.9658309 }, + { "lat": 40.7986742, "lon": -73.9656234 }, + { "lat": 40.7985031, "lon": -73.9652070 }, + { "lat": 40.7983678, "lon": -73.9648977 }, + { "lat": 40.7979776, "lon": -73.9639732 }, + { "lat": 40.7979207, "lon": -73.9638432 }, + { "lat": 40.7978594, "lon": -73.9637002 }, + { "lat": 40.7973951, "lon": -73.9626108 }, + { "lat": 40.7973746, "lon": -73.9625503 }, + { "lat": 40.7973362, "lon": -73.9624366 }, + { "lat": 40.7973162, "lon": -73.9623416 }, + { "lat": 40.7967922, "lon": -73.9611040 }, + { "lat": 40.7967492, "lon": -73.9609910 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 104th Street", + "name:ru": "Западная 104-я стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671543, + "bounds": { + "minlat": 40.7151664, + "minlon": -74.0007903, + "maxlat": 40.7152927, + "maxlon": -74.0005314 + }, + "nodes": [ + 7132405545, + 11399454087, + 11399454085, + 11399454083, + 7132405537 + ], + "geometry": [ + { "lat": 40.7151664, "lon": -74.0005314 }, + { "lat": 40.7151730, "lon": -74.0005412 }, + { "lat": 40.7151795, "lon": -74.0005516 }, + { "lat": 40.7151912, "lon": -74.0005755 }, + { "lat": 40.7152927, "lon": -74.0007903 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Hogan Place", + "name:ko": "호건 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:both:restriction:conditional": "no standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671558, + "bounds": { + "minlat": 40.7725537, + "minlon": -73.9461964, + "maxlat": 40.7729859, + "maxlon": -73.9451757 + }, + "nodes": [ + 1331391393, + 371206273, + 7135169189, + 42448257 + ], + "geometry": [ + { "lat": 40.7725537, "lon": -73.9451757 }, + { "lat": 40.7726460, "lon": -73.9453985 }, + { "lat": 40.7729305, "lon": -73.9460726 }, + { "lat": 40.7729859, "lon": -73.9461964 } + ], + "tags": { + "highway": "residential", + "name": "East 83rd Street", + "name:ru": "Восточная 83-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671562, + "bounds": { + "minlat": 40.8271028, + "minlon": -73.9523630, + "maxlat": 40.8272014, + "maxlon": -73.9520649 + }, + "nodes": [ + 42434264, + 11193743274, + 595337997 + ], + "geometry": [ + { "lat": 40.8271028, "lon": -73.9520649 }, + { "lat": 40.8271580, "lon": -73.9522264 }, + { "lat": 40.8272014, "lon": -73.9523630 } + ], + "tags": { + "bicycle": "dismount", + "highway": "service", + "name": "Riverbank Park Access Road", + "name_1": "W 145 St", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West 145th", + "tiger:name_base_1": "145", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5671568, + "bounds": { + "minlat": 40.7945736, + "minlon": -73.9335538, + "maxlat": 40.7950638, + "maxlon": -73.9331708 + }, + "nodes": [ + 9906259297, + 6216836448, + 42448278 + ], + "geometry": [ + { "lat": 40.7945736, "lon": -73.9335538 }, + { "lat": 40.7949764, "lon": -73.9332581 }, + { "lat": 40.7950638, "lon": -73.9331708 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Pleasant Avenue", + "old_name:1811-1879": "Avenue A", + "old_name:1954-1957": "Paladino Avenue", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q16932984", + "wikipedia": "en:Pleasant Avenue" + } +}, +{ + "type": "way", + "id": 5671570, + "bounds": { + "minlat": 40.7999836, + "minlon": -73.9614635, + "maxlat": 40.8011797, + "maxlon": -73.9586275 + }, + "nodes": [ + 42435343, + 9796881842, + 5481868703, + 10171363591, + 42447303, + 10171363594, + 10171363567, + 42443426 + ], + "geometry": [ + { "lat": 40.7999836, "lon": -73.9586275 }, + { "lat": 40.8000395, "lon": -73.9587597 }, + { "lat": 40.8002053, "lon": -73.9591518 }, + { "lat": 40.8005453, "lon": -73.9599614 }, + { "lat": 40.8005867, "lon": -73.9600600 }, + { "lat": 40.8006340, "lon": -73.9601697 }, + { "lat": 40.8011214, "lon": -73.9613255 }, + { "lat": 40.8011797, "lon": -73.9614635 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 109th Street", + "name:ru": "Западная 109-я стрит", + "name_1": "West 109 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671573, + "bounds": { + "minlat": 40.7638183, + "minlon": -73.9467820, + "maxlat": 40.7639641, + "maxlon": -73.9464964 + }, + "nodes": [ + 1241986499, + 3987890868, + 7612920642, + 42448299, + 3569402533 + ], + "geometry": [ + { "lat": 40.7639641, "lon": -73.9467820 }, + { "lat": 40.7639306, "lon": -73.9467152 }, + { "lat": 40.7639074, "lon": -73.9466705 }, + { "lat": 40.7638937, "lon": -73.9466441 }, + { "lat": 40.7638183, "lon": -73.9464964 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "bridge:name": "Roosevelt Island Bridge", + "cycleway": "lane", + "foot": "no", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "maxweight": "36", + "name": "Roosevelt Island Bridge", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "wikidata": "Q282921", + "wikipedia": "en:Roosevelt Island Bridge" + } +}, +{ + "type": "way", + "id": 5671574, + "bounds": { + "minlat": 40.7635873, + "minlon": -73.9730294, + "maxlat": 40.7642754, + "maxlon": -73.9714224 + }, + "nodes": [ + 5706568771, + 6188877015, + 8254176969, + 6188877022, + 42445950 + ], + "geometry": [ + { "lat": 40.7642754, "lon": -73.9730294 }, + { "lat": 40.7642235, "lon": -73.9729016 }, + { "lat": 40.7638878, "lon": -73.9721158 }, + { "lat": 40.7636366, "lon": -73.9715256 }, + { "lat": 40.7635873, "lon": -73.9714224 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671577, + "bounds": { + "minlat": 40.7558954, + "minlon": -73.9616198, + "maxlat": 40.7560685, + "maxlon": -73.9612132 + }, + "nodes": [ + 42448406, + 7248638332, + 42440566 + ], + "geometry": [ + { "lat": 40.7558954, "lon": -73.9612132 }, + { "lat": 40.7560143, "lon": -73.9614926 }, + { "lat": 40.7560685, "lon": -73.9616198 } + ], + "tags": { + "foot": "use_sidepath", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 55th Street", + "name:ru": "Восточная 55-я стрит", + "surface": "asphalt", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671579, + "bounds": { + "minlat": 40.7577665, + "minlon": -73.9594962, + "maxlat": 40.7578199, + "maxlon": -73.9594365 + }, + "nodes": [ + 42448423, + 6795524010, + 6795524020, + 6795524044, + 6795524056, + 6795524028, + 6795524052, + 5163687759 + ], + "geometry": [ + { "lat": 40.7577665, "lon": -73.9594962 }, + { "lat": 40.7577697, "lon": -73.9594855 }, + { "lat": 40.7577720, "lon": -73.9594784 }, + { "lat": 40.7577736, "lon": -73.9594747 }, + { "lat": 40.7577760, "lon": -73.9594709 }, + { "lat": 40.7577796, "lon": -73.9594669 }, + { "lat": 40.7577829, "lon": -73.9594641 }, + { "lat": 40.7578199, "lon": -73.9594365 } + ], + "tags": { + "highway": "residential", + "name": "Riverview Terrace" + } +}, +{ + "type": "way", + "id": 5671581, + "bounds": { + "minlat": 40.7123674, + "minlon": -73.9849081, + "maxlat": 40.7124989, + "maxlon": -73.9837744 + }, + "nodes": [ + 42438523, + 8310246502, + 8310246499, + 42432001 + ], + "geometry": [ + { "lat": 40.7123674, "lon": -73.9849081 }, + { "lat": 40.7123697, "lon": -73.9848067 }, + { "lat": 40.7124858, "lon": -73.9838792 }, + { "lat": 40.7124989, "lon": -73.9837744 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "name": "Monroe Street", + "name:etymology:wikidata": "Q11815", + "name:ko": "먼로 스트리트" + } +}, +{ + "type": "way", + "id": 5671584, + "bounds": { + "minlat": 40.7113902, + "minlon": -73.9966625, + "maxlat": 40.7115937, + "maxlon": -73.9943547 + }, + "nodes": [ + 4885959783, + 7830788150 + ], + "geometry": [ + { "lat": 40.7113902, "lon": -73.9966625 }, + { "lat": 40.7115937, "lon": -73.9943547 } + ], + "tags": { + "alt_name": "John J Lamula Square", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Monroe Street", + "name:etymology:wikidata": "Q11815", + "name:ko": "먼로 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5671587, + "bounds": { + "minlat": 40.7117008, + "minlon": -74.0069661, + "maxlat": 40.7119157, + "maxlon": -74.0060472 + }, + "nodes": [ + 42443844, + 1683645326, + 4143876144, + 13706415171, + 3942249544, + 1272562931 + ], + "geometry": [ + { "lat": 40.7117008, "lon": -74.0069661 }, + { "lat": 40.7117283, "lon": -74.0068563 }, + { "lat": 40.7118857, "lon": -74.0062092 }, + { "lat": 40.7118903, "lon": -74.0061874 }, + { "lat": 40.7119009, "lon": -74.0061363 }, + { "lat": 40.7119157, "lon": -74.0060472 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671593, + "bounds": { + "minlat": 40.7115277, + "minlon": -74.0047759, + "maxlat": 40.7117274, + "maxlon": -74.0044863 + }, + "nodes": [ + 6793645469, + 11033263607, + 12301535175, + 5119807674 + ], + "geometry": [ + { "lat": 40.7117274, "lon": -74.0047759 }, + { "lat": 40.7115522, "lon": -74.0045229 }, + { "lat": 40.7115367, "lon": -74.0044997 }, + { "lat": 40.7115277, "lon": -74.0044863 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "destination": "FDR Drive", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Frankfort Street", + "name:etymology:wikidata": "Q1794", + "name:ko": "프랭크포트 스트리트", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_stopping", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671597, + "bounds": { + "minlat": 40.8326961, + "minlon": -73.9443287, + "maxlat": 40.8346452, + "maxlon": -73.9396729 + }, + "nodes": [ + 561035373, + 9703359684, + 11291862068, + 42442659, + 11291862065, + 11291880526, + 42432992, + 11291880528, + 11291880564, + 42439711 + ], + "geometry": [ + { "lat": 40.8346452, "lon": -73.9443287 }, + { "lat": 40.8346055, "lon": -73.9442389 }, + { "lat": 40.8335433, "lon": -73.9417109 }, + { "lat": 40.8334829, "lon": -73.9415672 }, + { "lat": 40.8334339, "lon": -73.9414508 }, + { "lat": 40.8331540, "lon": -73.9407861 }, + { "lat": 40.8330980, "lon": -73.9406530 }, + { "lat": 40.8330440, "lon": -73.9405253 }, + { "lat": 40.8327278, "lon": -73.9397772 }, + { "lat": 40.8326961, "lon": -73.9396729 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "no", + "highway": "residential", + "name": "West 158th Street", + "name_1": "West 158 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "158th", + "tiger:name_base_1": "158", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5671599, + "bounds": { + "minlat": 40.7090976, + "minlon": -74.0078157, + "maxlat": 40.7098706, + "maxlon": -74.0070413 + }, + "nodes": [ + 42440284, + 8281922123, + 9379324050, + 11372507954, + 8281922124, + 42440340 + ], + "geometry": [ + { "lat": 40.7098706, "lon": -74.0070413 }, + { "lat": 40.7098306, "lon": -74.0070821 }, + { "lat": 40.7096096, "lon": -74.0073061 }, + { "lat": 40.7091601, "lon": -74.0077530 }, + { "lat": 40.7091289, "lon": -74.0077841 }, + { "lat": 40.7090976, "lon": -74.0078157 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Dutch Street", + "name:etymology:wikidata": "Q200569", + "name:ko": "더치 스트리트", + "name:ru": "Датч-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671603, + "bounds": { + "minlat": 40.7284697, + "minlon": -74.0032970, + "maxlat": 40.7287130, + "maxlon": -74.0028017 + }, + "nodes": [ + 4321748237, + 3891963914, + 42431515 + ], + "geometry": [ + { "lat": 40.7284697, "lon": -74.0028017 }, + { "lat": 40.7285147, "lon": -74.0028981 }, + { "lat": 40.7287130, "lon": -74.0032970 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Bedford Street", + "name:etymology:wikidata": "Q64402624", + "name:ko": "배드포드 스트리트", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671608, + "bounds": { + "minlat": 40.7270026, + "minlon": -74.0013516, + "maxlat": 40.7277329, + "maxlon": -73.9998695 + }, + "nodes": [ + 42448558, + 5829907374, + 5829880519, + 42436788, + 5829880525, + 5829880523, + 42439533 + ], + "geometry": [ + { "lat": 40.7270026, "lon": -73.9998695 }, + { "lat": 40.7270451, "lon": -73.9999557 }, + { "lat": 40.7273214, "lon": -74.0005165 }, + { "lat": 40.7273529, "lon": -74.0005803 }, + { "lat": 40.7273861, "lon": -74.0006477 }, + { "lat": 40.7276961, "lon": -74.0012769 }, + { "lat": 40.7277329, "lon": -74.0013516 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 5671615, + "bounds": { + "minlat": 40.7047851, + "minlon": -74.0099816, + "maxlat": 40.7051688, + "maxlon": -74.0097419 + }, + "nodes": [ + 42427951, + 10344043174, + 8276468875, + 11053183443, + 42437536 + ], + "geometry": [ + { "lat": 40.7047851, "lon": -74.0097419 }, + { "lat": 40.7048138, "lon": -74.0097670 }, + { "lat": 40.7050873, "lon": -74.0099470 }, + { "lat": 40.7051252, "lon": -74.0099687 }, + { "lat": 40.7051688, "lon": -74.0099816 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "William Street", + "name:ko": "윌리엄 스트리트", + "name:ru": "Уильям-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "William", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671617, + "bounds": { + "minlat": 40.8126972, + "minlon": -73.9531404, + "maxlat": 40.8135001, + "maxlon": -73.9531087 + }, + "nodes": [ + 42448605, + 10171069502, + 9150598851, + 10171069506, + 42436734 + ], + "geometry": [ + { "lat": 40.8135001, "lon": -73.9531087 }, + { "lat": 40.8133888, "lon": -73.9531133 }, + { "lat": 40.8127886, "lon": -73.9531380 }, + { "lat": 40.8127767, "lon": -73.9531383 }, + { "lat": 40.8126972, "lon": -73.9531404 } + ], + "tags": { + "highway": "tertiary", + "name": "Convent Avenue" + } +}, +{ + "type": "way", + "id": 5671620, + "bounds": { + "minlat": 40.7413643, + "minlon": -73.9895966, + "maxlat": 40.7415506, + "maxlon": -73.9891378 + }, + "nodes": [ + 42437881, + 3009534455, + 3884612885, + 42428201 + ], + "geometry": [ + { "lat": 40.7415506, "lon": -73.9895966 }, + { "lat": 40.7415032, "lon": -73.9894797 }, + { "lat": 40.7413947, "lon": -73.9892126 }, + { "lat": 40.7413643, "lon": -73.9891378 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "name_1": "East 23 Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|none", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671622, + "bounds": { + "minlat": 40.8171962, + "minlon": -73.9363728, + "maxlat": 40.8177958, + "maxlon": -73.9359497 + }, + "nodes": [ + 42447348, + 9166236602, + 9166236601, + 2504979969, + 8212384291, + 42438271 + ], + "geometry": [ + { "lat": 40.8171962, "lon": -73.9363728 }, + { "lat": 40.8172215, "lon": -73.9363590 }, + { "lat": 40.8172475, "lon": -73.9363411 }, + { "lat": 40.8177152, "lon": -73.9360061 }, + { "lat": 40.8177357, "lon": -73.9359912 }, + { "lat": 40.8177958, "lon": -73.9359497 } + ], + "tags": { + "highway": "residential", + "name": "Chisum Place", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Chisum", + "tiger:name_type": "Pl", + "tiger:reviewed": "aerial", + "tiger:zip_left": "10037", + "tiger:zip_left_1": "10037", + "tiger:zip_right": "10037" + } +}, +{ + "type": "way", + "id": 5671623, + "bounds": { + "minlat": 40.7816881, + "minlon": -73.9576355, + "maxlat": 40.7853453, + "maxlon": -73.9489622 + }, + "nodes": [ + 42448726, + 7093620699, + 6270714168, + 42446070, + 7093620686, + 7158854722, + 596776177, + 42448729, + 7158854701, + 7158854711, + 42447149, + 7158854699, + 6185259929, + 42448735, + 6185259893, + 6110479993, + 5163244066, + 6110464459, + 6110464454, + 6185259912, + 42443048 + ], + "geometry": [ + { "lat": 40.7853453, "lon": -73.9576355 }, + { "lat": 40.7853055, "lon": -73.9575414 }, + { "lat": 40.7847174, "lon": -73.9561462 }, + { "lat": 40.7846690, "lon": -73.9560317 }, + { "lat": 40.7846254, "lon": -73.9559285 }, + { "lat": 40.7840747, "lon": -73.9546250 }, + { "lat": 40.7840307, "lon": -73.9545206 }, + { "lat": 40.7839462, "lon": -73.9543201 }, + { "lat": 40.7839052, "lon": -73.9542231 }, + { "lat": 40.7833538, "lon": -73.9529124 }, + { "lat": 40.7833098, "lon": -73.9528082 }, + { "lat": 40.7832654, "lon": -73.9527028 }, + { "lat": 40.7826933, "lon": -73.9513459 }, + { "lat": 40.7826302, "lon": -73.9511964 }, + { "lat": 40.7825786, "lon": -73.9510741 }, + { "lat": 40.7822168, "lon": -73.9502160 }, + { "lat": 40.7820517, "lon": -73.9498246 }, + { "lat": 40.7819780, "lon": -73.9496497 }, + { "lat": 40.7819648, "lon": -73.9496184 }, + { "lat": 40.7817427, "lon": -73.9490916 }, + { "lat": 40.7816881, "lon": -73.9489622 } + ], + "tags": { + "highway": "residential", + "name": "East 92nd Street", + "name:ru": "Восточная 92-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671626, + "bounds": { + "minlat": 40.8203884, + "minlon": -73.9584210, + "maxlat": 40.8206258, + "maxlon": -73.9578656 + }, + "nodes": [ + 8843765047, + 8238946731, + 10050000053, + 595320307 + ], + "geometry": [ + { "lat": 40.8203884, "lon": -73.9578656 }, + { "lat": 40.8205592, "lon": -73.9582634 }, + { "lat": 40.8205741, "lon": -73.9582986 }, + { "lat": 40.8206258, "lon": -73.9584210 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "lit": "yes", + "maxweight:signed": "no", + "name": "West 134th Street (upper)", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West 134th", + "tiger:name_base_1": "134", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "aerial" + } +}, +{ + "type": "way", + "id": 5671628, + "bounds": { + "minlat": 40.7799947, + "minlon": -73.9844643, + "maxlat": 40.7831868, + "maxlon": -73.9769106 + }, + "nodes": [ + 42441668, + 10039870535, + 9492542186, + 42431009, + 9492542174, + 8727760425, + 42428645, + 1061531566, + 8727760419, + 6207264931, + 42442459, + 9611179679, + 9677631661, + 42443346 + ], + "geometry": [ + { "lat": 40.7831868, "lon": -73.9844643 }, + { "lat": 40.7831455, "lon": -73.9843659 }, + { "lat": 40.7824506, "lon": -73.9827124 }, + { "lat": 40.7824008, "lon": -73.9825964 }, + { "lat": 40.7823471, "lon": -73.9824638 }, + { "lat": 40.7818430, "lon": -73.9812701 }, + { "lat": 40.7818019, "lon": -73.9811764 }, + { "lat": 40.7817194, "lon": -73.9809824 }, + { "lat": 40.7816706, "lon": -73.9808701 }, + { "lat": 40.7812430, "lon": -73.9798886 }, + { "lat": 40.7811846, "lon": -73.9797549 }, + { "lat": 40.7811364, "lon": -73.9796396 }, + { "lat": 40.7800508, "lon": -73.9770448 }, + { "lat": 40.7799947, "lon": -73.9769106 } + ], + "tags": { + "alt_name": "West 76 Street", + "highway": "residential", + "lane_markings": "no", + "name": "West 76th Street", + "name:ru": "Западная 76-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671629, + "bounds": { + "minlat": 40.7566036, + "minlon": -73.9781109, + "maxlat": 40.7572829, + "maxlon": -73.9765120 + }, + "nodes": [ + 42443528, + 3944708053, + 10166333039, + 42445926 + ], + "geometry": [ + { "lat": 40.7572829, "lon": -73.9781109 }, + { "lat": 40.7572366, "lon": -73.9780014 }, + { "lat": 40.7566485, "lon": -73.9766162 }, + { "lat": 40.7566036, "lon": -73.9765120 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "East 48th Street", + "name:ru": "Восточная 48-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671635, + "bounds": { + "minlat": 40.7603685, + "minlon": -73.9517388, + "maxlat": 40.7604557, + "maxlon": -73.9514600 + }, + "nodes": [ + 42448828, + 3785702999, + 9913660016, + 9913669017, + 3785702998 + ], + "geometry": [ + { "lat": 40.7603685, "lon": -73.9517388 }, + { "lat": 40.7603872, "lon": -73.9516613 }, + { "lat": 40.7604056, "lon": -73.9515992 }, + { "lat": 40.7604288, "lon": -73.9515326 }, + { "lat": 40.7604557, "lon": -73.9514600 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left", + "turn:lanes:forward": "through" + } +}, +{ + "type": "way", + "id": 5671639, + "bounds": { + "minlat": 40.7703074, + "minlon": -73.9437867, + "maxlat": 40.7709098, + "maxlon": -73.9427834 + }, + "nodes": [ + 5487813176, + 8265114905, + 9913669112, + 9913669113, + 7529976545, + 9913669114, + 7529976544, + 9913669115, + 7529976546, + 9913669116, + 9913669117, + 7529976570, + 9913669118, + 9913669119, + 42426789, + 9913669120, + 9913669121, + 8265114906, + 10891946375, + 8265114913, + 9913669122, + 42448885, + 9913669124, + 9913669123, + 9913669125, + 9913669126, + 9913669127, + 593419208, + 9913669128, + 9913669129, + 593419205, + 9913669130 + ], + "geometry": [ + { "lat": 40.7703074, "lon": -73.9437867 }, + { "lat": 40.7703624, "lon": -73.9436504 }, + { "lat": 40.7703763, "lon": -73.9436045 }, + { "lat": 40.7703863, "lon": -73.9435489 }, + { "lat": 40.7703941, "lon": -73.9434917 }, + { "lat": 40.7703971, "lon": -73.9434295 }, + { "lat": 40.7703951, "lon": -73.9433515 }, + { "lat": 40.7703888, "lon": -73.9432941 }, + { "lat": 40.7703803, "lon": -73.9432252 }, + { "lat": 40.7703784, "lon": -73.9431908 }, + { "lat": 40.7703816, "lon": -73.9431579 }, + { "lat": 40.7703855, "lon": -73.9431235 }, + { "lat": 40.7703935, "lon": -73.9430887 }, + { "lat": 40.7704065, "lon": -73.9430564 }, + { "lat": 40.7704232, "lon": -73.9430249 }, + { "lat": 40.7704408, "lon": -73.9430028 }, + { "lat": 40.7704621, "lon": -73.9429805 }, + { "lat": 40.7704826, "lon": -73.9429627 }, + { "lat": 40.7706206, "lon": -73.9428531 }, + { "lat": 40.7706285, "lon": -73.9428469 }, + { "lat": 40.7706698, "lon": -73.9428136 }, + { "lat": 40.7706946, "lon": -73.9427996 }, + { "lat": 40.7707144, "lon": -73.9427923 }, + { "lat": 40.7707391, "lon": -73.9427855 }, + { "lat": 40.7707651, "lon": -73.9427834 }, + { "lat": 40.7707864, "lon": -73.9427856 }, + { "lat": 40.7708113, "lon": -73.9427892 }, + { "lat": 40.7708330, "lon": -73.9427963 }, + { "lat": 40.7708564, "lon": -73.9428114 }, + { "lat": 40.7708780, "lon": -73.9428270 }, + { "lat": 40.7708960, "lon": -73.9428469 }, + { "lat": 40.7709098, "lon": -73.9428666 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "10 mph", + "name": "West Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671644, + "bounds": { + "minlat": 40.7623702, + "minlon": -73.9480371, + "maxlat": 40.7632907, + "maxlon": -73.9472582 + }, + "nodes": [ + 42426775, + 8265114630, + 8265114806, + 42426928, + 11224277719 + ], + "geometry": [ + { "lat": 40.7632907, "lon": -73.9472582 }, + { "lat": 40.7629272, "lon": -73.9475660 }, + { "lat": 40.7628764, "lon": -73.9476090 }, + { "lat": 40.7624373, "lon": -73.9479808 }, + { "lat": 40.7623702, "lon": -73.9480371 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "East Road", + "name_1": "East Road" + } +}, +{ + "type": "way", + "id": 5671645, + "bounds": { + "minlat": 40.8606686, + "minlon": -73.9286059, + "maxlat": 40.8626215, + "maxlon": -73.9273156 + }, + "nodes": [ + 13317737415, + 1764400312, + 11586960661, + 9561386516, + 42427849 + ], + "geometry": [ + { "lat": 40.8606686, "lon": -73.9273156 }, + { "lat": 40.8607408, "lon": -73.9274129 }, + { "lat": 40.8624756, "lon": -73.9285114 }, + { "lat": 40.8625242, "lon": -73.9285421 }, + { "lat": 40.8626215, "lon": -73.9286059 } + ], + "tags": { + "alt_name": "West 197th Street", + "alt_name:en": "Santiago Cerόn Way", + "description": "This honorary street name memorializes Santiago Cerόn", + "highway": "residential", + "historic": "memorial", + "lane_markings": "no", + "name": "Sickles Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:alt_name_base": "W 197th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sickles", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5671654, + "bounds": { + "minlat": 40.7597017, + "minlon": -74.0020668, + "maxlat": 40.7607466, + "maxlon": -73.9995743 + }, + "nodes": [ + 42448996, + 3874681632, + 12154605931, + 5481848951 + ], + "geometry": [ + { "lat": 40.7607466, "lon": -74.0020668 }, + { "lat": 40.7606965, "lon": -74.0019445 }, + { "lat": 40.7606157, "lon": -74.0017521 }, + { "lat": 40.7597017, "lon": -73.9995743 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "note": "signed as the Lincoln Tunnel truck route from NY 9A northbound", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671656, + "bounds": { + "minlat": 40.7881213, + "minlon": -73.9552649, + "maxlat": 40.7885854, + "maxlon": -73.9541807 + }, + "nodes": [ + 9906892371, + 7058708516, + 7061726467, + 42443264 + ], + "geometry": [ + { "lat": 40.7881213, "lon": -73.9541807 }, + { "lat": 40.7885260, "lon": -73.9551195 }, + { "lat": 40.7885500, "lon": -73.9551786 }, + { "lat": 40.7885854, "lon": -73.9552649 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 97th Street", + "name:ru": "Восточная 97-я стрит", + "name_1": "East 97 Street", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671659, + "bounds": { + "minlat": 40.7282048, + "minlon": -73.9872326, + "maxlat": 40.7292016, + "maxlon": -73.9848673 + }, + "nodes": [ + 42449021, + 8309479518, + 9770582311, + 12179582422, + 4235738202, + 42442857 + ], + "geometry": [ + { "lat": 40.7282048, "lon": -73.9848673 }, + { "lat": 40.7282578, "lon": -73.9850020 }, + { "lat": 40.7286749, "lon": -73.9859863 }, + { "lat": 40.7291282, "lon": -73.9870653 }, + { "lat": 40.7291511, "lon": -73.9871164 }, + { "lat": 40.7292016, "lon": -73.9872326 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 9th Street", + "name:ru": "Восточная 9-я стрит", + "name_1": "East 9 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671661, + "bounds": { + "minlat": 40.7242830, + "minlon": -73.9803330, + "maxlat": 40.7262810, + "maxlon": -73.9755980 + }, + "nodes": [ + 42449038, + 8309479388, + 8309479394, + 42449029, + 8309479397, + 7483737468, + 7483709975, + 4216045817, + 42449027 + ], + "geometry": [ + { "lat": 40.7242830, "lon": -73.9755980 }, + { "lat": 40.7243251, "lon": -73.9756975 }, + { "lat": 40.7252552, "lon": -73.9778936 }, + { "lat": 40.7252889, "lon": -73.9779731 }, + { "lat": 40.7253330, "lon": -73.9780781 }, + { "lat": 40.7254666, "lon": -73.9783959 }, + { "lat": 40.7255070, "lon": -73.9784920 }, + { "lat": 40.7262460, "lon": -73.9802500 }, + { "lat": 40.7262810, "lon": -73.9803330 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 9th Street", + "name:ru": "Восточная 9-я стрит", + "name_1": "East 9 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671663, + "bounds": { + "minlat": 40.7311834, + "minlon": -73.9959296, + "maxlat": 40.7328696, + "maxlon": -73.9919247 + }, + "nodes": [ + 42428476, + 8309479638, + 4762558061, + 4500010374, + 4500010382, + 12179562799, + 12179565601, + 8309478870, + 42449045, + 8309478873, + 12179562797, + 8265964360, + 42421877 + ], + "geometry": [ + { "lat": 40.7311834, "lon": -73.9919247 }, + { "lat": 40.7312200, "lon": -73.9920153 }, + { "lat": 40.7313679, "lon": -73.9923638 }, + { "lat": 40.7316959, "lon": -73.9931430 }, + { "lat": 40.7318322, "lon": -73.9934705 }, + { "lat": 40.7321126, "lon": -73.9941371 }, + { "lat": 40.7321282, "lon": -73.9941744 }, + { "lat": 40.7321438, "lon": -73.9942118 }, + { "lat": 40.7321835, "lon": -73.9943085 }, + { "lat": 40.7322181, "lon": -73.9943901 }, + { "lat": 40.7327999, "lon": -73.9957614 }, + { "lat": 40.7328229, "lon": -73.9958144 }, + { "lat": 40.7328696, "lon": -73.9959296 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 9th Street", + "name:ru": "Восточная 9-я стрит", + "name_1": "East 9 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671668, + "bounds": { + "minlat": 40.7358563, + "minlon": -74.0059343, + "maxlat": 40.7365142, + "maxlon": -74.0011844 + }, + "nodes": [ + 11062719791, + 8262308449, + 42433275, + 8307642227, + 42449076, + 8307642226, + 8307463830, + 42431814, + 8307463833, + 11401831100, + 42436407 + ], + "geometry": [ + { "lat": 40.7364599, "lon": -74.0011844 }, + { "lat": 40.7365142, "lon": -74.0013135 }, + { "lat": 40.7364234, "lon": -74.0019508 }, + { "lat": 40.7362058, "lon": -74.0034794 }, + { "lat": 40.7361983, "lon": -74.0035323 }, + { "lat": 40.7361915, "lon": -74.0035800 }, + { "lat": 40.7359811, "lon": -74.0050578 }, + { "lat": 40.7359710, "lon": -74.0051285 }, + { "lat": 40.7359629, "lon": -74.0051852 }, + { "lat": 40.7358689, "lon": -74.0058455 }, + { "lat": 40.7358563, "lon": -74.0059343 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 11th Street", + "name:ru": "Западная 11-я стрит", + "name_1": "West 11 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671672, + "bounds": { + "minlat": 40.8256133, + "minlon": -73.9398858, + "maxlat": 40.8263202, + "maxlon": -73.9384158 + }, + "nodes": [ + 42435880, + 8008242763, + 42443574, + 8008242765, + 13535333105, + 11218346002, + 42449127 + ], + "geometry": [ + { "lat": 40.8256133, "lon": -73.9398858 }, + { "lat": 40.8258443, "lon": -73.9393860 }, + { "lat": 40.8258825, "lon": -73.9393198 }, + { "lat": 40.8259293, "lon": -73.9392489 }, + { "lat": 40.8262589, "lon": -73.9385768 }, + { "lat": 40.8262880, "lon": -73.9385036 }, + { "lat": 40.8263202, "lon": -73.9384158 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Macombs Place", + "name:etymology:wikidata": "Q328356", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 5671674, + "bounds": { + "minlat": 40.8263614, + "minlon": -73.9383072, + "maxlat": 40.8275879, + "maxlon": -73.9357772 + }, + "nodes": [ + 11218835143, + 13535333108, + 11218602240, + 42444028, + 11218602239, + 42449139, + 7712934592, + 13535333117, + 13535333118, + 2140997997 + ], + "geometry": [ + { "lat": 40.8263614, "lon": -73.9383072 }, + { "lat": 40.8266751, "lon": -73.9376750 }, + { "lat": 40.8267011, "lon": -73.9376217 }, + { "lat": 40.8267340, "lon": -73.9375554 }, + { "lat": 40.8267734, "lon": -73.9374753 }, + { "lat": 40.8271890, "lon": -73.9366137 }, + { "lat": 40.8273304, "lon": -73.9363299 }, + { "lat": 40.8274219, "lon": -73.9361373 }, + { "lat": 40.8275059, "lon": -73.9359598 }, + { "lat": 40.8275879, "lon": -73.9357772 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Macombs Place", + "name:etymology:wikidata": "Q328356", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 5671681, + "bounds": { + "minlat": 40.8341688, + "minlon": -73.9392318, + "maxlat": 40.8351960, + "maxlon": -73.9384890 + }, + "nodes": [ + 42446919, + 11296125605, + 2075600882, + 42449163, + 8881193180, + 2075600886, + 11296125622, + 42449166 + ], + "geometry": [ + { "lat": 40.8341688, "lon": -73.9392318 }, + { "lat": 40.8342246, "lon": -73.9391936 }, + { "lat": 40.8342286, "lon": -73.9391908 }, + { "lat": 40.8345360, "lon": -73.9389650 }, + { "lat": 40.8345888, "lon": -73.9389269 }, + { "lat": 40.8351300, "lon": -73.9385366 }, + { "lat": 40.8351327, "lon": -73.9385346 }, + { "lat": 40.8351960, "lon": -73.9384890 } + ], + "tags": { + "highway": "residential", + "name": "Jumel Terrace", + "surface": "paving_stones", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Jumel", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikimedia_commons": "File:Jumel_Terrace_at_160th_showing_surface_as_paving_stones.jpg" + } +}, +{ + "type": "way", + "id": 5671684, + "bounds": { + "minlat": 40.8217486, + "minlon": -73.9362713, + "maxlat": 40.8221539, + "maxlon": -73.9352976 + }, + "nodes": [ + 42432669, + 8668338838, + 9557088465, + 7043607048 + ], + "geometry": [ + { "lat": 40.8217486, "lon": -73.9352976 }, + { "lat": 40.8217714, "lon": -73.9353578 }, + { "lat": 40.8218080, "lon": -73.9354451 }, + { "lat": 40.8221539, "lon": -73.9362713 } + ], + "tags": { + "highway": "residential", + "name": "West 147th Street", + "name_1": "West 147 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671685, + "bounds": { + "minlat": 40.8253320, + "minlon": -73.9496148, + "maxlat": 40.8277777, + "maxlon": -73.9438130 + }, + "nodes": [ + 42432967, + 11221649569, + 11218174458, + 42448661, + 11218080011, + 11218864388, + 42442628, + 11218864391, + 11193723002, + 561035363, + 42428936 + ], + "geometry": [ + { "lat": 40.8253320, "lon": -73.9438130 }, + { "lat": 40.8253950, "lon": -73.9439627 }, + { "lat": 40.8259177, "lon": -73.9452053 }, + { "lat": 40.8259476, "lon": -73.9452763 }, + { "lat": 40.8259922, "lon": -73.9453794 }, + { "lat": 40.8264806, "lon": -73.9465398 }, + { "lat": 40.8265263, "lon": -73.9466483 }, + { "lat": 40.8265870, "lon": -73.9467921 }, + { "lat": 40.8276479, "lon": -73.9493044 }, + { "lat": 40.8276954, "lon": -73.9494163 }, + { "lat": 40.8277777, "lon": -73.9496148 } + ], + "tags": { + "highway": "residential", + "name": "West 147th Street", + "name_1": "West 147 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "147th", + "tiger:name_base_1": "147", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 5671688, + "bounds": { + "minlat": 40.7808503, + "minlon": -73.9617315, + "maxlat": 40.7811492, + "maxlon": -73.9609089 + }, + "nodes": [ + 42449187, + 3392519834, + 2059303952, + 9906895093, + 6978479856, + 705234781, + 9906895092, + 2059303954 + ], + "geometry": [ + { "lat": 40.7808503, "lon": -73.9609089 }, + { "lat": 40.7809036, "lon": -73.9610334 }, + { "lat": 40.7809524, "lon": -73.9611535 }, + { "lat": 40.7809903, "lon": -73.9612499 }, + { "lat": 40.7810286, "lon": -73.9613496 }, + { "lat": 40.7810680, "lon": -73.9614644 }, + { "lat": 40.7811056, "lon": -73.9615815 }, + { "lat": 40.7811492, "lon": -73.9617315 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "bicycle": "yes", + "destination": "West Side", + "foot": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxheight": "10'5\"", + "maxspeed": "25 mph", + "motor_vehicle": "yes", + "name": "86th Street Transverse", + "oneway": "yes", + "parking:both": "no", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671690, + "bounds": { + "minlat": 40.7811881, + "minlon": -73.9624476, + "maxlat": 40.7813573, + "maxlon": -73.9623237 + }, + "nodes": [ + 42433927, + 1382339046, + 1382339048, + 9906895089, + 1382339047 + ], + "geometry": [ + { "lat": 40.7813573, "lon": -73.9624476 }, + { "lat": 40.7813051, "lon": -73.9624368 }, + { "lat": 40.7812751, "lon": -73.9624085 }, + { "lat": 40.7812293, "lon": -73.9623611 }, + { "lat": 40.7811881, "lon": -73.9623237 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "1", + "lit": "yes", + "maxheight": "10'5\"", + "maxspeed": "25 mph", + "name": "86th Street Transverse", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671691, + "bounds": { + "minlat": 40.7698546, + "minlon": -73.9866271, + "maxlat": 40.7708566, + "maxlon": -73.9843169 + }, + "nodes": [ + 1241742627, + 10046247872, + 7382801856 + ], + "geometry": [ + { "lat": 40.7698546, "lon": -73.9843169 }, + { "lat": 40.7699252, "lon": -73.9844358 }, + { "lat": 40.7708566, "lon": -73.9866271 } + ], + "tags": { + "change": "yes", + "highway": "tertiary", + "lane_markings": "yes", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 60th Street", + "name:ru": "Западная 60-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671693, + "bounds": { + "minlat": 40.7464825, + "minlon": -73.9854903, + "maxlat": 40.7471520, + "maxlon": -73.9838914 + }, + "nodes": [ + 42443680, + 10173045241, + 4960503203, + 10169157392, + 42445899 + ], + "geometry": [ + { "lat": 40.7471520, "lon": -73.9854903 }, + { "lat": 40.7471064, "lon": -73.9853813 }, + { "lat": 40.7469135, "lon": -73.9849207 }, + { "lat": 40.7465246, "lon": -73.9839919 }, + { "lat": 40.7464825, "lon": -73.9838914 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "East 32nd Street", + "name:ru": "Восточная 32-я стрит", + "name_1": "East 32 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671698, + "bounds": { + "minlat": 40.7439767, + "minlon": -74.0085554, + "maxlat": 40.7441160, + "maxlon": -74.0083937 + }, + "nodes": [ + 8288270047, + 12161232326, + 12161232325, + 12161232324, + 7779310110, + 12161232323, + 246580982 + ], + "geometry": [ + { "lat": 40.7441160, "lon": -74.0085554 }, + { "lat": 40.7440782, "lon": -74.0085297 }, + { "lat": 40.7440478, "lon": -74.0085041 }, + { "lat": 40.7440267, "lon": -74.0084806 }, + { "lat": 40.7440072, "lon": -74.0084554 }, + { "lat": 40.7439937, "lon": -74.0084332 }, + { "lat": 40.7439767, "lon": -74.0083937 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 16th Street", + "name:ru": "Западная 16-я стрит", + "name_1": "West 16 Street", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 5671699, + "bounds": { + "minlat": 40.7392336, + "minlon": -73.9781918, + "maxlat": 40.7404701, + "maxlon": -73.9772893 + }, + "nodes": [ + 42446291, + 8119596370, + 4298955793, + 42449352, + 3834442664, + 3834442663, + 42429910 + ], + "geometry": [ + { "lat": 40.7404701, "lon": -73.9772893 }, + { "lat": 40.7404061, "lon": -73.9773368 }, + { "lat": 40.7398975, "lon": -73.9777073 }, + { "lat": 40.7398487, "lon": -73.9777429 }, + { "lat": 40.7393299, "lon": -73.9781216 }, + { "lat": 40.7392976, "lon": -73.9781451 }, + { "lat": 40.7392336, "lon": -73.9781918 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Mount Carmel Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Mount Carmel", + "tiger:name_type": "Pl", + "tiger:reviewed": "aerial" + } +}, +{ + "type": "way", + "id": 5671701, + "bounds": { + "minlat": 40.7405824, + "minlon": -73.9757944, + "maxlat": 40.7406465, + "maxlon": -73.9756299 + }, + "nodes": [ + 42436756, + 8119193317, + 6572026580 + ], + "geometry": [ + { "lat": 40.7406465, "lon": -73.9757944 }, + { "lat": 40.7405907, "lon": -73.9756527 }, + { "lat": 40.7405824, "lon": -73.9756299 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 29th Street", + "name:ru": "Восточная 29-я стрит", + "name_1": "East 29 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671702, + "bounds": { + "minlat": 40.7934601, + "minlon": -73.9396345, + "maxlat": 40.7944609, + "maxlon": -73.9372637 + }, + "nodes": [ + 42443078, + 7924346857, + 7668880139, + 8386364995, + 12986218211, + 4980851596, + 42449427 + ], + "geometry": [ + { "lat": 40.7944609, "lon": -73.9396345 }, + { "lat": 40.7944103, "lon": -73.9395145 }, + { "lat": 40.7941898, "lon": -73.9389923 }, + { "lat": 40.7939555, "lon": -73.9384373 }, + { "lat": 40.7935341, "lon": -73.9374391 }, + { "lat": 40.7935198, "lon": -73.9374051 }, + { "lat": 40.7934601, "lon": -73.9372637 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "name": "East 112th Street", + "name:ru": "Восточная 112-я стрит", + "name_1": "East 112 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671703, + "bounds": { + "minlat": 40.8604170, + "minlon": -73.9307710, + "maxlat": 40.8608620, + "maxlon": -73.9288170 + }, + "nodes": [ + 42443524, + 1764644054, + 9561344713, + 11594920825, + 11594925569, + 42449442, + 9561386431, + 42429174 + ], + "geometry": [ + { "lat": 40.8608620, "lon": -73.9288170 }, + { "lat": 40.8608361, "lon": -73.9288876 }, + { "lat": 40.8608325, "lon": -73.9288974 }, + { "lat": 40.8608166, "lon": -73.9289409 }, + { "lat": 40.8604282, "lon": -73.9300004 }, + { "lat": 40.8604170, "lon": -73.9300310 }, + { "lat": 40.8606013, "lon": -73.9306397 }, + { "lat": 40.8606410, "lon": -73.9307710 } + ], + "tags": { + "highway": "residential", + "name": "West 196th Street", + "name_1": "West 196 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "196th", + "tiger:name_base_1": "196", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5671709, + "bounds": { + "minlat": 40.7604084, + "minlon": -73.9786703, + "maxlat": 40.7616163, + "maxlon": -73.9758441 + }, + "nodes": [ + 42436700, + 3977886250, + 8941359204, + 12175261798, + 10778981822, + 10778981819, + 3976008162, + 1745856081, + 13681064668, + 4207938835 + ], + "geometry": [ + { "lat": 40.7604084, "lon": -73.9758441 }, + { "lat": 40.7604486, "lon": -73.9759482 }, + { "lat": 40.7608390, "lon": -73.9768604 }, + { "lat": 40.7610088, "lon": -73.9772570 }, + { "lat": 40.7611786, "lon": -73.9776535 }, + { "lat": 40.7612041, "lon": -73.9777130 }, + { "lat": 40.7613592, "lon": -73.9780752 }, + { "lat": 40.7614232, "lon": -73.9782277 }, + { "lat": 40.7615964, "lon": -73.9786246 }, + { "lat": 40.7616163, "lon": -73.9786703 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 53rd Street", + "name:ru": "Западная 53-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:left:surface": "paving_stones", + "sidewalk:right:surface": "concrete:plates", + "surface": "asphalt", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671710, + "bounds": { + "minlat": 40.8151597, + "minlon": -73.9605612, + "maxlat": 40.8159022, + "maxlon": -73.9588371 + }, + "nodes": [ + 42428858, + 10049830862, + 10049835181, + 42443181, + 10049835183, + 10049857024, + 42441077 + ], + "geometry": [ + { "lat": 40.8151597, "lon": -73.9588371 }, + { "lat": 40.8151925, "lon": -73.9589133 }, + { "lat": 40.8154987, "lon": -73.9596243 }, + { "lat": 40.8155364, "lon": -73.9597119 }, + { "lat": 40.8155769, "lon": -73.9598059 }, + { "lat": 40.8158690, "lon": -73.9604903 }, + { "lat": 40.8159022, "lon": -73.9605612 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "name": "Tiemann Place", + "name:etymology:wikidata": "Q5217103", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671711, + "bounds": { + "minlat": 40.7256550, + "minlon": -73.9977501, + "maxlat": 40.7258712, + "maxlon": -73.9975736 + }, + "nodes": [ + 42448552, + 1919595925, + 5829847185, + 9815692303 + ], + "geometry": [ + { "lat": 40.7258712, "lon": -73.9975736 }, + { "lat": 40.7257539, "lon": -73.9976695 }, + { "lat": 40.7256842, "lon": -73.9977263 }, + { "lat": 40.7256550, "lon": -73.9977501 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Mercer Street", + "name:etymology:wikidata": "Q3030909", + "name:ko": "머서 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3306319", + "wikipedia": "en:Mercer Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671712, + "bounds": { + "minlat": 40.8676330, + "minlon": -73.9185050, + "maxlat": 40.8685048, + "maxlon": -73.9165880 + }, + "nodes": [ + 42429228, + 9561229781, + 11587266268, + 9561229776, + 42449593 + ], + "geometry": [ + { "lat": 40.8685048, "lon": -73.9185050 }, + { "lat": 40.8684243, "lon": -73.9184270 }, + { "lat": 40.8677201, "lon": -73.9167905 }, + { "lat": 40.8676969, "lon": -73.9167366 }, + { "lat": 40.8676330, "lon": -73.9165880 } + ], + "tags": { + "highway": "residential", + "name": "West 212th Street", + "name_1": "West 212 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "212th", + "tiger:name_base_1": "212", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5671713, + "bounds": { + "minlat": 40.7169994, + "minlon": -74.0157766, + "maxlat": 40.7176755, + "maxlon": -74.0142977 + }, + "nodes": [ + 42445291, + 5836025490, + 8304878683, + 11450026929, + 5815643261, + 42446814, + 42446825 + ], + "geometry": [ + { "lat": 40.7176755, "lon": -74.0157766 }, + { "lat": 40.7176340, "lon": -74.0156892 }, + { "lat": 40.7176206, "lon": -74.0156603 }, + { "lat": 40.7172783, "lon": -74.0149116 }, + { "lat": 40.7171598, "lon": -74.0146464 }, + { "lat": 40.7171130, "lon": -74.0145447 }, + { "lat": 40.7169994, "lon": -74.0142977 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Warren Street", + "name:etymology:wikidata": "Q3376953", + "name:ko": "워렌 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671717, + "bounds": { + "minlat": 40.7109994, + "minlon": -74.0004898, + "maxlat": 40.7111112, + "maxlon": -74.0003778 + }, + "nodes": [ + 42444277, + 1754817323 + ], + "geometry": [ + { "lat": 40.7109994, "lon": -74.0004898 }, + { "lat": 40.7111112, "lon": -74.0003778 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Saint James Place", + "name:etymology:wikidata": "Q7588396", + "name:ko": "세인트 제임스 플레이스", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671719, + "bounds": { + "minlat": 40.7453403, + "minlon": -73.9721236, + "maxlat": 40.7456883, + "maxlon": -73.9712874 + }, + "nodes": [ + 3829688390, + 1577501047, + 10170620783, + 42422899 + ], + "geometry": [ + { "lat": 40.7453403, "lon": -73.9712874 }, + { "lat": 40.7454500, "lon": -73.9715503 }, + { "lat": 40.7456337, "lon": -73.9719959 }, + { "lat": 40.7456883, "lon": -73.9721236 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 5671739, + "bounds": { + "minlat": 40.8446105, + "minlon": -73.9426291, + "maxlat": 40.8483251, + "maxlon": -73.9420607 + }, + "nodes": [ + 60926616, + 8692185202, + 42436832, + 2419285541, + 2075592667, + 9908572546, + 2075592671, + 9908572547, + 2075592657, + 2075592659, + 9908572549, + 9908572548, + 9908572550, + 2075592662, + 9908572551, + 9908572552, + 42429479, + 9908572553, + 9908572555, + 9908572554, + 42449804, + 2075592666, + 9908572556, + 9908572557, + 9908572558, + 2075592670, + 42435002 + ], + "geometry": [ + { "lat": 40.8483251, "lon": -73.9420607 }, + { "lat": 40.8482704, "lon": -73.9420708 }, + { "lat": 40.8476869, "lon": -73.9421969 }, + { "lat": 40.8473224, "lon": -73.9422763 }, + { "lat": 40.8470961, "lon": -73.9423267 }, + { "lat": 40.8470474, "lon": -73.9423396 }, + { "lat": 40.8469892, "lon": -73.9423613 }, + { "lat": 40.8469328, "lon": -73.9423858 }, + { "lat": 40.8468482, "lon": -73.9424273 }, + { "lat": 40.8466956, "lon": -73.9425158 }, + { "lat": 40.8466382, "lon": -73.9425468 }, + { "lat": 40.8465851, "lon": -73.9425692 }, + { "lat": 40.8465200, "lon": -73.9425940 }, + { "lat": 40.8464417, "lon": -73.9426186 }, + { "lat": 40.8463919, "lon": -73.9426259 }, + { "lat": 40.8463308, "lon": -73.9426291 }, + { "lat": 40.8462601, "lon": -73.9426268 }, + { "lat": 40.8461895, "lon": -73.9426181 }, + { "lat": 40.8461247, "lon": -73.9426064 }, + { "lat": 40.8460579, "lon": -73.9425900 }, + { "lat": 40.8453393, "lon": -73.9423607 }, + { "lat": 40.8452229, "lon": -73.9423207 }, + { "lat": 40.8451826, "lon": -73.9423122 }, + { "lat": 40.8451388, "lon": -73.9423085 }, + { "lat": 40.8450948, "lon": -73.9423150 }, + { "lat": 40.8450494, "lon": -73.9423273 }, + { "lat": 40.8446105, "lon": -73.9424729 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Haven Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671743, + "bounds": { + "minlat": 40.7295644, + "minlon": -73.9965723, + "maxlat": 40.7307210, + "maxlon": -73.9955665 + }, + "nodes": [ + 42433587, + 3584752200, + 3584752212, + 42449817, + 3584752226, + 3584752273, + 42433298 + ], + "geometry": [ + { "lat": 40.7295644, "lon": -73.9965723 }, + { "lat": 40.7296172, "lon": -73.9965229 }, + { "lat": 40.7300937, "lon": -73.9961203 }, + { "lat": 40.7301561, "lon": -73.9960614 }, + { "lat": 40.7301960, "lon": -73.9960307 }, + { "lat": 40.7306656, "lon": -73.9956245 }, + { "lat": 40.7307210, "lon": -73.9955665 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Washington Square East", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "parking:left": "no", + "parking:left:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671749, + "bounds": { + "minlat": 40.7952489, + "minlon": -73.9319171, + "maxlat": 40.7954151, + "maxlon": -73.9316737 + }, + "nodes": [ + 13363913187, + 13363913186, + 13363913185, + 13363913192, + 13363913190, + 13363913188, + 6216836442, + 4443803074 + ], + "geometry": [ + { "lat": 40.7952489, "lon": -73.9316737 }, + { "lat": 40.7952826, "lon": -73.9316813 }, + { "lat": 40.7953113, "lon": -73.9316961 }, + { "lat": 40.7953304, "lon": -73.9317261 }, + { "lat": 40.7953482, "lon": -73.9317659 }, + { "lat": 40.7953685, "lon": -73.9318111 }, + { "lat": 40.7953839, "lon": -73.9318453 }, + { "lat": 40.7954151, "lon": -73.9319171 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671752, + "bounds": { + "minlat": 40.7720527, + "minlon": -73.9466560, + "maxlat": 40.7723510, + "maxlon": -73.9459354 + }, + "nodes": [ + 42439416, + 7135164270, + 6185447546 + ], + "geometry": [ + { "lat": 40.7723510, "lon": -73.9466560 }, + { "lat": 40.7723011, "lon": -73.9465331 }, + { "lat": 40.7720527, "lon": -73.9459354 } + ], + "tags": { + "highway": "residential", + "name": "Gracie Terrace", + "name_1": "East 82nd Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671754, + "bounds": { + "minlat": 40.7316250, + "minlon": -74.0018089, + "maxlat": 40.7329507, + "maxlon": -73.9991088 + }, + "nodes": [ + 42433821, + 8309478822, + 42430233, + 8309478819, + 6561624315, + 4302910548, + 1692433942 + ], + "geometry": [ + { "lat": 40.7329507, "lon": -74.0018089 }, + { "lat": 40.7323777, "lon": -74.0006352 }, + { "lat": 40.7323150, "lon": -74.0005110 }, + { "lat": 40.7322618, "lon": -74.0004024 }, + { "lat": 40.7316803, "lon": -73.9992144 }, + { "lat": 40.7316603, "lon": -73.9991735 }, + { "lat": 40.7316250, "lon": -73.9991088 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West Washington Place", + "name:etymology:wikidata": "Q909592", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671756, + "bounds": { + "minlat": 40.7159233, + "minlon": -73.9808785, + "maxlat": 40.7164540, + "maxlon": -73.9805736 + }, + "nodes": [ + 42429812, + 4300994796, + 42435544 + ], + "geometry": [ + { "lat": 40.7164540, "lon": -73.9805736 }, + { "lat": 40.7163707, "lon": -73.9806216 }, + { "lat": 40.7159233, "lon": -73.9808785 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "Columbia Street", + "name:ko": "콜럼비아 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671774, + "bounds": { + "minlat": 40.7332979, + "minlon": -73.9871866, + "maxlat": 40.7357989, + "maxlon": -73.9853657 + }, + "nodes": [ + 42440729, + 3985008872, + 12183286718, + 5266421748, + 5481911746, + 12183286719, + 3985008875, + 42431459, + 3985008879, + 12183286722, + 12183286723, + 9507816948, + 42449890, + 9507816942, + 12183286724, + 12183286726, + 9679181057, + 42446875, + 9679181065, + 12183286727, + 12183286729, + 9679181047, + 42437283 + ], + "geometry": [ + { "lat": 40.7332979, "lon": -73.9871866 }, + { "lat": 40.7333912, "lon": -73.9871197 }, + { "lat": 40.7334407, "lon": -73.9870842 }, + { "lat": 40.7336044, "lon": -73.9869652 }, + { "lat": 40.7337536, "lon": -73.9868568 }, + { "lat": 40.7338836, "lon": -73.9867624 }, + { "lat": 40.7339297, "lon": -73.9867284 }, + { "lat": 40.7339818, "lon": -73.9866911 }, + { "lat": 40.7340441, "lon": -73.9866443 }, + { "lat": 40.7340846, "lon": -73.9866145 }, + { "lat": 40.7345253, "lon": -73.9862923 }, + { "lat": 40.7345702, "lon": -73.9862600 }, + { "lat": 40.7346235, "lon": -73.9862217 }, + { "lat": 40.7346843, "lon": -73.9861780 }, + { "lat": 40.7347240, "lon": -73.9861494 }, + { "lat": 40.7351164, "lon": -73.9858642 }, + { "lat": 40.7351564, "lon": -73.9858349 }, + { "lat": 40.7352124, "lon": -73.9857941 }, + { "lat": 40.7352678, "lon": -73.9857535 }, + { "lat": 40.7353073, "lon": -73.9857247 }, + { "lat": 40.7356989, "lon": -73.9854375 }, + { "lat": 40.7357405, "lon": -73.9854076 }, + { "lat": 40.7357989, "lon": -73.9853657 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 5671775, + "bounds": { + "minlat": 40.8077903, + "minlon": -73.9319782, + "maxlat": 40.8078525, + "maxlon": -73.9318355 + }, + "nodes": [ + 2826997293, + 7477281993 + ], + "geometry": [ + { "lat": 40.8078525, "lon": -73.9318355 }, + { "lat": 40.8077903, "lon": -73.9319782 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Third Avenue Bridge", + "destination:lanes:forward": "2nd Avenue|2nd Avenue|Lexington Avenue|Lexington Avenue|FDR Drive South", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "5", + "layer": "2", + "maxspeed": "25 mph", + "name": "Third Avenue Bridge", + "oneway": "yes", + "sidewalk:both": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "toll": "no", + "wikidata": "Q7784766", + "wikipedia": "en:Third Avenue Bridge (New York City)" + } +}, +{ + "type": "way", + "id": 5671777, + "bounds": { + "minlat": 40.7602812, + "minlon": -73.9522977, + "maxlat": 40.7682417, + "maxlon": -73.9455965 + }, + "nodes": [ + 42450109, + 3569568706, + 8265114519, + 593428233, + 8265114520, + 8265114522, + 42450111, + 8265114534, + 8265114525, + 8265114527, + 8265114535, + 8265114528, + 42450114, + 3569402525, + 3569402529, + 1242830301, + 42426673, + 3569402535, + 1242830319, + 42426634, + 4604406922, + 7966097311, + 5212861679, + 5212861680, + 8265114660, + 1241986424, + 1241986677, + 8265114767, + 8265114770, + 42434364, + 1241986511, + 8265114771, + 8265114769, + 8265114793, + 1241986541, + 8265114791, + 8265114772 + ], + "geometry": [ + { "lat": 40.7602812, "lon": -73.9522562 }, + { "lat": 40.7603579, "lon": -73.9522977 }, + { "lat": 40.7604020, "lon": -73.9522847 }, + { "lat": 40.7605042, "lon": -73.9521832 }, + { "lat": 40.7606231, "lon": -73.9520765 }, + { "lat": 40.7609549, "lon": -73.9517785 }, + { "lat": 40.7609720, "lon": -73.9517631 }, + { "lat": 40.7610181, "lon": -73.9517576 }, + { "lat": 40.7610824, "lon": -73.9517499 }, + { "lat": 40.7612636, "lon": -73.9517271 }, + { "lat": 40.7612914, "lon": -73.9517192 }, + { "lat": 40.7614237, "lon": -73.9516818 }, + { "lat": 40.7616515, "lon": -73.9515546 }, + { "lat": 40.7620805, "lon": -73.9512077 }, + { "lat": 40.7624006, "lon": -73.9509316 }, + { "lat": 40.7633986, "lon": -73.9500706 }, + { "lat": 40.7636207, "lon": -73.9498017 }, + { "lat": 40.7640510, "lon": -73.9491939 }, + { "lat": 40.7641088, "lon": -73.9491162 }, + { "lat": 40.7641612, "lon": -73.9490409 }, + { "lat": 40.7645591, "lon": -73.9487319 }, + { "lat": 40.7647960, "lon": -73.9485479 }, + { "lat": 40.7650942, "lon": -73.9483162 }, + { "lat": 40.7652649, "lon": -73.9481836 }, + { "lat": 40.7653568, "lon": -73.9481122 }, + { "lat": 40.7658429, "lon": -73.9477346 }, + { "lat": 40.7669360, "lon": -73.9468591 }, + { "lat": 40.7670431, "lon": -73.9467672 }, + { "lat": 40.7674209, "lon": -73.9464300 }, + { "lat": 40.7676329, "lon": -73.9462823 }, + { "lat": 40.7680789, "lon": -73.9459534 }, + { "lat": 40.7681117, "lon": -73.9459158 }, + { "lat": 40.7681308, "lon": -73.9458518 }, + { "lat": 40.7681483, "lon": -73.9457797 }, + { "lat": 40.7681776, "lon": -73.9457070 }, + { "lat": 40.7682154, "lon": -73.9456411 }, + { "lat": 40.7682417, "lon": -73.9455965 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "West Road", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 5671779, + "bounds": { + "minlat": 40.7534137, + "minlon": -73.9585426, + "maxlat": 40.7564104, + "maxlon": -73.9560172 + }, + "nodes": [ + 2300353428, + 9189040207, + 2460850818, + 2460850817, + 9913659981, + 2470550905, + 9013031963, + 9013031962, + 2460850816, + 9913659983, + 9913659982, + 2473626028, + 9189040208, + 9013031958, + 9913659984, + 593473271, + 9189040210, + 9913659985, + 9913659986, + 9913659987, + 9913659988, + 9913659989, + 9913659990, + 5487036760, + 6323386777, + 9013031955, + 9189040211, + 9913659991, + 9913659992, + 5487036762, + 6323386771, + 8379571252 + ], + "geometry": [ + { "lat": 40.7534137, "lon": -73.9584840 }, + { "lat": 40.7534377, "lon": -73.9585203 }, + { "lat": 40.7534487, "lon": -73.9585294 }, + { "lat": 40.7534631, "lon": -73.9585381 }, + { "lat": 40.7534794, "lon": -73.9585425 }, + { "lat": 40.7534964, "lon": -73.9585426 }, + { "lat": 40.7535138, "lon": -73.9585399 }, + { "lat": 40.7535329, "lon": -73.9585335 }, + { "lat": 40.7535530, "lon": -73.9585232 }, + { "lat": 40.7535733, "lon": -73.9585096 }, + { "lat": 40.7535917, "lon": -73.9584898 }, + { "lat": 40.7536468, "lon": -73.9584213 }, + { "lat": 40.7537331, "lon": -73.9583200 }, + { "lat": 40.7537674, "lon": -73.9582839 }, + { "lat": 40.7538012, "lon": -73.9582519 }, + { "lat": 40.7538406, "lon": -73.9582176 }, + { "lat": 40.7540533, "lon": -73.9580358 }, + { "lat": 40.7541569, "lon": -73.9579540 }, + { "lat": 40.7542354, "lon": -73.9578934 }, + { "lat": 40.7543433, "lon": -73.9578159 }, + { "lat": 40.7544548, "lon": -73.9577391 }, + { "lat": 40.7545585, "lon": -73.9576658 }, + { "lat": 40.7546570, "lon": -73.9575951 }, + { "lat": 40.7548192, "lon": -73.9574749 }, + { "lat": 40.7548550, "lon": -73.9574469 }, + { "lat": 40.7549836, "lon": -73.9573429 }, + { "lat": 40.7550961, "lon": -73.9572470 }, + { "lat": 40.7552120, "lon": -73.9571416 }, + { "lat": 40.7553349, "lon": -73.9570264 }, + { "lat": 40.7554523, "lon": -73.9569172 }, + { "lat": 40.7554878, "lon": -73.9568833 }, + { "lat": 40.7564104, "lon": -73.9560172 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "no", + "highway": "unclassified", + "lanes": "1", + "lcn": "yes", + "lit": "yes", + "maxspeed": "15 mph", + "name": "West Loop Road", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5671780, + "bounds": { + "minlat": 40.8147543, + "minlon": -73.9476667, + "maxlat": 40.8178547, + "maxlon": -73.9402901 + }, + "nodes": [ + 42432954, + 42439590, + 7784459440, + 13703655374, + 10170605789, + 42435850, + 10170605785, + 5401929686, + 9150629546, + 42439891, + 2141026507, + 8758345322, + 9559408305, + 3099327961, + 42434361 + ], + "geometry": [ + { "lat": 40.8178547, "lon": -73.9476667 }, + { "lat": 40.8177600, "lon": -73.9474410 }, + { "lat": 40.8177227, "lon": -73.9473527 }, + { "lat": 40.8173438, "lon": -73.9464552 }, + { "lat": 40.8172304, "lon": -73.9461866 }, + { "lat": 40.8171750, "lon": -73.9460550 }, + { "lat": 40.8171226, "lon": -73.9459295 }, + { "lat": 40.8169756, "lon": -73.9455815 }, + { "lat": 40.8160597, "lon": -73.9434016 }, + { "lat": 40.8160117, "lon": -73.9432878 }, + { "lat": 40.8159452, "lon": -73.9431299 }, + { "lat": 40.8159028, "lon": -73.9430294 }, + { "lat": 40.8148542, "lon": -73.9405290 }, + { "lat": 40.8148176, "lon": -73.9404415 }, + { "lat": 40.8147543, "lon": -73.9402901 } + ], + "tags": { + "highway": "residential", + "name": "West 136th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671781, + "bounds": { + "minlat": 40.8207479, + "minlon": -73.9546928, + "maxlat": 40.8208172, + "maxlon": -73.9545230 + }, + "nodes": [ + 561035351, + 561035350 + ], + "geometry": [ + { "lat": 40.8208172, "lon": -73.9546928 }, + { "lat": 40.8207479, "lon": -73.9545230 } + ], + "tags": { + "highway": "residential", + "name": "West 136th Street", + "name_1": "West 136 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671786, + "bounds": { + "minlat": 40.7885002, + "minlon": -73.9725593, + "maxlat": 40.7908320, + "maxlon": -73.9670210 + }, + "nodes": [ + 42435316, + 7123525310, + 4016646207, + 4016646206, + 10060860189, + 8687882636 + ], + "geometry": [ + { "lat": 40.7885002, "lon": -73.9670210 }, + { "lat": 40.7885475, "lon": -73.9671364 }, + { "lat": 40.7896378, "lon": -73.9697186 }, + { "lat": 40.7896980, "lon": -73.9698629 }, + { "lat": 40.7897438, "lon": -73.9699718 }, + { "lat": 40.7908320, "lon": -73.9725593 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "5 mph", + "name": "West 91st Street", + "name:ru": "Западная 91-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671788, + "bounds": { + "minlat": 40.8531188, + "minlon": -73.9320920, + "maxlat": 40.8551570, + "maxlon": -73.9272390 + }, + "nodes": [ + 42442766, + 8740550841, + 8740550768, + 42450275, + 8740550774, + 5403868142, + 42433107, + 5403868141, + 8740550738, + 42449654, + 8740550743, + 1764651313, + 8740551014, + 42443486 + ], + "geometry": [ + { "lat": 40.8531188, "lon": -73.9272390 }, + { "lat": 40.8531721, "lon": -73.9273668 }, + { "lat": 40.8536834, "lon": -73.9285945 }, + { "lat": 40.8537240, "lon": -73.9286920 }, + { "lat": 40.8537679, "lon": -73.9287961 }, + { "lat": 40.8542587, "lon": -73.9299603 }, + { "lat": 40.8543100, "lon": -73.9300820 }, + { "lat": 40.8543644, "lon": -73.9302176 }, + { "lat": 40.8547908, "lon": -73.9312275 }, + { "lat": 40.8548307, "lon": -73.9313220 }, + { "lat": 40.8548726, "lon": -73.9314206 }, + { "lat": 40.8551135, "lon": -73.9319852 }, + { "lat": 40.8551345, "lon": -73.9320367 }, + { "lat": 40.8551570, "lon": -73.9320920 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "West 189th Street", + "name_1": "West 189 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "189th", + "tiger:name_base_1": "189", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5671789, + "bounds": { + "minlat": 40.8553350, + "minlon": -73.9342626, + "maxlat": 40.8555926, + "maxlon": -73.9333120 + }, + "nodes": [ + 42429094, + 9563795381, + 1763628647, + 9563795389, + 42450290 + ], + "geometry": [ + { "lat": 40.8553350, "lon": -73.9333120 }, + { "lat": 40.8553750, "lon": -73.9334585 }, + { "lat": 40.8555605, "lon": -73.9341403 }, + { "lat": 40.8555734, "lon": -73.9341890 }, + { "lat": 40.8555926, "lon": -73.9342626 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "West 189th Street", + "name_1": "West 189 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "189th", + "tiger:name_base_1": "189", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5671799, + "bounds": { + "minlat": 40.7322180, + "minlon": -73.9986160, + "maxlat": 40.7329485, + "maxlon": -73.9980019 + }, + "nodes": [ + 42437951, + 8309478831, + 12179562737, + 42450333, + 3584752526, + 42433281 + ], + "geometry": [ + { "lat": 40.7329485, "lon": -73.9980019 }, + { "lat": 40.7328975, "lon": -73.9980399 }, + { "lat": 40.7328682, "lon": -73.9980627 }, + { "lat": 40.7326143, "lon": -73.9982834 }, + { "lat": 40.7322763, "lon": -73.9985736 }, + { "lat": 40.7322180, "lon": -73.9986160 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "MacDougal Street", + "name:etymology:wikidata": "Q659951", + "name:ko": "맥두걸 스트리트", + "name:ru": "Макдугал-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6721850", + "wikipedia": "en:MacDougal Street" + } +}, +{ + "type": "way", + "id": 5671801, + "bounds": { + "minlat": 40.7709867, + "minlon": -73.9936610, + "maxlat": 40.7721482, + "maxlon": -73.9909124 + }, + "nodes": [ + 42450352, + 4872443917, + 12153915818, + 7661292943, + 4870256104, + 10082484574, + 42430747 + ], + "geometry": [ + { "lat": 40.7721482, "lon": -73.9936610 }, + { "lat": 40.7721236, "lon": -73.9936029 }, + { "lat": 40.7721075, "lon": -73.9935647 }, + { "lat": 40.7716311, "lon": -73.9924373 }, + { "lat": 40.7714260, "lon": -73.9919519 }, + { "lat": 40.7710447, "lon": -73.9910496 }, + { "lat": 40.7709867, "lon": -73.9909124 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "West 58th Street", + "name:ru": "Западная 58-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671810, + "bounds": { + "minlat": 40.7692588, + "minlon": -73.9950218, + "maxlat": 40.7694179, + "maxlon": -73.9948504 + }, + "nodes": [ + 12153915836, + 12153915849, + 9143011012, + 12153915848, + 9140954071 + ], + "geometry": [ + { "lat": 40.7694179, "lon": -73.9950218 }, + { "lat": 40.7693144, "lon": -73.9949444 }, + { "lat": 40.7692923, "lon": -73.9949134 }, + { "lat": 40.7692721, "lon": -73.9948799 }, + { "lat": 40.7692588, "lon": -73.9948504 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5671811, + "bounds": { + "minlat": 40.7922499, + "minlon": -73.9477852, + "maxlat": 40.7929208, + "maxlon": -73.9462871 + }, + "nodes": [ + 42447182, + 4970503547, + 4970503554, + 4970519941, + 6254630401, + 42450460, + 9178805722 + ], + "geometry": [ + { "lat": 40.7922499, "lon": -73.9462871 }, + { "lat": 40.7923111, "lon": -73.9463504 }, + { "lat": 40.7924092, "lon": -73.9465799 }, + { "lat": 40.7926415, "lon": -73.9471376 }, + { "lat": 40.7928708, "lon": -73.9476831 }, + { "lat": 40.7929011, "lon": -73.9477434 }, + { "lat": 40.7929208, "lon": -73.9477852 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "yes", + "sidewalk": "right" + } +}, +{ + "type": "way", + "id": 5671887, + "bounds": { + "minlat": 40.7277134, + "minlon": -73.9723599, + "maxlat": 40.7298812, + "maxlon": -73.9717652 + }, + "nodes": [ + 370898427, + 9142507247, + 9142507246, + 370898425, + 370898424, + 1991212105, + 9142507248, + 370898423, + 9142507249, + 370898422, + 9142507250, + 4913187803, + 370898421, + 9142507251, + 9142507252, + 370898420, + 9907937400, + 42431487 + ], + "geometry": [ + { "lat": 40.7298812, "lon": -73.9723599 }, + { "lat": 40.7297960, "lon": -73.9722793 }, + { "lat": 40.7297053, "lon": -73.9722059 }, + { "lat": 40.7295390, "lon": -73.9720967 }, + { "lat": 40.7294207, "lon": -73.9720178 }, + { "lat": 40.7293160, "lon": -73.9719616 }, + { "lat": 40.7292203, "lon": -73.9719175 }, + { "lat": 40.7291137, "lon": -73.9718752 }, + { "lat": 40.7290104, "lon": -73.9718434 }, + { "lat": 40.7289004, "lon": -73.9718134 }, + { "lat": 40.7287950, "lon": -73.9717919 }, + { "lat": 40.7286931, "lon": -73.9717783 }, + { "lat": 40.7285850, "lon": -73.9717692 }, + { "lat": 40.7284812, "lon": -73.9717652 }, + { "lat": 40.7283721, "lon": -73.9717698 }, + { "lat": 40.7281681, "lon": -73.9717935 }, + { "lat": 40.7279491, "lon": -73.9718205 }, + { "lat": 40.7277134, "lon": -73.9718545 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 5671901, + "bounds": { + "minlat": 40.7769226, + "minlon": -73.9435413, + "maxlat": 40.7792164, + "maxlon": -73.9426625 + }, + "nodes": [ + 42433422, + 371206909, + 3785532370, + 3785532371, + 42451214, + 3785532373, + 42451231 + ], + "geometry": [ + { "lat": 40.7792164, "lon": -73.9435413 }, + { "lat": 40.7783835, "lon": -73.9431548 }, + { "lat": 40.7781781, "lon": -73.9430657 }, + { "lat": 40.7779777, "lon": -73.9429865 }, + { "lat": 40.7777700, "lon": -73.9429153 }, + { "lat": 40.7770311, "lon": -73.9426923 }, + { "lat": 40.7769226, "lon": -73.9426625 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxheight": "11'5\"", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 5671914, + "bounds": { + "minlat": 40.8135670, + "minlon": -73.9530769, + "maxlat": 40.8143012, + "maxlon": -73.9513220 + }, + "nodes": [ + 42427531, + 10171865601, + 8151881638, + 9150598855, + 10171865595, + 42448607 + ], + "geometry": [ + { "lat": 40.8135670, "lon": -73.9513220 }, + { "lat": 40.8135952, "lon": -73.9513891 }, + { "lat": 40.8136229, "lon": -73.9514548 }, + { "lat": 40.8142370, "lon": -73.9529205 }, + { "lat": 40.8142630, "lon": -73.9529839 }, + { "lat": 40.8143012, "lon": -73.9530769 } + ], + "tags": { + "highway": "residential", + "name": "West 129th Street", + "name_1": "West 129 Street" + } +}, +{ + "type": "way", + "id": 5671916, + "bounds": { + "minlat": 40.8089618, + "minlon": -73.9435449, + "maxlat": 40.8102846, + "maxlon": -73.9403996 + }, + "nodes": [ + 42438984, + 10171956605, + 5481939506, + 11947052605, + 42451564 + ], + "geometry": [ + { "lat": 40.8089618, "lon": -73.9403996 }, + { "lat": 40.8090086, "lon": -73.9405082 }, + { "lat": 40.8091758, "lon": -73.9409036 }, + { "lat": 40.8102528, "lon": -73.9434691 }, + { "lat": 40.8102846, "lon": -73.9435449 } + ], + "tags": { + "highway": "residential", + "name": "West 129th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671918, + "bounds": { + "minlat": 40.8127270, + "minlon": -73.9503500, + "maxlat": 40.8131590, + "maxlon": -73.9493010 + }, + "nodes": [ + 1905863520, + 10171603019, + 10171865572, + 42432936 + ], + "geometry": [ + { "lat": 40.8127270, "lon": -73.9493010 }, + { "lat": 40.8127795, "lon": -73.9494283 }, + { "lat": 40.8131079, "lon": -73.9502259 }, + { "lat": 40.8131590, "lon": -73.9503500 } + ], + "tags": { + "highway": "residential", + "name": "West 129th Street", + "name_1": "West 129 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5671920, + "bounds": { + "minlat": 40.7164549, + "minlon": -73.9883771, + "maxlat": 40.7182459, + "maxlon": -73.9874583 + }, + "nodes": [ + 42451593, + 5804835285, + 6869026441, + 8960350843, + 42432097, + 8231896477, + 12195869785, + 8231896481, + 486867534 + ], + "geometry": [ + { "lat": 40.7164549, "lon": -73.9883771 }, + { "lat": 40.7165622, "lon": -73.9883210 }, + { "lat": 40.7172899, "lon": -73.9879425 }, + { "lat": 40.7173475, "lon": -73.9879118 }, + { "lat": 40.7174100, "lon": -73.9878823 }, + { "lat": 40.7174709, "lon": -73.9878540 }, + { "lat": 40.7181017, "lon": -73.9875347 }, + { "lat": 40.7181498, "lon": -73.9875092 }, + { "lat": 40.7182459, "lon": -73.9874583 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Norfolk Street", + "name:etymology:wikidata": "Q23109", + "name:ko": "노퍽 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671921, + "bounds": { + "minlat": 40.8290830, + "minlon": -73.9466740, + "maxlat": 40.8314368, + "maxlon": -73.9410780 + }, + "nodes": [ + 42427891, + 11218718850, + 11218835145, + 42432980, + 11218670334, + 11218896944, + 42442645, + 11218896947, + 11191773492, + 561035369 + ], + "geometry": [ + { "lat": 40.8290830, "lon": -73.9410780 }, + { "lat": 40.8291374, "lon": -73.9412080 }, + { "lat": 40.8293933, "lon": -73.9418193 }, + { "lat": 40.8294451, "lon": -73.9419432 }, + { "lat": 40.8295014, "lon": -73.9420778 }, + { "lat": 40.8302222, "lon": -73.9438001 }, + { "lat": 40.8302699, "lon": -73.9439142 }, + { "lat": 40.8303301, "lon": -73.9440567 }, + { "lat": 40.8313981, "lon": -73.9465826 }, + { "lat": 40.8314368, "lon": -73.9466740 } + ], + "tags": { + "highway": "residential", + "name": "West 153rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "153rd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 5671928, + "bounds": { + "minlat": 40.7131632, + "minlon": -73.9939296, + "maxlat": 40.7136600, + "maxlon": -73.9936603 + }, + "nodes": [ + 8279851201, + 4160382267, + 8999612004, + 8999612003, + 11638918057, + 8279851191 + ], + "geometry": [ + { "lat": 40.7136600, "lon": -73.9939296 }, + { "lat": 40.7136391, "lon": -73.9939210 }, + { "lat": 40.7135137, "lon": -73.9938523 }, + { "lat": 40.7134323, "lon": -73.9938077 }, + { "lat": 40.7132040, "lon": -73.9936827 }, + { "lat": 40.7131632, "lon": -73.9936603 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Forsyth Street", + "name:etymology:wikidata": "Q4888596", + "name:ko": "포사이스 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5470659", + "wikipedia": "en:Forsyth Street" + } +}, +{ + "type": "way", + "id": 5671945, + "bounds": { + "minlat": 40.7704153, + "minlon": -73.9480635, + "maxlat": 40.7710722, + "maxlon": -73.9475897 + }, + "nodes": [ + 42438513, + 7103815243, + 5163802885, + 42451744 + ], + "geometry": [ + { "lat": 40.7710722, "lon": -73.9475897 }, + { "lat": 40.7710270, "lon": -73.9476230 }, + { "lat": 40.7704961, "lon": -73.9480136 }, + { "lat": 40.7704153, "lon": -73.9480635 } + ], + "tags": { + "highway": "residential", + "lanes": "4", + "name": "East End Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4122377", + "wikipedia": "en:East End Avenue" + } +}, +{ + "type": "way", + "id": 5671964, + "bounds": { + "minlat": 40.8563688, + "minlon": -73.9254584, + "maxlat": 40.8581831, + "maxlon": -73.9246294 + }, + "nodes": [ + 42442773, + 595367056, + 42451798, + 42451804, + 42451811, + 42451816, + 42451820, + 42451825, + 42451831, + 11089965146, + 42451836, + 42451843, + 42451847, + 42451855, + 42451869, + 5403858703 + ], + "geometry": [ + { "lat": 40.8563688, "lon": -73.9248625 }, + { "lat": 40.8565738, "lon": -73.9247346 }, + { "lat": 40.8567838, "lon": -73.9246507 }, + { "lat": 40.8569667, "lon": -73.9246294 }, + { "lat": 40.8571601, "lon": -73.9246518 }, + { "lat": 40.8573046, "lon": -73.9247017 }, + { "lat": 40.8574460, "lon": -73.9247700 }, + { "lat": 40.8576030, "lon": -73.9248400 }, + { "lat": 40.8577610, "lon": -73.9249320 }, + { "lat": 40.8578160, "lon": -73.9249724 }, + { "lat": 40.8578960, "lon": -73.9250310 }, + { "lat": 40.8579570, "lon": -73.9250820 }, + { "lat": 40.8580658, "lon": -73.9252030 }, + { "lat": 40.8581240, "lon": -73.9253114 }, + { "lat": 40.8581618, "lon": -73.9253974 }, + { "lat": 40.8581831, "lon": -73.9254584 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Fort George Avenue", + "name:etymology:wikidata": "Q1438535", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort George", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 5671973, + "bounds": { + "minlat": 40.7328410, + "minlon": -74.0021240, + "maxlat": 40.7329507, + "maxlon": -74.0018089 + }, + "nodes": [ + 42433821, + 4320032277, + 8764758200, + 5690465658, + 42451987 + ], + "geometry": [ + { "lat": 40.7329507, "lon": -74.0018089 }, + { "lat": 40.7329278, "lon": -74.0018684 }, + { "lat": 40.7328783, "lon": -74.0020141 }, + { "lat": 40.7328610, "lon": -74.0020649 }, + { "lat": 40.7328410, "lon": -74.0021240 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Barrow Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5671994, + "bounds": { + "minlat": 40.8346333, + "minlon": -73.9455518, + "maxlat": 40.8351437, + "maxlon": -73.9454493 + }, + "nodes": [ + 4207731295, + 2504882471, + 13460886887, + 9935939400, + 2512378850 + ], + "geometry": [ + { "lat": 40.8346333, "lon": -73.9454542 }, + { "lat": 40.8347586, "lon": -73.9454493 }, + { "lat": 40.8349670, "lon": -73.9454983 }, + { "lat": 40.8350293, "lon": -73.9455130 }, + { "lat": 40.8351437, "lon": -73.9455518 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Edward M. Morgan Place", + "name:etymology:wikidata": "Q5344283", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edward M Morgan", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5671998, + "bounds": { + "minlat": 40.8482758, + "minlon": -73.9376884, + "maxlat": 40.8483863, + "maxlon": -73.9373506 + }, + "nodes": [ + 42429017, + 9908570822, + 9908570821, + 12065640524, + 9550791741, + 12065640525, + 5590991391 + ], + "geometry": [ + { "lat": 40.8483863, "lon": -73.9376884 }, + { "lat": 40.8483767, "lon": -73.9376415 }, + { "lat": 40.8483651, "lon": -73.9375989 }, + { "lat": 40.8483535, "lon": -73.9375585 }, + { "lat": 40.8483423, "lon": -73.9375238 }, + { "lat": 40.8483277, "lon": -73.9374839 }, + { "lat": 40.8482758, "lon": -73.9373506 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 178th Street", + "name_1": "West 178 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "178th", + "tiger:name_base_1": "178", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033" + } +}, +{ + "type": "way", + "id": 5672001, + "bounds": { + "minlat": 40.7332427, + "minlon": -74.0007095, + "maxlat": 40.7339795, + "maxlon": -74.0003264 + }, + "nodes": [ + 42436856, + 4320194273, + 1701920971, + 42452173, + 1701920981, + 8231954055, + 42433282 + ], + "geometry": [ + { "lat": 40.7339795, "lon": -74.0003725 }, + { "lat": 40.7339262, "lon": -74.0003601 }, + { "lat": 40.7337951, "lon": -74.0003264 }, + { "lat": 40.7337653, "lon": -74.0003266 }, + { "lat": 40.7337333, "lon": -74.0003380 }, + { "lat": 40.7332967, "lon": -74.0006686 }, + { "lat": 40.7332427, "lon": -74.0007095 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Gay Street", + "name:ru": "Гей-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tourism": "attraction", + "wikidata": "Q5528649", + "wikipedia": "en:Gay Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672006, + "bounds": { + "minlat": 40.7028762, + "minlon": -74.0130194, + "maxlat": 40.7031234, + "maxlon": -74.0129525 + }, + "nodes": [ + 12296071741, + 1772062007, + 7335430611, + 42444355 + ], + "geometry": [ + { "lat": 40.7028762, "lon": -74.0129525 }, + { "lat": 40.7030142, "lon": -74.0129898 }, + { "lat": 40.7030699, "lon": -74.0130055 }, + { "lat": 40.7031234, "lon": -74.0130194 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Whitehall Street", + "name:etymology:wikidata": "Q214820", + "name:ko": "화이트홀 스트리트", + "name:ru": "Уайтхолл-стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Whitehall", + "tiger:name_type": "St", + "tiger:zip_right": "10004", + "turn:lanes": "left", + "wikidata": "Q7995998", + "wikipedia": "en:Whitehall Street" + } +}, +{ + "type": "way", + "id": 5672027, + "bounds": { + "minlat": 40.7087693, + "minlon": -74.0138504, + "maxlat": 40.7089951, + "maxlon": -74.0132433 + }, + "nodes": [ + 42436184, + 11415663307, + 11415663306, + 11415663305, + 8262936667, + 12299507913 + ], + "geometry": [ + { "lat": 40.7087788, "lon": -74.0132433 }, + { "lat": 40.7087719, "lon": -74.0132631 }, + { "lat": 40.7087693, "lon": -74.0132881 }, + { "lat": 40.7087699, "lon": -74.0133145 }, + { "lat": 40.7087739, "lon": -74.0133369 }, + { "lat": 40.7089951, "lon": -74.0138504 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Carlisle Street", + "name:ko": "칼라일 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "parking:right:taxi": "designated", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "14'4\"" + } +}, +{ + "type": "way", + "id": 5672032, + "bounds": { + "minlat": 40.8013714, + "minlon": -73.9345304, + "maxlat": 40.8014525, + "maxlon": -73.9343366 + }, + "nodes": [ + 7925143983, + 6175905225, + 42443105 + ], + "geometry": [ + { "lat": 40.8013714, "lon": -73.9343366 }, + { "lat": 40.8014092, "lon": -73.9344268 }, + { "lat": 40.8014525, "lon": -73.9345304 } + ], + "tags": { + "highway": "residential", + "name": "East 123rd Street", + "name_1": "East 123 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5672036, + "bounds": { + "minlat": 40.7566594, + "minlon": -73.9846194, + "maxlat": 40.7592226, + "maxlon": -73.9785571 + }, + "nodes": [ + 42452353, + 10166333044, + 3944708050, + 10166333085, + 42430350, + 8375496966, + 1762438249, + 10228962338, + 42439994 + ], + "geometry": [ + { "lat": 40.7566594, "lon": -73.9785571 }, + { "lat": 40.7567131, "lon": -73.9786807 }, + { "lat": 40.7567187, "lon": -73.9786939 }, + { "lat": 40.7579598, "lon": -73.9816625 }, + { "lat": 40.7580163, "lon": -73.9817975 }, + { "lat": 40.7580748, "lon": -73.9819359 }, + { "lat": 40.7583143, "lon": -73.9825027 }, + { "lat": 40.7591754, "lon": -73.9845091 }, + { "lat": 40.7592226, "lon": -73.9846194 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 47th Street", + "name:ru": "Западная 47-я стрит", + "name_1": "West 47 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4638574", + "wikipedia": "en:47th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672040, + "bounds": { + "minlat": 40.7302937, + "minlon": -73.9996039, + "maxlat": 40.7310432, + "maxlon": -73.9980762 + }, + "nodes": [ + 1692433941, + 3584752497, + 3584752281, + 42439542, + 3584752265, + 3584752242, + 42436796 + ], + "geometry": [ + { "lat": 40.7310432, "lon": -73.9996039 }, + { "lat": 40.7310158, "lon": -73.9995479 }, + { "lat": 40.7307045, "lon": -73.9989118 }, + { "lat": 40.7306557, "lon": -73.9988148 }, + { "lat": 40.7306425, "lon": -73.9987885 }, + { "lat": 40.7303229, "lon": -73.9981425 }, + { "lat": 40.7302937, "lon": -73.9980762 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Washington Square South", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672050, + "bounds": { + "minlat": 40.8593184, + "minlon": -73.9313239, + "maxlat": 40.8593942, + "maxlon": -73.9307617 + }, + "nodes": [ + 1764387325, + 9561253112, + 1764387324, + 9565802869, + 9561253114, + 42421783 + ], + "geometry": [ + { "lat": 40.8593942, "lon": -73.9307617 }, + { "lat": 40.8593602, "lon": -73.9308743 }, + { "lat": 40.8593423, "lon": -73.9309337 }, + { "lat": 40.8593184, "lon": -73.9311063 }, + { "lat": 40.8593214, "lon": -73.9311946 }, + { "lat": 40.8593291, "lon": -73.9313239 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Nagle Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 5672052, + "bounds": { + "minlat": 40.8372403, + "minlon": -73.9458560, + "maxlat": 40.8385590, + "maxlon": -73.9427148 + }, + "nodes": [ + 42441701, + 9935939349, + 9421763716, + 42427122, + 9935939361, + 11292676889, + 42428966 + ], + "geometry": [ + { "lat": 40.8385590, "lon": -73.9458560 }, + { "lat": 40.8385402, "lon": -73.9458129 }, + { "lat": 40.8378328, "lon": -73.9441272 }, + { "lat": 40.8377866, "lon": -73.9440172 }, + { "lat": 40.8377473, "lon": -73.9439236 }, + { "lat": 40.8372781, "lon": -73.9428049 }, + { "lat": 40.8372403, "lon": -73.9427148 } + ], + "tags": { + "highway": "residential", + "name": "West 162nd Street", + "name_1": "West 162 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "162nd", + "tiger:name_base_1": "162", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5672053, + "bounds": { + "minlat": 40.8348890, + "minlon": -73.9395780, + "maxlat": 40.8356697, + "maxlon": -73.9377510 + }, + "nodes": [ + 13317820334, + 42449166, + 2075600881, + 8725182219, + 42439721 + ], + "geometry": [ + { "lat": 40.8356697, "lon": -73.9395780 }, + { "lat": 40.8351960, "lon": -73.9384890 }, + { "lat": 40.8349576, "lon": -73.9379157 }, + { "lat": 40.8349324, "lon": -73.9378554 }, + { "lat": 40.8348890, "lon": -73.9377510 } + ], + "tags": { + "alt_name": "Emmett W. Bassett Way", + "description": "This honorary street name memorializes Emmett W. Bassett", + "highway": "residential", + "historic": "memorial", + "name": "West 162nd Street", + "name_1": "West 162 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "162nd", + "tiger:name_base_1": "162", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5672060, + "bounds": { + "minlat": 40.7100934, + "minlon": -73.9941372, + "maxlat": 40.7105010, + "maxlon": -73.9940943 + }, + "nodes": [ + 42452556, + 9525441196, + 11519945283, + 9525441193, + 7830788096 + ], + "geometry": [ + { "lat": 40.7100934, "lon": -73.9940953 }, + { "lat": 40.7101331, "lon": -73.9940943 }, + { "lat": 40.7101752, "lon": -73.9940974 }, + { "lat": 40.7104696, "lon": -73.9941332 }, + { "lat": 40.7105010, "lon": -73.9941372 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Market Slip", + "name:ko": "마켓 슬립", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672063, + "bounds": { + "minlat": 40.8074173, + "minlon": -73.9601090, + "maxlat": 40.8081275, + "maxlon": -73.9584103 + }, + "nodes": [ + 42442577, + 8379847751, + 8379847765, + 6791440566, + 3579432159 + ], + "geometry": [ + { "lat": 40.8081275, "lon": -73.9601090 }, + { "lat": 40.8080734, "lon": -73.9599801 }, + { "lat": 40.8076281, "lon": -73.9589165 }, + { "lat": 40.8074555, "lon": -73.9585044 }, + { "lat": 40.8074173, "lon": -73.9584103 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 118th Street", + "name:ru": "Западная 118-я стрит", + "name_1": "West 118 Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672065, + "bounds": { + "minlat": 40.8050309, + "minlon": -73.9572588, + "maxlat": 40.8069224, + "maxlon": -73.9527655 + }, + "nodes": [ + 42440122, + 8250876252, + 8250876239, + 42447326, + 10168010397, + 11298919665, + 4708064890, + 11298919662, + 11840449871, + 42432897 + ], + "geometry": [ + { "lat": 40.8069224, "lon": -73.9572588 }, + { "lat": 40.8068726, "lon": -73.9571424 }, + { "lat": 40.8063755, "lon": -73.9559673 }, + { "lat": 40.8063364, "lon": -73.9558716 }, + { "lat": 40.8062958, "lon": -73.9557741 }, + { "lat": 40.8057736, "lon": -73.9545210 }, + { "lat": 40.8057280, "lon": -73.9544117 }, + { "lat": 40.8056827, "lon": -73.9543046 }, + { "lat": 40.8050897, "lon": -73.9529044 }, + { "lat": 40.8050309, "lon": -73.9527655 } + ], + "tags": { + "highway": "residential", + "name": "West 118th Street", + "name:ru": "Западная 118-я стрит", + "name_1": "West 118 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5672068, + "bounds": { + "minlat": 40.7916758, + "minlon": -73.9703681, + "maxlat": 40.7940644, + "maxlon": -73.9646940 + }, + "nodes": [ + 42424439, + 7108033371, + 7066598474, + 7801775766, + 42443381, + 7801775722, + 7061136330, + 7066598473, + 7061136328, + 8687882756, + 42442534 + ], + "geometry": [ + { "lat": 40.7916758, "lon": -73.9646940 }, + { "lat": 40.7917254, "lon": -73.9648118 }, + { "lat": 40.7927485, "lon": -73.9672421 }, + { "lat": 40.7928147, "lon": -73.9673993 }, + { "lat": 40.7928760, "lon": -73.9675451 }, + { "lat": 40.7929201, "lon": -73.9676497 }, + { "lat": 40.7929826, "lon": -73.9677983 }, + { "lat": 40.7939226, "lon": -73.9700312 }, + { "lat": 40.7939445, "lon": -73.9700832 }, + { "lat": 40.7940114, "lon": -73.9702420 }, + { "lat": 40.7940644, "lon": -73.9703681 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "name": "West 96th Street", + "name:ru": "Западная 96-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672073, + "bounds": { + "minlat": 40.7344390, + "minlon": -74.0061609, + "maxlat": 40.7350811, + "maxlon": -74.0019681 + }, + "nodes": [ + 42430813, + 9791390463, + 10168546916, + 42452598, + 10168548417, + 10168546914, + 42431805, + 10168546913, + 10168907024, + 42436400 + ], + "geometry": [ + { "lat": 40.7350811, "lon": -74.0019681 }, + { "lat": 40.7350577, "lon": -74.0021357 }, + { "lat": 40.7348993, "lon": -74.0031009 }, + { "lat": 40.7348912, "lon": -74.0031527 }, + { "lat": 40.7348808, "lon": -74.0032181 }, + { "lat": 40.7346608, "lon": -74.0046853 }, + { "lat": 40.7346517, "lon": -74.0047458 }, + { "lat": 40.7346413, "lon": -74.0048159 }, + { "lat": 40.7344544, "lon": -74.0060585 }, + { "lat": 40.7344390, "lon": -74.0061609 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Charles Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29167331", + "wikipedia": "en:Charles Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672076, + "bounds": { + "minlat": 40.7108774, + "minlon": -73.9823619, + "maxlat": 40.7110613, + "maxlon": -73.9805703 + }, + "nodes": [ + 42423303, + 11038072035, + 9619793651, + 5804654958, + 11038072034, + 6411124182, + 11037389992, + 370888101 + ], + "geometry": [ + { "lat": 40.7110613, "lon": -73.9805703 }, + { "lat": 40.7110476, "lon": -73.9805855 }, + { "lat": 40.7110385, "lon": -73.9806160 }, + { "lat": 40.7110305, "lon": -73.9806515 }, + { "lat": 40.7110108, "lon": -73.9808139 }, + { "lat": 40.7109364, "lon": -73.9819452 }, + { "lat": 40.7109127, "lon": -73.9821181 }, + { "lat": 40.7108774, "lon": -73.9823619 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672080, + "bounds": { + "minlat": 40.7067859, + "minlon": -74.0036179, + "maxlat": 40.7072195, + "maxlon": -74.0027472 + }, + "nodes": [ + 42440260, + 10309622572, + 10311946112, + 10311945583, + 701063220, + 10942512956, + 42452620 + ], + "geometry": [ + { "lat": 40.7067859, "lon": -74.0036179 }, + { "lat": 40.7068578, "lon": -74.0034784 }, + { "lat": 40.7068701, "lon": -74.0034545 }, + { "lat": 40.7071748, "lon": -74.0028421 }, + { "lat": 40.7071889, "lon": -74.0028138 }, + { "lat": 40.7072007, "lon": -74.0027905 }, + { "lat": 40.7072195, "lon": -74.0027472 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Front Street", + "name:ko": "프론트 스트리트", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5672090, + "bounds": { + "minlat": 40.7065671, + "minlon": -74.0043247, + "maxlat": 40.7069492, + "maxlon": -74.0037408 + }, + "nodes": [ + 42440264, + 10311937101, + 10311563884, + 10309622600 + ], + "geometry": [ + { "lat": 40.7069492, "lon": -74.0037408 }, + { "lat": 40.7068675, "lon": -74.0038656 }, + { "lat": 40.7065708, "lon": -74.0043190 }, + { "lat": 40.7065671, "lon": -74.0043247 } + ], + "tags": { + "highway": "pedestrian", + "name": "Front Street", + "name:ko": "프론트 스트리트", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5672093, + "bounds": { + "minlat": 40.7139728, + "minlon": -73.9799617, + "maxlat": 40.7154169, + "maxlon": -73.9792153 + }, + "nodes": [ + 42452117, + 5173625923, + 42432189, + 8310245617, + 8310245614, + 42435550 + ], + "geometry": [ + { "lat": 40.7139728, "lon": -73.9799617 }, + { "lat": 40.7140759, "lon": -73.9799087 }, + { "lat": 40.7148881, "lon": -73.9794886 }, + { "lat": 40.7149498, "lon": -73.9794566 }, + { "lat": 40.7153400, "lon": -73.9792550 }, + { "lat": 40.7154169, "lon": -73.9792153 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lewis Street", + "name:ko": "루이스 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672096, + "bounds": { + "minlat": 40.7685804, + "minlon": -73.9426639, + "maxlat": 40.7697013, + "maxlon": -73.9412786 + }, + "nodes": [ + 42448857, + 2346815970, + 7529909909, + 9913669075, + 7529909907, + 7529909894, + 9913669076, + 9913669077, + 593416866 + ], + "geometry": [ + { "lat": 40.7685804, "lon": -73.9426639 }, + { "lat": 40.7686571, "lon": -73.9425580 }, + { "lat": 40.7687802, "lon": -73.9423840 }, + { "lat": 40.7691743, "lon": -73.9418160 }, + { "lat": 40.7692588, "lon": -73.9417056 }, + { "lat": 40.7693367, "lon": -73.9416136 }, + { "lat": 40.7694472, "lon": -73.9414912 }, + { "lat": 40.7695314, "lon": -73.9414136 }, + { "lat": 40.7697013, "lon": -73.9412786 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "maxspeed": "15 mph", + "name": "East Road" + } +}, +{ + "type": "way", + "id": 5672099, + "bounds": { + "minlat": 40.7556966, + "minlon": -73.9544144, + "maxlat": 40.7557654, + "maxlon": -73.9542710 + }, + "nodes": [ + 5487036755, + 9913659993, + 2300353444 + ], + "geometry": [ + { "lat": 40.7557654, "lon": -73.9542710 }, + { "lat": 40.7557531, "lon": -73.9543056 }, + { "lat": 40.7556966, "lon": -73.9544144 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "no", + "highway": "unclassified", + "lanes": "1", + "lcn": "yes", + "maxspeed": "15 mph", + "name": "East Loop Road", + "name_1": "Main Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East", + "tiger:name_base_1": "Main", + "tiger:name_type": "Rd", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5672100, + "bounds": { + "minlat": 40.7649862, + "minlon": -73.9457989, + "maxlat": 40.7666626, + "maxlon": -73.9444219 + }, + "nodes": [ + 1241986496, + 1241986729, + 8265114800, + 8265114798, + 1241986569, + 8265114797, + 8265114795, + 1241986487 + ], + "geometry": [ + { "lat": 40.7649862, "lon": -73.9457989 }, + { "lat": 40.7651688, "lon": -73.9456478 }, + { "lat": 40.7652065, "lon": -73.9456134 }, + { "lat": 40.7657731, "lon": -73.9450968 }, + { "lat": 40.7660438, "lon": -73.9448499 }, + { "lat": 40.7663209, "lon": -73.9446169 }, + { "lat": 40.7665810, "lon": -73.9444223 }, + { "lat": 40.7666626, "lon": -73.9444219 } + ], + "tags": { + "access": "no", + "highway": "pedestrian", + "motor_vehicle": "no", + "name": "East Road", + "name_1": "Main Street" + } +}, +{ + "type": "way", + "id": 5672107, + "bounds": { + "minlat": 40.7805427, + "minlon": -73.9452485, + "maxlat": 40.7809648, + "maxlon": -73.9442562 + }, + "nodes": [ + 589929417, + 8828091529, + 9906275229, + 5482216794, + 11277369013 + ], + "geometry": [ + { "lat": 40.7805427, "lon": -73.9442562 }, + { "lat": 40.7805689, "lon": -73.9443163 }, + { "lat": 40.7805952, "lon": -73.9443765 }, + { "lat": 40.7806910, "lon": -73.9445956 }, + { "lat": 40.7809648, "lon": -73.9452485 } + ], + "tags": { + "access": "destination", + "highway": "residential", + "name": "East 93rd Street", + "name:ru": "Восточная 93-я стрит", + "oneway": "no", + "wikidata": "Q4645924", + "wikipedia": "en:93rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672110, + "bounds": { + "minlat": 40.7170784, + "minlon": -74.0075505, + "maxlat": 40.7176762, + "maxlon": -74.0062368 + }, + "nodes": [ + 42452816, + 8312361692, + 8312361659, + 42452817 + ], + "geometry": [ + { "lat": 40.7176762, "lon": -74.0075505 }, + { "lat": 40.7176186, "lon": -74.0074249 }, + { "lat": 40.7171368, "lon": -74.0063651 }, + { "lat": 40.7170784, "lon": -74.0062368 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Worth Street", + "name:etymology:wikidata": "Q3568734", + "name:ko": "워스 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1318800", + "wikipedia": "en:Worth Street" + } +}, +{ + "type": "way", + "id": 5672118, + "bounds": { + "minlat": 40.7584847, + "minlon": -73.9746825, + "maxlat": 40.7591136, + "maxlon": -73.9731554 + }, + "nodes": [ + 42445930, + 3977886230, + 12834723246, + 10125233917, + 596775914 + ], + "geometry": [ + { "lat": 40.7591136, "lon": -73.9746825 }, + { "lat": 40.7590673, "lon": -73.9745723 }, + { "lat": 40.7585535, "lon": -73.9733191 }, + { "lat": 40.7585299, "lon": -73.9732616 }, + { "lat": 40.7584847, "lon": -73.9731554 } + ], + "tags": { + "cycleway:right": "track", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 52nd Street", + "name:ru": "Восточная 52-я стрит", + "name_1": "East 52 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672120, + "bounds": { + "minlat": 40.7978705, + "minlon": -73.9719240, + "maxlat": 40.7997050, + "maxlon": -73.9675624 + }, + "nodes": [ + 42441899, + 6880029849, + 6880029850, + 42431111, + 9496980745, + 10171397828, + 42428737, + 1061531802, + 7004451414, + 10165989501, + 9654214243, + 6207264905, + 42442557 + ], + "geometry": [ + { "lat": 40.7997050, "lon": -73.9719240 }, + { "lat": 40.7996856, "lon": -73.9718746 }, + { "lat": 40.7991282, "lon": -73.9705446 }, + { "lat": 40.7990793, "lon": -73.9704265 }, + { "lat": 40.7990304, "lon": -73.9703111 }, + { "lat": 40.7985557, "lon": -73.9691994 }, + { "lat": 40.7985155, "lon": -73.9691051 }, + { "lat": 40.7984292, "lon": -73.9689001 }, + { "lat": 40.7983926, "lon": -73.9688110 }, + { "lat": 40.7979370, "lon": -73.9677252 }, + { "lat": 40.7979147, "lon": -73.9676720 }, + { "lat": 40.7979117, "lon": -73.9676647 }, + { "lat": 40.7978705, "lon": -73.9675624 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 102nd Street", + "name:ru": "Западная 102-я стрит", + "name_1": "West 102 Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672122, + "bounds": { + "minlat": 40.7954892, + "minlon": -73.9633452, + "maxlat": 40.7960913, + "maxlon": -73.9619156 + }, + "nodes": [ + 42447278, + 10101626668, + 5401494495, + 9796881834, + 42435333 + ], + "geometry": [ + { "lat": 40.7960913, "lon": -73.9633452 }, + { "lat": 40.7960522, "lon": -73.9632535 }, + { "lat": 40.7958873, "lon": -73.9628674 }, + { "lat": 40.7955378, "lon": -73.9620316 }, + { "lat": 40.7954892, "lon": -73.9619156 } + ], + "tags": { + "highway": "residential", + "name": "West 102nd Street", + "name:ru": "Западная 102-я стрит", + "name_1": "West 102 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5672129, + "bounds": { + "minlat": 40.7153027, + "minlon": -73.9772223, + "maxlat": 40.7154997, + "maxlon": -73.9764830 + }, + "nodes": [ + 42452936, + 4300994881, + 4300945418, + 42446424 + ], + "geometry": [ + { "lat": 40.7153027, "lon": -73.9764830 }, + { "lat": 40.7153195, "lon": -73.9765433 }, + { "lat": 40.7154739, "lon": -73.9770612 }, + { "lat": 40.7154997, "lon": -73.9772223 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 5672135, + "bounds": { + "minlat": 40.7715895, + "minlon": -73.9471185, + "maxlat": 40.7717169, + "maxlon": -73.9468096 + }, + "nodes": [ + 371206274, + 7103815255, + 42451754 + ], + "geometry": [ + { "lat": 40.7715895, "lon": -73.9468096 }, + { "lat": 40.7716668, "lon": -73.9469967 }, + { "lat": 40.7717169, "lon": -73.9471185 } + ], + "tags": { + "highway": "residential", + "name": "East 81st Street", + "name:ru": "Восточная 81-я стрит", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672138, + "bounds": { + "minlat": 40.7270026, + "minlon": -73.9998695, + "maxlat": 40.7293265, + "maxlon": -73.9978721 + }, + "nodes": [ + 42448558, + 5829827214, + 1692433927, + 1692433928, + 6213204038, + 529556119, + 8309478929, + 42452964, + 8309478921, + 42440553 + ], + "geometry": [ + { "lat": 40.7270026, "lon": -73.9998695 }, + { "lat": 40.7270744, "lon": -73.9998079 }, + { "lat": 40.7280141, "lon": -73.9990007 }, + { "lat": 40.7280695, "lon": -73.9989542 }, + { "lat": 40.7280896, "lon": -73.9989372 }, + { "lat": 40.7281073, "lon": -73.9989223 }, + { "lat": 40.7281325, "lon": -73.9989013 }, + { "lat": 40.7287340, "lon": -73.9984000 }, + { "lat": 40.7292518, "lon": -73.9979387 }, + { "lat": 40.7293265, "lon": -73.9978721 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "LaGuardia Place", + "name:etymology:wikidata": "Q312502", + "name:ko": "라과디아 플레이스", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672142, + "bounds": { + "minlat": 40.7554289, + "minlon": -74.0010329, + "maxlat": 40.7570547, + "maxlon": -73.9971480 + }, + "nodes": [ + 42430643, + 8261122914, + 593915267, + 3270031031, + 3270031030, + 9421933505, + 8261122931, + 42452975, + 8261122928, + 5481852077, + 4207921706 + ], + "geometry": [ + { "lat": 40.7570547, "lon": -74.0010329 }, + { "lat": 40.7570009, "lon": -74.0009072 }, + { "lat": 40.7566398, "lon": -74.0000293 }, + { "lat": 40.7565953, "lon": -73.9999215 }, + { "lat": 40.7564056, "lon": -73.9994672 }, + { "lat": 40.7563799, "lon": -73.9994045 }, + { "lat": 40.7559285, "lon": -73.9983399 }, + { "lat": 40.7558737, "lon": -73.9982088 }, + { "lat": 40.7558172, "lon": -73.9980732 }, + { "lat": 40.7557592, "lon": -73.9979353 }, + { "lat": 40.7554289, "lon": -73.9971480 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 36th Street", + "name:ru": "Западная 36-я стрит", + "name_1": "West 36 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672146, + "bounds": { + "minlat": 40.7058880, + "minlon": -74.0142958, + "maxlat": 40.7062776, + "maxlon": -74.0132806 + }, + "nodes": [ + 42428365, + 7335430602, + 42452984, + 4145586931, + 4145586916, + 4145586938, + 4145586926, + 42436202 + ], + "geometry": [ + { "lat": 40.7058880, "lon": -74.0132806 }, + { "lat": 40.7059056, "lon": -74.0133512 }, + { "lat": 40.7061810, "lon": -74.0141288 }, + { "lat": 40.7061981, "lon": -74.0141762 }, + { "lat": 40.7062215, "lon": -74.0142264 }, + { "lat": 40.7062373, "lon": -74.0142515 }, + { "lat": 40.7062618, "lon": -74.0142810 }, + { "lat": 40.7062776, "lon": -74.0142958 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Morris Street", + "name:etymology": "Morris Canal", + "name:etymology:wikidata": "Q714960", + "name:ko": "모리스 스트리트", + "name:ru": "Моррис-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10006" + } +}, +{ + "type": "way", + "id": 5672148, + "bounds": { + "minlat": 40.7064654, + "minlon": -74.0159381, + "maxlat": 40.7066739, + "maxlon": -74.0151189 + }, + "nodes": [ + 42451370, + 9181525957, + 4207000225, + 8821315483, + 5209084625, + 4145416881, + 4145416876, + 42452994 + ], + "geometry": [ + { "lat": 40.7066739, "lon": -74.0159381 }, + { "lat": 40.7066497, "lon": -74.0158405 }, + { "lat": 40.7066402, "lon": -74.0158013 }, + { "lat": 40.7066326, "lon": -74.0157704 }, + { "lat": 40.7065538, "lon": -74.0154461 }, + { "lat": 40.7064810, "lon": -74.0151497 }, + { "lat": 40.7064729, "lon": -74.0151288 }, + { "lat": 40.7064654, "lon": -74.0151189 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Morris Street", + "name:etymology": "Morris Canal", + "name:etymology:wikidata": "Q714960", + "name:ko": "모리스 스트리트", + "name:ru": "Моррис-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "St", + "tiger:zip_left": "10006", + "tiger:zip_right": "10006" + } +}, +{ + "type": "way", + "id": 5672149, + "bounds": { + "minlat": 40.7537188, + "minlon": -73.9799429, + "maxlat": 40.7547828, + "maxlon": -73.9774323 + }, + "nodes": [ + 42443556, + 9965135057, + 3944708033, + 42445920, + 3955360050, + 11509763382, + 10125247897, + 42443807 + ], + "geometry": [ + { "lat": 40.7547828, "lon": -73.9799429 }, + { "lat": 40.7547310, "lon": -73.9798206 }, + { "lat": 40.7541498, "lon": -73.9784495 }, + { "lat": 40.7540990, "lon": -73.9783295 }, + { "lat": 40.7540571, "lon": -73.9782307 }, + { "lat": 40.7539090, "lon": -73.9778802 }, + { "lat": 40.7537554, "lon": -73.9775170 }, + { "lat": 40.7537188, "lon": -73.9774323 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 44th Street", + "name:ru": "Восточная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672151, + "bounds": { + "minlat": 40.7501172, + "minlon": -73.9712630, + "maxlat": 40.7511220, + "maxlon": -73.9688692 + }, + "nodes": [ + 42442943, + 12673774521, + 4481642369, + 3569749111, + 42453000 + ], + "geometry": [ + { "lat": 40.7511220, "lon": -73.9712630 }, + { "lat": 40.7510637, "lon": -73.9711256 }, + { "lat": 40.7505830, "lon": -73.9699935 }, + { "lat": 40.7501792, "lon": -73.9690237 }, + { "lat": 40.7501172, "lon": -73.9688692 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 44th Street", + "name:ru": "Восточная 44-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672155, + "bounds": { + "minlat": 40.7515352, + "minlon": -73.9818235, + "maxlat": 40.7522048, + "maxlon": -73.9802218 + }, + "nodes": [ + 42446488, + 5178688285, + 3997454671, + 42445914 + ], + "geometry": [ + { "lat": 40.7522048, "lon": -73.9818235 }, + { "lat": 40.7521547, "lon": -73.9817050 }, + { "lat": 40.7515641, "lon": -73.9803120 }, + { "lat": 40.7515352, "lon": -73.9802218 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lit": "yes", + "name": "East 40th Street", + "name:ru": "Восточная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672159, + "bounds": { + "minlat": 40.7333766, + "minlon": -74.0025813, + "maxlat": 40.7337060, + "maxlon": -74.0016130 + }, + "nodes": [ + 42433286, + 6855861034, + 4320028838, + 42433822 + ], + "geometry": [ + { "lat": 40.7337060, "lon": -74.0016130 }, + { "lat": 40.7336571, "lon": -74.0017625 }, + { "lat": 40.7334094, "lon": -74.0024873 }, + { "lat": 40.7333766, "lon": -74.0025813 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grove Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672161, + "bounds": { + "minlat": 40.8345360, + "minlon": -73.9396723, + "maxlat": 40.8348317, + "maxlon": -73.9389650 + }, + "nodes": [ + 42449163, + 11296125602, + 748726602 + ], + "geometry": [ + { "lat": 40.8345360, "lon": -73.9389650 }, + { "lat": 40.8345653, "lon": -73.9390350 }, + { "lat": 40.8348317, "lon": -73.9396723 } + ], + "tags": { + "highway": "residential", + "name": "Sylvan Terrace", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sylvan", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5672168, + "bounds": { + "minlat": 40.7182917, + "minlon": -74.0069661, + "maxlat": 40.7190677, + "maxlon": -74.0053562 + }, + "nodes": [ + 42453038, + 8312361623, + 8312361632, + 42453059, + 8312361629, + 11308790081, + 8304498317, + 11515468967, + 42430115 + ], + "geometry": [ + { "lat": 40.7190677, "lon": -74.0069661 }, + { "lat": 40.7189787, "lon": -74.0068087 }, + { "lat": 40.7189211, "lon": -74.0067055 }, + { "lat": 40.7188700, "lon": -74.0066144 }, + { "lat": 40.7188135, "lon": -74.0065082 }, + { "lat": 40.7187924, "lon": -74.0064612 }, + { "lat": 40.7183264, "lon": -74.0054378 }, + { "lat": 40.7183173, "lon": -74.0054163 }, + { "lat": 40.7182917, "lon": -74.0053562 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "name:ko": "프랭클린 스트리트", + "name:ru": "Франклин-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672173, + "bounds": { + "minlat": 40.7527720, + "minlon": -73.9652010, + "maxlat": 40.7533140, + "maxlon": -73.9648110 + }, + "nodes": [ + 42453087, + 8224676518, + 42453080 + ], + "geometry": [ + { "lat": 40.7533140, "lon": -73.9648110 }, + { "lat": 40.7532620, "lon": -73.9648503 }, + { "lat": 40.7527720, "lon": -73.9652010 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Beekman Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Beekman", + "tiger:name_type": "Pl", + "tiger:reviewed": "name", + "tiger:zip_left": "10022", + "tiger:zip_right": "10022" + } +}, +{ + "type": "way", + "id": 5672176, + "bounds": { + "minlat": 40.7327562, + "minlon": -73.9900290, + "maxlat": 40.7335235, + "maxlon": -73.9898470 + }, + "nodes": [ + 42446528, + 8309479657, + 12179560532, + 12179560533, + 8309479694, + 42436939 + ], + "geometry": [ + { "lat": 40.7327562, "lon": -73.9900290 }, + { "lat": 40.7328252, "lon": -73.9900206 }, + { "lat": 40.7328533, "lon": -73.9900151 }, + { "lat": 40.7334037, "lon": -73.9898684 }, + { "lat": 40.7334495, "lon": -73.9898580 }, + { "lat": 40.7335235, "lon": -73.9898470 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "4th Avenue", + "name:ru": "4-я Авеню", + "name_1": "4 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|" + } +}, +{ + "type": "way", + "id": 5672178, + "bounds": { + "minlat": 40.7298936, + "minlon": -73.9907402, + "maxlat": 40.7305763, + "maxlon": -73.9904913 + }, + "nodes": [ + 42439249, + 3627218171, + 12179565608, + 3919359296, + 42445558 + ], + "geometry": [ + { "lat": 40.7298936, "lon": -73.9907402 }, + { "lat": 40.7299650, "lon": -73.9907129 }, + { "lat": 40.7304590, "lon": -73.9905209 }, + { "lat": 40.7304944, "lon": -73.9905120 }, + { "lat": 40.7305763, "lon": -73.9904913 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "4th Avenue", + "name:ru": "4-я Авеню", + "name_1": "4 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 5672180, + "bounds": { + "minlat": 40.7858123, + "minlon": -73.9755093, + "maxlat": 40.7870011, + "maxlon": -73.9726868 + }, + "nodes": [ + 42443349, + 10042554901, + 10039932506, + 42442475 + ], + "geometry": [ + { "lat": 40.7858123, "lon": -73.9726868 }, + { "lat": 40.7858627, "lon": -73.9728088 }, + { "lat": 40.7869511, "lon": -73.9753907 }, + { "lat": 40.7870011, "lon": -73.9755093 } + ], + "tags": { + "alt_name": "West 85 Street", + "highway": "residential", + "name": "West 85th Street", + "name:ru": "Западная 85-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q4644879", + "wikipedia": "en:85th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672183, + "bounds": { + "minlat": 40.7228867, + "minlon": -73.9814332, + "maxlat": 40.7236873, + "maxlon": -73.9797217 + }, + "nodes": [ + 42453156, + 6781574657, + 3290143199, + 6781574658, + 8309479359, + 42453158 + ], + "geometry": [ + { "lat": 40.7236873, "lon": -73.9814332 }, + { "lat": 40.7236338, "lon": -73.9813953 }, + { "lat": 40.7236008, "lon": -73.9813622 }, + { "lat": 40.7235494, "lon": -73.9812623 }, + { "lat": 40.7229308, "lon": -73.9798238 }, + { "lat": 40.7228867, "lon": -73.9797217 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 5th Street", + "name:ru": "Восточная 5-я стрит", + "name_1": "East 5 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672184, + "bounds": { + "minlat": 40.7257960, + "minlon": -73.9889783, + "maxlat": 40.7267997, + "maxlon": -73.9866230 + }, + "nodes": [ + 42453166, + 3834459532, + 7977873304, + 5481937330, + 3420766627, + 42442850 + ], + "geometry": [ + { "lat": 40.7257960, "lon": -73.9866230 }, + { "lat": 40.7258398, "lon": -73.9867259 }, + { "lat": 40.7258525, "lon": -73.9867538 }, + { "lat": 40.7263005, "lon": -73.9878068 }, + { "lat": 40.7267497, "lon": -73.9888600 }, + { "lat": 40.7267997, "lon": -73.9889783 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 5th Street", + "name:ru": "Восточная 5-я стрит", + "name_1": "East 5 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:left:orientation": "parallel", + "parking:right:orientation": "diagonal", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672187, + "bounds": { + "minlat": 40.7238820, + "minlon": -73.9843993, + "maxlat": 40.7248589, + "maxlon": -73.9820830 + }, + "nodes": [ + 42453177, + 7977832463, + 6814309598, + 42453175 + ], + "geometry": [ + { "lat": 40.7238820, "lon": -73.9820830 }, + { "lat": 40.7239150, "lon": -73.9821612 }, + { "lat": 40.7248161, "lon": -73.9842982 }, + { "lat": 40.7248589, "lon": -73.9843993 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 5th Street", + "name:ru": "Восточная 5-я стрит", + "name_1": "East 5 Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672190, + "bounds": { + "minlat": 40.7430899, + "minlon": -73.9763847, + "maxlat": 40.7441114, + "maxlon": -73.9740139 + }, + "nodes": [ + 42453187, + 3817760670, + 1729086998, + 1729087000, + 3817760026, + 42442913 + ], + "geometry": [ + { "lat": 40.7430899, "lon": -73.9740139 }, + { "lat": 40.7431480, "lon": -73.9741507 }, + { "lat": 40.7436399, "lon": -73.9753158 }, + { "lat": 40.7437398, "lon": -73.9755524 }, + { "lat": 40.7440359, "lon": -73.9762391 }, + { "lat": 40.7441114, "lon": -73.9763847 } + ], + "tags": { + "alt_name": "Father Damien Way", + "highway": "unclassified", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 33rd Street", + "name:etymology:wikidata": "Q232785", + "name:ru": "Восточная 33-я стрит", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "http://www.flandershouse.org/fatherdamien", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672195, + "bounds": { + "minlat": 40.8000730, + "minlon": -73.9510373, + "maxlat": 40.8010634, + "maxlon": -73.9503147 + }, + "nodes": [ + 42431200, + 8807524477, + 8807524527, + 42453216, + 8807524606, + 7640495254, + 4207724567 + ], + "geometry": [ + { "lat": 40.8000730, "lon": -73.9510373 }, + { "lat": 40.8001296, "lon": -73.9509958 }, + { "lat": 40.8006450, "lon": -73.9506026 }, + { "lat": 40.8006933, "lon": -73.9505653 }, + { "lat": 40.8007472, "lon": -73.9505249 }, + { "lat": 40.8007901, "lon": -73.9504932 }, + { "lat": 40.8010634, "lon": -73.9503147 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 5672211, + "bounds": { + "minlat": 40.7389341, + "minlon": -73.9895636, + "maxlat": 40.7398722, + "maxlon": -73.9873431 + }, + "nodes": [ + 4597668039, + 10172843074, + 5481897719, + 12181309684, + 4276517116, + 42428192 + ], + "geometry": [ + { "lat": 40.7389341, "lon": -73.9873431 }, + { "lat": 40.7389742, "lon": -73.9874373 }, + { "lat": 40.7394278, "lon": -73.9885110 }, + { "lat": 40.7398163, "lon": -73.9894336 }, + { "lat": 40.7398396, "lon": -73.9894885 }, + { "lat": 40.7398722, "lon": -73.9895636 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 21st Street", + "name:ru": "Восточная 21-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9" + } +}, +{ + "type": "way", + "id": 5672214, + "bounds": { + "minlat": 40.7240884, + "minlon": -73.9963010, + "maxlat": 40.7246620, + "maxlon": -73.9953435 + }, + "nodes": [ + 42435485, + 8231877091, + 7906873337, + 8231877099, + 42445505, + 8231877092, + 7906873336, + 8231877095, + 42453327 + ], + "geometry": [ + { "lat": 40.7240884, "lon": -73.9953435 }, + { "lat": 40.7241209, "lon": -73.9954065 }, + { "lat": 40.7243212, "lon": -73.9957508 }, + { "lat": 40.7243529, "lon": -73.9958017 }, + { "lat": 40.7244010, "lon": -73.9958770 }, + { "lat": 40.7244555, "lon": -73.9959672 }, + { "lat": 40.7246236, "lon": -73.9962389 }, + { "lat": 40.7246344, "lon": -73.9962566 }, + { "lat": 40.7246620, "lon": -73.9963010 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "name": "Jersey Street", + "name:ar": "شارع جيرسي", + "name:ko": "저지 스트리트", + "oneway": "yes", + "service": "alley", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672217, + "bounds": { + "minlat": 40.8671330, + "minlon": -73.9255140, + "maxlat": 40.8685090, + "maxlon": -73.9217178 + }, + "nodes": [ + 42445637, + 9561420915, + 1764675767, + 9561420911, + 42453349, + 8952453950, + 8153243805, + 8952453945, + 42431234 + ], + "geometry": [ + { "lat": 40.8671330, "lon": -73.9255140 }, + { "lat": 40.8671668, "lon": -73.9254208 }, + { "lat": 40.8677593, "lon": -73.9237877 }, + { "lat": 40.8677800, "lon": -73.9237277 }, + { "lat": 40.8678180, "lon": -73.9236230 }, + { "lat": 40.8678537, "lon": -73.9235218 }, + { "lat": 40.8680756, "lon": -73.9228921 }, + { "lat": 40.8684664, "lon": -73.9218319 }, + { "lat": 40.8685090, "lon": -73.9217178 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cooper Street", + "name:etymology:wikidata": "Q167856", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cooper", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5672244, + "bounds": { + "minlat": 40.7070752, + "minlon": -74.0157726, + "maxlat": 40.7071861, + "maxlon": -74.0157313 + }, + "nodes": [ + 246911576, + 3574648569 + ], + "geometry": [ + { "lat": 40.7070752, "lon": -74.0157726 }, + { "lat": 40.7071861, "lon": -74.0157313 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 5672262, + "bounds": { + "minlat": 40.7879084, + "minlon": -73.9548140, + "maxlat": 40.7892037, + "maxlon": -73.9517278 + }, + "nodes": [ + 42453575, + 7089698647, + 6254630428, + 42446099, + 6254630517, + 13715726949, + 8735320756, + 6254630499, + 596776166 + ], + "geometry": [ + { "lat": 40.7892037, "lon": -73.9548140 }, + { "lat": 40.7891662, "lon": -73.9547247 }, + { "lat": 40.7885787, "lon": -73.9533274 }, + { "lat": 40.7885301, "lon": -73.9532121 }, + { "lat": 40.7884860, "lon": -73.9530997 }, + { "lat": 40.7880854, "lon": -73.9521504 }, + { "lat": 40.7879627, "lon": -73.9518597 }, + { "lat": 40.7879407, "lon": -73.9518053 }, + { "lat": 40.7879084, "lon": -73.9517278 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 98th Street", + "name:ru": "Восточная 98-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672264, + "bounds": { + "minlat": 40.8571635, + "minlon": -73.9299339, + "maxlat": 40.8574423, + "maxlon": -73.9282354 + }, + "nodes": [ + 42453586, + 9563795371, + 1762373649, + 704441649, + 704441651, + 42443492 + ], + "geometry": [ + { "lat": 40.8571635, "lon": -73.9282354 }, + { "lat": 40.8571972, "lon": -73.9283250 }, + { "lat": 40.8574204, "lon": -73.9289184 }, + { "lat": 40.8574423, "lon": -73.9290450 }, + { "lat": 40.8574344, "lon": -73.9291845 }, + { "lat": 40.8573725, "lon": -73.9299339 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "name": "Fairview Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5672273, + "bounds": { + "minlat": 40.7428760, + "minlon": -73.9891631, + "maxlat": 40.7430428, + "maxlon": -73.9887674 + }, + "nodes": [ + 3008856931, + 5147972301, + 42428212 + ], + "geometry": [ + { "lat": 40.7428760, "lon": -73.9887674 }, + { "lat": 40.7429982, "lon": -73.9890598 }, + { "lat": 40.7430428, "lon": -73.9891631 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "jersey_barrier", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 25th Street", + "name:ru": "Западная 25-я стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672275, + "bounds": { + "minlat": 40.7151250, + "minlon": -73.9803139, + "maxlat": 40.7151998, + "maxlon": -73.9802755 + }, + "nodes": [ + 42432190, + 5743893354 + ], + "geometry": [ + { "lat": 40.7151250, "lon": -73.9803139 }, + { "lat": 40.7151998, "lon": -73.9802755 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "25 mph", + "name": "Cannon Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cannon", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5672284, + "bounds": { + "minlat": 40.8659478, + "minlon": -73.9298529, + "maxlat": 40.8689939, + "maxlon": -73.9234330 + }, + "nodes": [ + 42453669, + 2035810272, + 9561561657, + 2035810273, + 2035810274, + 1760567070, + 2035810275, + 2035810276, + 42453666, + 2035810278, + 2035810279, + 42453663, + 2035810277, + 42453660, + 42453656, + 8153243812, + 42453653, + 42453650, + 13735245887, + 42453648, + 42453647, + 42453645, + 42453643, + 42453641, + 42453640, + 9561561633, + 42453638, + 11596424605, + 1760596432, + 13735245888, + 9561561627, + 42432802, + 9561561629, + 9561561620, + 42441007 + ], + "geometry": [ + { "lat": 40.8686860, "lon": -73.9234330 }, + { "lat": 40.8687506, "lon": -73.9234754 }, + { "lat": 40.8687711, "lon": -73.9234916 }, + { "lat": 40.8687911, "lon": -73.9235074 }, + { "lat": 40.8688398, "lon": -73.9235533 }, + { "lat": 40.8688872, "lon": -73.9236086 }, + { "lat": 40.8689400, "lon": -73.9236945 }, + { "lat": 40.8689623, "lon": -73.9237394 }, + { "lat": 40.8689781, "lon": -73.9237954 }, + { "lat": 40.8689890, "lon": -73.9238758 }, + { "lat": 40.8689939, "lon": -73.9239522 }, + { "lat": 40.8689910, "lon": -73.9240171 }, + { "lat": 40.8689775, "lon": -73.9241150 }, + { "lat": 40.8689480, "lon": -73.9242605 }, + { "lat": 40.8688710, "lon": -73.9245514 }, + { "lat": 40.8688673, "lon": -73.9245707 }, + { "lat": 40.8688104, "lon": -73.9248688 }, + { "lat": 40.8687545, "lon": -73.9251354 }, + { "lat": 40.8686730, "lon": -73.9255080 }, + { "lat": 40.8686284, "lon": -73.9257121 }, + { "lat": 40.8685873, "lon": -73.9258919 }, + { "lat": 40.8685353, "lon": -73.9260620 }, + { "lat": 40.8684686, "lon": -73.9262387 }, + { "lat": 40.8682644, "lon": -73.9265748 }, + { "lat": 40.8681044, "lon": -73.9267994 }, + { "lat": 40.8680060, "lon": -73.9269228 }, + { "lat": 40.8679563, "lon": -73.9269852 }, + { "lat": 40.8679097, "lon": -73.9270519 }, + { "lat": 40.8673543, "lon": -73.9278469 }, + { "lat": 40.8671653, "lon": -73.9281174 }, + { "lat": 40.8668000, "lon": -73.9286403 }, + { "lat": 40.8667430, "lon": -73.9287220 }, + { "lat": 40.8666861, "lon": -73.9288030 }, + { "lat": 40.8660286, "lon": -73.9297379 }, + { "lat": 40.8659478, "lon": -73.9298529 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Payson Avenue", + "name:etymology:wikidata": "Q94870592", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Payson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5672290, + "bounds": { + "minlat": 40.7649193, + "minlon": -73.9730260, + "maxlat": 40.7651079, + "maxlon": -73.9725564 + }, + "nodes": [ + 4347534783, + 4347534771, + 42453679, + 9906929141, + 4347534775, + 9906929140, + 4347534768 + ], + "geometry": [ + { "lat": 40.7649193, "lon": -73.9725564 }, + { "lat": 40.7649746, "lon": -73.9726690 }, + { "lat": 40.7650722, "lon": -73.9728725 }, + { "lat": 40.7650867, "lon": -73.9729113 }, + { "lat": 40.7651012, "lon": -73.9729599 }, + { "lat": 40.7651056, "lon": -73.9729918 }, + { "lat": 40.7651079, "lon": -73.9730260 } + ], + "tags": { + "alt_name": "Doris C. Freedman Place", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 60th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672303, + "bounds": { + "minlat": 40.7945982, + "minlon": -73.9404158, + "maxlat": 40.7956106, + "maxlon": -73.9380555 + }, + "nodes": [ + 42453709, + 7924346736, + 42443081, + 7924346803, + 11250700797, + 42453714 + ], + "geometry": [ + { "lat": 40.7956106, "lon": -73.9404158 }, + { "lat": 40.7951373, "lon": -73.9393251 }, + { "lat": 40.7950753, "lon": -73.9391857 }, + { "lat": 40.7950182, "lon": -73.9390573 }, + { "lat": 40.7946258, "lon": -73.9381214 }, + { "lat": 40.7945982, "lon": -73.9380555 } + ], + "tags": { + "highway": "residential", + "name": "East 113th Street", + "name:ru": "Восточная 113-я стрит", + "name_1": "East 113 Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5672309, + "bounds": { + "minlat": 40.8170728, + "minlon": -73.9558163, + "maxlat": 40.8174393, + "maxlon": -73.9555907 + }, + "nodes": [ + 42438224, + 7616666755, + 595313982 + ], + "geometry": [ + { "lat": 40.8170728, "lon": -73.9558163 }, + { "lat": 40.8172531, "lon": -73.9557098 }, + { "lat": 40.8174393, "lon": -73.9555907 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Old Broadway", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672311, + "bounds": { + "minlat": 40.7045437, + "minlon": -74.0103270, + "maxlat": 40.7047630, + "maxlon": -74.0100522 + }, + "nodes": [ + 42437537, + 11040350769, + 8276468722, + 11040350705, + 11040350704, + 42440667 + ], + "geometry": [ + { "lat": 40.7047630, "lon": -74.0103270 }, + { "lat": 40.7047428, "lon": -74.0103034 }, + { "lat": 40.7047321, "lon": -74.0102910 }, + { "lat": 40.7045894, "lon": -74.0101100 }, + { "lat": 40.7045651, "lon": -74.0100793 }, + { "lat": 40.7045437, "lon": -74.0100522 } + ], + "tags": { + "highway": "pedestrian", + "motor_vehicle": "no", + "motor_vehicle:conditional": "yes @ (02:00-10:00)", + "name": "Mill Lane", + "name:ko": "밀 레인", + "oneway": "yes", + "oneway:foot": "no", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:name_base": "Mill", + "tiger:name_type": "Ln", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 5672315, + "bounds": { + "minlat": 40.7787449, + "minlon": -73.9850810, + "maxlat": 40.7817710, + "maxlon": -73.9778503 + }, + "nodes": [ + 42441654, + 9168918188, + 10039898981, + 9168918187, + 9492556541, + 42431007, + 9492542216, + 11655743731, + 42428640, + 1061531500, + 11655743730, + 9441745386, + 6207264913, + 42442445, + 9441745385, + 9668181745, + 42443341 + ], + "geometry": [ + { "lat": 40.7817710, "lon": -73.9850810 }, + { "lat": 40.7817517, "lon": -73.9850179 }, + { "lat": 40.7817372, "lon": -73.9849760 }, + { "lat": 40.7817234, "lon": -73.9849364 }, + { "lat": 40.7811842, "lon": -73.9836463 }, + { "lat": 40.7811287, "lon": -73.9835232 }, + { "lat": 40.7810709, "lon": -73.9833894 }, + { "lat": 40.7803727, "lon": -73.9817257 }, + { "lat": 40.7803341, "lon": -73.9816325 }, + { "lat": 40.7802483, "lon": -73.9814211 }, + { "lat": 40.7802068, "lon": -73.9813248 }, + { "lat": 40.7799835, "lon": -73.9808057 }, + { "lat": 40.7799662, "lon": -73.9807646 }, + { "lat": 40.7799206, "lon": -73.9806592 }, + { "lat": 40.7798770, "lon": -73.9805549 }, + { "lat": 40.7787904, "lon": -73.9779594 }, + { "lat": 40.7787449, "lon": -73.9778503 } + ], + "tags": { + "alt_name": "West 74 Street", + "highway": "residential", + "name": "West 74th Street", + "name:ru": "Западная 74-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12052613", + "wikipedia": "en:74th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672321, + "bounds": { + "minlat": 40.7208346, + "minlon": -73.9976388, + "maxlat": 40.7212357, + "maxlon": -73.9974771 + }, + "nodes": [ + 42427327, + 8231927642, + 11808312026 + ], + "geometry": [ + { "lat": 40.7208346, "lon": -73.9976388 }, + { "lat": 40.7209054, "lon": -73.9976066 }, + { "lat": 40.7212357, "lon": -73.9974771 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Cleveland Place", + "name:etymology:wikidata": "Q35171", + "name:ko": "클리블랜드 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|right" + } +}, +{ + "type": "way", + "id": 5672331, + "bounds": { + "minlat": 40.7350838, + "minlon": -73.9988833, + "maxlat": 40.7352262, + "maxlon": -73.9986727 + }, + "nodes": [ + 8262308490, + 11044516896, + 2569065704, + 42453785 + ], + "geometry": [ + { "lat": 40.7350838, "lon": -73.9986727 }, + { "lat": 40.7350927, "lon": -73.9986935 }, + { "lat": 40.7351510, "lon": -73.9988298 }, + { "lat": 40.7352262, "lon": -73.9988833 } + ], + "tags": { + "access": "private", + "highway": "pedestrian", + "name": "Milligan Place", + "service": "alley", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 5672361, + "bounds": { + "minlat": 40.7075343, + "minlon": -74.0116479, + "maxlat": 40.7077322, + "maxlon": -74.0112941 + }, + "nodes": [ + 11051593243, + 8281922253, + 11051778460, + 10301699165, + 10301699164, + 11051778478, + 11051593261 + ], + "geometry": [ + { "lat": 40.7077322, "lon": -74.0116479 }, + { "lat": 40.7077215, "lon": -74.0116259 }, + { "lat": 40.7077021, "lon": -74.0115888 }, + { "lat": 40.7076640, "lon": -74.0115162 }, + { "lat": 40.7075946, "lon": -74.0113925 }, + { "lat": 40.7075797, "lon": -74.0113681 }, + { "lat": 40.7075343, "lon": -74.0112941 } + ], + "tags": { + "access": "permit", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "permit", + "name": "Wall Street", + "name:en": "Wall Street", + "name:etymology:wikidata": "Q106706881", + "name:ko": "월 스트리트", + "name:ru": "Уолл-стрит", + "oneway": "no", + "sidewalk": "both", + "surface": "concrete", + "wikidata": "Q11690", + "wikipedia": "en:Wall Street" + } +}, +{ + "type": "way", + "id": 5672366, + "bounds": { + "minlat": 40.7050096, + "minlon": -74.0126119, + "maxlat": 40.7065553, + "maxlon": -74.0118707 + }, + "nodes": [ + 42432683, + 11051773129, + 11050101342, + 11050101319, + 1280340217, + 11050101341, + 8276468866, + 11051778537, + 11050101188, + 42442088 + ], + "geometry": [ + { "lat": 40.7065553, "lon": -74.0118707 }, + { "lat": 40.7065270, "lon": -74.0118880 }, + { "lat": 40.7064788, "lon": -74.0119171 }, + { "lat": 40.7053520, "lon": -74.0124615 }, + { "lat": 40.7051768, "lon": -74.0125436 }, + { "lat": 40.7051116, "lon": -74.0125767 }, + { "lat": 40.7050740, "lon": -74.0125957 }, + { "lat": 40.7050541, "lon": -74.0126017 }, + { "lat": 40.7050380, "lon": -74.0126065 }, + { "lat": 40.7050096, "lon": -74.0126119 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "destination", + "name": "New Street", + "name:ko": "뉴 스트리트", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "New", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 5672377, + "bounds": { + "minlat": 40.7103692, + "minlon": -74.0112079, + "maxlat": 40.7127130, + "maxlon": -74.0096340 + }, + "nodes": [ + 42438155, + 8262936496, + 4741335326, + 4741335323, + 8262936499, + 42453934, + 8262936375, + 8262936505, + 8840333846, + 8840333828, + 10282972173, + 8840333829, + 8840333851, + 8262936511, + 5135853010, + 13707001855, + 8279851459, + 42453952 + ], + "geometry": [ + { "lat": 40.7103692, "lon": -74.0112079 }, + { "lat": 40.7104354, "lon": -74.0111629 }, + { "lat": 40.7105370, "lon": -74.0110945 }, + { "lat": 40.7108150, "lon": -74.0109074 }, + { "lat": 40.7109535, "lon": -74.0108152 }, + { "lat": 40.7110135, "lon": -74.0107773 }, + { "lat": 40.7110608, "lon": -74.0107459 }, + { "lat": 40.7114636, "lon": -74.0104815 }, + { "lat": 40.7115277, "lon": -74.0104404 }, + { "lat": 40.7115816, "lon": -74.0104031 }, + { "lat": 40.7119769, "lon": -74.0101740 }, + { "lat": 40.7120324, "lon": -74.0101393 }, + { "lat": 40.7120585, "lon": -74.0101209 }, + { "lat": 40.7121347, "lon": -74.0100704 }, + { "lat": 40.7123246, "lon": -74.0099246 }, + { "lat": 40.7126154, "lon": -74.0097006 }, + { "lat": 40.7126615, "lon": -74.0096651 }, + { "lat": 40.7127130, "lon": -74.0096340 } + ], + "tags": { + "bus:lanes": "yes|yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 5672389, + "bounds": { + "minlat": 40.7822414, + "minlon": -73.9783277, + "maxlat": 40.7831527, + "maxlon": -73.9761686 + }, + "nodes": [ + 5316108106, + 9897810848, + 42442463 + ], + "geometry": [ + { "lat": 40.7822414, "lon": -73.9761686 }, + { "lat": 40.7831013, "lon": -73.9782023 }, + { "lat": 40.7831527, "lon": -73.9783277 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 79th Street", + "name:ru": "Западная 79-я стрит", + "name_1": "West 79 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672392, + "bounds": { + "minlat": 40.8533800, + "minlon": -73.9383780, + "maxlat": 40.8535370, + "maxlon": -73.9374350 + }, + "nodes": [ + 42427206, + 9484666552, + 1763596998, + 9484666548, + 42454089 + ], + "geometry": [ + { "lat": 40.8533800, "lon": -73.9374350 }, + { "lat": 40.8533963, "lon": -73.9375327 }, + { "lat": 40.8535151, "lon": -73.9382421 }, + { "lat": 40.8535250, "lon": -73.9383042 }, + { "lat": 40.8535370, "lon": -73.9383780 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 185th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "185th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5672395, + "bounds": { + "minlat": 40.8505259, + "minlon": -73.9306027, + "maxlat": 40.8511085, + "maxlon": -73.9291984 + }, + "nodes": [ + 42442750, + 9566869957, + 9166213995, + 42454098, + 5549743271, + 9166213994, + 9566869958, + 42454102 + ], + "geometry": [ + { "lat": 40.8505259, "lon": -73.9291984 }, + { "lat": 40.8505616, "lon": -73.9292849 }, + { "lat": 40.8505748, "lon": -73.9293169 }, + { "lat": 40.8508650, "lon": -73.9300190 }, + { "lat": 40.8509942, "lon": -73.9303277 }, + { "lat": 40.8510559, "lon": -73.9304761 }, + { "lat": 40.8510727, "lon": -73.9305166 }, + { "lat": 40.8511085, "lon": -73.9306027 } + ], + "tags": { + "highway": "pedestrian", + "motor_vehicle": "private", + "name": "West 185th Street", + "name_1": "West 185 Street", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "185th", + "tiger:name_base_1": "185", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5672398, + "bounds": { + "minlat": 40.7734893, + "minlon": -73.9897545, + "maxlat": 40.7737727, + "maxlon": -73.9890814 + }, + "nodes": [ + 42430981, + 7595748179, + 10045967175, + 42454120 + ], + "geometry": [ + { "lat": 40.7734893, "lon": -73.9890814 }, + { "lat": 40.7735519, "lon": -73.9892285 }, + { "lat": 40.7737615, "lon": -73.9897277 }, + { "lat": 40.7737727, "lon": -73.9897545 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "West 62nd Street", + "name:ru": "Западная 62-я стрит", + "name_1": "West 62 Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672399, + "bounds": { + "minlat": 40.7705246, + "minlon": -73.9822476, + "maxlat": 40.7706115, + "maxlon": -73.9820391 + }, + "nodes": [ + 1061531509, + 42428575 + ], + "geometry": [ + { "lat": 40.7705246, "lon": -73.9820391 }, + { "lat": 40.7706115, "lon": -73.9822476 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "no", + "name": "West 62nd Street", + "name:ru": "Западная 62-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672402, + "bounds": { + "minlat": 40.7112188, + "minlon": -73.9900158, + "maxlat": 40.7126536, + "maxlon": -73.9898147 + }, + "nodes": [ + 42436563, + 12362840771, + 8310246627, + 482807376, + 8310246638, + 42437763 + ], + "geometry": [ + { "lat": 40.7112188, "lon": -73.9899392 }, + { "lat": 40.7112775, "lon": -73.9898705 }, + { "lat": 40.7113290, "lon": -73.9898147 }, + { "lat": 40.7119696, "lon": -73.9899105 }, + { "lat": 40.7125602, "lon": -73.9900014 }, + { "lat": 40.7126536, "lon": -73.9900158 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Rutgers Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "러트거스 스트리트", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672409, + "bounds": { + "minlat": 40.7152927, + "minlon": -74.0007903, + "maxlat": 40.7162110, + "maxlon": -74.0001342 + }, + "nodes": [ + 7132405547, + 11505204917, + 11505204916, + 42454165, + 10583167621, + 6946750302, + 7132405537 + ], + "geometry": [ + { "lat": 40.7162110, "lon": -74.0001342 }, + { "lat": 40.7160151, "lon": -74.0002594 }, + { "lat": 40.7159223, "lon": -74.0003237 }, + { "lat": 40.7155700, "lon": -74.0005872 }, + { "lat": 40.7153878, "lon": -74.0007182 }, + { "lat": 40.7153448, "lon": -74.0007490 }, + { "lat": 40.7152927, "lon": -74.0007903 } + ], + "tags": { + "alt_name": "Benjamin Ward Way", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Baxter Street", + "name:ko": "백스터 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q19839902", + "wikipedia": "en:Baxter Street" + } +}, +{ + "type": "way", + "id": 5672410, + "bounds": { + "minlat": 40.7143955, + "minlon": -74.0005314, + "maxlat": 40.7151664, + "maxlon": -74.0004658 + }, + "nodes": [ + 42425955, + 10583167612, + 10583167611, + 10583167610, + 7132406725, + 10583167624, + 10583167609, + 11399454086, + 11399454088, + 7132405545 + ], + "geometry": [ + { "lat": 40.7143955, "lon": -74.0005026 }, + { "lat": 40.7144108, "lon": -74.0004911 }, + { "lat": 40.7144288, "lon": -74.0004805 }, + { "lat": 40.7144474, "lon": -74.0004735 }, + { "lat": 40.7144611, "lon": -74.0004706 }, + { "lat": 40.7144828, "lon": -74.0004661 }, + { "lat": 40.7145043, "lon": -74.0004658 }, + { "lat": 40.7151480, "lon": -74.0005231 }, + { "lat": 40.7151572, "lon": -74.0005260 }, + { "lat": 40.7151664, "lon": -74.0005314 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Baxter Street", + "name:ko": "백스터 스트리트", + "old_name": "Orange Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:both:restriction:conditional": "no standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q19839902", + "wikipedia": "en:Baxter Street" + } +}, +{ + "type": "way", + "id": 5672411, + "bounds": { + "minlat": 40.7785510, + "minlon": -73.9599188, + "maxlat": 40.7822111, + "maxlon": -73.9512480 + }, + "nodes": [ + 42443040, + 7134855818, + 7068067126, + 7068067131, + 7134855796, + 7134855807, + 42450030, + 7134855801, + 7924099752, + 42447136, + 7924099719, + 7924099720, + 42454192, + 596776115, + 7924094058, + 7924094032, + 42446041, + 7924094018, + 5306314452, + 42454189 + ], + "geometry": [ + { "lat": 40.7785510, "lon": -73.9512480 }, + { "lat": 40.7786067, "lon": -73.9513798 }, + { "lat": 40.7786600, "lon": -73.9515061 }, + { "lat": 40.7787298, "lon": -73.9516712 }, + { "lat": 40.7792775, "lon": -73.9529686 }, + { "lat": 40.7794418, "lon": -73.9533576 }, + { "lat": 40.7794971, "lon": -73.9534887 }, + { "lat": 40.7795570, "lon": -73.9536305 }, + { "lat": 40.7801324, "lon": -73.9549934 }, + { "lat": 40.7801748, "lon": -73.9550942 }, + { "lat": 40.7802173, "lon": -73.9551963 }, + { "lat": 40.7807738, "lon": -73.9565098 }, + { "lat": 40.7808233, "lon": -73.9566243 }, + { "lat": 40.7809009, "lon": -73.9568062 }, + { "lat": 40.7809456, "lon": -73.9569132 }, + { "lat": 40.7814942, "lon": -73.9582127 }, + { "lat": 40.7815341, "lon": -73.9583086 }, + { "lat": 40.7815850, "lon": -73.9584293 }, + { "lat": 40.7821753, "lon": -73.9598315 }, + { "lat": 40.7822111, "lon": -73.9599188 } + ], + "tags": { + "highway": "residential", + "name": "East 87th Street", + "name:ru": "Восточная 87-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672415, + "bounds": { + "minlat": 40.7384690, + "minlon": -73.9753138, + "maxlat": 40.7387085, + "maxlon": -73.9747611 + }, + "nodes": [ + 42454214, + 11543660390 + ], + "geometry": [ + { "lat": 40.7387085, "lon": -73.9753138 }, + { "lat": 40.7384690, "lon": -73.9747611 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "25 mph", + "name": "East 27th Street", + "name_1": "East 27 Street", + "service": "parking_aisle", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East 27th", + "tiger:name_base_1": "27", + "tiger:name_direction_prefix_1": "E", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5672418, + "bounds": { + "minlat": 40.7732229, + "minlon": -73.9457297, + "maxlat": 40.7736238, + "maxlon": -73.9447783 + }, + "nodes": [ + 42435522, + 5163273913, + 589298105 + ], + "geometry": [ + { "lat": 40.7736238, "lon": -73.9457297 }, + { "lat": 40.7735703, "lon": -73.9456049 }, + { "lat": 40.7732229, "lon": -73.9447783 } + ], + "tags": { + "alt_name": "East 84th Street", + "highway": "residential", + "lit": "yes", + "name": "Gracie Square", + "name:etymology:wikidata": "Q4786334", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672430, + "bounds": { + "minlat": 40.8593291, + "minlon": -73.9319760, + "maxlat": 40.8595273, + "maxlon": -73.9313239 + }, + "nodes": [ + 42421783, + 1763749978, + 1205714945 + ], + "geometry": [ + { "lat": 40.8593291, "lon": -73.9313239 }, + { "lat": 40.8593709, "lon": -73.9314620 }, + { "lat": 40.8595273, "lon": -73.9319760 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bennett Avenue", + "name:etymology:wikidata": "Q1343611", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bennett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5672434, + "bounds": { + "minlat": 40.7362368, + "minlon": -73.9960876, + "maxlat": 40.7370478, + "maxlon": -73.9941739 + }, + "nodes": [ + 9907978318, + 5416901182 + ], + "geometry": [ + { "lat": 40.7362368, "lon": -73.9941739 }, + { "lat": 40.7370478, "lon": -73.9960876 } + ], + "tags": { + "bus": "yes", + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672441, + "bounds": { + "minlat": 40.7158245, + "minlon": -73.9948810, + "maxlat": 40.7159014, + "maxlon": -73.9948751 + }, + "nodes": [ + 4477147269, + 588455694 + ], + "geometry": [ + { "lat": 40.7158245, "lon": -73.9948751 }, + { "lat": 40.7159014, "lon": -73.9948810 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 5672447, + "bounds": { + "minlat": 40.8486982, + "minlon": -73.9319170, + "maxlat": 40.8493090, + "maxlon": -73.9304689 + }, + "nodes": [ + 42442741, + 9566869992, + 9566869998, + 42454368 + ], + "geometry": [ + { "lat": 40.8486982, "lon": -73.9304689 }, + { "lat": 40.8487536, "lon": -73.9306005 }, + { "lat": 40.8492703, "lon": -73.9318250 }, + { "lat": 40.8493090, "lon": -73.9319170 } + ], + "tags": { + "highway": "residential", + "name": "West 182nd Street", + "name_1": "West 182 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "182nd", + "tiger:name_base_1": "182", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5672450, + "bounds": { + "minlat": 40.7390984, + "minlon": -74.0002679, + "maxlat": 40.7428467, + "maxlon": -73.9913883 + }, + "nodes": [ + 42454378, + 9140832088, + 11637804056, + 9683231674, + 42430263, + 9683231677, + 9683231667, + 42439834, + 9683231670, + 10171509290, + 42435610 + ], + "geometry": [ + { "lat": 40.7390984, "lon": -73.9913883 }, + { "lat": 40.7391446, "lon": -73.9914985 }, + { "lat": 40.7397381, "lon": -73.9929140 }, + { "lat": 40.7403911, "lon": -73.9944715 }, + { "lat": 40.7404420, "lon": -73.9945930 }, + { "lat": 40.7405005, "lon": -73.9947315 }, + { "lat": 40.7415866, "lon": -73.9973028 }, + { "lat": 40.7416420, "lon": -73.9974340 }, + { "lat": 40.7416995, "lon": -73.9975693 }, + { "lat": 40.7427967, "lon": -74.0001507 }, + { "lat": 40.7428467, "lon": -74.0002679 } + ], + "tags": { + "alt_name": "West 19 Street", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 19th Street", + "name:ru": "Западная 19-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672464, + "bounds": { + "minlat": 40.7541655, + "minlon": -73.9836240, + "maxlat": 40.7555160, + "maxlon": -73.9803921 + }, + "nodes": [ + 42454428, + 3942050704, + 1751440888, + 10173043410, + 42430338 + ], + "geometry": [ + { "lat": 40.7541655, "lon": -73.9803921 }, + { "lat": 40.7542195, "lon": -73.9805207 }, + { "lat": 40.7548731, "lon": -73.9821009 }, + { "lat": 40.7554619, "lon": -73.9834958 }, + { "lat": 40.7555160, "lon": -73.9836240 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672466, + "bounds": { + "minlat": 40.8710506, + "minlon": -73.9132764, + "maxlat": 40.8717140, + "maxlon": -73.9116992 + }, + "nodes": [ + 42444884, + 9561125992, + 9047393183, + 1769485250, + 9561126003, + 42429255 + ], + "geometry": [ + { "lat": 40.8710506, "lon": -73.9116992 }, + { "lat": 40.8710800, "lon": -73.9117842 }, + { "lat": 40.8713772, "lon": -73.9124856 }, + { "lat": 40.8716488, "lon": -73.9131330 }, + { "lat": 40.8716760, "lon": -73.9131872 }, + { "lat": 40.8717140, "lon": -73.9132764 } + ], + "tags": { + "highway": "residential", + "name": "West 219th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672475, + "bounds": { + "minlat": 40.7648205, + "minlon": -73.9476282, + "maxlat": 40.7661711, + "maxlon": -73.9462394 + }, + "nodes": [ + 3580758425, + 8265114665, + 5212861646, + 1242825853, + 8265114661, + 8265114662, + 3569402548 + ], + "geometry": [ + { "lat": 40.7659857, "lon": -73.9462394 }, + { "lat": 40.7661711, "lon": -73.9466214 }, + { "lat": 40.7661186, "lon": -73.9466649 }, + { "lat": 40.7655927, "lon": -73.9471205 }, + { "lat": 40.7650883, "lon": -73.9475835 }, + { "lat": 40.7650398, "lon": -73.9476282 }, + { "lat": 40.7648205, "lon": -73.9472354 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "15 mph", + "name": "River Road", + "oneway": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 5672483, + "bounds": { + "minlat": 40.7475701, + "minlon": -73.9727421, + "maxlat": 40.7481912, + "maxlon": -73.9722915 + }, + "nodes": [ + 42453008, + 9987259783, + 4917687088, + 42445666 + ], + "geometry": [ + { "lat": 40.7481912, "lon": -73.9722915 }, + { "lat": 40.7481286, "lon": -73.9723369 }, + { "lat": 40.7476240, "lon": -73.9727030 }, + { "lat": 40.7475701, "lon": -73.9727421 } + ], + "tags": { + "destination": "Queens Midtown Tunnel", + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Tunnel Approach Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Tunnel Entrance", + "tiger:name_type": "St", + "tiger:reviewed": "aerial", + "turn:lanes": "right;through" + } +}, +{ + "type": "way", + "id": 5672487, + "bounds": { + "minlat": 40.7426886, + "minlon": -73.9877451, + "maxlat": 40.7440672, + "maxlon": -73.9844692 + }, + "nodes": [ + 42454522, + 4597668031, + 10166167618, + 12181339185, + 10166167605, + 42445885, + 10166167608, + 10167162581, + 42434800 + ], + "geometry": [ + { "lat": 40.7426886, "lon": -73.9844692 }, + { "lat": 40.7427430, "lon": -73.9845957 }, + { "lat": 40.7427718, "lon": -73.9846621 }, + { "lat": 40.7427871, "lon": -73.9846976 }, + { "lat": 40.7433546, "lon": -73.9860495 }, + { "lat": 40.7433948, "lon": -73.9861430 }, + { "lat": 40.7434373, "lon": -73.9862412 }, + { "lat": 40.7440192, "lon": -73.9876316 }, + { "lat": 40.7440672, "lon": -73.9877451 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 27th Street", + "name:ru": "Восточная 27-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672493, + "bounds": { + "minlat": 40.8681625, + "minlon": -73.9133520, + "maxlat": 40.8687770, + "maxlon": -73.9119113 + }, + "nodes": [ + 42454551, + 7046287192, + 42444873 + ], + "geometry": [ + { "lat": 40.8681625, "lon": -73.9119113 }, + { "lat": 40.8687351, "lon": -73.9132538 }, + { "lat": 40.8687770, "lon": -73.9133520 } + ], + "tags": { + "highway": "tertiary", + "name": "West 215th Street", + "name_1": "West 215 Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "215th", + "tiger:name_base_1": "215", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5672497, + "bounds": { + "minlat": 40.7140701, + "minlon": -73.9981293, + "maxlat": 40.7148262, + "maxlon": -73.9975839 + }, + "nodes": [ + 42446617, + 11504216870, + 8307641518, + 11504054135, + 11504054136, + 7477054961, + 42454584, + 11504054133, + 11504054134, + 7477054963, + 11504054123, + 11504054124, + 7477054962, + 11504054122, + 12374690313, + 8827549042, + 11504054129, + 3973686295, + 12374690314 + ], + "geometry": [ + { "lat": 40.7148262, "lon": -73.9980375 }, + { "lat": 40.7148045, "lon": -73.9980450 }, + { "lat": 40.7147932, "lon": -73.9980496 }, + { "lat": 40.7146191, "lon": -73.9981148 }, + { "lat": 40.7145970, "lon": -73.9981216 }, + { "lat": 40.7145715, "lon": -73.9981250 }, + { "lat": 40.7144475, "lon": -73.9981293 }, + { "lat": 40.7144349, "lon": -73.9981236 }, + { "lat": 40.7144220, "lon": -73.9981135 }, + { "lat": 40.7144130, "lon": -73.9980997 }, + { "lat": 40.7143490, "lon": -73.9979453 }, + { "lat": 40.7143258, "lon": -73.9979042 }, + { "lat": 40.7143001, "lon": -73.9978767 }, + { "lat": 40.7142660, "lon": -73.9978448 }, + { "lat": 40.7141343, "lon": -73.9977162 }, + { "lat": 40.7141332, "lon": -73.9977145 }, + { "lat": 40.7141208, "lon": -73.9976955 }, + { "lat": 40.7141082, "lon": -73.9976722 }, + { "lat": 40.7140701, "lon": -73.9975839 } + ], + "tags": { + "bicycle": "designated", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "Doyers Street", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q885252", + "wikipedia": "en:Doyers Street" + } +}, +{ + "type": "way", + "id": 5672499, + "bounds": { + "minlat": 40.7042853, + "minlon": -74.0081181, + "maxlat": 40.7046776, + "maxlon": -74.0076661 + }, + "nodes": [ + 42454600, + 7139624459, + 10556966412, + 12133465278 + ], + "geometry": [ + { "lat": 40.7046776, "lon": -74.0081181 }, + { "lat": 40.7045923, "lon": -74.0080284 }, + { "lat": 40.7043310, "lon": -74.0077220 }, + { "lat": 40.7042853, "lon": -74.0076661 } + ], + "tags": { + "highway": "pedestrian", + "maxspeed": "25 mph", + "name": "Gouverneur Lane", + "name:etymology:wikidata": "Q56742810", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Gouverneur", + "tiger:name_type": "Ln", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "wikidata": "Q13878499" + } +}, +{ + "type": "way", + "id": 5672501, + "bounds": { + "minlat": 40.7736592, + "minlon": -73.9834857, + "maxlat": 40.7760400, + "maxlon": -73.9778345 + }, + "nodes": [ + 42442417, + 7050687032, + 7474729999, + 7556282027, + 7474716574, + 7556282018, + 7474730014, + 8780665908, + 42428601, + 1061531787, + 8780665902, + 9902326640, + 42443326, + 9902179333, + 9902381180, + 3809536808, + 7802856349 + ], + "geometry": [ + { "lat": 40.7760400, "lon": -73.9834857 }, + { "lat": 40.7759955, "lon": -73.9833787 }, + { "lat": 40.7758883, "lon": -73.9831193 }, + { "lat": 40.7758631, "lon": -73.9830580 }, + { "lat": 40.7758435, "lon": -73.9830102 }, + { "lat": 40.7758393, "lon": -73.9830001 }, + { "lat": 40.7757787, "lon": -73.9828530 }, + { "lat": 40.7755854, "lon": -73.9823937 }, + { "lat": 40.7755283, "lon": -73.9822622 }, + { "lat": 40.7754477, "lon": -73.9820690 }, + { "lat": 40.7754030, "lon": -73.9819522 }, + { "lat": 40.7749070, "lon": -73.9807953 }, + { "lat": 40.7748544, "lon": -73.9806716 }, + { "lat": 40.7747972, "lon": -73.9805358 }, + { "lat": 40.7739449, "lon": -73.9785123 }, + { "lat": 40.7737116, "lon": -73.9779585 }, + { "lat": 40.7736592, "lon": -73.9778345 } + ], + "tags": { + "alt_name": "West 68 Street", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "West 68th Street", + "name:ru": "Западная 68-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672503, + "bounds": { + "minlat": 40.8435820, + "minlon": -73.9382620, + "maxlat": 40.8453000, + "maxlon": -73.9342105 + }, + "nodes": [ + 42449627, + 7604384207, + 8722881603, + 42433046, + 8722881601, + 8722881595, + 42454611, + 8722881593, + 8723021866, + 42442723 + ], + "geometry": [ + { "lat": 40.8453000, "lon": -73.9382620 }, + { "lat": 40.8452697, "lon": -73.9381900 }, + { "lat": 40.8448384, "lon": -73.9371632 }, + { "lat": 40.8447880, "lon": -73.9370430 }, + { "lat": 40.8447347, "lon": -73.9369168 }, + { "lat": 40.8442435, "lon": -73.9357537 }, + { "lat": 40.8442010, "lon": -73.9356530 }, + { "lat": 40.8441644, "lon": -73.9355696 }, + { "lat": 40.8436405, "lon": -73.9343299 }, + { "lat": 40.8435820, "lon": -73.9342105 } + ], + "tags": { + "highway": "residential", + "name": "West 174th Street", + "name_1": "West 174 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "174th", + "tiger:name_base_1": "174", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5672510, + "bounds": { + "minlat": 40.7307980, + "minlon": -74.0067210, + "maxlat": 40.7311289, + "maxlon": -74.0042257 + }, + "nodes": [ + 42436381, + 8214320111, + 10306662674, + 42454635, + 8214320100, + 42431528, + 10170666556, + 8214320097, + 42430791 + ], + "geometry": [ + { "lat": 40.7309445, "lon": -74.0067210 }, + { "lat": 40.7309350, "lon": -74.0066195 }, + { "lat": 40.7308313, "lon": -74.0056174 }, + { "lat": 40.7307980, "lon": -74.0052950 }, + { "lat": 40.7309857, "lon": -74.0046824 }, + { "lat": 40.7310034, "lon": -74.0046246 }, + { "lat": 40.7310224, "lon": -74.0045641 }, + { "lat": 40.7310702, "lon": -74.0044121 }, + { "lat": 40.7311289, "lon": -74.0042257 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Morton Street", + "name:etymology:wikidata": "Q6119027", + "name:ru": "Мортон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672512, + "bounds": { + "minlat": 40.8664380, + "minlon": -73.9304693, + "maxlat": 40.8672563, + "maxlon": -73.9293463 + }, + "nodes": [ + 42441000, + 9561561617, + 11587266212, + 9561543897, + 42432805 + ], + "geometry": [ + { "lat": 40.8664380, "lon": -73.9304693 }, + { "lat": 40.8665128, "lon": -73.9303667 }, + { "lat": 40.8671763, "lon": -73.9294560 }, + { "lat": 40.8672039, "lon": -73.9294182 }, + { "lat": 40.8672563, "lon": -73.9293463 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Henshaw Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Henshaw", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5672515, + "bounds": { + "minlat": 40.7573667, + "minlon": -73.9606728, + "maxlat": 40.7586736, + "maxlon": -73.9597228 + }, + "nodes": [ + 42448329, + 4918486746, + 4918486736, + 42454660, + 4918486732, + 7248638336, + 42432871 + ], + "geometry": [ + { "lat": 40.7586736, "lon": -73.9597228 }, + { "lat": 40.7586085, "lon": -73.9597701 }, + { "lat": 40.7580988, "lon": -73.9601407 }, + { "lat": 40.7580419, "lon": -73.9601820 }, + { "lat": 40.7579853, "lon": -73.9602231 }, + { "lat": 40.7574461, "lon": -73.9606151 }, + { "lat": 40.7573667, "lon": -73.9606728 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "6", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Sutton Place", + "network": "lcn", + "old_name:1811-1883": "Avenue A", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 5672518, + "bounds": { + "minlat": 40.7303951, + "minlon": -73.9900586, + "maxlat": 40.7305969, + "maxlon": -73.9899114 + }, + "nodes": [ + 42449014, + 8309479620, + 42454673 + ], + "geometry": [ + { "lat": 40.7303951, "lon": -73.9900586 }, + { "lat": 40.7304404, "lon": -73.9900256 }, + { "lat": 40.7305969, "lon": -73.9899114 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Lafayette Court", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Lafayette", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5672524, + "bounds": { + "minlat": 40.7694509, + "minlon": -73.9651421, + "maxlat": 40.7750439, + "maxlon": -73.9518664 + }, + "nodes": [ + 42454679, + 7094731933, + 10173084338, + 42446013, + 10173084336, + 10125222321, + 596776041, + 42454691, + 10125222322, + 11206693782, + 42447084, + 11206693783, + 10170793899, + 42450009, + 10170793903, + 8250715776, + 42443020, + 6176390287, + 8250715785, + 13701356128, + 13701356125, + 6689909669, + 42454701, + 6689909671, + 6689923813, + 42428014 + ], + "geometry": [ + { "lat": 40.7750439, "lon": -73.9651421 }, + { "lat": 40.7750101, "lon": -73.9650609 }, + { "lat": 40.7744223, "lon": -73.9636625 }, + { "lat": 40.7743793, "lon": -73.9635603 }, + { "lat": 40.7743295, "lon": -73.9634421 }, + { "lat": 40.7737822, "lon": -73.9621448 }, + { "lat": 40.7737350, "lon": -73.9620329 }, + { "lat": 40.7736608, "lon": -73.9618549 }, + { "lat": 40.7736129, "lon": -73.9617411 }, + { "lat": 40.7730577, "lon": -73.9604256 }, + { "lat": 40.7730155, "lon": -73.9603206 }, + { "lat": 40.7729726, "lon": -73.9602184 }, + { "lat": 40.7724002, "lon": -73.9588594 }, + { "lat": 40.7723386, "lon": -73.9587132 }, + { "lat": 40.7722809, "lon": -73.9585760 }, + { "lat": 40.7714515, "lon": -73.9566040 }, + { "lat": 40.7714057, "lon": -73.9564910 }, + { "lat": 40.7713621, "lon": -73.9563899 }, + { "lat": 40.7713419, "lon": -73.9563425 }, + { "lat": 40.7711241, "lon": -73.9558329 }, + { "lat": 40.7710345, "lon": -73.9556232 }, + { "lat": 40.7704475, "lon": -73.9542493 }, + { "lat": 40.7703906, "lon": -73.9541098 }, + { "lat": 40.7703351, "lon": -73.9539756 }, + { "lat": 40.7695002, "lon": -73.9519819 }, + { "lat": 40.7694509, "lon": -73.9518664 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 76th Street", + "name:ru": "Восточная 76-я стрит", + "name_1": "East 76 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672528, + "bounds": { + "minlat": 40.7127817, + "minlon": -73.9885984, + "maxlat": 40.7135073, + "maxlon": -73.9884924 + }, + "nodes": [ + 42435925, + 8231945162, + 8231945185, + 42437768 + ], + "geometry": [ + { "lat": 40.7135073, "lon": -73.9885984 }, + { "lat": 40.7134526, "lon": -73.9885903 }, + { "lat": 40.7128659, "lon": -73.9885047 }, + { "lat": 40.7127817, "lon": -73.9884924 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Jefferson Street", + "name:etymology:wikidata": "Q11812", + "name:ko": "제퍼슨 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672535, + "bounds": { + "minlat": 40.7381485, + "minlon": -74.0080532, + "maxlat": 40.7381517, + "maxlon": -74.0065583 + }, + "nodes": [ + 10168546901, + 12162436994, + 11159805948 + ], + "geometry": [ + { "lat": 40.7381517, "lon": -74.0065583 }, + { "lat": 40.7381485, "lon": -74.0080230 }, + { "lat": 40.7381485, "lon": -74.0080532 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Jane Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5672550, + "bounds": { + "minlat": 40.7054081, + "minlon": -74.0055192, + "maxlat": 40.7057998, + "maxlon": -74.0049754 + }, + "nodes": [ + 12350506553, + 4985377338, + 11316405075, + 42452708 + ], + "geometry": [ + { "lat": 40.7054081, "lon": -74.0049754 }, + { "lat": 40.7057672, "lon": -74.0054489 }, + { "lat": 40.7057770, "lon": -74.0054684 }, + { "lat": 40.7057998, "lon": -74.0055192 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Maiden Lane", + "name:ko": "메이든 레인", + "name:ru": "Мейден-Лейн", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Maiden", + "tiger:name_type": "Ln", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q13422110", + "wikipedia": "en:Maiden Lane (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672553, + "bounds": { + "minlat": 40.8365752, + "minlon": -73.9401365, + "maxlat": 40.8369673, + "maxlon": -73.9393372 + }, + "nodes": [ + 42442684, + 9569882302, + 13564503784, + 11292676874, + 42433020 + ], + "geometry": [ + { "lat": 40.8365752, "lon": -73.9393372 }, + { "lat": 40.8366700, "lon": -73.9394255 }, + { "lat": 40.8368416, "lon": -73.9398359 }, + { "lat": 40.8369055, "lon": -73.9399886 }, + { "lat": 40.8369673, "lon": -73.9401365 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "West 163rd Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "163rd", + "tiger:name_base_1": "163", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5672559, + "bounds": { + "minlat": 40.8356900, + "minlon": -73.9393372, + "maxlat": 40.8365752, + "maxlon": -73.9373830 + }, + "nodes": [ + 42439724, + 8725170815, + 2075595689, + 8725170814, + 2064854960, + 42442684 + ], + "geometry": [ + { "lat": 40.8356900, "lon": -73.9373830 }, + { "lat": 40.8357346, "lon": -73.9374903 }, + { "lat": 40.8357569, "lon": -73.9375443 }, + { "lat": 40.8358804, "lon": -73.9378384 }, + { "lat": 40.8364698, "lon": -73.9392418 }, + { "lat": 40.8365752, "lon": -73.9393372 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "West 163rd Street", + "name_1": "West 163 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "163rd", + "tiger:name_base_1": "163", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5672563, + "bounds": { + "minlat": 40.8510470, + "minlon": -73.9297010, + "maxlat": 40.8514970, + "maxlon": -73.9293991 + }, + "nodes": [ + 42445674, + 8740506709, + 1253602785, + 42454840 + ], + "geometry": [ + { "lat": 40.8514970, "lon": -73.9293991 }, + { "lat": 40.8514407, "lon": -73.9294331 }, + { "lat": 40.8512104, "lon": -73.9295813 }, + { "lat": 40.8510470, "lon": -73.9297010 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Washington Terrace", + "service": "driveway", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Washington", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5672571, + "bounds": { + "minlat": 40.8106334, + "minlon": -73.9612283, + "maxlat": 40.8118836, + "maxlon": -73.9582686 + }, + "nodes": [ + 3579432162, + 6886295086, + 6886294931, + 1506599378, + 1506591534 + ], + "geometry": [ + { "lat": 40.8106334, "lon": -73.9582686 }, + { "lat": 40.8106890, "lon": -73.9583963 }, + { "lat": 40.8117536, "lon": -73.9609182 }, + { "lat": 40.8117893, "lon": -73.9610036 }, + { "lat": 40.8118836, "lon": -73.9612283 } + ], + "tags": { + "alt_name": "Seminary Row", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "name": "West 122nd Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672575, + "bounds": { + "minlat": 40.8088548, + "minlon": -73.9554225, + "maxlat": 40.8094384, + "maxlon": -73.9540507 + }, + "nodes": [ + 42440134, + 10171087506, + 10168029055, + 42447336 + ], + "geometry": [ + { "lat": 40.8094384, "lon": -73.9554225 }, + { "lat": 40.8093895, "lon": -73.9553075 }, + { "lat": 40.8088892, "lon": -73.9541308 }, + { "lat": 40.8088548, "lon": -73.9540507 } + ], + "tags": { + "highway": "residential", + "name": "West 122nd Street", + "name_1": "West 122 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5672578, + "bounds": { + "minlat": 40.7243158, + "minlon": -74.0086711, + "maxlat": 40.7259304, + "maxlon": -74.0083464 + }, + "nodes": [ + 42442288, + 8307641936, + 4142105816, + 4142105801, + 4142105796, + 11659041209, + 4142105814, + 42440847 + ], + "geometry": [ + { "lat": 40.7259304, "lon": -74.0083464 }, + { "lat": 40.7258538, "lon": -74.0083597 }, + { "lat": 40.7244313, "lon": -74.0086075 }, + { "lat": 40.7243936, "lon": -74.0086182 }, + { "lat": 40.7243705, "lon": -74.0086281 }, + { "lat": 40.7243518, "lon": -74.0086387 }, + { "lat": 40.7243346, "lon": -74.0086518 }, + { "lat": 40.7243158, "lon": -74.0086711 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Renwick Street", + "name:etymology:wikidata": "Q6141991", + "name:ko": "렌윅 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672585, + "bounds": { + "minlat": 40.8290195, + "minlon": -73.9494620, + "maxlat": 40.8309620, + "maxlon": -73.9448276 + }, + "nodes": [ + 42442638, + 11218910739, + 7622258565, + 11218866099, + 561035367, + 42428947, + 11218866104, + 2504882511, + 11191809984, + 42441774 + ], + "geometry": [ + { "lat": 40.8290195, "lon": -73.9448276 }, + { "lat": 40.8290700, "lon": -73.9449484 }, + { "lat": 40.8291955, "lon": -73.9452475 }, + { "lat": 40.8301433, "lon": -73.9475087 }, + { "lat": 40.8301829, "lon": -73.9476033 }, + { "lat": 40.8302605, "lon": -73.9477882 }, + { "lat": 40.8303041, "lon": -73.9478923 }, + { "lat": 40.8309334, "lon": -73.9493937 }, + { "lat": 40.8309382, "lon": -73.9494051 }, + { "lat": 40.8309620, "lon": -73.9494620 } + ], + "tags": { + "highway": "residential", + "name": "West 151st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "151st", + "tiger:name_base_1": "151", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 5672598, + "bounds": { + "minlat": 40.8639056, + "minlon": -73.9314679, + "maxlat": 40.8646389, + "maxlon": -73.9309931 + }, + "nodes": [ + 42434780, + 3805630555, + 3805630556, + 42434722 + ], + "geometry": [ + { "lat": 40.8639056, "lon": -73.9314679 }, + { "lat": 40.8643873, "lon": -73.9311179 }, + { "lat": 40.8645131, "lon": -73.9310294 }, + { "lat": 40.8646389, "lon": -73.9309931 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "residential", + "name": "Fort Tryon Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Ft Tryon", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5672604, + "bounds": { + "minlat": 40.7313284, + "minlon": -73.9902172, + "maxlat": 40.7319680, + "maxlon": -73.9886210 + }, + "nodes": [ + 42449886, + 3627218175, + 12179560526, + 12179560527, + 4234578191, + 12179560528, + 12179560529, + 42453104 + ], + "geometry": [ + { "lat": 40.7313284, "lon": -73.9886210 }, + { "lat": 40.7313842, "lon": -73.9887542 }, + { "lat": 40.7319203, "lon": -73.9900084 }, + { "lat": 40.7319307, "lon": -73.9900389 }, + { "lat": 40.7319413, "lon": -73.9900721 }, + { "lat": 40.7319490, "lon": -73.9901041 }, + { "lat": 40.7319585, "lon": -73.9901580 }, + { "lat": 40.7319680, "lon": -73.9902172 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 11th Street", + "name:el": "Ανατολική 11η Οδός", + "name:ru": "Восточная 11-я стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672607, + "bounds": { + "minlat": 40.7324490, + "minlon": -73.9950635, + "maxlat": 40.7340457, + "maxlon": -73.9912890 + }, + "nodes": [ + 42428483, + 8309479712, + 8309479769, + 42455026, + 8309479772, + 5357196527, + 8309479760, + 8264671702, + 42449067 + ], + "geometry": [ + { "lat": 40.7324490, "lon": -73.9912890 }, + { "lat": 40.7324936, "lon": -73.9913950 }, + { "lat": 40.7332710, "lon": -73.9932436 }, + { "lat": 40.7333040, "lon": -73.9933220 }, + { "lat": 40.7333446, "lon": -73.9934181 }, + { "lat": 40.7337971, "lon": -73.9944891 }, + { "lat": 40.7339979, "lon": -73.9949513 }, + { "lat": 40.7340127, "lon": -73.9949854 }, + { "lat": 40.7340457, "lon": -73.9950635 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 11th Street", + "name:ru": "Восточная 11-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672615, + "bounds": { + "minlat": 40.8474152, + "minlon": -73.9359288, + "maxlat": 40.8485206, + "maxlon": -73.9333038 + }, + "nodes": [ + 42455059, + 13300392796, + 2797305986, + 5403873771, + 42433064, + 5403873770, + 11595081938, + 9550791789, + 42449637 + ], + "geometry": [ + { "lat": 40.8474152, "lon": -73.9333038 }, + { "lat": 40.8474360, "lon": -73.9333531 }, + { "lat": 40.8474585, "lon": -73.9334068 }, + { "lat": 40.8479485, "lon": -73.9345701 }, + { "lat": 40.8480005, "lon": -73.9346936 }, + { "lat": 40.8480582, "lon": -73.9348306 }, + { "lat": 40.8481697, "lon": -73.9350955 }, + { "lat": 40.8484818, "lon": -73.9358366 }, + { "lat": 40.8485206, "lon": -73.9359288 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 179th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:name_base": "179th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5672621, + "bounds": { + "minlat": 40.7215294, + "minlon": -73.9837985, + "maxlat": 40.7220190, + "maxlon": -73.9834440 + }, + "nodes": [ + 42440401, + 3783146176, + 7977832480, + 42453607 + ], + "geometry": [ + { "lat": 40.7215294, "lon": -73.9837985 }, + { "lat": 40.7216209, "lon": -73.9837360 }, + { "lat": 40.7219605, "lon": -73.9834869 }, + { "lat": 40.7220190, "lon": -73.9834440 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue B", + "name:ru": "Авеню B", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2873530", + "wikipedia": "en:Avenue B (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672625, + "bounds": { + "minlat": 40.7266941, + "minlon": -73.9952700, + "maxlat": 40.7272120, + "maxlon": -73.9942224 + }, + "nodes": [ + 42428454, + 10172977550, + 42429672, + 12187431469, + 11608906309 + ], + "geometry": [ + { "lat": 40.7272120, "lon": -73.9952700 }, + { "lat": 40.7271714, "lon": -73.9951879 }, + { "lat": 40.7269435, "lon": -73.9947269 }, + { "lat": 40.7267176, "lon": -73.9942699 }, + { "lat": 40.7266941, "lon": -73.9942224 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bond Street", + "name:ko": "본드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q23091435", + "wikipedia": "en:Bond Street" + } +}, +{ + "type": "way", + "id": 5672629, + "bounds": { + "minlat": 40.7612397, + "minlon": -73.9643627, + "maxlat": 40.7614374, + "maxlon": -73.9639021 + }, + "nodes": [ + 6176483595, + 4918486791, + 10125179305, + 8906433866 + ], + "geometry": [ + { "lat": 40.7612397, "lon": -73.9639021 }, + { "lat": 40.7612934, "lon": -73.9640272 }, + { "lat": 40.7613969, "lon": -73.9642683 }, + { "lat": 40.7614374, "lon": -73.9643627 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672646, + "bounds": { + "minlat": 40.7244199, + "minlon": -73.9786057, + "maxlat": 40.7252889, + "maxlon": -73.9779731 + }, + "nodes": [ + 12158508687, + 8309479403, + 42455181, + 8309479402, + 8309479396, + 42449029 + ], + "geometry": [ + { "lat": 40.7244199, "lon": -73.9786057 }, + { "lat": 40.7246416, "lon": -73.9784443 }, + { "lat": 40.7246931, "lon": -73.9784069 }, + { "lat": 40.7247451, "lon": -73.9783690 }, + { "lat": 40.7252367, "lon": -73.9780112 }, + { "lat": 40.7252889, "lon": -73.9779731 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672648, + "bounds": { + "minlat": 40.8756706, + "minlon": -73.9128004, + "maxlat": 40.8778412, + "maxlon": -73.9100278 + }, + "nodes": [ + 42431724, + 10868090834, + 42445578, + 13068324338, + 8153243797, + 10868090825, + 42427939 + ], + "geometry": [ + { "lat": 40.8778412, "lon": -73.9100278 }, + { "lat": 40.8777994, "lon": -73.9100765 }, + { "lat": 40.8773550, "lon": -73.9106070 }, + { "lat": 40.8773017, "lon": -73.9106772 }, + { "lat": 40.8757516, "lon": -73.9126949 }, + { "lat": 40.8757262, "lon": -73.9127292 }, + { "lat": 40.8756706, "lon": -73.9128004 } + ], + "tags": { + "highway": "residential", + "name": "Adrian Avenue", + "name:etymology:wikidata": "Q368007", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Adrian", + "tiger:name_type": "Ave", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5672650, + "bounds": { + "minlat": 40.8011120, + "minlon": -73.9604338, + "maxlat": 40.8015054, + "maxlon": -73.9596822 + }, + "nodes": [ + 12534082089, + 12534082094, + 7209676823, + 12534082095 + ], + "geometry": [ + { "lat": 40.8015054, "lon": -73.9604338 }, + { "lat": 40.8013533, "lon": -73.9602353 }, + { "lat": 40.8011573, "lon": -73.9597791 }, + { "lat": 40.8011120, "lon": -73.9596822 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672654, + "bounds": { + "minlat": 40.7276010, + "minlon": -74.0031550, + "maxlat": 40.7276640, + "maxlon": -74.0025130 + }, + "nodes": [ + 42450325, + 5151708183, + 42430167 + ], + "geometry": [ + { "lat": 40.7276010, "lon": -74.0025130 }, + { "lat": 40.7276497, "lon": -74.0030089 }, + { "lat": 40.7276640, "lon": -74.0031550 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "King Street", + "name:etymology:wikidata": "Q456794", + "name:ko": "킹 스트리트", + "name:ru": "Кинг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672656, + "bounds": { + "minlat": 40.8047082, + "minlon": -73.9649437, + "maxlat": 40.8067507, + "maxlon": -73.9600770 + }, + "nodes": [ + 42428814, + 2541754776, + 561035335, + 7004372899, + 627905378, + 627905391, + 7326861789, + 1506445711, + 11386952282, + 8379839197, + 42435360 + ], + "geometry": [ + { "lat": 40.8067507, "lon": -73.9649437 }, + { "lat": 40.8067224, "lon": -73.9648750 }, + { "lat": 40.8066746, "lon": -73.9647589 }, + { "lat": 40.8066309, "lon": -73.9646572 }, + { "lat": 40.8063045, "lon": -73.9638874 }, + { "lat": 40.8058869, "lon": -73.9628951 }, + { "lat": 40.8055749, "lon": -73.9621283 }, + { "lat": 40.8055262, "lon": -73.9620084 }, + { "lat": 40.8054708, "lon": -73.9618777 }, + { "lat": 40.8047491, "lon": -73.9601736 }, + { "lat": 40.8047082, "lon": -73.9600770 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "West 114th Street", + "name:ru": "Западная 114-я стрит", + "name_1": "West 114 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672660, + "bounds": { + "minlat": 40.8037326, + "minlon": -73.9582040, + "maxlat": 40.8038773, + "maxlon": -73.9577756 + }, + "nodes": [ + 42440104, + 12534082088, + 9150563656, + 9150563655, + 12534082087, + 9150563654, + 10165997005, + 42447317 + ], + "geometry": [ + { "lat": 40.8038773, "lon": -73.9582040 }, + { "lat": 40.8038726, "lon": -73.9581632 }, + { "lat": 40.8038680, "lon": -73.9581294 }, + { "lat": 40.8038599, "lon": -73.9580948 }, + { "lat": 40.8038477, "lon": -73.9580534 }, + { "lat": 40.8038354, "lon": -73.9580207 }, + { "lat": 40.8037711, "lon": -73.9578677 }, + { "lat": 40.8037326, "lon": -73.9577756 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 114th Street", + "name:ru": "Западная 114-я стрит", + "name_1": "West 114 Street", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672662, + "bounds": { + "minlat": 40.8511085, + "minlon": -73.9306027, + "maxlat": 40.8543210, + "maxlon": -73.9282540 + }, + "nodes": [ + 42454102, + 9566869961, + 1253602768, + 8740550818, + 42445675, + 8740550821, + 8740550802, + 42436288, + 8740550809, + 8740550785, + 42455335, + 8740550789, + 8740550771, + 42450275, + 8740550776, + 8740550843, + 42455337 + ], + "geometry": [ + { "lat": 40.8511085, "lon": -73.9306027 }, + { "lat": 40.8511814, "lon": -73.9305491 }, + { "lat": 40.8513177, "lon": -73.9304491 }, + { "lat": 40.8517395, "lon": -73.9301402 }, + { "lat": 40.8517930, "lon": -73.9301010 }, + { "lat": 40.8518458, "lon": -73.9300625 }, + { "lat": 40.8524078, "lon": -73.9296527 }, + { "lat": 40.8524760, "lon": -73.9296030 }, + { "lat": 40.8525490, "lon": -73.9295497 }, + { "lat": 40.8530478, "lon": -73.9291851 }, + { "lat": 40.8531000, "lon": -73.9291470 }, + { "lat": 40.8531580, "lon": -73.9291048 }, + { "lat": 40.8536693, "lon": -73.9287319 }, + { "lat": 40.8537240, "lon": -73.9286920 }, + { "lat": 40.8537808, "lon": -73.9286503 }, + { "lat": 40.8542489, "lon": -73.9283069 }, + { "lat": 40.8543210, "lon": -73.9282540 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "maxspeed:type": "sign", + "name": "Audubon Avenue", + "name:etymology:wikidata": "Q182882", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Audubon", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q2870884", + "wikipedia": "en:Audubon Avenue" + } +}, +{ + "type": "way", + "id": 5672681, + "bounds": { + "minlat": 40.7394123, + "minlon": -74.0054071, + "maxlat": 40.7394366, + "maxlon": -74.0043119 + }, + "nodes": [ + 8983894794, + 8262308638, + 4685453633, + 42436431 + ], + "geometry": [ + { "lat": 40.7394366, "lon": -74.0043119 }, + { "lat": 40.7394124, "lon": -74.0052736 }, + { "lat": 40.7394123, "lon": -74.0053066 }, + { "lat": 40.7394127, "lon": -74.0054071 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:left:surface": "paving_stones", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Gansevoort Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5672699, + "bounds": { + "minlat": 40.7198786, + "minlon": -73.9787920, + "maxlat": 40.7199869, + "maxlon": -73.9787229 + }, + "nodes": [ + 42449874, + 42453613 + ], + "geometry": [ + { "lat": 40.7198786, "lon": -73.9787920 }, + { "lat": 40.7199869, "lon": -73.9787229 } + ], + "tags": { + "alt_name:ko": "애비뉴 디", + "cycleway:both": "no", + "highway": "tertiary", + "lane_markings": "no", + "lanes": "3", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue D", + "name:ko": "애비뉴 D", + "name:ru": "Авеню D", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2873601", + "wikipedia": "en:Avenue D (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672706, + "bounds": { + "minlat": 40.7326640, + "minlon": -73.9831760, + "maxlat": 40.7333400, + "maxlon": -73.9816006 + }, + "nodes": [ + 42439323, + 4298757025, + 9558758496, + 4191922368, + 42455452 + ], + "geometry": [ + { "lat": 40.7326640, "lon": -73.9816006 }, + { "lat": 40.7327377, "lon": -73.9817426 }, + { "lat": 40.7332993, "lon": -73.9830811 }, + { "lat": 40.7333190, "lon": -73.9831281 }, + { "lat": 40.7333400, "lon": -73.9831760 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 16th Street", + "name:ru": "Восточная 16-я стрит", + "name_1": "East 16 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672710, + "bounds": { + "minlat": 40.7359232, + "minlon": -73.9894958, + "maxlat": 40.7360030, + "maxlon": -73.9893045 + }, + "nodes": [ + 4597668023, + 42437018, + 3670742444 + ], + "geometry": [ + { "lat": 40.7360030, "lon": -73.9894958 }, + { "lat": 40.7359658, "lon": -73.9894066 }, + { "lat": 40.7359232, "lon": -73.9893045 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 16th Street", + "name:ru": "Восточная 16-я стрит", + "name_1": "East 16 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672713, + "bounds": { + "minlat": 40.7365119, + "minlon": -73.9926537, + "maxlat": 40.7373314, + "maxlon": -73.9907749 + }, + "nodes": [ + 42449333, + 8429175900, + 5148103568, + 10174524180, + 10174524179, + 42438785 + ], + "geometry": [ + { "lat": 40.7373314, "lon": -73.9926537 }, + { "lat": 40.7372809, "lon": -73.9925286 }, + { "lat": 40.7365650, "lon": -73.9908259 }, + { "lat": 40.7365467, "lon": -73.9907974 }, + { "lat": 40.7365264, "lon": -73.9907820 }, + { "lat": 40.7365119, "lon": -73.9907749 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 16th Street", + "name:ru": "Восточная 16-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672715, + "bounds": { + "minlat": 40.7292368, + "minlon": -73.9747274, + "maxlat": 40.7297709, + "maxlon": -73.9734571 + }, + "nodes": [ + 42437830, + 4161568866, + 5178499892, + 5145327520, + 5145330172 + ], + "geometry": [ + { "lat": 40.7297709, "lon": -73.9747274 }, + { "lat": 40.7297284, "lon": -73.9746222 }, + { "lat": 40.7294689, "lon": -73.9740105 }, + { "lat": 40.7292969, "lon": -73.9736006 }, + { "lat": 40.7292368, "lon": -73.9734571 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 16th Street", + "name:ru": "Восточная 16-я стрит", + "name_1": "East 16 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672722, + "bounds": { + "minlat": 40.8615285, + "minlon": -73.9184690, + "maxlat": 40.8617750, + "maxlon": -73.9178704 + }, + "nodes": [ + 42445562, + 7998566475, + 9561557613, + 42445051 + ], + "geometry": [ + { "lat": 40.8615285, "lon": -73.9178704 }, + { "lat": 40.8615782, "lon": -73.9180010 }, + { "lat": 40.8617410, "lon": -73.9183882 }, + { "lat": 40.8617750, "lon": -73.9184690 } + ], + "tags": { + "highway": "residential", + "name": "West 204th Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "204th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5672730, + "bounds": { + "minlat": 40.7522065, + "minlon": -73.9993807, + "maxlat": 40.7522731, + "maxlon": -73.9993388 + }, + "nodes": [ + 427840998, + 10171326402, + 7502121831 + ], + "geometry": [ + { "lat": 40.7522065, "lon": -73.9993807 }, + { "lat": 40.7522615, "lon": -73.9993467 }, + { "lat": 40.7522731, "lon": -73.9993388 } + ], + "tags": { + "destination": "Lincoln Tunnel", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "note": "this is supposed to be a local truck route but signs say no trucks", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 5672743, + "bounds": { + "minlat": 40.7986289, + "minlon": -73.9681783, + "maxlat": 40.7989551, + "maxlon": -73.9674102 + }, + "nodes": [ + 11625046652, + 11271754123 + ], + "geometry": [ + { "lat": 40.7986289, "lon": -73.9674102 }, + { "lat": 40.7989551, "lon": -73.9681783 } + ], + "tags": { + "alt_name": "Odessa Steward Street", + "highway": "living_street", + "maxspeed": "10 mph", + "name": "West 103rd Street", + "name:ru": "Западная 103-я стрит", + "note": "must add elements added about 8/15/2023 per the source url such as asphalt art.", + "official_name": "Norman Rockwell Place", + "oneway": "yes", + "sidewalk": "separate", + "smoothness": "good", + "source": "https://www.nyc.gov/html/dot/downloads/pdf/w103-st-open-street-jun2022.pdf", + "surface": "asphalt", + "traffic_calming": "choker" + } +}, +{ + "type": "way", + "id": 5672747, + "bounds": { + "minlat": 40.7961189, + "minlon": -73.9628898, + "maxlat": 40.7967143, + "maxlon": -73.9614548 + }, + "nodes": [ + 7801840675, + 9796881835, + 10125661930, + 42447281 + ], + "geometry": [ + { "lat": 40.7961189, "lon": -73.9614548 }, + { "lat": 40.7961667, "lon": -73.9615692 }, + { "lat": 40.7966783, "lon": -73.9628029 }, + { "lat": 40.7967143, "lon": -73.9628898 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 103rd Street", + "name:ru": "Западная 103-я стрит", + "name_1": "West 103 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5672752, + "bounds": { + "minlat": 40.7655210, + "minlon": -73.9818935, + "maxlat": 40.7663005, + "maxlon": -73.9800360 + }, + "nodes": [ + 42440022, + 10170842508, + 4794775932, + 4794775935, + 2653473655, + 8785244287, + 42428329 + ], + "geometry": [ + { "lat": 40.7655210, "lon": -73.9800360 }, + { "lat": 40.7655688, "lon": -73.9801473 }, + { "lat": 40.7656394, "lon": -73.9803148 }, + { "lat": 40.7657090, "lon": -73.9804787 }, + { "lat": 40.7658781, "lon": -73.9808768 }, + { "lat": 40.7662378, "lon": -73.9817280 }, + { "lat": 40.7663005, "lon": -73.9818935 } + ], + "tags": { + "alt_name": "West 57 Street", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672760, + "bounds": { + "minlat": 40.7678000, + "minlon": -73.9702791, + "maxlat": 40.7680278, + "maxlon": -73.9697099 + }, + "nodes": [ + 42455662, + 2792787022, + 9076023379 + ], + "geometry": [ + { "lat": 40.7680278, "lon": -73.9702791 }, + { "lat": 40.7679826, "lon": -73.9701722 }, + { "lat": 40.7678000, "lon": -73.9697099 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 65th Street", + "name:ru": "Восточная 65-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672762, + "bounds": { + "minlat": 40.8080286, + "minlon": -73.9596506, + "maxlat": 40.8087553, + "maxlon": -73.9579584 + }, + "nodes": [ + 1506445789, + 7004422491, + 8379847750, + 4762583943, + 7004347454, + 42442578 + ], + "geometry": [ + { "lat": 40.8080286, "lon": -73.9579584 }, + { "lat": 40.8080738, "lon": -73.9580582 }, + { "lat": 40.8084650, "lon": -73.9589518 }, + { "lat": 40.8084990, "lon": -73.9590295 }, + { "lat": 40.8087008, "lon": -73.9595168 }, + { "lat": 40.8087553, "lon": -73.9596506 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 119th Street", + "name:ru": "Западная 119-я стрит", + "name_1": "West 119 Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672764, + "bounds": { + "minlat": 40.8103730, + "minlon": -73.9643865, + "maxlat": 40.8107511, + "maxlon": -73.9634770 + }, + "nodes": [ + 3579426874, + 11953254604, + 11378511133, + 5004570653 + ], + "geometry": [ + { "lat": 40.8103730, "lon": -73.9634770 }, + { "lat": 40.8104177, "lon": -73.9635845 }, + { "lat": 40.8107108, "lon": -73.9642895 }, + { "lat": 40.8107511, "lon": -73.9643865 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "1", + "name": "West 119th Street", + "name:ru": "Западная 119-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672766, + "bounds": { + "minlat": 40.8026041, + "minlon": -73.9483526, + "maxlat": 40.8039962, + "maxlon": -73.9450492 + }, + "nodes": [ + 42435207, + 10170875027, + 10127369896, + 42453226, + 3099326128 + ], + "geometry": [ + { "lat": 40.8026041, "lon": -73.9450492 }, + { "lat": 40.8026602, "lon": -73.9451822 }, + { "lat": 40.8038983, "lon": -73.9481201 }, + { "lat": 40.8039340, "lon": -73.9482051 }, + { "lat": 40.8039962, "lon": -73.9483526 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "name": "West 119th Street", + "name:ru": "Западная 119-я стрит", + "name_1": "West 119 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5672769, + "bounds": { + "minlat": 40.7649207, + "minlon": -73.9573999, + "maxlat": 40.7658671, + "maxlon": -73.9551666 + }, + "nodes": [ + 42427996, + 7837088634, + 12969803281, + 6670244855, + 42455695 + ], + "geometry": [ + { "lat": 40.7649207, "lon": -73.9551666 }, + { "lat": 40.7649712, "lon": -73.9552865 }, + { "lat": 40.7651100, "lon": -73.9556205 }, + { "lat": 40.7658140, "lon": -73.9572751 }, + { "lat": 40.7658671, "lon": -73.9573999 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 69th Street", + "name:ru": "Восточная 69-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672800, + "bounds": { + "minlat": 40.7407313, + "minlon": -74.0089600, + "maxlat": 40.7414615, + "maxlon": -74.0087032 + }, + "nodes": [ + 42429431, + 9440836565, + 9440836562, + 9440836564, + 9015896824, + 9440836563, + 1578345404, + 42431156 + ], + "geometry": [ + { "lat": 40.7414615, "lon": -74.0087032 }, + { "lat": 40.7414003, "lon": -74.0087450 }, + { "lat": 40.7413855, "lon": -74.0087551 }, + { "lat": 40.7413609, "lon": -74.0087713 }, + { "lat": 40.7413349, "lon": -74.0087833 }, + { "lat": 40.7412798, "lon": -74.0088044 }, + { "lat": 40.7412247, "lon": -74.0088205 }, + { "lat": 40.7407313, "lon": -74.0089600 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672803, + "bounds": { + "minlat": 40.7157929, + "minlon": -74.0066159, + "maxlat": 40.7163185, + "maxlon": -74.0061911 + }, + "nodes": [ + 4754091366, + 11506537141, + 11506537140, + 11506537139, + 8307637671, + 4501889852, + 11506537142, + 8307637670, + 11506537138, + 11506537137, + 42429829 + ], + "geometry": [ + { "lat": 40.7157929, "lon": -74.0066159 }, + { "lat": 40.7157951, "lon": -74.0065941 }, + { "lat": 40.7158036, "lon": -74.0065740 }, + { "lat": 40.7158142, "lon": -74.0065591 }, + { "lat": 40.7158283, "lon": -74.0065472 }, + { "lat": 40.7160078, "lon": -74.0064080 }, + { "lat": 40.7162597, "lon": -74.0062161 }, + { "lat": 40.7162728, "lon": -74.0062061 }, + { "lat": 40.7162834, "lon": -74.0061986 }, + { "lat": 40.7163005, "lon": -74.0061927 }, + { "lat": 40.7163185, "lon": -74.0061911 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Trimble Place", + "name:ko": "트림블 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672860, + "bounds": { + "minlat": 40.8011427, + "minlon": -73.9425400, + "maxlat": 40.8031793, + "maxlon": -73.9376942 + }, + "nodes": [ + 42450080, + 11273617109, + 10568682751, + 3903057548, + 10568682762, + 10122952982, + 42447206, + 10122952981, + 10255655743, + 5481978523, + 5481977606, + 10170647011, + 42456162, + 596776613, + 10170647006, + 13703650949, + 10170762190, + 42446169 + ], + "geometry": [ + { "lat": 40.8011427, "lon": -73.9376942 }, + { "lat": 40.8011979, "lon": -73.9378251 }, + { "lat": 40.8015313, "lon": -73.9386162 }, + { "lat": 40.8015499, "lon": -73.9386603 }, + { "lat": 40.8016209, "lon": -73.9388271 }, + { "lat": 40.8017815, "lon": -73.9392047 }, + { "lat": 40.8018200, "lon": -73.9392953 }, + { "lat": 40.8018604, "lon": -73.9393906 }, + { "lat": 40.8020649, "lon": -73.9398737 }, + { "lat": 40.8021501, "lon": -73.9400750 }, + { "lat": 40.8022610, "lon": -73.9403437 }, + { "lat": 40.8024167, "lon": -73.9407202 }, + { "lat": 40.8024413, "lon": -73.9407797 }, + { "lat": 40.8025533, "lon": -73.9410458 }, + { "lat": 40.8025844, "lon": -73.9411201 }, + { "lat": 40.8028253, "lon": -73.9416951 }, + { "lat": 40.8031452, "lon": -73.9424587 }, + { "lat": 40.8031793, "lon": -73.9425400 } + ], + "tags": { + "highway": "residential", + "name": "East 121st Street", + "name_1": "East 121 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5672871, + "bounds": { + "minlat": 40.7226305, + "minlon": -74.0013671, + "maxlat": 40.7260317, + "maxlon": -73.9984801 + }, + "nodes": [ + 8231922392, + 8231885402, + 42442273, + 8231885401, + 8231934415, + 42456197, + 8231934414, + 9815692294 + ], + "geometry": [ + { "lat": 40.7226305, "lon": -74.0013671 }, + { "lat": 40.7237491, "lon": -74.0004053 }, + { "lat": 40.7237950, "lon": -74.0003670 }, + { "lat": 40.7238422, "lon": -74.0003273 }, + { "lat": 40.7249639, "lon": -73.9993822 }, + { "lat": 40.7250080, "lon": -73.9993450 }, + { "lat": 40.7250542, "lon": -73.9993060 }, + { "lat": 40.7260317, "lon": -73.9984801 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Greene Street", + "name:etymology:wikidata": "Q366113", + "name:ko": "그린 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q83170568" + } +}, +{ + "type": "way", + "id": 5672873, + "bounds": { + "minlat": 40.7291865, + "minlon": -73.9958200, + "maxlat": 40.7302852, + "maxlon": -73.9948888 + }, + "nodes": [ + 42456205, + 8309478895, + 13471568898, + 8309478981, + 42456206, + 8309478978, + 10695321443 + ], + "geometry": [ + { "lat": 40.7291865, "lon": -73.9958200 }, + { "lat": 40.7292500, "lon": -73.9957681 }, + { "lat": 40.7297058, "lon": -73.9953790 }, + { "lat": 40.7297364, "lon": -73.9953529 }, + { "lat": 40.7297856, "lon": -73.9953096 }, + { "lat": 40.7298376, "lon": -73.9952638 }, + { "lat": 40.7302852, "lon": -73.9948888 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Greene Street", + "name:etymology:wikidata": "Q366113", + "name:ko": "그린 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5672889, + "bounds": { + "minlat": 40.8394840, + "minlon": -73.9369058, + "maxlat": 40.8398640, + "maxlon": -73.9360400 + }, + "nodes": [ + 42442710, + 6836035779, + 2075592669, + 6836035769, + 42439362 + ], + "geometry": [ + { "lat": 40.8398640, "lon": -73.9369058 }, + { "lat": 40.8398199, "lon": -73.9368052 }, + { "lat": 40.8395379, "lon": -73.9361645 }, + { "lat": 40.8395208, "lon": -73.9361239 }, + { "lat": 40.8394840, "lon": -73.9360400 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 168th Street", + "name_1": "West 168 Street", + "name_2": "Haven Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "168th", + "tiger:name_base_1": "168", + "tiger:name_base_2": "Haven", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:name_type_2": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 5672893, + "bounds": { + "minlat": 40.7069474, + "minlon": -74.0139691, + "maxlat": 40.7070893, + "maxlon": -74.0135153 + }, + "nodes": [ + 42436178, + 10315971031, + 4206997150, + 4206997143, + 10315971166, + 10315971168, + 4149936235 + ], + "geometry": [ + { "lat": 40.7070893, "lon": -74.0139691 }, + { "lat": 40.7070808, "lon": -74.0139463 }, + { "lat": 40.7070614, "lon": -74.0138946 }, + { "lat": 40.7069559, "lon": -74.0136295 }, + { "lat": 40.7069500, "lon": -74.0135911 }, + { "lat": 40.7069474, "lon": -74.0135544 }, + { "lat": 40.7069507, "lon": -74.0135153 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Edgar Street", + "name:ko": "에드거 스트리트", + "name:ru": "Эдгар-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672896, + "bounds": { + "minlat": 40.7316016, + "minlon": -73.9948040, + "maxlat": 40.7345291, + "maxlon": -73.9922554 + }, + "nodes": [ + 42456303, + 8309478879, + 12179562800, + 8309478872, + 42449045, + 8309478871, + 12179524680, + 8309479717, + 42430861, + 8309479719, + 8309479771, + 42455026, + 8309479770, + 8309479778, + 42446521, + 8309479777, + 8309479793, + 42436935 + ], + "geometry": [ + { "lat": 40.7316016, "lon": -73.9948040 }, + { "lat": 40.7316550, "lon": -73.9947595 }, + { "lat": 40.7320896, "lon": -73.9944004 }, + { "lat": 40.7321249, "lon": -73.9943712 }, + { "lat": 40.7321835, "lon": -73.9943085 }, + { "lat": 40.7322288, "lon": -73.9942614 }, + { "lat": 40.7326409, "lon": -73.9939015 }, + { "lat": 40.7326843, "lon": -73.9938636 }, + { "lat": 40.7327322, "lon": -73.9938168 }, + { "lat": 40.7327881, "lon": -73.9937650 }, + { "lat": 40.7332594, "lon": -73.9933603 }, + { "lat": 40.7333040, "lon": -73.9933220 }, + { "lat": 40.7333577, "lon": -73.9932759 }, + { "lat": 40.7338716, "lon": -73.9928352 }, + { "lat": 40.7339220, "lon": -73.9927920 }, + { "lat": 40.7339762, "lon": -73.9927441 }, + { "lat": 40.7344803, "lon": -73.9922985 }, + { "lat": 40.7345291, "lon": -73.9922554 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "University Place", + "name:etymology:wikidata": "Q49210", + "name:ru": "Юниверсити-Плейс", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7894878", + "wikipedia": "en:University Place (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672899, + "bounds": { + "minlat": 40.7155650, + "minlon": -73.9915491, + "maxlat": 40.7170065, + "maxlon": -73.9908065 + }, + "nodes": [ + 13798793064, + 8231954822, + 42445620, + 8231954821, + 13191032159, + 13798793065 + ], + "geometry": [ + { "lat": 40.7155650, "lon": -73.9915491 }, + { "lat": 40.7159827, "lon": -73.9913358 }, + { "lat": 40.7160318, "lon": -73.9913119 }, + { "lat": 40.7160787, "lon": -73.9912888 }, + { "lat": 40.7166068, "lon": -73.9910143 }, + { "lat": 40.7170065, "lon": -73.9908065 } + ], + "tags": { + "highway": "residential", + "maxspeed": "15 mph", + "maxspeed:type": "sign", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 5672901, + "bounds": { + "minlat": 40.7902594, + "minlon": -73.9538896, + "maxlat": 40.7904713, + "maxlon": -73.9533751 + }, + "nodes": [ + 42456335, + 7089698656, + 7921509477, + 42456336 + ], + "geometry": [ + { "lat": 40.7904713, "lon": -73.9538896 }, + { "lat": 40.7904327, "lon": -73.9537973 }, + { "lat": 40.7904069, "lon": -73.9537345 }, + { "lat": 40.7902594, "lon": -73.9533751 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672910, + "bounds": { + "minlat": 40.7293820, + "minlon": -73.9953096, + "maxlat": 40.7297856, + "maxlon": -73.9944988 + }, + "nodes": [ + 8309479134, + 42449582, + 8309479136, + 13471568897, + 8309478979, + 42456206 + ], + "geometry": [ + { "lat": 40.7293820, "lon": -73.9944988 }, + { "lat": 40.7294060, "lon": -73.9945470 }, + { "lat": 40.7294344, "lon": -73.9946054 }, + { "lat": 40.7297356, "lon": -73.9952118 }, + { "lat": 40.7297628, "lon": -73.9952666 }, + { "lat": 40.7297856, "lon": -73.9953096 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Washington Place", + "name:etymology:wikidata": "Q909592", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672911, + "bounds": { + "minlat": 40.7136110, + "minlon": -73.9945699, + "maxlat": 40.7136960, + "maxlon": -73.9945466 + }, + "nodes": [ + 8279851185, + 11638918067, + 42433539 + ], + "geometry": [ + { "lat": 40.7136110, "lon": -73.9945466 }, + { "lat": 40.7136566, "lon": -73.9945576 }, + { "lat": 40.7136960, "lon": -73.9945699 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672912, + "bounds": { + "minlat": 40.7301040, + "minlon": -74.0068382, + "maxlat": 40.7302239, + "maxlon": -74.0054750 + }, + "nodes": [ + 42456464, + 4685597889, + 2073622011, + 8214331017, + 42436377 + ], + "geometry": [ + { "lat": 40.7301040, "lon": -74.0054750 }, + { "lat": 40.7301502, "lon": -74.0059895 }, + { "lat": 40.7301645, "lon": -74.0061488 }, + { "lat": 40.7302146, "lon": -74.0067298 }, + { "lat": 40.7302239, "lon": -74.0068382 } + ], + "tags": { + "alt_name": "Leroy St", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Saint Lukes Place", + "name:ko": "세인트 루크스 플레이스", + "name_1": "Leroy Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tourism": "yes" + } +}, +{ + "type": "way", + "id": 5672917, + "bounds": { + "minlat": 40.7071567, + "minlon": -74.0107312, + "maxlat": 40.7074445, + "maxlon": -74.0104542 + }, + "nodes": [ + 1693014452, + 11051851573, + 11053134857 + ], + "geometry": [ + { "lat": 40.7071567, "lon": -74.0107312 }, + { "lat": 40.7072128, "lon": -74.0106775 }, + { "lat": 40.7074445, "lon": -74.0104542 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "maxspeed": "20 mph", + "motor_vehicle": "destination", + "name": "Nassau Street", + "name:etymology:wikidata": "Q155483", + "name:ko": "나사우 스트리트", + "oneway": "yes", + "surface": "sett", + "wikidata": "Q2597808", + "wikipedia": "en:Nassau Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672922, + "bounds": { + "minlat": 40.7294638, + "minlon": -74.0051849, + "maxlat": 40.7303374, + "maxlon": -74.0024762 + }, + "nodes": [ + 42430761, + 3546132354, + 8309469093, + 42431519, + 8309469090, + 8648032269, + 8309469097, + 42431773 + ], + "geometry": [ + { "lat": 40.7294638, "lon": -74.0051849 }, + { "lat": 40.7295408, "lon": -74.0049831 }, + { "lat": 40.7298481, "lon": -74.0040060 }, + { "lat": 40.7298634, "lon": -74.0039573 }, + { "lat": 40.7298791, "lon": -74.0039082 }, + { "lat": 40.7300829, "lon": -74.0032714 }, + { "lat": 40.7303141, "lon": -74.0025491 }, + { "lat": 40.7303374, "lon": -74.0024762 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Carmine Street", + "name:ko": "카민 스트리트", + "parking:lane:right": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672925, + "bounds": { + "minlat": 40.7048274, + "minlon": -74.0156386, + "maxlat": 40.7049418, + "maxlon": -74.0149470 + }, + "nodes": [ + 588546798, + 4145586933, + 4145439096, + 13018669860, + 4145439093, + 4145439102, + 588546882 + ], + "geometry": [ + { "lat": 40.7048274, "lon": -74.0149470 }, + { "lat": 40.7048429, "lon": -74.0150417 }, + { "lat": 40.7049047, "lon": -74.0153453 }, + { "lat": 40.7049062, "lon": -74.0153544 }, + { "lat": 40.7049236, "lon": -74.0154602 }, + { "lat": 40.7049334, "lon": -74.0155409 }, + { "lat": 40.7049418, "lon": -74.0156386 } + ], + "tags": { + "bus:lanes": "yes|yes|designated", + "busway:right": "lane", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "name_1": "Battery Place", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bowling Grn", + "tiger:name_base_1": "Battery", + "tiger:name_type": "Pl", + "tiger:name_type_1": "Pl", + "tiger:zip_left": "10280", + "tiger:zip_right": "10280", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 5672937, + "bounds": { + "minlat": 40.7377164, + "minlon": -73.9881184, + "maxlat": 40.7388975, + "maxlon": -73.9872595 + }, + "nodes": [ + 42456543, + 10172843109, + 12181309648, + 10172843093, + 42439203, + 10172843089, + 12181309688, + 10172843081, + 12181309686 + ], + "geometry": [ + { "lat": 40.7377164, "lon": -73.9881184 }, + { "lat": 40.7377759, "lon": -73.9880732 }, + { "lat": 40.7382108, "lon": -73.9877600 }, + { "lat": 40.7382503, "lon": -73.9877325 }, + { "lat": 40.7383031, "lon": -73.9876929 }, + { "lat": 40.7383616, "lon": -73.9876501 }, + { "lat": 40.7388002, "lon": -73.9873313 }, + { "lat": 40.7388406, "lon": -73.9873016 }, + { "lat": 40.7388975, "lon": -73.9872595 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "width": "10", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 5672941, + "bounds": { + "minlat": 40.7820144, + "minlon": -73.9580844, + "maxlat": 40.7847313, + "maxlon": -73.9516502 + }, + "nodes": [ + 42450035, + 6214889033, + 7158854751, + 42447144, + 7158854705, + 7158854762, + 42456578, + 596776163, + 7158854694, + 6270714166, + 42446066, + 6270714165, + 5481907916, + 6270714157, + 10121819487, + 5306313701, + 42456575 + ], + "geometry": [ + { "lat": 40.7820144, "lon": -73.9516502 }, + { "lat": 40.7820748, "lon": -73.9517921 }, + { "lat": 40.7826497, "lon": -73.9531526 }, + { "lat": 40.7826939, "lon": -73.9532560 }, + { "lat": 40.7827397, "lon": -73.9533624 }, + { "lat": 40.7832911, "lon": -73.9546767 }, + { "lat": 40.7833391, "lon": -73.9547909 }, + { "lat": 40.7834162, "lon": -73.9549702 }, + { "lat": 40.7834611, "lon": -73.9550769 }, + { "lat": 40.7840080, "lon": -73.9563773 }, + { "lat": 40.7840524, "lon": -73.9564810 }, + { "lat": 40.7841004, "lon": -73.9565938 }, + { "lat": 40.7843848, "lon": -73.9572643 }, + { "lat": 40.7844338, "lon": -73.9573795 }, + { "lat": 40.7846803, "lon": -73.9579616 }, + { "lat": 40.7846929, "lon": -73.9579916 }, + { "lat": 40.7847313, "lon": -73.9580844 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 91st Street", + "name:ru": "Восточная 91-я стрит", + "name_1": "East 91 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672942, + "bounds": { + "minlat": 40.7085252, + "minlon": -74.0060120, + "maxlat": 40.7086680, + "maxlon": -74.0058072 + }, + "nodes": [ + 42456583, + 8281922272, + 11374285205, + 11374285206, + 11374285207, + 42454708 + ], + "geometry": [ + { "lat": 40.7086680, "lon": -74.0060120 }, + { "lat": 40.7086504, "lon": -74.0059906 }, + { "lat": 40.7085298, "lon": -74.0058394 }, + { "lat": 40.7085252, "lon": -74.0058281 }, + { "lat": 40.7085266, "lon": -74.0058155 }, + { "lat": 40.7085310, "lon": -74.0058072 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "name": "Edens Alley", + "name:ko": "에덴스 앨리", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672943, + "bounds": { + "minlat": 40.8217502, + "minlon": -73.9472408, + "maxlat": 40.8236260, + "maxlon": -73.9459030 + }, + "nodes": [ + 42447389, + 10743755837, + 42444853 + ], + "geometry": [ + { "lat": 40.8217502, "lon": -73.9472408 }, + { "lat": 40.8218157, "lon": -73.9471941 }, + { "lat": 40.8236260, "lon": -73.9459030 } + ], + "tags": { + "highway": "residential", + "name": "Hamilton Terrace", + "name:etymology:wikidata": "Q178903", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672946, + "bounds": { + "minlat": 40.8005466, + "minlon": -73.9691157, + "maxlat": 40.8035804, + "maxlon": -73.9619296 + }, + "nodes": [ + 42441910, + 7785880660, + 10166004067, + 9492618963, + 595314103, + 595314104, + 7004396260, + 10165989509, + 9654489328, + 42442565, + 10165989506, + 2539225447, + 10166004019, + 42443413 + ], + "geometry": [ + { "lat": 40.8035804, "lon": -73.9691157 }, + { "lat": 40.8035563, "lon": -73.9690596 }, + { "lat": 40.8030275, "lon": -73.9678085 }, + { "lat": 40.8030241, "lon": -73.9678006 }, + { "lat": 40.8029732, "lon": -73.9676801 }, + { "lat": 40.8028910, "lon": -73.9674843 }, + { "lat": 40.8028508, "lon": -73.9673907 }, + { "lat": 40.8018020, "lon": -73.9649035 }, + { "lat": 40.8017759, "lon": -73.9648414 }, + { "lat": 40.8017333, "lon": -73.9647404 }, + { "lat": 40.8016888, "lon": -73.9646356 }, + { "lat": 40.8010150, "lon": -73.9630467 }, + { "lat": 40.8005986, "lon": -73.9620536 }, + { "lat": 40.8005466, "lon": -73.9619296 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 108th Street", + "name:ru": "Западная 108-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672948, + "bounds": { + "minlat": 40.7326990, + "minlon": -73.9836460, + "maxlat": 40.7333400, + "maxlon": -73.9831760 + }, + "nodes": [ + 42455452, + 9507816945, + 9558758500, + 4191922369, + 42431467 + ], + "geometry": [ + { "lat": 40.7333400, "lon": -73.9831760 }, + { "lat": 40.7333016, "lon": -73.9832042 }, + { "lat": 40.7327921, "lon": -73.9835778 }, + { "lat": 40.7327642, "lon": -73.9835984 }, + { "lat": 40.7326990, "lon": -73.9836460 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Nathan D. Perlman Place", + "name:etymology:wikidata": "Q2856441", + "oneway": "yes", + "sidewalk": "left", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672951, + "bounds": { + "minlat": 40.7625319, + "minlon": -73.9718668, + "maxlat": 40.7629713, + "maxlon": -73.9708345 + }, + "nodes": [ + 42445947, + 6188877016, + 10125156112 + ], + "geometry": [ + { "lat": 40.7629713, "lon": -73.9718668 }, + { "lat": 40.7629265, "lon": -73.9717634 }, + { "lat": 40.7625319, "lon": -73.9708345 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672954, + "bounds": { + "minlat": 40.7603711, + "minlon": -73.9753806, + "maxlat": 40.7610471, + "maxlon": -73.9737664 + }, + "nodes": [ + 42450426, + 3977886255, + 10165986953, + 42445936 + ], + "geometry": [ + { "lat": 40.7610471, "lon": -73.9753806 }, + { "lat": 40.7609992, "lon": -73.9752661 }, + { "lat": 40.7604202, "lon": -73.9738767 }, + { "lat": 40.7603711, "lon": -73.9737664 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "East 54th Street", + "name:ru": "Восточная 54-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "10", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672965, + "bounds": { + "minlat": 40.7428320, + "minlon": -73.9886624, + "maxlat": 40.7432751, + "maxlon": -73.9883247 + }, + "nodes": [ + 7372860100, + 3857400399, + 42453624 + ], + "geometry": [ + { "lat": 40.7432751, "lon": -73.9883247 }, + { "lat": 40.7428919, "lon": -73.9886160 }, + { "lat": 40.7428320, "lon": -73.9886624 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 5672967, + "bounds": { + "minlat": 40.8171783, + "minlon": -73.9344659, + "maxlat": 40.8179047, + "maxlon": -73.9342307 + }, + "nodes": [ + 42426968, + 9166236614, + 9166236611, + 2504979961, + 9166236610, + 2504979959, + 9166236609, + 9166236608, + 371337207, + 9902223880, + 9557110399, + 42424235 + ], + "geometry": [ + { "lat": 40.8179047, "lon": -73.9342503 }, + { "lat": 40.8178250, "lon": -73.9342392 }, + { "lat": 40.8176860, "lon": -73.9342312 }, + { "lat": 40.8176458, "lon": -73.9342307 }, + { "lat": 40.8175974, "lon": -73.9342357 }, + { "lat": 40.8175500, "lon": -73.9342451 }, + { "lat": 40.8175070, "lon": -73.9342562 }, + { "lat": 40.8174635, "lon": -73.9342755 }, + { "lat": 40.8174228, "lon": -73.9342970 }, + { "lat": 40.8173801, "lon": -73.9343247 }, + { "lat": 40.8172368, "lon": -73.9344228 }, + { "lat": 40.8171783, "lon": -73.9344659 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 5672971, + "bounds": { + "minlat": 40.7137328, + "minlon": -73.9978842, + "maxlat": 40.7140183, + "maxlon": -73.9974891 + }, + "nodes": [ + 3898690237, + 588455741, + 4158814315, + 4158814311, + 12196074941, + 4158814318, + 4160342484, + 4160344093, + 42437559, + 12374690312 + ], + "geometry": [ + { "lat": 40.7137328, "lon": -73.9978842 }, + { "lat": 40.7137582, "lon": -73.9978323 }, + { "lat": 40.7137867, "lon": -73.9977808 }, + { "lat": 40.7138154, "lon": -73.9977330 }, + { "lat": 40.7138519, "lon": -73.9976823 }, + { "lat": 40.7138873, "lon": -73.9976366 }, + { "lat": 40.7139222, "lon": -73.9975914 }, + { "lat": 40.7139521, "lon": -73.9975564 }, + { "lat": 40.7139792, "lon": -73.9975275 }, + { "lat": 40.7140183, "lon": -73.9974891 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Chatham Square", + "name:etymology:wikidata": "Q208663", + "name:ko": "채텀 스퀘어", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5087691" + } +}, +{ + "type": "way", + "id": 5672973, + "bounds": { + "minlat": 40.7062776, + "minlon": -74.0142958, + "maxlat": 40.7068888, + "maxlon": -74.0135614 + }, + "nodes": [ + 42436202, + 42456864, + 4145586935, + 4145586939, + 4145586924, + 42456867, + 42456872, + 7722035762, + 4145586928, + 7722035761, + 42456877, + 42456880, + 10315971079, + 42456297 + ], + "geometry": [ + { "lat": 40.7062776, "lon": -74.0142958 }, + { "lat": 40.7063043, "lon": -74.0142582 }, + { "lat": 40.7063264, "lon": -74.0142157 }, + { "lat": 40.7063648, "lon": -74.0141392 }, + { "lat": 40.7064001, "lon": -74.0140644 }, + { "lat": 40.7064232, "lon": -74.0140152 }, + { "lat": 40.7064545, "lon": -74.0139605 }, + { "lat": 40.7064862, "lon": -74.0139069 }, + { "lat": 40.7065137, "lon": -74.0138693 }, + { "lat": 40.7065389, "lon": -74.0138381 }, + { "lat": 40.7065704, "lon": -74.0138066 }, + { "lat": 40.7066329, "lon": -74.0137520 }, + { "lat": 40.7068239, "lon": -74.0136099 }, + { "lat": 40.7068888, "lon": -74.0135614 } + ], + "tags": { + "bus:lanes": "yes|yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Trinity Place", + "name:etymology:wikidata": "Q866896", + "name:ko": "트리니티 플레이스", + "name:ru": "Тринити-Плейс", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Trinity", + "tiger:name_type": "Pl", + "tiger:zip_left": "10006", + "tiger:zip_right": "10006", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 5672977, + "bounds": { + "minlat": 40.7959832, + "minlon": -73.9734588, + "maxlat": 40.7978915, + "maxlon": -73.9689386 + }, + "nodes": [ + 42442549, + 6207264925, + 9654489336, + 11296201238, + 7004447598, + 1061531730, + 42428723, + 7801775725, + 10170980696, + 9496980734, + 42431106, + 9496980737, + 11296570947, + 42441889 + ], + "geometry": [ + { "lat": 40.7959832, "lon": -73.9689386 }, + { "lat": 40.7960253, "lon": -73.9690378 }, + { "lat": 40.7960299, "lon": -73.9690486 }, + { "lat": 40.7960444, "lon": -73.9690819 }, + { "lat": 40.7965042, "lon": -73.9701659 }, + { "lat": 40.7965554, "lon": -73.9702876 }, + { "lat": 40.7966367, "lon": -73.9704799 }, + { "lat": 40.7966755, "lon": -73.9705696 }, + { "lat": 40.7966791, "lon": -73.9705783 }, + { "lat": 40.7971386, "lon": -73.9716719 }, + { "lat": 40.7971932, "lon": -73.9718028 }, + { "lat": 40.7972457, "lon": -73.9719266 }, + { "lat": 40.7978695, "lon": -73.9734065 }, + { "lat": 40.7978915, "lon": -73.9734588 } + ], + "tags": { + "alt_name": "West 99 Street", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 99th Street", + "name:ru": "Западная 99-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672978, + "bounds": { + "minlat": 40.7087461, + "minlon": -74.0096200, + "maxlat": 40.7092631, + "maxlon": -74.0090858 + }, + "nodes": [ + 42454792, + 11372396107, + 11372396109, + 11372396108, + 8281922208, + 12296153942, + 8281922210, + 11372396104, + 11372396105, + 11372396106, + 42422046 + ], + "geometry": [ + { "lat": 40.7092589, "lon": -74.0090858 }, + { "lat": 40.7092631, "lon": -74.0091072 }, + { "lat": 40.7092626, "lon": -74.0091311 }, + { "lat": 40.7092575, "lon": -74.0091505 }, + { "lat": 40.7092514, "lon": -74.0091632 }, + { "lat": 40.7088371, "lon": -74.0095782 }, + { "lat": 40.7088063, "lon": -74.0096091 }, + { "lat": 40.7087939, "lon": -74.0096156 }, + { "lat": 40.7087757, "lon": -74.0096200 }, + { "lat": 40.7087556, "lon": -74.0096184 }, + { "lat": 40.7087461, "lon": -74.0096155 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Liberty Place", + "name:etymology:wikidata": "Q2568224", + "name:ko": "리버티 플레이스", + "name:ru": "Либерти-Плейс", + "oneway": "yes", + "service": "alley", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672980, + "bounds": { + "minlat": 40.7206968, + "minlon": -74.0092987, + "maxlat": 40.7214100, + "maxlon": -74.0091780 + }, + "nodes": [ + 42434863, + 8304498446, + 4629486873, + 8310246693, + 42436309 + ], + "geometry": [ + { "lat": 40.7206968, "lon": -74.0092987 }, + { "lat": 40.7207615, "lon": -74.0092878 }, + { "lat": 40.7213165, "lon": -74.0091938 }, + { "lat": 40.7213460, "lon": -74.0091888 }, + { "lat": 40.7214100, "lon": -74.0091780 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "name": "Collister Street", + "name:ko": "콜리스터 스트리트", + "oneway": "yes", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672986, + "bounds": { + "minlat": 40.7085457, + "minlon": -73.9993506, + "maxlat": 40.7088370, + "maxlon": -73.9990003 + }, + "nodes": [ + 42444108, + 11032985329, + 5821279960, + 205025778, + 4158749895 + ], + "geometry": [ + { "lat": 40.7085457, "lon": -73.9990003 }, + { "lat": 40.7086131, "lon": -73.9990791 }, + { "lat": 40.7086162, "lon": -73.9990827 }, + { "lat": 40.7087705, "lon": -73.9992724 }, + { "lat": 40.7088370, "lon": -73.9993506 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Robert F. Wagner Sr. Place", + "name:etymology:wikidata": "Q213721", + "name:ko": "로버트 F. 와그너 시니어 플레이스", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672987, + "bounds": { + "minlat": 40.7302239, + "minlon": -74.0081020, + "maxlat": 40.7303498, + "maxlon": -74.0068382 + }, + "nodes": [ + 42436377, + 8214331022, + 12162494540, + 8214320065 + ], + "geometry": [ + { "lat": 40.7302239, "lon": -74.0068382 }, + { "lat": 40.7302415, "lon": -74.0069800 }, + { "lat": 40.7303470, "lon": -74.0080736 }, + { "lat": 40.7303498, "lon": -74.0081020 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Leroy Street", + "name:etymology:wikidata": "Q121745745", + "name:ko": "르로이 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5672988, + "bounds": { + "minlat": 40.7301040, + "minlon": -74.0054750, + "maxlat": 40.7303210, + "maxlon": -74.0046880 + }, + "nodes": [ + 42430770, + 8214320094, + 11926593531, + 42456464 + ], + "geometry": [ + { "lat": 40.7303210, "lon": -74.0046880 }, + { "lat": 40.7302546, "lon": -74.0049065 }, + { "lat": 40.7302498, "lon": -74.0049460 }, + { "lat": 40.7301040, "lon": -74.0054750 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Leroy Street", + "name:etymology:wikidata": "Q121745745", + "name:ko": "르로이 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672991, + "bounds": { + "minlat": 40.7521738, + "minlon": -73.9792873, + "maxlat": 40.7528125, + "maxlon": -73.9778143 + }, + "nodes": [ + 561042203, + 11507273100, + 13785909811, + 11507273101, + 11507273087, + 11817409613, + 11817409614, + 11817409615, + 11817409612, + 11817409616, + 11817409617, + 3955360021, + 42445916 + ], + "geometry": [ + { "lat": 40.7521738, "lon": -73.9778143 }, + { "lat": 40.7523540, "lon": -73.9782442 }, + { "lat": 40.7524108, "lon": -73.9783817 }, + { "lat": 40.7524684, "lon": -73.9785210 }, + { "lat": 40.7525013, "lon": -73.9785988 }, + { "lat": 40.7525282, "lon": -73.9786563 }, + { "lat": 40.7525551, "lon": -73.9787114 }, + { "lat": 40.7526182, "lon": -73.9788429 }, + { "lat": 40.7526474, "lon": -73.9789052 }, + { "lat": 40.7526714, "lon": -73.9789568 }, + { "lat": 40.7526936, "lon": -73.9790069 }, + { "lat": 40.7527651, "lon": -73.9791798 }, + { "lat": 40.7528125, "lon": -73.9792873 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5672992, + "bounds": { + "minlat": 40.7428905, + "minlon": -73.9795193, + "maxlat": 40.7438323, + "maxlon": -73.9772763 + }, + "nodes": [ + 42442906, + 7964920718, + 12183286760, + 4234425035, + 42449926 + ], + "geometry": [ + { "lat": 40.7428905, "lon": -73.9772763 }, + { "lat": 40.7429420, "lon": -73.9773988 }, + { "lat": 40.7437442, "lon": -73.9793095 }, + { "lat": 40.7437684, "lon": -73.9793671 }, + { "lat": 40.7438323, "lon": -73.9795193 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 31st Street", + "name:ru": "Восточная 31-я стрит", + "name_1": "East 31 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5672998, + "bounds": { + "minlat": 40.7761092, + "minlon": -73.9854454, + "maxlat": 40.7784773, + "maxlon": -73.9797528 + }, + "nodes": [ + 42431000, + 9177400757, + 9177400758, + 9006846010, + 9006846011, + 13610766993, + 5115916419, + 42442422, + 5115917324, + 5115917329, + 42428610, + 1061531597, + 5115916414, + 9897874389, + 42443332 + ], + "geometry": [ + { "lat": 40.7784773, "lon": -73.9854454 }, + { "lat": 40.7784207, "lon": -73.9853181 }, + { "lat": 40.7782279, "lon": -73.9847936 }, + { "lat": 40.7779911, "lon": -73.9842325 }, + { "lat": 40.7776354, "lon": -73.9833811 }, + { "lat": 40.7775512, "lon": -73.9831739 }, + { "lat": 40.7773528, "lon": -73.9827139 }, + { "lat": 40.7772886, "lon": -73.9825693 }, + { "lat": 40.7772449, "lon": -73.9824632 }, + { "lat": 40.7771869, "lon": -73.9823204 }, + { "lat": 40.7771434, "lon": -73.9822172 }, + { "lat": 40.7770521, "lon": -73.9820009 }, + { "lat": 40.7770022, "lon": -73.9818839 }, + { "lat": 40.7761619, "lon": -73.9798787 }, + { "lat": 40.7761092, "lon": -73.9797528 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 70th Street", + "name:ru": "Западная 70-я стрит", + "name_1": "West 70 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673001, + "bounds": { + "minlat": 40.7321671, + "minlon": -73.9982834, + "maxlat": 40.7326143, + "maxlon": -73.9972480 + }, + "nodes": [ + 42450333, + 8309478836, + 8662425715, + 42457046 + ], + "geometry": [ + { "lat": 40.7326143, "lon": -73.9982834 }, + { "lat": 40.7325897, "lon": -73.9982266 }, + { "lat": 40.7325778, "lon": -73.9981989 }, + { "lat": 40.7321671, "lon": -73.9972480 } + ], + "tags": { + "access": "no", + "highway": "service", + "maxspeed": "25 mph", + "name": "MacDougal Alley", + "name:etymology:wikidata": "Q659951", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673018, + "bounds": { + "minlat": 40.7705364, + "minlon": -73.9820496, + "maxlat": 40.7713507, + "maxlon": -73.9801168 + }, + "nodes": [ + 42435253, + 7837165577, + 5727366250, + 8390080234, + 7630577022, + 5117972561, + 1061531447 + ], + "geometry": [ + { "lat": 40.7705364, "lon": -73.9801168 }, + { "lat": 40.7705842, "lon": -73.9802303 }, + { "lat": 40.7709402, "lon": -73.9810753 }, + { "lat": 40.7709871, "lon": -73.9811867 }, + { "lat": 40.7710153, "lon": -73.9812537 }, + { "lat": 40.7712972, "lon": -73.9819268 }, + { "lat": 40.7713507, "lon": -73.9820496 } + ], + "tags": { + "alt_name": "Sesame Street", + "alt_name:etymology": "Sesame Street", + "alt_name:etymology:wikidata": "Q7455986", + "cutting": "no", + "embankment": "no", + "ford": "no", + "highway": "residential", + "name": "West 63rd Street", + "name:ru": "Западная 63-я стрит", + "name_2": "Lincoln Center Plaza", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673033, + "bounds": { + "minlat": 40.8673840, + "minlon": -73.9269852, + "maxlat": 40.8679563, + "maxlon": -73.9264060 + }, + "nodes": [ + 42457282, + 9561561656, + 11586989875, + 7150484631, + 9561561634, + 42453638 + ], + "geometry": [ + { "lat": 40.8673840, "lon": -73.9264060 }, + { "lat": 40.8674609, "lon": -73.9264838 }, + { "lat": 40.8674891, "lon": -73.9265123 }, + { "lat": 40.8675700, "lon": -73.9265943 }, + { "lat": 40.8679244, "lon": -73.9269529 }, + { "lat": 40.8679563, "lon": -73.9269852 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Beak Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Beak", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5673035, + "bounds": { + "minlat": 40.7067120, + "minlon": -74.0027472, + "maxlat": 40.7072195, + "maxlon": -74.0023233 + }, + "nodes": [ + 3350498747, + 8276469216, + 8279851774, + 42452620 + ], + "geometry": [ + { "lat": 40.7067120, "lon": -74.0023233 }, + { "lat": 40.7067765, "lon": -74.0023787 }, + { "lat": 40.7071757, "lon": -74.0027102 }, + { "lat": 40.7072195, "lon": -74.0027472 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Beekman Street", + "name:ko": "비크먼 스트리트", + "name:ru": "Бикман-стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5673038, + "bounds": { + "minlat": 40.7104144, + "minlon": -74.0060631, + "maxlat": 40.7108332, + "maxlon": -74.0056176 + }, + "nodes": [ + 42448593, + 8281922082, + 6280593757, + 12311690168 + ], + "geometry": [ + { "lat": 40.7104144, "lon": -74.0056176 }, + { "lat": 40.7104448, "lon": -74.0056488 }, + { "lat": 40.7107599, "lon": -74.0059867 }, + { "lat": 40.7108332, "lon": -74.0060631 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Beekman Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "비크먼 스트리트", + "name:ru": "Бикман-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673052, + "bounds": { + "minlat": 40.7351330, + "minlon": -74.0060475, + "maxlat": 40.7357626, + "maxlon": -74.0017616 + }, + "nodes": [ + 42436404, + 8307463858, + 8307463876, + 42431812, + 8307463873, + 11591877889, + 42457421, + 11591877894, + 8262308502, + 42433272 + ], + "geometry": [ + { "lat": 40.7351330, "lon": -74.0060475 }, + { "lat": 40.7351474, "lon": -74.0059495 }, + { "lat": 40.7352880, "lon": -74.0049929 }, + { "lat": 40.7352971, "lon": -74.0049302 }, + { "lat": 40.7353057, "lon": -74.0048705 }, + { "lat": 40.7355218, "lon": -74.0034013 }, + { "lat": 40.7355308, "lon": -74.0033399 }, + { "lat": 40.7355399, "lon": -74.0032779 }, + { "lat": 40.7357543, "lon": -74.0018182 }, + { "lat": 40.7357626, "lon": -74.0017616 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Perry Street", + "name:etymology:wikidata": "Q580513", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673054, + "bounds": { + "minlat": 40.8481511, + "minlon": -73.9298332, + "maxlat": 40.8524955, + "maxlon": -73.9270130 + }, + "nodes": [ + 42457437, + 12076426790, + 12076426791, + 12076426792, + 12076426793, + 12076426794, + 12077206894, + 12077206895, + 12077206896, + 9421763703, + 12077206904, + 12077206892, + 12077206898, + 12077206899, + 12077206897, + 12077206903, + 12077206900, + 12077206902, + 12077206901, + 12077206911, + 12077206914, + 12077206912, + 12077206915, + 12077206913, + 1253602766, + 1253602818, + 42445672, + 8740550970, + 13627166521, + 42436283, + 11595082065, + 1203709349, + 13703324967, + 13703324970, + 13627166520, + 1203709352, + 1203709355, + 8740550838, + 42442764 + ], + "geometry": [ + { "lat": 40.8481536, "lon": -73.9298332 }, + { "lat": 40.8481511, "lon": -73.9298071 }, + { "lat": 40.8481531, "lon": -73.9297830 }, + { "lat": 40.8481588, "lon": -73.9297603 }, + { "lat": 40.8481693, "lon": -73.9297424 }, + { "lat": 40.8481828, "lon": -73.9297292 }, + { "lat": 40.8489166, "lon": -73.9291937 }, + { "lat": 40.8489544, "lon": -73.9291690 }, + { "lat": 40.8489916, "lon": -73.9291451 }, + { "lat": 40.8490277, "lon": -73.9291242 }, + { "lat": 40.8491392, "lon": -73.9290670 }, + { "lat": 40.8491776, "lon": -73.9290456 }, + { "lat": 40.8492141, "lon": -73.9290229 }, + { "lat": 40.8492424, "lon": -73.9290035 }, + { "lat": 40.8492745, "lon": -73.9289790 }, + { "lat": 40.8493296, "lon": -73.9289373 }, + { "lat": 40.8493828, "lon": -73.9288930 }, + { "lat": 40.8494295, "lon": -73.9288521 }, + { "lat": 40.8494725, "lon": -73.9288111 }, + { "lat": 40.8495553, "lon": -73.9287213 }, + { "lat": 40.8495975, "lon": -73.9286707 }, + { "lat": 40.8496345, "lon": -73.9286228 }, + { "lat": 40.8496726, "lon": -73.9285704 }, + { "lat": 40.8497067, "lon": -73.9285197 }, + { "lat": 40.8498483, "lon": -73.9282863 }, + { "lat": 40.8500411, "lon": -73.9280475 }, + { "lat": 40.8506940, "lon": -73.9274770 }, + { "lat": 40.8511131, "lon": -73.9272085 }, + { "lat": 40.8512700, "lon": -73.9271362 }, + { "lat": 40.8514290, "lon": -73.9270800 }, + { "lat": 40.8514951, "lon": -73.9270604 }, + { "lat": 40.8516784, "lon": -73.9270308 }, + { "lat": 40.8518065, "lon": -73.9270195 }, + { "lat": 40.8518353, "lon": -73.9270169 }, + { "lat": 40.8518793, "lon": -73.9270130 }, + { "lat": 40.8521060, "lon": -73.9270228 }, + { "lat": 40.8522560, "lon": -73.9271333 }, + { "lat": 40.8524402, "lon": -73.9275672 }, + { "lat": 40.8524955, "lon": -73.9276972 } + ], + "tags": { + "highway": "residential", + "name": "Laurel Hill Terrace", + "name_1": "W 182 St", + "name_2": "McNally Plaza", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673063, + "bounds": { + "minlat": 40.7518449, + "minlon": -73.9676741, + "maxlat": 40.7520288, + "maxlon": -73.9674542 + }, + "nodes": [ + 595105581, + 4012935770, + 9140864990, + 9140864989, + 9140864988, + 9140864987, + 42455932 + ], + "geometry": [ + { "lat": 40.7518449, "lon": -73.9674542 }, + { "lat": 40.7519007, "lon": -73.9675709 }, + { "lat": 40.7519110, "lon": -73.9675888 }, + { "lat": 40.7519240, "lon": -73.9676068 }, + { "lat": 40.7519391, "lon": -73.9676229 }, + { "lat": 40.7520020, "lon": -73.9676544 }, + { "lat": 40.7520288, "lon": -73.9676741 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed:type": "US-NY:urban", + "name": "East 47th Street", + "name:ru": "Восточная 47-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4638574", + "wikipedia": "en:47th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673064, + "bounds": { + "minlat": 40.8567453, + "minlon": -73.9356020, + "maxlat": 40.8571090, + "maxlon": -73.9348377 + }, + "nodes": [ + 42442400, + 2348610344, + 2348610345, + 2348610346, + 2348610347, + 2348610348, + 2348610349, + 2348610350, + 2348610351, + 2348610352, + 2348610353, + 1253602776, + 8929221218, + 42427216 + ], + "geometry": [ + { "lat": 40.8567453, "lon": -73.9348568 }, + { "lat": 40.8567798, "lon": -73.9348441 }, + { "lat": 40.8568077, "lon": -73.9348385 }, + { "lat": 40.8568241, "lon": -73.9348377 }, + { "lat": 40.8568435, "lon": -73.9348399 }, + { "lat": 40.8568661, "lon": -73.9348519 }, + { "lat": 40.8568867, "lon": -73.9348715 }, + { "lat": 40.8569030, "lon": -73.9348917 }, + { "lat": 40.8569258, "lon": -73.9349280 }, + { "lat": 40.8569428, "lon": -73.9349648 }, + { "lat": 40.8569573, "lon": -73.9350044 }, + { "lat": 40.8569736, "lon": -73.9350562 }, + { "lat": 40.8570850, "lon": -73.9355001 }, + { "lat": 40.8571090, "lon": -73.9356020 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 190th Street", + "name_1": "West 190 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "190th", + "tiger:name_base_1": "190", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5673067, + "bounds": { + "minlat": 40.8549080, + "minlon": -73.9316550, + "maxlat": 40.8557550, + "maxlon": -73.9296440 + }, + "nodes": [ + 42443488, + 9563795375, + 9563795474, + 42449656, + 9563795471, + 5403868136, + 42433115 + ], + "geometry": [ + { "lat": 40.8557550, "lon": -73.9316550 }, + { "lat": 40.8557314, "lon": -73.9315972 }, + { "lat": 40.8554682, "lon": -73.9309832 }, + { "lat": 40.8554227, "lon": -73.9308767 }, + { "lat": 40.8553845, "lon": -73.9307852 }, + { "lat": 40.8549632, "lon": -73.9297765 }, + { "lat": 40.8549080, "lon": -73.9296440 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 190th Street", + "name_1": "West 190 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "190th", + "tiger:name_base_1": "190", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5673069, + "bounds": { + "minlat": 40.8565030, + "minlon": -73.9336810, + "maxlat": 40.8567830, + "maxlon": -73.9327610 + }, + "nodes": [ + 42429100, + 6882325997, + 1763628651, + 1763628648, + 6882325999, + 42454300 + ], + "geometry": [ + { "lat": 40.8565030, "lon": -73.9327610 }, + { "lat": 40.8565460, "lon": -73.9328947 }, + { "lat": 40.8565636, "lon": -73.9329606 }, + { "lat": 40.8567499, "lon": -73.9335653 }, + { "lat": 40.8567634, "lon": -73.9336129 }, + { "lat": 40.8567830, "lon": -73.9336810 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "West 190th Street", + "name_1": "West 190 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "190th", + "tiger:name_base_1": "190", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5673071, + "bounds": { + "minlat": 40.7072377, + "minlon": -74.0039515, + "maxlat": 40.7076706, + "maxlon": -74.0031101 + }, + "nodes": [ + 42440268, + 10309622548, + 12554614929, + 10309622559, + 10942512957, + 42457292 + ], + "geometry": [ + { "lat": 40.7072377, "lon": -74.0039515 }, + { "lat": 40.7072780, "lon": -74.0038731 }, + { "lat": 40.7072940, "lon": -74.0038422 }, + { "lat": 40.7076410, "lon": -74.0031723 }, + { "lat": 40.7076503, "lon": -74.0031528 }, + { "lat": 40.7076706, "lon": -74.0031101 } + ], + "tags": { + "highway": "pedestrian", + "name": "Water Street", + "name:ko": "워터 스트리트", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5673073, + "bounds": { + "minlat": 40.7112389, + "minlon": -73.9847412, + "maxlat": 40.7115248, + "maxlon": -73.9806230 + }, + "nodes": [ + 11038072103, + 8310246568, + 8310246567, + 42436974, + 8310246565, + 42432002, + 42434833, + 8310246545, + 7401172013, + 6415259652, + 8310246535, + 42427750 + ], + "geometry": [ + { "lat": 40.7112389, "lon": -73.9847412 }, + { "lat": 40.7112453, "lon": -73.9846481 }, + { "lat": 40.7112925, "lon": -73.9839691 }, + { "lat": 40.7112964, "lon": -73.9839123 }, + { "lat": 40.7113004, "lon": -73.9838547 }, + { "lat": 40.7113170, "lon": -73.9836160 }, + { "lat": 40.7113383, "lon": -73.9833096 }, + { "lat": 40.7113434, "lon": -73.9832348 }, + { "lat": 40.7114810, "lon": -73.9812438 }, + { "lat": 40.7115146, "lon": -73.9807693 }, + { "lat": 40.7115198, "lon": -73.9806952 }, + { "lat": 40.7115248, "lon": -73.9806230 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673075, + "bounds": { + "minlat": 40.7027177, + "minlon": -74.0123832, + "maxlat": 40.7028470, + "maxlon": -74.0122358 + }, + "nodes": [ + 42433834, + 11041048713, + 1772096966, + 7706695185, + 7706695186, + 7706695191 + ], + "geometry": [ + { "lat": 40.7027177, "lon": -74.0122358 }, + { "lat": 40.7027281, "lon": -74.0122684 }, + { "lat": 40.7027481, "lon": -74.0123052 }, + { "lat": 40.7027699, "lon": -74.0123345 }, + { "lat": 40.7028017, "lon": -74.0123583 }, + { "lat": 40.7028470, "lon": -74.0123832 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Moore Street", + "name:ko": "무어 스트리트", + "name:ru": "Мур-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water;Moore", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 5673077, + "bounds": { + "minlat": 40.7097436, + "minlon": -73.9963766, + "maxlat": 40.7100934, + "maxlon": -73.9940953 + }, + "nodes": [ + 42433324, + 4382842410, + 588455858, + 9845619157, + 9525441192, + 7483737401, + 42452556 + ], + "geometry": [ + { "lat": 40.7097436, "lon": -73.9963766 }, + { "lat": 40.7097642, "lon": -73.9962433 }, + { "lat": 40.7097861, "lon": -73.9960833 }, + { "lat": 40.7100588, "lon": -73.9943337 }, + { "lat": 40.7100659, "lon": -73.9942907 }, + { "lat": 40.7100717, "lon": -73.9942494 }, + { "lat": 40.7100934, "lon": -73.9940953 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673078, + "bounds": { + "minlat": 40.7027177, + "minlon": -74.0122358, + "maxlat": 40.7029659, + "maxlon": -74.0115133 + }, + "nodes": [ + 42431898, + 8304779698, + 7689146643, + 5370676917, + 11041048715, + 3738794335, + 7706695187, + 11041048714, + 42433834 + ], + "geometry": [ + { "lat": 40.7029659, "lon": -74.0115133 }, + { "lat": 40.7029493, "lon": -74.0115762 }, + { "lat": 40.7029401, "lon": -74.0116155 }, + { "lat": 40.7029197, "lon": -74.0116955 }, + { "lat": 40.7028926, "lon": -74.0117891 }, + { "lat": 40.7028609, "lon": -74.0118896 }, + { "lat": 40.7028246, "lon": -74.0119891 }, + { "lat": 40.7027826, "lon": -74.0120887 }, + { "lat": 40.7027177, "lon": -74.0122358 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "parking:left:restriction": "no_standing", + "parking:left:taxi": "designated", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 5673079, + "bounds": { + "minlat": 40.8633220, + "minlon": -73.9300194, + "maxlat": 40.8636140, + "maxlon": -73.9282060 + }, + "nodes": [ + 42429184, + 9561386493, + 42457630, + 11596424595, + 9561386510, + 1764640721, + 42431180 + ], + "geometry": [ + { "lat": 40.8634187, "lon": -73.9300194 }, + { "lat": 40.8634053, "lon": -73.9298727 }, + { "lat": 40.8633220, "lon": -73.9289970 }, + { "lat": 40.8635649, "lon": -73.9283391 }, + { "lat": 40.8635828, "lon": -73.9282905 }, + { "lat": 40.8635847, "lon": -73.9282853 }, + { "lat": 40.8636140, "lon": -73.9282060 } + ], + "tags": { + "highway": "residential", + "name": "Dongan Place", + "name:etymology:wikidata": "Q7789018", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dongan", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5673081, + "bounds": { + "minlat": 40.8050065, + "minlon": -73.9364782, + "maxlat": 40.8056792, + "maxlon": -73.9348832 + }, + "nodes": [ + 42450089, + 9903045886, + 5482291305, + 11214344810, + 42447208 + ], + "geometry": [ + { "lat": 40.8050065, "lon": -73.9348832 }, + { "lat": 40.8050592, "lon": -73.9350098 }, + { "lat": 40.8053844, "lon": -73.9357787 }, + { "lat": 40.8056402, "lon": -73.9363857 }, + { "lat": 40.8056792, "lon": -73.9364782 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 127th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673083, + "bounds": { + "minlat": 40.7866031, + "minlon": -73.9534929, + "maxlat": 40.7869495, + "maxlon": -73.9526692 + }, + "nodes": [ + 9448174588, + 6254816604, + 596776260 + ], + "geometry": [ + { "lat": 40.7869495, "lon": -73.9534929 }, + { "lat": 40.7866392, "lon": -73.9527549 }, + { "lat": 40.7866031, "lon": -73.9526692 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673085, + "bounds": { + "minlat": 40.7246931, + "minlon": -73.9807680, + "maxlat": 40.7256850, + "maxlon": -73.9784069 + }, + "nodes": [ + 2324482224, + 4216045816, + 13376962541, + 10316212470, + 8309479404, + 42455181 + ], + "geometry": [ + { "lat": 40.7256850, "lon": -73.9807680 }, + { "lat": 40.7256459, "lon": -73.9806751 }, + { "lat": 40.7252773, "lon": -73.9797977 }, + { "lat": 40.7250644, "lon": -73.9792908 }, + { "lat": 40.7247382, "lon": -73.9785144 }, + { "lat": 40.7246931, "lon": -73.9784069 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 8th Street", + "name:ru": "Восточная 8-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2142493", + "wikipedia": "en:8th Street and St. Mark's Place" + } +}, +{ + "type": "way", + "id": 5673089, + "bounds": { + "minlat": 40.7309483, + "minlon": -73.9944260, + "maxlat": 40.7314416, + "maxlon": -73.9932574 + }, + "nodes": [ + 9756897963, + 8309479183, + 42456211, + 8309479181, + 8309479172, + 42449589 + ], + "geometry": [ + { "lat": 40.7314416, "lon": -73.9944260 }, + { "lat": 40.7313042, "lon": -73.9941028 }, + { "lat": 40.7312848, "lon": -73.9940524 }, + { "lat": 40.7312561, "lon": -73.9939837 }, + { "lat": 40.7309727, "lon": -73.9933147 }, + { "lat": 40.7309483, "lon": -73.9932574 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 8th Street", + "name:en": "East 8th Street", + "name:ru": "Восточная 8-я стрит", + "name_1": "East 8 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2142493", + "wikipedia": "en:8th Street and St. Mark's Place" + } +}, +{ + "type": "way", + "id": 5673093, + "bounds": { + "minlat": 40.7261880, + "minlon": -73.9922659, + "maxlat": 40.7274250, + "maxlon": -73.9894290 + }, + "nodes": [ + 10049007836, + 12187431457, + 8309479117, + 1773084402, + 8309479113, + 12187431460, + 13701159668, + 12187431468, + 7977873358, + 42442848 + ], + "geometry": [ + { "lat": 40.7274250, "lon": -73.9922659 }, + { "lat": 40.7271740, "lon": -73.9917508 }, + { "lat": 40.7271513, "lon": -73.9916982 }, + { "lat": 40.7270874, "lon": -73.9915502 }, + { "lat": 40.7270231, "lon": -73.9914012 }, + { "lat": 40.7270127, "lon": -73.9913770 }, + { "lat": 40.7268463, "lon": -73.9909824 }, + { "lat": 40.7262700, "lon": -73.9896158 }, + { "lat": 40.7262393, "lon": -73.9895490 }, + { "lat": 40.7261880, "lon": -73.9894290 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 4th Street", + "name:ru": "Восточная 4-я стрит", + "name_1": "East 4 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673102, + "bounds": { + "minlat": 40.7331430, + "minlon": -74.0101693, + "maxlat": 40.7337434, + "maxlon": -74.0062788 + }, + "nodes": [ + 42453457, + 4872777179, + 42444267, + 12162436928, + 8526690236, + 8307642123, + 42457735, + 8307642120, + 12162494518, + 8307642000, + 42436134, + 8307642002, + 5357273833, + 8307642013, + 42436396 + ], + "geometry": [ + { "lat": 40.7331430, "lon": -74.0101693 }, + { "lat": 40.7331598, "lon": -74.0100340 }, + { "lat": 40.7331956, "lon": -74.0098002 }, + { "lat": 40.7333660, "lon": -74.0087393 }, + { "lat": 40.7333725, "lon": -74.0086985 }, + { "lat": 40.7333828, "lon": -74.0086509 }, + { "lat": 40.7333916, "lon": -74.0085749 }, + { "lat": 40.7334054, "lon": -74.0084613 }, + { "lat": 40.7335509, "lon": -74.0075160 }, + { "lat": 40.7335603, "lon": -74.0074522 }, + { "lat": 40.7335770, "lon": -74.0073392 }, + { "lat": 40.7335933, "lon": -74.0072309 }, + { "lat": 40.7336573, "lon": -74.0068152 }, + { "lat": 40.7337167, "lon": -74.0064276 }, + { "lat": 40.7337434, "lon": -74.0062788 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 10th Street", + "name:ru": "Западная 10-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673106, + "bounds": { + "minlat": 40.8247050, + "minlon": -73.9500743, + "maxlat": 40.8271527, + "maxlon": -73.9442680 + }, + "nodes": [ + 42428934, + 561035362, + 11193723022, + 11221649609, + 42442625, + 11221649606, + 11200341596, + 42448655, + 11200341592, + 11221649622, + 4205440426 + ], + "geometry": [ + { "lat": 40.8271527, "lon": -73.9500743 }, + { "lat": 40.8270669, "lon": -73.9498666 }, + { "lat": 40.8270263, "lon": -73.9497704 }, + { "lat": 40.8259591, "lon": -73.9472429 }, + { "lat": 40.8259010, "lon": -73.9471053 }, + { "lat": 40.8258530, "lon": -73.9469910 }, + { "lat": 40.8253658, "lon": -73.9458303 }, + { "lat": 40.8253247, "lon": -73.9457322 }, + { "lat": 40.8252907, "lon": -73.9456524 }, + { "lat": 40.8247660, "lon": -73.9444122 }, + { "lat": 40.8247050, "lon": -73.9442680 } + ], + "tags": { + "highway": "residential", + "name": "West 146th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "146th", + "tiger:name_base_1": "146", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 5673110, + "bounds": { + "minlat": 40.8211204, + "minlon": -73.9385040, + "maxlat": 40.8222778, + "maxlon": -73.9357506 + }, + "nodes": [ + 2141026521, + 8758299310, + 9557088461, + 42432665 + ], + "geometry": [ + { "lat": 40.8222778, "lon": -73.9385040 }, + { "lat": 40.8222336, "lon": -73.9383987 }, + { "lat": 40.8211914, "lon": -73.9359197 }, + { "lat": 40.8211204, "lon": -73.9357506 } + ], + "tags": { + "highway": "residential", + "name": "West 146th Street", + "name_1": "West 146 Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5673114, + "bounds": { + "minlat": 40.7719960, + "minlon": -73.9787387, + "maxlat": 40.7724211, + "maxlon": -73.9780948 + }, + "nodes": [ + 9170842297, + 9908336691, + 9170842298, + 9915469768, + 3809536790, + 9908336692, + 7802856352 + ], + "geometry": [ + { "lat": 40.7719960, "lon": -73.9780948 }, + { "lat": 40.7720936, "lon": -73.9782323 }, + { "lat": 40.7723353, "lon": -73.9785390 }, + { "lat": 40.7723524, "lon": -73.9785673 }, + { "lat": 40.7723691, "lon": -73.9786003 }, + { "lat": 40.7723822, "lon": -73.9786342 }, + { "lat": 40.7724211, "lon": -73.9787387 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|right", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673117, + "bounds": { + "minlat": 40.7686268, + "minlon": -73.9723598, + "maxlat": 40.7688761, + "maxlon": -73.9715467 + }, + "nodes": [ + 42457788, + 9170842311, + 9170842315, + 5307237639, + 9908336681, + 8906451666 + ], + "geometry": [ + { "lat": 40.7688761, "lon": -73.9723598 }, + { "lat": 40.7688150, "lon": -73.9721805 }, + { "lat": 40.7687416, "lon": -73.9718955 }, + { "lat": 40.7687116, "lon": -73.9717877 }, + { "lat": 40.7686707, "lon": -73.9716646 }, + { "lat": 40.7686268, "lon": -73.9715467 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673157, + "bounds": { + "minlat": 40.7200751, + "minlon": -73.9749636, + "maxlat": 40.7241879, + "maxlon": -73.9734994 + }, + "nodes": [ + 42430945, + 4301308495, + 3659184784, + 370894885, + 370894886, + 370894887, + 42444837, + 4301313297, + 42443920, + 4301313296, + 4301313295, + 4301313294, + 9907942881, + 42451712 + ], + "geometry": [ + { "lat": 40.7241879, "lon": -73.9735364 }, + { "lat": 40.7241698, "lon": -73.9734994 }, + { "lat": 40.7229826, "lon": -73.9742660 }, + { "lat": 40.7225820, "lon": -73.9744873 }, + { "lat": 40.7221045, "lon": -73.9746807 }, + { "lat": 40.7217624, "lon": -73.9747533 }, + { "lat": 40.7216193, "lon": -73.9747705 }, + { "lat": 40.7210847, "lon": -73.9748257 }, + { "lat": 40.7210086, "lon": -73.9748475 }, + { "lat": 40.7208825, "lon": -73.9749044 }, + { "lat": 40.7208145, "lon": -73.9749245 }, + { "lat": 40.7204809, "lon": -73.9749559 }, + { "lat": 40.7203151, "lon": -73.9749636 }, + { "lat": 40.7200751, "lon": -73.9749559 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxheight": "below_default", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673171, + "bounds": { + "minlat": 40.7527720, + "minlon": -73.9665034, + "maxlat": 40.7533202, + "maxlon": -73.9652010 + }, + "nodes": [ + 42453080, + 3569749144, + 5993830853 + ], + "geometry": [ + { "lat": 40.7527720, "lon": -73.9652010 }, + { "lat": 40.7532836, "lon": -73.9664186 }, + { "lat": 40.7533202, "lon": -73.9665034 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Mitchell Place", + "name:etymology:wikidata": "Q63258451", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 5673179, + "bounds": { + "minlat": 40.7395275, + "minlon": -73.9760069, + "maxlat": 40.7401161, + "maxlon": -73.9746686 + }, + "nodes": [ + 8119193326, + 11543660454, + 11543660372 + ], + "geometry": [ + { "lat": 40.7401161, "lon": -73.9760069 }, + { "lat": 40.7400637, "lon": -73.9758877 }, + { "lat": 40.7395275, "lon": -73.9746686 } + ], + "tags": { + "access": "permissive", + "description": "\"Ambulances only\" signage and security guard posted at 1st Avenue corner", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "private", + "name": "East 28th Street", + "name_1": "East 28 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673185, + "bounds": { + "minlat": 40.7919070, + "minlon": -73.9366868, + "maxlat": 40.7923529, + "maxlon": -73.9356492 + }, + "nodes": [ + 12892782441, + 6402593827 + ], + "geometry": [ + { "lat": 40.7923529, "lon": -73.9366868 }, + { "lat": 40.7919070, "lon": -73.9356492 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 111th Street", + "name:ru": "Восточная 111-я стрит", + "oneway": "yes", + "parking:lane:left": "diagonal", + "parking:lane:right": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673198, + "bounds": { + "minlat": 40.7156490, + "minlon": -73.9783130, + "maxlat": 40.7192576, + "maxlon": -73.9772402 + }, + "nodes": [ + 42453365, + 3783088891, + 3569852193, + 42458142, + 4300994847, + 4300945410, + 42458144, + 4300994873, + 4300945442, + 42458147, + 42458156, + 42458165, + 42458168, + 4300994807, + 42458170, + 42458172, + 42458173, + 42458175, + 42458177, + 42458181, + 4300945445, + 42458185, + 42458188, + 42458194, + 42458198, + 42458205, + 42458214, + 42458227, + 4300945441, + 42458231, + 4300992076, + 42425100 + ], + "geometry": [ + { "lat": 40.7192576, "lon": -73.9772402 }, + { "lat": 40.7191680, "lon": -73.9772749 }, + { "lat": 40.7190197, "lon": -73.9773349 }, + { "lat": 40.7186071, "lon": -73.9774899 }, + { "lat": 40.7184158, "lon": -73.9775918 }, + { "lat": 40.7183121, "lon": -73.9776622 }, + { "lat": 40.7181480, "lon": -73.9777730 }, + { "lat": 40.7178203, "lon": -73.9780040 }, + { "lat": 40.7177473, "lon": -73.9780554 }, + { "lat": 40.7175990, "lon": -73.9781600 }, + { "lat": 40.7175250, "lon": -73.9782150 }, + { "lat": 40.7174290, "lon": -73.9782670 }, + { "lat": 40.7173240, "lon": -73.9783000 }, + { "lat": 40.7172395, "lon": -73.9783093 }, + { "lat": 40.7172060, "lon": -73.9783130 }, + { "lat": 40.7171040, "lon": -73.9783040 }, + { "lat": 40.7170130, "lon": -73.9782790 }, + { "lat": 40.7169260, "lon": -73.9782390 }, + { "lat": 40.7168370, "lon": -73.9781810 }, + { "lat": 40.7167510, "lon": -73.9781040 }, + { "lat": 40.7167361, "lon": -73.9780859 }, + { "lat": 40.7166940, "lon": -73.9780350 }, + { "lat": 40.7166210, "lon": -73.9779680 }, + { "lat": 40.7165030, "lon": -73.9778750 }, + { "lat": 40.7163770, "lon": -73.9778000 }, + { "lat": 40.7162460, "lon": -73.9777430 }, + { "lat": 40.7161200, "lon": -73.9777070 }, + { "lat": 40.7159610, "lon": -73.9777570 }, + { "lat": 40.7159415, "lon": -73.9777658 }, + { "lat": 40.7157911, "lon": -73.9778364 }, + { "lat": 40.7157547, "lon": -73.9778557 }, + { "lat": 40.7156490, "lon": -73.9779170 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Baruch Drive", + "name:etymology:wikidata": "Q1465166", + "name:ko": "바루크 드라이브", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673205, + "bounds": { + "minlat": 40.7068126, + "minlon": -74.0133710, + "maxlat": 40.7071509, + "maxlon": -74.0126086 + }, + "nodes": [ + 42456884, + 10316226229, + 10316225969, + 4206997152, + 10316225945, + 11051773160 + ], + "geometry": [ + { "lat": 40.7071509, "lon": -74.0133710 }, + { "lat": 40.7071252, "lon": -74.0133125 }, + { "lat": 40.7071178, "lon": -74.0132959 }, + { "lat": 40.7071077, "lon": -74.0132730 }, + { "lat": 40.7068707, "lon": -74.0127416 }, + { "lat": 40.7068126, "lon": -74.0126086 } + ], + "tags": { + "alt_name": "Exchange Place", + "bicycle": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "Exchange Alley", + "name:etymology:wikidata": "Q1097619", + "name:ko": "익스체인지 플라자", + "name_1": "Exchange Plaza", + "oneway": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 5673208, + "bounds": { + "minlat": 40.8568510, + "minlon": -73.9314750, + "maxlat": 40.8579899, + "maxlon": -73.9308883 + }, + "nodes": [ + 42453591, + 11594925589, + 42433350 + ], + "geometry": [ + { "lat": 40.8568510, "lon": -73.9314750 }, + { "lat": 40.8569674, "lon": -73.9314151 }, + { "lat": 40.8579899, "lon": -73.9308883 } + ], + "tags": { + "hgv": "no", + "highway": "residential", + "lane_markings": "no", + "name": "Broadway Terrace", + "name:etymology:wikidata": "Q11260", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673210, + "bounds": { + "minlat": 40.7208883, + "minlon": -73.9994823, + "maxlat": 40.7251622, + "maxlon": -73.9958807 + }, + "nodes": [ + 10040606326, + 12187433923, + 8231906913, + 42432161, + 8231906912, + 8231931817, + 42442255, + 8231906916, + 10606723145, + 8231906899, + 42458267, + 8231906898, + 8231877097, + 42453327, + 8231877096, + 8231927651, + 1918039880 + ], + "geometry": [ + { "lat": 40.7208883, "lon": -73.9994823 }, + { "lat": 40.7213210, "lon": -73.9991158 }, + { "lat": 40.7213571, "lon": -73.9990852 }, + { "lat": 40.7214242, "lon": -73.9990287 }, + { "lat": 40.7214876, "lon": -73.9989747 }, + { "lat": 40.7226221, "lon": -73.9980147 }, + { "lat": 40.7226691, "lon": -73.9979746 }, + { "lat": 40.7227095, "lon": -73.9979407 }, + { "lat": 40.7238276, "lon": -73.9969962 }, + { "lat": 40.7238371, "lon": -73.9969882 }, + { "lat": 40.7238889, "lon": -73.9969461 }, + { "lat": 40.7239244, "lon": -73.9969150 }, + { "lat": 40.7246406, "lon": -73.9963189 }, + { "lat": 40.7246620, "lon": -73.9963010 }, + { "lat": 40.7246849, "lon": -73.9962835 }, + { "lat": 40.7250811, "lon": -73.9959492 }, + { "lat": 40.7251622, "lon": -73.9958807 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Crosby Street", + "name:etymology:wikidata": "Q96242792", + "name:ko": "크로즈비 스트리트", + "name:ru": "Кросби-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5673211, + "bounds": { + "minlat": 40.7104309, + "minlon": -74.0107773, + "maxlat": 40.7110135, + "maxlon": -74.0094861 + }, + "nodes": [ + 42428379, + 8281922226, + 8262936374, + 42453934 + ], + "geometry": [ + { "lat": 40.7104309, "lon": -74.0094861 }, + { "lat": 40.7104539, "lon": -74.0095734 }, + { "lat": 40.7109709, "lon": -74.0106859 }, + { "lat": 40.7110135, "lon": -74.0107773 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Dey Street", + "name:etymology": "Dirck Dey", + "name:ko": "데이 스트리트", + "name:ru": "Дей-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:left:restriction:reason": "loading_zone", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "24'8\"", + "wikidata": "Q14623578", + "wikipedia": "en:Dey Street" + } +}, +{ + "type": "way", + "id": 5673220, + "bounds": { + "minlat": 40.8141870, + "minlon": -73.9545419, + "maxlat": 40.8157354, + "maxlon": -73.9508600 + }, + "nodes": [ + 42442596, + 10055113541, + 7180979635, + 8396052844, + 10170977536, + 42448611, + 8835729566, + 8151881631, + 11296306923, + 42427538 + ], + "geometry": [ + { "lat": 40.8157354, "lon": -73.9545419 }, + { "lat": 40.8156864, "lon": -73.9544260 }, + { "lat": 40.8154172, "lon": -73.9537893 }, + { "lat": 40.8153575, "lon": -73.9536459 }, + { "lat": 40.8151134, "lon": -73.9530683 }, + { "lat": 40.8150729, "lon": -73.9529724 }, + { "lat": 40.8150327, "lon": -73.9528784 }, + { "lat": 40.8142377, "lon": -73.9509814 }, + { "lat": 40.8142200, "lon": -73.9509390 }, + { "lat": 40.8141870, "lon": -73.9508600 } + ], + "tags": { + "highway": "residential", + "name": "West 130th Street", + "name_1": "West 130 Street" + } +}, +{ + "type": "way", + "id": 5673228, + "bounds": { + "minlat": 40.7735306, + "minlon": -73.9881703, + "maxlat": 40.7747427, + "maxlon": -73.9853181 + }, + "nodes": [ + 42430984, + 7595748178, + 8122368389, + 2313527729, + 8396036443, + 7050687068, + 42442410 + ], + "geometry": [ + { "lat": 40.7747427, "lon": -73.9881703 }, + { "lat": 40.7746861, "lon": -73.9880423 }, + { "lat": 40.7745697, "lon": -73.9877642 }, + { "lat": 40.7740123, "lon": -73.9864610 }, + { "lat": 40.7738240, "lon": -73.9860176 }, + { "lat": 40.7735963, "lon": -73.9854743 }, + { "lat": 40.7735306, "lon": -73.9853181 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lanes": "1", + "name": "West 64th Street", + "name:ru": "Западная 64-я стрит", + "name_1": "West 64 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673231, + "bounds": { + "minlat": 40.7490548, + "minlon": -73.9836173, + "maxlat": 40.7497277, + "maxlon": -73.9820225 + }, + "nodes": [ + 42452973, + 9965135065, + 11336685991, + 42445908 + ], + "geometry": [ + { "lat": 40.7497277, "lon": -73.9836173 }, + { "lat": 40.7496794, "lon": -73.9835029 }, + { "lat": 40.7490966, "lon": -73.9821216 }, + { "lat": 40.7490548, "lon": -73.9820225 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 36th Street", + "name:ru": "Восточная 36-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673236, + "bounds": { + "minlat": 40.7986336, + "minlon": -73.9431029, + "maxlat": 40.7992557, + "maxlon": -73.9416222 + }, + "nodes": [ + 42447199, + 10122953003, + 11296237244, + 42458342 + ], + "geometry": [ + { "lat": 40.7986336, "lon": -73.9416222 }, + { "lat": 40.7986735, "lon": -73.9417160 }, + { "lat": 40.7992274, "lon": -73.9430355 }, + { "lat": 40.7992557, "lon": -73.9431029 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 116th Street", + "name:ru": "Восточная 116-я стрит", + "surface": "asphalt", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673276, + "bounds": { + "minlat": 40.7619764, + "minlon": -74.0010599, + "maxlat": 40.7621394, + "maxlon": -74.0008545 + }, + "nodes": [ + 62915549, + 247119754, + 4207940408 + ], + "geometry": [ + { "lat": 40.7619764, "lon": -74.0010599 }, + { "lat": 40.7620850, "lon": -74.0009205 }, + { "lat": 40.7621394, "lon": -74.0008545 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 5673296, + "bounds": { + "minlat": 40.8658894, + "minlon": -73.9282623, + "maxlat": 40.8661784, + "maxlon": -73.9280465 + }, + "nodes": [ + 42432799, + 9561395268, + 1209512080, + 1209512070, + 5490791117 + ], + "geometry": [ + { "lat": 40.8661784, "lon": -73.9280465 }, + { "lat": 40.8661158, "lon": -73.9280871 }, + { "lat": 40.8661082, "lon": -73.9280909 }, + { "lat": 40.8659188, "lon": -73.9282393 }, + { "lat": 40.8658894, "lon": -73.9282623 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Seaman Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Seaman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5673305, + "bounds": { + "minlat": 40.8214397, + "minlon": -73.9553367, + "maxlat": 40.8235401, + "maxlon": -73.9503643 + }, + "nodes": [ + 42442609, + 10181632174, + 10172767674, + 42453757, + 10172767677, + 10170641698, + 561035355, + 42428914, + 10170641703, + 6865755471, + 7694624899, + 7694624894, + 10170703023, + 42441950 + ], + "geometry": [ + { "lat": 40.8214397, "lon": -73.9503643 }, + { "lat": 40.8215015, "lon": -73.9505106 }, + { "lat": 40.8221425, "lon": -73.9520281 }, + { "lat": 40.8221764, "lon": -73.9521084 }, + { "lat": 40.8222163, "lon": -73.9522027 }, + { "lat": 40.8225672, "lon": -73.9530327 }, + { "lat": 40.8226075, "lon": -73.9531289 }, + { "lat": 40.8226911, "lon": -73.9533268 }, + { "lat": 40.8227235, "lon": -73.9533998 }, + { "lat": 40.8230590, "lon": -73.9541978 }, + { "lat": 40.8231931, "lon": -73.9545152 }, + { "lat": 40.8233596, "lon": -73.9549094 }, + { "lat": 40.8235074, "lon": -73.9552594 }, + { "lat": 40.8235401, "lon": -73.9553367 } + ], + "tags": { + "highway": "residential", + "name": "West 139th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673307, + "bounds": { + "minlat": 40.7742524, + "minlon": -73.9498734, + "maxlat": 40.7761941, + "maxlon": -73.9452680 + }, + "nodes": [ + 42451766, + 6352970547, + 7834030826, + 42428034, + 7834025541, + 7834030809, + 42456066 + ], + "geometry": [ + { "lat": 40.7742524, "lon": -73.9452680 }, + { "lat": 40.7743080, "lon": -73.9453999 }, + { "lat": 40.7751918, "lon": -73.9474961 }, + { "lat": 40.7752450, "lon": -73.9476222 }, + { "lat": 40.7752995, "lon": -73.9477515 }, + { "lat": 40.7761379, "lon": -73.9497401 }, + { "lat": 40.7761941, "lon": -73.9498734 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 85th Street", + "name:ru": "Восточная 85-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644879", + "wikipedia": "en:85th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673309, + "bounds": { + "minlat": 40.7299869, + "minlon": -74.0017000, + "maxlat": 40.7305503, + "maxlon": -74.0004979 + }, + "nodes": [ + 1692433939, + 8429015953, + 8429015946, + 42436848, + 8429015948, + 4320108384, + 42430205 + ], + "geometry": [ + { "lat": 40.7299869, "lon": -74.0004979 }, + { "lat": 40.7300132, "lon": -74.0005508 }, + { "lat": 40.7302302, "lon": -74.0009882 }, + { "lat": 40.7302460, "lon": -74.0010200 }, + { "lat": 40.7302649, "lon": -74.0010576 }, + { "lat": 40.7305214, "lon": -74.0015665 }, + { "lat": 40.7305503, "lon": -74.0017000 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Minetta Lane", + "name:etymology:wikidata": "Q6864566", + "name:ko": "미네타 레인", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673316, + "bounds": { + "minlat": 40.7223465, + "minlon": -73.9933264, + "maxlat": 40.7223827, + "maxlon": -73.9932156 + }, + "nodes": [ + 1773078006, + 42437608 + ], + "geometry": [ + { "lat": 40.7223465, "lon": -73.9932156 }, + { "lat": 40.7223827, "lon": -73.9933264 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Prince Street", + "name:ar": "شارع الامير", + "name:en": "Prince Street", + "name:ko": "프린스 스트리트", + "name:ru": "Принс-стрит", + "oneway": "yes", + "parking:lane:right": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673323, + "bounds": { + "minlat": 40.7541770, + "minlon": -73.9866712, + "maxlat": 40.7550539, + "maxlon": -73.9845960 + }, + "nodes": [ + 42430329, + 10169532644, + 8751484600, + 4544917699, + 8751484591, + 6237327828, + 8751484448, + 10268944197, + 10173032936, + 10268944200, + 42428283 + ], + "geometry": [ + { "lat": 40.7541770, "lon": -73.9845960 }, + { "lat": 40.7542326, "lon": -73.9847279 }, + { "lat": 40.7544636, "lon": -73.9852764 }, + { "lat": 40.7544756, "lon": -73.9853048 }, + { "lat": 40.7545150, "lon": -73.9853938 }, + { "lat": 40.7545284, "lon": -73.9854240 }, + { "lat": 40.7545541, "lon": -73.9854846 }, + { "lat": 40.7549881, "lon": -73.9865122 }, + { "lat": 40.7550078, "lon": -73.9865589 }, + { "lat": 40.7550357, "lon": -73.9866269 }, + { "lat": 40.7550539, "lon": -73.9866712 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 5673326, + "bounds": { + "minlat": 40.8189320, + "minlon": -73.9549695, + "maxlat": 40.8200718, + "maxlon": -73.9522115 + }, + "nodes": [ + 42438836, + 7260975612, + 7260975616, + 10170977559, + 7260975618, + 10168100430, + 561035349 + ], + "geometry": [ + { "lat": 40.8189320, "lon": -73.9522115 }, + { "lat": 40.8189410, "lon": -73.9522655 }, + { "lat": 40.8189578, "lon": -73.9523365 }, + { "lat": 40.8189679, "lon": -73.9523694 }, + { "lat": 40.8189727, "lon": -73.9523849 }, + { "lat": 40.8200231, "lon": -73.9548549 }, + { "lat": 40.8200718, "lon": -73.9549695 } + ], + "tags": { + "highway": "tertiary", + "name": "West 135th Street", + "name_1": "West 135 Street" + } +}, +{ + "type": "way", + "id": 5673342, + "bounds": { + "minlat": 40.7293021, + "minlon": -74.0052199, + "maxlat": 40.7294638, + "maxlon": -74.0051849 + }, + "nodes": [ + 42430761, + 5837116452, + 8648032268 + ], + "geometry": [ + { "lat": 40.7294638, "lon": -74.0051849 }, + { "lat": 40.7294040, "lon": -74.0051978 }, + { "lat": 40.7293021, "lon": -74.0052199 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 5673346, + "bounds": { + "minlat": 40.8501945, + "minlon": -73.9396343, + "maxlat": 40.8511790, + "maxlon": -73.9392359 + }, + "nodes": [ + 42428103, + 9563821083, + 8151650895, + 1763597002, + 9563821082, + 42444097 + ], + "geometry": [ + { "lat": 40.8501945, "lon": -73.9396343 }, + { "lat": 40.8502554, "lon": -73.9396087 }, + { "lat": 40.8507601, "lon": -73.9394051 }, + { "lat": 40.8510595, "lon": -73.9392859 }, + { "lat": 40.8511036, "lon": -73.9392672 }, + { "lat": 40.8511790, "lon": -73.9392359 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Pinehurst Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pinehurst", + "tiger:name_type": "Ave", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5673348, + "bounds": { + "minlat": 40.8473921, + "minlon": -73.9406910, + "maxlat": 40.8488344, + "maxlon": -73.9401528 + }, + "nodes": [ + 60926009, + 9566938938, + 9566938947, + 42458936, + 9566938949, + 9908572545, + 8151650890, + 9566938951, + 42430023 + ], + "geometry": [ + { "lat": 40.8488344, "lon": -73.9401528 }, + { "lat": 40.8487826, "lon": -73.9401713 }, + { "lat": 40.8480885, "lon": -73.9404111 }, + { "lat": 40.8480246, "lon": -73.9404342 }, + { "lat": 40.8479612, "lon": -73.9404593 }, + { "lat": 40.8475918, "lon": -73.9406106 }, + { "lat": 40.8475031, "lon": -73.9406469 }, + { "lat": 40.8474581, "lon": -73.9406657 }, + { "lat": 40.8473921, "lon": -73.9406910 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "South Pinehurst Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pinehurst", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5673349, + "bounds": { + "minlat": 40.7773393, + "minlon": -73.9888384, + "maxlat": 40.7774787, + "maxlon": -73.9885023 + }, + "nodes": [ + 42458943, + 7624356310, + 7624356309, + 42438301 + ], + "geometry": [ + { "lat": 40.7773393, "lon": -73.9885023 }, + { "lat": 40.7774181, "lon": -73.9886877 }, + { "lat": 40.7774427, "lon": -73.9887475 }, + { "lat": 40.7774787, "lon": -73.9888384 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 67th Street", + "name:ru": "Западная 67-я стрит" + } +}, +{ + "type": "way", + "id": 5673351, + "bounds": { + "minlat": 40.8524955, + "minlon": -73.9325403, + "maxlat": 40.8545322, + "maxlon": -73.9276972 + }, + "nodes": [ + 42443482, + 8740550864, + 42449653, + 8740550859, + 5403868146, + 42433097, + 5403868148, + 8740550787, + 42455335, + 8740550784, + 8740550833, + 42442764 + ], + "geometry": [ + { "lat": 40.8545322, "lon": -73.9325403 }, + { "lat": 40.8542447, "lon": -73.9318781 }, + { "lat": 40.8542096, "lon": -73.9317889 }, + { "lat": 40.8541642, "lon": -73.9316808 }, + { "lat": 40.8537403, "lon": -73.9306739 }, + { "lat": 40.8536850, "lon": -73.9305390 }, + { "lat": 40.8536336, "lon": -73.9304169 }, + { "lat": 40.8531451, "lon": -73.9292541 }, + { "lat": 40.8531000, "lon": -73.9291470 }, + { "lat": 40.8530615, "lon": -73.9290547 }, + { "lat": 40.8525500, "lon": -73.9278279 }, + { "lat": 40.8524955, "lon": -73.9276972 } + ], + "tags": { + "highway": "residential", + "name": "West 188th Street", + "name_1": "West 188 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "188th", + "tiger:name_base_1": "188", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5673353, + "bounds": { + "minlat": 40.7858143, + "minlon": -73.9452422, + "maxlat": 40.7868144, + "maxlon": -73.9428466 + }, + "nodes": [ + 42443061, + 6175905212, + 6190264201, + 5482216754, + 4980852223, + 6169388293, + 42456091 + ], + "geometry": [ + { "lat": 40.7868144, "lon": -73.9452422 }, + { "lat": 40.7867723, "lon": -73.9451421 }, + { "lat": 40.7867555, "lon": -73.9451019 }, + { "lat": 40.7864998, "lon": -73.9444892 }, + { "lat": 40.7858756, "lon": -73.9429936 }, + { "lat": 40.7858594, "lon": -73.9429547 }, + { "lat": 40.7858143, "lon": -73.9428466 } + ], + "tags": { + "highway": "residential", + "name": "East 100th Street", + "name:ru": "Восточная 100-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5673355, + "bounds": { + "minlat": 40.7877536, + "minlon": -73.9505513, + "maxlat": 40.7890550, + "maxlon": -73.9474623 + }, + "nodes": [ + 42458960, + 6254630521, + 7779533936, + 42447176, + 7779533888, + 6190263570, + 42450052 + ], + "geometry": [ + { "lat": 40.7890550, "lon": -73.9505513 }, + { "lat": 40.7890284, "lon": -73.9504871 }, + { "lat": 40.7884679, "lon": -73.9491620 }, + { "lat": 40.7884305, "lon": -73.9490654 }, + { "lat": 40.7883943, "lon": -73.9489790 }, + { "lat": 40.7878116, "lon": -73.9476009 }, + { "lat": 40.7877536, "lon": -73.9474623 } + ], + "tags": { + "highway": "residential", + "name": "East 100th Street", + "name:ru": "Восточная 100-я стрит", + "name_1": "East 100 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5673358, + "bounds": { + "minlat": 40.8499179, + "minlon": -73.9310800, + "maxlat": 40.8505246, + "maxlon": -73.9296368 + }, + "nodes": [ + 13239275990, + 42455259, + 9566869968, + 5549743267, + 1253602748, + 1253602810, + 11595081997, + 9566869975, + 42442745 + ], + "geometry": [ + { "lat": 40.8505246, "lon": -73.9310800 }, + { "lat": 40.8505090, "lon": -73.9310430 }, + { "lat": 40.8504697, "lon": -73.9309501 }, + { "lat": 40.8504176, "lon": -73.9308268 }, + { "lat": 40.8503669, "lon": -73.9307067 }, + { "lat": 40.8499942, "lon": -73.9298143 }, + { "lat": 40.8499789, "lon": -73.9297788 }, + { "lat": 40.8499546, "lon": -73.9297224 }, + { "lat": 40.8499179, "lon": -73.9296368 } + ], + "tags": { + "alt_name": "Luis M. Beltre Place", + "description": "Louis M. Beltre was born on April 11, 1975 in New York City to Altagracia and Manuel Beltre. He was raised on 184th Street in Washington Heights, from where he attended John F. Kennedy High School in The Bronx. After high school, Louis continued his educa", + "highway": "residential", + "historic": "memorial", + "name": "West 184th Street", + "name_1": "West 184 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "184th", + "tiger:name_base_1": "184", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5673359, + "bounds": { + "minlat": 40.7158979, + "minlon": -74.0042041, + "maxlat": 40.7166598, + "maxlon": -74.0028270 + }, + "nodes": [ + 42428414, + 8307637658, + 7132560169, + 42445469 + ], + "geometry": [ + { "lat": 40.7166598, "lon": -74.0042041 }, + { "lat": 40.7166154, "lon": -74.0041241 }, + { "lat": 40.7159458, "lon": -74.0029089 }, + { "lat": 40.7158979, "lon": -74.0028270 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "name": "Catherine Lane", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 레인", + "oneway": "yes", + "service": "alley", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Catherine", + "tiger:name_type": "Ln", + "tiger:reviewed": "aerial", + "tiger:zip_left": "10013", + "tiger:zip_right": "10013" + } +}, +{ + "type": "way", + "id": 5673361, + "bounds": { + "minlat": 40.8612590, + "minlon": -73.9269230, + "maxlat": 40.8632380, + "maxlon": -73.9256680 + }, + "nodes": [ + 42452485, + 9561344710, + 9561420851, + 42427855 + ], + "geometry": [ + { "lat": 40.8612590, "lon": -73.9256680 }, + { "lat": 40.8613697, "lon": -73.9257382 }, + { "lat": 40.8631469, "lon": -73.9268653 }, + { "lat": 40.8632380, "lon": -73.9269230 } + ], + "tags": { + "alt_name": "West 199th Street", + "highway": "residential", + "name": "Thayer Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:alt_name_base": "W 199th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Thayer", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 5673363, + "bounds": { + "minlat": 40.8007750, + "minlon": -73.9583722, + "maxlat": 40.8008267, + "maxlon": -73.9580118 + }, + "nodes": [ + 42435736, + 6783696454, + 5706569350, + 1778676712, + 5706570103, + 825345572, + 1778676709, + 6783696419, + 595703253, + 825345573, + 1778676700, + 3247295579 + ], + "geometry": [ + { "lat": 40.8007934, "lon": -73.9580118 }, + { "lat": 40.8008049, "lon": -73.9580358 }, + { "lat": 40.8008147, "lon": -73.9580680 }, + { "lat": 40.8008230, "lon": -73.9581030 }, + { "lat": 40.8008267, "lon": -73.9581382 }, + { "lat": 40.8008267, "lon": -73.9581745 }, + { "lat": 40.8008247, "lon": -73.9582157 }, + { "lat": 40.8008156, "lon": -73.9582617 }, + { "lat": 40.8008063, "lon": -73.9582989 }, + { "lat": 40.8007954, "lon": -73.9583309 }, + { "lat": 40.8007804, "lon": -73.9583604 }, + { "lat": 40.8007750, "lon": -73.9583722 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "junction": "roundabout", + "lanes": "3", + "lit": "yes", + "name": "Frederick Douglass Circle", + "name:etymology:wikidata": "Q215562", + "oneway": "yes", + "surface": "concrete", + "turn:lanes": "none|none|right", + "wikidata": "Q5497668" + } +}, +{ + "type": "way", + "id": 5673367, + "bounds": { + "minlat": 40.7369776, + "minlon": -73.9750826, + "maxlat": 40.7371030, + "maxlon": -73.9749044 + }, + "nodes": [ + 7137281963, + 11040007345, + 7137281968, + 9141034864, + 9141034865, + 42426875 + ], + "geometry": [ + { "lat": 40.7371030, "lon": -73.9750826 }, + { "lat": 40.7370613, "lon": -73.9750105 }, + { "lat": 40.7370241, "lon": -73.9749465 }, + { "lat": 40.7370129, "lon": -73.9749295 }, + { "lat": 40.7369964, "lon": -73.9749137 }, + { "lat": 40.7369776, "lon": -73.9749044 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 25th Street", + "name:ru": "Восточная 25-я стрит", + "name_1": "East 25 Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 5673370, + "bounds": { + "minlat": 40.8350754, + "minlon": -73.9401964, + "maxlat": 40.8353595, + "maxlon": -73.9397842 + }, + "nodes": [ + 42433011, + 2603955385, + 2603955386, + 2513517571, + 2603955387, + 2603955388, + 2075600885, + 9935939402, + 9935939389, + 42442671 + ], + "geometry": [ + { "lat": 40.8350754, "lon": -73.9397872 }, + { "lat": 40.8351058, "lon": -73.9397842 }, + { "lat": 40.8351321, "lon": -73.9397889 }, + { "lat": 40.8351559, "lon": -73.9397979 }, + { "lat": 40.8351690, "lon": -73.9398080 }, + { "lat": 40.8351873, "lon": -73.9398276 }, + { "lat": 40.8352061, "lon": -73.9398597 }, + { "lat": 40.8352114, "lon": -73.9398713 }, + { "lat": 40.8353094, "lon": -73.9400863 }, + { "lat": 40.8353595, "lon": -73.9401964 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "name": "West 161st Street", + "name_1": "West 161 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "161st", + "tiger:name_base_1": "161", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5673372, + "bounds": { + "minlat": 40.7577646, + "minlon": -73.9601820, + "maxlat": 40.7580419, + "maxlon": -73.9594962 + }, + "nodes": [ + 42454660, + 4918486734, + 6795524013, + 6795524040, + 6795524070, + 6795524024, + 42448423 + ], + "geometry": [ + { "lat": 40.7580419, "lon": -73.9601820 }, + { "lat": 40.7579862, "lon": -73.9600540 }, + { "lat": 40.7577745, "lon": -73.9595569 }, + { "lat": 40.7577684, "lon": -73.9595421 }, + { "lat": 40.7577649, "lon": -73.9595257 }, + { "lat": 40.7577646, "lon": -73.9595112 }, + { "lat": 40.7577665, "lon": -73.9594962 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Sutton Square", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673373, + "bounds": { + "minlat": 40.7929332, + "minlon": -73.9516020, + "maxlat": 40.7936080, + "maxlon": -73.9500043 + }, + "nodes": [ + 42446132, + 6254630396, + 7779641273, + 42456708 + ], + "geometry": [ + { "lat": 40.7929332, "lon": -73.9500043 }, + { "lat": 40.7929816, "lon": -73.9501174 }, + { "lat": 40.7935647, "lon": -73.9514994 }, + { "lat": 40.7936080, "lon": -73.9516020 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 105th Street", + "name:ru": "Восточная 105-я стрит", + "name_1": "East 105 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673377, + "bounds": { + "minlat": 40.7880714, + "minlon": -73.9388346, + "maxlat": 40.7882355, + "maxlon": -73.9384419 + }, + "nodes": [ + 12057617348, + 7069881624 + ], + "geometry": [ + { "lat": 40.7880714, "lon": -73.9384419 }, + { "lat": 40.7882355, "lon": -73.9388346 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 105th Street", + "name:ru": "Восточная 105-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673380, + "bounds": { + "minlat": 40.7463935, + "minlon": -73.9817611, + "maxlat": 40.7470461, + "maxlon": -73.9812660 + }, + "nodes": [ + 3786901738, + 3786901740, + 12181374923, + 8119462502, + 3786901743 + ], + "geometry": [ + { "lat": 40.7463935, "lon": -73.9817611 }, + { "lat": 40.7464455, "lon": -73.9817173 }, + { "lat": 40.7469199, "lon": -73.9813703 }, + { "lat": 40.7469592, "lon": -73.9813387 }, + { "lat": 40.7470461, "lon": -73.9812660 } + ], + "tags": { + "alt_name": "4th Avenue", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 5673406, + "bounds": { + "minlat": 40.8102242, + "minlon": -73.9354432, + "maxlat": 40.8115152, + "maxlon": -73.9349267 + }, + "nodes": [ + 589928047, + 9166236566, + 9166236565, + 7616585480, + 7471359473, + 7616585484, + 7616589950, + 5175281855, + 9166236564, + 9166236563, + 5175281834, + 373850916 + ], + "geometry": [ + { "lat": 40.8115152, "lon": -73.9349267 }, + { "lat": 40.8113886, "lon": -73.9349664 }, + { "lat": 40.8112842, "lon": -73.9350057 }, + { "lat": 40.8111703, "lon": -73.9350375 }, + { "lat": 40.8108881, "lon": -73.9351109 }, + { "lat": 40.8106943, "lon": -73.9351615 }, + { "lat": 40.8106225, "lon": -73.9351845 }, + { "lat": 40.8105653, "lon": -73.9352108 }, + { "lat": 40.8105171, "lon": -73.9352399 }, + { "lat": 40.8104522, "lon": -73.9352867 }, + { "lat": 40.8103685, "lon": -73.9353499 }, + { "lat": 40.8102242, "lon": -73.9354432 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 5673414, + "bounds": { + "minlat": 40.8423037, + "minlon": -73.9423607, + "maxlat": 40.8453393, + "maxlon": -73.9351235 + }, + "nodes": [ + 42449804, + 7604384420, + 7604384363, + 42427150, + 7604384365, + 7604384258, + 42428989, + 7604384256, + 7604384217, + 42433044, + 7604384219, + 11758679656, + 42455245, + 11758679658, + 6836035759, + 13300390321, + 42442722 + ], + "geometry": [ + { "lat": 40.8453393, "lon": -73.9423607 }, + { "lat": 40.8452921, "lon": -73.9422376 }, + { "lat": 40.8447376, "lon": -73.9408997 }, + { "lat": 40.8446950, "lon": -73.9408022 }, + { "lat": 40.8446485, "lon": -73.9406890 }, + { "lat": 40.8440056, "lon": -73.9391608 }, + { "lat": 40.8439420, "lon": -73.9390250 }, + { "lat": 40.8438867, "lon": -73.9388941 }, + { "lat": 40.8435554, "lon": -73.9381107 }, + { "lat": 40.8435010, "lon": -73.9379820 }, + { "lat": 40.8434511, "lon": -73.9378636 }, + { "lat": 40.8429651, "lon": -73.9366933 }, + { "lat": 40.8429245, "lon": -73.9365954 }, + { "lat": 40.8428806, "lon": -73.9364915 }, + { "lat": 40.8423616, "lon": -73.9352622 }, + { "lat": 40.8423182, "lon": -73.9351581 }, + { "lat": 40.8423037, "lon": -73.9351235 } + ], + "tags": { + "highway": "residential", + "name": "West 172nd Street", + "name_1": "West 172 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "172nd", + "tiger:name_base_1": "172", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5673416, + "bounds": { + "minlat": 40.7915669, + "minlon": -73.9464058, + "maxlat": 40.7948263, + "maxlon": -73.9386452 + }, + "nodes": [ + 42456107, + 6216349372, + 7777426431, + 7669057712, + 6918710130, + 6175905211, + 42443072, + 6918710128, + 6918710125, + 6918710133, + 6918710122, + 42450061, + 7777321739, + 7811793761, + 42447187, + 7811793751, + 7781090357, + 42459180, + 9178807973 + ], + "geometry": [ + { "lat": 40.7915669, "lon": -73.9386452 }, + { "lat": 40.7916100, "lon": -73.9387529 }, + { "lat": 40.7916235, "lon": -73.9387863 }, + { "lat": 40.7917923, "lon": -73.9392015 }, + { "lat": 40.7925121, "lon": -73.9408984 }, + { "lat": 40.7925269, "lon": -73.9409416 }, + { "lat": 40.7925561, "lon": -73.9410289 }, + { "lat": 40.7926034, "lon": -73.9411711 }, + { "lat": 40.7928110, "lon": -73.9416731 }, + { "lat": 40.7931944, "lon": -73.9425822 }, + { "lat": 40.7934361, "lon": -73.9431399 }, + { "lat": 40.7934995, "lon": -73.9432689 }, + { "lat": 40.7935665, "lon": -73.9433984 }, + { "lat": 40.7941455, "lon": -73.9447807 }, + { "lat": 40.7941830, "lon": -73.9448716 }, + { "lat": 40.7942213, "lon": -73.9449617 }, + { "lat": 40.7947792, "lon": -73.9462938 }, + { "lat": 40.7948058, "lon": -73.9463574 }, + { "lat": 40.7948263, "lon": -73.9464058 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "East 109th Street", + "name:ru": "Восточная 109-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673419, + "bounds": { + "minlat": 40.8121030, + "minlon": -73.9509270, + "maxlat": 40.8125750, + "maxlon": -73.9497570 + }, + "nodes": [ + 42432933, + 10171865565, + 3402046073, + 10705287272, + 42435814 + ], + "geometry": [ + { "lat": 40.8125750, "lon": -73.9509270 }, + { "lat": 40.8125298, "lon": -73.9508151 }, + { "lat": 40.8122656, "lon": -73.9501601 }, + { "lat": 40.8121563, "lon": -73.9498892 }, + { "lat": 40.8121030, "lon": -73.9497570 } + ], + "tags": { + "highway": "residential", + "name": "West 128th Street", + "name_1": "West 128 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5673424, + "bounds": { + "minlat": 40.7134688, + "minlon": -73.9972984, + "maxlat": 40.7136682, + "maxlon": -73.9949113 + }, + "nodes": [ + 42433537, + 11153640070, + 8279851181, + 12336567962 + ], + "geometry": [ + { "lat": 40.7134688, "lon": -73.9972984 }, + { "lat": 40.7134734, "lon": -73.9972428 }, + { "lat": 40.7135640, "lon": -73.9961467 }, + { "lat": 40.7136682, "lon": -73.9949113 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673427, + "bounds": { + "minlat": 40.7161801, + "minlon": -73.9817219, + "maxlat": 40.7167180, + "maxlon": -73.9814380 + }, + "nodes": [ + 42435541, + 5173594704, + 5173594705, + 42429811 + ], + "geometry": [ + { "lat": 40.7161801, "lon": -73.9817219 }, + { "lat": 40.7166098, "lon": -73.9814951 }, + { "lat": 40.7166320, "lon": -73.9814834 }, + { "lat": 40.7167180, "lon": -73.9814380 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "Sheriff Street", + "name:ko": "셰리프 스트리트", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sheriff", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10002", + "tiger:zip_right": "10002" + } +}, +{ + "type": "way", + "id": 5673430, + "bounds": { + "minlat": 40.8058244, + "minlon": -73.9443406, + "maxlat": 40.8064044, + "maxlon": -73.9429725 + }, + "nodes": [ + 4207764478, + 3023173650, + 3023173727, + 9177554437, + 10170875106, + 42442128 + ], + "geometry": [ + { "lat": 40.8058244, "lon": -73.9429725 }, + { "lat": 40.8059028, "lon": -73.9431666 }, + { "lat": 40.8061639, "lon": -73.9437804 }, + { "lat": 40.8063494, "lon": -73.9442156 }, + { "lat": 40.8063808, "lon": -73.9442870 }, + { "lat": 40.8064044, "lon": -73.9443406 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "2", + "name": "West 124th Street", + "oneway": "yes", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 5673441, + "bounds": { + "minlat": 40.7179347, + "minlon": -74.0104033, + "maxlat": 40.7181048, + "maxlon": -74.0089396 + }, + "nodes": [ + 11464657938, + 8304498478, + 42437461, + 8304498521, + 42436326 + ], + "geometry": [ + { "lat": 40.7181048, "lon": -74.0104033 }, + { "lat": 40.7181014, "lon": -74.0103765 }, + { "lat": 40.7179989, "lon": -74.0094928 }, + { "lat": 40.7179488, "lon": -74.0090618 }, + { "lat": 40.7179347, "lon": -74.0089396 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "name:ko": "제이 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5673443, + "bounds": { + "minlat": 40.8455443, + "minlon": -73.9368570, + "maxlat": 40.8472490, + "maxlon": -73.9327756 + }, + "nodes": [ + 42442728, + 8723021851, + 8723021822, + 42455252, + 13300285117, + 8723021825, + 8723021818, + 5403873776, + 42433060, + 5403873775, + 9550791727, + 42449631 + ], + "geometry": [ + { "lat": 40.8455443, "lon": -73.9327756 }, + { "lat": 40.8455949, "lon": -73.9328993 }, + { "lat": 40.8461052, "lon": -73.9341444 }, + { "lat": 40.8461410, "lon": -73.9342320 }, + { "lat": 40.8461542, "lon": -73.9342636 }, + { "lat": 40.8461854, "lon": -73.9343384 }, + { "lat": 40.8463685, "lon": -73.9347716 }, + { "lat": 40.8466792, "lon": -73.9355082 }, + { "lat": 40.8467270, "lon": -73.9356220 }, + { "lat": 40.8467806, "lon": -73.9357488 }, + { "lat": 40.8472145, "lon": -73.9367753 }, + { "lat": 40.8472490, "lon": -73.9368570 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "West 177th Street", + "name_1": "West 177 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "177th", + "tiger:name_base_1": "177", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5673446, + "bounds": { + "minlat": 40.8475489, + "minlon": -73.9395229, + "maxlat": 40.8478420, + "maxlon": -73.9380371 + }, + "nodes": [ + 42429011, + 9550791719, + 9566938942, + 42427168 + ], + "geometry": [ + { "lat": 40.8475489, "lon": -73.9380371 }, + { "lat": 40.8475771, "lon": -73.9381837 }, + { "lat": 40.8478182, "lon": -73.9394188 }, + { "lat": 40.8478420, "lon": -73.9395229 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 177th Street", + "name_1": "West 177 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "177th", + "tiger:name_base_1": "177", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 5673452, + "bounds": { + "minlat": 40.7369518, + "minlon": -74.0058568, + "maxlat": 40.7372197, + "maxlon": -74.0057682 + }, + "nodes": [ + 42436414, + 4685465960, + 247403144, + 247403145, + 1825740002, + 247402950 + ], + "geometry": [ + { "lat": 40.7372197, "lon": -74.0057682 }, + { "lat": 40.7371185, "lon": -74.0058153 }, + { "lat": 40.7370005, "lon": -74.0058405 }, + { "lat": 40.7369751, "lon": -74.0058445 }, + { "lat": 40.7369612, "lon": -74.0058481 }, + { "lat": 40.7369518, "lon": -74.0058568 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673456, + "bounds": { + "minlat": 40.7726108, + "minlon": -73.9544790, + "maxlat": 40.7731065, + "maxlon": -73.9533096 + }, + "nodes": [ + 9906826311, + 9906826312 + ], + "geometry": [ + { "lat": 40.7731065, "lon": -73.9544790 }, + { "lat": 40.7726108, "lon": -73.9533096 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673461, + "bounds": { + "minlat": 40.7634317, + "minlon": -73.9669173, + "maxlat": 40.7641545, + "maxlon": -73.9652142 + }, + "nodes": [ + 10125147531, + 42447030, + 10125147532, + 10166509668, + 42449982 + ], + "geometry": [ + { "lat": 40.7641545, "lon": -73.9669173 }, + { "lat": 40.7641121, "lon": -73.9668167 }, + { "lat": 40.7640701, "lon": -73.9667177 }, + { "lat": 40.7634926, "lon": -73.9653577 }, + { "lat": 40.7634317, "lon": -73.9652142 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lit": "yes", + "name": "East 62nd Street", + "name:ru": "Восточная 62-я стрит", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673465, + "bounds": { + "minlat": 40.7972412, + "minlon": -73.9725352, + "maxlat": 40.7991459, + "maxlon": -73.9680189 + }, + "nodes": [ + 42442555, + 6207264940, + 10166004057, + 7004447596, + 1061531631, + 42428728, + 10171397833, + 9916138290, + 42431108, + 6912871489, + 8831843003, + 6887003321, + 42441895 + ], + "geometry": [ + { "lat": 40.7972412, "lon": -73.9680189 }, + { "lat": 40.7972893, "lon": -73.9681274 }, + { "lat": 40.7973047, "lon": -73.9681641 }, + { "lat": 40.7977713, "lon": -73.9692744 }, + { "lat": 40.7978046, "lon": -73.9693528 }, + { "lat": 40.7978923, "lon": -73.9695597 }, + { "lat": 40.7979326, "lon": -73.9696547 }, + { "lat": 40.7984022, "lon": -73.9707620 }, + { "lat": 40.7984503, "lon": -73.9708850 }, + { "lat": 40.7984980, "lon": -73.9710001 }, + { "lat": 40.7991064, "lon": -73.9724415 }, + { "lat": 40.7991238, "lon": -73.9724828 }, + { "lat": 40.7991459, "lon": -73.9725352 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 101st Street", + "name:ru": "Западная 101-я стрит", + "name_1": "West 101 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5673469, + "bounds": { + "minlat": 40.7948590, + "minlon": -73.9638068, + "maxlat": 40.7954638, + "maxlon": -73.9623766 + }, + "nodes": [ + 42435331, + 7083341686, + 7083341688, + 42447275 + ], + "geometry": [ + { "lat": 40.7948590, "lon": -73.9623766 }, + { "lat": 40.7949066, "lon": -73.9624892 }, + { "lat": 40.7954248, "lon": -73.9637148 }, + { "lat": 40.7954638, "lon": -73.9638068 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 101st Street", + "name:ru": "Западная 101-я стрит", + "name_1": "West 101 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5673487, + "bounds": { + "minlat": 40.8147435, + "minlon": -73.9356853, + "maxlat": 40.8152059, + "maxlon": -73.9345542 + }, + "nodes": [ + 9557110368, + 9557110410, + 42425423 + ], + "geometry": [ + { "lat": 40.8152059, "lon": -73.9356853 }, + { "lat": 40.8147739, "lon": -73.9346259 }, + { "lat": 40.8147435, "lon": -73.9345542 } + ], + "tags": { + "highway": "pedestrian", + "name_1": "E 139 St" + } +}, +{ + "type": "way", + "id": 5673492, + "bounds": { + "minlat": 40.7643299, + "minlon": -73.9989060, + "maxlat": 40.7644930, + "maxlon": -73.9987098 + }, + "nodes": [ + 247120624, + 12152950929, + 2280259153, + 2280259151, + 12152950932, + 12152950927, + 247119974, + 12152950933, + 9143503683, + 42453555 + ], + "geometry": [ + { "lat": 40.7644930, "lon": -73.9988992 }, + { "lat": 40.7644744, "lon": -73.9989060 }, + { "lat": 40.7644554, "lon": -73.9989057 }, + { "lat": 40.7644409, "lon": -73.9989004 }, + { "lat": 40.7644292, "lon": -73.9988913 }, + { "lat": 40.7644180, "lon": -73.9988822 }, + { "lat": 40.7644042, "lon": -73.9988678 }, + { "lat": 40.7643913, "lon": -73.9988496 }, + { "lat": 40.7643779, "lon": -73.9988260 }, + { "lat": 40.7643299, "lon": -73.9987098 } + ], + "tags": { + "highway": "service", + "name_1": "W 46 St", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5673497, + "bounds": { + "minlat": 40.7578582, + "minlon": -73.9772064, + "maxlat": 40.7585437, + "maxlon": -73.9755930 + }, + "nodes": [ + 42440153, + 3977886224, + 4782442665, + 3977886220, + 42445928 + ], + "geometry": [ + { "lat": 40.7585437, "lon": -73.9772064 }, + { "lat": 40.7584906, "lon": -73.9770798 }, + { "lat": 40.7584207, "lon": -73.9769092 }, + { "lat": 40.7579073, "lon": -73.9757013 }, + { "lat": 40.7578582, "lon": -73.9755930 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 50th Street", + "name:ru": "Восточная 50-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673505, + "bounds": { + "minlat": 40.8013420, + "minlon": -73.9491230, + "maxlat": 40.8026735, + "maxlon": -73.9459680 + }, + "nodes": [ + 42449828, + 10167137543, + 5481977590, + 5481977589, + 7474577917, + 3817980397, + 7004411490, + 42453220 + ], + "geometry": [ + { "lat": 40.8013420, "lon": -73.9459680 }, + { "lat": 40.8013962, "lon": -73.9460972 }, + { "lat": 40.8016758, "lon": -73.9467631 }, + { "lat": 40.8017059, "lon": -73.9468339 }, + { "lat": 40.8017219, "lon": -73.9468719 }, + { "lat": 40.8020253, "lon": -73.9475911 }, + { "lat": 40.8026323, "lon": -73.9490252 }, + { "lat": 40.8026735, "lon": -73.9491230 } + ], + "tags": { + "highway": "residential", + "name": "West 117th Street", + "name:ru": "Западная 117-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5673508, + "bounds": { + "minlat": 40.7949459, + "minlon": -73.9757989, + "maxlat": 40.7954481, + "maxlon": -73.9745870 + }, + "nodes": [ + 2029349871, + 3917296979, + 10063034020, + 7132609426 + ], + "geometry": [ + { "lat": 40.7954481, "lon": -73.9757989 }, + { "lat": 40.7954267, "lon": -73.9757330 }, + { "lat": 40.7952104, "lon": -73.9752150 }, + { "lat": 40.7949459, "lon": -73.9745870 } + ], + "tags": { + "alt_name": "West 95 Street", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "2", + "name": "West 95th Street", + "name:ru": "Западная 95-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4646040", + "wikipedia": "en:95th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673511, + "bounds": { + "minlat": 40.7496684, + "minlon": -73.9699431, + "maxlat": 40.7497536, + "maxlon": -73.9697413 + }, + "nodes": [ + 42459636, + 42445804 + ], + "geometry": [ + { "lat": 40.7496684, "lon": -73.9697413 }, + { "lat": 40.7497536, "lon": -73.9699431 } + ], + "tags": { + "alt_name": "Abt Fulton J. Jean Place / UN Way", + "highway": "residential", + "lane_markings": "no", + "name": "East 43rd Street", + "name:ru": "Восточная 43-я стрит", + "sidewalk": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "32'0\"" + } +}, +{ + "type": "way", + "id": 5673515, + "bounds": { + "minlat": 40.7534863, + "minlon": -73.9803921, + "maxlat": 40.7541655, + "maxlon": -73.9787764 + }, + "nodes": [ + 42445917, + 3944708030, + 3942050703, + 42454428 + ], + "geometry": [ + { "lat": 40.7534863, "lon": -73.9787764 }, + { "lat": 40.7535325, "lon": -73.9788914 }, + { "lat": 40.7541158, "lon": -73.9802737 }, + { "lat": 40.7541655, "lon": -73.9803921 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 43rd Street", + "name:ru": "Восточная 43-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673523, + "bounds": { + "minlat": 40.7344252, + "minlon": -73.9826949, + "maxlat": 40.7354311, + "maxlon": -73.9803078 + }, + "nodes": [ + 42455887, + 4298760164, + 13205862053, + 10165972520, + 4376122116, + 13205862052 + ], + "geometry": [ + { "lat": 40.7344252, "lon": -73.9803078 }, + { "lat": 40.7344920, "lon": -73.9804664 }, + { "lat": 40.7353551, "lon": -73.9825146 }, + { "lat": 40.7353799, "lon": -73.9825734 }, + { "lat": 40.7353955, "lon": -73.9826104 }, + { "lat": 40.7354311, "lon": -73.9826949 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 19th Street", + "name:ru": "Восточная 19-я стрит", + "name_1": "East 19 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673526, + "bounds": { + "minlat": 40.7131445, + "minlon": -74.0025620, + "maxlat": 40.7135180, + "maxlon": -74.0012870 + }, + "nodes": [ + 42455588, + 9390090972, + 42459682, + 11398317013, + 9390090739, + 42444305 + ], + "geometry": [ + { "lat": 40.7131445, "lon": -74.0025620 }, + { "lat": 40.7131471, "lon": -74.0025525 }, + { "lat": 40.7134148, "lon": -74.0015505 }, + { "lat": 40.7134371, "lon": -74.0014760 }, + { "lat": 40.7134629, "lon": -74.0014086 }, + { "lat": 40.7135180, "lon": -74.0012870 } + ], + "tags": { + "access": "private", + "bicycle": "dismount", + "foot": "yes", + "highway": "residential", + "level": "0", + "maxspeed": "25 mph", + "name": "Cardinal Hayes Place", + "name:etymology:wikidata": "Q729228", + "name:ko": "카디날 헤이스 플레이스" + } +}, +{ + "type": "way", + "id": 5673530, + "bounds": { + "minlat": 40.7113948, + "minlon": -74.0101209, + "maxlat": 40.7120585, + "maxlon": -74.0086548 + }, + "nodes": [ + 8840333851, + 10288802629, + 10288802628, + 10288802627, + 8262936510, + 8095882130, + 4741363708, + 10290135940, + 10290135942, + 10290135941, + 42428391 + ], + "geometry": [ + { "lat": 40.7120585, "lon": -74.0101209 }, + { "lat": 40.7120583, "lon": -74.0100970 }, + { "lat": 40.7120555, "lon": -74.0100747 }, + { "lat": 40.7120508, "lon": -74.0100532 }, + { "lat": 40.7120464, "lon": -74.0100396 }, + { "lat": 40.7118100, "lon": -74.0095172 }, + { "lat": 40.7114565, "lon": -74.0087432 }, + { "lat": 40.7114440, "lon": -74.0087200 }, + { "lat": 40.7114288, "lon": -74.0086932 }, + { "lat": 40.7114105, "lon": -74.0086719 }, + { "lat": 40.7113948, "lon": -74.0086548 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Vesey Street", + "name:etymology:wikidata": "Q8019717", + "name:etymology:wikipedia": "en:William Vessey", + "name:ko": "비지 스트리트", + "name:ru": "Визи-стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592975", + "wikipedia": "en:Vesey Street" + } +}, +{ + "type": "way", + "id": 5673532, + "bounds": { + "minlat": 40.7151170, + "minlon": -74.0166445, + "maxlat": 40.7154302, + "maxlon": -74.0159482 + }, + "nodes": [ + 1702442163, + 8304878677, + 10612369360, + 42446849 + ], + "geometry": [ + { "lat": 40.7154302, "lon": -74.0166445 }, + { "lat": 40.7152019, "lon": -74.0161348 }, + { "lat": 40.7151804, "lon": -74.0160848 }, + { "lat": 40.7151170, "lon": -74.0159482 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Vesey Place", + "name:etymology:wikidata": "Q8019717", + "name:ko": "비지 플레이스", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673533, + "bounds": { + "minlat": 40.7305763, + "minlon": -73.9906308, + "maxlat": 40.7306356, + "maxlon": -73.9904913 + }, + "nodes": [ + 42445558, + 42445548 + ], + "geometry": [ + { "lat": 40.7305763, "lon": -73.9904913 }, + { "lat": 40.7306356, "lon": -73.9906308 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Wanamaker Place", + "name:etymology:wikidata": "Q921045", + "name_1": "East 9 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673538, + "bounds": { + "minlat": 40.8378500, + "minlon": -73.9379120, + "maxlat": 40.8384866, + "maxlon": -73.9363830 + }, + "nodes": [ + 42442702, + 8725182268, + 5748721458, + 2075592664, + 8725182260, + 42439730 + ], + "geometry": [ + { "lat": 40.8384866, "lon": -73.9379120 }, + { "lat": 40.8384406, "lon": -73.9378024 }, + { "lat": 40.8380970, "lon": -73.9369764 }, + { "lat": 40.8379100, "lon": -73.9365379 }, + { "lat": 40.8378904, "lon": -73.9364868 }, + { "lat": 40.8378500, "lon": -73.9363830 } + ], + "tags": { + "highway": "residential", + "name": "West 166th Street", + "name_1": "West 166 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "166th", + "tiger:name_base_1": "166", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5673540, + "bounds": { + "minlat": 40.8386821, + "minlon": -73.9392390, + "maxlat": 40.8392960, + "maxlon": -73.9377692 + }, + "nodes": [ + 42455234, + 9566997292, + 7517627713, + 9566997282, + 42442703 + ], + "geometry": [ + { "lat": 40.8392960, "lon": -73.9392390 }, + { "lat": 40.8392564, "lon": -73.9391446 }, + { "lat": 40.8388975, "lon": -73.9382849 }, + { "lat": 40.8387433, "lon": -73.9379157 }, + { "lat": 40.8386821, "lon": -73.9377692 } + ], + "tags": { + "highway": "residential", + "name": "West 166th Street", + "name_1": "West 166 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "166th", + "tiger:name_base_1": "166", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 5673547, + "bounds": { + "minlat": 40.8655852, + "minlon": -73.9185960, + "maxlat": 40.8663150, + "maxlon": -73.9181211 + }, + "nodes": [ + 42455705, + 9561229765, + 1764731575, + 9561229760, + 42427873 + ], + "geometry": [ + { "lat": 40.8655852, "lon": -73.9181211 }, + { "lat": 40.8657071, "lon": -73.9182025 }, + { "lat": 40.8657555, "lon": -73.9182430 }, + { "lat": 40.8662255, "lon": -73.9185381 }, + { "lat": 40.8663150, "lon": -73.9185960 } + ], + "tags": { + "highway": "tertiary", + "name": "Isham Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Isham", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 5673561, + "bounds": { + "minlat": 40.7516588, + "minlon": -73.9925170, + "maxlat": 40.7526646, + "maxlon": -73.9901341 + }, + "nodes": [ + 42439952, + 9945692442, + 6223524384, + 6223524382, + 9665062199 + ], + "geometry": [ + { "lat": 40.7516588, "lon": -73.9901341 }, + { "lat": 40.7517149, "lon": -73.9902670 }, + { "lat": 40.7519433, "lon": -73.9908081 }, + { "lat": 40.7520100, "lon": -73.9909662 }, + { "lat": 40.7526646, "lon": -73.9925170 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 35th Street", + "name:ru": "Западная 35-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673581, + "bounds": { + "minlat": 40.7082290, + "minlon": -74.0065343, + "maxlat": 40.7090956, + "maxlon": -74.0054945 + }, + "nodes": [ + 42440280, + 8262309740, + 42456583, + 11369961810, + 8281922117, + 42440345 + ], + "geometry": [ + { "lat": 40.7090956, "lon": -74.0054945 }, + { "lat": 40.7090458, "lon": -74.0055714 }, + { "lat": 40.7086680, "lon": -74.0060120 }, + { "lat": 40.7083069, "lon": -74.0064483 }, + { "lat": 40.7082699, "lon": -74.0064913 }, + { "lat": 40.7082290, "lon": -74.0065343 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Gold Street", + "name:ko": "골드 스트리트", + "name:ru": "Голд-стрит", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673591, + "bounds": { + "minlat": 40.7105895, + "minlon": -74.0037754, + "maxlat": 40.7108044, + "maxlon": -74.0034015 + }, + "nodes": [ + 42459820, + 10277180448, + 10277180444, + 11347777665, + 4680481154, + 42448483 + ], + "geometry": [ + { "lat": 40.7105895, "lon": -74.0037754 }, + { "lat": 40.7106254, "lon": -74.0036532 }, + { "lat": 40.7106872, "lon": -74.0035744 }, + { "lat": 40.7107346, "lon": -74.0035057 }, + { "lat": 40.7107616, "lon": -74.0034666 }, + { "lat": 40.7108044, "lon": -74.0034015 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Gold Street", + "name:ko": "골드 스트리트", + "name:ru": "Голд-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673594, + "bounds": { + "minlat": 40.7049418, + "minlon": -74.0156386, + "maxlat": 40.7064654, + "maxlon": -74.0150990 + }, + "nodes": [ + 42452994, + 7706746266, + 7706746267, + 4145416873, + 10316226217, + 4145416875, + 42422816, + 4145416878, + 4145416872, + 4145416880, + 588546882 + ], + "geometry": [ + { "lat": 40.7064654, "lon": -74.0151189 }, + { "lat": 40.7064524, "lon": -74.0151075 }, + { "lat": 40.7064339, "lon": -74.0151004 }, + { "lat": 40.7064133, "lon": -74.0150990 }, + { "lat": 40.7063961, "lon": -74.0151022 }, + { "lat": 40.7063838, "lon": -74.0151044 }, + { "lat": 40.7062721, "lon": -74.0151479 }, + { "lat": 40.7050399, "lon": -74.0156179 }, + { "lat": 40.7050059, "lon": -74.0156270 }, + { "lat": 40.7049744, "lon": -74.0156333 }, + { "lat": 40.7049418, "lon": -74.0156386 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name_1": "West U I Plaza", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Washington", + "tiger:name_base_1": "U I", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "Plz", + "tiger:zip_left": "10004", + "tiger:zip_left_1": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673605, + "bounds": { + "minlat": 40.7403058, + "minlon": -74.0079432, + "maxlat": 40.7416433, + "maxlon": -74.0069905 + }, + "nodes": [ + 42454325, + 8262308740, + 12162436948, + 12162436946, + 8262308722, + 42429412, + 8262308723, + 12162436945, + 12162436938, + 12162436937, + 12162436942, + 8262308728, + 12162436941, + 42431154 + ], + "geometry": [ + { "lat": 40.7416433, "lon": -74.0069905 }, + { "lat": 40.7415493, "lon": -74.0070588 }, + { "lat": 40.7415020, "lon": -74.0070930 }, + { "lat": 40.7410376, "lon": -74.0074286 }, + { "lat": 40.7410042, "lon": -74.0074529 }, + { "lat": 40.7409542, "lon": -74.0074898 }, + { "lat": 40.7408905, "lon": -74.0075350 }, + { "lat": 40.7408563, "lon": -74.0075600 }, + { "lat": 40.7404497, "lon": -74.0078569 }, + { "lat": 40.7404143, "lon": -74.0078805 }, + { "lat": 40.7403916, "lon": -74.0078951 }, + { "lat": 40.7403659, "lon": -74.0079094 }, + { "lat": 40.7403350, "lon": -74.0079271 }, + { "lat": 40.7403058, "lon": -74.0079432 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673613, + "bounds": { + "minlat": 40.7340120, + "minlon": -73.9847730, + "maxlat": 40.7345982, + "maxlon": -73.9843469 + }, + "nodes": [ + 42455465, + 9507816956, + 9558758491, + 4191922377, + 42446879 + ], + "geometry": [ + { "lat": 40.7340120, "lon": -73.9847730 }, + { "lat": 40.7340405, "lon": -73.9847532 }, + { "lat": 40.7345033, "lon": -73.9844162 }, + { "lat": 40.7345444, "lon": -73.9843862 }, + { "lat": 40.7345982, "lon": -73.9843469 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 07:30-15:30)", + "name": "Rutherford Place", + "oneway": "yes", + "sidewalk": "left", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5673614, + "bounds": { + "minlat": 40.7295314, + "minlon": -73.9965723, + "maxlat": 40.7295644, + "maxlon": -73.9965070 + }, + "nodes": [ + 42433587, + 3584752195 + ], + "geometry": [ + { "lat": 40.7295644, "lon": -73.9965723 }, + { "lat": 40.7295314, "lon": -73.9965070 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "West 4th Street", + "name:ru": "Западная 4-я стрит", + "name_1": "West 4 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673619, + "bounds": { + "minlat": 40.7310432, + "minlon": -74.0009540, + "maxlat": 40.7317060, + "maxlon": -73.9996039 + }, + "nodes": [ + 42430231, + 4320108387, + 4320108382, + 4302910555, + 1692433941 + ], + "geometry": [ + { "lat": 40.7317060, "lon": -74.0009540 }, + { "lat": 40.7316490, "lon": -74.0008377 }, + { "lat": 40.7315541, "lon": -74.0006446 }, + { "lat": 40.7310757, "lon": -73.9996702 }, + { "lat": 40.7310432, "lon": -73.9996039 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 4th Street", + "name:ru": "Западная 4-я стрит", + "name_1": "West 4 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673622, + "bounds": { + "minlat": 40.7387561, + "minlon": -74.0038604, + "maxlat": 40.7393719, + "maxlon": -74.0037552 + }, + "nodes": [ + 42431500, + 8307463674, + 11728146528, + 8789178530, + 8307463609, + 11728146529, + 42429390 + ], + "geometry": [ + { "lat": 40.7387561, "lon": -74.0038600 }, + { "lat": 40.7388129, "lon": -74.0038604 }, + { "lat": 40.7392310, "lon": -74.0038580 }, + { "lat": 40.7392784, "lon": -74.0038527 }, + { "lat": 40.7393154, "lon": -74.0038351 }, + { "lat": 40.7393470, "lon": -74.0037996 }, + { "lat": 40.7393719, "lon": -74.0037552 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 4th Street", + "name:ru": "Западная 4-я стрит", + "name_1": "West 4 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5673626, + "bounds": { + "minlat": 40.7485092, + "minlon": -73.9749721, + "maxlat": 40.7491239, + "maxlon": -73.9745202 + }, + "nodes": [ + 42445664, + 9987259767, + 12187390444, + 9987259768, + 11337295598 + ], + "geometry": [ + { "lat": 40.7485092, "lon": -73.9749721 }, + { "lat": 40.7485636, "lon": -73.9749321 }, + { "lat": 40.7490368, "lon": -73.9745842 }, + { "lat": 40.7490669, "lon": -73.9745621 }, + { "lat": 40.7491239, "lon": -73.9745202 } + ], + "tags": { + "highway": "unclassified", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Tunnel Exit Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through;right" + } +}, +{ + "type": "way", + "id": 5673628, + "bounds": { + "minlat": 40.7090292, + "minlon": -74.0129792, + "maxlat": 40.7093852, + "maxlon": -74.0121098 + }, + "nodes": [ + 42436192, + 10299850215, + 10299850214, + 10299850213, + 8262936664, + 8262936656, + 11415663349, + 10299850204, + 10299850205, + 42456888 + ], + "geometry": [ + { "lat": 40.7093852, "lon": -74.0129792 }, + { "lat": 40.7093650, "lon": -74.0129711 }, + { "lat": 40.7093480, "lon": -74.0129587 }, + { "lat": 40.7093327, "lon": -74.0129362 }, + { "lat": 40.7093221, "lon": -74.0129105 }, + { "lat": 40.7090418, "lon": -74.0122496 }, + { "lat": 40.7090346, "lon": -74.0122272 }, + { "lat": 40.7090303, "lon": -74.0122048 }, + { "lat": 40.7090292, "lon": -74.0121631 }, + { "lat": 40.7090349, "lon": -74.0121098 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Thames Street", + "name:ko": "템즈 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5674467, + "bounds": { + "minlat": 40.7138277, + "minlon": -73.9373419, + "maxlat": 40.7145370, + "maxlon": -73.9372940 + }, + "nodes": [ + 42464419, + 5838943011, + 9947391764, + 42464415 + ], + "geometry": [ + { "lat": 40.7145370, "lon": -73.9372940 }, + { "lat": 40.7144696, "lon": -73.9372986 }, + { "lat": 40.7138853, "lon": -73.9373380 }, + { "lat": 40.7138277, "lon": -73.9373419 } + ], + "tags": { + "highway": "residential", + "name": "Catherine Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Catherine", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5674851, + "bounds": { + "minlat": 40.7213791, + "minlon": -73.9479498, + "maxlat": 40.7214740, + "maxlon": -73.9469800 + }, + "nodes": [ + 42466378, + 9935605456, + 5482193503, + 9731450868, + 9789356729, + 42466383 + ], + "geometry": [ + { "lat": 40.7213791, "lon": -73.9479498 }, + { "lat": 40.7213864, "lon": -73.9478754 }, + { "lat": 40.7214117, "lon": -73.9476163 }, + { "lat": 40.7214588, "lon": -73.9471353 }, + { "lat": 40.7214633, "lon": -73.9470886 }, + { "lat": 40.7214740, "lon": -73.9469800 } + ], + "tags": { + "highway": "residential", + "name": "Engert Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5674905, + "bounds": { + "minlat": 40.7042354, + "minlon": -73.9387863, + "maxlat": 40.7043580, + "maxlon": -73.9383428 + }, + "nodes": [ + 6907298767, + 9704064505, + 9704064489, + 42466688 + ], + "geometry": [ + { "lat": 40.7042354, "lon": -73.9387863 }, + { "lat": 40.7042885, "lon": -73.9386805 }, + { "lat": 40.7043038, "lon": -73.9386452 }, + { "lat": 40.7043580, "lon": -73.9383428 } + ], + "tags": { + "access": "private", + "bicycle": "private", + "foot": "private", + "highway": "service", + "horse": "private", + "motor_vehicle": "private", + "name": "Bushwick Court", + "surface": "A" + } +}, +{ + "type": "way", + "id": 5675082, + "bounds": { + "minlat": 40.7005481, + "minlon": -73.9444084, + "maxlat": 40.7013755, + "maxlon": -73.9431403 + }, + "nodes": [ + 5673259241, + 11229826630, + 9752126440, + 42467503 + ], + "geometry": [ + { "lat": 40.7013755, "lon": -73.9431403 }, + { "lat": 40.7006123, "lon": -73.9443101 }, + { "lat": 40.7005987, "lon": -73.9443311 }, + { "lat": 40.7005481, "lon": -73.9444084 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Thornton Street", + "name:etymology:wikidata": "Q1368351", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Thornton", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5675097, + "bounds": { + "minlat": 40.7105267, + "minlon": -73.9609408, + "maxlat": 40.7110488, + "maxlon": -73.9605909 + }, + "nodes": [ + 42467554, + 9967920684, + 8842464595, + 6338024012, + 9351722079, + 6338024013, + 42467551 + ], + "geometry": [ + { "lat": 40.7105267, "lon": -73.9609408 }, + { "lat": 40.7105309, "lon": -73.9609310 }, + { "lat": 40.7105370, "lon": -73.9609222 }, + { "lat": 40.7105455, "lon": -73.9609131 }, + { "lat": 40.7109419, "lon": -73.9606595 }, + { "lat": 40.7109789, "lon": -73.9606353 }, + { "lat": 40.7110488, "lon": -73.9605909 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "separate", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "South 5th Place", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5675169, + "bounds": { + "minlat": 40.7227270, + "minlon": -73.9475828, + "maxlat": 40.7233163, + "maxlon": -73.9474740 + }, + "nodes": [ + 2987758888, + 2987758889, + 2987758890, + 1865205548, + 2987758891, + 6228788707, + 42467934 + ], + "geometry": [ + { "lat": 40.7233163, "lon": -73.9475020 }, + { "lat": 40.7232668, "lon": -73.9475828 }, + { "lat": 40.7231956, "lon": -73.9475787 }, + { "lat": 40.7230391, "lon": -73.9475734 }, + { "lat": 40.7228439, "lon": -73.9475278 }, + { "lat": 40.7227995, "lon": -73.9475097 }, + { "lat": 40.7227270, "lon": -73.9474740 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 5675200, + "bounds": { + "minlat": 40.7187820, + "minlon": -73.9451080, + "maxlat": 40.7188740, + "maxlon": -73.9450840 + }, + "nodes": [ + 42467896, + 42467904 + ], + "geometry": [ + { "lat": 40.7187820, "lon": -73.9450840 }, + { "lat": 40.7188740, "lon": -73.9451080 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 5675326, + "bounds": { + "minlat": 40.7109519, + "minlon": -73.9691292, + "maxlat": 40.7121188, + "maxlon": -73.9680168 + }, + "nodes": [ + 5496591127, + 5496591128, + 5849190226, + 5849190227, + 42468728, + 9374905468, + 9990599422, + 42468731 + ], + "geometry": [ + { "lat": 40.7109519, "lon": -73.9687570 }, + { "lat": 40.7110615, "lon": -73.9691292 }, + { "lat": 40.7115404, "lon": -73.9689264 }, + { "lat": 40.7116364, "lon": -73.9688332 }, + { "lat": 40.7121188, "lon": -73.9686197 }, + { "lat": 40.7119613, "lon": -73.9681469 }, + { "lat": 40.7119560, "lon": -73.9681315 }, + { "lat": 40.7119171, "lon": -73.9680168 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "6th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5675409, + "bounds": { + "minlat": 40.7056282, + "minlon": -73.9657230, + "maxlat": 40.7061949, + "maxlon": -73.9650865 + }, + "nodes": [ + 42469118, + 9776829047, + 42469117 + ], + "geometry": [ + { "lat": 40.7056282, "lon": -73.9650865 }, + { "lat": 40.7057051, "lon": -73.9651729 }, + { "lat": 40.7061949, "lon": -73.9657230 } + ], + "tags": { + "highway": "residential", + "name": "Juliana Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Juliana", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5675418, + "bounds": { + "minlat": 40.7375222, + "minlon": -73.9529508, + "maxlat": 40.7375315, + "maxlon": -73.9527565 + }, + "nodes": [ + 2358056459, + 9996409530, + 9996409531, + 9996409532, + 42469141 + ], + "geometry": [ + { "lat": 40.7375241, "lon": -73.9529508 }, + { "lat": 40.7375310, "lon": -73.9528592 }, + { "lat": 40.7375315, "lon": -73.9528248 }, + { "lat": 40.7375286, "lon": -73.9527907 }, + { "lat": 40.7375222, "lon": -73.9527565 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Paidge Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Paidge", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5675465, + "bounds": { + "minlat": 40.7031724, + "minlon": -73.9906658, + "maxlat": 40.7032468, + "maxlon": -73.9887620 + }, + "nodes": [ + 42469341, + 8262936218, + 8262935522, + 42469336, + 8262935525, + 8262935496, + 2687331105 + ], + "geometry": [ + { "lat": 40.7031724, "lon": -73.9887620 }, + { "lat": 40.7031758, "lon": -73.9888454 }, + { "lat": 40.7031984, "lon": -73.9895007 }, + { "lat": 40.7032012, "lon": -73.9895800 }, + { "lat": 40.7032044, "lon": -73.9896691 }, + { "lat": 40.7032423, "lon": -73.9905953 }, + { "lat": 40.7032468, "lon": -73.9906658 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Water Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:reviewed": "aerial", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5675492, + "bounds": { + "minlat": 40.7046375, + "minlon": -73.9679262, + "maxlat": 40.7057397, + "maxlon": -73.9674532 + }, + "nodes": [ + 2173208182, + 42469440, + 42469443 + ], + "geometry": [ + { "lat": 40.7046375, "lon": -73.9674532 }, + { "lat": 40.7049647, "lon": -73.9675936 }, + { "lat": 40.7057397, "lon": -73.9679262 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5675509, + "bounds": { + "minlat": 40.7016075, + "minlon": -73.9932731, + "maxlat": 40.7018653, + "maxlon": -73.9931642 + }, + "nodes": [ + 42469596, + 11679066172, + 10245966640, + 42463965 + ], + "geometry": [ + { "lat": 40.7018653, "lon": -73.9931642 }, + { "lat": 40.7017247, "lon": -73.9932250 }, + { "lat": 40.7016725, "lon": -73.9932478 }, + { "lat": 40.7016075, "lon": -73.9932731 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "McKenny Street", + "name_2": "Hicks", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Mc Kenny", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5675780, + "bounds": { + "minlat": 40.7157466, + "minlon": -73.9344789, + "maxlat": 40.7158436, + "maxlon": -73.9340969 + }, + "nodes": [ + 42471039, + 9755789572, + 42471040 + ], + "geometry": [ + { "lat": 40.7158436, "lon": -73.9340969 }, + { "lat": 40.7158140, "lon": -73.9342135 }, + { "lat": 40.7157466, "lon": -73.9344789 } + ], + "tags": { + "highway": "service", + "name": "Calhoun Street", + "service": "parking_aisle", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Calhoun", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5676043, + "bounds": { + "minlat": 40.7371418, + "minlon": -73.9569305, + "maxlat": 40.7371956, + "maxlon": -73.9564523 + }, + "nodes": [ + 42472251, + 9121317211, + 5801603715, + 8211152859, + 2307703079 + ], + "geometry": [ + { "lat": 40.7371418, "lon": -73.9569305 }, + { "lat": 40.7371576, "lon": -73.9568299 }, + { "lat": 40.7371676, "lon": -73.9567203 }, + { "lat": 40.7371889, "lon": -73.9565163 }, + { "lat": 40.7371956, "lon": -73.9564523 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Box Street", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Box", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5676045, + "bounds": { + "minlat": 40.7028725, + "minlon": -73.9925739, + "maxlat": 40.7033198, + "maxlon": -73.9925604 + }, + "nodes": [ + 11678027513, + 11678027530, + 11436625648, + 42469329 + ], + "geometry": [ + { "lat": 40.7028725, "lon": -73.9925739 }, + { "lat": 40.7032475, "lon": -73.9925626 }, + { "lat": 40.7032668, "lon": -73.9925621 }, + { "lat": 40.7033198, "lon": -73.9925604 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Dock Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Dock", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5676110, + "bounds": { + "minlat": 40.7231127, + "minlon": -73.9444980, + "maxlat": 40.7256160, + "maxlon": -73.9440866 + }, + "nodes": [ + 8672287425, + 6732842572, + 8672287438, + 10160130720, + 8672287446, + 6732842577, + 42472689 + ], + "geometry": [ + { "lat": 40.7231127, "lon": -73.9440866 }, + { "lat": 40.7231680, "lon": -73.9440947 }, + { "lat": 40.7243523, "lon": -73.9442898 }, + { "lat": 40.7248797, "lon": -73.9443765 }, + { "lat": 40.7255019, "lon": -73.9444789 }, + { "lat": 40.7255477, "lon": -73.9444863 }, + { "lat": 40.7256160, "lon": -73.9444980 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Russell Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5676269, + "bounds": { + "minlat": 40.7005964, + "minlon": -73.9383253, + "maxlat": 40.7015669, + "maxlon": -73.9364567 + }, + "nodes": [ + 42513688, + 9301423400, + 10819895670, + 10819895669, + 4660923511, + 7984498423, + 10819895668, + 4660923497, + 42473650 + ], + "geometry": [ + { "lat": 40.7006446, "lon": -73.9364567 }, + { "lat": 40.7006128, "lon": -73.9365582 }, + { "lat": 40.7005964, "lon": -73.9366109 }, + { "lat": 40.7005976, "lon": -73.9366810 }, + { "lat": 40.7006154, "lon": -73.9367501 }, + { "lat": 40.7006872, "lon": -73.9368775 }, + { "lat": 40.7014398, "lon": -73.9382132 }, + { "lat": 40.7014913, "lon": -73.9382778 }, + { "lat": 40.7015669, "lon": -73.9383253 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Garden Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Garden", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5676305, + "bounds": { + "minlat": 40.7076891, + "minlon": -73.9223370, + "maxlat": 40.7090060, + "maxlon": -73.9218333 + }, + "nodes": [ + 13456694863, + 9744131274, + 10287737733, + 42474002, + 9744131284, + 9744131260, + 42474005 + ], + "geometry": [ + { "lat": 40.7076891, "lon": -73.9219143 }, + { "lat": 40.7077438, "lon": -73.9218492 }, + { "lat": 40.7078104, "lon": -73.9218333 }, + { "lat": 40.7084840, "lon": -73.9221040 }, + { "lat": 40.7088939, "lon": -73.9222870 }, + { "lat": 40.7089222, "lon": -73.9222996 }, + { "lat": 40.7090060, "lon": -73.9223370 } + ], + "tags": { + "highway": "residential", + "name": "Scott Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Scott", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 5676308, + "bounds": { + "minlat": 40.7086780, + "minlon": -73.9372086, + "maxlat": 40.7100914, + "maxlon": -73.9369800 + }, + "nodes": [ + 42474042, + 9755371977, + 9952743025, + 9952743020, + 42474044, + 9952743019, + 6967834374, + 42474048 + ], + "geometry": [ + { "lat": 40.7086780, "lon": -73.9369800 }, + { "lat": 40.7087488, "lon": -73.9369918 }, + { "lat": 40.7087950, "lon": -73.9369995 }, + { "lat": 40.7093364, "lon": -73.9370894 }, + { "lat": 40.7093778, "lon": -73.9370963 }, + { "lat": 40.7094553, "lon": -73.9371097 }, + { "lat": 40.7100269, "lon": -73.9372082 }, + { "lat": 40.7100914, "lon": -73.9372086 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Waterbury Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5676348, + "bounds": { + "minlat": 40.7089020, + "minlon": -73.9684687, + "maxlat": 40.7092186, + "maxlon": -73.9658010 + }, + "nodes": [ + 4207774907, + 9785653058, + 6338024002, + 42474660, + 6338024001, + 8468050595, + 9785653073, + 42474664 + ], + "geometry": [ + { "lat": 40.7092186, "lon": -73.9684687 }, + { "lat": 40.7092100, "lon": -73.9683965 }, + { "lat": 40.7090659, "lon": -73.9671939 }, + { "lat": 40.7090540, "lon": -73.9671040 }, + { "lat": 40.7090447, "lon": -73.9670290 }, + { "lat": 40.7089223, "lon": -73.9659750 }, + { "lat": 40.7089151, "lon": -73.9659107 }, + { "lat": 40.7089020, "lon": -73.9658010 } + ], + "tags": { + "highway": "residential", + "name": "South 9th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "9th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5676417, + "bounds": { + "minlat": 40.7002945, + "minlon": -73.9521484, + "maxlat": 40.7036668, + "maxlon": -73.9470493 + }, + "nodes": [ + 42475320, + 9755373228, + 9351722072, + 9755373095, + 42475322, + 9755373094, + 9755373273, + 42475325, + 9755373274, + 9351722018, + 9755373129, + 42475328, + 9755373128, + 9755373138, + 42475331, + 9755373139, + 42475336 + ], + "geometry": [ + { "lat": 40.7002945, "lon": -73.9521484 }, + { "lat": 40.7003700, "lon": -73.9521024 }, + { "lat": 40.7004762, "lon": -73.9519809 }, + { "lat": 40.7008772, "lon": -73.9513566 }, + { "lat": 40.7009220, "lon": -73.9512880 }, + { "lat": 40.7009622, "lon": -73.9512259 }, + { "lat": 40.7014939, "lon": -73.9504029 }, + { "lat": 40.7015790, "lon": -73.9502740 }, + { "lat": 40.7016497, "lon": -73.9501577 }, + { "lat": 40.7020826, "lon": -73.9495039 }, + { "lat": 40.7021102, "lon": -73.9494581 }, + { "lat": 40.7021590, "lon": -73.9493790 }, + { "lat": 40.7022098, "lon": -73.9493006 }, + { "lat": 40.7033049, "lon": -73.9476114 }, + { "lat": 40.7033510, "lon": -73.9475390 }, + { "lat": 40.7033979, "lon": -73.9474670 }, + { "lat": 40.7036668, "lon": -73.9470493 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Walton Street", + "name:etymology:wikidata": "Q878512", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5676457, + "bounds": { + "minlat": 40.7042010, + "minlon": -73.9642800, + "maxlat": 40.7073646, + "maxlon": -73.9595092 + }, + "nodes": [ + 42475767, + 6235394760, + 9776829103, + 42475764, + 9776829105, + 6235394777, + 42475761, + 6235394775, + 42475759 + ], + "geometry": [ + { "lat": 40.7073646, "lon": -73.9595092 }, + { "lat": 40.7072833, "lon": -73.9595401 }, + { "lat": 40.7065101, "lon": -73.9606975 }, + { "lat": 40.7064640, "lon": -73.9607670 }, + { "lat": 40.7064173, "lon": -73.9608392 }, + { "lat": 40.7054079, "lon": -73.9623983 }, + { "lat": 40.7053520, "lon": -73.9624850 }, + { "lat": 40.7052996, "lon": -73.9625666 }, + { "lat": 40.7042010, "lon": -73.9642800 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Wilson Street", + "name:etymology:wikidata": "Q365181", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wilson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5676538, + "bounds": { + "minlat": 40.7140639, + "minlon": -73.9528538, + "maxlat": 40.7144460, + "maxlon": -73.9524298 + }, + "nodes": [ + 42476485, + 6235394646, + 8925471182 + ], + "geometry": [ + { "lat": 40.7140639, "lon": -73.9528538 }, + { "lat": 40.7141770, "lon": -73.9527262 }, + { "lat": 40.7144460, "lon": -73.9524298 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meeker", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5676549, + "bounds": { + "minlat": 40.7268262, + "minlon": -73.9341460, + "maxlat": 40.7279096, + "maxlon": -73.9325128 + }, + "nodes": [ + 42476687, + 5482263303, + 7986896466, + 9927149395, + 8896031641 + ], + "geometry": [ + { "lat": 40.7279096, "lon": -73.9325128 }, + { "lat": 40.7270882, "lon": -73.9337400 }, + { "lat": 40.7270138, "lon": -73.9338551 }, + { "lat": 40.7268826, "lon": -73.9340585 }, + { "lat": 40.7268262, "lon": -73.9341460 } + ], + "tags": { + "highway": "unclassified", + "name": "Meeker Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5676561, + "bounds": { + "minlat": 40.7056044, + "minlon": -73.9462609, + "maxlat": 40.7058880, + "maxlon": -73.9429660 + }, + "nodes": [ + 42467823, + 9752594019, + 6212365441, + 42476785, + 6212365440, + 5487698313, + 5487698318, + 9752593943, + 42476783 + ], + "geometry": [ + { "lat": 40.7058880, "lon": -73.9429660 }, + { "lat": 40.7058790, "lon": -73.9430701 }, + { "lat": 40.7057492, "lon": -73.9445789 }, + { "lat": 40.7057401, "lon": -73.9446844 }, + { "lat": 40.7057290, "lon": -73.9448133 }, + { "lat": 40.7056485, "lon": -73.9457487 }, + { "lat": 40.7056259, "lon": -73.9460107 }, + { "lat": 40.7056139, "lon": -73.9461500 }, + { "lat": 40.7056044, "lon": -73.9462609 } + ], + "tags": { + "highway": "residential", + "name": "Boerum Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5676562, + "bounds": { + "minlat": 40.7067024, + "minlon": -73.9357045, + "maxlat": 40.7070737, + "maxlon": -73.9337934 + }, + "nodes": [ + 42476825, + 11070097220, + 9755371939, + 11070097219, + 42476829 + ], + "geometry": [ + { "lat": 40.7067024, "lon": -73.9357045 }, + { "lat": 40.7067171, "lon": -73.9356288 }, + { "lat": 40.7070460, "lon": -73.9339363 }, + { "lat": 40.7070560, "lon": -73.9338846 }, + { "lat": 40.7070737, "lon": -73.9337934 } + ], + "tags": { + "highway": "residential", + "name": "Boerum Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5676656, + "bounds": { + "minlat": 40.6992849, + "minlon": -73.9598218, + "maxlat": 40.7019460, + "maxlon": -73.9557240 + }, + "nodes": [ + 42477578, + 9772859179, + 6235395088, + 42477575, + 6235395087, + 5481877650, + 9772859071, + 42477573, + 9772859069, + 8617784299, + 9772858894, + 7722348498 + ], + "geometry": [ + { "lat": 40.7019460, "lon": -73.9557240 }, + { "lat": 40.7019003, "lon": -73.9557945 }, + { "lat": 40.7008894, "lon": -73.9573554 }, + { "lat": 40.7008342, "lon": -73.9574398 }, + { "lat": 40.7007668, "lon": -73.9575429 }, + { "lat": 40.7001652, "lon": -73.9584706 }, + { "lat": 40.6997165, "lon": -73.9591632 }, + { "lat": 40.6996680, "lon": -73.9592380 }, + { "lat": 40.6996227, "lon": -73.9593071 }, + { "lat": 40.6994028, "lon": -73.9596421 }, + { "lat": 40.6993733, "lon": -73.9596871 }, + { "lat": 40.6992849, "lon": -73.9598218 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Heyward Street", + "name:etymology:wikidata": "Q1399545", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Heyward", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5676664, + "bounds": { + "minlat": 40.7138637, + "minlon": -73.9239340, + "maxlat": 40.7140101, + "maxlon": -73.9239328 + }, + "nodes": [ + 42477655, + 5330321653 + ], + "geometry": [ + { "lat": 40.7140101, "lon": -73.9239340 }, + { "lat": 40.7138637, "lon": -73.9239328 } + ], + "tags": { + "highway": "residential", + "name": "Onderdonk Avenue" + } +}, +{ + "type": "way", + "id": 5676703, + "bounds": { + "minlat": 40.7068489, + "minlon": -73.9691310, + "maxlat": 40.7070290, + "maxlon": -73.9683562 + }, + "nodes": [ + 42477965, + 6877134698, + 4999422878, + 42469447 + ], + "geometry": [ + { "lat": 40.7070290, "lon": -73.9691310 }, + { "lat": 40.7069335, "lon": -73.9687150 }, + { "lat": 40.7068815, "lon": -73.9684957 }, + { "lat": 40.7068489, "lon": -73.9683562 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Division Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Division", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5676791, + "bounds": { + "minlat": 40.7284850, + "minlon": -73.9490830, + "maxlat": 40.7295180, + "maxlon": -73.9484950 + }, + "nodes": [ + 42478909, + 9788947195, + 2991742416, + 8549558995, + 9788947192, + 42478907 + ], + "geometry": [ + { "lat": 40.7295180, "lon": -73.9490830 }, + { "lat": 40.7294657, "lon": -73.9490532 }, + { "lat": 40.7289697, "lon": -73.9487709 }, + { "lat": 40.7285774, "lon": -73.9485476 }, + { "lat": 40.7285519, "lon": -73.9485329 }, + { "lat": 40.7284850, "lon": -73.9484950 } + ], + "tags": { + "highway": "residential", + "name": "Diamond Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Diamond", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5676829, + "bounds": { + "minlat": 40.7224522, + "minlon": -73.9547639, + "maxlat": 40.7226360, + "maxlon": -73.9541830 + }, + "nodes": [ + 42479249, + 42479254 + ], + "geometry": [ + { "lat": 40.7224522, "lon": -73.9547639 }, + { "lat": 40.7226360, "lon": -73.9541830 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "name": "Nassau Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Nassau", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5676833, + "bounds": { + "minlat": 40.7044557, + "minlon": -73.9884388, + "maxlat": 40.7044818, + "maxlon": -73.9875126 + }, + "nodes": [ + 42469180, + 11668371248, + 11668371247, + 11669756807, + 7261652019, + 11669756841 + ], + "geometry": [ + { "lat": 40.7044557, "lon": -73.9875126 }, + { "lat": 40.7044577, "lon": -73.9875777 }, + { "lat": 40.7044812, "lon": -73.9883195 }, + { "lat": 40.7044818, "lon": -73.9883740 }, + { "lat": 40.7044815, "lon": -73.9884191 }, + { "lat": 40.7044752, "lon": -73.9884388 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "John Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "John", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5676838, + "bounds": { + "minlat": 40.7020020, + "minlon": -73.9320440, + "maxlat": 40.7041988, + "maxlon": -73.9300554 + }, + "nodes": [ + 42479528, + 9744012739, + 1275778424, + 8228286056, + 9744012738, + 42479524, + 9744012628, + 7153236306, + 9744012631, + 42479515 + ], + "geometry": [ + { "lat": 40.7041988, "lon": -73.9300554 }, + { "lat": 40.7041156, "lon": -73.9300622 }, + { "lat": 40.7039919, "lon": -73.9300734 }, + { "lat": 40.7035737, "lon": -73.9304930 }, + { "lat": 40.7035283, "lon": -73.9305385 }, + { "lat": 40.7034730, "lon": -73.9305940 }, + { "lat": 40.7034183, "lon": -73.9306475 }, + { "lat": 40.7023115, "lon": -73.9317307 }, + { "lat": 40.7020582, "lon": -73.9319871 }, + { "lat": 40.7020020, "lon": -73.9320440 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Noll Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5676870, + "bounds": { + "minlat": 40.7051770, + "minlon": -73.9362340, + "maxlat": 40.7058680, + "maxlon": -73.9360020 + }, + "nodes": [ + 42479987, + 9744012804, + 6845641206, + 11921225442, + 9744012805, + 42479990 + ], + "geometry": [ + { "lat": 40.7058680, "lon": -73.9362340 }, + { "lat": 40.7058124, "lon": -73.9362153 }, + { "lat": 40.7057966, "lon": -73.9362100 }, + { "lat": 40.7052510, "lon": -73.9360268 }, + { "lat": 40.7052431, "lon": -73.9360242 }, + { "lat": 40.7051770, "lon": -73.9360020 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Seigel Court", + "sidewalk:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5676877, + "bounds": { + "minlat": 40.7203169, + "minlon": -73.9625537, + "maxlat": 40.7208551, + "maxlon": -73.9616983 + }, + "nodes": [ + 1422507548, + 9794844991, + 42469503 + ], + "geometry": [ + { "lat": 40.7208551, "lon": -73.9625537 }, + { "lat": 40.7203803, "lon": -73.9617904 }, + { "lat": 40.7203169, "lon": -73.9616983 } + ], + "tags": { + "highway": "residential", + "name": "North 7th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "7th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5676883, + "bounds": { + "minlat": 40.7143340, + "minlon": -73.9550508, + "maxlat": 40.7165454, + "maxlon": -73.9526780 + }, + "nodes": [ + 42480143, + 9785615196, + 9785615195, + 6235394643, + 42480139, + 6235394644, + 9949556553, + 42480075, + 9949556552, + 9785615124, + 42480132, + 6235394618, + 42480130 + ], + "geometry": [ + { "lat": 40.7143340, "lon": -73.9550508 }, + { "lat": 40.7143789, "lon": -73.9550022 }, + { "lat": 40.7148036, "lon": -73.9545426 }, + { "lat": 40.7148328, "lon": -73.9545110 }, + { "lat": 40.7148800, "lon": -73.9544600 }, + { "lat": 40.7149313, "lon": -73.9544054 }, + { "lat": 40.7153883, "lon": -73.9539132 }, + { "lat": 40.7154330, "lon": -73.9538650 }, + { "lat": 40.7154846, "lon": -73.9538097 }, + { "lat": 40.7159392, "lon": -73.9533231 }, + { "lat": 40.7159870, "lon": -73.9532720 }, + { "lat": 40.7160409, "lon": -73.9532147 }, + { "lat": 40.7165454, "lon": -73.9526780 } + ], + "tags": { + "highway": "residential", + "name": "Havemeyer Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Havemeyer", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5676929, + "bounds": { + "minlat": 40.7032956, + "minlon": -73.9883035, + "maxlat": 40.7038133, + "maxlon": -73.9880124 + }, + "nodes": [ + 10170379787, + 13352208764, + 42472724 + ], + "geometry": [ + { "lat": 40.7032956, "lon": -73.9880124 }, + { "lat": 40.7037706, "lon": -73.9882795 }, + { "lat": 40.7038133, "lon": -73.9883035 } + ], + "tags": { + "access": "no", + "highway": "pedestrian", + "name": "Anchorage Place", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Anchorage", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5676939, + "bounds": { + "minlat": 40.6997133, + "minlon": -73.9805597, + "maxlat": 40.7010069, + "maxlon": -73.9804043 + }, + "nodes": [ + 1670401569, + 598050854, + 1670401565, + 1670401559, + 598050855, + 10004163942, + 5487796388, + 9998788867, + 42481022 + ], + "geometry": [ + { "lat": 40.7010069, "lon": -73.9805597 }, + { "lat": 40.7009251, "lon": -73.9805007 }, + { "lat": 40.7008700, "lon": -73.9804632 }, + { "lat": 40.7007977, "lon": -73.9804348 }, + { "lat": 40.7007262, "lon": -73.9804098 }, + { "lat": 40.7005959, "lon": -73.9804043 }, + { "lat": 40.7001790, "lon": -73.9804329 }, + { "lat": 40.6998041, "lon": -73.9804569 }, + { "lat": 40.6997133, "lon": -73.9804642 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Navy Street", + "name:etymology:wikidata": "Q524435", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Navy", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5677001, + "bounds": { + "minlat": 40.7114936, + "minlon": -73.9538909, + "maxlat": 40.7124813, + "maxlon": -73.9511990 + }, + "nodes": [ + 42481931, + 9768177813, + 42481927, + 9768177818, + 9768177810, + 42481921, + 9768177788, + 9768177798, + 9768177785, + 42463350 + ], + "geometry": [ + { "lat": 40.7114936, "lon": -73.9511990 }, + { "lat": 40.7115404, "lon": -73.9513266 }, + { "lat": 40.7116510, "lon": -73.9516200 }, + { "lat": 40.7120087, "lon": -73.9526030 }, + { "lat": 40.7120286, "lon": -73.9526570 }, + { "lat": 40.7120550, "lon": -73.9527292 }, + { "lat": 40.7120819, "lon": -73.9528016 }, + { "lat": 40.7124409, "lon": -73.9537808 }, + { "lat": 40.7124577, "lon": -73.9538266 }, + { "lat": 40.7124813, "lon": -73.9538909 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Hope Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5677002, + "bounds": { + "minlat": 40.7129041, + "minlon": -73.9579286, + "maxlat": 40.7139579, + "maxlon": -73.9550463 + }, + "nodes": [ + 598033037, + 9768177578, + 5481854402, + 9351722061, + 9768177581, + 42480117, + 9768177570, + 7040464290, + 9768177567, + 42481938 + ], + "geometry": [ + { "lat": 40.7129041, "lon": -73.9550463 }, + { "lat": 40.7129424, "lon": -73.9551502 }, + { "lat": 40.7130597, "lon": -73.9554680 }, + { "lat": 40.7133573, "lon": -73.9562872 }, + { "lat": 40.7133743, "lon": -73.9563339 }, + { "lat": 40.7133990, "lon": -73.9564020 }, + { "lat": 40.7134302, "lon": -73.9564869 }, + { "lat": 40.7139063, "lon": -73.9577826 }, + { "lat": 40.7139270, "lon": -73.9578411 }, + { "lat": 40.7139579, "lon": -73.9579286 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Hope Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hope", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5677017, + "bounds": { + "minlat": 40.7007920, + "minlon": -73.9605000, + "maxlat": 40.7063412, + "maxlon": -73.9519043 + }, + "nodes": [ + 42482048, + 9755373420, + 9755373405, + 42482044, + 9755373407, + 9772859193, + 42482042, + 9772859191, + 9772859133, + 42482039, + 9772859135, + 9772859009, + 42482037, + 9772859011, + 9772858910, + 42482034 + ], + "geometry": [ + { "lat": 40.7063412, "lon": -73.9519043 }, + { "lat": 40.7063002, "lon": -73.9520169 }, + { "lat": 40.7055945, "lon": -73.9530849 }, + { "lat": 40.7055440, "lon": -73.9531630 }, + { "lat": 40.7054941, "lon": -73.9532404 }, + { "lat": 40.7043595, "lon": -73.9550003 }, + { "lat": 40.7043120, "lon": -73.9550740 }, + { "lat": 40.7042692, "lon": -73.9551412 }, + { "lat": 40.7031239, "lon": -73.9569094 }, + { "lat": 40.7030750, "lon": -73.9569850 }, + { "lat": 40.7030277, "lon": -73.9570568 }, + { "lat": 40.7020079, "lon": -73.9586056 }, + { "lat": 40.7019530, "lon": -73.9586890 }, + { "lat": 40.7018981, "lon": -73.9587747 }, + { "lat": 40.7008441, "lon": -73.9604187 }, + { "lat": 40.7007920, "lon": -73.9605000 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Penn Street", + "name:etymology:wikidata": "Q530037", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5677039, + "bounds": { + "minlat": 40.7131385, + "minlon": -73.9549048, + "maxlat": 40.7140738, + "maxlon": -73.9543400 + }, + "nodes": [ + 42482398, + 8122409891, + 7302007599, + 11155242408, + 5481854398, + 9073820763 + ], + "geometry": [ + { "lat": 40.7140738, "lon": -73.9543400 }, + { "lat": 40.7139820, "lon": -73.9543907 }, + { "lat": 40.7137516, "lon": -73.9545345 }, + { "lat": 40.7136560, "lon": -73.9545922 }, + { "lat": 40.7135890, "lon": -73.9546327 }, + { "lat": 40.7131385, "lon": -73.9549048 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5677041, + "bounds": { + "minlat": 40.7219660, + "minlon": -73.9620714, + "maxlat": 40.7238936, + "maxlon": -73.9599178 + }, + "nodes": [ + 5070304974, + 5070304984, + 5070304977, + 5070304987, + 5070304976, + 9794890506, + 42469514 + ], + "geometry": [ + { "lat": 40.7238936, "lon": -73.9618345 }, + { "lat": 40.7237935, "lon": -73.9616744 }, + { "lat": 40.7234235, "lon": -73.9620714 }, + { "lat": 40.7232563, "lon": -73.9619968 }, + { "lat": 40.7220331, "lon": -73.9600249 }, + { "lat": 40.7220245, "lon": -73.9600106 }, + { "lat": 40.7219660, "lon": -73.9599178 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "North 10th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "10th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5677176, + "bounds": { + "minlat": 40.7143936, + "minlon": -73.9308007, + "maxlat": 40.7144188, + "maxlon": -73.9306883 + }, + "nodes": [ + 42484134, + 9146235532 + ], + "geometry": [ + { "lat": 40.7143936, "lon": -73.9308007 }, + { "lat": 40.7144188, "lon": -73.9306883 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 5677185, + "bounds": { + "minlat": 40.7201590, + "minlon": -73.9407450, + "maxlat": 40.7212461, + "maxlon": -73.9365091 + }, + "nodes": [ + 42484235, + 9695771755, + 9937287930, + 42484237, + 9937287929, + 8465212322, + 9695846822, + 42484239, + 9695846863, + 7238090459, + 9937834412, + 42484241 + ], + "geometry": [ + { "lat": 40.7201590, "lon": -73.9407450 }, + { "lat": 40.7201838, "lon": -73.9406508 }, + { "lat": 40.7204005, "lon": -73.9397859 }, + { "lat": 40.7204220, "lon": -73.9397000 }, + { "lat": 40.7204434, "lon": -73.9396174 }, + { "lat": 40.7207955, "lon": -73.9382587 }, + { "lat": 40.7208080, "lon": -73.9382111 }, + { "lat": 40.7208269, "lon": -73.9381373 }, + { "lat": 40.7208484, "lon": -73.9380491 }, + { "lat": 40.7210320, "lon": -73.9372956 }, + { "lat": 40.7212111, "lon": -73.9366377 }, + { "lat": 40.7212461, "lon": -73.9365091 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Division Place", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5677205, + "bounds": { + "minlat": 40.7000590, + "minlon": -73.9327810, + "maxlat": 40.7045260, + "maxlon": -73.9283950 + }, + "nodes": [ + 42484343, + 9743987314, + 9720880132, + 7984090574, + 9744012625, + 42484345, + 9744012624, + 12883509026, + 12883509029, + 9744012640, + 42484348, + 9744012641, + 13701110577, + 9959630890, + 9743987274, + 42484352 + ], + "geometry": [ + { "lat": 40.7000590, "lon": -73.9327810 }, + { "lat": 40.7001186, "lon": -73.9327252 }, + { "lat": 40.7004894, "lon": -73.9323574 }, + { "lat": 40.7009583, "lon": -73.9318959 }, + { "lat": 40.7015198, "lon": -73.9313441 }, + { "lat": 40.7015737, "lon": -73.9312911 }, + { "lat": 40.7016343, "lon": -73.9312316 }, + { "lat": 40.7018534, "lon": -73.9310162 }, + { "lat": 40.7019445, "lon": -73.9309267 }, + { "lat": 40.7029879, "lon": -73.9299010 }, + { "lat": 40.7030470, "lon": -73.9298430 }, + { "lat": 40.7031012, "lon": -73.9297899 }, + { "lat": 40.7044131, "lon": -73.9285055 }, + { "lat": 40.7044231, "lon": -73.9284958 }, + { "lat": 40.7044569, "lon": -73.9284627 }, + { "lat": 40.7045260, "lon": -73.9283950 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "George Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5677229, + "bounds": { + "minlat": 40.7274602, + "minlon": -73.9602006, + "maxlat": 40.7275959, + "maxlon": -73.9588788 + }, + "nodes": [ + 11099032984, + 6895004586, + 10957424639, + 6895004594, + 9478398308, + 9789402707, + 42484582 + ], + "geometry": [ + { "lat": 40.7274602, "lon": -73.9602006 }, + { "lat": 40.7274818, "lon": -73.9599655 }, + { "lat": 40.7275223, "lon": -73.9595883 }, + { "lat": 40.7275620, "lon": -73.9591192 }, + { "lat": 40.7275752, "lon": -73.9590189 }, + { "lat": 40.7275820, "lon": -73.9589764 }, + { "lat": 40.7275959, "lon": -73.9588788 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Oak Street", + "oneway": "yes", + "surface": "paved", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Oak", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5677271, + "bounds": { + "minlat": 40.7042010, + "minlon": -73.9649030, + "maxlat": 40.7047620, + "maxlon": -73.9642800 + }, + "nodes": [ + 42475759, + 42485072 + ], + "geometry": [ + { "lat": 40.7042010, "lon": -73.9642800 }, + { "lat": 40.7047620, "lon": -73.9649030 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Wythe Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5677423, + "bounds": { + "minlat": 40.7344650, + "minlon": -73.9549621, + "maxlat": 40.7346894, + "maxlon": -73.9525122 + }, + "nodes": [ + 598391465, + 8097082853, + 13687534658, + 9996409568, + 8097082966, + 42486600 + ], + "geometry": [ + { "lat": 40.7346894, "lon": -73.9525122 }, + { "lat": 40.7346772, "lon": -73.9526990 }, + { "lat": 40.7346330, "lon": -73.9531696 }, + { "lat": 40.7344801, "lon": -73.9547955 }, + { "lat": 40.7344756, "lon": -73.9548420 }, + { "lat": 40.7344650, "lon": -73.9549621 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Freeman Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Freeman", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5677438, + "bounds": { + "minlat": 40.7020020, + "minlon": -73.9335230, + "maxlat": 40.7028490, + "maxlon": -73.9320440 + }, + "nodes": [ + 42486705, + 9743987263, + 9355837602, + 42486707, + 9744012632, + 42479515 + ], + "geometry": [ + { "lat": 40.7028490, "lon": -73.9335230 }, + { "lat": 40.7027954, "lon": -73.9334330 }, + { "lat": 40.7026329, "lon": -73.9331450 }, + { "lat": 40.7024310, "lon": -73.9327920 }, + { "lat": 40.7020479, "lon": -73.9321240 }, + { "lat": 40.7020020, "lon": -73.9320440 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Central Avenue", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Central", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5677463, + "bounds": { + "minlat": 40.7047455, + "minlon": -73.9824902, + "maxlat": 40.7048530, + "maxlon": -73.9793414 + }, + "nodes": [ + 42487125, + 42487131, + 42487137 + ], + "geometry": [ + { "lat": 40.7048530, "lon": -73.9824902 }, + { "lat": 40.7047980, "lon": -73.9809760 }, + { "lat": 40.7047455, "lon": -73.9793414 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Marshall Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marshall", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5677468, + "bounds": { + "minlat": 40.7067920, + "minlon": -73.9337110, + "maxlat": 40.7071522, + "maxlon": -73.9314783 + }, + "nodes": [ + 42487177, + 9767625259, + 9755371917, + 42487175, + 9755371918, + 11007794926, + 9959635920, + 9959635917, + 42487173 + ], + "geometry": [ + { "lat": 40.7071522, "lon": -73.9314783 }, + { "lat": 40.7071326, "lon": -73.9316003 }, + { "lat": 40.7070641, "lon": -73.9320080 }, + { "lat": 40.7070510, "lon": -73.9320860 }, + { "lat": 40.7070364, "lon": -73.9321777 }, + { "lat": 40.7069294, "lon": -73.9328491 }, + { "lat": 40.7068133, "lon": -73.9335771 }, + { "lat": 40.7068038, "lon": -73.9336370 }, + { "lat": 40.7067920, "lon": -73.9337110 } + ], + "tags": { + "highway": "residential", + "name": "Ingraham Street", + "name:etymology:wikidata": "Q5314396", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5677469, + "bounds": { + "minlat": 40.7081042, + "minlon": -73.9255823, + "maxlat": 40.7085079, + "maxlon": -73.9230208 + }, + "nodes": [ + 42487186, + 7283907120, + 13716437690, + 7283907113, + 9744131121, + 42487188, + 10066773550, + 9744131215, + 42504181 + ], + "geometry": [ + { "lat": 40.7081042, "lon": -73.9255823 }, + { "lat": 40.7081956, "lon": -73.9250125 }, + { "lat": 40.7082514, "lon": -73.9246716 }, + { "lat": 40.7082533, "lon": -73.9246602 }, + { "lat": 40.7083418, "lon": -73.9241201 }, + { "lat": 40.7083610, "lon": -73.9240030 }, + { "lat": 40.7083774, "lon": -73.9238982 }, + { "lat": 40.7085079, "lon": -73.9230624 }, + { "lat": 40.7084173, "lon": -73.9230208 } + ], + "tags": { + "highway": "residential", + "name": "Ingraham Street", + "name:etymology:wikidata": "Q5314396", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5677514, + "bounds": { + "minlat": 40.7061949, + "minlon": -73.9657230, + "maxlat": 40.7070560, + "maxlon": -73.9643930 + }, + "nodes": [ + 42469117, + 9776829041, + 42487630 + ], + "geometry": [ + { "lat": 40.7061949, "lon": -73.9657230 }, + { "lat": 40.7070078, "lon": -73.9644675 }, + { "lat": 40.7070560, "lon": -73.9643930 } + ], + "tags": { + "highway": "residential", + "name": "Morton Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Morton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5677515, + "bounds": { + "minlat": 40.7049647, + "minlon": -73.9675936, + "maxlat": 40.7054347, + "maxlon": -73.9668666 + }, + "nodes": [ + 9347182602, + 9347182604, + 4999422845, + 42469440 + ], + "geometry": [ + { "lat": 40.7054347, "lon": -73.9668666 }, + { "lat": 40.7050730, "lon": -73.9674220 }, + { "lat": 40.7049962, "lon": -73.9675400 }, + { "lat": 40.7049647, "lon": -73.9675936 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Morton Street", + "service": "parking_aisle", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Morton", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5677551, + "bounds": { + "minlat": 40.7226360, + "minlon": -73.9545120, + "maxlat": 40.7232250, + "maxlon": -73.9541830 + }, + "nodes": [ + 42479254, + 9789335902, + 11702273424, + 42488118 + ], + "geometry": [ + { "lat": 40.7226360, "lon": -73.9541830 }, + { "lat": 40.7227163, "lon": -73.9542276 }, + { "lat": 40.7230832, "lon": -73.9544283 }, + { "lat": 40.7232250, "lon": -73.9545120 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Banker Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Banker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5677555, + "bounds": { + "minlat": 40.7219494, + "minlon": -73.9581394, + "maxlat": 40.7236316, + "maxlon": -73.9554455 + }, + "nodes": [ + 42469531, + 3285698885, + 9789402672, + 5435946588, + 3285698869, + 42488163, + 5435946589, + 5435946599, + 9779533061, + 9779533060, + 42488169 + ], + "geometry": [ + { "lat": 40.7236316, "lon": -73.9581394 }, + { "lat": 40.7235939, "lon": -73.9580791 }, + { "lat": 40.7235678, "lon": -73.9580373 }, + { "lat": 40.7229101, "lon": -73.9569841 }, + { "lat": 40.7228853, "lon": -73.9569443 }, + { "lat": 40.7228378, "lon": -73.9568682 }, + { "lat": 40.7228019, "lon": -73.9568107 }, + { "lat": 40.7227745, "lon": -73.9567668 }, + { "lat": 40.7220265, "lon": -73.9555690 }, + { "lat": 40.7219973, "lon": -73.9555223 }, + { "lat": 40.7219494, "lon": -73.9554455 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "North 13th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "13th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5677572, + "bounds": { + "minlat": 40.7095220, + "minlon": -73.9543260, + "maxlat": 40.7127020, + "maxlon": -73.9523190 + }, + "nodes": [ + 42474153, + 9755372038, + 9955210440, + 42488298, + 9955210439, + 8842929748, + 42488301, + 9967927275, + 8842929756, + 42488303, + 9955210503, + 42488306, + 9955210502, + 9957055574, + 42481921, + 9957055573, + 9768177791, + 42488310 + ], + "geometry": [ + { "lat": 40.7095220, "lon": -73.9543260 }, + { "lat": 40.7095850, "lon": -73.9542866 }, + { "lat": 40.7102090, "lon": -73.9538908 }, + { "lat": 40.7102640, "lon": -73.9538560 }, + { "lat": 40.7103286, "lon": -73.9538168 }, + { "lat": 40.7106023, "lon": -73.9536509 }, + { "lat": 40.7106885, "lon": -73.9536005 }, + { "lat": 40.7107563, "lon": -73.9535620 }, + { "lat": 40.7108358, "lon": -73.9535159 }, + { "lat": 40.7108962, "lon": -73.9534784 }, + { "lat": 40.7113563, "lon": -73.9531715 }, + { "lat": 40.7114210, "lon": -73.9531311 }, + { "lat": 40.7114927, "lon": -73.9530849 }, + { "lat": 40.7120084, "lon": -73.9527587 }, + { "lat": 40.7120550, "lon": -73.9527292 }, + { "lat": 40.7121174, "lon": -73.9526897 }, + { "lat": 40.7126479, "lon": -73.9523527 }, + { "lat": 40.7127020, "lon": -73.9523190 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Keap Street", + "name:etymology:wikidata": "Q880686", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5677574, + "bounds": { + "minlat": 40.7036580, + "minlon": -73.9605910, + "maxlat": 40.7040815, + "maxlon": -73.9599711 + }, + "nodes": [ + 42488330, + 598035418, + 6235394783, + 42488328 + ], + "geometry": [ + { "lat": 40.7040815, "lon": -73.9599711 }, + { "lat": 40.7038916, "lon": -73.9602731 }, + { "lat": 40.7037142, "lon": -73.9605192 }, + { "lat": 40.7036580, "lon": -73.9605910 } + ], + "tags": { + "highway": "residential", + "name": "Keap Street", + "name:etymology:wikidata": "Q880686", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Keap", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 5677576, + "bounds": { + "minlat": 40.7047680, + "minlon": -73.9588840, + "maxlat": 40.7060030, + "maxlon": -73.9569670 + }, + "nodes": [ + 42488343, + 9772858949, + 598035423, + 9772859233, + 42482168 + ], + "geometry": [ + { "lat": 40.7047680, "lon": -73.9588840 }, + { "lat": 40.7048183, "lon": -73.9588064 }, + { "lat": 40.7049451, "lon": -73.9586106 }, + { "lat": 40.7059589, "lon": -73.9570355 }, + { "lat": 40.7060030, "lon": -73.9569670 } + ], + "tags": { + "highway": "residential", + "name": "Keap Street", + "name:etymology:wikidata": "Q880686", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Kings, NY", + "tiger:name_base": "Keap", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5677637, + "bounds": { + "minlat": 40.7142108, + "minlon": -73.9657340, + "maxlat": 40.7172520, + "maxlon": -73.9594927 + }, + "nodes": [ + 42489014, + 9378180924, + 13701097460, + 7159541750, + 9779538019, + 42489010, + 9779538020, + 8468038712, + 9779538033, + 42489006, + 9779538066, + 9351682783, + 9779538069, + 42489001, + 9779538076, + 8468050538, + 9779538096, + 42469485, + 9779538097, + 8468050586, + 9779538093, + 42488999 + ], + "geometry": [ + { "lat": 40.7142108, "lon": -73.9594927 }, + { "lat": 40.7142401, "lon": -73.9595552 }, + { "lat": 40.7146514, "lon": -73.9603933 }, + { "lat": 40.7148338, "lon": -73.9607649 }, + { "lat": 40.7148600, "lon": -73.9608172 }, + { "lat": 40.7148920, "lon": -73.9608810 }, + { "lat": 40.7149346, "lon": -73.9609655 }, + { "lat": 40.7155246, "lon": -73.9621756 }, + { "lat": 40.7155471, "lon": -73.9622220 }, + { "lat": 40.7155800, "lon": -73.9622890 }, + { "lat": 40.7156125, "lon": -73.9623557 }, + { "lat": 40.7162855, "lon": -73.9637355 }, + { "lat": 40.7163096, "lon": -73.9637847 }, + { "lat": 40.7163392, "lon": -73.9638453 }, + { "lat": 40.7163782, "lon": -73.9639261 }, + { "lat": 40.7169619, "lon": -73.9651375 }, + { "lat": 40.7169860, "lon": -73.9651866 }, + { "lat": 40.7170107, "lon": -73.9652370 }, + { "lat": 40.7170682, "lon": -73.9653559 }, + { "lat": 40.7172064, "lon": -73.9656361 }, + { "lat": 40.7172249, "lon": -73.9656785 }, + { "lat": 40.7172520, "lon": -73.9657340 } + ], + "tags": { + "highway": "residential", + "name": "North 1st Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "1st", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5677695, + "bounds": { + "minlat": 40.7001168, + "minlon": -73.9774568, + "maxlat": 40.7015858, + "maxlon": -73.9758457 + }, + "nodes": [ + 42489621, + 3656001501, + 42476000, + 8289191649, + 10716574969, + 42488908 + ], + "geometry": [ + { "lat": 40.7001168, "lon": -73.9758457 }, + { "lat": 40.7004884, "lon": -73.9762418 }, + { "lat": 40.7008522, "lon": -73.9766520 }, + { "lat": 40.7011714, "lon": -73.9770193 }, + { "lat": 40.7015338, "lon": -73.9774019 }, + { "lat": 40.7015858, "lon": -73.9774568 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Dock Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Dock", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5677698, + "bounds": { + "minlat": 40.6989783, + "minlon": -73.9777973, + "maxlat": 40.7001395, + "maxlon": -73.9769563 + }, + "nodes": [ + 9998755686, + 9998755684, + 42489632, + 8855131447, + 8855131448, + 8855131446, + 8855131445, + 42475993 + ], + "geometry": [ + { "lat": 40.6989783, "lon": -73.9773980 }, + { "lat": 40.6990978, "lon": -73.9773853 }, + { "lat": 40.6993624, "lon": -73.9769563 }, + { "lat": 40.6996005, "lon": -73.9772124 }, + { "lat": 40.6996080, "lon": -73.9772746 }, + { "lat": 40.6996808, "lon": -73.9773546 }, + { "lat": 40.6997243, "lon": -73.9773518 }, + { "lat": 40.7001395, "lon": -73.9777973 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Warrington Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Warrington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5677730, + "bounds": { + "minlat": 40.7137706, + "minlon": -73.9592931, + "maxlat": 40.7143946, + "maxlon": -73.9580415 + }, + "nodes": [ + 42489993, + 9768177557, + 7040464287, + 9768177560, + 42489991 + ], + "geometry": [ + { "lat": 40.7137706, "lon": -73.9580415 }, + { "lat": 40.7138229, "lon": -73.9581457 }, + { "lat": 40.7143322, "lon": -73.9591613 }, + { "lat": 40.7143598, "lon": -73.9592177 }, + { "lat": 40.7143946, "lon": -73.9592931 } + ], + "tags": { + "highway": "residential", + "name": "Fillmore Place", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Fillmore", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5677780, + "bounds": { + "minlat": 40.7037903, + "minlon": -73.9317000, + "maxlat": 40.7056560, + "maxlon": -73.9311128 + }, + "nodes": [ + 42490298, + 9744012744, + 42490300, + 9744012757, + 42490303, + 9744012756, + 9743987259, + 42490308 + ], + "geometry": [ + { "lat": 40.7037903, "lon": -73.9311128 }, + { "lat": 40.7038552, "lon": -73.9311877 }, + { "lat": 40.7042570, "lon": -73.9313090 }, + { "lat": 40.7048991, "lon": -73.9314909 }, + { "lat": 40.7049580, "lon": -73.9315070 }, + { "lat": 40.7050267, "lon": -73.9315260 }, + { "lat": 40.7056019, "lon": -73.9316850 }, + { "lat": 40.7056560, "lon": -73.9317000 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Morgan Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5677838, + "bounds": { + "minlat": 40.7053930, + "minlon": -73.9333210, + "maxlat": 40.7056560, + "maxlon": -73.9317000 + }, + "nodes": [ + 42490911, + 9744012648, + 9743987257, + 42490308 + ], + "geometry": [ + { "lat": 40.7053930, "lon": -73.9333210 }, + { "lat": 40.7054047, "lon": -73.9332488 }, + { "lat": 40.7056416, "lon": -73.9317888 }, + { "lat": 40.7056560, "lon": -73.9317000 } + ], + "tags": { + "highway": "residential", + "name": "Grattan Street", + "name:etymology:wikidata": "Q333041", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5677842, + "bounds": { + "minlat": 40.7065692, + "minlon": -73.9525041, + "maxlat": 40.7084307, + "maxlon": -73.9513351 + }, + "nodes": [ + 42490941, + 9755373426, + 9985973818, + 42490942, + 9985973817, + 9985973824, + 42490943, + 9985973823, + 8232714831, + 9755373482, + 42474161 + ], + "geometry": [ + { "lat": 40.7065692, "lon": -73.9525041 }, + { "lat": 40.7066349, "lon": -73.9524617 }, + { "lat": 40.7071684, "lon": -73.9521173 }, + { "lat": 40.7072211, "lon": -73.9520844 }, + { "lat": 40.7072853, "lon": -73.9520442 }, + { "lat": 40.7077561, "lon": -73.9517574 }, + { "lat": 40.7078205, "lon": -73.9517181 }, + { "lat": 40.7078698, "lon": -73.9516872 }, + { "lat": 40.7083246, "lon": -73.9514017 }, + { "lat": 40.7083742, "lon": -73.9513705 }, + { "lat": 40.7084307, "lon": -73.9513351 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Hewes Street", + "name:etymology:wikidata": "Q1666382", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5677843, + "bounds": { + "minlat": 40.7017110, + "minlon": -73.9605398, + "maxlat": 40.7061090, + "maxlon": -73.9537940 + }, + "nodes": [ + 42461490, + 9772858998, + 42490956, + 9772858996, + 9772859114, + 42490957, + 9772859112, + 9772859207, + 42482178, + 9772859205, + 9772859295, + 42490962 + ], + "geometry": [ + { "lat": 40.7017110, "lon": -73.9605398 }, + { "lat": 40.7024719, "lon": -73.9594159 }, + { "lat": 40.7025280, "lon": -73.9593330 }, + { "lat": 40.7025721, "lon": -73.9592651 }, + { "lat": 40.7035926, "lon": -73.9576876 }, + { "lat": 40.7036390, "lon": -73.9576160 }, + { "lat": 40.7036866, "lon": -73.9575424 }, + { "lat": 40.7048295, "lon": -73.9557759 }, + { "lat": 40.7048760, "lon": -73.9557040 }, + { "lat": 40.7049214, "lon": -73.9556336 }, + { "lat": 40.7060630, "lon": -73.9538664 }, + { "lat": 40.7061090, "lon": -73.9537940 } + ], + "tags": { + "highway": "residential", + "name": "Hewes Street", + "name:etymology:wikidata": "Q1666382", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hewes", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5677845, + "bounds": { + "minlat": 40.7005085, + "minlon": -73.9624798, + "maxlat": 40.7009313, + "maxlon": -73.9618636 + }, + "nodes": [ + 42490972, + 7248919883, + 9998827416, + 6245943464, + 42469405 + ], + "geometry": [ + { "lat": 40.7009313, "lon": -73.9618636 }, + { "lat": 40.7006270, "lon": -73.9623053 }, + { "lat": 40.7005776, "lon": -73.9623786 }, + { "lat": 40.7005524, "lon": -73.9624160 }, + { "lat": 40.7005085, "lon": -73.9624798 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Hewes Street", + "name:etymology:wikidata": "Q1666382", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hewes", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 5677868, + "bounds": { + "minlat": 40.7257210, + "minlon": -73.9534637, + "maxlat": 40.7302799, + "maxlon": -73.9508750 + }, + "nodes": [ + 42491236, + 6235394717, + 7333968478, + 5801598839, + 8097222287, + 7725544402, + 8097222228, + 11919168005, + 11919167997, + 42491228, + 11919167999, + 9765409757, + 42491226 + ], + "geometry": [ + { "lat": 40.7302799, "lon": -73.9534637 }, + { "lat": 40.7302119, "lon": -73.9534443 }, + { "lat": 40.7295713, "lon": -73.9530698 }, + { "lat": 40.7285173, "lon": -73.9524773 }, + { "lat": 40.7284814, "lon": -73.9524581 }, + { "lat": 40.7284210, "lon": -73.9524262 }, + { "lat": 40.7283619, "lon": -73.9523945 }, + { "lat": 40.7274881, "lon": -73.9518835 }, + { "lat": 40.7274519, "lon": -73.9518623 }, + { "lat": 40.7273920, "lon": -73.9518273 }, + { "lat": 40.7273288, "lon": -73.9517913 }, + { "lat": 40.7257948, "lon": -73.9509170 }, + { "lat": 40.7257210, "lon": -73.9508750 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Leonard Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5677884, + "bounds": { + "minlat": 40.7068868, + "minlon": -73.9541273, + "maxlat": 40.7069210, + "maxlon": -73.9537233 + }, + "nodes": [ + 42478031, + 9785858314, + 13071370247, + 5849451139, + 13071365885 + ], + "geometry": [ + { "lat": 40.7069210, "lon": -73.9541273 }, + { "lat": 40.7069120, "lon": -73.9540693 }, + { "lat": 40.7069039, "lon": -73.9540171 }, + { "lat": 40.7069015, "lon": -73.9540014 }, + { "lat": 40.7068868, "lon": -73.9537233 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Broadway", + "surface": "asphalt", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 5677887, + "bounds": { + "minlat": 40.7066761, + "minlon": -73.9544241, + "maxlat": 40.7070866, + "maxlon": -73.9540209 + }, + "nodes": [ + 42491450, + 6245642041, + 42478031, + 6530806542, + 9772859284, + 42491439 + ], + "geometry": [ + { "lat": 40.7070866, "lon": -73.9540209 }, + { "lat": 40.7069960, "lon": -73.9540803 }, + { "lat": 40.7069210, "lon": -73.9541273 }, + { "lat": 40.7068624, "lon": -73.9541682 }, + { "lat": 40.7067306, "lon": -73.9543466 }, + { "lat": 40.7066761, "lon": -73.9544241 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Hooper Street", + "name:etymology:wikidata": "Q1345669", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hooper", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left;through|right" + } +}, +{ + "type": "way", + "id": 5677919, + "bounds": { + "minlat": 40.7015940, + "minlon": -73.9487480, + "maxlat": 40.7032154, + "maxlon": -73.9462428 + }, + "nodes": [ + 42492008, + 9773739318, + 9755373133, + 42492006, + 9755373132, + 9755373148, + 42492003 + ], + "geometry": [ + { "lat": 40.7032154, "lon": -73.9462428 }, + { "lat": 40.7031544, "lon": -73.9463367 }, + { "lat": 40.7028298, "lon": -73.9468366 }, + { "lat": 40.7027840, "lon": -73.9469070 }, + { "lat": 40.7027393, "lon": -73.9469762 }, + { "lat": 40.7016438, "lon": -73.9486709 }, + { "lat": 40.7015940, "lon": -73.9487480 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Wallabout Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wallabout", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5677925, + "bounds": { + "minlat": 40.7380005, + "minlon": -73.9553711, + "maxlat": 40.7382342, + "maxlon": -73.9528976 + }, + "nodes": [ + 42492099, + 9996409537, + 9996409538, + 9996409539, + 9690650961, + 9996409540, + 9996409541, + 42492091, + 8211152866, + 7192302742, + 7189258821, + 9996409571, + 8097082939, + 9996409574, + 9996409575, + 2473602887 + ], + "geometry": [ + { "lat": 40.7382166, "lon": -73.9528976 }, + { "lat": 40.7382223, "lon": -73.9529156 }, + { "lat": 40.7382292, "lon": -73.9529497 }, + { "lat": 40.7382329, "lon": -73.9529821 }, + { "lat": 40.7382342, "lon": -73.9530101 }, + { "lat": 40.7382334, "lon": -73.9530427 }, + { "lat": 40.7382297, "lon": -73.9530866 }, + { "lat": 40.7382202, "lon": -73.9531707 }, + { "lat": 40.7382084, "lon": -73.9532797 }, + { "lat": 40.7381614, "lon": -73.9537921 }, + { "lat": 40.7380947, "lon": -73.9545199 }, + { "lat": 40.7380317, "lon": -73.9551996 }, + { "lat": 40.7380239, "lon": -73.9552832 }, + { "lat": 40.7380205, "lon": -73.9553103 }, + { "lat": 40.7380126, "lon": -73.9553395 }, + { "lat": 40.7380005, "lon": -73.9553711 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Ash Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5677953, + "bounds": { + "minlat": 40.7009100, + "minlon": -73.9260830, + "maxlat": 40.7023880, + "maxlon": -73.9246360 + }, + "nodes": [ + 42492398, + 9704024953, + 8589606405, + 9753035671, + 42492396 + ], + "geometry": [ + { "lat": 40.7023880, "lon": -73.9246360 }, + { "lat": 40.7023271, "lon": -73.9246961 }, + { "lat": 40.7009988, "lon": -73.9259961 }, + { "lat": 40.7009703, "lon": -73.9260240 }, + { "lat": 40.7009100, "lon": -73.9260830 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Willoughby Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Willoughby", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 5677958, + "bounds": { + "minlat": 40.7031724, + "minlon": -73.9889306, + "maxlat": 40.7038340, + "maxlon": -73.9887620 + }, + "nodes": [ + 42462219, + 3000084364, + 3000082215, + 3000084342, + 42469341 + ], + "geometry": [ + { "lat": 40.7038340, "lon": -73.9889306 }, + { "lat": 40.7037036, "lon": -73.9888402 }, + { "lat": 40.7035490, "lon": -73.9887654 }, + { "lat": 40.7033663, "lon": -73.9887769 }, + { "lat": 40.7031724, "lon": -73.9887620 } + ], + "tags": { + "cycleway:both": "lane", + "cycleway:both:surface": "paving_stones", + "hgv": "no", + "highway": "residential", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Adams Street", + "name:etymology:wikidata": "Q11806", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Adams", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5677962, + "bounds": { + "minlat": 40.7038197, + "minlon": -73.9884985, + "maxlat": 40.7044752, + "maxlon": -73.9884388 + }, + "nodes": [ + 11669756841, + 11945611242, + 11945611248, + 10170379768, + 11669756857, + 10170379772, + 42472722 + ], + "geometry": [ + { "lat": 40.7044752, "lon": -73.9884388 }, + { "lat": 40.7044464, "lon": -73.9884536 }, + { "lat": 40.7044390, "lon": -73.9884548 }, + { "lat": 40.7044233, "lon": -73.9884573 }, + { "lat": 40.7038918, "lon": -73.9884945 }, + { "lat": 40.7038729, "lon": -73.9884958 }, + { "lat": 40.7038197, "lon": -73.9884985 } + ], + "tags": { + "cycleway": "shared_lane", + "cycleway:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Adams Street", + "name:etymology:wikidata": "Q11806", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Adams", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5677982, + "bounds": { + "minlat": 40.7197400, + "minlon": -73.9605177, + "maxlat": 40.7214172, + "maxlon": -73.9578200 + }, + "nodes": [ + 42469511, + 6245642024, + 9273063071, + 9794890317, + 42492539, + 9794844969, + 9794890452, + 42492540 + ], + "geometry": [ + { "lat": 40.7214172, "lon": -73.9605177 }, + { "lat": 40.7213821, "lon": -73.9604608 }, + { "lat": 40.7206865, "lon": -73.9593401 }, + { "lat": 40.7206706, "lon": -73.9593144 }, + { "lat": 40.7206270, "lon": -73.9592440 }, + { "lat": 40.7205896, "lon": -73.9591839 }, + { "lat": 40.7197888, "lon": -73.9578983 }, + { "lat": 40.7197400, "lon": -73.9578200 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North 9th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "9th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5678060, + "bounds": { + "minlat": 40.7302687, + "minlon": -73.9611776, + "maxlat": 40.7304386, + "maxlon": -73.9593494 + }, + "nodes": [ + 5070244733, + 5070244732, + 9788947576, + 9788947573, + 42493348 + ], + "geometry": [ + { "lat": 40.7302687, "lon": -73.9611776 }, + { "lat": 40.7303275, "lon": -73.9605622 }, + { "lat": 40.7304245, "lon": -73.9595091 }, + { "lat": 40.7304304, "lon": -73.9594475 }, + { "lat": 40.7304386, "lon": -73.9593494 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Kent Street", + "name:etymology:wikidata": "Q725292", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5678062, + "bounds": { + "minlat": 40.7028794, + "minlon": -73.9947825, + "maxlat": 40.7029783, + "maxlon": -73.9946996 + }, + "nodes": [ + 42493375, + 6720137602, + 11674209500, + 11674209499, + 2340051732 + ], + "geometry": [ + { "lat": 40.7029783, "lon": -73.9946996 }, + { "lat": 40.7029664, "lon": -73.9947247 }, + { "lat": 40.7029519, "lon": -73.9947441 }, + { "lat": 40.7029283, "lon": -73.9947629 }, + { "lat": 40.7028794, "lon": -73.9947825 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Furman Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Furman", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5678131, + "bounds": { + "minlat": 40.7125009, + "minlon": -73.9387934, + "maxlat": 40.7132019, + "maxlon": -73.9384713 + }, + "nodes": [ + 42494193, + 8842929812, + 4660922255, + 42494194 + ], + "geometry": [ + { "lat": 40.7125009, "lon": -73.9384713 }, + { "lat": 40.7125879, "lon": -73.9385070 }, + { "lat": 40.7131538, "lon": -73.9387552 }, + { "lat": 40.7132019, "lon": -73.9387934 } + ], + "tags": { + "highway": "residential", + "name": "Olive Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5678149, + "bounds": { + "minlat": 40.7074898, + "minlon": -73.9684018, + "maxlat": 40.7077513, + "maxlon": -73.9660109 + }, + "nodes": [ + 42469449, + 9785653115, + 8468050644, + 6338023998, + 42494563, + 6338023997, + 9785653158, + 9785653128, + 42494567 + ], + "geometry": [ + { "lat": 40.7077513, "lon": -73.9684018 }, + { "lat": 40.7077435, "lon": -73.9683324 }, + { "lat": 40.7076544, "lon": -73.9675379 }, + { "lat": 40.7076481, "lon": -73.9674818 }, + { "lat": 40.7076370, "lon": -73.9673830 }, + { "lat": 40.7076280, "lon": -73.9672986 }, + { "lat": 40.7075080, "lon": -73.9661803 }, + { "lat": 40.7075016, "lon": -73.9661212 }, + { "lat": 40.7074898, "lon": -73.9660109 } + ], + "tags": { + "highway": "residential", + "name": "South 11th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "11th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5678150, + "bounds": { + "minlat": 40.7232026, + "minlon": -73.9534420, + "maxlat": 40.7248730, + "maxlon": -73.9524918 + }, + "nodes": [ + 42479273, + 9789402790, + 9789402824, + 42494578 + ], + "geometry": [ + { "lat": 40.7232026, "lon": -73.9524918 }, + { "lat": 40.7232729, "lon": -73.9525318 }, + { "lat": 40.7248157, "lon": -73.9534094 }, + { "lat": 40.7248730, "lon": -73.9534420 } + ], + "tags": { + "highway": "residential", + "name": "Guernsey Street", + "name:etymology:wikidata": "Q18910685", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Guernsey", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5678173, + "bounds": { + "minlat": 40.7106991, + "minlon": -73.9676651, + "maxlat": 40.7116490, + "maxlon": -73.9672330 + }, + "nodes": [ + 42468735, + 9990599430, + 6853667356, + 9351682775, + 9968370319, + 9968370320, + 4207788769, + 9968370321, + 42494823 + ], + "geometry": [ + { "lat": 40.7116490, "lon": -73.9672330 }, + { "lat": 40.7115935, "lon": -73.9672595 }, + { "lat": 40.7111247, "lon": -73.9674839 }, + { "lat": 40.7108821, "lon": -73.9676001 }, + { "lat": 40.7108345, "lon": -73.9676209 }, + { "lat": 40.7107932, "lon": -73.9676378 }, + { "lat": 40.7107634, "lon": -73.9676475 }, + { "lat": 40.7107303, "lon": -73.9676574 }, + { "lat": 40.7106991, "lon": -73.9676651 } + ], + "tags": { + "highway": "residential", + "name": "Dunham Place", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Dunham", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5678238, + "bounds": { + "minlat": 40.7335619, + "minlon": -73.9450892, + "maxlat": 40.7348437, + "maxlon": -73.9429620 + }, + "nodes": [ + 2839943360, + 12381737054, + 12381737049, + 7249337124, + 7250063780, + 42495840, + 13204317785, + 42523815 + ], + "geometry": [ + { "lat": 40.7335619, "lon": -73.9429620 }, + { "lat": 40.7336337, "lon": -73.9430818 }, + { "lat": 40.7336746, "lon": -73.9431500 }, + { "lat": 40.7343566, "lon": -73.9442873 }, + { "lat": 40.7346598, "lon": -73.9447929 }, + { "lat": 40.7346855, "lon": -73.9448359 }, + { "lat": 40.7347916, "lon": -73.9450127 }, + { "lat": 40.7348437, "lon": -73.9450892 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "oneway": "no", + "parking:lane:left": "diagonal", + "parking:lane:right": "parallel", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5678239, + "bounds": { + "minlat": 40.7201590, + "minlon": -73.9410334, + "maxlat": 40.7219327, + "maxlon": -73.9407450 + }, + "nodes": [ + 42476536, + 6235394695, + 8318348536, + 42495884, + 11155242431, + 42495878, + 42495871, + 11155242430, + 42484235 + ], + "geometry": [ + { "lat": 40.7219327, "lon": -73.9410334 }, + { "lat": 40.7218455, "lon": -73.9410193 }, + { "lat": 40.7217435, "lon": -73.9410064 }, + { "lat": 40.7216060, "lon": -73.9409890 }, + { "lat": 40.7213701, "lon": -73.9409482 }, + { "lat": 40.7208900, "lon": -73.9408650 }, + { "lat": 40.7204600, "lon": -73.9407940 }, + { "lat": 40.7202085, "lon": -73.9407531 }, + { "lat": 40.7201590, "lon": -73.9407450 } + ], + "tags": { + "alt_name": "Grandparents Avenue", + "highway": "residential", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5678262, + "bounds": { + "minlat": 40.6984517, + "minlon": -73.9311128, + "maxlat": 40.7037903, + "maxlon": -73.9217720 + }, + "nodes": [ + 42490298, + 9744012743, + 9959630884, + 42479524, + 9959630883, + 9744012638, + 42484348, + 9744012639, + 10089775863, + 42496644, + 10089775862, + 4702537283, + 42496649, + 4702537285, + 12883509069, + 4702537281, + 42496653, + 4702537279, + 4702537277, + 42496656, + 4702537275, + 10089775853, + 42492396, + 10089775852, + 9753035676, + 42496660, + 9753035675, + 10089775847, + 42477864, + 10089775846, + 9753035649, + 42496664, + 9753035648, + 9753035625, + 42496668, + 9753035624, + 13701142231, + 12883509073, + 9753035606, + 42496674, + 9753035607, + 12883509071, + 9796872784, + 42496676 + ], + "geometry": [ + { "lat": 40.7037903, "lon": -73.9311128 }, + { "lat": 40.7037340, "lon": -73.9310478 }, + { "lat": 40.7035151, "lon": -73.9306728 }, + { "lat": 40.7034730, "lon": -73.9305940 }, + { "lat": 40.7034447, "lon": -73.9305442 }, + { "lat": 40.7030904, "lon": -73.9299194 }, + { "lat": 40.7030470, "lon": -73.9298430 }, + { "lat": 40.7030157, "lon": -73.9297877 }, + { "lat": 40.7026642, "lon": -73.9291689 }, + { "lat": 40.7026200, "lon": -73.9290910 }, + { "lat": 40.7025875, "lon": -73.9290339 }, + { "lat": 40.7022359, "lon": -73.9284168 }, + { "lat": 40.7021920, "lon": -73.9283390 }, + { "lat": 40.7021562, "lon": -73.9282759 }, + { "lat": 40.7021301, "lon": -73.9282305 }, + { "lat": 40.7018051, "lon": -73.9276644 }, + { "lat": 40.7017620, "lon": -73.9275880 }, + { "lat": 40.7017313, "lon": -73.9275344 }, + { "lat": 40.7013798, "lon": -73.9269174 }, + { "lat": 40.7013340, "lon": -73.9268380 }, + { "lat": 40.7013023, "lon": -73.9267816 }, + { "lat": 40.7009548, "lon": -73.9261629 }, + { "lat": 40.7009100, "lon": -73.9260830 }, + { "lat": 40.7008791, "lon": -73.9260288 }, + { "lat": 40.7005255, "lon": -73.9254073 }, + { "lat": 40.7004810, "lon": -73.9253290 }, + { "lat": 40.7004525, "lon": -73.9252790 }, + { "lat": 40.7000993, "lon": -73.9246581 }, + { "lat": 40.7000560, "lon": -73.9245820 }, + { "lat": 40.7000225, "lon": -73.9245233 }, + { "lat": 40.6996698, "lon": -73.9239062 }, + { "lat": 40.6996280, "lon": -73.9238330 }, + { "lat": 40.6995905, "lon": -73.9237662 }, + { "lat": 40.6992463, "lon": -73.9231528 }, + { "lat": 40.6992050, "lon": -73.9230792 }, + { "lat": 40.6991671, "lon": -73.9230134 }, + { "lat": 40.6989810, "lon": -73.9226906 }, + { "lat": 40.6988394, "lon": -73.9224450 }, + { "lat": 40.6988169, "lon": -73.9224060 }, + { "lat": 40.6987720, "lon": -73.9223280 }, + { "lat": 40.6987384, "lon": -73.9222697 }, + { "lat": 40.6987164, "lon": -73.9222316 }, + { "lat": 40.6985155, "lon": -73.9218828 }, + { "lat": 40.6984517, "lon": -73.9217720 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Wilson Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wilson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "tiger:zip_right": "11207" + } +}, +{ + "type": "way", + "id": 5678270, + "bounds": { + "minlat": 40.7111817, + "minlon": -73.9376822, + "maxlat": 40.7121230, + "maxlon": -73.9342570 + }, + "nodes": [ + 42474051, + 9952743039, + 42496923, + 8465212333, + 9767624990, + 42490332 + ], + "geometry": [ + { "lat": 40.7111817, "lon": -73.9376822 }, + { "lat": 40.7111998, "lon": -73.9376160 }, + { "lat": 40.7116930, "lon": -73.9358080 }, + { "lat": 40.7120857, "lon": -73.9343915 }, + { "lat": 40.7121005, "lon": -73.9343380 }, + { "lat": 40.7121230, "lon": -73.9342570 } + ], + "tags": { + "highway": "residential", + "name": "Ten Eyck Street", + "name:etymology:wikidata": "Q120719529", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Ten Eyck", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5678271, + "bounds": { + "minlat": 40.7126727, + "minlon": -73.9311366, + "maxlat": 40.7132370, + "maxlon": -73.9294780 + }, + "nodes": [ + 5510296572, + 9984593508, + 5510294999, + 42496929, + 7386303079, + 9767625276, + 42496931 + ], + "geometry": [ + { "lat": 40.7126727, "lon": -73.9311292 }, + { "lat": 40.7127555, "lon": -73.9311366 }, + { "lat": 40.7128112, "lon": -73.9310963 }, + { "lat": 40.7129280, "lon": -73.9306510 }, + { "lat": 40.7131272, "lon": -73.9298949 }, + { "lat": 40.7132103, "lon": -73.9295791 }, + { "lat": 40.7132370, "lon": -73.9294780 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5678272, + "bounds": { + "minlat": 40.7095130, + "minlon": -73.9508750, + "maxlat": 40.7098940, + "maxlon": -73.9469730 + }, + "nodes": [ + 42496941, + 9752590901, + 5481854387, + 9752590879, + 42496943, + 9752590878, + 8589617578, + 9752590877, + 42489757 + ], + "geometry": [ + { "lat": 40.7095130, "lon": -73.9508750 }, + { "lat": 40.7095230, "lon": -73.9507706 }, + { "lat": 40.7095580, "lon": -73.9504039 }, + { "lat": 40.7097155, "lon": -73.9487490 }, + { "lat": 40.7097250, "lon": -73.9486550 }, + { "lat": 40.7097331, "lon": -73.9485741 }, + { "lat": 40.7098741, "lon": -73.9471709 }, + { "lat": 40.7098813, "lon": -73.9470991 }, + { "lat": 40.7098940, "lon": -73.9469730 } + ], + "tags": { + "highway": "residential", + "name": "Ten Eyck Street", + "name:etymology:wikidata": "Q120719529", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5678344, + "bounds": { + "minlat": 40.7281229, + "minlon": -73.9609978, + "maxlat": 40.7282276, + "maxlon": -73.9599025 + }, + "nodes": [ + 42498312, + 10957424647, + 7183519620, + 12580955202, + 6894978284, + 12580955201 + ], + "geometry": [ + { "lat": 40.7281229, "lon": -73.9609978 }, + { "lat": 40.7281631, "lon": -73.9605642 }, + { "lat": 40.7281684, "lon": -73.9605237 }, + { "lat": 40.7281742, "lon": -73.9604569 }, + { "lat": 40.7281928, "lon": -73.9602428 }, + { "lat": 40.7282276, "lon": -73.9599025 } + ], + "tags": { + "access": "private", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Noble Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Noble", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5678368, + "bounds": { + "minlat": 40.7006910, + "minlon": -73.9930486, + "maxlat": 40.7011345, + "maxlon": -73.9914540 + }, + "nodes": [ + 42483450, + 6224369606, + 8620121503, + 10004131576, + 42498552 + ], + "geometry": [ + { "lat": 40.7011345, "lon": -73.9930486 }, + { "lat": 40.7011181, "lon": -73.9929900 }, + { "lat": 40.7007359, "lon": -73.9916155 }, + { "lat": 40.7007175, "lon": -73.9915478 }, + { "lat": 40.7006910, "lon": -73.9914540 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Poplar Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Poplar", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5678392, + "bounds": { + "minlat": 40.7254246, + "minlon": -73.9467150, + "maxlat": 40.7270940, + "maxlon": -73.9457675 + }, + "nodes": [ + 42479299, + 9788947117, + 5891914556, + 9788947120, + 42498664 + ], + "geometry": [ + { "lat": 40.7254246, "lon": -73.9457675 }, + { "lat": 40.7255001, "lon": -73.9458104 }, + { "lat": 40.7269883, "lon": -73.9466551 }, + { "lat": 40.7270342, "lon": -73.9466812 }, + { "lat": 40.7270940, "lon": -73.9467150 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Jewel Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5678430, + "bounds": { + "minlat": 40.7229256, + "minlon": -73.9552217, + "maxlat": 40.7262682, + "maxlon": -73.9533185 + }, + "nodes": [ + 42499059, + 9789402748, + 5891904345, + 9789402621, + 42499046, + 9789402778, + 5481927197, + 9789402794, + 9789402781, + 42479268 + ], + "geometry": [ + { "lat": 40.7262682, "lon": -73.9552217 }, + { "lat": 40.7262075, "lon": -73.9551862 }, + { "lat": 40.7247193, "lon": -73.9543366 }, + { "lat": 40.7246719, "lon": -73.9543097 }, + { "lat": 40.7246010, "lon": -73.9542690 }, + { "lat": 40.7245398, "lon": -73.9542338 }, + { "lat": 40.7243351, "lon": -73.9541181 }, + { "lat": 40.7230485, "lon": -73.9533882 }, + { "lat": 40.7229977, "lon": -73.9533594 }, + { "lat": 40.7229256, "lon": -73.9533185 } + ], + "tags": { + "highway": "residential", + "name": "Dobbin Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Dobbin", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5678434, + "bounds": { + "minlat": 40.7002810, + "minlon": -73.9411490, + "maxlat": 40.7010770, + "maxlon": -73.9404200 + }, + "nodes": [ + 42499081, + 9752127070, + 9752127067, + 42499079 + ], + "geometry": [ + { "lat": 40.7010770, "lon": -73.9404200 }, + { "lat": 40.7009784, "lon": -73.9405120 }, + { "lat": 40.7003604, "lon": -73.9410763 }, + { "lat": 40.7002810, "lon": -73.9411490 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "Sumner Place", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Sumner", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5678442, + "bounds": { + "minlat": 40.6798893, + "minlon": -73.9443862, + "maxlat": 40.7004288, + "maxlon": -73.9403341 + }, + "nodes": [ + 42464995, + 9804257542, + 11229839847, + 5220904086, + 9804257506, + 42499215, + 9804257504, + 9804258001, + 42499213, + 9804258003, + 11229839845, + 9804258017, + 42499211, + 9804258019, + 11162237810, + 9804258065, + 42499209, + 9804258067, + 9265224798, + 42499207, + 9265224802, + 9804257426, + 42499201, + 9804257424, + 11229839843, + 9811007538, + 42489056, + 9811007539, + 2597738079, + 9811007507, + 42486654, + 9811007505, + 11229839841, + 9811007491, + 42495193, + 9811007489, + 2597736879, + 9811007475, + 42499192, + 9811007472, + 11229839839, + 9811007459, + 42498872, + 9811007457, + 9811007440, + 42499187, + 9811007442, + 9811007425, + 42499184, + 9811007423, + 11229839837, + 9811007409, + 42499180, + 9811007407, + 11229826635, + 9811007387, + 42499177, + 9811007389, + 9811007374, + 42499174, + 9811007372, + 9811007358, + 42499172, + 9811007356, + 11229826634, + 9811007338, + 42499167, + 9811007340, + 9811007562, + 42477907, + 9811007564, + 11229826633, + 9802915993, + 42492342, + 9802915996, + 10114218654, + 42499161, + 10114218655, + 9758161374, + 42499160, + 9752126515, + 11229826632, + 6775351694, + 6775351703, + 6775257676, + 483978221, + 2187887613, + 5329686440, + 42471870, + 5329686431, + 11229826631, + 42499154, + 9752126507, + 5487724366, + 5487724362, + 9752126503, + 42499151, + 9752127051, + 7711304351 + ], + "geometry": [ + { "lat": 40.6798893, "lon": -73.9403341 }, + { "lat": 40.6799824, "lon": -73.9403525 }, + { "lat": 40.6801359, "lon": -73.9403829 }, + { "lat": 40.6801875, "lon": -73.9403931 }, + { "lat": 40.6805704, "lon": -73.9404688 }, + { "lat": 40.6806326, "lon": -73.9404811 }, + { "lat": 40.6807116, "lon": -73.9404965 }, + { "lat": 40.6813092, "lon": -73.9406130 }, + { "lat": 40.6813703, "lon": -73.9406249 }, + { "lat": 40.6814430, "lon": -73.9406395 }, + { "lat": 40.6816667, "lon": -73.9406843 }, + { "lat": 40.6820281, "lon": -73.9407567 }, + { "lat": 40.6820988, "lon": -73.9407709 }, + { "lat": 40.6821772, "lon": -73.9407865 }, + { "lat": 40.6827130, "lon": -73.9408930 }, + { "lat": 40.6827688, "lon": -73.9409041 }, + { "lat": 40.6828405, "lon": -73.9409184 }, + { "lat": 40.6829128, "lon": -73.9409327 }, + { "lat": 40.6834981, "lon": -73.9410491 }, + { "lat": 40.6835656, "lon": -73.9410609 }, + { "lat": 40.6836431, "lon": -73.9410762 }, + { "lat": 40.6842382, "lon": -73.9411938 }, + { "lat": 40.6842998, "lon": -73.9412060 }, + { "lat": 40.6843782, "lon": -73.9412215 }, + { "lat": 40.6845763, "lon": -73.9412606 }, + { "lat": 40.6849648, "lon": -73.9413373 }, + { "lat": 40.6850309, "lon": -73.9413506 }, + { "lat": 40.6851113, "lon": -73.9413666 }, + { "lat": 40.6851976, "lon": -73.9413834 }, + { "lat": 40.6857005, "lon": -73.9414830 }, + { "lat": 40.6857638, "lon": -73.9414955 }, + { "lat": 40.6858419, "lon": -73.9415109 }, + { "lat": 40.6860781, "lon": -73.9415570 }, + { "lat": 40.6864378, "lon": -73.9416273 }, + { "lat": 40.6864970, "lon": -73.9416404 }, + { "lat": 40.6865723, "lon": -73.9416553 }, + { "lat": 40.6869298, "lon": -73.9417259 }, + { "lat": 40.6871625, "lon": -73.9417719 }, + { "lat": 40.6872280, "lon": -73.9417849 }, + { "lat": 40.6873077, "lon": -73.9418007 }, + { "lat": 40.6875540, "lon": -73.9418494 }, + { "lat": 40.6879033, "lon": -73.9419184 }, + { "lat": 40.6879625, "lon": -73.9419301 }, + { "lat": 40.6880387, "lon": -73.9419452 }, + { "lat": 40.6886290, "lon": -73.9420619 }, + { "lat": 40.6886971, "lon": -73.9420754 }, + { "lat": 40.6887750, "lon": -73.9420908 }, + { "lat": 40.6893671, "lon": -73.9422079 }, + { "lat": 40.6894285, "lon": -73.9422200 }, + { "lat": 40.6894957, "lon": -73.9422336 }, + { "lat": 40.6897024, "lon": -73.9422742 }, + { "lat": 40.6901056, "lon": -73.9423545 }, + { "lat": 40.6901605, "lon": -73.9423647 }, + { "lat": 40.6902348, "lon": -73.9423787 }, + { "lat": 40.6907897, "lon": -73.9424908 }, + { "lat": 40.6908402, "lon": -73.9425010 }, + { "lat": 40.6908927, "lon": -73.9425095 }, + { "lat": 40.6909633, "lon": -73.9425244 }, + { "lat": 40.6915645, "lon": -73.9426423 }, + { "lat": 40.6916249, "lon": -73.9426542 }, + { "lat": 40.6917040, "lon": -73.9426698 }, + { "lat": 40.6922984, "lon": -73.9427883 }, + { "lat": 40.6923589, "lon": -73.9427993 }, + { "lat": 40.6924358, "lon": -73.9428145 }, + { "lat": 40.6926670, "lon": -73.9428602 }, + { "lat": 40.6930304, "lon": -73.9429321 }, + { "lat": 40.6930918, "lon": -73.9429443 }, + { "lat": 40.6931624, "lon": -73.9429587 }, + { "lat": 40.6937697, "lon": -73.9430777 }, + { "lat": 40.6938242, "lon": -73.9430891 }, + { "lat": 40.6939037, "lon": -73.9431048 }, + { "lat": 40.6941113, "lon": -73.9431461 }, + { "lat": 40.6945068, "lon": -73.9432249 }, + { "lat": 40.6945590, "lon": -73.9432344 }, + { "lat": 40.6946229, "lon": -73.9432470 }, + { "lat": 40.6952317, "lon": -73.9433674 }, + { "lat": 40.6952900, "lon": -73.9433789 }, + { "lat": 40.6953614, "lon": -73.9433930 }, + { "lat": 40.6959549, "lon": -73.9435103 }, + { "lat": 40.6960311, "lon": -73.9435254 }, + { "lat": 40.6961157, "lon": -73.9435421 }, + { "lat": 40.6963298, "lon": -73.9435845 }, + { "lat": 40.6963937, "lon": -73.9435971 }, + { "lat": 40.6964913, "lon": -73.9436158 }, + { "lat": 40.6965910, "lon": -73.9436361 }, + { "lat": 40.6968051, "lon": -73.9436785 }, + { "lat": 40.6974658, "lon": -73.9438091 }, + { "lat": 40.6981426, "lon": -73.9439429 }, + { "lat": 40.6982209, "lon": -73.9439584 }, + { "lat": 40.6983160, "lon": -73.9439769 }, + { "lat": 40.6986748, "lon": -73.9440480 }, + { "lat": 40.6989718, "lon": -73.9441069 }, + { "lat": 40.6990462, "lon": -73.9441216 }, + { "lat": 40.6992879, "lon": -73.9441694 }, + { "lat": 40.6993369, "lon": -73.9441791 }, + { "lat": 40.6996394, "lon": -73.9442389 }, + { "lat": 40.6996981, "lon": -73.9442505 }, + { "lat": 40.7003499, "lon": -73.9443715 }, + { "lat": 40.7004288, "lon": -73.9443862 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Throop Avenue", + "name:etymology:wikidata": "Q881026", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:zip_left": "11221", + "tiger:zip_right": "11221" + } +}, +{ + "type": "way", + "id": 5678461, + "bounds": { + "minlat": 40.7022859, + "minlon": -73.9946921, + "maxlat": 40.7023724, + "maxlon": -73.9944573 + }, + "nodes": [ + 13061264878, + 9712420159, + 9712420169, + 42499339 + ], + "geometry": [ + { "lat": 40.7023724, "lon": -73.9946921 }, + { "lat": 40.7023286, "lon": -73.9945721 }, + { "lat": 40.7023106, "lon": -73.9945200 }, + { "lat": 40.7022859, "lon": -73.9944573 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Doughty Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Doughty", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5678499, + "bounds": { + "minlat": 40.7306923, + "minlon": -73.9502067, + "maxlat": 40.7367175, + "maxlon": -73.9492353 + }, + "nodes": [ + 3430220598, + 8211156899, + 42493365, + 42499729, + 42499733, + 42499736, + 42499740, + 42486608, + 5481915278, + 42499743, + 42499745, + 8097082920, + 8097082862, + 42469151 + ], + "geometry": [ + { "lat": 40.7306923, "lon": -73.9492353 }, + { "lat": 40.7307764, "lon": -73.9492492 }, + { "lat": 40.7313945, "lon": -73.9493477 }, + { "lat": 40.7321031, "lon": -73.9494623 }, + { "lat": 40.7328074, "lon": -73.9495793 }, + { "lat": 40.7335160, "lon": -73.9496921 }, + { "lat": 40.7342235, "lon": -73.9498117 }, + { "lat": 40.7349329, "lon": -73.9499284 }, + { "lat": 40.7353190, "lon": -73.9499895 }, + { "lat": 40.7356404, "lon": -73.9500402 }, + { "lat": 40.7363480, "lon": -73.9501570 }, + { "lat": 40.7365505, "lon": -73.9501883 }, + { "lat": 40.7366195, "lon": -73.9501955 }, + { "lat": 40.7367175, "lon": -73.9502067 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Provost Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5678508, + "bounds": { + "minlat": 40.7026740, + "minlon": -73.9342298, + "maxlat": 40.7033045, + "maxlon": -73.9339510 + }, + "nodes": [ + 42499797, + 9744012831, + 11498473066, + 42499796 + ], + "geometry": [ + { "lat": 40.7026740, "lon": -73.9339510 }, + { "lat": 40.7027506, "lon": -73.9339830 }, + { "lat": 40.7032427, "lon": -73.9342019 }, + { "lat": 40.7033045, "lon": -73.9342298 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Evergreen Avenue", + "name:etymology:wikidata": "Q5058720", + "oneway": "yes", + "sidewalk": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Evergreen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "tiger:zip_right": "11207" + } +}, +{ + "type": "way", + "id": 5678545, + "bounds": { + "minlat": 40.7208900, + "minlon": -73.9408650, + "maxlat": 40.7223180, + "maxlon": -73.9352841 + }, + "nodes": [ + 42500197, + 9937798010, + 9937834318, + 42500194, + 9937834320, + 9937279001, + 42490472, + 9937279003, + 42500190, + 9937278990, + 9937278991, + 42495878 + ], + "geometry": [ + { "lat": 40.7223180, "lon": -73.9352841 }, + { "lat": 40.7223006, "lon": -73.9353517 }, + { "lat": 40.7219589, "lon": -73.9366782 }, + { "lat": 40.7219260, "lon": -73.9368060 }, + { "lat": 40.7218916, "lon": -73.9369391 }, + { "lat": 40.7215279, "lon": -73.9383457 }, + { "lat": 40.7215046, "lon": -73.9384357 }, + { "lat": 40.7214837, "lon": -73.9385160 }, + { "lat": 40.7210960, "lon": -73.9400030 }, + { "lat": 40.7209263, "lon": -73.9407132 }, + { "lat": 40.7209103, "lon": -73.9407802 }, + { "lat": 40.7208900, "lon": -73.9408650 } + ], + "tags": { + "highway": "residential", + "name": "Beadel Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5678557, + "bounds": { + "minlat": 40.7030528, + "minlon": -73.9811125, + "maxlat": 40.7030712, + "maxlon": -73.9802502 + }, + "nodes": [ + 42500309, + 42500303, + 8164734035, + 10004163954, + 42500302 + ], + "geometry": [ + { "lat": 40.7030528, "lon": -73.9802502 }, + { "lat": 40.7030618, "lon": -73.9806715 }, + { "lat": 40.7030685, "lon": -73.9809880 }, + { "lat": 40.7030697, "lon": -73.9810433 }, + { "lat": 40.7030712, "lon": -73.9811125 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Evans Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Evans", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5678572, + "bounds": { + "minlat": 40.7017500, + "minlon": -73.9353360, + "maxlat": 40.7023150, + "maxlon": -73.9350890 + }, + "nodes": [ + 42500468, + 9301598195, + 9950989267, + 42500467 + ], + "geometry": [ + { "lat": 40.7023150, "lon": -73.9353360 }, + { "lat": 40.7022417, "lon": -73.9353030 }, + { "lat": 40.7018104, "lon": -73.9351153 }, + { "lat": 40.7017500, "lon": -73.9350890 } + ], + "tags": { + "highway": "residential", + "name": "Stanwix Street", + "name:etymology:wikidata": "Q6258878", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Stanwix", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5678604, + "bounds": { + "minlat": 40.7232250, + "minlon": -73.9575478, + "maxlat": 40.7251075, + "maxlon": -73.9545120 + }, + "nodes": [ + 42488118, + 11146344822, + 8468050528, + 9789335910, + 42500979, + 9789402634, + 42500973, + 5801598837, + 9789402654, + 42500969 + ], + "geometry": [ + { "lat": 40.7232250, "lon": -73.9545120 }, + { "lat": 40.7233043, "lon": -73.9546391 }, + { "lat": 40.7238825, "lon": -73.9555735 }, + { "lat": 40.7239154, "lon": -73.9556239 }, + { "lat": 40.7239521, "lon": -73.9556840 }, + { "lat": 40.7239937, "lon": -73.9557496 }, + { "lat": 40.7241922, "lon": -73.9560625 }, + { "lat": 40.7250408, "lon": -73.9574377 }, + { "lat": 40.7250672, "lon": -73.9574819 }, + { "lat": 40.7251075, "lon": -73.9575478 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North 15th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "15th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222" + } +}, +{ + "type": "way", + "id": 5678616, + "bounds": { + "minlat": 40.7052611, + "minlon": -73.9394380, + "maxlat": 40.7063710, + "maxlon": -73.9335940 + }, + "nodes": [ + 42501152, + 7274507208, + 9752593974, + 7034559387, + 42501147, + 7034559383, + 42479987, + 42501140, + 8548018141, + 7722378719 + ], + "geometry": [ + { "lat": 40.7063710, "lon": -73.9335940 }, + { "lat": 40.7063559, "lon": -73.9336736 }, + { "lat": 40.7060337, "lon": -73.9353596 }, + { "lat": 40.7060262, "lon": -73.9353990 }, + { "lat": 40.7060116, "lon": -73.9354769 }, + { "lat": 40.7059956, "lon": -73.9355611 }, + { "lat": 40.7058680, "lon": -73.9362340 }, + { "lat": 40.7055160, "lon": -73.9380730 }, + { "lat": 40.7052809, "lon": -73.9393324 }, + { "lat": 40.7052611, "lon": -73.9394380 } + ], + "tags": { + "highway": "residential", + "name": "McKibbin Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5678626, + "bounds": { + "minlat": 40.7090975, + "minlon": -73.9608366, + "maxlat": 40.7091725, + "maxlon": -73.9601115 + }, + "nodes": [ + 42501318, + 2782255531, + 5849451135, + 5849451140, + 9968370348, + 5849451131, + 9968370349, + 9968370350, + 5606446477 + ], + "geometry": [ + { "lat": 40.7091686, "lon": -73.9608366 }, + { "lat": 40.7091532, "lon": -73.9606955 }, + { "lat": 40.7091033, "lon": -73.9602781 }, + { "lat": 40.7090975, "lon": -73.9602212 }, + { "lat": 40.7090984, "lon": -73.9601999 }, + { "lat": 40.7091084, "lon": -73.9601707 }, + { "lat": 40.7091173, "lon": -73.9601538 }, + { "lat": 40.7091312, "lon": -73.9601405 }, + { "lat": 40.7091725, "lon": -73.9601115 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "South 8th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "8th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5678676, + "bounds": { + "minlat": 40.7311471, + "minlon": -73.9594665, + "maxlat": 40.7318590, + "maxlon": -73.9519711 + }, + "nodes": [ + 2987758874, + 8097159412, + 8097159319, + 42501788, + 8097159361, + 7285976849, + 42501785, + 7285976848, + 9788947630, + 8097159375, + 42501782 + ], + "geometry": [ + { "lat": 40.7318590, "lon": -73.9519711 }, + { "lat": 40.7318501, "lon": -73.9520628 }, + { "lat": 40.7316338, "lon": -73.9543811 }, + { "lat": 40.7316233, "lon": -73.9544971 }, + { "lat": 40.7316109, "lon": -73.9546165 }, + { "lat": 40.7313133, "lon": -73.9577275 }, + { "lat": 40.7313042, "lon": -73.9578282 }, + { "lat": 40.7312950, "lon": -73.9579284 }, + { "lat": 40.7311622, "lon": -73.9593227 }, + { "lat": 40.7311566, "lon": -73.9593806 }, + { "lat": 40.7311471, "lon": -73.9594665 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Java Street", + "name:etymology:wikidata": "Q3757", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5678740, + "bounds": { + "minlat": 40.7091230, + "minlon": -73.9276568, + "maxlat": 40.7108012, + "maxlon": -73.9212100 + }, + "nodes": [ + 5436391835, + 9767625163, + 9767625175, + 9959635928, + 42502278, + 9959635927, + 5436391844, + 42502281, + 5436391854, + 7170714065, + 42464209, + 9744109105, + 551613174 + ], + "geometry": [ + { "lat": 40.7091230, "lon": -73.9276568 }, + { "lat": 40.7091505, "lon": -73.9275487 }, + { "lat": 40.7091668, "lon": -73.9274875 }, + { "lat": 40.7095068, "lon": -73.9261739 }, + { "lat": 40.7095319, "lon": -73.9260768 }, + { "lat": 40.7095592, "lon": -73.9259708 }, + { "lat": 40.7098960, "lon": -73.9246637 }, + { "lat": 40.7099290, "lon": -73.9245360 }, + { "lat": 40.7099612, "lon": -73.9244118 }, + { "lat": 40.7101608, "lon": -73.9236408 }, + { "lat": 40.7103440, "lon": -73.9229330 }, + { "lat": 40.7107819, "lon": -73.9212747 }, + { "lat": 40.7108012, "lon": -73.9212100 } + ], + "tags": { + "highway": "residential", + "name": "Randolph Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5678759, + "bounds": { + "minlat": 40.6998644, + "minlon": -73.9933589, + "maxlat": 40.7004856, + "maxlon": -73.9910914 + }, + "nodes": [ + 2842884234, + 6224369594, + 10004131573, + 42502401, + 10004131574, + 7097820979, + 42483453 + ], + "geometry": [ + { "lat": 40.6998644, "lon": -73.9910914 }, + { "lat": 40.6998953, "lon": -73.9911801 }, + { "lat": 40.7000264, "lon": -73.9916684 }, + { "lat": 40.7000513, "lon": -73.9917601 }, + { "lat": 40.7000740, "lon": -73.9918418 }, + { "lat": 40.7004689, "lon": -73.9932976 }, + { "lat": 40.7004856, "lon": -73.9933589 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Middagh Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Middagh", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5678766, + "bounds": { + "minlat": 40.7104518, + "minlon": -73.9373399, + "maxlat": 40.7113360, + "maxlon": -73.9338930 + }, + "nodes": [ + 42474050, + 42502444, + 10820803573, + 8465212325, + 9767624993, + 42490329 + ], + "geometry": [ + { "lat": 40.7104518, "lon": -73.9373399 }, + { "lat": 40.7109360, "lon": -73.9354680 }, + { "lat": 40.7109572, "lon": -73.9353846 }, + { "lat": 40.7113008, "lon": -73.9340316 }, + { "lat": 40.7113120, "lon": -73.9339874 }, + { "lat": 40.7113360, "lon": -73.9338930 } + ], + "tags": { + "highway": "residential", + "name": "Meadow Street", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meadow", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5678768, + "bounds": { + "minlat": 40.7125759, + "minlon": -73.9291836, + "maxlat": 40.7133750, + "maxlon": -73.9260290 + }, + "nodes": [ + 42502453, + 9767625068, + 9325509495, + 8096283398, + 2997098698, + 10253423508, + 42502455, + 10253436209, + 9767625060, + 9767625057, + 42502458 + ], + "geometry": [ + { "lat": 40.7133750, "lon": -73.9260290 }, + { "lat": 40.7133481, "lon": -73.9261323 }, + { "lat": 40.7133335, "lon": -73.9261885 }, + { "lat": 40.7131533, "lon": -73.9268810 }, + { "lat": 40.7131360, "lon": -73.9269476 }, + { "lat": 40.7129865, "lon": -73.9275166 }, + { "lat": 40.7129650, "lon": -73.9276050 }, + { "lat": 40.7129392, "lon": -73.9277096 }, + { "lat": 40.7126127, "lon": -73.9290345 }, + { "lat": 40.7125981, "lon": -73.9290937 }, + { "lat": 40.7125759, "lon": -73.9291836 } + ], + "tags": { + "highway": "residential", + "name": "Meadow Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5678795, + "bounds": { + "minlat": 40.7259070, + "minlon": -73.9360815, + "maxlat": 40.7264162, + "maxlon": -73.9353980 + }, + "nodes": [ + 42479406, + 9789356921, + 42476680 + ], + "geometry": [ + { "lat": 40.7264162, "lon": -73.9360815 }, + { "lat": 40.7259628, "lon": -73.9354717 }, + { "lat": 40.7259070, "lon": -73.9353980 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5678815, + "bounds": { + "minlat": 40.7153346, + "minlon": -73.9438990, + "maxlat": 40.7196040, + "maxlon": -73.9428082 + }, + "nodes": [ + 42463370, + 8734527679, + 9935605439, + 42502909, + 9935605438, + 9935605429, + 42502902, + 9935605428, + 9942799112, + 42502899, + 9942799113, + 9795355863, + 42502897, + 9795355865, + 10225069717, + 9795332505, + 42502895, + 9795332504, + 10684276023, + 5482193509, + 9695836915, + 7722378713, + 7722378712 + ], + "geometry": [ + { "lat": 40.7196040, "lon": -73.9438990 }, + { "lat": 40.7195541, "lon": -73.9438646 }, + { "lat": 40.7190006, "lon": -73.9434739 }, + { "lat": 40.7189324, "lon": -73.9434315 }, + { "lat": 40.7188837, "lon": -73.9434011 }, + { "lat": 40.7182946, "lon": -73.9432971 }, + { "lat": 40.7182260, "lon": -73.9432850 }, + { "lat": 40.7181748, "lon": -73.9432767 }, + { "lat": 40.7175814, "lon": -73.9431804 }, + { "lat": 40.7175170, "lon": -73.9431700 }, + { "lat": 40.7174629, "lon": -73.9431613 }, + { "lat": 40.7168696, "lon": -73.9430654 }, + { "lat": 40.7168050, "lon": -73.9430550 }, + { "lat": 40.7167524, "lon": -73.9430461 }, + { "lat": 40.7164942, "lon": -73.9430024 }, + { "lat": 40.7161583, "lon": -73.9429455 }, + { "lat": 40.7160960, "lon": -73.9429350 }, + { "lat": 40.7160448, "lon": -73.9429264 }, + { "lat": 40.7158199, "lon": -73.9428900 }, + { "lat": 40.7157999, "lon": -73.9428861 }, + { "lat": 40.7154619, "lon": -73.9428302 }, + { "lat": 40.7153883, "lon": -73.9428181 }, + { "lat": 40.7153346, "lon": -73.9428082 } + ], + "tags": { + "highway": "residential", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5678819, + "bounds": { + "minlat": 40.7125370, + "minlon": -73.9427002, + "maxlat": 40.7146692, + "maxlon": -73.9423500 + }, + "nodes": [ + 7712107366, + 5329729656, + 9755789616, + 42502976, + 9755789617, + 9767624927, + 42502973, + 9767624930, + 9767624979, + 42502970 + ], + "geometry": [ + { "lat": 40.7146692, "lon": -73.9427002 }, + { "lat": 40.7146149, "lon": -73.9426907 }, + { "lat": 40.7140264, "lon": -73.9425946 }, + { "lat": 40.7139550, "lon": -73.9425829 }, + { "lat": 40.7138983, "lon": -73.9425737 }, + { "lat": 40.7133183, "lon": -73.9424782 }, + { "lat": 40.7132440, "lon": -73.9424661 }, + { "lat": 40.7131893, "lon": -73.9424571 }, + { "lat": 40.7126035, "lon": -73.9423609 }, + { "lat": 40.7125370, "lon": -73.9423500 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5678882, + "bounds": { + "minlat": 40.7026250, + "minlon": -73.9806900, + "maxlat": 40.7030618, + "maxlon": -73.9806715 + }, + "nodes": [ + 42500303, + 10554499069, + 42503814 + ], + "geometry": [ + { "lat": 40.7030618, "lon": -73.9806715 }, + { "lat": 40.7030201, "lon": -73.9806733 }, + { "lat": 40.7026250, "lon": -73.9806900 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Harrison Alley", + "service": "alley", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Aly", + "tiger:reviewed": "no", + "tiger:zip_left": "11201" + } +}, +{ + "type": "way", + "id": 5678887, + "bounds": { + "minlat": 40.7260833, + "minlon": -73.9597880, + "maxlat": 40.7261900, + "maxlon": -73.9586456 + }, + "nodes": [ + 42503837, + 9789402684, + 42503839 + ], + "geometry": [ + { "lat": 40.7260833, "lon": -73.9597880 }, + { "lat": 40.7261792, "lon": -73.9587461 }, + { "lat": 40.7261900, "lon": -73.9586456 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Quay Street", + "sidewalk:both": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Quay", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5678904, + "bounds": { + "minlat": 40.7016936, + "minlon": -73.9916191, + "maxlat": 40.7025773, + "maxlon": -73.9905094 + }, + "nodes": [ + 1258945612, + 6720137605, + 42503938, + 1258945407, + 248607250, + 1258945615, + 1258945371, + 248607249, + 248607248, + 7062411602, + 248607247, + 3001730948, + 6575804596, + 11673036922, + 248607236, + 6224335508, + 42499996 + ], + "geometry": [ + { "lat": 40.7016936, "lon": -73.9905094 }, + { "lat": 40.7017213, "lon": -73.9906209 }, + { "lat": 40.7017518, "lon": -73.9907101 }, + { "lat": 40.7017997, "lon": -73.9908210 }, + { "lat": 40.7018609, "lon": -73.9909443 }, + { "lat": 40.7019127, "lon": -73.9910343 }, + { "lat": 40.7019727, "lon": -73.9911193 }, + { "lat": 40.7020491, "lon": -73.9912173 }, + { "lat": 40.7021236, "lon": -73.9913150 }, + { "lat": 40.7021998, "lon": -73.9914118 }, + { "lat": 40.7022528, "lon": -73.9914751 }, + { "lat": 40.7023148, "lon": -73.9915414 }, + { "lat": 40.7023641, "lon": -73.9915903 }, + { "lat": 40.7024060, "lon": -73.9916124 }, + { "lat": 40.7024525, "lon": -73.9916191 }, + { "lat": 40.7024958, "lon": -73.9916177 }, + { "lat": 40.7025773, "lon": -73.9916125 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "layer": "0", + "maxspeed": "20 mph", + "name": "York Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "York", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5678921, + "bounds": { + "minlat": 40.7197470, + "minlon": -73.9400030, + "maxlat": 40.7210960, + "maxlon": -73.9394000 + }, + "nodes": [ + 42504209, + 9695771667, + 9937834456, + 8610941933, + 9695846836, + 42484237, + 9695846827, + 8610941930, + 9937278997, + 42500190 + ], + "geometry": [ + { "lat": 40.7197470, "lon": -73.9394000 }, + { "lat": 40.7198213, "lon": -73.9394307 }, + { "lat": 40.7198588, "lon": -73.9394497 }, + { "lat": 40.7203278, "lon": -73.9396587 }, + { "lat": 40.7203702, "lon": -73.9396769 }, + { "lat": 40.7204220, "lon": -73.9397000 }, + { "lat": 40.7204918, "lon": -73.9397318 }, + { "lat": 40.7205359, "lon": -73.9397515 }, + { "lat": 40.7210475, "lon": -73.9399812 }, + { "lat": 40.7210960, "lon": -73.9400030 } + ], + "tags": { + "highway": "residential", + "name": "Debevoise Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Debevoise", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5678923, + "bounds": { + "minlat": 40.7163612, + "minlon": -73.9384529, + "maxlat": 40.7176559, + "maxlon": -73.9378816 + }, + "nodes": [ + 42489482, + 9695771703, + 8465212331, + 2805340009, + 7226686486, + 10075776358, + 42504218 + ], + "geometry": [ + { "lat": 40.7163612, "lon": -73.9378816 }, + { "lat": 40.7164340, "lon": -73.9379145 }, + { "lat": 40.7164662, "lon": -73.9379291 }, + { "lat": 40.7168093, "lon": -73.9380768 }, + { "lat": 40.7171839, "lon": -73.9382420 }, + { "lat": 40.7175437, "lon": -73.9384100 }, + { "lat": 40.7176559, "lon": -73.9384529 } + ], + "tags": { + "highway": "residential", + "name": "Debevoise Avenue", + "sidewalk": "separate", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 5678929, + "bounds": { + "minlat": 40.7014994, + "minlon": -73.9606727, + "maxlat": 40.7061431, + "maxlon": -73.9581264 + }, + "nodes": [ + 598035431, + 42461490, + 9772858965, + 42504253, + 9772858966, + 42491426, + 598035425, + 9772858947, + 42488343, + 9772858948, + 598035424, + 42504256 + ], + "geometry": [ + { "lat": 40.7014994, "lon": -73.9606727 }, + { "lat": 40.7017110, "lon": -73.9605398 }, + { "lat": 40.7029386, "lon": -73.9599350 }, + { "lat": 40.7030320, "lon": -73.9598890 }, + { "lat": 40.7031150, "lon": -73.9598457 }, + { "lat": 40.7031913, "lon": -73.9597995 }, + { "lat": 40.7034901, "lon": -73.9596305 }, + { "lat": 40.7047007, "lon": -73.9589233 }, + { "lat": 40.7047680, "lon": -73.9588840 }, + { "lat": 40.7048520, "lon": -73.9588435 }, + { "lat": 40.7050273, "lon": -73.9587590 }, + { "lat": 40.7061431, "lon": -73.9581264 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "lanes": "1", + "name": "Williamsburg Street East", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Williamsburg; Penn", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5678934, + "bounds": { + "minlat": 40.7048220, + "minlon": -73.9380730, + "maxlat": 40.7055160, + "maxlon": -73.9378490 + }, + "nodes": [ + 42501140, + 9744012803, + 6878617431, + 10578895373, + 9744012802, + 42504272 + ], + "geometry": [ + { "lat": 40.7055160, "lon": -73.9380730 }, + { "lat": 40.7054584, "lon": -73.9380528 }, + { "lat": 40.7054440, "lon": -73.9380476 }, + { "lat": 40.7049115, "lon": -73.9378776 }, + { "lat": 40.7048856, "lon": -73.9378694 }, + { "lat": 40.7048220, "lon": -73.9378490 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "McKibbin Court", + "sidewalk:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5678940, + "bounds": { + "minlat": 40.7117520, + "minlon": -73.9663960, + "maxlat": 40.7155231, + "maxlon": -73.9557970 + }, + "nodes": [ + 42469475, + 9949550297, + 9767625437, + 9767625418, + 42504278, + 9767625420, + 8468050537, + 6235394733, + 42504281, + 6235394734, + 3070521261, + 9955210333, + 42504282, + 9955210334, + 8617830329, + 9767625383, + 42504284, + 9767625381, + 9768177633, + 42504285, + 9768177627, + 9351722024, + 9768177624, + 42480099, + 9768177616, + 5481854397, + 9351722080, + 9768177613, + 42482410 + ], + "geometry": [ + { "lat": 40.7155231, "lon": -73.9663960 }, + { "lat": 40.7155031, "lon": -73.9663279 }, + { "lat": 40.7150961, "lon": -73.9649462 }, + { "lat": 40.7150773, "lon": -73.9648826 }, + { "lat": 40.7150534, "lon": -73.9648014 }, + { "lat": 40.7150282, "lon": -73.9647342 }, + { "lat": 40.7145077, "lon": -73.9633429 }, + { "lat": 40.7144896, "lon": -73.9632934 }, + { "lat": 40.7144550, "lon": -73.9632020 }, + { "lat": 40.7144323, "lon": -73.9631405 }, + { "lat": 40.7139487, "lon": -73.9618065 }, + { "lat": 40.7139297, "lon": -73.9617561 }, + { "lat": 40.7139010, "lon": -73.9616800 }, + { "lat": 40.7138778, "lon": -73.9616167 }, + { "lat": 40.7133948, "lon": -73.9602989 }, + { "lat": 40.7133740, "lon": -73.9602422 }, + { "lat": 40.7133450, "lon": -73.9601630 }, + { "lat": 40.7133175, "lon": -73.9600936 }, + { "lat": 40.7128342, "lon": -73.9587668 }, + { "lat": 40.7127922, "lon": -73.9586521 }, + { "lat": 40.7127628, "lon": -73.9585715 }, + { "lat": 40.7122833, "lon": -73.9572575 }, + { "lat": 40.7122711, "lon": -73.9572237 }, + { "lat": 40.7122390, "lon": -73.9571360 }, + { "lat": 40.7122130, "lon": -73.9570644 }, + { "lat": 40.7119028, "lon": -73.9562116 }, + { "lat": 40.7118053, "lon": -73.9559435 }, + { "lat": 40.7117844, "lon": -73.9558859 }, + { "lat": 40.7117520, "lon": -73.9557970 } + ], + "tags": { + "highway": "residential", + "name": "South 1st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "1st", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5678955, + "bounds": { + "minlat": 40.7021600, + "minlon": -73.9789580, + "maxlat": 40.7045800, + "maxlon": -73.9783280 + }, + "nodes": [ + 42504383, + 7154021058, + 7154021060, + 10594110532, + 42504385 + ], + "geometry": [ + { "lat": 40.7021600, "lon": -73.9789580 }, + { "lat": 40.7028610, "lon": -73.9787766 }, + { "lat": 40.7037295, "lon": -73.9785506 }, + { "lat": 40.7045072, "lon": -73.9783471 }, + { "lat": 40.7045800, "lon": -73.9783280 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "West Way", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "West", + "tiger:name_type": "Way", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5678975, + "bounds": { + "minlat": 40.7030528, + "minlon": -73.9802502, + "maxlat": 40.7035493, + "maxlon": -73.9799867 + }, + "nodes": [ + 42472736, + 10554499061, + 42500309 + ], + "geometry": [ + { "lat": 40.7035493, "lon": -73.9799867 }, + { "lat": 40.7031795, "lon": -73.9802017 }, + { "lat": 40.7030528, "lon": -73.9802502 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Little Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Little", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5679047, + "bounds": { + "minlat": 40.7237771, + "minlon": -73.9375167, + "maxlat": 40.7238220, + "maxlon": -73.9373564 + }, + "nodes": [ + 42473313, + 5186081982 + ], + "geometry": [ + { "lat": 40.7237771, "lon": -73.9375167 }, + { "lat": 40.7238220, "lon": -73.9373564 } + ], + "tags": { + "destination": "BQE", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Cherry Street", + "oneway": "yes", + "turn:lanes": "slight_left|slight_left;slight_right" + } +}, +{ + "type": "way", + "id": 5679067, + "bounds": { + "minlat": 40.7106006, + "minlon": -73.9685064, + "maxlat": 40.7107933, + "maxlon": -73.9667821 + }, + "nodes": [ + 9450686171, + 9968370322, + 42494823, + 9785653021, + 42505376 + ], + "geometry": [ + { "lat": 40.7107933, "lon": -73.9685064 }, + { "lat": 40.7107843, "lon": -73.9684282 }, + { "lat": 40.7106991, "lon": -73.9676651 }, + { "lat": 40.7106118, "lon": -73.9668847 }, + { "lat": 40.7106006, "lon": -73.9667821 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 5679073, + "bounds": { + "minlat": 40.7180129, + "minlon": -73.9316634, + "maxlat": 40.7181271, + "maxlon": -73.9316112 + }, + "nodes": [ + 42489494, + 9937798001, + 7921873208 + ], + "geometry": [ + { "lat": 40.7180129, "lon": -73.9316112 }, + { "lat": 40.7181196, "lon": -73.9316603 }, + { "lat": 40.7181271, "lon": -73.9316634 } + ], + "tags": { + "highway": "service", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637" + } +}, +{ + "type": "way", + "id": 5679077, + "bounds": { + "minlat": 40.7055611, + "minlon": -73.9266450, + "maxlat": 40.7057506, + "maxlon": -73.9265920 + }, + "nodes": [ + 42505684, + 9744012699, + 42504158 + ], + "geometry": [ + { "lat": 40.7057506, "lon": -73.9266450 }, + { "lat": 40.7056422, "lon": -73.9266147 }, + { "lat": 40.7055611, "lon": -73.9265920 } + ], + "tags": { + "highway": "residential", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5679111, + "bounds": { + "minlat": 40.7187922, + "minlon": -73.9372582, + "maxlat": 40.7192239, + "maxlon": -73.9355987 + }, + "nodes": [ + 42490377, + 9695771686, + 8465212317, + 8465212319, + 9937834391, + 42505924 + ], + "geometry": [ + { "lat": 40.7187922, "lon": -73.9372582 }, + { "lat": 40.7188205, "lon": -73.9371445 }, + { "lat": 40.7188341, "lon": -73.9370924 }, + { "lat": 40.7191664, "lon": -73.9358191 }, + { "lat": 40.7191866, "lon": -73.9357418 }, + { "lat": 40.7192239, "lon": -73.9355987 } + ], + "tags": { + "highway": "unclassified", + "name": "Withers Street" + } +}, +{ + "type": "way", + "id": 5679113, + "bounds": { + "minlat": 40.7165454, + "minlon": -73.9526780, + "maxlat": 40.7166656, + "maxlon": -73.9520488 + }, + "nodes": [ + 42480130, + 2089937824, + 6235394610, + 42505929 + ], + "geometry": [ + { "lat": 40.7165454, "lon": -73.9526780 }, + { "lat": 40.7166130, "lon": -73.9525975 }, + { "lat": 40.7166541, "lon": -73.9521690 }, + { "lat": 40.7166656, "lon": -73.9520488 } + ], + "tags": { + "highway": "residential", + "name": "Withers Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5679141, + "bounds": { + "minlat": 40.7142042, + "minlon": -73.9622901, + "maxlat": 40.7197594, + "maxlon": -73.9532772 + }, + "nodes": [ + 42476565, + 6235394645, + 8425776222, + 9949550255, + 9949550252, + 42480139, + 9949550249, + 6235394633, + 42506186, + 6235394631, + 6248588451, + 42506181, + 6248588449, + 5481954240, + 9795044636, + 42506177, + 9795044638, + 10091724028, + 9795044578, + 42506174, + 9795044579, + 6248588428, + 42506170, + 6248588427, + 6248588431, + 42469499 + ], + "geometry": [ + { "lat": 40.7142042, "lon": -73.9532772 }, + { "lat": 40.7142280, "lon": -73.9533900 }, + { "lat": 40.7143125, "lon": -73.9535297 }, + { "lat": 40.7148243, "lon": -73.9543687 }, + { "lat": 40.7148435, "lon": -73.9544001 }, + { "lat": 40.7148800, "lon": -73.9544600 }, + { "lat": 40.7149228, "lon": -73.9545288 }, + { "lat": 40.7156489, "lon": -73.9556947 }, + { "lat": 40.7157020, "lon": -73.9557800 }, + { "lat": 40.7157528, "lon": -73.9558614 }, + { "lat": 40.7164473, "lon": -73.9569738 }, + { "lat": 40.7164830, "lon": -73.9570310 }, + { "lat": 40.7165228, "lon": -73.9570953 }, + { "lat": 40.7169570, "lon": -73.9577970 }, + { "lat": 40.7172454, "lon": -73.9582630 }, + { "lat": 40.7172800, "lon": -73.9583190 }, + { "lat": 40.7173238, "lon": -73.9583894 }, + { "lat": 40.7173660, "lon": -73.9584573 }, + { "lat": 40.7180391, "lon": -73.9595403 }, + { "lat": 40.7180800, "lon": -73.9596060 }, + { "lat": 40.7181272, "lon": -73.9596816 }, + { "lat": 40.7189295, "lon": -73.9609663 }, + { "lat": 40.7189680, "lon": -73.9610280 }, + { "lat": 40.7190125, "lon": -73.9610994 }, + { "lat": 40.7197297, "lon": -73.9622389 }, + { "lat": 40.7197594, "lon": -73.9622901 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "North 6th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "6th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5679151, + "bounds": { + "minlat": 40.7233950, + "minlon": -73.9562761, + "maxlat": 40.7243295, + "maxlon": -73.9551290 + }, + "nodes": [ + 42488122, + 9789402624, + 9998760553, + 9998760554, + 1056087637, + 9927158547, + 42500979, + 9927158546, + 9779533046, + 42506291 + ], + "geometry": [ + { "lat": 40.7243295, "lon": -73.9551290 }, + { "lat": 40.7243044, "lon": -73.9552285 }, + { "lat": 40.7242673, "lon": -73.9553295 }, + { "lat": 40.7242479, "lon": -73.9553714 }, + { "lat": 40.7242186, "lon": -73.9554075 }, + { "lat": 40.7240029, "lon": -73.9556296 }, + { "lat": 40.7239521, "lon": -73.9556840 }, + { "lat": 40.7238947, "lon": -73.9557438 }, + { "lat": 40.7234536, "lon": -73.9562194 }, + { "lat": 40.7233950, "lon": -73.9562761 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5679155, + "bounds": { + "minlat": 40.7316797, + "minlon": -73.9615130, + "maxlat": 40.7318577, + "maxlon": -73.9595841 + }, + "nodes": [ + 42506507, + 9478443273, + 10735878470, + 9478443287, + 2479433784, + 7008335420, + 42506511 + ], + "geometry": [ + { "lat": 40.7316797, "lon": -73.9615130 }, + { "lat": 40.7316872, "lon": -73.9614321 }, + { "lat": 40.7316941, "lon": -73.9613575 }, + { "lat": 40.7316977, "lon": -73.9613188 }, + { "lat": 40.7318456, "lon": -73.9597164 }, + { "lat": 40.7318488, "lon": -73.9596813 }, + { "lat": 40.7318577, "lon": -73.9595841 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "India Street", + "name:etymology:wikidata": "Q668", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "India", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5679180, + "bounds": { + "minlat": 40.7026517, + "minlon": -73.9651418, + "maxlat": 40.7068282, + "maxlon": -73.9585426 + }, + "nodes": [ + 42469425, + 4999422741, + 9776829256, + 42506392, + 9776829258, + 8344812281, + 7154127347, + 7410755972, + 7714840242, + 8509196341, + 6248573331, + 42506827, + 6235394772, + 6235394767, + 42506832, + 6235394769, + 598033027, + 598033028, + 8617784306, + 598033029 + ], + "geometry": [ + { "lat": 40.7026517, "lon": -73.9651418 }, + { "lat": 40.7026934, "lon": -73.9650773 }, + { "lat": 40.7030532, "lon": -73.9645222 }, + { "lat": 40.7031324, "lon": -73.9643999 }, + { "lat": 40.7031854, "lon": -73.9643152 }, + { "lat": 40.7036133, "lon": -73.9636721 }, + { "lat": 40.7036451, "lon": -73.9636233 }, + { "lat": 40.7037160, "lon": -73.9635078 }, + { "lat": 40.7037322, "lon": -73.9634827 }, + { "lat": 40.7039396, "lon": -73.9631622 }, + { "lat": 40.7047335, "lon": -73.9619353 }, + { "lat": 40.7047860, "lon": -73.9618540 }, + { "lat": 40.7048397, "lon": -73.9617752 }, + { "lat": 40.7058547, "lon": -73.9602047 }, + { "lat": 40.7058980, "lon": -73.9601380 }, + { "lat": 40.7059451, "lon": -73.9600611 }, + { "lat": 40.7067496, "lon": -73.9588167 }, + { "lat": 40.7068282, "lon": -73.9586569 }, + { "lat": 40.7068134, "lon": -73.9585978 }, + { "lat": 40.7067997, "lon": -73.9585426 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Ross Street", + "name:etymology:wikidata": "Q655575", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Ross", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5679226, + "bounds": { + "minlat": 40.7157123, + "minlon": -73.9358600, + "maxlat": 40.7158791, + "maxlon": -73.9352030 + }, + "nodes": [ + 42490356, + 5838943043, + 2839776941, + 42507944 + ], + "geometry": [ + { "lat": 40.7157123, "lon": -73.9358600 }, + { "lat": 40.7157346, "lon": -73.9357722 }, + { "lat": 40.7158051, "lon": -73.9354955 }, + { "lat": 40.7158791, "lon": -73.9352030 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 5679228, + "bounds": { + "minlat": 40.7152003, + "minlon": -73.9386893, + "maxlat": 40.7153247, + "maxlon": -73.9356282 + }, + "nodes": [ + 42494204, + 9527375819, + 11107999477, + 11001870874, + 11001870875, + 5838942995, + 5838942987, + 42490348 + ], + "geometry": [ + { "lat": 40.7153247, "lon": -73.9386893 }, + { "lat": 40.7153203, "lon": -73.9386402 }, + { "lat": 40.7153188, "lon": -73.9386030 }, + { "lat": 40.7152876, "lon": -73.9378152 }, + { "lat": 40.7152324, "lon": -73.9364228 }, + { "lat": 40.7152066, "lon": -73.9357729 }, + { "lat": 40.7152031, "lon": -73.9357116 }, + { "lat": 40.7152003, "lon": -73.9356282 } + ], + "tags": { + "bicycle": "designated", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Sharon Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5679242, + "bounds": { + "minlat": 40.7019062, + "minlon": -73.9613015, + "maxlat": 40.7067997, + "maxlon": -73.9585426 + }, + "nodes": [ + 598033029, + 598035435, + 42508127, + 9772858952, + 42508123, + 9772858951, + 42488330, + 598035417, + 6235394784, + 42508120, + 6235395085, + 7980962787, + 6248573327, + 7153159875, + 8100464261, + 598035427 + ], + "geometry": [ + { "lat": 40.7067997, "lon": -73.9585426 }, + { "lat": 40.7063715, "lon": -73.9586622 }, + { "lat": 40.7055907, "lon": -73.9591021 }, + { "lat": 40.7052589, "lon": -73.9592932 }, + { "lat": 40.7051810, "lon": -73.9593380 }, + { "lat": 40.7051105, "lon": -73.9593786 }, + { "lat": 40.7040815, "lon": -73.9599711 }, + { "lat": 40.7037970, "lon": -73.9601096 }, + { "lat": 40.7035234, "lon": -73.9602922 }, + { "lat": 40.7034370, "lon": -73.9603410 }, + { "lat": 40.7033538, "lon": -73.9603972 }, + { "lat": 40.7029602, "lon": -73.9606402 }, + { "lat": 40.7028960, "lon": -73.9606805 }, + { "lat": 40.7028871, "lon": -73.9606861 }, + { "lat": 40.7024123, "lon": -73.9609840 }, + { "lat": 40.7019062, "lon": -73.9613015 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Williamsburg Street West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Williamsburg", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5679250, + "bounds": { + "minlat": 40.6990370, + "minlon": -73.9389020, + "maxlat": 40.7002490, + "maxlon": -73.9377280 + }, + "nodes": [ + 42508233, + 9301423382, + 7677199884, + 9730373412, + 42505468 + ], + "geometry": [ + { "lat": 40.7002490, "lon": -73.9377280 }, + { "lat": 40.7002006, "lon": -73.9377749 }, + { "lat": 40.6993926, "lon": -73.9385576 }, + { "lat": 40.6990946, "lon": -73.9388462 }, + { "lat": 40.6990370, "lon": -73.9389020 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Park Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Park", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5679323, + "bounds": { + "minlat": 40.7029006, + "minlon": -73.9441935, + "maxlat": 40.7030530, + "maxlon": -73.9424950 + }, + "nodes": [ + 42509015, + 9752126979, + 7237785937, + 7225120406, + 9752126985, + 42467811 + ], + "geometry": [ + { "lat": 40.7029006, "lon": -73.9441935 }, + { "lat": 40.7029085, "lon": -73.9441054 }, + { "lat": 40.7029473, "lon": -73.9436731 }, + { "lat": 40.7030023, "lon": -73.9430597 }, + { "lat": 40.7030423, "lon": -73.9426142 }, + { "lat": 40.7030530, "lon": -73.9424950 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Varet Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Varet", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5679325, + "bounds": { + "minlat": 40.7033720, + "minlon": -73.9376480, + "maxlat": 40.7042770, + "maxlon": -73.9330110 + }, + "nodes": [ + 42509036, + 9646979741, + 7769675385, + 7769674382, + 9744012858, + 9744012864, + 42509037, + 9744012850, + 8228286045, + 9744012848, + 42509039 + ], + "geometry": [ + { "lat": 40.7033720, "lon": -73.9376480 }, + { "lat": 40.7034055, "lon": -73.9375484 }, + { "lat": 40.7036332, "lon": -73.9363448 }, + { "lat": 40.7037940, "lon": -73.9355162 }, + { "lat": 40.7039066, "lon": -73.9349357 }, + { "lat": 40.7039174, "lon": -73.9348784 }, + { "lat": 40.7039335, "lon": -73.9347934 }, + { "lat": 40.7039488, "lon": -73.9347120 }, + { "lat": 40.7042477, "lon": -73.9331637 }, + { "lat": 40.7042595, "lon": -73.9331022 }, + { "lat": 40.7042770, "lon": -73.9330110 } + ], + "tags": { + "highway": "residential", + "name": "Varet Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5679340, + "bounds": { + "minlat": 40.7363206, + "minlon": -73.9580962, + "maxlat": 40.7365857, + "maxlon": -73.9553081 + }, + "nodes": [ + 4593135584, + 8097082864, + 42509161 + ], + "geometry": [ + { "lat": 40.7363206, "lon": -73.9580962 }, + { "lat": 40.7365768, "lon": -73.9554167 }, + { "lat": 40.7365857, "lon": -73.9553081 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clay Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5679386, + "bounds": { + "minlat": 40.7242196, + "minlon": -73.9311751, + "maxlat": 40.7249011, + "maxlon": -73.9308795 + }, + "nodes": [ + 42509694, + 8281116514, + 42509697 + ], + "geometry": [ + { "lat": 40.7242196, "lon": -73.9308795 }, + { "lat": 40.7248763, "lon": -73.9311647 }, + { "lat": 40.7249011, "lon": -73.9311751 } + ], + "tags": { + "highway": "unclassified", + "name": "Gardner Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5679390, + "bounds": { + "minlat": 40.7108070, + "minlon": -73.9263023, + "maxlat": 40.7139782, + "maxlon": -73.9248888 + }, + "nodes": [ + 597676464, + 10754122134, + 9325509489, + 9767625106, + 42509743, + 9767625105, + 9325509488, + 42509746, + 42509751, + 42502453, + 5423609579, + 42484146 + ], + "geometry": [ + { "lat": 40.7108070, "lon": -73.9248888 }, + { "lat": 40.7108364, "lon": -73.9249019 }, + { "lat": 40.7112333, "lon": -73.9250785 }, + { "lat": 40.7112793, "lon": -73.9250990 }, + { "lat": 40.7113400, "lon": -73.9251260 }, + { "lat": 40.7114262, "lon": -73.9251639 }, + { "lat": 40.7114687, "lon": -73.9251826 }, + { "lat": 40.7120254, "lon": -73.9254277 }, + { "lat": 40.7126930, "lon": -73.9257300 }, + { "lat": 40.7133750, "lon": -73.9260290 }, + { "lat": 40.7138863, "lon": -73.9262598 }, + { "lat": 40.7139782, "lon": -73.9263023 } + ], + "tags": { + "highway": "residential", + "name": "Gardner Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Gardner", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5679401, + "bounds": { + "minlat": 40.7181014, + "minlon": -73.9369490, + "maxlat": 40.7185212, + "maxlon": -73.9352861 + }, + "nodes": [ + 42490375, + 9695771753, + 9937834394, + 42509901 + ], + "geometry": [ + { "lat": 40.7181014, "lon": -73.9369490 }, + { "lat": 40.7181297, "lon": -73.9368369 }, + { "lat": 40.7184871, "lon": -73.9354212 }, + { "lat": 40.7185212, "lon": -73.9352861 } + ], + "tags": { + "highway": "unclassified", + "name": "Jackson Street" + } +}, +{ + "type": "way", + "id": 5679402, + "bounds": { + "minlat": 40.7161554, + "minlon": -73.9501614, + "maxlat": 40.7162133, + "maxlon": -73.9497154 + }, + "nodes": [ + 42476497, + 9802943832, + 7925457345, + 7925457341, + 9802943835, + 42509922 + ], + "geometry": [ + { "lat": 40.7162133, "lon": -73.9501614 }, + { "lat": 40.7161713, "lon": -73.9501001 }, + { "lat": 40.7161554, "lon": -73.9500767 }, + { "lat": 40.7161697, "lon": -73.9498711 }, + { "lat": 40.7161726, "lon": -73.9498113 }, + { "lat": 40.7161773, "lon": -73.9497154 } + ], + "tags": { + "highway": "residential", + "name": "Jackson Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5679403, + "bounds": { + "minlat": 40.7159585, + "minlon": -73.9519261, + "maxlat": 40.7160281, + "maxlon": -73.9511720 + }, + "nodes": [ + 42476610, + 9945679628, + 5779992389, + 5779992400, + 42509952 + ], + "geometry": [ + { "lat": 40.7160281, "lon": -73.9511720 }, + { "lat": 40.7160151, "lon": -73.9513128 }, + { "lat": 40.7159723, "lon": -73.9517765 }, + { "lat": 40.7159673, "lon": -73.9518301 }, + { "lat": 40.7159585, "lon": -73.9519261 } + ], + "tags": { + "highway": "residential", + "name": "Jackson Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5679411, + "bounds": { + "minlat": 40.7228790, + "minlon": -73.9410430, + "maxlat": 40.7278410, + "maxlon": -73.9402304 + }, + "nodes": [ + 42510089, + 9788947392, + 5891916889, + 9788947041, + 42479397, + 9788947040, + 8610941934, + 9789356906, + 42509188, + 9789356903, + 9789356899, + 9789356900, + 42476663 + ], + "geometry": [ + { "lat": 40.7278410, "lon": -73.9410430 }, + { "lat": 40.7277713, "lon": -73.9410316 }, + { "lat": 40.7260932, "lon": -73.9407576 }, + { "lat": 40.7260518, "lon": -73.9407508 }, + { "lat": 40.7259730, "lon": -73.9407380 }, + { "lat": 40.7259091, "lon": -73.9407274 }, + { "lat": 40.7235759, "lon": -73.9403431 }, + { "lat": 40.7235283, "lon": -73.9403352 }, + { "lat": 40.7234722, "lon": -73.9403254 }, + { "lat": 40.7233987, "lon": -73.9403139 }, + { "lat": 40.7229988, "lon": -73.9402496 }, + { "lat": 40.7229503, "lon": -73.9402419 }, + { "lat": 40.7228790, "lon": -73.9402304 } + ], + "tags": { + "highway": "residential", + "name": "Sutton Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5679418, + "bounds": { + "minlat": 40.7042290, + "minlon": -73.9810200, + "maxlat": 40.7053301, + "maxlon": -73.9809370 + }, + "nodes": [ + 42510153, + 42487131, + 5345736608, + 8262936215, + 42479472 + ], + "geometry": [ + { "lat": 40.7053301, "lon": -73.9809370 }, + { "lat": 40.7047980, "lon": -73.9809760 }, + { "lat": 40.7043042, "lon": -73.9810142 }, + { "lat": 40.7042686, "lon": -73.9810169 }, + { "lat": 40.7042290, "lon": -73.9810200 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Hudson Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5679455, + "bounds": { + "minlat": 40.7194380, + "minlon": -73.9406220, + "maxlat": 40.7205760, + "maxlon": -73.9362090 + }, + "nodes": [ + 42495865, + 9695771645, + 10923325014, + 9937834447, + 42504209, + 9937834446, + 9695771626, + 42490467, + 9695771640, + 8465212336, + 9695771641, + 42511005 + ], + "geometry": [ + { "lat": 40.7194380, "lon": -73.9406220 }, + { "lat": 40.7194633, "lon": -73.9405297 }, + { "lat": 40.7194763, "lon": -73.9404781 }, + { "lat": 40.7197262, "lon": -73.9394829 }, + { "lat": 40.7197470, "lon": -73.9394000 }, + { "lat": 40.7197676, "lon": -73.9393197 }, + { "lat": 40.7201281, "lon": -73.9379135 }, + { "lat": 40.7201499, "lon": -73.9378294 }, + { "lat": 40.7201719, "lon": -73.9377437 }, + { "lat": 40.7205274, "lon": -73.9363936 }, + { "lat": 40.7205417, "lon": -73.9363394 }, + { "lat": 40.7205760, "lon": -73.9362090 } + ], + "tags": { + "highway": "residential", + "name": "Richardson Street" + } +}, +{ + "type": "way", + "id": 5679456, + "bounds": { + "minlat": 40.7181059, + "minlon": -73.9522895, + "maxlat": 40.7184550, + "maxlon": -73.9484160 + }, + "nodes": [ + 13266680768, + 13266680769, + 6228178110, + 5481954264, + 5481954260, + 9789424632, + 42511013, + 9789424634, + 9789424647, + 42491217 + ], + "geometry": [ + { "lat": 40.7181059, "lon": -73.9522895 }, + { "lat": 40.7181062, "lon": -73.9522536 }, + { "lat": 40.7181087, "lon": -73.9521824 }, + { "lat": 40.7182127, "lon": -73.9509745 }, + { "lat": 40.7182310, "lon": -73.9507835 }, + { "lat": 40.7182909, "lon": -73.9501602 }, + { "lat": 40.7183000, "lon": -73.9500650 }, + { "lat": 40.7183083, "lon": -73.9499768 }, + { "lat": 40.7184463, "lon": -73.9485085 }, + { "lat": 40.7184550, "lon": -73.9484160 } + ], + "tags": { + "highway": "residential", + "name": "Richardson Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5679457, + "bounds": { + "minlat": 40.7081126, + "minlon": -73.9506595, + "maxlat": 40.7099880, + "maxlon": -73.9332960 + }, + "nodes": [ + 42474162, + 42511041, + 6212365396, + 9752593869, + 42511044, + 9752593868, + 8617830321, + 9752593889, + 42491159, + 9752593888, + 6943637603, + 42511050, + 6943637600, + 6943576182, + 42467835, + 6943576181, + 9752593898, + 42502959, + 9752593897, + 9752593904, + 42511123, + 9752593903, + 9755371980, + 9755371993, + 42474044, + 9755371981, + 11226202509, + 9952743027, + 42511131, + 9952743026, + 8465212318, + 9767625018, + 42490325 + ], + "geometry": [ + { "lat": 40.7081672, "lon": -73.9506595 }, + { "lat": 40.7081126, "lon": -73.9505358 }, + { "lat": 40.7082156, "lon": -73.9493769 }, + { "lat": 40.7082960, "lon": -73.9485177 }, + { "lat": 40.7083050, "lon": -73.9484210 }, + { "lat": 40.7083142, "lon": -73.9483301 }, + { "lat": 40.7084522, "lon": -73.9468989 }, + { "lat": 40.7084554, "lon": -73.9468661 }, + { "lat": 40.7084660, "lon": -73.9467560 }, + { "lat": 40.7084745, "lon": -73.9466706 }, + { "lat": 40.7086165, "lon": -73.9452101 }, + { "lat": 40.7086250, "lon": -73.9451250 }, + { "lat": 40.7086325, "lon": -73.9450436 }, + { "lat": 40.7087707, "lon": -73.9435512 }, + { "lat": 40.7087810, "lon": -73.9434400 }, + { "lat": 40.7087915, "lon": -73.9433316 }, + { "lat": 40.7089348, "lon": -73.9418532 }, + { "lat": 40.7089440, "lon": -73.9417590 }, + { "lat": 40.7089514, "lon": -73.9416763 }, + { "lat": 40.7090912, "lon": -73.9401906 }, + { "lat": 40.7091020, "lon": -73.9400760 }, + { "lat": 40.7091120, "lon": -73.9399684 }, + { "lat": 40.7093639, "lon": -73.9372462 }, + { "lat": 40.7093710, "lon": -73.9371785 }, + { "lat": 40.7093778, "lon": -73.9370963 }, + { "lat": 40.7093851, "lon": -73.9370221 }, + { "lat": 40.7094283, "lon": -73.9365837 }, + { "lat": 40.7095875, "lon": -73.9349658 }, + { "lat": 40.7095935, "lon": -73.9348751 }, + { "lat": 40.7095985, "lon": -73.9347930 }, + { "lat": 40.7099516, "lon": -73.9334354 }, + { "lat": 40.7099637, "lon": -73.9333892 }, + { "lat": 40.7099880, "lon": -73.9332960 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Scholes Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5679459, + "bounds": { + "minlat": 40.7120254, + "minlon": -73.9254277, + "maxlat": 40.7128398, + "maxlon": -73.9222082 + }, + "nodes": [ + 42509746, + 9767625095, + 9325509485, + 9325509487, + 9767625093, + 42474020, + 9767625094, + 9325509486, + 9325509484, + 9767625115, + 42477659 + ], + "geometry": [ + { "lat": 40.7120254, "lon": -73.9254277 }, + { "lat": 40.7120464, "lon": -73.9253451 }, + { "lat": 40.7120628, "lon": -73.9252808 }, + { "lat": 40.7123841, "lon": -73.9240194 }, + { "lat": 40.7123995, "lon": -73.9239595 }, + { "lat": 40.7124280, "lon": -73.9238471 }, + { "lat": 40.7124488, "lon": -73.9237615 }, + { "lat": 40.7124634, "lon": -73.9237061 }, + { "lat": 40.7127919, "lon": -73.9223989 }, + { "lat": 40.7128080, "lon": -73.9223347 }, + { "lat": 40.7128398, "lon": -73.9222082 } + ], + "tags": { + "highway": "residential", + "name": "Scholes Street", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5679519, + "bounds": { + "minlat": 40.6996960, + "minlon": -73.9261231, + "maxlat": 40.7056676, + "maxlon": -73.9155620 + }, + "nodes": [ + 7711304345, + 9744012782, + 9450732547, + 10087025188, + 42511908, + 10087025187, + 10287737725, + 9744131184, + 42511911, + 9744131185, + 9704024934, + 42511913, + 9704024928, + 42492385, + 9704024961, + 9704024918, + 42506548, + 9703994311, + 10087025190, + 42477871, + 10087025189, + 9752992716, + 42511927, + 9752992715, + 10087025180, + 42511930, + 10087025181, + 9753035563, + 42511934, + 9753035562, + 10693892817, + 9753035567, + 42509655, + 9753035566, + 9753035556, + 42471602, + 9753035555, + 9753035542, + 42501190, + 9753035541, + 10087025173, + 42511953, + 10087025172, + 11047362255, + 42477552 + ], + "geometry": [ + { "lat": 40.7056676, "lon": -73.9261231 }, + { "lat": 40.7056371, "lon": -73.9260345 }, + { "lat": 40.7056307, "lon": -73.9260126 }, + { "lat": 40.7052923, "lon": -73.9254113 }, + { "lat": 40.7052513, "lon": -73.9253384 }, + { "lat": 40.7052196, "lon": -73.9252826 }, + { "lat": 40.7048862, "lon": -73.9246958 }, + { "lat": 40.7048666, "lon": -73.9246614 }, + { "lat": 40.7048242, "lon": -73.9245868 }, + { "lat": 40.7047907, "lon": -73.9245272 }, + { "lat": 40.7044367, "lon": -73.9238978 }, + { "lat": 40.7043996, "lon": -73.9238320 }, + { "lat": 40.7043619, "lon": -73.9237637 }, + { "lat": 40.7039695, "lon": -73.9230792 }, + { "lat": 40.7039342, "lon": -73.9230183 }, + { "lat": 40.7035816, "lon": -73.9224105 }, + { "lat": 40.7035371, "lon": -73.9223332 }, + { "lat": 40.7035031, "lon": -73.9222722 }, + { "lat": 40.7031553, "lon": -73.9216509 }, + { "lat": 40.7031154, "lon": -73.9215796 }, + { "lat": 40.7030829, "lon": -73.9215225 }, + { "lat": 40.7027305, "lon": -73.9209022 }, + { "lat": 40.7026871, "lon": -73.9208258 }, + { "lat": 40.7026536, "lon": -73.9207668 }, + { "lat": 40.7023036, "lon": -73.9201509 }, + { "lat": 40.7022600, "lon": -73.9200741 }, + { "lat": 40.7022272, "lon": -73.9200164 }, + { "lat": 40.7018711, "lon": -73.9193897 }, + { "lat": 40.7018324, "lon": -73.9193216 }, + { "lat": 40.7017992, "lon": -73.9192632 }, + { "lat": 40.7014745, "lon": -73.9186913 }, + { "lat": 40.7014483, "lon": -73.9186451 }, + { "lat": 40.7014055, "lon": -73.9185704 }, + { "lat": 40.7013739, "lon": -73.9185149 }, + { "lat": 40.7010196, "lon": -73.9178913 }, + { "lat": 40.7009776, "lon": -73.9178173 }, + { "lat": 40.7009411, "lon": -73.9177562 }, + { "lat": 40.7005805, "lon": -73.9171531 }, + { "lat": 40.7005371, "lon": -73.9170805 }, + { "lat": 40.7005031, "lon": -73.9170174 }, + { "lat": 40.7001635, "lon": -73.9163883 }, + { "lat": 40.7001236, "lon": -73.9163144 }, + { "lat": 40.7000899, "lon": -73.9162550 }, + { "lat": 40.6997376, "lon": -73.9156352 }, + { "lat": 40.6996960, "lon": -73.9155620 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Irving Avenue", + "name:etymology:wikidata": "Q181667", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5679527, + "bounds": { + "minlat": 40.7208388, + "minlon": -73.9449106, + "maxlat": 40.7210011, + "maxlon": -73.9446747 + }, + "nodes": [ + 42502922, + 9789393770, + 2987758901 + ], + "geometry": [ + { "lat": 40.7210011, "lon": -73.9446747 }, + { "lat": 40.7208855, "lon": -73.9448241 }, + { "lat": 40.7208388, "lon": -73.9449106 } + ], + "tags": { + "highway": "residential", + "name": "Bayard Street", + "name:etymology:wikidata": "Q508327", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5679529, + "bounds": { + "minlat": 40.7228676, + "minlon": -73.9483730, + "maxlat": 40.7265480, + "maxlon": -73.9462848 + }, + "nodes": [ + 42509202, + 6228788706, + 10703367820, + 5891916891, + 6732947946, + 42479294, + 6732947944, + 9788947171, + 42512081 + ], + "geometry": [ + { "lat": 40.7228676, "lon": -73.9462848 }, + { "lat": 40.7229353, "lon": -73.9463157 }, + { "lat": 40.7241447, "lon": -73.9470018 }, + { "lat": 40.7247916, "lon": -73.9473708 }, + { "lat": 40.7248294, "lon": -73.9473933 }, + { "lat": 40.7248850, "lon": -73.9474250 }, + { "lat": 40.7249550, "lon": -73.9474649 }, + { "lat": 40.7264889, "lon": -73.9483393 }, + { "lat": 40.7265480, "lon": -73.9483730 } + ], + "tags": { + "alt_name": "Newell Street", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Newel Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5679540, + "bounds": { + "minlat": 40.7047640, + "minlon": -73.9241690, + "maxlat": 40.7073940, + "maxlon": -73.9199570 + }, + "nodes": [ + 42504174, + 9744131153, + 9744131224, + 42512091, + 9744131225, + 10864166199, + 9744131203, + 42512094, + 9744131202, + 9744131207, + 42512097, + 9744131206, + 11743316659, + 9744131176, + 42492387, + 9744131175, + 9744131147, + 42506555, + 9744131146, + 10068713594, + 42477874 + ], + "geometry": [ + { "lat": 40.7073940, "lon": -73.9241690 }, + { "lat": 40.7073495, "lon": -73.9240984 }, + { "lat": 40.7070746, "lon": -73.9236631 }, + { "lat": 40.7070290, "lon": -73.9235910 }, + { "lat": 40.7069999, "lon": -73.9235443 }, + { "lat": 40.7067450, "lon": -73.9231347 }, + { "lat": 40.7066204, "lon": -73.9229344 }, + { "lat": 40.7065760, "lon": -73.9228630 }, + { "lat": 40.7065408, "lon": -73.9228064 }, + { "lat": 40.7061629, "lon": -73.9221986 }, + { "lat": 40.7061240, "lon": -73.9221360 }, + { "lat": 40.7060912, "lon": -73.9220836 }, + { "lat": 40.7059633, "lon": -73.9218791 }, + { "lat": 40.7057143, "lon": -73.9214808 }, + { "lat": 40.7056700, "lon": -73.9214100 }, + { "lat": 40.7056335, "lon": -73.9213516 }, + { "lat": 40.7052596, "lon": -73.9207539 }, + { "lat": 40.7052160, "lon": -73.9206840 }, + { "lat": 40.7051805, "lon": -73.9206269 }, + { "lat": 40.7048094, "lon": -73.9200299 }, + { "lat": 40.7047640, "lon": -73.9199570 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Wyckoff Avenue", + "name:etymology:wikidata": "Q30434938", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5679582, + "bounds": { + "minlat": 40.7273769, + "minlon": -73.9458951, + "maxlat": 40.7274038, + "maxlon": -73.9457350 + }, + "nodes": [ + 42512677, + 42502933 + ], + "geometry": [ + { "lat": 40.7273769, "lon": -73.9458951 }, + { "lat": 40.7274038, "lon": -73.9457350 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Norman Avenue", + "name_1": "Norman Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5679592, + "bounds": { + "minlat": 40.7241922, + "minlon": -73.9566286, + "maxlat": 40.7251818, + "maxlon": -73.9560625 + }, + "nodes": [ + 42500973, + 10009024569 + ], + "geometry": [ + { "lat": 40.7241922, "lon": -73.9560625 }, + { "lat": 40.7251818, "lon": -73.9566286 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Gem Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Gem", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5679608, + "bounds": { + "minlat": 40.7367222, + "minlon": -73.9530461, + "maxlat": 40.7390417, + "maxlon": -73.9527244 + }, + "nodes": [ + 7477262850, + 9690695009, + 277046440, + 2987785538, + 42469139, + 9165439489, + 2987785539, + 9690694964, + 42513215, + 42472262, + 597261864 + ], + "geometry": [ + { "lat": 40.7390417, "lon": -73.9527244 }, + { "lat": 40.7385153, "lon": -73.9529013 }, + { "lat": 40.7383148, "lon": -73.9529686 }, + { "lat": 40.7381804, "lon": -73.9530070 }, + { "lat": 40.7380659, "lon": -73.9530329 }, + { "lat": 40.7379511, "lon": -73.9530456 }, + { "lat": 40.7378502, "lon": -73.9530461 }, + { "lat": 40.7377437, "lon": -73.9530445 }, + { "lat": 40.7376367, "lon": -73.9530336 }, + { "lat": 40.7374226, "lon": -73.9530004 }, + { "lat": 40.7367222, "lon": -73.9528837 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Pulaski Bridge", + "cycleway:left": "no", + "cycleway:right": "separate", + "foot": "no", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 5679609, + "bounds": { + "minlat": 40.7352906, + "minlon": -73.9527565, + "maxlat": 40.7375222, + "maxlon": -73.9523967 + }, + "nodes": [ + 9996409529, + 277046426, + 42513233, + 8097025074, + 42509176, + 9920934960, + 9690650963, + 8097025109, + 42469141 + ], + "geometry": [ + { "lat": 40.7352906, "lon": -73.9523967 }, + { "lat": 40.7354141, "lon": -73.9524168 }, + { "lat": 40.7361199, "lon": -73.9525296 }, + { "lat": 40.7367751, "lon": -73.9526318 }, + { "lat": 40.7368372, "lon": -73.9526416 }, + { "lat": 40.7369034, "lon": -73.9526519 }, + { "lat": 40.7373856, "lon": -73.9527338 }, + { "lat": 40.7374392, "lon": -73.9527426 }, + { "lat": 40.7375222, "lon": -73.9527565 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 5679611, + "bounds": { + "minlat": 40.7010099, + "minlon": -73.9940753, + "maxlat": 40.7012349, + "maxlon": -73.9934673 + }, + "nodes": [ + 451023556, + 1258945461, + 451023553, + 1258945648, + 451023550 + ], + "geometry": [ + { "lat": 40.7010099, "lon": -73.9940753 }, + { "lat": 40.7010400, "lon": -73.9940339 }, + { "lat": 40.7010600, "lon": -73.9939888 }, + { "lat": 40.7012262, "lon": -73.9935181 }, + { "lat": 40.7012349, "lon": -73.9934673 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Willow Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Willow", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5679713, + "bounds": { + "minlat": 40.7306923, + "minlon": -73.9492353, + "maxlat": 40.7314406, + "maxlon": -73.9464124 + }, + "nodes": [ + 2422186264, + 6235394706, + 13515590838, + 3430220601, + 12016562154, + 13515590839, + 5482002826, + 13515590840, + 13515590841, + 3430220600, + 13515590842, + 5482002833, + 3430220599, + 13515590843, + 6235394708, + 3430220598 + ], + "geometry": [ + { "lat": 40.7314406, "lon": -73.9464124 }, + { "lat": 40.7314033, "lon": -73.9465272 }, + { "lat": 40.7313861, "lon": -73.9465803 }, + { "lat": 40.7309065, "lon": -73.9479074 }, + { "lat": 40.7308675, "lon": -73.9480166 }, + { "lat": 40.7308415, "lon": -73.9480856 }, + { "lat": 40.7308156, "lon": -73.9481589 }, + { "lat": 40.7308020, "lon": -73.9482101 }, + { "lat": 40.7307918, "lon": -73.9482594 }, + { "lat": 40.7307844, "lon": -73.9483038 }, + { "lat": 40.7307780, "lon": -73.9483604 }, + { "lat": 40.7307574, "lon": -73.9485754 }, + { "lat": 40.7307390, "lon": -73.9487891 }, + { "lat": 40.7307126, "lon": -73.9490842 }, + { "lat": 40.7307046, "lon": -73.9491447 }, + { "lat": 40.7306923, "lon": -73.9492353 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 5679717, + "bounds": { + "minlat": 40.7327947, + "minlon": -73.9428354, + "maxlat": 40.7333535, + "maxlon": -73.9410458 + }, + "nodes": [ + 42495908, + 13515590862, + 13515590861, + 8211156913, + 42514425, + 490156781, + 13515590863, + 13515590864, + 13515590865, + 3430733302 + ], + "geometry": [ + { "lat": 40.7327947, "lon": -73.9428354 }, + { "lat": 40.7328043, "lon": -73.9427767 }, + { "lat": 40.7328144, "lon": -73.9427316 }, + { "lat": 40.7328236, "lon": -73.9426946 }, + { "lat": 40.7328383, "lon": -73.9426528 }, + { "lat": 40.7333240, "lon": -73.9412984 }, + { "lat": 40.7333369, "lon": -73.9412454 }, + { "lat": 40.7333444, "lon": -73.9411940 }, + { "lat": 40.7333489, "lon": -73.9411347 }, + { "lat": 40.7333535, "lon": -73.9410458 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "name_1": "John Jay Byrne Bridge", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 5679746, + "bounds": { + "minlat": 40.7047620, + "minlon": -73.9649030, + "maxlat": 40.7059075, + "maxlon": -73.9631045 + }, + "nodes": [ + 42485072, + 7152793378, + 12484725185, + 6235394749, + 42514850 + ], + "geometry": [ + { "lat": 40.7047620, "lon": -73.9649030 }, + { "lat": 40.7051044, "lon": -73.9643599 }, + { "lat": 40.7052315, "lon": -73.9641645 }, + { "lat": 40.7058635, "lon": -73.9631926 }, + { "lat": 40.7059075, "lon": -73.9631045 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Taylor Street", + "name:etymology:wikidata": "Q1369216", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Taylor", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5679747, + "bounds": { + "minlat": 40.7037407, + "minlon": -73.9664902, + "maxlat": 40.7042728, + "maxlon": -73.9656651 + }, + "nodes": [ + 42469435, + 6248573337, + 9998897935, + 9624507838, + 9776829161, + 42506371 + ], + "geometry": [ + { "lat": 40.7037407, "lon": -73.9664902 }, + { "lat": 40.7037803, "lon": -73.9664309 }, + { "lat": 40.7038635, "lon": -73.9663017 }, + { "lat": 40.7041739, "lon": -73.9658187 }, + { "lat": 40.7041976, "lon": -73.9657832 }, + { "lat": 40.7042728, "lon": -73.9656651 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Taylor Street", + "name:etymology:wikidata": "Q1369216", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Taylor", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5679748, + "bounds": { + "minlat": 40.7125370, + "minlon": -73.9423500, + "maxlat": 40.7132277, + "maxlon": -73.9373978 + }, + "nodes": [ + 42464411, + 9755788663, + 9755789513, + 42514882, + 42494194, + 4660922256, + 42514879, + 9767624957, + 42513628, + 9767624959, + 9767624978, + 42502970 + ], + "geometry": [ + { "lat": 40.7131741, "lon": -73.9373978 }, + { "lat": 40.7131777, "lon": -73.9374821 }, + { "lat": 40.7132266, "lon": -73.9386798 }, + { "lat": 40.7132277, "lon": -73.9387359 }, + { "lat": 40.7132019, "lon": -73.9387934 }, + { "lat": 40.7131711, "lon": -73.9388616 }, + { "lat": 40.7128761, "lon": -73.9401312 }, + { "lat": 40.7126850, "lon": -73.9409167 }, + { "lat": 40.7126660, "lon": -73.9410410 }, + { "lat": 40.7126550, "lon": -73.9411496 }, + { "lat": 40.7125450, "lon": -73.9422687 }, + { "lat": 40.7125370, "lon": -73.9423500 } + ], + "tags": { + "highway": "residential", + "name": "Powers Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5679753, + "bounds": { + "minlat": 40.7126029, + "minlon": -73.9679303, + "maxlat": 40.7126702, + "maxlon": -73.9677048 + }, + "nodes": [ + 11536126182, + 8468050525, + 9990599542, + 42469461 + ], + "geometry": [ + { "lat": 40.7126702, "lon": -73.9679303 }, + { "lat": 40.7126504, "lon": -73.9678687 }, + { "lat": 40.7126392, "lon": -73.9678299 }, + { "lat": 40.7126029, "lon": -73.9677048 } + ], + "tags": { + "highway": "residential", + "name": "South 5th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 5679768, + "bounds": { + "minlat": 40.7159096, + "minlon": -73.9327156, + "maxlat": 40.7163450, + "maxlon": -73.9310031 + }, + "nodes": [ + 13049375916, + 7961803887, + 8288989465, + 8274450580 + ], + "geometry": [ + { "lat": 40.7159096, "lon": -73.9327156 }, + { "lat": 40.7161061, "lon": -73.9319428 }, + { "lat": 40.7162411, "lon": -73.9314118 }, + { "lat": 40.7163450, "lon": -73.9310031 } + ], + "tags": { + "highway": "unclassified", + "name": "Rewe Street" + } +}, +{ + "type": "way", + "id": 5679826, + "bounds": { + "minlat": 40.7002150, + "minlon": -73.9463160, + "maxlat": 40.7010910, + "maxlon": -73.9450140 + }, + "nodes": [ + 42504097, + 7691087921, + 9752126458, + 42499146 + ], + "geometry": [ + { "lat": 40.7002150, "lon": -73.9463160 }, + { "lat": 40.7007500, "lon": -73.9455193 }, + { "lat": 40.7010451, "lon": -73.9450821 }, + { "lat": 40.7010910, "lon": -73.9450140 } + ], + "tags": { + "highway": "residential", + "name": "Whipple Street", + "name:etymology:wikidata": "Q1969780", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Whipple", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5679829, + "bounds": { + "minlat": 40.6998740, + "minlon": -73.9404200, + "maxlat": 40.7011020, + "maxlon": -73.9392440 + }, + "nodes": [ + 42515613, + 9301423373, + 9752127084, + 9752127073, + 42505462 + ], + "geometry": [ + { "lat": 40.7011020, "lon": -73.9392440 }, + { "lat": 40.7010493, "lon": -73.9392945 }, + { "lat": 40.6999890, "lon": -73.9403098 }, + { "lat": 40.6999498, "lon": -73.9403474 }, + { "lat": 40.6998740, "lon": -73.9404200 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Fayette Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Fayette", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5679859, + "bounds": { + "minlat": 40.7332729, + "minlon": -73.9598151, + "maxlat": 40.7334328, + "maxlon": -73.9581783 + }, + "nodes": [ + 42516043, + 7008335423, + 7008335412, + 42516047 + ], + "geometry": [ + { "lat": 40.7332729, "lon": -73.9598151 }, + { "lat": 40.7332848, "lon": -73.9597306 }, + { "lat": 40.7334233, "lon": -73.9582768 }, + { "lat": 40.7334328, "lon": -73.9581783 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Green Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Green", + "tiger:name_type": "St", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5679867, + "bounds": { + "minlat": 40.7238144, + "minlon": -73.9327536, + "maxlat": 40.7244907, + "maxlon": -73.9324440 + }, + "nodes": [ + 42516101, + 42516104 + ], + "geometry": [ + { "lat": 40.7238144, "lon": -73.9324440 }, + { "lat": 40.7244907, "lon": -73.9327536 } + ], + "tags": { + "highway": "unclassified", + "name": "Stewart Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5679871, + "bounds": { + "minlat": 40.7065706, + "minlon": -73.9263296, + "maxlat": 40.7100984, + "maxlon": -73.9251444 + }, + "nodes": [ + 42504162, + 9744131162, + 9747567475, + 9744131164, + 10066773557, + 42516137, + 10066773558, + 42487186, + 9728022957, + 9744131122, + 42496394, + 9767625176, + 9728022956, + 9767625169, + 9767625168, + 42502278, + 5436391838, + 597676485 + ], + "geometry": [ + { "lat": 40.7065706, "lon": -73.9251444 }, + { "lat": 40.7066506, "lon": -73.9251670 }, + { "lat": 40.7067137, "lon": -73.9251849 }, + { "lat": 40.7072214, "lon": -73.9253285 }, + { "lat": 40.7073434, "lon": -73.9253630 }, + { "lat": 40.7074066, "lon": -73.9253809 }, + { "lat": 40.7074750, "lon": -73.9254007 }, + { "lat": 40.7081042, "lon": -73.9255823 }, + { "lat": 40.7086957, "lon": -73.9257406 }, + { "lat": 40.7087467, "lon": -73.9257543 }, + { "lat": 40.7088099, "lon": -73.9257702 }, + { "lat": 40.7088748, "lon": -73.9257910 }, + { "lat": 40.7089189, "lon": -73.9258042 }, + { "lat": 40.7094250, "lon": -73.9260292 }, + { "lat": 40.7094671, "lon": -73.9260480 }, + { "lat": 40.7095319, "lon": -73.9260768 }, + { "lat": 40.7095986, "lon": -73.9261072 }, + { "lat": 40.7100984, "lon": -73.9263296 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Stewart Avenue", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5679873, + "bounds": { + "minlat": 40.7102956, + "minlon": -73.9285110, + "maxlat": 40.7149950, + "maxlon": -73.9264225 + }, + "nodes": [ + 42516151, + 10171007026, + 9325509491, + 9767625146, + 42516152, + 9767625126, + 9325509490, + 42511148, + 10253436214, + 42516154, + 10253436213, + 9325509499, + 9767625065, + 42502455, + 9767625054, + 9325509500, + 42496935, + 12847161634, + 5375818529, + 42484144, + 1275778384, + 5375818535, + 8676803839, + 8842929840, + 42516166 + ], + "geometry": [ + { "lat": 40.7102956, "lon": -73.9264225 }, + { "lat": 40.7106066, "lon": -73.9265576 }, + { "lat": 40.7108209, "lon": -73.9266507 }, + { "lat": 40.7108696, "lon": -73.9266716 }, + { "lat": 40.7109390, "lon": -73.9267020 }, + { "lat": 40.7110238, "lon": -73.9267391 }, + { "lat": 40.7110680, "lon": -73.9267585 }, + { "lat": 40.7116130, "lon": -73.9269970 }, + { "lat": 40.7122200, "lon": -73.9272722 }, + { "lat": 40.7122900, "lon": -73.9273040 }, + { "lat": 40.7123793, "lon": -73.9273438 }, + { "lat": 40.7128582, "lon": -73.9275574 }, + { "lat": 40.7129031, "lon": -73.9275778 }, + { "lat": 40.7129650, "lon": -73.9276050 }, + { "lat": 40.7130499, "lon": -73.9276426 }, + { "lat": 40.7130934, "lon": -73.9276623 }, + { "lat": 40.7136400, "lon": -73.9279060 }, + { "lat": 40.7137197, "lon": -73.9279438 }, + { "lat": 40.7140576, "lon": -73.9281035 }, + { "lat": 40.7141361, "lon": -73.9281437 }, + { "lat": 40.7142918, "lon": -73.9282073 }, + { "lat": 40.7143778, "lon": -73.9282470 }, + { "lat": 40.7144496, "lon": -73.9282775 }, + { "lat": 40.7149227, "lon": -73.9284800 }, + { "lat": 40.7149950, "lon": -73.9285110 } + ], + "tags": { + "highway": "residential", + "name": "Stewart Avenue", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5679896, + "bounds": { + "minlat": 40.7157190, + "minlon": -73.9307000, + "maxlat": 40.7164220, + "maxlon": -73.9303950 + }, + "nodes": [ + 42516324, + 42515027 + ], + "geometry": [ + { "lat": 40.7157190, "lon": -73.9303950 }, + { "lat": 40.7164220, "lon": -73.9307000 } + ], + "tags": { + "access": "private", + "foot": "private", + "highway": "unclassified", + "name": "Ivy Hill Road", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Ivy Hill", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5679927, + "bounds": { + "minlat": 40.7293490, + "minlon": -73.9451160, + "maxlat": 40.7294420, + "maxlon": -73.9441860 + }, + "nodes": [ + 42516624, + 9788947333, + 8443603338, + 9788947330, + 42472696 + ], + "geometry": [ + { "lat": 40.7294420, "lon": -73.9441860 }, + { "lat": 40.7294336, "lon": -73.9442698 }, + { "lat": 40.7293627, "lon": -73.9449793 }, + { "lat": 40.7293569, "lon": -73.9450374 }, + { "lat": 40.7293490, "lon": -73.9451160 } + ], + "tags": { + "highway": "residential", + "name": "Meserole Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meserole", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5679930, + "bounds": { + "minlat": 40.7000060, + "minlon": -73.9481330, + "maxlat": 40.7004640, + "maxlon": -73.9474860 + }, + "nodes": [ + 42516653, + 9755373189, + 8229509008, + 9755373177, + 42504087 + ], + "geometry": [ + { "lat": 40.7004640, "lon": -73.9474860 }, + { "lat": 40.7004146, "lon": -73.9475546 }, + { "lat": 40.7001599, "lon": -73.9479156 }, + { "lat": 40.7001029, "lon": -73.9479961 }, + { "lat": 40.7000060, "lon": -73.9481330 } + ], + "tags": { + "highway": "residential", + "name": "Bartlett Street", + "name:etymology:wikidata": "Q710057", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bartlett", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5679993, + "bounds": { + "minlat": 40.7147051, + "minlon": -73.9413602, + "maxlat": 40.7153350, + "maxlon": -73.9386893 + }, + "nodes": [ + 42494204, + 9527375818, + 42517260, + 9351530355, + 5329729667, + 7712107371 + ], + "geometry": [ + { "lat": 40.7153247, "lon": -73.9386893 }, + { "lat": 40.7153292, "lon": -73.9387956 }, + { "lat": 40.7153350, "lon": -73.9389060 }, + { "lat": 40.7147873, "lon": -73.9410308 }, + { "lat": 40.7147670, "lon": -73.9411143 }, + { "lat": 40.7147051, "lon": -73.9413602 } + ], + "tags": { + "highway": "residential", + "name": "Orient Avenue", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5680082, + "bounds": { + "minlat": 40.7191110, + "minlon": -73.9419099, + "maxlat": 40.7213317, + "maxlon": -73.9415390 + }, + "nodes": [ + 42476534, + 6235394694, + 9935590143, + 9935590144, + 42503833, + 9935590146, + 8610941953, + 9935590168, + 42511032 + ], + "geometry": [ + { "lat": 40.7213317, "lon": -73.9419099 }, + { "lat": 40.7212421, "lon": -73.9418881 }, + { "lat": 40.7204802, "lon": -73.9417647 }, + { "lat": 40.7204378, "lon": -73.9417581 }, + { "lat": 40.7203660, "lon": -73.9417470 }, + { "lat": 40.7203119, "lon": -73.9417380 }, + { "lat": 40.7192321, "lon": -73.9415591 }, + { "lat": 40.7191842, "lon": -73.9415512 }, + { "lat": 40.7191110, "lon": -73.9415390 } + ], + "tags": { + "highway": "residential", + "name": "Monitor Street", + "name:etymology:wikidata": "Q857891", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Monitor", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5680122, + "bounds": { + "minlat": 40.7152280, + "minlon": -73.9444991, + "maxlat": 40.7154513, + "maxlon": -73.9421576 + }, + "nodes": [ + 42491531, + 9695771757, + 9695846829, + 7722378713, + 9695846846, + 9795355917, + 42467880 + ], + "geometry": [ + { "lat": 40.7154513, "lon": -73.9421576 }, + { "lat": 40.7154404, "lon": -73.9422715 }, + { "lat": 40.7153963, "lon": -73.9427376 }, + { "lat": 40.7153883, "lon": -73.9428181 }, + { "lat": 40.7153795, "lon": -73.9429106 }, + { "lat": 40.7152379, "lon": -73.9443954 }, + { "lat": 40.7152280, "lon": -73.9444991 } + ], + "tags": { + "highway": "residential", + "name": "Conselyea Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5680132, + "bounds": { + "minlat": 40.7089068, + "minlon": -73.9358080, + "maxlat": 40.7116930, + "maxlon": -73.9345718 + }, + "nodes": [ + 42518747, + 9767625046, + 9767625047, + 9767625043, + 9767625042, + 42511131, + 9767625021, + 9952743032, + 9952743034, + 42518750, + 9952743033, + 42502444, + 9767624996, + 42496923 + ], + "geometry": [ + { "lat": 40.7089068, "lon": -73.9345718 }, + { "lat": 40.7089900, "lon": -73.9346085 }, + { "lat": 40.7090317, "lon": -73.9346270 }, + { "lat": 40.7095016, "lon": -73.9348345 }, + { "lat": 40.7095423, "lon": -73.9348525 }, + { "lat": 40.7095935, "lon": -73.9348751 }, + { "lat": 40.7096593, "lon": -73.9349042 }, + { "lat": 40.7097018, "lon": -73.9349230 }, + { "lat": 40.7102227, "lon": -73.9351530 }, + { "lat": 40.7102777, "lon": -73.9351773 }, + { "lat": 40.7103437, "lon": -73.9352064 }, + { "lat": 40.7109360, "lon": -73.9354680 }, + { "lat": 40.7116457, "lon": -73.9357868 }, + { "lat": 40.7116930, "lon": -73.9358080 } + ], + "tags": { + "highway": "residential", + "name": "Bogart Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680133, + "bounds": { + "minlat": 40.7035770, + "minlon": -73.9337110, + "maxlat": 40.7067920, + "maxlon": -73.9328150 + }, + "nodes": [ + 42487173, + 11067650330, + 42501152, + 42518787, + 42518781, + 42490911, + 42518776, + 42518773, + 42509039, + 5149798581, + 42518767, + 42518762 + ], + "geometry": [ + { "lat": 40.7067920, "lon": -73.9337110 }, + { "lat": 40.7066078, "lon": -73.9336598 }, + { "lat": 40.7063710, "lon": -73.9335940 }, + { "lat": 40.7060950, "lon": -73.9335120 }, + { "lat": 40.7056690, "lon": -73.9334000 }, + { "lat": 40.7053930, "lon": -73.9333210 }, + { "lat": 40.7049730, "lon": -73.9332016 }, + { "lat": 40.7047010, "lon": -73.9331250 }, + { "lat": 40.7042770, "lon": -73.9330110 }, + { "lat": 40.7042041, "lon": -73.9329914 }, + { "lat": 40.7039940, "lon": -73.9329350 }, + { "lat": 40.7035770, "lon": -73.9328150 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Bogart Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5680142, + "bounds": { + "minlat": 40.7152770, + "minlon": -73.9598401, + "maxlat": 40.7200781, + "maxlon": -73.9521251 + }, + "nodes": [ + 42476580, + 6235394615, + 5481954251, + 6235394620, + 42480132, + 6235394619, + 6248588897, + 42518980, + 6248588896, + 6248588436, + 42509239, + 6248588433, + 9945679625, + 9794844938, + 42518976, + 9794844941, + 9794844954, + 42518972, + 9794844957, + 9794844974, + 42506310 + ], + "geometry": [ + { "lat": 40.7152770, "lon": -73.9521251 }, + { "lat": 40.7153194, "lon": -73.9521936 }, + { "lat": 40.7156157, "lon": -73.9526722 }, + { "lat": 40.7159524, "lon": -73.9532161 }, + { "lat": 40.7159870, "lon": -73.9532720 }, + { "lat": 40.7160319, "lon": -73.9533442 }, + { "lat": 40.7167555, "lon": -73.9545076 }, + { "lat": 40.7168050, "lon": -73.9545870 }, + { "lat": 40.7168614, "lon": -73.9546772 }, + { "lat": 40.7175507, "lon": -73.9557825 }, + { "lat": 40.7175890, "lon": -73.9558440 }, + { "lat": 40.7176304, "lon": -73.9559107 }, + { "lat": 40.7179104, "lon": -73.9563617 }, + { "lat": 40.7183507, "lon": -73.9570709 }, + { "lat": 40.7183880, "lon": -73.9571310 }, + { "lat": 40.7184303, "lon": -73.9571989 }, + { "lat": 40.7191481, "lon": -73.9583503 }, + { "lat": 40.7191890, "lon": -73.9584160 }, + { "lat": 40.7192354, "lon": -73.9584907 }, + { "lat": 40.7200406, "lon": -73.9597790 }, + { "lat": 40.7200781, "lon": -73.9598401 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "North 8th Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680220, + "bounds": { + "minlat": 40.7007618, + "minlon": -73.9908805, + "maxlat": 40.7007775, + "maxlon": -73.9903893 + }, + "nodes": [ + 42519809, + 3026465851, + 598054704 + ], + "geometry": [ + { "lat": 40.7007775, "lon": -73.9908805 }, + { "lat": 40.7007690, "lon": -73.9907351 }, + { "lat": 40.7007618, "lon": -73.9903893 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5680259, + "bounds": { + "minlat": 40.7080150, + "minlon": -73.9684361, + "maxlat": 40.7084779, + "maxlon": -73.9643290 + }, + "nodes": [ + 42520083, + 9779538199, + 7205006834, + 9779538196, + 42520080, + 10058693166, + 7199134686, + 7199113279, + 7205006835, + 6338023999, + 42506344, + 6338024000, + 5861248531, + 9785653090, + 4456578359 + ], + "geometry": [ + { "lat": 40.7080150, "lon": -73.9643290 }, + { "lat": 40.7080264, "lon": -73.9644264 }, + { "lat": 40.7081801, "lon": -73.9657886 }, + { "lat": 40.7081877, "lon": -73.9658513 }, + { "lat": 40.7081970, "lon": -73.9659380 }, + { "lat": 40.7082085, "lon": -73.9660403 }, + { "lat": 40.7082859, "lon": -73.9667301 }, + { "lat": 40.7083108, "lon": -73.9669521 }, + { "lat": 40.7083267, "lon": -73.9670944 }, + { "lat": 40.7083342, "lon": -73.9671584 }, + { "lat": 40.7083433, "lon": -73.9672423 }, + { "lat": 40.7083547, "lon": -73.9673431 }, + { "lat": 40.7084643, "lon": -73.9683160 }, + { "lat": 40.7084702, "lon": -73.9683685 }, + { "lat": 40.7084779, "lon": -73.9684361 } + ], + "tags": { + "highway": "residential", + "name": "South 10th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "10th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5680263, + "bounds": { + "minlat": 40.7056863, + "minlon": -73.9266450, + "maxlat": 40.7057506, + "maxlon": -73.9262227 + }, + "nodes": [ + 42505684, + 9744012787, + 7711304344 + ], + "geometry": [ + { "lat": 40.7057506, "lon": -73.9266450 }, + { "lat": 40.7057134, "lon": -73.9264157 }, + { "lat": 40.7056863, "lon": -73.9262227 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Thames Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680266, + "bounds": { + "minlat": 40.7039940, + "minlon": -73.9329350, + "maxlat": 40.7040119, + "maxlon": -73.9328245 + }, + "nodes": [ + 42518767, + 9744012762, + 7921931277 + ], + "geometry": [ + { "lat": 40.7039940, "lon": -73.9329350 }, + { "lat": 40.7040064, "lon": -73.9328584 }, + { "lat": 40.7040119, "lon": -73.9328245 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Rock Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rock", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5680308, + "bounds": { + "minlat": 40.6999062, + "minlon": -73.9502680, + "maxlat": 40.7006062, + "maxlon": -73.9501230 + }, + "nodes": [ + 9755373205, + 9755373206, + 9772859311, + 42492001 + ], + "geometry": [ + { "lat": 40.6999062, "lon": -73.9501230 }, + { "lat": 40.7000579, "lon": -73.9501394 }, + { "lat": 40.7005223, "lon": -73.9502475 }, + { "lat": 40.7006062, "lon": -73.9502680 } + ], + "tags": { + "highway": "residential", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Union", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 5680319, + "bounds": { + "minlat": 40.7163618, + "minlon": -73.9666088, + "maxlat": 40.7183750, + "maxlon": -73.9646210 + }, + "nodes": [ + 42520683, + 9779538114, + 9779538111, + 9949556527, + 42488999, + 9949556526, + 9948150014, + 42484162, + 9948150015, + 9948156219, + 42520686 + ], + "geometry": [ + { "lat": 40.7163618, "lon": -73.9666088 }, + { "lat": 40.7164394, "lon": -73.9665365 }, + { "lat": 40.7164921, "lon": -73.9664808 }, + { "lat": 40.7172057, "lon": -73.9657795 }, + { "lat": 40.7172520, "lon": -73.9657340 }, + { "lat": 40.7173027, "lon": -73.9656839 }, + { "lat": 40.7177298, "lon": -73.9652615 }, + { "lat": 40.7177890, "lon": -73.9652030 }, + { "lat": 40.7178557, "lon": -73.9651368 }, + { "lat": 40.7183358, "lon": -73.9646601 }, + { "lat": 40.7183750, "lon": -73.9646210 } + ], + "tags": { + "highway": "residential", + "name": "River Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "River", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5680324, + "bounds": { + "minlat": 40.7068627, + "minlon": -73.9571244, + "maxlat": 40.7071415, + "maxlon": -73.9570820 + }, + "nodes": [ + 42520698, + 9772853914, + 42478023 + ], + "geometry": [ + { "lat": 40.7068627, "lon": -73.9571244 }, + { "lat": 40.7070764, "lon": -73.9571031 }, + { "lat": 40.7071415, "lon": -73.9570820 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5680327, + "bounds": { + "minlat": 40.7021057, + "minlon": -73.9644630, + "maxlat": 40.7028026, + "maxlon": -73.9634105 + }, + "nodes": [ + 42506402, + 9776829238, + 9624462075, + 9776829241, + 42469421 + ], + "geometry": [ + { "lat": 40.7028026, "lon": -73.9634105 }, + { "lat": 40.7027231, "lon": -73.9635305 }, + { "lat": 40.7021728, "lon": -73.9643609 }, + { "lat": 40.7021452, "lon": -73.9644027 }, + { "lat": 40.7021057, "lon": -73.9644630 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Rodney", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5680329, + "bounds": { + "minlat": 40.7061431, + "minlon": -73.9581264, + "maxlat": 40.7065680, + "maxlon": -73.9575970 + }, + "nodes": [ + 42504256, + 4882413681, + 6338023990, + 42482165 + ], + "geometry": [ + { "lat": 40.7061431, "lon": -73.9581264 }, + { "lat": 40.7063286, "lon": -73.9579705 }, + { "lat": 40.7065200, "lon": -73.9576721 }, + { "lat": 40.7065680, "lon": -73.9575970 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5680339, + "bounds": { + "minlat": 40.7246224, + "minlon": -73.9576364, + "maxlat": 40.7263057, + "maxlon": -73.9573562 + }, + "nodes": [ + 4205219015, + 42500969, + 9998760545, + 9998760546, + 9998760544, + 42516599, + 10962940424, + 9789402637, + 42503841 + ], + "geometry": [ + { "lat": 40.7246224, "lon": -73.9576364 }, + { "lat": 40.7251075, "lon": -73.9575478 }, + { "lat": 40.7251801, "lon": -73.9575346 }, + { "lat": 40.7254555, "lon": -73.9575074 }, + { "lat": 40.7254821, "lon": -73.9575038 }, + { "lat": 40.7255696, "lon": -73.9574871 }, + { "lat": 40.7259924, "lon": -73.9574110 }, + { "lat": 40.7262393, "lon": -73.9573666 }, + { "lat": 40.7263057, "lon": -73.9573562 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Franklin", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5680401, + "bounds": { + "minlat": 40.7262682, + "minlon": -73.9558161, + "maxlat": 40.7273053, + "maxlon": -73.9552217 + }, + "nodes": [ + 42496848, + 9789402739, + 5891904344, + 9789402769, + 42499059 + ], + "geometry": [ + { "lat": 40.7273053, "lon": -73.9558161 }, + { "lat": 40.7272445, "lon": -73.9557822 }, + { "lat": 40.7263651, "lon": -73.9552765 }, + { "lat": 40.7263305, "lon": -73.9552567 }, + { "lat": 40.7262682, "lon": -73.9552217 } + ], + "tags": { + "highway": "residential", + "name": "Clifford Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Clifford", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5680430, + "bounds": { + "minlat": 40.7043090, + "minlon": -73.9444500, + "maxlat": 40.7046384, + "maxlon": -73.9410221 + }, + "nodes": [ + 42521981, + 9752126446, + 9752126958, + 42467817, + 9752126957, + 9752126952, + 42502948 + ], + "geometry": [ + { "lat": 40.7043090, "lon": -73.9444500 }, + { "lat": 40.7043195, "lon": -73.9443397 }, + { "lat": 40.7044626, "lon": -73.9428424 }, + { "lat": 40.7044730, "lon": -73.9427340 }, + { "lat": 40.7044831, "lon": -73.9426291 }, + { "lat": 40.7046268, "lon": -73.9411350 }, + { "lat": 40.7046384, "lon": -73.9410221 } + ], + "tags": { + "highway": "residential", + "name": "Seigel Street", + "name:etymology:wikidata": "Q63190", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5680431, + "bounds": { + "minlat": 40.7045653, + "minlon": -73.9391863, + "maxlat": 40.7045916, + "maxlon": -73.9390786 + }, + "nodes": [ + 7722378714, + 7722378720 + ], + "geometry": [ + { "lat": 40.7045653, "lon": -73.9391863 }, + { "lat": 40.7045916, "lon": -73.9390786 } + ], + "tags": { + "highway": "residential", + "name": "Seigel Street", + "name:etymology:wikidata": "Q63190", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680474, + "bounds": { + "minlat": 40.7216060, + "minlon": -73.9409890, + "maxlat": 40.7226071, + "maxlon": -73.9371073 + }, + "nodes": [ + 42495884, + 9937278987, + 5482000001, + 5482000011, + 8465212330, + 9937278974, + 42490476, + 9937278973, + 9937834336, + 42522375 + ], + "geometry": [ + { "lat": 40.7216060, "lon": -73.9409890 }, + { "lat": 40.7216274, "lon": -73.9409037 }, + { "lat": 40.7217285, "lon": -73.9405014 }, + { "lat": 40.7218755, "lon": -73.9399277 }, + { "lat": 40.7221500, "lon": -73.9388600 }, + { "lat": 40.7221603, "lon": -73.9388189 }, + { "lat": 40.7221816, "lon": -73.9387337 }, + { "lat": 40.7222035, "lon": -73.9386500 }, + { "lat": 40.7225721, "lon": -73.9372410 }, + { "lat": 40.7226071, "lon": -73.9371073 } + ], + "tags": { + "highway": "residential", + "name": "Lombardy Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680475, + "bounds": { + "minlat": 40.7013820, + "minlon": -73.9550910, + "maxlat": 40.7038530, + "maxlon": -73.9512700 + }, + "nodes": [ + 42522394, + 9755372069, + 3699342270, + 5481877631, + 9755373336, + 42482192, + 9755373337, + 6245642058, + 42522399 + ], + "geometry": [ + { "lat": 40.7013820, "lon": -73.9550910 }, + { "lat": 40.7014302, "lon": -73.9550164 }, + { "lat": 40.7015976, "lon": -73.9547576 }, + { "lat": 40.7021665, "lon": -73.9538777 }, + { "lat": 40.7025713, "lon": -73.9532516 }, + { "lat": 40.7026170, "lon": -73.9531810 }, + { "lat": 40.7026656, "lon": -73.9531059 }, + { "lat": 40.7038039, "lon": -73.9513451 }, + { "lat": 40.7038530, "lon": -73.9512700 } + ], + "tags": { + "highway": "residential", + "name": "Lynch Street", + "name:etymology:wikidata": "Q537583", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680496, + "bounds": { + "minlat": 40.7228548, + "minlon": -73.9390337, + "maxlat": 40.7232815, + "maxlon": -73.9373962 + }, + "nodes": [ + 42490479, + 9937834352, + 8465212338, + 7986594350, + 8465212326, + 9937834374, + 42522703 + ], + "geometry": [ + { "lat": 40.7228548, "lon": -73.9390337 }, + { "lat": 40.7228755, "lon": -73.9389542 }, + { "lat": 40.7228885, "lon": -73.9389042 }, + { "lat": 40.7231661, "lon": -73.9378391 }, + { "lat": 40.7232293, "lon": -73.9375966 }, + { "lat": 40.7232430, "lon": -73.9375439 }, + { "lat": 40.7232815, "lon": -73.9373962 } + ], + "tags": { + "highway": "residential", + "name": "Anthony Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680497, + "bounds": { + "minlat": 40.7244907, + "minlon": -73.9327536, + "maxlat": 40.7249011, + "maxlon": -73.9311751 + }, + "nodes": [ + 42516104, + 8896031643, + 42509697 + ], + "geometry": [ + { "lat": 40.7244907, "lon": -73.9327536 }, + { "lat": 40.7248805, "lon": -73.9312557 }, + { "lat": 40.7249011, "lon": -73.9311751 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Anthony Street", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 5680522, + "bounds": { + "minlat": 40.7033913, + "minlon": -73.9925651, + "maxlat": 40.7039090, + "maxlon": -73.9925460 + }, + "nodes": [ + 11686818429, + 42522816 + ], + "geometry": [ + { "lat": 40.7033913, "lon": -73.9925651 }, + { "lat": 40.7039090, "lon": -73.9925460 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Old Dock Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Old Dock", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5680559, + "bounds": { + "minlat": 40.7070066, + "minlon": -73.9618600, + "maxlat": 40.7075950, + "maxlon": -73.9613709 + }, + "nodes": [ + 42477990, + 9776814807, + 42523035, + 6235394746, + 42514854 + ], + "geometry": [ + { "lat": 40.7075950, "lon": -73.9618600 }, + { "lat": 40.7075157, "lon": -73.9618465 }, + { "lat": 40.7074250, "lon": -73.9618310 }, + { "lat": 40.7070928, "lon": -73.9614648 }, + { "lat": 40.7070066, "lon": -73.9613709 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lee Avenue", + "name:etymology:wikidata": "Q725907; Q709825", + "oneway": "yes", + "sidewalk": "separate", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Lee", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5680575, + "bounds": { + "minlat": 40.7213791, + "minlon": -73.9481468, + "maxlat": 40.7226572, + "maxlon": -73.9479498 + }, + "nodes": [ + 42466378, + 9789356649, + 8589617613, + 9935605465, + 42509209 + ], + "geometry": [ + { "lat": 40.7213791, "lon": -73.9479498 }, + { "lat": 40.7214523, "lon": -73.9479626 }, + { "lat": 40.7225631, "lon": -73.9481337 }, + { "lat": 40.7225991, "lon": -73.9481387 }, + { "lat": 40.7226572, "lon": -73.9481468 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Eckford Street", + "oneway": "yes", + "sidewalk:both": "separate", + "turn:lanes": "left;through" + } +}, +{ + "type": "way", + "id": 5680611, + "bounds": { + "minlat": 40.7064920, + "minlon": -73.9522895, + "maxlat": 40.7065870, + "maxlon": -73.9509467 + }, + "nodes": [ + 598033006, + 5897510999, + 8617429451, + 9755373434, + 42505412 + ], + "geometry": [ + { "lat": 40.7065847, "lon": -73.9509467 }, + { "lat": 40.7065870, "lon": -73.9513345 }, + { "lat": 40.7065161, "lon": -73.9520468 }, + { "lat": 40.7065096, "lon": -73.9521122 }, + { "lat": 40.7064920, "lon": -73.9522895 } + ], + "tags": { + "alt_name": "Montrose Avenue", + "cycleway:both": "no", + "highway": "residential", + "name": "New Montrose Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680613, + "bounds": { + "minlat": 40.7063412, + "minlon": -73.9519043, + "maxlat": 40.7065847, + "maxlon": -73.9509467 + }, + "nodes": [ + 598033006, + 5849451141, + 6291247292, + 9755373433, + 42482048 + ], + "geometry": [ + { "lat": 40.7065847, "lon": -73.9509467 }, + { "lat": 40.7065050, "lon": -73.9511714 }, + { "lat": 40.7064746, "lon": -73.9513154 }, + { "lat": 40.7063849, "lon": -73.9517680 }, + { "lat": 40.7063412, "lon": -73.9519043 } + ], + "tags": { + "alt_name": "Montrose Avenue", + "cycleway:both": "no", + "highway": "residential", + "name": "New Montrose Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680633, + "bounds": { + "minlat": 40.7026193, + "minlon": -73.9938376, + "maxlat": 40.7026579, + "maxlon": -73.9937699 + }, + "nodes": [ + 42523694, + 11674209490, + 11674209491, + 11674209492, + 3174844149 + ], + "geometry": [ + { "lat": 40.7026579, "lon": -73.9937699 }, + { "lat": 40.7026546, "lon": -73.9937919 }, + { "lat": 40.7026465, "lon": -73.9938116 }, + { "lat": 40.7026344, "lon": -73.9938273 }, + { "lat": 40.7026193, "lon": -73.9938376 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Elizabeth Place", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Elizabeth", + "tiger:name_type": "Pl", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5680640, + "bounds": { + "minlat": 40.7270246, + "minlon": -73.9458951, + "maxlat": 40.7273769, + "maxlon": -73.9456716 + }, + "nodes": [ + 42512677, + 9788947222, + 42502930 + ], + "geometry": [ + { "lat": 40.7273769, "lon": -73.9458951 }, + { "lat": 40.7272974, "lon": -73.9458455 }, + { "lat": 40.7270246, "lon": -73.9456716 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 5680650, + "bounds": { + "minlat": 40.7257080, + "minlon": -73.9438743, + "maxlat": 40.7275817, + "maxlon": -73.9435690 + }, + "nodes": [ + 42479378, + 6732842578, + 5891914557, + 9788947367, + 42523808 + ], + "geometry": [ + { "lat": 40.7257080, "lon": -73.9435690 }, + { "lat": 40.7257820, "lon": -73.9435814 }, + { "lat": 40.7274665, "lon": -73.9438559 }, + { "lat": 40.7275125, "lon": -73.9438632 }, + { "lat": 40.7275817, "lon": -73.9438743 } + ], + "tags": { + "highway": "residential", + "name": "North Henry Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680653, + "bounds": { + "minlat": 40.7190220, + "minlon": -73.9426780, + "maxlat": 40.7202770, + "maxlon": -73.9424720 + }, + "nodes": [ + 42511030, + 9935590171, + 6235394684, + 42503829 + ], + "geometry": [ + { "lat": 40.7190220, "lon": -73.9424720 }, + { "lat": 40.7190954, "lon": -73.9424841 }, + { "lat": 40.7202119, "lon": -73.9426683 }, + { "lat": 40.7202770, "lon": -73.9426780 } + ], + "tags": { + "highway": "residential", + "name": "North Henry Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Henry", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5680658, + "bounds": { + "minlat": 40.7098074, + "minlon": -73.9401830, + "maxlat": 40.7100914, + "maxlon": -73.9372086 + }, + "nodes": [ + 42474048, + 5487714325, + 9752593824, + 7618802676 + ], + "geometry": [ + { "lat": 40.7100914, "lon": -73.9372086 }, + { "lat": 40.7098550, "lon": -73.9396811 }, + { "lat": 40.7098164, "lon": -73.9400877 }, + { "lat": 40.7098074, "lon": -73.9401830 } + ], + "tags": { + "highway": "residential", + "name": "Stagg Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5680663, + "bounds": { + "minlat": 40.7088030, + "minlon": -73.9507600, + "maxlat": 40.7091780, + "maxlon": -73.9468530 + }, + "nodes": [ + 42491164, + 9752590905, + 8232714843, + 9752590910, + 42523854, + 9752590909, + 5481854383, + 5481854385, + 8232714851, + 9752590912, + 42520572 + ], + "geometry": [ + { "lat": 40.7091780, "lon": -73.9468530 }, + { "lat": 40.7091658, "lon": -73.9469796 }, + { "lat": 40.7090295, "lon": -73.9483895 }, + { "lat": 40.7090233, "lon": -73.9484519 }, + { "lat": 40.7090150, "lon": -73.9485390 }, + { "lat": 40.7090059, "lon": -73.9486352 }, + { "lat": 40.7089243, "lon": -73.9494895 }, + { "lat": 40.7088739, "lon": -73.9500176 }, + { "lat": 40.7088205, "lon": -73.9505767 }, + { "lat": 40.7088137, "lon": -73.9506480 }, + { "lat": 40.7088030, "lon": -73.9507600 } + ], + "tags": { + "highway": "residential", + "name": "Stagg Street", + "name_1": "Stagg Walk", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Stagg", + "tiger:name_base_1": "Stagg", + "tiger:name_type": "St", + "tiger:name_type_1": "Walk", + "tiger:reviewed": "name", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5680665, + "bounds": { + "minlat": 40.7118870, + "minlon": -73.9288768, + "maxlat": 40.7126930, + "maxlon": -73.9257300 + }, + "nodes": [ + 42505696, + 9767625079, + 9325509494, + 9325509497, + 9767625080, + 42516154, + 9767625081, + 9325509496, + 8096283391, + 9325509498, + 9767625071, + 42509751 + ], + "geometry": [ + { "lat": 40.7118870, "lon": -73.9288768 }, + { "lat": 40.7119102, "lon": -73.9287860 }, + { "lat": 40.7119285, "lon": -73.9287147 }, + { "lat": 40.7122487, "lon": -73.9274651 }, + { "lat": 40.7122630, "lon": -73.9274114 }, + { "lat": 40.7122900, "lon": -73.9273040 }, + { "lat": 40.7123152, "lon": -73.9272052 }, + { "lat": 40.7123299, "lon": -73.9271482 }, + { "lat": 40.7124620, "lon": -73.9266322 }, + { "lat": 40.7126524, "lon": -73.9258884 }, + { "lat": 40.7126673, "lon": -73.9258302 }, + { "lat": 40.7126930, "lon": -73.9257300 } + ], + "tags": { + "highway": "residential", + "name": "Stagg Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5680678, + "bounds": { + "minlat": 40.7019910, + "minlon": -73.9783471, + "maxlat": 40.7045072, + "maxlon": -73.9772995 + }, + "nodes": [ + 42523931, + 42523932, + 1261487365, + 10594110531, + 10594110532 + ], + "geometry": [ + { "lat": 40.7019910, "lon": -73.9779120 }, + { "lat": 40.7031190, "lon": -73.9775810 }, + { "lat": 40.7041202, "lon": -73.9772995 }, + { "lat": 40.7042517, "lon": -73.9780645 }, + { "lat": 40.7045072, "lon": -73.9783471 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "East Way", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "East", + "tiger:name_type": "Way", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5680731, + "bounds": { + "minlat": 40.7128761, + "minlon": -73.9406770, + "maxlat": 40.7139460, + "maxlon": -73.9401312 + }, + "nodes": [ + 42524393, + 9767624963, + 9767624956, + 42514879 + ], + "geometry": [ + { "lat": 40.7139460, "lon": -73.9406770 }, + { "lat": 40.7129715, "lon": -73.9401798 }, + { "lat": 40.7129257, "lon": -73.9401565 }, + { "lat": 40.7128761, "lon": -73.9401312 } + ], + "tags": { + "highway": "residential", + "name": "Judge Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Judge", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5680770, + "bounds": { + "minlat": 40.7144048, + "minlon": -73.9373962, + "maxlat": 40.7232815, + "maxlon": -73.9334534 + }, + "nodes": [ + 42484221, + 5838943030, + 42515026, + 42484231, + 42471039, + 8288143706, + 9937797992, + 5838943038, + 9937797990, + 42524622, + 42509901, + 42505924, + 42524631, + 5482302934, + 42511005, + 9937834415, + 42484241, + 9937834413, + 9937834319, + 42500194, + 9937834321, + 9937834335, + 42522375, + 9937834337, + 9194920840, + 42522703 + ], + "geometry": [ + { "lat": 40.7144048, "lon": -73.9334534 }, + { "lat": 40.7144783, "lon": -73.9334886 }, + { "lat": 40.7155879, "lon": -73.9339812 }, + { "lat": 40.7156903, "lon": -73.9340267 }, + { "lat": 40.7158436, "lon": -73.9340969 }, + { "lat": 40.7164572, "lon": -73.9343690 }, + { "lat": 40.7171185, "lon": -73.9346641 }, + { "lat": 40.7172161, "lon": -73.9347055 }, + { "lat": 40.7173255, "lon": -73.9347542 }, + { "lat": 40.7178382, "lon": -73.9349822 }, + { "lat": 40.7185212, "lon": -73.9352861 }, + { "lat": 40.7192239, "lon": -73.9355987 }, + { "lat": 40.7199041, "lon": -73.9359018 }, + { "lat": 40.7201362, "lon": -73.9360079 }, + { "lat": 40.7205760, "lon": -73.9362090 }, + { "lat": 40.7211863, "lon": -73.9364823 }, + { "lat": 40.7212461, "lon": -73.9365091 }, + { "lat": 40.7213245, "lon": -73.9365434 }, + { "lat": 40.7218685, "lon": -73.9367809 }, + { "lat": 40.7219260, "lon": -73.9368060 }, + { "lat": 40.7219936, "lon": -73.9368359 }, + { "lat": 40.7225419, "lon": -73.9370785 }, + { "lat": 40.7226071, "lon": -73.9371073 }, + { "lat": 40.7226768, "lon": -73.9371385 }, + { "lat": 40.7232179, "lon": -73.9373808 }, + { "lat": 40.7232815, "lon": -73.9373962 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Vandervoort Avenue", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680811, + "bounds": { + "minlat": 40.6962080, + "minlon": -73.9178180, + "maxlat": 40.7107750, + "maxlon": -73.8975760 + }, + "nodes": [ + 42821731, + 5482695185, + 9765879892, + 42807105, + 9765879890, + 42844540, + 42830714, + 8588131415, + 11004055109, + 42862035, + 9765879904, + 11003420590, + 5482714790, + 3368581117, + 9763022117, + 42916375, + 9763022115, + 3368581116, + 11003420595, + 42916371, + 9763022096, + 42851920, + 9763022099, + 10686537776, + 9763022277, + 42806591, + 9763022279, + 42810450, + 10686537772, + 9763022443, + 42809962, + 9763022446, + 9762206466, + 42827621, + 9762206468, + 9762206538, + 42916360, + 9762206536, + 9761722167, + 42907489, + 9761722169, + 9668687801, + 42524976, + 9668687808, + 9083990481, + 9761722220, + 42512124, + 9755789408, + 5482561216, + 13880148682, + 5482561213, + 5435873499, + 42511964, + 5435873476, + 5435873482, + 5435873483, + 5435873510, + 10287737719, + 9799250903, + 5435873498, + 9799250901, + 7510641966, + 5435873511, + 7980830047, + 8589606412, + 9799250596, + 42496698 + ], + "geometry": [ + { "lat": 40.7107750, "lon": -73.8975760 }, + { "lat": 40.7104171, "lon": -73.8989853 }, + { "lat": 40.7103481, "lon": -73.8992572 }, + { "lat": 40.7103230, "lon": -73.8993560 }, + { "lat": 40.7102939, "lon": -73.8994740 }, + { "lat": 40.7100950, "lon": -73.9002810 }, + { "lat": 40.7098900, "lon": -73.9011460 }, + { "lat": 40.7096646, "lon": -73.9020961 }, + { "lat": 40.7096551, "lon": -73.9021399 }, + { "lat": 40.7096350, "lon": -73.9022210 }, + { "lat": 40.7096148, "lon": -73.9023081 }, + { "lat": 40.7093539, "lon": -73.9034336 }, + { "lat": 40.7092578, "lon": -73.9038479 }, + { "lat": 40.7091735, "lon": -73.9042117 }, + { "lat": 40.7091642, "lon": -73.9042692 }, + { "lat": 40.7091501, "lon": -73.9043560 }, + { "lat": 40.7091351, "lon": -73.9044600 }, + { "lat": 40.7091283, "lon": -73.9045069 }, + { "lat": 40.7090234, "lon": -73.9048363 }, + { "lat": 40.7089640, "lon": -73.9049360 }, + { "lat": 40.7084821, "lon": -73.9054584 }, + { "lat": 40.7084280, "lon": -73.9055170 }, + { "lat": 40.7083797, "lon": -73.9055665 }, + { "lat": 40.7073184, "lon": -73.9066545 }, + { "lat": 40.7072897, "lon": -73.9066839 }, + { "lat": 40.7072370, "lon": -73.9067380 }, + { "lat": 40.7071906, "lon": -73.9067858 }, + { "lat": 40.7067220, "lon": -73.9072690 }, + { "lat": 40.7062460, "lon": -73.9077492 }, + { "lat": 40.7062111, "lon": -73.9077844 }, + { "lat": 40.7061600, "lon": -73.9078360 }, + { "lat": 40.7061115, "lon": -73.9078855 }, + { "lat": 40.7050909, "lon": -73.9089288 }, + { "lat": 40.7050320, "lon": -73.9089890 }, + { "lat": 40.7049784, "lon": -73.9090437 }, + { "lat": 40.7041909, "lon": -73.9098487 }, + { "lat": 40.7041260, "lon": -73.9099150 }, + { "lat": 40.7040680, "lon": -73.9099742 }, + { "lat": 40.7030549, "lon": -73.9110089 }, + { "lat": 40.7029962, "lon": -73.9110688 }, + { "lat": 40.7029399, "lon": -73.9111277 }, + { "lat": 40.7019863, "lon": -73.9121237 }, + { "lat": 40.7019442, "lon": -73.9121679 }, + { "lat": 40.7018813, "lon": -73.9122303 }, + { "lat": 40.7008751, "lon": -73.9132320 }, + { "lat": 40.7008360, "lon": -73.9132694 }, + { "lat": 40.7007770, "lon": -73.9133280 }, + { "lat": 40.7007200, "lon": -73.9133841 }, + { "lat": 40.6996318, "lon": -73.9144550 }, + { "lat": 40.6995327, "lon": -73.9145607 }, + { "lat": 40.6995236, "lon": -73.9145704 }, + { "lat": 40.6993274, "lon": -73.9147647 }, + { "lat": 40.6992681, "lon": -73.9148129 }, + { "lat": 40.6992568, "lon": -73.9148272 }, + { "lat": 40.6992141, "lon": -73.9148716 }, + { "lat": 40.6991673, "lon": -73.9149216 }, + { "lat": 40.6990892, "lon": -73.9149978 }, + { "lat": 40.6982921, "lon": -73.9157729 }, + { "lat": 40.6977394, "lon": -73.9163103 }, + { "lat": 40.6976800, "lon": -73.9163680 }, + { "lat": 40.6976244, "lon": -73.9164228 }, + { "lat": 40.6972839, "lon": -73.9167582 }, + { "lat": 40.6969489, "lon": -73.9170882 }, + { "lat": 40.6967441, "lon": -73.9172892 }, + { "lat": 40.6962993, "lon": -73.9177279 }, + { "lat": 40.6962670, "lon": -73.9177597 }, + { "lat": 40.6962080, "lon": -73.9178180 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "Grove Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680817, + "bounds": { + "minlat": 40.7060950, + "minlon": -73.9335120, + "maxlat": 40.7063540, + "maxlon": -73.9318940 + }, + "nodes": [ + 42518787, + 12859614358, + 11007794931, + 9767625300, + 9767625299, + 42490311 + ], + "geometry": [ + { "lat": 40.7060950, "lon": -73.9335120 }, + { "lat": 40.7061065, "lon": -73.9334404 }, + { "lat": 40.7062102, "lon": -73.9327917 }, + { "lat": 40.7063301, "lon": -73.9320433 }, + { "lat": 40.7063398, "lon": -73.9319820 }, + { "lat": 40.7063540, "lon": -73.9318940 } + ], + "tags": { + "highway": "residential", + "name": "Harrison Place", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Pl", + "tiger:reviewed": "name", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 5680818, + "bounds": { + "minlat": 40.7074066, + "minlon": -73.9253809, + "maxlat": 40.7075825, + "maxlon": -73.9240010 + }, + "nodes": [ + 42516137, + 9744131127, + 9728022955, + 9744131152, + 1275778430 + ], + "geometry": [ + { "lat": 40.7074066, "lon": -73.9253809 }, + { "lat": 40.7074170, "lon": -73.9253115 }, + { "lat": 40.7075825, "lon": -73.9241834 }, + { "lat": 40.7075736, "lon": -73.9241308 }, + { "lat": 40.7075425, "lon": -73.9240010 } + ], + "tags": { + "highway": "residential", + "name": "Harrison Place", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680852, + "bounds": { + "minlat": 40.6996280, + "minlon": -73.9320310, + "maxlat": 40.7001073, + "maxlon": -73.9315591 + }, + "nodes": [ + 42499809, + 9744012617, + 9720880133, + 1275778441 + ], + "geometry": [ + { "lat": 40.6996280, "lon": -73.9320310 }, + { "lat": 40.6996785, "lon": -73.9319814 }, + { "lat": 40.7000646, "lon": -73.9316016 }, + { "lat": 40.7001073, "lon": -73.9315591 } + ], + "tags": { + "highway": "residential", + "name": "Melrose Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Melrose", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 5680862, + "bounds": { + "minlat": 40.7048381, + "minlon": -73.9663165, + "maxlat": 40.7076245, + "maxlon": -73.9621585 + }, + "nodes": [ + 42477986, + 10058693152, + 42525692, + 6235394755, + 42520210, + 6235394752, + 4999699711, + 42469118, + 5849350263, + 6248573333, + 42506366 + ], + "geometry": [ + { "lat": 40.7076245, "lon": -73.9621585 }, + { "lat": 40.7075548, "lon": -73.9621790 }, + { "lat": 40.7074900, "lon": -73.9621980 }, + { "lat": 40.7065418, "lon": -73.9636692 }, + { "lat": 40.7064871, "lon": -73.9637541 }, + { "lat": 40.7064349, "lon": -73.9638351 }, + { "lat": 40.7057201, "lon": -73.9649429 }, + { "lat": 40.7056282, "lon": -73.9650865 }, + { "lat": 40.7053246, "lon": -73.9655577 }, + { "lat": 40.7049018, "lon": -73.9662134 }, + { "lat": 40.7048381, "lon": -73.9663165 } + ], + "tags": { + "highway": "residential", + "name": "Clymer Street", + "name:etymology:wikidata": "Q708913", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Clymer", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5680870, + "bounds": { + "minlat": 40.7123898, + "minlon": -73.9534911, + "maxlat": 40.7131205, + "maxlon": -73.9513324 + }, + "nodes": [ + 42520729, + 9768177763, + 9957055594, + 42488310, + 9957055593, + 10734121245, + 2089937738, + 42520582 + ], + "geometry": [ + { "lat": 40.7131205, "lon": -73.9534911 }, + { "lat": 40.7130969, "lon": -73.9534249 }, + { "lat": 40.7127316, "lon": -73.9524020 }, + { "lat": 40.7127020, "lon": -73.9523190 }, + { "lat": 40.7126755, "lon": -73.9522477 }, + { "lat": 40.7124352, "lon": -73.9516008 }, + { "lat": 40.7123898, "lon": -73.9514785 }, + { "lat": 40.7124006, "lon": -73.9513324 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lane_markings": "no", + "name": "Ainslie Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680883, + "bounds": { + "minlat": 40.7028349, + "minlon": -73.9911989, + "maxlat": 40.7028532, + "maxlon": -73.9906888 + }, + "nodes": [ + 6907438190, + 42526133, + 10726048597, + 42501454 + ], + "geometry": [ + { "lat": 40.7028532, "lon": -73.9911989 }, + { "lat": 40.7028416, "lon": -73.9908759 }, + { "lat": 40.7028372, "lon": -73.9907523 }, + { "lat": 40.7028349, "lon": -73.9906888 } + ], + "tags": { + "access": "no", + "highway": "service", + "name": "Howard Alley", + "service": "alley", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Howard", + "tiger:name_type": "Aly" + } +}, +{ + "type": "way", + "id": 5680902, + "bounds": { + "minlat": 40.7146704, + "minlon": -73.9569334, + "maxlat": 40.7184658, + "maxlon": -73.9528124 + }, + "nodes": [ + 42526495, + 6228178112, + 9789424672, + 42482473, + 9789424673, + 6248588901, + 42492547, + 6248588899, + 6248588898, + 42518980, + 6248588895, + 6235394628, + 42480071, + 6235394629, + 6235394632, + 42506186, + 6248588894, + 7271544524, + 6235394637, + 42526505, + 6235394635, + 9353053505, + 42526508 + ], + "geometry": [ + { "lat": 40.7184658, "lon": -73.9528124 }, + { "lat": 40.7184114, "lon": -73.9528582 }, + { "lat": 40.7179595, "lon": -73.9533451 }, + { "lat": 40.7179135, "lon": -73.9533952 }, + { "lat": 40.7178629, "lon": -73.9534499 }, + { "lat": 40.7174096, "lon": -73.9539357 }, + { "lat": 40.7173570, "lon": -73.9539920 }, + { "lat": 40.7173093, "lon": -73.9540434 }, + { "lat": 40.7168580, "lon": -73.9545298 }, + { "lat": 40.7168050, "lon": -73.9545870 }, + { "lat": 40.7167565, "lon": -73.9546395 }, + { "lat": 40.7163078, "lon": -73.9551255 }, + { "lat": 40.7162520, "lon": -73.9551860 }, + { "lat": 40.7162060, "lon": -73.9552356 }, + { "lat": 40.7157537, "lon": -73.9557242 }, + { "lat": 40.7157020, "lon": -73.9557800 }, + { "lat": 40.7156515, "lon": -73.9558331 }, + { "lat": 40.7154037, "lon": -73.9560943 }, + { "lat": 40.7152001, "lon": -73.9563089 }, + { "lat": 40.7151440, "lon": -73.9563680 }, + { "lat": 40.7150953, "lon": -73.9564207 }, + { "lat": 40.7147345, "lon": -73.9568201 }, + { "lat": 40.7146704, "lon": -73.9569334 } + ], + "tags": { + "highway": "residential", + "name": "Roebling Street", + "name:etymology:wikidata": "Q77237", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Roebling", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5680913, + "bounds": { + "minlat": 40.6998842, + "minlon": -73.9501230, + "maxlat": 40.7000169, + "maxlon": -73.9496819 + }, + "nodes": [ + 8229508970, + 8617830349, + 13191762961, + 8617830341, + 8229508997, + 9755373204, + 9755373205 + ], + "geometry": [ + { "lat": 40.7000169, "lon": -73.9496819 }, + { "lat": 40.6999712, "lon": -73.9498003 }, + { "lat": 40.6998996, "lon": -73.9499087 }, + { "lat": 40.6998884, "lon": -73.9499462 }, + { "lat": 40.6998842, "lon": -73.9499860 }, + { "lat": 40.6998844, "lon": -73.9500081 }, + { "lat": 40.6999062, "lon": -73.9501230 } + ], + "tags": { + "highway": "residential", + "name": "Gerry Street", + "name:etymology:wikidata": "Q219797", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Gerry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5680918, + "bounds": { + "minlat": 40.7248208, + "minlon": -73.9372430, + "maxlat": 40.7277940, + "maxlon": -73.9367854 + }, + "nodes": [ + 8896031715, + 9789356971, + 12873867725, + 12873867722, + 5891916885, + 9789356978, + 42479405, + 9789356959, + 5891914560, + 9789356944, + 42526793 + ], + "geometry": [ + { "lat": 40.7248208, "lon": -73.9367886 }, + { "lat": 40.7249490, "lon": -73.9367854 }, + { "lat": 40.7252426, "lon": -73.9368334 }, + { "lat": 40.7259058, "lon": -73.9369418 }, + { "lat": 40.7262195, "lon": -73.9369931 }, + { "lat": 40.7262690, "lon": -73.9370009 }, + { "lat": 40.7263270, "lon": -73.9370100 }, + { "lat": 40.7264130, "lon": -73.9370236 }, + { "lat": 40.7276673, "lon": -73.9372245 }, + { "lat": 40.7277154, "lon": -73.9372315 }, + { "lat": 40.7277940, "lon": -73.9372430 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Van Dam Street", + "name:etymology:wikidata": "Q7335542", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5680938, + "bounds": { + "minlat": 40.7002063, + "minlon": -73.9538934, + "maxlat": 40.7025700, + "maxlon": -73.9502510 + }, + "nodes": [ + 42492065, + 5368768989, + 1275778487, + 9632404898, + 42482202, + 9755373265, + 9755373295, + 42520556 + ], + "geometry": [ + { "lat": 40.7002063, "lon": -73.9538934 }, + { "lat": 40.7002581, "lon": -73.9538144 }, + { "lat": 40.7005199, "lon": -73.9534185 }, + { "lat": 40.7014411, "lon": -73.9519892 }, + { "lat": 40.7014914, "lon": -73.9519117 }, + { "lat": 40.7015352, "lon": -73.9518442 }, + { "lat": 40.7024830, "lon": -73.9503850 }, + { "lat": 40.7025700, "lon": -73.9502510 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Lorimer Street", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Lorimer", + "tiger:name_type": "St", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5680945, + "bounds": { + "minlat": 40.7049640, + "minlon": -73.9290260, + "maxlat": 40.7082770, + "maxlon": -73.9281090 + }, + "nodes": [ + 42504156, + 9744012712, + 9355837597, + 9950027975, + 42520112, + 9950027976, + 9959630901, + 42490916, + 9959630902, + 9959635922, + 42525015, + 9959635921, + 9959635941, + 42487180, + 9959635942, + 9355837600, + 9767625185, + 42496387 + ], + "geometry": [ + { "lat": 40.7049640, "lon": -73.9281090 }, + { "lat": 40.7050509, "lon": -73.9281333 }, + { "lat": 40.7050957, "lon": -73.9281458 }, + { "lat": 40.7054247, "lon": -73.9282380 }, + { "lat": 40.7054820, "lon": -73.9282540 }, + { "lat": 40.7055536, "lon": -73.9282741 }, + { "lat": 40.7061280, "lon": -73.9284351 }, + { "lat": 40.7061810, "lon": -73.9284500 }, + { "lat": 40.7062495, "lon": -73.9284689 }, + { "lat": 40.7068273, "lon": -73.9286287 }, + { "lat": 40.7068790, "lon": -73.9286430 }, + { "lat": 40.7069493, "lon": -73.9286626 }, + { "lat": 40.7075191, "lon": -73.9288218 }, + { "lat": 40.7075770, "lon": -73.9288380 }, + { "lat": 40.7076395, "lon": -73.9288550 }, + { "lat": 40.7081752, "lon": -73.9290008 }, + { "lat": 40.7082192, "lon": -73.9290105 }, + { "lat": 40.7082770, "lon": -73.9290260 } + ], + "tags": { + "highway": "residential", + "name": "Porter Avenue", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Porter", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 5680946, + "bounds": { + "minlat": 40.7216378, + "minlon": -73.9358898, + "maxlat": 40.7236720, + "maxlon": -73.9350001 + }, + "nodes": [ + 42484243, + 42500197, + 9937834348, + 10653103674, + 42522377, + 9937797976, + 9937834349, + 8465212320, + 9937834359, + 42522710 + ], + "geometry": [ + { "lat": 40.7216378, "lon": -73.9350001 }, + { "lat": 40.7223180, "lon": -73.9352841 }, + { "lat": 40.7229205, "lon": -73.9355536 }, + { "lat": 40.7229328, "lon": -73.9355596 }, + { "lat": 40.7229970, "lon": -73.9355879 }, + { "lat": 40.7230675, "lon": -73.9356194 }, + { "lat": 40.7231040, "lon": -73.9356357 }, + { "lat": 40.7235751, "lon": -73.9358465 }, + { "lat": 40.7236087, "lon": -73.9358615 }, + { "lat": 40.7236720, "lon": -73.9358898 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Porter Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680949, + "bounds": { + "minlat": 40.7243295, + "minlon": -73.9551290, + "maxlat": 40.7262788, + "maxlon": -73.9491851 + }, + "nodes": [ + 42488122, + 9789402626, + 9927158538, + 42499046, + 9927158537, + 9789402825, + 42494578, + 9789402823, + 9789343584, + 42527678, + 9789343586, + 9788947080, + 42527806, + 9788947082, + 9765409756, + 42491226, + 9765409758, + 9765409773, + 42523216, + 9765409771, + 9765409785, + 5051959088 + ], + "geometry": [ + { "lat": 40.7243295, "lon": -73.9551290 }, + { "lat": 40.7243538, "lon": -73.9550529 }, + { "lat": 40.7245781, "lon": -73.9543371 }, + { "lat": 40.7246010, "lon": -73.9542690 }, + { "lat": 40.7246222, "lon": -73.9542045 }, + { "lat": 40.7248511, "lon": -73.9535085 }, + { "lat": 40.7248730, "lon": -73.9534420 }, + { "lat": 40.7248940, "lon": -73.9533783 }, + { "lat": 40.7251271, "lon": -73.9526725 }, + { "lat": 40.7251520, "lon": -73.9525970 }, + { "lat": 40.7251760, "lon": -73.9525244 }, + { "lat": 40.7254075, "lon": -73.9518224 }, + { "lat": 40.7254360, "lon": -73.9517360 }, + { "lat": 40.7254642, "lon": -73.9516514 }, + { "lat": 40.7256957, "lon": -73.9509513 }, + { "lat": 40.7257210, "lon": -73.9508750 }, + { "lat": 40.7257469, "lon": -73.9507962 }, + { "lat": 40.7259767, "lon": -73.9500967 }, + { "lat": 40.7259990, "lon": -73.9500290 }, + { "lat": 40.7260221, "lon": -73.9499594 }, + { "lat": 40.7262492, "lon": -73.9492743 }, + { "lat": 40.7262788, "lon": -73.9491851 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Norman Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5680950, + "bounds": { + "minlat": 40.7274038, + "minlon": -73.9457350, + "maxlat": 40.7275817, + "maxlon": -73.9438743 + }, + "nodes": [ + 42502933, + 9788947217, + 11701385996, + 9788947348, + 42472693, + 9788947346, + 9927149415, + 42523808 + ], + "geometry": [ + { "lat": 40.7274038, "lon": -73.9457350 }, + { "lat": 40.7274112, "lon": -73.9456573 }, + { "lat": 40.7274167, "lon": -73.9456000 }, + { "lat": 40.7274840, "lon": -73.9448991 }, + { "lat": 40.7274931, "lon": -73.9448080 }, + { "lat": 40.7274989, "lon": -73.9447370 }, + { "lat": 40.7275735, "lon": -73.9439608 }, + { "lat": 40.7275817, "lon": -73.9438743 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Norman Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5680961, + "bounds": { + "minlat": 40.7133200, + "minlon": -73.9492450, + "maxlat": 40.7140275, + "maxlon": -73.9349601 + }, + "nodes": [ + 42490343, + 5838943014, + 5156402873, + 9755789525, + 42464415, + 9755789496, + 9755789497, + 9755789498, + 42494201, + 9755789499, + 5156406442, + 42524393, + 4660922252, + 9755789594, + 7722378711, + 9755789593, + 4660922253, + 9755789615, + 42502976, + 9755789614, + 9767624874, + 42467863, + 9767624876, + 9795356094, + 9795356091, + 42528046, + 9795356112, + 9767624861, + 9795356115, + 42491183, + 9795356121, + 9795356153, + 42527653 + ], + "geometry": [ + { "lat": 40.7137342, "lon": -73.9349601 }, + { "lat": 40.7137374, "lon": -73.9350511 }, + { "lat": 40.7137495, "lon": -73.9353973 }, + { "lat": 40.7138247, "lon": -73.9372613 }, + { "lat": 40.7138277, "lon": -73.9373419 }, + { "lat": 40.7138310, "lon": -73.9374414 }, + { "lat": 40.7138720, "lon": -73.9386837 }, + { "lat": 40.7138745, "lon": -73.9387458 }, + { "lat": 40.7138769, "lon": -73.9388049 }, + { "lat": 40.7138800, "lon": -73.9388800 }, + { "lat": 40.7138994, "lon": -73.9392469 }, + { "lat": 40.7139460, "lon": -73.9406770 }, + { "lat": 40.7139835, "lon": -73.9415317 }, + { "lat": 40.7139913, "lon": -73.9415989 }, + { "lat": 40.7140063, "lon": -73.9417098 }, + { "lat": 40.7140227, "lon": -73.9418440 }, + { "lat": 40.7140275, "lon": -73.9418749 }, + { "lat": 40.7139635, "lon": -73.9425001 }, + { "lat": 40.7139550, "lon": -73.9425829 }, + { "lat": 40.7139464, "lon": -73.9426748 }, + { "lat": 40.7138055, "lon": -73.9441612 }, + { "lat": 40.7137960, "lon": -73.9442650 }, + { "lat": 40.7137845, "lon": -73.9443896 }, + { "lat": 40.7136506, "lon": -73.9458151 }, + { "lat": 40.7136456, "lon": -73.9458685 }, + { "lat": 40.7136380, "lon": -73.9459490 }, + { "lat": 40.7136288, "lon": -73.9460430 }, + { "lat": 40.7134906, "lon": -73.9474573 }, + { "lat": 40.7134855, "lon": -73.9475118 }, + { "lat": 40.7134770, "lon": -73.9475970 }, + { "lat": 40.7134676, "lon": -73.9476954 }, + { "lat": 40.7133283, "lon": -73.9491558 }, + { "lat": 40.7133200, "lon": -73.9492450 } + ], + "tags": { + "highway": "residential", + "name": "Devoe Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5680973, + "bounds": { + "minlat": 40.7238543, + "minlon": -73.9391810, + "maxlat": 40.7280160, + "maxlon": -73.9384458 + }, + "nodes": [ + 42476675, + 9194920859, + 9194920858, + 9194920857, + 6384561663, + 5891916887, + 9789356988, + 42479403, + 9788947052, + 9765784218, + 9788947412, + 42527832 + ], + "geometry": [ + { "lat": 40.7238543, "lon": -73.9384458 }, + { "lat": 40.7238673, "lon": -73.9384553 }, + { "lat": 40.7238933, "lon": -73.9384801 }, + { "lat": 40.7239288, "lon": -73.9385035 }, + { "lat": 40.7239592, "lon": -73.9385170 }, + { "lat": 40.7260573, "lon": -73.9388605 }, + { "lat": 40.7260903, "lon": -73.9388661 }, + { "lat": 40.7261510, "lon": -73.9388760 }, + { "lat": 40.7262301, "lon": -73.9388888 }, + { "lat": 40.7278999, "lon": -73.9391620 }, + { "lat": 40.7279458, "lon": -73.9391695 }, + { "lat": 40.7280160, "lon": -73.9391810 } + ], + "tags": { + "highway": "residential", + "name": "Hausman Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5680985, + "bounds": { + "minlat": 40.7268262, + "minlon": -73.9362535, + "maxlat": 40.7274928, + "maxlon": -73.9341460 + }, + "nodes": [ + 8896031641, + 9789356909, + 194586254, + 7986896471, + 7833503760, + 7833503755, + 9927149404, + 42502778 + ], + "geometry": [ + { "lat": 40.7268262, "lon": -73.9341460 }, + { "lat": 40.7268647, "lon": -73.9342753 }, + { "lat": 40.7268811, "lon": -73.9343290 }, + { "lat": 40.7269321, "lon": -73.9344927 }, + { "lat": 40.7270586, "lon": -73.9349088 }, + { "lat": 40.7272954, "lon": -73.9356517 }, + { "lat": 40.7274403, "lon": -73.9360936 }, + { "lat": 40.7274928, "lon": -73.9362535 } + ], + "tags": { + "highway": "residential", + "name": "Bridgewater Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5680986, + "bounds": { + "minlat": 40.7041770, + "minlon": -73.9810200, + "maxlat": 40.7042290, + "maxlon": -73.9796030 + }, + "nodes": [ + 42479472, + 8262936214, + 5345736607, + 42479478 + ], + "geometry": [ + { "lat": 40.7042290, "lon": -73.9810200 }, + { "lat": 40.7042268, "lon": -73.9809595 }, + { "lat": 40.7042252, "lon": -73.9809175 }, + { "lat": 40.7041770, "lon": -73.9796030 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Admiral Perry Plaza", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Admiral Perry;John", + "tiger:name_type": "Plz;St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5680990, + "bounds": { + "minlat": 40.7192023, + "minlon": -73.9640095, + "maxlat": 40.7198922, + "maxlon": -73.9628939 + }, + "nodes": [ + 42528566, + 3630563169, + 1424163333, + 9795044536, + 42469496 + ], + "geometry": [ + { "lat": 40.7198922, "lon": -73.9640095 }, + { "lat": 40.7198648, "lon": -73.9639643 }, + { "lat": 40.7196969, "lon": -73.9636874 }, + { "lat": 40.7192626, "lon": -73.9629906 }, + { "lat": 40.7192023, "lon": -73.9628939 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "North 5th Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5681037, + "bounds": { + "minlat": 40.7040118, + "minlon": -73.9389276, + "maxlat": 40.7040187, + "maxlon": -73.9386915 + }, + "nodes": [ + 42513678, + 13018688514, + 13018688515, + 7722378722 + ], + "geometry": [ + { "lat": 40.7040118, "lon": -73.9386915 }, + { "lat": 40.7040156, "lon": -73.9388231 }, + { "lat": 40.7040162, "lon": -73.9388412 }, + { "lat": 40.7040187, "lon": -73.9389276 } + ], + "tags": { + "highway": "residential", + "name": "Moore Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no" + } +}, +{ + "type": "way", + "id": 5681040, + "bounds": { + "minlat": 40.7046226, + "minlon": -73.9350214, + "maxlat": 40.7049730, + "maxlon": -73.9332016 + }, + "nodes": [ + 42518776, + 9744012845, + 10977791980, + 9355837601, + 9744012847, + 42528875 + ], + "geometry": [ + { "lat": 40.7049730, "lon": -73.9332016 }, + { "lat": 40.7049557, "lon": -73.9332913 }, + { "lat": 40.7047327, "lon": -73.9344498 }, + { "lat": 40.7046489, "lon": -73.9348849 }, + { "lat": 40.7046383, "lon": -73.9349402 }, + { "lat": 40.7046226, "lon": -73.9350214 } + ], + "tags": { + "highway": "residential", + "name": "Moore Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5681086, + "bounds": { + "minlat": 40.7084947, + "minlon": -73.9388669, + "maxlat": 40.7092958, + "maxlon": -73.9329869 + }, + "nodes": [ + 42490322, + 6934478983, + 42518747, + 5914633710, + 42474042, + 10701641663, + 42529171 + ], + "geometry": [ + { "lat": 40.7092958, "lon": -73.9329869 }, + { "lat": 40.7092888, "lon": -73.9330817 }, + { "lat": 40.7089068, "lon": -73.9345718 }, + { "lat": 40.7088033, "lon": -73.9356612 }, + { "lat": 40.7086780, "lon": -73.9369800 }, + { "lat": 40.7085754, "lon": -73.9380366 }, + { "lat": 40.7084947, "lon": -73.9388669 } + ], + "tags": { + "cycleway:lane": "pictogram", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "Meserole Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5681088, + "bounds": { + "minlat": 40.7105330, + "minlon": -73.9282680, + "maxlat": 40.7117499, + "maxlon": -73.9235493 + }, + "nodes": [ + 42505693, + 9767625153, + 7417311497, + 10171007022, + 10253436220, + 42516152, + 10253436219, + 2997098836, + 10253436226, + 42509743, + 10253436225, + 12847161674, + 42474017 + ], + "geometry": [ + { "lat": 40.7105330, "lon": -73.9282680 }, + { "lat": 40.7105535, "lon": -73.9281891 }, + { "lat": 40.7105674, "lon": -73.9281355 }, + { "lat": 40.7106729, "lon": -73.9277286 }, + { "lat": 40.7109104, "lon": -73.9268125 }, + { "lat": 40.7109390, "lon": -73.9267020 }, + { "lat": 40.7109640, "lon": -73.9266036 }, + { "lat": 40.7111356, "lon": -73.9259293 }, + { "lat": 40.7113115, "lon": -73.9252380 }, + { "lat": 40.7113400, "lon": -73.9251260 }, + { "lat": 40.7113639, "lon": -73.9250342 }, + { "lat": 40.7117232, "lon": -73.9236518 }, + { "lat": 40.7117499, "lon": -73.9235493 } + ], + "tags": { + "highway": "residential", + "name": "Meserole Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meserole", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 5681092, + "bounds": { + "minlat": 40.7006446, + "minlon": -73.9364567, + "maxlat": 40.7011002, + "maxlon": -73.9347993 + }, + "nodes": [ + 42513688, + 9301423396, + 9950989265, + 9950989277, + 42500482 + ], + "geometry": [ + { "lat": 40.7006446, "lon": -73.9364567 }, + { "lat": 40.7006786, "lon": -73.9363481 }, + { "lat": 40.7010656, "lon": -73.9349264 }, + { "lat": 40.7010785, "lon": -73.9348791 }, + { "lat": 40.7011002, "lon": -73.9347993 } + ], + "tags": { + "highway": "residential", + "name": "Forrest Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Forrest", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5681166, + "bounds": { + "minlat": 40.7173814, + "minlon": -73.9521731, + "maxlat": 40.7177102, + "maxlon": -73.9486653 + }, + "nodes": [ + 42476621, + 8901116195, + 8901116196, + 12994324008, + 12994324009, + 12994324007, + 5673291198, + 42527665, + 5673291189, + 8390132539, + 6228178126, + 9789424754, + 42520607 + ], + "geometry": [ + { "lat": 40.7176728, "lon": -73.9486653 }, + { "lat": 40.7176920, "lon": -73.9487105 }, + { "lat": 40.7177063, "lon": -73.9487499 }, + { "lat": 40.7177095, "lon": -73.9487624 }, + { "lat": 40.7177102, "lon": -73.9487733 }, + { "lat": 40.7177096, "lon": -73.9487861 }, + { "lat": 40.7175984, "lon": -73.9498623 }, + { "lat": 40.7175903, "lon": -73.9499480 }, + { "lat": 40.7175811, "lon": -73.9500462 }, + { "lat": 40.7174883, "lon": -73.9510331 }, + { "lat": 40.7173962, "lon": -73.9520134 }, + { "lat": 40.7173906, "lon": -73.9520742 }, + { "lat": 40.7173814, "lon": -73.9521731 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Frost Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5681167, + "bounds": { + "minlat": 40.7186810, + "minlon": -73.9404954, + "maxlat": 40.7190480, + "maxlon": -73.9390870 + }, + "nodes": [ + 7722378705, + 9695721708, + 42504207 + ], + "geometry": [ + { "lat": 40.7186810, "lon": -73.9404954 }, + { "lat": 40.7187095, "lon": -73.9403836 }, + { "lat": 40.7190480, "lon": -73.9390870 } + ], + "tags": { + "highway": "residential", + "name": "Frost Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Frost", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5681168, + "bounds": { + "minlat": 40.7178318, + "minlon": -73.9475898, + "maxlat": 40.7179070, + "maxlon": -73.9466530 + }, + "nodes": [ + 42476519, + 9204892616, + 9204892615, + 5520860783, + 5520860785, + 42529769 + ], + "geometry": [ + { "lat": 40.7178784, "lon": -73.9475898 }, + { "lat": 40.7178525, "lon": -73.9475308 }, + { "lat": 40.7178318, "lon": -73.9474784 }, + { "lat": 40.7178940, "lon": -73.9467961 }, + { "lat": 40.7178993, "lon": -73.9467370 }, + { "lat": 40.7179070, "lon": -73.9466530 } + ], + "tags": { + "highway": "residential", + "name": "Frost Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5681189, + "bounds": { + "minlat": 40.7027090, + "minlon": -73.9373222, + "maxlat": 40.7035770, + "maxlon": -73.9328150 + }, + "nodes": [ + 42518762, + 9744012808, + 42499796, + 42529847, + 9952734764, + 7222262821, + 8465212332, + 9646979755, + 42513684 + ], + "geometry": [ + { "lat": 40.7035770, "lon": -73.9328150 }, + { "lat": 40.7035583, "lon": -73.9329073 }, + { "lat": 40.7033045, "lon": -73.9342298 }, + { "lat": 40.7032401, "lon": -73.9345641 }, + { "lat": 40.7032229, "lon": -73.9346534 }, + { "lat": 40.7029956, "lon": -73.9358341 }, + { "lat": 40.7027397, "lon": -73.9371627 }, + { "lat": 40.7027307, "lon": -73.9372095 }, + { "lat": 40.7027090, "lon": -73.9373222 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Cook Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cook", + "tiger:name_type": "St", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206", + "wikidata": "Q115973197" + } +}, +{ + "type": "way", + "id": 5681191, + "bounds": { + "minlat": 40.7023460, + "minlon": -73.9423855, + "maxlat": 40.7024149, + "maxlon": -73.9417091 + }, + "nodes": [ + 42529856, + 9752127004, + 42467807 + ], + "geometry": [ + { "lat": 40.7024149, "lon": -73.9417091 }, + { "lat": 40.7023565, "lon": -73.9422826 }, + { "lat": 40.7023460, "lon": -73.9423855 } + ], + "tags": { + "highway": "residential", + "name": "Cook Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cook", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "wikidata": "Q115973197" + } +}, +{ + "type": "way", + "id": 5681252, + "bounds": { + "minlat": 40.6992020, + "minlon": -73.9312800, + "maxlat": 40.7007180, + "maxlon": -73.9297870 + }, + "nodes": [ + 42499816, + 9743987280, + 7153236314, + 8228286068, + 9705748034, + 42486715 + ], + "geometry": [ + { "lat": 40.6992020, "lon": -73.9312800 }, + { "lat": 40.6992573, "lon": -73.9312263 }, + { "lat": 40.6999919, "lon": -73.9305116 }, + { "lat": 40.7006292, "lon": -73.9298785 }, + { "lat": 40.7006622, "lon": -73.9298425 }, + { "lat": 40.7007180, "lon": -73.9297870 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Jefferson Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Jefferson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 5681259, + "bounds": { + "minlat": 40.7254760, + "minlon": -73.9349100, + "maxlat": 40.7258260, + "maxlon": -73.9333440 + }, + "nodes": [ + 42505679, + 42516108 + ], + "geometry": [ + { "lat": 40.7254760, "lon": -73.9349100 }, + { "lat": 40.7258260, "lon": -73.9333440 } + ], + "tags": { + "highway": "unclassified", + "name": "Thomas Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5681290, + "bounds": { + "minlat": 40.7013018, + "minlon": -73.9367327, + "maxlat": 40.7017500, + "maxlon": -73.9350890 + }, + "nodes": [ + 42500467, + 9950989266, + 9744012829, + 9950989283, + 42513686 + ], + "geometry": [ + { "lat": 40.7017500, "lon": -73.9350890 }, + { "lat": 40.7017293, "lon": -73.9351650 }, + { "lat": 40.7013443, "lon": -73.9365775 }, + { "lat": 40.7013315, "lon": -73.9366243 }, + { "lat": 40.7013018, "lon": -73.9367327 } + ], + "tags": { + "highway": "residential", + "name": "Montieth Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Montieth", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5681341, + "bounds": { + "minlat": 40.7017566, + "minlon": -73.9799032, + "maxlat": 40.7033605, + "maxlon": -73.9795561 + }, + "nodes": [ + 2406352159, + 42531557, + 7154021059, + 7707712200 + ], + "geometry": [ + { "lat": 40.7017566, "lon": -73.9799032 }, + { "lat": 40.7022951, "lon": -73.9797625 }, + { "lat": 40.7029886, "lon": -73.9795561 }, + { "lat": 40.7033605, "lon": -73.9796791 } + ], + "tags": { + "access": "private", + "foot": "private", + "highway": "unclassified", + "name": "West Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5681362, + "bounds": { + "minlat": 40.7066761, + "minlon": -73.9547765, + "maxlat": 40.7069628, + "maxlon": -73.9544241 + }, + "nodes": [ + 42478029, + 9785910739, + 6245642040, + 42491439 + ], + "geometry": [ + { "lat": 40.7069628, "lon": -73.9547765 }, + { "lat": 40.7069407, "lon": -73.9547259 }, + { "lat": 40.7067448, "lon": -73.9544975 }, + { "lat": 40.7066761, "lon": -73.9544241 } + ], + "tags": { + "highway": "tertiary", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5681375, + "bounds": { + "minlat": 40.7111130, + "minlon": -73.9676070, + "maxlat": 40.7149499, + "maxlon": -73.9561990 + }, + "nodes": [ + 42482417, + 9768177660, + 9351722074, + 9768177666, + 42480096, + 9768177663, + 6248588476, + 42526520, + 6248588477, + 9768177647, + 6248588464, + 42509264, + 6248588465, + 7159541754, + 9955210322, + 42520409, + 9767625446, + 8468050582, + 7034559356, + 42531870, + 7034559357, + 9351722085, + 7034559288, + 42506329, + 7034559294, + 13701098396, + 11081343115, + 9767625438, + 5186818628, + 11249142483, + 11249142504, + 42469472 + ], + "geometry": [ + { "lat": 40.7111130, "lon": -73.9561990 }, + { "lat": 40.7111450, "lon": -73.9562851 }, + { "lat": 40.7115672, "lon": -73.9574223 }, + { "lat": 40.7115846, "lon": -73.9574692 }, + { "lat": 40.7116090, "lon": -73.9575350 }, + { "lat": 40.7116400, "lon": -73.9576202 }, + { "lat": 40.7121332, "lon": -73.9589740 }, + { "lat": 40.7121634, "lon": -73.9590570 }, + { "lat": 40.7122031, "lon": -73.9591653 }, + { "lat": 40.7126718, "lon": -73.9604468 }, + { "lat": 40.7126889, "lon": -73.9604936 }, + { "lat": 40.7127138, "lon": -73.9605614 }, + { "lat": 40.7127446, "lon": -73.9606456 }, + { "lat": 40.7132274, "lon": -73.9619635 }, + { "lat": 40.7132468, "lon": -73.9620184 }, + { "lat": 40.7132690, "lon": -73.9620810 }, + { "lat": 40.7132979, "lon": -73.9621599 }, + { "lat": 40.7137803, "lon": -73.9634755 }, + { "lat": 40.7137983, "lon": -73.9635284 }, + { "lat": 40.7138234, "lon": -73.9636025 }, + { "lat": 40.7138536, "lon": -73.9636920 }, + { "lat": 40.7140196, "lon": -73.9641246 }, + { "lat": 40.7142674, "lon": -73.9650666 }, + { "lat": 40.7142900, "lon": -73.9651420 }, + { "lat": 40.7143140, "lon": -73.9652293 }, + { "lat": 40.7144325, "lon": -73.9656676 }, + { "lat": 40.7145146, "lon": -73.9659712 }, + { "lat": 40.7146926, "lon": -73.9666294 }, + { "lat": 40.7147094, "lon": -73.9666925 }, + { "lat": 40.7147259, "lon": -73.9667551 }, + { "lat": 40.7147467, "lon": -73.9668343 }, + { "lat": 40.7149499, "lon": -73.9676070 } + ], + "tags": { + "highway": "residential", + "name": "South 2nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "2nd", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5681376, + "bounds": { + "minlat": 40.7102640, + "minlon": -73.9544783, + "maxlat": 40.7106705, + "maxlon": -73.9538560 + }, + "nodes": [ + 42488298, + 9755372024, + 3546120722, + 9967927266, + 9967927267, + 8842929848, + 9967927268, + 8842568889, + 8842568890 + ], + "geometry": [ + { "lat": 40.7102640, "lon": -73.9538560 }, + { "lat": 40.7102965, "lon": -73.9539419 }, + { "lat": 40.7104739, "lon": -73.9544056 }, + { "lat": 40.7104873, "lon": -73.9544220 }, + { "lat": 40.7105029, "lon": -73.9544332 }, + { "lat": 40.7105231, "lon": -73.9544436 }, + { "lat": 40.7105420, "lon": -73.9544507 }, + { "lat": 40.7106013, "lon": -73.9544651 }, + { "lat": 40.7106705, "lon": -73.9544783 } + ], + "tags": { + "highway": "residential", + "name": "South 2nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "2nd", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5681437, + "bounds": { + "minlat": 40.7019910, + "minlon": -73.9797625, + "maxlat": 40.7022951, + "maxlon": -73.9779120 + }, + "nodes": [ + 42523931, + 42504383, + 42531557 + ], + "geometry": [ + { "lat": 40.7019910, "lon": -73.9779120 }, + { "lat": 40.7021600, "lon": -73.9789580 }, + { "lat": 40.7022951, "lon": -73.9797625 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Ship Ways Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Ship Ways", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5681480, + "bounds": { + "minlat": 40.7201390, + "minlon": -73.9475770, + "maxlat": 40.7213329, + "maxlon": -73.9455960 + }, + "nodes": [ + 42532947, + 9789393793, + 9789393799, + 42467919, + 9789393801, + 9789356817, + 2987758898 + ], + "geometry": [ + { "lat": 40.7201390, "lon": -73.9475770 }, + { "lat": 40.7201792, "lon": -73.9475106 }, + { "lat": 40.7207466, "lon": -73.9465696 }, + { "lat": 40.7207890, "lon": -73.9465030 }, + { "lat": 40.7208345, "lon": -73.9464272 }, + { "lat": 40.7212784, "lon": -73.9456869 }, + { "lat": 40.7213329, "lon": -73.9455960 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Newton Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5681675, + "bounds": { + "minlat": 40.7108057, + "minlon": -73.9605909, + "maxlat": 40.7110488, + "maxlon": -73.9599366 + }, + "nodes": [ + 42526525, + 8842469040, + 9968376582, + 42467551 + ], + "geometry": [ + { "lat": 40.7108057, "lon": -73.9599366 }, + { "lat": 40.7108359, "lon": -73.9600286 }, + { "lat": 40.7110101, "lon": -73.9604975 }, + { "lat": 40.7110488, "lon": -73.9605909 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "South 4th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes:backward": "left;right", + "turn:lanes:forward": "through" + } +}, +{ + "type": "way", + "id": 5681691, + "bounds": { + "minlat": 40.6964134, + "minlon": -73.9972328, + "maxlat": 40.7004309, + "maxlon": -73.9953295 + }, + "nodes": [ + 42476706, + 42517594, + 42528611, + 42517908, + 2392139445, + 11686402195, + 42535270, + 598202958 + ], + "geometry": [ + { "lat": 40.6964134, "lon": -73.9972328 }, + { "lat": 40.6983645, "lon": -73.9963273 }, + { "lat": 40.6990102, "lon": -73.9960124 }, + { "lat": 40.6996601, "lon": -73.9956954 }, + { "lat": 40.6998408, "lon": -73.9956073 }, + { "lat": 40.7002657, "lon": -73.9954068 }, + { "lat": 40.7003172, "lon": -73.9953825 }, + { "lat": 40.7004309, "lon": -73.9953295 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Columbia Heights", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Columbia Heights:Everit", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5681728, + "bounds": { + "minlat": 40.7290181, + "minlon": -73.9591117, + "maxlat": 40.7291692, + "maxlon": -73.9574772 + }, + "nodes": [ + 42531627, + 9788947484, + 5801598831, + 9788947490, + 42520808 + ], + "geometry": [ + { "lat": 40.7290181, "lon": -73.9591117 }, + { "lat": 40.7290247, "lon": -73.9590400 }, + { "lat": 40.7291536, "lon": -73.9576406 }, + { "lat": 40.7291594, "lon": -73.9575794 }, + { "lat": 40.7291692, "lon": -73.9574772 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Milton Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Milton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5681741, + "bounds": { + "minlat": 40.7019743, + "minlon": -73.9440653, + "maxlat": 40.7021931, + "maxlon": -73.9440256 + }, + "nodes": [ + 42505452, + 9752126449, + 42529854 + ], + "geometry": [ + { "lat": 40.7019743, "lon": -73.9440256 }, + { "lat": 40.7020763, "lon": -73.9440441 }, + { "lat": 40.7021931, "lon": -73.9440653 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Manhattan", + "tiger:name_type": "Ave", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 5681753, + "bounds": { + "minlat": 40.7355605, + "minlon": -73.9585271, + "maxlat": 40.7360817, + "maxlon": -73.9529675 + }, + "nodes": [ + 42513176, + 8097222260, + 8097025104, + 42535635, + 8097082917, + 7008335436, + 42520827 + ], + "geometry": [ + { "lat": 40.7360817, "lon": -73.9529675 }, + { "lat": 40.7360740, "lon": -73.9530484 }, + { "lat": 40.7358820, "lon": -73.9550783 }, + { "lat": 40.7358732, "lon": -73.9551909 }, + { "lat": 40.7358618, "lon": -73.9553138 }, + { "lat": 40.7355697, "lon": -73.9584226 }, + { "lat": 40.7355605, "lon": -73.9585271 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Dupont Street", + "name:etymology:wikidata": "Q127406", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Dupont", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5681805, + "bounds": { + "minlat": 40.7118153, + "minlon": -73.9379795, + "maxlat": 40.7127540, + "maxlon": -73.9345340 + }, + "nodes": [ + 42490334, + 9767625033, + 42474052 + ], + "geometry": [ + { "lat": 40.7127540, "lon": -73.9345340 }, + { "lat": 40.7127314, "lon": -73.9346168 }, + { "lat": 40.7118153, "lon": -73.9379795 } + ], + "tags": { + "highway": "residential", + "name": "Maujer Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Maujer", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5681808, + "bounds": { + "minlat": 40.7109010, + "minlon": -73.9437880, + "maxlat": 40.7112180, + "maxlon": -73.9404230 + }, + "nodes": [ + 42513647, + 9752590845, + 9752590852, + 42502965, + 9752590853, + 7257058083, + 9752590862, + 42467844 + ], + "geometry": [ + { "lat": 40.7112180, "lon": -73.9404230 }, + { "lat": 40.7112092, "lon": -73.9405165 }, + { "lat": 40.7110670, "lon": -73.9420298 }, + { "lat": 40.7110600, "lon": -73.9421050 }, + { "lat": 40.7110511, "lon": -73.9421994 }, + { "lat": 40.7109626, "lon": -73.9431357 }, + { "lat": 40.7109117, "lon": -73.9436827 }, + { "lat": 40.7109010, "lon": -73.9437880 } + ], + "tags": { + "highway": "residential", + "name": "Maujer Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5681815, + "bounds": { + "minlat": 40.7077860, + "minlon": -73.9325230, + "maxlat": 40.7082380, + "maxlon": -73.9320720 + }, + "nodes": [ + 42496384, + 9767625243, + 42490318 + ], + "geometry": [ + { "lat": 40.7077860, "lon": -73.9320720 }, + { "lat": 40.7078485, "lon": -73.9321357 }, + { "lat": 40.7082380, "lon": -73.9325230 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "Knickerbocker Avenue", + "name:etymology:wikidata": "Q55609555", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Knickerbocker", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11207", + "tiger:zip_right": "11207" + } +}, +{ + "type": "way", + "id": 5681879, + "bounds": { + "minlat": 40.7180582, + "minlon": -73.9653256, + "maxlat": 40.7188127, + "maxlon": -73.9641115 + }, + "nodes": [ + 2319695197, + 42520686, + 13700953724, + 9794890528, + 9948156224, + 2357946650, + 42469492 + ], + "geometry": [ + { "lat": 40.7188127, "lon": -73.9653256 }, + { "lat": 40.7183750, "lon": -73.9646210 }, + { "lat": 40.7183252, "lon": -73.9645401 }, + { "lat": 40.7181528, "lon": -73.9642631 }, + { "lat": 40.7181244, "lon": -73.9642172 }, + { "lat": 40.7180996, "lon": -73.9641773 }, + { "lat": 40.7180582, "lon": -73.9641115 } + ], + "tags": { + "highway": "residential", + "name": "North 3rd Street", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "3rd", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5681893, + "bounds": { + "minlat": 40.7346892, + "minlon": -73.9600471, + "maxlat": 40.7353684, + "maxlon": -73.9528495 + }, + "nodes": [ + 42531618, + 9997952326, + 5107556537, + 9997952325, + 7008335431, + 42520825, + 7008335428, + 2275578139, + 4833594459, + 5801598827, + 7008335441, + 42535632, + 8097082935, + 2276342406, + 8097025066, + 277046418 + ], + "geometry": [ + { "lat": 40.7346892, "lon": -73.9600471 }, + { "lat": 40.7346968, "lon": -73.9599643 }, + { "lat": 40.7347686, "lon": -73.9591711 }, + { "lat": 40.7348283, "lon": -73.9585504 }, + { "lat": 40.7348323, "lon": -73.9585080 }, + { "lat": 40.7348415, "lon": -73.9584098 }, + { "lat": 40.7348517, "lon": -73.9583059 }, + { "lat": 40.7349758, "lon": -73.9570221 }, + { "lat": 40.7350138, "lon": -73.9565979 }, + { "lat": 40.7351434, "lon": -73.9552472 }, + { "lat": 40.7351487, "lon": -73.9551898 }, + { "lat": 40.7351597, "lon": -73.9550740 }, + { "lat": 40.7351704, "lon": -73.9549610 }, + { "lat": 40.7353544, "lon": -73.9530120 }, + { "lat": 40.7353604, "lon": -73.9529491 }, + { "lat": 40.7353684, "lon": -73.9528495 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Eagle Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Eagle", + "tiger:name_type": "St", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 5681925, + "bounds": { + "minlat": 40.6817897, + "minlon": -74.0158076, + "maxlat": 40.7052923, + "maxlon": -74.0057595 + }, + "nodes": [ + 370880729, + 2012177069, + 4150144209, + 4150144243, + 4150144234, + 42457253, + 4150144238, + 4150144256, + 4150144232, + 9647382367, + 9647382366, + 4150144265, + 9647382365, + 9647382364, + 4150144222, + 4150144233, + 4150144267, + 4150144220, + 4150144259, + 4150144218, + 4150144210, + 9288043139, + 42457266, + 4150144255, + 4150144231, + 4150144268, + 42457268, + 4150144260, + 4150144236, + 4150144221, + 4150144242, + 4150144264, + 4150144206, + 373864862, + 4150144266, + 4150144269, + 4150144247, + 4150144258, + 4150144263, + 4150144251, + 42511260 + ], + "geometry": [ + { "lat": 40.7052923, "lon": -74.0152648 }, + { "lat": 40.7047447, "lon": -74.0154782 }, + { "lat": 40.7045838, "lon": -74.0155375 }, + { "lat": 40.7044495, "lon": -74.0155854 }, + { "lat": 40.7042959, "lon": -74.0156238 }, + { "lat": 40.7039875, "lon": -74.0156941 }, + { "lat": 40.7038712, "lon": -74.0157117 }, + { "lat": 40.7037321, "lon": -74.0157358 }, + { "lat": 40.7035762, "lon": -74.0157602 }, + { "lat": 40.7033950, "lon": -74.0157819 }, + { "lat": 40.7032137, "lon": -74.0157941 }, + { "lat": 40.7030041, "lon": -74.0158076 }, + { "lat": 40.7028517, "lon": -74.0158049 }, + { "lat": 40.7026662, "lon": -74.0157954 }, + { "lat": 40.7025237, "lon": -74.0157845 }, + { "lat": 40.7023838, "lon": -74.0157641 }, + { "lat": 40.7019935, "lon": -74.0157008 }, + { "lat": 40.7018106, "lon": -74.0156658 }, + { "lat": 40.7014238, "lon": -74.0155895 }, + { "lat": 40.7010957, "lon": -74.0155331 }, + { "lat": 40.7005915, "lon": -74.0153922 }, + { "lat": 40.6926159, "lon": -74.0123455 }, + { "lat": 40.6911446, "lon": -74.0118042 }, + { "lat": 40.6908749, "lon": -74.0117018 }, + { "lat": 40.6906272, "lon": -74.0115856 }, + { "lat": 40.6903693, "lon": -74.0114459 }, + { "lat": 40.6901446, "lon": -74.0113067 }, + { "lat": 40.6899044, "lon": -74.0111433 }, + { "lat": 40.6834990, "lon": -74.0065812 }, + { "lat": 40.6834217, "lon": -74.0065332 }, + { "lat": 40.6833497, "lon": -74.0064878 }, + { "lat": 40.6832696, "lon": -74.0064435 }, + { "lat": 40.6831911, "lon": -74.0063997 }, + { "lat": 40.6831208, "lon": -74.0063644 }, + { "lat": 40.6830409, "lon": -74.0063272 }, + { "lat": 40.6822410, "lon": -74.0060009 }, + { "lat": 40.6821521, "lon": -74.0059613 }, + { "lat": 40.6820582, "lon": -74.0059154 }, + { "lat": 40.6819640, "lon": -74.0058631 }, + { "lat": 40.6818810, "lon": -74.0058143 }, + { "lat": 40.6817897, "lon": -74.0057595 } + ], + "tags": { + "bicycle": "no", + "description": "One lane is reversible on weekday mornings Manhattan bound to HOV 3+ vehicles", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "-2", + "lit": "24/7", + "maxheight": "12'1\"", + "maxspeed": "40 mph", + "maxwidth": "8'6\"", + "name": "Brooklyn-Battery Tunnel", + "official_name": "Hugh L. Carey Tunnel", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "short_name": "Battery Tunnel", + "surface": "asphalt", + "toll": "yes", + "tunnel": "yes", + "unsigned_ref": "I 478", + "wikidata": "Q125635", + "wikipedia": "en:Brooklyn–Battery Tunnel" + } +}, +{ + "type": "way", + "id": 5681963, + "bounds": { + "minlat": 40.7011020, + "minlon": -73.9394562, + "maxlat": 40.7012931, + "maxlon": -73.9392440 + }, + "nodes": [ + 42504106, + 9301423364, + 42515613 + ], + "geometry": [ + { "lat": 40.7012931, "lon": -73.9394562 }, + { "lat": 40.7012147, "lon": -73.9394226 }, + { "lat": 40.7011020, "lon": -73.9392440 } + ], + "tags": { + "highway": "residential", + "name": "Beaver Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Beaver", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5681978, + "bounds": { + "minlat": 40.7233950, + "minlon": -73.9571219, + "maxlat": 40.7239172, + "maxlon": -73.9562761 + }, + "nodes": [ + 13271280511, + 9779533047, + 42506291 + ], + "geometry": [ + { "lat": 40.7239172, "lon": -73.9571219 }, + { "lat": 40.7234358, "lon": -73.9563429 }, + { "lat": 40.7233950, "lon": -73.9562761 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North 14th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "14th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5682011, + "bounds": { + "minlat": 40.7076891, + "minlon": -73.9230208, + "maxlat": 40.7084173, + "maxlon": -73.9219143 + }, + "nodes": [ + 42504181, + 9744131220, + 10068713608, + 42530355, + 10068713607, + 9747567484, + 13456694863 + ], + "geometry": [ + { "lat": 40.7084173, "lon": -73.9230208 }, + { "lat": 40.7083237, "lon": -73.9229835 }, + { "lat": 40.7081035, "lon": -73.9226112 }, + { "lat": 40.7080601, "lon": -73.9225379 }, + { "lat": 40.7080282, "lon": -73.9224840 }, + { "lat": 40.7077157, "lon": -73.9219561 }, + { "lat": 40.7076891, "lon": -73.9219143 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5682012, + "bounds": { + "minlat": 40.6993920, + "minlon": -73.9953825, + "maxlat": 40.7003172, + "maxlon": -73.9920750 + }, + "nodes": [ + 42535270, + 10745369491, + 10739408343, + 10739408346, + 42513257, + 10739408347, + 10739408372, + 10739408361, + 42483455, + 10739408360, + 8620121515, + 11246787136, + 4400225690 + ], + "geometry": [ + { "lat": 40.7003172, "lon": -73.9953825 }, + { "lat": 40.7003017, "lon": -73.9953306 }, + { "lat": 40.7000985, "lon": -73.9946205 }, + { "lat": 40.7000898, "lon": -73.9945890 }, + { "lat": 40.7000754, "lon": -73.9945372 }, + { "lat": 40.7000542, "lon": -73.9944606 }, + { "lat": 40.6998726, "lon": -73.9938067 }, + { "lat": 40.6998553, "lon": -73.9937444 }, + { "lat": 40.6998347, "lon": -73.9936701 }, + { "lat": 40.6998180, "lon": -73.9936100 }, + { "lat": 40.6994300, "lon": -73.9922120 }, + { "lat": 40.6994161, "lon": -73.9921640 }, + { "lat": 40.6993920, "lon": -73.9920750 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Cranberry Street", + "name:etymology:wikidata": "Q21546387", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cranberry", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5682016, + "bounds": { + "minlat": 40.7154640, + "minlon": -73.9495980, + "maxlat": 40.7163691, + "maxlon": -73.9401130 + }, + "nodes": [ + 42527659, + 9802943865, + 8233048583, + 9802943855, + 42491195, + 9795355850, + 9795355940, + 42535559, + 9795355937, + 6235394675, + 42467885, + 6235394678, + 9795332506, + 42502895, + 9795332507, + 9695771722, + 42491529, + 9695771651, + 10075684602, + 9695771778, + 7725510882 + ], + "geometry": [ + { "lat": 40.7154640, "lon": -73.9495980 }, + { "lat": 40.7154720, "lon": -73.9495115 }, + { "lat": 40.7156032, "lon": -73.9481018 }, + { "lat": 40.7156092, "lon": -73.9480379 }, + { "lat": 40.7156170, "lon": -73.9479540 }, + { "lat": 40.7156248, "lon": -73.9478746 }, + { "lat": 40.7157703, "lon": -73.9463921 }, + { "lat": 40.7157790, "lon": -73.9463030 }, + { "lat": 40.7157863, "lon": -73.9462260 }, + { "lat": 40.7159281, "lon": -73.9447302 }, + { "lat": 40.7159390, "lon": -73.9446150 }, + { "lat": 40.7159494, "lon": -73.9445077 }, + { "lat": 40.7160878, "lon": -73.9430236 }, + { "lat": 40.7160960, "lon": -73.9429350 }, + { "lat": 40.7161037, "lon": -73.9428541 }, + { "lat": 40.7161654, "lon": -73.9421989 }, + { "lat": 40.7161782, "lon": -73.9420805 }, + { "lat": 40.7161889, "lon": -73.9419701 }, + { "lat": 40.7163534, "lon": -73.9402747 }, + { "lat": 40.7163578, "lon": -73.9402223 }, + { "lat": 40.7163691, "lon": -73.9401130 } + ], + "tags": { + "highway": "residential", + "name": "Skillman Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5682017, + "bounds": { + "minlat": 40.7174411, + "minlon": -73.9366467, + "maxlat": 40.7178382, + "maxlon": -73.9349822 + }, + "nodes": [ + 42490369, + 9695771642, + 9937798005, + 42524622 + ], + "geometry": [ + { "lat": 40.7174411, "lon": -73.9366467 }, + { "lat": 40.7174662, "lon": -73.9365413 }, + { "lat": 40.7178041, "lon": -73.9351251 }, + { "lat": 40.7178382, "lon": -73.9349822 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Skillman Avenue" + } +}, +{ + "type": "way", + "id": 5682020, + "bounds": { + "minlat": 40.7032012, + "minlon": -73.9895800, + "maxlat": 40.7038599, + "maxlon": -73.9895376 + }, + "nodes": [ + 42472714, + 8262935516, + 8262935523, + 42469336 + ], + "geometry": [ + { "lat": 40.7038599, "lon": -73.9895376 }, + { "lat": 40.7038192, "lon": -73.9895408 }, + { "lat": 40.7032604, "lon": -73.9895764 }, + { "lat": 40.7032012, "lon": -73.9895800 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Washington Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Washington", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 5682056, + "bounds": { + "minlat": 40.6994850, + "minlon": -73.9610320, + "maxlat": 40.7037470, + "maxlon": -73.9544420 + }, + "nodes": [ + 42469391, + 9772858867, + 7984538437, + 9772859025, + 42506427, + 9772859023, + 9772859040, + 42520236, + 9772859038, + 9772859151, + 42523048, + 9772859149, + 9755373352, + 42482183 + ], + "geometry": [ + { "lat": 40.6994850, "lon": -73.9610320 }, + { "lat": 40.6995586, "lon": -73.9609162 }, + { "lat": 40.6997973, "lon": -73.9605481 }, + { "lat": 40.7001885, "lon": -73.9599420 }, + { "lat": 40.7002350, "lon": -73.9598700 }, + { "lat": 40.7002831, "lon": -73.9597955 }, + { "lat": 40.7013462, "lon": -73.9581512 }, + { "lat": 40.7013980, "lon": -73.9580710 }, + { "lat": 40.7014531, "lon": -73.9579859 }, + { "lat": 40.7024657, "lon": -73.9564214 }, + { "lat": 40.7025100, "lon": -73.9563530 }, + { "lat": 40.7025577, "lon": -73.9562793 }, + { "lat": 40.7036999, "lon": -73.9545146 }, + { "lat": 40.7037470, "lon": -73.9544420 } + ], + "tags": { + "highway": "residential", + "name": "Rutledge Street", + "name:etymology:wikidata": "Q878666", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rutledge", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 5682085, + "bounds": { + "minlat": 40.7162014, + "minlon": -73.9668242, + "maxlat": 40.7164243, + "maxlon": -73.9660716 + }, + "nodes": [ + 42537973, + 9779538113, + 42520683, + 9779538115, + 7034559286, + 42469478 + ], + "geometry": [ + { "lat": 40.7164243, "lon": -73.9668242 }, + { "lat": 40.7163841, "lon": -73.9666905 }, + { "lat": 40.7163618, "lon": -73.9666088 }, + { "lat": 40.7163448, "lon": -73.9665492 }, + { "lat": 40.7162430, "lon": -73.9662118 }, + { "lat": 40.7162014, "lon": -73.9660716 } + ], + "tags": { + "highway": "residential", + "name": "Grand Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Grand", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 5682089, + "bounds": { + "minlat": 40.7108988, + "minlon": -73.9542859, + "maxlat": 40.7118397, + "maxlon": -73.9520722 + }, + "nodes": [ + 42520724, + 9768177801, + 9768177809, + 8232714830, + 9768177802, + 42488306, + 9755371997, + 8232714842, + 7732747203, + 4593135563, + 9967927279, + 9967927277, + 8232714828, + 8842579329, + 8842579331, + 8842579327 + ], + "geometry": [ + { "lat": 40.7118397, "lon": -73.9542859 }, + { "lat": 40.7118187, "lon": -73.9542298 }, + { "lat": 40.7117985, "lon": -73.9541760 }, + { "lat": 40.7114686, "lon": -73.9532741 }, + { "lat": 40.7114490, "lon": -73.9532152 }, + { "lat": 40.7114210, "lon": -73.9531311 }, + { "lat": 40.7113955, "lon": -73.9530544 }, + { "lat": 40.7113715, "lon": -73.9529883 }, + { "lat": 40.7112416, "lon": -73.9526301 }, + { "lat": 40.7110693, "lon": -73.9521545 }, + { "lat": 40.7110586, "lon": -73.9521346 }, + { "lat": 40.7110447, "lon": -73.9521175 }, + { "lat": 40.7110278, "lon": -73.9521051 }, + { "lat": 40.7109947, "lon": -73.9520860 }, + { "lat": 40.7109789, "lon": -73.9520825 }, + { "lat": 40.7108988, "lon": -73.9520722 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 5682123, + "bounds": { + "minlat": 40.7050210, + "minlon": -73.9445670, + "maxlat": 40.7051820, + "maxlon": -73.9428500 + }, + "nodes": [ + 42467820, + 9752594027, + 13718214747, + 11026017872, + 9752594026, + 42535511 + ], + "geometry": [ + { "lat": 40.7051820, "lon": -73.9428500 }, + { "lat": 40.7051723, "lon": -73.9429562 }, + { "lat": 40.7051215, "lon": -73.9434977 }, + { "lat": 40.7050346, "lon": -73.9444227 }, + { "lat": 40.7050308, "lon": -73.9444629 }, + { "lat": 40.7050210, "lon": -73.9445670 } + ], + "tags": { + "highway": "residential", + "name": "McKibbin Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "McKibbin", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 5682172, + "bounds": { + "minlat": 40.7072520, + "minlon": -73.9660491, + "maxlat": 40.7104554, + "maxlon": -73.9654967 + }, + "nodes": [ + 42477970, + 9785653159, + 10058693160, + 42494567, + 4882413679, + 10058693164, + 42520080, + 10058693165, + 10053847479, + 42474664, + 10053847478, + 10053847500, + 42501312, + 10053847503, + 8468050615, + 6338024006, + 42505380 + ], + "geometry": [ + { "lat": 40.7072520, "lon": -73.9659362 }, + { "lat": 40.7073367, "lon": -73.9659628 }, + { "lat": 40.7074476, "lon": -73.9659976 }, + { "lat": 40.7074898, "lon": -73.9660109 }, + { "lat": 40.7076318, "lon": -73.9660491 }, + { "lat": 40.7081421, "lon": -73.9659488 }, + { "lat": 40.7081970, "lon": -73.9659380 }, + { "lat": 40.7082642, "lon": -73.9659249 }, + { "lat": 40.7088463, "lon": -73.9658118 }, + { "lat": 40.7089020, "lon": -73.9658010 }, + { "lat": 40.7089715, "lon": -73.9657874 }, + { "lat": 40.7096590, "lon": -73.9656524 }, + { "lat": 40.7097170, "lon": -73.9656410 }, + { "lat": 40.7097904, "lon": -73.9656267 }, + { "lat": 40.7103462, "lon": -73.9655181 }, + { "lat": 40.7103799, "lon": -73.9655115 }, + { "lat": 40.7104554, "lon": -73.9654967 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5682210, + "bounds": { + "minlat": 40.7041310, + "minlon": -73.9306320, + "maxlat": 40.7050970, + "maxlon": -73.9302370 + }, + "nodes": [ + 42520106, + 9744012722, + 42538863, + 8228286022, + 9744012698, + 42504129 + ], + "geometry": [ + { "lat": 40.7050970, "lon": -73.9306320 }, + { "lat": 40.7050423, "lon": -73.9306167 }, + { "lat": 40.7044620, "lon": -73.9304540 }, + { "lat": 40.7042543, "lon": -73.9303179 }, + { "lat": 40.7042082, "lon": -73.9302876 }, + { "lat": 40.7041310, "lon": -73.9302370 } + ], + "tags": { + "highway": "residential", + "name": "Vandervoort Place", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Vandervoort", + "tiger:name_type": "Pl", + "tiger:reviewed": "name", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 5695570, + "bounds": { + "minlat": 40.8084756, + "minlon": -73.9154323, + "maxlat": 40.8102552, + "maxlon": -73.9143397 + }, + "nodes": [ + 42719411, + 13809174850, + 5308571793, + 42719414, + 5308571795, + 42719416, + 8571884277, + 13809174839, + 42719422 + ], + "geometry": [ + { "lat": 40.8084756, "lon": -73.9154323 }, + { "lat": 40.8085432, "lon": -73.9153889 }, + { "lat": 40.8090770, "lon": -73.9150458 }, + { "lat": 40.8091180, "lon": -73.9150230 }, + { "lat": 40.8091601, "lon": -73.9149971 }, + { "lat": 40.8097550, "lon": -73.9146310 }, + { "lat": 40.8101709, "lon": -73.9143875 }, + { "lat": 40.8101919, "lon": -73.9143756 }, + { "lat": 40.8102552, "lon": -73.9143397 } + ], + "tags": { + "highway": "residential", + "name": "Crimmins Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Crimmins", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5695572, + "bounds": { + "minlat": 40.8346255, + "minlon": -73.9183051, + "maxlat": 40.8347750, + "maxlon": -73.9182153 + }, + "nodes": [ + 2408393013, + 2829149699, + 42719428 + ], + "geometry": [ + { "lat": 40.8346255, "lon": -73.9183051 }, + { "lat": 40.8347502, "lon": -73.9182298 }, + { "lat": 40.8347750, "lon": -73.9182153 } + ], + "tags": { + "highway": "residential", + "name": "Grandview Place", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grandview", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5695573, + "bounds": { + "minlat": 40.8033439, + "minlon": -73.9188385, + "maxlat": 40.8039153, + "maxlon": -73.9184375 + }, + "nodes": [ + 42719445, + 8571918556, + 8571918561, + 11427300025, + 11427300032, + 8571884274, + 10702518391 + ], + "geometry": [ + { "lat": 40.8039153, "lon": -73.9184375 }, + { "lat": 40.8038495, "lon": -73.9184860 }, + { "lat": 40.8038004, "lon": -73.9185189 }, + { "lat": 40.8034535, "lon": -73.9187626 }, + { "lat": 40.8034103, "lon": -73.9187931 }, + { "lat": 40.8034026, "lon": -73.9187984 }, + { "lat": 40.8033439, "lon": -73.9188385 } + ], + "tags": { + "highway": "residential", + "name": "Saint Ann's Place", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "St Ann's", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5695575, + "bounds": { + "minlat": 40.8062704, + "minlon": -73.9238102, + "maxlat": 40.8078043, + "maxlon": -73.9201693 + }, + "nodes": [ + 42719455, + 9908621353, + 8285359926, + 9908650952, + 42719457, + 9908650954, + 9908650953, + 42719461 + ], + "geometry": [ + { "lat": 40.8078043, "lon": -73.9238102 }, + { "lat": 40.8077609, "lon": -73.9237052 }, + { "lat": 40.8071434, "lon": -73.9222306 }, + { "lat": 40.8066510, "lon": -73.9210760 }, + { "lat": 40.8066179, "lon": -73.9209980 }, + { "lat": 40.8065882, "lon": -73.9209292 }, + { "lat": 40.8063126, "lon": -73.9202702 }, + { "lat": 40.8062704, "lon": -73.9201693 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 136th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "136th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5695577, + "bounds": { + "minlat": 40.8100072, + "minlon": -73.9297330, + "maxlat": 40.8105116, + "maxlon": -73.9290654 + }, + "nodes": [ + 42719470, + 11882279889, + 10255325992, + 10255325991, + 8285464363 + ], + "geometry": [ + { "lat": 40.8105116, "lon": -73.9297330 }, + { "lat": 40.8104731, "lon": -73.9296823 }, + { "lat": 40.8103961, "lon": -73.9295809 }, + { "lat": 40.8100989, "lon": -73.9291897 }, + { "lat": 40.8100072, "lon": -73.9290654 } + ], + "tags": { + "highway": "residential", + "name": "East 136th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "136th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5695579, + "bounds": { + "minlat": 40.8009463, + "minlon": -73.9122979, + "maxlat": 40.8029387, + "maxlon": -73.9084923 + }, + "nodes": [ + 42719483, + 9822828712, + 8285355488, + 9910669589, + 9908669933, + 988638760, + 5859955125, + 9910669568, + 42719489, + 9910669569, + 5859955126, + 7043090352, + 9910669610, + 9910669611, + 42719492 + ], + "geometry": [ + { "lat": 40.8029387, "lon": -73.9122979 }, + { "lat": 40.8029095, "lon": -73.9122256 }, + { "lat": 40.8028849, "lon": -73.9121691 }, + { "lat": 40.8024223, "lon": -73.9110656 }, + { "lat": 40.8023795, "lon": -73.9109646 }, + { "lat": 40.8023279, "lon": -73.9108639 }, + { "lat": 40.8017022, "lon": -73.9097984 }, + { "lat": 40.8016732, "lon": -73.9097497 }, + { "lat": 40.8016270, "lon": -73.9096720 }, + { "lat": 40.8015892, "lon": -73.9096073 }, + { "lat": 40.8015596, "lon": -73.9095563 }, + { "lat": 40.8011458, "lon": -73.9088445 }, + { "lat": 40.8010272, "lon": -73.9086350 }, + { "lat": 40.8009927, "lon": -73.9085742 }, + { "lat": 40.8009463, "lon": -73.9084923 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 136th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "136th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5695581, + "bounds": { + "minlat": 40.8038390, + "minlon": -73.9154423, + "maxlat": 40.8042580, + "maxlon": -73.9144317 + }, + "nodes": [ + 42719497, + 13038955263, + 13018635102, + 42719500 + ], + "geometry": [ + { "lat": 40.8042580, "lon": -73.9154423 }, + { "lat": 40.8042227, "lon": -73.9153569 }, + { "lat": 40.8038844, "lon": -73.9145389 }, + { "lat": 40.8038390, "lon": -73.9144317 } + ], + "tags": { + "highway": "residential", + "name": "East 136th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "136th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5695593, + "bounds": { + "minlat": 40.8684510, + "minlon": -73.9079300, + "maxlat": 40.8689276, + "maxlon": -73.9071247 + }, + "nodes": [ + 42719556, + 2979499758, + 8464077425, + 42719558 + ], + "geometry": [ + { "lat": 40.8684510, "lon": -73.9079300 }, + { "lat": 40.8684665, "lon": -73.9077954 }, + { "lat": 40.8687807, "lon": -73.9073384 }, + { "lat": 40.8689276, "lon": -73.9071247 } + ], + "tags": { + "highway": "residential", + "name": "Heath Avenue", + "name:etymology:wikidata": "Q323758", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Heath", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5695594, + "bounds": { + "minlat": 40.8688671, + "minlon": -73.9076784, + "maxlat": 40.8690202, + "maxlon": -73.9071247 + }, + "nodes": [ + 42719558, + 2979499760, + 2979499761, + 2979499759, + 8464067964, + 2979499762, + 42719644 + ], + "geometry": [ + { "lat": 40.8689276, "lon": -73.9071247 }, + { "lat": 40.8688671, "lon": -73.9073461 }, + { "lat": 40.8688763, "lon": -73.9074038 }, + { "lat": 40.8689006, "lon": -73.9074534 }, + { "lat": 40.8689332, "lon": -73.9075177 }, + { "lat": 40.8689564, "lon": -73.9075634 }, + { "lat": 40.8690202, "lon": -73.9076784 } + ], + "tags": { + "highway": "residential", + "name": "Heath Avenue", + "name:etymology:wikidata": "Q323758", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Heath", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5695613, + "bounds": { + "minlat": 40.8487960, + "minlon": -73.9149390, + "maxlat": 40.8499804, + "maxlon": -73.9141481 + }, + "nodes": [ + 42720026, + 2907939278, + 42720029 + ], + "geometry": [ + { "lat": 40.8487960, "lon": -73.9149390 }, + { "lat": 40.8498863, "lon": -73.9141743 }, + { "lat": 40.8499804, "lon": -73.9141481 } + ], + "tags": { + "highway": "residential", + "name": "Harrison Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5696244, + "bounds": { + "minlat": 40.8356230, + "minlon": -73.9301494, + "maxlat": 40.8384704, + "maxlon": -73.9280874 + }, + "nodes": [ + 42729353, + 42729351, + 42729349, + 42729345, + 42729340, + 42729337, + 42729333, + 42729327, + 42729323, + 42729321, + 42729315, + 42729309, + 42729302, + 42729299, + 42729297, + 42729290, + 42729284, + 42729279, + 2799914639, + 42729276, + 2799914638, + 2799914631, + 42729274, + 42729266, + 42729263, + 42729259, + 595765063, + 595765062 + ], + "geometry": [ + { "lat": 40.8356230, "lon": -73.9297210 }, + { "lat": 40.8357532, "lon": -73.9299724 }, + { "lat": 40.8359115, "lon": -73.9301199 }, + { "lat": 40.8361083, "lon": -73.9301494 }, + { "lat": 40.8362930, "lon": -73.9301011 }, + { "lat": 40.8364690, "lon": -73.9300000 }, + { "lat": 40.8366310, "lon": -73.9299090 }, + { "lat": 40.8368328, "lon": -73.9298061 }, + { "lat": 40.8370316, "lon": -73.9297497 }, + { "lat": 40.8371919, "lon": -73.9297175 }, + { "lat": 40.8373928, "lon": -73.9296746 }, + { "lat": 40.8377297, "lon": -73.9296612 }, + { "lat": 40.8379631, "lon": -73.9295942 }, + { "lat": 40.8380909, "lon": -73.9295217 }, + { "lat": 40.8382127, "lon": -73.9294064 }, + { "lat": 40.8382959, "lon": -73.9292857 }, + { "lat": 40.8383912, "lon": -73.9290980 }, + { "lat": 40.8384562, "lon": -73.9289102 }, + { "lat": 40.8384704, "lon": -73.9287493 }, + { "lat": 40.8384481, "lon": -73.9286044 }, + { "lat": 40.8383649, "lon": -73.9284650 }, + { "lat": 40.8382330, "lon": -73.9283603 }, + { "lat": 40.8381315, "lon": -73.9283523 }, + { "lat": 40.8376201, "lon": -73.9283496 }, + { "lat": 40.8374984, "lon": -73.9283362 }, + { "lat": 40.8374273, "lon": -73.9283013 }, + { "lat": 40.8373502, "lon": -73.9282209 }, + { "lat": 40.8372566, "lon": -73.9280874 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5696296, + "bounds": { + "minlat": 40.8642180, + "minlon": -73.9068050, + "maxlat": 40.8657450, + "maxlon": -73.9041050 + }, + "nodes": [ + 42729933, + 10170161374, + 42729935, + 42729939, + 10170163904, + 42729942 + ], + "geometry": [ + { "lat": 40.8644260, "lon": -73.9068050 }, + { "lat": 40.8643929, "lon": -73.9067419 }, + { "lat": 40.8642180, "lon": -73.9064080 }, + { "lat": 40.8650230, "lon": -73.9045460 }, + { "lat": 40.8656521, "lon": -73.9041618 }, + { "lat": 40.8657450, "lon": -73.9041050 } + ], + "tags": { + "highway": "residential", + "name": "Devoe Terrace", + "oneway": "yes", + "parking:right": "yes", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Devoe", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 5696364, + "bounds": { + "minlat": 40.8734051, + "minlon": -73.9069997, + "maxlat": 40.8734631, + "maxlon": -73.9067173 + }, + "nodes": [ + 42731542, + 10128431631, + 7899133148, + 7899133142, + 42427923 + ], + "geometry": [ + { "lat": 40.8734051, "lon": -73.9067173 }, + { "lat": 40.8734235, "lon": -73.9067992 }, + { "lat": 40.8734266, "lon": -73.9068128 }, + { "lat": 40.8734466, "lon": -73.9069131 }, + { "lat": 40.8734631, "lon": -73.9069997 } + ], + "tags": { + "highway": "secondary", + "name": "West 225th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "225th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5696367, + "bounds": { + "minlat": 40.8339107, + "minlon": -73.9158196, + "maxlat": 40.8352826, + "maxlon": -73.9150116 + }, + "nodes": [ + 42731646, + 12739350648, + 42731643 + ], + "geometry": [ + { "lat": 40.8352826, "lon": -73.9150116 }, + { "lat": 40.8339668, "lon": -73.9157872 }, + { "lat": 40.8339107, "lon": -73.9158196 } + ], + "tags": { + "highway": "residential", + "name": "Sherman Avenue", + "name:etymology:wikidata": "Q188936", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5696374, + "bounds": { + "minlat": 40.8547650, + "minlon": -73.9097828, + "maxlat": 40.8558929, + "maxlon": -73.9076480 + }, + "nodes": [ + 42731691, + 42731693, + 13327591726, + 42720039, + 13327591723, + 42731703 + ], + "geometry": [ + { "lat": 40.8547650, "lon": -73.9076480 }, + { "lat": 40.8551435, "lon": -73.9083615 }, + { "lat": 40.8555104, "lon": -73.9090804 }, + { "lat": 40.8555438, "lon": -73.9091458 }, + { "lat": 40.8555870, "lon": -73.9092246 }, + { "lat": 40.8558929, "lon": -73.9097828 } + ], + "tags": { + "highway": "residential", + "name": "West 180th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "180th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5696375, + "bounds": { + "minlat": 40.8557290, + "minlon": -73.9154520, + "maxlat": 40.8565295, + "maxlon": -73.9104130 + }, + "nodes": [ + 42731727, + 10116582617, + 42731722, + 10116543405, + 2906620232, + 42731718, + 7505073494, + 42731715, + 10135688198, + 42731712 + ], + "geometry": [ + { "lat": 40.8565295, "lon": -73.9154520 }, + { "lat": 40.8563510, "lon": -73.9143461 }, + { "lat": 40.8562808, "lon": -73.9139115 }, + { "lat": 40.8560848, "lon": -73.9126025 }, + { "lat": 40.8560377, "lon": -73.9122879 }, + { "lat": 40.8560140, "lon": -73.9121300 }, + { "lat": 40.8559945, "lon": -73.9120027 }, + { "lat": 40.8558660, "lon": -73.9111670 }, + { "lat": 40.8557583, "lon": -73.9105707 }, + { "lat": 40.8557290, "lon": -73.9104130 } + ], + "tags": { + "highway": "residential", + "name": "West 180th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "180th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5696380, + "bounds": { + "minlat": 40.8471953, + "minlon": -73.9213646, + "maxlat": 40.8496277, + "maxlon": -73.9193705 + }, + "nodes": [ + 42728192, + 8285583672, + 12055955035, + 8285583684, + 42731821 + ], + "geometry": [ + { "lat": 40.8471953, "lon": -73.9213646 }, + { "lat": 40.8481718, "lon": -73.9205628 }, + { "lat": 40.8482710, "lon": -73.9204814 }, + { "lat": 40.8495376, "lon": -73.9194415 }, + { "lat": 40.8496277, "lon": -73.9193705 } + ], + "tags": { + "highway": "residential", + "name": "Montgomery Avenue", + "name:etymology:wikidata": "Q444947", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Montgomery", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5696445, + "bounds": { + "minlat": 40.8524342, + "minlon": -73.9204599, + "maxlat": 40.8559224, + "maxlon": -73.9172176 + }, + "nodes": [ + 4720620194, + 13068308648, + 42732711, + 13068117107, + 13703152977, + 7899105494, + 7899105486, + 9918291089, + 9918291090, + 12056107829, + 42727425 + ], + "geometry": [ + { "lat": 40.8524342, "lon": -73.9204599 }, + { "lat": 40.8532866, "lon": -73.9196512 }, + { "lat": 40.8533396, "lon": -73.9196033 }, + { "lat": 40.8533793, "lon": -73.9195662 }, + { "lat": 40.8536577, "lon": -73.9193059 }, + { "lat": 40.8542077, "lon": -73.9187915 }, + { "lat": 40.8557983, "lon": -73.9172753 }, + { "lat": 40.8558393, "lon": -73.9172414 }, + { "lat": 40.8558691, "lon": -73.9172264 }, + { "lat": 40.8558942, "lon": -73.9172210 }, + { "lat": 40.8559224, "lon": -73.9172176 } + ], + "tags": { + "highway": "residential", + "name": "Cedar Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cedar", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 5696463, + "bounds": { + "minlat": 40.8061942, + "minlon": -73.9279760, + "maxlat": 40.8068469, + "maxlon": -73.9274987 + }, + "nodes": [ + 42732838, + 6860068229, + 9908621494, + 42732842 + ], + "geometry": [ + { "lat": 40.8061942, "lon": -73.9279760 }, + { "lat": 40.8064239, "lon": -73.9278097 }, + { "lat": 40.8067494, "lon": -73.9275698 }, + { "lat": 40.8068469, "lon": -73.9274987 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Alexander Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Alexander", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5696469, + "bounds": { + "minlat": 40.8257710, + "minlon": -73.9156239, + "maxlat": 40.8260017, + "maxlon": -73.9154214 + }, + "nodes": [ + 3640190317, + 8613855521, + 3640176434 + ], + "geometry": [ + { "lat": 40.8257710, "lon": -73.9154214 }, + { "lat": 40.8258381, "lon": -73.9154520 }, + { "lat": 40.8260017, "lon": -73.9156239 } + ], + "tags": { + "highway": "residential", + "name": "East 162nd Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "162nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5696471, + "bounds": { + "minlat": 40.8282699, + "minlon": -73.9249667, + "maxlat": 40.8294668, + "maxlon": -73.9245122 + }, + "nodes": [ + 42732985, + 13038573976, + 13039060046, + 42732983 + ], + "geometry": [ + { "lat": 40.8282699, "lon": -73.9245122 }, + { "lat": 40.8283638, "lon": -73.9245478 }, + { "lat": 40.8293553, "lon": -73.9249243 }, + { "lat": 40.8294668, "lon": -73.9249667 } + ], + "tags": { + "highway": "residential", + "name": "East 162nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "162nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5696490, + "bounds": { + "minlat": 40.8767379, + "minlon": -73.9182869, + "maxlat": 40.8772422, + "maxlon": -73.9177695 + }, + "nodes": [ + 42733226, + 1545109739, + 1545109724, + 10132643449, + 7043037946, + 42733228 + ], + "geometry": [ + { "lat": 40.8767379, "lon": -73.9182869 }, + { "lat": 40.8769422, "lon": -73.9181439 }, + { "lat": 40.8770561, "lon": -73.9180420 }, + { "lat": 40.8771637, "lon": -73.9178845 }, + { "lat": 40.8772060, "lon": -73.9178225 }, + { "lat": 40.8772422, "lon": -73.9177695 } + ], + "tags": { + "highway": "residential", + "name": "Johnson Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Johnson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5696491, + "bounds": { + "minlat": 40.8766044, + "minlon": -73.9196089, + "maxlat": 40.8785310, + "maxlon": -73.9182869 + }, + "nodes": [ + 42733310, + 1545168020, + 1545167975, + 1545168024, + 1545168087, + 1545168018, + 1545109734, + 1545109729, + 1545109727, + 1545109742, + 1545109718, + 1545109741, + 1545109730, + 1545109719, + 1545109723, + 1545109722, + 42733226 + ], + "geometry": [ + { "lat": 40.8785310, "lon": -73.9196089 }, + { "lat": 40.8781089, "lon": -73.9193451 }, + { "lat": 40.8774148, "lon": -73.9189524 }, + { "lat": 40.8772853, "lon": -73.9189074 }, + { "lat": 40.8771730, "lon": -73.9188858 }, + { "lat": 40.8770550, "lon": -73.9188860 }, + { "lat": 40.8769089, "lon": -73.9189157 }, + { "lat": 40.8768198, "lon": -73.9189232 }, + { "lat": 40.8767559, "lon": -73.9188984 }, + { "lat": 40.8766988, "lon": -73.9188535 }, + { "lat": 40.8766533, "lon": -73.9187863 }, + { "lat": 40.8766196, "lon": -73.9187080 }, + { "lat": 40.8766044, "lon": -73.9186294 }, + { "lat": 40.8766111, "lon": -73.9185458 }, + { "lat": 40.8766271, "lon": -73.9184573 }, + { "lat": 40.8766658, "lon": -73.9183693 }, + { "lat": 40.8767379, "lon": -73.9182869 } + ], + "tags": { + "highway": "residential", + "name": "Johnson Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Johnson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070829", + "tiger:tlid": "80296061", + "tiger:upload_uuid": "bulk_upload.pl-31e02009-f620-482f-9ce6-28e1cea72242" + } +}, +{ + "type": "way", + "id": 5696510, + "bounds": { + "minlat": 40.8172200, + "minlon": -73.9224560, + "maxlat": 40.8180450, + "maxlon": -73.9192380 + }, + "nodes": [ + 42733526, + 8827329065, + 7669855390, + 42733524 + ], + "geometry": [ + { "lat": 40.8172200, "lon": -73.9192380 }, + { "lat": 40.8172446, "lon": -73.9193339 }, + { "lat": 40.8179137, "lon": -73.9219440 }, + { "lat": 40.8180450, "lon": -73.9224560 } + ], + "tags": { + "highway": "residential", + "name": "East 150th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "150th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5696515, + "bounds": { + "minlat": 40.8130889, + "minlon": -73.9078759, + "maxlat": 40.8138428, + "maxlon": -73.9041827 + }, + "nodes": [ + 42733578, + 13809174832, + 5859955161, + 13809174831, + 42733581, + 13809174830, + 13809174711, + 42733584, + 13809174714, + 13809166699, + 42733588, + 13809174702, + 9917835133, + 42733591 + ], + "geometry": [ + { "lat": 40.8138428, "lon": -73.9078759 }, + { "lat": 40.8138256, "lon": -73.9077921 }, + { "lat": 40.8136841, "lon": -73.9071004 }, + { "lat": 40.8136756, "lon": -73.9070589 }, + { "lat": 40.8136563, "lon": -73.9069645 }, + { "lat": 40.8136373, "lon": -73.9068716 }, + { "lat": 40.8134895, "lon": -73.9061497 }, + { "lat": 40.8134678, "lon": -73.9060436 }, + { "lat": 40.8134489, "lon": -73.9059511 }, + { "lat": 40.8132991, "lon": -73.9052192 }, + { "lat": 40.8132802, "lon": -73.9051267 }, + { "lat": 40.8132621, "lon": -73.9050383 }, + { "lat": 40.8131141, "lon": -73.9043162 }, + { "lat": 40.8130889, "lon": -73.9041827 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 150th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "150th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5696528, + "bounds": { + "minlat": 40.8218122, + "minlon": -73.9271827, + "maxlat": 40.8259674, + "maxlon": -73.9248530 + }, + "nodes": [ + 42733711, + 9166351228, + 9166351229, + 10133472992, + 5163203691, + 10133472989, + 13330151073, + 42733706, + 13330151076, + 2822074834, + 10133472988, + 10133472987, + 10133472986, + 2822074747, + 13330151068, + 9166351220, + 42733701, + 9166351219, + 2822074836, + 42733697 + ], + "geometry": [ + { "lat": 40.8259674, "lon": -73.9248530 }, + { "lat": 40.8259331, "lon": -73.9248919 }, + { "lat": 40.8259010, "lon": -73.9249194 }, + { "lat": 40.8258896, "lon": -73.9249273 }, + { "lat": 40.8258690, "lon": -73.9249418 }, + { "lat": 40.8254328, "lon": -73.9252025 }, + { "lat": 40.8251751, "lon": -73.9253565 }, + { "lat": 40.8251180, "lon": -73.9253906 }, + { "lat": 40.8250672, "lon": -73.9254195 }, + { "lat": 40.8249956, "lon": -73.9254602 }, + { "lat": 40.8246901, "lon": -73.9256298 }, + { "lat": 40.8239360, "lon": -73.9260486 }, + { "lat": 40.8232516, "lon": -73.9264287 }, + { "lat": 40.8227072, "lon": -73.9267310 }, + { "lat": 40.8225405, "lon": -73.9268254 }, + { "lat": 40.8225338, "lon": -73.9268292 }, + { "lat": 40.8223978, "lon": -73.9269107 }, + { "lat": 40.8222696, "lon": -73.9269809 }, + { "lat": 40.8221367, "lon": -73.9270480 }, + { "lat": 40.8218122, "lon": -73.9271827 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 5696538, + "bounds": { + "minlat": 40.8110056, + "minlon": -73.9228726, + "maxlat": 40.8133225, + "maxlon": -73.9172324 + }, + "nodes": [ + 3637936710, + 9908650990, + 5482371862, + 9908650991, + 9908650992, + 2795084755, + 9908621391, + 42733958, + 9908621392, + 2795084760, + 9908629931, + 2795084763, + 9908629932, + 9908629933, + 42733954 + ], + "geometry": [ + { "lat": 40.8110056, "lon": -73.9172324 }, + { "lat": 40.8110414, "lon": -73.9173377 }, + { "lat": 40.8111256, "lon": -73.9175851 }, + { "lat": 40.8115141, "lon": -73.9187095 }, + { "lat": 40.8115613, "lon": -73.9188384 }, + { "lat": 40.8116085, "lon": -73.9189608 }, + { "lat": 40.8122225, "lon": -73.9204431 }, + { "lat": 40.8122532, "lon": -73.9205759 }, + { "lat": 40.8122935, "lon": -73.9207398 }, + { "lat": 40.8131004, "lon": -73.9226553 }, + { "lat": 40.8131165, "lon": -73.9226830 }, + { "lat": 40.8131346, "lon": -73.9227092 }, + { "lat": 40.8131589, "lon": -73.9227303 }, + { "lat": 40.8132481, "lon": -73.9227956 }, + { "lat": 40.8133225, "lon": -73.9228726 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 143rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "143rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_left_1": "10454" + } +}, +{ + "type": "way", + "id": 5696559, + "bounds": { + "minlat": 40.8153306, + "minlon": -73.9306114, + "maxlat": 40.8190183, + "maxlon": -73.9292342 + }, + "nodes": [ + 42728921, + 9163819534, + 9163819533, + 42724271, + 9988093605, + 11570018487, + 13040500265, + 42734141, + 13040500263, + 8602649327, + 13330007019, + 42734146, + 13330007014, + 8602600472, + 13329984716, + 42734149 + ], + "geometry": [ + { "lat": 40.8153306, "lon": -73.9306114 }, + { "lat": 40.8154073, "lon": -73.9306060 }, + { "lat": 40.8154684, "lon": -73.9305991 }, + { "lat": 40.8155235, "lon": -73.9305862 }, + { "lat": 40.8159933, "lon": -73.9304051 }, + { "lat": 40.8163033, "lon": -73.9302856 }, + { "lat": 40.8169471, "lon": -73.9300375 }, + { "lat": 40.8170073, "lon": -73.9300143 }, + { "lat": 40.8170772, "lon": -73.9299874 }, + { "lat": 40.8175788, "lon": -73.9297931 }, + { "lat": 40.8176293, "lon": -73.9297756 }, + { "lat": 40.8176885, "lon": -73.9297550 }, + { "lat": 40.8177629, "lon": -73.9297257 }, + { "lat": 40.8189152, "lon": -73.9292711 }, + { "lat": 40.8189527, "lon": -73.9292577 }, + { "lat": 40.8190183, "lon": -73.9292342 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "name": "Gerard Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5696567, + "bounds": { + "minlat": 40.8329180, + "minlon": -73.9293850, + "maxlat": 40.8369290, + "maxlon": -73.9271230 + }, + "nodes": [ + 42734276, + 13809338808, + 42734280, + 42734283, + 12504046474, + 13703095058, + 7334236230, + 13809338862, + 42734286 + ], + "geometry": [ + { "lat": 40.8329180, "lon": -73.9293850 }, + { "lat": 40.8329764, "lon": -73.9293520 }, + { "lat": 40.8344180, "lon": -73.9285370 }, + { "lat": 40.8356210, "lon": -73.9278590 }, + { "lat": 40.8357676, "lon": -73.9277765 }, + { "lat": 40.8360350, "lon": -73.9276260 }, + { "lat": 40.8366011, "lon": -73.9273075 }, + { "lat": 40.8368432, "lon": -73.9271713 }, + { "lat": 40.8369290, "lon": -73.9271230 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Ogden Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ogden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5696597, + "bounds": { + "minlat": 40.8427294, + "minlon": -73.9086612, + "maxlat": 40.8430183, + "maxlon": -73.9086302 + }, + "nodes": [ + 12042551713, + 12737767472, + 6223504752, + 2408354099 + ], + "geometry": [ + { "lat": 40.8427294, "lon": -73.9086612 }, + { "lat": 40.8428241, "lon": -73.9086495 }, + { "lat": 40.8428784, "lon": -73.9086428 }, + { "lat": 40.8430183, "lon": -73.9086302 } + ], + "tags": { + "highway": "residential", + "name": "Eastburn Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Eastburn", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 5696602, + "bounds": { + "minlat": 40.8453220, + "minlon": -73.9193078, + "maxlat": 40.8461066, + "maxlon": -73.9191746 + }, + "nodes": [ + 42734969, + 13181365231, + 42734971 + ], + "geometry": [ + { "lat": 40.8453220, "lon": -73.9193078 }, + { "lat": 40.8460254, "lon": -73.9191884 }, + { "lat": 40.8461066, "lon": -73.9191746 } + ], + "tags": { + "highway": "residential", + "name": "Shakespeare Avenue", + "name:etymology:wikidata": "Q692", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Shakespeare", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5696609, + "bounds": { + "minlat": 40.8161004, + "minlon": -73.9098425, + "maxlat": 40.8255310, + "maxlon": -73.9059370 + }, + "nodes": [ + 12197782486, + 7042929681, + 42735026, + 8602649382, + 42735031, + 5482340575, + 5482340581, + 42735037, + 42735042, + 9917683096, + 42735050, + 9917683095, + 7397554087, + 5482222733, + 42735053, + 5482222799, + 42735056 + ], + "geometry": [ + { "lat": 40.8161004, "lon": -73.9098425 }, + { "lat": 40.8167668, "lon": -73.9095686 }, + { "lat": 40.8187590, "lon": -73.9087500 }, + { "lat": 40.8195540, "lon": -73.9084188 }, + { "lat": 40.8201130, "lon": -73.9081860 }, + { "lat": 40.8207526, "lon": -73.9079267 }, + { "lat": 40.8209730, "lon": -73.9078306 }, + { "lat": 40.8211680, "lon": -73.9077500 }, + { "lat": 40.8219557, "lon": -73.9074225 }, + { "lat": 40.8234764, "lon": -73.9067996 }, + { "lat": 40.8235846, "lon": -73.9067539 }, + { "lat": 40.8236935, "lon": -73.9067085 }, + { "lat": 40.8241514, "lon": -73.9065142 }, + { "lat": 40.8242757, "lon": -73.9064635 }, + { "lat": 40.8248210, "lon": -73.9062410 }, + { "lat": 40.8252522, "lon": -73.9060564 }, + { "lat": 40.8255310, "lon": -73.9059370 } + ], + "tags": { + "highway": "residential", + "name": "Cauldwell Avenue", + "name:etymology:wikidata": "Q8006633", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cauldwell", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5696611, + "bounds": { + "minlat": 40.8136295, + "minlon": -73.9109553, + "maxlat": 40.8157928, + "maxlon": -73.9101859 + }, + "nodes": [ + 12197782485, + 5482340563, + 5482340564, + 5482340559, + 9917835178, + 42735078 + ], + "geometry": [ + { "lat": 40.8157928, "lon": -73.9101859 }, + { "lat": 40.8157060, "lon": -73.9102163 }, + { "lat": 40.8154192, "lon": -73.9103157 }, + { "lat": 40.8138658, "lon": -73.9108704 }, + { "lat": 40.8137310, "lon": -73.9109188 }, + { "lat": 40.8136295, "lon": -73.9109553 } + ], + "tags": { + "highway": "residential", + "name": "Cauldwell Avenue", + "name:etymology:wikidata": "Q8006633", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cauldwell", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5696643, + "bounds": { + "minlat": 40.8789790, + "minlon": -73.9090280, + "maxlat": 40.8856100, + "maxlon": -73.9017940 + }, + "nodes": [ + 42735471, + 12009981859, + 8154725538, + 7048096539, + 13068326711, + 42735474, + 13068326702, + 1544847039, + 8154725553, + 1581431077, + 42735478, + 8154725545, + 1581431074, + 42735486, + 7043169397, + 42720149, + 1581399169, + 13146730922, + 42735490 + ], + "geometry": [ + { "lat": 40.8789790, "lon": -73.9090280 }, + { "lat": 40.8790573, "lon": -73.9089476 }, + { "lat": 40.8791145, "lon": -73.9088952 }, + { "lat": 40.8793174, "lon": -73.9086963 }, + { "lat": 40.8803210, "lon": -73.9077125 }, + { "lat": 40.8803970, "lon": -73.9076380 }, + { "lat": 40.8804613, "lon": -73.9075775 }, + { "lat": 40.8809873, "lon": -73.9070822 }, + { "lat": 40.8810752, "lon": -73.9069954 }, + { "lat": 40.8814201, "lon": -73.9066550 }, + { "lat": 40.8815516, "lon": -73.9064991 }, + { "lat": 40.8819620, "lon": -73.9060208 }, + { "lat": 40.8826435, "lon": -73.9052267 }, + { "lat": 40.8828780, "lon": -73.9049550 }, + { "lat": 40.8834814, "lon": -73.9042570 }, + { "lat": 40.8843010, "lon": -73.9033090 }, + { "lat": 40.8853755, "lon": -73.9020652 }, + { "lat": 40.8855531, "lon": -73.9018595 }, + { "lat": 40.8856100, "lon": -73.9017940 } + ], + "tags": { + "highway": "residential", + "name": "Corlear Avenue", + "name:etymology:wikidata": "Q4773632", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Corlear", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5696654, + "bounds": { + "minlat": 40.8114824, + "minlon": -73.9269474, + "maxlat": 40.8117373, + "maxlon": -73.9267335 + }, + "nodes": [ + 7554858679, + 11217150139, + 8842235697 + ], + "geometry": [ + { "lat": 40.8117373, "lon": -73.9267335 }, + { "lat": 40.8116885, "lon": -73.9267735 }, + { "lat": 40.8114824, "lon": -73.9269474 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Morris Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5696662, + "bounds": { + "minlat": 40.8431102, + "minlon": -73.9104331, + "maxlat": 40.8448958, + "maxlon": -73.9102744 + }, + "nodes": [ + 2408354083, + 12737767484, + 6223504768, + 13068038767, + 42735931, + 13068038754, + 5481864328, + 13040487439, + 42735934 + ], + "geometry": [ + { "lat": 40.8431102, "lon": -73.9104331 }, + { "lat": 40.8431751, "lon": -73.9104271 }, + { "lat": 40.8437231, "lon": -73.9103763 }, + { "lat": 40.8437635, "lon": -73.9103727 }, + { "lat": 40.8438240, "lon": -73.9103670 }, + { "lat": 40.8438887, "lon": -73.9103614 }, + { "lat": 40.8443827, "lon": -73.9103184 }, + { "lat": 40.8448079, "lon": -73.9102819 }, + { "lat": 40.8448958, "lon": -73.9102744 } + ], + "tags": { + "highway": "residential", + "name": "Selwyn Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Selwyn", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 5696666, + "bounds": { + "minlat": 40.8300343, + "minlon": -73.9293736, + "maxlat": 40.8300474, + "maxlon": -73.9292669 + }, + "nodes": [ + 9910738449, + 5335109924 + ], + "geometry": [ + { "lat": 40.8300343, "lon": -73.9293736 }, + { "lat": 40.8300474, "lon": -73.9292669 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 5696753, + "bounds": { + "minlat": 40.8460760, + "minlon": -73.9197100, + "maxlat": 40.8464621, + "maxlon": -73.9168628 + }, + "nodes": [ + 42737547, + 12527797825, + 2327435589, + 42737549, + 42734971, + 12046949278, + 12046949277, + 12046949276, + 12046949275, + 12046949274, + 12046949273, + 42737552 + ], + "geometry": [ + { "lat": 40.8464621, "lon": -73.9168628 }, + { "lat": 40.8464330, "lon": -73.9170252 }, + { "lat": 40.8463415, "lon": -73.9175351 }, + { "lat": 40.8462517, "lon": -73.9181767 }, + { "lat": 40.8461066, "lon": -73.9191746 }, + { "lat": 40.8460982, "lon": -73.9192461 }, + { "lat": 40.8460909, "lon": -73.9193162 }, + { "lat": 40.8460828, "lon": -73.9193960 }, + { "lat": 40.8460785, "lon": -73.9194687 }, + { "lat": 40.8460760, "lon": -73.9195428 }, + { "lat": 40.8460771, "lon": -73.9196167 }, + { "lat": 40.8460822, "lon": -73.9197100 } + ], + "tags": { + "highway": "residential", + "name": "Featherbed Lane", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Featherbed", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 5696755, + "bounds": { + "minlat": 40.8319501, + "minlon": -73.9309053, + "maxlat": 40.8358950, + "maxlon": -73.9286840 + }, + "nodes": [ + 42737578, + 13809338852, + 8285603931, + 42737576, + 42737572, + 13809338798, + 13703121745, + 13703121744, + 13247390483 + ], + "geometry": [ + { "lat": 40.8358950, "lon": -73.9286840 }, + { "lat": 40.8358325, "lon": -73.9287195 }, + { "lat": 40.8347765, "lon": -73.9293195 }, + { "lat": 40.8346700, "lon": -73.9293800 }, + { "lat": 40.8331870, "lon": -73.9302140 }, + { "lat": 40.8329586, "lon": -73.9303417 }, + { "lat": 40.8322827, "lon": -73.9307194 }, + { "lat": 40.8322576, "lon": -73.9307334 }, + { "lat": 40.8319501, "lon": -73.9309053 } + ], + "tags": { + "highway": "residential", + "name": "Summit Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Summit", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5696758, + "bounds": { + "minlat": 40.8022011, + "minlon": -73.9118468, + "maxlat": 40.8035651, + "maxlon": -73.9090958 + }, + "nodes": [ + 42737587, + 9156976082, + 8285359929, + 8064351049, + 566076749, + 9910669587, + 9910669588, + 988638753, + 5859955124, + 9910669570, + 42737596 + ], + "geometry": [ + { "lat": 40.8035651, "lon": -73.9118468 }, + { "lat": 40.8035306, "lon": -73.9117659 }, + { "lat": 40.8035138, "lon": -73.9117276 }, + { "lat": 40.8031961, "lon": -73.9109683 }, + { "lat": 40.8030156, "lon": -73.9105325 }, + { "lat": 40.8029726, "lon": -73.9104306 }, + { "lat": 40.8029278, "lon": -73.9103350 }, + { "lat": 40.8028788, "lon": -73.9102461 }, + { "lat": 40.8022686, "lon": -73.9092116 }, + { "lat": 40.8022478, "lon": -73.9091760 }, + { "lat": 40.8022011, "lon": -73.9090958 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 137th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "137th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5696766, + "bounds": { + "minlat": 40.8104864, + "minlon": -73.9282660, + "maxlat": 40.8106725, + "maxlon": -73.9280105 + }, + "nodes": [ + 42737695, + 11882279780, + 9582307237 + ], + "geometry": [ + { "lat": 40.8104864, "lon": -73.9280105 }, + { "lat": 40.8105724, "lon": -73.9281286 }, + { "lat": 40.8106725, "lon": -73.9282660 } + ], + "tags": { + "highway": "residential", + "name": "East 137th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "137th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5696770, + "bounds": { + "minlat": 40.8060814, + "minlon": -73.9233500, + "maxlat": 40.8084341, + "maxlon": -73.9178662 + }, + "nodes": [ + 13039125293, + 42737714, + 9908650962, + 7192687948, + 8285355508, + 9908650963, + 42737709, + 9908650955, + 9908650956, + 42737707, + 5482371843, + 5482371832, + 9908621358, + 42737705 + ], + "geometry": [ + { "lat": 40.8060814, "lon": -73.9178662 }, + { "lat": 40.8061235, "lon": -73.9179595 }, + { "lat": 40.8061756, "lon": -73.9180713 }, + { "lat": 40.8064427, "lon": -73.9186762 }, + { "lat": 40.8065039, "lon": -73.9188097 }, + { "lat": 40.8068436, "lon": -73.9196239 }, + { "lat": 40.8068867, "lon": -73.9197215 }, + { "lat": 40.8069324, "lon": -73.9198205 }, + { "lat": 40.8072073, "lon": -73.9204721 }, + { "lat": 40.8072376, "lon": -73.9205439 }, + { "lat": 40.8075274, "lon": -73.9212142 }, + { "lat": 40.8079123, "lon": -73.9221204 }, + { "lat": 40.8083920, "lon": -73.9232528 }, + { "lat": 40.8084341, "lon": -73.9233500 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 137th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "137th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5696772, + "bounds": { + "minlat": 40.8089533, + "minlon": -73.9256376, + "maxlat": 40.8093837, + "maxlon": -73.9246991 + }, + "nodes": [ + 42732863, + 9908621505, + 8285355500, + 11882279764, + 42737735 + ], + "geometry": [ + { "lat": 40.8093837, "lon": -73.9256376 }, + { "lat": 40.8093286, "lon": -73.9255053 }, + { "lat": 40.8093066, "lon": -73.9254520 }, + { "lat": 40.8090352, "lon": -73.9248018 }, + { "lat": 40.8089533, "lon": -73.9246991 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 137th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "137th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5696801, + "bounds": { + "minlat": 40.8705420, + "minlon": -73.9068512, + "maxlat": 40.8708000, + "maxlon": -73.9058920 + }, + "nodes": [ + 42719566, + 8464077424, + 8464067996, + 42737965 + ], + "geometry": [ + { "lat": 40.8705420, "lon": -73.9058920 }, + { "lat": 40.8705717, "lon": -73.9060023 }, + { "lat": 40.8707503, "lon": -73.9066664 }, + { "lat": 40.8708000, "lon": -73.9068512 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "West 193rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "193rd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5696885, + "bounds": { + "minlat": 40.8358329, + "minlon": -73.9074050, + "maxlat": 40.8362675, + "maxlon": -73.9061136 + }, + "nodes": [ + 42739165, + 12038056060, + 5549749416, + 1657650819 + ], + "geometry": [ + { "lat": 40.8362675, "lon": -73.9074050 }, + { "lat": 40.8362114, "lon": -73.9072537 }, + { "lat": 40.8360570, "lon": -73.9068371 }, + { "lat": 40.8358329, "lon": -73.9061136 } + ], + "tags": { + "highway": "residential", + "name": "East 170th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10459", + "tiger:zip_right": "10459" + } +}, +{ + "type": "way", + "id": 5696890, + "bounds": { + "minlat": 40.8393337, + "minlon": -73.9176830, + "maxlat": 40.8402250, + "maxlon": -73.9153377 + }, + "nodes": [ + 42736365, + 13036990061, + 5762102239, + 42739223, + 5762102240, + 5762102237, + 42733773, + 13003545113, + 2408359283 + ], + "geometry": [ + { "lat": 40.8402250, "lon": -73.9176830 }, + { "lat": 40.8401781, "lon": -73.9175603 }, + { "lat": 40.8399138, "lon": -73.9168689 }, + { "lat": 40.8398810, "lon": -73.9167830 }, + { "lat": 40.8398519, "lon": -73.9167061 }, + { "lat": 40.8395986, "lon": -73.9160348 }, + { "lat": 40.8395674, "lon": -73.9159531 }, + { "lat": 40.8395406, "lon": -73.9158809 }, + { "lat": 40.8393337, "lon": -73.9153377 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5696912, + "bounds": { + "minlat": 40.8059892, + "minlon": -73.9214566, + "maxlat": 40.8079121, + "maxlon": -73.9200498 + }, + "nodes": [ + 42739603, + 9908650943, + 9632503748, + 8285355487, + 42719457, + 5482371841, + 9632503758, + 9908650957, + 42737707, + 9908650958, + 9632503743, + 9908650959, + 42739608 + ], + "geometry": [ + { "lat": 40.8059892, "lon": -73.9214566 }, + { "lat": 40.8060416, "lon": -73.9214160 }, + { "lat": 40.8060758, "lon": -73.9213904 }, + { "lat": 40.8062727, "lon": -73.9212479 }, + { "lat": 40.8066179, "lon": -73.9209980 }, + { "lat": 40.8069549, "lon": -73.9207499 }, + { "lat": 40.8071469, "lon": -73.9206089 }, + { "lat": 40.8071860, "lon": -73.9205826 }, + { "lat": 40.8072376, "lon": -73.9205439 }, + { "lat": 40.8072966, "lon": -73.9205003 }, + { "lat": 40.8073262, "lon": -73.9204785 }, + { "lat": 40.8078297, "lon": -73.9201101 }, + { "lat": 40.8079121, "lon": -73.9200498 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Brown Place", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brown", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5696914, + "bounds": { + "minlat": 40.8040205, + "minlon": -73.9228973, + "maxlat": 40.8046958, + "maxlon": -73.9224013 + }, + "nodes": [ + 42739612, + 5370086770, + 7135100757, + 9908650924, + 42739615 + ], + "geometry": [ + { "lat": 40.8040205, "lon": -73.9228973 }, + { "lat": 40.8041209, "lon": -73.9228241 }, + { "lat": 40.8043924, "lon": -73.9226260 }, + { "lat": 40.8045919, "lon": -73.9224778 }, + { "lat": 40.8046958, "lon": -73.9224013 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Brown Place", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brown", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5696915, + "bounds": { + "minlat": 40.8416864, + "minlon": -73.9140321, + "maxlat": 40.8422545, + "maxlon": -73.9126619 + }, + "nodes": [ + 42733786, + 13017732189, + 8613852485, + 5481864187, + 6224280778, + 10034673477, + 2408355566 + ], + "geometry": [ + { "lat": 40.8422545, "lon": -73.9140321 }, + { "lat": 40.8422235, "lon": -73.9139568 }, + { "lat": 40.8422078, "lon": -73.9139185 }, + { "lat": 40.8420330, "lon": -73.9134940 }, + { "lat": 40.8417413, "lon": -73.9127852 }, + { "lat": 40.8417172, "lon": -73.9127311 }, + { "lat": 40.8416864, "lon": -73.9126619 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Rockwood Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Rockwood", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5696930, + "bounds": { + "minlat": 40.8251197, + "minlon": -73.9131794, + "maxlat": 40.8254648, + "maxlon": -73.9121150 + }, + "nodes": [ + 42739729, + 12038455952, + 471223464 + ], + "geometry": [ + { "lat": 40.8254648, "lon": -73.9131794 }, + { "lat": 40.8254284, "lon": -73.9130672 }, + { "lat": 40.8251197, "lon": -73.9121150 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 163rd Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5696961, + "bounds": { + "minlat": 40.8514486, + "minlon": -73.9125849, + "maxlat": 40.8518353, + "maxlon": -73.9118506 + }, + "nodes": [ + 42740175, + 12739101056, + 6700768009, + 42720035 + ], + "geometry": [ + { "lat": 40.8514486, "lon": -73.9118506 }, + { "lat": 40.8514980, "lon": -73.9119444 }, + { "lat": 40.8517865, "lon": -73.9124922 }, + { "lat": 40.8518353, "lon": -73.9125849 } + ], + "tags": { + "access": "yes", + "highway": "service", + "name": "Kingsland Place", + "name:etymology:wikidata": "Q4741804; Q64757738", + "service": "alley", + "surface": "asphalt", + "tiger:name_base": "Kingsland", + "tiger:name_type": "Plz" + } +}, +{ + "type": "way", + "id": 5696962, + "bounds": { + "minlat": 40.8454720, + "minlon": -73.9153620, + "maxlat": 40.8458955, + "maxlon": -73.9150906 + }, + "nodes": [ + 42740183, + 12044585959, + 12044585958, + 12044585957, + 12044585956, + 12044719692, + 42737536 + ], + "geometry": [ + { "lat": 40.8454720, "lon": -73.9153620 }, + { "lat": 40.8455011, "lon": -73.9153531 }, + { "lat": 40.8455273, "lon": -73.9153416 }, + { "lat": 40.8455544, "lon": -73.9153275 }, + { "lat": 40.8455816, "lon": -73.9153107 }, + { "lat": 40.8458211, "lon": -73.9151429 }, + { "lat": 40.8458955, "lon": -73.9150906 } + ], + "tags": { + "highway": "residential", + "name": "Inwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Inwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5696963, + "bounds": { + "minlat": 40.8377750, + "minlon": -73.9213810, + "maxlat": 40.8406480, + "maxlon": -73.9190110 + }, + "nodes": [ + 42740190, + 42740192, + 42740197, + 13037005869, + 42740200 + ], + "geometry": [ + { "lat": 40.8377750, "lon": -73.9213810 }, + { "lat": 40.8379990, "lon": -73.9210290 }, + { "lat": 40.8387140, "lon": -73.9199740 }, + { "lat": 40.8405706, "lon": -73.9190496 }, + { "lat": 40.8406480, "lon": -73.9190110 } + ], + "tags": { + "highway": "residential", + "name": "Inwood Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Inwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5696964, + "bounds": { + "minlat": 40.8514010, + "minlon": -73.9084301, + "maxlat": 40.8526619, + "maxlon": -73.9060500 + }, + "nodes": [ + 42736315, + 13031144528, + 13031136603, + 42733824, + 13031123698, + 10116543415, + 13031091949, + 42735774, + 13031091952, + 12739115619, + 12739115618, + 42740228 + ], + "geometry": [ + { "lat": 40.8526619, "lon": -73.9084301 }, + { "lat": 40.8525934, "lon": -73.9083017 }, + { "lat": 40.8522591, "lon": -73.9076750 }, + { "lat": 40.8522170, "lon": -73.9075960 }, + { "lat": 40.8521782, "lon": -73.9075226 }, + { "lat": 40.8518723, "lon": -73.9069429 }, + { "lat": 40.8518492, "lon": -73.9068992 }, + { "lat": 40.8518080, "lon": -73.9068210 }, + { "lat": 40.8517761, "lon": -73.9067605 }, + { "lat": 40.8514686, "lon": -73.9061780 }, + { "lat": 40.8514430, "lon": -73.9061296 }, + { "lat": 40.8514010, "lon": -73.9060500 } + ], + "tags": { + "highway": "residential", + "name": "East 179th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "179th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 5696972, + "bounds": { + "minlat": 40.8412999, + "minlon": -73.9280927, + "maxlat": 40.8413222, + "maxlon": -73.9280043 + }, + "nodes": [ + 42740411, + 595757798 + ], + "geometry": [ + { "lat": 40.8412999, "lon": -73.9280043 }, + { "lat": 40.8413222, "lon": -73.9280927 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "destination:forward": "RFK Bridge:Queens", + "destination:ref:forward": "I 87 South", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Depot Place", + "name:etymology:wikidata": "Q5757842", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Depot", + "tiger:name_type": "Pl" + } +}, +{ + "type": "way", + "id": 5696980, + "bounds": { + "minlat": 40.8465755, + "minlon": -73.9123659, + "maxlat": 40.8476913, + "maxlon": -73.9096749 + }, + "nodes": [ + 42736336, + 7589205546, + 7589205542, + 42740516, + 13038921076, + 42733802, + 13038921079, + 3639998162, + 12042617235, + 3639998163, + 12042617236, + 2408348768 + ], + "geometry": [ + { "lat": 40.8476913, "lon": -73.9123659 }, + { "lat": 40.8475880, "lon": -73.9121188 }, + { "lat": 40.8475553, "lon": -73.9120366 }, + { "lat": 40.8473237, "lon": -73.9114808 }, + { "lat": 40.8470144, "lon": -73.9107305 }, + { "lat": 40.8469837, "lon": -73.9106561 }, + { "lat": 40.8469528, "lon": -73.9105797 }, + { "lat": 40.8466206, "lon": -73.9097585 }, + { "lat": 40.8466091, "lon": -73.9097334 }, + { "lat": 40.8465980, "lon": -73.9097113 }, + { "lat": 40.8465878, "lon": -73.9096927 }, + { "lat": 40.8465755, "lon": -73.9096749 } + ], + "tags": { + "highway": "residential", + "name": "East 175th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "175th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5697005, + "bounds": { + "minlat": 40.8558929, + "minlon": -73.9097828, + "maxlat": 40.8614120, + "maxlon": -73.9049630 + }, + "nodes": [ + 42731703, + 2808743958, + 10034673434, + 2808744019, + 2907864277, + 11748255133, + 13247503977, + 42740863, + 13247503986, + 42740866, + 8174133686, + 9181214858, + 42740870, + 9181214860, + 42740873, + 2978124493, + 42740876, + 13564503605, + 42740878, + 8174133704, + 42733450, + 8174133702, + 42740886 + ], + "geometry": [ + { "lat": 40.8558929, "lon": -73.9097828 }, + { "lat": 40.8561453, "lon": -73.9096396 }, + { "lat": 40.8563038, "lon": -73.9095366 }, + { "lat": 40.8564589, "lon": -73.9094357 }, + { "lat": 40.8564998, "lon": -73.9093996 }, + { "lat": 40.8568922, "lon": -73.9090533 }, + { "lat": 40.8569393, "lon": -73.9090113 }, + { "lat": 40.8569900, "lon": -73.9089670 }, + { "lat": 40.8570518, "lon": -73.9089155 }, + { "lat": 40.8576040, "lon": -73.9084400 }, + { "lat": 40.8579048, "lon": -73.9081651 }, + { "lat": 40.8581594, "lon": -73.9079325 }, + { "lat": 40.8581950, "lon": -73.9079000 }, + { "lat": 40.8582443, "lon": -73.9078552 }, + { "lat": 40.8587900, "lon": -73.9073590 }, + { "lat": 40.8588685, "lon": -73.9072796 }, + { "lat": 40.8593602, "lon": -73.9067823 }, + { "lat": 40.8594260, "lon": -73.9067244 }, + { "lat": 40.8599630, "lon": -73.9062520 }, + { "lat": 40.8600206, "lon": -73.9062002 }, + { "lat": 40.8605670, "lon": -73.9057080 }, + { "lat": 40.8613737, "lon": -73.9049968 }, + { "lat": 40.8614120, "lon": -73.9049630 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Aqueduct Avenue", + "name_1": "Aqueduct Avenue East", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Aqueduct", + "tiger:name_base_1": "Aqueduct", + "tiger:name_direction_suffix_1": "E", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697041, + "bounds": { + "minlat": 40.8130396, + "minlon": -73.9298854, + "maxlat": 40.8147095, + "maxlon": -73.9288438 + }, + "nodes": [ + 42741467, + 9903106235, + 5482250734, + 2409003137, + 5482250738, + 5482250740, + 2409003126, + 12162704266, + 9163775402, + 12162704267, + 529281258, + 2408984071, + 2408974705 + ], + "geometry": [ + { "lat": 40.8130396, "lon": -73.9298854 }, + { "lat": 40.8131972, "lon": -73.9297881 }, + { "lat": 40.8132282, "lon": -73.9297664 }, + { "lat": 40.8138360, "lon": -73.9293487 }, + { "lat": 40.8140935, "lon": -73.9291714 }, + { "lat": 40.8141534, "lon": -73.9291295 }, + { "lat": 40.8142112, "lon": -73.9290902 }, + { "lat": 40.8142595, "lon": -73.9290603 }, + { "lat": 40.8143082, "lon": -73.9290309 }, + { "lat": 40.8143527, "lon": -73.9290053 }, + { "lat": 40.8143989, "lon": -73.9289817 }, + { "lat": 40.8145219, "lon": -73.9289258 }, + { "lat": 40.8147095, "lon": -73.9288438 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 5697050, + "bounds": { + "minlat": 40.8424660, + "minlon": -73.9247909, + "maxlat": 40.8427575, + "maxlon": -73.9241360 + }, + "nodes": [ + 42734305, + 7476260843, + 42741647 + ], + "geometry": [ + { "lat": 40.8424660, "lon": -73.9241360 }, + { "lat": 40.8425252, "lon": -73.9242677 }, + { "lat": 40.8427575, "lon": -73.9247909 } + ], + "tags": { + "highway": "residential", + "name": "West 171st Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "171st", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070829", + "tiger:tlid": "80299394", + "tiger:upload_uuid": "bulk_upload.pl-31e02009-f620-482f-9ce6-28e1cea72242", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5697101, + "bounds": { + "minlat": 40.8258542, + "minlon": -73.9118061, + "maxlat": 40.8264476, + "maxlon": -73.9099066 + }, + "nodes": [ + 2827547780, + 12038478784, + 8184243057, + 8184221190, + 42730080 + ], + "geometry": [ + { "lat": 40.8264476, "lon": -73.9118061 }, + { "lat": 40.8264067, "lon": -73.9116765 }, + { "lat": 40.8258997, "lon": -73.9100675 }, + { "lat": 40.8258846, "lon": -73.9100187 }, + { "lat": 40.8258542, "lon": -73.9099066 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "East 164th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "164th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5697104, + "bounds": { + "minlat": 40.8275560, + "minlon": -73.9186260, + "maxlat": 40.8291080, + "maxlon": -73.9147600 + }, + "nodes": [ + 42731628, + 12038479049, + 13036779718, + 42742395, + 13036779716, + 12038479080, + 42735834, + 12038440143, + 5482222796, + 42742402, + 13701190909, + 42742409, + 42742410, + 42742412 + ], + "geometry": [ + { "lat": 40.8291080, "lon": -73.9186260 }, + { "lat": 40.8290759, "lon": -73.9185498 }, + { "lat": 40.8287929, "lon": -73.9178769 }, + { "lat": 40.8287590, "lon": -73.9177970 }, + { "lat": 40.8287264, "lon": -73.9177232 }, + { "lat": 40.8284296, "lon": -73.9170039 }, + { "lat": 40.8283890, "lon": -73.9169060 }, + { "lat": 40.8283508, "lon": -73.9168090 }, + { "lat": 40.8281641, "lon": -73.9163346 }, + { "lat": 40.8280670, "lon": -73.9160880 }, + { "lat": 40.8279490, "lon": -73.9157864 }, + { "lat": 40.8278980, "lon": -73.9156560 }, + { "lat": 40.8277630, "lon": -73.9152880 }, + { "lat": 40.8275560, "lon": -73.9147600 } + ], + "tags": { + "highway": "residential", + "name": "East 164th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "164th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5697106, + "bounds": { + "minlat": 40.8306810, + "minlon": -73.9264312, + "maxlat": 40.8314264, + "maxlon": -73.9242610 + }, + "nodes": [ + 42735984, + 10133348717, + 2822090485, + 10133348719, + 42742426 + ], + "geometry": [ + { "lat": 40.8314264, "lon": -73.9264312 }, + { "lat": 40.8313826, "lon": -73.9263049 }, + { "lat": 40.8309985, "lon": -73.9251887 }, + { "lat": 40.8307160, "lon": -73.9243632 }, + { "lat": 40.8306810, "lon": -73.9242610 } + ], + "tags": { + "highway": "residential", + "name": "East 164th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "164th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10452", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5697110, + "bounds": { + "minlat": 40.8328290, + "minlon": -73.9130010, + "maxlat": 40.8334090, + "maxlon": -73.9112850 + }, + "nodes": [ + 42742441, + 13031229910, + 7366626468, + 13746493070, + 42742443, + 5762095682, + 5481921466, + 8187805300, + 5762095685, + 42742448 + ], + "geometry": [ + { "lat": 40.8334090, "lon": -73.9130010 }, + { "lat": 40.8333884, "lon": -73.9129405 }, + { "lat": 40.8332575, "lon": -73.9125570 }, + { "lat": 40.8331469, "lon": -73.9122326 }, + { "lat": 40.8331170, "lon": -73.9121450 }, + { "lat": 40.8330912, "lon": -73.9120680 }, + { "lat": 40.8329708, "lon": -73.9117085 }, + { "lat": 40.8328723, "lon": -73.9114141 }, + { "lat": 40.8328576, "lon": -73.9113703 }, + { "lat": 40.8328290, "lon": -73.9112850 } + ], + "tags": { + "highway": "residential", + "name": "East 168th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5697111, + "bounds": { + "minlat": 40.8358415, + "minlon": -73.9184120, + "maxlat": 40.8364400, + "maxlon": -73.9166607 + }, + "nodes": [ + 42733751, + 12998539955, + 42719430, + 6224280782, + 12739283300, + 2408379357 + ], + "geometry": [ + { "lat": 40.8364400, "lon": -73.9184120 }, + { "lat": 40.8364188, "lon": -73.9183498 }, + { "lat": 40.8361060, "lon": -73.9174330 }, + { "lat": 40.8358939, "lon": -73.9168102 }, + { "lat": 40.8358754, "lon": -73.9167573 }, + { "lat": 40.8358415, "lon": -73.9166607 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 168th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5697133, + "bounds": { + "minlat": 40.8574544, + "minlon": -73.9132706, + "maxlat": 40.8596267, + "maxlon": -73.9096496 + }, + "nodes": [ + 42769898, + 2323868482, + 2978124523, + 2323868479, + 2323868483, + 10135688155, + 42742756, + 8174133690, + 2794883580, + 42742762, + 2906620101, + 8174133648, + 10135688194, + 1891639843, + 10135688182, + 2906620267, + 10135688394, + 10135688392, + 8174133693, + 9918291106, + 42742765 + ], + "geometry": [ + { "lat": 40.8574544, "lon": -73.9096496 }, + { "lat": 40.8575975, "lon": -73.9097783 }, + { "lat": 40.8576597, "lon": -73.9098345 }, + { "lat": 40.8577584, "lon": -73.9099009 }, + { "lat": 40.8580571, "lon": -73.9100543 }, + { "lat": 40.8582307, "lon": -73.9101694 }, + { "lat": 40.8582890, "lon": -73.9102080 }, + { "lat": 40.8585780, "lon": -73.9105555 }, + { "lat": 40.8586582, "lon": -73.9106520 }, + { "lat": 40.8587794, "lon": -73.9108934 }, + { "lat": 40.8589313, "lon": -73.9112775 }, + { "lat": 40.8589704, "lon": -73.9113942 }, + { "lat": 40.8590378, "lon": -73.9115975 }, + { "lat": 40.8590480, "lon": -73.9116253 }, + { "lat": 40.8590864, "lon": -73.9117365 }, + { "lat": 40.8591088, "lon": -73.9118005 }, + { "lat": 40.8593002, "lon": -73.9123474 }, + { "lat": 40.8593191, "lon": -73.9124015 }, + { "lat": 40.8593899, "lon": -73.9126039 }, + { "lat": 40.8595821, "lon": -73.9131584 }, + { "lat": 40.8596267, "lon": -73.9132706 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "name": "Hall of Fame Terrace", + "name:etymology:wikidata": "Q1508557", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Hall of Fame", + "tiger:name_type": "Ter" + } +}, +{ + "type": "way", + "id": 5697144, + "bounds": { + "minlat": 40.8162964, + "minlon": -73.9272779, + "maxlat": 40.8183301, + "maxlon": -73.9263684 + }, + "nodes": [ + 1912029671, + 13039002969, + 7560793121, + 7560793127, + 13329984736, + 7560793122, + 42743020 + ], + "geometry": [ + { "lat": 40.8162964, "lon": -73.9272779 }, + { "lat": 40.8163571, "lon": -73.9272507 }, + { "lat": 40.8163826, "lon": -73.9272392 }, + { "lat": 40.8167844, "lon": -73.9270566 }, + { "lat": 40.8182244, "lon": -73.9264160 }, + { "lat": 40.8182397, "lon": -73.9264092 }, + { "lat": 40.8183301, "lon": -73.9263684 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Anthony J. Griffin Place", + "name:etymology:wikidata": "Q4772830", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Anthony J Griffin", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5697147, + "bounds": { + "minlat": 40.8301026, + "minlon": -73.9319440, + "maxlat": 40.8310428, + "maxlon": -73.9317876 + }, + "nodes": [ + 8427906326, + 13533533132, + 595786291, + 9166314637, + 595786292, + 13533533133, + 9166314638, + 3991397144, + 4281459926, + 595786293 + ], + "geometry": [ + { "lat": 40.8301026, "lon": -73.9317876 }, + { "lat": 40.8302418, "lon": -73.9318305 }, + { "lat": 40.8303863, "lon": -73.9318708 }, + { "lat": 40.8304966, "lon": -73.9318979 }, + { "lat": 40.8306002, "lon": -73.9319163 }, + { "lat": 40.8306937, "lon": -73.9319294 }, + { "lat": 40.8307946, "lon": -73.9319398 }, + { "lat": 40.8308961, "lon": -73.9319440 }, + { "lat": 40.8310058, "lon": -73.9319436 }, + { "lat": 40.8310428, "lon": -73.9319407 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 5697155, + "bounds": { + "minlat": 40.8537388, + "minlon": -73.9161900, + "maxlat": 40.8545820, + "maxlon": -73.9122914 + }, + "nodes": [ + 42744012, + 9027916859, + 9918291074, + 9918291073, + 9918291072, + 42744007, + 9918291071, + 9918291070, + 9918291069, + 9918291068, + 9918291067, + 9918291065, + 42743997, + 9918291064, + 9918291063, + 9918291062, + 9918291061, + 9918291060, + 9918291059, + 42743993, + 2808821782, + 9918291056, + 9918291055, + 9918291054, + 9918291053, + 2808821780, + 42743990 + ], + "geometry": [ + { "lat": 40.8545820, "lon": -73.9161900 }, + { "lat": 40.8544734, "lon": -73.9159997 }, + { "lat": 40.8543943, "lon": -73.9158607 }, + { "lat": 40.8543270, "lon": -73.9157318 }, + { "lat": 40.8542686, "lon": -73.9156057 }, + { "lat": 40.8542288, "lon": -73.9155249 }, + { "lat": 40.8541974, "lon": -73.9154496 }, + { "lat": 40.8541473, "lon": -73.9153231 }, + { "lat": 40.8540977, "lon": -73.9151947 }, + { "lat": 40.8540515, "lon": -73.9150534 }, + { "lat": 40.8540067, "lon": -73.9149041 }, + { "lat": 40.8539588, "lon": -73.9147499 }, + { "lat": 40.8539441, "lon": -73.9146728 }, + { "lat": 40.8539306, "lon": -73.9145995 }, + { "lat": 40.8539110, "lon": -73.9145157 }, + { "lat": 40.8538867, "lon": -73.9143970 }, + { "lat": 40.8538657, "lon": -73.9142665 }, + { "lat": 40.8538451, "lon": -73.9141161 }, + { "lat": 40.8538242, "lon": -73.9139399 }, + { "lat": 40.8538168, "lon": -73.9138534 }, + { "lat": 40.8538095, "lon": -73.9137667 }, + { "lat": 40.8537920, "lon": -73.9135518 }, + { "lat": 40.8537818, "lon": -73.9133660 }, + { "lat": 40.8537748, "lon": -73.9132080 }, + { "lat": 40.8537703, "lon": -73.9130324 }, + { "lat": 40.8537644, "lon": -73.9124353 }, + { "lat": 40.8537388, "lon": -73.9122914 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West Burnside Avenue", + "name:etymology:wikidata": "Q355444", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick;Burnside", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 5697163, + "bounds": { + "minlat": 40.8657744, + "minlon": -73.9081262, + "maxlat": 40.8693550, + "maxlon": -73.9045977 + }, + "nodes": [ + 2328996405, + 1396352585, + 42743118, + 8064369950, + 1396352605, + 13055924715, + 1396352603, + 13055924716, + 42743125, + 13055924717, + 1396352596, + 13055924718, + 1396352599, + 13055924720, + 13055924719, + 42743132 + ], + "geometry": [ + { "lat": 40.8657744, "lon": -73.9081262 }, + { "lat": 40.8659265, "lon": -73.9080195 }, + { "lat": 40.8665037, "lon": -73.9077440 }, + { "lat": 40.8667333, "lon": -73.9076813 }, + { "lat": 40.8671250, "lon": -73.9075743 }, + { "lat": 40.8673186, "lon": -73.9074956 }, + { "lat": 40.8675064, "lon": -73.9074023 }, + { "lat": 40.8677162, "lon": -73.9072542 }, + { "lat": 40.8679190, "lon": -73.9070911 }, + { "lat": 40.8680904, "lon": -73.9069149 }, + { "lat": 40.8682378, "lon": -73.9067310 }, + { "lat": 40.8684707, "lon": -73.9063664 }, + { "lat": 40.8687086, "lon": -73.9059633 }, + { "lat": 40.8690488, "lon": -73.9052814 }, + { "lat": 40.8692070, "lon": -73.9049408 }, + { "lat": 40.8693550, "lon": -73.9045977 } + ], + "tags": { + "highway": "tertiary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 5697173, + "bounds": { + "minlat": 40.8567510, + "minlon": -73.9084400, + "maxlat": 40.8576040, + "maxlon": -73.9060520 + }, + "nodes": [ + 42740866, + 8174133711, + 13247486920, + 42743410, + 13247486934, + 10091975101, + 13247458470, + 42743405 + ], + "geometry": [ + { "lat": 40.8576040, "lon": -73.9084400 }, + { "lat": 40.8571090, "lon": -73.9070669 }, + { "lat": 40.8570840, "lon": -73.9069975 }, + { "lat": 40.8570510, "lon": -73.9069060 }, + { "lat": 40.8570239, "lon": -73.9068289 }, + { "lat": 40.8567969, "lon": -73.9061825 }, + { "lat": 40.8567875, "lon": -73.9061556 }, + { "lat": 40.8567510, "lon": -73.9060520 } + ], + "tags": { + "highway": "residential", + "name": "Clinton Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Clinton", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5697175, + "bounds": { + "minlat": 40.8087900, + "minlon": -73.9246830, + "maxlat": 40.8123840, + "maxlon": -73.9161840 + }, + "nodes": [ + 42743431, + 9908650983, + 9908650984, + 9908650982, + 42743428, + 9908650979, + 9908621381, + 42743425, + 9908621383, + 13703409948, + 8285359940, + 9908629918, + 42732879, + 9908629919, + 11217140033, + 42743421 + ], + "geometry": [ + { "lat": 40.8087900, "lon": -73.9161840 }, + { "lat": 40.8088374, "lon": -73.9162886 }, + { "lat": 40.8091022, "lon": -73.9169184 }, + { "lat": 40.8095332, "lon": -73.9179380 }, + { "lat": 40.8095796, "lon": -73.9180536 }, + { "lat": 40.8096186, "lon": -73.9181497 }, + { "lat": 40.8109825, "lon": -73.9213621 }, + { "lat": 40.8110296, "lon": -73.9214680 }, + { "lat": 40.8110967, "lon": -73.9216206 }, + { "lat": 40.8113777, "lon": -73.9222638 }, + { "lat": 40.8114862, "lon": -73.9225172 }, + { "lat": 40.8119390, "lon": -73.9235958 }, + { "lat": 40.8119777, "lon": -73.9237024 }, + { "lat": 40.8120373, "lon": -73.9238625 }, + { "lat": 40.8123411, "lon": -73.9245705 }, + { "lat": 40.8123840, "lon": -73.9246830 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 141st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "141st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454" + } +}, +{ + "type": "way", + "id": 5697176, + "bounds": { + "minlat": 40.8039387, + "minlon": -73.9075650, + "maxlat": 40.8051417, + "maxlon": -73.9054777 + }, + "nodes": [ + 42743495, + 9910705319, + 5859955137, + 9910705322, + 42743491, + 9910705321, + 5493687579, + 9323739414 + ], + "geometry": [ + { "lat": 40.8039387, "lon": -73.9054777 }, + { "lat": 40.8039830, "lon": -73.9055549 }, + { "lat": 40.8045487, "lon": -73.9065354 }, + { "lat": 40.8045771, "lon": -73.9065854 }, + { "lat": 40.8046195, "lon": -73.9066596 }, + { "lat": 40.8046636, "lon": -73.9067362 }, + { "lat": 40.8049563, "lon": -73.9072437 }, + { "lat": 40.8051417, "lon": -73.9075650 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 141st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "141st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5697178, + "bounds": { + "minlat": 40.8146846, + "minlon": -73.9274209, + "maxlat": 40.8150633, + "maxlon": -73.9265341 + }, + "nodes": [ + 42743504, + 3647445888, + 8575396964, + 9910711694, + 42743502 + ], + "geometry": [ + { "lat": 40.8146846, "lon": -73.9265341 }, + { "lat": 40.8147364, "lon": -73.9266160 }, + { "lat": 40.8150137, "lon": -73.9272987 }, + { "lat": 40.8150345, "lon": -73.9273548 }, + { "lat": 40.8150633, "lon": -73.9274209 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 141st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "141st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5697181, + "bounds": { + "minlat": 40.8054781, + "minlon": -73.9145563, + "maxlat": 40.8093510, + "maxlon": -73.9124822 + }, + "nodes": [ + 13018635113, + 42743519, + 13018635111, + 7271351527, + 13809174868, + 42743521, + 13809174865, + 7043090365, + 42743528, + 13809174855, + 42743443, + 13809174853, + 5175586404, + 42743537 + ], + "geometry": [ + { "lat": 40.8054781, "lon": -73.9145563 }, + { "lat": 40.8055610, "lon": -73.9144950 }, + { "lat": 40.8056541, "lon": -73.9144429 }, + { "lat": 40.8059889, "lon": -73.9142579 }, + { "lat": 40.8062125, "lon": -73.9141340 }, + { "lat": 40.8062740, "lon": -73.9141000 }, + { "lat": 40.8063372, "lon": -73.9140665 }, + { "lat": 40.8065936, "lon": -73.9139306 }, + { "lat": 40.8069420, "lon": -73.9137460 }, + { "lat": 40.8075393, "lon": -73.9134326 }, + { "lat": 40.8076090, "lon": -73.9133960 }, + { "lat": 40.8076851, "lon": -73.9133561 }, + { "lat": 40.8092834, "lon": -73.9125177 }, + { "lat": 40.8093510, "lon": -73.9124822 } + ], + "tags": { + "highway": "residential", + "name": "Cypress Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5697182, + "bounds": { + "minlat": 40.8016846, + "minlon": -73.9173243, + "maxlat": 40.8022639, + "maxlon": -73.9168990 + }, + "nodes": [ + 9156976064, + 9908642204, + 9908642203, + 42743550 + ], + "geometry": [ + { "lat": 40.8022639, "lon": -73.9168990 }, + { "lat": 40.8017894, "lon": -73.9172477 }, + { "lat": 40.8017449, "lon": -73.9172804 }, + { "lat": 40.8016846, "lon": -73.9173243 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Cypress Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454" + } +}, +{ + "type": "way", + "id": 5697202, + "bounds": { + "minlat": 40.8105309, + "minlon": -73.9304788, + "maxlat": 40.8120326, + "maxlon": -73.9285360 + }, + "nodes": [ + 42743861, + 11882279805, + 9632503734, + 5482247573, + 7554088547, + 9163775398, + 11882279819, + 42743865 + ], + "geometry": [ + { "lat": 40.8105309, "lon": -73.9304788 }, + { "lat": 40.8105731, "lon": -73.9304256 }, + { "lat": 40.8106089, "lon": -73.9303805 }, + { "lat": 40.8108289, "lon": -73.9301035 }, + { "lat": 40.8111092, "lon": -73.9297415 }, + { "lat": 40.8119275, "lon": -73.9286643 }, + { "lat": 40.8119509, "lon": -73.9286358 }, + { "lat": 40.8120326, "lon": -73.9285360 } + ], + "tags": { + "highway": "residential", + "name": "Canal Place", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Canal", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5697214, + "bounds": { + "minlat": 40.8538007, + "minlon": -73.9111960, + "maxlat": 40.8548220, + "maxlon": -73.9073691 + }, + "nodes": [ + 42736311, + 13533558436, + 9918211886, + 2052618450, + 9918211887, + 13533558434, + 13533558435, + 13533558431, + 42743968, + 13533558432, + 13533558433, + 13533558430, + 2052618449, + 13533558429, + 13533558427, + 13533558428, + 2052618451, + 13533558426, + 13533558425, + 13533558423, + 13533558424, + 42743978, + 13533558422, + 13533558421, + 5327567943, + 13533558420, + 13533558417, + 13533558419, + 13533558418, + 5327567944, + 2899134416, + 13533558416, + 13533558415, + 42720038, + 13533558414, + 2899134413, + 2899134411, + 42743984 + ], + "geometry": [ + { "lat": 40.8538239, "lon": -73.9073691 }, + { "lat": 40.8538375, "lon": -73.9074114 }, + { "lat": 40.8538456, "lon": -73.9074424 }, + { "lat": 40.8538513, "lon": -73.9074877 }, + { "lat": 40.8538531, "lon": -73.9075330 }, + { "lat": 40.8538518, "lon": -73.9075985 }, + { "lat": 40.8538489, "lon": -73.9076838 }, + { "lat": 40.8538163, "lon": -73.9084094 }, + { "lat": 40.8538092, "lon": -73.9085097 }, + { "lat": 40.8538036, "lon": -73.9086347 }, + { "lat": 40.8538007, "lon": -73.9087160 }, + { "lat": 40.8538027, "lon": -73.9087879 }, + { "lat": 40.8538076, "lon": -73.9088644 }, + { "lat": 40.8538151, "lon": -73.9089431 }, + { "lat": 40.8538262, "lon": -73.9090197 }, + { "lat": 40.8538405, "lon": -73.9090949 }, + { "lat": 40.8538597, "lon": -73.9091732 }, + { "lat": 40.8538791, "lon": -73.9092428 }, + { "lat": 40.8539027, "lon": -73.9093105 }, + { "lat": 40.8539232, "lon": -73.9093615 }, + { "lat": 40.8539412, "lon": -73.9094068 }, + { "lat": 40.8539593, "lon": -73.9094457 }, + { "lat": 40.8539906, "lon": -73.9095103 }, + { "lat": 40.8540181, "lon": -73.9095620 }, + { "lat": 40.8540441, "lon": -73.9096053 }, + { "lat": 40.8540780, "lon": -73.9096560 }, + { "lat": 40.8541132, "lon": -73.9097036 }, + { "lat": 40.8541535, "lon": -73.9097541 }, + { "lat": 40.8541894, "lon": -73.9097938 }, + { "lat": 40.8542313, "lon": -73.9098335 }, + { "lat": 40.8544192, "lon": -73.9100105 }, + { "lat": 40.8544397, "lon": -73.9100363 }, + { "lat": 40.8544565, "lon": -73.9100598 }, + { "lat": 40.8544722, "lon": -73.9100862 }, + { "lat": 40.8544863, "lon": -73.9101221 }, + { "lat": 40.8545036, "lon": -73.9101723 }, + { "lat": 40.8547673, "lon": -73.9110218 }, + { "lat": 40.8548220, "lon": -73.9111960 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West Burnside Avenue", + "name:etymology:wikidata": "Q355444", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Burnside", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5697216, + "bounds": { + "minlat": 40.8540037, + "minlon": -73.9121196, + "maxlat": 40.8548220, + "maxlon": -73.9111960 + }, + "nodes": [ + 42743984, + 2899134410, + 2323868472, + 2323868481, + 2323868466 + ], + "geometry": [ + { "lat": 40.8548220, "lon": -73.9111960 }, + { "lat": 40.8547654, "lon": -73.9112713 }, + { "lat": 40.8544667, "lon": -73.9116693 }, + { "lat": 40.8542688, "lon": -73.9118876 }, + { "lat": 40.8540037, "lon": -73.9121196 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "cycleway:left:width": "6'", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "name_1": "University Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5697219, + "bounds": { + "minlat": 40.8206250, + "minlon": -73.9169185, + "maxlat": 40.8222108, + "maxlon": -73.9116800 + }, + "nodes": [ + 42736992, + 42744092, + 5482340532, + 8454351347, + 42744090, + 13703020076, + 5482340523, + 5482340525, + 12040128248, + 42744088, + 12040128246, + 12040128348, + 9910723127, + 42744086 + ], + "geometry": [ + { "lat": 40.8206250, "lon": -73.9116800 }, + { "lat": 40.8208610, "lon": -73.9125700 }, + { "lat": 40.8210542, "lon": -73.9131865 }, + { "lat": 40.8211322, "lon": -73.9134356 }, + { "lat": 40.8211690, "lon": -73.9135530 }, + { "lat": 40.8212853, "lon": -73.9139310 }, + { "lat": 40.8213728, "lon": -73.9142152 }, + { "lat": 40.8214285, "lon": -73.9143961 }, + { "lat": 40.8216400, "lon": -73.9150836 }, + { "lat": 40.8216700, "lon": -73.9151810 }, + { "lat": 40.8217037, "lon": -73.9152893 }, + { "lat": 40.8219137, "lon": -73.9159640 }, + { "lat": 40.8221783, "lon": -73.9168144 }, + { "lat": 40.8222108, "lon": -73.9169185 } + ], + "tags": { + "highway": "residential", + "name": "East 157th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "157th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5697221, + "bounds": { + "minlat": 40.8199515, + "minlon": -73.9118911, + "maxlat": 40.8202621, + "maxlon": -73.9103555 + }, + "nodes": [ + 42744118, + 8233978558, + 5482340595, + 42744120, + 5482340593, + 11285276849, + 8233978552, + 42744128 + ], + "geometry": [ + { "lat": 40.8202621, "lon": -73.9118911 }, + { "lat": 40.8202420, "lon": -73.9117917 }, + { "lat": 40.8202306, "lon": -73.9117277 }, + { "lat": 40.8202132, "lon": -73.9116497 }, + { "lat": 40.8201899, "lon": -73.9115345 }, + { "lat": 40.8199811, "lon": -73.9105022 }, + { "lat": 40.8199741, "lon": -73.9104675 }, + { "lat": 40.8199515, "lon": -73.9103555 } + ], + "tags": { + "highway": "residential", + "name": "East 157th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "157th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5697256, + "bounds": { + "minlat": 40.8492002, + "minlon": -73.9193705, + "maxlat": 40.8496277, + "maxlon": -73.9174402 + }, + "nodes": [ + 2907939238, + 2907939236, + 12055955039, + 12055955038, + 12055955037, + 12055955049, + 42731821 + ], + "geometry": [ + { "lat": 40.8492002, "lon": -73.9174402 }, + { "lat": 40.8492634, "lon": -73.9175283 }, + { "lat": 40.8492827, "lon": -73.9175658 }, + { "lat": 40.8492964, "lon": -73.9176058 }, + { "lat": 40.8493067, "lon": -73.9176457 }, + { "lat": 40.8494489, "lon": -73.9184100 }, + { "lat": 40.8496277, "lon": -73.9193705 } + ], + "tags": { + "highway": "residential", + "name": "West 176th Step Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "176th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5697278, + "bounds": { + "minlat": 40.8515430, + "minlon": -73.9186250, + "maxlat": 40.8523860, + "maxlon": -73.9182207 + }, + "nodes": [ + 42745018, + 2808793174, + 2808793208, + 42745021 + ], + "geometry": [ + { "lat": 40.8515430, "lon": -73.9183260 }, + { "lat": 40.8516114, "lon": -73.9182996 }, + { "lat": 40.8518169, "lon": -73.9182207 }, + { "lat": 40.8523860, "lon": -73.9186250 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Place", + "name:etymology:wikidata": "Q3338968", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Palisade", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697299, + "bounds": { + "minlat": 40.8481355, + "minlon": -73.9192455, + "maxlat": 40.8484278, + "maxlon": -73.9188310 + }, + "nodes": [ + 2907939241, + 8463760577, + 12055955042, + 12055955043, + 42745466 + ], + "geometry": [ + { "lat": 40.8481355, "lon": -73.9188310 }, + { "lat": 40.8483635, "lon": -73.9191363 }, + { "lat": 40.8483907, "lon": -73.9191757 }, + { "lat": 40.8484103, "lon": -73.9192092 }, + { "lat": 40.8484278, "lon": -73.9192455 } + ], + "tags": { + "highway": "residential", + "name": "Tenney Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tenney", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5697300, + "bounds": { + "minlat": 40.8513709, + "minlon": -73.9231727, + "maxlat": 40.8527045, + "maxlon": -73.9217412 + }, + "nodes": [ + 595750833, + 8250546158, + 9918291040, + 9918291033, + 9918291034, + 1396354602, + 9918291041, + 9918291035, + 9918291036, + 9918291037, + 12057681785, + 12057681786, + 12057681795, + 12057681794, + 1396354599, + 12057681793, + 12057681792, + 12057681791, + 9918291039, + 9918291038, + 8250546170, + 9918291049, + 9918291050, + 9918291051, + 595750834 + ], + "geometry": [ + { "lat": 40.8527045, "lon": -73.9217412 }, + { "lat": 40.8525723, "lon": -73.9218657 }, + { "lat": 40.8524312, "lon": -73.9219985 }, + { "lat": 40.8522815, "lon": -73.9221395 }, + { "lat": 40.8522331, "lon": -73.9221850 }, + { "lat": 40.8521993, "lon": -73.9222168 }, + { "lat": 40.8521243, "lon": -73.9222875 }, + { "lat": 40.8520944, "lon": -73.9223156 }, + { "lat": 40.8520854, "lon": -73.9223268 }, + { "lat": 40.8520800, "lon": -73.9223365 }, + { "lat": 40.8520764, "lon": -73.9223508 }, + { "lat": 40.8520753, "lon": -73.9223705 }, + { "lat": 40.8520736, "lon": -73.9224141 }, + { "lat": 40.8520715, "lon": -73.9224279 }, + { "lat": 40.8520677, "lon": -73.9224400 }, + { "lat": 40.8520606, "lon": -73.9224527 }, + { "lat": 40.8520527, "lon": -73.9224638 }, + { "lat": 40.8520439, "lon": -73.9224734 }, + { "lat": 40.8518959, "lon": -73.9226103 }, + { "lat": 40.8515950, "lon": -73.9228970 }, + { "lat": 40.8514324, "lon": -73.9230486 }, + { "lat": 40.8514176, "lon": -73.9230684 }, + { "lat": 40.8514019, "lon": -73.9230926 }, + { "lat": 40.8513864, "lon": -73.9231252 }, + { "lat": 40.8513709, "lon": -73.9231727 } + ], + "tags": { + "access": "private", + "bridge": "yes", + "highway": "service", + "lanes": "2", + "layer": "1", + "maxspeed": "5 mph", + "name": "Richman Plaza", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Richman", + "tiger:name_type": "Plz", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5697316, + "bounds": { + "minlat": 40.8141422, + "minlon": -73.9202818, + "maxlat": 40.8146584, + "maxlon": -73.9191951 + }, + "nodes": [ + 42745889, + 9908621407, + 5528802675, + 9908621408, + 42745890 + ], + "geometry": [ + { "lat": 40.8146584, "lon": -73.9202818 }, + { "lat": 40.8145808, "lon": -73.9202216 }, + { "lat": 40.8142248, "lon": -73.9193887 }, + { "lat": 40.8141991, "lon": -73.9193296 }, + { "lat": 40.8141422, "lon": -73.9191951 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "name": "East 146th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "146th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5697317, + "bounds": { + "minlat": 40.8174123, + "minlon": -73.9307414, + "maxlat": 40.8179422, + "maxlon": -73.9287171 + }, + "nodes": [ + 595790186, + 7557695121, + 13330007009, + 42734146, + 13330007008, + 13809338750, + 13330007001, + 42733689 + ], + "geometry": [ + { "lat": 40.8179422, "lon": -73.9307414 }, + { "lat": 40.8178873, "lon": -73.9305253 }, + { "lat": 40.8177108, "lon": -73.9298415 }, + { "lat": 40.8176885, "lon": -73.9297550 }, + { "lat": 40.8176635, "lon": -73.9296611 }, + { "lat": 40.8175768, "lon": -73.9293352 }, + { "lat": 40.8174363, "lon": -73.9288074 }, + { "lat": 40.8174123, "lon": -73.9287171 } + ], + "tags": { + "highway": "residential", + "name": "East 146th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "146th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5697318, + "bounds": { + "minlat": 40.8165065, + "minlon": -73.9262304, + "maxlat": 40.8167763, + "maxlon": -73.9252185 + }, + "nodes": [ + 42743884, + 9910711702, + 9910711701, + 42745909 + ], + "geometry": [ + { "lat": 40.8165065, "lon": -73.9252185 }, + { "lat": 40.8167401, "lon": -73.9260890 }, + { "lat": 40.8167542, "lon": -73.9261416 }, + { "lat": 40.8167763, "lon": -73.9262304 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 146th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "146th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697319, + "bounds": { + "minlat": 40.8145581, + "minlon": -73.9215340, + "maxlat": 40.8155714, + "maxlon": -73.9204742 + }, + "nodes": [ + 7555037305, + 11217140019, + 2799130286, + 42745916 + ], + "geometry": [ + { "lat": 40.8145581, "lon": -73.9204742 }, + { "lat": 40.8146426, "lon": -73.9205483 }, + { "lat": 40.8155270, "lon": -73.9213272 }, + { "lat": 40.8155714, "lon": -73.9215340 } + ], + "tags": { + "highway": "residential", + "name": "East 146th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "146th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5697368, + "bounds": { + "minlat": 40.8450371, + "minlon": -73.9093414, + "maxlat": 40.8452690, + "maxlon": -73.9048187 + }, + "nodes": [ + 3639396132, + 13039036379, + 42745101, + 13047740285, + 42746578, + 13040532867, + 10117403611, + 13040501328, + 42746573, + 13040501320, + 42734836, + 8571720901, + 13038921064, + 42735881 + ], + "geometry": [ + { "lat": 40.8450371, "lon": -73.9048187 }, + { "lat": 40.8450428, "lon": -73.9049192 }, + { "lat": 40.8450890, "lon": -73.9057299 }, + { "lat": 40.8451303, "lon": -73.9065475 }, + { "lat": 40.8451355, "lon": -73.9066355 }, + { "lat": 40.8451395, "lon": -73.9067178 }, + { "lat": 40.8451726, "lon": -73.9074072 }, + { "lat": 40.8451743, "lon": -73.9074400 }, + { "lat": 40.8451791, "lon": -73.9075363 }, + { "lat": 40.8451837, "lon": -73.9076280 }, + { "lat": 40.8452241, "lon": -73.9084400 }, + { "lat": 40.8452598, "lon": -73.9091550 }, + { "lat": 40.8452626, "lon": -73.9092113 }, + { "lat": 40.8452690, "lon": -73.9093414 } + ], + "tags": { + "highway": "residential", + "name": "Cross Bronx Expressway Service Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cross Bronx", + "tiger:name_type": "Expy" + } +}, +{ + "type": "way", + "id": 5697386, + "bounds": { + "minlat": 40.8622230, + "minlon": -73.9109819, + "maxlat": 40.8623478, + "maxlon": -73.9099436 + }, + "nodes": [ + 12058583970, + 12058583976, + 12058583975, + 12058583974, + 12058583973, + 1396352597, + 12058583972, + 12058583971, + 12058570865, + 1396352587, + 12058570864, + 12058570863, + 42732755 + ], + "geometry": [ + { "lat": 40.8622489, "lon": -73.9099436 }, + { "lat": 40.8622643, "lon": -73.9099959 }, + { "lat": 40.8622725, "lon": -73.9100475 }, + { "lat": 40.8622759, "lon": -73.9100896 }, + { "lat": 40.8622761, "lon": -73.9101376 }, + { "lat": 40.8622696, "lon": -73.9101724 }, + { "lat": 40.8622294, "lon": -73.9104724 }, + { "lat": 40.8622230, "lon": -73.9105433 }, + { "lat": 40.8622252, "lon": -73.9106092 }, + { "lat": 40.8622367, "lon": -73.9106741 }, + { "lat": 40.8622522, "lon": -73.9107305 }, + { "lat": 40.8622769, "lon": -73.9108001 }, + { "lat": 40.8623478, "lon": -73.9109819 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Landing Road", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Landing", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 5697406, + "bounds": { + "minlat": 40.8269240, + "minlon": -73.9136310, + "maxlat": 40.8309993, + "maxlon": -73.9113797 + }, + "nodes": [ + 42746986, + 12038440266, + 8187805328, + 12038440109, + 42746982, + 12038440117, + 12038440080, + 42746977, + 12038440373, + 10034673421, + 12038440155, + 42746974 + ], + "geometry": [ + { "lat": 40.8309993, "lon": -73.9113797 }, + { "lat": 40.8309192, "lon": -73.9114241 }, + { "lat": 40.8295274, "lon": -73.9121950 }, + { "lat": 40.8294833, "lon": -73.9122194 }, + { "lat": 40.8294190, "lon": -73.9122550 }, + { "lat": 40.8293623, "lon": -73.9122867 }, + { "lat": 40.8282197, "lon": -73.9129246 }, + { "lat": 40.8281720, "lon": -73.9129513 }, + { "lat": 40.8280983, "lon": -73.9129914 }, + { "lat": 40.8271140, "lon": -73.9135275 }, + { "lat": 40.8270456, "lon": -73.9135648 }, + { "lat": 40.8269240, "lon": -73.9136310 } + ], + "tags": { + "highway": "residential", + "name": "Clay Avenue", + "name:etymology:wikidata": "Q319630", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Clay", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697418, + "bounds": { + "minlat": 40.8095499, + "minlon": -73.9293273, + "maxlat": 40.8096310, + "maxlon": -73.9292204 + }, + "nodes": [ + 42747177, + 595801157 + ], + "geometry": [ + { "lat": 40.8095499, "lon": -73.9292204 }, + { "lat": 40.8096310, "lon": -73.9293273 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "East 135th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5697424, + "bounds": { + "minlat": 40.8377450, + "minlon": -73.9190170, + "maxlat": 40.8383810, + "maxlon": -73.9173830 + }, + "nodes": [ + 42736037, + 13036958378, + 10034673429, + 13038597892, + 42733759 + ], + "geometry": [ + { "lat": 40.8383810, "lon": -73.9190170 }, + { "lat": 40.8383313, "lon": -73.9188894 }, + { "lat": 40.8377977, "lon": -73.9175183 }, + { "lat": 40.8377777, "lon": -73.9174670 }, + { "lat": 40.8377450, "lon": -73.9173830 } + ], + "tags": { + "highway": "residential", + "name": "East Clarke Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Clarke", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5697443, + "bounds": { + "minlat": 40.8331537, + "minlon": -73.9212376, + "maxlat": 40.8338405, + "maxlon": -73.9192171 + }, + "nodes": [ + 2408393062, + 12739350601, + 13033188189, + 42733738, + 13033188174, + 13033156001, + 42734184 + ], + "geometry": [ + { "lat": 40.8331537, "lon": -73.9192171 }, + { "lat": 40.8331831, "lon": -73.9193023 }, + { "lat": 40.8335186, "lon": -73.9202928 }, + { "lat": 40.8335430, "lon": -73.9203650 }, + { "lat": 40.8335763, "lon": -73.9204626 }, + { "lat": 40.8338101, "lon": -73.9211484 }, + { "lat": 40.8338405, "lon": -73.9212376 } + ], + "tags": { + "highway": "residential", + "name": "McClellan Street", + "name:etymology:wikidata": "Q310192", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mc Clellan", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5697456, + "bounds": { + "minlat": 40.8772422, + "minlon": -73.9179571, + "maxlat": 40.8788746, + "maxlon": -73.9167787 + }, + "nodes": [ + 42733228, + 1545120630, + 1545109715, + 1545120645, + 1545120632, + 1545120660, + 42738953, + 11250047196, + 1545120637, + 1545120634, + 8395733679, + 1545120648, + 6853941383, + 1545120658, + 1545120619, + 6853953690, + 1545120652, + 1545120633, + 5588603828, + 42747751 + ], + "geometry": [ + { "lat": 40.8772422, "lon": -73.9177695 }, + { "lat": 40.8772660, "lon": -73.9178708 }, + { "lat": 40.8772947, "lon": -73.9179076 }, + { "lat": 40.8773319, "lon": -73.9179429 }, + { "lat": 40.8773680, "lon": -73.9179571 }, + { "lat": 40.8774279, "lon": -73.9179457 }, + { "lat": 40.8775006, "lon": -73.9179081 }, + { "lat": 40.8777009, "lon": -73.9177861 }, + { "lat": 40.8777746, "lon": -73.9177412 }, + { "lat": 40.8778999, "lon": -73.9176411 }, + { "lat": 40.8779947, "lon": -73.9175608 }, + { "lat": 40.8780170, "lon": -73.9175419 }, + { "lat": 40.8781466, "lon": -73.9173980 }, + { "lat": 40.8782328, "lon": -73.9173024 }, + { "lat": 40.8784580, "lon": -73.9170422 }, + { "lat": 40.8785220, "lon": -73.9169794 }, + { "lat": 40.8785497, "lon": -73.9169523 }, + { "lat": 40.8786854, "lon": -73.9168530 }, + { "lat": 40.8787871, "lon": -73.9168047 }, + { "lat": 40.8788746, "lon": -73.9167787 } + ], + "tags": { + "highway": "tertiary", + "name": "Kappock Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Kappock", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5697459, + "bounds": { + "minlat": 40.8788746, + "minlon": -73.9167787, + "maxlat": 40.8791725, + "maxlon": -73.9167286 + }, + "nodes": [ + 42747751, + 11250077544, + 13041475426, + 5324454006 + ], + "geometry": [ + { "lat": 40.8788746, "lon": -73.9167787 }, + { "lat": 40.8789734, "lon": -73.9167623 }, + { "lat": 40.8790691, "lon": -73.9167461 }, + { "lat": 40.8791725, "lon": -73.9167286 } + ], + "tags": { + "highway": "tertiary", + "name": "Kappock Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Kappock", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697460, + "bounds": { + "minlat": 40.8589978, + "minlon": -73.9077684, + "maxlat": 40.8596048, + "maxlon": -73.9057263 + }, + "nodes": [ + 42747802, + 13564424193, + 42740876, + 13564503608, + 5708312900, + 9181214857, + 42747807, + 2794883581, + 2978124469, + 2794883582, + 42747810 + ], + "geometry": [ + { "lat": 40.8589978, "lon": -73.9057263 }, + { "lat": 40.8590287, "lon": -73.9058165 }, + { "lat": 40.8593602, "lon": -73.9067823 }, + { "lat": 40.8593583, "lon": -73.9069455 }, + { "lat": 40.8593580, "lon": -73.9069710 }, + { "lat": 40.8593582, "lon": -73.9071298 }, + { "lat": 40.8593553, "lon": -73.9072034 }, + { "lat": 40.8593537, "lon": -73.9072471 }, + { "lat": 40.8593569, "lon": -73.9072908 }, + { "lat": 40.8593599, "lon": -73.9073323 }, + { "lat": 40.8596048, "lon": -73.9077684 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "residential", + "name": "West 183rd Street", + "parking:lane:both": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "183rd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5697466, + "bounds": { + "minlat": 40.8545820, + "minlon": -73.9161900, + "maxlat": 40.8565295, + "maxlon": -73.9154520 + }, + "nodes": [ + 42744012, + 9918291075, + 9918291077, + 9918291076, + 8464067971, + 8464067962, + 13067995237, + 42748017, + 10135688201, + 7940640303, + 42731727 + ], + "geometry": [ + { "lat": 40.8545820, "lon": -73.9161900 }, + { "lat": 40.8546657, "lon": -73.9161254 }, + { "lat": 40.8547045, "lon": -73.9160975 }, + { "lat": 40.8547575, "lon": -73.9160667 }, + { "lat": 40.8547960, "lon": -73.9160543 }, + { "lat": 40.8554420, "lon": -73.9159074 }, + { "lat": 40.8558011, "lon": -73.9157387 }, + { "lat": 40.8558600, "lon": -73.9157110 }, + { "lat": 40.8559231, "lon": -73.9156893 }, + { "lat": 40.8561908, "lon": -73.9155830 }, + { "lat": 40.8565295, "lon": -73.9154520 } + ], + "tags": { + "highway": "residential", + "name": "Osborne Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Osborne", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697479, + "bounds": { + "minlat": 40.8293359, + "minlon": -73.9299337, + "maxlat": 40.8299650, + "maxlon": -73.9290043 + }, + "nodes": [ + 42735968, + 9910738426, + 9166334408, + 9166334409, + 9910738425, + 5335109928, + 2609934090 + ], + "geometry": [ + { "lat": 40.8299650, "lon": -73.9299337 }, + { "lat": 40.8299269, "lon": -73.9299066 }, + { "lat": 40.8299008, "lon": -73.9298842 }, + { "lat": 40.8298757, "lon": -73.9298567 }, + { "lat": 40.8298512, "lon": -73.9298269 }, + { "lat": 40.8296019, "lon": -73.9294270 }, + { "lat": 40.8293359, "lon": -73.9290043 } + ], + "tags": { + "busway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 5697482, + "bounds": { + "minlat": 40.8219557, + "minlon": -73.9094593, + "maxlat": 40.8224477, + "maxlon": -73.9074225 + }, + "nodes": [ + 42748198, + 13249096573, + 42735042 + ], + "geometry": [ + { "lat": 40.8224477, "lon": -73.9094593 }, + { "lat": 40.8224215, "lon": -73.9093507 }, + { "lat": 40.8219557, "lon": -73.9074225 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "name": "East 161st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 5697500, + "bounds": { + "minlat": 40.8412830, + "minlon": -73.9161840, + "maxlat": 40.8423350, + "maxlon": -73.9136460 + }, + "nodes": [ + 42748462, + 13037043604, + 13017732191, + 42733782, + 13017732179, + 42748454, + 13247296498, + 42736350 + ], + "geometry": [ + { "lat": 40.8412830, "lon": -73.9136460 }, + { "lat": 40.8413191, "lon": -73.9137342 }, + { "lat": 40.8415916, "lon": -73.9144023 }, + { "lat": 40.8416243, "lon": -73.9144826 }, + { "lat": 40.8416569, "lon": -73.9145608 }, + { "lat": 40.8419631, "lon": -73.9152987 }, + { "lat": 40.8422804, "lon": -73.9160540 }, + { "lat": 40.8423350, "lon": -73.9161840 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "East 172nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "172nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 5697504, + "bounds": { + "minlat": 40.8398810, + "minlon": -73.9167830, + "maxlat": 40.8449657, + "maxlon": -73.9131580 + }, + "nodes": [ + 42739223, + 5762102241, + 13036990086, + 42748512, + 13036990082, + 13247381551, + 42748454, + 13247381549, + 12737767493, + 42748516, + 12737767488, + 13701040048, + 12089606494 + ], + "geometry": [ + { "lat": 40.8398810, "lon": -73.9167830 }, + { "lat": 40.8399651, "lon": -73.9167325 }, + { "lat": 40.8409197, "lon": -73.9160431 }, + { "lat": 40.8409739, "lon": -73.9160039 }, + { "lat": 40.8410337, "lon": -73.9159613 }, + { "lat": 40.8419035, "lon": -73.9153412 }, + { "lat": 40.8419631, "lon": -73.9152987 }, + { "lat": 40.8420255, "lon": -73.9152542 }, + { "lat": 40.8439293, "lon": -73.9138969 }, + { "lat": 40.8439801, "lon": -73.9138607 }, + { "lat": 40.8440399, "lon": -73.9138181 }, + { "lat": 40.8447488, "lon": -73.9133127 }, + { "lat": 40.8449657, "lon": -73.9131580 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Townsend Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Townsend", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5697505, + "bounds": { + "minlat": 40.8457296, + "minlon": -73.9126421, + "maxlat": 40.8462155, + "maxlon": -73.9122687 + }, + "nodes": [ + 42748530, + 12089646895, + 12089646894, + 12089646893, + 12089646892, + 12089646891, + 8285583695, + 42748532 + ], + "geometry": [ + { "lat": 40.8457296, "lon": -73.9126421 }, + { "lat": 40.8457424, "lon": -73.9126235 }, + { "lat": 40.8457558, "lon": -73.9126068 }, + { "lat": 40.8457722, "lon": -73.9125888 }, + { "lat": 40.8457892, "lon": -73.9125732 }, + { "lat": 40.8458071, "lon": -73.9125588 }, + { "lat": 40.8461288, "lon": -73.9123302 }, + { "lat": 40.8462155, "lon": -73.9122687 } + ], + "tags": { + "highway": "residential", + "name": "Townsend Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Townsend", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5697508, + "bounds": { + "minlat": 40.8783047, + "minlon": -73.9080206, + "maxlat": 40.8798080, + "maxlon": -73.9065750 + }, + "nodes": [ + 42748562, + 13068285857, + 7085395427, + 13038890004, + 42746772 + ], + "geometry": [ + { "lat": 40.8798080, "lon": -73.9065750 }, + { "lat": 40.8797390, "lon": -73.9066415 }, + { "lat": 40.8787363, "lon": -73.9076088 }, + { "lat": 40.8783942, "lon": -73.9079352 }, + { "lat": 40.8783047, "lon": -73.9080206 } + ], + "tags": { + "highway": "residential", + "name": "Kingsbridge Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Kingsbridge", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5697509, + "bounds": { + "minlat": 40.8433352, + "minlon": -73.9130013, + "maxlat": 40.8436965, + "maxlon": -73.9121079 + }, + "nodes": [ + 2408354082, + 7823245736, + 13017732160, + 42733792 + ], + "geometry": [ + { "lat": 40.8433352, "lon": -73.9121079 }, + { "lat": 40.8433655, "lon": -73.9121854 }, + { "lat": 40.8436701, "lon": -73.9129369 }, + { "lat": 40.8436965, "lon": -73.9130013 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "East Mount Eden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Eden", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 5697519, + "bounds": { + "minlat": 40.8801306, + "minlon": -73.9072534, + "maxlat": 40.8819807, + "maxlon": -73.9039286 + }, + "nodes": [ + 42732284, + 12748328784, + 42748789, + 42748566, + 42735478, + 1581431093, + 13070545391, + 42748794 + ], + "geometry": [ + { "lat": 40.8801306, "lon": -73.9039286 }, + { "lat": 40.8802016, "lon": -73.9040597 }, + { "lat": 40.8805540, "lon": -73.9047100 }, + { "lat": 40.8809670, "lon": -73.9054500 }, + { "lat": 40.8815516, "lon": -73.9064991 }, + { "lat": 40.8817430, "lon": -73.9068399 }, + { "lat": 40.8819436, "lon": -73.9071870 }, + { "lat": 40.8819807, "lon": -73.9072534 } + ], + "tags": { + "highway": "residential", + "name": "West 232nd Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "232nd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697572, + "bounds": { + "minlat": 40.8181680, + "minlon": -73.9144720, + "maxlat": 40.8185070, + "maxlon": -73.9136450 + }, + "nodes": [ + 42746087, + 13249095758, + 42749766 + ], + "geometry": [ + { "lat": 40.8181680, "lon": -73.9136450 }, + { "lat": 40.8184633, "lon": -73.9143654 }, + { "lat": 40.8185070, "lon": -73.9144720 } + ], + "tags": { + "highway": "residential", + "name": "East 153rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "153rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697573, + "bounds": { + "minlat": 40.8223978, + "minlon": -73.9287989, + "maxlat": 40.8250616, + "maxlon": -73.9269107 + }, + "nodes": [ + 42733701, + 13146557930, + 8285601007, + 13146557931, + 42734157, + 13146557933, + 13146557949, + 42749785, + 13146557950, + 13146557935, + 9910770000, + 42729089, + 8393462614, + 5235372997, + 8393462616, + 2611640996, + 9910769999, + 8393470318, + 9028107117 + ], + "geometry": [ + { "lat": 40.8223978, "lon": -73.9269107 }, + { "lat": 40.8224927, "lon": -73.9269806 }, + { "lat": 40.8225210, "lon": -73.9269993 }, + { "lat": 40.8231052, "lon": -73.9274379 }, + { "lat": 40.8231784, "lon": -73.9274929 }, + { "lat": 40.8232573, "lon": -73.9275513 }, + { "lat": 40.8239683, "lon": -73.9280771 }, + { "lat": 40.8240652, "lon": -73.9281487 }, + { "lat": 40.8241690, "lon": -73.9282190 }, + { "lat": 40.8241774, "lon": -73.9282247 }, + { "lat": 40.8245216, "lon": -73.9284578 }, + { "lat": 40.8245711, "lon": -73.9284927 }, + { "lat": 40.8246294, "lon": -73.9285282 }, + { "lat": 40.8246523, "lon": -73.9285441 }, + { "lat": 40.8248333, "lon": -73.9286585 }, + { "lat": 40.8248755, "lon": -73.9286851 }, + { "lat": 40.8249184, "lon": -73.9287108 }, + { "lat": 40.8250219, "lon": -73.9287739 }, + { "lat": 40.8250616, "lon": -73.9287989 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 153rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "153rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697576, + "bounds": { + "minlat": 40.8070790, + "minlon": -73.9300319, + "maxlat": 40.8076602, + "maxlon": -73.9296056 + }, + "nodes": [ + 8375510722, + 11250500610, + 9908636599, + 13235287684 + ], + "geometry": [ + { "lat": 40.8070790, "lon": -73.9300319 }, + { "lat": 40.8072868, "lon": -73.9298797 }, + { "lat": 40.8076071, "lon": -73.9296465 }, + { "lat": 40.8076602, "lon": -73.9296056 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lincoln Avenue", + "service": "driveway", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5697579, + "bounds": { + "minlat": 40.8473929, + "minlon": -73.9102451, + "maxlat": 40.8475601, + "maxlon": -73.9094596 + }, + "nodes": [ + 42733805, + 13040525973, + 6224280774, + 42749880 + ], + "geometry": [ + { "lat": 40.8475601, "lon": -73.9102451 }, + { "lat": 40.8475393, "lon": -73.9101521 }, + { "lat": 40.8475265, "lon": -73.9100947 }, + { "lat": 40.8473929, "lon": -73.9094596 } + ], + "tags": { + "highway": "residential", + "name": "Henwood Place", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Henwood", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5697583, + "bounds": { + "minlat": 40.8381723, + "minlon": -73.9164290, + "maxlat": 40.8389480, + "maxlon": -73.9144165 + }, + "nodes": [ + 42733768, + 13018505025, + 13018452551, + 6224280779, + 12739283296, + 13534990455, + 4606046834 + ], + "geometry": [ + { "lat": 40.8389480, "lon": -73.9164290 }, + { "lat": 40.8389238, "lon": -73.9163656 }, + { "lat": 40.8387132, "lon": -73.9158157 }, + { "lat": 40.8382353, "lon": -73.9145676 }, + { "lat": 40.8382183, "lon": -73.9145240 }, + { "lat": 40.8381992, "lon": -73.9144778 }, + { "lat": 40.8381723, "lon": -73.9144165 } + ], + "tags": { + "highway": "residential", + "name": "Elliot Place", + "name:etymology:wikidata": "Q5361269", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Elliot", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5697614, + "bounds": { + "minlat": 40.8035651, + "minlon": -73.9118468, + "maxlat": 40.8042229, + "maxlon": -73.9113577 + }, + "nodes": [ + 42750288, + 9908669928, + 7043090376, + 13038955253, + 42737587 + ], + "geometry": [ + { "lat": 40.8042229, "lon": -73.9113577 }, + { "lat": 40.8041326, "lon": -73.9114250 }, + { "lat": 40.8039385, "lon": -73.9115677 }, + { "lat": 40.8036226, "lon": -73.9118032 }, + { "lat": 40.8035651, "lon": -73.9118468 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Willow Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willow", + "tiger:name_type": "Ave", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5697622, + "bounds": { + "minlat": 40.8634010, + "minlon": -73.9074961, + "maxlat": 40.8642550, + "maxlon": -73.9039930 + }, + "nodes": [ + 42750590, + 2978130457, + 42750588, + 42750586, + 42750583, + 42750580, + 42750578, + 42750575, + 42750574, + 42750571, + 42750567, + 42750561, + 42750558, + 42750554, + 42750552, + 2978130377, + 42750549, + 42750544, + 42750539, + 42750535, + 42750529, + 42750524, + 42750520, + 10130913943, + 42750517, + 42750514 + ], + "geometry": [ + { "lat": 40.8635600, "lon": -73.9074961 }, + { "lat": 40.8635547, "lon": -73.9074306 }, + { "lat": 40.8635509, "lon": -73.9073903 }, + { "lat": 40.8635340, "lon": -73.9072310 }, + { "lat": 40.8635020, "lon": -73.9070980 }, + { "lat": 40.8634580, "lon": -73.9069710 }, + { "lat": 40.8634270, "lon": -73.9068760 }, + { "lat": 40.8634050, "lon": -73.9067530 }, + { "lat": 40.8634010, "lon": -73.9066330 }, + { "lat": 40.8634130, "lon": -73.9065050 }, + { "lat": 40.8634440, "lon": -73.9063840 }, + { "lat": 40.8634820, "lon": -73.9062920 }, + { "lat": 40.8635890, "lon": -73.9059790 }, + { "lat": 40.8636960, "lon": -73.9057130 }, + { "lat": 40.8638140, "lon": -73.9054550 }, + { "lat": 40.8639181, "lon": -73.9052514 }, + { "lat": 40.8639510, "lon": -73.9051870 }, + { "lat": 40.8640600, "lon": -73.9049990 }, + { "lat": 40.8641110, "lon": -73.9048920 }, + { "lat": 40.8641690, "lon": -73.9047390 }, + { "lat": 40.8642080, "lon": -73.9045970 }, + { "lat": 40.8642360, "lon": -73.9044500 }, + { "lat": 40.8642540, "lon": -73.9042790 }, + { "lat": 40.8642547, "lon": -73.9041550 }, + { "lat": 40.8642550, "lon": -73.9041070 }, + { "lat": 40.8642480, "lon": -73.9039930 } + ], + "tags": { + "highway": "residential", + "name": "Father Zeiser Place", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Father Zeiser", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 5697623, + "bounds": { + "minlat": 40.8146584, + "minlon": -73.9203525, + "maxlat": 40.8158741, + "maxlon": -73.9198546 + }, + "nodes": [ + 42750594, + 7695582352, + 7695582356, + 5914730208, + 11217140020, + 42745889 + ], + "geometry": [ + { "lat": 40.8158741, "lon": -73.9198546 }, + { "lat": 40.8155863, "lon": -73.9199881 }, + { "lat": 40.8152000, "lon": -73.9201673 }, + { "lat": 40.8148006, "lon": -73.9203525 }, + { "lat": 40.8147545, "lon": -73.9203402 }, + { "lat": 40.8146584, "lon": -73.9202818 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "name": "Courtlandt Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Courtland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697630, + "bounds": { + "minlat": 40.8808143, + "minlon": -73.9163157, + "maxlat": 40.8815932, + "maxlon": -73.9153733 + }, + "nodes": [ + 42750738, + 1545521302 + ], + "geometry": [ + { "lat": 40.8808143, "lon": -73.9163157 }, + { "lat": 40.8815932, "lon": -73.9153733 } + ], + "tags": { + "highway": "residential", + "name": "Fairfield Avenue", + "name:etymology:wikidata": "Q754635", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fairfield", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070829", + "tiger:tlid": "80295917:80296095:80296097:80295921", + "tiger:upload_uuid": "bulk_upload.pl-31e02009-f620-482f-9ce6-28e1cea72242", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5697636, + "bounds": { + "minlat": 40.8381341, + "minlon": -73.9199740, + "maxlat": 40.8387140, + "maxlon": -73.9193042 + }, + "nodes": [ + 42736033, + 13036940298, + 8285601016, + 42740197 + ], + "geometry": [ + { "lat": 40.8381341, "lon": -73.9193042 }, + { "lat": 40.8382217, "lon": -73.9194054 }, + { "lat": 40.8386558, "lon": -73.9199068 }, + { "lat": 40.8387140, "lon": -73.9199740 } + ], + "tags": { + "highway": "residential", + "name": "Clarke Place West", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Clarke", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5697656, + "bounds": { + "minlat": 40.8108830, + "minlon": -73.9308638, + "maxlat": 40.8123364, + "maxlon": -73.9289587 + }, + "nodes": [ + 42747169, + 11882279809, + 7591586305, + 5482247569, + 5482247575, + 5482247576, + 5482247578, + 9632503755, + 11882279822, + 42751188 + ], + "geometry": [ + { "lat": 40.8108830, "lon": -73.9308638 }, + { "lat": 40.8109290, "lon": -73.9308025 }, + { "lat": 40.8109625, "lon": -73.9307578 }, + { "lat": 40.8111409, "lon": -73.9305268 }, + { "lat": 40.8114143, "lon": -73.9301696 }, + { "lat": 40.8114247, "lon": -73.9301560 }, + { "lat": 40.8121834, "lon": -73.9291579 }, + { "lat": 40.8122121, "lon": -73.9291200 }, + { "lat": 40.8122661, "lon": -73.9290499 }, + { "lat": 40.8123364, "lon": -73.9289587 } + ], + "tags": { + "highway": "residential", + "name": "Canal Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Canal", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5697693, + "bounds": { + "minlat": 40.8420820, + "minlon": -73.9209130, + "maxlat": 40.8424340, + "maxlon": -73.9201070 + }, + "nodes": [ + 42735006, + 42751864 + ], + "geometry": [ + { "lat": 40.8424340, "lon": -73.9209130 }, + { "lat": 40.8420820, "lon": -73.9201070 } + ], + "tags": { + "highway": "residential", + "name": "Jesup Place", + "name:etymology:wikidata": "Q713243", + "name_1": "Sheriff S Byrd Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jesup", + "tiger:name_base_1": "Sheriff S Byrd", + "tiger:name_type": "Pl", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5697701, + "bounds": { + "minlat": 40.8418789, + "minlon": -73.9223851, + "maxlat": 40.8446626, + "maxlon": -73.9206102 + }, + "nodes": [ + 459823616, + 5762103016, + 42751999, + 5762103015, + 12163757039, + 2912071062 + ], + "geometry": [ + { "lat": 40.8446626, "lon": -73.9206102 }, + { "lat": 40.8441310, "lon": -73.9209490 }, + { "lat": 40.8440662, "lon": -73.9209903 }, + { "lat": 40.8440078, "lon": -73.9210275 }, + { "lat": 40.8420596, "lon": -73.9222679 }, + { "lat": 40.8418789, "lon": -73.9223851 } + ], + "tags": { + "highway": "residential", + "name": "Nelson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Nelson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_left_1": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5697710, + "bounds": { + "minlat": 40.8811548, + "minlon": -73.9097345, + "maxlat": 40.8813503, + "maxlon": -73.9093299 + }, + "nodes": [ + 42752145, + 2810120555, + 1544756324 + ], + "geometry": [ + { "lat": 40.8813503, "lon": -73.9093299 }, + { "lat": 40.8813069, "lon": -73.9094419 }, + { "lat": 40.8811548, "lon": -73.9097345 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "name": "Riverdale Avenue", + "oneway": "yes", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Riverdale", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 5697712, + "bounds": { + "minlat": 40.8635600, + "minlon": -73.9074961, + "maxlat": 40.8677098, + "maxlon": -73.9030764 + }, + "nodes": [ + 2328996401, + 11465855756, + 7265263267, + 42752256, + 42752250, + 42752246, + 42752240, + 42752236, + 42752233, + 42752227, + 42752218, + 42752214, + 42752209, + 42752206, + 42752204, + 42752202, + 42752198, + 42752193, + 42752189, + 42752187, + 42752183, + 42752176, + 42729933, + 2979499748, + 2899216725, + 8250783092, + 42750590 + ], + "geometry": [ + { "lat": 40.8677098, "lon": -73.9030764 }, + { "lat": 40.8663296, "lon": -73.9040818 }, + { "lat": 40.8662491, "lon": -73.9041404 }, + { "lat": 40.8659050, "lon": -73.9043910 }, + { "lat": 40.8658880, "lon": -73.9044010 }, + { "lat": 40.8657930, "lon": -73.9044710 }, + { "lat": 40.8657000, "lon": -73.9045590 }, + { "lat": 40.8656160, "lon": -73.9046620 }, + { "lat": 40.8655460, "lon": -73.9047710 }, + { "lat": 40.8654810, "lon": -73.9048990 }, + { "lat": 40.8654260, "lon": -73.9050450 }, + { "lat": 40.8653870, "lon": -73.9051970 }, + { "lat": 40.8653680, "lon": -73.9053190 }, + { "lat": 40.8653630, "lon": -73.9054550 }, + { "lat": 40.8653460, "lon": -73.9055910 }, + { "lat": 40.8653160, "lon": -73.9057260 }, + { "lat": 40.8652850, "lon": -73.9058260 }, + { "lat": 40.8652290, "lon": -73.9059640 }, + { "lat": 40.8651710, "lon": -73.9060710 }, + { "lat": 40.8650930, "lon": -73.9061830 }, + { "lat": 40.8650070, "lon": -73.9062800 }, + { "lat": 40.8649220, "lon": -73.9063540 }, + { "lat": 40.8644260, "lon": -73.9068050 }, + { "lat": 40.8640697, "lon": -73.9071203 }, + { "lat": 40.8636829, "lon": -73.9074681 }, + { "lat": 40.8636366, "lon": -73.9074897 }, + { "lat": 40.8635600, "lon": -73.9074961 } + ], + "tags": { + "highway": "residential", + "name": "Webb Avenue", + "name:etymology:wikidata": "Q2579269", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webb", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 5697756, + "bounds": { + "minlat": 40.8020375, + "minlon": -73.9161161, + "maxlat": 40.8031161, + "maxlon": -73.9146403 + }, + "nodes": [ + 42752931, + 11683884305, + 2885572820, + 9156979757, + 9156979756, + 9908642205, + 42752933, + 9908642207, + 42747203 + ], + "geometry": [ + { "lat": 40.8020375, "lon": -73.9161161 }, + { "lat": 40.8020871, "lon": -73.9160799 }, + { "lat": 40.8025599, "lon": -73.9157346 }, + { "lat": 40.8025943, "lon": -73.9157071 }, + { "lat": 40.8026315, "lon": -73.9156708 }, + { "lat": 40.8026534, "lon": -73.9156398 }, + { "lat": 40.8026748, "lon": -73.9156026 }, + { "lat": 40.8027017, "lon": -73.9155566 }, + { "lat": 40.8031161, "lon": -73.9146403 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "name_1": "Houghton Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "Houghton", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697805, + "bounds": { + "minlat": 40.8173685, + "minlon": -73.9122921, + "maxlat": 40.8175106, + "maxlon": -73.9113895 + }, + "nodes": [ + 42754108, + 42754112 + ], + "geometry": [ + { "lat": 40.8175106, "lon": -73.9122921 }, + { "lat": 40.8173685, "lon": -73.9113895 } + ], + "tags": { + "highway": "residential", + "name": "Rae Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Rae", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070829", + "tiger:tlid": "80300826", + "tiger:upload_uuid": "bulk_upload.pl-31e02009-f620-482f-9ce6-28e1cea72242", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5697854, + "bounds": { + "minlat": 40.8067069, + "minlon": -73.9107993, + "maxlat": 40.8077610, + "maxlon": -73.9102213 + }, + "nodes": [ + 42755218, + 8285355490, + 13809174862, + 42743458 + ], + "geometry": [ + { "lat": 40.8077610, "lon": -73.9102213 }, + { "lat": 40.8068259, "lon": -73.9107341 }, + { "lat": 40.8067831, "lon": -73.9107576 }, + { "lat": 40.8067069, "lon": -73.9107993 } + ], + "tags": { + "highway": "residential", + "name": "Concord Avenue", + "name:etymology:wikidata": "Q523240", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concord", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697912, + "bounds": { + "minlat": 40.8222745, + "minlon": -73.9083792, + "maxlat": 40.8238243, + "maxlon": -73.9077479 + }, + "nodes": [ + 42739751, + 9917683093, + 5482222740, + 5482222742, + 5199218717 + ], + "geometry": [ + { "lat": 40.8238243, "lon": -73.9077479 }, + { "lat": 40.8237204, "lon": -73.9077893 }, + { "lat": 40.8231923, "lon": -73.9080106 }, + { "lat": 40.8226930, "lon": -73.9082058 }, + { "lat": 40.8222745, "lon": -73.9083792 } + ], + "tags": { + "highway": "residential", + "name": "Eagle Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Eagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5697916, + "bounds": { + "minlat": 40.8778411, + "minlon": -73.9084513, + "maxlat": 40.8783047, + "maxlon": -73.9080206 + }, + "nodes": [ + 42746772, + 10868090803, + 42444009 + ], + "geometry": [ + { "lat": 40.8783047, "lon": -73.9080206 }, + { "lat": 40.8782121, "lon": -73.9081130 }, + { "lat": 40.8778411, "lon": -73.9084513 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "foot": "yes", + "highway": "residential", + "inline_skates": "yes", + "lane_markings": "yes", + "name": "Marble Hill Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Marble Hill", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5697941, + "bounds": { + "minlat": 40.8268420, + "minlon": -73.9162350, + "maxlat": 40.8278980, + "maxlon": -73.9156560 + }, + "nodes": [ + 42739705, + 8236160865, + 42756635, + 12038479069, + 42742409 + ], + "geometry": [ + { "lat": 40.8268420, "lon": -73.9162350 }, + { "lat": 40.8269194, "lon": -73.9161927 }, + { "lat": 40.8273500, "lon": -73.9159570 }, + { "lat": 40.8278446, "lon": -73.9156853 }, + { "lat": 40.8278980, "lon": -73.9156560 } + ], + "tags": { + "highway": "residential", + "name": "College Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "College", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5697943, + "bounds": { + "minlat": 40.8290063, + "minlon": -73.9155611, + "maxlat": 40.8350130, + "maxlon": -73.9120570 + }, + "nodes": [ + 42756645, + 12038440089, + 8187805327, + 12038440126, + 42756648, + 10647801102, + 12038478824, + 10647801089, + 7366626477, + 12038440348, + 42756651, + 12038440347, + 13031202588, + 42742441, + 7508466439, + 7508466438, + 13031247720, + 42756654 + ], + "geometry": [ + { "lat": 40.8290063, "lon": -73.9155611 }, + { "lat": 40.8290632, "lon": -73.9155289 }, + { "lat": 40.8301642, "lon": -73.9149069 }, + { "lat": 40.8302035, "lon": -73.9148846 }, + { "lat": 40.8302610, "lon": -73.9148520 }, + { "lat": 40.8303254, "lon": -73.9148144 }, + { "lat": 40.8308776, "lon": -73.9144915 }, + { "lat": 40.8311579, "lon": -73.9143276 }, + { "lat": 40.8312917, "lon": -73.9142494 }, + { "lat": 40.8321224, "lon": -73.9137638 }, + { "lat": 40.8322640, "lon": -73.9136810 }, + { "lat": 40.8323843, "lon": -73.9136096 }, + { "lat": 40.8333613, "lon": -73.9130293 }, + { "lat": 40.8334090, "lon": -73.9130010 }, + { "lat": 40.8334779, "lon": -73.9129604 }, + { "lat": 40.8339766, "lon": -73.9126669 }, + { "lat": 40.8349423, "lon": -73.9120988 }, + { "lat": 40.8350130, "lon": -73.9120570 } + ], + "tags": { + "highway": "residential", + "name": "College Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "College", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5697944, + "bounds": { + "minlat": 40.8152390, + "minlon": -73.9221979, + "maxlat": 40.8162200, + "maxlon": -73.9212450 + }, + "nodes": [ + 42756673, + 42745916, + 10033555152, + 12040837265, + 42756676 + ], + "geometry": [ + { "lat": 40.8152390, "lon": -73.9221979 }, + { "lat": 40.8155714, "lon": -73.9215340 }, + { "lat": 40.8161304, "lon": -73.9212849 }, + { "lat": 40.8161685, "lon": -73.9212679 }, + { "lat": 40.8162200, "lon": -73.9212450 } + ], + "tags": { + "highway": "residential", + "name": "College Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "College", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5697976, + "bounds": { + "minlat": 40.8299650, + "minlon": -73.9299692, + "maxlat": 40.8300642, + "maxlon": -73.9299337 + }, + "nodes": [ + 42735968, + 9166334391, + 9166334393, + 2965076633 + ], + "geometry": [ + { "lat": 40.8299650, "lon": -73.9299337 }, + { "lat": 40.8300242, "lon": -73.9299635 }, + { "lat": 40.8300468, "lon": -73.9299692 }, + { "lat": 40.8300642, "lon": -73.9299684 } + ], + "tags": { + "highway": "residential", + "name": "Woodycrest Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Woodycrest", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5697981, + "bounds": { + "minlat": 40.8082178, + "minlon": -73.9151868, + "maxlat": 40.8104087, + "maxlon": -73.9078327 + }, + "nodes": [ + 1931610637, + 1931610639, + 1931610635, + 5175586409, + 1104953194, + 5175586408, + 42757457, + 5175586405, + 42743537, + 10127019094, + 42757452, + 3637913051, + 3637913052, + 486819176, + 3637913053, + 486819174, + 42719422, + 10127019050, + 42733966 + ], + "geometry": [ + { "lat": 40.8082178, "lon": -73.9078327 }, + { "lat": 40.8084228, "lon": -73.9088449 }, + { "lat": 40.8086056, "lon": -73.9097793 }, + { "lat": 40.8087814, "lon": -73.9106128 }, + { "lat": 40.8088028, "lon": -73.9107123 }, + { "lat": 40.8088264, "lon": -73.9107896 }, + { "lat": 40.8090718, "lon": -73.9115917 }, + { "lat": 40.8093161, "lon": -73.9123710 }, + { "lat": 40.8093510, "lon": -73.9124822 }, + { "lat": 40.8093841, "lon": -73.9125726 }, + { "lat": 40.8096556, "lon": -73.9133146 }, + { "lat": 40.8097489, "lon": -73.9133065 }, + { "lat": 40.8098606, "lon": -73.9133307 }, + { "lat": 40.8099662, "lon": -73.9133816 }, + { "lat": 40.8100616, "lon": -73.9134728 }, + { "lat": 40.8101286, "lon": -73.9135908 }, + { "lat": 40.8102552, "lon": -73.9143397 }, + { "lat": 40.8103865, "lon": -73.9150692 }, + { "lat": 40.8104087, "lon": -73.9151868 } + ], + "tags": { + "alt_name": "Saint Mary's Street", + "highway": "residential", + "name": "East 143rd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5697989, + "bounds": { + "minlat": 40.8505822, + "minlon": -73.9065741, + "maxlat": 40.8508256, + "maxlon": -73.9053641 + }, + "nodes": [ + 2028328046, + 12739101048, + 10117403615, + 12739115647, + 42749462 + ], + "geometry": [ + { "lat": 40.8505822, "lon": -73.9053641 }, + { "lat": 40.8506005, "lon": -73.9054549 }, + { "lat": 40.8507994, "lon": -73.9064442 }, + { "lat": 40.8508068, "lon": -73.9064991 }, + { "lat": 40.8508256, "lon": -73.9065741 } + ], + "tags": { + "highway": "residential", + "name": "East 178th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "178th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 5698008, + "bounds": { + "minlat": 40.8447068, + "minlon": -73.9128493, + "maxlat": 40.8449672, + "maxlon": -73.9116970 + }, + "nodes": [ + 12089606493, + 13017674379, + 42733795, + 2408350742, + 12044638045, + 12044638046, + 2408350740, + 12044638044, + 2408350739 + ], + "geometry": [ + { "lat": 40.8449672, "lon": -73.9128493 }, + { "lat": 40.8447600, "lon": -73.9123459 }, + { "lat": 40.8447268, "lon": -73.9122647 }, + { "lat": 40.8447157, "lon": -73.9122322 }, + { "lat": 40.8447102, "lon": -73.9122071 }, + { "lat": 40.8447068, "lon": -73.9121764 }, + { "lat": 40.8447073, "lon": -73.9121479 }, + { "lat": 40.8447094, "lon": -73.9121173 }, + { "lat": 40.8447552, "lon": -73.9116970 } + ], + "tags": { + "highway": "residential", + "name": "East 174th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "174th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5698020, + "bounds": { + "minlat": 40.8773012, + "minlon": -73.9146469, + "maxlat": 40.8775145, + "maxlon": -73.9143661 + }, + "nodes": [ + 5588601602, + 1544847034, + 1544847064, + 1544847052, + 1544847122, + 1544847120, + 1544847035, + 5588601601, + 5588601600, + 5588601599, + 5588601598, + 1544847080, + 1544847098, + 11288880278, + 1544847083, + 1544847062, + 1544847111, + 5588601605, + 5588601604, + 5588601603, + 5588601602 + ], + "geometry": [ + { "lat": 40.8774611, "lon": -73.9146296 }, + { "lat": 40.8774274, "lon": -73.9146461 }, + { "lat": 40.8773915, "lon": -73.9146469 }, + { "lat": 40.8773574, "lon": -73.9146319 }, + { "lat": 40.8773290, "lon": -73.9146027 }, + { "lat": 40.8773096, "lon": -73.9145628 }, + { "lat": 40.8773012, "lon": -73.9145166 }, + { "lat": 40.8773045, "lon": -73.9144714 }, + { "lat": 40.8773184, "lon": -73.9144300 }, + { "lat": 40.8773415, "lon": -73.9143965 }, + { "lat": 40.8773715, "lon": -73.9143744 }, + { "lat": 40.8774052, "lon": -73.9143661 }, + { "lat": 40.8774392, "lon": -73.9143723 }, + { "lat": 40.8774502, "lon": -73.9143795 }, + { "lat": 40.8774699, "lon": -73.9143924 }, + { "lat": 40.8774942, "lon": -73.9144244 }, + { "lat": 40.8775096, "lon": -73.9144649 }, + { "lat": 40.8775145, "lon": -73.9145120 }, + { "lat": 40.8775073, "lon": -73.9145586 }, + { "lat": 40.8774888, "lon": -73.9145993 }, + { "lat": 40.8774611, "lon": -73.9146296 } + ], + "tags": { + "highway": "residential", + "name": "Tibbett Avenue", + "name:etymology:wikidata": "Q28186791", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tibbett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5698026, + "bounds": { + "minlat": 40.8519485, + "minlon": -73.9107743, + "maxlat": 40.8583502, + "maxlon": -73.9061293 + }, + "nodes": [ + 42758027, + 8174133684, + 13432561480, + 42758024, + 13432561481, + 13247486931, + 42743410, + 13247486924, + 8174133671, + 13247486946, + 42756811, + 13247486940, + 2794875043, + 2794875042, + 10093767470, + 42731693, + 12748250481, + 42743978, + 10116582620, + 2052618447, + 2794875040, + 2052618446, + 2794875039, + 9918211897, + 42758014 + ], + "geometry": [ + { "lat": 40.8583502, "lon": -73.9061293 }, + { "lat": 40.8577952, "lon": -73.9064520 }, + { "lat": 40.8577613, "lon": -73.9064723 }, + { "lat": 40.8576990, "lon": -73.9065110 }, + { "lat": 40.8576366, "lon": -73.9065461 }, + { "lat": 40.8571173, "lon": -73.9068657 }, + { "lat": 40.8570510, "lon": -73.9069060 }, + { "lat": 40.8569945, "lon": -73.9069404 }, + { "lat": 40.8565114, "lon": -73.9072338 }, + { "lat": 40.8564693, "lon": -73.9072593 }, + { "lat": 40.8564040, "lon": -73.9072990 }, + { "lat": 40.8563416, "lon": -73.9073416 }, + { "lat": 40.8561496, "lon": -73.9074725 }, + { "lat": 40.8559112, "lon": -73.9076662 }, + { "lat": 40.8552339, "lon": -73.9082797 }, + { "lat": 40.8551435, "lon": -73.9083615 }, + { "lat": 40.8540410, "lon": -73.9093636 }, + { "lat": 40.8539593, "lon": -73.9094457 }, + { "lat": 40.8528499, "lon": -73.9104620 }, + { "lat": 40.8527971, "lon": -73.9105111 }, + { "lat": 40.8526152, "lon": -73.9106296 }, + { "lat": 40.8523861, "lon": -73.9107260 }, + { "lat": 40.8521498, "lon": -73.9107743 }, + { "lat": 40.8520271, "lon": -73.9107635 }, + { "lat": 40.8519485, "lon": -73.9107566 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "name": "Grand Avenue", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 5698028, + "bounds": { + "minlat": 40.8468167, + "minlon": -73.9152670, + "maxlat": 40.8501245, + "maxlon": -73.9129680 + }, + "nodes": [ + 42758053, + 12046960779, + 12046960780, + 12046960782, + 12046960781, + 42758058, + 42758062, + 42744749, + 6701092180, + 6701092182, + 9918264453, + 42758066 + ], + "geometry": [ + { "lat": 40.8468167, "lon": -73.9152670 }, + { "lat": 40.8468220, "lon": -73.9152560 }, + { "lat": 40.8468289, "lon": -73.9152469 }, + { "lat": 40.8468372, "lon": -73.9152388 }, + { "lat": 40.8468467, "lon": -73.9152313 }, + { "lat": 40.8473134, "lon": -73.9148977 }, + { "lat": 40.8479665, "lon": -73.9144319 }, + { "lat": 40.8486108, "lon": -73.9139724 }, + { "lat": 40.8499796, "lon": -73.9129961 }, + { "lat": 40.8500140, "lon": -73.9129792 }, + { "lat": 40.8500442, "lon": -73.9129731 }, + { "lat": 40.8501245, "lon": -73.9129680 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5698057, + "bounds": { + "minlat": 40.8149164, + "minlon": -73.9084017, + "maxlat": 40.8151104, + "maxlon": -73.9074910 + }, + "nodes": [ + 42755247, + 8602649375, + 13809174736, + 42758618 + ], + "geometry": [ + { "lat": 40.8149164, "lon": -73.9074910 }, + { "lat": 40.8150800, "lon": -73.9082590 }, + { "lat": 40.8150926, "lon": -73.9083180 }, + { "lat": 40.8151104, "lon": -73.9084017 } + ], + "tags": { + "highway": "residential", + "name": "East 151st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "151st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5698059, + "bounds": { + "minlat": 40.8179467, + "minlon": -73.9240423, + "maxlat": 40.8192967, + "maxlon": -73.9188195 + }, + "nodes": [ + 42758635, + 8250477898, + 42735697, + 13703654695, + 8827329059, + 42750598, + 8827329061 + ], + "geometry": [ + { "lat": 40.8192967, "lon": -73.9240423 }, + { "lat": 40.8192725, "lon": -73.9239526 }, + { "lat": 40.8187960, "lon": -73.9221180 }, + { "lat": 40.8184810, "lon": -73.9208743 }, + { "lat": 40.8179933, "lon": -73.9189927 }, + { "lat": 40.8179670, "lon": -73.9188990 }, + { "lat": 40.8179467, "lon": -73.9188195 } + ], + "tags": { + "highway": "residential", + "name": "East 151st Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "151st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5698060, + "bounds": { + "minlat": 40.8228446, + "minlon": -73.9294345, + "maxlat": 40.8233128, + "maxlon": -73.9287579 + }, + "nodes": [ + 6378691543, + 6378691539, + 2799381773, + 2350236729, + 2350236733, + 13146557964, + 42758654 + ], + "geometry": [ + { "lat": 40.8233128, "lon": -73.9294345 }, + { "lat": 40.8232521, "lon": -73.9293301 }, + { "lat": 40.8232555, "lon": -73.9291722 }, + { "lat": 40.8232135, "lon": -73.9291152 }, + { "lat": 40.8229476, "lon": -73.9288533 }, + { "lat": 40.8229412, "lon": -73.9288474 }, + { "lat": 40.8228446, "lon": -73.9287579 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 5698089, + "bounds": { + "minlat": 40.8734051, + "minlon": -73.9067173, + "maxlat": 40.8765074, + "maxlon": -73.9061621 + }, + "nodes": [ + 42731542, + 10128431632, + 8347333309, + 7037961256, + 10044606693, + 7037961261, + 1396352303, + 1396352312, + 7694457138, + 2303340725, + 7496155997, + 13702916155, + 5706568831, + 5706568832 + ], + "geometry": [ + { "lat": 40.8734051, "lon": -73.9067173 }, + { "lat": 40.8735131, "lon": -73.9066769 }, + { "lat": 40.8735718, "lon": -73.9066534 }, + { "lat": 40.8738994, "lon": -73.9065278 }, + { "lat": 40.8740209, "lon": -73.9064819 }, + { "lat": 40.8745457, "lon": -73.9062839 }, + { "lat": 40.8748537, "lon": -73.9061677 }, + { "lat": 40.8749533, "lon": -73.9061621 }, + { "lat": 40.8754098, "lon": -73.9061936 }, + { "lat": 40.8758455, "lon": -73.9062237 }, + { "lat": 40.8759836, "lon": -73.9062333 }, + { "lat": 40.8762585, "lon": -73.9062524 }, + { "lat": 40.8764013, "lon": -73.9062624 }, + { "lat": 40.8765074, "lon": -73.9062697 } + ], + "tags": { + "highway": "residential", + "name": "Exterior Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Exterior", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5698090, + "bounds": { + "minlat": 40.8423624, + "minlon": -73.9293465, + "maxlat": 40.8451129, + "maxlon": -73.9277332 + }, + "nodes": [ + 42759142, + 9918293199, + 9918293200, + 9918293201, + 9918293202, + 9918293203, + 42759147, + 60920418, + 9918293204, + 9918293205, + 5543851168 + ], + "geometry": [ + { "lat": 40.8423624, "lon": -73.9293465 }, + { "lat": 40.8427569, "lon": -73.9291071 }, + { "lat": 40.8428774, "lon": -73.9290183 }, + { "lat": 40.8430581, "lon": -73.9288828 }, + { "lat": 40.8431729, "lon": -73.9287988 }, + { "lat": 40.8432748, "lon": -73.9287281 }, + { "lat": 40.8435467, "lon": -73.9285698 }, + { "lat": 40.8449533, "lon": -73.9277909 }, + { "lat": 40.8450184, "lon": -73.9277621 }, + { "lat": 40.8450647, "lon": -73.9277463 }, + { "lat": 40.8451129, "lon": -73.9277332 } + ], + "tags": { + "highway": "unclassified", + "name": "Exterior Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Exterior", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5698100, + "bounds": { + "minlat": 40.8815009, + "minlon": -73.9179524, + "maxlat": 40.8818740, + "maxlon": -73.9173760 + }, + "nodes": [ + 42759296, + 10130977113, + 10130977114, + 10130977115, + 42759298 + ], + "geometry": [ + { "lat": 40.8815009, "lon": -73.9173760 }, + { "lat": 40.8815304, "lon": -73.9174216 }, + { "lat": 40.8815548, "lon": -73.9174592 }, + { "lat": 40.8818296, "lon": -73.9178837 }, + { "lat": 40.8818740, "lon": -73.9179524 } + ], + "tags": { + "highway": "residential", + "name": "West 227th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "227th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5698101, + "bounds": { + "minlat": 40.8796100, + "minlon": -73.9170584, + "maxlat": 40.8812857, + "maxlon": -73.9144676 + }, + "nodes": [ + 42759307, + 7941613933, + 42759310, + 42750738, + 13716160181, + 13701208462, + 13041409055, + 11998094745, + 42759314 + ], + "geometry": [ + { "lat": 40.8796100, "lon": -73.9144676 }, + { "lat": 40.8796506, "lon": -73.9145358 }, + { "lat": 40.8801627, "lon": -73.9153445 }, + { "lat": 40.8808143, "lon": -73.9163157 }, + { "lat": 40.8808270, "lon": -73.9163357 }, + { "lat": 40.8809615, "lon": -73.9165472 }, + { "lat": 40.8812276, "lon": -73.9169667 }, + { "lat": 40.8812578, "lon": -73.9170143 }, + { "lat": 40.8812857, "lon": -73.9170584 } + ], + "tags": { + "highway": "residential", + "name": "West 227th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "227th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5698110, + "bounds": { + "minlat": 40.8357240, + "minlon": -73.9223269, + "maxlat": 40.8361348, + "maxlon": -73.9212850 + }, + "nodes": [ + 42736005, + 12163757017, + 12163757016, + 12163757015, + 12163757014, + 12163757013, + 8575396932, + 12163757001, + 13036543078, + 42759437 + ], + "geometry": [ + { "lat": 40.8361348, "lon": -73.9223269 }, + { "lat": 40.8361130, "lon": -73.9223063 }, + { "lat": 40.8360907, "lon": -73.9222804 }, + { "lat": 40.8360690, "lon": -73.9222522 }, + { "lat": 40.8360524, "lon": -73.9222237 }, + { "lat": 40.8360449, "lon": -73.9222011 }, + { "lat": 40.8360252, "lon": -73.9221562 }, + { "lat": 40.8360119, "lon": -73.9221177 }, + { "lat": 40.8357586, "lon": -73.9213850 }, + { "lat": 40.8357240, "lon": -73.9212850 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5698114, + "bounds": { + "minlat": 40.8087230, + "minlon": -73.9148312, + "maxlat": 40.8090540, + "maxlon": -73.9138840 + }, + "nodes": [ + 5308571790, + 42759546 + ], + "geometry": [ + { "lat": 40.8090540, "lon": -73.9148312 }, + { "lat": 40.8087230, "lon": -73.9138840 } + ], + "tags": { + "highway": "residential", + "name": "Oak Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Oak", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5698132, + "bounds": { + "minlat": 40.8420820, + "minlon": -73.9201070, + "maxlat": 40.8448936, + "maxlon": -73.9184208 + }, + "nodes": [ + 42751864, + 42759768, + 2780853411, + 12046910554, + 12046910553, + 8575396921, + 595757816 + ], + "geometry": [ + { "lat": 40.8420820, "lon": -73.9201070 }, + { "lat": 40.8433092, "lon": -73.9191871 }, + { "lat": 40.8441177, "lon": -73.9185810 }, + { "lat": 40.8441409, "lon": -73.9185649 }, + { "lat": 40.8441679, "lon": -73.9185514 }, + { "lat": 40.8441926, "lon": -73.9185441 }, + { "lat": 40.8448936, "lon": -73.9184208 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Jesup Avenue", + "name:etymology:wikidata": "Q713243", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jesup", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 5698145, + "bounds": { + "minlat": 40.8072558, + "minlon": -73.9125431, + "maxlat": 40.8090718, + "maxlon": -73.9115917 + }, + "nodes": [ + 42757457, + 5175586406, + 5487854683, + 7043106189, + 42760037, + 8285355511, + 13809174856, + 42743447 + ], + "geometry": [ + { "lat": 40.8090718, "lon": -73.9115917 }, + { "lat": 40.8090193, "lon": -73.9116195 }, + { "lat": 40.8086683, "lon": -73.9118053 }, + { "lat": 40.8086159, "lon": -73.9118330 }, + { "lat": 40.8083046, "lon": -73.9119852 }, + { "lat": 40.8073835, "lon": -73.9124767 }, + { "lat": 40.8073364, "lon": -73.9125012 }, + { "lat": 40.8072558, "lon": -73.9125431 } + ], + "tags": { + "highway": "residential", + "name": "Powers Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Powers", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698166, + "bounds": { + "minlat": 40.8159360, + "minlon": -73.9119420, + "maxlat": 40.8196950, + "maxlon": -73.9016020 + }, + "nodes": [ + 42760430, + 42756066, + 5482340566, + 42735080, + 42735021, + 42760438, + 3882472592, + 5333003133, + 42760441, + 7564324485, + 42760444, + 7144894083, + 13399400421, + 42760447, + 42760449, + 42760453, + 42760457, + 42735952 + ], + "geometry": [ + { "lat": 40.8160470, "lon": -73.9119420 }, + { "lat": 40.8159777, "lon": -73.9110349 }, + { "lat": 40.8159596, "lon": -73.9106956 }, + { "lat": 40.8159424, "lon": -73.9101334 }, + { "lat": 40.8159360, "lon": -73.9099100 }, + { "lat": 40.8159664, "lon": -73.9091237 }, + { "lat": 40.8160187, "lon": -73.9088748 }, + { "lat": 40.8161386, "lon": -73.9085289 }, + { "lat": 40.8163495, "lon": -73.9080413 }, + { "lat": 40.8170697, "lon": -73.9068360 }, + { "lat": 40.8171790, "lon": -73.9066500 }, + { "lat": 40.8174099, "lon": -73.9062361 }, + { "lat": 40.8178759, "lon": -73.9054011 }, + { "lat": 40.8179250, "lon": -73.9053130 }, + { "lat": 40.8180600, "lon": -73.9049990 }, + { "lat": 40.8187370, "lon": -73.9034700 }, + { "lat": 40.8189087, "lon": -73.9031140 }, + { "lat": 40.8196950, "lon": -73.9016020 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxheight": "11'2\"", + "name": "Westchester Avenue", + "name:etymology:wikidata": "Q17091379", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Westchester", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10459", + "tiger:zip_right": "10459", + "wikidata": "Q20979444", + "wikipedia": "en:Westchester Avenue" + } +}, +{ + "type": "way", + "id": 5698176, + "bounds": { + "minlat": 40.8482702, + "minlon": -73.9185150, + "maxlat": 40.8483813, + "maxlon": -73.9183700 + }, + "nodes": [ + 2907939239, + 2907939240 + ], + "geometry": [ + { "lat": 40.8483813, "lon": -73.9185150 }, + { "lat": 40.8482702, "lon": -73.9183700 } + ], + "tags": { + "highway": "residential", + "name": "Brandt Place", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brandt", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5698199, + "bounds": { + "minlat": 40.8234557, + "minlon": -73.9245299, + "maxlat": 40.8235044, + "maxlon": -73.9243938 + }, + "nodes": [ + 2408448920, + 42741420 + ], + "geometry": [ + { "lat": 40.8234557, "lon": -73.9243938 }, + { "lat": 40.8235044, "lon": -73.9245299 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 156th Street", + "name_1": "Thurman Munson Way", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "156th", + "tiger:name_base_1": "Thurman Munson", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:name_type_1": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5698201, + "bounds": { + "minlat": 40.8226558, + "minlon": -73.9230730, + "maxlat": 40.8236240, + "maxlon": -73.9200723 + }, + "nodes": [ + 42760984, + 13036674008, + 7559717914, + 9910723139, + 12038479015, + 42763582 + ], + "geometry": [ + { "lat": 40.8236240, "lon": -73.9230730 }, + { "lat": 40.8235920, "lon": -73.9229694 }, + { "lat": 40.8228518, "lon": -73.9206797 }, + { "lat": 40.8227126, "lon": -73.9202484 }, + { "lat": 40.8226913, "lon": -73.9201825 }, + { "lat": 40.8226558, "lon": -73.9200723 } + ], + "tags": { + "alt_name": "Thurman Munson Way", + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 156th Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5698204, + "bounds": { + "minlat": 40.8036775, + "minlon": -73.9220753, + "maxlat": 40.8043498, + "maxlon": -73.9215827 + }, + "nodes": [ + 42760999, + 9908650939, + 9908650940, + 9908650938, + 42753240 + ], + "geometry": [ + { "lat": 40.8036775, "lon": -73.9220753 }, + { "lat": 40.8037408, "lon": -73.9220266 }, + { "lat": 40.8037905, "lon": -73.9219911 }, + { "lat": 40.8042460, "lon": -73.9216569 }, + { "lat": 40.8043498, "lon": -73.9215827 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Brook Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698215, + "bounds": { + "minlat": 40.8048248, + "minlon": -73.9262993, + "maxlat": 40.8059847, + "maxlon": -73.9250833 + }, + "nodes": [ + 2926115549, + 9163759237, + 9163759238, + 5978525037, + 9163759241, + 9163759242, + 595801165, + 12522123928, + 9163759247, + 9163759246, + 7369741444 + ], + "geometry": [ + { "lat": 40.8048248, "lon": -73.9262993 }, + { "lat": 40.8049713, "lon": -73.9260436 }, + { "lat": 40.8050415, "lon": -73.9259430 }, + { "lat": 40.8051274, "lon": -73.9258306 }, + { "lat": 40.8052354, "lon": -73.9257067 }, + { "lat": 40.8053140, "lon": -73.9256196 }, + { "lat": 40.8053988, "lon": -73.9255379 }, + { "lat": 40.8054736, "lon": -73.9254706 }, + { "lat": 40.8055531, "lon": -73.9254031 }, + { "lat": 40.8056451, "lon": -73.9253323 }, + { "lat": 40.8059847, "lon": -73.9250833 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Willis Avenue Bridge", + "destination:street": "Willis Avenue", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "30 mph", + "name": "Willis Avenue Bridge", + "oneway": "yes", + "sidewalk": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q2581529", + "wikipedia": "en:Willis Avenue Bridge" + } +}, +{ + "type": "way", + "id": 5698217, + "bounds": { + "minlat": 40.8160969, + "minlon": -73.9177346, + "maxlat": 40.8161478, + "maxlon": -73.9175816 + }, + "nodes": [ + 42761265, + 6415815530, + 42761259 + ], + "geometry": [ + { "lat": 40.8160969, "lon": -73.9175816 }, + { "lat": 40.8161359, "lon": -73.9176905 }, + { "lat": 40.8161478, "lon": -73.9177346 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698219, + "bounds": { + "minlat": 40.8476181, + "minlon": -73.9212809, + "maxlat": 40.8486469, + "maxlon": -73.9192853 + }, + "nodes": [ + 12055955032, + 12055955035, + 42761302, + 12055955044, + 12055955048, + 12055955047, + 2907939252, + 42761300 + ], + "geometry": [ + { "lat": 40.8486469, "lon": -73.9212809 }, + { "lat": 40.8482710, "lon": -73.9204814 }, + { "lat": 40.8478959, "lon": -73.9196836 }, + { "lat": 40.8478375, "lon": -73.9195592 }, + { "lat": 40.8478078, "lon": -73.9195052 }, + { "lat": 40.8477784, "lon": -73.9194607 }, + { "lat": 40.8477419, "lon": -73.9194174 }, + { "lat": 40.8476181, "lon": -73.9192853 } + ], + "tags": { + "highway": "residential", + "name": "West 175th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "175th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5698220, + "bounds": { + "minlat": 40.8479665, + "minlon": -73.9161740, + "maxlat": 40.8482890, + "maxlon": -73.9144319 + }, + "nodes": [ + 42758062, + 8285583706, + 8285583681, + 13181365287, + 42761317 + ], + "geometry": [ + { "lat": 40.8479665, "lon": -73.9144319 }, + { "lat": 40.8479967, "lon": -73.9146016 }, + { "lat": 40.8482581, "lon": -73.9160079 }, + { "lat": 40.8482637, "lon": -73.9160377 }, + { "lat": 40.8482890, "lon": -73.9161740 } + ], + "tags": { + "highway": "residential", + "name": "West 175th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "175th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5698301, + "bounds": { + "minlat": 40.8099370, + "minlon": -73.9100462, + "maxlat": 40.8105249, + "maxlon": -73.9072600 + }, + "nodes": [ + 42762525, + 8575373966, + 42755231, + 5859955153, + 42762529, + 5859955154, + 13247432508, + 42762533 + ], + "geometry": [ + { "lat": 40.8105249, "lon": -73.9100462 }, + { "lat": 40.8104943, "lon": -73.9098980 }, + { "lat": 40.8103364, "lon": -73.9091330 }, + { "lat": 40.8101636, "lon": -73.9083241 }, + { "lat": 40.8101410, "lon": -73.9082180 }, + { "lat": 40.8101178, "lon": -73.9081089 }, + { "lat": 40.8099640, "lon": -73.9073868 }, + { "lat": 40.8099370, "lon": -73.9072600 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "name": "East 145th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "145th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5698303, + "bounds": { + "minlat": 40.8116510, + "minlon": -73.9211913, + "maxlat": 40.8141852, + "maxlon": -73.9144740 + }, + "nodes": [ + 42762558, + 12650993292, + 7238545827, + 9908651000, + 42761050, + 9908650999, + 9908651007, + 9908651008, + 2912071218, + 9908621401, + 42761249, + 9908621404, + 5482371868, + 8571884295, + 11217140024, + 42762551 + ], + "geometry": [ + { "lat": 40.8116510, "lon": -73.9144740 }, + { "lat": 40.8116814, "lon": -73.9145658 }, + { "lat": 40.8119536, "lon": -73.9153891 }, + { "lat": 40.8122736, "lon": -73.9163628 }, + { "lat": 40.8123095, "lon": -73.9164705 }, + { "lat": 40.8123443, "lon": -73.9165775 }, + { "lat": 40.8127795, "lon": -73.9178510 }, + { "lat": 40.8128221, "lon": -73.9179754 }, + { "lat": 40.8128757, "lon": -73.9181193 }, + { "lat": 40.8134699, "lon": -73.9195392 }, + { "lat": 40.8135171, "lon": -73.9196479 }, + { "lat": 40.8135763, "lon": -73.9197878 }, + { "lat": 40.8136745, "lon": -73.9200301 }, + { "lat": 40.8138242, "lon": -73.9203903 }, + { "lat": 40.8141372, "lon": -73.9210851 }, + { "lat": 40.8141852, "lon": -73.9211913 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 145th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "145th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5698316, + "bounds": { + "minlat": 40.8458734, + "minlon": -73.9131581, + "maxlat": 40.8465803, + "maxlon": -73.9114477 + }, + "nodes": [ + 42736338, + 42748532, + 13038921075, + 42733799 + ], + "geometry": [ + { "lat": 40.8465803, "lon": -73.9131581 }, + { "lat": 40.8462155, "lon": -73.9122687 }, + { "lat": 40.8459004, "lon": -73.9115125 }, + { "lat": 40.8458734, "lon": -73.9114477 } + ], + "tags": { + "highway": "residential", + "name": "Clifford Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Clifford", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698319, + "bounds": { + "minlat": 40.8266950, + "minlon": -73.9076470, + "maxlat": 40.8303464, + "maxlon": -73.9034999 + }, + "nodes": [ + 42762856, + 13247238238, + 7560880424, + 5482222810, + 5482222806, + 9520836611, + 42762858, + 9520836613, + 13625142394, + 42759482, + 13247222285, + 8184221159, + 5487859604, + 2329063247, + 13247222209, + 42742476 + ], + "geometry": [ + { "lat": 40.8266950, "lon": -73.9076470 }, + { "lat": 40.8268381, "lon": -73.9074769 }, + { "lat": 40.8270005, "lon": -73.9072840 }, + { "lat": 40.8270121, "lon": -73.9072702 }, + { "lat": 40.8275350, "lon": -73.9066489 }, + { "lat": 40.8279739, "lon": -73.9061274 }, + { "lat": 40.8280230, "lon": -73.9060690 }, + { "lat": 40.8280746, "lon": -73.9060101 }, + { "lat": 40.8288956, "lon": -73.9050910 }, + { "lat": 40.8289472, "lon": -73.9050333 }, + { "lat": 40.8289904, "lon": -73.9049821 }, + { "lat": 40.8295102, "lon": -73.9043662 }, + { "lat": 40.8295503, "lon": -73.9043170 }, + { "lat": 40.8302060, "lon": -73.9035926 }, + { "lat": 40.8302444, "lon": -73.9035673 }, + { "lat": 40.8303464, "lon": -73.9034999 } + ], + "tags": { + "highway": "residential", + "name": "Franklin Avenue", + "name:etymology:wikidata": "Q34969", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Franklin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5698340, + "bounds": { + "minlat": 40.8321450, + "minlon": -73.9302140, + "maxlat": 40.8331870, + "maxlon": -73.9272850 + }, + "nodes": [ + 42763266, + 13809338815, + 8285603935, + 13809338814, + 42757294, + 13809338812, + 8285601004, + 42751972, + 13809338809, + 42734276, + 13809338807, + 8285603917, + 13809338811, + 42737572 + ], + "geometry": [ + { "lat": 40.8321450, "lon": -73.9272850 }, + { "lat": 40.8321787, "lon": -73.9273621 }, + { "lat": 40.8324641, "lon": -73.9280145 }, + { "lat": 40.8324736, "lon": -73.9280361 }, + { "lat": 40.8325027, "lon": -73.9281027 }, + { "lat": 40.8325320, "lon": -73.9281912 }, + { "lat": 40.8325508, "lon": -73.9282482 }, + { "lat": 40.8327160, "lon": -73.9287480 }, + { "lat": 40.8328918, "lon": -73.9293025 }, + { "lat": 40.8329180, "lon": -73.9293850 }, + { "lat": 40.8329505, "lon": -73.9294853 }, + { "lat": 40.8331586, "lon": -73.9301265 }, + { "lat": 40.8331690, "lon": -73.9301585 }, + { "lat": 40.8331870, "lon": -73.9302140 } + ], + "tags": { + "highway": "residential", + "name": "West 164th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "164th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5698354, + "bounds": { + "minlat": 40.8525877, + "minlon": -73.9215266, + "maxlat": 40.8535741, + "maxlon": -73.9205959 + }, + "nodes": [ + 42745481, + 9918264513, + 12057670859, + 9918264514, + 9918291019 + ], + "geometry": [ + { "lat": 40.8525877, "lon": -73.9215266 }, + { "lat": 40.8526607, "lon": -73.9214570 }, + { "lat": 40.8526892, "lon": -73.9214308 }, + { "lat": 40.8526933, "lon": -73.9214270 }, + { "lat": 40.8535741, "lon": -73.9205959 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Matthewson Road", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Matthewson", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698358, + "bounds": { + "minlat": 40.8225187, + "minlon": -73.9201497, + "maxlat": 40.8226558, + "maxlon": -73.9200723 + }, + "nodes": [ + 42735719, + 42763582 + ], + "geometry": [ + { "lat": 40.8225187, "lon": -73.9201497 }, + { "lat": 40.8226558, "lon": -73.9200723 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Concourse Village East", + "name:etymology:wikidata": "Q122566725", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5698360, + "bounds": { + "minlat": 40.8383760, + "minlon": -73.9107240, + "maxlat": 40.8389980, + "maxlon": -73.9089100 + }, + "nodes": [ + 42735864, + 13036453982, + 10126901699, + 13036453997, + 42756660, + 10126901697, + 10126901698, + 8454214968, + 10126901700, + 42763639 + ], + "geometry": [ + { "lat": 40.8389980, "lon": -73.9107240 }, + { "lat": 40.8389655, "lon": -73.9106283 }, + { "lat": 40.8387473, "lon": -73.9099936 }, + { "lat": 40.8387395, "lon": -73.9099711 }, + { "lat": 40.8387090, "lon": -73.9098820 }, + { "lat": 40.8386806, "lon": -73.9097994 }, + { "lat": 40.8386650, "lon": -73.9097534 }, + { "lat": 40.8384154, "lon": -73.9090251 }, + { "lat": 40.8384019, "lon": -73.9089857 }, + { "lat": 40.8383760, "lon": -73.9089100 } + ], + "tags": { + "highway": "residential", + "name": "East 171st Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "171st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5698362, + "bounds": { + "minlat": 40.8398712, + "minlon": -73.9168920, + "maxlat": 40.8413470, + "maxlon": -73.9133212 + }, + "nodes": [ + 42736356, + 13036990055, + 13036990078, + 42748512, + 13036990071, + 13017732180, + 42733778, + 13017732193, + 13037025598, + 42763650, + 13037025594, + 13535833504, + 2408370745, + 2408355535 + ], + "geometry": [ + { "lat": 40.8413470, "lon": -73.9168920 }, + { "lat": 40.8412915, "lon": -73.9167600 }, + { "lat": 40.8410100, "lon": -73.9160904 }, + { "lat": 40.8409739, "lon": -73.9160039 }, + { "lat": 40.8409430, "lon": -73.9159289 }, + { "lat": 40.8406647, "lon": -73.9152541 }, + { "lat": 40.8406375, "lon": -73.9151881 }, + { "lat": 40.8406066, "lon": -73.9151132 }, + { "lat": 40.8403289, "lon": -73.9144403 }, + { "lat": 40.8402920, "lon": -73.9143510 }, + { "lat": 40.8402612, "lon": -73.9142758 }, + { "lat": 40.8399289, "lon": -73.9134635 }, + { "lat": 40.8399029, "lon": -73.9133994 }, + { "lat": 40.8398712, "lon": -73.9133212 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "East 171st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "171st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5698383, + "bounds": { + "minlat": 40.8374369, + "minlon": -73.9218540, + "maxlat": 40.8384458, + "maxlon": -73.9203874 + }, + "nodes": [ + 42736018, + 3163952834, + 42740192, + 42763862, + 2912071069, + 10245831933, + 12163756841, + 2912071068 + ], + "geometry": [ + { "lat": 40.8374369, "lon": -73.9203874 }, + { "lat": 40.8375110, "lon": -73.9204719 }, + { "lat": 40.8379990, "lon": -73.9210290 }, + { "lat": 40.8381560, "lon": -73.9211930 }, + { "lat": 40.8382045, "lon": -73.9212707 }, + { "lat": 40.8383420, "lon": -73.9216045 }, + { "lat": 40.8383865, "lon": -73.9217115 }, + { "lat": 40.8384458, "lon": -73.9218540 } + ], + "tags": { + "highway": "residential", + "name": "West 169th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5698385, + "bounds": { + "minlat": 40.8389086, + "minlon": -73.9247820, + "maxlat": 40.8401040, + "maxlon": -73.9216852 + }, + "nodes": [ + 42745194, + 12163756863, + 12163756862, + 13249079919, + 42734995, + 13249079917, + 13249061698, + 42751988, + 8285558501, + 13703415697, + 42763869 + ], + "geometry": [ + { "lat": 40.8389086, "lon": -73.9216852 }, + { "lat": 40.8389567, "lon": -73.9218012 }, + { "lat": 40.8389790, "lon": -73.9218550 }, + { "lat": 40.8392388, "lon": -73.9224813 }, + { "lat": 40.8392710, "lon": -73.9225590 }, + { "lat": 40.8393090, "lon": -73.9226507 }, + { "lat": 40.8397970, "lon": -73.9238280 }, + { "lat": 40.8398310, "lon": -73.9239100 }, + { "lat": 40.8399991, "lon": -73.9243060 }, + { "lat": 40.8400262, "lon": -73.9244292 }, + { "lat": 40.8401040, "lon": -73.9247820 } + ], + "tags": { + "highway": "residential", + "name": "West 169th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698423, + "bounds": { + "minlat": 40.8044804, + "minlon": -73.9129855, + "maxlat": 40.8048440, + "maxlon": -73.9127950 + }, + "nodes": [ + 42764615, + 13003675175, + 9156970112, + 7164216231, + 13003835726, + 42753392 + ], + "geometry": [ + { "lat": 40.8048440, "lon": -73.9127950 }, + { "lat": 40.8047595, "lon": -73.9128451 }, + { "lat": 40.8047357, "lon": -73.9128593 }, + { "lat": 40.8046278, "lon": -73.9129180 }, + { "lat": 40.8045777, "lon": -73.9129410 }, + { "lat": 40.8044804, "lon": -73.9129855 } + ], + "tags": { + "highway": "residential", + "name": "Jackson Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jackson", + "tiger:name_type": "Ave", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5698427, + "bounds": { + "minlat": 40.8183400, + "minlon": -73.9069970, + "maxlat": 40.8215323, + "maxlon": -73.9056694 + }, + "nodes": [ + 42760913, + 8602600484, + 42764670, + 8454365550, + 13625080435, + 42764673, + 13625080432, + 8454365541, + 42748206 + ], + "geometry": [ + { "lat": 40.8183400, "lon": -73.9069970 }, + { "lat": 40.8195938, "lon": -73.9064757 }, + { "lat": 40.8196949, "lon": -73.9064337 }, + { "lat": 40.8206659, "lon": -73.9060340 }, + { "lat": 40.8206987, "lon": -73.9060205 }, + { "lat": 40.8207504, "lon": -73.9059992 }, + { "lat": 40.8208127, "lon": -73.9059729 }, + { "lat": 40.8214463, "lon": -73.9057057 }, + { "lat": 40.8215323, "lon": -73.9056694 } + ], + "tags": { + "highway": "residential", + "name": "Jackson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jackson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5698436, + "bounds": { + "minlat": 40.8016693, + "minlon": -73.9156026, + "maxlat": 40.8026748, + "maxlon": -73.9132303 + }, + "nodes": [ + 42752933, + 9908642206, + 8285355516, + 7138751941, + 42750278 + ], + "geometry": [ + { "lat": 40.8026748, "lon": -73.9156026 }, + { "lat": 40.8026427, "lon": -73.9155268 }, + { "lat": 40.8026211, "lon": -73.9154759 }, + { "lat": 40.8017956, "lon": -73.9135295 }, + { "lat": 40.8016693, "lon": -73.9132303 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 134th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "134th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5698437, + "bounds": { + "minlat": 40.8089453, + "minlon": -73.9307130, + "maxlat": 40.8093140, + "maxlon": -73.9302259 + }, + "nodes": [ + 42764987, + 7591586309, + 11882279790, + 595801159 + ], + "geometry": [ + { "lat": 40.8093140, "lon": -73.9307130 }, + { "lat": 40.8092096, "lon": -73.9305746 }, + { "lat": 40.8089952, "lon": -73.9302917 }, + { "lat": 40.8089453, "lon": -73.9302259 } + ], + "tags": { + "highway": "residential", + "name": "East 134th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "134th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698467, + "bounds": { + "minlat": 40.8402920, + "minlon": -73.9143510, + "maxlat": 40.8412830, + "maxlon": -73.9136460 + }, + "nodes": [ + 42763650, + 8250562655, + 10034673503, + 10117419122, + 8250562652, + 42748462 + ], + "geometry": [ + { "lat": 40.8402920, "lon": -73.9143510 }, + { "lat": 40.8403584, "lon": -73.9143041 }, + { "lat": 40.8403896, "lon": -73.9142816 }, + { "lat": 40.8411907, "lon": -73.9137117 }, + { "lat": 40.8412280, "lon": -73.9136849 }, + { "lat": 40.8412830, "lon": -73.9136460 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Wythe Place", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5698472, + "bounds": { + "minlat": 40.8392330, + "minlon": -73.9264590, + "maxlat": 40.8427575, + "maxlon": -73.9247909 + }, + "nodes": [ + 42734294, + 13809338869, + 42765666, + 7046208531, + 42763875, + 13564503776, + 8285558492, + 13564503743, + 42765671, + 13564503746, + 8575396918, + 13564503730, + 42741647 + ], + "geometry": [ + { "lat": 40.8392330, "lon": -73.9257800 }, + { "lat": 40.8392602, "lon": -73.9258624 }, + { "lat": 40.8394000, "lon": -73.9262870 }, + { "lat": 40.8397932, "lon": -73.9263738 }, + { "lat": 40.8401790, "lon": -73.9264590 }, + { "lat": 40.8402569, "lon": -73.9264115 }, + { "lat": 40.8416685, "lon": -73.9255496 }, + { "lat": 40.8417081, "lon": -73.9255254 }, + { "lat": 40.8417710, "lon": -73.9254870 }, + { "lat": 40.8418352, "lon": -73.9254415 }, + { "lat": 40.8426500, "lon": -73.9248634 }, + { "lat": 40.8426926, "lon": -73.9248346 }, + { "lat": 40.8427575, "lon": -73.9247909 } + ], + "tags": { + "highway": "residential", + "name": "Merriam Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Merriam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698474, + "bounds": { + "minlat": 40.8513140, + "minlon": -73.9183260, + "maxlat": 40.8515430, + "maxlon": -73.9172750 + }, + "nodes": [ + 42731822, + 13036593829, + 8285583708, + 13036593825, + 42745018 + ], + "geometry": [ + { "lat": 40.8513140, "lon": -73.9172750 }, + { "lat": 40.8513367, "lon": -73.9173918 }, + { "lat": 40.8515216, "lon": -73.9182277 }, + { "lat": 40.8515306, "lon": -73.9182734 }, + { "lat": 40.8515430, "lon": -73.9183260 } + ], + "tags": { + "highway": "residential", + "name": "Popham Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Popham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_left_1": "10453", + "tiger:zip_left_2": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5698475, + "bounds": { + "minlat": 40.8051105, + "minlon": -73.9114740, + "maxlat": 40.8051645, + "maxlon": -73.9113905 + }, + "nodes": [ + 42753400, + 9156979718, + 596271051 + ], + "geometry": [ + { "lat": 40.8051105, "lon": -73.9113905 }, + { "lat": 40.8051415, "lon": -73.9114356 }, + { "lat": 40.8051645, "lon": -73.9114740 } + ], + "tags": { + "highway": "residential", + "name": "East 139th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "139th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5698476, + "bounds": { + "minlat": 40.8035297, + "minlon": -73.9107910, + "maxlat": 40.8048828, + "maxlon": -73.9078783 + }, + "nodes": [ + 42752942, + 13017430220, + 988638751, + 9910669584, + 9910669583, + 5859955122, + 9910669577 + ], + "geometry": [ + { "lat": 40.8048828, "lon": -73.9107910 }, + { "lat": 40.8048437, "lon": -73.9106989 }, + { "lat": 40.8040637, "lon": -73.9088239 }, + { "lat": 40.8039988, "lon": -73.9086814 }, + { "lat": 40.8039489, "lon": -73.9085859 }, + { "lat": 40.8035508, "lon": -73.9079143 }, + { "lat": 40.8035297, "lon": -73.9078783 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 139th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "139th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5698549, + "bounds": { + "minlat": 40.8088950, + "minlon": -73.9067076, + "maxlat": 40.8115200, + "maxlon": -73.9034432 + }, + "nodes": [ + 42766727, + 8575187642, + 42762538, + 42762541, + 42766744, + 8575187643, + 7042955017, + 9917835122, + 8575187637, + 42766747 + ], + "geometry": [ + { "lat": 40.8088950, "lon": -73.9067076 }, + { "lat": 40.8089979, "lon": -73.9066705 }, + { "lat": 40.8095811, "lon": -73.9064598 }, + { "lat": 40.8097190, "lon": -73.9062520 }, + { "lat": 40.8104974, "lon": -73.9050784 }, + { "lat": 40.8110375, "lon": -73.9042377 }, + { "lat": 40.8111896, "lon": -73.9040009 }, + { "lat": 40.8114448, "lon": -73.9036313 }, + { "lat": 40.8114766, "lon": -73.9035852 }, + { "lat": 40.8115200, "lon": -73.9034432 } + ], + "tags": { + "highway": "residential", + "name": "Timpson Place", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Timpson", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5698563, + "bounds": { + "minlat": 40.8063957, + "minlon": -73.9085969, + "maxlat": 40.8071509, + "maxlon": -73.9082144 + }, + "nodes": [ + 42753407, + 12537080377, + 9156979725, + 9156979727, + 9156979726, + 9156979728, + 42766929 + ], + "geometry": [ + { "lat": 40.8063957, "lon": -73.9085969 }, + { "lat": 40.8066204, "lon": -73.9084542 }, + { "lat": 40.8066896, "lon": -73.9084102 }, + { "lat": 40.8067379, "lon": -73.9083840 }, + { "lat": 40.8067944, "lon": -73.9083579 }, + { "lat": 40.8069831, "lon": -73.9082948 }, + { "lat": 40.8071509, "lon": -73.9082144 } + ], + "tags": { + "highway": "secondary", + "name": "Southern Boulevard", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Southern", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10458", + "tiger:zip_right": "10460", + "wikidata": "Q14707315", + "wikipedia": "en:Southern Boulevard (Bronx)" + } +}, +{ + "type": "way", + "id": 5698564, + "bounds": { + "minlat": 40.8297020, + "minlon": -73.9194797, + "maxlat": 40.8304788, + "maxlon": -73.9193130 + }, + "nodes": [ + 11118481022, + 11118481027, + 13017154382, + 2912071206, + 2912071208, + 2912071207, + 2912071209, + 8187805336, + 2912071205, + 12697054971, + 42742392 + ], + "geometry": [ + { "lat": 40.8304788, "lon": -73.9194625 }, + { "lat": 40.8304387, "lon": -73.9194669 }, + { "lat": 40.8304119, "lon": -73.9194688 }, + { "lat": 40.8304078, "lon": -73.9194690 }, + { "lat": 40.8302599, "lon": -73.9194797 }, + { "lat": 40.8301057, "lon": -73.9194737 }, + { "lat": 40.8299550, "lon": -73.9194356 }, + { "lat": 40.8298490, "lon": -73.9193927 }, + { "lat": 40.8298107, "lon": -73.9193772 }, + { "lat": 40.8297814, "lon": -73.9193631 }, + { "lat": 40.8297020, "lon": -73.9193130 } + ], + "tags": { + "highway": "residential", + "name": "Carroll Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Carroll", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5698569, + "bounds": { + "minlat": 40.8787273, + "minlon": -73.9225771, + "maxlat": 40.8795340, + "maxlon": -73.9197795 + }, + "nodes": [ + 42767164, + 2520101865, + 1545167941, + 1545168091, + 886041646, + 886041674, + 1545168053, + 42750158, + 1545168021, + 2520140320, + 42767166, + 886041675, + 886041676, + 886041678, + 886041680, + 1545167976, + 886041682, + 1545167955, + 1545167949, + 1545168022, + 886041685, + 886041687, + 886041689, + 886041691, + 1545168028, + 886041692, + 10132643446, + 886041650 + ], + "geometry": [ + { "lat": 40.8795254, "lon": -73.9225771 }, + { "lat": 40.8795340, "lon": -73.9225276 }, + { "lat": 40.8795299, "lon": -73.9224454 }, + { "lat": 40.8795136, "lon": -73.9223193 }, + { "lat": 40.8794666, "lon": -73.9220317 }, + { "lat": 40.8794361, "lon": -73.9219001 }, + { "lat": 40.8793939, "lon": -73.9217475 }, + { "lat": 40.8793360, "lon": -73.9216000 }, + { "lat": 40.8792961, "lon": -73.9215144 }, + { "lat": 40.8792724, "lon": -73.9214785 }, + { "lat": 40.8792198, "lon": -73.9213986 }, + { "lat": 40.8791723, "lon": -73.9213367 }, + { "lat": 40.8791112, "lon": -73.9212427 }, + { "lat": 40.8790726, "lon": -73.9211406 }, + { "lat": 40.8790543, "lon": -73.9210238 }, + { "lat": 40.8790540, "lon": -73.9209072 }, + { "lat": 40.8790751, "lon": -73.9207931 }, + { "lat": 40.8791085, "lon": -73.9207034 }, + { "lat": 40.8791479, "lon": -73.9206111 }, + { "lat": 40.8791552, "lon": -73.9205344 }, + { "lat": 40.8791353, "lon": -73.9204419 }, + { "lat": 40.8790988, "lon": -73.9203728 }, + { "lat": 40.8789507, "lon": -73.9201796 }, + { "lat": 40.8788721, "lon": -73.9200954 }, + { "lat": 40.8788129, "lon": -73.9200526 }, + { "lat": 40.8787273, "lon": -73.9200047 }, + { "lat": 40.8787610, "lon": -73.9199054 }, + { "lat": 40.8788038, "lon": -73.9197795 } + ], + "tags": { + "highway": "residential", + "name": "Edsall Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edsall", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698606, + "bounds": { + "minlat": 40.8267504, + "minlon": -73.9294723, + "maxlat": 40.8281154, + "maxlon": -73.9275082 + }, + "nodes": [ + 1932727598, + 2609933927, + 2609933919, + 9910769997, + 9910769998, + 2609933926, + 2609876393, + 42767691, + 2609933937, + 2609933947, + 2609876414, + 2609876440, + 2609933965, + 2609933967, + 13000876627 + ], + "geometry": [ + { "lat": 40.8267504, "lon": -73.9294723 }, + { "lat": 40.8267636, "lon": -73.9294429 }, + { "lat": 40.8268093, "lon": -73.9293851 }, + { "lat": 40.8268703, "lon": -73.9293349 }, + { "lat": 40.8269208, "lon": -73.9293053 }, + { "lat": 40.8270009, "lon": -73.9292619 }, + { "lat": 40.8272240, "lon": -73.9291338 }, + { "lat": 40.8272921, "lon": -73.9290924 }, + { "lat": 40.8273542, "lon": -73.9289364 }, + { "lat": 40.8274681, "lon": -73.9286951 }, + { "lat": 40.8276684, "lon": -73.9282747 }, + { "lat": 40.8277793, "lon": -73.9280483 }, + { "lat": 40.8278202, "lon": -73.9279559 }, + { "lat": 40.8279650, "lon": -73.9276520 }, + { "lat": 40.8281154, "lon": -73.9275082 } + ], + "tags": { + "highway": "pedestrian", + "name": "Ruppert Place", + "name:etymology:wikidata": "Q6119204", + "surface": "paved", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ruppert", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698607, + "bounds": { + "minlat": 40.8210250, + "minlon": -73.9246129, + "maxlat": 40.8238254, + "maxlon": -73.9229534 + }, + "nodes": [ + 42749741, + 13703623417, + 13703605961, + 13547277469, + 13547352319, + 42760978, + 13547352318, + 13036674003, + 42760984, + 13036674011, + 7042954911, + 13547349167 + ], + "geometry": [ + { "lat": 40.8210250, "lon": -73.9246129 }, + { "lat": 40.8217194, "lon": -73.9241974 }, + { "lat": 40.8222407, "lon": -73.9238854 }, + { "lat": 40.8230067, "lon": -73.9234269 }, + { "lat": 40.8230443, "lon": -73.9234044 }, + { "lat": 40.8231000, "lon": -73.9233710 }, + { "lat": 40.8231599, "lon": -73.9233369 }, + { "lat": 40.8235710, "lon": -73.9231031 }, + { "lat": 40.8236240, "lon": -73.9230730 }, + { "lat": 40.8236720, "lon": -73.9230445 }, + { "lat": 40.8237368, "lon": -73.9230060 }, + { "lat": 40.8238254, "lon": -73.9229534 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Concourse Village West", + "name:etymology:wikidata": "Q122566725", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concourse Village", + "tiger:name_direction_suffix": "W", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5698612, + "bounds": { + "minlat": 40.8663682, + "minlon": -73.9084685, + "maxlat": 40.8731484, + "maxlon": -73.9057278 + }, + "nodes": [ + 13252243857, + 1396352600, + 1396352592, + 42719556, + 42719644, + 10564550160, + 10564550163, + 7043045077, + 42737965, + 13701263165, + 7899133112, + 7899133092, + 42743369 + ], + "geometry": [ + { "lat": 40.8663682, "lon": -73.9084674 }, + { "lat": 40.8665810, "lon": -73.9084685 }, + { "lat": 40.8669944, "lon": -73.9084146 }, + { "lat": 40.8684510, "lon": -73.9079300 }, + { "lat": 40.8690202, "lon": -73.9076784 }, + { "lat": 40.8691567, "lon": -73.9076146 }, + { "lat": 40.8693259, "lon": -73.9075356 }, + { "lat": 40.8698735, "lon": -73.9072797 }, + { "lat": 40.8708000, "lon": -73.9068512 }, + { "lat": 40.8727163, "lon": -73.9059588 }, + { "lat": 40.8730272, "lon": -73.9058140 }, + { "lat": 40.8730824, "lon": -73.9057820 }, + { "lat": 40.8731484, "lon": -73.9057278 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Bailey Avenue", + "name:etymology:wikidata": "Q63197681", + "oneway": "no", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bailey", + "tiger:name_type": "Ave", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5698635, + "bounds": { + "minlat": 40.8488480, + "minlon": -73.9111407, + "maxlat": 40.8494236, + "maxlon": -73.9083040 + }, + "nodes": [ + 42735763, + 13037357728, + 13037357737, + 42733813, + 13037357738, + 9918211912, + 10119713299, + 42736331 + ], + "geometry": [ + { "lat": 40.8488480, "lon": -73.9083040 }, + { "lat": 40.8488665, "lon": -73.9083960 }, + { "lat": 40.8490644, "lon": -73.9093781 }, + { "lat": 40.8490790, "lon": -73.9094510 }, + { "lat": 40.8491018, "lon": -73.9095641 }, + { "lat": 40.8493920, "lon": -73.9109859 }, + { "lat": 40.8494087, "lon": -73.9110675 }, + { "lat": 40.8494236, "lon": -73.9111407 } + ], + "tags": { + "highway": "residential", + "name": "Mount Hope Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Hope", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 5698643, + "bounds": { + "minlat": 40.8506110, + "minlon": -73.9148730, + "maxlat": 40.8510470, + "maxlon": -73.9138200 + }, + "nodes": [ + 42720032, + 6701054459, + 13181365285, + 42768178 + ], + "geometry": [ + { "lat": 40.8506110, "lon": -73.9138200 }, + { "lat": 40.8509805, "lon": -73.9147123 }, + { "lat": 40.8509973, "lon": -73.9147530 }, + { "lat": 40.8510470, "lon": -73.9148730 } + ], + "tags": { + "highway": "residential", + "name": "Morton Place", + "oneway": "yes", + "tiger:name_base": "Morton", + "tiger:name_type": "Pl" + } +}, +{ + "type": "way", + "id": 5698651, + "bounds": { + "minlat": 40.8059404, + "minlon": -73.9096937, + "maxlat": 40.8063260, + "maxlon": -73.9095860 + }, + "nodes": [ + 42743464, + 13247555764, + 42753405 + ], + "geometry": [ + { "lat": 40.8063260, "lon": -73.9095860 }, + { "lat": 40.8060820, "lon": -73.9096541 }, + { "lat": 40.8059404, "lon": -73.9096937 } + ], + "tags": { + "highway": "residential", + "name": "Wales Avenue", + "name:etymology:wikidata": "Q25", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Wales", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454" + } +}, +{ + "type": "way", + "id": 5698652, + "bounds": { + "minlat": 40.8074520, + "minlon": -73.9091820, + "maxlat": 40.8128587, + "maxlon": -73.9072527 + }, + "nodes": [ + 42768271, + 13247558404, + 7161462753, + 1931610639, + 42768279, + 42762529, + 5859955155, + 13247374533, + 42768284, + 13247374520, + 9917835161, + 42768288 + ], + "geometry": [ + { "lat": 40.8074520, "lon": -73.9091820 }, + { "lat": 40.8075036, "lon": -73.9091635 }, + { "lat": 40.8079339, "lon": -73.9090088 }, + { "lat": 40.8084228, "lon": -73.9088449 }, + { "lat": 40.8092720, "lon": -73.9085278 }, + { "lat": 40.8101410, "lon": -73.9082180 }, + { "lat": 40.8108890, "lon": -73.9079481 }, + { "lat": 40.8113371, "lon": -73.9077863 }, + { "lat": 40.8113990, "lon": -73.9077640 }, + { "lat": 40.8114599, "lon": -73.9077427 }, + { "lat": 40.8127497, "lon": -73.9072909 }, + { "lat": 40.8128587, "lon": -73.9072527 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Wales Avenue", + "name:etymology:wikidata": "Q25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Wales", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5698674, + "bounds": { + "minlat": 40.8281334, + "minlon": -73.9070310, + "maxlat": 40.8282800, + "maxlon": -73.9063567 + }, + "nodes": [ + 42768582, + 9520831378, + 42768811 + ], + "geometry": [ + { "lat": 40.8282800, "lon": -73.9070310 }, + { "lat": 40.8282557, "lon": -73.9069193 }, + { "lat": 40.8281334, "lon": -73.9063567 } + ], + "tags": { + "highway": "residential", + "name": "East 166th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "166th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698676, + "bounds": { + "minlat": 40.8320115, + "minlon": -73.9210620, + "maxlat": 40.8323550, + "maxlon": -73.9200417 + }, + "nodes": [ + 42733733, + 13033188193, + 9966006685, + 13534990405, + 12739350602, + 2408438451 + ], + "geometry": [ + { "lat": 40.8323550, "lon": -73.9210620 }, + { "lat": 40.8323304, "lon": -73.9209891 }, + { "lat": 40.8323193, "lon": -73.9209560 }, + { "lat": 40.8320515, "lon": -73.9201603 }, + { "lat": 40.8320403, "lon": -73.9201271 }, + { "lat": 40.8320115, "lon": -73.9200417 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 166th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "166th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698713, + "bounds": { + "minlat": 40.8322129, + "minlon": -73.9316531, + "maxlat": 40.8377210, + "maxlon": -73.9276190 + }, + "nodes": [ + 42743036, + 13533533144, + 13533533143, + 9552888987, + 13809338832, + 42746326, + 12384154037, + 13068284051, + 42729353, + 13809338849, + 42769855, + 13809338848, + 7043507584, + 595765062, + 13809338854, + 42736651 + ], + "geometry": [ + { "lat": 40.8322129, "lon": -73.9316531 }, + { "lat": 40.8324184, "lon": -73.9315418 }, + { "lat": 40.8326063, "lon": -73.9314304 }, + { "lat": 40.8332552, "lon": -73.9310680 }, + { "lat": 40.8344736, "lon": -73.9303729 }, + { "lat": 40.8345050, "lon": -73.9303550 }, + { "lat": 40.8347598, "lon": -73.9302105 }, + { "lat": 40.8351268, "lon": -73.9300024 }, + { "lat": 40.8356230, "lon": -73.9297210 }, + { "lat": 40.8360449, "lon": -73.9293080 }, + { "lat": 40.8360940, "lon": -73.9292600 }, + { "lat": 40.8361595, "lon": -73.9291939 }, + { "lat": 40.8364785, "lon": -73.9288722 }, + { "lat": 40.8372566, "lon": -73.9280874 }, + { "lat": 40.8376613, "lon": -73.9276792 }, + { "lat": 40.8377210, "lon": -73.9276190 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "highway": "residential", + "name": "University Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Dr Martin Luther King Jr", + "tiger:name_base_1": "University", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 5698715, + "bounds": { + "minlat": 40.8554589, + "minlon": -73.9106222, + "maxlat": 40.8568670, + "maxlon": -73.9098376 + }, + "nodes": [ + 11794372942, + 2323868484, + 13327589063, + 42731712, + 10135688199, + 7476260862, + 42769895, + 2323868465 + ], + "geometry": [ + { "lat": 40.8554589, "lon": -73.9106222 }, + { "lat": 40.8555180, "lon": -73.9105748 }, + { "lat": 40.8556862, "lon": -73.9104458 }, + { "lat": 40.8557290, "lon": -73.9104130 }, + { "lat": 40.8558003, "lon": -73.9103743 }, + { "lat": 40.8565316, "lon": -73.9099775 }, + { "lat": 40.8566450, "lon": -73.9099160 }, + { "lat": 40.8568670, "lon": -73.9098376 } + ], + "tags": { + "busway:both": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "bump", + "cycleway:right:traffic_mode": "bus", + "cycleway:right:width": "8'", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "name_1": "University Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5698718, + "bounds": { + "minlat": 40.8443052, + "minlon": -73.9229609, + "maxlat": 40.8444832, + "maxlon": -73.9228766 + }, + "nodes": [ + 595757814, + 12046762866, + 60921024 + ], + "geometry": [ + { "lat": 40.8444832, "lon": -73.9228766 }, + { "lat": 40.8443673, "lon": -73.9229313 }, + { "lat": 40.8443052, "lon": -73.9229609 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 5698740, + "bounds": { + "minlat": 40.8530249, + "minlon": -73.9073691, + "maxlat": 40.8538239, + "maxlon": -73.9052647 + }, + "nodes": [ + 42736311, + 9918211888, + 13031112694, + 42733827, + 13031112695, + 13031080719, + 42735777, + 13031080722, + 2025209414 + ], + "geometry": [ + { "lat": 40.8538239, "lon": -73.9073691 }, + { "lat": 40.8537752, "lon": -73.9072354 }, + { "lat": 40.8535112, "lon": -73.9065429 }, + { "lat": 40.8534740, "lon": -73.9064480 }, + { "lat": 40.8534474, "lon": -73.9063788 }, + { "lat": 40.8531843, "lon": -73.9056938 }, + { "lat": 40.8531490, "lon": -73.9056020 }, + { "lat": 40.8531244, "lon": -73.9055350 }, + { "lat": 40.8530249, "lon": -73.9052647 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Burnside Avenue", + "name:etymology:wikidata": "Q355444", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Burnside", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 5698745, + "bounds": { + "minlat": 40.8793582, + "minlon": -73.9123686, + "maxlat": 40.8802930, + "maxlon": -73.9111380 + }, + "nodes": [ + 42733253, + 1544847055, + 1544847037, + 1544847091 + ], + "geometry": [ + { "lat": 40.8793582, "lon": -73.9123686 }, + { "lat": 40.8798885, "lon": -73.9117108 }, + { "lat": 40.8801228, "lon": -73.9114098 }, + { "lat": 40.8802930, "lon": -73.9111380 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "Irwin Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ewen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5698775, + "bounds": { + "minlat": 40.8430697, + "minlon": -73.9179352, + "maxlat": 40.8449490, + "maxlon": -73.9173931 + }, + "nodes": [ + 42748602, + 12089567403, + 12089567407, + 12089567404, + 12046949305, + 12046949304, + 12089567405, + 12046949303, + 12089567406, + 60923735, + 12046949322, + 12046949323, + 12046949324, + 60923734, + 12046949325, + 12046949333, + 12046949339, + 12046949337, + 12046949340, + 12046949341, + 60923752, + 12046949342, + 5333189317, + 60923751, + 42770674 + ], + "geometry": [ + { "lat": 40.8449490, "lon": -73.9173931 }, + { "lat": 40.8449376, "lon": -73.9174002 }, + { "lat": 40.8449081, "lon": -73.9174182 }, + { "lat": 40.8448745, "lon": -73.9174372 }, + { "lat": 40.8448440, "lon": -73.9174521 }, + { "lat": 40.8448106, "lon": -73.9174655 }, + { "lat": 40.8447752, "lon": -73.9174767 }, + { "lat": 40.8447410, "lon": -73.9174858 }, + { "lat": 40.8446971, "lon": -73.9174952 }, + { "lat": 40.8446497, "lon": -73.9175040 }, + { "lat": 40.8445889, "lon": -73.9175118 }, + { "lat": 40.8445226, "lon": -73.9175154 }, + { "lat": 40.8444562, "lon": -73.9175141 }, + { "lat": 40.8443912, "lon": -73.9175072 }, + { "lat": 40.8443251, "lon": -73.9174932 }, + { "lat": 40.8442616, "lon": -73.9174784 }, + { "lat": 40.8442083, "lon": -73.9174661 }, + { "lat": 40.8441507, "lon": -73.9174550 }, + { "lat": 40.8440639, "lon": -73.9174403 }, + { "lat": 40.8439687, "lon": -73.9174397 }, + { "lat": 40.8438472, "lon": -73.9174579 }, + { "lat": 40.8437514, "lon": -73.9174874 }, + { "lat": 40.8436423, "lon": -73.9175397 }, + { "lat": 40.8433184, "lon": -73.9177801 }, + { "lat": 40.8430697, "lon": -73.9179352 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5698777, + "bounds": { + "minlat": 40.8587794, + "minlon": -73.9108934, + "maxlat": 40.8600997, + "maxlon": -73.9098591 + }, + "nodes": [ + 42742762, + 10135688400, + 5487859639, + 2794883583, + 10034673518, + 10135688402, + 42747815 + ], + "geometry": [ + { "lat": 40.8587794, "lon": -73.9108934 }, + { "lat": 40.8588392, "lon": -73.9108420 }, + { "lat": 40.8594710, "lon": -73.9102990 }, + { "lat": 40.8597031, "lon": -73.9100995 }, + { "lat": 40.8599893, "lon": -73.9099260 }, + { "lat": 40.8600275, "lon": -73.9099028 }, + { "lat": 40.8600997, "lon": -73.9098591 } + ], + "tags": { + "highway": "residential", + "name": "Loring Place North", + "name:etymology:wikidata": "Q56000453", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Loring", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 5698782, + "bounds": { + "minlat": 40.8212481, + "minlon": -73.9111732, + "maxlat": 40.8215038, + "maxlon": -73.9099045 + }, + "nodes": [ + 3637945017, + 42761088 + ], + "geometry": [ + { "lat": 40.8212481, "lon": -73.9099045 }, + { "lat": 40.8215038, "lon": -73.9111732 } + ], + "tags": { + "highway": "residential", + "name": "East 159th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "159th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5698783, + "bounds": { + "minlat": 40.8256857, + "minlon": -73.9228924, + "maxlat": 40.8260553, + "maxlon": -73.9218292 + }, + "nodes": [ + 8251591969, + 12162740292, + 8251591988 + ], + "geometry": [ + { "lat": 40.8256857, "lon": -73.9218292 }, + { "lat": 40.8260361, "lon": -73.9228378 }, + { "lat": 40.8260553, "lon": -73.9228924 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 159th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "159th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5698785, + "bounds": { + "minlat": 40.8220639, + "minlon": -73.9175705, + "maxlat": 40.8238867, + "maxlon": -73.9117739 + }, + "nodes": [ + 42730063, + 8454351356, + 5482222757, + 42770805, + 12040128178, + 5482222762, + 7564284925, + 10647801855, + 42770800, + 12040128180, + 7232014023, + 5482222778, + 5482222781, + 12040128332, + 42750609, + 12038478971, + 5540161843, + 5540161846, + 8575396959, + 9910723147, + 42770796 + ], + "geometry": [ + { "lat": 40.8220639, "lon": -73.9117739 }, + { "lat": 40.8221486, "lon": -73.9118862 }, + { "lat": 40.8223329, "lon": -73.9125111 }, + { "lat": 40.8224443, "lon": -73.9128742 }, + { "lat": 40.8224684, "lon": -73.9129528 }, + { "lat": 40.8225673, "lon": -73.9132750 }, + { "lat": 40.8228115, "lon": -73.9140707 }, + { "lat": 40.8229094, "lon": -73.9143898 }, + { "lat": 40.8229446, "lon": -73.9145046 }, + { "lat": 40.8229803, "lon": -73.9146210 }, + { "lat": 40.8230611, "lon": -73.9148842 }, + { "lat": 40.8231236, "lon": -73.9150879 }, + { "lat": 40.8233559, "lon": -73.9158449 }, + { "lat": 40.8234467, "lon": -73.9161407 }, + { "lat": 40.8234695, "lon": -73.9162152 }, + { "lat": 40.8234970, "lon": -73.9163049 }, + { "lat": 40.8236213, "lon": -73.9167099 }, + { "lat": 40.8236726, "lon": -73.9168770 }, + { "lat": 40.8238413, "lon": -73.9174269 }, + { "lat": 40.8238601, "lon": -73.9174862 }, + { "lat": 40.8238867, "lon": -73.9175705 } + ], + "tags": { + "highway": "residential", + "name": "East 159th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "159th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5698786, + "bounds": { + "minlat": 40.8542288, + "minlon": -73.9155249, + "maxlat": 40.8557010, + "maxlon": -73.9149380 + }, + "nodes": [ + 42770814, + 9588008184, + 2808821893, + 42744007 + ], + "geometry": [ + { "lat": 40.8557010, "lon": -73.9149380 }, + { "lat": 40.8549135, "lon": -73.9151966 }, + { "lat": 40.8542789, "lon": -73.9154054 }, + { "lat": 40.8542288, "lon": -73.9155249 } + ], + "tags": { + "highway": "residential", + "name": "Hennessy Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Hennessy", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5698828, + "bounds": { + "minlat": 40.8519111, + "minlon": -73.9164575, + "maxlat": 40.8539441, + "maxlon": -73.9146728 + }, + "nodes": [ + 42731827, + 9918264477, + 8463760578, + 9918291066, + 42743997 + ], + "geometry": [ + { "lat": 40.8519111, "lon": -73.9164575 }, + { "lat": 40.8519791, "lon": -73.9163919 }, + { "lat": 40.8538243, "lon": -73.9147782 }, + { "lat": 40.8538697, "lon": -73.9147419 }, + { "lat": 40.8539441, "lon": -73.9146728 } + ], + "tags": { + "highway": "residential", + "name": "Loring Place South", + "name:etymology:wikidata": "Q56000453", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Loring", + "tiger:name_direction_suffix": "S", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5698833, + "bounds": { + "minlat": 40.8451136, + "minlon": -73.9075421, + "maxlat": 40.8477793, + "maxlon": -73.9073012 + }, + "nodes": [ + 12042585461, + 42746573, + 13039046203, + 7042990873, + 7042990880, + 8571799170, + 13001055648, + 42740532, + 11492469819, + 2028383612, + 12089694334, + 12089694335, + 2028383642, + 12089694336, + 12089694337, + 12089694343, + 12089694344, + 12089694345, + 12089694346, + 4606046844 + ], + "geometry": [ + { "lat": 40.8451136, "lon": -73.9075421 }, + { "lat": 40.8451791, "lon": -73.9075363 }, + { "lat": 40.8452315, "lon": -73.9075317 }, + { "lat": 40.8464152, "lon": -73.9074281 }, + { "lat": 40.8466599, "lon": -73.9074067 }, + { "lat": 40.8466860, "lon": -73.9074044 }, + { "lat": 40.8467291, "lon": -73.9074006 }, + { "lat": 40.8467890, "lon": -73.9073954 }, + { "lat": 40.8468593, "lon": -73.9073891 }, + { "lat": 40.8475532, "lon": -73.9073285 }, + { "lat": 40.8475724, "lon": -73.9073257 }, + { "lat": 40.8475917, "lon": -73.9073203 }, + { "lat": 40.8476245, "lon": -73.9073083 }, + { "lat": 40.8476435, "lon": -73.9073029 }, + { "lat": 40.8476611, "lon": -73.9073012 }, + { "lat": 40.8476985, "lon": -73.9073024 }, + { "lat": 40.8477183, "lon": -73.9073056 }, + { "lat": 40.8477380, "lon": -73.9073129 }, + { "lat": 40.8477561, "lon": -73.9073214 }, + { "lat": 40.8477793, "lon": -73.9073365 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Weeks Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Weeks", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 5698841, + "bounds": { + "minlat": 40.8312971, + "minlon": -73.9309340, + "maxlat": 40.8319140, + "maxlon": -73.9290432 + }, + "nodes": [ + 42757285, + 13038547407, + 8285601014, + 13247390492, + 42734266, + 13247390489, + 13247390485, + 42737570 + ], + "geometry": [ + { "lat": 40.8312971, "lon": -73.9290432 }, + { "lat": 40.8313240, "lon": -73.9291274 }, + { "lat": 40.8313359, "lon": -73.9291640 }, + { "lat": 40.8316105, "lon": -73.9300146 }, + { "lat": 40.8316410, "lon": -73.9301090 }, + { "lat": 40.8316732, "lon": -73.9302064 }, + { "lat": 40.8318921, "lon": -73.9308678 }, + { "lat": 40.8319140, "lon": -73.9309340 } + ], + "tags": { + "highway": "residential", + "name": "West 162nd Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "162nd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5698871, + "bounds": { + "minlat": 40.8158741, + "minlon": -73.9230930, + "maxlat": 40.8166980, + "maxlon": -73.9198546 + }, + "nodes": [ + 42735687, + 12040837235, + 42756676, + 7695597319, + 12040128302, + 42750594 + ], + "geometry": [ + { "lat": 40.8166980, "lon": -73.9230930 }, + { "lat": 40.8166676, "lon": -73.9229754 }, + { "lat": 40.8162200, "lon": -73.9212450 }, + { "lat": 40.8160022, "lon": -73.9203695 }, + { "lat": 40.8158946, "lon": -73.9199371 }, + { "lat": 40.8158741, "lon": -73.9198546 } + ], + "tags": { + "highway": "residential", + "name": "East 148th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "148th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5698885, + "bounds": { + "minlat": 40.8433705, + "minlon": -73.9174550, + "maxlat": 40.8441507, + "maxlon": -73.9154452 + }, + "nodes": [ + 12046949337, + 12046949338, + 12046949336, + 12046949335, + 12046949334, + 12046949326, + 7950851753, + 42740210, + 13247381553, + 42736345 + ], + "geometry": [ + { "lat": 40.8441507, "lon": -73.9174550 }, + { "lat": 40.8441483, "lon": -73.9174117 }, + { "lat": 40.8441437, "lon": -73.9173754 }, + { "lat": 40.8441371, "lon": -73.9173374 }, + { "lat": 40.8441278, "lon": -73.9172978 }, + { "lat": 40.8441141, "lon": -73.9172536 }, + { "lat": 40.8438819, "lon": -73.9166889 }, + { "lat": 40.8438260, "lon": -73.9165531 }, + { "lat": 40.8434292, "lon": -73.9155876 }, + { "lat": 40.8433705, "lon": -73.9154452 } + ], + "tags": { + "highway": "residential", + "name": "Goble Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Goble", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5698940, + "bounds": { + "minlat": 40.8775244, + "minlon": -73.9072514, + "maxlat": 40.8794180, + "maxlon": -73.9057930 + }, + "nodes": [ + 42746768, + 10868090881, + 12529719492, + 10868090880, + 1581436699, + 42771494, + 13039230847, + 8065055679, + 42770851 + ], + "geometry": [ + { "lat": 40.8775244, "lon": -73.9072514 }, + { "lat": 40.8775626, "lon": -73.9071611 }, + { "lat": 40.8775817, "lon": -73.9071304 }, + { "lat": 40.8776089, "lon": -73.9070867 }, + { "lat": 40.8777455, "lon": -73.9069855 }, + { "lat": 40.8781340, "lon": -73.9067030 }, + { "lat": 40.8781990, "lon": -73.9066570 }, + { "lat": 40.8786489, "lon": -73.9063381 }, + { "lat": 40.8794180, "lon": -73.9057930 } + ], + "tags": { + "highway": "residential", + "name": "Godwin Terrace", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Godwin", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5698943, + "bounds": { + "minlat": 40.8446037, + "minlon": -73.9249048, + "maxlat": 40.8449194, + "maxlon": -73.9246553 + }, + "nodes": [ + 60920618, + 12070722000 + ], + "geometry": [ + { "lat": 40.8449194, "lon": -73.9246553 }, + { "lat": 40.8446037, "lon": -73.9249048 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Undercliff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5698944, + "bounds": { + "minlat": 40.8423306, + "minlon": -73.9273015, + "maxlat": 40.8442741, + "maxlon": -73.9251653 + }, + "nodes": [ + 60920541, + 12049842126, + 6566753759, + 12049842128, + 12049842127, + 42741658, + 60920515, + 12050046929, + 595757815, + 12050046930, + 12050046968, + 12050046935 + ], + "geometry": [ + { "lat": 40.8442741, "lon": -73.9251653 }, + { "lat": 40.8439925, "lon": -73.9253868 }, + { "lat": 40.8439676, "lon": -73.9254074 }, + { "lat": 40.8439454, "lon": -73.9254277 }, + { "lat": 40.8439240, "lon": -73.9254491 }, + { "lat": 40.8439014, "lon": -73.9254737 }, + { "lat": 40.8426905, "lon": -73.9269628 }, + { "lat": 40.8426581, "lon": -73.9269992 }, + { "lat": 40.8426242, "lon": -73.9270325 }, + { "lat": 40.8425821, "lon": -73.9270713 }, + { "lat": 40.8423662, "lon": -73.9272689 }, + { "lat": 40.8423306, "lon": -73.9273015 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "Undercliff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:zip_left": "10452", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5698981, + "bounds": { + "minlat": 40.8785709, + "minlon": -73.9167787, + "maxlat": 40.8788746, + "maxlon": -73.9161217 + }, + "nodes": [ + 42747751, + 13041475432, + 1545120650, + 11998945031, + 1545120631, + 1545120656, + 1545120628, + 1545120643, + 1545120654, + 42733316 + ], + "geometry": [ + { "lat": 40.8788746, "lon": -73.9167787 }, + { "lat": 40.8788526, "lon": -73.9166915 }, + { "lat": 40.8788389, "lon": -73.9166370 }, + { "lat": 40.8788097, "lon": -73.9165872 }, + { "lat": 40.8787726, "lon": -73.9165417 }, + { "lat": 40.8786794, "lon": -73.9164552 }, + { "lat": 40.8786374, "lon": -73.9163912 }, + { "lat": 40.8786015, "lon": -73.9163113 }, + { "lat": 40.8785788, "lon": -73.9162138 }, + { "lat": 40.8785709, "lon": -73.9161217 } + ], + "tags": { + "highway": "residential", + "name": "Netherland Avenue", + "name:etymology:wikidata": "Q382593", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Netherland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5699015, + "bounds": { + "minlat": 40.8134383, + "minlon": -73.9100285, + "maxlat": 40.8156904, + "maxlon": -73.9092197 + }, + "nodes": [ + 42774181, + 9917835177, + 42774185, + 5482340562 + ], + "geometry": [ + { "lat": 40.8134383, "lon": -73.9100285 }, + { "lat": 40.8135368, "lon": -73.9099925 }, + { "lat": 40.8148241, "lon": -73.9095210 }, + { "lat": 40.8156904, "lon": -73.9092197 } + ], + "tags": { + "highway": "residential", + "name": "Trinity Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Trinity", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5699017, + "bounds": { + "minlat": 40.8119188, + "minlon": -73.9103086, + "maxlat": 40.8123170, + "maxlon": -73.9102262 + }, + "nodes": [ + 42774215, + 8602600509, + 42774219 + ], + "geometry": [ + { "lat": 40.8119188, "lon": -73.9102525 }, + { "lat": 40.8121940, "lon": -73.9102262 }, + { "lat": 40.8123170, "lon": -73.9103086 } + ], + "tags": { + "highway": "residential", + "name": "Trinity Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Trinity", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5699025, + "bounds": { + "minlat": 40.8338729, + "minlon": -73.9199070, + "maxlat": 40.8343230, + "maxlon": -73.9185843 + }, + "nodes": [ + 42733742, + 12998477301, + 8575396971, + 13534990427, + 8575396988, + 2408393071 + ], + "geometry": [ + { "lat": 40.8343230, "lon": -73.9199070 }, + { "lat": 40.8342992, "lon": -73.9198369 }, + { "lat": 40.8342908, "lon": -73.9198123 }, + { "lat": 40.8339272, "lon": -73.9187444 }, + { "lat": 40.8339044, "lon": -73.9186772 }, + { "lat": 40.8338729, "lon": -73.9185843 } + ], + "tags": { + "highway": "residential", + "name": "Tudor Place", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tudor", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5699045, + "bounds": { + "minlat": 40.8016036, + "minlon": -73.9168778, + "maxlat": 40.8018812, + "maxlon": -73.9166703 + }, + "nodes": [ + 9156930391, + 471244587 + ], + "geometry": [ + { "lat": 40.8016036, "lon": -73.9168778 }, + { "lat": 40.8018812, "lon": -73.9166703 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "Bruckner Expressway;New Haven|Bruckner Expressway;New Haven;East 138th Street", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "I-278", + "tiger:name_type": "Expy", + "tiger:reviewed": "no", + "toll": "no", + "turn:lanes": "through|through;slight_right" + } +}, +{ + "type": "way", + "id": 5699068, + "bounds": { + "minlat": 40.8102333, + "minlon": -73.9300946, + "maxlat": 40.8115242, + "maxlon": -73.9284174 + }, + "nodes": [ + 42747174, + 11882279802, + 8285464362, + 42719470, + 7554077971, + 42737608, + 8666778901 + ], + "geometry": [ + { "lat": 40.8102333, "lon": -73.9300946 }, + { "lat": 40.8102763, "lon": -73.9300387 }, + { "lat": 40.8103035, "lon": -73.9300034 }, + { "lat": 40.8105116, "lon": -73.9297330 }, + { "lat": 40.8107419, "lon": -73.9294339 }, + { "lat": 40.8111472, "lon": -73.9289072 }, + { "lat": 40.8115242, "lon": -73.9284174 } + ], + "tags": { + "highway": "residential", + "name": "Rider Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Rider", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5699074, + "bounds": { + "minlat": 40.8789890, + "minlon": -73.9171276, + "maxlat": 40.8791725, + "maxlon": -73.9167286 + }, + "nodes": [ + 1545136710, + 1545136705, + 5588603827, + 5324454006 + ], + "geometry": [ + { "lat": 40.8789890, "lon": -73.9171276 }, + { "lat": 40.8791406, "lon": -73.9169104 }, + { "lat": 40.8791492, "lon": -73.9168707 }, + { "lat": 40.8791725, "lon": -73.9167286 } + ], + "tags": { + "highway": "residential", + "name": "Knolls Crescent", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Knolls", + "tiger:name_type": "Cres", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5699075, + "bounds": { + "minlat": 40.8785259, + "minlon": -73.9182899, + "maxlat": 40.8793104, + "maxlon": -73.9180483 + }, + "nodes": [ + 42738955, + 1545136739, + 1545136707, + 1545136665, + 1545136672, + 42775237, + 5324419500, + 1545168063, + 1545167946 + ], + "geometry": [ + { "lat": 40.8785259, "lon": -73.9180483 }, + { "lat": 40.8785435, "lon": -73.9181210 }, + { "lat": 40.8785842, "lon": -73.9181820 }, + { "lat": 40.8786383, "lon": -73.9182257 }, + { "lat": 40.8787124, "lon": -73.9182614 }, + { "lat": 40.8788189, "lon": -73.9182787 }, + { "lat": 40.8789408, "lon": -73.9182822 }, + { "lat": 40.8792114, "lon": -73.9182899 }, + { "lat": 40.8793104, "lon": -73.9182832 } + ], + "tags": { + "highway": "residential", + "name": "Knolls Crescent", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Knolls", + "tiger:name_type": "Cres", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5699084, + "bounds": { + "minlat": 40.7992580, + "minlon": -73.9120600, + "maxlat": 40.8004513, + "maxlon": -73.9108627 + }, + "nodes": [ + 42772998, + 9910669565, + 5859955134, + 42775292, + 42764970 + ], + "geometry": [ + { "lat": 40.7992580, "lon": -73.9120600 }, + { "lat": 40.7993041, "lon": -73.9120133 }, + { "lat": 40.7993501, "lon": -73.9119665 }, + { "lat": 40.7998538, "lon": -73.9114635 }, + { "lat": 40.8004513, "lon": -73.9108627 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "unclassified", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Walnut Avenue", + "name_1": "Rose Feiss Boulevard", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walnut", + "tiger:name_base_1": "Rose Feiss", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5699134, + "bounds": { + "minlat": 40.8573990, + "minlon": -73.9079000, + "maxlat": 40.8581950, + "maxlon": -73.9056600 + }, + "nodes": [ + 42745956, + 13247486967, + 13432561479, + 42758024, + 13432561482, + 8174133708, + 8174133664, + 13564424184, + 42740870 + ], + "geometry": [ + { "lat": 40.8573990, "lon": -73.9056600 }, + { "lat": 40.8574373, "lon": -73.9057681 }, + { "lat": 40.8576802, "lon": -73.9064482 }, + { "lat": 40.8576990, "lon": -73.9065110 }, + { "lat": 40.8577350, "lon": -73.9066058 }, + { "lat": 40.8578593, "lon": -73.9069598 }, + { "lat": 40.8581559, "lon": -73.9077904 }, + { "lat": 40.8581750, "lon": -73.9078438 }, + { "lat": 40.8581950, "lon": -73.9079000 } + ], + "tags": { + "highway": "residential", + "name": "West 182nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "182nd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5699140, + "bounds": { + "minlat": 40.8195420, + "minlon": -73.9177130, + "maxlat": 40.8206470, + "maxlon": -73.9135200 + }, + "nodes": [ + 42768536, + 13249081107, + 13249068295, + 42776241, + 13249068293, + 5482340536, + 5482340534, + 12040128236, + 42776237, + 12040128234, + 13450223168, + 8184243098, + 12040128367, + 42750604 + ], + "geometry": [ + { "lat": 40.8195420, "lon": -73.9135200 }, + { "lat": 40.8195763, "lon": -73.9136445 }, + { "lat": 40.8197255, "lon": -73.9141856 }, + { "lat": 40.8197459, "lon": -73.9142598 }, + { "lat": 40.8197693, "lon": -73.9143477 }, + { "lat": 40.8198746, "lon": -73.9147443 }, + { "lat": 40.8200273, "lon": -73.9153368 }, + { "lat": 40.8201486, "lon": -73.9158010 }, + { "lat": 40.8201750, "lon": -73.9159020 }, + { "lat": 40.8202058, "lon": -73.9160200 }, + { "lat": 40.8204920, "lon": -73.9171184 }, + { "lat": 40.8206088, "lon": -73.9175666 }, + { "lat": 40.8206187, "lon": -73.9176046 }, + { "lat": 40.8206470, "lon": -73.9177130 } + ], + "tags": { + "highway": "residential", + "name": "East 155th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "155th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5699150, + "bounds": { + "minlat": 40.8467968, + "minlon": -73.9206609, + "maxlat": 40.8469048, + "maxlon": -73.9206232 + }, + "nodes": [ + 42769941, + 2907939255 + ], + "geometry": [ + { "lat": 40.8467968, "lon": -73.9206232 }, + { "lat": 40.8469048, "lon": -73.9206609 } + ], + "tags": { + "highway": "residential", + "name": "West 174th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "174th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5699151, + "bounds": { + "minlat": 40.8473134, + "minlon": -73.9162240, + "maxlat": 40.8475590, + "maxlon": -73.9148977 + }, + "nodes": [ + 42758058, + 8285583679, + 8285583692, + 13181365289, + 42770697 + ], + "geometry": [ + { "lat": 40.8473134, "lon": -73.9148977 }, + { "lat": 40.8473454, "lon": -73.9150768 }, + { "lat": 40.8475210, "lon": -73.9160201 }, + { "lat": 40.8475353, "lon": -73.9160968 }, + { "lat": 40.8475590, "lon": -73.9162240 } + ], + "tags": { + "highway": "residential", + "name": "West 174th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "174th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5699152, + "bounds": { + "minlat": 40.8469540, + "minlon": -73.9186230, + "maxlat": 40.8472560, + "maxlon": -73.9163300 + }, + "nodes": [ + 42770695, + 8285583704, + 8575396950, + 5762108244, + 42752012 + ], + "geometry": [ + { "lat": 40.8472560, "lon": -73.9163300 }, + { "lat": 40.8472201, "lon": -73.9166028 }, + { "lat": 40.8469822, "lon": -73.9184089 }, + { "lat": 40.8469708, "lon": -73.9184952 }, + { "lat": 40.8469540, "lon": -73.9186230 } + ], + "tags": { + "highway": "residential", + "name": "West 174th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "174th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5699153, + "bounds": { + "minlat": 40.8464494, + "minlon": -73.9152670, + "maxlat": 40.8468167, + "maxlon": -73.9143916 + }, + "nodes": [ + 42745925, + 5481864198, + 42758053 + ], + "geometry": [ + { "lat": 40.8464494, "lon": -73.9143916 }, + { "lat": 40.8466794, "lon": -73.9149397 }, + { "lat": 40.8468167, "lon": -73.9152670 } + ], + "tags": { + "highway": "residential", + "name": "West 174th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "174th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5699154, + "bounds": { + "minlat": 40.8402250, + "minlon": -73.9180620, + "maxlat": 40.8403620, + "maxlon": -73.9176830 + }, + "nodes": [ + 42736365, + 13036990066, + 13036868358, + 42736043 + ], + "geometry": [ + { "lat": 40.8402250, "lon": -73.9176830 }, + { "lat": 40.8402720, "lon": -73.9178129 }, + { "lat": 40.8403372, "lon": -73.9179933 }, + { "lat": 40.8403620, "lon": -73.9180620 } + ], + "tags": { + "highway": "tertiary", + "name": "West 170th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5699160, + "bounds": { + "minlat": 40.8163234, + "minlon": -73.9176560, + "maxlat": 40.8167610, + "maxlon": -73.9174600 + }, + "nodes": [ + 42733530, + 6415814861, + 13205118629 + ], + "geometry": [ + { "lat": 40.8167610, "lon": -73.9174600 }, + { "lat": 40.8167126, "lon": -73.9174814 }, + { "lat": 40.8163234, "lon": -73.9176560 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:forward": "1", + "name": "Melrose Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Melrose", + "tiger:name_type": "Ave", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes": "|merge_to_left" + } +}, +{ + "type": "way", + "id": 5699170, + "bounds": { + "minlat": 40.8319004, + "minlon": -73.9297420, + "maxlat": 40.8322840, + "maxlon": -73.9285672 + }, + "nodes": [ + 42757290, + 8285603928, + 7476260865, + 13247390497, + 42734271 + ], + "geometry": [ + { "lat": 40.8319004, "lon": -73.9285672 }, + { "lat": 40.8319452, "lon": -73.9287044 }, + { "lat": 40.8322341, "lon": -73.9295892 }, + { "lat": 40.8322536, "lon": -73.9296490 }, + { "lat": 40.8322840, "lon": -73.9297420 } + ], + "tags": { + "highway": "residential", + "name": "West 163rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5699174, + "bounds": { + "minlat": 40.8165787, + "minlon": -73.9148530, + "maxlat": 40.8171290, + "maxlon": -73.9139915 + }, + "nodes": [ + 42761071, + 11993394699, + 42746083 + ], + "geometry": [ + { "lat": 40.8165787, "lon": -73.9139915 }, + { "lat": 40.8166701, "lon": -73.9141345 }, + { "lat": 40.8171290, "lon": -73.9148530 } + ], + "tags": { + "highway": "residential", + "name": "East 152nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "152nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5699176, + "bounds": { + "minlat": 40.8152738, + "minlon": -73.9080787, + "maxlat": 40.8160301, + "maxlon": -73.9044246 + }, + "nodes": [ + 42764645, + 12537097670, + 13809174734, + 42755248, + 42768295, + 13809174730, + 42763802, + 13809174729, + 13809174727, + 5859955164 + ], + "geometry": [ + { "lat": 40.8160301, "lon": -73.9080787 }, + { "lat": 40.8160137, "lon": -73.9079967 }, + { "lat": 40.8158654, "lon": -73.9072536 }, + { "lat": 40.8158462, "lon": -73.9071577 }, + { "lat": 40.8156521, "lon": -73.9062412 }, + { "lat": 40.8154833, "lon": -73.9054305 }, + { "lat": 40.8154624, "lon": -73.9053301 }, + { "lat": 40.8154399, "lon": -73.9052220 }, + { "lat": 40.8152945, "lon": -73.9045239 }, + { "lat": 40.8152738, "lon": -73.9044246 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "residential", + "lanes": "1", + "name": "East 152nd Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "152nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5699177, + "bounds": { + "minlat": 40.8186910, + "minlon": -73.9199259, + "maxlat": 40.8191245, + "maxlon": -73.9185700 + }, + "nodes": [ + 2912071210, + 1286651412, + 42750600 + ], + "geometry": [ + { "lat": 40.8191245, "lon": -73.9199259 }, + { "lat": 40.8190314, "lon": -73.9198463 }, + { "lat": 40.8186910, "lon": -73.9185700 } + ], + "tags": { + "highway": "residential", + "name": "East 152nd Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "152nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5699181, + "bounds": { + "minlat": 40.8610162, + "minlon": -73.9115913, + "maxlat": 40.8616926, + "maxlon": -73.9107770 + }, + "nodes": [ + 13018943327, + 1764763634, + 12058583977, + 9903143754, + 9903143755, + 9903143756, + 9903143757, + 12058583978, + 12058583979, + 1396352602 + ], + "geometry": [ + { "lat": 40.8610162, "lon": -73.9115913 }, + { "lat": 40.8614885, "lon": -73.9108924 }, + { "lat": 40.8615059, "lon": -73.9108735 }, + { "lat": 40.8615293, "lon": -73.9108528 }, + { "lat": 40.8615530, "lon": -73.9108342 }, + { "lat": 40.8615777, "lon": -73.9108187 }, + { "lat": 40.8616039, "lon": -73.9108045 }, + { "lat": 40.8616347, "lon": -73.9107911 }, + { "lat": 40.8616627, "lon": -73.9107828 }, + { "lat": 40.8616926, "lon": -73.9107770 } + ], + "tags": { + "highway": "residential", + "name": "Hampden Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Hampden", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 5699190, + "bounds": { + "minlat": 40.8548220, + "minlon": -73.9157110, + "maxlat": 40.8558600, + "maxlon": -73.9111960 + }, + "nodes": [ + 42743984, + 2899134412, + 2808822352, + 42776770, + 42771338, + 42770814, + 8464067985, + 13067995239, + 42748017 + ], + "geometry": [ + { "lat": 40.8548220, "lon": -73.9111960 }, + { "lat": 40.8548675, "lon": -73.9113619 }, + { "lat": 40.8552283, "lon": -73.9126783 }, + { "lat": 40.8552510, "lon": -73.9127610 }, + { "lat": 40.8555400, "lon": -73.9141220 }, + { "lat": 40.8557010, "lon": -73.9149380 }, + { "lat": 40.8558418, "lon": -73.9156228 }, + { "lat": 40.8558461, "lon": -73.9156435 }, + { "lat": 40.8558600, "lon": -73.9157110 } + ], + "tags": { + "highway": "residential", + "name": "West 179th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "179th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5699210, + "bounds": { + "minlat": 40.8026701, + "minlon": -73.9182683, + "maxlat": 40.8030798, + "maxlon": -73.9173986 + }, + "nodes": [ + 471247682, + 13071708892, + 471247433, + 9908642195, + 9908642196, + 471247431, + 471247430, + 9908642197, + 9908642198, + 471247429, + 9908642199, + 9908642200, + 471247428, + 11683884322, + 42777375 + ], + "geometry": [ + { "lat": 40.8029463, "lon": -73.9182683 }, + { "lat": 40.8029856, "lon": -73.9182389 }, + { "lat": 40.8030576, "lon": -73.9181851 }, + { "lat": 40.8030673, "lon": -73.9181730 }, + { "lat": 40.8030762, "lon": -73.9181492 }, + { "lat": 40.8030798, "lon": -73.9181261 }, + { "lat": 40.8030425, "lon": -73.9174619 }, + { "lat": 40.8030378, "lon": -73.9174387 }, + { "lat": 40.8030292, "lon": -73.9174189 }, + { "lat": 40.8030172, "lon": -73.9174077 }, + { "lat": 40.8029990, "lon": -73.9174015 }, + { "lat": 40.8029843, "lon": -73.9173986 }, + { "lat": 40.8029669, "lon": -73.9174035 }, + { "lat": 40.8027212, "lon": -73.9175773 }, + { "lat": 40.8026701, "lon": -73.9176135 } + ], + "tags": { + "highway": "residential", + "motor_vehicle:conditional": "no @ (Mo-Fr 07:00-16:00; SH off)", + "name": "Cypress Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5699233, + "bounds": { + "minlat": 40.8094623, + "minlon": -73.9103664, + "maxlat": 40.8096475, + "maxlon": -73.9094463 + }, + "nodes": [ + 42764629, + 8571918559, + 42755225 + ], + "geometry": [ + { "lat": 40.8096475, "lon": -73.9103664 }, + { "lat": 40.8096129, "lon": -73.9101944 }, + { "lat": 40.8094623, "lon": -73.9094463 } + ], + "tags": { + "highway": "residential", + "name": "East 144th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "144th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454" + } +}, +{ + "type": "way", + "id": 5699236, + "bounds": { + "minlat": 40.8128956, + "minlon": -73.9220508, + "maxlat": 40.8137491, + "maxlon": -73.9201066 + }, + "nodes": [ + 42768504, + 11217140027, + 13703409987, + 13703409982, + 9908621396, + 42761245 + ], + "geometry": [ + { "lat": 40.8137491, "lon": -73.9220508 }, + { "lat": 40.8136798, "lon": -73.9219666 }, + { "lat": 40.8133580, "lon": -73.9212040 }, + { "lat": 40.8131448, "lon": -73.9206988 }, + { "lat": 40.8129568, "lon": -73.9202533 }, + { "lat": 40.8128956, "lon": -73.9201066 } + ], + "tags": { + "highway": "residential", + "name": "East 144th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "144th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5699238, + "bounds": { + "minlat": 40.8062465, + "minlon": -73.9165890, + "maxlat": 40.8081330, + "maxlon": -73.9120517 + }, + "nodes": [ + 42763146, + 7042980653, + 42743528, + 8575373980, + 13809174863, + 42764622 + ], + "geometry": [ + { "lat": 40.8081330, "lon": -73.9165890 }, + { "lat": 40.8078529, "lon": -73.9159205 }, + { "lat": 40.8069420, "lon": -73.9137460 }, + { "lat": 40.8063138, "lon": -73.9122156 }, + { "lat": 40.8062815, "lon": -73.9121369 }, + { "lat": 40.8062465, "lon": -73.9120517 } + ], + "tags": { + "highway": "residential", + "name": "East 140th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5699239, + "bounds": { + "minlat": 40.8149072, + "minlon": -73.9306114, + "maxlat": 40.8153306, + "maxlon": -73.9289370 + }, + "nodes": [ + 42728921, + 9903106240, + 9903106239, + 13039043490, + 42733681, + 11683939350, + 12162704264, + 12162704293, + 42741445 + ], + "geometry": [ + { "lat": 40.8153306, "lon": -73.9306114 }, + { "lat": 40.8153169, "lon": -73.9305328 }, + { "lat": 40.8153046, "lon": -73.9304772 }, + { "lat": 40.8151456, "lon": -73.9298729 }, + { "lat": 40.8151190, "lon": -73.9297710 }, + { "lat": 40.8150979, "lon": -73.9296865 }, + { "lat": 40.8149446, "lon": -73.9290846 }, + { "lat": 40.8149299, "lon": -73.9290294 }, + { "lat": 40.8149072, "lon": -73.9289370 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 140th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5699241, + "bounds": { + "minlat": 40.8133438, + "minlon": -73.9281846, + "maxlat": 40.8139741, + "maxlon": -73.9267219 + }, + "nodes": [ + 42777926, + 13040585101, + 3647468746, + 42743872, + 3647468747, + 8575374009, + 13040633208, + 42775133 + ], + "geometry": [ + { "lat": 40.8139741, "lon": -73.9281846 }, + { "lat": 40.8139441, "lon": -73.9281084 }, + { "lat": 40.8136462, "lon": -73.9273737 }, + { "lat": 40.8135925, "lon": -73.9272946 }, + { "lat": 40.8135434, "lon": -73.9272256 }, + { "lat": 40.8133911, "lon": -73.9268405 }, + { "lat": 40.8133720, "lon": -73.9267927 }, + { "lat": 40.8133438, "lon": -73.9267219 } + ], + "tags": { + "highway": "residential", + "name": "East 140th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5699242, + "bounds": { + "minlat": 40.8054522, + "minlon": -73.9105043, + "maxlat": 40.8055684, + "maxlon": -73.9102195 + }, + "nodes": [ + 42753403, + 10899514804, + 588114535 + ], + "geometry": [ + { "lat": 40.8055684, "lon": -73.9105043 }, + { "lat": 40.8055174, "lon": -73.9103793 }, + { "lat": 40.8054522, "lon": -73.9102195 } + ], + "tags": { + "highway": "residential", + "name": "East 140th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5699243, + "bounds": { + "minlat": 40.8089253, + "minlon": -73.9219307, + "maxlat": 40.8104007, + "maxlon": -73.9184301 + }, + "nodes": [ + 42761237, + 9908621378, + 9632503726, + 9908650977, + 42761030 + ], + "geometry": [ + { "lat": 40.8104007, "lon": -73.9219307 }, + { "lat": 40.8103502, "lon": -73.9218118 }, + { "lat": 40.8091193, "lon": -73.9188838 }, + { "lat": 40.8089641, "lon": -73.9185256 }, + { "lat": 40.8089253, "lon": -73.9184301 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 140th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5699244, + "bounds": { + "minlat": 40.8113502, + "minlon": -73.9255654, + "maxlat": 40.8119347, + "maxlon": -73.9241767 + }, + "nodes": [ + 42768489, + 12040837118, + 9908621516, + 9908621515, + 42732876 + ], + "geometry": [ + { "lat": 40.8119347, "lon": -73.9255654 }, + { "lat": 40.8118881, "lon": -73.9254546 }, + { "lat": 40.8114977, "lon": -73.9245271 }, + { "lat": 40.8114118, "lon": -73.9243213 }, + { "lat": 40.8113502, "lon": -73.9241767 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 140th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5699255, + "bounds": { + "minlat": 40.8794813, + "minlon": -73.9139529, + "maxlat": 40.8808154, + "maxlon": -73.9120522 + }, + "nodes": [ + 42778124, + 1544847092, + 1544847032, + 1544847048, + 1544847061, + 1544847078, + 6882537200, + 42746787 + ], + "geometry": [ + { "lat": 40.8794813, "lon": -73.9139529 }, + { "lat": 40.8795572, "lon": -73.9137685 }, + { "lat": 40.8796047, "lon": -73.9136275 }, + { "lat": 40.8796789, "lon": -73.9133919 }, + { "lat": 40.8798034, "lon": -73.9131320 }, + { "lat": 40.8806603, "lon": -73.9121963 }, + { "lat": 40.8807616, "lon": -73.9120860 }, + { "lat": 40.8808154, "lon": -73.9120522 } + ], + "tags": { + "highway": "residential", + "name": "Edgehill Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edgehill", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5699256, + "bounds": { + "minlat": 40.8794017, + "minlon": -73.9140574, + "maxlat": 40.8803279, + "maxlon": -73.9136493 + }, + "nodes": [ + 11250077537, + 42778124, + 1544847115, + 1544847059, + 1544847050, + 42778131, + 11250047185, + 13068228255, + 7941613937, + 42773855 + ], + "geometry": [ + { "lat": 40.8794017, "lon": -73.9140574 }, + { "lat": 40.8794813, "lon": -73.9139529 }, + { "lat": 40.8795597, "lon": -73.9138838 }, + { "lat": 40.8796728, "lon": -73.9138052 }, + { "lat": 40.8798942, "lon": -73.9136871 }, + { "lat": 40.8800522, "lon": -73.9136635 }, + { "lat": 40.8801799, "lon": -73.9136569 }, + { "lat": 40.8802440, "lon": -73.9136512 }, + { "lat": 40.8802785, "lon": -73.9136518 }, + { "lat": 40.8803279, "lon": -73.9136493 } + ], + "tags": { + "highway": "residential", + "name": "Edgehill Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edgehill", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 5699273, + "bounds": { + "minlat": 40.8021329, + "minlon": -73.9182683, + "maxlat": 40.8029463, + "maxlon": -73.9163480 + }, + "nodes": [ + 471247682, + 13733745016, + 13071708893, + 42777375, + 13071708894, + 13071708895, + 42743555, + 595800943 + ], + "geometry": [ + { "lat": 40.8029463, "lon": -73.9182683 }, + { "lat": 40.8029019, "lon": -73.9181630 }, + { "lat": 40.8028257, "lon": -73.9179824 }, + { "lat": 40.8026701, "lon": -73.9176135 }, + { "lat": 40.8024720, "lon": -73.9171445 }, + { "lat": 40.8024169, "lon": -73.9170141 }, + { "lat": 40.8023426, "lon": -73.9168382 }, + { "lat": 40.8021329, "lon": -73.9163480 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "15 mph", + "name": "East 133rd Street", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "133rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 5699290, + "bounds": { + "minlat": 40.8190183, + "minlon": -73.9300584, + "maxlat": 40.8192304, + "maxlon": -73.9292342 + }, + "nodes": [ + 9903127431, + 9903127439, + 9903127433, + 42734149 + ], + "geometry": [ + { "lat": 40.8192304, "lon": -73.9300584 }, + { "lat": 40.8190618, "lon": -73.9293786 }, + { "lat": 40.8190449, "lon": -73.9293218 }, + { "lat": 40.8190183, "lon": -73.9292342 } + ], + "tags": { + "busway:right": "lane", + "cycleway:right": "share_busway", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455", + "turn:lanes": "left|through|" + } +}, +{ + "type": "way", + "id": 5699313, + "bounds": { + "minlat": 40.8000377, + "minlon": -73.9182621, + "maxlat": 40.8015595, + "maxlon": -73.9171513 + }, + "nodes": [ + 100659881, + 9902723841 + ], + "geometry": [ + { "lat": 40.8015595, "lon": -73.9171513 }, + { "lat": 40.8000377, "lon": -73.9182621 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "destination:lanes": "New York Airports;Randalls Island;Queens|New York Airports;Randalls Island;Queens|Manhattan;Franklin Delano Roosevelt Drive|Manhattan;Franklin Delano Roosevelt Drive", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY;Queens, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Triborough;Brooklyn Queens", + "tiger:name_type_1": "Brg;Expy", + "toll": "yes", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 5699318, + "bounds": { + "minlat": 40.8528870, + "minlon": -73.9174300, + "maxlat": 40.8541120, + "maxlon": -73.9159100 + }, + "nodes": [ + 42779042, + 13000892238, + 42779038, + 42779036, + 42779028, + 42779024, + 42779020, + 42779016, + 42779013, + 42779008, + 42779000, + 42778995, + 42778991, + 42778990, + 42778988, + 13000892237, + 42778983 + ], + "geometry": [ + { "lat": 40.8528870, "lon": -73.9167590 }, + { "lat": 40.8529253, "lon": -73.9168353 }, + { "lat": 40.8532230, "lon": -73.9174300 }, + { "lat": 40.8533500, "lon": -73.9173960 }, + { "lat": 40.8534830, "lon": -73.9173410 }, + { "lat": 40.8536190, "lon": -73.9172620 }, + { "lat": 40.8537480, "lon": -73.9171640 }, + { "lat": 40.8538610, "lon": -73.9170540 }, + { "lat": 40.8539530, "lon": -73.9169460 }, + { "lat": 40.8540520, "lon": -73.9168040 }, + { "lat": 40.8540850, "lon": -73.9167220 }, + { "lat": 40.8541040, "lon": -73.9166410 }, + { "lat": 40.8541120, "lon": -73.9165570 }, + { "lat": 40.8541050, "lon": -73.9164500 }, + { "lat": 40.8540850, "lon": -73.9163610 }, + { "lat": 40.8538907, "lon": -73.9159937 }, + { "lat": 40.8538480, "lon": -73.9159100 } + ], + "tags": { + "highway": "residential", + "name": "Billingsley Terrace", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Billingsley", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5699338, + "bounds": { + "minlat": 40.8080070, + "minlon": -73.9143320, + "maxlat": 40.8096556, + "maxlon": -73.9133146 + }, + "nodes": [ + 42757452, + 42779294, + 42759546, + 8285359931, + 13809174851, + 42743438 + ], + "geometry": [ + { "lat": 40.8096556, "lon": -73.9133146 }, + { "lat": 40.8093460, "lon": -73.9135130 }, + { "lat": 40.8087230, "lon": -73.9138840 }, + { "lat": 40.8081220, "lon": -73.9142601 }, + { "lat": 40.8080735, "lon": -73.9142904 }, + { "lat": 40.8080070, "lon": -73.9143320 } + ], + "tags": { + "highway": "residential", + "name": "Beekman Avenue", + "name:etymology:wikidata": "Q76513505", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Beekman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5699371, + "bounds": { + "minlat": 40.8196040, + "minlon": -73.9273061, + "maxlat": 40.8203857, + "maxlon": -73.9269460 + }, + "nodes": [ + 42758665, + 13329984701, + 42733560 + ], + "geometry": [ + { "lat": 40.8203857, "lon": -73.9269460 }, + { "lat": 40.8196573, "lon": -73.9272815 }, + { "lat": 40.8196040, "lon": -73.9273061 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed:type": "US-NY:urban", + "name": "Cedar Lane", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cedar", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5699381, + "bounds": { + "minlat": 40.8275340, + "minlon": -73.9172249, + "maxlat": 40.8278099, + "maxlon": -73.9163800 + }, + "nodes": [ + 42779966, + 7668870510, + 9966006708, + 12038440146, + 42735831 + ], + "geometry": [ + { "lat": 40.8275340, "lon": -73.9163800 }, + { "lat": 40.8275746, "lon": -73.9165092 }, + { "lat": 40.8277607, "lon": -73.9170753 }, + { "lat": 40.8277769, "lon": -73.9171246 }, + { "lat": 40.8278099, "lon": -73.9172249 } + ], + "tags": { + "highway": "residential", + "name": "Bonner Place", + "name:etymology:wikidata": "Q19867337", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bonner", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5699400, + "bounds": { + "minlat": 40.8411320, + "minlon": -73.9239950, + "maxlat": 40.8423952, + "maxlon": -73.9230442 + }, + "nodes": [ + 42776417, + 13564503770, + 7308243661, + 7442778115 + ], + "geometry": [ + { "lat": 40.8411320, "lon": -73.9239950 }, + { "lat": 40.8411900, "lon": -73.9239513 }, + { "lat": 40.8423397, "lon": -73.9230860 }, + { "lat": 40.8423952, "lon": -73.9230442 } + ], + "tags": { + "highway": "residential", + "name": "Plimpton Avenue", + "name:etymology:wikidata": "Q5536449", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Plimpton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5699405, + "bounds": { + "minlat": 40.8585589, + "minlon": -73.9099573, + "maxlat": 40.8627926, + "maxlon": -73.9062392 + }, + "nodes": [ + 42731010, + 9903143788, + 9903143787, + 1764777808, + 9903143786, + 9903143785, + 42747812, + 8464067974, + 8464067981, + 10135688415, + 9625644980 + ], + "geometry": [ + { "lat": 40.8627926, "lon": -73.9062392 }, + { "lat": 40.8627456, "lon": -73.9062418 }, + { "lat": 40.8627146, "lon": -73.9062466 }, + { "lat": 40.8626819, "lon": -73.9062595 }, + { "lat": 40.8626513, "lon": -73.9062770 }, + { "lat": 40.8626255, "lon": -73.9062965 }, + { "lat": 40.8600399, "lon": -73.9086206 }, + { "lat": 40.8593821, "lon": -73.9091926 }, + { "lat": 40.8588466, "lon": -73.9096901 }, + { "lat": 40.8587543, "lon": -73.9097758 }, + { "lat": 40.8585589, "lon": -73.9099573 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Andrews Avenue North", + "name:etymology:wikidata": "Q56000453", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Andrews", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 5699413, + "bounds": { + "minlat": 40.8093460, + "minlon": -73.9144655, + "maxlat": 40.8096778, + "maxlon": -73.9135130 + }, + "nodes": [ + 5308552537, + 8571884302, + 42779294 + ], + "geometry": [ + { "lat": 40.8096778, "lon": -73.9144655 }, + { "lat": 40.8093827, "lon": -73.9136183 }, + { "lat": 40.8093460, "lon": -73.9135130 } + ], + "tags": { + "highway": "residential", + "name": "Beech Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Beech", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5699459, + "bounds": { + "minlat": 40.8530731, + "minlon": -73.9190820, + "maxlat": 40.8537665, + "maxlon": -73.9183924 + }, + "nodes": [ + 42780944, + 7621249005, + 7621249006, + 7621249007, + 7621249008, + 7621249013, + 7621249012, + 7621249011, + 7621249010, + 7621249009, + 7621249014, + 13068117110, + 42780947 + ], + "geometry": [ + { "lat": 40.8537665, "lon": -73.9183924 }, + { "lat": 40.8534597, "lon": -73.9186675 }, + { "lat": 40.8534291, "lon": -73.9186117 }, + { "lat": 40.8532964, "lon": -73.9187286 }, + { "lat": 40.8532812, "lon": -73.9187495 }, + { "lat": 40.8532707, "lon": -73.9187746 }, + { "lat": 40.8532715, "lon": -73.9187998 }, + { "lat": 40.8532779, "lon": -73.9188223 }, + { "lat": 40.8532874, "lon": -73.9188445 }, + { "lat": 40.8532993, "lon": -73.9188717 }, + { "lat": 40.8532775, "lon": -73.9188903 }, + { "lat": 40.8530988, "lon": -73.9190579 }, + { "lat": 40.8530731, "lon": -73.9190820 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Fordham Place", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5699463, + "bounds": { + "minlat": 40.8204065, + "minlon": -73.9139589, + "maxlat": 40.8237172, + "maxlon": -73.9122075 + }, + "nodes": [ + 42748177, + 9917683061, + 42780981, + 42770805, + 42780977, + 42744090, + 13547349200, + 42760883 + ], + "geometry": [ + { "lat": 40.8237172, "lon": -73.9122075 }, + { "lat": 40.8235858, "lon": -73.9122749 }, + { "lat": 40.8230750, "lon": -73.9125410 }, + { "lat": 40.8224443, "lon": -73.9128742 }, + { "lat": 40.8218070, "lon": -73.9132150 }, + { "lat": 40.8211690, "lon": -73.9135530 }, + { "lat": 40.8204517, "lon": -73.9139349 }, + { "lat": 40.8204065, "lon": -73.9139589 } + ], + "tags": { + "highway": "residential", + "name": "Elton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Elton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5699468, + "bounds": { + "minlat": 40.8521292, + "minlon": -73.9207623, + "maxlat": 40.8521804, + "maxlon": -73.9206655 + }, + "nodes": [ + 42732710, + 595750838 + ], + "geometry": [ + { "lat": 40.8521292, "lon": -73.9206655 }, + { "lat": 40.8521804, "lon": -73.9207623 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Roberto Clemente State Park Bridge", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Harlem River Park", + "tiger:name_type": "Brg", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5699472, + "bounds": { + "minlat": 40.8499772, + "minlon": -73.9153641, + "maxlat": 40.8519903, + "maxlon": -73.9092086 + }, + "nodes": [ + 42736319, + 9918211890, + 2052618444, + 2052618445, + 9918211891, + 6701092183, + 6701092184, + 9918211892, + 9918211893, + 42745946, + 9918211894, + 6701112885, + 9918211895, + 9918211896, + 42758014, + 6701112886, + 9918211898, + 6701043213, + 6701112887, + 9918211899, + 42781092, + 9918211900, + 6701043214, + 6701043215, + 9918211901, + 42740175, + 9918211902, + 6701043216, + 5327538999, + 9918211903, + 6701043217, + 6701043218, + 9918211904, + 42781101, + 9918264447, + 5327538998, + 9918264448, + 42784319, + 2329087594, + 9918264449, + 42784313, + 9918264450, + 42784310, + 9918264451, + 6701092179, + 42758066, + 9918264452, + 6701092177, + 9918264454, + 2329087587, + 9918264455, + 9918264456, + 6701092178, + 6701092176, + 9918264457, + 42720029, + 6701092175, + 9918264458, + 6701092171, + 2808768379, + 7305820754, + 2329087591, + 9918264459, + 9918264460, + 8463760576, + 2808771112, + 42769956 + ], + "geometry": [ + { "lat": 40.8518036, "lon": -73.9092086 }, + { "lat": 40.8518430, "lon": -73.9092917 }, + { "lat": 40.8518765, "lon": -73.9093737 }, + { "lat": 40.8519069, "lon": -73.9094813 }, + { "lat": 40.8519330, "lon": -73.9095920 }, + { "lat": 40.8519530, "lon": -73.9096941 }, + { "lat": 40.8519701, "lon": -73.9098119 }, + { "lat": 40.8519785, "lon": -73.9099159 }, + { "lat": 40.8519849, "lon": -73.9100454 }, + { "lat": 40.8519903, "lon": -73.9101716 }, + { "lat": 40.8519868, "lon": -73.9102888 }, + { "lat": 40.8519823, "lon": -73.9104117 }, + { "lat": 40.8519738, "lon": -73.9105200 }, + { "lat": 40.8519638, "lon": -73.9106269 }, + { "lat": 40.8519485, "lon": -73.9107566 }, + { "lat": 40.8519238, "lon": -73.9108888 }, + { "lat": 40.8518995, "lon": -73.9109884 }, + { "lat": 40.8518647, "lon": -73.9111043 }, + { "lat": 40.8518311, "lon": -73.9112118 }, + { "lat": 40.8517931, "lon": -73.9113129 }, + { "lat": 40.8517546, "lon": -73.9114027 }, + { "lat": 40.8517079, "lon": -73.9114927 }, + { "lat": 40.8516560, "lon": -73.9115804 }, + { "lat": 40.8516022, "lon": -73.9116646 }, + { "lat": 40.8515326, "lon": -73.9117570 }, + { "lat": 40.8514486, "lon": -73.9118506 }, + { "lat": 40.8513789, "lon": -73.9119212 }, + { "lat": 40.8512962, "lon": -73.9119890 }, + { "lat": 40.8512167, "lon": -73.9120475 }, + { "lat": 40.8511402, "lon": -73.9120934 }, + { "lat": 40.8510585, "lon": -73.9121346 }, + { "lat": 40.8509680, "lon": -73.9121701 }, + { "lat": 40.8508547, "lon": -73.9122045 }, + { "lat": 40.8507775, "lon": -73.9122263 }, + { "lat": 40.8507194, "lon": -73.9122503 }, + { "lat": 40.8506446, "lon": -73.9122808 }, + { "lat": 40.8505724, "lon": -73.9123240 }, + { "lat": 40.8505038, "lon": -73.9123737 }, + { "lat": 40.8504397, "lon": -73.9124279 }, + { "lat": 40.8503764, "lon": -73.9124936 }, + { "lat": 40.8503225, "lon": -73.9125646 }, + { "lat": 40.8502749, "lon": -73.9126313 }, + { "lat": 40.8502332, "lon": -73.9127041 }, + { "lat": 40.8502023, "lon": -73.9127632 }, + { "lat": 40.8501736, "lon": -73.9128268 }, + { "lat": 40.8501245, "lon": -73.9129680 }, + { "lat": 40.8500883, "lon": -73.9131079 }, + { "lat": 40.8500677, "lon": -73.9131976 }, + { "lat": 40.8500472, "lon": -73.9133190 }, + { "lat": 40.8500272, "lon": -73.9134552 }, + { "lat": 40.8500098, "lon": -73.9135896 }, + { "lat": 40.8499974, "lon": -73.9137262 }, + { "lat": 40.8499889, "lon": -73.9138614 }, + { "lat": 40.8499795, "lon": -73.9139977 }, + { "lat": 40.8499772, "lon": -73.9140624 }, + { "lat": 40.8499804, "lon": -73.9141481 }, + { "lat": 40.8499945, "lon": -73.9142454 }, + { "lat": 40.8500197, "lon": -73.9143546 }, + { "lat": 40.8500528, "lon": -73.9144725 }, + { "lat": 40.8500860, "lon": -73.9145731 }, + { "lat": 40.8501253, "lon": -73.9146855 }, + { "lat": 40.8501689, "lon": -73.9147989 }, + { "lat": 40.8502273, "lon": -73.9149376 }, + { "lat": 40.8502904, "lon": -73.9150729 }, + { "lat": 40.8503536, "lon": -73.9151998 }, + { "lat": 40.8503861, "lon": -73.9152682 }, + { "lat": 40.8504430, "lon": -73.9153641 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West Tremont Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 5699477, + "bounds": { + "minlat": 40.8478688, + "minlon": -73.9116842, + "maxlat": 40.8486516, + "maxlon": -73.9077695 + }, + "nodes": [ + 42736334, + 9918211913, + 42748535, + 13038656265, + 42733809, + 13038656272, + 13000971507, + 42735759, + 13000952106, + 13000971503, + 12748250459, + 2028383646 + ], + "geometry": [ + { "lat": 40.8486516, "lon": -73.9116842 }, + { "lat": 40.8486158, "lon": -73.9115168 }, + { "lat": 40.8484427, "lon": -73.9106815 }, + { "lat": 40.8482749, "lon": -73.9098444 }, + { "lat": 40.8482560, "lon": -73.9097490 }, + { "lat": 40.8482398, "lon": -73.9096662 }, + { "lat": 40.8480448, "lon": -73.9086743 }, + { "lat": 40.8480275, "lon": -73.9085863 }, + { "lat": 40.8480149, "lon": -73.9085230 }, + { "lat": 40.8480114, "lon": -73.9085052 }, + { "lat": 40.8478874, "lon": -73.9078794 }, + { "lat": 40.8478688, "lon": -73.9077695 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 176th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "176th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 5699508, + "bounds": { + "minlat": 40.8264029, + "minlon": -73.9211560, + "maxlat": 40.8264819, + "maxlon": -73.9211006 + }, + "nodes": [ + 42748152, + 2408448899 + ], + "geometry": [ + { "lat": 40.8264029, "lon": -73.9211560 }, + { "lat": 40.8264819, "lon": -73.9211006 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Sheridan Avenue", + "name:etymology:wikidata": "Q355452", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sheridan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 5699528, + "bounds": { + "minlat": 40.8241067, + "minlon": -73.9167721, + "maxlat": 40.8243888, + "maxlon": -73.9158849 + }, + "nodes": [ + 42750611, + 9917683047, + 8575396943, + 9910723146, + 42781652 + ], + "geometry": [ + { "lat": 40.8241067, "lon": -73.9158849 }, + { "lat": 40.8241341, "lon": -73.9159718 }, + { "lat": 40.8243476, "lon": -73.9166482 }, + { "lat": 40.8243654, "lon": -73.9167023 }, + { "lat": 40.8243888, "lon": -73.9167721 } + ], + "tags": { + "highway": "residential", + "name": "East 160th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "160th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5699529, + "bounds": { + "minlat": 40.8197383, + "minlon": -73.9077500, + "maxlat": 40.8211680, + "maxlon": -73.9017830 + }, + "nodes": [ + 12197780440, + 13399400416, + 8602600478, + 13399451606, + 42765279, + 13625080415, + 42763815, + 13625080420, + 42780693, + 42764673, + 5482339111, + 42774198, + 5482340573, + 8602600502, + 42735037 + ], + "geometry": [ + { "lat": 40.8197383, "lon": -73.9017830 }, + { "lat": 40.8197451, "lon": -73.9018024 }, + { "lat": 40.8199999, "lon": -73.9028766 }, + { "lat": 40.8200097, "lon": -73.9029178 }, + { "lat": 40.8200270, "lon": -73.9029900 }, + { "lat": 40.8200498, "lon": -73.9030847 }, + { "lat": 40.8202960, "lon": -73.9041070 }, + { "lat": 40.8203191, "lon": -73.9042034 }, + { "lat": 40.8205640, "lon": -73.9052260 }, + { "lat": 40.8207504, "lon": -73.9059992 }, + { "lat": 40.8208542, "lon": -73.9064347 }, + { "lat": 40.8209440, "lon": -73.9068110 }, + { "lat": 40.8210593, "lon": -73.9072944 }, + { "lat": 40.8211368, "lon": -73.9076192 }, + { "lat": 40.8211680, "lon": -73.9077500 } + ], + "tags": { + "highway": "residential", + "name": "East 160th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "160th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5699535, + "bounds": { + "minlat": 40.8375839, + "minlon": -73.9169170, + "maxlat": 40.8383360, + "maxlon": -73.9149588 + }, + "nodes": [ + 13086709882, + 12739283297, + 10034673488, + 13036979008, + 42733764 + ], + "geometry": [ + { "lat": 40.8375839, "lon": -73.9149588 }, + { "lat": 40.8376201, "lon": -73.9150480 }, + { "lat": 40.8382845, "lon": -73.9167828 }, + { "lat": 40.8383106, "lon": -73.9168507 }, + { "lat": 40.8383360, "lon": -73.9169170 } + ], + "tags": { + "highway": "residential", + "name": "Marcy Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5699547, + "bounds": { + "minlat": 40.8259960, + "minlon": -73.9095560, + "maxlat": 40.8265110, + "maxlon": -73.9079310 + }, + "nodes": [ + 42768565, + 13247238277, + 8184243117, + 42730082 + ], + "geometry": [ + { "lat": 40.8259960, "lon": -73.9079310 }, + { "lat": 40.8260341, "lon": -73.9080512 }, + { "lat": 40.8264681, "lon": -73.9094207 }, + { "lat": 40.8265110, "lon": -73.9095560 } + ], + "tags": { + "highway": "residential", + "name": "Weiher Court", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Weiher", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5699562, + "bounds": { + "minlat": 40.8797735, + "minlon": -73.9190307, + "maxlat": 40.8800200, + "maxlon": -73.9187402 + }, + "nodes": [ + 3966664768, + 12064288838, + 60915092, + 252128249 + ], + "geometry": [ + { "lat": 40.8797735, "lon": -73.9190307 }, + { "lat": 40.8798583, "lon": -73.9189268 }, + { "lat": 40.8799397, "lon": -73.9188329 }, + { "lat": 40.8800200, "lon": -73.9187402 } + ], + "tags": { + "destination:lanes": "none|West 232 Street|Kappock Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "yes", + "turn:lanes": "||slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 5699583, + "bounds": { + "minlat": 40.8376690, + "minlon": -73.9197079, + "maxlat": 40.8378815, + "maxlon": -73.9192020 + }, + "nodes": [ + 42736029, + 10877635284, + 42726506 + ], + "geometry": [ + { "lat": 40.8378815, "lon": -73.9197079 }, + { "lat": 40.8377217, "lon": -73.9193261 }, + { "lat": 40.8376690, "lon": -73.9192020 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "horse": "yes", + "name": "East 169th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5699584, + "bounds": { + "minlat": 40.8347740, + "minlon": -73.9252650, + "maxlat": 40.8372079, + "maxlon": -73.9233038 + }, + "nodes": [ + 42734985, + 5818174266, + 5818174267, + 5818174265, + 42736635, + 42782657 + ], + "geometry": [ + { "lat": 40.8372079, "lon": -73.9233038 }, + { "lat": 40.8371869, "lon": -73.9233665 }, + { "lat": 40.8371694, "lon": -73.9234075 }, + { "lat": 40.8371285, "lon": -73.9234467 }, + { "lat": 40.8360200, "lon": -73.9242980 }, + { "lat": 40.8347740, "lon": -73.9252650 } + ], + "tags": { + "highway": "residential", + "name": "Anderson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5699612, + "bounds": { + "minlat": 40.8424092, + "minlon": -73.9135795, + "maxlat": 40.8428877, + "maxlon": -73.9124205 + }, + "nodes": [ + 2408355550, + 12529489642, + 5481864184, + 13017732188, + 42733789 + ], + "geometry": [ + { "lat": 40.8424092, "lon": -73.9124205 }, + { "lat": 40.8424346, "lon": -73.9124817 }, + { "lat": 40.8427605, "lon": -73.9132677 }, + { "lat": 40.8428567, "lon": -73.9135036 }, + { "lat": 40.8428877, "lon": -73.9135795 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Hawkstone Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Hawkstone", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5699628, + "bounds": { + "minlat": 40.8305755, + "minlon": -73.9315362, + "maxlat": 40.8308518, + "maxlon": -73.9307151 + }, + "nodes": [ + 42737568, + 13247454367, + 8427906334, + 8285601008, + 9910769980, + 42734262 + ], + "geometry": [ + { "lat": 40.8308518, "lon": -73.9315362 }, + { "lat": 40.8308434, "lon": -73.9315118 }, + { "lat": 40.8307551, "lon": -73.9312557 }, + { "lat": 40.8306248, "lon": -73.9308637 }, + { "lat": 40.8306073, "lon": -73.9308078 }, + { "lat": 40.8305755, "lon": -73.9307151 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 161st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 5699639, + "bounds": { + "minlat": 40.8452205, + "minlon": -73.9211841, + "maxlat": 40.8452496, + "maxlon": -73.9207054 + }, + "nodes": [ + 2808715494, + 12046833159, + 12046833158, + 2808715493, + 12046833157, + 12046833156, + 2808715492, + 12046833155, + 2808715491, + 8575373973 + ], + "geometry": [ + { "lat": 40.8452496, "lon": -73.9211841 }, + { "lat": 40.8452399, "lon": -73.9211707 }, + { "lat": 40.8452324, "lon": -73.9211531 }, + { "lat": 40.8452265, "lon": -73.9211342 }, + { "lat": 40.8452226, "lon": -73.9211125 }, + { "lat": 40.8452208, "lon": -73.9210903 }, + { "lat": 40.8452205, "lon": -73.9210642 }, + { "lat": 40.8452233, "lon": -73.9209124 }, + { "lat": 40.8452248, "lon": -73.9208764 }, + { "lat": 40.8452358, "lon": -73.9207054 } + ], + "tags": { + "highway": "unclassified", + "name": "Cross Bronx Expressway Service Road", + "oneway": "yes", + "tiger:cfcc": "A64", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cross Bronx Exwy Service Road", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5699648, + "bounds": { + "minlat": 40.8146445, + "minlon": -73.9095210, + "maxlat": 40.8148241, + "maxlon": -73.9085800 + }, + "nodes": [ + 42764641, + 13809174738, + 8341674515, + 42774185 + ], + "geometry": [ + { "lat": 40.8146445, "lon": -73.9085800 }, + { "lat": 40.8146622, "lon": -73.9086726 }, + { "lat": 40.8147482, "lon": -73.9091231 }, + { "lat": 40.8148241, "lon": -73.9095210 } + ], + "tags": { + "highway": "residential", + "name": "Pontiac Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Pontiac", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5699653, + "bounds": { + "minlat": 40.8521315, + "minlon": -73.9174174, + "maxlat": 40.8542288, + "maxlon": -73.9155249 + }, + "nodes": [ + 42781112, + 12697098212, + 8285583682, + 42779042, + 42778983, + 8463760568, + 42744007 + ], + "geometry": [ + { "lat": 40.8521315, "lon": -73.9174174 }, + { "lat": 40.8522075, "lon": -73.9173520 }, + { "lat": 40.8522447, "lon": -73.9173200 }, + { "lat": 40.8528870, "lon": -73.9167590 }, + { "lat": 40.8538480, "lon": -73.9159100 }, + { "lat": 40.8541798, "lon": -73.9156379 }, + { "lat": 40.8542288, "lon": -73.9155249 } + ], + "tags": { + "highway": "residential", + "name": "Phelan Place", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Phelan", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 5699658, + "bounds": { + "minlat": 40.8125697, + "minlon": -73.9292631, + "maxlat": 40.8161372, + "maxlon": -73.9266714 + }, + "nodes": [ + 42779702, + 6324329766, + 9163775401, + 9910711693, + 9163775400, + 5482271962, + 13040585105, + 42777926, + 13040585102, + 7631216011, + 13040578927, + 42743502, + 13040578924, + 9910711698, + 42777866 + ], + "geometry": [ + { "lat": 40.8125697, "lon": -73.9292631 }, + { "lat": 40.8125981, "lon": -73.9292010 }, + { "lat": 40.8126146, "lon": -73.9291673 }, + { "lat": 40.8126393, "lon": -73.9291358 }, + { "lat": 40.8126820, "lon": -73.9290972 }, + { "lat": 40.8127391, "lon": -73.9290538 }, + { "lat": 40.8139256, "lon": -73.9282186 }, + { "lat": 40.8139741, "lon": -73.9281846 }, + { "lat": 40.8140381, "lon": -73.9281398 }, + { "lat": 40.8143651, "lon": -73.9279118 }, + { "lat": 40.8150067, "lon": -73.9274603 }, + { "lat": 40.8150633, "lon": -73.9274209 }, + { "lat": 40.8151236, "lon": -73.9273786 }, + { "lat": 40.8160759, "lon": -73.9267113 }, + { "lat": 40.8161372, "lon": -73.9266714 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 5699659, + "bounds": { + "minlat": 40.8233966, + "minlon": -73.9183260, + "maxlat": 40.8248635, + "maxlon": -73.9160850 + }, + "nodes": [ + 42783436, + 12038478946, + 42770796, + 42781652, + 9910723149, + 42748169 + ], + "geometry": [ + { "lat": 40.8233966, "lon": -73.9183260 }, + { "lat": 40.8234406, "lon": -73.9182581 }, + { "lat": 40.8238867, "lon": -73.9175705 }, + { "lat": 40.8243888, "lon": -73.9167721 }, + { "lat": 40.8247758, "lon": -73.9162081 }, + { "lat": 40.8248635, "lon": -73.9160850 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk": "both", + "source": "Bing aerial imagery", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 5699660, + "bounds": { + "minlat": 40.8108830, + "minlon": -73.9311746, + "maxlat": 40.8116153, + "maxlon": -73.9308638 + }, + "nodes": [ + 42747169, + 9910711676, + 9910711677, + 7554088548, + 9910711678, + 7557653509, + 9910711679, + 9910711680, + 9910711681, + 9910711682, + 2408984076 + ], + "geometry": [ + { "lat": 40.8108830, "lon": -73.9308638 }, + { "lat": 40.8109999, "lon": -73.9309534 }, + { "lat": 40.8110976, "lon": -73.9310241 }, + { "lat": 40.8111909, "lon": -73.9310829 }, + { "lat": 40.8112774, "lon": -73.9311202 }, + { "lat": 40.8113601, "lon": -73.9311481 }, + { "lat": 40.8114252, "lon": -73.9311617 }, + { "lat": 40.8114902, "lon": -73.9311724 }, + { "lat": 40.8115340, "lon": -73.9311746 }, + { "lat": 40.8115746, "lon": -73.9311707 }, + { "lat": 40.8116153, "lon": -73.9311607 } + ], + "tags": { + "highway": "residential", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5699664, + "bounds": { + "minlat": 40.8317680, + "minlon": -73.9080240, + "maxlat": 40.8380180, + "maxlon": -73.9045090 + }, + "nodes": [ + 42742463, + 13146491651, + 13625142383, + 42782636, + 13625142377, + 6335940265, + 6335940267, + 6335940262, + 42739172, + 5481921482, + 5481921478, + 1657546495, + 42762942, + 5487794022, + 42763615 + ], + "geometry": [ + { "lat": 40.8317680, "lon": -73.9080240 }, + { "lat": 40.8318559, "lon": -73.9079739 }, + { "lat": 40.8333454, "lon": -73.9071258 }, + { "lat": 40.8334170, "lon": -73.9070850 }, + { "lat": 40.8334945, "lon": -73.9070413 }, + { "lat": 40.8336885, "lon": -73.9069319 }, + { "lat": 40.8342893, "lon": -73.9065931 }, + { "lat": 40.8348676, "lon": -73.9062670 }, + { "lat": 40.8357240, "lon": -73.9057840 }, + { "lat": 40.8361373, "lon": -73.9055552 }, + { "lat": 40.8363571, "lon": -73.9054335 }, + { "lat": 40.8364411, "lon": -73.9053870 }, + { "lat": 40.8365080, "lon": -73.9053500 }, + { "lat": 40.8370185, "lon": -73.9050657 }, + { "lat": 40.8380180, "lon": -73.9045090 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:separation": "jersey_barrier", + "highway": "residential", + "name": "Park Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:lane:left": "no_parking", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 5699665, + "bounds": { + "minlat": 40.8254646, + "minlon": -73.9159214, + "maxlat": 40.8279143, + "maxlon": -73.9121734 + }, + "nodes": [ + 2827547781, + 12038440375, + 12038440074, + 42746974, + 42739715, + 10558971191, + 12038440167, + 3640190317, + 12038440172, + 42783589 + ], + "geometry": [ + { "lat": 40.8279143, "lon": -73.9121734 }, + { "lat": 40.8278354, "lon": -73.9122148 }, + { "lat": 40.8278208, "lon": -73.9122225 }, + { "lat": 40.8269240, "lon": -73.9136310 }, + { "lat": 40.8263125, "lon": -73.9145842 }, + { "lat": 40.8259004, "lon": -73.9152214 }, + { "lat": 40.8258235, "lon": -73.9153402 }, + { "lat": 40.8257710, "lon": -73.9154214 }, + { "lat": 40.8257079, "lon": -73.9155244 }, + { "lat": 40.8254646, "lon": -73.9159214 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 5699668, + "bounds": { + "minlat": 40.8433092, + "minlon": -73.9217440, + "maxlat": 40.8443660, + "maxlon": -73.9191871 + }, + "nodes": [ + 42759768, + 8575396972, + 42735011, + 5762103018, + 5762103014, + 42751999, + 42780103 + ], + "geometry": [ + { "lat": 40.8433092, "lon": -73.9191871 }, + { "lat": 40.8433615, "lon": -73.9193132 }, + { "lat": 40.8436610, "lon": -73.9200350 }, + { "lat": 40.8436964, "lon": -73.9201184 }, + { "lat": 40.8440373, "lon": -73.9209218 }, + { "lat": 40.8440662, "lon": -73.9209903 }, + { "lat": 40.8443660, "lon": -73.9217440 } + ], + "tags": { + "highway": "residential", + "name": "West 172nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "172nd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5699669, + "bounds": { + "minlat": 40.8422394, + "minlon": -73.9179749, + "maxlat": 40.8423605, + "maxlon": -73.9161840 + }, + "nodes": [ + 42736350, + 2810575220, + 7950889856, + 13247381536, + 42740208, + 7950889857, + 13247275889, + 42770671 + ], + "geometry": [ + { "lat": 40.8423350, "lon": -73.9161840 }, + { "lat": 40.8423605, "lon": -73.9163616 }, + { "lat": 40.8422668, "lon": -73.9174956 }, + { "lat": 40.8422600, "lon": -73.9175782 }, + { "lat": 40.8422520, "lon": -73.9176784 }, + { "lat": 40.8422472, "lon": -73.9177908 }, + { "lat": 40.8422454, "lon": -73.9178314 }, + { "lat": 40.8422394, "lon": -73.9179749 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "West 172nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "172nd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5699678, + "bounds": { + "minlat": 40.8214860, + "minlon": -73.9165732, + "maxlat": 40.8228337, + "maxlon": -73.9121680 + }, + "nodes": [ + 42750607, + 9910723128, + 5482222777, + 5482222776, + 9632503737, + 12040128251, + 42776441, + 12040128252, + 5482222763, + 42780977, + 5482222756, + 5482340528, + 42768540 + ], + "geometry": [ + { "lat": 40.8228337, "lon": -73.9165732 }, + { "lat": 40.8228148, "lon": -73.9164794 }, + { "lat": 40.8227246, "lon": -73.9161883 }, + { "lat": 40.8225960, "lon": -73.9158034 }, + { "lat": 40.8225484, "lon": -73.9156464 }, + { "lat": 40.8223395, "lon": -73.9149570 }, + { "lat": 40.8223050, "lon": -73.9148430 }, + { "lat": 40.8222744, "lon": -73.9147431 }, + { "lat": 40.8219270, "lon": -73.9136073 }, + { "lat": 40.8218070, "lon": -73.9132150 }, + { "lat": 40.8216933, "lon": -73.9128468 }, + { "lat": 40.8216695, "lon": -73.9127666 }, + { "lat": 40.8214860, "lon": -73.9121680 } + ], + "tags": { + "highway": "residential", + "name": "East 158th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5699679, + "bounds": { + "minlat": 40.8263165, + "minlon": -73.9265590, + "maxlat": 40.8265860, + "maxlon": -73.9257478 + }, + "nodes": [ + 13038737292, + 8285603933, + 13038604266 + ], + "geometry": [ + { "lat": 40.8265860, "lon": -73.9265590 }, + { "lat": 40.8265742, "lon": -73.9265219 }, + { "lat": 40.8263165, "lon": -73.9257478 } + ], + "tags": { + "highway": "residential", + "name": "East 158th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5699680, + "bounds": { + "minlat": 40.8254855, + "minlon": -73.9248530, + "maxlat": 40.8259674, + "maxlon": -73.9236586 + }, + "nodes": [ + 42733711, + 9166351224, + 10133472991, + 9166351221, + 9166351223, + 9166351222, + 5163203688, + 12162740288, + 9910729401 + ], + "geometry": [ + { "lat": 40.8259674, "lon": -73.9248530 }, + { "lat": 40.8259057, "lon": -73.9247999 }, + { "lat": 40.8258973, "lon": -73.9247920 }, + { "lat": 40.8258734, "lon": -73.9247664 }, + { "lat": 40.8258556, "lon": -73.9247408 }, + { "lat": 40.8258334, "lon": -73.9247011 }, + { "lat": 40.8258171, "lon": -73.9246560 }, + { "lat": 40.8255070, "lon": -73.9237229 }, + { "lat": 40.8254855, "lon": -73.9236586 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 158th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_left_1": "10451" + } +}, +{ + "type": "way", + "id": 5699681, + "bounds": { + "minlat": 40.8233966, + "minlon": -73.9194039, + "maxlat": 40.8238624, + "maxlon": -73.9183260 + }, + "nodes": [ + 42783436, + 9910723133, + 9910723134, + 9910723135, + 9910723136, + 9910723137, + 4606818798, + 13703568516, + 9910723138, + 42763590 + ], + "geometry": [ + { "lat": 40.8233966, "lon": -73.9183260 }, + { "lat": 40.8234682, "lon": -73.9184526 }, + { "lat": 40.8235997, "lon": -73.9187131 }, + { "lat": 40.8236386, "lon": -73.9187788 }, + { "lat": 40.8236692, "lon": -73.9188280 }, + { "lat": 40.8236886, "lon": -73.9188693 }, + { "lat": 40.8237070, "lon": -73.9189211 }, + { "lat": 40.8237120, "lon": -73.9189358 }, + { "lat": 40.8238339, "lon": -73.9192966 }, + { "lat": 40.8238624, "lon": -73.9194039 } + ], + "tags": { + "highway": "residential", + "name": "East 158th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5699682, + "bounds": { + "minlat": 40.8189087, + "minlon": -73.9091810, + "maxlat": 40.8203500, + "maxlon": -73.9031140 + }, + "nodes": [ + 42760457, + 13399383278, + 8454365547, + 42765276, + 5487927891, + 8602649366, + 13399451603, + 42763809, + 13399451602, + 42780689, + 42764670, + 5482339112, + 42774194, + 8602649346, + 42735031, + 8602844000, + 42756074 + ], + "geometry": [ + { "lat": 40.8189087, "lon": -73.9031140 }, + { "lat": 40.8189474, "lon": -73.9033174 }, + { "lat": 40.8189535, "lon": -73.9033582 }, + { "lat": 40.8189680, "lon": -73.9034370 }, + { "lat": 40.8190855, "lon": -73.9039079 }, + { "lat": 40.8192056, "lon": -73.9044072 }, + { "lat": 40.8192223, "lon": -73.9044766 }, + { "lat": 40.8192390, "lon": -73.9045460 }, + { "lat": 40.8192619, "lon": -73.9046414 }, + { "lat": 40.8195080, "lon": -73.9056650 }, + { "lat": 40.8196949, "lon": -73.9064337 }, + { "lat": 40.8197959, "lon": -73.9068616 }, + { "lat": 40.8198880, "lon": -73.9072520 }, + { "lat": 40.8200795, "lon": -73.9080471 }, + { "lat": 40.8201130, "lon": -73.9081860 }, + { "lat": 40.8203199, "lon": -73.9090545 }, + { "lat": 40.8203500, "lon": -73.9091810 } + ], + "tags": { + "highway": "residential", + "name": "East 158th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5699683, + "bounds": { + "minlat": 40.8206300, + "minlon": -73.9115192, + "maxlat": 40.8208979, + "maxlon": -73.9101244 + }, + "nodes": [ + 42761082, + 8233978557, + 5482340594, + 3638004393, + 8233978606, + 8233978553, + 42763187 + ], + "geometry": [ + { "lat": 40.8208979, "lon": -73.9115192 }, + { "lat": 40.8208804, "lon": -73.9114284 }, + { "lat": 40.8208688, "lon": -73.9113649 }, + { "lat": 40.8208586, "lon": -73.9113148 }, + { "lat": 40.8207105, "lon": -73.9105438 }, + { "lat": 40.8206517, "lon": -73.9102373 }, + { "lat": 40.8206300, "lon": -73.9101244 } + ], + "tags": { + "highway": "residential", + "name": "East 158th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5699694, + "bounds": { + "minlat": 40.8508433, + "minlon": -73.9084198, + "maxlat": 40.8513326, + "maxlon": -73.9076281 + }, + "nodes": [ + 42733821, + 13031190496, + 12832556089, + 42735771 + ], + "geometry": [ + { "lat": 40.8513326, "lon": -73.9084198 }, + { "lat": 40.8512856, "lon": -73.9083437 }, + { "lat": 40.8508982, "lon": -73.9077169 }, + { "lat": 40.8508433, "lon": -73.9076281 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 5699703, + "bounds": { + "minlat": 40.8189560, + "minlon": -73.9180110, + "maxlat": 40.8199950, + "maxlon": -73.9140310 + }, + "nodes": [ + 42750602, + 12040128370, + 12040128228, + 42776431, + 12040128230, + 13249095725, + 42780968, + 13249095723, + 13249081120, + 42768535 + ], + "geometry": [ + { "lat": 40.8199950, "lon": -73.9180110 }, + { "lat": 40.8199653, "lon": -73.9178962 }, + { "lat": 40.8195572, "lon": -73.9163179 }, + { "lat": 40.8195270, "lon": -73.9162010 }, + { "lat": 40.8195006, "lon": -73.9161001 }, + { "lat": 40.8191170, "lon": -73.9146363 }, + { "lat": 40.8190963, "lon": -73.9145572 }, + { "lat": 40.8190768, "lon": -73.9144842 }, + { "lat": 40.8189863, "lon": -73.9141448 }, + { "lat": 40.8189560, "lon": -73.9140310 } + ], + "tags": { + "highway": "residential", + "name": "East 154th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "154th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5699718, + "bounds": { + "minlat": 40.8500190, + "minlon": -73.9122263, + "maxlat": 40.8507775, + "maxlon": -73.9107125 + }, + "nodes": [ + 42781101, + 12739115601, + 42784330, + 42784333, + 42784328, + 42784325, + 42784323, + 42784316, + 42784306, + 42784302, + 42784288, + 42784284, + 42784280, + 42784276, + 42784267, + 42784263, + 42784260, + 42745939, + 9918211911, + 42736328 + ], + "geometry": [ + { "lat": 40.8507775, "lon": -73.9122263 }, + { "lat": 40.8507491, "lon": -73.9121135 }, + { "lat": 40.8507461, "lon": -73.9121016 }, + { "lat": 40.8507364, "lon": -73.9120627 }, + { "lat": 40.8507182, "lon": -73.9120342 }, + { "lat": 40.8506960, "lon": -73.9120130 }, + { "lat": 40.8506547, "lon": -73.9120118 }, + { "lat": 40.8506133, "lon": -73.9120259 }, + { "lat": 40.8505463, "lon": -73.9120636 }, + { "lat": 40.8504600, "lon": -73.9121251 }, + { "lat": 40.8503810, "lon": -73.9121779 }, + { "lat": 40.8503325, "lon": -73.9121814 }, + { "lat": 40.8502786, "lon": -73.9121579 }, + { "lat": 40.8502314, "lon": -73.9121213 }, + { "lat": 40.8502059, "lon": -73.9120632 }, + { "lat": 40.8501920, "lon": -73.9119880 }, + { "lat": 40.8501800, "lon": -73.9119180 }, + { "lat": 40.8501483, "lon": -73.9115972 }, + { "lat": 40.8500456, "lon": -73.9108566 }, + { "lat": 40.8500190, "lon": -73.9107125 } + ], + "tags": { + "highway": "residential", + "name": "West 177th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "177th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 5699719, + "bounds": { + "minlat": 40.8291400, + "minlon": -73.9094820, + "maxlat": 40.8295920, + "maxlon": -73.9081030 + }, + "nodes": [ + 42783502, + 12038478878, + 5482223734, + 8184221156, + 12038478853, + 42730093 + ], + "geometry": [ + { "lat": 40.8295920, "lon": -73.9094820 }, + { "lat": 40.8295666, "lon": -73.9094044 }, + { "lat": 40.8294082, "lon": -73.9089214 }, + { "lat": 40.8291851, "lon": -73.9082405 }, + { "lat": 40.8291707, "lon": -73.9081967 }, + { "lat": 40.8291400, "lon": -73.9081030 } + ], + "tags": { + "highway": "residential", + "name": "Gouverneur Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gouverneur", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5699720, + "bounds": { + "minlat": 40.8312304, + "minlon": -73.9132570, + "maxlat": 40.8341416, + "maxlon": -73.9115417 + }, + "nodes": [ + 13146175918, + 13746493073, + 5762095683, + 42742443, + 5762095684, + 13146175919, + 12038440294, + 7044464250, + 42743938 + ], + "geometry": [ + { "lat": 40.8341416, "lon": -73.9115417 }, + { "lat": 40.8338392, "lon": -73.9117276 }, + { "lat": 40.8331844, "lon": -73.9121053 }, + { "lat": 40.8331170, "lon": -73.9121450 }, + { "lat": 40.8330656, "lon": -73.9121752 }, + { "lat": 40.8318101, "lon": -73.9129132 }, + { "lat": 40.8313642, "lon": -73.9131754 }, + { "lat": 40.8312722, "lon": -73.9132295 }, + { "lat": 40.8312304, "lon": -73.9132570 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "15 mph", + "maxspeed:type": "sign", + "name": "Findlay Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller;Findlay", + "tiger:name_type": "Ave", + "tiger:zip_left": "10456", + "tiger:zip_right": "10457;10456", + "tiger:zip_right_1": "10456" + } +}, +{ + "type": "way", + "id": 5699721, + "bounds": { + "minlat": 40.8254646, + "minlon": -73.9159214, + "maxlat": 40.8258209, + "maxlon": -73.9157366 + }, + "nodes": [ + 42732941, + 13599258255, + 42783589 + ], + "geometry": [ + { "lat": 40.8258209, "lon": -73.9157366 }, + { "lat": 40.8257602, "lon": -73.9157681 }, + { "lat": 40.8254646, "lon": -73.9159214 } + ], + "tags": { + "highway": "residential", + "name": "Teller Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 5699724, + "bounds": { + "minlat": 40.8126037, + "minlon": -73.9237512, + "maxlat": 40.8128642, + "maxlon": -73.9232730 + }, + "nodes": [ + 42732882, + 9908629924, + 9908629923, + 42768499 + ], + "geometry": [ + { "lat": 40.8126037, "lon": -73.9232730 }, + { "lat": 40.8126621, "lon": -73.9234112 }, + { "lat": 40.8127858, "lon": -73.9236988 }, + { "lat": 40.8128642, "lon": -73.9237512 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 142nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "142nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5699725, + "bounds": { + "minlat": 40.8077610, + "minlon": -73.9119852, + "maxlat": 40.8083046, + "maxlon": -73.9102213 + }, + "nodes": [ + 42760037, + 8600764376, + 5859955148, + 42764625, + 5859955147, + 42755218 + ], + "geometry": [ + { "lat": 40.8083046, "lon": -73.9119852 }, + { "lat": 40.8082612, "lon": -73.9118468 }, + { "lat": 40.8080701, "lon": -73.9112370 }, + { "lat": 40.8080387, "lon": -73.9111083 }, + { "lat": 40.8080083, "lon": -73.9110103 }, + { "lat": 40.8077610, "lon": -73.9102213 } + ], + "tags": { + "highway": "residential", + "name": "East 142nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "142nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5699726, + "bounds": { + "minlat": 40.8096970, + "minlon": -73.9210184, + "maxlat": 40.8116518, + "maxlon": -73.9156330 + }, + "nodes": [ + 42761241, + 9908621386, + 2912071220, + 2912071222, + 2912071221, + 7048190806, + 5482371859, + 9908650986, + 42761037, + 9908650987, + 5482371845, + 5482371847, + 8571918539, + 13809174845, + 42763151 + ], + "geometry": [ + { "lat": 40.8116518, "lon": -73.9210184 }, + { "lat": 40.8116031, "lon": -73.9209048 }, + { "lat": 40.8110770, "lon": -73.9196783 }, + { "lat": 40.8109212, "lon": -73.9192881 }, + { "lat": 40.8107743, "lon": -73.9188842 }, + { "lat": 40.8107570, "lon": -73.9188315 }, + { "lat": 40.8106868, "lon": -73.9186186 }, + { "lat": 40.8103901, "lon": -73.9177157 }, + { "lat": 40.8103548, "lon": -73.9176084 }, + { "lat": 40.8103176, "lon": -73.9174967 }, + { "lat": 40.8099987, "lon": -73.9165270 }, + { "lat": 40.8099224, "lon": -73.9162974 }, + { "lat": 40.8097483, "lon": -73.9157843 }, + { "lat": 40.8097315, "lon": -73.9157346 }, + { "lat": 40.8096970, "lon": -73.9156330 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 142nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "142nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 5699727, + "bounds": { + "minlat": 40.8143800, + "minlon": -73.9254639, + "maxlat": 40.8151495, + "maxlon": -73.9247510 + }, + "nodes": [ + 42775135, + 8571884276, + 12040837244, + 42735679 + ], + "geometry": [ + { "lat": 40.8151495, "lon": -73.9254639 }, + { "lat": 40.8145193, "lon": -73.9248801 }, + { "lat": 40.8144736, "lon": -73.9248377 }, + { "lat": 40.8143800, "lon": -73.9247510 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 142nd Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "142nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 5699746, + "bounds": { + "minlat": 40.8117861, + "minlon": -73.9102525, + "maxlat": 40.8119188, + "maxlon": -73.9095984 + }, + "nodes": [ + 42774215, + 10033557485, + 10127018976, + 42764633 + ], + "geometry": [ + { "lat": 40.8119188, "lon": -73.9102525 }, + { "lat": 40.8118150, "lon": -73.9097407 }, + { "lat": 40.8118047, "lon": -73.9096900 }, + { "lat": 40.8117861, "lon": -73.9095984 } + ], + "tags": { + "highway": "residential", + "name": "East 147th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "147th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5699747, + "bounds": { + "minlat": 40.8147793, + "minlon": -73.9194594, + "maxlat": 40.8150883, + "maxlon": -73.9187408 + }, + "nodes": [ + 7564284929, + 6415814871, + 8454214946, + 6415815566, + 42768512 + ], + "geometry": [ + { "lat": 40.8147793, "lon": -73.9187408 }, + { "lat": 40.8148321, "lon": -73.9188709 }, + { "lat": 40.8150048, "lon": -73.9192823 }, + { "lat": 40.8150335, "lon": -73.9193500 }, + { "lat": 40.8150883, "lon": -73.9194594 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 147th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "147th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 5699763, + "bounds": { + "minlat": 40.8365445, + "minlon": -73.9220009, + "maxlat": 40.8427831, + "maxlon": -73.9183121 + }, + "nodes": [ + 1377427132, + 7919257011, + 13249061674, + 42776415, + 13249061676, + 11955331839, + 42763862, + 42740190, + 6854018913, + 8074257014, + 2912071071, + 12163757026, + 2912071073 + ], + "geometry": [ + { "lat": 40.8427831, "lon": -73.9183121 }, + { "lat": 40.8421609, "lon": -73.9187987 }, + { "lat": 40.8409368, "lon": -73.9197364 }, + { "lat": 40.8408760, "lon": -73.9197830 }, + { "lat": 40.8407387, "lon": -73.9198542 }, + { "lat": 40.8404116, "lon": -73.9200237 }, + { "lat": 40.8381560, "lon": -73.9211930 }, + { "lat": 40.8377750, "lon": -73.9213810 }, + { "lat": 40.8375409, "lon": -73.9214996 }, + { "lat": 40.8370247, "lon": -73.9217610 }, + { "lat": 40.8366353, "lon": -73.9219583 }, + { "lat": 40.8366034, "lon": -73.9219741 }, + { "lat": 40.8365445, "lon": -73.9220009 } + ], + "tags": { + "highway": "residential", + "name": "Cromwell Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cromwell", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5699765, + "bounds": { + "minlat": 40.8345207, + "minlon": -73.9231852, + "maxlat": 40.8359114, + "maxlon": -73.9225118 + }, + "nodes": [ + 42747548, + 10133344429, + 12163757003, + 12163757004, + 12163757005, + 2822090462, + 12163757006, + 12163757007, + 3640146455, + 12163757009, + 10133344459, + 2912071078 + ], + "geometry": [ + { "lat": 40.8345207, "lon": -73.9231852 }, + { "lat": 40.8345693, "lon": -73.9231846 }, + { "lat": 40.8356258, "lon": -73.9225452 }, + { "lat": 40.8356587, "lon": -73.9225295 }, + { "lat": 40.8356857, "lon": -73.9225190 }, + { "lat": 40.8357160, "lon": -73.9225132 }, + { "lat": 40.8357438, "lon": -73.9225118 }, + { "lat": 40.8357680, "lon": -73.9225187 }, + { "lat": 40.8357996, "lon": -73.9225366 }, + { "lat": 40.8358159, "lon": -73.9225550 }, + { "lat": 40.8358317, "lon": -73.9225762 }, + { "lat": 40.8359114, "lon": -73.9226727 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Cromwell Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cromwell", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 5699874, + "bounds": { + "minlat": 40.7399426, + "minlon": -73.9549498, + "maxlat": 40.7406010, + "maxlon": -73.9547399 + }, + "nodes": [ + 6594504797, + 6594515849, + 42786594, + 277046385 + ], + "geometry": [ + { "lat": 40.7406010, "lon": -73.9547399 }, + { "lat": 40.7403350, "lon": -73.9548247 }, + { "lat": 40.7402571, "lon": -73.9548495 }, + { "lat": 40.7399426, "lon": -73.9549498 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5699876, + "bounds": { + "minlat": 40.7410690, + "minlon": -73.9608097, + "maxlat": 40.7423951, + "maxlon": -73.9599679 + }, + "nodes": [ + 8018964707, + 3869529482, + 9982771560, + 9982771561, + 3114703217, + 9982771562, + 9982771563, + 3114703216, + 3114703218, + 2297172745, + 2297172741, + 9982771559, + 9982771558, + 2297172747, + 3575033038, + 6644096970, + 11889239945, + 9982771557, + 2297172752 + ], + "geometry": [ + { "lat": 40.7410690, "lon": -73.9608097 }, + { "lat": 40.7411532, "lon": -73.9607862 }, + { "lat": 40.7412217, "lon": -73.9607638 }, + { "lat": 40.7413076, "lon": -73.9607323 }, + { "lat": 40.7413887, "lon": -73.9606920 }, + { "lat": 40.7414932, "lon": -73.9606285 }, + { "lat": 40.7415866, "lon": -73.9605520 }, + { "lat": 40.7416712, "lon": -73.9604737 }, + { "lat": 40.7417421, "lon": -73.9604035 }, + { "lat": 40.7418242, "lon": -73.9603243 }, + { "lat": 40.7419544, "lon": -73.9602037 }, + { "lat": 40.7420020, "lon": -73.9601660 }, + { "lat": 40.7420538, "lon": -73.9601275 }, + { "lat": 40.7422072, "lon": -73.9600277 }, + { "lat": 40.7422504, "lon": -73.9600069 }, + { "lat": 40.7422846, "lon": -73.9599931 }, + { "lat": 40.7423163, "lon": -73.9599844 }, + { "lat": 40.7423428, "lon": -73.9599771 }, + { "lat": 40.7423951, "lon": -73.9599679 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "54th", + "tiger:name_type": "Ave", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 5699880, + "bounds": { + "minlat": 40.7299056, + "minlon": -73.9112481, + "maxlat": 40.7299410, + "maxlon": -73.9101785 + }, + "nodes": [ + 42786728, + 9818837847, + 9196051098, + 42786725 + ], + "geometry": [ + { "lat": 40.7299056, "lon": -73.9101785 }, + { "lat": 40.7299362, "lon": -73.9108607 }, + { "lat": 40.7299410, "lon": -73.9109674 }, + { "lat": 40.7299390, "lon": -73.9112481 } + ], + "tags": { + "highway": "residential", + "name": "54th Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5699883, + "bounds": { + "minlat": 40.7322500, + "minlon": -73.9255557, + "maxlat": 40.7325414, + "maxlon": -73.9245193 + }, + "nodes": [ + 42786838, + 10038425625, + 9194902691, + 6760897311, + 9194902690, + 6760897310, + 8097303877, + 10038425623, + 42786844 + ], + "geometry": [ + { "lat": 40.7325414, "lon": -73.9255557 }, + { "lat": 40.7325131, "lon": -73.9254729 }, + { "lat": 40.7324329, "lon": -73.9252333 }, + { "lat": 40.7323909, "lon": -73.9251022 }, + { "lat": 40.7323569, "lon": -73.9249860 }, + { "lat": 40.7323261, "lon": -73.9248580 }, + { "lat": 40.7322841, "lon": -73.9246649 }, + { "lat": 40.7322655, "lon": -73.9245917 }, + { "lat": 40.7322500, "lon": -73.9245193 } + ], + "tags": { + "hgv": "local", + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "54th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5699886, + "bounds": { + "minlat": 40.7305674, + "minlon": -73.9187748, + "maxlat": 40.7308220, + "maxlon": -73.9176122 + }, + "nodes": [ + 42786909, + 10087637098, + 8097303879, + 10087637108, + 10087637107, + 42786912 + ], + "geometry": [ + { "lat": 40.7308220, "lon": -73.9187748 }, + { "lat": 40.7308027, "lon": -73.9186850 }, + { "lat": 40.7307957, "lon": -73.9186525 }, + { "lat": 40.7305990, "lon": -73.9177365 }, + { "lat": 40.7305865, "lon": -73.9176871 }, + { "lat": 40.7305674, "lon": -73.9176122 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "54th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5699935, + "bounds": { + "minlat": 40.7197120, + "minlon": -73.9082580, + "maxlat": 40.7197757, + "maxlon": -73.9061261 + }, + "nodes": [ + 42788746, + 11055685868, + 7963480212, + 7540162438, + 7540162441, + 11004089405, + 11055685953, + 42788748 + ], + "geometry": [ + { "lat": 40.7197757, "lon": -73.9061261 }, + { "lat": 40.7197674, "lon": -73.9063370 }, + { "lat": 40.7197666, "lon": -73.9064484 }, + { "lat": 40.7197650, "lon": -73.9065022 }, + { "lat": 40.7197278, "lon": -73.9077333 }, + { "lat": 40.7197168, "lon": -73.9080986 }, + { "lat": 40.7197144, "lon": -73.9081768 }, + { "lat": 40.7197120, "lon": -73.9082580 } + ], + "tags": { + "highway": "residential", + "name": "58th Drive", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5699936, + "bounds": { + "minlat": 40.7185200, + "minlon": -73.9120770, + "maxlat": 40.7186886, + "maxlon": -73.9112177 + }, + "nodes": [ + 42788761, + 9759966691, + 42788763 + ], + "geometry": [ + { "lat": 40.7185200, "lon": -73.9120770 }, + { "lat": 40.7185424, "lon": -73.9119629 }, + { "lat": 40.7186886, "lon": -73.9112177 } + ], + "tags": { + "highway": "residential", + "name": "58th Drive", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "58th", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 5700030, + "bounds": { + "minlat": 40.7489980, + "minlon": -73.9078360, + "maxlat": 40.7492970, + "maxlon": -73.9077040 + }, + "nodes": [ + 42790787, + 42790789 + ], + "geometry": [ + { "lat": 40.7489980, "lon": -73.9078360 }, + { "lat": 40.7492970, "lon": -73.9077040 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "55th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 5700296, + "bounds": { + "minlat": 40.7461432, + "minlon": -73.9420831, + "maxlat": 40.7466884, + "maxlon": -73.9417221 + }, + "nodes": [ + 42825558, + 8994094850, + 9982698533 + ], + "geometry": [ + { "lat": 40.7461432, "lon": -73.9417221 }, + { "lat": 40.7462679, "lon": -73.9417949 }, + { "lat": 40.7466884, "lon": -73.9420831 } + ], + "tags": { + "highway": "tertiary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|left;right" + } +}, +{ + "type": "way", + "id": 5700372, + "bounds": { + "minlat": 40.7444295, + "minlon": -73.9141135, + "maxlat": 40.7448386, + "maxlon": -73.9136272 + }, + "nodes": [ + 42796341, + 10762295634, + 8089066812, + 42796343 + ], + "geometry": [ + { "lat": 40.7444295, "lon": -73.9141135 }, + { "lat": 40.7444988, "lon": -73.9140791 }, + { "lat": 40.7446918, "lon": -73.9138268 }, + { "lat": 40.7448386, "lon": -73.9136272 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "51st Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5700571, + "bounds": { + "minlat": 40.7467796, + "minlon": -73.9434470, + "maxlat": 40.7504360, + "maxlon": -73.9403370 + }, + "nodes": [ + 593216541, + 3785649100, + 593216544, + 3785649101, + 3785649102, + 593216550, + 9188711331, + 3785649103, + 276036216, + 3785649104, + 3785649105, + 2969267789, + 3785649106, + 276036217, + 3785649107, + 2969267788, + 3785649108, + 276036218, + 3785649110, + 3785649109, + 276036221, + 3785649111, + 3785649112, + 3785649113, + 2971758030, + 3785649114, + 2971758032 + ], + "geometry": [ + { "lat": 40.7504360, "lon": -73.9434470 }, + { "lat": 40.7504058, "lon": -73.9434263 }, + { "lat": 40.7503738, "lon": -73.9433975 }, + { "lat": 40.7503430, "lon": -73.9433659 }, + { "lat": 40.7503059, "lon": -73.9433145 }, + { "lat": 40.7502765, "lon": -73.9432624 }, + { "lat": 40.7498584, "lon": -73.9424757 }, + { "lat": 40.7497856, "lon": -73.9423469 }, + { "lat": 40.7497308, "lon": -73.9422576 }, + { "lat": 40.7496774, "lon": -73.9421776 }, + { "lat": 40.7496073, "lon": -73.9420841 }, + { "lat": 40.7495359, "lon": -73.9419952 }, + { "lat": 40.7494708, "lon": -73.9419211 }, + { "lat": 40.7494021, "lon": -73.9418443 }, + { "lat": 40.7493318, "lon": -73.9417751 }, + { "lat": 40.7492310, "lon": -73.9416843 }, + { "lat": 40.7491612, "lon": -73.9416275 }, + { "lat": 40.7490755, "lon": -73.9415635 }, + { "lat": 40.7490021, "lon": -73.9415141 }, + { "lat": 40.7489224, "lon": -73.9414631 }, + { "lat": 40.7478493, "lon": -73.9407941 }, + { "lat": 40.7477521, "lon": -73.9407382 }, + { "lat": 40.7476518, "lon": -73.9406871 }, + { "lat": 40.7475662, "lon": -73.9406488 }, + { "lat": 40.7474776, "lon": -73.9406097 }, + { "lat": 40.7473822, "lon": -73.9405735 }, + { "lat": 40.7467796, "lon": -73.9403370 } + ], + "tags": { + "access:conditional": "no @ (Mo-Fr 06:00-09:30); yes @ (Mo-Fr 06:00-09:30 AND occupants>1)", + "bicycle": "no", + "bridge": "viaduct", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "lit": "yes", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "oneway": "reversible", + "oneway:conditional": "yes @ (Mo-Fr 00:00-06:00,09:30-24:00; Sa-Su); -1 @ (Mo-Fr 06:00-09:30)", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5700614, + "bounds": { + "minlat": 40.7517322, + "minlon": -73.9207625, + "maxlat": 40.7518922, + "maxlon": -73.9206273 + }, + "nodes": [ + 42800646, + 8593852972, + 42800649, + 5867098605, + 42800656 + ], + "geometry": [ + { "lat": 40.7518922, "lon": -73.9207614 }, + { "lat": 40.7518617, "lon": -73.9207625 }, + { "lat": 40.7518312, "lon": -73.9207522 }, + { "lat": 40.7517995, "lon": -73.9207322 }, + { "lat": 40.7517322, "lon": -73.9206273 } + ], + "tags": { + "highway": "residential", + "name": "42nd Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701087, + "bounds": { + "minlat": 40.7422928, + "minlon": -73.9518215, + "maxlat": 40.7429810, + "maxlon": -73.9516939 + }, + "nodes": [ + 42832453, + 6595130942, + 9983412364, + 9179073037, + 9983412363, + 9179073036, + 9179073035, + 6595130941, + 8158232276, + 9983412365, + 42806188 + ], + "geometry": [ + { "lat": 40.7429810, "lon": -73.9518215 }, + { "lat": 40.7428499, "lon": -73.9518163 }, + { "lat": 40.7427478, "lon": -73.9517204 }, + { "lat": 40.7427300, "lon": -73.9517057 }, + { "lat": 40.7427147, "lon": -73.9516980 }, + { "lat": 40.7426938, "lon": -73.9516939 }, + { "lat": 40.7426724, "lon": -73.9516948 }, + { "lat": 40.7426499, "lon": -73.9516997 }, + { "lat": 40.7424056, "lon": -73.9517812 }, + { "lat": 40.7423610, "lon": -73.9517969 }, + { "lat": 40.7422928, "lon": -73.9518110 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701102, + "bounds": { + "minlat": 40.7155370, + "minlon": -73.9072440, + "maxlat": 40.7163170, + "maxlon": -73.9016320 + }, + "nodes": [ + 42806450, + 9759984348, + 9759657489, + 42806448, + 9759657491, + 7963480219, + 7963480206, + 9759657476, + 42806446, + 9759657474, + 2089937795, + 9759984382, + 42806444 + ], + "geometry": [ + { "lat": 40.7163170, "lon": -73.9016320 }, + { "lat": 40.7163020, "lon": -73.9017471 }, + { "lat": 40.7160790, "lon": -73.9034547 }, + { "lat": 40.7160720, "lon": -73.9035110 }, + { "lat": 40.7160629, "lon": -73.9035808 }, + { "lat": 40.7159915, "lon": -73.9041250 }, + { "lat": 40.7157610, "lon": -73.9058838 }, + { "lat": 40.7157534, "lon": -73.9059413 }, + { "lat": 40.7157430, "lon": -73.9060210 }, + { "lat": 40.7157328, "lon": -73.9061092 }, + { "lat": 40.7156122, "lon": -73.9071273 }, + { "lat": 40.7155869, "lon": -73.9071669 }, + { "lat": 40.7155370, "lon": -73.9072440 } + ], + "tags": { + "highway": "residential", + "name": "60th Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5701117, + "bounds": { + "minlat": 40.7050460, + "minlon": -73.9111790, + "maxlat": 40.7098680, + "maxlon": -73.9030310 + }, + "nodes": [ + 42806571, + 11004055125, + 42806573, + 10686521700, + 9763022387, + 42806578, + 9763022389, + 11037795913, + 42806581, + 11037795912, + 10686521688, + 9763022261, + 42806584, + 9763022263, + 11037790097, + 42806587, + 11037790096, + 10686537775, + 9763022280, + 42806591, + 9763022278, + 11037790079, + 42806593, + 11037790078, + 10686537730, + 9763022299, + 42806596, + 9763022297, + 11037790091, + 42806597, + 11037790090, + 10686537755, + 9763022324, + 42806600, + 9763022325, + 10686521686, + 9758185593, + 42806601 + ], + "geometry": [ + { "lat": 40.7098680, "lon": -73.9111790 }, + { "lat": 40.7098287, "lon": -73.9111131 }, + { "lat": 40.7094290, "lon": -73.9104420 }, + { "lat": 40.7090567, "lon": -73.9098120 }, + { "lat": 40.7090332, "lon": -73.9097723 }, + { "lat": 40.7089910, "lon": -73.9097010 }, + { "lat": 40.7089593, "lon": -73.9096471 }, + { "lat": 40.7085942, "lon": -73.9090265 }, + { "lat": 40.7085550, "lon": -73.9089600 }, + { "lat": 40.7085201, "lon": -73.9089011 }, + { "lat": 40.7081847, "lon": -73.9083348 }, + { "lat": 40.7081543, "lon": -73.9082842 }, + { "lat": 40.7081150, "lon": -73.9082170 }, + { "lat": 40.7080849, "lon": -73.9081661 }, + { "lat": 40.7077160, "lon": -73.9075428 }, + { "lat": 40.7076770, "lon": -73.9074770 }, + { "lat": 40.7076446, "lon": -73.9074226 }, + { "lat": 40.7073109, "lon": -73.9068621 }, + { "lat": 40.7072800, "lon": -73.9068101 }, + { "lat": 40.7072370, "lon": -73.9067380 }, + { "lat": 40.7072066, "lon": -73.9066866 }, + { "lat": 40.7068432, "lon": -73.9060709 }, + { "lat": 40.7067990, "lon": -73.9059960 }, + { "lat": 40.7067669, "lon": -73.9059417 }, + { "lat": 40.7064321, "lon": -73.9053755 }, + { "lat": 40.7064036, "lon": -73.9053272 }, + { "lat": 40.7063679, "lon": -73.9052641 }, + { "lat": 40.7063301, "lon": -73.9052028 }, + { "lat": 40.7059650, "lon": -73.9045850 }, + { "lat": 40.7059230, "lon": -73.9045140 }, + { "lat": 40.7058916, "lon": -73.9044611 }, + { "lat": 40.7055566, "lon": -73.9038962 }, + { "lat": 40.7055267, "lon": -73.9038458 }, + { "lat": 40.7054830, "lon": -73.9037720 }, + { "lat": 40.7054557, "lon": -73.9037236 }, + { "lat": 40.7051238, "lon": -73.9031630 }, + { "lat": 40.7050942, "lon": -73.9031128 }, + { "lat": 40.7050460, "lon": -73.9030310 } + ], + "tags": { + "highway": "residential", + "name": "Fairview Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701139, + "bounds": { + "minlat": 40.7340110, + "minlon": -73.9099188, + "maxlat": 40.7350075, + "maxlon": -73.9060180 + }, + "nodes": [ + 42806985, + 10087528618, + 10087528619, + 42806986, + 42806989, + 42806994, + 42806998 + ], + "geometry": [ + { "lat": 40.7350075, "lon": -73.9099188 }, + { "lat": 40.7349808, "lon": -73.9098159 }, + { "lat": 40.7349670, "lon": -73.9097631 }, + { "lat": 40.7346770, "lon": -73.9086470 }, + { "lat": 40.7344530, "lon": -73.9077730 }, + { "lat": 40.7342320, "lon": -73.9068990 }, + { "lat": 40.7340110, "lon": -73.9060180 } + ], + "tags": { + "highway": "residential", + "name": "52nd Road", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "52nd", + "tiger:name_type": "Rd", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 5701174, + "bounds": { + "minlat": 40.7659009, + "minlon": -73.9386192, + "maxlat": 40.7668152, + "maxlon": -73.9360169 + }, + "nodes": [ + 4573599938, + 42807546, + 2459401779, + 9915145358, + 3869974675, + 6450662159, + 42807549, + 6450662160, + 7733783581, + 8699111953, + 42807554, + 8699111942, + 7733783900, + 7713828611, + 7768540586, + 42807557 + ], + "geometry": [ + { "lat": 40.7668152, "lon": -73.9386192 }, + { "lat": 40.7667732, "lon": -73.9384530 }, + { "lat": 40.7667477, "lon": -73.9383836 }, + { "lat": 40.7667410, "lon": -73.9383624 }, + { "lat": 40.7665645, "lon": -73.9378881 }, + { "lat": 40.7665027, "lon": -73.9377142 }, + { "lat": 40.7664750, "lon": -73.9376350 }, + { "lat": 40.7664523, "lon": -73.9375717 }, + { "lat": 40.7662315, "lon": -73.9369553 }, + { "lat": 40.7662201, "lon": -73.9369241 }, + { "lat": 40.7661830, "lon": -73.9368200 }, + { "lat": 40.7661512, "lon": -73.9367296 }, + { "lat": 40.7661410, "lon": -73.9367005 }, + { "lat": 40.7659469, "lon": -73.9361480 }, + { "lat": 40.7659268, "lon": -73.9360907 }, + { "lat": 40.7659009, "lon": -73.9360169 } + ], + "tags": { + "highway": "residential", + "name": "33rd Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701183, + "bounds": { + "minlat": 40.7371563, + "minlon": -73.9170885, + "maxlat": 40.7389680, + "maxlon": -73.9164664 + }, + "nodes": [ + 42807699, + 42807700 + ], + "geometry": [ + { "lat": 40.7389680, "lon": -73.9164664 }, + { "lat": 40.7371563, "lon": -73.9170885 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "20 mph", + "name": "49th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701184, + "bounds": { + "minlat": 40.7229563, + "minlon": -73.9205284, + "maxlat": 40.7261155, + "maxlon": -73.9194372 + }, + "nodes": [ + 5482423919, + 10087637227, + 10087637226, + 5176490257, + 5175207758, + 7712008357, + 3628898335, + 5175207757, + 8670712316, + 3628898331, + 8231732593, + 7644827953, + 7712008376, + 5482425942, + 5175207748, + 3584456551, + 5176490258 + ], + "geometry": [ + { "lat": 40.7261155, "lon": -73.9194372 }, + { "lat": 40.7260689, "lon": -73.9194492 }, + { "lat": 40.7260247, "lon": -73.9194617 }, + { "lat": 40.7259698, "lon": -73.9194788 }, + { "lat": 40.7259409, "lon": -73.9194883 }, + { "lat": 40.7256408, "lon": -73.9196032 }, + { "lat": 40.7256151, "lon": -73.9196121 }, + { "lat": 40.7255017, "lon": -73.9196512 }, + { "lat": 40.7253155, "lon": -73.9197153 }, + { "lat": 40.7250689, "lon": -73.9198003 }, + { "lat": 40.7250317, "lon": -73.9198131 }, + { "lat": 40.7250080, "lon": -73.9198213 }, + { "lat": 40.7243994, "lon": -73.9200311 }, + { "lat": 40.7243921, "lon": -73.9200336 }, + { "lat": 40.7242137, "lon": -73.9200951 }, + { "lat": 40.7240217, "lon": -73.9201636 }, + { "lat": 40.7229563, "lon": -73.9205284 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "49th Street" + } +}, +{ + "type": "way", + "id": 5701187, + "bounds": { + "minlat": 40.7389960, + "minlon": -73.9166857, + "maxlat": 40.7408615, + "maxlon": -73.9163202 + }, + "nodes": [ + 42807854, + 10081025551, + 8316786968, + 10083107688, + 42807857 + ], + "geometry": [ + { "lat": 40.7408615, "lon": -73.9163202 }, + { "lat": 40.7407904, "lon": -73.9163371 }, + { "lat": 40.7391159, "lon": -73.9166594 }, + { "lat": 40.7390783, "lon": -73.9166679 }, + { "lat": 40.7389960, "lon": -73.9166857 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "49th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701188, + "bounds": { + "minlat": 40.7174084, + "minlon": -73.9202310, + "maxlat": 40.7225180, + "maxlon": -73.9190410 + }, + "nodes": [ + 42807867, + 6909036700, + 5482677613, + 42807869, + 5482677599, + 7712061259, + 42807873 + ], + "geometry": [ + { "lat": 40.7174084, "lon": -73.9193154 }, + { "lat": 40.7187147, "lon": -73.9199284 }, + { "lat": 40.7189966, "lon": -73.9200683 }, + { "lat": 40.7193360, "lon": -73.9202310 }, + { "lat": 40.7199309, "lon": -73.9200085 }, + { "lat": 40.7204611, "lon": -73.9198102 }, + { "lat": 40.7225180, "lon": -73.9190410 } + ], + "tags": { + "highway": "residential", + "name": "49th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "49th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_left_1": "11378", + "tiger:zip_left_2": "11378", + "tiger:zip_right": "11378", + "tiger:zip_right_1": "11378", + "tiger:zip_right_2": "11378" + } +}, +{ + "type": "way", + "id": 5701214, + "bounds": { + "minlat": 40.7395530, + "minlon": -73.9453077, + "maxlat": 40.7416478, + "maxlon": -73.9446328 + }, + "nodes": [ + 42808177, + 8994542730, + 8926818340, + 42808179, + 10762203029, + 11211159683, + 42808185, + 11211159684, + 11211159679, + 42808189 + ], + "geometry": [ + { "lat": 40.7416478, "lon": -73.9446821 }, + { "lat": 40.7415459, "lon": -73.9446328 }, + { "lat": 40.7410070, "lon": -73.9448143 }, + { "lat": 40.7409296, "lon": -73.9448390 }, + { "lat": 40.7408763, "lon": -73.9448567 }, + { "lat": 40.7403282, "lon": -73.9450404 }, + { "lat": 40.7402410, "lon": -73.9450691 }, + { "lat": 40.7401718, "lon": -73.9450928 }, + { "lat": 40.7396467, "lon": -73.9452754 }, + { "lat": 40.7395530, "lon": -73.9453077 } + ], + "tags": { + "highway": "unclassified", + "name": "25th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701216, + "bounds": { + "minlat": 40.7509864, + "minlon": -73.9402810, + "maxlat": 40.7522423, + "maxlon": -73.9391219 + }, + "nodes": [ + 42808193, + 5493300583, + 6785719786, + 12162691939, + 7792396291, + 42808195 + ], + "geometry": [ + { "lat": 40.7522423, "lon": -73.9391219 }, + { "lat": 40.7521858, "lon": -73.9391716 }, + { "lat": 40.7520018, "lon": -73.9393394 }, + { "lat": 40.7515720, "lon": -73.9397384 }, + { "lat": 40.7510507, "lon": -73.9402223 }, + { "lat": 40.7509864, "lon": -73.9402810 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Crescent Street", + "name_1": "Crescent Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through;right" + } +}, +{ + "type": "way", + "id": 5701228, + "bounds": { + "minlat": 40.7477640, + "minlon": -73.9119426, + "maxlat": 40.7479990, + "maxlon": -73.9099190 + }, + "nodes": [ + 42808384, + 10074123204, + 8089088633, + 8599740370, + 10762221390, + 42808387 + ], + "geometry": [ + { "lat": 40.7479990, "lon": -73.9119426 }, + { "lat": 40.7479892, "lon": -73.9118632 }, + { "lat": 40.7479820, "lon": -73.9118064 }, + { "lat": 40.7477811, "lon": -73.9100726 }, + { "lat": 40.7477731, "lon": -73.9100142 }, + { "lat": 40.7477640, "lon": -73.9099190 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "39th Road", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701323, + "bounds": { + "minlat": 40.7124530, + "minlon": -73.9206965, + "maxlat": 40.7138171, + "maxlon": -73.9185347 + }, + "nodes": [ + 42809915, + 5330321657, + 597676393, + 12873867710, + 12873867712, + 9744131372, + 42809921 + ], + "geometry": [ + { "lat": 40.7138171, "lon": -73.9206930 }, + { "lat": 40.7137335, "lon": -73.9206965 }, + { "lat": 40.7133106, "lon": -73.9199864 }, + { "lat": 40.7132051, "lon": -73.9198074 }, + { "lat": 40.7126499, "lon": -73.9188711 }, + { "lat": 40.7125088, "lon": -73.9186262 }, + { "lat": 40.7124530, "lon": -73.9185347 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "name": "Woodward Avenue", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "type": "route" + } +}, +{ + "type": "way", + "id": 5701338, + "bounds": { + "minlat": 40.7315818, + "minlon": -73.9258691, + "maxlat": 40.7317961, + "maxlon": -73.9248355 + }, + "nodes": [ + 6754133015, + 10038425616, + 42810304 + ], + "geometry": [ + { "lat": 40.7317961, "lon": -73.9258691 }, + { "lat": 40.7315993, "lon": -73.9249099 }, + { "lat": 40.7315818, "lon": -73.9248355 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "54th Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701339, + "bounds": { + "minlat": 40.7298790, + "minlon": -73.9190281, + "maxlat": 40.7301622, + "maxlon": -73.9177300 + }, + "nodes": [ + 42810323, + 10087637125, + 8097303866, + 8816929120, + 7506961818, + 42810325 + ], + "geometry": [ + { "lat": 40.7301622, "lon": -73.9190281 }, + { "lat": 40.7301358, "lon": -73.9189074 }, + { "lat": 40.7301250, "lon": -73.9188575 }, + { "lat": 40.7299577, "lon": -73.9180812 }, + { "lat": 40.7299551, "lon": -73.9180696 }, + { "lat": 40.7298790, "lon": -73.9177300 } + ], + "tags": { + "highway": "residential", + "name": "54th Road" + } +}, +{ + "type": "way", + "id": 5701348, + "bounds": { + "minlat": 40.7067220, + "minlon": -73.9080120, + "maxlat": 40.7071540, + "maxlon": -73.9072690 + }, + "nodes": [ + 42810450, + 9762996204, + 10686537774, + 9762996203, + 42810452 + ], + "geometry": [ + { "lat": 40.7067220, "lon": -73.9072690 }, + { "lat": 40.7067625, "lon": -73.9073386 }, + { "lat": 40.7070967, "lon": -73.9079135 }, + { "lat": 40.7071224, "lon": -73.9079577 }, + { "lat": 40.7071540, "lon": -73.9080120 } + ], + "tags": { + "highway": "residential", + "name": "Saint John Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "St John", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 5701350, + "bounds": { + "minlat": 40.7676894, + "minlon": -73.9284710, + "maxlat": 40.7690600, + "maxlon": -73.9255366 + }, + "nodes": [ + 42810482, + 6452895148, + 7950032314, + 11420382884, + 6452981328, + 4991520404, + 42810479, + 4991520403, + 6452981327, + 3570422532, + 6452789090, + 42810477 + ], + "geometry": [ + { "lat": 40.7676894, "lon": -73.9255366 }, + { "lat": 40.7677284, "lon": -73.9256201 }, + { "lat": 40.7679493, "lon": -73.9260937 }, + { "lat": 40.7681923, "lon": -73.9266146 }, + { "lat": 40.7684066, "lon": -73.9270755 }, + { "lat": 40.7684123, "lon": -73.9270862 }, + { "lat": 40.7684418, "lon": -73.9271495 }, + { "lat": 40.7684782, "lon": -73.9272272 }, + { "lat": 40.7684822, "lon": -73.9272357 }, + { "lat": 40.7689914, "lon": -73.9283244 }, + { "lat": 40.7690045, "lon": -73.9283525 }, + { "lat": 40.7690600, "lon": -73.9284710 } + ], + "tags": { + "highway": "residential", + "name": "30th Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5701351, + "bounds": { + "minlat": 40.7670110, + "minlon": -73.9254285, + "maxlat": 40.7679066, + "maxlon": -73.9235020 + }, + "nodes": [ + 42810494, + 11649832521, + 7166349487, + 6452907624, + 42810491 + ], + "geometry": [ + { "lat": 40.7670110, "lon": -73.9235020 }, + { "lat": 40.7670475, "lon": -73.9235782 }, + { "lat": 40.7675499, "lon": -73.9246273 }, + { "lat": 40.7678792, "lon": -73.9253340 }, + { "lat": 40.7679066, "lon": -73.9254285 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "30th Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701352, + "bounds": { + "minlat": 40.7602499, + "minlon": -73.9121031, + "maxlat": 40.7620248, + "maxlon": -73.9102280 + }, + "nodes": [ + 42810501, + 6453135597, + 5867077853, + 5867077854, + 6453135598, + 42810503, + 6453135600, + 5867077855, + 5867077856, + 6453135602, + 42810507, + 6453135604, + 5867077858, + 2883422233, + 5867077857, + 6453135609, + 42810512 + ], + "geometry": [ + { "lat": 40.7620248, "lon": -73.9121031 }, + { "lat": 40.7619760, "lon": -73.9120534 }, + { "lat": 40.7619301, "lon": -73.9120067 }, + { "lat": 40.7614828, "lon": -73.9115511 }, + { "lat": 40.7614625, "lon": -73.9115325 }, + { "lat": 40.7614166, "lon": -73.9114836 }, + { "lat": 40.7613639, "lon": -73.9114318 }, + { "lat": 40.7613174, "lon": -73.9113890 }, + { "lat": 40.7608643, "lon": -73.9109568 }, + { "lat": 40.7608408, "lon": -73.9109344 }, + { "lat": 40.7607910, "lon": -73.9108939 }, + { "lat": 40.7607388, "lon": -73.9108350 }, + { "lat": 40.7607123, "lon": -73.9108088 }, + { "lat": 40.7603908, "lon": -73.9104903 }, + { "lat": 40.7602942, "lon": -73.9103182 }, + { "lat": 40.7602775, "lon": -73.9102885 }, + { "lat": 40.7602499, "lon": -73.9102280 } + ], + "tags": { + "highway": "residential", + "name": "30th Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701374, + "bounds": { + "minlat": 40.7792212, + "minlon": -73.9186180, + "maxlat": 40.7807330, + "maxlon": -73.9164677 + }, + "nodes": [ + 42810904, + 7803843759, + 13701530980, + 13701530984, + 7803848499, + 7803848525, + 42810907, + 7803843769, + 7803828541, + 7803828549, + 42810910 + ], + "geometry": [ + { "lat": 40.7807330, "lon": -73.9186180 }, + { "lat": 40.7806902, "lon": -73.9185563 }, + { "lat": 40.7804924, "lon": -73.9182711 }, + { "lat": 40.7802051, "lon": -73.9178566 }, + { "lat": 40.7800326, "lon": -73.9176079 }, + { "lat": 40.7800033, "lon": -73.9175659 }, + { "lat": 40.7799380, "lon": -73.9174715 }, + { "lat": 40.7798751, "lon": -73.9173861 }, + { "lat": 40.7792987, "lon": -73.9165766 }, + { "lat": 40.7792653, "lon": -73.9165297 }, + { "lat": 40.7792212, "lon": -73.9164677 } + ], + "tags": { + "highway": "residential", + "name": "22nd Road", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "22nd", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5701413, + "bounds": { + "minlat": 40.7742208, + "minlon": -73.9348189, + "maxlat": 40.7751708, + "maxlon": -73.9318213 + }, + "nodes": [ + 5104280953, + 2459371277, + 2459371280, + 42811426, + 2459371342, + 2459371325, + 13503781406, + 2891717900, + 2459371318, + 42811429, + 7756437626, + 2459371314, + 5104280947, + 5104280949, + 2457195029, + 5487886287, + 5863686047, + 5540146334, + 42811435 + ], + "geometry": [ + { "lat": 40.7751708, "lon": -73.9348189 }, + { "lat": 40.7751602, "lon": -73.9347858 }, + { "lat": 40.7750431, "lon": -73.9344214 }, + { "lat": 40.7749954, "lon": -73.9342732 }, + { "lat": 40.7749617, "lon": -73.9341683 }, + { "lat": 40.7748790, "lon": -73.9339110 }, + { "lat": 40.7748712, "lon": -73.9338868 }, + { "lat": 40.7748431, "lon": -73.9337994 }, + { "lat": 40.7747434, "lon": -73.9334887 }, + { "lat": 40.7747087, "lon": -73.9333814 }, + { "lat": 40.7746810, "lon": -73.9332953 }, + { "lat": 40.7746627, "lon": -73.9332382 }, + { "lat": 40.7746514, "lon": -73.9332030 }, + { "lat": 40.7745504, "lon": -73.9328889 }, + { "lat": 40.7744494, "lon": -73.9325748 }, + { "lat": 40.7744143, "lon": -73.9324654 }, + { "lat": 40.7742505, "lon": -73.9319286 }, + { "lat": 40.7742390, "lon": -73.9318856 }, + { "lat": 40.7742208, "lon": -73.9318213 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "27th Avenue" + } +}, +{ + "type": "way", + "id": 5701442, + "bounds": { + "minlat": 40.7832609, + "minlon": -73.9159678, + "maxlat": 40.7850234, + "maxlon": -73.9138105 + }, + "nodes": [ + 42812001, + 3809745347, + 7776763760, + 10764684395, + 2298768230, + 10764684394, + 7746695001, + 7746694996, + 2298768303, + 3809745339, + 42812002 + ], + "geometry": [ + { "lat": 40.7850234, "lon": -73.9138105 }, + { "lat": 40.7849666, "lon": -73.9138875 }, + { "lat": 40.7849304, "lon": -73.9139300 }, + { "lat": 40.7848389, "lon": -73.9140372 }, + { "lat": 40.7848338, "lon": -73.9140432 }, + { "lat": 40.7847937, "lon": -73.9140926 }, + { "lat": 40.7840000, "lon": -73.9150704 }, + { "lat": 40.7839629, "lon": -73.9151161 }, + { "lat": 40.7835406, "lon": -73.9156362 }, + { "lat": 40.7833187, "lon": -73.9158992 }, + { "lat": 40.7832609, "lon": -73.9159678 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "19th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "19th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5701447, + "bounds": { + "minlat": 40.7765458, + "minlon": -73.9237353, + "maxlat": 40.7830929, + "maxlon": -73.9157290 + }, + "nodes": [ + 42812008, + 7415981674, + 2300336200, + 2302449637, + 7803848519, + 42812011, + 7803843772, + 10764684381, + 42812016, + 10764684379, + 7803848566, + 42812019, + 3863075650, + 42810904, + 42812026, + 4969036570, + 42812029, + 4969036571, + 11114779129, + 42812036, + 11618896392, + 2862420750, + 42812044, + 11107954505, + 7756491638, + 42812049, + 7756491591, + 1334937181, + 10158227384, + 9776116449, + 42812053, + 9776116447, + 10158227385, + 42812056, + 3778337379, + 7756475583, + 42812059 + ], + "geometry": [ + { "lat": 40.7830929, "lon": -73.9157290 }, + { "lat": 40.7830357, "lon": -73.9157987 }, + { "lat": 40.7827771, "lon": -73.9161139 }, + { "lat": 40.7825852, "lon": -73.9163483 }, + { "lat": 40.7824320, "lon": -73.9165355 }, + { "lat": 40.7823850, "lon": -73.9165930 }, + { "lat": 40.7823406, "lon": -73.9166472 }, + { "lat": 40.7818448, "lon": -73.9172528 }, + { "lat": 40.7818030, "lon": -73.9173040 }, + { "lat": 40.7817586, "lon": -73.9173588 }, + { "lat": 40.7813149, "lon": -73.9179077 }, + { "lat": 40.7812661, "lon": -73.9179676 }, + { "lat": 40.7812107, "lon": -73.9180379 }, + { "lat": 40.7807330, "lon": -73.9186180 }, + { "lat": 40.7800900, "lon": -73.9193940 }, + { "lat": 40.7795467, "lon": -73.9200585 }, + { "lat": 40.7794890, "lon": -73.9201270 }, + { "lat": 40.7794305, "lon": -73.9201990 }, + { "lat": 40.7792661, "lon": -73.9204010 }, + { "lat": 40.7789520, "lon": -73.9207870 }, + { "lat": 40.7788298, "lon": -73.9209362 }, + { "lat": 40.7785820, "lon": -73.9212387 }, + { "lat": 40.7784540, "lon": -73.9213950 }, + { "lat": 40.7783159, "lon": -73.9215582 }, + { "lat": 40.7779879, "lon": -73.9219457 }, + { "lat": 40.7779447, "lon": -73.9219968 }, + { "lat": 40.7779145, "lon": -73.9220367 }, + { "lat": 40.7778450, "lon": -73.9221284 }, + { "lat": 40.7774949, "lon": -73.9225638 }, + { "lat": 40.7774849, "lon": -73.9225762 }, + { "lat": 40.7774189, "lon": -73.9226582 }, + { "lat": 40.7773585, "lon": -73.9227317 }, + { "lat": 40.7773490, "lon": -73.9227432 }, + { "lat": 40.7768830, "lon": -73.9233100 }, + { "lat": 40.7766194, "lon": -73.9236450 }, + { "lat": 40.7766027, "lon": -73.9236663 }, + { "lat": 40.7765458, "lon": -73.9237353 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxheight": "default", + "name": "19th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "19th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5701622, + "bounds": { + "minlat": 40.7079080, + "minlon": -73.9108050, + "maxlat": 40.7126460, + "maxlon": -73.9059620 + }, + "nodes": [ + 42814500, + 9747646457, + 11128557522, + 11128557519, + 11128557516, + 11128557513, + 11128557510, + 11128557507, + 11128528804, + 11128528801, + 11128528798, + 10686537708, + 9758185576, + 42814498, + 9758185574, + 11128528769, + 11128528773, + 11128528775, + 11128528778, + 42814494, + 11128528781, + 11128528784, + 11128528787, + 11128528792, + 11128528790, + 10686537738, + 9763022247, + 42814493, + 9763022246, + 10686521701, + 9763022386, + 42806578, + 9763022388, + 10693892831, + 9761709278, + 42809951 + ], + "geometry": [ + { "lat": 40.7126460, "lon": -73.9059620 }, + { "lat": 40.7126009, "lon": -73.9060419 }, + { "lat": 40.7124039, "lon": -73.9062380 }, + { "lat": 40.7122964, "lon": -73.9063450 }, + { "lat": 40.7121944, "lon": -73.9064465 }, + { "lat": 40.7120880, "lon": -73.9065525 }, + { "lat": 40.7119826, "lon": -73.9066574 }, + { "lat": 40.7118765, "lon": -73.9067631 }, + { "lat": 40.7117720, "lon": -73.9068670 }, + { "lat": 40.7116641, "lon": -73.9069744 }, + { "lat": 40.7115619, "lon": -73.9070762 }, + { "lat": 40.7114940, "lon": -73.9071438 }, + { "lat": 40.7114513, "lon": -73.9071863 }, + { "lat": 40.7113970, "lon": -73.9072420 }, + { "lat": 40.7113472, "lon": -73.9072927 }, + { "lat": 40.7112659, "lon": -73.9073754 }, + { "lat": 40.7111693, "lon": -73.9074738 }, + { "lat": 40.7110740, "lon": -73.9075708 }, + { "lat": 40.7109787, "lon": -73.9076678 }, + { "lat": 40.7109520, "lon": -73.9076950 }, + { "lat": 40.7108847, "lon": -73.9077637 }, + { "lat": 40.7107766, "lon": -73.9078742 }, + { "lat": 40.7106701, "lon": -73.9079831 }, + { "lat": 40.7106639, "lon": -73.9079894 }, + { "lat": 40.7105595, "lon": -73.9080962 }, + { "lat": 40.7102717, "lon": -73.9083903 }, + { "lat": 40.7102355, "lon": -73.9084273 }, + { "lat": 40.7101830, "lon": -73.9084810 }, + { "lat": 40.7101350, "lon": -73.9085302 }, + { "lat": 40.7090674, "lon": -73.9096228 }, + { "lat": 40.7090401, "lon": -73.9096507 }, + { "lat": 40.7089910, "lon": -73.9097010 }, + { "lat": 40.7089437, "lon": -73.9097492 }, + { "lat": 40.7079954, "lon": -73.9107160 }, + { "lat": 40.7079563, "lon": -73.9107551 }, + { "lat": 40.7079080, "lon": -73.9108050 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "lit": "yes", + "name": "Harman Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701670, + "bounds": { + "minlat": 40.7491687, + "minlon": -73.9203410, + "maxlat": 40.7494648, + "maxlon": -73.9187436 + }, + "nodes": [ + 42815084, + 8593852982, + 42815088, + 42815092 + ], + "geometry": [ + { "lat": 40.7491687, "lon": -73.9203410 }, + { "lat": 40.7491893, "lon": -73.9202303 }, + { "lat": 40.7493498, "lon": -73.9193711 }, + { "lat": 40.7494648, "lon": -73.9187436 } + ], + "tags": { + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Barnett Avenue", + "name_1": "38th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701696, + "bounds": { + "minlat": 40.7209310, + "minlon": -73.9124600, + "maxlat": 40.7211599, + "maxlon": -73.9063349 + }, + "nodes": [ + 42815536, + 11055685716, + 7963480232, + 11055685715, + 42815539, + 11055685714, + 8234915433, + 11055680670, + 42815542, + 11055680669, + 7963468578, + 11055685911, + 42815546, + 11055685910, + 2776603175, + 9353480372, + 42815551 + ], + "geometry": [ + { "lat": 40.7209310, "lon": -73.9124600 }, + { "lat": 40.7209344, "lon": -73.9123679 }, + { "lat": 40.7209459, "lon": -73.9120564 }, + { "lat": 40.7209467, "lon": -73.9120354 }, + { "lat": 40.7209500, "lon": -73.9119450 }, + { "lat": 40.7209527, "lon": -73.9118705 }, + { "lat": 40.7209966, "lon": -73.9106795 }, + { "lat": 40.7209982, "lon": -73.9106368 }, + { "lat": 40.7210010, "lon": -73.9105590 }, + { "lat": 40.7210037, "lon": -73.9104884 }, + { "lat": 40.7210787, "lon": -73.9084832 }, + { "lat": 40.7210807, "lon": -73.9084299 }, + { "lat": 40.7210840, "lon": -73.9083430 }, + { "lat": 40.7210869, "lon": -73.9082675 }, + { "lat": 40.7211364, "lon": -73.9069577 }, + { "lat": 40.7211486, "lon": -73.9066326 }, + { "lat": 40.7211599, "lon": -73.9063349 } + ], + "tags": { + "highway": "residential", + "name": "58th Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "58th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 5701711, + "bounds": { + "minlat": 40.7549740, + "minlon": -73.9370090, + "maxlat": 40.7582360, + "maxlon": -73.9310570 + }, + "nodes": [ + 42815782, + 6452768047, + 3569402107, + 42815785, + 3569402105, + 6452767219, + 42815790, + 6452767220, + 3569401985, + 42815799, + 3569401981, + 6452767213, + 42815802, + 6452767211, + 6452767205, + 42815805, + 6452767206, + 3569401966, + 42815807, + 3569401964, + 42815809, + 6452759873, + 42815810, + 6452759872, + 6452759868, + 42815813 + ], + "geometry": [ + { "lat": 40.7582360, "lon": -73.9370090 }, + { "lat": 40.7582016, "lon": -73.9369460 }, + { "lat": 40.7578595, "lon": -73.9363194 }, + { "lat": 40.7578080, "lon": -73.9362250 }, + { "lat": 40.7577692, "lon": -73.9361539 }, + { "lat": 40.7574337, "lon": -73.9355395 }, + { "lat": 40.7573930, "lon": -73.9354650 }, + { "lat": 40.7573586, "lon": -73.9354012 }, + { "lat": 40.7569933, "lon": -73.9347240 }, + { "lat": 40.7569568, "lon": -73.9346560 }, + { "lat": 40.7569004, "lon": -73.9345538 }, + { "lat": 40.7566126, "lon": -73.9340333 }, + { "lat": 40.7565710, "lon": -73.9339580 }, + { "lat": 40.7565395, "lon": -73.9338998 }, + { "lat": 40.7562819, "lon": -73.9334243 }, + { "lat": 40.7562390, "lon": -73.9333450 }, + { "lat": 40.7562041, "lon": -73.9332807 }, + { "lat": 40.7558636, "lon": -73.9326546 }, + { "lat": 40.7558212, "lon": -73.9325753 }, + { "lat": 40.7557890, "lon": -73.9325174 }, + { "lat": 40.7555570, "lon": -73.9321010 }, + { "lat": 40.7554420, "lon": -73.9318977 }, + { "lat": 40.7554088, "lon": -73.9318390 }, + { "lat": 40.7553641, "lon": -73.9317582 }, + { "lat": 40.7550437, "lon": -73.9311868 }, + { "lat": 40.7549740, "lon": -73.9310570 } + ], + "tags": { + "highway": "residential", + "name": "37th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701721, + "bounds": { + "minlat": 40.7483729, + "minlon": -73.9098197, + "maxlat": 40.7515750, + "maxlon": -73.8967629 + }, + "nodes": [ + 42815933, + 3569893201, + 3786044391, + 11643653086, + 42815935, + 11643653330, + 11643653194, + 42815937, + 11643653199, + 11643653207, + 42815939, + 11643653209, + 11643653218, + 42815941, + 11643653220, + 11643653231, + 42815946, + 11643653233, + 11643653244, + 42815949, + 11643653246, + 11643674650, + 42815952, + 11643674652, + 11643653016, + 42815955, + 11643653018, + 11643674603, + 42815958, + 11643674601, + 11643652959, + 11643653315, + 42815961, + 11643653306, + 8116678409, + 11643653286, + 42815965, + 11643653284, + 9950327952, + 42815968, + 9950327940, + 42815972, + 9194848455, + 9194848456, + 9194848457, + 1934649983, + 9950332256, + 42815975 + ], + "geometry": [ + { "lat": 40.7515750, "lon": -73.9098197 }, + { "lat": 40.7515446, "lon": -73.9096968 }, + { "lat": 40.7514319, "lon": -73.9092522 }, + { "lat": 40.7511069, "lon": -73.9079703 }, + { "lat": 40.7510860, "lon": -73.9078880 }, + { "lat": 40.7510647, "lon": -73.9078068 }, + { "lat": 40.7508745, "lon": -73.9070821 }, + { "lat": 40.7508530, "lon": -73.9070000 }, + { "lat": 40.7508342, "lon": -73.9069261 }, + { "lat": 40.7506467, "lon": -73.9061903 }, + { "lat": 40.7506299, "lon": -73.9061242 }, + { "lat": 40.7506065, "lon": -73.9060356 }, + { "lat": 40.7504132, "lon": -73.9053043 }, + { "lat": 40.7503920, "lon": -73.9052240 }, + { "lat": 40.7503726, "lon": -73.9051487 }, + { "lat": 40.7501838, "lon": -73.9044181 }, + { "lat": 40.7501587, "lon": -73.9043208 }, + { "lat": 40.7501421, "lon": -73.9042568 }, + { "lat": 40.7499523, "lon": -73.9035258 }, + { "lat": 40.7499327, "lon": -73.9034502 }, + { "lat": 40.7499118, "lon": -73.9033702 }, + { "lat": 40.7497210, "lon": -73.9026404 }, + { "lat": 40.7497000, "lon": -73.9025600 }, + { "lat": 40.7496785, "lon": -73.9024774 }, + { "lat": 40.7494895, "lon": -73.9017513 }, + { "lat": 40.7494650, "lon": -73.9016570 }, + { "lat": 40.7494404, "lon": -73.9015621 }, + { "lat": 40.7492058, "lon": -73.9006584 }, + { "lat": 40.7491860, "lon": -73.9005820 }, + { "lat": 40.7491670, "lon": -73.9005084 }, + { "lat": 40.7490450, "lon": -73.9000363 }, + { "lat": 40.7489750, "lon": -73.8997654 }, + { "lat": 40.7489560, "lon": -73.8996920 }, + { "lat": 40.7489375, "lon": -73.8996215 }, + { "lat": 40.7488428, "lon": -73.8992597 }, + { "lat": 40.7487443, "lon": -73.8988835 }, + { "lat": 40.7487240, "lon": -73.8988060 }, + { "lat": 40.7487044, "lon": -73.8987300 }, + { "lat": 40.7485135, "lon": -73.8979923 }, + { "lat": 40.7484940, "lon": -73.8979170 }, + { "lat": 40.7484741, "lon": -73.8978449 }, + { "lat": 40.7484152, "lon": -73.8976320 }, + { "lat": 40.7483818, "lon": -73.8974880 }, + { "lat": 40.7483730, "lon": -73.8974433 }, + { "lat": 40.7483729, "lon": -73.8973959 }, + { "lat": 40.7483762, "lon": -73.8973421 }, + { "lat": 40.7484242, "lon": -73.8968477 }, + { "lat": 40.7484323, "lon": -73.8967629 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "37th Avenue", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701723, + "bounds": { + "minlat": 40.7502440, + "minlon": -73.9201270, + "maxlat": 40.7511890, + "maxlon": -73.9151896 + }, + "nodes": [ + 42816211, + 8593852958, + 8593852986, + 8340628412, + 3813776477, + 3813776492, + 8340628409, + 3813776459, + 5540344320, + 8340628414, + 5540345827, + 10762234052, + 42816214 + ], + "geometry": [ + { "lat": 40.7502440, "lon": -73.9201270 }, + { "lat": 40.7502671, "lon": -73.9200044 }, + { "lat": 40.7502755, "lon": -73.9199593 }, + { "lat": 40.7503468, "lon": -73.9195802 }, + { "lat": 40.7504210, "lon": -73.9191856 }, + { "lat": 40.7504355, "lon": -73.9191085 }, + { "lat": 40.7504875, "lon": -73.9188319 }, + { "lat": 40.7506069, "lon": -73.9181965 }, + { "lat": 40.7506444, "lon": -73.9179971 }, + { "lat": 40.7506668, "lon": -73.9178780 }, + { "lat": 40.7508050, "lon": -73.9171429 }, + { "lat": 40.7511640, "lon": -73.9153167 }, + { "lat": 40.7511890, "lon": -73.9151896 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "37th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701803, + "bounds": { + "minlat": 40.7694083, + "minlon": -73.9224342, + "maxlat": 40.7707910, + "maxlon": -73.9207870 + }, + "nodes": [ + 42817383, + 6452996026, + 6863237729, + 8032268628, + 6453012672, + 42817377 + ], + "geometry": [ + { "lat": 40.7694083, "lon": -73.9224342 }, + { "lat": 40.7694670, "lon": -73.9223643 }, + { "lat": 40.7704814, "lon": -73.9211558 }, + { "lat": 40.7706788, "lon": -73.9209206 }, + { "lat": 40.7707223, "lon": -73.9208669 }, + { "lat": 40.7707910, "lon": -73.9207870 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "28th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701805, + "bounds": { + "minlat": 40.7607889, + "minlon": -73.9296584, + "maxlat": 40.7624750, + "maxlon": -73.9282910 + }, + "nodes": [ + 42817396, + 6455614978, + 6452518620, + 42817402 + ], + "geometry": [ + { "lat": 40.7624750, "lon": -73.9282910 }, + { "lat": 40.7624258, "lon": -73.9283309 }, + { "lat": 40.7608730, "lon": -73.9295902 }, + { "lat": 40.7607889, "lon": -73.9296584 } + ], + "tags": { + "highway": "residential", + "name": "28th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701808, + "bounds": { + "minlat": 40.7435255, + "minlon": -73.9395179, + "maxlat": 40.7447578, + "maxlon": -73.9392628 + }, + "nodes": [ + 42817476, + 8991509399, + 5867117527, + 5867117530, + 9981973374, + 42817478 + ], + "geometry": [ + { "lat": 40.7447578, "lon": -73.9392628 }, + { "lat": 40.7446730, "lon": -73.9392807 }, + { "lat": 40.7446231, "lon": -73.9392904 }, + { "lat": 40.7436626, "lon": -73.9394879 }, + { "lat": 40.7436159, "lon": -73.9394988 }, + { "lat": 40.7435255, "lon": -73.9395179 } + ], + "tags": { + "highway": "unclassified", + "name": "28th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701829, + "bounds": { + "minlat": 40.7458916, + "minlon": -73.9285535, + "maxlat": 40.7461093, + "maxlon": -73.9266986 + }, + "nodes": [ + 42817761, + 10069673278, + 11694597392, + 42817765, + 11694597394, + 10069673279, + 42817769 + ], + "geometry": [ + { "lat": 40.7461093, "lon": -73.9285535 }, + { "lat": 40.7460998, "lon": -73.9284702 }, + { "lat": 40.7460115, "lon": -73.9276998 }, + { "lat": 40.7460023, "lon": -73.9276197 }, + { "lat": 40.7459934, "lon": -73.9275438 }, + { "lat": 40.7459038, "lon": -73.9267794 }, + { "lat": 40.7458916, "lon": -73.9266986 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701834, + "bounds": { + "minlat": 40.7423239, + "minlon": -73.9089560, + "maxlat": 40.7434700, + "maxlon": -73.9021450 + }, + "nodes": [ + 42818003, + 9950327786, + 8089066801, + 11917948353, + 42818006, + 9950327910, + 42818010, + 9950327779, + 7780357443, + 7780357440, + 5481949326, + 7445207931, + 9950327907, + 42818014, + 9950327729, + 7445207932, + 42818017, + 42818019, + 13040979451, + 42818023, + 13040979455, + 9385114354, + 9983516141, + 42818027 + ], + "geometry": [ + { "lat": 40.7434700, "lon": -73.9089560 }, + { "lat": 40.7434597, "lon": -73.9088849 }, + { "lat": 40.7434536, "lon": -73.9088424 }, + { "lat": 40.7433492, "lon": -73.9081214 }, + { "lat": 40.7433377, "lon": -73.9080418 }, + { "lat": 40.7432298, "lon": -73.9072463 }, + { "lat": 40.7432180, "lon": -73.9071590 }, + { "lat": 40.7432079, "lon": -73.9070860 }, + { "lat": 40.7431528, "lon": -73.9067008 }, + { "lat": 40.7431176, "lon": -73.9064819 }, + { "lat": 40.7430026, "lon": -73.9056557 }, + { "lat": 40.7428251, "lon": -73.9044151 }, + { "lat": 40.7428175, "lon": -73.9043634 }, + { "lat": 40.7428050, "lon": -73.9042770 }, + { "lat": 40.7427891, "lon": -73.9042048 }, + { "lat": 40.7427774, "lon": -73.9041505 }, + { "lat": 40.7426950, "lon": -73.9037940 }, + { "lat": 40.7425950, "lon": -73.9033930 }, + { "lat": 40.7425769, "lon": -73.9033069 }, + { "lat": 40.7425070, "lon": -73.9029740 }, + { "lat": 40.7424933, "lon": -73.9029119 }, + { "lat": 40.7423509, "lon": -73.9022673 }, + { "lat": 40.7423395, "lon": -73.9022156 }, + { "lat": 40.7423239, "lon": -73.9021450 } + ], + "tags": { + "highway": "residential", + "name": "43rd Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "43rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 5701840, + "bounds": { + "minlat": 40.7506535, + "minlon": -73.9503997, + "maxlat": 40.7530182, + "maxlon": -73.9456600 + }, + "nodes": [ + 42818101, + 6452722126, + 5714280488, + 11623153652, + 42818104, + 11623153653, + 11211160209, + 42818107, + 11211160211, + 11211160214, + 42818110, + 11211160216, + 7046317815, + 13701191001, + 42818112, + 12343655418, + 42818118, + 8334165796, + 8334173164, + 42818120 + ], + "geometry": [ + { "lat": 40.7530182, "lon": -73.9503997 }, + { "lat": 40.7529729, "lon": -73.9503071 }, + { "lat": 40.7529476, "lon": -73.9502557 }, + { "lat": 40.7526464, "lon": -73.9496688 }, + { "lat": 40.7526090, "lon": -73.9495960 }, + { "lat": 40.7525777, "lon": -73.9495329 }, + { "lat": 40.7522570, "lon": -73.9488858 }, + { "lat": 40.7522180, "lon": -73.9488070 }, + { "lat": 40.7521883, "lon": -73.9487475 }, + { "lat": 40.7518905, "lon": -73.9481500 }, + { "lat": 40.7518420, "lon": -73.9480530 }, + { "lat": 40.7517993, "lon": -73.9479688 }, + { "lat": 40.7516657, "lon": -73.9477048 }, + { "lat": 40.7516297, "lon": -73.9476323 }, + { "lat": 40.7514360, "lon": -73.9472424 }, + { "lat": 40.7510843, "lon": -73.9465374 }, + { "lat": 40.7510507, "lon": -73.9464701 }, + { "lat": 40.7510121, "lon": -73.9463922 }, + { "lat": 40.7507093, "lon": -73.9457744 }, + { "lat": 40.7506535, "lon": -73.9456600 } + ], + "tags": { + "highway": "secondary", + "name": "43rd Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701861, + "bounds": { + "minlat": 40.7507793, + "minlon": -73.9419581, + "maxlat": 40.7513101, + "maxlon": -73.9407725 + }, + "nodes": [ + 276204425, + 592643541, + 2969267803, + 2969267801, + 12834567789 + ], + "geometry": [ + { "lat": 40.7513101, "lon": -73.9419581 }, + { "lat": 40.7508506, "lon": -73.9408715 }, + { "lat": 40.7508342, "lon": -73.9408353 }, + { "lat": 40.7508173, "lon": -73.9408115 }, + { "lat": 40.7507793, "lon": -73.9407725 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "bridge": "yes", + "emergency": "yes", + "foot": "designated", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "layer": "1", + "maxheight": "below_default", + "motor_vehicle": "no", + "name": "Queensboro Bridge Outer Roadway", + "sidewalk:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701904, + "bounds": { + "minlat": 40.7135711, + "minlon": -73.9068458, + "maxlat": 40.7137973, + "maxlon": -73.9037764 + }, + "nodes": [ + 42819385, + 2089937759, + 9747567503, + 42819386, + 9747567501, + 2089937760, + 42819388 + ], + "geometry": [ + { "lat": 40.7136307, "lon": -73.9068458 }, + { "lat": 40.7135711, "lon": -73.9067337 }, + { "lat": 40.7137057, "lon": -73.9056422 }, + { "lat": 40.7137150, "lon": -73.9055630 }, + { "lat": 40.7137242, "lon": -73.9054896 }, + { "lat": 40.7137973, "lon": -73.9049085 }, + { "lat": 40.7136728, "lon": -73.9037764 } + ], + "tags": { + "highway": "residential", + "name": "62nd Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5701924, + "bounds": { + "minlat": 40.7569948, + "minlon": -73.9078208, + "maxlat": 40.7583293, + "maxlon": -73.9073050 + }, + "nodes": [ + 42819560, + 11649744865, + 11917948308, + 11649600063, + 7814169240, + 7660653651, + 7660830680, + 2313537249 + ], + "geometry": [ + { "lat": 40.7583293, "lon": -73.9073050 }, + { "lat": 40.7580367, "lon": -73.9074952 }, + { "lat": 40.7578486, "lon": -73.9075583 }, + { "lat": 40.7576923, "lon": -73.9075708 }, + { "lat": 40.7574710, "lon": -73.9076418 }, + { "lat": 40.7572910, "lon": -73.9077004 }, + { "lat": 40.7570820, "lon": -73.9077696 }, + { "lat": 40.7569948, "lon": -73.9078208 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "51st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701925, + "bounds": { + "minlat": 40.7460238, + "minlon": -73.9133802, + "maxlat": 40.7488186, + "maxlon": -73.9128144 + }, + "nodes": [ + 42819589, + 10074123201, + 9070781841, + 10774422802, + 10774439405, + 4621136457, + 7667084780, + 42819582 + ], + "geometry": [ + { "lat": 40.7460238, "lon": -73.9133802 }, + { "lat": 40.7461250, "lon": -73.9133587 }, + { "lat": 40.7469423, "lon": -73.9131976 }, + { "lat": 40.7474847, "lon": -73.9130874 }, + { "lat": 40.7479758, "lon": -73.9129876 }, + { "lat": 40.7484666, "lon": -73.9128879 }, + { "lat": 40.7487522, "lon": -73.9128289 }, + { "lat": 40.7488186, "lon": -73.9128144 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "51st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5701930, + "bounds": { + "minlat": 40.7222710, + "minlon": -73.9178930, + "maxlat": 40.7242625, + "maxlon": -73.9171619 + }, + "nodes": [ + 42819666, + 13701194605, + 5482425962, + 3584456548, + 42819671 + ], + "geometry": [ + { "lat": 40.7242625, "lon": -73.9171619 }, + { "lat": 40.7240901, "lon": -73.9172254 }, + { "lat": 40.7237867, "lon": -73.9173372 }, + { "lat": 40.7235364, "lon": -73.9174290 }, + { "lat": 40.7222710, "lon": -73.9178930 } + ], + "tags": { + "highway": "residential", + "name": "Railroad Place", + "name_1": "Railroad Place", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "49th", + "tiger:name_base_1": "Railroad", + "tiger:name_type": "Ln", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5701933, + "bounds": { + "minlat": 40.7535396, + "minlon": -73.9469847, + "maxlat": 40.7542976, + "maxlon": -73.9452686 + }, + "nodes": [ + 42819709, + 5491803958, + 7460196697, + 5491803937, + 42819711 + ], + "geometry": [ + { "lat": 40.7542976, "lon": -73.9469847 }, + { "lat": 40.7542513, "lon": -73.9469471 }, + { "lat": 40.7535523, "lon": -73.9453399 }, + { "lat": 40.7535454, "lon": -73.9453240 }, + { "lat": 40.7535396, "lon": -73.9452686 } + ], + "tags": { + "highway": "residential", + "name": "41st Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "41st", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_left_1": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 5701997, + "bounds": { + "minlat": 40.7769340, + "minlon": -73.9213950, + "maxlat": 40.7784540, + "maxlon": -73.9192580 + }, + "nodes": [ + 42820708, + 6450658446, + 2753135623, + 13701538264, + 7722330245, + 6459357068, + 42820704, + 6459357290, + 2753135604, + 7746651024, + 11114803518, + 2753135608, + 7756491636, + 6459357288, + 42812044 + ], + "geometry": [ + { "lat": 40.7769340, "lon": -73.9192580 }, + { "lat": 40.7769793, "lon": -73.9193219 }, + { "lat": 40.7771745, "lon": -73.9195973 }, + { "lat": 40.7773771, "lon": -73.9198823 }, + { "lat": 40.7775245, "lon": -73.9200916 }, + { "lat": 40.7775771, "lon": -73.9201658 }, + { "lat": 40.7776460, "lon": -73.9202630 }, + { "lat": 40.7777119, "lon": -73.9203553 }, + { "lat": 40.7779128, "lon": -73.9206368 }, + { "lat": 40.7779228, "lon": -73.9206508 }, + { "lat": 40.7781669, "lon": -73.9209929 }, + { "lat": 40.7782199, "lon": -73.9210671 }, + { "lat": 40.7783767, "lon": -73.9212867 }, + { "lat": 40.7784148, "lon": -73.9213401 }, + { "lat": 40.7784540, "lon": -73.9213950 } + ], + "tags": { + "highway": "residential", + "name": "23rd Drive", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "23rd", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_left_1": "11105", + "tiger:zip_right": "11105", + "tiger:zip_right_1": "11105" + } +}, +{ + "type": "way", + "id": 5702012, + "bounds": { + "minlat": 40.7449297, + "minlon": -73.9325862, + "maxlat": 40.7464862, + "maxlon": -73.9322774 + }, + "nodes": [ + 42817750, + 10762202952, + 5482217754, + 5482217749, + 5482217748, + 10762119903, + 276207583 + ], + "geometry": [ + { "lat": 40.7464862, "lon": -73.9322774 }, + { "lat": 40.7464021, "lon": -73.9322904 }, + { "lat": 40.7460503, "lon": -73.9323596 }, + { "lat": 40.7459214, "lon": -73.9323859 }, + { "lat": 40.7458801, "lon": -73.9323942 }, + { "lat": 40.7450341, "lon": -73.9325652 }, + { "lat": 40.7449297, "lon": -73.9325862 } + ], + "tags": { + "highway": "residential", + "name": "32nd Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702051, + "bounds": { + "minlat": 40.7460408, + "minlon": -73.9414960, + "maxlat": 40.7475207, + "maxlon": -73.9405743 + }, + "nodes": [ + 2971841360, + 42821393, + 9371728435, + 13276743891, + 276319368 + ], + "geometry": [ + { "lat": 40.7475207, "lon": -73.9414960 }, + { "lat": 40.7474202, "lon": -73.9414362 }, + { "lat": 40.7473561, "lon": -73.9413946 }, + { "lat": 40.7460680, "lon": -73.9405913 }, + { "lat": 40.7460408, "lon": -73.9405743 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Purves Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702058, + "bounds": { + "minlat": 40.7223140, + "minlon": -73.9120410, + "maxlat": 40.7226000, + "maxlon": -73.9045630 + }, + "nodes": [ + 42821462, + 11055680607, + 8234915527, + 8234915436, + 7963468554, + 11055685703, + 42821457, + 11055685704, + 8234915493, + 11055680632, + 42821452, + 11055680633, + 7963480220, + 11055680634, + 42821449 + ], + "geometry": [ + { "lat": 40.7226000, "lon": -73.9045630 }, + { "lat": 40.7225971, "lon": -73.9046364 }, + { "lat": 40.7225464, "lon": -73.9059141 }, + { "lat": 40.7225049, "lon": -73.9069628 }, + { "lat": 40.7224657, "lon": -73.9082911 }, + { "lat": 40.7224635, "lon": -73.9083533 }, + { "lat": 40.7224604, "lon": -73.9084242 }, + { "lat": 40.7224585, "lon": -73.9085081 }, + { "lat": 40.7223754, "lon": -73.9105452 }, + { "lat": 40.7223741, "lon": -73.9105823 }, + { "lat": 40.7223720, "lon": -73.9106460 }, + { "lat": 40.7223687, "lon": -73.9107248 }, + { "lat": 40.7223203, "lon": -73.9118900 }, + { "lat": 40.7223174, "lon": -73.9119591 }, + { "lat": 40.7223140, "lon": -73.9120410 } + ], + "tags": { + "highway": "residential", + "name": "57th Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5702059, + "bounds": { + "minlat": 40.7223508, + "minlon": -73.9133217, + "maxlat": 40.7223960, + "maxlon": -73.9120440 + }, + "nodes": [ + 42821479, + 11055680639, + 7963480239, + 11055685623, + 4396956977 + ], + "geometry": [ + { "lat": 40.7223960, "lon": -73.9120440 }, + { "lat": 40.7223931, "lon": -73.9121242 }, + { "lat": 40.7223541, "lon": -73.9132281 }, + { "lat": 40.7223526, "lon": -73.9132716 }, + { "lat": 40.7223508, "lon": -73.9133217 } + ], + "tags": { + "highway": "residential", + "name": "57th Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5702127, + "bounds": { + "minlat": 40.7288894, + "minlon": -73.9239737, + "maxlat": 40.7299095, + "maxlon": -73.9195097 + }, + "nodes": [ + 5177091565, + 10087637146, + 10087637144, + 42823393, + 10087637145, + 7987132561, + 8367809744, + 7987132570, + 8561156401, + 42823397 + ], + "geometry": [ + { "lat": 40.7299095, "lon": -73.9239737 }, + { "lat": 40.7298903, "lon": -73.9238878 }, + { "lat": 40.7296140, "lon": -73.9226541 }, + { "lat": 40.7295940, "lon": -73.9225644 }, + { "lat": 40.7295737, "lon": -73.9224727 }, + { "lat": 40.7294920, "lon": -73.9221026 }, + { "lat": 40.7294079, "lon": -73.9217270 }, + { "lat": 40.7291163, "lon": -73.9203444 }, + { "lat": 40.7289582, "lon": -73.9196161 }, + { "lat": 40.7288894, "lon": -73.9195097 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "55th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702130, + "bounds": { + "minlat": 40.7276066, + "minlon": -73.9195097, + "maxlat": 40.7288894, + "maxlon": -73.9121175 + }, + "nodes": [ + 42823397, + 8561156400, + 10087637237, + 42823469, + 10087637240, + 42823471, + 10087637241, + 8190068757, + 10087637242, + 2340466193, + 10087637243, + 10087637244, + 42823474 + ], + "geometry": [ + { "lat": 40.7288894, "lon": -73.9195097 }, + { "lat": 40.7288194, "lon": -73.9194109 }, + { "lat": 40.7285264, "lon": -73.9180812 }, + { "lat": 40.7285061, "lon": -73.9179756 }, + { "lat": 40.7284915, "lon": -73.9178886 }, + { "lat": 40.7279740, "lon": -73.9150334 }, + { "lat": 40.7279138, "lon": -73.9146900 }, + { "lat": 40.7278991, "lon": -73.9145968 }, + { "lat": 40.7278794, "lon": -73.9144444 }, + { "lat": 40.7278490, "lon": -73.9141893 }, + { "lat": 40.7276451, "lon": -73.9124926 }, + { "lat": 40.7276310, "lon": -73.9123555 }, + { "lat": 40.7276066, "lon": -73.9121175 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "55th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702154, + "bounds": { + "minlat": 40.7646160, + "minlon": -73.9402806, + "maxlat": 40.7655268, + "maxlon": -73.9377960 + }, + "nodes": [ + 2402842573, + 2459401784, + 12059125040, + 11619844482, + 6452525944, + 42824071, + 6452525942, + 6452525947, + 2402842572, + 6452525948, + 6452525952, + 42824080 + ], + "geometry": [ + { "lat": 40.7655268, "lon": -73.9402806 }, + { "lat": 40.7654908, "lon": -73.9401768 }, + { "lat": 40.7654807, "lon": -73.9401482 }, + { "lat": 40.7653325, "lon": -73.9397302 }, + { "lat": 40.7652451, "lon": -73.9394838 }, + { "lat": 40.7652150, "lon": -73.9394190 }, + { "lat": 40.7651920, "lon": -73.9393552 }, + { "lat": 40.7649482, "lon": -73.9386788 }, + { "lat": 40.7649210, "lon": -73.9386030 }, + { "lat": 40.7648963, "lon": -73.9385379 }, + { "lat": 40.7646541, "lon": -73.9378967 }, + { "lat": 40.7646160, "lon": -73.9377960 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "34th Avenue" + } +}, +{ + "type": "way", + "id": 5702172, + "bounds": { + "minlat": 40.7713763, + "minlon": -73.9333198, + "maxlat": 40.7720210, + "maxlon": -73.9313331 + }, + "nodes": [ + 7745197939, + 7768475667, + 42824402, + 2459385826, + 11308870990, + 42824399 + ], + "geometry": [ + { "lat": 40.7715516, "lon": -73.9313331 }, + { "lat": 40.7715312, "lon": -73.9315360 }, + { "lat": 40.7713763, "lon": -73.9330803 }, + { "lat": 40.7716113, "lon": -73.9331699 }, + { "lat": 40.7719499, "lon": -73.9332938 }, + { "lat": 40.7720210, "lon": -73.9333198 } + ], + "tags": { + "highway": "residential", + "name": "Welling Court", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5702180, + "bounds": { + "minlat": 40.7749954, + "minlon": -73.9342732, + "maxlat": 40.7764495, + "maxlon": -73.9335209 + }, + "nodes": [ + 42824480, + 7768475532, + 7756437669, + 42811426 + ], + "geometry": [ + { "lat": 40.7764495, "lon": -73.9335209 }, + { "lat": 40.7763969, "lon": -73.9335481 }, + { "lat": 40.7750726, "lon": -73.9342319 }, + { "lat": 40.7749954, "lon": -73.9342732 } + ], + "tags": { + "highway": "residential", + "name": "3rd Street" + } +}, +{ + "type": "way", + "id": 5702240, + "bounds": { + "minlat": 40.7293173, + "minlon": -73.9291300, + "maxlat": 40.7293196, + "maxlon": -73.9289574 + }, + "nodes": [ + 7678967236, + 9982698002, + 9194902825, + 7712008322 + ], + "geometry": [ + { "lat": 40.7293180, "lon": -73.9291300 }, + { "lat": 40.7293173, "lon": -73.9290722 }, + { "lat": 40.7293177, "lon": -73.9290147 }, + { "lat": 40.7293196, "lon": -73.9289574 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "name": "Laurel Hill Boulevard", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 5702244, + "bounds": { + "minlat": 40.7363657, + "minlon": -73.9092686, + "maxlat": 40.7393615, + "maxlon": -73.9002959 + }, + "nodes": [ + 597294481, + 10087484113, + 9194848680, + 9194848679, + 10087484101, + 597414824, + 10087484102, + 42825222, + 276314339, + 10087484104, + 9194848677, + 9194848676, + 9194848675, + 10087484106, + 42825220, + 9194848674, + 9194848673, + 9194848672, + 10087484108, + 42825218, + 42825270, + 9194848650, + 10202773108, + 42795247, + 10202787262, + 9194848594, + 9194848595, + 9194848596, + 42825278, + 9194848597, + 9194848598, + 9194848599, + 2341740373, + 9194848600, + 9194848601, + 42825280, + 9194848602, + 9194848603, + 42825290, + 9194848604, + 9194848605, + 597414800 + ], + "geometry": [ + { "lat": 40.7363952, "lon": -73.9092686 }, + { "lat": 40.7363657, "lon": -73.9091559 }, + { "lat": 40.7363966, "lon": -73.9082250 }, + { "lat": 40.7363980, "lon": -73.9081467 }, + { "lat": 40.7364038, "lon": -73.9080618 }, + { "lat": 40.7364137, "lon": -73.9079830 }, + { "lat": 40.7364257, "lon": -73.9079200 }, + { "lat": 40.7364398, "lon": -73.9078509 }, + { "lat": 40.7365112, "lon": -73.9075397 }, + { "lat": 40.7365452, "lon": -73.9073967 }, + { "lat": 40.7365837, "lon": -73.9072572 }, + { "lat": 40.7366221, "lon": -73.9071157 }, + { "lat": 40.7366668, "lon": -73.9069687 }, + { "lat": 40.7367022, "lon": -73.9068556 }, + { "lat": 40.7367376, "lon": -73.9067487 }, + { "lat": 40.7367822, "lon": -73.9066117 }, + { "lat": 40.7368364, "lon": -73.9064592 }, + { "lat": 40.7368855, "lon": -73.9063320 }, + { "lat": 40.7369518, "lon": -73.9061812 }, + { "lat": 40.7371842, "lon": -73.9056564 }, + { "lat": 40.7376282, "lon": -73.9046317 }, + { "lat": 40.7379425, "lon": -73.9038377 }, + { "lat": 40.7379636, "lon": -73.9037884 }, + { "lat": 40.7380092, "lon": -73.9036816 }, + { "lat": 40.7380510, "lon": -73.9035782 }, + { "lat": 40.7380749, "lon": -73.9035167 }, + { "lat": 40.7382886, "lon": -73.9029640 }, + { "lat": 40.7383295, "lon": -73.9028411 }, + { "lat": 40.7383601, "lon": -73.9027294 }, + { "lat": 40.7383948, "lon": -73.9025869 }, + { "lat": 40.7384291, "lon": -73.9024240 }, + { "lat": 40.7384573, "lon": -73.9022826 }, + { "lat": 40.7384885, "lon": -73.9021478 }, + { "lat": 40.7385298, "lon": -73.9020084 }, + { "lat": 40.7385720, "lon": -73.9018854 }, + { "lat": 40.7386122, "lon": -73.9017717 }, + { "lat": 40.7386778, "lon": -73.9016193 }, + { "lat": 40.7387348, "lon": -73.9014977 }, + { "lat": 40.7390519, "lon": -73.9008317 }, + { "lat": 40.7391181, "lon": -73.9007113 }, + { "lat": 40.7392595, "lon": -73.9004662 }, + { "lat": 40.7393615, "lon": -73.9002959 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702251, + "bounds": { + "minlat": 40.7445107, + "minlon": -73.9448564, + "maxlat": 40.7460905, + "maxlon": -73.9437637 + }, + "nodes": [ + 2971841353, + 8996215486, + 9982698548, + 13713202549, + 13713202546, + 13713202543, + 6856749494, + 5481972185, + 276096742 + ], + "geometry": [ + { "lat": 40.7460905, "lon": -73.9448564 }, + { "lat": 40.7460328, "lon": -73.9448165 }, + { "lat": 40.7459970, "lon": -73.9447917 }, + { "lat": 40.7458526, "lon": -73.9446916 }, + { "lat": 40.7457665, "lon": -73.9446306 }, + { "lat": 40.7457364, "lon": -73.9446106 }, + { "lat": 40.7450744, "lon": -73.9441533 }, + { "lat": 40.7450408, "lon": -73.9441304 }, + { "lat": 40.7445107, "lon": -73.9437637 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Pearson Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702254, + "bounds": { + "minlat": 40.7366977, + "minlon": -73.9085700, + "maxlat": 40.7379322, + "maxlon": -73.9081856 + }, + "nodes": [ + 42825371, + 10087528623, + 9696102491, + 10087528624, + 10087528625, + 2844431183, + 10087528622, + 10087528621, + 10087528620, + 8626106393, + 10087484109, + 42825313 + ], + "geometry": [ + { "lat": 40.7379322, "lon": -73.9085700 }, + { "lat": 40.7379099, "lon": -73.9084731 }, + { "lat": 40.7378983, "lon": -73.9084229 }, + { "lat": 40.7378779, "lon": -73.9083383 }, + { "lat": 40.7378713, "lon": -73.9083150 }, + { "lat": 40.7378629, "lon": -73.9082961 }, + { "lat": 40.7378535, "lon": -73.9082839 }, + { "lat": 40.7378387, "lon": -73.9082769 }, + { "lat": 40.7378217, "lon": -73.9082747 }, + { "lat": 40.7368132, "lon": -73.9081928 }, + { "lat": 40.7367772, "lon": -73.9081906 }, + { "lat": 40.7366977, "lon": -73.9081856 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "58th Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702256, + "bounds": { + "minlat": 40.7346770, + "minlon": -73.9086470, + "maxlat": 40.7364398, + "maxlon": -73.9078509 + }, + "nodes": [ + 42825222, + 10087484103, + 8626128180, + 12908215078, + 12908215068, + 42825384, + 12908215064, + 12908215098, + 13247192686, + 42806986 + ], + "geometry": [ + { "lat": 40.7364398, "lon": -73.9078509 }, + { "lat": 40.7363610, "lon": -73.9078860 }, + { "lat": 40.7363129, "lon": -73.9079043 }, + { "lat": 40.7354269, "lon": -73.9083004 }, + { "lat": 40.7353886, "lon": -73.9083176 }, + { "lat": 40.7353250, "lon": -73.9083460 }, + { "lat": 40.7352691, "lon": -73.9083720 }, + { "lat": 40.7352302, "lon": -73.9083900 }, + { "lat": 40.7347462, "lon": -73.9086149 }, + { "lat": 40.7346770, "lon": -73.9086470 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "58th Place", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702259, + "bounds": { + "minlat": 40.7198570, + "minlon": -73.9106686, + "maxlat": 40.7229811, + "maxlon": -73.9104840 + }, + "nodes": [ + 42825392, + 11055680625, + 11055680630, + 42821452, + 11055680628, + 8234915533, + 42825398, + 8234915524, + 42815542, + 42825401, + 8234915483, + 11055685710, + 42825404 + ], + "geometry": [ + { "lat": 40.7229811, "lon": -73.9106686 }, + { "lat": 40.7229362, "lon": -73.9106671 }, + { "lat": 40.7224326, "lon": -73.9106483 }, + { "lat": 40.7223720, "lon": -73.9106460 }, + { "lat": 40.7223269, "lon": -73.9106431 }, + { "lat": 40.7218694, "lon": -73.9106144 }, + { "lat": 40.7216870, "lon": -73.9106030 }, + { "lat": 40.7212345, "lon": -73.9105740 }, + { "lat": 40.7210010, "lon": -73.9105590 }, + { "lat": 40.7203130, "lon": -73.9105140 }, + { "lat": 40.7200153, "lon": -73.9104944 }, + { "lat": 40.7199629, "lon": -73.9104905 }, + { "lat": 40.7198570, "lon": -73.9104840 } + ], + "tags": { + "highway": "residential", + "name": "58th Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "58th", + "tiger:name_type": "Pl", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 5702297, + "bounds": { + "minlat": 40.7660654, + "minlon": -73.9308933, + "maxlat": 40.7660913, + "maxlon": -73.9308684 + }, + "nodes": [ + 7726598426, + 7726598429 + ], + "geometry": [ + { "lat": 40.7660913, "lon": -73.9308684 }, + { "lat": 40.7660654, "lon": -73.9308933 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702302, + "bounds": { + "minlat": 40.7404501, + "minlon": -73.9499161, + "maxlat": 40.7411365, + "maxlon": -73.9496907 + }, + "nodes": [ + 42836343, + 8316786970, + 9690650998, + 9690651002, + 42826070 + ], + "geometry": [ + { "lat": 40.7411365, "lon": -73.9496907 }, + { "lat": 40.7410715, "lon": -73.9497155 }, + { "lat": 40.7405808, "lon": -73.9498704 }, + { "lat": 40.7405348, "lon": -73.9498855 }, + { "lat": 40.7404501, "lon": -73.9499161 } + ], + "tags": { + "hgv": "designated", + "highway": "unclassified", + "lanes": "2", + "name": "21st Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5702369, + "bounds": { + "minlat": 40.7413061, + "minlon": -73.9543492, + "maxlat": 40.7415252, + "maxlon": -73.9542669 + }, + "nodes": [ + 276320116, + 13040861918, + 3575033028 + ], + "geometry": [ + { "lat": 40.7413061, "lon": -73.9543492 }, + { "lat": 40.7414048, "lon": -73.9543132 }, + { "lat": 40.7415252, "lon": -73.9542669 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Vernon Boulevard", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Vernon", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5702396, + "bounds": { + "minlat": 40.7034363, + "minlon": -73.9118086, + "maxlat": 40.7105361, + "maxlon": -73.9027020 + }, + "nodes": [ + 3325564447, + 9761722152, + 9762206524, + 42827218, + 9762206522, + 10686537771, + 9762206462, + 42827223, + 9763022437, + 10686537749, + 9763022345, + 42809958, + 9763022347, + 42810452, + 8588167426, + 9763022274, + 42806587, + 9763022110, + 10686537752, + 9763022157, + 42827229, + 9763022159, + 13765930472, + 42827231, + 8626244221, + 9763022139, + 42827234, + 9763022137, + 8626187083, + 9763021984, + 11004055107 + ], + "geometry": [ + { "lat": 40.7034363, "lon": -73.9118086 }, + { "lat": 40.7034961, "lon": -73.9117474 }, + { "lat": 40.7045044, "lon": -73.9107160 }, + { "lat": 40.7045640, "lon": -73.9106550 }, + { "lat": 40.7046248, "lon": -73.9105930 }, + { "lat": 40.7053859, "lon": -73.9098168 }, + { "lat": 40.7054186, "lon": -73.9097835 }, + { "lat": 40.7054710, "lon": -73.9097300 }, + { "lat": 40.7055256, "lon": -73.9096742 }, + { "lat": 40.7065127, "lon": -73.9086687 }, + { "lat": 40.7065496, "lon": -73.9086284 }, + { "lat": 40.7065980, "lon": -73.9085790 }, + { "lat": 40.7066435, "lon": -73.9085308 }, + { "lat": 40.7071540, "lon": -73.9080120 }, + { "lat": 40.7075950, "lon": -73.9075617 }, + { "lat": 40.7076288, "lon": -73.9075263 }, + { "lat": 40.7076770, "lon": -73.9074770 }, + { "lat": 40.7077260, "lon": -73.9074268 }, + { "lat": 40.7087879, "lon": -73.9063381 }, + { "lat": 40.7088231, "lon": -73.9063025 }, + { "lat": 40.7088670, "lon": -73.9062570 }, + { "lat": 40.7089214, "lon": -73.9062012 }, + { "lat": 40.7094145, "lon": -73.9056946 }, + { "lat": 40.7097609, "lon": -73.9053387 }, + { "lat": 40.7098787, "lon": -73.9051157 }, + { "lat": 40.7099724, "lon": -73.9048459 }, + { "lat": 40.7099931, "lon": -73.9047459 }, + { "lat": 40.7100119, "lon": -73.9046554 }, + { "lat": 40.7104995, "lon": -73.9028501 }, + { "lat": 40.7105138, "lon": -73.9027917 }, + { "lat": 40.7105361, "lon": -73.9027020 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Menahan Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702407, + "bounds": { + "minlat": 40.7190404, + "minlon": -73.9084750, + "maxlat": 40.7231702, + "maxlon": -73.9082240 + }, + "nodes": [ + 42827469, + 9820917978, + 13047584551, + 42788748, + 7706126091, + 7706126090, + 11055680666, + 42815546, + 2776603416, + 11055685702, + 42821457, + 11055685701, + 11055680621, + 42827451 + ], + "geometry": [ + { "lat": 40.7190404, "lon": -73.9082240 }, + { "lat": 40.7190977, "lon": -73.9082269 }, + { "lat": 40.7196544, "lon": -73.9082550 }, + { "lat": 40.7197120, "lon": -73.9082580 }, + { "lat": 40.7203516, "lon": -73.9083015 }, + { "lat": 40.7204538, "lon": -73.9083063 }, + { "lat": 40.7205598, "lon": -73.9083130 }, + { "lat": 40.7210840, "lon": -73.9083430 }, + { "lat": 40.7217700, "lon": -73.9083830 }, + { "lat": 40.7224098, "lon": -73.9084205 }, + { "lat": 40.7224604, "lon": -73.9084242 }, + { "lat": 40.7225185, "lon": -73.9084273 }, + { "lat": 40.7231025, "lon": -73.9084702 }, + { "lat": 40.7231702, "lon": -73.9084750 } + ], + "tags": { + "highway": "residential", + "name": "59th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5702411, + "bounds": { + "minlat": 40.7168122, + "minlon": -73.9086230, + "maxlat": 40.7174810, + "maxlon": -73.9084774 + }, + "nodes": [ + 42827509, + 9759984263, + 7963468564, + 42827512 + ], + "geometry": [ + { "lat": 40.7174810, "lon": -73.9086230 }, + { "lat": 40.7174263, "lon": -73.9086105 }, + { "lat": 40.7173871, "lon": -73.9086026 }, + { "lat": 40.7168122, "lon": -73.9084774 } + ], + "tags": { + "highway": "residential", + "name": "59th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "59th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11378" + } +}, +{ + "type": "way", + "id": 5702413, + "bounds": { + "minlat": 40.7140397, + "minlon": -73.9065471, + "maxlat": 40.7143055, + "maxlon": -73.9062707 + }, + "nodes": [ + 5481979848, + 5481979845, + 5481979846, + 5481979847 + ], + "geometry": [ + { "lat": 40.7143055, "lon": -73.9063222 }, + { "lat": 40.7140881, "lon": -73.9065471 }, + { "lat": 40.7140397, "lon": -73.9065363 }, + { "lat": 40.7140742, "lon": -73.9062707 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 5702455, + "bounds": { + "minlat": 40.7545300, + "minlon": -73.9334220, + "maxlat": 40.7555570, + "maxlon": -73.9321010 + }, + "nodes": [ + 42815809, + 6452767199, + 7791667341, + 42828247 + ], + "geometry": [ + { "lat": 40.7555570, "lon": -73.9321010 }, + { "lat": 40.7555032, "lon": -73.9321703 }, + { "lat": 40.7545870, "lon": -73.9333487 }, + { "lat": 40.7545300, "lon": -73.9334220 } + ], + "tags": { + "highway": "service", + "name": "Old Ridge Road", + "service": "alley", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Old Ridge", + "tiger:name_type": "Rd", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 5702459, + "bounds": { + "minlat": 40.7085360, + "minlon": -73.9161090, + "maxlat": 40.7100930, + "maxlon": -73.9145160 + }, + "nodes": [ + 42828274, + 10287737762, + 9755789296, + 42827593, + 9755788847, + 10287737758, + 10693892836, + 9755788852, + 42809936 + ], + "geometry": [ + { "lat": 40.7085360, "lon": -73.9161090 }, + { "lat": 40.7089002, "lon": -73.9157357 }, + { "lat": 40.7089241, "lon": -73.9157112 }, + { "lat": 40.7089740, "lon": -73.9156600 }, + { "lat": 40.7090293, "lon": -73.9156034 }, + { "lat": 40.7090573, "lon": -73.9155748 }, + { "lat": 40.7100041, "lon": -73.9146068 }, + { "lat": 40.7100437, "lon": -73.9145664 }, + { "lat": 40.7100930, "lon": -73.9145160 } + ], + "tags": { + "highway": "residential", + "name": "Hart Street", + "name:etymology:wikidata": "Q1367952", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Hart", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 5702460, + "bounds": { + "minlat": 40.6985800, + "minlon": -73.9260240, + "maxlat": 40.7047640, + "maxlon": -73.9199570 + }, + "nodes": [ + 42477874, + 9755789826, + 8087953269, + 9753035520, + 9752992705, + 42477871, + 9753035519, + 9753035639, + 9753035640, + 42477867, + 9753035647, + 8589606361, + 9753035654, + 42477864, + 9753035668, + 12883509044, + 7963522062, + 9753035680, + 42477862 + ], + "geometry": [ + { "lat": 40.7047640, "lon": -73.9199570 }, + { "lat": 40.7047077, "lon": -73.9200125 }, + { "lat": 40.7041434, "lon": -73.9205695 }, + { "lat": 40.7032156, "lon": -73.9214810 }, + { "lat": 40.7031731, "lon": -73.9215228 }, + { "lat": 40.7031154, "lon": -73.9215796 }, + { "lat": 40.7030599, "lon": -73.9216340 }, + { "lat": 40.7016327, "lon": -73.9230324 }, + { "lat": 40.7015915, "lon": -73.9230734 }, + { "lat": 40.7015300, "lon": -73.9231330 }, + { "lat": 40.7014747, "lon": -73.9231871 }, + { "lat": 40.7001369, "lon": -73.9245025 }, + { "lat": 40.7001107, "lon": -73.9245282 }, + { "lat": 40.7000560, "lon": -73.9245820 }, + { "lat": 40.6999998, "lon": -73.9246369 }, + { "lat": 40.6996906, "lon": -73.9249389 }, + { "lat": 40.6986616, "lon": -73.9259442 }, + { "lat": 40.6986368, "lon": -73.9259685 }, + { "lat": 40.6985800, "lon": -73.9260240 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Hart Street", + "name:etymology:wikidata": "Q1367952", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702464, + "bounds": { + "minlat": 40.7714880, + "minlon": -73.9214011, + "maxlat": 40.7719196, + "maxlon": -73.9207850 + }, + "nodes": [ + 42828365, + 6453007738, + 42828367 + ], + "geometry": [ + { "lat": 40.7719196, "lon": -73.9214011 }, + { "lat": 40.7715325, "lon": -73.9208481 }, + { "lat": 40.7714880, "lon": -73.9207850 } + ], + "tags": { + "highway": "residential", + "name": "25th Road", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "25th", + "tiger:name_type": "Rd", + "tiger:reviewed": "name", + "tiger:zip_left": "11102", + "tiger:zip_left_1": "11102", + "tiger:zip_right": "11102", + "tiger:zip_right_1": "11102" + } +}, +{ + "type": "way", + "id": 5702465, + "bounds": { + "minlat": 40.7734640, + "minlon": -73.9244828, + "maxlat": 40.7740588, + "maxlon": -73.9231480 + }, + "nodes": [ + 42828378, + 7791548126, + 11427746934, + 42828374, + 11427746923, + 3570422557, + 7756491594, + 7746695026 + ], + "geometry": [ + { "lat": 40.7734640, "lon": -73.9231480 }, + { "lat": 40.7734974, "lon": -73.9232247 }, + { "lat": 40.7737339, "lon": -73.9237538 }, + { "lat": 40.7737572, "lon": -73.9238059 }, + { "lat": 40.7737833, "lon": -73.9238648 }, + { "lat": 40.7739841, "lon": -73.9243151 }, + { "lat": 40.7740094, "lon": -73.9243728 }, + { "lat": 40.7740588, "lon": -73.9244828 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "25th Road", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702580, + "bounds": { + "minlat": 40.7479623, + "minlon": -73.9425060, + "maxlat": 40.7482416, + "maxlon": -73.9416655 + }, + "nodes": [ + 42818143, + 9982745667, + 11748559671, + 11748559672, + 42830910 + ], + "geometry": [ + { "lat": 40.7482416, "lon": -73.9416655 }, + { "lat": 40.7482018, "lon": -73.9417750 }, + { "lat": 40.7479679, "lon": -73.9424422 }, + { "lat": 40.7479623, "lon": -73.9424749 }, + { "lat": 40.7479638, "lon": -73.9425060 } + ], + "tags": { + "highway": "residential", + "name": "Hunter Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702602, + "bounds": { + "minlat": 40.7101570, + "minlon": -73.9076950, + "maxlat": 40.7109520, + "maxlon": -73.9073270 + }, + "nodes": [ + 42814494, + 9763022235, + 11128557546, + 8626187096, + 11128557543, + 9763022236, + 42831235 + ], + "geometry": [ + { "lat": 40.7109520, "lon": -73.9076950 }, + { "lat": 40.7108897, "lon": -73.9076662 }, + { "lat": 40.7103879, "lon": -73.9074339 }, + { "lat": 40.7102912, "lon": -73.9073891 }, + { "lat": 40.7102605, "lon": -73.9073749 }, + { "lat": 40.7102309, "lon": -73.9073612 }, + { "lat": 40.7101570, "lon": -73.9073270 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Ricard Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Ricard", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 5702634, + "bounds": { + "minlat": 40.7117780, + "minlon": -73.9104130, + "maxlat": 40.7131189, + "maxlon": -73.9097148 + }, + "nodes": [ + 42831854, + 6252542697, + 42831856, + 5515218217, + 9757933516, + 42831859 + ], + "geometry": [ + { "lat": 40.7117780, "lon": -73.9104130 }, + { "lat": 40.7118355, "lon": -73.9103556 }, + { "lat": 40.7123800, "lon": -73.9098090 }, + { "lat": 40.7130249, "lon": -73.9097272 }, + { "lat": 40.7130502, "lon": -73.9097239 }, + { "lat": 40.7131189, "lon": -73.9097148 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Amory Court", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Amory", + "tiger:name_type": "Ct", + "tiger:reviewed": "name", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 5702679, + "bounds": { + "minlat": 40.7438786, + "minlon": -73.9583433, + "maxlat": 40.7442965, + "maxlon": -73.9562086 + }, + "nodes": [ + 3575033053, + 9807763041, + 6721026678, + 8941647681, + 8018964703, + 9982774475, + 42832449 + ], + "geometry": [ + { "lat": 40.7442965, "lon": -73.9583433 }, + { "lat": 40.7441101, "lon": -73.9573817 }, + { "lat": 40.7440372, "lon": -73.9570134 }, + { "lat": 40.7440293, "lon": -73.9569735 }, + { "lat": 40.7439023, "lon": -73.9563322 }, + { "lat": 40.7438950, "lon": -73.9562941 }, + { "lat": 40.7438786, "lon": -73.9562086 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "49th Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "49th", + "tiger:name_base_1": "Hunters Point", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 5702719, + "bounds": { + "minlat": 40.7616659, + "minlon": -73.9137055, + "maxlat": 40.7654868, + "maxlon": -73.9054953 + }, + "nodes": [ + 42832999, + 3570250002, + 3570249997, + 42833001, + 3570249995, + 3570249989, + 42833005, + 3570249987, + 3570249981, + 42833009, + 3570249979, + 3570249972, + 42833012, + 3570249969, + 3570249961, + 42833017, + 3570249957, + 42833019, + 6453088935, + 42833023, + 6453088933, + 8599156675, + 42833029, + 8599211017, + 6453077969, + 4309855025, + 6453077972, + 6167162326, + 13378916856, + 6167162324 + ], + "geometry": [ + { "lat": 40.7654868, "lon": -73.9137055 }, + { "lat": 40.7654406, "lon": -73.9136058 }, + { "lat": 40.7651423, "lon": -73.9129778 }, + { "lat": 40.7651076, "lon": -73.9129039 }, + { "lat": 40.7650751, "lon": -73.9128346 }, + { "lat": 40.7647677, "lon": -73.9121767 }, + { "lat": 40.7647348, "lon": -73.9121040 }, + { "lat": 40.7647024, "lon": -73.9120326 }, + { "lat": 40.7643900, "lon": -73.9113806 }, + { "lat": 40.7643556, "lon": -73.9113068 }, + { "lat": 40.7643262, "lon": -73.9112438 }, + { "lat": 40.7640125, "lon": -73.9105774 }, + { "lat": 40.7639807, "lon": -73.9105091 }, + { "lat": 40.7639499, "lon": -73.9104429 }, + { "lat": 40.7636393, "lon": -73.9097767 }, + { "lat": 40.7636117, "lon": -73.9097179 }, + { "lat": 40.7635769, "lon": -73.9096438 }, + { "lat": 40.7632389, "lon": -73.9089190 }, + { "lat": 40.7628965, "lon": -73.9081797 }, + { "lat": 40.7628675, "lon": -73.9081151 }, + { "lat": 40.7628360, "lon": -73.9080486 }, + { "lat": 40.7625229, "lon": -73.9073809 }, + { "lat": 40.7624886, "lon": -73.9073087 }, + { "lat": 40.7624593, "lon": -73.9072471 }, + { "lat": 40.7621473, "lon": -73.9065769 }, + { "lat": 40.7621188, "lon": -73.9065156 }, + { "lat": 40.7620897, "lon": -73.9064531 }, + { "lat": 40.7617483, "lon": -73.9057104 }, + { "lat": 40.7616917, "lon": -73.9055625 }, + { "lat": 40.7616659, "lon": -73.9054953 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "28th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702728, + "bounds": { + "minlat": 40.7698734, + "minlon": -73.9268125, + "maxlat": 40.7711360, + "maxlon": -73.9241068 + }, + "nodes": [ + 42818493, + 6452895162, + 13005990381, + 9295443349, + 3570193182, + 6452995007, + 42833185, + 6452995009, + 3570193183, + 6452796565, + 42826038 + ], + "geometry": [ + { "lat": 40.7698734, "lon": -73.9241068 }, + { "lat": 40.7699085, "lon": -73.9241821 }, + { "lat": 40.7700834, "lon": -73.9245570 }, + { "lat": 40.7702144, "lon": -73.9248376 }, + { "lat": 40.7704598, "lon": -73.9253633 }, + { "lat": 40.7704812, "lon": -73.9254091 }, + { "lat": 40.7705086, "lon": -73.9254679 }, + { "lat": 40.7705454, "lon": -73.9255467 }, + { "lat": 40.7710578, "lon": -73.9266439 }, + { "lat": 40.7710834, "lon": -73.9266990 }, + { "lat": 40.7711360, "lon": -73.9268125 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "28th Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5702733, + "bounds": { + "minlat": 40.7678953, + "minlon": -73.9235243, + "maxlat": 40.7691837, + "maxlon": -73.9221663 + }, + "nodes": [ + 42833250, + 2457398779, + 9295442005, + 11420216940, + 6453012676, + 42833248 + ], + "geometry": [ + { "lat": 40.7678953, "lon": -73.9235243 }, + { "lat": 40.7679706, "lon": -73.9234501 }, + { "lat": 40.7683929, "lon": -73.9230246 }, + { "lat": 40.7690778, "lon": -73.9223692 }, + { "lat": 40.7691499, "lon": -73.9222666 }, + { "lat": 40.7691837, "lon": -73.9221663 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "29th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702736, + "bounds": { + "minlat": 40.7786682, + "minlon": -73.9094555, + "maxlat": 40.7804263, + "maxlon": -73.9073071 + }, + "nodes": [ + 42833255, + 7779193144, + 5482160072, + 8500089274, + 8500089220, + 42833257 + ], + "geometry": [ + { "lat": 40.7804263, "lon": -73.9073071 }, + { "lat": 40.7803727, "lon": -73.9073743 }, + { "lat": 40.7802062, "lon": -73.9075831 }, + { "lat": 40.7787461, "lon": -73.9093607 }, + { "lat": 40.7787230, "lon": -73.9093888 }, + { "lat": 40.7786682, "lon": -73.9094555 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "29th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "29th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11102", + "tiger:zip_right": "11102" + } +}, +{ + "type": "way", + "id": 5702738, + "bounds": { + "minlat": 40.7435058, + "minlon": -73.9385609, + "maxlat": 40.7449830, + "maxlon": -73.9382829 + }, + "nodes": [ + 10081023573, + 5481972188, + 9981973375, + 9981973377, + 9981973376, + 8315072931, + 8991509382 + ], + "geometry": [ + { "lat": 40.7435058, "lon": -73.9385609 }, + { "lat": 40.7442619, "lon": -73.9384144 }, + { "lat": 40.7448978, "lon": -73.9382859 }, + { "lat": 40.7449214, "lon": -73.9382829 }, + { "lat": 40.7449421, "lon": -73.9382842 }, + { "lat": 40.7449662, "lon": -73.9382916 }, + { "lat": 40.7449830, "lon": -73.9382985 } + ], + "tags": { + "highway": "pedestrian", + "name": "29th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702739, + "bounds": { + "minlat": 40.7386191, + "minlon": -73.9406589, + "maxlat": 40.7388316, + "maxlon": -73.9398575 + }, + "nodes": [ + 597269957, + 8314258579, + 9982287339, + 9982287337, + 9982287338, + 9982287340, + 7824536271, + 9982287341, + 7824536272, + 7824536273, + 9179086308, + 597269937 + ], + "geometry": [ + { "lat": 40.7388316, "lon": -73.9398575 }, + { "lat": 40.7387367, "lon": -73.9399264 }, + { "lat": 40.7387120, "lon": -73.9399531 }, + { "lat": 40.7386957, "lon": -73.9399764 }, + { "lat": 40.7386802, "lon": -73.9400055 }, + { "lat": 40.7386582, "lon": -73.9400619 }, + { "lat": 40.7386393, "lon": -73.9401120 }, + { "lat": 40.7386272, "lon": -73.9401505 }, + { "lat": 40.7386219, "lon": -73.9401834 }, + { "lat": 40.7386191, "lon": -73.9402243 }, + { "lat": 40.7386206, "lon": -73.9402688 }, + { "lat": 40.7386473, "lon": -73.9406589 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702741, + "bounds": { + "minlat": 40.7704400, + "minlon": -73.9194910, + "maxlat": 40.7707669, + "maxlon": -73.9190989 + }, + "nodes": [ + 11133577137, + 6453002246, + 42833306 + ], + "geometry": [ + { "lat": 40.7707669, "lon": -73.9190989 }, + { "lat": 40.7705190, "lon": -73.9193958 }, + { "lat": 40.7704400, "lon": -73.9194910 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "name": "29th Street", + "oneway": "yes", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 5702743, + "bounds": { + "minlat": 40.7604285, + "minlon": -73.9288539, + "maxlat": 40.7627250, + "maxlon": -73.9269880 + }, + "nodes": [ + 42824112, + 11699225541, + 9295440111, + 6455616287, + 42833325, + 6455616285, + 6452416004, + 42833321 + ], + "geometry": [ + { "lat": 40.7604285, "lon": -73.9288539 }, + { "lat": 40.7605030, "lon": -73.9287912 }, + { "lat": 40.7610672, "lon": -73.9283168 }, + { "lat": 40.7620477, "lon": -73.9275323 }, + { "lat": 40.7620980, "lon": -73.9274920 }, + { "lat": 40.7621588, "lon": -73.9274427 }, + { "lat": 40.7626554, "lon": -73.9270440 }, + { "lat": 40.7627250, "lon": -73.9269880 } + ], + "tags": { + "highway": "residential", + "name": "29th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702745, + "bounds": { + "minlat": 40.7412799, + "minlon": -73.9387804, + "maxlat": 40.7433968, + "maxlon": -73.9384118 + }, + "nodes": [ + 5481972209, + 8316786971, + 8994177963, + 42833380 + ], + "geometry": [ + { "lat": 40.7412799, "lon": -73.9387804 }, + { "lat": 40.7432718, "lon": -73.9384318 }, + { "lat": 40.7433095, "lon": -73.9384252 }, + { "lat": 40.7433968, "lon": -73.9384118 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "29th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702746, + "bounds": { + "minlat": 40.7705190, + "minlon": -73.9197773, + "maxlat": 40.7709874, + "maxlon": -73.9195950 + }, + "nodes": [ + 13701505791, + 13701505790, + 13701505792, + 42833397 + ], + "geometry": [ + { "lat": 40.7709874, "lon": -73.9195950 }, + { "lat": 40.7706846, "lon": -73.9197446 }, + { "lat": 40.7706185, "lon": -73.9197773 }, + { "lat": 40.7705190, "lon": -73.9197740 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 5702752, + "bounds": { + "minlat": 40.7339652, + "minlon": -73.9205366, + "maxlat": 40.7346737, + "maxlon": -73.9203812 + }, + "nodes": [ + 42833480, + 10087484079, + 10087484073, + 10087484074, + 10087484080, + 10087484072, + 9194902647, + 10087484071, + 42802906 + ], + "geometry": [ + { "lat": 40.7339652, "lon": -73.9205089 }, + { "lat": 40.7339752, "lon": -73.9205223 }, + { "lat": 40.7339876, "lon": -73.9205323 }, + { "lat": 40.7340003, "lon": -73.9205359 }, + { "lat": 40.7340158, "lon": -73.9205366 }, + { "lat": 40.7340310, "lon": -73.9205346 }, + { "lat": 40.7346376, "lon": -73.9203971 }, + { "lat": 40.7346576, "lon": -73.9203897 }, + { "lat": 40.7346737, "lon": -73.9203812 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "46th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702753, + "bounds": { + "minlat": 40.7538886, + "minlon": -73.9164781, + "maxlat": 40.7677502, + "maxlon": -73.9052748 + }, + "nodes": [ + 106082442, + 8017901163, + 5482180850, + 3570193165, + 6453075340, + 42833488, + 6453075337, + 5904706533, + 6453096661, + 42833019, + 6453096659, + 3570249914, + 42833494, + 3570249907, + 6453135610, + 42810507, + 6453135611, + 5482199732, + 5482199735, + 5904717690, + 13015347684, + 7078997756, + 7661232274, + 42833501, + 7661232266, + 5867077864, + 6450631963, + 42833506, + 6450572742, + 3570249815, + 42833510, + 3570249812, + 9295317956, + 3569858122, + 42824181, + 3569858119, + 6450834347, + 9188971714, + 42833515 + ], + "geometry": [ + { "lat": 40.7677502, "lon": -73.9052748 }, + { "lat": 40.7676950, "lon": -73.9053215 }, + { "lat": 40.7673741, "lon": -73.9055823 }, + { "lat": 40.7658262, "lon": -73.9068386 }, + { "lat": 40.7657856, "lon": -73.9068715 }, + { "lat": 40.7657234, "lon": -73.9069220 }, + { "lat": 40.7656604, "lon": -73.9069731 }, + { "lat": 40.7633553, "lon": -73.9088286 }, + { "lat": 40.7633055, "lon": -73.9088673 }, + { "lat": 40.7632389, "lon": -73.9089190 }, + { "lat": 40.7631765, "lon": -73.9089675 }, + { "lat": 40.7617213, "lon": -73.9101382 }, + { "lat": 40.7616473, "lon": -73.9101989 }, + { "lat": 40.7615798, "lon": -73.9102569 }, + { "lat": 40.7608537, "lon": -73.9108441 }, + { "lat": 40.7607910, "lon": -73.9108939 }, + { "lat": 40.7607397, "lon": -73.9109290 }, + { "lat": 40.7603375, "lon": -73.9112651 }, + { "lat": 40.7602206, "lon": -73.9113597 }, + { "lat": 40.7599722, "lon": -73.9115545 }, + { "lat": 40.7596339, "lon": -73.9118207 }, + { "lat": 40.7593113, "lon": -73.9120816 }, + { "lat": 40.7591300, "lon": -73.9122195 }, + { "lat": 40.7590732, "lon": -73.9122843 }, + { "lat": 40.7590132, "lon": -73.9123514 }, + { "lat": 40.7579499, "lon": -73.9132301 }, + { "lat": 40.7579126, "lon": -73.9132610 }, + { "lat": 40.7578422, "lon": -73.9133174 }, + { "lat": 40.7577863, "lon": -73.9133628 }, + { "lat": 40.7567961, "lon": -73.9141662 }, + { "lat": 40.7567261, "lon": -73.9142231 }, + { "lat": 40.7566584, "lon": -73.9142780 }, + { "lat": 40.7557280, "lon": -73.9150329 }, + { "lat": 40.7545065, "lon": -73.9160240 }, + { "lat": 40.7544476, "lon": -73.9160719 }, + { "lat": 40.7543688, "lon": -73.9161296 }, + { "lat": 40.7540101, "lon": -73.9164109 }, + { "lat": 40.7539596, "lon": -73.9164418 }, + { "lat": 40.7538886, "lon": -73.9164781 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "46th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702755, + "bounds": { + "minlat": 40.7288522, + "minlon": -73.9228586, + "maxlat": 40.7316586, + "maxlon": -73.9217855 + }, + "nodes": [ + 42786855, + 10087637164, + 10087637165, + 8230660639, + 10087637168, + 10087637156, + 42810310, + 10087637154, + 10087637169, + 5482634978, + 10087637135, + 42833525, + 10087637134, + 10087637141, + 10087637140, + 42823393, + 10087637143, + 10087637142, + 7987132577, + 42833539 + ], + "geometry": [ + { "lat": 40.7316586, "lon": -73.9217855 }, + { "lat": 40.7315937, "lon": -73.9218102 }, + { "lat": 40.7315545, "lon": -73.9218251 }, + { "lat": 40.7312911, "lon": -73.9219247 }, + { "lat": 40.7310780, "lon": -73.9220053 }, + { "lat": 40.7310369, "lon": -73.9220208 }, + { "lat": 40.7309707, "lon": -73.9220458 }, + { "lat": 40.7309131, "lon": -73.9220676 }, + { "lat": 40.7308676, "lon": -73.9220848 }, + { "lat": 40.7307172, "lon": -73.9221417 }, + { "lat": 40.7303663, "lon": -73.9222787 }, + { "lat": 40.7303026, "lon": -73.9223036 }, + { "lat": 40.7302393, "lon": -73.9223269 }, + { "lat": 40.7297153, "lon": -73.9225197 }, + { "lat": 40.7296767, "lon": -73.9225339 }, + { "lat": 40.7295940, "lon": -73.9225644 }, + { "lat": 40.7295190, "lon": -73.9225926 }, + { "lat": 40.7294691, "lon": -73.9226114 }, + { "lat": 40.7290922, "lon": -73.9227630 }, + { "lat": 40.7288522, "lon": -73.9228586 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "46th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702757, + "bounds": { + "minlat": 40.7433145, + "minlon": -73.9186703, + "maxlat": 40.7493679, + "maxlon": -73.9174560 + }, + "nodes": [ + 42833548, + 7671808577, + 3655968297, + 7530789535, + 42791091, + 7530789528, + 7530789527, + 42797010, + 7530789524, + 7530789571, + 42797029, + 10074123164, + 42833561, + 10074123165, + 11228297764, + 42817799, + 11228297765, + 10743714071, + 3785693708 + ], + "geometry": [ + { "lat": 40.7493679, "lon": -73.9174560 }, + { "lat": 40.7492973, "lon": -73.9174675 }, + { "lat": 40.7485953, "lon": -73.9176079 }, + { "lat": 40.7483304, "lon": -73.9176608 }, + { "lat": 40.7481290, "lon": -73.9177010 }, + { "lat": 40.7478440, "lon": -73.9177584 }, + { "lat": 40.7475916, "lon": -73.9178092 }, + { "lat": 40.7473990, "lon": -73.9178480 }, + { "lat": 40.7471423, "lon": -73.9178994 }, + { "lat": 40.7468779, "lon": -73.9179524 }, + { "lat": 40.7468500, "lon": -73.9179580 }, + { "lat": 40.7466588, "lon": -73.9179996 }, + { "lat": 40.7465678, "lon": -73.9180192 }, + { "lat": 40.7464960, "lon": -73.9180339 }, + { "lat": 40.7449949, "lon": -73.9183412 }, + { "lat": 40.7449234, "lon": -73.9183557 }, + { "lat": 40.7448275, "lon": -73.9183745 }, + { "lat": 40.7434256, "lon": -73.9186486 }, + { "lat": 40.7433145, "lon": -73.9186703 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "46th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702905, + "bounds": { + "minlat": 40.7417019, + "minlon": -73.9537796, + "maxlat": 40.7419294, + "maxlon": -73.9519975 + }, + "nodes": [ + 42806193, + 9179073031, + 2477804809, + 9179073032, + 9983412368, + 5481866277, + 9983412369, + 9983412370, + 276316930, + 9983412371, + 2987789736, + 9983412373, + 9983412372, + 42836093 + ], + "geometry": [ + { "lat": 40.7417019, "lon": -73.9519975 }, + { "lat": 40.7417025, "lon": -73.9520697 }, + { "lat": 40.7417065, "lon": -73.9521547 }, + { "lat": 40.7417135, "lon": -73.9522628 }, + { "lat": 40.7417220, "lon": -73.9523715 }, + { "lat": 40.7417322, "lon": -73.9524874 }, + { "lat": 40.7417433, "lon": -73.9526133 }, + { "lat": 40.7417568, "lon": -73.9527571 }, + { "lat": 40.7417725, "lon": -73.9528908 }, + { "lat": 40.7417849, "lon": -73.9529843 }, + { "lat": 40.7417989, "lon": -73.9530699 }, + { "lat": 40.7418933, "lon": -73.9535788 }, + { "lat": 40.7419054, "lon": -73.9536449 }, + { "lat": 40.7419294, "lon": -73.9537796 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "51st Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5702913, + "bounds": { + "minlat": 40.7397953, + "minlon": -73.9498051, + "maxlat": 40.7411550, + "maxlon": -73.9427603 + }, + "nodes": [ + 42836329, + 11191764412, + 10762203030, + 11211159685, + 42808185, + 11211159686, + 11211159670, + 42836338, + 11211159669, + 42836343, + 277046530 + ], + "geometry": [ + { "lat": 40.7397953, "lon": -73.9427603 }, + { "lat": 40.7398109, "lon": -73.9428410 }, + { "lat": 40.7398244, "lon": -73.9429110 }, + { "lat": 40.7402222, "lon": -73.9449738 }, + { "lat": 40.7402410, "lon": -73.9450691 }, + { "lat": 40.7402617, "lon": -73.9451763 }, + { "lat": 40.7406727, "lon": -73.9472885 }, + { "lat": 40.7406907, "lon": -73.9473805 }, + { "lat": 40.7407125, "lon": -73.9474910 }, + { "lat": 40.7411365, "lon": -73.9496907 }, + { "lat": 40.7411550, "lon": -73.9498051 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "51st Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5702929, + "bounds": { + "minlat": 40.7536450, + "minlon": -73.9079796, + "maxlat": 40.7553430, + "maxlon": -73.9076727 + }, + "nodes": [ + 42835518, + 6450783390, + 7758314399, + 11050273994, + 5867077880, + 8640802193, + 42836507 + ], + "geometry": [ + { "lat": 40.7553430, "lon": -73.9079796 }, + { "lat": 40.7552656, "lon": -73.9079657 }, + { "lat": 40.7549822, "lon": -73.9079144 }, + { "lat": 40.7539189, "lon": -73.9077222 }, + { "lat": 40.7537986, "lon": -73.9077005 }, + { "lat": 40.7537537, "lon": -73.9076931 }, + { "lat": 40.7536450, "lon": -73.9076727 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "53rd Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703039, + "bounds": { + "minlat": 40.7365192, + "minlon": -73.9228804, + "maxlat": 40.7377325, + "maxlon": -73.9220711 + }, + "nodes": [ + 42838365, + 9228746102, + 9228746105, + 8233070276, + 10084797176, + 42838362 + ], + "geometry": [ + { "lat": 40.7365192, "lon": -73.9228804 }, + { "lat": 40.7368048, "lon": -73.9226824 }, + { "lat": 40.7368653, "lon": -73.9226471 }, + { "lat": 40.7376224, "lon": -73.9221426 }, + { "lat": 40.7376597, "lon": -73.9221184 }, + { "lat": 40.7377325, "lon": -73.9220711 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Celtic Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703041, + "bounds": { + "minlat": 40.7512695, + "minlon": -73.9319184, + "maxlat": 40.7519789, + "maxlon": -73.9315882 + }, + "nodes": [ + 42838389, + 9189020473, + 3569905416, + 9189020472, + 10069637112, + 9189020471, + 42838391 + ], + "geometry": [ + { "lat": 40.7519789, "lon": -73.9319184 }, + { "lat": 40.7518973, "lon": -73.9319133 }, + { "lat": 40.7518636, "lon": -73.9319049 }, + { "lat": 40.7518277, "lon": -73.9318908 }, + { "lat": 40.7518242, "lon": -73.9318892 }, + { "lat": 40.7517980, "lon": -73.9318770 }, + { "lat": 40.7512695, "lon": -73.9315882 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "lanes": "3", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Honeywell Street", + "oneway": "no", + "parking:both": "no", + "parking:both:restriction": "no_parking", + "surface": "asphalt", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 5703063, + "bounds": { + "minlat": 40.7187950, + "minlon": -73.9067070, + "maxlat": 40.7194101, + "maxlon": -73.9024999 + }, + "nodes": [ + 42838801, + 11055685875, + 2874808968, + 13144277630, + 42838803, + 7963468558, + 11055685872, + 42838806, + 11055685873, + 2874808969, + 7963480217, + 11055685882, + 42838808, + 11055685881, + 7963480229, + 9759984193, + 42807048 + ], + "geometry": [ + { "lat": 40.7187950, "lon": -73.9067070 }, + { "lat": 40.7188053, "lon": -73.9066355 }, + { "lat": 40.7188629, "lon": -73.9062399 }, + { "lat": 40.7189828, "lon": -73.9054162 }, + { "lat": 40.7190030, "lon": -73.9052770 }, + { "lat": 40.7191179, "lon": -73.9044976 }, + { "lat": 40.7191264, "lon": -73.9044439 }, + { "lat": 40.7191370, "lon": -73.9043680 }, + { "lat": 40.7191472, "lon": -73.9042961 }, + { "lat": 40.7192127, "lon": -73.9038390 }, + { "lat": 40.7192701, "lon": -73.9034380 }, + { "lat": 40.7192793, "lon": -73.9033736 }, + { "lat": 40.7192910, "lon": -73.9032920 }, + { "lat": 40.7193028, "lon": -73.9032130 }, + { "lat": 40.7193872, "lon": -73.9026501 }, + { "lat": 40.7193959, "lon": -73.9025922 }, + { "lat": 40.7194101, "lon": -73.9024999 } + ], + "tags": { + "highway": "residential", + "name": "59th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703073, + "bounds": { + "minlat": 40.7189330, + "minlon": -73.9107020, + "maxlat": 40.7189536, + "maxlon": -73.9102337 + }, + "nodes": [ + 42838905, + 9759966672, + 7886149535, + 7886149531 + ], + "geometry": [ + { "lat": 40.7189330, "lon": -73.9107020 }, + { "lat": 40.7189366, "lon": -73.9106203 }, + { "lat": 40.7189377, "lon": -73.9105964 }, + { "lat": 40.7189536, "lon": -73.9102337 } + ], + "tags": { + "access": "private", + "highway": "service", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "59th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 5703182, + "bounds": { + "minlat": 40.7593450, + "minlon": -73.9197903, + "maxlat": 40.7642684, + "maxlon": -73.9157851 + }, + "nodes": [ + 42841755, + 3570249975, + 3807166512, + 3807166490, + 3807166501, + 7661684409, + 42841760, + 7661684410, + 3570249856, + 2402842565 + ], + "geometry": [ + { "lat": 40.7642684, "lon": -73.9157851 }, + { "lat": 40.7641974, "lon": -73.9158429 }, + { "lat": 40.7638624, "lon": -73.9161153 }, + { "lat": 40.7636998, "lon": -73.9162476 }, + { "lat": 40.7636017, "lon": -73.9163274 }, + { "lat": 40.7617677, "lon": -73.9178209 }, + { "lat": 40.7616986, "lon": -73.9178777 }, + { "lat": 40.7616309, "lon": -73.9179334 }, + { "lat": 40.7594169, "lon": -73.9197325 }, + { "lat": 40.7593450, "lon": -73.9197903 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "38th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703185, + "bounds": { + "minlat": 40.7382148, + "minlon": -73.9282340, + "maxlat": 40.7439773, + "maxlon": -73.9270770 + }, + "nodes": [ + 597294491, + 10743722657, + 13701269416, + 5482367307, + 5482367291, + 10081023593, + 42841827, + 10081023596, + 8513575960, + 10774439533, + 10774439535, + 8316237189, + 10083107645, + 42841847, + 10083107646, + 10084797143, + 42841853 + ], + "geometry": [ + { "lat": 40.7439773, "lon": -73.9270770 }, + { "lat": 40.7438849, "lon": -73.9270952 }, + { "lat": 40.7434105, "lon": -73.9271889 }, + { "lat": 40.7431546, "lon": -73.9272394 }, + { "lat": 40.7426132, "lon": -73.9273452 }, + { "lat": 40.7422127, "lon": -73.9274334 }, + { "lat": 40.7421295, "lon": -73.9274517 }, + { "lat": 40.7420498, "lon": -73.9274678 }, + { "lat": 40.7414906, "lon": -73.9275805 }, + { "lat": 40.7413443, "lon": -73.9276089 }, + { "lat": 40.7410495, "lon": -73.9276663 }, + { "lat": 40.7404138, "lon": -73.9277899 }, + { "lat": 40.7403656, "lon": -73.9277996 }, + { "lat": 40.7402845, "lon": -73.9278154 }, + { "lat": 40.7402001, "lon": -73.9278333 }, + { "lat": 40.7383089, "lon": -73.9282150 }, + { "lat": 40.7382148, "lon": -73.9282340 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "38th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703208, + "bounds": { + "minlat": 40.7672298, + "minlon": -73.9203580, + "maxlat": 40.7681197, + "maxlon": -73.9189121 + }, + "nodes": [ + 42842303, + 5779813883, + 2883562294, + 2883562293, + 6228232692, + 6406731649, + 42842306 + ], + "geometry": [ + { "lat": 40.7681197, "lon": -73.9203580 }, + { "lat": 40.7680396, "lon": -73.9202383 }, + { "lat": 40.7676411, "lon": -73.9196428 }, + { "lat": 40.7674109, "lon": -73.9193043 }, + { "lat": 40.7672903, "lon": -73.9190432 }, + { "lat": 40.7672688, "lon": -73.9189966 }, + { "lat": 40.7672298, "lon": -73.9189121 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "name": "28th Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5703209, + "bounds": { + "minlat": 40.7750270, + "minlon": -73.9278641, + "maxlat": 40.7766992, + "maxlon": -73.9247275 + }, + "nodes": [ + 2415578465, + 7745197929, + 2853076938, + 2457089506, + 7733683740, + 42842322, + 7813968106, + 4262943193, + 7813968102, + 13101969433, + 9721854311, + 3778337376 + ], + "geometry": [ + { "lat": 40.7766992, "lon": -73.9278641 }, + { "lat": 40.7766887, "lon": -73.9278450 }, + { "lat": 40.7766604, "lon": -73.9277953 }, + { "lat": 40.7764316, "lon": -73.9273771 }, + { "lat": 40.7761404, "lon": -73.9268417 }, + { "lat": 40.7760176, "lon": -73.9266154 }, + { "lat": 40.7757600, "lon": -73.9261404 }, + { "lat": 40.7757121, "lon": -73.9260525 }, + { "lat": 40.7756766, "lon": -73.9259881 }, + { "lat": 40.7755081, "lon": -73.9256753 }, + { "lat": 40.7750805, "lon": -73.9248892 }, + { "lat": 40.7750270, "lon": -73.9247275 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Astoria Park South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703220, + "bounds": { + "minlat": 40.7645948, + "minlon": -73.9116994, + "maxlat": 40.7679488, + "maxlon": -73.9045068 + }, + "nodes": [ + 42842479, + 4925175869, + 6453106198, + 42842481, + 6453106197, + 11619603566, + 42842485, + 11619603567, + 6450660772, + 42842491, + 6450660759, + 3570224405, + 42842492, + 3570224404, + 6453096678, + 42842496, + 6453096677, + 10763787849, + 42833488, + 10763787848, + 42842497, + 11619603523, + 42842500, + 11619603524, + 11619603514, + 42842503, + 11619603513, + 3570224395, + 42807781 + ], + "geometry": [ + { "lat": 40.7679488, "lon": -73.9116994 }, + { "lat": 40.7679027, "lon": -73.9115964 }, + { "lat": 40.7676228, "lon": -73.9109585 }, + { "lat": 40.7675838, "lon": -73.9108899 }, + { "lat": 40.7675542, "lon": -73.9108264 }, + { "lat": 40.7672336, "lon": -73.9101642 }, + { "lat": 40.7672009, "lon": -73.9100967 }, + { "lat": 40.7671702, "lon": -73.9100310 }, + { "lat": 40.7668612, "lon": -73.9093688 }, + { "lat": 40.7668270, "lon": -73.9092956 }, + { "lat": 40.7667968, "lon": -73.9092309 }, + { "lat": 40.7664882, "lon": -73.9085696 }, + { "lat": 40.7664552, "lon": -73.9084988 }, + { "lat": 40.7664219, "lon": -73.9084275 }, + { "lat": 40.7661186, "lon": -73.9077776 }, + { "lat": 40.7660932, "lon": -73.9077232 }, + { "lat": 40.7660570, "lon": -73.9076442 }, + { "lat": 40.7657491, "lon": -73.9069773 }, + { "lat": 40.7657234, "lon": -73.9069220 }, + { "lat": 40.7656822, "lon": -73.9068357 }, + { "lat": 40.7654583, "lon": -73.9063626 }, + { "lat": 40.7653699, "lon": -73.9061810 }, + { "lat": 40.7653446, "lon": -73.9061290 }, + { "lat": 40.7653023, "lon": -73.9060368 }, + { "lat": 40.7649994, "lon": -73.9053769 }, + { "lat": 40.7649713, "lon": -73.9053158 }, + { "lat": 40.7649381, "lon": -73.9052441 }, + { "lat": 40.7646301, "lon": -73.9045785 }, + { "lat": 40.7645948, "lon": -73.9045068 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "25th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703266, + "bounds": { + "minlat": 40.7459865, + "minlon": -73.9550486, + "maxlat": 40.7473367, + "maxlon": -73.9480715 + }, + "nodes": [ + 42825916, + 9982750325, + 5717112219, + 9982750326, + 42843270, + 11157958408, + 9982728608, + 2472142353, + 5034712841, + 42826864, + 5034712845, + 2802423162, + 2802423160, + 9982771926, + 42843274 + ], + "geometry": [ + { "lat": 40.7459865, "lon": -73.9480715 }, + { "lat": 40.7460093, "lon": -73.9481937 }, + { "lat": 40.7461206, "lon": -73.9487593 }, + { "lat": 40.7463922, "lon": -73.9501517 }, + { "lat": 40.7464130, "lon": -73.9502674 }, + { "lat": 40.7464287, "lon": -73.9503553 }, + { "lat": 40.7464480, "lon": -73.9504638 }, + { "lat": 40.7466553, "lon": -73.9515131 }, + { "lat": 40.7468622, "lon": -73.9526053 }, + { "lat": 40.7468835, "lon": -73.9527130 }, + { "lat": 40.7469042, "lon": -73.9528221 }, + { "lat": 40.7470427, "lon": -73.9535280 }, + { "lat": 40.7472832, "lon": -73.9547756 }, + { "lat": 40.7473222, "lon": -73.9549742 }, + { "lat": 40.7473367, "lon": -73.9550486 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "46th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703269, + "bounds": { + "minlat": 40.7708638, + "minlon": -73.9299088, + "maxlat": 40.7721598, + "maxlon": -73.9289332 + }, + "nodes": [ + 42833057, + 3570422544, + 6452930129, + 42843327, + 4917796878, + 6452924967, + 42843332 + ], + "geometry": [ + { "lat": 40.7721598, "lon": -73.9289332 }, + { "lat": 40.7720466, "lon": -73.9289496 }, + { "lat": 40.7715541, "lon": -73.9293471 }, + { "lat": 40.7714970, "lon": -73.9293936 }, + { "lat": 40.7714406, "lon": -73.9294395 }, + { "lat": 40.7709373, "lon": -73.9298490 }, + { "lat": 40.7708638, "lon": -73.9299088 } + ], + "tags": { + "highway": "residential", + "name": "14th Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 5703270, + "bounds": { + "minlat": 40.7763894, + "minlon": -73.9274232, + "maxlat": 40.7764849, + "maxlon": -73.9273189 + }, + "nodes": [ + 2457089499, + 2457089506, + 2457089505 + ], + "geometry": [ + { "lat": 40.7764849, "lon": -73.9273189 }, + { "lat": 40.7764316, "lon": -73.9273771 }, + { "lat": 40.7763894, "lon": -73.9274232 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "14th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "14th", + "tiger:name_type": "St", + "tiger:zip_left": "11102", + "tiger:zip_right": "11102" + } +}, +{ + "type": "way", + "id": 5703271, + "bounds": { + "minlat": 40.7580065, + "minlon": -73.9386590, + "maxlat": 40.7602020, + "maxlon": -73.9374890 + }, + "nodes": [ + 42843373, + 6452688257, + 3569402149, + 7737907528, + 3569402124, + 42815779, + 6452768053, + 2302476360, + 7692711161, + 3569402109, + 42825874 + ], + "geometry": [ + { "lat": 40.7602020, "lon": -73.9374890 }, + { "lat": 40.7601287, "lon": -73.9375349 }, + { "lat": 40.7596868, "lon": -73.9378088 }, + { "lat": 40.7590014, "lon": -73.9382407 }, + { "lat": 40.7589479, "lon": -73.9382744 }, + { "lat": 40.7588650, "lon": -73.9383190 }, + { "lat": 40.7587929, "lon": -73.9383588 }, + { "lat": 40.7582767, "lon": -73.9386590 }, + { "lat": 40.7582129, "lon": -73.9386451 }, + { "lat": 40.7581495, "lon": -73.9386318 }, + { "lat": 40.7580065, "lon": -73.9386001 } + ], + "tags": { + "highway": "residential", + "name": "14th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5703305, + "bounds": { + "minlat": 40.7416620, + "minlon": -73.9542138, + "maxlat": 40.7419294, + "maxlon": -73.9537796 + }, + "nodes": [ + 276320117, + 9179070571, + 9983412374, + 42836093 + ], + "geometry": [ + { "lat": 40.7416620, "lon": -73.9542138 }, + { "lat": 40.7418712, "lon": -73.9538722 }, + { "lat": 40.7418891, "lon": -73.9538389 }, + { "lat": 40.7419294, "lon": -73.9537796 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "name": "Jackson Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A31", + "tiger:county": "Queens, NY", + "tiger:name_base": "Jackson", + "tiger:name_base_1": "State Highway 25 (Alt)", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5703352, + "bounds": { + "minlat": 40.7338449, + "minlon": -73.9205089, + "maxlat": 40.7339652, + "maxlon": -73.9196094 + }, + "nodes": [ + 42845185, + 10087484081, + 7135830119, + 10087484075, + 10087484076, + 10087484077, + 10087484078, + 42833480 + ], + "geometry": [ + { "lat": 40.7338449, "lon": -73.9196094 }, + { "lat": 40.7338548, "lon": -73.9196922 }, + { "lat": 40.7339017, "lon": -73.9200813 }, + { "lat": 40.7339451, "lon": -73.9204269 }, + { "lat": 40.7339476, "lon": -73.9204511 }, + { "lat": 40.7339520, "lon": -73.9204744 }, + { "lat": 40.7339579, "lon": -73.9204918 }, + { "lat": 40.7339652, "lon": -73.9205089 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "51st Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703403, + "bounds": { + "minlat": 40.7518922, + "minlon": -73.9207614, + "maxlat": 40.7532864, + "maxlon": -73.9204653 + }, + "nodes": [ + 42845872, + 8088590987, + 13746022283, + 13385673849, + 6295183174, + 3814089996, + 42800646 + ], + "geometry": [ + { "lat": 40.7532864, "lon": -73.9204653 }, + { "lat": 40.7531663, "lon": -73.9204912 }, + { "lat": 40.7531160, "lon": -73.9205018 }, + { "lat": 40.7529079, "lon": -73.9205459 }, + { "lat": 40.7526866, "lon": -73.9205927 }, + { "lat": 40.7520524, "lon": -73.9207274 }, + { "lat": 40.7518922, "lon": -73.9207614 } + ], + "tags": { + "highway": "residential", + "name": "42nd Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703426, + "bounds": { + "minlat": 40.7468600, + "minlon": -73.9121264, + "maxlat": 40.7473007, + "maxlon": -73.9096750 + }, + "nodes": [ + 42846014, + 10074123203, + 8089066802, + 42846016, + 3656047346, + 42846018, + 8599740380, + 5481936074, + 42846021, + 8599740390, + 42846023, + 8599740392, + 42846025, + 8089088630, + 42846029 + ], + "geometry": [ + { "lat": 40.7473007, "lon": -73.9121264 }, + { "lat": 40.7472896, "lon": -73.9120387 }, + { "lat": 40.7472837, "lon": -73.9119919 }, + { "lat": 40.7472610, "lon": -73.9117360 }, + { "lat": 40.7472275, "lon": -73.9114731 }, + { "lat": 40.7471920, "lon": -73.9111950 }, + { "lat": 40.7471649, "lon": -73.9110333 }, + { "lat": 40.7471535, "lon": -73.9108919 }, + { "lat": 40.7471382, "lon": -73.9107814 }, + { "lat": 40.7471166, "lon": -73.9105728 }, + { "lat": 40.7470465, "lon": -73.9102714 }, + { "lat": 40.7470129, "lon": -73.9101277 }, + { "lat": 40.7469853, "lon": -73.9099864 }, + { "lat": 40.7469192, "lon": -73.9097681 }, + { "lat": 40.7468600, "lon": -73.9096750 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "39th Drive", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703536, + "bounds": { + "minlat": 40.7133314, + "minlon": -73.9129306, + "maxlat": 40.7135541, + "maxlon": -73.9129085 + }, + "nodes": [ + 42843577, + 9747646535, + 7712150385 + ], + "geometry": [ + { "lat": 40.7133314, "lon": -73.9129306 }, + { "lat": 40.7134048, "lon": -73.9129238 }, + { "lat": 40.7135541, "lon": -73.9129085 } + ], + "tags": { + "highway": "residential", + "name": "Nurge Avenue", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5703538, + "bounds": { + "minlat": 40.7146453, + "minlon": -73.9115906, + "maxlat": 40.7161551, + "maxlon": -73.9101122 + }, + "nodes": [ + 42847272, + 9696553939, + 9759984122, + 42847275, + 9759984096, + 9696553942, + 9696553935, + 9759984099, + 42847277, + 9759984107, + 9696553952, + 9696553944, + 9759984088, + 42847279 + ], + "geometry": [ + { "lat": 40.7161551, "lon": -73.9101122 }, + { "lat": 40.7158238, "lon": -73.9104249 }, + { "lat": 40.7157856, "lon": -73.9104611 }, + { "lat": 40.7157370, "lon": -73.9105070 }, + { "lat": 40.7156914, "lon": -73.9105520 }, + { "lat": 40.7156529, "lon": -73.9105907 }, + { "lat": 40.7152712, "lon": -73.9109720 }, + { "lat": 40.7152349, "lon": -73.9110073 }, + { "lat": 40.7151890, "lon": -73.9110520 }, + { "lat": 40.7151479, "lon": -73.9110927 }, + { "lat": 40.7151156, "lon": -73.9111247 }, + { "lat": 40.7147155, "lon": -73.9115210 }, + { "lat": 40.7146909, "lon": -73.9115453 }, + { "lat": 40.7146453, "lon": -73.9115906 } + ], + "tags": { + "highway": "residential", + "name": "Nurge Avenue", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5703554, + "bounds": { + "minlat": 40.7252030, + "minlon": -73.9096952, + "maxlat": 40.7254504, + "maxlon": -73.9061720 + }, + "nodes": [ + 4396946998, + 13247299328, + 7963480246, + 13247299333, + 42827432, + 13247299342, + 7963480257, + 42847520, + 42847523, + 8316873535, + 11055680619, + 42847529 + ], + "geometry": [ + { "lat": 40.7254504, "lon": -73.9096952 }, + { "lat": 40.7254379, "lon": -73.9095710 }, + { "lat": 40.7253979, "lon": -73.9089767 }, + { "lat": 40.7253932, "lon": -73.9089137 }, + { "lat": 40.7253870, "lon": -73.9088280 }, + { "lat": 40.7253803, "lon": -73.9087398 }, + { "lat": 40.7253779, "lon": -73.9086944 }, + { "lat": 40.7253360, "lon": -73.9080800 }, + { "lat": 40.7252700, "lon": -73.9071370 }, + { "lat": 40.7252107, "lon": -73.9062827 }, + { "lat": 40.7252086, "lon": -73.9062515 }, + { "lat": 40.7252030, "lon": -73.9061720 } + ], + "tags": { + "highway": "tertiary", + "name": "56th Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "56th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_left_1": "11378", + "tiger:zip_left_2": "11378", + "tiger:zip_left_3": "11378", + "tiger:zip_right": "11378", + "tiger:zip_right_1": "11378", + "tiger:zip_right_2": "11378", + "tiger:zip_right_3": "11378" + } +}, +{ + "type": "way", + "id": 5703682, + "bounds": { + "minlat": 40.7652260, + "minlon": -73.9278212, + "maxlat": 40.7676161, + "maxlon": -73.9227410 + }, + "nodes": [ + 42849235, + 6452981348, + 4991520399, + 4991520419, + 6452892493, + 42818511, + 4991520721, + 6452892494, + 7588638469, + 6453014982, + 42833312, + 6453014981, + 6453022185, + 42849240, + 6453022186, + 6406731571, + 42849245 + ], + "geometry": [ + { "lat": 40.7676161, "lon": -73.9278212 }, + { "lat": 40.7675905, "lon": -73.9277664 }, + { "lat": 40.7675831, "lon": -73.9277506 }, + { "lat": 40.7667951, "lon": -73.9260638 }, + { "lat": 40.7667917, "lon": -73.9260591 }, + { "lat": 40.7667528, "lon": -73.9259732 }, + { "lat": 40.7667103, "lon": -73.9258832 }, + { "lat": 40.7667064, "lon": -73.9258749 }, + { "lat": 40.7662824, "lon": -73.9249771 }, + { "lat": 40.7660171, "lon": -73.9244154 }, + { "lat": 40.7659810, "lon": -73.9243390 }, + { "lat": 40.7659499, "lon": -73.9242729 }, + { "lat": 40.7656403, "lon": -73.9236161 }, + { "lat": 40.7656061, "lon": -73.9235436 }, + { "lat": 40.7655728, "lon": -73.9234734 }, + { "lat": 40.7652857, "lon": -73.9228672 }, + { "lat": 40.7652260, "lon": -73.9227410 } + ], + "tags": { + "highway": "residential", + "maxheight:signed": "no", + "name": "30th Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703714, + "bounds": { + "minlat": 40.7369266, + "minlon": -73.9375200, + "maxlat": 40.7374860, + "maxlon": -73.9360330 + }, + "nodes": [ + 42849621, + 13048014415, + 9982697924, + 9982697925, + 42849624 + ], + "geometry": [ + { "lat": 40.7374860, "lon": -73.9360330 }, + { "lat": 40.7374522, "lon": -73.9361232 }, + { "lat": 40.7369773, "lon": -73.9373854 }, + { "lat": 40.7369555, "lon": -73.9374432 }, + { "lat": 40.7369266, "lon": -73.9375200 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "31st Place", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703715, + "bounds": { + "minlat": 40.7403476, + "minlon": -73.9363475, + "maxlat": 40.7449676, + "maxlon": -73.9354130 + }, + "nodes": [ + 42849630, + 9981973373, + 9981973349, + 42849631, + 9981973347, + 9981973336, + 42849635, + 9981973335, + 8316786958, + 9981925213, + 42832503 + ], + "geometry": [ + { "lat": 40.7449676, "lon": -73.9354130 }, + { "lat": 40.7448566, "lon": -73.9354355 }, + { "lat": 40.7431771, "lon": -73.9357834 }, + { "lat": 40.7430957, "lon": -73.9357999 }, + { "lat": 40.7430094, "lon": -73.9358170 }, + { "lat": 40.7413346, "lon": -73.9361501 }, + { "lat": 40.7412509, "lon": -73.9361669 }, + { "lat": 40.7411671, "lon": -73.9361840 }, + { "lat": 40.7404516, "lon": -73.9363309 }, + { "lat": 40.7404073, "lon": -73.9363400 }, + { "lat": 40.7403476, "lon": -73.9363475 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "31st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703719, + "bounds": { + "minlat": 40.7708318, + "minlon": -73.9172400, + "maxlat": 40.7793515, + "maxlon": -73.9067461 + }, + "nodes": [ + 2295056673, + 42849656, + 3778353163, + 9776116481, + 42849658, + 9776116484, + 6865795494, + 11107965030, + 7851387312, + 3778416707, + 3778416706, + 5616281072, + 3778716457, + 6744698215, + 7784017620, + 42849669, + 7784004977, + 5482160064, + 7784017535, + 42849673, + 7784004984, + 7784017598, + 42818209, + 7784017492, + 3025003083, + 42849678, + 42849685, + 2803634649, + 7732086301, + 42849703 + ], + "geometry": [ + { "lat": 40.7793515, "lon": -73.9067461 }, + { "lat": 40.7793113, "lon": -73.9067961 }, + { "lat": 40.7782921, "lon": -73.9080511 }, + { "lat": 40.7780364, "lon": -73.9084036 }, + { "lat": 40.7779830, "lon": -73.9084770 }, + { "lat": 40.7779198, "lon": -73.9085544 }, + { "lat": 40.7770126, "lon": -73.9096649 }, + { "lat": 40.7765977, "lon": -73.9101664 }, + { "lat": 40.7764781, "lon": -73.9103110 }, + { "lat": 40.7762151, "lon": -73.9106297 }, + { "lat": 40.7761439, "lon": -73.9107092 }, + { "lat": 40.7760804, "lon": -73.9107801 }, + { "lat": 40.7757113, "lon": -73.9112233 }, + { "lat": 40.7748264, "lon": -73.9122938 }, + { "lat": 40.7744250, "lon": -73.9127793 }, + { "lat": 40.7743600, "lon": -73.9128580 }, + { "lat": 40.7742957, "lon": -73.9129367 }, + { "lat": 40.7737590, "lon": -73.9135943 }, + { "lat": 40.7735104, "lon": -73.9138988 }, + { "lat": 40.7734490, "lon": -73.9139740 }, + { "lat": 40.7733984, "lon": -73.9140356 }, + { "lat": 40.7723529, "lon": -73.9153179 }, + { "lat": 40.7722884, "lon": -73.9153970 }, + { "lat": 40.7722330, "lon": -73.9154659 }, + { "lat": 40.7716878, "lon": -73.9161566 }, + { "lat": 40.7715804, "lon": -73.9162920 }, + { "lat": 40.7711880, "lon": -73.9168068 }, + { "lat": 40.7710792, "lon": -73.9169390 }, + { "lat": 40.7709029, "lon": -73.9171546 }, + { "lat": 40.7708318, "lon": -73.9172400 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "31st Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5703730, + "bounds": { + "minlat": 40.7807459, + "minlon": -73.9156172, + "maxlat": 40.7814543, + "maxlon": -73.9146044 + }, + "nodes": [ + 42825962, + 7803848504, + 7803848572, + 7803843781, + 42849908 + ], + "geometry": [ + { "lat": 40.7814543, "lon": -73.9156172 }, + { "lat": 40.7813851, "lon": -73.9155183 }, + { "lat": 40.7808127, "lon": -73.9146999 }, + { "lat": 40.7807876, "lon": -73.9146641 }, + { "lat": 40.7807459, "lon": -73.9146044 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "21st Road", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "21st", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5703731, + "bounds": { + "minlat": 40.7815828, + "minlon": -73.9182690, + "maxlat": 40.7835835, + "maxlon": -73.9154619 + }, + "nodes": [ + 42849818, + 7803848520, + 11618896385, + 7803848538, + 42812011, + 7803848494, + 2302449626, + 7803848546, + 42825959 + ], + "geometry": [ + { "lat": 40.7835835, "lon": -73.9182690 }, + { "lat": 40.7835328, "lon": -73.9181980 }, + { "lat": 40.7824569, "lon": -73.9166935 }, + { "lat": 40.7824275, "lon": -73.9166524 }, + { "lat": 40.7823850, "lon": -73.9165930 }, + { "lat": 40.7823438, "lon": -73.9165349 }, + { "lat": 40.7818145, "lon": -73.9157886 }, + { "lat": 40.7816515, "lon": -73.9155588 }, + { "lat": 40.7815828, "lon": -73.9154619 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "21st Road", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "21st", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5703766, + "bounds": { + "minlat": 40.7785740, + "minlon": -73.9193940, + "maxlat": 40.7800900, + "maxlon": -73.9172550 + }, + "nodes": [ + 42850472, + 7803828551, + 1331886640, + 11114791742, + 7722330239, + 7803848574, + 42825985, + 7803848508, + 2753135615, + 6949440391, + 7756491622, + 7803848564, + 42812026 + ], + "geometry": [ + { "lat": 40.7785740, "lon": -73.9172550 }, + { "lat": 40.7786198, "lon": -73.9173193 }, + { "lat": 40.7788962, "lon": -73.9177080 }, + { "lat": 40.7790152, "lon": -73.9178749 }, + { "lat": 40.7792135, "lon": -73.9181530 }, + { "lat": 40.7792325, "lon": -73.9181797 }, + { "lat": 40.7792910, "lon": -73.9182618 }, + { "lat": 40.7793550, "lon": -73.9183526 }, + { "lat": 40.7795546, "lon": -73.9186361 }, + { "lat": 40.7798566, "lon": -73.9190635 }, + { "lat": 40.7800291, "lon": -73.9193077 }, + { "lat": 40.7800542, "lon": -73.9193432 }, + { "lat": 40.7800900, "lon": -73.9193940 } + ], + "tags": { + "highway": "residential", + "name": "22nd Drive", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "22nd", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5703816, + "bounds": { + "minlat": 40.7181398, + "minlon": -73.9086525, + "maxlat": 40.7181708, + "maxlon": -73.9083822 + }, + "nodes": [ + 597676795, + 7963480187, + 9759984163, + 597676783 + ], + "geometry": [ + { "lat": 40.7181708, "lon": -73.9086525 }, + { "lat": 40.7181551, "lon": -73.9085157 }, + { "lat": 40.7181495, "lon": -73.9084626 }, + { "lat": 40.7181398, "lon": -73.9083822 } + ], + "tags": { + "highway": "residential", + "name": "59th Road", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5703857, + "bounds": { + "minlat": 40.7110632, + "minlon": -73.9129336, + "maxlat": 40.7133314, + "maxlon": -73.9099727 + }, + "nodes": [ + 42843577, + 5515218203, + 11175031789, + 42851882, + 6252541255, + 10686537769, + 9747646527, + 42851887, + 10686537768, + 42851891, + 42831854, + 2307595751, + 2307595750, + 42851902, + 2307595748, + 2307595749, + 10686537727, + 9747646494, + 42851907 + ], + "geometry": [ + { "lat": 40.7133314, "lon": -73.9129306 }, + { "lat": 40.7132500, "lon": -73.9129336 }, + { "lat": 40.7131426, "lon": -73.9127329 }, + { "lat": 40.7128640, "lon": -73.9122530 }, + { "lat": 40.7123464, "lon": -73.9113841 }, + { "lat": 40.7122735, "lon": -73.9112619 }, + { "lat": 40.7122510, "lon": -73.9112241 }, + { "lat": 40.7122140, "lon": -73.9111620 }, + { "lat": 40.7121600, "lon": -73.9110691 }, + { "lat": 40.7120400, "lon": -73.9108630 }, + { "lat": 40.7117780, "lon": -73.9104130 }, + { "lat": 40.7116638, "lon": -73.9102830 }, + { "lat": 40.7115526, "lon": -73.9102398 }, + { "lat": 40.7114198, "lon": -73.9102292 }, + { "lat": 40.7112809, "lon": -73.9102143 }, + { "lat": 40.7111771, "lon": -73.9101410 }, + { "lat": 40.7111380, "lon": -73.9100946 }, + { "lat": 40.7111126, "lon": -73.9100522 }, + { "lat": 40.7110632, "lon": -73.9099727 } + ], + "tags": { + "highway": "residential", + "name": "Grandview Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5703992, + "bounds": { + "minlat": 40.7229563, + "minlon": -73.9212774, + "maxlat": 40.7231179, + "maxlon": -73.9205284 + }, + "nodes": [ + 5176490252, + 12999289022, + 12999289024, + 12999289026, + 12397297365, + 5176490258 + ], + "geometry": [ + { "lat": 40.7231102, "lon": -73.9212774 }, + { "lat": 40.7231161, "lon": -73.9212684 }, + { "lat": 40.7231179, "lon": -73.9212527 }, + { "lat": 40.7231109, "lon": -73.9212231 }, + { "lat": 40.7230557, "lon": -73.9209750 }, + { "lat": 40.7229563, "lon": -73.9205284 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Maspeth Avenue" + } +}, +{ + "type": "way", + "id": 5704044, + "bounds": { + "minlat": 40.7705233, + "minlon": -73.9302601, + "maxlat": 40.7719003, + "maxlon": -73.9273070 + }, + "nodes": [ + 7745197945, + 7726535693, + 4917796877, + 42843327, + 4917796876, + 7726535702, + 7726535700, + 3570422540, + 3570422539, + 42826040 + ], + "geometry": [ + { "lat": 40.7719003, "lon": -73.9302601 }, + { "lat": 40.7715631, "lon": -73.9295353 }, + { "lat": 40.7715401, "lon": -73.9294860 }, + { "lat": 40.7714970, "lon": -73.9293936 }, + { "lat": 40.7714550, "lon": -73.9293036 }, + { "lat": 40.7712388, "lon": -73.9288402 }, + { "lat": 40.7708530, "lon": -73.9280136 }, + { "lat": 40.7706029, "lon": -73.9274776 }, + { "lat": 40.7705845, "lon": -73.9274379 }, + { "lat": 40.7705233, "lon": -73.9273070 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "29th Avenue", + "oneway": "yes", + "source:maxspeed": "sign" + } +}, +{ + "type": "way", + "id": 5704053, + "bounds": { + "minlat": 40.7162913, + "minlon": -73.9133980, + "maxlat": 40.7190510, + "maxlon": -73.9118533 + }, + "nodes": [ + 597676586, + 597676403, + 9353480401, + 9759966692, + 42855308 + ], + "geometry": [ + { "lat": 40.7162913, "lon": -73.9118533 }, + { "lat": 40.7164163, "lon": -73.9119547 }, + { "lat": 40.7189387, "lon": -73.9133366 }, + { "lat": 40.7189750, "lon": -73.9133565 }, + { "lat": 40.7190510, "lon": -73.9133980 } + ], + "tags": { + "highway": "residential", + "name": "56th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5704054, + "bounds": { + "minlat": 40.7483580, + "minlon": -73.9071320, + "maxlat": 40.7487789, + "maxlon": -73.9069530 + }, + "nodes": [ + 2807734607, + 7667087002, + 42855333 + ], + "geometry": [ + { "lat": 40.7487789, "lon": -73.9069530 }, + { "lat": 40.7484421, "lon": -73.9070934 }, + { "lat": 40.7483580, "lon": -73.9071320 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "56th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "56th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 5704056, + "bounds": { + "minlat": 40.7243211, + "minlon": -73.9149687, + "maxlat": 40.7264800, + "maxlon": -73.9146500 + }, + "nodes": [ + 42855381, + 5481965456, + 11406248211, + 11055685744, + 42855386, + 42876105 + ], + "geometry": [ + { "lat": 40.7264800, "lon": -73.9146500 }, + { "lat": 40.7249452, "lon": -73.9148154 }, + { "lat": 40.7245350, "lon": -73.9148603 }, + { "lat": 40.7244899, "lon": -73.9148652 }, + { "lat": 40.7244290, "lon": -73.9148710 }, + { "lat": 40.7243211, "lon": -73.9149687 } + ], + "tags": { + "highway": "unclassified", + "name": "56th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704057, + "bounds": { + "minlat": 40.7129527, + "minlon": -73.9114311, + "maxlat": 40.7162689, + "maxlon": -73.9068458 + }, + "nodes": [ + 597676682, + 9759984095, + 11002490965, + 42847275, + 11002490964, + 9696553953, + 11002490943, + 42855316, + 9759984140, + 9759984150, + 42855323, + 9759984148, + 11004089409, + 42819385, + 13643234579, + 9747646476, + 42843612 + ], + "geometry": [ + { "lat": 40.7162689, "lon": -73.9114311 }, + { "lat": 40.7162506, "lon": -73.9114022 }, + { "lat": 40.7157744, "lon": -73.9105721 }, + { "lat": 40.7157370, "lon": -73.9105070 }, + { "lat": 40.7157061, "lon": -73.9104534 }, + { "lat": 40.7149637, "lon": -73.9091633 }, + { "lat": 40.7149523, "lon": -73.9091434 }, + { "lat": 40.7149100, "lon": -73.9090700 }, + { "lat": 40.7148800, "lon": -73.9090178 }, + { "lat": 40.7145002, "lon": -73.9083565 }, + { "lat": 40.7144540, "lon": -73.9082760 }, + { "lat": 40.7144216, "lon": -73.9082197 }, + { "lat": 40.7138241, "lon": -73.9071817 }, + { "lat": 40.7136307, "lon": -73.9068458 }, + { "lat": 40.7135581, "lon": -73.9068518 }, + { "lat": 40.7130213, "lon": -73.9068964 }, + { "lat": 40.7129527, "lon": -73.9069021 } + ], + "tags": { + "highway": "residential", + "name": "56th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5704084, + "bounds": { + "minlat": 40.7450853, + "minlon": -73.9529451, + "maxlat": 40.7461914, + "maxlon": -73.9475086 + }, + "nodes": [ + 42826868, + 9982728607, + 5481857864, + 9982728605, + 11157958409, + 42855824, + 9982750322, + 5717112220, + 9982750319, + 42825919, + 9982750318, + 3575033068, + 9982745714, + 5602882301, + 9982745715, + 9982745716, + 9982750317, + 42844256 + ], + "geometry": [ + { "lat": 40.7461914, "lon": -73.9529451 }, + { "lat": 40.7461713, "lon": -73.9528410 }, + { "lat": 40.7460656, "lon": -73.9522936 }, + { "lat": 40.7457560, "lon": -73.9506887 }, + { "lat": 40.7457370, "lon": -73.9505893 }, + { "lat": 40.7457192, "lon": -73.9504959 }, + { "lat": 40.7456979, "lon": -73.9503838 }, + { "lat": 40.7454288, "lon": -73.9489912 }, + { "lat": 40.7453182, "lon": -73.9484260 }, + { "lat": 40.7452936, "lon": -73.9483009 }, + { "lat": 40.7452719, "lon": -73.9481881 }, + { "lat": 40.7451835, "lon": -73.9477406 }, + { "lat": 40.7451742, "lon": -73.9476967 }, + { "lat": 40.7451597, "lon": -73.9476579 }, + { "lat": 40.7451482, "lon": -73.9476233 }, + { "lat": 40.7451288, "lon": -73.9475800 }, + { "lat": 40.7451086, "lon": -73.9475443 }, + { "lat": 40.7450853, "lon": -73.9475086 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "46th Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704086, + "bounds": { + "minlat": 40.7232625, + "minlon": -73.9129194, + "maxlat": 40.7235467, + "maxlon": -73.9126330 + }, + "nodes": [ + 2776604937, + 2776604935, + 9771248817 + ], + "geometry": [ + { "lat": 40.7235467, "lon": -73.9126330 }, + { "lat": 40.7233199, "lon": -73.9128345 }, + { "lat": 40.7232625, "lon": -73.9129194 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "name": "58th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5704090, + "bounds": { + "minlat": 40.7434530, + "minlon": -73.9069502, + "maxlat": 40.7441294, + "maxlon": -73.9043030 + }, + "nodes": [ + 42855897, + 9986780741, + 8089066803, + 9986780739, + 42855898 + ], + "geometry": [ + { "lat": 40.7441294, "lon": -73.9069502 }, + { "lat": 40.7441085, "lon": -73.9068674 }, + { "lat": 40.7434907, "lon": -73.9044504 }, + { "lat": 40.7434770, "lon": -73.9043968 }, + { "lat": 40.7434530, "lon": -73.9043030 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "41st Drive", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704233, + "bounds": { + "minlat": 40.7162763, + "minlon": -73.9074386, + "maxlat": 40.7178528, + "maxlon": -73.8998620 + }, + "nodes": [ + 42858148, + 9759984286, + 7983753711, + 7963511624, + 9759984368, + 42858150, + 9759984370, + 13641005891, + 13641005889, + 42858153, + 13641005890, + 9759984354, + 42858155, + 9759984352, + 42844519, + 5579670178, + 42807061, + 5579670177, + 10949055740, + 7963480230, + 9759667823, + 42858326 + ], + "geometry": [ + { "lat": 40.7162763, "lon": -73.9074386 }, + { "lat": 40.7162839, "lon": -73.9073739 }, + { "lat": 40.7163659, "lon": -73.9066567 }, + { "lat": 40.7164014, "lon": -73.9063467 }, + { "lat": 40.7164106, "lon": -73.9062667 }, + { "lat": 40.7164210, "lon": -73.9061760 }, + { "lat": 40.7164318, "lon": -73.9060935 }, + { "lat": 40.7165853, "lon": -73.9049242 }, + { "lat": 40.7166139, "lon": -73.9047063 }, + { "lat": 40.7166260, "lon": -73.9046140 }, + { "lat": 40.7166351, "lon": -73.9045434 }, + { "lat": 40.7167328, "lon": -73.9037846 }, + { "lat": 40.7167440, "lon": -73.9036980 }, + { "lat": 40.7167536, "lon": -73.9036259 }, + { "lat": 40.7168660, "lon": -73.9027870 }, + { "lat": 40.7169818, "lon": -73.9019270 }, + { "lat": 40.7169687, "lon": -73.9018162 }, + { "lat": 40.7169582, "lon": -73.9017007 }, + { "lat": 40.7171358, "lon": -73.9013351 }, + { "lat": 40.7177999, "lon": -73.8999680 }, + { "lat": 40.7178185, "lon": -73.8999308 }, + { "lat": 40.7178528, "lon": -73.8998620 } + ], + "tags": { + "highway": "residential", + "name": "60th Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5704259, + "bounds": { + "minlat": 40.7217340, + "minlon": -73.9092350, + "maxlat": 40.7217700, + "maxlon": -73.9083830 + }, + "nodes": [ + 42858484, + 9696553946, + 11055685922, + 2776603416 + ], + "geometry": [ + { "lat": 40.7217340, "lon": -73.9092350 }, + { "lat": 40.7217648, "lon": -73.9085062 }, + { "lat": 40.7217660, "lon": -73.9084717 }, + { "lat": 40.7217700, "lon": -73.9083830 } + ], + "tags": { + "highway": "residential", + "name": "57th Drive", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "57th", + "tiger:name_type": "Dr", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 5704260, + "bounds": { + "minlat": 40.7216010, + "minlon": -73.9129840, + "maxlat": 40.7216870, + "maxlon": -73.9106030 + }, + "nodes": [ + 42858495, + 11055680642, + 42858497, + 11055680641, + 8234915440, + 11055680640, + 42825398 + ], + "geometry": [ + { "lat": 40.7216010, "lon": -73.9129840 }, + { "lat": 40.7216329, "lon": -73.9120769 }, + { "lat": 40.7216360, "lon": -73.9119900 }, + { "lat": 40.7216385, "lon": -73.9119195 }, + { "lat": 40.7216810, "lon": -73.9107668 }, + { "lat": 40.7216839, "lon": -73.9106843 }, + { "lat": 40.7216870, "lon": -73.9106030 } + ], + "tags": { + "highway": "residential", + "name": "57th Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "57th", + "tiger:name_type": "Dr", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 5704299, + "bounds": { + "minlat": 40.7098510, + "minlon": -73.9171420, + "maxlat": 40.7109670, + "maxlon": -73.9160020 + }, + "nodes": [ + 42809929, + 9744109081, + 10693892834, + 10686537718, + 9744109092, + 42827581 + ], + "geometry": [ + { "lat": 40.7109670, "lon": -73.9160020 }, + { "lat": 40.7109179, "lon": -73.9160522 }, + { "lat": 40.7108756, "lon": -73.9160954 }, + { "lat": 40.7099353, "lon": -73.9170559 }, + { "lat": 40.7099048, "lon": -73.9170871 }, + { "lat": 40.7098510, "lon": -73.9171420 } + ], + "tags": { + "highway": "residential", + "name": "Willoughby Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704383, + "bounds": { + "minlat": 40.7203810, + "minlon": -73.9223220, + "maxlat": 40.7231102, + "maxlon": -73.9212774 + }, + "nodes": [ + 5176490252, + 12999289025, + 12999289023, + 5482634970, + 7132303983, + 7857747084, + 7712061275, + 7132303982, + 11929445723, + 5482678226, + 5482677620, + 7712061260, + 5176490249 + ], + "geometry": [ + { "lat": 40.7231102, "lon": -73.9212774 }, + { "lat": 40.7230946, "lon": -73.9212890 }, + { "lat": 40.7230786, "lon": -73.9212949 }, + { "lat": 40.7220870, "lon": -73.9216690 }, + { "lat": 40.7219235, "lon": -73.9217250 }, + { "lat": 40.7218973, "lon": -73.9217351 }, + { "lat": 40.7218342, "lon": -73.9217595 }, + { "lat": 40.7218217, "lon": -73.9217644 }, + { "lat": 40.7214008, "lon": -73.9219273 }, + { "lat": 40.7212765, "lon": -73.9219754 }, + { "lat": 40.7206738, "lon": -73.9222087 }, + { "lat": 40.7206467, "lon": -73.9222192 }, + { "lat": 40.7203810, "lon": -73.9223220 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "48th Street" + } +}, +{ + "type": "way", + "id": 5704385, + "bounds": { + "minlat": 40.7562358, + "minlon": -73.9123966, + "maxlat": 40.7664166, + "maxlon": -73.9041295 + }, + "nodes": [ + 42839043, + 8017901169, + 3570193164, + 6453114581, + 42842503, + 6453114579, + 5904706525, + 42860054, + 5904706526, + 6453075351, + 42833029, + 6453088930, + 5904706531, + 5904706534, + 13703044615, + 5904706527, + 6453065721, + 42860063, + 6453065722, + 5904706539, + 7661226113, + 5904706540, + 5482199731, + 13713865948, + 7661206803, + 2402842567, + 7661226108, + 8593793975, + 42860069 + ], + "geometry": [ + { "lat": 40.7664166, "lon": -73.9041295 }, + { "lat": 40.7663347, "lon": -73.9042050 }, + { "lat": 40.7650780, "lon": -73.9052269 }, + { "lat": 40.7650363, "lon": -73.9052616 }, + { "lat": 40.7649713, "lon": -73.9053158 }, + { "lat": 40.7649045, "lon": -73.9053668 }, + { "lat": 40.7644932, "lon": -73.9056803 }, + { "lat": 40.7644492, "lon": -73.9057138 }, + { "lat": 40.7633375, "lon": -73.9066181 }, + { "lat": 40.7625563, "lon": -73.9072536 }, + { "lat": 40.7624886, "lon": -73.9073087 }, + { "lat": 40.7624263, "lon": -73.9073593 }, + { "lat": 40.7621490, "lon": -73.9075842 }, + { "lat": 40.7617638, "lon": -73.9078964 }, + { "lat": 40.7616840, "lon": -73.9079611 }, + { "lat": 40.7612068, "lon": -73.9083480 }, + { "lat": 40.7609719, "lon": -73.9085385 }, + { "lat": 40.7608999, "lon": -73.9085969 }, + { "lat": 40.7608308, "lon": -73.9086525 }, + { "lat": 40.7602327, "lon": -73.9091339 }, + { "lat": 40.7599063, "lon": -73.9093966 }, + { "lat": 40.7593614, "lon": -73.9098351 }, + { "lat": 40.7586340, "lon": -73.9104205 }, + { "lat": 40.7586264, "lon": -73.9104265 }, + { "lat": 40.7583857, "lon": -73.9106182 }, + { "lat": 40.7583270, "lon": -73.9106851 }, + { "lat": 40.7582661, "lon": -73.9107545 }, + { "lat": 40.7563006, "lon": -73.9123350 }, + { "lat": 40.7562358, "lon": -73.9123966 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "48th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704386, + "bounds": { + "minlat": 40.7304046, + "minlon": -73.9190061, + "maxlat": 40.7310506, + "maxlon": -73.9186898 + }, + "nodes": [ + 10087637121, + 10087637109, + 42786909, + 10087637099, + 10087637106, + 42786860 + ], + "geometry": [ + { "lat": 40.7304046, "lon": -73.9190061 }, + { "lat": 40.7307367, "lon": -73.9188065 }, + { "lat": 40.7308220, "lon": -73.9187748 }, + { "lat": 40.7309332, "lon": -73.9187334 }, + { "lat": 40.7309818, "lon": -73.9187154 }, + { "lat": 40.7310506, "lon": -73.9186898 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "48th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704387, + "bounds": { + "minlat": 40.7468925, + "minlon": -73.9397488, + "maxlat": 40.7480340, + "maxlon": -73.9390563 + }, + "nodes": [ + 42844297, + 11211159822, + 8158221245, + 42860106 + ], + "geometry": [ + { "lat": 40.7480340, "lon": -73.9397488 }, + { "lat": 40.7479754, "lon": -73.9397124 }, + { "lat": 40.7479449, "lon": -73.9396937 }, + { "lat": 40.7468925, "lon": -73.9390563 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Queens Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704404, + "bounds": { + "minlat": 40.7446222, + "minlon": -73.9565111, + "maxlat": 40.7461454, + "maxlon": -73.9486711 + }, + "nodes": [ + 2034007416, + 11211159951, + 6596463733, + 6596463730, + 9982728600, + 42860531, + 11157958405, + 9982728601, + 7478317590, + 13701239683, + 5481857866, + 9982728603, + 42826872, + 9982771923, + 6593120161, + 5481857871, + 5034740473, + 42860527, + 5034740477, + 3575033072, + 9982771529 + ], + "geometry": [ + { "lat": 40.7446222, "lon": -73.9486711 }, + { "lat": 40.7446524, "lon": -73.9488522 }, + { "lat": 40.7447860, "lon": -73.9494975 }, + { "lat": 40.7449005, "lon": -73.9500712 }, + { "lat": 40.7450087, "lon": -73.9506198 }, + { "lat": 40.7450298, "lon": -73.9507230 }, + { "lat": 40.7450483, "lon": -73.9508224 }, + { "lat": 40.7450671, "lon": -73.9509231 }, + { "lat": 40.7452633, "lon": -73.9519490 }, + { "lat": 40.7452674, "lon": -73.9519700 }, + { "lat": 40.7452951, "lon": -73.9521113 }, + { "lat": 40.7454802, "lon": -73.9530661 }, + { "lat": 40.7455002, "lon": -73.9531773 }, + { "lat": 40.7455206, "lon": -73.9532913 }, + { "lat": 40.7456740, "lon": -73.9540905 }, + { "lat": 40.7457098, "lon": -73.9542730 }, + { "lat": 40.7459347, "lon": -73.9554302 }, + { "lat": 40.7459516, "lon": -73.9555147 }, + { "lat": 40.7459682, "lon": -73.9555963 }, + { "lat": 40.7461349, "lon": -73.9564572 }, + { "lat": 40.7461454, "lon": -73.9565111 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "47th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704407, + "bounds": { + "minlat": 40.7428834, + "minlon": -73.9418105, + "maxlat": 40.7438438, + "maxlon": -73.9339429 + }, + "nodes": [ + 6643399520, + 10081023538, + 10081023537, + 10081023536, + 10081023535, + 8991509400, + 2969267813, + 8994089166, + 42860546, + 8316786983, + 42817478, + 6643399522, + 42833287, + 42833380, + 9981973370, + 42860563, + 9981973369, + 5482217767, + 13316567867, + 9981973353, + 42860570, + 9981973351, + 9981973354, + 42849631, + 9981973348, + 42860576, + 9981973356, + 42860580 + ], + "geometry": [ + { "lat": 40.7438438, "lon": -73.9418105 }, + { "lat": 40.7438248, "lon": -73.9417983 }, + { "lat": 40.7438106, "lon": -73.9417865 }, + { "lat": 40.7438000, "lon": -73.9417725 }, + { "lat": 40.7437925, "lon": -73.9417587 }, + { "lat": 40.7437841, "lon": -73.9417375 }, + { "lat": 40.7437646, "lon": -73.9415775 }, + { "lat": 40.7436425, "lon": -73.9405418 }, + { "lat": 40.7436324, "lon": -73.9404587 }, + { "lat": 40.7436232, "lon": -73.9403725 }, + { "lat": 40.7435255, "lon": -73.9395179 }, + { "lat": 40.7434708, "lon": -73.9390513 }, + { "lat": 40.7434167, "lon": -73.9385783 }, + { "lat": 40.7433968, "lon": -73.9384118 }, + { "lat": 40.7433173, "lon": -73.9377341 }, + { "lat": 40.7433081, "lon": -73.9376553 }, + { "lat": 40.7432993, "lon": -73.9375734 }, + { "lat": 40.7432561, "lon": -73.9371941 }, + { "lat": 40.7432369, "lon": -73.9370296 }, + { "lat": 40.7432110, "lon": -73.9368074 }, + { "lat": 40.7432011, "lon": -73.9367223 }, + { "lat": 40.7431926, "lon": -73.9366486 }, + { "lat": 40.7431057, "lon": -73.9358859 }, + { "lat": 40.7430957, "lon": -73.9357999 }, + { "lat": 40.7430851, "lon": -73.9357096 }, + { "lat": 40.7429902, "lon": -73.9348703 }, + { "lat": 40.7429010, "lon": -73.9340855 }, + { "lat": 40.7428834, "lon": -73.9339429 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "47th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704410, + "bounds": { + "minlat": 40.7406260, + "minlon": -73.9077840, + "maxlat": 40.7407450, + "maxlon": -73.9073471 + }, + "nodes": [ + 42860670, + 10203944865, + 8626128169, + 42860672 + ], + "geometry": [ + { "lat": 40.7407450, "lon": -73.9077840 }, + { "lat": 40.7407174, "lon": -73.9076828 }, + { "lat": 40.7407056, "lon": -73.9076395 }, + { "lat": 40.7406260, "lon": -73.9073471 } + ], + "tags": { + "highway": "residential", + "name": "47th Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "58th", + "tiger:name_type": "Ln", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 5704440, + "bounds": { + "minlat": 40.7493003, + "minlon": -73.9429402, + "maxlat": 40.7508947, + "maxlon": -73.9414712 + }, + "nodes": [ + 42861161, + 8334076728, + 8158221237, + 9982745700, + 42861164, + 9982745701, + 7222195534, + 5345803648, + 5345803646, + 42818134 + ], + "geometry": [ + { "lat": 40.7508947, "lon": -73.9414712 }, + { "lat": 40.7508490, "lon": -73.9415132 }, + { "lat": 40.7503336, "lon": -73.9419923 }, + { "lat": 40.7502913, "lon": -73.9420322 }, + { "lat": 40.7502504, "lon": -73.9420716 }, + { "lat": 40.7501952, "lon": -73.9421210 }, + { "lat": 40.7496158, "lon": -73.9426484 }, + { "lat": 40.7493719, "lon": -73.9428732 }, + { "lat": 40.7493593, "lon": -73.9428848 }, + { "lat": 40.7493003, "lon": -73.9429402 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "24th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704442, + "bounds": { + "minlat": 40.7601811, + "minlon": -73.9329043, + "maxlat": 40.7617060, + "maxlon": -73.9315800 + }, + "nodes": [ + 42824101, + 6452521774, + 42791116, + 7054966273, + 42797560, + 6452553281, + 42861179 + ], + "geometry": [ + { "lat": 40.7617060, "lon": -73.9315800 }, + { "lat": 40.7616346, "lon": -73.9316421 }, + { "lat": 40.7611940, "lon": -73.9320250 }, + { "lat": 40.7611213, "lon": -73.9320883 }, + { "lat": 40.7609300, "lon": -73.9322550 }, + { "lat": 40.7602675, "lon": -73.9328305 }, + { "lat": 40.7601811, "lon": -73.9329043 } + ], + "tags": { + "highway": "residential", + "name": "24th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704445, + "bounds": { + "minlat": 40.7735424, + "minlon": -73.9221600, + "maxlat": 40.7739412, + "maxlon": -73.9216442 + }, + "nodes": [ + 42861243, + 7787351850, + 7787345528, + 42861235 + ], + "geometry": [ + { "lat": 40.7735424, "lon": -73.9221600 }, + { "lat": 40.7736168, "lon": -73.9220640 }, + { "lat": 40.7738635, "lon": -73.9217437 }, + { "lat": 40.7739412, "lon": -73.9216442 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "24th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704446, + "bounds": { + "minlat": 40.7749100, + "minlon": -73.9290578, + "maxlat": 40.7751777, + "maxlon": -73.9281960 + }, + "nodes": [ + 42861252, + 6452969512, + 7613482849, + 6452969513, + 42843365 + ], + "geometry": [ + { "lat": 40.7751777, "lon": -73.9290578 }, + { "lat": 40.7751518, "lon": -73.9289749 }, + { "lat": 40.7749533, "lon": -73.9283356 }, + { "lat": 40.7749355, "lon": -73.9282782 }, + { "lat": 40.7749100, "lon": -73.9281960 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "26th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704447, + "bounds": { + "minlat": 40.7744012, + "minlon": -73.9283390, + "maxlat": 40.7746370, + "maxlon": -73.9275687 + }, + "nodes": [ + 42843362, + 6452969507, + 7792337987, + 3778337370 + ], + "geometry": [ + { "lat": 40.7746370, "lon": -73.9283390 }, + { "lat": 40.7746177, "lon": -73.9282759 }, + { "lat": 40.7744166, "lon": -73.9276189 }, + { "lat": 40.7744012, "lon": -73.9275687 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "26th Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "26th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11102", + "tiger:zip_right": "11102" + } +}, +{ + "type": "way", + "id": 5704452, + "bounds": { + "minlat": 40.7734857, + "minlon": -73.9269049, + "maxlat": 40.7740868, + "maxlon": -73.9249433 + }, + "nodes": [ + 42861322, + 6452962546, + 3570422556, + 42826023 + ], + "geometry": [ + { "lat": 40.7740868, "lon": -73.9269049 }, + { "lat": 40.7740723, "lon": -73.9268557 }, + { "lat": 40.7735448, "lon": -73.9250622 }, + { "lat": 40.7734857, "lon": -73.9249433 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "26th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704541, + "bounds": { + "minlat": 40.7317665, + "minlon": -73.9245193, + "maxlat": 40.7327261, + "maxlon": -73.9196561 + }, + "nodes": [ + 42786844, + 11955770857, + 42862642, + 9194902689, + 42862643, + 9194902688, + 4259645197, + 4259645194, + 42862645, + 42862649, + 42862653, + 42862657, + 42862661, + 4259645198, + 4259645195, + 42862665, + 4259645196, + 42862669, + 42862674, + 42833522, + 9196018006, + 9196018007, + 9196018008, + 277388017, + 9196018009, + 7712061135, + 42802984 + ], + "geometry": [ + { "lat": 40.7322500, "lon": -73.9245193 }, + { "lat": 40.7323092, "lon": -73.9244926 }, + { "lat": 40.7324184, "lon": -73.9244434 }, + { "lat": 40.7324508, "lon": -73.9244248 }, + { "lat": 40.7324823, "lon": -73.9243991 }, + { "lat": 40.7325061, "lon": -73.9243682 }, + { "lat": 40.7325335, "lon": -73.9243186 }, + { "lat": 40.7325716, "lon": -73.9242404 }, + { "lat": 40.7326143, "lon": -73.9241348 }, + { "lat": 40.7326525, "lon": -73.9240165 }, + { "lat": 40.7326843, "lon": -73.9238893 }, + { "lat": 40.7327070, "lon": -73.9237677 }, + { "lat": 40.7327196, "lon": -73.9236556 }, + { "lat": 40.7327252, "lon": -73.9235595 }, + { "lat": 40.7327261, "lon": -73.9234546 }, + { "lat": 40.7327210, "lon": -73.9233448 }, + { "lat": 40.7327090, "lon": -73.9232366 }, + { "lat": 40.7326895, "lon": -73.9231110 }, + { "lat": 40.7326673, "lon": -73.9229589 }, + { "lat": 40.7323615, "lon": -73.9215164 }, + { "lat": 40.7320792, "lon": -73.9202492 }, + { "lat": 40.7320690, "lon": -73.9202001 }, + { "lat": 40.7320555, "lon": -73.9201520 }, + { "lat": 40.7320360, "lon": -73.9201026 }, + { "lat": 40.7320091, "lon": -73.9200452 }, + { "lat": 40.7319690, "lon": -73.9199764 }, + { "lat": 40.7317665, "lon": -73.9196561 } + ], + "tags": { + "hgv": "local", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "53rd Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704548, + "bounds": { + "minlat": 40.7404306, + "minlon": -73.9547399, + "maxlat": 40.7406706, + "maxlon": -73.9524307 + }, + "nodes": [ + 6594504797, + 12125828321, + 12125828320, + 12125828319, + 6594515842, + 12125828318, + 10116418487, + 6594515843, + 12125828317, + 12125828316, + 6594515847, + 6594515844, + 6594515845, + 6594515846, + 6594515848, + 11211160502, + 597237255 + ], + "geometry": [ + { "lat": 40.7406010, "lon": -73.9547399 }, + { "lat": 40.7406596, "lon": -73.9542318 }, + { "lat": 40.7406676, "lon": -73.9541419 }, + { "lat": 40.7406706, "lon": -73.9540583 }, + { "lat": 40.7406676, "lon": -73.9539672 }, + { "lat": 40.7406623, "lon": -73.9538849 }, + { "lat": 40.7406558, "lon": -73.9537934 }, + { "lat": 40.7406463, "lon": -73.9536730 }, + { "lat": 40.7406304, "lon": -73.9535203 }, + { "lat": 40.7406120, "lon": -73.9533844 }, + { "lat": 40.7405956, "lon": -73.9532780 }, + { "lat": 40.7405809, "lon": -73.9531980 }, + { "lat": 40.7405435, "lon": -73.9530068 }, + { "lat": 40.7405017, "lon": -73.9527935 }, + { "lat": 40.7404849, "lon": -73.9527078 }, + { "lat": 40.7404433, "lon": -73.9524951 }, + { "lat": 40.7404306, "lon": -73.9524307 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "53rd Avenue", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "53rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 5704549, + "bounds": { + "minlat": 40.7334780, + "minlon": -73.9102367, + "maxlat": 40.7343388, + "maxlon": -73.9068740 + }, + "nodes": [ + 42862775, + 10203945031, + 5481960584, + 42862776 + ], + "geometry": [ + { "lat": 40.7343388, "lon": -73.9102367 }, + { "lat": 40.7343168, "lon": -73.9101498 }, + { "lat": 40.7339258, "lon": -73.9086137 }, + { "lat": 40.7334780, "lon": -73.9068740 } + ], + "tags": { + "highway": "residential", + "name": "53rd Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "53rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5704673, + "bounds": { + "minlat": 40.7382279, + "minlon": -73.9263311, + "maxlat": 40.7396820, + "maxlon": -73.9260300 + }, + "nodes": [ + 42864381, + 10084797153, + 42864383, + 10084797154, + 10774439547, + 8233070275, + 10084797163, + 42864385 + ], + "geometry": [ + { "lat": 40.7396820, "lon": -73.9260300 }, + { "lat": 40.7391708, "lon": -73.9261361 }, + { "lat": 40.7390734, "lon": -73.9261603 }, + { "lat": 40.7389652, "lon": -73.9261884 }, + { "lat": 40.7385426, "lon": -73.9262707 }, + { "lat": 40.7383491, "lon": -73.9263084 }, + { "lat": 40.7383074, "lon": -73.9263168 }, + { "lat": 40.7382279, "lon": -73.9263311 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "39th Place", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704674, + "bounds": { + "minlat": 40.7400695, + "minlon": -73.9259565, + "maxlat": 40.7419172, + "maxlon": -73.9255949 + }, + "nodes": [ + 42864400, + 10083107652, + 10081023603, + 10081023604, + 42860605 + ], + "geometry": [ + { "lat": 40.7400695, "lon": -73.9259565 }, + { "lat": 40.7401489, "lon": -73.9259416 }, + { "lat": 40.7409334, "lon": -73.9257937 }, + { "lat": 40.7418359, "lon": -73.9256114 }, + { "lat": 40.7419172, "lon": -73.9255949 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "39th Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704754, + "bounds": { + "minlat": 40.7688848, + "minlon": -73.9069276, + "maxlat": 40.7699990, + "maxlon": -73.9066812 + }, + "nodes": [ + 3132177770, + 8853996750, + 42865831, + 3132177772, + 4927558985, + 42865836 + ], + "geometry": [ + { "lat": 40.7699990, "lon": -73.9066812 }, + { "lat": 40.7699108, "lon": -73.9067058 }, + { "lat": 40.7695933, "lon": -73.9067868 }, + { "lat": 40.7690293, "lon": -73.9069276 }, + { "lat": 40.7689804, "lon": -73.9069230 }, + { "lat": 40.7688848, "lon": -73.9069064 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "name": "Sound Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704780, + "bounds": { + "minlat": 40.7115278, + "minlon": -73.9192648, + "maxlat": 40.7120094, + "maxlon": -73.9184692 + }, + "nodes": [ + 42866199, + 9744131347, + 9747567487, + 42866201 + ], + "geometry": [ + { "lat": 40.7120094, "lon": -73.9192648 }, + { "lat": 40.7119590, "lon": -73.9191793 }, + { "lat": 40.7119471, "lon": -73.9191579 }, + { "lat": 40.7115278, "lon": -73.9184692 } + ], + "tags": { + "highway": "residential", + "name": "Charlotte Street", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 5704799, + "bounds": { + "minlat": 40.7451604, + "minlon": -73.9335163, + "maxlat": 40.7462774, + "maxlon": -73.9332677 + }, + "nodes": [ + 42866362, + 12253429628, + 9179115040, + 5867099389, + 10069673271, + 42866361 + ], + "geometry": [ + { "lat": 40.7451604, "lon": -73.9335163 }, + { "lat": 40.7452673, "lon": -73.9334835 }, + { "lat": 40.7453158, "lon": -73.9334687 }, + { "lat": 40.7461364, "lon": -73.9332922 }, + { "lat": 40.7461871, "lon": -73.9332820 }, + { "lat": 40.7462774, "lon": -73.9332677 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Van Dam Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704813, + "bounds": { + "minlat": 40.7448170, + "minlon": -73.9439862, + "maxlat": 40.7464383, + "maxlon": -73.9428740 + }, + "nodes": [ + 42866507, + 5481972186, + 42866505, + 13701380525, + 6760776778, + 42844271 + ], + "geometry": [ + { "lat": 40.7448170, "lon": -73.9428740 }, + { "lat": 40.7453839, "lon": -73.9432629 }, + { "lat": 40.7459851, "lon": -73.9436753 }, + { "lat": 40.7460190, "lon": -73.9436986 }, + { "lat": 40.7463762, "lon": -73.9439436 }, + { "lat": 40.7464383, "lon": -73.9439862 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Court Square West", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Court", + "tiger:name_type": "Sq", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5704814, + "bounds": { + "minlat": 40.7843098, + "minlon": -73.9159260, + "maxlat": 40.7855313, + "maxlon": -73.9145433 + }, + "nodes": [ + 2992280291, + 2992280293, + 2992280290, + 10764684389, + 2298768176, + 7776768912, + 3809745348, + 42866512 + ], + "geometry": [ + { "lat": 40.7843098, "lon": -73.9159260 }, + { "lat": 40.7843207, "lon": -73.9158814 }, + { "lat": 40.7843571, "lon": -73.9158289 }, + { "lat": 40.7853269, "lon": -73.9147710 }, + { "lat": 40.7853475, "lon": -73.9147486 }, + { "lat": 40.7854322, "lon": -73.9146581 }, + { "lat": 40.7854762, "lon": -73.9146111 }, + { "lat": 40.7855313, "lon": -73.9145433 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "18th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "18th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5704815, + "bounds": { + "minlat": 40.7722400, + "minlon": -73.9274430, + "maxlat": 40.7728450, + "maxlon": -73.9274300 + }, + "nodes": [ + 42811451, + 6452959161, + 7783823962, + 7733783525, + 6452969522, + 42866526 + ], + "geometry": [ + { "lat": 40.7728450, "lon": -73.9274430 }, + { "lat": 40.7727817, "lon": -73.9274416 }, + { "lat": 40.7725121, "lon": -73.9274359 }, + { "lat": 40.7723485, "lon": -73.9274324 }, + { "lat": 40.7723124, "lon": -73.9274316 }, + { "lat": 40.7722400, "lon": -73.9274300 } + ], + "tags": { + "highway": "residential", + "name": "18th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "18th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11102", + "tiger:zip_right": "11102" + } +}, +{ + "type": "way", + "id": 5704827, + "bounds": { + "minlat": 40.7356567, + "minlon": -73.9367086, + "maxlat": 40.7362087, + "maxlon": -73.9352012 + }, + "nodes": [ + 1056085659, + 9982697952, + 5482230606, + 8097303856, + 10743730245, + 42866705 + ], + "geometry": [ + { "lat": 40.7356567, "lon": -73.9367086 }, + { "lat": 40.7356889, "lon": -73.9366199 }, + { "lat": 40.7357818, "lon": -73.9363636 }, + { "lat": 40.7361598, "lon": -73.9353376 }, + { "lat": 40.7361777, "lon": -73.9352875 }, + { "lat": 40.7362087, "lon": -73.9352012 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "35th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704828, + "bounds": { + "minlat": 40.7380861, + "minlon": -73.9310973, + "maxlat": 40.7442973, + "maxlon": -73.9298588 + }, + "nodes": [ + 42832525, + 10743722095, + 5482217727, + 10083107636, + 42866719, + 10083107635, + 10081023581, + 42860595, + 10081023580, + 10743722705, + 597294545 + ], + "geometry": [ + { "lat": 40.7380861, "lon": -73.9310973 }, + { "lat": 40.7381409, "lon": -73.9310891 }, + { "lat": 40.7394663, "lon": -73.9308314 }, + { "lat": 40.7405259, "lon": -73.9306194 }, + { "lat": 40.7406064, "lon": -73.9306041 }, + { "lat": 40.7406886, "lon": -73.9305871 }, + { "lat": 40.7423663, "lon": -73.9302498 }, + { "lat": 40.7424528, "lon": -73.9302319 }, + { "lat": 40.7425380, "lon": -73.9302145 }, + { "lat": 40.7442091, "lon": -73.9298766 }, + { "lat": 40.7442973, "lon": -73.9298588 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "35th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704830, + "bounds": { + "minlat": 40.7374111, + "minlon": -73.9319527, + "maxlat": 40.7378943, + "maxlon": -73.9306821 + }, + "nodes": [ + 42832526, + 9981925190, + 13701247385, + 9981925172, + 9981925173, + 42866723 + ], + "geometry": [ + { "lat": 40.7378943, "lon": -73.9306821 }, + { "lat": 40.7378523, "lon": -73.9307821 }, + { "lat": 40.7376028, "lon": -73.9314378 }, + { "lat": 40.7374748, "lon": -73.9317743 }, + { "lat": 40.7374491, "lon": -73.9318434 }, + { "lat": 40.7374111, "lon": -73.9319527 } + ], + "tags": { + "highway": "unclassified", + "name": "35th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5704838, + "bounds": { + "minlat": 40.7490196, + "minlon": -73.9544685, + "maxlat": 40.7494155, + "maxlon": -73.9543388 + }, + "nodes": [ + 42825525, + 11211160227, + 2991208453, + 42866887 + ], + "geometry": [ + { "lat": 40.7494155, "lon": -73.9543388 }, + { "lat": 40.7493472, "lon": -73.9543611 }, + { "lat": 40.7491400, "lon": -73.9544289 }, + { "lat": 40.7490196, "lon": -73.9544685 } + ], + "tags": { + "highway": "residential", + "name": "5th Street", + "oneway": "yes", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 5704841, + "bounds": { + "minlat": 40.7485546, + "minlon": -73.9496291, + "maxlat": 40.7531892, + "maxlon": -73.9467482 + }, + "nodes": [ + 42866903, + 2472695947, + 8062562630, + 11211160215, + 42818110, + 11211160213, + 2462420408, + 11623153620, + 42866905, + 11623153621, + 2462420407, + 10699487855, + 42866908, + 10699487857, + 11211159910, + 42866912, + 11211159914, + 4675915070, + 9982771920, + 42825542 + ], + "geometry": [ + { "lat": 40.7531892, "lon": -73.9467482 }, + { "lat": 40.7531363, "lon": -73.9468004 }, + { "lat": 40.7530922, "lon": -73.9468421 }, + { "lat": 40.7519118, "lon": -73.9479852 }, + { "lat": 40.7518420, "lon": -73.9480530 }, + { "lat": 40.7517764, "lon": -73.9481107 }, + { "lat": 40.7510618, "lon": -73.9487379 }, + { "lat": 40.7510509, "lon": -73.9487500 }, + { "lat": 40.7510056, "lon": -73.9488007 }, + { "lat": 40.7509558, "lon": -73.9488539 }, + { "lat": 40.7509448, "lon": -73.9488657 }, + { "lat": 40.7500616, "lon": -73.9491624 }, + { "lat": 40.7499921, "lon": -73.9491858 }, + { "lat": 40.7499326, "lon": -73.9492055 }, + { "lat": 40.7493640, "lon": -73.9493943 }, + { "lat": 40.7492998, "lon": -73.9494153 }, + { "lat": 40.7492420, "lon": -73.9494345 }, + { "lat": 40.7487039, "lon": -73.9496116 }, + { "lat": 40.7486635, "lon": -73.9496234 }, + { "lat": 40.7485546, "lon": -73.9496291 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "secondary", + "lit": "yes", + "name": "11th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704845, + "bounds": { + "minlat": 40.7427089, + "minlon": -73.9514944, + "maxlat": 40.7431897, + "maxlon": -73.9514078 + }, + "nodes": [ + 42844241, + 6769993780, + 9179073042, + 9179073041, + 276317706 + ], + "geometry": [ + { "lat": 40.7431897, "lon": -73.9514078 }, + { "lat": 40.7430529, "lon": -73.9514393 }, + { "lat": 40.7429194, "lon": -73.9514583 }, + { "lat": 40.7427842, "lon": -73.9514786 }, + { "lat": 40.7427089, "lon": -73.9514944 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "highway": "primary", + "lanes": "2", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 5704848, + "bounds": { + "minlat": 40.7648356, + "minlon": -73.9376568, + "maxlat": 40.7675780, + "maxlon": -73.9359490 + }, + "nodes": [ + 9910693365, + 7059887702, + 13702815690, + 11649812074, + 42807554, + 11649812075, + 5471798295, + 42867023, + 5471798285, + 2459401773, + 42826930 + ], + "geometry": [ + { "lat": 40.7648356, "lon": -73.9376568 }, + { "lat": 40.7648921, "lon": -73.9376240 }, + { "lat": 40.7652934, "lon": -73.9373740 }, + { "lat": 40.7661300, "lon": -73.9368530 }, + { "lat": 40.7661830, "lon": -73.9368200 }, + { "lat": 40.7662398, "lon": -73.9367847 }, + { "lat": 40.7668457, "lon": -73.9364086 }, + { "lat": 40.7669140, "lon": -73.9363660 }, + { "lat": 40.7669648, "lon": -73.9363346 }, + { "lat": 40.7674993, "lon": -73.9359989 }, + { "lat": 40.7675780, "lon": -73.9359490 } + ], + "tags": { + "highway": "residential", + "name": "11th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5704857, + "bounds": { + "minlat": 40.7138220, + "minlon": -73.9127850, + "maxlat": 40.7153318, + "maxlon": -73.9101580 + }, + "nodes": [ + 597676729, + 2902486213, + 10577727230, + 11003420594, + 42847263, + 42847279, + 11003420583, + 13047849327, + 42867257 + ], + "geometry": [ + { "lat": 40.7153318, "lon": -73.9127850 }, + { "lat": 40.7152652, "lon": -73.9126690 }, + { "lat": 40.7151715, "lon": -73.9125059 }, + { "lat": 40.7149157, "lon": -73.9120609 }, + { "lat": 40.7147282, "lon": -73.9117347 }, + { "lat": 40.7146453, "lon": -73.9115906 }, + { "lat": 40.7142862, "lon": -73.9109657 }, + { "lat": 40.7138534, "lon": -73.9102114 }, + { "lat": 40.7138220, "lon": -73.9101580 } + ], + "tags": { + "highway": "residential", + "name": "54th Place", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5704898, + "bounds": { + "minlat": 40.7648306, + "minlon": -73.9303860, + "maxlat": 40.7666660, + "maxlon": -73.9270751 + }, + "nodes": [ + 42818520, + 6452892487, + 5487911885, + 7791526556, + 2693557989, + 7791526547, + 4991520725, + 2693557987 + ], + "geometry": [ + { "lat": 40.7648306, "lon": -73.9270751 }, + { "lat": 40.7648738, "lon": -73.9271529 }, + { "lat": 40.7656029, "lon": -73.9284656 }, + { "lat": 40.7659465, "lon": -73.9290842 }, + { "lat": 40.7659830, "lon": -73.9291499 }, + { "lat": 40.7660240, "lon": -73.9292241 }, + { "lat": 40.7666072, "lon": -73.9302795 }, + { "lat": 40.7666660, "lon": -73.9303860 } + ], + "tags": { + "highway": "residential", + "name": "31st Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5705042, + "bounds": { + "minlat": 40.7430424, + "minlon": -73.9162150, + "maxlat": 40.7431379, + "maxlon": -73.9158551 + }, + "nodes": [ + 588178907, + 42807843 + ], + "geometry": [ + { "lat": 40.7430424, "lon": -73.9162150 }, + { "lat": 40.7431379, "lon": -73.9158551 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Roosevelt Avenue", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 5705067, + "bounds": { + "minlat": 40.6995881, + "minlon": -73.9109898, + "maxlat": 40.7002771, + "maxlon": -73.9102864 + }, + "nodes": [ + 7717123188, + 9668554630, + 3017396582, + 3017396590, + 9947478054 + ], + "geometry": [ + { "lat": 40.6995881, "lon": -73.9109898 }, + { "lat": 40.6996803, "lon": -73.9109045 }, + { "lat": 40.6998105, "lon": -73.9107842 }, + { "lat": 40.7002225, "lon": -73.9103446 }, + { "lat": 40.7002771, "lon": -73.9102864 } + ], + "tags": { + "access": "destination", + "bus": "yes", + "delivery": "yes", + "foot": "yes", + "highway": "residential", + "name": "Palmetto Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Palmetto", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 5705122, + "bounds": { + "minlat": 40.7166060, + "minlon": -73.9223186, + "maxlat": 40.7193480, + "maxlon": -73.9123210 + }, + "nodes": [ + 1533280143, + 9353053458, + 5482677949, + 7984121798, + 7984121805, + 5176490242, + 9353053460, + 5482677954, + 42807867, + 11001678387, + 42871287, + 6411284771, + 6411284768, + 6411284756, + 6100646486, + 5481979935, + 9759984036, + 42871290, + 7706126093, + 10006612432, + 5481978205, + 10006612430, + 42871293, + 5481978195, + 42855308, + 10028928800, + 13701644467, + 9759966679, + 42871299 + ], + "geometry": [ + { "lat": 40.7166060, "lon": -73.9223186 }, + { "lat": 40.7167162, "lon": -73.9218526 }, + { "lat": 40.7167385, "lon": -73.9217634 }, + { "lat": 40.7167542, "lon": -73.9217009 }, + { "lat": 40.7167661, "lon": -73.9216535 }, + { "lat": 40.7167950, "lon": -73.9215380 }, + { "lat": 40.7168279, "lon": -73.9214196 }, + { "lat": 40.7172937, "lon": -73.9197443 }, + { "lat": 40.7174084, "lon": -73.9193154 }, + { "lat": 40.7177123, "lon": -73.9182365 }, + { "lat": 40.7177494, "lon": -73.9181049 }, + { "lat": 40.7179438, "lon": -73.9173929 }, + { "lat": 40.7180934, "lon": -73.9168482 }, + { "lat": 40.7182624, "lon": -73.9162386 }, + { "lat": 40.7182995, "lon": -73.9160976 }, + { "lat": 40.7184644, "lon": -73.9155090 }, + { "lat": 40.7185330, "lon": -73.9152502 }, + { "lat": 40.7185550, "lon": -73.9151670 }, + { "lat": 40.7186589, "lon": -73.9148009 }, + { "lat": 40.7187088, "lon": -73.9146253 }, + { "lat": 40.7187126, "lon": -73.9146119 }, + { "lat": 40.7187658, "lon": -73.9144242 }, + { "lat": 40.7188110, "lon": -73.9142650 }, + { "lat": 40.7188342, "lon": -73.9141737 }, + { "lat": 40.7190510, "lon": -73.9133980 }, + { "lat": 40.7191855, "lon": -73.9129104 }, + { "lat": 40.7192284, "lon": -73.9127502 }, + { "lat": 40.7193224, "lon": -73.9124313 }, + { "lat": 40.7193480, "lon": -73.9123210 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Grand Avenue", + "oneway": "no", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 5705158, + "bounds": { + "minlat": 40.7778084, + "minlon": -73.9130771, + "maxlat": 40.7814000, + "maxlon": -73.9086873 + }, + "nodes": [ + 42872001, + 7779193136, + 5127233088, + 9847967622, + 8500089232, + 42872000, + 9776116513, + 2307002110, + 2300261720, + 2307002109, + 7776706702, + 9847967682, + 42871997 + ], + "geometry": [ + { "lat": 40.7814000, "lon": -73.9086873 }, + { "lat": 40.7813468, "lon": -73.9087524 }, + { "lat": 40.7801084, "lon": -73.9102679 }, + { "lat": 40.7797220, "lon": -73.9107415 }, + { "lat": 40.7796987, "lon": -73.9107703 }, + { "lat": 40.7796409, "lon": -73.9108408 }, + { "lat": 40.7795826, "lon": -73.9109081 }, + { "lat": 40.7793611, "lon": -73.9111710 }, + { "lat": 40.7786936, "lon": -73.9119845 }, + { "lat": 40.7780649, "lon": -73.9127637 }, + { "lat": 40.7779011, "lon": -73.9129638 }, + { "lat": 40.7778655, "lon": -73.9130073 }, + { "lat": 40.7778084, "lon": -73.9130771 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "27th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "27th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11102", + "tiger:zip_right": "11102" + } +}, +{ + "type": "way", + "id": 5705160, + "bounds": { + "minlat": 40.7411894, + "minlon": -73.9422986, + "maxlat": 40.7444157, + "maxlon": -73.9403225 + }, + "nodes": [ + 42872047, + 8991509387, + 8316786966, + 10081023544, + 42860546, + 7975691600, + 10081023545, + 10081023546, + 10081023547, + 277046640, + 10081023549, + 10081023550, + 10081023548, + 10081023551, + 277046641, + 42872051, + 42872054, + 10081023557, + 8316873542, + 10081023556, + 10081023555, + 42832478 + ], + "geometry": [ + { "lat": 40.7444157, "lon": -73.9403225 }, + { "lat": 40.7443341, "lon": -73.9403278 }, + { "lat": 40.7443097, "lon": -73.9403312 }, + { "lat": 40.7437225, "lon": -73.9404423 }, + { "lat": 40.7436324, "lon": -73.9404587 }, + { "lat": 40.7430878, "lon": -73.9405692 }, + { "lat": 40.7430065, "lon": -73.9405862 }, + { "lat": 40.7429632, "lon": -73.9405980 }, + { "lat": 40.7429220, "lon": -73.9406154 }, + { "lat": 40.7428882, "lon": -73.9406341 }, + { "lat": 40.7428461, "lon": -73.9406590 }, + { "lat": 40.7428080, "lon": -73.9406852 }, + { "lat": 40.7427735, "lon": -73.9407106 }, + { "lat": 40.7427382, "lon": -73.9407422 }, + { "lat": 40.7427045, "lon": -73.9407754 }, + { "lat": 40.7423339, "lon": -73.9411635 }, + { "lat": 40.7416958, "lon": -73.9418218 }, + { "lat": 40.7412954, "lon": -73.9422394 }, + { "lat": 40.7412778, "lon": -73.9422566 }, + { "lat": 40.7412610, "lon": -73.9422680 }, + { "lat": 40.7412394, "lon": -73.9422798 }, + { "lat": 40.7411894, "lon": -73.9422986 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "27th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5705161, + "bounds": { + "minlat": 40.7682479, + "minlon": -73.9242695, + "maxlat": 40.7698510, + "maxlon": -73.9229480 + }, + "nodes": [ + 42872073, + 3020369551, + 3020369545, + 9295442006, + 3020369548, + 2457398799, + 2992565366, + 2457398820, + 7814081828, + 2457398783, + 42872077 + ], + "geometry": [ + { "lat": 40.7698510, "lon": -73.9229480 }, + { "lat": 40.7697909, "lon": -73.9230011 }, + { "lat": 40.7691580, "lon": -73.9235183 }, + { "lat": 40.7690812, "lon": -73.9235815 }, + { "lat": 40.7689183, "lon": -73.9237155 }, + { "lat": 40.7688143, "lon": -73.9238011 }, + { "lat": 40.7688015, "lon": -73.9238117 }, + { "lat": 40.7684906, "lon": -73.9240675 }, + { "lat": 40.7683488, "lon": -73.9241841 }, + { "lat": 40.7683193, "lon": -73.9242084 }, + { "lat": 40.7682479, "lon": -73.9242695 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "27th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5705265, + "bounds": { + "minlat": 40.7199901, + "minlon": -73.9172123, + "maxlat": 40.7220717, + "maxlon": -73.9165821 + }, + "nodes": [ + 42854190, + 2825689928, + 7712061252, + 7712061251 + ], + "geometry": [ + { "lat": 40.7220717, "lon": -73.9165821 }, + { "lat": 40.7209383, "lon": -73.9167588 }, + { "lat": 40.7207623, "lon": -73.9167875 }, + { "lat": 40.7199901, "lon": -73.9172123 } + ], + "tags": { + "highway": "residential", + "name": "Page Place", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Page", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "11378", + "tiger:zip_left_1": "11378", + "tiger:zip_right": "11378", + "tiger:zip_right_1": "11378" + } +}, +{ + "type": "way", + "id": 5705296, + "bounds": { + "minlat": 40.7812661, + "minlon": -73.9197261, + "maxlat": 40.7825543, + "maxlon": -73.9179676 + }, + "nodes": [ + 2298768513, + 7833241027, + 3778313811, + 3863075651, + 42812019 + ], + "geometry": [ + { "lat": 40.7825543, "lon": -73.9197261 }, + { "lat": 40.7824884, "lon": -73.9196857 }, + { "lat": 40.7824664, "lon": -73.9196722 }, + { "lat": 40.7813100, "lon": -73.9180300 }, + { "lat": 40.7812661, "lon": -73.9179676 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lcn": "yes", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "maxspeed:type": "sign", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Ditmars Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Ditmars", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "11370", + "tiger:zip_right": "11370", + "wikidata": "Q5283685", + "wikipedia": "en:Ditmars Boulevard" + } +}, +{ + "type": "way", + "id": 5705331, + "bounds": { + "minlat": 40.7412542, + "minlon": -73.9434728, + "maxlat": 40.7430613, + "maxlon": -73.9426394 + }, + "nodes": [ + 42875525, + 10081023570, + 10081023572, + 10081023571, + 42875527, + 10081023569, + 42875533, + 10081023568, + 10081023567, + 42875537, + 10081023566, + 42875542, + 42875550, + 10081023565, + 10081023564, + 42875554, + 10081023558, + 10081023559, + 10081023560, + 8926818324, + 10081023561, + 10081023562, + 10081023563, + 42832477 + ], + "geometry": [ + { "lat": 40.7430613, "lon": -73.9427639 }, + { "lat": 40.7428715, "lon": -73.9432439 }, + { "lat": 40.7428467, "lon": -73.9433024 }, + { "lat": 40.7428243, "lon": -73.9433439 }, + { "lat": 40.7428038, "lon": -73.9433761 }, + { "lat": 40.7427831, "lon": -73.9434032 }, + { "lat": 40.7427597, "lon": -73.9434257 }, + { "lat": 40.7427302, "lon": -73.9434490 }, + { "lat": 40.7427047, "lon": -73.9434627 }, + { "lat": 40.7426764, "lon": -73.9434706 }, + { "lat": 40.7426500, "lon": -73.9434728 }, + { "lat": 40.7426235, "lon": -73.9434710 }, + { "lat": 40.7425945, "lon": -73.9434660 }, + { "lat": 40.7425654, "lon": -73.9434576 }, + { "lat": 40.7425395, "lon": -73.9434447 }, + { "lat": 40.7425146, "lon": -73.9434303 }, + { "lat": 40.7414221, "lon": -73.9426936 }, + { "lat": 40.7413783, "lon": -73.9426643 }, + { "lat": 40.7413580, "lon": -73.9426546 }, + { "lat": 40.7413456, "lon": -73.9426477 }, + { "lat": 40.7413192, "lon": -73.9426412 }, + { "lat": 40.7412976, "lon": -73.9426394 }, + { "lat": 40.7412797, "lon": -73.9426403 }, + { "lat": 40.7412542, "lon": -73.9426441 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Davis Court", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5705392, + "bounds": { + "minlat": 40.7243211, + "minlon": -73.9285122, + "maxlat": 40.7293832, + "maxlon": -73.9149687 + }, + "nodes": [ + 42825196, + 9982698007, + 9982698006, + 9982698005, + 7678967227, + 10087637185, + 9194902824, + 10087637184, + 7712008338, + 9194902822, + 10087637183, + 5849795395, + 10087637182, + 42876186, + 10087637181, + 9194902823, + 10087637179, + 9194902821, + 10087637180, + 42873372, + 10087637214, + 42873374, + 10087637215, + 10087637216, + 42873379, + 42873382, + 42876079, + 10087637217, + 10087637218, + 10087637219, + 42876084, + 42876088, + 10087637220, + 42876091, + 10087637221, + 42876094, + 10087637222, + 10087637223, + 10087637224, + 42859998, + 9696553957, + 5482423919, + 10087637228, + 9696553934, + 5482634971, + 10087637229, + 10087637230, + 10087637231, + 42876102, + 277767903, + 277767904, + 8288327039, + 5849795401, + 277767905, + 11029488824, + 42876105 + ], + "geometry": [ + { "lat": 40.7293832, "lon": -73.9285122 }, + { "lat": 40.7293355, "lon": -73.9283993 }, + { "lat": 40.7293213, "lon": -73.9283632 }, + { "lat": 40.7293108, "lon": -73.9283275 }, + { "lat": 40.7293045, "lon": -73.9283066 }, + { "lat": 40.7291141, "lon": -73.9274088 }, + { "lat": 40.7289216, "lon": -73.9265373 }, + { "lat": 40.7289052, "lon": -73.9264681 }, + { "lat": 40.7288887, "lon": -73.9264096 }, + { "lat": 40.7288708, "lon": -73.9263499 }, + { "lat": 40.7288548, "lon": -73.9263026 }, + { "lat": 40.7288255, "lon": -73.9262325 }, + { "lat": 40.7288040, "lon": -73.9261896 }, + { "lat": 40.7287848, "lon": -73.9261565 }, + { "lat": 40.7287614, "lon": -73.9261172 }, + { "lat": 40.7287381, "lon": -73.9260800 }, + { "lat": 40.7287073, "lon": -73.9260392 }, + { "lat": 40.7286754, "lon": -73.9259972 }, + { "lat": 40.7286384, "lon": -73.9259541 }, + { "lat": 40.7277430, "lon": -73.9250419 }, + { "lat": 40.7276712, "lon": -73.9249592 }, + { "lat": 40.7275935, "lon": -73.9248607 }, + { "lat": 40.7275340, "lon": -73.9247740 }, + { "lat": 40.7274867, "lon": -73.9246909 }, + { "lat": 40.7274418, "lon": -73.9245988 }, + { "lat": 40.7273928, "lon": -73.9244899 }, + { "lat": 40.7269012, "lon": -73.9233933 }, + { "lat": 40.7268409, "lon": -73.9232501 }, + { "lat": 40.7267779, "lon": -73.9230896 }, + { "lat": 40.7267129, "lon": -73.9229157 }, + { "lat": 40.7266537, "lon": -73.9227416 }, + { "lat": 40.7265892, "lon": -73.9225411 }, + { "lat": 40.7265289, "lon": -73.9223390 }, + { "lat": 40.7264817, "lon": -73.9221537 }, + { "lat": 40.7264301, "lon": -73.9219340 }, + { "lat": 40.7263889, "lon": -73.9217371 }, + { "lat": 40.7263483, "lon": -73.9215169 }, + { "lat": 40.7263129, "lon": -73.9212896 }, + { "lat": 40.7262865, "lon": -73.9210780 }, + { "lat": 40.7262238, "lon": -73.9205234 }, + { "lat": 40.7261319, "lon": -73.9196192 }, + { "lat": 40.7261155, "lon": -73.9194372 }, + { "lat": 40.7261035, "lon": -73.9193239 }, + { "lat": 40.7260899, "lon": -73.9192182 }, + { "lat": 40.7260751, "lon": -73.9191163 }, + { "lat": 40.7260542, "lon": -73.9189786 }, + { "lat": 40.7260218, "lon": -73.9187813 }, + { "lat": 40.7259844, "lon": -73.9185768 }, + { "lat": 40.7259476, "lon": -73.9183687 }, + { "lat": 40.7257264, "lon": -73.9175412 }, + { "lat": 40.7254788, "lon": -73.9168579 }, + { "lat": 40.7253592, "lon": -73.9166018 }, + { "lat": 40.7252404, "lon": -73.9163474 }, + { "lat": 40.7249568, "lon": -73.9158200 }, + { "lat": 40.7244597, "lon": -73.9151276 }, + { "lat": 40.7243211, "lon": -73.9149687 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "56th Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5705423, + "bounds": { + "minlat": 40.7575028, + "minlon": -73.9441670, + "maxlat": 40.7593080, + "maxlon": -73.9390967 + }, + "nodes": [ + 42826820, + 6452721235, + 8084752891, + 8334074867, + 42876743, + 8334074916, + 8334074896, + 42876747, + 8334076727, + 8334074902, + 42867035, + 8334076734, + 8334074872, + 42876752, + 8334074907, + 7737906984, + 42876757, + 7737907509, + 3573507302, + 2302476358 + ], + "geometry": [ + { "lat": 40.7593080, "lon": -73.9441670 }, + { "lat": 40.7592719, "lon": -73.9440700 }, + { "lat": 40.7592615, "lon": -73.9440420 }, + { "lat": 40.7590071, "lon": -73.9433712 }, + { "lat": 40.7589840, "lon": -73.9432960 }, + { "lat": 40.7589576, "lon": -73.9432220 }, + { "lat": 40.7587061, "lon": -73.9425286 }, + { "lat": 40.7586830, "lon": -73.9424560 }, + { "lat": 40.7586536, "lon": -73.9423742 }, + { "lat": 40.7584353, "lon": -73.9417611 }, + { "lat": 40.7583980, "lon": -73.9416620 }, + { "lat": 40.7583656, "lon": -73.9415716 }, + { "lat": 40.7581409, "lon": -73.9409370 }, + { "lat": 40.7581110, "lon": -73.9408620 }, + { "lat": 40.7580883, "lon": -73.9407946 }, + { "lat": 40.7578346, "lon": -73.9400933 }, + { "lat": 40.7578090, "lon": -73.9400220 }, + { "lat": 40.7577808, "lon": -73.9399425 }, + { "lat": 40.7575367, "lon": -73.9392548 }, + { "lat": 40.7575028, "lon": -73.9390967 } + ], + "tags": { + "highway": "residential", + "name": "38th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5705424, + "bounds": { + "minlat": 40.7483809, + "minlon": -73.9067657, + "maxlat": 40.7493729, + "maxlon": -73.9051197 + }, + "nodes": [ + 11917978954, + 42855374, + 9677940579, + 11643646159, + 42876821, + 11643646161, + 5867077877, + 11643652870, + 42876827 + ], + "geometry": [ + { "lat": 40.7493729, "lon": -73.9067657 }, + { "lat": 40.7493370, "lon": -73.9066980 }, + { "lat": 40.7489186, "lon": -73.9060109 }, + { "lat": 40.7489031, "lon": -73.9059855 }, + { "lat": 40.7488590, "lon": -73.9059130 }, + { "lat": 40.7488201, "lon": -73.9058500 }, + { "lat": 40.7484396, "lon": -73.9052329 }, + { "lat": 40.7484263, "lon": -73.9052072 }, + { "lat": 40.7483809, "lon": -73.9051197 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "38th Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "38th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 5705445, + "bounds": { + "minlat": 40.7102590, + "minlon": -73.9072180, + "maxlat": 40.7106295, + "maxlon": -73.9057101 + }, + "nodes": [ + 42876064, + 9763022208, + 8626187076, + 42877013 + ], + "geometry": [ + { "lat": 40.7102590, "lon": -73.9072180 }, + { "lat": 40.7103152, "lon": -73.9069867 }, + { "lat": 40.7103290, "lon": -73.9069300 }, + { "lat": 40.7106295, "lon": -73.9057101 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Butler Avenue", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Butler", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 5705565, + "bounds": { + "minlat": 40.7222843, + "minlon": -73.9134416, + "maxlat": 40.7226210, + "maxlon": -73.9133210 + }, + "nodes": [ + 4396956982, + 7963480227, + 42821476 + ], + "geometry": [ + { "lat": 40.7226210, "lon": -73.9133210 }, + { "lat": 40.7224824, "lon": -73.9133684 }, + { "lat": 40.7222843, "lon": -73.9134416 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "57th Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5705595, + "bounds": { + "minlat": 40.7441387, + "minlon": -73.9465388, + "maxlat": 40.7454691, + "maxlon": -73.9456268 + }, + "nodes": [ + 42844259, + 9982698551, + 9982698552, + 13238833073, + 5481972184, + 276096739 + ], + "geometry": [ + { "lat": 40.7454691, "lon": -73.9465388 }, + { "lat": 40.7453788, "lon": -73.9464792 }, + { "lat": 40.7453393, "lon": -73.9464518 }, + { "lat": 40.7446798, "lon": -73.9459953 }, + { "lat": 40.7442778, "lon": -73.9457171 }, + { "lat": 40.7441387, "lon": -73.9456268 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Crane Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5705675, + "bounds": { + "minlat": 40.7410390, + "minlon": -73.9380194, + "maxlat": 40.7414649, + "maxlon": -73.9343110 + }, + "nodes": [ + 42880274, + 9981973329, + 8626128161, + 9981973330, + 42867657, + 9981973334, + 9981973333, + 42849635, + 9981973337, + 9981973338, + 42880280, + 10743722171, + 13801396857, + 9981973341, + 42866368 + ], + "geometry": [ + { "lat": 40.7414649, "lon": -73.9380194 }, + { "lat": 40.7414554, "lon": -73.9379420 }, + { "lat": 40.7414496, "lon": -73.9378950 }, + { "lat": 40.7413656, "lon": -73.9371763 }, + { "lat": 40.7413560, "lon": -73.9370928 }, + { "lat": 40.7413472, "lon": -73.9370158 }, + { "lat": 40.7412607, "lon": -73.9362531 }, + { "lat": 40.7412509, "lon": -73.9361669 }, + { "lat": 40.7412418, "lon": -73.9360847 }, + { "lat": 40.7411569, "lon": -73.9353216 }, + { "lat": 40.7411477, "lon": -73.9352382 }, + { "lat": 40.7411389, "lon": -73.9351636 }, + { "lat": 40.7410670, "lon": -73.9345501 }, + { "lat": 40.7410565, "lon": -73.9344604 }, + { "lat": 40.7410390, "lon": -73.9343110 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5705681, + "bounds": { + "minlat": 40.7386090, + "minlon": -73.9083230, + "maxlat": 40.7386310, + "maxlon": -73.9074122 + }, + "nodes": [ + 42880475, + 10203936746, + 9696102478, + 8626128133, + 10203936730, + 42880479 + ], + "geometry": [ + { "lat": 40.7386310, "lon": -73.9083230 }, + { "lat": 40.7386286, "lon": -73.9082256 }, + { "lat": 40.7386278, "lon": -73.9081906 }, + { "lat": 40.7386125, "lon": -73.9075570 }, + { "lat": 40.7386111, "lon": -73.9074981 }, + { "lat": 40.7386090, "lon": -73.9074122 } + ], + "tags": { + "highway": "residential", + "name": "48th Avenue" + } +}, +{ + "type": "way", + "id": 5705685, + "bounds": { + "minlat": 40.7435472, + "minlon": -73.9512920, + "maxlat": 40.7436586, + "maxlon": -73.9507136 + }, + "nodes": [ + 42844248, + 9982728591, + 9982728592, + 11157932401, + 42866942 + ], + "geometry": [ + { "lat": 40.7435472, "lon": -73.9507136 }, + { "lat": 40.7435812, "lon": -73.9508970 }, + { "lat": 40.7436209, "lon": -73.9510909 }, + { "lat": 40.7436373, "lon": -73.9511803 }, + { "lat": 40.7436586, "lon": -73.9512920 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5705713, + "bounds": { + "minlat": 40.7760862, + "minlon": -73.9233100, + "maxlat": 40.7768830, + "maxlon": -73.9221820 + }, + "nodes": [ + 42826000, + 6459357072, + 11114807129, + 11114783729, + 7756491603, + 6459357076, + 42812056 + ], + "geometry": [ + { "lat": 40.7760862, "lon": -73.9221820 }, + { "lat": 40.7761486, "lon": -73.9222681 }, + { "lat": 40.7765101, "lon": -73.9227810 }, + { "lat": 40.7766346, "lon": -73.9229577 }, + { "lat": 40.7768145, "lon": -73.9232129 }, + { "lat": 40.7768434, "lon": -73.9232539 }, + { "lat": 40.7768830, "lon": -73.9233100 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "24th Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5705717, + "bounds": { + "minlat": 40.7707432, + "minlon": -73.9168068, + "maxlat": 40.7711880, + "maxlon": -73.9161823 + }, + "nodes": [ + 42849685, + 7784017487, + 5866656855, + 5866656856, + 6406731048, + 42881052 + ], + "geometry": [ + { "lat": 40.7711880, "lon": -73.9168068 }, + { "lat": 40.7710963, "lon": -73.9166786 }, + { "lat": 40.7710664, "lon": -73.9166368 }, + { "lat": 40.7708060, "lon": -73.9162707 }, + { "lat": 40.7707834, "lon": -73.9162390 }, + { "lat": 40.7707432, "lon": -73.9161823 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "24th Road", + "source:maxspeed": "sign", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "24th", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "11102", + "tiger:zip_right": "11102" + } +}, +{ + "type": "way", + "id": 5705728, + "bounds": { + "minlat": 40.7810052, + "minlon": -73.9190845, + "maxlat": 40.7830722, + "maxlon": -73.9161600 + }, + "nodes": [ + 42825970, + 7803843780, + 2403864094, + 10764684380, + 42812016, + 10764684378, + 2403864013, + 7803843775, + 7803848563, + 42849823 + ], + "geometry": [ + { "lat": 40.7810052, "lon": -73.9161600 }, + { "lat": 40.7810778, "lon": -73.9162645 }, + { "lat": 40.7816109, "lon": -73.9170322 }, + { "lat": 40.7817661, "lon": -73.9172517 }, + { "lat": 40.7818030, "lon": -73.9173040 }, + { "lat": 40.7818472, "lon": -73.9173635 }, + { "lat": 40.7820180, "lon": -73.9175948 }, + { "lat": 40.7830090, "lon": -73.9189951 }, + { "lat": 40.7830291, "lon": -73.9190236 }, + { "lat": 40.7830722, "lon": -73.9190845 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "21st Drive", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "21st", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5705732, + "bounds": { + "minlat": 40.7732070, + "minlon": -73.9310096, + "maxlat": 40.7738427, + "maxlon": -73.9306414 + }, + "nodes": [ + 42811443, + 6452930142, + 13684408625, + 42833068 + ], + "geometry": [ + { "lat": 40.7738427, "lon": -73.9306414 }, + { "lat": 40.7737990, "lon": -73.9306667 }, + { "lat": 40.7737767, "lon": -73.9306796 }, + { "lat": 40.7732070, "lon": -73.9310096 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Blackwell Lane", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Blackwell", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5705734, + "bounds": { + "minlat": 40.7132894, + "minlon": -73.9107142, + "maxlat": 40.7138220, + "maxlon": -73.9101580 + }, + "nodes": [ + 5515218205, + 42867257 + ], + "geometry": [ + { "lat": 40.7132894, "lon": -73.9107142 }, + { "lat": 40.7138220, "lon": -73.9101580 } + ], + "tags": { + "highway": "residential", + "name": "Arnold Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5705744, + "bounds": { + "minlat": 40.7660881, + "minlon": -73.9363660, + "maxlat": 40.7669140, + "maxlon": -73.9348902 + }, + "nodes": [ + 42867023, + 4971585806, + 5471798292, + 11308745680, + 42881445, + 11308745679, + 13702918239, + 2509345514, + 42881448 + ], + "geometry": [ + { "lat": 40.7669140, "lon": -73.9363660 }, + { "lat": 40.7668697, "lon": -73.9362838 }, + { "lat": 40.7668459, "lon": -73.9362433 }, + { "lat": 40.7664773, "lon": -73.9355787 }, + { "lat": 40.7664370, "lon": -73.9355060 }, + { "lat": 40.7664037, "lon": -73.9354473 }, + { "lat": 40.7663517, "lon": -73.9353554 }, + { "lat": 40.7662035, "lon": -73.9350939 }, + { "lat": 40.7660881, "lon": -73.9348902 } + ], + "tags": { + "highway": "residential", + "name": "33rd Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "33rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11106", + "tiger:zip_right": "11106" + } +}, +{ + "type": "way", + "id": 5705780, + "bounds": { + "minlat": 40.7346330, + "minlon": -73.9096097, + "maxlat": 40.7356641, + "maxlon": -73.9057360 + }, + "nodes": [ + 42881924, + 10087484116, + 10087528617, + 12908215037, + 42825384, + 42881928, + 42827404, + 42881934 + ], + "geometry": [ + { "lat": 40.7356641, "lon": -73.9096097 }, + { "lat": 40.7356356, "lon": -73.9095034 }, + { "lat": 40.7356124, "lon": -73.9094172 }, + { "lat": 40.7353458, "lon": -73.9084234 }, + { "lat": 40.7353250, "lon": -73.9083460 }, + { "lat": 40.7350940, "lon": -73.9074760 }, + { "lat": 40.7348650, "lon": -73.9066070 }, + { "lat": 40.7346330, "lon": -73.9057360 } + ], + "tags": { + "highway": "residential", + "name": "52nd Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "52nd", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 5705871, + "bounds": { + "minlat": 40.7652267, + "minlon": -73.9321261, + "maxlat": 40.7654644, + "maxlon": -73.9316965 + }, + "nodes": [ + 42826064, + 6452398346, + 7726844882 + ], + "geometry": [ + { "lat": 40.7652267, "lon": -73.9316965 }, + { "lat": 40.7652939, "lon": -73.9318186 }, + { "lat": 40.7654644, "lon": -73.9321261 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Broadway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5705963, + "bounds": { + "minlat": 40.7755939, + "minlon": -73.9361399, + "maxlat": 40.7770608, + "maxlon": -73.9354091 + }, + "nodes": [ + 42811421, + 7756437663, + 13116240205, + 4374613429, + 13892442015, + 13892442012, + 42861335 + ], + "geometry": [ + { "lat": 40.7755939, "lon": -73.9361399 }, + { "lat": 40.7756839, "lon": -73.9360956 }, + { "lat": 40.7763321, "lon": -73.9357689 }, + { "lat": 40.7766159, "lon": -73.9356263 }, + { "lat": 40.7769572, "lon": -73.9354597 }, + { "lat": 40.7770061, "lon": -73.9354358 }, + { "lat": 40.7770608, "lon": -73.9354091 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "1", + "name": "1st Street", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:left": "no", + "parking:right": "lane", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706030, + "bounds": { + "minlat": 40.7122140, + "minlon": -73.9111620, + "maxlat": 40.7131516, + "maxlon": -73.9102232 + }, + "nodes": [ + 42843585, + 9747646521, + 10686537770, + 9747646526, + 42851887 + ], + "geometry": [ + { "lat": 40.7131516, "lon": -73.9102232 }, + { "lat": 40.7130853, "lon": -73.9102896 }, + { "lat": 40.7123014, "lon": -73.9110744 }, + { "lat": 40.7122648, "lon": -73.9111111 }, + { "lat": 40.7122140, "lon": -73.9111620 } + ], + "tags": { + "highway": "residential", + "name": "Rene Court", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5706036, + "bounds": { + "minlat": 40.7089760, + "minlon": -73.9168490, + "maxlat": 40.7105290, + "maxlon": -73.9152640 + }, + "nodes": [ + 42885318, + 9755789295, + 9755789297, + 42827589, + 9755788834, + 10693892837, + 10693892835, + 9755788829, + 42809932 + ], + "geometry": [ + { "lat": 40.7089760, "lon": -73.9168490 }, + { "lat": 40.7093288, "lon": -73.9164889 }, + { "lat": 40.7093666, "lon": -73.9164504 }, + { "lat": 40.7094131, "lon": -73.9164029 }, + { "lat": 40.7094715, "lon": -73.9163433 }, + { "lat": 40.7095066, "lon": -73.9163075 }, + { "lat": 40.7104391, "lon": -73.9153557 }, + { "lat": 40.7104812, "lon": -73.9153128 }, + { "lat": 40.7105290, "lon": -73.9152640 } + ], + "tags": { + "highway": "residential", + "name": "Suydam Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706037, + "bounds": { + "minlat": 40.6990150, + "minlon": -73.9267820, + "maxlat": 40.7004810, + "maxlon": -73.9253290 + }, + "nodes": [ + 42486728, + 6252542700, + 9753035674, + 42496660 + ], + "geometry": [ + { "lat": 40.6990150, "lon": -73.9267820 }, + { "lat": 40.6990694, "lon": -73.9267279 }, + { "lat": 40.7004268, "lon": -73.9253827 }, + { "lat": 40.7004810, "lon": -73.9253290 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Suydam Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY;Kings, NY", + "tiger:name_base": "Suydam", + "tiger:name_type": "St", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 5706060, + "bounds": { + "minlat": 40.7538599, + "minlon": -73.9176084, + "maxlat": 40.7680856, + "maxlon": -73.9060991 + }, + "nodes": [ + 42885751, + 9189020421, + 9189020420, + 8088629392, + 10774472416, + 10774472408, + 3569858126, + 42824176, + 3569858130, + 3570249816, + 42883012, + 3570249819, + 6450572739, + 42885748, + 6450631968, + 7661232260, + 42856571, + 3570249858, + 5904717691, + 8593804548, + 42810503, + 8593804488, + 3570249918, + 42874078, + 3570249924, + 3570249955, + 42833017, + 3570249962, + 13703044633, + 6453096679, + 42842496, + 6453096680, + 8374908560, + 42885743, + 8017901167, + 8017938299, + 42885742 + ], + "geometry": [ + { "lat": 40.7538599, "lon": -73.9176084 }, + { "lat": 40.7539264, "lon": -73.9175668 }, + { "lat": 40.7539624, "lon": -73.9175450 }, + { "lat": 40.7539934, "lon": -73.9175225 }, + { "lat": 40.7541169, "lon": -73.9174251 }, + { "lat": 40.7544796, "lon": -73.9171393 }, + { "lat": 40.7547481, "lon": -73.9169296 }, + { "lat": 40.7548199, "lon": -73.9168694 }, + { "lat": 40.7548824, "lon": -73.9168195 }, + { "lat": 40.7570287, "lon": -73.9150665 }, + { "lat": 40.7571019, "lon": -73.9150068 }, + { "lat": 40.7571753, "lon": -73.9149474 }, + { "lat": 40.7585405, "lon": -73.9138400 }, + { "lat": 40.7586056, "lon": -73.9137906 }, + { "lat": 40.7586683, "lon": -73.9137359 }, + { "lat": 40.7593874, "lon": -73.9131547 }, + { "lat": 40.7594453, "lon": -73.9130935 }, + { "lat": 40.7595095, "lon": -73.9130220 }, + { "lat": 40.7604311, "lon": -73.9122786 }, + { "lat": 40.7613540, "lon": -73.9115334 }, + { "lat": 40.7614166, "lon": -73.9114836 }, + { "lat": 40.7614669, "lon": -73.9114421 }, + { "lat": 40.7619497, "lon": -73.9110497 }, + { "lat": 40.7620219, "lon": -73.9109909 }, + { "lat": 40.7620925, "lon": -73.9109344 }, + { "lat": 40.7635449, "lon": -73.9097715 }, + { "lat": 40.7636117, "lon": -73.9097179 }, + { "lat": 40.7636827, "lon": -73.9096609 }, + { "lat": 40.7657779, "lon": -73.9079766 }, + { "lat": 40.7660323, "lon": -73.9077721 }, + { "lat": 40.7660932, "lon": -73.9077232 }, + { "lat": 40.7661575, "lon": -73.9076710 }, + { "lat": 40.7663968, "lon": -73.9074751 }, + { "lat": 40.7668258, "lon": -73.9071272 }, + { "lat": 40.7679698, "lon": -73.9061965 }, + { "lat": 40.7679940, "lon": -73.9061761 }, + { "lat": 40.7680856, "lon": -73.9060991 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "45th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706061, + "bounds": { + "minlat": 40.7418115, + "minlon": -73.9199194, + "maxlat": 40.7431175, + "maxlon": -73.9196503 + }, + "nodes": [ + 42885759, + 10743722502, + 5482367275, + 10743722602, + 42885757 + ], + "geometry": [ + { "lat": 40.7418115, "lon": -73.9199194 }, + { "lat": 40.7419075, "lon": -73.9198997 }, + { "lat": 40.7425227, "lon": -73.9197734 }, + { "lat": 40.7430279, "lon": -73.9196689 }, + { "lat": 40.7431175, "lon": -73.9196503 } + ], + "tags": { + "highway": "residential", + "name": "45th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706130, + "bounds": { + "minlat": 40.7764480, + "minlon": -73.9219968, + "maxlat": 40.7779447, + "maxlon": -73.9198530 + }, + "nodes": [ + 42812049, + 6459357082, + 7746651026, + 2753135606, + 7783802623, + 6459357080, + 42825994, + 6459357057, + 13701538261, + 2753135622, + 7803828560, + 6450658449, + 42887040 + ], + "geometry": [ + { "lat": 40.7779447, "lon": -73.9219968 }, + { "lat": 40.7779169, "lon": -73.9219567 }, + { "lat": 40.7777247, "lon": -73.9216803 }, + { "lat": 40.7777169, "lon": -73.9216691 }, + { "lat": 40.7772550, "lon": -73.9210077 }, + { "lat": 40.7772183, "lon": -73.9209551 }, + { "lat": 40.7771568, "lon": -73.9208671 }, + { "lat": 40.7770925, "lon": -73.9207749 }, + { "lat": 40.7768863, "lon": -73.9204785 }, + { "lat": 40.7766897, "lon": -73.9201977 }, + { "lat": 40.7765281, "lon": -73.9199674 }, + { "lat": 40.7764922, "lon": -73.9199161 }, + { "lat": 40.7764480, "lon": -73.9198530 } + ], + "tags": { + "highway": "residential", + "name": "23rd Terrace", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "23rd", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5706274, + "bounds": { + "minlat": 40.7337615, + "minlon": -73.9374154, + "maxlat": 40.7343471, + "maxlon": -73.9358700 + }, + "nodes": [ + 42888683, + 8097303855, + 9982697959, + 9982697960, + 42856261 + ], + "geometry": [ + { "lat": 40.7343471, "lon": -73.9358700 }, + { "lat": 40.7338453, "lon": -73.9372564 }, + { "lat": 40.7338255, "lon": -73.9373044 }, + { "lat": 40.7337938, "lon": -73.9373625 }, + { "lat": 40.7337615, "lon": -73.9374154 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "37th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706276, + "bounds": { + "minlat": 40.7378232, + "minlon": -73.9292376, + "maxlat": 40.7440839, + "maxlon": -73.9280018 + }, + "nodes": [ + 42888709, + 9192032639, + 10084797138, + 10084797139, + 9192032638, + 10774439606, + 10774439609, + 10160109213, + 5482216919, + 10774439615, + 10083107644, + 42880302, + 10083107643, + 10774439623, + 5482216914, + 5482216912, + 10081023592, + 42860601, + 10081023591, + 6166708802, + 10743722680, + 597294492 + ], + "geometry": [ + { "lat": 40.7378232, "lon": -73.9292249 }, + { "lat": 40.7378857, "lon": -73.9292349 }, + { "lat": 40.7379051, "lon": -73.9292376 }, + { "lat": 40.7379292, "lon": -73.9292372 }, + { "lat": 40.7379546, "lon": -73.9292345 }, + { "lat": 40.7384857, "lon": -73.9291264 }, + { "lat": 40.7389150, "lon": -73.9290391 }, + { "lat": 40.7390431, "lon": -73.9290130 }, + { "lat": 40.7391476, "lon": -73.9289917 }, + { "lat": 40.7392371, "lon": -73.9289740 }, + { "lat": 40.7403109, "lon": -73.9287618 }, + { "lat": 40.7403920, "lon": -73.9287453 }, + { "lat": 40.7404748, "lon": -73.9287288 }, + { "lat": 40.7410781, "lon": -73.9286079 }, + { "lat": 40.7410958, "lon": -73.9286044 }, + { "lat": 40.7412116, "lon": -73.9285816 }, + { "lat": 40.7421511, "lon": -73.9283964 }, + { "lat": 40.7422385, "lon": -73.9283792 }, + { "lat": 40.7423212, "lon": -73.9283620 }, + { "lat": 40.7439040, "lon": -73.9280349 }, + { "lat": 40.7439948, "lon": -73.9280181 }, + { "lat": 40.7440839, "lon": -73.9280018 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "37th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706278, + "bounds": { + "minlat": 40.7517829, + "minlon": -73.9264980, + "maxlat": 40.7520725, + "maxlon": -73.9264617 + }, + "nodes": [ + 42888672, + 6808505490, + 277032714 + ], + "geometry": [ + { "lat": 40.7520725, "lon": -73.9264731 }, + { "lat": 40.7519677, "lon": -73.9264617 }, + { "lat": 40.7517829, "lon": -73.9264980 } + ], + "tags": { + "highway": "residential", + "name": "Standard Lane", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Standard", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5706279, + "bounds": { + "minlat": 40.7710102, + "minlon": -73.9264090, + "maxlat": 40.7716398, + "maxlon": -73.9250598 + }, + "nodes": [ + 42826033, + 3570422542, + 7768245671, + 7768245648, + 42888723 + ], + "geometry": [ + { "lat": 40.7716398, "lon": -73.9264090 }, + { "lat": 40.7715901, "lon": -73.9263024 }, + { "lat": 40.7710660, "lon": -73.9251794 }, + { "lat": 40.7710482, "lon": -73.9251412 }, + { "lat": 40.7710102, "lon": -73.9250598 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "27th Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5706308, + "bounds": { + "minlat": 40.7638940, + "minlon": -73.9362560, + "maxlat": 40.7660881, + "maxlon": -73.9348902 + }, + "nodes": [ + 42881448, + 2504465127, + 7726844875, + 7984544307, + 2509345591, + 2504565421, + 8332419157, + 6452522188, + 42824088 + ], + "geometry": [ + { "lat": 40.7660881, "lon": -73.9348902 }, + { "lat": 40.7657885, "lon": -73.9350767 }, + { "lat": 40.7655660, "lon": -73.9352152 }, + { "lat": 40.7649950, "lon": -73.9355707 }, + { "lat": 40.7649914, "lon": -73.9355729 }, + { "lat": 40.7648093, "lon": -73.9356863 }, + { "lat": 40.7640071, "lon": -73.9361856 }, + { "lat": 40.7639827, "lon": -73.9362008 }, + { "lat": 40.7638940, "lon": -73.9362560 } + ], + "tags": { + "highway": "residential", + "name": "13th Street" + } +}, +{ + "type": "way", + "id": 5706309, + "bounds": { + "minlat": 40.7556490, + "minlon": -73.9420500, + "maxlat": 40.7605170, + "maxlon": -73.9383420 + }, + "nodes": [ + 42889756, + 6452688267, + 7788556043, + 7792360245, + 6452768059, + 42815776, + 6452768060, + 7792360278, + 8084752882, + 2302476366, + 7737907504, + 42876757, + 2302476365, + 7987870309, + 5487837579, + 13701213611, + 8084752892, + 10774449955, + 42889760 + ], + "geometry": [ + { "lat": 40.7605170, "lon": -73.9383420 }, + { "lat": 40.7604417, "lon": -73.9383889 }, + { "lat": 40.7604007, "lon": -73.9384144 }, + { "lat": 40.7592943, "lon": -73.9391037 }, + { "lat": 40.7592496, "lon": -73.9391315 }, + { "lat": 40.7591750, "lon": -73.9391780 }, + { "lat": 40.7591142, "lon": -73.9392163 }, + { "lat": 40.7590832, "lon": -73.9392358 }, + { "lat": 40.7583835, "lon": -73.9396759 }, + { "lat": 40.7579037, "lon": -73.9399778 }, + { "lat": 40.7578911, "lon": -73.9399837 }, + { "lat": 40.7578090, "lon": -73.9400220 }, + { "lat": 40.7577356, "lon": -73.9400583 }, + { "lat": 40.7573053, "lon": -73.9404704 }, + { "lat": 40.7568904, "lon": -73.9408677 }, + { "lat": 40.7562686, "lon": -73.9414599 }, + { "lat": 40.7557617, "lon": -73.9419427 }, + { "lat": 40.7557209, "lon": -73.9419816 }, + { "lat": 40.7556490, "lon": -73.9420500 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "13th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706310, + "bounds": { + "minlat": 40.7496824, + "minlon": -73.9476295, + "maxlat": 40.7510507, + "maxlon": -73.9464701 + }, + "nodes": [ + 42889767, + 10699487858, + 11118931569, + 2462420458, + 8062562631, + 8334173118, + 42818118 + ], + "geometry": [ + { "lat": 40.7496824, "lon": -73.9476295 }, + { "lat": 40.7497517, "lon": -73.9475700 }, + { "lat": 40.7497853, "lon": -73.9475411 }, + { "lat": 40.7505052, "lon": -73.9469226 }, + { "lat": 40.7509690, "lon": -73.9465379 }, + { "lat": 40.7509863, "lon": -73.9465236 }, + { "lat": 40.7510507, "lon": -73.9464701 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "name": "13th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706337, + "bounds": { + "minlat": 40.7498105, + "minlon": -73.9520131, + "maxlat": 40.7540114, + "maxlon": -73.9483949 + }, + "nodes": [ + 2472695924, + 42890426, + 11159805955, + 10864444176, + 8062562651, + 11159805956, + 42818104, + 11211160226, + 11211160225, + 42890429, + 11211160223, + 3618437575, + 7413549693, + 11118931567, + 11524814892, + 42890434, + 11211160221, + 2476134122, + 8158221221, + 10774449952, + 42890438 + ], + "geometry": [ + { "lat": 40.7540114, "lon": -73.9483949 }, + { "lat": 40.7539352, "lon": -73.9484560 }, + { "lat": 40.7538739, "lon": -73.9485084 }, + { "lat": 40.7534878, "lon": -73.9488387 }, + { "lat": 40.7527213, "lon": -73.9494992 }, + { "lat": 40.7526871, "lon": -73.9495288 }, + { "lat": 40.7526090, "lon": -73.9495960 }, + { "lat": 40.7525405, "lon": -73.9496550 }, + { "lat": 40.7519936, "lon": -73.9501277 }, + { "lat": 40.7519416, "lon": -73.9501716 }, + { "lat": 40.7518960, "lon": -73.9502091 }, + { "lat": 40.7511593, "lon": -73.9508473 }, + { "lat": 40.7511501, "lon": -73.9508553 }, + { "lat": 40.7505428, "lon": -73.9513800 }, + { "lat": 40.7504932, "lon": -73.9514277 }, + { "lat": 40.7504378, "lon": -73.9514708 }, + { "lat": 40.7503818, "lon": -73.9515192 }, + { "lat": 40.7501034, "lon": -73.9517594 }, + { "lat": 40.7499056, "lon": -73.9519302 }, + { "lat": 40.7498647, "lon": -73.9519662 }, + { "lat": 40.7498105, "lon": -73.9520131 } + ], + "tags": { + "highway": "residential", + "name": "9th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5706339, + "bounds": { + "minlat": 40.7573300, + "minlon": -73.9450670, + "maxlat": 40.7669013, + "maxlon": -73.9383723 + }, + "nodes": [ + 42826802, + 42807546, + 6450613999, + 8158221258, + 6450613998, + 42824071, + 6452525943, + 7710779648, + 7746871140, + 8158221247, + 6452542345, + 42890447, + 6452542346, + 3569402518, + 42890450, + 3569402515, + 8084752908, + 6452777349, + 42815750, + 6452777350, + 8084752874, + 8334076730, + 42876743, + 2302476364, + 12506323224, + 8084752885, + 8334074876, + 42890454 + ], + "geometry": [ + { "lat": 40.7669013, "lon": -73.9383723 }, + { "lat": 40.7667732, "lon": -73.9384530 }, + { "lat": 40.7667136, "lon": -73.9384912 }, + { "lat": 40.7653375, "lon": -73.9393433 }, + { "lat": 40.7652965, "lon": -73.9393687 }, + { "lat": 40.7652150, "lon": -73.9394190 }, + { "lat": 40.7651462, "lon": -73.9394619 }, + { "lat": 40.7646547, "lon": -73.9397680 }, + { "lat": 40.7643010, "lon": -73.9399882 }, + { "lat": 40.7635436, "lon": -73.9404598 }, + { "lat": 40.7635061, "lon": -73.9404832 }, + { "lat": 40.7634230, "lon": -73.9405350 }, + { "lat": 40.7633491, "lon": -73.9405809 }, + { "lat": 40.7617713, "lon": -73.9415620 }, + { "lat": 40.7616908, "lon": -73.9416136 }, + { "lat": 40.7616115, "lon": -73.9416613 }, + { "lat": 40.7604624, "lon": -73.9423748 }, + { "lat": 40.7604260, "lon": -73.9423974 }, + { "lat": 40.7603510, "lon": -73.9424440 }, + { "lat": 40.7602843, "lon": -73.9424856 }, + { "lat": 40.7590946, "lon": -73.9432271 }, + { "lat": 40.7590651, "lon": -73.9432454 }, + { "lat": 40.7589840, "lon": -73.9432960 }, + { "lat": 40.7589111, "lon": -73.9433380 }, + { "lat": 40.7585002, "lon": -73.9437832 }, + { "lat": 40.7574357, "lon": -73.9449510 }, + { "lat": 40.7573967, "lon": -73.9449938 }, + { "lat": 40.7573300, "lon": -73.9450670 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "9th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "25'4\"" + } +}, +{ + "type": "way", + "id": 5706340, + "bounds": { + "minlat": 40.7739765, + "minlon": -73.9310519, + "maxlat": 40.7761124, + "maxlon": -73.9299349 + }, + "nodes": [ + 42890462, + 7700895905, + 8375170656, + 42849851, + 7700895908, + 5487886276, + 7756437636, + 6452969514, + 42811439 + ], + "geometry": [ + { "lat": 40.7761124, "lon": -73.9299349 }, + { "lat": 40.7757161, "lon": -73.9301373 }, + { "lat": 40.7757017, "lon": -73.9301446 }, + { "lat": 40.7754680, "lon": -73.9302640 }, + { "lat": 40.7754328, "lon": -73.9302826 }, + { "lat": 40.7747415, "lon": -73.9306478 }, + { "lat": 40.7740729, "lon": -73.9310010 }, + { "lat": 40.7740441, "lon": -73.9310162 }, + { "lat": 40.7739765, "lon": -73.9310519 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "name": "9th Street" + } +}, +{ + "type": "way", + "id": 5706383, + "bounds": { + "minlat": 40.7427592, + "minlon": -73.9421183, + "maxlat": 40.7437220, + "maxlon": -73.9414536 + }, + "nodes": [ + 42890982, + 8991509409, + 8341665002, + 10081023553 + ], + "geometry": [ + { "lat": 40.7437220, "lon": -73.9421183 }, + { "lat": 40.7436561, "lon": -73.9420711 }, + { "lat": 40.7436040, "lon": -73.9420352 }, + { "lat": 40.7427592, "lon": -73.9414536 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Austell Place", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 5706557, + "bounds": { + "minlat": 40.7485900, + "minlon": -73.9099067, + "maxlat": 40.7490860, + "maxlon": -73.9080160 + }, + "nodes": [ + 42893076, + 7671862986, + 10762234065, + 11643678922, + 42893077, + 11643678923, + 11643678932, + 42893078 + ], + "geometry": [ + { "lat": 40.7490860, "lon": -73.9099067 }, + { "lat": 40.7490608, "lon": -73.9098084 }, + { "lat": 40.7490493, "lon": -73.9097636 }, + { "lat": 40.7488491, "lon": -73.9089834 }, + { "lat": 40.7488280, "lon": -73.9089010 }, + { "lat": 40.7488079, "lon": -73.9088263 }, + { "lat": 40.7486119, "lon": -73.9080973 }, + { "lat": 40.7485900, "lon": -73.9080160 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "39th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "39th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 5706587, + "bounds": { + "minlat": 40.7529271, + "minlon": -73.9489006, + "maxlat": 40.7544751, + "maxlon": -73.9453403 + }, + "nodes": [ + 593216034, + 3785649257, + 2089938138, + 371034141 + ], + "geometry": [ + { "lat": 40.7529271, "lon": -73.9453403 }, + { "lat": 40.7530033, "lon": -73.9455077 }, + { "lat": 40.7530765, "lon": -73.9456761 }, + { "lat": 40.7544751, "lon": -73.9489006 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "moped": "no", + "name": "Queensboro Bridge (Upper Level)", + "note": "Upper level", + "oneway": "yes", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 5706588, + "bounds": { + "minlat": 40.7489275, + "minlon": -73.9379097, + "maxlat": 40.7496075, + "maxlon": -73.9373948 + }, + "nodes": [ + 42844306, + 8315072925, + 3785669500, + 6813394089, + 592643538 + ], + "geometry": [ + { "lat": 40.7489275, "lon": -73.9373948 }, + { "lat": 40.7490370, "lon": -73.9374560 }, + { "lat": 40.7491040, "lon": -73.9374925 }, + { "lat": 40.7494757, "lon": -73.9377847 }, + { "lat": 40.7496075, "lon": -73.9379097 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "name": "Queensboro Plaza", + "oneway": "yes", + "ref": "NY 25", + "sidewalk:both": "no" + } +}, +{ + "type": "way", + "id": 5706675, + "bounds": { + "minlat": 40.7440950, + "minlon": -73.9068173, + "maxlat": 40.7446600, + "maxlon": -73.9044050 + }, + "nodes": [ + 42894995, + 11917948360, + 8089066806, + 3774913724, + 42827395, + 8089088631, + 9986780737, + 42895000 + ], + "geometry": [ + { "lat": 40.7446600, "lon": -73.9068173 }, + { "lat": 40.7446438, "lon": -73.9067403 }, + { "lat": 40.7446285, "lon": -73.9066754 }, + { "lat": 40.7445397, "lon": -73.9062973 }, + { "lat": 40.7444583, "lon": -73.9059509 }, + { "lat": 40.7441339, "lon": -73.9045707 }, + { "lat": 40.7441162, "lon": -73.9044944 }, + { "lat": 40.7440950, "lon": -73.9044050 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "41st Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706692, + "bounds": { + "minlat": 40.7494100, + "minlon": -73.9361305, + "maxlat": 40.7497140, + "maxlon": -73.9353883 + }, + "nodes": [ + 42895208, + 2963821775, + 7762265855 + ], + "geometry": [ + { "lat": 40.7494100, "lon": -73.9353883 }, + { "lat": 40.7496840, "lon": -73.9359784 }, + { "lat": 40.7497140, "lon": -73.9361305 } + ], + "tags": { + "highway": "residential", + "name": "41st Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706708, + "bounds": { + "minlat": 40.7560402, + "minlon": -73.9472123, + "maxlat": 40.7565182, + "maxlon": -73.9464171 + }, + "nodes": [ + 2629162214, + 2629162210, + 5538983360, + 6452721222, + 42826825 + ], + "geometry": [ + { "lat": 40.7560402, "lon": -73.9464171 }, + { "lat": 40.7561809, "lon": -73.9466209 }, + { "lat": 40.7564445, "lon": -73.9470831 }, + { "lat": 40.7564680, "lon": -73.9471243 }, + { "lat": 40.7565182, "lon": -73.9472123 } + ], + "tags": { + "highway": "residential", + "name": "41st Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5706762, + "bounds": { + "minlat": 40.7473943, + "minlon": -73.9389193, + "maxlat": 40.7483715, + "maxlon": -73.9383259 + }, + "nodes": [ + 42844301, + 11211159819, + 42895790 + ], + "geometry": [ + { "lat": 40.7483715, "lon": -73.9389193 }, + { "lat": 40.7482835, "lon": -73.9388653 }, + { "lat": 40.7473943, "lon": -73.9383259 } + ], + "tags": { + "highway": "residential", + "name": "Orchard Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706849, + "bounds": { + "minlat": 40.7521839, + "minlon": -73.9069419, + "maxlat": 40.7523240, + "maxlon": -73.9064162 + }, + "nodes": [ + 42896701, + 11643653192, + 42896704 + ], + "geometry": [ + { "lat": 40.7523240, "lon": -73.9069419 }, + { "lat": 40.7522019, "lon": -73.9064837 }, + { "lat": 40.7521839, "lon": -73.9064162 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "highway": "residential", + "name": "Wells Place", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Wells", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5706874, + "bounds": { + "minlat": 40.7758963, + "minlon": -73.9237353, + "maxlat": 40.7765458, + "maxlon": -73.9233157 + }, + "nodes": [ + 42812059, + 3778337371, + 3778337397 + ], + "geometry": [ + { "lat": 40.7765458, "lon": -73.9237353 }, + { "lat": 40.7765136, "lon": -73.9236933 }, + { "lat": 40.7758963, "lon": -73.9233157 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Hoyt Avenue North", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706907, + "bounds": { + "minlat": 40.7416958, + "minlon": -73.9429806, + "maxlat": 40.7433777, + "maxlon": -73.9418218 + }, + "nodes": [ + 42897737, + 8793041761, + 10081023539, + 2708237390, + 8341665001, + 42875525, + 8316786979, + 10081023554, + 42872054 + ], + "geometry": [ + { "lat": 40.7433777, "lon": -73.9429806 }, + { "lat": 40.7433195, "lon": -73.9429413 }, + { "lat": 40.7432863, "lon": -73.9429180 }, + { "lat": 40.7432752, "lon": -73.9429102 }, + { "lat": 40.7432605, "lon": -73.9429005 }, + { "lat": 40.7430613, "lon": -73.9427639 }, + { "lat": 40.7418115, "lon": -73.9419034 }, + { "lat": 40.7417692, "lon": -73.9418736 }, + { "lat": 40.7416958, "lon": -73.9418218 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Pearson Place", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706929, + "bounds": { + "minlat": 40.7662731, + "minlon": -73.9358222, + "maxlat": 40.7686046, + "maxlon": -73.9312682 + }, + "nodes": [ + 42826933, + 2459401756, + 6456416473, + 42898031, + 6456416478, + 2509332381, + 2509332384, + 2422116149, + 6456419947, + 42843345, + 2422116148, + 6456419944, + 5487911880 + ], + "geometry": [ + { "lat": 40.7686046, "lon": -73.9358222 }, + { "lat": 40.7685837, "lon": -73.9357100 }, + { "lat": 40.7678935, "lon": -73.9343072 }, + { "lat": 40.7678550, "lon": -73.9342290 }, + { "lat": 40.7678189, "lon": -73.9341561 }, + { "lat": 40.7675039, "lon": -73.9335203 }, + { "lat": 40.7674931, "lon": -73.9334985 }, + { "lat": 40.7672490, "lon": -73.9330058 }, + { "lat": 40.7672400, "lon": -73.9329925 }, + { "lat": 40.7671820, "lon": -73.9329043 }, + { "lat": 40.7671360, "lon": -73.9328346 }, + { "lat": 40.7671242, "lon": -73.9328132 }, + { "lat": 40.7662731, "lon": -73.9312682 } + ], + "tags": { + "highway": "residential", + "name": "31st Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706946, + "bounds": { + "minlat": 40.7725587, + "minlon": -73.9239852, + "maxlat": 40.7746243, + "maxlon": -73.9207723 + }, + "nodes": [ + 42826016, + 2447553714, + 2447553702, + 6452989052, + 42898265, + 6452989054, + 2447553701, + 42861243, + 5042143138, + 42808170, + 5042143139, + 3778245571, + 42898273 + ], + "geometry": [ + { "lat": 40.7746243, "lon": -73.9239852 }, + { "lat": 40.7745612, "lon": -73.9238663 }, + { "lat": 40.7740381, "lon": -73.9229271 }, + { "lat": 40.7740087, "lon": -73.9228755 }, + { "lat": 40.7739655, "lon": -73.9227995 }, + { "lat": 40.7739290, "lon": -73.9227338 }, + { "lat": 40.7739142, "lon": -73.9227072 }, + { "lat": 40.7735424, "lon": -73.9221600 }, + { "lat": 40.7730965, "lon": -73.9215480 }, + { "lat": 40.7730491, "lon": -73.9214828 }, + { "lat": 40.7730014, "lon": -73.9214119 }, + { "lat": 40.7727049, "lon": -73.9209711 }, + { "lat": 40.7725587, "lon": -73.9207723 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hoyt Avenue South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5706981, + "bounds": { + "minlat": 40.7231993, + "minlon": -73.9079590, + "maxlat": 40.7246390, + "maxlon": -73.9071764 + }, + "nodes": [ + 42876139, + 11055685657, + 11055685653, + 11055685659, + 42898864, + 11055685658, + 11055685654, + 11055685675, + 11055685676, + 42854226 + ], + "geometry": [ + { "lat": 40.7246390, "lon": -73.9079590 }, + { "lat": 40.7245874, "lon": -73.9079299 }, + { "lat": 40.7240340, "lon": -73.9076300 }, + { "lat": 40.7239889, "lon": -73.9076065 }, + { "lat": 40.7239210, "lon": -73.9075660 }, + { "lat": 40.7238758, "lon": -73.9075425 }, + { "lat": 40.7238284, "lon": -73.9075169 }, + { "lat": 40.7232922, "lon": -73.9072266 }, + { "lat": 40.7232604, "lon": -73.9072094 }, + { "lat": 40.7231993, "lon": -73.9071764 } + ], + "tags": { + "highway": "residential", + "name": "59th Place" + } +}, +{ + "type": "way", + "id": 5706988, + "bounds": { + "minlat": 40.7155370, + "minlon": -73.9074386, + "maxlat": 40.7162763, + "maxlon": -73.9072440 + }, + "nodes": [ + 42806444, + 13048049530, + 13048049525, + 42858148 + ], + "geometry": [ + { "lat": 40.7155370, "lon": -73.9072440 }, + { "lat": 40.7156874, "lon": -73.9072835 }, + { "lat": 40.7162101, "lon": -73.9074215 }, + { "lat": 40.7162763, "lon": -73.9074386 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "59th Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "59th", + "tiger:name_type": "Pl", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 5707094, + "bounds": { + "minlat": 40.7130121, + "minlon": -73.9119834, + "maxlat": 40.7157269, + "maxlon": -73.9079750 + }, + "nodes": [ + 42843608, + 9747646460, + 42900212, + 9747646468, + 42900209, + 9747646467, + 11002490950, + 42881219, + 11002490951, + 11002490958, + 42847277, + 11002490959, + 9696553950, + 9759984091, + 597676734 + ], + "geometry": [ + { "lat": 40.7130121, "lon": -73.9080111 }, + { "lat": 40.7130854, "lon": -73.9080045 }, + { "lat": 40.7134150, "lon": -73.9079750 }, + { "lat": 40.7138601, "lon": -73.9087447 }, + { "lat": 40.7138924, "lon": -73.9087981 }, + { "lat": 40.7139352, "lon": -73.9088720 }, + { "lat": 40.7143327, "lon": -73.9095614 }, + { "lat": 40.7143630, "lon": -73.9096140 }, + { "lat": 40.7144055, "lon": -73.9096879 }, + { "lat": 40.7151607, "lon": -73.9110028 }, + { "lat": 40.7151890, "lon": -73.9110520 }, + { "lat": 40.7152284, "lon": -73.9111199 }, + { "lat": 40.7156671, "lon": -73.9118795 }, + { "lat": 40.7157007, "lon": -73.9119373 }, + { "lat": 40.7157269, "lon": -73.9119834 } + ], + "tags": { + "highway": "residential", + "name": "55th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5707097, + "bounds": { + "minlat": 40.7161816, + "minlon": -73.9142650, + "maxlat": 40.7188110, + "maxlon": -73.9128426 + }, + "nodes": [ + 42871293, + 9759984020, + 597676401, + 8919548809 + ], + "geometry": [ + { "lat": 40.7188110, "lon": -73.9142650 }, + { "lat": 40.7187235, "lon": -73.9142176 }, + { "lat": 40.7163244, "lon": -73.9129176 }, + { "lat": 40.7161816, "lon": -73.9128426 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "55th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "55th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_left_1": "11378", + "tiger:zip_right": "11378", + "tiger:zip_right_1": "11378" + } +}, +{ + "type": "way", + "id": 5707098, + "bounds": { + "minlat": 40.7467750, + "minlon": -73.9088470, + "maxlat": 40.7485900, + "maxlon": -73.9080160 + }, + "nodes": [ + 42896900, + 10762234099, + 5867077871, + 7667087001, + 42893078 + ], + "geometry": [ + { "lat": 40.7467750, "lon": -73.9088470 }, + { "lat": 40.7468454, "lon": -73.9088148 }, + { "lat": 40.7484816, "lon": -73.9080656 }, + { "lat": 40.7485305, "lon": -73.9080429 }, + { "lat": 40.7485900, "lon": -73.9080160 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "55th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707102, + "bounds": { + "minlat": 40.7717752, + "minlon": -73.9259342, + "maxlat": 40.7722511, + "maxlon": -73.9253360 + }, + "nodes": [ + 2063038040, + 7733683725, + 9947247606, + 9947247612, + 9947247610, + 2297358949 + ], + "geometry": [ + { "lat": 40.7722511, "lon": -73.9259342 }, + { "lat": 40.7721531, "lon": -73.9258417 }, + { "lat": 40.7720523, "lon": -73.9257068 }, + { "lat": 40.7720225, "lon": -73.9256669 }, + { "lat": 40.7718195, "lon": -73.9253952 }, + { "lat": 40.7717752, "lon": -73.9253360 } + ], + "tags": { + "highway": "pedestrian", + "name": "Newtown Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707108, + "bounds": { + "minlat": 40.7466807, + "minlon": -73.9524800, + "maxlat": 40.7475750, + "maxlon": -73.9478404 + }, + "nodes": [ + 42826860, + 9982728614, + 9982728613, + 11157958407, + 42866924, + 9982728612, + 6597261577, + 8996515264, + 42825913 + ], + "geometry": [ + { "lat": 40.7475750, "lon": -73.9524800 }, + { "lat": 40.7475560, "lon": -73.9523789 }, + { "lat": 40.7471429, "lon": -73.9502357 }, + { "lat": 40.7471228, "lon": -73.9501204 }, + { "lat": 40.7471086, "lon": -73.9500382 }, + { "lat": 40.7470828, "lon": -73.9499235 }, + { "lat": 40.7469121, "lon": -73.9490417 }, + { "lat": 40.7467036, "lon": -73.9479540 }, + { "lat": 40.7466807, "lon": -73.9478404 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "45th Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707114, + "bounds": { + "minlat": 40.7230933, + "minlon": -73.9095510, + "maxlat": 40.7240570, + "maxlon": -73.9093690 + }, + "nodes": [ + 42900460, + 11055685689, + 11055685688, + 7963468547, + 11055680624, + 42854220 + ], + "geometry": [ + { "lat": 40.7240570, "lon": -73.9095510 }, + { "lat": 40.7240077, "lon": -73.9095417 }, + { "lat": 40.7239751, "lon": -73.9095355 }, + { "lat": 40.7231678, "lon": -73.9093831 }, + { "lat": 40.7231424, "lon": -73.9093786 }, + { "lat": 40.7230933, "lon": -73.9093690 } + ], + "tags": { + "highway": "residential", + "name": "Melvina Place", + "name_1": "Valentine Place" + } +}, +{ + "type": "way", + "id": 5707131, + "bounds": { + "minlat": 40.7491687, + "minlon": -73.9206273, + "maxlat": 40.7517322, + "maxlon": -73.9199720 + }, + "nodes": [ + 42800656, + 8276812927, + 42900587, + 42900592, + 42900595, + 42900599, + 42900601, + 42900603, + 42900607, + 5888828876, + 42816211, + 42900611, + 42900615, + 5444865942, + 8593852956, + 42815084 + ], + "geometry": [ + { "lat": 40.7517322, "lon": -73.9206273 }, + { "lat": 40.7516993, "lon": -73.9205764 }, + { "lat": 40.7514330, "lon": -73.9201640 }, + { "lat": 40.7513680, "lon": -73.9200870 }, + { "lat": 40.7513200, "lon": -73.9200460 }, + { "lat": 40.7512370, "lon": -73.9199990 }, + { "lat": 40.7511730, "lon": -73.9199790 }, + { "lat": 40.7510920, "lon": -73.9199720 }, + { "lat": 40.7510450, "lon": -73.9199770 }, + { "lat": 40.7509753, "lon": -73.9199900 }, + { "lat": 40.7502440, "lon": -73.9201270 }, + { "lat": 40.7499300, "lon": -73.9201900 }, + { "lat": 40.7495080, "lon": -73.9202730 }, + { "lat": 40.7494471, "lon": -73.9202850 }, + { "lat": 40.7492736, "lon": -73.9203193 }, + { "lat": 40.7491687, "lon": -73.9203410 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxheight": "12'6\"", + "name": "43rd Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "43rd", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11104", + "tiger:zip_right": "11104" + } +}, +{ + "type": "way", + "id": 5707137, + "bounds": { + "minlat": 40.7688848, + "minlon": -73.9069064, + "maxlat": 40.7695679, + "maxlon": -73.9060698 + }, + "nodes": [ + 42865836, + 6453087477, + 10917729777, + 10917729774, + 9776150647, + 42877861 + ], + "geometry": [ + { "lat": 40.7688848, "lon": -73.9069064 }, + { "lat": 40.7689641, "lon": -73.9067990 }, + { "lat": 40.7690688, "lon": -73.9066745 }, + { "lat": 40.7692196, "lon": -73.9064919 }, + { "lat": 40.7695119, "lon": -73.9061377 }, + { "lat": 40.7695679, "lon": -73.9060698 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "43rd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707192, + "bounds": { + "minlat": 40.7388316, + "minlon": -73.9405692, + "maxlat": 40.7391261, + "maxlon": -73.9398575 + }, + "nodes": [ + 597269957, + 9982287318, + 7824544629, + 277046657 + ], + "geometry": [ + { "lat": 40.7388316, "lon": -73.9398575 }, + { "lat": 40.7389643, "lon": -73.9401894 }, + { "lat": 40.7390640, "lon": -73.9404232 }, + { "lat": 40.7391261, "lon": -73.9405692 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707196, + "bounds": { + "minlat": 40.7276947, + "minlon": -73.9106058, + "maxlat": 40.7292095, + "maxlon": -73.9082221 + }, + "nodes": [ + 5481965997, + 7950054620, + 9196051107, + 6859748702, + 6859748711, + 9196051105, + 9196051106, + 8872404067 + ], + "geometry": [ + { "lat": 40.7292095, "lon": -73.9106058 }, + { "lat": 40.7287115, "lon": -73.9098641 }, + { "lat": 40.7284679, "lon": -73.9094960 }, + { "lat": 40.7283284, "lon": -73.9092798 }, + { "lat": 40.7281920, "lon": -73.9090576 }, + { "lat": 40.7280534, "lon": -73.9088291 }, + { "lat": 40.7279140, "lon": -73.9085960 }, + { "lat": 40.7276947, "lon": -73.9082221 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5707200, + "bounds": { + "minlat": 40.7421724, + "minlon": -73.9589108, + "maxlat": 40.7421891, + "maxlon": -73.9588337 + }, + "nodes": [ + 42852816, + 5374002082 + ], + "geometry": [ + { "lat": 40.7421891, "lon": -73.9589108 }, + { "lat": 40.7421724, "lon": -73.9588337 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "residential", + "lanes": "3", + "lcn": "yes", + "name": "Borden Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 5707287, + "bounds": { + "minlat": 40.7242570, + "minlon": -73.9148710, + "maxlat": 40.7244290, + "maxlon": -73.9125050 + }, + "nodes": [ + 42855386, + 11406248212, + 11406248210, + 11406248231, + 42902805 + ], + "geometry": [ + { "lat": 40.7244290, "lon": -73.9148710 }, + { "lat": 40.7244219, "lon": -73.9147737 }, + { "lat": 40.7242699, "lon": -73.9126818 }, + { "lat": 40.7242656, "lon": -73.9126234 }, + { "lat": 40.7242570, "lon": -73.9125050 } + ], + "tags": { + "hgv": "local", + "highway": "unclassified", + "name": "56th Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707300, + "bounds": { + "minlat": 40.7238542, + "minlon": -73.9149687, + "maxlat": 40.7243211, + "maxlon": -73.9145285 + }, + "nodes": [ + 42876105, + 5849795396, + 42855844 + ], + "geometry": [ + { "lat": 40.7243211, "lon": -73.9149687 }, + { "lat": 40.7242607, "lon": -73.9149100 }, + { "lat": 40.7238542, "lon": -73.9145285 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Rust Street" + } +}, +{ + "type": "way", + "id": 5707339, + "bounds": { + "minlat": 40.7368893, + "minlon": -73.9361574, + "maxlat": 40.7376836, + "maxlon": -73.9356502 + }, + "nodes": [ + 597269956, + 9981925185, + 42849621, + 9982697934, + 42866377 + ], + "geometry": [ + { "lat": 40.7376836, "lon": -73.9361574 }, + { "lat": 40.7376052, "lon": -73.9361085 }, + { "lat": 40.7374860, "lon": -73.9360330 }, + { "lat": 40.7369978, "lon": -73.9357155 }, + { "lat": 40.7368893, "lon": -73.9356502 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bradley Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 5707389, + "bounds": { + "minlat": 40.7448139, + "minlon": -73.9174103, + "maxlat": 40.7464584, + "maxlon": -73.9170838 + }, + "nodes": [ + 42817802, + 10074123197, + 10074123169, + 42904454 + ], + "geometry": [ + { "lat": 40.7448139, "lon": -73.9174103 }, + { "lat": 40.7448786, "lon": -73.9173976 }, + { "lat": 40.7463946, "lon": -73.9170959 }, + { "lat": 40.7464584, "lon": -73.9170838 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "47th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707391, + "bounds": { + "minlat": 40.7167950, + "minlon": -73.9231590, + "maxlat": 40.7201530, + "maxlon": -73.9215380 + }, + "nodes": [ + 5176490244, + 13701142806, + 5482677616, + 5482678223, + 9353053461, + 5176490242 + ], + "geometry": [ + { "lat": 40.7201530, "lon": -73.9231590 }, + { "lat": 40.7196318, "lon": -73.9229074 }, + { "lat": 40.7192414, "lon": -73.9227189 }, + { "lat": 40.7188762, "lon": -73.9225426 }, + { "lat": 40.7169284, "lon": -73.9216024 }, + { "lat": 40.7167950, "lon": -73.9215380 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "47th Street" + } +}, +{ + "type": "way", + "id": 5707392, + "bounds": { + "minlat": 40.7288206, + "minlon": -73.9312438, + "maxlat": 40.7291088, + "maxlon": -73.9311134 + }, + "nodes": [ + 42825195, + 11211159643, + 2134456032, + 42839754, + 11740134691, + 597663738 + ], + "geometry": [ + { "lat": 40.7291088, "lon": -73.9311134 }, + { "lat": 40.7290146, "lon": -73.9311658 }, + { "lat": 40.7289899, "lon": -73.9311785 }, + { "lat": 40.7289528, "lon": -73.9311928 }, + { "lat": 40.7289078, "lon": -73.9312081 }, + { "lat": 40.7288206, "lon": -73.9312438 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 5707396, + "bounds": { + "minlat": 40.7506640, + "minlon": -73.9095710, + "maxlat": 40.7510233, + "maxlon": -73.9080740 + }, + "nodes": [ + 42904573, + 11643653050, + 3569893198, + 3569893199, + 42896867 + ], + "geometry": [ + { "lat": 40.7506640, "lon": -73.9080740 }, + { "lat": 40.7506832, "lon": -73.9081470 }, + { "lat": 40.7509778, "lon": -73.9092639 }, + { "lat": 40.7510037, "lon": -73.9093908 }, + { "lat": 40.7510233, "lon": -73.9095710 } + ], + "tags": { + "highway": "residential", + "name": "37th Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707397, + "bounds": { + "minlat": 40.7439615, + "minlon": -73.9242332, + "maxlat": 40.7472100, + "maxlon": -73.9235823 + }, + "nodes": [ + 42904586, + 10069673340, + 10069673346, + 42817776, + 8248311062, + 5482369527, + 5482369531, + 4960588165, + 2844853162 + ], + "geometry": [ + { "lat": 40.7472100, "lon": -73.9235823 }, + { "lat": 40.7471382, "lon": -73.9235968 }, + { "lat": 40.7456395, "lon": -73.9239020 }, + { "lat": 40.7455658, "lon": -73.9239173 }, + { "lat": 40.7454707, "lon": -73.9239358 }, + { "lat": 40.7448275, "lon": -73.9240586 }, + { "lat": 40.7445456, "lon": -73.9241146 }, + { "lat": 40.7440693, "lon": -73.9242092 }, + { "lat": 40.7439615, "lon": -73.9242332 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "40th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707441, + "bounds": { + "minlat": 40.7718676, + "minlon": -73.9148014, + "maxlat": 40.7739486, + "maxlon": -73.9122791 + }, + "nodes": [ + 42818215, + 9776116431, + 7784017485, + 9776116438, + 42905182, + 9776116442, + 5866705996, + 7813969131, + 42877842 + ], + "geometry": [ + { "lat": 40.7718676, "lon": -73.9148014 }, + { "lat": 40.7719310, "lon": -73.9147242 }, + { "lat": 40.7729554, "lon": -73.9134753 }, + { "lat": 40.7729776, "lon": -73.9134510 }, + { "lat": 40.7730320, "lon": -73.9133820 }, + { "lat": 40.7730921, "lon": -73.9133097 }, + { "lat": 40.7738627, "lon": -73.9123825 }, + { "lat": 40.7738922, "lon": -73.9123470 }, + { "lat": 40.7739486, "lon": -73.9122791 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "32nd Street", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707442, + "bounds": { + "minlat": 40.7775604, + "minlon": -73.9078918, + "maxlat": 40.7787680, + "maxlon": -73.9064120 + }, + "nodes": [ + 2447703182, + 9776116473, + 7776768907, + 10763811189, + 42905188 + ], + "geometry": [ + { "lat": 40.7775604, "lon": -73.9078918 }, + { "lat": 40.7776153, "lon": -73.9078245 }, + { "lat": 40.7786843, "lon": -73.9065146 }, + { "lat": 40.7787227, "lon": -73.9064639 }, + { "lat": 40.7787680, "lon": -73.9064120 } + ], + "tags": { + "highway": "residential", + "name": "32nd Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "32nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5707444, + "bounds": { + "minlat": 40.7665256, + "minlon": -73.9206020, + "maxlat": 40.7668899, + "maxlon": -73.9203016 + }, + "nodes": [ + 42874056, + 6406731683, + 3570193171, + 6406731551, + 42900323 + ], + "geometry": [ + { "lat": 40.7665256, "lon": -73.9206020 }, + { "lat": 40.7665974, "lon": -73.9205428 }, + { "lat": 40.7667801, "lon": -73.9203920 }, + { "lat": 40.7668175, "lon": -73.9203606 }, + { "lat": 40.7668899, "lon": -73.9203016 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "32nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707445, + "bounds": { + "minlat": 40.7680365, + "minlon": -73.9191234, + "maxlat": 40.7698518, + "maxlon": -73.9176505 + }, + "nodes": [ + 42905218, + 6406731453, + 8549559009, + 8549559015, + 6406731584, + 42832976 + ], + "geometry": [ + { "lat": 40.7698518, "lon": -73.9176505 }, + { "lat": 40.7697960, "lon": -73.9176930 }, + { "lat": 40.7689286, "lon": -73.9183978 }, + { "lat": 40.7681413, "lon": -73.9190320 }, + { "lat": 40.7681030, "lon": -73.9190684 }, + { "lat": 40.7680365, "lon": -73.9191234 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "name": "32nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707536, + "bounds": { + "minlat": 40.7748750, + "minlon": -73.9227807, + "maxlat": 40.7755873, + "maxlon": -73.9217720 + }, + "nodes": [ + 42826005, + 7784017528, + 7722330251, + 7784004975, + 42906387 + ], + "geometry": [ + { "lat": 40.7755873, "lon": -73.9227807 }, + { "lat": 40.7755254, "lon": -73.9226928 }, + { "lat": 40.7749482, "lon": -73.9218757 }, + { "lat": 40.7749244, "lon": -73.9218413 }, + { "lat": 40.7748750, "lon": -73.9217720 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "24th Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707538, + "bounds": { + "minlat": 40.7568750, + "minlon": -73.9458140, + "maxlat": 40.7577990, + "maxlon": -73.9443500 + }, + "nodes": [ + 42826823, + 6452721228, + 5538983362, + 5538983363, + 8334074862, + 42890454, + 8334074894, + 13140347657, + 8219332987, + 42906413 + ], + "geometry": [ + { "lat": 40.7577990, "lon": -73.9458140 }, + { "lat": 40.7577434, "lon": -73.9457254 }, + { "lat": 40.7577028, "lon": -73.9456607 }, + { "lat": 40.7576074, "lon": -73.9455088 }, + { "lat": 40.7573763, "lon": -73.9451407 }, + { "lat": 40.7573300, "lon": -73.9450670 }, + { "lat": 40.7572931, "lon": -73.9450088 }, + { "lat": 40.7569475, "lon": -73.9444642 }, + { "lat": 40.7569171, "lon": -73.9444162 }, + { "lat": 40.7568750, "lon": -73.9443500 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "40th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707555, + "bounds": { + "minlat": 40.7738283, + "minlon": -73.9278476, + "maxlat": 40.7744012, + "maxlon": -73.9275687 + }, + "nodes": [ + 42906594, + 7722330241, + 3778337398, + 3778337370 + ], + "geometry": [ + { "lat": 40.7738283, "lon": -73.9278476 }, + { "lat": 40.7743001, "lon": -73.9276035 }, + { "lat": 40.7743492, "lon": -73.9275784 }, + { "lat": 40.7744012, "lon": -73.9275687 } + ], + "tags": { + "highway": "residential", + "name": "14th Place" + } +}, +{ + "type": "way", + "id": 5707608, + "bounds": { + "minlat": 40.7073819, + "minlon": -73.9218981, + "maxlat": 40.7094021, + "maxlon": -73.9184815 + }, + "nodes": [ + 3325564426, + 9744131300, + 597700282, + 10699568265, + 9744131324, + 42907440, + 9744131323, + 9744109070, + 42898825, + 9744131255, + 8095563990, + 5429415102, + 9592286289, + 42859100, + 9592286288, + 5429415108, + 10686521697, + 5429417628, + 3325564425 + ], + "geometry": [ + { "lat": 40.7094021, "lon": -73.9218981 }, + { "lat": 40.7093473, "lon": -73.9218053 }, + { "lat": 40.7091310, "lon": -73.9214401 }, + { "lat": 40.7087833, "lon": -73.9208525 }, + { "lat": 40.7087373, "lon": -73.9207748 }, + { "lat": 40.7086932, "lon": -73.9207003 }, + { "lat": 40.7086606, "lon": -73.9206453 }, + { "lat": 40.7083012, "lon": -73.9200381 }, + { "lat": 40.7082516, "lon": -73.9199543 }, + { "lat": 40.7082196, "lon": -73.9199002 }, + { "lat": 40.7080310, "lon": -73.9195815 }, + { "lat": 40.7080224, "lon": -73.9195669 }, + { "lat": 40.7078614, "lon": -73.9192942 }, + { "lat": 40.7078177, "lon": -73.9192201 }, + { "lat": 40.7077829, "lon": -73.9191619 }, + { "lat": 40.7075942, "lon": -73.9188435 }, + { "lat": 40.7074509, "lon": -73.9186012 }, + { "lat": 40.7074225, "lon": -73.9185519 }, + { "lat": 40.7073819, "lon": -73.9184815 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Cypress Avenue", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707635, + "bounds": { + "minlat": 40.6951110, + "minlon": -73.9282590, + "maxlat": 40.7043120, + "maxlon": -73.9192300 + }, + "nodes": [ + 42513726, + 5713857006, + 10795430889, + 7165939889, + 7986840461, + 11175031808, + 9758644655, + 42499830, + 9758644653, + 11175031807, + 8936898359, + 11175031806, + 9796891734, + 42517074, + 42486739, + 9796891725, + 10977791999, + 10977791996, + 11175031805, + 7986977049, + 11175031804, + 9753035650, + 42496664, + 9753035651, + 11175031803, + 10977791994, + 10977791988, + 11175031802, + 9753035633, + 42521479, + 9753035634, + 11175031801, + 11175031800, + 9752992713, + 42511927, + 9752992714, + 11175031799, + 7153297701, + 7153297703, + 7153297711, + 7153297705, + 10946117151, + 9755789818, + 42512101 + ], + "geometry": [ + { "lat": 40.6951110, "lon": -73.9282590 }, + { "lat": 40.6951799, "lon": -73.9281917 }, + { "lat": 40.6954453, "lon": -73.9279318 }, + { "lat": 40.6958176, "lon": -73.9275674 }, + { "lat": 40.6958929, "lon": -73.9274938 }, + { "lat": 40.6959108, "lon": -73.9274763 }, + { "lat": 40.6960921, "lon": -73.9272989 }, + { "lat": 40.6961420, "lon": -73.9272500 }, + { "lat": 40.6961938, "lon": -73.9271993 }, + { "lat": 40.6963922, "lon": -73.9270050 }, + { "lat": 40.6975108, "lon": -73.9259094 }, + { "lat": 40.6977001, "lon": -73.9257241 }, + { "lat": 40.6979944, "lon": -73.9254359 }, + { "lat": 40.6980800, "lon": -73.9253520 }, + { "lat": 40.6981652, "lon": -73.9252738 }, + { "lat": 40.6982098, "lon": -73.9252273 }, + { "lat": 40.6983034, "lon": -73.9251352 }, + { "lat": 40.6983869, "lon": -73.9250531 }, + { "lat": 40.6985373, "lon": -73.9249051 }, + { "lat": 40.6991175, "lon": -73.9243341 }, + { "lat": 40.6995268, "lon": -73.9239324 }, + { "lat": 40.6995766, "lon": -73.9238835 }, + { "lat": 40.6996280, "lon": -73.9238330 }, + { "lat": 40.6996876, "lon": -73.9237744 }, + { "lat": 40.6997394, "lon": -73.9237235 }, + { "lat": 40.6999070, "lon": -73.9235587 }, + { "lat": 40.7007148, "lon": -73.9227645 }, + { "lat": 40.7008671, "lon": -73.9226147 }, + { "lat": 40.7010475, "lon": -73.9224374 }, + { "lat": 40.7011020, "lon": -73.9223840 }, + { "lat": 40.7011612, "lon": -73.9223258 }, + { "lat": 40.7013319, "lon": -73.9221580 }, + { "lat": 40.7024503, "lon": -73.9210585 }, + { "lat": 40.7026329, "lon": -73.9208790 }, + { "lat": 40.7026871, "lon": -73.9208258 }, + { "lat": 40.7027461, "lon": -73.9207678 }, + { "lat": 40.7029428, "lon": -73.9205745 }, + { "lat": 40.7035982, "lon": -73.9199303 }, + { "lat": 40.7036988, "lon": -73.9198291 }, + { "lat": 40.7037735, "lon": -73.9197519 }, + { "lat": 40.7038096, "lon": -73.9197137 }, + { "lat": 40.7039799, "lon": -73.9195497 }, + { "lat": 40.7042542, "lon": -73.9192856 }, + { "lat": 40.7043120, "lon": -73.9192300 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "25 mph", + "name": "DeKalb Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5243930", + "wikipedia": "en:DeKalb Avenue" + } +}, +{ + "type": "way", + "id": 5707641, + "bounds": { + "minlat": 40.7202630, + "minlon": -73.9120759, + "maxlat": 40.7231199, + "maxlon": -73.9118890 + }, + "nodes": [ + 42903033, + 11055680671, + 42815539, + 42858497, + 42821449, + 42821479, + 7963480207, + 42854215 + ], + "geometry": [ + { "lat": 40.7202630, "lon": -73.9118890 }, + { "lat": 40.7204258, "lon": -73.9119110 }, + { "lat": 40.7209500, "lon": -73.9119450 }, + { "lat": 40.7216360, "lon": -73.9119900 }, + { "lat": 40.7223140, "lon": -73.9120410 }, + { "lat": 40.7223960, "lon": -73.9120440 }, + { "lat": 40.7230179, "lon": -73.9120714 }, + { "lat": 40.7231199, "lon": -73.9120759 } + ], + "tags": { + "highway": "residential", + "name": "58th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "58th", + "tiger:name_type": "St", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 5707644, + "bounds": { + "minlat": 40.7179290, + "minlon": -73.9112177, + "maxlat": 40.7186886, + "maxlon": -73.9107140 + }, + "nodes": [ + 42788763, + 42839029 + ], + "geometry": [ + { "lat": 40.7186886, "lon": -73.9112177 }, + { "lat": 40.7179290, "lon": -73.9107140 } + ], + "tags": { + "highway": "residential", + "name": "58th Street", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "58th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_left_1": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 5707652, + "bounds": { + "minlat": 40.7520113, + "minlon": -73.9300919, + "maxlat": 40.7586189, + "maxlon": -73.9247953 + }, + "nodes": [ + 3577895811, + 42824141, + 3577895807, + 9295360197, + 9295361463, + 3574982350, + 42908498, + 3574982347, + 9295411821, + 3569858144, + 42908503, + 3569858139, + 10223171207, + 3569401948, + 42815824, + 3569401940, + 3569401915, + 42876791, + 3569401911, + 3569905419, + 8088590958, + 9189020466, + 42908517 + ], + "geometry": [ + { "lat": 40.7586189, "lon": -73.9247953 }, + { "lat": 40.7585467, "lon": -73.9248542 }, + { "lat": 40.7584837, "lon": -73.9249054 }, + { "lat": 40.7581256, "lon": -73.9251968 }, + { "lat": 40.7575272, "lon": -73.9256836 }, + { "lat": 40.7570831, "lon": -73.9260449 }, + { "lat": 40.7570081, "lon": -73.9261059 }, + { "lat": 40.7569431, "lon": -73.9261588 }, + { "lat": 40.7563089, "lon": -73.9266746 }, + { "lat": 40.7555365, "lon": -73.9273029 }, + { "lat": 40.7554668, "lon": -73.9273596 }, + { "lat": 40.7554009, "lon": -73.9274132 }, + { "lat": 40.7544134, "lon": -73.9282165 }, + { "lat": 40.7537725, "lon": -73.9287388 }, + { "lat": 40.7537015, "lon": -73.9287957 }, + { "lat": 40.7536390, "lon": -73.9288456 }, + { "lat": 40.7526311, "lon": -73.9296664 }, + { "lat": 40.7525611, "lon": -73.9297231 }, + { "lat": 40.7524990, "lon": -73.9297735 }, + { "lat": 40.7521703, "lon": -73.9300209 }, + { "lat": 40.7521360, "lon": -73.9300446 }, + { "lat": 40.7520973, "lon": -73.9300612 }, + { "lat": 40.7520113, "lon": -73.9300919 } + ], + "tags": { + "highway": "residential", + "name": "34th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707653, + "bounds": { + "minlat": 40.7378595, + "minlon": -73.9328889, + "maxlat": 40.7383326, + "maxlon": -73.9316307 + }, + "nodes": [ + 42832523, + 10743722096, + 8097303874, + 277388572, + 7824544616 + ], + "geometry": [ + { "lat": 40.7383326, "lon": -73.9316307 }, + { "lat": 40.7382863, "lon": -73.9317286 }, + { "lat": 40.7382714, "lon": -73.9317660 }, + { "lat": 40.7379024, "lon": -73.9327632 }, + { "lat": 40.7378595, "lon": -73.9328889 } + ], + "tags": { + "highway": "unclassified", + "name": "34th Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5707655, + "bounds": { + "minlat": 40.7384910, + "minlon": -73.9319718, + "maxlat": 40.7425609, + "maxlon": -73.9311602 + }, + "nodes": [ + 42860591, + 10081023578, + 10083107632, + 42880290, + 10083107633, + 8097303861, + 9981925191, + 42832522 + ], + "geometry": [ + { "lat": 40.7425609, "lon": -73.9311602 }, + { "lat": 40.7424774, "lon": -73.9311767 }, + { "lat": 40.7407983, "lon": -73.9315115 }, + { "lat": 40.7407130, "lon": -73.9315284 }, + { "lat": 40.7406333, "lon": -73.9315451 }, + { "lat": 40.7385779, "lon": -73.9319526 }, + { "lat": 40.7385443, "lon": -73.9319630 }, + { "lat": 40.7384910, "lon": -73.9319718 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "34th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707681, + "bounds": { + "minlat": 40.7736671, + "minlon": -73.9170997, + "maxlat": 40.7840609, + "maxlon": -73.9023810 + }, + "nodes": [ + 2295039214, + 7756484788, + 7833241026, + 42812002, + 42812008, + 42908847, + 2302449497, + 7787351816, + 3778313813, + 7787351838, + 7846436809, + 5785108830, + 42908871, + 5785108829, + 7846454046, + 42861216, + 7846454024, + 5042114424, + 42818468, + 5042114425, + 2300199431, + 42908881, + 9776116515, + 42872000, + 9776116512, + 9776116504, + 42817446, + 9776116501, + 9776116493, + 42833257, + 9776116490, + 11114791907, + 9776116482, + 42849658, + 9776116480, + 2447703182, + 10763811188, + 9776116472, + 42908896, + 9776116465, + 4941253855, + 9242368815, + 42866622, + 7659293847, + 10744397946, + 42908901, + 7659224078, + 10744397944, + 10744397958, + 42888633, + 10744397957, + 9847967522, + 42841786, + 9847967638, + 9236657423, + 42908911, + 9236657440, + 11618829005, + 42908916, + 11618829004, + 9776150672, + 42908922 + ], + "geometry": [ + { "lat": 40.7840609, "lon": -73.9170997 }, + { "lat": 40.7840193, "lon": -73.9170421 }, + { "lat": 40.7839885, "lon": -73.9170024 }, + { "lat": 40.7832609, "lon": -73.9159678 }, + { "lat": 40.7830929, "lon": -73.9157290 }, + { "lat": 40.7828009, "lon": -73.9153103 }, + { "lat": 40.7827158, "lon": -73.9151941 }, + { "lat": 40.7823661, "lon": -73.9147014 }, + { "lat": 40.7822953, "lon": -73.9146008 }, + { "lat": 40.7822190, "lon": -73.9144925 }, + { "lat": 40.7818054, "lon": -73.9139025 }, + { "lat": 40.7816249, "lon": -73.9136454 }, + { "lat": 40.7815826, "lon": -73.9135851 }, + { "lat": 40.7815429, "lon": -73.9135299 }, + { "lat": 40.7811348, "lon": -73.9129670 }, + { "lat": 40.7810949, "lon": -73.9129106 }, + { "lat": 40.7810553, "lon": -73.9128539 }, + { "lat": 40.7806552, "lon": -73.9122703 }, + { "lat": 40.7806060, "lon": -73.9122110 }, + { "lat": 40.7805691, "lon": -73.9121537 }, + { "lat": 40.7801902, "lon": -73.9116188 }, + { "lat": 40.7801230, "lon": -73.9115230 }, + { "lat": 40.7796845, "lon": -73.9109025 }, + { "lat": 40.7796409, "lon": -73.9108408 }, + { "lat": 40.7795920, "lon": -73.9107716 }, + { "lat": 40.7791978, "lon": -73.9102145 }, + { "lat": 40.7791500, "lon": -73.9101470 }, + { "lat": 40.7791137, "lon": -73.9100950 }, + { "lat": 40.7787136, "lon": -73.9095204 }, + { "lat": 40.7786682, "lon": -73.9094555 }, + { "lat": 40.7786296, "lon": -73.9094004 }, + { "lat": 40.7783208, "lon": -73.9089594 }, + { "lat": 40.7780479, "lon": -73.9085697 }, + { "lat": 40.7779830, "lon": -73.9084770 }, + { "lat": 40.7778962, "lon": -73.9083569 }, + { "lat": 40.7775604, "lon": -73.9078918 }, + { "lat": 40.7774774, "lon": -73.9077749 }, + { "lat": 40.7772491, "lon": -73.9074534 }, + { "lat": 40.7771970, "lon": -73.9073800 }, + { "lat": 40.7771543, "lon": -73.9073238 }, + { "lat": 40.7769602, "lon": -73.9070420 }, + { "lat": 40.7767504, "lon": -73.9067414 }, + { "lat": 40.7767079, "lon": -73.9066817 }, + { "lat": 40.7766567, "lon": -73.9066061 }, + { "lat": 40.7762401, "lon": -73.9060220 }, + { "lat": 40.7761956, "lon": -73.9059595 }, + { "lat": 40.7761815, "lon": -73.9059394 }, + { "lat": 40.7761459, "lon": -73.9058888 }, + { "lat": 40.7757412, "lon": -73.9053126 }, + { "lat": 40.7756990, "lon": -73.9052527 }, + { "lat": 40.7756523, "lon": -73.9051867 }, + { "lat": 40.7752523, "lon": -73.9046198 }, + { "lat": 40.7752064, "lon": -73.9045553 }, + { "lat": 40.7751508, "lon": -73.9044769 }, + { "lat": 40.7747439, "lon": -73.9039003 }, + { "lat": 40.7746902, "lon": -73.9038243 }, + { "lat": 40.7746344, "lon": -73.9037454 }, + { "lat": 40.7742228, "lon": -73.9031639 }, + { "lat": 40.7741762, "lon": -73.9030981 }, + { "lat": 40.7741271, "lon": -73.9030290 }, + { "lat": 40.7737147, "lon": -73.9024477 }, + { "lat": 40.7736671, "lon": -73.9023810 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "21st Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707713, + "bounds": { + "minlat": 40.7542976, + "minlon": -73.9469847, + "maxlat": 40.7568750, + "maxlon": -73.9443500 + }, + "nodes": [ + 42906413, + 8334173152, + 5491803962, + 8334074911, + 42895302, + 8334076726, + 5491803960, + 42819709 + ], + "geometry": [ + { "lat": 40.7568750, "lon": -73.9443500 }, + { "lat": 40.7568167, "lon": -73.9444138 }, + { "lat": 40.7568055, "lon": -73.9444257 }, + { "lat": 40.7557160, "lon": -73.9456118 }, + { "lat": 40.7556570, "lon": -73.9456760 }, + { "lat": 40.7556037, "lon": -73.9457286 }, + { "lat": 40.7543477, "lon": -73.9469628 }, + { "lat": 40.7542976, "lon": -73.9469847 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "10th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707715, + "bounds": { + "minlat": 40.7489444, + "minlon": -73.9516444, + "maxlat": 40.7536599, + "maxlon": -73.9475836 + }, + "nodes": [ + 42825539, + 5034761649, + 9982771935, + 8158221229, + 11622964591, + 10774449948, + 10774449951, + 11118931568, + 11622964630, + 42909236, + 11622964629, + 11623153683, + 42909231, + 11623153684, + 8062562640, + 11211160212, + 42818107, + 11211160210, + 8062562649, + 2472695945, + 42909227, + 2472695922 + ], + "geometry": [ + { "lat": 40.7489444, "lon": -73.9516444 }, + { "lat": 40.7490380, "lon": -73.9515593 }, + { "lat": 40.7495682, "lon": -73.9511118 }, + { "lat": 40.7496217, "lon": -73.9510661 }, + { "lat": 40.7496780, "lon": -73.9510157 }, + { "lat": 40.7497890, "lon": -73.9509166 }, + { "lat": 40.7499752, "lon": -73.9507501 }, + { "lat": 40.7501493, "lon": -73.9505945 }, + { "lat": 40.7501953, "lon": -73.9505534 }, + { "lat": 40.7502518, "lon": -73.9505029 }, + { "lat": 40.7503084, "lon": -73.9504542 }, + { "lat": 40.7514054, "lon": -73.9495097 }, + { "lat": 40.7514585, "lon": -73.9494640 }, + { "lat": 40.7515103, "lon": -73.9494192 }, + { "lat": 40.7521197, "lon": -73.9488921 }, + { "lat": 40.7521537, "lon": -73.9488626 }, + { "lat": 40.7522180, "lon": -73.9488070 }, + { "lat": 40.7522905, "lon": -73.9487451 }, + { "lat": 40.7534864, "lon": -73.9477241 }, + { "lat": 40.7535224, "lon": -73.9476933 }, + { "lat": 40.7535789, "lon": -73.9476435 }, + { "lat": 40.7536599, "lon": -73.9475836 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "10th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707721, + "bounds": { + "minlat": 40.7747087, + "minlon": -73.9333814, + "maxlat": 40.7761594, + "maxlon": -73.9326266 + }, + "nodes": [ + 42811429, + 7756437680, + 13701396579, + 42861342 + ], + "geometry": [ + { "lat": 40.7747087, "lon": -73.9333814 }, + { "lat": 40.7747965, "lon": -73.9333357 }, + { "lat": 40.7755517, "lon": -73.9329422 }, + { "lat": 40.7761594, "lon": -73.9326266 } + ], + "tags": { + "highway": "residential", + "name": "4th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5707770, + "bounds": { + "minlat": 40.7383317, + "minlon": -73.9276289, + "maxlat": 40.7384527, + "maxlon": -73.9272966 + }, + "nodes": [ + 42896805, + 10084797146, + 9192032637, + 10084797145, + 7464526005, + 9192032636, + 8443229855, + 10084797160, + 42910064 + ], + "geometry": [ + { "lat": 40.7384527, "lon": -73.9276289 }, + { "lat": 40.7383895, "lon": -73.9275776 }, + { "lat": 40.7383790, "lon": -73.9275665 }, + { "lat": 40.7383671, "lon": -73.9275493 }, + { "lat": 40.7383570, "lon": -73.9275300 }, + { "lat": 40.7383522, "lon": -73.9275117 }, + { "lat": 40.7383445, "lon": -73.9274431 }, + { "lat": 40.7383400, "lon": -73.9273995 }, + { "lat": 40.7383317, "lon": -73.9272966 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "name": "50th Avenue", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5707783, + "bounds": { + "minlat": 40.7409296, + "minlon": -73.9471493, + "maxlat": 40.7413681, + "maxlon": -73.9448390 + }, + "nodes": [ + 42910339, + 10762203027, + 42808179 + ], + "geometry": [ + { "lat": 40.7413681, "lon": -73.9471493 }, + { "lat": 40.7409470, "lon": -73.9449308 }, + { "lat": 40.7409296, "lon": -73.9448390 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "50th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707854, + "bounds": { + "minlat": 40.7483326, + "minlon": -73.9373948, + "maxlat": 40.7489275, + "maxlon": -73.9367924 + }, + "nodes": [ + 42844306, + 8315072965, + 42911763 + ], + "geometry": [ + { "lat": 40.7489275, "lon": -73.9373948 }, + { "lat": 40.7488333, "lon": -73.9372990 }, + { "lat": 40.7483326, "lon": -73.9367924 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Queens Boulevard", + "ref": "NY 25", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 5707902, + "bounds": { + "minlat": 40.7118491, + "minlon": -73.9088320, + "maxlat": 40.7130608, + "maxlon": -73.9080039 + }, + "nodes": [ + 42843597, + 42843603, + 7304862181, + 42912568, + 10686537745, + 9747567464, + 42888334 + ], + "geometry": [ + { "lat": 40.7130608, "lon": -73.9088320 }, + { "lat": 40.7129852, "lon": -73.9087817 }, + { "lat": 40.7123487, "lon": -73.9087492 }, + { "lat": 40.7122810, "lon": -73.9087450 }, + { "lat": 40.7119055, "lon": -73.9081042 }, + { "lat": 40.7118799, "lon": -73.9080605 }, + { "lat": 40.7118491, "lon": -73.9080039 } + ], + "tags": { + "highway": "residential", + "name": "Tonsor Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5707919, + "bounds": { + "minlat": 40.7699532, + "minlon": -73.9181169, + "maxlat": 40.7700816, + "maxlon": -73.9175819 + }, + "nodes": [ + 42849714, + 2447553715, + 13388597589 + ], + "geometry": [ + { "lat": 40.7700816, "lon": -73.9181169 }, + { "lat": 40.7700281, "lon": -73.9179330 }, + { "lat": 40.7699532, "lon": -73.9175819 } + ], + "tags": { + "foot": "yes", + "hgv": "designated", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Astoria Boulevard South", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 5707940, + "bounds": { + "minlat": 40.7379376, + "minlon": -73.9358769, + "maxlat": 40.7411477, + "maxlon": -73.9352382 + }, + "nodes": [ + 42880280, + 9981973340, + 8316786989, + 9981925208, + 42832506, + 9981925207, + 8316786976, + 7079159416, + 10762203024, + 42901430 + ], + "geometry": [ + { "lat": 40.7411477, "lon": -73.9352382 }, + { "lat": 40.7410577, "lon": -73.9352558 }, + { "lat": 40.7401790, "lon": -73.9354277 }, + { "lat": 40.7401407, "lon": -73.9354368 }, + { "lat": 40.7400756, "lon": -73.9354496 }, + { "lat": 40.7400073, "lon": -73.9354622 }, + { "lat": 40.7399586, "lon": -73.9354760 }, + { "lat": 40.7397397, "lon": -73.9355200 }, + { "lat": 40.7380056, "lon": -73.9358635 }, + { "lat": 40.7379376, "lon": -73.9358769 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "31st Place", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5707987, + "bounds": { + "minlat": 40.7801230, + "minlon": -73.9115230, + "maxlat": 40.7818808, + "maxlon": -73.9093690 + }, + "nodes": [ + 42908881, + 8500089239, + 7776763773, + 7779193145, + 42913619 + ], + "geometry": [ + { "lat": 40.7801230, "lon": -73.9115230 }, + { "lat": 40.7801779, "lon": -73.9114557 }, + { "lat": 40.7817946, "lon": -73.9094746 }, + { "lat": 40.7818248, "lon": -73.9094372 }, + { "lat": 40.7818808, "lon": -73.9093690 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "26th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "26th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5707988, + "bounds": { + "minlat": 40.7725587, + "minlon": -73.9207723, + "maxlat": 40.7729638, + "maxlon": -73.9202665 + }, + "nodes": [ + 42898273, + 7787351797, + 7787351845, + 42897257 + ], + "geometry": [ + { "lat": 40.7725587, "lon": -73.9207723 }, + { "lat": 40.7726370, "lon": -73.9206748 }, + { "lat": 40.7728893, "lon": -73.9203608 }, + { "lat": 40.7729638, "lon": -73.9202665 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "26th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5708227, + "bounds": { + "minlat": 40.7266119, + "minlon": -73.9080356, + "maxlat": 40.7267276, + "maxlon": -73.9064189 + }, + "nodes": [ + 42916205, + 5481969192, + 10021763460, + 9990029731, + 5481971962, + 8316926549, + 7725251754 + ], + "geometry": [ + { "lat": 40.7267276, "lon": -73.9080356 }, + { "lat": 40.7266962, "lon": -73.9075744 }, + { "lat": 40.7266599, "lon": -73.9070467 }, + { "lat": 40.7266594, "lon": -73.9070393 }, + { "lat": 40.7266428, "lon": -73.9068110 }, + { "lat": 40.7266317, "lon": -73.9066379 }, + { "lat": 40.7266119, "lon": -73.9064189 } + ], + "tags": { + "highway": "residential", + "name": "55th Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 5708229, + "bounds": { + "minlat": 40.7271280, + "minlon": -73.9200507, + "maxlat": 40.7274805, + "maxlon": -73.9181946 + }, + "nodes": [ + 42859995, + 13773782871, + 42916218 + ], + "geometry": [ + { "lat": 40.7274805, "lon": -73.9200507 }, + { "lat": 40.7271467, "lon": -73.9182933 }, + { "lat": 40.7271280, "lon": -73.9181946 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 5708273, + "bounds": { + "minlat": 40.7504962, + "minlon": -73.9509023, + "maxlat": 40.7524399, + "maxlon": -73.9480547 + }, + "nodes": [ + 42916952, + 11950505559, + 8062562632, + 11211160218, + 42866905, + 11211160217, + 8062562629, + 11211160177, + 42909231, + 11211160176, + 11211160224, + 42890429, + 11211160222, + 5034184384, + 42826843 + ], + "geometry": [ + { "lat": 40.7504962, "lon": -73.9480547 }, + { "lat": 40.7505527, "lon": -73.9481374 }, + { "lat": 40.7509372, "lon": -73.9487005 }, + { "lat": 40.7509522, "lon": -73.9487225 }, + { "lat": 40.7510056, "lon": -73.9488007 }, + { "lat": 40.7510653, "lon": -73.9488866 }, + { "lat": 40.7513929, "lon": -73.9493679 }, + { "lat": 40.7514170, "lon": -73.9494038 }, + { "lat": 40.7514585, "lon": -73.9494640 }, + { "lat": 40.7515039, "lon": -73.9495315 }, + { "lat": 40.7519017, "lon": -73.9501132 }, + { "lat": 40.7519416, "lon": -73.9501716 }, + { "lat": 40.7519900, "lon": -73.9502421 }, + { "lat": 40.7523850, "lon": -73.9508172 }, + { "lat": 40.7524399, "lon": -73.9509023 } + ], + "tags": { + "highway": "residential", + "name": "43rd Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5708320, + "bounds": { + "minlat": 40.7490431, + "minlon": -73.9522616, + "maxlat": 40.7505913, + "maxlon": -73.9442600 + }, + "nodes": [ + 42826850, + 6452716576, + 6815675999, + 6815676004, + 42890434, + 11211160219, + 42909236, + 11211160220, + 10699487856, + 42866908, + 10699487854, + 42917501, + 42889767, + 8334165799, + 42825900, + 8334173156, + 42917508, + 13037421812, + 9982745689, + 9982745688, + 42917509 + ], + "geometry": [ + { "lat": 40.7505913, "lon": -73.9522616 }, + { "lat": 40.7505724, "lon": -73.9521555 }, + { "lat": 40.7505545, "lon": -73.9520602 }, + { "lat": 40.7505164, "lon": -73.9518757 }, + { "lat": 40.7504378, "lon": -73.9514708 }, + { "lat": 40.7502718, "lon": -73.9506068 }, + { "lat": 40.7502518, "lon": -73.9505029 }, + { "lat": 40.7502373, "lon": -73.9504276 }, + { "lat": 40.7500143, "lon": -73.9492986 }, + { "lat": 40.7499921, "lon": -73.9491858 }, + { "lat": 40.7499731, "lon": -73.9490840 }, + { "lat": 40.7498780, "lon": -73.9485772 }, + { "lat": 40.7496824, "lon": -73.9476295 }, + { "lat": 40.7495295, "lon": -73.9467917 }, + { "lat": 40.7495081, "lon": -73.9466666 }, + { "lat": 40.7494844, "lon": -73.9465381 }, + { "lat": 40.7492779, "lon": -73.9454671 }, + { "lat": 40.7492110, "lon": -73.9451222 }, + { "lat": 40.7490796, "lon": -73.9444453 }, + { "lat": 40.7490682, "lon": -73.9443798 }, + { "lat": 40.7490431, "lon": -73.9442600 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "44th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5708326, + "bounds": { + "minlat": 40.7419730, + "minlon": -73.9073290, + "maxlat": 40.7425150, + "maxlon": -73.9035450 + }, + "nodes": [ + 42908306, + 9950327760, + 8089088629, + 42898888, + 5492076296, + 5492076290, + 42917565, + 5492076283, + 5492076289, + 12734429190, + 9950327770, + 42844375 + ], + "geometry": [ + { "lat": 40.7425150, "lon": -73.9073290 }, + { "lat": 40.7425039, "lon": -73.9072510 }, + { "lat": 40.7424957, "lon": -73.9071921 }, + { "lat": 40.7422370, "lon": -73.9053540 }, + { "lat": 40.7421255, "lon": -73.9045951 }, + { "lat": 40.7421171, "lon": -73.9045384 }, + { "lat": 40.7421040, "lon": -73.9044490 }, + { "lat": 40.7420927, "lon": -73.9043711 }, + { "lat": 40.7420830, "lon": -73.9043037 }, + { "lat": 40.7419940, "lon": -73.9036900 }, + { "lat": 40.7419848, "lon": -73.9036256 }, + { "lat": 40.7419730, "lon": -73.9035450 } + ], + "tags": { + "highway": "residential", + "name": "44th Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "44th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_left_1": "11377", + "tiger:zip_right": "11377", + "tiger:zip_right_1": "11377" + } +}, +{ + "type": "way", + "id": 5708367, + "bounds": { + "minlat": 40.7344530, + "minlon": -73.9077730, + "maxlat": 40.7367376, + "maxlon": -73.9067487 + }, + "nodes": [ + 42825220, + 10087484107, + 10087484105, + 42881928, + 42806989 + ], + "geometry": [ + { "lat": 40.7367376, "lon": -73.9067487 }, + { "lat": 40.7366462, "lon": -73.9067852 }, + { "lat": 40.7365959, "lon": -73.9068055 }, + { "lat": 40.7350940, "lon": -73.9074760 }, + { "lat": 40.7344530, "lon": -73.9077730 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "58th Lane", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "58th", + "tiger:name_type": "Ln", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 5708569, + "bounds": { + "minlat": 40.7489287, + "minlon": -73.9137345, + "maxlat": 40.7501990, + "maxlon": -73.9134840 + }, + "nodes": [ + 10971338115, + 10971338114, + 7667084778, + 10925436235, + 7059062006, + 8089088625, + 8239602778, + 42815113 + ], + "geometry": [ + { "lat": 40.7489287, "lon": -73.9136934 }, + { "lat": 40.7489720, "lon": -73.9137345 }, + { "lat": 40.7490095, "lon": -73.9137262 }, + { "lat": 40.7495160, "lon": -73.9136233 }, + { "lat": 40.7497676, "lon": -73.9135722 }, + { "lat": 40.7501086, "lon": -73.9135025 }, + { "lat": 40.7501458, "lon": -73.9134949 }, + { "lat": 40.7501990, "lon": -73.9134840 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "50th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5708571, + "bounds": { + "minlat": 40.7532950, + "minlon": -73.9125221, + "maxlat": 40.7545916, + "maxlon": -73.9115261 + }, + "nodes": [ + 42919826, + 6450808228, + 8595235456, + 3778141148, + 12989324948, + 12989324952, + 3778141112, + 5482228866, + 9188971704, + 7762273786, + 9188971703, + 7762273785 + ], + "geometry": [ + { "lat": 40.7545916, "lon": -73.9115261 }, + { "lat": 40.7544966, "lon": -73.9116108 }, + { "lat": 40.7544916, "lon": -73.9116148 }, + { "lat": 40.7542839, "lon": -73.9117835 }, + { "lat": 40.7542255, "lon": -73.9118309 }, + { "lat": 40.7541071, "lon": -73.9119271 }, + { "lat": 40.7540027, "lon": -73.9120118 }, + { "lat": 40.7536821, "lon": -73.9122661 }, + { "lat": 40.7534469, "lon": -73.9124580 }, + { "lat": 40.7534158, "lon": -73.9124802 }, + { "lat": 40.7533731, "lon": -73.9124983 }, + { "lat": 40.7532950, "lon": -73.9125221 } + ], + "tags": { + "highway": "residential", + "name": "50th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5708578, + "bounds": { + "minlat": 40.7452614, + "minlon": -73.9577553, + "maxlat": 40.7456481, + "maxlon": -73.9557423 + }, + "nodes": [ + 277124927, + 9982771533, + 9982771530, + 276318085, + 9982774480, + 2991257464, + 5291959026, + 9982774478, + 42866842 + ], + "geometry": [ + { "lat": 40.7456481, "lon": -73.9577553 }, + { "lat": 40.7456200, "lon": -73.9576051 }, + { "lat": 40.7455770, "lon": -73.9573752 }, + { "lat": 40.7455488, "lon": -73.9572300 }, + { "lat": 40.7455209, "lon": -73.9570801 }, + { "lat": 40.7454418, "lon": -73.9566747 }, + { "lat": 40.7452837, "lon": -73.9558575 }, + { "lat": 40.7452798, "lon": -73.9558375 }, + { "lat": 40.7452614, "lon": -73.9557423 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "47th Road", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "47th", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 5708609, + "bounds": { + "minlat": 40.7509790, + "minlon": -73.9361192, + "maxlat": 40.7517237, + "maxlon": -73.9347430 + }, + "nodes": [ + 42833357, + 8315072920, + 7607521053, + 7211090224, + 10006374930, + 8088590977, + 42920217 + ], + "geometry": [ + { "lat": 40.7517237, "lon": -73.9361192 }, + { "lat": 40.7516923, "lon": -73.9360631 }, + { "lat": 40.7513407, "lon": -73.9354122 }, + { "lat": 40.7512284, "lon": -73.9352044 }, + { "lat": 40.7512129, "lon": -73.9351756 }, + { "lat": 40.7510568, "lon": -73.9348854 }, + { "lat": 40.7509790, "lon": -73.9347430 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "maxheight": "below_default", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "40th Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5708630, + "bounds": { + "minlat": 40.7543973, + "minlon": -73.9205124, + "maxlat": 40.7612436, + "maxlon": -73.9149432 + }, + "nodes": [ + 42920456, + 6450572727, + 7661260089, + 42856563, + 7661260088, + 8593722407, + 8593804436, + 3570249833, + 42883002, + 3570249828, + 6450615267, + 10774472429, + 3569858150, + 42824169, + 3569858147, + 8599156638, + 8599156666, + 3569401959, + 42920467 + ], + "geometry": [ + { "lat": 40.7612436, "lon": -73.9149432 }, + { "lat": 40.7611752, "lon": -73.9149989 }, + { "lat": 40.7606431, "lon": -73.9154359 }, + { "lat": 40.7605754, "lon": -73.9154890 }, + { "lat": 40.7605061, "lon": -73.9155431 }, + { "lat": 40.7598755, "lon": -73.9160555 }, + { "lat": 40.7590355, "lon": -73.9167389 }, + { "lat": 40.7582995, "lon": -73.9173377 }, + { "lat": 40.7582225, "lon": -73.9174008 }, + { "lat": 40.7581616, "lon": -73.9174502 }, + { "lat": 40.7581404, "lon": -73.9174675 }, + { "lat": 40.7562498, "lon": -73.9190055 }, + { "lat": 40.7560022, "lon": -73.9192069 }, + { "lat": 40.7559360, "lon": -73.9192607 }, + { "lat": 40.7558684, "lon": -73.9193159 }, + { "lat": 40.7554993, "lon": -73.9196160 }, + { "lat": 40.7548261, "lon": -73.9201636 }, + { "lat": 40.7544694, "lon": -73.9204538 }, + { "lat": 40.7543973, "lon": -73.9205124 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "42nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5708631, + "bounds": { + "minlat": 40.7434403, + "minlon": -73.9224454, + "maxlat": 40.7469987, + "maxlon": -73.9217391 + }, + "nodes": [ + 42920480, + 10069648909, + 10069648908, + 42817784, + 10069693820, + 11694597484, + 10069693819, + 2844853160, + 3798377342, + 2844853155 + ], + "geometry": [ + { "lat": 40.7469987, "lon": -73.9217391 }, + { "lat": 40.7469245, "lon": -73.9217540 }, + { "lat": 40.7454244, "lon": -73.9220557 }, + { "lat": 40.7453526, "lon": -73.9220715 }, + { "lat": 40.7452535, "lon": -73.9220912 }, + { "lat": 40.7444579, "lon": -73.9222467 }, + { "lat": 40.7438522, "lon": -73.9223651 }, + { "lat": 40.7437438, "lon": -73.9223863 }, + { "lat": 40.7436106, "lon": -73.9224141 }, + { "lat": 40.7434403, "lon": -73.9224454 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "42nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5708659, + "bounds": { + "minlat": 40.7744328, + "minlon": -73.9223173, + "maxlat": 40.7833411, + "maxlon": -73.9114390 + }, + "nodes": [ + 42920817, + 7777095373, + 2402924284, + 5785108824, + 42908871, + 5785108814, + 2307002128, + 7803828538, + 42849908, + 7803828552, + 42874596, + 7803828537, + 42810910, + 42850472, + 2753135619, + 11114804476, + 1331886629, + 6450635328, + 42877816, + 6450635325, + 11107973911, + 42920835, + 6908562526, + 42820708, + 42887040, + 6908562513, + 6908562516, + 7783823963, + 6450583541, + 42818186, + 6450635154, + 11107973908, + 42881027, + 11114749969, + 3025036830, + 11427746921, + 42906387, + 11427746933, + 6452989064, + 2447553705, + 42897243 + ], + "geometry": [ + { "lat": 40.7833411, "lon": -73.9114390 }, + { "lat": 40.7832867, "lon": -73.9115052 }, + { "lat": 40.7817985, "lon": -73.9133175 }, + { "lat": 40.7816429, "lon": -73.9135104 }, + { "lat": 40.7815826, "lon": -73.9135851 }, + { "lat": 40.7815231, "lon": -73.9136572 }, + { "lat": 40.7813064, "lon": -73.9139181 }, + { "lat": 40.7810956, "lon": -73.9141762 }, + { "lat": 40.7807459, "lon": -73.9146044 }, + { "lat": 40.7798018, "lon": -73.9157546 }, + { "lat": 40.7797480, "lon": -73.9158200 }, + { "lat": 40.7796942, "lon": -73.9158863 }, + { "lat": 40.7792212, "lon": -73.9164677 }, + { "lat": 40.7785740, "lon": -73.9172550 }, + { "lat": 40.7782727, "lon": -73.9176240 }, + { "lat": 40.7782508, "lon": -73.9176508 }, + { "lat": 40.7781319, "lon": -73.9177964 }, + { "lat": 40.7780349, "lon": -73.9179153 }, + { "lat": 40.7779780, "lon": -73.9179850 }, + { "lat": 40.7779242, "lon": -73.9180513 }, + { "lat": 40.7777050, "lon": -73.9183215 }, + { "lat": 40.7774400, "lon": -73.9186480 }, + { "lat": 40.7772831, "lon": -73.9188373 }, + { "lat": 40.7769340, "lon": -73.9192580 }, + { "lat": 40.7764480, "lon": -73.9198530 }, + { "lat": 40.7763063, "lon": -73.9200262 }, + { "lat": 40.7761996, "lon": -73.9201567 }, + { "lat": 40.7759996, "lon": -73.9204011 }, + { "lat": 40.7759693, "lon": -73.9204381 }, + { "lat": 40.7759040, "lon": -73.9205180 }, + { "lat": 40.7758444, "lon": -73.9205908 }, + { "lat": 40.7756386, "lon": -73.9208421 }, + { "lat": 40.7753700, "lon": -73.9211700 }, + { "lat": 40.7752251, "lon": -73.9213462 }, + { "lat": 40.7749389, "lon": -73.9216972 }, + { "lat": 40.7749237, "lon": -73.9217143 }, + { "lat": 40.7748750, "lon": -73.9217720 }, + { "lat": 40.7748333, "lon": -73.9218241 }, + { "lat": 40.7745155, "lon": -73.9222178 }, + { "lat": 40.7744955, "lon": -73.9222426 }, + { "lat": 40.7744328, "lon": -73.9223173 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "23rd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5708662, + "bounds": { + "minlat": 40.7530370, + "minlon": -73.9406160, + "maxlat": 40.7542960, + "maxlon": -73.9394560 + }, + "nodes": [ + 42895311, + 5493300584, + 12307902937, + 8315005338, + 42906428 + ], + "geometry": [ + { "lat": 40.7530370, "lon": -73.9406160 }, + { "lat": 40.7530936, "lon": -73.9405638 }, + { "lat": 40.7533236, "lon": -73.9403506 }, + { "lat": 40.7542478, "lon": -73.9395005 }, + { "lat": 40.7542960, "lon": -73.9394560 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "highway": "residential", + "lit": "yes", + "name": "23rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5708663, + "bounds": { + "minlat": 40.7399992, + "minlon": -73.9476101, + "maxlat": 40.7413681, + "maxlon": -73.9471493 + }, + "nodes": [ + 42910339, + 11211159668, + 42836338, + 11211159671, + 11429212265, + 42901523 + ], + "geometry": [ + { "lat": 40.7413681, "lon": -73.9471493 }, + { "lat": 40.7407680, "lon": -73.9473540 }, + { "lat": 40.7406907, "lon": -73.9473805 }, + { "lat": 40.7406242, "lon": -73.9474027 }, + { "lat": 40.7400986, "lon": -73.9475771 }, + { "lat": 40.7399992, "lon": -73.9476101 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "23rd Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5708783, + "bounds": { + "minlat": 40.7840652, + "minlon": -73.9152890, + "maxlat": 40.7860598, + "maxlon": -73.9124546 + }, + "nodes": [ + 1243057050, + 7776768887, + 42866512, + 42812001, + 42922387, + 3778313816, + 42825956 + ], + "geometry": [ + { "lat": 40.7860598, "lon": -73.9152890 }, + { "lat": 40.7860057, "lon": -73.9152116 }, + { "lat": 40.7855313, "lon": -73.9145433 }, + { "lat": 40.7850234, "lon": -73.9138105 }, + { "lat": 40.7845516, "lon": -73.9131526 }, + { "lat": 40.7841567, "lon": -73.9125821 }, + { "lat": 40.7840652, "lon": -73.9124546 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "20th Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "20th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5708918, + "bounds": { + "minlat": 40.7201530, + "minlon": -73.9231590, + "maxlat": 40.7203810, + "maxlon": -73.9223220 + }, + "nodes": [ + 5176490249, + 13701142803, + 5176490244 + ], + "geometry": [ + { "lat": 40.7203810, "lon": -73.9223220 }, + { "lat": 40.7203201, "lon": -73.9225455 }, + { "lat": 40.7201530, "lon": -73.9231590 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "58th Road" + } +}, +{ + "type": "way", + "id": 5708923, + "bounds": { + "minlat": 40.7203951, + "minlon": -73.9083063, + "maxlat": 40.7205232, + "maxlon": -73.9049173 + }, + "nodes": [ + 7706126090, + 10577439154, + 10577439153, + 4396950894, + 7963480238, + 11392563442, + 2089937878 + ], + "geometry": [ + { "lat": 40.7204538, "lon": -73.9083063 }, + { "lat": 40.7203993, "lon": -73.9081936 }, + { "lat": 40.7203951, "lon": -73.9079840 }, + { "lat": 40.7204101, "lon": -73.9078621 }, + { "lat": 40.7205118, "lon": -73.9052148 }, + { "lat": 40.7205186, "lon": -73.9051059 }, + { "lat": 40.7205232, "lon": -73.9049173 } + ], + "tags": { + "highway": "residential", + "name": "58th Road", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5708924, + "bounds": { + "minlat": 40.7202630, + "minlon": -73.9118890, + "maxlat": 40.7203130, + "maxlon": -73.9105140 + }, + "nodes": [ + 42825401, + 11055680668, + 7963480244, + 11055680672, + 42903033 + ], + "geometry": [ + { "lat": 40.7203130, "lon": -73.9105140 }, + { "lat": 40.7203101, "lon": -73.9105945 }, + { "lat": 40.7202684, "lon": -73.9117400 }, + { "lat": 40.7202670, "lon": -73.9117779 }, + { "lat": 40.7202630, "lon": -73.9118890 } + ], + "tags": { + "highway": "residential", + "name": "58th Road", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "58th", + "tiger:name_type": "Rd", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 5708927, + "bounds": { + "minlat": 40.7688268, + "minlon": -73.9069225, + "maxlat": 40.7688848, + "maxlon": -73.9069064 + }, + "nodes": [ + 42865836, + 597443960 + ], + "geometry": [ + { "lat": 40.7688848, "lon": -73.9069064 }, + { "lat": 40.7688268, "lon": -73.9069225 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "44th Street", + "oneway": "no", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 5708928, + "bounds": { + "minlat": 40.7284721, + "minlon": -73.9245051, + "maxlat": 40.7306097, + "maxlon": -73.9237103 + }, + "nodes": [ + 42876193, + 5482425984, + 7712008342, + 10087637139, + 5177091565, + 5177091566, + 10087637137, + 42848960 + ], + "geometry": [ + { "lat": 40.7284721, "lon": -73.9245051 }, + { "lat": 40.7288547, "lon": -73.9243647 }, + { "lat": 40.7290745, "lon": -73.9242810 }, + { "lat": 40.7298044, "lon": -73.9240124 }, + { "lat": 40.7299095, "lon": -73.9239737 }, + { "lat": 40.7300602, "lon": -73.9239158 }, + { "lat": 40.7301724, "lon": -73.9238740 }, + { "lat": 40.7306097, "lon": -73.9237103 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "44th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5708929, + "bounds": { + "minlat": 40.7435270, + "minlon": -73.9205211, + "maxlat": 40.7493498, + "maxlon": -73.9193711 + }, + "nodes": [ + 42815088, + 10762234028, + 8506374675, + 7530789530, + 8506374676, + 8506374686, + 10762234016, + 7530789532, + 7530789568, + 7530789567, + 10069693830, + 42923790, + 10069693829, + 10774405532, + 10069693838, + 42817794, + 5852192481, + 10743714089, + 3785693707 + ], + "geometry": [ + { "lat": 40.7493498, "lon": -73.9193711 }, + { "lat": 40.7492768, "lon": -73.9193838 }, + { "lat": 40.7488407, "lon": -73.9194594 }, + { "lat": 40.7486260, "lon": -73.9195022 }, + { "lat": 40.7484943, "lon": -73.9195284 }, + { "lat": 40.7481163, "lon": -73.9196037 }, + { "lat": 40.7479012, "lon": -73.9196466 }, + { "lat": 40.7477378, "lon": -73.9196791 }, + { "lat": 40.7470752, "lon": -73.9198110 }, + { "lat": 40.7470244, "lon": -73.9198211 }, + { "lat": 40.7468723, "lon": -73.9198535 }, + { "lat": 40.7467812, "lon": -73.9198727 }, + { "lat": 40.7467054, "lon": -73.9198880 }, + { "lat": 40.7461835, "lon": -73.9199922 }, + { "lat": 40.7452085, "lon": -73.9201869 }, + { "lat": 40.7451343, "lon": -73.9202033 }, + { "lat": 40.7450407, "lon": -73.9202243 }, + { "lat": 40.7436333, "lon": -73.9205003 }, + { "lat": 40.7435270, "lon": -73.9205211 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "44th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5708945, + "bounds": { + "minlat": 40.7828009, + "minlon": -73.9153103, + "maxlat": 40.7845516, + "maxlon": -73.9131526 + }, + "nodes": [ + 42922387, + 3809745343, + 7776763770, + 7746695002, + 2298768223, + 10764684400, + 7746694997, + 2298768295, + 3809745338, + 42908847 + ], + "geometry": [ + { "lat": 40.7845516, "lon": -73.9131526 }, + { "lat": 40.7845012, "lon": -73.9132267 }, + { "lat": 40.7844558, "lon": -73.9132817 }, + { "lat": 40.7843925, "lon": -73.9133585 }, + { "lat": 40.7843735, "lon": -73.9133815 }, + { "lat": 40.7843308, "lon": -73.9134336 }, + { "lat": 40.7835016, "lon": -73.9144452 }, + { "lat": 40.7830720, "lon": -73.9149692 }, + { "lat": 40.7828535, "lon": -73.9152442 }, + { "lat": 40.7828009, "lon": -73.9153103 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "20th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "20th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 5709057, + "bounds": { + "minlat": 40.7420660, + "minlon": -73.9507008, + "maxlat": 40.7427318, + "maxlon": -73.9504735 + }, + "nodes": [ + 42832462, + 11435872569, + 8334074887, + 9983412343, + 42803159 + ], + "geometry": [ + { "lat": 40.7427318, "lon": -73.9504735 }, + { "lat": 40.7426714, "lon": -73.9504940 }, + { "lat": 40.7421787, "lon": -73.9506619 }, + { "lat": 40.7421369, "lon": -73.9506763 }, + { "lat": 40.7420660, "lon": -73.9507008 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "name": "11th Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "11th", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 5709116, + "bounds": { + "minlat": 40.7562358, + "minlon": -73.9152220, + "maxlat": 40.7637990, + "maxlon": -73.9123966 + }, + "nodes": [ + 42874065, + 6406731707, + 42926316, + 4971238098, + 4971238093, + 42926319, + 4971238096, + 6450632092, + 42920456, + 6450623253, + 7661232276, + 42856566, + 6450679992, + 12830246646, + 5867077862, + 6450631975, + 6450631973, + 6450631974, + 8595235442, + 42885748, + 8595229809, + 8595235428, + 42833506, + 10763752501, + 4912692269, + 42904502, + 4912692273, + 4912692284, + 7726598425, + 5867077865, + 4912692257, + 42860069 + ], + "geometry": [ + { "lat": 40.7637990, "lon": -73.9147791 }, + { "lat": 40.7637146, "lon": -73.9148129 }, + { "lat": 40.7627100, "lon": -73.9152220 }, + { "lat": 40.7624921, "lon": -73.9151828 }, + { "lat": 40.7624389, "lon": -73.9151732 }, + { "lat": 40.7623376, "lon": -73.9151550 }, + { "lat": 40.7622544, "lon": -73.9151389 }, + { "lat": 40.7613443, "lon": -73.9149627 }, + { "lat": 40.7612436, "lon": -73.9149432 }, + { "lat": 40.7611489, "lon": -73.9149235 }, + { "lat": 40.7603702, "lon": -73.9147540 }, + { "lat": 40.7602021, "lon": -73.9147143 }, + { "lat": 40.7600006, "lon": -73.9146253 }, + { "lat": 40.7598284, "lon": -73.9145281 }, + { "lat": 40.7594793, "lon": -73.9143347 }, + { "lat": 40.7594388, "lon": -73.9143125 }, + { "lat": 40.7593763, "lon": -73.9142765 }, + { "lat": 40.7593017, "lon": -73.9142303 }, + { "lat": 40.7586740, "lon": -73.9138301 }, + { "lat": 40.7586056, "lon": -73.9137906 }, + { "lat": 40.7585384, "lon": -73.9137456 }, + { "lat": 40.7579023, "lon": -73.9133546 }, + { "lat": 40.7578422, "lon": -73.9133174 }, + { "lat": 40.7577744, "lon": -73.9132737 }, + { "lat": 40.7571397, "lon": -73.9128644 }, + { "lat": 40.7570794, "lon": -73.9128280 }, + { "lat": 40.7570034, "lon": -73.9127878 }, + { "lat": 40.7564399, "lon": -73.9125000 }, + { "lat": 40.7564131, "lon": -73.9124863 }, + { "lat": 40.7563568, "lon": -73.9124576 }, + { "lat": 40.7563161, "lon": -73.9124332 }, + { "lat": 40.7562358, "lon": -73.9123966 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Newtown Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709126, + "bounds": { + "minlat": 40.7601082, + "minlon": -73.9214086, + "maxlat": 40.7650290, + "maxlon": -73.9173999 + }, + "nodes": [ + 42874059, + 3570249991, + 5119625235, + 5119625238, + 7661684406, + 42856546, + 7661684405, + 5119625242, + 8316237208, + 5119625244, + 8316237142, + 3570249877, + 42882983 + ], + "geometry": [ + { "lat": 40.7650290, "lon": -73.9173999 }, + { "lat": 40.7649585, "lon": -73.9174559 }, + { "lat": 40.7647131, "lon": -73.9176537 }, + { "lat": 40.7633241, "lon": -73.9187684 }, + { "lat": 40.7625193, "lon": -73.9194268 }, + { "lat": 40.7624489, "lon": -73.9194825 }, + { "lat": 40.7623863, "lon": -73.9195319 }, + { "lat": 40.7619285, "lon": -73.9199028 }, + { "lat": 40.7615916, "lon": -73.9201809 }, + { "lat": 40.7612573, "lon": -73.9204576 }, + { "lat": 40.7605873, "lon": -73.9210121 }, + { "lat": 40.7601807, "lon": -73.9213486 }, + { "lat": 40.7601082, "lon": -73.9214086 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "yes", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "36th Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709127, + "bounds": { + "minlat": 40.7404977, + "minlon": -73.9296773, + "maxlat": 40.7441914, + "maxlon": -73.9289298 + }, + "nodes": [ + 597294520, + 10743722695, + 6166708801, + 10081023585, + 42860598, + 10081023587, + 10081023586, + 42880298 + ], + "geometry": [ + { "lat": 40.7441914, "lon": -73.9289298 }, + { "lat": 40.7440980, "lon": -73.9289485 }, + { "lat": 40.7439937, "lon": -73.9289709 }, + { "lat": 40.7424281, "lon": -73.9292889 }, + { "lat": 40.7423457, "lon": -73.9293055 }, + { "lat": 40.7422593, "lon": -73.9293228 }, + { "lat": 40.7405827, "lon": -73.9296596 }, + { "lat": 40.7404977, "lon": -73.9296773 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "36th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709131, + "bounds": { + "minlat": 40.7732019, + "minlon": -73.9273696, + "maxlat": 40.7732901, + "maxlon": -73.9251003 + }, + "nodes": [ + 42826027, + 3570422554, + 3570422553, + 6452962545, + 42866518 + ], + "geometry": [ + { "lat": 40.7732901, "lon": -73.9251003 }, + { "lat": 40.7732827, "lon": -73.9252666 }, + { "lat": 40.7732062, "lon": -73.9272616 }, + { "lat": 40.7732044, "lon": -73.9273082 }, + { "lat": 40.7732019, "lon": -73.9273696 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "26th Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709132, + "bounds": { + "minlat": 40.7535396, + "minlon": -73.9452686, + "maxlat": 40.7608095, + "maxlon": -73.9391559 + }, + "nodes": [ + 42819711, + 8334165788, + 5491803944, + 8334076731, + 42895303, + 8334074884, + 5491803954, + 42906419, + 6818388766, + 7987870311, + 7713828627, + 8334076737, + 42876752, + 8334074890, + 7713828623, + 6452768066, + 42815770, + 6452768065, + 3569402191, + 42926489 + ], + "geometry": [ + { "lat": 40.7535396, "lon": -73.9452686 }, + { "lat": 40.7535547, "lon": -73.9452430 }, + { "lat": 40.7535653, "lon": -73.9452251 }, + { "lat": 40.7547609, "lon": -73.9440685 }, + { "lat": 40.7548100, "lon": -73.9440190 }, + { "lat": 40.7548682, "lon": -73.9439606 }, + { "lat": 40.7559991, "lon": -73.9428768 }, + { "lat": 40.7560590, "lon": -73.9428220 }, + { "lat": 40.7561310, "lon": -73.9427534 }, + { "lat": 40.7572212, "lon": -73.9417119 }, + { "lat": 40.7580123, "lon": -73.9409563 }, + { "lat": 40.7580542, "lon": -73.9409183 }, + { "lat": 40.7581110, "lon": -73.9408620 }, + { "lat": 40.7581840, "lon": -73.9407991 }, + { "lat": 40.7593622, "lon": -73.9400605 }, + { "lat": 40.7594076, "lon": -73.9400322 }, + { "lat": 40.7594690, "lon": -73.9399940 }, + { "lat": 40.7595466, "lon": -73.9399445 }, + { "lat": 40.7607347, "lon": -73.9392137 }, + { "lat": 40.7608095, "lon": -73.9391559 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "12th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709134, + "bounds": { + "minlat": 40.7504962, + "minlon": -73.9480547, + "maxlat": 40.7529191, + "maxlon": -73.9458631 + }, + "nodes": [ + 2472695935, + 276033444, + 2472695950, + 8062562642, + 11211160208, + 42818112, + 11211160207, + 42916952 + ], + "geometry": [ + { "lat": 40.7529191, "lon": -73.9458631 }, + { "lat": 40.7528399, "lon": -73.9459348 }, + { "lat": 40.7527853, "lon": -73.9459851 }, + { "lat": 40.7515439, "lon": -73.9471418 }, + { "lat": 40.7515076, "lon": -73.9471757 }, + { "lat": 40.7514360, "lon": -73.9472424 }, + { "lat": 40.7513702, "lon": -73.9472993 }, + { "lat": 40.7504962, "lon": -73.9480547 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709135, + "bounds": { + "minlat": 40.7498780, + "minlon": -73.9485772, + "maxlat": 40.7504962, + "maxlon": -73.9480547 + }, + "nodes": [ + 42916952, + 8334165812, + 8334173141, + 42917501 + ], + "geometry": [ + { "lat": 40.7504962, "lon": -73.9480547 }, + { "lat": 40.7504505, "lon": -73.9480934 }, + { "lat": 40.7499459, "lon": -73.9485234 }, + { "lat": 40.7498780, "lon": -73.9485772 } + ], + "tags": { + "highway": "pedestrian", + "name": "12th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709152, + "bounds": { + "minlat": 40.7727141, + "minlon": -73.9326803, + "maxlat": 40.7742208, + "maxlon": -73.9318213 + }, + "nodes": [ + 42811435, + 7733783912, + 5104280943, + 5104280945, + 2457195021, + 7081691930, + 42833066, + 2461962694, + 5104280942, + 5104280941, + 2459401741, + 42926712 + ], + "geometry": [ + { "lat": 40.7742208, "lon": -73.9318213 }, + { "lat": 40.7741455, "lon": -73.9318632 }, + { "lat": 40.7741212, "lon": -73.9318769 }, + { "lat": 40.7739093, "lon": -73.9319963 }, + { "lat": 40.7736470, "lon": -73.9321442 }, + { "lat": 40.7733269, "lon": -73.9323194 }, + { "lat": 40.7732820, "lon": -73.9323440 }, + { "lat": 40.7731796, "lon": -73.9324043 }, + { "lat": 40.7730220, "lon": -73.9324971 }, + { "lat": 40.7728437, "lon": -73.9326020 }, + { "lat": 40.7727806, "lon": -73.9326391 }, + { "lat": 40.7727141, "lon": -73.9326803 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "8th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709175, + "bounds": { + "minlat": 40.7613440, + "minlon": -73.9413907, + "maxlat": 40.7637352, + "maxlon": -73.9353960 + }, + "nodes": [ + 42826813, + 6452542341, + 8158221253, + 6452542347, + 42890447, + 6452542348, + 6452542353, + 42909195, + 6452542354, + 6452542361, + 42867027, + 6452542362, + 6452542369, + 42926487, + 6452542370, + 2302476368, + 6956959120, + 7710100127, + 4991539808, + 42825865 + ], + "geometry": [ + { "lat": 40.7637352, "lon": -73.9413907 }, + { "lat": 40.7637007, "lon": -73.9412984 }, + { "lat": 40.7636812, "lon": -73.9412447 }, + { "lat": 40.7634474, "lon": -73.9406022 }, + { "lat": 40.7634230, "lon": -73.9405350 }, + { "lat": 40.7633985, "lon": -73.9404665 }, + { "lat": 40.7631548, "lon": -73.9397863 }, + { "lat": 40.7631300, "lon": -73.9397170 }, + { "lat": 40.7631034, "lon": -73.9396432 }, + { "lat": 40.7628719, "lon": -73.9390007 }, + { "lat": 40.7628360, "lon": -73.9389010 }, + { "lat": 40.7628008, "lon": -73.9388028 }, + { "lat": 40.7625692, "lon": -73.9381572 }, + { "lat": 40.7625376, "lon": -73.9380691 }, + { "lat": 40.7624871, "lon": -73.9379297 }, + { "lat": 40.7622849, "lon": -73.9373717 }, + { "lat": 40.7620167, "lon": -73.9368086 }, + { "lat": 40.7616016, "lon": -73.9359370 }, + { "lat": 40.7614028, "lon": -73.9355196 }, + { "lat": 40.7613440, "lon": -73.9353960 } + ], + "tags": { + "highway": "tertiary", + "name": "35th Avenue" + } +}, +{ + "type": "way", + "id": 5709393, + "bounds": { + "minlat": 40.7485421, + "minlon": -73.9544685, + "maxlat": 40.7490196, + "maxlon": -73.9519906 + }, + "nodes": [ + 42866887, + 7984810781, + 2470426876, + 5487784883, + 2991208462, + 8158232273, + 9982771934, + 42826856, + 4675915069 + ], + "geometry": [ + { "lat": 40.7490196, "lon": -73.9544685 }, + { "lat": 40.7488546, "lon": -73.9536161 }, + { "lat": 40.7487808, "lon": -73.9532346 }, + { "lat": 40.7487451, "lon": -73.9530504 }, + { "lat": 40.7486925, "lon": -73.9527787 }, + { "lat": 40.7486140, "lon": -73.9523642 }, + { "lat": 40.7486029, "lon": -73.9523040 }, + { "lat": 40.7485811, "lon": -73.9521933 }, + { "lat": 40.7485421, "lon": -73.9519906 } + ], + "tags": { + "highway": "residential", + "name": "45th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709613, + "bounds": { + "minlat": 40.7147583, + "minlon": -73.9068377, + "maxlat": 40.7193343, + "maxlon": -73.9058015 + }, + "nodes": [ + 42881185, + 11055685874, + 11392563456, + 42838801, + 13048049509, + 42851278, + 13048049513, + 9759984294, + 42882344, + 9759984296, + 9759984369, + 42858150, + 9759984367, + 9759657473, + 42806446, + 9759657475, + 11002490975, + 42844590, + 597688972 + ], + "geometry": [ + { "lat": 40.7193343, "lon": -73.9068377 }, + { "lat": 40.7192493, "lon": -73.9068171 }, + { "lat": 40.7188802, "lon": -73.9067277 }, + { "lat": 40.7187950, "lon": -73.9067070 }, + { "lat": 40.7181087, "lon": -73.9065540 }, + { "lat": 40.7180460, "lon": -73.9065400 }, + { "lat": 40.7179985, "lon": -73.9065296 }, + { "lat": 40.7174301, "lon": -73.9064038 }, + { "lat": 40.7173640, "lon": -73.9063900 }, + { "lat": 40.7173175, "lon": -73.9063799 }, + { "lat": 40.7164938, "lon": -73.9061925 }, + { "lat": 40.7164210, "lon": -73.9061760 }, + { "lat": 40.7163734, "lon": -73.9061651 }, + { "lat": 40.7158193, "lon": -73.9060384 }, + { "lat": 40.7157430, "lon": -73.9060210 }, + { "lat": 40.7156930, "lon": -73.9060107 }, + { "lat": 40.7152345, "lon": -73.9059059 }, + { "lat": 40.7150690, "lon": -73.9058680 }, + { "lat": 40.7147583, "lon": -73.9058015 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "60th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "60th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 5709617, + "bounds": { + "minlat": 40.7130608, + "minlon": -73.9088891, + "maxlat": 40.7152625, + "maxlon": -73.9075055 + }, + "nodes": [ + 597688992, + 7980856281, + 11002490955, + 42855323, + 9759984149, + 7980856275, + 9758475517, + 9747646465, + 42900209, + 9747646466, + 9758475518, + 6423798086, + 42843597 + ], + "geometry": [ + { "lat": 40.7152625, "lon": -73.9075055 }, + { "lat": 40.7149897, "lon": -73.9077655 }, + { "lat": 40.7145059, "lon": -73.9082265 }, + { "lat": 40.7144540, "lon": -73.9082760 }, + { "lat": 40.7144081, "lon": -73.9083204 }, + { "lat": 40.7141779, "lon": -73.9085426 }, + { "lat": 40.7139917, "lon": -73.9087351 }, + { "lat": 40.7139580, "lon": -73.9087700 }, + { "lat": 40.7138924, "lon": -73.9087981 }, + { "lat": 40.7138397, "lon": -73.9088147 }, + { "lat": 40.7137886, "lon": -73.9088226 }, + { "lat": 40.7131507, "lon": -73.9088891 }, + { "lat": 40.7130608, "lon": -73.9088320 } + ], + "tags": { + "highway": "residential", + "name": "Andrews Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709653, + "bounds": { + "minlat": 40.7539772, + "minlon": -73.9493907, + "maxlat": 40.7541784, + "maxlon": -73.9485753 + }, + "nodes": [ + 42826837, + 6452722143, + 10864444182, + 2089938142, + 7746891093 + ], + "geometry": [ + { "lat": 40.7541784, "lon": -73.9493907 }, + { "lat": 40.7541541, "lon": -73.9492944 }, + { "lat": 40.7540903, "lon": -73.9490420 }, + { "lat": 40.7540831, "lon": -73.9490134 }, + { "lat": 40.7539772, "lon": -73.9485753 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Queens Plaza South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709657, + "bounds": { + "minlat": 40.7441661, + "minlon": -73.9124839, + "maxlat": 40.7458813, + "maxlon": -73.9121463 + }, + "nodes": [ + 42817819, + 10074123208, + 10762233966, + 42932262 + ], + "geometry": [ + { "lat": 40.7441661, "lon": -73.9124839 }, + { "lat": 40.7442980, "lon": -73.9124598 }, + { "lat": 40.7458128, "lon": -73.9121599 }, + { "lat": 40.7458813, "lon": -73.9121463 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "52nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709658, + "bounds": { + "minlat": 40.7459152, + "minlon": -73.9124455, + "maxlat": 40.7486850, + "maxlon": -73.9116420 + }, + "nodes": [ + 42892893, + 7667084782, + 4621136456, + 10074123206, + 42803248, + 10074123205, + 42808384, + 42846014, + 3656047344, + 10774439409, + 5867099385, + 10074123202, + 42932279 + ], + "geometry": [ + { "lat": 40.7486850, "lon": -73.9116420 }, + { "lat": 40.7486247, "lon": -73.9116736 }, + { "lat": 40.7483418, "lon": -73.9118210 }, + { "lat": 40.7482655, "lon": -73.9118538 }, + { "lat": 40.7481892, "lon": -73.9118840 }, + { "lat": 40.7480943, "lon": -73.9119162 }, + { "lat": 40.7479990, "lon": -73.9119426 }, + { "lat": 40.7473007, "lon": -73.9121264 }, + { "lat": 40.7464199, "lon": -73.9123419 }, + { "lat": 40.7463169, "lon": -73.9123627 }, + { "lat": 40.7460691, "lon": -73.9124127 }, + { "lat": 40.7460174, "lon": -73.9124238 }, + { "lat": 40.7459152, "lon": -73.9124455 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "52nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709659, + "bounds": { + "minlat": 40.7487150, + "minlon": -73.9118880, + "maxlat": 40.7499790, + "maxlon": -73.9116250 + }, + "nodes": [ + 42815119, + 8239602765, + 7059062007, + 7667084781, + 42892881 + ], + "geometry": [ + { "lat": 40.7499790, "lon": -73.9116250 }, + { "lat": 40.7499261, "lon": -73.9116360 }, + { "lat": 40.7495506, "lon": -73.9117141 }, + { "lat": 40.7487976, "lon": -73.9118684 }, + { "lat": 40.7487150, "lon": -73.9118880 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "52nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709664, + "bounds": { + "minlat": 40.7490021, + "minlon": -73.9405350, + "maxlat": 40.7494240, + "maxlon": -73.9397181 + }, + "nodes": [ + 42817470, + 10994725861, + 10994725870, + 42872006 + ], + "geometry": [ + { "lat": 40.7490021, "lon": -73.9397181 }, + { "lat": 40.7490621, "lon": -73.9398345 }, + { "lat": 40.7493898, "lon": -73.9404688 }, + { "lat": 40.7494240, "lon": -73.9405350 } + ], + "tags": { + "highway": "residential", + "name": "42nd Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "42nd", + "tiger:name_type": "Rd", + "tiger:reviewed": "name", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 5709688, + "bounds": { + "minlat": 40.7771970, + "minlon": -73.9073800, + "maxlat": 40.7789604, + "maxlon": -73.9052344 + }, + "nodes": [ + 42922402, + 7779193107, + 8500089246, + 42932465, + 11947938261, + 8626128148, + 9776116463, + 42908896 + ], + "geometry": [ + { "lat": 40.7789604, "lon": -73.9052344 }, + { "lat": 40.7789047, "lon": -73.9053028 }, + { "lat": 40.7783208, "lon": -73.9060114 }, + { "lat": 40.7782770, "lon": -73.9060650 }, + { "lat": 40.7782336, "lon": -73.9061178 }, + { "lat": 40.7772808, "lon": -73.9072780 }, + { "lat": 40.7772556, "lon": -73.9073087 }, + { "lat": 40.7771970, "lon": -73.9073800 } + ], + "tags": { + "highway": "residential", + "name": "33rd Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "33rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11102", + "tiger:zip_right": "11102" + } +}, +{ + "type": "way", + "id": 5709690, + "bounds": { + "minlat": 40.7519927, + "minlon": -73.9312596, + "maxlat": 40.7612244, + "maxlon": -73.9237843 + }, + "nodes": [ + 42932492, + 3569905418, + 8276868439, + 3569401922, + 42876788, + 3569401926, + 8699111951, + 3573447529, + 42815820, + 3573447532, + 3569401963, + 42932488, + 3569401969, + 3574982351, + 42927001, + 3574982354, + 6450510828, + 42824136, + 6450563910, + 3570249897, + 42882975 + ], + "geometry": [ + { "lat": 40.7519927, "lon": -73.9312596 }, + { "lat": 40.7521189, "lon": -73.9311623 }, + { "lat": 40.7526118, "lon": -73.9307769 }, + { "lat": 40.7529120, "lon": -73.9305449 }, + { "lat": 40.7529723, "lon": -73.9304956 }, + { "lat": 40.7530408, "lon": -73.9304400 }, + { "lat": 40.7533243, "lon": -73.9302094 }, + { "lat": 40.7540647, "lon": -73.9296071 }, + { "lat": 40.7541287, "lon": -73.9295551 }, + { "lat": 40.7541986, "lon": -73.9294982 }, + { "lat": 40.7557732, "lon": -73.9282174 }, + { "lat": 40.7558413, "lon": -73.9281620 }, + { "lat": 40.7559141, "lon": -73.9281028 }, + { "lat": 40.7573185, "lon": -73.9269602 }, + { "lat": 40.7573825, "lon": -73.9269082 }, + { "lat": 40.7574547, "lon": -73.9268494 }, + { "lat": 40.7588569, "lon": -73.9257088 }, + { "lat": 40.7589212, "lon": -73.9256566 }, + { "lat": 40.7589946, "lon": -73.9255970 }, + { "lat": 40.7611517, "lon": -73.9238458 }, + { "lat": 40.7612244, "lon": -73.9237843 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "33rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709691, + "bounds": { + "minlat": 40.7388903, + "minlon": -73.9328412, + "maxlat": 40.7408205, + "maxlon": -73.9324558 + }, + "nodes": [ + 42832518, + 9981925192, + 3470766768, + 10083107628, + 42880287 + ], + "geometry": [ + { "lat": 40.7388903, "lon": -73.9328412 }, + { "lat": 40.7389433, "lon": -73.9328324 }, + { "lat": 40.7397076, "lon": -73.9326836 }, + { "lat": 40.7407332, "lon": -73.9324744 }, + { "lat": 40.7408205, "lon": -73.9324558 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "33rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709699, + "bounds": { + "minlat": 40.7726834, + "minlon": -73.9149660, + "maxlat": 40.7741510, + "maxlon": -73.9128927 + }, + "nodes": [ + 42833268, + 6450658440, + 6450658436, + 42849673, + 7784017613, + 9776116439, + 42905182, + 9776116441, + 9845161122, + 9776116433, + 42932473 + ], + "geometry": [ + { "lat": 40.7741510, "lon": -73.9149660 }, + { "lat": 40.7741116, "lon": -73.9149103 }, + { "lat": 40.7735228, "lon": -73.9140783 }, + { "lat": 40.7734490, "lon": -73.9139740 }, + { "lat": 40.7733801, "lon": -73.9138764 }, + { "lat": 40.7730632, "lon": -73.9134263 }, + { "lat": 40.7730320, "lon": -73.9133820 }, + { "lat": 40.7730064, "lon": -73.9133461 }, + { "lat": 40.7727621, "lon": -73.9130032 }, + { "lat": 40.7727377, "lon": -73.9129689 }, + { "lat": 40.7726834, "lon": -73.9128927 } + ], + "tags": { + "highway": "residential", + "name": "23rd Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709700, + "bounds": { + "minlat": 40.7695933, + "minlon": -73.9095105, + "maxlat": 40.7700280, + "maxlon": -73.9067868 + }, + "nodes": [ + 42917848, + 9236643609, + 5866682094, + 9776150571, + 42932544, + 9776150596, + 5866682092, + 9776150593, + 42920422, + 9776150590, + 5866682093, + 11619734092, + 42865831 + ], + "geometry": [ + { "lat": 40.7700280, "lon": -73.9095105 }, + { "lat": 40.7700105, "lon": -73.9093936 }, + { "lat": 40.7698812, "lon": -73.9085301 }, + { "lat": 40.7698727, "lon": -73.9084827 }, + { "lat": 40.7698508, "lon": -73.9083462 }, + { "lat": 40.7698398, "lon": -73.9082798 }, + { "lat": 40.7696999, "lon": -73.9074323 }, + { "lat": 40.7696895, "lon": -73.9073695 }, + { "lat": 40.7696710, "lon": -73.9072572 }, + { "lat": 40.7696573, "lon": -73.9071727 }, + { "lat": 40.7696102, "lon": -73.9068893 }, + { "lat": 40.7696043, "lon": -73.9068534 }, + { "lat": 40.7695933, "lon": -73.9067868 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "23rd Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709704, + "bounds": { + "minlat": 40.7774400, + "minlon": -73.9207870, + "maxlat": 40.7789520, + "maxlon": -73.9186480 + }, + "nodes": [ + 42812036, + 6459357299, + 2753135607, + 2753135611, + 7722330242, + 6459357297, + 42825992, + 6459357067, + 2753135621, + 2753135624, + 11618896405, + 6450658443, + 42920835 + ], + "geometry": [ + { "lat": 40.7789520, "lon": -73.9207870 }, + { "lat": 40.7789158, "lon": -73.9207357 }, + { "lat": 40.7787165, "lon": -73.9204532 }, + { "lat": 40.7784222, "lon": -73.9200375 }, + { "lat": 40.7782491, "lon": -73.9197927 }, + { "lat": 40.7782168, "lon": -73.9197470 }, + { "lat": 40.7781512, "lon": -73.9196542 }, + { "lat": 40.7780842, "lon": -73.9195597 }, + { "lat": 40.7778780, "lon": -73.9192653 }, + { "lat": 40.7776739, "lon": -73.9189789 }, + { "lat": 40.7775190, "lon": -73.9187600 }, + { "lat": 40.7774805, "lon": -73.9187056 }, + { "lat": 40.7774400, "lon": -73.9186480 } + ], + "tags": { + "highway": "residential", + "name": "23rd Road", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "23rd", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "11105", + "tiger:zip_left_1": "11105", + "tiger:zip_left_2": "11105", + "tiger:zip_right": "11105", + "tiger:zip_right_2": "11105" + } +}, +{ + "type": "way", + "id": 5709737, + "bounds": { + "minlat": 40.7518992, + "minlon": -73.9245791, + "maxlat": 40.7524220, + "maxlon": -73.9243604 + }, + "nodes": [ + 42917872, + 9189020446, + 10069673286, + 9189020445, + 3569401908, + 10069673285, + 3546086611, + 10069673287, + 6828923469, + 597500970 + ], + "geometry": [ + { "lat": 40.7524220, "lon": -73.9243604 }, + { "lat": 40.7523455, "lon": -73.9244335 }, + { "lat": 40.7523249, "lon": -73.9244507 }, + { "lat": 40.7523012, "lon": -73.9244675 }, + { "lat": 40.7522722, "lon": -73.9244842 }, + { "lat": 40.7522400, "lon": -73.9244979 }, + { "lat": 40.7522101, "lon": -73.9245067 }, + { "lat": 40.7521786, "lon": -73.9245150 }, + { "lat": 40.7520780, "lon": -73.9245378 }, + { "lat": 40.7518992, "lon": -73.9245791 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "39th Street", + "parking:lane:both": "no_parking", + "surface": "asphalt", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 5709814, + "bounds": { + "minlat": 40.7394412, + "minlon": -73.9349239, + "maxlat": 40.7398393, + "maxlon": -73.9346328 + }, + "nodes": [ + 42832509, + 9981925204, + 9981925203, + 42866370 + ], + "geometry": [ + { "lat": 40.7398393, "lon": -73.9349239 }, + { "lat": 40.7396321, "lon": -73.9347759 }, + { "lat": 40.7395859, "lon": -73.9347423 }, + { "lat": 40.7394412, "lon": -73.9346328 } + ], + "tags": { + "highway": "unclassified", + "name": "Gale Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709815, + "bounds": { + "minlat": 40.7363566, + "minlon": -73.9330679, + "maxlat": 40.7371152, + "maxlon": -73.9326659 + }, + "nodes": [ + 597294499, + 9982697947, + 8316786984, + 42866699, + 9982697946, + 9982697945, + 9982697944, + 8316786972, + 5482230590, + 8316786959, + 9981925179, + 42896787 + ], + "geometry": [ + { "lat": 40.7371152, "lon": -73.9330306 }, + { "lat": 40.7370604, "lon": -73.9330493 }, + { "lat": 40.7370173, "lon": -73.9330633 }, + { "lat": 40.7369967, "lon": -73.9330679 }, + { "lat": 40.7369803, "lon": -73.9330651 }, + { "lat": 40.7369641, "lon": -73.9330565 }, + { "lat": 40.7369381, "lon": -73.9330426 }, + { "lat": 40.7368962, "lon": -73.9330170 }, + { "lat": 40.7366370, "lon": -73.9328529 }, + { "lat": 40.7364609, "lon": -73.9327369 }, + { "lat": 40.7364297, "lon": -73.9327157 }, + { "lat": 40.7363566, "lon": -73.9326659 } + ], + "tags": { + "highway": "unclassified", + "name": "Gale Avenue", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5709885, + "bounds": { + "minlat": 40.7357486, + "minlon": -73.9381473, + "maxlat": 40.7379946, + "maxlon": -73.9367642 + }, + "nodes": [ + 597269953, + 9982287324, + 9982287321, + 9982287323, + 9982287322, + 7257272785, + 8506457582, + 7265420383, + 13048014426, + 42849624, + 42908540, + 6762403075, + 42866381 + ], + "geometry": [ + { "lat": 40.7379946, "lon": -73.9381421 }, + { "lat": 40.7379463, "lon": -73.9381473 }, + { "lat": 40.7379245, "lon": -73.9381425 }, + { "lat": 40.7379010, "lon": -73.9381360 }, + { "lat": 40.7378793, "lon": -73.9381246 }, + { "lat": 40.7376738, "lon": -73.9379951 }, + { "lat": 40.7375338, "lon": -73.9379065 }, + { "lat": 40.7372233, "lon": -73.9377100 }, + { "lat": 40.7370018, "lon": -73.9375683 }, + { "lat": 40.7369266, "lon": -73.9375200 }, + { "lat": 40.7362941, "lon": -73.9371176 }, + { "lat": 40.7358562, "lon": -73.9368328 }, + { "lat": 40.7357486, "lon": -73.9367642 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Starr Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709905, + "bounds": { + "minlat": 40.7105435, + "minlon": -73.9215367, + "maxlat": 40.7109804, + "maxlon": -73.9207414 + }, + "nodes": [ + 42934632, + 551613174, + 9747567488, + 9744131292, + 42881140 + ], + "geometry": [ + { "lat": 40.7109804, "lon": -73.9215367 }, + { "lat": 40.7108012, "lon": -73.9212100 }, + { "lat": 40.7106197, "lon": -73.9208800 }, + { "lat": 40.7105917, "lon": -73.9208289 }, + { "lat": 40.7105435, "lon": -73.9207414 } + ], + "tags": { + "highway": "residential", + "name": "Seneca Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 5709909, + "bounds": { + "minlat": 40.7014930, + "minlon": -73.9143610, + "maxlat": 40.7067550, + "maxlon": -73.9054670 + }, + "nodes": [ + 42934645, + 6024795694, + 8509376119, + 9761722044, + 42888327, + 9761722042, + 9761722023, + 42814482, + 9761722021, + 11047985036, + 42876052, + 11047985037, + 11175031788, + 9762206509, + 42902896, + 9762206511, + 11175031787, + 9762206523, + 42827218, + 9762206525, + 9762206537, + 42916360, + 9762206539, + 9762206551, + 42934657, + 9762206552, + 9762206565, + 42934477, + 9762206567, + 11107097254, + 11175031786, + 9762206580, + 42870698, + 9762206578, + 9762206607, + 42871170, + 9762206610, + 9762206670, + 42848478, + 9762206672, + 9762206733, + 42853148 + ], + "geometry": [ + { "lat": 40.7067550, "lon": -73.9143610 }, + { "lat": 40.7067159, "lon": -73.9142941 }, + { "lat": 40.7065538, "lon": -73.9140214 }, + { "lat": 40.7063594, "lon": -73.9136932 }, + { "lat": 40.7063160, "lon": -73.9136200 }, + { "lat": 40.7062814, "lon": -73.9135612 }, + { "lat": 40.7059225, "lon": -73.9129518 }, + { "lat": 40.7058790, "lon": -73.9128780 }, + { "lat": 40.7058427, "lon": -73.9128168 }, + { "lat": 40.7054822, "lon": -73.9122082 }, + { "lat": 40.7054400, "lon": -73.9121370 }, + { "lat": 40.7054057, "lon": -73.9120790 }, + { "lat": 40.7052037, "lon": -73.9117373 }, + { "lat": 40.7050449, "lon": -73.9114686 }, + { "lat": 40.7050020, "lon": -73.9113960 }, + { "lat": 40.7049688, "lon": -73.9113398 }, + { "lat": 40.7048125, "lon": -73.9110753 }, + { "lat": 40.7046065, "lon": -73.9107268 }, + { "lat": 40.7045640, "lon": -73.9106550 }, + { "lat": 40.7045318, "lon": -73.9106005 }, + { "lat": 40.7041676, "lon": -73.9099852 }, + { "lat": 40.7041260, "lon": -73.9099150 }, + { "lat": 40.7040917, "lon": -73.9098569 }, + { "lat": 40.7037287, "lon": -73.9092419 }, + { "lat": 40.7036880, "lon": -73.9091730 }, + { "lat": 40.7036568, "lon": -73.9091214 }, + { "lat": 40.7032913, "lon": -73.9085019 }, + { "lat": 40.7032500, "lon": -73.9084320 }, + { "lat": 40.7032153, "lon": -73.9083735 }, + { "lat": 40.7031931, "lon": -73.9083361 }, + { "lat": 40.7029315, "lon": -73.9078942 }, + { "lat": 40.7028582, "lon": -73.9077703 }, + { "lat": 40.7028076, "lon": -73.9076849 }, + { "lat": 40.7027683, "lon": -73.9076188 }, + { "lat": 40.7024133, "lon": -73.9070213 }, + { "lat": 40.7023710, "lon": -73.9069500 }, + { "lat": 40.7023361, "lon": -73.9068911 }, + { "lat": 40.7019762, "lon": -73.9062842 }, + { "lat": 40.7019310, "lon": -73.9062080 }, + { "lat": 40.7018997, "lon": -73.9061551 }, + { "lat": 40.7015360, "lon": -73.9055397 }, + { "lat": 40.7014930, "lon": -73.9054670 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Seneca Avenue", + "name:etymology:wikidata": "Q213422", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709910, + "bounds": { + "minlat": 40.7089450, + "minlon": -73.9195460, + "maxlat": 40.7098210, + "maxlon": -73.9180730 + }, + "nodes": [ + 42923023, + 9744131316, + 9588768011, + 9744131309, + 42898828, + 9744131308, + 10686537759, + 42859103 + ], + "geometry": [ + { "lat": 40.7098210, "lon": -73.9195460 }, + { "lat": 40.7097892, "lon": -73.9194927 }, + { "lat": 40.7097565, "lon": -73.9194379 }, + { "lat": 40.7094226, "lon": -73.9188780 }, + { "lat": 40.7093820, "lon": -73.9188100 }, + { "lat": 40.7093480, "lon": -73.9187526 }, + { "lat": 40.7093195, "lon": -73.9187045 }, + { "lat": 40.7089450, "lon": -73.9180730 } + ], + "tags": { + "highway": "residential", + "name": "Seneca Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709957, + "bounds": { + "minlat": 40.7132894, + "minlon": -73.9135133, + "maxlat": 40.7148839, + "maxlon": -73.9107142 + }, + "nodes": [ + 5515218205, + 11002490970, + 42847258, + 11002490969, + 9759984069, + 42881149 + ], + "geometry": [ + { "lat": 40.7132894, "lon": -73.9107142 }, + { "lat": 40.7141450, "lon": -73.9122271 }, + { "lat": 40.7141774, "lon": -73.9122854 }, + { "lat": 40.7142191, "lon": -73.9123579 }, + { "lat": 40.7148204, "lon": -73.9134021 }, + { "lat": 40.7148839, "lon": -73.9135133 } + ], + "tags": { + "highway": "residential", + "name": "54th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5709959, + "bounds": { + "minlat": 40.7531933, + "minlon": -73.9066866, + "maxlat": 40.7533185, + "maxlon": -73.9066678 + }, + "nodes": [ + 7758314403, + 7762260265 + ], + "geometry": [ + { "lat": 40.7531933, "lon": -73.9066678 }, + { "lat": 40.7533185, "lon": -73.9066866 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "54th Street", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709960, + "bounds": { + "minlat": 40.7447428, + "minlon": -73.9105638, + "maxlat": 40.7456677, + "maxlon": -73.9103683 + }, + "nodes": [ + 42935106, + 10074123214, + 10762234108, + 42870238 + ], + "geometry": [ + { "lat": 40.7456677, "lon": -73.9103683 }, + { "lat": 40.7455940, "lon": -73.9103847 }, + { "lat": 40.7448337, "lon": -73.9105447 }, + { "lat": 40.7447428, "lon": -73.9105638 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "54th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709961, + "bounds": { + "minlat": 40.7150716, + "minlon": -73.9151670, + "maxlat": 40.7185550, + "maxlon": -73.9132554 + }, + "nodes": [ + 42881151, + 9759984044, + 597676398, + 9744131389, + 42871290 + ], + "geometry": [ + { "lat": 40.7150716, "lon": -73.9132554 }, + { "lat": 40.7151710, "lon": -73.9133149 }, + { "lat": 40.7162215, "lon": -73.9139113 }, + { "lat": 40.7184777, "lon": -73.9151255 }, + { "lat": 40.7185550, "lon": -73.9151670 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "54th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5709963, + "bounds": { + "minlat": 40.7501190, + "minlon": -73.9083190, + "maxlat": 40.7532960, + "maxlon": -73.9069005 + }, + "nodes": [ + 7762260254, + 3569893204, + 3778449463, + 1414020891, + 42935125, + 8089088628, + 11643653088, + 42815935, + 11643653051, + 42904573, + 42876811 + ], + "geometry": [ + { "lat": 40.7532960, "lon": -73.9069005 }, + { "lat": 40.7531590, "lon": -73.9069656 }, + { "lat": 40.7529755, "lon": -73.9070476 }, + { "lat": 40.7524562, "lon": -73.9072801 }, + { "lat": 40.7514580, "lon": -73.9077210 }, + { "lat": 40.7512021, "lon": -73.9078359 }, + { "lat": 40.7511708, "lon": -73.9078500 }, + { "lat": 40.7510860, "lon": -73.9078880 }, + { "lat": 40.7510088, "lon": -73.9079220 }, + { "lat": 40.7506640, "lon": -73.9080740 }, + { "lat": 40.7501190, "lon": -73.9083190 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "54th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "54th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 5709964, + "bounds": { + "minlat": 40.7455586, + "minlon": -73.9099621, + "maxlat": 40.7468600, + "maxlon": -73.9096750 + }, + "nodes": [ + 42846029, + 6908610235, + 7127815234, + 10074125217, + 10074125218, + 10074125219, + 42935137 + ], + "geometry": [ + { "lat": 40.7468600, "lon": -73.9096750 }, + { "lat": 40.7467468, "lon": -73.9096979 }, + { "lat": 40.7460197, "lon": -73.9098452 }, + { "lat": 40.7456596, "lon": -73.9099265 }, + { "lat": 40.7456205, "lon": -73.9099380 }, + { "lat": 40.7455914, "lon": -73.9099490 }, + { "lat": 40.7455586, "lon": -73.9099621 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "54th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709969, + "bounds": { + "minlat": 40.7479638, + "minlon": -73.9522338, + "maxlat": 40.7498436, + "maxlon": -73.9425060 + }, + "nodes": [ + 42830910, + 11748559737, + 8158221256, + 10994725853, + 42818600, + 9982745654, + 42861168, + 6253213395, + 9982745679, + 42920903, + 9982745680, + 13037421809, + 8334173159, + 42825901, + 8334165803, + 9982745694, + 42866912, + 11211159912, + 2472137202, + 7746800889, + 5460924805, + 8158221229, + 9982771936, + 11622964586, + 42890438, + 9982771937, + 5034184399, + 9982771938, + 597241928 + ], + "geometry": [ + { "lat": 40.7479638, "lon": -73.9425060 }, + { "lat": 40.7479796, "lon": -73.9425792 }, + { "lat": 40.7480233, "lon": -73.9427818 }, + { "lat": 40.7480382, "lon": -73.9428459 }, + { "lat": 40.7480509, "lon": -73.9429252 }, + { "lat": 40.7480701, "lon": -73.9430252 }, + { "lat": 40.7482328, "lon": -73.9438682 }, + { "lat": 40.7483806, "lon": -73.9446345 }, + { "lat": 40.7483906, "lon": -73.9446861 }, + { "lat": 40.7484073, "lon": -73.9447725 }, + { "lat": 40.7484323, "lon": -73.9449026 }, + { "lat": 40.7485187, "lon": -73.9453507 }, + { "lat": 40.7488357, "lon": -73.9469936 }, + { "lat": 40.7488584, "lon": -73.9471114 }, + { "lat": 40.7488807, "lon": -73.9472271 }, + { "lat": 40.7492827, "lon": -73.9493105 }, + { "lat": 40.7492998, "lon": -73.9494153 }, + { "lat": 40.7493179, "lon": -73.9495258 }, + { "lat": 40.7494064, "lon": -73.9499791 }, + { "lat": 40.7495762, "lon": -73.9508375 }, + { "lat": 40.7496028, "lon": -73.9509708 }, + { "lat": 40.7496217, "lon": -73.9510661 }, + { "lat": 40.7496392, "lon": -73.9511492 }, + { "lat": 40.7497921, "lon": -73.9519208 }, + { "lat": 40.7498105, "lon": -73.9520131 }, + { "lat": 40.7498212, "lon": -73.9520716 }, + { "lat": 40.7498313, "lon": -73.9521341 }, + { "lat": 40.7498376, "lon": -73.9521771 }, + { "lat": 40.7498436, "lon": -73.9522338 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "44th Road", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709970, + "bounds": { + "minlat": 40.7683852, + "minlon": -73.9212431, + "maxlat": 40.7703090, + "maxlon": -73.9189980 + }, + "nodes": [ + 42935204, + 8613811400, + 9376232962, + 8613811401, + 7976789853, + 8032268621, + 8613811403, + 42900319 + ], + "geometry": [ + { "lat": 40.7703090, "lon": -73.9189980 }, + { "lat": 40.7702379, "lon": -73.9190767 }, + { "lat": 40.7701992, "lon": -73.9191255 }, + { "lat": 40.7697332, "lon": -73.9196671 }, + { "lat": 40.7695072, "lon": -73.9199298 }, + { "lat": 40.7689641, "lon": -73.9205609 }, + { "lat": 40.7684438, "lon": -73.9211655 }, + { "lat": 40.7683852, "lon": -73.9212431 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "30th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709972, + "bounds": { + "minlat": 40.7519655, + "minlon": -73.9347568, + "maxlat": 40.7672998, + "maxlon": -73.9222410 + }, + "nodes": [ + 42874050, + 2297358946, + 8942038668, + 6453022187, + 42849240, + 6453022188, + 7661698534, + 42856521, + 7661698535, + 6406789560, + 42882973, + 6406789555, + 9295479229, + 7949838941, + 6452518604, + 42824118, + 6452518605, + 592159677, + 6452568278, + 42926995, + 6452568279, + 3864470913, + 3864470904, + 3569401988, + 42935217, + 3569401982, + 10762282678, + 3569401961, + 42815810, + 3569401960, + 8316237137, + 8595235437, + 42876779, + 8595235423, + 8595235459, + 8315005368, + 42892933, + 8250499961, + 8315005365, + 8250499949, + 42906439 + ], + "geometry": [ + { "lat": 40.7672998, "lon": -73.9222410 }, + { "lat": 40.7672122, "lon": -73.9222494 }, + { "lat": 40.7663435, "lon": -73.9229442 }, + { "lat": 40.7656617, "lon": -73.9234984 }, + { "lat": 40.7656061, "lon": -73.9235436 }, + { "lat": 40.7655533, "lon": -73.9235866 }, + { "lat": 40.7648163, "lon": -73.9241874 }, + { "lat": 40.7647274, "lon": -73.9242587 }, + { "lat": 40.7646411, "lon": -73.9243279 }, + { "lat": 40.7624232, "lon": -73.9261331 }, + { "lat": 40.7623523, "lon": -73.9261907 }, + { "lat": 40.7622867, "lon": -73.9262438 }, + { "lat": 40.7617347, "lon": -73.9266929 }, + { "lat": 40.7609779, "lon": -73.9273087 }, + { "lat": 40.7601275, "lon": -73.9280006 }, + { "lat": 40.7600461, "lon": -73.9280668 }, + { "lat": 40.7599886, "lon": -73.9281136 }, + { "lat": 40.7591603, "lon": -73.9287874 }, + { "lat": 40.7585903, "lon": -73.9292511 }, + { "lat": 40.7585075, "lon": -73.9293184 }, + { "lat": 40.7584469, "lon": -73.9293675 }, + { "lat": 40.7575372, "lon": -73.9301043 }, + { "lat": 40.7573016, "lon": -73.9302976 }, + { "lat": 40.7570411, "lon": -73.9305113 }, + { "lat": 40.7569662, "lon": -73.9305722 }, + { "lat": 40.7569102, "lon": -73.9306177 }, + { "lat": 40.7555200, "lon": -73.9317485 }, + { "lat": 40.7554790, "lon": -73.9317819 }, + { "lat": 40.7554088, "lon": -73.9318390 }, + { "lat": 40.7553483, "lon": -73.9318886 }, + { "lat": 40.7542973, "lon": -73.9327113 }, + { "lat": 40.7542653, "lon": -73.9327387 }, + { "lat": 40.7541953, "lon": -73.9327986 }, + { "lat": 40.7541265, "lon": -73.9328550 }, + { "lat": 40.7531968, "lon": -73.9336378 }, + { "lat": 40.7531705, "lon": -73.9336614 }, + { "lat": 40.7531145, "lon": -73.9337053 }, + { "lat": 40.7530648, "lon": -73.9337503 }, + { "lat": 40.7520594, "lon": -73.9346709 }, + { "lat": 40.7520173, "lon": -73.9347087 }, + { "lat": 40.7519655, "lon": -73.9347568 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "30th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5709973, + "bounds": { + "minlat": 40.7384107, + "minlon": -73.9386311, + "maxlat": 40.7451821, + "maxlon": -73.9372630 + }, + "nodes": [ + 42935231, + 4636542637, + 5482217770, + 9981973371, + 42860563, + 9981973368, + 6721064391, + 5482217757, + 42880274, + 9981973323, + 42832494, + 9981973324, + 10657721900, + 10657721890, + 9981973366, + 42901424 + ], + "geometry": [ + { "lat": 40.7451821, "lon": -73.9372630 }, + { "lat": 40.7450739, "lon": -73.9372900 }, + { "lat": 40.7440939, "lon": -73.9374942 }, + { "lat": 40.7434029, "lon": -73.9376365 }, + { "lat": 40.7433081, "lon": -73.9376553 }, + { "lat": 40.7432290, "lon": -73.9376705 }, + { "lat": 40.7430911, "lon": -73.9376972 }, + { "lat": 40.7423616, "lon": -73.9378403 }, + { "lat": 40.7414649, "lon": -73.9380194 }, + { "lat": 40.7406097, "lon": -73.9381918 }, + { "lat": 40.7405526, "lon": -73.9382029 }, + { "lat": 40.7404933, "lon": -73.9382146 }, + { "lat": 40.7402934, "lon": -73.9382544 }, + { "lat": 40.7386742, "lon": -73.9385764 }, + { "lat": 40.7384782, "lon": -73.9386213 }, + { "lat": 40.7384107, "lon": -73.9386311 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "30th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5710011, + "bounds": { + "minlat": 40.7843098, + "minlon": -73.9164740, + "maxlat": 40.7846260, + "maxlon": -73.9159260 + }, + "nodes": [ + 42849809, + 3778313786, + 42866513, + 3778281511, + 3778281535, + 2992280291 + ], + "geometry": [ + { "lat": 40.7846260, "lon": -73.9164740 }, + { "lat": 40.7845886, "lon": -73.9164212 }, + { "lat": 40.7843409, "lon": -73.9160721 }, + { "lat": 40.7843190, "lon": -73.9160197 }, + { "lat": 40.7843123, "lon": -73.9159855 }, + { "lat": 40.7843098, "lon": -73.9159260 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "20th Road", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "20th", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 5710016, + "bounds": { + "minlat": 40.7753212, + "minlon": -73.9067961, + "maxlat": 40.7793113, + "maxlon": -73.9030496 + }, + "nodes": [ + 42849656, + 10763811190, + 7776763755, + 42905188, + 11947938262, + 42932465, + 11947938263, + 4941253852, + 2883635666, + 10160685640, + 42866618, + 7659293846, + 10160685644, + 7659238496, + 5127246802, + 11618856861, + 42926426, + 7659224079, + 11618856860, + 10744397954, + 42888629, + 11618856851, + 7776768889, + 3778356590, + 7776768900, + 9847967555, + 42841785, + 11947925567, + 9847967679, + 7776768911, + 7776763759, + 9236657420, + 42917835 + ], + "geometry": [ + { "lat": 40.7793113, "lon": -73.9067961 }, + { "lat": 40.7792374, "lon": -73.9067452 }, + { "lat": 40.7792045, "lon": -73.9067206 }, + { "lat": 40.7787680, "lon": -73.9064120 }, + { "lat": 40.7783450, "lon": -73.9061131 }, + { "lat": 40.7782770, "lon": -73.9060650 }, + { "lat": 40.7782180, "lon": -73.9060229 }, + { "lat": 40.7779653, "lon": -73.9058424 }, + { "lat": 40.7779240, "lon": -73.9058129 }, + { "lat": 40.7776616, "lon": -73.9056230 }, + { "lat": 40.7776139, "lon": -73.9055885 }, + { "lat": 40.7775806, "lon": -73.9055596 }, + { "lat": 40.7775455, "lon": -73.9055305 }, + { "lat": 40.7772710, "lon": -73.9052907 }, + { "lat": 40.7772599, "lon": -73.9052811 }, + { "lat": 40.7770173, "lon": -73.9050705 }, + { "lat": 40.7769639, "lon": -73.9050241 }, + { "lat": 40.7769466, "lon": -73.9050075 }, + { "lat": 40.7769016, "lon": -73.9049642 }, + { "lat": 40.7764092, "lon": -73.9044908 }, + { "lat": 40.7763630, "lon": -73.9044469 }, + { "lat": 40.7763047, "lon": -73.9043967 }, + { "lat": 40.7762823, "lon": -73.9043774 }, + { "lat": 40.7760648, "lon": -73.9041001 }, + { "lat": 40.7759137, "lon": -73.9038864 }, + { "lat": 40.7758896, "lon": -73.9038524 }, + { "lat": 40.7758331, "lon": -73.9037724 }, + { "lat": 40.7757938, "lon": -73.9037158 }, + { "lat": 40.7757913, "lon": -73.9037121 }, + { "lat": 40.7757559, "lon": -73.9036634 }, + { "lat": 40.7753929, "lon": -73.9031509 }, + { "lat": 40.7753814, "lon": -73.9031346 }, + { "lat": 40.7753212, "lon": -73.9030496 } + ], + "tags": { + "highway": "residential", + "name": "20th Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5710024, + "bounds": { + "minlat": 40.7067550, + "minlon": -73.9143610, + "maxlat": 40.7087874, + "maxlon": -73.9122961 + }, + "nodes": [ + 42809943, + 9755788815, + 11175031793, + 9950476817, + 11004055115, + 6024794248, + 42827602, + 6024794247, + 11004055108, + 7721911516, + 5482338447, + 9590434398, + 42934645 + ], + "geometry": [ + { "lat": 40.7087874, "lon": -73.9122961 }, + { "lat": 40.7087365, "lon": -73.9123506 }, + { "lat": 40.7085961, "lon": -73.9124932 }, + { "lat": 40.7084943, "lon": -73.9125966 }, + { "lat": 40.7078471, "lon": -73.9132445 }, + { "lat": 40.7077171, "lon": -73.9133771 }, + { "lat": 40.7076600, "lon": -73.9134350 }, + { "lat": 40.7076058, "lon": -73.9134905 }, + { "lat": 40.7074238, "lon": -73.9136768 }, + { "lat": 40.7073472, "lon": -73.9137551 }, + { "lat": 40.7073341, "lon": -73.9137685 }, + { "lat": 40.7068166, "lon": -73.9142965 }, + { "lat": 40.7067550, "lon": -73.9143610 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Stanhope Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5710027, + "bounds": { + "minlat": 40.7441032, + "minlon": -73.9456448, + "maxlat": 40.7458232, + "maxlon": -73.9445549 + }, + "nodes": [ + 42844264, + 9982745710, + 9982745709, + 9982745708, + 6603473442, + 9982745711, + 13276743834, + 42935560 + ], + "geometry": [ + { "lat": 40.7458232, "lon": -73.9456423 }, + { "lat": 40.7457947, "lon": -73.9456445 }, + { "lat": 40.7457704, "lon": -73.9456448 }, + { "lat": 40.7457471, "lon": -73.9456412 }, + { "lat": 40.7457179, "lon": -73.9456343 }, + { "lat": 40.7456934, "lon": -73.9456174 }, + { "lat": 40.7441321, "lon": -73.9445742 }, + { "lat": 40.7441032, "lon": -73.9445549 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Davis Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5710029, + "bounds": { + "minlat": 40.7492779, + "minlon": -73.9454671, + "maxlat": 40.7501655, + "maxlon": -73.9446843 + }, + "nodes": [ + 42818123, + 9982745697, + 6100729784, + 9982745696, + 9982745695, + 42917508 + ], + "geometry": [ + { "lat": 40.7501655, "lon": -73.9446843 }, + { "lat": 40.7500969, "lon": -73.9447451 }, + { "lat": 40.7496407, "lon": -73.9451438 }, + { "lat": 40.7493729, "lon": -73.9453811 }, + { "lat": 40.7493349, "lon": -73.9454155 }, + { "lat": 40.7492779, "lon": -73.9454671 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "22nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5710030, + "bounds": { + "minlat": 40.7520162, + "minlon": -73.9427440, + "maxlat": 40.7534590, + "maxlon": -73.9414060 + }, + "nodes": [ + 42895308, + 5493300568, + 7456976110, + 8062562638, + 8699111897, + 42931320, + 2355624816 + ], + "geometry": [ + { "lat": 40.7534590, "lon": -73.9414060 }, + { "lat": 40.7534064, "lon": -73.9414550 }, + { "lat": 40.7524967, "lon": -73.9422970 }, + { "lat": 40.7521407, "lon": -73.9426266 }, + { "lat": 40.7521023, "lon": -73.9426631 }, + { "lat": 40.7520575, "lon": -73.9427036 }, + { "lat": 40.7520162, "lon": -73.9427440 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "name": "22nd Street", + "name_1": "Harry Suna Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5710032, + "bounds": { + "minlat": 40.7719702, + "minlon": -73.9251706, + "maxlat": 40.7737572, + "maxlon": -73.9238059 + }, + "nodes": [ + 42828374, + 7791548118, + 8936146399, + 7768245662, + 7783802667, + 42935603 + ], + "geometry": [ + { "lat": 40.7737572, "lon": -73.9238059 }, + { "lat": 40.7737251, "lon": -73.9238304 }, + { "lat": 40.7727883, "lon": -73.9245458 }, + { "lat": 40.7720991, "lon": -73.9250721 }, + { "lat": 40.7720518, "lon": -73.9251083 }, + { "lat": 40.7719702, "lon": -73.9251706 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "22nd Street", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5710042, + "bounds": { + "minlat": 40.7719160, + "minlon": -73.9172386, + "maxlat": 40.7722937, + "maxlon": -73.9167060 + }, + "nodes": [ + 42833271, + 11591692596, + 2802664430, + 42935698 + ], + "geometry": [ + { "lat": 40.7722937, "lon": -73.9172386 }, + { "lat": 40.7722566, "lon": -73.9171840 }, + { "lat": 40.7722426, "lon": -73.9171634 }, + { "lat": 40.7719160, "lon": -73.9167060 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Dorothy Place" + } +}, +{ + "type": "way", + "id": 5710128, + "bounds": { + "minlat": 40.6899250, + "minlon": -73.9228060, + "maxlat": 40.7086213, + "maxlon": -73.9040997 + }, + "nodes": [ + 42505527, + 9659559746, + 5713857038, + 42513778, + 5713857037, + 7931149602, + 9758644576, + 42499841, + 9799250681, + 9799250686, + 42486769, + 9799250688, + 9799250635, + 42496701, + 9799250637, + 8344550717, + 5482577681, + 9799250579, + 42536220, + 9799250581, + 9083990500, + 9799250558, + 42511976, + 9761722238, + 9083990516, + 9761722244, + 42517106, + 9761722248, + 6853984346, + 9083990509, + 6024803587, + 42512126, + 6024803586, + 7717125044, + 5482368600, + 9083990473, + 9668708934, + 597700290, + 9668725432, + 9761722180, + 42907493, + 9761722183, + 9762206553, + 42934657, + 9762206550, + 9762206457, + 42827625, + 9763022474, + 10686537739, + 9763022463, + 42809965, + 9763022462, + 8588167430, + 9763022291, + 42806593, + 9763022072, + 9763022085, + 42851922, + 9763022083, + 3368581114, + 9765879841, + 42918926 + ], + "geometry": [ + { "lat": 40.6899250, "lon": -73.9228060 }, + { "lat": 40.6899939, "lon": -73.9227388 }, + { "lat": 40.6912872, "lon": -73.9214758 }, + { "lat": 40.6913530, "lon": -73.9214110 }, + { "lat": 40.6914204, "lon": -73.9213451 }, + { "lat": 40.6923945, "lon": -73.9203897 }, + { "lat": 40.6924292, "lon": -73.9203558 }, + { "lat": 40.6924850, "lon": -73.9203010 }, + { "lat": 40.6925461, "lon": -73.9202409 }, + { "lat": 40.6942481, "lon": -73.9185670 }, + { "lat": 40.6943040, "lon": -73.9185120 }, + { "lat": 40.6943614, "lon": -73.9184560 }, + { "lat": 40.6957241, "lon": -73.9171275 }, + { "lat": 40.6957820, "lon": -73.9170710 }, + { "lat": 40.6958398, "lon": -73.9170138 }, + { "lat": 40.6961951, "lon": -73.9166624 }, + { "lat": 40.6968349, "lon": -73.9160295 }, + { "lat": 40.6971961, "lon": -73.9156723 }, + { "lat": 40.6972530, "lon": -73.9156160 }, + { "lat": 40.6973099, "lon": -73.9155602 }, + { "lat": 40.6987485, "lon": -73.9141488 }, + { "lat": 40.6987766, "lon": -73.9141212 }, + { "lat": 40.6988384, "lon": -73.9140606 }, + { "lat": 40.6989002, "lon": -73.9140006 }, + { "lat": 40.6991843, "lon": -73.9137222 }, + { "lat": 40.6992169, "lon": -73.9136894 }, + { "lat": 40.6993038, "lon": -73.9136017 }, + { "lat": 40.6993893, "lon": -73.9135179 }, + { "lat": 40.6998760, "lon": -73.9130412 }, + { "lat": 40.7002738, "lon": -73.9126515 }, + { "lat": 40.7003045, "lon": -73.9126213 }, + { "lat": 40.7003580, "lon": -73.9125690 }, + { "lat": 40.7004192, "lon": -73.9125054 }, + { "lat": 40.7006799, "lon": -73.9122380 }, + { "lat": 40.7007013, "lon": -73.9122160 }, + { "lat": 40.7014000, "lon": -73.9115186 }, + { "lat": 40.7014352, "lon": -73.9114813 }, + { "lat": 40.7014910, "lon": -73.9114224 }, + { "lat": 40.7015436, "lon": -73.9113669 }, + { "lat": 40.7025050, "lon": -73.9103806 }, + { "lat": 40.7025567, "lon": -73.9103284 }, + { "lat": 40.7026193, "lon": -73.9102645 }, + { "lat": 40.7036299, "lon": -73.9092324 }, + { "lat": 40.7036880, "lon": -73.9091730 }, + { "lat": 40.7037449, "lon": -73.9091159 }, + { "lat": 40.7045417, "lon": -73.9082995 }, + { "lat": 40.7045930, "lon": -73.9082470 }, + { "lat": 40.7046463, "lon": -73.9081925 }, + { "lat": 40.7056441, "lon": -73.9071727 }, + { "lat": 40.7056735, "lon": -73.9071426 }, + { "lat": 40.7057220, "lon": -73.9070930 }, + { "lat": 40.7057731, "lon": -73.9070409 }, + { "lat": 40.7067309, "lon": -73.9060663 }, + { "lat": 40.7067523, "lon": -73.9060435 }, + { "lat": 40.7067990, "lon": -73.9059960 }, + { "lat": 40.7068525, "lon": -73.9059413 }, + { "lat": 40.7079427, "lon": -73.9048254 }, + { "lat": 40.7079900, "lon": -73.9047770 }, + { "lat": 40.7080449, "lon": -73.9047203 }, + { "lat": 40.7085387, "lon": -73.9042273 }, + { "lat": 40.7085697, "lon": -73.9041794 }, + { "lat": 40.7086213, "lon": -73.9040997 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Linden Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5710131, + "bounds": { + "minlat": 40.7263260, + "minlon": -73.9146500, + "maxlat": 40.7264800, + "maxlon": -73.9121610 + }, + "nodes": [ + 42855381, + 42908364 + ], + "geometry": [ + { "lat": 40.7264800, "lon": -73.9146500 }, + { "lat": 40.7263260, "lon": -73.9121610 } + ], + "tags": { + "highway": "residential", + "name": "55th Drive", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "55th", + "tiger:name_type": "Dr", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 5710227, + "bounds": { + "minlat": 40.7419830, + "minlon": -73.9463933, + "maxlat": 40.7451805, + "maxlon": -73.9379634 + }, + "nodes": [ + 42832467, + 10081023542, + 10081023541, + 10081023540, + 8991509404, + 42897737, + 42890982, + 6643399520, + 10081023530, + 10081023534, + 10081023531, + 10081023532, + 10081023533, + 42872047, + 42817476, + 42833283, + 4636542638 + ], + "geometry": [ + { "lat": 40.7419830, "lon": -73.9463933 }, + { "lat": 40.7420007, "lon": -73.9463774 }, + { "lat": 40.7420175, "lon": -73.9463595 }, + { "lat": 40.7420310, "lon": -73.9463417 }, + { "lat": 40.7420433, "lon": -73.9463202 }, + { "lat": 40.7433777, "lon": -73.9429806 }, + { "lat": 40.7437220, "lon": -73.9421183 }, + { "lat": 40.7438438, "lon": -73.9418105 }, + { "lat": 40.7439487, "lon": -73.9415454 }, + { "lat": 40.7442829, "lon": -73.9407103 }, + { "lat": 40.7443142, "lon": -73.9406303 }, + { "lat": 40.7443436, "lon": -73.9405457 }, + { "lat": 40.7443756, "lon": -73.9404503 }, + { "lat": 40.7444157, "lon": -73.9403225 }, + { "lat": 40.7447578, "lon": -73.9392628 }, + { "lat": 40.7450576, "lon": -73.9383302 }, + { "lat": 40.7451805, "lon": -73.9379634 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5710416, + "bounds": { + "minlat": 40.6946970, + "minlon": -73.9274970, + "maxlat": 40.7080990, + "maxlon": -73.9141770 + }, + "nodes": [ + 42513729, + 5713857008, + 9758644640, + 42499831, + 9758644638, + 7963522063, + 9795578784, + 42486743, + 9796872804, + 8589599916, + 9796872808, + 42517081, + 9796872807, + 7986977052, + 9753035627, + 42496668, + 9753035626, + 10977791991, + 9753035599, + 42536210, + 9753035598, + 9752992712, + 9752992711, + 42511930, + 9755789796, + 7153297706, + 9755789799, + 42512105, + 9752992704, + 10923276560, + 9755788958, + 42537507, + 9755788957, + 9592286296, + 42907469, + 9592286297, + 9758517228, + 6024796517, + 42934641, + 9590373902, + 9747567474, + 9590434390, + 42827600 + ], + "geometry": [ + { "lat": 40.6946970, "lon": -73.9274970 }, + { "lat": 40.6947624, "lon": -73.9274329 }, + { "lat": 40.6956632, "lon": -73.9265470 }, + { "lat": 40.6957120, "lon": -73.9264990 }, + { "lat": 40.6957655, "lon": -73.9264469 }, + { "lat": 40.6976385, "lon": -73.9246252 }, + { "lat": 40.6976714, "lon": -73.9245932 }, + { "lat": 40.6977309, "lon": -73.9245353 }, + { "lat": 40.6977883, "lon": -73.9244774 }, + { "lat": 40.6981002, "lon": -73.9241625 }, + { "lat": 40.6981420, "lon": -73.9241203 }, + { "lat": 40.6982185, "lon": -73.9240430 }, + { "lat": 40.6982990, "lon": -73.9239644 }, + { "lat": 40.6986802, "lon": -73.9235919 }, + { "lat": 40.6991489, "lon": -73.9231340 }, + { "lat": 40.6992050, "lon": -73.9230792 }, + { "lat": 40.6992601, "lon": -73.9230249 }, + { "lat": 40.6996570, "lon": -73.9226339 }, + { "lat": 40.7006183, "lon": -73.9216868 }, + { "lat": 40.7006750, "lon": -73.9216310 }, + { "lat": 40.7007332, "lon": -73.9215738 }, + { "lat": 40.7021787, "lon": -73.9201540 }, + { "lat": 40.7022046, "lon": -73.9201285 }, + { "lat": 40.7022600, "lon": -73.9200741 }, + { "lat": 40.7023197, "lon": -73.9200161 }, + { "lat": 40.7033615, "lon": -73.9190033 }, + { "lat": 40.7037993, "lon": -73.9185630 }, + { "lat": 40.7038580, "lon": -73.9185040 }, + { "lat": 40.7039116, "lon": -73.9184494 }, + { "lat": 40.7046333, "lon": -73.9177151 }, + { "lat": 40.7049368, "lon": -73.9174063 }, + { "lat": 40.7049920, "lon": -73.9173500 }, + { "lat": 40.7050507, "lon": -73.9172892 }, + { "lat": 40.7060086, "lon": -73.9163058 }, + { "lat": 40.7060615, "lon": -73.9162516 }, + { "lat": 40.7061208, "lon": -73.9161912 }, + { "lat": 40.7070878, "lon": -73.9152080 }, + { "lat": 40.7071236, "lon": -73.9151716 }, + { "lat": 40.7071931, "lon": -73.9151007 }, + { "lat": 40.7072530, "lon": -73.9150396 }, + { "lat": 40.7080152, "lon": -73.9142625 }, + { "lat": 40.7080563, "lon": -73.9142202 }, + { "lat": 40.7080990, "lon": -73.9141770 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Stockholm Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5710459, + "bounds": { + "minlat": 40.7692292, + "minlon": -73.9091090, + "maxlat": 40.7705720, + "maxlon": -73.9074940 + }, + "nodes": [ + 42910593, + 9236602772, + 42940737, + 9776150597, + 42932544, + 9776150598, + 5866705997, + 9776150577, + 42877859 + ], + "geometry": [ + { "lat": 40.7692292, "lon": -73.9091090 }, + { "lat": 40.7693091, "lon": -73.9090177 }, + { "lat": 40.7695100, "lon": -73.9087880 }, + { "lat": 40.7698159, "lon": -73.9083906 }, + { "lat": 40.7698508, "lon": -73.9083462 }, + { "lat": 40.7698993, "lon": -73.9082912 }, + { "lat": 40.7704816, "lon": -73.9076030 }, + { "lat": 40.7705150, "lon": -73.9075623 }, + { "lat": 40.7705720, "lon": -73.9074940 } + ], + "tags": { + "highway": "residential", + "name": "41st Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "41st", + "tiger:name_type": "St", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 5710462, + "bounds": { + "minlat": 40.7527562, + "minlon": -73.9228431, + "maxlat": 40.7532126, + "maxlon": -73.9225705 + }, + "nodes": [ + 42938567, + 8593804572, + 9189020443, + 3569401920, + 42932884 + ], + "geometry": [ + { "lat": 40.7532126, "lon": -73.9225705 }, + { "lat": 40.7531513, "lon": -73.9226175 }, + { "lat": 40.7529286, "lon": -73.9228069 }, + { "lat": 40.7528895, "lon": -73.9228291 }, + { "lat": 40.7527562, "lon": -73.9228431 } + ], + "tags": { + "highway": "residential", + "name": "41st Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5710463, + "bounds": { + "minlat": 40.7435465, + "minlon": -73.9233671, + "maxlat": 40.7471026, + "maxlon": -73.9226561 + }, + "nodes": [ + 2844853157, + 3798377339, + 2844853161, + 8248311072, + 11694597485, + 8248311060, + 42817780, + 9687173755, + 10069673343, + 42938181 + ], + "geometry": [ + { "lat": 40.7435465, "lon": -73.9233671 }, + { "lat": 40.7437197, "lon": -73.9233321 }, + { "lat": 40.7438549, "lon": -73.9233005 }, + { "lat": 40.7439626, "lon": -73.9232761 }, + { "lat": 40.7447858, "lon": -73.9231178 }, + { "lat": 40.7453654, "lon": -73.9230064 }, + { "lat": 40.7454580, "lon": -73.9229874 }, + { "lat": 40.7455330, "lon": -73.9229720 }, + { "lat": 40.7470305, "lon": -73.9226705 }, + { "lat": 40.7471026, "lon": -73.9226561 } + ], + "tags": { + "highway": "residential", + "name": "41st Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 5710532, + "bounds": { + "minlat": 40.7232341, + "minlon": -73.9126493, + "maxlat": 40.7257310, + "maxlon": -73.9093303 + }, + "nodes": [ + 42854207, + 4396956985, + 42902810, + 7691247506, + 4396946998, + 13703154233, + 4211041540 + ], + "geometry": [ + { "lat": 40.7232341, "lon": -73.9126493 }, + { "lat": 40.7233656, "lon": -73.9124259 }, + { "lat": 40.7241820, "lon": -73.9113450 }, + { "lat": 40.7245662, "lon": -73.9108452 }, + { "lat": 40.7254504, "lon": -73.9096952 }, + { "lat": 40.7256081, "lon": -73.9094916 }, + { "lat": 40.7257310, "lon": -73.9093303 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Maurice Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 5710549, + "bounds": { + "minlat": 40.7683932, + "minlon": -73.9090014, + "maxlat": 40.7685463, + "maxlon": -73.9080218 + }, + "nodes": [ + 42912776, + 42900647 + ], + "geometry": [ + { "lat": 40.7685463, "lon": -73.9090014 }, + { "lat": 40.7683932, "lon": -73.9080218 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "name": "Astoria Boulevard South", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 5710550, + "bounds": { + "minlat": 40.7727141, + "minlon": -73.9340385, + "maxlat": 40.7730598, + "maxlon": -73.9326803 + }, + "nodes": [ + 2891717842, + 7756437656, + 2459371413, + 2459371421, + 11308871004, + 42926712 + ], + "geometry": [ + { "lat": 40.7730598, "lon": -73.9340385 }, + { "lat": 40.7730305, "lon": -73.9337195 }, + { "lat": 40.7730074, "lon": -73.9336387 }, + { "lat": 40.7728957, "lon": -73.9333216 }, + { "lat": 40.7727467, "lon": -73.9327967 }, + { "lat": 40.7727141, "lon": -73.9326803 } + ], + "tags": { + "alt_name": "Astoria Boulevard South", + "highway": "residential", + "name": "Astoria Boulevard", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 5710551, + "bounds": { + "minlat": 40.7736096, + "minlon": -73.9366105, + "maxlat": 40.7739064, + "maxlon": -73.9360143 + }, + "nodes": [ + 2461962691, + 2891718050, + 736480383, + 42941801 + ], + "geometry": [ + { "lat": 40.7739064, "lon": -73.9366105 }, + { "lat": 40.7737551, "lon": -73.9361159 }, + { "lat": 40.7737487, "lon": -73.9360935 }, + { "lat": 40.7736096, "lon": -73.9360143 } + ], + "tags": { + "alt_name": "Astoria Boulevard South", + "highway": "residential", + "name": "Astoria Boulevard", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 5710641, + "bounds": { + "minlat": 40.7169470, + "minlon": -73.9123210, + "maxlat": 40.7193480, + "maxlon": -73.9111870 + }, + "nodes": [ + 42871299, + 9759966678, + 42788761, + 42839027, + 9759966706, + 9759966705, + 42881170 + ], + "geometry": [ + { "lat": 40.7193480, "lon": -73.9123210 }, + { "lat": 40.7192627, "lon": -73.9122958 }, + { "lat": 40.7185200, "lon": -73.9120770 }, + { "lat": 40.7175900, "lon": -73.9115750 }, + { "lat": 40.7170457, "lon": -73.9112466 }, + { "lat": 40.7170063, "lon": -73.9112228 }, + { "lat": 40.7169470, "lon": -73.9111870 } + ], + "tags": { + "highway": "residential", + "name": "57th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "57th", + "tiger:name_type": "St", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 8028081, + "bounds": { + "minlat": 40.8532913, + "minlon": -73.9612927, + "maxlat": 40.8534158, + "maxlon": -73.9606814 + }, + "nodes": [ + 60007332, + 7921808870, + 12393067360 + ], + "geometry": [ + { "lat": 40.8532913, "lon": -73.9606814 }, + { "lat": 40.8533344, "lon": -73.9608813 }, + { "lat": 40.8534158, "lon": -73.9612927 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge (upper level)", + "bridge:name:etymology:wikidata": "Q23", + "destination:lanes": "||Fort Lee;Palisades Parkway|Palisades Parkway", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "||through;slight_right|slight_right", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 8028082, + "bounds": { + "minlat": 40.8515745, + "minlon": -73.9607219, + "maxlat": 40.8531838, + "maxlon": -73.9525330 + }, + "nodes": [ + 298792354, + 622204987 + ], + "geometry": [ + { "lat": 40.8531838, "lon": -73.9607219 }, + { "lat": 40.8515745, "lon": -73.9525330 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "access:conditional": "permit @ height>14'0\"; permit @ width>8'6\"; permit @ weight>50000 lbs; permit @ axleload>20000 lbs; permit @ bogieweight>34000 lbs", + "bicycle": "use_sidepath", + "bridge": "yes", + "bridge:name": "George Washington Bridge (upper level)", + "bridge:name:etymology:wikidata": "Q23", + "bridge:name:ru": "Мост Джорджа Вашингтона (верхний уровень)", + "foot": "no", + "hazmat": "designated", + "hazmat:1.1": "permit", + "hazmat:1.2": "permit", + "hazmat:1.3": "permit", + "hgv": "designated", + "hgv:national_network": "yes", + "hgv_articulated:conditional": "permit @ height>14'0\"; permit @ width>8'6\"; permit @ weight>80000 lbs; permit @ axleload>20000 lbs; permit @ bogieweight>34000 lbs", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "lit": "yes", + "maxaxleload": "20000 lbs", + "maxbogieweight": "34000 lbs", + "maxheight": "14'0\"", + "maxspeed": "45 mph", + "maxweight": "50000 lbs", + "maxweight:hgv_articulated": "80000 lbs", + "maxwidth": "8'6\"", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "sidewalk:right": "separate", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "US 46", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 8028096, + "bounds": { + "minlat": 40.7624689, + "minlon": -74.0198833, + "maxlat": 40.7666393, + "maxlon": -74.0099717 + }, + "nodes": [ + 3275488139, + 3276524466 + ], + "geometry": [ + { "lat": 40.7666393, "lon": -74.0198833 }, + { "lat": 40.7624689, "lon": -74.0099717 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000495", + "bicycle": "no", + "cycleway:right": "no", + "destination:lanes": "Dyer Avenue north;West 40th Street|Dyer Avenue south", + "foot": "no", + "hazmat": "no", + "hgv": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "-2", + "lit": "24/7", + "maxheight": "13'0\"", + "maxspeed": "35 mph", + "maxwidth": "8'6\"", + "name": "Lincoln Tunnel", + "name:etymology:wikidata": "Q91", + "oneway": "yes", + "ref": "NJ 495", + "source": "usgs", + "surface": "asphalt", + "tiger:cfcc": "A16", + "tiger:county": "New York, NY", + "tiger:name_base": "Lincoln", + "tiger:name_base_1": "I-495", + "tiger:name_type": "Tunnel", + "tiger:reviewed": "no", + "toll": "yes", + "tunnel": "yes", + "wikidata": "Q125805", + "wikipedia": "en:Lincoln Tunnel" + } +}, +{ + "type": "way", + "id": 8028104, + "bounds": { + "minlat": 40.7665352, + "minlon": -74.0229086, + "maxlat": 40.7674774, + "maxlon": -74.0193925 + }, + "nodes": [ + 42455519, + 3275488113, + 3275488133, + 60007448, + 3275488124, + 60007447, + 60007446, + 3275488121, + 60007445, + 3275488146, + 60007444, + 3275488148, + 3275488104, + 3275488122, + 60007443, + 60007350 + ], + "geometry": [ + { "lat": 40.7672521, "lon": -74.0193925 }, + { "lat": 40.7673348, "lon": -74.0196344 }, + { "lat": 40.7673995, "lon": -74.0198871 }, + { "lat": 40.7674450, "lon": -74.0201460 }, + { "lat": 40.7674710, "lon": -74.0204096 }, + { "lat": 40.7674774, "lon": -74.0206756 }, + { "lat": 40.7674639, "lon": -74.0209414 }, + { "lat": 40.7674309, "lon": -74.0212034 }, + { "lat": 40.7673785, "lon": -74.0214605 }, + { "lat": 40.7673072, "lon": -74.0217098 }, + { "lat": 40.7672179, "lon": -74.0219481 }, + { "lat": 40.7671114, "lon": -74.0221737 }, + { "lat": 40.7669886, "lon": -74.0223847 }, + { "lat": 40.7668506, "lon": -74.0225787 }, + { "lat": 40.7666991, "lon": -74.0227539 }, + { "lat": 40.7665352, "lon": -74.0229086 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000495", + "bicycle": "no", + "foot": "no", + "hgv": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "-2", + "lit": "yes", + "maxspeed": "35 mph", + "name": "Lincoln Tunnel", + "name:etymology:wikidata": "Q91", + "oneway": "yes", + "ref": "NJ 495", + "source": "usgs", + "toll": "no", + "tunnel": "yes", + "wikidata": "Q125805", + "wikipedia": "en:Lincoln Tunnel" + } +}, +{ + "type": "way", + "id": 8112053, + "bounds": { + "minlat": 40.8621926, + "minlon": -73.9573991, + "maxlat": 40.8625280, + "maxlon": -73.9569715 + }, + "nodes": [ + 60810944, + 7924729982, + 7924729984, + 60811193, + 1381944096 + ], + "geometry": [ + { "lat": 40.8625280, "lon": -73.9569715 }, + { "lat": 40.8624439, "lon": -73.9570739 }, + { "lat": 40.8623648, "lon": -73.9571729 }, + { "lat": 40.8622887, "lon": -73.9572720 }, + { "lat": 40.8621926, "lon": -73.9573991 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "destination": "George Washington Bridge;New York", + "destination:ref": "I 95 North", + "destination:street": "Hudson Terrace", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "55 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "no" + } +}, +{ + "type": "way", + "id": 8112100, + "bounds": { + "minlat": 40.8617529, + "minlon": -73.9748414, + "maxlat": 40.8653923, + "maxlon": -73.9743514 + }, + "nodes": [ + 298772261, + 7926202599, + 299126299, + 299126300, + 7926187974, + 7926202614, + 299127171, + 7921569537, + 299126302, + 7921569541, + 299126577, + 299126189, + 7921569545, + 299126190, + 7921569549, + 299126191, + 7921569553, + 299126192, + 7921569526, + 7921569561, + 299126193, + 7921569557, + 76464360 + ], + "geometry": [ + { "lat": 40.8653923, "lon": -73.9748414 }, + { "lat": 40.8652693, "lon": -73.9747828 }, + { "lat": 40.8651448, "lon": -73.9747265 }, + { "lat": 40.8648244, "lon": -73.9745904 }, + { "lat": 40.8646958, "lon": -73.9745429 }, + { "lat": 40.8645652, "lon": -73.9745000 }, + { "lat": 40.8644217, "lon": -73.9744598 }, + { "lat": 40.8642870, "lon": -73.9744290 }, + { "lat": 40.8641447, "lon": -73.9744010 }, + { "lat": 40.8640067, "lon": -73.9743809 }, + { "lat": 40.8638667, "lon": -73.9743645 }, + { "lat": 40.8637278, "lon": -73.9743557 }, + { "lat": 40.8635952, "lon": -73.9743514 }, + { "lat": 40.8634538, "lon": -73.9743541 }, + { "lat": 40.8633148, "lon": -73.9743640 }, + { "lat": 40.8631679, "lon": -73.9743796 }, + { "lat": 40.8630302, "lon": -73.9744009 }, + { "lat": 40.8628914, "lon": -73.9744285 }, + { "lat": 40.8627640, "lon": -73.9744558 }, + { "lat": 40.8626344, "lon": -73.9744882 }, + { "lat": 40.8625132, "lon": -73.9745194 }, + { "lat": 40.8623899, "lon": -73.9745524 }, + { "lat": 40.8617529, "lon": -73.9747336 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 8112944, + "bounds": { + "minlat": 40.8606575, + "minlon": -73.9642911, + "maxlat": 40.8618491, + "maxlon": -73.9636393 + }, + "nodes": [ + 9252448443, + 65903767, + 7921584349, + 7921643424, + 65903766, + 12021383179, + 7391395642, + 5108313760, + 65903765, + 530475791, + 65903763 + ], + "geometry": [ + { "lat": 40.8606575, "lon": -73.9642911 }, + { "lat": 40.8609069, "lon": -73.9641149 }, + { "lat": 40.8610100, "lon": -73.9640434 }, + { "lat": 40.8611080, "lon": -73.9639768 }, + { "lat": 40.8611734, "lon": -73.9639327 }, + { "lat": 40.8612257, "lon": -73.9638999 }, + { "lat": 40.8612790, "lon": -73.9638686 }, + { "lat": 40.8613483, "lon": -73.9638316 }, + { "lat": 40.8614230, "lon": -73.9637945 }, + { "lat": 40.8617071, "lon": -73.9636664 }, + { "lat": 40.8618491, "lon": -73.9636393 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "1", + "maxheight": "13'11\"", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "oneway": "yes", + "ref": "NJ 67", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 8119396, + "bounds": { + "minlat": 40.8764453, + "minlon": -73.9242206, + "maxlat": 40.8794064, + "maxlon": -73.9196995 + }, + "nodes": [ + 252128124, + 12064288832, + 12064288833, + 12064288834, + 8584784535, + 12063642865, + 8584769113, + 12063642863, + 12063642864, + 60915166 + ], + "geometry": [ + { "lat": 40.8794064, "lon": -73.9196995 }, + { "lat": 40.8793191, "lon": -73.9198264 }, + { "lat": 40.8792415, "lon": -73.9199401 }, + { "lat": 40.8791609, "lon": -73.9200645 }, + { "lat": 40.8790795, "lon": -73.9201893 }, + { "lat": 40.8767230, "lon": -73.9237558 }, + { "lat": 40.8766509, "lon": -73.9238694 }, + { "lat": 40.8765808, "lon": -73.9239831 }, + { "lat": 40.8765134, "lon": -73.9240983 }, + { "lat": 40.8764453, "lon": -73.9242206 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Henry Hudson Bridge", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "NY 907V", + "wikidata": "Q7718385", + "wikipedia": "en:Henry Hudson Bridge" + } +}, +{ + "type": "way", + "id": 8119432, + "bounds": { + "minlat": 40.8392955, + "minlon": -73.9468276, + "maxlat": 40.8416021, + "maxlon": -73.9454687 + }, + "nodes": [ + 60928425, + 7907916467, + 60928426, + 60928427, + 7907916410, + 60928428, + 7907916450, + 60928429, + 60928430, + 7907916492, + 60928431, + 60928432 + ], + "geometry": [ + { "lat": 40.8392955, "lon": -73.9468276 }, + { "lat": 40.8394840, "lon": -73.9466756 }, + { "lat": 40.8396854, "lon": -73.9465241 }, + { "lat": 40.8398593, "lon": -73.9463989 }, + { "lat": 40.8400622, "lon": -73.9462592 }, + { "lat": 40.8402600, "lon": -73.9461334 }, + { "lat": 40.8404550, "lon": -73.9460179 }, + { "lat": 40.8406592, "lon": -73.9459037 }, + { "lat": 40.8408628, "lon": -73.9457975 }, + { "lat": 40.8410484, "lon": -73.9457063 }, + { "lat": 40.8412834, "lon": -73.9456008 }, + { "lat": 40.8416021, "lon": -73.9454687 } + ], + "tags": { + "destination:lanes": "Henry Hudson Parkway|Henry Hudson Parkway;George Washington Brigde;Cross Bronx Expressway;West 178th Street|George Washington Brigde;Cross Bronx Expressway;West 178th Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "turn:lanes": "none|through;slight_right|slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 8119435, + "bounds": { + "minlat": 40.8448052, + "minlon": -73.9250388, + "maxlat": 40.8451391, + "maxlon": -73.9181339 + }, + "nodes": [ + 60923264, + 7899270029, + 60919202, + 60919203, + 60919204, + 7899270120, + 7899256548, + 60919205, + 7899256557, + 12070746307, + 12070746306, + 373850889 + ], + "geometry": [ + { "lat": 40.8451391, "lon": -73.9181339 }, + { "lat": 40.8449563, "lon": -73.9213370 }, + { "lat": 40.8448642, "lon": -73.9229141 }, + { "lat": 40.8448165, "lon": -73.9237680 }, + { "lat": 40.8448070, "lon": -73.9240543 }, + { "lat": 40.8448052, "lon": -73.9241982 }, + { "lat": 40.8448081, "lon": -73.9243390 }, + { "lat": 40.8448153, "lon": -73.9244877 }, + { "lat": 40.8448222, "lon": -73.9246434 }, + { "lat": 40.8448304, "lon": -73.9247689 }, + { "lat": 40.8448401, "lon": -73.9248944 }, + { "lat": 40.8448518, "lon": -73.9250388 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 8119436, + "bounds": { + "minlat": 40.8490198, + "minlon": -73.9414167, + "maxlat": 40.8494121, + "maxlon": -73.9394913 + }, + "nodes": [ + 595464699, + 12067211121, + 12067211120, + 595464709 + ], + "geometry": [ + { "lat": 40.8494121, "lon": -73.9414167 }, + { "lat": 40.8493587, "lon": -73.9411483 }, + { "lat": 40.8493132, "lon": -73.9409231 }, + { "lat": 40.8490198, "lon": -73.9394913 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 8119460, + "bounds": { + "minlat": 40.8511648, + "minlon": -73.9220671, + "maxlat": 40.8597515, + "maxlon": -73.9156163 + }, + "nodes": [ + 42749265, + 42749262, + 42749258, + 42749250, + 42749246, + 42749243, + 42749239, + 42749235, + 42749231, + 42749227, + 7898958271, + 7898998213, + 42749222, + 7898958220, + 60919968, + 7898958262, + 7898998204, + 7898958211, + 60919967, + 7898958254, + 7898998196, + 60919966, + 7898998237, + 60919965, + 7898958245, + 7898998188, + 60919964, + 7899202021, + 7899202042, + 8862421352 + ], + "geometry": [ + { "lat": 40.8597515, "lon": -73.9156163 }, + { "lat": 40.8595917, "lon": -73.9158140 }, + { "lat": 40.8594271, "lon": -73.9160044 }, + { "lat": 40.8592538, "lon": -73.9161871 }, + { "lat": 40.8590729, "lon": -73.9163571 }, + { "lat": 40.8588934, "lon": -73.9165123 }, + { "lat": 40.8587006, "lon": -73.9166602 }, + { "lat": 40.8585082, "lon": -73.9167915 }, + { "lat": 40.8583106, "lon": -73.9169146 }, + { "lat": 40.8581073, "lon": -73.9170263 }, + { "lat": 40.8579035, "lon": -73.9171308 }, + { "lat": 40.8576937, "lon": -73.9172272 }, + { "lat": 40.8574868, "lon": -73.9173138 }, + { "lat": 40.8568604, "lon": -73.9175747 }, + { "lat": 40.8566526, "lon": -73.9176633 }, + { "lat": 40.8564460, "lon": -73.9177559 }, + { "lat": 40.8562386, "lon": -73.9178539 }, + { "lat": 40.8560349, "lon": -73.9179604 }, + { "lat": 40.8558305, "lon": -73.9180716 }, + { "lat": 40.8556307, "lon": -73.9181878 }, + { "lat": 40.8554320, "lon": -73.9183086 }, + { "lat": 40.8552343, "lon": -73.9184371 }, + { "lat": 40.8550412, "lon": -73.9185716 }, + { "lat": 40.8548471, "lon": -73.9187108 }, + { "lat": 40.8546581, "lon": -73.9188544 }, + { "lat": 40.8544706, "lon": -73.9190032 }, + { "lat": 40.8542854, "lon": -73.9191576 }, + { "lat": 40.8541045, "lon": -73.9193174 }, + { "lat": 40.8539228, "lon": -73.9194835 }, + { "lat": 40.8511648, "lon": -73.9220671 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 8119475, + "bounds": { + "minlat": 40.8384458, + "minlon": -73.9218540, + "maxlat": 40.8395705, + "maxlon": -73.9212982 + }, + "nodes": [ + 2912071068, + 2912071051, + 2912071048, + 12163756853, + 12163756854, + 2912071047, + 12163756855, + 2912071046, + 2912071045, + 2912071044 + ], + "geometry": [ + { "lat": 40.8384458, "lon": -73.9218540 }, + { "lat": 40.8385411, "lon": -73.9217892 }, + { "lat": 40.8390426, "lon": -73.9214696 }, + { "lat": 40.8391122, "lon": -73.9214278 }, + { "lat": 40.8391678, "lon": -73.9213985 }, + { "lat": 40.8392194, "lon": -73.9213746 }, + { "lat": 40.8392832, "lon": -73.9213526 }, + { "lat": 40.8393462, "lon": -73.9213353 }, + { "lat": 40.8394031, "lon": -73.9213229 }, + { "lat": 40.8395705, "lon": -73.9212982 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 8119481, + "bounds": { + "minlat": 40.8477205, + "minlon": -73.9435997, + "maxlat": 40.8487498, + "maxlon": -73.9430454 + }, + "nodes": [ + 60927832, + 7911365314, + 7911307284, + 7911307254, + 7911307248, + 60927833, + 7911365305, + 7911307275, + 60927834, + 60927835, + 12066602761, + 7911307241, + 12066602762, + 374508113, + 12066602767, + 60927836 + ], + "geometry": [ + { "lat": 40.8477205, "lon": -73.9435997 }, + { "lat": 40.8477853, "lon": -73.9435893 }, + { "lat": 40.8478499, "lon": -73.9435725 }, + { "lat": 40.8479305, "lon": -73.9435427 }, + { "lat": 40.8480009, "lon": -73.9435116 }, + { "lat": 40.8480754, "lon": -73.9434745 }, + { "lat": 40.8481540, "lon": -73.9434297 }, + { "lat": 40.8482223, "lon": -73.9433851 }, + { "lat": 40.8482871, "lon": -73.9433399 }, + { "lat": 40.8485763, "lon": -73.9431256 }, + { "lat": 40.8486031, "lon": -73.9431082 }, + { "lat": 40.8486325, "lon": -73.9430901 }, + { "lat": 40.8486617, "lon": -73.9430728 }, + { "lat": 40.8486868, "lon": -73.9430620 }, + { "lat": 40.8487109, "lon": -73.9430544 }, + { "lat": 40.8487498, "lon": -73.9430454 } + ], + "tags": { + "destination": "181 Street", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 8119510, + "bounds": { + "minlat": 40.8449959, + "minlon": -73.9243412, + "maxlat": 40.8451001, + "maxlon": -73.9241902 + }, + "nodes": [ + 2329087589, + 12070717542, + 12050190268, + 12045204117 + ], + "geometry": [ + { "lat": 40.8451001, "lon": -73.9243412 }, + { "lat": 40.8450680, "lon": -73.9242902 }, + { "lat": 40.8450354, "lon": -73.9242400 }, + { "lat": 40.8449959, "lon": -73.9241902 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "layer": "1", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 8119514, + "bounds": { + "minlat": 40.8449633, + "minlon": -73.9225229, + "maxlat": 40.8451122, + "maxlon": -73.9224111 + }, + "nodes": [ + 60924107, + 12046777299, + 12046777300, + 12046777298, + 12072283186, + 12072283185, + 12072283184, + 12046777297, + 12072283183, + 12046777296, + 12046777295, + 12070869605, + 12046777301, + 12046777294, + 12046777293 + ], + "geometry": [ + { "lat": 40.8449633, "lon": -73.9224154 }, + { "lat": 40.8449782, "lon": -73.9224125 }, + { "lat": 40.8449927, "lon": -73.9224111 }, + { "lat": 40.8450066, "lon": -73.9224117 }, + { "lat": 40.8450208, "lon": -73.9224143 }, + { "lat": 40.8450324, "lon": -73.9224176 }, + { "lat": 40.8450450, "lon": -73.9224229 }, + { "lat": 40.8450575, "lon": -73.9224296 }, + { "lat": 40.8450700, "lon": -73.9224378 }, + { "lat": 40.8450798, "lon": -73.9224464 }, + { "lat": 40.8450896, "lon": -73.9224572 }, + { "lat": 40.8450976, "lon": -73.9224705 }, + { "lat": 40.8451030, "lon": -73.9224845 }, + { "lat": 40.8451079, "lon": -73.9225018 }, + { "lat": 40.8451122, "lon": -73.9225229 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "layer": "1", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 8119529, + "bounds": { + "minlat": 40.8439090, + "minlon": -73.9248988, + "maxlat": 40.8443596, + "maxlon": -73.9241280 + }, + "nodes": [ + 42769873, + 12049842132, + 12049842131, + 12049842130, + 12049842129, + 60924369, + 7899256576, + 595757796 + ], + "geometry": [ + { "lat": 40.8439090, "lon": -73.9241280 }, + { "lat": 40.8439527, "lon": -73.9241846 }, + { "lat": 40.8439925, "lon": -73.9242361 }, + { "lat": 40.8441400, "lon": -73.9244271 }, + { "lat": 40.8441572, "lon": -73.9244537 }, + { "lat": 40.8441717, "lon": -73.9244808 }, + { "lat": 40.8441854, "lon": -73.9245094 }, + { "lat": 40.8443596, "lon": -73.9248988 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "Boscobel Place" + } +}, +{ + "type": "way", + "id": 8119562, + "bounds": { + "minlat": 40.8488344, + "minlon": -73.9411309, + "maxlat": 40.8490251, + "maxlon": -73.9401528 + }, + "nodes": [ + 60925991, + 5048446875, + 60926009 + ], + "geometry": [ + { "lat": 40.8490251, "lon": -73.9411309 }, + { "lat": 40.8490098, "lon": -73.9410524 }, + { "lat": 40.8488344, "lon": -73.9401528 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 178th Street", + "oneway": "yes", + "rcn_ref": "9", + "ref": "US 9", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 8119593, + "bounds": { + "minlat": 40.8507942, + "minlon": -73.9416281, + "maxlat": 40.8513723, + "maxlon": -73.9412123 + }, + "nodes": [ + 595448603, + 60929249, + 6363741700, + 12067141209, + 12067141210, + 9166213997, + 12067141208, + 12067141207, + 12067141199, + 12067141198, + 6363741701, + 1829177258, + 7911452021, + 12067113029, + 7911475191, + 7911452054, + 7911452017, + 12067113032, + 1769708233, + 12067113033, + 2072417511, + 12067113034, + 12067113035, + 1769708235, + 12067113036, + 1769708230, + 12067113037, + 7911452058, + 12067113038, + 595448659, + 12067113039, + 7911475195, + 2072417503, + 7911452025, + 7911452062, + 7911475199, + 595448603 + ], + "geometry": [ + { "lat": 40.8510580, "lon": -73.9414212 }, + { "lat": 40.8512307, "lon": -73.9412936 }, + { "lat": 40.8512769, "lon": -73.9412607 }, + { "lat": 40.8513120, "lon": -73.9412388 }, + { "lat": 40.8513402, "lon": -73.9412249 }, + { "lat": 40.8513723, "lon": -73.9412123 }, + { "lat": 40.8513603, "lon": -73.9412497 }, + { "lat": 40.8513482, "lon": -73.9412763 }, + { "lat": 40.8513304, "lon": -73.9413019 }, + { "lat": 40.8513057, "lon": -73.9413251 }, + { "lat": 40.8512747, "lon": -73.9413506 }, + { "lat": 40.8509184, "lon": -73.9416090 }, + { "lat": 40.8508993, "lon": -73.9416178 }, + { "lat": 40.8508808, "lon": -73.9416237 }, + { "lat": 40.8508628, "lon": -73.9416270 }, + { "lat": 40.8508451, "lon": -73.9416281 }, + { "lat": 40.8508273, "lon": -73.9416258 }, + { "lat": 40.8508227, "lon": -73.9416245 }, + { "lat": 40.8508163, "lon": -73.9416226 }, + { "lat": 40.8508080, "lon": -73.9416167 }, + { "lat": 40.8508016, "lon": -73.9416085 }, + { "lat": 40.8507976, "lon": -73.9415980 }, + { "lat": 40.8507949, "lon": -73.9415849 }, + { "lat": 40.8507942, "lon": -73.9415694 }, + { "lat": 40.8507954, "lon": -73.9415564 }, + { "lat": 40.8507988, "lon": -73.9415436 }, + { "lat": 40.8508042, "lon": -73.9415320 }, + { "lat": 40.8508116, "lon": -73.9415219 }, + { "lat": 40.8508220, "lon": -73.9415132 }, + { "lat": 40.8508336, "lon": -73.9415081 }, + { "lat": 40.8508452, "lon": -73.9415047 }, + { "lat": 40.8508574, "lon": -73.9415031 }, + { "lat": 40.8509266, "lon": -73.9414912 }, + { "lat": 40.8509553, "lon": -73.9414817 }, + { "lat": 40.8509814, "lon": -73.9414698 }, + { "lat": 40.8510117, "lon": -73.9414517 }, + { "lat": 40.8510580, "lon": -73.9414212 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Haven Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 8119596, + "bounds": { + "minlat": 40.8513650, + "minlon": -73.9419549, + "maxlat": 40.8517167, + "maxlon": -73.9412123 + }, + "nodes": [ + 60929261, + 1763612250, + 12067141202, + 1769708234, + 12067141203, + 12067141205, + 9166213998, + 11595000957, + 9563821093, + 12067141204, + 12067141206, + 9166213997 + ], + "geometry": [ + { "lat": 40.8517167, "lon": -73.9419549 }, + { "lat": 40.8514401, "lon": -73.9415781 }, + { "lat": 40.8514206, "lon": -73.9415476 }, + { "lat": 40.8514082, "lon": -73.9415238 }, + { "lat": 40.8513978, "lon": -73.9414972 }, + { "lat": 40.8513895, "lon": -73.9414708 }, + { "lat": 40.8513812, "lon": -73.9414418 }, + { "lat": 40.8513712, "lon": -73.9413961 }, + { "lat": 40.8513652, "lon": -73.9413471 }, + { "lat": 40.8513650, "lon": -73.9413168 }, + { "lat": 40.8513660, "lon": -73.9412819 }, + { "lat": 40.8513723, "lon": -73.9412123 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Lafayette Plaza", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 8608691, + "bounds": { + "minlat": 40.8091580, + "minlon": -73.9681085, + "maxlat": 40.8105617, + "maxlon": -73.9672230 + }, + "nodes": [ + 61257626, + 7908594136, + 7908594142, + 42424937 + ], + "geometry": [ + { "lat": 40.8091580, "lon": -73.9681085 }, + { "lat": 40.8102204, "lon": -73.9674444 }, + { "lat": 40.8104025, "lon": -73.9673276 }, + { "lat": 40.8105617, "lon": -73.9672230 } + ], + "tags": { + "destination:lanes": "none|none|none;125th Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "turn:lanes": "none|none|through;slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 8987838, + "bounds": { + "minlat": 40.8452657, + "minlon": -73.9222894, + "maxlat": 40.8460074, + "maxlon": -73.9216716 + }, + "nodes": [ + 60921061, + 12045211953, + 2907939265, + 12045211954, + 12045211956, + 12045211955, + 12045211957, + 5200170116, + 12045211958, + 12045211959, + 12045211960, + 60921060 + ], + "geometry": [ + { "lat": 40.8452657, "lon": -73.9222894 }, + { "lat": 40.8453595, "lon": -73.9222477 }, + { "lat": 40.8454113, "lon": -73.9222244 }, + { "lat": 40.8454603, "lon": -73.9221998 }, + { "lat": 40.8455101, "lon": -73.9221695 }, + { "lat": 40.8455558, "lon": -73.9221358 }, + { "lat": 40.8456016, "lon": -73.9220964 }, + { "lat": 40.8456465, "lon": -73.9220562 }, + { "lat": 40.8457513, "lon": -73.9219583 }, + { "lat": 40.8458552, "lon": -73.9218513 }, + { "lat": 40.8459344, "lon": -73.9217598 }, + { "lat": 40.8460074, "lon": -73.9216716 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 8994094, + "bounds": { + "minlat": 40.8596569, + "minlon": -73.9649976, + "maxlat": 40.8627282, + "maxlon": -73.9633561 + }, + "nodes": [ + 76463662, + 65904403, + 65904401, + 12021371957, + 65903770 + ], + "geometry": [ + { "lat": 40.8627282, "lon": -73.9633561 }, + { "lat": 40.8625834, "lon": -73.9634401 }, + { "lat": 40.8614651, "lon": -73.9640629 }, + { "lat": 40.8598457, "lon": -73.9649452 }, + { "lat": 40.8596569, "lon": -73.9649976 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "2", + "maxheight": "14'5\"", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "oneway": "yes", + "ref": "NJ 67", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 9702530, + "bounds": { + "minlat": 40.8612974, + "minlon": -73.9678596, + "maxlat": 40.8613693, + "maxlon": -73.9671623 + }, + "nodes": [ + 7921643417, + 7921643406, + 7921643427, + 7921643386, + 7921614880 + ], + "geometry": [ + { "lat": 40.8613693, "lon": -73.9671623 }, + { "lat": 40.8613457, "lon": -73.9674226 }, + { "lat": 40.8613328, "lon": -73.9675534 }, + { "lat": 40.8613198, "lon": -73.9676679 }, + { "lat": 40.8612974, "lon": -73.9678596 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445S", + "destination": "Alt to G.W. Bridge", + "destination:ref:to": "NJ 4;US 46;I 95;I 80;NJTP", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "maxspeed": "40 mph", + "oneway": "yes", + "ref": "US 9W", + "short_name": "Palisades Parkway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 9702540, + "bounds": { + "minlat": 40.8618491, + "minlon": -73.9636393, + "maxlat": 40.8628621, + "maxlon": -73.9632341 + }, + "nodes": [ + 65903763, + 65903762, + 65903760, + 12021383195, + 12021383196, + 12021383197, + 12021383177, + 76463640 + ], + "geometry": [ + { "lat": 40.8618491, "lon": -73.9636393 }, + { "lat": 40.8620126, "lon": -73.9635724 }, + { "lat": 40.8622701, "lon": -73.9634678 }, + { "lat": 40.8623899, "lon": -73.9634209 }, + { "lat": 40.8624961, "lon": -73.9633764 }, + { "lat": 40.8625985, "lon": -73.9633305 }, + { "lat": 40.8627031, "lon": -73.9632789 }, + { "lat": 40.8628621, "lon": -73.9632341 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Lemoine Avenue", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 9702602, + "bounds": { + "minlat": 40.8501023, + "minlon": -73.9524621, + "maxlat": 40.8516917, + "maxlon": -73.9443747 + }, + "nodes": [ + 171245253, + 1044184576 + ], + "geometry": [ + { "lat": 40.8501023, "lon": -73.9443747 }, + { "lat": 40.8516917, "lon": -73.9524621 } + ], + "tags": { + "access:conditional": "permit @ height>14'0\"; permit @ width>8'6\"; permit @ weight>50000 lbs; permit @ axleload>20000 lbs; permit @ bogieweight>34000 lbs", + "bicycle": "use_sidepath", + "bridge": "yes", + "cycleway:right": "separate", + "foot": "no", + "hazmat:1.1": "permit", + "hazmat:1.2": "permit", + "hazmat:1.3": "permit", + "hgv": "designated", + "hgv_articulated:conditional": "permit @ height>14'0\"; permit @ width>8'6\"; permit @ weight>80000 lbs; permit @ axleload>20000 lbs; permit @ bogieweight>34000 lbs", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "maxaxleload": "20000 lbs", + "maxbogieweight": "34000 lbs", + "maxheight": "14'0\"", + "maxspeed": "45 mph", + "maxweight": "50000 lbs", + "maxweight:hgv_articulated": "80000 lbs", + "maxwidth": "8'6\"", + "name": "George Washington Bridge Upper Level", + "name:etymology:wikidata": "Q23", + "name:ru": "Мост Джорджа Вашингтона (верхний уровень)", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "sidewalk": "no", + "surface": "asphalt", + "toll": "no", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 9702612, + "bounds": { + "minlat": 40.8638715, + "minlon": -73.9750422, + "maxlat": 40.8652220, + "maxlon": -73.9746790 + }, + "nodes": [ + 298773624, + 7930522769, + 299124224, + 7930522773, + 299124225, + 7930522771, + 76464434, + 13762329213, + 7930522770, + 13762329215, + 7930522772, + 13762329214, + 7926187982, + 13754077750 + ], + "geometry": [ + { "lat": 40.8652220, "lon": -73.9750422 }, + { "lat": 40.8650906, "lon": -73.9749928 }, + { "lat": 40.8649515, "lon": -73.9749422 }, + { "lat": 40.8648209, "lon": -73.9748959 }, + { "lat": 40.8646866, "lon": -73.9748516 }, + { "lat": 40.8645584, "lon": -73.9748140 }, + { "lat": 40.8644290, "lon": -73.9747810 }, + { "lat": 40.8643362, "lon": -73.9747592 }, + { "lat": 40.8642383, "lon": -73.9747386 }, + { "lat": 40.8641877, "lon": -73.9747289 }, + { "lat": 40.8641055, "lon": -73.9747133 }, + { "lat": 40.8640586, "lon": -73.9747045 }, + { "lat": 40.8639633, "lon": -73.9746889 }, + { "lat": 40.8638715, "lon": -73.9746790 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "George Washington Bridge Upper Level|George Washington Bridge Upper Level;George Washington Bridge Lower Level;Fort Lee|George Washington Bridge Lower Level;Fort Lee|George Washington Bridge Lower Level;Fort Lee", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "hov:lanes": "designated|||", + "lanes": "4", + "maxheight": "14'2\"", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "slight_left|slight_left;through|none|none" + } +}, +{ + "type": "way", + "id": 9702618, + "bounds": { + "minlat": 40.8566795, + "minlon": -73.9732758, + "maxlat": 40.8573384, + "maxlon": -73.9725496 + }, + "nodes": [ + 60811360, + 7925039024, + 7925039066, + 7925039072, + 7925039078, + 76464544, + 76464545 + ], + "geometry": [ + { "lat": 40.8566795, "lon": -73.9725496 }, + { "lat": 40.8569216, "lon": -73.9727863 }, + { "lat": 40.8569863, "lon": -73.9728771 }, + { "lat": 40.8570500, "lon": -73.9729619 }, + { "lat": 40.8571177, "lon": -73.9730463 }, + { "lat": 40.8572066, "lon": -73.9731529 }, + { "lat": 40.8573384, "lon": -73.9732758 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "destination": "Palisades Park", + "destination:ref": "US 1 South;US 9 South", + "destination:ref:to": "US 46", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "junction:ref": "72B", + "lanes": "1", + "maxheight": "14'4\"", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 9702620, + "bounds": { + "minlat": 40.8562398, + "minlon": -73.9732758, + "maxlat": 40.8573384, + "maxlon": -73.9715182 + }, + "nodes": [ + 7925039080, + 13788481514, + 13788481513, + 13788481512, + 7925039030, + 12020325944, + 76464557, + 76464545 + ], + "geometry": [ + { "lat": 40.8562398, "lon": -73.9715182 }, + { "lat": 40.8563895, "lon": -73.9718790 }, + { "lat": 40.8566913, "lon": -73.9723326 }, + { "lat": 40.8568084, "lon": -73.9725088 }, + { "lat": 40.8569255, "lon": -73.9726786 }, + { "lat": 40.8571311, "lon": -73.9729733 }, + { "lat": 40.8572289, "lon": -73.9731134 }, + { "lat": 40.8573384, "lon": -73.9732758 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "destination:ref": "US 1;US 9;US 46", + "destination:ref:to": "US 46", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "junction:ref": "72B", + "lanes": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "oneway": "yes", + "ref": "US 1;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 9702623, + "bounds": { + "minlat": 40.8464592, + "minlon": -73.9904364, + "maxlat": 40.8485880, + "maxlon": -73.9882974 + }, + "nodes": [ + 299172012, + 103093897, + 530805911 + ], + "geometry": [ + { "lat": 40.8464592, "lon": -73.9904364 }, + { "lat": 40.8484038, "lon": -73.9884830 }, + { "lat": 40.8485880, "lon": -73.9882974 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "embankment": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 9702648, + "bounds": { + "minlat": 40.8639059, + "minlon": -73.9747999, + "maxlat": 40.8646526, + "maxlon": -73.9745649 + }, + "nodes": [ + 76465081, + 518970925, + 76464920 + ], + "geometry": [ + { "lat": 40.8646526, "lon": -73.9745649 }, + { "lat": 40.8640393, "lon": -73.9747574 }, + { "lat": 40.8639059, "lon": -73.9747999 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "bridge": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 9702696, + "bounds": { + "minlat": 40.8536766, + "minlon": -73.9685159, + "maxlat": 40.8540849, + "maxlon": -73.9682621 + }, + "nodes": [ + 530475416, + 5330468390, + 4054733407, + 103205070 + ], + "geometry": [ + { "lat": 40.8540849, "lon": -73.9682621 }, + { "lat": 40.8539181, "lon": -73.9683640 }, + { "lat": 40.8537750, "lon": -73.9684545 }, + { "lat": 40.8536766, "lon": -73.9685159 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 9702753, + "bounds": { + "minlat": 40.8589837, + "minlon": -73.9734062, + "maxlat": 40.8593286, + "maxlon": -73.9724460 + }, + "nodes": [ + 76463562, + 7926202589, + 76465376, + 7926187975, + 76465377, + 7926202616, + 7926202605, + 7926202598, + 76465378, + 7926202623, + 7926187981, + 76465379, + 8837676700 + ], + "geometry": [ + { "lat": 40.8589837, "lon": -73.9724460 }, + { "lat": 40.8590311, "lon": -73.9725232 }, + { "lat": 40.8590657, "lon": -73.9725877 }, + { "lat": 40.8591009, "lon": -73.9726524 }, + { "lat": 40.8591326, "lon": -73.9727144 }, + { "lat": 40.8591593, "lon": -73.9727757 }, + { "lat": 40.8591819, "lon": -73.9728382 }, + { "lat": 40.8592038, "lon": -73.9729084 }, + { "lat": 40.8592210, "lon": -73.9729745 }, + { "lat": 40.8592533, "lon": -73.9731132 }, + { "lat": 40.8592870, "lon": -73.9732509 }, + { "lat": 40.8593220, "lon": -73.9733855 }, + { "lat": 40.8593286, "lon": -73.9734062 } + ], + "tags": { + "bicycle": "no", + "destination:ref": "NJ 4 West", + "foot": "no", + "highway": "trunk", + "horse": "no", + "lanes": "2", + "maxspeed:advisory": "20 mph", + "oneway": "yes", + "ref": "NJ 4", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "no", + "turn:lanes": "merge_to_right|none" + } +}, +{ + "type": "way", + "id": 9702755, + "bounds": { + "minlat": 40.8571893, + "minlon": -73.9720162, + "maxlat": 40.8582695, + "maxlon": -73.9716849 + }, + "nodes": [ + 76465371, + 7930571982, + 5108600077, + 7930571981, + 299386763, + 8934986752, + 76465372, + 7925022031, + 11461733252, + 299386762, + 76465148 + ], + "geometry": [ + { "lat": 40.8571893, "lon": -73.9716849 }, + { "lat": 40.8572224, "lon": -73.9717264 }, + { "lat": 40.8572629, "lon": -73.9717613 }, + { "lat": 40.8573081, "lon": -73.9717926 }, + { "lat": 40.8573589, "lon": -73.9718159 }, + { "lat": 40.8573866, "lon": -73.9718246 }, + { "lat": 40.8574142, "lon": -73.9718333 }, + { "lat": 40.8574855, "lon": -73.9718494 }, + { "lat": 40.8575517, "lon": -73.9718633 }, + { "lat": 40.8579690, "lon": -73.9719513 }, + { "lat": 40.8582695, "lon": -73.9720162 } + ], + "tags": { + "alt_name": "Cross Street", + "highway": "primary", + "lanes": "2", + "name": "Bridge Plaza North", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cross", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 9741348, + "bounds": { + "minlat": 40.8610959, + "minlon": -73.9581875, + "maxlat": 40.8729929, + "maxlon": -73.9515791 + }, + "nodes": [ + 60810564, + 7912952279, + 60810565, + 7924835170, + 7924835181, + 60810566, + 7924838493, + 7924835174, + 60810682, + 7924835166, + 7924838485, + 60810683, + 60810684, + 7924838490, + 7924835171, + 7924835182, + 60810685, + 7924835162, + 7924835175, + 60810686, + 7924835179, + 60810688, + 7924835167, + 60810689, + 7924838486, + 60810690, + 7924841506, + 60810746, + 60810747, + 60810748, + 60810749, + 60810750, + 60810751, + 60810752, + 60810753, + 60810754, + 60810755, + 60810756, + 60810757 + ], + "geometry": [ + { "lat": 40.8610959, "lon": -73.9581875 }, + { "lat": 40.8623074, "lon": -73.9569396 }, + { "lat": 40.8624922, "lon": -73.9567455 }, + { "lat": 40.8626798, "lon": -73.9565538 }, + { "lat": 40.8628663, "lon": -73.9563726 }, + { "lat": 40.8630602, "lon": -73.9561935 }, + { "lat": 40.8632563, "lon": -73.9560190 }, + { "lat": 40.8634590, "lon": -73.9558516 }, + { "lat": 40.8636603, "lon": -73.9556967 }, + { "lat": 40.8638687, "lon": -73.9555469 }, + { "lat": 40.8640793, "lon": -73.9554047 }, + { "lat": 40.8642934, "lon": -73.9552721 }, + { "lat": 40.8645079, "lon": -73.9551471 }, + { "lat": 40.8647271, "lon": -73.9550286 }, + { "lat": 40.8649470, "lon": -73.9549175 }, + { "lat": 40.8651687, "lon": -73.9548145 }, + { "lat": 40.8653946, "lon": -73.9547172 }, + { "lat": 40.8656175, "lon": -73.9546287 }, + { "lat": 40.8658454, "lon": -73.9545430 }, + { "lat": 40.8660709, "lon": -73.9544622 }, + { "lat": 40.8663031, "lon": -73.9543894 }, + { "lat": 40.8665331, "lon": -73.9543259 }, + { "lat": 40.8667663, "lon": -73.9542689 }, + { "lat": 40.8670008, "lon": -73.9542176 }, + { "lat": 40.8672342, "lon": -73.9541726 }, + { "lat": 40.8674691, "lon": -73.9541368 }, + { "lat": 40.8676955, "lon": -73.9541057 }, + { "lat": 40.8680836, "lon": -73.9540551 }, + { "lat": 40.8685336, "lon": -73.9540011 }, + { "lat": 40.8691519, "lon": -73.9539177 }, + { "lat": 40.8694959, "lon": -73.9538147 }, + { "lat": 40.8698335, "lon": -73.9536859 }, + { "lat": 40.8702359, "lon": -73.9534971 }, + { "lat": 40.8706642, "lon": -73.9532310 }, + { "lat": 40.8710082, "lon": -73.9529907 }, + { "lat": 40.8713587, "lon": -73.9527332 }, + { "lat": 40.8720077, "lon": -73.9522354 }, + { "lat": 40.8723972, "lon": -73.9519607 }, + { "lat": 40.8729929, "lon": -73.9515791 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway" + } +}, +{ + "type": "way", + "id": 9764584, + "bounds": { + "minlat": 40.8758059, + "minlon": -73.9251568, + "maxlat": 40.8797735, + "maxlon": -73.9190307 + }, + "nodes": [ + 8584784524, + 8584784520, + 8584784517, + 60915089, + 8584769116, + 4215690627, + 8584769109, + 12063632749, + 12063632748, + 8584769103, + 12063832917, + 12063832918, + 12063832919, + 8584769102, + 12063757883, + 595729843, + 2520101856, + 3966664793, + 2520078548, + 12063832920, + 2520078547, + 12063832924, + 12064288850, + 2520078546, + 12064288849, + 8584784534, + 12064288848, + 12063832925, + 12064288847, + 3966664768 + ], + "geometry": [ + { "lat": 40.8758059, "lon": -73.9251568 }, + { "lat": 40.8758748, "lon": -73.9250606 }, + { "lat": 40.8759517, "lon": -73.9249523 }, + { "lat": 40.8760219, "lon": -73.9248510 }, + { "lat": 40.8760955, "lon": -73.9247440 }, + { "lat": 40.8761660, "lon": -73.9246392 }, + { "lat": 40.8762352, "lon": -73.9245361 }, + { "lat": 40.8763074, "lon": -73.9244257 }, + { "lat": 40.8763785, "lon": -73.9243169 }, + { "lat": 40.8764425, "lon": -73.9242175 }, + { "lat": 40.8765179, "lon": -73.9240998 }, + { "lat": 40.8765896, "lon": -73.9239890 }, + { "lat": 40.8766592, "lon": -73.9238819 }, + { "lat": 40.8789630, "lon": -73.9203906 }, + { "lat": 40.8790348, "lon": -73.9202818 }, + { "lat": 40.8791013, "lon": -73.9201762 }, + { "lat": 40.8791718, "lon": -73.9200576 }, + { "lat": 40.8792362, "lon": -73.9199388 }, + { "lat": 40.8792999, "lon": -73.9198227 }, + { "lat": 40.8793804, "lon": -73.9196689 }, + { "lat": 40.8794245, "lon": -73.9195854 }, + { "lat": 40.8794882, "lon": -73.9194672 }, + { "lat": 40.8795215, "lon": -73.9194083 }, + { "lat": 40.8795535, "lon": -73.9193530 }, + { "lat": 40.8795893, "lon": -73.9192937 }, + { "lat": 40.8796260, "lon": -73.9192368 }, + { "lat": 40.8796617, "lon": -73.9191824 }, + { "lat": 40.8796993, "lon": -73.9191290 }, + { "lat": 40.8797368, "lon": -73.9190781 }, + { "lat": 40.8797735, "lon": -73.9190307 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Henry Hudson Bridge", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "NY 907V", + "wikidata": "Q7718385", + "wikipedia": "en:Henry Hudson Bridge" + } +}, +{ + "type": "way", + "id": 9852385, + "bounds": { + "minlat": 40.8466364, + "minlon": -73.9332816, + "maxlat": 40.8472362, + "maxlon": -73.9317621 + }, + "nodes": [ + 60918321, + 12065325176, + 9908548253, + 12065325175, + 9908548254, + 12065325174, + 12065325173, + 9908548255, + 60918322, + 12065325177, + 12065325172, + 12065325178, + 12065325171 + ], + "geometry": [ + { "lat": 40.8466364, "lon": -73.9317621 }, + { "lat": 40.8468702, "lon": -73.9323216 }, + { "lat": 40.8469206, "lon": -73.9324438 }, + { "lat": 40.8469442, "lon": -73.9325013 }, + { "lat": 40.8469693, "lon": -73.9325649 }, + { "lat": 40.8469928, "lon": -73.9326242 }, + { "lat": 40.8470164, "lon": -73.9326848 }, + { "lat": 40.8470386, "lon": -73.9327439 }, + { "lat": 40.8470617, "lon": -73.9328069 }, + { "lat": 40.8471065, "lon": -73.9329292 }, + { "lat": 40.8471614, "lon": -73.9330824 }, + { "lat": 40.8471976, "lon": -73.9331780 }, + { "lat": 40.8472362, "lon": -73.9332816 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight": "default", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 11316055, + "bounds": { + "minlat": 40.7723867, + "minlon": -73.9203593, + "maxlat": 40.7727334, + "maxlon": -73.9198672 + }, + "nodes": [ + 276210711, + 11685092477 + ], + "geometry": [ + { "lat": 40.7723867, "lon": -73.9198672 }, + { "lat": 40.7727334, "lon": -73.9203593 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "4", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Robert F. Kennedy Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 11562248, + "bounds": { + "minlat": 40.8336642, + "minlon": -73.9815700, + "maxlat": 40.8351800, + "maxlon": -73.9738453 + }, + "nodes": [ + 5108649563, + 5108649557, + 5108649559, + 7487194320, + 5108649554, + 5108649555, + 103093082, + 103093084, + 7130161687, + 103093087, + 103093089, + 103093091, + 103093092, + 103093096, + 103093097, + 103093098, + 103093099, + 103093100, + 103093101, + 103093102, + 103093103, + 103093104, + 103093105, + 103093106, + 13525423083, + 103093107, + 13525423082, + 103093108, + 103093110, + 103093112, + 103093113, + 103093115, + 5108654517, + 103093117, + 103093119, + 103093121, + 7504158888, + 103093123 + ], + "geometry": [ + { "lat": 40.8336642, "lon": -73.9738543 }, + { "lat": 40.8337743, "lon": -73.9738453 }, + { "lat": 40.8339001, "lon": -73.9738789 }, + { "lat": 40.8339635, "lon": -73.9739040 }, + { "lat": 40.8340828, "lon": -73.9739513 }, + { "lat": 40.8342820, "lon": -73.9740044 }, + { "lat": 40.8342925, "lon": -73.9740629 }, + { "lat": 40.8343053, "lon": -73.9741659 }, + { "lat": 40.8343490, "lon": -73.9744700 }, + { "lat": 40.8343907, "lon": -73.9746904 }, + { "lat": 40.8344300, "lon": -73.9748520 }, + { "lat": 40.8344890, "lon": -73.9750130 }, + { "lat": 40.8346030, "lon": -73.9752560 }, + { "lat": 40.8347070, "lon": -73.9754370 }, + { "lat": 40.8349400, "lon": -73.9758490 }, + { "lat": 40.8350390, "lon": -73.9760650 }, + { "lat": 40.8350620, "lon": -73.9761260 }, + { "lat": 40.8351210, "lon": -73.9763200 }, + { "lat": 40.8351590, "lon": -73.9765110 }, + { "lat": 40.8351780, "lon": -73.9767070 }, + { "lat": 40.8351800, "lon": -73.9769040 }, + { "lat": 40.8351540, "lon": -73.9772060 }, + { "lat": 40.8351210, "lon": -73.9775680 }, + { "lat": 40.8351150, "lon": -73.9777310 }, + { "lat": 40.8351167, "lon": -73.9782666 }, + { "lat": 40.8351170, "lon": -73.9783750 }, + { "lat": 40.8351175, "lon": -73.9784838 }, + { "lat": 40.8351210, "lon": -73.9792400 }, + { "lat": 40.8351060, "lon": -73.9794550 }, + { "lat": 40.8350831, "lon": -73.9796637 }, + { "lat": 40.8350215, "lon": -73.9800125 }, + { "lat": 40.8349414, "lon": -73.9803995 }, + { "lat": 40.8349318, "lon": -73.9804556 }, + { "lat": 40.8349220, "lon": -73.9806570 }, + { "lat": 40.8349270, "lon": -73.9808280 }, + { "lat": 40.8349730, "lon": -73.9812537 }, + { "lat": 40.8349898, "lon": -73.9813933 }, + { "lat": 40.8350110, "lon": -73.9815700 } + ], + "tags": { + "highway": "residential", + "name": "Bridle Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridle", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_left_1": "07024", + "tiger:zip_right": "07024", + "tiger:zip_right_1": "07024" + } +}, +{ + "type": "way", + "id": 11562266, + "bounds": { + "minlat": 40.8526120, + "minlon": -73.9908680, + "maxlat": 40.8600907, + "maxlon": -73.9859897 + }, + "nodes": [ + 440215449, + 8078713077, + 103093209, + 103093211, + 103093213, + 103093215, + 103093218, + 103093220, + 103093222, + 103093226, + 103093228, + 103093229, + 103093230, + 103093231, + 103093232, + 103093234, + 10245975829 + ], + "geometry": [ + { "lat": 40.8526120, "lon": -73.9908680 }, + { "lat": 40.8526971, "lon": -73.9908034 }, + { "lat": 40.8527530, "lon": -73.9907610 }, + { "lat": 40.8528790, "lon": -73.9906800 }, + { "lat": 40.8535222, "lon": -73.9903146 }, + { "lat": 40.8543980, "lon": -73.9897620 }, + { "lat": 40.8551890, "lon": -73.9892840 }, + { "lat": 40.8553310, "lon": -73.9891970 }, + { "lat": 40.8562707, "lon": -73.9886248 }, + { "lat": 40.8570060, "lon": -73.9881780 }, + { "lat": 40.8570390, "lon": -73.9881580 }, + { "lat": 40.8577880, "lon": -73.9877020 }, + { "lat": 40.8585733, "lon": -73.9872182 }, + { "lat": 40.8590710, "lon": -73.9869170 }, + { "lat": 40.8593627, "lon": -73.9867246 }, + { "lat": 40.8594701, "lon": -73.9866251 }, + { "lat": 40.8600907, "lon": -73.9859897 } + ], + "tags": { + "direction": "backward", + "highway": "residential", + "name": "Glenwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glenwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11562273, + "bounds": { + "minlat": 40.8705388, + "minlon": -74.0042357, + "maxlat": 40.8706937, + "maxlon": -74.0040997 + }, + "nodes": [ + 298782911, + 10940833231, + 4205863447 + ], + "geometry": [ + { "lat": 40.8705388, "lon": -74.0042357 }, + { "lat": 40.8706033, "lon": -74.0041780 }, + { "lat": 40.8706937, "lon": -74.0040997 } + ], + "tags": { + "cycleway:right": "no", + "highway": "secondary", + "name": "Glenwood Avenue", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glenwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11562275, + "bounds": { + "minlat": 40.8347418, + "minlon": -73.9727740, + "maxlat": 40.8358580, + "maxlon": -73.9714594 + }, + "nodes": [ + 103093386, + 103093388, + 103093390, + 103093392, + 103093394, + 103093396, + 103093398, + 103093400, + 103093401, + 103093402, + 103093403, + 5560289556, + 7672312178, + 103093404 + ], + "geometry": [ + { "lat": 40.8358580, "lon": -73.9727680 }, + { "lat": 40.8358110, "lon": -73.9727740 }, + { "lat": 40.8357040, "lon": -73.9727720 }, + { "lat": 40.8356100, "lon": -73.9727510 }, + { "lat": 40.8355200, "lon": -73.9727140 }, + { "lat": 40.8354340, "lon": -73.9726600 }, + { "lat": 40.8353450, "lon": -73.9725820 }, + { "lat": 40.8352750, "lon": -73.9724980 }, + { "lat": 40.8352000, "lon": -73.9723770 }, + { "lat": 40.8351760, "lon": -73.9723360 }, + { "lat": 40.8349699, "lon": -73.9719472 }, + { "lat": 40.8347668, "lon": -73.9715670 }, + { "lat": 40.8347627, "lon": -73.9715494 }, + { "lat": 40.8347418, "lon": -73.9714594 } + ], + "tags": { + "highway": "residential", + "name": "Glenwood Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glenwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11562298, + "bounds": { + "minlat": 40.8134195, + "minlon": -74.0015486, + "maxlat": 40.8152514, + "maxlon": -73.9981694 + }, + "nodes": [ + 103093605, + 103105150, + 103093603, + 13523912772, + 103093601 + ], + "geometry": [ + { "lat": 40.8152514, "lon": -74.0015486 }, + { "lat": 40.8144260, "lon": -74.0001000 }, + { "lat": 40.8144070, "lon": -74.0000650 }, + { "lat": 40.8134746, "lon": -73.9982755 }, + { "lat": 40.8134195, "lon": -73.9981694 } + ], + "tags": { + "highway": "residential", + "name": "McKinley Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "McKinley", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022", + "tiger:zip_right_1": "07022" + } +}, +{ + "type": "way", + "id": 11562423, + "bounds": { + "minlat": 40.8700616, + "minlon": -73.9671640, + "maxlat": 40.8703840, + "maxlon": -73.9666491 + }, + "nodes": [ + 103094666, + 440215024 + ], + "geometry": [ + { "lat": 40.8703840, "lon": -73.9671640 }, + { "lat": 40.8700616, "lon": -73.9666491 } + ], + "tags": { + "highway": "residential", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "64409916", + "tiger:upload_uuid": "bulk_upload.pl-5b68207f-8509-44f2-bf52-94cbb5c7f59c" + } +}, +{ + "type": "way", + "id": 11562433, + "bounds": { + "minlat": 40.8628417, + "minlon": -73.9722069, + "maxlat": 40.8653861, + "maxlon": -73.9699560 + }, + "nodes": [ + 3531038466, + 7376909258, + 3531038456, + 3531038455, + 3531038454, + 7373684658, + 103094716, + 103094715, + 6320468123, + 103094714, + 103094713, + 103094712, + 103094710, + 3531038435, + 8289448141 + ], + "geometry": [ + { "lat": 40.8653861, "lon": -73.9699560 }, + { "lat": 40.8652800, "lon": -73.9702284 }, + { "lat": 40.8650710, "lon": -73.9707655 }, + { "lat": 40.8650305, "lon": -73.9708080 }, + { "lat": 40.8649506, "lon": -73.9708497 }, + { "lat": 40.8643710, "lon": -73.9711354 }, + { "lat": 40.8643156, "lon": -73.9711627 }, + { "lat": 40.8639010, "lon": -73.9713834 }, + { "lat": 40.8637463, "lon": -73.9714563 }, + { "lat": 40.8636116, "lon": -73.9715197 }, + { "lat": 40.8634788, "lon": -73.9715958 }, + { "lat": 40.8633562, "lon": -73.9716738 }, + { "lat": 40.8631928, "lon": -73.9718409 }, + { "lat": 40.8629241, "lon": -73.9721173 }, + { "lat": 40.8628417, "lon": -73.9722069 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Crest Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11562544, + "bounds": { + "minlat": 40.8453036, + "minlon": -73.9678257, + "maxlat": 40.8454694, + "maxlon": -73.9676917 + }, + "nodes": [ + 103095841, + 103095842 + ], + "geometry": [ + { "lat": 40.8453036, "lon": -73.9678257 }, + { "lat": 40.8454694, "lon": -73.9676917 } + ], + "tags": { + "highway": "residential", + "name": "Veterans Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11562634, + "bounds": { + "minlat": 40.8417136, + "minlon": -73.9693668, + "maxlat": 40.8418427, + "maxlon": -73.9692121 + }, + "nodes": [ + 103097449, + 5362444837, + 5362441713, + 5362441706, + 5362444823 + ], + "geometry": [ + { "lat": 40.8417136, "lon": -73.9692121 }, + { "lat": 40.8417503, "lon": -73.9692333 }, + { "lat": 40.8417889, "lon": -73.9692588 }, + { "lat": 40.8418256, "lon": -73.9693284 }, + { "lat": 40.8418427, "lon": -73.9693668 } + ], + "tags": { + "highway": "residential", + "name": "Washington Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11562654, + "bounds": { + "minlat": 40.8627124, + "minlon": -73.9724940, + "maxlat": 40.8628180, + "maxlon": -73.9722898 + }, + "nodes": [ + 103097528, + 103094704 + ], + "geometry": [ + { "lat": 40.8628180, "lon": -73.9724940 }, + { "lat": 40.8627124, "lon": -73.9722898 } + ], + "tags": { + "highway": "residential", + "name": "Linwood Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11562723, + "bounds": { + "minlat": 40.8602216, + "minlon": -73.9604426, + "maxlat": 40.8607918, + "maxlon": -73.9597538 + }, + "nodes": [ + 103107331, + 5108291048, + 103107329, + 103107325, + 103107323, + 103107320, + 103107317, + 5108291918, + 103107316, + 103107313, + 103098302, + 5108291917, + 103098299, + 7391395721, + 103098296 + ], + "geometry": [ + { "lat": 40.8606850, "lon": -73.9597538 }, + { "lat": 40.8607371, "lon": -73.9598442 }, + { "lat": 40.8607439, "lon": -73.9598532 }, + { "lat": 40.8607784, "lon": -73.9599326 }, + { "lat": 40.8607871, "lon": -73.9600031 }, + { "lat": 40.8607918, "lon": -73.9600832 }, + { "lat": 40.8607814, "lon": -73.9601860 }, + { "lat": 40.8607614, "lon": -73.9602738 }, + { "lat": 40.8607308, "lon": -73.9603322 }, + { "lat": 40.8606511, "lon": -73.9604176 }, + { "lat": 40.8605619, "lon": -73.9604426 }, + { "lat": 40.8604901, "lon": -73.9604261 }, + { "lat": 40.8603957, "lon": -73.9603759 }, + { "lat": 40.8603057, "lon": -73.9603185 }, + { "lat": 40.8602216, "lon": -73.9602653 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11562742, + "bounds": { + "minlat": 40.8730811, + "minlon": -73.9518930, + "maxlat": 40.8733141, + "maxlon": -73.9511802 + }, + "nodes": [ + 103098573, + 752178497 + ], + "geometry": [ + { "lat": 40.8733141, "lon": -73.9518930 }, + { "lat": 40.8730811, "lon": -73.9511802 } + ], + "tags": { + "highway": "residential", + "maxheight": "13'", + "name": "Allison Park Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Allison Park", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 11563056, + "bounds": { + "minlat": 40.8404079, + "minlon": -74.0213624, + "maxlat": 40.8414074, + "maxlon": -74.0189251 + }, + "nodes": [ + 103102629, + 10936284775, + 10938131431, + 103102633, + 103102635, + 103102637, + 103102640, + 10938126785, + 10938131458, + 10938131433, + 103102642 + ], + "geometry": [ + { "lat": 40.8414074, "lon": -74.0213624 }, + { "lat": 40.8411124, "lon": -74.0211182 }, + { "lat": 40.8410023, "lon": -74.0210082 }, + { "lat": 40.8409679, "lon": -74.0209695 }, + { "lat": 40.8409329, "lon": -74.0209216 }, + { "lat": 40.8409013, "lon": -74.0208706 }, + { "lat": 40.8408714, "lon": -74.0208154 }, + { "lat": 40.8408463, "lon": -74.0207559 }, + { "lat": 40.8408215, "lon": -74.0206809 }, + { "lat": 40.8408015, "lon": -74.0206114 }, + { "lat": 40.8404079, "lon": -74.0189251 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "64430538", + "tiger:upload_uuid": "bulk_upload.pl-5b68207f-8509-44f2-bf52-94cbb5c7f59c" + } +}, +{ + "type": "way", + "id": 11563210, + "bounds": { + "minlat": 40.8357396, + "minlon": -74.0070594, + "maxlat": 40.8360702, + "maxlon": -74.0067238 + }, + "nodes": [ + 103104140, + 103104142 + ], + "geometry": [ + { "lat": 40.8357396, "lon": -74.0070594 }, + { "lat": 40.8360702, "lon": -74.0067238 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11563211, + "bounds": { + "minlat": 40.8351110, + "minlon": -74.0062240, + "maxlat": 40.8355170, + "maxlon": -74.0057940 + }, + "nodes": [ + 103104148, + 103104150 + ], + "geometry": [ + { "lat": 40.8351110, "lon": -74.0062240 }, + { "lat": 40.8355170, "lon": -74.0057940 } + ], + "tags": { + "highway": "residential", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "64443941", + "tiger:upload_uuid": "bulk_upload.pl-5b68207f-8509-44f2-bf52-94cbb5c7f59c" + } +}, +{ + "type": "way", + "id": 11563333, + "bounds": { + "minlat": 40.8749176, + "minlon": -73.9756172, + "maxlat": 40.8751407, + "maxlon": -73.9756019 + }, + "nodes": [ + 103105414, + 530806587 + ], + "geometry": [ + { "lat": 40.8749176, "lon": -73.9756172 }, + { "lat": 40.8751407, "lon": -73.9756019 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11563334, + "bounds": { + "minlat": 40.8740774, + "minlon": -73.9756172, + "maxlat": 40.8749176, + "maxlon": -73.9755144 + }, + "nodes": [ + 530806256, + 530806240, + 7709015412, + 103105414 + ], + "geometry": [ + { "lat": 40.8740774, "lon": -73.9755350 }, + { "lat": 40.8744000, "lon": -73.9755144 }, + { "lat": 40.8747964, "lon": -73.9755931 }, + { "lat": 40.8749176, "lon": -73.9756172 } + ], + "tags": { + "highway": "residential", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11563498, + "bounds": { + "minlat": 40.8651367, + "minlon": -74.0106025, + "maxlat": 40.8658982, + "maxlon": -74.0085255 + }, + "nodes": [ + 298562950, + 10936420180, + 298562932, + 10936420171, + 298562951, + 298562558, + 10936420174, + 298562920, + 10936420183, + 298562560 + ], + "geometry": [ + { "lat": 40.8658982, "lon": -74.0085255 }, + { "lat": 40.8656249, "lon": -74.0094185 }, + { "lat": 40.8655725, "lon": -74.0095872 }, + { "lat": 40.8655177, "lon": -74.0097541 }, + { "lat": 40.8654602, "lon": -74.0099165 }, + { "lat": 40.8653995, "lon": -74.0100763 }, + { "lat": 40.8653319, "lon": -74.0102313 }, + { "lat": 40.8652583, "lon": -74.0103823 }, + { "lat": 40.8651847, "lon": -74.0105203 }, + { "lat": 40.8651367, "lon": -74.0106025 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "no" + } +}, +{ + "type": "way", + "id": 11563527, + "bounds": { + "minlat": 40.8696495, + "minlon": -74.0042862, + "maxlat": 40.8705388, + "maxlon": -74.0037759 + }, + "nodes": [ + 775937813, + 298782734, + 4215534533, + 4215534534, + 4215534535, + 298606408, + 298606409, + 13788369154, + 298783172, + 298783061, + 298782911 + ], + "geometry": [ + { "lat": 40.8696495, "lon": -74.0037759 }, + { "lat": 40.8699931, "lon": -74.0041607 }, + { "lat": 40.8700357, "lon": -74.0041994 }, + { "lat": 40.8700811, "lon": -74.0042321 }, + { "lat": 40.8701291, "lon": -74.0042590 }, + { "lat": 40.8701737, "lon": -74.0042761 }, + { "lat": 40.8702422, "lon": -74.0042862 }, + { "lat": 40.8702973, "lon": -74.0042852 }, + { "lat": 40.8703540, "lon": -74.0042805 }, + { "lat": 40.8704245, "lon": -74.0042674 }, + { "lat": 40.8705388, "lon": -74.0042357 } + ], + "tags": { + "cycleway:right": "no", + "highway": "secondary", + "name": "Glenwood Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 11563600, + "bounds": { + "minlat": 40.8634666, + "minlon": -73.9710335, + "maxlat": 40.8640295, + "maxlon": -73.9698371 + }, + "nodes": [ + 103107666, + 3531038442, + 3531038443, + 3531038444 + ], + "geometry": [ + { "lat": 40.8634666, "lon": -73.9698371 }, + { "lat": 40.8638356, "lon": -73.9707844 }, + { "lat": 40.8639136, "lon": -73.9709405 }, + { "lat": 40.8640295, "lon": -73.9710335 } + ], + "tags": { + "highway": "residential", + "name": "Ridge Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11563629, + "bounds": { + "minlat": 40.8279638, + "minlon": -73.9728115, + "maxlat": 40.8280605, + "maxlon": -73.9726212 + }, + "nodes": [ + 6609862672, + 103108089 + ], + "geometry": [ + { "lat": 40.8279638, "lon": -73.9726212 }, + { "lat": 40.8280605, "lon": -73.9728115 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11563719, + "bounds": { + "minlat": 40.8507747, + "minlon": -73.9855583, + "maxlat": 40.8519719, + "maxlon": -73.9850965 + }, + "nodes": [ + 4695818110, + 103108771, + 10943492023, + 103108769, + 10943492036, + 103108766, + 7393483044, + 103108764, + 10943492054, + 103108763, + 10943492024, + 299385587, + 10943492065, + 7393466954 + ], + "geometry": [ + { "lat": 40.8519719, "lon": -73.9855573 }, + { "lat": 40.8519053, "lon": -73.9855583 }, + { "lat": 40.8518360, "lon": -73.9855565 }, + { "lat": 40.8517533, "lon": -73.9855494 }, + { "lat": 40.8516724, "lon": -73.9855388 }, + { "lat": 40.8515918, "lon": -73.9855218 }, + { "lat": 40.8514957, "lon": -73.9854968 }, + { "lat": 40.8513959, "lon": -73.9854631 }, + { "lat": 40.8513092, "lon": -73.9854294 }, + { "lat": 40.8512252, "lon": -73.9853904 }, + { "lat": 40.8511470, "lon": -73.9853491 }, + { "lat": 40.8510679, "lon": -73.9853011 }, + { "lat": 40.8509919, "lon": -73.9852503 }, + { "lat": 40.8507747, "lon": -73.9850965 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "1", + "maxheight": "13'10\"", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 11563761, + "bounds": { + "minlat": 40.8680937, + "minlon": -73.9713681, + "maxlat": 40.8682888, + "maxlon": -73.9708523 + }, + "nodes": [ + 103109091, + 103109090, + 6902588118, + 6902588119, + 103109089, + 103109088 + ], + "geometry": [ + { "lat": 40.8682888, "lon": -73.9708523 }, + { "lat": 40.8682380, "lon": -73.9709923 }, + { "lat": 40.8681905, "lon": -73.9710943 }, + { "lat": 40.8682009, "lon": -73.9711978 }, + { "lat": 40.8681716, "lon": -73.9712907 }, + { "lat": 40.8680937, "lon": -73.9713681 } + ], + "tags": { + "access": "private", + "highway": "residential", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11563763, + "bounds": { + "minlat": 40.8678450, + "minlon": -73.9709480, + "maxlat": 40.8682888, + "maxlon": -73.9708523 + }, + "nodes": [ + 103109098, + 6902588114, + 6902588115, + 6902588116, + 6902588117, + 103109091 + ], + "geometry": [ + { "lat": 40.8678450, "lon": -73.9709480 }, + { "lat": 40.8679399, "lon": -73.9708967 }, + { "lat": 40.8680049, "lon": -73.9708683 }, + { "lat": 40.8680646, "lon": -73.9708867 }, + { "lat": 40.8681662, "lon": -73.9708848 }, + { "lat": 40.8682888, "lon": -73.9708523 } + ], + "tags": { + "access": "private", + "highway": "residential", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11563865, + "bounds": { + "minlat": 40.8308695, + "minlon": -73.9866097, + "maxlat": 40.8314470, + "maxlon": -73.9861625 + }, + "nodes": [ + 103110212, + 6964929493, + 6964929495, + 6964929497, + 103110214 + ], + "geometry": [ + { "lat": 40.8308695, "lon": -73.9866097 }, + { "lat": 40.8311904, "lon": -73.9863612 }, + { "lat": 40.8312970, "lon": -73.9862787 }, + { "lat": 40.8314097, "lon": -73.9861914 }, + { "lat": 40.8314470, "lon": -73.9861625 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Williams Place", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "William", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 11563870, + "bounds": { + "minlat": 40.8435720, + "minlon": -73.9963870, + "maxlat": 40.8512489, + "maxlon": -73.9887200 + }, + "nodes": [ + 103110253, + 103110254, + 103110255, + 103110258, + 5959019503, + 103110260, + 103110262 + ], + "geometry": [ + { "lat": 40.8435720, "lon": -73.9963870 }, + { "lat": 40.8449510, "lon": -73.9950366 }, + { "lat": 40.8460980, "lon": -73.9938860 }, + { "lat": 40.8474970, "lon": -73.9924940 }, + { "lat": 40.8491890, "lon": -73.9907874 }, + { "lat": 40.8498030, "lon": -73.9901680 }, + { "lat": 40.8512489, "lon": -73.9887200 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Glen Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11563905, + "bounds": { + "minlat": 40.8476010, + "minlon": -73.9997630, + "maxlat": 40.8485720, + "maxlon": -73.9981000 + }, + "nodes": [ + 103110629, + 5976782468, + 103110631 + ], + "geometry": [ + { "lat": 40.8476010, "lon": -73.9981000 }, + { "lat": 40.8479472, "lon": -73.9986929 }, + { "lat": 40.8485720, "lon": -73.9997630 } + ], + "tags": { + "highway": "residential", + "name": "Cleveland Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cleveland", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11563915, + "bounds": { + "minlat": 40.8681830, + "minlon": -73.9804437, + "maxlat": 40.8695413, + "maxlon": -73.9779010 + }, + "nodes": [ + 103110728, + 103110730, + 103110732, + 103110734, + 103110735, + 103110737, + 103110739, + 103110741, + 103110743, + 103110745, + 103110747, + 103110750 + ], + "geometry": [ + { "lat": 40.8695363, "lon": -73.9804437 }, + { "lat": 40.8695413, "lon": -73.9803070 }, + { "lat": 40.8695272, "lon": -73.9801579 }, + { "lat": 40.8695026, "lon": -73.9800439 }, + { "lat": 40.8694507, "lon": -73.9799004 }, + { "lat": 40.8689660, "lon": -73.9787040 }, + { "lat": 40.8688850, "lon": -73.9785400 }, + { "lat": 40.8687740, "lon": -73.9783640 }, + { "lat": 40.8686840, "lon": -73.9782500 }, + { "lat": 40.8685110, "lon": -73.9780940 }, + { "lat": 40.8682740, "lon": -73.9779360 }, + { "lat": 40.8681830, "lon": -73.9779010 } + ], + "tags": { + "highway": "residential", + "name": "Pine Hill Road", + "sidewalk": "left", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pine Hill", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11563931, + "bounds": { + "minlat": 40.8230142, + "minlon": -73.9863450, + "maxlat": 40.8235277, + "maxlon": -73.9853874 + }, + "nodes": [ + 103110911, + 103110913, + 7557454984, + 5956074120, + 103110914 + ], + "geometry": [ + { "lat": 40.8230142, "lon": -73.9853874 }, + { "lat": 40.8233942, "lon": -73.9860746 }, + { "lat": 40.8234745, "lon": -73.9862378 }, + { "lat": 40.8234838, "lon": -73.9862568 }, + { "lat": 40.8235277, "lon": -73.9863450 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Place", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11563957, + "bounds": { + "minlat": 40.8155710, + "minlon": -73.9857782, + "maxlat": 40.8159861, + "maxlon": -73.9851429 + }, + "nodes": [ + 103111132, + 103111134 + ], + "geometry": [ + { "lat": 40.8155710, "lon": -73.9851429 }, + { "lat": 40.8159861, "lon": -73.9857782 } + ], + "tags": { + "highway": "residential", + "name": "Cecelia Avenue", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cecelia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11563962, + "bounds": { + "minlat": 40.8160217, + "minlon": -73.9874915, + "maxlat": 40.8188977, + "maxlon": -73.9858348 + }, + "nodes": [ + 103111138, + 103111140, + 7596426702, + 103111141, + 103111142, + 103111144, + 103111146, + 103111148, + 103111151, + 103111153, + 103111155, + 103111157 + ], + "geometry": [ + { "lat": 40.8160217, "lon": -73.9858348 }, + { "lat": 40.8164360, "lon": -73.9864886 }, + { "lat": 40.8168062, "lon": -73.9870517 }, + { "lat": 40.8168615, "lon": -73.9871332 }, + { "lat": 40.8169458, "lon": -73.9872709 }, + { "lat": 40.8170305, "lon": -73.9873637 }, + { "lat": 40.8170845, "lon": -73.9874137 }, + { "lat": 40.8172046, "lon": -73.9874588 }, + { "lat": 40.8174404, "lon": -73.9874915 }, + { "lat": 40.8176005, "lon": -73.9873529 }, + { "lat": 40.8181510, "lon": -73.9868586 }, + { "lat": 40.8188977, "lon": -73.9862354 } + ], + "tags": { + "highway": "residential", + "name": "Cecelia Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cecelia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11563974, + "bounds": { + "minlat": 40.8387121, + "minlon": -73.9863320, + "maxlat": 40.8399470, + "maxlon": -73.9841540 + }, + "nodes": [ + 103111259, + 103111265, + 103111267, + 103111270, + 103111272, + 103111274 + ], + "geometry": [ + { "lat": 40.8399470, "lon": -73.9863320 }, + { "lat": 40.8395690, "lon": -73.9856650 }, + { "lat": 40.8395250, "lon": -73.9855860 }, + { "lat": 40.8391190, "lon": -73.9848710 }, + { "lat": 40.8390990, "lon": -73.9848340 }, + { "lat": 40.8387121, "lon": -73.9841540 } + ], + "tags": { + "highway": "residential", + "name": "Brinkerhoff Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brinkerhoff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11563984, + "bounds": { + "minlat": 40.8076600, + "minlon": -73.9983690, + "maxlat": 40.8089009, + "maxlon": -73.9953730 + }, + "nodes": [ + 103111330, + 7622328770, + 103111332, + 103111334, + 7622328775, + 103111339, + 103111342 + ], + "geometry": [ + { "lat": 40.8076600, "lon": -73.9953730 }, + { "lat": 40.8077801, "lon": -73.9956930 }, + { "lat": 40.8082450, "lon": -73.9969320 }, + { "lat": 40.8085780, "lon": -73.9978160 }, + { "lat": 40.8086155, "lon": -73.9979134 }, + { "lat": 40.8087765, "lon": -73.9981738 }, + { "lat": 40.8089009, "lon": -73.9983690 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11564026, + "bounds": { + "minlat": 40.8528501, + "minlon": -73.9841608, + "maxlat": 40.8533397, + "maxlon": -73.9829380 + }, + "nodes": [ + 2395509026, + 12692250293, + 5362354428, + 2395509025, + 7422339114, + 103111762, + 103111766, + 103111770, + 103111772, + 103111773, + 103111774, + 5362357996, + 103111776, + 103111779 + ], + "geometry": [ + { "lat": 40.8533361, "lon": -73.9841608 }, + { "lat": 40.8532885, "lon": -73.9841089 }, + { "lat": 40.8532312, "lon": -73.9839809 }, + { "lat": 40.8531526, "lon": -73.9837126 }, + { "lat": 40.8530256, "lon": -73.9834856 }, + { "lat": 40.8529537, "lon": -73.9833570 }, + { "lat": 40.8528501, "lon": -73.9831685 }, + { "lat": 40.8528694, "lon": -73.9831085 }, + { "lat": 40.8529231, "lon": -73.9830462 }, + { "lat": 40.8530101, "lon": -73.9829583 }, + { "lat": 40.8530711, "lon": -73.9829380 }, + { "lat": 40.8532431, "lon": -73.9829739 }, + { "lat": 40.8532804, "lon": -73.9829977 }, + { "lat": 40.8533397, "lon": -73.9830968 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Madeline Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Madeline", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11564027, + "bounds": { + "minlat": 40.8501643, + "minlon": -73.9848105, + "maxlat": 40.8501876, + "maxlon": -73.9835810 + }, + "nodes": [ + 103111787, + 12692250276, + 103111790, + 3639311162, + 7250241490, + 3639311161 + ], + "geometry": [ + { "lat": 40.8501756, "lon": -73.9835810 }, + { "lat": 40.8501643, "lon": -73.9841016 }, + { "lat": 40.8501783, "lon": -73.9841909 }, + { "lat": 40.8501876, "lon": -73.9842505 }, + { "lat": 40.8501785, "lon": -73.9844503 }, + { "lat": 40.8501664, "lon": -73.9848105 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Madeline Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Madeline", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11564082, + "bounds": { + "minlat": 40.8215410, + "minlon": -74.0087282, + "maxlat": 40.8220932, + "maxlon": -74.0049030 + }, + "nodes": [ + 103112476, + 103112478, + 8530416417, + 103112481 + ], + "geometry": [ + { "lat": 40.8215410, "lon": -74.0049030 }, + { "lat": 40.8218710, "lon": -74.0070131 }, + { "lat": 40.8220932, "lon": -74.0085920 }, + { "lat": 40.8220694, "lon": -74.0087282 } + ], + "tags": { + "highway": "residential", + "name": "Probst Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Probst", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11564084, + "bounds": { + "minlat": 40.8347070, + "minlon": -73.9754370, + "maxlat": 40.8365702, + "maxlon": -73.9750918 + }, + "nodes": [ + 103093096, + 103112487, + 103112491, + 103112493, + 103112497, + 5108649553, + 103112501, + 103112504, + 103112508, + 103112510, + 103112515, + 103112519 + ], + "geometry": [ + { "lat": 40.8347070, "lon": -73.9754370 }, + { "lat": 40.8351070, "lon": -73.9752270 }, + { "lat": 40.8352010, "lon": -73.9751970 }, + { "lat": 40.8352960, "lon": -73.9751840 }, + { "lat": 40.8353920, "lon": -73.9751890 }, + { "lat": 40.8354698, "lon": -73.9752068 }, + { "lat": 40.8359070, "lon": -73.9753070 }, + { "lat": 40.8360060, "lon": -73.9753120 }, + { "lat": 40.8361180, "lon": -73.9752990 }, + { "lat": 40.8362270, "lon": -73.9752650 }, + { "lat": 40.8363220, "lon": -73.9752180 }, + { "lat": 40.8365702, "lon": -73.9750918 } + ], + "tags": { + "highway": "residential", + "name": "Crescent Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crescent", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_left_1": "07024", + "tiger:zip_right": "07024", + "tiger:zip_right_1": "07024" + } +}, +{ + "type": "way", + "id": 11564109, + "bounds": { + "minlat": 40.8089580, + "minlon": -74.0001910, + "maxlat": 40.8111227, + "maxlon": -73.9945330 + }, + "nodes": [ + 103112761, + 7630335379, + 103112764, + 103112767, + 103112770, + 103112771, + 103112775, + 103112777, + 103112780, + 103112782, + 103112788, + 103112790, + 13523912742, + 103112793 + ], + "geometry": [ + { "lat": 40.8089580, "lon": -73.9945330 }, + { "lat": 40.8090818, "lon": -73.9948717 }, + { "lat": 40.8091920, "lon": -73.9951730 }, + { "lat": 40.8094820, "lon": -73.9959660 }, + { "lat": 40.8097660, "lon": -73.9967400 }, + { "lat": 40.8098920, "lon": -73.9970860 }, + { "lat": 40.8099560, "lon": -73.9972620 }, + { "lat": 40.8100910, "lon": -73.9976280 }, + { "lat": 40.8103790, "lon": -73.9984060 }, + { "lat": 40.8106680, "lon": -73.9991850 }, + { "lat": 40.8108333, "lon": -73.9995639 }, + { "lat": 40.8109650, "lon": -73.9997920 }, + { "lat": 40.8110948, "lon": -74.0001202 }, + { "lat": 40.8111227, "lon": -74.0001910 } + ], + "tags": { + "highway": "residential", + "name": "Desoto Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Desoto", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11564155, + "bounds": { + "minlat": 40.8386540, + "minlon": -73.9717188, + "maxlat": 40.8394947, + "maxlon": -73.9702210 + }, + "nodes": [ + 103113258, + 7292367444, + 103113256, + 7292367441, + 103113253 + ], + "geometry": [ + { "lat": 40.8394947, "lon": -73.9717188 }, + { "lat": 40.8394612, "lon": -73.9716590 }, + { "lat": 40.8390467, "lon": -73.9709186 }, + { "lat": 40.8386809, "lon": -73.9702750 }, + { "lat": 40.8386540, "lon": -73.9702210 } + ], + "tags": { + "highway": "residential", + "name": "Sterling Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sterling", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11564395, + "bounds": { + "minlat": 40.8720370, + "minlon": -74.0184520, + "maxlat": 40.8754778, + "maxlon": -74.0162112 + }, + "nodes": [ + 103115268, + 103115270, + 103115272 + ], + "geometry": [ + { "lat": 40.8720370, "lon": -74.0184520 }, + { "lat": 40.8739158, "lon": -74.0172414 }, + { "lat": 40.8754778, "lon": -74.0162112 } + ], + "tags": { + "highway": "residential", + "name": "Woodbine Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Woodbine", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11564425, + "bounds": { + "minlat": 40.8244547, + "minlon": -74.0004048, + "maxlat": 40.8253745, + "maxlon": -73.9987269 + }, + "nodes": [ + 103115365, + 103115366 + ], + "geometry": [ + { "lat": 40.8244547, "lon": -73.9987269 }, + { "lat": 40.8253745, "lon": -74.0004048 } + ], + "tags": { + "highway": "residential", + "name": "Carpenter Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Carpenter", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11564480, + "bounds": { + "minlat": 40.8377308, + "minlon": -73.9723761, + "maxlat": 40.8413987, + "maxlon": -73.9707116 + }, + "nodes": [ + 103115562, + 103115561, + 103115560, + 103115558, + 103115556, + 103115555, + 103113258, + 103115554, + 103115553, + 103115552 + ], + "geometry": [ + { "lat": 40.8413987, "lon": -73.9707116 }, + { "lat": 40.8407640, "lon": -73.9711300 }, + { "lat": 40.8404580, "lon": -73.9713320 }, + { "lat": 40.8403070, "lon": -73.9714110 }, + { "lat": 40.8398030, "lon": -73.9716080 }, + { "lat": 40.8397780, "lon": -73.9716170 }, + { "lat": 40.8394947, "lon": -73.9717188 }, + { "lat": 40.8383004, "lon": -73.9721638 }, + { "lat": 40.8379670, "lon": -73.9722882 }, + { "lat": 40.8377308, "lon": -73.9723761 } + ], + "tags": { + "highway": "residential", + "name": "Undercliff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11564493, + "bounds": { + "minlat": 40.8174747, + "minlon": -73.9818291, + "maxlat": 40.8239966, + "maxlon": -73.9777143 + }, + "nodes": [ + 103115589, + 103115587, + 10131740179, + 5362545922, + 103115586, + 103115585, + 103115584, + 103115582, + 103115580, + 103115578, + 103115576, + 103115574, + 477379862, + 477405632, + 103115572, + 103115570, + 103115567 + ], + "geometry": [ + { "lat": 40.8239966, "lon": -73.9777143 }, + { "lat": 40.8238020, "lon": -73.9778354 }, + { "lat": 40.8231231, "lon": -73.9782559 }, + { "lat": 40.8229825, "lon": -73.9783430 }, + { "lat": 40.8229311, "lon": -73.9783783 }, + { "lat": 40.8226324, "lon": -73.9785623 }, + { "lat": 40.8216520, "lon": -73.9791637 }, + { "lat": 40.8214769, "lon": -73.9792751 }, + { "lat": 40.8203021, "lon": -73.9801287 }, + { "lat": 40.8199753, "lon": -73.9803569 }, + { "lat": 40.8196717, "lon": -73.9805366 }, + { "lat": 40.8193592, "lon": -73.9807108 }, + { "lat": 40.8192520, "lon": -73.9807735 }, + { "lat": 40.8187958, "lon": -73.9810401 }, + { "lat": 40.8181800, "lon": -73.9814000 }, + { "lat": 40.8175240, "lon": -73.9818040 }, + { "lat": 40.8174747, "lon": -73.9818291 } + ], + "tags": { + "highway": "residential", + "name": "Undercliff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11564496, + "bounds": { + "minlat": 40.8445330, + "minlon": -73.9682710, + "maxlat": 40.8452326, + "maxlon": -73.9676913 + }, + "nodes": [ + 103115632, + 103115634, + 103115636, + 103115637 + ], + "geometry": [ + { "lat": 40.8445330, "lon": -73.9682710 }, + { "lat": 40.8447833, "lon": -73.9680921 }, + { "lat": 40.8450805, "lon": -73.9678028 }, + { "lat": 40.8452326, "lon": -73.9676913 } + ], + "tags": { + "highway": "residential", + "name": "Undercliff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11564651, + "bounds": { + "minlat": 40.8284465, + "minlon": -73.9745745, + "maxlat": 40.8297032, + "maxlon": -73.9725519 + }, + "nodes": [ + 103116810, + 103116813, + 103116816, + 1752676698, + 103116818, + 103115618 + ], + "geometry": [ + { "lat": 40.8284465, "lon": -73.9725519 }, + { "lat": 40.8285121, "lon": -73.9726911 }, + { "lat": 40.8288681, "lon": -73.9732637 }, + { "lat": 40.8290891, "lon": -73.9735987 }, + { "lat": 40.8292912, "lon": -73.9739277 }, + { "lat": 40.8297032, "lon": -73.9745745 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11564655, + "bounds": { + "minlat": 40.8527557, + "minlon": -74.0215404, + "maxlat": 40.8591386, + "maxlon": -74.0192285 + }, + "nodes": [ + 103116863, + 103116865, + 103116868, + 103116870, + 7132865001, + 103116873, + 103116875, + 103116877 + ], + "geometry": [ + { "lat": 40.8527557, "lon": -74.0215404 }, + { "lat": 40.8530727, "lon": -74.0214347 }, + { "lat": 40.8543001, "lon": -74.0209891 }, + { "lat": 40.8555100, "lon": -74.0205010 }, + { "lat": 40.8558829, "lon": -74.0203606 }, + { "lat": 40.8567451, "lon": -74.0201136 }, + { "lat": 40.8579561, "lon": -74.0196646 }, + { "lat": 40.8591386, "lon": -74.0192285 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11564661, + "bounds": { + "minlat": 40.8261349, + "minlon": -74.0103620, + "maxlat": 40.8261513, + "maxlon": -74.0097380 + }, + "nodes": [ + 103116963, + 13527754329, + 103116965 + ], + "geometry": [ + { "lat": 40.8261349, "lon": -74.0097380 }, + { "lat": 40.8261386, "lon": -74.0098798 }, + { "lat": 40.8261513, "lon": -74.0103620 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11564698, + "bounds": { + "minlat": 40.8599823, + "minlon": -73.9877162, + "maxlat": 40.8609978, + "maxlon": -73.9866828 + }, + "nodes": [ + 103117243, + 8073350907, + 8073350902, + 10232196064, + 8073350903, + 103117245 + ], + "geometry": [ + { "lat": 40.8599823, "lon": -73.9877162 }, + { "lat": 40.8600269, "lon": -73.9876708 }, + { "lat": 40.8609470, "lon": -73.9867345 }, + { "lat": 40.8609574, "lon": -73.9867244 }, + { "lat": 40.8609616, "lon": -73.9867198 }, + { "lat": 40.8609978, "lon": -73.9866828 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Highland Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Highland", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11564793, + "bounds": { + "minlat": 40.8678380, + "minlon": -73.9639350, + "maxlat": 40.8692450, + "maxlon": -73.9604180 + }, + "nodes": [ + 103117797, + 103117800, + 103117802, + 103117804, + 103117805, + 103117806, + 103117807, + 103117808, + 103117809, + 103117810, + 103117811, + 103117812, + 103117813, + 103117815, + 103117822, + 103117825, + 103117827, + 103117829, + 103117831 + ], + "geometry": [ + { "lat": 40.8678380, "lon": -73.9604180 }, + { "lat": 40.8680586, "lon": -73.9607961 }, + { "lat": 40.8681710, "lon": -73.9609940 }, + { "lat": 40.8682250, "lon": -73.9611060 }, + { "lat": 40.8682680, "lon": -73.9612280 }, + { "lat": 40.8683490, "lon": -73.9615450 }, + { "lat": 40.8683930, "lon": -73.9616660 }, + { "lat": 40.8684260, "lon": -73.9617380 }, + { "lat": 40.8687460, "lon": -73.9623330 }, + { "lat": 40.8692380, "lon": -73.9632510 }, + { "lat": 40.8692450, "lon": -73.9633010 }, + { "lat": 40.8692370, "lon": -73.9633460 }, + { "lat": 40.8692180, "lon": -73.9633810 }, + { "lat": 40.8691680, "lon": -73.9634390 }, + { "lat": 40.8691050, "lon": -73.9634870 }, + { "lat": 40.8689450, "lon": -73.9635510 }, + { "lat": 40.8688600, "lon": -73.9636000 }, + { "lat": 40.8687710, "lon": -73.9636740 }, + { "lat": 40.8685250, "lon": -73.9639350 } + ], + "tags": { + "highway": "residential", + "name": "West Bayview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bayview", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11564794, + "bounds": { + "minlat": 40.8671704, + "minlon": -73.9598606, + "maxlat": 40.8675367, + "maxlon": -73.9592205 + }, + "nodes": [ + 103117840, + 5108579126, + 5108579137, + 5108579135, + 5108572976 + ], + "geometry": [ + { "lat": 40.8671704, "lon": -73.9592205 }, + { "lat": 40.8673252, "lon": -73.9594944 }, + { "lat": 40.8674097, "lon": -73.9596406 }, + { "lat": 40.8674695, "lon": -73.9597443 }, + { "lat": 40.8675367, "lon": -73.9598606 } + ], + "tags": { + "highway": "residential", + "name": "West Bayview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bayview", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11564812, + "bounds": { + "minlat": 40.8124868, + "minlon": -73.9941426, + "maxlat": 40.8134819, + "maxlon": -73.9923641 + }, + "nodes": [ + 103117987, + 7620500356, + 7614292244 + ], + "geometry": [ + { "lat": 40.8124868, "lon": -73.9923641 }, + { "lat": 40.8126263, "lon": -73.9926135 }, + { "lat": 40.8134819, "lon": -73.9941426 } + ], + "tags": { + "highway": "residential", + "name": "Washington Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11564826, + "bounds": { + "minlat": 40.8117618, + "minlon": -73.9917610, + "maxlat": 40.8121290, + "maxlon": -73.9911225 + }, + "nodes": [ + 103118056, + 8219493622, + 103118057 + ], + "geometry": [ + { "lat": 40.8117618, "lon": -73.9911225 }, + { "lat": 40.8118465, "lon": -73.9912698 }, + { "lat": 40.8121290, "lon": -73.9917610 } + ], + "tags": { + "highway": "residential", + "name": "Washington Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11564847, + "bounds": { + "minlat": 40.8497740, + "minlon": -73.9960530, + "maxlat": 40.8504670, + "maxlon": -73.9948680 + }, + "nodes": [ + 103118178, + 5976411298, + 103118177, + 103118176 + ], + "geometry": [ + { "lat": 40.8497740, "lon": -73.9948680 }, + { "lat": 40.8501786, "lon": -73.9955593 }, + { "lat": 40.8501930, "lon": -73.9955840 }, + { "lat": 40.8504670, "lon": -73.9960530 } + ], + "tags": { + "highway": "residential", + "name": "East Washington Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11564864, + "bounds": { + "minlat": 40.8159861, + "minlon": -73.9858348, + "maxlat": 40.8160217, + "maxlon": -73.9857782 + }, + "nodes": [ + 103111134, + 103111138 + ], + "geometry": [ + { "lat": 40.8159861, "lon": -73.9857782 }, + { "lat": 40.8160217, "lon": -73.9858348 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Cecelia Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cecilia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11564918, + "bounds": { + "minlat": 40.8747170, + "minlon": -74.0023287, + "maxlat": 40.8755068, + "maxlon": -73.9997780 + }, + "nodes": [ + 103118670, + 9871181599, + 9871181597, + 9871181551, + 9871181548, + 9871181536, + 9871181544, + 103118672 + ], + "geometry": [ + { "lat": 40.8747170, "lon": -73.9997780 }, + { "lat": 40.8747548, "lon": -73.9999004 }, + { "lat": 40.8750661, "lon": -74.0009081 }, + { "lat": 40.8752146, "lon": -74.0013892 }, + { "lat": 40.8752244, "lon": -74.0014209 }, + { "lat": 40.8752421, "lon": -74.0014795 }, + { "lat": 40.8752647, "lon": -74.0015508 }, + { "lat": 40.8755068, "lon": -74.0023287 } + ], + "tags": { + "highway": "residential", + "name": "Home Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Home", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11564974, + "bounds": { + "minlat": 40.8619505, + "minlon": -73.9724023, + "maxlat": 40.8640295, + "maxlon": -73.9710335 + }, + "nodes": [ + 3531038430, + 3531038431, + 3531038432, + 103119135, + 103119137, + 103194890, + 3531038441, + 3531038444 + ], + "geometry": [ + { "lat": 40.8619505, "lon": -73.9724023 }, + { "lat": 40.8622990, "lon": -73.9723426 }, + { "lat": 40.8624201, "lon": -73.9722514 }, + { "lat": 40.8625990, "lon": -73.9720925 }, + { "lat": 40.8631315, "lon": -73.9715848 }, + { "lat": 40.8633229, "lon": -73.9714098 }, + { "lat": 40.8635633, "lon": -73.9712716 }, + { "lat": 40.8640295, "lon": -73.9710335 } + ], + "tags": { + "highway": "residential", + "name": "Ridge Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ridge", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11565004, + "bounds": { + "minlat": 40.8491780, + "minlon": -74.0011451, + "maxlat": 40.8503336, + "maxlon": -73.9991640 + }, + "nodes": [ + 103119431, + 103119433, + 5976782454, + 5960557380, + 4207183403 + ], + "geometry": [ + { "lat": 40.8491780, "lon": -73.9991640 }, + { "lat": 40.8498530, "lon": -74.0003355 }, + { "lat": 40.8502418, "lon": -74.0009895 }, + { "lat": 40.8503001, "lon": -74.0010883 }, + { "lat": 40.8503336, "lon": -74.0011451 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "name": "West Central Boulevard", + "old_ref": "CR 54", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11565406, + "bounds": { + "minlat": 40.8813749, + "minlon": -73.9988447, + "maxlat": 40.8815871, + "maxlon": -73.9987339 + }, + "nodes": [ + 103123225, + 6786804339, + 103123228 + ], + "geometry": [ + { "lat": 40.8813749, "lon": -73.9988447 }, + { "lat": 40.8815197, "lon": -73.9987694 }, + { "lat": 40.8815871, "lon": -73.9987339 } + ], + "tags": { + "highway": "residential", + "name": "Tulip Circle", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Tulip", + "tiger:name_type": "Cir", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11565408, + "bounds": { + "minlat": 40.8312790, + "minlon": -73.9777630, + "maxlat": 40.8371382, + "maxlon": -73.9769079 + }, + "nodes": [ + 103123235, + 103123237, + 103123239, + 103123242, + 103123244, + 103123246, + 103123248, + 103123251, + 103123254, + 103123256, + 103123258, + 103123260, + 103123263, + 103123265, + 103093104, + 103123267, + 103123271, + 103123274, + 103123277, + 103123279, + 103123281, + 103123284, + 103123286, + 103123288 + ], + "geometry": [ + { "lat": 40.8312790, "lon": -73.9777630 }, + { "lat": 40.8315780, "lon": -73.9776420 }, + { "lat": 40.8322550, "lon": -73.9773900 }, + { "lat": 40.8323380, "lon": -73.9773660 }, + { "lat": 40.8324790, "lon": -73.9773350 }, + { "lat": 40.8330362, "lon": -73.9772377 }, + { "lat": 40.8331330, "lon": -73.9772240 }, + { "lat": 40.8332070, "lon": -73.9772290 }, + { "lat": 40.8339380, "lon": -73.9773250 }, + { "lat": 40.8340700, "lon": -73.9773240 }, + { "lat": 40.8342020, "lon": -73.9773050 }, + { "lat": 40.8343370, "lon": -73.9772660 }, + { "lat": 40.8346970, "lon": -73.9771850 }, + { "lat": 40.8348150, "lon": -73.9771800 }, + { "lat": 40.8351540, "lon": -73.9772060 }, + { "lat": 40.8357190, "lon": -73.9772480 }, + { "lat": 40.8358400, "lon": -73.9772390 }, + { "lat": 40.8359420, "lon": -73.9772160 }, + { "lat": 40.8360520, "lon": -73.9771750 }, + { "lat": 40.8365710, "lon": -73.9769590 }, + { "lat": 40.8367220, "lon": -73.9769200 }, + { "lat": 40.8368723, "lon": -73.9769112 }, + { "lat": 40.8370280, "lon": -73.9769079 }, + { "lat": 40.8371382, "lon": -73.9769247 } + ], + "tags": { + "highway": "residential", + "name": "Briar Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Briar", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "64392037:64392046:64392048:64392104", + "tiger:upload_uuid": "bulk_upload.pl-5b68207f-8509-44f2-bf52-94cbb5c7f59c", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11565410, + "bounds": { + "minlat": 40.8372463, + "minlon": -73.9773303, + "maxlat": 40.8393661, + "maxlon": -73.9757322 + }, + "nodes": [ + 103123300, + 103123303, + 103123304, + 103123306, + 103123307, + 103123308, + 103123309, + 103123311, + 7292367128, + 103123313, + 103123315 + ], + "geometry": [ + { "lat": 40.8372463, "lon": -73.9773303 }, + { "lat": 40.8375680, "lon": -73.9773280 }, + { "lat": 40.8376610, "lon": -73.9773180 }, + { "lat": 40.8377900, "lon": -73.9772850 }, + { "lat": 40.8378980, "lon": -73.9772400 }, + { "lat": 40.8380190, "lon": -73.9771690 }, + { "lat": 40.8381280, "lon": -73.9770840 }, + { "lat": 40.8381630, "lon": -73.9770510 }, + { "lat": 40.8388289, "lon": -73.9763274 }, + { "lat": 40.8388670, "lon": -73.9762860 }, + { "lat": 40.8393661, "lon": -73.9757322 } + ], + "tags": { + "highway": "residential", + "name": "Briar Way", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Briar", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11565428, + "bounds": { + "minlat": 40.8565610, + "minlon": -73.9840270, + "maxlat": 40.8575089, + "maxlon": -73.9824880 + }, + "nodes": [ + 103123511, + 10122889684, + 6117184933, + 103123513, + 103123516, + 103123518, + 103123522, + 6117184928, + 299171745, + 8668349674, + 10122889688, + 299171735 + ], + "geometry": [ + { "lat": 40.8575089, "lon": -73.9840270 }, + { "lat": 40.8574743, "lon": -73.9839560 }, + { "lat": 40.8573274, "lon": -73.9837021 }, + { "lat": 40.8572701, "lon": -73.9836088 }, + { "lat": 40.8571682, "lon": -73.9834881 }, + { "lat": 40.8570152, "lon": -73.9832482 }, + { "lat": 40.8568710, "lon": -73.9830050 }, + { "lat": 40.8568099, "lon": -73.9828958 }, + { "lat": 40.8567031, "lon": -73.9827327 }, + { "lat": 40.8566683, "lon": -73.9826722 }, + { "lat": 40.8566177, "lon": -73.9825860 }, + { "lat": 40.8565610, "lon": -73.9824880 } + ], + "tags": { + "highway": "residential", + "name": "Christie Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Christie", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07605" + } +}, +{ + "type": "way", + "id": 11565431, + "bounds": { + "minlat": 40.8555975, + "minlon": -73.9815310, + "maxlat": 40.8560040, + "maxlon": -73.9808565 + }, + "nodes": [ + 2919286478, + 2919286479, + 7434431194, + 103123529, + 103123530 + ], + "geometry": [ + { "lat": 40.8555975, "lon": -73.9808565 }, + { "lat": 40.8556310, "lon": -73.9808868 }, + { "lat": 40.8556483, "lon": -73.9809145 }, + { "lat": 40.8556599, "lon": -73.9809331 }, + { "lat": 40.8560040, "lon": -73.9815310 } + ], + "tags": { + "highway": "residential", + "name": "Christie Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Christie", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11565432, + "bounds": { + "minlat": 40.8270293, + "minlon": -74.0189460, + "maxlat": 40.8273966, + "maxlon": -74.0122128 + }, + "nodes": [ + 103123536, + 103123539, + 103123541, + 5748431720, + 6947587577, + 5758184497, + 5748431715, + 103099758, + 5748431707, + 6947602894, + 6947602897, + 8219342558, + 103123546, + 6947587570, + 103123548 + ], + "geometry": [ + { "lat": 40.8270293, "lon": -74.0122128 }, + { "lat": 40.8270972, "lon": -74.0134982 }, + { "lat": 40.8271249, "lon": -74.0139910 }, + { "lat": 40.8271374, "lon": -74.0142476 }, + { "lat": 40.8271824, "lon": -74.0149528 }, + { "lat": 40.8271950, "lon": -74.0151375 }, + { "lat": 40.8272302, "lon": -74.0155675 }, + { "lat": 40.8272335, "lon": -74.0157151 }, + { "lat": 40.8272138, "lon": -74.0159521 }, + { "lat": 40.8272183, "lon": -74.0160576 }, + { "lat": 40.8272248, "lon": -74.0162123 }, + { "lat": 40.8272550, "lon": -74.0169271 }, + { "lat": 40.8272660, "lon": -74.0171860 }, + { "lat": 40.8273449, "lon": -74.0181941 }, + { "lat": 40.8273966, "lon": -74.0189460 } + ], + "tags": { + "highway": "residential", + "name": "Pleasant View Terrace West", + "name_1": "Pleasant View Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pleasant View", + "tiger:name_base_1": "Pleasant View", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Ter", + "tiger:name_type_1": "Ter", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11565507, + "bounds": { + "minlat": 40.8084512, + "minlon": -73.9979888, + "maxlat": 40.8085780, + "maxlon": -73.9978160 + }, + "nodes": [ + 103124453, + 103111334 + ], + "geometry": [ + { "lat": 40.8084512, "lon": -73.9979888 }, + { "lat": 40.8085780, "lon": -73.9978160 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Plaza", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Plz", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11565530, + "bounds": { + "minlat": 40.8598963, + "minlon": -73.9659813, + "maxlat": 40.8602118, + "maxlon": -73.9654375 + }, + "nodes": [ + 7412927831, + 8112266590, + 103124646 + ], + "geometry": [ + { "lat": 40.8598963, "lon": -73.9654375 }, + { "lat": 40.8599585, "lon": -73.9655460 }, + { "lat": 40.8602118, "lon": -73.9659813 } + ], + "tags": { + "highway": "residential", + "name": "New York Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "New York", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11565558, + "bounds": { + "minlat": 40.8707796, + "minlon": -74.0150484, + "maxlat": 40.8726258, + "maxlon": -74.0138692 + }, + "nodes": [ + 103124977, + 103124981 + ], + "geometry": [ + { "lat": 40.8707796, "lon": -74.0150484 }, + { "lat": 40.8726258, "lon": -74.0138692 } + ], + "tags": { + "highway": "residential", + "name": "Gifford Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gifford", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11565616, + "bounds": { + "minlat": 40.8301754, + "minlon": -73.9785090, + "maxlat": 40.8326570, + "maxlon": -73.9761482 + }, + "nodes": [ + 103125345, + 7543767344, + 103125347, + 103125349, + 103125352, + 103125354, + 103125356, + 103125359, + 103125361, + 103125363, + 103125365, + 103125366, + 103125367, + 103125368, + 103125369, + 103123242, + 103125372, + 103125374, + 103125376, + 13525443313, + 103125377 + ], + "geometry": [ + { "lat": 40.8301754, "lon": -73.9766245 }, + { "lat": 40.8304250, "lon": -73.9764170 }, + { "lat": 40.8305011, "lon": -73.9763538 }, + { "lat": 40.8308474, "lon": -73.9762146 }, + { "lat": 40.8309489, "lon": -73.9761701 }, + { "lat": 40.8310619, "lon": -73.9761482 }, + { "lat": 40.8311477, "lon": -73.9761507 }, + { "lat": 40.8312480, "lon": -73.9761810 }, + { "lat": 40.8313490, "lon": -73.9762190 }, + { "lat": 40.8314610, "lon": -73.9762790 }, + { "lat": 40.8315720, "lon": -73.9763610 }, + { "lat": 40.8316240, "lon": -73.9764090 }, + { "lat": 40.8320640, "lon": -73.9769160 }, + { "lat": 40.8321460, "lon": -73.9770290 }, + { "lat": 40.8322470, "lon": -73.9771910 }, + { "lat": 40.8323380, "lon": -73.9773660 }, + { "lat": 40.8324000, "lon": -73.9775090 }, + { "lat": 40.8324680, "lon": -73.9776980 }, + { "lat": 40.8325240, "lon": -73.9778950 }, + { "lat": 40.8326398, "lon": -73.9784297 }, + { "lat": 40.8326570, "lon": -73.9785090 } + ], + "tags": { + "highway": "residential", + "name": "Bluff Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bluff", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11565629, + "bounds": { + "minlat": 40.8219909, + "minlon": -73.9785623, + "maxlat": 40.8226324, + "maxlon": -73.9773709 + }, + "nodes": [ + 103125589, + 7221969645, + 10131740172, + 103115585 + ], + "geometry": [ + { "lat": 40.8219909, "lon": -73.9773709 }, + { "lat": 40.8221103, "lon": -73.9775913 }, + { "lat": 40.8225837, "lon": -73.9784717 }, + { "lat": 40.8226324, "lon": -73.9785623 } + ], + "tags": { + "highway": "residential", + "name": "Winterburn Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Winterburn", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11565631, + "bounds": { + "minlat": 40.8347285, + "minlon": -74.0101587, + "maxlat": 40.8352024, + "maxlon": -74.0090242 + }, + "nodes": [ + 103125593, + 12016147256, + 103125595 + ], + "geometry": [ + { "lat": 40.8347285, "lon": -74.0090242 }, + { "lat": 40.8347782, "lon": -74.0091507 }, + { "lat": 40.8352024, "lon": -74.0101587 } + ], + "tags": { + "highway": "residential", + "name": "River Street", + "oneway": "yes", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11565648, + "bounds": { + "minlat": 40.8355967, + "minlon": -74.0129750, + "maxlat": 40.8364440, + "maxlon": -74.0114608 + }, + "nodes": [ + 103125756, + 103125759, + 103125760, + 103125762, + 103125765, + 103125766, + 103125769, + 103125770, + 103125771, + 103125774 + ], + "geometry": [ + { "lat": 40.8355967, "lon": -74.0115100 }, + { "lat": 40.8356538, "lon": -74.0114830 }, + { "lat": 40.8357289, "lon": -74.0114608 }, + { "lat": 40.8357826, "lon": -74.0114704 }, + { "lat": 40.8358228, "lon": -74.0115207 }, + { "lat": 40.8358688, "lon": -74.0116052 }, + { "lat": 40.8359657, "lon": -74.0118573 }, + { "lat": 40.8362480, "lon": -74.0125710 }, + { "lat": 40.8362640, "lon": -74.0125790 }, + { "lat": 40.8364440, "lon": -74.0129750 } + ], + "tags": { + "highway": "residential", + "name": "River Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11565654, + "bounds": { + "minlat": 40.8813145, + "minlon": -74.0227370, + "maxlat": 40.8828560, + "maxlon": -74.0177475 + }, + "nodes": [ + 103125789, + 103125790, + 103125792, + 103125793 + ], + "geometry": [ + { "lat": 40.8813145, "lon": -74.0177475 }, + { "lat": 40.8819079, "lon": -74.0196550 }, + { "lat": 40.8827122, "lon": -74.0222944 }, + { "lat": 40.8828560, "lon": -74.0227370 } + ], + "tags": { + "highway": "residential", + "name": "Griggs Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Griggs", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11565655, + "bounds": { + "minlat": 40.8797962, + "minlon": -74.0177698, + "maxlat": 40.8812492, + "maxlon": -74.0132746 + }, + "nodes": [ + 103125798, + 103125800, + 103125803 + ], + "geometry": [ + { "lat": 40.8797962, "lon": -74.0132746 }, + { "lat": 40.8805280, "lon": -74.0155550 }, + { "lat": 40.8812492, "lon": -74.0177698 } + ], + "tags": { + "highway": "residential", + "name": "Griggs Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Griggs", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11565672, + "bounds": { + "minlat": 40.8732825, + "minlon": -73.9779106, + "maxlat": 40.8740941, + "maxlon": -73.9773456 + }, + "nodes": [ + 103125899, + 103125901, + 3572534755 + ], + "geometry": [ + { "lat": 40.8732825, "lon": -73.9779106 }, + { "lat": 40.8734978, "lon": -73.9778941 }, + { "lat": 40.8740941, "lon": -73.9773456 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Gentry Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gentry", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11565682, + "bounds": { + "minlat": 40.8755017, + "minlon": -74.0037730, + "maxlat": 40.8759241, + "maxlon": -74.0035369 + }, + "nodes": [ + 103125990, + 103125992 + ], + "geometry": [ + { "lat": 40.8759241, "lon": -74.0035369 }, + { "lat": 40.8755017, "lon": -74.0037730 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Millay Court", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Millay", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11565734, + "bounds": { + "minlat": 40.8584330, + "minlon": -73.9851900, + "maxlat": 40.8596840, + "maxlon": -73.9830570 + }, + "nodes": [ + 103126288, + 10239342862, + 103126290, + 103126292, + 103126295 + ], + "geometry": [ + { "lat": 40.8596840, "lon": -73.9851900 }, + { "lat": 40.8596271, "lon": -73.9850895 }, + { "lat": 40.8591980, "lon": -73.9843610 }, + { "lat": 40.8588450, "lon": -73.9837600 }, + { "lat": 40.8584330, "lon": -73.9830570 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Howard Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Howard", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11565795, + "bounds": { + "minlat": 40.8359969, + "minlon": -74.0101636, + "maxlat": 40.8368093, + "maxlon": -74.0083390 + }, + "nodes": [ + 103126797, + 12016147247, + 12016147246, + 7217542438, + 103126798 + ], + "geometry": [ + { "lat": 40.8359969, "lon": -74.0083390 }, + { "lat": 40.8360332, "lon": -74.0084199 }, + { "lat": 40.8360480, "lon": -74.0084527 }, + { "lat": 40.8361485, "lon": -74.0086772 }, + { "lat": 40.8368093, "lon": -74.0101636 } + ], + "tags": { + "highway": "residential", + "name": "Hoyt Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hoyt", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11565798, + "bounds": { + "minlat": 40.8548715, + "minlon": -73.9654079, + "maxlat": 40.8570001, + "maxlon": -73.9645354 + }, + "nodes": [ + 5108585676, + 5449429910, + 12021336913, + 12021336912, + 12021336911, + 5108585681, + 12021336910, + 103126813, + 12021336909, + 9291861052, + 12021336908, + 12021336907, + 9291861051, + 9291861053, + 3895526489, + 12020539652, + 9291861056, + 3895526490, + 12020539651, + 9291861055, + 12020539650, + 3895526488, + 12020539653, + 12020539654, + 103115821 + ], + "geometry": [ + { "lat": 40.8570001, "lon": -73.9651314 }, + { "lat": 40.8569474, "lon": -73.9651483 }, + { "lat": 40.8569197, "lon": -73.9651542 }, + { "lat": 40.8568899, "lon": -73.9651588 }, + { "lat": 40.8568595, "lon": -73.9651598 }, + { "lat": 40.8568274, "lon": -73.9651581 }, + { "lat": 40.8567981, "lon": -73.9651487 }, + { "lat": 40.8567731, "lon": -73.9651368 }, + { "lat": 40.8567485, "lon": -73.9651100 }, + { "lat": 40.8567233, "lon": -73.9650788 }, + { "lat": 40.8567041, "lon": -73.9650530 }, + { "lat": 40.8566797, "lon": -73.9650177 }, + { "lat": 40.8566597, "lon": -73.9649863 }, + { "lat": 40.8565618, "lon": -73.9648211 }, + { "lat": 40.8564453, "lon": -73.9646094 }, + { "lat": 40.8564258, "lon": -73.9645816 }, + { "lat": 40.8564037, "lon": -73.9645585 }, + { "lat": 40.8563862, "lon": -73.9645448 }, + { "lat": 40.8563644, "lon": -73.9645359 }, + { "lat": 40.8563417, "lon": -73.9645354 }, + { "lat": 40.8563177, "lon": -73.9645409 }, + { "lat": 40.8562989, "lon": -73.9645490 }, + { "lat": 40.8549639, "lon": -73.9653523 }, + { "lat": 40.8549251, "lon": -73.9653756 }, + { "lat": 40.8548715, "lon": -73.9654079 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "Hoyt Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hoyt", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11565925, + "bounds": { + "minlat": 40.8685200, + "minlon": -74.0145700, + "maxlat": 40.8688630, + "maxlon": -74.0127700 + }, + "nodes": [ + 103127875, + 103127877 + ], + "geometry": [ + { "lat": 40.8688630, "lon": -74.0145700 }, + { "lat": 40.8685200, "lon": -74.0127700 } + ], + "tags": { + "highway": "residential", + "name": "East Walnut Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Walnut", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11566040, + "bounds": { + "minlat": 40.8435532, + "minlon": -74.0045411, + "maxlat": 40.8445875, + "maxlon": -74.0025139 + }, + "nodes": [ + 299181156, + 10943482394, + 10943492038, + 299181155, + 10943492022, + 299181154, + 12016116959, + 12016116960, + 12016116961, + 12016116962, + 103129337 + ], + "geometry": [ + { "lat": 40.8435532, "lon": -74.0025139 }, + { "lat": 40.8436396, "lon": -74.0027899 }, + { "lat": 40.8436626, "lon": -74.0028545 }, + { "lat": 40.8436878, "lon": -74.0029182 }, + { "lat": 40.8437182, "lon": -74.0029844 }, + { "lat": 40.8437490, "lon": -74.0030435 }, + { "lat": 40.8445432, "lon": -74.0044310 }, + { "lat": 40.8445591, "lon": -74.0044607 }, + { "lat": 40.8445677, "lon": -74.0044821 }, + { "lat": 40.8445776, "lon": -74.0045089 }, + { "lat": 40.8445875, "lon": -74.0045411 } + ], + "tags": { + "highway": "primary", + "name": "West Columbia Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11566168, + "bounds": { + "minlat": 40.8590754, + "minlon": -73.9816914, + "maxlat": 40.8603590, + "maxlon": -73.9807280 + }, + "nodes": [ + 103130773, + 10122889636, + 103130775, + 103130778, + 103130780, + 103130784, + 103130786, + 103130787, + 103130789 + ], + "geometry": [ + { "lat": 40.8590754, "lon": -73.9816914 }, + { "lat": 40.8591712, "lon": -73.9816278 }, + { "lat": 40.8602170, "lon": -73.9810630 }, + { "lat": 40.8602670, "lon": -73.9810280 }, + { "lat": 40.8603080, "lon": -73.9809770 }, + { "lat": 40.8603350, "lon": -73.9809240 }, + { "lat": 40.8603540, "lon": -73.9808620 }, + { "lat": 40.8603590, "lon": -73.9807930 }, + { "lat": 40.8603480, "lon": -73.9807280 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Cumley Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cumley", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11566173, + "bounds": { + "minlat": 40.8728799, + "minlon": -74.0207444, + "maxlat": 40.8759154, + "maxlon": -74.0187581 + }, + "nodes": [ + 103130846, + 7006356866, + 103130848, + 7081638874, + 7082910574, + 103130851 + ], + "geometry": [ + { "lat": 40.8728799, "lon": -74.0207444 }, + { "lat": 40.8731721, "lon": -74.0205713 }, + { "lat": 40.8747790, "lon": -74.0195073 }, + { "lat": 40.8750791, "lon": -74.0193095 }, + { "lat": 40.8754916, "lon": -74.0190375 }, + { "lat": 40.8759154, "lon": -74.0187581 } + ], + "tags": { + "highway": "residential", + "name": "Hickory Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hickory", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11566174, + "bounds": { + "minlat": 40.8704140, + "minlon": -73.9652350, + "maxlat": 40.8730770, + "maxlon": -73.9626470 + }, + "nodes": [ + 103130856, + 103130858, + 103130861 + ], + "geometry": [ + { "lat": 40.8704140, "lon": -73.9652350 }, + { "lat": 40.8712150, "lon": -73.9644570 }, + { "lat": 40.8730770, "lon": -73.9626470 } + ], + "tags": { + "highway": "residential", + "name": "Hickory Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hickory", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11566187, + "bounds": { + "minlat": 40.8244933, + "minlon": -73.9749325, + "maxlat": 40.8245986, + "maxlon": -73.9745583 + }, + "nodes": [ + 103130962, + 5362475719, + 1556174012 + ], + "geometry": [ + { "lat": 40.8245986, "lon": -73.9749325 }, + { "lat": 40.8245572, "lon": -73.9747826 }, + { "lat": 40.8244933, "lon": -73.9745583 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Grand Cove Way", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand Cove", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11566195, + "bounds": { + "minlat": 40.8706730, + "minlon": -73.9583550, + "maxlat": 40.8744921, + "maxlon": -73.9559140 + }, + "nodes": [ + 103130990, + 103130993, + 103130995, + 103130999, + 103131001, + 103131003, + 103131005, + 103131008, + 103131010, + 103131011, + 103131013, + 103131014, + 103131016, + 103131017, + 103131020, + 103131022, + 103131024, + 103131026, + 103131028, + 103131029, + 103131031, + 103131034 + ], + "geometry": [ + { "lat": 40.8706730, "lon": -73.9583550 }, + { "lat": 40.8714620, "lon": -73.9575200 }, + { "lat": 40.8715340, "lon": -73.9574660 }, + { "lat": 40.8716120, "lon": -73.9574280 }, + { "lat": 40.8719410, "lon": -73.9573320 }, + { "lat": 40.8720430, "lon": -73.9572860 }, + { "lat": 40.8721530, "lon": -73.9572140 }, + { "lat": 40.8722540, "lon": -73.9571230 }, + { "lat": 40.8729251, "lon": -73.9564268 }, + { "lat": 40.8733220, "lon": -73.9559990 }, + { "lat": 40.8733990, "lon": -73.9559480 }, + { "lat": 40.8734840, "lon": -73.9559190 }, + { "lat": 40.8735700, "lon": -73.9559140 }, + { "lat": 40.8736490, "lon": -73.9559310 }, + { "lat": 40.8737170, "lon": -73.9559620 }, + { "lat": 40.8738420, "lon": -73.9560530 }, + { "lat": 40.8738860, "lon": -73.9560760 }, + { "lat": 40.8739730, "lon": -73.9561030 }, + { "lat": 40.8740500, "lon": -73.9561110 }, + { "lat": 40.8741430, "lon": -73.9560970 }, + { "lat": 40.8742090, "lon": -73.9560730 }, + { "lat": 40.8744921, "lon": -73.9559158 } + ], + "tags": { + "highway": "residential", + "name": "Arthur Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Arthur", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11566221, + "bounds": { + "minlat": 40.8428932, + "minlon": -73.9694200, + "maxlat": 40.8435440, + "maxlon": -73.9683408 + }, + "nodes": [ + 103131327, + 7292367290, + 103131330 + ], + "geometry": [ + { "lat": 40.8428932, "lon": -73.9683408 }, + { "lat": 40.8429292, "lon": -73.9684092 }, + { "lat": 40.8435440, "lon": -73.9694200 } + ], + "tags": { + "highway": "residential", + "name": "Arlington Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Arlington", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11566239, + "bounds": { + "minlat": 40.8300924, + "minlon": -73.9740947, + "maxlat": 40.8305568, + "maxlon": -73.9728552 + }, + "nodes": [ + 103115624, + 103131465, + 103131462, + 103131461, + 103131460, + 1752676705, + 103131457 + ], + "geometry": [ + { "lat": 40.8305568, "lon": -73.9740947 }, + { "lat": 40.8302835, "lon": -73.9734022 }, + { "lat": 40.8301440, "lon": -73.9730599 }, + { "lat": 40.8301016, "lon": -73.9729557 }, + { "lat": 40.8300924, "lon": -73.9728900 }, + { "lat": 40.8300944, "lon": -73.9728733 }, + { "lat": 40.8300966, "lon": -73.9728552 } + ], + "tags": { + "highway": "residential", + "name": "Valley Terrace", + "name_1": "Valley Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Valley", + "tiger:name_base_1": "Valley", + "tiger:name_type": "Ter", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11566293, + "bounds": { + "minlat": 40.8572770, + "minlon": -73.9768600, + "maxlat": 40.8575920, + "maxlon": -73.9765290 + }, + "nodes": [ + 103131988, + 103131990 + ], + "geometry": [ + { "lat": 40.8572770, "lon": -73.9768600 }, + { "lat": 40.8575920, "lon": -73.9765290 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Louis Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Louis", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11566295, + "bounds": { + "minlat": 40.8572497, + "minlon": -73.9765290, + "maxlat": 40.8575920, + "maxlon": -73.9759922 + }, + "nodes": [ + 103131990, + 103131995, + 7417938950, + 7417938951, + 7417938949 + ], + "geometry": [ + { "lat": 40.8575920, "lon": -73.9765290 }, + { "lat": 40.8573251, "lon": -73.9760671 }, + { "lat": 40.8572957, "lon": -73.9760202 }, + { "lat": 40.8572640, "lon": -73.9759922 }, + { "lat": 40.8572497, "lon": -73.9759942 } + ], + "tags": { + "highway": "residential", + "name": "Louis Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Louis", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11566356, + "bounds": { + "minlat": 40.8749178, + "minlon": -74.0041202, + "maxlat": 40.8753545, + "maxlon": -74.0039639 + }, + "nodes": [ + 4469448605, + 4469448603, + 4469448610, + 4469448611, + 4469448602, + 103132456 + ], + "geometry": [ + { "lat": 40.8749178, "lon": -74.0041184 }, + { "lat": 40.8749955, "lon": -74.0040753 }, + { "lat": 40.8750310, "lon": -74.0041162 }, + { "lat": 40.8750585, "lon": -74.0041202 }, + { "lat": 40.8751131, "lon": -74.0040900 }, + { "lat": 40.8753545, "lon": -74.0039639 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Sinclair Court", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sinclair", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11566413, + "bounds": { + "minlat": 40.8083366, + "minlon": -73.9937732, + "maxlat": 40.8085858, + "maxlon": -73.9931915 + }, + "nodes": [ + 103132693, + 103132694 + ], + "geometry": [ + { "lat": 40.8083366, "lon": -73.9931915 }, + { "lat": 40.8085858, "lon": -73.9937732 } + ], + "tags": { + "highway": "residential", + "name": "Accomando Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Accomando", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11566481, + "bounds": { + "minlat": 40.8617402, + "minlon": -73.9676180, + "maxlat": 40.8634820, + "maxlon": -73.9675660 + }, + "nodes": [ + 103132984, + 5753470502, + 6320468161, + 5753470495, + 7087519303, + 103132982, + 12021383202, + 7921666088, + 12021383201, + 103132980 + ], + "geometry": [ + { "lat": 40.8634820, "lon": -73.9675660 }, + { "lat": 40.8634469, "lon": -73.9675665 }, + { "lat": 40.8629824, "lon": -73.9675728 }, + { "lat": 40.8626310, "lon": -73.9675775 }, + { "lat": 40.8623513, "lon": -73.9675898 }, + { "lat": 40.8621614, "lon": -73.9675959 }, + { "lat": 40.8620902, "lon": -73.9675986 }, + { "lat": 40.8618269, "lon": -73.9676087 }, + { "lat": 40.8617759, "lon": -73.9676136 }, + { "lat": 40.8617402, "lon": -73.9676180 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Linwood Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11566521, + "bounds": { + "minlat": 40.8307779, + "minlon": -73.9940018, + "maxlat": 40.8311540, + "maxlon": -73.9937560 + }, + "nodes": [ + 103133191, + 103133194 + ], + "geometry": [ + { "lat": 40.8307779, "lon": -73.9940018 }, + { "lat": 40.8311540, "lon": -73.9937560 } + ], + "tags": { + "highway": "residential", + "name": "Studio Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Studio", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11566545, + "bounds": { + "minlat": 40.8504670, + "minlon": -73.9971930, + "maxlat": 40.8511340, + "maxlon": -73.9960530 + }, + "nodes": [ + 103133334, + 5976422979, + 5976782498, + 103118176 + ], + "geometry": [ + { "lat": 40.8511340, "lon": -73.9971930 }, + { "lat": 40.8508162, "lon": -73.9966498 }, + { "lat": 40.8507006, "lon": -73.9964523 }, + { "lat": 40.8504670, "lon": -73.9960530 } + ], + "tags": { + "highway": "residential", + "name": "West Washington Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11566570, + "bounds": { + "minlat": 40.8519050, + "minlon": -73.9782060, + "maxlat": 40.8532870, + "maxlon": -73.9759740 + }, + "nodes": [ + 103133482, + 103133483, + 103133484, + 103133485 + ], + "geometry": [ + { "lat": 40.8519050, "lon": -73.9759740 }, + { "lat": 40.8527150, "lon": -73.9772830 }, + { "lat": 40.8527910, "lon": -73.9774060 }, + { "lat": 40.8532870, "lon": -73.9782060 } + ], + "tags": { + "highway": "residential", + "name": "Elizabeth Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elizabeth", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11566578, + "bounds": { + "minlat": 40.8266446, + "minlon": -74.0096617, + "maxlat": 40.8278179, + "maxlon": -74.0065826 + }, + "nodes": [ + 103133532, + 103133534, + 103133536, + 103133538, + 103133540, + 103133542, + 103133543 + ], + "geometry": [ + { "lat": 40.8266446, "lon": -74.0065826 }, + { "lat": 40.8272750, "lon": -74.0081900 }, + { "lat": 40.8273650, "lon": -74.0084090 }, + { "lat": 40.8274250, "lon": -74.0085730 }, + { "lat": 40.8276320, "lon": -74.0091380 }, + { "lat": 40.8277860, "lon": -74.0095620 }, + { "lat": 40.8278179, "lon": -74.0096617 } + ], + "tags": { + "highway": "residential", + "name": "Elizabeth Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elizabeth", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11566600, + "bounds": { + "minlat": 40.8083080, + "minlon": -73.9975789, + "maxlat": 40.8093004, + "maxlon": -73.9949530 + }, + "nodes": [ + 103112577, + 4048716604, + 7622328772, + 103133727, + 103124455, + 7622328776 + ], + "geometry": [ + { "lat": 40.8083080, "lon": -73.9949530 }, + { "lat": 40.8083430, "lon": -73.9950454 }, + { "lat": 40.8084305, "lon": -73.9952765 }, + { "lat": 40.8091350, "lon": -73.9971370 }, + { "lat": 40.8092470, "lon": -73.9974320 }, + { "lat": 40.8093004, "lon": -73.9975789 } + ], + "tags": { + "highway": "residential", + "name": "Columbus Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbus", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11566601, + "bounds": { + "minlat": 40.8079050, + "minlon": -73.9949940, + "maxlat": 40.8082450, + "maxlon": -73.9943730 + }, + "nodes": [ + 103133733, + 7627418209, + 7627519051, + 4048716605, + 103112575 + ], + "geometry": [ + { "lat": 40.8079050, "lon": -73.9943730 }, + { "lat": 40.8080294, "lon": -73.9946003 }, + { "lat": 40.8080535, "lon": -73.9946442 }, + { "lat": 40.8081750, "lon": -73.9948661 }, + { "lat": 40.8082450, "lon": -73.9949940 } + ], + "tags": { + "highway": "residential", + "name": "Columbus Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbus", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11566622, + "bounds": { + "minlat": 40.8169491, + "minlon": -74.0033440, + "maxlat": 40.8176210, + "maxlon": -74.0019772 + }, + "nodes": [ + 103133837, + 10026792559, + 103133838, + 103133840 + ], + "geometry": [ + { "lat": 40.8169491, "lon": -74.0019772 }, + { "lat": 40.8169917, "lon": -74.0020694 }, + { "lat": 40.8175620, "lon": -74.0032330 }, + { "lat": 40.8176210, "lon": -74.0033440 } + ], + "tags": { + "highway": "residential", + "name": "Commercial Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Commercial", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11566631, + "bounds": { + "minlat": 40.8481620, + "minlon": -74.0048504, + "maxlat": 40.8551316, + "maxlon": -73.9993834 + }, + "nodes": [ + 103133867, + 9913452954, + 9913452952, + 7940813656, + 103133869, + 7940813661, + 103133871, + 477628358, + 103133873, + 103133875, + 103133877, + 103119437, + 103133880, + 8156706011, + 5969495180, + 103133882, + 8156706006, + 103133885, + 103133886, + 103133887, + 103133888, + 103133890, + 103133892, + 8219269093, + 103133893 + ], + "geometry": [ + { "lat": 40.8481620, "lon": -74.0048504 }, + { "lat": 40.8483696, "lon": -74.0047381 }, + { "lat": 40.8484929, "lon": -74.0046713 }, + { "lat": 40.8485701, "lon": -74.0046254 }, + { "lat": 40.8486495, "lon": -74.0045821 }, + { "lat": 40.8491604, "lon": -74.0043012 }, + { "lat": 40.8494840, "lon": -74.0041091 }, + { "lat": 40.8495148, "lon": -74.0040905 }, + { "lat": 40.8502282, "lon": -74.0036926 }, + { "lat": 40.8504113, "lon": -74.0035904 }, + { "lat": 40.8505532, "lon": -74.0034543 }, + { "lat": 40.8512440, "lon": -74.0027160 }, + { "lat": 40.8517754, "lon": -74.0021661 }, + { "lat": 40.8520917, "lon": -74.0018683 }, + { "lat": 40.8522436, "lon": -74.0017254 }, + { "lat": 40.8522570, "lon": -74.0017120 }, + { "lat": 40.8523121, "lon": -74.0016587 }, + { "lat": 40.8526590, "lon": -74.0013230 }, + { "lat": 40.8530580, "lon": -74.0009290 }, + { "lat": 40.8532980, "lon": -74.0006820 }, + { "lat": 40.8534180, "lon": -74.0005590 }, + { "lat": 40.8537380, "lon": -74.0003250 }, + { "lat": 40.8540270, "lon": -74.0001130 }, + { "lat": 40.8544479, "lon": -73.9998219 }, + { "lat": 40.8551316, "lon": -73.9993834 } + ], + "tags": { + "highway": "residential", + "name": "Commercial Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Commercial", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11566635, + "bounds": { + "minlat": 40.8170409, + "minlon": -73.9913673, + "maxlat": 40.8205463, + "maxlon": -73.9890885 + }, + "nodes": [ + 103133912, + 103133910, + 103133908, + 103133906, + 103133904, + 103133902, + 103133900, + 103133899 + ], + "geometry": [ + { "lat": 40.8205463, "lon": -73.9890885 }, + { "lat": 40.8195687, "lon": -73.9898702 }, + { "lat": 40.8192974, "lon": -73.9900675 }, + { "lat": 40.8191518, "lon": -73.9901688 }, + { "lat": 40.8189653, "lon": -73.9902986 }, + { "lat": 40.8183184, "lon": -73.9906577 }, + { "lat": 40.8176741, "lon": -73.9910202 }, + { "lat": 40.8170409, "lon": -73.9913673 } + ], + "tags": { + "highway": "residential", + "name": "Commercial Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Commercial", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11566639, + "bounds": { + "minlat": 40.8174270, + "minlon": -74.0033570, + "maxlat": 40.8175620, + "maxlon": -74.0032330 + }, + "nodes": [ + 103133943, + 8531528450, + 103133838 + ], + "geometry": [ + { "lat": 40.8174270, "lon": -74.0033570 }, + { "lat": 40.8175376, "lon": -74.0032554 }, + { "lat": 40.8175620, "lon": -74.0032330 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Commercial Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Commercial", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11566676, + "bounds": { + "minlat": 40.8470824, + "minlon": -73.9691703, + "maxlat": 40.8501898, + "maxlon": -73.9677770 + }, + "nodes": [ + 5449302910, + 6366502946, + 5106277784, + 8417378290, + 5106277779, + 5750610019, + 5106276552, + 2269661146, + 5362414823, + 7930639648, + 103134224, + 7930644518, + 103134225, + 103134227, + 7732875872, + 5330468353, + 13001542892, + 5330468363, + 103134229 + ], + "geometry": [ + { "lat": 40.8470824, "lon": -73.9691703 }, + { "lat": 40.8471469, "lon": -73.9691408 }, + { "lat": 40.8475742, "lon": -73.9689449 }, + { "lat": 40.8475948, "lon": -73.9689355 }, + { "lat": 40.8476506, "lon": -73.9689099 }, + { "lat": 40.8477282, "lon": -73.9688744 }, + { "lat": 40.8483514, "lon": -73.9685888 }, + { "lat": 40.8484321, "lon": -73.9685519 }, + { "lat": 40.8484397, "lon": -73.9685484 }, + { "lat": 40.8486824, "lon": -73.9684372 }, + { "lat": 40.8487559, "lon": -73.9684118 }, + { "lat": 40.8488402, "lon": -73.9683882 }, + { "lat": 40.8489217, "lon": -73.9683585 }, + { "lat": 40.8495682, "lon": -73.9680621 }, + { "lat": 40.8498691, "lon": -73.9679241 }, + { "lat": 40.8499407, "lon": -73.9678912 }, + { "lat": 40.8499983, "lon": -73.9678589 }, + { "lat": 40.8501126, "lon": -73.9678124 }, + { "lat": 40.8501898, "lon": -73.9677770 } + ], + "tags": { + "highway": "residential", + "name": "Parker Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Parker", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11566678, + "bounds": { + "minlat": 40.8735061, + "minlon": -73.9792150, + "maxlat": 40.8738470, + "maxlon": -73.9788054 + }, + "nodes": [ + 103134251, + 103134253, + 530806015, + 530806014 + ], + "geometry": [ + { "lat": 40.8738470, "lon": -73.9792150 }, + { "lat": 40.8737690, "lon": -73.9790838 }, + { "lat": 40.8736819, "lon": -73.9789533 }, + { "lat": 40.8735061, "lon": -73.9788054 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Cross Creek Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cross Creek", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11566679, + "bounds": { + "minlat": 40.8722788, + "minlon": -73.9743785, + "maxlat": 40.8725479, + "maxlon": -73.9733394 + }, + "nodes": [ + 103134287, + 103134300, + 12021450568, + 12021450567, + 12021450566, + 103134302, + 12021450565, + 12021450564, + 103134304, + 103134308, + 103134310 + ], + "geometry": [ + { "lat": 40.8722788, "lon": -73.9743785 }, + { "lat": 40.8724659, "lon": -73.9739434 }, + { "lat": 40.8724831, "lon": -73.9739024 }, + { "lat": 40.8724996, "lon": -73.9738589 }, + { "lat": 40.8725104, "lon": -73.9738261 }, + { "lat": 40.8725209, "lon": -73.9737797 }, + { "lat": 40.8725286, "lon": -73.9737313 }, + { "lat": 40.8725330, "lon": -73.9736841 }, + { "lat": 40.8725353, "lon": -73.9736405 }, + { "lat": 40.8725352, "lon": -73.9735629 }, + { "lat": 40.8725479, "lon": -73.9733394 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Cross Creek Drive", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cross Creek", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11566712, + "bounds": { + "minlat": 40.8555007, + "minlon": -73.9851254, + "maxlat": 40.8564294, + "maxlon": -73.9835651 + }, + "nodes": [ + 103134531, + 10236688101, + 5362397421, + 299171743, + 299171744 + ], + "geometry": [ + { "lat": 40.8564294, "lon": -73.9851254 }, + { "lat": 40.8563991, "lon": -73.9850771 }, + { "lat": 40.8555903, "lon": -73.9837242 }, + { "lat": 40.8555735, "lon": -73.9836940 }, + { "lat": 40.8555007, "lon": -73.9835651 } + ], + "tags": { + "highway": "residential", + "name": "Washington Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_base_1": "Washington", + "tiger:name_type": "Ter", + "tiger:name_type_1": "Ter", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11566721, + "bounds": { + "minlat": 40.8408367, + "minlon": -73.9958766, + "maxlat": 40.8410767, + "maxlon": -73.9941981 + }, + "nodes": [ + 103190909, + 766720052, + 766720053, + 12692393434, + 103134573, + 12692393433, + 103134574, + 103134575, + 103134577, + 103134579, + 103134583 + ], + "geometry": [ + { "lat": 40.8408367, "lon": -73.9958766 }, + { "lat": 40.8408996, "lon": -73.9958665 }, + { "lat": 40.8409751, "lon": -73.9958345 }, + { "lat": 40.8410148, "lon": -73.9957940 }, + { "lat": 40.8410456, "lon": -73.9957457 }, + { "lat": 40.8410678, "lon": -73.9956813 }, + { "lat": 40.8410767, "lon": -73.9955914 }, + { "lat": 40.8410553, "lon": -73.9949443 }, + { "lat": 40.8410251, "lon": -73.9947265 }, + { "lat": 40.8409989, "lon": -73.9945515 }, + { "lat": 40.8409559, "lon": -73.9941981 } + ], + "tags": { + "highway": "tertiary", + "name": "Grantwood Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grantwood", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11566805, + "bounds": { + "minlat": 40.8270878, + "minlon": -73.9968532, + "maxlat": 40.8282434, + "maxlon": -73.9946615 + }, + "nodes": [ + 103135097, + 103135098, + 103135101 + ], + "geometry": [ + { "lat": 40.8270878, "lon": -73.9946615 }, + { "lat": 40.8274256, "lon": -73.9953865 }, + { "lat": 40.8282434, "lon": -73.9968532 } + ], + "tags": { + "highway": "residential", + "name": "Art Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Art", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11566809, + "bounds": { + "minlat": 40.8366261, + "minlon": -74.0098191, + "maxlat": 40.8374043, + "maxlon": -74.0079774 + }, + "nodes": [ + 103135123, + 12016147248, + 12016147245, + 8218997748, + 103135125 + ], + "geometry": [ + { "lat": 40.8366261, "lon": -74.0079774 }, + { "lat": 40.8366588, "lon": -74.0080553 }, + { "lat": 40.8366736, "lon": -74.0080907 }, + { "lat": 40.8371428, "lon": -74.0092081 }, + { "lat": 40.8374043, "lon": -74.0098191 } + ], + "tags": { + "highway": "residential", + "name": "Wilt Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wilt", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11566859, + "bounds": { + "minlat": 40.8460671, + "minlon": -73.9679073, + "maxlat": 40.8465222, + "maxlon": -73.9665802 + }, + "nodes": [ + 103135400, + 7292367283, + 103135402, + 752618018 + ], + "geometry": [ + { "lat": 40.8460671, "lon": -73.9665802 }, + { "lat": 40.8460880, "lon": -73.9666400 }, + { "lat": 40.8462720, "lon": -73.9671660 }, + { "lat": 40.8465222, "lon": -73.9679073 } + ], + "tags": { + "highway": "residential", + "name": "Leary Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Leary", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11566876, + "bounds": { + "minlat": 40.8344757, + "minlon": -74.0152526, + "maxlat": 40.8354008, + "maxlon": -74.0144501 + }, + "nodes": [ + 103135528, + 103135525 + ], + "geometry": [ + { "lat": 40.8354008, "lon": -74.0144501 }, + { "lat": 40.8344757, "lon": -74.0152526 } + ], + "tags": { + "highway": "residential", + "name": "Fulton Place", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fulton", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11566932, + "bounds": { + "minlat": 40.8557192, + "minlon": -73.9866831, + "maxlat": 40.8562373, + "maxlon": -73.9857534 + }, + "nodes": [ + 103135867, + 10117799061, + 10122889682, + 103135869 + ], + "geometry": [ + { "lat": 40.8562373, "lon": -73.9866831 }, + { "lat": 40.8561780, "lon": -73.9865027 }, + { "lat": 40.8557550, "lon": -73.9858208 }, + { "lat": 40.8557192, "lon": -73.9857534 } + ], + "tags": { + "highway": "residential", + "name": "Winthrop Place", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Winthrop", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11566933, + "bounds": { + "minlat": 40.8541575, + "minlon": -73.9812203, + "maxlat": 40.8549741, + "maxlon": -73.9803958 + }, + "nodes": [ + 7434430735, + 5362344693, + 103135877, + 103135879 + ], + "geometry": [ + { "lat": 40.8541575, "lon": -73.9812203 }, + { "lat": 40.8546308, "lon": -73.9807319 }, + { "lat": 40.8546710, "lon": -73.9806910 }, + { "lat": 40.8549741, "lon": -73.9803958 } + ], + "tags": { + "highway": "residential", + "name": "Valley Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Valley", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11566941, + "bounds": { + "minlat": 40.8673120, + "minlon": -73.9849493, + "maxlat": 40.8698270, + "maxlon": -73.9795260 + }, + "nodes": [ + 103135898, + 10177504768, + 8073299992, + 103135900, + 8073299993, + 103135901, + 103135902, + 103135903, + 103135904, + 5577167075, + 103135906, + 103110710, + 103135908, + 103135910, + 103135914, + 103135916, + 103135918, + 103135919, + 10177504759, + 103135921 + ], + "geometry": [ + { "lat": 40.8698270, "lon": -73.9849493 }, + { "lat": 40.8697800, "lon": -73.9848666 }, + { "lat": 40.8687382, "lon": -73.9830575 }, + { "lat": 40.8686655, "lon": -73.9829418 }, + { "lat": 40.8685916, "lon": -73.9828228 }, + { "lat": 40.8683490, "lon": -73.9824270 }, + { "lat": 40.8682780, "lon": -73.9822780 }, + { "lat": 40.8682200, "lon": -73.9821200 }, + { "lat": 40.8681800, "lon": -73.9819830 }, + { "lat": 40.8681534, "lon": -73.9818499 }, + { "lat": 40.8681390, "lon": -73.9817780 }, + { "lat": 40.8681190, "lon": -73.9816390 }, + { "lat": 40.8680790, "lon": -73.9811930 }, + { "lat": 40.8680550, "lon": -73.9810480 }, + { "lat": 40.8680110, "lon": -73.9808830 }, + { "lat": 40.8679530, "lon": -73.9807270 }, + { "lat": 40.8679260, "lon": -73.9806680 }, + { "lat": 40.8677660, "lon": -73.9803700 }, + { "lat": 40.8673582, "lon": -73.9796121 }, + { "lat": 40.8673120, "lon": -73.9795260 } + ], + "tags": { + "highway": "residential", + "name": "Vreeland Avenue", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Vreeland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11566946, + "bounds": { + "minlat": 40.8698270, + "minlon": -73.9871237, + "maxlat": 40.8708400, + "maxlon": -73.9849493 + }, + "nodes": [ + 103135952, + 10174860032, + 8076425401, + 103135954, + 103135956, + 10177504769, + 103135898 + ], + "geometry": [ + { "lat": 40.8708400, "lon": -73.9871237 }, + { "lat": 40.8708086, "lon": -73.9870435 }, + { "lat": 40.8707926, "lon": -73.9870062 }, + { "lat": 40.8702978, "lon": -73.9857694 }, + { "lat": 40.8701304, "lon": -73.9854830 }, + { "lat": 40.8698835, "lon": -73.9850476 }, + { "lat": 40.8698270, "lon": -73.9849493 } + ], + "tags": { + "highway": "residential", + "name": "Vreeland Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Vreeland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11567090, + "bounds": { + "minlat": 40.8280605, + "minlon": -73.9728115, + "maxlat": 40.8280732, + "maxlon": -73.9728028 + }, + "nodes": [ + 103108089, + 7069550952 + ], + "geometry": [ + { "lat": 40.8280605, "lon": -73.9728115 }, + { "lat": 40.8280732, "lon": -73.9728028 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11567128, + "bounds": { + "minlat": 40.8344722, + "minlon": -73.9723971, + "maxlat": 40.8349699, + "maxlon": -73.9719472 + }, + "nodes": [ + 103093403, + 3637749845, + 103137458 + ], + "geometry": [ + { "lat": 40.8349699, "lon": -73.9719472 }, + { "lat": 40.8346460, "lon": -73.9722762 }, + { "lat": 40.8344722, "lon": -73.9723971 } + ], + "tags": { + "highway": "residential", + "name": "South Glen Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glen", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11567141, + "bounds": { + "minlat": 40.8535570, + "minlon": -74.0001720, + "maxlat": 40.8555880, + "maxlon": -73.9966350 + }, + "nodes": [ + 103137594, + 103137595, + 8105675484, + 103137596, + 8435496919, + 477628570, + 103133893, + 477628565, + 103137597 + ], + "geometry": [ + { "lat": 40.8535570, "lon": -73.9966350 }, + { "lat": 40.8541500, "lon": -73.9976670 }, + { "lat": 40.8544686, "lon": -73.9982217 }, + { "lat": 40.8546950, "lon": -73.9986160 }, + { "lat": 40.8548983, "lon": -73.9989827 }, + { "lat": 40.8549304, "lon": -73.9990406 }, + { "lat": 40.8551316, "lon": -73.9993834 }, + { "lat": 40.8551601, "lon": -73.9994350 }, + { "lat": 40.8555880, "lon": -74.0001720 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "West Edsall Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edsall", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11567235, + "bounds": { + "minlat": 40.8775540, + "minlon": -73.9757626, + "maxlat": 40.8786400, + "maxlon": -73.9737967 + }, + "nodes": [ + 103138154, + 12021734814, + 12021734813, + 12021734812, + 6441558359, + 6441558361, + 6441558360, + 6441558378, + 6441558375, + 6441558374, + 6441558373, + 6441558372, + 6441558371, + 6441558370, + 6441558369, + 6441558377, + 6441558368, + 6441558367, + 6441558366, + 6441558365, + 6441558364, + 6441558376, + 6441558363, + 6441558362, + 6441558359 + ], + "geometry": [ + { "lat": 40.8786400, "lon": -73.9757626 }, + { "lat": 40.8786186, "lon": -73.9757080 }, + { "lat": 40.8785988, "lon": -73.9756579 }, + { "lat": 40.8785813, "lon": -73.9756215 }, + { "lat": 40.8777198, "lon": -73.9740975 }, + { "lat": 40.8776758, "lon": -73.9740598 }, + { "lat": 40.8776297, "lon": -73.9740398 }, + { "lat": 40.8776011, "lon": -73.9740264 }, + { "lat": 40.8775786, "lon": -73.9740035 }, + { "lat": 40.8775624, "lon": -73.9739726 }, + { "lat": 40.8775540, "lon": -73.9739367 }, + { "lat": 40.8775542, "lon": -73.9738991 }, + { "lat": 40.8775630, "lon": -73.9738634 }, + { "lat": 40.8775795, "lon": -73.9738328 }, + { "lat": 40.8776022, "lon": -73.9738102 }, + { "lat": 40.8776290, "lon": -73.9737978 }, + { "lat": 40.8776577, "lon": -73.9737967 }, + { "lat": 40.8776854, "lon": -73.9738072 }, + { "lat": 40.8777092, "lon": -73.9738285 }, + { "lat": 40.8777271, "lon": -73.9738583 }, + { "lat": 40.8777371, "lon": -73.9738939 }, + { "lat": 40.8777385, "lon": -73.9739319 }, + { "lat": 40.8777304, "lon": -73.9739706 }, + { "lat": 40.8777193, "lon": -73.9740225 }, + { "lat": 40.8777198, "lon": -73.9740975 } + ], + "tags": { + "highway": "residential", + "name": "Allison Court", + "source:geometry": "Bing aerial imagery", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Allison", + "tiger:name_type": "Ct", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11567268, + "bounds": { + "minlat": 40.8800936, + "minlon": -73.9730422, + "maxlat": 40.8823939, + "maxlon": -73.9688178 + }, + "nodes": [ + 103138368, + 12021734848, + 12021734846, + 5766854927, + 103138369, + 103138370, + 8101555761, + 103138371, + 103138372, + 103138374, + 103138375, + 7271130676, + 103138377, + 7095129682, + 103138379, + 103138380, + 103138381, + 103138382, + 103138383, + 103138384, + 7095141488, + 103138385, + 103138387, + 103138389, + 103138391, + 103138393, + 103138396, + 103138398, + 103138400, + 103138402, + 103138404 + ], + "geometry": [ + { "lat": 40.8823939, "lon": -73.9730422 }, + { "lat": 40.8823612, "lon": -73.9729550 }, + { "lat": 40.8823480, "lon": -73.9729202 }, + { "lat": 40.8821736, "lon": -73.9724357 }, + { "lat": 40.8820996, "lon": -73.9722007 }, + { "lat": 40.8820461, "lon": -73.9720875 }, + { "lat": 40.8820354, "lon": -73.9720699 }, + { "lat": 40.8819747, "lon": -73.9719694 }, + { "lat": 40.8818854, "lon": -73.9718616 }, + { "lat": 40.8817201, "lon": -73.9716949 }, + { "lat": 40.8816100, "lon": -73.9715969 }, + { "lat": 40.8815519, "lon": -73.9715610 }, + { "lat": 40.8813181, "lon": -73.9714166 }, + { "lat": 40.8812466, "lon": -73.9713732 }, + { "lat": 40.8810775, "lon": -73.9712706 }, + { "lat": 40.8809538, "lon": -73.9711383 }, + { "lat": 40.8808676, "lon": -73.9710218 }, + { "lat": 40.8807895, "lon": -73.9708918 }, + { "lat": 40.8807201, "lon": -73.9707214 }, + { "lat": 40.8806674, "lon": -73.9705714 }, + { "lat": 40.8806425, "lon": -73.9704450 }, + { "lat": 40.8806382, "lon": -73.9704233 }, + { "lat": 40.8806115, "lon": -73.9702544 }, + { "lat": 40.8805740, "lon": -73.9700811 }, + { "lat": 40.8805344, "lon": -73.9699680 }, + { "lat": 40.8804777, "lon": -73.9698666 }, + { "lat": 40.8803125, "lon": -73.9695990 }, + { "lat": 40.8802461, "lon": -73.9694441 }, + { "lat": 40.8802050, "lon": -73.9693120 }, + { "lat": 40.8801124, "lon": -73.9688680 }, + { "lat": 40.8800936, "lon": -73.9688178 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Hutchinson Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hutchinson", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11567291, + "bounds": { + "minlat": 40.8234183, + "minlon": -74.0059926, + "maxlat": 40.8239268, + "maxlon": -74.0058848 + }, + "nodes": [ + 103138630, + 103138633 + ], + "geometry": [ + { "lat": 40.8234183, "lon": -74.0059926 }, + { "lat": 40.8239268, "lon": -74.0058848 } + ], + "tags": { + "highway": "residential", + "name": "Washington Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "Street", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "64398758", + "tiger:upload_uuid": "bulk_upload.pl-5b68207f-8509-44f2-bf52-94cbb5c7f59c", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11567301, + "bounds": { + "minlat": 40.8461860, + "minlon": -74.0026524, + "maxlat": 40.8482442, + "maxlon": -73.9991080 + }, + "nodes": [ + 103138711, + 5976782422, + 5976782421, + 103138712, + 103138713 + ], + "geometry": [ + { "lat": 40.8461860, "lon": -73.9991080 }, + { "lat": 40.8464890, "lon": -73.9996326 }, + { "lat": 40.8465857, "lon": -73.9998001 }, + { "lat": 40.8472740, "lon": -74.0009920 }, + { "lat": 40.8482442, "lon": -74.0026524 } + ], + "tags": { + "highway": "residential", + "name": "Henry Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11567400, + "bounds": { + "minlat": 40.8248522, + "minlon": -74.0090818, + "maxlat": 40.8362390, + "maxlon": -73.9992270 + }, + "nodes": [ + 103139525, + 103139527, + 103139529, + 103139532, + 103139533, + 103139534, + 103133532, + 7927830057, + 103139536, + 7594276840, + 103139539, + 7927830060, + 103139541, + 103139544, + 103139545, + 103139547, + 103139550, + 103139552, + 103139554, + 103139559, + 103139561, + 103139562, + 103139563, + 7709351052, + 103139565, + 7709351046, + 5716409666, + 103139566, + 103139567, + 103139570, + 8153529852, + 103273269, + 103139577, + 6878613211, + 103139580, + 7482028602, + 103139581, + 103139583, + 5740382211, + 103139584, + 5740382213, + 103139585, + 5740382209, + 6605438226, + 6605438237, + 5750735820, + 103139586, + 103139588, + 103139589 + ], + "geometry": [ + { "lat": 40.8248522, "lon": -74.0090818 }, + { "lat": 40.8253386, "lon": -74.0083788 }, + { "lat": 40.8258663, "lon": -74.0075611 }, + { "lat": 40.8261224, "lon": -74.0071898 }, + { "lat": 40.8263313, "lon": -74.0069192 }, + { "lat": 40.8265044, "lon": -74.0067238 }, + { "lat": 40.8266446, "lon": -74.0065826 }, + { "lat": 40.8267277, "lon": -74.0064987 }, + { "lat": 40.8267989, "lon": -74.0064331 }, + { "lat": 40.8268836, "lon": -74.0063755 }, + { "lat": 40.8269880, "lon": -74.0062826 }, + { "lat": 40.8271895, "lon": -74.0061290 }, + { "lat": 40.8272409, "lon": -74.0060997 }, + { "lat": 40.8274750, "lon": -74.0059180 }, + { "lat": 40.8276630, "lon": -74.0058130 }, + { "lat": 40.8280430, "lon": -74.0056508 }, + { "lat": 40.8283655, "lon": -74.0055060 }, + { "lat": 40.8285629, "lon": -74.0054469 }, + { "lat": 40.8287750, "lon": -74.0053724 }, + { "lat": 40.8291554, "lon": -74.0052394 }, + { "lat": 40.8294177, "lon": -74.0051857 }, + { "lat": 40.8296215, "lon": -74.0050684 }, + { "lat": 40.8297349, "lon": -74.0049713 }, + { "lat": 40.8297847, "lon": -74.0049320 }, + { "lat": 40.8298797, "lon": -74.0048349 }, + { "lat": 40.8299361, "lon": -74.0047895 }, + { "lat": 40.8306109, "lon": -74.0041263 }, + { "lat": 40.8306999, "lon": -74.0040488 }, + { "lat": 40.8308690, "lon": -74.0038805 }, + { "lat": 40.8317210, "lon": -74.0030553 }, + { "lat": 40.8319215, "lon": -74.0028833 }, + { "lat": 40.8323210, "lon": -74.0025110 }, + { "lat": 40.8324314, "lon": -74.0024170 }, + { "lat": 40.8325140, "lon": -74.0023421 }, + { "lat": 40.8329224, "lon": -74.0020409 }, + { "lat": 40.8333501, "lon": -74.0017150 }, + { "lat": 40.8336220, "lon": -74.0014760 }, + { "lat": 40.8339730, "lon": -74.0012220 }, + { "lat": 40.8340403, "lon": -74.0011698 }, + { "lat": 40.8342580, "lon": -74.0010010 }, + { "lat": 40.8343430, "lon": -74.0009300 }, + { "lat": 40.8345380, "lon": -74.0007670 }, + { "lat": 40.8347310, "lon": -74.0005963 }, + { "lat": 40.8347653, "lon": -74.0005660 }, + { "lat": 40.8349667, "lon": -74.0003879 }, + { "lat": 40.8353747, "lon": -74.0000270 }, + { "lat": 40.8356720, "lon": -73.9997640 }, + { "lat": 40.8359370, "lon": -73.9995290 }, + { "lat": 40.8362390, "lon": -73.9992270 } + ], + "tags": { + "Bergen_County_database_ref": "31", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000031", + "highway": "tertiary", + "name": "Shaler Boulevard", + "ref": "CR 31", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Shaler", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11567419, + "bounds": { + "minlat": 40.8810961, + "minlon": -73.9979091, + "maxlat": 40.8812891, + "maxlon": -73.9978087 + }, + "nodes": [ + 103139830, + 6786804337, + 103139831 + ], + "geometry": [ + { "lat": 40.8810961, "lon": -73.9979091 }, + { "lat": 40.8812238, "lon": -73.9978428 }, + { "lat": 40.8812891, "lon": -73.9978087 } + ], + "tags": { + "highway": "residential", + "name": "Dogwood Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dogwood", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11567459, + "bounds": { + "minlat": 40.8195670, + "minlon": -74.0068430, + "maxlat": 40.8205940, + "maxlon": -74.0066486 + }, + "nodes": [ + 103140209, + 13525551094, + 103140210 + ], + "geometry": [ + { "lat": 40.8205940, "lon": -74.0066486 }, + { "lat": 40.8205387, "lon": -74.0066591 }, + { "lat": 40.8195670, "lon": -74.0068430 } + ], + "tags": { + "highway": "residential", + "name": "Battaglia Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Battaglia", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11567472, + "bounds": { + "minlat": 40.8821120, + "minlon": -73.9540351, + "maxlat": 40.8853167, + "maxlon": -73.9516369 + }, + "nodes": [ + 103140289, + 9239519768, + 9239519769, + 9239519766, + 9239519767, + 103140299, + 103140301, + 103121079 + ], + "geometry": [ + { "lat": 40.8821120, "lon": -73.9540351 }, + { "lat": 40.8821741, "lon": -73.9539730 }, + { "lat": 40.8822023, "lon": -73.9539466 }, + { "lat": 40.8825745, "lon": -73.9535951 }, + { "lat": 40.8827137, "lon": -73.9534956 }, + { "lat": 40.8837449, "lon": -73.9528821 }, + { "lat": 40.8843775, "lon": -73.9524803 }, + { "lat": 40.8853167, "lon": -73.9516369 } + ], + "tags": { + "highway": "residential", + "name": "Marjorie Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Marjorie", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11567493, + "bounds": { + "minlat": 40.8067852, + "minlon": -73.9948726, + "maxlat": 40.8079050, + "maxlon": -73.9942960 + }, + "nodes": [ + 5481884042, + 7627332524, + 103140535, + 103140537, + 103140539, + 103140541, + 103133733 + ], + "geometry": [ + { "lat": 40.8067852, "lon": -73.9948726 }, + { "lat": 40.8077173, "lon": -73.9943359 }, + { "lat": 40.8077710, "lon": -73.9943050 }, + { "lat": 40.8078100, "lon": -73.9942960 }, + { "lat": 40.8078500, "lon": -73.9943060 }, + { "lat": 40.8078850, "lon": -73.9943360 }, + { "lat": 40.8079050, "lon": -73.9943730 } + ], + "tags": { + "highway": "residential", + "name": "Manhattan Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Manhattan", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11567507, + "bounds": { + "minlat": 40.8685670, + "minlon": -73.9711076, + "maxlat": 40.8701792, + "maxlon": -73.9705569 + }, + "nodes": [ + 103140719, + 103140720, + 5721591101, + 103140722, + 8219555663, + 103140725, + 4587894657, + 8219555657, + 4587894656, + 4587894655, + 103140727 + ], + "geometry": [ + { "lat": 40.8685670, "lon": -73.9705650 }, + { "lat": 40.8686806, "lon": -73.9707071 }, + { "lat": 40.8689175, "lon": -73.9707506 }, + { "lat": 40.8691775, "lon": -73.9707983 }, + { "lat": 40.8693978, "lon": -73.9707151 }, + { "lat": 40.8694473, "lon": -73.9706964 }, + { "lat": 40.8697231, "lon": -73.9705569 }, + { "lat": 40.8697903, "lon": -73.9705712 }, + { "lat": 40.8698874, "lon": -73.9705918 }, + { "lat": 40.8701792, "lon": -73.9710112 }, + { "lat": 40.8701679, "lon": -73.9711076 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Old Quarry Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old Quarry", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11567526, + "bounds": { + "minlat": 40.8556371, + "minlon": -73.9759329, + "maxlat": 40.8566089, + "maxlon": -73.9748810 + }, + "nodes": [ + 7419012844, + 7419012836, + 7407574852, + 5290951504 + ], + "geometry": [ + { "lat": 40.8556371, "lon": -73.9759329 }, + { "lat": 40.8564456, "lon": -73.9750577 }, + { "lat": 40.8564850, "lon": -73.9750151 }, + { "lat": 40.8566089, "lon": -73.9748810 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Fletcher Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fletcher", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11567539, + "bounds": { + "minlat": 40.8569134, + "minlon": -73.9744460, + "maxlat": 40.8569808, + "maxlon": -73.9742222 + }, + "nodes": [ + 299178371, + 103141031 + ], + "geometry": [ + { "lat": 40.8569808, "lon": -73.9744460 }, + { "lat": 40.8569134, "lon": -73.9742222 } + ], + "tags": { + "highway": "trunk", + "name": "Kelby Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kelby", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11567565, + "bounds": { + "minlat": 40.8632066, + "minlon": -73.9904175, + "maxlat": 40.8659670, + "maxlon": -73.9883870 + }, + "nodes": [ + 103141304, + 3001698953, + 6124217241, + 6124217236, + 8064284190, + 6124217234, + 6124217242, + 3001698955, + 5577170831, + 8064257370, + 8064257360, + 103141306, + 103141308 + ], + "geometry": [ + { "lat": 40.8632066, "lon": -73.9904175 }, + { "lat": 40.8632783, "lon": -73.9903851 }, + { "lat": 40.8633356, "lon": -73.9903419 }, + { "lat": 40.8635059, "lon": -73.9902054 }, + { "lat": 40.8636717, "lon": -73.9900594 }, + { "lat": 40.8637475, "lon": -73.9899993 }, + { "lat": 40.8638248, "lon": -73.9899418 }, + { "lat": 40.8639861, "lon": -73.9898156 }, + { "lat": 40.8641023, "lon": -73.9897259 }, + { "lat": 40.8642093, "lon": -73.9896485 }, + { "lat": 40.8643855, "lon": -73.9895211 }, + { "lat": 40.8649412, "lon": -73.9891296 }, + { "lat": 40.8659670, "lon": -73.9883870 } + ], + "tags": { + "highway": "residential", + "name": "Leonia Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Leonia", + "tiger:name_type": "Ave", + "tiger:reviewed": "yes", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11567567, + "bounds": { + "minlat": 40.8665015, + "minlon": -73.9879902, + "maxlat": 40.8677570, + "maxlon": -73.9869710 + }, + "nodes": [ + 103141315, + 10115605021, + 103141316, + 10115605022, + 103141318 + ], + "geometry": [ + { "lat": 40.8665015, "lon": -73.9879902 }, + { "lat": 40.8665793, "lon": -73.9879256 }, + { "lat": 40.8671491, "lon": -73.9874619 }, + { "lat": 40.8676949, "lon": -73.9870217 }, + { "lat": 40.8677570, "lon": -73.9869710 } + ], + "tags": { + "highway": "residential", + "name": "Leonia Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Leonia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11567569, + "bounds": { + "minlat": 40.8617589, + "minlon": -73.9918589, + "maxlat": 40.8632066, + "maxlon": -73.9904175 + }, + "nodes": [ + 103141333, + 103141336, + 3001698954, + 103141304 + ], + "geometry": [ + { "lat": 40.8617589, "lon": -73.9918589 }, + { "lat": 40.8631135, "lon": -73.9904509 }, + { "lat": 40.8631279, "lon": -73.9904458 }, + { "lat": 40.8632066, "lon": -73.9904175 } + ], + "tags": { + "highway": "residential", + "name": "Leonia Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Leonia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11567632, + "bounds": { + "minlat": 40.8769430, + "minlon": -73.9560006, + "maxlat": 40.8782230, + "maxlon": -73.9541524 + }, + "nodes": [ + 103142101, + 103142103, + 103142106, + 103142108, + 103142111, + 103142113, + 103142115, + 10059739084, + 103142117 + ], + "geometry": [ + { "lat": 40.8769430, "lon": -73.9541524 }, + { "lat": 40.8773999, "lon": -73.9549654 }, + { "lat": 40.8776004, "lon": -73.9552693 }, + { "lat": 40.8778734, "lon": -73.9557756 }, + { "lat": 40.8779331, "lon": -73.9558774 }, + { "lat": 40.8780028, "lon": -73.9559398 }, + { "lat": 40.8780672, "lon": -73.9559816 }, + { "lat": 40.8781451, "lon": -73.9559967 }, + { "lat": 40.8782230, "lon": -73.9560006 } + ], + "tags": { + "highway": "residential", + "name": "Toni Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Toni", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11567635, + "bounds": { + "minlat": 40.8130192, + "minlon": -74.0033087, + "maxlat": 40.8133316, + "maxlon": -74.0026614 + }, + "nodes": [ + 103142132, + 12456223760, + 12456262065, + 103142134, + 5342474565, + 771661252, + 12456262143, + 103142146 + ], + "geometry": [ + { "lat": 40.8130551, "lon": -74.0026614 }, + { "lat": 40.8130260, "lon": -74.0027676 }, + { "lat": 40.8130192, "lon": -74.0028595 }, + { "lat": 40.8130287, "lon": -74.0029385 }, + { "lat": 40.8130577, "lon": -74.0030059 }, + { "lat": 40.8131132, "lon": -74.0030768 }, + { "lat": 40.8132274, "lon": -74.0032213 }, + { "lat": 40.8133316, "lon": -74.0033087 } + ], + "tags": { + "highway": "secondary", + "name": "Harding Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harding", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11567638, + "bounds": { + "minlat": 40.8133316, + "minlon": -74.0035865, + "maxlat": 40.8143268, + "maxlon": -74.0033087 + }, + "nodes": [ + 103142148, + 6294991420, + 12456261950, + 12456223791, + 103142146 + ], + "geometry": [ + { "lat": 40.8143268, "lon": -74.0035865 }, + { "lat": 40.8136525, "lon": -74.0034660 }, + { "lat": 40.8135458, "lon": -74.0034318 }, + { "lat": 40.8134225, "lon": -74.0033589 }, + { "lat": 40.8133316, "lon": -74.0033087 } + ], + "tags": { + "hgv": "no", + "highway": "residential", + "name": "Harding Place", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harding", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11567643, + "bounds": { + "minlat": 40.8662100, + "minlon": -73.9681120, + "maxlat": 40.8688890, + "maxlon": -73.9654370 + }, + "nodes": [ + 103142182, + 103142185, + 103142187, + 440215040, + 103142192, + 103142194 + ], + "geometry": [ + { "lat": 40.8662100, "lon": -73.9681120 }, + { "lat": 40.8671939, "lon": -73.9671145 }, + { "lat": 40.8681380, "lon": -73.9661790 }, + { "lat": 40.8682120, "lon": -73.9661060 }, + { "lat": 40.8684170, "lon": -73.9659030 }, + { "lat": 40.8688890, "lon": -73.9654370 } + ], + "tags": { + "highway": "residential", + "name": "Leighton Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Leighton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11567657, + "bounds": { + "minlat": 40.8498300, + "minlon": -73.9977690, + "maxlat": 40.8505550, + "maxlon": -73.9965100 + }, + "nodes": [ + 103142411, + 5976782484, + 5976782506, + 5976782495, + 8230264279, + 103142413 + ], + "geometry": [ + { "lat": 40.8498300, "lon": -73.9965100 }, + { "lat": 40.8500816, "lon": -73.9969470 }, + { "lat": 40.8501308, "lon": -73.9970323 }, + { "lat": 40.8502414, "lon": -73.9972244 }, + { "lat": 40.8502563, "lon": -73.9972502 }, + { "lat": 40.8505550, "lon": -73.9977690 } + ], + "tags": { + "highway": "residential", + "name": "West Palisades Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisades", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11567688, + "bounds": { + "minlat": 40.8350724, + "minlon": -73.9881276, + "maxlat": 40.8380580, + "maxlon": -73.9867170 + }, + "nodes": [ + 103142887, + 13527755880, + 103142890, + 103142891, + 103142894, + 13527715996, + 103125449, + 13527715994, + 103142896, + 103142897, + 103142899, + 103142901, + 103142903 + ], + "geometry": [ + { "lat": 40.8350724, "lon": -73.9881276 }, + { "lat": 40.8351314, "lon": -73.9880984 }, + { "lat": 40.8351558, "lon": -73.9880863 }, + { "lat": 40.8358776, "lon": -73.9879393 }, + { "lat": 40.8360024, "lon": -73.9878979 }, + { "lat": 40.8363948, "lon": -73.9876583 }, + { "lat": 40.8364330, "lon": -73.9876350 }, + { "lat": 40.8364835, "lon": -73.9876033 }, + { "lat": 40.8369600, "lon": -73.9873040 }, + { "lat": 40.8370570, "lon": -73.9872590 }, + { "lat": 40.8377440, "lon": -73.9869720 }, + { "lat": 40.8378280, "lon": -73.9869160 }, + { "lat": 40.8380580, "lon": -73.9867170 } + ], + "tags": { + "highway": "residential", + "name": "Jassamine Way", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jassamine", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11567745, + "bounds": { + "minlat": 40.8587370, + "minlon": -74.0242338, + "maxlat": 40.8603930, + "maxlon": -74.0175690 + }, + "nodes": [ + 103143381, + 7772055959, + 103143379, + 103116877, + 103143376, + 10783732078, + 103143375, + 103143374, + 103143372, + 103143371 + ], + "geometry": [ + { "lat": 40.8587370, "lon": -74.0175690 }, + { "lat": 40.8588235, "lon": -74.0179251 }, + { "lat": 40.8589890, "lon": -74.0186060 }, + { "lat": 40.8591386, "lon": -74.0192285 }, + { "lat": 40.8592770, "lon": -74.0197900 }, + { "lat": 40.8595395, "lon": -74.0208562 }, + { "lat": 40.8595765, "lon": -74.0209799 }, + { "lat": 40.8595930, "lon": -74.0210670 }, + { "lat": 40.8599969, "lon": -74.0225896 }, + { "lat": 40.8603930, "lon": -74.0242338 } + ], + "tags": { + "highway": "residential", + "name": "Preston Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Preston", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11567746, + "bounds": { + "minlat": 40.8581329, + "minlon": -74.0176670, + "maxlat": 40.8584310, + "maxlon": -74.0165074 + }, + "nodes": [ + 103143391, + 103143389 + ], + "geometry": [ + { "lat": 40.8581329, "lon": -74.0165074 }, + { "lat": 40.8584310, "lon": -74.0176670 } + ], + "tags": { + "highway": "residential", + "name": "Preston Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Preston", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11567751, + "bounds": { + "minlat": 40.8275590, + "minlon": -74.0069320, + "maxlat": 40.8289220, + "maxlon": -74.0062110 + }, + "nodes": [ + 103143494, + 103143497 + ], + "geometry": [ + { "lat": 40.8275590, "lon": -74.0069320 }, + { "lat": 40.8289220, "lon": -74.0062110 } + ], + "tags": { + "highway": "residential", + "name": "Edwards Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edwards", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11567815, + "bounds": { + "minlat": 40.8723585, + "minlon": -74.0034248, + "maxlat": 40.8731874, + "maxlon": -74.0007497 + }, + "nodes": [ + 4469448619, + 4469448624, + 103144206, + 9871150068, + 103093318, + 9871150045, + 9871154456, + 9871154453, + 6635162023, + 103144209 + ], + "geometry": [ + { "lat": 40.8731874, "lon": -74.0034248 }, + { "lat": 40.8731148, "lon": -74.0032111 }, + { "lat": 40.8730794, "lon": -74.0030612 }, + { "lat": 40.8729998, "lon": -74.0028115 }, + { "lat": 40.8729797, "lon": -74.0027484 }, + { "lat": 40.8729508, "lon": -74.0026565 }, + { "lat": 40.8725524, "lon": -74.0013899 }, + { "lat": 40.8724965, "lon": -74.0012123 }, + { "lat": 40.8724427, "lon": -74.0010412 }, + { "lat": 40.8723585, "lon": -74.0007497 } + ], + "tags": { + "highway": "residential", + "name": "Harding Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harding", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11567854, + "bounds": { + "minlat": 40.8118000, + "minlon": -74.0005200, + "maxlat": 40.8121050, + "maxlon": -73.9997350 + }, + "nodes": [ + 103144640, + 13523912759, + 12535377656, + 103144642 + ], + "geometry": [ + { "lat": 40.8118000, "lon": -73.9997350 }, + { "lat": 40.8118312, "lon": -73.9998151 }, + { "lat": 40.8118812, "lon": -73.9999439 }, + { "lat": 40.8121050, "lon": -74.0005200 } + ], + "tags": { + "highway": "residential", + "name": "Garfield Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Garfield", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11567956, + "bounds": { + "minlat": 40.8708537, + "minlon": -73.9774831, + "maxlat": 40.8716232, + "maxlon": -73.9765329 + }, + "nodes": [ + 103145562, + 8668274263, + 8668274266, + 8668274267, + 8668274268, + 8668274269, + 8668274270, + 8668274271, + 8668274272, + 8668274273, + 8668274264, + 8668274265, + 8668274274, + 8668274275, + 8668274276, + 8668274277, + 8668274278, + 8668274279, + 8668274280, + 103145562, + 103134275 + ], + "geometry": [ + { "lat": 40.8709971, "lon": -73.9772833 }, + { "lat": 40.8710153, "lon": -73.9773129 }, + { "lat": 40.8710251, "lon": -73.9773487 }, + { "lat": 40.8710255, "lon": -73.9773868 }, + { "lat": 40.8710164, "lon": -73.9774229 }, + { "lat": 40.8709988, "lon": -73.9774531 }, + { "lat": 40.8709747, "lon": -73.9774739 }, + { "lat": 40.8709468, "lon": -73.9774831 }, + { "lat": 40.8709181, "lon": -73.9774797 }, + { "lat": 40.8708918, "lon": -73.9774640 }, + { "lat": 40.8708710, "lon": -73.9774377 }, + { "lat": 40.8708580, "lon": -73.9774048 }, + { "lat": 40.8708537, "lon": -73.9773682 }, + { "lat": 40.8708585, "lon": -73.9773317 }, + { "lat": 40.8708719, "lon": -73.9772991 }, + { "lat": 40.8708925, "lon": -73.9772739 }, + { "lat": 40.8709181, "lon": -73.9772588 }, + { "lat": 40.8709460, "lon": -73.9772553 }, + { "lat": 40.8709733, "lon": -73.9772637 }, + { "lat": 40.8709971, "lon": -73.9772833 }, + { "lat": 40.8716232, "lon": -73.9765329 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Cliff Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cliff", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11567957, + "bounds": { + "minlat": 40.8781466, + "minlon": -73.9541556, + "maxlat": 40.8792966, + "maxlon": -73.9530193 + }, + "nodes": [ + 103145566, + 10059739092, + 10059739093, + 103145570, + 10059739094, + 10059739100, + 103145573 + ], + "geometry": [ + { "lat": 40.8781466, "lon": -73.9541556 }, + { "lat": 40.8782227, "lon": -73.9540797 }, + { "lat": 40.8786537, "lon": -73.9536500 }, + { "lat": 40.8787314, "lon": -73.9535726 }, + { "lat": 40.8788497, "lon": -73.9534626 }, + { "lat": 40.8791826, "lon": -73.9531324 }, + { "lat": 40.8792966, "lon": -73.9530193 } + ], + "tags": { + "highway": "residential", + "name": "Alpine Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Alpine", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11568001, + "bounds": { + "minlat": 40.8627618, + "minlon": -73.9959890, + "maxlat": 40.8629100, + "maxlon": -73.9956501 + }, + "nodes": [ + 103146272, + 6114190647, + 10122889663, + 103146275 + ], + "geometry": [ + { "lat": 40.8629100, "lon": -73.9959890 }, + { "lat": 40.8628465, "lon": -73.9958174 }, + { "lat": 40.8627932, "lon": -73.9957124 }, + { "lat": 40.8627618, "lon": -73.9956501 } + ], + "tags": { + "highway": "residential", + "name": "Maple Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11568002, + "bounds": { + "minlat": 40.8185747, + "minlon": -74.0064679, + "maxlat": 40.8204355, + "maxlon": -74.0057911 + }, + "nodes": [ + 103146290, + 103146293, + 103146295, + 103146297, + 13525551098, + 103146304 + ], + "geometry": [ + { "lat": 40.8185747, "lon": -74.0064679 }, + { "lat": 40.8188119, "lon": -74.0063250 }, + { "lat": 40.8189254, "lon": -74.0062620 }, + { "lat": 40.8190651, "lon": -74.0062110 }, + { "lat": 40.8203808, "lon": -74.0058079 }, + { "lat": 40.8204355, "lon": -74.0057911 } + ], + "tags": { + "highway": "residential", + "name": "Maple Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11568005, + "bounds": { + "minlat": 40.8823527, + "minlon": -73.9736680, + "maxlat": 40.8873880, + "maxlon": -73.9648793 + }, + "nodes": [ + 103146338, + 7698625130, + 8386488937, + 7513128213, + 103146342, + 8415141682, + 103146344, + 8415141691, + 103146346, + 103146349, + 103146351 + ], + "geometry": [ + { "lat": 40.8873880, "lon": -73.9736680 }, + { "lat": 40.8869157, "lon": -73.9728222 }, + { "lat": 40.8860997, "lon": -73.9713609 }, + { "lat": 40.8859394, "lon": -73.9710738 }, + { "lat": 40.8853874, "lon": -73.9701134 }, + { "lat": 40.8850121, "lon": -73.9694554 }, + { "lat": 40.8849305, "lon": -73.9693182 }, + { "lat": 40.8847054, "lon": -73.9689400 }, + { "lat": 40.8835670, "lon": -73.9670270 }, + { "lat": 40.8823685, "lon": -73.9649030 }, + { "lat": 40.8823527, "lon": -73.9648793 } + ], + "tags": { + "highway": "residential", + "name": "Maple Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11568009, + "bounds": { + "minlat": 40.8442990, + "minlon": -73.9680921, + "maxlat": 40.8447833, + "maxlon": -73.9672374 + }, + "nodes": [ + 3882426683, + 7292367286, + 3882426680, + 103115634 + ], + "geometry": [ + { "lat": 40.8442990, "lon": -73.9672374 }, + { "lat": 40.8443590, "lon": -73.9674054 }, + { "lat": 40.8443835, "lon": -73.9674741 }, + { "lat": 40.8447833, "lon": -73.9680921 } + ], + "tags": { + "highway": "residential", + "name": "Maple Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11568011, + "bounds": { + "minlat": 40.8672230, + "minlon": -74.0223569, + "maxlat": 40.8685507, + "maxlon": -74.0150524 + }, + "nodes": [ + 103146428, + 103146430, + 103146431, + 103146432, + 103146434, + 440205988, + 103146436 + ], + "geometry": [ + { "lat": 40.8672230, "lon": -74.0150524 }, + { "lat": 40.8676650, "lon": -74.0173850 }, + { "lat": 40.8680350, "lon": -74.0193430 }, + { "lat": 40.8682640, "lon": -74.0206560 }, + { "lat": 40.8684530, "lon": -74.0217390 }, + { "lat": 40.8684730, "lon": -74.0218660 }, + { "lat": 40.8685507, "lon": -74.0223569 } + ], + "tags": { + "highway": "residential", + "name": "Maple Street", + "name_1": "East Maple Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_base_1": "Maple", + "tiger:name_direction_prefix_1": "E", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11568017, + "bounds": { + "minlat": 40.8669800, + "minlon": -74.0150273, + "maxlat": 40.8673094, + "maxlon": -74.0131520 + }, + "nodes": [ + 103146457, + 103146458, + 6592337770, + 6592337769, + 103146459 + ], + "geometry": [ + { "lat": 40.8673094, "lon": -74.0150273 }, + { "lat": 40.8671605, "lon": -74.0141572 }, + { "lat": 40.8670941, "lon": -74.0137872 }, + { "lat": 40.8670512, "lon": -74.0135486 }, + { "lat": 40.8669800, "lon": -74.0131520 } + ], + "tags": { + "highway": "residential", + "name": "Maple Street", + "name_1": "East Maple Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_base_1": "Maple", + "tiger:name_direction_prefix_1": "E", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11568029, + "bounds": { + "minlat": 40.8636399, + "minlon": -73.9671980, + "maxlat": 40.8647860, + "maxlon": -73.9652976 + }, + "nodes": [ + 103146580, + 103146583, + 103146585, + 103132990 + ], + "geometry": [ + { "lat": 40.8636399, "lon": -73.9652976 }, + { "lat": 40.8638409, "lon": -73.9656374 }, + { "lat": 40.8642474, "lon": -73.9662921 }, + { "lat": 40.8647860, "lon": -73.9671980 } + ], + "tags": { + "highway": "residential", + "name": "Maple Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11568033, + "bounds": { + "minlat": 40.8540490, + "minlon": -73.9834106, + "maxlat": 40.8548381, + "maxlon": -73.9826619 + }, + "nodes": [ + 2325759617, + 5362350125, + 5362350126, + 5362347326, + 2325759623, + 6598358379, + 103146631 + ], + "geometry": [ + { "lat": 40.8540490, "lon": -73.9834106 }, + { "lat": 40.8542598, "lon": -73.9831830 }, + { "lat": 40.8544295, "lon": -73.9830075 }, + { "lat": 40.8546514, "lon": -73.9827778 }, + { "lat": 40.8547687, "lon": -73.9826619 }, + { "lat": 40.8547914, "lon": -73.9826728 }, + { "lat": 40.8548381, "lon": -73.9826952 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 11568148, + "bounds": { + "minlat": 40.8460917, + "minlon": -74.0060618, + "maxlat": 40.8471682, + "maxlon": -74.0038413 + }, + "nodes": [ + 103147683, + 8219528726, + 8219528721, + 9913452845, + 9913452852, + 9913452862, + 7271026937, + 9913452866, + 103147686, + 2707984827, + 2707984824 + ], + "geometry": [ + { "lat": 40.8460917, "lon": -74.0038413 }, + { "lat": 40.8463469, "lon": -74.0042928 }, + { "lat": 40.8464504, "lon": -74.0044759 }, + { "lat": 40.8465172, "lon": -74.0045941 }, + { "lat": 40.8465418, "lon": -74.0046375 }, + { "lat": 40.8468236, "lon": -74.0051360 }, + { "lat": 40.8469238, "lon": -74.0053133 }, + { "lat": 40.8470159, "lon": -74.0054762 }, + { "lat": 40.8470740, "lon": -74.0055790 }, + { "lat": 40.8471682, "lon": -74.0057518 }, + { "lat": 40.8464194, "lon": -74.0060618 } + ], + "tags": { + "highway": "residential", + "name": "Fairview Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11568164, + "bounds": { + "minlat": 40.8778309, + "minlon": -73.9573824, + "maxlat": 40.8787620, + "maxlon": -73.9552598 + }, + "nodes": [ + 103147843, + 103147845, + 103147847, + 103147849, + 103147851, + 103147852, + 103147855, + 10059739086, + 10059739085, + 103147857, + 103142117, + 103147859, + 103147861, + 103147864, + 103147866, + 10059739083, + 103147868 + ], + "geometry": [ + { "lat": 40.8778309, "lon": -73.9573824 }, + { "lat": 40.8778868, "lon": -73.9573248 }, + { "lat": 40.8779344, "lon": -73.9572760 }, + { "lat": 40.8779857, "lon": -73.9572107 }, + { "lat": 40.8780366, "lon": -73.9571357 }, + { "lat": 40.8780857, "lon": -73.9570455 }, + { "lat": 40.8781175, "lon": -73.9569486 }, + { "lat": 40.8781377, "lon": -73.9568453 }, + { "lat": 40.8781569, "lon": -73.9567308 }, + { "lat": 40.8782123, "lon": -73.9561544 }, + { "lat": 40.8782230, "lon": -73.9560006 }, + { "lat": 40.8782503, "lon": -73.9558734 }, + { "lat": 40.8782970, "lon": -73.9557556 }, + { "lat": 40.8783587, "lon": -73.9556578 }, + { "lat": 40.8784286, "lon": -73.9555640 }, + { "lat": 40.8786881, "lon": -73.9553272 }, + { "lat": 40.8787620, "lon": -73.9552598 } + ], + "tags": { + "highway": "residential", + "name": "Mauro Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mauro", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11568184, + "bounds": { + "minlat": 40.8116710, + "minlon": -74.0041370, + "maxlat": 40.8125067, + "maxlon": -74.0037203 + }, + "nodes": [ + 103147899, + 103147901, + 103147904, + 103147906 + ], + "geometry": [ + { "lat": 40.8116710, "lon": -74.0041370 }, + { "lat": 40.8118367, "lon": -74.0040425 }, + { "lat": 40.8121810, "lon": -74.0038650 }, + { "lat": 40.8125067, "lon": -74.0037203 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11568186, + "bounds": { + "minlat": 40.8342460, + "minlon": -73.9903850, + "maxlat": 40.8346114, + "maxlon": -73.9901785 + }, + "nodes": [ + 103148212, + 660545482 + ], + "geometry": [ + { "lat": 40.8342460, "lon": -73.9903850 }, + { "lat": 40.8346114, "lon": -73.9901785 } + ], + "tags": { + "highway": "primary", + "name": "Bergen Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11568232, + "bounds": { + "minlat": 40.8820921, + "minlon": -73.9806266, + "maxlat": 40.8827192, + "maxlon": -73.9795391 + }, + "nodes": [ + 8219449641, + 6888241312, + 6888241314, + 103148675 + ], + "geometry": [ + { "lat": 40.8827192, "lon": -73.9806266 }, + { "lat": 40.8824784, "lon": -73.9802089 }, + { "lat": 40.8822558, "lon": -73.9798231 }, + { "lat": 40.8820921, "lon": -73.9795391 } + ], + "tags": { + "highway": "unclassified", + "maxweight": "4", + "name": "Honeck Street", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Honeck", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11568249, + "bounds": { + "minlat": 40.8533397, + "minlon": -73.9842041, + "maxlat": 40.8537961, + "maxlon": -73.9830968 + }, + "nodes": [ + 103111779, + 5362357992, + 5108610097, + 5362357993, + 5108610098, + 299182803, + 2395509031, + 299182805, + 2395509029, + 299182806 + ], + "geometry": [ + { "lat": 40.8533397, "lon": -73.9830968 }, + { "lat": 40.8534501, "lon": -73.9832848 }, + { "lat": 40.8534653, "lon": -73.9833355 }, + { "lat": 40.8534838, "lon": -73.9834235 }, + { "lat": 40.8535023, "lon": -73.9834861 }, + { "lat": 40.8537961, "lon": -73.9839933 }, + { "lat": 40.8537501, "lon": -73.9840423 }, + { "lat": 40.8536468, "lon": -73.9840689 }, + { "lat": 40.8535931, "lon": -73.9841173 }, + { "lat": 40.8535331, "lon": -73.9842041 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Belvedere Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Belvedere", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11568321, + "bounds": { + "minlat": 40.8310121, + "minlon": -73.9850921, + "maxlat": 40.8313989, + "maxlon": -73.9845670 + }, + "nodes": [ + 103149448, + 7530193439, + 7538989253, + 103149447, + 103149446 + ], + "geometry": [ + { "lat": 40.8310121, "lon": -73.9845670 }, + { "lat": 40.8310363, "lon": -73.9846374 }, + { "lat": 40.8310757, "lon": -73.9846953 }, + { "lat": 40.8311083, "lon": -73.9847431 }, + { "lat": 40.8313989, "lon": -73.9850921 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Edgewood Lane", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewood", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11568336, + "bounds": { + "minlat": 40.8385420, + "minlon": -73.9810440, + "maxlat": 40.8404440, + "maxlon": -73.9777470 + }, + "nodes": [ + 103149542, + 7469385879, + 7469386215, + 103149541, + 103149540, + 103149539, + 13523728836, + 103149538 + ], + "geometry": [ + { "lat": 40.8404440, "lon": -73.9810440 }, + { "lat": 40.8402195, "lon": -73.9806501 }, + { "lat": 40.8401760, "lon": -73.9805737 }, + { "lat": 40.8397790, "lon": -73.9798770 }, + { "lat": 40.8396180, "lon": -73.9795930 }, + { "lat": 40.8390380, "lon": -73.9785750 }, + { "lat": 40.8386112, "lon": -73.9778625 }, + { "lat": 40.8385420, "lon": -73.9777470 } + ], + "tags": { + "highway": "residential", + "name": "Virginia Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Virginia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11568366, + "bounds": { + "minlat": 40.8440876, + "minlon": -74.0039038, + "maxlat": 40.8459433, + "maxlon": -74.0006299 + }, + "nodes": [ + 103149650, + 5970473904, + 5976782434, + 5976782413, + 5970474099, + 103149652 + ], + "geometry": [ + { "lat": 40.8440876, "lon": -74.0006299 }, + { "lat": 40.8443484, "lon": -74.0010956 }, + { "lat": 40.8444049, "lon": -74.0011950 }, + { "lat": 40.8456413, "lon": -74.0033497 }, + { "lat": 40.8457520, "lon": -74.0035403 }, + { "lat": 40.8459433, "lon": -74.0039038 } + ], + "tags": { + "highway": "residential", + "name": "West Edsall Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edsall", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11568449, + "bounds": { + "minlat": 40.8539780, + "minlon": -73.9974170, + "maxlat": 40.8561760, + "maxlon": -73.9935260 + }, + "nodes": [ + 440215440, + 440215438, + 10261680058, + 8076425415, + 440215456, + 440215458, + 440215451, + 440215452, + 10122889639, + 440215454 + ], + "geometry": [ + { "lat": 40.8561760, "lon": -73.9974170 }, + { "lat": 40.8561610, "lon": -73.9973830 }, + { "lat": 40.8561440, "lon": -73.9973442 }, + { "lat": 40.8561141, "lon": -73.9972899 }, + { "lat": 40.8555580, "lon": -73.9962700 }, + { "lat": 40.8554340, "lon": -73.9960520 }, + { "lat": 40.8549620, "lon": -73.9952340 }, + { "lat": 40.8545200, "lon": -73.9944680 }, + { "lat": 40.8540376, "lon": -73.9936300 }, + { "lat": 40.8539780, "lon": -73.9935260 } + ], + "tags": { + "alternate": "parking", + "highway": "residential", + "name": "Oakdene Avenue", + "name_1": "West Oakdene Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_base_1": "Oakdene", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11568453, + "bounds": { + "minlat": 40.8243906, + "minlon": -73.9922482, + "maxlat": 40.8264359, + "maxlon": -73.9885836 + }, + "nodes": [ + 103150101, + 13525873318, + 7571579882, + 7570790022, + 7571579908, + 103150102, + 103150104, + 103150106, + 103150108, + 103150109, + 7534353913, + 7534353910, + 103150110 + ], + "geometry": [ + { "lat": 40.8243906, "lon": -73.9885836 }, + { "lat": 40.8244323, "lon": -73.9886608 }, + { "lat": 40.8244815, "lon": -73.9887518 }, + { "lat": 40.8245781, "lon": -73.9889305 }, + { "lat": 40.8246085, "lon": -73.9889868 }, + { "lat": 40.8247407, "lon": -73.9892314 }, + { "lat": 40.8251446, "lon": -73.9899623 }, + { "lat": 40.8255524, "lon": -73.9906806 }, + { "lat": 40.8256327, "lon": -73.9908067 }, + { "lat": 40.8259633, "lon": -73.9914238 }, + { "lat": 40.8263706, "lon": -73.9921343 }, + { "lat": 40.8263931, "lon": -73.9921735 }, + { "lat": 40.8264359, "lon": -73.9922482 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11568455, + "bounds": { + "minlat": 40.8748732, + "minlon": -74.0145760, + "maxlat": 40.8757350, + "maxlon": -74.0121840 + }, + "nodes": [ + 103150119, + 6592338057, + 6592338056, + 6592338034, + 103150117 + ], + "geometry": [ + { "lat": 40.8757350, "lon": -74.0145760 }, + { "lat": 40.8755498, "lon": -74.0140619 }, + { "lat": 40.8754565, "lon": -74.0138030 }, + { "lat": 40.8752842, "lon": -74.0133249 }, + { "lat": 40.8748732, "lon": -74.0121840 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11568458, + "bounds": { + "minlat": 40.8297140, + "minlon": -73.9985155, + "maxlat": 40.8303649, + "maxlon": -73.9979070 + }, + "nodes": [ + 103150128, + 103150129, + 103150130, + 103150132, + 103150134, + 103150136, + 8530362406, + 103150138, + 8530362400, + 103150139, + 103150140 + ], + "geometry": [ + { "lat": 40.8297170, "lon": -73.9979070 }, + { "lat": 40.8297140, "lon": -73.9981380 }, + { "lat": 40.8297300, "lon": -73.9982170 }, + { "lat": 40.8297570, "lon": -73.9982790 }, + { "lat": 40.8297980, "lon": -73.9983340 }, + { "lat": 40.8298440, "lon": -73.9983710 }, + { "lat": 40.8298686, "lon": -73.9983807 }, + { "lat": 40.8299000, "lon": -73.9983930 }, + { "lat": 40.8301045, "lon": -73.9984195 }, + { "lat": 40.8302550, "lon": -73.9984390 }, + { "lat": 40.8303649, "lon": -73.9985155 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11568459, + "bounds": { + "minlat": 40.8522020, + "minlon": -73.9908680, + "maxlat": 40.8526120, + "maxlon": -73.9901390 + }, + "nodes": [ + 440215449, + 440215450 + ], + "geometry": [ + { "lat": 40.8526120, "lon": -73.9908680 }, + { "lat": 40.8522020, "lon": -73.9901390 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605" + } +}, +{ + "type": "way", + "id": 11568460, + "bounds": { + "minlat": 40.8289620, + "minlon": -73.9963370, + "maxlat": 40.8300440, + "maxlon": -73.9961598 + }, + "nodes": [ + 103150151, + 103150153, + 103150155, + 103150157, + 103150159, + 103150161, + 103150162 + ], + "geometry": [ + { "lat": 40.8289620, "lon": -73.9961598 }, + { "lat": 40.8289813, "lon": -73.9961892 }, + { "lat": 40.8290360, "lon": -73.9962690 }, + { "lat": 40.8291110, "lon": -73.9962980 }, + { "lat": 40.8292050, "lon": -73.9963120 }, + { "lat": 40.8297760, "lon": -73.9962710 }, + { "lat": 40.8300440, "lon": -73.9963370 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11568461, + "bounds": { + "minlat": 40.8281781, + "minlon": -73.9961785, + "maxlat": 40.8289439, + "maxlon": -73.9948043 + }, + "nodes": [ + 103147968, + 103150174 + ], + "geometry": [ + { "lat": 40.8281781, "lon": -73.9948043 }, + { "lat": 40.8289439, "lon": -73.9961785 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11568462, + "bounds": { + "minlat": 40.8205192, + "minlon": -73.9827132, + "maxlat": 40.8210540, + "maxlon": -73.9817490 + }, + "nodes": [ + 752618477, + 103150182 + ], + "geometry": [ + { "lat": 40.8205192, "lon": -73.9817490 }, + { "lat": 40.8210540, "lon": -73.9827132 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11568463, + "bounds": { + "minlat": 40.8235277, + "minlon": -73.9884063, + "maxlat": 40.8246176, + "maxlon": -73.9863450 + }, + "nodes": [ + 103110914, + 4695282828, + 103150194, + 7557491405, + 13539905116, + 103150196, + 13539905117, + 4695282842, + 13525873326, + 103150198 + ], + "geometry": [ + { "lat": 40.8235277, "lon": -73.9863450 }, + { "lat": 40.8236924, "lon": -73.9867304 }, + { "lat": 40.8237459, "lon": -73.9868144 }, + { "lat": 40.8239363, "lon": -73.9871586 }, + { "lat": 40.8241164, "lon": -73.9874842 }, + { "lat": 40.8241620, "lon": -73.9875667 }, + { "lat": 40.8242265, "lon": -73.9876537 }, + { "lat": 40.8242574, "lon": -73.9876955 }, + { "lat": 40.8245758, "lon": -73.9883238 }, + { "lat": 40.8246176, "lon": -73.9884063 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11568464, + "bounds": { + "minlat": 40.8487170, + "minlon": -73.9876422, + "maxlat": 40.8511069, + "maxlon": -73.9842060 + }, + "nodes": [ + 103150203, + 4695808491, + 103148059, + 4695808489, + 103255689, + 299183025, + 10282660086, + 299183027, + 299183094, + 299183029, + 299183095, + 299183096 + ], + "geometry": [ + { "lat": 40.8487170, "lon": -73.9842060 }, + { "lat": 40.8489401, "lon": -73.9845767 }, + { "lat": 40.8491150, "lon": -73.9848577 }, + { "lat": 40.8493335, "lon": -73.9852390 }, + { "lat": 40.8500352, "lon": -73.9864263 }, + { "lat": 40.8503538, "lon": -73.9869641 }, + { "lat": 40.8504235, "lon": -73.9870374 }, + { "lat": 40.8504902, "lon": -73.9870843 }, + { "lat": 40.8505940, "lon": -73.9871272 }, + { "lat": 40.8506655, "lon": -73.9871787 }, + { "lat": 40.8508148, "lon": -73.9873418 }, + { "lat": 40.8511069, "lon": -73.9876422 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxheight:signed": "no", + "name": "Oakdene Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 11568560, + "bounds": { + "minlat": 40.8787909, + "minlon": -73.9515695, + "maxlat": 40.8796788, + "maxlon": -73.9500021 + }, + "nodes": [ + 103150961, + 8374457914, + 103150964 + ], + "geometry": [ + { "lat": 40.8787909, "lon": -73.9500021 }, + { "lat": 40.8791434, "lon": -73.9506244 }, + { "lat": 40.8796788, "lon": -73.9515695 } + ], + "tags": { + "highway": "residential", + "name": "Kahn Terrace", + "name_1": "Kahn Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Stephens", + "tiger:name_base_1": "Kahn", + "tiger:name_type": "Ter", + "tiger:name_type_1": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 11568586, + "bounds": { + "minlat": 40.8491603, + "minlon": -73.9680621, + "maxlat": 40.8495682, + "maxlon": -73.9665370 + }, + "nodes": [ + 103151187, + 7069321121, + 103134227 + ], + "geometry": [ + { "lat": 40.8491603, "lon": -73.9665370 }, + { "lat": 40.8493164, "lon": -73.9670938 }, + { "lat": 40.8495682, "lon": -73.9680621 } + ], + "tags": { + "highway": "residential", + "name": "English Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "English", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11568682, + "bounds": { + "minlat": 40.8518248, + "minlon": -73.9999530, + "maxlat": 40.8527370, + "maxlon": -73.9983533 + }, + "nodes": [ + 103152176, + 103152178, + 8375073036, + 103152179 + ], + "geometry": [ + { "lat": 40.8518248, "lon": -73.9983533 }, + { "lat": 40.8523590, "lon": -73.9993060 }, + { "lat": 40.8524195, "lon": -73.9994096 }, + { "lat": 40.8527370, "lon": -73.9999530 } + ], + "tags": { + "highway": "residential", + "name": "Liberty Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Liberty", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11568683, + "bounds": { + "minlat": 40.8326107, + "minlon": -74.0032224, + "maxlat": 40.8333715, + "maxlon": -74.0024508 + }, + "nodes": [ + 103152183, + 103152185 + ], + "geometry": [ + { "lat": 40.8326107, "lon": -74.0032224 }, + { "lat": 40.8333715, "lon": -74.0024508 } + ], + "tags": { + "highway": "residential", + "name": "Liberty Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Liberty", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11568743, + "bounds": { + "minlat": 40.8390132, + "minlon": -73.9883737, + "maxlat": 40.8403668, + "maxlon": -73.9870323 + }, + "nodes": [ + 7527301264, + 5975035294, + 440215411, + 5975035297, + 5978949638, + 7527301270 + ], + "geometry": [ + { "lat": 40.8403668, "lon": -73.9870323 }, + { "lat": 40.8397361, "lon": -73.9876408 }, + { "lat": 40.8396492, "lon": -73.9877239 }, + { "lat": 40.8396240, "lon": -73.9877494 }, + { "lat": 40.8395628, "lon": -73.9878099 }, + { "lat": 40.8390132, "lon": -73.9883737 } + ], + "tags": { + "highway": "residential", + "name": "14th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "14th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11568744, + "bounds": { + "minlat": 40.8460528, + "minlon": -73.9812754, + "maxlat": 40.8477400, + "maxlon": -73.9796560 + }, + "nodes": [ + 299385655, + 477414181, + 103152583, + 103152585, + 103152587 + ], + "geometry": [ + { "lat": 40.8460528, "lon": -73.9812754 }, + { "lat": 40.8465344, "lon": -73.9808065 }, + { "lat": 40.8468904, "lon": -73.9804600 }, + { "lat": 40.8475910, "lon": -73.9798010 }, + { "lat": 40.8477400, "lon": -73.9796560 } + ], + "tags": { + "highway": "residential", + "name": "14th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "14th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11568817, + "bounds": { + "minlat": 40.8433275, + "minlon": -74.0001815, + "maxlat": 40.8446924, + "maxlon": -73.9978077 + }, + "nodes": [ + 103153164, + 5970473908, + 5970473906, + 5976411345, + 5976411346, + 103153165 + ], + "geometry": [ + { "lat": 40.8446924, "lon": -74.0001815 }, + { "lat": 40.8444790, "lon": -73.9998538 }, + { "lat": 40.8444436, "lon": -73.9997923 }, + { "lat": 40.8444273, "lon": -73.9997640 }, + { "lat": 40.8443985, "lon": -73.9997140 }, + { "lat": 40.8433275, "lon": -73.9978077 } + ], + "tags": { + "highway": "residential", + "name": "East Harwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harwood", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11568835, + "bounds": { + "minlat": 40.8176005, + "minlon": -73.9881520, + "maxlat": 40.8180420, + "maxlon": -73.9873529 + }, + "nodes": [ + 103153290, + 103111153 + ], + "geometry": [ + { "lat": 40.8180420, "lon": -73.9881520 }, + { "lat": 40.8176005, "lon": -73.9873529 } + ], + "tags": { + "highway": "residential", + "name": "Holley Terrace", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Holley", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11568842, + "bounds": { + "minlat": 40.8743817, + "minlon": -73.9608231, + "maxlat": 40.8762370, + "maxlon": -73.9566537 + }, + "nodes": [ + 103153318, + 103153320, + 103153323, + 103153325, + 103153327, + 103153328, + 103153329, + 103153330, + 103153332, + 103153334, + 103153336, + 103153338, + 9348842169, + 103153342, + 9348848223, + 103153344, + 103153348, + 103153350 + ], + "geometry": [ + { "lat": 40.8749119, "lon": -73.9566537 }, + { "lat": 40.8746151, "lon": -73.9568261 }, + { "lat": 40.8745367, "lon": -73.9568884 }, + { "lat": 40.8744764, "lon": -73.9569584 }, + { "lat": 40.8744272, "lon": -73.9570349 }, + { "lat": 40.8744028, "lon": -73.9571200 }, + { "lat": 40.8743907, "lon": -73.9572112 }, + { "lat": 40.8743817, "lon": -73.9573425 }, + { "lat": 40.8744129, "lon": -73.9574489 }, + { "lat": 40.8744675, "lon": -73.9575516 }, + { "lat": 40.8748360, "lon": -73.9581970 }, + { "lat": 40.8749499, "lon": -73.9584042 }, + { "lat": 40.8750782, "lon": -73.9586704 }, + { "lat": 40.8753161, "lon": -73.9591773 }, + { "lat": 40.8754204, "lon": -73.9593625 }, + { "lat": 40.8759848, "lon": -73.9603555 }, + { "lat": 40.8761177, "lon": -73.9605943 }, + { "lat": 40.8762370, "lon": -73.9608231 } + ], + "tags": { + "highway": "residential", + "name": "Wood Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wood", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11568846, + "bounds": { + "minlat": 40.8749536, + "minlon": -73.9567268, + "maxlat": 40.8754167, + "maxlon": -73.9564647 + }, + "nodes": [ + 103153362, + 103153364, + 5108505902 + ], + "geometry": [ + { "lat": 40.8749536, "lon": -73.9567268 }, + { "lat": 40.8752693, "lon": -73.9565355 }, + { "lat": 40.8754167, "lon": -73.9564647 } + ], + "tags": { + "highway": "service", + "name": "Wood Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wood", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11568905, + "bounds": { + "minlat": 40.8368400, + "minlon": -73.9723761, + "maxlat": 40.8377308, + "maxlon": -73.9706310 + }, + "nodes": [ + 103115552, + 7292367396, + 1752676730, + 7292367466, + 103153927, + 7414336216, + 7292367443, + 103137166 + ], + "geometry": [ + { "lat": 40.8377308, "lon": -73.9723761 }, + { "lat": 40.8373800, "lon": -73.9716991 }, + { "lat": 40.8373488, "lon": -73.9716389 }, + { "lat": 40.8373246, "lon": -73.9715913 }, + { "lat": 40.8371500, "lon": -73.9712482 }, + { "lat": 40.8371112, "lon": -73.9711709 }, + { "lat": 40.8368791, "lon": -73.9707088 }, + { "lat": 40.8368400, "lon": -73.9706310 } + ], + "tags": { + "highway": "residential", + "name": "North Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "North", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11568947, + "bounds": { + "minlat": 40.8499889, + "minlon": -73.9739150, + "maxlat": 40.8514920, + "maxlon": -73.9704549 + }, + "nodes": [ + 103154236, + 7428323359, + 7428323497, + 7431516894, + 7431516968, + 103154238, + 103154239, + 7442921599, + 5449456338, + 5449456339, + 5449456341, + 103154240, + 7434604955, + 1749228834, + 103154244 + ], + "geometry": [ + { "lat": 40.8499889, "lon": -73.9704549 }, + { "lat": 40.8500546, "lon": -73.9708145 }, + { "lat": 40.8500649, "lon": -73.9708713 }, + { "lat": 40.8500815, "lon": -73.9709620 }, + { "lat": 40.8500931, "lon": -73.9710259 }, + { "lat": 40.8502800, "lon": -73.9720490 }, + { "lat": 40.8503127, "lon": -73.9721201 }, + { "lat": 40.8505854, "lon": -73.9725309 }, + { "lat": 40.8506351, "lon": -73.9726058 }, + { "lat": 40.8507940, "lon": -73.9728451 }, + { "lat": 40.8510289, "lon": -73.9731990 }, + { "lat": 40.8510790, "lon": -73.9732950 }, + { "lat": 40.8512660, "lon": -73.9735757 }, + { "lat": 40.8513846, "lon": -73.9737538 }, + { "lat": 40.8514920, "lon": -73.9739150 } + ], + "tags": { + "highway": "residential", + "name": "Hoym Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hoym", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11568954, + "bounds": { + "minlat": 40.8524639, + "minlon": -73.9987680, + "maxlat": 40.8530530, + "maxlon": -73.9977195 + }, + "nodes": [ + 103154263, + 103154265 + ], + "geometry": [ + { "lat": 40.8524639, "lon": -73.9977195 }, + { "lat": 40.8530530, "lon": -73.9987680 } + ], + "tags": { + "highway": "residential", + "name": "Burr Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Burr", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11568959, + "bounds": { + "minlat": 40.8524644, + "minlon": -73.9653976, + "maxlat": 40.8527073, + "maxlon": -73.9653462 + }, + "nodes": [ + 103280486, + 10000920079, + 5449432066 + ], + "geometry": [ + { "lat": 40.8527073, "lon": -73.9653462 }, + { "lat": 40.8526091, "lon": -73.9653670 }, + { "lat": 40.8524644, "lon": -73.9653976 } + ], + "tags": { + "highway": "secondary", + "name": "Central Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11568960, + "bounds": { + "minlat": 40.8547106, + "minlon": -73.9647334, + "maxlat": 40.8586462, + "maxlon": -73.9631233 + }, + "nodes": [ + 103115813, + 12020539640, + 11170628914, + 12020539639, + 530475601, + 5449400762, + 103154325, + 5449402610, + 103154327, + 5449402612, + 103154329, + 3895526499, + 12021336928, + 3895526507, + 12021336929, + 12021336930, + 12021336931, + 103154331, + 12021336932, + 3895526495, + 5362430036, + 5074644002, + 5106312320, + 5074643998, + 5362430597, + 12021336933, + 4397856445, + 12021336934, + 103154333, + 103154335, + 7393543919, + 3882345148 + ], + "geometry": [ + { "lat": 40.8547106, "lon": -73.9647334 }, + { "lat": 40.8547223, "lon": -73.9647148 }, + { "lat": 40.8547359, "lon": -73.9646988 }, + { "lat": 40.8547530, "lon": -73.9646824 }, + { "lat": 40.8547728, "lon": -73.9646678 }, + { "lat": 40.8548898, "lon": -73.9645958 }, + { "lat": 40.8551769, "lon": -73.9644247 }, + { "lat": 40.8554539, "lon": -73.9642553 }, + { "lat": 40.8557899, "lon": -73.9640442 }, + { "lat": 40.8560571, "lon": -73.9638815 }, + { "lat": 40.8560916, "lon": -73.9638624 }, + { "lat": 40.8561334, "lon": -73.9638415 }, + { "lat": 40.8561772, "lon": -73.9638227 }, + { "lat": 40.8562200, "lon": -73.9638066 }, + { "lat": 40.8562738, "lon": -73.9637879 }, + { "lat": 40.8563327, "lon": -73.9637692 }, + { "lat": 40.8568723, "lon": -73.9636077 }, + { "lat": 40.8569353, "lon": -73.9635888 }, + { "lat": 40.8570173, "lon": -73.9635648 }, + { "lat": 40.8570623, "lon": -73.9635525 }, + { "lat": 40.8571803, "lon": -73.9635214 }, + { "lat": 40.8574231, "lon": -73.9634492 }, + { "lat": 40.8577394, "lon": -73.9633504 }, + { "lat": 40.8579035, "lon": -73.9632980 }, + { "lat": 40.8582758, "lon": -73.9631893 }, + { "lat": 40.8583355, "lon": -73.9631722 }, + { "lat": 40.8583753, "lon": -73.9631608 }, + { "lat": 40.8584289, "lon": -73.9631485 }, + { "lat": 40.8584739, "lon": -73.9631398 }, + { "lat": 40.8585182, "lon": -73.9631342 }, + { "lat": 40.8586136, "lon": -73.9631248 }, + { "lat": 40.8586462, "lon": -73.9631233 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Central Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11568961, + "bounds": { + "minlat": 40.8655669, + "minlon": -73.9711632, + "maxlat": 40.8663938, + "maxlon": -73.9698456 + }, + "nodes": [ + 440215011, + 440215012, + 298940685 + ], + "geometry": [ + { "lat": 40.8655669, "lon": -73.9698456 }, + { "lat": 40.8656860, "lon": -73.9700230 }, + { "lat": 40.8663938, "lon": -73.9711632 } + ], + "tags": { + "highway": "residential", + "name": "Grandview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grandview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11569032, + "bounds": { + "minlat": 40.8821468, + "minlon": -74.0131431, + "maxlat": 40.8825043, + "maxlon": -74.0130018 + }, + "nodes": [ + 103154990, + 103154991 + ], + "geometry": [ + { "lat": 40.8825043, "lon": -74.0130018 }, + { "lat": 40.8821468, "lon": -74.0131431 } + ], + "tags": { + "highway": "residential", + "name": "Grange Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grange", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11569059, + "bounds": { + "minlat": 40.8534327, + "minlon": -73.9892840, + "maxlat": 40.8551890, + "maxlon": -73.9862617 + }, + "nodes": [ + 103093218, + 8078680900, + 103155260, + 478282827, + 478282832, + 103155262, + 478282834 + ], + "geometry": [ + { "lat": 40.8551890, "lon": -73.9892840 }, + { "lat": 40.8551276, "lon": -73.9891808 }, + { "lat": 40.8546620, "lon": -73.9883990 }, + { "lat": 40.8541882, "lon": -73.9876268 }, + { "lat": 40.8541251, "lon": -73.9875142 }, + { "lat": 40.8538114, "lon": -73.9869431 }, + { "lat": 40.8534327, "lon": -73.9862617 } + ], + "tags": { + "highway": "residential", + "name": "Highwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Highwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11569071, + "bounds": { + "minlat": 40.8553310, + "minlon": -73.9959570, + "maxlat": 40.8593240, + "maxlon": -73.9891970 + }, + "nodes": [ + 103155360, + 8076425412, + 103155361, + 8075114228, + 10261638515, + 103155362, + 8075114229, + 8078713074, + 103093220 + ], + "geometry": [ + { "lat": 40.8593240, "lon": -73.9959570 }, + { "lat": 40.8592547, "lon": -73.9958397 }, + { "lat": 40.8584092, "lon": -73.9943649 }, + { "lat": 40.8567853, "lon": -73.9916585 }, + { "lat": 40.8567660, "lon": -73.9916259 }, + { "lat": 40.8567130, "lon": -73.9915360 }, + { "lat": 40.8566427, "lon": -73.9914169 }, + { "lat": 40.8553901, "lon": -73.9892971 }, + { "lat": 40.8553310, "lon": -73.9891970 } + ], + "tags": { + "highway": "residential", + "name": "Highwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Highwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11569107, + "bounds": { + "minlat": 40.8759836, + "minlon": -74.0040301, + "maxlat": 40.8761701, + "maxlon": -74.0036845 + }, + "nodes": [ + 4469435370, + 4469435380, + 4469435367, + 1158133025 + ], + "geometry": [ + { "lat": 40.8759836, "lon": -74.0037403 }, + { "lat": 40.8760637, "lon": -74.0036845 }, + { "lat": 40.8760968, "lon": -74.0037883 }, + { "lat": 40.8761701, "lon": -74.0040301 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Eliot Court", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Eliot", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11569168, + "bounds": { + "minlat": 40.8614740, + "minlon": -74.0236193, + "maxlat": 40.8629569, + "maxlon": -74.0166860 + }, + "nodes": [ + 103156000, + 103156002, + 103156004, + 103156006, + 103156008 + ], + "geometry": [ + { "lat": 40.8629569, "lon": -74.0236193 }, + { "lat": 40.8625920, "lon": -74.0219210 }, + { "lat": 40.8622670, "lon": -74.0203970 }, + { "lat": 40.8619380, "lon": -74.0188550 }, + { "lat": 40.8614740, "lon": -74.0166860 } + ], + "tags": { + "highway": "residential", + "name": "Highland Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Highland", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11569231, + "bounds": { + "minlat": 40.8632830, + "minlon": -73.9785880, + "maxlat": 40.8657330, + "maxlon": -73.9761670 + }, + "nodes": [ + 103156431, + 103156432, + 103156434, + 103156435, + 103156436, + 103156437, + 103156438, + 103156440, + 103156442, + 103156444, + 103156445, + 103156446, + 103156447, + 103156448, + 103156449, + 103156450, + 103156452, + 103156455, + 103156456, + 103156457, + 103156458, + 103156459, + 103156461, + 103156462, + 103156464, + 103156465, + 103156467, + 440215052, + 103156471 + ], + "geometry": [ + { "lat": 40.8657330, "lon": -73.9780750 }, + { "lat": 40.8655410, "lon": -73.9780860 }, + { "lat": 40.8648870, "lon": -73.9781900 }, + { "lat": 40.8647130, "lon": -73.9782300 }, + { "lat": 40.8644850, "lon": -73.9783030 }, + { "lat": 40.8640110, "lon": -73.9785000 }, + { "lat": 40.8637820, "lon": -73.9785800 }, + { "lat": 40.8637010, "lon": -73.9785880 }, + { "lat": 40.8636270, "lon": -73.9785770 }, + { "lat": 40.8635500, "lon": -73.9785470 }, + { "lat": 40.8634840, "lon": -73.9785020 }, + { "lat": 40.8634190, "lon": -73.9784370 }, + { "lat": 40.8633700, "lon": -73.9783640 }, + { "lat": 40.8633290, "lon": -73.9782760 }, + { "lat": 40.8633030, "lon": -73.9781910 }, + { "lat": 40.8632870, "lon": -73.9780910 }, + { "lat": 40.8632830, "lon": -73.9779990 }, + { "lat": 40.8632940, "lon": -73.9778880 }, + { "lat": 40.8633050, "lon": -73.9778350 }, + { "lat": 40.8634500, "lon": -73.9773220 }, + { "lat": 40.8634970, "lon": -73.9772250 }, + { "lat": 40.8635800, "lon": -73.9771010 }, + { "lat": 40.8637510, "lon": -73.9768470 }, + { "lat": 40.8638500, "lon": -73.9767260 }, + { "lat": 40.8638970, "lon": -73.9766290 }, + { "lat": 40.8639070, "lon": -73.9765910 }, + { "lat": 40.8639240, "lon": -73.9764900 }, + { "lat": 40.8639270, "lon": -73.9763750 }, + { "lat": 40.8639000, "lon": -73.9761670 } + ], + "tags": { + "direction": "forward", + "highway": "residential", + "name": "Nordhoff Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Nordhoff", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_left_1": "07605" + } +}, +{ + "type": "way", + "id": 11569235, + "bounds": { + "minlat": 40.8211730, + "minlon": -73.9961460, + "maxlat": 40.8233500, + "maxlon": -73.9941652 + }, + "nodes": [ + 688321141, + 103156485 + ], + "geometry": [ + { "lat": 40.8233500, "lon": -73.9941652 }, + { "lat": 40.8211730, "lon": -73.9961460 } + ], + "tags": { + "highway": "residential", + "name": "North 8th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "8th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11569253, + "bounds": { + "minlat": 40.8629720, + "minlon": -73.9876600, + "maxlat": 40.8632280, + "maxlon": -73.9870600 + }, + "nodes": [ + 103156592, + 8075088200, + 8832653005, + 103156594 + ], + "geometry": [ + { "lat": 40.8632280, "lon": -73.9876600 }, + { "lat": 40.8630349, "lon": -73.9872027 }, + { "lat": 40.8630176, "lon": -73.9871635 }, + { "lat": 40.8629720, "lon": -73.9870600 } + ], + "tags": { + "highway": "residential", + "name": "Boro Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Boro", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11569262, + "bounds": { + "minlat": 40.8822589, + "minlon": -74.0008198, + "maxlat": 40.8876751, + "maxlon": -73.9978128 + }, + "nodes": [ + 103156670, + 13527742910, + 103156671, + 103156672, + 103156674, + 103156676, + 103156678, + 103156679, + 103156680, + 103156681, + 103156682, + 103156683, + 103156684, + 103156686, + 103156688 + ], + "geometry": [ + { "lat": 40.8822589, "lon": -74.0008198 }, + { "lat": 40.8823213, "lon": -74.0007825 }, + { "lat": 40.8828820, "lon": -74.0004480 }, + { "lat": 40.8833620, "lon": -74.0001900 }, + { "lat": 40.8834880, "lon": -74.0001410 }, + { "lat": 40.8836401, "lon": -74.0000698 }, + { "lat": 40.8837570, "lon": -74.0000970 }, + { "lat": 40.8841350, "lon": -74.0001310 }, + { "lat": 40.8842490, "lon": -74.0001230 }, + { "lat": 40.8843236, "lon": -74.0000462 }, + { "lat": 40.8844090, "lon": -74.0000800 }, + { "lat": 40.8845160, "lon": -74.0000280 }, + { "lat": 40.8871530, "lon": -73.9985700 }, + { "lat": 40.8872146, "lon": -73.9984952 }, + { "lat": 40.8876751, "lon": -73.9978128 } + ], + "tags": { + "highway": "residential", + "name": "Country Club Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Country Club", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11569293, + "bounds": { + "minlat": 40.8720530, + "minlon": -73.9888090, + "maxlat": 40.8734720, + "maxlon": -73.9863660 + }, + "nodes": [ + 103156926, + 103156927, + 103156929, + 103156931, + 103156932, + 103156933, + 8076425398, + 103156934 + ], + "geometry": [ + { "lat": 40.8734720, "lon": -73.9888090 }, + { "lat": 40.8725061, "lon": -73.9872894 }, + { "lat": 40.8724060, "lon": -73.9871380 }, + { "lat": 40.8722650, "lon": -73.9869640 }, + { "lat": 40.8722170, "lon": -73.9868770 }, + { "lat": 40.8721880, "lon": -73.9867980 }, + { "lat": 40.8721030, "lon": -73.9865260 }, + { "lat": 40.8720530, "lon": -73.9863660 } + ], + "tags": { + "highway": "residential", + "name": "Ray Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ray", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11569294, + "bounds": { + "minlat": 40.8407701, + "minlon": -74.0062680, + "maxlat": 40.8411420, + "maxlon": -74.0056451 + }, + "nodes": [ + 103156937, + 12016147252, + 103156939 + ], + "geometry": [ + { "lat": 40.8407701, "lon": -74.0056451 }, + { "lat": 40.8408142, "lon": -74.0057190 }, + { "lat": 40.8411420, "lon": -74.0062680 } + ], + "tags": { + "highway": "unclassified", + "name": "Ray Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ray", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11569296, + "bounds": { + "minlat": 40.8731750, + "minlon": -73.9890150, + "maxlat": 40.8737290, + "maxlon": -73.9886310 + }, + "nodes": [ + 103156941, + 103156926, + 103156943 + ], + "geometry": [ + { "lat": 40.8731750, "lon": -73.9890150 }, + { "lat": 40.8734720, "lon": -73.9888090 }, + { "lat": 40.8737290, "lon": -73.9886310 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Ray Avenue", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ray", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11569300, + "bounds": { + "minlat": 40.8325890, + "minlon": -73.9969146, + "maxlat": 40.8358161, + "maxlon": -73.9915517 + }, + "nodes": [ + 103147986, + 13527758477, + 7247225818, + 103156947, + 103156948, + 103156949, + 103156950, + 103156951, + 103156953, + 103156955, + 103156957, + 103156959, + 103156961, + 103156963, + 103156965, + 103156967, + 103156969, + 103156970, + 103156971, + 103156972, + 103156973, + 103156974, + 103156975, + 13524441807, + 103156976, + 103156980, + 13524441806, + 103156981, + 103156982 + ], + "geometry": [ + { "lat": 40.8325890, "lon": -73.9915517 }, + { "lat": 40.8326396, "lon": -73.9916824 }, + { "lat": 40.8327401, "lon": -73.9919416 }, + { "lat": 40.8331218, "lon": -73.9929266 }, + { "lat": 40.8331223, "lon": -73.9929941 }, + { "lat": 40.8331260, "lon": -73.9931080 }, + { "lat": 40.8331250, "lon": -73.9932100 }, + { "lat": 40.8331070, "lon": -73.9933190 }, + { "lat": 40.8330720, "lon": -73.9934210 }, + { "lat": 40.8330290, "lon": -73.9935050 }, + { "lat": 40.8327580, "lon": -73.9940280 }, + { "lat": 40.8327370, "lon": -73.9941080 }, + { "lat": 40.8327310, "lon": -73.9941800 }, + { "lat": 40.8327360, "lon": -73.9942530 }, + { "lat": 40.8327560, "lon": -73.9943330 }, + { "lat": 40.8327880, "lon": -73.9944000 }, + { "lat": 40.8328250, "lon": -73.9944500 }, + { "lat": 40.8328770, "lon": -73.9944940 }, + { "lat": 40.8329370, "lon": -73.9945230 }, + { "lat": 40.8330010, "lon": -73.9945310 }, + { "lat": 40.8330690, "lon": -73.9945170 }, + { "lat": 40.8339554, "lon": -73.9940720 }, + { "lat": 40.8340475, "lon": -73.9940403 }, + { "lat": 40.8341071, "lon": -73.9940361 }, + { "lat": 40.8341674, "lon": -73.9940645 }, + { "lat": 40.8342310, "lon": -73.9941502 }, + { "lat": 40.8342862, "lon": -73.9942524 }, + { "lat": 40.8354930, "lon": -73.9964850 }, + { "lat": 40.8358161, "lon": -73.9969146 } + ], + "tags": { + "highway": "residential", + "name": "Ray Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ray", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11569318, + "bounds": { + "minlat": 40.8518620, + "minlon": -73.9796150, + "maxlat": 40.8543307, + "maxlon": -73.9771891 + }, + "nodes": [ + 103157078, + 103133485, + 103157080, + 103157082 + ], + "geometry": [ + { "lat": 40.8518620, "lon": -73.9796150 }, + { "lat": 40.8532870, "lon": -73.9782060 }, + { "lat": 40.8538110, "lon": -73.9776880 }, + { "lat": 40.8543307, "lon": -73.9771891 } + ], + "tags": { + "highway": "residential", + "name": "Ann Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ann", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11569368, + "bounds": { + "minlat": 40.8579778, + "minlon": -73.9717684, + "maxlat": 40.8595707, + "maxlon": -73.9700971 + }, + "nodes": [ + 299386482, + 12020552529, + 12020552532, + 103157399, + 12020552531, + 12020552530, + 7407010395, + 103157401 + ], + "geometry": [ + { "lat": 40.8579778, "lon": -73.9717684 }, + { "lat": 40.8586459, "lon": -73.9710674 }, + { "lat": 40.8586662, "lon": -73.9710461 }, + { "lat": 40.8587049, "lon": -73.9710056 }, + { "lat": 40.8587680, "lon": -73.9709393 }, + { "lat": 40.8587866, "lon": -73.9709198 }, + { "lat": 40.8591895, "lon": -73.9704971 }, + { "lat": 40.8595707, "lon": -73.9700971 } + ], + "tags": { + "highway": "residential", + "name": "South Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11569394, + "bounds": { + "minlat": 40.8734051, + "minlon": -73.9582909, + "maxlat": 40.8743817, + "maxlon": -73.9573425 + }, + "nodes": [ + 103157607, + 103157609, + 103157611, + 9348848236, + 103157612, + 103157613, + 103157614, + 103157615, + 103157616, + 103157617, + 103153330 + ], + "geometry": [ + { "lat": 40.8734051, "lon": -73.9582909 }, + { "lat": 40.8734749, "lon": -73.9582837 }, + { "lat": 40.8736260, "lon": -73.9581670 }, + { "lat": 40.8736761, "lon": -73.9581261 }, + { "lat": 40.8741051, "lon": -73.9577763 }, + { "lat": 40.8742460, "lon": -73.9576365 }, + { "lat": 40.8742773, "lon": -73.9576026 }, + { "lat": 40.8743096, "lon": -73.9575616 }, + { "lat": 40.8743423, "lon": -73.9575073 }, + { "lat": 40.8743639, "lon": -73.9574503 }, + { "lat": 40.8743817, "lon": -73.9573425 } + ], + "tags": { + "highway": "residential", + "name": "Bolz Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bolz", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11569401, + "bounds": { + "minlat": 40.8719100, + "minlon": -74.0014850, + "maxlat": 40.8729503, + "maxlon": -74.0003635 + }, + "nodes": [ + 103157642, + 103157644, + 103157646, + 103157647, + 103144209, + 103157648, + 103157649, + 6536061773, + 4469448609, + 4469448621, + 103157650 + ], + "geometry": [ + { "lat": 40.8719100, "lon": -74.0014850 }, + { "lat": 40.8719170, "lon": -74.0014410 }, + { "lat": 40.8719380, "lon": -74.0013810 }, + { "lat": 40.8723380, "lon": -74.0007760 }, + { "lat": 40.8723585, "lon": -74.0007497 }, + { "lat": 40.8724840, "lon": -74.0006520 }, + { "lat": 40.8726983, "lon": -74.0004798 }, + { "lat": 40.8727413, "lon": -74.0004494 }, + { "lat": 40.8728158, "lon": -74.0003967 }, + { "lat": 40.8729053, "lon": -74.0003646 }, + { "lat": 40.8729503, "lon": -74.0003635 } + ], + "tags": { + "highway": "residential", + "name": "Kilmoray Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kilmoray", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11569406, + "bounds": { + "minlat": 40.8261224, + "minlon": -74.0118390, + "maxlat": 40.8270463, + "maxlon": -74.0071898 + }, + "nodes": [ + 103139532, + 103157658, + 103157660, + 103157662, + 103157664, + 13527754326, + 103157666, + 13527754328, + 103157668, + 8413699454, + 5748432834, + 813980911 + ], + "geometry": [ + { "lat": 40.8261224, "lon": -74.0071898 }, + { "lat": 40.8268160, "lon": -74.0090160 }, + { "lat": 40.8270079, "lon": -74.0094276 }, + { "lat": 40.8270406, "lon": -74.0095317 }, + { "lat": 40.8270463, "lon": -74.0096276 }, + { "lat": 40.8269496, "lon": -74.0100424 }, + { "lat": 40.8269337, "lon": -74.0101106 }, + { "lat": 40.8269365, "lon": -74.0102344 }, + { "lat": 40.8269369, "lon": -74.0102505 }, + { "lat": 40.8269188, "lon": -74.0104460 }, + { "lat": 40.8269245, "lon": -74.0106201 }, + { "lat": 40.8269952, "lon": -74.0118390 } + ], + "tags": { + "highway": "residential", + "name": "Pleasant View Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pleasant View", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11569438, + "bounds": { + "minlat": 40.8651286, + "minlon": -73.9592205, + "maxlat": 40.8671704, + "maxlon": -73.9556619 + }, + "nodes": [ + 103117840, + 103157821, + 103157823, + 103157825 + ], + "geometry": [ + { "lat": 40.8671704, "lon": -73.9592205 }, + { "lat": 40.8663323, "lon": -73.9577686 }, + { "lat": 40.8659170, "lon": -73.9570403 }, + { "lat": 40.8651286, "lon": -73.9556619 } + ], + "tags": { + "highway": "residential", + "name": "Bayview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bayview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11569489, + "bounds": { + "minlat": 40.8364562, + "minlon": -73.9748596, + "maxlat": 40.8369094, + "maxlon": -73.9746048 + }, + "nodes": [ + 103158075, + 5108646921 + ], + "geometry": [ + { "lat": 40.8364562, "lon": -73.9748596 }, + { "lat": 40.8369094, "lon": -73.9746048 } + ], + "tags": { + "highway": "residential", + "name": "Duncan Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Duncan", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11569535, + "bounds": { + "minlat": 40.8773945, + "minlon": -74.0102867, + "maxlat": 40.8783967, + "maxlon": -74.0098797 + }, + "nodes": [ + 103158425, + 103158426 + ], + "geometry": [ + { "lat": 40.8773945, "lon": -74.0102867 }, + { "lat": 40.8783967, "lon": -74.0098797 } + ], + "tags": { + "highway": "residential", + "name": "Gail Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gail", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11569560, + "bounds": { + "minlat": 40.8167848, + "minlon": -73.9879060, + "maxlat": 40.8188027, + "maxlon": -73.9846273 + }, + "nodes": [ + 103158564, + 103158566, + 103111155, + 103158568 + ], + "geometry": [ + { "lat": 40.8167848, "lon": -73.9846273 }, + { "lat": 40.8177309, "lon": -73.9861919 }, + { "lat": 40.8181510, "lon": -73.9868586 }, + { "lat": 40.8188027, "lon": -73.9879060 } + ], + "tags": { + "highway": "residential", + "name": "Cortland Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cortland", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11569591, + "bounds": { + "minlat": 40.8756555, + "minlon": -74.0052196, + "maxlat": 40.8777325, + "maxlon": -74.0040540 + }, + "nodes": [ + 103158755, + 103118678, + 103158759 + ], + "geometry": [ + { "lat": 40.8756555, "lon": -74.0052196 }, + { "lat": 40.8762560, "lon": -74.0048450 }, + { "lat": 40.8777325, "lon": -74.0040540 } + ], + "tags": { + "highway": "residential", + "name": "Grant Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grant", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11569593, + "bounds": { + "minlat": 40.8776985, + "minlon": -74.0039540, + "maxlat": 40.8803650, + "maxlon": -74.0024620 + }, + "nodes": [ + 103158762, + 103158763 + ], + "geometry": [ + { "lat": 40.8776985, "lon": -74.0039540 }, + { "lat": 40.8803650, "lon": -74.0024620 } + ], + "tags": { + "highway": "residential", + "name": "Grant Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grant", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11569634, + "bounds": { + "minlat": 40.8793512, + "minlon": -74.0130792, + "maxlat": 40.8801595, + "maxlon": -74.0104813 + }, + "nodes": [ + 103159079, + 103159081 + ], + "geometry": [ + { "lat": 40.8793512, "lon": -74.0104813 }, + { "lat": 40.8801595, "lon": -74.0130792 } + ], + "tags": { + "highway": "residential", + "name": "Dohrman Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dohrman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11569652, + "bounds": { + "minlat": 40.8345550, + "minlon": -74.0070670, + "maxlat": 40.8350070, + "maxlon": -74.0063030 + }, + "nodes": [ + 103159191, + 103159192 + ], + "geometry": [ + { "lat": 40.8350070, "lon": -74.0070670 }, + { "lat": 40.8345550, "lon": -74.0063030 } + ], + "tags": { + "highway": "residential", + "name": "Hillside Court", + "name_1": "H Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillside", + "tiger:name_base_1": "H", + "tiger:name_type": "Ct", + "tiger:name_type_1": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11569665, + "bounds": { + "minlat": 40.8322850, + "minlon": -74.0077261, + "maxlat": 40.8408349, + "maxlon": -74.0002749 + }, + "nodes": [ + 103159268, + 12016315208, + 12016315207, + 6339838590, + 6339838588, + 12410380687, + 6339838586, + 12410380685, + 6339836784, + 12410380683, + 12016315206, + 12016315205, + 12016315204, + 6339836773, + 103159269, + 103159271, + 103159273, + 12016315203, + 12016315202, + 12016315201, + 103159275, + 12410380676, + 12410380678, + 6339836781, + 12410380674, + 12410380671, + 12410380619, + 12410380669, + 12016315200, + 12410380666, + 12410380664, + 12410380661, + 7990407900, + 103159277, + 103159278, + 103159279, + 12016315194, + 12016315196, + 103159280, + 12016315197, + 12016315188, + 12016315190, + 103159281, + 12016315189, + 12016315187, + 12016315186, + 103159283, + 12016315185, + 12016315184, + 103159285, + 12016315183, + 12016315182, + 103159287, + 12016315181, + 12016315179, + 103159289, + 12016315180, + 103159292, + 103159295, + 12016315174, + 12016315173, + 12016315172, + 12016315171, + 103159297, + 12016315170, + 12016315169, + 103159299, + 12016293168, + 103156986, + 103159301, + 12016293163, + 12016293162, + 12016293161, + 103159302, + 12016293160, + 12016293159, + 103159303, + 12016293158, + 103159304, + 12016293157, + 12016293136, + 103159305, + 12016293135, + 12016293134, + 12016293139, + 103159306, + 12016293141, + 12016293140, + 12016293146, + 103159307, + 12016293148, + 12016293147, + 440215470 + ], + "geometry": [ + { "lat": 40.8322850, "lon": -74.0077261 }, + { "lat": 40.8323315, "lon": -74.0076800 }, + { "lat": 40.8323606, "lon": -74.0076511 }, + { "lat": 40.8324362, "lon": -74.0075761 }, + { "lat": 40.8325369, "lon": -74.0074822 }, + { "lat": 40.8325798, "lon": -74.0074396 }, + { "lat": 40.8326244, "lon": -74.0073953 }, + { "lat": 40.8326394, "lon": -74.0073801 }, + { "lat": 40.8327209, "lon": -74.0072970 }, + { "lat": 40.8327460, "lon": -74.0072723 }, + { "lat": 40.8329654, "lon": -74.0070563 }, + { "lat": 40.8329928, "lon": -74.0070259 }, + { "lat": 40.8330224, "lon": -74.0069948 }, + { "lat": 40.8330505, "lon": -74.0069609 }, + { "lat": 40.8330666, "lon": -74.0069364 }, + { "lat": 40.8330861, "lon": -74.0069063 }, + { "lat": 40.8331049, "lon": -74.0068684 }, + { "lat": 40.8331551, "lon": -74.0067713 }, + { "lat": 40.8331780, "lon": -74.0067342 }, + { "lat": 40.8331958, "lon": -74.0067081 }, + { "lat": 40.8332165, "lon": -74.0066835 }, + { "lat": 40.8332989, "lon": -74.0066002 }, + { "lat": 40.8334685, "lon": -74.0064287 }, + { "lat": 40.8336006, "lon": -74.0062951 }, + { "lat": 40.8336436, "lon": -74.0062525 }, + { "lat": 40.8337702, "lon": -74.0061267 }, + { "lat": 40.8339523, "lon": -74.0059459 }, + { "lat": 40.8339725, "lon": -74.0059260 }, + { "lat": 40.8340376, "lon": -74.0058606 }, + { "lat": 40.8341014, "lon": -74.0057962 }, + { "lat": 40.8341411, "lon": -74.0057554 }, + { "lat": 40.8343166, "lon": -74.0055749 }, + { "lat": 40.8345087, "lon": -74.0053774 }, + { "lat": 40.8350113, "lon": -74.0048581 }, + { "lat": 40.8355468, "lon": -74.0043519 }, + { "lat": 40.8361169, "lon": -74.0038054 }, + { "lat": 40.8361591, "lon": -74.0037649 }, + { "lat": 40.8367478, "lon": -74.0032003 }, + { "lat": 40.8367920, "lon": -74.0031580 }, + { "lat": 40.8368284, "lon": -74.0031228 }, + { "lat": 40.8372502, "lon": -74.0027160 }, + { "lat": 40.8372854, "lon": -74.0026807 }, + { "lat": 40.8373325, "lon": -74.0026334 }, + { "lat": 40.8373791, "lon": -74.0025855 }, + { "lat": 40.8374183, "lon": -74.0025448 }, + { "lat": 40.8375025, "lon": -74.0024650 }, + { "lat": 40.8375504, "lon": -74.0024185 }, + { "lat": 40.8375977, "lon": -74.0023797 }, + { "lat": 40.8376362, "lon": -74.0023489 }, + { "lat": 40.8376824, "lon": -74.0023151 }, + { "lat": 40.8377207, "lon": -74.0022914 }, + { "lat": 40.8377566, "lon": -74.0022722 }, + { "lat": 40.8377944, "lon": -74.0022534 }, + { "lat": 40.8378350, "lon": -74.0022367 }, + { "lat": 40.8378795, "lon": -74.0022206 }, + { "lat": 40.8379410, "lon": -74.0022027 }, + { "lat": 40.8379759, "lon": -74.0021949 }, + { "lat": 40.8380133, "lon": -74.0021875 }, + { "lat": 40.8380903, "lon": -74.0021741 }, + { "lat": 40.8381489, "lon": -74.0021698 }, + { "lat": 40.8382030, "lon": -74.0021679 }, + { "lat": 40.8382539, "lon": -74.0021676 }, + { "lat": 40.8383057, "lon": -74.0021704 }, + { "lat": 40.8384925, "lon": -74.0021816 }, + { "lat": 40.8385514, "lon": -74.0021836 }, + { "lat": 40.8386023, "lon": -74.0021820 }, + { "lat": 40.8386563, "lon": -74.0021752 }, + { "lat": 40.8387084, "lon": -74.0021656 }, + { "lat": 40.8387753, "lon": -74.0021481 }, + { "lat": 40.8388319, "lon": -74.0021288 }, + { "lat": 40.8388889, "lon": -74.0021073 }, + { "lat": 40.8389395, "lon": -74.0020857 }, + { "lat": 40.8389857, "lon": -74.0020635 }, + { "lat": 40.8390274, "lon": -74.0020373 }, + { "lat": 40.8390747, "lon": -74.0020040 }, + { "lat": 40.8391224, "lon": -74.0019668 }, + { "lat": 40.8391673, "lon": -74.0019295 }, + { "lat": 40.8393372, "lon": -74.0017642 }, + { "lat": 40.8393851, "lon": -74.0017175 }, + { "lat": 40.8394328, "lon": -74.0016701 }, + { "lat": 40.8398851, "lon": -74.0012204 }, + { "lat": 40.8399315, "lon": -74.0011744 }, + { "lat": 40.8399782, "lon": -74.0011274 }, + { "lat": 40.8401487, "lon": -74.0009559 }, + { "lat": 40.8401669, "lon": -74.0009376 }, + { "lat": 40.8402333, "lon": -74.0008709 }, + { "lat": 40.8402960, "lon": -74.0008094 }, + { "lat": 40.8403329, "lon": -74.0007732 }, + { "lat": 40.8404300, "lon": -74.0006781 }, + { "lat": 40.8404792, "lon": -74.0006299 }, + { "lat": 40.8405269, "lon": -74.0005823 }, + { "lat": 40.8405517, "lon": -74.0005575 }, + { "lat": 40.8408349, "lon": -74.0002749 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxweight": "4 st", + "name": "Prospect Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Prospect", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11569670, + "bounds": { + "minlat": 40.8093026, + "minlon": -73.9964130, + "maxlat": 40.8109715, + "maxlon": -73.9925577 + }, + "nodes": [ + 103159352, + 103159355, + 103159358, + 7016571778, + 7627519044, + 103159360, + 7630335377, + 103159362, + 103159364, + 103159366, + 103159368, + 103159370, + 440208172 + ], + "geometry": [ + { "lat": 40.8093026, "lon": -73.9925577 }, + { "lat": 40.8095179, "lon": -73.9930967 }, + { "lat": 40.8095610, "lon": -73.9932138 }, + { "lat": 40.8096632, "lon": -73.9934721 }, + { "lat": 40.8096814, "lon": -73.9935278 }, + { "lat": 40.8098272, "lon": -73.9939742 }, + { "lat": 40.8099878, "lon": -73.9942923 }, + { "lat": 40.8101260, "lon": -73.9945660 }, + { "lat": 40.8102580, "lon": -73.9947590 }, + { "lat": 40.8103870, "lon": -73.9949760 }, + { "lat": 40.8105370, "lon": -73.9952710 }, + { "lat": 40.8108420, "lon": -73.9960492 }, + { "lat": 40.8109715, "lon": -73.9964130 } + ], + "tags": { + "highway": "residential", + "name": "Prospect Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Prospect", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11569675, + "bounds": { + "minlat": 40.8174900, + "minlon": -74.0075489, + "maxlat": 40.8191146, + "maxlon": -74.0042983 + }, + "nodes": [ + 103232664, + 12456223796, + 8530416418, + 103159406, + 103159407, + 103159408, + 103146290, + 7259896920 + ], + "geometry": [ + { "lat": 40.8174900, "lon": -74.0042983 }, + { "lat": 40.8174936, "lon": -74.0043740 }, + { "lat": 40.8175009, "lon": -74.0044198 }, + { "lat": 40.8177270, "lon": -74.0048518 }, + { "lat": 40.8180066, "lon": -74.0053878 }, + { "lat": 40.8182170, "lon": -74.0057974 }, + { "lat": 40.8185747, "lon": -74.0064679 }, + { "lat": 40.8191146, "lon": -74.0075489 } + ], + "tags": { + "highway": "residential", + "name": "Prospect Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Prospect", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11569779, + "bounds": { + "minlat": 40.8373105, + "minlon": -73.9883737, + "maxlat": 40.8390132, + "maxlon": -73.9853908 + }, + "nodes": [ + 8169986178, + 103160745, + 103142903, + 103160746, + 103160748, + 103160750, + 103148236, + 7527301270 + ], + "geometry": [ + { "lat": 40.8373105, "lon": -73.9853908 }, + { "lat": 40.8376880, "lon": -73.9860590 }, + { "lat": 40.8380580, "lon": -73.9867170 }, + { "lat": 40.8382220, "lon": -73.9870070 }, + { "lat": 40.8384390, "lon": -73.9873910 }, + { "lat": 40.8386010, "lon": -73.9876790 }, + { "lat": 40.8389653, "lon": -73.9882872 }, + { "lat": 40.8390132, "lon": -73.9883737 } + ], + "tags": { + "highway": "residential", + "name": "Deerwood Road", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Deerwood", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11569790, + "bounds": { + "minlat": 40.8255665, + "minlon": -74.0028455, + "maxlat": 40.8262930, + "maxlon": -74.0015243 + }, + "nodes": [ + 103160865, + 103160867, + 103160870 + ], + "geometry": [ + { "lat": 40.8255665, "lon": -74.0015243 }, + { "lat": 40.8259208, "lon": -74.0021409 }, + { "lat": 40.8262930, "lon": -74.0028455 } + ], + "tags": { + "highway": "residential", + "name": "Meuter Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Meuter", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11569797, + "bounds": { + "minlat": 40.8416280, + "minlon": -73.9837790, + "maxlat": 40.8424540, + "maxlon": -73.9823470 + }, + "nodes": [ + 103160938, + 103160940, + 103160942 + ], + "geometry": [ + { "lat": 40.8416280, "lon": -73.9823470 }, + { "lat": 40.8420410, "lon": -73.9830630 }, + { "lat": 40.8424540, "lon": -73.9837790 } + ], + "tags": { + "highway": "residential", + "name": "Palisades Boulevard", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisades", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11569810, + "bounds": { + "minlat": 40.8456255, + "minlon": -74.0139344, + "maxlat": 40.8477441, + "maxlon": -74.0122029 + }, + "nodes": [ + 298566238, + 10936311830, + 10936311828, + 10936282602, + 298566253, + 10936311813, + 10936311834, + 298566240, + 10936311824, + 298566254, + 10936282601, + 298566242, + 10936311815, + 298566255, + 10936311829, + 10936311835, + 298566244, + 10936311810, + 10936282603, + 298566256, + 10936311823, + 10936311809, + 298566246, + 10936311832, + 298566257, + 10936311811, + 10936311821, + 10936311826, + 10936336944, + 298566248, + 10936336936, + 10936336930, + 10936336938, + 10936336931, + 10936336915, + 298566258, + 10936336937, + 10936336927, + 298566250, + 10936336953, + 10936336926, + 298566259, + 8219440392, + 298566252, + 10936336922 + ], + "geometry": [ + { "lat": 40.8456255, "lon": -74.0122029 }, + { "lat": 40.8456466, "lon": -74.0122231 }, + { "lat": 40.8456738, "lon": -74.0122551 }, + { "lat": 40.8456980, "lon": -74.0122904 }, + { "lat": 40.8457179, "lon": -74.0123284 }, + { "lat": 40.8457342, "lon": -74.0123668 }, + { "lat": 40.8457474, "lon": -74.0124071 }, + { "lat": 40.8457592, "lon": -74.0124513 }, + { "lat": 40.8457680, "lon": -74.0124957 }, + { "lat": 40.8457750, "lon": -74.0125359 }, + { "lat": 40.8458151, "lon": -74.0128117 }, + { "lat": 40.8458266, "lon": -74.0128784 }, + { "lat": 40.8458415, "lon": -74.0129426 }, + { "lat": 40.8458587, "lon": -74.0130007 }, + { "lat": 40.8458791, "lon": -74.0130586 }, + { "lat": 40.8458998, "lon": -74.0131110 }, + { "lat": 40.8459255, "lon": -74.0131649 }, + { "lat": 40.8459513, "lon": -74.0132079 }, + { "lat": 40.8459794, "lon": -74.0132489 }, + { "lat": 40.8460085, "lon": -74.0132883 }, + { "lat": 40.8460452, "lon": -74.0133328 }, + { "lat": 40.8460815, "lon": -74.0133723 }, + { "lat": 40.8461212, "lon": -74.0134079 }, + { "lat": 40.8461632, "lon": -74.0134410 }, + { "lat": 40.8462037, "lon": -74.0134669 }, + { "lat": 40.8462455, "lon": -74.0134896 }, + { "lat": 40.8462856, "lon": -74.0135079 }, + { "lat": 40.8470007, "lon": -74.0138295 }, + { "lat": 40.8470347, "lon": -74.0138449 }, + { "lat": 40.8470713, "lon": -74.0138607 }, + { "lat": 40.8471025, "lon": -74.0138730 }, + { "lat": 40.8471351, "lon": -74.0138848 }, + { "lat": 40.8471700, "lon": -74.0138949 }, + { "lat": 40.8472063, "lon": -74.0139045 }, + { "lat": 40.8472397, "lon": -74.0139124 }, + { "lat": 40.8472725, "lon": -74.0139193 }, + { "lat": 40.8473109, "lon": -74.0139262 }, + { "lat": 40.8473497, "lon": -74.0139315 }, + { "lat": 40.8473897, "lon": -74.0139344 }, + { "lat": 40.8474330, "lon": -74.0139338 }, + { "lat": 40.8474828, "lon": -74.0139291 }, + { "lat": 40.8475411, "lon": -74.0139200 }, + { "lat": 40.8475953, "lon": -74.0139096 }, + { "lat": 40.8476612, "lon": -74.0138937 }, + { "lat": 40.8477441, "lon": -74.0138654 } + ], + "tags": { + "highway": "secondary", + "name": "Challenger Road", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Challenger", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11569829, + "bounds": { + "minlat": 40.8762888, + "minlon": -73.9860476, + "maxlat": 40.8775239, + "maxlon": -73.9838646 + }, + "nodes": [ + 103161322, + 8171514843, + 103134457, + 12022105760, + 12022105761, + 103161326 + ], + "geometry": [ + { "lat": 40.8775239, "lon": -73.9860476 }, + { "lat": 40.8773369, "lon": -73.9857161 }, + { "lat": 40.8772331, "lon": -73.9855320 }, + { "lat": 40.8763854, "lon": -73.9840351 }, + { "lat": 40.8763371, "lon": -73.9839499 }, + { "lat": 40.8762888, "lon": -73.9838646 } + ], + "tags": { + "highway": "residential", + "name": "East Sheffield Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sheffield", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11569831, + "bounds": { + "minlat": 40.8738470, + "minlon": -73.9837834, + "maxlat": 40.8763671, + "maxlon": -73.9792150 + }, + "nodes": [ + 103161330, + 12022105764, + 12022105759, + 103161332, + 103161333, + 103134251 + ], + "geometry": [ + { "lat": 40.8763671, "lon": -73.9837834 }, + { "lat": 40.8763194, "lon": -73.9836990 }, + { "lat": 40.8762998, "lon": -73.9836643 }, + { "lat": 40.8756851, "lon": -73.9825632 }, + { "lat": 40.8753780, "lon": -73.9819944 }, + { "lat": 40.8738470, "lon": -73.9792150 } + ], + "tags": { + "highway": "residential", + "name": "East Sheffield Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sheffield", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11569894, + "bounds": { + "minlat": 40.8146470, + "minlon": -73.9860319, + "maxlat": 40.8155710, + "maxlon": -73.9851429 + }, + "nodes": [ + 103161839, + 103111132 + ], + "geometry": [ + { "lat": 40.8146470, "lon": -73.9860319 }, + { "lat": 40.8155710, "lon": -73.9851429 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Esplanade Place", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Esplanade", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11569901, + "bounds": { + "minlat": 40.8159861, + "minlon": -73.9865376, + "maxlat": 40.8177309, + "maxlon": -73.9855982 + }, + "nodes": [ + 103158566, + 6555798913, + 6555798912, + 103161891, + 103161889, + 103161887, + 103161885, + 103161883, + 6555798911, + 103161881, + 103161879, + 103161877, + 103161875, + 103161873, + 103161871, + 103111134 + ], + "geometry": [ + { "lat": 40.8177309, "lon": -73.9861919 }, + { "lat": 40.8174398, "lon": -73.9864478 }, + { "lat": 40.8173860, "lon": -73.9864933 }, + { "lat": 40.8173266, "lon": -73.9865289 }, + { "lat": 40.8172530, "lon": -73.9865376 }, + { "lat": 40.8172089, "lon": -73.9865135 }, + { "lat": 40.8171729, "lon": -73.9864719 }, + { "lat": 40.8166329, "lon": -73.9856511 }, + { "lat": 40.8165986, "lon": -73.9856203 }, + { "lat": 40.8165593, "lon": -73.9856022 }, + { "lat": 40.8165096, "lon": -73.9855982 }, + { "lat": 40.8164490, "lon": -73.9856090 }, + { "lat": 40.8161447, "lon": -73.9857081 }, + { "lat": 40.8160513, "lon": -73.9857443 }, + { "lat": 40.8160036, "lon": -73.9857638 }, + { "lat": 40.8159861, "lon": -73.9857782 } + ], + "tags": { + "highway": "residential", + "name": "Oncrest Terrace", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oncrest", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11569903, + "bounds": { + "minlat": 40.8150741, + "minlon": -73.9873399, + "maxlat": 40.8160217, + "maxlon": -73.9858348 + }, + "nodes": [ + 931976119, + 931976125, + 931976129, + 931976135, + 103161894, + 103111138 + ], + "geometry": [ + { "lat": 40.8152669, "lon": -73.9873399 }, + { "lat": 40.8150741, "lon": -73.9868318 }, + { "lat": 40.8150741, "lon": -73.9867808 }, + { "lat": 40.8150863, "lon": -73.9867272 }, + { "lat": 40.8151187, "lon": -73.9866870 }, + { "lat": 40.8160217, "lon": -73.9858348 } + ], + "tags": { + "highway": "residential", + "name": "Oncrest Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oncrest", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11569918, + "bounds": { + "minlat": 40.8640270, + "minlon": -74.0231850, + "maxlat": 40.8647687, + "maxlon": -74.0181100 + }, + "nodes": [ + 103162015, + 103162012, + 103162010, + 103162009 + ], + "geometry": [ + { "lat": 40.8640270, "lon": -74.0181100 }, + { "lat": 40.8642590, "lon": -74.0197190 }, + { "lat": 40.8644840, "lon": -74.0212710 }, + { "lat": 40.8647687, "lon": -74.0231850 } + ], + "tags": { + "highway": "residential", + "name": "Edwin Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edwin", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11569931, + "bounds": { + "minlat": 40.8331203, + "minlon": -73.9851431, + "maxlat": 40.8336905, + "maxlon": -73.9843381 + }, + "nodes": [ + 103162185, + 660545999, + 103162102 + ], + "geometry": [ + { "lat": 40.8336905, "lon": -73.9851431 }, + { "lat": 40.8335525, "lon": -73.9850975 }, + { "lat": 40.8331203, "lon": -73.9843381 } + ], + "tags": { + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "1", + "name": "Columbia Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11569933, + "bounds": { + "minlat": 40.8310848, + "minlon": -73.9842892, + "maxlat": 40.8332257, + "maxlon": -73.9791374 + }, + "nodes": [ + 103162155, + 103162156, + 103162157, + 6964853587, + 103162159, + 7508496617, + 103162160, + 103162161, + 103162163, + 103162164, + 103162165, + 103162166, + 103162167, + 103162170, + 103162172, + 103162174, + 103162176, + 103162179, + 103149469, + 7501863579, + 7499421520, + 103162181 + ], + "geometry": [ + { "lat": 40.8310848, "lon": -73.9791374 }, + { "lat": 40.8311977, "lon": -73.9794017 }, + { "lat": 40.8312847, "lon": -73.9795977 }, + { "lat": 40.8313598, "lon": -73.9797857 }, + { "lat": 40.8313677, "lon": -73.9798013 }, + { "lat": 40.8313961, "lon": -73.9799043 }, + { "lat": 40.8314276, "lon": -73.9800183 }, + { "lat": 40.8314787, "lon": -73.9802504 }, + { "lat": 40.8315187, "lon": -73.9805158 }, + { "lat": 40.8315678, "lon": -73.9807995 }, + { "lat": 40.8316145, "lon": -73.9810854 }, + { "lat": 40.8316606, "lon": -73.9813043 }, + { "lat": 40.8317115, "lon": -73.9814602 }, + { "lat": 40.8318289, "lon": -73.9817701 }, + { "lat": 40.8319466, "lon": -73.9819918 }, + { "lat": 40.8320259, "lon": -73.9821506 }, + { "lat": 40.8321676, "lon": -73.9824039 }, + { "lat": 40.8323389, "lon": -73.9827100 }, + { "lat": 40.8326828, "lon": -73.9833127 }, + { "lat": 40.8329577, "lon": -73.9838072 }, + { "lat": 40.8330116, "lon": -73.9839041 }, + { "lat": 40.8332257, "lon": -73.9842892 } + ], + "tags": { + "Bergen_County_database_ref": "119", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000119", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "1", + "name": "Columbia Avenue", + "oneway": "yes", + "ref": "CR 119", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11569935, + "bounds": { + "minlat": 40.8349678, + "minlon": -73.9905137, + "maxlat": 40.8358485, + "maxlon": -73.9875959 + }, + "nodes": [ + 103162200, + 103162202, + 103142887, + 5340732824, + 2814636435, + 103162205, + 103148225, + 13527755875, + 103162207, + 103162209, + 103162212, + 7501837152, + 103162214, + 103162216 + ], + "geometry": [ + { "lat": 40.8349678, "lon": -73.9875959 }, + { "lat": 40.8350007, "lon": -73.9878199 }, + { "lat": 40.8350724, "lon": -73.9881276 }, + { "lat": 40.8351626, "lon": -73.9884645 }, + { "lat": 40.8352370, "lon": -73.9887525 }, + { "lat": 40.8352765, "lon": -73.9889083 }, + { "lat": 40.8355010, "lon": -73.9897260 }, + { "lat": 40.8355342, "lon": -73.9898245 }, + { "lat": 40.8355953, "lon": -73.9900055 }, + { "lat": 40.8356476, "lon": -73.9901424 }, + { "lat": 40.8357224, "lon": -73.9902936 }, + { "lat": 40.8357339, "lon": -73.9903145 }, + { "lat": 40.8357840, "lon": -73.9904056 }, + { "lat": 40.8358485, "lon": -73.9905137 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Columbia Avenue", + "ref": "NJ 5", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_base_1": "State Route 5", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11569938, + "bounds": { + "minlat": 40.8228155, + "minlon": -73.9808000, + "maxlat": 40.8233747, + "maxlon": -73.9798143 + }, + "nodes": [ + 440208773, + 103162247 + ], + "geometry": [ + { "lat": 40.8228155, "lon": -73.9798143 }, + { "lat": 40.8233747, "lon": -73.9808000 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Columbia Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11569945, + "bounds": { + "minlat": 40.8433450, + "minlon": -74.0048715, + "maxlat": 40.8433629, + "maxlon": -74.0039734 + }, + "nodes": [ + 103248214, + 12016147172, + 12016147170, + 12016147171, + 103162301 + ], + "geometry": [ + { "lat": 40.8433450, "lon": -74.0039734 }, + { "lat": 40.8433474, "lon": -74.0040253 }, + { "lat": 40.8433602, "lon": -74.0047540 }, + { "lat": 40.8433609, "lon": -74.0047862 }, + { "lat": 40.8433629, "lon": -74.0048715 } + ], + "tags": { + "highway": "residential", + "name": "Columbia Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11569970, + "bounds": { + "minlat": 40.8356988, + "minlon": -73.9952578, + "maxlat": 40.8376148, + "maxlon": -73.9932870 + }, + "nodes": [ + 103162494, + 13524430694, + 13524430696, + 103162496, + 103162500, + 103162503, + 103162505, + 103162507, + 103162509, + 103162511, + 440215475, + 103162516, + 103162523, + 103162525, + 103162527, + 103162529, + 103162532 + ], + "geometry": [ + { "lat": 40.8356988, "lon": -73.9952578 }, + { "lat": 40.8357417, "lon": -73.9952253 }, + { "lat": 40.8357693, "lon": -73.9952032 }, + { "lat": 40.8359690, "lon": -73.9950487 }, + { "lat": 40.8361450, "lon": -73.9949490 }, + { "lat": 40.8364024, "lon": -73.9948333 }, + { "lat": 40.8368300, "lon": -73.9946310 }, + { "lat": 40.8369893, "lon": -73.9945326 }, + { "lat": 40.8371320, "lon": -73.9944110 }, + { "lat": 40.8373470, "lon": -73.9941760 }, + { "lat": 40.8374120, "lon": -73.9940930 }, + { "lat": 40.8374430, "lon": -73.9940530 }, + { "lat": 40.8375300, "lon": -73.9938880 }, + { "lat": 40.8375640, "lon": -73.9937820 }, + { "lat": 40.8375920, "lon": -73.9936310 }, + { "lat": 40.8376020, "lon": -73.9934890 }, + { "lat": 40.8376148, "lon": -73.9932870 } + ], + "tags": { + "highway": "residential", + "name": "Shetland Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Shetland", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11569976, + "bounds": { + "minlat": 40.8489217, + "minlon": -73.9692100, + "maxlat": 40.8491459, + "maxlon": -73.9683585 + }, + "nodes": [ + 103134225, + 5362414824, + 5362414822, + 103162606 + ], + "geometry": [ + { "lat": 40.8489217, "lon": -73.9683585 }, + { "lat": 40.8489419, "lon": -73.9684316 }, + { "lat": 40.8491191, "lon": -73.9691086 }, + { "lat": 40.8491459, "lon": -73.9692100 } + ], + "tags": { + "highway": "residential", + "name": "Monument Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Monument", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11569981, + "bounds": { + "minlat": 40.8714220, + "minlon": -73.9780778, + "maxlat": 40.8727590, + "maxlon": -73.9767389 + }, + "nodes": [ + 103134266, + 392522321, + 392522322, + 392522307, + 392522308, + 103162693, + 103162695 + ], + "geometry": [ + { "lat": 40.8727590, "lon": -73.9767389 }, + { "lat": 40.8726747, "lon": -73.9769277 }, + { "lat": 40.8724021, "lon": -73.9771938 }, + { "lat": 40.8722723, "lon": -73.9772710 }, + { "lat": 40.8720711, "lon": -73.9773397 }, + { "lat": 40.8716622, "lon": -73.9777688 }, + { "lat": 40.8714220, "lon": -73.9780778 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Fox Run Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fox Run", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11569982, + "bounds": { + "minlat": 40.8712338, + "minlon": -73.9780778, + "maxlat": 40.8716622, + "maxlon": -73.9775457 + }, + "nodes": [ + 103162695, + 103162706, + 103162708, + 103162693 + ], + "geometry": [ + { "lat": 40.8714220, "lon": -73.9780778 }, + { "lat": 40.8712338, "lon": -73.9778375 }, + { "lat": 40.8715064, "lon": -73.9775457 }, + { "lat": 40.8716622, "lon": -73.9777688 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Fox Run Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fox Run", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07631" + } +}, +{ + "type": "way", + "id": 11569986, + "bounds": { + "minlat": 40.8113855, + "minlon": -73.9928751, + "maxlat": 40.8129301, + "maxlon": -73.9903662 + }, + "nodes": [ + 103162783, + 103133187, + 7627519053, + 103118057, + 7620544887, + 7620544894, + 7620544885, + 10926790015, + 103162785, + 4205744823, + 103162788 + ], + "geometry": [ + { "lat": 40.8113855, "lon": -73.9928751 }, + { "lat": 40.8116561, "lon": -73.9924327 }, + { "lat": 40.8119061, "lon": -73.9920776 }, + { "lat": 40.8121290, "lon": -73.9917610 }, + { "lat": 40.8123218, "lon": -73.9914758 }, + { "lat": 40.8124321, "lon": -73.9913127 }, + { "lat": 40.8125972, "lon": -73.9910685 }, + { "lat": 40.8128545, "lon": -73.9906879 }, + { "lat": 40.8128791, "lon": -73.9906515 }, + { "lat": 40.8129218, "lon": -73.9905295 }, + { "lat": 40.8129301, "lon": -73.9903662 } + ], + "tags": { + "highway": "residential", + "name": "Laird Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Laird", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11569999, + "bounds": { + "minlat": 40.8733323, + "minlon": -74.0129993, + "maxlat": 40.8734795, + "maxlon": -74.0126746 + }, + "nodes": [ + 103162978, + 6592337704 + ], + "geometry": [ + { "lat": 40.8733323, "lon": -74.0126746 }, + { "lat": 40.8734795, "lon": -74.0129993 } + ], + "tags": { + "highway": "residential", + "name": "Fenimore Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fenimore", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11570005, + "bounds": { + "minlat": 40.8165980, + "minlon": -73.9882828, + "maxlat": 40.8174404, + "maxlon": -73.9874915 + }, + "nodes": [ + 103163014, + 7596426704, + 1060050599, + 103163017, + 103163018, + 103111151 + ], + "geometry": [ + { "lat": 40.8165980, "lon": -73.9882828 }, + { "lat": 40.8169123, "lon": -73.9880122 }, + { "lat": 40.8171286, "lon": -73.9878661 }, + { "lat": 40.8171786, "lon": -73.9878150 }, + { "lat": 40.8173258, "lon": -73.9875901 }, + { "lat": 40.8174404, "lon": -73.9874915 } + ], + "tags": { + "highway": "residential", + "name": "Cecelia Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cecelia", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11570010, + "bounds": { + "minlat": 40.8365674, + "minlon": -73.9932870, + "maxlat": 40.8376148, + "maxlon": -73.9928409 + }, + "nodes": [ + 440215477, + 103163032, + 103163035, + 103163037, + 103163038, + 103163039, + 103163042, + 103162532 + ], + "geometry": [ + { "lat": 40.8365674, "lon": -73.9928409 }, + { "lat": 40.8367508, "lon": -73.9930050 }, + { "lat": 40.8370298, "lon": -73.9931360 }, + { "lat": 40.8370638, "lon": -73.9931460 }, + { "lat": 40.8375138, "lon": -73.9931620 }, + { "lat": 40.8375578, "lon": -73.9931850 }, + { "lat": 40.8375878, "lon": -73.9932180 }, + { "lat": 40.8376148, "lon": -73.9932870 } + ], + "tags": { + "highway": "residential", + "name": "Borough Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Borough", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11570031, + "bounds": { + "minlat": 40.8299320, + "minlon": -73.9940090, + "maxlat": 40.8305704, + "maxlon": -73.9935720 + }, + "nodes": [ + 103163294, + 103162259 + ], + "geometry": [ + { "lat": 40.8299320, "lon": -73.9940090 }, + { "lat": 40.8305704, "lon": -73.9935720 } + ], + "tags": { + "highway": "residential", + "name": "Ridge Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ridge", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11570035, + "bounds": { + "minlat": 40.8188065, + "minlon": -73.9860703, + "maxlat": 40.8207033, + "maxlon": -73.9842018 + }, + "nodes": [ + 103163321, + 103163323 + ], + "geometry": [ + { "lat": 40.8188065, "lon": -73.9860703 }, + { "lat": 40.8207033, "lon": -73.9842018 } + ], + "tags": { + "highway": "residential", + "name": "Brandon Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brandon", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11570055, + "bounds": { + "minlat": 40.8506700, + "minlon": -74.0001070, + "maxlat": 40.8510000, + "maxlon": -73.9995220 + }, + "nodes": [ + 103163465, + 103163466 + ], + "geometry": [ + { "lat": 40.8506700, "lon": -73.9995220 }, + { "lat": 40.8510000, "lon": -74.0001070 } + ], + "tags": { + "highway": "residential", + "name": "Centre Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Centre", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11570136, + "bounds": { + "minlat": 40.8785706, + "minlon": -74.0210780, + "maxlat": 40.8791680, + "maxlon": -74.0192139 + }, + "nodes": [ + 103164178, + 103164179 + ], + "geometry": [ + { "lat": 40.8785706, "lon": -74.0192139 }, + { "lat": 40.8791680, "lon": -74.0210780 } + ], + "tags": { + "highway": "residential", + "name": "Grove Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grove", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11570174, + "bounds": { + "minlat": 40.8749275, + "minlon": -73.9712028, + "maxlat": 40.8767990, + "maxlon": -73.9694170 + }, + "nodes": [ + 103164575, + 103164577 + ], + "geometry": [ + { "lat": 40.8767990, "lon": -73.9694170 }, + { "lat": 40.8749275, "lon": -73.9712028 } + ], + "tags": { + "highway": "residential", + "name": "Gloucester Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gloucester", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11570198, + "bounds": { + "minlat": 40.8535222, + "minlon": -73.9928109, + "maxlat": 40.8549608, + "maxlon": -73.9903146 + }, + "nodes": [ + 103164801, + 8075114233, + 8078713076, + 103093213 + ], + "geometry": [ + { "lat": 40.8549608, "lon": -73.9928109 }, + { "lat": 40.8548890, "lon": -73.9926833 }, + { "lat": 40.8535667, "lon": -73.9903998 }, + { "lat": 40.8535222, "lon": -73.9903146 } + ], + "tags": { + "highway": "residential", + "name": "Moore Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Moore", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11570199, + "bounds": { + "minlat": 40.8556926, + "minlon": -73.9968177, + "maxlat": 40.8572442, + "maxlon": -73.9940894 + }, + "nodes": [ + 103164809, + 10261680052, + 5557494250, + 10261680051, + 6126761170, + 6126761159, + 6126761164, + 10261699288 + ], + "geometry": [ + { "lat": 40.8572442, "lon": -73.9968177 }, + { "lat": 40.8572258, "lon": -73.9967516 }, + { "lat": 40.8571933, "lon": -73.9966348 }, + { "lat": 40.8571365, "lon": -73.9965406 }, + { "lat": 40.8567548, "lon": -73.9959070 }, + { "lat": 40.8567317, "lon": -73.9958686 }, + { "lat": 40.8564035, "lon": -73.9953239 }, + { "lat": 40.8556926, "lon": -73.9940894 } + ], + "tags": { + "highway": "residential", + "name": "Moore Avenue", + "sidewalk": "right", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Moore", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11570234, + "bounds": { + "minlat": 40.8261030, + "minlon": -74.0048989, + "maxlat": 40.8271430, + "maxlon": -74.0030347 + }, + "nodes": [ + 103165288, + 103165289, + 103165291 + ], + "geometry": [ + { "lat": 40.8261030, "lon": -74.0030347 }, + { "lat": 40.8268290, "lon": -74.0043350 }, + { "lat": 40.8271430, "lon": -74.0048989 } + ], + "tags": { + "highway": "residential", + "name": "Elite Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elite", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11570252, + "bounds": { + "minlat": 40.8770776, + "minlon": -74.0070957, + "maxlat": 40.8775808, + "maxlon": -74.0054263 + }, + "nodes": [ + 4469436715, + 103165519, + 6127779075, + 103165522, + 103165524 + ], + "geometry": [ + { "lat": 40.8775808, "lon": -74.0070957 }, + { "lat": 40.8775579, "lon": -74.0069995 }, + { "lat": 40.8775094, "lon": -74.0068392 }, + { "lat": 40.8772259, "lon": -74.0059022 }, + { "lat": 40.8770776, "lon": -74.0054263 } + ], + "tags": { + "highway": "residential", + "name": "Springside Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Springside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11570316, + "bounds": { + "minlat": 40.8410891, + "minlon": -73.9919680, + "maxlat": 40.8472600, + "maxlon": -73.9857750 + }, + "nodes": [ + 103166094, + 5976359427, + 103166096, + 103166098, + 103166100, + 103166102, + 103166105 + ], + "geometry": [ + { "lat": 40.8410891, "lon": -73.9919680 }, + { "lat": 40.8415770, "lon": -73.9914723 }, + { "lat": 40.8424234, "lon": -73.9906426 }, + { "lat": 40.8435706, "lon": -73.9894782 }, + { "lat": 40.8449310, "lon": -73.9880850 }, + { "lat": 40.8460300, "lon": -73.9870000 }, + { "lat": 40.8472600, "lon": -73.9857750 } + ], + "tags": { + "highway": "residential", + "name": "9th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "9th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11570321, + "bounds": { + "minlat": 40.8189159, + "minlon": -73.9992906, + "maxlat": 40.8215806, + "maxlon": -73.9968413 + }, + "nodes": [ + 103166213, + 103166211, + 103166209, + 103166206, + 103166203 + ], + "geometry": [ + { "lat": 40.8215806, "lon": -73.9968413 }, + { "lat": 40.8210510, "lon": -73.9973980 }, + { "lat": 40.8204987, "lon": -73.9979153 }, + { "lat": 40.8198898, "lon": -73.9984185 }, + { "lat": 40.8189159, "lon": -73.9992906 } + ], + "tags": { + "highway": "residential", + "name": "9th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "9th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11570328, + "bounds": { + "minlat": 40.8514071, + "minlon": -73.9818981, + "maxlat": 40.8525417, + "maxlon": -73.9807929 + }, + "nodes": [ + 103166298, + 103166300 + ], + "geometry": [ + { "lat": 40.8514071, "lon": -73.9818981 }, + { "lat": 40.8525417, "lon": -73.9807929 } + ], + "tags": { + "highway": "residential", + "name": "9th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "9th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11570344, + "bounds": { + "minlat": 40.8397970, + "minlon": -73.9831785, + "maxlat": 40.8408243, + "maxlon": -73.9813920 + }, + "nodes": [ + 103166394, + 7460714921, + 7460714586, + 7289795207, + 7460714587, + 7460714870, + 103166396 + ], + "geometry": [ + { "lat": 40.8397970, "lon": -73.9813920 }, + { "lat": 40.8399779, "lon": -73.9817066 }, + { "lat": 40.8400185, "lon": -73.9817772 }, + { "lat": 40.8400264, "lon": -73.9817909 }, + { "lat": 40.8402178, "lon": -73.9821238 }, + { "lat": 40.8403727, "lon": -73.9823932 }, + { "lat": 40.8408243, "lon": -73.9831785 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Plateau Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Plateau", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11570371, + "bounds": { + "minlat": 40.8472740, + "minlon": -74.0009920, + "maxlat": 40.8491780, + "maxlon": -73.9991640 + }, + "nodes": [ + 103138712, + 5970473390, + 103166971, + 103110631, + 103119431 + ], + "geometry": [ + { "lat": 40.8472740, "lon": -74.0009920 }, + { "lat": 40.8476244, "lon": -74.0006732 }, + { "lat": 40.8479647, "lon": -74.0003757 }, + { "lat": 40.8485720, "lon": -73.9997630 }, + { "lat": 40.8491780, "lon": -73.9991640 } + ], + "tags": { + "highway": "residential", + "name": "Highland Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Highland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11570382, + "bounds": { + "minlat": 40.8156512, + "minlon": -73.9871914, + "maxlat": 40.8164360, + "maxlon": -73.9864886 + }, + "nodes": [ + 103167224, + 103111140 + ], + "geometry": [ + { "lat": 40.8156512, "lon": -73.9871914 }, + { "lat": 40.8164360, "lon": -73.9864886 } + ], + "tags": { + "highway": "residential", + "name": "Highland Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Highland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11570431, + "bounds": { + "minlat": 40.8272409, + "minlon": -74.0078140, + "maxlat": 40.8279140, + "maxlon": -74.0060997 + }, + "nodes": [ + 103139541, + 103143494, + 103167896 + ], + "geometry": [ + { "lat": 40.8272409, "lon": -74.0060997 }, + { "lat": 40.8275590, "lon": -74.0069320 }, + { "lat": 40.8279140, "lon": -74.0078140 } + ], + "tags": { + "highway": "residential", + "name": "Delalla Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Delalla", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11570456, + "bounds": { + "minlat": 40.8241997, + "minlon": -74.0087091, + "maxlat": 40.8247361, + "maxlon": -74.0030425 + }, + "nodes": [ + 103168154, + 103168156, + 103168159, + 103168161, + 103168163, + 103168166, + 103168169 + ], + "geometry": [ + { "lat": 40.8241997, "lon": -74.0087091 }, + { "lat": 40.8242280, "lon": -74.0084100 }, + { "lat": 40.8246530, "lon": -74.0068090 }, + { "lat": 40.8246770, "lon": -74.0066750 }, + { "lat": 40.8247361, "lon": -74.0065889 }, + { "lat": 40.8243726, "lon": -74.0040670 }, + { "lat": 40.8242420, "lon": -74.0030425 } + ], + "tags": { + "highway": "residential", + "name": "Franklin Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Franklin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11570549, + "bounds": { + "minlat": 40.8180420, + "minlon": -73.9881520, + "maxlat": 40.8196933, + "maxlon": -73.9875955 + }, + "nodes": [ + 103169192, + 2274576953, + 7249252908, + 103158568, + 103153290 + ], + "geometry": [ + { "lat": 40.8196933, "lon": -73.9875955 }, + { "lat": 40.8194531, "lon": -73.9876816 }, + { "lat": 40.8191939, "lon": -73.9877713 }, + { "lat": 40.8188027, "lon": -73.9879060 }, + { "lat": 40.8180420, "lon": -73.9881520 } + ], + "tags": { + "highway": "residential", + "name": "Summit Terrace", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Summit", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11570605, + "bounds": { + "minlat": 40.8271635, + "minlon": -74.0034772, + "maxlat": 40.8291216, + "maxlon": -73.9999424 + }, + "nodes": [ + 103169641, + 103169643, + 103169645, + 8430076120 + ], + "geometry": [ + { "lat": 40.8271635, "lon": -73.9999424 }, + { "lat": 40.8278790, "lon": -74.0012680 }, + { "lat": 40.8286413, "lon": -74.0026316 }, + { "lat": 40.8291216, "lon": -74.0034772 } + ], + "tags": { + "highway": "residential", + "name": "Clark Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Clark", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11570621, + "bounds": { + "minlat": 40.8412049, + "minlon": -73.9692121, + "maxlat": 40.8417136, + "maxlon": -73.9685974 + }, + "nodes": [ + 103097449, + 103169730, + 103169732, + 103169735, + 5362444830, + 8219505250, + 8219505251, + 8219505252, + 8219505253 + ], + "geometry": [ + { "lat": 40.8417136, "lon": -73.9692121 }, + { "lat": 40.8415895, "lon": -73.9691446 }, + { "lat": 40.8415143, "lon": -73.9690619 }, + { "lat": 40.8414560, "lon": -73.9689628 }, + { "lat": 40.8413547, "lon": -73.9688907 }, + { "lat": 40.8412799, "lon": -73.9688495 }, + { "lat": 40.8412349, "lon": -73.9687858 }, + { "lat": 40.8412049, "lon": -73.9686611 }, + { "lat": 40.8412189, "lon": -73.9685974 } + ], + "tags": { + "highway": "residential", + "name": "Washington Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11570634, + "bounds": { + "minlat": 40.8716170, + "minlon": -74.0172890, + "maxlat": 40.8757350, + "maxlon": -74.0145760 + }, + "nodes": [ + 103169824, + 103169827, + 103169828, + 103150119 + ], + "geometry": [ + { "lat": 40.8716170, "lon": -74.0172890 }, + { "lat": 40.8734680, "lon": -74.0160827 }, + { "lat": 40.8750180, "lon": -74.0150480 }, + { "lat": 40.8757350, "lon": -74.0145760 } + ], + "tags": { + "highway": "residential", + "name": "Morningside Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morningside", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11570640, + "bounds": { + "minlat": 40.8272750, + "minlon": -74.0081900, + "maxlat": 40.8340140, + "maxlon": -74.0029940 + }, + "nodes": [ + 103133534, + 103167896, + 103169857, + 103169859, + 103169861, + 103169864, + 103169866, + 12410387471, + 12410387469, + 12410387467, + 103169868, + 103169870, + 103169872, + 103169875, + 103169877, + 103169879, + 6892698783, + 103169882, + 8530347112, + 103169884 + ], + "geometry": [ + { "lat": 40.8272750, "lon": -74.0081900 }, + { "lat": 40.8279140, "lon": -74.0078140 }, + { "lat": 40.8292810, "lon": -74.0070080 }, + { "lat": 40.8298390, "lon": -74.0066680 }, + { "lat": 40.8300140, "lon": -74.0065730 }, + { "lat": 40.8301710, "lon": -74.0064700 }, + { "lat": 40.8303580, "lon": -74.0063220 }, + { "lat": 40.8305221, "lon": -74.0061742 }, + { "lat": 40.8306015, "lon": -74.0061027 }, + { "lat": 40.8309670, "lon": -74.0057737 }, + { "lat": 40.8310950, "lon": -74.0056584 }, + { "lat": 40.8312854, "lon": -74.0054527 }, + { "lat": 40.8313953, "lon": -74.0053337 }, + { "lat": 40.8315359, "lon": -74.0052158 }, + { "lat": 40.8316666, "lon": -74.0050995 }, + { "lat": 40.8319693, "lon": -74.0048613 }, + { "lat": 40.8321203, "lon": -74.0047580 }, + { "lat": 40.8324581, "lon": -74.0045059 }, + { "lat": 40.8335267, "lon": -74.0034766 }, + { "lat": 40.8340140, "lon": -74.0029940 } + ], + "tags": { + "highway": "residential", + "name": "Morse Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morse", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11570660, + "bounds": { + "minlat": 40.8390440, + "minlon": -73.9921932, + "maxlat": 40.8405274, + "maxlon": -73.9910390 + }, + "nodes": [ + 103170094, + 103170092, + 103170089, + 103170087, + 103170085, + 103170082, + 103170079, + 103170077, + 766720043, + 766720041, + 766720040 + ], + "geometry": [ + { "lat": 40.8390440, "lon": -73.9910390 }, + { "lat": 40.8391285, "lon": -73.9910780 }, + { "lat": 40.8394209, "lon": -73.9912050 }, + { "lat": 40.8395470, "lon": -73.9912622 }, + { "lat": 40.8397508, "lon": -73.9913652 }, + { "lat": 40.8399583, "lon": -73.9915056 }, + { "lat": 40.8402085, "lon": -73.9916864 }, + { "lat": 40.8404460, "lon": -73.9918871 }, + { "lat": 40.8405110, "lon": -73.9919633 }, + { "lat": 40.8405274, "lon": -73.9920757 }, + { "lat": 40.8405249, "lon": -73.9921932 } + ], + "tags": { + "highway": "residential", + "name": "Northwood Way", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Northwood", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11570757, + "bounds": { + "minlat": 40.8251310, + "minlon": -74.0006359, + "maxlat": 40.8256445, + "maxlon": -74.0001482 + }, + "nodes": [ + 103171024, + 103115366, + 103171025 + ], + "geometry": [ + { "lat": 40.8251310, "lon": -74.0006359 }, + { "lat": 40.8253745, "lon": -74.0004048 }, + { "lat": 40.8256445, "lon": -74.0001482 } + ], + "tags": { + "highway": "residential", + "name": "Dwight Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dwight", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11570841, + "bounds": { + "minlat": 40.8467729, + "minlon": -73.9752338, + "maxlat": 40.8490644, + "maxlon": -73.9710167 + }, + "nodes": [ + 103171552, + 13523674077, + 7469411111, + 103171556, + 7431517007, + 5108613711, + 7460473107, + 2269582188, + 103171558 + ], + "geometry": [ + { "lat": 40.8467729, "lon": -73.9710167 }, + { "lat": 40.8468345, "lon": -73.9711305 }, + { "lat": 40.8468470, "lon": -73.9711535 }, + { "lat": 40.8483860, "lon": -73.9739950 }, + { "lat": 40.8484049, "lon": -73.9740301 }, + { "lat": 40.8484245, "lon": -73.9740666 }, + { "lat": 40.8484483, "lon": -73.9741105 }, + { "lat": 40.8484789, "lon": -73.9741669 }, + { "lat": 40.8490644, "lon": -73.9752338 } + ], + "tags": { + "highway": "residential", + "name": "Tom Hunter Road", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Tom Hunter", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11570846, + "bounds": { + "minlat": 40.8400611, + "minlon": -73.9743563, + "maxlat": 40.8402589, + "maxlon": -73.9741324 + }, + "nodes": [ + 5108627364, + 5108627365, + 5108627367, + 5108627378, + 5108627366, + 5108627368, + 5108627369, + 5108627377, + 5108627374, + 5108635536 + ], + "geometry": [ + { "lat": 40.8402533, "lon": -73.9741324 }, + { "lat": 40.8402589, "lon": -73.9742343 }, + { "lat": 40.8402564, "lon": -73.9742794 }, + { "lat": 40.8402349, "lon": -73.9743127 }, + { "lat": 40.8402209, "lon": -73.9743344 }, + { "lat": 40.8401493, "lon": -73.9743563 }, + { "lat": 40.8400864, "lon": -73.9743348 }, + { "lat": 40.8400671, "lon": -73.9743027 }, + { "lat": 40.8400611, "lon": -73.9742182 }, + { "lat": 40.8400668, "lon": -73.9741615 } + ], + "tags": { + "highway": "residential", + "name": "Bridget Walk", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridget", + "tiger:name_type": "Walk", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11570876, + "bounds": { + "minlat": 40.8696410, + "minlon": -73.9740796, + "maxlat": 40.8718656, + "maxlon": -73.9732993 + }, + "nodes": [ + 103171640, + 12021450544, + 103171642, + 103171646, + 12021450545, + 12021450546, + 103171648, + 12021450547, + 103171650, + 103171652, + 103171654, + 12021450548, + 103171656, + 12021450549, + 103171659, + 12021450550, + 103171660, + 12021450551, + 12021450552, + 103171661, + 12021450553, + 103171663, + 12021450554, + 12021450555, + 12021419900, + 103171664 + ], + "geometry": [ + { "lat": 40.8718656, "lon": -73.9737147 }, + { "lat": 40.8718276, "lon": -73.9736125 }, + { "lat": 40.8718127, "lon": -73.9735724 }, + { "lat": 40.8717946, "lon": -73.9735352 }, + { "lat": 40.8717681, "lon": -73.9734964 }, + { "lat": 40.8717411, "lon": -73.9734661 }, + { "lat": 40.8717077, "lon": -73.9734419 }, + { "lat": 40.8716690, "lon": -73.9734187 }, + { "lat": 40.8716282, "lon": -73.9734007 }, + { "lat": 40.8715870, "lon": -73.9733894 }, + { "lat": 40.8713606, "lon": -73.9733298 }, + { "lat": 40.8713156, "lon": -73.9733197 }, + { "lat": 40.8712659, "lon": -73.9733104 }, + { "lat": 40.8712241, "lon": -73.9733048 }, + { "lat": 40.8711699, "lon": -73.9732997 }, + { "lat": 40.8711152, "lon": -73.9732993 }, + { "lat": 40.8710604, "lon": -73.9733005 }, + { "lat": 40.8710019, "lon": -73.9733027 }, + { "lat": 40.8709522, "lon": -73.9733096 }, + { "lat": 40.8709038, "lon": -73.9733204 }, + { "lat": 40.8708537, "lon": -73.9733384 }, + { "lat": 40.8707929, "lon": -73.9733670 }, + { "lat": 40.8707367, "lon": -73.9733983 }, + { "lat": 40.8706733, "lon": -73.9734393 }, + { "lat": 40.8697351, "lon": -73.9740214 }, + { "lat": 40.8696410, "lon": -73.9740796 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Overlook Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overlook", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11570990, + "bounds": { + "minlat": 40.8767733, + "minlon": -73.9589727, + "maxlat": 40.8777331, + "maxlon": -73.9572860 + }, + "nodes": [ + 103172141, + 103172143, + 10059739074, + 103172144 + ], + "geometry": [ + { "lat": 40.8767733, "lon": -73.9572860 }, + { "lat": 40.8772443, "lon": -73.9581163 }, + { "lat": 40.8776633, "lon": -73.9588504 }, + { "lat": 40.8777331, "lon": -73.9589727 } + ], + "tags": { + "highway": "residential", + "name": "Oakwood Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakwood", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11570994, + "bounds": { + "minlat": 40.8345273, + "minlon": -73.9932467, + "maxlat": 40.8360960, + "maxlon": -73.9921490 + }, + "nodes": [ + 103172147, + 13524441809, + 103172149, + 103172151, + 103172153, + 103172155, + 103172157, + 5976777481, + 103172159 + ], + "geometry": [ + { "lat": 40.8345273, "lon": -73.9932467 }, + { "lat": 40.8346049, "lon": -73.9931861 }, + { "lat": 40.8351170, "lon": -73.9927860 }, + { "lat": 40.8352770, "lon": -73.9926810 }, + { "lat": 40.8358230, "lon": -73.9924010 }, + { "lat": 40.8359260, "lon": -73.9923280 }, + { "lat": 40.8360200, "lon": -73.9922390 }, + { "lat": 40.8360427, "lon": -73.9922121 }, + { "lat": 40.8360960, "lon": -73.9921490 } + ], + "tags": { + "highway": "residential", + "name": "Oakwood Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakwood", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11571029, + "bounds": { + "minlat": 40.8443389, + "minlon": -73.9654313, + "maxlat": 40.8464720, + "maxlon": -73.9638682 + }, + "nodes": [ + 3882444270, + 5708717295, + 3882444274, + 9421814859, + 9421814858, + 9421814857, + 103172381, + 9421814856, + 9421814855, + 9421814854, + 9421814853, + 9421814852, + 9421814850, + 9421814851, + 2349734610 + ], + "geometry": [ + { "lat": 40.8443389, "lon": -73.9654313 }, + { "lat": 40.8443704, "lon": -73.9653984 }, + { "lat": 40.8444561, "lon": -73.9653146 }, + { "lat": 40.8445002, "lon": -73.9652784 }, + { "lat": 40.8446854, "lon": -73.9651765 }, + { "lat": 40.8449319, "lon": -73.9650156 }, + { "lat": 40.8451506, "lon": -73.9648573 }, + { "lat": 40.8453159, "lon": -73.9647386 }, + { "lat": 40.8455640, "lon": -73.9645703 }, + { "lat": 40.8456487, "lon": -73.9644959 }, + { "lat": 40.8459135, "lon": -73.9643430 }, + { "lat": 40.8461001, "lon": -73.9642169 }, + { "lat": 40.8462346, "lon": -73.9640848 }, + { "lat": 40.8462995, "lon": -73.9640285 }, + { "lat": 40.8464720, "lon": -73.9638682 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Shore Road", + "service": "driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Shore", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11571031, + "bounds": { + "minlat": 40.8431180, + "minlon": -73.9664210, + "maxlat": 40.8437150, + "maxlon": -73.9657961 + }, + "nodes": [ + 103264219, + 3882444269, + 5742928197, + 3882444271, + 3882444279, + 103172395, + 3882444277, + 3882444278, + 3882444273, + 3882444280 + ], + "geometry": [ + { "lat": 40.8437150, "lon": -73.9658242 }, + { "lat": 40.8436758, "lon": -73.9658015 }, + { "lat": 40.8436039, "lon": -73.9657961 }, + { "lat": 40.8435079, "lon": -73.9658192 }, + { "lat": 40.8433210, "lon": -73.9659018 }, + { "lat": 40.8432264, "lon": -73.9659529 }, + { "lat": 40.8431758, "lon": -73.9659999 }, + { "lat": 40.8431190, "lon": -73.9661219 }, + { "lat": 40.8431180, "lon": -73.9662386 }, + { "lat": 40.8431677, "lon": -73.9664210 } + ], + "tags": { + "highway": "residential", + "name": "Shore Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Shore", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11571141, + "bounds": { + "minlat": 40.8117840, + "minlon": -74.0037203, + "maxlat": 40.8125067, + "maxlon": -74.0019720 + }, + "nodes": [ + 103147906, + 13523977041, + 5481884108, + 5481884107, + 13525387279, + 103173211 + ], + "geometry": [ + { "lat": 40.8125067, "lon": -74.0037203 }, + { "lat": 40.8124602, "lon": -74.0036079 }, + { "lat": 40.8121474, "lon": -74.0028519 }, + { "lat": 40.8120882, "lon": -74.0027087 }, + { "lat": 40.8118460, "lon": -74.0021105 }, + { "lat": 40.8117840, "lon": -74.0019720 } + ], + "tags": { + "highway": "residential", + "name": "Hancock Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hancock", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11571146, + "bounds": { + "minlat": 40.8355047, + "minlon": -74.0038054, + "maxlat": 40.8361169, + "maxlon": -74.0027266 + }, + "nodes": [ + 103173222, + 12016315321, + 12016315193, + 12016315195, + 103159279 + ], + "geometry": [ + { "lat": 40.8355047, "lon": -74.0027266 }, + { "lat": 40.8355441, "lon": -74.0027962 }, + { "lat": 40.8360635, "lon": -74.0037127 }, + { "lat": 40.8360813, "lon": -74.0037436 }, + { "lat": 40.8361169, "lon": -74.0038054 } + ], + "tags": { + "highway": "residential", + "name": "Jacobus Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jacobus", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11571208, + "bounds": { + "minlat": 40.8552252, + "minlon": -73.9640442, + "maxlat": 40.8557899, + "maxlon": -73.9629701 + }, + "nodes": [ + 103154327, + 12021336927, + 12021336926, + 12021336925, + 5449390154, + 9294019580, + 11013778283, + 103173657 + ], + "geometry": [ + { "lat": 40.8557899, "lon": -73.9640442 }, + { "lat": 40.8557754, "lon": -73.9640056 }, + { "lat": 40.8557617, "lon": -73.9639711 }, + { "lat": 40.8557483, "lon": -73.9639411 }, + { "lat": 40.8555334, "lon": -73.9635433 }, + { "lat": 40.8554024, "lon": -73.9632998 }, + { "lat": 40.8553523, "lon": -73.9632066 }, + { "lat": 40.8552252, "lon": -73.9629701 } + ], + "tags": { + "highway": "residential", + "name": "Sylvan Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11571215, + "bounds": { + "minlat": 40.8777298, + "minlon": -73.9910588, + "maxlat": 40.8803624, + "maxlon": -73.9863978 + }, + "nodes": [ + 103161312, + 8171514841, + 8171514837, + 8171514854, + 7111366846, + 8171514835, + 7111366838, + 7111366855, + 3603219481, + 7111366826, + 7934506374, + 7710539814, + 103173699 + ], + "geometry": [ + { "lat": 40.8777298, "lon": -73.9863978 }, + { "lat": 40.8779688, "lon": -73.9868307 }, + { "lat": 40.8780925, "lon": -73.9870385 }, + { "lat": 40.8783811, "lon": -73.9875485 }, + { "lat": 40.8785706, "lon": -73.9878832 }, + { "lat": 40.8785876, "lon": -73.9879132 }, + { "lat": 40.8791663, "lon": -73.9889359 }, + { "lat": 40.8793883, "lon": -73.9893281 }, + { "lat": 40.8795739, "lon": -73.9896552 }, + { "lat": 40.8798308, "lon": -73.9901127 }, + { "lat": 40.8799002, "lon": -73.9902360 }, + { "lat": 40.8802655, "lon": -73.9908854 }, + { "lat": 40.8803624, "lon": -73.9910588 } + ], + "tags": { + "highway": "unclassified", + "name": "West Sheffield Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sheffield", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11571269, + "bounds": { + "minlat": 40.8379509, + "minlon": -73.9788581, + "maxlat": 40.8382078, + "maxlon": -73.9780115 + }, + "nodes": [ + 103173996, + 103174000, + 103166405, + 103174001, + 103174002, + 103174004 + ], + "geometry": [ + { "lat": 40.8382078, "lon": -73.9780115 }, + { "lat": 40.8381229, "lon": -73.9782187 }, + { "lat": 40.8380622, "lon": -73.9783854 }, + { "lat": 40.8380052, "lon": -73.9785752 }, + { "lat": 40.8379707, "lon": -73.9787361 }, + { "lat": 40.8379509, "lon": -73.9788581 } + ], + "tags": { + "highway": "primary", + "name": "Central Boulevard", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11571273, + "bounds": { + "minlat": 40.8366580, + "minlon": -73.9792294, + "maxlat": 40.8376405, + "maxlon": -73.9782870 + }, + "nodes": [ + 103174015, + 103174017, + 103174019, + 103174021, + 103174022, + 7292367198, + 103174023, + 5108622220, + 103174024, + 103174026 + ], + "geometry": [ + { "lat": 40.8366580, "lon": -73.9782870 }, + { "lat": 40.8367660, "lon": -73.9783280 }, + { "lat": 40.8369040, "lon": -73.9783960 }, + { "lat": 40.8370692, "lon": -73.9785041 }, + { "lat": 40.8371623, "lon": -73.9785796 }, + { "lat": 40.8372377, "lon": -73.9786547 }, + { "lat": 40.8372962, "lon": -73.9787128 }, + { "lat": 40.8373992, "lon": -73.9788399 }, + { "lat": 40.8374946, "lon": -73.9789860 }, + { "lat": 40.8376405, "lon": -73.9792294 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Central Boulevard", + "ref": "NJ 5", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11571277, + "bounds": { + "minlat": 40.8784534, + "minlon": -73.9838057, + "maxlat": 40.8797258, + "maxlon": -73.9815463 + }, + "nodes": [ + 103134448, + 12022105712, + 12022105711, + 12022105710, + 10018166823, + 9239567801, + 9239567802, + 103174058 + ], + "geometry": [ + { "lat": 40.8797258, "lon": -73.9838057 }, + { "lat": 40.8797106, "lon": -73.9837642 }, + { "lat": 40.8796953, "lon": -73.9837309 }, + { "lat": 40.8796765, "lon": -73.9836927 }, + { "lat": 40.8785731, "lon": -73.9817564 }, + { "lat": 40.8785325, "lon": -73.9816850 }, + { "lat": 40.8785192, "lon": -73.9816614 }, + { "lat": 40.8784534, "lon": -73.9815463 } + ], + "tags": { + "highway": "unclassified", + "name": "Rockwood Place", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Rockwood", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11571279, + "bounds": { + "minlat": 40.8752109, + "minlon": -73.9773982, + "maxlat": 40.8760541, + "maxlon": -73.9755970 + }, + "nodes": [ + 12021419916, + 103174067, + 103174069, + 103174076, + 530806603, + 12021419915, + 12021419912, + 12021419914, + 12021419913, + 103174078, + 12021419911, + 12021419910, + 103105415 + ], + "geometry": [ + { "lat": 40.8760541, "lon": -73.9773982 }, + { "lat": 40.8758504, "lon": -73.9770647 }, + { "lat": 40.8756594, "lon": -73.9766520 }, + { "lat": 40.8755242, "lon": -73.9763476 }, + { "lat": 40.8752846, "lon": -73.9759284 }, + { "lat": 40.8752648, "lon": -73.9758906 }, + { "lat": 40.8752472, "lon": -73.9758532 }, + { "lat": 40.8752334, "lon": -73.9758149 }, + { "lat": 40.8752243, "lon": -73.9757788 }, + { "lat": 40.8752177, "lon": -73.9757354 }, + { "lat": 40.8752126, "lon": -73.9756893 }, + { "lat": 40.8752109, "lon": -73.9756367 }, + { "lat": 40.8752114, "lon": -73.9755970 } + ], + "tags": { + "highway": "tertiary", + "name": "Rockwood Place", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Rockwood", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11571280, + "bounds": { + "minlat": 40.8348313, + "minlon": -73.9726831, + "maxlat": 40.8352000, + "maxlon": -73.9723770 + }, + "nodes": [ + 103093401, + 103174092, + 103174093, + 103174095 + ], + "geometry": [ + { "lat": 40.8352000, "lon": -73.9723770 }, + { "lat": 40.8351190, "lon": -73.9724580 }, + { "lat": 40.8349660, "lon": -73.9725840 }, + { "lat": 40.8348313, "lon": -73.9726831 } + ], + "tags": { + "highway": "residential", + "name": "Rockwood Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Rockwood", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11571282, + "bounds": { + "minlat": 40.8334467, + "minlon": -74.0125223, + "maxlat": 40.8342707, + "maxlon": -74.0119943 + }, + "nodes": [ + 103174102, + 9909584554, + 4049115942, + 103174107 + ], + "geometry": [ + { "lat": 40.8334467, "lon": -74.0125223 }, + { "lat": 40.8335362, "lon": -74.0124582 }, + { "lat": 40.8341614, "lon": -74.0120157 }, + { "lat": 40.8342707, "lon": -74.0119943 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Church Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Church", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657", + "turn:lanes": "left;through|right" + } +}, +{ + "type": "way", + "id": 11571320, + "bounds": { + "minlat": 40.8626020, + "minlon": -73.9796050, + "maxlat": 40.8650070, + "maxlon": -73.9775840 + }, + "nodes": [ + 103174315, + 10115455709, + 103174317, + 103174319, + 103174321, + 103174323, + 103174325, + 103174327, + 103174328, + 103174329, + 103174330, + 103174332, + 103174334, + 103174336, + 103174338, + 103174340, + 103174342, + 103174344, + 103174346, + 103174347, + 103174348, + 103174349, + 103174350, + 103174352, + 103174354, + 103174356 + ], + "geometry": [ + { "lat": 40.8650070, "lon": -73.9796050 }, + { "lat": 40.8649449, "lon": -73.9795323 }, + { "lat": 40.8648610, "lon": -73.9794520 }, + { "lat": 40.8647780, "lon": -73.9793910 }, + { "lat": 40.8646880, "lon": -73.9793500 }, + { "lat": 40.8646040, "lon": -73.9793310 }, + { "lat": 40.8645180, "lon": -73.9793300 }, + { "lat": 40.8643500, "lon": -73.9793460 }, + { "lat": 40.8638270, "lon": -73.9795110 }, + { "lat": 40.8637680, "lon": -73.9795210 }, + { "lat": 40.8636670, "lon": -73.9795250 }, + { "lat": 40.8635740, "lon": -73.9795120 }, + { "lat": 40.8634490, "lon": -73.9794740 }, + { "lat": 40.8633350, "lon": -73.9794240 }, + { "lat": 40.8632070, "lon": -73.9793460 }, + { "lat": 40.8631040, "lon": -73.9792630 }, + { "lat": 40.8630080, "lon": -73.9791670 }, + { "lat": 40.8629200, "lon": -73.9790580 }, + { "lat": 40.8628300, "lon": -73.9789160 }, + { "lat": 40.8627630, "lon": -73.9787840 }, + { "lat": 40.8627070, "lon": -73.9786430 }, + { "lat": 40.8626630, "lon": -73.9784950 }, + { "lat": 40.8626300, "lon": -73.9783420 }, + { "lat": 40.8626100, "lon": -73.9781860 }, + { "lat": 40.8626020, "lon": -73.9780270 }, + { "lat": 40.8626120, "lon": -73.9775840 } + ], + "tags": { + "highway": "residential", + "name": "Greenway Drive", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Greenway", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11571331, + "bounds": { + "minlat": 40.8319041, + "minlon": -73.9934125, + "maxlat": 40.8326927, + "maxlon": -73.9920301 + }, + "nodes": [ + 103147985, + 13527758469, + 103174394 + ], + "geometry": [ + { "lat": 40.8319041, "lon": -73.9920301 }, + { "lat": 40.8319716, "lon": -73.9921484 }, + { "lat": 40.8326927, "lon": -73.9934125 } + ], + "tags": { + "highway": "residential", + "name": "Victory Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Victory", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11571343, + "bounds": { + "minlat": 40.8483862, + "minlon": -74.0037574, + "maxlat": 40.8501724, + "maxlon": -74.0027743 + }, + "nodes": [ + 103174479, + 8430718513, + 103174446 + ], + "geometry": [ + { "lat": 40.8483862, "lon": -74.0037574 }, + { "lat": 40.8485394, "lon": -74.0036719 }, + { "lat": 40.8501724, "lon": -74.0027743 } + ], + "tags": { + "highway": "residential", + "name": "Columbus Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbus", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11571346, + "bounds": { + "minlat": 40.8473631, + "minlon": -74.0043673, + "maxlat": 40.8483862, + "maxlon": -74.0037574 + }, + "nodes": [ + 103174479, + 103174481 + ], + "geometry": [ + { "lat": 40.8483862, "lon": -74.0037574 }, + { "lat": 40.8473631, "lon": -74.0043673 } + ], + "tags": { + "highway": "residential", + "name": "Columbus Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbus", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11571355, + "bounds": { + "minlat": 40.8446767, + "minlon": -73.9787422, + "maxlat": 40.8521006, + "maxlon": -73.9723130 + }, + "nodes": [ + 103174576, + 103174578, + 7455134466, + 103174579, + 6964899076, + 103174581, + 103174583, + 103174585, + 103174587, + 103174589, + 103174591, + 103171558, + 5449457239, + 7447930965, + 103174593, + 7447979225, + 7447979226, + 103174595, + 11153653564, + 7442921698, + 11153653572, + 8219370059, + 103174597, + 103154240, + 7434604953, + 1749228837, + 103174599 + ], + "geometry": [ + { "lat": 40.8446767, "lon": -73.9787422 }, + { "lat": 40.8450085, "lon": -73.9784791 }, + { "lat": 40.8451190, "lon": -73.9783918 }, + { "lat": 40.8455798, "lon": -73.9780275 }, + { "lat": 40.8459374, "lon": -73.9777907 }, + { "lat": 40.8462054, "lon": -73.9775792 }, + { "lat": 40.8467999, "lon": -73.9771158 }, + { "lat": 40.8473880, "lon": -73.9766628 }, + { "lat": 40.8479717, "lon": -73.9761984 }, + { "lat": 40.8483140, "lon": -73.9759340 }, + { "lat": 40.8485190, "lon": -73.9757340 }, + { "lat": 40.8490644, "lon": -73.9752338 }, + { "lat": 40.8493087, "lon": -73.9749893 }, + { "lat": 40.8493257, "lon": -73.9749726 }, + { "lat": 40.8494097, "lon": -73.9748902 }, + { "lat": 40.8494521, "lon": -73.9748490 }, + { "lat": 40.8496498, "lon": -73.9746568 }, + { "lat": 40.8500870, "lon": -73.9742320 }, + { "lat": 40.8502379, "lon": -73.9740903 }, + { "lat": 40.8503025, "lon": -73.9740297 }, + { "lat": 40.8503723, "lon": -73.9739642 }, + { "lat": 40.8507108, "lon": -73.9736466 }, + { "lat": 40.8508340, "lon": -73.9735310 }, + { "lat": 40.8510790, "lon": -73.9732950 }, + { "lat": 40.8512666, "lon": -73.9731160 }, + { "lat": 40.8515837, "lon": -73.9728134 }, + { "lat": 40.8521006, "lon": -73.9723130 } + ], + "tags": { + "Bergen_County_database_ref": "S-29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S29", + "highway": "secondary", + "name": "Center Avenue", + "oneway": "yes", + "ref": "CR S-29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11571384, + "bounds": { + "minlat": 40.8753161, + "minlon": -73.9591773, + "maxlat": 40.8759967, + "maxlon": -73.9585212 + }, + "nodes": [ + 103153342, + 9348842212, + 103174773 + ], + "geometry": [ + { "lat": 40.8753161, "lon": -73.9591773 }, + { "lat": 40.8755126, "lon": -73.9589879 }, + { "lat": 40.8759967, "lon": -73.9585212 } + ], + "tags": { + "highway": "residential", + "name": "Ropes Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ropes", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11571493, + "bounds": { + "minlat": 40.8089009, + "minlon": -73.9983690, + "maxlat": 40.8126330, + "maxlon": -73.9957030 + }, + "nodes": [ + 103175800, + 103175799, + 103175798, + 103175796, + 103175794, + 103112777, + 103111342 + ], + "geometry": [ + { "lat": 40.8126330, "lon": -73.9957030 }, + { "lat": 40.8119650, "lon": -73.9963970 }, + { "lat": 40.8118320, "lon": -73.9965170 }, + { "lat": 40.8116550, "lon": -73.9966332 }, + { "lat": 40.8111680, "lon": -73.9969363 }, + { "lat": 40.8100910, "lon": -73.9976280 }, + { "lat": 40.8089009, "lon": -73.9983690 } + ], + "tags": { + "highway": "residential", + "name": "Fulton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fulton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11571495, + "bounds": { + "minlat": 40.8087622, + "minlon": -73.9985456, + "maxlat": 40.8089009, + "maxlon": -73.9983690 + }, + "nodes": [ + 103111342, + 440208111 + ], + "geometry": [ + { "lat": 40.8089009, "lon": -73.9983690 }, + { "lat": 40.8087622, "lon": -73.9985456 } + ], + "tags": { + "highway": "residential", + "name": "Fulton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fulton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11571499, + "bounds": { + "minlat": 40.8635760, + "minlon": -74.0176890, + "maxlat": 40.8638840, + "maxlon": -74.0168440 + }, + "nodes": [ + 103175835, + 103175837, + 103175839, + 103175841, + 103175843, + 103175845, + 103175847, + 103175849, + 103175851, + 103175853, + 103175855, + 103175857 + ], + "geometry": [ + { "lat": 40.8638840, "lon": -74.0176680 }, + { "lat": 40.8638070, "lon": -74.0176890 }, + { "lat": 40.8637540, "lon": -74.0176830 }, + { "lat": 40.8637090, "lon": -74.0176610 }, + { "lat": 40.8636660, "lon": -74.0176190 }, + { "lat": 40.8636330, "lon": -74.0175580 }, + { "lat": 40.8635760, "lon": -74.0172700 }, + { "lat": 40.8635760, "lon": -74.0171890 }, + { "lat": 40.8635930, "lon": -74.0171050 }, + { "lat": 40.8636230, "lon": -74.0170350 }, + { "lat": 40.8636480, "lon": -74.0169960 }, + { "lat": 40.8637730, "lon": -74.0168440 } + ], + "tags": { + "highway": "residential", + "name": "Barnes Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Barnes", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11571501, + "bounds": { + "minlat": 40.8636115, + "minlon": -74.0168440, + "maxlat": 40.8637730, + "maxlon": -74.0160572 + }, + "nodes": [ + 103175857, + 103175861, + 103175862, + 103175863 + ], + "geometry": [ + { "lat": 40.8637730, "lon": -74.0168440 }, + { "lat": 40.8637360, "lon": -74.0167530 }, + { "lat": 40.8637120, "lon": -74.0166450 }, + { "lat": 40.8636115, "lon": -74.0160572 } + ], + "tags": { + "highway": "residential", + "name": "Barnes Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Barnes", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11571515, + "bounds": { + "minlat": 40.8247020, + "minlon": -73.9874017, + "maxlat": 40.8256397, + "maxlon": -73.9856037 + }, + "nodes": [ + 103175945, + 13318551959, + 7555222390, + 7555222398, + 7555222406, + 103175944, + 4695282841, + 4695282840, + 7555222407, + 4695282839 + ], + "geometry": [ + { "lat": 40.8256397, "lon": -73.9874017 }, + { "lat": 40.8255927, "lon": -73.9873229 }, + { "lat": 40.8254444, "lon": -73.9870596 }, + { "lat": 40.8254006, "lon": -73.9869819 }, + { "lat": 40.8253469, "lon": -73.9868865 }, + { "lat": 40.8247818, "lon": -73.9858833 }, + { "lat": 40.8247463, "lon": -73.9858297 }, + { "lat": 40.8247020, "lon": -73.9857076 }, + { "lat": 40.8247034, "lon": -73.9856352 }, + { "lat": 40.8247176, "lon": -73.9856037 } + ], + "tags": { + "highway": "residential", + "name": "Division Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Division", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11571542, + "bounds": { + "minlat": 40.8700040, + "minlon": -73.9633840, + "maxlat": 40.8720400, + "maxlon": -73.9614060 + }, + "nodes": [ + 103176054, + 103176055, + 103176056 + ], + "geometry": [ + { "lat": 40.8700040, "lon": -73.9633840 }, + { "lat": 40.8703950, "lon": -73.9630040 }, + { "lat": 40.8720400, "lon": -73.9614060 } + ], + "tags": { + "highway": "residential", + "name": "Birch Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Birch", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11571576, + "bounds": { + "minlat": 40.8724151, + "minlon": -73.9754216, + "maxlat": 40.8728174, + "maxlon": -73.9747218 + }, + "nodes": [ + 103134285, + 103176232, + 392522180, + 392522181, + 8599553092, + 392522182, + 8599553086, + 392522183, + 103176234, + 8599553087, + 8599553088, + 8599553089, + 8599553090, + 8599553091, + 8599553092 + ], + "geometry": [ + { "lat": 40.8724151, "lon": -73.9747218 }, + { "lat": 40.8725124, "lon": -73.9747218 }, + { "lat": 40.8726292, "lon": -73.9747562 }, + { "lat": 40.8727331, "lon": -73.9748592 }, + { "lat": 40.8727579, "lon": -73.9749071 }, + { "lat": 40.8728174, "lon": -73.9750222 }, + { "lat": 40.8728115, "lon": -73.9751396 }, + { "lat": 40.8727860, "lon": -73.9751908 }, + { "lat": 40.8725513, "lon": -73.9754085 }, + { "lat": 40.8725310, "lon": -73.9754216 }, + { "lat": 40.8725069, "lon": -73.9754213 }, + { "lat": 40.8724536, "lon": -73.9753728 }, + { "lat": 40.8724290, "lon": -73.9752998 }, + { "lat": 40.8724414, "lon": -73.9752343 }, + { "lat": 40.8727579, "lon": -73.9749071 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Mallard Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mallard", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11571614, + "bounds": { + "minlat": 40.8762383, + "minlon": -74.0191090, + "maxlat": 40.8787830, + "maxlon": -74.0117834 + }, + "nodes": [ + 103176594, + 103176595 + ], + "geometry": [ + { "lat": 40.8762383, "lon": -74.0117834 }, + { "lat": 40.8787830, "lon": -74.0191090 } + ], + "tags": { + "highway": "residential", + "name": "Copley Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Copley", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11571701, + "bounds": { + "minlat": 40.8494680, + "minlon": -73.9841250, + "maxlat": 40.8494873, + "maxlon": -73.9836043 + }, + "nodes": [ + 103177084, + 103177086 + ], + "geometry": [ + { "lat": 40.8494680, "lon": -73.9841250 }, + { "lat": 40.8494873, "lon": -73.9836043 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Westgate Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Westgate", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11571702, + "bounds": { + "minlat": 40.8501783, + "minlon": -73.9843397, + "maxlat": 40.8532312, + "maxlon": -73.9839809 + }, + "nodes": [ + 103111790, + 12692250275, + 103177090, + 103177092, + 103177094, + 2395506859, + 5362354429, + 103177096, + 103177098, + 5362354423, + 5362354426, + 5362354431, + 5362354428 + ], + "geometry": [ + { "lat": 40.8501783, "lon": -73.9841909 }, + { "lat": 40.8507306, "lon": -73.9842315 }, + { "lat": 40.8508595, "lon": -73.9842387 }, + { "lat": 40.8512130, "lon": -73.9842549 }, + { "lat": 40.8517032, "lon": -73.9842889 }, + { "lat": 40.8522741, "lon": -73.9843397 }, + { "lat": 40.8524590, "lon": -73.9842897 }, + { "lat": 40.8525949, "lon": -73.9842873 }, + { "lat": 40.8528354, "lon": -73.9842816 }, + { "lat": 40.8528686, "lon": -73.9842702 }, + { "lat": 40.8530446, "lon": -73.9840887 }, + { "lat": 40.8531257, "lon": -73.9840391 }, + { "lat": 40.8532312, "lon": -73.9839809 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Westgate Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Westgate", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11571703, + "bounds": { + "minlat": 40.8523001, + "minlon": -73.9839221, + "maxlat": 40.8524094, + "maxlon": -73.9837864 + }, + "nodes": [ + 103177103, + 5362357990, + 103177112 + ], + "geometry": [ + { "lat": 40.8523001, "lon": -73.9837864 }, + { "lat": 40.8523412, "lon": -73.9838240 }, + { "lat": 40.8524094, "lon": -73.9839221 } + ], + "tags": { + "highway": "residential", + "name": "Westgate Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Westgate", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11571705, + "bounds": { + "minlat": 40.8079754, + "minlon": -73.9972429, + "maxlat": 40.8082450, + "maxlon": -73.9969320 + }, + "nodes": [ + 103177108, + 103177109, + 103111332 + ], + "geometry": [ + { "lat": 40.8079754, "lon": -73.9972429 }, + { "lat": 40.8080750, "lon": -73.9970350 }, + { "lat": 40.8082450, "lon": -73.9969320 } + ], + "tags": { + "highway": "residential", + "name": "Barr Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Baar", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11571706, + "bounds": { + "minlat": 40.8524094, + "minlon": -73.9842873, + "maxlat": 40.8525949, + "maxlon": -73.9839221 + }, + "nodes": [ + 103177112, + 12692250274, + 103177096 + ], + "geometry": [ + { "lat": 40.8524094, "lon": -73.9839221 }, + { "lat": 40.8525926, "lon": -73.9842324 }, + { "lat": 40.8525949, "lon": -73.9842873 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Village Circle Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Village Circle", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11571779, + "bounds": { + "minlat": 40.8785885, + "minlon": -73.9859219, + "maxlat": 40.8786462, + "maxlon": -73.9858101 + }, + "nodes": [ + 103177520, + 103177521 + ], + "geometry": [ + { "lat": 40.8785885, "lon": -73.9858101 }, + { "lat": 40.8786462, "lon": -73.9859219 } + ], + "tags": { + "highway": "unclassified", + "name": "Parker Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Parker", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11572023, + "bounds": { + "minlat": 40.8290554, + "minlon": -73.9764300, + "maxlat": 40.8291430, + "maxlon": -73.9762343 + }, + "nodes": [ + 103179137, + 103179138, + 103179140, + 103179142, + 103179144 + ], + "geometry": [ + { "lat": 40.8290554, "lon": -73.9762343 }, + { "lat": 40.8290730, "lon": -73.9762430 }, + { "lat": 40.8291030, "lon": -73.9762820 }, + { "lat": 40.8291150, "lon": -73.9763160 }, + { "lat": 40.8291430, "lon": -73.9764300 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Overview Terrace", + "surface": "asphalt", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overview", + "tiger:name_type": "Ter", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11572044, + "bounds": { + "minlat": 40.8753513, + "minlon": -73.9823270, + "maxlat": 40.8777345, + "maxlon": -73.9781318 + }, + "nodes": [ + 103179245, + 12022105756, + 12022105755, + 10274904125, + 12022105754, + 6889705668, + 103179247 + ], + "geometry": [ + { "lat": 40.8777345, "lon": -73.9823270 }, + { "lat": 40.8777093, "lon": -73.9822813 }, + { "lat": 40.8776915, "lon": -73.9822491 }, + { "lat": 40.8776419, "lon": -73.9821628 }, + { "lat": 40.8776274, "lon": -73.9821366 }, + { "lat": 40.8774849, "lon": -73.9818793 }, + { "lat": 40.8753513, "lon": -73.9781318 } + ], + "tags": { + "highway": "residential", + "name": "Phelps Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Phelps", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11572049, + "bounds": { + "minlat": 40.8734904, + "minlon": -73.9774811, + "maxlat": 40.8744952, + "maxlon": -73.9744384 + }, + "nodes": [ + 8832577926, + 103179273, + 7135115083, + 530806256, + 530806169, + 530806264, + 530806285, + 530806274 + ], + "geometry": [ + { "lat": 40.8744952, "lon": -73.9774811 }, + { "lat": 40.8740269, "lon": -73.9766312 }, + { "lat": 40.8740503, "lon": -73.9761230 }, + { "lat": 40.8740774, "lon": -73.9755350 }, + { "lat": 40.8739011, "lon": -73.9752520 }, + { "lat": 40.8735613, "lon": -73.9748130 }, + { "lat": 40.8735200, "lon": -73.9746987 }, + { "lat": 40.8734904, "lon": -73.9744384 } + ], + "tags": { + "highway": "residential", + "name": "Phelps Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Phelps", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11572056, + "bounds": { + "minlat": 40.8410120, + "minlon": -74.0020292, + "maxlat": 40.8421335, + "maxlon": -74.0000910 + }, + "nodes": [ + 103179311, + 5976777471, + 8605599073, + 12016147318, + 12016147319, + 12016147320, + 103170135 + ], + "geometry": [ + { "lat": 40.8410120, "lon": -74.0000910 }, + { "lat": 40.8418605, "lon": -74.0015507 }, + { "lat": 40.8419034, "lon": -74.0016221 }, + { "lat": 40.8420569, "lon": -74.0018829 }, + { "lat": 40.8420773, "lon": -74.0019195 }, + { "lat": 40.8421062, "lon": -74.0019740 }, + { "lat": 40.8421335, "lon": -74.0020292 } + ], + "tags": { + "highway": "residential", + "name": "East Harriet Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harriet", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11572069, + "bounds": { + "minlat": 40.8493980, + "minlon": -74.0203405, + "maxlat": 40.8502312, + "maxlon": -74.0178980 + }, + "nodes": [ + 530805574, + 299380732, + 103179396, + 6801941577, + 103177560, + 4207205276 + ], + "geometry": [ + { "lat": 40.8493980, "lon": -74.0178980 }, + { "lat": 40.8497511, "lon": -74.0189367 }, + { "lat": 40.8497962, "lon": -74.0190693 }, + { "lat": 40.8498607, "lon": -74.0192497 }, + { "lat": 40.8501936, "lon": -74.0202318 }, + { "lat": 40.8502312, "lon": -74.0203405 } + ], + "tags": { + "highway": "secondary", + "name": "Emerson Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Emerson", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11572107, + "bounds": { + "minlat": 40.8622670, + "minlon": -74.0203970, + "maxlat": 40.8649090, + "maxlon": -74.0195610 + }, + "nodes": [ + 103179633, + 103162012, + 103179629, + 103179627, + 103156004 + ], + "geometry": [ + { "lat": 40.8649090, "lon": -74.0195610 }, + { "lat": 40.8642590, "lon": -74.0197190 }, + { "lat": 40.8634910, "lon": -74.0199570 }, + { "lat": 40.8628590, "lon": -74.0201620 }, + { "lat": 40.8622670, "lon": -74.0203970 } + ], + "tags": { + "highway": "residential", + "name": "Cutter Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cutter", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11572119, + "bounds": { + "minlat": 40.8094749, + "minlon": -73.9901626, + "maxlat": 40.8096720, + "maxlon": -73.9894234 + }, + "nodes": [ + 103179723, + 103179724, + 5482328552, + 103137037 + ], + "geometry": [ + { "lat": 40.8096720, "lon": -73.9901626 }, + { "lat": 40.8095542, "lon": -73.9897871 }, + { "lat": 40.8095317, "lon": -73.9896841 }, + { "lat": 40.8094749, "lon": -73.9894234 } + ], + "tags": { + "highway": "residential", + "name": "Thompson Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Thompson", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11572121, + "bounds": { + "minlat": 40.8098140, + "minlon": -73.9906690, + "maxlat": 40.8101050, + "maxlon": -73.9899892 + }, + "nodes": [ + 103179726, + 103179727, + 103179728 + ], + "geometry": [ + { "lat": 40.8098625, "lon": -73.9899892 }, + { "lat": 40.8101050, "lon": -73.9904030 }, + { "lat": 40.8098140, "lon": -73.9906690 } + ], + "tags": { + "highway": "residential", + "name": "Thompson Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Thompson", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11572147, + "bounds": { + "minlat": 40.8770814, + "minlon": -73.9605768, + "maxlat": 40.8878690, + "maxlon": -73.9515436 + }, + "nodes": [ + 103179926, + 103179928, + 103179930, + 103179932, + 103179934, + 10059739073, + 103179936, + 103179938, + 103179940, + 5108513277, + 103179942, + 103179944, + 7115788432, + 103179946, + 7690668265, + 9239519770, + 12367941763, + 103179948, + 103179950, + 12367941764, + 103131048, + 103179952, + 103152984, + 103162316, + 103179955, + 103179957, + 8219187249, + 103121083, + 103179959, + 103179961 + ], + "geometry": [ + { "lat": 40.8770814, "lon": -73.9604164 }, + { "lat": 40.8771248, "lon": -73.9604891 }, + { "lat": 40.8771669, "lon": -73.9605407 }, + { "lat": 40.8772094, "lon": -73.9605738 }, + { "lat": 40.8772572, "lon": -73.9605768 }, + { "lat": 40.8773029, "lon": -73.9605664 }, + { "lat": 40.8784198, "lon": -73.9596800 }, + { "lat": 40.8800566, "lon": -73.9583570 }, + { "lat": 40.8809565, "lon": -73.9576328 }, + { "lat": 40.8811881, "lon": -73.9574379 }, + { "lat": 40.8814500, "lon": -73.9572244 }, + { "lat": 40.8816516, "lon": -73.9570607 }, + { "lat": 40.8822260, "lon": -73.9565902 }, + { "lat": 40.8823399, "lon": -73.9564997 }, + { "lat": 40.8827650, "lon": -73.9561453 }, + { "lat": 40.8830549, "lon": -73.9559174 }, + { "lat": 40.8830774, "lon": -73.9558981 }, + { "lat": 40.8831437, "lon": -73.9558426 }, + { "lat": 40.8831999, "lon": -73.9557910 }, + { "lat": 40.8832268, "lon": -73.9557683 }, + { "lat": 40.8836039, "lon": -73.9554246 }, + { "lat": 40.8843777, "lon": -73.9547200 }, + { "lat": 40.8846532, "lon": -73.9544628 }, + { "lat": 40.8850701, "lon": -73.9540846 }, + { "lat": 40.8852148, "lon": -73.9539379 }, + { "lat": 40.8854743, "lon": -73.9537077 }, + { "lat": 40.8858172, "lon": -73.9533979 }, + { "lat": 40.8861712, "lon": -73.9530770 }, + { "lat": 40.8870178, "lon": -73.9523092 }, + { "lat": 40.8878690, "lon": -73.9515436 } + ], + "tags": { + "highway": "residential", + "name": "Summit Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Summit", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11572158, + "bounds": { + "minlat": 40.8690173, + "minlon": -73.9676724, + "maxlat": 40.8715912, + "maxlon": -73.9651292 + }, + "nodes": [ + 103180036, + 440215024, + 103180038, + 103180048 + ], + "geometry": [ + { "lat": 40.8715912, "lon": -73.9651292 }, + { "lat": 40.8700616, "lon": -73.9666491 }, + { "lat": 40.8693174, "lon": -73.9673993 }, + { "lat": 40.8690173, "lon": -73.9676724 } + ], + "tags": { + "highway": "residential", + "name": "Summit Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Summit", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11572160, + "bounds": { + "minlat": 40.8309040, + "minlon": -74.0077060, + "maxlat": 40.8319518, + "maxlon": -74.0071534 + }, + "nodes": [ + 103180053, + 103180055, + 103180057, + 103180059, + 103180061, + 103180063, + 103180065, + 103180068, + 103180070, + 103180073, + 103180075 + ], + "geometry": [ + { "lat": 40.8309040, "lon": -74.0071710 }, + { "lat": 40.8311220, "lon": -74.0075960 }, + { "lat": 40.8311660, "lon": -74.0076440 }, + { "lat": 40.8312270, "lon": -74.0076840 }, + { "lat": 40.8312930, "lon": -74.0077050 }, + { "lat": 40.8313660, "lon": -74.0077060 }, + { "lat": 40.8314320, "lon": -74.0076850 }, + { "lat": 40.8314970, "lon": -74.0076420 }, + { "lat": 40.8315450, "lon": -74.0075900 }, + { "lat": 40.8315960, "lon": -74.0074980 }, + { "lat": 40.8319518, "lon": -74.0071534 } + ], + "tags": { + "highway": "residential", + "name": "Linden Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linden", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11572178, + "bounds": { + "minlat": 40.8777834, + "minlon": -73.9519019, + "maxlat": 40.8786571, + "maxlon": -73.9503907 + }, + "nodes": [ + 103180322, + 8374477620, + 103180324 + ], + "geometry": [ + { "lat": 40.8777834, "lon": -73.9503907 }, + { "lat": 40.8782881, "lon": -73.9512637 }, + { "lat": 40.8786571, "lon": -73.9519019 } + ], + "tags": { + "highway": "residential", + "name": "Clendinen Place", + "name_1": "Anon Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anon", + "tiger:name_base_1": "Clendinen", + "tiger:name_type": "St", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11572232, + "bounds": { + "minlat": 40.8623067, + "minlon": -73.9949692, + "maxlat": 40.8644601, + "maxlon": -73.9929817 + }, + "nodes": [ + 103146278, + 10268664679, + 103180882, + 103180884, + 6126762887, + 6126762888, + 10243168169, + 103180886 + ], + "geometry": [ + { "lat": 40.8623067, "lon": -73.9949692 }, + { "lat": 40.8630827, "lon": -73.9942006 }, + { "lat": 40.8631414, "lon": -73.9941425 }, + { "lat": 40.8633351, "lon": -73.9939507 }, + { "lat": 40.8640258, "lon": -73.9933654 }, + { "lat": 40.8641648, "lon": -73.9932342 }, + { "lat": 40.8643785, "lon": -73.9930473 }, + { "lat": 40.8644601, "lon": -73.9929817 } + ], + "tags": { + "highway": "residential", + "name": "Spring Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Spring", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11572236, + "bounds": { + "minlat": 40.8761633, + "minlon": -74.0064753, + "maxlat": 40.8772259, + "maxlon": -74.0059022 + }, + "nodes": [ + 103177141, + 103165522 + ], + "geometry": [ + { "lat": 40.8761633, "lon": -74.0064753 }, + { "lat": 40.8772259, "lon": -74.0059022 } + ], + "tags": { + "highway": "residential", + "name": "Spring Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Spring", + "tiger:name_type": "St", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11572329, + "bounds": { + "minlat": 40.8800566, + "minlon": -73.9589224, + "maxlat": 40.8813996, + "maxlon": -73.9583570 + }, + "nodes": [ + 103179938, + 103181555, + 8219172711, + 103181557, + 103181559, + 103181561, + 103181563, + 103181565, + 103181566 + ], + "geometry": [ + { "lat": 40.8800566, "lon": -73.9583570 }, + { "lat": 40.8801200, "lon": -73.9584906 }, + { "lat": 40.8802132, "lon": -73.9586594 }, + { "lat": 40.8802625, "lon": -73.9587486 }, + { "lat": 40.8803928, "lon": -73.9588892 }, + { "lat": 40.8806118, "lon": -73.9589224 }, + { "lat": 40.8808738, "lon": -73.9588798 }, + { "lat": 40.8812463, "lon": -73.9588210 }, + { "lat": 40.8813996, "lon": -73.9587265 } + ], + "tags": { + "highway": "residential", + "name": "Daniel Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Daniel", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11572346, + "bounds": { + "minlat": 40.8329150, + "minlon": -73.9764360, + "maxlat": 40.8368924, + "maxlon": -73.9759670 + }, + "nodes": [ + 103181647, + 103181649, + 103181650, + 103181651, + 103181652, + 103181653, + 103181654, + 103181656, + 103181658, + 103093099, + 103181659, + 103181660, + 103181661, + 103181663, + 103181664, + 103181666, + 103181667, + 103181668, + 103181669 + ], + "geometry": [ + { "lat": 40.8329150, "lon": -73.9764360 }, + { "lat": 40.8330980, "lon": -73.9763140 }, + { "lat": 40.8332430, "lon": -73.9762430 }, + { "lat": 40.8334230, "lon": -73.9761800 }, + { "lat": 40.8335760, "lon": -73.9761470 }, + { "lat": 40.8337310, "lon": -73.9761320 }, + { "lat": 40.8338440, "lon": -73.9761320 }, + { "lat": 40.8345040, "lon": -73.9761790 }, + { "lat": 40.8346680, "lon": -73.9761730 }, + { "lat": 40.8350620, "lon": -73.9761260 }, + { "lat": 40.8354020, "lon": -73.9760870 }, + { "lat": 40.8355620, "lon": -73.9760970 }, + { "lat": 40.8356940, "lon": -73.9761220 }, + { "lat": 40.8358700, "lon": -73.9761700 }, + { "lat": 40.8360120, "lon": -73.9761890 }, + { "lat": 40.8361310, "lon": -73.9761910 }, + { "lat": 40.8362720, "lon": -73.9761740 }, + { "lat": 40.8364120, "lon": -73.9761380 }, + { "lat": 40.8368924, "lon": -73.9759670 } + ], + "tags": { + "highway": "residential", + "name": "Buckingham Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Buckingham", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11572359, + "bounds": { + "minlat": 40.8058254, + "minlon": -73.9931633, + "maxlat": 40.8071909, + "maxlon": -73.9922650 + }, + "nodes": [ + 103136353, + 477426172, + 103181683, + 7069076341, + 7069076338, + 103181685, + 7069076335, + 3480340645, + 752618665, + 752618668, + 11071533434, + 3480338644, + 752618676 + ], + "geometry": [ + { "lat": 40.8058254, "lon": -73.9931633 }, + { "lat": 40.8061385, "lon": -73.9930360 }, + { "lat": 40.8061694, "lon": -73.9930235 }, + { "lat": 40.8062040, "lon": -73.9930090 }, + { "lat": 40.8065067, "lon": -73.9928821 }, + { "lat": 40.8066620, "lon": -73.9928170 }, + { "lat": 40.8069020, "lon": -73.9926742 }, + { "lat": 40.8069447, "lon": -73.9926488 }, + { "lat": 40.8070181, "lon": -73.9926051 }, + { "lat": 40.8071247, "lon": -73.9925424 }, + { "lat": 40.8071613, "lon": -73.9924690 }, + { "lat": 40.8071785, "lon": -73.9923743 }, + { "lat": 40.8071909, "lon": -73.9922650 } + ], + "tags": { + "highway": "residential", + "name": "Old River Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old River", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11572387, + "bounds": { + "minlat": 40.8182822, + "minlon": -74.0010022, + "maxlat": 40.8188495, + "maxlon": -73.9998427 + }, + "nodes": [ + 103166201, + 9950909141, + 9950909147, + 103147934 + ], + "geometry": [ + { "lat": 40.8182822, "lon": -73.9998427 }, + { "lat": 40.8183158, "lon": -73.9999111 }, + { "lat": 40.8188064, "lon": -74.0009095 }, + { "lat": 40.8188495, "lon": -74.0010022 } + ], + "tags": { + "highway": "residential", + "name": "Westview Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Westview", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11572388, + "bounds": { + "minlat": 40.8648290, + "minlon": -73.9692755, + "maxlat": 40.8660652, + "maxlon": -73.9671640 + }, + "nodes": [ + 103132995, + 7384124199, + 7384124220, + 7384124222, + 7384124215, + 7384124196, + 103180043 + ], + "geometry": [ + { "lat": 40.8648290, "lon": -73.9671640 }, + { "lat": 40.8651031, "lon": -73.9676321 }, + { "lat": 40.8651833, "lon": -73.9677691 }, + { "lat": 40.8652289, "lon": -73.9678471 }, + { "lat": 40.8654117, "lon": -73.9681592 }, + { "lat": 40.8654321, "lon": -73.9681941 }, + { "lat": 40.8660652, "lon": -73.9692755 } + ], + "tags": { + "highway": "residential", + "name": "Westview Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Westview", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11572425, + "bounds": { + "minlat": 40.8436270, + "minlon": -73.9786480, + "maxlat": 40.8465330, + "maxlon": -73.9728210 + }, + "nodes": [ + 103182286, + 7292367043, + 103182288, + 7292367022, + 103182290, + 103182292, + 103174581, + 103182294, + 5108604343, + 103182296 + ], + "geometry": [ + { "lat": 40.8436270, "lon": -73.9728210 }, + { "lat": 40.8436801, "lon": -73.9729203 }, + { "lat": 40.8444040, "lon": -73.9742730 }, + { "lat": 40.8452945, "lon": -73.9759343 }, + { "lat": 40.8453120, "lon": -73.9759670 }, + { "lat": 40.8454520, "lon": -73.9762300 }, + { "lat": 40.8462054, "lon": -73.9775792 }, + { "lat": 40.8464873, "lon": -73.9781182 }, + { "lat": 40.8465110, "lon": -73.9782052 }, + { "lat": 40.8465330, "lon": -73.9786480 } + ], + "tags": { + "highway": "residential", + "name": "Tremont Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Tremont", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11572437, + "bounds": { + "minlat": 40.8539093, + "minlon": -73.9868774, + "maxlat": 40.8546559, + "maxlon": -73.9854328 + }, + "nodes": [ + 103182433, + 103182435, + 10236688089, + 6441551288, + 440215063 + ], + "geometry": [ + { "lat": 40.8546553, "lon": -73.9868774 }, + { "lat": 40.8546559, "lon": -73.9867708 }, + { "lat": 40.8546180, "lon": -73.9867041 }, + { "lat": 40.8539191, "lon": -73.9854733 }, + { "lat": 40.8539093, "lon": -73.9854328 } + ], + "tags": { + "highway": "residential", + "name": "Charles Place", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Charles", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11572478, + "bounds": { + "minlat": 40.8462874, + "minlon": -73.9670407, + "maxlat": 40.8467233, + "maxlon": -73.9664674 + }, + "nodes": [ + 5106288674, + 7292367282, + 5106288679, + 5106288672, + 5106288683, + 103182839 + ], + "geometry": [ + { "lat": 40.8462874, "lon": -73.9664674 }, + { "lat": 40.8463096, "lon": -73.9665330 }, + { "lat": 40.8464784, "lon": -73.9670321 }, + { "lat": 40.8465369, "lon": -73.9670407 }, + { "lat": 40.8466059, "lon": -73.9670272 }, + { "lat": 40.8467233, "lon": -73.9669814 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Burdette", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11572479, + "bounds": { + "minlat": 40.8467842, + "minlon": -73.9669022, + "maxlat": 40.8469116, + "maxlon": -73.9663749 + }, + "nodes": [ + 5106288680, + 7292367280, + 103182840 + ], + "geometry": [ + { "lat": 40.8467842, "lon": -73.9663749 }, + { "lat": 40.8468021, "lon": -73.9664490 }, + { "lat": 40.8469116, "lon": -73.9669022 } + ], + "tags": { + "highway": "residential", + "name": "Burdette Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Burdette", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11572480, + "bounds": { + "minlat": 40.8265626, + "minlon": -73.9951030, + "maxlat": 40.8275695, + "maxlon": -73.9942555 + }, + "nodes": [ + 103182850, + 103135097, + 103150113 + ], + "geometry": [ + { "lat": 40.8265626, "lon": -73.9951030 }, + { "lat": 40.8270878, "lon": -73.9946615 }, + { "lat": 40.8275695, "lon": -73.9942555 } + ], + "tags": { + "highway": "residential", + "name": "Monroe Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Monroe", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11572481, + "bounds": { + "minlat": 40.8816965, + "minlon": -73.9997354, + "maxlat": 40.8818781, + "maxlon": -73.9996374 + }, + "nodes": [ + 103182854, + 6786804340, + 103182856 + ], + "geometry": [ + { "lat": 40.8816965, "lon": -73.9997354 }, + { "lat": 40.8818123, "lon": -73.9996729 }, + { "lat": 40.8818781, "lon": -73.9996374 } + ], + "tags": { + "highway": "residential", + "name": "Azalea Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Azalea", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11572645, + "bounds": { + "minlat": 40.8565070, + "minlon": -73.9776690, + "maxlat": 40.8572770, + "maxlon": -73.9768600 + }, + "nodes": [ + 103184386, + 103131988 + ], + "geometry": [ + { "lat": 40.8565070, "lon": -73.9776690 }, + { "lat": 40.8572770, "lon": -73.9768600 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Ellery Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ellery", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11572715, + "bounds": { + "minlat": 40.8679720, + "minlon": -74.0222191, + "maxlat": 40.8692723, + "maxlon": -74.0148140 + }, + "nodes": [ + 103184874, + 103184875, + 103184876, + 103184877, + 103184879, + 440205987, + 103184882 + ], + "geometry": [ + { "lat": 40.8679720, "lon": -74.0148140 }, + { "lat": 40.8683710, "lon": -74.0171570 }, + { "lat": 40.8687060, "lon": -74.0191260 }, + { "lat": 40.8689500, "lon": -74.0204340 }, + { "lat": 40.8691660, "lon": -74.0215920 }, + { "lat": 40.8691830, "lon": -74.0216880 }, + { "lat": 40.8692723, "lon": -74.0222191 } + ], + "tags": { + "highway": "residential", + "name": "Oak Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oak", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07603", + "tiger:zip_right": "07603" + } +}, +{ + "type": "way", + "id": 11572733, + "bounds": { + "minlat": 40.8250343, + "minlon": -74.0020414, + "maxlat": 40.8286879, + "maxlon": -73.9984595 + }, + "nodes": [ + 103184982, + 103160865, + 103184983, + 103184984, + 103184985, + 103169641, + 103184987, + 103184988 + ], + "geometry": [ + { "lat": 40.8250343, "lon": -74.0020414 }, + { "lat": 40.8255665, "lon": -74.0015243 }, + { "lat": 40.8261104, "lon": -74.0009692 }, + { "lat": 40.8264865, "lon": -74.0006320 }, + { "lat": 40.8267517, "lon": -74.0003480 }, + { "lat": 40.8271635, "lon": -73.9999424 }, + { "lat": 40.8279692, "lon": -73.9991812 }, + { "lat": 40.8286879, "lon": -73.9984595 } + ], + "tags": { + "highway": "residential", + "name": "Oak Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oak", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11572758, + "bounds": { + "minlat": 40.8291076, + "minlon": -73.9985188, + "maxlat": 40.8314600, + "maxlon": -73.9964870 + }, + "nodes": [ + 103185074, + 8530362407, + 103150128, + 9563617134, + 103150166, + 103185075, + 103185076, + 103185077, + 103101263 + ], + "geometry": [ + { "lat": 40.8291076, "lon": -73.9985188 }, + { "lat": 40.8291587, "lon": -73.9984826 }, + { "lat": 40.8297170, "lon": -73.9979070 }, + { "lat": 40.8297294, "lon": -73.9978942 }, + { "lat": 40.8298920, "lon": -73.9977270 }, + { "lat": 40.8303510, "lon": -73.9972540 }, + { "lat": 40.8305840, "lon": -73.9970610 }, + { "lat": 40.8308050, "lon": -73.9968990 }, + { "lat": 40.8314600, "lon": -73.9964870 } + ], + "tags": { + "highway": "residential", + "name": "Oak Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oak", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11572795, + "bounds": { + "minlat": 40.8538114, + "minlon": -73.9869431, + "maxlat": 40.8600710, + "maxlon": -73.9850200 + }, + "nodes": [ + 103155262, + 103182433, + 103135867, + 103185275, + 103185277, + 103185278, + 103185279, + 103185280, + 103185282, + 103185284, + 103185286, + 103185288, + 103185289, + 103185290, + 103185291, + 103126288, + 10122889690, + 103185292 + ], + "geometry": [ + { "lat": 40.8538114, "lon": -73.9869431 }, + { "lat": 40.8546553, "lon": -73.9868774 }, + { "lat": 40.8562373, "lon": -73.9866831 }, + { "lat": 40.8567680, "lon": -73.9866760 }, + { "lat": 40.8569670, "lon": -73.9866500 }, + { "lat": 40.8571790, "lon": -73.9866030 }, + { "lat": 40.8573890, "lon": -73.9865360 }, + { "lat": 40.8576990, "lon": -73.9864010 }, + { "lat": 40.8586973, "lon": -73.9859744 }, + { "lat": 40.8588990, "lon": -73.9858690 }, + { "lat": 40.8589990, "lon": -73.9858010 }, + { "lat": 40.8590900, "lon": -73.9857160 }, + { "lat": 40.8591490, "lon": -73.9856440 }, + { "lat": 40.8594570, "lon": -73.9853330 }, + { "lat": 40.8595690, "lon": -73.9852500 }, + { "lat": 40.8596840, "lon": -73.9851900 }, + { "lat": 40.8600131, "lon": -73.9850436 }, + { "lat": 40.8600710, "lon": -73.9850200 } + ], + "tags": { + "highway": "residential", + "name": "Paulin Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Paulin", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11572824, + "bounds": { + "minlat": 40.8763641, + "minlon": -73.9998596, + "maxlat": 40.8780290, + "maxlon": -73.9987100 + }, + "nodes": [ + 103185441, + 103185442, + 103185443 + ], + "geometry": [ + { "lat": 40.8763641, "lon": -73.9998596 }, + { "lat": 40.8780290, "lon": -73.9988660 }, + { "lat": 40.8779900, "lon": -73.9987100 } + ], + "tags": { + "highway": "residential", + "name": "Bryant Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bryant", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11572888, + "bounds": { + "minlat": 40.8587250, + "minlon": -73.9813380, + "maxlat": 40.8603480, + "maxlon": -73.9805780 + }, + "nodes": [ + 103185965, + 10122889637, + 103185967, + 103185969, + 103185971, + 103185972, + 103185973, + 103185974, + 103130789 + ], + "geometry": [ + { "lat": 40.8587250, "lon": -73.9813380 }, + { "lat": 40.8588254, "lon": -73.9812832 }, + { "lat": 40.8600680, "lon": -73.9805940 }, + { "lat": 40.8601290, "lon": -73.9805780 }, + { "lat": 40.8601960, "lon": -73.9805810 }, + { "lat": 40.8602500, "lon": -73.9805980 }, + { "lat": 40.8602960, "lon": -73.9806330 }, + { "lat": 40.8603320, "lon": -73.9806850 }, + { "lat": 40.8603480, "lon": -73.9807280 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Oratam Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oratam", + "tiger:name_type": "Ter", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11572919, + "bounds": { + "minlat": 40.8762341, + "minlon": -73.9589919, + "maxlat": 40.8772443, + "maxlon": -73.9581163 + }, + "nodes": [ + 103186181, + 103186182, + 10059739075, + 103172143 + ], + "geometry": [ + { "lat": 40.8762341, "lon": -73.9589919 }, + { "lat": 40.8765709, "lon": -73.9586544 }, + { "lat": 40.8771816, "lon": -73.9581664 }, + { "lat": 40.8772443, "lon": -73.9581163 } + ], + "tags": { + "highway": "residential", + "name": "Casper Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Casper", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11572938, + "bounds": { + "minlat": 40.8800544, + "minlon": -74.0045572, + "maxlat": 40.8829594, + "maxlon": -74.0029946 + }, + "nodes": [ + 103186256, + 103186257, + 103186258 + ], + "geometry": [ + { "lat": 40.8800544, "lon": -74.0045572 }, + { "lat": 40.8808830, "lon": -74.0040940 }, + { "lat": 40.8829594, "lon": -74.0029946 } + ], + "tags": { + "highway": "residential", + "name": "George Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "George", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11572942, + "bounds": { + "minlat": 40.8782275, + "minlon": -74.0055630, + "maxlat": 40.8793205, + "maxlon": -74.0050188 + }, + "nodes": [ + 103186274, + 103186275 + ], + "geometry": [ + { "lat": 40.8782275, "lon": -74.0055630 }, + { "lat": 40.8793205, "lon": -74.0050188 } + ], + "tags": { + "highway": "residential", + "name": "George Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "George", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11572967, + "bounds": { + "minlat": 40.8429805, + "minlon": -73.9787049, + "maxlat": 40.8456954, + "maxlon": -73.9731845 + }, + "nodes": [ + 103186452, + 103186451, + 5108617523, + 103174579, + 6964899070, + 7468464592, + 7468464621, + 7468464595, + 7468464624, + 103186449, + 103186447, + 7292367023, + 103186445, + 7292367044, + 103186444 + ], + "geometry": [ + { "lat": 40.8456954, "lon": -73.9787049 }, + { "lat": 40.8456933, "lon": -73.9782403 }, + { "lat": 40.8456534, "lon": -73.9781705 }, + { "lat": 40.8455798, "lon": -73.9780275 }, + { "lat": 40.8455400, "lon": -73.9779225 }, + { "lat": 40.8453067, "lon": -73.9774837 }, + { "lat": 40.8452889, "lon": -73.9774503 }, + { "lat": 40.8451974, "lon": -73.9772783 }, + { "lat": 40.8451734, "lon": -73.9772330 }, + { "lat": 40.8448970, "lon": -73.9767133 }, + { "lat": 40.8447663, "lon": -73.9764622 }, + { "lat": 40.8447478, "lon": -73.9764296 }, + { "lat": 40.8438300, "lon": -73.9748100 }, + { "lat": 40.8430344, "lon": -73.9732877 }, + { "lat": 40.8429805, "lon": -73.9731845 } + ], + "tags": { + "highway": "residential", + "name": "Elsmere Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elsmere", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11573000, + "bounds": { + "minlat": 40.8531220, + "minlon": -73.9958780, + "maxlat": 40.8545200, + "maxlon": -73.9944680 + }, + "nodes": [ + 103137592, + 10122889638, + 440215452 + ], + "geometry": [ + { "lat": 40.8531220, "lon": -73.9958780 }, + { "lat": 40.8544754, "lon": -73.9945158 }, + { "lat": 40.8545200, "lon": -73.9944680 } + ], + "tags": { + "highway": "residential", + "name": "Orchard Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Orchard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11573061, + "bounds": { + "minlat": 40.8814175, + "minlon": -73.9999801, + "maxlat": 40.8826060, + "maxlon": -73.9978970 + }, + "nodes": [ + 103187062, + 103187064, + 103187066, + 103187068, + 103187069, + 103187071, + 103187073, + 103187075, + 103187076, + 103187077, + 103187078, + 103187079, + 103187080, + 103187082, + 103187083, + 103187084 + ], + "geometry": [ + { "lat": 40.8819885, "lon": -73.9999801 }, + { "lat": 40.8825100, "lon": -73.9996810 }, + { "lat": 40.8825520, "lon": -73.9996400 }, + { "lat": 40.8825830, "lon": -73.9995850 }, + { "lat": 40.8826010, "lon": -73.9995260 }, + { "lat": 40.8826060, "lon": -73.9994580 }, + { "lat": 40.8825990, "lon": -73.9993990 }, + { "lat": 40.8823790, "lon": -73.9986920 }, + { "lat": 40.8821770, "lon": -73.9980530 }, + { "lat": 40.8821400, "lon": -73.9979890 }, + { "lat": 40.8820960, "lon": -73.9979420 }, + { "lat": 40.8820400, "lon": -73.9979090 }, + { "lat": 40.8819800, "lon": -73.9978970 }, + { "lat": 40.8819270, "lon": -73.9979030 }, + { "lat": 40.8818740, "lon": -73.9979260 }, + { "lat": 40.8814175, "lon": -73.9982076 } + ], + "tags": { + "highway": "residential", + "name": "Barbara Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Barbara", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11573096, + "bounds": { + "minlat": 40.8724560, + "minlon": -74.0195920, + "maxlat": 40.8765930, + "maxlon": -74.0168130 + }, + "nodes": [ + 103187261, + 7137114078, + 103187263, + 103187265, + 103150121 + ], + "geometry": [ + { "lat": 40.8724560, "lon": -74.0195920 }, + { "lat": 40.8728481, "lon": -74.0193418 }, + { "lat": 40.8743506, "lon": -74.0183829 }, + { "lat": 40.8758720, "lon": -74.0173040 }, + { "lat": 40.8765930, "lon": -74.0168130 } + ], + "tags": { + "highway": "residential", + "name": "Beech Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Beech", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11573128, + "bounds": { + "minlat": 40.8808185, + "minlon": -73.9814777, + "maxlat": 40.8814095, + "maxlon": -73.9804372 + }, + "nodes": [ + 477419284, + 8219449650, + 12023838846, + 103187439 + ], + "geometry": [ + { "lat": 40.8814095, "lon": -73.9814777 }, + { "lat": 40.8810932, "lon": -73.9809218 }, + { "lat": 40.8809077, "lon": -73.9805944 }, + { "lat": 40.8808185, "lon": -73.9804372 } + ], + "tags": { + "highway": "unclassified", + "name": "Bancker Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bancker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11573158, + "bounds": { + "minlat": 40.8313989, + "minlon": -73.9888446, + "maxlat": 40.8335646, + "maxlon": -73.9850921 + }, + "nodes": [ + 103187733, + 103187731, + 103187728, + 103187724, + 103187722, + 103187720, + 103187718, + 103187716, + 103187714, + 103187712, + 103187710, + 6964929504, + 103187708, + 6964929525, + 103187707, + 6964929528, + 103187706, + 7542102272, + 6964929506, + 103187705, + 103149446 + ], + "geometry": [ + { "lat": 40.8335646, "lon": -73.9888446 }, + { "lat": 40.8331897, "lon": -73.9883682 }, + { "lat": 40.8330342, "lon": -73.9881519 }, + { "lat": 40.8329103, "lon": -73.9879780 }, + { "lat": 40.8327813, "lon": -73.9877606 }, + { "lat": 40.8326974, "lon": -73.9875922 }, + { "lat": 40.8326324, "lon": -73.9874672 }, + { "lat": 40.8322578, "lon": -73.9867934 }, + { "lat": 40.8321321, "lon": -73.9865957 }, + { "lat": 40.8319593, "lon": -73.9863180 }, + { "lat": 40.8318693, "lon": -73.9861093 }, + { "lat": 40.8318530, "lon": -73.9860716 }, + { "lat": 40.8317822, "lon": -73.9859077 }, + { "lat": 40.8317572, "lon": -73.9858469 }, + { "lat": 40.8317112, "lon": -73.9857346 }, + { "lat": 40.8316865, "lon": -73.9856878 }, + { "lat": 40.8316575, "lon": -73.9856288 }, + { "lat": 40.8316395, "lon": -73.9855966 }, + { "lat": 40.8315754, "lon": -73.9854819 }, + { "lat": 40.8314493, "lon": -73.9852563 }, + { "lat": 40.8313989, "lon": -73.9850921 } + ], + "tags": { + "highway": "residential", + "name": "Aurora Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Aurora", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11573278, + "bounds": { + "minlat": 40.8528043, + "minlon": -73.9722970, + "maxlat": 40.8536970, + "maxlon": -73.9709259 + }, + "nodes": [ + 103189365, + 103174601, + 5362322610, + 6964899050, + 5362322591, + 5362322588, + 103189367 + ], + "geometry": [ + { "lat": 40.8528043, "lon": -73.9709259 }, + { "lat": 40.8530840, "lon": -73.9713620 }, + { "lat": 40.8532672, "lon": -73.9716414 }, + { "lat": 40.8533614, "lon": -73.9717850 }, + { "lat": 40.8533721, "lon": -73.9718014 }, + { "lat": 40.8535274, "lon": -73.9720384 }, + { "lat": 40.8536970, "lon": -73.9722970 } + ], + "tags": { + "highway": "unclassified", + "name": "Guntzer Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Guntzer", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11573288, + "bounds": { + "minlat": 40.8682888, + "minlon": -73.9708523, + "maxlat": 40.8695191, + "maxlon": -73.9689793 + }, + "nodes": [ + 103109091, + 103140719, + 3301540372, + 103189412 + ], + "geometry": [ + { "lat": 40.8682888, "lon": -73.9708523 }, + { "lat": 40.8685670, "lon": -73.9705650 }, + { "lat": 40.8691232, "lon": -73.9697893 }, + { "lat": 40.8695191, "lon": -73.9689793 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Oak Trail Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oak Trail", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11573292, + "bounds": { + "minlat": 40.8427322, + "minlon": -73.9948578, + "maxlat": 40.8466279, + "maxlon": -73.9909698 + }, + "nodes": [ + 103100650, + 12020325888, + 103189429, + 103189431, + 103189433 + ], + "geometry": [ + { "lat": 40.8427322, "lon": -73.9948578 }, + { "lat": 40.8427974, "lon": -73.9947931 }, + { "lat": 40.8440785, "lon": -73.9935209 }, + { "lat": 40.8452442, "lon": -73.9923594 }, + { "lat": 40.8466279, "lon": -73.9909698 } + ], + "tags": { + "highway": "secondary", + "name": "5th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11573294, + "bounds": { + "minlat": 40.8626962, + "minlon": -73.9621708, + "maxlat": 40.8636889, + "maxlon": -73.9611159 + }, + "nodes": [ + 103189449, + 5108198965, + 103189451 + ], + "geometry": [ + { "lat": 40.8626962, "lon": -73.9621708 }, + { "lat": 40.8633031, "lon": -73.9615259 }, + { "lat": 40.8636889, "lon": -73.9611159 } + ], + "tags": { + "highway": "residential", + "name": "5th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11573320, + "bounds": { + "minlat": 40.8160786, + "minlon": -73.9974566, + "maxlat": 40.8182920, + "maxlon": -73.9954680 + }, + "nodes": [ + 103189631, + 103189633, + 103189636 + ], + "geometry": [ + { "lat": 40.8160786, "lon": -73.9974566 }, + { "lat": 40.8173350, "lon": -73.9963230 }, + { "lat": 40.8182920, "lon": -73.9954680 } + ], + "tags": { + "highway": "residential", + "name": "5th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11573321, + "bounds": { + "minlat": 40.8614778, + "minlon": -73.9629529, + "maxlat": 40.8627200, + "maxlon": -73.9622100 + }, + "nodes": [ + 103189642, + 7393424539, + 8668889390, + 103189644, + 103189646 + ], + "geometry": [ + { "lat": 40.8614778, "lon": -73.9629529 }, + { "lat": 40.8616911, "lon": -73.9628271 }, + { "lat": 40.8617689, "lon": -73.9627812 }, + { "lat": 40.8620730, "lon": -73.9626020 }, + { "lat": 40.8627200, "lon": -73.9622100 } + ], + "tags": { + "highway": "residential", + "name": "5th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11573415, + "bounds": { + "minlat": 40.8349430, + "minlon": -73.9864210, + "maxlat": 40.8351000, + "maxlon": -73.9856130 + }, + "nodes": [ + 103125438, + 103190777, + 103190778, + 103190779, + 103190781, + 103190783 + ], + "geometry": [ + { "lat": 40.8351000, "lon": -73.9856130 }, + { "lat": 40.8350550, "lon": -73.9856950 }, + { "lat": 40.8350140, "lon": -73.9857920 }, + { "lat": 40.8349810, "lon": -73.9859100 }, + { "lat": 40.8349640, "lon": -73.9860190 }, + { "lat": 40.8349430, "lon": -73.9864210 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "ref": "NJ 5", + "sidewalk": "both", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 5", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11573421, + "bounds": { + "minlat": 40.8397763, + "minlon": -74.0039030, + "maxlat": 40.8406132, + "maxlon": -73.9978923 + }, + "nodes": [ + 103156988, + 12016147294, + 12016147293, + 12016147298, + 12016147299, + 103190886, + 12016147300, + 103190887, + 12016147303, + 103190889, + 12016147304, + 12016293127, + 103190891, + 12016293130, + 12016293138, + 103159306, + 12016293143, + 12016293142, + 103190893, + 12016293149, + 103190895, + 12016315296, + 103179313, + 12016315298, + 12016315300, + 103190899 + ], + "geometry": [ + { "lat": 40.8397763, "lon": -74.0039030 }, + { "lat": 40.8398848, "lon": -74.0036107 }, + { "lat": 40.8398965, "lon": -74.0035727 }, + { "lat": 40.8399217, "lon": -74.0034781 }, + { "lat": 40.8399440, "lon": -74.0033803 }, + { "lat": 40.8399655, "lon": -74.0032703 }, + { "lat": 40.8399813, "lon": -74.0031622 }, + { "lat": 40.8399957, "lon": -74.0030370 }, + { "lat": 40.8400083, "lon": -74.0029307 }, + { "lat": 40.8400209, "lon": -74.0028244 }, + { "lat": 40.8400316, "lon": -74.0027101 }, + { "lat": 40.8401469, "lon": -74.0016711 }, + { "lat": 40.8401586, "lon": -74.0015657 }, + { "lat": 40.8401694, "lon": -74.0014656 }, + { "lat": 40.8402210, "lon": -74.0009851 }, + { "lat": 40.8402333, "lon": -74.0008709 }, + { "lat": 40.8402473, "lon": -74.0007588 }, + { "lat": 40.8402883, "lon": -74.0004310 }, + { "lat": 40.8403028, "lon": -74.0003253 }, + { "lat": 40.8403177, "lon": -74.0002157 }, + { "lat": 40.8404110, "lon": -73.9994533 }, + { "lat": 40.8404457, "lon": -73.9992068 }, + { "lat": 40.8404609, "lon": -73.9990982 }, + { "lat": 40.8404734, "lon": -73.9989902 }, + { "lat": 40.8406028, "lon": -73.9979740 }, + { "lat": 40.8406132, "lon": -73.9978923 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "30 mph", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 5", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11573424, + "bounds": { + "minlat": 40.8315410, + "minlon": -73.9789077, + "maxlat": 40.8316769, + "maxlon": -73.9782560 + }, + "nodes": [ + 103191038, + 13525443302, + 103190992 + ], + "geometry": [ + { "lat": 40.8316769, "lon": -73.9789077 }, + { "lat": 40.8316443, "lon": -73.9787513 }, + { "lat": 40.8315410, "lon": -73.9782560 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "cycleway:both": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "State Route 5", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 5", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11573467, + "bounds": { + "minlat": 40.8469480, + "minlon": -74.0022237, + "maxlat": 40.8490208, + "maxlon": -73.9985659 + }, + "nodes": [ + 103191323, + 12537534799, + 5970473406, + 5970473925, + 5970473923, + 5970473398, + 5976782473, + 103166971, + 103191325, + 103191327 + ], + "geometry": [ + { "lat": 40.8469480, "lon": -73.9985659 }, + { "lat": 40.8470091, "lon": -73.9987034 }, + { "lat": 40.8471131, "lon": -73.9988855 }, + { "lat": 40.8471911, "lon": -73.9990219 }, + { "lat": 40.8472464, "lon": -73.9991187 }, + { "lat": 40.8472688, "lon": -73.9991579 }, + { "lat": 40.8474173, "lon": -73.9994178 }, + { "lat": 40.8479647, "lon": -74.0003757 }, + { "lat": 40.8486483, "lon": -74.0015571 }, + { "lat": 40.8490208, "lon": -74.0022237 } + ], + "tags": { + "highway": "residential", + "name": "Brinkerhoff Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brinkerhoff", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11573556, + "bounds": { + "minlat": 40.8085858, + "minlon": -73.9937732, + "maxlat": 40.8095610, + "maxlon": -73.9932138 + }, + "nodes": [ + 103132694, + 103191791, + 103191792, + 103191794, + 103159358 + ], + "geometry": [ + { "lat": 40.8085858, "lon": -73.9937732 }, + { "lat": 40.8087380, "lon": -73.9937040 }, + { "lat": 40.8088350, "lon": -73.9936920 }, + { "lat": 40.8089100, "lon": -73.9936530 }, + { "lat": 40.8095610, "lon": -73.9932138 } + ], + "tags": { + "highway": "residential", + "name": "Cedar Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cedar", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11573558, + "bounds": { + "minlat": 40.8497195, + "minlon": -73.9677770, + "maxlat": 40.8501898, + "maxlon": -73.9658752 + }, + "nodes": [ + 103191201, + 12344808184, + 12072560974, + 103191796, + 103134229 + ], + "geometry": [ + { "lat": 40.8497195, "lon": -73.9658752 }, + { "lat": 40.8497371, "lon": -73.9658862 }, + { "lat": 40.8498137, "lon": -73.9661757 }, + { "lat": 40.8498117, "lon": -73.9662489 }, + { "lat": 40.8501898, "lon": -73.9677770 } + ], + "tags": { + "highway": "residential", + "name": "Cedar Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cedar", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11573560, + "bounds": { + "minlat": 40.8502316, + "minlon": -73.9660371, + "maxlat": 40.8507039, + "maxlon": -73.9658289 + }, + "nodes": [ + 9852775525, + 7111637703, + 5106307796, + 5449368209, + 103154290 + ], + "geometry": [ + { "lat": 40.8502316, "lon": -73.9660371 }, + { "lat": 40.8502666, "lon": -73.9660168 }, + { "lat": 40.8505753, "lon": -73.9658381 }, + { "lat": 40.8506296, "lon": -73.9658289 }, + { "lat": 40.8507039, "lon": -73.9658430 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Federspiel Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_type": "St", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left;through|right" + } +}, +{ + "type": "way", + "id": 11573564, + "bounds": { + "minlat": 40.8095179, + "minlon": -73.9930967, + "maxlat": 40.8109900, + "maxlon": -73.9920988 + }, + "nodes": [ + 103159355, + 7016571780, + 7627281582, + 7627281624, + 103191825, + 103191826 + ], + "geometry": [ + { "lat": 40.8095179, "lon": -73.9930967 }, + { "lat": 40.8097614, "lon": -73.9929406 }, + { "lat": 40.8099488, "lon": -73.9928170 }, + { "lat": 40.8099616, "lon": -73.9928085 }, + { "lat": 40.8104965, "lon": -73.9924512 }, + { "lat": 40.8109900, "lon": -73.9920988 } + ], + "tags": { + "highway": "residential", + "name": "Cedar Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cedar", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11573585, + "bounds": { + "minlat": 40.8699590, + "minlon": -73.9705720, + "maxlat": 40.8759053, + "maxlon": -73.9678081 + }, + "nodes": [ + 103191937, + 103191939, + 103191941, + 103191943, + 103191945, + 103191947, + 103191949, + 103191950, + 103191952, + 103191954, + 103191956, + 103191958, + 103191960, + 103191962, + 103191964, + 103191966, + 103191968, + 103191970, + 103191972, + 103191974, + 103191976, + 103191977, + 103191978 + ], + "geometry": [ + { "lat": 40.8759053, "lon": -73.9678081 }, + { "lat": 40.8740657, "lon": -73.9695604 }, + { "lat": 40.8735670, "lon": -73.9700430 }, + { "lat": 40.8733950, "lon": -73.9701830 }, + { "lat": 40.8732150, "lon": -73.9703030 }, + { "lat": 40.8730110, "lon": -73.9704090 }, + { "lat": 40.8728340, "lon": -73.9704790 }, + { "lat": 40.8726360, "lon": -73.9705330 }, + { "lat": 40.8724750, "lon": -73.9705600 }, + { "lat": 40.8723140, "lon": -73.9705720 }, + { "lat": 40.8721520, "lon": -73.9705690 }, + { "lat": 40.8719910, "lon": -73.9705520 }, + { "lat": 40.8718050, "lon": -73.9705130 }, + { "lat": 40.8716440, "lon": -73.9704630 }, + { "lat": 40.8714860, "lon": -73.9703980 }, + { "lat": 40.8712940, "lon": -73.9702970 }, + { "lat": 40.8711450, "lon": -73.9702000 }, + { "lat": 40.8710020, "lon": -73.9700900 }, + { "lat": 40.8708320, "lon": -73.9699350 }, + { "lat": 40.8706710, "lon": -73.9697580 }, + { "lat": 40.8705480, "lon": -73.9695960 }, + { "lat": 40.8704360, "lon": -73.9694210 }, + { "lat": 40.8699590, "lon": -73.9685770 } + ], + "tags": { + "highway": "residential", + "name": "Cumberland Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cumberland", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11573689, + "bounds": { + "minlat": 40.8137202, + "minlon": -73.9951677, + "maxlat": 40.8142452, + "maxlon": -73.9941745 + }, + "nodes": [ + 440208177, + 103105168, + 103192865 + ], + "geometry": [ + { "lat": 40.8137202, "lon": -73.9941745 }, + { "lat": 40.8140539, "lon": -73.9947916 }, + { "lat": 40.8142452, "lon": -73.9951677 } + ], + "tags": { + "highway": "residential", + "name": "Delano Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Delano", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11573691, + "bounds": { + "minlat": 40.8149432, + "minlon": -73.9985518, + "maxlat": 40.8160826, + "maxlon": -73.9963380 + }, + "nodes": [ + 103192874, + 13523912714, + 103192875 + ], + "geometry": [ + { "lat": 40.8149432, "lon": -73.9963380 }, + { "lat": 40.8149794, "lon": -73.9964083 }, + { "lat": 40.8160826, "lon": -73.9985518 } + ], + "tags": { + "highway": "residential", + "name": "Delano Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Delano", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11573752, + "bounds": { + "minlat": 40.8510140, + "minlon": -73.9811590, + "maxlat": 40.8521290, + "maxlon": -73.9800840 + }, + "nodes": [ + 103193279, + 103193281 + ], + "geometry": [ + { "lat": 40.8510140, "lon": -73.9811590 }, + { "lat": 40.8521290, "lon": -73.9800840 } + ], + "tags": { + "highway": "residential", + "name": "10th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "10th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11573753, + "bounds": { + "minlat": 40.8406257, + "minlon": -73.9912562, + "maxlat": 40.8461530, + "maxlon": -73.9855717 + }, + "nodes": [ + 103193287, + 103193289, + 103193291, + 103193293, + 103193295, + 103193297, + 12692250273, + 12692250272, + 12692250271, + 12692250270, + 103193299, + 12692250268, + 12692250269, + 103148046 + ], + "geometry": [ + { "lat": 40.8406257, "lon": -73.9912562 }, + { "lat": 40.8420155, "lon": -73.9899172 }, + { "lat": 40.8431468, "lon": -73.9887644 }, + { "lat": 40.8445250, "lon": -73.9873810 }, + { "lat": 40.8460573, "lon": -73.9858789 }, + { "lat": 40.8461133, "lon": -73.9858110 }, + { "lat": 40.8461353, "lon": -73.9857880 }, + { "lat": 40.8461428, "lon": -73.9857779 }, + { "lat": 40.8461480, "lon": -73.9857657 }, + { "lat": 40.8461514, "lon": -73.9857521 }, + { "lat": 40.8461530, "lon": -73.9857294 }, + { "lat": 40.8461502, "lon": -73.9857018 }, + { "lat": 40.8461423, "lon": -73.9856695 }, + { "lat": 40.8461203, "lon": -73.9855717 } + ], + "tags": { + "highway": "residential", + "name": "10th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "10th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11573759, + "bounds": { + "minlat": 40.8468510, + "minlon": -73.9850750, + "maxlat": 40.8493663, + "maxlon": -73.9825776 + }, + "nodes": [ + 103193338, + 4695808506, + 4695808504, + 5978949642, + 440215250, + 5978949643, + 7428253997, + 7428254022, + 103193342 + ], + "geometry": [ + { "lat": 40.8468510, "lon": -73.9850750 }, + { "lat": 40.8476498, "lon": -73.9842742 }, + { "lat": 40.8477827, "lon": -73.9841409 }, + { "lat": 40.8484284, "lon": -73.9834935 }, + { "lat": 40.8484691, "lon": -73.9834527 }, + { "lat": 40.8486733, "lon": -73.9832535 }, + { "lat": 40.8490077, "lon": -73.9829274 }, + { "lat": 40.8491094, "lon": -73.9828282 }, + { "lat": 40.8493663, "lon": -73.9825776 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "10th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "10th", + "tiger:name_type": "St", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11573771, + "bounds": { + "minlat": 40.8197864, + "minlon": -73.9996096, + "maxlat": 40.8202902, + "maxlon": -73.9991676 + }, + "nodes": [ + 103193405, + 12537534788, + 103193407 + ], + "geometry": [ + { "lat": 40.8197864, "lon": -73.9996096 }, + { "lat": 40.8202303, "lon": -73.9992202 }, + { "lat": 40.8202902, "lon": -73.9991676 } + ], + "tags": { + "highway": "residential", + "name": "10th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "10th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11573922, + "bounds": { + "minlat": 40.8732512, + "minlon": -73.9553625, + "maxlat": 40.8736919, + "maxlon": -73.9543183 + }, + "nodes": [ + 5108505884, + 5108505883, + 5108505891, + 103194599 + ], + "geometry": [ + { "lat": 40.8735805, "lon": -73.9543183 }, + { "lat": 40.8732512, "lon": -73.9546427 }, + { "lat": 40.8736469, "lon": -73.9553288 }, + { "lat": 40.8736919, "lon": -73.9553625 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Rose", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11573951, + "bounds": { + "minlat": 40.8524094, + "minlon": -73.9839221, + "maxlat": 40.8529537, + "maxlon": -73.9833570 + }, + "nodes": [ + 103111762, + 103177112 + ], + "geometry": [ + { "lat": 40.8529537, "lon": -73.9833570 }, + { "lat": 40.8524094, "lon": -73.9839221 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Village Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Village", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11573986, + "bounds": { + "minlat": 40.8165619, + "minlon": -73.9935262, + "maxlat": 40.8181525, + "maxlon": -73.9903640 + }, + "nodes": [ + 440208164, + 13524700372, + 7610853797, + 7610899824, + 103194936, + 103133899, + 7581460874, + 103194938, + 7610899809, + 103194940, + 103194942 + ], + "geometry": [ + { "lat": 40.8181525, "lon": -73.9935262 }, + { "lat": 40.8181127, "lon": -73.9934503 }, + { "lat": 40.8180005, "lon": -73.9932362 }, + { "lat": 40.8179431, "lon": -73.9931267 }, + { "lat": 40.8171712, "lon": -73.9916541 }, + { "lat": 40.8170409, "lon": -73.9913673 }, + { "lat": 40.8169502, "lon": -73.9911195 }, + { "lat": 40.8169410, "lon": -73.9910944 }, + { "lat": 40.8167824, "lon": -73.9907666 }, + { "lat": 40.8166283, "lon": -73.9904479 }, + { "lat": 40.8165619, "lon": -73.9903640 } + ], + "tags": { + "highway": "residential", + "name": "Jersey Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jersey", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11573991, + "bounds": { + "minlat": 40.8212690, + "minlon": -73.9998664, + "maxlat": 40.8214721, + "maxlon": -73.9994800 + }, + "nodes": [ + 103147940, + 10752415867, + 103194967 + ], + "geometry": [ + { "lat": 40.8212690, "lon": -73.9994800 }, + { "lat": 40.8213727, "lon": -73.9996768 }, + { "lat": 40.8214721, "lon": -73.9998664 } + ], + "tags": { + "highway": "residential", + "name": "Jersey Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jersey", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11574016, + "bounds": { + "minlat": 40.8497137, + "minlon": -73.9646517, + "maxlat": 40.8505392, + "maxlon": -73.9645110 + }, + "nodes": [ + 103195190, + 7930462137, + 103195191, + 7930462143, + 7930462140, + 5449437034 + ], + "geometry": [ + { "lat": 40.8497137, "lon": -73.9646517 }, + { "lat": 40.8499208, "lon": -73.9646003 }, + { "lat": 40.8501485, "lon": -73.9645653 }, + { "lat": 40.8502579, "lon": -73.9645488 }, + { "lat": 40.8503642, "lon": -73.9645333 }, + { "lat": 40.8505392, "lon": -73.9645110 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "oneway": "no", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 11574017, + "bounds": { + "minlat": 40.8211899, + "minlon": -73.9829434, + "maxlat": 40.8233747, + "maxlon": -73.9808000 + }, + "nodes": [ + 103150184, + 103195293, + 103195294, + 103195295, + 103162247 + ], + "geometry": [ + { "lat": 40.8211899, "lon": -73.9829434 }, + { "lat": 40.8217299, "lon": -73.9824206 }, + { "lat": 40.8222726, "lon": -73.9818833 }, + { "lat": 40.8228114, "lon": -73.9813507 }, + { "lat": 40.8233747, "lon": -73.9808000 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Hudson Terrace", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11574018, + "bounds": { + "minlat": 40.8300966, + "minlon": -73.9732122, + "maxlat": 40.8314037, + "maxlon": -73.9727945 + }, + "nodes": [ + 103131457, + 103195297, + 12068970309, + 103195298, + 103195299, + 103195300, + 103195301, + 103195302, + 103195303, + 103195304, + 1752676708 + ], + "geometry": [ + { "lat": 40.8300966, "lon": -73.9728552 }, + { "lat": 40.8301094, "lon": -73.9728306 }, + { "lat": 40.8301277, "lon": -73.9728124 }, + { "lat": 40.8301485, "lon": -73.9727999 }, + { "lat": 40.8301769, "lon": -73.9727945 }, + { "lat": 40.8304296, "lon": -73.9728355 }, + { "lat": 40.8306100, "lon": -73.9728965 }, + { "lat": 40.8309870, "lon": -73.9730720 }, + { "lat": 40.8312533, "lon": -73.9731931 }, + { "lat": 40.8313227, "lon": -73.9732122 }, + { "lat": 40.8314037, "lon": -73.9731568 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Terrace", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11574047, + "bounds": { + "minlat": 40.8353778, + "minlon": -74.0103670, + "maxlat": 40.8361050, + "maxlon": -74.0086990 + }, + "nodes": [ + 103195570, + 12016147254, + 12016147253, + 103195571 + ], + "geometry": [ + { "lat": 40.8353778, "lon": -74.0086990 }, + { "lat": 40.8354106, "lon": -74.0087770 }, + { "lat": 40.8354253, "lon": -74.0088107 }, + { "lat": 40.8361050, "lon": -74.0103670 } + ], + "tags": { + "highway": "residential", + "name": "Alexander Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Alexander", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11574062, + "bounds": { + "minlat": 40.8731759, + "minlon": -74.0152930, + "maxlat": 40.8740250, + "maxlon": -74.0145340 + }, + "nodes": [ + 103195637, + 103195640, + 103195642, + 103195643, + 103195644, + 103162987 + ], + "geometry": [ + { "lat": 40.8731759, "lon": -74.0152930 }, + { "lat": 40.8739820, "lon": -74.0147170 }, + { "lat": 40.8740110, "lon": -74.0146750 }, + { "lat": 40.8740250, "lon": -74.0146240 }, + { "lat": 40.8740250, "lon": -74.0145680 }, + { "lat": 40.8740160, "lon": -74.0145340 } + ], + "tags": { + "highway": "residential", + "name": "Rockledge Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Rockledge", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11574199, + "bounds": { + "minlat": 40.8265781, + "minlon": -73.9984845, + "maxlat": 40.8267768, + "maxlon": -73.9983052 + }, + "nodes": [ + 103196360, + 5341017983 + ], + "geometry": [ + { "lat": 40.8265781, "lon": -73.9984845 }, + { "lat": 40.8267768, "lon": -73.9983052 } + ], + "tags": { + "highway": "residential", + "name": "Studio Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Studio", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11574218, + "bounds": { + "minlat": 40.8205130, + "minlon": -73.9792751, + "maxlat": 40.8214769, + "maxlon": -73.9773989 + }, + "nodes": [ + 103137103, + 5662656748, + 3625859823, + 103115582 + ], + "geometry": [ + { "lat": 40.8205130, "lon": -73.9773989 }, + { "lat": 40.8207398, "lon": -73.9778875 }, + { "lat": 40.8209145, "lon": -73.9782164 }, + { "lat": 40.8214769, "lon": -73.9792751 } + ], + "tags": { + "highway": "residential", + "name": "Russell Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Russell", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11574219, + "bounds": { + "minlat": 40.8350040, + "minlon": -74.0136440, + "maxlat": 40.8362480, + "maxlon": -74.0125710 + }, + "nodes": [ + 103196582, + 103125770 + ], + "geometry": [ + { "lat": 40.8350040, "lon": -74.0136440 }, + { "lat": 40.8362480, "lon": -74.0125710 } + ], + "tags": { + "highway": "residential", + "name": "Russell Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Russell", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11574261, + "bounds": { + "minlat": 40.8264865, + "minlon": -74.0038198, + "maxlat": 40.8283639, + "maxlon": -74.0006320 + }, + "nodes": [ + 103184984, + 103196737, + 103196739, + 103196741, + 103196743, + 103196745, + 8430076119 + ], + "geometry": [ + { "lat": 40.8264865, "lon": -74.0006320 }, + { "lat": 40.8268780, "lon": -74.0013330 }, + { "lat": 40.8272060, "lon": -74.0019110 }, + { "lat": 40.8280108, "lon": -74.0032649 }, + { "lat": 40.8280674, "lon": -74.0033468 }, + { "lat": 40.8281394, "lon": -74.0034689 }, + { "lat": 40.8283639, "lon": -74.0038198 } + ], + "tags": { + "highway": "residential", + "name": "Hamilton Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hamilton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11574325, + "bounds": { + "minlat": 40.8238020, + "minlon": -73.9783251, + "maxlat": 40.8245840, + "maxlon": -73.9778354 + }, + "nodes": [ + 103115587, + 5362546551, + 103129142, + 12395876171, + 12395876170, + 12395876172, + 103129144 + ], + "geometry": [ + { "lat": 40.8238020, "lon": -73.9778354 }, + { "lat": 40.8240207, "lon": -73.9781857 }, + { "lat": 40.8240817, "lon": -73.9782683 }, + { "lat": 40.8241113, "lon": -73.9782966 }, + { "lat": 40.8241909, "lon": -73.9783220 }, + { "lat": 40.8242662, "lon": -73.9783251 }, + { "lat": 40.8245840, "lon": -73.9782750 } + ], + "tags": { + "highway": "residential", + "name": "Old Wood Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old Wood", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11574341, + "bounds": { + "minlat": 40.8783920, + "minlon": -74.0139935, + "maxlat": 40.8821025, + "maxlon": -74.0118871 + }, + "nodes": [ + 103197530, + 103197532, + 103125798, + 103159081, + 103197534, + 103197536, + 103197538, + 103197540, + 103197542, + 103197544, + 103197546 + ], + "geometry": [ + { "lat": 40.8783920, "lon": -74.0139935 }, + { "lat": 40.8790359, "lon": -74.0136662 }, + { "lat": 40.8797962, "lon": -74.0132746 }, + { "lat": 40.8801595, "lon": -74.0130792 }, + { "lat": 40.8805173, "lon": -74.0128941 }, + { "lat": 40.8811607, "lon": -74.0125522 }, + { "lat": 40.8816920, "lon": -74.0121980 }, + { "lat": 40.8818010, "lon": -74.0121327 }, + { "lat": 40.8818980, "lon": -74.0120692 }, + { "lat": 40.8820105, "lon": -74.0119839 }, + { "lat": 40.8821025, "lon": -74.0118871 } + ], + "tags": { + "highway": "residential", + "name": "Albin Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Albin", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11574428, + "bounds": { + "minlat": 40.8449172, + "minlon": -73.9680634, + "maxlat": 40.8454289, + "maxlon": -73.9670996 + }, + "nodes": [ + 103137205, + 7292367285, + 103115637, + 103095841, + 103198057 + ], + "geometry": [ + { "lat": 40.8449172, "lon": -73.9670996 }, + { "lat": 40.8449617, "lon": -73.9671830 }, + { "lat": 40.8452326, "lon": -73.9676913 }, + { "lat": 40.8453036, "lon": -73.9678257 }, + { "lat": 40.8454289, "lon": -73.9680634 } + ], + "tags": { + "highway": "residential", + "name": "Veterans Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Veterans", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11574450, + "bounds": { + "minlat": 40.8680310, + "minlon": -73.9920628, + "maxlat": 40.8686346, + "maxlon": -73.9909145 + }, + "nodes": [ + 6120187630, + 103198214 + ], + "geometry": [ + { "lat": 40.8680310, "lon": -73.9909145 }, + { "lat": 40.8686346, "lon": -73.9920628 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Leyland", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11574473, + "bounds": { + "minlat": 40.8687460, + "minlon": -73.9623330, + "maxlat": 40.8690834, + "maxlon": -73.9619901 + }, + "nodes": [ + 103117809, + 103198312 + ], + "geometry": [ + { "lat": 40.8687460, "lon": -73.9623330 }, + { "lat": 40.8690834, "lon": -73.9619901 } + ], + "tags": { + "highway": "residential", + "name": "Deborah Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Deborah", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11574489, + "bounds": { + "minlat": 40.8179675, + "minlon": -73.9846488, + "maxlat": 40.8202886, + "maxlon": -73.9834496 + }, + "nodes": [ + 103198454, + 103198453, + 103198450, + 103198449, + 103198446, + 103198445, + 103198443, + 103198441, + 103198438, + 103198435 + ], + "geometry": [ + { "lat": 40.8202886, "lon": -73.9834496 }, + { "lat": 40.8196661, "lon": -73.9838414 }, + { "lat": 40.8191417, "lon": -73.9841378 }, + { "lat": 40.8189270, "lon": -73.9842520 }, + { "lat": 40.8184390, "lon": -73.9845010 }, + { "lat": 40.8183180, "lon": -73.9845550 }, + { "lat": 40.8182160, "lon": -73.9845870 }, + { "lat": 40.8181386, "lon": -73.9846140 }, + { "lat": 40.8180512, "lon": -73.9846347 }, + { "lat": 40.8179675, "lon": -73.9846488 } + ], + "tags": { + "highway": "residential", + "name": "Winterburn Grove", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Winterburn Grove", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 11574535, + "bounds": { + "minlat": 40.8704110, + "minlon": -73.9641220, + "maxlat": 40.8726630, + "maxlon": -73.9619070 + }, + "nodes": [ + 103198689, + 103198690, + 103198691 + ], + "geometry": [ + { "lat": 40.8704110, "lon": -73.9641220 }, + { "lat": 40.8708070, "lon": -73.9637330 }, + { "lat": 40.8726630, "lon": -73.9619070 } + ], + "tags": { + "highway": "residential", + "name": "Elm Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elm", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11574588, + "bounds": { + "minlat": 40.8330602, + "minlon": -74.0106950, + "maxlat": 40.8331454, + "maxlon": -74.0103307 + }, + "nodes": [ + 695054578, + 12016315237, + 12016315236, + 11462878255, + 695054579, + 4207232346 + ], + "geometry": [ + { "lat": 40.8330602, "lon": -74.0103307 }, + { "lat": 40.8330655, "lon": -74.0103688 }, + { "lat": 40.8330728, "lon": -74.0104064 }, + { "lat": 40.8330818, "lon": -74.0104454 }, + { "lat": 40.8330927, "lon": -74.0104862 }, + { "lat": 40.8331454, "lon": -74.0106950 } + ], + "tags": { + "Bergen_County_database_ref": "17", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020001241", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Hendricks Causeway", + "old_ref": "CR 17", + "ref": "CR 124", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hendricks", + "tiger:name_type": "Cswy", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657", + "turn:lanes:backward": "left|right" + } +}, +{ + "type": "way", + "id": 11574610, + "bounds": { + "minlat": 40.8760486, + "minlon": -74.0022115, + "maxlat": 40.8764273, + "maxlon": -74.0009771 + }, + "nodes": [ + 103199029, + 103093339 + ], + "geometry": [ + { "lat": 40.8764273, "lon": -74.0022115 }, + { "lat": 40.8760486, "lon": -74.0009771 } + ], + "tags": { + "highway": "residential", + "name": "Roosevelt Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roosevelt", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11574612, + "bounds": { + "minlat": 40.8144738, + "minlon": -73.9990246, + "maxlat": 40.8155910, + "maxlon": -73.9969218 + }, + "nodes": [ + 103199033, + 13523912708, + 103199032 + ], + "geometry": [ + { "lat": 40.8155910, "lon": -73.9990246 }, + { "lat": 40.8145091, "lon": -73.9969883 }, + { "lat": 40.8144738, "lon": -73.9969218 } + ], + "tags": { + "highway": "residential", + "name": "Roosevelt Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roosevelt", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11574616, + "bounds": { + "minlat": 40.8754759, + "minlon": -74.0009771, + "maxlat": 40.8760486, + "maxlon": -73.9989280 + }, + "nodes": [ + 103199050, + 103199052, + 103199054, + 103199056, + 9871181578, + 103199058, + 9871181565, + 103199060, + 4630776543, + 9871181616, + 103093339 + ], + "geometry": [ + { "lat": 40.8757925, "lon": -73.9989280 }, + { "lat": 40.8755144, "lon": -73.9990746 }, + { "lat": 40.8754869, "lon": -73.9991263 }, + { "lat": 40.8754762, "lon": -73.9991777 }, + { "lat": 40.8754759, "lon": -73.9992104 }, + { "lat": 40.8754877, "lon": -73.9992716 }, + { "lat": 40.8755817, "lon": -73.9995699 }, + { "lat": 40.8755832, "lon": -73.9995746 }, + { "lat": 40.8757858, "lon": -74.0001941 }, + { "lat": 40.8760251, "lon": -74.0009072 }, + { "lat": 40.8760486, "lon": -74.0009771 } + ], + "tags": { + "highway": "residential", + "name": "Roosevelt Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roosevelt", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11574665, + "bounds": { + "minlat": 40.8745107, + "minlon": -74.0045286, + "maxlat": 40.8748753, + "maxlon": -74.0041892 + }, + "nodes": [ + 4469448612, + 4469448620, + 4469448601, + 103199392, + 4469448622, + 4469448614, + 4469448616 + ], + "geometry": [ + { "lat": 40.8745107, "lon": -74.0043588 }, + { "lat": 40.8747980, "lon": -74.0041892 }, + { "lat": 40.8748418, "lon": -74.0042161 }, + { "lat": 40.8748718, "lon": -74.0042643 }, + { "lat": 40.8748753, "lon": -74.0043153 }, + { "lat": 40.8748488, "lon": -74.0043636 }, + { "lat": 40.8745605, "lon": -74.0045286 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Alcott Court", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Alcott", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11574732, + "bounds": { + "minlat": 40.8532371, + "minlon": -74.0165991, + "maxlat": 40.8547988, + "maxlon": -74.0157242 + }, + "nodes": [ + 103191720, + 5220600071, + 103199709, + 5220596274, + 5220596286, + 5220596278, + 5220596271, + 5220596281, + 5220596283 + ], + "geometry": [ + { "lat": 40.8532371, "lon": -74.0165991 }, + { "lat": 40.8538100, "lon": -74.0163208 }, + { "lat": 40.8543301, "lon": -74.0160680 }, + { "lat": 40.8543765, "lon": -74.0159656 }, + { "lat": 40.8544234, "lon": -74.0158802 }, + { "lat": 40.8545065, "lon": -74.0158025 }, + { "lat": 40.8546544, "lon": -74.0157242 }, + { "lat": 40.8547988, "lon": -74.0162536 }, + { "lat": 40.8546727, "lon": -74.0163196 } + ], + "tags": { + "highway": "residential", + "name": "Scott Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Scott", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11574754, + "bounds": { + "minlat": 40.8811881, + "minlon": -73.9579607, + "maxlat": 40.8821128, + "maxlon": -73.9574379 + }, + "nodes": [ + 5108513277, + 5108513260, + 5108513271, + 5108513258, + 5108513262, + 8219181318, + 103199805, + 103199806, + 8219172713, + 5108513274 + ], + "geometry": [ + { "lat": 40.8811881, "lon": -73.9574379 }, + { "lat": 40.8813077, "lon": -73.9577177 }, + { "lat": 40.8813716, "lon": -73.9578608 }, + { "lat": 40.8814233, "lon": -73.9579296 }, + { "lat": 40.8814682, "lon": -73.9579505 }, + { "lat": 40.8815103, "lon": -73.9579607 }, + { "lat": 40.8815726, "lon": -73.9579601 }, + { "lat": 40.8819679, "lon": -73.9579306 }, + { "lat": 40.8820239, "lon": -73.9579011 }, + { "lat": 40.8821128, "lon": -73.9578467 } + ], + "tags": { + "highway": "residential", + "name": "Kira Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kira", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11574773, + "bounds": { + "minlat": 40.8220267, + "minlon": -73.9918061, + "maxlat": 40.8247407, + "maxlon": -73.9892314 + }, + "nodes": [ + 103150102, + 103199926, + 440208184 + ], + "geometry": [ + { "lat": 40.8247407, "lon": -73.9892314 }, + { "lat": 40.8231590, "lon": -73.9907440 }, + { "lat": 40.8220267, "lon": -73.9918061 } + ], + "tags": { + "highway": "residential", + "name": "Dewey Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dewey", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11574812, + "bounds": { + "minlat": 40.8712100, + "minlon": -74.0161580, + "maxlat": 40.8730526, + "maxlon": -74.0149411 + }, + "nodes": [ + 103200395, + 103200396 + ], + "geometry": [ + { "lat": 40.8712100, "lon": -74.0161580 }, + { "lat": 40.8730526, "lon": -74.0149411 } + ], + "tags": { + "highway": "residential", + "name": "Locust Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Locust", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11574832, + "bounds": { + "minlat": 40.8799236, + "minlon": -73.9726088, + "maxlat": 40.8813181, + "maxlon": -73.9714166 + }, + "nodes": [ + 103138377, + 5766854930, + 103200507 + ], + "geometry": [ + { "lat": 40.8813181, "lon": -73.9714166 }, + { "lat": 40.8806503, "lon": -73.9719305 }, + { "lat": 40.8799236, "lon": -73.9726088 } + ], + "tags": { + "highway": "residential", + "name": "Arch Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Arch", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11574871, + "bounds": { + "minlat": 40.8256343, + "minlon": -74.0003480, + "maxlat": 40.8267517, + "maxlon": -73.9991330 + }, + "nodes": [ + 103200717, + 103200718, + 103200719, + 103200721, + 103200723, + 103200725, + 103200727, + 103200729, + 103200731, + 103184985 + ], + "geometry": [ + { "lat": 40.8256343, "lon": -73.9991932 }, + { "lat": 40.8256770, "lon": -73.9991700 }, + { "lat": 40.8257480, "lon": -73.9991430 }, + { "lat": 40.8258220, "lon": -73.9991330 }, + { "lat": 40.8259030, "lon": -73.9991440 }, + { "lat": 40.8259740, "lon": -73.9991740 }, + { "lat": 40.8260400, "lon": -73.9992200 }, + { "lat": 40.8261020, "lon": -73.9992890 }, + { "lat": 40.8261330, "lon": -73.9993360 }, + { "lat": 40.8267517, "lon": -74.0003480 } + ], + "tags": { + "highway": "residential", + "name": "Sketch Place North", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sketch", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11574887, + "bounds": { + "minlat": 40.8617490, + "minlon": -73.9870750, + "maxlat": 40.8629510, + "maxlon": -73.9847110 + }, + "nodes": [ + 103200815, + 8832653002, + 8075088198, + 6103601329, + 6109949845, + 8075088199, + 6109949847, + 10117799060, + 103093240 + ], + "geometry": [ + { "lat": 40.8629510, "lon": -73.9870750 }, + { "lat": 40.8628859, "lon": -73.9869484 }, + { "lat": 40.8628745, "lon": -73.9869246 }, + { "lat": 40.8628183, "lon": -73.9868140 }, + { "lat": 40.8628004, "lon": -73.9867788 }, + { "lat": 40.8627896, "lon": -73.9867576 }, + { "lat": 40.8626993, "lon": -73.9865800 }, + { "lat": 40.8617992, "lon": -73.9848170 }, + { "lat": 40.8617490, "lon": -73.9847110 } + ], + "tags": { + "highway": "residential", + "name": "Magnolia Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Magnolia", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11574944, + "bounds": { + "minlat": 40.8177610, + "minlon": -73.9880837, + "maxlat": 40.8199676, + "maxlon": -73.9842718 + }, + "nodes": [ + 103201201, + 103198435, + 103201204, + 103163321, + 103111157, + 103201206, + 103201207, + 103169192, + 7542575505, + 103201208 + ], + "geometry": [ + { "lat": 40.8177610, "lon": -73.9842718 }, + { "lat": 40.8179675, "lon": -73.9846488 }, + { "lat": 40.8183784, "lon": -73.9853373 }, + { "lat": 40.8188065, "lon": -73.9860703 }, + { "lat": 40.8188977, "lon": -73.9862354 }, + { "lat": 40.8192213, "lon": -73.9867833 }, + { "lat": 40.8196438, "lon": -73.9875143 }, + { "lat": 40.8196933, "lon": -73.9875955 }, + { "lat": 40.8197732, "lon": -73.9877417 }, + { "lat": 40.8199676, "lon": -73.9880837 } + ], + "tags": { + "highway": "tertiary", + "name": "Edgewater Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11574950, + "bounds": { + "minlat": 40.8155710, + "minlon": -73.9851429, + "maxlat": 40.8174747, + "maxlon": -73.9818291 + }, + "nodes": [ + 103115567, + 103201239, + 103201240, + 103201241, + 103201243, + 103201244, + 103201246, + 103201248, + 103201249, + 103201250, + 103201251, + 103201253, + 103201255, + 103201257, + 103201259, + 103201261, + 103201263, + 7598551444, + 477418541, + 103201267, + 103201269, + 103201271, + 103201274, + 103111132 + ], + "geometry": [ + { "lat": 40.8174747, "lon": -73.9818291 }, + { "lat": 40.8174140, "lon": -73.9819119 }, + { "lat": 40.8173431, "lon": -73.9820226 }, + { "lat": 40.8172237, "lon": -73.9822221 }, + { "lat": 40.8168282, "lon": -73.9828344 }, + { "lat": 40.8167380, "lon": -73.9829400 }, + { "lat": 40.8165918, "lon": -73.9831136 }, + { "lat": 40.8164078, "lon": -73.9833077 }, + { "lat": 40.8162569, "lon": -73.9834375 }, + { "lat": 40.8160981, "lon": -73.9835905 }, + { "lat": 40.8159908, "lon": -73.9836979 }, + { "lat": 40.8159246, "lon": -73.9837567 }, + { "lat": 40.8158329, "lon": -73.9838409 }, + { "lat": 40.8158012, "lon": -73.9838909 }, + { "lat": 40.8157836, "lon": -73.9839431 }, + { "lat": 40.8157693, "lon": -73.9840229 }, + { "lat": 40.8157643, "lon": -73.9841632 }, + { "lat": 40.8157986, "lon": -73.9843673 }, + { "lat": 40.8158083, "lon": -73.9844248 }, + { "lat": 40.8158111, "lon": -73.9846016 }, + { "lat": 40.8157565, "lon": -73.9848130 }, + { "lat": 40.8157486, "lon": -73.9850080 }, + { "lat": 40.8156441, "lon": -73.9850426 }, + { "lat": 40.8155710, "lon": -73.9851429 } + ], + "tags": { + "highway": "residential", + "name": "Edgewater Road", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11574951, + "bounds": { + "minlat": 40.8157486, + "minlon": -73.9850080, + "maxlat": 40.8177610, + "maxlon": -73.9842718 + }, + "nodes": [ + 103201201, + 7132345276, + 103158564, + 7598551416, + 103201271 + ], + "geometry": [ + { "lat": 40.8177610, "lon": -73.9842718 }, + { "lat": 40.8171646, "lon": -73.9844820 }, + { "lat": 40.8167848, "lon": -73.9846273 }, + { "lat": 40.8162552, "lon": -73.9848219 }, + { "lat": 40.8157486, "lon": -73.9850080 } + ], + "tags": { + "highway": "residential", + "name": "Edgewater Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11574973, + "bounds": { + "minlat": 40.8254574, + "minlon": -74.0009692, + "maxlat": 40.8261104, + "maxlon": -73.9991932 + }, + "nodes": [ + 103184983, + 103171025, + 103201429, + 103201430, + 103201431, + 103201432, + 103201433, + 103201435, + 103201437, + 103201439, + 103200717 + ], + "geometry": [ + { "lat": 40.8261104, "lon": -74.0009692 }, + { "lat": 40.8256445, "lon": -74.0001482 }, + { "lat": 40.8255194, "lon": -73.9999049 }, + { "lat": 40.8254864, "lon": -73.9998106 }, + { "lat": 40.8254674, "lon": -73.9997313 }, + { "lat": 40.8254574, "lon": -73.9996507 }, + { "lat": 40.8254623, "lon": -73.9995460 }, + { "lat": 40.8254792, "lon": -73.9994551 }, + { "lat": 40.8255202, "lon": -73.9993584 }, + { "lat": 40.8255711, "lon": -73.9992710 }, + { "lat": 40.8256343, "lon": -73.9991932 } + ], + "tags": { + "highway": "residential", + "name": "Sketch Place South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sketch", + "tiger:name_direction_suffix": "S", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11574985, + "bounds": { + "minlat": 40.8824312, + "minlon": -73.9985000, + "maxlat": 40.8840380, + "maxlon": -73.9964043 + }, + "nodes": [ + 103201512, + 103201513, + 103201515, + 103201517, + 103201519, + 103201521, + 6983273088, + 103201523, + 103201525, + 103201527, + 103201529, + 103201532, + 103201534, + 103201535, + 103201536, + 103201537, + 103201538, + 103201540, + 103201542, + 103201544, + 103201547 + ], + "geometry": [ + { "lat": 40.8824312, "lon": -73.9964043 }, + { "lat": 40.8826819, "lon": -73.9972313 }, + { "lat": 40.8830161, "lon": -73.9982597 }, + { "lat": 40.8830421, "lon": -73.9983422 }, + { "lat": 40.8830954, "lon": -73.9984484 }, + { "lat": 40.8831289, "lon": -73.9984870 }, + { "lat": 40.8831764, "lon": -73.9985000 }, + { "lat": 40.8831983, "lon": -73.9984980 }, + { "lat": 40.8832234, "lon": -73.9984694 }, + { "lat": 40.8832602, "lon": -73.9984224 }, + { "lat": 40.8832974, "lon": -73.9983596 }, + { "lat": 40.8833411, "lon": -73.9982812 }, + { "lat": 40.8835194, "lon": -73.9978933 }, + { "lat": 40.8836260, "lon": -73.9976740 }, + { "lat": 40.8837330, "lon": -73.9975130 }, + { "lat": 40.8839560, "lon": -73.9972330 }, + { "lat": 40.8840070, "lon": -73.9971540 }, + { "lat": 40.8840280, "lon": -73.9970960 }, + { "lat": 40.8840380, "lon": -73.9970240 }, + { "lat": 40.8840310, "lon": -73.9969510 }, + { "lat": 40.8838970, "lon": -73.9965010 } + ], + "tags": { + "highway": "residential", + "name": "Perry Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Perry", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11575042, + "bounds": { + "minlat": 40.8768890, + "minlon": -74.0095446, + "maxlat": 40.8783980, + "maxlon": -74.0088397 + }, + "nodes": [ + 103177139, + 103202071, + 103202073, + 4469439207 + ], + "geometry": [ + { "lat": 40.8768890, "lon": -74.0095446 }, + { "lat": 40.8771766, "lon": -74.0094052 }, + { "lat": 40.8783294, "lon": -74.0088464 }, + { "lat": 40.8783980, "lon": -74.0088397 } + ], + "tags": { + "highway": "residential", + "name": "Sandra Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sandra", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11575048, + "bounds": { + "minlat": 40.8263408, + "minlon": -73.9978607, + "maxlat": 40.8272290, + "maxlon": -73.9962216 + }, + "nodes": [ + 103147962, + 103196361 + ], + "geometry": [ + { "lat": 40.8263408, "lon": -73.9962216 }, + { "lat": 40.8272290, "lon": -73.9978607 } + ], + "tags": { + "highway": "residential", + "name": "Day Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Day", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11575053, + "bounds": { + "minlat": 40.8111558, + "minlon": -73.9977400, + "maxlat": 40.8137670, + "maxlon": -73.9930429 + }, + "nodes": [ + 103202145, + 103202147, + 103202148, + 103202149, + 440208173, + 103175800, + 103202152, + 103196806, + 13523912728, + 103202153 + ], + "geometry": [ + { "lat": 40.8111558, "lon": -73.9930429 }, + { "lat": 40.8114948, "lon": -73.9936685 }, + { "lat": 40.8118812, "lon": -73.9943349 }, + { "lat": 40.8121630, "lon": -73.9948680 }, + { "lat": 40.8124700, "lon": -73.9954100 }, + { "lat": 40.8126330, "lon": -73.9957030 }, + { "lat": 40.8130280, "lon": -73.9964130 }, + { "lat": 40.8133500, "lon": -73.9969910 }, + { "lat": 40.8137418, "lon": -73.9976938 }, + { "lat": 40.8137670, "lon": -73.9977400 } + ], + "tags": { + "highway": "residential", + "name": "Day Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Day", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11575113, + "bounds": { + "minlat": 40.8409800, + "minlon": -73.9743410, + "maxlat": 40.8436222, + "maxlon": -73.9718187 + }, + "nodes": [ + 5449338399, + 5449339185, + 103202447, + 5108626205, + 5108626193, + 103202449, + 103202451, + 103202453, + 5108626194, + 5108632341, + 8978666041, + 5108623146, + 5108623160, + 103202455, + 5108635543, + 103202457, + 5108624050, + 103202459, + 103202460, + 103202461, + 5108635532, + 103202462, + 7483134194, + 5108635550, + 5108635520, + 5108635480, + 5108635517, + 5108635495, + 13527810776, + 103202464 + ], + "geometry": [ + { "lat": 40.8436118, "lon": -73.9718187 }, + { "lat": 40.8436222, "lon": -73.9718690 }, + { "lat": 40.8436149, "lon": -73.9719153 }, + { "lat": 40.8435977, "lon": -73.9719505 }, + { "lat": 40.8435454, "lon": -73.9719951 }, + { "lat": 40.8434622, "lon": -73.9720599 }, + { "lat": 40.8433747, "lon": -73.9721087 }, + { "lat": 40.8432012, "lon": -73.9721980 }, + { "lat": 40.8431121, "lon": -73.9722328 }, + { "lat": 40.8429522, "lon": -73.9722982 }, + { "lat": 40.8429243, "lon": -73.9723090 }, + { "lat": 40.8425104, "lon": -73.9724693 }, + { "lat": 40.8424364, "lon": -73.9724976 }, + { "lat": 40.8419479, "lon": -73.9726926 }, + { "lat": 40.8418743, "lon": -73.9727248 }, + { "lat": 40.8418248, "lon": -73.9727409 }, + { "lat": 40.8417908, "lon": -73.9727544 }, + { "lat": 40.8417349, "lon": -73.9727840 }, + { "lat": 40.8416757, "lon": -73.9728317 }, + { "lat": 40.8416335, "lon": -73.9728747 }, + { "lat": 40.8415870, "lon": -73.9729430 }, + { "lat": 40.8415670, "lon": -73.9729816 }, + { "lat": 40.8415349, "lon": -73.9730537 }, + { "lat": 40.8415219, "lon": -73.9730828 }, + { "lat": 40.8414567, "lon": -73.9732380 }, + { "lat": 40.8413907, "lon": -73.9733951 }, + { "lat": 40.8413696, "lon": -73.9734438 }, + { "lat": 40.8412578, "lon": -73.9737012 }, + { "lat": 40.8410812, "lon": -73.9741080 }, + { "lat": 40.8409800, "lon": -73.9743410 } + ], + "tags": { + "highway": "residential", + "name": "Horizon Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Horizon", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11575115, + "bounds": { + "minlat": 40.8383835, + "minlon": -73.9748604, + "maxlat": 40.8409800, + "maxlon": -73.9741302 + }, + "nodes": [ + 103202464, + 13527810782, + 103202471, + 103202473, + 7483134180, + 103202475, + 5108643182, + 103202477, + 5108627364, + 5108635494, + 103202479, + 103202481, + 5108635536, + 103202483, + 103202485, + 103202487, + 5108643245, + 103202488, + 5108635190, + 103202490, + 5108645907, + 5108645900, + 103202492, + 5108635193, + 103202493, + 5108644830, + 103202494, + 103202495, + 103202496, + 5108635189 + ], + "geometry": [ + { "lat": 40.8409800, "lon": -73.9743410 }, + { "lat": 40.8409179, "lon": -73.9742974 }, + { "lat": 40.8408860, "lon": -73.9742750 }, + { "lat": 40.8408040, "lon": -73.9742390 }, + { "lat": 40.8406552, "lon": -73.9741965 }, + { "lat": 40.8404886, "lon": -73.9741490 }, + { "lat": 40.8404241, "lon": -73.9741366 }, + { "lat": 40.8403188, "lon": -73.9741302 }, + { "lat": 40.8402533, "lon": -73.9741324 }, + { "lat": 40.8402209, "lon": -73.9741335 }, + { "lat": 40.8401871, "lon": -73.9741341 }, + { "lat": 40.8401234, "lon": -73.9741490 }, + { "lat": 40.8400668, "lon": -73.9741615 }, + { "lat": 40.8399784, "lon": -73.9741865 }, + { "lat": 40.8398555, "lon": -73.9742390 }, + { "lat": 40.8397344, "lon": -73.9743123 }, + { "lat": 40.8395996, "lon": -73.9744110 }, + { "lat": 40.8394519, "lon": -73.9745192 }, + { "lat": 40.8393767, "lon": -73.9745729 }, + { "lat": 40.8392616, "lon": -73.9746247 }, + { "lat": 40.8391740, "lon": -73.9746623 }, + { "lat": 40.8390107, "lon": -73.9747297 }, + { "lat": 40.8387781, "lon": -73.9748258 }, + { "lat": 40.8387095, "lon": -73.9748499 }, + { "lat": 40.8386384, "lon": -73.9748604 }, + { "lat": 40.8385943, "lon": -73.9748561 }, + { "lat": 40.8385494, "lon": -73.9748517 }, + { "lat": 40.8384731, "lon": -73.9748348 }, + { "lat": 40.8384072, "lon": -73.9748087 }, + { "lat": 40.8383835, "lon": -73.9747981 } + ], + "tags": { + "highway": "residential", + "name": "Horizon Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Horizon", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11575196, + "bounds": { + "minlat": 40.8747589, + "minlon": -73.9877081, + "maxlat": 40.8749384, + "maxlon": -73.9872049 + }, + "nodes": [ + 103203323, + 5691951856, + 10234948422, + 10234828356, + 10234828357, + 5691951845 + ], + "geometry": [ + { "lat": 40.8749384, "lon": -73.9877081 }, + { "lat": 40.8749031, "lon": -73.9875967 }, + { "lat": 40.8748792, "lon": -73.9875325 }, + { "lat": 40.8747907, "lon": -73.9872947 }, + { "lat": 40.8747765, "lon": -73.9872564 }, + { "lat": 40.8747589, "lon": -73.9872049 } + ], + "tags": { + "highway": "service", + "name": "Lakeview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lakeview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11575278, + "bounds": { + "minlat": 40.8691788, + "minlon": -73.9748268, + "maxlat": 40.8700564, + "maxlon": -73.9732722 + }, + "nodes": [ + 103203957, + 12021419901, + 103171664, + 6609745932, + 478286443, + 298940637 + ], + "geometry": [ + { "lat": 40.8700564, "lon": -73.9748268 }, + { "lat": 40.8700150, "lon": -73.9747499 }, + { "lat": 40.8696410, "lon": -73.9740796 }, + { "lat": 40.8693038, "lon": -73.9734930 }, + { "lat": 40.8692860, "lon": -73.9734616 }, + { "lat": 40.8691788, "lon": -73.9732722 } + ], + "tags": { + "highway": "residential", + "name": "Kenwood Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kenwood", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11575282, + "bounds": { + "minlat": 40.8195385, + "minlon": -74.0076451, + "maxlat": 40.8207203, + "maxlon": -74.0072992 + }, + "nodes": [ + 103203993, + 13525555892, + 7933006738, + 103203991, + 103203989, + 103203987, + 103203985 + ], + "geometry": [ + { "lat": 40.8207203, "lon": -74.0072992 }, + { "lat": 40.8206582, "lon": -74.0073206 }, + { "lat": 40.8203563, "lon": -74.0074249 }, + { "lat": 40.8197370, "lon": -74.0074790 }, + { "lat": 40.8196390, "lon": -74.0075270 }, + { "lat": 40.8195660, "lon": -74.0075840 }, + { "lat": 40.8195385, "lon": -74.0076451 } + ], + "tags": { + "highway": "residential", + "name": "Sedore Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sedore", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11575320, + "bounds": { + "minlat": 40.8139072, + "minlon": -73.9959542, + "maxlat": 40.8152846, + "maxlon": -73.9933672 + }, + "nodes": [ + 440208178, + 7617250025, + 440208175, + 440208189, + 7289679633, + 440208188, + 440208166, + 440208165, + 13524700377, + 103204318 + ], + "geometry": [ + { "lat": 40.8139072, "lon": -73.9933672 }, + { "lat": 40.8139397, "lon": -73.9934212 }, + { "lat": 40.8140181, "lon": -73.9935517 }, + { "lat": 40.8142874, "lon": -73.9940363 }, + { "lat": 40.8146188, "lon": -73.9946741 }, + { "lat": 40.8146634, "lon": -73.9947521 }, + { "lat": 40.8147905, "lon": -73.9950013 }, + { "lat": 40.8148757, "lon": -73.9951853 }, + { "lat": 40.8152448, "lon": -73.9958793 }, + { "lat": 40.8152846, "lon": -73.9959542 } + ], + "tags": { + "highway": "residential", + "name": "Kamena Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kamena", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11575372, + "bounds": { + "minlat": 40.8522020, + "minlon": -73.9901390, + "maxlat": 40.8546620, + "maxlon": -73.9883990 + }, + "nodes": [ + 103155260, + 103204748, + 103204746, + 103204744, + 103204742, + 103204740, + 103204738, + 103204736, + 440215450 + ], + "geometry": [ + { "lat": 40.8546620, "lon": -73.9883990 }, + { "lat": 40.8546500, "lon": -73.9884060 }, + { "lat": 40.8544690, "lon": -73.9885750 }, + { "lat": 40.8543850, "lon": -73.9886630 }, + { "lat": 40.8542410, "lon": -73.9887910 }, + { "lat": 40.8540890, "lon": -73.9889030 }, + { "lat": 40.8524950, "lon": -73.9898640 }, + { "lat": 40.8523960, "lon": -73.9899430 }, + { "lat": 40.8522020, "lon": -73.9901390 } + ], + "tags": { + "highway": "residential", + "name": "Palmer Place", + "oneway": "yes", + "source": "survey", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palmer", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11575380, + "bounds": { + "minlat": 40.8625340, + "minlon": -73.9861800, + "maxlat": 40.8641740, + "maxlon": -73.9830310 + }, + "nodes": [ + 103204849, + 8075088159, + 6885572368, + 6111847407, + 10262818440, + 8073397784, + 8073397783, + 8073397782, + 103093244, + 103204851 + ], + "geometry": [ + { "lat": 40.8641740, "lon": -73.9861800 }, + { "lat": 40.8641022, "lon": -73.9860420 }, + { "lat": 40.8638024, "lon": -73.9854658 }, + { "lat": 40.8635619, "lon": -73.9850036 }, + { "lat": 40.8634953, "lon": -73.9848756 }, + { "lat": 40.8633699, "lon": -73.9846346 }, + { "lat": 40.8632170, "lon": -73.9843406 }, + { "lat": 40.8631634, "lon": -73.9842378 }, + { "lat": 40.8629700, "lon": -73.9838660 }, + { "lat": 40.8625340, "lon": -73.9830310 } + ], + "tags": { + "highway": "residential", + "incline": "steep", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Woodland Place", + "oneway": "no", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Woodland", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11575416, + "bounds": { + "minlat": 40.8458784, + "minlon": -73.9712446, + "maxlat": 40.8460376, + "maxlon": -73.9711746 + }, + "nodes": [ + 103099800, + 5449315451 + ], + "geometry": [ + { "lat": 40.8460376, "lon": -73.9711746 }, + { "lat": 40.8458784, "lon": -73.9712446 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 11575442, + "bounds": { + "minlat": 40.8635800, + "minlon": -73.9772910, + "maxlat": 40.8678900, + "maxlon": -73.9767930 + }, + "nodes": [ + 103156459, + 103205246, + 103205248, + 103205250, + 103205252, + 103205254, + 103205256, + 103205258, + 103205260, + 103205261, + 12021450528, + 103205263 + ], + "geometry": [ + { "lat": 40.8635800, "lon": -73.9771010 }, + { "lat": 40.8636750, "lon": -73.9771820 }, + { "lat": 40.8637310, "lon": -73.9772220 }, + { "lat": 40.8638110, "lon": -73.9772620 }, + { "lat": 40.8638930, "lon": -73.9772850 }, + { "lat": 40.8639780, "lon": -73.9772910 }, + { "lat": 40.8659922, "lon": -73.9769932 }, + { "lat": 40.8673630, "lon": -73.9767940 }, + { "lat": 40.8674730, "lon": -73.9767930 }, + { "lat": 40.8676680, "lon": -73.9769110 }, + { "lat": 40.8677984, "lon": -73.9769956 }, + { "lat": 40.8678900, "lon": -73.9770551 } + ], + "tags": { + "direction": "backward", + "highway": "residential", + "name": "Ridgeland Terrace", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ridgeland", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11575444, + "bounds": { + "minlat": 40.8684035, + "minlon": -73.9762490, + "maxlat": 40.8722788, + "maxlon": -73.9743785 + }, + "nodes": [ + 103134287, + 392522184, + 103205268, + 103205270, + 103205272, + 103205276, + 103205277, + 103205278, + 103205279, + 103205280, + 12021450539, + 103205281 + ], + "geometry": [ + { "lat": 40.8722788, "lon": -73.9743785 }, + { "lat": 40.8721100, "lon": -73.9745158 }, + { "lat": 40.8705570, "lon": -73.9755280 }, + { "lat": 40.8703580, "lon": -73.9756390 }, + { "lat": 40.8691790, "lon": -73.9761750 }, + { "lat": 40.8690570, "lon": -73.9762310 }, + { "lat": 40.8690100, "lon": -73.9762460 }, + { "lat": 40.8689410, "lon": -73.9762490 }, + { "lat": 40.8688702, "lon": -73.9762147 }, + { "lat": 40.8685522, "lon": -73.9759744 }, + { "lat": 40.8685048, "lon": -73.9759431 }, + { "lat": 40.8684035, "lon": -73.9758763 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Ridgeland Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ridgeland", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11575445, + "bounds": { + "minlat": 40.8619304, + "minlon": -73.9778995, + "maxlat": 40.8634500, + "maxlon": -73.9772920 + }, + "nodes": [ + 103205284, + 103174356, + 103205286, + 103205288, + 103205291, + 103156457 + ], + "geometry": [ + { "lat": 40.8619304, "lon": -73.9778995 }, + { "lat": 40.8626120, "lon": -73.9775840 }, + { "lat": 40.8632650, "lon": -73.9773020 }, + { "lat": 40.8633330, "lon": -73.9772920 }, + { "lat": 40.8634010, "lon": -73.9773010 }, + { "lat": 40.8634500, "lon": -73.9773220 } + ], + "tags": { + "highway": "residential", + "name": "Ridgeland Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ridgeland", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11575462, + "bounds": { + "minlat": 40.8200508, + "minlon": -73.9907795, + "maxlat": 40.8210330, + "maxlon": -73.9899785 + }, + "nodes": [ + 103205336, + 103201214 + ], + "geometry": [ + { "lat": 40.8200508, "lon": -73.9907795 }, + { "lat": 40.8210330, "lon": -73.9899785 } + ], + "tags": { + "highway": "residential", + "name": "Willfred Terrace", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Willfred", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11575470, + "bounds": { + "minlat": 40.8660490, + "minlon": -74.0133919, + "maxlat": 40.8685200, + "maxlon": -74.0127170 + }, + "nodes": [ + 6875600409, + 6875600407, + 6875600408, + 103205371, + 103146459, + 103205373, + 103205375, + 103205378, + 5701406440, + 103205380, + 103205382, + 103127877 + ], + "geometry": [ + { "lat": 40.8660490, "lon": -74.0133128 }, + { "lat": 40.8660897, "lon": -74.0133806 }, + { "lat": 40.8661162, "lon": -74.0133919 }, + { "lat": 40.8661449, "lon": -74.0133854 }, + { "lat": 40.8669800, "lon": -74.0131520 }, + { "lat": 40.8673605, "lon": -74.0130507 }, + { "lat": 40.8676252, "lon": -74.0129902 }, + { "lat": 40.8678721, "lon": -74.0129220 }, + { "lat": 40.8680790, "lon": -74.0128317 }, + { "lat": 40.8683470, "lon": -74.0127170 }, + { "lat": 40.8684631, "lon": -74.0127193 }, + { "lat": 40.8685200, "lon": -74.0127700 } + ], + "tags": { + "highway": "residential", + "name": "Parkview Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Parkview", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11575495, + "bounds": { + "minlat": 40.8337823, + "minlon": -74.0107999, + "maxlat": 40.8352024, + "maxlon": -74.0101587 + }, + "nodes": [ + 103205578, + 13527768435, + 8231401529, + 103125595 + ], + "geometry": [ + { "lat": 40.8337823, "lon": -74.0107999 }, + { "lat": 40.8338568, "lon": -74.0107617 }, + { "lat": 40.8340587, "lon": -74.0106581 }, + { "lat": 40.8352024, "lon": -74.0101587 } + ], + "tags": { + "highway": "residential", + "name": "Oritan Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oritan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11575519, + "bounds": { + "minlat": 40.8471628, + "minlon": -74.0175407, + "maxlat": 40.8585491, + "maxlon": -74.0122586 + }, + "nodes": [ + 298563974, + 10936420191, + 298563979, + 298563980, + 10938708236, + 298563981, + 298563982, + 10938708248, + 10938976321, + 10931014799, + 10931030456, + 298563985, + 10931030477, + 298563987, + 10931030470, + 10931014797, + 10931030463, + 10931024284, + 10931024285, + 298563991, + 298563992, + 298563993, + 298563994, + 10931024283, + 298563995 + ], + "geometry": [ + { "lat": 40.8585491, "lon": -74.0122586 }, + { "lat": 40.8584408, "lon": -74.0122974 }, + { "lat": 40.8581967, "lon": -74.0123884 }, + { "lat": 40.8579503, "lon": -74.0124876 }, + { "lat": 40.8576880, "lon": -74.0126007 }, + { "lat": 40.8574737, "lon": -74.0126971 }, + { "lat": 40.8572303, "lon": -74.0128091 }, + { "lat": 40.8569781, "lon": -74.0129291 }, + { "lat": 40.8562094, "lon": -74.0133074 }, + { "lat": 40.8551875, "lon": -74.0138026 }, + { "lat": 40.8544158, "lon": -74.0141761 }, + { "lat": 40.8536565, "lon": -74.0145457 }, + { "lat": 40.8528882, "lon": -74.0149202 }, + { "lat": 40.8521221, "lon": -74.0152940 }, + { "lat": 40.8513539, "lon": -74.0156640 }, + { "lat": 40.8505876, "lon": -74.0160350 }, + { "lat": 40.8498210, "lon": -74.0164044 }, + { "lat": 40.8490703, "lon": -74.0167706 }, + { "lat": 40.8488005, "lon": -74.0168996 }, + { "lat": 40.8485421, "lon": -74.0170212 }, + { "lat": 40.8482845, "lon": -74.0171389 }, + { "lat": 40.8480246, "lon": -74.0172483 }, + { "lat": 40.8477619, "lon": -74.0173478 }, + { "lat": 40.8474995, "lon": -74.0174380 }, + { "lat": 40.8471628, "lon": -74.0175407 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A11:A15:A19:A63", + "tiger:county": "Bergen, NJ:Hudson, NJ:Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:New Jersey", + "tiger:name_base_1": "I-95:New Jersey", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 11575534, + "bounds": { + "minlat": 40.8293463, + "minlon": -73.9783713, + "maxlat": 40.8297344, + "maxlon": -73.9776492 + }, + "nodes": [ + 103206147, + 103206149 + ], + "geometry": [ + { "lat": 40.8297344, "lon": -73.9783713 }, + { "lat": 40.8293463, "lon": -73.9776492 } + ], + "tags": { + "access": "private", + "alt_name": "Victoria Place", + "highway": "residential", + "lit": "yes", + "name": "Victoria Place West", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Victoria", + "tiger:name_base_1": "Victoria", + "tiger:name_direction_suffix_1": "W", + "tiger:name_type": "Pl", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11575552, + "bounds": { + "minlat": 40.8251248, + "minlon": -73.9991932, + "maxlat": 40.8256343, + "maxlon": -73.9982868 + }, + "nodes": [ + 103206287, + 103200717 + ], + "geometry": [ + { "lat": 40.8251248, "lon": -73.9982868 }, + { "lat": 40.8256343, "lon": -73.9991932 } + ], + "tags": { + "highway": "residential", + "name": "Sketch Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sketch", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11575621, + "bounds": { + "minlat": 40.8808837, + "minlon": -73.9663570, + "maxlat": 40.8823527, + "maxlon": -73.9648717 + }, + "nodes": [ + 103146351, + 8431355487, + 103206785, + 103206787 + ], + "geometry": [ + { "lat": 40.8823527, "lon": -73.9648793 }, + { "lat": 40.8823364, "lon": -73.9648717 }, + { "lat": 40.8823164, "lon": -73.9648741 }, + { "lat": 40.8808837, "lon": -73.9663570 } + ], + "tags": { + "highway": "residential", + "name": "Elm Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elm", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11575630, + "bounds": { + "minlat": 40.8658031, + "minlon": -73.9864700, + "maxlat": 40.8677662, + "maxlon": -73.9847200 + }, + "nodes": [ + 103206871, + 10115455715, + 6107676756, + 8169649598, + 103206873, + 10122889641, + 8076364220, + 103206875 + ], + "geometry": [ + { "lat": 40.8658031, "lon": -73.9864700 }, + { "lat": 40.8658724, "lon": -73.9864015 }, + { "lat": 40.8662800, "lon": -73.9860493 }, + { "lat": 40.8664171, "lon": -73.9859298 }, + { "lat": 40.8668931, "lon": -73.9855086 }, + { "lat": 40.8669444, "lon": -73.9854634 }, + { "lat": 40.8677007, "lon": -73.9847729 }, + { "lat": 40.8677662, "lon": -73.9847200 } + ], + "tags": { + "highway": "residential", + "name": "Kingsley Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kingsley", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11575647, + "bounds": { + "minlat": 40.8336773, + "minlon": -73.9970390, + "maxlat": 40.8349680, + "maxlon": -73.9946832 + }, + "nodes": [ + 103185086, + 103206961 + ], + "geometry": [ + { "lat": 40.8336773, "lon": -73.9946832 }, + { "lat": 40.8349680, "lon": -73.9970390 } + ], + "tags": { + "highway": "residential", + "name": "Virgil Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Virgil", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11575650, + "bounds": { + "minlat": 40.8392751, + "minlon": -74.0060351, + "maxlat": 40.8400675, + "maxlon": -74.0043102 + }, + "nodes": [ + 103206976, + 12016147287, + 12016147286, + 7701027536, + 7701027533, + 8218997739, + 12016147236, + 12016147237, + 12016147238, + 103206969 + ], + "geometry": [ + { "lat": 40.8392751, "lon": -74.0043102 }, + { "lat": 40.8393260, "lon": -74.0044272 }, + { "lat": 40.8393404, "lon": -74.0044594 }, + { "lat": 40.8394149, "lon": -74.0046220 }, + { "lat": 40.8395116, "lon": -74.0048307 }, + { "lat": 40.8397252, "lon": -74.0052908 }, + { "lat": 40.8400287, "lon": -74.0059368 }, + { "lat": 40.8400394, "lon": -74.0059610 }, + { "lat": 40.8400510, "lon": -74.0059904 }, + { "lat": 40.8400675, "lon": -74.0060351 } + ], + "tags": { + "highway": "residential", + "name": "Virgil Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Virgil", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11575664, + "bounds": { + "minlat": 40.8134313, + "minlon": -73.9902908, + "maxlat": 40.8139128, + "maxlon": -73.9901431 + }, + "nodes": [ + 4205589196, + 103207037, + 103207035, + 7497403075, + 7614292438, + 103207031 + ], + "geometry": [ + { "lat": 40.8139128, "lon": -73.9901431 }, + { "lat": 40.8137865, "lon": -73.9901875 }, + { "lat": 40.8136737, "lon": -73.9902295 }, + { "lat": 40.8136467, "lon": -73.9902397 }, + { "lat": 40.8135493, "lon": -73.9902628 }, + { "lat": 40.8134313, "lon": -73.9902908 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11575676, + "bounds": { + "minlat": 40.8175463, + "minlon": -73.9998827, + "maxlat": 40.8206586, + "maxlon": -73.9939517 + }, + "nodes": [ + 752263685, + 13524700346, + 103207134, + 103189636, + 103207135, + 103207136, + 103207138, + 103166206, + 103193407, + 12537534790, + 103147937 + ], + "geometry": [ + { "lat": 40.8175463, "lon": -73.9939517 }, + { "lat": 40.8175950, "lon": -73.9940570 }, + { "lat": 40.8179030, "lon": -73.9947230 }, + { "lat": 40.8182920, "lon": -73.9954680 }, + { "lat": 40.8186950, "lon": -73.9962380 }, + { "lat": 40.8191124, "lon": -73.9969432 }, + { "lat": 40.8195062, "lon": -73.9976808 }, + { "lat": 40.8198898, "lon": -73.9984185 }, + { "lat": 40.8202902, "lon": -73.9991676 }, + { "lat": 40.8206146, "lon": -73.9997972 }, + { "lat": 40.8206586, "lon": -73.9998827 } + ], + "tags": { + "highway": "residential", + "name": "Cliff Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cliff", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11575679, + "bounds": { + "minlat": 40.8206586, + "minlon": -74.0005558, + "maxlat": 40.8209981, + "maxlon": -73.9998827 + }, + "nodes": [ + 103147937, + 10752415868, + 103207147 + ], + "geometry": [ + { "lat": 40.8206586, "lon": -73.9998827 }, + { "lat": 40.8209068, "lon": -74.0003721 }, + { "lat": 40.8209981, "lon": -74.0005558 } + ], + "tags": { + "highway": "residential", + "name": "Cliff Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cliff", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11575748, + "bounds": { + "minlat": 40.8232476, + "minlon": -73.9939875, + "maxlat": 40.8259633, + "maxlon": -73.9914238 + }, + "nodes": [ + 440208179, + 103207596, + 7534353943, + 103150109 + ], + "geometry": [ + { "lat": 40.8232476, "lon": -73.9939875 }, + { "lat": 40.8243551, "lon": -73.9929440 }, + { "lat": 40.8256012, "lon": -73.9917595 }, + { "lat": 40.8259633, "lon": -73.9914238 } + ], + "tags": { + "alt_name": "Saint Pauls Avenue", + "highway": "residential", + "name": "Saint Paul Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Saint Pauls", + "tiger:name_base_1": "St Paul", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 11575757, + "bounds": { + "minlat": 40.8184976, + "minlon": -73.9807108, + "maxlat": 40.8193592, + "maxlon": -73.9792008 + }, + "nodes": [ + 103137087, + 8049601550, + 103115574 + ], + "geometry": [ + { "lat": 40.8184976, "lon": -73.9792008 }, + { "lat": 40.8188023, "lon": -73.9797348 }, + { "lat": 40.8193592, "lon": -73.9807108 } + ], + "tags": { + "highway": "residential", + "name": "Vreeland Terrace", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Vreeland", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11575773, + "bounds": { + "minlat": 40.8386010, + "minlon": -73.9876790, + "maxlat": 40.8399470, + "maxlon": -73.9863320 + }, + "nodes": [ + 103111259, + 103160750 + ], + "geometry": [ + { "lat": 40.8399470, "lon": -73.9863320 }, + { "lat": 40.8386010, "lon": -73.9876790 } + ], + "tags": { + "highway": "residential", + "name": "Keswick Place", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Keswick", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11575837, + "bounds": { + "minlat": 40.8276320, + "minlon": -74.0091380, + "maxlat": 40.8366969, + "maxlon": -74.0015051 + }, + "nodes": [ + 103133540, + 103208107, + 103208108, + 103208109, + 103208111, + 12410387488, + 12410387485, + 103208113, + 103180053, + 103208115, + 12410387478, + 103208117, + 12410387476, + 12410387473, + 103208118, + 12016315302, + 12016315301, + 12410387454, + 12410387463, + 12410387449, + 12410387447, + 12410387445, + 12410387443, + 12410387441, + 6892698782, + 12410387439, + 12410387437, + 12410387433, + 12410387435, + 12410387427, + 12410387425, + 12410387423, + 12410387421, + 12410387419, + 12410387416, + 12410387414, + 12410387412, + 12410387408, + 12410387410, + 12016315305, + 12410387406, + 12016315306, + 12410387404, + 12016315307, + 12410387402, + 12016315308, + 12410380700, + 12016315309, + 12410380698, + 12016315310, + 12016315311, + 12016315312, + 12016315314, + 12016315316, + 103208121, + 12016315315, + 12016315313, + 103208123, + 12016315319, + 103173222, + 12016315320, + 12016315323, + 103208129 + ], + "geometry": [ + { "lat": 40.8276320, "lon": -74.0091380 }, + { "lat": 40.8284890, "lon": -74.0086460 }, + { "lat": 40.8296580, "lon": -74.0079610 }, + { "lat": 40.8297020, "lon": -74.0079350 }, + { "lat": 40.8305560, "lon": -74.0074320 }, + { "lat": 40.8306067, "lon": -74.0073969 }, + { "lat": 40.8306366, "lon": -74.0073762 }, + { "lat": 40.8307350, "lon": -74.0073080 }, + { "lat": 40.8309040, "lon": -74.0071710 }, + { "lat": 40.8310320, "lon": -74.0070530 }, + { "lat": 40.8311410, "lon": -74.0069378 }, + { "lat": 40.8311900, "lon": -74.0068860 }, + { "lat": 40.8312588, "lon": -74.0068304 }, + { "lat": 40.8313857, "lon": -74.0067279 }, + { "lat": 40.8316074, "lon": -74.0065489 }, + { "lat": 40.8316510, "lon": -74.0065048 }, + { "lat": 40.8316733, "lon": -74.0064822 }, + { "lat": 40.8317357, "lon": -74.0064191 }, + { "lat": 40.8318710, "lon": -74.0062825 }, + { "lat": 40.8319309, "lon": -74.0062219 }, + { "lat": 40.8320295, "lon": -74.0061223 }, + { "lat": 40.8320795, "lon": -74.0060718 }, + { "lat": 40.8322661, "lon": -74.0058833 }, + { "lat": 40.8325398, "lon": -74.0056075 }, + { "lat": 40.8325789, "lon": -74.0055672 }, + { "lat": 40.8326422, "lon": -74.0055059 }, + { "lat": 40.8327094, "lon": -74.0054407 }, + { "lat": 40.8328622, "lon": -74.0052926 }, + { "lat": 40.8329068, "lon": -74.0052493 }, + { "lat": 40.8329725, "lon": -74.0051856 }, + { "lat": 40.8330442, "lon": -74.0051161 }, + { "lat": 40.8331414, "lon": -74.0050219 }, + { "lat": 40.8332017, "lon": -74.0049634 }, + { "lat": 40.8334613, "lon": -74.0047117 }, + { "lat": 40.8335132, "lon": -74.0046614 }, + { "lat": 40.8335692, "lon": -74.0046071 }, + { "lat": 40.8336110, "lon": -74.0045666 }, + { "lat": 40.8336998, "lon": -74.0044805 }, + { "lat": 40.8337190, "lon": -74.0044619 }, + { "lat": 40.8337664, "lon": -74.0044159 }, + { "lat": 40.8338045, "lon": -74.0043792 }, + { "lat": 40.8338734, "lon": -74.0043127 }, + { "lat": 40.8339199, "lon": -74.0042715 }, + { "lat": 40.8339585, "lon": -74.0042372 }, + { "lat": 40.8340327, "lon": -74.0041784 }, + { "lat": 40.8341228, "lon": -74.0041070 }, + { "lat": 40.8341573, "lon": -74.0040817 }, + { "lat": 40.8341920, "lon": -74.0040563 }, + { "lat": 40.8342290, "lon": -74.0040306 }, + { "lat": 40.8343724, "lon": -74.0039307 }, + { "lat": 40.8344032, "lon": -74.0039061 }, + { "lat": 40.8344273, "lon": -74.0038825 }, + { "lat": 40.8344471, "lon": -74.0038625 }, + { "lat": 40.8344671, "lon": -74.0038340 }, + { "lat": 40.8344915, "lon": -74.0037908 }, + { "lat": 40.8345275, "lon": -74.0037272 }, + { "lat": 40.8345399, "lon": -74.0037064 }, + { "lat": 40.8349604, "lon": -74.0032939 }, + { "lat": 40.8354493, "lon": -74.0028206 }, + { "lat": 40.8355047, "lon": -74.0027266 }, + { "lat": 40.8355332, "lon": -74.0026764 }, + { "lat": 40.8366522, "lon": -74.0015501 }, + { "lat": 40.8366969, "lon": -74.0015051 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Abbott Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11575838, + "bounds": { + "minlat": 40.8268160, + "minlon": -74.0090160, + "maxlat": 40.8274250, + "maxlon": -74.0085730 + }, + "nodes": [ + 103157658, + 103208153, + 103208155, + 103133538 + ], + "geometry": [ + { "lat": 40.8268160, "lon": -74.0090160 }, + { "lat": 40.8268620, "lon": -74.0089890 }, + { "lat": 40.8268770, "lon": -74.0089740 }, + { "lat": 40.8274250, "lon": -74.0085730 } + ], + "tags": { + "highway": "residential", + "name": "Abbott Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11575872, + "bounds": { + "minlat": 40.8633048, + "minlon": -73.9661670, + "maxlat": 40.8638409, + "maxlon": -73.9656374 + }, + "nodes": [ + 103208325, + 103146583 + ], + "geometry": [ + { "lat": 40.8633048, "lon": -73.9661670 }, + { "lat": 40.8638409, "lon": -73.9656374 } + ], + "tags": { + "highway": "residential", + "name": "Franklin Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Franklin", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11575906, + "bounds": { + "minlat": 40.8578623, + "minlon": -73.9717267, + "maxlat": 40.8591370, + "maxlon": -73.9695996 + }, + "nodes": [ + 103208518, + 12020552538, + 12020552537, + 12020552534, + 12020552536, + 103132812, + 12020552535, + 12020552533, + 12021336899, + 103157399, + 12021336900, + 7407010392, + 7290670739, + 12020552526, + 7407010393, + 12020552525 + ], + "geometry": [ + { "lat": 40.8578623, "lon": -73.9695996 }, + { "lat": 40.8579001, "lon": -73.9696627 }, + { "lat": 40.8579174, "lon": -73.9696915 }, + { "lat": 40.8582379, "lon": -73.9702263 }, + { "lat": 40.8582543, "lon": -73.9702537 }, + { "lat": 40.8582870, "lon": -73.9703083 }, + { "lat": 40.8583218, "lon": -73.9703663 }, + { "lat": 40.8583402, "lon": -73.9703970 }, + { "lat": 40.8586696, "lon": -73.9709468 }, + { "lat": 40.8587049, "lon": -73.9710056 }, + { "lat": 40.8587398, "lon": -73.9710639 }, + { "lat": 40.8589038, "lon": -73.9713375 }, + { "lat": 40.8589711, "lon": -73.9714498 }, + { "lat": 40.8590098, "lon": -73.9715145 }, + { "lat": 40.8590614, "lon": -73.9716006 }, + { "lat": 40.8591370, "lon": -73.9717267 } + ], + "tags": { + "highway": "residential", + "name": "West Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11575912, + "bounds": { + "minlat": 40.8514010, + "minlon": -73.9788080, + "maxlat": 40.8527910, + "maxlon": -73.9774060 + }, + "nodes": [ + 103208556, + 103208558, + 103133484 + ], + "geometry": [ + { "lat": 40.8514010, "lon": -73.9788080 }, + { "lat": 40.8519950, "lon": -73.9782090 }, + { "lat": 40.8527910, "lon": -73.9774060 } + ], + "tags": { + "highway": "residential", + "name": "West Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11575989, + "bounds": { + "minlat": 40.8310373, + "minlon": -74.0077261, + "maxlat": 40.8322850, + "maxlon": -74.0035176 + }, + "nodes": [ + 103209164, + 11755845434, + 103209165, + 103209166, + 103209167, + 103209168, + 103209170, + 103209173, + 103169868, + 12410387465, + 12016315304, + 103208118, + 12016315303, + 12410380692, + 8127756437, + 103180075, + 12410380689, + 12410387531, + 12016315209, + 103159268 + ], + "geometry": [ + { "lat": 40.8319189, "lon": -74.0035176 }, + { "lat": 40.8319081, "lon": -74.0035946 }, + { "lat": 40.8318781, "lon": -74.0036749 }, + { "lat": 40.8316001, "lon": -74.0042369 }, + { "lat": 40.8310522, "lon": -74.0053610 }, + { "lat": 40.8310385, "lon": -74.0054246 }, + { "lat": 40.8310373, "lon": -74.0054806 }, + { "lat": 40.8310423, "lon": -74.0055366 }, + { "lat": 40.8310950, "lon": -74.0056584 }, + { "lat": 40.8314092, "lon": -74.0062044 }, + { "lat": 40.8315623, "lon": -74.0064706 }, + { "lat": 40.8316074, "lon": -74.0065489 }, + { "lat": 40.8316394, "lon": -74.0066051 }, + { "lat": 40.8318961, "lon": -74.0070560 }, + { "lat": 40.8319215, "lon": -74.0071007 }, + { "lat": 40.8319518, "lon": -74.0071534 }, + { "lat": 40.8321029, "lon": -74.0074128 }, + { "lat": 40.8321840, "lon": -74.0075521 }, + { "lat": 40.8322518, "lon": -74.0076685 }, + { "lat": 40.8322850, "lon": -74.0077261 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "lanes": "2", + "name": "Edgewater Avenue", + "ref": "CR 50", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11575999, + "bounds": { + "minlat": 40.8330485, + "minlon": -74.0091583, + "maxlat": 40.8357960, + "maxlon": -74.0062630 + }, + "nodes": [ + 103209176, + 13527768424, + 12016315210, + 12410380651, + 12410380649, + 12410380647, + 12410380622, + 12410380624, + 7931085801, + 7931085787, + 12410380643, + 12410380641, + 12410380639, + 12410380637, + 12410380635, + 12410380633, + 12410380631, + 12410380629, + 12410380627, + 103159191, + 103209220 + ], + "geometry": [ + { "lat": 40.8330485, "lon": -74.0091583 }, + { "lat": 40.8331021, "lon": -74.0090994 }, + { "lat": 40.8331181, "lon": -74.0090818 }, + { "lat": 40.8332959, "lon": -74.0088862 }, + { "lat": 40.8333602, "lon": -74.0088154 }, + { "lat": 40.8333965, "lon": -74.0087754 }, + { "lat": 40.8336113, "lon": -74.0085390 }, + { "lat": 40.8336613, "lon": -74.0084839 }, + { "lat": 40.8337037, "lon": -74.0084373 }, + { "lat": 40.8338199, "lon": -74.0083158 }, + { "lat": 40.8339294, "lon": -74.0082006 }, + { "lat": 40.8340201, "lon": -74.0081052 }, + { "lat": 40.8340745, "lon": -74.0080480 }, + { "lat": 40.8340956, "lon": -74.0080258 }, + { "lat": 40.8341464, "lon": -74.0079724 }, + { "lat": 40.8341797, "lon": -74.0079373 }, + { "lat": 40.8342433, "lon": -74.0078704 }, + { "lat": 40.8342973, "lon": -74.0078135 }, + { "lat": 40.8343665, "lon": -74.0077408 }, + { "lat": 40.8350070, "lon": -74.0070670 }, + { "lat": 40.8357960, "lon": -74.0062630 } + ], + "tags": { + "highway": "residential", + "name": "Hillside Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillside", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11576126, + "bounds": { + "minlat": 40.8750496, + "minlon": -73.9996872, + "maxlat": 40.8757925, + "maxlon": -73.9987721 + }, + "nodes": [ + 9871181565, + 103210051, + 103210053, + 103210055, + 103210057, + 103210059, + 103210061, + 103210062, + 103210063, + 103210065, + 4469448607, + 103210067, + 103210068, + 103210069, + 103210071, + 103210073, + 103210075, + 103199050 + ], + "geometry": [ + { "lat": 40.8755817, "lon": -73.9995699 }, + { "lat": 40.8753565, "lon": -73.9996872 }, + { "lat": 40.8752859, "lon": -73.9996832 }, + { "lat": 40.8752265, "lon": -73.9996463 }, + { "lat": 40.8751790, "lon": -73.9995871 }, + { "lat": 40.8751401, "lon": -73.9995152 }, + { "lat": 40.8750957, "lon": -73.9994029 }, + { "lat": 40.8750654, "lon": -73.9992735 }, + { "lat": 40.8750496, "lon": -73.9991782 }, + { "lat": 40.8750546, "lon": -73.9991118 }, + { "lat": 40.8750767, "lon": -73.9990480 }, + { "lat": 40.8751084, "lon": -73.9990150 }, + { "lat": 40.8754640, "lon": -73.9988130 }, + { "lat": 40.8755321, "lon": -73.9987865 }, + { "lat": 40.8756229, "lon": -73.9987721 }, + { "lat": 40.8756883, "lon": -73.9987905 }, + { "lat": 40.8757419, "lon": -73.9988405 }, + { "lat": 40.8757925, "lon": -73.9989280 } + ], + "tags": { + "highway": "residential", + "name": "French Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "French", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11576129, + "bounds": { + "minlat": 40.8757925, + "minlon": -73.9990279, + "maxlat": 40.8760911, + "maxlon": -73.9988437 + }, + "nodes": [ + 103199050, + 103210078, + 103210079, + 103210080, + 103210081, + 103210082, + 103210084 + ], + "geometry": [ + { "lat": 40.8757925, "lon": -73.9989280 }, + { "lat": 40.8758939, "lon": -73.9988739 }, + { "lat": 40.8759430, "lon": -73.9988486 }, + { "lat": 40.8759903, "lon": -73.9988437 }, + { "lat": 40.8760276, "lon": -73.9988720 }, + { "lat": 40.8760547, "lon": -73.9989264 }, + { "lat": 40.8760911, "lon": -73.9990279 } + ], + "tags": { + "highway": "residential", + "name": "French Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "French", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11576163, + "bounds": { + "minlat": 40.8771766, + "minlon": -74.0110877, + "maxlat": 40.8779552, + "maxlon": -74.0094052 + }, + "nodes": [ + 103210270, + 103210272, + 103210274, + 103158425, + 103210276, + 103210278, + 103210280, + 103202071 + ], + "geometry": [ + { "lat": 40.8779552, "lon": -74.0110877 }, + { "lat": 40.8775536, "lon": -74.0105866 }, + { "lat": 40.8774766, "lon": -74.0104656 }, + { "lat": 40.8773945, "lon": -74.0102867 }, + { "lat": 40.8773256, "lon": -74.0101366 }, + { "lat": 40.8772666, "lon": -74.0099466 }, + { "lat": 40.8772306, "lon": -74.0097766 }, + { "lat": 40.8771766, "lon": -74.0094052 } + ], + "tags": { + "highway": "residential", + "name": "Demarest Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Demarest", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11576233, + "bounds": { + "minlat": 40.8232089, + "minlon": -74.0043403, + "maxlat": 40.8237049, + "maxlon": -74.0042290 + }, + "nodes": [ + 103210698, + 103210699 + ], + "geometry": [ + { "lat": 40.8232089, "lon": -74.0043403 }, + { "lat": 40.8237049, "lon": -74.0042290 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "name_1": "Madison Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Madison", + "tiger:name_base_1": "Madison", + "tiger:name_type": "St", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11576266, + "bounds": { + "minlat": 40.8527175, + "minlon": -74.0257500, + "maxlat": 40.8541210, + "maxlon": -74.0199998 + }, + "nodes": [ + 103211067, + 13525529005, + 7523056435, + 103211069, + 103148759, + 103116865, + 103211071 + ], + "geometry": [ + { "lat": 40.8541210, "lon": -74.0257500 }, + { "lat": 40.8541066, "lon": -74.0256909 }, + { "lat": 40.8540327, "lon": -74.0253845 }, + { "lat": 40.8537810, "lon": -74.0243425 }, + { "lat": 40.8534310, "lon": -74.0229193 }, + { "lat": 40.8530727, "lon": -74.0214347 }, + { "lat": 40.8527175, "lon": -74.0199998 } + ], + "tags": { + "highway": "residential", + "name": "Hobart Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hobart", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11576270, + "bounds": { + "minlat": 40.8520463, + "minlon": -74.0184576, + "maxlat": 40.8525676, + "maxlon": -74.0163231 + }, + "nodes": [ + 103211087, + 5508080962, + 7760857885, + 103211088, + 298568029, + 5220596260, + 5220596277, + 5220596275 + ], + "geometry": [ + { "lat": 40.8525676, "lon": -74.0184576 }, + { "lat": 40.8525462, "lon": -74.0183704 }, + { "lat": 40.8523295, "lon": -74.0174890 }, + { "lat": 40.8522772, "lon": -74.0172764 }, + { "lat": 40.8521527, "lon": -74.0164918 }, + { "lat": 40.8521234, "lon": -74.0163875 }, + { "lat": 40.8520799, "lon": -74.0163411 }, + { "lat": 40.8520463, "lon": -74.0163231 } + ], + "tags": { + "highway": "residential", + "name": "Hobart Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hobart", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11576345, + "bounds": { + "minlat": 40.8734684, + "minlon": -73.9778941, + "maxlat": 40.8738492, + "maxlon": -73.9770728 + }, + "nodes": [ + 103125901, + 103211684, + 3572534741, + 103211685, + 103211686 + ], + "geometry": [ + { "lat": 40.8734978, "lon": -73.9778941 }, + { "lat": 40.8734684, "lon": -73.9776999 }, + { "lat": 40.8734845, "lon": -73.9775590 }, + { "lat": 40.8735351, "lon": -73.9774643 }, + { "lat": 40.8738492, "lon": -73.9770728 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Quail Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Quail", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11576359, + "bounds": { + "minlat": 40.8353411, + "minlon": -73.9921490, + "maxlat": 40.8360960, + "maxlon": -73.9908231 + }, + "nodes": [ + 103211754, + 103211756, + 103211758, + 103211760, + 103211762, + 5976777482, + 103172159 + ], + "geometry": [ + { "lat": 40.8353411, "lon": -73.9908231 }, + { "lat": 40.8353861, "lon": -73.9908237 }, + { "lat": 40.8354190, "lon": -73.9908420 }, + { "lat": 40.8354641, "lon": -73.9908649 }, + { "lat": 40.8357774, "lon": -73.9915357 }, + { "lat": 40.8358246, "lon": -73.9916791 }, + { "lat": 40.8360960, "lon": -73.9921490 } + ], + "tags": { + "highway": "residential", + "name": "Chateau Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Chateau", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11576375, + "bounds": { + "minlat": 40.8589890, + "minlon": -74.0186060, + "maxlat": 40.8600540, + "maxlon": -74.0181360 + }, + "nodes": [ + 103143379, + 103211848 + ], + "geometry": [ + { "lat": 40.8589890, "lon": -74.0186060 }, + { "lat": 40.8600540, "lon": -74.0181360 } + ], + "tags": { + "highway": "residential", + "name": "Pershing Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pershing", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11576390, + "bounds": { + "minlat": 40.8130551, + "minlon": -74.0026614, + "maxlat": 40.8131543, + "maxlon": -74.0015934 + }, + "nodes": [ + 103142132, + 13525551035, + 12535377635, + 7927581291, + 103211948 + ], + "geometry": [ + { "lat": 40.8130551, "lon": -74.0026614 }, + { "lat": 40.8130653, "lon": -74.0025749 }, + { "lat": 40.8130705, "lon": -74.0025308 }, + { "lat": 40.8131049, "lon": -74.0021736 }, + { "lat": 40.8131543, "lon": -74.0015934 } + ], + "tags": { + "highway": "residential", + "name": "Wendell Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wendell", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11576406, + "bounds": { + "minlat": 40.8603721, + "minlon": -74.0154071, + "maxlat": 40.8616800, + "maxlon": -74.0150460 + }, + "nodes": [ + 103212060, + 103212062, + 103212063, + 103212064, + 103212065 + ], + "geometry": [ + { "lat": 40.8603721, "lon": -74.0154071 }, + { "lat": 40.8611660, "lon": -74.0150790 }, + { "lat": 40.8613030, "lon": -74.0150520 }, + { "lat": 40.8614230, "lon": -74.0150460 }, + { "lat": 40.8616800, "lon": -74.0150640 } + ], + "tags": { + "highway": "residential", + "name": "Overpeck Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overpeck", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11576410, + "bounds": { + "minlat": 40.8560589, + "minlon": -74.0172163, + "maxlat": 40.8584523, + "maxlon": -74.0163343 + }, + "nodes": [ + 5508080964, + 5508080940, + 103143391, + 5508080942, + 5508080944, + 103212076, + 103212075, + 5508080946, + 5508080948, + 103212073 + ], + "geometry": [ + { "lat": 40.8584523, "lon": -74.0163343 }, + { "lat": 40.8583846, "lon": -74.0164121 }, + { "lat": 40.8581329, "lon": -74.0165074 }, + { "lat": 40.8577822, "lon": -74.0166477 }, + { "lat": 40.8574883, "lon": -74.0167485 }, + { "lat": 40.8571351, "lon": -74.0168696 }, + { "lat": 40.8570667, "lon": -74.0168924 }, + { "lat": 40.8567336, "lon": -74.0169995 }, + { "lat": 40.8564304, "lon": -74.0170969 }, + { "lat": 40.8560589, "lon": -74.0172163 } + ], + "tags": { + "highway": "residential", + "name": "Overpeck Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overpeck", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11576415, + "bounds": { + "minlat": 40.8577872, + "minlon": -73.9673562, + "maxlat": 40.8585054, + "maxlon": -73.9660317 + }, + "nodes": [ + 103205077, + 12021371944, + 12021371945, + 12021336856, + 5449416238, + 12021336849, + 12021336853, + 103174614 + ], + "geometry": [ + { "lat": 40.8577872, "lon": -73.9660317 }, + { "lat": 40.8578140, "lon": -73.9661056 }, + { "lat": 40.8578277, "lon": -73.9661396 }, + { "lat": 40.8578442, "lon": -73.9661749 }, + { "lat": 40.8581080, "lon": -73.9666510 }, + { "lat": 40.8584556, "lon": -73.9672679 }, + { "lat": 40.8584727, "lon": -73.9672981 }, + { "lat": 40.8585054, "lon": -73.9673562 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11576418, + "bounds": { + "minlat": 40.8249735, + "minlon": -73.9917194, + "maxlat": 40.8269936, + "maxlon": -73.9881352 + }, + "nodes": [ + 103212135, + 103212133, + 7570220984, + 7570790019, + 13525873315, + 103212132 + ], + "geometry": [ + { "lat": 40.8269936, "lon": -73.9917194 }, + { "lat": 40.8261695, "lon": -73.9902720 }, + { "lat": 40.8251899, "lon": -73.9885218 }, + { "lat": 40.8251139, "lon": -73.9883860 }, + { "lat": 40.8250210, "lon": -73.9882201 }, + { "lat": 40.8249735, "lon": -73.9881352 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657", + "tiger:zip_right_1": "07657" + } +}, +{ + "type": "way", + "id": 11576419, + "bounds": { + "minlat": 40.8564576, + "minlon": -73.9635888, + "maxlat": 40.8569353, + "maxlon": -73.9622885 + }, + "nodes": [ + 103154331, + 5074639120, + 3882345217, + 12021336953, + 5362432457, + 12021336952, + 5362432455, + 530475608, + 3882345218 + ], + "geometry": [ + { "lat": 40.8569353, "lon": -73.9635888 }, + { "lat": 40.8568484, "lon": -73.9631921 }, + { "lat": 40.8568169, "lon": -73.9630669 }, + { "lat": 40.8567751, "lon": -73.9629073 }, + { "lat": 40.8567588, "lon": -73.9628553 }, + { "lat": 40.8567432, "lon": -73.9628095 }, + { "lat": 40.8567300, "lon": -73.9627758 }, + { "lat": 40.8567147, "lon": -73.9627414 }, + { "lat": 40.8564576, "lon": -73.9622885 } + ], + "tags": { + "highway": "unclassified", + "name": "Riverview Lane", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11576449, + "bounds": { + "minlat": 40.8287397, + "minlon": -73.9956760, + "maxlat": 40.8294813, + "maxlon": -73.9943306 + }, + "nodes": [ + 103147973, + 103196362 + ], + "geometry": [ + { "lat": 40.8287397, "lon": -73.9943306 }, + { "lat": 40.8294813, "lon": -73.9956760 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11576453, + "bounds": { + "minlat": 40.8243695, + "minlon": -73.9874776, + "maxlat": 40.8249395, + "maxlon": -73.9864511 + }, + "nodes": [ + 103212442, + 7557454823, + 7557435224, + 13525873340, + 103207076 + ], + "geometry": [ + { "lat": 40.8243695, "lon": -73.9864511 }, + { "lat": 40.8244430, "lon": -73.9865834 }, + { "lat": 40.8247525, "lon": -73.9871409 }, + { "lat": 40.8248917, "lon": -73.9873916 }, + { "lat": 40.8249395, "lon": -73.9874776 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11576469, + "bounds": { + "minlat": 40.8210393, + "minlon": -73.9824206, + "maxlat": 40.8217299, + "maxlon": -73.9811987 + }, + "nodes": [ + 103212494, + 103195293 + ], + "geometry": [ + { "lat": 40.8210393, "lon": -73.9811987 }, + { "lat": 40.8217299, "lon": -73.9824206 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11576560, + "bounds": { + "minlat": 40.8205999, + "minlon": -74.0111759, + "maxlat": 40.8207604, + "maxlon": -74.0111650 + }, + "nodes": [ + 440208109, + 5837332146 + ], + "geometry": [ + { "lat": 40.8205999, "lon": -74.0111650 }, + { "lat": 40.8207604, "lon": -74.0111759 } + ], + "tags": { + "highway": "residential", + "name": "Merical Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Merical", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11576605, + "bounds": { + "minlat": 40.8226915, + "minlon": -73.9963230, + "maxlat": 40.8262168, + "maxlon": -73.9898971 + }, + "nodes": [ + 103213230, + 7571579914, + 7576366434, + 103199926, + 103213231, + 103213233, + 103207596, + 103213234, + 103213235, + 103213237, + 7529710514, + 103147960 + ], + "geometry": [ + { "lat": 40.8226915, "lon": -73.9898971 }, + { "lat": 40.8228973, "lon": -73.9902699 }, + { "lat": 40.8229164, "lon": -73.9903044 }, + { "lat": 40.8231590, "lon": -73.9907440 }, + { "lat": 40.8235591, "lon": -73.9914730 }, + { "lat": 40.8239677, "lon": -73.9922110 }, + { "lat": 40.8243551, "lon": -73.9929440 }, + { "lat": 40.8247605, "lon": -73.9936753 }, + { "lat": 40.8251560, "lon": -73.9944127 }, + { "lat": 40.8253707, "lon": -73.9948115 }, + { "lat": 40.8256512, "lon": -73.9952788 }, + { "lat": 40.8262168, "lon": -73.9963230 } + ], + "tags": { + "highway": "residential", + "name": "Greenmount Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Greenmount", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11576606, + "bounds": { + "minlat": 40.8219288, + "minlon": -73.9899361, + "maxlat": 40.8226375, + "maxlon": -73.9886434 + }, + "nodes": [ + 103213246, + 103213248, + 7578880271, + 7576828011, + 103213250 + ], + "geometry": [ + { "lat": 40.8219288, "lon": -73.9886434 }, + { "lat": 40.8222766, "lon": -73.9892673 }, + { "lat": 40.8223928, "lon": -73.9894828 }, + { "lat": 40.8224258, "lon": -73.9895439 }, + { "lat": 40.8226375, "lon": -73.9899361 } + ], + "tags": { + "highway": "residential", + "name": "Greenmount Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Greenmount", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11576673, + "bounds": { + "minlat": 40.8697591, + "minlon": -73.9635980, + "maxlat": 40.8736080, + "maxlon": -73.9566790 + }, + "nodes": [ + 103213791, + 6616072827, + 6895957645, + 103130990, + 103213793, + 103213795, + 103213797, + 103213799, + 103213801, + 103213803, + 103213807, + 103198691, + 103213809, + 103130861, + 103213811, + 440215026, + 103213815 + ], + "geometry": [ + { "lat": 40.8697591, "lon": -73.9566790 }, + { "lat": 40.8702828, "lon": -73.9576593 }, + { "lat": 40.8705383, "lon": -73.9581148 }, + { "lat": 40.8706730, "lon": -73.9583550 }, + { "lat": 40.8710049, "lon": -73.9589502 }, + { "lat": 40.8710520, "lon": -73.9590320 }, + { "lat": 40.8714240, "lon": -73.9596970 }, + { "lat": 40.8714780, "lon": -73.9597910 }, + { "lat": 40.8718440, "lon": -73.9604460 }, + { "lat": 40.8719710, "lon": -73.9606720 }, + { "lat": 40.8724180, "lon": -73.9614710 }, + { "lat": 40.8726630, "lon": -73.9619070 }, + { "lat": 40.8728550, "lon": -73.9622510 }, + { "lat": 40.8730770, "lon": -73.9626470 }, + { "lat": 40.8733870, "lon": -73.9632000 }, + { "lat": 40.8734820, "lon": -73.9633700 }, + { "lat": 40.8736080, "lon": -73.9635980 } + ], + "tags": { + "highway": "residential", + "name": "Middlesex Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Middlesex", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11576674, + "bounds": { + "minlat": 40.8772880, + "minlon": -73.9709213, + "maxlat": 40.8776177, + "maxlon": -73.9704080 + }, + "nodes": [ + 103213820, + 6300702727 + ], + "geometry": [ + { "lat": 40.8776177, "lon": -73.9709213 }, + { "lat": 40.8772880, "lon": -73.9704080 } + ], + "tags": { + "highway": "residential", + "name": "Middlesex Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Middlesex", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11576708, + "bounds": { + "minlat": 40.8644728, + "minlon": -73.9879982, + "maxlat": 40.8659855, + "maxlon": -73.9868742 + }, + "nodes": [ + 103214180, + 10115455713, + 10115455716, + 103214182 + ], + "geometry": [ + { "lat": 40.8644728, "lon": -73.9879982 }, + { "lat": 40.8645418, "lon": -73.9879404 }, + { "lat": 40.8659155, "lon": -73.9869232 }, + { "lat": 40.8659855, "lon": -73.9868742 } + ], + "tags": { + "highway": "residential", + "name": "Wood Terrace", + "surface": "concrete:plates", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wood", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11576723, + "bounds": { + "minlat": 40.8786913, + "minlon": -73.9743017, + "maxlat": 40.8806503, + "maxlon": -73.9703779 + }, + "nodes": [ + 103214247, + 12021734826, + 12021734825, + 103214249, + 103214250, + 6888578189, + 103214251, + 103214252, + 103214253, + 103214254, + 103214256, + 103214258, + 103214259, + 103214261, + 103200507, + 103214263, + 103214265, + 103214267, + 103214269, + 103214272, + 5766854929, + 5766854928, + 103214274, + 103214275, + 103214276, + 103214277, + 103214278 + ], + "geometry": [ + { "lat": 40.8806503, "lon": -73.9743017 }, + { "lat": 40.8806051, "lon": -73.9742112 }, + { "lat": 40.8805907, "lon": -73.9741854 }, + { "lat": 40.8804595, "lon": -73.9739817 }, + { "lat": 40.8803665, "lon": -73.9738697 }, + { "lat": 40.8803041, "lon": -73.9738114 }, + { "lat": 40.8802765, "lon": -73.9737857 }, + { "lat": 40.8801295, "lon": -73.9736697 }, + { "lat": 40.8800525, "lon": -73.9735867 }, + { "lat": 40.8799855, "lon": -73.9734887 }, + { "lat": 40.8799265, "lon": -73.9733667 }, + { "lat": 40.8798885, "lon": -73.9732457 }, + { "lat": 40.8798665, "lon": -73.9731337 }, + { "lat": 40.8798565, "lon": -73.9730177 }, + { "lat": 40.8799236, "lon": -73.9726088 }, + { "lat": 40.8799111, "lon": -73.9724068 }, + { "lat": 40.8799082, "lon": -73.9722930 }, + { "lat": 40.8798754, "lon": -73.9721184 }, + { "lat": 40.8798352, "lon": -73.9719271 }, + { "lat": 40.8797389, "lon": -73.9716807 }, + { "lat": 40.8796098, "lon": -73.9713973 }, + { "lat": 40.8795233, "lon": -73.9712461 }, + { "lat": 40.8794247, "lon": -73.9710859 }, + { "lat": 40.8793391, "lon": -73.9709906 }, + { "lat": 40.8790195, "lon": -73.9707807 }, + { "lat": 40.8788245, "lon": -73.9705937 }, + { "lat": 40.8786913, "lon": -73.9703779 } + ], + "tags": { + "highway": "residential", + "name": "Fountain Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fountain", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11576748, + "bounds": { + "minlat": 40.8643737, + "minlon": -74.0158436, + "maxlat": 40.8647115, + "maxlon": -74.0157498 + }, + "nodes": [ + 103214378, + 103214381 + ], + "geometry": [ + { "lat": 40.8643737, "lon": -74.0158436 }, + { "lat": 40.8647115, "lon": -74.0157498 } + ], + "tags": { + "Bergen_County_database_ref": "17;39 [sic]", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11576775, + "bounds": { + "minlat": 40.8529340, + "minlon": -73.9771891, + "maxlat": 40.8543307, + "maxlon": -73.9749590 + }, + "nodes": [ + 103214624, + 7442511347, + 103214626, + 7440135050, + 103157082 + ], + "geometry": [ + { "lat": 40.8529340, "lon": -73.9749590 }, + { "lat": 40.8531081, "lon": -73.9752411 }, + { "lat": 40.8537399, "lon": -73.9762647 }, + { "lat": 40.8542056, "lon": -73.9769934 }, + { "lat": 40.8543307, "lon": -73.9771891 } + ], + "tags": { + "highway": "residential", + "name": "Jane Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jane", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11576863, + "bounds": { + "minlat": 40.8780235, + "minlon": -73.9596800, + "maxlat": 40.8784198, + "maxlon": -73.9587332 + }, + "nodes": [ + 103215273, + 10059739077, + 10059739078, + 10059739079, + 10059739072, + 103179936 + ], + "geometry": [ + { "lat": 40.8780235, "lon": -73.9587332 }, + { "lat": 40.8780760, "lon": -73.9588613 }, + { "lat": 40.8781596, "lon": -73.9590335 }, + { "lat": 40.8782760, "lon": -73.9593279 }, + { "lat": 40.8783728, "lon": -73.9595854 }, + { "lat": 40.8784198, "lon": -73.9596800 } + ], + "tags": { + "highway": "residential", + "name": "Cliff Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cliff", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11576902, + "bounds": { + "minlat": 40.8317746, + "minlon": -74.0018744, + "maxlat": 40.8328506, + "maxlon": -74.0008417 + }, + "nodes": [ + 103215445, + 103215447, + 8413793126, + 8413793127, + 103215448 + ], + "geometry": [ + { "lat": 40.8317746, "lon": -74.0018744 }, + { "lat": 40.8324640, "lon": -74.0012167 }, + { "lat": 40.8325864, "lon": -74.0011000 }, + { "lat": 40.8327120, "lon": -74.0009801 }, + { "lat": 40.8328506, "lon": -74.0008417 } + ], + "tags": { + "highway": "residential", + "name": "Edison Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11576924, + "bounds": { + "minlat": 40.8117991, + "minlon": -73.9947520, + "maxlat": 40.8129786, + "maxlon": -73.9926732 + }, + "nodes": [ + 103215584, + 13318551939, + 440208174 + ], + "geometry": [ + { "lat": 40.8117991, "lon": -73.9926732 }, + { "lat": 40.8118421, "lon": -73.9927490 }, + { "lat": 40.8129786, "lon": -73.9947520 } + ], + "tags": { + "highway": "residential", + "name": "Riverview Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Riverview", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11576949, + "bounds": { + "minlat": 40.8417833, + "minlon": -74.0006299, + "maxlat": 40.8440876, + "maxlon": -73.9965218 + }, + "nodes": [ + 103149650, + 5976411349, + 5976411350, + 103215670, + 10285498731, + 530805888, + 530805889 + ], + "geometry": [ + { "lat": 40.8440876, "lon": -74.0006299 }, + { "lat": 40.8438489, "lon": -74.0002132 }, + { "lat": 40.8438191, "lon": -74.0001567 }, + { "lat": 40.8427849, "lon": -73.9983532 }, + { "lat": 40.8418137, "lon": -73.9966448 }, + { "lat": 40.8417862, "lon": -73.9965681 }, + { "lat": 40.8417833, "lon": -73.9965218 } + ], + "tags": { + "highway": "residential", + "name": "East Edsall Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edsall", + "tiger:name_direction_prefix": "E", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11576973, + "bounds": { + "minlat": 40.8697591, + "minlon": -73.9566790, + "maxlat": 40.8713430, + "maxlon": -73.9550130 + }, + "nodes": [ + 103213791, + 7930268874, + 6895957636, + 5724370204, + 5724370202, + 5724370212, + 7656323493 + ], + "geometry": [ + { "lat": 40.8697591, "lon": -73.9566790 }, + { "lat": 40.8698559, "lon": -73.9565799 }, + { "lat": 40.8703002, "lon": -73.9561133 }, + { "lat": 40.8704752, "lon": -73.9559277 }, + { "lat": 40.8708119, "lon": -73.9555717 }, + { "lat": 40.8709342, "lon": -73.9554429 }, + { "lat": 40.8713430, "lon": -73.9550130 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "4", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 11576977, + "bounds": { + "minlat": 40.8543980, + "minlon": -73.9921813, + "maxlat": 40.8558332, + "maxlon": -73.9897620 + }, + "nodes": [ + 103215836, + 8075114231, + 8078713075, + 103093215 + ], + "geometry": [ + { "lat": 40.8558332, "lon": -73.9921813 }, + { "lat": 40.8557611, "lon": -73.9920588 }, + { "lat": 40.8544557, "lon": -73.9898607 }, + { "lat": 40.8543980, "lon": -73.9897620 } + ], + "tags": { + "highway": "residential", + "name": "Sylvan Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11576983, + "bounds": { + "minlat": 40.8561304, + "minlon": -73.9962770, + "maxlat": 40.8586520, + "maxlon": -73.9919619 + }, + "nodes": [ + 103215846, + 8076425413, + 8075114230, + 103215847 + ], + "geometry": [ + { "lat": 40.8586520, "lon": -73.9962770 }, + { "lat": 40.8585831, "lon": -73.9961611 }, + { "lat": 40.8561978, "lon": -73.9920789 }, + { "lat": 40.8561304, "lon": -73.9919619 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Sylvan Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11576999, + "bounds": { + "minlat": 40.8817021, + "minlon": -73.9990910, + "maxlat": 40.8823790, + "maxlon": -73.9986920 + }, + "nodes": [ + 103199475, + 103187075 + ], + "geometry": [ + { "lat": 40.8817021, "lon": -73.9990910 }, + { "lat": 40.8823790, "lon": -73.9986920 } + ], + "tags": { + "highway": "residential", + "name": "Lewis Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lewis", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11577025, + "bounds": { + "minlat": 40.8300440, + "minlon": -73.9963370, + "maxlat": 40.8336460, + "maxlon": -73.9924900 + }, + "nodes": [ + 103150162, + 103216026, + 8530362411, + 103216028, + 103216030, + 103216032, + 103216034, + 103216036, + 103216038, + 103162260, + 103216040, + 103216041, + 103216042, + 103216043, + 103216046, + 103174394, + 103156948, + 103216049 + ], + "geometry": [ + { "lat": 40.8300440, "lon": -73.9963370 }, + { "lat": 40.8303560, "lon": -73.9960490 }, + { "lat": 40.8303805, "lon": -73.9960236 }, + { "lat": 40.8306260, "lon": -73.9957690 }, + { "lat": 40.8307350, "lon": -73.9956240 }, + { "lat": 40.8308350, "lon": -73.9954650 }, + { "lat": 40.8309250, "lon": -73.9952940 }, + { "lat": 40.8310250, "lon": -73.9950670 }, + { "lat": 40.8310900, "lon": -73.9949450 }, + { "lat": 40.8311790, "lon": -73.9948130 }, + { "lat": 40.8312480, "lon": -73.9947290 }, + { "lat": 40.8313550, "lon": -73.9946250 }, + { "lat": 40.8315540, "lon": -73.9944770 }, + { "lat": 40.8317530, "lon": -73.9943110 }, + { "lat": 40.8321453, "lon": -73.9939422 }, + { "lat": 40.8326927, "lon": -73.9934125 }, + { "lat": 40.8331223, "lon": -73.9929941 }, + { "lat": 40.8336460, "lon": -73.9924900 } + ], + "tags": { + "highway": "residential", + "name": "Stewart Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Stewart", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11577116, + "bounds": { + "minlat": 40.8766233, + "minlon": -74.0072890, + "maxlat": 40.8787441, + "maxlon": -74.0006593 + }, + "nodes": [ + 103216550, + 475154856, + 103216551, + 103186274, + 103216552, + 103216553, + 103216554, + 103158759, + 103158762, + 103216555, + 103216556, + 6536062168, + 6536062701, + 103216558, + 6536062697, + 6536062695, + 103216559, + 103093343 + ], + "geometry": [ + { "lat": 40.8787441, "lon": -74.0072890 }, + { "lat": 40.8786549, "lon": -74.0069995 }, + { "lat": 40.8784855, "lon": -74.0064500 }, + { "lat": 40.8782275, "lon": -74.0055630 }, + { "lat": 40.8781845, "lon": -74.0054180 }, + { "lat": 40.8780165, "lon": -74.0048980 }, + { "lat": 40.8779715, "lon": -74.0047630 }, + { "lat": 40.8777325, "lon": -74.0040540 }, + { "lat": 40.8776985, "lon": -74.0039540 }, + { "lat": 40.8775455, "lon": -74.0035020 }, + { "lat": 40.8774095, "lon": -74.0030940 }, + { "lat": 40.8772958, "lon": -74.0027665 }, + { "lat": 40.8772159, "lon": -74.0025362 }, + { "lat": 40.8770987, "lon": -74.0021987 }, + { "lat": 40.8770435, "lon": -74.0020267 }, + { "lat": 40.8769633, "lon": -74.0017769 }, + { "lat": 40.8768635, "lon": -74.0014660 }, + { "lat": 40.8766233, "lon": -74.0006593 } + ], + "tags": { + "highway": "residential", + "name": "Fycke Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fycke", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11577132, + "bounds": { + "minlat": 40.8642170, + "minlon": -73.9698456, + "maxlat": 40.8655669, + "maxlon": -73.9675550 + }, + "nodes": [ + 103132986, + 478286576, + 440215011 + ], + "geometry": [ + { "lat": 40.8642170, "lon": -73.9675550 }, + { "lat": 40.8653543, "lon": -73.9694660 }, + { "lat": 40.8655669, "lon": -73.9698456 } + ], + "tags": { + "highway": "residential", + "name": "Grandview Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grandview", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11577142, + "bounds": { + "minlat": 40.8230700, + "minlon": -73.9979050, + "maxlat": 40.8237360, + "maxlon": -73.9966100 + }, + "nodes": [ + 103216726, + 103216727, + 440208193, + 103147953 + ], + "geometry": [ + { "lat": 40.8230700, "lon": -73.9966100 }, + { "lat": 40.8232120, "lon": -73.9968870 }, + { "lat": 40.8232330, "lon": -73.9969270 }, + { "lat": 40.8237360, "lon": -73.9979050 } + ], + "tags": { + "highway": "residential", + "name": "Fairview Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11577146, + "bounds": { + "minlat": 40.8306480, + "minlon": -73.9767910, + "maxlat": 40.8344300, + "maxlon": -73.9748520 + }, + "nodes": [ + 103191014, + 103216732, + 103216734, + 103125365, + 103216735, + 103216736, + 7205234186, + 103216737, + 103216738, + 103216740, + 103216742, + 103216744, + 103216746, + 6274131606, + 6901839938, + 103216751, + 7130161691, + 103216754, + 103093089 + ], + "geometry": [ + { "lat": 40.8306480, "lon": -73.9767910 }, + { "lat": 40.8314130, "lon": -73.9765010 }, + { "lat": 40.8314920, "lon": -73.9764470 }, + { "lat": 40.8315720, "lon": -73.9763610 }, + { "lat": 40.8315959, "lon": -73.9763057 }, + { "lat": 40.8316287, "lon": -73.9762345 }, + { "lat": 40.8316811, "lon": -73.9761650 }, + { "lat": 40.8317559, "lon": -73.9760760 }, + { "lat": 40.8318661, "lon": -73.9759555 }, + { "lat": 40.8319970, "lon": -73.9758213 }, + { "lat": 40.8320929, "lon": -73.9757478 }, + { "lat": 40.8322930, "lon": -73.9756110 }, + { "lat": 40.8324340, "lon": -73.9755555 }, + { "lat": 40.8329711, "lon": -73.9754168 }, + { "lat": 40.8334307, "lon": -73.9753148 }, + { "lat": 40.8336470, "lon": -73.9752440 }, + { "lat": 40.8337317, "lon": -73.9752044 }, + { "lat": 40.8338429, "lon": -73.9751539 }, + { "lat": 40.8344300, "lon": -73.9748520 } + ], + "tags": { + "highway": "residential", + "name": "Arcadian Way", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Arcadian", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11577233, + "bounds": { + "minlat": 40.8592770, + "minlon": -74.0197900, + "maxlat": 40.8650190, + "maxlon": -74.0178701 + }, + "nodes": [ + 103143376, + 103217260, + 103217261, + 103156006, + 103217263, + 103217264, + 103162015, + 103217266, + 103217268 + ], + "geometry": [ + { "lat": 40.8592770, "lon": -74.0197900 }, + { "lat": 40.8603510, "lon": -74.0194040 }, + { "lat": 40.8612140, "lon": -74.0191410 }, + { "lat": 40.8619380, "lon": -74.0188550 }, + { "lat": 40.8625200, "lon": -74.0186240 }, + { "lat": 40.8631600, "lon": -74.0183840 }, + { "lat": 40.8640270, "lon": -74.0181100 }, + { "lat": 40.8646880, "lon": -74.0179559 }, + { "lat": 40.8650190, "lon": -74.0178701 } + ], + "tags": { + "highway": "residential", + "name": "Roosevelt Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roosevelt", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11577294, + "bounds": { + "minlat": 40.8722080, + "minlon": -73.9874530, + "maxlat": 40.8725061, + "maxlon": -73.9872894 + }, + "nodes": [ + 103217648, + 103156927 + ], + "geometry": [ + { "lat": 40.8722080, "lon": -73.9874530 }, + { "lat": 40.8725061, "lon": -73.9872894 } + ], + "tags": { + "highway": "residential", + "name": "Lowe Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lowe", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11577412, + "bounds": { + "minlat": 40.8203389, + "minlon": -74.0063108, + "maxlat": 40.8210954, + "maxlon": -74.0054080 + }, + "nodes": [ + 103218369, + 6556272469, + 6556272468, + 103218370, + 6556272467, + 6556272466, + 6556272470, + 13525551081, + 103218371 + ], + "geometry": [ + { "lat": 40.8210954, "lon": -74.0063108 }, + { "lat": 40.8209785, "lon": -74.0055156 }, + { "lat": 40.8209699, "lon": -74.0054720 }, + { "lat": 40.8209580, "lon": -74.0054415 }, + { "lat": 40.8209407, "lon": -74.0054200 }, + { "lat": 40.8209138, "lon": -74.0054080 }, + { "lat": 40.8208705, "lon": -74.0054110 }, + { "lat": 40.8204080, "lon": -74.0055206 }, + { "lat": 40.8203389, "lon": -74.0055384 } + ], + "tags": { + "highway": "residential", + "name": "Luxoro Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Luxoro", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11577504, + "bounds": { + "minlat": 40.8349604, + "minlon": -74.0043519, + "maxlat": 40.8355468, + "maxlon": -74.0032939 + }, + "nodes": [ + 103208123, + 12016315318, + 12016315317, + 12016315198, + 12016315199, + 103159278 + ], + "geometry": [ + { "lat": 40.8349604, "lon": -74.0032939 }, + { "lat": 40.8350001, "lon": -74.0033652 }, + { "lat": 40.8350132, "lon": -74.0033888 }, + { "lat": 40.8354957, "lon": -74.0042559 }, + { "lat": 40.8355108, "lon": -74.0042843 }, + { "lat": 40.8355468, "lon": -74.0043519 } + ], + "tags": { + "highway": "residential", + "name": "Alan Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Alan", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11577572, + "bounds": { + "minlat": 40.8402467, + "minlon": -73.9837479, + "maxlat": 40.8439040, + "maxlon": -73.9800510 + }, + "nodes": [ + 103174036, + 103166396, + 103160938, + 7289786799, + 7289786796, + 7460714582, + 7464941578, + 6902148573, + 7464941552, + 1749228822, + 7464941550, + 7464941548, + 103219155, + 7464941542, + 7464941516, + 7464941565, + 7464941515, + 7464941562, + 6902148568, + 1749228832, + 7111343882, + 7464928529, + 7464941591, + 7455134457, + 103219157 + ], + "geometry": [ + { "lat": 40.8402467, "lon": -73.9837479 }, + { "lat": 40.8408243, "lon": -73.9831785 }, + { "lat": 40.8416280, "lon": -73.9823470 }, + { "lat": 40.8419071, "lon": -73.9820638 }, + { "lat": 40.8419260, "lon": -73.9820447 }, + { "lat": 40.8419712, "lon": -73.9819988 }, + { "lat": 40.8420701, "lon": -73.9818985 }, + { "lat": 40.8421974, "lon": -73.9817693 }, + { "lat": 40.8422618, "lon": -73.9817040 }, + { "lat": 40.8423494, "lon": -73.9816151 }, + { "lat": 40.8424277, "lon": -73.9815356 }, + { "lat": 40.8425135, "lon": -73.9814486 }, + { "lat": 40.8425890, "lon": -73.9813720 }, + { "lat": 40.8426420, "lon": -73.9813188 }, + { "lat": 40.8427003, "lon": -73.9812602 }, + { "lat": 40.8427896, "lon": -73.9811705 }, + { "lat": 40.8428695, "lon": -73.9810903 }, + { "lat": 40.8429258, "lon": -73.9810337 }, + { "lat": 40.8430051, "lon": -73.9809540 }, + { "lat": 40.8430391, "lon": -73.9809198 }, + { "lat": 40.8430681, "lon": -73.9808907 }, + { "lat": 40.8432428, "lon": -73.9807152 }, + { "lat": 40.8434045, "lon": -73.9805527 }, + { "lat": 40.8434989, "lon": -73.9804579 }, + { "lat": 40.8439040, "lon": -73.9800510 } + ], + "tags": { + "highway": "residential", + "name": "Inwood Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Inwood", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11577573, + "bounds": { + "minlat": 40.8349300, + "minlon": -73.9872630, + "maxlat": 40.8390990, + "maxlon": -73.9848340 + }, + "nodes": [ + 103190789, + 13527755881, + 103219182, + 103219184, + 7524670132, + 7527473483, + 103219186, + 103219189, + 103219191, + 103219193, + 103125442, + 103219195, + 7526573561, + 103219197, + 103219198, + 103219200, + 103219202, + 103160745, + 103219204, + 103219206, + 103219208, + 7519765690, + 5748061833, + 103111272 + ], + "geometry": [ + { "lat": 40.8349300, "lon": -73.9872630 }, + { "lat": 40.8349962, "lon": -73.9872569 }, + { "lat": 40.8351030, "lon": -73.9872470 }, + { "lat": 40.8352010, "lon": -73.9872300 }, + { "lat": 40.8356005, "lon": -73.9871413 }, + { "lat": 40.8357356, "lon": -73.9871113 }, + { "lat": 40.8358046, "lon": -73.9870876 }, + { "lat": 40.8358611, "lon": -73.9870572 }, + { "lat": 40.8359380, "lon": -73.9870070 }, + { "lat": 40.8360315, "lon": -73.9869446 }, + { "lat": 40.8360795, "lon": -73.9869145 }, + { "lat": 40.8361840, "lon": -73.9868590 }, + { "lat": 40.8365489, "lon": -73.9866302 }, + { "lat": 40.8367280, "lon": -73.9865180 }, + { "lat": 40.8368550, "lon": -73.9864610 }, + { "lat": 40.8374840, "lon": -73.9861990 }, + { "lat": 40.8375980, "lon": -73.9861270 }, + { "lat": 40.8376880, "lon": -73.9860590 }, + { "lat": 40.8378640, "lon": -73.9859870 }, + { "lat": 40.8379660, "lon": -73.9859320 }, + { "lat": 40.8380940, "lon": -73.9858370 }, + { "lat": 40.8383774, "lon": -73.9855542 }, + { "lat": 40.8386857, "lon": -73.9852465 }, + { "lat": 40.8390990, "lon": -73.9848340 } + ], + "tags": { + "highway": "residential", + "name": "Inwood Terrace", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Inwood", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11577579, + "bounds": { + "minlat": 40.8315565, + "minlon": -73.9813338, + "maxlat": 40.8332250, + "maxlon": -73.9808530 + }, + "nodes": [ + 103162115, + 103162166, + 103219288, + 103219289, + 103219290, + 103219291, + 103219292, + 103219293, + 103219294, + 103125390 + ], + "geometry": [ + { "lat": 40.8315565, "lon": -73.9813338 }, + { "lat": 40.8316606, "lon": -73.9813043 }, + { "lat": 40.8320750, "lon": -73.9812410 }, + { "lat": 40.8322070, "lon": -73.9812050 }, + { "lat": 40.8323570, "lon": -73.9811410 }, + { "lat": 40.8323990, "lon": -73.9811180 }, + { "lat": 40.8327490, "lon": -73.9809570 }, + { "lat": 40.8329010, "lon": -73.9809090 }, + { "lat": 40.8329920, "lon": -73.9808900 }, + { "lat": 40.8332250, "lon": -73.9808530 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Dearborn Road", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dearborn", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11577606, + "bounds": { + "minlat": 40.8803308, + "minlon": -74.0053927, + "maxlat": 40.8832315, + "maxlon": -74.0038392 + }, + "nodes": [ + 103219389, + 103219390, + 13527742916, + 103199469 + ], + "geometry": [ + { "lat": 40.8803308, "lon": -74.0053927 }, + { "lat": 40.8811500, "lon": -74.0049380 }, + { "lat": 40.8831714, "lon": -74.0038709 }, + { "lat": 40.8832315, "lon": -74.0038392 } + ], + "tags": { + "highway": "residential", + "name": "Stelton Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Stelton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11577607, + "bounds": { + "minlat": 40.8784855, + "minlon": -74.0064500, + "maxlat": 40.8794871, + "maxlon": -74.0059192 + }, + "nodes": [ + 103216551, + 103219394 + ], + "geometry": [ + { "lat": 40.8784855, "lon": -74.0064500 }, + { "lat": 40.8794871, "lon": -74.0059192 } + ], + "tags": { + "highway": "residential", + "name": "Stelton Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Stelton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11577702, + "bounds": { + "minlat": 40.8670710, + "minlon": -73.9709700, + "maxlat": 40.8675030, + "maxlon": -73.9703672 + }, + "nodes": [ + 103220028, + 7373684606, + 103220030 + ], + "geometry": [ + { "lat": 40.8675030, "lon": -73.9703672 }, + { "lat": 40.8673071, "lon": -73.9707166 }, + { "lat": 40.8670710, "lon": -73.9709700 } + ], + "tags": { + "highway": "residential", + "name": "Ridge Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ridge", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11577721, + "bounds": { + "minlat": 40.8790093, + "minlon": -73.9565003, + "maxlat": 40.8806769, + "maxlon": -73.9553400 + }, + "nodes": [ + 103220106, + 10059739081, + 103220107, + 103220108, + 103220109, + 103220110, + 103220111, + 103220112, + 103220114, + 10059739104, + 103220116, + 10059739105, + 103220118, + 103220120 + ], + "geometry": [ + { "lat": 40.8790093, "lon": -73.9564277 }, + { "lat": 40.8791140, "lon": -73.9564441 }, + { "lat": 40.8793430, "lon": -73.9564800 }, + { "lat": 40.8794374, "lon": -73.9565003 }, + { "lat": 40.8795462, "lon": -73.9564923 }, + { "lat": 40.8796580, "lon": -73.9564642 }, + { "lat": 40.8797524, "lon": -73.9564121 }, + { "lat": 40.8798346, "lon": -73.9563533 }, + { "lat": 40.8799151, "lon": -73.9562586 }, + { "lat": 40.8802057, "lon": -73.9558039 }, + { "lat": 40.8802474, "lon": -73.9557441 }, + { "lat": 40.8803615, "lon": -73.9556234 }, + { "lat": 40.8805722, "lon": -73.9554250 }, + { "lat": 40.8806769, "lon": -73.9553400 } + ], + "tags": { + "highway": "residential", + "name": "Ridge Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ridge", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11577748, + "bounds": { + "minlat": 40.8312929, + "minlon": -73.9911435, + "maxlat": 40.8316783, + "maxlon": -73.9901551 + }, + "nodes": [ + 103220215, + 440208216, + 103220218, + 103220219 + ], + "geometry": [ + { "lat": 40.8312929, "lon": -73.9901551 }, + { "lat": 40.8315118, "lon": -73.9907273 }, + { "lat": 40.8315720, "lon": -73.9908841 }, + { "lat": 40.8316783, "lon": -73.9911435 } + ], + "tags": { + "highway": "residential", + "name": "Bagley Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bagley", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11577754, + "bounds": { + "minlat": 40.8083921, + "minlon": -73.9847618, + "maxlat": 40.8090546, + "maxlon": -73.9830274 + }, + "nodes": [ + 103126644, + 11465427448, + 11465427445, + 103161922, + 11465427442, + 103220235 + ], + "geometry": [ + { "lat": 40.8090546, "lon": -73.9847618 }, + { "lat": 40.8089591, "lon": -73.9845144 }, + { "lat": 40.8087496, "lon": -73.9839625 }, + { "lat": 40.8086499, "lon": -73.9837001 }, + { "lat": 40.8086473, "lon": -73.9836936 }, + { "lat": 40.8083921, "lon": -73.9830274 } + ], + "tags": { + "access": "private", + "highway": "residential", + "layer": "1", + "name": "Independence Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Independence", + "tiger:name_type": "Way", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11577759, + "bounds": { + "minlat": 40.8084687, + "minlon": -73.9878061, + "maxlat": 40.8101274, + "maxlon": -73.9850670 + }, + "nodes": [ + 103220237, + 3480372966, + 5482328578, + 103220238, + 3480372967, + 3480372968, + 3480372969, + 103220239, + 103220231 + ], + "geometry": [ + { "lat": 40.8084687, "lon": -73.9850670 }, + { "lat": 40.8085054, "lon": -73.9851429 }, + { "lat": 40.8090747, "lon": -73.9866365 }, + { "lat": 40.8094633, "lon": -73.9876562 }, + { "lat": 40.8095149, "lon": -73.9877475 }, + { "lat": 40.8095847, "lon": -73.9878061 }, + { "lat": 40.8096789, "lon": -73.9877929 }, + { "lat": 40.8098584, "lon": -73.9876911 }, + { "lat": 40.8101274, "lon": -73.9875136 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Independence Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Independence", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11577780, + "bounds": { + "minlat": 40.8627210, + "minlon": -74.0233171, + "maxlat": 40.8642176, + "maxlon": -74.0162980 + }, + "nodes": [ + 103220477, + 103220478, + 103179629, + 103217264, + 103214376 + ], + "geometry": [ + { "lat": 40.8642176, "lon": -74.0233171 }, + { "lat": 40.8638120, "lon": -74.0214780 }, + { "lat": 40.8634910, "lon": -74.0199570 }, + { "lat": 40.8631600, "lon": -74.0183840 }, + { "lat": 40.8627210, "lon": -74.0162980 } + ], + "tags": { + "highway": "residential", + "name": "Gordon Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gordon", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11577805, + "bounds": { + "minlat": 40.8637920, + "minlon": -73.9818000, + "maxlat": 40.8660441, + "maxlon": -73.9758080 + }, + "nodes": [ + 103220629, + 10115455710, + 103220631, + 103220633, + 103220635, + 103220636, + 103220637, + 103220638, + 103220640, + 103174315, + 103220642, + 103220644, + 103220647, + 10115455708, + 103156431, + 103220649, + 103205256, + 103220651, + 103220653, + 518912267, + 103220655, + 103220656, + 103220658, + 103220660, + 103220662 + ], + "geometry": [ + { "lat": 40.8638010, "lon": -73.9818000 }, + { "lat": 40.8637922, "lon": -73.9817224 }, + { "lat": 40.8637920, "lon": -73.9816750 }, + { "lat": 40.8638000, "lon": -73.9815360 }, + { "lat": 40.8638240, "lon": -73.9814070 }, + { "lat": 40.8638700, "lon": -73.9812410 }, + { "lat": 40.8639290, "lon": -73.9810820 }, + { "lat": 40.8640000, "lon": -73.9809320 }, + { "lat": 40.8641080, "lon": -73.9807560 }, + { "lat": 40.8650070, "lon": -73.9796050 }, + { "lat": 40.8654480, "lon": -73.9790350 }, + { "lat": 40.8655060, "lon": -73.9789310 }, + { "lat": 40.8655510, "lon": -73.9788160 }, + { "lat": 40.8656949, "lon": -73.9782281 }, + { "lat": 40.8657330, "lon": -73.9780750 }, + { "lat": 40.8659320, "lon": -73.9772400 }, + { "lat": 40.8659922, "lon": -73.9769932 }, + { "lat": 40.8660182, "lon": -73.9767529 }, + { "lat": 40.8660441, "lon": -73.9764010 }, + { "lat": 40.8660441, "lon": -73.9761911 }, + { "lat": 40.8660441, "lon": -73.9760920 }, + { "lat": 40.8660370, "lon": -73.9759500 }, + { "lat": 40.8660290, "lon": -73.9758950 }, + { "lat": 40.8660080, "lon": -73.9758470 }, + { "lat": 40.8659740, "lon": -73.9758080 } + ], + "tags": { + "highway": "residential", + "name": "Grandview Terrace", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grandview", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11577839, + "bounds": { + "minlat": 40.8465008, + "minlon": -73.9657799, + "maxlat": 40.8529423, + "maxlon": -73.9601219 + }, + "nodes": [ + 2902396749, + 2349752517, + 5106288667, + 103221335, + 2349755380, + 103221339, + 103221341, + 103221344, + 103221346, + 103221348, + 103221350, + 103221352, + 103221354, + 103221356, + 103221358, + 103221360, + 440208249, + 103221366, + 103221367, + 103221368, + 103221369, + 2715012963, + 103221370, + 103221371, + 103221373, + 2715012962, + 582988412, + 2715012961, + 582988413, + 2715012960, + 171240492, + 2715012959, + 171240493, + 2715012958, + 171240494, + 2715012956, + 2715012957, + 171240495, + 171240497 + ], + "geometry": [ + { "lat": 40.8475224, "lon": -73.9657799 }, + { "lat": 40.8474011, "lon": -73.9656782 }, + { "lat": 40.8473296, "lon": -73.9656410 }, + { "lat": 40.8472612, "lon": -73.9656280 }, + { "lat": 40.8471497, "lon": -73.9656079 }, + { "lat": 40.8470035, "lon": -73.9655436 }, + { "lat": 40.8468887, "lon": -73.9654945 }, + { "lat": 40.8467949, "lon": -73.9654261 }, + { "lat": 40.8467012, "lon": -73.9653513 }, + { "lat": 40.8466244, "lon": -73.9652550 }, + { "lat": 40.8465783, "lon": -73.9651611 }, + { "lat": 40.8465379, "lon": -73.9650479 }, + { "lat": 40.8465169, "lon": -73.9649368 }, + { "lat": 40.8465008, "lon": -73.9648278 }, + { "lat": 40.8465121, "lon": -73.9646462 }, + { "lat": 40.8465428, "lon": -73.9645222 }, + { "lat": 40.8465780, "lon": -73.9644160 }, + { "lat": 40.8465810, "lon": -73.9644090 }, + { "lat": 40.8468335, "lon": -73.9640116 }, + { "lat": 40.8469348, "lon": -73.9638807 }, + { "lat": 40.8470545, "lon": -73.9637438 }, + { "lat": 40.8471534, "lon": -73.9636343 }, + { "lat": 40.8472750, "lon": -73.9635340 }, + { "lat": 40.8473870, "lon": -73.9634610 }, + { "lat": 40.8476360, "lon": -73.9633440 }, + { "lat": 40.8479660, "lon": -73.9631961 }, + { "lat": 40.8483043, "lon": -73.9630135 }, + { "lat": 40.8490478, "lon": -73.9625754 }, + { "lat": 40.8494069, "lon": -73.9623350 }, + { "lat": 40.8497176, "lon": -73.9621189 }, + { "lat": 40.8500352, "lon": -73.9618907 }, + { "lat": 40.8504794, "lon": -73.9616077 }, + { "lat": 40.8509329, "lon": -73.9613126 }, + { "lat": 40.8511538, "lon": -73.9611331 }, + { "lat": 40.8513886, "lon": -73.9609231 }, + { "lat": 40.8516487, "lon": -73.9607314 }, + { "lat": 40.8517892, "lon": -73.9606399 }, + { "lat": 40.8519180, "lon": -73.9605744 }, + { "lat": 40.8529423, "lon": -73.9601219 } + ], + "tags": { + "bicycle": "yes", + "covered": "no", + "cycleway": "no", + "highway": "unclassified", + "lanes": "2", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "surface": "asphalt", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 11577862, + "bounds": { + "minlat": 40.8757102, + "minlon": -73.9467263, + "maxlat": 40.8759364, + "maxlon": -73.9466461 + }, + "nodes": [ + 5102220056, + 5102220063, + 5102220055, + 5102220058, + 2214758021 + ], + "geometry": [ + { "lat": 40.8757102, "lon": -73.9467263 }, + { "lat": 40.8757637, "lon": -73.9466877 }, + { "lat": 40.8758185, "lon": -73.9466595 }, + { "lat": 40.8758763, "lon": -73.9466461 }, + { "lat": 40.8759364, "lon": -73.9466549 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 11577869, + "bounds": { + "minlat": 40.8782233, + "minlon": -73.9487234, + "maxlat": 40.8787916, + "maxlon": -73.9480012 + }, + "nodes": [ + 103235606, + 9239455204, + 9239455205, + 9239455206, + 103221380, + 9239455207, + 9239455208, + 103221381, + 9239455209, + 103221386, + 9239455210, + 103221391, + 9239455211, + 5603140248 + ], + "geometry": [ + { "lat": 40.8787916, "lon": -73.9480836 }, + { "lat": 40.8787619, "lon": -73.9480486 }, + { "lat": 40.8787302, "lon": -73.9480242 }, + { "lat": 40.8786937, "lon": -73.9480058 }, + { "lat": 40.8786557, "lon": -73.9480012 }, + { "lat": 40.8786194, "lon": -73.9480048 }, + { "lat": 40.8785863, "lon": -73.9480194 }, + { "lat": 40.8785513, "lon": -73.9480475 }, + { "lat": 40.8785254, "lon": -73.9480818 }, + { "lat": 40.8784983, "lon": -73.9481295 }, + { "lat": 40.8784620, "lon": -73.9482105 }, + { "lat": 40.8783849, "lon": -73.9484108 }, + { "lat": 40.8783164, "lon": -73.9485504 }, + { "lat": 40.8782233, "lon": -73.9487234 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Dyckman Hill Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 11577912, + "bounds": { + "minlat": 40.8776940, + "minlon": -74.0008360, + "maxlat": 40.8779060, + "maxlon": -74.0000530 + }, + "nodes": [ + 103093345, + 6536062725, + 6536062748, + 6536062547, + 103221771, + 103221770, + 6536062726, + 103221769 + ], + "geometry": [ + { "lat": 40.8776940, "lon": -74.0000530 }, + { "lat": 40.8778124, "lon": -74.0004184 }, + { "lat": 40.8778313, "lon": -74.0004767 }, + { "lat": 40.8778752, "lon": -74.0006123 }, + { "lat": 40.8779020, "lon": -74.0006950 }, + { "lat": 40.8779060, "lon": -74.0007630 }, + { "lat": 40.8778982, "lon": -74.0007984 }, + { "lat": 40.8778900, "lon": -74.0008360 } + ], + "tags": { + "highway": "residential", + "name": "Letter Avenue", + "oneway": "yes", + "surface": "paved", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Letter", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 11577915, + "bounds": { + "minlat": 40.8612089, + "minlon": -73.9732829, + "maxlat": 40.8669389, + "maxlon": -73.9721850 + }, + "nodes": [ + 299386213, + 7373684608, + 103221778, + 103221780, + 103221783, + 103221784, + 103221785, + 478286554, + 103221786, + 103221787, + 103221788, + 13018445775, + 6320451176, + 7373684644, + 3531038449, + 6320451149, + 6320451182, + 13324698245, + 103221789, + 103097528, + 3531038433, + 6320451143, + 103184370, + 103221790, + 103221792, + 103221794, + 103097522 + ], + "geometry": [ + { "lat": 40.8669389, "lon": -73.9732829 }, + { "lat": 40.8666679, "lon": -73.9728598 }, + { "lat": 40.8665840, "lon": -73.9727380 }, + { "lat": 40.8664960, "lon": -73.9726270 }, + { "lat": 40.8664100, "lon": -73.9725440 }, + { "lat": 40.8663040, "lon": -73.9724660 }, + { "lat": 40.8661900, "lon": -73.9724090 }, + { "lat": 40.8658612, "lon": -73.9722961 }, + { "lat": 40.8656340, "lon": -73.9722180 }, + { "lat": 40.8654860, "lon": -73.9721890 }, + { "lat": 40.8653380, "lon": -73.9721850 }, + { "lat": 40.8649762, "lon": -73.9722292 }, + { "lat": 40.8646933, "lon": -73.9722637 }, + { "lat": 40.8646142, "lon": -73.9722737 }, + { "lat": 40.8645372, "lon": -73.9722834 }, + { "lat": 40.8640932, "lon": -73.9723370 }, + { "lat": 40.8635149, "lon": -73.9724076 }, + { "lat": 40.8634480, "lon": -73.9724158 }, + { "lat": 40.8628970, "lon": -73.9724830 }, + { "lat": 40.8628180, "lon": -73.9724940 }, + { "lat": 40.8624650, "lon": -73.9725407 }, + { "lat": 40.8620587, "lon": -73.9725945 }, + { "lat": 40.8619720, "lon": -73.9726060 }, + { "lat": 40.8614998, "lon": -73.9726820 }, + { "lat": 40.8613734, "lon": -73.9727186 }, + { "lat": 40.8612500, "lon": -73.9727693 }, + { "lat": 40.8612089, "lon": -73.9727977 } + ], + "tags": { + "highway": "residential", + "name": "Executive Drive", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Executive", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11577919, + "bounds": { + "minlat": 40.8236119, + "minlon": -73.9770881, + "maxlat": 40.8266190, + "maxlon": -73.9750940 + }, + "nodes": [ + 103221822, + 103221823, + 103221825, + 103221827, + 5362546542, + 5362546554, + 7672892598, + 7672892602, + 103221829, + 103221831 + ], + "geometry": [ + { "lat": 40.8236119, "lon": -73.9770881 }, + { "lat": 40.8238088, "lon": -73.9768737 }, + { "lat": 40.8239913, "lon": -73.9767085 }, + { "lat": 40.8240910, "lon": -73.9766410 }, + { "lat": 40.8241223, "lon": -73.9766218 }, + { "lat": 40.8241486, "lon": -73.9766056 }, + { "lat": 40.8246242, "lon": -73.9763134 }, + { "lat": 40.8248558, "lon": -73.9761711 }, + { "lat": 40.8255590, "lon": -73.9757390 }, + { "lat": 40.8266190, "lon": -73.9750940 } + ], + "tags": { + "highway": "residential", + "name": "Edgewater Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11577948, + "bounds": { + "minlat": 40.8364024, + "minlon": -74.0075553, + "maxlat": 40.8435869, + "maxlon": -73.9948333 + }, + "nodes": [ + 103162503, + 13524430693, + 103222026, + 103222028, + 13524430692, + 13524430690, + 103139596, + 13524430689, + 13524430691, + 12016315342, + 12016315338, + 103208136, + 12016315339, + 12016315341, + 12016293132, + 12016293133, + 103159305, + 12016293137, + 12016293131, + 12016293126, + 12016293129, + 103190891, + 12016293128, + 12016147310, + 12016147311, + 12016147312, + 103222030, + 12016147314, + 12016147313, + 7085979718, + 9884522571, + 12016147222, + 103222032, + 12016147221, + 8218997735, + 103246720, + 299182005 + ], + "geometry": [ + { "lat": 40.8364024, "lon": -73.9948333 }, + { "lat": 40.8364145, "lon": -73.9949074 }, + { "lat": 40.8364701, "lon": -73.9951182 }, + { "lat": 40.8365222, "lon": -73.9952422 }, + { "lat": 40.8378299, "lon": -73.9975078 }, + { "lat": 40.8378466, "lon": -73.9975347 }, + { "lat": 40.8378752, "lon": -73.9975862 }, + { "lat": 40.8379187, "lon": -73.9976594 }, + { "lat": 40.8379373, "lon": -73.9976943 }, + { "lat": 40.8388111, "lon": -73.9992139 }, + { "lat": 40.8388307, "lon": -73.9992473 }, + { "lat": 40.8388824, "lon": -73.9993350 }, + { "lat": 40.8389288, "lon": -73.9994162 }, + { "lat": 40.8389455, "lon": -73.9994455 }, + { "lat": 40.8398799, "lon": -74.0010840 }, + { "lat": 40.8398967, "lon": -74.0011134 }, + { "lat": 40.8399315, "lon": -74.0011744 }, + { "lat": 40.8399661, "lon": -74.0012354 }, + { "lat": 40.8399821, "lon": -74.0012634 }, + { "lat": 40.8400737, "lon": -74.0014247 }, + { "lat": 40.8401121, "lon": -74.0014885 }, + { "lat": 40.8401586, "lon": -74.0015657 }, + { "lat": 40.8402023, "lon": -74.0016410 }, + { "lat": 40.8402459, "lon": -74.0017162 }, + { "lat": 40.8408816, "lon": -74.0028306 }, + { "lat": 40.8408981, "lon": -74.0028596 }, + { "lat": 40.8409575, "lon": -74.0029637 }, + { "lat": 40.8410143, "lon": -74.0030678 }, + { "lat": 40.8410296, "lon": -74.0030957 }, + { "lat": 40.8412271, "lon": -74.0034379 }, + { "lat": 40.8412951, "lon": -74.0035540 }, + { "lat": 40.8420507, "lon": -74.0048767 }, + { "lat": 40.8421149, "lon": -74.0049908 }, + { "lat": 40.8421780, "lon": -74.0051053 }, + { "lat": 40.8433006, "lon": -74.0070629 }, + { "lat": 40.8434921, "lon": -74.0073968 }, + { "lat": 40.8435869, "lon": -74.0075553 } + ], + "tags": { + "highway": "residential", + "maxweight": "4 st", + "name": "Linden Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11577964, + "bounds": { + "minlat": 40.8318693, + "minlon": -73.9861093, + "maxlat": 40.8336905, + "maxlon": -73.9851431 + }, + "nodes": [ + 103187710, + 7530193445, + 103222093, + 103222094, + 103222096, + 7529710502, + 103222098, + 103222099, + 103222100, + 103162101, + 103162185 + ], + "geometry": [ + { "lat": 40.8318693, "lon": -73.9861093 }, + { "lat": 40.8321400, "lon": -73.9858978 }, + { "lat": 40.8324060, "lon": -73.9856900 }, + { "lat": 40.8325100, "lon": -73.9856290 }, + { "lat": 40.8326230, "lon": -73.9855850 }, + { "lat": 40.8329266, "lon": -73.9854768 }, + { "lat": 40.8331240, "lon": -73.9854070 }, + { "lat": 40.8332700, "lon": -73.9853360 }, + { "lat": 40.8334570, "lon": -73.9852310 }, + { "lat": 40.8335540, "lon": -73.9851870 }, + { "lat": 40.8336905, "lon": -73.9851431 } + ], + "tags": { + "highway": "residential", + "name": "Fairview Lane", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11577973, + "bounds": { + "minlat": 40.8648301, + "minlon": -73.9938893, + "maxlat": 40.8708130, + "maxlon": -73.9906100 + }, + "nodes": [ + 103222181, + 6124217432, + 6137202441, + 6124217278, + 4472866899, + 6124217283, + 6124217282, + 6124217277, + 10240864675, + 103222183, + 103222185, + 103222187, + 103222189, + 6124217286, + 103222191, + 6124217370, + 103222193, + 103222195, + 103222197, + 103222199, + 103222201, + 6124217365, + 103222203, + 6137202454, + 103198214, + 7927785490, + 10243168155, + 103222205, + 103222207, + 7927785515, + 103222214 + ], + "geometry": [ + { "lat": 40.8648301, "lon": -73.9938893 }, + { "lat": 40.8650660, "lon": -73.9937210 }, + { "lat": 40.8652147, "lon": -73.9936140 }, + { "lat": 40.8652935, "lon": -73.9935572 }, + { "lat": 40.8656577, "lon": -73.9932949 }, + { "lat": 40.8657439, "lon": -73.9932432 }, + { "lat": 40.8657809, "lon": -73.9932209 }, + { "lat": 40.8659907, "lon": -73.9930799 }, + { "lat": 40.8660305, "lon": -73.9930569 }, + { "lat": 40.8666434, "lon": -73.9927029 }, + { "lat": 40.8667433, "lon": -73.9926725 }, + { "lat": 40.8667941, "lon": -73.9926799 }, + { "lat": 40.8668568, "lon": -73.9927016 }, + { "lat": 40.8669645, "lon": -73.9927456 }, + { "lat": 40.8671680, "lon": -73.9928370 }, + { "lat": 40.8672077, "lon": -73.9928442 }, + { "lat": 40.8672730, "lon": -73.9928560 }, + { "lat": 40.8673680, "lon": -73.9928550 }, + { "lat": 40.8674500, "lon": -73.9928400 }, + { "lat": 40.8675420, "lon": -73.9928070 }, + { "lat": 40.8675940, "lon": -73.9927749 }, + { "lat": 40.8677950, "lon": -73.9926417 }, + { "lat": 40.8678610, "lon": -73.9925970 }, + { "lat": 40.8679026, "lon": -73.9925689 }, + { "lat": 40.8686346, "lon": -73.9920628 }, + { "lat": 40.8687235, "lon": -73.9919972 }, + { "lat": 40.8689103, "lon": -73.9918770 }, + { "lat": 40.8693230, "lon": -73.9916070 }, + { "lat": 40.8700840, "lon": -73.9910910 }, + { "lat": 40.8706054, "lon": -73.9907470 }, + { "lat": 40.8708130, "lon": -73.9906100 } + ], + "tags": { + "highway": "residential", + "name": "Willow Tree Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Willow Tree", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11578000, + "bounds": { + "minlat": 40.8093378, + "minlon": -73.9990410, + "maxlat": 40.8142452, + "maxlon": -73.9951677 + }, + "nodes": [ + 103111346, + 11415241624, + 103112780, + 103222401, + 103222403, + 103202152, + 103105165, + 103192865 + ], + "geometry": [ + { "lat": 40.8093378, "lon": -73.9990410 }, + { "lat": 40.8096394, "lon": -73.9988571 }, + { "lat": 40.8103790, "lon": -73.9984060 }, + { "lat": 40.8114430, "lon": -73.9977210 }, + { "lat": 40.8122470, "lon": -73.9972030 }, + { "lat": 40.8130280, "lon": -73.9964130 }, + { "lat": 40.8140670, "lon": -73.9953414 }, + { "lat": 40.8142452, "lon": -73.9951677 } + ], + "tags": { + "highway": "residential", + "name": "Shaler Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Shaler", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11578001, + "bounds": { + "minlat": 40.8142452, + "minlon": -73.9951677, + "maxlat": 40.8146634, + "maxlon": -73.9947521 + }, + "nodes": [ + 103192865, + 440208188 + ], + "geometry": [ + { "lat": 40.8142452, "lon": -73.9951677 }, + { "lat": 40.8146634, "lon": -73.9947521 } + ], + "tags": { + "highway": "residential", + "name": "Shaler Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Shaler", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11578050, + "bounds": { + "minlat": 40.8424540, + "minlon": -73.9837790, + "maxlat": 40.8500760, + "maxlon": -73.9787240 + }, + "nodes": [ + 103160942, + 8240350195, + 8240350185, + 7464374542, + 6902148558, + 6902148560, + 6902148566, + 7464384438, + 7464384389, + 6902148562, + 7464374539, + 7464384613, + 7225115598, + 7225115593, + 103222809, + 7455876966, + 6904881276, + 6904881281, + 7455879222, + 7455134479, + 10135251989, + 7460513509, + 5108613712, + 103222811, + 7460513508, + 103222813, + 7366850533, + 103222815, + 103222817, + 103222819, + 103222822, + 475226651, + 103222824, + 103222826, + 103222829 + ], + "geometry": [ + { "lat": 40.8424540, "lon": -73.9837790 }, + { "lat": 40.8424823, "lon": -73.9837507 }, + { "lat": 40.8427699, "lon": -73.9834629 }, + { "lat": 40.8428467, "lon": -73.9833861 }, + { "lat": 40.8432419, "lon": -73.9829907 }, + { "lat": 40.8433227, "lon": -73.9829099 }, + { "lat": 40.8433877, "lon": -73.9828449 }, + { "lat": 40.8435187, "lon": -73.9827139 }, + { "lat": 40.8438468, "lon": -73.9823855 }, + { "lat": 40.8439284, "lon": -73.9823039 }, + { "lat": 40.8439918, "lon": -73.9822405 }, + { "lat": 40.8440690, "lon": -73.9821632 }, + { "lat": 40.8441539, "lon": -73.9820783 }, + { "lat": 40.8444486, "lon": -73.9817835 }, + { "lat": 40.8447480, "lon": -73.9814840 }, + { "lat": 40.8452140, "lon": -73.9810139 }, + { "lat": 40.8453706, "lon": -73.9808559 }, + { "lat": 40.8454369, "lon": -73.9807895 }, + { "lat": 40.8456607, "lon": -73.9805656 }, + { "lat": 40.8459418, "lon": -73.9802843 }, + { "lat": 40.8460719, "lon": -73.9801541 }, + { "lat": 40.8462634, "lon": -73.9799625 }, + { "lat": 40.8465082, "lon": -73.9797176 }, + { "lat": 40.8466053, "lon": -73.9796678 }, + { "lat": 40.8468439, "lon": -73.9796487 }, + { "lat": 40.8472398, "lon": -73.9796170 }, + { "lat": 40.8472612, "lon": -73.9796134 }, + { "lat": 40.8474580, "lon": -73.9795800 }, + { "lat": 40.8476730, "lon": -73.9795340 }, + { "lat": 40.8488030, "lon": -73.9792920 }, + { "lat": 40.8497080, "lon": -73.9790430 }, + { "lat": 40.8497795, "lon": -73.9790045 }, + { "lat": 40.8497990, "lon": -73.9789940 }, + { "lat": 40.8498370, "lon": -73.9789640 }, + { "lat": 40.8500760, "lon": -73.9787240 } + ], + "tags": { + "highway": "residential", + "name": "15th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "15th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11578062, + "bounds": { + "minlat": 40.8377890, + "minlon": -73.9821617, + "maxlat": 40.8381673, + "maxlon": -73.9806030 + }, + "nodes": [ + 103222965, + 103222968, + 103149491, + 103222970 + ], + "geometry": [ + { "lat": 40.8377890, "lon": -73.9806030 }, + { "lat": 40.8378752, "lon": -73.9809856 }, + { "lat": 40.8379471, "lon": -73.9813060 }, + { "lat": 40.8381673, "lon": -73.9821617 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Drury Lane", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Drury", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11578070, + "bounds": { + "minlat": 40.8808185, + "minlon": -73.9804372, + "maxlat": 40.8816927, + "maxlon": -73.9796645 + }, + "nodes": [ + 477432097, + 12023838838, + 6888241317, + 12023838839, + 12023838840, + 12023838842, + 12023838841, + 12023838843, + 103187439 + ], + "geometry": [ + { "lat": 40.8816927, "lon": -73.9796645 }, + { "lat": 40.8815705, "lon": -73.9797830 }, + { "lat": 40.8815275, "lon": -73.9798217 }, + { "lat": 40.8814748, "lon": -73.9798631 }, + { "lat": 40.8813214, "lon": -73.9799788 }, + { "lat": 40.8812612, "lon": -73.9800240 }, + { "lat": 40.8812078, "lon": -73.9800671 }, + { "lat": 40.8811485, "lon": -73.9801192 }, + { "lat": 40.8808185, "lon": -73.9804372 } + ], + "tags": { + "highway": "unclassified", + "name": "Mary Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mary", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11578099, + "bounds": { + "minlat": 40.8402910, + "minlon": -73.9711300, + "maxlat": 40.8407640, + "maxlon": -73.9699120 + }, + "nodes": [ + 103115561, + 7672312166, + 7079131272, + 7079131278, + 7672312153, + 103137179 + ], + "geometry": [ + { "lat": 40.8407640, "lon": -73.9711300 }, + { "lat": 40.8407398, "lon": -73.9710677 }, + { "lat": 40.8405668, "lon": -73.9706221 }, + { "lat": 40.8404370, "lon": -73.9702880 }, + { "lat": 40.8403154, "lon": -73.9699750 }, + { "lat": 40.8402910, "lon": -73.9699120 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "name": "Park Street", + "oneway": "-1", + "sidewalk": "both", + "surface": "paved", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11578181, + "bounds": { + "minlat": 40.8665418, + "minlon": -74.0195720, + "maxlat": 40.8673290, + "maxlon": -74.0152417 + }, + "nodes": [ + 103214385, + 103223890, + 103223891 + ], + "geometry": [ + { "lat": 40.8665418, "lon": -74.0152417 }, + { "lat": 40.8669270, "lon": -74.0176240 }, + { "lat": 40.8673290, "lon": -74.0195720 } + ], + "tags": { + "highway": "residential", + "name": "Blauvelt Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Blauvelt", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11578185, + "bounds": { + "minlat": 40.8673290, + "minlon": -74.0208763, + "maxlat": 40.8675843, + "maxlon": -74.0195720 + }, + "nodes": [ + 103223891, + 103223915 + ], + "geometry": [ + { "lat": 40.8673290, "lon": -74.0195720 }, + { "lat": 40.8675843, "lon": -74.0208763 } + ], + "tags": { + "highway": "residential", + "name": "Blauvelt Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Blauvelt", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11578224, + "bounds": { + "minlat": 40.8145966, + "minlon": -74.0095902, + "maxlat": 40.8191868, + "maxlon": -74.0077087 + }, + "nodes": [ + 440208135, + 7159048504, + 103223975, + 103223977, + 103223979, + 103223981, + 103223985, + 103223986, + 103223988, + 7961450131, + 103223990, + 4606021656, + 12706461746, + 7139376170, + 103159409 + ], + "geometry": [ + { "lat": 40.8145966, "lon": -74.0095902 }, + { "lat": 40.8150703, "lon": -74.0092133 }, + { "lat": 40.8156147, "lon": -74.0087801 }, + { "lat": 40.8156960, "lon": -74.0087184 }, + { "lat": 40.8161607, "lon": -74.0083529 }, + { "lat": 40.8162805, "lon": -74.0082760 }, + { "lat": 40.8164199, "lon": -74.0082219 }, + { "lat": 40.8165502, "lon": -74.0081927 }, + { "lat": 40.8166769, "lon": -74.0081671 }, + { "lat": 40.8168914, "lon": -74.0081286 }, + { "lat": 40.8170319, "lon": -74.0081029 }, + { "lat": 40.8172600, "lon": -74.0080600 }, + { "lat": 40.8178686, "lon": -74.0079454 }, + { "lat": 40.8183643, "lon": -74.0078520 }, + { "lat": 40.8191868, "lon": -74.0077087 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657" + } +}, +{ + "type": "way", + "id": 11578226, + "bounds": { + "minlat": 40.8430274, + "minlon": -74.0013789, + "maxlat": 40.8430663, + "maxlon": -74.0013526 + }, + "nodes": [ + 308363346, + 530805720 + ], + "geometry": [ + { "lat": 40.8430663, "lon": -74.0013526 }, + { "lat": 40.8430274, "lon": -74.0013789 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "35 mph", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21:A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11578234, + "bounds": { + "minlat": 40.8320535, + "minlon": -73.9984486, + "maxlat": 40.8329920, + "maxlon": -73.9968771 + }, + "nodes": [ + 5965428350, + 7104269430, + 7713263986, + 103224169, + 7101015669 + ], + "geometry": [ + { "lat": 40.8320535, "lon": -73.9968771 }, + { "lat": 40.8324307, "lon": -73.9975160 }, + { "lat": 40.8328028, "lon": -73.9981627 }, + { "lat": 40.8329059, "lon": -73.9983418 }, + { "lat": 40.8329920, "lon": -73.9984486 } + ], + "tags": { + "highway": "residential", + "name": "Bruce Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bruce", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11578338, + "bounds": { + "minlat": 40.8236257, + "minlon": -74.0084100, + "maxlat": 40.8242280, + "maxlon": -74.0036927 + }, + "nodes": [ + 103224741, + 103210699, + 103224743, + 103138633, + 103204006, + 103168156 + ], + "geometry": [ + { "lat": 40.8236257, "lon": -74.0036927 }, + { "lat": 40.8237049, "lon": -74.0042290 }, + { "lat": 40.8238168, "lon": -74.0050597 }, + { "lat": 40.8239268, "lon": -74.0058848 }, + { "lat": 40.8240413, "lon": -74.0067282 }, + { "lat": 40.8242280, "lon": -74.0084100 } + ], + "tags": { + "highway": "residential", + "name": "Greeley Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Greeley", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11578384, + "bounds": { + "minlat": 40.8798262, + "minlon": -73.9645200, + "maxlat": 40.8858823, + "maxlon": -73.9614197 + }, + "nodes": [ + 12367941773, + 5755866962, + 8218981689, + 5755866967, + 8218981698, + 5755866955, + 103224941, + 103224942, + 103224943, + 7271149282, + 103224944, + 7130252621, + 103224945, + 7130252630, + 6892723786, + 6616347960, + 7742534719, + 103224947 + ], + "geometry": [ + { "lat": 40.8858823, "lon": -73.9614197 }, + { "lat": 40.8846146, "lon": -73.9617088 }, + { "lat": 40.8843083, "lon": -73.9617758 }, + { "lat": 40.8842165, "lon": -73.9617959 }, + { "lat": 40.8837404, "lon": -73.9619041 }, + { "lat": 40.8834533, "lon": -73.9619694 }, + { "lat": 40.8832311, "lon": -73.9620146 }, + { "lat": 40.8820420, "lon": -73.9622990 }, + { "lat": 40.8819320, "lon": -73.9623430 }, + { "lat": 40.8819205, "lon": -73.9623551 }, + { "lat": 40.8818364, "lon": -73.9624434 }, + { "lat": 40.8817532, "lon": -73.9625286 }, + { "lat": 40.8817500, "lon": -73.9625318 }, + { "lat": 40.8814116, "lon": -73.9628899 }, + { "lat": 40.8806718, "lon": -73.9636725 }, + { "lat": 40.8805343, "lon": -73.9638179 }, + { "lat": 40.8799287, "lon": -73.9644184 }, + { "lat": 40.8798262, "lon": -73.9645200 } + ], + "tags": { + "highway": "residential", + "name": "South Woodland Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Woodland", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11578396, + "bounds": { + "minlat": 40.8699892, + "minlon": -73.9862600, + "maxlat": 40.8722206, + "maxlon": -73.9820036 + }, + "nodes": [ + 103225049, + 8076425399, + 10174913235, + 103225051, + 10177410435, + 103225053, + 10177410436, + 103225055, + 8075088153, + 103224128 + ], + "geometry": [ + { "lat": 40.8722206, "lon": -73.9862600 }, + { "lat": 40.8721749, "lon": -73.9861361 }, + { "lat": 40.8718671, "lon": -73.9853923 }, + { "lat": 40.8715529, "lon": -73.9846488 }, + { "lat": 40.8711258, "lon": -73.9839674 }, + { "lat": 40.8710726, "lon": -73.9838706 }, + { "lat": 40.8710259, "lon": -73.9837897 }, + { "lat": 40.8705743, "lon": -73.9829979 }, + { "lat": 40.8700557, "lon": -73.9821220 }, + { "lat": 40.8699892, "lon": -73.9820036 } + ], + "tags": { + "highway": "residential", + "name": "Overlook Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overlook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11578401, + "bounds": { + "minlat": 40.8530181, + "minlon": -74.0173441, + "maxlat": 40.8541929, + "maxlon": -74.0168877 + }, + "nodes": [ + 103225084, + 103191719, + 103225085 + ], + "geometry": [ + { "lat": 40.8530181, "lon": -74.0173441 }, + { "lat": 40.8533800, "lon": -74.0171798 }, + { "lat": 40.8541929, "lon": -74.0168877 } + ], + "tags": { + "highway": "residential", + "name": "Overlook Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overlook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660" + } +}, +{ + "type": "way", + "id": 11578402, + "bounds": { + "minlat": 40.8549046, + "minlon": -74.0163245, + "maxlat": 40.8554989, + "maxlon": -74.0160211 + }, + "nodes": [ + 103225086, + 5220609669, + 103108476 + ], + "geometry": [ + { "lat": 40.8549046, "lon": -74.0163245 }, + { "lat": 40.8549895, "lon": -74.0162555 }, + { "lat": 40.8554989, "lon": -74.0160211 } + ], + "tags": { + "highway": "residential", + "name": "Overlook Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overlook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660" + } +}, +{ + "type": "way", + "id": 11578404, + "bounds": { + "minlat": 40.8153655, + "minlon": -73.9881875, + "maxlat": 40.8156649, + "maxlon": -73.9875693 + }, + "nodes": [ + 103225089, + 931976160 + ], + "geometry": [ + { "lat": 40.8156649, "lon": -73.9881875 }, + { "lat": 40.8153655, "lon": -73.9875693 } + ], + "tags": { + "highway": "residential", + "name": "Overlook Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overlook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11578427, + "bounds": { + "minlat": 40.8388950, + "minlon": -73.9965730, + "maxlat": 40.8409989, + "maxlon": -73.9945515 + }, + "nodes": [ + 440215474, + 103179317, + 5976777484, + 13524430679, + 103225167, + 13524430677, + 103225168, + 5978850774, + 7679769715, + 12692332172, + 103134579 + ], + "geometry": [ + { "lat": 40.8388950, "lon": -73.9965730 }, + { "lat": 40.8389764, "lon": -73.9965002 }, + { "lat": 40.8392679, "lon": -73.9962062 }, + { "lat": 40.8394812, "lon": -73.9959971 }, + { "lat": 40.8395134, "lon": -73.9959655 }, + { "lat": 40.8395791, "lon": -73.9958999 }, + { "lat": 40.8401490, "lon": -73.9953300 }, + { "lat": 40.8405699, "lon": -73.9949122 }, + { "lat": 40.8407998, "lon": -73.9946840 }, + { "lat": 40.8408594, "lon": -73.9946285 }, + { "lat": 40.8409989, "lon": -73.9945515 } + ], + "tags": { + "highway": "tertiary", + "maxweight:signed": "no", + "name": "Delia Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Delia", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11578439, + "bounds": { + "minlat": 40.8611131, + "minlon": -73.9897808, + "maxlat": 40.8621776, + "maxlon": -73.9886847 + }, + "nodes": [ + 103225271, + 10117799065, + 10117799064, + 3001698950 + ], + "geometry": [ + { "lat": 40.8611131, "lon": -73.9897808 }, + { "lat": 40.8611562, "lon": -73.9897281 }, + { "lat": 40.8621096, "lon": -73.9887518 }, + { "lat": 40.8621776, "lon": -73.9886847 } + ], + "tags": { + "highway": "residential", + "name": "Oak Tree Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oak Tree", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11578526, + "bounds": { + "minlat": 40.8805173, + "minlon": -74.0174001, + "maxlat": 40.8819505, + "maxlon": -74.0128941 + }, + "nodes": [ + 103197534, + 103225905, + 103225907 + ], + "geometry": [ + { "lat": 40.8805173, "lon": -74.0128941 }, + { "lat": 40.8812200, "lon": -74.0151970 }, + { "lat": 40.8819505, "lon": -74.0174001 } + ], + "tags": { + "highway": "residential", + "name": "Sherman Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11578535, + "bounds": { + "minlat": 40.8819974, + "minlon": -74.0220046, + "maxlat": 40.8834219, + "maxlon": -74.0173795 + }, + "nodes": [ + 103225943, + 103225945, + 103225947 + ], + "geometry": [ + { "lat": 40.8819974, "lon": -74.0173795 }, + { "lat": 40.8825500, "lon": -74.0192690 }, + { "lat": 40.8834219, "lon": -74.0220046 } + ], + "tags": { + "highway": "residential", + "name": "Sherman Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11578621, + "bounds": { + "minlat": 40.8611477, + "minlon": -73.9874865, + "maxlat": 40.8623674, + "maxlon": -73.9851242 + }, + "nodes": [ + 103224117, + 8075088216, + 6109949843, + 6109949854, + 6109949842, + 6111847418, + 6109949859, + 6111847419, + 8073299971, + 103093238 + ], + "geometry": [ + { "lat": 40.8623674, "lon": -73.9874865 }, + { "lat": 40.8622944, "lon": -73.9873364 }, + { "lat": 40.8621883, "lon": -73.9871057 }, + { "lat": 40.8621413, "lon": -73.9870184 }, + { "lat": 40.8620731, "lon": -73.9868878 }, + { "lat": 40.8620107, "lon": -73.9867604 }, + { "lat": 40.8617969, "lon": -73.9863714 }, + { "lat": 40.8617433, "lon": -73.9862679 }, + { "lat": 40.8611968, "lon": -73.9852213 }, + { "lat": 40.8611477, "lon": -73.9851242 } + ], + "tags": { + "highway": "residential", + "name": "Elm Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elm", + "tiger:name_type": "Pl", + "tiger:reviewed": "yes", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11578638, + "bounds": { + "minlat": 40.8739120, + "minlon": -73.9612035, + "maxlat": 40.8750160, + "maxlon": -73.9596890 + }, + "nodes": [ + 103226424, + 103226426, + 103226428, + 103226430, + 103226432, + 103226434, + 103226436, + 103226438, + 103226440, + 103226442, + 103226443, + 103226444, + 103226445, + 103226446, + 103226447, + 103226449, + 10059739064, + 103226451 + ], + "geometry": [ + { "lat": 40.8740159, "lon": -73.9611995 }, + { "lat": 40.8741183, "lon": -73.9612035 }, + { "lat": 40.8742200, "lon": -73.9611790 }, + { "lat": 40.8743130, "lon": -73.9611250 }, + { "lat": 40.8749420, "lon": -73.9605720 }, + { "lat": 40.8749800, "lon": -73.9605170 }, + { "lat": 40.8750040, "lon": -73.9604520 }, + { "lat": 40.8750160, "lon": -73.9603770 }, + { "lat": 40.8750110, "lon": -73.9603000 }, + { "lat": 40.8749920, "lon": -73.9602320 }, + { "lat": 40.8747460, "lon": -73.9597800 }, + { "lat": 40.8747100, "lon": -73.9597350 }, + { "lat": 40.8746620, "lon": -73.9597030 }, + { "lat": 40.8746060, "lon": -73.9596890 }, + { "lat": 40.8745500, "lon": -73.9596970 }, + { "lat": 40.8744580, "lon": -73.9597490 }, + { "lat": 40.8739936, "lon": -73.9601547 }, + { "lat": 40.8739120, "lon": -73.9602260 } + ], + "tags": { + "highway": "residential", + "name": "Snyder Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Snyder", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11578648, + "bounds": { + "minlat": 40.8279956, + "minlon": -73.9805438, + "maxlat": 40.8283630, + "maxlon": -73.9804801 + }, + "nodes": [ + 5340819448, + 7533716623, + 5340819446, + 5691967821 + ], + "geometry": [ + { "lat": 40.8283630, "lon": -73.9805047 }, + { "lat": 40.8281841, "lon": -73.9805438 }, + { "lat": 40.8280377, "lon": -73.9805198 }, + { "lat": 40.8279956, "lon": -73.9804801 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Winston Drive", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Winston", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11578657, + "bounds": { + "minlat": 40.8772610, + "minlon": -73.9751512, + "maxlat": 40.8794681, + "maxlon": -73.9711895 + }, + "nodes": [ + 103224142, + 12021734820, + 12021734819, + 12021734818, + 6902227724, + 103226557 + ], + "geometry": [ + { "lat": 40.8794681, "lon": -73.9751512 }, + { "lat": 40.8794429, "lon": -73.9750964 }, + { "lat": 40.8794260, "lon": -73.9750615 }, + { "lat": 40.8794103, "lon": -73.9750305 }, + { "lat": 40.8779424, "lon": -73.9723990 }, + { "lat": 40.8772610, "lon": -73.9711895 } + ], + "tags": { + "highway": "residential", + "name": "Sunset Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sunset", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11578689, + "bounds": { + "minlat": 40.8804534, + "minlon": -74.0074339, + "maxlat": 40.8838248, + "maxlon": -74.0057451 + }, + "nodes": [ + 103226675, + 6592348947, + 6592348948, + 357733205, + 103226676, + 103226677, + 103226678, + 103226679, + 103226680, + 103226682, + 13527742912, + 103199465 + ], + "geometry": [ + { "lat": 40.8804534, "lon": -74.0074339 }, + { "lat": 40.8804942, "lon": -74.0074099 }, + { "lat": 40.8806754, "lon": -74.0073032 }, + { "lat": 40.8807278, "lon": -74.0072724 }, + { "lat": 40.8817080, "lon": -74.0066950 }, + { "lat": 40.8820500, "lon": -74.0065100 }, + { "lat": 40.8821310, "lon": -74.0064900 }, + { "lat": 40.8823280, "lon": -74.0064930 }, + { "lat": 40.8824160, "lon": -74.0064760 }, + { "lat": 40.8825000, "lon": -74.0064390 }, + { "lat": 40.8837294, "lon": -74.0057951 }, + { "lat": 40.8838248, "lon": -74.0057451 } + ], + "tags": { + "highway": "residential", + "name": "Salem Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Salem", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11578700, + "bounds": { + "minlat": 40.8496631, + "minlon": -74.0056776, + "maxlat": 40.8517940, + "maxlon": -74.0019031 + }, + "nodes": [ + 103226717, + 6477912324, + 5976782448, + 6477912318, + 103174446, + 103133877, + 103246700, + 103226719, + 5704084539, + 8226127102, + 8226127106, + 103226720, + 5704084548, + 2468337470 + ], + "geometry": [ + { "lat": 40.8496631, "lon": -74.0019031 }, + { "lat": 40.8498627, "lon": -74.0022395 }, + { "lat": 40.8499510, "lon": -74.0023883 }, + { "lat": 40.8500941, "lon": -74.0026295 }, + { "lat": 40.8501724, "lon": -74.0027743 }, + { "lat": 40.8505532, "lon": -74.0034543 }, + { "lat": 40.8509137, "lon": -74.0041114 }, + { "lat": 40.8510140, "lon": -74.0042720 }, + { "lat": 40.8512374, "lon": -74.0046729 }, + { "lat": 40.8515391, "lon": -74.0052143 }, + { "lat": 40.8516458, "lon": -74.0054058 }, + { "lat": 40.8517050, "lon": -74.0055120 }, + { "lat": 40.8517178, "lon": -74.0055358 }, + { "lat": 40.8517940, "lon": -74.0056776 } + ], + "tags": { + "highway": "residential", + "name": "Roosevelt Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roosevelt", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11578704, + "bounds": { + "minlat": 40.8521950, + "minlon": -73.9972899, + "maxlat": 40.8528939, + "maxlon": -73.9961380 + }, + "nodes": [ + 103166976, + 103226729 + ], + "geometry": [ + { "lat": 40.8521950, "lon": -73.9961380 }, + { "lat": 40.8528939, "lon": -73.9972899 } + ], + "tags": { + "highway": "residential", + "name": "Ackerman Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ackerman", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11578714, + "bounds": { + "minlat": 40.8658589, + "minlon": -74.0197850, + "maxlat": 40.8666700, + "maxlon": -74.0154337 + }, + "nodes": [ + 103214384, + 103226760, + 103226761 + ], + "geometry": [ + { "lat": 40.8658589, "lon": -74.0154337 }, + { "lat": 40.8661980, "lon": -74.0175980 }, + { "lat": 40.8666700, "lon": -74.0197850 } + ], + "tags": { + "highway": "residential", + "name": "Jasper Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jasper", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11578717, + "bounds": { + "minlat": 40.8666349, + "minlon": -74.0211020, + "maxlat": 40.8668860, + "maxlon": -74.0198085 + }, + "nodes": [ + 103226762, + 103226763 + ], + "geometry": [ + { "lat": 40.8666349, "lon": -74.0198085 }, + { "lat": 40.8668860, "lon": -74.0211020 } + ], + "tags": { + "highway": "residential", + "name": "Jasper Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jasper", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11578724, + "bounds": { + "minlat": 40.8605332, + "minlon": -73.9967359, + "maxlat": 40.8619232, + "maxlon": -73.9955832 + }, + "nodes": [ + 103226764, + 10122889655, + 103226765, + 103226767, + 6114190374, + 103226769, + 103226770, + 103226771, + 103226773, + 6114190285, + 103226774, + 10243699484, + 103226775, + 10243699485, + 103226776, + 103226777, + 103226779, + 103226780, + 103226781, + 103226783, + 10243699483, + 103226784, + 103226785, + 103226786, + 103226787, + 103226789, + 10243690461, + 10243699482, + 103226791, + 103226793, + 103226795, + 103226770 + ], + "geometry": [ + { "lat": 40.8619232, "lon": -73.9955832 }, + { "lat": 40.8618839, "lon": -73.9956396 }, + { "lat": 40.8618090, "lon": -73.9957470 }, + { "lat": 40.8617060, "lon": -73.9958430 }, + { "lat": 40.8615047, "lon": -73.9959674 }, + { "lat": 40.8614810, "lon": -73.9959820 }, + { "lat": 40.8612410, "lon": -73.9961440 }, + { "lat": 40.8611583, "lon": -73.9962631 }, + { "lat": 40.8610847, "lon": -73.9963609 }, + { "lat": 40.8610486, "lon": -73.9964179 }, + { "lat": 40.8609448, "lon": -73.9966272 }, + { "lat": 40.8609168, "lon": -73.9966851 }, + { "lat": 40.8608768, "lon": -73.9967223 }, + { "lat": 40.8608494, "lon": -73.9967347 }, + { "lat": 40.8608110, "lon": -73.9967359 }, + { "lat": 40.8607674, "lon": -73.9967278 }, + { "lat": 40.8607335, "lon": -73.9967060 }, + { "lat": 40.8607016, "lon": -73.9966556 }, + { "lat": 40.8606715, "lon": -73.9965971 }, + { "lat": 40.8606054, "lon": -73.9964447 }, + { "lat": 40.8605557, "lon": -73.9962988 }, + { "lat": 40.8605332, "lon": -73.9961562 }, + { "lat": 40.8605389, "lon": -73.9960664 }, + { "lat": 40.8605595, "lon": -73.9960162 }, + { "lat": 40.8605961, "lon": -73.9959631 }, + { "lat": 40.8606362, "lon": -73.9959251 }, + { "lat": 40.8606536, "lon": -73.9959158 }, + { "lat": 40.8607206, "lon": -73.9958804 }, + { "lat": 40.8608030, "lon": -73.9958430 }, + { "lat": 40.8608450, "lon": -73.9958440 }, + { "lat": 40.8608860, "lon": -73.9958640 }, + { "lat": 40.8612410, "lon": -73.9961440 } + ], + "tags": { + "highway": "residential", + "name": "Meadowview Court", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Meadowview", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07605" + } +}, +{ + "type": "way", + "id": 11578770, + "bounds": { + "minlat": 40.8545250, + "minlon": -73.9819260, + "maxlat": 40.8555975, + "maxlon": -73.9808565 + }, + "nodes": [ + 103227259, + 103227261, + 103227263, + 2919286478 + ], + "geometry": [ + { "lat": 40.8545250, "lon": -73.9819260 }, + { "lat": 40.8550720, "lon": -73.9813720 }, + { "lat": 40.8555700, "lon": -73.9808670 }, + { "lat": 40.8555975, "lon": -73.9808565 } + ], + "tags": { + "highway": "residential", + "name": "Ponsi Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ponsi", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11578797, + "bounds": { + "minlat": 40.8637730, + "minlon": -74.0170860, + "maxlat": 40.8645580, + "maxlon": -74.0168440 + }, + "nodes": [ + 103175857, + 103227393, + 103227396, + 103227397, + 103227399, + 103227401, + 103227402, + 103227403 + ], + "geometry": [ + { "lat": 40.8637730, "lon": -74.0168440 }, + { "lat": 40.8637940, "lon": -74.0168820 }, + { "lat": 40.8638430, "lon": -74.0169500 }, + { "lat": 40.8639000, "lon": -74.0170060 }, + { "lat": 40.8639710, "lon": -74.0170520 }, + { "lat": 40.8640460, "lon": -74.0170790 }, + { "lat": 40.8641320, "lon": -74.0170860 }, + { "lat": 40.8645580, "lon": -74.0170050 } + ], + "tags": { + "highway": "residential", + "name": "Barnes Drive East", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Barnes", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11578810, + "bounds": { + "minlat": 40.8423104, + "minlon": -73.9873344, + "maxlat": 40.8437010, + "maxlon": -73.9859520 + }, + "nodes": [ + 103227489, + 12692250261, + 103227491 + ], + "geometry": [ + { "lat": 40.8423104, "lon": -73.9873344 }, + { "lat": 40.8431998, "lon": -73.9864573 }, + { "lat": 40.8437010, "lon": -73.9859520 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "12th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11578820, + "bounds": { + "minlat": 40.8501968, + "minlon": -73.9797337, + "maxlat": 40.8513090, + "maxlon": -73.9786470 + }, + "nodes": [ + 103227550, + 103227552 + ], + "geometry": [ + { "lat": 40.8501968, "lon": -73.9797337 }, + { "lat": 40.8513090, "lon": -73.9786470 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "12th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11578840, + "bounds": { + "minlat": 40.8811870, + "minlon": -74.0165606, + "maxlat": 40.8835302, + "maxlon": -74.0093320 + }, + "nodes": [ + 103214423, + 6635344685, + 4162184901, + 6635342724, + 103227633, + 103227634, + 103227635, + 103197546, + 103227636, + 4771425634, + 103227638, + 103227640, + 103227641, + 103154990, + 103227642, + 103211876, + 103227643, + 103227644, + 103227646, + 103227648, + 103227649, + 103227650, + 103227651, + 103227652, + 103227653, + 103227655, + 103227657, + 103227658, + 103227659, + 103227660, + 103227661, + 103227663, + 103227664, + 4163450414, + 103227665 + ], + "geometry": [ + { "lat": 40.8811870, "lon": -74.0093320 }, + { "lat": 40.8812181, "lon": -74.0094334 }, + { "lat": 40.8812290, "lon": -74.0094690 }, + { "lat": 40.8816636, "lon": -74.0108857 }, + { "lat": 40.8816940, "lon": -74.0109850 }, + { "lat": 40.8817700, "lon": -74.0112010 }, + { "lat": 40.8818810, "lon": -74.0114600 }, + { "lat": 40.8821025, "lon": -74.0118871 }, + { "lat": 40.8822900, "lon": -74.0122770 }, + { "lat": 40.8823158, "lon": -74.0123418 }, + { "lat": 40.8823620, "lon": -74.0124580 }, + { "lat": 40.8824220, "lon": -74.0126460 }, + { "lat": 40.8824610, "lon": -74.0128000 }, + { "lat": 40.8825043, "lon": -74.0130018 }, + { "lat": 40.8825190, "lon": -74.0131020 }, + { "lat": 40.8825300, "lon": -74.0132040 }, + { "lat": 40.8825370, "lon": -74.0133630 }, + { "lat": 40.8825240, "lon": -74.0134410 }, + { "lat": 40.8824950, "lon": -74.0135480 }, + { "lat": 40.8824820, "lon": -74.0136510 }, + { "lat": 40.8824830, "lon": -74.0137650 }, + { "lat": 40.8824990, "lon": -74.0138670 }, + { "lat": 40.8825560, "lon": -74.0141040 }, + { "lat": 40.8826400, "lon": -74.0145190 }, + { "lat": 40.8826880, "lon": -74.0147440 }, + { "lat": 40.8827340, "lon": -74.0148840 }, + { "lat": 40.8827930, "lon": -74.0150160 }, + { "lat": 40.8828740, "lon": -74.0151540 }, + { "lat": 40.8832200, "lon": -74.0156560 }, + { "lat": 40.8832890, "lon": -74.0157810 }, + { "lat": 40.8833490, "lon": -74.0159150 }, + { "lat": 40.8834323, "lon": -74.0160618 }, + { "lat": 40.8834852, "lon": -74.0162266 }, + { "lat": 40.8835205, "lon": -74.0164576 }, + { "lat": 40.8835302, "lon": -74.0165606 } + ], + "tags": { + "highway": "residential", + "name": "Vandelinda Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Vandelinda", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11578851, + "bounds": { + "minlat": 40.8548806, + "minlon": -73.9857031, + "maxlat": 40.8557778, + "maxlon": -73.9841384 + }, + "nodes": [ + 103227702, + 10236688094, + 5362397430, + 299171936 + ], + "geometry": [ + { "lat": 40.8557778, "lon": -73.9857031 }, + { "lat": 40.8557540, "lon": -73.9856616 }, + { "lat": 40.8549376, "lon": -73.9842378 }, + { "lat": 40.8548806, "lon": -73.9841384 } + ], + "tags": { + "highway": "residential", + "name": "Lester Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lester", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11578878, + "bounds": { + "minlat": 40.8219815, + "minlon": -73.9976084, + "maxlat": 40.8241608, + "maxlon": -73.9956223 + }, + "nodes": [ + 103227822, + 103227823, + 103216726, + 103227824, + 688321030 + ], + "geometry": [ + { "lat": 40.8219815, "lon": -73.9976084 }, + { "lat": 40.8225100, "lon": -73.9971340 }, + { "lat": 40.8230700, "lon": -73.9966100 }, + { "lat": 40.8236300, "lon": -73.9960850 }, + { "lat": 40.8241608, "lon": -73.9956223 } + ], + "tags": { + "highway": "residential", + "name": "North 10th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "10th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11578917, + "bounds": { + "minlat": 40.8555413, + "minlon": -73.9965660, + "maxlat": 40.8579670, + "maxlon": -73.9923899 + }, + "nodes": [ + 103228483, + 8076425414, + 8075114232, + 103224105 + ], + "geometry": [ + { "lat": 40.8579670, "lon": -73.9965660 }, + { "lat": 40.8578986, "lon": -73.9964501 }, + { "lat": 40.8556021, "lon": -73.9925031 }, + { "lat": 40.8555413, "lon": -73.9923899 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Ames Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ames", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11578949, + "bounds": { + "minlat": 40.8131025, + "minlon": -74.0015780, + "maxlat": 40.8133550, + "maxlon": -74.0008536 + }, + "nodes": [ + 103229064, + 103229067 + ], + "geometry": [ + { "lat": 40.8131025, "lon": -74.0008536 }, + { "lat": 40.8133550, "lon": -74.0015780 } + ], + "tags": { + "highway": "residential", + "name": "Sheridan Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sheridan", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11578956, + "bounds": { + "minlat": 40.8614603, + "minlon": -73.9957101, + "maxlat": 40.8621340, + "maxlon": -73.9948562 + }, + "nodes": [ + 103229102, + 8076425409, + 6137206342, + 10243699486, + 103229103, + 103229104, + 103226764, + 103229105, + 103229106 + ], + "geometry": [ + { "lat": 40.8614603, "lon": -73.9948562 }, + { "lat": 40.8615144, "lon": -73.9949435 }, + { "lat": 40.8616909, "lon": -73.9952507 }, + { "lat": 40.8617154, "lon": -73.9952901 }, + { "lat": 40.8617759, "lon": -73.9953872 }, + { "lat": 40.8618490, "lon": -73.9954916 }, + { "lat": 40.8619232, "lon": -73.9955832 }, + { "lat": 40.8620223, "lon": -73.9956652 }, + { "lat": 40.8621340, "lon": -73.9957101 } + ], + "tags": { + "highway": "residential", + "name": "Station Parkway", + "sidewalk": "left", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Station", + "tiger:name_type": "Pky", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11578958, + "bounds": { + "minlat": 40.8270263, + "minlon": -73.9755804, + "maxlat": 40.8276514, + "maxlon": -73.9744218 + }, + "nodes": [ + 5362479153, + 103229136, + 7086141070, + 1752676656, + 1752676657 + ], + "geometry": [ + { "lat": 40.8274299, "lon": -73.9755804 }, + { "lat": 40.8270263, "lon": -73.9748942 }, + { "lat": 40.8272997, "lon": -73.9747245 }, + { "lat": 40.8276270, "lon": -73.9745213 }, + { "lat": 40.8276514, "lon": -73.9744218 } + ], + "tags": { + "highway": "residential", + "name": "Columbia Terrace", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11579007, + "bounds": { + "minlat": 40.8638840, + "minlon": -74.0176680, + "maxlat": 40.8646230, + "maxlon": -74.0174680 + }, + "nodes": [ + 103175835, + 103229438 + ], + "geometry": [ + { "lat": 40.8638840, "lon": -74.0176680 }, + { "lat": 40.8646230, "lon": -74.0174680 } + ], + "tags": { + "highway": "residential", + "name": "Barnes Drive West", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Barnes", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11579036, + "bounds": { + "minlat": 40.8566738, + "minlon": -73.9708318, + "maxlat": 40.8590632, + "maxlon": -73.9683543 + }, + "nodes": [ + 103115846, + 12020552493, + 12020552492, + 103208518, + 12021336841, + 12021336840, + 103212123 + ], + "geometry": [ + { "lat": 40.8566738, "lon": -73.9708318 }, + { "lat": 40.8567150, "lon": -73.9707891 }, + { "lat": 40.8567348, "lon": -73.9707685 }, + { "lat": 40.8578623, "lon": -73.9695996 }, + { "lat": 40.8589967, "lon": -73.9684233 }, + { "lat": 40.8590195, "lon": -73.9683997 }, + { "lat": 40.8590632, "lon": -73.9683543 } + ], + "tags": { + "highway": "residential", + "maxweight": "4", + "name": "Mackay Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mackay", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11579168, + "bounds": { + "minlat": 40.8729986, + "minlon": -73.9779106, + "maxlat": 40.8732825, + "maxlon": -73.9778590 + }, + "nodes": [ + 103125899, + 103230547 + ], + "geometry": [ + { "lat": 40.8732825, "lon": -73.9779106 }, + { "lat": 40.8729986, "lon": -73.9778590 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Regency Circle", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Regency", + "tiger:name_type": "Cir", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11579195, + "bounds": { + "minlat": 40.8341299, + "minlon": -73.9925628, + "maxlat": 40.8357774, + "maxlon": -73.9915357 + }, + "nodes": [ + 103230700, + 13524441810, + 103230701, + 103230702, + 103230704, + 103230706, + 103230707, + 103211762 + ], + "geometry": [ + { "lat": 40.8341299, "lon": -73.9925628 }, + { "lat": 40.8342093, "lon": -73.9925043 }, + { "lat": 40.8349230, "lon": -73.9919780 }, + { "lat": 40.8350560, "lon": -73.9919030 }, + { "lat": 40.8352940, "lon": -73.9917980 }, + { "lat": 40.8354770, "lon": -73.9917020 }, + { "lat": 40.8355670, "lon": -73.9916500 }, + { "lat": 40.8357774, "lon": -73.9915357 } + ], + "tags": { + "highway": "residential", + "name": "Norman Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Norman", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11579217, + "bounds": { + "minlat": 40.8091920, + "minlon": -73.9951730, + "maxlat": 40.8114948, + "maxlon": -73.9936685 + }, + "nodes": [ + 103202147, + 7604336444, + 103230852, + 103230851, + 7604336430, + 103230850, + 103159362, + 103112764 + ], + "geometry": [ + { "lat": 40.8114948, "lon": -73.9936685 }, + { "lat": 40.8111850, "lon": -73.9938989 }, + { "lat": 40.8108748, "lon": -73.9941295 }, + { "lat": 40.8107610, "lon": -73.9942035 }, + { "lat": 40.8106090, "lon": -73.9943002 }, + { "lat": 40.8105236, "lon": -73.9943613 }, + { "lat": 40.8101260, "lon": -73.9945660 }, + { "lat": 40.8091920, "lon": -73.9951730 } + ], + "tags": { + "highway": "residential", + "name": "Rothwell Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Rothwell", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11579234, + "bounds": { + "minlat": 40.8448657, + "minlon": -73.9783967, + "maxlat": 40.8481341, + "maxlon": -73.9720376 + }, + "nodes": [ + 103230895, + 103230893, + 5108604345, + 103174585, + 103230891, + 12394165159, + 103230889, + 7292367020, + 103230887, + 5108657035, + 13523703024, + 103230886 + ], + "geometry": [ + { "lat": 40.8481341, "lon": -73.9783967 }, + { "lat": 40.8480755, "lon": -73.9779532 }, + { "lat": 40.8480432, "lon": -73.9778544 }, + { "lat": 40.8473880, "lon": -73.9766628 }, + { "lat": 40.8466850, "lon": -73.9753860 }, + { "lat": 40.8466120, "lon": -73.9752509 }, + { "lat": 40.8465370, "lon": -73.9751120 }, + { "lat": 40.8465210, "lon": -73.9750825 }, + { "lat": 40.8455190, "lon": -73.9732240 }, + { "lat": 40.8449388, "lon": -73.9721482 }, + { "lat": 40.8449248, "lon": -73.9721270 }, + { "lat": 40.8448657, "lon": -73.9720376 } + ], + "tags": { + "highway": "residential", + "name": "Riverdale Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Riverdale", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11579235, + "bounds": { + "minlat": 40.8643737, + "minlon": -74.0230275, + "maxlat": 40.8654257, + "maxlon": -74.0158436 + }, + "nodes": [ + 103230902, + 103230904, + 103230906, + 103179633, + 103217266, + 103229438, + 103227403, + 103214378 + ], + "geometry": [ + { "lat": 40.8654257, "lon": -74.0230275 }, + { "lat": 40.8651320, "lon": -74.0211320 }, + { "lat": 40.8650252, "lon": -74.0203406 }, + { "lat": 40.8649090, "lon": -74.0195610 }, + { "lat": 40.8646880, "lon": -74.0179559 }, + { "lat": 40.8646230, "lon": -74.0174680 }, + { "lat": 40.8645580, "lon": -74.0170050 }, + { "lat": 40.8643737, "lon": -74.0158436 } + ], + "tags": { + "highway": "residential", + "name": "Arthur Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Arthur", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11579238, + "bounds": { + "minlat": 40.8390970, + "minlon": -73.9806650, + "maxlat": 40.8411110, + "maxlon": -73.9772020 + }, + "nodes": [ + 103230923, + 7292367144, + 103230925, + 103230927, + 7292367171, + 103230928 + ], + "geometry": [ + { "lat": 40.8390970, "lon": -73.9772020 }, + { "lat": 40.8391596, "lon": -73.9773097 }, + { "lat": 40.8403340, "lon": -73.9793290 }, + { "lat": 40.8404980, "lon": -73.9796100 }, + { "lat": 40.8405136, "lon": -73.9796368 }, + { "lat": 40.8411110, "lon": -73.9806650 } + ], + "tags": { + "highway": "residential", + "name": "McElroy Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "McElroy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11579239, + "bounds": { + "minlat": 40.8381708, + "minlon": -73.9769750, + "maxlat": 40.8393030, + "maxlon": -73.9752387 + }, + "nodes": [ + 5108635194, + 5108635205, + 5108635207, + 103230929, + 103123313, + 7292367111, + 103230930 + ], + "geometry": [ + { "lat": 40.8381708, "lon": -73.9752387 }, + { "lat": 40.8382277, "lon": -73.9752723 }, + { "lat": 40.8382880, "lon": -73.9753295 }, + { "lat": 40.8384350, "lon": -73.9756020 }, + { "lat": 40.8388670, "lon": -73.9762860 }, + { "lat": 40.8392503, "lon": -73.9768917 }, + { "lat": 40.8393030, "lon": -73.9769750 } + ], + "tags": { + "highway": "residential", + "name": "McElroy Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "McElroy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11579289, + "bounds": { + "minlat": 40.8658744, + "minlon": -74.0176900, + "maxlat": 40.8711960, + "maxlon": -74.0161180 + }, + "nodes": [ + 103231148, + 103226760, + 103231150, + 103231152, + 103231154, + 103231155, + 103223890, + 103146430, + 103184875, + 103231156, + 103231157, + 6592318435, + 103231158, + 103231159, + 103231160, + 103231161 + ], + "geometry": [ + { "lat": 40.8658744, "lon": -74.0176538 }, + { "lat": 40.8661980, "lon": -74.0175980 }, + { "lat": 40.8664750, "lon": -74.0176760 }, + { "lat": 40.8665200, "lon": -74.0176840 }, + { "lat": 40.8666270, "lon": -74.0176900 }, + { "lat": 40.8667490, "lon": -74.0176770 }, + { "lat": 40.8669270, "lon": -74.0176240 }, + { "lat": 40.8676650, "lon": -74.0173850 }, + { "lat": 40.8683710, "lon": -74.0171570 }, + { "lat": 40.8690490, "lon": -74.0169370 }, + { "lat": 40.8697170, "lon": -74.0167220 }, + { "lat": 40.8702316, "lon": -74.0165547 }, + { "lat": 40.8702830, "lon": -74.0165380 }, + { "lat": 40.8704160, "lon": -74.0165010 }, + { "lat": 40.8705170, "lon": -74.0164620 }, + { "lat": 40.8711960, "lon": -74.0161180 } + ], + "tags": { + "highway": "residential", + "maxspeed": "30 mph", + "name": "Lees Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lees", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11579326, + "bounds": { + "minlat": 40.8262485, + "minlon": -73.9906296, + "maxlat": 40.8280847, + "maxlon": -73.9873094 + }, + "nodes": [ + 103231464, + 103231463, + 7567593081, + 7595172513, + 7564371954, + 5341032754, + 13525873308, + 5341032750, + 5341032749 + ], + "geometry": [ + { "lat": 40.8280847, "lon": -73.9906296 }, + { "lat": 40.8272705, "lon": -73.9891852 }, + { "lat": 40.8265304, "lon": -73.9878814 }, + { "lat": 40.8265154, "lon": -73.9878547 }, + { "lat": 40.8264696, "lon": -73.9877732 }, + { "lat": 40.8263135, "lon": -73.9874951 }, + { "lat": 40.8263029, "lon": -73.9874707 }, + { "lat": 40.8262768, "lon": -73.9874051 }, + { "lat": 40.8262485, "lon": -73.9873094 } + ], + "tags": { + "highway": "residential", + "name": "Nelson Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Nelson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657", + "tiger:zip_right_1": "07657" + } +}, +{ + "type": "way", + "id": 11579344, + "bounds": { + "minlat": 40.8361169, + "minlon": -74.0044333, + "maxlat": 40.8371254, + "maxlon": -74.0031580 + }, + "nodes": [ + 103159279, + 103231536, + 10926498225, + 103231538, + 103231540, + 103231542, + 103231543, + 103231545, + 103231546, + 103231547, + 103231548, + 103231549, + 103231551, + 103231553, + 103231555, + 103159280 + ], + "geometry": [ + { "lat": 40.8361169, "lon": -74.0038054 }, + { "lat": 40.8363308, "lon": -74.0041836 }, + { "lat": 40.8363825, "lon": -74.0042619 }, + { "lat": 40.8364764, "lon": -74.0043643 }, + { "lat": 40.8365264, "lon": -74.0044033 }, + { "lat": 40.8365844, "lon": -74.0044283 }, + { "lat": 40.8366464, "lon": -74.0044333 }, + { "lat": 40.8367124, "lon": -74.0044173 }, + { "lat": 40.8367714, "lon": -74.0043793 }, + { "lat": 40.8370614, "lon": -74.0040593 }, + { "lat": 40.8370904, "lon": -74.0040103 }, + { "lat": 40.8371144, "lon": -74.0039403 }, + { "lat": 40.8371254, "lon": -74.0038653 }, + { "lat": 40.8371214, "lon": -74.0037843 }, + { "lat": 40.8370994, "lon": -74.0037023 }, + { "lat": 40.8367920, "lon": -74.0031580 } + ], + "tags": { + "highway": "residential", + "name": "Bryant Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bryant", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11579364, + "bounds": { + "minlat": 40.8533060, + "minlon": -74.0011190, + "maxlat": 40.8541760, + "maxlon": -73.9995930 + }, + "nodes": [ + 103231784, + 103133890, + 103231785, + 103231788 + ], + "geometry": [ + { "lat": 40.8533060, "lon": -73.9995930 }, + { "lat": 40.8537380, "lon": -74.0003250 }, + { "lat": 40.8539820, "lon": -74.0007530 }, + { "lat": 40.8541760, "lon": -74.0011190 } + ], + "tags": { + "highway": "residential", + "name": "Fair Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fair", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11579374, + "bounds": { + "minlat": 40.8814676, + "minlon": -73.9529140, + "maxlat": 40.8965102, + "maxlon": -73.9451834 + }, + "nodes": [ + 103187020, + 9239519765, + 7531347162, + 103231942, + 103152981, + 103227141, + 103121077, + 103231945, + 10059554199, + 103231947, + 103231951, + 103231953, + 103231955, + 103231957, + 103193759, + 103231959, + 103231961, + 4042138910, + 5108449427, + 103123790, + 10059813066, + 103231963, + 10067720006, + 10067719994, + 10067719975, + 10067719966, + 10067719991, + 103231965 + ], + "geometry": [ + { "lat": 40.8814676, "lon": -73.9529140 }, + { "lat": 40.8815219, "lon": -73.9528711 }, + { "lat": 40.8817862, "lon": -73.9526715 }, + { "lat": 40.8824570, "lon": -73.9521660 }, + { "lat": 40.8830849, "lon": -73.9517526 }, + { "lat": 40.8836945, "lon": -73.9513579 }, + { "lat": 40.8847787, "lon": -73.9506600 }, + { "lat": 40.8857089, "lon": -73.9500617 }, + { "lat": 40.8864890, "lon": -73.9495478 }, + { "lat": 40.8866373, "lon": -73.9494620 }, + { "lat": 40.8880393, "lon": -73.9488569 }, + { "lat": 40.8890724, "lon": -73.9484017 }, + { "lat": 40.8895057, "lon": -73.9482101 }, + { "lat": 40.8902853, "lon": -73.9478720 }, + { "lat": 40.8915830, "lon": -73.9473078 }, + { "lat": 40.8918070, "lon": -73.9472106 }, + { "lat": 40.8927788, "lon": -73.9467896 }, + { "lat": 40.8934128, "lon": -73.9465188 }, + { "lat": 40.8936960, "lon": -73.9463931 }, + { "lat": 40.8943371, "lon": -73.9461141 }, + { "lat": 40.8945382, "lon": -73.9460286 }, + { "lat": 40.8950079, "lon": -73.9458224 }, + { "lat": 40.8957172, "lon": -73.9455160 }, + { "lat": 40.8958653, "lon": -73.9454521 }, + { "lat": 40.8959467, "lon": -73.9454169 }, + { "lat": 40.8961219, "lon": -73.9453412 }, + { "lat": 40.8962235, "lon": -73.9453000 }, + { "lat": 40.8965102, "lon": -73.9451834 } + ], + "tags": { + "highway": "residential", + "name": "Floyd Street", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Floyd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11579376, + "bounds": { + "minlat": 40.8528112, + "minlon": -73.9989979, + "maxlat": 40.8555580, + "maxlon": -73.9962700 + }, + "nodes": [ + 103231985, + 103154265, + 7687570216, + 103137595, + 10266684173, + 440215456 + ], + "geometry": [ + { "lat": 40.8528112, "lon": -73.9989979 }, + { "lat": 40.8530530, "lon": -73.9987680 }, + { "lat": 40.8533349, "lon": -73.9984888 }, + { "lat": 40.8541500, "lon": -73.9976670 }, + { "lat": 40.8555362, "lon": -73.9962916 }, + { "lat": 40.8555580, "lon": -73.9962700 } + ], + "tags": { + "highway": "residential", + "name": "Lawn Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lawn", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11579393, + "bounds": { + "minlat": 40.8660652, + "minlon": -73.9710890, + "maxlat": 40.8671420, + "maxlon": -73.9692755 + }, + "nodes": [ + 103232109, + 7373684605, + 103220030, + 103232110, + 103180043 + ], + "geometry": [ + { "lat": 40.8671420, "lon": -73.9710890 }, + { "lat": 40.8671156, "lon": -73.9710447 }, + { "lat": 40.8670710, "lon": -73.9709700 }, + { "lat": 40.8662380, "lon": -73.9695770 }, + { "lat": 40.8660652, "lon": -73.9692755 } + ], + "tags": { + "highway": "residential", + "name": "Westview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Westview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11579398, + "bounds": { + "minlat": 40.8442670, + "minlon": -73.9785690, + "maxlat": 40.8473540, + "maxlon": -73.9724680 + }, + "nodes": [ + 103232116, + 13523703014, + 7472864435, + 103232117, + 7292367021, + 103232118, + 103232120, + 7060317061, + 7060317059, + 103174583, + 103232122, + 5108604344, + 103232123 + ], + "geometry": [ + { "lat": 40.8442670, "lon": -73.9724680 }, + { "lat": 40.8443110, "lon": -73.9725490 }, + { "lat": 40.8444779, "lon": -73.9728562 }, + { "lat": 40.8449630, "lon": -73.9737490 }, + { "lat": 40.8459061, "lon": -73.9754879 }, + { "lat": 40.8459170, "lon": -73.9755080 }, + { "lat": 40.8460680, "lon": -73.9757860 }, + { "lat": 40.8463441, "lon": -73.9762876 }, + { "lat": 40.8464570, "lon": -73.9764928 }, + { "lat": 40.8467999, "lon": -73.9771158 }, + { "lat": 40.8472663, "lon": -73.9779788 }, + { "lat": 40.8472985, "lon": -73.9780806 }, + { "lat": 40.8473540, "lon": -73.9785690 } + ], + "tags": { + "highway": "residential", + "name": "Westview Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Westview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11579402, + "bounds": { + "minlat": 40.8245583, + "minlon": -73.9963109, + "maxlat": 40.8263285, + "maxlon": -73.9946262 + }, + "nodes": [ + 103209153, + 7529710514, + 103232124 + ], + "geometry": [ + { "lat": 40.8245583, "lon": -73.9963109 }, + { "lat": 40.8256512, "lon": -73.9952788 }, + { "lat": 40.8263285, "lon": -73.9946262 } + ], + "tags": { + "highway": "residential", + "name": "Westview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Westview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11579403, + "bounds": { + "minlat": 40.8577880, + "minlon": -73.9898610, + "maxlat": 40.8590470, + "maxlon": -73.9877020 + }, + "nodes": [ + 103224109, + 8075114223, + 8078713070, + 10239483821, + 103093229 + ], + "geometry": [ + { "lat": 40.8590470, "lon": -73.9898610 }, + { "lat": 40.8589781, "lon": -73.9897429 }, + { "lat": 40.8578461, "lon": -73.9878017 }, + { "lat": 40.8578202, "lon": -73.9877567 }, + { "lat": 40.8577880, "lon": -73.9877020 } + ], + "tags": { + "highway": "residential", + "name": "Westview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Westview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11579444, + "bounds": { + "minlat": 40.8178346, + "minlon": -74.0044110, + "maxlat": 40.8193190, + "maxlon": -74.0015602 + }, + "nodes": [ + 103147927, + 8666507210, + 103232428 + ], + "geometry": [ + { "lat": 40.8178346, "lon": -74.0015602 }, + { "lat": 40.8181092, "lon": -74.0021234 }, + { "lat": 40.8193190, "lon": -74.0044110 } + ], + "tags": { + "highway": "residential", + "name": "Industrial Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Industrial", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11579446, + "bounds": { + "minlat": 40.8373265, + "minlon": -74.0093429, + "maxlat": 40.8383460, + "maxlon": -74.0075756 + }, + "nodes": [ + 103232473, + 12016147244, + 12016147243, + 12016147242, + 8218997778, + 103232475 + ], + "geometry": [ + { "lat": 40.8373265, "lon": -74.0075756 }, + { "lat": 40.8373433, "lon": -74.0076212 }, + { "lat": 40.8373601, "lon": -74.0076594 }, + { "lat": 40.8373773, "lon": -74.0076948 }, + { "lat": 40.8379502, "lon": -74.0086694 }, + { "lat": 40.8383460, "lon": -74.0093429 } + ], + "tags": { + "highway": "unclassified", + "name": "Industrial Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Industrial", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11579457, + "bounds": { + "minlat": 40.8207808, + "minlon": -74.0086926, + "maxlat": 40.8207881, + "maxlon": -74.0086109 + }, + "nodes": [ + 4205784190, + 5837332136 + ], + "geometry": [ + { "lat": 40.8207808, "lon": -74.0086926 }, + { "lat": 40.8207881, "lon": -74.0086109 } + ], + "tags": { + "highway": "secondary", + "name": "Fairview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 11579478, + "bounds": { + "minlat": 40.8141940, + "minlon": -74.0072992, + "maxlat": 40.8207203, + "maxlon": -74.0030890 + }, + "nodes": [ + 103232635, + 103232637, + 103105138, + 103232644, + 7159043004, + 103232646, + 103232648, + 103232650, + 103232652, + 103232654, + 103232655, + 103232656, + 103232657, + 10583885557, + 103232658, + 103232659, + 103232660, + 103232661, + 103232662, + 103232664, + 7788857519, + 7788857524, + 103232666, + 7788857521, + 103232668, + 103232670, + 6370327561, + 103232672, + 103232674, + 103232676, + 103218371, + 103232678, + 103146304, + 103232680, + 103140209, + 103203993 + ], + "geometry": [ + { "lat": 40.8141940, "lon": -74.0030890 }, + { "lat": 40.8143039, "lon": -74.0031732 }, + { "lat": 40.8145320, "lon": -74.0033392 }, + { "lat": 40.8145996, "lon": -74.0033826 }, + { "lat": 40.8146407, "lon": -74.0034145 }, + { "lat": 40.8147040, "lon": -74.0034591 }, + { "lat": 40.8147860, "lon": -74.0035045 }, + { "lat": 40.8148960, "lon": -74.0035421 }, + { "lat": 40.8149920, "lon": -74.0035548 }, + { "lat": 40.8152441, "lon": -74.0035489 }, + { "lat": 40.8153450, "lon": -74.0035570 }, + { "lat": 40.8155010, "lon": -74.0036000 }, + { "lat": 40.8156550, "lon": -74.0036600 }, + { "lat": 40.8159841, "lon": -74.0038271 }, + { "lat": 40.8163621, "lon": -74.0040196 }, + { "lat": 40.8164760, "lon": -74.0040720 }, + { "lat": 40.8166660, "lon": -74.0041450 }, + { "lat": 40.8168590, "lon": -74.0042010 }, + { "lat": 40.8170550, "lon": -74.0042380 }, + { "lat": 40.8174900, "lon": -74.0042983 }, + { "lat": 40.8179580, "lon": -74.0044478 }, + { "lat": 40.8187312, "lon": -74.0047103 }, + { "lat": 40.8187980, "lon": -74.0047330 }, + { "lat": 40.8188705, "lon": -74.0047553 }, + { "lat": 40.8198900, "lon": -74.0050690 }, + { "lat": 40.8200120, "lon": -74.0051300 }, + { "lat": 40.8200416, "lon": -74.0051528 }, + { "lat": 40.8201130, "lon": -74.0052080 }, + { "lat": 40.8201940, "lon": -74.0052940 }, + { "lat": 40.8202760, "lon": -74.0054130 }, + { "lat": 40.8203389, "lon": -74.0055384 }, + { "lat": 40.8203853, "lon": -74.0056261 }, + { "lat": 40.8204355, "lon": -74.0057911 }, + { "lat": 40.8205630, "lon": -74.0064629 }, + { "lat": 40.8205940, "lon": -74.0066486 }, + { "lat": 40.8207203, "lon": -74.0072992 } + ], + "tags": { + "Bergen_County_database_ref": "48", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000048", + "highway": "secondary", + "name": "Fairview Avenue", + "old_ref": "CR 16", + "ref": "CR 48", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11579485, + "bounds": { + "minlat": 40.8634820, + "minlon": -73.9688260, + "maxlat": 40.8642220, + "maxlon": -73.9675660 + }, + "nodes": [ + 103232692, + 7387138002, + 7387137999, + 6320468165, + 103132984 + ], + "geometry": [ + { "lat": 40.8642220, "lon": -73.9688260 }, + { "lat": 40.8641958, "lon": -73.9687813 }, + { "lat": 40.8641356, "lon": -73.9686788 }, + { "lat": 40.8639898, "lon": -73.9684307 }, + { "lat": 40.8634820, "lon": -73.9675660 } + ], + "tags": { + "highway": "residential", + "name": "Fairview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11579492, + "bounds": { + "minlat": 40.8208658, + "minlon": -73.9896625, + "maxlat": 40.8219288, + "maxlon": -73.9886434 + }, + "nodes": [ + 103201212, + 103213246 + ], + "geometry": [ + { "lat": 40.8208658, "lon": -73.9896625 }, + { "lat": 40.8219288, "lon": -73.9886434 } + ], + "tags": { + "highway": "residential", + "name": "Lindberg Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lindberg", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11579596, + "bounds": { + "minlat": 40.8486470, + "minlon": -73.9667670, + "maxlat": 40.8498117, + "maxlon": -73.9662489 + }, + "nodes": [ + 103233281, + 103151187, + 103191796 + ], + "geometry": [ + { "lat": 40.8486470, "lon": -73.9667670 }, + { "lat": 40.8491603, "lon": -73.9665370 }, + { "lat": 40.8498117, "lon": -73.9662489 } + ], + "tags": { + "highway": "residential", + "name": "Federspiel Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Federspiel", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11579662, + "bounds": { + "minlat": 40.8772456, + "minlon": -73.9796665, + "maxlat": 40.8785308, + "maxlon": -73.9773816 + }, + "nodes": [ + 103233740, + 10942914348, + 103104517 + ], + "geometry": [ + { "lat": 40.8772456, "lon": -73.9773816 }, + { "lat": 40.8782950, "lon": -73.9792271 }, + { "lat": 40.8785308, "lon": -73.9796665 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Walton Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41;A63", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Walton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11579664, + "bounds": { + "minlat": 40.8744663, + "minlon": -73.9767314, + "maxlat": 40.8772963, + "maxlon": -73.9724697 + }, + "nodes": [ + 103233744, + 530806382, + 12021734777, + 10942914340, + 12021734778, + 10942914347, + 10942914349, + 12021734779, + 10942914345, + 530806390, + 12021734781, + 12021734782, + 12021734780, + 12021734783, + 12021734784, + 530806395, + 103224136 + ], + "geometry": [ + { "lat": 40.8744663, "lon": -73.9724697 }, + { "lat": 40.8767409, "lon": -73.9765049 }, + { "lat": 40.8767613, "lon": -73.9765379 }, + { "lat": 40.8767858, "lon": -73.9765625 }, + { "lat": 40.8768100, "lon": -73.9765809 }, + { "lat": 40.8768399, "lon": -73.9765979 }, + { "lat": 40.8768645, "lon": -73.9766031 }, + { "lat": 40.8768927, "lon": -73.9766032 }, + { "lat": 40.8769171, "lon": -73.9765974 }, + { "lat": 40.8769764, "lon": -73.9765752 }, + { "lat": 40.8770031, "lon": -73.9765663 }, + { "lat": 40.8770389, "lon": -73.9765584 }, + { "lat": 40.8770764, "lon": -73.9765539 }, + { "lat": 40.8771100, "lon": -73.9765557 }, + { "lat": 40.8771433, "lon": -73.9765653 }, + { "lat": 40.8772393, "lon": -73.9765946 }, + { "lat": 40.8772963, "lon": -73.9767314 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Walton Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Walton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11579682, + "bounds": { + "minlat": 40.8184890, + "minlon": -73.9921094, + "maxlat": 40.8199132, + "maxlon": -73.9894340 + }, + "nodes": [ + 440208170, + 13524700369, + 103133904, + 103233843 + ], + "geometry": [ + { "lat": 40.8199132, "lon": -73.9921094 }, + { "lat": 40.8198637, "lon": -73.9920148 }, + { "lat": 40.8189653, "lon": -73.9902986 }, + { "lat": 40.8184890, "lon": -73.9894340 } + ], + "tags": { + "highway": "residential", + "name": "Clark Terrace", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Clark", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11579692, + "bounds": { + "minlat": 40.8658040, + "minlon": -73.9674180, + "maxlat": 40.8684751, + "maxlon": -73.9647408 + }, + "nodes": [ + 103233872, + 103233874, + 103233875, + 440215041, + 103233879, + 103233880 + ], + "geometry": [ + { "lat": 40.8658040, "lon": -73.9674180 }, + { "lat": 40.8667899, "lon": -73.9664305 }, + { "lat": 40.8677560, "lon": -73.9654840 }, + { "lat": 40.8678190, "lon": -73.9654160 }, + { "lat": 40.8680260, "lon": -73.9651920 }, + { "lat": 40.8684751, "lon": -73.9647408 } + ], + "tags": { + "highway": "residential", + "name": "Camner Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Camner", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11579731, + "bounds": { + "minlat": 40.8102665, + "minlon": -73.9932340, + "maxlat": 40.8109050, + "maxlon": -73.9919044 + }, + "nodes": [ + 440208059, + 103234095, + 103191825, + 103234097 + ], + "geometry": [ + { "lat": 40.8102665, "lon": -73.9919044 }, + { "lat": 40.8103147, "lon": -73.9920198 }, + { "lat": 40.8104965, "lon": -73.9924512 }, + { "lat": 40.8109050, "lon": -73.9932340 } + ], + "tags": { + "highway": "residential", + "name": "Laird Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Laird", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11579787, + "bounds": { + "minlat": 40.8196002, + "minlon": -73.9870514, + "maxlat": 40.8228637, + "maxlon": -73.9822348 + }, + "nodes": [ + 103234275, + 103198454, + 4048717210, + 103163323, + 475221862, + 475221843, + 7542575540, + 7542575539, + 4048714845, + 7542575538, + 103234276, + 7557491494, + 4048711769, + 7557491365, + 7557491400, + 103234278, + 4695282833, + 7557491417, + 4695282832, + 4695282831 + ], + "geometry": [ + { "lat": 40.8196002, "lon": -73.9822348 }, + { "lat": 40.8202886, "lon": -73.9834496 }, + { "lat": 40.8203429, "lon": -73.9835552 }, + { "lat": 40.8207033, "lon": -73.9842018 }, + { "lat": 40.8208998, "lon": -73.9845724 }, + { "lat": 40.8216145, "lon": -73.9858441 }, + { "lat": 40.8216504, "lon": -73.9859080 }, + { "lat": 40.8217843, "lon": -73.9861462 }, + { "lat": 40.8218732, "lon": -73.9863044 }, + { "lat": 40.8219772, "lon": -73.9864825 }, + { "lat": 40.8220277, "lon": -73.9865689 }, + { "lat": 40.8221130, "lon": -73.9867168 }, + { "lat": 40.8221542, "lon": -73.9867881 }, + { "lat": 40.8222029, "lon": -73.9868668 }, + { "lat": 40.8222406, "lon": -73.9869278 }, + { "lat": 40.8223048, "lon": -73.9870317 }, + { "lat": 40.8223522, "lon": -73.9870514 }, + { "lat": 40.8223617, "lon": -73.9870487 }, + { "lat": 40.8223999, "lon": -73.9870380 }, + { "lat": 40.8228637, "lon": -73.9867121 } + ], + "tags": { + "highway": "residential", + "name": "Riverview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Riverview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_left_1": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11579794, + "bounds": { + "minlat": 40.8628700, + "minlon": -73.9834170, + "maxlat": 40.8636190, + "maxlon": -73.9818386 + }, + "nodes": [ + 103093245, + 8078713068, + 103234401, + 6132813964 + ], + "geometry": [ + { "lat": 40.8636190, "lon": -73.9834170 }, + { "lat": 40.8635633, "lon": -73.9833000 }, + { "lat": 40.8630960, "lon": -73.9823190 }, + { "lat": 40.8628700, "lon": -73.9818386 } + ], + "tags": { + "highway": "residential", + "name": "Hilltop Avenue", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hilltop", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11579809, + "bounds": { + "minlat": 40.8546710, + "minlon": -73.9820554, + "maxlat": 40.8554849, + "maxlon": -73.9806910 + }, + "nodes": [ + 103135877, + 103227261, + 103146633 + ], + "geometry": [ + { "lat": 40.8546710, "lon": -73.9806910 }, + { "lat": 40.8550720, "lon": -73.9813720 }, + { "lat": 40.8554849, "lon": -73.9820554 } + ], + "tags": { + "highway": "residential", + "name": "Hazlitt Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hazlitt", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11579812, + "bounds": { + "minlat": 40.8560557, + "minlon": -73.9845985, + "maxlat": 40.8569872, + "maxlon": -73.9830014 + }, + "nodes": [ + 103234491, + 10236688105, + 10122889686, + 299171742 + ], + "geometry": [ + { "lat": 40.8569872, "lon": -73.9845985 }, + { "lat": 40.8569457, "lon": -73.9845242 }, + { "lat": 40.8561359, "lon": -73.9831446 }, + { "lat": 40.8560557, "lon": -73.9830014 } + ], + "tags": { + "direction": "backward", + "highway": "residential", + "lane_markings": "no", + "name": "Hazlitt Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hazlitt", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11579816, + "bounds": { + "minlat": 40.8303560, + "minlon": -73.9962030, + "maxlat": 40.8313730, + "maxlon": -73.9960490 + }, + "nodes": [ + 103216026, + 103234499 + ], + "geometry": [ + { "lat": 40.8303560, "lon": -73.9960490 }, + { "lat": 40.8313730, "lon": -73.9962030 } + ], + "tags": { + "highway": "residential", + "name": "Clinton Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Clinton", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11579840, + "bounds": { + "minlat": 40.8800501, + "minlon": -73.9817983, + "maxlat": 40.8808986, + "maxlon": -73.9802968 + }, + "nodes": [ + 7494385336, + 12023838847, + 7494385341, + 7494385344, + 4204720489 + ], + "geometry": [ + { "lat": 40.8808986, "lon": -73.9817983 }, + { "lat": 40.8808697, "lon": -73.9817471 }, + { "lat": 40.8804015, "lon": -73.9809202 }, + { "lat": 40.8803266, "lon": -73.9807886 }, + { "lat": 40.8800501, "lon": -73.9802968 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Van Nostrand Avenue", + "oneway": "yes", + "ref": "CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11579842, + "bounds": { + "minlat": 40.8676663, + "minlon": -73.9651292, + "maxlat": 40.8715912, + "maxlon": -73.9581683 + }, + "nodes": [ + 7132418481, + 103215715, + 5108581308, + 5108583893, + 5108581303, + 9286167732, + 9286167730, + 9286167728, + 103234561, + 103234562, + 103234563, + 103176055, + 103198690, + 103130858, + 103180036 + ], + "geometry": [ + { "lat": 40.8676663, "lon": -73.9581683 }, + { "lat": 40.8678759, "lon": -73.9585289 }, + { "lat": 40.8683257, "lon": -73.9593373 }, + { "lat": 40.8684448, "lon": -73.9595481 }, + { "lat": 40.8686821, "lon": -73.9599510 }, + { "lat": 40.8688436, "lon": -73.9602312 }, + { "lat": 40.8689484, "lon": -73.9604130 }, + { "lat": 40.8690441, "lon": -73.9605791 }, + { "lat": 40.8691090, "lon": -73.9606916 }, + { "lat": 40.8695560, "lon": -73.9615160 }, + { "lat": 40.8699800, "lon": -73.9622680 }, + { "lat": 40.8703950, "lon": -73.9630040 }, + { "lat": 40.8708070, "lon": -73.9637330 }, + { "lat": 40.8712150, "lon": -73.9644570 }, + { "lat": 40.8715912, "lon": -73.9651292 } + ], + "tags": { + "highway": "residential", + "name": "Van Nostrand Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11579979, + "bounds": { + "minlat": 40.8484691, + "minlon": -73.9842387, + "maxlat": 40.8508668, + "maxlon": -73.9834527 + }, + "nodes": [ + 440215250, + 12443054056, + 2395509024, + 7290200889, + 7290151283, + 5978949668, + 103177086, + 12443054051, + 103111787, + 2395506856, + 2395506857, + 5362354422, + 103177090 + ], + "geometry": [ + { "lat": 40.8484691, "lon": -73.9834527 }, + { "lat": 40.8485736, "lon": -73.9835208 }, + { "lat": 40.8487484, "lon": -73.9835614 }, + { "lat": 40.8490655, "lon": -73.9835768 }, + { "lat": 40.8492941, "lon": -73.9835927 }, + { "lat": 40.8494229, "lon": -73.9836008 }, + { "lat": 40.8494873, "lon": -73.9836043 }, + { "lat": 40.8495663, "lon": -73.9835700 }, + { "lat": 40.8501756, "lon": -73.9835810 }, + { "lat": 40.8507210, "lon": -73.9836304 }, + { "lat": 40.8508501, "lon": -73.9838324 }, + { "lat": 40.8508668, "lon": -73.9839231 }, + { "lat": 40.8508595, "lon": -73.9842387 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Teresa Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teresa", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11579989, + "bounds": { + "minlat": 40.8423811, + "minlon": -73.9784791, + "maxlat": 40.8450085, + "maxlon": -73.9736366 + }, + "nodes": [ + 103235392, + 7292367045, + 7472864422, + 103235393, + 7292367024, + 103235395, + 103235397, + 103174578 + ], + "geometry": [ + { "lat": 40.8423811, "lon": -73.9736366 }, + { "lat": 40.8424358, "lon": -73.9737381 }, + { "lat": 40.8425929, "lon": -73.9740299 }, + { "lat": 40.8432870, "lon": -73.9753190 }, + { "lat": 40.8441703, "lon": -73.9769469 }, + { "lat": 40.8441850, "lon": -73.9769740 }, + { "lat": 40.8443280, "lon": -73.9772360 }, + { "lat": 40.8450085, "lon": -73.9784791 } + ], + "tags": { + "highway": "residential", + "name": "Mohegan Way", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mohegan", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_left_1": "07024", + "tiger:zip_right": "07024", + "tiger:zip_right_1": "07024" + } +}, +{ + "type": "way", + "id": 11579999, + "bounds": { + "minlat": 40.8649730, + "minlon": -73.9821009, + "maxlat": 40.8653094, + "maxlon": -73.9809230 + }, + "nodes": [ + 103093259, + 103235420, + 10219054073, + 103235422, + 103235424, + 103235425, + 103235426, + 103235427, + 103110773 + ], + "geometry": [ + { "lat": 40.8653094, "lon": -73.9821009 }, + { "lat": 40.8653094, "lon": -73.9819196 }, + { "lat": 40.8653004, "lon": -73.9816506 }, + { "lat": 40.8652771, "lon": -73.9814727 }, + { "lat": 40.8652410, "lon": -73.9813460 }, + { "lat": 40.8652020, "lon": -73.9812380 }, + { "lat": 40.8651530, "lon": -73.9811390 }, + { "lat": 40.8651100, "lon": -73.9810730 }, + { "lat": 40.8649730, "lon": -73.9809230 } + ], + "tags": { + "highway": "residential", + "name": "Dogwood Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dogwood", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11580027, + "bounds": { + "minlat": 40.8487763, + "minlon": -73.9734482, + "maxlat": 40.8492990, + "maxlon": -73.9729910 + }, + "nodes": [ + 103235582, + 12394165109, + 12372296130, + 5108614570, + 103235584 + ], + "geometry": [ + { "lat": 40.8487763, "lon": -73.9734389 }, + { "lat": 40.8488007, "lon": -73.9734482 }, + { "lat": 40.8488293, "lon": -73.9734419 }, + { "lat": 40.8492593, "lon": -73.9730291 }, + { "lat": 40.8492990, "lon": -73.9729910 } + ], + "tags": { + "highway": "residential", + "name": "Gerome Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11580059, + "bounds": { + "minlat": 40.8220277, + "minlon": -73.9868318, + "maxlat": 40.8247612, + "maxlon": -73.9838861 + }, + "nodes": [ + 103235697, + 103234276, + 103235699, + 103235701, + 103235703, + 103235705, + 103235707, + 7557491404, + 103235709, + 103235711, + 103235713, + 103150187, + 7557491302, + 4695282843, + 103110911, + 7557454987, + 103212495, + 103235717, + 103235719, + 7557435062, + 103235721, + 7557435226, + 103112555, + 103112559, + 103235723, + 7554631961, + 103235724, + 4695282844 + ], + "geometry": [ + { "lat": 40.8220277, "lon": -73.9868318 }, + { "lat": 40.8220277, "lon": -73.9865689 }, + { "lat": 40.8220328, "lon": -73.9863866 }, + { "lat": 40.8220612, "lon": -73.9862739 }, + { "lat": 40.8221049, "lon": -73.9861680 }, + { "lat": 40.8221546, "lon": -73.9860633 }, + { "lat": 40.8222287, "lon": -73.9859467 }, + { "lat": 40.8222948, "lon": -73.9858770 }, + { "lat": 40.8223139, "lon": -73.9858568 }, + { "lat": 40.8224232, "lon": -73.9857768 }, + { "lat": 40.8225210, "lon": -73.9857053 }, + { "lat": 40.8226514, "lon": -73.9856207 }, + { "lat": 40.8227447, "lon": -73.9855639 }, + { "lat": 40.8227970, "lon": -73.9855309 }, + { "lat": 40.8230142, "lon": -73.9853874 }, + { "lat": 40.8232373, "lon": -73.9851931 }, + { "lat": 40.8232821, "lon": -73.9851541 }, + { "lat": 40.8234932, "lon": -73.9849824 }, + { "lat": 40.8238555, "lon": -73.9846780 }, + { "lat": 40.8240331, "lon": -73.9845300 }, + { "lat": 40.8242445, "lon": -73.9843540 }, + { "lat": 40.8242749, "lon": -73.9843275 }, + { "lat": 40.8244274, "lon": -73.9841945 }, + { "lat": 40.8244943, "lon": -73.9841409 }, + { "lat": 40.8246283, "lon": -73.9840322 }, + { "lat": 40.8246815, "lon": -73.9839797 }, + { "lat": 40.8247044, "lon": -73.9839571 }, + { "lat": 40.8247612, "lon": -73.9838861 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "highway": "secondary", + "name": "Palisade Avenue", + "ref": "CR 27", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 11580070, + "bounds": { + "minlat": 40.8630689, + "minlon": -73.9929320, + "maxlat": 40.8635070, + "maxlon": -73.9921118 + }, + "nodes": [ + 103235801, + 8076425406, + 103235803, + 10261740697 + ], + "geometry": [ + { "lat": 40.8635070, "lon": -73.9929320 }, + { "lat": 40.8634562, "lon": -73.9928369 }, + { "lat": 40.8631080, "lon": -73.9921850 }, + { "lat": 40.8630689, "lon": -73.9921118 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11580098, + "bounds": { + "minlat": 40.8568903, + "minlon": -73.9753459, + "maxlat": 40.8569808, + "maxlon": -73.9744460 + }, + "nodes": [ + 299178371, + 103236055, + 103236054, + 103236053, + 103131998 + ], + "geometry": [ + { "lat": 40.8569808, "lon": -73.9744460 }, + { "lat": 40.8569724, "lon": -73.9747308 }, + { "lat": 40.8569678, "lon": -73.9749159 }, + { "lat": 40.8569419, "lon": -73.9751284 }, + { "lat": 40.8568903, "lon": -73.9753459 } + ], + "tags": { + "highway": "secondary", + "name": "Country Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Country", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11580099, + "bounds": { + "minlat": 40.8748770, + "minlon": -73.9825690, + "maxlat": 40.8753780, + "maxlon": -73.9819944 + }, + "nodes": [ + 103161333, + 103236056, + 103236057, + 103236058 + ], + "geometry": [ + { "lat": 40.8753780, "lon": -73.9819944 }, + { "lat": 40.8749080, "lon": -73.9824760 }, + { "lat": 40.8748870, "lon": -73.9825190 }, + { "lat": 40.8748770, "lon": -73.9825690 } + ], + "tags": { + "highway": "residential", + "name": "Dow Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dow", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11580123, + "bounds": { + "minlat": 40.8313730, + "minlon": -73.9964870, + "maxlat": 40.8327162, + "maxlon": -73.9945511 + }, + "nodes": [ + 103101263, + 103236413, + 103234499, + 103236414, + 103236415, + 103236418, + 103236424, + 103236425, + 103236426, + 103236427, + 103236428, + 6679844848 + ], + "geometry": [ + { "lat": 40.8314600, "lon": -73.9964870 }, + { "lat": 40.8313760, "lon": -73.9962340 }, + { "lat": 40.8313730, "lon": -73.9962030 }, + { "lat": 40.8313780, "lon": -73.9961520 }, + { "lat": 40.8316200, "lon": -73.9955210 }, + { "lat": 40.8316700, "lon": -73.9954290 }, + { "lat": 40.8317380, "lon": -73.9953400 }, + { "lat": 40.8318170, "lon": -73.9952680 }, + { "lat": 40.8320460, "lon": -73.9951310 }, + { "lat": 40.8321950, "lon": -73.9950230 }, + { "lat": 40.8323100, "lon": -73.9949230 }, + { "lat": 40.8327162, "lon": -73.9945511 } + ], + "tags": { + "highway": "residential", + "name": "Center Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11580125, + "bounds": { + "minlat": 40.8511080, + "minlon": -73.9782090, + "maxlat": 40.8519950, + "maxlon": -73.9766590 + }, + "nodes": [ + 103236431, + 103208558 + ], + "geometry": [ + { "lat": 40.8511080, "lon": -73.9766590 }, + { "lat": 40.8519950, "lon": -73.9782090 } + ], + "tags": { + "highway": "residential", + "name": "Center Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11580126, + "bounds": { + "minlat": 40.8710520, + "minlon": -73.9590320, + "maxlat": 40.8738860, + "maxlon": -73.9560760 + }, + "nodes": [ + 103213795, + 103236434, + 103236435, + 10059739057, + 103236436, + 103236437, + 103236438, + 103236439, + 103236440, + 103236441, + 103131024 + ], + "geometry": [ + { "lat": 40.8710520, "lon": -73.9590320 }, + { "lat": 40.8731447, "lon": -73.9573298 }, + { "lat": 40.8732104, "lon": -73.9572725 }, + { "lat": 40.8732879, "lon": -73.9572136 }, + { "lat": 40.8736128, "lon": -73.9569949 }, + { "lat": 40.8736731, "lon": -73.9569380 }, + { "lat": 40.8737130, "lon": -73.9568830 }, + { "lat": 40.8737492, "lon": -73.9568049 }, + { "lat": 40.8737739, "lon": -73.9566922 }, + { "lat": 40.8738472, "lon": -73.9561988 }, + { "lat": 40.8738860, "lon": -73.9560760 } + ], + "tags": { + "highway": "residential", + "name": "Center Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11580128, + "bounds": { + "minlat": 40.8691090, + "minlon": -73.9606916, + "maxlat": 40.8710049, + "maxlon": -73.9589502 + }, + "nodes": [ + 103234561, + 9286084060, + 9286084050, + 9286084067, + 103213793 + ], + "geometry": [ + { "lat": 40.8691090, "lon": -73.9606916 }, + { "lat": 40.8692679, "lon": -73.9605824 }, + { "lat": 40.8694156, "lon": -73.9604809 }, + { "lat": 40.8695932, "lon": -73.9603342 }, + { "lat": 40.8710049, "lon": -73.9589502 } + ], + "tags": { + "highway": "residential", + "name": "Center Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11580142, + "bounds": { + "minlat": 40.8424189, + "minlon": -73.9724693, + "maxlat": 40.8425104, + "maxlon": -73.9720703 + }, + "nodes": [ + 5108623146, + 103236526 + ], + "geometry": [ + { "lat": 40.8425104, "lon": -73.9724693 }, + { "lat": 40.8424189, "lon": -73.9720703 } + ], + "tags": { + "highway": "service", + "name": "Diana Walk", + "note": "FIXME", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Diana", + "tiger:name_type": "Walk", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11580161, + "bounds": { + "minlat": 40.8158113, + "minlon": -73.9932620, + "maxlat": 40.8167316, + "maxlon": -73.9924454 + }, + "nodes": [ + 103236634, + 7616856508, + 103207127 + ], + "geometry": [ + { "lat": 40.8158113, "lon": -73.9932620 }, + { "lat": 40.8164385, "lon": -73.9927055 }, + { "lat": 40.8167316, "lon": -73.9924454 } + ], + "tags": { + "highway": "residential", + "name": "2nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11580164, + "bounds": { + "minlat": 40.8643940, + "minlon": -73.9650080, + "maxlat": 40.8674341, + "maxlon": -73.9619781 + }, + "nodes": [ + 103236641, + 7367594944, + 5108190559, + 7135019472, + 103236642, + 103236643, + 103236644, + 9284780343, + 9284780395, + 9284780389, + 11260263839, + 11260263849, + 11260254401, + 9284780344, + 103236646 + ], + "geometry": [ + { "lat": 40.8643940, "lon": -73.9650080 }, + { "lat": 40.8648576, "lon": -73.9645361 }, + { "lat": 40.8650884, "lon": -73.9643011 }, + { "lat": 40.8652603, "lon": -73.9641261 }, + { "lat": 40.8653950, "lon": -73.9639890 }, + { "lat": 40.8659530, "lon": -73.9634200 }, + { "lat": 40.8663289, "lon": -73.9630507 }, + { "lat": 40.8664271, "lon": -73.9629519 }, + { "lat": 40.8665341, "lon": -73.9628484 }, + { "lat": 40.8666037, "lon": -73.9627826 }, + { "lat": 40.8666927, "lon": -73.9626964 }, + { "lat": 40.8668972, "lon": -73.9624983 }, + { "lat": 40.8670943, "lon": -73.9623073 }, + { "lat": 40.8673787, "lon": -73.9620317 }, + { "lat": 40.8674341, "lon": -73.9619781 } + ], + "tags": { + "highway": "residential", + "name": "2nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11580165, + "bounds": { + "minlat": 40.8448400, + "minlon": -73.9986480, + "maxlat": 40.8487870, + "maxlon": -73.9947140 + }, + "nodes": [ + 103236650, + 5970474289, + 103236649, + 5898172075, + 103236648, + 103236647 + ], + "geometry": [ + { "lat": 40.8487870, "lon": -73.9947140 }, + { "lat": 40.8477077, "lon": -73.9957810 }, + { "lat": 40.8474004, "lon": -73.9960847 }, + { "lat": 40.8466635, "lon": -73.9968263 }, + { "lat": 40.8462254, "lon": -73.9972761 }, + { "lat": 40.8448400, "lon": -73.9986480 } + ], + "tags": { + "highway": "residential", + "name": "2nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11580191, + "bounds": { + "minlat": 40.8787441, + "minlon": -74.0072890, + "maxlat": 40.8798309, + "maxlon": -74.0066987 + }, + "nodes": [ + 103216550, + 103236739 + ], + "geometry": [ + { "lat": 40.8787441, "lon": -74.0072890 }, + { "lat": 40.8798309, "lon": -74.0066987 } + ], + "tags": { + "highway": "residential", + "name": "Howard Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Howard", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11580194, + "bounds": { + "minlat": 40.8806162, + "minlon": -74.0062555, + "maxlat": 40.8834805, + "maxlon": -74.0046353 + }, + "nodes": [ + 103236750, + 4048826090, + 103236751, + 4053447051, + 13527742915, + 4048827037, + 103199467 + ], + "geometry": [ + { "lat": 40.8806162, "lon": -74.0062555 }, + { "lat": 40.8813870, "lon": -74.0058081 }, + { "lat": 40.8814210, "lon": -74.0057890 }, + { "lat": 40.8815297, "lon": -74.0057280 }, + { "lat": 40.8833730, "lon": -74.0046933 }, + { "lat": 40.8834048, "lon": -74.0046754 }, + { "lat": 40.8834805, "lon": -74.0046353 } + ], + "tags": { + "highway": "residential", + "name": "Howard Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Howard", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11580244, + "bounds": { + "minlat": 40.8254294, + "minlon": -73.9808169, + "maxlat": 40.8268554, + "maxlon": -73.9783459 + }, + "nodes": [ + 478282225, + 1854444525, + 7533716707, + 103237098, + 1854444514, + 7581229337 + ], + "geometry": [ + { "lat": 40.8254294, "lon": -73.9783459 }, + { "lat": 40.8262125, "lon": -73.9797390 }, + { "lat": 40.8265139, "lon": -73.9802691 }, + { "lat": 40.8265940, "lon": -73.9804100 }, + { "lat": 40.8268061, "lon": -73.9807610 }, + { "lat": 40.8268554, "lon": -73.9808169 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Lafayette Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lafayette", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11580259, + "bounds": { + "minlat": 40.8795765, + "minlon": -73.9564997, + "maxlat": 40.8823399, + "maxlon": -73.9516114 + }, + "nodes": [ + 103215744, + 103187018, + 103179946 + ], + "geometry": [ + { "lat": 40.8795765, "lon": -73.9516114 }, + { "lat": 40.8807270, "lon": -73.9536740 }, + { "lat": 40.8823399, "lon": -73.9564997 } + ], + "tags": { + "highway": "residential", + "name": "Dillingham Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dillingham", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11580299, + "bounds": { + "minlat": 40.8270855, + "minlon": -73.9780624, + "maxlat": 40.8285567, + "maxlon": -73.9779122 + }, + "nodes": [ + 103237387, + 103237388, + 6964853604, + 6964853603, + 103237389, + 103237390, + 6964853602, + 103237391, + 103237392 + ], + "geometry": [ + { "lat": 40.8270855, "lon": -73.9779122 }, + { "lat": 40.8273922, "lon": -73.9779294 }, + { "lat": 40.8275522, "lon": -73.9779470 }, + { "lat": 40.8278532, "lon": -73.9780326 }, + { "lat": 40.8280007, "lon": -73.9780459 }, + { "lat": 40.8281521, "lon": -73.9780110 }, + { "lat": 40.8282602, "lon": -73.9779799 }, + { "lat": 40.8283530, "lon": -73.9779787 }, + { "lat": 40.8285567, "lon": -73.9780624 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Palisadium Drive", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisadium", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11580308, + "bounds": { + "minlat": 40.8292500, + "minlon": -73.9777400, + "maxlat": 40.8293463, + "maxlon": -73.9776492 + }, + "nodes": [ + 103237434, + 103206149 + ], + "geometry": [ + { "lat": 40.8292500, "lon": -73.9777400 }, + { "lat": 40.8293463, "lon": -73.9776492 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lit": "yes", + "name": "King Court", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kings", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11580330, + "bounds": { + "minlat": 40.8286472, + "minlon": -74.0103574, + "maxlat": 40.8296461, + "maxlon": -74.0091485 + }, + "nodes": [ + 103224033, + 12016315293, + 12016315292, + 12016315291, + 12016315290, + 103237563, + 12016315289, + 103237564, + 103237565, + 103237566, + 12016315288, + 12016315287, + 12016315286, + 103237567, + 12016315285, + 12016315284, + 12016315283, + 103237568, + 12016315279, + 12016315280, + 12016315281, + 12016315282, + 103237569 + ], + "geometry": [ + { "lat": 40.8287627, "lon": -74.0103574 }, + { "lat": 40.8287582, "lon": -74.0103240 }, + { "lat": 40.8287532, "lon": -74.0102876 }, + { "lat": 40.8287456, "lon": -74.0102553 }, + { "lat": 40.8287372, "lon": -74.0102217 }, + { "lat": 40.8286594, "lon": -74.0100025 }, + { "lat": 40.8286503, "lon": -74.0099638 }, + { "lat": 40.8286472, "lon": -74.0099269 }, + { "lat": 40.8286481, "lon": -74.0098903 }, + { "lat": 40.8286535, "lon": -74.0098569 }, + { "lat": 40.8286628, "lon": -74.0098275 }, + { "lat": 40.8286772, "lon": -74.0098042 }, + { "lat": 40.8286989, "lon": -74.0097816 }, + { "lat": 40.8287261, "lon": -74.0097617 }, + { "lat": 40.8289573, "lon": -74.0095640 }, + { "lat": 40.8290144, "lon": -74.0095201 }, + { "lat": 40.8290694, "lon": -74.0094788 }, + { "lat": 40.8291166, "lon": -74.0094452 }, + { "lat": 40.8294951, "lon": -74.0091806 }, + { "lat": 40.8295302, "lon": -74.0091636 }, + { "lat": 40.8295617, "lon": -74.0091524 }, + { "lat": 40.8296003, "lon": -74.0091485 }, + { "lat": 40.8296461, "lon": -74.0091487 } + ], + "tags": { + "highway": "residential", + "name": "Mayer Court", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mayer", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11580352, + "bounds": { + "minlat": 40.8195687, + "minlon": -73.9916421, + "maxlat": 40.8204993, + "maxlon": -73.9898702 + }, + "nodes": [ + 103133910, + 103205336, + 7607890797, + 13524700367, + 103237758 + ], + "geometry": [ + { "lat": 40.8195687, "lon": -73.9898702 }, + { "lat": 40.8200508, "lon": -73.9907795 }, + { "lat": 40.8202805, "lon": -73.9912213 }, + { "lat": 40.8204496, "lon": -73.9915465 }, + { "lat": 40.8204993, "lon": -73.9916421 } + ], + "tags": { + "highway": "residential", + "name": "Fulton Terrace", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fulton", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11580371, + "bounds": { + "minlat": 40.8633078, + "minlon": -73.9805497, + "maxlat": 40.8637680, + "maxlon": -73.9795210 + }, + "nodes": [ + 103237959, + 103237962, + 103237963, + 103237964, + 103174329 + ], + "geometry": [ + { "lat": 40.8633078, "lon": -73.9805497 }, + { "lat": 40.8634970, "lon": -73.9801950 }, + { "lat": 40.8636040, "lon": -73.9799790 }, + { "lat": 40.8636560, "lon": -73.9798570 }, + { "lat": 40.8637680, "lon": -73.9795210 } + ], + "tags": { + "highway": "residential", + "name": "Fairway Drive", + "noexit": "yes", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairway", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11580387, + "bounds": { + "minlat": 40.8256355, + "minlon": -73.9749652, + "maxlat": 40.8262990, + "maxlon": -73.9745460 + }, + "nodes": [ + 103238135, + 103238136 + ], + "geometry": [ + { "lat": 40.8256355, "lon": -73.9749652 }, + { "lat": 40.8262990, "lon": -73.9745460 } + ], + "tags": { + "highway": "residential", + "name": "McCurry Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "McCurry", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11580399, + "bounds": { + "minlat": 40.8693887, + "minlon": -74.0143640, + "maxlat": 40.8695270, + "maxlon": -74.0135723 + }, + "nodes": [ + 103214391, + 103238203 + ], + "geometry": [ + { "lat": 40.8695270, "lon": -74.0143640 }, + { "lat": 40.8693887, "lon": -74.0135723 } + ], + "tags": { + "highway": "residential", + "name": "East Sherwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sherwood", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11580440, + "bounds": { + "minlat": 40.8511755, + "minlon": -74.0021661, + "maxlat": 40.8517754, + "maxlon": -74.0010025 + }, + "nodes": [ + 103238513, + 103133880 + ], + "geometry": [ + { "lat": 40.8511755, "lon": -74.0010025 }, + { "lat": 40.8517754, "lon": -74.0021661 } + ], + "tags": { + "highway": "residential", + "name": "Union Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Union", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11580445, + "bounds": { + "minlat": 40.8247921, + "minlon": -73.9816970, + "maxlat": 40.8264795, + "maxlon": -73.9787506 + }, + "nodes": [ + 103238618, + 103235735 + ], + "geometry": [ + { "lat": 40.8247921, "lon": -73.9787506 }, + { "lat": 40.8264795, "lon": -73.9816970 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Knox Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Knox", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11580451, + "bounds": { + "minlat": 40.8634710, + "minlon": -73.9866200, + "maxlat": 40.8635720, + "maxlon": -73.9864277 + }, + "nodes": [ + 103224119, + 8075088161, + 6111818465 + ], + "geometry": [ + { "lat": 40.8635720, "lon": -73.9866200 }, + { "lat": 40.8634943, "lon": -73.9864721 }, + { "lat": 40.8634710, "lon": -73.9864277 } + ], + "tags": { + "highway": "residential", + "name": "Beechwood Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Beechwood", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11580469, + "bounds": { + "minlat": 40.8628977, + "minlon": -73.9597786, + "maxlat": 40.8659170, + "maxlon": -73.9570403 + }, + "nodes": [ + 103238939, + 103238940, + 103238941, + 103238942, + 103238943, + 103238944, + 103238945, + 103157823 + ], + "geometry": [ + { "lat": 40.8628977, "lon": -73.9597786 }, + { "lat": 40.8635560, "lon": -73.9590550 }, + { "lat": 40.8639350, "lon": -73.9586630 }, + { "lat": 40.8640120, "lon": -73.9586030 }, + { "lat": 40.8648150, "lon": -73.9579770 }, + { "lat": 40.8652290, "lon": -73.9576480 }, + { "lat": 40.8655990, "lon": -73.9573430 }, + { "lat": 40.8659170, "lon": -73.9570403 } + ], + "tags": { + "highway": "residential", + "name": "7th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "7th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11580471, + "bounds": { + "minlat": 40.8480944, + "minlon": -73.9872044, + "maxlat": 40.8495524, + "maxlon": -73.9857714 + }, + "nodes": [ + 12692250260, + 103238962 + ], + "geometry": [ + { "lat": 40.8495524, "lon": -73.9857714 }, + { "lat": 40.8480944, "lon": -73.9872044 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "7th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "7th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11580478, + "bounds": { + "minlat": 40.8165296, + "minlon": -73.9992365, + "maxlat": 40.8168673, + "maxlon": -73.9989241 + }, + "nodes": [ + 103239002, + 103204321 + ], + "geometry": [ + { "lat": 40.8165296, "lon": -73.9992365 }, + { "lat": 40.8168673, "lon": -73.9989241 } + ], + "tags": { + "highway": "residential", + "name": "7th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "7th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11580487, + "bounds": { + "minlat": 40.8530162, + "minlon": -73.9842778, + "maxlat": 40.8533361, + "maxlon": -73.9841608 + }, + "nodes": [ + 5362354430, + 12692250292, + 2395509026 + ], + "geometry": [ + { "lat": 40.8530162, "lon": -73.9842778 }, + { "lat": 40.8532648, "lon": -73.9841957 }, + { "lat": 40.8533361, "lon": -73.9841608 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "7th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "7th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11580514, + "bounds": { + "minlat": 40.8315923, + "minlon": -73.9892338, + "maxlat": 40.8331897, + "maxlon": -73.9883682 + }, + "nodes": [ + 103187731, + 103239274, + 103239271, + 103239269, + 103237106 + ], + "geometry": [ + { "lat": 40.8331897, "lon": -73.9883682 }, + { "lat": 40.8329620, "lon": -73.9885550 }, + { "lat": 40.8328260, "lon": -73.9886460 }, + { "lat": 40.8326560, "lon": -73.9887350 }, + { "lat": 40.8315923, "lon": -73.9892338 } + ], + "tags": { + "highway": "residential", + "name": "Jefferson Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jefferson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11580516, + "bounds": { + "minlat": 40.8296359, + "minlon": -73.9902681, + "maxlat": 40.8314680, + "maxlon": -73.9890364 + }, + "nodes": [ + 103237105, + 103239277 + ], + "geometry": [ + { "lat": 40.8314680, "lon": -73.9890364 }, + { "lat": 40.8296359, "lon": -73.9902681 } + ], + "tags": { + "highway": "residential", + "name": "Jefferson Avenue", + "oneway": "yes", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jefferson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11580528, + "bounds": { + "minlat": 40.8661211, + "minlon": -74.0200063, + "maxlat": 40.8719120, + "maxlon": -74.0181100 + }, + "nodes": [ + 103239391, + 6612000203, + 103239389, + 103239386, + 103239384, + 103184876, + 103146431, + 103223891, + 103226761, + 103226762, + 103239382 + ], + "geometry": [ + { "lat": 40.8719120, "lon": -74.0181100 }, + { "lat": 40.8713552, "lon": -74.0182841 }, + { "lat": 40.8707610, "lon": -74.0184700 }, + { "lat": 40.8700850, "lon": -74.0186810 }, + { "lat": 40.8694070, "lon": -74.0189000 }, + { "lat": 40.8687060, "lon": -74.0191260 }, + { "lat": 40.8680350, "lon": -74.0193430 }, + { "lat": 40.8673290, "lon": -74.0195720 }, + { "lat": 40.8666700, "lon": -74.0197850 }, + { "lat": 40.8666349, "lon": -74.0198085 }, + { "lat": 40.8661211, "lon": -74.0200063 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660:07666", + "tiger:zip_right": "07660:07666" + } +}, +{ + "type": "way", + "id": 11580538, + "bounds": { + "minlat": 40.8562707, + "minlon": -73.9954973, + "maxlat": 40.8603025, + "maxlon": -73.9886248 + }, + "nodes": [ + 103239471, + 10261746010, + 8076425411, + 103239472, + 6126762433, + 6129472241, + 10252456980, + 10252456988, + 8065807899, + 8065735255, + 8065807896, + 8065735247, + 8075114226, + 103224106, + 8075114227, + 103093222 + ], + "geometry": [ + { "lat": 40.8603025, "lon": -73.9954973 }, + { "lat": 40.8602535, "lon": -73.9954141 }, + { "lat": 40.8602385, "lon": -73.9953887 }, + { "lat": 40.8592415, "lon": -73.9936963 }, + { "lat": 40.8592173, "lon": -73.9936553 }, + { "lat": 40.8589522, "lon": -73.9932052 }, + { "lat": 40.8588820, "lon": -73.9930871 }, + { "lat": 40.8587128, "lon": -73.9928049 }, + { "lat": 40.8586732, "lon": -73.9927324 }, + { "lat": 40.8586171, "lon": -73.9926417 }, + { "lat": 40.8585784, "lon": -73.9925762 }, + { "lat": 40.8585056, "lon": -73.9924524 }, + { "lat": 40.8576590, "lon": -73.9910098 }, + { "lat": 40.8575965, "lon": -73.9909033 }, + { "lat": 40.8575267, "lon": -73.9907848 }, + { "lat": 40.8562707, "lon": -73.9886248 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11580544, + "bounds": { + "minlat": 40.8178405, + "minlon": -73.9903251, + "maxlat": 40.8181395, + "maxlon": -73.9897372 + }, + "nodes": [ + 103112587, + 7304780629 + ], + "geometry": [ + { "lat": 40.8178405, "lon": -73.9897372 }, + { "lat": 40.8181395, "lon": -73.9903251 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11580547, + "bounds": { + "minlat": 40.8560490, + "minlon": -73.9886248, + "maxlat": 40.8588450, + "maxlon": -73.9837600 + }, + "nodes": [ + 103093222, + 8078680901, + 103239542, + 103239544, + 103239545, + 103239546, + 103204750, + 103239547, + 103239549, + 103135867, + 103239551, + 103239552, + 103239554, + 103239556, + 103239558, + 103239560, + 103126292 + ], + "geometry": [ + { "lat": 40.8562707, "lon": -73.9886248 }, + { "lat": 40.8561942, "lon": -73.9884661 }, + { "lat": 40.8561220, "lon": -73.9882880 }, + { "lat": 40.8560800, "lon": -73.9880640 }, + { "lat": 40.8560610, "lon": -73.9879130 }, + { "lat": 40.8560490, "lon": -73.9877220 }, + { "lat": 40.8560516, "lon": -73.9875732 }, + { "lat": 40.8560590, "lon": -73.9874090 }, + { "lat": 40.8560890, "lon": -73.9871990 }, + { "lat": 40.8562373, "lon": -73.9866831 }, + { "lat": 40.8563040, "lon": -73.9865114 }, + { "lat": 40.8563980, "lon": -73.9863330 }, + { "lat": 40.8565070, "lon": -73.9861700 }, + { "lat": 40.8566260, "lon": -73.9860200 }, + { "lat": 40.8567150, "lon": -73.9859240 }, + { "lat": 40.8577752, "lon": -73.9848573 }, + { "lat": 40.8588450, "lon": -73.9837600 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11580562, + "bounds": { + "minlat": 40.8176092, + "minlon": -73.9897372, + "maxlat": 40.8178405, + "maxlon": -73.9888520 + }, + "nodes": [ + 103112587, + 7604260413, + 7613378270, + 103207055 + ], + "geometry": [ + { "lat": 40.8178405, "lon": -73.9897372 }, + { "lat": 40.8177274, "lon": -73.9893045 }, + { "lat": 40.8177224, "lon": -73.9892852 }, + { "lat": 40.8176092, "lon": -73.9888520 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11580570, + "bounds": { + "minlat": 40.8781300, + "minlon": -74.0216520, + "maxlat": 40.8866440, + "maxlon": -74.0171227 + }, + "nodes": [ + 103229765, + 103128450, + 103164179, + 103239831, + 12542600268, + 103239833, + 103125790, + 103225945, + 103239835, + 103227668, + 103111288, + 103239837, + 103230853 + ], + "geometry": [ + { "lat": 40.8781300, "lon": -74.0216520 }, + { "lat": 40.8785220, "lon": -74.0214350 }, + { "lat": 40.8791680, "lon": -74.0210780 }, + { "lat": 40.8797970, "lon": -74.0207300 }, + { "lat": 40.8805263, "lon": -74.0203680 }, + { "lat": 40.8812167, "lon": -74.0200140 }, + { "lat": 40.8819079, "lon": -74.0196550 }, + { "lat": 40.8825500, "lon": -74.0192690 }, + { "lat": 40.8832520, "lon": -74.0188970 }, + { "lat": 40.8840990, "lon": -74.0184530 }, + { "lat": 40.8849660, "lon": -74.0179990 }, + { "lat": 40.8857754, "lon": -74.0175605 }, + { "lat": 40.8866440, "lon": -74.0171227 } + ], + "tags": { + "highway": "residential", + "name": "Palmer Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palmer", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11580611, + "bounds": { + "minlat": 40.8791992, + "minlon": -74.0002037, + "maxlat": 40.8806839, + "maxlon": -73.9994067 + }, + "nodes": [ + 103240137, + 103240138, + 6786804524, + 103240139, + 6648422784, + 6648422785 + ], + "geometry": [ + { "lat": 40.8791992, "lon": -74.0002037 }, + { "lat": 40.8795740, "lon": -73.9999720 }, + { "lat": 40.8804988, "lon": -73.9994742 }, + { "lat": 40.8805165, "lon": -73.9994647 }, + { "lat": 40.8805859, "lon": -73.9994694 }, + { "lat": 40.8806839, "lon": -73.9994067 } + ], + "tags": { + "highway": "residential", + "name": "Delavan Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Delavan", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11580619, + "bounds": { + "minlat": 40.8526120, + "minlon": -73.9923265, + "maxlat": 40.8534327, + "maxlon": -73.9908680 + }, + "nodes": [ + 10265496293, + 103240185, + 5724810707, + 440215449 + ], + "geometry": [ + { "lat": 40.8534327, "lon": -73.9923265 }, + { "lat": 40.8530370, "lon": -73.9916240 }, + { "lat": 40.8530226, "lon": -73.9915985 }, + { "lat": 40.8526120, "lon": -73.9908680 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "name_1": "East Oakdene Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_base_1": "Oakdene", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11580620, + "bounds": { + "minlat": 40.8711433, + "minlon": -74.0040719, + "maxlat": 40.8720397, + "maxlon": -74.0023200 + }, + "nodes": [ + 103240189, + 9871150064, + 10941311600, + 9871150056, + 10941311597, + 10941311604, + 11013900458, + 11013900467, + 103240191 + ], + "geometry": [ + { "lat": 40.8720397, "lon": -74.0040719 }, + { "lat": 40.8717755, "lon": -74.0035526 }, + { "lat": 40.8717528, "lon": -74.0035100 }, + { "lat": 40.8717308, "lon": -74.0034737 }, + { "lat": 40.8717060, "lon": -74.0034343 }, + { "lat": 40.8716839, "lon": -74.0033957 }, + { "lat": 40.8715206, "lon": -74.0030707 }, + { "lat": 40.8713520, "lon": -74.0027352 }, + { "lat": 40.8711433, "lon": -74.0023200 } + ], + "tags": { + "highway": "residential", + "name": "East Oakdene Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11580621, + "bounds": { + "minlat": 40.8745616, + "minlon": -74.0121840, + "maxlat": 40.8748732, + "maxlon": -74.0113898 + }, + "nodes": [ + 559864643, + 2003014047, + 475154799, + 103150117 + ], + "geometry": [ + { "lat": 40.8745616, "lon": -74.0113898 }, + { "lat": 40.8745750, "lon": -74.0114248 }, + { "lat": 40.8747105, "lon": -74.0117698 }, + { "lat": 40.8748732, "lon": -74.0121840 } + ], + "tags": { + "highway": "residential", + "name": "Puffin Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11580710, + "bounds": { + "minlat": 40.8369893, + "minlon": -73.9970432, + "maxlat": 40.8384289, + "maxlon": -73.9945326 + }, + "nodes": [ + 103162507, + 13524430686, + 13524430682, + 103139598 + ], + "geometry": [ + { "lat": 40.8369893, "lon": -73.9945326 }, + { "lat": 40.8383787, "lon": -73.9969557 }, + { "lat": 40.8383897, "lon": -73.9969749 }, + { "lat": 40.8384289, "lon": -73.9970432 } + ], + "tags": { + "highway": "residential", + "name": "Maple Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11580747, + "bounds": { + "minlat": 40.8401570, + "minlon": -73.9788010, + "maxlat": 40.8417500, + "maxlon": -73.9760360 + }, + "nodes": [ + 103235765, + 7292367060, + 103241411, + 103241413, + 103241415, + 7292367027, + 103241417 + ], + "geometry": [ + { "lat": 40.8401570, "lon": -73.9760360 }, + { "lat": 40.8402126, "lon": -73.9761324 }, + { "lat": 40.8405940, "lon": -73.9767930 }, + { "lat": 40.8409980, "lon": -73.9774960 }, + { "lat": 40.8414270, "lon": -73.9782390 }, + { "lat": 40.8417370, "lon": -73.9787783 }, + { "lat": 40.8417500, "lon": -73.9788010 } + ], + "tags": { + "highway": "residential", + "name": "Bellemeade Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bellemeade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11580807, + "bounds": { + "minlat": 40.8763233, + "minlon": -73.9868417, + "maxlat": 40.8775239, + "maxlon": -73.9860476 + }, + "nodes": [ + 103242073, + 12022105717, + 103161322 + ], + "geometry": [ + { "lat": 40.8763233, "lon": -73.9868417 }, + { "lat": 40.8764003, "lon": -73.9867923 }, + { "lat": 40.8775239, "lon": -73.9860476 } + ], + "tags": { + "highway": "residential", + "name": "Nordhoff Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Nordhoff", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11580820, + "bounds": { + "minlat": 40.8322838, + "minlon": -73.9907457, + "maxlat": 40.8339284, + "maxlon": -73.9895174 + }, + "nodes": [ + 103187741, + 103242165, + 103242164, + 103242163, + 103237112 + ], + "geometry": [ + { "lat": 40.8339284, "lon": -73.9895174 }, + { "lat": 40.8334230, "lon": -73.9899410 }, + { "lat": 40.8330250, "lon": -73.9902440 }, + { "lat": 40.8323397, "lon": -73.9907043 }, + { "lat": 40.8322838, "lon": -73.9907457 } + ], + "tags": { + "highway": "residential", + "name": "Kingsland Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kingsland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11580863, + "bounds": { + "minlat": 40.8768635, + "minlon": -74.0014660, + "maxlat": 40.8778900, + "maxlon": -74.0008360 + }, + "nodes": [ + 103221769, + 6536062703, + 103242498, + 103242496, + 6536062545, + 6536062746, + 103216559 + ], + "geometry": [ + { "lat": 40.8778900, "lon": -74.0008360 }, + { "lat": 40.8778782, "lon": -74.0008567 }, + { "lat": 40.8778650, "lon": -74.0008800 }, + { "lat": 40.8778310, "lon": -74.0009160 }, + { "lat": 40.8775522, "lon": -74.0010745 }, + { "lat": 40.8775247, "lon": -74.0010901 }, + { "lat": 40.8768635, "lon": -74.0014660 } + ], + "tags": { + "highway": "residential", + "name": "Hawthorne Avenue", + "oneway": "yes", + "surface": "paved", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hawthorne", + "tiger:name_type": "Ave", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11580868, + "bounds": { + "minlat": 40.8598320, + "minlon": -73.9795868, + "maxlat": 40.8602298, + "maxlon": -73.9779410 + }, + "nodes": [ + 103242539, + 6902502703, + 518905592, + 103242541 + ], + "geometry": [ + { "lat": 40.8598320, "lon": -73.9779410 }, + { "lat": 40.8600722, "lon": -73.9791003 }, + { "lat": 40.8601311, "lon": -73.9792821 }, + { "lat": 40.8602298, "lon": -73.9795868 } + ], + "tags": { + "highway": "residential", + "name": "Church Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Church", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11580900, + "bounds": { + "minlat": 40.8410553, + "minlon": -73.9949443, + "maxlat": 40.8419652, + "maxlon": -73.9944164 + }, + "nodes": [ + 103134575, + 103242881, + 103242883, + 103242885, + 103242886, + 766720050 + ], + "geometry": [ + { "lat": 40.8410553, "lon": -73.9949443 }, + { "lat": 40.8413060, "lon": -73.9948720 }, + { "lat": 40.8414260, "lon": -73.9948360 }, + { "lat": 40.8415350, "lon": -73.9947870 }, + { "lat": 40.8416570, "lon": -73.9947110 }, + { "lat": 40.8419652, "lon": -73.9944164 } + ], + "tags": { + "highway": "residential", + "name": "Temple Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Temple", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11580909, + "bounds": { + "minlat": 40.8258735, + "minlon": -74.0096054, + "maxlat": 40.8260926, + "maxlon": -74.0087288 + }, + "nodes": [ + 103224022, + 13527754330, + 103242937 + ], + "geometry": [ + { "lat": 40.8258735, "lon": -74.0096054 }, + { "lat": 40.8258895, "lon": -74.0095412 }, + { "lat": 40.8260926, "lon": -74.0087288 } + ], + "tags": { + "highway": "residential", + "name": "Van Court Land Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Court Land", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11580929, + "bounds": { + "minlat": 40.8625877, + "minlon": -73.9893460, + "maxlat": 40.8630010, + "maxlon": -73.9889919 + }, + "nodes": [ + 3001698951, + 10117799070, + 2776249317, + 103243123 + ], + "geometry": [ + { "lat": 40.8625877, "lon": -73.9893460 }, + { "lat": 40.8628384, "lon": -73.9891314 }, + { "lat": 40.8629698, "lon": -73.9890212 }, + { "lat": 40.8630010, "lon": -73.9889919 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "sidewalk": "right", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wood Park", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11580943, + "bounds": { + "minlat": 40.8479372, + "minlon": -73.9703327, + "maxlat": 40.8480928, + "maxlon": -73.9697745 + }, + "nodes": [ + 103235787, + 13523674093, + 10628137670, + 9554102346 + ], + "geometry": [ + { "lat": 40.8479372, "lon": -73.9697745 }, + { "lat": 40.8479621, "lon": -73.9698639 }, + { "lat": 40.8480787, "lon": -73.9702821 }, + { "lat": 40.8480928, "lon": -73.9703327 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Whiteman Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Whiteman", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11580945, + "bounds": { + "minlat": 40.8482206, + "minlon": -73.9763920, + "maxlat": 40.8514169, + "maxlon": -73.9706612 + }, + "nodes": [ + 103205043, + 5449315441, + 7111829399, + 103243248, + 8668190862, + 7431517032, + 7428323363, + 7428323462, + 7428323492, + 7428323364, + 103243250, + 103235584, + 103243252, + 7431517012, + 5108615741, + 5108614572, + 7447979241, + 7447979240, + 103174595, + 7442921695, + 103243254, + 7442921696, + 5108605284, + 103243256, + 7434604747, + 5108604566, + 7434604899, + 5449464505, + 103243257 + ], + "geometry": [ + { "lat": 40.8482206, "lon": -73.9706612 }, + { "lat": 40.8482843, "lon": -73.9707777 }, + { "lat": 40.8483695, "lon": -73.9709760 }, + { "lat": 40.8483820, "lon": -73.9710050 }, + { "lat": 40.8484310, "lon": -73.9711116 }, + { "lat": 40.8484668, "lon": -73.9711894 }, + { "lat": 40.8486418, "lon": -73.9715704 }, + { "lat": 40.8486857, "lon": -73.9716660 }, + { "lat": 40.8487270, "lon": -73.9717559 }, + { "lat": 40.8491134, "lon": -73.9725971 }, + { "lat": 40.8492820, "lon": -73.9729640 }, + { "lat": 40.8492990, "lon": -73.9729910 }, + { "lat": 40.8495067, "lon": -73.9733168 }, + { "lat": 40.8495519, "lon": -73.9733885 }, + { "lat": 40.8496278, "lon": -73.9735089 }, + { "lat": 40.8497139, "lon": -73.9736445 }, + { "lat": 40.8497234, "lon": -73.9736594 }, + { "lat": 40.8498980, "lon": -73.9739343 }, + { "lat": 40.8500870, "lon": -73.9742320 }, + { "lat": 40.8503187, "lon": -73.9745991 }, + { "lat": 40.8503785, "lon": -73.9746939 }, + { "lat": 40.8504994, "lon": -73.9748830 }, + { "lat": 40.8505669, "lon": -73.9749885 }, + { "lat": 40.8506519, "lon": -73.9751223 }, + { "lat": 40.8507347, "lon": -73.9752585 }, + { "lat": 40.8509653, "lon": -73.9756380 }, + { "lat": 40.8510200, "lon": -73.9757294 }, + { "lat": 40.8512358, "lon": -73.9760915 }, + { "lat": 40.8514169, "lon": -73.9763920 } + ], + "tags": { + "highway": "residential", + "name": "Whiteman Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Whiteman", + "tiger:name_type": "St", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11580984, + "bounds": { + "minlat": 40.8668120, + "minlon": -73.9819050, + "maxlat": 40.8677660, + "maxlon": -73.9803700 + }, + "nodes": [ + 103093277, + 10179717257, + 103243583, + 103243584, + 103243585, + 103243588, + 103243590, + 103243592, + 103243594, + 103135919 + ], + "geometry": [ + { "lat": 40.8668810, "lon": -73.9819050 }, + { "lat": 40.8668612, "lon": -73.9818116 }, + { "lat": 40.8668250, "lon": -73.9816610 }, + { "lat": 40.8668120, "lon": -73.9815660 }, + { "lat": 40.8668140, "lon": -73.9814610 }, + { "lat": 40.8668270, "lon": -73.9813840 }, + { "lat": 40.8668570, "lon": -73.9812870 }, + { "lat": 40.8668940, "lon": -73.9812140 }, + { "lat": 40.8669450, "lon": -73.9811450 }, + { "lat": 40.8677660, "lon": -73.9803700 } + ], + "tags": { + "highway": "residential", + "name": "Birch Lane", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Birch", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11580989, + "bounds": { + "minlat": 40.8256149, + "minlon": -73.9758220, + "maxlat": 40.8270440, + "maxlon": -73.9729984 + }, + "nodes": [ + 5362481481, + 5362481493, + 5362481492, + 5362481486, + 5362481494, + 5362481484, + 5362481487, + 103243624, + 103137132, + 6972088008, + 103238136, + 7478472958, + 103221831, + 103115595 + ], + "geometry": [ + { "lat": 40.8256149, "lon": -73.9729984 }, + { "lat": 40.8256436, "lon": -73.9730076 }, + { "lat": 40.8256694, "lon": -73.9730260 }, + { "lat": 40.8256865, "lon": -73.9730637 }, + { "lat": 40.8257116, "lon": -73.9731484 }, + { "lat": 40.8257446, "lon": -73.9732653 }, + { "lat": 40.8257915, "lon": -73.9734047 }, + { "lat": 40.8259487, "lon": -73.9738650 }, + { "lat": 40.8260002, "lon": -73.9740122 }, + { "lat": 40.8262055, "lon": -73.9743789 }, + { "lat": 40.8262990, "lon": -73.9745460 }, + { "lat": 40.8265157, "lon": -73.9749172 }, + { "lat": 40.8266190, "lon": -73.9750940 }, + { "lat": 40.8270440, "lon": -73.9758220 } + ], + "tags": { + "highway": "residential", + "name": "Hilliard Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hilliard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11581023, + "bounds": { + "minlat": 40.8801050, + "minlon": -74.0016430, + "maxlat": 40.8821542, + "maxlon": -74.0004947 + }, + "nodes": [ + 103243874, + 103199473 + ], + "geometry": [ + { "lat": 40.8801050, "lon": -74.0016430 }, + { "lat": 40.8821542, "lon": -74.0004947 } + ], + "tags": { + "highway": "residential", + "name": "Redmond Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Redmond", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11581027, + "bounds": { + "minlat": 40.8236002, + "minlon": -74.0124317, + "maxlat": 40.8339998, + "maxlon": -74.0115192 + }, + "nodes": [ + 695054969, + 103198905, + 103243910, + 2707984770, + 103243912, + 103243914, + 2707984760, + 2707984759, + 7507263585, + 103243916, + 103243918, + 5748432833, + 103243920, + 2707984752, + 103123536, + 103243922, + 5758184506, + 5758184501, + 103243924, + 5758186221, + 5758184507, + 5758184517, + 103243926 + ], + "geometry": [ + { "lat": 40.8339998, "lon": -74.0115192 }, + { "lat": 40.8332990, "lon": -74.0116620 }, + { "lat": 40.8330760, "lon": -74.0116980 }, + { "lat": 40.8329832, "lon": -74.0117088 }, + { "lat": 40.8327590, "lon": -74.0117350 }, + { "lat": 40.8314850, "lon": -74.0118280 }, + { "lat": 40.8308093, "lon": -74.0119137 }, + { "lat": 40.8307788, "lon": -74.0119150 }, + { "lat": 40.8304917, "lon": -74.0119299 }, + { "lat": 40.8295698, "lon": -74.0119942 }, + { "lat": 40.8291710, "lon": -74.0120350 }, + { "lat": 40.8289869, "lon": -74.0120506 }, + { "lat": 40.8273011, "lon": -74.0121936 }, + { "lat": 40.8270899, "lon": -74.0122086 }, + { "lat": 40.8270293, "lon": -74.0122128 }, + { "lat": 40.8264631, "lon": -74.0122356 }, + { "lat": 40.8262632, "lon": -74.0122512 }, + { "lat": 40.8251487, "lon": -74.0123383 }, + { "lat": 40.8248320, "lon": -74.0123630 }, + { "lat": 40.8246745, "lon": -74.0123718 }, + { "lat": 40.8243260, "lon": -74.0123912 }, + { "lat": 40.8238754, "lon": -74.0124164 }, + { "lat": 40.8236002, "lon": -74.0124317 } + ], + "tags": { + "highway": "residential", + "maxheight:signed": "no", + "name": "Railroad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Railroad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11581040, + "bounds": { + "minlat": 40.8400003, + "minlon": -74.0086869, + "maxlat": 40.8427320, + "maxlon": -74.0074930 + }, + "nodes": [ + 103243980, + 6339500969, + 103243981, + 6615844726, + 103243982 + ], + "geometry": [ + { "lat": 40.8400003, "lon": -74.0086869 }, + { "lat": 40.8402305, "lon": -74.0085674 }, + { "lat": 40.8406070, "lon": -74.0083720 }, + { "lat": 40.8416805, "lon": -74.0079280 }, + { "lat": 40.8427320, "lon": -74.0074930 } + ], + "tags": { + "highway": "unclassified", + "name": "Railroad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Railroad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11581041, + "bounds": { + "minlat": 40.8357939, + "minlon": -74.0104963, + "maxlat": 40.8364490, + "maxlon": -74.0102230 + }, + "nodes": [ + 103243988, + 103195571, + 103243990 + ], + "geometry": [ + { "lat": 40.8364490, "lon": -74.0102230 }, + { "lat": 40.8361050, "lon": -74.0103670 }, + { "lat": 40.8357939, "lon": -74.0104963 } + ], + "tags": { + "highway": "residential", + "name": "Railroad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Railroad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11581054, + "bounds": { + "minlat": 40.8470740, + "minlon": -74.0055790, + "maxlat": 40.8478640, + "maxlon": -74.0052580 + }, + "nodes": [ + 103244100, + 103147686 + ], + "geometry": [ + { "lat": 40.8478640, "lon": -74.0052580 }, + { "lat": 40.8470740, "lon": -74.0055790 } + ], + "tags": { + "access": "no", + "highway": "residential", + "motor_vehicle": "no", + "name": "Railroad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Railroad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11581074, + "bounds": { + "minlat": 40.8300507, + "minlon": -73.9909941, + "maxlat": 40.8335646, + "maxlon": -73.9888446 + }, + "nodes": [ + 103244282, + 103244284, + 103220215, + 103237108, + 103244286, + 103244288, + 103244290, + 103244292, + 103244294, + 103187733 + ], + "geometry": [ + { "lat": 40.8300507, "lon": -73.9909941 }, + { "lat": 40.8307093, "lon": -73.9905526 }, + { "lat": 40.8312929, "lon": -73.9901551 }, + { "lat": 40.8318708, "lon": -73.9897711 }, + { "lat": 40.8322940, "lon": -73.9896610 }, + { "lat": 40.8324520, "lon": -73.9896040 }, + { "lat": 40.8326060, "lon": -73.9895320 }, + { "lat": 40.8327920, "lon": -73.9894230 }, + { "lat": 40.8329360, "lon": -73.9893210 }, + { "lat": 40.8335646, "lon": -73.9888446 } + ], + "tags": { + "highway": "residential", + "name": "West End Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "West End", + "tiger:name_base_1": "Jassamine", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11581082, + "bounds": { + "minlat": 40.8762890, + "minlon": -74.0042055, + "maxlat": 40.8775455, + "maxlon": -74.0035020 + }, + "nodes": [ + 103118681, + 6634411462, + 8153374044, + 103216555 + ], + "geometry": [ + { "lat": 40.8762890, "lon": -74.0042055 }, + { "lat": 40.8765494, "lon": -74.0040226 }, + { "lat": 40.8770125, "lon": -74.0037806 }, + { "lat": 40.8775455, "lon": -74.0035020 } + ], + "tags": { + "highway": "residential", + "name": "Lucy Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lucy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11581084, + "bounds": { + "minlat": 40.8774095, + "minlon": -74.0030940, + "maxlat": 40.8801050, + "maxlon": -74.0016430 + }, + "nodes": [ + 103216556, + 6536062704, + 6536062728, + 6536062729, + 103243874 + ], + "geometry": [ + { "lat": 40.8774095, "lon": -74.0030940 }, + { "lat": 40.8779939, "lon": -74.0027794 }, + { "lat": 40.8786184, "lon": -74.0024432 }, + { "lat": 40.8797431, "lon": -74.0018378 }, + { "lat": 40.8801050, "lon": -74.0016430 } + ], + "tags": { + "highway": "residential", + "name": "Lucy Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lucy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11581133, + "bounds": { + "minlat": 40.8620600, + "minlon": -73.9722898, + "maxlat": 40.8627124, + "maxlon": -73.9711280 + }, + "nodes": [ + 103244754, + 103244756, + 103119135, + 7376909309, + 103094704 + ], + "geometry": [ + { "lat": 40.8620600, "lon": -73.9711280 }, + { "lat": 40.8625200, "lon": -73.9719540 }, + { "lat": 40.8625990, "lon": -73.9720925 }, + { "lat": 40.8626484, "lon": -73.9721784 }, + { "lat": 40.8627124, "lon": -73.9722898 } + ], + "tags": { + "highway": "residential", + "name": "Linwood Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11581135, + "bounds": { + "minlat": 40.8146763, + "minlon": -73.9911111, + "maxlat": 40.8151022, + "maxlon": -73.9898248 + }, + "nodes": [ + 103235636, + 7614292390, + 7614292229, + 103244787, + 103207043 + ], + "geometry": [ + { "lat": 40.8151022, "lon": -73.9911111 }, + { "lat": 40.8149625, "lon": -73.9907221 }, + { "lat": 40.8149499, "lon": -73.9906869 }, + { "lat": 40.8148466, "lon": -73.9903993 }, + { "lat": 40.8146763, "lon": -73.9898248 } + ], + "tags": { + "highway": "residential", + "name": "Cottage Lane", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cottage", + "tiger:name_base_1": "Cottage", + "tiger:name_type": "Pl", + "tiger:name_type_1": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 11581143, + "bounds": { + "minlat": 40.8182170, + "minlon": -74.0057974, + "maxlat": 40.8187301, + "maxlon": -74.0053230 + }, + "nodes": [ + 103159408, + 103244862 + ], + "geometry": [ + { "lat": 40.8182170, "lon": -74.0057974 }, + { "lat": 40.8187301, "lon": -74.0053230 } + ], + "tags": { + "highway": "residential", + "name": "Cottage Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cottage", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11581145, + "bounds": { + "minlat": 40.8671491, + "minlon": -73.9888926, + "maxlat": 40.8679427, + "maxlon": -73.9874619 + }, + "nodes": [ + 103244876, + 8076425404, + 103141316 + ], + "geometry": [ + { "lat": 40.8679427, "lon": -73.9888926 }, + { "lat": 40.8679068, "lon": -73.9888065 }, + { "lat": 40.8671491, "lon": -73.9874619 } + ], + "tags": { + "highway": "residential", + "name": "Cottage Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cottage", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11581170, + "bounds": { + "minlat": 40.8546559, + "minlon": -73.9867708, + "maxlat": 40.8578121, + "maxlon": -73.9837226 + }, + "nodes": [ + 103182435, + 10122889687, + 103245158, + 103135869, + 103227702, + 103134531, + 103234491, + 103245160, + 103123511, + 10236688103 + ], + "geometry": [ + { "lat": 40.8546559, "lon": -73.9867708 }, + { "lat": 40.8547076, "lon": -73.9867012 }, + { "lat": 40.8551964, "lon": -73.9862132 }, + { "lat": 40.8557192, "lon": -73.9857534 }, + { "lat": 40.8557778, "lon": -73.9857031 }, + { "lat": 40.8564294, "lon": -73.9851254 }, + { "lat": 40.8569872, "lon": -73.9845985 }, + { "lat": 40.8573677, "lon": -73.9841701 }, + { "lat": 40.8575089, "lon": -73.9840270 }, + { "lat": 40.8578121, "lon": -73.9837226 } + ], + "tags": { + "highway": "residential", + "name": "Reldyes Avenue", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Reldyes", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11581172, + "bounds": { + "minlat": 40.8284703, + "minlon": -73.9830291, + "maxlat": 40.8298272, + "maxlon": -73.9805989 + }, + "nodes": [ + 103245198, + 7538220948, + 7538917786, + 7538747882, + 7538747884, + 103226492 + ], + "geometry": [ + { "lat": 40.8298272, "lon": -73.9830291 }, + { "lat": 40.8287060, "lon": -73.9810211 }, + { "lat": 40.8286738, "lon": -73.9809634 }, + { "lat": 40.8286341, "lon": -73.9808923 }, + { "lat": 40.8286105, "lon": -73.9808500 }, + { "lat": 40.8284703, "lon": -73.9805989 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Wayne Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wayne", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11581185, + "bounds": { + "minlat": 40.8692267, + "minlon": -73.9618590, + "maxlat": 40.8714240, + "maxlon": -73.9596970 + }, + "nodes": [ + 103245338, + 103234562, + 103213797 + ], + "geometry": [ + { "lat": 40.8692267, "lon": -73.9618590 }, + { "lat": 40.8695560, "lon": -73.9615160 }, + { "lat": 40.8714240, "lon": -73.9596970 } + ], + "tags": { + "highway": "residential", + "name": "Ash Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ash", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11581188, + "bounds": { + "minlat": 40.8714780, + "minlon": -73.9597910, + "maxlat": 40.8734051, + "maxlon": -73.9582909 + }, + "nodes": [ + 103213799, + 103245354, + 103245356, + 103245358, + 103245360, + 103157607 + ], + "geometry": [ + { "lat": 40.8714780, "lon": -73.9597910 }, + { "lat": 40.8726700, "lon": -73.9588140 }, + { "lat": 40.8731410, "lon": -73.9584210 }, + { "lat": 40.8731800, "lon": -73.9583920 }, + { "lat": 40.8733183, "lon": -73.9583035 }, + { "lat": 40.8734051, "lon": -73.9582909 } + ], + "tags": { + "highway": "residential", + "name": "Ash Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ash", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11581202, + "bounds": { + "minlat": 40.8660420, + "minlon": -73.9821060, + "maxlat": 40.8688410, + "maxlon": -73.9791470 + }, + "nodes": [ + 103093265, + 8075114237, + 103245419, + 103245421, + 103245423, + 103245425, + 103245427, + 103245429, + 103245431, + 103245433, + 103245435, + 103245437, + 103245439, + 103245441, + 103245442, + 103245443, + 103245444, + 103135921, + 103245446, + 103245448, + 103245451, + 103245453, + 103245455, + 103245457, + 103245459, + 103245460, + 103245461, + 103245462, + 103245464, + 103245466, + 103245468, + 103245470, + 103245472, + 103245474, + 103245476, + 103110721 + ], + "geometry": [ + { "lat": 40.8661296, "lon": -73.9821060 }, + { "lat": 40.8661305, "lon": -73.9819195 }, + { "lat": 40.8661342, "lon": -73.9817804 }, + { "lat": 40.8661100, "lon": -73.9816870 }, + { "lat": 40.8660570, "lon": -73.9815270 }, + { "lat": 40.8660420, "lon": -73.9814440 }, + { "lat": 40.8660420, "lon": -73.9813430 }, + { "lat": 40.8660680, "lon": -73.9811720 }, + { "lat": 40.8661120, "lon": -73.9809910 }, + { "lat": 40.8661730, "lon": -73.9808190 }, + { "lat": 40.8662370, "lon": -73.9806810 }, + { "lat": 40.8663210, "lon": -73.9805380 }, + { "lat": 40.8664080, "lon": -73.9804180 }, + { "lat": 40.8665210, "lon": -73.9802950 }, + { "lat": 40.8665840, "lon": -73.9802390 }, + { "lat": 40.8670040, "lon": -73.9797950 }, + { "lat": 40.8671850, "lon": -73.9796280 }, + { "lat": 40.8673120, "lon": -73.9795260 }, + { "lat": 40.8674040, "lon": -73.9794580 }, + { "lat": 40.8677120, "lon": -73.9792140 }, + { "lat": 40.8678020, "lon": -73.9791690 }, + { "lat": 40.8678890, "lon": -73.9791480 }, + { "lat": 40.8679680, "lon": -73.9791470 }, + { "lat": 40.8680550, "lon": -73.9791640 }, + { "lat": 40.8681380, "lon": -73.9792010 }, + { "lat": 40.8682150, "lon": -73.9792570 }, + { "lat": 40.8682840, "lon": -73.9793290 }, + { "lat": 40.8683300, "lon": -73.9793960 }, + { "lat": 40.8686520, "lon": -73.9801500 }, + { "lat": 40.8687020, "lon": -73.9803100 }, + { "lat": 40.8687340, "lon": -73.9804770 }, + { "lat": 40.8687480, "lon": -73.9806270 }, + { "lat": 40.8687480, "lon": -73.9808710 }, + { "lat": 40.8687600, "lon": -73.9809967 }, + { "lat": 40.8688011, "lon": -73.9811431 }, + { "lat": 40.8688410, "lon": -73.9812510 } + ], + "tags": { + "highway": "residential", + "name": "Golf Course Drive", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Golf Course", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11581247, + "bounds": { + "minlat": 40.8696000, + "minlon": -73.9626400, + "maxlat": 40.8718440, + "maxlon": -73.9604460 + }, + "nodes": [ + 103245909, + 103234563, + 103213801 + ], + "geometry": [ + { "lat": 40.8696000, "lon": -73.9626400 }, + { "lat": 40.8699800, "lon": -73.9622680 }, + { "lat": 40.8718440, "lon": -73.9604460 } + ], + "tags": { + "highway": "residential", + "name": "Anderson Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11581252, + "bounds": { + "minlat": 40.8101501, + "minlon": -74.0008342, + "maxlat": 40.8205689, + "maxlon": -73.9915971 + }, + "nodes": [ + 103232623, + 103245911, + 5481884723, + 103245912, + 5481884120, + 5481884119, + 103112793, + 103144640, + 103245913, + 7610882312, + 103245915, + 7610882314, + 4205741394, + 103245917, + 103245919, + 5481884099, + 103093601, + 13523912785, + 103202153, + 103245921, + 5341017980, + 13523912702, + 103245923, + 103199032, + 13523912721, + 103192868, + 103192874, + 13523912716, + 103245925, + 103204318, + 103245927, + 103245928, + 8153831136, + 103245929, + 752263685, + 2828172328, + 752263691, + 440208164, + 440208163, + 103239538, + 440208170, + 8219617258, + 7607948243, + 103237758, + 4205589209 + ], + "geometry": [ + { "lat": 40.8101501, "lon": -74.0008342 }, + { "lat": 40.8102361, "lon": -74.0007955 }, + { "lat": 40.8102490, "lon": -74.0007817 }, + { "lat": 40.8103347, "lon": -74.0007323 }, + { "lat": 40.8105649, "lon": -74.0005741 }, + { "lat": 40.8106572, "lon": -74.0005108 }, + { "lat": 40.8111227, "lon": -74.0001910 }, + { "lat": 40.8118000, "lon": -73.9997350 }, + { "lat": 40.8122530, "lon": -73.9994290 }, + { "lat": 40.8125067, "lon": -73.9992583 }, + { "lat": 40.8125770, "lon": -73.9992110 }, + { "lat": 40.8126485, "lon": -73.9991422 }, + { "lat": 40.8127309, "lon": -73.9990629 }, + { "lat": 40.8128970, "lon": -73.9988360 }, + { "lat": 40.8129260, "lon": -73.9987990 }, + { "lat": 40.8131594, "lon": -73.9985012 }, + { "lat": 40.8134195, "lon": -73.9981694 }, + { "lat": 40.8137513, "lon": -73.9977594 }, + { "lat": 40.8137670, "lon": -73.9977400 }, + { "lat": 40.8139020, "lon": -73.9975740 }, + { "lat": 40.8139779, "lon": -73.9974809 }, + { "lat": 40.8139977, "lon": -73.9974567 }, + { "lat": 40.8142380, "lon": -73.9971620 }, + { "lat": 40.8144738, "lon": -73.9969218 }, + { "lat": 40.8148874, "lon": -73.9964098 }, + { "lat": 40.8149052, "lon": -73.9963878 }, + { "lat": 40.8149432, "lon": -73.9963380 }, + { "lat": 40.8149590, "lon": -73.9963200 }, + { "lat": 40.8151094, "lon": -73.9961411 }, + { "lat": 40.8152846, "lon": -73.9959542 }, + { "lat": 40.8153888, "lon": -73.9958474 }, + { "lat": 40.8160280, "lon": -73.9952440 }, + { "lat": 40.8162123, "lon": -73.9950854 }, + { "lat": 40.8165736, "lon": -73.9947790 }, + { "lat": 40.8175463, "lon": -73.9939517 }, + { "lat": 40.8176170, "lon": -73.9939520 }, + { "lat": 40.8177100, "lon": -73.9938925 }, + { "lat": 40.8181525, "lon": -73.9935262 }, + { "lat": 40.8187458, "lon": -73.9930440 }, + { "lat": 40.8193312, "lon": -73.9925597 }, + { "lat": 40.8199132, "lon": -73.9921094 }, + { "lat": 40.8202122, "lon": -73.9918710 }, + { "lat": 40.8202463, "lon": -73.9918438 }, + { "lat": 40.8204993, "lon": -73.9916421 }, + { "lat": 40.8205689, "lon": -73.9915971 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 11581262, + "bounds": { + "minlat": 40.8798390, + "minlon": -74.0008080, + "maxlat": 40.8809219, + "maxlon": -74.0002197 + }, + "nodes": [ + 103246036, + 6786804362, + 6786804359, + 103246038 + ], + "geometry": [ + { "lat": 40.8798390, "lon": -74.0008080 }, + { "lat": 40.8807738, "lon": -74.0003002 }, + { "lat": 40.8808076, "lon": -74.0002818 }, + { "lat": 40.8809219, "lon": -74.0002197 } + ], + "tags": { + "highway": "residential", + "name": "Sanford Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sanford", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11581335, + "bounds": { + "minlat": 40.8517447, + "minlon": -73.9835089, + "maxlat": 40.8521106, + "maxlon": -73.9833434 + }, + "nodes": [ + 103246871, + 2395506858, + 103246872 + ], + "geometry": [ + { "lat": 40.8521106, "lon": -73.9833539 }, + { "lat": 40.8518969, "lon": -73.9833434 }, + { "lat": 40.8517447, "lon": -73.9835089 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Jacey Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jacey", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11581363, + "bounds": { + "minlat": 40.8183784, + "minlon": -73.9853373, + "maxlat": 40.8195690, + "maxlon": -73.9846488 + }, + "nodes": [ + 103201204, + 103247099, + 103247100 + ], + "geometry": [ + { "lat": 40.8183784, "lon": -73.9853373 }, + { "lat": 40.8194748, "lon": -73.9847133 }, + { "lat": 40.8195690, "lon": -73.9846488 } + ], + "tags": { + "highway": "residential", + "name": "Longview Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Longview", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11581373, + "bounds": { + "minlat": 40.8637644, + "minlon": -73.9667497, + "maxlat": 40.8642474, + "maxlon": -73.9662921 + }, + "nodes": [ + 103247210, + 103146585 + ], + "geometry": [ + { "lat": 40.8637644, "lon": -73.9667497 }, + { "lat": 40.8642474, "lon": -73.9662921 } + ], + "tags": { + "highway": "residential", + "name": "Short Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Short", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11581384, + "bounds": { + "minlat": 40.8361268, + "minlon": -73.9752926, + "maxlat": 40.8366933, + "maxlon": -73.9741855 + }, + "nodes": [ + 5108649556, + 103158075, + 103112519, + 103247321 + ], + "geometry": [ + { "lat": 40.8361268, "lon": -73.9741855 }, + { "lat": 40.8364562, "lon": -73.9748596 }, + { "lat": 40.8365702, "lon": -73.9750918 }, + { "lat": 40.8366933, "lon": -73.9752926 } + ], + "tags": { + "highway": "residential", + "name": "Euclid Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Euclid", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11581404, + "bounds": { + "minlat": 40.8264359, + "minlon": -73.9922482, + "maxlat": 40.8269936, + "maxlon": -73.9917194 + }, + "nodes": [ + 103150110, + 103212135 + ], + "geometry": [ + { "lat": 40.8264359, "lon": -73.9922482 }, + { "lat": 40.8269936, "lon": -73.9917194 } + ], + "tags": { + "highway": "residential", + "name": "Grove Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grove", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11581465, + "bounds": { + "minlat": 40.8733870, + "minlon": -73.9632000, + "maxlat": 40.8801300, + "maxlon": -73.9545539 + }, + "nodes": [ + 103213811, + 103247938, + 10059739068, + 103247940, + 10059739067, + 103153350, + 103247942, + 103247944, + 103247946, + 103247948, + 103247950, + 103247952, + 103247953, + 103247955, + 103172144, + 103215273, + 103247958, + 103247960, + 103247962, + 103247964, + 103247966, + 103247968, + 103247970, + 103247972, + 103247974, + 103247975, + 103220106, + 103247977, + 103247979, + 103247981, + 103247983, + 103247985, + 10059739096, + 10059739097, + 103247986, + 103247987, + 103247989, + 103247991, + 10059739098, + 103187017 + ], + "geometry": [ + { "lat": 40.8733870, "lon": -73.9632000 }, + { "lat": 40.8737434, "lon": -73.9629030 }, + { "lat": 40.8740475, "lon": -73.9626510 }, + { "lat": 40.8741468, "lon": -73.9625485 }, + { "lat": 40.8742425, "lon": -73.9624543 }, + { "lat": 40.8762370, "lon": -73.9608231 }, + { "lat": 40.8763957, "lon": -73.9606838 }, + { "lat": 40.8765222, "lon": -73.9605553 }, + { "lat": 40.8765982, "lon": -73.9604484 }, + { "lat": 40.8768515, "lon": -73.9600480 }, + { "lat": 40.8769339, "lon": -73.9598428 }, + { "lat": 40.8770306, "lon": -73.9596178 }, + { "lat": 40.8771141, "lon": -73.9594802 }, + { "lat": 40.8771920, "lon": -73.9594087 }, + { "lat": 40.8777331, "lon": -73.9589727 }, + { "lat": 40.8780235, "lon": -73.9587332 }, + { "lat": 40.8784127, "lon": -73.9584174 }, + { "lat": 40.8785401, "lon": -73.9583091 }, + { "lat": 40.8786167, "lon": -73.9582299 }, + { "lat": 40.8786957, "lon": -73.9581265 }, + { "lat": 40.8787547, "lon": -73.9580269 }, + { "lat": 40.8788097, "lon": -73.9579063 }, + { "lat": 40.8788588, "lon": -73.9577557 }, + { "lat": 40.8788868, "lon": -73.9576181 }, + { "lat": 40.8789050, "lon": -73.9574716 }, + { "lat": 40.8789870, "lon": -73.9565931 }, + { "lat": 40.8790093, "lon": -73.9564277 }, + { "lat": 40.8790518, "lon": -73.9562334 }, + { "lat": 40.8791057, "lon": -73.9560667 }, + { "lat": 40.8791662, "lon": -73.9559198 }, + { "lat": 40.8792402, "lon": -73.9557818 }, + { "lat": 40.8793495, "lon": -73.9555843 }, + { "lat": 40.8794671, "lon": -73.9553812 }, + { "lat": 40.8795490, "lon": -73.9552492 }, + { "lat": 40.8796323, "lon": -73.9551246 }, + { "lat": 40.8797192, "lon": -73.9550262 }, + { "lat": 40.8798385, "lon": -73.9548835 }, + { "lat": 40.8799574, "lon": -73.9547529 }, + { "lat": 40.8800623, "lon": -73.9546364 }, + { "lat": 40.8801300, "lon": -73.9545539 } + ], + "tags": { + "highway": "residential", + "name": "Castle Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Castle", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 11581490, + "bounds": { + "minlat": 40.8422609, + "minlon": -74.0039734, + "maxlat": 40.8433450, + "maxlon": -74.0019367 + }, + "nodes": [ + 5959904717, + 12016147321, + 13196857681, + 7271115891, + 7591669950, + 7271115893, + 7591669947, + 5967314029, + 7211336225, + 530805692, + 12016147175, + 12016147174, + 5967314032, + 12016147173, + 103248214 + ], + "geometry": [ + { "lat": 40.8422609, "lon": -74.0019367 }, + { "lat": 40.8423147, "lon": -74.0020369 }, + { "lat": 40.8423749, "lon": -74.0021446 }, + { "lat": 40.8425517, "lon": -74.0024608 }, + { "lat": 40.8425948, "lon": -74.0025390 }, + { "lat": 40.8426684, "lon": -74.0026726 }, + { "lat": 40.8427702, "lon": -74.0028573 }, + { "lat": 40.8429800, "lon": -74.0032381 }, + { "lat": 40.8431163, "lon": -74.0034855 }, + { "lat": 40.8433128, "lon": -74.0038422 }, + { "lat": 40.8433231, "lon": -74.0038641 }, + { "lat": 40.8433338, "lon": -74.0038942 }, + { "lat": 40.8433390, "lon": -74.0039199 }, + { "lat": 40.8433428, "lon": -74.0039474 }, + { "lat": 40.8433450, "lon": -74.0039734 } + ], + "tags": { + "highway": "residential", + "name": "West Harriet Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harriet", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11581535, + "bounds": { + "minlat": 40.8228696, + "minlon": -73.9783430, + "maxlat": 40.8229825, + "maxlon": -73.9780453 + }, + "nodes": [ + 5362545922, + 103248914 + ], + "geometry": [ + { "lat": 40.8229825, "lon": -73.9783430 }, + { "lat": 40.8228696, "lon": -73.9780453 } + ], + "tags": { + "highway": "residential", + "name": "Crown Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crown", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11581536, + "bounds": { + "minlat": 40.8219338, + "minlon": -73.9768644, + "maxlat": 40.8219806, + "maxlon": -73.9764427 + }, + "nodes": [ + 4205789003, + 5362545937, + 5362545926, + 5362545943, + 5362545935 + ], + "geometry": [ + { "lat": 40.8219806, "lon": -73.9764427 }, + { "lat": 40.8219566, "lon": -73.9765602 }, + { "lat": 40.8219424, "lon": -73.9766608 }, + { "lat": 40.8219338, "lon": -73.9767582 }, + { "lat": 40.8219437, "lon": -73.9768644 } + ], + "tags": { + "highway": "residential", + "name": "Crown Court", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crown", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11581581, + "bounds": { + "minlat": 40.8803070, + "minlon": -74.0170555, + "maxlat": 40.8826094, + "maxlon": -74.0098430 + }, + "nodes": [ + 103214422, + 103249320, + 103197536, + 103249322, + 103249324 + ], + "geometry": [ + { "lat": 40.8803070, "lon": -74.0098430 }, + { "lat": 40.8808402, "lon": -74.0115159 }, + { "lat": 40.8811607, "lon": -74.0125522 }, + { "lat": 40.8818920, "lon": -74.0148500 }, + { "lat": 40.8826094, "lon": -74.0170555 } + ], + "tags": { + "highway": "residential", + "name": "Johnson Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Johnson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11581655, + "bounds": { + "minlat": 40.8676143, + "minlon": -73.9719730, + "maxlat": 40.8683320, + "maxlon": -73.9716189 + }, + "nodes": [ + 103250496, + 103250498, + 103250500, + 103250502, + 103250504, + 103250506, + 103250508, + 10942953987, + 10942953964, + 7373684607 + ], + "geometry": [ + { "lat": 40.8683320, "lon": -73.9717807 }, + { "lat": 40.8678370, "lon": -73.9719730 }, + { "lat": 40.8677920, "lon": -73.9719690 }, + { "lat": 40.8677510, "lon": -73.9719480 }, + { "lat": 40.8677160, "lon": -73.9719120 }, + { "lat": 40.8677020, "lon": -73.9718900 }, + { "lat": 40.8676220, "lon": -73.9717253 }, + { "lat": 40.8676143, "lon": -73.9716868 }, + { "lat": 40.8676181, "lon": -73.9716545 }, + { "lat": 40.8676271, "lon": -73.9716189 } + ], + "tags": { + "highway": "residential", + "name": "Lorraine Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lorraine", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11581671, + "bounds": { + "minlat": 40.8464080, + "minlon": -73.9843710, + "maxlat": 40.8481690, + "maxlon": -73.9826080 + }, + "nodes": [ + 103250670, + 4695808515, + 4695808528, + 4695808525, + 103250672, + 103250674 + ], + "geometry": [ + { "lat": 40.8464080, "lon": -73.9843710 }, + { "lat": 40.8467640, "lon": -73.9840130 }, + { "lat": 40.8472871, "lon": -73.9834870 }, + { "lat": 40.8474295, "lon": -73.9833437 }, + { "lat": 40.8480060, "lon": -73.9827640 }, + { "lat": 40.8481690, "lon": -73.9826080 } + ], + "tags": { + "highway": "residential", + "name": "Windsor Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Windsor", + "tiger:name_type": "Dr", + "tiger:zip_left": "07650", + "tiger:zip_left_1": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11581675, + "bounds": { + "minlat": 40.8431453, + "minlon": -73.9691671, + "maxlat": 40.8437924, + "maxlon": -73.9680974 + }, + "nodes": [ + 103137193, + 7292367289, + 103250702, + 103250704 + ], + "geometry": [ + { "lat": 40.8431453, "lon": -73.9680974 }, + { "lat": 40.8431743, "lon": -73.9681564 }, + { "lat": 40.8435260, "lon": -73.9687350 }, + { "lat": 40.8437924, "lon": -73.9691671 } + ], + "tags": { + "highway": "residential", + "name": "Casta Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Casta", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11581803, + "bounds": { + "minlat": 40.8621614, + "minlon": -73.9699720, + "maxlat": 40.8628750, + "maxlon": -73.9675959 + }, + "nodes": [ + 103132982, + 6320468145, + 103251856, + 103251853, + 103251852, + 6320468144, + 103251850, + 6320468133, + 103251849, + 7377058506, + 6320468157, + 6320468151, + 7377058507, + 103251847, + 103251845, + 103251843 + ], + "geometry": [ + { "lat": 40.8621614, "lon": -73.9675959 }, + { "lat": 40.8621636, "lon": -73.9679035 }, + { "lat": 40.8621710, "lon": -73.9680560 }, + { "lat": 40.8621980, "lon": -73.9682920 }, + { "lat": 40.8622310, "lon": -73.9684770 }, + { "lat": 40.8622728, "lon": -73.9686493 }, + { "lat": 40.8622860, "lon": -73.9687040 }, + { "lat": 40.8623046, "lon": -73.9687649 }, + { "lat": 40.8623400, "lon": -73.9688810 }, + { "lat": 40.8623419, "lon": -73.9688861 }, + { "lat": 40.8623677, "lon": -73.9689541 }, + { "lat": 40.8623762, "lon": -73.9689766 }, + { "lat": 40.8624164, "lon": -73.9690830 }, + { "lat": 40.8624210, "lon": -73.9690950 }, + { "lat": 40.8624838, "lon": -73.9692392 }, + { "lat": 40.8628750, "lon": -73.9699720 } + ], + "tags": { + "highway": "residential", + "name": "Park Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11581838, + "bounds": { + "minlat": 40.8512772, + "minlon": -74.0036531, + "maxlat": 40.8519897, + "maxlon": -74.0031150 + }, + "nodes": [ + 103252256, + 103119439, + 103252258 + ], + "geometry": [ + { "lat": 40.8512772, "lon": -74.0036531 }, + { "lat": 40.8516212, "lon": -74.0033806 }, + { "lat": 40.8519897, "lon": -74.0031150 } + ], + "tags": { + "highway": "residential", + "name": "Depot Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Depot", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11581859, + "bounds": { + "minlat": 40.8675840, + "minlon": -73.9673993, + "maxlat": 40.8693174, + "maxlon": -73.9643900 + }, + "nodes": [ + 103252471, + 103233879, + 103142192, + 103252473, + 103180038 + ], + "geometry": [ + { "lat": 40.8675840, "lon": -73.9643900 }, + { "lat": 40.8680260, "lon": -73.9651920 }, + { "lat": 40.8684170, "lon": -73.9659030 }, + { "lat": 40.8688010, "lon": -73.9665990 }, + { "lat": 40.8693174, "lon": -73.9673993 } + ], + "tags": { + "highway": "residential", + "name": "Mercer Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mercer", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11581881, + "bounds": { + "minlat": 40.8724180, + "minlon": -73.9614710, + "maxlat": 40.8739120, + "maxlon": -73.9602260 + }, + "nodes": [ + 103213807, + 10059739065, + 103226451 + ], + "geometry": [ + { "lat": 40.8724180, "lon": -73.9614710 }, + { "lat": 40.8738347, "lon": -73.9603010 }, + { "lat": 40.8739120, "lon": -73.9602260 } + ], + "tags": { + "highway": "residential", + "name": "Alfred Street", + "name_1": "Alfred Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Alfred", + "tiger:name_base_1": "Alfred", + "tiger:name_type": "St", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11581900, + "bounds": { + "minlat": 40.8534808, + "minlon": -73.9846826, + "maxlat": 40.8535423, + "maxlon": -73.9842208 + }, + "nodes": [ + 11444811789, + 12692250294, + 103252860, + 5362398648, + 10308624549, + 103111760 + ], + "geometry": [ + { "lat": 40.8535109, "lon": -73.9846826 }, + { "lat": 40.8535329, "lon": -73.9846101 }, + { "lat": 40.8535423, "lon": -73.9845382 }, + { "lat": 40.8535376, "lon": -73.9844626 }, + { "lat": 40.8534999, "lon": -73.9843078 }, + { "lat": 40.8534808, "lon": -73.9842208 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lanes": "1", + "name": "Lynette Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lynette", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11581956, + "bounds": { + "minlat": 40.8373488, + "minlon": -73.9716389, + "maxlat": 40.8387040, + "maxlon": -73.9711070 + }, + "nodes": [ + 1752676730, + 1752676731, + 103253539 + ], + "geometry": [ + { "lat": 40.8373488, "lon": -73.9716389 }, + { "lat": 40.8373903, "lon": -73.9716017 }, + { "lat": 40.8387040, "lon": -73.9711070 } + ], + "tags": { + "highway": "residential", + "name": "Myrtle Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Myrtle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11581958, + "bounds": { + "minlat": 40.8649280, + "minlon": -73.9726579, + "maxlat": 40.8688419, + "maxlon": -73.9659200 + }, + "nodes": [ + 103190714, + 103250496, + 103109088, + 103109098, + 103253549, + 103220028, + 103253551, + 103301348, + 103142182, + 103233872, + 103132997, + 103253557 + ], + "geometry": [ + { "lat": 40.8688419, "lon": -73.9726579 }, + { "lat": 40.8683320, "lon": -73.9717807 }, + { "lat": 40.8680937, "lon": -73.9713681 }, + { "lat": 40.8678450, "lon": -73.9709480 }, + { "lat": 40.8677900, "lon": -73.9708520 }, + { "lat": 40.8675030, "lon": -73.9703672 }, + { "lat": 40.8668010, "lon": -73.9691220 }, + { "lat": 40.8666179, "lon": -73.9688092 }, + { "lat": 40.8662100, "lon": -73.9681120 }, + { "lat": 40.8658040, "lon": -73.9674180 }, + { "lat": 40.8653430, "lon": -73.9666300 }, + { "lat": 40.8649280, "lon": -73.9659200 } + ], + "tags": { + "highway": "residential", + "name": "Myrtle Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Myrtle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11581966, + "bounds": { + "minlat": 40.8351760, + "minlon": -73.9723360, + "maxlat": 40.8373488, + "maxlon": -73.9716389 + }, + "nodes": [ + 103093402, + 103253591, + 103253593, + 103253596, + 1752676729, + 7292367450, + 1752676730 + ], + "geometry": [ + { "lat": 40.8351760, "lon": -73.9723360 }, + { "lat": 40.8353110, "lon": -73.9722430 }, + { "lat": 40.8354190, "lon": -73.9721750 }, + { "lat": 40.8355300, "lon": -73.9721270 }, + { "lat": 40.8373101, "lon": -73.9716760 }, + { "lat": 40.8373208, "lon": -73.9716657 }, + { "lat": 40.8373488, "lon": -73.9716389 } + ], + "tags": { + "highway": "residential", + "name": "Myrtle Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Myrtle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11582003, + "bounds": { + "minlat": 40.8511290, + "minlon": -73.9697550, + "maxlat": 40.8519801, + "maxlon": -73.9695600 + }, + "nodes": [ + 103254094, + 103254096, + 103254099, + 6964853612, + 6964853611, + 103205068 + ], + "geometry": [ + { "lat": 40.8511290, "lon": -73.9697550 }, + { "lat": 40.8512719, "lon": -73.9697235 }, + { "lat": 40.8513990, "lon": -73.9696948 }, + { "lat": 40.8516573, "lon": -73.9696464 }, + { "lat": 40.8518772, "lon": -73.9695803 }, + { "lat": 40.8519801, "lon": -73.9695600 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "2", + "name": "Schlosser Street", + "oneway": "yes", + "ref": "NJ 67", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Schlosser", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11582043, + "bounds": { + "minlat": 40.8570152, + "minlon": -73.9832482, + "maxlat": 40.8588100, + "maxlon": -73.9814270 + }, + "nodes": [ + 103254495, + 103254492, + 6117184931, + 10122889685, + 103123518 + ], + "geometry": [ + { "lat": 40.8588100, "lon": -73.9814270 }, + { "lat": 40.8582800, "lon": -73.9819650 }, + { "lat": 40.8573903, "lon": -73.9828693 }, + { "lat": 40.8570726, "lon": -73.9831976 }, + { "lat": 40.8570152, "lon": -73.9832482 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Irving Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Irving", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11582069, + "bounds": { + "minlat": 40.8170704, + "minlon": -74.0057658, + "maxlat": 40.8180066, + "maxlon": -74.0053878 + }, + "nodes": [ + 103159407, + 103254686, + 103254688 + ], + "geometry": [ + { "lat": 40.8180066, "lon": -74.0053878 }, + { "lat": 40.8177232, "lon": -74.0056539 }, + { "lat": 40.8170704, "lon": -74.0057658 } + ], + "tags": { + "highway": "residential", + "name": "Carlen Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Carlen", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11582243, + "bounds": { + "minlat": 40.8792058, + "minlon": -74.0250744, + "maxlat": 40.8812696, + "maxlon": -74.0188926 + }, + "nodes": [ + 103141365, + 103235831, + 103255379, + 440205980, + 103239831, + 103255381 + ], + "geometry": [ + { "lat": 40.8812696, "lon": -74.0250744 }, + { "lat": 40.8806555, "lon": -74.0232334 }, + { "lat": 40.8801740, "lon": -74.0219040 }, + { "lat": 40.8801350, "lon": -74.0217820 }, + { "lat": 40.8797970, "lon": -74.0207300 }, + { "lat": 40.8792058, "lon": -74.0188926 } + ], + "tags": { + "highway": "residential", + "name": "Pine Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pine", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07603", + "tiger:zip_right": "07603" + } +}, +{ + "type": "way", + "id": 11582247, + "bounds": { + "minlat": 40.8083366, + "minlon": -73.9931915, + "maxlat": 40.8093026, + "maxlon": -73.9925577 + }, + "nodes": [ + 103159352, + 103255391, + 103255390, + 103132693 + ], + "geometry": [ + { "lat": 40.8093026, "lon": -73.9925577 }, + { "lat": 40.8090162, "lon": -73.9927372 }, + { "lat": 40.8088452, "lon": -73.9928463 }, + { "lat": 40.8083366, "lon": -73.9931915 } + ], + "tags": { + "highway": "residential", + "name": "Pine Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pine", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11582336, + "bounds": { + "minlat": 40.8423232, + "minlon": -73.9941359, + "maxlat": 40.8475502, + "maxlon": -73.9889024 + }, + "nodes": [ + 103255677, + 103255679, + 103255681, + 103255683, + 103255685, + 103093901 + ], + "geometry": [ + { "lat": 40.8423232, "lon": -73.9941359 }, + { "lat": 40.8430766, "lon": -73.9933894 }, + { "lat": 40.8436752, "lon": -73.9928056 }, + { "lat": 40.8448276, "lon": -73.9916417 }, + { "lat": 40.8462116, "lon": -73.9902481 }, + { "lat": 40.8475502, "lon": -73.9889024 } + ], + "tags": { + "highway": "secondary", + "lane_markings": "no", + "name": "6th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "6th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11582337, + "bounds": { + "minlat": 40.8138410, + "minlon": -74.0005700, + "maxlat": 40.8149900, + "maxlon": -73.9995450 + }, + "nodes": [ + 103255696, + 103093603, + 103105152, + 13523861194, + 103255701 + ], + "geometry": [ + { "lat": 40.8138410, "lon": -74.0005700 }, + { "lat": 40.8144070, "lon": -74.0000650 }, + { "lat": 40.8144240, "lon": -74.0000500 }, + { "lat": 40.8149576, "lon": -73.9995739 }, + { "lat": 40.8149900, "lon": -73.9995450 } + ], + "tags": { + "highway": "residential", + "name": "6th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "6th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11582339, + "bounds": { + "minlat": 40.8612760, + "minlon": -73.9625792, + "maxlat": 40.8623046, + "maxlon": -73.9615260 + }, + "nodes": [ + 103255712, + 7393424540, + 8374754327, + 5108315881, + 5108315864, + 8374754334, + 7391395632, + 7393424531, + 103253562 + ], + "geometry": [ + { "lat": 40.8612760, "lon": -73.9625792 }, + { "lat": 40.8614519, "lon": -73.9624009 }, + { "lat": 40.8614916, "lon": -73.9623607 }, + { "lat": 40.8615021, "lon": -73.9623501 }, + { "lat": 40.8618307, "lon": -73.9620045 }, + { "lat": 40.8618513, "lon": -73.9619835 }, + { "lat": 40.8619255, "lon": -73.9619079 }, + { "lat": 40.8621399, "lon": -73.9616919 }, + { "lat": 40.8623046, "lon": -73.9615260 } + ], + "tags": { + "highway": "residential", + "name": "6th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "6th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11582344, + "bounds": { + "minlat": 40.8150718, + "minlon": -73.9994785, + "maxlat": 40.8186950, + "maxlon": -73.9962380 + }, + "nodes": [ + 103207135, + 7647954850, + 103255746, + 103204320, + 103192875, + 103199033, + 103255744, + 13523861180, + 5341017978 + ], + "geometry": [ + { "lat": 40.8186950, "lon": -73.9962380 }, + { "lat": 40.8179811, "lon": -73.9968754 }, + { "lat": 40.8177340, "lon": -73.9970960 }, + { "lat": 40.8164732, "lon": -73.9981926 }, + { "lat": 40.8160826, "lon": -73.9985518 }, + { "lat": 40.8155910, "lon": -73.9990246 }, + { "lat": 40.8153093, "lon": -73.9992483 }, + { "lat": 40.8150955, "lon": -73.9994555 }, + { "lat": 40.8150718, "lon": -73.9994785 } + ], + "tags": { + "highway": "residential", + "name": "6th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "6th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11582426, + "bounds": { + "minlat": 40.8478272, + "minlon": -73.9968258, + "maxlat": 40.8492090, + "maxlon": -73.9954400 + }, + "nodes": [ + 103256369, + 5970474295, + 5976411312, + 103256371, + 103256373 + ], + "geometry": [ + { "lat": 40.8478272, "lon": -73.9968258 }, + { "lat": 40.8482074, "lon": -73.9964419 }, + { "lat": 40.8482566, "lon": -73.9963923 }, + { "lat": 40.8486520, "lon": -73.9959930 }, + { "lat": 40.8492090, "lon": -73.9954400 } + ], + "tags": { + "highway": "residential", + "name": "1st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11582444, + "bounds": { + "minlat": 40.8153344, + "minlon": -73.9924127, + "maxlat": 40.8159800, + "maxlon": -73.9919340 + }, + "nodes": [ + 103256510, + 7616856505, + 103256512 + ], + "geometry": [ + { "lat": 40.8153344, "lon": -73.9924127 }, + { "lat": 40.8159363, "lon": -73.9919664 }, + { "lat": 40.8159800, "lon": -73.9919340 } + ], + "tags": { + "highway": "residential", + "name": "1st Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11582445, + "bounds": { + "minlat": 40.8649280, + "minlon": -73.9659200, + "maxlat": 40.8679535, + "maxlon": -73.9629168 + }, + "nodes": [ + 103253557, + 7367595013, + 7367595018, + 5108190545, + 103256515, + 7367594700, + 7367594716, + 7367594739, + 7367583629, + 9286167811, + 9286167814, + 9287376883, + 9287376877, + 103256521 + ], + "geometry": [ + { "lat": 40.8649280, "lon": -73.9659200 }, + { "lat": 40.8649600, "lon": -73.9658880 }, + { "lat": 40.8651867, "lon": -73.9656607 }, + { "lat": 40.8657037, "lon": -73.9651424 }, + { "lat": 40.8665040, "lon": -73.9643400 }, + { "lat": 40.8665895, "lon": -73.9642543 }, + { "lat": 40.8666962, "lon": -73.9641473 }, + { "lat": 40.8667839, "lon": -73.9640594 }, + { "lat": 40.8668874, "lon": -73.9639556 }, + { "lat": 40.8670066, "lon": -73.9638378 }, + { "lat": 40.8670882, "lon": -73.9637574 }, + { "lat": 40.8675047, "lon": -73.9633528 }, + { "lat": 40.8675421, "lon": -73.9633164 }, + { "lat": 40.8679535, "lon": -73.9629168 } + ], + "tags": { + "highway": "residential", + "name": "1st Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11582474, + "bounds": { + "minlat": 40.8436673, + "minlon": -73.9659490, + "maxlat": 40.8466302, + "maxlon": -73.9655549 + }, + "nodes": [ + 103256672, + 9421814838, + 3882444272, + 8299696375, + 9421814837, + 103256674, + 103256676, + 9421814836, + 3882444276, + 103256678, + 9421814835, + 103256681, + 9421814826, + 9421814834, + 103256684, + 103256686, + 103256688, + 103256690, + 9421814833, + 103256692, + 103256693, + 5449448020, + 9421814830, + 2349749573, + 9421814832, + 9421814831, + 2349749560, + 2349749577 + ], + "geometry": [ + { "lat": 40.8436673, "lon": -73.9659020 }, + { "lat": 40.8437982, "lon": -73.9659242 }, + { "lat": 40.8439737, "lon": -73.9659409 }, + { "lat": 40.8440503, "lon": -73.9659443 }, + { "lat": 40.8446484, "lon": -73.9659423 }, + { "lat": 40.8449334, "lon": -73.9659490 }, + { "lat": 40.8450623, "lon": -73.9659436 }, + { "lat": 40.8451216, "lon": -73.9659275 }, + { "lat": 40.8452216, "lon": -73.9658759 }, + { "lat": 40.8453572, "lon": -73.9657962 }, + { "lat": 40.8454372, "lon": -73.9657431 }, + { "lat": 40.8456142, "lon": -73.9656600 }, + { "lat": 40.8456820, "lon": -73.9656359 }, + { "lat": 40.8456974, "lon": -73.9656305 }, + { "lat": 40.8458054, "lon": -73.9655949 }, + { "lat": 40.8459107, "lon": -73.9655666 }, + { "lat": 40.8460010, "lon": -73.9655549 }, + { "lat": 40.8460550, "lon": -73.9655560 }, + { "lat": 40.8461037, "lon": -73.9655714 }, + { "lat": 40.8461690, "lon": -73.9656030 }, + { "lat": 40.8462452, "lon": -73.9656559 }, + { "lat": 40.8463051, "lon": -73.9656895 }, + { "lat": 40.8463553, "lon": -73.9657116 }, + { "lat": 40.8463842, "lon": -73.9657170 }, + { "lat": 40.8464227, "lon": -73.9657163 }, + { "lat": 40.8464684, "lon": -73.9657062 }, + { "lat": 40.8465237, "lon": -73.9656848 }, + { "lat": 40.8466302, "lon": -73.9656231 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Colony Road", + "service": "driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Colony", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11582499, + "bounds": { + "minlat": 40.8631080, + "minlon": -73.9921850, + "maxlat": 40.8638533, + "maxlon": -73.9915326 + }, + "nodes": [ + 103235803, + 10261740696, + 6126762884, + 10261740695, + 103256836 + ], + "geometry": [ + { "lat": 40.8631080, "lon": -73.9921850 }, + { "lat": 40.8631942, "lon": -73.9921087 }, + { "lat": 40.8635450, "lon": -73.9917983 }, + { "lat": 40.8637919, "lon": -73.9915855 }, + { "lat": 40.8638533, "lon": -73.9915326 } + ], + "tags": { + "highway": "residential", + "name": "Romaine Place", + "sidewalk": "left", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Romaine", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11582500, + "bounds": { + "minlat": 40.8748770, + "minlon": -73.9843577, + "maxlat": 40.8757546, + "maxlon": -73.9825690 + }, + "nodes": [ + 103256841, + 12022105749, + 12022105750, + 12022105748, + 103256843, + 103256845, + 103236058 + ], + "geometry": [ + { "lat": 40.8757546, "lon": -73.9843577 }, + { "lat": 40.8757302, "lon": -73.9842861 }, + { "lat": 40.8757172, "lon": -73.9842503 }, + { "lat": 40.8757040, "lon": -73.9842204 }, + { "lat": 40.8748880, "lon": -73.9826560 }, + { "lat": 40.8748770, "lon": -73.9826010 }, + { "lat": 40.8748770, "lon": -73.9825690 } + ], + "tags": { + "highway": "residential", + "name": "Knapp Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Knapp", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11582506, + "bounds": { + "minlat": 40.8573677, + "minlon": -73.9864010, + "maxlat": 40.8579920, + "maxlon": -73.9841701 + }, + "nodes": [ + 103185280, + 10239342861, + 103256893, + 103256895, + 103256897, + 103256899, + 103256900, + 103256901, + 103256902, + 103256903, + 10236688081, + 103239560, + 10236688102, + 10122889683, + 103245160 + ], + "geometry": [ + { "lat": 40.8576990, "lon": -73.9864010 }, + { "lat": 40.8577984, "lon": -73.9862021 }, + { "lat": 40.8579350, "lon": -73.9858700 }, + { "lat": 40.8579540, "lon": -73.9858110 }, + { "lat": 40.8579810, "lon": -73.9856890 }, + { "lat": 40.8579920, "lon": -73.9855770 }, + { "lat": 40.8579900, "lon": -73.9854500 }, + { "lat": 40.8579700, "lon": -73.9853110 }, + { "lat": 40.8579410, "lon": -73.9852040 }, + { "lat": 40.8578960, "lon": -73.9850920 }, + { "lat": 40.8578080, "lon": -73.9849189 }, + { "lat": 40.8577752, "lon": -73.9848573 }, + { "lat": 40.8577461, "lon": -73.9848143 }, + { "lat": 40.8574114, "lon": -73.9842497 }, + { "lat": 40.8573677, "lon": -73.9841701 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Knapp Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Knapp", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11582576, + "bounds": { + "minlat": 40.8253386, + "minlon": -74.0090240, + "maxlat": 40.8268160, + "maxlon": -74.0083788 + }, + "nodes": [ + 103139527, + 103242937, + 103257434, + 103257435, + 103157658 + ], + "geometry": [ + { "lat": 40.8253386, "lon": -74.0083788 }, + { "lat": 40.8260926, "lon": -74.0087288 }, + { "lat": 40.8267340, "lon": -74.0090210 }, + { "lat": 40.8267850, "lon": -74.0090240 }, + { "lat": 40.8268160, "lon": -74.0090160 } + ], + "tags": { + "highway": "residential", + "name": "Charlotte Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Charlotte", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11582684, + "bounds": { + "minlat": 40.8516697, + "minlon": -73.9648076, + "maxlat": 40.8517109, + "maxlon": -73.9643449 + }, + "nodes": [ + 1519930694, + 5449370322, + 5449370325, + 1519930696 + ], + "geometry": [ + { "lat": 40.8516697, "lon": -73.9643449 }, + { "lat": 40.8516824, "lon": -73.9644923 }, + { "lat": 40.8517079, "lon": -73.9647393 }, + { "lat": 40.8517109, "lon": -73.9648076 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "name": "Central Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11582712, + "bounds": { + "minlat": 40.8205630, + "minlon": -74.0064629, + "maxlat": 40.8210954, + "maxlon": -74.0063108 + }, + "nodes": [ + 103232680, + 13525551087, + 103218369 + ], + "geometry": [ + { "lat": 40.8205630, "lon": -74.0064629 }, + { "lat": 40.8206202, "lon": -74.0064469 }, + { "lat": 40.8210954, "lon": -74.0063108 } + ], + "tags": { + "highway": "residential", + "name": "Burdette Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Burdette", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11582718, + "bounds": { + "minlat": 40.8416030, + "minlon": -73.9892046, + "maxlat": 40.8430109, + "maxlon": -73.9877709 + }, + "nodes": [ + 103258705, + 5978949654, + 5978949658, + 103258708, + 5340742203 + ], + "geometry": [ + { "lat": 40.8416030, "lon": -73.9892046 }, + { "lat": 40.8418969, "lon": -73.9888993 }, + { "lat": 40.8420575, "lon": -73.9887342 }, + { "lat": 40.8427267, "lon": -73.9880459 }, + { "lat": 40.8430109, "lon": -73.9877709 } + ], + "tags": { + "highway": "residential", + "name": "11th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "11th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11582723, + "bounds": { + "minlat": 40.8506183, + "minlon": -73.9804300, + "maxlat": 40.8517170, + "maxlon": -73.9793620 + }, + "nodes": [ + 103258750, + 103258751 + ], + "geometry": [ + { "lat": 40.8506183, "lon": -73.9804300 }, + { "lat": 40.8517170, "lon": -73.9793620 } + ], + "tags": { + "highway": "residential", + "name": "11th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "11th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11582726, + "bounds": { + "minlat": 40.8453829, + "minlon": -73.9854219, + "maxlat": 40.8464080, + "maxlon": -73.9843710 + }, + "nodes": [ + 103258755, + 5965026275, + 5965026282, + 7478977978, + 103250670 + ], + "geometry": [ + { "lat": 40.8453829, "lon": -73.9854219 }, + { "lat": 40.8457813, "lon": -73.9850135 }, + { "lat": 40.8458318, "lon": -73.9849617 }, + { "lat": 40.8459534, "lon": -73.9848370 }, + { "lat": 40.8464080, "lon": -73.9843710 } + ], + "tags": { + "highway": "residential", + "name": "11th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "11th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11582730, + "bounds": { + "minlat": 40.8481690, + "minlon": -73.9826080, + "maxlat": 40.8489560, + "maxlon": -73.9818550 + }, + "nodes": [ + 103250674, + 103258775 + ], + "geometry": [ + { "lat": 40.8481690, "lon": -73.9826080 }, + { "lat": 40.8489560, "lon": -73.9818550 } + ], + "tags": { + "highway": "residential", + "name": "11th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "11th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11582736, + "bounds": { + "minlat": 40.8448573, + "minlon": -73.9862000, + "maxlat": 40.8452790, + "maxlon": -73.9854760 + }, + "nodes": [ + 3581839097, + 3581839096, + 3581839098, + 103258797 + ], + "geometry": [ + { "lat": 40.8448730, "lon": -73.9862000 }, + { "lat": 40.8448573, "lon": -73.9860477 }, + { "lat": 40.8449164, "lon": -73.9859106 }, + { "lat": 40.8452790, "lon": -73.9854760 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "11th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11582746, + "bounds": { + "minlat": 40.8293463, + "minlon": -73.9776492, + "maxlat": 40.8298561, + "maxlon": -73.9771612 + }, + "nodes": [ + 103258828, + 103206149 + ], + "geometry": [ + { "lat": 40.8298561, "lon": -73.9771612 }, + { "lat": 40.8293463, "lon": -73.9776492 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lit": "yes", + "name": "King Court", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "King", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11582748, + "bounds": { + "minlat": 40.8284241, + "minlon": -73.9780752, + "maxlat": 40.8292500, + "maxlon": -73.9777400 + }, + "nodes": [ + 103237434, + 5340890585, + 5340890584, + 5340890583, + 5340890582, + 5340890581 + ], + "geometry": [ + { "lat": 40.8292500, "lon": -73.9777400 }, + { "lat": 40.8289261, "lon": -73.9780539 }, + { "lat": 40.8288731, "lon": -73.9780752 }, + { "lat": 40.8287453, "lon": -73.9780310 }, + { "lat": 40.8285068, "lon": -73.9778834 }, + { "lat": 40.8284241, "lon": -73.9777743 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lit": "yes", + "name": "King Court", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "King", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11582853, + "bounds": { + "minlat": 40.8240592, + "minlon": -73.9954476, + "maxlat": 40.8251560, + "maxlon": -73.9944127 + }, + "nodes": [ + 440208190, + 103213235 + ], + "geometry": [ + { "lat": 40.8240592, "lon": -73.9954476 }, + { "lat": 40.8251560, "lon": -73.9944127 } + ], + "tags": { + "highway": "residential", + "name": "Highridge Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Highridge", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11582892, + "bounds": { + "minlat": 40.8596370, + "minlon": -73.9827190, + "maxlat": 40.8605929, + "maxlon": -73.9819610 + }, + "nodes": [ + 103260362, + 10122889693, + 103260363, + 103260364, + 103260366 + ], + "geometry": [ + { "lat": 40.8596370, "lon": -73.9827190 }, + { "lat": 40.8597230, "lon": -73.9826390 }, + { "lat": 40.8603350, "lon": -73.9821000 }, + { "lat": 40.8604690, "lon": -73.9820130 }, + { "lat": 40.8605929, "lon": -73.9819610 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Warwick Lane", + "noexit": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Warwick", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11582905, + "bounds": { + "minlat": 40.8763888, + "minlon": -73.9922395, + "maxlat": 40.8788907, + "maxlon": -73.9871161 + }, + "nodes": [ + 103260461, + 12022105726, + 103242072, + 12022105727, + 103260463, + 5780574891, + 5780574892, + 13595347909, + 5780574888, + 12022105728, + 12022105734, + 12022105729, + 12022105730, + 12022105731, + 103260465, + 12022105732, + 12022105733, + 8414810101, + 6892095105, + 7151030079, + 6892095102, + 6892095111, + 103260469, + 12022105736, + 12022105735, + 103260470, + 12022105737, + 103260471, + 12022105738, + 103260472, + 103260476, + 12022105739, + 7151030064, + 8171514846, + 103260482, + 103260484, + 12022105740, + 12022105741, + 8171514848, + 12022105742, + 12022105743, + 103260486 + ], + "geometry": [ + { "lat": 40.8763888, "lon": -73.9871161 }, + { "lat": 40.8764126, "lon": -73.9871889 }, + { "lat": 40.8764364, "lon": -73.9872743 }, + { "lat": 40.8764679, "lon": -73.9873794 }, + { "lat": 40.8764994, "lon": -73.9875091 }, + { "lat": 40.8767019, "lon": -73.9883697 }, + { "lat": 40.8767479, "lon": -73.9885652 }, + { "lat": 40.8769679, "lon": -73.9895006 }, + { "lat": 40.8770266, "lon": -73.9897499 }, + { "lat": 40.8771035, "lon": -73.9900808 }, + { "lat": 40.8771132, "lon": -73.9901190 }, + { "lat": 40.8771231, "lon": -73.9901476 }, + { "lat": 40.8771347, "lon": -73.9901756 }, + { "lat": 40.8771527, "lon": -73.9901983 }, + { "lat": 40.8771727, "lon": -73.9902172 }, + { "lat": 40.8771988, "lon": -73.9902318 }, + { "lat": 40.8772389, "lon": -73.9902462 }, + { "lat": 40.8776347, "lon": -73.9903623 }, + { "lat": 40.8778515, "lon": -73.9904259 }, + { "lat": 40.8778912, "lon": -73.9904375 }, + { "lat": 40.8780540, "lon": -73.9904853 }, + { "lat": 40.8782056, "lon": -73.9905297 }, + { "lat": 40.8782284, "lon": -73.9905366 }, + { "lat": 40.8782524, "lon": -73.9905480 }, + { "lat": 40.8782735, "lon": -73.9905634 }, + { "lat": 40.8782874, "lon": -73.9905810 }, + { "lat": 40.8783067, "lon": -73.9906081 }, + { "lat": 40.8783273, "lon": -73.9906479 }, + { "lat": 40.8783403, "lon": -73.9906850 }, + { "lat": 40.8783505, "lon": -73.9907313 }, + { "lat": 40.8784180, "lon": -73.9910754 }, + { "lat": 40.8784394, "lon": -73.9911604 }, + { "lat": 40.8784717, "lon": -73.9912764 }, + { "lat": 40.8785119, "lon": -73.9913912 }, + { "lat": 40.8785406, "lon": -73.9914713 }, + { "lat": 40.8785814, "lon": -73.9915740 }, + { "lat": 40.8786274, "lon": -73.9916899 }, + { "lat": 40.8786618, "lon": -73.9917711 }, + { "lat": 40.8786962, "lon": -73.9918488 }, + { "lat": 40.8787398, "lon": -73.9919346 }, + { "lat": 40.8787889, "lon": -73.9920329 }, + { "lat": 40.8788907, "lon": -73.9922395 } + ], + "tags": { + "highway": "unclassified", + "name": "Cedar Lane", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cedar", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11582919, + "bounds": { + "minlat": 40.8706326, + "minlon": -73.9768923, + "maxlat": 40.8714480, + "maxlon": -73.9762668 + }, + "nodes": [ + 103134279, + 8374426006, + 392522190, + 8374426005, + 392522191, + 8374426004, + 103260590 + ], + "geometry": [ + { "lat": 40.8714480, "lon": -73.9762668 }, + { "lat": 40.8712151, "lon": -73.9765056 }, + { "lat": 40.8711577, "lon": -73.9765496 }, + { "lat": 40.8710832, "lon": -73.9765807 }, + { "lat": 40.8709259, "lon": -73.9766189 }, + { "lat": 40.8708233, "lon": -73.9766827 }, + { "lat": 40.8706326, "lon": -73.9768923 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Eagles Notch Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Eagles Notch", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11582983, + "bounds": { + "minlat": 40.8370683, + "minlon": -73.9766324, + "maxlat": 40.8384350, + "maxlon": -73.9756020 + }, + "nodes": [ + 103247325, + 103149534, + 5108647968, + 5108647969, + 103230929 + ], + "geometry": [ + { "lat": 40.8370683, "lon": -73.9766324 }, + { "lat": 40.8377071, "lon": -73.9763395 }, + { "lat": 40.8377932, "lon": -73.9762762 }, + { "lat": 40.8378677, "lon": -73.9762003 }, + { "lat": 40.8384350, "lon": -73.9756020 } + ], + "tags": { + "highway": "residential", + "name": "Fairmount Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairmount", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11582999, + "bounds": { + "minlat": 40.8108950, + "minlon": -74.0013550, + "maxlat": 40.8121050, + "maxlon": -74.0005200 + }, + "nodes": [ + 103144642, + 13525387265, + 103232625 + ], + "geometry": [ + { "lat": 40.8121050, "lon": -74.0005200 }, + { "lat": 40.8109512, "lon": -74.0013162 }, + { "lat": 40.8108950, "lon": -74.0013550 } + ], + "tags": { + "highway": "residential", + "name": "Grant Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grant", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11583014, + "bounds": { + "minlat": 40.8705743, + "minlon": -73.9829979, + "maxlat": 40.8706015, + "maxlon": -73.9829676 + }, + "nodes": [ + 103225055, + 10177410439 + ], + "geometry": [ + { "lat": 40.8705743, "lon": -73.9829979 }, + { "lat": 40.8706015, "lon": -73.9829676 } + ], + "tags": { + "highway": "residential", + "name": "Eastview Avenue", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Eastview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11583058, + "bounds": { + "minlat": 40.8434532, + "minlon": -73.9689021, + "maxlat": 40.8442563, + "maxlon": -73.9677662 + }, + "nodes": [ + 103137196, + 7292367288, + 9421814839, + 103261834, + 5449445111, + 5449445112, + 5449445109, + 5449445114, + 5449445115, + 5449445119 + ], + "geometry": [ + { "lat": 40.8434532, "lon": -73.9677662 }, + { "lat": 40.8434827, "lon": -73.9678406 }, + { "lat": 40.8436749, "lon": -73.9681819 }, + { "lat": 40.8440476, "lon": -73.9687736 }, + { "lat": 40.8440606, "lon": -73.9687939 }, + { "lat": 40.8440889, "lon": -73.9688382 }, + { "lat": 40.8441220, "lon": -73.9688897 }, + { "lat": 40.8441518, "lon": -73.9689021 }, + { "lat": 40.8441900, "lon": -73.9688669 }, + { "lat": 40.8442563, "lon": -73.9687962 } + ], + "tags": { + "highway": "residential", + "name": "Yorkview Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Yorkview", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11583094, + "bounds": { + "minlat": 40.8755730, + "minlon": -73.9868417, + "maxlat": 40.8763233, + "maxlon": -73.9844797 + }, + "nodes": [ + 103242073, + 12022105723, + 12022105720, + 12022105722, + 12022105721, + 103262193, + 12022105719, + 7114045974, + 12022105744, + 12022105745, + 103262199 + ], + "geometry": [ + { "lat": 40.8763233, "lon": -73.9868417 }, + { "lat": 40.8762798, "lon": -73.9866480 }, + { "lat": 40.8762561, "lon": -73.9865521 }, + { "lat": 40.8762288, "lon": -73.9864469 }, + { "lat": 40.8761954, "lon": -73.9863328 }, + { "lat": 40.8761572, "lon": -73.9862191 }, + { "lat": 40.8761213, "lon": -73.9861084 }, + { "lat": 40.8757564, "lon": -73.9850382 }, + { "lat": 40.8756186, "lon": -73.9846188 }, + { "lat": 40.8756058, "lon": -73.9845797 }, + { "lat": 40.8755730, "lon": -73.9844797 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Brookside Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brookside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11583106, + "bounds": { + "minlat": 40.8556021, + "minlon": -73.9748810, + "maxlat": 40.8566089, + "maxlon": -73.9732025 + }, + "nodes": [ + 103132818, + 9452566136, + 9452566134, + 9452566140, + 103262267, + 2823597935, + 13620890084, + 5290951504 + ], + "geometry": [ + { "lat": 40.8556021, "lon": -73.9732025 }, + { "lat": 40.8558919, "lon": -73.9736813 }, + { "lat": 40.8559597, "lon": -73.9737933 }, + { "lat": 40.8560098, "lon": -73.9738761 }, + { "lat": 40.8562610, "lon": -73.9742910 }, + { "lat": 40.8564209, "lon": -73.9745588 }, + { "lat": 40.8565700, "lon": -73.9748143 }, + { "lat": 40.8566089, "lon": -73.9748810 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Lewis Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lewis", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11583112, + "bounds": { + "minlat": 40.8689969, + "minlon": -73.9867262, + "maxlat": 40.8714678, + "maxlon": -73.9819301 + }, + "nodes": [ + 103262295, + 8076425400, + 103262297, + 103262298, + 103262299, + 103262300, + 10166085606, + 103262302, + 10166085607, + 8073299990, + 103224127, + 8073299991, + 103262305, + 103262307 + ], + "geometry": [ + { "lat": 40.8714678, "lon": -73.9867262 }, + { "lat": 40.8714133, "lon": -73.9865788 }, + { "lat": 40.8709210, "lon": -73.9853754 }, + { "lat": 40.8708200, "lon": -73.9851574 }, + { "lat": 40.8707060, "lon": -73.9849514 }, + { "lat": 40.8706270, "lon": -73.9848284 }, + { "lat": 40.8705001, "lon": -73.9846143 }, + { "lat": 40.8704420, "lon": -73.9845164 }, + { "lat": 40.8703825, "lon": -73.9844137 }, + { "lat": 40.8693555, "lon": -73.9826416 }, + { "lat": 40.8692854, "lon": -73.9825089 }, + { "lat": 40.8692043, "lon": -73.9823836 }, + { "lat": 40.8690258, "lon": -73.9820820 }, + { "lat": 40.8689969, "lon": -73.9819301 } + ], + "tags": { + "highway": "residential", + "name": "Van Orden Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Orden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11583123, + "bounds": { + "minlat": 40.8657715, + "minlon": -74.0144501, + "maxlat": 40.8671605, + "maxlon": -74.0140115 + }, + "nodes": [ + 103146458, + 103262348, + 103262350, + 103262352, + 103262354, + 103262356, + 103262358, + 103262360, + 103262362, + 6592337761 + ], + "geometry": [ + { "lat": 40.8671605, "lon": -74.0141572 }, + { "lat": 40.8660443, "lon": -74.0144501 }, + { "lat": 40.8659823, "lon": -74.0144461 }, + { "lat": 40.8659223, "lon": -74.0144231 }, + { "lat": 40.8658653, "lon": -74.0143771 }, + { "lat": 40.8658263, "lon": -74.0143221 }, + { "lat": 40.8658013, "lon": -74.0142651 }, + { "lat": 40.8657863, "lon": -74.0141931 }, + { "lat": 40.8657843, "lon": -74.0141351 }, + { "lat": 40.8657715, "lon": -74.0140115 } + ], + "tags": { + "access": "private", + "highway": "service", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Plaza", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11583126, + "bounds": { + "minlat": 40.8569150, + "minlon": -73.9782160, + "maxlat": 40.8578357, + "maxlon": -73.9775515 + }, + "nodes": [ + 103262389, + 103262390 + ], + "geometry": [ + { "lat": 40.8569150, "lon": -73.9782160 }, + { "lat": 40.8578357, "lon": -73.9775515 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Marguerite Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Marguerite", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11583150, + "bounds": { + "minlat": 40.8603701, + "minlon": -73.9967103, + "maxlat": 40.8606054, + "maxlon": -73.9964447 + }, + "nodes": [ + 103226783, + 103262512, + 6114190226 + ], + "geometry": [ + { "lat": 40.8606054, "lon": -73.9964447 }, + { "lat": 40.8603886, "lon": -73.9966000 }, + { "lat": 40.8603701, "lon": -73.9967103 } + ], + "tags": { + "highway": "residential", + "name": "Elizabeth Terrace", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elizabeth", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07605" + } +}, +{ + "type": "way", + "id": 11583183, + "bounds": { + "minlat": 40.8539093, + "minlon": -73.9862132, + "maxlat": 40.8551964, + "maxlon": -73.9849349 + }, + "nodes": [ + 103245158, + 10236688088, + 6441551290, + 6126762893, + 6441551289, + 6441551287, + 440215063 + ], + "geometry": [ + { "lat": 40.8551964, "lon": -73.9862132 }, + { "lat": 40.8551626, "lon": -73.9861527 }, + { "lat": 40.8544611, "lon": -73.9849486 }, + { "lat": 40.8544324, "lon": -73.9849349 }, + { "lat": 40.8543955, "lon": -73.9849389 }, + { "lat": 40.8539266, "lon": -73.9853966 }, + { "lat": 40.8539093, "lon": -73.9854328 } + ], + "tags": { + "highway": "residential", + "name": "Richmond Place", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Richmond", + "tiger:name_type": "Pl", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11583250, + "bounds": { + "minlat": 40.8146634, + "minlon": -73.9947521, + "maxlat": 40.8159188, + "maxlon": -73.9934656 + }, + "nodes": [ + 440208188, + 7617250017, + 103263345 + ], + "geometry": [ + { "lat": 40.8146634, "lon": -73.9947521 }, + { "lat": 40.8149383, "lon": -73.9944704 }, + { "lat": 40.8159188, "lon": -73.9934656 } + ], + "tags": { + "highway": "residential", + "name": "Nagel Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Nagel", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11583267, + "bounds": { + "minlat": 40.8737868, + "minlon": -74.0031162, + "maxlat": 40.8740636, + "maxlon": -74.0022732 + }, + "nodes": [ + 103263452, + 9871150085, + 103093324 + ], + "geometry": [ + { "lat": 40.8740636, "lon": -74.0031162 }, + { "lat": 40.8738095, "lon": -74.0023423 }, + { "lat": 40.8737868, "lon": -74.0022732 } + ], + "tags": { + "highway": "residential", + "name": "Hemlock Terrace North", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hemlock", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Ter", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11583268, + "bounds": { + "minlat": 40.8736297, + "minlon": -74.0030527, + "maxlat": 40.8738365, + "maxlon": -74.0023620 + }, + "nodes": [ + 103263458, + 4469448613, + 9871150084, + 103093322 + ], + "geometry": [ + { "lat": 40.8738365, "lon": -74.0030527 }, + { "lat": 40.8736721, "lon": -74.0025260 }, + { "lat": 40.8736479, "lon": -74.0024325 }, + { "lat": 40.8736297, "lon": -74.0023620 } + ], + "tags": { + "highway": "residential", + "name": "Hemlock Terrace North", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hemlock", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11583280, + "bounds": { + "minlat": 40.8504770, + "minlon": -73.9793620, + "maxlat": 40.8517170, + "maxlon": -73.9771890 + }, + "nodes": [ + 103245978, + 103263552, + 103227552, + 103208556, + 103258751 + ], + "geometry": [ + { "lat": 40.8504770, "lon": -73.9771890 }, + { "lat": 40.8508948, "lon": -73.9779202 }, + { "lat": 40.8513090, "lon": -73.9786470 }, + { "lat": 40.8514010, "lon": -73.9788080 }, + { "lat": 40.8517170, "lon": -73.9793620 } + ], + "tags": { + "highway": "residential", + "name": "North Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "North", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11583305, + "bounds": { + "minlat": 40.8811024, + "minlon": -73.9972291, + "maxlat": 40.8858083, + "maxlon": -73.9943706 + }, + "nodes": [ + 103199477, + 103201512, + 103263750, + 103262681 + ], + "geometry": [ + { "lat": 40.8811024, "lon": -73.9972291 }, + { "lat": 40.8824312, "lon": -73.9964043 }, + { "lat": 40.8842600, "lon": -73.9952950 }, + { "lat": 40.8858083, "lon": -73.9943706 } + ], + "tags": { + "highway": "residential", + "name": "Columbus Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbus", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11583337, + "bounds": { + "minlat": 40.8729503, + "minlon": -74.0023620, + "maxlat": 40.8736297, + "maxlon": -74.0003635 + }, + "nodes": [ + 103093322, + 103264067, + 103264071, + 6635162022, + 9871150053, + 103157650 + ], + "geometry": [ + { "lat": 40.8736297, "lon": -74.0023620 }, + { "lat": 40.8733772, "lon": -74.0015968 }, + { "lat": 40.8731747, "lon": -74.0009479 }, + { "lat": 40.8730798, "lon": -74.0006890 }, + { "lat": 40.8729901, "lon": -74.0004424 }, + { "lat": 40.8729503, "lon": -74.0003635 } + ], + "tags": { + "highway": "residential", + "name": "Hemlock Terrace South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hemlock", + "tiger:name_direction_suffix": "S", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11583344, + "bounds": { + "minlat": 40.8242445, + "minlon": -73.9849745, + "maxlat": 40.8245767, + "maxlon": -73.9843540 + }, + "nodes": [ + 103264115, + 103235721 + ], + "geometry": [ + { "lat": 40.8245767, "lon": -73.9849745 }, + { "lat": 40.8242445, "lon": -73.9843540 } + ], + "tags": { + "highway": "service", + "name": "Reynolds Lane", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Reynolds", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11583355, + "bounds": { + "minlat": 40.8434314, + "minlon": -73.9677662, + "maxlat": 40.8466302, + "maxlon": -73.9651678 + }, + "nodes": [ + 103137196, + 9421814843, + 9421814842, + 9421814844, + 103264207, + 9421814841, + 103264208, + 9421814840, + 103264209, + 103264210, + 9421814845, + 9421814846, + 103264213, + 9421814847, + 103264215, + 103264217, + 9421814848, + 103256672, + 103264219, + 103264221, + 103172394, + 103264223, + 9421814849, + 103264225, + 103172380, + 3882444270, + 9421814860, + 3882444275, + 103264227, + 9421814861, + 103264229, + 103264231, + 7046600454, + 9421814862, + 2349749572, + 9421814863, + 2349749575, + 9421814864, + 9421814866, + 2349749563, + 9421814865, + 2349749577 + ], + "geometry": [ + { "lat": 40.8434532, "lon": -73.9677662 }, + { "lat": 40.8434370, "lon": -73.9677145 }, + { "lat": 40.8434314, "lon": -73.9676907 }, + { "lat": 40.8434314, "lon": -73.9676693 }, + { "lat": 40.8434590, "lon": -73.9675910 }, + { "lat": 40.8435232, "lon": -73.9674302 }, + { "lat": 40.8435765, "lon": -73.9672887 }, + { "lat": 40.8435963, "lon": -73.9672220 }, + { "lat": 40.8436080, "lon": -73.9671479 }, + { "lat": 40.8436206, "lon": -73.9669863 }, + { "lat": 40.8436181, "lon": -73.9668723 }, + { "lat": 40.8436227, "lon": -73.9665934 }, + { "lat": 40.8436211, "lon": -73.9665122 }, + { "lat": 40.8435953, "lon": -73.9663292 }, + { "lat": 40.8435922, "lon": -73.9662058 }, + { "lat": 40.8436054, "lon": -73.9660931 }, + { "lat": 40.8436333, "lon": -73.9659879 }, + { "lat": 40.8436673, "lon": -73.9659020 }, + { "lat": 40.8437150, "lon": -73.9658242 }, + { "lat": 40.8437566, "lon": -73.9657706 }, + { "lat": 40.8438479, "lon": -73.9656962 }, + { "lat": 40.8439509, "lon": -73.9656070 }, + { "lat": 40.8440280, "lon": -73.9655500 }, + { "lat": 40.8441112, "lon": -73.9655084 }, + { "lat": 40.8442481, "lon": -73.9654561 }, + { "lat": 40.8443389, "lon": -73.9654313 }, + { "lat": 40.8444789, "lon": -73.9654280 }, + { "lat": 40.8446286, "lon": -73.9653870 }, + { "lat": 40.8450720, "lon": -73.9652600 }, + { "lat": 40.8454874, "lon": -73.9651946 }, + { "lat": 40.8457065, "lon": -73.9651705 }, + { "lat": 40.8457724, "lon": -73.9651678 }, + { "lat": 40.8458452, "lon": -73.9651718 }, + { "lat": 40.8459023, "lon": -73.9651825 }, + { "lat": 40.8459647, "lon": -73.9652040 }, + { "lat": 40.8460383, "lon": -73.9652362 }, + { "lat": 40.8461422, "lon": -73.9653026 }, + { "lat": 40.8462031, "lon": -73.9653502 }, + { "lat": 40.8462716, "lon": -73.9654031 }, + { "lat": 40.8464273, "lon": -73.9654950 }, + { "lat": 40.8465511, "lon": -73.9655708 }, + { "lat": 40.8466302, "lon": -73.9656231 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Annett Avenue", + "service": "driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Annett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11583402, + "bounds": { + "minlat": 40.8228364, + "minlon": -73.9932632, + "maxlat": 40.8255524, + "maxlon": -73.9906806 + }, + "nodes": [ + 103150106, + 103213233, + 440208182 + ], + "geometry": [ + { "lat": 40.8255524, "lon": -73.9906806 }, + { "lat": 40.8239677, "lon": -73.9922110 }, + { "lat": 40.8228364, "lon": -73.9932632 } + ], + "tags": { + "highway": "residential", + "name": "Oregon Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oregon", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11583429, + "bounds": { + "minlat": 40.8396310, + "minlon": -73.9802760, + "maxlat": 40.8417420, + "maxlon": -73.9766150 + }, + "nodes": [ + 103245965, + 7292367172, + 7469386216, + 7292367170, + 103264716, + 103264714, + 7292367062, + 7292367143, + 103235764 + ], + "geometry": [ + { "lat": 40.8417420, "lon": -73.9802760 }, + { "lat": 40.8416989, "lon": -73.9802012 }, + { "lat": 40.8415277, "lon": -73.9799042 }, + { "lat": 40.8412243, "lon": -73.9793779 }, + { "lat": 40.8412070, "lon": -73.9793480 }, + { "lat": 40.8410450, "lon": -73.9790670 }, + { "lat": 40.8410248, "lon": -73.9790320 }, + { "lat": 40.8396920, "lon": -73.9767207 }, + { "lat": 40.8396310, "lon": -73.9766150 } + ], + "tags": { + "highway": "residential", + "name": "Warwick Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Warwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11583456, + "bounds": { + "minlat": 40.8699600, + "minlon": -73.9906100, + "maxlat": 40.8708130, + "maxlon": -73.9886792 + }, + "nodes": [ + 103222214, + 5938917423, + 5938917425, + 5938917427, + 103264925, + 5938917429, + 5577214987, + 5938917472, + 103264927, + 5938918261, + 5557494248 + ], + "geometry": [ + { "lat": 40.8708130, "lon": -73.9906100 }, + { "lat": 40.8707764, "lon": -73.9905271 }, + { "lat": 40.8706758, "lon": -73.9902993 }, + { "lat": 40.8705849, "lon": -73.9900937 }, + { "lat": 40.8705250, "lon": -73.9899580 }, + { "lat": 40.8704893, "lon": -73.9898812 }, + { "lat": 40.8703785, "lon": -73.9896492 }, + { "lat": 40.8702794, "lon": -73.9894053 }, + { "lat": 40.8702099, "lon": -73.9892625 }, + { "lat": 40.8701600, "lon": -73.9891491 }, + { "lat": 40.8699600, "lon": -73.9886792 } + ], + "tags": { + "highway": "residential", + "name": "Christie Heights Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Christie Heights", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11583460, + "bounds": { + "minlat": 40.8192213, + "minlon": -73.9867833, + "maxlat": 40.8202704, + "maxlon": -73.9857382 + }, + "nodes": [ + 103201206, + 103264970 + ], + "geometry": [ + { "lat": 40.8192213, "lon": -73.9867833 }, + { "lat": 40.8202704, "lon": -73.9857382 } + ], + "tags": { + "highway": "residential", + "name": "Everett Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Everett", + "tiger:name_base_1": "Everett", + "tiger:name_type": "Ter", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 11583502, + "bounds": { + "minlat": 40.8249050, + "minlon": -74.0075540, + "maxlat": 40.8254240, + "maxlon": -74.0028960 + }, + "nodes": [ + 440208205, + 103265209, + 103265211, + 103265212, + 103265213, + 103265214, + 103265215, + 103265216, + 103204007, + 103265218, + 103265220, + 103265221, + 103265223, + 103265225 + ], + "geometry": [ + { "lat": 40.8250930, "lon": -74.0075540 }, + { "lat": 40.8253100, "lon": -74.0070250 }, + { "lat": 40.8253430, "lon": -74.0069990 }, + { "lat": 40.8253810, "lon": -74.0069570 }, + { "lat": 40.8254070, "lon": -74.0069070 }, + { "lat": 40.8254240, "lon": -74.0068380 }, + { "lat": 40.8254240, "lon": -74.0067650 }, + { "lat": 40.8254130, "lon": -74.0067170 }, + { "lat": 40.8253690, "lon": -74.0063820 }, + { "lat": 40.8252460, "lon": -74.0054930 }, + { "lat": 40.8250542, "lon": -74.0039140 }, + { "lat": 40.8249050, "lon": -74.0030030 }, + { "lat": 40.8249090, "lon": -74.0029520 }, + { "lat": 40.8249300, "lon": -74.0028960 } + ], + "tags": { + "highway": "residential", + "name": "Elm Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elm", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11583509, + "bounds": { + "minlat": 40.8332909, + "minlon": -74.0052799, + "maxlat": 40.8414200, + "maxlon": -73.9911084 + }, + "nodes": [ + 103147991, + 13527758496, + 103265272, + 103265274, + 103230700, + 103265276, + 103172147, + 103265278, + 13524441805, + 103185092, + 103265280, + 13524441803, + 103265282, + 103162494, + 103224180, + 103265284, + 13524430671, + 13524430674, + 103139594, + 13524430672, + 13524430670, + 12016315332, + 12016315331, + 103208134, + 12016315334, + 12016315333, + 103265286, + 12016293154, + 12016293156, + 103159304, + 12016293155, + 12016293153, + 12016147301, + 12016147305, + 103190889, + 12016147302, + 12016147306, + 12016147307, + 103224075, + 12016147308, + 12016147309, + 12016147232, + 12016147233, + 103265287 + ], + "geometry": [ + { "lat": 40.8332909, "lon": -73.9911084 }, + { "lat": 40.8333481, "lon": -73.9912065 }, + { "lat": 40.8337235, "lon": -73.9918511 }, + { "lat": 40.8339564, "lon": -73.9922629 }, + { "lat": 40.8341299, "lon": -73.9925628 }, + { "lat": 40.8343331, "lon": -73.9929134 }, + { "lat": 40.8345273, "lon": -73.9932467 }, + { "lat": 40.8347080, "lon": -73.9935670 }, + { "lat": 40.8348752, "lon": -73.9938451 }, + { "lat": 40.8348974, "lon": -73.9938821 }, + { "lat": 40.8349224, "lon": -73.9939168 }, + { "lat": 40.8349732, "lon": -73.9940066 }, + { "lat": 40.8353203, "lon": -73.9945925 }, + { "lat": 40.8356988, "lon": -73.9952578 }, + { "lat": 40.8360461, "lon": -73.9958962 }, + { "lat": 40.8364261, "lon": -73.9965679 }, + { "lat": 40.8372786, "lon": -73.9980524 }, + { "lat": 40.8372931, "lon": -73.9980778 }, + { "lat": 40.8373292, "lon": -73.9981406 }, + { "lat": 40.8373704, "lon": -73.9982123 }, + { "lat": 40.8373844, "lon": -73.9982367 }, + { "lat": 40.8382623, "lon": -73.9997647 }, + { "lat": 40.8382782, "lon": -73.9997921 }, + { "lat": 40.8383303, "lon": -73.9998774 }, + { "lat": 40.8383764, "lon": -73.9999591 }, + { "lat": 40.8383920, "lon": -73.9999855 }, + { "lat": 40.8384610, "lon": -74.0001020 }, + { "lat": 40.8393341, "lon": -74.0016284 }, + { "lat": 40.8393503, "lon": -74.0016567 }, + { "lat": 40.8393851, "lon": -74.0017175 }, + { "lat": 40.8394223, "lon": -74.0017835 }, + { "lat": 40.8394392, "lon": -74.0018135 }, + { "lat": 40.8399295, "lon": -74.0026676 }, + { "lat": 40.8399752, "lon": -74.0027460 }, + { "lat": 40.8400209, "lon": -74.0028244 }, + { "lat": 40.8401193, "lon": -74.0029941 }, + { "lat": 40.8402993, "lon": -74.0033112 }, + { "lat": 40.8403156, "lon": -74.0033400 }, + { "lat": 40.8403737, "lon": -74.0034423 }, + { "lat": 40.8404267, "lon": -74.0035350 }, + { "lat": 40.8404418, "lon": -74.0035615 }, + { "lat": 40.8413619, "lon": -74.0051765 }, + { "lat": 40.8413779, "lon": -74.0052049 }, + { "lat": 40.8414200, "lon": -74.0052799 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxweight": "4 st", + "name": "Elm Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elm", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657" + } +}, +{ + "type": "way", + "id": 11583523, + "bounds": { + "minlat": 40.8494680, + "minlon": -73.9841909, + "maxlat": 40.8501783, + "maxlon": -73.9841250 + }, + "nodes": [ + 103177084, + 103111790 + ], + "geometry": [ + { "lat": 40.8494680, "lon": -73.9841250 }, + { "lat": 40.8501783, "lon": -73.9841909 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Westgate Drive South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Westgate", + "tiger:name_direction_suffix": "S", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11583568, + "bounds": { + "minlat": 40.8698610, + "minlon": -74.0213774, + "maxlat": 40.8709670, + "maxlon": -74.0165010 + }, + "nodes": [ + 103231159, + 103239389, + 103265896, + 103265897, + 103265899, + 103265902, + 103265904, + 103265906, + 103265908, + 103265911, + 103265913, + 440205990 + ], + "geometry": [ + { "lat": 40.8704160, "lon": -74.0165010 }, + { "lat": 40.8707610, "lon": -74.0184700 }, + { "lat": 40.8709560, "lon": -74.0195860 }, + { "lat": 40.8709670, "lon": -74.0196820 }, + { "lat": 40.8709650, "lon": -74.0197730 }, + { "lat": 40.8709550, "lon": -74.0198460 }, + { "lat": 40.8709280, "lon": -74.0199410 }, + { "lat": 40.8705010, "lon": -74.0208960 }, + { "lat": 40.8704450, "lon": -74.0209860 }, + { "lat": 40.8704057, "lon": -74.0210563 }, + { "lat": 40.8703070, "lon": -74.0211220 }, + { "lat": 40.8698610, "lon": -74.0213774 } + ], + "tags": { + "highway": "residential", + "name": "Munn Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Munn", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11583571, + "bounds": { + "minlat": 40.8292912, + "minlon": -73.9739277, + "maxlat": 40.8299050, + "maxlon": -73.9735740 + }, + "nodes": [ + 103116818, + 103265927 + ], + "geometry": [ + { "lat": 40.8292912, "lon": -73.9739277 }, + { "lat": 40.8299050, "lon": -73.9735740 } + ], + "tags": { + "highway": "residential", + "name": "Adelaide Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Adelaide", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11583594, + "bounds": { + "minlat": 40.8290110, + "minlon": -73.9787624, + "maxlat": 40.8307628, + "maxlon": -73.9764130 + }, + "nodes": [ + 7494742116, + 103266113, + 6895127586, + 103266114, + 103258828, + 103266116, + 7494742128, + 7494903304, + 103266118, + 103266120, + 103266122, + 103266124, + 103266126, + 103179144, + 7494903244, + 103266127 + ], + "geometry": [ + { "lat": 40.8307628, "lon": -73.9787624 }, + { "lat": 40.8307082, "lon": -73.9786944 }, + { "lat": 40.8306172, "lon": -73.9785461 }, + { "lat": 40.8302801, "lon": -73.9779306 }, + { "lat": 40.8298561, "lon": -73.9771612 }, + { "lat": 40.8297704, "lon": -73.9770217 }, + { "lat": 40.8297078, "lon": -73.9769104 }, + { "lat": 40.8296924, "lon": -73.9768829 }, + { "lat": 40.8295572, "lon": -73.9766426 }, + { "lat": 40.8294307, "lon": -73.9764952 }, + { "lat": 40.8293420, "lon": -73.9764380 }, + { "lat": 40.8292700, "lon": -73.9764140 }, + { "lat": 40.8291940, "lon": -73.9764130 }, + { "lat": 40.8291430, "lon": -73.9764300 }, + { "lat": 40.8290931, "lon": -73.9764470 }, + { "lat": 40.8290110, "lon": -73.9764750 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Kensington Drive", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kensington", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11583603, + "bounds": { + "minlat": 40.8240460, + "minlon": -73.9989870, + "maxlat": 40.8255326, + "maxlon": -73.9980115 + }, + "nodes": [ + 103266267, + 103115365, + 103206287, + 103266269, + 103209156 + ], + "geometry": [ + { "lat": 40.8240460, "lon": -73.9989870 }, + { "lat": 40.8244547, "lon": -73.9987269 }, + { "lat": 40.8251248, "lon": -73.9982868 }, + { "lat": 40.8253160, "lon": -73.9981550 }, + { "lat": 40.8255326, "lon": -73.9980115 } + ], + "tags": { + "highway": "residential", + "name": "Martling Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Martling", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11583658, + "bounds": { + "minlat": 40.8620520, + "minlon": -74.0234682, + "maxlat": 40.8635871, + "maxlon": -74.0165060 + }, + "nodes": [ + 103214375, + 103217263, + 103179627, + 103266572, + 103266570 + ], + "geometry": [ + { "lat": 40.8620520, "lon": -74.0165060 }, + { "lat": 40.8625200, "lon": -74.0186240 }, + { "lat": 40.8628590, "lon": -74.0201620 }, + { "lat": 40.8631970, "lon": -74.0216960 }, + { "lat": 40.8635871, "lon": -74.0234682 } + ], + "tags": { + "highway": "residential", + "name": "Hazelton Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hazelton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11583705, + "bounds": { + "minlat": 40.8782204, + "minlon": -74.0181778, + "maxlat": 40.8804831, + "maxlon": -74.0109629 + }, + "nodes": [ + 103214414, + 7110937194, + 7110937199, + 7110937200, + 7110937201, + 7110937198, + 7110937197, + 7110937196, + 7110937195, + 7110937193, + 103197532, + 103267064, + 103267066 + ], + "geometry": [ + { "lat": 40.8782204, "lon": -74.0109629 }, + { "lat": 40.8784514, "lon": -74.0117645 }, + { "lat": 40.8784863, "lon": -74.0118216 }, + { "lat": 40.8785359, "lon": -74.0118789 }, + { "lat": 40.8785765, "lon": -74.0119443 }, + { "lat": 40.8786937, "lon": -74.0123202 }, + { "lat": 40.8787055, "lon": -74.0123972 }, + { "lat": 40.8786991, "lon": -74.0124757 }, + { "lat": 40.8786965, "lon": -74.0125274 }, + { "lat": 40.8787119, "lon": -74.0126050 }, + { "lat": 40.8790359, "lon": -74.0136662 }, + { "lat": 40.8797680, "lon": -74.0159630 }, + { "lat": 40.8804831, "lon": -74.0181778 } + ], + "tags": { + "highway": "residential", + "name": "Van Buren Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Buren", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11583706, + "bounds": { + "minlat": 40.8806172, + "minlon": -74.0225806, + "maxlat": 40.8820033, + "maxlon": -74.0181078 + }, + "nodes": [ + 103267073, + 103239833, + 103235835 + ], + "geometry": [ + { "lat": 40.8806172, "lon": -74.0181078 }, + { "lat": 40.8812167, "lon": -74.0200140 }, + { "lat": 40.8820033, "lon": -74.0225806 } + ], + "tags": { + "highway": "residential", + "name": "Van Buren Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Buren", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11583724, + "bounds": { + "minlat": 40.8823939, + "minlon": -73.9776484, + "maxlat": 40.8849344, + "maxlon": -73.9730422 + }, + "nodes": [ + 103267237, + 12372564097, + 12372564096, + 12372564095, + 12372564094, + 5766854926, + 103267238, + 103262471, + 103267239, + 103267241, + 7095101200, + 7095101195, + 12021734847, + 103138368 + ], + "geometry": [ + { "lat": 40.8849344, "lon": -73.9776484 }, + { "lat": 40.8849273, "lon": -73.9776135 }, + { "lat": 40.8849195, "lon": -73.9775846 }, + { "lat": 40.8849096, "lon": -73.9775567 }, + { "lat": 40.8848979, "lon": -73.9775287 }, + { "lat": 40.8843023, "lon": -73.9764515 }, + { "lat": 40.8839269, "lon": -73.9758000 }, + { "lat": 40.8838274, "lon": -73.9756275 }, + { "lat": 40.8834567, "lon": -73.9749729 }, + { "lat": 40.8829766, "lon": -73.9741211 }, + { "lat": 40.8828071, "lon": -73.9738152 }, + { "lat": 40.8826098, "lon": -73.9734593 }, + { "lat": 40.8824350, "lon": -73.9731440 }, + { "lat": 40.8823939, "lon": -73.9730422 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Huguenot Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Huguenot", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11583728, + "bounds": { + "minlat": 40.8720711, + "minlon": -73.9766015, + "maxlat": 40.8721879, + "maxlon": -73.9762496 + }, + "nodes": [ + 103134273, + 103267270, + 392522306 + ], + "geometry": [ + { "lat": 40.8720711, "lon": -73.9766015 }, + { "lat": 40.8720970, "lon": -73.9764213 }, + { "lat": 40.8721879, "lon": -73.9762496 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Pheasant Run", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pheasant", + "tiger:name_type": "Run", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11583744, + "bounds": { + "minlat": 40.8798262, + "minlon": -73.9770002, + "maxlat": 40.8869826, + "maxlon": -73.9645200 + }, + "nodes": [ + 7111660573, + 6904829673, + 6904829660, + 103171052, + 103262469, + 8811059558, + 8218937541, + 7095141501, + 12021734858, + 12021734862, + 103224154, + 12021734861, + 12021734857, + 7095141497, + 103267383, + 103267384, + 103267385, + 8218937534, + 103206787, + 103224947 + ], + "geometry": [ + { "lat": 40.8869826, "lon": -73.9770002 }, + { "lat": 40.8869473, "lon": -73.9769367 }, + { "lat": 40.8868274, "lon": -73.9767264 }, + { "lat": 40.8858369, "lon": -73.9749882 }, + { "lat": 40.8854891, "lon": -73.9743666 }, + { "lat": 40.8852672, "lon": -73.9739850 }, + { "lat": 40.8846290, "lon": -73.9728878 }, + { "lat": 40.8842969, "lon": -73.9723168 }, + { "lat": 40.8840928, "lon": -73.9719085 }, + { "lat": 40.8840582, "lon": -73.9718385 }, + { "lat": 40.8840160, "lon": -73.9717528 }, + { "lat": 40.8839690, "lon": -73.9716688 }, + { "lat": 40.8839418, "lon": -73.9716199 }, + { "lat": 40.8830536, "lon": -73.9701476 }, + { "lat": 40.8822740, "lon": -73.9687944 }, + { "lat": 40.8817739, "lon": -73.9678335 }, + { "lat": 40.8813900, "lon": -73.9672500 }, + { "lat": 40.8811448, "lon": -73.9668252 }, + { "lat": 40.8808837, "lon": -73.9663570 }, + { "lat": 40.8798262, "lon": -73.9645200 } + ], + "tags": { + "highway": "residential", + "name": "East Linden Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linden", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11583802, + "bounds": { + "minlat": 40.8291166, + "minlon": -74.0103375, + "maxlat": 40.8294526, + "maxlon": -74.0094452 + }, + "nodes": [ + 103237568, + 12016315278, + 12016315274, + 12016315275, + 12016315276, + 12016315277, + 103224034 + ], + "geometry": [ + { "lat": 40.8291166, "lon": -74.0094452 }, + { "lat": 40.8294047, "lon": -74.0101557 }, + { "lat": 40.8294187, "lon": -74.0101925 }, + { "lat": 40.8294293, "lon": -74.0102259 }, + { "lat": 40.8294375, "lon": -74.0102598 }, + { "lat": 40.8294447, "lon": -74.0102999 }, + { "lat": 40.8294526, "lon": -74.0103375 } + ], + "tags": { + "highway": "residential", + "name": "Howard Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Howard", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11583819, + "bounds": { + "minlat": 40.8740636, + "minlon": -74.0031162, + "maxlat": 40.8770987, + "maxlon": -74.0021987 + }, + "nodes": [ + 103263452, + 103268030, + 103118672, + 4469448606, + 103268032, + 103268033, + 103268035, + 6634411463, + 103199029, + 103216558 + ], + "geometry": [ + { "lat": 40.8740636, "lon": -74.0031162 }, + { "lat": 40.8748636, "lon": -74.0026429 }, + { "lat": 40.8755068, "lon": -74.0023287 }, + { "lat": 40.8756054, "lon": -74.0022850 }, + { "lat": 40.8756938, "lon": -74.0022638 }, + { "lat": 40.8758588, "lon": -74.0022386 }, + { "lat": 40.8760496, "lon": -74.0022272 }, + { "lat": 40.8763289, "lon": -74.0022156 }, + { "lat": 40.8764273, "lon": -74.0022115 }, + { "lat": 40.8770987, "lon": -74.0021987 } + ], + "tags": { + "highway": "residential", + "name": "Marion Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Marion", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11583829, + "bounds": { + "minlat": 40.8480575, + "minlon": -73.9734389, + "maxlat": 40.8487763, + "maxlon": -73.9721724 + }, + "nodes": [ + 5108616839, + 103268113, + 12394165144, + 103235582 + ], + "geometry": [ + { "lat": 40.8480575, "lon": -73.9722244 }, + { "lat": 40.8481862, "lon": -73.9721724 }, + { "lat": 40.8487595, "lon": -73.9734141 }, + { "lat": 40.8487763, "lon": -73.9734389 } + ], + "tags": { + "highway": "residential", + "name": "Beverly Hills Road", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Beverly Hills", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11583832, + "bounds": { + "minlat": 40.8454455, + "minlon": -73.9781905, + "maxlat": 40.8490438, + "maxlon": -73.9715528 + }, + "nodes": [ + 103235774, + 13523674067, + 7472369260, + 5108613709, + 7460473105, + 103268129, + 103174587, + 103245972 + ], + "geometry": [ + { "lat": 40.8454455, "lon": -73.9715528 }, + { "lat": 40.8455008, "lon": -73.9716551 }, + { "lat": 40.8471941, "lon": -73.9747861 }, + { "lat": 40.8472334, "lon": -73.9748588 }, + { "lat": 40.8472602, "lon": -73.9749078 }, + { "lat": 40.8472831, "lon": -73.9749499 }, + { "lat": 40.8479717, "lon": -73.9761984 }, + { "lat": 40.8490438, "lon": -73.9781905 } + ], + "tags": { + "highway": "residential", + "name": "McCloud Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "McCloud", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11583847, + "bounds": { + "minlat": 40.8409559, + "minlon": -73.9941981, + "maxlat": 40.8418538, + "maxlon": -73.9933161 + }, + "nodes": [ + 103134583, + 103268226 + ], + "geometry": [ + { "lat": 40.8409559, "lon": -73.9941981 }, + { "lat": 40.8418538, "lon": -73.9933161 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "Sunset Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sunset", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11583992, + "bounds": { + "minlat": 40.8411033, + "minlon": -73.9707116, + "maxlat": 40.8413987, + "maxlon": -73.9699307 + }, + "nodes": [ + 103115562, + 7672312164, + 9767024641 + ], + "geometry": [ + { "lat": 40.8413987, "lon": -73.9707116 }, + { "lat": 40.8413761, "lon": -73.9706518 }, + { "lat": 40.8411033, "lon": -73.9699307 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Orchard Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Orchard", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11584077, + "bounds": { + "minlat": 40.8111240, + "minlon": -74.0040425, + "maxlat": 40.8118367, + "maxlon": -74.0022330 + }, + "nodes": [ + 103269803, + 7475993682, + 7475993684, + 103147901 + ], + "geometry": [ + { "lat": 40.8111240, "lon": -74.0022330 }, + { "lat": 40.8111586, "lon": -74.0023186 }, + { "lat": 40.8117966, "lon": -74.0039406 }, + { "lat": 40.8118367, "lon": -74.0040425 } + ], + "tags": { + "highway": "residential", + "name": "Sherman Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sherman", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11584105, + "bounds": { + "minlat": 40.8254937, + "minlon": -74.0025558, + "maxlat": 40.8264906, + "maxlon": -74.0016094 + }, + "nodes": [ + 103270116, + 103160867, + 103270117 + ], + "geometry": [ + { "lat": 40.8254937, "lon": -74.0025558 }, + { "lat": 40.8259208, "lon": -74.0021409 }, + { "lat": 40.8264906, "lon": -74.0016094 } + ], + "tags": { + "highway": "residential", + "name": "Bernard Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bernard", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11584163, + "bounds": { + "minlat": 40.8586610, + "minlon": -73.9948562, + "maxlat": 40.8614603, + "maxlon": -73.9901380 + }, + "nodes": [ + 103229102, + 103270519, + 10261740703, + 8076425410, + 103270521, + 7153087453, + 8075114224, + 103224108 + ], + "geometry": [ + { "lat": 40.8614603, "lon": -73.9948562 }, + { "lat": 40.8614258, "lon": -73.9948056 }, + { "lat": 40.8614145, "lon": -73.9947875 }, + { "lat": 40.8614032, "lon": -73.9947693 }, + { "lat": 40.8601809, "lon": -73.9927353 }, + { "lat": 40.8589976, "lon": -73.9907128 }, + { "lat": 40.8587286, "lon": -73.9902535 }, + { "lat": 40.8586610, "lon": -73.9901380 } + ], + "tags": { + "highway": "residential", + "name": "Christie Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Christie", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11584175, + "bounds": { + "minlat": 40.8803650, + "minlon": -74.0024620, + "maxlat": 40.8824259, + "maxlon": -74.0013381 + }, + "nodes": [ + 103158763, + 103199472 + ], + "geometry": [ + { "lat": 40.8803650, "lon": -74.0024620 }, + { "lat": 40.8824259, "lon": -74.0013381 } + ], + "tags": { + "highway": "residential", + "name": "Bayard Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bayard", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11584191, + "bounds": { + "minlat": 40.8596031, + "minlon": -74.0239875, + "maxlat": 40.8614205, + "maxlon": -74.0160628 + }, + "nodes": [ + 103270655, + 103270656, + 103270658, + 103217260, + 103211848, + 103214370, + 103270660 + ], + "geometry": [ + { "lat": 40.8614205, "lon": -74.0239875 }, + { "lat": 40.8610266, "lon": -74.0223144 }, + { "lat": 40.8606600, "lon": -74.0207350 }, + { "lat": 40.8603510, "lon": -74.0194040 }, + { "lat": 40.8600540, "lon": -74.0181360 }, + { "lat": 40.8598390, "lon": -74.0172190 }, + { "lat": 40.8596031, "lon": -74.0160628 } + ], + "tags": { + "highway": "residential", + "name": "Union Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Union", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11584205, + "bounds": { + "minlat": 40.8396200, + "minlon": -73.9711153, + "maxlat": 40.8399543, + "maxlon": -73.9701948 + }, + "nodes": [ + 3882414958, + 7292367442, + 3882414962, + 3882414964, + 3882414961, + 103270729, + 103270730 + ], + "geometry": [ + { "lat": 40.8396957, "lon": -73.9701948 }, + { "lat": 40.8397251, "lon": -73.9702782 }, + { "lat": 40.8397374, "lon": -73.9703129 }, + { "lat": 40.8398257, "lon": -73.9704832 }, + { "lat": 40.8399020, "lon": -73.9706782 }, + { "lat": 40.8399543, "lon": -73.9708255 }, + { "lat": 40.8396200, "lon": -73.9711153 } + ], + "tags": { + "highway": "residential", + "name": "Lasher Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lasher", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11584244, + "bounds": { + "minlat": 40.8439040, + "minlon": -73.9807650, + "maxlat": 40.8443240, + "maxlon": -73.9800510 + }, + "nodes": [ + 103219157, + 103271065 + ], + "geometry": [ + { "lat": 40.8439040, "lon": -73.9800510 }, + { "lat": 40.8443240, "lon": -73.9807650 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Edsall Boulevard", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edsall", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 11584295, + "bounds": { + "minlat": 40.8307093, + "minlon": -73.9915380, + "maxlat": 40.8310870, + "maxlon": -73.9905526 + }, + "nodes": [ + 103244284, + 440208228, + 103271374, + 103242161 + ], + "geometry": [ + { "lat": 40.8307093, "lon": -73.9905526 }, + { "lat": 40.8309093, "lon": -73.9910842 }, + { "lat": 40.8309779, "lon": -73.9912709 }, + { "lat": 40.8310870, "lon": -73.9915380 } + ], + "tags": { + "highway": "residential", + "name": "Shannon Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Shannon", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11584312, + "bounds": { + "minlat": 40.8236520, + "minlon": -73.9947169, + "maxlat": 40.8247605, + "maxlon": -73.9936753 + }, + "nodes": [ + 103213234, + 440208180 + ], + "geometry": [ + { "lat": 40.8247605, "lon": -73.9936753 }, + { "lat": 40.8236520, "lon": -73.9947169 } + ], + "tags": { + "highway": "residential", + "name": "Longview Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Longview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11584313, + "bounds": { + "minlat": 40.8723128, + "minlon": -73.9856827, + "maxlat": 40.8733228, + "maxlon": -73.9838525 + }, + "nodes": [ + 103271518, + 8076425397, + 103271520 + ], + "geometry": [ + { "lat": 40.8733228, "lon": -73.9856827 }, + { "lat": 40.8732452, "lon": -73.9855415 }, + { "lat": 40.8723128, "lon": -73.9838525 } + ], + "tags": { + "highway": "residential", + "name": "Longview Avenue", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Longview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11584317, + "bounds": { + "minlat": 40.8659530, + "minlon": -73.9643400, + "maxlat": 40.8665040, + "maxlon": -73.9634200 + }, + "nodes": [ + 103236643, + 103256515 + ], + "geometry": [ + { "lat": 40.8659530, "lon": -73.9634200 }, + { "lat": 40.8665040, "lon": -73.9643400 } + ], + "tags": { + "highway": "residential", + "name": "Moore Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Moore", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11584356, + "bounds": { + "minlat": 40.8121537, + "minlon": -74.0051026, + "maxlat": 40.8145996, + "maxlon": -74.0033826 + }, + "nodes": [ + 440208151, + 7621602994, + 7621603003, + 12456223772, + 103142148, + 12456261925, + 12456262068, + 103232644 + ], + "geometry": [ + { "lat": 40.8121537, "lon": -74.0051026 }, + { "lat": 40.8121711, "lon": -74.0050905 }, + { "lat": 40.8127508, "lon": -74.0046860 }, + { "lat": 40.8141631, "lon": -74.0037007 }, + { "lat": 40.8143268, "lon": -74.0035865 }, + { "lat": 40.8144774, "lon": -74.0034732 }, + { "lat": 40.8145256, "lon": -74.0034370 }, + { "lat": 40.8145996, "lon": -74.0033826 } + ], + "tags": { + "Bergen_County_database_ref": "S-48", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000S48", + "highway": "tertiary", + "name": "Bergenwood Road", + "ref": "CR S-48", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergenwood", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11584369, + "bounds": { + "minlat": 40.8497366, + "minlon": -73.9914922, + "maxlat": 40.8516668, + "maxlon": -73.9895354 + }, + "nodes": [ + 103271800, + 103271803, + 440215446 + ], + "geometry": [ + { "lat": 40.8497366, "lon": -73.9914922 }, + { "lat": 40.8502585, "lon": -73.9909620 }, + { "lat": 40.8516668, "lon": -73.9895354 } + ], + "tags": { + "highway": "residential", + "name": "Roff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11584370, + "bounds": { + "minlat": 40.8408349, + "minlon": -74.0002749, + "maxlat": 40.8416946, + "maxlon": -73.9994252 + }, + "nodes": [ + 440215470, + 103179311, + 5976782389, + 5976782388, + 103134625, + 530805618 + ], + "geometry": [ + { "lat": 40.8408349, "lon": -74.0002749 }, + { "lat": 40.8410120, "lon": -74.0000910 }, + { "lat": 40.8412905, "lon": -73.9998138 }, + { "lat": 40.8413076, "lon": -73.9997968 }, + { "lat": 40.8416003, "lon": -73.9995220 }, + { "lat": 40.8416946, "lon": -73.9994252 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Roff Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11584443, + "bounds": { + "minlat": 40.8763967, + "minlon": -73.9820956, + "maxlat": 40.8765210, + "maxlon": -73.9818846 + }, + "nodes": [ + 103272301, + 103272303 + ], + "geometry": [ + { "lat": 40.8765210, "lon": -73.9820956 }, + { "lat": 40.8763967, "lon": -73.9818846 } + ], + "tags": { + "highway": "residential", + "name": "Lake Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lake", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11584444, + "bounds": { + "minlat": 40.8203021, + "minlon": -73.9804932, + "maxlat": 40.8230867, + "maxlon": -73.9783783 + }, + "nodes": [ + 103115586, + 5362545927, + 10131740173, + 5362545420, + 752618518, + 5362545941, + 103272311, + 5362545950, + 103272309, + 5362545948, + 103115580 + ], + "geometry": [ + { "lat": 40.8229311, "lon": -73.9783783 }, + { "lat": 40.8230706, "lon": -73.9787246 }, + { "lat": 40.8230847, "lon": -73.9787642 }, + { "lat": 40.8230867, "lon": -73.9788038 }, + { "lat": 40.8230710, "lon": -73.9788347 }, + { "lat": 40.8230402, "lon": -73.9788655 }, + { "lat": 40.8217790, "lon": -73.9796230 }, + { "lat": 40.8205259, "lon": -73.9804928 }, + { "lat": 40.8204733, "lon": -73.9804932 }, + { "lat": 40.8204426, "lon": -73.9804646 }, + { "lat": 40.8203021, "lon": -73.9801287 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Terrace", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11584448, + "bounds": { + "minlat": 40.8225210, + "minlon": -73.9866357, + "maxlat": 40.8230253, + "maxlon": -73.9857053 + }, + "nodes": [ + 103235713, + 7557491304, + 103272322 + ], + "geometry": [ + { "lat": 40.8225210, "lon": -73.9857053 }, + { "lat": 40.8228112, "lon": -73.9862406 }, + { "lat": 40.8230253, "lon": -73.9866357 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Place", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11584465, + "bounds": { + "minlat": 40.8353203, + "minlon": -73.9945925, + "maxlat": 40.8370298, + "maxlon": -73.9931360 + }, + "nodes": [ + 103265282, + 13524430697, + 103272501, + 103272502, + 103272503, + 103272505, + 103272507, + 103272509, + 103272511, + 103272515, + 5976777475, + 440215476, + 103272519, + 103163035 + ], + "geometry": [ + { "lat": 40.8353203, "lon": -73.9945925 }, + { "lat": 40.8353877, "lon": -73.9945396 }, + { "lat": 40.8356440, "lon": -73.9943520 }, + { "lat": 40.8358100, "lon": -73.9942440 }, + { "lat": 40.8359880, "lon": -73.9941440 }, + { "lat": 40.8366960, "lon": -73.9938250 }, + { "lat": 40.8367650, "lon": -73.9937750 }, + { "lat": 40.8368260, "lon": -73.9937100 }, + { "lat": 40.8368740, "lon": -73.9936400 }, + { "lat": 40.8369190, "lon": -73.9935440 }, + { "lat": 40.8369302, "lon": -73.9935072 }, + { "lat": 40.8369460, "lon": -73.9934550 }, + { "lat": 40.8369900, "lon": -73.9933090 }, + { "lat": 40.8370298, "lon": -73.9931360 } + ], + "tags": { + "highway": "residential", + "name": "Ravenhill Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ravenhill", + "tiger:name_base_1": "Ravenhill", + "tiger:name_type": "Pl", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11584480, + "bounds": { + "minlat": 40.8418307, + "minlon": -73.9788822, + "maxlat": 40.8443765, + "maxlon": -73.9741888 + }, + "nodes": [ + 103245968, + 103272690, + 103272688, + 7292367025, + 103272686, + 103272684, + 7474409157, + 7472864419, + 5449350833, + 8978666034, + 103235768 + ], + "geometry": [ + { "lat": 40.8443765, "lon": -73.9788822 }, + { "lat": 40.8437632, "lon": -73.9777396 }, + { "lat": 40.8436120, "lon": -73.9774910 }, + { "lat": 40.8435967, "lon": -73.9774628 }, + { "lat": 40.8427210, "lon": -73.9758470 }, + { "lat": 40.8423310, "lon": -73.9751260 }, + { "lat": 40.8421419, "lon": -73.9747719 }, + { "lat": 40.8420570, "lon": -73.9746129 }, + { "lat": 40.8419969, "lon": -73.9745002 }, + { "lat": 40.8418803, "lon": -73.9742814 }, + { "lat": 40.8418307, "lon": -73.9741888 } + ], + "tags": { + "highway": "residential", + "name": "Harmon Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harmon", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11584502, + "bounds": { + "minlat": 40.8576930, + "minlon": -73.9786406, + "maxlat": 40.8582619, + "maxlon": -73.9772100 + }, + "nodes": [ + 103272809, + 103262390, + 103272811 + ], + "geometry": [ + { "lat": 40.8576930, "lon": -73.9772100 }, + { "lat": 40.8578357, "lon": -73.9775515 }, + { "lat": 40.8582619, "lon": -73.9786406 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Walnut Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Walnut", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11584507, + "bounds": { + "minlat": 40.8686300, + "minlon": -74.0220855, + "maxlat": 40.8699724, + "maxlon": -74.0146340 + }, + "nodes": [ + 103214386, + 103231156, + 103239384, + 103272820, + 440205990, + 103272822, + 103272823 + ], + "geometry": [ + { "lat": 40.8686300, "lon": -74.0146340 }, + { "lat": 40.8690490, "lon": -74.0169370 }, + { "lat": 40.8694070, "lon": -74.0189000 }, + { "lat": 40.8696470, "lon": -74.0202090 }, + { "lat": 40.8698610, "lon": -74.0213774 }, + { "lat": 40.8698730, "lon": -74.0214450 }, + { "lat": 40.8699724, "lon": -74.0220855 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Walnut Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Walnut", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07603", + "tiger:zip_right": "07603" + } +}, +{ + "type": "way", + "id": 11584515, + "bounds": { + "minlat": 40.8252460, + "minlon": -74.0054930, + "maxlat": 40.8319482, + "maxlon": -73.9994322 + }, + "nodes": [ + 103265218, + 103272839, + 103272840, + 103272843, + 103272845, + 103272847, + 440208207, + 103272851, + 103165289, + 103272853, + 103196741, + 103169645, + 103202125, + 103272857, + 7101015667, + 8374407285, + 475223352, + 7101015671 + ], + "geometry": [ + { "lat": 40.8252460, "lon": -74.0054930 }, + { "lat": 40.8255110, "lon": -74.0054410 }, + { "lat": 40.8256290, "lon": -74.0054000 }, + { "lat": 40.8257420, "lon": -74.0053410 }, + { "lat": 40.8258480, "lon": -74.0052640 }, + { "lat": 40.8258960, "lon": -74.0052220 }, + { "lat": 40.8264020, "lon": -74.0047460 }, + { "lat": 40.8265250, "lon": -74.0046300 }, + { "lat": 40.8268290, "lon": -74.0043350 }, + { "lat": 40.8274372, "lon": -74.0038354 }, + { "lat": 40.8280108, "lon": -74.0032649 }, + { "lat": 40.8286413, "lon": -74.0026316 }, + { "lat": 40.8294366, "lon": -74.0018623 }, + { "lat": 40.8304845, "lon": -74.0008568 }, + { "lat": 40.8309397, "lon": -74.0004096 }, + { "lat": 40.8310115, "lon": -74.0003371 }, + { "lat": 40.8316265, "lon": -73.9997296 }, + { "lat": 40.8319482, "lon": -73.9994322 } + ], + "tags": { + "highway": "residential", + "name": "Walnut Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Walnut", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11584540, + "bounds": { + "minlat": 40.8523001, + "minlon": -73.9837864, + "maxlat": 40.8528501, + "maxlon": -73.9831030 + }, + "nodes": [ + 103111766, + 5362357994, + 2395506862, + 5362357995, + 2395506861, + 2395506860, + 103177103 + ], + "geometry": [ + { "lat": 40.8528501, "lon": -73.9831685 }, + { "lat": 40.8528069, "lon": -73.9831268 }, + { "lat": 40.8527544, "lon": -73.9831030 }, + { "lat": 40.8526953, "lon": -73.9831055 }, + { "lat": 40.8526450, "lon": -73.9831331 }, + { "lat": 40.8523396, "lon": -73.9833982 }, + { "lat": 40.8523001, "lon": -73.9837864 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Lee Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lee", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11584570, + "bounds": { + "minlat": 40.8319189, + "minlon": -74.0035176, + "maxlat": 40.8323499, + "maxlon": -74.0025110 + }, + "nodes": [ + 103273269, + 103273267, + 103273265, + 103273263, + 11755845435, + 11755845432, + 103209164 + ], + "geometry": [ + { "lat": 40.8323210, "lon": -74.0025110 }, + { "lat": 40.8323396, "lon": -74.0025719 }, + { "lat": 40.8323499, "lon": -74.0026352 }, + { "lat": 40.8323263, "lon": -74.0027257 }, + { "lat": 40.8320384, "lon": -74.0033391 }, + { "lat": 40.8320029, "lon": -74.0034074 }, + { "lat": 40.8319189, "lon": -74.0035176 } + ], + "tags": { + "highway": "residential", + "name": "Englehart Terrace", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Englehart", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11584610, + "bounds": { + "minlat": 40.8814221, + "minlon": -73.9519048, + "maxlat": 40.8840426, + "maxlon": -73.9500605 + }, + "nodes": [ + 6869076045, + 103273537, + 103273538, + 543224595 + ], + "geometry": [ + { "lat": 40.8814221, "lon": -73.9519048 }, + { "lat": 40.8822660, "lon": -73.9514850 }, + { "lat": 40.8833750, "lon": -73.9507020 }, + { "lat": 40.8840426, "lon": -73.9500605 } + ], + "tags": { + "highway": "residential", + "name": "Clifton Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Clifton", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11584645, + "bounds": { + "minlat": 40.8236300, + "minlon": -73.9974940, + "maxlat": 40.8243720, + "maxlon": -73.9960850 + }, + "nodes": [ + 103227824, + 440208192, + 103147954 + ], + "geometry": [ + { "lat": 40.8236300, "lon": -73.9960850 }, + { "lat": 40.8238540, "lon": -73.9965100 }, + { "lat": 40.8243720, "lon": -73.9974940 } + ], + "tags": { + "highway": "residential", + "name": "Ridgefield Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ridgefield", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11584649, + "bounds": { + "minlat": 40.8663606, + "minlon": -73.9927749, + "maxlat": 40.8675940, + "maxlon": -73.9903616 + }, + "nodes": [ + 103273789, + 10301730725, + 5704149040, + 8063721523, + 5704149071, + 10243813017, + 103273787, + 6124217467, + 6124217374, + 8076364219, + 103222201 + ], + "geometry": [ + { "lat": 40.8663606, "lon": -73.9903616 }, + { "lat": 40.8664770, "lon": -73.9905850 }, + { "lat": 40.8666651, "lon": -73.9909458 }, + { "lat": 40.8668523, "lon": -73.9913146 }, + { "lat": 40.8670320, "lon": -73.9916684 }, + { "lat": 40.8670865, "lon": -73.9917741 }, + { "lat": 40.8670963, "lon": -73.9917931 }, + { "lat": 40.8671937, "lon": -73.9919867 }, + { "lat": 40.8672553, "lon": -73.9921080 }, + { "lat": 40.8675233, "lon": -73.9926358 }, + { "lat": 40.8675940, "lon": -73.9927749 } + ], + "tags": { + "highway": "residential", + "name": "Schor Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Schor", + "tiger:name_type": "Ave", + "tiger:reviewed": "yes", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11584681, + "bounds": { + "minlat": 40.8098130, + "minlon": -73.9923654, + "maxlat": 40.8103147, + "maxlon": -73.9920198 + }, + "nodes": [ + 103234095, + 103274177 + ], + "geometry": [ + { "lat": 40.8103147, "lon": -73.9920198 }, + { "lat": 40.8098130, "lon": -73.9923654 } + ], + "tags": { + "highway": "residential", + "name": "Gigante Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gigante", + "tiger:name_base_1": "Gigante", + "tiger:name_type": "Ter", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 11584686, + "bounds": { + "minlat": 40.8150643, + "minlon": -73.9921086, + "maxlat": 40.8154916, + "maxlon": -73.9918453 + }, + "nodes": [ + 103274205, + 103274206, + 7614292235 + ], + "geometry": [ + { "lat": 40.8150643, "lon": -73.9921086 }, + { "lat": 40.8154356, "lon": -73.9919048 }, + { "lat": 40.8154916, "lon": -73.9918453 } + ], + "tags": { + "highway": "residential", + "name": "Cliff Lane", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cliff", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11584796, + "bounds": { + "minlat": 40.8097660, + "minlon": -73.9967400, + "maxlat": 40.8121630, + "maxlon": -73.9948680 + }, + "nodes": [ + 103202149, + 103274944, + 103274942, + 103274939, + 103274937, + 103159370, + 103112770 + ], + "geometry": [ + { "lat": 40.8121630, "lon": -73.9948680 }, + { "lat": 40.8114950, "lon": -73.9955490 }, + { "lat": 40.8114560, "lon": -73.9955930 }, + { "lat": 40.8112940, "lon": -73.9957520 }, + { "lat": 40.8111490, "lon": -73.9958660 }, + { "lat": 40.8108420, "lon": -73.9960492 }, + { "lat": 40.8097660, "lon": -73.9967400 } + ], + "tags": { + "highway": "residential", + "name": "Oakwood Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11584883, + "bounds": { + "minlat": 40.8297704, + "minlon": -73.9787287, + "maxlat": 40.8309850, + "maxlon": -73.9768040 + }, + "nodes": [ + 7494742115, + 103275461, + 7494742031, + 103275463, + 103275465, + 103275469, + 103275471, + 103275474, + 103275476, + 103275478, + 103266116 + ], + "geometry": [ + { "lat": 40.8308590, "lon": -73.9787287 }, + { "lat": 40.8309670, "lon": -73.9786130 }, + { "lat": 40.8309722, "lon": -73.9785999 }, + { "lat": 40.8309850, "lon": -73.9785680 }, + { "lat": 40.8309850, "lon": -73.9785160 }, + { "lat": 40.8309710, "lon": -73.9784780 }, + { "lat": 40.8300660, "lon": -73.9768300 }, + { "lat": 40.8300350, "lon": -73.9768080 }, + { "lat": 40.8299990, "lon": -73.9768040 }, + { "lat": 40.8299670, "lon": -73.9768210 }, + { "lat": 40.8297704, "lon": -73.9770217 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Mayfair Lane", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mayfair", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11584884, + "bounds": { + "minlat": 40.8761621, + "minlon": -73.9578402, + "maxlat": 40.8774760, + "maxlon": -73.9567711 + }, + "nodes": [ + 103275482, + 103172141, + 10059739087, + 103275483 + ], + "geometry": [ + { "lat": 40.8761621, "lon": -73.9578402 }, + { "lat": 40.8767733, "lon": -73.9572860 }, + { "lat": 40.8774060, "lon": -73.9568224 }, + { "lat": 40.8774760, "lon": -73.9567711 } + ], + "tags": { + "highway": "residential", + "name": "Elisa Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elisa", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11584886, + "bounds": { + "minlat": 40.8734990, + "minlon": -74.0021464, + "maxlat": 40.8740029, + "maxlon": -74.0005850 + }, + "nodes": [ + 103093325, + 9871181526, + 9871181524, + 103275489 + ], + "geometry": [ + { "lat": 40.8740029, "lon": -74.0021464 }, + { "lat": 40.8739833, "lon": -74.0020858 }, + { "lat": 40.8739727, "lon": -74.0020528 }, + { "lat": 40.8734990, "lon": -74.0005850 } + ], + "tags": { + "highway": "residential", + "name": "Marine Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Marine", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11584893, + "bounds": { + "minlat": 40.8695191, + "minlon": -73.9689793, + "maxlat": 40.8699590, + "maxlon": -73.9685770 + }, + "nodes": [ + 103189412, + 6902588120, + 103191978 + ], + "geometry": [ + { "lat": 40.8695191, "lon": -73.9689793 }, + { "lat": 40.8696109, "lon": -73.9688954 }, + { "lat": 40.8699590, "lon": -73.9685770 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Adele Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Adele", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11584953, + "bounds": { + "minlat": 40.8131680, + "minlon": -73.9933672, + "maxlat": 40.8139072, + "maxlon": -73.9920380 + }, + "nodes": [ + 103112566, + 7617250026, + 440208178 + ], + "geometry": [ + { "lat": 40.8131680, "lon": -73.9920380 }, + { "lat": 40.8134459, "lon": -73.9925377 }, + { "lat": 40.8139072, "lon": -73.9933672 } + ], + "tags": { + "highway": "residential", + "name": "Main Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11584990, + "bounds": { + "minlat": 40.8480283, + "minlon": -73.9652636, + "maxlat": 40.8484334, + "maxlon": -73.9650403 + }, + "nodes": [ + 103137227, + 752617944 + ], + "geometry": [ + { "lat": 40.8480283, "lon": -73.9652636 }, + { "lat": 40.8484334, "lon": -73.9650403 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Main Street", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11585020, + "bounds": { + "minlat": 40.8422290, + "minlon": -74.0010583, + "maxlat": 40.8434804, + "maxlon": -73.9988837 + }, + "nodes": [ + 103224098, + 10285449796, + 11069009851, + 5976411306, + 10285449795, + 103271812 + ], + "geometry": [ + { "lat": 40.8434804, "lon": -74.0010583 }, + { "lat": 40.8434061, "lon": -74.0009286 }, + { "lat": 40.8432837, "lon": -74.0007184 }, + { "lat": 40.8432320, "lon": -74.0006297 }, + { "lat": 40.8422822, "lon": -73.9989763 }, + { "lat": 40.8422290, "lon": -73.9988837 } + ], + "tags": { + "highway": "residential", + "maxweight": "4 st", + "name": "East Ruby Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ruby", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11585021, + "bounds": { + "minlat": 40.8401490, + "minlon": -73.9963496, + "maxlat": 40.8408001, + "maxlon": -73.9953300 + }, + "nodes": [ + 103190905, + 103225168 + ], + "geometry": [ + { "lat": 40.8408001, "lon": -73.9963496 }, + { "lat": 40.8401490, "lon": -73.9953300 } + ], + "tags": { + "highway": "residential", + "name": "East Ruby Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ruby", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11585030, + "bounds": { + "minlat": 40.8179275, + "minlon": -73.9891679, + "maxlat": 40.8184797, + "maxlon": -73.9885762 + }, + "nodes": [ + 103207060, + 103276532, + 103276534, + 103276535, + 7604260409, + 103276536, + 103207063 + ], + "geometry": [ + { "lat": 40.8179275, "lon": -73.9887455 }, + { "lat": 40.8179859, "lon": -73.9890886 }, + { "lat": 40.8180052, "lon": -73.9891397 }, + { "lat": 40.8180372, "lon": -73.9891679 }, + { "lat": 40.8182231, "lon": -73.9890900 }, + { "lat": 40.8184797, "lon": -73.9889825 }, + { "lat": 40.8183942, "lon": -73.9885762 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11585087, + "bounds": { + "minlat": 40.8270976, + "minlon": -73.9751672, + "maxlat": 40.8280812, + "maxlon": -73.9733867 + }, + "nodes": [ + 103137133, + 1752676651, + 7030913397, + 1752676657, + 1556156751, + 103115598 + ], + "geometry": [ + { "lat": 40.8270976, "lon": -73.9733867 }, + { "lat": 40.8272748, "lon": -73.9737630 }, + { "lat": 40.8272996, "lon": -73.9738065 }, + { "lat": 40.8276514, "lon": -73.9744218 }, + { "lat": 40.8279413, "lon": -73.9748847 }, + { "lat": 40.8280812, "lon": -73.9751672 } + ], + "tags": { + "highway": "residential", + "name": "Dempsey Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dempsey", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11585098, + "bounds": { + "minlat": 40.8303780, + "minlon": -73.9807072, + "maxlat": 40.8314202, + "maxlon": -73.9795033 + }, + "nodes": [ + 103162119, + 103277050, + 103277047, + 103277045, + 103277043, + 103277041, + 103277039, + 103277037, + 103277035, + 7498899597, + 6895111583, + 7498899552, + 7495121706, + 103235747 + ], + "geometry": [ + { "lat": 40.8314202, "lon": -73.9806242 }, + { "lat": 40.8313741, "lon": -73.9806689 }, + { "lat": 40.8313259, "lon": -73.9806852 }, + { "lat": 40.8312779, "lon": -73.9807042 }, + { "lat": 40.8312070, "lon": -73.9807072 }, + { "lat": 40.8311250, "lon": -73.9806876 }, + { "lat": 40.8310641, "lon": -73.9806546 }, + { "lat": 40.8309860, "lon": -73.9805889 }, + { "lat": 40.8309300, "lon": -73.9805152 }, + { "lat": 40.8307537, "lon": -73.9802035 }, + { "lat": 40.8306986, "lon": -73.9801061 }, + { "lat": 40.8306772, "lon": -73.9800658 }, + { "lat": 40.8306356, "lon": -73.9799876 }, + { "lat": 40.8303780, "lon": -73.9795033 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Cumbermeade Road", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cumbermeade", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11585119, + "bounds": { + "minlat": 40.8560040, + "minlon": -73.9824125, + "maxlat": 40.8565159, + "maxlon": -73.9815310 + }, + "nodes": [ + 103123530, + 7426470265, + 7434431186, + 10752348287, + 299172092 + ], + "geometry": [ + { "lat": 40.8560040, "lon": -73.9815310 }, + { "lat": 40.8562193, "lon": -73.9819011 }, + { "lat": 40.8562244, "lon": -73.9819099 }, + { "lat": 40.8564021, "lon": -73.9822155 }, + { "lat": 40.8565159, "lon": -73.9824125 } + ], + "tags": { + "highway": "residential", + "name": "Christie Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Christies", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11585138, + "bounds": { + "minlat": 40.8467896, + "minlon": -73.9676044, + "maxlat": 40.8472805, + "maxlon": -73.9663140 + }, + "nodes": [ + 5106288668, + 7483134214, + 5106288665, + 5106288666, + 5106288678, + 440208270, + 5449302846, + 7292367281, + 5106288675, + 440208740 + ], + "geometry": [ + { "lat": 40.8467896, "lon": -73.9676044 }, + { "lat": 40.8471188, "lon": -73.9674560 }, + { "lat": 40.8472473, "lon": -73.9673981 }, + { "lat": 40.8472653, "lon": -73.9673437 }, + { "lat": 40.8472775, "lon": -73.9672847 }, + { "lat": 40.8472805, "lon": -73.9672135 }, + { "lat": 40.8471537, "lon": -73.9667067 }, + { "lat": 40.8470916, "lon": -73.9664580 }, + { "lat": 40.8470868, "lon": -73.9664390 }, + { "lat": 40.8470501, "lon": -73.9663140 } + ], + "tags": { + "highway": "residential", + "name": "Massa Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Massa", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11585155, + "bounds": { + "minlat": 40.8795410, + "minlon": -73.9765250, + "maxlat": 40.8829766, + "maxlon": -73.9741211 + }, + "nodes": [ + 103267241, + 12021734829, + 103277524, + 12021734828, + 103277526 + ], + "geometry": [ + { "lat": 40.8829766, "lon": -73.9741211 }, + { "lat": 40.8814082, "lon": -73.9752494 }, + { "lat": 40.8813135, "lon": -73.9753175 }, + { "lat": 40.8812020, "lon": -73.9753935 }, + { "lat": 40.8795410, "lon": -73.9765250 } + ], + "tags": { + "highway": "residential", + "name": "Robin Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Robin", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11585167, + "bounds": { + "minlat": 40.8354008, + "minlon": -74.0169420, + "maxlat": 40.8367890, + "maxlon": -74.0144501 + }, + "nodes": [ + 103277590, + 103277588, + 103277586, + 8218954508, + 7136480026, + 103277584, + 8218954514, + 6336909008, + 6336909002, + 103135528 + ], + "geometry": [ + { "lat": 40.8367890, "lon": -74.0169420 }, + { "lat": 40.8366770, "lon": -74.0167720 }, + { "lat": 40.8365620, "lon": -74.0165720 }, + { "lat": 40.8363429, "lon": -74.0161801 }, + { "lat": 40.8362158, "lon": -74.0159529 }, + { "lat": 40.8360832, "lon": -74.0157146 }, + { "lat": 40.8360150, "lon": -74.0155890 }, + { "lat": 40.8358977, "lon": -74.0153732 }, + { "lat": 40.8356353, "lon": -74.0148858 }, + { "lat": 40.8354008, "lon": -74.0144501 } + ], + "tags": { + "highway": "residential", + "name": "Edgewater Avenue West", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11585197, + "bounds": { + "minlat": 40.8460074, + "minlon": -73.9886495, + "maxlat": 40.8489375, + "maxlon": -73.9836872 + }, + "nodes": [ + 103189435, + 103255687, + 103238962, + 103277693, + 103166105, + 103148049, + 103193338, + 5978949639, + 4695808517, + 103250670, + 299385639 + ], + "geometry": [ + { "lat": 40.8489375, "lon": -73.9886495 }, + { "lat": 40.8485252, "lon": -73.9879411 }, + { "lat": 40.8480944, "lon": -73.9872044 }, + { "lat": 40.8476800, "lon": -73.9864910 }, + { "lat": 40.8472600, "lon": -73.9857750 }, + { "lat": 40.8469520, "lon": -73.9852480 }, + { "lat": 40.8468510, "lon": -73.9850750 }, + { "lat": 40.8466010, "lon": -73.9846777 }, + { "lat": 40.8465141, "lon": -73.9845395 }, + { "lat": 40.8464080, "lon": -73.9843710 }, + { "lat": 40.8460074, "lon": -73.9836872 } + ], + "tags": { + "highway": "residential", + "maxweight:signed": "no", + "name": "East Edsall Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edsall", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 11585203, + "bounds": { + "minlat": 40.8369430, + "minlon": -74.0161390, + "maxlat": 40.8380072, + "maxlon": -74.0120042 + }, + "nodes": [ + 103277706, + 103277707, + 103277708, + 103277710, + 103277711, + 6604725760, + 103277713, + 4593318821, + 103277716, + 103277718, + 7209763566, + 103277720, + 103277722, + 103277724, + 103277726, + 7209763579, + 103277727, + 6969360734 + ], + "geometry": [ + { "lat": 40.8369430, "lon": -74.0161390 }, + { "lat": 40.8369680, "lon": -74.0160820 }, + { "lat": 40.8370220, "lon": -74.0159260 }, + { "lat": 40.8370670, "lon": -74.0157350 }, + { "lat": 40.8370970, "lon": -74.0155250 }, + { "lat": 40.8371256, "lon": -74.0150872 }, + { "lat": 40.8371610, "lon": -74.0145440 }, + { "lat": 40.8371624, "lon": -74.0145224 }, + { "lat": 40.8371730, "lon": -74.0143600 }, + { "lat": 40.8372060, "lon": -74.0140910 }, + { "lat": 40.8372313, "lon": -74.0139568 }, + { "lat": 40.8372460, "lon": -74.0138790 }, + { "lat": 40.8372720, "lon": -74.0137760 }, + { "lat": 40.8373110, "lon": -74.0136190 }, + { "lat": 40.8373550, "lon": -74.0134780 }, + { "lat": 40.8377928, "lon": -74.0123350 }, + { "lat": 40.8378418, "lon": -74.0122071 }, + { "lat": 40.8380072, "lon": -74.0120042 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bell Drive", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bell", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11585204, + "bounds": { + "minlat": 40.8365620, + "minlon": -74.0165720, + "maxlat": 40.8369430, + "maxlon": -74.0161390 + }, + "nodes": [ + 103277586, + 103277730, + 103277734, + 103277736, + 103277706 + ], + "geometry": [ + { "lat": 40.8365620, "lon": -74.0165720 }, + { "lat": 40.8367860, "lon": -74.0163860 }, + { "lat": 40.8368500, "lon": -74.0163120 }, + { "lat": 40.8369050, "lon": -74.0162260 }, + { "lat": 40.8369430, "lon": -74.0161390 } + ], + "tags": { + "highway": "residential", + "name": "Bell Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bell", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11585253, + "bounds": { + "minlat": 40.8276514, + "minlon": -73.9748847, + "maxlat": 40.8290178, + "maxlon": -73.9735680 + }, + "nodes": [ + 1556156751, + 1752676668, + 103278016, + 103278018, + 103278019, + 103278021, + 103278023, + 103278025, + 103278026, + 103278028, + 103278030, + 103278032, + 8374631215, + 103278035, + 1752676659, + 1752676657 + ], + "geometry": [ + { "lat": 40.8279413, "lon": -73.9748847 }, + { "lat": 40.8280074, "lon": -73.9748215 }, + { "lat": 40.8281378, "lon": -73.9746986 }, + { "lat": 40.8282904, "lon": -73.9746262 }, + { "lat": 40.8284404, "lon": -73.9745510 }, + { "lat": 40.8285980, "lon": -73.9745440 }, + { "lat": 40.8288477, "lon": -73.9745146 }, + { "lat": 40.8290178, "lon": -73.9744762 }, + { "lat": 40.8288181, "lon": -73.9741544 }, + { "lat": 40.8286141, "lon": -73.9738346 }, + { "lat": 40.8284408, "lon": -73.9735680 }, + { "lat": 40.8282330, "lon": -73.9737413 }, + { "lat": 40.8281235, "lon": -73.9738577 }, + { "lat": 40.8278445, "lon": -73.9741544 }, + { "lat": 40.8277000, "lon": -73.9743072 }, + { "lat": 40.8276514, "lon": -73.9744218 } + ], + "tags": { + "highway": "residential", + "name": "Panorama Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Panorama", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11585264, + "bounds": { + "minlat": 40.8775275, + "minlon": -74.0216520, + "maxlat": 40.8781300, + "maxlon": -74.0197390 + }, + "nodes": [ + 103278098, + 103229765 + ], + "geometry": [ + { "lat": 40.8775275, "lon": -74.0197390 }, + { "lat": 40.8781300, "lon": -74.0216520 } + ], + "tags": { + "highway": "residential", + "name": "Queens Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Queens", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11585297, + "bounds": { + "minlat": 40.8312946, + "minlon": -73.9939422, + "maxlat": 40.8321453, + "maxlon": -73.9924549 + }, + "nodes": [ + 103147984, + 13527758468, + 103278347, + 103216046 + ], + "geometry": [ + { "lat": 40.8312946, "lon": -73.9924549 }, + { "lat": 40.8313566, "lon": -73.9925617 }, + { "lat": 40.8318114, "lon": -73.9933606 }, + { "lat": 40.8321453, "lon": -73.9939422 } + ], + "tags": { + "highway": "residential", + "name": "Hillcrest Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillcrest", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11585299, + "bounds": { + "minlat": 40.8684723, + "minlon": -73.9859264, + "maxlat": 40.8724720, + "maxlon": -73.9824440 + }, + "nodes": [ + 103264936, + 10277202032, + 6107676757, + 103135898, + 103262302, + 103225053, + 103203326 + ], + "geometry": [ + { "lat": 40.8684723, "lon": -73.9859264 }, + { "lat": 40.8685560, "lon": -73.9858631 }, + { "lat": 40.8694926, "lon": -73.9851838 }, + { "lat": 40.8698270, "lon": -73.9849493 }, + { "lat": 40.8704420, "lon": -73.9845164 }, + { "lat": 40.8710726, "lon": -73.9838706 }, + { "lat": 40.8724720, "lon": -73.9824440 } + ], + "tags": { + "highway": "residential", + "name": "Hillcrest Avenue", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillcrest", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11585311, + "bounds": { + "minlat": 40.8663239, + "minlon": -73.9682497, + "maxlat": 40.8678655, + "maxlon": -73.9656405 + }, + "nodes": [ + 103278389, + 103233874, + 103142185, + 103278391, + 440215017, + 103278395 + ], + "geometry": [ + { "lat": 40.8663239, "lon": -73.9656405 }, + { "lat": 40.8667899, "lon": -73.9664305 }, + { "lat": 40.8671939, "lon": -73.9671145 }, + { "lat": 40.8675959, "lon": -73.9677955 }, + { "lat": 40.8676694, "lon": -73.9679227 }, + { "lat": 40.8678655, "lon": -73.9682497 } + ], + "tags": { + "highway": "residential", + "name": "Hillcrest Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillcrest", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11585325, + "bounds": { + "minlat": 40.8517032, + "minlon": -73.9842889, + "maxlat": 40.8517447, + "maxlon": -73.9835089 + }, + "nodes": [ + 103246872, + 103177094 + ], + "geometry": [ + { "lat": 40.8517447, "lon": -73.9835089 }, + { "lat": 40.8517032, "lon": -73.9842889 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Ridge Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ridge", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11585423, + "bounds": { + "minlat": 40.8719710, + "minlon": -73.9606720, + "maxlat": 40.8736300, + "maxlon": -73.9594440 + }, + "nodes": [ + 103213803, + 103279174, + 103279175, + 103279179 + ], + "geometry": [ + { "lat": 40.8719710, "lon": -73.9606720 }, + { "lat": 40.8730010, "lon": -73.9598160 }, + { "lat": 40.8731660, "lon": -73.9597010 }, + { "lat": 40.8736300, "lon": -73.9594440 } + ], + "tags": { + "highway": "residential", + "name": "Marietta Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Marietta", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11585533, + "bounds": { + "minlat": 40.8525710, + "minlon": -73.9645551, + "maxlat": 40.8526089, + "maxlon": -73.9642015 + }, + "nodes": [ + 103195198, + 5449368216, + 7930510618, + 4204767289 + ], + "geometry": [ + { "lat": 40.8525710, "lon": -73.9642015 }, + { "lat": 40.8525838, "lon": -73.9643370 }, + { "lat": 40.8525961, "lon": -73.9644506 }, + { "lat": 40.8526089, "lon": -73.9645551 } + ], + "tags": { + "highway": "primary", + "name": "Bridge Plaza South", + "name_1": "Kelby Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "|right" + } +}, +{ + "type": "way", + "id": 11585563, + "bounds": { + "minlat": 40.8346667, + "minlon": -74.0129069, + "maxlat": 40.8359657, + "maxlon": -74.0118573 + }, + "nodes": [ + 103209183, + 103125769 + ], + "geometry": [ + { "lat": 40.8346667, "lon": -74.0129069 }, + { "lat": 40.8359657, "lon": -74.0118573 } + ], + "tags": { + "highway": "residential", + "name": "Lowe Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lowe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11585577, + "bounds": { + "minlat": 40.8255775, + "minlon": -73.9911751, + "maxlat": 40.8275385, + "maxlon": -73.9877096 + }, + "nodes": [ + 103245943, + 13525873311, + 7567593084, + 7567593085, + 7570220981, + 103281224, + 103247476 + ], + "geometry": [ + { "lat": 40.8255775, "lon": -73.9877096 }, + { "lat": 40.8256207, "lon": -73.9877866 }, + { "lat": 40.8257935, "lon": -73.9880889 }, + { "lat": 40.8258210, "lon": -73.9881372 }, + { "lat": 40.8259448, "lon": -73.9883547 }, + { "lat": 40.8267205, "lon": -73.9897172 }, + { "lat": 40.8275385, "lon": -73.9911751 } + ], + "tags": { + "highway": "residential", + "name": "Washington Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11585584, + "bounds": { + "minlat": 40.8620131, + "minlon": -73.9591282, + "maxlat": 40.8625031, + "maxlon": -73.9582902 + }, + "nodes": [ + 103195228, + 7393404729, + 103281348 + ], + "geometry": [ + { "lat": 40.8620131, "lon": -73.9582902 }, + { "lat": 40.8623133, "lon": -73.9588036 }, + { "lat": 40.8625031, "lon": -73.9591282 } + ], + "tags": { + "highway": "residential", + "name": "Washington Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11585595, + "bounds": { + "minlat": 40.8216982, + "minlon": -73.9818833, + "maxlat": 40.8222726, + "maxlon": -73.9808710 + }, + "nodes": [ + 103281605, + 103195294 + ], + "geometry": [ + { "lat": 40.8216982, "lon": -73.9808710 }, + { "lat": 40.8222726, "lon": -73.9818833 } + ], + "tags": { + "highway": "residential", + "name": "Washington Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11585614, + "bounds": { + "minlat": 40.8224927, + "minlon": -73.9877532, + "maxlat": 40.8242909, + "maxlon": -73.9860308 + }, + "nodes": [ + 4695282823, + 13539905112, + 4695282824, + 4695282825, + 4695282826, + 7557491414, + 4695282827, + 7557454991, + 7557454988, + 4695282828, + 12394165125, + 4695282829, + 12394165147, + 2814624063, + 2814624062, + 12394165105, + 12394165119, + 12394165146, + 7557435240, + 2814624061, + 103110914 + ], + "geometry": [ + { "lat": 40.8224927, "lon": -73.9877532 }, + { "lat": 40.8225157, "lon": -73.9876419 }, + { "lat": 40.8225238, "lon": -73.9876026 }, + { "lat": 40.8225471, "lon": -73.9875476 }, + { "lat": 40.8225938, "lon": -73.9874993 }, + { "lat": 40.8226814, "lon": -73.9874384 }, + { "lat": 40.8232687, "lon": -73.9870299 }, + { "lat": 40.8233763, "lon": -73.9869539 }, + { "lat": 40.8235225, "lon": -73.9868505 }, + { "lat": 40.8236924, "lon": -73.9867304 }, + { "lat": 40.8237751, "lon": -73.9867062 }, + { "lat": 40.8242909, "lon": -73.9863569 }, + { "lat": 40.8242385, "lon": -73.9863257 }, + { "lat": 40.8242148, "lon": -73.9862994 }, + { "lat": 40.8241232, "lon": -73.9860679 }, + { "lat": 40.8241047, "lon": -73.9860443 }, + { "lat": 40.8240828, "lon": -73.9860308 }, + { "lat": 40.8240609, "lon": -73.9860329 }, + { "lat": 40.8237823, "lon": -73.9861964 }, + { "lat": 40.8237255, "lon": -73.9862071 }, + { "lat": 40.8235277, "lon": -73.9863450 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 11585615, + "bounds": { + "minlat": 40.8309000, + "minlon": -73.9826181, + "maxlat": 40.8312052, + "maxlon": -73.9825352 + }, + "nodes": [ + 6895127599, + 103307427 + ], + "geometry": [ + { "lat": 40.8309000, "lon": -73.9826181 }, + { "lat": 40.8312052, "lon": -73.9825352 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Abbott Boulevard", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11585623, + "bounds": { + "minlat": 40.8191591, + "minlon": -73.9838414, + "maxlat": 40.8196661, + "maxlon": -73.9829633 + }, + "nodes": [ + 103282164, + 103198453 + ], + "geometry": [ + { "lat": 40.8191591, "lon": -73.9829633 }, + { "lat": 40.8196661, "lon": -73.9838414 } + ], + "tags": { + "highway": "residential", + "name": "Claremont Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Claremont", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11585634, + "bounds": { + "minlat": 40.8598410, + "minlon": -73.9837620, + "maxlat": 40.8621040, + "maxlon": -73.9822040 + }, + "nodes": [ + 103282235, + 10122889692, + 103204853 + ], + "geometry": [ + { "lat": 40.8598410, "lon": -73.9837620 }, + { "lat": 40.8599380, "lon": -73.9836971 }, + { "lat": 40.8621040, "lon": -73.9822040 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Linden Terrace", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linden", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11585635, + "bounds": { + "minlat": 40.8595650, + "minlon": -73.9841910, + "maxlat": 40.8598630, + "maxlon": -73.9838940 + }, + "nodes": [ + 103282240, + 10122889691, + 103282242 + ], + "geometry": [ + { "lat": 40.8595650, "lon": -73.9841910 }, + { "lat": 40.8597971, "lon": -73.9839238 }, + { "lat": 40.8598630, "lon": -73.9838940 } + ], + "tags": { + "highway": "residential", + "name": "Chestnut Street", + "oneway": "yes", + "sidewalk": "right", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linden", + "tiger:name_type": "Ter", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11585650, + "bounds": { + "minlat": 40.8703967, + "minlon": -74.0214250, + "maxlat": 40.8731506, + "maxlon": -74.0139498 + }, + "nodes": [ + 440205986, + 440205983, + 440205984, + 103130846, + 5772182046, + 6875540103, + 103187261, + 5772182050, + 7137114086, + 103115268, + 103239391, + 6612000201, + 6612000200, + 6592337969, + 103169824, + 6592337980, + 6612000193, + 103200395, + 103231161, + 103124977, + 6592318448, + 7126696309, + 475230334, + 6592337395, + 11135782039, + 11135782040, + 103214399 + ], + "geometry": [ + { "lat": 40.8731506, "lon": -74.0214250 }, + { "lat": 40.8729090, "lon": -74.0208150 }, + { "lat": 40.8728960, "lon": -74.0207860 }, + { "lat": 40.8728799, "lon": -74.0207444 }, + { "lat": 40.8727074, "lon": -74.0202777 }, + { "lat": 40.8726336, "lon": -74.0200765 }, + { "lat": 40.8724560, "lon": -74.0195920 }, + { "lat": 40.8723703, "lon": -74.0193589 }, + { "lat": 40.8722965, "lon": -74.0191582 }, + { "lat": 40.8720370, "lon": -74.0184520 }, + { "lat": 40.8719120, "lon": -74.0181100 }, + { "lat": 40.8717572, "lon": -74.0176791 }, + { "lat": 40.8717070, "lon": -74.0175395 }, + { "lat": 40.8716396, "lon": -74.0173518 }, + { "lat": 40.8716170, "lon": -74.0172890 }, + { "lat": 40.8714878, "lon": -74.0169299 }, + { "lat": 40.8714170, "lon": -74.0167332 }, + { "lat": 40.8712100, "lon": -74.0161580 }, + { "lat": 40.8711960, "lon": -74.0161180 }, + { "lat": 40.8707796, "lon": -74.0150484 }, + { "lat": 40.8707235, "lon": -74.0148873 }, + { "lat": 40.8705770, "lon": -74.0144669 }, + { "lat": 40.8705375, "lon": -74.0143536 }, + { "lat": 40.8705271, "lon": -74.0143238 }, + { "lat": 40.8705181, "lon": -74.0142978 }, + { "lat": 40.8704532, "lon": -74.0141131 }, + { "lat": 40.8703967, "lon": -74.0139498 } + ], + "tags": { + "highway": "residential", + "name": "Fort Lee Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11585651, + "bounds": { + "minlat": 40.8587250, + "minlon": -73.9874633, + "maxlat": 40.8614518, + "maxlon": -73.9813380 + }, + "nodes": [ + 4207180640, + 6103601757, + 6109949862, + 6109949860, + 8073350905, + 103117245, + 6111847426, + 10252387550, + 103093236, + 103282425, + 103282427, + 103185292, + 103282429, + 103282431, + 103282242, + 103282235, + 103282433, + 103282435, + 103260362, + 103282438, + 103282440, + 103282442, + 103282444, + 103282446, + 103130773, + 10122889694, + 103254495, + 103185965 + ], + "geometry": [ + { "lat": 40.8614518, "lon": -73.9874633 }, + { "lat": 40.8613634, "lon": -73.9873132 }, + { "lat": 40.8612448, "lon": -73.9871077 }, + { "lat": 40.8611784, "lon": -73.9869872 }, + { "lat": 40.8610332, "lon": -73.9867439 }, + { "lat": 40.8609978, "lon": -73.9866828 }, + { "lat": 40.8609227, "lon": -73.9865563 }, + { "lat": 40.8606633, "lon": -73.9861015 }, + { "lat": 40.8603980, "lon": -73.9856750 }, + { "lat": 40.8602060, "lon": -73.9853460 }, + { "lat": 40.8601230, "lon": -73.9851660 }, + { "lat": 40.8600710, "lon": -73.9850200 }, + { "lat": 40.8600280, "lon": -73.9848610 }, + { "lat": 40.8600070, "lon": -73.9847570 }, + { "lat": 40.8598630, "lon": -73.9838940 }, + { "lat": 40.8598410, "lon": -73.9837620 }, + { "lat": 40.8597240, "lon": -73.9830670 }, + { "lat": 40.8596850, "lon": -73.9828890 }, + { "lat": 40.8596370, "lon": -73.9827190 }, + { "lat": 40.8595620, "lon": -73.9825050 }, + { "lat": 40.8594740, "lon": -73.9823040 }, + { "lat": 40.8593826, "lon": -73.9821090 }, + { "lat": 40.8592681, "lon": -73.9819176 }, + { "lat": 40.8591517, "lon": -73.9817703 }, + { "lat": 40.8590754, "lon": -73.9816914 }, + { "lat": 40.8588502, "lon": -73.9814669 }, + { "lat": 40.8588100, "lon": -73.9814270 }, + { "lat": 40.8587250, "lon": -73.9813380 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Fort Lee Road", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11585656, + "bounds": { + "minlat": 40.8799373, + "minlon": -74.0233413, + "maxlat": 40.8814899, + "maxlon": -74.0184650 + }, + "nodes": [ + 103280828, + 12542600268, + 12542600271, + 12542600272, + 12542600266, + 12542631105 + ], + "geometry": [ + { "lat": 40.8799373, "lon": -74.0184650 }, + { "lat": 40.8805263, "lon": -74.0203680 }, + { "lat": 40.8812578, "lon": -74.0227706 }, + { "lat": 40.8813177, "lon": -74.0228574 }, + { "lat": 40.8813563, "lon": -74.0229134 }, + { "lat": 40.8814899, "lon": -74.0233413 } + ], + "tags": { + "highway": "residential", + "name": "Herrick Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Herrick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11585657, + "bounds": { + "minlat": 40.8778429, + "minlon": -74.0185139, + "maxlat": 40.8798520, + "maxlon": -74.0124195 + }, + "nodes": [ + 4469441052, + 4469441053, + 103282521, + 103197530, + 103282522, + 103280826 + ], + "geometry": [ + { "lat": 40.8778429, "lon": -74.0124195 }, + { "lat": 40.8778896, "lon": -74.0124785 }, + { "lat": 40.8779296, "lon": -74.0125780 }, + { "lat": 40.8783920, "lon": -74.0139935 }, + { "lat": 40.8791485, "lon": -74.0163187 }, + { "lat": 40.8798520, "lon": -74.0185139 } + ], + "tags": { + "highway": "residential", + "name": "Herrick Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Herrick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11585675, + "bounds": { + "minlat": 40.8224320, + "minlon": -73.9925426, + "maxlat": 40.8251446, + "maxlon": -73.9899623 + }, + "nodes": [ + 440208181, + 103213231, + 103150104 + ], + "geometry": [ + { "lat": 40.8224320, "lon": -73.9925426 }, + { "lat": 40.8235591, "lon": -73.9914730 }, + { "lat": 40.8251446, "lon": -73.9899623 } + ], + "tags": { + "highway": "residential", + "name": "Olympia Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Olympia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11585787, + "bounds": { + "minlat": 40.8663386, + "minlon": -73.9666491, + "maxlat": 40.8700616, + "maxlon": -73.9600014 + }, + "nodes": [ + 103215713, + 5108579130, + 103284209, + 103236646, + 9287376889, + 103256521, + 103284210, + 103117831, + 103284212, + 440215024 + ], + "geometry": [ + { "lat": 40.8663386, "lon": -73.9600014 }, + { "lat": 40.8666019, "lon": -73.9604623 }, + { "lat": 40.8672230, "lon": -73.9616040 }, + { "lat": 40.8674341, "lon": -73.9619781 }, + { "lat": 40.8678035, "lon": -73.9626457 }, + { "lat": 40.8679535, "lon": -73.9629168 }, + { "lat": 40.8683460, "lon": -73.9636150 }, + { "lat": 40.8685250, "lon": -73.9639350 }, + { "lat": 40.8695250, "lon": -73.9657250 }, + { "lat": 40.8700616, "lon": -73.9666491 } + ], + "tags": { + "highway": "residential", + "name": "Irving Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Irving", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11585788, + "bounds": { + "minlat": 40.8730110, + "minlon": -73.9707930, + "maxlat": 40.8731190, + "maxlon": -73.9704090 + }, + "nodes": [ + 103284216, + 103191947 + ], + "geometry": [ + { "lat": 40.8731190, "lon": -73.9707930 }, + { "lat": 40.8730110, "lon": -73.9704090 } + ], + "tags": { + "highway": "residential", + "name": "Irving Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Irving", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11585792, + "bounds": { + "minlat": 40.8349699, + "minlon": -73.9719472, + "maxlat": 40.8371500, + "maxlon": -73.9712482 + }, + "nodes": [ + 103153927, + 7292367449, + 3637749848, + 103284278, + 3637749847, + 3637749846, + 103093403 + ], + "geometry": [ + { "lat": 40.8371500, "lon": -73.9712482 }, + { "lat": 40.8371137, "lon": -73.9712567 }, + { "lat": 40.8364613, "lon": -73.9714089 }, + { "lat": 40.8358794, "lon": -73.9715761 }, + { "lat": 40.8353448, "lon": -73.9717139 }, + { "lat": 40.8352650, "lon": -73.9717500 }, + { "lat": 40.8349699, "lon": -73.9719472 } + ], + "tags": { + "highway": "residential", + "name": "North Glen Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glen", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11585800, + "bounds": { + "minlat": 40.8145452, + "minlon": -73.9893762, + "maxlat": 40.8168615, + "maxlon": -73.9871332 + }, + "nodes": [ + 103111141, + 7599417623, + 7596426703, + 103225089, + 103284396, + 1060050602, + 7596426707, + 7599417617, + 103284394, + 103284390, + 103284388, + 103284386 + ], + "geometry": [ + { "lat": 40.8168615, "lon": -73.9871332 }, + { "lat": 40.8167989, "lon": -73.9872415 }, + { "lat": 40.8167231, "lon": -73.9873338 }, + { "lat": 40.8156649, "lon": -73.9881875 }, + { "lat": 40.8150734, "lon": -73.9886726 }, + { "lat": 40.8149826, "lon": -73.9887532 }, + { "lat": 40.8149596, "lon": -73.9887805 }, + { "lat": 40.8149407, "lon": -73.9888029 }, + { "lat": 40.8148900, "lon": -73.9888628 }, + { "lat": 40.8147238, "lon": -73.9890829 }, + { "lat": 40.8146282, "lon": -73.9892217 }, + { "lat": 40.8145452, "lon": -73.9893762 } + ], + "tags": { + "highway": "residential", + "name": "Adolphus Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Adolphus", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11585811, + "bounds": { + "minlat": 40.8719100, + "minlon": -74.0030504, + "maxlat": 40.8724556, + "maxlon": -74.0014850 + }, + "nodes": [ + 103093316, + 9871150042, + 103284531, + 103284533, + 103157642 + ], + "geometry": [ + { "lat": 40.8724556, "lon": -74.0030504 }, + { "lat": 40.8724213, "lon": -74.0029580 }, + { "lat": 40.8719270, "lon": -74.0016270 }, + { "lat": 40.8719100, "lon": -74.0015510 }, + { "lat": 40.8719100, "lon": -74.0014850 } + ], + "tags": { + "highway": "residential", + "name": "Fabry Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fabry", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11585819, + "bounds": { + "minlat": 40.8212090, + "minlon": -73.9902898, + "maxlat": 40.8238294, + "maxlon": -73.9876036 + }, + "nodes": [ + 103201216, + 7578880273, + 103213248, + 7578422375, + 7578396569, + 103284694, + 103284696, + 103284698, + 103284700, + 7576828000, + 13539905113, + 103207075 + ], + "geometry": [ + { "lat": 40.8212090, "lon": -73.9902898 }, + { "lat": 40.8217892, "lon": -73.9897341 }, + { "lat": 40.8222766, "lon": -73.9892673 }, + { "lat": 40.8228831, "lon": -73.9886738 }, + { "lat": 40.8229015, "lon": -73.9886558 }, + { "lat": 40.8229621, "lon": -73.9885965 }, + { "lat": 40.8231901, "lon": -73.9883605 }, + { "lat": 40.8233899, "lon": -73.9881256 }, + { "lat": 40.8235214, "lon": -73.9879832 }, + { "lat": 40.8237201, "lon": -73.9877384 }, + { "lat": 40.8237494, "lon": -73.9877023 }, + { "lat": 40.8238294, "lon": -73.9876036 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "name": "Kearney Avenue", + "oneway": "-1", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kearney", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11585872, + "bounds": { + "minlat": 40.8234932, + "minlon": -73.9859630, + "maxlat": 40.8240492, + "maxlon": -73.9849824 + }, + "nodes": [ + 103235717, + 7704458729 + ], + "geometry": [ + { "lat": 40.8234932, "lon": -73.9849824 }, + { "lat": 40.8240492, "lon": -73.9859630 } + ], + "tags": { + "highway": "residential", + "name": "Delia Place", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Delia", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 11585873, + "bounds": { + "minlat": 40.8630960, + "minlon": -73.9823190, + "maxlat": 40.8638010, + "maxlon": -73.9818000 + }, + "nodes": [ + 103234401, + 10179119903, + 103220629 + ], + "geometry": [ + { "lat": 40.8630960, "lon": -73.9823190 }, + { "lat": 40.8631289, "lon": -73.9822950 }, + { "lat": 40.8638010, "lon": -73.9818000 } + ], + "tags": { + "highway": "residential", + "name": "Overlook Terrace", + "sidewalk": "left", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overlook", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11585883, + "bounds": { + "minlat": 40.8395250, + "minlon": -73.9855860, + "maxlat": 40.8420410, + "maxlon": -73.9830630 + }, + "nodes": [ + 103111267, + 103174037, + 103160940 + ], + "geometry": [ + { "lat": 40.8395250, "lon": -73.9855860 }, + { "lat": 40.8406668, "lon": -73.9844659 }, + { "lat": 40.8420410, "lon": -73.9830630 } + ], + "tags": { + "highway": "residential", + "name": "16th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "16th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11585910, + "bounds": { + "minlat": 40.8653832, + "minlon": -73.9847210, + "maxlat": 40.8662300, + "maxlon": -73.9827624 + }, + "nodes": [ + 103224122, + 8073299998, + 8075114236, + 103285673, + 103285675, + 103285677 + ], + "geometry": [ + { "lat": 40.8662300, "lon": -73.9847210 }, + { "lat": 40.8661760, "lon": -73.9846008 }, + { "lat": 40.8661635, "lon": -73.9845689 }, + { "lat": 40.8661090, "lon": -73.9844423 }, + { "lat": 40.8658340, "lon": -73.9838160 }, + { "lat": 40.8653832, "lon": -73.9827624 } + ], + "tags": { + "highway": "residential", + "name": "Harold Avenue", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harold", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11585911, + "bounds": { + "minlat": 40.8568649, + "minlon": -73.9754162, + "maxlat": 40.8568903, + "maxlon": -73.9753459 + }, + "nodes": [ + 103131998, + 7419012845 + ], + "geometry": [ + { "lat": 40.8568903, "lon": -73.9753459 }, + { "lat": 40.8568649, "lon": -73.9754162 } + ], + "tags": { + "highway": "secondary", + "name": "South Bridge Plaza", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Plz", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11585948, + "bounds": { + "minlat": 40.8228824, + "minlon": -73.9777143, + "maxlat": 40.8239966, + "maxlon": -73.9758823 + }, + "nodes": [ + 103115589, + 103221822, + 5362546371, + 103119568 + ], + "geometry": [ + { "lat": 40.8239966, "lon": -73.9777143 }, + { "lat": 40.8236119, "lon": -73.9770881 }, + { "lat": 40.8233479, "lon": -73.9766518 }, + { "lat": 40.8228824, "lon": -73.9758823 } + ], + "tags": { + "highway": "residential", + "name": "Garden Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Garden", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11585984, + "bounds": { + "minlat": 40.8225100, + "minlon": -73.9983050, + "maxlat": 40.8231160, + "maxlon": -73.9971340 + }, + "nodes": [ + 103147951, + 440208194, + 103227823 + ], + "geometry": [ + { "lat": 40.8231160, "lon": -73.9983050 }, + { "lat": 40.8226280, "lon": -73.9973570 }, + { "lat": 40.8225100, "lon": -73.9971340 } + ], + "tags": { + "highway": "residential", + "name": "Sunset Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sunset", + "tiger:name_type": "Ter", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586004, + "bounds": { + "minlat": 40.8466279, + "minlon": -73.9965100, + "maxlat": 40.8498300, + "maxlon": -73.9909698 + }, + "nodes": [ + 103142411, + 5976411301, + 5970474303, + 5976411310, + 103256373, + 103236650, + 103286690, + 103271821, + 5959019497, + 103110258, + 103286691, + 103189433 + ], + "geometry": [ + { "lat": 40.8498300, "lon": -73.9965100 }, + { "lat": 40.8495759, "lon": -73.9960723 }, + { "lat": 40.8494561, "lon": -73.9958658 }, + { "lat": 40.8493891, "lon": -73.9957504 }, + { "lat": 40.8492090, "lon": -73.9954400 }, + { "lat": 40.8487870, "lon": -73.9947140 }, + { "lat": 40.8483720, "lon": -73.9940000 }, + { "lat": 40.8479510, "lon": -73.9932750 }, + { "lat": 40.8477365, "lon": -73.9929060 }, + { "lat": 40.8474970, "lon": -73.9924940 }, + { "lat": 40.8470250, "lon": -73.9916870 }, + { "lat": 40.8466279, "lon": -73.9909698 } + ], + "tags": { + "highway": "residential", + "maxheight:signed": "no", + "name": "East Palisades Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisades", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586007, + "bounds": { + "minlat": 40.8776004, + "minlon": -73.9552693, + "maxlat": 40.8783471, + "maxlon": -73.9545313 + }, + "nodes": [ + 103142106, + 10059739090, + 10059739091, + 103286724 + ], + "geometry": [ + { "lat": 40.8776004, "lon": -73.9552693 }, + { "lat": 40.8776755, "lon": -73.9551950 }, + { "lat": 40.8782655, "lon": -73.9546120 }, + { "lat": 40.8783471, "lon": -73.9545313 } + ], + "tags": { + "highway": "residential", + "name": "Forest Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Forest", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11586008, + "bounds": { + "minlat": 40.8768205, + "minlon": -73.9555480, + "maxlat": 40.8773999, + "maxlon": -73.9549654 + }, + "nodes": [ + 103286728, + 10059739088, + 10059739089, + 103142103 + ], + "geometry": [ + { "lat": 40.8768205, "lon": -73.9555480 }, + { "lat": 40.8768973, "lon": -73.9554679 }, + { "lat": 40.8773330, "lon": -73.9550323 }, + { "lat": 40.8773999, "lon": -73.9549654 } + ], + "tags": { + "highway": "residential", + "name": "Forest Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Forest", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11586029, + "bounds": { + "minlat": 40.8803801, + "minlon": -74.0117657, + "maxlat": 40.8808402, + "maxlon": -74.0115159 + }, + "nodes": [ + 103249320, + 103286934, + 103286936 + ], + "geometry": [ + { "lat": 40.8808402, "lon": -74.0115159 }, + { "lat": 40.8804344, "lon": -74.0117318 }, + { "lat": 40.8803801, "lon": -74.0117657 } + ], + "tags": { + "highway": "residential", + "name": "Johnson Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Johnson", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11586043, + "bounds": { + "minlat": 40.8789050, + "minlon": -73.9575280, + "maxlat": 40.8811427, + "maxlon": -73.9561646 + }, + "nodes": [ + 103247974, + 10059739080, + 103287279, + 103287281, + 103287283, + 103287285, + 103287287, + 103287289, + 103287291, + 103287293, + 103287295 + ], + "geometry": [ + { "lat": 40.8789050, "lon": -73.9574716 }, + { "lat": 40.8790084, "lon": -73.9574863 }, + { "lat": 40.8793030, "lon": -73.9575280 }, + { "lat": 40.8794290, "lon": -73.9575280 }, + { "lat": 40.8795540, "lon": -73.9575080 }, + { "lat": 40.8796760, "lon": -73.9574670 }, + { "lat": 40.8797940, "lon": -73.9574080 }, + { "lat": 40.8799050, "lon": -73.9573300 }, + { "lat": 40.8800080, "lon": -73.9572350 }, + { "lat": 40.8800730, "lon": -73.9571610 }, + { "lat": 40.8811427, "lon": -73.9561646 } + ], + "tags": { + "highway": "residential", + "name": "Skyline Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Skyline", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11586045, + "bounds": { + "minlat": 40.8624667, + "minlon": -73.9714098, + "maxlat": 40.8633229, + "maxlon": -73.9705178 + }, + "nodes": [ + 103194890, + 103287338, + 3531038440, + 3531038437, + 103287340, + 3531038434 + ], + "geometry": [ + { "lat": 40.8633229, "lon": -73.9714098 }, + { "lat": 40.8632488, "lon": -73.9712370 }, + { "lat": 40.8631305, "lon": -73.9710377 }, + { "lat": 40.8630560, "lon": -73.9709399 }, + { "lat": 40.8629585, "lon": -73.9708621 }, + { "lat": 40.8624667, "lon": -73.9705178 } + ], + "tags": { + "highway": "residential", + "name": "Skyline Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Skyline", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586081, + "bounds": { + "minlat": 40.8602412, + "minlon": -74.0169380, + "maxlat": 40.8606970, + "maxlon": -74.0148703 + }, + "nodes": [ + 103214372, + 103212084, + 103212060, + 103287640, + 103287642 + ], + "geometry": [ + { "lat": 40.8606970, "lon": -74.0169380 }, + { "lat": 40.8604643, "lon": -74.0158178 }, + { "lat": 40.8603721, "lon": -74.0154071 }, + { "lat": 40.8602916, "lon": -74.0150465 }, + { "lat": 40.8602412, "lon": -74.0148703 } + ], + "tags": { + "highway": "residential", + "name": "East Grand Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11586088, + "bounds": { + "minlat": 40.8612451, + "minlon": -73.9909881, + "maxlat": 40.8626794, + "maxlon": -73.9895107 + }, + "nodes": [ + 103287708, + 10117799067, + 103282424 + ], + "geometry": [ + { "lat": 40.8612451, "lon": -73.9909881 }, + { "lat": 40.8626213, "lon": -73.9895826 }, + { "lat": 40.8626794, "lon": -73.9895107 } + ], + "tags": { + "highway": "residential", + "name": "Gladwin Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gladwin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11586091, + "bounds": { + "minlat": 40.8723372, + "minlon": -73.9766530, + "maxlat": 40.8732823, + "maxlon": -73.9756469 + }, + "nodes": [ + 103134268, + 530806044, + 103287735, + 392522319, + 392522293, + 530806086, + 530806100, + 530806077, + 392522294, + 530806196, + 530806225, + 530806051, + 530806062, + 530806110, + 530806057, + 530806120, + 530806138, + 530806039, + 530806044 + ], + "geometry": [ + { "lat": 40.8723372, "lon": -73.9766530 }, + { "lat": 40.8723980, "lon": -73.9763313 }, + { "lat": 40.8724215, "lon": -73.9762067 }, + { "lat": 40.8724735, "lon": -73.9761123 }, + { "lat": 40.8727276, "lon": -73.9759162 }, + { "lat": 40.8730427, "lon": -73.9757742 }, + { "lat": 40.8731271, "lon": -73.9756832 }, + { "lat": 40.8731841, "lon": -73.9756469 }, + { "lat": 40.8732447, "lon": -73.9756647 }, + { "lat": 40.8732823, "lon": -73.9757430 }, + { "lat": 40.8732823, "lon": -73.9758157 }, + { "lat": 40.8732372, "lon": -73.9758937 }, + { "lat": 40.8730859, "lon": -73.9759976 }, + { "lat": 40.8729818, "lon": -73.9760262 }, + { "lat": 40.8728187, "lon": -73.9760106 }, + { "lat": 40.8727598, "lon": -73.9760651 }, + { "lat": 40.8726832, "lon": -73.9762132 }, + { "lat": 40.8725653, "lon": -73.9763353 }, + { "lat": 40.8723980, "lon": -73.9763313 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Markham Circle", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Markham", + "tiger:name_type": "Cir", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11586127, + "bounds": { + "minlat": 40.8318516, + "minlon": -73.9772290, + "maxlat": 40.8332070, + "maxlon": -73.9742908 + }, + "nodes": [ + 103288257, + 103278575, + 103288258, + 103288260, + 103216744, + 103288261, + 103288263, + 103288264, + 103181647, + 103288266, + 103288269, + 103123251 + ], + "geometry": [ + { "lat": 40.8318516, "lon": -73.9742908 }, + { "lat": 40.8318707, "lon": -73.9743536 }, + { "lat": 40.8322180, "lon": -73.9754540 }, + { "lat": 40.8322400, "lon": -73.9755100 }, + { "lat": 40.8322930, "lon": -73.9756110 }, + { "lat": 40.8323180, "lon": -73.9756490 }, + { "lat": 40.8327390, "lon": -73.9761530 }, + { "lat": 40.8328270, "lon": -73.9762790 }, + { "lat": 40.8329150, "lon": -73.9764360 }, + { "lat": 40.8330610, "lon": -73.9767790 }, + { "lat": 40.8331810, "lon": -73.9770747 }, + { "lat": 40.8332070, "lon": -73.9772290 } + ], + "tags": { + "highway": "residential", + "name": "Claremont Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Claremont", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11586129, + "bounds": { + "minlat": 40.8729251, + "minlon": -73.9625485, + "maxlat": 40.8741468, + "maxlon": -73.9564268 + }, + "nodes": [ + 103131010, + 10059739059, + 10059739060, + 10059739058, + 103236435, + 103157607, + 9348848234, + 10059739063, + 103288285, + 103279179, + 103288287, + 103288289, + 103226451, + 103288292, + 103288294, + 10059739066, + 103288296, + 103288299, + 103226424, + 103288301, + 103288304, + 103288306, + 103288309, + 103288311, + 103247940 + ], + "geometry": [ + { "lat": 40.8729251, "lon": -73.9564268 }, + { "lat": 40.8729671, "lon": -73.9565397 }, + { "lat": 40.8731843, "lon": -73.9571176 }, + { "lat": 40.8731981, "lon": -73.9571774 }, + { "lat": 40.8732104, "lon": -73.9572725 }, + { "lat": 40.8734051, "lon": -73.9582909 }, + { "lat": 40.8734623, "lon": -73.9585823 }, + { "lat": 40.8735311, "lon": -73.9589370 }, + { "lat": 40.8736002, "lon": -73.9592931 }, + { "lat": 40.8736300, "lon": -73.9594440 }, + { "lat": 40.8736810, "lon": -73.9596190 }, + { "lat": 40.8737510, "lon": -73.9598140 }, + { "lat": 40.8739120, "lon": -73.9602260 }, + { "lat": 40.8739610, "lon": -73.9603730 }, + { "lat": 40.8740054, "lon": -73.9605455 }, + { "lat": 40.8740207, "lon": -73.9606348 }, + { "lat": 40.8740272, "lon": -73.9607312 }, + { "lat": 40.8740245, "lon": -73.9609175 }, + { "lat": 40.8740159, "lon": -73.9611995 }, + { "lat": 40.8739970, "lon": -73.9615995 }, + { "lat": 40.8739931, "lon": -73.9618465 }, + { "lat": 40.8739996, "lon": -73.9620125 }, + { "lat": 40.8740234, "lon": -73.9621857 }, + { "lat": 40.8740777, "lon": -73.9623962 }, + { "lat": 40.8741468, "lon": -73.9625485 } + ], + "tags": { + "highway": "residential", + "name": "Jenkins Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jenkins", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11586130, + "bounds": { + "minlat": 40.8747247, + "minlon": -74.0061723, + "maxlat": 40.8749554, + "maxlon": -74.0060218 + }, + "nodes": [ + 103288379, + 103288326, + 6325610082 + ], + "geometry": [ + { "lat": 40.8747247, "lon": -74.0060218 }, + { "lat": 40.8748179, "lon": -74.0060593 }, + { "lat": 40.8749554, "lon": -74.0061723 } + ], + "tags": { + "highway": "service", + "name": "Courts of Glenpointe Driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Courts of Glenpointe", + "tiger:name_type": "Driveway", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586131, + "bounds": { + "minlat": 40.8711735, + "minlon": -74.0066789, + "maxlat": 40.8721417, + "maxlon": -74.0058956 + }, + "nodes": [ + 103247019, + 10940833232, + 567269993, + 10940833276, + 10940833227, + 103288407, + 10940833281, + 103288405, + 567269865 + ], + "geometry": [ + { "lat": 40.8711735, "lon": -74.0058956 }, + { "lat": 40.8716733, "lon": -74.0064247 }, + { "lat": 40.8717138, "lon": -74.0064637 }, + { "lat": 40.8717571, "lon": -74.0064972 }, + { "lat": 40.8718018, "lon": -74.0065249 }, + { "lat": 40.8718439, "lon": -74.0065468 }, + { "lat": 40.8718797, "lon": -74.0065649 }, + { "lat": 40.8719156, "lon": -74.0065811 }, + { "lat": 40.8721417, "lon": -74.0066789 } + ], + "tags": { + "cycleway:right": "no", + "highway": "primary", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Frank W Burr", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586132, + "bounds": { + "minlat": 40.8747760, + "minlon": -74.0047096, + "maxlat": 40.8759976, + "maxlon": -74.0029846 + }, + "nodes": [ + 4469448605, + 103199393, + 103288446, + 103288448, + 4469435379, + 103288450, + 6536062299, + 103288452, + 103288454, + 103288352, + 6536062321, + 103288456, + 103288458, + 103288460, + 103288462, + 6536062341, + 103288464, + 103288466, + 103155636, + 103288468, + 103288470, + 103288472, + 4469435370, + 103288474, + 103125990, + 103118674, + 103288418, + 103288420, + 6536062447, + 6536062448, + 103288422, + 103288424, + 103288426, + 103288428, + 4469435381, + 103288430, + 103288432, + 103288434, + 6536062443, + 6536062442, + 103288437, + 103288439, + 4469435366, + 4469448605 + ], + "geometry": [ + { "lat": 40.8749178, "lon": -74.0041184 }, + { "lat": 40.8749538, "lon": -74.0042308 }, + { "lat": 40.8750412, "lon": -74.0044832 }, + { "lat": 40.8750770, "lon": -74.0045790 }, + { "lat": 40.8751196, "lon": -74.0046449 }, + { "lat": 40.8751470, "lon": -74.0046671 }, + { "lat": 40.8751728, "lon": -74.0046784 }, + { "lat": 40.8751975, "lon": -74.0046892 }, + { "lat": 40.8752757, "lon": -74.0047096 }, + { "lat": 40.8753639, "lon": -74.0047057 }, + { "lat": 40.8753991, "lon": -74.0046832 }, + { "lat": 40.8754063, "lon": -74.0046786 }, + { "lat": 40.8755617, "lon": -74.0045870 }, + { "lat": 40.8757779, "lon": -74.0044837 }, + { "lat": 40.8758407, "lon": -74.0044356 }, + { "lat": 40.8758868, "lon": -74.0043927 }, + { "lat": 40.8758948, "lon": -74.0043853 }, + { "lat": 40.8759392, "lon": -74.0043301 }, + { "lat": 40.8759725, "lon": -74.0042541 }, + { "lat": 40.8759914, "lon": -74.0041628 }, + { "lat": 40.8759976, "lon": -74.0039982 }, + { "lat": 40.8759955, "lon": -74.0038380 }, + { "lat": 40.8759836, "lon": -74.0037403 }, + { "lat": 40.8759548, "lon": -74.0036356 }, + { "lat": 40.8759241, "lon": -74.0035369 }, + { "lat": 40.8757509, "lon": -74.0029846 }, + { "lat": 40.8755863, "lon": -74.0030098 }, + { "lat": 40.8753869, "lon": -74.0030960 }, + { "lat": 40.8752203, "lon": -74.0031761 }, + { "lat": 40.8751595, "lon": -74.0032053 }, + { "lat": 40.8751165, "lon": -74.0032260 }, + { "lat": 40.8749843, "lon": -74.0032656 }, + { "lat": 40.8749144, "lon": -74.0033047 }, + { "lat": 40.8748627, "lon": -74.0033352 }, + { "lat": 40.8748287, "lon": -74.0033706 }, + { "lat": 40.8748065, "lon": -74.0034108 }, + { "lat": 40.8747910, "lon": -74.0034790 }, + { "lat": 40.8747760, "lon": -74.0035720 }, + { "lat": 40.8747792, "lon": -74.0035960 }, + { "lat": 40.8747871, "lon": -74.0036545 }, + { "lat": 40.8747895, "lon": -74.0036723 }, + { "lat": 40.8748060, "lon": -74.0037604 }, + { "lat": 40.8748650, "lon": -74.0039607 }, + { "lat": 40.8749178, "lon": -74.0041184 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Courts of Glenpointe Driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Courts of Glenpointe", + "tiger:name_type": "Driveway", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586156, + "bounds": { + "minlat": 40.8236290, + "minlon": -73.9802530, + "maxlat": 40.8239357, + "maxlon": -73.9796997 + }, + "nodes": [ + 103288778, + 103195296 + ], + "geometry": [ + { "lat": 40.8236290, "lon": -73.9796997 }, + { "lat": 40.8239357, "lon": -73.9802530 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Lawton Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lawton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11586182, + "bounds": { + "minlat": 40.8266330, + "minlon": -74.0043274, + "maxlat": 40.8277104, + "maxlon": -74.0024590 + }, + "nodes": [ + 103289160, + 103272853, + 6065489323 + ], + "geometry": [ + { "lat": 40.8266330, "lon": -74.0024590 }, + { "lat": 40.8274372, "lon": -74.0038354 }, + { "lat": 40.8277104, "lon": -74.0043274 } + ], + "tags": { + "highway": "residential", + "name": "Lancaster Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lancaster", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11586183, + "bounds": { + "minlat": 40.8285629, + "minlon": -74.0079610, + "maxlat": 40.8296580, + "maxlon": -74.0054469 + }, + "nodes": [ + 103139552, + 103143497, + 103289169, + 103169857, + 10713483066, + 103208108 + ], + "geometry": [ + { "lat": 40.8285629, "lon": -74.0054469 }, + { "lat": 40.8289220, "lon": -74.0062110 }, + { "lat": 40.8291250, "lon": -74.0066260 }, + { "lat": 40.8292810, "lon": -74.0070080 }, + { "lat": 40.8293028, "lon": -74.0070631 }, + { "lat": 40.8296580, "lon": -74.0079610 } + ], + "tags": { + "highway": "residential", + "name": "Lancaster Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lancaster", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11586184, + "bounds": { + "minlat": 40.8297020, + "minlon": -74.0103337, + "maxlat": 40.8304936, + "maxlon": -74.0079350 + }, + "nodes": [ + 103208109, + 103289174, + 12016315267, + 12016315268, + 12016315269, + 12016315270, + 103224037 + ], + "geometry": [ + { "lat": 40.8297020, "lon": -74.0079350 }, + { "lat": 40.8300280, "lon": -74.0088204 }, + { "lat": 40.8304744, "lon": -74.0101888 }, + { "lat": 40.8304817, "lon": -74.0102221 }, + { "lat": 40.8304870, "lon": -74.0102543 }, + { "lat": 40.8304903, "lon": -74.0102940 }, + { "lat": 40.8304936, "lon": -74.0103337 } + ], + "tags": { + "highway": "residential", + "name": "Lancaster Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lancaster", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11586228, + "bounds": { + "minlat": 40.8289584, + "minlon": -73.9802619, + "maxlat": 40.8290805, + "maxlon": -73.9801741 + }, + "nodes": [ + 5340819449, + 103235739 + ], + "geometry": [ + { "lat": 40.8289584, "lon": -73.9801741 }, + { "lat": 40.8290805, "lon": -73.9802619 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Marion Avenue", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Marion", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11586288, + "bounds": { + "minlat": 40.8472140, + "minlon": -73.9812610, + "maxlat": 40.8481410, + "maxlon": -73.9803820 + }, + "nodes": [ + 103290253, + 440215420, + 103290258 + ], + "geometry": [ + { "lat": 40.8481410, "lon": -73.9803820 }, + { "lat": 40.8473380, "lon": -73.9811440 }, + { "lat": 40.8472140, "lon": -73.9812610 } + ], + "tags": { + "highway": "residential", + "name": "13th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "13th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586289, + "bounds": { + "minlat": 40.8500760, + "minlon": -73.9787240, + "maxlat": 40.8508948, + "maxlon": -73.9779202 + }, + "nodes": [ + 103222829, + 103263552 + ], + "geometry": [ + { "lat": 40.8500760, "lon": -73.9787240 }, + { "lat": 40.8508948, "lon": -73.9779202 } + ], + "tags": { + "highway": "residential", + "name": "13th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "13th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11586301, + "bounds": { + "minlat": 40.8291554, + "minlon": -74.0056884, + "maxlat": 40.8292306, + "maxlon": -74.0052394 + }, + "nodes": [ + 103139559, + 103290336 + ], + "geometry": [ + { "lat": 40.8291554, "lon": -74.0052394 }, + { "lat": 40.8292306, "lon": -74.0056884 } + ], + "tags": { + "highway": "service", + "name": "Vogt Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Vogt", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586312, + "bounds": { + "minlat": 40.8569648, + "minlon": -73.9811018, + "maxlat": 40.8572587, + "maxlon": -73.9805836 + }, + "nodes": [ + 11224443183, + 12020325928, + 12020325929, + 103146637 + ], + "geometry": [ + { "lat": 40.8572587, "lon": -73.9811018 }, + { "lat": 40.8570151, "lon": -73.9806722 }, + { "lat": 40.8569972, "lon": -73.9806407 }, + { "lat": 40.8569648, "lon": -73.9805836 } + ], + "tags": { + "highway": "secondary", + "name": "Caspars Lane", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Caspars", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586313, + "bounds": { + "minlat": 40.8799930, + "minlon": -73.9773060, + "maxlat": 40.8834567, + "maxlon": -73.9749729 + }, + "nodes": [ + 103267239, + 12021734831, + 103290458, + 12021734830, + 103290460 + ], + "geometry": [ + { "lat": 40.8834567, "lon": -73.9749729 }, + { "lat": 40.8818760, "lon": -73.9760982 }, + { "lat": 40.8817649, "lon": -73.9761701 }, + { "lat": 40.8816871, "lon": -73.9762216 }, + { "lat": 40.8799930, "lon": -73.9773060 } + ], + "tags": { + "highway": "residential", + "name": "Audubon Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Audubon", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11586315, + "bounds": { + "minlat": 40.8794840, + "minlon": -73.9780370, + "maxlat": 40.8801490, + "maxlon": -73.9775760 + }, + "nodes": [ + 103290476, + 103290478 + ], + "geometry": [ + { "lat": 40.8801490, "lon": -73.9775760 }, + { "lat": 40.8794840, "lon": -73.9780370 } + ], + "tags": { + "highway": "residential", + "name": "Audubon Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Audubon", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11586334, + "bounds": { + "minlat": 40.8489760, + "minlon": -73.9968990, + "maxlat": 40.8492870, + "maxlon": -73.9963490 + }, + "nodes": [ + 103224104, + 5764484478, + 5970474301, + 5976422974, + 103290662 + ], + "geometry": [ + { "lat": 40.8492870, "lon": -73.9968990 }, + { "lat": 40.8491136, "lon": -73.9966003 }, + { "lat": 40.8490548, "lon": -73.9964928 }, + { "lat": 40.8490047, "lon": -73.9964013 }, + { "lat": 40.8489760, "lon": -73.9963490 } + ], + "tags": { + "highway": "residential", + "name": "Alliotts Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Alliotts", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11586338, + "bounds": { + "minlat": 40.8409980, + "minlon": -73.9774960, + "maxlat": 40.8455190, + "maxlon": -73.9732240 + }, + "nodes": [ + 103241413, + 7292367074, + 7292367085, + 103143803, + 103272686, + 7292367049, + 103235393, + 103186445, + 103182288, + 103232117, + 103230887 + ], + "geometry": [ + { "lat": 40.8409980, "lon": -73.9774960 }, + { "lat": 40.8410431, "lon": -73.9774529 }, + { "lat": 40.8417573, "lon": -73.9767693 }, + { "lat": 40.8418110, "lon": -73.9767180 }, + { "lat": 40.8427210, "lon": -73.9758470 }, + { "lat": 40.8427713, "lon": -73.9758001 }, + { "lat": 40.8432870, "lon": -73.9753190 }, + { "lat": 40.8438300, "lon": -73.9748100 }, + { "lat": 40.8444040, "lon": -73.9742730 }, + { "lat": 40.8449630, "lon": -73.9737490 }, + { "lat": 40.8455190, "lon": -73.9732240 } + ], + "tags": { + "highway": "residential", + "name": "Oleri Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oleri", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11586349, + "bounds": { + "minlat": 40.8390440, + "minlon": -73.9910390, + "maxlat": 40.8401015, + "maxlon": -73.9903296 + }, + "nodes": [ + 103170094, + 12692393410, + 12692393409, + 12692393408, + 103290794, + 103290796, + 103290798, + 103290800, + 103290802, + 103290804 + ], + "geometry": [ + { "lat": 40.8390440, "lon": -73.9910390 }, + { "lat": 40.8390712, "lon": -73.9909810 }, + { "lat": 40.8390994, "lon": -73.9909221 }, + { "lat": 40.8391294, "lon": -73.9908933 }, + { "lat": 40.8391661, "lon": -73.9908705 }, + { "lat": 40.8395457, "lon": -73.9907016 }, + { "lat": 40.8397130, "lon": -73.9906160 }, + { "lat": 40.8398400, "lon": -73.9905220 }, + { "lat": 40.8400663, "lon": -73.9903363 }, + { "lat": 40.8401015, "lon": -73.9903296 } + ], + "tags": { + "highway": "residential", + "name": "Princeton Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Princeton", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650" + } +}, +{ + "type": "way", + "id": 11586368, + "bounds": { + "minlat": 40.8405940, + "minlon": -73.9767930, + "maxlat": 40.8423310, + "maxlon": -73.9751260 + }, + "nodes": [ + 103241411, + 7292367073, + 103290936, + 7292367084, + 103143801, + 7292367058, + 103272684 + ], + "geometry": [ + { "lat": 40.8405940, "lon": -73.9767930 }, + { "lat": 40.8406335, "lon": -73.9767529 }, + { "lat": 40.8413350, "lon": -73.9760400 }, + { "lat": 40.8413467, "lon": -73.9760290 }, + { "lat": 40.8413990, "lon": -73.9759800 }, + { "lat": 40.8422915, "lon": -73.9751622 }, + { "lat": 40.8423310, "lon": -73.9751260 } + ], + "tags": { + "highway": "residential", + "name": "Selden Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Selden", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11586386, + "bounds": { + "minlat": 40.8484334, + "minlon": -73.9665489, + "maxlat": 40.8485561, + "maxlon": -73.9650403 + }, + "nodes": [ + 103291071, + 103291069, + 103291067, + 5106266656, + 5106264947, + 5106264949, + 103291065, + 5106264948, + 7483134212, + 7672312118, + 752617944 + ], + "geometry": [ + { "lat": 40.8484813, "lon": -73.9665489 }, + { "lat": 40.8484596, "lon": -73.9664420 }, + { "lat": 40.8484691, "lon": -73.9663247 }, + { "lat": 40.8484765, "lon": -73.9662723 }, + { "lat": 40.8485400, "lon": -73.9658695 }, + { "lat": 40.8485544, "lon": -73.9657331 }, + { "lat": 40.8485561, "lon": -73.9656421 }, + { "lat": 40.8485367, "lon": -73.9655227 }, + { "lat": 40.8484865, "lon": -73.9653021 }, + { "lat": 40.8484468, "lon": -73.9651081 }, + { "lat": 40.8484334, "lon": -73.9650403 } + ], + "tags": { + "highway": "residential", + "name": "Old Palisade Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old Palisade", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_left_1": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11586412, + "bounds": { + "minlat": 40.8335516, + "minlon": -74.0101461, + "maxlat": 40.8347285, + "maxlon": -74.0090242 + }, + "nodes": [ + 103125593, + 12016147275, + 12016147274, + 12016147258, + 12016147259, + 12016147260, + 695054686, + 12016147261, + 12016147262, + 12016147263, + 12016315212, + 695054688 + ], + "geometry": [ + { "lat": 40.8347285, "lon": -74.0090242 }, + { "lat": 40.8346479, "lon": -74.0091074 }, + { "lat": 40.8346179, "lon": -74.0091352 }, + { "lat": 40.8345806, "lon": -74.0091643 }, + { "lat": 40.8345496, "lon": -74.0091827 }, + { "lat": 40.8345160, "lon": -74.0092026 }, + { "lat": 40.8344833, "lon": -74.0092243 }, + { "lat": 40.8344510, "lon": -74.0092491 }, + { "lat": 40.8344232, "lon": -74.0092727 }, + { "lat": 40.8336497, "lon": -74.0100586 }, + { "lat": 40.8336159, "lon": -74.0100910 }, + { "lat": 40.8335516, "lon": -74.0101461 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "40 mph", + "name": "South Broad Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_base_3": "Broad", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Ave", + "tiger:name_type_3": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586414, + "bounds": { + "minlat": 40.8311798, + "minlon": -74.0098977, + "maxlat": 40.8318739, + "maxlon": -74.0083959 + }, + "nodes": [ + 103291326, + 12016315257, + 12016315256, + 12410387519, + 12410387521, + 12410387523, + 12410387525, + 12410387527, + 12410387529, + 8414839540 + ], + "geometry": [ + { "lat": 40.8311798, "lon": -74.0083959 }, + { "lat": 40.8312044, "lon": -74.0084500 }, + { "lat": 40.8312190, "lon": -74.0084821 }, + { "lat": 40.8313130, "lon": -74.0086852 }, + { "lat": 40.8313712, "lon": -74.0088111 }, + { "lat": 40.8314249, "lon": -74.0089271 }, + { "lat": 40.8314829, "lon": -74.0090525 }, + { "lat": 40.8315404, "lon": -74.0091768 }, + { "lat": 40.8315975, "lon": -74.0093003 }, + { "lat": 40.8318739, "lon": -74.0098977 } + ], + "tags": { + "highway": "residential", + "name": "Marion Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Marion", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11586439, + "bounds": { + "minlat": 40.8222716, + "minlon": -74.0087225, + "maxlat": 40.8225310, + "maxlon": -74.0069322 + }, + "nodes": [ + 103203997, + 5283548846, + 103224007 + ], + "geometry": [ + { "lat": 40.8222716, "lon": -74.0069322 }, + { "lat": 40.8222880, "lon": -74.0070333 }, + { "lat": 40.8225310, "lon": -74.0087225 } + ], + "tags": { + "highway": "residential", + "name": "Hurley Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hurley", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11586496, + "bounds": { + "minlat": 40.8638072, + "minlon": -73.9891296, + "maxlat": 40.8649412, + "maxlon": -73.9864548 + }, + "nodes": [ + 103141306, + 10115455712, + 103214180, + 6107676748, + 6126763039, + 6126763032, + 6111818797, + 8075088160, + 103224120 + ], + "geometry": [ + { "lat": 40.8649412, "lon": -73.9891296 }, + { "lat": 40.8649044, "lon": -73.9890419 }, + { "lat": 40.8644728, "lon": -73.9879982 }, + { "lat": 40.8642706, "lon": -73.9875411 }, + { "lat": 40.8642611, "lon": -73.9875173 }, + { "lat": 40.8640716, "lon": -73.9870731 }, + { "lat": 40.8640001, "lon": -73.9869078 }, + { "lat": 40.8638680, "lon": -73.9866026 }, + { "lat": 40.8638072, "lon": -73.9864548 } + ], + "tags": { + "highway": "residential", + "name": "Woodridge Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Woodridge", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11586522, + "bounds": { + "minlat": 40.8281864, + "minlon": -73.9777400, + "maxlat": 40.8292500, + "maxlon": -73.9770100 + }, + "nodes": [ + 103237434, + 7494903297, + 103292309, + 103292310, + 103292311, + 103292312, + 103292313, + 103292314, + 103292315 + ], + "geometry": [ + { "lat": 40.8292500, "lon": -73.9777400 }, + { "lat": 40.8290938, "lon": -73.9774511 }, + { "lat": 40.8288910, "lon": -73.9770760 }, + { "lat": 40.8288600, "lon": -73.9770380 }, + { "lat": 40.8288150, "lon": -73.9770130 }, + { "lat": 40.8287710, "lon": -73.9770100 }, + { "lat": 40.8283830, "lon": -73.9771590 }, + { "lat": 40.8283110, "lon": -73.9772000 }, + { "lat": 40.8281864, "lon": -73.9773297 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Victoria Place East", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Victoria", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11586538, + "bounds": { + "minlat": 40.8592415, + "minlon": -73.9936963, + "maxlat": 40.8601809, + "maxlon": -73.9927353 + }, + "nodes": [ + 103239472, + 10117799062, + 10117799063, + 103270521 + ], + "geometry": [ + { "lat": 40.8592415, "lon": -73.9936963 }, + { "lat": 40.8593143, "lon": -73.9936213 }, + { "lat": 40.8601257, "lon": -73.9927818 }, + { "lat": 40.8601809, "lon": -73.9927353 } + ], + "tags": { + "highway": "residential", + "name": "Orchard Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Orchard", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11586546, + "bounds": { + "minlat": 40.8670918, + "minlon": -73.9780398, + "maxlat": 40.8679589, + "maxlon": -73.9769205 + }, + "nodes": [ + 103156430, + 10179157147, + 12021450524, + 103292634, + 12021450525, + 103292636, + 103292638, + 12021450526, + 12021450527, + 103292640, + 10940737252, + 103205263, + 10940737255, + 299385886 + ], + "geometry": [ + { "lat": 40.8670918, "lon": -73.9780398 }, + { "lat": 40.8672056, "lon": -73.9779138 }, + { "lat": 40.8673050, "lon": -73.9778167 }, + { "lat": 40.8673902, "lon": -73.9777284 }, + { "lat": 40.8674691, "lon": -73.9776404 }, + { "lat": 40.8675480, "lon": -73.9775470 }, + { "lat": 40.8676120, "lon": -73.9774690 }, + { "lat": 40.8676952, "lon": -73.9773641 }, + { "lat": 40.8677541, "lon": -73.9772836 }, + { "lat": 40.8678052, "lon": -73.9772043 }, + { "lat": 40.8678505, "lon": -73.9771276 }, + { "lat": 40.8678900, "lon": -73.9770551 }, + { "lat": 40.8679180, "lon": -73.9769983 }, + { "lat": 40.8679589, "lon": -73.9769205 } + ], + "tags": { + "highway": "tertiary", + "name": "Edgewood Road", + "sidewalk": "left", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewood", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586561, + "bounds": { + "minlat": 40.8807410, + "minlon": -74.0083484, + "maxlat": 40.8840795, + "maxlon": -74.0065761 + }, + "nodes": [ + 103292816, + 6592348825, + 4048818636, + 103292818, + 4048818635, + 103292820, + 12023324604, + 13527742913, + 103199462 + ], + "geometry": [ + { "lat": 40.8807410, "lon": -74.0083484 }, + { "lat": 40.8807845, "lon": -74.0083240 }, + { "lat": 40.8819576, "lon": -74.0076657 }, + { "lat": 40.8820080, "lon": -74.0076390 }, + { "lat": 40.8821214, "lon": -74.0075789 }, + { "lat": 40.8824800, "lon": -74.0073890 }, + { "lat": 40.8828377, "lon": -74.0072784 }, + { "lat": 40.8839657, "lon": -74.0066405 }, + { "lat": 40.8840795, "lon": -74.0065761 } + ], + "tags": { + "highway": "residential", + "name": "Hartwell Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hartwell", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11586591, + "bounds": { + "minlat": 40.8587340, + "minlon": -73.9841910, + "maxlat": 40.8595650, + "maxlon": -73.9827510 + }, + "nodes": [ + 103245162, + 103282240 + ], + "geometry": [ + { "lat": 40.8587340, "lon": -73.9827510 }, + { "lat": 40.8595650, "lon": -73.9841910 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Chestnut Street", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Chestnut", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11586592, + "bounds": { + "minlat": 40.8303649, + "minlon": -73.9985155, + "maxlat": 40.8310160, + "maxlon": -73.9978050 + }, + "nodes": [ + 103150140, + 103293163, + 103293165, + 103293167, + 5941554205, + 103101264 + ], + "geometry": [ + { "lat": 40.8303649, "lon": -73.9985155 }, + { "lat": 40.8304246, "lon": -73.9984435 }, + { "lat": 40.8304844, "lon": -73.9983868 }, + { "lat": 40.8305464, "lon": -73.9983167 }, + { "lat": 40.8306124, "lon": -73.9982233 }, + { "lat": 40.8310160, "lon": -73.9978050 } + ], + "tags": { + "highway": "residential", + "name": "Chestnut Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Chestnut", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11586593, + "bounds": { + "minlat": 40.8243726, + "minlon": -74.0040670, + "maxlat": 40.8303649, + "maxlon": -73.9985155 + }, + "nodes": [ + 103168166, + 103265220, + 103293173, + 103293175, + 103293177, + 103293181, + 103293183, + 440208208, + 103293187, + 103165288, + 103160870, + 103289160, + 8530362443, + 103196739, + 103169643, + 103202123, + 103293189, + 8530362404, + 103293191, + 8530362403, + 103293193, + 103293195, + 103293197, + 103293199, + 103293201, + 103150140 + ], + "geometry": [ + { "lat": 40.8243726, "lon": -74.0040670 }, + { "lat": 40.8250542, "lon": -74.0039140 }, + { "lat": 40.8251043, "lon": -74.0038900 }, + { "lat": 40.8251737, "lon": -74.0038719 }, + { "lat": 40.8252568, "lon": -74.0038159 }, + { "lat": 40.8253539, "lon": -74.0037529 }, + { "lat": 40.8255213, "lon": -74.0035974 }, + { "lat": 40.8257010, "lon": -74.0034235 }, + { "lat": 40.8257784, "lon": -74.0033521 }, + { "lat": 40.8261030, "lon": -74.0030347 }, + { "lat": 40.8262930, "lon": -74.0028455 }, + { "lat": 40.8266330, "lon": -74.0024590 }, + { "lat": 40.8271839, "lon": -74.0019321 }, + { "lat": 40.8272060, "lon": -74.0019110 }, + { "lat": 40.8278790, "lon": -74.0012680 }, + { "lat": 40.8287198, "lon": -74.0005034 }, + { "lat": 40.8297031, "lon": -73.9994766 }, + { "lat": 40.8301256, "lon": -73.9990622 }, + { "lat": 40.8301440, "lon": -73.9990440 }, + { "lat": 40.8301857, "lon": -73.9989874 }, + { "lat": 40.8302110, "lon": -73.9989530 }, + { "lat": 40.8302600, "lon": -73.9988590 }, + { "lat": 40.8302980, "lon": -73.9987560 }, + { "lat": 40.8303160, "lon": -73.9986840 }, + { "lat": 40.8303425, "lon": -73.9986064 }, + { "lat": 40.8303649, "lon": -73.9985155 } + ], + "tags": { + "highway": "residential", + "name": "Chestnut Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Chestnut", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11586655, + "bounds": { + "minlat": 40.8177099, + "minlon": -73.9842718, + "maxlat": 40.8191591, + "maxlon": -73.9829633 + }, + "nodes": [ + 103201201, + 103293729, + 103293731, + 103293733, + 103293735, + 103293737, + 103293739, + 103293741, + 103293743, + 103293745, + 103293747, + 103293749, + 103293751, + 103282164 + ], + "geometry": [ + { "lat": 40.8177610, "lon": -73.9842718 }, + { "lat": 40.8177159, "lon": -73.9841303 }, + { "lat": 40.8177099, "lon": -73.9840634 }, + { "lat": 40.8177129, "lon": -73.9840095 }, + { "lat": 40.8177220, "lon": -73.9839565 }, + { "lat": 40.8177362, "lon": -73.9839170 }, + { "lat": 40.8177594, "lon": -73.9838820 }, + { "lat": 40.8177903, "lon": -73.9838567 }, + { "lat": 40.8179920, "lon": -73.9837746 }, + { "lat": 40.8182161, "lon": -73.9836588 }, + { "lat": 40.8183972, "lon": -73.9835647 }, + { "lat": 40.8185809, "lon": -73.9834729 }, + { "lat": 40.8186632, "lon": -73.9834259 }, + { "lat": 40.8191591, "lon": -73.9829633 } + ], + "tags": { + "highway": "residential", + "name": "Hilltop Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hilltop", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11586659, + "bounds": { + "minlat": 40.8312074, + "minlon": -73.9873772, + "maxlat": 40.8321321, + "maxlon": -73.9865957 + }, + "nodes": [ + 103293822, + 6964929499, + 6964929502, + 103293824, + 103293826, + 103187714 + ], + "geometry": [ + { "lat": 40.8312074, "lon": -73.9873772 }, + { "lat": 40.8315174, "lon": -73.9871333 }, + { "lat": 40.8316039, "lon": -73.9870646 }, + { "lat": 40.8318662, "lon": -73.9868562 }, + { "lat": 40.8319892, "lon": -73.9867322 }, + { "lat": 40.8321321, "lon": -73.9865957 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Florence Place", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Florence", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11586688, + "bounds": { + "minlat": 40.8414084, + "minlon": -73.9928056, + "maxlat": 40.8436752, + "maxlon": -73.9888603 + }, + "nodes": [ + 103255681, + 103238956, + 103294157, + 103166096, + 103193289, + 103258705, + 5978949656, + 13247178427 + ], + "geometry": [ + { "lat": 40.8436752, "lon": -73.9928056 }, + { "lat": 40.8432570, "lon": -73.9920828 }, + { "lat": 40.8428402, "lon": -73.9913613 }, + { "lat": 40.8424234, "lon": -73.9906426 }, + { "lat": 40.8420155, "lon": -73.9899172 }, + { "lat": 40.8416030, "lon": -73.9892046 }, + { "lat": 40.8414715, "lon": -73.9889709 }, + { "lat": 40.8414084, "lon": -73.9888603 } + ], + "tags": { + "highway": "tertiary", + "name": "East Brinkerhoff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brinkerhoff", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586689, + "bounds": { + "minlat": 40.8212494, + "minlon": -74.0084060, + "maxlat": 40.8213901, + "maxlon": -74.0071815 + }, + "nodes": [ + 103203995, + 10654412835, + 103294167, + 2424503651, + 103094942 + ], + "geometry": [ + { "lat": 40.8212494, "lon": -74.0071815 }, + { "lat": 40.8213388, "lon": -74.0077826 }, + { "lat": 40.8213830, "lon": -74.0080800 }, + { "lat": 40.8213901, "lon": -74.0082876 }, + { "lat": 40.8213880, "lon": -74.0084060 } + ], + "tags": { + "highway": "residential", + "name": "Tracey Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Tracey", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11586694, + "bounds": { + "minlat": 40.8295555, + "minlon": -73.9799514, + "maxlat": 40.8296122, + "maxlon": -73.9798514 + }, + "nodes": [ + 103235743, + 5340819450 + ], + "geometry": [ + { "lat": 40.8296122, "lon": -73.9799514 }, + { "lat": 40.8295555, "lon": -73.9798514 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Tower Drive", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Tower", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586701, + "bounds": { + "minlat": 40.8394760, + "minlon": -74.0083720, + "maxlat": 40.8406070, + "maxlon": -74.0063752 + }, + "nodes": [ + 103294293, + 12016147251, + 12016147250, + 7094787504, + 7094787500, + 6339500967, + 103243981 + ], + "geometry": [ + { "lat": 40.8394760, "lon": -74.0063752 }, + { "lat": 40.8395192, "lon": -74.0064527 }, + { "lat": 40.8395378, "lon": -74.0064862 }, + { "lat": 40.8399159, "lon": -74.0071646 }, + { "lat": 40.8400246, "lon": -74.0073545 }, + { "lat": 40.8404743, "lon": -74.0081401 }, + { "lat": 40.8406070, "lon": -74.0083720 } + ], + "tags": { + "highway": "unclassified", + "name": "Slocum Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Slocum", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11586702, + "bounds": { + "minlat": 40.8331260, + "minlon": -74.0015051, + "maxlat": 40.8366969, + "maxlon": -73.9952620 + }, + "nodes": [ + 103185085, + 8530362412, + 103224179, + 6877956704, + 6877956707, + 103294298, + 6877956699, + 7700847048, + 103139586, + 103208129 + ], + "geometry": [ + { "lat": 40.8331260, "lon": -73.9952620 }, + { "lat": 40.8331467, "lon": -73.9952987 }, + { "lat": 40.8344350, "lon": -73.9975760 }, + { "lat": 40.8347795, "lon": -73.9981854 }, + { "lat": 40.8350790, "lon": -73.9987150 }, + { "lat": 40.8351140, "lon": -73.9987770 }, + { "lat": 40.8352626, "lon": -73.9990399 }, + { "lat": 40.8354754, "lon": -73.9994163 }, + { "lat": 40.8356720, "lon": -73.9997640 }, + { "lat": 40.8366969, "lon": -74.0015051 } + ], + "tags": { + "highway": "residential", + "name": "Slocum Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Slocum", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11586715, + "bounds": { + "minlat": 40.8207211, + "minlon": -74.0094229, + "maxlat": 40.8218470, + "maxlon": -74.0093029 + }, + "nodes": [ + 103232550, + 8604915266, + 10020624839, + 103294426 + ], + "geometry": [ + { "lat": 40.8207211, "lon": -74.0093029 }, + { "lat": 40.8213534, "lon": -74.0093793 }, + { "lat": 40.8217671, "lon": -74.0094152 }, + { "lat": 40.8218470, "lon": -74.0094229 } + ], + "tags": { + "highway": "residential", + "name": "Morris Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morris", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11586728, + "bounds": { + "minlat": 40.8591619, + "minlon": -73.9687140, + "maxlat": 40.8601109, + "maxlon": -73.9670104 + }, + "nodes": [ + 103174616, + 12021336862, + 12021336863, + 12021336842, + 12021336843, + 12021336857, + 103132809 + ], + "geometry": [ + { "lat": 40.8591619, "lon": -73.9670104 }, + { "lat": 40.8591953, "lon": -73.9670699 }, + { "lat": 40.8592120, "lon": -73.9670998 }, + { "lat": 40.8600616, "lon": -73.9686170 }, + { "lat": 40.8600754, "lon": -73.9686425 }, + { "lat": 40.8600939, "lon": -73.9686782 }, + { "lat": 40.8601109, "lon": -73.9687140 } + ], + "tags": { + "hgv": "no", + "highway": "residential", + "name": "Coolidge Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Coolidge", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11586762, + "bounds": { + "minlat": 40.8423790, + "minlon": -73.9697240, + "maxlat": 40.8429460, + "maxlon": -73.9688410 + }, + "nodes": [ + 103124442, + 7292367341, + 7071428758, + 103115563 + ], + "geometry": [ + { "lat": 40.8423790, "lon": -73.9688410 }, + { "lat": 40.8424431, "lon": -73.9689408 }, + { "lat": 40.8425958, "lon": -73.9691786 }, + { "lat": 40.8429460, "lon": -73.9697240 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Terrace", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11586763, + "bounds": { + "minlat": 40.8443506, + "minlon": -73.9720376, + "maxlat": 40.8448657, + "maxlon": -73.9712594 + }, + "nodes": [ + 103230886, + 13523703022, + 5108657048, + 6901994438, + 5449346893, + 5449346895, + 5108657308 + ], + "geometry": [ + { "lat": 40.8448657, "lon": -73.9720376 }, + { "lat": 40.8447874, "lon": -73.9719525 }, + { "lat": 40.8447714, "lon": -73.9719351 }, + { "lat": 40.8447521, "lon": -73.9719041 }, + { "lat": 40.8444637, "lon": -73.9714410 }, + { "lat": 40.8443824, "lon": -73.9713105 }, + { "lat": 40.8443506, "lon": -73.9712594 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ter", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11586803, + "bounds": { + "minlat": 40.8316265, + "minlon": -74.0072172, + "maxlat": 40.8363707, + "maxlon": -73.9997296 + }, + "nodes": [ + 475223352, + 103295283, + 8530324553, + 103295284, + 103215447, + 8413793134, + 8413793124, + 103139580, + 103295285, + 103295286, + 103295287, + 103295288, + 103295289, + 103152185, + 103295290, + 103295291, + 103295292, + 103295294, + 103295296, + 103169884, + 103295298, + 103208121, + 103295300, + 103295302, + 103295303, + 103159277, + 103104150, + 5773254142, + 103209220, + 5773254146, + 103104142, + 12016147276, + 12016147277, + 103224081 + ], + "geometry": [ + { "lat": 40.8316265, "lon": -73.9997296 }, + { "lat": 40.8320420, "lon": -74.0004686 }, + { "lat": 40.8321348, "lon": -74.0006377 }, + { "lat": 40.8322310, "lon": -74.0008090 }, + { "lat": 40.8324640, "lon": -74.0012167 }, + { "lat": 40.8326197, "lon": -74.0015006 }, + { "lat": 40.8327995, "lon": -74.0018108 }, + { "lat": 40.8329224, "lon": -74.0020409 }, + { "lat": 40.8329980, "lon": -74.0021730 }, + { "lat": 40.8330660, "lon": -74.0022590 }, + { "lat": 40.8331430, "lon": -74.0023300 }, + { "lat": 40.8332270, "lon": -74.0023840 }, + { "lat": 40.8333170, "lon": -74.0024210 }, + { "lat": 40.8333715, "lon": -74.0024508 }, + { "lat": 40.8335270, "lon": -74.0024480 }, + { "lat": 40.8336120, "lon": -74.0024800 }, + { "lat": 40.8336910, "lon": -74.0025310 }, + { "lat": 40.8337560, "lon": -74.0025910 }, + { "lat": 40.8338240, "lon": -74.0026820 }, + { "lat": 40.8340140, "lon": -74.0029940 }, + { "lat": 40.8344470, "lon": -74.0037101 }, + { "lat": 40.8344915, "lon": -74.0037908 }, + { "lat": 40.8345347, "lon": -74.0038719 }, + { "lat": 40.8347688, "lon": -74.0043919 }, + { "lat": 40.8349160, "lon": -74.0046929 }, + { "lat": 40.8350113, "lon": -74.0048581 }, + { "lat": 40.8355170, "lon": -74.0057940 }, + { "lat": 40.8355719, "lon": -74.0058863 }, + { "lat": 40.8357960, "lon": -74.0062630 }, + { "lat": 40.8360079, "lon": -74.0066167 }, + { "lat": 40.8360702, "lon": -74.0067238 }, + { "lat": 40.8363001, "lon": -74.0071006 }, + { "lat": 40.8363194, "lon": -74.0071325 }, + { "lat": 40.8363707, "lon": -74.0072172 } + ], + "tags": { + "highway": "residential", + "name": "Banta Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Banta", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11586824, + "bounds": { + "minlat": 40.8401015, + "minlon": -73.9919680, + "maxlat": 40.8410891, + "maxlon": -73.9903296 + }, + "nodes": [ + 103166094, + 103193287, + 103258703, + 103295493, + 103290804 + ], + "geometry": [ + { "lat": 40.8410891, "lon": -73.9919680 }, + { "lat": 40.8406257, "lon": -73.9912562 }, + { "lat": 40.8402250, "lon": -73.9905399 }, + { "lat": 40.8401314, "lon": -73.9903522 }, + { "lat": 40.8401015, "lon": -73.9903296 } + ], + "tags": { + "highway": "residential", + "name": "East Homestead Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Homestead", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650" + } +}, +{ + "type": "way", + "id": 11586826, + "bounds": { + "minlat": 40.8390132, + "minlon": -73.9894650, + "maxlat": 40.8396110, + "maxlon": -73.9883737 + }, + "nodes": [ + 103148028, + 103290269, + 103295496, + 7527301270 + ], + "geometry": [ + { "lat": 40.8396110, "lon": -73.9894650 }, + { "lat": 40.8394050, "lon": -73.9891000 }, + { "lat": 40.8393700, "lon": -73.9890390 }, + { "lat": 40.8390132, "lon": -73.9883737 } + ], + "tags": { + "highway": "residential", + "name": "Hillcrest Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Homestead", + "tiger:name_base_1": "Hillcrest", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650" + } +}, +{ + "type": "way", + "id": 11586828, + "bounds": { + "minlat": 40.8452022, + "minlon": -73.9996651, + "maxlat": 40.8454364, + "maxlon": -73.9992717 + }, + "nodes": [ + 103224100, + 6191069208, + 5970473910 + ], + "geometry": [ + { "lat": 40.8454364, "lon": -73.9996651 }, + { "lat": 40.8452106, "lon": -73.9992851 }, + { "lat": 40.8452022, "lon": -73.9992717 } + ], + "tags": { + "highway": "residential", + "name": "East Homestead Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Homestead", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650" + } +}, +{ + "type": "way", + "id": 11586885, + "bounds": { + "minlat": 40.8527150, + "minlon": -73.9772830, + "maxlat": 40.8542824, + "maxlon": -73.9757329 + }, + "nodes": [ + 103133483, + 103295874, + 103214626, + 7440135054, + 103276285 + ], + "geometry": [ + { "lat": 40.8527150, "lon": -73.9772830 }, + { "lat": 40.8532300, "lon": -73.9767660 }, + { "lat": 40.8537399, "lon": -73.9762647 }, + { "lat": 40.8539757, "lon": -73.9760336 }, + { "lat": 40.8542824, "lon": -73.9757329 } + ], + "tags": { + "highway": "residential", + "name": "William Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "William", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11586899, + "bounds": { + "minlat": 40.8807236, + "minlon": -73.9779816, + "maxlat": 40.8825450, + "maxlon": -73.9742481 + }, + "nodes": [ + 103295946, + 9239580257, + 9239580256, + 9239580255, + 103295948, + 12021734845, + 103295950, + 12021734839, + 12021734838, + 12021734835, + 12021734837, + 12021734836, + 12021734832, + 103290458, + 12021734834, + 12021734833, + 103277524, + 12021734827, + 103224144 + ], + "geometry": [ + { "lat": 40.8825450, "lon": -73.9779816 }, + { "lat": 40.8825012, "lon": -73.9778704 }, + { "lat": 40.8824862, "lon": -73.9778344 }, + { "lat": 40.8823846, "lon": -73.9775977 }, + { "lat": 40.8823384, "lon": -73.9774749 }, + { "lat": 40.8822632, "lon": -73.9772582 }, + { "lat": 40.8821777, "lon": -73.9769919 }, + { "lat": 40.8821107, "lon": -73.9768333 }, + { "lat": 40.8820478, "lon": -73.9766895 }, + { "lat": 40.8819859, "lon": -73.9765546 }, + { "lat": 40.8819497, "lon": -73.9764780 }, + { "lat": 40.8819016, "lon": -73.9763870 }, + { "lat": 40.8818342, "lon": -73.9762740 }, + { "lat": 40.8817649, "lon": -73.9761701 }, + { "lat": 40.8816904, "lon": -73.9760426 }, + { "lat": 40.8816356, "lon": -73.9759432 }, + { "lat": 40.8813135, "lon": -73.9753175 }, + { "lat": 40.8807716, "lon": -73.9743395 }, + { "lat": 40.8807236, "lon": -73.9742481 } + ], + "tags": { + "highway": "residential", + "name": "Meadowbrook Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Meadowbrook", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11586905, + "bounds": { + "minlat": 40.8753763, + "minlon": -73.9719965, + "maxlat": 40.8880530, + "maxlon": -73.9654938 + }, + "nodes": [ + 12367941776, + 12367941777, + 103296072, + 103096290, + 103296075, + 3533793093, + 103296077, + 12367941778, + 12367941779, + 12367941780, + 7358630216, + 6904885601, + 103099545, + 103296079, + 12367941781, + 103296081, + 12367941782, + 103296083, + 103296087, + 103146346, + 103296091, + 103296093, + 103267384, + 103296096, + 103296098, + 103296100, + 103138404, + 103296102, + 103296104, + 103296105, + 103296107, + 7857295734, + 103296111, + 103296113, + 103214278, + 12021734824, + 103296115, + 103296117, + 103296119, + 103296121, + 10062783080, + 103213820, + 103226557, + 103296127, + 103296129, + 103296131, + 103296133, + 103296135, + 103296137, + 12021734774, + 103211664 + ], + "geometry": [ + { "lat": 40.8880530, "lon": -73.9654938 }, + { "lat": 40.8879869, "lon": -73.9655366 }, + { "lat": 40.8879174, "lon": -73.9655823 }, + { "lat": 40.8878506, "lon": -73.9656221 }, + { "lat": 40.8877833, "lon": -73.9656582 }, + { "lat": 40.8877312, "lon": -73.9656855 }, + { "lat": 40.8876412, "lon": -73.9657212 }, + { "lat": 40.8875550, "lon": -73.9657519 }, + { "lat": 40.8874540, "lon": -73.9657844 }, + { "lat": 40.8873795, "lon": -73.9658046 }, + { "lat": 40.8873006, "lon": -73.9658268 }, + { "lat": 40.8872549, "lon": -73.9658374 }, + { "lat": 40.8865217, "lon": -73.9660173 }, + { "lat": 40.8859878, "lon": -73.9661534 }, + { "lat": 40.8858893, "lon": -73.9661797 }, + { "lat": 40.8857808, "lon": -73.9662077 }, + { "lat": 40.8856610, "lon": -73.9662430 }, + { "lat": 40.8855386, "lon": -73.9662790 }, + { "lat": 40.8843210, "lon": -73.9667730 }, + { "lat": 40.8835670, "lon": -73.9670270 }, + { "lat": 40.8830650, "lon": -73.9671670 }, + { "lat": 40.8822860, "lon": -73.9675010 }, + { "lat": 40.8817739, "lon": -73.9678335 }, + { "lat": 40.8811472, "lon": -73.9681973 }, + { "lat": 40.8806881, "lon": -73.9684961 }, + { "lat": 40.8804202, "lon": -73.9686463 }, + { "lat": 40.8800936, "lon": -73.9688178 }, + { "lat": 40.8800000, "lon": -73.9688690 }, + { "lat": 40.8798190, "lon": -73.9690200 }, + { "lat": 40.8796450, "lon": -73.9691880 }, + { "lat": 40.8795220, "lon": -73.9693240 }, + { "lat": 40.8789486, "lon": -73.9700988 }, + { "lat": 40.8788020, "lon": -73.9702790 }, + { "lat": 40.8787140, "lon": -73.9703610 }, + { "lat": 40.8786913, "lon": -73.9703779 }, + { "lat": 40.8786170, "lon": -73.9704330 }, + { "lat": 40.8784720, "lon": -73.9705100 }, + { "lat": 40.8781430, "lon": -73.9706130 }, + { "lat": 40.8780370, "lon": -73.9706520 }, + { "lat": 40.8779310, "lon": -73.9707080 }, + { "lat": 40.8776316, "lon": -73.9709118 }, + { "lat": 40.8776177, "lon": -73.9709213 }, + { "lat": 40.8772610, "lon": -73.9711895 }, + { "lat": 40.8769100, "lon": -73.9713630 }, + { "lat": 40.8766890, "lon": -73.9714440 }, + { "lat": 40.8764700, "lon": -73.9715000 }, + { "lat": 40.8762410, "lon": -73.9715720 }, + { "lat": 40.8760160, "lon": -73.9716650 }, + { "lat": 40.8758510, "lon": -73.9717480 }, + { "lat": 40.8754835, "lon": -73.9719332 }, + { "lat": 40.8753763, "lon": -73.9719965 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jones Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jones", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11586907, + "bounds": { + "minlat": 40.8569433, + "minlon": -73.9793681, + "maxlat": 40.8659740, + "maxlon": -73.9757860 + }, + "nodes": [ + 103276294, + 7382050197, + 103296174, + 103272811, + 7415977312, + 103148144, + 7376099637, + 7376099639, + 7376099614, + 299178552, + 7376099610, + 103296178, + 8434903877, + 7376099600, + 7376099539, + 103242539, + 103296180, + 440215054, + 103296184, + 518971818, + 6137185198, + 103296186, + 518957800, + 103296187, + 103156471, + 103296188, + 7373684779, + 103296189, + 103296190, + 103296191, + 103220662 + ], + "geometry": [ + { "lat": 40.8569433, "lon": -73.9793681 }, + { "lat": 40.8575017, "lon": -73.9790743 }, + { "lat": 40.8575332, "lon": -73.9790526 }, + { "lat": 40.8582619, "lon": -73.9786406 }, + { "lat": 40.8582935, "lon": -73.9786229 }, + { "lat": 40.8585818, "lon": -73.9784606 }, + { "lat": 40.8586537, "lon": -73.9784209 }, + { "lat": 40.8587871, "lon": -73.9783473 }, + { "lat": 40.8588366, "lon": -73.9783200 }, + { "lat": 40.8589233, "lon": -73.9782721 }, + { "lat": 40.8590853, "lon": -73.9781937 }, + { "lat": 40.8591280, "lon": -73.9781730 }, + { "lat": 40.8591603, "lon": -73.9781624 }, + { "lat": 40.8591874, "lon": -73.9781534 }, + { "lat": 40.8592451, "lon": -73.9781344 }, + { "lat": 40.8598320, "lon": -73.9779410 }, + { "lat": 40.8599730, "lon": -73.9778950 }, + { "lat": 40.8604863, "lon": -73.9776668 }, + { "lat": 40.8609810, "lon": -73.9774980 }, + { "lat": 40.8614339, "lon": -73.9772034 }, + { "lat": 40.8615682, "lon": -73.9771220 }, + { "lat": 40.8619070, "lon": -73.9769050 }, + { "lat": 40.8629104, "lon": -73.9764674 }, + { "lat": 40.8630790, "lon": -73.9763990 }, + { "lat": 40.8639000, "lon": -73.9761670 }, + { "lat": 40.8648070, "lon": -73.9759150 }, + { "lat": 40.8649614, "lon": -73.9758990 }, + { "lat": 40.8657930, "lon": -73.9758130 }, + { "lat": 40.8658790, "lon": -73.9757890 }, + { "lat": 40.8659260, "lon": -73.9757860 }, + { "lat": 40.8659740, "lon": -73.9758080 } + ], + "tags": { + "highway": "residential", + "maxheight:signed": "no", + "name": "Jones Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jones", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11586939, + "bounds": { + "minlat": 40.8168142, + "minlon": -74.0050368, + "maxlat": 40.8177270, + "maxlon": -74.0048518 + }, + "nodes": [ + 103296375, + 103159406 + ], + "geometry": [ + { "lat": 40.8168142, "lon": -74.0050368 }, + { "lat": 40.8177270, "lon": -74.0048518 } + ], + "tags": { + "highway": "residential", + "name": "Linda Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linda", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11586948, + "bounds": { + "minlat": 40.8607380, + "minlon": -74.0237905, + "maxlat": 40.8622426, + "maxlon": -74.0169250 + }, + "nodes": [ + 103276242, + 103296464, + 103296466, + 103179623, + 103217261, + 103214373 + ], + "geometry": [ + { "lat": 40.8622426, "lon": -74.0237905 }, + { "lat": 40.8618660, "lon": -74.0221910 }, + { "lat": 40.8618410, "lon": -74.0220730 }, + { "lat": 40.8615440, "lon": -74.0206840 }, + { "lat": 40.8612140, "lon": -74.0191410 }, + { "lat": 40.8607380, "lon": -74.0169250 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11586964, + "bounds": { + "minlat": 40.8501930, + "minlon": -73.9955840, + "maxlat": 40.8519260, + "maxlon": -73.9938220 + }, + "nodes": [ + 103277688, + 5976411337, + 5976411330, + 5976411327, + 103118177 + ], + "geometry": [ + { "lat": 40.8519260, "lon": -73.9938220 }, + { "lat": 40.8513355, "lon": -73.9944224 }, + { "lat": 40.8511681, "lon": -73.9945926 }, + { "lat": 40.8505969, "lon": -73.9951733 }, + { "lat": 40.8501930, "lon": -73.9955840 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11586976, + "bounds": { + "minlat": 40.8107730, + "minlon": -74.0024750, + "maxlat": 40.8124250, + "maxlon": -74.0013390 + }, + "nodes": [ + 103296810, + 103269803, + 13525387275, + 103232626, + 13525387257, + 103144647 + ], + "geometry": [ + { "lat": 40.8107730, "lon": -74.0024750 }, + { "lat": 40.8111240, "lon": -74.0022330 }, + { "lat": 40.8115753, "lon": -74.0019229 }, + { "lat": 40.8116450, "lon": -74.0018750 }, + { "lat": 40.8117355, "lon": -74.0018149 }, + { "lat": 40.8124250, "lon": -74.0013390 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11586996, + "bounds": { + "minlat": 40.8549798, + "minlon": -73.9662770, + "maxlat": 40.8559253, + "maxlon": -73.9657224 + }, + "nodes": [ + 2565327494, + 12020539662, + 12020539660, + 12020539661, + 11170628886, + 12021336901, + 2565327496, + 4054801534 + ], + "geometry": [ + { "lat": 40.8549798, "lon": -73.9662770 }, + { "lat": 40.8550379, "lon": -73.9662537 }, + { "lat": 40.8550609, "lon": -73.9662448 }, + { "lat": 40.8550975, "lon": -73.9662281 }, + { "lat": 40.8551315, "lon": -73.9662114 }, + { "lat": 40.8551650, "lon": -73.9661923 }, + { "lat": 40.8555193, "lon": -73.9659733 }, + { "lat": 40.8559253, "lon": -73.9657224 } + ], + "tags": { + "highway": "unclassified", + "name": "Hudson Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "St", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11587045, + "bounds": { + "minlat": 40.8091380, + "minlon": -73.9992720, + "maxlat": 40.8093378, + "maxlon": -73.9990410 + }, + "nodes": [ + 440208113, + 4727867666, + 103111346 + ], + "geometry": [ + { "lat": 40.8091380, "lon": -73.9992720 }, + { "lat": 40.8092746, "lon": -73.9990873 }, + { "lat": 40.8093378, "lon": -73.9990410 } + ], + "tags": { + "highway": "residential", + "name": "Heindel Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Heindel", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11587074, + "bounds": { + "minlat": 40.8728717, + "minlon": -74.0144984, + "maxlat": 40.8737420, + "maxlon": -74.0138420 + }, + "nodes": [ + 103247066, + 103162985 + ], + "geometry": [ + { "lat": 40.8728717, "lon": -74.0144984 }, + { "lat": 40.8737420, "lon": -74.0138420 } + ], + "tags": { + "highway": "residential", + "name": "Whitelaw Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Whitelaw", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11587086, + "bounds": { + "minlat": 40.8653080, + "minlon": -73.9894750, + "maxlat": 40.8672330, + "maxlon": -73.9853740 + }, + "nodes": [ + 103198212, + 8076425405, + 103198218, + 5704149064, + 103141315, + 10115605019, + 10115605018, + 103143501, + 10115605017, + 103214182, + 103206871, + 10115455714, + 6107676751, + 6107676752, + 103224121 + ], + "geometry": [ + { "lat": 40.8672330, "lon": -73.9894750 }, + { "lat": 40.8671799, "lon": -73.9893680 }, + { "lat": 40.8668140, "lon": -73.9886300 }, + { "lat": 40.8667998, "lon": -73.9886013 }, + { "lat": 40.8665015, "lon": -73.9879902 }, + { "lat": 40.8664865, "lon": -73.9879612 }, + { "lat": 40.8661640, "lon": -73.9872323 }, + { "lat": 40.8661417, "lon": -73.9871834 }, + { "lat": 40.8660094, "lon": -73.9869218 }, + { "lat": 40.8659855, "lon": -73.9868742 }, + { "lat": 40.8658031, "lon": -73.9864700 }, + { "lat": 40.8657816, "lon": -73.9864222 }, + { "lat": 40.8656435, "lon": -73.9861076 }, + { "lat": 40.8655084, "lon": -73.9858037 }, + { "lat": 40.8653080, "lon": -73.9853740 } + ], + "tags": { + "highway": "residential", + "name": "Hillside Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11587088, + "bounds": { + "minlat": 40.8686514, + "minlon": -73.9916070, + "maxlat": 40.8693230, + "maxlon": -73.9900750 + }, + "nodes": [ + 103222205, + 7927785501, + 7927785488, + 7927785505, + 7927769083, + 7927785506, + 103297866, + 103297868 + ], + "geometry": [ + { "lat": 40.8693230, "lon": -73.9916070 }, + { "lat": 40.8690573, "lon": -73.9909320 }, + { "lat": 40.8690415, "lon": -73.9908919 }, + { "lat": 40.8688661, "lon": -73.9904461 }, + { "lat": 40.8688402, "lon": -73.9903882 }, + { "lat": 40.8688111, "lon": -73.9902966 }, + { "lat": 40.8687200, "lon": -73.9900750 }, + { "lat": 40.8686514, "lon": -73.9901248 } + ], + "tags": { + "highway": "residential", + "name": "Leyland Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11587103, + "bounds": { + "minlat": 40.8486483, + "minlon": -74.0015571, + "maxlat": 40.8535570, + "maxlon": -73.9966350 + }, + "nodes": [ + 103137594, + 103226729, + 103154263, + 7687186408, + 103152176, + 103142415, + 103163465, + 103298057, + 103119433, + 103191325 + ], + "geometry": [ + { "lat": 40.8535570, "lon": -73.9966350 }, + { "lat": 40.8528939, "lon": -73.9972899 }, + { "lat": 40.8524639, "lon": -73.9977195 }, + { "lat": 40.8520032, "lon": -73.9981777 }, + { "lat": 40.8518248, "lon": -73.9983533 }, + { "lat": 40.8512330, "lon": -73.9989500 }, + { "lat": 40.8506700, "lon": -73.9995220 }, + { "lat": 40.8501530, "lon": -74.0000430 }, + { "lat": 40.8498530, "lon": -74.0003355 }, + { "lat": 40.8486483, "lon": -74.0015571 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Hillside Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11587108, + "bounds": { + "minlat": 40.8750180, + "minlon": -74.0200620, + "maxlat": 40.8769170, + "maxlon": -74.0150480 + }, + "nodes": [ + 103169828, + 103115272, + 103187265, + 103298090, + 103280820 + ], + "geometry": [ + { "lat": 40.8750180, "lon": -74.0150480 }, + { "lat": 40.8754778, "lon": -74.0162112 }, + { "lat": 40.8758720, "lon": -74.0173040 }, + { "lat": 40.8763096, "lon": -74.0184589 }, + { "lat": 40.8769170, "lon": -74.0200620 } + ], + "tags": { + "highway": "residential", + "name": "Hillside Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11587119, + "bounds": { + "minlat": 40.8288174, + "minlon": -73.9888030, + "maxlat": 40.8306336, + "maxlon": -73.9875478 + }, + "nodes": [ + 103237102, + 103288788 + ], + "geometry": [ + { "lat": 40.8306336, "lon": -73.9875478 }, + { "lat": 40.8288174, "lon": -73.9888030 } + ], + "tags": { + "highway": "residential", + "name": "Hillside Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11587138, + "bounds": { + "minlat": 40.8790203, + "minlon": -74.0126822, + "maxlat": 40.8796538, + "maxlon": -74.0106439 + }, + "nodes": [ + 103214416, + 103125849, + 7117505394, + 103298358 + ], + "geometry": [ + { "lat": 40.8790203, "lon": -74.0106439 }, + { "lat": 40.8795568, "lon": -74.0123732 }, + { "lat": 40.8795741, "lon": -74.0124284 }, + { "lat": 40.8796538, "lon": -74.0126822 } + ], + "tags": { + "highway": "residential", + "name": "Parker Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Parker", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11587139, + "bounds": { + "minlat": 40.8136999, + "minlon": -73.9930549, + "maxlat": 40.8145785, + "maxlon": -73.9907949 + }, + "nodes": [ + 103298360, + 103298363, + 103298365, + 7617250033, + 103298368, + 103298370, + 7617250032, + 103235926, + 7614292473, + 103298372, + 103298374 + ], + "geometry": [ + { "lat": 40.8145785, "lon": -73.9930549 }, + { "lat": 40.8145364, "lon": -73.9929786 }, + { "lat": 40.8141588, "lon": -73.9923243 }, + { "lat": 40.8141377, "lon": -73.9922832 }, + { "lat": 40.8140672, "lon": -73.9921456 }, + { "lat": 40.8140459, "lon": -73.9921036 }, + { "lat": 40.8140326, "lon": -73.9920519 }, + { "lat": 40.8139380, "lon": -73.9916837 }, + { "lat": 40.8138091, "lon": -73.9912202 }, + { "lat": 40.8137512, "lon": -73.9910117 }, + { "lat": 40.8136999, "lon": -73.9907949 } + ], + "tags": { + "highway": "residential", + "name": "Wheeler Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wheeler", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11587151, + "bounds": { + "minlat": 40.8758290, + "minlon": -73.9584174, + "maxlat": 40.8784127, + "maxlon": -73.9543167 + }, + "nodes": [ + 5108505896, + 5108505916, + 103298482, + 103298484, + 9347930999, + 9347930997, + 103286728, + 103275483, + 103147843, + 10059739076, + 103247958 + ], + "geometry": [ + { "lat": 40.8758290, "lon": -73.9543825 }, + { "lat": 40.8760105, "lon": -73.9543167 }, + { "lat": 40.8760869, "lon": -73.9543167 }, + { "lat": 40.8761892, "lon": -73.9544511 }, + { "lat": 40.8764208, "lon": -73.9548623 }, + { "lat": 40.8764744, "lon": -73.9549575 }, + { "lat": 40.8768205, "lon": -73.9555480 }, + { "lat": 40.8774760, "lon": -73.9567711 }, + { "lat": 40.8778309, "lon": -73.9573824 }, + { "lat": 40.8783451, "lon": -73.9583008 }, + { "lat": 40.8784127, "lon": -73.9584174 } + ], + "tags": { + "highway": "residential", + "name": "Rock Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Rock", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11587153, + "bounds": { + "minlat": 40.8677434, + "minlon": -73.9692955, + "maxlat": 40.8695191, + "maxlon": -73.9686638 + }, + "nodes": [ + 103189412, + 3301540373, + 103298527, + 3301540371, + 103298529, + 3301540367, + 103298531, + 3301540363, + 3301540362, + 3301539555, + 3301539554, + 3301539553, + 3301539552, + 103298535 + ], + "geometry": [ + { "lat": 40.8695191, "lon": -73.9689793 }, + { "lat": 40.8694279, "lon": -73.9688811 }, + { "lat": 40.8692620, "lon": -73.9688094 }, + { "lat": 40.8690711, "lon": -73.9687090 }, + { "lat": 40.8689237, "lon": -73.9686638 }, + { "lat": 40.8687759, "lon": -73.9687133 }, + { "lat": 40.8685315, "lon": -73.9688632 }, + { "lat": 40.8683650, "lon": -73.9690215 }, + { "lat": 40.8681979, "lon": -73.9691773 }, + { "lat": 40.8680951, "lon": -73.9692453 }, + { "lat": 40.8680178, "lon": -73.9692955 }, + { "lat": 40.8679347, "lon": -73.9692839 }, + { "lat": 40.8678887, "lon": -73.9692211 }, + { "lat": 40.8677434, "lon": -73.9688878 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Hidden Ledge Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hidden Ledge", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11587213, + "bounds": { + "minlat": 40.8242549, + "minlon": -73.9821064, + "maxlat": 40.8258481, + "maxlon": -73.9793003 + }, + "nodes": [ + 103299090, + 103235733 + ], + "geometry": [ + { "lat": 40.8242549, "lon": -73.9793003 }, + { "lat": 40.8258481, "lon": -73.9821064 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Grant Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grant", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11587238, + "bounds": { + "minlat": 40.8291076, + "minlon": -74.0035176, + "maxlat": 40.8319189, + "maxlon": -73.9985188 + }, + "nodes": [ + 103185074, + 8530362405, + 103293189, + 103272857, + 103299504, + 7131436032, + 8153529846, + 103139570, + 11755845431, + 11755845433, + 103209164 + ], + "geometry": [ + { "lat": 40.8291076, "lon": -73.9985188 }, + { "lat": 40.8291868, "lon": -73.9985700 }, + { "lat": 40.8297031, "lon": -73.9994766 }, + { "lat": 40.8304845, "lon": -74.0008568 }, + { "lat": 40.8308970, "lon": -74.0016220 }, + { "lat": 40.8313987, "lon": -74.0025115 }, + { "lat": 40.8315987, "lon": -74.0028462 }, + { "lat": 40.8317210, "lon": -74.0030553 }, + { "lat": 40.8318878, "lon": -74.0033604 }, + { "lat": 40.8319123, "lon": -74.0034341 }, + { "lat": 40.8319189, "lon": -74.0035176 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "name": "East Edgewater Avenue", + "ref": "CR 50", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11587336, + "bounds": { + "minlat": 40.8673605, + "minlon": -74.0141150, + "maxlat": 40.8683273, + "maxlon": -74.0128317 + }, + "nodes": [ + 103205373, + 6592337897, + 6592337887, + 103300320, + 6592337891, + 103300322, + 6592337877, + 6592337882, + 5701406440 + ], + "geometry": [ + { "lat": 40.8673605, "lon": -74.0130507 }, + { "lat": 40.8673763, "lon": -74.0131451 }, + { "lat": 40.8674815, "lon": -74.0137722 }, + { "lat": 40.8675390, "lon": -74.0141150 }, + { "lat": 40.8679498, "lon": -74.0140254 }, + { "lat": 40.8683273, "lon": -74.0139431 }, + { "lat": 40.8682280, "lon": -74.0134988 }, + { "lat": 40.8680912, "lon": -74.0128863 }, + { "lat": 40.8680790, "lon": -74.0128317 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Parkview", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Parkview", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11587373, + "bounds": { + "minlat": 40.8596248, + "minlon": -73.9919243, + "maxlat": 40.8610812, + "maxlon": -73.9894429 + }, + "nodes": [ + 103300521, + 10239462471, + 10239462461, + 8075114222, + 103224110 + ], + "geometry": [ + { "lat": 40.8610812, "lon": -73.9919243 }, + { "lat": 40.8609879, "lon": -73.9917659 }, + { "lat": 40.8599670, "lon": -73.9900331 }, + { "lat": 40.8596960, "lon": -73.9895731 }, + { "lat": 40.8596248, "lon": -73.9894429 } + ], + "tags": { + "highway": "residential", + "name": "High Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "High", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11587414, + "bounds": { + "minlat": 40.8283902, + "minlon": -73.9880898, + "maxlat": 40.8302243, + "maxlon": -73.9868265 + }, + "nodes": [ + 103288783, + 7539965703, + 7538917857, + 7538917894, + 7539958158, + 103237101 + ], + "geometry": [ + { "lat": 40.8283902, "lon": -73.9880898 }, + { "lat": 40.8292663, "lon": -73.9874937 }, + { "lat": 40.8293324, "lon": -73.9874487 }, + { "lat": 40.8298884, "lon": -73.9870809 }, + { "lat": 40.8299287, "lon": -73.9870582 }, + { "lat": 40.8302243, "lon": -73.9868265 } + ], + "tags": { + "hgv": "no", + "highway": "residential", + "name": "Glen Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glen", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11587415, + "bounds": { + "minlat": 40.8256327, + "minlon": -73.9908067, + "maxlat": 40.8275327, + "maxlon": -73.9889304 + }, + "nodes": [ + 103150108, + 103212133, + 103281224, + 103231463, + 103300788 + ], + "geometry": [ + { "lat": 40.8256327, "lon": -73.9908067 }, + { "lat": 40.8261695, "lon": -73.9902720 }, + { "lat": 40.8267205, "lon": -73.9897172 }, + { "lat": 40.8272705, "lon": -73.9891852 }, + { "lat": 40.8275327, "lon": -73.9889304 } + ], + "tags": { + "highway": "residential", + "name": "Glen Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 11587459, + "bounds": { + "minlat": 40.8586013, + "minlon": -73.9803782, + "maxlat": 40.8587774, + "maxlon": -73.9797223 + }, + "nodes": [ + 440215071, + 103301305, + 103301307, + 7376099538, + 299121240 + ], + "geometry": [ + { "lat": 40.8587774, "lon": -73.9803782 }, + { "lat": 40.8587220, "lon": -73.9801190 }, + { "lat": 40.8586840, "lon": -73.9800180 }, + { "lat": 40.8586817, "lon": -73.9800097 }, + { "lat": 40.8586013, "lon": -73.9797223 } + ], + "tags": { + "highway": "residential", + "name": "Caspar Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Caspar", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11587467, + "bounds": { + "minlat": 40.8290848, + "minlon": -73.9788679, + "maxlat": 40.8302801, + "maxlon": -73.9779306 + }, + "nodes": [ + 9692073853, + 103301343, + 103301344, + 103206147, + 103301346, + 103301347, + 103266114 + ], + "geometry": [ + { "lat": 40.8290848, "lon": -73.9788679 }, + { "lat": 40.8295650, "lon": -73.9784100 }, + { "lat": 40.8296190, "lon": -73.9783830 }, + { "lat": 40.8297344, "lon": -73.9783713 }, + { "lat": 40.8297870, "lon": -73.9783630 }, + { "lat": 40.8298470, "lon": -73.9783300 }, + { "lat": 40.8302801, "lon": -73.9779306 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lit": "yes", + "name": "Lenox Court", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lenox", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11587468, + "bounds": { + "minlat": 40.8666179, + "minlon": -73.9688092, + "maxlat": 40.8692700, + "maxlon": -73.9661190 + }, + "nodes": [ + 103301348, + 103278391, + 103301350, + 440215018, + 103252473, + 103301354 + ], + "geometry": [ + { "lat": 40.8666179, "lon": -73.9688092 }, + { "lat": 40.8675959, "lon": -73.9677955 }, + { "lat": 40.8685240, "lon": -73.9668830 }, + { "lat": 40.8685730, "lon": -73.9668330 }, + { "lat": 40.8688010, "lon": -73.9665990 }, + { "lat": 40.8692700, "lon": -73.9661190 } + ], + "tags": { + "highway": "residential", + "name": "Rossett Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Rossett", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11587480, + "bounds": { + "minlat": 40.8740277, + "minlon": -74.0026429, + "maxlat": 40.8748636, + "maxlon": -73.9999062 + }, + "nodes": [ + 103301413, + 9871181532, + 103093326, + 9871181534, + 103268030 + ], + "geometry": [ + { "lat": 40.8740277, "lon": -73.9999062 }, + { "lat": 40.8745793, "lon": -74.0017200 }, + { "lat": 40.8746116, "lon": -74.0018262 }, + { "lat": 40.8746343, "lon": -74.0018997 }, + { "lat": 40.8748636, "lon": -74.0026429 } + ], + "tags": { + "highway": "residential", + "name": "Washington Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11587486, + "bounds": { + "minlat": 40.8756555, + "minlon": -74.0056440, + "maxlat": 40.8757960, + "maxlon": -74.0052196 + }, + "nodes": [ + 103177143, + 103158755 + ], + "geometry": [ + { "lat": 40.8757960, "lon": -74.0056440 }, + { "lat": 40.8756555, "lon": -74.0052196 } + ], + "tags": { + "highway": "residential", + "name": "Washington Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11587489, + "bounds": { + "minlat": 40.8233109, + "minlon": -74.0051869, + "maxlat": 40.8238168, + "maxlon": -74.0050597 + }, + "nodes": [ + 103301479, + 103224743 + ], + "geometry": [ + { "lat": 40.8233109, "lon": -74.0051869 }, + { "lat": 40.8238168, "lon": -74.0050597 } + ], + "tags": { + "highway": "residential", + "name": "Adams Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Adams", + "tiger:name_type": "Street", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "64398779", + "tiger:upload_uuid": "bulk_upload.pl-5b68207f-8509-44f2-bf52-94cbb5c7f59c", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11587493, + "bounds": { + "minlat": 40.8760911, + "minlon": -73.9990279, + "maxlat": 40.8779900, + "maxlon": -73.9980840 + }, + "nodes": [ + 103210084, + 477383332, + 103301530, + 103301532, + 103301534, + 103301536, + 103301539, + 103301541, + 103185443 + ], + "geometry": [ + { "lat": 40.8760911, "lon": -73.9990279 }, + { "lat": 40.8761650, "lon": -73.9989849 }, + { "lat": 40.8777080, "lon": -73.9980880 }, + { "lat": 40.8777520, "lon": -73.9980840 }, + { "lat": 40.8777950, "lon": -73.9980990 }, + { "lat": 40.8778310, "lon": -73.9981320 }, + { "lat": 40.8778570, "lon": -73.9981790 }, + { "lat": 40.8779430, "lon": -73.9985210 }, + { "lat": 40.8779900, "lon": -73.9987100 } + ], + "tags": { + "highway": "residential", + "name": "Iris Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Iris", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11587500, + "bounds": { + "minlat": 40.8770273, + "minlon": -73.9559198, + "maxlat": 40.8791662, + "maxlon": -73.9520343 + }, + "nodes": [ + 103215737, + 543224579, + 6903047158, + 103145566, + 103286724, + 103147868, + 10059739082, + 103247981 + ], + "geometry": [ + { "lat": 40.8770273, "lon": -73.9520343 }, + { "lat": 40.8771311, "lon": -73.9523831 }, + { "lat": 40.8772792, "lon": -73.9526558 }, + { "lat": 40.8781466, "lon": -73.9541556 }, + { "lat": 40.8783471, "lon": -73.9545313 }, + { "lat": 40.8787620, "lon": -73.9552598 }, + { "lat": 40.8790735, "lon": -73.9557803 }, + { "lat": 40.8791662, "lon": -73.9559198 } + ], + "tags": { + "highway": "residential", + "name": "Sherwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sherwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11587501, + "bounds": { + "minlat": 40.8762173, + "minlon": -73.9520416, + "maxlat": 40.8769164, + "maxlon": -73.9507980 + }, + "nodes": [ + 103195284, + 5108252312, + 8414599713, + 8219460661, + 103215736 + ], + "geometry": [ + { "lat": 40.8762173, "lon": -73.9507980 }, + { "lat": 40.8766062, "lon": -73.9514943 }, + { "lat": 40.8766537, "lon": -73.9515782 }, + { "lat": 40.8767161, "lon": -73.9516883 }, + { "lat": 40.8769164, "lon": -73.9520416 } + ], + "tags": { + "highway": "residential", + "name": "Sherwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sherwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11587504, + "bounds": { + "minlat": 40.8694280, + "minlon": -74.0202090, + "maxlat": 40.8702400, + "maxlon": -74.0144030 + }, + "nodes": [ + 103214389, + 4161503253, + 103301639, + 103301641, + 103301643, + 103301645, + 6592337406, + 103301649, + 475230555, + 103231157, + 103239386, + 103301651, + 103301653, + 103301655, + 103301657, + 103301659, + 103301661, + 103301663, + 103301665, + 103301666, + 103272820 + ], + "geometry": [ + { "lat": 40.8694280, "lon": -74.0144030 }, + { "lat": 40.8694299, "lon": -74.0144136 }, + { "lat": 40.8695900, "lon": -74.0152970 }, + { "lat": 40.8695960, "lon": -74.0153620 }, + { "lat": 40.8695940, "lon": -74.0154730 }, + { "lat": 40.8695670, "lon": -74.0156880 }, + { "lat": 40.8695634, "lon": -74.0158069 }, + { "lat": 40.8695740, "lon": -74.0159540 }, + { "lat": 40.8696320, "lon": -74.0162656 }, + { "lat": 40.8697170, "lon": -74.0167220 }, + { "lat": 40.8700850, "lon": -74.0186810 }, + { "lat": 40.8702270, "lon": -74.0194360 }, + { "lat": 40.8702400, "lon": -74.0195330 }, + { "lat": 40.8702400, "lon": -74.0196300 }, + { "lat": 40.8702250, "lon": -74.0197350 }, + { "lat": 40.8701950, "lon": -74.0198340 }, + { "lat": 40.8701510, "lon": -74.0199240 }, + { "lat": 40.8700950, "lon": -74.0200010 }, + { "lat": 40.8700290, "lon": -74.0200620 }, + { "lat": 40.8699620, "lon": -74.0201030 }, + { "lat": 40.8696470, "lon": -74.0202090 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Sherwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sherwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11587506, + "bounds": { + "minlat": 40.8653430, + "minlon": -73.9666300, + "maxlat": 40.8683460, + "maxlon": -73.9636150 + }, + "nodes": [ + 103132997, + 103278389, + 7367583665, + 7367583649, + 7367583654, + 7367583633, + 9287376851, + 9287376855, + 9287376853, + 103252471, + 9287376863, + 103284210 + ], + "geometry": [ + { "lat": 40.8653430, "lon": -73.9666300 }, + { "lat": 40.8663239, "lon": -73.9656405 }, + { "lat": 40.8670509, "lon": -73.9649236 }, + { "lat": 40.8671219, "lon": -73.9648535 }, + { "lat": 40.8671859, "lon": -73.9647904 }, + { "lat": 40.8672624, "lon": -73.9647150 }, + { "lat": 40.8673915, "lon": -73.9645856 }, + { "lat": 40.8674617, "lon": -73.9645142 }, + { "lat": 40.8675208, "lon": -73.9644542 }, + { "lat": 40.8675840, "lon": -73.9643900 }, + { "lat": 40.8676310, "lon": -73.9643422 }, + { "lat": 40.8683460, "lon": -73.9636150 } + ], + "tags": { + "highway": "residential", + "name": "Hammett Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hammett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11587557, + "bounds": { + "minlat": 40.8158034, + "minlon": -74.0017306, + "maxlat": 40.8162277, + "maxlon": -74.0010540 + }, + "nodes": [ + 103166194, + 103302530, + 13525551009, + 103302524 + ], + "geometry": [ + { "lat": 40.8162277, "lon": -74.0017306 }, + { "lat": 40.8161235, "lon": -74.0016388 }, + { "lat": 40.8158422, "lon": -74.0011249 }, + { "lat": 40.8158034, "lon": -74.0010540 } + ], + "tags": { + "highway": "tertiary", + "name": "Kennedy Drive", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kennedy", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11587562, + "bounds": { + "minlat": 40.8615175, + "minlon": -73.9601771, + "maxlat": 40.8625031, + "maxlon": -73.9591282 + }, + "nodes": [ + 103281348, + 7393404727, + 6878424780, + 6878424777, + 103094693 + ], + "geometry": [ + { "lat": 40.8625031, "lon": -73.9591282 }, + { "lat": 40.8620567, "lon": -73.9596026 }, + { "lat": 40.8619705, "lon": -73.9596942 }, + { "lat": 40.8618120, "lon": -73.9598623 }, + { "lat": 40.8615175, "lon": -73.9601771 } + ], + "tags": { + "highway": "residential", + "name": "8th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "8th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11587566, + "bounds": { + "minlat": 40.8414791, + "minlon": -73.9927081, + "maxlat": 40.8491097, + "maxlon": -73.9850884 + }, + "nodes": [ + 103295503, + 103294157, + 103302584, + 103286692, + 103277693, + 12692250258 + ], + "geometry": [ + { "lat": 40.8414791, "lon": -73.9927081 }, + { "lat": 40.8428402, "lon": -73.9913613 }, + { "lat": 40.8439932, "lon": -73.9902087 }, + { "lat": 40.8453510, "lon": -73.9888130 }, + { "lat": 40.8476800, "lon": -73.9864910 }, + { "lat": 40.8491097, "lon": -73.9850884 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "8th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "8th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11587574, + "bounds": { + "minlat": 40.8146411, + "minlon": -74.0018946, + "maxlat": 40.8156894, + "maxlon": -74.0010560 + }, + "nodes": [ + 103302617, + 103302623, + 103302625, + 103302627, + 103302629, + 103093605, + 103103030, + 12535377610, + 5341017976 + ], + "geometry": [ + { "lat": 40.8146411, "lon": -74.0018946 }, + { "lat": 40.8147038, "lon": -74.0018880 }, + { "lat": 40.8148915, "lon": -74.0018238 }, + { "lat": 40.8149786, "lon": -74.0017907 }, + { "lat": 40.8150513, "lon": -74.0017435 }, + { "lat": 40.8152514, "lon": -74.0015486 }, + { "lat": 40.8154236, "lon": -74.0013816 }, + { "lat": 40.8155335, "lon": -74.0012704 }, + { "lat": 40.8156894, "lon": -74.0010560 } + ], + "tags": { + "highway": "residential", + "name": "8th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "8th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11587579, + "bounds": { + "minlat": 40.8517962, + "minlon": -73.9826394, + "maxlat": 40.8529602, + "maxlon": -73.9815275 + }, + "nodes": [ + 103263555, + 7428253990, + 5362370192, + 4695808492 + ], + "geometry": [ + { "lat": 40.8529602, "lon": -73.9815275 }, + { "lat": 40.8519664, "lon": -73.9824776 }, + { "lat": 40.8519360, "lon": -73.9825067 }, + { "lat": 40.8517962, "lon": -73.9826394 } + ], + "tags": { + "highway": "residential", + "name": "8th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "8th", + "tiger:name_type": "St", + "tiger:zip_left": "07024", + "tiger:zip_left_1": "07024", + "tiger:zip_left_2": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11587596, + "bounds": { + "minlat": 40.8600070, + "minlon": -73.9847570, + "maxlat": 40.8625340, + "maxlon": -73.9830310 + }, + "nodes": [ + 103282431, + 10245975830, + 103204851 + ], + "geometry": [ + { "lat": 40.8600070, "lon": -73.9847570 }, + { "lat": 40.8600846, "lon": -73.9847040 }, + { "lat": 40.8625340, "lon": -73.9830310 } + ], + "tags": { + "highway": "residential", + "name": "Hawthorne Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hawthorne", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11587607, + "bounds": { + "minlat": 40.8489920, + "minlon": -73.9978740, + "maxlat": 40.8494180, + "maxlon": -73.9971110 + }, + "nodes": [ + 103224103, + 5976782492, + 103302927 + ], + "geometry": [ + { "lat": 40.8489920, "lon": -73.9971110 }, + { "lat": 40.8492306, "lon": -73.9975384 }, + { "lat": 40.8494180, "lon": -73.9978740 } + ], + "tags": { + "highway": "residential", + "name": "Bellview Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bellview", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11587608, + "bounds": { + "minlat": 40.8757509, + "minlon": -74.0029846, + "maxlat": 40.8764349, + "maxlon": -74.0029521 + }, + "nodes": [ + 103118674, + 103302932, + 103302934, + 103302936 + ], + "geometry": [ + { "lat": 40.8757509, "lon": -74.0029846 }, + { "lat": 40.8757974, "lon": -74.0029795 }, + { "lat": 40.8762634, "lon": -74.0029580 }, + { "lat": 40.8764349, "lon": -74.0029521 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Sandburg Court", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sandburg", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11587625, + "bounds": { + "minlat": 40.8728550, + "minlon": -73.9622510, + "maxlat": 40.8739970, + "maxlon": -73.9615920 + }, + "nodes": [ + 103213809, + 103303039, + 103303041, + 103303043, + 103303045, + 103303047, + 103288301 + ], + "geometry": [ + { "lat": 40.8728550, "lon": -73.9622510 }, + { "lat": 40.8735680, "lon": -73.9616780 }, + { "lat": 40.8736520, "lon": -73.9616310 }, + { "lat": 40.8737300, "lon": -73.9616040 }, + { "lat": 40.8737740, "lon": -73.9615980 }, + { "lat": 40.8738210, "lon": -73.9615920 }, + { "lat": 40.8739970, "lon": -73.9615995 } + ], + "tags": { + "highway": "residential", + "name": "Westervelt Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Westervelt", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11587653, + "bounds": { + "minlat": 40.8813380, + "minlon": -73.9775189, + "maxlat": 40.8839269, + "maxlon": -73.9758000 + }, + "nodes": [ + 103303347, + 103295950, + 12021734843, + 12021734841, + 12021734842, + 12021734844, + 103267238 + ], + "geometry": [ + { "lat": 40.8813380, "lon": -73.9775189 }, + { "lat": 40.8821777, "lon": -73.9769919 }, + { "lat": 40.8828208, "lon": -73.9765926 }, + { "lat": 40.8829558, "lon": -73.9765038 }, + { "lat": 40.8830743, "lon": -73.9764165 }, + { "lat": 40.8838697, "lon": -73.9758414 }, + { "lat": 40.8839269, "lon": -73.9758000 } + ], + "tags": { + "highway": "residential", + "name": "Starling Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Starling", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11587655, + "bounds": { + "minlat": 40.8804978, + "minlon": -73.9780917, + "maxlat": 40.8810363, + "maxlon": -73.9776970 + }, + "nodes": [ + 103303351, + 12021734840, + 103303353 + ], + "geometry": [ + { "lat": 40.8810363, "lon": -73.9776970 }, + { "lat": 40.8805844, "lon": -73.9780283 }, + { "lat": 40.8804978, "lon": -73.9780917 } + ], + "tags": { + "highway": "residential", + "name": "Starling Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Starling", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11587681, + "bounds": { + "minlat": 40.8382220, + "minlon": -73.9870070, + "maxlat": 40.8395690, + "maxlon": -73.9856650 + }, + "nodes": [ + 103160746, + 103303658, + 5748061848, + 357743099, + 103111265 + ], + "geometry": [ + { "lat": 40.8382220, "lon": -73.9870070 }, + { "lat": 40.8390208, "lon": -73.9862075 }, + { "lat": 40.8391222, "lon": -73.9861060 }, + { "lat": 40.8391578, "lon": -73.9860708 }, + { "lat": 40.8395690, "lon": -73.9856650 } + ], + "tags": { + "highway": "residential", + "name": "Juanita Place", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Juanita", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11587721, + "bounds": { + "minlat": 40.8244943, + "minlon": -73.9873094, + "maxlat": 40.8262485, + "maxlon": -73.9841409 + }, + "nodes": [ + 5341032749, + 13525859295, + 4695282837, + 7554624983, + 4695282836, + 7554631953, + 4695282838, + 103282019, + 7557435230, + 7554631963, + 103112559 + ], + "geometry": [ + { "lat": 40.8262485, "lon": -73.9873094 }, + { "lat": 40.8262193, "lon": -73.9872421 }, + { "lat": 40.8261949, "lon": -73.9871875 }, + { "lat": 40.8260647, "lon": -73.9869423 }, + { "lat": 40.8260468, "lon": -73.9869086 }, + { "lat": 40.8260027, "lon": -73.9868312 }, + { "lat": 40.8257758, "lon": -73.9864325 }, + { "lat": 40.8251256, "lon": -73.9852780 }, + { "lat": 40.8248289, "lon": -73.9847436 }, + { "lat": 40.8246078, "lon": -73.9843453 }, + { "lat": 40.8244943, "lon": -73.9841409 } + ], + "tags": { + "highway": "residential", + "name": "Crescent Lane", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crescent", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 11587727, + "bounds": { + "minlat": 40.8222116, + "minlon": -73.9813507, + "maxlat": 40.8228114, + "maxlon": -73.9802897 + }, + "nodes": [ + 440208775, + 103195295 + ], + "geometry": [ + { "lat": 40.8222116, "lon": -73.9802897 }, + { "lat": 40.8228114, "lon": -73.9813507 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Crescent Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crescent", + "tiger:name_base_1": "Crescent", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 11587729, + "bounds": { + "minlat": 40.8601957, + "minlon": -73.9886834, + "maxlat": 40.8604406, + "maxlon": -73.9882321 + }, + "nodes": [ + 6109949875, + 10266533384, + 10266533385, + 10266533386, + 10266533387, + 10266533388, + 10266533389, + 10266533390, + 10266533391, + 10266533392, + 10266533393, + 10266533394, + 10266533395, + 10266533396, + 10266533397, + 10266533398, + 10266533399, + 10266533400, + 10266533401, + 10266533402, + 10266533403, + 10266533404, + 10266533405, + 6109949875 + ], + "geometry": [ + { "lat": 40.8602782, "lon": -73.9882583 }, + { "lat": 40.8602510, "lon": -73.9882891 }, + { "lat": 40.8602662, "lon": -73.9883119 }, + { "lat": 40.8602702, "lon": -73.9883300 }, + { "lat": 40.8602540, "lon": -73.9883689 }, + { "lat": 40.8602317, "lon": -73.9884058 }, + { "lat": 40.8602185, "lon": -73.9884292 }, + { "lat": 40.8602038, "lon": -73.9884869 }, + { "lat": 40.8601957, "lon": -73.9885372 }, + { "lat": 40.8602018, "lon": -73.9885794 }, + { "lat": 40.8602170, "lon": -73.9886291 }, + { "lat": 40.8602357, "lon": -73.9886498 }, + { "lat": 40.8602717, "lon": -73.9886706 }, + { "lat": 40.8602971, "lon": -73.9886827 }, + { "lat": 40.8603250, "lon": -73.9886834 }, + { "lat": 40.8603564, "lon": -73.9886773 }, + { "lat": 40.8603843, "lon": -73.9886619 }, + { "lat": 40.8604112, "lon": -73.9886297 }, + { "lat": 40.8604340, "lon": -73.9885774 }, + { "lat": 40.8604406, "lon": -73.9885164 }, + { "lat": 40.8604259, "lon": -73.9884426 }, + { "lat": 40.8603848, "lon": -73.9883655 }, + { "lat": 40.8603052, "lon": -73.9882321 }, + { "lat": 40.8602782, "lon": -73.9882583 } + ], + "tags": { + "area": "yes", + "highway": "service", + "name": "Crescent Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crescent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11587731, + "bounds": { + "minlat": 40.8605426, + "minlon": -73.9921347, + "maxlat": 40.8611902, + "maxlon": -73.9887935 + }, + "nodes": [ + 10239462470, + 103300521, + 103304171, + 103304173, + 103304175, + 103304177, + 10239462473, + 103225271, + 10239462472, + 10239462474, + 8075114217, + 103224112 + ], + "geometry": [ + { "lat": 40.8610639, "lon": -73.9921347 }, + { "lat": 40.8610812, "lon": -73.9919243 }, + { "lat": 40.8611546, "lon": -73.9909067 }, + { "lat": 40.8611890, "lon": -73.9902733 }, + { "lat": 40.8611902, "lon": -73.9901200 }, + { "lat": 40.8611678, "lon": -73.9899927 }, + { "lat": 40.8611506, "lon": -73.9898971 }, + { "lat": 40.8611131, "lon": -73.9897808 }, + { "lat": 40.8610680, "lon": -73.9896852 }, + { "lat": 40.8610086, "lon": -73.9895839 }, + { "lat": 40.8606233, "lon": -73.9889410 }, + { "lat": 40.8605426, "lon": -73.9887935 } + ], + "tags": { + "highway": "residential", + "name": "Crescent Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crescent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11587744, + "bounds": { + "minlat": 40.8426705, + "minlon": -73.9685087, + "maxlat": 40.8427882, + "maxlon": -73.9676920 + }, + "nodes": [ + 5449447079, + 5449447080, + 5449447077, + 5449447085, + 5449447083, + 5449447075, + 5449447082, + 5449447081, + 5449447076, + 5449447084, + 5449447078, + 103304344 + ], + "geometry": [ + { "lat": 40.8427052, "lon": -73.9685087 }, + { "lat": 40.8426893, "lon": -73.9684594 }, + { "lat": 40.8426773, "lon": -73.9684177 }, + { "lat": 40.8426705, "lon": -73.9683483 }, + { "lat": 40.8426722, "lon": -73.9682701 }, + { "lat": 40.8426969, "lon": -73.9681619 }, + { "lat": 40.8427311, "lon": -73.9680891 }, + { "lat": 40.8427649, "lon": -73.9680130 }, + { "lat": 40.8427882, "lon": -73.9679124 }, + { "lat": 40.8427818, "lon": -73.9678437 }, + { "lat": 40.8427771, "lon": -73.9677635 }, + { "lat": 40.8427665, "lon": -73.9676920 } + ], + "tags": { + "highway": "residential", + "name": "Vista Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Vista", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11587756, + "bounds": { + "minlat": 40.8614778, + "minlon": -73.9636393, + "maxlat": 40.8618491, + "maxlon": -73.9629529 + }, + "nodes": [ + 65903763, + 12021383182, + 12021383181, + 12021383180, + 103189642 + ], + "geometry": [ + { "lat": 40.8618491, "lon": -73.9636393 }, + { "lat": 40.8618260, "lon": -73.9635601 }, + { "lat": 40.8618154, "lon": -73.9635304 }, + { "lat": 40.8617988, "lon": -73.9634945 }, + { "lat": 40.8614778, "lon": -73.9629529 } + ], + "tags": { + "highway": "residential", + "name": "Wall Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wall", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11587766, + "bounds": { + "minlat": 40.8725313, + "minlon": -73.9604164, + "maxlat": 40.8770814, + "maxlon": -73.9524549 + }, + "nodes": [ + 103195276, + 7144899431, + 103215727, + 8599249419, + 5108505884, + 8219460636, + 7000992654, + 103194601, + 9348842179, + 103131034, + 103153318, + 103153362, + 9347930951, + 9348842158, + 9348842193, + 9348842166, + 103174773, + 9348842201, + 103186181, + 10059739069, + 103304521, + 103304523, + 103304525, + 10059739070, + 103247948, + 10059739071, + 103179926 + ], + "geometry": [ + { "lat": 40.8725313, "lon": -73.9524549 }, + { "lat": 40.8728721, "lon": -73.9530685 }, + { "lat": 40.8730860, "lon": -73.9534358 }, + { "lat": 40.8734793, "lon": -73.9541376 }, + { "lat": 40.8735805, "lon": -73.9543183 }, + { "lat": 40.8735854, "lon": -73.9543269 }, + { "lat": 40.8737398, "lon": -73.9546017 }, + { "lat": 40.8740516, "lon": -73.9551566 }, + { "lat": 40.8743998, "lon": -73.9557568 }, + { "lat": 40.8744921, "lon": -73.9559158 }, + { "lat": 40.8749119, "lon": -73.9566537 }, + { "lat": 40.8749536, "lon": -73.9567268 }, + { "lat": 40.8751935, "lon": -73.9571467 }, + { "lat": 40.8752275, "lon": -73.9572063 }, + { "lat": 40.8754857, "lon": -73.9576368 }, + { "lat": 40.8755169, "lon": -73.9576889 }, + { "lat": 40.8759967, "lon": -73.9585212 }, + { "lat": 40.8761155, "lon": -73.9587568 }, + { "lat": 40.8762341, "lon": -73.9589919 }, + { "lat": 40.8764075, "lon": -73.9593546 }, + { "lat": 40.8765296, "lon": -73.9595793 }, + { "lat": 40.8766226, "lon": -73.9597315 }, + { "lat": 40.8767059, "lon": -73.9598517 }, + { "lat": 40.8767513, "lon": -73.9599129 }, + { "lat": 40.8768515, "lon": -73.9600480 }, + { "lat": 40.8769268, "lon": -73.9601800 }, + { "lat": 40.8770814, "lon": -73.9604164 } + ], + "tags": { + "highway": "residential", + "name": "Charlotte Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Charlotte", + "tiger:name_type": "Pl" + } +}, +{ + "type": "way", + "id": 11587799, + "bounds": { + "minlat": 40.8300280, + "minlon": -74.0088204, + "maxlat": 40.8314030, + "maxlon": -74.0082075 + }, + "nodes": [ + 103289174, + 12016315266, + 12016315265, + 103304841, + 12016315264, + 12016315262, + 12016315263, + 12016315261, + 12410387496, + 12410387494, + 12410387498, + 12410387492, + 103304843, + 12016315260, + 12016315259, + 12016315258, + 103304847, + 103304849, + 12410387515, + 103291326, + 12410387517, + 103304851 + ], + "geometry": [ + { "lat": 40.8300280, "lon": -74.0088204 }, + { "lat": 40.8300796, "lon": -74.0087901 }, + { "lat": 40.8301076, "lon": -74.0087738 }, + { "lat": 40.8302940, "lon": -74.0086644 }, + { "lat": 40.8303192, "lon": -74.0086498 }, + { "lat": 40.8303486, "lon": -74.0086375 }, + { "lat": 40.8303788, "lon": -74.0086300 }, + { "lat": 40.8304148, "lon": -74.0086260 }, + { "lat": 40.8305842, "lon": -74.0086152 }, + { "lat": 40.8306488, "lon": -74.0086111 }, + { "lat": 40.8307121, "lon": -74.0086071 }, + { "lat": 40.8307642, "lon": -74.0086038 }, + { "lat": 40.8308641, "lon": -74.0085974 }, + { "lat": 40.8308931, "lon": -74.0085936 }, + { "lat": 40.8309216, "lon": -74.0085893 }, + { "lat": 40.8309483, "lon": -74.0085806 }, + { "lat": 40.8309739, "lon": -74.0085681 }, + { "lat": 40.8309975, "lon": -74.0085529 }, + { "lat": 40.8310838, "lon": -74.0084786 }, + { "lat": 40.8311798, "lon": -74.0083959 }, + { "lat": 40.8313499, "lon": -74.0082524 }, + { "lat": 40.8314030, "lon": -74.0082075 } + ], + "tags": { + "highway": "residential", + "name": "Van Renssalaer Court", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Renssalaer", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11587821, + "bounds": { + "minlat": 40.8311776, + "minlon": -74.0012830, + "maxlat": 40.8320420, + "maxlon": -74.0004686 + }, + "nodes": [ + 10114045557, + 103295283 + ], + "geometry": [ + { "lat": 40.8311776, "lon": -74.0012830 }, + { "lat": 40.8320420, "lon": -74.0004686 } + ], + "tags": { + "highway": "residential", + "name": "Lloyd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lloyd", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11587834, + "bounds": { + "minlat": 40.8454364, + "minlon": -74.0001163, + "maxlat": 40.8456728, + "maxlon": -73.9996651 + }, + "nodes": [ + 103224100, + 7652847781, + 5970474136 + ], + "geometry": [ + { "lat": 40.8454364, "lon": -73.9996651 }, + { "lat": 40.8454762, "lon": -73.9997411 }, + { "lat": 40.8456728, "lon": -74.0001163 } + ], + "tags": { + "highway": "residential", + "name": "West Homestead Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Homestead", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11587838, + "bounds": { + "minlat": 40.8288681, + "minlon": -73.9732637, + "maxlat": 40.8296945, + "maxlon": -73.9727803 + }, + "nodes": [ + 103116816, + 103305345, + 1752676700 + ], + "geometry": [ + { "lat": 40.8288681, "lon": -73.9732637 }, + { "lat": 40.8296290, "lon": -73.9728055 }, + { "lat": 40.8296945, "lon": -73.9727803 } + ], + "tags": { + "highway": "residential", + "name": "Beverly Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Beverly", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11587863, + "bounds": { + "minlat": 40.8786571, + "minlon": -73.9570607, + "maxlat": 40.8816516, + "maxlon": -73.9519019 + }, + "nodes": [ + 103180324, + 103145573, + 10059739099, + 10059739101, + 103187017, + 103305601, + 103305603, + 10059739103, + 103305605, + 10059739102, + 103220120, + 103305607, + 103287295, + 103179944 + ], + "geometry": [ + { "lat": 40.8786571, "lon": -73.9519019 }, + { "lat": 40.8792966, "lon": -73.9530193 }, + { "lat": 40.8799165, "lon": -73.9541112 }, + { "lat": 40.8800469, "lon": -73.9543463 }, + { "lat": 40.8801300, "lon": -73.9545539 }, + { "lat": 40.8801791, "lon": -73.9546919 }, + { "lat": 40.8802574, "lon": -73.9548335 }, + { "lat": 40.8803391, "lon": -73.9549506 }, + { "lat": 40.8805457, "lon": -73.9551595 }, + { "lat": 40.8806072, "lon": -73.9552323 }, + { "lat": 40.8806769, "lon": -73.9553400 }, + { "lat": 40.8807531, "lon": -73.9554617 }, + { "lat": 40.8811427, "lon": -73.9561646 }, + { "lat": 40.8816516, "lon": -73.9570607 } + ], + "tags": { + "highway": "residential", + "name": "John Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "John", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11587869, + "bounds": { + "minlat": 40.8523210, + "minlon": -73.9804066, + "maxlat": 40.8547863, + "maxlon": -73.9779301 + }, + "nodes": [ + 103263553, + 5362387204, + 7439311400, + 7439311423, + 7439311425, + 7439311427, + 5362344692, + 5362378673, + 5362344691, + 7439311463, + 5362344714, + 5362344715, + 5449465057, + 5449465060, + 7439311459, + 103305645, + 5767904858 + ], + "geometry": [ + { "lat": 40.8523210, "lon": -73.9804066 }, + { "lat": 40.8526614, "lon": -73.9800757 }, + { "lat": 40.8528149, "lon": -73.9799265 }, + { "lat": 40.8528644, "lon": -73.9798783 }, + { "lat": 40.8529286, "lon": -73.9798159 }, + { "lat": 40.8530022, "lon": -73.9797443 }, + { "lat": 40.8531499, "lon": -73.9796007 }, + { "lat": 40.8534562, "lon": -73.9793029 }, + { "lat": 40.8535872, "lon": -73.9791756 }, + { "lat": 40.8536522, "lon": -73.9791124 }, + { "lat": 40.8536601, "lon": -73.9791047 }, + { "lat": 40.8537202, "lon": -73.9790233 }, + { "lat": 40.8537282, "lon": -73.9790151 }, + { "lat": 40.8539648, "lon": -73.9787711 }, + { "lat": 40.8540319, "lon": -73.9787019 }, + { "lat": 40.8542845, "lon": -73.9784414 }, + { "lat": 40.8547863, "lon": -73.9779301 } + ], + "tags": { + "highway": "residential", + "name": "John Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "John", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11587873, + "bounds": { + "minlat": 40.8142874, + "minlon": -73.9940363, + "maxlat": 40.8155324, + "maxlon": -73.9927666 + }, + "nodes": [ + 103305663, + 103305661, + 7617250020, + 7617250019, + 440208189 + ], + "geometry": [ + { "lat": 40.8155324, "lon": -73.9927666 }, + { "lat": 40.8148813, "lon": -73.9934364 }, + { "lat": 40.8146552, "lon": -73.9936648 }, + { "lat": 40.8145484, "lon": -73.9937726 }, + { "lat": 40.8142874, "lon": -73.9940363 } + ], + "tags": { + "highway": "residential", + "name": "John Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "John", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11587881, + "bounds": { + "minlat": 40.8779715, + "minlon": -74.0047630, + "maxlat": 40.8826908, + "maxlon": -74.0021605 + }, + "nodes": [ + 103216554, + 103305687, + 103199470 + ], + "geometry": [ + { "lat": 40.8779715, "lon": -74.0047630 }, + { "lat": 40.8806250, "lon": -74.0032820 }, + { "lat": 40.8826908, "lon": -74.0021605 } + ], + "tags": { + "highway": "residential", + "name": "John Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "John", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11587882, + "bounds": { + "minlat": 40.8757960, + "minlon": -74.0057840, + "maxlat": 40.8780165, + "maxlon": -74.0048980 + }, + "nodes": [ + 103177143, + 103305688, + 103305689, + 103305690, + 103305691, + 103305692, + 103165524, + 103216553 + ], + "geometry": [ + { "lat": 40.8757960, "lon": -74.0056440 }, + { "lat": 40.8760580, "lon": -74.0054800 }, + { "lat": 40.8761680, "lon": -74.0057320 }, + { "lat": 40.8762080, "lon": -74.0057680 }, + { "lat": 40.8762520, "lon": -74.0057840 }, + { "lat": 40.8762980, "lon": -74.0057800 }, + { "lat": 40.8770776, "lon": -74.0054263 }, + { "lat": 40.8780165, "lon": -74.0048980 } + ], + "tags": { + "highway": "residential", + "name": "John Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "John", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11587919, + "bounds": { + "minlat": 40.8791485, + "minlon": -74.0163187, + "maxlat": 40.8851990, + "maxlon": -74.0140210 + }, + "nodes": [ + 103282522, + 103267064, + 103306031, + 103125800, + 103225905, + 103249322, + 103306033, + 103227652, + 103153821, + 103306035, + 103306037, + 103306039, + 103306041, + 103306042, + 103306044, + 103306047, + 103306049, + 103135663 + ], + "geometry": [ + { "lat": 40.8791485, "lon": -74.0163187 }, + { "lat": 40.8797680, "lon": -74.0159630 }, + { "lat": 40.8801920, "lon": -74.0157280 }, + { "lat": 40.8805280, "lon": -74.0155550 }, + { "lat": 40.8812200, "lon": -74.0151970 }, + { "lat": 40.8818920, "lon": -74.0148500 }, + { "lat": 40.8824100, "lon": -74.0145980 }, + { "lat": 40.8826400, "lon": -74.0145190 }, + { "lat": 40.8834880, "lon": -74.0142320 }, + { "lat": 40.8836970, "lon": -74.0141610 }, + { "lat": 40.8838420, "lon": -74.0140970 }, + { "lat": 40.8840050, "lon": -74.0140490 }, + { "lat": 40.8841700, "lon": -74.0140240 }, + { "lat": 40.8843090, "lon": -74.0140210 }, + { "lat": 40.8844480, "lon": -74.0140340 }, + { "lat": 40.8845850, "lon": -74.0140620 }, + { "lat": 40.8847470, "lon": -74.0141170 }, + { "lat": 40.8851990, "lon": -74.0143350 } + ], + "tags": { + "highway": "residential", + "name": "Mildred Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mildred", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11587920, + "bounds": { + "minlat": 40.8196438, + "minlon": -73.9875143, + "maxlat": 40.8206814, + "maxlon": -73.9864701 + }, + "nodes": [ + 103201207, + 103306056 + ], + "geometry": [ + { "lat": 40.8196438, "lon": -73.9875143 }, + { "lat": 40.8206814, "lon": -73.9864701 } + ], + "tags": { + "highway": "residential", + "name": "Williams Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "William", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 11587954, + "bounds": { + "minlat": 40.8414270, + "minlon": -73.9782390, + "maxlat": 40.8422110, + "maxlon": -73.9774350 + }, + "nodes": [ + 103241415, + 7292367075, + 103143806 + ], + "geometry": [ + { "lat": 40.8414270, "lon": -73.9782390 }, + { "lat": 40.8414718, "lon": -73.9781930 }, + { "lat": 40.8422110, "lon": -73.9774350 } + ], + "tags": { + "highway": "residential", + "name": "Elmore Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elmore", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11587961, + "bounds": { + "minlat": 40.8559525, + "minlon": -73.9790526, + "maxlat": 40.8575332, + "maxlon": -73.9769232 + }, + "nodes": [ + 103306637, + 7418058531, + 103184386, + 103262389, + 7416056110, + 7418058520, + 103296174 + ], + "geometry": [ + { "lat": 40.8559525, "lon": -73.9769232 }, + { "lat": 40.8559877, "lon": -73.9769705 }, + { "lat": 40.8565070, "lon": -73.9776690 }, + { "lat": 40.8569150, "lon": -73.9782160 }, + { "lat": 40.8572343, "lon": -73.9786480 }, + { "lat": 40.8572451, "lon": -73.9786627 }, + { "lat": 40.8575332, "lon": -73.9790526 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Summit Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Summit", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11587962, + "bounds": { + "minlat": 40.8094820, + "minlon": -73.9959660, + "maxlat": 40.8118812, + "maxlon": -73.9943349 + }, + "nodes": [ + 103112767, + 103159368, + 7604336434, + 5481884094, + 103202148 + ], + "geometry": [ + { "lat": 40.8094820, "lon": -73.9959660 }, + { "lat": 40.8105370, "lon": -73.9952710 }, + { "lat": 40.8111080, "lon": -73.9948945 }, + { "lat": 40.8114172, "lon": -73.9946662 }, + { "lat": 40.8118812, "lon": -73.9943349 } + ], + "tags": { + "highway": "residential", + "name": "Summit Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Summit", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11587981, + "bounds": { + "minlat": 40.8721435, + "minlon": -73.9645682, + "maxlat": 40.8734820, + "maxlon": -73.9633700 + }, + "nodes": [ + 440215026, + 6040773716 + ], + "geometry": [ + { "lat": 40.8734820, "lon": -73.9633700 }, + { "lat": 40.8721435, "lon": -73.9645682 } + ], + "tags": { + "highway": "residential", + "name": "Summit Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Summit", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 11587982, + "bounds": { + "minlat": 40.8570390, + "minlon": -73.9903930, + "maxlat": 40.8583040, + "maxlon": -73.9881580 + }, + "nodes": [ + 103224107, + 8075114225, + 8078713071, + 103093228 + ], + "geometry": [ + { "lat": 40.8583040, "lon": -73.9903930 }, + { "lat": 40.8582343, "lon": -73.9902699 }, + { "lat": 40.8570928, "lon": -73.9882531 }, + { "lat": 40.8570390, "lon": -73.9881580 } + ], + "tags": { + "highway": "residential", + "name": "Summit Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Summit", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11587984, + "bounds": { + "minlat": 40.8567630, + "minlon": -73.9881780, + "maxlat": 40.8570060, + "maxlon": -73.9866760 + }, + "nodes": [ + 103093226, + 103306893, + 103306896, + 103306898, + 103306900, + 103306902, + 103185275 + ], + "geometry": [ + { "lat": 40.8570060, "lon": -73.9881780 }, + { "lat": 40.8568620, "lon": -73.9876830 }, + { "lat": 40.8568240, "lon": -73.9875150 }, + { "lat": 40.8567890, "lon": -73.9873000 }, + { "lat": 40.8567690, "lon": -73.9870820 }, + { "lat": 40.8567630, "lon": -73.9868760 }, + { "lat": 40.8567680, "lon": -73.9866760 } + ], + "tags": { + "highway": "residential", + "name": "Summit Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Summit", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11588027, + "bounds": { + "minlat": 40.8219190, + "minlon": -73.9995457, + "maxlat": 40.8221785, + "maxlon": -73.9990795 + }, + "nodes": [ + 103307491, + 103147942 + ], + "geometry": [ + { "lat": 40.8221785, "lon": -73.9995457 }, + { "lat": 40.8219190, "lon": -73.9990795 } + ], + "tags": { + "highway": "residential", + "name": "Morningside Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morningside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11588074, + "bounds": { + "minlat": 40.8670963, + "minlon": -73.9917931, + "maxlat": 40.8673893, + "maxlon": -73.9915532 + }, + "nodes": [ + 103273787, + 103308119 + ], + "geometry": [ + { "lat": 40.8670963, "lon": -73.9917931 }, + { "lat": 40.8673893, "lon": -73.9915532 } + ], + "tags": { + "highway": "track", + "name": "Willow Street", + "smoothness": "bad", + "surface": "gravel", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Willow", + "tiger:name_type": "St", + "tiger:reviewed": "yes", + "tracktype": "grade2" + } +}, +{ + "type": "way", + "id": 11588078, + "bounds": { + "minlat": 40.8700008, + "minlon": -74.0128940, + "maxlat": 40.8718552, + "maxlon": -74.0120834 + }, + "nodes": [ + 775937819, + 775937818, + 10846014634, + 6592337572, + 6948768776, + 6948768784, + 6948768789, + 6592337533, + 103282382 + ], + "geometry": [ + { "lat": 40.8718552, "lon": -74.0120834 }, + { "lat": 40.8718065, "lon": -74.0120834 }, + { "lat": 40.8715335, "lon": -74.0122059 }, + { "lat": 40.8706528, "lon": -74.0126013 }, + { "lat": 40.8706329, "lon": -74.0126102 }, + { "lat": 40.8704758, "lon": -74.0126808 }, + { "lat": 40.8703719, "lon": -74.0127274 }, + { "lat": 40.8702532, "lon": -74.0127807 }, + { "lat": 40.8700008, "lon": -74.0128940 } + ], + "tags": { + "highway": "residential", + "name": "Willow Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Willow", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11588106, + "bounds": { + "minlat": 40.8293420, + "minlon": -73.9764380, + "maxlat": 40.8295720, + "maxlon": -73.9761800 + }, + "nodes": [ + 103266122, + 103308480, + 103308482, + 103308484, + 103308486, + 103308488 + ], + "geometry": [ + { "lat": 40.8293420, "lon": -73.9764380 }, + { "lat": 40.8294140, "lon": -73.9762910 }, + { "lat": 40.8294600, "lon": -73.9762330 }, + { "lat": 40.8295170, "lon": -73.9761910 }, + { "lat": 40.8295350, "lon": -73.9761840 }, + { "lat": 40.8295720, "lon": -73.9761800 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Ascot Way", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ascot", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11588116, + "bounds": { + "minlat": 40.8582018, + "minlon": -73.9807504, + "maxlat": 40.8602298, + "maxlon": -73.9795868 + }, + "nodes": [ + 103097567, + 12020325935, + 12020325934, + 12020325933, + 12020325932, + 299178286, + 12020325931, + 440215071, + 7376099536, + 7376099544, + 103242541 + ], + "geometry": [ + { "lat": 40.8582018, "lon": -73.9807504 }, + { "lat": 40.8582158, "lon": -73.9807113 }, + { "lat": 40.8582277, "lon": -73.9806860 }, + { "lat": 40.8582415, "lon": -73.9806675 }, + { "lat": 40.8582551, "lon": -73.9806550 }, + { "lat": 40.8582706, "lon": -73.9806432 }, + { "lat": 40.8582926, "lon": -73.9806286 }, + { "lat": 40.8587774, "lon": -73.9803782 }, + { "lat": 40.8588979, "lon": -73.9803125 }, + { "lat": 40.8589498, "lon": -73.9802843 }, + { "lat": 40.8602298, "lon": -73.9795868 } + ], + "tags": { + "highway": "residential", + "name": "Hoefleys Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hoefleys", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11588137, + "bounds": { + "minlat": 40.8512124, + "minlon": -73.9842549, + "maxlat": 40.8512236, + "maxlon": -73.9835293 + }, + "nodes": [ + 103177092, + 5362354427, + 5362354424, + 103308862 + ], + "geometry": [ + { "lat": 40.8512130, "lon": -73.9842549 }, + { "lat": 40.8512236, "lon": -73.9839009 }, + { "lat": 40.8512227, "lon": -73.9838719 }, + { "lat": 40.8512124, "lon": -73.9835293 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Charles Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Charles", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11588188, + "bounds": { + "minlat": 40.8450768, + "minlon": -73.9968258, + "maxlat": 40.8478272, + "maxlon": -73.9920695 + }, + "nodes": [ + 103256369, + 103236649, + 103310028, + 103271819, + 103110255, + 103310030, + 103189431, + 9957436912 + ], + "geometry": [ + { "lat": 40.8478272, "lon": -73.9968258 }, + { "lat": 40.8474004, "lon": -73.9960847 }, + { "lat": 40.8469760, "lon": -73.9953890 }, + { "lat": 40.8465680, "lon": -73.9946920 }, + { "lat": 40.8460980, "lon": -73.9938860 }, + { "lat": 40.8456410, "lon": -73.9931000 }, + { "lat": 40.8452442, "lon": -73.9923594 }, + { "lat": 40.8450768, "lon": -73.9920695 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "name": "East Central Boulevard", + "old_ref": "CR 54", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11588200, + "bounds": { + "minlat": 40.8322578, + "minlon": -73.9867934, + "maxlat": 40.8339165, + "maxlon": -73.9858697 + }, + "nodes": [ + 103187716, + 103310119, + 103310120, + 103310122, + 7529710501, + 103310126, + 103310127, + 103310129 + ], + "geometry": [ + { "lat": 40.8322578, "lon": -73.9867934 }, + { "lat": 40.8327010, "lon": -73.9864300 }, + { "lat": 40.8327870, "lon": -73.9863850 }, + { "lat": 40.8330290, "lon": -73.9863020 }, + { "lat": 40.8331030, "lon": -73.9862844 }, + { "lat": 40.8332800, "lon": -73.9862290 }, + { "lat": 40.8334030, "lon": -73.9861740 }, + { "lat": 40.8339165, "lon": -73.9858697 } + ], + "tags": { + "highway": "residential", + "name": "Glen Road", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glen", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11588204, + "bounds": { + "minlat": 40.8351000, + "minlon": -73.9856130, + "maxlat": 40.8383360, + "maxlon": -73.9834880 + }, + "nodes": [ + 103111278, + 7518672165, + 7519587976, + 103310183, + 103310182, + 103310181, + 103310180, + 103160740, + 103310179, + 103310178, + 103310177, + 103310175, + 103310173, + 103310171, + 13527755885, + 103125438 + ], + "geometry": [ + { "lat": 40.8383360, "lon": -73.9834880 }, + { "lat": 40.8381100, "lon": -73.9837221 }, + { "lat": 40.8379706, "lon": -73.9838665 }, + { "lat": 40.8376090, "lon": -73.9842410 }, + { "lat": 40.8375230, "lon": -73.9843240 }, + { "lat": 40.8373960, "lon": -73.9844260 }, + { "lat": 40.8372620, "lon": -73.9845100 }, + { "lat": 40.8369004, "lon": -73.9846726 }, + { "lat": 40.8364540, "lon": -73.9848700 }, + { "lat": 40.8359070, "lon": -73.9850860 }, + { "lat": 40.8354300, "lon": -73.9853310 }, + { "lat": 40.8353250, "lon": -73.9853930 }, + { "lat": 40.8352410, "lon": -73.9854510 }, + { "lat": 40.8351650, "lon": -73.9855260 }, + { "lat": 40.8351415, "lon": -73.9855575 }, + { "lat": 40.8351000, "lon": -73.9856130 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Glen Road", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glen", + "tiger:name_base_1": "State Route 5", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11588224, + "bounds": { + "minlat": 40.8454670, + "minlon": -73.9677059, + "maxlat": 40.8458470, + "maxlon": -73.9668500 + }, + "nodes": [ + 103137207, + 7292367284, + 103310388, + 3882426674, + 5449442084, + 5449442085, + 5449442083 + ], + "geometry": [ + { "lat": 40.8454670, "lon": -73.9668500 }, + { "lat": 40.8454959, "lon": -73.9669246 }, + { "lat": 40.8455415, "lon": -73.9670425 }, + { "lat": 40.8456954, "lon": -73.9673919 }, + { "lat": 40.8457584, "lon": -73.9675111 }, + { "lat": 40.8458136, "lon": -73.9676281 }, + { "lat": 40.8458470, "lon": -73.9677059 } + ], + "tags": { + "highway": "residential", + "name": "Hooks Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hooks", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 11588225, + "bounds": { + "minlat": 40.8715529, + "minlon": -73.9846488, + "maxlat": 40.8733791, + "maxlon": -73.9827738 + }, + "nodes": [ + 103225051, + 10277082849, + 103271520, + 10177410434, + 103203325, + 10174896685, + 103310390 + ], + "geometry": [ + { "lat": 40.8715529, "lon": -73.9846488 }, + { "lat": 40.8715926, "lon": -73.9846071 }, + { "lat": 40.8723128, "lon": -73.9838525 }, + { "lat": 40.8729218, "lon": -73.9832452 }, + { "lat": 40.8729589, "lon": -73.9832059 }, + { "lat": 40.8730333, "lon": -73.9831228 }, + { "lat": 40.8733791, "lon": -73.9827738 } + ], + "tags": { + "highway": "residential", + "name": "Brook Terrace", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brook", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_left_1": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11588277, + "bounds": { + "minlat": 40.8567163, + "minlon": -74.0168924, + "maxlat": 40.8570667, + "maxlon": -74.0155426 + }, + "nodes": [ + 103212075, + 5508080957, + 103311070, + 103108477 + ], + "geometry": [ + { "lat": 40.8570667, "lon": -74.0168924 }, + { "lat": 40.8570426, "lon": -74.0168026 }, + { "lat": 40.8568965, "lon": -74.0162569 }, + { "lat": 40.8567163, "lon": -74.0155426 } + ], + "tags": { + "highway": "residential", + "name": "Poplar Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Poplar", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11588287, + "bounds": { + "minlat": 40.8575520, + "minlon": -74.0245287, + "maxlat": 40.8591733, + "maxlon": -74.0179660 + }, + "nodes": [ + 103276238, + 8436846397, + 8436846398, + 7114063302, + 103311105, + 103148776, + 10783732077, + 103116875, + 103214367 + ], + "geometry": [ + { "lat": 40.8591733, "lon": -74.0245287 }, + { "lat": 40.8590536, "lon": -74.0240781 }, + { "lat": 40.8590476, "lon": -74.0240554 }, + { "lat": 40.8590023, "lon": -74.0238829 }, + { "lat": 40.8587568, "lon": -74.0229482 }, + { "lat": 40.8583675, "lon": -74.0213556 }, + { "lat": 40.8583356, "lon": -74.0212242 }, + { "lat": 40.8579561, "lon": -74.0196646 }, + { "lat": 40.8575520, "lon": -74.0179660 } + ], + "tags": { + "highway": "residential", + "name": "Poplar Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Poplar", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11588289, + "bounds": { + "minlat": 40.8571351, + "minlon": -74.0180080, + "maxlat": 40.8574200, + "maxlon": -74.0168696 + }, + "nodes": [ + 103214365, + 103212076 + ], + "geometry": [ + { "lat": 40.8574200, "lon": -74.0180080 }, + { "lat": 40.8571351, "lon": -74.0168696 } + ], + "tags": { + "highway": "residential", + "name": "Poplar Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Poplar", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11588346, + "bounds": { + "minlat": 40.8409800, + "minlon": -73.9747956, + "maxlat": 40.8412840, + "maxlon": -73.9743410 + }, + "nodes": [ + 103202464, + 103311741, + 103311743, + 12478989826, + 103235767 + ], + "geometry": [ + { "lat": 40.8409800, "lon": -73.9743410 }, + { "lat": 40.8410240, "lon": -73.9743912 }, + { "lat": 40.8411156, "lon": -73.9745072 }, + { "lat": 40.8412135, "lon": -73.9746749 }, + { "lat": 40.8412840, "lon": -73.9747956 } + ], + "tags": { + "highway": "residential", + "name": "South Horizon Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Horizon", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11588361, + "bounds": { + "minlat": 40.8585260, + "minlon": -73.9893410, + "maxlat": 40.8597750, + "maxlon": -73.9843610 + }, + "nodes": [ + 103224111, + 8075114221, + 6103601759, + 8078713069, + 103093230, + 103311945, + 103311947, + 103311949, + 103311951, + 103311955, + 103311957, + 103311959, + 103311961, + 103311963, + 103185282, + 103311965, + 103311967, + 103311970, + 103311972, + 103311974, + 103311976, + 103311978, + 103311980, + 103311982, + 103311984, + 103126290 + ], + "geometry": [ + { "lat": 40.8597750, "lon": -73.9893410 }, + { "lat": 40.8597293, "lon": -73.9891930 }, + { "lat": 40.8596192, "lon": -73.9889901 }, + { "lat": 40.8586337, "lon": -73.9873304 }, + { "lat": 40.8585733, "lon": -73.9872182 }, + { "lat": 40.8585334, "lon": -73.9870759 }, + { "lat": 40.8585260, "lon": -73.9869797 }, + { "lat": 40.8585265, "lon": -73.9868861 }, + { "lat": 40.8585390, "lon": -73.9867981 }, + { "lat": 40.8585829, "lon": -73.9866735 }, + { "lat": 40.8586553, "lon": -73.9865369 }, + { "lat": 40.8587010, "lon": -73.9864238 }, + { "lat": 40.8587185, "lon": -73.9862916 }, + { "lat": 40.8587174, "lon": -73.9861025 }, + { "lat": 40.8586973, "lon": -73.9859744 }, + { "lat": 40.8586796, "lon": -73.9858337 }, + { "lat": 40.8586808, "lon": -73.9856433 }, + { "lat": 40.8586918, "lon": -73.9854463 }, + { "lat": 40.8587163, "lon": -73.9852897 }, + { "lat": 40.8587557, "lon": -73.9851114 }, + { "lat": 40.8588020, "lon": -73.9849290 }, + { "lat": 40.8588800, "lon": -73.9847650 }, + { "lat": 40.8589580, "lon": -73.9846350 }, + { "lat": 40.8590460, "lon": -73.9845170 }, + { "lat": 40.8591430, "lon": -73.9844120 }, + { "lat": 40.8591980, "lon": -73.9843610 } + ], + "tags": { + "highway": "residential", + "name": "Allaire Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Allaire", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 11588526, + "bounds": { + "minlat": 40.8756851, + "minlon": -73.9825632, + "maxlat": 40.8763967, + "maxlon": -73.9818846 + }, + "nodes": [ + 103161332, + 103272303 + ], + "geometry": [ + { "lat": 40.8756851, "lon": -73.9825632 }, + { "lat": 40.8763967, "lon": -73.9818846 } + ], + "tags": { + "highway": "residential", + "name": "Lake Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lake", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11588527, + "bounds": { + "minlat": 40.8745710, + "minlon": -73.9818846, + "maxlat": 40.8763967, + "maxlon": -73.9786910 + }, + "nodes": [ + 103272303, + 103224133 + ], + "geometry": [ + { "lat": 40.8763967, "lon": -73.9818846 }, + { "lat": 40.8745710, "lon": -73.9786910 } + ], + "tags": { + "highway": "residential", + "name": "Lake Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lake", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11588532, + "bounds": { + "minlat": 40.8377182, + "minlon": -73.9941510, + "maxlat": 40.8384580, + "maxlon": -73.9927239 + }, + "nodes": [ + 1786897288, + 5959905183, + 5959905181, + 103314326, + 5976777483, + 103314328, + 103314330, + 103314332, + 103314334 + ], + "geometry": [ + { "lat": 40.8377182, "lon": -73.9927239 }, + { "lat": 40.8378160, "lon": -73.9933753 }, + { "lat": 40.8379014, "lon": -73.9939446 }, + { "lat": 40.8379090, "lon": -73.9939952 }, + { "lat": 40.8381788, "lon": -73.9941247 }, + { "lat": 40.8382170, "lon": -73.9941430 }, + { "lat": 40.8383100, "lon": -73.9941510 }, + { "lat": 40.8383750, "lon": -73.9941400 }, + { "lat": 40.8384580, "lon": -73.9941195 } + ], + "tags": { + "highway": "residential", + "name": "Trafalgar Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Trafalgar", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11588536, + "bounds": { + "minlat": 40.8141879, + "minlon": -73.9913718, + "maxlat": 40.8145881, + "maxlon": -73.9900507 + }, + "nodes": [ + 103207039, + 7497403073, + 7614292436, + 7614292391, + 7614292246, + 103112569 + ], + "geometry": [ + { "lat": 40.8141879, "lon": -73.9900507 }, + { "lat": 40.8143630, "lon": -73.9906361 }, + { "lat": 40.8144313, "lon": -73.9908599 }, + { "lat": 40.8144623, "lon": -73.9909613 }, + { "lat": 40.8144814, "lon": -73.9910236 }, + { "lat": 40.8145881, "lon": -73.9913718 } + ], + "tags": { + "highway": "tertiary", + "name": "Walker Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Walker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11588537, + "bounds": { + "minlat": 40.8145881, + "minlon": -73.9992906, + "maxlat": 40.8189159, + "maxlon": -73.9913718 + }, + "nodes": [ + 103112569, + 7617250037, + 6575843479, + 103274205, + 103314359, + 103314360, + 103314362, + 103314364, + 103256510, + 103314366, + 103305663, + 103236634, + 103263345, + 103314368, + 440208168, + 13524700376, + 103245929, + 13524700342, + 103314372, + 103189633, + 103255746, + 103239003, + 103302631, + 103166203 + ], + "geometry": [ + { "lat": 40.8145881, "lon": -73.9913718 }, + { "lat": 40.8149510, "lon": -73.9919345 }, + { "lat": 40.8150098, "lon": -73.9920257 }, + { "lat": 40.8150643, "lon": -73.9921086 }, + { "lat": 40.8151348, "lon": -73.9922270 }, + { "lat": 40.8151737, "lon": -73.9922832 }, + { "lat": 40.8152266, "lon": -73.9923187 }, + { "lat": 40.8152943, "lon": -73.9923721 }, + { "lat": 40.8153344, "lon": -73.9924127 }, + { "lat": 40.8153542, "lon": -73.9924471 }, + { "lat": 40.8155324, "lon": -73.9927666 }, + { "lat": 40.8158113, "lon": -73.9932620 }, + { "lat": 40.8159188, "lon": -73.9934656 }, + { "lat": 40.8160349, "lon": -73.9936663 }, + { "lat": 40.8162131, "lon": -73.9939979 }, + { "lat": 40.8165396, "lon": -73.9947054 }, + { "lat": 40.8165736, "lon": -73.9947790 }, + { "lat": 40.8166175, "lon": -73.9948717 }, + { "lat": 40.8169450, "lon": -73.9955640 }, + { "lat": 40.8173350, "lon": -73.9963230 }, + { "lat": 40.8177340, "lon": -73.9970960 }, + { "lat": 40.8181000, "lon": -73.9978070 }, + { "lat": 40.8185266, "lon": -73.9985407 }, + { "lat": 40.8189159, "lon": -73.9992906 } + ], + "tags": { + "highway": "tertiary", + "name": "Walker Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Walker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11588555, + "bounds": { + "minlat": 40.8471570, + "minlon": -73.9818550, + "maxlat": 40.8489560, + "maxlon": -73.9786010 + }, + "nodes": [ + 103245970, + 7366850565, + 103222817, + 103152587, + 5964343831, + 103290253, + 5964343832, + 2821827004, + 2821827002, + 103227498, + 5964343840, + 5964343830, + 103258775 + ], + "geometry": [ + { "lat": 40.8471570, "lon": -73.9786010 }, + { "lat": 40.8474586, "lon": -73.9791463 }, + { "lat": 40.8476730, "lon": -73.9795340 }, + { "lat": 40.8477400, "lon": -73.9796560 }, + { "lat": 40.8479461, "lon": -73.9800291 }, + { "lat": 40.8481410, "lon": -73.9803820 }, + { "lat": 40.8482827, "lon": -73.9806376 }, + { "lat": 40.8484956, "lon": -73.9810216 }, + { "lat": 40.8485384, "lon": -73.9810989 }, + { "lat": 40.8485490, "lon": -73.9811180 }, + { "lat": 40.8487766, "lon": -73.9815301 }, + { "lat": 40.8488863, "lon": -73.9817344 }, + { "lat": 40.8489560, "lon": -73.9818550 } + ], + "tags": { + "highway": "residential", + "name": "Stillwell Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Stillwell", + "tiger:name_type": "Ave", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11588573, + "bounds": { + "minlat": 40.8249300, + "minlon": -74.0052220, + "maxlat": 40.8258960, + "maxlon": -74.0028330 + }, + "nodes": [ + 103272847, + 103314658, + 103314660, + 103314662, + 103293183, + 103314664, + 103314666, + 103314668, + 103314670, + 103314672, + 103265225 + ], + "geometry": [ + { "lat": 40.8258960, "lon": -74.0052220 }, + { "lat": 40.8257620, "lon": -74.0041190 }, + { "lat": 40.8257370, "lon": -74.0040180 }, + { "lat": 40.8257000, "lon": -74.0039230 }, + { "lat": 40.8255213, "lon": -74.0035974 }, + { "lat": 40.8251160, "lon": -74.0028780 }, + { "lat": 40.8250850, "lon": -74.0028500 }, + { "lat": 40.8250440, "lon": -74.0028330 }, + { "lat": 40.8250010, "lon": -74.0028360 }, + { "lat": 40.8249610, "lon": -74.0028590 }, + { "lat": 40.8249300, "lon": -74.0028960 } + ], + "tags": { + "highway": "residential", + "name": "Spruce Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Spruce", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11588596, + "bounds": { + "minlat": 40.8489157, + "minlon": -74.0053192, + "maxlat": 40.8510140, + "maxlon": -74.0042720 + }, + "nodes": [ + 103226719, + 8226127092, + 8226127091, + 8226127097, + 8226127093, + 8226127095, + 8226127094, + 103314907 + ], + "geometry": [ + { "lat": 40.8510140, "lon": -74.0042720 }, + { "lat": 40.8509098, "lon": -74.0043336 }, + { "lat": 40.8501548, "lon": -74.0047213 }, + { "lat": 40.8496607, "lon": -74.0049391 }, + { "lat": 40.8492199, "lon": -74.0051333 }, + { "lat": 40.8491627, "lon": -74.0051837 }, + { "lat": 40.8491397, "lon": -74.0052041 }, + { "lat": 40.8489157, "lon": -74.0053192 } + ], + "tags": { + "highway": "residential", + "name": "Roosevelt Alley", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roosevelt", + "tiger:name_type": "Aly", + "tiger:reviewed": "no", + "tiger:zip_left": "07650" + } +}, +{ + "type": "way", + "id": 11588701, + "bounds": { + "minlat": 40.8179339, + "minlon": -73.9836588, + "maxlat": 40.8182161, + "maxlon": -73.9831875 + }, + "nodes": [ + 103316009, + 103293745 + ], + "geometry": [ + { "lat": 40.8179339, "lon": -73.9831875 }, + { "lat": 40.8182161, "lon": -73.9836588 } + ], + "tags": { + "highway": "residential", + "name": "Fox Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fox", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11588712, + "bounds": { + "minlat": 40.8453829, + "minlon": -74.0063674, + "maxlat": 40.8466182, + "maxlon": -74.0041985 + }, + "nodes": [ + 103296628, + 5939774748, + 5672006501, + 8973299142, + 5672006477, + 103316082, + 2707984824, + 103246714, + 2707984825, + 2707984826 + ], + "geometry": [ + { "lat": 40.8453829, "lon": -74.0041985 }, + { "lat": 40.8454134, "lon": -74.0042525 }, + { "lat": 40.8455218, "lon": -74.0044469 }, + { "lat": 40.8460421, "lon": -74.0053818 }, + { "lat": 40.8461693, "lon": -74.0056103 }, + { "lat": 40.8463790, "lon": -74.0059870 }, + { "lat": 40.8464194, "lon": -74.0060618 }, + { "lat": 40.8464520, "lon": -74.0061197 }, + { "lat": 40.8465241, "lon": -74.0062354 }, + { "lat": 40.8466182, "lon": -74.0063674 } + ], + "tags": { + "highway": "residential", + "name": "West Ruby Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ruby", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11588713, + "bounds": { + "minlat": 40.8434804, + "minlon": -74.0042493, + "maxlat": 40.8452920, + "maxlon": -74.0010583 + }, + "nodes": [ + 103224098, + 5976782416, + 5976782415, + 5976782411, + 103296630 + ], + "geometry": [ + { "lat": 40.8434804, "lon": -74.0010583 }, + { "lat": 40.8436977, "lon": -74.0014685 }, + { "lat": 40.8437718, "lon": -74.0015976 }, + { "lat": 40.8450080, "lon": -74.0037539 }, + { "lat": 40.8452920, "lon": -74.0042493 } + ], + "tags": { + "highway": "residential", + "name": "West Ruby Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ruby", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11588732, + "bounds": { + "minlat": 40.8420913, + "minlon": -74.0014949, + "maxlat": 40.8428495, + "maxlon": -74.0002599 + }, + "nodes": [ + 103162306, + 10943492013, + 766719920 + ], + "geometry": [ + { "lat": 40.8428495, "lon": -74.0014949 }, + { "lat": 40.8427920, "lon": -74.0014024 }, + { "lat": 40.8420913, "lon": -74.0002599 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "East Columbia Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11588737, + "bounds": { + "minlat": 40.8731190, + "minlon": -73.9711130, + "maxlat": 40.8763239, + "maxlon": -73.9685360 + }, + "nodes": [ + 103213822, + 103234551, + 103316208, + 103316210, + 103316212, + 103316214, + 103316215, + 103316217, + 103316219, + 103316221, + 103316223, + 103316225, + 103284216 + ], + "geometry": [ + { "lat": 40.8763239, "lon": -73.9685360 }, + { "lat": 40.8744568, "lon": -73.9703205 }, + { "lat": 40.8738900, "lon": -73.9708370 }, + { "lat": 40.8736110, "lon": -73.9710550 }, + { "lat": 40.8735290, "lon": -73.9710950 }, + { "lat": 40.8734500, "lon": -73.9711130 }, + { "lat": 40.8733800, "lon": -73.9711120 }, + { "lat": 40.8733090, "lon": -73.9710890 }, + { "lat": 40.8732450, "lon": -73.9710440 }, + { "lat": 40.8731950, "lon": -73.9709840 }, + { "lat": 40.8731550, "lon": -73.9709120 }, + { "lat": 40.8731360, "lon": -73.9708550 }, + { "lat": 40.8731190, "lon": -73.9707930 } + ], + "tags": { + "highway": "residential", + "name": "Eton Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Eton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11588761, + "bounds": { + "minlat": 40.8460376, + "minlon": -73.9778550, + "maxlat": 40.8496690, + "maxlon": -73.9711746 + }, + "nodes": [ + 103245976, + 103174591, + 7460473106, + 5075843286, + 7469411107, + 7469411108, + 13523674073, + 103099800 + ], + "geometry": [ + { "lat": 40.8496690, "lon": -73.9778550 }, + { "lat": 40.8485190, "lon": -73.9757340 }, + { "lat": 40.8478751, "lon": -73.9745106 }, + { "lat": 40.8478454, "lon": -73.9744542 }, + { "lat": 40.8478186, "lon": -73.9744055 }, + { "lat": 40.8462396, "lon": -73.9715411 }, + { "lat": 40.8460935, "lon": -73.9712760 }, + { "lat": 40.8460376, "lon": -73.9711746 } + ], + "tags": { + "highway": "residential", + "name": "Slocum Way", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Slocum", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11588804, + "bounds": { + "minlat": 40.8446924, + "minlon": -74.0035649, + "maxlat": 40.8466137, + "maxlon": -74.0001815 + }, + "nodes": [ + 103153164, + 5970473991, + 5970474139, + 5976782431, + 5976782430, + 103296626 + ], + "geometry": [ + { "lat": 40.8446924, "lon": -74.0001815 }, + { "lat": 40.8448566, "lon": -74.0005096 }, + { "lat": 40.8449055, "lon": -74.0005946 }, + { "lat": 40.8449159, "lon": -74.0006127 }, + { "lat": 40.8449572, "lon": -74.0006845 }, + { "lat": 40.8466137, "lon": -74.0035649 } + ], + "tags": { + "highway": "residential", + "name": "West Harwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harwood", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11588811, + "bounds": { + "minlat": 40.8770263, + "minlon": -73.9551246, + "maxlat": 40.8796323, + "maxlon": -73.9505981 + }, + "nodes": [ + 103195285, + 5108252320, + 8236517420, + 7933211855, + 8219460655, + 7933211859, + 7933211848, + 103215738, + 6903047161, + 103145570, + 10059739095, + 103247986 + ], + "geometry": [ + { "lat": 40.8770263, "lon": -73.9505981 }, + { "lat": 40.8772436, "lon": -73.9509797 }, + { "lat": 40.8773415, "lon": -73.9511524 }, + { "lat": 40.8773946, "lon": -73.9512461 }, + { "lat": 40.8774773, "lon": -73.9513921 }, + { "lat": 40.8775479, "lon": -73.9515166 }, + { "lat": 40.8776029, "lon": -73.9516136 }, + { "lat": 40.8778147, "lon": -73.9519874 }, + { "lat": 40.8779686, "lon": -73.9522642 }, + { "lat": 40.8787314, "lon": -73.9535726 }, + { "lat": 40.8795703, "lon": -73.9550177 }, + { "lat": 40.8796323, "lon": -73.9551246 } + ], + "tags": { + "highway": "residential", + "name": "New Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "New", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_left_1": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 11588829, + "bounds": { + "minlat": 40.8729797, + "minlon": -73.9768161, + "maxlat": 40.8734628, + "maxlon": -73.9763477 + }, + "nodes": [ + 103134262, + 103317229 + ], + "geometry": [ + { "lat": 40.8729797, "lon": -73.9768161 }, + { "lat": 40.8734628, "lon": -73.9763477 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Hedgerow Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hedgerow", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11588847, + "bounds": { + "minlat": 40.8524140, + "minlon": -73.9791760, + "maxlat": 40.8547470, + "maxlon": -73.9754700 + }, + "nodes": [ + 103245984, + 7440135187, + 103295874, + 103157080, + 103305645, + 5449465014, + 103317407 + ], + "geometry": [ + { "lat": 40.8524140, "lon": -73.9754700 }, + { "lat": 40.8527175, "lon": -73.9759520 }, + { "lat": 40.8532300, "lon": -73.9767660 }, + { "lat": 40.8538110, "lon": -73.9776880 }, + { "lat": 40.8542845, "lon": -73.9784414 }, + { "lat": 40.8546421, "lon": -73.9790094 }, + { "lat": 40.8547470, "lon": -73.9791760 } + ], + "tags": { + "highway": "residential", + "name": "Catherine Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Catherine", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11588855, + "bounds": { + "minlat": 40.8357633, + "minlon": -73.9809740, + "maxlat": 40.8358170, + "maxlon": -73.9795220 + }, + "nodes": [ + 103277081, + 103317484, + 103317486, + 103317488, + 103317490, + 103282053 + ], + "geometry": [ + { "lat": 40.8358130, "lon": -73.9795220 }, + { "lat": 40.8357723, "lon": -73.9800500 }, + { "lat": 40.8357633, "lon": -73.9802074 }, + { "lat": 40.8357683, "lon": -73.9803594 }, + { "lat": 40.8358160, "lon": -73.9808590 }, + { "lat": 40.8358170, "lon": -73.9809740 } + ], + "tags": { + "highway": "residential", + "name": "Dorincourt Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dorincourt", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11588858, + "bounds": { + "minlat": 40.8304123, + "minlon": -74.0237608, + "maxlat": 40.8344493, + "maxlon": -74.0197610 + }, + "nodes": [ + 9807482446, + 291771985, + 291771897, + 291771986, + 291771901, + 291771987, + 291771988, + 291771989, + 291771990, + 291771911, + 291771991, + 291771915, + 291771917, + 291771992, + 291771921, + 291771993, + 291771994, + 291771995, + 291771770, + 291771771, + 291771925, + 291771773, + 291771996, + 291771775, + 291771776, + 6279346536, + 291771777, + 291771778, + 291771997, + 291771781, + 291771930, + 291771931, + 291771784, + 291771932, + 291771786, + 291771933, + 291771998, + 291771999 + ], + "geometry": [ + { "lat": 40.8344493, "lon": -74.0221651 }, + { "lat": 40.8335166, "lon": -74.0226535 }, + { "lat": 40.8333347, "lon": -74.0227565 }, + { "lat": 40.8331724, "lon": -74.0228595 }, + { "lat": 40.8330230, "lon": -74.0229711 }, + { "lat": 40.8328866, "lon": -74.0230913 }, + { "lat": 40.8327308, "lon": -74.0232458 }, + { "lat": 40.8325424, "lon": -74.0234518 }, + { "lat": 40.8324191, "lon": -74.0235805 }, + { "lat": 40.8323216, "lon": -74.0236663 }, + { "lat": 40.8322047, "lon": -74.0237350 }, + { "lat": 40.8321138, "lon": -74.0237608 }, + { "lat": 40.8320099, "lon": -74.0237608 }, + { "lat": 40.8319190, "lon": -74.0237436 }, + { "lat": 40.8315683, "lon": -74.0236320 }, + { "lat": 40.8309319, "lon": -74.0234260 }, + { "lat": 40.8306526, "lon": -74.0233230 }, + { "lat": 40.8305617, "lon": -74.0232715 }, + { "lat": 40.8304967, "lon": -74.0232114 }, + { "lat": 40.8304643, "lon": -74.0231599 }, + { "lat": 40.8304253, "lon": -74.0230655 }, + { "lat": 40.8304123, "lon": -74.0229711 }, + { "lat": 40.8304253, "lon": -74.0228595 }, + { "lat": 40.8304708, "lon": -74.0227480 }, + { "lat": 40.8305357, "lon": -74.0226621 }, + { "lat": 40.8305796, "lon": -74.0226130 }, + { "lat": 40.8306201, "lon": -74.0225677 }, + { "lat": 40.8308150, "lon": -74.0223960 }, + { "lat": 40.8317761, "lon": -74.0216150 }, + { "lat": 40.8320878, "lon": -74.0213747 }, + { "lat": 40.8323476, "lon": -74.0211858 }, + { "lat": 40.8326204, "lon": -74.0209970 }, + { "lat": 40.8334711, "lon": -74.0204134 }, + { "lat": 40.8336140, "lon": -74.0203104 }, + { "lat": 40.8337244, "lon": -74.0202159 }, + { "lat": 40.8338218, "lon": -74.0201215 }, + { "lat": 40.8339841, "lon": -74.0199585 }, + { "lat": 40.8341937, "lon": -74.0197610 } + ], + "tags": { + "access": "yes", + "foot": "yes", + "highway": "unclassified", + "maxspeed": "20 mph", + "name": "Victoria Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Victoria", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11588911, + "bounds": { + "minlat": 40.8358485, + "minlon": -73.9905284, + "maxlat": 40.8365457, + "maxlon": -73.9904166 + }, + "nodes": [ + 103162216, + 5108654380, + 5108654379, + 103318252 + ], + "geometry": [ + { "lat": 40.8358485, "lon": -73.9905137 }, + { "lat": 40.8359855, "lon": -73.9905284 }, + { "lat": 40.8364171, "lon": -73.9904288 }, + { "lat": 40.8365457, "lon": -73.9904166 } + ], + "tags": { + "highway": "residential", + "name": "Morningside Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morningside", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11588912, + "bounds": { + "minlat": 40.8365457, + "minlon": -73.9904166, + "maxlat": 40.8371639, + "maxlon": -73.9900606 + }, + "nodes": [ + 103318252, + 103318254, + 440215430 + ], + "geometry": [ + { "lat": 40.8365457, "lon": -73.9904166 }, + { "lat": 40.8366410, "lon": -73.9903890 }, + { "lat": 40.8371639, "lon": -73.9900606 } + ], + "tags": { + "highway": "residential", + "name": "Morningside Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morningside", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11588913, + "bounds": { + "minlat": 40.8549046, + "minlon": -74.0175372, + "maxlat": 40.8552229, + "maxlon": -74.0163245 + }, + "nodes": [ + 103212072, + 5508080959, + 103225086 + ], + "geometry": [ + { "lat": 40.8552229, "lon": -74.0175372 }, + { "lat": 40.8552079, "lon": -74.0174445 }, + { "lat": 40.8549046, "lon": -74.0163245 } + ], + "tags": { + "highway": "residential", + "name": "Morningside Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morningside", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 11588914, + "bounds": { + "minlat": 40.8337235, + "minlon": -73.9918511, + "maxlat": 40.8353411, + "maxlon": -73.9908231 + }, + "nodes": [ + 103265272, + 13524430695, + 13524441813, + 13524441802, + 13524441801, + 13524430700, + 103318266, + 103211754 + ], + "geometry": [ + { "lat": 40.8337235, "lon": -73.9918511 }, + { "lat": 40.8337662, "lon": -73.9918109 }, + { "lat": 40.8337917, "lon": -73.9917899 }, + { "lat": 40.8341294, "lon": -73.9916016 }, + { "lat": 40.8346946, "lon": -73.9911953 }, + { "lat": 40.8349858, "lon": -73.9910008 }, + { "lat": 40.8352748, "lon": -73.9908552 }, + { "lat": 40.8353411, "lon": -73.9908231 } + ], + "tags": { + "highway": "residential", + "name": "Morningside Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morningside", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11588921, + "bounds": { + "minlat": 40.8730483, + "minlon": -73.9511802, + "maxlat": 40.8730811, + "maxlon": -73.9510836 + }, + "nodes": [ + 103318319, + 752178497 + ], + "geometry": [ + { "lat": 40.8730483, "lon": -73.9510836 }, + { "lat": 40.8730811, "lon": -73.9511802 } + ], + "tags": { + "highway": "residential", + "name": "Allison Park Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Allison Park", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 11588923, + "bounds": { + "minlat": 40.8698642, + "minlon": -73.9533453, + "maxlat": 40.8730483, + "maxlon": -73.9510836 + }, + "nodes": [ + 103318323, + 9421910304, + 9421910303, + 9421910302, + 703505075, + 9421906491, + 103318325, + 103318319 + ], + "geometry": [ + { "lat": 40.8698642, "lon": -73.9533399 }, + { "lat": 40.8698835, "lon": -73.9533453 }, + { "lat": 40.8699362, "lon": -73.9533278 }, + { "lat": 40.8700650, "lon": -73.9532340 }, + { "lat": 40.8706993, "lon": -73.9526968 }, + { "lat": 40.8710057, "lon": -73.9524535 }, + { "lat": 40.8716146, "lon": -73.9519701 }, + { "lat": 40.8730483, "lon": -73.9510836 } + ], + "tags": { + "highway": "residential", + "name": "Allison Park Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Allison Park", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11588924, + "bounds": { + "minlat": 40.8696979, + "minlon": -73.9533399, + "maxlat": 40.8706993, + "maxlon": -73.9522234 + }, + "nodes": [ + 103318323, + 9421906513, + 9421910301, + 9421910300, + 707162159, + 9421906512, + 9421910299, + 9421906511, + 103318339, + 9421906510, + 703505076, + 9421906509, + 103318341, + 9421906481, + 703505077, + 9421910298, + 9421910297, + 703505078, + 9421910250, + 9421910296, + 9421910249, + 707162160, + 703505079, + 703505075 + ], + "geometry": [ + { "lat": 40.8698642, "lon": -73.9533399 }, + { "lat": 40.8698358, "lon": -73.9533104 }, + { "lat": 40.8698028, "lon": -73.9532454 }, + { "lat": 40.8697815, "lon": -73.9531951 }, + { "lat": 40.8697562, "lon": -73.9531340 }, + { "lat": 40.8697202, "lon": -73.9530113 }, + { "lat": 40.8697045, "lon": -73.9529315 }, + { "lat": 40.8696979, "lon": -73.9528698 }, + { "lat": 40.8697004, "lon": -73.9528249 }, + { "lat": 40.8697090, "lon": -73.9527639 }, + { "lat": 40.8697339, "lon": -73.9526975 }, + { "lat": 40.8697957, "lon": -73.9526090 }, + { "lat": 40.8698723, "lon": -73.9525292 }, + { "lat": 40.8699883, "lon": -73.9524425 }, + { "lat": 40.8701451, "lon": -73.9523254 }, + { "lat": 40.8702414, "lon": -73.9522617 }, + { "lat": 40.8703038, "lon": -73.9522328 }, + { "lat": 40.8703565, "lon": -73.9522234 }, + { "lat": 40.8704123, "lon": -73.9522368 }, + { "lat": 40.8704696, "lon": -73.9522697 }, + { "lat": 40.8705289, "lon": -73.9523307 }, + { "lat": 40.8705822, "lon": -73.9524105 }, + { "lat": 40.8706740, "lon": -73.9526385 }, + { "lat": 40.8706993, "lon": -73.9526968 } + ], + "tags": { + "highway": "service", + "name": "Allison Park Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Allison Park", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11588925, + "bounds": { + "minlat": 40.8556387, + "minlon": -73.9771357, + "maxlat": 40.8559525, + "maxlon": -73.9769232 + }, + "nodes": [ + 103306637, + 103318347, + 103318345, + 4204827689 + ], + "geometry": [ + { "lat": 40.8559525, "lon": -73.9769232 }, + { "lat": 40.8558175, "lon": -73.9770059 }, + { "lat": 40.8557364, "lon": -73.9770661 }, + { "lat": 40.8556387, "lon": -73.9771357 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Edwin Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edwin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11588926, + "bounds": { + "minlat": 40.8598397, + "minlon": -73.9728700, + "maxlat": 40.8628750, + "maxlon": -73.9699720 + }, + "nodes": [ + 103208519, + 7377058283, + 7377058497, + 7377058500, + 6895002519, + 7377058185, + 103097520, + 4598640248, + 103318362, + 103318364, + 103318366, + 103318368, + 103318371, + 7377058512, + 103318373, + 103318375, + 103318376, + 103318378, + 103244754, + 103318380, + 103318382, + 6320468132, + 3531038434, + 103318384, + 103107645, + 103318386, + 103318388, + 103251843 + ], + "geometry": [ + { "lat": 40.8598397, "lon": -73.9728700 }, + { "lat": 40.8599936, "lon": -73.9726995 }, + { "lat": 40.8600729, "lon": -73.9726173 }, + { "lat": 40.8604093, "lon": -73.9722687 }, + { "lat": 40.8604619, "lon": -73.9722142 }, + { "lat": 40.8606641, "lon": -73.9720047 }, + { "lat": 40.8606870, "lon": -73.9719810 }, + { "lat": 40.8607457, "lon": -73.9719204 }, + { "lat": 40.8608790, "lon": -73.9717830 }, + { "lat": 40.8610030, "lon": -73.9716760 }, + { "lat": 40.8611350, "lon": -73.9715870 }, + { "lat": 40.8612730, "lon": -73.9715160 }, + { "lat": 40.8614160, "lon": -73.9714650 }, + { "lat": 40.8614855, "lon": -73.9714480 }, + { "lat": 40.8616080, "lon": -73.9714180 }, + { "lat": 40.8617240, "lon": -73.9713730 }, + { "lat": 40.8618540, "lon": -73.9713000 }, + { "lat": 40.8619770, "lon": -73.9712080 }, + { "lat": 40.8620600, "lon": -73.9711280 }, + { "lat": 40.8621500, "lon": -73.9710240 }, + { "lat": 40.8622030, "lon": -73.9709500 }, + { "lat": 40.8624051, "lon": -73.9706188 }, + { "lat": 40.8624667, "lon": -73.9705178 }, + { "lat": 40.8626740, "lon": -73.9701780 }, + { "lat": 40.8627410, "lon": -73.9700940 }, + { "lat": 40.8627520, "lon": -73.9700810 }, + { "lat": 40.8628390, "lon": -73.9699990 }, + { "lat": 40.8628750, "lon": -73.9699720 } + ], + "tags": { + "highway": "residential", + "name": "Edwin Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edwin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11588962, + "bounds": { + "minlat": 40.8632215, + "minlon": -73.9640145, + "maxlat": 40.8632678, + "maxlon": -73.9639912 + }, + "nodes": [ + 11043153105, + 11043153109 + ], + "geometry": [ + { "lat": 40.8632215, "lon": -73.9640145 }, + { "lat": 40.8632678, "lon": -73.9639912 } + ], + "tags": { + "highway": "residential", + "name": "3rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11588967, + "bounds": { + "minlat": 40.8148757, + "minlon": -73.9951853, + "maxlat": 40.8171174, + "maxlon": -73.9931892 + }, + "nodes": [ + 440208165, + 440208168, + 440208167 + ], + "geometry": [ + { "lat": 40.8148757, "lon": -73.9951853 }, + { "lat": 40.8162131, "lon": -73.9939979 }, + { "lat": 40.8171174, "lon": -73.9931892 } + ], + "tags": { + "highway": "residential", + "name": "3rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11588970, + "bounds": { + "minlat": 40.8444320, + "minlon": -73.9979180, + "maxlat": 40.8483720, + "maxlon": -73.9940000 + }, + "nodes": [ + 103295501, + 103294153, + 103310028, + 103286690 + ], + "geometry": [ + { "lat": 40.8444320, "lon": -73.9979180 }, + { "lat": 40.8458167, "lon": -73.9965603 }, + { "lat": 40.8469760, "lon": -73.9953890 }, + { "lat": 40.8483720, "lon": -73.9940000 } + ], + "tags": { + "highway": "residential", + "name": "3rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11588991, + "bounds": { + "minlat": 40.8498698, + "minlon": -73.9759069, + "maxlat": 40.8506519, + "maxlon": -73.9751223 + }, + "nodes": [ + 103318798, + 103243256 + ], + "geometry": [ + { "lat": 40.8498698, "lon": -73.9759069 }, + { "lat": 40.8506519, "lon": -73.9751223 } + ], + "tags": { + "highway": "residential", + "name": "Aston Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Aston", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 11588992, + "bounds": { + "minlat": 40.8195385, + "minlon": -74.0090925, + "maxlat": 40.8197781, + "maxlon": -74.0076451 + }, + "nodes": [ + 103203985, + 8205339107, + 103318803 + ], + "geometry": [ + { "lat": 40.8195385, "lon": -74.0076451 }, + { "lat": 40.8196668, "lon": -74.0084091 }, + { "lat": 40.8197781, "lon": -74.0090925 } + ], + "tags": { + "highway": "residential", + "name": "West Prospect Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Prospect", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11589009, + "bounds": { + "minlat": 40.8387121, + "minlon": -73.9841540, + "maxlat": 40.8398320, + "maxlon": -73.9830410 + }, + "nodes": [ + 103174035, + 103111274 + ], + "geometry": [ + { "lat": 40.8398320, "lon": -73.9830410 }, + { "lat": 40.8387121, "lon": -73.9841540 } + ], + "tags": { + "highway": "residential", + "name": "Harvard Place", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harvard", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11589012, + "bounds": { + "minlat": 40.8321004, + "minlon": -73.9880010, + "maxlat": 40.8344158, + "maxlon": -73.9865037 + }, + "nodes": [ + 103162192, + 103319054, + 103319052, + 103319050, + 103319048, + 440208240, + 103319045, + 103319044, + 103319043, + 103319042, + 103187718, + 103319041 + ], + "geometry": [ + { "lat": 40.8344158, "lon": -73.9865037 }, + { "lat": 40.8342420, "lon": -73.9865760 }, + { "lat": 40.8338320, "lon": -73.9868460 }, + { "lat": 40.8337300, "lon": -73.9869080 }, + { "lat": 40.8335820, "lon": -73.9869780 }, + { "lat": 40.8335055, "lon": -73.9870089 }, + { "lat": 40.8334300, "lon": -73.9870320 }, + { "lat": 40.8331980, "lon": -73.9871010 }, + { "lat": 40.8330600, "lon": -73.9871620 }, + { "lat": 40.8329270, "lon": -73.9872420 }, + { "lat": 40.8326324, "lon": -73.9874672 }, + { "lat": 40.8321004, "lon": -73.9880010 } + ], + "tags": { + "highway": "residential", + "name": "Harvard Place", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harvard", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "tiger:zip_right_1": "07024" + } +}, +{ + "type": "way", + "id": 11589048, + "bounds": { + "minlat": 40.8304152, + "minlon": -73.9873772, + "maxlat": 40.8312074, + "maxlon": -73.9855966 + }, + "nodes": [ + 103245957, + 7546258473, + 103110212, + 103293822 + ], + "geometry": [ + { "lat": 40.8304152, "lon": -73.9855966 }, + { "lat": 40.8305944, "lon": -73.9860109 }, + { "lat": 40.8308695, "lon": -73.9866097 }, + { "lat": 40.8312074, "lon": -73.9873772 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Pleasant Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pleasant", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11589120, + "bounds": { + "minlat": 40.8620730, + "minlon": -73.9631268, + "maxlat": 40.8623708, + "maxlon": -73.9626020 + }, + "nodes": [ + 530475793, + 103189644 + ], + "geometry": [ + { "lat": 40.8623708, "lon": -73.9631268 }, + { "lat": 40.8620730, "lon": -73.9626020 } + ], + "tags": { + "highway": "residential", + "name": "Prospect Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11589121, + "bounds": { + "minlat": 40.8468387, + "minlon": -74.0052580, + "maxlat": 40.8478640, + "maxlon": -74.0034232 + }, + "nodes": [ + 103296624, + 5976782439, + 103174481, + 5976782443, + 9913452950, + 103319910, + 103244100 + ], + "geometry": [ + { "lat": 40.8468387, "lon": -74.0034232 }, + { "lat": 40.8470998, "lon": -74.0038937 }, + { "lat": 40.8473631, "lon": -74.0043673 }, + { "lat": 40.8476221, "lon": -74.0048285 }, + { "lat": 40.8477337, "lon": -74.0050272 }, + { "lat": 40.8477420, "lon": -74.0050420 }, + { "lat": 40.8478640, "lon": -74.0052580 } + ], + "tags": { + "highway": "residential", + "name": "Prospect Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11589133, + "bounds": { + "minlat": 40.8109715, + "minlon": -73.9990980, + "maxlat": 40.8119770, + "maxlon": -73.9964130 + }, + "nodes": [ + 440208172, + 103320034, + 103175794, + 103222401, + 103196802, + 8204294694, + 103320036 + ], + "geometry": [ + { "lat": 40.8109715, "lon": -73.9964130 }, + { "lat": 40.8110305, "lon": -73.9965799 }, + { "lat": 40.8111680, "lon": -73.9969363 }, + { "lat": 40.8114430, "lon": -73.9977210 }, + { "lat": 40.8117380, "lon": -73.9985080 }, + { "lat": 40.8119140, "lon": -73.9989424 }, + { "lat": 40.8119770, "lon": -73.9990980 } + ], + "tags": { + "highway": "residential", + "name": "Wilson Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wilson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11589134, + "bounds": { + "minlat": 40.8597178, + "minlon": -73.9682788, + "maxlat": 40.8607169, + "maxlon": -73.9664726 + }, + "nodes": [ + 103174618, + 12021336882, + 12021336880, + 12021336866, + 12021336867, + 12021336868, + 103132808 + ], + "geometry": [ + { "lat": 40.8597178, "lon": -73.9664726 }, + { "lat": 40.8597532, "lon": -73.9665362 }, + { "lat": 40.8597729, "lon": -73.9665716 }, + { "lat": 40.8606698, "lon": -73.9681795 }, + { "lat": 40.8606844, "lon": -73.9682073 }, + { "lat": 40.8607021, "lon": -73.9682440 }, + { "lat": 40.8607169, "lon": -73.9682788 } + ], + "tags": { + "hgv": "no", + "highway": "residential", + "name": "Wilson Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wilson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 11589160, + "bounds": { + "minlat": 40.8792267, + "minlon": -73.9989980, + "maxlat": 40.8795540, + "maxlon": -73.9978189 + }, + "nodes": [ + 103093352, + 6786537158, + 6648422866, + 103320244, + 6786776280, + 6786776281 + ], + "geometry": [ + { "lat": 40.8795540, "lon": -73.9989980 }, + { "lat": 40.8793956, "lon": -73.9984792 }, + { "lat": 40.8793714, "lon": -73.9984000 }, + { "lat": 40.8792267, "lon": -73.9979190 }, + { "lat": 40.8792475, "lon": -73.9978579 }, + { "lat": 40.8792847, "lon": -73.9978189 } + ], + "tags": { + "highway": "residential", + "name": "Lindbergh Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lindbergh", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11589161, + "bounds": { + "minlat": 40.8793080, + "minlon": -74.0086660, + "maxlat": 40.8823340, + "maxlon": -73.9991330 + }, + "nodes": [ + 103214424, + 13527712066, + 6639265216, + 6639265274, + 6864942177, + 103320245, + 103292818, + 103226676, + 103236751, + 103219390, + 103186257, + 103305687, + 103158763, + 103243874, + 103246036, + 103240138, + 103093350 + ], + "geometry": [ + { "lat": 40.8823340, "lon": -74.0086660 }, + { "lat": 40.8823064, "lon": -74.0085790 }, + { "lat": 40.8821895, "lon": -74.0082109 }, + { "lat": 40.8821752, "lon": -74.0081658 }, + { "lat": 40.8821683, "lon": -74.0081439 }, + { "lat": 40.8820669, "lon": -74.0078245 }, + { "lat": 40.8820080, "lon": -74.0076390 }, + { "lat": 40.8817080, "lon": -74.0066950 }, + { "lat": 40.8814210, "lon": -74.0057890 }, + { "lat": 40.8811500, "lon": -74.0049380 }, + { "lat": 40.8808830, "lon": -74.0040940 }, + { "lat": 40.8806250, "lon": -74.0032820 }, + { "lat": 40.8803650, "lon": -74.0024620 }, + { "lat": 40.8801050, "lon": -74.0016430 }, + { "lat": 40.8798390, "lon": -74.0008080 }, + { "lat": 40.8795740, "lon": -73.9999720 }, + { "lat": 40.8793080, "lon": -73.9991330 } + ], + "tags": { + "highway": "residential", + "name": "Lindbergh Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lindbergh", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11589168, + "bounds": { + "minlat": 40.8431473, + "minlon": -73.9955748, + "maxlat": 40.8493440, + "maxlon": -73.9893690 + }, + "nodes": [ + 103295502, + 103294155, + 103310030, + 103286691, + 103277692 + ], + "geometry": [ + { "lat": 40.8431473, "lon": -73.9955748 }, + { "lat": 40.8444934, "lon": -73.9942453 }, + { "lat": 40.8456410, "lon": -73.9931000 }, + { "lat": 40.8470250, "lon": -73.9916870 }, + { "lat": 40.8493440, "lon": -73.9893690 } + ], + "tags": { + "highway": "residential", + "name": "4th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "4th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11589187, + "bounds": { + "minlat": 40.8205463, + "minlon": -73.9890885, + "maxlat": 40.8207709, + "maxlon": -73.9889143 + }, + "nodes": [ + 103133912, + 103320371 + ], + "geometry": [ + { "lat": 40.8205463, "lon": -73.9890885 }, + { "lat": 40.8207709, "lon": -73.9889143 } + ], + "tags": { + "highway": "residential", + "name": "4th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "4th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11589193, + "bounds": { + "minlat": 40.8156879, + "minlon": -73.9967130, + "maxlat": 40.8179030, + "maxlon": -73.9947230 + }, + "nodes": [ + 103207134, + 103314372, + 103204319 + ], + "geometry": [ + { "lat": 40.8179030, "lon": -73.9947230 }, + { "lat": 40.8169450, "lon": -73.9955640 }, + { "lat": 40.8156879, "lon": -73.9967130 } + ], + "tags": { + "highway": "residential", + "name": "4th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "4th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11589285, + "bounds": { + "minlat": 40.8790402, + "minlon": -73.9788448, + "maxlat": 40.8809170, + "maxlon": -73.9754748 + }, + "nodes": [ + 103296540, + 9239580223, + 9239580222, + 103303353, + 103290476, + 103290460, + 103277526, + 6618226734, + 12021734817, + 12021734816, + 12021734815, + 103224140 + ], + "geometry": [ + { "lat": 40.8809170, "lon": -73.9788448 }, + { "lat": 40.8808796, "lon": -73.9787741 }, + { "lat": 40.8808459, "lon": -73.9787141 }, + { "lat": 40.8804978, "lon": -73.9780917 }, + { "lat": 40.8801490, "lon": -73.9775760 }, + { "lat": 40.8799930, "lon": -73.9773060 }, + { "lat": 40.8795410, "lon": -73.9765250 }, + { "lat": 40.8791756, "lon": -73.9757431 }, + { "lat": 40.8790982, "lon": -73.9756058 }, + { "lat": 40.8790816, "lon": -73.9755702 }, + { "lat": 40.8790585, "lon": -73.9755177 }, + { "lat": 40.8790402, "lon": -73.9754748 } + ], + "tags": { + "highway": "residential", + "name": "Madison Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Madison", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 11589366, + "bounds": { + "minlat": 40.8749864, + "minlon": -74.0040753, + "maxlat": 40.8752889, + "maxlon": -74.0037230 + }, + "nodes": [ + 4469448603, + 4469448604, + 4469448623, + 4469448618, + 4469448617, + 103321912 + ], + "geometry": [ + { "lat": 40.8749955, "lon": -74.0040753 }, + { "lat": 40.8749884, "lon": -74.0040216 }, + { "lat": 40.8749864, "lon": -74.0039720 }, + { "lat": 40.8749918, "lon": -74.0039245 }, + { "lat": 40.8750186, "lon": -74.0038921 }, + { "lat": 40.8752889, "lon": -74.0037230 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Wadsworth Court", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11589370, + "bounds": { + "minlat": 40.8349224, + "minlon": -73.9939168, + "maxlat": 40.8369285, + "maxlon": -73.9922608 + }, + "nodes": [ + 103265280, + 13524441804, + 103321919, + 103321921, + 103321923, + 103321925, + 103321927, + 5976777478, + 103321929, + 5976777477, + 13524430669, + 440215477, + 103321931, + 103162551 + ], + "geometry": [ + { "lat": 40.8349224, "lon": -73.9939168 }, + { "lat": 40.8349873, "lon": -73.9938669 }, + { "lat": 40.8355040, "lon": -73.9934690 }, + { "lat": 40.8356310, "lon": -73.9934040 }, + { "lat": 40.8357330, "lon": -73.9933690 }, + { "lat": 40.8361510, "lon": -73.9932070 }, + { "lat": 40.8362730, "lon": -73.9931380 }, + { "lat": 40.8363350, "lon": -73.9930881 }, + { "lat": 40.8363860, "lon": -73.9930470 }, + { "lat": 40.8364359, "lon": -73.9929924 }, + { "lat": 40.8365139, "lon": -73.9929011 }, + { "lat": 40.8365674, "lon": -73.9928409 }, + { "lat": 40.8366383, "lon": -73.9927235 }, + { "lat": 40.8369285, "lon": -73.9922608 } + ], + "tags": { + "highway": "residential", + "name": "Pembroke Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pembroke", + "tiger:name_base_1": "Pembroke", + "tiger:name_type": "Ln", + "tiger:name_type_1": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 11589385, + "bounds": { + "minlat": 40.8301950, + "minlon": -73.9836740, + "maxlat": 40.8308360, + "maxlon": -73.9833330 + }, + "nodes": [ + 103289746, + 103245200 + ], + "geometry": [ + { "lat": 40.8308360, "lon": -73.9833330 }, + { "lat": 40.8301950, "lon": -73.9836740 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Veterans Place", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Veterans", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 11589407, + "bounds": { + "minlat": 40.8480782, + "minlon": -74.0045821, + "maxlat": 40.8486495, + "maxlon": -74.0027402 + }, + "nodes": [ + 103296620, + 103174479, + 103133869 + ], + "geometry": [ + { "lat": 40.8480782, "lon": -74.0027402 }, + { "lat": 40.8483862, "lon": -74.0037574 }, + { "lat": 40.8486495, "lon": -74.0045821 } + ], + "tags": { + "highway": "residential", + "name": "Henry Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 11589410, + "bounds": { + "minlat": 40.8709650, + "minlon": -74.0216645, + "maxlat": 40.8720489, + "maxlon": -74.0197730 + }, + "nodes": [ + 103265899, + 103322344, + 103322345, + 103322347, + 103322349, + 103322351, + 103322353, + 103322355, + 440205989, + 103280814 + ], + "geometry": [ + { "lat": 40.8709650, "lon": -74.0197730 }, + { "lat": 40.8711650, "lon": -74.0197850 }, + { "lat": 40.8712400, "lon": -74.0198080 }, + { "lat": 40.8713220, "lon": -74.0198590 }, + { "lat": 40.8713820, "lon": -74.0199210 }, + { "lat": 40.8714290, "lon": -74.0199880 }, + { "lat": 40.8714440, "lon": -74.0200170 }, + { "lat": 40.8718050, "lon": -74.0210440 }, + { "lat": 40.8718640, "lon": -74.0211930 }, + { "lat": 40.8720489, "lon": -74.0216645 } + ], + "tags": { + "highway": "residential", + "name": "Henry Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 11589411, + "bounds": { + "minlat": 40.8656369, + "minlon": -73.9621440, + "maxlat": 40.8672230, + "maxlon": -73.9615683 + }, + "nodes": [ + 103284209, + 103322364, + 103322366, + 103322368, + 9284797839, + 9284797836, + 9284797834, + 9284797821, + 103322370, + 9284797824, + 103322372, + 103322374, + 103322375, + 440215046 + ], + "geometry": [ + { "lat": 40.8672230, "lon": -73.9616040 }, + { "lat": 40.8667910, "lon": -73.9618250 }, + { "lat": 40.8666660, "lon": -73.9618280 }, + { "lat": 40.8665953, "lon": -73.9618504 }, + { "lat": 40.8664435, "lon": -73.9619317 }, + { "lat": 40.8663597, "lon": -73.9619766 }, + { "lat": 40.8662799, "lon": -73.9620194 }, + { "lat": 40.8661725, "lon": -73.9620769 }, + { "lat": 40.8660994, "lon": -73.9621145 }, + { "lat": 40.8660471, "lon": -73.9621405 }, + { "lat": 40.8660010, "lon": -73.9621440 }, + { "lat": 40.8659671, "lon": -73.9621317 }, + { "lat": 40.8659357, "lon": -73.9621033 }, + { "lat": 40.8656369, "lon": -73.9615683 } + ], + "tags": { + "highway": "residential", + "name": "Henry Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11589413, + "bounds": { + "minlat": 40.8129260, + "minlon": -74.0028244, + "maxlat": 40.8146411, + "maxlon": -73.9987990 + }, + "nodes": [ + 103245919, + 13523912767, + 103322386, + 103255696, + 103322388, + 103322390, + 103302617, + 103322393, + 103322399, + 912452519 + ], + "geometry": [ + { "lat": 40.8129260, "lon": -73.9987990 }, + { "lat": 40.8129711, "lon": -73.9988864 }, + { "lat": 40.8133540, "lon": -73.9996270 }, + { "lat": 40.8138410, "lon": -74.0005700 }, + { "lat": 40.8144304, "lon": -74.0015827 }, + { "lat": 40.8144890, "lon": -74.0016750 }, + { "lat": 40.8146411, "lon": -74.0018946 }, + { "lat": 40.8146059, "lon": -74.0019790 }, + { "lat": 40.8145944, "lon": -74.0020755 }, + { "lat": 40.8146031, "lon": -74.0028244 } + ], + "tags": { + "highway": "residential", + "name": "Henry Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11589422, + "bounds": { + "minlat": 40.8124010, + "minlon": -73.9988360, + "maxlat": 40.8128970, + "maxlon": -73.9979250 + }, + "nodes": [ + 103196804, + 13523912733, + 103245917 + ], + "geometry": [ + { "lat": 40.8124010, "lon": -73.9979250 }, + { "lat": 40.8128524, "lon": -73.9987537 }, + { "lat": 40.8128970, "lon": -73.9988360 } + ], + "tags": { + "highway": "residential", + "name": "Henry Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11629703, + "bounds": { + "minlat": 40.7906872, + "minlon": -74.0037238, + "maxlat": 40.7919820, + "maxlon": -74.0009638 + }, + "nodes": [ + 103855253, + 7468583690, + 6650006667, + 7468583692, + 103855252, + 7468583703, + 7468583705, + 103855250 + ], + "geometry": [ + { "lat": 40.7919820, "lon": -74.0037238 }, + { "lat": 40.7919496, "lon": -74.0036552 }, + { "lat": 40.7918508, "lon": -74.0034457 }, + { "lat": 40.7911814, "lon": -74.0019984 }, + { "lat": 40.7911498, "lon": -74.0019373 }, + { "lat": 40.7911240, "lon": -74.0018799 }, + { "lat": 40.7907380, "lon": -74.0010707 }, + { "lat": 40.7906872, "lon": -74.0009638 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09031009", + "highway": "tertiary", + "name": "69th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "69th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11629705, + "bounds": { + "minlat": 40.7842218, + "minlon": -74.0215440, + "maxlat": 40.7849600, + "maxlon": -74.0198614 + }, + "nodes": [ + 103855266, + 7113514729, + 6885754296, + 7113514733, + 7079249363, + 7472526171, + 103855264 + ], + "geometry": [ + { "lat": 40.7849600, "lon": -74.0215440 }, + { "lat": 40.7847515, "lon": -74.0210776 }, + { "lat": 40.7845775, "lon": -74.0206884 }, + { "lat": 40.7845072, "lon": -74.0205312 }, + { "lat": 40.7844404, "lon": -74.0203817 }, + { "lat": 40.7842669, "lon": -74.0199727 }, + { "lat": 40.7842218, "lon": -74.0198614 } + ], + "tags": { + "highway": "residential", + "name": "52nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "52nd", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11629708, + "bounds": { + "minlat": 40.7807205, + "minlon": -74.0148984, + "maxlat": 40.7816761, + "maxlon": -74.0138995 + }, + "nodes": [ + 440243599, + 7613768103, + 103855283, + 103855285, + 103855286, + 103855288, + 103855290, + 7613768101, + 103855292 + ], + "geometry": [ + { "lat": 40.7807205, "lon": -74.0138995 }, + { "lat": 40.7807525, "lon": -74.0140043 }, + { "lat": 40.7807610, "lon": -74.0140320 }, + { "lat": 40.7808580, "lon": -74.0141400 }, + { "lat": 40.7812890, "lon": -74.0144310 }, + { "lat": 40.7815040, "lon": -74.0145970 }, + { "lat": 40.7815750, "lon": -74.0147060 }, + { "lat": 40.7816173, "lon": -74.0147905 }, + { "lat": 40.7816761, "lon": -74.0148984 } + ], + "tags": { + "highway": "residential", + "name": "52nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "52nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11629732, + "bounds": { + "minlat": 40.7867310, + "minlon": -74.0118320, + "maxlat": 40.7881010, + "maxlon": -74.0107270 + }, + "nodes": [ + 103855469, + 7678130998, + 5746137747, + 103855471 + ], + "geometry": [ + { "lat": 40.7867310, "lon": -74.0118320 }, + { "lat": 40.7868137, "lon": -74.0117653 }, + { "lat": 40.7880397, "lon": -74.0107764 }, + { "lat": 40.7881010, "lon": -74.0107270 } + ], + "tags": { + "highway": "residential", + "name": "Fillmore Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Fillmore", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11629743, + "bounds": { + "minlat": 40.7975473, + "minlon": -74.0199992, + "maxlat": 40.7990413, + "maxlon": -74.0187591 + }, + "nodes": [ + 103855532, + 12849086580, + 103855531 + ], + "geometry": [ + { "lat": 40.7990413, "lon": -74.0187591 }, + { "lat": 40.7975972, "lon": -74.0199597 }, + { "lat": 40.7975473, "lon": -74.0199992 } + ], + "tags": { + "highway": "residential", + "name": "Meadowview Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Meadowview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11629756, + "bounds": { + "minlat": 40.7778057, + "minlon": -74.0202727, + "maxlat": 40.7923730, + "maxlon": -74.0084063 + }, + "nodes": [ + 103855574, + 103855576, + 11243946693, + 7387632511, + 103855578, + 7387632564, + 103855580, + 7387640907, + 103855582, + 7387640974, + 7387641016, + 103855583, + 7377177606, + 7377177604, + 103855585, + 7613768111, + 7613768121, + 103855587, + 7613768169, + 7613768167, + 103855588, + 7613768185, + 8267580271, + 7613768189, + 103855294, + 7613768232, + 7613768234, + 103855590, + 7617907263, + 8267580246, + 7617907259, + 103855592, + 7617909956, + 7617909952, + 103855593, + 7617909966, + 7617909963, + 103855594, + 7617909978, + 7617909980, + 103855595, + 7658692190, + 7658692192, + 103855597, + 7675116973, + 7675116971, + 103855599, + 7675458934, + 7675458932, + 103855601, + 7678103783, + 7678130989, + 103855605, + 7678131065, + 7678131045, + 103855607, + 7678131044, + 103855609, + 7678131102, + 7678131104, + 103855611, + 7678131146, + 7678131144, + 103855613, + 7678242704, + 7678242711, + 103855614, + 7678242745, + 7678242747, + 103855615 + ], + "geometry": [ + { "lat": 40.7778057, "lon": -74.0202727 }, + { "lat": 40.7778501, "lon": -74.0201363 }, + { "lat": 40.7779655, "lon": -74.0199533 }, + { "lat": 40.7782178, "lon": -74.0197423 }, + { "lat": 40.7782625, "lon": -74.0197048 }, + { "lat": 40.7788253, "lon": -74.0192521 }, + { "lat": 40.7788632, "lon": -74.0192217 }, + { "lat": 40.7793947, "lon": -74.0187945 }, + { "lat": 40.7794494, "lon": -74.0187506 }, + { "lat": 40.7795095, "lon": -74.0187040 }, + { "lat": 40.7799669, "lon": -74.0183486 }, + { "lat": 40.7800360, "lon": -74.0182949 }, + { "lat": 40.7801014, "lon": -74.0182413 }, + { "lat": 40.7805693, "lon": -74.0178539 }, + { "lat": 40.7806312, "lon": -74.0178027 }, + { "lat": 40.7806941, "lon": -74.0177520 }, + { "lat": 40.7811497, "lon": -74.0173848 }, + { "lat": 40.7811990, "lon": -74.0173451 }, + { "lat": 40.7812575, "lon": -74.0172988 }, + { "lat": 40.7817412, "lon": -74.0169164 }, + { "lat": 40.7817921, "lon": -74.0168761 }, + { "lat": 40.7818450, "lon": -74.0168328 }, + { "lat": 40.7821280, "lon": -74.0166013 }, + { "lat": 40.7823232, "lon": -74.0164416 }, + { "lat": 40.7823667, "lon": -74.0164060 }, + { "lat": 40.7824253, "lon": -74.0163601 }, + { "lat": 40.7829087, "lon": -74.0159815 }, + { "lat": 40.7829602, "lon": -74.0159411 }, + { "lat": 40.7830163, "lon": -74.0158951 }, + { "lat": 40.7832836, "lon": -74.0156758 }, + { "lat": 40.7834915, "lon": -74.0155053 }, + { "lat": 40.7835388, "lon": -74.0154665 }, + { "lat": 40.7835960, "lon": -74.0154221 }, + { "lat": 40.7840835, "lon": -74.0150433 }, + { "lat": 40.7841396, "lon": -74.0149997 }, + { "lat": 40.7841920, "lon": -74.0149581 }, + { "lat": 40.7846682, "lon": -74.0145805 }, + { "lat": 40.7847230, "lon": -74.0145371 }, + { "lat": 40.7847779, "lon": -74.0144916 }, + { "lat": 40.7852554, "lon": -74.0140958 }, + { "lat": 40.7853065, "lon": -74.0140534 }, + { "lat": 40.7853614, "lon": -74.0140119 }, + { "lat": 40.7858427, "lon": -74.0136478 }, + { "lat": 40.7859077, "lon": -74.0135986 }, + { "lat": 40.7859583, "lon": -74.0135561 }, + { "lat": 40.7864292, "lon": -74.0131611 }, + { "lat": 40.7864780, "lon": -74.0131201 }, + { "lat": 40.7865309, "lon": -74.0130768 }, + { "lat": 40.7870213, "lon": -74.0126756 }, + { "lat": 40.7870999, "lon": -74.0126113 }, + { "lat": 40.7871808, "lon": -74.0125455 }, + { "lat": 40.7883966, "lon": -74.0115561 }, + { "lat": 40.7884593, "lon": -74.0115051 }, + { "lat": 40.7885442, "lon": -74.0114376 }, + { "lat": 40.7893760, "lon": -74.0107760 }, + { "lat": 40.7894292, "lon": -74.0107337 }, + { "lat": 40.7895148, "lon": -74.0106886 }, + { "lat": 40.7900036, "lon": -74.0102734 }, + { "lat": 40.7900754, "lon": -74.0102171 }, + { "lat": 40.7905490, "lon": -74.0098452 }, + { "lat": 40.7906102, "lon": -74.0097971 }, + { "lat": 40.7906855, "lon": -74.0097385 }, + { "lat": 40.7911556, "lon": -74.0093724 }, + { "lat": 40.7912040, "lon": -74.0093347 }, + { "lat": 40.7912632, "lon": -74.0092868 }, + { "lat": 40.7917289, "lon": -74.0089099 }, + { "lat": 40.7917840, "lon": -74.0088653 }, + { "lat": 40.7918642, "lon": -74.0088028 }, + { "lat": 40.7923192, "lon": -74.0084482 }, + { "lat": 40.7923730, "lon": -74.0084063 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Hudson Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11629762, + "bounds": { + "minlat": 40.7931425, + "minlon": -74.0083259, + "maxlat": 40.7938694, + "maxlon": -74.0077180 + }, + "nodes": [ + 103855694, + 7678243096, + 7678243098, + 103855255 + ], + "geometry": [ + { "lat": 40.7931425, "lon": -74.0083259 }, + { "lat": 40.7932033, "lon": -74.0082751 }, + { "lat": 40.7938112, "lon": -74.0077667 }, + { "lat": 40.7938694, "lon": -74.0077180 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11629843, + "bounds": { + "minlat": 40.7865006, + "minlon": -74.0022770, + "maxlat": 40.7881873, + "maxlon": -74.0007269 + }, + "nodes": [ + 1943592026, + 103856519, + 103856517, + 11676020977, + 4205813738 + ], + "geometry": [ + { "lat": 40.7881873, "lon": -74.0007269 }, + { "lat": 40.7878709, "lon": -74.0010185 }, + { "lat": 40.7875049, "lon": -74.0014048 }, + { "lat": 40.7870664, "lon": -74.0018179 }, + { "lat": 40.7865006, "lon": -74.0022770 } + ], + "tags": { + "highway": "primary", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630062, + "bounds": { + "minlat": 40.8084009, + "minlon": -74.0019807, + "maxlat": 40.8090775, + "maxlon": -74.0015152 + }, + "nodes": [ + 103866684, + 4727867680, + 5481884750, + 13252001512 + ], + "geometry": [ + { "lat": 40.8084009, "lon": -74.0019807 }, + { "lat": 40.8084529, "lon": -74.0019449 }, + { "lat": 40.8089105, "lon": -74.0016301 }, + { "lat": 40.8090775, "lon": -74.0015152 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680; Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721; Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093; 07087", + "tiger:zip_right": "07047:07087:07093; 07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 11630068, + "bounds": { + "minlat": 40.7677468, + "minlon": -74.0199622, + "maxlat": 40.7679029, + "maxlon": -74.0197074 + }, + "nodes": [ + 103858568, + 5496387722, + 103858570, + 5496387721, + 103858571 + ], + "geometry": [ + { "lat": 40.7677822, "lon": -74.0199622 }, + { "lat": 40.7677468, "lon": -74.0198734 }, + { "lat": 40.7677492, "lon": -74.0198277 }, + { "lat": 40.7677621, "lon": -74.0198064 }, + { "lat": 40.7679029, "lon": -74.0197074 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630127, + "bounds": { + "minlat": 40.7988530, + "minlon": -74.0201430, + "maxlat": 40.7992110, + "maxlon": -74.0193640 + }, + "nodes": [ + 103855247, + 8374378211, + 8374378212, + 103858833 + ], + "geometry": [ + { "lat": 40.7992110, "lon": -74.0201430 }, + { "lat": 40.7990848, "lon": -74.0198685 }, + { "lat": 40.7989743, "lon": -74.0196279 }, + { "lat": 40.7988530, "lon": -74.0193640 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630129, + "bounds": { + "minlat": 40.7993136, + "minlon": -73.9983958, + "maxlat": 40.8000560, + "maxlon": -73.9968430 + }, + "nodes": [ + 3809681027, + 4727867594, + 103858835, + 4727867854, + 4727867853, + 103858836, + 4727867851, + 4727867852, + 103858838, + 103858840 + ], + "geometry": [ + { "lat": 40.7993136, "lon": -73.9983958 }, + { "lat": 40.7993507, "lon": -73.9982487 }, + { "lat": 40.7993869, "lon": -73.9981067 }, + { "lat": 40.7994610, "lon": -73.9978635 }, + { "lat": 40.7995450, "lon": -73.9976248 }, + { "lat": 40.7996132, "lon": -73.9974460 }, + { "lat": 40.7996846, "lon": -73.9972986 }, + { "lat": 40.7997789, "lon": -73.9971583 }, + { "lat": 40.7998713, "lon": -73.9970412 }, + { "lat": 40.8000560, "lon": -73.9968430 } + ], + "tags": { + "highway": "residential", + "note": "Nameless way in TIGER 2017", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630150, + "bounds": { + "minlat": 40.8108750, + "minlon": -74.0093945, + "maxlat": 40.8114499, + "maxlon": -74.0089121 + }, + "nodes": [ + 103858986, + 7475993581, + 12456262185, + 7475993578, + 7475993579, + 103858988 + ], + "geometry": [ + { "lat": 40.8114499, "lon": -74.0089121 }, + { "lat": 40.8114107, "lon": -74.0089490 }, + { "lat": 40.8113672, "lon": -74.0089898 }, + { "lat": 40.8109591, "lon": -74.0093731 }, + { "lat": 40.8109171, "lon": -74.0093945 }, + { "lat": 40.8108750, "lon": -74.0093854 } + ], + "tags": { + "highway": "residential", + "name": "89th Street", + "note": "Newkirk Avenue looks more plausible, but TIGER 2017 says 89th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Newkirk", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11630151, + "bounds": { + "minlat": 40.8129580, + "minlon": -74.0208672, + "maxlat": 40.8183888, + "maxlon": -74.0194231 + }, + "nodes": [ + 5571858319, + 8218912812, + 3740788375, + 8218912813, + 3740788374, + 3740788379, + 7631060706, + 3740788373, + 3740788378, + 3740788377, + 103858994 + ], + "geometry": [ + { "lat": 40.8183888, "lon": -74.0208672 }, + { "lat": 40.8166951, "lon": -74.0203011 }, + { "lat": 40.8156972, "lon": -74.0199675 }, + { "lat": 40.8156234, "lon": -74.0199450 }, + { "lat": 40.8147153, "lon": -74.0196685 }, + { "lat": 40.8138779, "lon": -74.0194794 }, + { "lat": 40.8137987, "lon": -74.0194702 }, + { "lat": 40.8135653, "lon": -74.0194432 }, + { "lat": 40.8133623, "lon": -74.0194231 }, + { "lat": 40.8130893, "lon": -74.0194445 }, + { "lat": 40.8129580, "lon": -74.0194900 } + ], + "tags": { + "HFCS": "Urban Major Collector", + "NJDOT_SRI": "09081122", + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 11630212, + "bounds": { + "minlat": 40.7970121, + "minlon": -73.9933296, + "maxlat": 40.7972220, + "maxlon": -73.9927200 + }, + "nodes": [ + 103859510, + 103859512, + 103859514, + 103859516, + 103859518, + 103859520, + 103859522, + 103859510 + ], + "geometry": [ + { "lat": 40.7971710, "lon": -73.9931180 }, + { "lat": 40.7971641, "lon": -73.9933296 }, + { "lat": 40.7970121, "lon": -73.9928959 }, + { "lat": 40.7970168, "lon": -73.9928310 }, + { "lat": 40.7970550, "lon": -73.9927570 }, + { "lat": 40.7971660, "lon": -73.9927200 }, + { "lat": 40.7972220, "lon": -73.9927920 }, + { "lat": 40.7971710, "lon": -73.9931180 } + ], + "tags": { + "highway": "residential", + "name": "Cove Lane North", + "name_1": "North Cove Lane", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Cove", + "tiger:name_base_1": "Cove", + "tiger:name_direction_prefix_1": "N", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Ln", + "tiger:name_type_1": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11630214, + "bounds": { + "minlat": 40.8016778, + "minlon": -74.0180178, + "maxlat": 40.8021945, + "maxlon": -74.0175951 + }, + "nodes": [ + 103859565, + 103859563 + ], + "geometry": [ + { "lat": 40.8016778, "lon": -74.0180178 }, + { "lat": 40.8021945, "lon": -74.0175951 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630236, + "bounds": { + "minlat": 40.7852852, + "minlon": -74.0029637, + "maxlat": 40.7856583, + "maxlon": -74.0021202 + }, + "nodes": [ + 103859910, + 5482202120, + 5482202115, + 5482202119, + 308650399 + ], + "geometry": [ + { "lat": 40.7856583, "lon": -74.0029637 }, + { "lat": 40.7855802, "lon": -74.0028924 }, + { "lat": 40.7854317, "lon": -74.0025513 }, + { "lat": 40.7852999, "lon": -74.0022486 }, + { "lat": 40.7852852, "lon": -74.0021202 } + ], + "tags": { + "highway": "residential", + "name": "Oswego Court", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630264, + "bounds": { + "minlat": 40.7969100, + "minlon": -74.0195574, + "maxlat": 40.7972139, + "maxlon": -74.0193105 + }, + "nodes": [ + 103860102, + 103860103 + ], + "geometry": [ + { "lat": 40.7972139, "lon": -74.0193105 }, + { "lat": 40.7969100, "lon": -74.0195574 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630373, + "bounds": { + "minlat": 40.7775484, + "minlon": -74.0181005, + "maxlat": 40.7793342, + "maxlon": -74.0167800 + }, + "nodes": [ + 103862580, + 7387640994, + 7387641032, + 103860978, + 7387640919, + 5572213079, + 5572213078, + 5572213077, + 5572213076, + 103862576 + ], + "geometry": [ + { "lat": 40.7793342, "lon": -74.0167800 }, + { "lat": 40.7792592, "lon": -74.0168398 }, + { "lat": 40.7788052, "lon": -74.0172022 }, + { "lat": 40.7787492, "lon": -74.0172469 }, + { "lat": 40.7787004, "lon": -74.0172865 }, + { "lat": 40.7777103, "lon": -74.0180923 }, + { "lat": 40.7776441, "lon": -74.0181005 }, + { "lat": 40.7776126, "lon": -74.0181005 }, + { "lat": 40.7775791, "lon": -74.0180871 }, + { "lat": 40.7775484, "lon": -74.0180568 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081253", + "highway": "tertiary", + "name": "Broadway", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087", + "tiger:zip_right": "07047:07087" + } +}, +{ + "type": "way", + "id": 11630414, + "bounds": { + "minlat": 40.7851150, + "minlon": -74.0110040, + "maxlat": 40.7853890, + "maxlon": -74.0107750 + }, + "nodes": [ + 103861120, + 7658684773, + 103861122 + ], + "geometry": [ + { "lat": 40.7853890, "lon": -74.0107750 }, + { "lat": 40.7853406, "lon": -74.0108155 }, + { "lat": 40.7851150, "lon": -74.0110040 } + ], + "tags": { + "highway": "residential", + "name": "Buchanan Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630435, + "bounds": { + "minlat": 40.8015064, + "minlon": -74.0200866, + "maxlat": 40.8017513, + "maxlon": -74.0198823 + }, + "nodes": [ + 103861204, + 103861206 + ], + "geometry": [ + { "lat": 40.8015064, "lon": -74.0200866 }, + { "lat": 40.8017513, "lon": -74.0198823 } + ], + "tags": { + "highway": "residential", + "name": "Liberty Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630436, + "bounds": { + "minlat": 40.8038468, + "minlon": -73.9964192, + "maxlat": 40.8040613, + "maxlon": -73.9961787 + }, + "nodes": [ + 103861215, + 103861207 + ], + "geometry": [ + { "lat": 40.8040613, "lon": -73.9961787 }, + { "lat": 40.8038468, "lon": -73.9964192 } + ], + "tags": { + "highway": "secondary", + "name": "Wall Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630496, + "bounds": { + "minlat": 40.8021880, + "minlon": -74.0195071, + "maxlat": 40.8022496, + "maxlon": -74.0194566 + }, + "nodes": [ + 103861483, + 103861485 + ], + "geometry": [ + { "lat": 40.8021880, "lon": -74.0195071 }, + { "lat": 40.8022496, "lon": -74.0194566 } + ], + "tags": { + "highway": "residential", + "name": "Liberty Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630497, + "bounds": { + "minlat": 40.7995360, + "minlon": -74.0199202, + "maxlat": 40.7996490, + "maxlon": -74.0198400 + }, + "nodes": [ + 103861490, + 103861492 + ], + "geometry": [ + { "lat": 40.7995360, "lon": -74.0199202 }, + { "lat": 40.7996490, "lon": -74.0198400 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630498, + "bounds": { + "minlat": 40.7939601, + "minlon": -74.0159949, + "maxlat": 40.7939999, + "maxlon": -74.0159031 + }, + "nodes": [ + 103861498, + 103861500 + ], + "geometry": [ + { "lat": 40.7939601, "lon": -74.0159031 }, + { "lat": 40.7939999, "lon": -74.0159949 } + ], + "tags": { + "highway": "residential", + "name": "65th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630523, + "bounds": { + "minlat": 40.7842883, + "minlon": -74.0075576, + "maxlat": 40.7884903, + "maxlon": -74.0012842 + }, + "nodes": [ + 4212678505, + 3000950976, + 103861641, + 103861643, + 103861645, + 103861647, + 103861649, + 103861651, + 103861653, + 103861655, + 103861657, + 103861659, + 7300731054, + 103861661, + 6888297177, + 103861663, + 6888297182, + 103861665, + 103861667, + 6888297184, + 103861669, + 103861676 + ], + "geometry": [ + { "lat": 40.7847313, "lon": -74.0075576 }, + { "lat": 40.7845430, "lon": -74.0071518 }, + { "lat": 40.7843460, "lon": -74.0066728 }, + { "lat": 40.7843028, "lon": -74.0064378 }, + { "lat": 40.7842883, "lon": -74.0062802 }, + { "lat": 40.7842885, "lon": -74.0061088 }, + { "lat": 40.7843059, "lon": -74.0059933 }, + { "lat": 40.7843224, "lon": -74.0058682 }, + { "lat": 40.7843580, "lon": -74.0057399 }, + { "lat": 40.7844154, "lon": -74.0055914 }, + { "lat": 40.7845822, "lon": -74.0053038 }, + { "lat": 40.7856473, "lon": -74.0038394 }, + { "lat": 40.7858714, "lon": -74.0035812 }, + { "lat": 40.7861145, "lon": -74.0033397 }, + { "lat": 40.7865158, "lon": -74.0029477 }, + { "lat": 40.7867324, "lon": -74.0027654 }, + { "lat": 40.7869708, "lon": -74.0025645 }, + { "lat": 40.7872680, "lon": -74.0023266 }, + { "lat": 40.7881016, "lon": -74.0016578 }, + { "lat": 40.7882740, "lon": -74.0015053 }, + { "lat": 40.7883517, "lon": -74.0014395 }, + { "lat": 40.7884903, "lon": -74.0012842 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hillside Road", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hillside", + "tiger:name_base_1": "River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630543, + "bounds": { + "minlat": 40.7959968, + "minlon": -73.9946290, + "maxlat": 40.7965540, + "maxlon": -73.9932228 + }, + "nodes": [ + 3357247595, + 103861839, + 103861841 + ], + "geometry": [ + { "lat": 40.7959968, "lon": -73.9932228 }, + { "lat": 40.7965110, "lon": -73.9946090 }, + { "lat": 40.7965540, "lon": -73.9946290 } + ], + "tags": { + "highway": "residential", + "name": "Riverview Circle", + "name_1": "River View Circle", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Riverview", + "tiger:name_base_1": "River View", + "tiger:name_type": "Cir", + "tiger:name_type_1": "Cir", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11630550, + "bounds": { + "minlat": 40.7939601, + "minlon": -74.0159031, + "maxlat": 40.7950957, + "maxlon": -74.0149624 + }, + "nodes": [ + 103861498, + 5746137767, + 5746137758, + 103861900, + 7474498711, + 7474498709, + 103861902 + ], + "geometry": [ + { "lat": 40.7939601, "lon": -74.0159031 }, + { "lat": 40.7940074, "lon": -74.0158626 }, + { "lat": 40.7945001, "lon": -74.0154458 }, + { "lat": 40.7945469, "lon": -74.0154076 }, + { "lat": 40.7945954, "lon": -74.0153677 }, + { "lat": 40.7950442, "lon": -74.0150041 }, + { "lat": 40.7950957, "lon": -74.0149624 } + ], + "tags": { + "highway": "residential", + "name": "Jackson Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Jackson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630551, + "bounds": { + "minlat": 40.7881820, + "minlon": -74.0205020, + "maxlat": 40.7939999, + "maxlon": -74.0159949 + }, + "nodes": [ + 103860933, + 7473610213, + 103861917, + 5474144250, + 5474144251, + 7473610211, + 103861921, + 7660952973, + 7660952975, + 103861923, + 7660979540, + 7660979544, + 103861925, + 7660979608, + 7660979610, + 103861927, + 7668140017, + 7668140019, + 103861500 + ], + "geometry": [ + { "lat": 40.7881820, "lon": -74.0205020 }, + { "lat": 40.7882295, "lon": -74.0204621 }, + { "lat": 40.7885010, "lon": -74.0202340 }, + { "lat": 40.7887319, "lon": -74.0201755 }, + { "lat": 40.7889823, "lon": -74.0199869 }, + { "lat": 40.7896023, "lon": -74.0194960 }, + { "lat": 40.7896433, "lon": -74.0194631 }, + { "lat": 40.7896942, "lon": -74.0194218 }, + { "lat": 40.7901366, "lon": -74.0190631 }, + { "lat": 40.7901998, "lon": -74.0190118 }, + { "lat": 40.7902519, "lon": -74.0189680 }, + { "lat": 40.7910545, "lon": -74.0183198 }, + { "lat": 40.7911284, "lon": -74.0182601 }, + { "lat": 40.7911855, "lon": -74.0182143 }, + { "lat": 40.7923648, "lon": -74.0172694 }, + { "lat": 40.7924090, "lon": -74.0172340 }, + { "lat": 40.7924749, "lon": -74.0171827 }, + { "lat": 40.7939520, "lon": -74.0160322 }, + { "lat": 40.7939999, "lon": -74.0159949 } + ], + "tags": { + "highway": "residential", + "name": "Jackson Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Jackson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630557, + "bounds": { + "minlat": 40.7843962, + "minlon": -74.0120779, + "maxlat": 40.7851961, + "maxlon": -74.0103644 + }, + "nodes": [ + 4501150766, + 7658684760, + 7658684762, + 103861996 + ], + "geometry": [ + { "lat": 40.7851961, "lon": -74.0120779 }, + { "lat": 40.7851530, "lon": -74.0119857 }, + { "lat": 40.7844382, "lon": -74.0104544 }, + { "lat": 40.7843962, "lon": -74.0103644 } + ], + "tags": { + "highway": "residential", + "name": "58th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "58th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630560, + "bounds": { + "minlat": 40.7716501, + "minlon": -74.0201569, + "maxlat": 40.7725048, + "maxlon": -74.0197767 + }, + "nodes": [ + 103862024, + 4999662171, + 7366578086, + 103862026 + ], + "geometry": [ + { "lat": 40.7716501, "lon": -74.0201569 }, + { "lat": 40.7717249, "lon": -74.0201224 }, + { "lat": 40.7717327, "lon": -74.0201190 }, + { "lat": 40.7725048, "lon": -74.0197767 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "Nesbit Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Nesbit", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11630573, + "bounds": { + "minlat": 40.7851626, + "minlon": -74.0172415, + "maxlat": 40.7857599, + "maxlon": -74.0167711 + }, + "nodes": [ + 103862120, + 7657468964, + 103862122 + ], + "geometry": [ + { "lat": 40.7851626, "lon": -74.0172415 }, + { "lat": 40.7856812, "lon": -74.0168331 }, + { "lat": 40.7857599, "lon": -74.0167711 } + ], + "tags": { + "highway": "residential", + "name": "Gaw Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Gaw", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630625, + "bounds": { + "minlat": 40.7782625, + "minlon": -74.0208730, + "maxlat": 40.7787840, + "maxlon": -74.0197048 + }, + "nodes": [ + 103855578, + 7387632565, + 4514675890, + 7237250302, + 103862723 + ], + "geometry": [ + { "lat": 40.7782625, "lon": -74.0197048 }, + { "lat": 40.7783029, "lon": -74.0197880 }, + { "lat": 40.7785980, "lon": -74.0203953 }, + { "lat": 40.7787834, "lon": -74.0208088 }, + { "lat": 40.7787840, "lon": -74.0208730 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Roosevelt Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Roosevelt", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07087", + "tiger:zip_right": "07087" + } +}, +{ + "type": "way", + "id": 11630629, + "bounds": { + "minlat": 40.7718236, + "minlon": -74.0191260, + "maxlat": 40.7730860, + "maxlon": -74.0161833 + }, + "nodes": [ + 103861105, + 4999662109, + 5893803931, + 103862733 + ], + "geometry": [ + { "lat": 40.7718236, "lon": -74.0161833 }, + { "lat": 40.7718601, "lon": -74.0162826 }, + { "lat": 40.7730594, "lon": -74.0190621 }, + { "lat": 40.7730860, "lon": -74.0191260 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Hudson Place", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11630640, + "bounds": { + "minlat": 40.7949291, + "minlon": -74.0188397, + "maxlat": 40.7964850, + "maxlon": -74.0177810 + }, + "nodes": [ + 103862773, + 7474437980, + 7474437978, + 4528269751 + ], + "geometry": [ + { "lat": 40.7964850, "lon": -74.0177810 }, + { "lat": 40.7964279, "lon": -74.0178199 }, + { "lat": 40.7949766, "lon": -74.0188074 }, + { "lat": 40.7949291, "lon": -74.0188397 } + ], + "tags": { + "highway": "residential", + "name": "Smith Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Smith", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11630642, + "bounds": { + "minlat": 40.8026255, + "minlon": -74.0134690, + "maxlat": 40.8035469, + "maxlon": -74.0127300 + }, + "nodes": [ + 103862781, + 7474656006, + 7474656003, + 103862780 + ], + "geometry": [ + { "lat": 40.8035469, "lon": -74.0127300 }, + { "lat": 40.8034930, "lon": -74.0127732 }, + { "lat": 40.8026682, "lon": -74.0134347 }, + { "lat": 40.8026255, "lon": -74.0134690 } + ], + "tags": { + "highway": "residential", + "name": "Smith Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Smith", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11630646, + "bounds": { + "minlat": 40.8084412, + "minlon": -74.0092019, + "maxlat": 40.8092305, + "maxlon": -74.0085290 + }, + "nodes": [ + 103862796, + 7475993494, + 103862798, + 7475993511, + 103862800 + ], + "geometry": [ + { "lat": 40.8084412, "lon": -74.0092019 }, + { "lat": 40.8086957, "lon": -74.0089815 }, + { "lat": 40.8087322, "lon": -74.0089505 }, + { "lat": 40.8087842, "lon": -74.0089066 }, + { "lat": 40.8092305, "lon": -74.0085290 } + ], + "tags": { + "highway": "residential", + "name": "Smith Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Smith", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11630648, + "bounds": { + "minlat": 40.8107259, + "minlon": -74.0073393, + "maxlat": 40.8124078, + "maxlon": -74.0058388 + }, + "nodes": [ + 103862806, + 12456262074, + 103862807, + 12456262010, + 103862808 + ], + "geometry": [ + { "lat": 40.8107259, "lon": -74.0073393 }, + { "lat": 40.8115034, "lon": -74.0066491 }, + { "lat": 40.8115581, "lon": -74.0066006 }, + { "lat": 40.8116128, "lon": -74.0065515 }, + { "lat": 40.8124078, "lon": -74.0058388 } + ], + "tags": { + "highway": "residential", + "name": "Smith Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Smith", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11630654, + "bounds": { + "minlat": 40.7757195, + "minlon": -74.0157489, + "maxlat": 40.7768741, + "maxlon": -74.0148703 + }, + "nodes": [ + 103862863, + 7320650689, + 7655850967, + 7320650692, + 103862861, + 7320650670, + 103862859 + ], + "geometry": [ + { "lat": 40.7768741, "lon": -74.0148703 }, + { "lat": 40.7768402, "lon": -74.0148969 }, + { "lat": 40.7764632, "lon": -74.0151929 }, + { "lat": 40.7763672, "lon": -74.0152683 }, + { "lat": 40.7763101, "lon": -74.0153131 }, + { "lat": 40.7757857, "lon": -74.0157001 }, + { "lat": 40.7757195, "lon": -74.0157489 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Louisa Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Louisa", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11630719, + "bounds": { + "minlat": 40.7691370, + "minlon": -74.0186323, + "maxlat": 40.7708063, + "maxlon": -74.0167877 + }, + "nodes": [ + 103883726, + 4999662085, + 3588876022, + 3588876021, + 103863393, + 103863391, + 2836989845, + 2836989844, + 4999662133, + 103863387 + ], + "geometry": [ + { "lat": 40.7694409, "lon": -74.0186323 }, + { "lat": 40.7694182, "lon": -74.0185733 }, + { "lat": 40.7691451, "lon": -74.0179219 }, + { "lat": 40.7691370, "lon": -74.0178643 }, + { "lat": 40.7691478, "lon": -74.0178146 }, + { "lat": 40.7704763, "lon": -74.0168041 }, + { "lat": 40.7705582, "lon": -74.0167877 }, + { "lat": 40.7706629, "lon": -74.0168075 }, + { "lat": 40.7707104, "lon": -74.0168176 }, + { "lat": 40.7708063, "lon": -74.0168381 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Hamilton Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hamilton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11630721, + "bounds": { + "minlat": 40.8093504, + "minlon": -74.0002845, + "maxlat": 40.8133500, + "maxlon": -73.9969910 + }, + "nodes": [ + 103196806, + 8153831129, + 103196804, + 103196803, + 103196802, + 7733369355, + 7497044172, + 103112782, + 103111351, + 440208115, + 103863400 + ], + "geometry": [ + { "lat": 40.8133500, "lon": -73.9969910 }, + { "lat": 40.8127262, "lon": -73.9976049 }, + { "lat": 40.8124010, "lon": -73.9979250 }, + { "lat": 40.8119380, "lon": -73.9983820 }, + { "lat": 40.8117380, "lon": -73.9985080 }, + { "lat": 40.8113487, "lon": -73.9987543 }, + { "lat": 40.8112134, "lon": -73.9988399 }, + { "lat": 40.8106680, "lon": -73.9991850 }, + { "lat": 40.8097727, "lon": -73.9997390 }, + { "lat": 40.8096737, "lon": -73.9998153 }, + { "lat": 40.8093504, "lon": -74.0002845 } + ], + "tags": { + "highway": "residential", + "name": "Hamilton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ:Hudson, NJ", + "tiger:name_base": "Hamilton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07047", + "tiger:zip_right": "07022:07047" + } +}, +{ + "type": "way", + "id": 11630724, + "bounds": { + "minlat": 40.7686264, + "minlon": -74.0202438, + "maxlat": 40.7711355, + "maxlon": -74.0184002 + }, + "nodes": [ + 103863421, + 4999662188, + 103863419, + 7320077808, + 4999662150, + 103863417 + ], + "geometry": [ + { "lat": 40.7686264, "lon": -74.0201588 }, + { "lat": 40.7686442, "lon": -74.0201983 }, + { "lat": 40.7686610, "lon": -74.0202387 }, + { "lat": 40.7686844, "lon": -74.0202438 }, + { "lat": 40.7710607, "lon": -74.0184530 }, + { "lat": 40.7711355, "lon": -74.0184002 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bonn Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bonn", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11630752, + "bounds": { + "minlat": 40.7880893, + "minlon": -74.0003969, + "maxlat": 40.7882570, + "maxlon": -74.0000281 + }, + "nodes": [ + 103863718, + 103863720 + ], + "geometry": [ + { "lat": 40.7880893, "lon": -74.0000281 }, + { "lat": 40.7882570, "lon": -74.0003969 } + ], + "tags": { + "highway": "residential", + "name": "Brower Court", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Brower", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630820, + "bounds": { + "minlat": 40.7683518, + "minlon": -74.0201588, + "maxlat": 40.7686264, + "maxlon": -74.0194620 + }, + "nodes": [ + 103864076, + 103863421 + ], + "geometry": [ + { "lat": 40.7683518, "lon": -74.0194620 }, + { "lat": 40.7686264, "lon": -74.0201588 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bellevue Terrace", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bellevue", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11630828, + "bounds": { + "minlat": 40.7851858, + "minlon": -74.0092607, + "maxlat": 40.7855429, + "maxlon": -74.0085053 + }, + "nodes": [ + 103861638, + 7468537442, + 7468537444, + 103864115 + ], + "geometry": [ + { "lat": 40.7851858, "lon": -74.0085053 }, + { "lat": 40.7852456, "lon": -74.0086323 }, + { "lat": 40.7855039, "lon": -74.0091783 }, + { "lat": 40.7855429, "lon": -74.0092607 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "09121076", + "highway": "secondary", + "name": "60th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "60th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630830, + "bounds": { + "minlat": 40.7891676, + "minlon": -74.0219925, + "maxlat": 40.7915745, + "maxlon": -74.0167836 + }, + "nodes": [ + 103864129, + 7660979500, + 103864130, + 7660979487, + 103864131, + 7660979485, + 103861923, + 7660952977, + 103864132, + 7660952972, + 103864134, + 7660952962, + 7660952960, + 103864136, + 7473610292, + 7473610290, + 103864141 + ], + "geometry": [ + { "lat": 40.7891676, "lon": -74.0167836 }, + { "lat": 40.7894810, "lon": -74.0174775 }, + { "lat": 40.7895092, "lon": -74.0175399 }, + { "lat": 40.7895392, "lon": -74.0176034 }, + { "lat": 40.7898546, "lon": -74.0182705 }, + { "lat": 40.7901712, "lon": -74.0189494 }, + { "lat": 40.7901998, "lon": -74.0190118 }, + { "lat": 40.7902342, "lon": -74.0190847 }, + { "lat": 40.7905452, "lon": -74.0197440 }, + { "lat": 40.7908632, "lon": -74.0204252 }, + { "lat": 40.7908929, "lon": -74.0204887 }, + { "lat": 40.7909214, "lon": -74.0205510 }, + { "lat": 40.7911961, "lon": -74.0211524 }, + { "lat": 40.7912312, "lon": -74.0212291 }, + { "lat": 40.7912636, "lon": -74.0213010 }, + { "lat": 40.7915219, "lon": -74.0218747 }, + { "lat": 40.7915745, "lon": -74.0219925 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "09121076", + "highway": "tertiary", + "name": "60th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "60th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630848, + "bounds": { + "minlat": 40.7990305, + "minlon": -73.9968360, + "maxlat": 40.8006007, + "maxlon": -73.9940169 + }, + "nodes": [ + 103864243, + 4727867603, + 4727867598, + 4727867602, + 103864245, + 103864247, + 4727867599, + 103864249, + 4727867600, + 103864251, + 4727867601, + 103864253, + 103864255, + 103864257, + 103864259, + 5342516911, + 7071027378, + 103864262, + 103861721 + ], + "geometry": [ + { "lat": 40.7993780, "lon": -73.9968360 }, + { "lat": 40.7993290, "lon": -73.9966690 }, + { "lat": 40.7993096, "lon": -73.9966428 }, + { "lat": 40.7992872, "lon": -73.9966229 }, + { "lat": 40.7991138, "lon": -73.9965326 }, + { "lat": 40.7990766, "lon": -73.9964931 }, + { "lat": 40.7990431, "lon": -73.9964325 }, + { "lat": 40.7990318, "lon": -73.9963680 }, + { "lat": 40.7990305, "lon": -73.9963010 }, + { "lat": 40.7990440, "lon": -73.9962340 }, + { "lat": 40.7990679, "lon": -73.9961753 }, + { "lat": 40.7991163, "lon": -73.9961136 }, + { "lat": 40.7996541, "lon": -73.9955556 }, + { "lat": 40.8000596, "lon": -73.9950988 }, + { "lat": 40.8004474, "lon": -73.9946244 }, + { "lat": 40.8005876, "lon": -73.9943804 }, + { "lat": 40.8005968, "lon": -73.9942283 }, + { "lat": 40.8006007, "lon": -73.9941644 }, + { "lat": 40.8005733, "lon": -73.9940169 } + ], + "tags": { + "buses": "no", + "highway": "tertiary", + "name": "Bulls Ferry Road", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bulls Ferry", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "trucks": "no" + } +}, +{ + "type": "way", + "id": 11630866, + "bounds": { + "minlat": 40.7860583, + "minlon": -74.0098426, + "maxlat": 40.7865615, + "maxlon": -74.0087825 + }, + "nodes": [ + 103864386, + 7658692219, + 103864385 + ], + "geometry": [ + { "lat": 40.7865615, "lon": -74.0098426 }, + { "lat": 40.7865377, "lon": -74.0097925 }, + { "lat": 40.7860583, "lon": -74.0087825 } + ], + "tags": { + "highway": "residential", + "name": "Westover Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Westover", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_left_1": "07093", + "tiger:zip_right": "07093", + "tiger:zip_right_1": "07093" + } +}, +{ + "type": "way", + "id": 11630870, + "bounds": { + "minlat": 40.7939999, + "minlon": -74.0176140, + "maxlat": 40.7947410, + "maxlon": -74.0159949 + }, + "nodes": [ + 103861500, + 5746137769, + 103864401, + 7433092158, + 7473610407, + 440244356 + ], + "geometry": [ + { "lat": 40.7939999, "lon": -74.0159949 }, + { "lat": 40.7940295, "lon": -74.0160644 }, + { "lat": 40.7943270, "lon": -74.0167280 }, + { "lat": 40.7944855, "lon": -74.0170671 }, + { "lat": 40.7946882, "lon": -74.0175011 }, + { "lat": 40.7947410, "lon": -74.0176140 } + ], + "tags": { + "highway": "residential", + "name": "65th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "65th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630872, + "bounds": { + "minlat": 40.7935331, + "minlon": -74.0159031, + "maxlat": 40.7939601, + "maxlon": -74.0149865 + }, + "nodes": [ + 103864406, + 7674820848, + 7594316610, + 7668140043, + 103861498 + ], + "geometry": [ + { "lat": 40.7935331, "lon": -74.0149865 }, + { "lat": 40.7935587, "lon": -74.0150443 }, + { "lat": 40.7937385, "lon": -74.0154502 }, + { "lat": 40.7939265, "lon": -74.0158344 }, + { "lat": 40.7939601, "lon": -74.0159031 } + ], + "tags": { + "highway": "residential", + "name": "65th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "65th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630874, + "bounds": { + "minlat": 40.7882621, + "minlon": -74.0057413, + "maxlat": 40.7895116, + "maxlon": -74.0030433 + }, + "nodes": [ + 103864413, + 7468537602, + 7468537588, + 103864409 + ], + "geometry": [ + { "lat": 40.7895116, "lon": -74.0057413 }, + { "lat": 40.7894697, "lon": -74.0056508 }, + { "lat": 40.7883141, "lon": -74.0031556 }, + { "lat": 40.7882621, "lon": -74.0030433 } + ], + "tags": { + "highway": "residential", + "name": "65th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "65th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630888, + "bounds": { + "minlat": 40.8045046, + "minlon": -73.9937584, + "maxlat": 40.8059266, + "maxlon": -73.9931633 + }, + "nodes": [ + 103136353, + 3575303899, + 3575303900, + 103864480, + 103863707, + 103864484 + ], + "geometry": [ + { "lat": 40.8058254, "lon": -73.9931633 }, + { "lat": 40.8058701, "lon": -73.9933261 }, + { "lat": 40.8059266, "lon": -73.9934569 }, + { "lat": 40.8059137, "lon": -73.9935146 }, + { "lat": 40.8056537, "lon": -73.9935814 }, + { "lat": 40.8045046, "lon": -73.9937584 } + ], + "tags": { + "highway": "residential", + "name": "Churchill Road", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Churchill", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047" + } +}, +{ + "type": "way", + "id": 11630934, + "bounds": { + "minlat": 40.7865080, + "minlon": -74.0102284, + "maxlat": 40.7891950, + "maxlon": -74.0044520 + }, + "nodes": [ + 103860854, + 7468537503, + 7587758095, + 7468537544, + 103864939, + 7468537542, + 103864940, + 7468537541, + 103864941, + 7658692252, + 103864942, + 7658692250, + 103864943, + 7678131068, + 7658692263, + 103862603, + 7678131062, + 103864944, + 6895858590 + ], + "geometry": [ + { "lat": 40.7865080, "lon": -74.0044520 }, + { "lat": 40.7865692, "lon": -74.0045876 }, + { "lat": 40.7867448, "lon": -74.0049765 }, + { "lat": 40.7869894, "lon": -74.0055182 }, + { "lat": 40.7870224, "lon": -74.0055912 }, + { "lat": 40.7873505, "lon": -74.0062766 }, + { "lat": 40.7873839, "lon": -74.0063463 }, + { "lat": 40.7877178, "lon": -74.0070503 }, + { "lat": 40.7877625, "lon": -74.0071448 }, + { "lat": 40.7878098, "lon": -74.0072471 }, + { "lat": 40.7881320, "lon": -74.0079440 }, + { "lat": 40.7883214, "lon": -74.0083492 }, + { "lat": 40.7883560, "lon": -74.0084234 }, + { "lat": 40.7883977, "lon": -74.0085132 }, + { "lat": 40.7886825, "lon": -74.0091259 }, + { "lat": 40.7887100, "lon": -74.0091850 }, + { "lat": 40.7887600, "lon": -74.0092925 }, + { "lat": 40.7890610, "lon": -74.0099400 }, + { "lat": 40.7891950, "lon": -74.0102284 } + ], + "tags": { + "highway": "residential", + "name": "62nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "62nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630944, + "bounds": { + "minlat": 40.8106033, + "minlon": -74.0060088, + "maxlat": 40.8110274, + "maxlon": -74.0051509 + }, + "nodes": [ + 103865025, + 12456262064, + 7475993641, + 103865023 + ], + "geometry": [ + { "lat": 40.8110274, "lon": -74.0060088 }, + { "lat": 40.8109977, "lon": -74.0059488 }, + { "lat": 40.8106503, "lon": -74.0052474 }, + { "lat": 40.8106033, "lon": -74.0051509 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "91st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "91st", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630946, + "bounds": { + "minlat": 40.8111772, + "minlon": -74.0104647, + "maxlat": 40.8136254, + "maxlon": -74.0058704 + }, + "nodes": [ + 103865026, + 12456262160, + 12456261966, + 12456262018, + 103862807, + 12456223773, + 103865028, + 12456223776, + 12456261979, + 103865029, + 12456262113, + 103865031, + 12456262109, + 103865034, + 12456223797, + 12456262103, + 8219059987, + 12456223777, + 103865036 + ], + "geometry": [ + { "lat": 40.8111772, "lon": -74.0058704 }, + { "lat": 40.8112262, "lon": -74.0059643 }, + { "lat": 40.8112459, "lon": -74.0060021 }, + { "lat": 40.8115222, "lon": -74.0065317 }, + { "lat": 40.8115581, "lon": -74.0066006 }, + { "lat": 40.8119117, "lon": -74.0072629 }, + { "lat": 40.8119495, "lon": -74.0073335 }, + { "lat": 40.8122936, "lon": -74.0079712 }, + { "lat": 40.8123106, "lon": -74.0080027 }, + { "lat": 40.8123479, "lon": -74.0080719 }, + { "lat": 40.8123987, "lon": -74.0081684 }, + { "lat": 40.8128159, "lon": -74.0089619 }, + { "lat": 40.8128556, "lon": -74.0090351 }, + { "lat": 40.8132156, "lon": -74.0096988 }, + { "lat": 40.8132524, "lon": -74.0097687 }, + { "lat": 40.8134785, "lon": -74.0102000 }, + { "lat": 40.8135196, "lon": -74.0102784 }, + { "lat": 40.8135740, "lon": -74.0103741 }, + { "lat": 40.8136254, "lon": -74.0104647 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081242", + "highway": "tertiary", + "incline": "down", + "lanes": "2", + "maxspeed": "25 mph", + "name": "91st Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "91st", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11630956, + "bounds": { + "minlat": 40.7849293, + "minlon": -74.0205280, + "maxlat": 40.7854560, + "maxlon": -74.0193238 + }, + "nodes": [ + 103865104, + 7472526235, + 103865106, + 103865108 + ], + "geometry": [ + { "lat": 40.7849293, "lon": -74.0193238 }, + { "lat": 40.7849725, "lon": -74.0194241 }, + { "lat": 40.7853300, "lon": -74.0202490 }, + { "lat": 40.7854560, "lon": -74.0205280 } + ], + "tags": { + "highway": "residential", + "name": "54th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "54th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630960, + "bounds": { + "minlat": 40.7821764, + "minlon": -74.0170002, + "maxlat": 40.7842614, + "maxlon": -74.0125086 + }, + "nodes": [ + 103865127, + 7613768276, + 6977104134, + 6977104130, + 7613768274, + 103862592, + 7617907257, + 7617907261, + 103855592, + 7617907269, + 7617907271, + 103860949 + ], + "geometry": [ + { "lat": 40.7821764, "lon": -74.0125086 }, + { "lat": 40.7822196, "lon": -74.0126021 }, + { "lat": 40.7823007, "lon": -74.0127778 }, + { "lat": 40.7824048, "lon": -74.0130033 }, + { "lat": 40.7828053, "lon": -74.0138705 }, + { "lat": 40.7828466, "lon": -74.0139605 }, + { "lat": 40.7828883, "lon": -74.0140507 }, + { "lat": 40.7835051, "lon": -74.0153932 }, + { "lat": 40.7835388, "lon": -74.0154665 }, + { "lat": 40.7835853, "lon": -74.0155652 }, + { "lat": 40.7842312, "lon": -74.0169361 }, + { "lat": 40.7842614, "lon": -74.0170002 } + ], + "tags": { + "highway": "residential", + "name": "54th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "54th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630961, + "bounds": { + "minlat": 40.7841490, + "minlon": -74.0191781, + "maxlat": 40.7851207, + "maxlon": -74.0170979 + }, + "nodes": [ + 103860951, + 7617907282, + 6885754298, + 7617909886, + 103865129 + ], + "geometry": [ + { "lat": 40.7841490, "lon": -74.0170979 }, + { "lat": 40.7841899, "lon": -74.0171856 }, + { "lat": 40.7845738, "lon": -74.0180095 }, + { "lat": 40.7850645, "lon": -74.0190649 }, + { "lat": 40.7851207, "lon": -74.0191781 } + ], + "tags": { + "highway": "residential", + "name": "54th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "54th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630988, + "bounds": { + "minlat": 40.7858485, + "minlon": -74.0077095, + "maxlat": 40.7859630, + "maxlon": -74.0077038 + }, + "nodes": [ + 103864381, + 103865473 + ], + "geometry": [ + { "lat": 40.7859630, "lon": -74.0077038 }, + { "lat": 40.7858485, "lon": -74.0077095 } + ], + "tags": { + "highway": "residential", + "name": "Monitor Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Monitor", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11630999, + "bounds": { + "minlat": 40.8210390, + "minlon": -74.0133730, + "maxlat": 40.8211900, + "maxlon": -74.0127660 + }, + "nodes": [ + 103865515, + 103865517 + ], + "geometry": [ + { "lat": 40.8210390, "lon": -74.0133730 }, + { "lat": 40.8211900, "lon": -74.0127660 } + ], + "tags": { + "highway": "residential", + "name": "Lesser Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Lesser", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "59610945", + "tiger:upload_uuid": "bulk_upload.pl-632afc29-2613-4702-a9d8-dcf03687ae14", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631006, + "bounds": { + "minlat": 40.7747266, + "minlon": -74.0192014, + "maxlat": 40.7751221, + "maxlon": -74.0189068 + }, + "nodes": [ + 103865625, + 7320077959, + 103865627 + ], + "geometry": [ + { "lat": 40.7747266, "lon": -74.0192014 }, + { "lat": 40.7747771, "lon": -74.0191638 }, + { "lat": 40.7751221, "lon": -74.0189068 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Gravert Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Gravert", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11631066, + "bounds": { + "minlat": 40.7881771, + "minlon": -74.0149006, + "maxlat": 40.7905061, + "maxlon": -74.0130445 + }, + "nodes": [ + 103864122, + 7675458910, + 7675458914, + 103866039, + 7678103756, + 7678103737, + 103864949 + ], + "geometry": [ + { "lat": 40.7881771, "lon": -74.0149006 }, + { "lat": 40.7882463, "lon": -74.0148396 }, + { "lat": 40.7894644, "lon": -74.0138608 }, + { "lat": 40.7895290, "lon": -74.0138100 }, + { "lat": 40.7896012, "lon": -74.0137533 }, + { "lat": 40.7904562, "lon": -74.0130809 }, + { "lat": 40.7905061, "lon": -74.0130445 } + ], + "tags": { + "highway": "residential", + "name": "Tyler Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tyler", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631073, + "bounds": { + "minlat": 40.7787492, + "minlon": -74.0211011, + "maxlat": 40.7805258, + "maxlon": -74.0172469 + }, + "nodes": [ + 103860978, + 7387640978, + 103866061, + 103858357, + 7387640975, + 103855582, + 7387640960, + 8267580256, + 8267580230, + 8267580277, + 8267580227, + 8267580253, + 103866063, + 7387640946, + 103866064, + 7387640943, + 7387640942, + 103866065 + ], + "geometry": [ + { "lat": 40.7787492, "lon": -74.0172469 }, + { "lat": 40.7787899, "lon": -74.0173315 }, + { "lat": 40.7788315, "lon": -74.0174179 }, + { "lat": 40.7791348, "lon": -74.0180791 }, + { "lat": 40.7794163, "lon": -74.0186799 }, + { "lat": 40.7794494, "lon": -74.0187506 }, + { "lat": 40.7794924, "lon": -74.0188445 }, + { "lat": 40.7795446, "lon": -74.0189584 }, + { "lat": 40.7795798, "lon": -74.0190353 }, + { "lat": 40.7796216, "lon": -74.0191267 }, + { "lat": 40.7796299, "lon": -74.0191448 }, + { "lat": 40.7796839, "lon": -74.0192629 }, + { "lat": 40.7796910, "lon": -74.0192783 }, + { "lat": 40.7801289, "lon": -74.0202250 }, + { "lat": 40.7801649, "lon": -74.0203029 }, + { "lat": 40.7801988, "lon": -74.0203778 }, + { "lat": 40.7804933, "lon": -74.0210293 }, + { "lat": 40.7805258, "lon": -74.0211011 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09101263", + "highway": "unclassified", + "name": "47th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "47th", + "tiger:name_base_1": "County Road 680", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07087", + "tiger:zip_right": "07087" + } +}, +{ + "type": "way", + "id": 11631076, + "bounds": { + "minlat": 40.7771800, + "minlon": -74.0166152, + "maxlat": 40.7784555, + "maxlon": -74.0138247 + }, + "nodes": [ + 440243645, + 7320650739, + 7043553241, + 7320650652, + 103858345 + ], + "geometry": [ + { "lat": 40.7784555, "lon": -74.0166152 }, + { "lat": 40.7784078, "lon": -74.0165121 }, + { "lat": 40.7781204, "lon": -74.0158908 }, + { "lat": 40.7772126, "lon": -74.0139449 }, + { "lat": 40.7771800, "lon": -74.0138247 } + ], + "tags": { + "highway": "residential", + "name": "47th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "47th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11631171, + "bounds": { + "minlat": 40.7876969, + "minlon": -74.0006770, + "maxlat": 40.7878517, + "maxlon": -74.0002168 + }, + "nodes": [ + 103866875, + 308692919, + 308692920 + ], + "geometry": [ + { "lat": 40.7876969, "lon": -74.0006770 }, + { "lat": 40.7878517, "lon": -74.0005556 }, + { "lat": 40.7877011, "lon": -74.0002168 } + ], + "tags": { + "highway": "residential", + "name": "Half Moon Court", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Half Moon", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631179, + "bounds": { + "minlat": 40.8071050, + "minlon": -73.9990010, + "maxlat": 40.8079754, + "maxlon": -73.9972429 + }, + "nodes": [ + 103866912, + 5481884091, + 103177108 + ], + "geometry": [ + { "lat": 40.8071050, "lon": -73.9990010 }, + { "lat": 40.8074311, "lon": -73.9983392 }, + { "lat": 40.8079754, "lon": -73.9972429 } + ], + "tags": { + "highway": "residential", + "name": "Barr Place", + "name_1": "Baar Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Barr", + "tiger:name_base_1": "Baar", + "tiger:name_type": "Pl", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631213, + "bounds": { + "minlat": 40.7865656, + "minlon": -74.0017078, + "maxlat": 40.7868736, + "maxlon": -74.0010594 + }, + "nodes": [ + 103867117, + 103867119 + ], + "geometry": [ + { "lat": 40.7865656, "lon": -74.0010594 }, + { "lat": 40.7868736, "lon": -74.0017078 } + ], + "tags": { + "highway": "residential", + "name": "Midland Court", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Midland", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631216, + "bounds": { + "minlat": 40.8052328, + "minlon": -74.0090406, + "maxlat": 40.8071550, + "maxlon": -74.0041593 + }, + "nodes": [ + 103867155, + 7475993391, + 7475993385, + 103867153, + 103867151, + 103867149, + 103867147, + 103867144, + 103866680 + ], + "geometry": [ + { "lat": 40.8071550, "lon": -74.0090406 }, + { "lat": 40.8071089, "lon": -74.0089209 }, + { "lat": 40.8068633, "lon": -74.0082824 }, + { "lat": 40.8068337, "lon": -74.0082024 }, + { "lat": 40.8065116, "lon": -74.0074066 }, + { "lat": 40.8061996, "lon": -74.0066010 }, + { "lat": 40.8058794, "lon": -74.0058055 }, + { "lat": 40.8055603, "lon": -74.0049996 }, + { "lat": 40.8052328, "lon": -74.0041593 } + ], + "tags": { + "highway": "residential", + "name": "85th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "85th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631217, + "bounds": { + "minlat": 40.8075554, + "minlon": -74.0110677, + "maxlat": 40.8086685, + "maxlon": -74.0087758 + }, + "nodes": [ + 103867159, + 7475993442, + 103867162, + 7475993446, + 103867166 + ], + "geometry": [ + { "lat": 40.8075554, "lon": -74.0087758 }, + { "lat": 40.8076075, "lon": -74.0088871 }, + { "lat": 40.8079000, "lon": -74.0095110 }, + { "lat": 40.8086396, "lon": -74.0110090 }, + { "lat": 40.8086685, "lon": -74.0110677 } + ], + "tags": { + "highway": "residential", + "name": "85th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "85th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631218, + "bounds": { + "minlat": 40.8095666, + "minlon": -74.0178832, + "maxlat": 40.8118795, + "maxlon": -74.0141342 + }, + "nodes": [ + 103867176, + 12456223766, + 5813807539, + 8605250166, + 7991173486, + 103867178, + 103867180, + 103867182 + ], + "geometry": [ + { "lat": 40.8095666, "lon": -74.0141342 }, + { "lat": 40.8096291, "lon": -74.0142381 }, + { "lat": 40.8098062, "lon": -74.0145326 }, + { "lat": 40.8100200, "lon": -74.0148698 }, + { "lat": 40.8102654, "lon": -74.0152569 }, + { "lat": 40.8109280, "lon": -74.0163020 }, + { "lat": 40.8114417, "lon": -74.0171466 }, + { "lat": 40.8118795, "lon": -74.0178832 } + ], + "tags": { + "access": "permissive", + "foot": "yes", + "highway": "residential", + "maxspeed": "15 mph", + "motor_vehicle": "permissive", + "name": "85th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "85th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631223, + "bounds": { + "minlat": 40.8022496, + "minlon": -74.0194566, + "maxlat": 40.8027414, + "maxlon": -74.0190500 + }, + "nodes": [ + 103861485, + 103859561 + ], + "geometry": [ + { "lat": 40.8022496, "lon": -74.0194566 }, + { "lat": 40.8027414, "lon": -74.0190500 } + ], + "tags": { + "highway": "residential", + "name": "Liberty Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Liberty", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631224, + "bounds": { + "minlat": 40.8017513, + "minlon": -74.0198823, + "maxlat": 40.8021880, + "maxlon": -74.0195071 + }, + "nodes": [ + 103861206, + 103861483 + ], + "geometry": [ + { "lat": 40.8017513, "lon": -74.0198823 }, + { "lat": 40.8021880, "lon": -74.0195071 } + ], + "tags": { + "highway": "residential", + "name": "Liberty Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Liberty", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631230, + "bounds": { + "minlat": 40.8086860, + "minlon": -74.0141270, + "maxlat": 40.8105188, + "maxlon": -74.0125639 + }, + "nodes": [ + 103867273, + 103867272 + ], + "geometry": [ + { "lat": 40.8105188, "lon": -74.0125639 }, + { "lat": 40.8086860, "lon": -74.0141270 } + ], + "tags": { + "highway": "residential", + "name": "Liberty Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Liberty", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631233, + "bounds": { + "minlat": 40.8053164, + "minlon": -74.0167773, + "maxlat": 40.8058382, + "maxlon": -74.0164582 + }, + "nodes": [ + 103867303, + 103867306 + ], + "geometry": [ + { "lat": 40.8053164, "lon": -74.0167773 }, + { "lat": 40.8058382, "lon": -74.0164582 } + ], + "tags": { + "highway": "residential", + "name": "Liberty Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Liberty", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631315, + "bounds": { + "minlat": 40.7942425, + "minlon": -74.0015247, + "maxlat": 40.7949926, + "maxlon": -74.0002988 + }, + "nodes": [ + 2814557135, + 103867933, + 7468583808, + 2814557141, + 6020713003, + 7468583804, + 103867934 + ], + "geometry": [ + { "lat": 40.7942425, "lon": -74.0002988 }, + { "lat": 40.7943426, "lon": -74.0003310 }, + { "lat": 40.7944128, "lon": -74.0003639 }, + { "lat": 40.7944496, "lon": -74.0003811 }, + { "lat": 40.7946406, "lon": -74.0007705 }, + { "lat": 40.7949325, "lon": -74.0013960 }, + { "lat": 40.7949926, "lon": -74.0015247 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081168", + "highway": "tertiary", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631317, + "bounds": { + "minlat": 40.8004582, + "minlon": -74.0136730, + "maxlat": 40.8009420, + "maxlon": -74.0126387 + }, + "nodes": [ + 103867949, + 7474498822, + 8318955068, + 8318955070, + 7474498826, + 103867950 + ], + "geometry": [ + { "lat": 40.8004582, "lon": -74.0126387 }, + { "lat": 40.8004851, "lon": -74.0127019 }, + { "lat": 40.8007770, "lon": -74.0133224 }, + { "lat": 40.8008514, "lon": -74.0134778 }, + { "lat": 40.8008820, "lon": -74.0135455 }, + { "lat": 40.8009420, "lon": -74.0136730 } + ], + "tags": { + "highway": "residential", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047", + "tiger:zip_right": "07047", + "tiger:zip_right_1": "07047" + } +}, +{ + "type": "way", + "id": 11631318, + "bounds": { + "minlat": 40.8027414, + "minlon": -74.0198126, + "maxlat": 40.8030475, + "maxlon": -74.0190500 + }, + "nodes": [ + 103859561, + 13525592728, + 103867729 + ], + "geometry": [ + { "lat": 40.8027414, "lon": -74.0190500 }, + { "lat": 40.8030236, "lon": -74.0197530 }, + { "lat": 40.8030475, "lon": -74.0198126 } + ], + "tags": { + "highway": "residential", + "name": "74th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631327, + "bounds": { + "minlat": 40.7974240, + "minlon": -74.0199202, + "maxlat": 40.7995360, + "maxlon": -74.0153290 + }, + "nodes": [ + 440243574, + 7474498772, + 13830114701, + 11252572405, + 103867998, + 103862775, + 103868000, + 103868002, + 103855532, + 103868003, + 103861490 + ], + "geometry": [ + { "lat": 40.7974240, "lon": -74.0153290 }, + { "lat": 40.7974772, "lon": -74.0154385 }, + { "lat": 40.7975015, "lon": -74.0154886 }, + { "lat": 40.7976103, "lon": -74.0157126 }, + { "lat": 40.7976923, "lon": -74.0158813 }, + { "lat": 40.7980124, "lon": -74.0165409 }, + { "lat": 40.7983514, "lon": -74.0172715 }, + { "lat": 40.7987034, "lon": -74.0180125 }, + { "lat": 40.7990413, "lon": -74.0187591 }, + { "lat": 40.7991448, "lon": -74.0190125 }, + { "lat": 40.7995360, "lon": -74.0199202 } + ], + "tags": { + "highway": "tertiary", + "name": "70th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "70th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631329, + "bounds": { + "minlat": 40.7996490, + "minlon": -74.0211554, + "maxlat": 40.7998186, + "maxlon": -74.0198400 + }, + "nodes": [ + 103861492, + 103868019, + 103868020, + 103868022, + 103868024, + 103855245 + ], + "geometry": [ + { "lat": 40.7996490, "lon": -74.0198400 }, + { "lat": 40.7997410, "lon": -74.0199950 }, + { "lat": 40.7998030, "lon": -74.0201840 }, + { "lat": 40.7998186, "lon": -74.0203013 }, + { "lat": 40.7997744, "lon": -74.0206140 }, + { "lat": 40.7996642, "lon": -74.0211554 } + ], + "tags": { + "highway": "residential", + "name": "70th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "70th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631361, + "bounds": { + "minlat": 40.7810720, + "minlon": -74.0204581, + "maxlat": 40.7834503, + "maxlon": -74.0153800 + }, + "nodes": [ + 103866603, + 7613768151, + 8267580220, + 7613768155, + 103868185, + 7613768163, + 7613768165, + 103855588, + 7613768174, + 8375183338, + 7613768177, + 103862588 + ], + "geometry": [ + { "lat": 40.7834503, "lon": -74.0204581 }, + { "lat": 40.7833965, "lon": -74.0203513 }, + { "lat": 40.7825575, "lon": -74.0185436 }, + { "lat": 40.7825425, "lon": -74.0185129 }, + { "lat": 40.7824982, "lon": -74.0184148 }, + { "lat": 40.7824670, "lon": -74.0183468 }, + { "lat": 40.7818352, "lon": -74.0169701 }, + { "lat": 40.7817921, "lon": -74.0168761 }, + { "lat": 40.7817550, "lon": -74.0167992 }, + { "lat": 40.7812631, "lon": -74.0157772 }, + { "lat": 40.7811357, "lon": -74.0155124 }, + { "lat": 40.7810720, "lon": -74.0153800 } + ], + "tags": { + "highway": "residential", + "name": "51st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "51st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631366, + "bounds": { + "minlat": 40.7797440, + "minlon": -74.0138995, + "maxlat": 40.7807205, + "maxlon": -74.0118320 + }, + "nodes": [ + 440243599, + 7468512679, + 440243598, + 7468512683, + 103860811 + ], + "geometry": [ + { "lat": 40.7807205, "lon": -74.0138995 }, + { "lat": 40.7806705, "lon": -74.0137965 }, + { "lat": 40.7803045, "lon": -74.0130087 }, + { "lat": 40.7797998, "lon": -74.0119527 }, + { "lat": 40.7797440, "lon": -74.0118320 } + ], + "tags": { + "highway": "residential", + "name": "51st Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "51st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07087", + "tiger:zip_right_1": "07086", + "tiger:zip_right_2": "07087" + } +}, +{ + "type": "way", + "id": 11631369, + "bounds": { + "minlat": 40.8038482, + "minlon": -74.0172231, + "maxlat": 40.8061514, + "maxlon": -74.0118626 + }, + "nodes": [ + 103867738, + 11124378079, + 103867306, + 103868262, + 103868260, + 7474656025, + 9497611831 + ], + "geometry": [ + { "lat": 40.8061514, "lon": -74.0172231 }, + { "lat": 40.8060506, "lon": -74.0169768 }, + { "lat": 40.8058382, "lon": -74.0164582 }, + { "lat": 40.8055840, "lon": -74.0158150 }, + { "lat": 40.8052459, "lon": -74.0148642 }, + { "lat": 40.8052202, "lon": -74.0148078 }, + { "lat": 40.8038482, "lon": -74.0118626 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "79th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "79th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631370, + "bounds": { + "minlat": 40.7974366, + "minlon": -74.0012286, + "maxlat": 40.7988982, + "maxlon": -73.9980935 + }, + "nodes": [ + 103862641, + 4727867826, + 103868269, + 4727867835, + 4727867828, + 103868267 + ], + "geometry": [ + { "lat": 40.7988982, "lon": -74.0012286 }, + { "lat": 40.7988357, "lon": -74.0010938 }, + { "lat": 40.7980350, "lon": -73.9993884 }, + { "lat": 40.7979704, "lon": -73.9992567 }, + { "lat": 40.7974647, "lon": -73.9981660 }, + { "lat": 40.7974366, "lon": -73.9980935 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081245", + "highway": "tertiary", + "name": "79th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "79th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631373, + "bounds": { + "minlat": 40.8008003, + "minlon": -74.0095629, + "maxlat": 40.8014116, + "maxlon": -74.0091033 + }, + "nodes": [ + 103868331, + 7474656105, + 103868334 + ], + "geometry": [ + { "lat": 40.8008003, "lon": -74.0095629 }, + { "lat": 40.8008482, "lon": -74.0095269 }, + { "lat": 40.8014116, "lon": -74.0091033 } + ], + "tags": { + "highway": "residential", + "name": "Lucky Lane", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Lucky", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631375, + "bounds": { + "minlat": 40.7892614, + "minlon": -74.0034602, + "maxlat": 40.7898460, + "maxlon": -74.0029806 + }, + "nodes": [ + 103868355, + 7468537661, + 7468537655, + 103868352 + ], + "geometry": [ + { "lat": 40.7898460, "lon": -74.0029806 }, + { "lat": 40.7897951, "lon": -74.0030223 }, + { "lat": 40.7893167, "lon": -74.0034148 }, + { "lat": 40.7892614, "lon": -74.0034602 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "McKinley Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "McKinley", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631394, + "bounds": { + "minlat": 40.7736855, + "minlon": -74.0168863, + "maxlat": 40.7740056, + "maxlon": -74.0166561 + }, + "nodes": [ + 103868662, + 7320077906, + 103868664 + ], + "geometry": [ + { "lat": 40.7736855, "lon": -74.0168863 }, + { "lat": 40.7737231, "lon": -74.0168593 }, + { "lat": 40.7740056, "lon": -74.0166561 } + ], + "tags": { + "highway": "residential", + "name": "Burr Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Burr", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11631395, + "bounds": { + "minlat": 40.7711599, + "minlon": -74.0192526, + "maxlat": 40.7721066, + "maxlon": -74.0165229 + }, + "nodes": [ + 103868669, + 4999662175, + 7320052266, + 7320077792, + 103868667, + 4999662104, + 103861092 + ], + "geometry": [ + { "lat": 40.7714190, "lon": -74.0192526 }, + { "lat": 40.7715027, "lon": -74.0191875 }, + { "lat": 40.7720953, "lon": -74.0187391 }, + { "lat": 40.7720993, "lon": -74.0187256 }, + { "lat": 40.7721066, "lon": -74.0187008 }, + { "lat": 40.7711956, "lon": -74.0166211 }, + { "lat": 40.7711599, "lon": -74.0165229 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Duer Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Duer", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11631432, + "bounds": { + "minlat": 40.7889600, + "minlon": -74.0179840, + "maxlat": 40.7917150, + "maxlon": -74.0157510 + }, + "nodes": [ + 103864955, + 7660979641, + 7660979643, + 103869008, + 7660979570, + 7660979572, + 103864130, + 7660979489, + 7660979491, + 103869006 + ], + "geometry": [ + { "lat": 40.7917150, "lon": -74.0157510 }, + { "lat": 40.7916735, "lon": -74.0157846 }, + { "lat": 40.7905025, "lon": -74.0167333 }, + { "lat": 40.7904400, "lon": -74.0167840 }, + { "lat": 40.7903855, "lon": -74.0168283 }, + { "lat": 40.7895623, "lon": -74.0174968 }, + { "lat": 40.7895092, "lon": -74.0175399 }, + { "lat": 40.7894514, "lon": -74.0175867 }, + { "lat": 40.7890024, "lon": -74.0179497 }, + { "lat": 40.7889600, "lon": -74.0179840 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631433, + "bounds": { + "minlat": 40.7854560, + "minlon": -74.0205280, + "maxlat": 40.7861379, + "maxlon": -74.0199955 + }, + "nodes": [ + 103865108, + 7617909911, + 4567888757, + 7617909907, + 103869013 + ], + "geometry": [ + { "lat": 40.7854560, "lon": -74.0205280 }, + { "lat": 40.7855091, "lon": -74.0204865 }, + { "lat": 40.7858535, "lon": -74.0202176 }, + { "lat": 40.7860908, "lon": -74.0200323 }, + { "lat": 40.7861379, "lon": -74.0199955 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631434, + "bounds": { + "minlat": 40.7915435, + "minlon": -74.0153599, + "maxlat": 40.7934181, + "maxlon": -74.0139038 + }, + "nodes": [ + 103864954, + 7668140040, + 7668140038, + 103869025, + 6021713790 + ], + "geometry": [ + { "lat": 40.7915435, "lon": -74.0153599 }, + { "lat": 40.7916012, "lon": -74.0153156 }, + { "lat": 40.7927283, "lon": -74.0144492 }, + { "lat": 40.7927580, "lon": -74.0144276 }, + { "lat": 40.7934181, "lon": -74.0139038 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631435, + "bounds": { + "minlat": 40.7946924, + "minlon": -74.0131626, + "maxlat": 40.7952126, + "maxlon": -74.0127378 + }, + "nodes": [ + 103869033, + 7674820837, + 103869035 + ], + "geometry": [ + { "lat": 40.7946924, "lon": -74.0131626 }, + { "lat": 40.7951583, "lon": -74.0127821 }, + { "lat": 40.7952126, "lon": -74.0127378 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631452, + "bounds": { + "minlat": 40.7899786, + "minlon": -74.0118736, + "maxlat": 40.7948030, + "maxlon": -74.0015556 + }, + "nodes": [ + 440244404, + 7468537687, + 7468537693, + 103869195, + 7468537690, + 7468537699, + 103869196, + 7658692323, + 7658692327, + 103862616, + 7678243091, + 13373230708, + 7678243089, + 103855694, + 7678243086, + 103869200, + 7678242777, + 7513096689, + 7678242776, + 103866644 + ], + "geometry": [ + { "lat": 40.7899786, "lon": -74.0015556 }, + { "lat": 40.7900307, "lon": -74.0016633 }, + { "lat": 40.7904030, "lon": -74.0024520 }, + { "lat": 40.7904300, "lon": -74.0025092 }, + { "lat": 40.7904773, "lon": -74.0026113 }, + { "lat": 40.7912289, "lon": -74.0042339 }, + { "lat": 40.7912720, "lon": -74.0043062 }, + { "lat": 40.7913038, "lon": -74.0043746 }, + { "lat": 40.7922524, "lon": -74.0064168 }, + { "lat": 40.7923144, "lon": -74.0065502 }, + { "lat": 40.7923526, "lon": -74.0066321 }, + { "lat": 40.7926293, "lon": -74.0072249 }, + { "lat": 40.7931209, "lon": -74.0082782 }, + { "lat": 40.7931425, "lon": -74.0083259 }, + { "lat": 40.7939365, "lon": -74.0100305 }, + { "lat": 40.7939644, "lon": -74.0100904 }, + { "lat": 40.7940023, "lon": -74.0101693 }, + { "lat": 40.7941724, "lon": -74.0105234 }, + { "lat": 40.7947491, "lon": -74.0117582 }, + { "lat": 40.7948030, "lon": -74.0118736 } + ], + "tags": { + "highway": "residential", + "name": "68th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "68th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631453, + "bounds": { + "minlat": 40.7982500, + "minlon": -74.0205650, + "maxlat": 40.7986570, + "maxlon": -74.0197540 + }, + "nodes": [ + 103869210, + 8374378210, + 8374378213, + 7070917008, + 103869212 + ], + "geometry": [ + { "lat": 40.7986570, "lon": -74.0205650 }, + { "lat": 40.7985350, "lon": -74.0203219 }, + { "lat": 40.7984212, "lon": -74.0200952 }, + { "lat": 40.7982974, "lon": -74.0198484 }, + { "lat": 40.7982500, "lon": -74.0197540 } + ], + "tags": { + "highway": "residential", + "name": "68th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "68th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631454, + "bounds": { + "minlat": 40.8032093, + "minlon": -73.9961787, + "maxlat": 40.8040613, + "maxlon": -73.9960434 + }, + "nodes": [ + 103869216, + 5671083038, + 103869218, + 5671083046, + 5034528847, + 103869220, + 103861215 + ], + "geometry": [ + { "lat": 40.8032093, "lon": -73.9960920 }, + { "lat": 40.8033062, "lon": -73.9960788 }, + { "lat": 40.8034844, "lon": -73.9960544 }, + { "lat": 40.8035008, "lon": -73.9960529 }, + { "lat": 40.8036087, "lon": -73.9960434 }, + { "lat": 40.8037727, "lon": -73.9960786 }, + { "lat": 40.8040613, "lon": -73.9961787 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081243", + "highway": "secondary", + "name": "Woodcliff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Woodcliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11631484, + "bounds": { + "minlat": 40.7856028, + "minlon": -74.0025053, + "maxlat": 40.7859131, + "maxlon": -74.0018412 + }, + "nodes": [ + 103869525, + 103869527 + ], + "geometry": [ + { "lat": 40.7856028, "lon": -74.0018412 }, + { "lat": 40.7859131, "lon": -74.0025053 } + ], + "tags": { + "highway": "residential", + "name": "Kingston Court", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Kingston", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631518, + "bounds": { + "minlat": 40.7838424, + "minlon": -74.0177600, + "maxlat": 40.7869968, + "maxlon": -74.0108944 + }, + "nodes": [ + 103866626, + 7657469009, + 7226569129, + 7657469007, + 103869668, + 7657469013, + 7657469015, + 103855595, + 7617909982, + 5762652707, + 7617909984, + 103862598, + 7658684748, + 4499303042, + 7072202599, + 7078955413, + 7658684746, + 103869667 + ], + "geometry": [ + { "lat": 40.7869968, "lon": -74.0177600 }, + { "lat": 40.7869488, "lon": -74.0176463 }, + { "lat": 40.7865794, "lon": -74.0168135 }, + { "lat": 40.7860614, "lon": -74.0156878 }, + { "lat": 40.7860248, "lon": -74.0156083 }, + { "lat": 40.7859791, "lon": -74.0155095 }, + { "lat": 40.7853514, "lon": -74.0141507 }, + { "lat": 40.7853065, "lon": -74.0140534 }, + { "lat": 40.7852707, "lon": -74.0139799 }, + { "lat": 40.7848095, "lon": -74.0130323 }, + { "lat": 40.7846360, "lon": -74.0126515 }, + { "lat": 40.7845952, "lon": -74.0125635 }, + { "lat": 40.7845539, "lon": -74.0124737 }, + { "lat": 40.7844348, "lon": -74.0122147 }, + { "lat": 40.7840305, "lon": -74.0113135 }, + { "lat": 40.7839947, "lon": -74.0112337 }, + { "lat": 40.7838888, "lon": -74.0109978 }, + { "lat": 40.7838424, "lon": -74.0108944 } + ], + "tags": { + "highway": "residential", + "name": "57th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "57th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631519, + "bounds": { + "minlat": 40.7869199, + "minlon": -74.0188925, + "maxlat": 40.7874354, + "maxlon": -74.0178190 + }, + "nodes": [ + 103869019, + 7657468992, + 103866624 + ], + "geometry": [ + { "lat": 40.7874354, "lon": -74.0188925 }, + { "lat": 40.7869697, "lon": -74.0179317 }, + { "lat": 40.7869199, "lon": -74.0178190 } + ], + "tags": { + "highway": "residential", + "name": "57th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "57th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631527, + "bounds": { + "minlat": 40.7774170, + "minlon": -74.0194674, + "maxlat": 40.7791348, + "maxlon": -74.0180791 + }, + "nodes": [ + 103869773, + 7387632528, + 8267580258, + 8267580232, + 8267538504, + 7387632529, + 103858357 + ], + "geometry": [ + { "lat": 40.7774170, "lon": -74.0194674 }, + { "lat": 40.7774788, "lon": -74.0194174 }, + { "lat": 40.7776712, "lon": -74.0192619 }, + { "lat": 40.7781955, "lon": -74.0188382 }, + { "lat": 40.7787245, "lon": -74.0184107 }, + { "lat": 40.7790812, "lon": -74.0181224 }, + { "lat": 40.7791348, "lon": -74.0180791 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Brown Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Brown", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07087", + "tiger:zip_right": "07087" + } +}, +{ + "type": "way", + "id": 11631538, + "bounds": { + "minlat": 40.7904300, + "minlon": -74.0025092, + "maxlat": 40.7917360, + "maxlon": -74.0014623 + }, + "nodes": [ + 103867982, + 7468583728, + 2794665250, + 7468583712, + 103855252, + 7468583694, + 2794665249, + 7468583696, + 103869195 + ], + "geometry": [ + { "lat": 40.7917360, "lon": -74.0014623 }, + { "lat": 40.7916901, "lon": -74.0014993 }, + { "lat": 40.7912158, "lon": -74.0018820 }, + { "lat": 40.7911963, "lon": -74.0018983 }, + { "lat": 40.7911498, "lon": -74.0019373 }, + { "lat": 40.7911010, "lon": -74.0019758 }, + { "lat": 40.7905122, "lon": -74.0024405 }, + { "lat": 40.7904895, "lon": -74.0024595 }, + { "lat": 40.7904300, "lon": -74.0025092 } + ], + "tags": { + "highway": "residential", + "name": "Bellevue Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bellevue", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631553, + "bounds": { + "minlat": 40.7879221, + "minlon": -73.9999546, + "maxlat": 40.7881689, + "maxlon": -73.9993823 + }, + "nodes": [ + 103870016, + 103870019 + ], + "geometry": [ + { "lat": 40.7881689, "lon": -73.9999546 }, + { "lat": 40.7879221, "lon": -73.9993823 } + ], + "tags": { + "highway": "residential", + "name": "Slaugh Court", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Slaugh", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631589, + "bounds": { + "minlat": 40.7885579, + "minlon": -74.0000240, + "maxlat": 40.7887328, + "maxlon": -73.9996381 + }, + "nodes": [ + 103870176, + 103870178, + 103870180 + ], + "geometry": [ + { "lat": 40.7885579, "lon": -73.9996381 }, + { "lat": 40.7886330, "lon": -73.9998037 }, + { "lat": 40.7887328, "lon": -74.0000240 } + ], + "tags": { + "highway": "residential", + "name": "Price Crescent", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Price", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "59610313:59610314", + "tiger:upload_uuid": "bulk_upload.pl-632afc29-2613-4702-a9d8-dcf03687ae14" + } +}, +{ + "type": "way", + "id": 11631590, + "bounds": { + "minlat": 40.7886330, + "minlon": -73.9998037, + "maxlat": 40.7891400, + "maxlon": -73.9994052 + }, + "nodes": [ + 103870185, + 103870178 + ], + "geometry": [ + { "lat": 40.7891400, "lon": -73.9994052 }, + { "lat": 40.7886330, "lon": -73.9998037 } + ], + "tags": { + "highway": "residential", + "name": "Price Crescent", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Price", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "59610315", + "tiger:upload_uuid": "bulk_upload.pl-632afc29-2613-4702-a9d8-dcf03687ae14", + "tiger:zip_left": "07093", + "tiger:zip_left_1": "07093", + "tiger:zip_right": "07093", + "tiger:zip_right_1": "07093" + } +}, +{ + "type": "way", + "id": 11631621, + "bounds": { + "minlat": 40.7765265, + "minlon": -74.0173321, + "maxlat": 40.7780003, + "maxlon": -74.0141105 + }, + "nodes": [ + 103858344, + 7320650714, + 103862863, + 7320650712, + 5909817466, + 440243646 + ], + "geometry": [ + { "lat": 40.7765265, "lon": -74.0141105 }, + { "lat": 40.7765774, "lon": -74.0142217 }, + { "lat": 40.7768741, "lon": -74.0148703 }, + { "lat": 40.7769098, "lon": -74.0149482 }, + { "lat": 40.7779584, "lon": -74.0172394 }, + { "lat": 40.7780003, "lon": -74.0173321 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "46th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "46th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11631627, + "bounds": { + "minlat": 40.7682391, + "minlon": -74.0194620, + "maxlat": 40.7683518, + "maxlon": -74.0192067 + }, + "nodes": [ + 103870332, + 103864076 + ], + "geometry": [ + { "lat": 40.7682391, "lon": -74.0192067 }, + { "lat": 40.7683518, "lon": -74.0194620 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bellevue Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bellevue", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11631644, + "bounds": { + "minlat": 40.7790686, + "minlon": -74.0122300, + "maxlat": 40.7797440, + "maxlon": -74.0118320 + }, + "nodes": [ + 103860806, + 7468512665, + 103870402, + 7468512681, + 103860811 + ], + "geometry": [ + { "lat": 40.7790686, "lon": -74.0122300 }, + { "lat": 40.7791350, "lon": -74.0121853 }, + { "lat": 40.7794123, "lon": -74.0119983 }, + { "lat": 40.7797164, "lon": -74.0118458 }, + { "lat": 40.7797440, "lon": -74.0118320 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 11631652, + "bounds": { + "minlat": 40.7924074, + "minlon": -74.0015560, + "maxlat": 40.7938573, + "maxlon": -74.0008696 + }, + "nodes": [ + 752619861, + 752619862, + 752619866, + 7468539776, + 103870410, + 103870412, + 103870415, + 13014750031, + 103870420, + 440243577, + 103870426, + 103870428, + 103870430, + 5482013271, + 103870432, + 2814557118, + 7468539753, + 103870434 + ], + "geometry": [ + { "lat": 40.7924074, "lon": -74.0011216 }, + { "lat": 40.7925074, "lon": -74.0012570 }, + { "lat": 40.7925806, "lon": -74.0013781 }, + { "lat": 40.7926177, "lon": -74.0014218 }, + { "lat": 40.7926788, "lon": -74.0014937 }, + { "lat": 40.7927527, "lon": -74.0015280 }, + { "lat": 40.7928336, "lon": -74.0015512 }, + { "lat": 40.7928534, "lon": -74.0015520 }, + { "lat": 40.7929500, "lon": -74.0015560 }, + { "lat": 40.7929730, "lon": -74.0015420 }, + { "lat": 40.7930100, "lon": -74.0015200 }, + { "lat": 40.7930910, "lon": -74.0014610 }, + { "lat": 40.7932821, "lon": -74.0013175 }, + { "lat": 40.7933827, "lon": -74.0012338 }, + { "lat": 40.7936997, "lon": -74.0009827 }, + { "lat": 40.7937709, "lon": -74.0009290 }, + { "lat": 40.7937966, "lon": -74.0009113 }, + { "lat": 40.7938573, "lon": -74.0008696 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 11631656, + "bounds": { + "minlat": 40.8061559, + "minlon": -74.0017836, + "maxlat": 40.8064869, + "maxlon": -74.0013673 + }, + "nodes": [ + 103870495, + 103870528, + 103870526 + ], + "geometry": [ + { "lat": 40.8061559, "lon": -74.0013673 }, + { "lat": 40.8062975, "lon": -74.0015617 }, + { "lat": 40.8064869, "lon": -74.0017836 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "turn:lanes:backward": "through", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 11631786, + "bounds": { + "minlat": 40.7751189, + "minlon": -74.0186871, + "maxlat": 40.7770437, + "maxlon": -74.0144217 + }, + "nodes": [ + 103858748, + 7320650646, + 103862859, + 7320650668, + 103872219, + 7293124774, + 440243649 + ], + "geometry": [ + { "lat": 40.7751189, "lon": -74.0144217 }, + { "lat": 40.7751718, "lon": -74.0145387 }, + { "lat": 40.7757195, "lon": -74.0157489 }, + { "lat": 40.7757556, "lon": -74.0158289 }, + { "lat": 40.7759782, "lon": -74.0163225 }, + { "lat": 40.7770019, "lon": -74.0185984 }, + { "lat": 40.7770437, "lon": -74.0186871 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Fulton Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Fulton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11631802, + "bounds": { + "minlat": 40.7897950, + "minlon": -74.0102734, + "maxlat": 40.7900036, + "maxlon": -74.0097940 + }, + "nodes": [ + 103855609, + 7678131155, + 103872294 + ], + "geometry": [ + { "lat": 40.7900036, "lon": -74.0102734 }, + { "lat": 40.7899755, "lon": -74.0102087 }, + { "lat": 40.7897950, "lon": -74.0097940 } + ], + "tags": { + "highway": "residential", + "name": "63rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "63rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631804, + "bounds": { + "minlat": 40.7907711, + "minlon": -74.0141020, + "maxlat": 40.7918340, + "maxlon": -74.0117850 + }, + "nodes": [ + 103866634, + 7678131076, + 7678131115, + 103872299 + ], + "geometry": [ + { "lat": 40.7918340, "lon": -74.0141020 }, + { "lat": 40.7917897, "lon": -74.0140055 }, + { "lat": 40.7908149, "lon": -74.0118805 }, + { "lat": 40.7907711, "lon": -74.0117850 } + ], + "tags": { + "highway": "residential", + "name": "63rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "63rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631805, + "bounds": { + "minlat": 40.7937503, + "minlon": -74.0196299, + "maxlat": 40.7939443, + "maxlon": -74.0192152 + }, + "nodes": [ + 103872301, + 7473610342, + 13778610807, + 103862769 + ], + "geometry": [ + { "lat": 40.7937503, "lon": -74.0192152 }, + { "lat": 40.7938037, "lon": -74.0193293 }, + { "lat": 40.7938056, "lon": -74.0193334 }, + { "lat": 40.7939443, "lon": -74.0196299 } + ], + "tags": { + "highway": "residential", + "name": "63rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "63rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631833, + "bounds": { + "minlat": 40.7686222, + "minlon": -74.0212310, + "maxlat": 40.7711763, + "maxlon": -74.0199868 + }, + "nodes": [ + 6841059183, + 6841059179, + 103858580, + 752550079, + 2848903451, + 4999662203, + 103872492, + 10950063314, + 6179324133, + 10950063312, + 10950063313, + 103872494, + 103872496, + 10949975342, + 10949975343, + 103872498, + 10949975344, + 10949975345, + 4205818425 + ], + "geometry": [ + { "lat": 40.7686222, "lon": -74.0212310 }, + { "lat": 40.7689153, "lon": -74.0211744 }, + { "lat": 40.7697454, "lon": -74.0210124 }, + { "lat": 40.7701875, "lon": -74.0209196 }, + { "lat": 40.7702272, "lon": -74.0209113 }, + { "lat": 40.7704777, "lon": -74.0208589 }, + { "lat": 40.7706320, "lon": -74.0207870 }, + { "lat": 40.7707155, "lon": -74.0207269 }, + { "lat": 40.7707634, "lon": -74.0206862 }, + { "lat": 40.7708105, "lon": -74.0206381 }, + { "lat": 40.7708499, "lon": -74.0205946 }, + { "lat": 40.7708875, "lon": -74.0205487 }, + { "lat": 40.7709236, "lon": -74.0205005 }, + { "lat": 40.7709574, "lon": -74.0204472 }, + { "lat": 40.7709904, "lon": -74.0203870 }, + { "lat": 40.7710212, "lon": -74.0203268 }, + { "lat": 40.7710501, "lon": -74.0202657 }, + { "lat": 40.7710899, "lon": -74.0201790 }, + { "lat": 40.7711763, "lon": -74.0199868 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09111121", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "source": "bing", + "surface": "asphalt", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 11631845, + "bounds": { + "minlat": 40.8107484, + "minlon": -74.0110466, + "maxlat": 40.8111033, + "maxlon": -74.0103165 + }, + "nodes": [ + 103872647, + 103872649 + ], + "geometry": [ + { "lat": 40.8107484, "lon": -74.0103165 }, + { "lat": 40.8111033, "lon": -74.0110466 } + ], + "tags": { + "highway": "residential", + "name": "88th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "88th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631848, + "bounds": { + "minlat": 40.8102600, + "minlon": -74.0104380, + "maxlat": 40.8106060, + "maxlon": -74.0096950 + }, + "nodes": [ + 103872664, + 103872663 + ], + "geometry": [ + { "lat": 40.8106060, "lon": -74.0104380 }, + { "lat": 40.8102600, "lon": -74.0096950 } + ], + "tags": { + "highway": "residential", + "name": "88th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "88th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631850, + "bounds": { + "minlat": 40.8116965, + "minlon": -74.0144297, + "maxlat": 40.8124939, + "maxlon": -74.0122240 + }, + "nodes": [ + 103867747, + 5994285495, + 5994285484, + 5994285485, + 5994285483, + 5994285411, + 4555440912, + 5994285492, + 5994285491, + 5994285489, + 5994285487, + 103872668 + ], + "geometry": [ + { "lat": 40.8116965, "lon": -74.0122240 }, + { "lat": 40.8117546, "lon": -74.0123602 }, + { "lat": 40.8117843, "lon": -74.0124290 }, + { "lat": 40.8119061, "lon": -74.0128259 }, + { "lat": 40.8119853, "lon": -74.0131304 }, + { "lat": 40.8120353, "lon": -74.0133110 }, + { "lat": 40.8120765, "lon": -74.0134594 }, + { "lat": 40.8121595, "lon": -74.0136575 }, + { "lat": 40.8122424, "lon": -74.0138489 }, + { "lat": 40.8123287, "lon": -74.0140482 }, + { "lat": 40.8124087, "lon": -74.0142330 }, + { "lat": 40.8124939, "lon": -74.0144297 } + ], + "tags": { + "highway": "unclassified", + "name": "88th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 11631929, + "bounds": { + "minlat": 40.7996541, + "minlon": -73.9958291, + "maxlat": 40.8018714, + "maxlon": -73.9947563 + }, + "nodes": [ + 103864255, + 752619011, + 752619012, + 752619013, + 752619014, + 3448067887, + 3448068193, + 3575305193, + 3448067892, + 3448067891, + 3448067890, + 3448067889, + 3448067888, + 3448067886, + 752619014 + ], + "geometry": [ + { "lat": 40.7996541, "lon": -73.9955556 }, + { "lat": 40.7997495, "lon": -73.9957460 }, + { "lat": 40.7997901, "lon": -73.9958184 }, + { "lat": 40.7998713, "lon": -73.9958291 }, + { "lat": 40.8011692, "lon": -73.9952555 }, + { "lat": 40.8013511, "lon": -73.9953479 }, + { "lat": 40.8018353, "lon": -73.9951310 }, + { "lat": 40.8018714, "lon": -73.9950890 }, + { "lat": 40.8018645, "lon": -73.9949023 }, + { "lat": 40.8018300, "lon": -73.9947770 }, + { "lat": 40.8016790, "lon": -73.9947563 }, + { "lat": 40.8014579, "lon": -73.9948107 }, + { "lat": 40.8014044, "lon": -73.9948489 }, + { "lat": 40.8012349, "lon": -73.9950484 }, + { "lat": 40.8011692, "lon": -73.9952555 } + ], + "tags": { + "highway": "residential", + "name": "Bergen Ridge Road", + "tiger:cfcc": "A74", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergen Ridge", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047", + "tiger:zip_left_2": "07047", + "tiger:zip_left_3": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631936, + "bounds": { + "minlat": 40.7932821, + "minlon": -74.0045499, + "maxlat": 40.7947971, + "maxlon": -74.0013175 + }, + "nodes": [ + 103870430, + 7468583777, + 7468583775, + 103873526, + 7678472844, + 7678472856, + 103862628 + ], + "geometry": [ + { "lat": 40.7932821, "lon": -74.0013175 }, + { "lat": 40.7933297, "lon": -74.0014328 }, + { "lat": 40.7937169, "lon": -74.0022352 }, + { "lat": 40.7937815, "lon": -74.0023775 }, + { "lat": 40.7938195, "lon": -74.0024601 }, + { "lat": 40.7947365, "lon": -74.0044313 }, + { "lat": 40.7947971, "lon": -74.0045499 } + ], + "tags": { + "highway": "residential", + "name": "72nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "72nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631938, + "bounds": { + "minlat": 40.7989706, + "minlon": -74.0157748, + "maxlat": 40.7994349, + "maxlon": -74.0148029 + }, + "nodes": [ + 103872895, + 7474498778, + 7474498922 + ], + "geometry": [ + { "lat": 40.7989706, "lon": -74.0148029 }, + { "lat": 40.7990187, "lon": -74.0149033 }, + { "lat": 40.7994349, "lon": -74.0157748 } + ], + "tags": { + "highway": "service", + "name": "Kelly Lane", + "oneway": "no", + "service": "alley", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "72nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631939, + "bounds": { + "minlat": 40.8011540, + "minlon": -74.0198823, + "maxlat": 40.8017513, + "maxlon": -74.0184608 + }, + "nodes": [ + 103861206, + 103873549, + 103873547, + 103873545 + ], + "geometry": [ + { "lat": 40.8017513, "lon": -74.0198823 }, + { "lat": 40.8015716, "lon": -74.0195259 }, + { "lat": 40.8013798, "lon": -74.0189389 }, + { "lat": 40.8011540, "lon": -74.0184608 } + ], + "tags": { + "highway": "residential", + "name": "72nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "72nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631942, + "bounds": { + "minlat": 40.7992789, + "minlon": -74.0105941, + "maxlat": 40.8007390, + "maxlon": -74.0094362 + }, + "nodes": [ + 103867938, + 7678636789, + 7678636824, + 103873559 + ], + "geometry": [ + { "lat": 40.7992789, "lon": -74.0105941 }, + { "lat": 40.7993229, "lon": -74.0105592 }, + { "lat": 40.8006835, "lon": -74.0094802 }, + { "lat": 40.8007390, "lon": -74.0094362 } + ], + "tags": { + "highway": "residential", + "name": "2nd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631943, + "bounds": { + "minlat": 40.8020487, + "minlon": -74.0085848, + "maxlat": 40.8025235, + "maxlon": -74.0082005 + }, + "nodes": [ + 103873565, + 7474656139, + 103868242, + 5344617806 + ], + "geometry": [ + { "lat": 40.8020487, "lon": -74.0085848 }, + { "lat": 40.8024166, "lon": -74.0082870 }, + { "lat": 40.8024593, "lon": -74.0082525 }, + { "lat": 40.8025235, "lon": -74.0082005 } + ], + "tags": { + "highway": "residential", + "name": "2nd Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631944, + "bounds": { + "minlat": 40.8030964, + "minlon": -74.0076929, + "maxlat": 40.8036414, + "maxlon": -74.0073051 + }, + "nodes": [ + 103873570, + 103873572 + ], + "geometry": [ + { "lat": 40.8030964, "lon": -74.0076929 }, + { "lat": 40.8036414, "lon": -74.0073051 } + ], + "tags": { + "highway": "residential", + "name": "2nd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11631957, + "bounds": { + "minlat": 40.7870595, + "minlon": -74.0012680, + "maxlat": 40.7873421, + "maxlon": -74.0006877 + }, + "nodes": [ + 103873653, + 103873654 + ], + "geometry": [ + { "lat": 40.7870595, "lon": -74.0006877 }, + { "lat": 40.7873421, "lon": -74.0012680 } + ], + "tags": { + "highway": "residential", + "name": "Roslyn Court", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Roslyn", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11631989, + "bounds": { + "minlat": 40.7856034, + "minlon": -74.0069567, + "maxlat": 40.7870224, + "maxlon": -74.0055912 + }, + "nodes": [ + 103864939, + 7468537505, + 7468537508, + 103870534 + ], + "geometry": [ + { "lat": 40.7870224, "lon": -74.0055912 }, + { "lat": 40.7869891, "lon": -74.0056234 }, + { "lat": 40.7856816, "lon": -74.0068889 }, + { "lat": 40.7856034, "lon": -74.0069567 } + ], + "tags": { + "highway": "residential", + "name": "Highland Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Highland", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632020, + "bounds": { + "minlat": 40.7740964, + "minlon": -74.0178062, + "maxlat": 40.7759782, + "maxlon": -74.0163225 + }, + "nodes": [ + 103872219, + 7320650624, + 7320650620, + 103874034, + 7320650605, + 7320650585, + 103874030, + 7320622353, + 7320077934, + 103874028 + ], + "geometry": [ + { "lat": 40.7759782, "lon": -74.0163225 }, + { "lat": 40.7759176, "lon": -74.0163700 }, + { "lat": 40.7754267, "lon": -74.0167554 }, + { "lat": 40.7753686, "lon": -74.0168010 }, + { "lat": 40.7753183, "lon": -74.0168406 }, + { "lat": 40.7748246, "lon": -74.0172295 }, + { "lat": 40.7747727, "lon": -74.0172704 }, + { "lat": 40.7747218, "lon": -74.0173107 }, + { "lat": 40.7741444, "lon": -74.0177681 }, + { "lat": 40.7740964, "lon": -74.0178062 } + ], + "tags": { + "highway": "residential", + "name": "Potter Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Potter", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07087", + "tiger:zip_right_1": "07086" + } +}, +{ + "type": "way", + "id": 11632026, + "bounds": { + "minlat": 40.7897815, + "minlon": -74.0115045, + "maxlat": 40.7904197, + "maxlon": -74.0110669 + }, + "nodes": [ + 4509847526, + 7678131083, + 103874053, + 4509847525, + 4509847522, + 7678131092, + 103864946 + ], + "geometry": [ + { "lat": 40.7904197, "lon": -74.0112382 }, + { "lat": 40.7903663, "lon": -74.0111248 }, + { "lat": 40.7903390, "lon": -74.0110669 }, + { "lat": 40.7903158, "lon": -74.0110779 }, + { "lat": 40.7900890, "lon": -74.0112590 }, + { "lat": 40.7898544, "lon": -74.0114463 }, + { "lat": 40.7897815, "lon": -74.0115045 } + ], + "tags": { + "highway": "residential", + "name": "Monroe Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Monroe", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632065, + "bounds": { + "minlat": 40.7860789, + "minlon": -74.0021020, + "maxlat": 40.7863892, + "maxlon": -74.0014528 + }, + "nodes": [ + 103874351, + 103874353 + ], + "geometry": [ + { "lat": 40.7860789, "lon": -74.0014528 }, + { "lat": 40.7863892, "lon": -74.0021020 } + ], + "tags": { + "highway": "residential", + "name": "Oswego Court", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Oswego", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632101, + "bounds": { + "minlat": 40.8052152, + "minlon": -73.9950877, + "maxlat": 40.8053879, + "maxlon": -73.9947830 + }, + "nodes": [ + 103874476, + 752618727 + ], + "geometry": [ + { "lat": 40.8052152, "lon": -73.9947830 }, + { "lat": 40.8053879, "lon": -73.9950877 } + ], + "tags": { + "highway": "residential", + "name": "Valley Road", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Valley", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "59607729:59609277", + "tiger:upload_uuid": "bulk_upload.pl-632afc29-2613-4702-a9d8-dcf03687ae14", + "tiger:zip_left": "07047" + } +}, +{ + "type": "way", + "id": 11632188, + "bounds": { + "minlat": 40.7996490, + "minlon": -74.0198400, + "maxlat": 40.8006994, + "maxlon": -74.0190375 + }, + "nodes": [ + 103861492, + 103875588 + ], + "geometry": [ + { "lat": 40.7996490, "lon": -74.0198400 }, + { "lat": 40.8006994, "lon": -74.0190375 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632189, + "bounds": { + "minlat": 40.8011540, + "minlon": -74.0184608, + "maxlat": 40.8016778, + "maxlon": -74.0180178 + }, + "nodes": [ + 103873545, + 103859565 + ], + "geometry": [ + { "lat": 40.8011540, "lon": -74.0184608 }, + { "lat": 40.8016778, "lon": -74.0180178 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632194, + "bounds": { + "minlat": 40.8080156, + "minlon": -74.0126504, + "maxlat": 40.8106060, + "maxlon": -74.0104380 + }, + "nodes": [ + 103875620, + 103867168, + 103875624, + 103872664 + ], + "geometry": [ + { "lat": 40.8080156, "lon": -74.0126504 }, + { "lat": 40.8090243, "lon": -74.0117965 }, + { "lat": 40.8097990, "lon": -74.0111310 }, + { "lat": 40.8106060, "lon": -74.0104380 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047" + } +}, +{ + "type": "way", + "id": 11632195, + "bounds": { + "minlat": 40.8118618, + "minlon": -74.0096548, + "maxlat": 40.8128159, + "maxlon": -74.0089619 + }, + "nodes": [ + 12456262141, + 11080435626, + 103875635, + 12456223792, + 103865031 + ], + "geometry": [ + { "lat": 40.8118618, "lon": -74.0096548 }, + { "lat": 40.8118844, "lon": -74.0096452 }, + { "lat": 40.8124819, "lon": -74.0092793 }, + { "lat": 40.8127659, "lon": -74.0090095 }, + { "lat": 40.8128159, "lon": -74.0089619 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11632204, + "bounds": { + "minlat": 40.8047075, + "minlon": -74.0152109, + "maxlat": 40.8058688, + "maxlon": -74.0144742 + }, + "nodes": [ + 103875662, + 7474656021, + 7474656023, + 103868260, + 7474656043, + 7474656045, + 103875664 + ], + "geometry": [ + { "lat": 40.8047075, "lon": -74.0152109 }, + { "lat": 40.8047511, "lon": -74.0151824 }, + { "lat": 40.8051934, "lon": -74.0148933 }, + { "lat": 40.8052459, "lon": -74.0148642 }, + { "lat": 40.8053005, "lon": -74.0148337 }, + { "lat": 40.8058071, "lon": -74.0145132 }, + { "lat": 40.8058688, "lon": -74.0144742 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632232, + "bounds": { + "minlat": 40.8204765, + "minlon": -74.0137080, + "maxlat": 40.8217330, + "maxlon": -74.0130976 + }, + "nodes": [ + 103875814, + 103865515, + 103861199, + 103875815 + ], + "geometry": [ + { "lat": 40.8204765, "lon": -74.0130976 }, + { "lat": 40.8210390, "lon": -74.0133730 }, + { "lat": 40.8215170, "lon": -74.0136040 }, + { "lat": 40.8217330, "lon": -74.0137080 } + ], + "tags": { + "highway": "residential", + "name": "95th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "95th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "59611739:59611740:59597969", + "tiger:upload_uuid": "bulk_upload.pl-632afc29-2613-4702-a9d8-dcf03687ae14", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632277, + "bounds": { + "minlat": 40.7860542, + "minlon": -74.0196332, + "maxlat": 40.7866019, + "maxlon": -74.0184739 + }, + "nodes": [ + 103869015, + 7657468927, + 7657468921, + 103866610 + ], + "geometry": [ + { "lat": 40.7866019, "lon": -74.0196332 }, + { "lat": 40.7865828, "lon": -74.0195927 }, + { "lat": 40.7861010, "lon": -74.0185729 }, + { "lat": 40.7860542, "lon": -74.0184739 } + ], + "tags": { + "highway": "service", + "name": "Schley Place", + "oneway": "yes", + "service": "alley", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Schley", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632306, + "bounds": { + "minlat": 40.7702890, + "minlon": -74.0200910, + "maxlat": 40.7714190, + "maxlon": -74.0192526 + }, + "nodes": [ + 4999662154, + 5474425688, + 103868669 + ], + "geometry": [ + { "lat": 40.7702890, "lon": -74.0200910 }, + { "lat": 40.7712913, "lon": -74.0193410 }, + { "lat": 40.7714190, "lon": -74.0192526 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Parkview Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Parkview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11632311, + "bounds": { + "minlat": 40.8110872, + "minlon": -74.0046182, + "maxlat": 40.8111359, + "maxlon": -74.0045287 + }, + "nodes": [ + 2813943274, + 103858392 + ], + "geometry": [ + { "lat": 40.8110872, "lon": -74.0045287 }, + { "lat": 40.8111359, "lon": -74.0046182 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09000766", + "highway": "primary", + "name": "92nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "92nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632344, + "bounds": { + "minlat": 40.7744651, + "minlon": -74.0191854, + "maxlat": 40.7764241, + "maxlon": -74.0148077 + }, + "nodes": [ + 103858718, + 7320650753, + 11309169637, + 7320650622, + 103874034, + 7320650603, + 5909817461, + 440243651 + ], + "geometry": [ + { "lat": 40.7744651, "lon": -74.0148077 }, + { "lat": 40.7745143, "lon": -74.0149163 }, + { "lat": 40.7750332, "lon": -74.0160640 }, + { "lat": 40.7753417, "lon": -74.0167417 }, + { "lat": 40.7753686, "lon": -74.0168010 }, + { "lat": 40.7754054, "lon": -74.0168824 }, + { "lat": 40.7763959, "lon": -74.0190763 }, + { "lat": 40.7764241, "lon": -74.0191854 } + ], + "tags": { + "highway": "residential", + "name": "Columbia Terrace", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11632345, + "bounds": { + "minlat": 40.8041566, + "minlon": -74.0109210, + "maxlat": 40.8045520, + "maxlon": -74.0100522 + }, + "nodes": [ + 103872914, + 7474656066, + 103876390 + ], + "geometry": [ + { "lat": 40.8045520, "lon": -74.0109210 }, + { "lat": 40.8045035, "lon": -74.0108145 }, + { "lat": 40.8041566, "lon": -74.0100522 } + ], + "tags": { + "highway": "residential", + "name": "80th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "80th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632347, + "bounds": { + "minlat": 40.8023853, + "minlon": -74.0076929, + "maxlat": 40.8030964, + "maxlon": -74.0061537 + }, + "nodes": [ + 103873570, + 7474656148, + 103866672 + ], + "geometry": [ + { "lat": 40.8030964, "lon": -74.0076929 }, + { "lat": 40.8024418, "lon": -74.0062653 }, + { "lat": 40.8023853, "lon": -74.0061537 } + ], + "tags": { + "highway": "residential", + "name": "80th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "80th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632348, + "bounds": { + "minlat": 40.8043027, + "minlon": -74.0144742, + "maxlat": 40.8058688, + "maxlon": -74.0111151 + }, + "nodes": [ + 103872912, + 103876394, + 7474656049, + 7474656047, + 103875664 + ], + "geometry": [ + { "lat": 40.8043027, "lon": -74.0111151 }, + { "lat": 40.8043100, "lon": -74.0111250 }, + { "lat": 40.8043568, "lon": -74.0112256 }, + { "lat": 40.8058358, "lon": -74.0144033 }, + { "lat": 40.8058688, "lon": -74.0144742 } + ], + "tags": { + "hgv": "no", + "highway": "residential", + "name": "80th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "80th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632351, + "bounds": { + "minlat": 40.8076901, + "minlon": -74.0146945, + "maxlat": 40.8089591, + "maxlon": -74.0119479 + }, + "nodes": [ + 103876407, + 103875620, + 103875676, + 103876408, + 103867272, + 12456223799, + 12456223738, + 103860891 + ], + "geometry": [ + { "lat": 40.8076901, "lon": -74.0119479 }, + { "lat": 40.8080156, "lon": -74.0126504 }, + { "lat": 40.8081199, "lon": -74.0128865 }, + { "lat": 40.8083450, "lon": -74.0134010 }, + { "lat": 40.8086860, "lon": -74.0141270 }, + { "lat": 40.8089023, "lon": -74.0145766 }, + { "lat": 40.8089205, "lon": -74.0146143 }, + { "lat": 40.8089591, "lon": -74.0146945 } + ], + "tags": { + "highway": "residential", + "name": "84th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "84th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11632352, + "bounds": { + "minlat": 40.8068238, + "minlon": -74.0116679, + "maxlat": 40.8080089, + "maxlon": -74.0092657 + }, + "nodes": [ + 103872923, + 7475993424, + 7475993427, + 103876410 + ], + "geometry": [ + { "lat": 40.8068238, "lon": -74.0092657 }, + { "lat": 40.8068773, "lon": -74.0093754 }, + { "lat": 40.8079739, "lon": -74.0115970 }, + { "lat": 40.8080089, "lon": -74.0116679 } + ], + "tags": { + "highway": "residential", + "name": "84th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "84th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632358, + "bounds": { + "minlat": 40.7971951, + "minlon": -74.0192678, + "maxlat": 40.7987034, + "maxlon": -74.0180125 + }, + "nodes": [ + 12849086573, + 12849086574, + 2813992724, + 103868002 + ], + "geometry": [ + { "lat": 40.7971951, "lon": -74.0192678 }, + { "lat": 40.7972505, "lon": -74.0192194 }, + { "lat": 40.7972799, "lon": -74.0191937 }, + { "lat": 40.7987034, "lon": -74.0180125 } + ], + "tags": { + "highway": "residential", + "name": "Newkirk Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Newkirk", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632359, + "bounds": { + "minlat": 40.8033220, + "minlon": -74.0152440, + "maxlat": 40.8046640, + "maxlon": -74.0143384 + }, + "nodes": [ + 103876439, + 103876441, + 103876443, + 7474656019, + 103876445 + ], + "geometry": [ + { "lat": 40.8033220, "lon": -74.0152440 }, + { "lat": 40.8038350, "lon": -74.0149080 }, + { "lat": 40.8043910, "lon": -74.0145430 }, + { "lat": 40.8044725, "lon": -74.0144819 }, + { "lat": 40.8046640, "lon": -74.0143384 } + ], + "tags": { + "highway": "residential", + "name": "Newkirk Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Newkirk", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632361, + "bounds": { + "minlat": 40.8073800, + "minlon": -74.0121953, + "maxlat": 40.8102600, + "maxlon": -74.0096950 + }, + "nodes": [ + 103872663, + 103876463, + 7475993478, + 7475993476, + 103867166, + 7475993444, + 7475993425, + 103876410, + 7475993429, + 103876407, + 7475993430, + 103876458 + ], + "geometry": [ + { "lat": 40.8102600, "lon": -74.0096950 }, + { "lat": 40.8094525, "lon": -74.0104072 }, + { "lat": 40.8094106, "lon": -74.0104424 }, + { "lat": 40.8087105, "lon": -74.0110310 }, + { "lat": 40.8086685, "lon": -74.0110677 }, + { "lat": 40.8086279, "lon": -74.0111023 }, + { "lat": 40.8080798, "lon": -74.0115704 }, + { "lat": 40.8080089, "lon": -74.0116679 }, + { "lat": 40.8079781, "lon": -74.0117073 }, + { "lat": 40.8076901, "lon": -74.0119479 }, + { "lat": 40.8074225, "lon": -74.0121614 }, + { "lat": 40.8073800, "lon": -74.0121953 } + ], + "tags": { + "highway": "residential", + "name": "Newkirk Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Newkirk", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632362, + "bounds": { + "minlat": 40.8114499, + "minlon": -74.0089121, + "maxlat": 40.8129968, + "maxlon": -74.0074690 + }, + "nodes": [ + 103858986, + 12456262177, + 12456262130, + 103865029, + 12456223794, + 956331748 + ], + "geometry": [ + { "lat": 40.8114499, "lon": -74.0089121 }, + { "lat": 40.8115204, "lon": -74.0088462 }, + { "lat": 40.8122921, "lon": -74.0081241 }, + { "lat": 40.8123479, "lon": -74.0080719 }, + { "lat": 40.8123975, "lon": -74.0080258 }, + { "lat": 40.8129968, "lon": -74.0074690 } + ], + "tags": { + "highway": "residential", + "name": "Newkirk Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Newkirk", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632374, + "bounds": { + "minlat": 40.8016778, + "minlon": -74.0194566, + "maxlat": 40.8022496, + "maxlon": -74.0180178 + }, + "nodes": [ + 103859565, + 103861485 + ], + "geometry": [ + { "lat": 40.8016778, "lon": -74.0180178 }, + { "lat": 40.8022496, "lon": -74.0194566 } + ], + "tags": { + "highway": "residential", + "name": "73rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "73rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632376, + "bounds": { + "minlat": 40.7999590, + "minlon": -74.0173496, + "maxlat": 40.8013460, + "maxlon": -74.0142930 + }, + "nodes": [ + 103872905, + 7474498855, + 103876552, + 7474498857, + 103876553 + ], + "geometry": [ + { "lat": 40.7999590, "lon": -74.0142930 }, + { "lat": 40.8000105, "lon": -74.0144082 }, + { "lat": 40.8011793, "lon": -74.0169789 }, + { "lat": 40.8013205, "lon": -74.0172929 }, + { "lat": 40.8013460, "lon": -74.0173496 } + ], + "tags": { + "highway": "residential", + "name": "73rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "73rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632379, + "bounds": { + "minlat": 40.7993210, + "minlon": -74.0132984, + "maxlat": 40.7996186, + "maxlon": -74.0126260 + }, + "nodes": [ + 103876561, + 7474498803, + 7474498805, + 103876560 + ], + "geometry": [ + { "lat": 40.7996186, "lon": -74.0132984 }, + { "lat": 40.7995831, "lon": -74.0132182 }, + { "lat": 40.7993632, "lon": -74.0127212 }, + { "lat": 40.7993210, "lon": -74.0126260 } + ], + "tags": { + "highway": "residential", + "name": "73rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "73rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632381, + "bounds": { + "minlat": 40.8021880, + "minlon": -74.0202593, + "maxlat": 40.8025433, + "maxlon": -74.0195071 + }, + "nodes": [ + 103861483, + 13525597027, + 103867727 + ], + "geometry": [ + { "lat": 40.8021880, "lon": -74.0195071 }, + { "lat": 40.8025163, "lon": -74.0202022 }, + { "lat": 40.8025433, "lon": -74.0202593 } + ], + "tags": { + "highway": "residential", + "name": "73rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "73rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632386, + "bounds": { + "minlat": 40.7852683, + "minlon": -74.0062787, + "maxlat": 40.7910235, + "maxlon": -74.0007476 + }, + "nodes": [ + 103870536, + 2902396745, + 7468537501, + 103876577, + 103876579, + 2902396746, + 103876583, + 103876585, + 103876587, + 103876589, + 103876591, + 5342858578, + 103876593, + 103860854, + 103876595, + 103876597, + 5509634347, + 103860863, + 5509634348, + 103876599, + 103876601, + 103858372, + 103876603, + 103876605, + 103876607, + 103876609, + 5509634330, + 103864409, + 7468537591, + 7468537586, + 7468537623, + 103876617, + 6895035608, + 103876618, + 6895035610, + 103876620, + 103876622, + 103876624, + 103876626, + 103876628, + 103876630, + 440244404, + 103876632, + 103876634, + 5751042513, + 7468537643, + 103855250, + 7468537646, + 103876638 + ], + "geometry": [ + { "lat": 40.7853014, "lon": -74.0062787 }, + { "lat": 40.7852817, "lon": -74.0062141 }, + { "lat": 40.7852748, "lon": -74.0061724 }, + { "lat": 40.7852690, "lon": -74.0061379 }, + { "lat": 40.7852683, "lon": -74.0060789 }, + { "lat": 40.7852853, "lon": -74.0059254 }, + { "lat": 40.7853100, "lon": -74.0058660 }, + { "lat": 40.7853530, "lon": -74.0057910 }, + { "lat": 40.7854740, "lon": -74.0056480 }, + { "lat": 40.7857330, "lon": -74.0054110 }, + { "lat": 40.7860985, "lon": -74.0051030 }, + { "lat": 40.7862747, "lon": -74.0048611 }, + { "lat": 40.7864040, "lon": -74.0046340 }, + { "lat": 40.7865080, "lon": -74.0044520 }, + { "lat": 40.7865860, "lon": -74.0043160 }, + { "lat": 40.7866340, "lon": -74.0042420 }, + { "lat": 40.7870042, "lon": -74.0039393 }, + { "lat": 40.7870606, "lon": -74.0038885 }, + { "lat": 40.7871151, "lon": -74.0038455 }, + { "lat": 40.7872180, "lon": -74.0037600 }, + { "lat": 40.7874265, "lon": -74.0036267 }, + { "lat": 40.7877023, "lon": -74.0036074 }, + { "lat": 40.7877472, "lon": -74.0036008 }, + { "lat": 40.7879163, "lon": -74.0035114 }, + { "lat": 40.7880866, "lon": -74.0033597 }, + { "lat": 40.7881836, "lon": -74.0031964 }, + { "lat": 40.7882106, "lon": -74.0031411 }, + { "lat": 40.7882621, "lon": -74.0030433 }, + { "lat": 40.7882987, "lon": -74.0029876 }, + { "lat": 40.7883301, "lon": -74.0029396 }, + { "lat": 40.7887560, "lon": -74.0025308 }, + { "lat": 40.7887993, "lon": -74.0024893 }, + { "lat": 40.7888672, "lon": -74.0024334 }, + { "lat": 40.7889640, "lon": -74.0023593 }, + { "lat": 40.7891694, "lon": -74.0022081 }, + { "lat": 40.7894328, "lon": -74.0021076 }, + { "lat": 40.7895527, "lon": -74.0020544 }, + { "lat": 40.7896395, "lon": -74.0019963 }, + { "lat": 40.7897150, "lon": -74.0019254 }, + { "lat": 40.7898483, "lon": -74.0017529 }, + { "lat": 40.7899386, "lon": -74.0016115 }, + { "lat": 40.7899786, "lon": -74.0015556 }, + { "lat": 40.7901393, "lon": -74.0013639 }, + { "lat": 40.7903026, "lon": -74.0012236 }, + { "lat": 40.7905217, "lon": -74.0010741 }, + { "lat": 40.7906236, "lon": -74.0010026 }, + { "lat": 40.7906872, "lon": -74.0009638 }, + { "lat": 40.7907639, "lon": -74.0009157 }, + { "lat": 40.7910235, "lon": -74.0007476 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 11632389, + "bounds": { + "minlat": 40.7854962, + "minlon": -74.0082410, + "maxlat": 40.7858485, + "maxlon": -74.0075847 + }, + "nodes": [ + 103870532, + 103865473, + 103876657, + 103876659, + 103876660, + 4205626692 + ], + "geometry": [ + { "lat": 40.7858384, "lon": -74.0075847 }, + { "lat": 40.7858485, "lon": -74.0077095 }, + { "lat": 40.7858100, "lon": -74.0078840 }, + { "lat": 40.7857500, "lon": -74.0079990 }, + { "lat": 40.7856760, "lon": -74.0080880 }, + { "lat": 40.7854962, "lon": -74.0082410 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 11632391, + "bounds": { + "minlat": 40.7863109, + "minlon": -74.0008092, + "maxlat": 40.7868616, + "maxlon": -74.0003634 + }, + "nodes": [ + 103876765, + 103876767 + ], + "geometry": [ + { "lat": 40.7868616, "lon": -74.0008092 }, + { "lat": 40.7863109, "lon": -74.0003634 } + ], + "tags": { + "highway": "residential", + "name": "Buffalo Court", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Buffalo", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632394, + "bounds": { + "minlat": 40.7928567, + "minlon": -74.0219858, + "maxlat": 40.7952909, + "maxlon": -74.0195899 + }, + "nodes": [ + 103876793, + 7473610324, + 103876795, + 7473610320, + 7473610319, + 103872303, + 103876797 + ], + "geometry": [ + { "lat": 40.7928567, "lon": -74.0219858 }, + { "lat": 40.7929072, "lon": -74.0219085 }, + { "lat": 40.7935052, "lon": -74.0209925 }, + { "lat": 40.7937917, "lon": -74.0207550 }, + { "lat": 40.7939425, "lon": -74.0206765 }, + { "lat": 40.7942916, "lon": -74.0203905 }, + { "lat": 40.7952909, "lon": -74.0195899 } + ], + "tags": { + "highway": "residential", + "name": "Durham Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Durham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632395, + "bounds": { + "minlat": 40.8031820, + "minlon": -74.0147060, + "maxlat": 40.8041130, + "maxlon": -74.0139728 + }, + "nodes": [ + 103861504, + 103876805 + ], + "geometry": [ + { "lat": 40.8031820, "lon": -74.0147060 }, + { "lat": 40.8041130, "lon": -74.0139728 } + ], + "tags": { + "highway": "residential", + "name": "Durham Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Durham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632397, + "bounds": { + "minlat": 40.8015362, + "minlon": -74.0159482, + "maxlat": 40.8032210, + "maxlon": -74.0148100 + }, + "nodes": [ + 10074988663, + 103876809, + 103876810, + 13428956330, + 7474498870, + 7474498894, + 103861506 + ], + "geometry": [ + { "lat": 40.8015362, "lon": -74.0159482 }, + { "lat": 40.8016186, "lon": -74.0158749 }, + { "lat": 40.8024365, "lon": -74.0152564 }, + { "lat": 40.8025203, "lon": -74.0152183 }, + { "lat": 40.8028988, "lon": -74.0150460 }, + { "lat": 40.8031783, "lon": -74.0148413 }, + { "lat": 40.8032210, "lon": -74.0148100 } + ], + "tags": { + "highway": "residential", + "name": "Durham Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Durham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632400, + "bounds": { + "minlat": 40.8106950, + "minlon": -74.0083560, + "maxlat": 40.8110545, + "maxlon": -74.0081520 + }, + "nodes": [ + 103876813, + 7475993573, + 103876814, + 7475993570, + 7475993575, + 103876816 + ], + "geometry": [ + { "lat": 40.8106950, "lon": -74.0081520 }, + { "lat": 40.8107837, "lon": -74.0083233 }, + { "lat": 40.8107970, "lon": -74.0083490 }, + { "lat": 40.8108341, "lon": -74.0083560 }, + { "lat": 40.8110091, "lon": -74.0082058 }, + { "lat": 40.8110545, "lon": -74.0081668 } + ], + "tags": { + "highway": "residential", + "name": "Durham Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Durham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632402, + "bounds": { + "minlat": 40.8099769, + "minlon": -74.0093854, + "maxlat": 40.8108750, + "maxlon": -74.0087414 + }, + "nodes": [ + 103872661, + 12456223786, + 12456261996, + 103876822, + 12456262028, + 103858988 + ], + "geometry": [ + { "lat": 40.8099769, "lon": -74.0091347 }, + { "lat": 40.8104941, "lon": -74.0087481 }, + { "lat": 40.8105134, "lon": -74.0087414 }, + { "lat": 40.8105354, "lon": -74.0087432 }, + { "lat": 40.8105550, "lon": -74.0087531 }, + { "lat": 40.8108750, "lon": -74.0093854 } + ], + "tags": { + "highway": "residential", + "name": "Durham Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Durham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632405, + "bounds": { + "minlat": 40.8090991, + "minlon": -74.0096736, + "maxlat": 40.8099050, + "maxlon": -74.0090030 + }, + "nodes": [ + 103876829, + 7475993509, + 103872660 + ], + "geometry": [ + { "lat": 40.8090991, "lon": -74.0096736 }, + { "lat": 40.8091524, "lon": -74.0096292 }, + { "lat": 40.8099050, "lon": -74.0090030 } + ], + "tags": { + "highway": "residential", + "name": "Durham Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Durham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632421, + "bounds": { + "minlat": 40.7900997, + "minlon": -74.0212070, + "maxlat": 40.7924810, + "maxlon": -74.0160362 + }, + "nodes": [ + 103872878, + 103876889, + 7473610308, + 10024124557, + 7473610306, + 103876887, + 7473610362, + 103876885, + 7660979526, + 7660979523, + 103876883, + 7660979546, + 7660979542, + 103861925, + 7660979559, + 7660979557, + 103876881, + 7660979566, + 7660979568, + 103869008, + 7660979586, + 7660979584, + 103876879 + ], + "geometry": [ + { "lat": 40.7924810, "lon": -74.0212070 }, + { "lat": 40.7924640, "lon": -74.0211720 }, + { "lat": 40.7924231, "lon": -74.0210814 }, + { "lat": 40.7923634, "lon": -74.0209521 }, + { "lat": 40.7921843, "lon": -74.0205610 }, + { "lat": 40.7921500, "lon": -74.0204860 }, + { "lat": 40.7918509, "lon": -74.0198123 }, + { "lat": 40.7918181, "lon": -74.0197378 }, + { "lat": 40.7917892, "lon": -74.0196765 }, + { "lat": 40.7915030, "lon": -74.0190690 }, + { "lat": 40.7914765, "lon": -74.0190080 }, + { "lat": 40.7914458, "lon": -74.0189420 }, + { "lat": 40.7911629, "lon": -74.0183342 }, + { "lat": 40.7911284, "lon": -74.0182601 }, + { "lat": 40.7911009, "lon": -74.0182019 }, + { "lat": 40.7908158, "lon": -74.0175989 }, + { "lat": 40.7907821, "lon": -74.0175277 }, + { "lat": 40.7907564, "lon": -74.0174718 }, + { "lat": 40.7904726, "lon": -74.0168549 }, + { "lat": 40.7904400, "lon": -74.0167840 }, + { "lat": 40.7904038, "lon": -74.0167062 }, + { "lat": 40.7901312, "lon": -74.0161199 }, + { "lat": 40.7900997, "lon": -74.0160362 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "61st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "61st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632422, + "bounds": { + "minlat": 40.7868526, + "minlon": -74.0153229, + "maxlat": 40.7902303, + "maxlon": -74.0080113 + }, + "nodes": [ + 103876893, + 7658692232, + 103876895, + 7658692230, + 103876897, + 7678131017, + 7678131015, + 103862602, + 7678131007, + 7678131011, + 103855471, + 5746137748, + 7678130994, + 103855605, + 7678130985, + 7678130987, + 103874051, + 7678103771, + 7678103773, + 103876898, + 7678103752, + 7678103755, + 103866039, + 7675458916, + 7675458912, + 103876899, + 7675458898, + 7568813585, + 7675458896, + 103866633 + ], + "geometry": [ + { "lat": 40.7868526, "lon": -74.0080113 }, + { "lat": 40.7868913, "lon": -74.0080971 }, + { "lat": 40.7871739, "lon": -74.0087229 }, + { "lat": 40.7873601, "lon": -74.0091282 }, + { "lat": 40.7873860, "lon": -74.0091840 }, + { "lat": 40.7874279, "lon": -74.0092744 }, + { "lat": 40.7877196, "lon": -74.0099042 }, + { "lat": 40.7877450, "lon": -74.0099590 }, + { "lat": 40.7877846, "lon": -74.0100444 }, + { "lat": 40.7880734, "lon": -74.0106675 }, + { "lat": 40.7881010, "lon": -74.0107270 }, + { "lat": 40.7881505, "lon": -74.0108339 }, + { "lat": 40.7884145, "lon": -74.0114077 }, + { "lat": 40.7884593, "lon": -74.0115051 }, + { "lat": 40.7885040, "lon": -74.0116019 }, + { "lat": 40.7887893, "lon": -74.0122197 }, + { "lat": 40.7888155, "lon": -74.0122765 }, + { "lat": 40.7888549, "lon": -74.0123609 }, + { "lat": 40.7891420, "lon": -74.0129756 }, + { "lat": 40.7891781, "lon": -74.0130530 }, + { "lat": 40.7892130, "lon": -74.0131284 }, + { "lat": 40.7895009, "lon": -74.0137493 }, + { "lat": 40.7895290, "lon": -74.0138100 }, + { "lat": 40.7895682, "lon": -74.0138946 }, + { "lat": 40.7898381, "lon": -74.0144765 }, + { "lat": 40.7898680, "lon": -74.0145409 }, + { "lat": 40.7899028, "lon": -74.0146161 }, + { "lat": 40.7900152, "lon": -74.0148586 }, + { "lat": 40.7901795, "lon": -74.0152135 }, + { "lat": 40.7902303, "lon": -74.0153229 } + ], + "tags": { + "highway": "residential", + "name": "61st Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "61st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632423, + "bounds": { + "minlat": 40.8113083, + "minlon": -74.0117173, + "maxlat": 40.8122358, + "maxlon": -74.0098635 + }, + "nodes": [ + 103867750, + 103876907, + 103876905, + 103876904, + 103875628 + ], + "geometry": [ + { "lat": 40.8122358, "lon": -74.0117173 }, + { "lat": 40.8121861, "lon": -74.0116323 }, + { "lat": 40.8119091, "lon": -74.0110695 }, + { "lat": 40.8118344, "lon": -74.0109181 }, + { "lat": 40.8113083, "lon": -74.0098635 } + ], + "tags": { + "highway": "residential", + "name": "89th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "89th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11632424, + "bounds": { + "minlat": 40.8100671, + "minlon": -74.0081520, + "maxlat": 40.8106950, + "maxlon": -74.0069402 + }, + "nodes": [ + 103876912, + 7475993569, + 103876914, + 103876916, + 103876813 + ], + "geometry": [ + { "lat": 40.8100671, "lon": -74.0069402 }, + { "lat": 40.8100986, "lon": -74.0070007 }, + { "lat": 40.8102890, "lon": -74.0073660 }, + { "lat": 40.8104040, "lon": -74.0075890 }, + { "lat": 40.8106950, "lon": -74.0081520 } + ], + "tags": { + "highway": "residential", + "name": "89th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "89th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632426, + "bounds": { + "minlat": 40.8123973, + "minlon": -74.0126488, + "maxlat": 40.8129490, + "maxlon": -74.0115564 + }, + "nodes": [ + 103876919, + 5994285442, + 5994285441, + 3742898928, + 5994285440, + 103858398 + ], + "geometry": [ + { "lat": 40.8129490, "lon": -74.0126488 }, + { "lat": 40.8128369, "lon": -74.0125027 }, + { "lat": 40.8127841, "lon": -74.0124316 }, + { "lat": 40.8127413, "lon": -74.0123387 }, + { "lat": 40.8124429, "lon": -74.0116732 }, + { "lat": 40.8123973, "lon": -74.0115564 } + ], + "tags": { + "highway": "unclassified", + "name": "89th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 11632427, + "bounds": { + "minlat": 40.8093224, + "minlon": -74.0063117, + "maxlat": 40.8095156, + "maxlon": -74.0059111 + }, + "nodes": [ + 103876923, + 7475993593, + 103876925 + ], + "geometry": [ + { "lat": 40.8093224, "lon": -74.0059111 }, + { "lat": 40.8093555, "lon": -74.0059798 }, + { "lat": 40.8095156, "lon": -74.0063117 } + ], + "tags": { + "highway": "residential", + "name": "89th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "89th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632428, + "bounds": { + "minlat": 40.8084616, + "minlon": -74.0060642, + "maxlat": 40.8092020, + "maxlon": -74.0047632 + }, + "nodes": [ + 103872655, + 103876930, + 103876928 + ], + "geometry": [ + { "lat": 40.8084616, "lon": -74.0060642 }, + { "lat": 40.8092020, "lon": -74.0054920 }, + { "lat": 40.8088938, "lon": -74.0047632 } + ], + "tags": { + "highway": "residential", + "name": "89th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "89th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632441, + "bounds": { + "minlat": 40.8108758, + "minlon": -74.0118233, + "maxlat": 40.8113071, + "maxlon": -74.0114621 + }, + "nodes": [ + 103872651, + 103876999 + ], + "geometry": [ + { "lat": 40.8113071, "lon": -74.0114621 }, + { "lat": 40.8108758, "lon": -74.0118233 } + ], + "tags": { + "highway": "residential", + "name": "Easy Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Easy", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "59607743", + "tiger:upload_uuid": "bulk_upload.pl-632afc29-2613-4702-a9d8-dcf03687ae14", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632458, + "bounds": { + "minlat": 40.7852769, + "minlon": -74.0016952, + "maxlat": 40.7857519, + "maxlon": -74.0012607 + }, + "nodes": [ + 103877062, + 103877063 + ], + "geometry": [ + { "lat": 40.7857519, "lon": -74.0016952 }, + { "lat": 40.7852769, "lon": -74.0012607 } + ], + "tags": { + "highway": "residential", + "name": "Newburgh Court", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Newburgh", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632478, + "bounds": { + "minlat": 40.8062910, + "minlon": -73.9982860, + "maxlat": 40.8072472, + "maxlon": -73.9969054 + }, + "nodes": [ + 103869230, + 5481884086, + 103877246 + ], + "geometry": [ + { "lat": 40.8062910, "lon": -73.9982860 }, + { "lat": 40.8068711, "lon": -73.9974484 }, + { "lat": 40.8072472, "lon": -73.9969054 } + ], + "tags": { + "highway": "residential", + "name": "New York Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "New York", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632536, + "bounds": { + "minlat": 40.8009683, + "minlon": -74.0100196, + "maxlat": 40.8023040, + "maxlon": -74.0072256 + }, + "nodes": [ + 103866664, + 4727867815, + 11001215616, + 103877622 + ], + "geometry": [ + { "lat": 40.8009683, "lon": -74.0072256 }, + { "lat": 40.8010649, "lon": -74.0073048 }, + { "lat": 40.8012150, "lon": -74.0076336 }, + { "lat": 40.8023040, "lon": -74.0100196 } + ], + "tags": { + "highway": "residential", + "name": "78th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "78th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632538, + "bounds": { + "minlat": 40.7967525, + "minlon": -74.0071629, + "maxlat": 40.8008712, + "maxlon": -73.9984577 + }, + "nodes": [ + 103870462, + 7468583872, + 7468583866, + 103877626, + 7678477424, + 7678477422, + 103862639, + 7678477436, + 7678477435, + 103855710, + 7678484098, + 7678484097, + 103877627, + 7678477595, + 3809706348 + ], + "geometry": [ + { "lat": 40.7967525, "lon": -73.9984577 }, + { "lat": 40.7967873, "lon": -73.9985272 }, + { "lat": 40.7973704, "lon": -73.9996916 }, + { "lat": 40.7974341, "lon": -73.9998187 }, + { "lat": 40.7974740, "lon": -73.9999047 }, + { "lat": 40.7982485, "lon": -74.0015720 }, + { "lat": 40.7983116, "lon": -74.0017079 }, + { "lat": 40.7983570, "lon": -74.0018049 }, + { "lat": 40.7990943, "lon": -74.0033835 }, + { "lat": 40.7991300, "lon": -74.0034600 }, + { "lat": 40.7991629, "lon": -74.0035305 }, + { "lat": 40.7999238, "lon": -74.0051614 }, + { "lat": 40.7999530, "lon": -74.0052240 }, + { "lat": 40.7999832, "lon": -74.0052878 }, + { "lat": 40.8008712, "lon": -74.0071629 } + ], + "tags": { + "highway": "residential", + "name": "78th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "78th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632539, + "bounds": { + "minlat": 40.8032019, + "minlon": -74.0176047, + "maxlat": 40.8056342, + "maxlon": -74.0119665 + }, + "nodes": [ + 103872910, + 7474656033, + 12614912672, + 103862781, + 103876805, + 103877631, + 103876443, + 103877633, + 103875662, + 103867303, + 103867737 + ], + "geometry": [ + { "lat": 40.8032019, "lon": -74.0119665 }, + { "lat": 40.8032516, "lon": -74.0120766 }, + { "lat": 40.8033491, "lon": -74.0122923 }, + { "lat": 40.8035469, "lon": -74.0127300 }, + { "lat": 40.8041130, "lon": -74.0139728 }, + { "lat": 40.8043414, "lon": -74.0144598 }, + { "lat": 40.8043910, "lon": -74.0145430 }, + { "lat": 40.8044611, "lon": -74.0145862 }, + { "lat": 40.8047075, "lon": -74.0152109 }, + { "lat": 40.8053164, "lon": -74.0167773 }, + { "lat": 40.8056342, "lon": -74.0176047 } + ], + "tags": { + "highway": "residential", + "name": "78th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "78th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632637, + "bounds": { + "minlat": 40.7871739, + "minlon": -74.0087229, + "maxlat": 40.7878598, + "maxlon": -74.0082019 + }, + "nodes": [ + 103876895, + 7658692244, + 7588135068, + 103878318 + ], + "geometry": [ + { "lat": 40.7871739, "lon": -74.0087229 }, + { "lat": 40.7872550, "lon": -74.0086636 }, + { "lat": 40.7875131, "lon": -74.0084748 }, + { "lat": 40.7878598, "lon": -74.0082019 } + ], + "tags": { + "highway": "residential", + "name": "Johnson Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Johnson", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632640, + "bounds": { + "minlat": 40.8075200, + "minlon": -73.9993340, + "maxlat": 40.8084512, + "maxlon": -73.9979888 + }, + "nodes": [ + 103869234, + 103124453 + ], + "geometry": [ + { "lat": 40.8075200, "lon": -73.9993340 }, + { "lat": 40.8084512, "lon": -73.9979888 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Plaza", + "name_1": "Palisade Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_base_1": "Palisade", + "tiger:name_type": "Plz", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632648, + "bounds": { + "minlat": 40.7923730, + "minlon": -74.0099348, + "maxlat": 40.7930882, + "maxlon": -74.0084063 + }, + "nodes": [ + 103878362, + 7678242758, + 5474138778, + 103855615 + ], + "geometry": [ + { "lat": 40.7930882, "lon": -74.0099348 }, + { "lat": 40.7930599, "lon": -74.0098706 }, + { "lat": 40.7927172, "lon": -74.0091575 }, + { "lat": 40.7923730, "lon": -74.0084063 } + ], + "tags": { + "highway": "residential", + "name": "67th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "67th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632649, + "bounds": { + "minlat": 40.7939540, + "minlon": -74.0149624, + "maxlat": 40.7950957, + "maxlon": -74.0125050 + }, + "nodes": [ + 103861902, + 7674820853, + 103878368, + 103878366, + 7674820811, + 7674820807, + 103866641 + ], + "geometry": [ + { "lat": 40.7950957, "lon": -74.0149624 }, + { "lat": 40.7950468, "lon": -74.0148543 }, + { "lat": 40.7947348, "lon": -74.0141733 }, + { "lat": 40.7946925, "lon": -74.0140904 }, + { "lat": 40.7946652, "lon": -74.0140318 }, + { "lat": 40.7940108, "lon": -74.0126270 }, + { "lat": 40.7939540, "lon": -74.0125050 } + ], + "tags": { + "highway": "residential", + "name": "67th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "67th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632650, + "bounds": { + "minlat": 40.7957972, + "minlon": -74.0216900, + "maxlat": 40.7983260, + "maxlon": -74.0163899 + }, + "nodes": [ + 103872884, + 5558419787, + 103878376, + 103878378, + 7474437982, + 103862773, + 103876799, + 12849086578, + 12849086573, + 103860102, + 103855531, + 103878380, + 103875659, + 103858828 + ], + "geometry": [ + { "lat": 40.7957972, "lon": -74.0163899 }, + { "lat": 40.7958642, "lon": -74.0164748 }, + { "lat": 40.7961691, "lon": -74.0171194 }, + { "lat": 40.7963310, "lon": -74.0174540 }, + { "lat": 40.7964565, "lon": -74.0177205 }, + { "lat": 40.7964850, "lon": -74.0177810 }, + { "lat": 40.7968475, "lon": -74.0185473 }, + { "lat": 40.7971800, "lon": -74.0192365 }, + { "lat": 40.7971951, "lon": -74.0192678 }, + { "lat": 40.7972139, "lon": -74.0193105 }, + { "lat": 40.7975473, "lon": -74.0199992 }, + { "lat": 40.7976452, "lon": -74.0202546 }, + { "lat": 40.7979788, "lon": -74.0209571 }, + { "lat": 40.7983260, "lon": -74.0216900 } + ], + "tags": { + "highway": "residential", + "name": "67th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "67th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632716, + "bounds": { + "minlat": 40.7763101, + "minlon": -74.0180568, + "maxlat": 40.7775484, + "maxlon": -74.0153131 + }, + "nodes": [ + 103862576, + 5909817463, + 7320650694, + 103862861 + ], + "geometry": [ + { "lat": 40.7775484, "lon": -74.0180568 }, + { "lat": 40.7774955, "lon": -74.0179445 }, + { "lat": 40.7763368, "lon": -74.0153722 }, + { "lat": 40.7763101, "lon": -74.0153131 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Cooper Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Cooper", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11632725, + "bounds": { + "minlat": 40.7857582, + "minlon": -74.0012373, + "maxlat": 40.7863220, + "maxlon": -74.0008259 + }, + "nodes": [ + 103878719, + 103878721 + ], + "geometry": [ + { "lat": 40.7863220, "lon": -74.0012373 }, + { "lat": 40.7857582, "lon": -74.0008259 } + ], + "tags": { + "highway": "residential", + "name": "Albany Court", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Albany", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632739, + "bounds": { + "minlat": 40.7991448, + "minlon": -74.0190125, + "maxlat": 40.8028290, + "maxlon": -74.0162420 + }, + "nodes": [ + 103868003, + 103878757, + 7229559514, + 2813992725, + 103878759, + 2813992726, + 103878760, + 2814472265, + 103873543, + 103873544, + 3639121328, + 103876553, + 3639121332, + 103878762 + ], + "geometry": [ + { "lat": 40.7991448, "lon": -74.0190125 }, + { "lat": 40.7997126, "lon": -74.0185632 }, + { "lat": 40.7997218, "lon": -74.0185601 }, + { "lat": 40.7998891, "lon": -74.0185041 }, + { "lat": 40.8000190, "lon": -74.0184200 }, + { "lat": 40.8001830, "lon": -74.0182879 }, + { "lat": 40.8003101, "lon": -74.0181823 }, + { "lat": 40.8003745, "lon": -74.0180861 }, + { "lat": 40.8004939, "lon": -74.0179890 }, + { "lat": 40.8008161, "lon": -74.0177480 }, + { "lat": 40.8012749, "lon": -74.0174112 }, + { "lat": 40.8013460, "lon": -74.0173496 }, + { "lat": 40.8020249, "lon": -74.0168518 }, + { "lat": 40.8028290, "lon": -74.0162420 } + ], + "tags": { + "highway": "residential", + "name": "Cottage Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Cottage", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11632765, + "bounds": { + "minlat": 40.8015311, + "minlon": -74.0066100, + "maxlat": 40.8060812, + "maxlon": -74.0018396 + }, + "nodes": [ + 103866670, + 302257496, + 103878997, + 4639337567, + 103878999, + 4727867620, + 4727867617, + 103879001, + 4727867618, + 1995128561, + 7986873433, + 103879003, + 4727867638, + 103879005, + 103879007, + 103879009, + 103879011, + 5465266069, + 5481963156, + 5465266071, + 103879013, + 103879015, + 4727867803, + 4640133212, + 103879017, + 4640133211, + 4640133210, + 103879019, + 4640133209, + 4640133208, + 103879022, + 103870498 + ], + "geometry": [ + { "lat": 40.8017753, "lon": -74.0066100 }, + { "lat": 40.8017193, "lon": -74.0065002 }, + { "lat": 40.8016119, "lon": -74.0062398 }, + { "lat": 40.8015775, "lon": -74.0061080 }, + { "lat": 40.8015471, "lon": -74.0059488 }, + { "lat": 40.8015312, "lon": -74.0058129 }, + { "lat": 40.8015311, "lon": -74.0056951 }, + { "lat": 40.8015433, "lon": -74.0055610 }, + { "lat": 40.8015769, "lon": -74.0053698 }, + { "lat": 40.8016329, "lon": -74.0051322 }, + { "lat": 40.8017739, "lon": -74.0045587 }, + { "lat": 40.8018210, "lon": -74.0043396 }, + { "lat": 40.8018863, "lon": -74.0041927 }, + { "lat": 40.8019966, "lon": -74.0039911 }, + { "lat": 40.8021510, "lon": -74.0037400 }, + { "lat": 40.8022390, "lon": -74.0036340 }, + { "lat": 40.8023880, "lon": -74.0035080 }, + { "lat": 40.8042856, "lon": -74.0033103 }, + { "lat": 40.8043822, "lon": -74.0033002 }, + { "lat": 40.8044636, "lon": -74.0032917 }, + { "lat": 40.8049062, "lon": -74.0032456 }, + { "lat": 40.8051375, "lon": -74.0031700 }, + { "lat": 40.8052283, "lon": -74.0031245 }, + { "lat": 40.8053649, "lon": -74.0030461 }, + { "lat": 40.8054733, "lon": -74.0029731 }, + { "lat": 40.8055719, "lon": -74.0028867 }, + { "lat": 40.8056456, "lon": -74.0028048 }, + { "lat": 40.8057500, "lon": -74.0026549 }, + { "lat": 40.8058078, "lon": -74.0025676 }, + { "lat": 40.8058610, "lon": -74.0024694 }, + { "lat": 40.8059464, "lon": -74.0022709 }, + { "lat": 40.8060812, "lon": -74.0018396 } + ], + "tags": { + "highway": "residential", + "name": "Riverview Drive", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11632776, + "bounds": { + "minlat": 40.8048121, + "minlon": -73.9983835, + "maxlat": 40.8054085, + "maxlon": -73.9983016 + }, + "nodes": [ + 103879069, + 103879068, + 103879066, + 103879064, + 103879062, + 103879060, + 103879058, + 103879056, + 103879054, + 103879052, + 103870489 + ], + "geometry": [ + { "lat": 40.8054085, "lon": -73.9983218 }, + { "lat": 40.8053607, "lon": -73.9983016 }, + { "lat": 40.8053189, "lon": -73.9983098 }, + { "lat": 40.8052575, "lon": -73.9983403 }, + { "lat": 40.8052214, "lon": -73.9983563 }, + { "lat": 40.8051865, "lon": -73.9983626 }, + { "lat": 40.8051403, "lon": -73.9983700 }, + { "lat": 40.8050879, "lon": -73.9983653 }, + { "lat": 40.8049453, "lon": -73.9983547 }, + { "lat": 40.8049093, "lon": -73.9983464 }, + { "lat": 40.8048121, "lon": -73.9983835 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000719", + "highway": "secondary", + "name": "Park Drive", + "tiger:cfcc": "A45", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 11632778, + "bounds": { + "minlat": 40.7993136, + "minlon": -74.0019949, + "maxlat": 40.8006469, + "maxlon": -73.9983958 + }, + "nodes": [ + 3809681027, + 103879072, + 302257297, + 302257792, + 103859527, + 1995128545 + ], + "geometry": [ + { "lat": 40.7993136, "lon": -73.9983958 }, + { "lat": 40.7995780, "lon": -73.9990850 }, + { "lat": 40.8000026, "lon": -74.0002568 }, + { "lat": 40.8001269, "lon": -74.0005974 }, + { "lat": 40.8005817, "lon": -74.0018269 }, + { "lat": 40.8006469, "lon": -74.0019949 } + ], + "tags": { + "highway": "residential", + "name": "Park Drive", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11632780, + "bounds": { + "minlat": 40.7992819, + "minlon": -74.0021388, + "maxlat": 40.8005658, + "maxlon": -74.0009907 + }, + "nodes": [ + 1995128544, + 103879074, + 103879076, + 103879077, + 103879078, + 4727867616, + 103879079, + 4727867615, + 103879081 + ], + "geometry": [ + { "lat": 40.8005658, "lon": -74.0021388 }, + { "lat": 40.8004212, "lon": -74.0021029 }, + { "lat": 40.8000810, "lon": -74.0019740 }, + { "lat": 40.7998300, "lon": -74.0018140 }, + { "lat": 40.7997110, "lon": -74.0016600 }, + { "lat": 40.7994277, "lon": -74.0011504 }, + { "lat": 40.7993872, "lon": -74.0010961 }, + { "lat": 40.7993333, "lon": -74.0010355 }, + { "lat": 40.7992819, "lon": -74.0009907 } + ], + "tags": { + "highway": "residential", + "name": "Park Drive", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11632784, + "bounds": { + "minlat": 40.8015244, + "minlon": -74.0035418, + "maxlat": 40.8023880, + "maxlon": -74.0034811 + }, + "nodes": [ + 103879011, + 103879085, + 4727867639, + 103879086, + 103879088, + 4727867643 + ], + "geometry": [ + { "lat": 40.8023880, "lon": -74.0035080 }, + { "lat": 40.8021452, "lon": -74.0035418 }, + { "lat": 40.8019715, "lon": -74.0035354 }, + { "lat": 40.8017993, "lon": -74.0035190 }, + { "lat": 40.8016840, "lon": -74.0035020 }, + { "lat": 40.8015244, "lon": -74.0034811 } + ], + "tags": { + "highway": "residential", + "name": "Park Drive", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11632793, + "bounds": { + "minlat": 40.8053000, + "minlon": -73.9994976, + "maxlat": 40.8054085, + "maxlon": -73.9983218 + }, + "nodes": [ + 103879069, + 103879139, + 103879138, + 103879136, + 103879134, + 103879133, + 103879132, + 103879131, + 103870490 + ], + "geometry": [ + { "lat": 40.8054085, "lon": -73.9983218 }, + { "lat": 40.8053895, "lon": -73.9984637 }, + { "lat": 40.8053516, "lon": -73.9986090 }, + { "lat": 40.8053201, "lon": -73.9987596 }, + { "lat": 40.8053097, "lon": -73.9988767 }, + { "lat": 40.8053001, "lon": -73.9990692 }, + { "lat": 40.8053000, "lon": -73.9991111 }, + { "lat": 40.8053039, "lon": -73.9992608 }, + { "lat": 40.8053224, "lon": -73.9994976 } + ], + "tags": { + "highway": "secondary", + "name": "Park Drive", + "tiger:cfcc": "A45", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 11632794, + "bounds": { + "minlat": 40.7976739, + "minlon": -73.9983958, + "maxlat": 40.7993136, + "maxlon": -73.9978300 + }, + "nodes": [ + 103870467, + 7468539772, + 103879141, + 4727867593, + 3809681027 + ], + "geometry": [ + { "lat": 40.7976739, "lon": -73.9978300 }, + { "lat": 40.7977724, "lon": -73.9978614 }, + { "lat": 40.7990132, "lon": -73.9982576 }, + { "lat": 40.7992254, "lon": -73.9983523 }, + { "lat": 40.7993136, "lon": -73.9983958 } + ], + "tags": { + "highway": "residential", + "name": "Park Drive", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11632813, + "bounds": { + "minlat": 40.7863953, + "minlon": -74.0208660, + "maxlat": 40.7876122, + "maxlon": -74.0182168 + }, + "nodes": [ + 103860943, + 7657468934, + 7657468932, + 103869017, + 7657468930, + 7657468911, + 103861961 + ], + "geometry": [ + { "lat": 40.7863953, "lon": -74.0182168 }, + { "lat": 40.7864268, "lon": -74.0183394 }, + { "lat": 40.7868957, "lon": -74.0193341 }, + { "lat": 40.7869240, "lon": -74.0193941 }, + { "lat": 40.7869570, "lon": -74.0194647 }, + { "lat": 40.7875838, "lon": -74.0208052 }, + { "lat": 40.7876122, "lon": -74.0208660 } + ], + "tags": { + "highway": "residential", + "name": "56th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "56th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632814, + "bounds": { + "minlat": 40.7847230, + "minlon": -74.0182168, + "maxlat": 40.7863953, + "maxlon": -74.0145371 + }, + "nodes": [ + 103855594, + 7657468973, + 7657468971, + 103879230, + 7657468945, + 7657468966, + 103862122, + 103879232, + 7657468956, + 103860943 + ], + "geometry": [ + { "lat": 40.7847230, "lon": -74.0145371 }, + { "lat": 40.7847646, "lon": -74.0146261 }, + { "lat": 40.7853943, "lon": -74.0159744 }, + { "lat": 40.7854406, "lon": -74.0160735 }, + { "lat": 40.7854829, "lon": -74.0161659 }, + { "lat": 40.7857254, "lon": -74.0166958 }, + { "lat": 40.7857599, "lon": -74.0167711 }, + { "lat": 40.7860733, "lon": -74.0174519 }, + { "lat": 40.7863605, "lon": -74.0180884 }, + { "lat": 40.7863953, "lon": -74.0182168 } + ], + "tags": { + "highway": "residential", + "name": "56th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "56th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632815, + "bounds": { + "minlat": 40.7832895, + "minlon": -74.0128074, + "maxlat": 40.7838907, + "maxlon": -74.0114244 + }, + "nodes": [ + 103879237, + 7658684736, + 4499303039 + ], + "geometry": [ + { "lat": 40.7832895, "lon": -74.0114244 }, + { "lat": 40.7833320, "lon": -74.0115223 }, + { "lat": 40.7838907, "lon": -74.0128074 } + ], + "tags": { + "highway": "residential", + "name": "56th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "56th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632834, + "bounds": { + "minlat": 40.7970464, + "minlon": -73.9943469, + "maxlat": 40.7971209, + "maxlon": -73.9942895 + }, + "nodes": [ + 103861843, + 2308993447 + ], + "geometry": [ + { "lat": 40.7970464, "lon": -73.9943469 }, + { "lat": 40.7971209, "lon": -73.9942895 } + ], + "tags": { + "highway": "residential", + "name": "Cove Lane North", + "name_1": "North Cove Lane", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Cove", + "tiger:name_base_1": "Cove", + "tiger:name_direction_prefix_1": "N", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Ln", + "tiger:name_type_1": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11632887, + "bounds": { + "minlat": 40.8106033, + "minlon": -74.0051509, + "maxlat": 40.8110082, + "maxlon": -74.0047420 + }, + "nodes": [ + 9570339744, + 103879741, + 7475993660, + 103865023 + ], + "geometry": [ + { "lat": 40.8110082, "lon": -74.0047420 }, + { "lat": 40.8106967, "lon": -74.0050441 }, + { "lat": 40.8106468, "lon": -74.0051014 }, + { "lat": 40.8106033, "lon": -74.0051509 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63;CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "State Route 63", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047" + } +}, +{ + "type": "way", + "id": 11632888, + "bounds": { + "minlat": 40.7744830, + "minlon": -74.0186660, + "maxlat": 40.7747946, + "maxlon": -74.0184328 + }, + "nodes": [ + 103879746, + 7320077967, + 103879748 + ], + "geometry": [ + { "lat": 40.7744830, "lon": -74.0186660 }, + { "lat": 40.7745267, "lon": -74.0186333 }, + { "lat": 40.7747946, "lon": -74.0184328 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Carroll Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Carroll", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11632930, + "bounds": { + "minlat": 40.7885103, + "minlon": -74.0156249, + "maxlat": 40.7908403, + "maxlon": -74.0137612 + }, + "nodes": [ + 103864951, + 7678103729, + 7678103731, + 103876899, + 7675458900, + 7568803783, + 6892169694, + 7675458902, + 103864123 + ], + "geometry": [ + { "lat": 40.7908403, "lon": -74.0137612 }, + { "lat": 40.7907913, "lon": -74.0138055 }, + { "lat": 40.7899396, "lon": -74.0144831 }, + { "lat": 40.7898680, "lon": -74.0145409 }, + { "lat": 40.7898054, "lon": -74.0145895 }, + { "lat": 40.7895385, "lon": -74.0147966 }, + { "lat": 40.7889478, "lon": -74.0152781 }, + { "lat": 40.7885826, "lon": -74.0155669 }, + { "lat": 40.7885103, "lon": -74.0156249 } + ], + "tags": { + "highway": "residential", + "name": "Harrison Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Harrison", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11632975, + "bounds": { + "minlat": 40.7784211, + "minlon": -74.0208091, + "maxlat": 40.7820219, + "maxlon": -74.0130405 + }, + "nodes": [ + 103858361, + 7468512659, + 7468512654, + 440243694, + 7613733570, + 5652754113, + 7613733581, + 103862582, + 7613768085, + 8267538510, + 7613768109, + 103855585, + 7613768114, + 8267580237, + 8267580264, + 7613768133, + 103880305, + 7613768136, + 8267538512, + 12101654875, + 8267580239, + 8267580266, + 8267538515, + 13230019375 + ], + "geometry": [ + { "lat": 40.7784211, "lon": -74.0130405 }, + { "lat": 40.7784629, "lon": -74.0131295 }, + { "lat": 40.7793549, "lon": -74.0150567 }, + { "lat": 40.7793998, "lon": -74.0151530 }, + { "lat": 40.7794401, "lon": -74.0152394 }, + { "lat": 40.7796902, "lon": -74.0157754 }, + { "lat": 40.7798912, "lon": -74.0161972 }, + { "lat": 40.7799364, "lon": -74.0162922 }, + { "lat": 40.7799770, "lon": -74.0163804 }, + { "lat": 40.7804351, "lon": -74.0173764 }, + { "lat": 40.7805969, "lon": -74.0177281 }, + { "lat": 40.7806312, "lon": -74.0178027 }, + { "lat": 40.7806746, "lon": -74.0178965 }, + { "lat": 40.7808485, "lon": -74.0182720 }, + { "lat": 40.7811334, "lon": -74.0188872 }, + { "lat": 40.7813119, "lon": -74.0192726 }, + { "lat": 40.7813429, "lon": -74.0193394 }, + { "lat": 40.7813867, "lon": -74.0194348 }, + { "lat": 40.7814610, "lon": -74.0195991 }, + { "lat": 40.7816435, "lon": -74.0199913 }, + { "lat": 40.7817970, "lon": -74.0203234 }, + { "lat": 40.7819191, "lon": -74.0205884 }, + { "lat": 40.7819612, "lon": -74.0206790 }, + { "lat": 40.7820219, "lon": -74.0208091 } + ], + "tags": { + "highway": "tertiary", + "lit": "yes", + "name": "49th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "49th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07087", + "tiger:zip_right": "07087" + } +}, +{ + "type": "way", + "id": 11633013, + "bounds": { + "minlat": 40.8199571, + "minlon": -74.0153116, + "maxlat": 40.8204880, + "maxlon": -74.0145312 + }, + "nodes": [ + 103880411, + 8424770716, + 103880412 + ], + "geometry": [ + { "lat": 40.8199571, "lon": -74.0145312 }, + { "lat": 40.8203253, "lon": -74.0150725 }, + { "lat": 40.8204880, "lon": -74.0153116 } + ], + "tags": { + "highway": "residential", + "name": "94th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "94th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633039, + "bounds": { + "minlat": 40.8028736, + "minlon": -74.0156669, + "maxlat": 40.8033318, + "maxlon": -74.0153073 + }, + "nodes": [ + 103880534, + 7474498886, + 103880536 + ], + "geometry": [ + { "lat": 40.8028736, "lon": -74.0156669 }, + { "lat": 40.8032939, "lon": -74.0153371 }, + { "lat": 40.8033318, "lon": -74.0153073 } + ], + "tags": { + "highway": "residential", + "name": "Kiesel Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Kiesel", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633047, + "bounds": { + "minlat": 40.8099960, + "minlon": -74.0040020, + "maxlat": 40.8106774, + "maxlon": -74.0035011 + }, + "nodes": [ + 103872944, + 7475993654, + 2813943259, + 6896054290, + 5481884071, + 103865021 + ], + "geometry": [ + { "lat": 40.8106774, "lon": -74.0035011 }, + { "lat": 40.8105968, "lon": -74.0035779 }, + { "lat": 40.8105790, "lon": -74.0035949 }, + { "lat": 40.8105214, "lon": -74.0036351 }, + { "lat": 40.8103126, "lon": -74.0037809 }, + { "lat": 40.8099960, "lon": -74.0040020 } + ], + "tags": { + "highway": "residential", + "name": "3rd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633048, + "bounds": { + "minlat": 40.7996117, + "minlon": -74.0113246, + "maxlat": 40.8010706, + "maxlon": -74.0101608 + }, + "nodes": [ + 103880577, + 7678636823, + 7678636800, + 103867939 + ], + "geometry": [ + { "lat": 40.8010706, "lon": -74.0101608 }, + { "lat": 40.8010191, "lon": -74.0102019 }, + { "lat": 40.7996675, "lon": -74.0112801 }, + { "lat": 40.7996117, "lon": -74.0113246 } + ], + "tags": { + "highway": "residential", + "name": "3rd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633049, + "bounds": { + "minlat": 40.8024385, + "minlon": -74.0093347, + "maxlat": 40.8028059, + "maxlon": -74.0090481 + }, + "nodes": [ + 103880581, + 7474656096, + 103868237 + ], + "geometry": [ + { "lat": 40.8024385, "lon": -74.0093347 }, + { "lat": 40.8027715, "lon": -74.0090749 }, + { "lat": 40.8028059, "lon": -74.0090481 } + ], + "tags": { + "highway": "residential", + "name": "3rd Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633051, + "bounds": { + "minlat": 40.8037280, + "minlon": -74.0060170, + "maxlat": 40.8040780, + "maxlon": -74.0051500 + }, + "nodes": [ + 103866678, + 103880593 + ], + "geometry": [ + { "lat": 40.8037280, "lon": -74.0051500 }, + { "lat": 40.8040780, "lon": -74.0060170 } + ], + "tags": { + "highway": "residential", + "name": "82nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "82nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633052, + "bounds": { + "minlat": 40.8053528, + "minlon": -74.0135670, + "maxlat": 40.8072430, + "maxlon": -74.0092212 + }, + "nodes": [ + 103880597, + 7475979746, + 5558419785, + 103872919, + 5558419786, + 7475979759, + 7475979762, + 103875670 + ], + "geometry": [ + { "lat": 40.8053528, "lon": -74.0092212 }, + { "lat": 40.8053828, "lon": -74.0092950 }, + { "lat": 40.8056481, "lon": -74.0099731 }, + { "lat": 40.8056778, "lon": -74.0100960 }, + { "lat": 40.8057115, "lon": -74.0102293 }, + { "lat": 40.8061524, "lon": -74.0112018 }, + { "lat": 40.8072170, "lon": -74.0135106 }, + { "lat": 40.8072430, "lon": -74.0135670 } + ], + "tags": { + "highway": "residential", + "name": "82nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "82nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633053, + "bounds": { + "minlat": 40.8069680, + "minlon": -74.0157231, + "maxlat": 40.8078459, + "maxlon": -74.0137740 + }, + "nodes": [ + 103860068, + 103875668 + ], + "geometry": [ + { "lat": 40.8078459, "lon": -74.0157231 }, + { "lat": 40.8069680, "lon": -74.0137740 } + ], + "tags": { + "highway": "residential", + "name": "82nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "82nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047", + "tiger:zip_right": "07047", + "tiger:zip_right_1": "07047" + } +}, +{ + "type": "way", + "id": 11633055, + "bounds": { + "minlat": 40.7927216, + "minlon": -74.0050181, + "maxlat": 40.7942181, + "maxlon": -74.0018674 + }, + "nodes": [ + 103862622, + 7653989002, + 7679053326, + 103880618, + 7653989004, + 103880616, + 7468583755, + 9585091175 + ], + "geometry": [ + { "lat": 40.7942181, "lon": -74.0050181 }, + { "lat": 40.7941793, "lon": -74.0049361 }, + { "lat": 40.7936182, "lon": -74.0037573 }, + { "lat": 40.7935200, "lon": -74.0035510 }, + { "lat": 40.7931863, "lon": -74.0028599 }, + { "lat": 40.7931472, "lon": -74.0027790 }, + { "lat": 40.7931106, "lon": -74.0027007 }, + { "lat": 40.7927216, "lon": -74.0018674 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "71st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "71st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633056, + "bounds": { + "minlat": 40.8003101, + "minlon": -74.0190375, + "maxlat": 40.8006994, + "maxlon": -74.0181823 + }, + "nodes": [ + 103875588, + 103878760 + ], + "geometry": [ + { "lat": 40.8006994, "lon": -74.0190375 }, + { "lat": 40.8003101, "lon": -74.0181823 } + ], + "tags": { + "highway": "residential", + "name": "71st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "71st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633058, + "bounds": { + "minlat": 40.8008650, + "minlon": -74.0211533, + "maxlat": 40.8014700, + "maxlon": -74.0195950 + }, + "nodes": [ + 103880634, + 13525597028, + 103867725 + ], + "geometry": [ + { "lat": 40.8008650, "lon": -74.0195950 }, + { "lat": 40.8014493, "lon": -74.0211000 }, + { "lat": 40.8014700, "lon": -74.0211533 } + ], + "tags": { + "highway": "residential", + "name": "71st Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "71st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633079, + "bounds": { + "minlat": 40.7714190, + "minlon": -74.0219091, + "maxlat": 40.7721519, + "maxlon": -74.0192526 + }, + "nodes": [ + 103868669, + 4999662160, + 103862024, + 103860202, + 4999662163, + 103866094, + 4999662167, + 5813591542, + 440243668 + ], + "geometry": [ + { "lat": 40.7714190, "lon": -74.0192526 }, + { "lat": 40.7714995, "lon": -74.0195761 }, + { "lat": 40.7716501, "lon": -74.0201569 }, + { "lat": 40.7718263, "lon": -74.0207998 }, + { "lat": 40.7718646, "lon": -74.0209492 }, + { "lat": 40.7718831, "lon": -74.0210138 }, + { "lat": 40.7719065, "lon": -74.0210934 }, + { "lat": 40.7721057, "lon": -74.0217964 }, + { "lat": 40.7721519, "lon": -74.0219091 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "tertiary", + "lanes": "2", + "name": "Highwood Terrace", + "oneway": "no", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Highwood", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_left_1": "07087", + "tiger:zip_right": "07086", + "tiger:zip_right_1": "07087" + } +}, +{ + "type": "way", + "id": 11633094, + "bounds": { + "minlat": 40.7961691, + "minlon": -74.0171194, + "maxlat": 40.7976923, + "maxlon": -74.0158813 + }, + "nodes": [ + 103867998, + 7474498774, + 7474498747, + 103878376 + ], + "geometry": [ + { "lat": 40.7976923, "lon": -74.0158813 }, + { "lat": 40.7976475, "lon": -74.0159177 }, + { "lat": 40.7962195, "lon": -74.0170784 }, + { "lat": 40.7961691, "lon": -74.0171194 } + ], + "tags": { + "highway": "residential", + "name": "Bergenwood Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633097, + "bounds": { + "minlat": 40.8096265, + "minlon": -74.0072430, + "maxlat": 40.8098006, + "maxlon": -74.0071328 + }, + "nodes": [ + 103872930, + 2813943250 + ], + "geometry": [ + { "lat": 40.8096265, "lon": -74.0072430 }, + { "lat": 40.8098006, "lon": -74.0071328 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081270", + "highway": "tertiary", + "name": "Bergenwood Avenue", + "oneway": "yes", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenwood", + "tiger:name_base_1": "State Route 501", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633098, + "bounds": { + "minlat": 40.7945120, + "minlon": -74.0180348, + "maxlat": 40.7958326, + "maxlon": -74.0172546 + }, + "nodes": [ + 103858373, + 7473610386, + 5558419791, + 5558419792, + 103880880 + ], + "geometry": [ + { "lat": 40.7945120, "lon": -74.0179880 }, + { "lat": 40.7946200, "lon": -74.0180312 }, + { "lat": 40.7946291, "lon": -74.0180348 }, + { "lat": 40.7947092, "lon": -74.0180059 }, + { "lat": 40.7958326, "lon": -74.0172546 } + ], + "tags": { + "highway": "residential", + "name": "Bergenwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633105, + "bounds": { + "minlat": 40.8066433, + "minlon": -74.0040394, + "maxlat": 40.8069774, + "maxlon": -74.0031789 + }, + "nodes": [ + 103880915, + 7610879144, + 4727867673, + 103866682 + ], + "geometry": [ + { "lat": 40.8069774, "lon": -74.0040394 }, + { "lat": 40.8067919, "lon": -74.0035616 }, + { "lat": 40.8066860, "lon": -74.0032887 }, + { "lat": 40.8066433, "lon": -74.0031789 } + ], + "tags": { + "highway": "residential", + "name": "87th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "87th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633145, + "bounds": { + "minlat": 40.8044530, + "minlon": -73.9959723, + "maxlat": 40.8047376, + "maxlon": -73.9956245 + }, + "nodes": [ + 103881116, + 103881118 + ], + "geometry": [ + { "lat": 40.8044530, "lon": -73.9956245 }, + { "lat": 40.8047376, "lon": -73.9959723 } + ], + "tags": { + "highway": "residential", + "name": "Clement Street", + "name_1": "Clement Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Clement", + "tiger:name_base_1": "Clement", + "tiger:name_type": "St", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11633180, + "bounds": { + "minlat": 40.7993020, + "minlon": -74.0159507, + "maxlat": 40.7998063, + "maxlon": -74.0146700 + }, + "nodes": [ + 103872900, + 7474498837, + 103881299, + 2814472264, + 103873537 + ], + "geometry": [ + { "lat": 40.7993020, "lon": -74.0146700 }, + { "lat": 40.7993502, "lon": -74.0147723 }, + { "lat": 40.7998063, "lon": -74.0157402 }, + { "lat": 40.7996703, "lon": -74.0158494 }, + { "lat": 40.7995472, "lon": -74.0159507 } + ], + "tags": { + "highway": "residential", + "name": "Kelly Lane", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Kelly", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633186, + "bounds": { + "minlat": 40.7995517, + "minlon": -74.0081390, + "maxlat": 40.7997300, + "maxlon": -74.0077676 + }, + "nodes": [ + 103866658, + 3809706342, + 2577450300 + ], + "geometry": [ + { "lat": 40.7997300, "lon": -74.0081390 }, + { "lat": 40.7996886, "lon": -74.0080533 }, + { "lat": 40.7995517, "lon": -74.0077676 } + ], + "tags": { + "highway": "residential", + "name": "76th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633187, + "bounds": { + "minlat": 40.8000420, + "minlon": -74.0094362, + "maxlat": 40.8007390, + "maxlon": -74.0079050 + }, + "nodes": [ + 103866660, + 7678629975, + 7678629977, + 103881357, + 7678636826, + 103873559 + ], + "geometry": [ + { "lat": 40.8000420, "lon": -74.0079050 }, + { "lat": 40.8001056, "lon": -74.0080438 }, + { "lat": 40.8003855, "lon": -74.0086549 }, + { "lat": 40.8004130, "lon": -74.0087150 }, + { "lat": 40.8004449, "lon": -74.0087856 }, + { "lat": 40.8007390, "lon": -74.0094362 } + ], + "tags": { + "highway": "tertiary", + "name": "76th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633192, + "bounds": { + "minlat": 40.7868487, + "minlon": -74.0003848, + "maxlat": 40.7874087, + "maxlon": -73.9999332 + }, + "nodes": [ + 103881083, + 103881393 + ], + "geometry": [ + { "lat": 40.7874087, "lon": -74.0003848 }, + { "lat": 40.7868487, "lon": -73.9999332 } + ], + "tags": { + "highway": "residential", + "name": "Fulton Court", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Fulton", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633214, + "bounds": { + "minlat": 40.7896161, + "minlon": -74.0042145, + "maxlat": 40.7902030, + "maxlon": -74.0037520 + }, + "nodes": [ + 103881603, + 7468537708, + 7468537674, + 103878358 + ], + "geometry": [ + { "lat": 40.7896161, "lon": -74.0042145 }, + { "lat": 40.7896731, "lon": -74.0041696 }, + { "lat": 40.7901563, "lon": -74.0037888 }, + { "lat": 40.7902030, "lon": -74.0037520 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Lincoln Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633223, + "bounds": { + "minlat": 40.8011793, + "minlon": -74.0169789, + "maxlat": 40.8020278, + "maxlon": -74.0163249 + }, + "nodes": [ + 103876552, + 7474498876, + 6820935015 + ], + "geometry": [ + { "lat": 40.8011793, "lon": -74.0169789 }, + { "lat": 40.8012118, "lon": -74.0169538 }, + { "lat": 40.8020278, "lon": -74.0163249 } + ], + "tags": { + "highway": "residential", + "name": "Kiesel Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Kiesel", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633248, + "bounds": { + "minlat": 40.7897950, + "minlon": -74.0097940, + "maxlat": 40.7918503, + "maxlon": -74.0072944 + }, + "nodes": [ + 103878361, + 7678242737, + 7678242739, + 103881737, + 103881735, + 2845226048, + 103881733, + 2845226047, + 7678242722, + 103864414, + 7678131188, + 7678131190, + 103881731, + 7678131170, + 7678131158, + 103872294 + ], + "geometry": [ + { "lat": 40.7918503, "lon": -74.0072944 }, + { "lat": 40.7918252, "lon": -74.0073754 }, + { "lat": 40.7915656, "lon": -74.0082118 }, + { "lat": 40.7915414, "lon": -74.0082898 }, + { "lat": 40.7914804, "lon": -74.0084096 }, + { "lat": 40.7914193, "lon": -74.0084742 }, + { "lat": 40.7913531, "lon": -74.0085394 }, + { "lat": 40.7911743, "lon": -74.0087026 }, + { "lat": 40.7910363, "lon": -74.0088093 }, + { "lat": 40.7909769, "lon": -74.0088552 }, + { "lat": 40.7909369, "lon": -74.0088864 }, + { "lat": 40.7904544, "lon": -74.0092629 }, + { "lat": 40.7903889, "lon": -74.0093140 }, + { "lat": 40.7903277, "lon": -74.0093634 }, + { "lat": 40.7898475, "lon": -74.0097516 }, + { "lat": 40.7897950, "lon": -74.0097940 } + ], + "tags": { + "highway": "residential", + "name": "Dewey Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Dewey", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633265, + "bounds": { + "minlat": 40.7997744, + "minlon": -74.0206140, + "maxlat": 40.8004700, + "maxlon": -74.0197590 + }, + "nodes": [ + 103868024, + 103881831, + 103881833 + ], + "geometry": [ + { "lat": 40.7997744, "lon": -74.0206140 }, + { "lat": 40.8003490, "lon": -74.0201170 }, + { "lat": 40.8004700, "lon": -74.0197590 } + ], + "tags": { + "highway": "residential", + "name": "Columbia Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633267, + "bounds": { + "minlat": 40.8083450, + "minlon": -74.0134010, + "maxlat": 40.8101540, + "maxlon": -74.0118530 + }, + "nodes": [ + 103876408, + 103867170, + 103881841 + ], + "geometry": [ + { "lat": 40.8083450, "lon": -74.0134010 }, + { "lat": 40.8093822, "lon": -74.0125190 }, + { "lat": 40.8101540, "lon": -74.0118530 } + ], + "tags": { + "highway": "residential", + "name": "Columbia Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633268, + "bounds": { + "minlat": 40.8121450, + "minlon": -74.0106801, + "maxlat": 40.8138770, + "maxlon": -74.0090370 + }, + "nodes": [ + 6266486504, + 12456223752, + 103865034, + 12456262134, + 103881844 + ], + "geometry": [ + { "lat": 40.8121450, "lon": -74.0106801 }, + { "lat": 40.8131580, "lon": -74.0097516 }, + { "lat": 40.8132156, "lon": -74.0096988 }, + { "lat": 40.8132629, "lon": -74.0096514 }, + { "lat": 40.8138770, "lon": -74.0090370 } + ], + "tags": { + "highway": "residential", + "name": "Columbia Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633306, + "bounds": { + "minlat": 40.7724734, + "minlon": -74.0189375, + "maxlat": 40.7737968, + "maxlon": -74.0158908 + }, + "nodes": [ + 103858671, + 4999662114, + 7320395120, + 103882045 + ], + "geometry": [ + { "lat": 40.7724734, "lon": -74.0158908 }, + { "lat": 40.7725175, "lon": -74.0160010 }, + { "lat": 40.7737682, "lon": -74.0188719 }, + { "lat": 40.7737968, "lon": -74.0189375 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Eldorado Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Eldorado", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11633318, + "bounds": { + "minlat": 40.7999464, + "minlon": -74.0120501, + "maxlat": 40.8014036, + "maxlon": -74.0108824 + }, + "nodes": [ + 103867941, + 7678636811, + 7678636820, + 103881359 + ], + "geometry": [ + { "lat": 40.7999464, "lon": -74.0120501 }, + { "lat": 40.7999957, "lon": -74.0120106 }, + { "lat": 40.8013476, "lon": -74.0109273 }, + { "lat": 40.8014036, "lon": -74.0108824 } + ], + "tags": { + "highway": "residential", + "name": "4th Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "4th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633319, + "bounds": { + "minlat": 40.8015320, + "minlon": -74.0111573, + "maxlat": 40.8084616, + "maxlon": -74.0060642 + }, + "nodes": [ + 103881361, + 7474656106, + 7474656077, + 7474656078, + 7474656080, + 103868234, + 5344617804, + 7474656090, + 7474656118, + 103876388, + 103880595, + 103867151, + 103880916, + 7475993537, + 103872655 + ], + "geometry": [ + { "lat": 40.8015320, "lon": -74.0111573 }, + { "lat": 40.8015897, "lon": -74.0111107 }, + { "lat": 40.8027768, "lon": -74.0101515 }, + { "lat": 40.8028825, "lon": -74.0100363 }, + { "lat": 40.8031194, "lon": -74.0098418 }, + { "lat": 40.8031595, "lon": -74.0098089 }, + { "lat": 40.8032190, "lon": -74.0097423 }, + { "lat": 40.8032681, "lon": -74.0096989 }, + { "lat": 40.8037686, "lon": -74.0093105 }, + { "lat": 40.8038120, "lon": -74.0092768 }, + { "lat": 40.8050250, "lon": -74.0083950 }, + { "lat": 40.8065116, "lon": -74.0074066 }, + { "lat": 40.8079263, "lon": -74.0064448 }, + { "lat": 40.8079869, "lon": -74.0064017 }, + { "lat": 40.8084616, "lon": -74.0060642 } + ], + "tags": { + "highway": "residential", + "name": "4th Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "4th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633321, + "bounds": { + "minlat": 40.7738800, + "minlon": -74.0196410, + "maxlat": 40.7758223, + "maxlon": -74.0152685 + }, + "nodes": [ + 103882084, + 5909817458, + 7320622382, + 103874030, + 7320622366, + 103882080, + 4999662123, + 103858697 + ], + "geometry": [ + { "lat": 40.7758223, "lon": -74.0196410 }, + { "lat": 40.7757928, "lon": -74.0195469 }, + { "lat": 40.7748045, "lon": -74.0173439 }, + { "lat": 40.7747727, "lon": -74.0172704 }, + { "lat": 40.7747453, "lon": -74.0172108 }, + { "lat": 40.7743634, "lon": -74.0163805 }, + { "lat": 40.7739205, "lon": -74.0153827 }, + { "lat": 40.7738800, "lon": -74.0152685 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09111115", + "highway": "tertiary", + "name": "Clifton Terrace", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Clifton", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11633351, + "bounds": { + "minlat": 40.8057070, + "minlon": -73.9965920, + "maxlat": 40.8065460, + "maxlon": -73.9956010 + }, + "nodes": [ + 103882222, + 103881124 + ], + "geometry": [ + { "lat": 40.8065460, "lon": -73.9965920 }, + { "lat": 40.8057070, "lon": -73.9956010 } + ], + "tags": { + "highway": "residential", + "name": "Marks Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Marks", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "59608642", + "tiger:upload_uuid": "bulk_upload.pl-632afc29-2613-4702-a9d8-dcf03687ae14" + } +}, +{ + "type": "way", + "id": 11633368, + "bounds": { + "minlat": 40.8204880, + "minlon": -74.0155095, + "maxlat": 40.8220640, + "maxlon": -74.0131000 + }, + "nodes": [ + 103882282, + 103880412, + 8424780023, + 103875815, + 103882284 + ], + "geometry": [ + { "lat": 40.8206674, "lon": -74.0155095 }, + { "lat": 40.8204880, "lon": -74.0153116 }, + { "lat": 40.8205878, "lon": -74.0151830 }, + { "lat": 40.8217330, "lon": -74.0137080 }, + { "lat": 40.8220640, "lon": -74.0131000 } + ], + "tags": { + "highway": "residential", + "name": "Fairview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633371, + "bounds": { + "minlat": 40.8084009, + "minlon": -74.0028262, + "maxlat": 40.8087334, + "maxlon": -74.0019807 + }, + "nodes": [ + 103882301, + 7475993748, + 5481884748, + 5481884755, + 4727867678, + 103866684 + ], + "geometry": [ + { "lat": 40.8087334, "lon": -74.0028262 }, + { "lat": 40.8087087, "lon": -74.0027645 }, + { "lat": 40.8085671, "lon": -74.0024099 }, + { "lat": 40.8084947, "lon": -74.0022197 }, + { "lat": 40.8084409, "lon": -74.0020839 }, + { "lat": 40.8084009, "lon": -74.0019807 } + ], + "tags": { + "highway": "residential", + "name": "90th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "90th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633372, + "bounds": { + "minlat": 40.8110545, + "minlon": -74.0096548, + "maxlat": 40.8118618, + "maxlon": -74.0081668 + }, + "nodes": [ + 103876816, + 7475993577, + 103858986, + 103875630, + 11080435627, + 12456262141 + ], + "geometry": [ + { "lat": 40.8110545, "lon": -74.0081668 }, + { "lat": 40.8110894, "lon": -74.0082371 }, + { "lat": 40.8114499, "lon": -74.0089121 }, + { "lat": 40.8117553, "lon": -74.0094815 }, + { "lat": 40.8118402, "lon": -74.0096419 }, + { "lat": 40.8118618, "lon": -74.0096548 } + ], + "tags": { + "highway": "residential", + "name": "90th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "90th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11633378, + "bounds": { + "minlat": 40.8145966, + "minlon": -74.0111778, + "maxlat": 40.8153893, + "maxlon": -74.0095902 + }, + "nodes": [ + 440208135, + 12456261936, + 6901964070, + 13260789468, + 103882328 + ], + "geometry": [ + { "lat": 40.8145966, "lon": -74.0095902 }, + { "lat": 40.8146515, "lon": -74.0097105 }, + { "lat": 40.8150150, "lon": -74.0105119 }, + { "lat": 40.8150912, "lon": -74.0106475 }, + { "lat": 40.8153893, "lon": -74.0111778 } + ], + "tags": { + "highway": "residential", + "name": "Division Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Division", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11633398, + "bounds": { + "minlat": 40.8062401, + "minlon": -74.0131480, + "maxlat": 40.8077767, + "maxlon": -74.0096820 + }, + "nodes": [ + 103875674, + 7475993412, + 7475993395, + 103876458, + 7475993394, + 7475993398, + 7475993415, + 103872922 + ], + "geometry": [ + { "lat": 40.8077767, "lon": -74.0131480 }, + { "lat": 40.8077476, "lon": -74.0130865 }, + { "lat": 40.8073763, "lon": -74.0122570 }, + { "lat": 40.8073800, "lon": -74.0121953 }, + { "lat": 40.8073606, "lon": -74.0120985 }, + { "lat": 40.8066758, "lon": -74.0106218 }, + { "lat": 40.8062960, "lon": -74.0098027 }, + { "lat": 40.8062401, "lon": -74.0096820 } + ], + "tags": { + "highway": "residential", + "name": "83rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "83rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633402, + "bounds": { + "minlat": 40.8086842, + "minlon": -74.0206149, + "maxlat": 40.8111538, + "maxlon": -74.0156401 + }, + "nodes": [ + 103858998, + 103882402, + 7760005498, + 1106969300, + 1106968379, + 1106968388, + 1106968384, + 1106968386, + 1106968382, + 103882417, + 103882415, + 103882413, + 103882411, + 8218960537, + 103882409, + 6892714559, + 7710797404, + 5813807525, + 7549492874 + ], + "geometry": [ + { "lat": 40.8111538, "lon": -74.0206149 }, + { "lat": 40.8108314, "lon": -74.0197322 }, + { "lat": 40.8107299, "lon": -74.0193912 }, + { "lat": 40.8107210, "lon": -74.0193614 }, + { "lat": 40.8106963, "lon": -74.0192694 }, + { "lat": 40.8106882, "lon": -74.0192056 }, + { "lat": 40.8106861, "lon": -74.0190963 }, + { "lat": 40.8106902, "lon": -74.0189710 }, + { "lat": 40.8106895, "lon": -74.0189039 }, + { "lat": 40.8106819, "lon": -74.0188383 }, + { "lat": 40.8106697, "lon": -74.0187741 }, + { "lat": 40.8106430, "lon": -74.0187060 }, + { "lat": 40.8105680, "lon": -74.0185730 }, + { "lat": 40.8100830, "lon": -74.0178331 }, + { "lat": 40.8095710, "lon": -74.0170520 }, + { "lat": 40.8090458, "lon": -74.0162196 }, + { "lat": 40.8090018, "lon": -74.0161499 }, + { "lat": 40.8089461, "lon": -74.0160616 }, + { "lat": 40.8086842, "lon": -74.0156401 } + ], + "tags": { + "highway": "tertiary", + "name": "83rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "83rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633406, + "bounds": { + "minlat": 40.8040613, + "minlon": -73.9961787, + "maxlat": 40.8052152, + "maxlon": -73.9947830 + }, + "nodes": [ + 103861215, + 3575305219, + 103881116, + 752619025, + 5481963166, + 103874476 + ], + "geometry": [ + { "lat": 40.8040613, "lon": -73.9961787 }, + { "lat": 40.8043459, "lon": -73.9957808 }, + { "lat": 40.8044530, "lon": -73.9956245 }, + { "lat": 40.8048660, "lon": -73.9951049 }, + { "lat": 40.8050347, "lon": -73.9949494 }, + { "lat": 40.8052152, "lon": -73.9947830 } + ], + "tags": { + "highway": "residential", + "name": "Wall Street", + "name_1": "Valley Road", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Wall", + "tiger:name_base_1": "Valley", + "tiger:name_type": "St", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633416, + "bounds": { + "minlat": 40.7970464, + "minlon": -73.9958248, + "maxlat": 40.7975845, + "maxlon": -73.9943469 + }, + "nodes": [ + 103861714, + 103882465, + 5481963218, + 10181882783, + 103861843 + ], + "geometry": [ + { "lat": 40.7975845, "lon": -73.9958248 }, + { "lat": 40.7974333, "lon": -73.9953996 }, + { "lat": 40.7971364, "lon": -73.9945906 }, + { "lat": 40.7970936, "lon": -73.9944747 }, + { "lat": 40.7970464, "lon": -73.9943469 } + ], + "tags": { + "highway": "residential", + "name": "Cove Lane", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Cove", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633432, + "bounds": { + "minlat": 40.7895036, + "minlon": -74.0006627, + "maxlat": 40.7900091, + "maxlon": -73.9998307 + }, + "nodes": [ + 103861689, + 103882565, + 752619818, + 752619482 + ], + "geometry": [ + { "lat": 40.7895036, "lon": -73.9998307 }, + { "lat": 40.7898225, "lon": -74.0005439 }, + { "lat": 40.7898980, "lon": -74.0006254 }, + { "lat": 40.7900091, "lon": -74.0006627 } + ], + "tags": { + "highway": "tertiary", + "name": "Ferry Road", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Ferry", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11633517, + "bounds": { + "minlat": 40.8079638, + "minlon": -73.9996778, + "maxlat": 40.8087622, + "maxlon": -73.9985456 + }, + "nodes": [ + 440208111, + 103869237 + ], + "geometry": [ + { "lat": 40.8087622, "lon": -73.9985456 }, + { "lat": 40.8079638, "lon": -73.9996778 } + ], + "tags": { + "highway": "residential", + "name": "Fulton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Fulton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633520, + "bounds": { + "minlat": 40.7888563, + "minlon": -73.9995492, + "maxlat": 40.7892024, + "maxlon": -73.9987507 + }, + "nodes": [ + 103883212, + 103881082, + 103870185, + 103883214 + ], + "geometry": [ + { "lat": 40.7888563, "lon": -73.9987507 }, + { "lat": 40.7890707, "lon": -73.9992455 }, + { "lat": 40.7891400, "lon": -73.9994052 }, + { "lat": 40.7892024, "lon": -73.9995492 } + ], + "tags": { + "highway": "residential", + "name": "Lydia Drive", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Lydia", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11633521, + "bounds": { + "minlat": 40.7885682, + "minlon": -73.9989682, + "maxlat": 40.7904034, + "maxlon": -73.9978819 + }, + "nodes": [ + 103883221, + 11073153234, + 103883223, + 5555494170, + 103883225, + 5555494169, + 103883227, + 308692917, + 5555494173, + 103883212, + 103883229 + ], + "geometry": [ + { "lat": 40.7904034, "lon": -73.9988956 }, + { "lat": 40.7903865, "lon": -73.9988600 }, + { "lat": 40.7901305, "lon": -73.9983198 }, + { "lat": 40.7899835, "lon": -73.9979606 }, + { "lat": 40.7899495, "lon": -73.9978819 }, + { "lat": 40.7899263, "lon": -73.9978997 }, + { "lat": 40.7896758, "lon": -73.9980921 }, + { "lat": 40.7894183, "lon": -73.9983323 }, + { "lat": 40.7889479, "lon": -73.9986825 }, + { "lat": 40.7888563, "lon": -73.9987507 }, + { "lat": 40.7885682, "lon": -73.9989682 } + ], + "tags": { + "highway": "residential", + "name": "Lydia Drive", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Lydia", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_left_1": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633523, + "bounds": { + "minlat": 40.7874888, + "minlon": -74.0230558, + "maxlat": 40.7944400, + "maxlon": -74.0177550 + }, + "nodes": [ + 103883250, + 7472526318, + 7472526320, + 103879222, + 7473576476, + 7473576478, + 103869677, + 7473610221, + 5474152628, + 5566717059, + 6896058832, + 7473610207, + 103883252, + 7660952966, + 7660952964, + 103864134, + 7660979512, + 7660979514, + 103876885, + 7473610364, + 7473610360, + 103864963, + 7473610359, + 103883255, + 7473610373, + 103872881 + ], + "geometry": [ + { "lat": 40.7874888, "lon": -74.0230558 }, + { "lat": 40.7875479, "lon": -74.0230124 }, + { "lat": 40.7883164, "lon": -74.0224788 }, + { "lat": 40.7883647, "lon": -74.0224447 }, + { "lat": 40.7884231, "lon": -74.0224011 }, + { "lat": 40.7888663, "lon": -74.0220933 }, + { "lat": 40.7889154, "lon": -74.0220592 }, + { "lat": 40.7889891, "lon": -74.0220008 }, + { "lat": 40.7897016, "lon": -74.0214364 }, + { "lat": 40.7899458, "lon": -74.0212418 }, + { "lat": 40.7900939, "lon": -74.0211228 }, + { "lat": 40.7902914, "lon": -74.0209687 }, + { "lat": 40.7903290, "lon": -74.0209393 }, + { "lat": 40.7903696, "lon": -74.0209069 }, + { "lat": 40.7908318, "lon": -74.0205375 }, + { "lat": 40.7908929, "lon": -74.0204887 }, + { "lat": 40.7909384, "lon": -74.0204518 }, + { "lat": 40.7917658, "lon": -74.0197802 }, + { "lat": 40.7918181, "lon": -74.0197378 }, + { "lat": 40.7918719, "lon": -74.0196951 }, + { "lat": 40.7930648, "lon": -74.0187473 }, + { "lat": 40.7930980, "lon": -74.0186870 }, + { "lat": 40.7931457, "lon": -74.0186196 }, + { "lat": 40.7942670, "lon": -74.0177550 }, + { "lat": 40.7943743, "lon": -74.0179709 }, + { "lat": 40.7944400, "lon": -74.0181030 } + ], + "tags": { + "highway": "residential", + "name": "Jefferson Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Jefferson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633580, + "bounds": { + "minlat": 40.8038350, + "minlon": -74.0180831, + "maxlat": 40.8050750, + "maxlon": -74.0149080 + }, + "nodes": [ + 103876441, + 12819094251, + 103867733 + ], + "geometry": [ + { "lat": 40.8038350, "lon": -74.0149080 }, + { "lat": 40.8049428, "lon": -74.0177432 }, + { "lat": 40.8050750, "lon": -74.0180831 } + ], + "tags": { + "highway": "residential", + "name": "77th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "77th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633619, + "bounds": { + "minlat": 40.7683518, + "minlon": -74.0194620, + "maxlat": 40.7707872, + "maxlon": -74.0176068 + }, + "nodes": [ + 103872510, + 4999662139, + 4999662091, + 4999662084, + 103883726, + 4999662145, + 103864076 + ], + "geometry": [ + { "lat": 40.7707872, "lon": -74.0176068 }, + { "lat": 40.7707159, "lon": -74.0176708 }, + { "lat": 40.7704643, "lon": -74.0178602 }, + { "lat": 40.7694890, "lon": -74.0185939 }, + { "lat": 40.7694409, "lon": -74.0186323 }, + { "lat": 40.7683855, "lon": -74.0194356 }, + { "lat": 40.7683518, "lon": -74.0194620 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "King Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "King", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11633625, + "bounds": { + "minlat": 40.7884903, + "minlon": -74.0012842, + "maxlat": 40.7898225, + "maxlon": -74.0005439 + }, + "nodes": [ + 103861676, + 308679607, + 103883735, + 3659305790, + 5482013239, + 103882565 + ], + "geometry": [ + { "lat": 40.7884903, "lon": -74.0012842 }, + { "lat": 40.7886459, "lon": -74.0012630 }, + { "lat": 40.7888891, "lon": -74.0012063 }, + { "lat": 40.7893183, "lon": -74.0008557 }, + { "lat": 40.7894596, "lon": -74.0007683 }, + { "lat": 40.7898225, "lon": -74.0005439 } + ], + "tags": { + "highway": "service", + "name": "Farragut Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Farragut", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633632, + "bounds": { + "minlat": 40.7900997, + "minlon": -74.0160362, + "maxlat": 40.7913880, + "maxlon": -74.0150200 + }, + "nodes": [ + 103876879, + 7660979650, + 7278552198, + 7660979652, + 103864953 + ], + "geometry": [ + { "lat": 40.7900997, "lon": -74.0160362 }, + { "lat": 40.7901483, "lon": -74.0159972 }, + { "lat": 40.7903143, "lon": -74.0158664 }, + { "lat": 40.7913357, "lon": -74.0150612 }, + { "lat": 40.7913880, "lon": -74.0150200 } + ], + "tags": { + "highway": "residential", + "name": "Van Buren Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Van Buren", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633635, + "bounds": { + "minlat": 40.8004130, + "minlon": -74.0087150, + "maxlat": 40.8010530, + "maxlon": -74.0082190 + }, + "nodes": [ + 103883785, + 7678636836, + 103881357 + ], + "geometry": [ + { "lat": 40.8010530, "lon": -74.0082190 }, + { "lat": 40.8004625, "lon": -74.0086766 }, + { "lat": 40.8004130, "lon": -74.0087150 } + ], + "tags": { + "highway": "residential", + "name": "1st Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633636, + "bounds": { + "minlat": 40.8016826, + "minlon": -74.0078259, + "maxlat": 40.8021765, + "maxlon": -74.0074455 + }, + "nodes": [ + 103883787, + 7474656133, + 103868245, + 5344617801 + ], + "geometry": [ + { "lat": 40.8016826, "lon": -74.0078259 }, + { "lat": 40.8020709, "lon": -74.0075268 }, + { "lat": 40.8021157, "lon": -74.0074924 }, + { "lat": 40.8021765, "lon": -74.0074455 } + ], + "tags": { + "highway": "residential", + "name": "1st Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633637, + "bounds": { + "minlat": 40.8055603, + "minlon": -74.0049996, + "maxlat": 40.8087334, + "maxlon": -74.0028262 + }, + "nodes": [ + 103882301, + 103880915, + 103867144 + ], + "geometry": [ + { "lat": 40.8087334, "lon": -74.0028262 }, + { "lat": 40.8069774, "lon": -74.0040394 }, + { "lat": 40.8055603, "lon": -74.0049996 } + ], + "tags": { + "highway": "residential", + "name": "1st Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633691, + "bounds": { + "minlat": 40.7662645, + "minlon": -74.0209311, + "maxlat": 40.7677822, + "maxlon": -74.0199622 + }, + "nodes": [ + 103884117, + 7320077829, + 103884119, + 103884121, + 103884123, + 103880764, + 103884124, + 7748277744, + 103884126, + 7320077852, + 103858568 + ], + "geometry": [ + { "lat": 40.7662645, "lon": -74.0209311 }, + { "lat": 40.7663626, "lon": -74.0208794 }, + { "lat": 40.7665643, "lon": -74.0207730 }, + { "lat": 40.7668046, "lon": -74.0207090 }, + { "lat": 40.7669596, "lon": -74.0206669 }, + { "lat": 40.7670616, "lon": -74.0206082 }, + { "lat": 40.7671240, "lon": -74.0205347 }, + { "lat": 40.7671633, "lon": -74.0204860 }, + { "lat": 40.7673354, "lon": -74.0202725 }, + { "lat": 40.7677418, "lon": -74.0199903 }, + { "lat": 40.7677822, "lon": -74.0199622 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Kingswood Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Kingswood", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11633692, + "bounds": { + "minlat": 40.7677822, + "minlon": -74.0205716, + "maxlat": 40.7686264, + "maxlon": -74.0199622 + }, + "nodes": [ + 103858568, + 103884131, + 5496387723, + 5496387724, + 5496387725, + 4999662183, + 103863421 + ], + "geometry": [ + { "lat": 40.7677822, "lon": -74.0199622 }, + { "lat": 40.7680123, "lon": -74.0205613 }, + { "lat": 40.7680517, "lon": -74.0205716 }, + { "lat": 40.7680800, "lon": -74.0205494 }, + { "lat": 40.7683126, "lon": -74.0203804 }, + { "lat": 40.7685899, "lon": -74.0201855 }, + { "lat": 40.7686264, "lon": -74.0201588 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Kingswood Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Kingswood", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11633700, + "bounds": { + "minlat": 40.7934320, + "minlon": -74.0133312, + "maxlat": 40.7936269, + "maxlon": -74.0128970 + }, + "nodes": [ + 103866637, + 7674807379, + 6021713788 + ], + "geometry": [ + { "lat": 40.7934320, "lon": -74.0128970 }, + { "lat": 40.7934878, "lon": -74.0130213 }, + { "lat": 40.7936269, "lon": -74.0133312 } + ], + "tags": { + "highway": "residential", + "name": "66th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "66th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633701, + "bounds": { + "minlat": 40.7887993, + "minlon": -74.0052605, + "maxlat": 40.7901102, + "maxlon": -74.0024893 + }, + "nodes": [ + 103876617, + 7468537624, + 7468537619, + 103868352, + 7468537620, + 7468537614, + 103881603, + 7468537611, + 6839986747, + 7468537608, + 103884180 + ], + "geometry": [ + { "lat": 40.7887993, "lon": -74.0024893 }, + { "lat": 40.7888480, "lon": -74.0025917 }, + { "lat": 40.7892369, "lon": -74.0034086 }, + { "lat": 40.7892614, "lon": -74.0034602 }, + { "lat": 40.7892944, "lon": -74.0035305 }, + { "lat": 40.7895898, "lon": -74.0041591 }, + { "lat": 40.7896161, "lon": -74.0042145 }, + { "lat": 40.7896506, "lon": -74.0042881 }, + { "lat": 40.7898899, "lon": -74.0047978 }, + { "lat": 40.7900623, "lon": -74.0051598 }, + { "lat": 40.7901102, "lon": -74.0052605 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "66th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "66th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633709, + "bounds": { + "minlat": 40.8028932, + "minlon": -73.9943591, + "maxlat": 40.8044418, + "maxlon": -73.9936985 + }, + "nodes": [ + 103137010, + 13886816679, + 3575303893, + 103884229, + 103884231, + 3575303894, + 103884233, + 3575305213, + 103884235, + 103884237, + 103884239 + ], + "geometry": [ + { "lat": 40.8028932, "lon": -73.9936985 }, + { "lat": 40.8028975, "lon": -73.9938231 }, + { "lat": 40.8029013, "lon": -73.9939331 }, + { "lat": 40.8029321, "lon": -73.9940755 }, + { "lat": 40.8029938, "lon": -73.9941378 }, + { "lat": 40.8033602, "lon": -73.9942377 }, + { "lat": 40.8038664, "lon": -73.9943591 }, + { "lat": 40.8039233, "lon": -73.9943516 }, + { "lat": 40.8040122, "lon": -73.9943153 }, + { "lat": 40.8043544, "lon": -73.9941760 }, + { "lat": 40.8044418, "lon": -73.9941312 } + ], + "tags": { + "highway": "residential", + "name": "Churchill Road", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Churchhill", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633732, + "bounds": { + "minlat": 40.8082350, + "minlon": -74.0072454, + "maxlat": 40.8085069, + "maxlon": -74.0070474 + }, + "nodes": [ + 103884411, + 7475993524, + 103880917 + ], + "geometry": [ + { "lat": 40.8085069, "lon": -74.0070474 }, + { "lat": 40.8082934, "lon": -74.0072028 }, + { "lat": 40.8082350, "lon": -74.0072454 } + ], + "tags": { + "highway": "residential", + "name": "5th Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633733, + "bounds": { + "minlat": 40.7989565, + "minlon": -74.0141222, + "maxlat": 40.7996186, + "maxlon": -74.0132984 + }, + "nodes": [ + 6370815220, + 2814547149, + 2814547150, + 2814547151, + 2814547152, + 103884416, + 103876561 + ], + "geometry": [ + { "lat": 40.7990261, "lon": -74.0141222 }, + { "lat": 40.7989565, "lon": -74.0139579 }, + { "lat": 40.7991749, "lon": -74.0137679 }, + { "lat": 40.7992790, "lon": -74.0136648 }, + { "lat": 40.7993245, "lon": -74.0135702 }, + { "lat": 40.7993753, "lon": -74.0134804 }, + { "lat": 40.7996186, "lon": -74.0132984 } + ], + "tags": { + "highway": "residential", + "name": "5th Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633735, + "bounds": { + "minlat": 40.8086659, + "minlon": -74.0064803, + "maxlat": 40.8098884, + "maxlon": -74.0054066 + }, + "nodes": [ + 103872656, + 7475993595, + 103876923, + 7475993607, + 103882303 + ], + "geometry": [ + { "lat": 40.8086659, "lon": -74.0064803 }, + { "lat": 40.8087207, "lon": -74.0064328 }, + { "lat": 40.8093224, "lon": -74.0059111 }, + { "lat": 40.8098413, "lon": -74.0054486 }, + { "lat": 40.8098884, "lon": -74.0054066 } + ], + "tags": { + "highway": "residential", + "name": "5th Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633739, + "bounds": { + "minlat": 40.7805003, + "minlon": -74.0209139, + "maxlat": 40.7828527, + "maxlon": -74.0158390 + }, + "nodes": [ + 103862586, + 7613768175, + 7613768123, + 103855587, + 7613768125, + 11240111370, + 103884448, + 11240111368, + 7613768142, + 103866599 + ], + "geometry": [ + { "lat": 40.7805003, "lon": -74.0158390 }, + { "lat": 40.7805559, "lon": -74.0159498 }, + { "lat": 40.7811639, "lon": -74.0172694 }, + { "lat": 40.7811990, "lon": -74.0173451 }, + { "lat": 40.7812472, "lon": -74.0174500 }, + { "lat": 40.7818843, "lon": -74.0188081 }, + { "lat": 40.7819206, "lon": -74.0188854 }, + { "lat": 40.7819692, "lon": -74.0189932 }, + { "lat": 40.7828028, "lon": -74.0207995 }, + { "lat": 40.7828527, "lon": -74.0209139 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "50th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "50th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633742, + "bounds": { + "minlat": 40.7790686, + "minlon": -74.0144528, + "maxlat": 40.7801285, + "maxlon": -74.0122300 + }, + "nodes": [ + 103860806, + 7468512662, + 7025587910, + 7025587920, + 7468512667, + 440243609 + ], + "geometry": [ + { "lat": 40.7790686, "lon": -74.0122300 }, + { "lat": 40.7791166, "lon": -74.0123306 }, + { "lat": 40.7791748, "lon": -74.0124528 }, + { "lat": 40.7793198, "lon": -74.0127567 }, + { "lat": 40.7800793, "lon": -74.0143497 }, + { "lat": 40.7801285, "lon": -74.0144528 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "50th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "50th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11633751, + "bounds": { + "minlat": 40.8096967, + "minlon": -74.0004120, + "maxlat": 40.8108333, + "maxlon": -73.9995639 + }, + "nodes": [ + 103869246, + 440208143, + 5481884115, + 103112788 + ], + "geometry": [ + { "lat": 40.8096967, "lon": -74.0004120 }, + { "lat": 40.8098004, "lon": -74.0002619 }, + { "lat": 40.8101142, "lon": -74.0000498 }, + { "lat": 40.8108333, "lon": -73.9995639 } + ], + "tags": { + "highway": "residential", + "name": "Dottino Lane", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ;Bergen, NJ", + "tiger:name_base": "Dottino", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 11633753, + "bounds": { + "minlat": 40.7731291, + "minlon": -74.0201270, + "maxlat": 40.7751938, + "maxlon": -74.0156043 + }, + "nodes": [ + 103861117, + 5474425690, + 7320077924, + 103868662, + 7320077927, + 7320077929, + 103874028, + 7320077932, + 7320077965, + 103879746, + 7320077969, + 103884534, + 103865625, + 5909817455, + 7320077981, + 768711557 + ], + "geometry": [ + { "lat": 40.7731291, "lon": -74.0156043 }, + { "lat": 40.7731679, "lon": -74.0157119 }, + { "lat": 40.7736691, "lon": -74.0168491 }, + { "lat": 40.7736855, "lon": -74.0168863 }, + { "lat": 40.7737100, "lon": -74.0169410 }, + { "lat": 40.7740686, "lon": -74.0177441 }, + { "lat": 40.7740964, "lon": -74.0178062 }, + { "lat": 40.7741234, "lon": -74.0178663 }, + { "lat": 40.7744588, "lon": -74.0186121 }, + { "lat": 40.7744830, "lon": -74.0186660 }, + { "lat": 40.7745028, "lon": -74.0187091 }, + { "lat": 40.7745257, "lon": -74.0187589 }, + { "lat": 40.7747266, "lon": -74.0192014 }, + { "lat": 40.7751262, "lon": -74.0200678 }, + { "lat": 40.7751345, "lon": -74.0200777 }, + { "lat": 40.7751938, "lon": -74.0201270 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Liberty Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Liberty", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11633762, + "bounds": { + "minlat": 40.7714190, + "minlon": -74.0192526, + "maxlat": 40.7745257, + "maxlon": -74.0187589 + }, + "nodes": [ + 103868669, + 4999662174, + 103884543, + 7320052284, + 103884546, + 103884547, + 103884548, + 103884549, + 103884551, + 103862733, + 5893803925, + 7320395118, + 103882045, + 7320395123, + 7320077971, + 103884534 + ], + "geometry": [ + { "lat": 40.7714190, "lon": -74.0192526 }, + { "lat": 40.7715107, "lon": -74.0192244 }, + { "lat": 40.7715703, "lon": -74.0192068 }, + { "lat": 40.7716821, "lon": -74.0191701 }, + { "lat": 40.7718244, "lon": -74.0191233 }, + { "lat": 40.7720637, "lon": -74.0190577 }, + { "lat": 40.7722383, "lon": -74.0190777 }, + { "lat": 40.7725986, "lon": -74.0192389 }, + { "lat": 40.7726730, "lon": -74.0192370 }, + { "lat": 40.7730860, "lon": -74.0191260 }, + { "lat": 40.7731653, "lon": -74.0191045 }, + { "lat": 40.7737341, "lon": -74.0189541 }, + { "lat": 40.7737968, "lon": -74.0189375 }, + { "lat": 40.7738428, "lon": -74.0189262 }, + { "lat": 40.7744551, "lon": -74.0187762 }, + { "lat": 40.7745257, "lon": -74.0187589 } + ], + "tags": { + "highway": "tertiary", + "name": "Highwood Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Highwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 11633769, + "bounds": { + "minlat": 40.7758223, + "minlon": -74.0209473, + "maxlat": 40.7764205, + "maxlon": -74.0196410 + }, + "nodes": [ + 103882084, + 5909817457, + 8267580233, + 5652750750 + ], + "geometry": [ + { "lat": 40.7758223, "lon": -74.0196410 }, + { "lat": 40.7758727, "lon": -74.0197617 }, + { "lat": 40.7761808, "lon": -74.0204285 }, + { "lat": 40.7764205, "lon": -74.0209473 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "43rd Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "43rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07087", + "tiger:zip_right": "07087" + } +}, +{ + "type": "way", + "id": 11633797, + "bounds": { + "minlat": 40.7849662, + "minlon": -74.0115829, + "maxlat": 40.7857688, + "maxlon": -74.0098297 + }, + "nodes": [ + 103884678, + 7658684779, + 7134796477, + 7658684777, + 103861120, + 7658684775, + 7658684783, + 103862600 + ], + "geometry": [ + { "lat": 40.7849662, "lon": -74.0098297 }, + { "lat": 40.7850053, "lon": -74.0099171 }, + { "lat": 40.7851639, "lon": -74.0102718 }, + { "lat": 40.7853506, "lon": -74.0106893 }, + { "lat": 40.7853890, "lon": -74.0107750 }, + { "lat": 40.7854343, "lon": -74.0108713 }, + { "lat": 40.7857266, "lon": -74.0114931 }, + { "lat": 40.7857688, "lon": -74.0115829 } + ], + "tags": { + "highway": "residential", + "name": "59th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "59th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633800, + "bounds": { + "minlat": 40.7883550, + "minlon": -74.0224578, + "maxlat": 40.7910506, + "maxlon": -74.0167334 + }, + "nodes": [ + 103866630, + 7657469056, + 7588288488, + 103869021, + 103869006, + 7657469028, + 103861921, + 7473610209, + 103884686, + 7473610206, + 103883252, + 7473610233, + 6896058836, + 7473610235, + 103884687, + 7473610259, + 7473610257, + 103872876 + ], + "geometry": [ + { "lat": 40.7883550, "lon": -74.0167334 }, + { "lat": 40.7884110, "lon": -74.0168495 }, + { "lat": 40.7886554, "lon": -74.0173616 }, + { "lat": 40.7888420, "lon": -74.0177420 }, + { "lat": 40.7889600, "lon": -74.0179840 }, + { "lat": 40.7896172, "lon": -74.0194056 }, + { "lat": 40.7896433, "lon": -74.0194631 }, + { "lat": 40.7896735, "lon": -74.0195263 }, + { "lat": 40.7899921, "lon": -74.0202081 }, + { "lat": 40.7903022, "lon": -74.0208812 }, + { "lat": 40.7903290, "lon": -74.0209393 }, + { "lat": 40.7903549, "lon": -74.0209964 }, + { "lat": 40.7905004, "lon": -74.0213173 }, + { "lat": 40.7906410, "lon": -74.0216125 }, + { "lat": 40.7906779, "lon": -74.0216900 }, + { "lat": 40.7907050, "lon": -74.0217461 }, + { "lat": 40.7909953, "lon": -74.0223453 }, + { "lat": 40.7910506, "lon": -74.0224578 } + ], + "tags": { + "highway": "residential", + "name": "59th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "59th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633805, + "bounds": { + "minlat": 40.7856339, + "minlon": -74.0235670, + "maxlat": 40.7876715, + "maxlon": -74.0187927 + }, + "nodes": [ + 103866607, + 7617909903, + 6979106676, + 7617909905, + 103869013, + 7617909921, + 7617909925, + 103884716, + 7617909930, + 7617909932, + 103861957, + 7472526271, + 7472526269, + 103884718, + 7591184545, + 7472526289, + 103883250, + 7472526286, + 7472526283, + 103872872 + ], + "geometry": [ + { "lat": 40.7856339, "lon": -74.0187927 }, + { "lat": 40.7856813, "lon": -74.0189066 }, + { "lat": 40.7859554, "lon": -74.0195712 }, + { "lat": 40.7861134, "lon": -74.0199406 }, + { "lat": 40.7861379, "lon": -74.0199955 }, + { "lat": 40.7861662, "lon": -74.0200603 }, + { "lat": 40.7864365, "lon": -74.0206807 }, + { "lat": 40.7864687, "lon": -74.0207545 }, + { "lat": 40.7864919, "lon": -74.0208068 }, + { "lat": 40.7867718, "lon": -74.0214379 }, + { "lat": 40.7867943, "lon": -74.0214902 }, + { "lat": 40.7868232, "lon": -74.0215539 }, + { "lat": 40.7871007, "lon": -74.0221806 }, + { "lat": 40.7871310, "lon": -74.0222490 }, + { "lat": 40.7873308, "lon": -74.0227002 }, + { "lat": 40.7874676, "lon": -74.0230082 }, + { "lat": 40.7874888, "lon": -74.0230558 }, + { "lat": 40.7875157, "lon": -74.0231202 }, + { "lat": 40.7876413, "lon": -74.0234123 }, + { "lat": 40.7876715, "lon": -74.0235670 } + ], + "tags": { + "highway": "residential", + "name": "55th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "55th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633807, + "bounds": { + "minlat": 40.7845762, + "minlon": -74.0188550, + "maxlat": 40.7855527, + "maxlon": -74.0167590 + }, + "nodes": [ + 103866605, + 7617909937, + 6885754302, + 7617909940, + 103884725 + ], + "geometry": [ + { "lat": 40.7855527, "lon": -74.0188550 }, + { "lat": 40.7855024, "lon": -74.0187337 }, + { "lat": 40.7848484, "lon": -74.0173360 }, + { "lat": 40.7846151, "lon": -74.0168414 }, + { "lat": 40.7845762, "lon": -74.0167590 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "55th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "55th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633808, + "bounds": { + "minlat": 40.7841396, + "minlon": -74.0165481, + "maxlat": 40.7848452, + "maxlon": -74.0149997 + }, + "nodes": [ + 103884735, + 7617909950, + 7617909954, + 103855593 + ], + "geometry": [ + { "lat": 40.7848452, "lon": -74.0165481 }, + { "lat": 40.7848083, "lon": -74.0164671 }, + { "lat": 40.7841792, "lon": -74.0150867 }, + { "lat": 40.7841396, "lon": -74.0149997 } + ], + "tags": { + "highway": "residential", + "name": "55th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "55th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633809, + "bounds": { + "minlat": 40.7827305, + "minlon": -74.0134967, + "maxlat": 40.7834260, + "maxlon": -74.0119628 + }, + "nodes": [ + 103862594, + 7658684716, + 6977104133, + 7658684714, + 103884740 + ], + "geometry": [ + { "lat": 40.7834260, "lon": -74.0134967 }, + { "lat": 40.7833859, "lon": -74.0134103 }, + { "lat": 40.7828809, "lon": -74.0123219 }, + { "lat": 40.7827751, "lon": -74.0120692 }, + { "lat": 40.7827305, "lon": -74.0119628 } + ], + "tags": { + "highway": "residential", + "name": "55th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "55th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633837, + "bounds": { + "minlat": 40.7854566, + "minlon": -74.0179299, + "maxlat": 40.7860733, + "maxlon": -74.0174519 + }, + "nodes": [ + 103884821, + 7657468958, + 103879232 + ], + "geometry": [ + { "lat": 40.7854566, "lon": -74.0179299 }, + { "lat": 40.7860190, "lon": -74.0174940 }, + { "lat": 40.7860733, "lon": -74.0174519 } + ], + "tags": { + "highway": "residential", + "name": "Grant Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Grant", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633850, + "bounds": { + "minlat": 40.8029490, + "minlon": -74.0073051, + "maxlat": 40.8036414, + "maxlon": -74.0057190 + }, + "nodes": [ + 103866675, + 11071533441, + 11071533438, + 103873572 + ], + "geometry": [ + { "lat": 40.8029490, "lon": -74.0057190 }, + { "lat": 40.8032741, "lon": -74.0064637 }, + { "lat": 40.8034118, "lon": -74.0067791 }, + { "lat": 40.8036414, "lon": -74.0073051 } + ], + "tags": { + "highway": "residential", + "name": "81st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "81st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633852, + "bounds": { + "minlat": 40.8048816, + "minlon": -74.0140892, + "maxlat": 40.8064718, + "maxlon": -74.0106763 + }, + "nodes": [ + 103872916, + 7475979726, + 7475979730, + 103875666 + ], + "geometry": [ + { "lat": 40.8048816, "lon": -74.0106763 }, + { "lat": 40.8049381, "lon": -74.0107975 }, + { "lat": 40.8064323, "lon": -74.0140044 }, + { "lat": 40.8064718, "lon": -74.0140892 } + ], + "tags": { + "highway": "residential", + "name": "81st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "81st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633857, + "bounds": { + "minlat": 40.7728771, + "minlon": -74.0150909, + "maxlat": 40.7774624, + "maxlon": -74.0134353 + }, + "nodes": [ + 103872546, + 5909784322, + 103884874, + 103884876, + 103884878, + 7320650744, + 103884879, + 7320650745, + 103884880, + 11140048880, + 103884881, + 2404083713, + 103884882, + 7891550673, + 7320650746, + 103884884, + 103884885, + 7320650747, + 2325759418, + 103884891, + 7320650748, + 103884892, + 103884894, + 7320650749, + 103884896, + 7320650750, + 2325759411, + 103884898, + 103884900 + ], + "geometry": [ + { "lat": 40.7774624, "lon": -74.0137822 }, + { "lat": 40.7774324, "lon": -74.0136495 }, + { "lat": 40.7774309, "lon": -74.0136429 }, + { "lat": 40.7773719, "lon": -74.0135133 }, + { "lat": 40.7772478, "lon": -74.0134510 }, + { "lat": 40.7771328, "lon": -74.0134353 }, + { "lat": 40.7770519, "lon": -74.0134440 }, + { "lat": 40.7769393, "lon": -74.0134746 }, + { "lat": 40.7767995, "lon": -74.0135243 }, + { "lat": 40.7765205, "lon": -74.0136463 }, + { "lat": 40.7763779, "lon": -74.0137086 }, + { "lat": 40.7762776, "lon": -74.0137535 }, + { "lat": 40.7761738, "lon": -74.0137950 }, + { "lat": 40.7761101, "lon": -74.0138172 }, + { "lat": 40.7760706, "lon": -74.0138310 }, + { "lat": 40.7759802, "lon": -74.0138494 }, + { "lat": 40.7751549, "lon": -74.0139185 }, + { "lat": 40.7749328, "lon": -74.0139743 }, + { "lat": 40.7748124, "lon": -74.0140190 }, + { "lat": 40.7744660, "lon": -74.0141397 }, + { "lat": 40.7743631, "lon": -74.0141762 }, + { "lat": 40.7742462, "lon": -74.0142536 }, + { "lat": 40.7733064, "lon": -74.0149130 }, + { "lat": 40.7731034, "lon": -74.0150607 }, + { "lat": 40.7730365, "lon": -74.0150909 }, + { "lat": 40.7730054, "lon": -74.0150871 }, + { "lat": 40.7729760, "lon": -74.0150707 }, + { "lat": 40.7729396, "lon": -74.0150271 }, + { "lat": 40.7728771, "lon": -74.0149176 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09111120", + "highway": "tertiary", + "name": "Pershing Road", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Pershing", + "tiger:name_base_1": "County Road 682", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "wikidata": "Q7170177", + "wikipedia": "en:Pershing Road (Weehawken)" + } +}, +{ + "type": "way", + "id": 11633879, + "bounds": { + "minlat": 40.7778751, + "minlon": -74.0158769, + "maxlat": 40.7789204, + "maxlon": -74.0136262 + }, + "nodes": [ + 103872547, + 7320650743, + 6886303413, + 7043553246, + 7320650761, + 440243663 + ], + "geometry": [ + { "lat": 40.7778751, "lon": -74.0136262 }, + { "lat": 40.7779103, "lon": -74.0137064 }, + { "lat": 40.7779856, "lon": -74.0138741 }, + { "lat": 40.7787086, "lon": -74.0154202 }, + { "lat": 40.7788748, "lon": -74.0157655 }, + { "lat": 40.7789204, "lon": -74.0158769 } + ], + "tags": { + "highway": "residential", + "name": "48th Street", + "name_1": "County Road 684", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "48th", + "tiger:name_base_1": "County Road 684", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07087", + "tiger:zip_right": "07087" + } +}, +{ + "type": "way", + "id": 11633883, + "bounds": { + "minlat": 40.7764241, + "minlon": -74.0241514, + "maxlat": 40.7786985, + "maxlon": -74.0191854 + }, + "nodes": [ + 103866586, + 7344895421, + 5694882399, + 7344895409, + 103877182, + 7387619888, + 7387619891, + 103885046, + 7387619909, + 7237209383, + 103855645, + 7237250292, + 5652750751, + 7069578517, + 5909817462, + 440243651 + ], + "geometry": [ + { "lat": 40.7786985, "lon": -74.0241514 }, + { "lat": 40.7786609, "lon": -74.0240693 }, + { "lat": 40.7783043, "lon": -74.0232914 }, + { "lat": 40.7782065, "lon": -74.0230780 }, + { "lat": 40.7781679, "lon": -74.0229938 }, + { "lat": 40.7781366, "lon": -74.0229266 }, + { "lat": 40.7776302, "lon": -74.0218418 }, + { "lat": 40.7775973, "lon": -74.0217713 }, + { "lat": 40.7775726, "lon": -74.0217180 }, + { "lat": 40.7772069, "lon": -74.0209286 }, + { "lat": 40.7771746, "lon": -74.0208589 }, + { "lat": 40.7771493, "lon": -74.0208040 }, + { "lat": 40.7770061, "lon": -74.0204941 }, + { "lat": 40.7766663, "lon": -74.0197582 }, + { "lat": 40.7764542, "lon": -74.0192984 }, + { "lat": 40.7764241, "lon": -74.0191854 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "44th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "44th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07087", + "tiger:zip_right": "07087" + } +}, +{ + "type": "way", + "id": 11633917, + "bounds": { + "minlat": 40.7898546, + "minlon": -74.0182705, + "maxlat": 40.7917080, + "maxlon": -74.0167774 + }, + "nodes": [ + 103864131, + 7660979553, + 7660979555, + 103876881, + 7660979622, + 7660979600 + ], + "geometry": [ + { "lat": 40.7898546, "lon": -74.0182705 }, + { "lat": 40.7899012, "lon": -74.0182323 }, + { "lat": 40.7907345, "lon": -74.0175658 }, + { "lat": 40.7907821, "lon": -74.0175277 }, + { "lat": 40.7908415, "lon": -74.0174796 }, + { "lat": 40.7917080, "lon": -74.0167774 } + ], + "tags": { + "highway": "residential", + "name": "Polk Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Polk", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633918, + "bounds": { + "minlat": 40.7919265, + "minlon": -74.0162129, + "maxlat": 40.7946925, + "maxlon": -74.0140904 + }, + "nodes": [ + 103864957, + 7668140025, + 7687124422, + 103885230, + 7594316608, + 7674807363, + 103864406, + 7594316613, + 7674807365, + 103884176, + 7674820822, + 7674820809, + 103878366 + ], + "geometry": [ + { "lat": 40.7919265, "lon": -74.0162129 }, + { "lat": 40.7919994, "lon": -74.0161562 }, + { "lat": 40.7923120, "lon": -74.0159131 }, + { "lat": 40.7931353, "lon": -74.0152730 }, + { "lat": 40.7933931, "lon": -74.0150846 }, + { "lat": 40.7935091, "lon": -74.0150033 }, + { "lat": 40.7935331, "lon": -74.0149865 }, + { "lat": 40.7937708, "lon": -74.0148004 }, + { "lat": 40.7941119, "lon": -74.0145459 }, + { "lat": 40.7941579, "lon": -74.0145115 }, + { "lat": 40.7942067, "lon": -74.0144730 }, + { "lat": 40.7946367, "lon": -74.0141344 }, + { "lat": 40.7946925, "lon": -74.0140904 } + ], + "tags": { + "highway": "residential", + "name": "Polk Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Polk", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633921, + "bounds": { + "minlat": 40.7947348, + "minlon": -74.0141733, + "maxlat": 40.7955650, + "maxlon": -74.0134970 + }, + "nodes": [ + 103869202, + 7674820828, + 103885239, + 7674820830, + 103878368 + ], + "geometry": [ + { "lat": 40.7955650, "lon": -74.0134970 }, + { "lat": 40.7955131, "lon": -74.0135390 }, + { "lat": 40.7950530, "lon": -74.0139110 }, + { "lat": 40.7947847, "lon": -74.0141321 }, + { "lat": 40.7947348, "lon": -74.0141733 } + ], + "tags": { + "highway": "residential", + "name": "Polk Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Polk", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11633941, + "bounds": { + "minlat": 40.8086270, + "minlon": -74.0000240, + "maxlat": 40.8091380, + "maxlon": -73.9992720 + }, + "nodes": [ + 103869240, + 440208113 + ], + "geometry": [ + { "lat": 40.8086270, "lon": -74.0000240 }, + { "lat": 40.8091380, "lon": -73.9992720 } + ], + "tags": { + "highway": "residential", + "name": "Heindel Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Heindel", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633948, + "bounds": { + "minlat": 40.8067319, + "minlon": -73.9969054, + "maxlat": 40.8072472, + "maxlon": -73.9963177 + }, + "nodes": [ + 103877246, + 103885389 + ], + "geometry": [ + { "lat": 40.8072472, "lon": -73.9969054 }, + { "lat": 40.8067319, "lon": -73.9963177 } + ], + "tags": { + "highway": "residential", + "name": "Kamp Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Kamp", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11633951, + "bounds": { + "minlat": 40.7999530, + "minlon": -74.0052240, + "maxlat": 40.8005510, + "maxlon": -74.0047355 + }, + "nodes": [ + 103868274, + 4727867839, + 7678477598, + 103877627 + ], + "geometry": [ + { "lat": 40.8005510, "lon": -74.0047355 }, + { "lat": 40.8004955, "lon": -74.0047801 }, + { "lat": 40.8000021, "lon": -74.0051838 }, + { "lat": 40.7999530, "lon": -74.0052240 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 11633952, + "bounds": { + "minlat": 40.8057483, + "minlon": -73.9977802, + "maxlat": 40.8071358, + "maxlon": -73.9957098 + }, + "nodes": [ + 103869228, + 12396862813, + 8605560847, + 8605560846, + 5481884080, + 103885416, + 103885418, + 103882222, + 103885420, + 5481884051, + 103885389, + 103885422, + 5481884046, + 103235642 + ], + "geometry": [ + { "lat": 40.8057483, "lon": -73.9977802 }, + { "lat": 40.8057993, "lon": -73.9977044 }, + { "lat": 40.8058503, "lon": -73.9976286 }, + { "lat": 40.8060126, "lon": -73.9973874 }, + { "lat": 40.8061100, "lon": -73.9972427 }, + { "lat": 40.8061670, "lon": -73.9971580 }, + { "lat": 40.8062031, "lon": -73.9971104 }, + { "lat": 40.8065460, "lon": -73.9965920 }, + { "lat": 40.8065850, "lon": -73.9965330 }, + { "lat": 40.8066822, "lon": -73.9963902 }, + { "lat": 40.8067319, "lon": -73.9963177 }, + { "lat": 40.8067726, "lon": -73.9962494 }, + { "lat": 40.8068060, "lon": -73.9961998 }, + { "lat": 40.8071358, "lon": -73.9957098 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000719", + "highway": "secondary", + "name": "Palisade Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_base_1": "County Road 719", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 11633957, + "bounds": { + "minlat": 40.7708062, + "minlon": -74.0270426, + "maxlat": 40.7807449, + "maxlon": -74.0198330 + }, + "nodes": [ + 103885033, + 7387641020, + 7387640944, + 103866064, + 7387640921, + 7387640904, + 103870267, + 7387632573, + 752157530, + 11240111367, + 752157529, + 5694829012, + 7387632576, + 103862723, + 7387632580, + 752157528, + 7387619946, + 103880333, + 7387619931, + 7387619907, + 103885046, + 7387619869, + 7387619848, + 103884573, + 7387619812, + 11240111364, + 103882427, + 11240111366, + 7387619761, + 103855312, + 7387619747, + 7595297548, + 7387619712, + 103879736, + 7387618668, + 7387618673, + 103872316, + 7387618636, + 5813591529, + 103880823, + 5813591531, + 7338907696, + 7338907700, + 5813591492, + 103885477, + 5813591493, + 11240111360, + 103866993, + 11240111362, + 5653853978, + 5813591498, + 103872350, + 5813591499, + 5813591467, + 103880831, + 5813591466, + 5631441442, + 7111854150, + 11226190984, + 103861828 + ], + "geometry": [ + { "lat": 40.7807449, "lon": -74.0198330 }, + { "lat": 40.7806760, "lon": -74.0198888 }, + { "lat": 40.7802056, "lon": -74.0202699 }, + { "lat": 40.7801649, "lon": -74.0203029 }, + { "lat": 40.7801045, "lon": -74.0203454 }, + { "lat": 40.7796109, "lon": -74.0206918 }, + { "lat": 40.7795569, "lon": -74.0207310 }, + { "lat": 40.7795029, "lon": -74.0207629 }, + { "lat": 40.7793734, "lon": -74.0208410 }, + { "lat": 40.7792576, "lon": -74.0208789 }, + { "lat": 40.7791370, "lon": -74.0208974 }, + { "lat": 40.7789481, "lon": -74.0208843 }, + { "lat": 40.7788419, "lon": -74.0208770 }, + { "lat": 40.7787840, "lon": -74.0208730 }, + { "lat": 40.7787315, "lon": -74.0209016 }, + { "lat": 40.7786211, "lon": -74.0209618 }, + { "lat": 40.7783298, "lon": -74.0211831 }, + { "lat": 40.7782806, "lon": -74.0212204 }, + { "lat": 40.7782319, "lon": -74.0212597 }, + { "lat": 40.7776463, "lon": -74.0217318 }, + { "lat": 40.7775973, "lon": -74.0217713 }, + { "lat": 40.7775576, "lon": -74.0218025 }, + { "lat": 40.7770732, "lon": -74.0221829 }, + { "lat": 40.7770080, "lon": -74.0222342 }, + { "lat": 40.7769523, "lon": -74.0222769 }, + { "lat": 40.7764611, "lon": -74.0226536 }, + { "lat": 40.7764176, "lon": -74.0226870 }, + { "lat": 40.7763769, "lon": -74.0227195 }, + { "lat": 40.7758991, "lon": -74.0231000 }, + { "lat": 40.7758580, "lon": -74.0231330 }, + { "lat": 40.7758137, "lon": -74.0231677 }, + { "lat": 40.7755953, "lon": -74.0233392 }, + { "lat": 40.7753338, "lon": -74.0235446 }, + { "lat": 40.7752957, "lon": -74.0235743 }, + { "lat": 40.7752488, "lon": -74.0236108 }, + { "lat": 40.7747664, "lon": -74.0239849 }, + { "lat": 40.7747227, "lon": -74.0240186 }, + { "lat": 40.7746694, "lon": -74.0240597 }, + { "lat": 40.7741951, "lon": -74.0244253 }, + { "lat": 40.7741541, "lon": -74.0244571 }, + { "lat": 40.7741045, "lon": -74.0244959 }, + { "lat": 40.7737765, "lon": -74.0247543 }, + { "lat": 40.7737102, "lon": -74.0248065 }, + { "lat": 40.7736170, "lon": -74.0248799 }, + { "lat": 40.7735709, "lon": -74.0249176 }, + { "lat": 40.7735192, "lon": -74.0249554 }, + { "lat": 40.7730458, "lon": -74.0253175 }, + { "lat": 40.7729939, "lon": -74.0253572 }, + { "lat": 40.7729385, "lon": -74.0254003 }, + { "lat": 40.7725490, "lon": -74.0257032 }, + { "lat": 40.7724760, "lon": -74.0257578 }, + { "lat": 40.7724317, "lon": -74.0257914 }, + { "lat": 40.7723895, "lon": -74.0258258 }, + { "lat": 40.7719042, "lon": -74.0262167 }, + { "lat": 40.7718593, "lon": -74.0262542 }, + { "lat": 40.7718203, "lon": -74.0262833 }, + { "lat": 40.7712343, "lon": -74.0267298 }, + { "lat": 40.7711089, "lon": -74.0268160 }, + { "lat": 40.7708666, "lon": -74.0269974 }, + { "lat": 40.7708062, "lon": -74.0270426 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09101107", + "cycleway:right": "lane", + "highway": "tertiary", + "name": "Palisade Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 11634034, + "bounds": { + "minlat": 40.8130185, + "minlon": -74.0125564, + "maxlat": 40.8136062, + "maxlon": -74.0120695 + }, + "nodes": [ + 5994285439, + 5994285438, + 5994285437, + 3742898929, + 5994285435, + 5994285436 + ], + "geometry": [ + { "lat": 40.8130185, "lon": -74.0125564 }, + { "lat": 40.8130531, "lon": -74.0124719 }, + { "lat": 40.8130825, "lon": -74.0124263 }, + { "lat": 40.8131677, "lon": -74.0123378 }, + { "lat": 40.8134753, "lon": -74.0121058 }, + { "lat": 40.8136062, "lon": -74.0120695 } + ], + "tags": { + "highway": "unclassified", + "name": "Nolan Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 11634046, + "bounds": { + "minlat": 40.7853890, + "minlon": -74.0107750, + "maxlat": 40.7860218, + "maxlon": -74.0102867 + }, + "nodes": [ + 103861120, + 7658692204, + 7658692208, + 103864117 + ], + "geometry": [ + { "lat": 40.7853890, "lon": -74.0107750 }, + { "lat": 40.7854489, "lon": -74.0107288 }, + { "lat": 40.7859382, "lon": -74.0103511 }, + { "lat": 40.7860218, "lon": -74.0102867 } + ], + "tags": { + "highway": "residential", + "name": "Buchanan Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Buchanan", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11634053, + "bounds": { + "minlat": 40.7803045, + "minlon": -74.0130087, + "maxlat": 40.7818640, + "maxlon": -74.0118400 + }, + "nodes": [ + 103865126, + 7468537402, + 103886318, + 103886317, + 7468537405, + 440243598 + ], + "geometry": [ + { "lat": 40.7818640, "lon": -74.0118400 }, + { "lat": 40.7818216, "lon": -74.0118740 }, + { "lat": 40.7810328, "lon": -74.0125069 }, + { "lat": 40.7807831, "lon": -74.0126069 }, + { "lat": 40.7803552, "lon": -74.0129662 }, + { "lat": 40.7803045, "lon": -74.0130087 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Fairview Terrace", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11634054, + "bounds": { + "minlat": 40.8083837, + "minlon": -74.0089505, + "maxlat": 40.8087322, + "maxlon": -74.0082120 + }, + "nodes": [ + 103872924, + 7475993498, + 7475993496, + 103862798 + ], + "geometry": [ + { "lat": 40.8083837, "lon": -74.0082120 }, + { "lat": 40.8084340, "lon": -74.0083187 }, + { "lat": 40.8087037, "lon": -74.0088901 }, + { "lat": 40.8087322, "lon": -74.0089505 } + ], + "tags": { + "highway": "residential", + "name": "86th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "86th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11634076, + "bounds": { + "minlat": 40.8109280, + "minlon": -74.0163020, + "maxlat": 40.8114451, + "maxlon": -74.0157806 + }, + "nodes": [ + 103867178, + 103886497 + ], + "geometry": [ + { "lat": 40.8109280, "lon": -74.0163020 }, + { "lat": 40.8114451, "lon": -74.0157806 } + ], + "tags": { + "access": "permissive", + "highway": "residential", + "motor_vehicle": "permissive", + "name": "Mazzoni Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Mazzoni", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 11634079, + "bounds": { + "minlat": 40.7877221, + "minlon": -73.9995448, + "maxlat": 40.7882254, + "maxlon": -73.9991693 + }, + "nodes": [ + 103886505, + 103870019, + 8375126463, + 103886507, + 103886508 + ], + "geometry": [ + { "lat": 40.7877221, "lon": -73.9995448 }, + { "lat": 40.7879221, "lon": -73.9993823 }, + { "lat": 40.7880447, "lon": -73.9993103 }, + { "lat": 40.7880604, "lon": -73.9993011 }, + { "lat": 40.7882254, "lon": -73.9991693 } + ], + "tags": { + "highway": "residential", + "name": "Harbor Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Harbor", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11634084, + "bounds": { + "minlat": 40.8198432, + "minlon": -74.0152076, + "maxlat": 40.8200726, + "maxlon": -74.0148664 + }, + "nodes": [ + 3484769380, + 3484769379, + 103886532 + ], + "geometry": [ + { "lat": 40.8200726, "lon": -74.0152076 }, + { "lat": 40.8198837, "lon": -74.0149715 }, + { "lat": 40.8198432, "lon": -74.0148664 } + ], + "tags": { + "highway": "residential", + "name": "Railroad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Railroad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11634096, + "bounds": { + "minlat": 40.8052460, + "minlon": -73.9971580, + "maxlat": 40.8061670, + "maxlon": -73.9961010 + }, + "nodes": [ + 103886567, + 103885416 + ], + "geometry": [ + { "lat": 40.8052460, "lon": -73.9961010 }, + { "lat": 40.8061670, "lon": -73.9971580 } + ], + "tags": { + "highway": "residential", + "name": "Hillcrest Road", + "name_1": "Hillcrest Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hillcrest", + "tiger:name_base_1": "Hillcrest", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11634103, + "bounds": { + "minlat": 40.7976374, + "minlon": -74.0139705, + "maxlat": 40.7993210, + "maxlon": -74.0126260 + }, + "nodes": [ + 103867991, + 7474498809, + 7474498807, + 103876560 + ], + "geometry": [ + { "lat": 40.7976374, "lon": -74.0139705 }, + { "lat": 40.7976985, "lon": -74.0139210 }, + { "lat": 40.7992651, "lon": -74.0126699 }, + { "lat": 40.7993210, "lon": -74.0126260 } + ], + "tags": { + "highway": "residential", + "name": "Adams Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Adams", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_left_1": "07093", + "tiger:zip_right": "07093", + "tiger:zip_right_1": "07093" + } +}, +{ + "type": "way", + "id": 11634104, + "bounds": { + "minlat": 40.7905452, + "minlon": -74.0197440, + "maxlat": 40.7943270, + "maxlon": -74.0167280 + }, + "nodes": [ + 103864401, + 7473610409, + 103886598, + 7473610411, + 103864961, + 7660979533, + 7153703087, + 7660979530, + 103876883, + 7660979531, + 7660979521, + 103864132 + ], + "geometry": [ + { "lat": 40.7943270, "lon": -74.0167280 }, + { "lat": 40.7942848, "lon": -74.0167602 }, + { "lat": 40.7936538, "lon": -74.0172469 }, + { "lat": 40.7928081, "lon": -74.0178989 }, + { "lat": 40.7927553, "lon": -74.0179597 }, + { "lat": 40.7927091, "lon": -74.0179995 }, + { "lat": 40.7926165, "lon": -74.0180791 }, + { "lat": 40.7915363, "lon": -74.0189593 }, + { "lat": 40.7914765, "lon": -74.0190080 }, + { "lat": 40.7914255, "lon": -74.0190482 }, + { "lat": 40.7905938, "lon": -74.0197036 }, + { "lat": 40.7905452, "lon": -74.0197440 } + ], + "tags": { + "highway": "residential", + "name": "Adams Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Adams", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11634136, + "bounds": { + "minlat": 40.8028290, + "minlon": -74.0190916, + "maxlat": 40.8039210, + "maxlon": -74.0162420 + }, + "nodes": [ + 103878762, + 8606118001, + 10020358522, + 13525592755, + 103867730 + ], + "geometry": [ + { "lat": 40.8028290, "lon": -74.0162420 }, + { "lat": 40.8030084, "lon": -74.0167101 }, + { "lat": 40.8035763, "lon": -74.0181980 }, + { "lat": 40.8038961, "lon": -74.0190270 }, + { "lat": 40.8039210, "lon": -74.0190916 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081138", + "highway": "tertiary", + "name": "75th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "75th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11634137, + "bounds": { + "minlat": 40.7944186, + "minlon": -74.0011047, + "maxlat": 40.7956021, + "maxlon": -73.9985575 + }, + "nodes": [ + 103886419, + 7468583827, + 2814557142, + 7468583829, + 103870452 + ], + "geometry": [ + { "lat": 40.7956021, "lon": -74.0011047 }, + { "lat": 40.7955404, "lon": -74.0009744 }, + { "lat": 40.7945548, "lon": -73.9988903 }, + { "lat": 40.7944657, "lon": -73.9986726 }, + { "lat": 40.7944186, "lon": -73.9985575 } + ], + "tags": { + "highway": "residential", + "name": "75th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "75th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11634138, + "bounds": { + "minlat": 40.8011465, + "minlon": -74.0132100, + "maxlat": 40.8016730, + "maxlon": -74.0120870 + }, + "nodes": [ + 103884419, + 7474498919, + 7474498921, + 103872907 + ], + "geometry": [ + { "lat": 40.8011465, "lon": -74.0120870 }, + { "lat": 40.8011719, "lon": -74.0121411 }, + { "lat": 40.8016198, "lon": -74.0130966 }, + { "lat": 40.8016730, "lon": -74.0132100 } + ], + "tags": { + "highway": "residential", + "name": "75th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "75th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11634243, + "bounds": { + "minlat": 40.7945120, + "minlon": -74.0229775, + "maxlat": 40.7969213, + "maxlon": -74.0179880 + }, + "nodes": [ + 103858373, + 7473610387, + 7473610421, + 4528269751, + 12973446561, + 12849086589, + 103876797, + 12849086587, + 103887027, + 103887029, + 12849086585, + 103878782, + 103875658, + 103859218 + ], + "geometry": [ + { "lat": 40.7945120, "lon": -74.0179880 }, + { "lat": 40.7945689, "lon": -74.0181078 }, + { "lat": 40.7949012, "lon": -74.0187830 }, + { "lat": 40.7949291, "lon": -74.0188397 }, + { "lat": 40.7949628, "lon": -74.0189095 }, + { "lat": 40.7952665, "lon": -74.0195393 }, + { "lat": 40.7952909, "lon": -74.0195899 }, + { "lat": 40.7953036, "lon": -74.0196156 }, + { "lat": 40.7955750, "lon": -74.0202130 }, + { "lat": 40.7957110, "lon": -74.0204950 }, + { "lat": 40.7959065, "lon": -74.0208820 }, + { "lat": 40.7961949, "lon": -74.0214529 }, + { "lat": 40.7965356, "lon": -74.0221674 }, + { "lat": 40.7969213, "lon": -74.0229775 } + ], + "tags": { + "highway": "residential", + "name": "64th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "64th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 11634245, + "bounds": { + "minlat": 40.7877023, + "minlon": -74.0097971, + "maxlat": 40.7906102, + "maxlon": -74.0036074 + }, + "nodes": [ + 103858372, + 7468537576, + 7468537574, + 103886410, + 7658692281, + 7588135074, + 7658692279, + 103862605, + 7678131178, + 7678131172, + 103881731, + 7678131174, + 7678131176, + 103855611 + ], + "geometry": [ + { "lat": 40.7877023, "lon": -74.0036074 }, + { "lat": 40.7877684, "lon": -74.0037725 }, + { "lat": 40.7888885, "lon": -74.0061141 }, + { "lat": 40.7889332, "lon": -74.0062077 }, + { "lat": 40.7889786, "lon": -74.0063051 }, + { "lat": 40.7895108, "lon": -74.0074460 }, + { "lat": 40.7898513, "lon": -74.0081760 }, + { "lat": 40.7898830, "lon": -74.0082440 }, + { "lat": 40.7899387, "lon": -74.0083618 }, + { "lat": 40.7903474, "lon": -74.0092262 }, + { "lat": 40.7903889, "lon": -74.0093140 }, + { "lat": 40.7904475, "lon": -74.0094419 }, + { "lat": 40.7905749, "lon": -74.0097201 }, + { "lat": 40.7906102, "lon": -74.0097971 } + ], + "tags": { + "highway": "residential", + "name": "64th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "64th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11634261, + "bounds": { + "minlat": 40.7892510, + "minlon": -74.0227680, + "maxlat": 40.7935190, + "maxlon": -74.0195280 + }, + "nodes": [ + 103864965, + 5558419793, + 7473610337, + 103887103, + 7473610332, + 103876887, + 7473610304, + 10032830196, + 10024124554, + 7473610302, + 103864136, + 7473610294, + 7473610296, + 103884687, + 7473610237, + 6896058834, + 6896058838, + 4520675987, + 6896058843, + 4520675986, + 7473610417, + 103869679 + ], + "geometry": [ + { "lat": 40.7935190, "lon": -74.0195760 }, + { "lat": 40.7934442, "lon": -74.0195328 }, + { "lat": 40.7933732, "lon": -74.0195286 }, + { "lat": 40.7933590, "lon": -74.0195280 }, + { "lat": 40.7922209, "lon": -74.0204365 }, + { "lat": 40.7921500, "lon": -74.0204860 }, + { "lat": 40.7921022, "lon": -74.0205246 }, + { "lat": 40.7917137, "lon": -74.0208388 }, + { "lat": 40.7916762, "lon": -74.0208692 }, + { "lat": 40.7912904, "lon": -74.0211812 }, + { "lat": 40.7912312, "lon": -74.0212291 }, + { "lat": 40.7911690, "lon": -74.0212809 }, + { "lat": 40.7907336, "lon": -74.0216436 }, + { "lat": 40.7906779, "lon": -74.0216900 }, + { "lat": 40.7906275, "lon": -74.0217292 }, + { "lat": 40.7901567, "lon": -74.0220964 }, + { "lat": 40.7900938, "lon": -74.0221412 }, + { "lat": 40.7900811, "lon": -74.0221500 }, + { "lat": 40.7899284, "lon": -74.0222620 }, + { "lat": 40.7896435, "lon": -74.0224710 }, + { "lat": 40.7893044, "lon": -74.0227276 }, + { "lat": 40.7892510, "lon": -74.0227680 } + ], + "tags": { + "highway": "residential", + "name": "Washington Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 11837271, + "bounds": { + "minlat": 40.7537852, + "minlon": -73.9154457, + "maxlat": 40.7540712, + "maxlon": -73.9152649 + }, + "nodes": [ + 7762273791, + 8088629385, + 5867077884, + 8593804525, + 42824187 + ], + "geometry": [ + { "lat": 40.7537852, "lon": -73.9154457 }, + { "lat": 40.7538965, "lon": -73.9153822 }, + { "lat": 40.7539898, "lon": -73.9153272 }, + { "lat": 40.7540127, "lon": -73.9153107 }, + { "lat": 40.7540712, "lon": -73.9152649 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "name": "47th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 11878036, + "bounds": { + "minlat": 40.7415583, + "minlon": -73.9711001, + "maxlat": 40.7481416, + "maxlon": -73.9540774 + }, + "nodes": [ + 4148924140, + 7684215080, + 7684215076, + 7684215078, + 7684215077, + 276319416, + 106710480, + 7684225817, + 7684225824, + 7684225819, + 7684225822, + 7684225821, + 6633766968, + 7684225787, + 7684225811, + 7684225789, + 7684225813, + 7684225791, + 7684225809, + 7684225793, + 7684225815, + 7684225795, + 7684225805, + 7684225797, + 7684225807, + 7684225799, + 7684225803, + 7684225801, + 7684215084, + 106706946 + ], + "geometry": [ + { "lat": 40.7415712, "lon": -73.9540774 }, + { "lat": 40.7415583, "lon": -73.9544280 }, + { "lat": 40.7415589, "lon": -73.9547100 }, + { "lat": 40.7415617, "lon": -73.9549791 }, + { "lat": 40.7415944, "lon": -73.9552692 }, + { "lat": 40.7416391, "lon": -73.9555653 }, + { "lat": 40.7423274, "lon": -73.9591551 }, + { "lat": 40.7424223, "lon": -73.9595575 }, + { "lat": 40.7425530, "lon": -73.9599801 }, + { "lat": 40.7426611, "lon": -73.9602374 }, + { "lat": 40.7428032, "lon": -73.9605435 }, + { "lat": 40.7429519, "lon": -73.9608227 }, + { "lat": 40.7431114, "lon": -73.9610851 }, + { "lat": 40.7477556, "lon": -73.9678889 }, + { "lat": 40.7478540, "lon": -73.9680801 }, + { "lat": 40.7479503, "lon": -73.9682989 }, + { "lat": 40.7480228, "lon": -73.9685084 }, + { "lat": 40.7480759, "lon": -73.9686997 }, + { "lat": 40.7481202, "lon": -73.9689349 }, + { "lat": 40.7481409, "lon": -73.9691531 }, + { "lat": 40.7481416, "lon": -73.9694051 }, + { "lat": 40.7481217, "lon": -73.9696313 }, + { "lat": 40.7480862, "lon": -73.9698667 }, + { "lat": 40.7480115, "lon": -73.9701379 }, + { "lat": 40.7479475, "lon": -73.9703059 }, + { "lat": 40.7478302, "lon": -73.9705148 }, + { "lat": 40.7477117, "lon": -73.9707216 }, + { "lat": 40.7475645, "lon": -73.9709014 }, + { "lat": 40.7474512, "lon": -73.9710050 }, + { "lat": 40.7473123, "lon": -73.9711001 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "layer": "-1", + "lit": "24/7", + "maxheight": "12'1\"", + "maxspeed": "40 mph", + "maxwidth": "8'6\"", + "name": "Queens-Midtown Tunnel", + "oneway": "yes", + "ref": "I 495", + "short_name": "Midtown Tunnel", + "toll": "yes", + "tunnel": "yes", + "wikidata": "Q125138", + "wikipedia": "en:Queens–Midtown Tunnel" + } +}, +{ + "type": "way", + "id": 12570618, + "bounds": { + "minlat": 40.8660709, + "minlon": -73.9544622, + "maxlat": 40.8685336, + "maxlon": -73.9539266 + }, + "nodes": [ + 60810686, + 114662170, + 114662171, + 114662172, + 2961794241, + 114662173, + 2961794251, + 9421906464, + 9421906465, + 114662174, + 114662175, + 13606941649, + 60810747 + ], + "geometry": [ + { "lat": 40.8660709, "lon": -73.9544622 }, + { "lat": 40.8663496, "lon": -73.9543256 }, + { "lat": 40.8667375, "lon": -73.9541104 }, + { "lat": 40.8669322, "lon": -73.9540346 }, + { "lat": 40.8674054, "lon": -73.9539360 }, + { "lat": 40.8674312, "lon": -73.9539340 }, + { "lat": 40.8674566, "lon": -73.9539300 }, + { "lat": 40.8675402, "lon": -73.9539266 }, + { "lat": 40.8676391, "lon": -73.9539280 }, + { "lat": 40.8678065, "lon": -73.9539400 }, + { "lat": 40.8681056, "lon": -73.9539716 }, + { "lat": 40.8681299, "lon": -73.9539733 }, + { "lat": 40.8685336, "lon": -73.9540011 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 16586045, + "bounds": { + "minlat": 40.8494900, + "minlon": -73.9443747, + "maxlat": 40.8501023, + "maxlon": -73.9413859 + }, + "nodes": [ + 60918687, + 13765536851, + 12068821063, + 12068892583, + 12068851095, + 12068851098, + 12068851099, + 12068851097, + 12068851096, + 171245253 + ], + "geometry": [ + { "lat": 40.8494900, "lon": -73.9413859 }, + { "lat": 40.8498041, "lon": -73.9429774 }, + { "lat": 40.8498759, "lon": -73.9433414 }, + { "lat": 40.8499192, "lon": -73.9435608 }, + { "lat": 40.8499537, "lon": -73.9437353 }, + { "lat": 40.8499737, "lon": -73.9438280 }, + { "lat": 40.8499955, "lon": -73.9439210 }, + { "lat": 40.8500633, "lon": -73.9441979 }, + { "lat": 40.8500856, "lon": -73.9442977 }, + { "lat": 40.8501023, "lon": -73.9443747 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "maxspeed": "45 mph", + "name": "George Washington Bridge Upper Level", + "name:etymology:wikidata": "Q23", + "name:ru": "Мост Джорджа Вашингтона (верхний уровень)", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 18774218, + "bounds": { + "minlat": 40.8292642, + "minlon": -73.9286366, + "maxlat": 40.8301420, + "maxlon": -73.9276327 + }, + "nodes": [ + 9166334404, + 2411145333, + 2411145336, + 595776464, + 2411145337, + 2411145335, + 2411145319, + 9166334403, + 12163643876, + 8700421913, + 595786219 + ], + "geometry": [ + { "lat": 40.8301420, "lon": -73.9276327 }, + { "lat": 40.8299913, "lon": -73.9277753 }, + { "lat": 40.8298931, "lon": -73.9278710 }, + { "lat": 40.8297881, "lon": -73.9279764 }, + { "lat": 40.8296659, "lon": -73.9281111 }, + { "lat": 40.8295664, "lon": -73.9282311 }, + { "lat": 40.8294639, "lon": -73.9283605 }, + { "lat": 40.8293999, "lon": -73.9284475 }, + { "lat": 40.8293816, "lon": -73.9284717 }, + { "lat": 40.8293395, "lon": -73.9285276 }, + { "lat": 40.8292642, "lon": -73.9286366 } + ], + "tags": { + "bicycle": "designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Macombs Dam Bridge", + "name:etymology:wikidata": "Q6724819", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs Dam", + "tiger:name_type": "Brg" + } +}, +{ + "type": "way", + "id": 18775103, + "bounds": { + "minlat": 40.8268095, + "minlon": -73.9306096, + "maxlat": 40.8270367, + "maxlon": -73.9300926 + }, + "nodes": [ + 595776433, + 4281473293, + 42744105, + 42744103 + ], + "geometry": [ + { "lat": 40.8268095, "lon": -73.9300926 }, + { "lat": 40.8269115, "lon": -73.9302760 }, + { "lat": 40.8270162, "lon": -73.9305524 }, + { "lat": 40.8270367, "lon": -73.9306096 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 157th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "157th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 19174360, + "bounds": { + "minlat": 40.8625887, + "minlon": -73.9152782, + "maxlat": 40.8629446, + "maxlon": -73.9144353 + }, + "nodes": [ + 7477194677, + 7477194678 + ], + "geometry": [ + { "lat": 40.8629446, "lon": -73.9152782 }, + { "lat": 40.8625887, "lon": -73.9144353 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "swing", + "bridge:name": "University Heights Bridge", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "University Heights Bridge", + "name:etymology:wikidata": "Q3551341", + "oneway": "no", + "operator": "New York City Department of Transportation", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q7894726", + "wikipedia": "en:University Heights Bridge" + } +}, +{ + "type": "way", + "id": 19725512, + "bounds": { + "minlat": 40.7160156, + "minlon": -73.9958489, + "maxlat": 40.7166082, + "maxlon": -73.9954504 + }, + "nodes": [ + 4506716195, + 4528918666, + 10606723133, + 11496014195, + 5161246296, + 11496014191, + 11496014192, + 11496014193, + 11496014194, + 11496014189 + ], + "geometry": [ + { "lat": 40.7160156, "lon": -73.9954504 }, + { "lat": 40.7161061, "lon": -73.9955016 }, + { "lat": 40.7164592, "lon": -73.9956986 }, + { "lat": 40.7164863, "lon": -73.9957189 }, + { "lat": 40.7165101, "lon": -73.9957384 }, + { "lat": 40.7165393, "lon": -73.9957706 }, + { "lat": 40.7165653, "lon": -73.9958072 }, + { "lat": 40.7165864, "lon": -73.9958270 }, + { "lat": 40.7166019, "lon": -73.9958376 }, + { "lat": 40.7166082, "lon": -73.9958489 } + ], + "tags": { + "bicycle": "yes", + "destination": "Bowery", + "expressway_link": "yes", + "fixme": "Verify name", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right|right", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 19726066, + "bounds": { + "minlat": 40.7093261, + "minlon": -73.9947074, + "maxlat": 40.7107043, + "maxlon": -73.9835509 + }, + "nodes": [ + 370888099, + 9907939594, + 9907939593, + 5804478356, + 9907939592, + 9907939591, + 205024435, + 9907939590, + 9907939589, + 9907939588, + 205024439, + 9907939587, + 205024441, + 9907939586, + 9907939585, + 9907939584, + 205024443 + ], + "geometry": [ + { "lat": 40.7107043, "lon": -73.9835509 }, + { "lat": 40.7106794, "lon": -73.9839372 }, + { "lat": 40.7106597, "lon": -73.9842247 }, + { "lat": 40.7106381, "lon": -73.9845026 }, + { "lat": 40.7106168, "lon": -73.9847416 }, + { "lat": 40.7105897, "lon": -73.9849952 }, + { "lat": 40.7105587, "lon": -73.9852561 }, + { "lat": 40.7100974, "lon": -73.9892573 }, + { "lat": 40.7100641, "lon": -73.9895284 }, + { "lat": 40.7100286, "lon": -73.9898051 }, + { "lat": 40.7099877, "lon": -73.9900869 }, + { "lat": 40.7095169, "lon": -73.9932278 }, + { "lat": 40.7094785, "lon": -73.9934976 }, + { "lat": 40.7094459, "lon": -73.9937683 }, + { "lat": 40.7094138, "lon": -73.9940540 }, + { "lat": 40.7093792, "lon": -73.9943143 }, + { "lat": 40.7093261, "lon": -73.9947074 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 19726366, + "bounds": { + "minlat": 40.7087705, + "minlon": -73.9992724, + "maxlat": 40.7089774, + "maxlon": -73.9978326 + }, + "nodes": [ + 1538237325, + 1541937966, + 588456029, + 8520809696, + 8279851797, + 205025778 + ], + "geometry": [ + { "lat": 40.7089774, "lon": -73.9978326 }, + { "lat": 40.7089038, "lon": -73.9983847 }, + { "lat": 40.7088653, "lon": -73.9986450 }, + { "lat": 40.7087973, "lon": -73.9990895 }, + { "lat": 40.7087874, "lon": -73.9991565 }, + { "lat": 40.7087705, "lon": -73.9992724 } + ], + "tags": { + "destination": "Robert F. Wagner Sr. Place", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 19754582, + "bounds": { + "minlat": 40.8673215, + "minlon": -74.0051460, + "maxlat": 40.8681926, + "maxlon": -74.0040184 + }, + "nodes": [ + 298605029, + 13164331392, + 10940444127, + 10940444138, + 298605906, + 10940444137, + 298605907, + 10940444143, + 3876862743 + ], + "geometry": [ + { "lat": 40.8681926, "lon": -74.0040184 }, + { "lat": 40.8681002, "lon": -74.0041288 }, + { "lat": 40.8679227, "lon": -74.0043481 }, + { "lat": 40.8678201, "lon": -74.0044787 }, + { "lat": 40.8677241, "lon": -74.0046008 }, + { "lat": 40.8676254, "lon": -74.0047306 }, + { "lat": 40.8675296, "lon": -74.0048590 }, + { "lat": 40.8674284, "lon": -74.0049963 }, + { "lat": 40.8673215, "lon": -74.0051460 } + ], + "tags": { + "bicycle": "no", + "destination": "Newark", + "destination:ref": "I 95 South;NJTP South", + "destination:ref:to": "US 46", + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "toll": "no" + } +}, +{ + "type": "way", + "id": 20254339, + "bounds": { + "minlat": 40.7033967, + "minlon": -73.9933706, + "maxlat": 40.7039614, + "maxlon": -73.9930748 + }, + "nodes": [ + 1103953627, + 8262935335, + 8262935334, + 11110524221, + 8262935329, + 11686818254 + ], + "geometry": [ + { "lat": 40.7039614, "lon": -73.9933706 }, + { "lat": 40.7037972, "lon": -73.9932846 }, + { "lat": 40.7036940, "lon": -73.9932305 }, + { "lat": 40.7036632, "lon": -73.9932144 }, + { "lat": 40.7034640, "lon": -73.9931101 }, + { "lat": 40.7033967, "lon": -73.9930748 } + ], + "tags": { + "bicycle": "designated", + "highway": "pedestrian", + "lit": "yes", + "name": "New Dock Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22701977, + "bounds": { + "minlat": 40.7662962, + "minlon": -74.0224275, + "maxlat": 40.7668105, + "maxlon": -74.0198833 + }, + "nodes": [ + 60007415, + 3275488159, + 3275488103, + 3275488156, + 3275488128, + 3275488155, + 6151794888, + 3275488144, + 3275488112, + 3275488118, + 3275488137, + 3275488108, + 3275488136, + 3275488139 + ], + "geometry": [ + { "lat": 40.7662962, "lon": -74.0224275 }, + { "lat": 40.7664076, "lon": -74.0222743 }, + { "lat": 40.7665073, "lon": -74.0221070 }, + { "lat": 40.7665942, "lon": -74.0219274 }, + { "lat": 40.7666672, "lon": -74.0217379 }, + { "lat": 40.7667259, "lon": -74.0215396 }, + { "lat": 40.7667696, "lon": -74.0213348 }, + { "lat": 40.7667979, "lon": -74.0211252 }, + { "lat": 40.7668105, "lon": -74.0209132 }, + { "lat": 40.7668073, "lon": -74.0207003 }, + { "lat": 40.7667883, "lon": -74.0204887 }, + { "lat": 40.7667537, "lon": -74.0202806 }, + { "lat": 40.7667039, "lon": -74.0200782 }, + { "lat": 40.7666393, "lon": -74.0198833 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000495", + "bicycle": "no", + "destination:lanes": "Dyer Avenue north;West 40th Street|Dyer Avenue south", + "foot": "no", + "hgv": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "-2", + "lit": "yes", + "maxspeed": "35 mph", + "name": "Lincoln Tunnel", + "name:etymology:wikidata": "Q91", + "oneway": "yes", + "ref": "NJ 495", + "source": "usgs", + "surface": "asphalt", + "toll": "yes", + "tunnel": "yes", + "wikidata": "Q125805", + "wikipedia": "en:Lincoln Tunnel" + } +}, +{ + "type": "way", + "id": 22897633, + "bounds": { + "minlat": 40.7332587, + "minlon": -73.9873950, + "maxlat": 40.7358905, + "maxlon": -73.9811531 + }, + "nodes": [ + 42446889, + 2384399611, + 4298757047, + 9558758499, + 42446885, + 9558758498, + 13205862057, + 4129804702, + 4376122114, + 13205862056, + 4129804711, + 9558758493, + 42446879, + 9558758492, + 12183286728, + 9679181038, + 42446875, + 9679181067, + 12183283834, + 9679181035, + 42434355 + ], + "geometry": [ + { "lat": 40.7332587, "lon": -73.9811531 }, + { "lat": 40.7333132, "lon": -73.9812830 }, + { "lat": 40.7333281, "lon": -73.9813186 }, + { "lat": 40.7339080, "lon": -73.9827016 }, + { "lat": 40.7339281, "lon": -73.9827492 }, + { "lat": 40.7339552, "lon": -73.9828145 }, + { "lat": 40.7341929, "lon": -73.9833800 }, + { "lat": 40.7342149, "lon": -73.9834322 }, + { "lat": 40.7342290, "lon": -73.9834666 }, + { "lat": 40.7342630, "lon": -73.9835476 }, + { "lat": 40.7343136, "lon": -73.9836682 }, + { "lat": 40.7345750, "lon": -73.9842914 }, + { "lat": 40.7345982, "lon": -73.9843469 }, + { "lat": 40.7346250, "lon": -73.9844107 }, + { "lat": 40.7351304, "lon": -73.9856035 }, + { "lat": 40.7351517, "lon": -73.9856538 }, + { "lat": 40.7352124, "lon": -73.9857941 }, + { "lat": 40.7352693, "lon": -73.9859240 }, + { "lat": 40.7358325, "lon": -73.9872550 }, + { "lat": 40.7358555, "lon": -73.9873101 }, + { "lat": 40.7358905, "lon": -73.9873950 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 17th Street", + "name:ru": "Восточная 17-я стрит", + "name_1": "East 17 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22897720, + "bounds": { + "minlat": 40.7414615, + "minlon": -74.0087032, + "maxlat": 40.7421447, + "maxlon": -74.0081824 + }, + "nodes": [ + 42454328, + 3874650227, + 12162436953, + 8214302533, + 42429431 + ], + "geometry": [ + { "lat": 40.7421447, "lon": -74.0081824 }, + { "lat": 40.7420650, "lon": -74.0082723 }, + { "lat": 40.7415662, "lon": -74.0086306 }, + { "lat": 40.7415254, "lon": -74.0086599 }, + { "lat": 40.7414615, "lon": -74.0087032 } + ], + "tags": { + "highway": "secondary", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 22898087, + "bounds": { + "minlat": 40.7014429, + "minlon": -74.0119384, + "maxlat": 40.7017511, + "maxlon": -74.0105880 + }, + "nodes": [ + 42451402, + 9181607973 + ], + "geometry": [ + { "lat": 40.7014429, "lon": -74.0119384 }, + { "lat": 40.7017511, "lon": -74.0105880 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "note": "this is supposed to be a local truck route but signs say no trucks", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 22898210, + "bounds": { + "minlat": 40.8069238, + "minlon": -73.9355669, + "maxlat": 40.8081964, + "maxlon": -73.9346908 + }, + "nodes": [ + 371337145, + 10122952956, + 9178585625, + 9178585624, + 10122952957, + 9178585623, + 42447210, + 10122952959, + 42424757 + ], + "geometry": [ + { "lat": 40.8081964, "lon": -73.9347058 }, + { "lat": 40.8081780, "lon": -73.9346958 }, + { "lat": 40.8081604, "lon": -73.9346908 }, + { "lat": 40.8081441, "lon": -73.9346911 }, + { "lat": 40.8081253, "lon": -73.9346943 }, + { "lat": 40.8081092, "lon": -73.9347019 }, + { "lat": 40.8075469, "lon": -73.9351120 }, + { "lat": 40.8069828, "lon": -73.9355245 }, + { "lat": 40.8069238, "lon": -73.9355669 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 22898269, + "bounds": { + "minlat": 40.7188572, + "minlon": -74.0048363, + "maxlat": 40.7200394, + "maxlon": -74.0039146 + }, + "nodes": [ + 42453777, + 8304498287, + 8304498329, + 42447249, + 8304498328, + 8307641816, + 42447246 + ], + "geometry": [ + { "lat": 40.7188572, "lon": -74.0048363 }, + { "lat": 40.7189048, "lon": -74.0048013 }, + { "lat": 40.7194293, "lon": -74.0044104 }, + { "lat": 40.7194761, "lon": -74.0043754 }, + { "lat": 40.7195172, "lon": -74.0043431 }, + { "lat": 40.7199935, "lon": -74.0039521 }, + { "lat": 40.7200394, "lon": -74.0039146 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 22898530, + "bounds": { + "minlat": 40.7671354, + "minlon": -73.9817493, + "maxlat": 40.7675144, + "maxlon": -73.9816937 + }, + "nodes": [ + 1701856476, + 3369517472, + 1792535213, + 1701856471, + 8780665828, + 42428332 + ], + "geometry": [ + { "lat": 40.7675144, "lon": -73.9817045 }, + { "lat": 40.7674916, "lon": -73.9817008 }, + { "lat": 40.7674614, "lon": -73.9816966 }, + { "lat": 40.7674306, "lon": -73.9816937 }, + { "lat": 40.7671959, "lon": -73.9817397 }, + { "lat": 40.7671354, "lon": -73.9817493 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 22898583, + "bounds": { + "minlat": 40.7985106, + "minlon": -73.9480424, + "maxlat": 40.8006650, + "maxlon": -73.9464620 + }, + "nodes": [ + 42437174, + 10167137550, + 8807524534, + 42435387, + 6784911811, + 10610255916, + 6223478658, + 9073283237 + ], + "geometry": [ + { "lat": 40.8006650, "lon": -73.9464620 }, + { "lat": 40.8005733, "lon": -73.9465287 }, + { "lat": 40.8000509, "lon": -73.9469085 }, + { "lat": 40.7999664, "lon": -73.9469712 }, + { "lat": 40.7998789, "lon": -73.9470339 }, + { "lat": 40.7988920, "lon": -73.9477598 }, + { "lat": 40.7988235, "lon": -73.9478102 }, + { "lat": 40.7985106, "lon": -73.9480424 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "oneway:bicycle": "no", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 22902608, + "bounds": { + "minlat": 40.7347875, + "minlon": -73.9907407, + "maxlat": 40.7351693, + "maxlon": -73.9901419 + }, + "nodes": [ + 4205565500, + 12179582177, + 2077984663, + 2077984658, + 42437009, + 12179582178, + 7181886297, + 10174519056, + 12179582179, + 1251605769, + 10174519055, + 12179582180, + 42428493 + ], + "geometry": [ + { "lat": 40.7351693, "lon": -73.9901419 }, + { "lat": 40.7351363, "lon": -73.9901793 }, + { "lat": 40.7351054, "lon": -73.9902223 }, + { "lat": 40.7350732, "lon": -73.9902686 }, + { "lat": 40.7350353, "lon": -73.9903267 }, + { "lat": 40.7350042, "lon": -73.9903862 }, + { "lat": 40.7349725, "lon": -73.9904467 }, + { "lat": 40.7349097, "lon": -73.9905654 }, + { "lat": 40.7348931, "lon": -73.9905978 }, + { "lat": 40.7348633, "lon": -73.9906518 }, + { "lat": 40.7348378, "lon": -73.9906875 }, + { "lat": 40.7348140, "lon": -73.9907129 }, + { "lat": 40.7347875, "lon": -73.9907407 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "bump;flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Union Square East", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 22902609, + "bounds": { + "minlat": 40.7333720, + "minlon": -73.9852420, + "maxlat": 40.7340120, + "maxlon": -73.9847730 + }, + "nodes": [ + 42455465, + 4191917275, + 9558758495, + 4191922366, + 42431461 + ], + "geometry": [ + { "lat": 40.7340120, "lon": -73.9847730 }, + { "lat": 40.7339916, "lon": -73.9847883 }, + { "lat": 40.7334685, "lon": -73.9851712 }, + { "lat": 40.7334288, "lon": -73.9852003 }, + { "lat": 40.7333720, "lon": -73.9852420 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 07:30-15:30)", + "name": "Rutherford Place", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22902610, + "bounds": { + "minlat": 40.7333400, + "minlon": -73.9831760, + "maxlat": 40.7339281, + "maxlon": -73.9827492 + }, + "nodes": [ + 42455452, + 9507816954, + 9558758497, + 4191922374, + 42446885 + ], + "geometry": [ + { "lat": 40.7333400, "lon": -73.9831760 }, + { "lat": 40.7333775, "lon": -73.9831488 }, + { "lat": 40.7338269, "lon": -73.9828228 }, + { "lat": 40.7338752, "lon": -73.9827877 }, + { "lat": 40.7339281, "lon": -73.9827492 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Nathan D. Perlman Place", + "name:etymology:wikidata": "Q2856441", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22903923, + "bounds": { + "minlat": 40.7404891, + "minlon": -74.0092282, + "maxlat": 40.7414863, + "maxlon": -74.0089072 + }, + "nodes": [ + 373896722, + 12161932093, + 12161932090, + 12161932089, + 12161932088, + 246647924, + 12161932087, + 12161932086, + 246647925, + 9112000208, + 11027819090 + ], + "geometry": [ + { "lat": 40.7404891, "lon": -74.0092282 }, + { "lat": 40.7405090, "lon": -74.0092180 }, + { "lat": 40.7405588, "lon": -74.0091925 }, + { "lat": 40.7406193, "lon": -74.0091649 }, + { "lat": 40.7406941, "lon": -74.0091353 }, + { "lat": 40.7407735, "lon": -74.0091067 }, + { "lat": 40.7408620, "lon": -74.0090777 }, + { "lat": 40.7409669, "lon": -74.0090466 }, + { "lat": 40.7410539, "lon": -74.0090213 }, + { "lat": 40.7414238, "lon": -74.0089232 }, + { "lat": 40.7414863, "lon": -74.0089072 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 22904005, + "bounds": { + "minlat": 40.7486132, + "minlon": -74.0080584, + "maxlat": 40.7488097, + "maxlon": -74.0078547 + }, + "nodes": [ + 9850767747, + 12161224688, + 12161224689, + 246580297, + 9143574633, + 12413770650, + 9143574634, + 12161224690, + 246580299, + 12161224691, + 12161224692, + 246580298 + ], + "geometry": [ + { "lat": 40.7488097, "lon": -74.0080584 }, + { "lat": 40.7487789, "lon": -74.0080499 }, + { "lat": 40.7487342, "lon": -74.0080403 }, + { "lat": 40.7486941, "lon": -74.0080284 }, + { "lat": 40.7486696, "lon": -74.0080162 }, + { "lat": 40.7486465, "lon": -74.0080011 }, + { "lat": 40.7486330, "lon": -74.0079813 }, + { "lat": 40.7486209, "lon": -74.0079587 }, + { "lat": 40.7486146, "lon": -74.0079347 }, + { "lat": 40.7486132, "lon": -74.0079061 }, + { "lat": 40.7486152, "lon": -74.0078857 }, + { "lat": 40.7486200, "lon": -74.0078547 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "lanes": "1", + "maxspeed": "25 mph", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 22904020, + "bounds": { + "minlat": 40.7491221, + "minlon": -74.0083651, + "maxlat": 40.7493106, + "maxlon": -74.0083244 + }, + "nodes": [ + 246580294, + 12161224699, + 3914865843, + 9143574626, + 9143574627, + 246580331 + ], + "geometry": [ + { "lat": 40.7493106, "lon": -74.0083244 }, + { "lat": 40.7492743, "lon": -74.0083446 }, + { "lat": 40.7492459, "lon": -74.0083570 }, + { "lat": 40.7492150, "lon": -74.0083645 }, + { "lat": 40.7491680, "lon": -74.0083651 }, + { "lat": 40.7491221, "lon": -74.0083562 } + ], + "tags": { + "destination": "Chelsea Piers", + "highway": "service", + "maxspeed": "25 mph", + "oneway": "yes", + "service": "driveway", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 22904053, + "bounds": { + "minlat": 40.7479591, + "minlon": -74.0076699, + "maxlat": 40.7482041, + "maxlon": -74.0074153 + }, + "nodes": [ + 246579597, + 12161232249, + 12161232244, + 12161232245, + 4872623865, + 42422258 + ], + "geometry": [ + { "lat": 40.7479591, "lon": -74.0076699 }, + { "lat": 40.7480439, "lon": -74.0075394 }, + { "lat": 40.7480870, "lon": -74.0075070 }, + { "lat": 40.7481231, "lon": -74.0074804 }, + { "lat": 40.7481607, "lon": -74.0074486 }, + { "lat": 40.7482041, "lon": -74.0074153 } + ], + "tags": { + "bicycle": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 22904055, + "bounds": { + "minlat": 40.7483550, + "minlon": -74.0063900, + "maxlat": 40.7495028, + "maxlon": -74.0036840 + }, + "nodes": [ + 1701921019, + 12161232221, + 10173122255, + 42427483 + ], + "geometry": [ + { "lat": 40.7495028, "lon": -74.0063900 }, + { "lat": 40.7494919, "lon": -74.0063663 }, + { "lat": 40.7484183, "lon": -74.0038334 }, + { "lat": 40.7483550, "lon": -74.0036840 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 24th Street", + "name:ru": "Западная 24-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22904149, + "bounds": { + "minlat": 40.7492384, + "minlon": -74.0067703, + "maxlat": 40.7495313, + "maxlon": -74.0065763 + }, + "nodes": [ + 246580466, + 3914863402, + 9143569896, + 4207978494 + ], + "geometry": [ + { "lat": 40.7495313, "lon": -74.0065763 }, + { "lat": 40.7494710, "lon": -74.0065994 }, + { "lat": 40.7494285, "lon": -74.0066309 }, + { "lat": 40.7492384, "lon": -74.0067703 } + ], + "tags": { + "change:backward": "no", + "change:forward": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "lanes:backward": "2", + "lanes:forward": "4", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|left", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 22904150, + "bounds": { + "minlat": 40.7495313, + "minlon": -74.0065763, + "maxlat": 40.7501036, + "maxlon": -74.0061230 + }, + "nodes": [ + 5730369220, + 9143569892, + 12161232222, + 5690601886, + 246580466 + ], + "geometry": [ + { "lat": 40.7501036, "lon": -74.0061230 }, + { "lat": 40.7499665, "lon": -74.0062826 }, + { "lat": 40.7496711, "lon": -74.0065056 }, + { "lat": 40.7496332, "lon": -74.0065339 }, + { "lat": 40.7495313, "lon": -74.0065763 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 22904155, + "bounds": { + "minlat": 40.7712839, + "minlon": -73.9907032, + "maxlat": 40.7716133, + "maxlon": -73.9904508 + }, + "nodes": [ + 42430749, + 11608958691, + 595269639 + ], + "geometry": [ + { "lat": 40.7716133, "lon": -73.9904508 }, + { "lat": 40.7715560, "lon": -73.9904947 }, + { "lat": 40.7712839, "lon": -73.9907032 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "turn:lanes:backward": "left|through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 22904166, + "bounds": { + "minlat": 40.7502621, + "minlon": -74.0084887, + "maxlat": 40.7503356, + "maxlon": -74.0083005 + }, + "nodes": [ + 42427494, + 246580797 + ], + "geometry": [ + { "lat": 40.7502621, "lon": -74.0083005 }, + { "lat": 40.7503356, "lon": -74.0084887 } + ], + "tags": { + "bicycle": "no", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West 24th Street", + "name:ru": "Западная 24-я стрит", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 22909031, + "bounds": { + "minlat": 40.7404853, + "minlon": -74.0097055, + "maxlat": 40.7405115, + "maxlon": -74.0095897 + }, + "nodes": [ + 246647993, + 12117376840, + 11461275522, + 12117376850, + 593816422 + ], + "geometry": [ + { "lat": 40.7404853, "lon": -74.0095897 }, + { "lat": 40.7404910, "lon": -74.0096100 }, + { "lat": 40.7405059, "lon": -74.0096628 }, + { "lat": 40.7405085, "lon": -74.0096827 }, + { "lat": 40.7405115, "lon": -74.0097055 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Bloomfield Street", + "name:etymology:wikidata": "Q435155", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 22909136, + "bounds": { + "minlat": 40.7421447, + "minlon": -74.0085846, + "maxlat": 40.7423280, + "maxlon": -74.0081824 + }, + "nodes": [ + 3874650232, + 12162436962, + 12162436964, + 12162436963, + 10963538509, + 12161932070, + 42454328 + ], + "geometry": [ + { "lat": 40.7423280, "lon": -74.0085846 }, + { "lat": 40.7422295, "lon": -74.0083447 }, + { "lat": 40.7422076, "lon": -74.0083159 }, + { "lat": 40.7421952, "lon": -74.0082959 }, + { "lat": 40.7421805, "lon": -74.0082712 }, + { "lat": 40.7421698, "lon": -74.0082470 }, + { "lat": 40.7421447, "lon": -74.0081824 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 14th Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 22909152, + "bounds": { + "minlat": 40.7426313, + "minlon": -74.0078571, + "maxlat": 40.7428340, + "maxlon": -74.0077050 + }, + "nodes": [ + 246648219, + 3874650241, + 42445766 + ], + "geometry": [ + { "lat": 40.7426313, "lon": -74.0078571 }, + { "lat": 40.7427683, "lon": -74.0077552 }, + { "lat": 40.7428340, "lon": -74.0077050 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 22909247, + "bounds": { + "minlat": 40.7393666, + "minlon": -74.0097004, + "maxlat": 40.7407313, + "maxlon": -74.0089600 + }, + "nodes": [ + 42431156, + 373896216, + 42440580, + 12161932097, + 12161932098, + 42453517, + 42453502, + 12161932099, + 12161932100, + 12161966101, + 42453489, + 12161966102, + 42453485, + 593816275 + ], + "geometry": [ + { "lat": 40.7407313, "lon": -74.0089600 }, + { "lat": 40.7405317, "lon": -74.0090226 }, + { "lat": 40.7404764, "lon": -74.0090421 }, + { "lat": 40.7404216, "lon": -74.0090645 }, + { "lat": 40.7403753, "lon": -74.0090912 }, + { "lat": 40.7403214, "lon": -74.0091257 }, + { "lat": 40.7399874, "lon": -74.0093452 }, + { "lat": 40.7398946, "lon": -74.0094063 }, + { "lat": 40.7397963, "lon": -74.0094707 }, + { "lat": 40.7397045, "lon": -74.0095293 }, + { "lat": 40.7396278, "lon": -74.0095738 }, + { "lat": 40.7395698, "lon": -74.0096028 }, + { "lat": 40.7395316, "lon": -74.0096223 }, + { "lat": 40.7393666, "lon": -74.0097004 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "lanes": "2", + "maxspeed": "25 mph", + "name": "10th Avenue", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22909249, + "bounds": { + "minlat": 40.7381542, + "minlon": -74.0096758, + "maxlat": 40.7385405, + "maxlon": -74.0096022 + }, + "nodes": [ + 42453477, + 1701920988, + 1701920986, + 246882782, + 8214302531 + ], + "geometry": [ + { "lat": 40.7381542, "lon": -74.0096022 }, + { "lat": 40.7381571, "lon": -74.0096179 }, + { "lat": 40.7381767, "lon": -74.0096513 }, + { "lat": 40.7382178, "lon": -74.0096758 }, + { "lat": 40.7385405, "lon": -74.0096431 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West Street", + "name_1": "State Highway 9A", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22914179, + "bounds": { + "minlat": 40.7458555, + "minlon": -74.0046530, + "maxlat": 40.7470230, + "maxlon": -74.0018592 + }, + "nodes": [ + 42434285, + 10168486326, + 13070973129, + 10168486337, + 42434279 + ], + "geometry": [ + { "lat": 40.7470230, "lon": -74.0046530 }, + { "lat": 40.7469713, "lon": -74.0045294 }, + { "lat": 40.7461028, "lon": -74.0024512 }, + { "lat": 40.7458934, "lon": -74.0019500 }, + { "lat": 40.7458555, "lon": -74.0018592 } + ], + "tags": { + "alt_name": "West 22 Street", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 22nd Street", + "name:ru": "Западная 22-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22914180, + "bounds": { + "minlat": 40.7464102, + "minlon": -74.0077514, + "maxlat": 40.7475124, + "maxlon": -74.0050981 + }, + "nodes": [ + 42443677, + 4872623873, + 8702296727, + 8702280507, + 12181309668, + 10168486348, + 42443676 + ], + "geometry": [ + { "lat": 40.7475124, "lon": -74.0077514 }, + { "lat": 40.7474643, "lon": -74.0076367 }, + { "lat": 40.7473175, "lon": -74.0072905 }, + { "lat": 40.7472720, "lon": -74.0071827 }, + { "lat": 40.7464911, "lon": -74.0052996 }, + { "lat": 40.7464644, "lon": -74.0052351 }, + { "lat": 40.7464102, "lon": -74.0050981 } + ], + "tags": { + "alt_name": "West 21 Street", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 21st Street", + "name:ru": "Западная 21-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22914181, + "bounds": { + "minlat": 40.7446390, + "minlon": -74.0055340, + "maxlat": 40.7458171, + "maxlon": -74.0027325 + }, + "nodes": [ + 42427390, + 10168486375, + 12181309666, + 12181309665, + 12181309662, + 12181309664, + 10168486390, + 42427386 + ], + "geometry": [ + { "lat": 40.7458171, "lon": -74.0055340 }, + { "lat": 40.7457638, "lon": -74.0054075 }, + { "lat": 40.7454656, "lon": -74.0046978 }, + { "lat": 40.7449867, "lon": -74.0035572 }, + { "lat": 40.7447120, "lon": -74.0029089 }, + { "lat": 40.7446982, "lon": -74.0028756 }, + { "lat": 40.7446805, "lon": -74.0028332 }, + { "lat": 40.7446390, "lon": -74.0027325 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 20th Street", + "name:ru": "Западная 20-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22914182, + "bounds": { + "minlat": 40.7452310, + "minlon": -74.0080044, + "maxlat": 40.7461009, + "maxlon": -74.0059600 + }, + "nodes": [ + 4872623863, + 4872623855, + 10168486363, + 42454381 + ], + "geometry": [ + { "lat": 40.7461009, "lon": -74.0080044 }, + { "lat": 40.7460556, "lon": -74.0078886 }, + { "lat": 40.7452855, "lon": -74.0060892 }, + { "lat": 40.7452310, "lon": -74.0059600 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 19th Street", + "name:ru": "Западная 19-я стрит", + "name_1": "West 19 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22916321, + "bounds": { + "minlat": 40.7382262, + "minlon": -74.0040312, + "maxlat": 40.7384657, + "maxlon": -74.0038696 + }, + "nodes": [ + 6518638079, + 6518638078, + 6518638077, + 6211334204 + ], + "geometry": [ + { "lat": 40.7382262, "lon": -74.0040312 }, + { "lat": 40.7383261, "lon": -74.0039935 }, + { "lat": 40.7384468, "lon": -74.0038790 }, + { "lat": 40.7384657, "lon": -74.0038696 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22916379, + "bounds": { + "minlat": 40.7502291, + "minlon": -74.0051771, + "maxlat": 40.7514035, + "maxlon": -74.0023139 + }, + "nodes": [ + 42434821, + 8262308990, + 11649717715, + 8261123023, + 42430600 + ], + "geometry": [ + { "lat": 40.7502291, "lon": -74.0023139 }, + { "lat": 40.7502793, "lon": -74.0024641 }, + { "lat": 40.7507275, "lon": -74.0035450 }, + { "lat": 40.7513483, "lon": -74.0050422 }, + { "lat": 40.7514035, "lon": -74.0051771 } + ], + "tags": { + "alt_name": "West 27 Street", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 27th Street", + "name:ru": "Западная 27-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22916381, + "bounds": { + "minlat": 40.7546689, + "minlon": -73.9759982, + "maxlat": 40.7547324, + "maxlon": -73.9759246 + }, + "nodes": [ + 596775840, + 11509692766, + 11509692765, + 11509720098, + 11509692764 + ], + "geometry": [ + { "lat": 40.7547324, "lon": -73.9759246 }, + { "lat": 40.7547160, "lon": -73.9759491 }, + { "lat": 40.7546959, "lon": -73.9759726 }, + { "lat": 40.7546866, "lon": -73.9759814 }, + { "lat": 40.7546689, "lon": -73.9759982 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 22927287, + "bounds": { + "minlat": 40.7287662, + "minlon": -74.0093445, + "maxlat": 40.7289835, + "maxlon": -74.0070745 + }, + "nodes": [ + 42436371, + 8307641913, + 12162502079, + 8307641905, + 42436109, + 8307641908, + 12240649887, + 12162502082, + 9609713324, + 8307641895, + 42448568 + ], + "geometry": [ + { "lat": 40.7287662, "lon": -74.0070745 }, + { "lat": 40.7287875, "lon": -74.0072206 }, + { "lat": 40.7289049, "lon": -74.0084220 }, + { "lat": 40.7289119, "lon": -74.0084934 }, + { "lat": 40.7289193, "lon": -74.0085913 }, + { "lat": 40.7289304, "lon": -74.0086980 }, + { "lat": 40.7289373, "lon": -74.0087676 }, + { "lat": 40.7289775, "lon": -74.0091754 }, + { "lat": 40.7289819, "lon": -74.0092176 }, + { "lat": 40.7289835, "lon": -74.0092502 }, + { "lat": 40.7289826, "lon": -74.0093445 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 22927373, + "bounds": { + "minlat": 40.7375604, + "minlon": -74.0096650, + "maxlat": 40.7375667, + "maxlon": -74.0082972 + }, + "nodes": [ + 3874650207, + 12162436903, + 8692206123 + ], + "geometry": [ + { "lat": 40.7375667, "lon": -74.0096650 }, + { "lat": 40.7375604, "lon": -74.0083480 }, + { "lat": 40.7375611, "lon": -74.0082972 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 12th Street", + "name:ru": "Западная 12-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 22927399, + "bounds": { + "minlat": 40.7218435, + "minlon": -74.0078952, + "maxlat": 40.7219657, + "maxlon": -74.0067853 + }, + "nodes": [ + 246884508, + 4136469551, + 4136469557, + 4136469559, + 4136469556, + 42424813, + 4136469552, + 4136469554, + 4136469560, + 4136469558 + ], + "geometry": [ + { "lat": 40.7218794, "lon": -74.0067853 }, + { "lat": 40.7218632, "lon": -74.0068081 }, + { "lat": 40.7218510, "lon": -74.0068374 }, + { "lat": 40.7218442, "lon": -74.0068696 }, + { "lat": 40.7218435, "lon": -74.0069106 }, + { "lat": 40.7218618, "lon": -74.0071010 }, + { "lat": 40.7219200, "lon": -74.0076796 }, + { "lat": 40.7219277, "lon": -74.0077405 }, + { "lat": 40.7219384, "lon": -74.0077957 }, + { "lat": 40.7219657, "lon": -74.0078952 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Laight Street", + "name:ko": "레이트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 22927411, + "bounds": { + "minlat": 40.7226644, + "minlon": -74.0112887, + "maxlat": 40.7229553, + "maxlon": -74.0083229 + }, + "nodes": [ + 11492226802, + 11492239000, + 42438060, + 9609713319, + 8429014577, + 42436069, + 8429014574, + 8002650349, + 11492239008 + ], + "geometry": [ + { "lat": 40.7229553, "lon": -74.0112887 }, + { "lat": 40.7229246, "lon": -74.0109757 }, + { "lat": 40.7228729, "lon": -74.0104496 }, + { "lat": 40.7228065, "lon": -74.0097732 }, + { "lat": 40.7228037, "lon": -74.0097455 }, + { "lat": 40.7227945, "lon": -74.0096510 }, + { "lat": 40.7227859, "lon": -74.0095618 }, + { "lat": 40.7227108, "lon": -74.0087724 }, + { "lat": 40.7226644, "lon": -74.0083229 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Vestry Street", + "name:ko": "배스트리 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 22927419, + "bounds": { + "minlat": 40.7218794, + "minlon": -74.0067853, + "maxlat": 40.7224747, + "maxlon": -74.0066758 + }, + "nodes": [ + 246885162, + 246886238, + 246886237, + 246886236, + 1701898678, + 1701898690, + 1701898695, + 4136476380, + 1701898704, + 1701898651, + 4136469553, + 1701898723, + 1701898714, + 246884508 + ], + "geometry": [ + { "lat": 40.7224747, "lon": -74.0067245 }, + { "lat": 40.7224534, "lon": -74.0067065 }, + { "lat": 40.7224308, "lon": -74.0066965 }, + { "lat": 40.7224022, "lon": -74.0066881 }, + { "lat": 40.7223582, "lon": -74.0066805 }, + { "lat": 40.7223028, "lon": -74.0066758 }, + { "lat": 40.7222546, "lon": -74.0066766 }, + { "lat": 40.7222015, "lon": -74.0066821 }, + { "lat": 40.7220318, "lon": -74.0067103 }, + { "lat": 40.7219961, "lon": -74.0067185 }, + { "lat": 40.7219581, "lon": -74.0067307 }, + { "lat": 40.7219251, "lon": -74.0067462 }, + { "lat": 40.7218983, "lon": -74.0067651 }, + { "lat": 40.7218794, "lon": -74.0067853 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "sett", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 22927462, + "bounds": { + "minlat": 40.7215294, + "minlon": -74.0106823, + "maxlat": 40.7247918, + "maxlon": -74.0101224 + }, + "nodes": [ + 12416643515, + 8310246730, + 8310246736, + 42440916, + 8310246735, + 7968837728, + 8310246742, + 42438060, + 8310246744, + 7968837727, + 8310246748, + 42436021, + 8310246755, + 42445171, + 8310246754, + 12162542955 + ], + "geometry": [ + { "lat": 40.7215294, "lon": -74.0106823 }, + { "lat": 40.7216139, "lon": -74.0106662 }, + { "lat": 40.7221419, "lon": -74.0105716 }, + { "lat": 40.7222159, "lon": -74.0105584 }, + { "lat": 40.7222714, "lon": -74.0105492 }, + { "lat": 40.7227417, "lon": -74.0104713 }, + { "lat": 40.7227936, "lon": -74.0104627 }, + { "lat": 40.7228729, "lon": -74.0104496 }, + { "lat": 40.7229299, "lon": -74.0104398 }, + { "lat": 40.7234052, "lon": -74.0103593 }, + { "lat": 40.7234543, "lon": -74.0103510 }, + { "lat": 40.7235227, "lon": -74.0103393 }, + { "lat": 40.7241011, "lon": -74.0102385 }, + { "lat": 40.7241745, "lon": -74.0102257 }, + { "lat": 40.7242428, "lon": -74.0102187 }, + { "lat": 40.7247918, "lon": -74.0101224 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 22927463, + "bounds": { + "minlat": 40.7246766, + "minlon": -74.0100706, + "maxlat": 40.7250648, + "maxlon": -74.0093172 + }, + "nodes": [ + 42440873, + 12162542954, + 1701898709, + 1701898682, + 4142105795, + 4142105818, + 1701898701, + 4142105792, + 4872871121, + 4142105812 + ], + "geometry": [ + { "lat": 40.7250648, "lon": -74.0100706 }, + { "lat": 40.7250516, "lon": -74.0100080 }, + { "lat": 40.7250326, "lon": -74.0099337 }, + { "lat": 40.7250071, "lon": -74.0098511 }, + { "lat": 40.7249837, "lon": -74.0097860 }, + { "lat": 40.7249550, "lon": -74.0097227 }, + { "lat": 40.7249238, "lon": -74.0096686 }, + { "lat": 40.7248881, "lon": -74.0096150 }, + { "lat": 40.7247464, "lon": -74.0094104 }, + { "lat": 40.7246766, "lon": -74.0093172 } + ], + "tags": { + "bicycle": "yes", + "change": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 22927484, + "bounds": { + "minlat": 40.7255591, + "minlon": -74.0109300, + "maxlat": 40.7258067, + "maxlon": -74.0104988 + }, + "nodes": [ + 4207143432, + 12162542963, + 1701898730, + 12162542960, + 12162542961, + 4142073862, + 12162542962, + 42440854 + ], + "geometry": [ + { "lat": 40.7255591, "lon": -74.0104988 }, + { "lat": 40.7257370, "lon": -74.0107518 }, + { "lat": 40.7257686, "lon": -74.0107966 }, + { "lat": 40.7257833, "lon": -74.0108189 }, + { "lat": 40.7257941, "lon": -74.0108430 }, + { "lat": 40.7258010, "lon": -74.0108706 }, + { "lat": 40.7258043, "lon": -74.0108961 }, + { "lat": 40.7258067, "lon": -74.0109300 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left;right|right", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 22927486, + "bounds": { + "minlat": 40.7241140, + "minlon": -74.0111079, + "maxlat": 40.7242627, + "maxlon": -74.0095482 + }, + "nodes": [ + 3874650180, + 4142105827, + 8310246756, + 42445171, + 8310246753, + 7968837725, + 11659041158 + ], + "geometry": [ + { "lat": 40.7242627, "lon": -74.0111079 }, + { "lat": 40.7241895, "lon": -74.0103858 }, + { "lat": 40.7241818, "lon": -74.0103034 }, + { "lat": 40.7241745, "lon": -74.0102257 }, + { "lat": 40.7241669, "lon": -74.0101405 }, + { "lat": 40.7241152, "lon": -74.0095609 }, + { "lat": 40.7241140, "lon": -74.0095482 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Watts Street", + "name:etymology:wikidata": "Q1702113", + "name:ko": "와츠 스트리트", + "name:ru": "Уоттс-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22927668, + "bounds": { + "minlat": 40.7106822, + "minlon": -74.0153015, + "maxlat": 40.7110247, + "maxlon": -74.0141976 + }, + "nodes": [ + 889262022, + 11423788184, + 5813276180 + ], + "geometry": [ + { "lat": 40.7110247, "lon": -74.0153015 }, + { "lat": 40.7109711, "lon": -74.0151287 }, + { "lat": 40.7106822, "lon": -74.0141976 } + ], + "tags": { + "bridge": "covered", + "highway": "pedestrian", + "layer": "1", + "name": "Liberty Street Bridge", + "name:etymology:wikidata": "Q2568224", + "old_name": "South Bridge", + "wikidata": "Q14707762", + "wikipedia": "en:West Street pedestrian bridges" + } +}, +{ + "type": "way", + "id": 22927873, + "bounds": { + "minlat": 40.7051000, + "minlon": -74.0166823, + "maxlat": 40.7062258, + "maxlon": -74.0162702 + }, + "nodes": [ + 11385942332, + 588593358, + 4149748666, + 246909744, + 246899801 + ], + "geometry": [ + { "lat": 40.7062258, "lon": -74.0162702 }, + { "lat": 40.7061849, "lon": -74.0162769 }, + { "lat": 40.7060947, "lon": -74.0162979 }, + { "lat": 40.7060115, "lon": -74.0163234 }, + { "lat": 40.7051000, "lon": -74.0166823 } + ], + "tags": { + "destination": "FDR Drive north", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "30 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "note": "this is supposed to be a local truck route but signs say no trucks", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 22927906, + "bounds": { + "minlat": 40.7050763, + "minlon": -74.0165774, + "maxlat": 40.7062227, + "maxlon": -74.0161482 + }, + "nodes": [ + 246900041, + 4145432037, + 4145432035, + 11385942330 + ], + "geometry": [ + { "lat": 40.7050763, "lon": -74.0165774 }, + { "lat": 40.7059739, "lon": -74.0162385 }, + { "lat": 40.7060881, "lon": -74.0161964 }, + { "lat": 40.7062227, "lon": -74.0161482 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "30 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "tiger:county": "New York, NY", + "tiger:name_base": "West", + "tiger:name_base_1": "State Highway 9A", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 22927946, + "bounds": { + "minlat": 40.7057934, + "minlon": -74.0179342, + "maxlat": 40.7061729, + "maxlon": -74.0169952 + }, + "nodes": [ + 42443666, + 4876394049, + 1430380135, + 42433712 + ], + "geometry": [ + { "lat": 40.7057934, "lon": -74.0169952 }, + { "lat": 40.7058141, "lon": -74.0170587 }, + { "lat": 40.7061278, "lon": -74.0178161 }, + { "lat": 40.7061729, "lon": -74.0179342 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "maxspeed": "20 mph", + "name": "1st Place", + "name_1": "1 Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "1st", + "tiger:name_base_1": "1", + "tiger:name_type": "Pl", + "tiger:name_type_1": "Pl", + "tiger:zip_left": "10280", + "tiger:zip_right": "10280" + } +}, +{ + "type": "way", + "id": 22928102, + "bounds": { + "minlat": 40.7077712, + "minlon": -74.0162175, + "maxlat": 40.7079294, + "maxlon": -74.0158383 + }, + "nodes": [ + 11413750741, + 246866788, + 11416374415, + 11374474018, + 8821317924, + 9802614798 + ], + "geometry": [ + { "lat": 40.7077712, "lon": -74.0158383 }, + { "lat": 40.7077965, "lon": -74.0158968 }, + { "lat": 40.7078141, "lon": -74.0159399 }, + { "lat": 40.7078380, "lon": -74.0159980 }, + { "lat": 40.7078642, "lon": -74.0160613 }, + { "lat": 40.7079294, "lon": -74.0162175 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22937242, + "bounds": { + "minlat": 40.7619764, + "minlon": -74.0013362, + "maxlat": 40.7620659, + "maxlon": -74.0010599 + }, + "nodes": [ + 42437379, + 62915549 + ], + "geometry": [ + { "lat": 40.7620659, "lon": -74.0013362 }, + { "lat": 40.7619764, "lon": -74.0010599 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "surface": "concrete", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 22937580, + "bounds": { + "minlat": 40.7593320, + "minlon": -74.0037129, + "maxlat": 40.7607572, + "maxlon": -74.0025637 + }, + "nodes": [ + 247084443, + 1760567003, + 593840038, + 1760567017, + 1760567038, + 1760567006, + 1760566999, + 1760567035, + 247084428, + 5070138818, + 5070138816, + 1760567012, + 247084429, + 1760567036, + 1760567043, + 4629488491, + 1760567032, + 1760567047, + 1760566988 + ], + "geometry": [ + { "lat": 40.7607102, "lon": -74.0025637 }, + { "lat": 40.7607428, "lon": -74.0026464 }, + { "lat": 40.7607534, "lon": -74.0026841 }, + { "lat": 40.7607572, "lon": -74.0027236 }, + { "lat": 40.7607528, "lon": -74.0027575 }, + { "lat": 40.7607413, "lon": -74.0027839 }, + { "lat": 40.7607250, "lon": -74.0028045 }, + { "lat": 40.7607045, "lon": -74.0028239 }, + { "lat": 40.7606809, "lon": -74.0028433 }, + { "lat": 40.7605369, "lon": -74.0029448 }, + { "lat": 40.7600306, "lon": -74.0033155 }, + { "lat": 40.7595224, "lon": -74.0036874 }, + { "lat": 40.7594973, "lon": -74.0037019 }, + { "lat": 40.7594745, "lon": -74.0037104 }, + { "lat": 40.7594485, "lon": -74.0037129 }, + { "lat": 40.7594200, "lon": -74.0037074 }, + { "lat": 40.7593970, "lon": -74.0036863 }, + { "lat": 40.7593759, "lon": -74.0036476 }, + { "lat": 40.7593320, "lon": -74.0035421 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 22937785, + "bounds": { + "minlat": 40.7626470, + "minlon": -74.0006883, + "maxlat": 40.7627059, + "maxlon": -74.0005301 + }, + "nodes": [ + 42453548, + 12154605911, + 373936427 + ], + "geometry": [ + { "lat": 40.7626470, "lon": -74.0005301 }, + { "lat": 40.7626951, "lon": -74.0006524 }, + { "lat": 40.7627059, "lon": -74.0006883 } + ], + "tags": { + "bicycle": "designated", + "highway": "service", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 22941286, + "bounds": { + "minlat": 40.7626874, + "minlon": -74.0014192, + "maxlat": 40.7627274, + "maxlon": -74.0013229 + }, + "nodes": [ + 7029870571, + 4870298758, + 2710280724 + ], + "geometry": [ + { "lat": 40.7626874, "lon": -74.0013229 }, + { "lat": 40.7627019, "lon": -74.0013578 }, + { "lat": 40.7627274, "lon": -74.0014192 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22941312, + "bounds": { + "minlat": 40.7616673, + "minlon": -74.0042530, + "maxlat": 40.7624752, + "maxlon": -74.0024119 + }, + "nodes": [ + 13899426313, + 247118882 + ], + "geometry": [ + { "lat": 40.7616673, "lon": -74.0024119 }, + { "lat": 40.7624752, "lon": -74.0042530 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 22941409, + "bounds": { + "minlat": 40.7993288, + "minlon": -73.9750593, + "maxlat": 40.8153803, + "maxlon": -73.9641546 + }, + "nodes": [ + 254484327, + 2329799071, + 61261070, + 7908589050, + 61261071, + 61261072, + 7908589037, + 61261073, + 7908589023, + 61261074, + 7908589009, + 61261075, + 7908588995, + 7908589030, + 7908589016, + 61261076, + 7908589002, + 7908588988, + 61261077, + 7908575874, + 61261078, + 7908589091, + 7908589064, + 7908589051, + 61261081, + 7908589038, + 7908589024, + 61261083, + 7908589010, + 7908588996, + 61261084, + 7908575882, + 7908575869, + 7908589086, + 61261086, + 7908589073, + 7908589059, + 7908589046, + 7908589033, + 61261088, + 7908589019, + 7908589005, + 7908588991, + 7908575877, + 7908575863, + 2329798873, + 7908589080, + 61261089, + 7908589067, + 7908589054, + 7908588999, + 61261091, + 7908575872, + 61261092, + 7908589089, + 7908589076, + 61261093, + 7908589062, + 61261094, + 61261095, + 7908589049, + 7908589036, + 595314021 + ], + "geometry": [ + { "lat": 40.8153803, "lon": -73.9641546 }, + { "lat": 40.8151909, "lon": -73.9642877 }, + { "lat": 40.8149963, "lon": -73.9644146 }, + { "lat": 40.8146984, "lon": -73.9645914 }, + { "lat": 40.8144971, "lon": -73.9647049 }, + { "lat": 40.8143032, "lon": -73.9648167 }, + { "lat": 40.8141041, "lon": -73.9649341 }, + { "lat": 40.8139078, "lon": -73.9650547 }, + { "lat": 40.8137130, "lon": -73.9651808 }, + { "lat": 40.8135202, "lon": -73.9653127 }, + { "lat": 40.8133283, "lon": -73.9654526 }, + { "lat": 40.8131420, "lon": -73.9655936 }, + { "lat": 40.8129555, "lon": -73.9657418 }, + { "lat": 40.8127680, "lon": -73.9658863 }, + { "lat": 40.8125823, "lon": -73.9660297 }, + { "lat": 40.8123953, "lon": -73.9661750 }, + { "lat": 40.8122061, "lon": -73.9663207 }, + { "lat": 40.8120166, "lon": -73.9664595 }, + { "lat": 40.8118300, "lon": -73.9665919 }, + { "lat": 40.8116390, "lon": -73.9667240 }, + { "lat": 40.8114412, "lon": -73.9668566 }, + { "lat": 40.8112469, "lon": -73.9669824 }, + { "lat": 40.8091962, "lon": -73.9682814 }, + { "lat": 40.8090027, "lon": -73.9684064 }, + { "lat": 40.8088098, "lon": -73.9685341 }, + { "lat": 40.8086174, "lon": -73.9686615 }, + { "lat": 40.8084227, "lon": -73.9687923 }, + { "lat": 40.8082317, "lon": -73.9689259 }, + { "lat": 40.8080388, "lon": -73.9690611 }, + { "lat": 40.8078508, "lon": -73.9691973 }, + { "lat": 40.8076618, "lon": -73.9693344 }, + { "lat": 40.8074694, "lon": -73.9694735 }, + { "lat": 40.8072825, "lon": -73.9696141 }, + { "lat": 40.8070959, "lon": -73.9697535 }, + { "lat": 40.8069060, "lon": -73.9698971 }, + { "lat": 40.8067181, "lon": -73.9700414 }, + { "lat": 40.8065300, "lon": -73.9701883 }, + { "lat": 40.8051337, "lon": -73.9712841 }, + { "lat": 40.8049479, "lon": -73.9714288 }, + { "lat": 40.8047590, "lon": -73.9715727 }, + { "lat": 40.8045727, "lon": -73.9717135 }, + { "lat": 40.8043828, "lon": -73.9718570 }, + { "lat": 40.8041953, "lon": -73.9719997 }, + { "lat": 40.8040039, "lon": -73.9721422 }, + { "lat": 40.8038188, "lon": -73.9722794 }, + { "lat": 40.8036282, "lon": -73.9724195 }, + { "lat": 40.8034387, "lon": -73.9725557 }, + { "lat": 40.8032467, "lon": -73.9726926 }, + { "lat": 40.8030582, "lon": -73.9728282 }, + { "lat": 40.8028698, "lon": -73.9729663 }, + { "lat": 40.8019087, "lon": -73.9736342 }, + { "lat": 40.8015563, "lon": -73.9738667 }, + { "lat": 40.8013673, "lon": -73.9739925 }, + { "lat": 40.8011695, "lon": -73.9741186 }, + { "lat": 40.8009669, "lon": -73.9742465 }, + { "lat": 40.8007739, "lon": -73.9743628 }, + { "lat": 40.8005770, "lon": -73.9744794 }, + { "lat": 40.8003748, "lon": -73.9745916 }, + { "lat": 40.8001703, "lon": -73.9746986 }, + { "lat": 40.7999644, "lon": -73.9747967 }, + { "lat": 40.7997632, "lon": -73.9748870 }, + { "lat": 40.7995581, "lon": -73.9749741 }, + { "lat": 40.7993288, "lon": -73.9750593 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 22941530, + "bounds": { + "minlat": 40.7693567, + "minlon": -73.9953687, + "maxlat": 40.7696900, + "maxlon": -73.9950878 + }, + "nodes": [ + 247120350, + 9143011016, + 7787939271, + 2376384661, + 247122530 + ], + "geometry": [ + { "lat": 40.7696900, "lon": -73.9950878 }, + { "lat": 40.7696237, "lon": -73.9951629 }, + { "lat": 40.7695488, "lon": -73.9952210 }, + { "lat": 40.7695034, "lon": -73.9952663 }, + { "lat": 40.7693567, "lon": -73.9953687 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "lit": "yes", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 22941539, + "bounds": { + "minlat": 40.7620855, + "minlon": -74.0016347, + "maxlat": 40.7627492, + "maxlon": -74.0008061 + }, + "nodes": [ + 247086012, + 12152950981, + 247120586, + 12152950980, + 12152950979, + 8307463278, + 9143503695, + 7029870573, + 12152950978, + 7029870569, + 12152950977, + 12152950983, + 8307463474, + 12152950982, + 12152950984, + 247119750, + 9143503699, + 247119595 + ], + "geometry": [ + { "lat": 40.7627303, "lon": -74.0008061 }, + { "lat": 40.7627465, "lon": -74.0008948 }, + { "lat": 40.7627492, "lon": -74.0009312 }, + { "lat": 40.7627487, "lon": -74.0009624 }, + { "lat": 40.7627448, "lon": -74.0009877 }, + { "lat": 40.7627397, "lon": -74.0010081 }, + { "lat": 40.7627321, "lon": -74.0010263 }, + { "lat": 40.7627069, "lon": -74.0010629 }, + { "lat": 40.7625926, "lon": -74.0012285 }, + { "lat": 40.7625620, "lon": -74.0012678 }, + { "lat": 40.7625376, "lon": -74.0012971 }, + { "lat": 40.7625255, "lon": -74.0013099 }, + { "lat": 40.7625134, "lon": -74.0013227 }, + { "lat": 40.7624937, "lon": -74.0013420 }, + { "lat": 40.7624231, "lon": -74.0014013 }, + { "lat": 40.7623972, "lon": -74.0014231 }, + { "lat": 40.7622266, "lon": -74.0015279 }, + { "lat": 40.7620855, "lon": -74.0016347 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 22941661, + "bounds": { + "minlat": 40.7684761, + "minlon": -73.9961029, + "maxlat": 40.7687226, + "maxlon": -73.9960198 + }, + "nodes": [ + 247121481, + 2376384654, + 247121480, + 2376384652, + 247120361 + ], + "geometry": [ + { "lat": 40.7687226, "lon": -73.9961029 }, + { "lat": 40.7686926, "lon": -73.9960783 }, + { "lat": 40.7686616, "lon": -73.9960546 }, + { "lat": 40.7686076, "lon": -73.9960399 }, + { "lat": 40.7684761, "lon": -73.9960198 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 22941693, + "bounds": { + "minlat": 40.7669704, + "minlon": -74.0002666, + "maxlat": 40.7683062, + "maxlon": -73.9974178 + }, + "nodes": [ + 1636819192, + 1636819193, + 13102792796, + 13102792797, + 13102792800, + 13102867301, + 10864456163, + 13102867304, + 13102867305, + 247121842, + 247121844, + 13102867315, + 247121845, + 13102867309, + 13102867312, + 13102867313, + 10864456162, + 10864456161, + 13102792792 + ], + "geometry": [ + { "lat": 40.7670784, "lon": -73.9974359 }, + { "lat": 40.7671623, "lon": -73.9974803 }, + { "lat": 40.7672890, "lon": -73.9977847 }, + { "lat": 40.7673312, "lon": -73.9978844 }, + { "lat": 40.7675730, "lon": -73.9984533 }, + { "lat": 40.7676166, "lon": -73.9985554 }, + { "lat": 40.7676483, "lon": -73.9986314 }, + { "lat": 40.7682109, "lon": -73.9999668 }, + { "lat": 40.7682486, "lon": -74.0000592 }, + { "lat": 40.7683062, "lon": -74.0001935 }, + { "lat": 40.7682074, "lon": -74.0002666 }, + { "lat": 40.7681882, "lon": -74.0002237 }, + { "lat": 40.7681421, "lon": -74.0002017 }, + { "lat": 40.7681097, "lon": -74.0001297 }, + { "lat": 40.7678389, "lon": -73.9994740 }, + { "lat": 40.7677944, "lon": -73.9993729 }, + { "lat": 40.7675252, "lon": -73.9987133 }, + { "lat": 40.7670019, "lon": -73.9974915 }, + { "lat": 40.7669704, "lon": -73.9974178 } + ], + "tags": { + "foot": "private", + "highway": "service", + "layer": "2", + "level": "2", + "oneway": "yes", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 22941786, + "bounds": { + "minlat": 40.7651529, + "minlon": -73.9984258, + "maxlat": 40.7684761, + "maxlon": -73.9960198 + }, + "nodes": [ + 247120361, + 593861421, + 701606854, + 247120364 + ], + "geometry": [ + { "lat": 40.7684761, "lon": -73.9960198 }, + { "lat": 40.7656679, "lon": -73.9980433 }, + { "lat": 40.7653759, "lon": -73.9982592 }, + { "lat": 40.7651529, "lon": -73.9984258 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 22941788, + "bounds": { + "minlat": 40.7657602, + "minlon": -74.0011871, + "maxlat": 40.7670409, + "maxlon": -73.9983744 + }, + "nodes": [ + 1636819187, + 1636819191, + 13100748482, + 10864461091, + 13100748467, + 13100748468, + 10864461089, + 13100748471, + 13100748472, + 13100748475, + 13100748476, + 13100748479, + 13100748480, + 247122971, + 247122972, + 10864461088, + 13100748464, + 10864461090, + 13099867112, + 13100748483, + 13099867113, + 10864461087 + ], + "geometry": [ + { "lat": 40.7658184, "lon": -73.9983744 }, + { "lat": 40.7658970, "lon": -73.9983920 }, + { "lat": 40.7659562, "lon": -73.9985326 }, + { "lat": 40.7660522, "lon": -73.9987604 }, + { "lat": 40.7663056, "lon": -73.9993618 }, + { "lat": 40.7663626, "lon": -73.9994969 }, + { "lat": 40.7664203, "lon": -73.9996339 }, + { "lat": 40.7665637, "lon": -73.9999706 }, + { "lat": 40.7666242, "lon": -74.0001129 }, + { "lat": 40.7667787, "lon": -74.0004756 }, + { "lat": 40.7668384, "lon": -74.0006159 }, + { "lat": 40.7669477, "lon": -74.0008726 }, + { "lat": 40.7670043, "lon": -74.0010054 }, + { "lat": 40.7670409, "lon": -74.0010915 }, + { "lat": 40.7669132, "lon": -74.0011871 }, + { "lat": 40.7662977, "lon": -73.9997236 }, + { "lat": 40.7660277, "lon": -73.9990732 }, + { "lat": 40.7659339, "lon": -73.9988472 }, + { "lat": 40.7659011, "lon": -73.9988111 }, + { "lat": 40.7658258, "lon": -73.9986183 }, + { "lat": 40.7657602, "lon": -73.9984505 }, + { "lat": 40.7657677, "lon": -73.9984130 } + ], + "tags": { + "highway": "service", + "layer": "2", + "level": "2", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 22941923, + "bounds": { + "minlat": 40.7698720, + "minlon": -73.9943515, + "maxlat": 40.7706262, + "maxlon": -73.9942294 + }, + "nodes": [ + 247123611, + 12153915833, + 247128815, + 12153915832, + 12153915831, + 12153915830, + 12153915829, + 12153915826, + 247123612 + ], + "geometry": [ + { "lat": 40.7698720, "lon": -73.9943515 }, + { "lat": 40.7699062, "lon": -73.9943408 }, + { "lat": 40.7699551, "lon": -73.9943283 }, + { "lat": 40.7700552, "lon": -73.9943096 }, + { "lat": 40.7701607, "lon": -73.9942909 }, + { "lat": 40.7702696, "lon": -73.9942749 }, + { "lat": 40.7703936, "lon": -73.9942573 }, + { "lat": 40.7705529, "lon": -73.9942386 }, + { "lat": 40.7706262, "lon": -73.9942294 } + ], + "tags": { + "destination:street": "West 56th Street;West 57th Street", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 22941930, + "bounds": { + "minlat": 40.7715328, + "minlon": -73.9942139, + "maxlat": 40.7727862, + "maxlon": -73.9932091 + }, + "nodes": [ + 61271722, + 1701871954, + 42450352, + 12153915821, + 4872443910, + 247123651 + ], + "geometry": [ + { "lat": 40.7715328, "lon": -73.9942139 }, + { "lat": 40.7716298, "lon": -73.9940414 }, + { "lat": 40.7721482, "lon": -73.9936610 }, + { "lat": 40.7726730, "lon": -73.9932873 }, + { "lat": 40.7727221, "lon": -73.9932523 }, + { "lat": 40.7727862, "lon": -73.9932091 } + ], + "tags": { + "hgv": "local", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22941939, + "bounds": { + "minlat": 40.7719981, + "minlon": -73.9941842, + "maxlat": 40.7722013, + "maxlon": -73.9940383 + }, + "nodes": [ + 61272996, + 61272997 + ], + "geometry": [ + { "lat": 40.7722013, "lon": -73.9940383 }, + { "lat": 40.7719981, "lon": -73.9941842 } + ], + "tags": { + "alt_name": "12th Avenue", + "bicycle": "no", + "destination:lanes": "West 56 Street;West 54 Street|West 56 Street|Battery Park|Battery Park|Battery Park;Ship Terminal", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Side Highway", + "name:ru": "Вест-Сайд-Хайвей", + "not:name": "Henry Hudson Parkway", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "source:name": "https://en.wikipedia.org/wiki/West_Side_Highway", + "turn:lanes": "||||through;slight_right" + } +}, +{ + "type": "way", + "id": 22942162, + "bounds": { + "minlat": 40.7721219, + "minlon": -73.9938459, + "maxlat": 40.7730023, + "maxlon": -73.9931985 + }, + "nodes": [ + 61273008, + 42458373, + 1370721870 + ], + "geometry": [ + { "lat": 40.7721219, "lon": -73.9938459 }, + { "lat": 40.7728082, "lon": -73.9933406 }, + { "lat": 40.7730023, "lon": -73.9931985 } + ], + "tags": { + "alt_name": "12th Avenue", + "bridge": "yes", + "change": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "layer": "1", + "maxspeed": "50 mph", + "name": "West Side Highway", + "name:ru": "Вест-Сайд-Хайвей", + "not:name": "Henry Hudson Parkway", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "source:name": "https://en.wikipedia.org/wiki/West_Side_Highway" + } +}, +{ + "type": "way", + "id": 22946628, + "bounds": { + "minlat": 40.7245034, + "minlon": -74.0070314, + "maxlat": 40.7250102, + "maxlon": -74.0069652 + }, + "nodes": [ + 42423514, + 4168209030, + 4168209026, + 4168209027, + 559862621 + ], + "geometry": [ + { "lat": 40.7245034, "lon": -74.0070314 }, + { "lat": 40.7247636, "lon": -74.0069914 }, + { "lat": 40.7248687, "lon": -74.0069784 }, + { "lat": 40.7249440, "lon": -74.0069713 }, + { "lat": 40.7250102, "lon": -74.0069652 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxaxles": "3", + "maxspeed": "35 mph", + "name": "Holland Tunnel", + "name:etymology:wikidata": "Q5133008", + "name:ko": "홀랜드 터널", + "oneway": "yes", + "operator": "Port Authority of New York and New Jersey", + "ref": "I 78", + "sidewalk": "no", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "I 78" + } +}, +{ + "type": "way", + "id": 22946821, + "bounds": { + "minlat": 40.7717060, + "minlon": -73.9790541, + "maxlat": 40.7717404, + "maxlon": -73.9788832 + }, + "nodes": [ + 7630577026, + 9908336698, + 595371388, + 1420632047 + ], + "geometry": [ + { "lat": 40.7717404, "lon": -73.9790541 }, + { "lat": 40.7717267, "lon": -73.9790039 }, + { "lat": 40.7717151, "lon": -73.9789493 }, + { "lat": 40.7717060, "lon": -73.9788832 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22946823, + "bounds": { + "minlat": 40.7726720, + "minlon": -73.9782890, + "maxlat": 40.7730391, + "maxlon": -73.9772677 + }, + "nodes": [ + 7802856341, + 3809536801, + 9178914793, + 9178914794, + 9178914795, + 7837165570, + 9908399120, + 247222929 + ], + "geometry": [ + { "lat": 40.7730391, "lon": -73.9782890 }, + { "lat": 40.7729794, "lon": -73.9781538 }, + { "lat": 40.7729098, "lon": -73.9779880 }, + { "lat": 40.7728447, "lon": -73.9778109 }, + { "lat": 40.7727926, "lon": -73.9776653 }, + { "lat": 40.7727389, "lon": -73.9775004 }, + { "lat": 40.7727055, "lon": -73.9773900 }, + { "lat": 40.7726720, "lon": -73.9772677 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "Warner LeRoy Place", + "bicycle": "designated", + "foot": "permissive", + "hgv": "no", + "highway": "service", + "motor_vehicle": "customers", + "name": "West 67th Street", + "name:ru": "Западная 67-я стрит", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22946967, + "bounds": { + "minlat": 40.7668760, + "minlon": -73.9790760, + "maxlat": 40.7676861, + "maxlon": -73.9785915 + }, + "nodes": [ + 42423677, + 9906929054, + 9906929056, + 9906929057, + 9906929053, + 9906929052, + 247226692, + 9906929051, + 247226693, + 9906929050, + 1283225033, + 4347550047, + 42423674 + ], + "geometry": [ + { "lat": 40.7676861, "lon": -73.9785915 }, + { "lat": 40.7676524, "lon": -73.9786157 }, + { "lat": 40.7676346, "lon": -73.9786224 }, + { "lat": 40.7676103, "lon": -73.9786312 }, + { "lat": 40.7675917, "lon": -73.9786346 }, + { "lat": 40.7675581, "lon": -73.9786398 }, + { "lat": 40.7675215, "lon": -73.9786435 }, + { "lat": 40.7674647, "lon": -73.9786625 }, + { "lat": 40.7674070, "lon": -73.9786900 }, + { "lat": 40.7673618, "lon": -73.9787166 }, + { "lat": 40.7673158, "lon": -73.9787508 }, + { "lat": 40.7669978, "lon": -73.9789983 }, + { "lat": 40.7668760, "lon": -73.9790760 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "cycleway": "shared_lane", + "destination:forward": "7th Avenue South", + "hgv": "no", + "highway": "service", + "lanes": "2", + "lcn": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 22961860, + "bounds": { + "minlat": 40.7157686, + "minlon": -74.0092416, + "maxlat": 40.7161102, + "maxlon": -74.0092086 + }, + "nodes": [ + 11308557852, + 11308541304, + 11308590198, + 11308557856, + 11308590192, + 11308557853 + ], + "geometry": [ + { "lat": 40.7157686, "lon": -74.0092416 }, + { "lat": 40.7157986, "lon": -74.0092387 }, + { "lat": 40.7158460, "lon": -74.0092341 }, + { "lat": 40.7158928, "lon": -74.0092296 }, + { "lat": 40.7159577, "lon": -74.0092233 }, + { "lat": 40.7161102, "lon": -74.0092086 } + ], + "tags": { + "hgv": "destination", + "highway": "pedestrian", + "lit": "yes", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "old_name": "Hudson Street", + "surface": "paving_stones", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 23042542, + "bounds": { + "minlat": 40.7014478, + "minlon": -73.9867445, + "maxlat": 40.7015288, + "maxlon": -73.9847598 + }, + "nodes": [ + 42503949, + 11708944387, + 7909208032, + 7154021064, + 11502444533, + 11502444539, + 9795347330, + 42497721 + ], + "geometry": [ + { "lat": 40.7014478, "lon": -73.9847598 }, + { "lat": 40.7014575, "lon": -73.9848175 }, + { "lat": 40.7014600, "lon": -73.9848518 }, + { "lat": 40.7014859, "lon": -73.9855278 }, + { "lat": 40.7015034, "lon": -73.9860180 }, + { "lat": 40.7015109, "lon": -73.9862393 }, + { "lat": 40.7015278, "lon": -73.9866585 }, + { "lat": 40.7015288, "lon": -73.9867445 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "York Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "York", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 23048466, + "bounds": { + "minlat": 40.7489671, + "minlon": -73.9705128, + "maxlat": 40.7492026, + "maxlon": -73.9703341 + }, + "nodes": [ + 248707601, + 9528936439, + 248707602 + ], + "geometry": [ + { "lat": 40.7489671, "lon": -73.9705128 }, + { "lat": 40.7490645, "lon": -73.9704389 }, + { "lat": 40.7492026, "lon": -73.9703341 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "lit": "yes", + "name": "Tudor City Place", + "name:etymology:wikidata": "Q549206", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 23048468, + "bounds": { + "minlat": 40.7492026, + "minlon": -73.9703341, + "maxlat": 40.7497536, + "maxlon": -73.9699431 + }, + "nodes": [ + 248707602, + 3817631969, + 9528936440, + 9509176054, + 42445804 + ], + "geometry": [ + { "lat": 40.7492026, "lon": -73.9703341 }, + { "lat": 40.7492353, "lon": -73.9703099 }, + { "lat": 40.7496655, "lon": -73.9700070 }, + { "lat": 40.7496964, "lon": -73.9699852 }, + { "lat": 40.7497536, "lon": -73.9699431 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "Tudor City Place", + "name:etymology:wikidata": "Q549206", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 23048548, + "bounds": { + "minlat": 40.7487219, + "minlon": -73.9699638, + "maxlat": 40.7520303, + "maxlon": -73.9675604 + }, + "nodes": [ + 248708366, + 595105571 + ], + "geometry": [ + { "lat": 40.7487219, "lon": -73.9699638 }, + { "lat": 40.7520303, "lon": -73.9675604 } + ], + "tags": { + "bicycle": "use_sidepath", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "layer": "-1", + "maxheight": "13'2\"", + "maxspeed": "25 mph", + "name": "1st Avenue Tunnel", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "tunnel": "yes", + "width": "11'" + } +}, +{ + "type": "way", + "id": 23048670, + "bounds": { + "minlat": 40.7769914, + "minlon": -73.9642517, + "maxlat": 40.7772871, + "maxlon": -73.9637197 + }, + "nodes": [ + 42440397, + 7103600810, + 9170771809, + 9906879200, + 7103600823, + 248709712, + 1834852936 + ], + "geometry": [ + { "lat": 40.7769914, "lon": -73.9637197 }, + { "lat": 40.7770480, "lon": -73.9638499 }, + { "lat": 40.7770811, "lon": -73.9639158 }, + { "lat": 40.7771223, "lon": -73.9639921 }, + { "lat": 40.7771702, "lon": -73.9640728 }, + { "lat": 40.7772249, "lon": -73.9641594 }, + { "lat": 40.7772871, "lon": -73.9642517 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "destination:forward": "West Side", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "3", + "lanes:forward": "1", + "lit": "yes", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|through|right", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 23168540, + "bounds": { + "minlat": 40.7025594, + "minlon": -73.9907042, + "maxlat": 40.7032468, + "maxlon": -73.9906658 + }, + "nodes": [ + 42499999, + 10726048594, + 42501454, + 8262935498, + 2687331105 + ], + "geometry": [ + { "lat": 40.7025594, "lon": -73.9907042 }, + { "lat": 40.7026237, "lon": -73.9907005 }, + { "lat": 40.7028349, "lon": -73.9906888 }, + { "lat": 40.7031974, "lon": -73.9906683 }, + { "lat": 40.7032468, "lon": -73.9906658 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Main Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:zip_left": "11201" + } +}, +{ + "type": "way", + "id": 23168547, + "bounds": { + "minlat": 40.7038643, + "minlon": -73.9906133, + "maxlat": 40.7038980, + "maxlon": -73.9896480 + }, + "nodes": [ + 1258945452, + 11671229113, + 11671229112, + 10170379770, + 9800456567 + ], + "geometry": [ + { "lat": 40.7038777, "lon": -73.9906133 }, + { "lat": 40.7038897, "lon": -73.9905939 }, + { "lat": 40.7038980, "lon": -73.9905607 }, + { "lat": 40.7038977, "lon": -73.9905202 }, + { "lat": 40.7038643, "lon": -73.9896480 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:surface": "paving_stones", + "highway": "residential", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 23168559, + "bounds": { + "minlat": 40.7024529, + "minlon": -73.9876313, + "maxlat": 40.7037882, + "maxlon": -73.9875523 + }, + "nodes": [ + 42469184, + 8262935918, + 11945611241, + 10170379767, + 42469188, + 10170379766, + 380059967, + 7707712192, + 10726079562, + 10726079559, + 42469193 + ], + "geometry": [ + { "lat": 40.7037882, "lon": -73.9875523 }, + { "lat": 40.7037537, "lon": -73.9875552 }, + { "lat": 40.7031986, "lon": -73.9875872 }, + { "lat": 40.7031739, "lon": -73.9875886 }, + { "lat": 40.7031301, "lon": -73.9875912 }, + { "lat": 40.7030874, "lon": -73.9875937 }, + { "lat": 40.7026162, "lon": -73.9876215 }, + { "lat": 40.7025356, "lon": -73.9876263 }, + { "lat": 40.7025269, "lon": -73.9876268 }, + { "lat": 40.7025172, "lon": -73.9876274 }, + { "lat": 40.7024529, "lon": -73.9876313 } + ], + "tags": { + "cycleway": "shared_lane", + "cycleway:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Pearl Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 23168561, + "bounds": { + "minlat": 40.7001014, + "minlon": -73.9869304, + "maxlat": 40.7001896, + "maxlon": -73.9868886 + }, + "nodes": [ + 370870741, + 11709378743, + 42497727 + ], + "geometry": [ + { "lat": 40.7001014, "lon": -73.9868886 }, + { "lat": 40.7001466, "lon": -73.9869083 }, + { "lat": 40.7001896, "lon": -73.9869304 } + ], + "tags": { + "hgv": "local", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Jay", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 23168562, + "bounds": { + "minlat": 40.7009595, + "minlon": -73.9867676, + "maxlat": 40.7011734, + "maxlon": -73.9867540 + }, + "nodes": [ + 11708944190, + 12030168878, + 4384069443 + ], + "geometry": [ + { "lat": 40.7009595, "lon": -73.9867676 }, + { "lat": 40.7010595, "lon": -73.9867612 }, + { "lat": 40.7011734, "lon": -73.9867540 } + ], + "tags": { + "bicycle": "yes", + "covered": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Jay", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 23168567, + "bounds": { + "minlat": 40.7014691, + "minlon": -73.9886360, + "maxlat": 40.7024813, + "maxlon": -73.9885559 + }, + "nodes": [ + 11679066073, + 11674209662, + 10726079530, + 42492404, + 10726079529, + 13429529831, + 2358967545, + 7259656137, + 42492401 + ], + "geometry": [ + { "lat": 40.7014691, "lon": -73.9886360 }, + { "lat": 40.7014925, "lon": -73.9886342 }, + { "lat": 40.7015341, "lon": -73.9886312 }, + { "lat": 40.7015974, "lon": -73.9886274 }, + { "lat": 40.7016611, "lon": -73.9886221 }, + { "lat": 40.7018823, "lon": -73.9886034 }, + { "lat": 40.7022010, "lon": -73.9885835 }, + { "lat": 40.7024389, "lon": -73.9885650 }, + { "lat": 40.7024813, "lon": -73.9885559 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Adams Street", + "name:etymology:wikidata": "Q11806", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Adams", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 23168577, + "bounds": { + "minlat": 40.6995233, + "minlon": -73.9898060, + "maxlat": 40.7003446, + "maxlon": -73.9897562 + }, + "nodes": [ + 42525712, + 9818783387, + 8164734039, + 9368823959, + 11678137818 + ], + "geometry": [ + { "lat": 40.6995233, "lon": -73.9898060 }, + { "lat": 40.6995821, "lon": -73.9898021 }, + { "lat": 40.6996240, "lon": -73.9897995 }, + { "lat": 40.7000557, "lon": -73.9897731 }, + { "lat": 40.7003446, "lon": -73.9897562 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Cadman Plaza East", + "name:etymology:wikidata": "Q5600833", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "St;Plz;St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 23168580, + "bounds": { + "minlat": 40.7013624, + "minlon": -73.9847598, + "maxlat": 40.7014478, + "maxlon": -73.9828426 + }, + "nodes": [ + 42503956, + 10716556295, + 7909208031, + 11708944386, + 42503949 + ], + "geometry": [ + { "lat": 40.7013624, "lon": -73.9828426 }, + { "lat": 40.7013667, "lon": -73.9829747 }, + { "lat": 40.7014359, "lon": -73.9846765 }, + { "lat": 40.7014395, "lon": -73.9847139 }, + { "lat": 40.7014478, "lon": -73.9847598 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "York Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "York", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 23168582, + "bounds": { + "minlat": 40.7025594, + "minlon": -73.9916125, + "maxlat": 40.7025773, + "maxlon": -73.9907042 + }, + "nodes": [ + 42499996, + 6562823282, + 11945611235, + 11945611236, + 42499999 + ], + "geometry": [ + { "lat": 40.7025773, "lon": -73.9916125 }, + { "lat": 40.7025753, "lon": -73.9915423 }, + { "lat": 40.7025610, "lon": -73.9907909 }, + { "lat": 40.7025606, "lon": -73.9907708 }, + { "lat": 40.7025594, "lon": -73.9907042 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Front", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 23168586, + "bounds": { + "minlat": 40.7029090, + "minlon": -73.9827376, + "maxlat": 40.7029715, + "maxlon": -73.9811240 + }, + "nodes": [ + 42469364, + 10004163952, + 8605124810, + 8164734036, + 10725916755, + 42469362 + ], + "geometry": [ + { "lat": 40.7029090, "lon": -73.9811240 }, + { "lat": 40.7029115, "lon": -73.9811906 }, + { "lat": 40.7029314, "lon": -73.9817024 }, + { "lat": 40.7029661, "lon": -73.9826017 }, + { "lat": 40.7029683, "lon": -73.9826564 }, + { "lat": 40.7029715, "lon": -73.9827376 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "Water Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 24263967, + "bounds": { + "minlat": 40.7283741, + "minlon": -74.0045750, + "maxlat": 40.7285450, + "maxlon": -74.0028488 + }, + "nodes": [ + 4321748238, + 5796876484, + 42430468, + 3891963908, + 10172950538 + ], + "geometry": [ + { "lat": 40.7283741, "lon": -74.0028488 }, + { "lat": 40.7283859, "lon": -74.0029681 }, + { "lat": 40.7283967, "lon": -74.0030772 }, + { "lat": 40.7284050, "lon": -74.0031612 }, + { "lat": 40.7285450, "lon": -74.0045750 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 24264070, + "bounds": { + "minlat": 40.7314217, + "minlon": -73.9986160, + "maxlat": 40.7322180, + "maxlon": -73.9969810 + }, + "nodes": [ + 3584752508, + 3584752515, + 8231298077, + 3584752522, + 42433281 + ], + "geometry": [ + { "lat": 40.7314217, "lon": -73.9969810 }, + { "lat": 40.7314642, "lon": -73.9970706 }, + { "lat": 40.7317294, "lon": -73.9976165 }, + { "lat": 40.7321855, "lon": -73.9985511 }, + { "lat": 40.7322180, "lon": -73.9986160 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Washington Square North", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "parking:left": "no", + "parking:left:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4993391", + "wikipedia": "en:Waverly Place" + } +}, +{ + "type": "way", + "id": 24264114, + "bounds": { + "minlat": 40.7340784, + "minlon": -73.9996733, + "maxlat": 40.7341463, + "maxlon": -73.9991816 + }, + "nodes": [ + 42421889, + 5690441977, + 12179564371, + 5690441976, + 42432191 + ], + "geometry": [ + { "lat": 40.7341463, "lon": -73.9991816 }, + { "lat": 40.7341229, "lon": -73.9993535 }, + { "lat": 40.7341030, "lon": -73.9994849 }, + { "lat": 40.7340961, "lon": -73.9995531 }, + { "lat": 40.7340784, "lon": -73.9996733 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Christopher Street", + "name:ru": "Кристофер-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1086990", + "wikipedia": "en:Christopher Street" + } +}, +{ + "type": "way", + "id": 25026344, + "bounds": { + "minlat": 40.7130447, + "minlon": -74.0088231, + "maxlat": 40.7137935, + "maxlon": -74.0072254 + }, + "nodes": [ + 2821304137, + 8262309227, + 8279851482, + 42429562 + ], + "geometry": [ + { "lat": 40.7130447, "lon": -74.0072254 }, + { "lat": 40.7131034, "lon": -74.0073505 }, + { "lat": 40.7137468, "lon": -74.0087211 }, + { "lat": 40.7137935, "lon": -74.0088231 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25162573, + "bounds": { + "minlat": 40.7277504, + "minlon": -73.9773526, + "maxlat": 40.7282532, + "maxlon": -73.9761698 + }, + "nodes": [ + 42436957, + 8309479559, + 8309479470, + 42436949 + ], + "geometry": [ + { "lat": 40.7277504, "lon": -73.9761698 }, + { "lat": 40.7277981, "lon": -73.9762823 }, + { "lat": 40.7281972, "lon": -73.9772209 }, + { "lat": 40.7282532, "lon": -73.9773526 } + ], + "tags": { + "bicycle": "designated", + "highway": "pedestrian", + "lit": "no", + "name": "East 13th Street", + "name:ru": "Восточная 13-я стрит", + "oneway:bicycle": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25162679, + "bounds": { + "minlat": 40.7306534, + "minlon": -73.9872666, + "maxlat": 40.7324426, + "maxlon": -73.9830644 + }, + "nodes": [ + 42436943, + 3834459527, + 8309479581, + 5481912002, + 42436942, + 8309479671, + 13205862062, + 8309479676, + 12183286714 + ], + "geometry": [ + { "lat": 40.7306534, "lon": -73.9830644 }, + { "lat": 40.7307023, "lon": -73.9831802 }, + { "lat": 40.7307150, "lon": -73.9832102 }, + { "lat": 40.7313466, "lon": -73.9847062 }, + { "lat": 40.7315880, "lon": -73.9852780 }, + { "lat": 40.7316053, "lon": -73.9853191 }, + { "lat": 40.7316674, "lon": -73.9854374 }, + { "lat": 40.7317251, "lon": -73.9855660 }, + { "lat": 40.7324426, "lon": -73.9872666 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 13th Street", + "name:ru": "Восточная 13-я стрит", + "name_1": "East 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25163419, + "bounds": { + "minlat": 40.7203948, + "minlon": -73.9810829, + "maxlat": 40.7210233, + "maxlon": -73.9800059 + }, + "nodes": [ + 592509222, + 9181587089, + 3783073165, + 3783073245, + 9181587088, + 3783071256, + 9181587087, + 3783073197, + 8309738057, + 4219836772, + 42453610 + ], + "geometry": [ + { "lat": 40.7203948, "lon": -73.9800520 }, + { "lat": 40.7204359, "lon": -73.9800453 }, + { "lat": 40.7204684, "lon": -73.9800385 }, + { "lat": 40.7204964, "lon": -73.9800246 }, + { "lat": 40.7205276, "lon": -73.9800091 }, + { "lat": 40.7205489, "lon": -73.9800059 }, + { "lat": 40.7205708, "lon": -73.9800167 }, + { "lat": 40.7205859, "lon": -73.9800318 }, + { "lat": 40.7206959, "lon": -73.9802917 }, + { "lat": 40.7209940, "lon": -73.9810121 }, + { "lat": 40.7210233, "lon": -73.9810829 } + ], + "tags": { + "alt_name:ko": "이스트 2번가", + "highway": "residential", + "maxspeed": "20 mph", + "name": "East 2nd Street", + "name:ko": "이스트 2nd 스트리트", + "name:ru": "Восточная 2-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25166891, + "bounds": { + "minlat": 40.7258818, + "minlon": -73.9822380, + "maxlat": 40.7278454, + "maxlon": -73.9775411 + }, + "nodes": [ + 42430914, + 4216045834, + 12179582405, + 12179582404, + 12179582408, + 4161568744, + 42430924, + 4161568740, + 12179582409, + 12179582412, + 8309479411, + 42430938 + ], + "geometry": [ + { "lat": 40.7278454, "lon": -73.9822380 }, + { "lat": 40.7277955, "lon": -73.9821213 }, + { "lat": 40.7277836, "lon": -73.9820932 }, + { "lat": 40.7277717, "lon": -73.9820652 }, + { "lat": 40.7269208, "lon": -73.9800455 }, + { "lat": 40.7268981, "lon": -73.9799912 }, + { "lat": 40.7268652, "lon": -73.9799131 }, + { "lat": 40.7268306, "lon": -73.9798303 }, + { "lat": 40.7268157, "lon": -73.9797949 }, + { "lat": 40.7259385, "lon": -73.9777147 }, + { "lat": 40.7259174, "lon": -73.9776515 }, + { "lat": 40.7258818, "lon": -73.9775411 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 10th Street", + "name:ru": "Восточная 10-я стрит", + "name_1": "East 10 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25166922, + "bounds": { + "minlat": 40.7267944, + "minlon": -73.9756824, + "maxlat": 40.7284433, + "maxlon": -73.9720755 + }, + "nodes": [ + 42440754, + 4161568816, + 1991212138, + 12566239652, + 7958994531, + 12566237923, + 12566237922, + 274336609, + 5145323799, + 5145323798, + 5145323793 + ], + "geometry": [ + { "lat": 40.7284433, "lon": -73.9756824 }, + { "lat": 40.7284023, "lon": -73.9755861 }, + { "lat": 40.7283896, "lon": -73.9755561 }, + { "lat": 40.7282435, "lon": -73.9752124 }, + { "lat": 40.7280763, "lon": -73.9748189 }, + { "lat": 40.7272368, "lon": -73.9728088 }, + { "lat": 40.7270707, "lon": -73.9724111 }, + { "lat": 40.7269509, "lon": -73.9721243 }, + { "lat": 40.7269201, "lon": -73.9720902 }, + { "lat": 40.7268775, "lon": -73.9720755 }, + { "lat": 40.7267944, "lon": -73.9720829 } + ], + "tags": { + "access": "no", + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 25167065, + "bounds": { + "minlat": 40.7265145, + "minlon": -73.9766448, + "maxlat": 40.7270883, + "maxlon": -73.9753371 + }, + "nodes": [ + 13205966915, + 8309479422, + 4301088471, + 11998841136, + 8309479420, + 11998841137 + ], + "geometry": [ + { "lat": 40.7270883, "lon": -73.9766448 }, + { "lat": 40.7270163, "lon": -73.9765318 }, + { "lat": 40.7270070, "lon": -73.9765097 }, + { "lat": 40.7265492, "lon": -73.9754198 }, + { "lat": 40.7265428, "lon": -73.9754044 }, + { "lat": 40.7265145, "lon": -73.9753371 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 12th Street", + "name:ru": "Восточная 12-я стрит" + } +}, +{ + "type": "way", + "id": 25167069, + "bounds": { + "minlat": 40.7261090, + "minlon": -73.9753040, + "maxlat": 40.7265403, + "maxlon": -73.9742690 + }, + "nodes": [ + 42446584, + 8309479441, + 5481976931, + 13191834226, + 8309479440, + 42421837 + ], + "geometry": [ + { "lat": 40.7261090, "lon": -73.9742690 }, + { "lat": 40.7261515, "lon": -73.9743711 }, + { "lat": 40.7264234, "lon": -73.9750235 }, + { "lat": 40.7264999, "lon": -73.9752071 }, + { "lat": 40.7265217, "lon": -73.9752594 }, + { "lat": 40.7265403, "lon": -73.9753040 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 12th Street", + "name:ru": "Восточная 12-я стрит", + "name_1": "East 12 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25167167, + "bounds": { + "minlat": 40.7267520, + "minlon": -73.9737990, + "maxlat": 40.7268409, + "maxlon": -73.9737377 + }, + "nodes": [ + 3624790934, + 13520730746, + 1991212132 + ], + "geometry": [ + { "lat": 40.7267520, "lon": -73.9737990 }, + { "lat": 40.7268186, "lon": -73.9737531 }, + { "lat": 40.7268409, "lon": -73.9737377 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25167210, + "bounds": { + "minlat": 40.7224980, + "minlon": -73.9768930, + "maxlat": 40.7242830, + "maxlon": -73.9755980 + }, + "nodes": [ + 42444835, + 8309479365, + 4301308519, + 42434237, + 4301307684, + 42455412, + 3659184788, + 4301308555, + 42449038 + ], + "geometry": [ + { "lat": 40.7224980, "lon": -73.9768930 }, + { "lat": 40.7225642, "lon": -73.9768454 }, + { "lat": 40.7225704, "lon": -73.9768410 }, + { "lat": 40.7230780, "lon": -73.9764770 }, + { "lat": 40.7236577, "lon": -73.9760529 }, + { "lat": 40.7236890, "lon": -73.9760300 }, + { "lat": 40.7237350, "lon": -73.9759965 }, + { "lat": 40.7242200, "lon": -73.9756438 }, + { "lat": 40.7242830, "lon": -73.9755980 } + ], + "tags": { + "alt_name:ko": "애비뉴 디", + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue D", + "name:ko": "애비뉴 D", + "name:ru": "Авеню D", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q2873601", + "wikipedia": "en:Avenue D (Manhattan)" + } +}, +{ + "type": "way", + "id": 25167444, + "bounds": { + "minlat": 40.7244500, + "minlon": -73.9745044, + "maxlat": 40.7246858, + "maxlon": -73.9741230 + }, + "nodes": [ + 274342021, + 1602588178, + 274342217, + 4301088442, + 1602588203, + 1602588211, + 274342215, + 1602588225, + 1602588229, + 1602588230, + 4301088389, + 274342214, + 1602588224, + 1602588212, + 1602588209, + 274342024 + ], + "geometry": [ + { "lat": 40.7244500, "lon": -73.9741568 }, + { "lat": 40.7244993, "lon": -73.9741281 }, + { "lat": 40.7245450, "lon": -73.9741230 }, + { "lat": 40.7245709, "lon": -73.9741314 }, + { "lat": 40.7245958, "lon": -73.9741395 }, + { "lat": 40.7246263, "lon": -73.9741632 }, + { "lat": 40.7246553, "lon": -73.9742016 }, + { "lat": 40.7246728, "lon": -73.9742408 }, + { "lat": 40.7246842, "lon": -73.9742923 }, + { "lat": 40.7246858, "lon": -73.9743300 }, + { "lat": 40.7246812, "lon": -73.9743641 }, + { "lat": 40.7246786, "lon": -73.9743834 }, + { "lat": 40.7246684, "lon": -73.9744153 }, + { "lat": 40.7246433, "lon": -73.9744608 }, + { "lat": 40.7246237, "lon": -73.9744832 }, + { "lat": 40.7245958, "lon": -73.9745044 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "junction": "roundabout", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 10th Street", + "name:ru": "Восточная 10-я стрит", + "name_1": "East 10 Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25167462, + "bounds": { + "minlat": 40.7241879, + "minlon": -73.9741568, + "maxlat": 40.7244500, + "maxlon": -73.9735364 + }, + "nodes": [ + 274342021, + 42430945 + ], + "geometry": [ + { "lat": 40.7244500, "lon": -73.9741568 }, + { "lat": 40.7241879, "lon": -73.9735364 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 10th Street", + "name:ru": "Восточная 10-я стрит", + "name_1": "East 10 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25196678, + "bounds": { + "minlat": 40.7195316, + "minlon": -73.9838193, + "maxlat": 40.7199847, + "maxlon": -73.9836452 + }, + "nodes": [ + 42446245, + 8310245520, + 8310245663, + 3670609093 + ], + "geometry": [ + { "lat": 40.7195316, "lon": -73.9838123 }, + { "lat": 40.7196323, "lon": -73.9838193 }, + { "lat": 40.7199302, "lon": -73.9836726 }, + { "lat": 40.7199847, "lon": -73.9836452 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Attorney Street", + "name:ko": "어터니 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25198317, + "bounds": { + "minlat": 40.7185836, + "minlon": -73.9926039, + "maxlat": 40.7188452, + "maxlon": -73.9917491 + }, + "nodes": [ + 42432111, + 8231877081, + 8231877078, + 42429644 + ], + "geometry": [ + { "lat": 40.7188452, "lon": -73.9926039 }, + { "lat": 40.7188238, "lon": -73.9925326 }, + { "lat": 40.7186030, "lon": -73.9918123 }, + { "lat": 40.7185836, "lon": -73.9917491 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 16:00-23:00)", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 25198451, + "bounds": { + "minlat": 40.7210837, + "minlon": -73.9850116, + "maxlat": 40.7215727, + "maxlon": -73.9847590 + }, + "nodes": [ + 9909731089, + 9909731088 + ], + "geometry": [ + { "lat": 40.7215727, "lon": -73.9847590 }, + { "lat": 40.7210837, "lon": -73.9850116 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Suffolk Street", + "name:etymology:wikidata": "Q23111", + "name:ko": "서퍽 스트리트", + "oneway": "yes", + "parking:lane:left": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25198488, + "bounds": { + "minlat": 40.7166900, + "minlon": -73.9833893, + "maxlat": 40.7171684, + "maxlon": -73.9831408 + }, + "nodes": [ + 42427340, + 5173488751, + 8310245633, + 42427345 + ], + "geometry": [ + { "lat": 40.7166900, "lon": -73.9833893 }, + { "lat": 40.7170970, "lon": -73.9831778 }, + { "lat": 40.7171256, "lon": -73.9831695 }, + { "lat": 40.7171684, "lon": -73.9831408 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Pitt Street", + "name:etymology:wikidata": "Q208663", + "name:ko": "피트 스트리트", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25199402, + "bounds": { + "minlat": 40.7317060, + "minlon": -74.0025813, + "maxlat": 40.7333766, + "maxlon": -74.0009540 + }, + "nodes": [ + 42433822, + 4320028845, + 42451987, + 4320032286, + 8429015936, + 42446902, + 4320105472, + 10172977548, + 42429700, + 4375703341, + 42430231 + ], + "geometry": [ + { "lat": 40.7333766, "lon": -74.0025813 }, + { "lat": 40.7333236, "lon": -74.0025413 }, + { "lat": 40.7328410, "lon": -74.0021240 }, + { "lat": 40.7328070, "lon": -74.0020930 }, + { "lat": 40.7323648, "lon": -74.0017041 }, + { "lat": 40.7323180, "lon": -74.0016630 }, + { "lat": 40.7318515, "lon": -74.0012321 }, + { "lat": 40.7318292, "lon": -74.0011984 }, + { "lat": 40.7317982, "lon": -74.0011515 }, + { "lat": 40.7317628, "lon": -74.0010787 }, + { "lat": 40.7317060, "lon": -74.0009540 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 4th Street", + "name:ru": "Западная 4-я стрит", + "name_1": "West 4 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 25199870, + "bounds": { + "minlat": 40.7236874, + "minlon": -74.0036454, + "maxlat": 40.7272378, + "maxlon": -74.0006749 + }, + "nodes": [ + 1919595918, + 5829847188, + 8231934402, + 42436784, + 8231934403, + 8231934381, + 42436779, + 8231934382, + 12187433946, + 8231938417, + 42432135 + ], + "geometry": [ + { "lat": 40.7272378, "lon": -74.0006749 }, + { "lat": 40.7271720, "lon": -74.0007287 }, + { "lat": 40.7261694, "lon": -74.0015542 }, + { "lat": 40.7261202, "lon": -74.0015958 }, + { "lat": 40.7260796, "lon": -74.0016299 }, + { "lat": 40.7249492, "lon": -74.0025615 }, + { "lat": 40.7248800, "lon": -74.0026190 }, + { "lat": 40.7248290, "lon": -74.0026624 }, + { "lat": 40.7237769, "lon": -74.0035650 }, + { "lat": 40.7237370, "lon": -74.0036008 }, + { "lat": 40.7236874, "lon": -74.0036454 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Thompson Street", + "name:etymology:wikidata": "Q3568998", + "name:ko": "톰슨 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12070954", + "wikipedia": "en:Thompson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 25199883, + "bounds": { + "minlat": 40.7258712, + "minlon": -73.9975736, + "maxlat": 40.7309483, + "maxlon": -73.9932574 + }, + "nodes": [ + 42449589, + 8309479171, + 12179562745, + 8309479176, + 42433292, + 8309479177, + 8309479133, + 42449582, + 8309479135, + 8309478903, + 4117109189, + 42449580, + 4745685357, + 8309478987, + 42440545, + 8309478988, + 8309478996, + 6213204049, + 1692433920, + 8309478997, + 5829827213, + 42448552 + ], + "geometry": [ + { "lat": 40.7309483, "lon": -73.9932574 }, + { "lat": 40.7308897, "lon": -73.9933031 }, + { "lat": 40.7300780, "lon": -73.9939878 }, + { "lat": 40.7300364, "lon": -73.9940184 }, + { "lat": 40.7299780, "lon": -73.9940640 }, + { "lat": 40.7299242, "lon": -73.9941095 }, + { "lat": 40.7294677, "lon": -73.9944949 }, + { "lat": 40.7294060, "lon": -73.9945470 }, + { "lat": 40.7293461, "lon": -73.9945987 }, + { "lat": 40.7288655, "lon": -73.9950131 }, + { "lat": 40.7288579, "lon": -73.9950197 }, + { "lat": 40.7288100, "lon": -73.9950610 }, + { "lat": 40.7287621, "lon": -73.9951024 }, + { "lat": 40.7282565, "lon": -73.9955393 }, + { "lat": 40.7282036, "lon": -73.9955850 }, + { "lat": 40.7281372, "lon": -73.9956412 }, + { "lat": 40.7269912, "lon": -73.9966119 }, + { "lat": 40.7269476, "lon": -73.9966489 }, + { "lat": 40.7269315, "lon": -73.9966626 }, + { "lat": 40.7268798, "lon": -73.9967070 }, + { "lat": 40.7259465, "lon": -73.9975089 }, + { "lat": 40.7258712, "lon": -73.9975736 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Mercer Street", + "name:etymology:wikidata": "Q3030909", + "name:ko": "머서 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3306319", + "wikipedia": "en:Mercer Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 25345586, + "bounds": { + "minlat": 40.7507705, + "minlon": -73.9408211, + "maxlat": 40.7508772, + "maxlon": -73.9405782 + }, + "nodes": [ + 592643514, + 9129797944 + ], + "geometry": [ + { "lat": 40.7508772, "lon": -73.9408211 }, + { "lat": 40.7507705, "lon": -73.9405782 } + ], + "tags": { + "bicycle": "use_sidepath", + "destination:ref": "NY 25A;NY 25", + "destination:street": "Northern Boulevard;Queens Boulevard", + "hgv": "designated", + "highway": "trunk", + "lanes": "1", + "maxheight": "below_default", + "oneway": "yes", + "ref": "NY 25", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 25345605, + "bounds": { + "minlat": 40.7504713, + "minlon": -73.9408211, + "maxlat": 40.7508772, + "maxlon": -73.9402223 + }, + "nodes": [ + 592643514, + 3785669488, + 2969267806, + 3785669489, + 2969267804, + 3785669490, + 13598289380, + 2969267805, + 3785669491, + 592643534, + 8834795688 + ], + "geometry": [ + { "lat": 40.7508772, "lon": -73.9408211 }, + { "lat": 40.7508094, "lon": -73.9407135 }, + { "lat": 40.7507602, "lon": -73.9406384 }, + { "lat": 40.7507188, "lon": -73.9405871 }, + { "lat": 40.7506502, "lon": -73.9405273 }, + { "lat": 40.7506234, "lon": -73.9405039 }, + { "lat": 40.7506043, "lon": -73.9404833 }, + { "lat": 40.7505846, "lon": -73.9404621 }, + { "lat": 40.7505647, "lon": -73.9404311 }, + { "lat": 40.7505394, "lon": -73.9403822 }, + { "lat": 40.7504713, "lon": -73.9402223 } + ], + "tags": { + "bicycle": "use_sidepath", + "foot": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "1", + "maxheight": "below_default", + "name": "Queensboro Plaza", + "oneway": "yes", + "ref": "NY 25", + "sidewalk:both": "no" + } +}, +{ + "type": "way", + "id": 25345738, + "bounds": { + "minlat": 40.7489275, + "minlon": -73.9379528, + "maxlat": 40.7493205, + "maxlon": -73.9373948 + }, + "nodes": [ + 276203989, + 2089938106, + 8315072984, + 42844306 + ], + "geometry": [ + { "lat": 40.7493205, "lon": -73.9379528 }, + { "lat": 40.7490141, "lon": -73.9376509 }, + { "lat": 40.7489908, "lon": -73.9375831 }, + { "lat": 40.7489275, "lon": -73.9373948 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "name": "Queens Plaza South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25345741, + "bounds": { + "minlat": 40.7461500, + "minlon": -73.9367924, + "maxlat": 40.7483326, + "maxlon": -73.9345514 + }, + "nodes": [ + 42911763, + 42911769, + 42911774, + 42911778, + 593301395 + ], + "geometry": [ + { "lat": 40.7483326, "lon": -73.9367924 }, + { "lat": 40.7471580, "lon": -73.9355610 }, + { "lat": 40.7467914, "lon": -73.9351898 }, + { "lat": 40.7463847, "lon": -73.9347914 }, + { "lat": 40.7461500, "lon": -73.9345514 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "primary", + "layer": "1", + "name": "Queens Boulevard", + "ref": "NY 25", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 25345750, + "bounds": { + "minlat": 40.7460292, + "minlon": -73.9345514, + "maxlat": 40.7461500, + "maxlon": -73.9344235 + }, + "nodes": [ + 593301395, + 12855862339, + 13047920446, + 42911782 + ], + "geometry": [ + { "lat": 40.7461500, "lon": -73.9345514 }, + { "lat": 40.7460992, "lon": -73.9344976 }, + { "lat": 40.7460642, "lon": -73.9344605 }, + { "lat": 40.7460292, "lon": -73.9344235 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Queens Boulevard", + "ref": "NY 25", + "sidewalk:both": "separate", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 25345764, + "bounds": { + "minlat": 40.7462771, + "minlon": -73.9433013, + "maxlat": 40.7468246, + "maxlon": -73.9423180 + }, + "nodes": [ + 2971841366, + 2971841368, + 4228583936, + 42866495, + 9982698542, + 9982698541, + 42866497, + 9982698540, + 42866498, + 9982698539, + 8994094853, + 42866500, + 6335562569, + 6335562567 + ], + "geometry": [ + { "lat": 40.7468246, "lon": -73.9433013 }, + { "lat": 40.7467351, "lon": -73.9432435 }, + { "lat": 40.7466825, "lon": -73.9432092 }, + { "lat": 40.7465070, "lon": -73.9430891 }, + { "lat": 40.7464776, "lon": -73.9430672 }, + { "lat": 40.7464498, "lon": -73.9430400 }, + { "lat": 40.7464223, "lon": -73.9430091 }, + { "lat": 40.7464040, "lon": -73.9429846 }, + { "lat": 40.7463860, "lon": -73.9429512 }, + { "lat": 40.7463718, "lon": -73.9429161 }, + { "lat": 40.7463621, "lon": -73.9428808 }, + { "lat": 40.7463427, "lon": -73.9428053 }, + { "lat": 40.7463037, "lon": -73.9426277 }, + { "lat": 40.7462771, "lon": -73.9423180 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25345792, + "bounds": { + "minlat": 40.7405496, + "minlon": -73.9144419, + "maxlat": 40.7424135, + "maxlon": -73.9138225 + }, + "nodes": [ + 276299246, + 10762284718, + 8599740377, + 42819610 + ], + "geometry": [ + { "lat": 40.7424135, "lon": -73.9138225 }, + { "lat": 40.7423621, "lon": -73.9138396 }, + { "lat": 40.7406366, "lon": -73.9144116 }, + { "lat": 40.7405496, "lon": -73.9144419 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "51st Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25346051, + "bounds": { + "minlat": 40.7722989, + "minlon": -73.9204677, + "maxlat": 40.7726525, + "maxlon": -73.9199688 + }, + "nodes": [ + 11685092476, + 100661124 + ], + "geometry": [ + { "lat": 40.7726525, "lon": -73.9204677 }, + { "lat": 40.7722989, "lon": -73.9199688 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "I 278;GCP", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 25346083, + "bounds": { + "minlat": 40.7687451, + "minlon": -73.9128043, + "maxlat": 40.7695266, + "maxlon": -73.9071301 + }, + "nodes": [ + 13174827123, + 6163935040, + 10578103909, + 106090515, + 9179198084, + 13174827125, + 2444974102, + 13174827124, + 106090517, + 13174827122, + 9179198083, + 13174827121, + 106090519, + 6163935039, + 9179198082, + 106091454, + 10578103910, + 106091455, + 10578103911, + 9179198081, + 9179198079, + 9179198080, + 106091456, + 9179198077, + 6163935038, + 9179198078, + 106091457, + 9179198076, + 6163935037, + 9179198075, + 106091458, + 10578103912, + 9179198074, + 9179198073, + 106091459, + 6163935036, + 106091462, + 10578103913, + 10578103914, + 106138663 + ], + "geometry": [ + { "lat": 40.7687451, "lon": -73.9071301 }, + { "lat": 40.7687952, "lon": -73.9074348 }, + { "lat": 40.7688157, "lon": -73.9075845 }, + { "lat": 40.7688325, "lon": -73.9077343 }, + { "lat": 40.7688431, "lon": -73.9078596 }, + { "lat": 40.7688466, "lon": -73.9079188 }, + { "lat": 40.7688504, "lon": -73.9079924 }, + { "lat": 40.7688527, "lon": -73.9080657 }, + { "lat": 40.7688550, "lon": -73.9081466 }, + { "lat": 40.7688594, "lon": -73.9082978 }, + { "lat": 40.7688654, "lon": -73.9084065 }, + { "lat": 40.7688715, "lon": -73.9084961 }, + { "lat": 40.7688799, "lon": -73.9085906 }, + { "lat": 40.7688973, "lon": -73.9087341 }, + { "lat": 40.7689213, "lon": -73.9088735 }, + { "lat": 40.7689499, "lon": -73.9090117 }, + { "lat": 40.7689818, "lon": -73.9091525 }, + { "lat": 40.7690499, "lon": -73.9094304 }, + { "lat": 40.7690810, "lon": -73.9095685 }, + { "lat": 40.7691109, "lon": -73.9097042 }, + { "lat": 40.7691389, "lon": -73.9098408 }, + { "lat": 40.7691660, "lon": -73.9099808 }, + { "lat": 40.7691928, "lon": -73.9101190 }, + { "lat": 40.7692173, "lon": -73.9102601 }, + { "lat": 40.7692534, "lon": -73.9104712 }, + { "lat": 40.7692829, "lon": -73.9106800 }, + { "lat": 40.7693038, "lon": -73.9108228 }, + { "lat": 40.7693206, "lon": -73.9109647 }, + { "lat": 40.7693353, "lon": -73.9111066 }, + { "lat": 40.7693494, "lon": -73.9112443 }, + { "lat": 40.7693578, "lon": -73.9113888 }, + { "lat": 40.7693671, "lon": -73.9115307 }, + { "lat": 40.7693771, "lon": -73.9116745 }, + { "lat": 40.7693887, "lon": -73.9118176 }, + { "lat": 40.7694014, "lon": -73.9119597 }, + { "lat": 40.7694192, "lon": -73.9121081 }, + { "lat": 40.7694377, "lon": -73.9122455 }, + { "lat": 40.7694580, "lon": -73.9123858 }, + { "lat": 40.7694939, "lon": -73.9125902 }, + { "lat": 40.7695266, "lon": -73.9128043 } + ], + "tags": { + "destination:lanes": "RFK Bridge;Manhattan;Bronx|RFK Bridge;Manhattan;Bronx|RFK Bridge;Manhattan;Bronx|31st Street", + "hgv": "designated", + "highway": "motorway", + "lanes": "4", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "GCP;I 278", + "surface": "asphalt", + "turn:lanes": "|||slight_right" + } +}, +{ + "type": "way", + "id": 25348048, + "bounds": { + "minlat": 40.7693724, + "minlon": -73.9103133, + "maxlat": 40.7764576, + "maxlon": -73.9016607 + }, + "nodes": [ + 42917830, + 7780992284, + 4960235410, + 9236657418, + 42917835, + 11618856838, + 4960239480, + 9236657437, + 42908911, + 9236657439, + 4960239479, + 4941136067, + 9236657425, + 42874628, + 9236657428, + 10225266835, + 4941136065, + 10225266838, + 4941136071, + 9236657434, + 42877856, + 9236657436, + 4941136069, + 42917844, + 42917848, + 11619734093, + 10223199514, + 3864473665, + 4931633950, + 9236657445, + 42910587, + 597443952 + ], + "geometry": [ + { "lat": 40.7764576, "lon": -73.9016607 }, + { "lat": 40.7763900, "lon": -73.9017433 }, + { "lat": 40.7763557, "lon": -73.9017852 }, + { "lat": 40.7753596, "lon": -73.9030026 }, + { "lat": 40.7753212, "lon": -73.9030496 }, + { "lat": 40.7752798, "lon": -73.9031004 }, + { "lat": 40.7749235, "lon": -73.9035379 }, + { "lat": 40.7747488, "lon": -73.9037524 }, + { "lat": 40.7746902, "lon": -73.9038243 }, + { "lat": 40.7746307, "lon": -73.9038973 }, + { "lat": 40.7744485, "lon": -73.9041194 }, + { "lat": 40.7730931, "lon": -73.9057739 }, + { "lat": 40.7729136, "lon": -73.9059930 }, + { "lat": 40.7728594, "lon": -73.9060591 }, + { "lat": 40.7727967, "lon": -73.9061357 }, + { "lat": 40.7726894, "lon": -73.9062669 }, + { "lat": 40.7726395, "lon": -73.9063279 }, + { "lat": 40.7725942, "lon": -73.9063827 }, + { "lat": 40.7713534, "lon": -73.9078998 }, + { "lat": 40.7711460, "lon": -73.9081534 }, + { "lat": 40.7710893, "lon": -73.9082227 }, + { "lat": 40.7710284, "lon": -73.9082966 }, + { "lat": 40.7708725, "lon": -73.9084859 }, + { "lat": 40.7702190, "lon": -73.9092790 }, + { "lat": 40.7700280, "lon": -73.9095105 }, + { "lat": 40.7699816, "lon": -73.9095675 }, + { "lat": 40.7697736, "lon": -73.9098230 }, + { "lat": 40.7696402, "lon": -73.9099869 }, + { "lat": 40.7695180, "lon": -73.9101354 }, + { "lat": 40.7694983, "lon": -73.9101597 }, + { "lat": 40.7694141, "lon": -73.9102637 }, + { "lat": 40.7693724, "lon": -73.9103133 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "name": "Steinway Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q7606937", + "wikipedia": "en:Steinway Street" + } +}, +{ + "type": "way", + "id": 25355654, + "bounds": { + "minlat": 40.7434403, + "minlon": -73.9270770, + "maxlat": 40.7439773, + "maxlon": -73.9224454 + }, + "nodes": [ + 597294491, + 10743722655, + 7084590492, + 10927727729, + 10743722642, + 598433545, + 10743722643, + 8233416053, + 7084525141, + 10743722634, + 2708237394, + 10743722635, + 4960588167, + 2844853159, + 4960588168, + 10743722030, + 2844853157, + 10743722029, + 10927727727, + 10743722039, + 2844853155 + ], + "geometry": [ + { "lat": 40.7439773, "lon": -73.9270770 }, + { "lat": 40.7439675, "lon": -73.9269923 }, + { "lat": 40.7439447, "lon": -73.9267907 }, + { "lat": 40.7439206, "lon": -73.9265871 }, + { "lat": 40.7438860, "lon": -73.9262960 }, + { "lat": 40.7438735, "lon": -73.9261861 }, + { "lat": 40.7438608, "lon": -73.9260797 }, + { "lat": 40.7438240, "lon": -73.9257576 }, + { "lat": 40.7438100, "lon": -73.9256343 }, + { "lat": 40.7437692, "lon": -73.9252987 }, + { "lat": 40.7437596, "lon": -73.9252212 }, + { "lat": 40.7437504, "lon": -73.9251411 }, + { "lat": 40.7436614, "lon": -73.9243693 }, + { "lat": 40.7436545, "lon": -73.9243034 }, + { "lat": 40.7436479, "lon": -73.9242371 }, + { "lat": 40.7435557, "lon": -73.9234458 }, + { "lat": 40.7435465, "lon": -73.9233671 }, + { "lat": 40.7435372, "lon": -73.9232860 }, + { "lat": 40.7435081, "lon": -73.9230387 }, + { "lat": 40.7434481, "lon": -73.9225268 }, + { "lat": 40.7434403, "lon": -73.9224454 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 25355690, + "bounds": { + "minlat": 40.7363810, + "minlon": -73.9088674, + "maxlat": 40.7380941, + "maxlon": -73.9038125 + }, + "nodes": [ + 597315979, + 488264570, + 9194848636, + 9194848635, + 488264584, + 9194848634, + 9194848633, + 9194848631, + 9194848632, + 488264603, + 9194848630, + 9194848628, + 9194848629, + 488264615, + 9194848627, + 9194848626, + 9194848624, + 9194848625, + 488264628, + 9194848623, + 488264643, + 9194848622, + 9194848621, + 9194848620, + 11685913980 + ], + "geometry": [ + { "lat": 40.7363810, "lon": -73.9088674 }, + { "lat": 40.7364311, "lon": -73.9084676 }, + { "lat": 40.7364518, "lon": -73.9083170 }, + { "lat": 40.7364778, "lon": -73.9081641 }, + { "lat": 40.7365050, "lon": -73.9080084 }, + { "lat": 40.7365283, "lon": -73.9078931 }, + { "lat": 40.7365565, "lon": -73.9077540 }, + { "lat": 40.7365869, "lon": -73.9076230 }, + { "lat": 40.7366202, "lon": -73.9074853 }, + { "lat": 40.7366534, "lon": -73.9073535 }, + { "lat": 40.7366912, "lon": -73.9072181 }, + { "lat": 40.7367295, "lon": -73.9070875 }, + { "lat": 40.7367724, "lon": -73.9069521 }, + { "lat": 40.7368153, "lon": -73.9068206 }, + { "lat": 40.7368570, "lon": -73.9066979 }, + { "lat": 40.7369062, "lon": -73.9065665 }, + { "lat": 40.7369553, "lon": -73.9064419 }, + { "lat": 40.7370055, "lon": -73.9063192 }, + { "lat": 40.7370596, "lon": -73.9061919 }, + { "lat": 40.7376642, "lon": -73.9048341 }, + { "lat": 40.7377688, "lon": -73.9046008 }, + { "lat": 40.7378804, "lon": -73.9043451 }, + { "lat": 40.7379863, "lon": -73.9040892 }, + { "lat": 40.7380777, "lon": -73.9038573 }, + { "lat": 40.7380941, "lon": -73.9038125 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25355788, + "bounds": { + "minlat": 40.7422151, + "minlon": -73.9514130, + "maxlat": 40.7428631, + "maxlon": -73.9510573 + }, + "nodes": [ + 42866953, + 9983412356, + 8334074879, + 9983412361, + 2799472329, + 9179073055, + 9179073056, + 13001353982, + 6595149753 + ], + "geometry": [ + { "lat": 40.7422151, "lon": -73.9514130 }, + { "lat": 40.7422852, "lon": -73.9513895 }, + { "lat": 40.7427970, "lon": -73.9512218 }, + { "lat": 40.7428129, "lon": -73.9512108 }, + { "lat": 40.7428271, "lon": -73.9511963 }, + { "lat": 40.7428394, "lon": -73.9511785 }, + { "lat": 40.7428483, "lon": -73.9511551 }, + { "lat": 40.7428557, "lon": -73.9511084 }, + { "lat": 40.7428631, "lon": -73.9510573 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25355824, + "bounds": { + "minlat": 40.7394230, + "minlon": -73.9524744, + "maxlat": 40.7421855, + "maxlon": -73.9515452 + }, + "nodes": [ + 276317945, + 9690695011, + 9690695019, + 9690694930, + 12217399324 + ], + "geometry": [ + { "lat": 40.7394230, "lon": -73.9524744 }, + { "lat": 40.7399437, "lon": -73.9523048 }, + { "lat": 40.7400866, "lon": -73.9522583 }, + { "lat": 40.7406427, "lon": -73.9520739 }, + { "lat": 40.7421855, "lon": -73.9515452 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Pulaski Bridge", + "foot": "no", + "highway": "primary", + "lanes": "3", + "layer": "1", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 25355839, + "bounds": { + "minlat": 40.7418108, + "minlon": -73.9585910, + "maxlat": 40.7421524, + "maxlon": -73.9568901 + }, + "nodes": [ + 276318040, + 10116418486, + 9179070555, + 276318039, + 9179070554, + 12183295164, + 9179070553, + 12183295165, + 2034007318, + 9179070542, + 12183295166, + 276318038, + 3575033037, + 9179070544, + 12183295167, + 12183295168, + 9179070541, + 12183295169, + 9179070539, + 42901546 + ], + "geometry": [ + { "lat": 40.7418108, "lon": -73.9568901 }, + { "lat": 40.7418607, "lon": -73.9569260 }, + { "lat": 40.7419265, "lon": -73.9569898 }, + { "lat": 40.7420357, "lon": -73.9572059 }, + { "lat": 40.7420532, "lon": -73.9572444 }, + { "lat": 40.7420675, "lon": -73.9572817 }, + { "lat": 40.7420785, "lon": -73.9573179 }, + { "lat": 40.7420882, "lon": -73.9573597 }, + { "lat": 40.7421489, "lon": -73.9576706 }, + { "lat": 40.7421524, "lon": -73.9576984 }, + { "lat": 40.7421507, "lon": -73.9577289 }, + { "lat": 40.7421442, "lon": -73.9577640 }, + { "lat": 40.7421263, "lon": -73.9578355 }, + { "lat": 40.7421147, "lon": -73.9578850 }, + { "lat": 40.7421079, "lon": -73.9579334 }, + { "lat": 40.7421057, "lon": -73.9579869 }, + { "lat": 40.7421035, "lon": -73.9580511 }, + { "lat": 40.7421047, "lon": -73.9581367 }, + { "lat": 40.7421065, "lon": -73.9582287 }, + { "lat": 40.7421228, "lon": -73.9585910 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 25355842, + "bounds": { + "minlat": 40.7440068, + "minlon": -73.9577172, + "maxlat": 40.7447885, + "maxlon": -73.9536756 + }, + "nodes": [ + 9982771535, + 8318425491, + 3575033056, + 2473480052, + 597237400, + 2473480049, + 5034727233, + 276318087 + ], + "geometry": [ + { "lat": 40.7447885, "lon": -73.9577172 }, + { "lat": 40.7446081, "lon": -73.9567746 }, + { "lat": 40.7444884, "lon": -73.9561575 }, + { "lat": 40.7444763, "lon": -73.9560956 }, + { "lat": 40.7444602, "lon": -73.9560125 }, + { "lat": 40.7444449, "lon": -73.9559334 }, + { "lat": 40.7440282, "lon": -73.9537861 }, + { "lat": 40.7440068, "lon": -73.9536756 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "48th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 25355889, + "bounds": { + "minlat": 40.7474330, + "minlon": -73.9254850, + "maxlat": 40.7476694, + "maxlon": -73.9254373 + }, + "nodes": [ + 42932836, + 10069673331, + 42932839 + ], + "geometry": [ + { "lat": 40.7476694, "lon": -73.9254373 }, + { "lat": 40.7475305, "lon": -73.9254653 }, + { "lat": 40.7474330, "lon": -73.9254850 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "maxspeed": "25 mph", + "name": "39th Street", + "surface": "asphalt", + "turn:lanes:forward": "through|right" + } +}, +{ + "type": "way", + "id": 25355900, + "bounds": { + "minlat": 40.7448625, + "minlon": -73.9368967, + "maxlat": 40.7451397, + "maxlon": -73.9345028 + }, + "nodes": [ + 4203113823, + 5482217772, + 42867654, + 9981973379, + 11180927132, + 9981973380, + 42849630, + 10762119901, + 5538983347, + 42913049 + ], + "geometry": [ + { "lat": 40.7451397, "lon": -73.9368967 }, + { "lat": 40.7450864, "lon": -73.9364469 }, + { "lat": 40.7450749, "lon": -73.9363505 }, + { "lat": 40.7450657, "lon": -73.9362706 }, + { "lat": 40.7450190, "lon": -73.9358613 }, + { "lat": 40.7449787, "lon": -73.9355088 }, + { "lat": 40.7449676, "lon": -73.9354130 }, + { "lat": 40.7448805, "lon": -73.9346547 }, + { "lat": 40.7448733, "lon": -73.9345920 }, + { "lat": 40.7448625, "lon": -73.9345028 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25355901, + "bounds": { + "minlat": 40.7458350, + "minlon": -73.9408345, + "maxlat": 40.7459480, + "maxlon": -73.9403233 + }, + "nodes": [ + 42800084, + 3049953949 + ], + "geometry": [ + { "lat": 40.7459480, "lon": -73.9408345 }, + { "lat": 40.7458350, "lon": -73.9403233 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "layer": "1", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 25355957, + "bounds": { + "minlat": 40.7425326, + "minlon": -73.9492280, + "maxlat": 40.7427278, + "maxlon": -73.9491605 + }, + "nodes": [ + 597237399, + 8991509408, + 42825933 + ], + "geometry": [ + { "lat": 40.7427278, "lon": -73.9491605 }, + { "lat": 40.7426118, "lon": -73.9491984 }, + { "lat": 40.7425326, "lon": -73.9492280 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "21st Street", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25355958, + "bounds": { + "minlat": 40.7427278, + "minlon": -73.9491605, + "maxlat": 40.7434268, + "maxlon": -73.9489241 + }, + "nodes": [ + 42825929, + 597237399 + ], + "geometry": [ + { "lat": 40.7434268, "lon": -73.9489241 }, + { "lat": 40.7427278, "lon": -73.9491605 } + ], + "tags": { + "bridge": "yes", + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "21st Street", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25355962, + "bounds": { + "minlat": 40.7531892, + "minlon": -73.9467482, + "maxlat": 40.7532651, + "maxlon": -73.9466737 + }, + "nodes": [ + 42866903, + 2472695920 + ], + "geometry": [ + { "lat": 40.7531892, "lon": -73.9467482 }, + { "lat": 40.7532651, "lon": -73.9466737 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "no", + "highway": "secondary", + "name": "11th Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 25355969, + "bounds": { + "minlat": 40.7497140, + "minlon": -73.9367394, + "maxlat": 40.7499494, + "maxlon": -73.9361305 + }, + "nodes": [ + 7762265855, + 1575006369, + 4960282324, + 3114612553 + ], + "geometry": [ + { "lat": 40.7497140, "lon": -73.9361305 }, + { "lat": 40.7497538, "lon": -73.9363321 }, + { "lat": 40.7499055, "lon": -73.9366491 }, + { "lat": 40.7499494, "lon": -73.9367394 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "lanes": "1", + "name": "41st Avenue", + "name_1": "Bridge Plaza North", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25355973, + "bounds": { + "minlat": 40.7434268, + "minlon": -73.9489241, + "maxlat": 40.7443441, + "maxlon": -73.9486231 + }, + "nodes": [ + 4203039769, + 42825925, + 42825929 + ], + "geometry": [ + { "lat": 40.7443441, "lon": -73.9486231 }, + { "lat": 40.7439120, "lon": -73.9487635 }, + { "lat": 40.7434268, "lon": -73.9489241 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "21st Street", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25419441, + "bounds": { + "minlat": 40.7641847, + "minlon": -73.9069623, + "maxlat": 40.7685629, + "maxlon": -73.9029555 + }, + "nodes": [ + 106076455, + 13174823077, + 13174823076, + 13174823075, + 9179209223, + 13174823074, + 13174823073, + 13174823072, + 6163935028, + 13174823066, + 42902176, + 13174823067, + 9179209226, + 13174823068, + 6163935029, + 13174823069, + 42902180, + 13174823070, + 9179209227, + 13174823071, + 6163935030, + 106083684, + 9179209228, + 106083685, + 13174823089, + 9179209229, + 13174823090, + 482569590, + 13174823091, + 9179209230, + 9179209232, + 482568762 + ], + "geometry": [ + { "lat": 40.7685629, "lon": -73.9069623 }, + { "lat": 40.7684331, "lon": -73.9065499 }, + { "lat": 40.7683626, "lon": -73.9062626 }, + { "lat": 40.7683060, "lon": -73.9060540 }, + { "lat": 40.7682313, "lon": -73.9057944 }, + { "lat": 40.7681379, "lon": -73.9054818 }, + { "lat": 40.7681071, "lon": -73.9053781 }, + { "lat": 40.7680843, "lon": -73.9053077 }, + { "lat": 40.7680615, "lon": -73.9052457 }, + { "lat": 40.7680261, "lon": -73.9051573 }, + { "lat": 40.7679954, "lon": -73.9050833 }, + { "lat": 40.7679685, "lon": -73.9050237 }, + { "lat": 40.7679365, "lon": -73.9049545 }, + { "lat": 40.7679057, "lon": -73.9048930 }, + { "lat": 40.7678722, "lon": -73.9048314 }, + { "lat": 40.7678416, "lon": -73.9047775 }, + { "lat": 40.7678147, "lon": -73.9047317 }, + { "lat": 40.7677840, "lon": -73.9046831 }, + { "lat": 40.7677587, "lon": -73.9046484 }, + { "lat": 40.7677236, "lon": -73.9046051 }, + { "lat": 40.7677014, "lon": -73.9045801 }, + { "lat": 40.7676282, "lon": -73.9045007 }, + { "lat": 40.7675369, "lon": -73.9044100 }, + { "lat": 40.7674781, "lon": -73.9043603 }, + { "lat": 40.7674421, "lon": -73.9043355 }, + { "lat": 40.7674061, "lon": -73.9043107 }, + { "lat": 40.7673611, "lon": -73.9042823 }, + { "lat": 40.7673192, "lon": -73.9042588 }, + { "lat": 40.7672815, "lon": -73.9042389 }, + { "lat": 40.7672322, "lon": -73.9042163 }, + { "lat": 40.7647914, "lon": -73.9031915 }, + { "lat": 40.7641847, "lon": -73.9029555 } + ], + "tags": { + "bicycle": "no", + "destination": "Brooklyn;Staten Island", + "destination:ref": "I 278 West", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "lit": "yes", + "name": "Brooklyn-Queens Expressway West", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25419447, + "bounds": { + "minlat": 40.7688914, + "minlon": -73.9108976, + "maxlat": 40.7693724, + "maxlon": -73.9103133 + }, + "nodes": [ + 597443952, + 13015291365 + ], + "geometry": [ + { "lat": 40.7693724, "lon": -73.9103133 }, + { "lat": 40.7688914, "lon": -73.9108976 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "hgv": "local", + "highway": "tertiary", + "layer": "1", + "name": "Steinway Street", + "surface": "asphalt", + "wikidata": "Q7606937", + "wikipedia": "en:Steinway Street" + } +}, +{ + "type": "way", + "id": 25419449, + "bounds": { + "minlat": 40.7589793, + "minlon": -73.9190094, + "maxlat": 40.7688547, + "maxlon": -73.9109422 + }, + "nodes": [ + 42912771, + 6406731431, + 4931588204, + 4925175868, + 42842479, + 4925175867, + 4931588202, + 4925178948, + 3570250006, + 42832999, + 3570250001, + 4925178949, + 4931658237, + 3570249970, + 42874062, + 3570249963, + 4960208240, + 5635677659, + 4960208242, + 7661684402, + 42856556, + 7661684403, + 4960208244, + 3807145255, + 3807145460, + 6228232697, + 4960208247, + 2275868395, + 42882996 + ], + "geometry": [ + { "lat": 40.7688547, "lon": -73.9109422 }, + { "lat": 40.7687825, "lon": -73.9110206 }, + { "lat": 40.7682050, "lon": -73.9114906 }, + { "lat": 40.7680242, "lon": -73.9116379 }, + { "lat": 40.7679488, "lon": -73.9116994 }, + { "lat": 40.7678959, "lon": -73.9117425 }, + { "lat": 40.7676781, "lon": -73.9119200 }, + { "lat": 40.7657171, "lon": -73.9135183 }, + { "lat": 40.7655557, "lon": -73.9136493 }, + { "lat": 40.7654868, "lon": -73.9137055 }, + { "lat": 40.7654199, "lon": -73.9137600 }, + { "lat": 40.7652545, "lon": -73.9138952 }, + { "lat": 40.7641094, "lon": -73.9148285 }, + { "lat": 40.7639703, "lon": -73.9149419 }, + { "lat": 40.7639012, "lon": -73.9149982 }, + { "lat": 40.7638287, "lon": -73.9150571 }, + { "lat": 40.7636643, "lon": -73.9151914 }, + { "lat": 40.7624199, "lon": -73.9161976 }, + { "lat": 40.7616043, "lon": -73.9168701 }, + { "lat": 40.7613960, "lon": -73.9170407 }, + { "lat": 40.7613303, "lon": -73.9170942 }, + { "lat": 40.7612602, "lon": -73.9171512 }, + { "lat": 40.7610655, "lon": -73.9173092 }, + { "lat": 40.7605248, "lon": -73.9177499 }, + { "lat": 40.7603781, "lon": -73.9178694 }, + { "lat": 40.7600524, "lon": -73.9181351 }, + { "lat": 40.7592217, "lon": -73.9188119 }, + { "lat": 40.7590523, "lon": -73.9189501 }, + { "lat": 40.7589793, "lon": -73.9190094 } + ], + "tags": { + "foot": "yes", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "name": "Steinway Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7606937", + "wikipedia": "en:Steinway Street" + } +}, +{ + "type": "way", + "id": 25419457, + "bounds": { + "minlat": 40.7695700, + "minlon": -73.9147922, + "maxlat": 40.7699569, + "maxlon": -73.9144805 + }, + "nodes": [ + 597443931, + 597443932 + ], + "geometry": [ + { "lat": 40.7699569, "lon": -73.9144805 }, + { "lat": 40.7695700, "lon": -73.9147922 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:right": "shared_lane", + "highway": "residential", + "layer": "1", + "maxspeed": "25 mph", + "name": "35th Street", + "oneway": "no", + "source:maxspeed": "sign" + } +}, +{ + "type": "way", + "id": 25419476, + "bounds": { + "minlat": 40.7707528, + "minlon": -73.9173293, + "maxlat": 40.7708318, + "maxlon": -73.9172400 + }, + "nodes": [ + 42849703, + 6406731013 + ], + "geometry": [ + { "lat": 40.7708318, "lon": -73.9172400 }, + { "lat": 40.7707528, "lon": -73.9173293 } + ], + "tags": { + "highway": "secondary", + "level": "0", + "maxspeed": "25 mph", + "name": "31st Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25419491, + "bounds": { + "minlat": 40.7559709, + "minlon": -73.9253030, + "maxlat": 40.7619343, + "maxlon": -73.9126108 + }, + "nodes": [ + 12356855475, + 3570249917, + 5391427725, + 3570249910, + 42882974, + 3570249906, + 5391427724, + 3570249900, + 42882975, + 3570249898, + 5391427723, + 3570249892, + 42882977, + 3570249890, + 3570249884, + 42866657, + 3570249882, + 5391427721, + 3570249876, + 42882983, + 3570249873, + 5391427722, + 3570249863, + 42882987, + 3570249860, + 3570249853, + 2402842565, + 3570249852, + 4960276043, + 3570249847, + 42882996, + 3570249845, + 4960276044, + 3570249839, + 42882999, + 3570249837, + 11645801132, + 3570249831, + 42883002, + 3570249829, + 11645801133, + 3570249826, + 42883005, + 3570249825, + 11645801115, + 3570249822, + 42883008, + 3570249821, + 11645801114, + 3570249818, + 42883012, + 3570249817, + 3570249814, + 42833510, + 3570249813, + 3570249810, + 42883019, + 3570249809, + 11645785849, + 11645785848, + 8593793986, + 2402842566 + ], + "geometry": [ + { "lat": 40.7619343, "lon": -73.9253030 }, + { "lat": 40.7619208, "lon": -73.9252712 }, + { "lat": 40.7618413, "lon": -73.9251046 }, + { "lat": 40.7616369, "lon": -73.9246670 }, + { "lat": 40.7615965, "lon": -73.9245807 }, + { "lat": 40.7615706, "lon": -73.9245251 }, + { "lat": 40.7613457, "lon": -73.9240439 }, + { "lat": 40.7612662, "lon": -73.9238719 }, + { "lat": 40.7612244, "lon": -73.9237843 }, + { "lat": 40.7611917, "lon": -73.9237160 }, + { "lat": 40.7610895, "lon": -73.9235012 }, + { "lat": 40.7608826, "lon": -73.9230666 }, + { "lat": 40.7608441, "lon": -73.9229854 }, + { "lat": 40.7608171, "lon": -73.9229276 }, + { "lat": 40.7605111, "lon": -73.9222725 }, + { "lat": 40.7604752, "lon": -73.9221955 }, + { "lat": 40.7604428, "lon": -73.9221265 }, + { "lat": 40.7603548, "lon": -73.9219389 }, + { "lat": 40.7601369, "lon": -73.9214745 }, + { "lat": 40.7601082, "lon": -73.9214086 }, + { "lat": 40.7600730, "lon": -73.9213342 }, + { "lat": 40.7599232, "lon": -73.9210168 }, + { "lat": 40.7597678, "lon": -73.9206724 }, + { "lat": 40.7597277, "lon": -73.9205876 }, + { "lat": 40.7596987, "lon": -73.9205264 }, + { "lat": 40.7593829, "lon": -73.9198704 }, + { "lat": 40.7593450, "lon": -73.9197903 }, + { "lat": 40.7593183, "lon": -73.9197334 }, + { "lat": 40.7591138, "lon": -73.9192964 }, + { "lat": 40.7590240, "lon": -73.9191046 }, + { "lat": 40.7589793, "lon": -73.9190094 }, + { "lat": 40.7589325, "lon": -73.9189094 }, + { "lat": 40.7588518, "lon": -73.9187382 }, + { "lat": 40.7586351, "lon": -73.9182778 }, + { "lat": 40.7585975, "lon": -73.9181976 }, + { "lat": 40.7585668, "lon": -73.9181329 }, + { "lat": 40.7583713, "lon": -73.9177169 }, + { "lat": 40.7582597, "lon": -73.9174798 }, + { "lat": 40.7582225, "lon": -73.9174008 }, + { "lat": 40.7581934, "lon": -73.9173386 }, + { "lat": 40.7581133, "lon": -73.9171683 }, + { "lat": 40.7578813, "lon": -73.9166749 }, + { "lat": 40.7578467, "lon": -73.9166012 }, + { "lat": 40.7578164, "lon": -73.9165366 }, + { "lat": 40.7575898, "lon": -73.9160544 }, + { "lat": 40.7575072, "lon": -73.9158786 }, + { "lat": 40.7574730, "lon": -73.9158059 }, + { "lat": 40.7574406, "lon": -73.9157365 }, + { "lat": 40.7573574, "lon": -73.9155580 }, + { "lat": 40.7571345, "lon": -73.9150798 }, + { "lat": 40.7571019, "lon": -73.9150068 }, + { "lat": 40.7570708, "lon": -73.9149419 }, + { "lat": 40.7567555, "lon": -73.9142840 }, + { "lat": 40.7567261, "lon": -73.9142231 }, + { "lat": 40.7566889, "lon": -73.9141426 }, + { "lat": 40.7563805, "lon": -73.9134824 }, + { "lat": 40.7563513, "lon": -73.9134181 }, + { "lat": 40.7563158, "lon": -73.9133428 }, + { "lat": 40.7561020, "lon": -73.9128891 }, + { "lat": 40.7560278, "lon": -73.9127316 }, + { "lat": 40.7560070, "lon": -73.9126875 }, + { "lat": 40.7559709, "lon": -73.9126108 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25419496, + "bounds": { + "minlat": 40.7713596, + "minlon": -73.9259342, + "maxlat": 40.7722511, + "maxlon": -73.9228535 + }, + "nodes": [ + 2063038040, + 7733683732, + 42811458, + 11618954199, + 2297358952, + 42935603, + 6452985342, + 42920850, + 6452985341, + 7726875210, + 3023217445, + 5105347833, + 5044706873, + 42818487 + ], + "geometry": [ + { "lat": 40.7722511, "lon": -73.9259342 }, + { "lat": 40.7721927, "lon": -73.9258050 }, + { "lat": 40.7720630, "lon": -73.9255182 }, + { "lat": 40.7720454, "lon": -73.9254508 }, + { "lat": 40.7720224, "lon": -73.9253631 }, + { "lat": 40.7719702, "lon": -73.9251706 }, + { "lat": 40.7717987, "lon": -73.9245259 }, + { "lat": 40.7717760, "lon": -73.9244410 }, + { "lat": 40.7717556, "lon": -73.9243636 }, + { "lat": 40.7715499, "lon": -73.9235810 }, + { "lat": 40.7715189, "lon": -73.9234632 }, + { "lat": 40.7714008, "lon": -73.9230141 }, + { "lat": 40.7713793, "lon": -73.9229324 }, + { "lat": 40.7713596, "lon": -73.9228535 } + ], + "tags": { + "alt_name": "Astoria Boulevard South", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Astoria Boulevard", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 25420753, + "bounds": { + "minlat": 40.7202425, + "minlon": -73.9445012, + "maxlat": 40.7204367, + "maxlon": -73.9443942 + }, + "nodes": [ + 42502920, + 9937288000, + 2987758841, + 8393782848, + 2987758840 + ], + "geometry": [ + { "lat": 40.7202425, "lon": -73.9443942 }, + { "lat": 40.7203400, "lon": -73.9444320 }, + { "lat": 40.7203574, "lon": -73.9444382 }, + { "lat": 40.7204123, "lon": -73.9444814 }, + { "lat": 40.7204367, "lon": -73.9445012 } + ], + "tags": { + "cycleway:right": "separate", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "|merge_to_left", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 25420754, + "bounds": { + "minlat": 40.7357486, + "minlon": -73.9532606, + "maxlat": 40.7382202, + "maxlon": -73.9529124 + }, + "nodes": [ + 42492091, + 3582326354, + 9996409528, + 6167101332, + 9996409527, + 9996409526, + 597261866, + 9920935007, + 42472259, + 8097082863, + 9920934957, + 42509165, + 8097082854, + 42513176, + 13295821226 + ], + "geometry": [ + { "lat": 40.7382202, "lon": -73.9531707 }, + { "lat": 40.7381341, "lon": -73.9532095 }, + { "lat": 40.7380669, "lon": -73.9532320 }, + { "lat": 40.7380174, "lon": -73.9532461 }, + { "lat": 40.7379669, "lon": -73.9532564 }, + { "lat": 40.7379224, "lon": -73.9532606 }, + { "lat": 40.7378795, "lon": -73.9532602 }, + { "lat": 40.7375739, "lon": -73.9532144 }, + { "lat": 40.7375049, "lon": -73.9532044 }, + { "lat": 40.7374400, "lon": -73.9531922 }, + { "lat": 40.7368618, "lon": -73.9530965 }, + { "lat": 40.7367955, "lon": -73.9530852 }, + { "lat": 40.7367325, "lon": -73.9530752 }, + { "lat": 40.7360817, "lon": -73.9529675 }, + { "lat": 40.7357486, "lon": -73.9529124 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A49", + "tiger:county": "Kings, NY", + "tiger:name_base": "Mc Guinness", + "tiger:name_base_1": "Pulaski", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Brg", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 25420755, + "bounds": { + "minlat": 40.7354141, + "minlon": -73.9524168, + "maxlat": 40.7356404, + "maxlon": -73.9500402 + }, + "nodes": [ + 277046426, + 8097082834, + 5481915275, + 8097082856, + 8097082830, + 42499743 + ], + "geometry": [ + { "lat": 40.7354141, "lon": -73.9524168 }, + { "lat": 40.7354222, "lon": -73.9523273 }, + { "lat": 40.7354658, "lon": -73.9518616 }, + { "lat": 40.7356271, "lon": -73.9501844 }, + { "lat": 40.7356326, "lon": -73.9501255 }, + { "lat": 40.7356404, "lon": -73.9500402 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Eagle Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25420772, + "bounds": { + "minlat": 40.7420838, + "minlon": -73.9480489, + "maxlat": 40.7423076, + "maxlon": -73.9469035 + }, + "nodes": [ + 277046475, + 3114657769, + 3114657767, + 277046476 + ], + "geometry": [ + { "lat": 40.7423076, "lon": -73.9480489 }, + { "lat": 40.7421746, "lon": -73.9473724 }, + { "lat": 40.7421685, "lon": -73.9473409 }, + { "lat": 40.7420838, "lon": -73.9469035 } + ], + "tags": { + "bridge": "yes", + "cycleway": "lane", + "highway": "unclassified", + "lanes": "2", + "layer": "1", + "name": "49th Avenue", + "name_1": "Hunters Point Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25420773, + "bounds": { + "minlat": 40.7411894, + "minlon": -73.9463933, + "maxlat": 40.7419830, + "maxlon": -73.9422986 + }, + "nodes": [ + 42832467, + 10081023543, + 7165385855, + 8793041750, + 42808177, + 8994542731, + 42832473, + 7984589522, + 42832477, + 8926818326, + 42832478 + ], + "geometry": [ + { "lat": 40.7419830, "lon": -73.9463933 }, + { "lat": 40.7419343, "lon": -73.9461653 }, + { "lat": 40.7418542, "lon": -73.9457439 }, + { "lat": 40.7416628, "lon": -73.9447623 }, + { "lat": 40.7416478, "lon": -73.9446821 }, + { "lat": 40.7416324, "lon": -73.9446097 }, + { "lat": 40.7416030, "lon": -73.9444570 }, + { "lat": 40.7414385, "lon": -73.9436088 }, + { "lat": 40.7412542, "lon": -73.9426441 }, + { "lat": 40.7412047, "lon": -73.9423912 }, + { "lat": 40.7411894, "lon": -73.9422986 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "49th Avenue", + "name_1": "Hunters Point Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25420786, + "bounds": { + "minlat": 40.7386760, + "minlon": -73.9422022, + "maxlat": 40.7389550, + "maxlon": -73.9408062 + }, + "nodes": [ + 277046510, + 7824536265, + 9982697922, + 42856246 + ], + "geometry": [ + { "lat": 40.7389550, "lon": -73.9422022 }, + { "lat": 40.7387822, "lon": -73.9413375 }, + { "lat": 40.7387003, "lon": -73.9409305 }, + { "lat": 40.7386760, "lon": -73.9408062 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Borden Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25420787, + "bounds": { + "minlat": 40.7390740, + "minlon": -73.9429947, + "maxlat": 40.7391110, + "maxlon": -73.9428053 + }, + "nodes": [ + 42859014, + 6644592936 + ], + "geometry": [ + { "lat": 40.7391110, "lon": -73.9429947 }, + { "lat": 40.7390740, "lon": -73.9428053 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 25420810, + "bounds": { + "minlat": 40.7408758, + "minlon": -73.9411064, + "maxlat": 40.7409563, + "maxlon": -73.9406821 + }, + "nodes": [ + 277046643, + 7477262846 + ], + "geometry": [ + { "lat": 40.7409563, "lon": -73.9411064 }, + { "lat": 40.7408758, "lon": -73.9406821 } + ], + "tags": { + "bridge": "yes", + "highway": "unclassified", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Hunters Point Bridge", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "49th", + "tiger:name_base_1": "Hunters Point", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 25420812, + "bounds": { + "minlat": 40.7396908, + "minlon": -73.9401590, + "maxlat": 40.7407752, + "maxlon": -73.9345846 + }, + "nodes": [ + 42832489, + 9981973327, + 9981973326, + 9981973325, + 7477262848, + 8949664883, + 6721049753, + 9981973322, + 42832494, + 9981973321, + 9981973320, + 42832499, + 9981973317, + 9179115035, + 9981925216, + 6720993915, + 9981925215, + 9179115034, + 9981925212, + 42832503, + 9981925210, + 9981925211, + 9179115033, + 9179115032, + 8626128227, + 9981925209, + 9179115031, + 9179115030, + 42832506, + 9179115029, + 42832509, + 9981925206, + 42832512 + ], + "geometry": [ + { "lat": 40.7407752, "lon": -73.9401590 }, + { "lat": 40.7407477, "lon": -73.9399983 }, + { "lat": 40.7407202, "lon": -73.9398315 }, + { "lat": 40.7406935, "lon": -73.9396540 }, + { "lat": 40.7406728, "lon": -73.9394858 }, + { "lat": 40.7406048, "lon": -73.9387318 }, + { "lat": 40.7405854, "lon": -73.9385316 }, + { "lat": 40.7405616, "lon": -73.9382930 }, + { "lat": 40.7405526, "lon": -73.9382029 }, + { "lat": 40.7405447, "lon": -73.9381168 }, + { "lat": 40.7404746, "lon": -73.9373553 }, + { "lat": 40.7404678, "lon": -73.9372795 }, + { "lat": 40.7404597, "lon": -73.9371908 }, + { "lat": 40.7404373, "lon": -73.9369469 }, + { "lat": 40.7404245, "lon": -73.9368285 }, + { "lat": 40.7404108, "lon": -73.9367154 }, + { "lat": 40.7403955, "lon": -73.9366029 }, + { "lat": 40.7403775, "lon": -73.9365007 }, + { "lat": 40.7403658, "lon": -73.9364295 }, + { "lat": 40.7403476, "lon": -73.9363475 }, + { "lat": 40.7403291, "lon": -73.9362629 }, + { "lat": 40.7403144, "lon": -73.9361994 }, + { "lat": 40.7402927, "lon": -73.9361078 }, + { "lat": 40.7402618, "lon": -73.9359907 }, + { "lat": 40.7402246, "lon": -73.9358657 }, + { "lat": 40.7401893, "lon": -73.9357560 }, + { "lat": 40.7401521, "lon": -73.9356487 }, + { "lat": 40.7401133, "lon": -73.9355470 }, + { "lat": 40.7400756, "lon": -73.9354496 }, + { "lat": 40.7400442, "lon": -73.9353717 }, + { "lat": 40.7398393, "lon": -73.9349239 }, + { "lat": 40.7397471, "lon": -73.9347142 }, + { "lat": 40.7396908, "lon": -73.9345846 } + ], + "tags": { + "alt_name": "49th Avenue", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hunters Point Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25420814, + "bounds": { + "minlat": 40.7386600, + "minlon": -73.9407243, + "maxlat": 40.7391261, + "maxlon": -73.9405692 + }, + "nodes": [ + 277046657, + 9982287342, + 9982287344, + 9982287345, + 9982697921, + 9982287343 + ], + "geometry": [ + { "lat": 40.7391261, "lon": -73.9405692 }, + { "lat": 40.7387734, "lon": -73.9406606 }, + { "lat": 40.7387494, "lon": -73.9406698 }, + { "lat": 40.7387279, "lon": -73.9406812 }, + { "lat": 40.7387045, "lon": -73.9406959 }, + { "lat": 40.7386600, "lon": -73.9407243 } + ], + "tags": { + "highway": "unclassified", + "name": "Review Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 25428263, + "bounds": { + "minlat": 40.7414615, + "minlon": -73.9522665, + "maxlat": 40.7417057, + "maxlon": -73.9503154 + }, + "nodes": [ + 487121215, + 9179073064, + 9179073065, + 597237417, + 9983412377, + 2799547037, + 6166333238, + 597237418, + 6594863440 + ], + "geometry": [ + { "lat": 40.7417057, "lon": -73.9503154 }, + { "lat": 40.7416045, "lon": -73.9509792 }, + { "lat": 40.7415106, "lon": -73.9516133 }, + { "lat": 40.7414922, "lon": -73.9517366 }, + { "lat": 40.7414791, "lon": -73.9518355 }, + { "lat": 40.7414677, "lon": -73.9519361 }, + { "lat": 40.7414627, "lon": -73.9520467 }, + { "lat": 40.7414615, "lon": -73.9521417 }, + { "lat": 40.7414669, "lon": -73.9522665 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 25454217, + "bounds": { + "minlat": 40.7362547, + "minlon": -73.9268031, + "maxlat": 40.7364774, + "maxlon": -73.9256521 + }, + "nodes": [ + 597311206, + 42825298, + 9179114999, + 2874974213, + 9179114998, + 9179114997, + 42825297, + 9599937424 + ], + "geometry": [ + { "lat": 40.7362547, "lon": -73.9256521 }, + { "lat": 40.7362783, "lon": -73.9257604 }, + { "lat": 40.7363198, "lon": -73.9259573 }, + { "lat": 40.7363506, "lon": -73.9261140 }, + { "lat": 40.7363857, "lon": -73.9262895 }, + { "lat": 40.7364227, "lon": -73.9264910 }, + { "lat": 40.7364569, "lon": -73.9266863 }, + { "lat": 40.7364774, "lon": -73.9268031 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden;Gale:Laurel Hill", + "tiger:name_type": "Ave:Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_left_1": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 25454225, + "bounds": { + "minlat": 40.7376836, + "minlon": -73.9381421, + "maxlat": 40.7379946, + "maxlon": -73.9361574 + }, + "nodes": [ + 597269953, + 9179114929, + 13048095851, + 597269954, + 13048095849, + 1056085661, + 9982287320, + 9179114928, + 9179114927, + 13049334887, + 597269955, + 13049334890, + 597269956 + ], + "geometry": [ + { "lat": 40.7379946, "lon": -73.9381421 }, + { "lat": 40.7379608, "lon": -73.9379834 }, + { "lat": 40.7379395, "lon": -73.9378808 }, + { "lat": 40.7379218, "lon": -73.9377958 }, + { "lat": 40.7379086, "lon": -73.9377206 }, + { "lat": 40.7378832, "lon": -73.9375761 }, + { "lat": 40.7378549, "lon": -73.9374047 }, + { "lat": 40.7378239, "lon": -73.9372140 }, + { "lat": 40.7378024, "lon": -73.9370644 }, + { "lat": 40.7377882, "lon": -73.9369517 }, + { "lat": 40.7377757, "lon": -73.9368531 }, + { "lat": 40.7377681, "lon": -73.9367961 }, + { "lat": 40.7376836, "lon": -73.9361574 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25454247, + "bounds": { + "minlat": 40.7383317, + "minlon": -73.9272966, + "maxlat": 40.7386004, + "maxlon": -73.9272434 + }, + "nodes": [ + 42896812, + 10084797150, + 42910064 + ], + "geometry": [ + { "lat": 40.7386004, "lon": -73.9272434 }, + { "lat": 40.7385170, "lon": -73.9272594 }, + { "lat": 40.7383317, "lon": -73.9272966 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "39th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25454254, + "bounds": { + "minlat": 40.7368727, + "minlon": -73.9315091, + "maxlat": 40.7371334, + "maxlon": -73.9309203 + }, + "nodes": [ + 597294552, + 597294549 + ], + "geometry": [ + { "lat": 40.7368727, "lon": -73.9315091 }, + { "lat": 40.7371334, "lon": -73.9309203 } + ], + "tags": { + "bridge": "yes", + "cycleway": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "3", + "lanes:forward": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "concrete", + "turn:lanes:backward": "left|left|through", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 25454255, + "bounds": { + "minlat": 40.7371642, + "minlon": -73.9308371, + "maxlat": 40.7375487, + "maxlon": -73.9299342 + }, + "nodes": [ + 42896796, + 9192032641, + 7725555879, + 10168482213, + 11155242461, + 7298611017, + 9192032640, + 42832531 + ], + "geometry": [ + { "lat": 40.7371642, "lon": -73.9308371 }, + { "lat": 40.7372076, "lon": -73.9307335 }, + { "lat": 40.7372644, "lon": -73.9306018 }, + { "lat": 40.7372787, "lon": -73.9305699 }, + { "lat": 40.7373073, "lon": -73.9305062 }, + { "lat": 40.7373803, "lon": -73.9303436 }, + { "lat": 40.7375084, "lon": -73.9300523 }, + { "lat": 40.7375487, "lon": -73.9299342 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "designated", + "highway": "primary", + "name": "Greenpoint Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 25454458, + "bounds": { + "minlat": 40.7375295, + "minlon": -73.9329256, + "maxlat": 40.7378595, + "maxlon": -73.9325775 + }, + "nodes": [ + 277385122, + 277388568, + 9179114979, + 9981925171, + 9179114978, + 277388569, + 9179114977, + 9981925170, + 277388570, + 277388571, + 7824544616 + ], + "geometry": [ + { "lat": 40.7375295, "lon": -73.9325775 }, + { "lat": 40.7375806, "lon": -73.9327964 }, + { "lat": 40.7375950, "lon": -73.9328338 }, + { "lat": 40.7376111, "lon": -73.9328636 }, + { "lat": 40.7376312, "lon": -73.9328883 }, + { "lat": 40.7376566, "lon": -73.9329083 }, + { "lat": 40.7376816, "lon": -73.9329189 }, + { "lat": 40.7377084, "lon": -73.9329241 }, + { "lat": 40.7377352, "lon": -73.9329256 }, + { "lat": 40.7377616, "lon": -73.9329216 }, + { "lat": 40.7378595, "lon": -73.9328889 } + ], + "tags": { + "highway": "unclassified", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 25464382, + "bounds": { + "minlat": 40.8006541, + "minlon": -73.9290592, + "maxlat": 40.8008030, + "maxlon": -73.9286997 + }, + "nodes": [ + 371225132, + 7495347013 + ], + "geometry": [ + { "lat": 40.8008030, "lon": -73.9290592 }, + { "lat": 40.8006541, "lon": -73.9286997 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "hgv": "local", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "toll": "yes", + "unsigned_ref": "NY 900G", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 25464553, + "bounds": { + "minlat": 40.7997139, + "minlon": -73.9252950, + "maxlat": 40.8001178, + "maxlon": -73.9236490 + }, + "nodes": [ + 277482087, + 9153856282, + 3640160336, + 9153856283, + 277482086, + 9153856284, + 9153856285, + 277482085, + 277482084, + 9153856286, + 9153856287, + 277482083, + 9153856288, + 9153856289, + 277481572, + 9153856281, + 277482082, + 9153856280, + 277482081, + 9153856279, + 277482080, + 3640160567, + 277482079, + 13364017907, + 3640160581, + 9153856278, + 3549074022 + ], + "geometry": [ + { "lat": 40.8001178, "lon": -73.9251737 }, + { "lat": 40.8000837, "lon": -73.9252242 }, + { "lat": 40.8000430, "lon": -73.9252561 }, + { "lat": 40.8000058, "lon": -73.9252797 }, + { "lat": 40.7999625, "lon": -73.9252950 }, + { "lat": 40.7999086, "lon": -73.9252943 }, + { "lat": 40.7998739, "lon": -73.9252931 }, + { "lat": 40.7998367, "lon": -73.9252866 }, + { "lat": 40.7997618, "lon": -73.9251969 }, + { "lat": 40.7997363, "lon": -73.9251459 }, + { "lat": 40.7997217, "lon": -73.9250955 }, + { "lat": 40.7997139, "lon": -73.9250405 }, + { "lat": 40.7997165, "lon": -73.9249890 }, + { "lat": 40.7997195, "lon": -73.9249405 }, + { "lat": 40.7997408, "lon": -73.9248708 }, + { "lat": 40.7998227, "lon": -73.9247659 }, + { "lat": 40.7998882, "lon": -73.9246739 }, + { "lat": 40.7999299, "lon": -73.9245958 }, + { "lat": 40.7999681, "lon": -73.9244958 }, + { "lat": 40.7999932, "lon": -73.9244013 }, + { "lat": 40.8000159, "lon": -73.9242912 }, + { "lat": 40.8000289, "lon": -73.9241787 }, + { "lat": 40.8000303, "lon": -73.9240647 }, + { "lat": 40.8000236, "lon": -73.9239707 }, + { "lat": 40.8000213, "lon": -73.9239374 }, + { "lat": 40.8000050, "lon": -73.9237836 }, + { "lat": 40.7999827, "lon": -73.9236490 } + ], + "tags": { + "destination": "Manhattan", + "highway": "unclassified", + "name": "Bronx Shore Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 25464554, + "bounds": { + "minlat": 40.7930232, + "minlon": -73.9221847, + "maxlat": 40.7955829, + "maxlon": -73.9195887 + }, + "nodes": [ + 3843180744, + 277482098, + 9153856220, + 9153856219, + 13327578020, + 3990449961, + 277482100, + 9153856221, + 13327625602, + 7734748098, + 9153856222, + 277482101, + 9153856316, + 11939017640, + 11939017652, + 277482339 + ], + "geometry": [ + { "lat": 40.7930232, "lon": -73.9221847 }, + { "lat": 40.7930755, "lon": -73.9221112 }, + { "lat": 40.7931365, "lon": -73.9220264 }, + { "lat": 40.7932267, "lon": -73.9219311 }, + { "lat": 40.7936450, "lon": -73.9215303 }, + { "lat": 40.7937489, "lon": -73.9214307 }, + { "lat": 40.7943861, "lon": -73.9208724 }, + { "lat": 40.7945215, "lon": -73.9207421 }, + { "lat": 40.7946347, "lon": -73.9206269 }, + { "lat": 40.7946607, "lon": -73.9206004 }, + { "lat": 40.7948224, "lon": -73.9204399 }, + { "lat": 40.7951440, "lon": -73.9200946 }, + { "lat": 40.7953772, "lon": -73.9198197 }, + { "lat": 40.7954443, "lon": -73.9197423 }, + { "lat": 40.7955348, "lon": -73.9196416 }, + { "lat": 40.7955829, "lon": -73.9195887 } + ], + "tags": { + "bicycle": "yes", + "highway": "tertiary", + "name": "Central Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 25464577, + "bounds": { + "minlat": 40.7925576, + "minlon": -73.9235694, + "maxlat": 40.7931998, + "maxlon": -73.9230503 + }, + "nodes": [ + 277482094, + 9156860584, + 9156860582, + 9156860583, + 9156860581, + 9153832711, + 277482205 + ], + "geometry": [ + { "lat": 40.7931998, "lon": -73.9230503 }, + { "lat": 40.7931260, "lon": -73.9231031 }, + { "lat": 40.7930700, "lon": -73.9231536 }, + { "lat": 40.7930116, "lon": -73.9232051 }, + { "lat": 40.7929245, "lon": -73.9232733 }, + { "lat": 40.7926951, "lon": -73.9234796 }, + { "lat": 40.7925576, "lon": -73.9235694 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "lcn": "yes", + "name": "Central Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 25464583, + "bounds": { + "minlat": 40.7961544, + "minlon": -73.9193700, + "maxlat": 40.7968325, + "maxlon": -73.9190385 + }, + "nodes": [ + 277482067, + 13253471333, + 3039386420, + 3039386637, + 13253471332, + 277482246, + 3039386636, + 3039386635, + 9153856236, + 277482245, + 9153856235, + 13253471331, + 5906371179 + ], + "geometry": [ + { "lat": 40.7968325, "lon": -73.9190442 }, + { "lat": 40.7967714, "lon": -73.9190385 }, + { "lat": 40.7967195, "lon": -73.9190403 }, + { "lat": 40.7966599, "lon": -73.9190494 }, + { "lat": 40.7966000, "lon": -73.9190631 }, + { "lat": 40.7965373, "lon": -73.9190812 }, + { "lat": 40.7964716, "lon": -73.9191092 }, + { "lat": 40.7964094, "lon": -73.9191405 }, + { "lat": 40.7963441, "lon": -73.9191798 }, + { "lat": 40.7962900, "lon": -73.9192201 }, + { "lat": 40.7962419, "lon": -73.9192646 }, + { "lat": 40.7962000, "lon": -73.9193099 }, + { "lat": 40.7961544, "lon": -73.9193700 } + ], + "tags": { + "highway": "tertiary", + "name": "Central Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 25491389, + "bounds": { + "minlat": 40.7592752, + "minlon": -73.9367867, + "maxlat": 40.7598888, + "maxlon": -73.9354836 + }, + "nodes": [ + 42825868, + 3569402160, + 6452683704, + 42935595, + 6452683706, + 3569402130 + ], + "geometry": [ + { "lat": 40.7598888, "lon": -73.9367867 }, + { "lat": 40.7598364, "lon": -73.9366753 }, + { "lat": 40.7595036, "lon": -73.9359659 }, + { "lat": 40.7594657, "lon": -73.9358819 }, + { "lat": 40.7594364, "lon": -73.9358138 }, + { "lat": 40.7592752, "lon": -73.9354836 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "36th Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 25562074, + "bounds": { + "minlat": 40.7092334, + "minlon": -74.0012106, + "maxlat": 40.7100562, + "maxlon": -74.0002125 + }, + "nodes": [ + 3884569924, + 3898690199, + 587988036, + 4158709413, + 588455738 + ], + "geometry": [ + { "lat": 40.7100562, "lon": -74.0012106 }, + { "lat": 40.7099770, "lon": -74.0011006 }, + { "lat": 40.7096925, "lon": -74.0007590 }, + { "lat": 40.7092911, "lon": -74.0002737 }, + { "lat": 40.7092334, "lon": -74.0002125 } + ], + "tags": { + "destination": "FDR Drive South", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Robert F. Wagner Sr. Place", + "name:etymology:wikidata": "Q213721", + "name:ko": "로버트 F. 와그너 시니어 플레이스", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "no", + "turn:lanes": "through;slight_right" + } +}, +{ + "type": "way", + "id": 25564005, + "bounds": { + "minlat": 40.6999800, + "minlon": -73.9883377, + "maxlat": 40.7000055, + "maxlon": -73.9877858 + }, + "nodes": [ + 278633201, + 10001058427, + 11707467847, + 11707467846, + 13067984352, + 598050852 + ], + "geometry": [ + { "lat": 40.6999800, "lon": -73.9883377 }, + { "lat": 40.6999940, "lon": -73.9883202 }, + { "lat": 40.7000023, "lon": -73.9882941 }, + { "lat": 40.7000055, "lon": -73.9882612 }, + { "lat": 40.6999933, "lon": -73.9878582 }, + { "lat": 40.6999911, "lon": -73.9877858 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Sands Street", + "name:etymology:wikidata": "Q1708602", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Sands", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201" + } +}, +{ + "type": "way", + "id": 25564048, + "bounds": { + "minlat": 40.7001014, + "minlon": -73.9868886, + "maxlat": 40.7002043, + "maxlon": -73.9865221 + }, + "nodes": [ + 2357946612, + 11709378741, + 11709378742, + 3625977893, + 370870741 + ], + "geometry": [ + { "lat": 40.7002043, "lon": -73.9865221 }, + { "lat": 40.7001314, "lon": -73.9867110 }, + { "lat": 40.7001179, "lon": -73.9867582 }, + { "lat": 40.7001070, "lon": -73.9868212 }, + { "lat": 40.7001014, "lon": -73.9868886 } + ], + "tags": { + "covered": "yes", + "destination": "Brooklyn Bridge;Pearl Street", + "foot": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Sands Street", + "name:etymology:wikidata": "Q1708602", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 25564482, + "bounds": { + "minlat": 40.7116747, + "minlon": -74.0047759, + "maxlat": 40.7117274, + "maxlon": -74.0041198 + }, + "nodes": [ + 6793645469, + 4143875753, + 278642127, + 1272562920, + 278642128, + 1272562696, + 4143875726, + 4143875765, + 278642129, + 983501181 + ], + "geometry": [ + { "lat": 40.7117274, "lon": -74.0047759 }, + { "lat": 40.7117020, "lon": -74.0046519 }, + { "lat": 40.7116883, "lon": -74.0045896 }, + { "lat": 40.7116809, "lon": -74.0045282 }, + { "lat": 40.7116763, "lon": -74.0044450 }, + { "lat": 40.7116747, "lon": -74.0044134 }, + { "lat": 40.7116755, "lon": -74.0043440 }, + { "lat": 40.7116795, "lon": -74.0042640 }, + { "lat": 40.7116949, "lon": -74.0041987 }, + { "lat": 40.7117173, "lon": -74.0041198 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "emergency": "designated", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 25564571, + "bounds": { + "minlat": 40.7104266, + "minlon": -74.0024375, + "maxlat": 40.7115917, + "maxlon": -74.0014499 + }, + "nodes": [ + 278639868, + 11503375158, + 5119807680, + 11396764763, + 11503375156, + 11503375157, + 11503375153, + 4158760610, + 4158760608, + 4158760594, + 278642951, + 10564522615, + 497412701 + ], + "geometry": [ + { "lat": 40.7115917, "lon": -74.0024375 }, + { "lat": 40.7115610, "lon": -74.0024240 }, + { "lat": 40.7115225, "lon": -74.0024038 }, + { "lat": 40.7114640, "lon": -74.0023691 }, + { "lat": 40.7111413, "lon": -74.0021303 }, + { "lat": 40.7109987, "lon": -74.0020160 }, + { "lat": 40.7108581, "lon": -74.0018917 }, + { "lat": 40.7107570, "lon": -74.0018034 }, + { "lat": 40.7106763, "lon": -74.0017254 }, + { "lat": 40.7106148, "lon": -74.0016627 }, + { "lat": 40.7105508, "lon": -74.0015904 }, + { "lat": 40.7105021, "lon": -74.0015369 }, + { "lat": 40.7104266, "lon": -74.0014499 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Avenue of the Finest", + "name:etymology:wikidata": "Q328473", + "name:ko": "애비뉴 오브 더 파이네스트", + "parking:both": "lane", + "parking:both:orientation": "perpendicular", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25564580, + "bounds": { + "minlat": 40.7109496, + "minlon": -74.0036162, + "maxlat": 40.7115917, + "maxlon": -74.0024375 + }, + "nodes": [ + 278639868, + 9369042204, + 11396764765, + 11396764764, + 9369042202, + 8262309338, + 9369042068, + 9369042067, + 7477074112, + 9369042069, + 9369042085, + 9369042091, + 9369042086, + 9369042090, + 497412702, + 9369042089, + 9369042070, + 13516827828, + 42448469 + ], + "geometry": [ + { "lat": 40.7115917, "lon": -74.0024375 }, + { "lat": 40.7115729, "lon": -74.0025824 }, + { "lat": 40.7115666, "lon": -74.0026180 }, + { "lat": 40.7115605, "lon": -74.0026526 }, + { "lat": 40.7115480, "lon": -74.0027229 }, + { "lat": 40.7115250, "lon": -74.0028177 }, + { "lat": 40.7114912, "lon": -74.0029214 }, + { "lat": 40.7114601, "lon": -74.0030024 }, + { "lat": 40.7114057, "lon": -74.0031067 }, + { "lat": 40.7113575, "lon": -74.0031839 }, + { "lat": 40.7111577, "lon": -74.0034365 }, + { "lat": 40.7111391, "lon": -74.0034738 }, + { "lat": 40.7111272, "lon": -74.0035076 }, + { "lat": 40.7111165, "lon": -74.0035335 }, + { "lat": 40.7111025, "lon": -74.0035507 }, + { "lat": 40.7110689, "lon": -74.0035700 }, + { "lat": 40.7110400, "lon": -74.0035816 }, + { "lat": 40.7109985, "lon": -74.0035975 }, + { "lat": 40.7109496, "lon": -74.0036162 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Rose Street", + "name:ko": "로즈 스트리트", + "old_name": "Rose Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25564592, + "bounds": { + "minlat": 40.7123349, + "minlon": -74.0029790, + "maxlat": 40.7126327, + "maxlon": -74.0024501 + }, + "nodes": [ + 1251908574, + 4158789489, + 4158789496, + 4158789500, + 4158789506, + 1773055862 + ], + "geometry": [ + { "lat": 40.7123349, "lon": -74.0029790 }, + { "lat": 40.7124999, "lon": -74.0027065 }, + { "lat": 40.7125342, "lon": -74.0026497 }, + { "lat": 40.7125699, "lon": -74.0025836 }, + { "lat": 40.7126028, "lon": -74.0025200 }, + { "lat": 40.7126327, "lon": -74.0024501 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "cycleway:left": "no", + "cycleway:right": "use_sidepath", + "cycleway:right:oneway": "no", + "emergency": "designated", + "foot": "no", + "highway": "residential", + "lanes": "1", + "layer": "-1", + "maxspeed": "10 mph", + "motor_vehicle": "private", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "surface": "asphalt", + "tunnel": "yes", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 25612164, + "bounds": { + "minlat": 40.7375487, + "minlon": -73.9345846, + "maxlat": 40.7396908, + "maxlon": -73.9299342 + }, + "nodes": [ + 42832531, + 9179114987, + 42832527, + 7298611004, + 42832526, + 42832525, + 42832523, + 42832522, + 42832518, + 9981925193, + 42820844, + 9981925194, + 10118310671, + 9981925197, + 42832512 + ], + "geometry": [ + { "lat": 40.7375487, "lon": -73.9299342 }, + { "lat": 40.7376003, "lon": -73.9300458 }, + { "lat": 40.7376919, "lon": -73.9302441 }, + { "lat": 40.7378092, "lon": -73.9304980 }, + { "lat": 40.7378943, "lon": -73.9306821 }, + { "lat": 40.7380861, "lon": -73.9310973 }, + { "lat": 40.7383326, "lon": -73.9316307 }, + { "lat": 40.7384910, "lon": -73.9319718 }, + { "lat": 40.7388903, "lon": -73.9328412 }, + { "lat": 40.7392615, "lon": -73.9336406 }, + { "lat": 40.7392959, "lon": -73.9337105 }, + { "lat": 40.7393281, "lon": -73.9337835 }, + { "lat": 40.7393740, "lon": -73.9338847 }, + { "lat": 40.7396296, "lon": -73.9344536 }, + { "lat": 40.7396908, "lon": -73.9345846 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hunters Point Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25612167, + "bounds": { + "minlat": 40.7366110, + "minlon": -73.9299342, + "maxlat": 40.7375487, + "maxlon": -73.9277687 + }, + "nodes": [ + 42901459, + 9179114989, + 42832534, + 5482230620, + 9179114988, + 42832531 + ], + "geometry": [ + { "lat": 40.7366110, "lon": -73.9277687 }, + { "lat": 40.7367355, "lon": -73.9281637 }, + { "lat": 40.7368861, "lon": -73.9284976 }, + { "lat": 40.7373152, "lon": -73.9294384 }, + { "lat": 40.7374996, "lon": -73.9298285 }, + { "lat": 40.7375487, "lon": -73.9299342 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hunters Point Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25612209, + "bounds": { + "minlat": 40.7340169, + "minlon": -73.9391240, + "maxlat": 40.7343656, + "maxlon": -73.9380656 + }, + "nodes": [ + 1056072092, + 9192032652, + 1056080910, + 9982697980, + 9982697981, + 279157230 + ], + "geometry": [ + { "lat": 40.7343656, "lon": -73.9380656 }, + { "lat": 40.7343465, "lon": -73.9382570 }, + { "lat": 40.7340819, "lon": -73.9389988 }, + { "lat": 40.7340620, "lon": -73.9390485 }, + { "lat": 40.7340424, "lon": -73.9390863 }, + { "lat": 40.7340169, "lon": -73.9391240 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 25649733, + "bounds": { + "minlat": 40.7704875, + "minlon": -73.9176422, + "maxlat": 40.7706860, + "maxlon": -73.9174110 + }, + "nodes": [ + 279604055, + 597443930 + ], + "geometry": [ + { "lat": 40.7706860, "lon": -73.9174110 }, + { "lat": 40.7704875, "lon": -73.9176422 } + ], + "tags": { + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "level": "0", + "maxspeed": "25 mph", + "name": "31st Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 25649770, + "bounds": { + "minlat": 40.7703207, + "minlon": -73.9177172, + "maxlat": 40.7704254, + "maxlon": -73.9175516 + }, + "nodes": [ + 279603573, + 13399317574, + 5403881050 + ], + "geometry": [ + { "lat": 40.7704254, "lon": -73.9177172 }, + { "lat": 40.7703373, "lon": -73.9175778 }, + { "lat": 40.7703207, "lon": -73.9175516 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Hoyt Avenue South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 26604252, + "bounds": { + "minlat": 40.8360438, + "minlon": -74.0204294, + "maxlat": 40.8381823, + "maxlon": -74.0194932 + }, + "nodes": [ + 103206050, + 103206047, + 10936641408, + 536758879 + ], + "geometry": [ + { "lat": 40.8381823, "lon": -74.0194932 }, + { "lat": 40.8378265, "lon": -74.0196287 }, + { "lat": 40.8367491, "lon": -74.0201032 }, + { "lat": 40.8360438, "lon": -74.0204294 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095W", + "alt_name": "New Jersey Turnpike Western Spur ramp", + "bicycle": "no", + "destination": "Trenton", + "destination:ref": "I 95 South;NJTP South", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Western Spur", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "I-95", + "tiger:name_base_1": "New Jersey", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27208599, + "bounds": { + "minlat": 40.8647994, + "minlon": -74.0175816, + "maxlat": 40.8664427, + "maxlon": -74.0059290 + }, + "nodes": [ + 298286988, + 298289222, + 298289223, + 10938860395, + 298289224, + 298289287, + 10938860361, + 10938884007, + 10938860401, + 298289288, + 10938860353, + 10938860343, + 10938860392, + 298289289, + 10938860362, + 10938860379, + 298289290, + 298289291, + 10938860399, + 10938860398, + 10938860339, + 298289230, + 10938860369, + 298289231, + 10938860381, + 10938860385, + 10938860356, + 298289293, + 298289294, + 10938860354, + 298289295, + 10938860376, + 10938860364, + 298289296, + 10938884009, + 10938860383, + 298289297, + 10938884012, + 298289298, + 10938884010, + 298289299, + 10938860380, + 10938860372, + 298289300, + 10938860367, + 298607356, + 10938860350, + 10938860348, + 298607357, + 10938860384, + 298607358, + 10938860349, + 10938860374, + 13751654228, + 298607359 + ], + "geometry": [ + { "lat": 40.8653668, "lon": -74.0175816 }, + { "lat": 40.8651248, "lon": -74.0159219 }, + { "lat": 40.8650669, "lon": -74.0155171 }, + { "lat": 40.8649798, "lon": -74.0149185 }, + { "lat": 40.8649254, "lon": -74.0145110 }, + { "lat": 40.8649091, "lon": -74.0143763 }, + { "lat": 40.8648936, "lon": -74.0142479 }, + { "lat": 40.8648780, "lon": -74.0141145 }, + { "lat": 40.8648674, "lon": -74.0140102 }, + { "lat": 40.8648575, "lon": -74.0139154 }, + { "lat": 40.8648444, "lon": -74.0137690 }, + { "lat": 40.8648338, "lon": -74.0136247 }, + { "lat": 40.8648237, "lon": -74.0134801 }, + { "lat": 40.8648162, "lon": -74.0133321 }, + { "lat": 40.8648092, "lon": -74.0131843 }, + { "lat": 40.8648040, "lon": -74.0130386 }, + { "lat": 40.8647999, "lon": -74.0128855 }, + { "lat": 40.8647994, "lon": -74.0124513 }, + { "lat": 40.8648014, "lon": -74.0122994 }, + { "lat": 40.8648056, "lon": -74.0121536 }, + { "lat": 40.8648106, "lon": -74.0120054 }, + { "lat": 40.8648176, "lon": -74.0118553 }, + { "lat": 40.8648277, "lon": -74.0116597 }, + { "lat": 40.8648403, "lon": -74.0114888 }, + { "lat": 40.8648552, "lon": -74.0113249 }, + { "lat": 40.8648715, "lon": -74.0111518 }, + { "lat": 40.8648906, "lon": -74.0109703 }, + { "lat": 40.8649160, "lon": -74.0107662 }, + { "lat": 40.8649373, "lon": -74.0106068 }, + { "lat": 40.8649650, "lon": -74.0104256 }, + { "lat": 40.8649938, "lon": -74.0102508 }, + { "lat": 40.8650238, "lon": -74.0100744 }, + { "lat": 40.8650570, "lon": -74.0099000 }, + { "lat": 40.8650928, "lon": -74.0097254 }, + { "lat": 40.8651307, "lon": -74.0095491 }, + { "lat": 40.8651695, "lon": -74.0093756 }, + { "lat": 40.8652112, "lon": -74.0092020 }, + { "lat": 40.8652557, "lon": -74.0090288 }, + { "lat": 40.8653016, "lon": -74.0088595 }, + { "lat": 40.8653500, "lon": -74.0086891 }, + { "lat": 40.8654000, "lon": -74.0085201 }, + { "lat": 40.8654515, "lon": -74.0083509 }, + { "lat": 40.8655056, "lon": -74.0081829 }, + { "lat": 40.8655630, "lon": -74.0080156 }, + { "lat": 40.8656217, "lon": -74.0078542 }, + { "lat": 40.8656839, "lon": -74.0076927 }, + { "lat": 40.8657480, "lon": -74.0075309 }, + { "lat": 40.8658123, "lon": -74.0073723 }, + { "lat": 40.8658797, "lon": -74.0072133 }, + { "lat": 40.8659488, "lon": -74.0070539 }, + { "lat": 40.8660171, "lon": -74.0069020 }, + { "lat": 40.8660904, "lon": -74.0067466 }, + { "lat": 40.8661658, "lon": -74.0065948 }, + { "lat": 40.8662672, "lon": -74.0063984 }, + { "lat": 40.8664427, "lon": -74.0059290 } + ], + "tags": { + "destination": "George Washington Bridge;New York City", + "destination:ref": "I 95 North", + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "ref": "I 80", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27208600, + "bounds": { + "minlat": 40.8654240, + "minlon": -74.0182172, + "maxlat": 40.8655508, + "maxlon": -74.0173184 + }, + "nodes": [ + 298286161, + 11439046690 + ], + "geometry": [ + { "lat": 40.8654240, "lon": -74.0173184 }, + { "lat": 40.8655508, "lon": -74.0182172 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000080", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 80", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "turn:lanes": "|||merge_to_left" + } +}, +{ + "type": "way", + "id": 27208740, + "bounds": { + "minlat": 40.8415569, + "minlon": -74.0028452, + "maxlat": 40.8435308, + "maxlon": -73.9980285 + }, + "nodes": [ + 10943435096, + 103238596, + 10943435095, + 103238597, + 10943455726, + 103238598, + 10943455710, + 10943455708, + 103238599, + 10943455713, + 8265319321, + 103238604, + 10943455709, + 103238607, + 10943455770, + 10943435067, + 103238608, + 103238609, + 299181104, + 10943455731, + 299181268, + 299181135, + 10943455712, + 10943455720, + 299181292, + 299181137, + 8265319317, + 103129335, + 10943455719, + 103202995, + 10943435061 + ], + "geometry": [ + { "lat": 40.8415569, "lon": -73.9980285 }, + { "lat": 40.8415701, "lon": -73.9981739 }, + { "lat": 40.8415866, "lon": -73.9983143 }, + { "lat": 40.8416070, "lon": -73.9984515 }, + { "lat": 40.8416317, "lon": -73.9985920 }, + { "lat": 40.8416592, "lon": -73.9987284 }, + { "lat": 40.8416921, "lon": -73.9988678 }, + { "lat": 40.8417259, "lon": -73.9989976 }, + { "lat": 40.8417655, "lon": -73.9991361 }, + { "lat": 40.8418068, "lon": -73.9992648 }, + { "lat": 40.8418496, "lon": -73.9993851 }, + { "lat": 40.8419019, "lon": -73.9995203 }, + { "lat": 40.8419544, "lon": -73.9996441 }, + { "lat": 40.8420085, "lon": -73.9997643 }, + { "lat": 40.8420679, "lon": -73.9998860 }, + { "lat": 40.8421296, "lon": -74.0000025 }, + { "lat": 40.8421944, "lon": -74.0001156 }, + { "lat": 40.8422630, "lon": -74.0002285 }, + { "lat": 40.8428808, "lon": -74.0012272 }, + { "lat": 40.8430197, "lon": -74.0014510 }, + { "lat": 40.8430838, "lon": -74.0015579 }, + { "lat": 40.8431504, "lon": -74.0016754 }, + { "lat": 40.8432110, "lon": -74.0017933 }, + { "lat": 40.8432697, "lon": -74.0019204 }, + { "lat": 40.8433205, "lon": -74.0020444 }, + { "lat": 40.8433687, "lon": -74.0021747 }, + { "lat": 40.8434115, "lon": -74.0023068 }, + { "lat": 40.8434496, "lon": -74.0024426 }, + { "lat": 40.8434822, "lon": -74.0025804 }, + { "lat": 40.8435103, "lon": -74.0027205 }, + { "lat": 40.8435308, "lon": -74.0028452 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "cutting": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 27210998, + "bounds": { + "minlat": 40.8669533, + "minlon": -73.9801611, + "maxlat": 40.8723304, + "maxlon": -73.9753735 + }, + "nodes": [ + 12670658590, + 298771232, + 298769732, + 7926187979, + 298768834, + 298771234, + 7926202596, + 298771302, + 298771236, + 10940262035, + 298769743, + 10940262005, + 298768839, + 298771238, + 298768841, + 10940262036, + 298768842, + 10940262044, + 298768843, + 298768844, + 298771303, + 10940262025, + 298768846, + 10940262050, + 298768847 + ], + "geometry": [ + { "lat": 40.8669533, "lon": -73.9753735 }, + { "lat": 40.8671275, "lon": -73.9754844 }, + { "lat": 40.8673677, "lon": -73.9756421 }, + { "lat": 40.8676086, "lon": -73.9758027 }, + { "lat": 40.8678575, "lon": -73.9759759 }, + { "lat": 40.8681054, "lon": -73.9761515 }, + { "lat": 40.8683525, "lon": -73.9763269 }, + { "lat": 40.8685774, "lon": -73.9764951 }, + { "lat": 40.8688128, "lon": -73.9766781 }, + { "lat": 40.8690500, "lon": -73.9768684 }, + { "lat": 40.8692818, "lon": -73.9770590 }, + { "lat": 40.8695126, "lon": -73.9772545 }, + { "lat": 40.8697388, "lon": -73.9774518 }, + { "lat": 40.8699741, "lon": -73.9776637 }, + { "lat": 40.8701933, "lon": -73.9778660 }, + { "lat": 40.8704066, "lon": -73.9780677 }, + { "lat": 40.8706309, "lon": -73.9782858 }, + { "lat": 40.8708432, "lon": -73.9784977 }, + { "lat": 40.8710761, "lon": -73.9787377 }, + { "lat": 40.8712941, "lon": -73.9789703 }, + { "lat": 40.8714973, "lon": -73.9791918 }, + { "lat": 40.8717044, "lon": -73.9794228 }, + { "lat": 40.8719098, "lon": -73.9796570 }, + { "lat": 40.8721090, "lon": -73.9798918 }, + { "lat": 40.8723304, "lon": -73.9801611 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27211001, + "bounds": { + "minlat": 40.8653453, + "minlon": -73.9802483, + "maxlat": 40.8722095, + "maxlon": -73.9746767 + }, + "nodes": [ + 298771142, + 13759580152, + 7924979962, + 298771144, + 7924979945, + 298771145, + 7924979952, + 7924979942, + 7924979950, + 7924979957, + 298771147, + 7924979964, + 13759580154, + 13759580153, + 298771150, + 13759580155, + 13759580156, + 13759580157, + 7926202603, + 298771152, + 13759580158, + 298771467, + 13759580159, + 7926202586, + 13759580160, + 298771469, + 13759580161, + 13759580162, + 10940285243, + 298771158, + 13759580163, + 13759580164, + 298771159, + 13759580165, + 298771162, + 13759580166, + 10940285229, + 13759580167, + 298771163, + 13759580168, + 10940285237, + 13759580169, + 298771164, + 10940285246, + 298771166, + 10940285244, + 298771470, + 298771472, + 10940285242, + 10940285240, + 298771172 + ], + "geometry": [ + { "lat": 40.8653453, "lon": -73.9746767 }, + { "lat": 40.8654746, "lon": -73.9747418 }, + { "lat": 40.8656087, "lon": -73.9748103 }, + { "lat": 40.8657311, "lon": -73.9748732 }, + { "lat": 40.8658616, "lon": -73.9749403 }, + { "lat": 40.8659871, "lon": -73.9750079 }, + { "lat": 40.8661146, "lon": -73.9750787 }, + { "lat": 40.8662442, "lon": -73.9751512 }, + { "lat": 40.8663722, "lon": -73.9752230 }, + { "lat": 40.8664994, "lon": -73.9752970 }, + { "lat": 40.8666335, "lon": -73.9753774 }, + { "lat": 40.8667624, "lon": -73.9754555 }, + { "lat": 40.8668849, "lon": -73.9755301 }, + { "lat": 40.8670109, "lon": -73.9756081 }, + { "lat": 40.8671380, "lon": -73.9756884 }, + { "lat": 40.8672633, "lon": -73.9757699 }, + { "lat": 40.8673863, "lon": -73.9758498 }, + { "lat": 40.8675114, "lon": -73.9759328 }, + { "lat": 40.8676325, "lon": -73.9760145 }, + { "lat": 40.8678785, "lon": -73.9761837 }, + { "lat": 40.8680009, "lon": -73.9762698 }, + { "lat": 40.8681065, "lon": -73.9763442 }, + { "lat": 40.8682494, "lon": -73.9764482 }, + { "lat": 40.8683737, "lon": -73.9765403 }, + { "lat": 40.8684814, "lon": -73.9766213 }, + { "lat": 40.8686033, "lon": -73.9767146 }, + { "lat": 40.8687215, "lon": -73.9768076 }, + { "lat": 40.8688396, "lon": -73.9769011 }, + { "lat": 40.8689584, "lon": -73.9769953 }, + { "lat": 40.8690784, "lon": -73.9770931 }, + { "lat": 40.8691907, "lon": -73.9771866 }, + { "lat": 40.8693103, "lon": -73.9772865 }, + { "lat": 40.8694271, "lon": -73.9773860 }, + { "lat": 40.8695457, "lon": -73.9774892 }, + { "lat": 40.8696422, "lon": -73.9775731 }, + { "lat": 40.8697696, "lon": -73.9776863 }, + { "lat": 40.8698889, "lon": -73.9777940 }, + { "lat": 40.8699987, "lon": -73.9778941 }, + { "lat": 40.8701144, "lon": -73.9780019 }, + { "lat": 40.8702259, "lon": -73.9781084 }, + { "lat": 40.8703396, "lon": -73.9782156 }, + { "lat": 40.8704482, "lon": -73.9783216 }, + { "lat": 40.8705577, "lon": -73.9784293 }, + { "lat": 40.8708456, "lon": -73.9787221 }, + { "lat": 40.8710779, "lon": -73.9789624 }, + { "lat": 40.8713110, "lon": -73.9792104 }, + { "lat": 40.8715343, "lon": -73.9794575 }, + { "lat": 40.8717599, "lon": -73.9797144 }, + { "lat": 40.8719664, "lon": -73.9799555 }, + { "lat": 40.8721925, "lon": -73.9802279 }, + { "lat": 40.8722095, "lon": -73.9802483 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27211010, + "bounds": { + "minlat": 40.8642832, + "minlon": -74.0104613, + "maxlat": 40.8652474, + "maxlon": -74.0074141 + }, + "nodes": [ + 298289432, + 13753819010, + 13753819011, + 298289442, + 10938740525, + 298289443, + 10938740513, + 298289444, + 10938740511, + 298289445, + 10938740510, + 298289446, + 10938740512, + 298289447, + 10938740528, + 10938740524, + 298607102, + 10938740508, + 9628408959 + ], + "geometry": [ + { "lat": 40.8642832, "lon": -74.0104613 }, + { "lat": 40.8643170, "lon": -74.0102218 }, + { "lat": 40.8643455, "lon": -74.0100463 }, + { "lat": 40.8643810, "lon": -74.0098626 }, + { "lat": 40.8644195, "lon": -74.0096831 }, + { "lat": 40.8644591, "lon": -74.0095181 }, + { "lat": 40.8645058, "lon": -74.0093424 }, + { "lat": 40.8645511, "lon": -74.0091785 }, + { "lat": 40.8646019, "lon": -74.0090112 }, + { "lat": 40.8646531, "lon": -74.0088486 }, + { "lat": 40.8647124, "lon": -74.0086776 }, + { "lat": 40.8647710, "lon": -74.0085119 }, + { "lat": 40.8648303, "lon": -74.0083530 }, + { "lat": 40.8648927, "lon": -74.0081931 }, + { "lat": 40.8649601, "lon": -74.0080315 }, + { "lat": 40.8650286, "lon": -74.0078739 }, + { "lat": 40.8650998, "lon": -74.0077177 }, + { "lat": 40.8651756, "lon": -74.0075608 }, + { "lat": 40.8652474, "lon": -74.0074141 } + ], + "tags": { + "destination": "George Washington Bridge;New York City", + "highway": "motorway", + "lanes": "3", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 80", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27211082, + "bounds": { + "minlat": 40.8674248, + "minlon": -74.0052781, + "maxlat": 40.8683951, + "maxlon": -74.0040068 + }, + "nodes": [ + 298605831, + 298605832, + 10940262033, + 298605773, + 10940262013, + 10940262015, + 3876862740 + ], + "geometry": [ + { "lat": 40.8683951, "lon": -74.0040068 }, + { "lat": 40.8682428, "lon": -74.0041942 }, + { "lat": 40.8680418, "lon": -74.0044497 }, + { "lat": 40.8678468, "lon": -74.0047015 }, + { "lat": 40.8676567, "lon": -74.0049546 }, + { "lat": 40.8674638, "lon": -74.0052217 }, + { "lat": 40.8674248, "lon": -74.0052781 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination": "Newark", + "destination:ref": "I 95 South;NJTP South", + "destination:ref:to": "US 46", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27211236, + "bounds": { + "minlat": 40.8670417, + "minlon": -74.0050592, + "maxlat": 40.8671456, + "maxlon": -74.0049236 + }, + "nodes": [ + 298607243, + 13164347101, + 3876862738 + ], + "geometry": [ + { "lat": 40.8670417, "lon": -74.0050592 }, + { "lat": 40.8670816, "lon": -74.0050079 }, + { "lat": 40.8671456, "lon": -74.0049236 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27211247, + "bounds": { + "minlat": 40.8660521, + "minlon": -74.0061068, + "maxlat": 40.8669309, + "maxlon": -74.0049325 + }, + "nodes": [ + 298607109, + 11436234341, + 13164347107, + 13164347102, + 11436234340, + 10938669097, + 13164347110, + 10938669098, + 10938669096, + 10938669100, + 10938669095, + 13164347108, + 13164347104, + 3876862742 + ], + "geometry": [ + { "lat": 40.8660521, "lon": -74.0061068 }, + { "lat": 40.8661069, "lon": -74.0060218 }, + { "lat": 40.8661592, "lon": -74.0059444 }, + { "lat": 40.8662064, "lon": -74.0058788 }, + { "lat": 40.8662995, "lon": -74.0057488 }, + { "lat": 40.8663922, "lon": -74.0056187 }, + { "lat": 40.8664125, "lon": -74.0055912 }, + { "lat": 40.8664855, "lon": -74.0054922 }, + { "lat": 40.8665844, "lon": -74.0053628 }, + { "lat": 40.8666838, "lon": -74.0052347 }, + { "lat": 40.8667673, "lon": -74.0051299 }, + { "lat": 40.8668136, "lon": -74.0050731 }, + { "lat": 40.8668973, "lon": -74.0049721 }, + { "lat": 40.8669309, "lon": -74.0049325 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "placement": "right_of:2", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27224987, + "bounds": { + "minlat": 40.8703816, + "minlon": -74.0050523, + "maxlat": 40.8705773, + "maxlon": -74.0042357 + }, + "nodes": [ + 298782911, + 10940833255, + 298783558, + 10940833226, + 298783559, + 10940833287, + 298783560, + 775937816, + 13788369137, + 10940833256, + 10940833219, + 775937817 + ], + "geometry": [ + { "lat": 40.8705388, "lon": -74.0042357 }, + { "lat": 40.8704318, "lon": -74.0044165 }, + { "lat": 40.8704067, "lon": -74.0044645 }, + { "lat": 40.8703905, "lon": -74.0045109 }, + { "lat": 40.8703822, "lon": -74.0045608 }, + { "lat": 40.8703816, "lon": -74.0046125 }, + { "lat": 40.8703932, "lon": -74.0046714 }, + { "lat": 40.8704122, "lon": -74.0047280 }, + { "lat": 40.8704242, "lon": -74.0047560 }, + { "lat": 40.8704349, "lon": -74.0047808 }, + { "lat": 40.8704658, "lon": -74.0048437 }, + { "lat": 40.8705773, "lon": -74.0050523 } + ], + "tags": { + "cycleway:right": "no", + "highway": "secondary", + "name": "Glenwood Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 27225328, + "bounds": { + "minlat": 40.8509760, + "minlon": -73.9683598, + "maxlat": 40.8513967, + "maxlon": -73.9679471 + }, + "nodes": [ + 103235788, + 10002778615, + 298810323, + 9587560524 + ], + "geometry": [ + { "lat": 40.8509760, "lon": -73.9683598 }, + { "lat": 40.8510518, "lon": -73.9682647 }, + { "lat": 40.8510993, "lon": -73.9682051 }, + { "lat": 40.8513967, "lon": -73.9679471 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "name": "Park Avenue", + "oneway": "yes", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 27225816, + "bounds": { + "minlat": 40.8533218, + "minlon": -73.9616639, + "maxlat": 40.8535590, + "maxlon": -73.9606732 + }, + "nodes": [ + 298792713, + 12213447905, + 12213447904, + 12213447907, + 12213447906, + 595462047, + 2408237862 + ], + "geometry": [ + { "lat": 40.8533218, "lon": -73.9606732 }, + { "lat": 40.8533446, "lon": -73.9607848 }, + { "lat": 40.8533674, "lon": -73.9608913 }, + { "lat": 40.8533886, "lon": -73.9609845 }, + { "lat": 40.8534106, "lon": -73.9610736 }, + { "lat": 40.8534554, "lon": -73.9612459 }, + { "lat": 40.8535590, "lon": -73.9616639 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 27237061, + "bounds": { + "minlat": 40.8629740, + "minlon": -73.9737206, + "maxlat": 40.8644811, + "maxlon": -73.9736114 + }, + "nodes": [ + 13754077751, + 76464760, + 7925010422, + 76464761, + 7925010439, + 76464762, + 7925010429, + 7925010418, + 7925010436, + 6895517074, + 76464763 + ], + "geometry": [ + { "lat": 40.8629740, "lon": -73.9736396 }, + { "lat": 40.8635184, "lon": -73.9736124 }, + { "lat": 40.8636254, "lon": -73.9736114 }, + { "lat": 40.8637379, "lon": -73.9736147 }, + { "lat": 40.8638485, "lon": -73.9736218 }, + { "lat": 40.8639608, "lon": -73.9736328 }, + { "lat": 40.8640715, "lon": -73.9736479 }, + { "lat": 40.8641845, "lon": -73.9736646 }, + { "lat": 40.8642931, "lon": -73.9736837 }, + { "lat": 40.8644039, "lon": -73.9737046 }, + { "lat": 40.8644811, "lon": -73.9737206 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27251826, + "bounds": { + "minlat": 40.8588755, + "minlon": -73.9765993, + "maxlat": 40.8589686, + "maxlon": -73.9757431 + }, + "nodes": [ + 7925039028, + 7921551377, + 7925039082, + 299098686, + 7925039076, + 7921551382, + 7925039070, + 299098688, + 7925039064, + 299098690, + 7925039058, + 7921551359, + 299098692 + ], + "geometry": [ + { "lat": 40.8589625, "lon": -73.9757431 }, + { "lat": 40.8589666, "lon": -73.9758166 }, + { "lat": 40.8589686, "lon": -73.9758887 }, + { "lat": 40.8589685, "lon": -73.9759562 }, + { "lat": 40.8589661, "lon": -73.9760331 }, + { "lat": 40.8589615, "lon": -73.9761081 }, + { "lat": 40.8589547, "lon": -73.9761836 }, + { "lat": 40.8589468, "lon": -73.9762536 }, + { "lat": 40.8589345, "lon": -73.9763308 }, + { "lat": 40.8589196, "lon": -73.9764061 }, + { "lat": 40.8589044, "lon": -73.9764758 }, + { "lat": 40.8588885, "lon": -73.9765453 }, + { "lat": 40.8588755, "lon": -73.9765993 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27258108, + "bounds": { + "minlat": 40.8451269, + "minlon": -73.9919227, + "maxlat": 40.8463317, + "maxlon": -73.9907074 + }, + "nodes": [ + 298942988, + 299180794 + ], + "geometry": [ + { "lat": 40.8463317, "lon": -73.9907074 }, + { "lat": 40.8451269, "lon": -73.9919227 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "embankment": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 27273883, + "bounds": { + "minlat": 40.8491856, + "minlon": -74.0178980, + "maxlat": 40.8493980, + "maxlon": -74.0173175 + }, + "nodes": [ + 294998182, + 530805574 + ], + "geometry": [ + { "lat": 40.8491856, "lon": -74.0173175 }, + { "lat": 40.8493980, "lon": -74.0178980 } + ], + "tags": { + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "Emerson Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Emerson", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 27273885, + "bounds": { + "minlat": 40.8490674, + "minlon": -74.0190428, + "maxlat": 40.8493080, + "maxlon": -74.0178975 + }, + "nodes": [ + 766751391, + 10936283622, + 10936283649, + 10936283640, + 10936283652, + 10936283625, + 611476520, + 10936283645, + 299380617, + 10936283637, + 299380616, + 10936283617, + 299383659, + 10936283657, + 299380614, + 10936283627, + 10936283636, + 10936283623, + 299380721 + ], + "geometry": [ + { "lat": 40.8490674, "lon": -74.0190428 }, + { "lat": 40.8490899, "lon": -74.0189972 }, + { "lat": 40.8491125, "lon": -74.0189484 }, + { "lat": 40.8491326, "lon": -74.0189026 }, + { "lat": 40.8491520, "lon": -74.0188553 }, + { "lat": 40.8491723, "lon": -74.0188055 }, + { "lat": 40.8491912, "lon": -74.0187531 }, + { "lat": 40.8492087, "lon": -74.0187009 }, + { "lat": 40.8492248, "lon": -74.0186476 }, + { "lat": 40.8492410, "lon": -74.0185871 }, + { "lat": 40.8492578, "lon": -74.0185164 }, + { "lat": 40.8492730, "lon": -74.0184439 }, + { "lat": 40.8492862, "lon": -74.0183696 }, + { "lat": 40.8492958, "lon": -74.0182953 }, + { "lat": 40.8493040, "lon": -74.0182198 }, + { "lat": 40.8493080, "lon": -74.0181318 }, + { "lat": 40.8493078, "lon": -74.0180468 }, + { "lat": 40.8493029, "lon": -74.0179671 }, + { "lat": 40.8492959, "lon": -74.0178975 } + ], + "tags": { + "highway": "secondary", + "name": "East Winant Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 27274164, + "bounds": { + "minlat": 40.8394050, + "minlon": -73.9891000, + "maxlat": 40.8428063, + "maxlon": -73.9857128 + }, + "nodes": [ + 299385626, + 103290264, + 103290265, + 11243809422, + 11243809428, + 103290267, + 5978949635, + 103290269 + ], + "geometry": [ + { "lat": 40.8428063, "lon": -73.9857128 }, + { "lat": 40.8418872, "lon": -73.9866171 }, + { "lat": 40.8407757, "lon": -73.9877551 }, + { "lat": 40.8403396, "lon": -73.9881706 }, + { "lat": 40.8401083, "lon": -73.9884010 }, + { "lat": 40.8400360, "lon": -73.9884730 }, + { "lat": 40.8396945, "lon": -73.9888123 }, + { "lat": 40.8394050, "lon": -73.9891000 } + ], + "tags": { + "highway": "residential", + "name": "13th Street", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "13th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 27274206, + "bounds": { + "minlat": 40.8683463, + "minlon": -73.9760147, + "maxlat": 40.8686671, + "maxlon": -73.9754673 + }, + "nodes": [ + 103292643, + 103205281, + 12021450529, + 12021450530, + 103292644, + 103292646, + 103292648, + 12021450531, + 10940737254, + 12021450538, + 12021450536, + 103292650 + ], + "geometry": [ + { "lat": 40.8683463, "lon": -73.9760147 }, + { "lat": 40.8684035, "lon": -73.9758763 }, + { "lat": 40.8684685, "lon": -73.9757148 }, + { "lat": 40.8684920, "lon": -73.9756627 }, + { "lat": 40.8685104, "lon": -73.9756280 }, + { "lat": 40.8685314, "lon": -73.9755946 }, + { "lat": 40.8685555, "lon": -73.9755624 }, + { "lat": 40.8685784, "lon": -73.9755348 }, + { "lat": 40.8685989, "lon": -73.9755125 }, + { "lat": 40.8686196, "lon": -73.9754946 }, + { "lat": 40.8686410, "lon": -73.9754815 }, + { "lat": 40.8686671, "lon": -73.9754673 } + ], + "tags": { + "highway": "tertiary", + "name": "Edgewood Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewood", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 27274211, + "bounds": { + "minlat": 40.8635832, + "minlon": -73.9748978, + "maxlat": 40.8639059, + "maxlon": -73.9747999 + }, + "nodes": [ + 76464920, + 7373684932, + 76464921 + ], + "geometry": [ + { "lat": 40.8639059, "lon": -73.9747999 }, + { "lat": 40.8638169, "lon": -73.9748269 }, + { "lat": 40.8635832, "lon": -73.9748978 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 27274347, + "bounds": { + "minlat": 40.8578051, + "minlon": -73.9735854, + "maxlat": 40.8580759, + "maxlon": -73.9733902 + }, + "nodes": [ + 7298101929, + 76463592 + ], + "geometry": [ + { "lat": 40.8580759, "lon": -73.9733902 }, + { "lat": 40.8578051, "lon": -73.9735854 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "bridge": "yes", + "highway": "trunk", + "lanes": "3", + "layer": "1", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 27274350, + "bounds": { + "minlat": 40.8584882, + "minlon": -73.9755171, + "maxlat": 40.8589360, + "maxlon": -73.9744837 + }, + "nodes": [ + 299098578, + 7921551369, + 7925039023, + 299098788, + 7925039071, + 7921551364, + 7925039077, + 299098789, + 7925039065, + 299098790, + 7925039059, + 7921551370, + 7925039053, + 299098792, + 7925039048, + 7921551373, + 7925039041, + 76464564 + ], + "geometry": [ + { "lat": 40.8584882, "lon": -73.9744837 }, + { "lat": 40.8585053, "lon": -73.9745060 }, + { "lat": 40.8585391, "lon": -73.9745494 }, + { "lat": 40.8585840, "lon": -73.9746122 }, + { "lat": 40.8586181, "lon": -73.9746629 }, + { "lat": 40.8586517, "lon": -73.9747179 }, + { "lat": 40.8586868, "lon": -73.9747800 }, + { "lat": 40.8587198, "lon": -73.9748427 }, + { "lat": 40.8587507, "lon": -73.9749062 }, + { "lat": 40.8587776, "lon": -73.9749649 }, + { "lat": 40.8588048, "lon": -73.9750305 }, + { "lat": 40.8588296, "lon": -73.9750956 }, + { "lat": 40.8588518, "lon": -73.9751618 }, + { "lat": 40.8588718, "lon": -73.9752285 }, + { "lat": 40.8588914, "lon": -73.9753023 }, + { "lat": 40.8589085, "lon": -73.9753725 }, + { "lat": 40.8589233, "lon": -73.9754462 }, + { "lat": 40.8589360, "lon": -73.9755171 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27274351, + "bounds": { + "minlat": 40.8587115, + "minlon": -73.9771185, + "maxlat": 40.8588755, + "maxlon": -73.9765993 + }, + "nodes": [ + 299098692, + 7921551381, + 299098694, + 7921551376, + 765596262 + ], + "geometry": [ + { "lat": 40.8588755, "lon": -73.9765993 }, + { "lat": 40.8588531, "lon": -73.9766867 }, + { "lat": 40.8588094, "lon": -73.9768320 }, + { "lat": 40.8587608, "lon": -73.9769767 }, + { "lat": 40.8587115, "lon": -73.9771185 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27274353, + "bounds": { + "minlat": 40.8575105, + "minlon": -73.9751279, + "maxlat": 40.8578610, + "maxlon": -73.9744717 + }, + "nodes": [ + 76464595, + 7921607624 + ], + "geometry": [ + { "lat": 40.8578610, "lon": -73.9751279 }, + { "lat": 40.8575105, "lon": -73.9744717 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "destination:lanes": "George Washington Bridge Upper Level|George Washington Bridge Lower Level", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "lit": "yes", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "slight_left|slight_right" + } +}, +{ + "type": "way", + "id": 27274354, + "bounds": { + "minlat": 40.8580583, + "minlon": -73.9770895, + "maxlat": 40.8583965, + "maxlon": -73.9755724 + }, + "nodes": [ + 299121263, + 7921587270, + 76464590, + 7921587276, + 76464591, + 7921587245, + 7921587252, + 76464592, + 7921587258, + 7921587278, + 76464593, + 1352814134 + ], + "geometry": [ + { "lat": 40.8583965, "lon": -73.9770895 }, + { "lat": 40.8583821, "lon": -73.9769451 }, + { "lat": 40.8583638, "lon": -73.9768023 }, + { "lat": 40.8583436, "lon": -73.9766610 }, + { "lat": 40.8583206, "lon": -73.9765181 }, + { "lat": 40.8582923, "lon": -73.9763814 }, + { "lat": 40.8582625, "lon": -73.9762431 }, + { "lat": 40.8582270, "lon": -73.9760990 }, + { "lat": 40.8581893, "lon": -73.9759661 }, + { "lat": 40.8581515, "lon": -73.9758367 }, + { "lat": 40.8581076, "lon": -73.9757026 }, + { "lat": 40.8580583, "lon": -73.9755724 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27274355, + "bounds": { + "minlat": 40.8579690, + "minlon": -73.9758619, + "maxlat": 40.8582556, + "maxlon": -73.9756599 + }, + "nodes": [ + 76464421, + 76464420, + 13762329241, + 7921607639, + 13762329242, + 7921607616, + 13762329243, + 76464419 + ], + "geometry": [ + { "lat": 40.8582556, "lon": -73.9758619 }, + { "lat": 40.8582055, "lon": -73.9758315 }, + { "lat": 40.8581769, "lon": -73.9758136 }, + { "lat": 40.8581234, "lon": -73.9757781 }, + { "lat": 40.8580923, "lon": -73.9757563 }, + { "lat": 40.8580506, "lon": -73.9757250 }, + { "lat": 40.8580075, "lon": -73.9756913 }, + { "lat": 40.8579690, "lon": -73.9756599 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxheight": "14'2\"", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27274356, + "bounds": { + "minlat": 40.8565441, + "minlon": -73.9756599, + "maxlat": 40.8579690, + "maxlon": -73.9729550 + }, + "nodes": [ + 76464419, + 13762329244, + 7921607620, + 13762329245, + 76464418, + 13762329246, + 7921607625, + 13762329247, + 76464417, + 13762329248, + 7921607630, + 13762329249, + 76464416, + 13762329250, + 7921607635, + 13762329251, + 76464415, + 13762329255, + 7921607640, + 13762329254, + 76464414, + 13762329253, + 7921607617, + 13762329252, + 7921607636, + 13762329256, + 7921607631, + 7925020948, + 76464413, + 7925020952, + 7921607621, + 7925020943, + 76464412, + 7925020946, + 76464411, + 7925020950, + 7921607626, + 299178520, + 7922003515, + 13754021062, + 299121905 + ], + "geometry": [ + { "lat": 40.8579690, "lon": -73.9756599 }, + { "lat": 40.8579194, "lon": -73.9756171 }, + { "lat": 40.8578784, "lon": -73.9755791 }, + { "lat": 40.8578327, "lon": -73.9755349 }, + { "lat": 40.8577930, "lon": -73.9754943 }, + { "lat": 40.8577468, "lon": -73.9754462 }, + { "lat": 40.8577074, "lon": -73.9754031 }, + { "lat": 40.8576649, "lon": -73.9753551 }, + { "lat": 40.8576259, "lon": -73.9753090 }, + { "lat": 40.8575846, "lon": -73.9752567 }, + { "lat": 40.8575492, "lon": -73.9752083 }, + { "lat": 40.8575129, "lon": -73.9751563 }, + { "lat": 40.8574787, "lon": -73.9751042 }, + { "lat": 40.8574431, "lon": -73.9750457 }, + { "lat": 40.8574130, "lon": -73.9749899 }, + { "lat": 40.8573822, "lon": -73.9749284 }, + { "lat": 40.8573555, "lon": -73.9748718 }, + { "lat": 40.8573272, "lon": -73.9748071 }, + { "lat": 40.8573036, "lon": -73.9747448 }, + { "lat": 40.8572804, "lon": -73.9746804 }, + { "lat": 40.8572599, "lon": -73.9746161 }, + { "lat": 40.8572415, "lon": -73.9745489 }, + { "lat": 40.8572243, "lon": -73.9744784 }, + { "lat": 40.8572026, "lon": -73.9743837 }, + { "lat": 40.8571810, "lon": -73.9742889 }, + { "lat": 40.8571632, "lon": -73.9742188 }, + { "lat": 40.8571448, "lon": -73.9741545 }, + { "lat": 40.8571254, "lon": -73.9740879 }, + { "lat": 40.8571043, "lon": -73.9740188 }, + { "lat": 40.8570815, "lon": -73.9739509 }, + { "lat": 40.8570575, "lon": -73.9738843 }, + { "lat": 40.8570333, "lon": -73.9738210 }, + { "lat": 40.8570073, "lon": -73.9737540 }, + { "lat": 40.8569820, "lon": -73.9736954 }, + { "lat": 40.8569539, "lon": -73.9736339 }, + { "lat": 40.8569251, "lon": -73.9735763 }, + { "lat": 40.8568954, "lon": -73.9735205 }, + { "lat": 40.8568324, "lon": -73.9734075 }, + { "lat": 40.8567720, "lon": -73.9733065 }, + { "lat": 40.8566962, "lon": -73.9731831 }, + { "lat": 40.8565441, "lon": -73.9729550 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 27518032, + "bounds": { + "minlat": 40.8523456, + "minlon": -73.9393281, + "maxlat": 40.8538958, + "maxlon": -73.9382862 + }, + "nodes": [ + 42438218, + 9563821020, + 10067630278, + 10067630277, + 10067630279, + 1921369842, + 10067630280, + 10067630281, + 1921369843, + 10067630282, + 10067630283, + 1921369844, + 10067630285, + 10067630284, + 1921369841, + 10067630286, + 10067630287, + 10067630288, + 1921369846, + 10067630289, + 1921369845, + 1763612254, + 12607382020, + 302097273 + ], + "geometry": [ + { "lat": 40.8523456, "lon": -73.9387617 }, + { "lat": 40.8523475, "lon": -73.9388368 }, + { "lat": 40.8523622, "lon": -73.9389225 }, + { "lat": 40.8523747, "lon": -73.9390153 }, + { "lat": 40.8523913, "lon": -73.9391211 }, + { "lat": 40.8524122, "lon": -73.9392086 }, + { "lat": 40.8524359, "lon": -73.9392550 }, + { "lat": 40.8524616, "lon": -73.9392860 }, + { "lat": 40.8524889, "lon": -73.9393073 }, + { "lat": 40.8525287, "lon": -73.9393221 }, + { "lat": 40.8525755, "lon": -73.9393281 }, + { "lat": 40.8526163, "lon": -73.9393214 }, + { "lat": 40.8533398, "lon": -73.9390933 }, + { "lat": 40.8535002, "lon": -73.9390320 }, + { "lat": 40.8538339, "lon": -73.9388855 }, + { "lat": 40.8538569, "lon": -73.9388606 }, + { "lat": 40.8538733, "lon": -73.9388364 }, + { "lat": 40.8538858, "lon": -73.9388054 }, + { "lat": 40.8538958, "lon": -73.9387642 }, + { "lat": 40.8538941, "lon": -73.9387179 }, + { "lat": 40.8538695, "lon": -73.9385725 }, + { "lat": 40.8538454, "lon": -73.9384277 }, + { "lat": 40.8538374, "lon": -73.9383824 }, + { "lat": 40.8538202, "lon": -73.9382862 } + ], + "tags": { + "foot": "yes", + "hgv": "no", + "highway": "living_street", + "lanes": "1", + "maxspeed": "5 mph", + "motor_vehicle": "private", + "name": "Hudson View Gardens", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 27518371, + "bounds": { + "minlat": 40.8646389, + "minlon": -73.9312514, + "maxlat": 40.8656302, + "maxlon": -73.9309073 + }, + "nodes": [ + 42434722, + 42434717, + 42434714, + 42434710, + 12544135288, + 42434707, + 7246004956, + 42434704, + 42434702, + 42434701, + 1209670337, + 42434690, + 42434673, + 42434670 + ], + "geometry": [ + { "lat": 40.8646389, "lon": -73.9309931 }, + { "lat": 40.8647443, "lon": -73.9309422 }, + { "lat": 40.8648135, "lon": -73.9309150 }, + { "lat": 40.8649411, "lon": -73.9309100 }, + { "lat": 40.8649820, "lon": -73.9309090 }, + { "lat": 40.8650547, "lon": -73.9309073 }, + { "lat": 40.8651051, "lon": -73.9309095 }, + { "lat": 40.8651470, "lon": -73.9309113 }, + { "lat": 40.8652555, "lon": -73.9309395 }, + { "lat": 40.8653519, "lon": -73.9309797 }, + { "lat": 40.8654411, "lon": -73.9310280 }, + { "lat": 40.8655080, "lon": -73.9310867 }, + { "lat": 40.8655794, "lon": -73.9311725 }, + { "lat": 40.8656302, "lon": -73.9312514 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 27523657, + "bounds": { + "minlat": 40.7706984, + "minlon": -74.0192526, + "maxlat": 40.7771800, + "maxlon": -74.0138247 + }, + "nodes": [ + 103868669, + 4999662177, + 103872504, + 103872505, + 5474425689, + 103863417, + 4999662093, + 103872507, + 103872509, + 103872510, + 103872511, + 103872512, + 103872514, + 103872515, + 103863387, + 103861092, + 103872519, + 4999662107, + 103861105, + 4999662111, + 103858671, + 103872521, + 3656040965, + 103861117, + 4999662118, + 2837081172, + 4999662121, + 103858697, + 4999662125, + 103872525, + 103872527, + 103858718, + 103872528, + 103872529, + 103872530, + 7320650644, + 103858748, + 7320650648, + 103872531, + 103872534, + 103872536, + 103872538, + 7320650651, + 103858344, + 103872540, + 103872542, + 5909784338, + 103858345 + ], + "geometry": [ + { "lat": 40.7714190, "lon": -74.0192526 }, + { "lat": 40.7714038, "lon": -74.0191547 }, + { "lat": 40.7713423, "lon": -74.0188872 }, + { "lat": 40.7712634, "lon": -74.0186874 }, + { "lat": 40.7711656, "lon": -74.0184675 }, + { "lat": 40.7711355, "lon": -74.0184002 }, + { "lat": 40.7711038, "lon": -74.0183277 }, + { "lat": 40.7709847, "lon": -74.0180497 }, + { "lat": 40.7708120, "lon": -74.0176587 }, + { "lat": 40.7707872, "lon": -74.0176068 }, + { "lat": 40.7707467, "lon": -74.0175160 }, + { "lat": 40.7706984, "lon": -74.0173329 }, + { "lat": 40.7706995, "lon": -74.0171394 }, + { "lat": 40.7707517, "lon": -74.0169530 }, + { "lat": 40.7708063, "lon": -74.0168381 }, + { "lat": 40.7711599, "lon": -74.0165229 }, + { "lat": 40.7713830, "lon": -74.0163820 }, + { "lat": 40.7717750, "lon": -74.0162070 }, + { "lat": 40.7718236, "lon": -74.0161833 }, + { "lat": 40.7718818, "lon": -74.0161544 }, + { "lat": 40.7724734, "lon": -74.0158908 }, + { "lat": 40.7728557, "lon": -74.0157252 }, + { "lat": 40.7730831, "lon": -74.0156253 }, + { "lat": 40.7731291, "lon": -74.0156043 }, + { "lat": 40.7731776, "lon": -74.0155820 }, + { "lat": 40.7732115, "lon": -74.0155675 }, + { "lat": 40.7738272, "lon": -74.0152968 }, + { "lat": 40.7738800, "lon": -74.0152685 }, + { "lat": 40.7739366, "lon": -74.0152318 }, + { "lat": 40.7740311, "lon": -74.0151719 }, + { "lat": 40.7742709, "lon": -74.0149767 }, + { "lat": 40.7744651, "lon": -74.0148077 }, + { "lat": 40.7746073, "lon": -74.0146987 }, + { "lat": 40.7747062, "lon": -74.0146183 }, + { "lat": 40.7748825, "lon": -74.0145087 }, + { "lat": 40.7750580, "lon": -74.0144441 }, + { "lat": 40.7751189, "lon": -74.0144217 }, + { "lat": 40.7752013, "lon": -74.0144081 }, + { "lat": 40.7753732, "lon": -74.0143797 }, + { "lat": 40.7757456, "lon": -74.0143295 }, + { "lat": 40.7761146, "lon": -74.0143183 }, + { "lat": 40.7763182, "lon": -74.0142494 }, + { "lat": 40.7764881, "lon": -74.0141361 }, + { "lat": 40.7765265, "lon": -74.0141105 }, + { "lat": 40.7767095, "lon": -74.0139973 }, + { "lat": 40.7769421, "lon": -74.0138952 }, + { "lat": 40.7771374, "lon": -74.0138361 }, + { "lat": 40.7771800, "lon": -74.0138247 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 27523665, + "bounds": { + "minlat": 40.7760942, + "minlon": -74.0194361, + "maxlat": 40.7766471, + "maxlon": -74.0190075 + }, + "nodes": [ + 4205799647, + 7293124742, + 440243651, + 7293124735, + 440243650 + ], + "geometry": [ + { "lat": 40.7760942, "lon": -74.0194361 }, + { "lat": 40.7763656, "lon": -74.0192289 }, + { "lat": 40.7764241, "lon": -74.0191854 }, + { "lat": 40.7764903, "lon": -74.0191330 }, + { "lat": 40.7766471, "lon": -74.0190075 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09101116", + "highway": "secondary", + "lanes": "2", + "name": "Park Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 27523766, + "bounds": { + "minlat": 40.7789204, + "minlon": -74.0167800, + "maxlat": 40.7793342, + "maxlon": -74.0158769 + }, + "nodes": [ + 440243663, + 7387640998, + 8267580274, + 7433920659, + 7387640996, + 103862580 + ], + "geometry": [ + { "lat": 40.7789204, "lon": -74.0158769 }, + { "lat": 40.7789713, "lon": -74.0159879 }, + { "lat": 40.7791127, "lon": -74.0162958 }, + { "lat": 40.7791381, "lon": -74.0163512 }, + { "lat": 40.7792952, "lon": -74.0166933 }, + { "lat": 40.7793342, "lon": -74.0167800 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09101264", + "highway": "tertiary", + "name": "48th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "48th", + "tiger:name_base_1": "County Road 684", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07087", + "tiger:zip_right": "07087" + } +}, +{ + "type": "way", + "id": 27523767, + "bounds": { + "minlat": 40.7784555, + "minlon": -74.0172469, + "maxlat": 40.7787492, + "maxlon": -74.0166152 + }, + "nodes": [ + 440243645, + 7387641001, + 7387641004, + 103860978 + ], + "geometry": [ + { "lat": 40.7784555, "lon": -74.0166152 }, + { "lat": 40.7784950, "lon": -74.0167002 }, + { "lat": 40.7787060, "lon": -74.0171541 }, + { "lat": 40.7787492, "lon": -74.0172469 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09101263", + "highway": "unclassified", + "name": "47th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "47th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07086", + "tiger:zip_right": "07086" + } +}, +{ + "type": "way", + "id": 27523782, + "bounds": { + "minlat": 40.7797440, + "minlon": -74.0118320, + "maxlat": 40.7848532, + "maxlon": -74.0088362 + }, + "nodes": [ + 103860811, + 103876692, + 7468537385, + 103876690, + 103876688, + 2837088189, + 103876684, + 103876682, + 5474265131, + 103865124, + 5474265133, + 103876677, + 103876675, + 103876673, + 103876671, + 103876669, + 2837088501, + 103876666, + 103876664, + 7043560005, + 4205626691 + ], + "geometry": [ + { "lat": 40.7797440, "lon": -74.0118320 }, + { "lat": 40.7798300, "lon": -74.0117980 }, + { "lat": 40.7798532, "lon": -74.0117950 }, + { "lat": 40.7800920, "lon": -74.0117640 }, + { "lat": 40.7805920, "lon": -74.0117490 }, + { "lat": 40.7807436, "lon": -74.0117149 }, + { "lat": 40.7808460, "lon": -74.0116800 }, + { "lat": 40.7810750, "lon": -74.0115380 }, + { "lat": 40.7815230, "lon": -74.0112245 }, + { "lat": 40.7815650, "lon": -74.0111950 }, + { "lat": 40.7816304, "lon": -74.0111696 }, + { "lat": 40.7817250, "lon": -74.0111400 }, + { "lat": 40.7819220, "lon": -74.0111480 }, + { "lat": 40.7822185, "lon": -74.0111635 }, + { "lat": 40.7823746, "lon": -74.0111377 }, + { "lat": 40.7825385, "lon": -74.0110604 }, + { "lat": 40.7826399, "lon": -74.0109831 }, + { "lat": 40.7827726, "lon": -74.0108646 }, + { "lat": 40.7834762, "lon": -74.0101883 }, + { "lat": 40.7841705, "lon": -74.0094933 }, + { "lat": 40.7848532, "lon": -74.0088362 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 27523798, + "bounds": { + "minlat": 40.8096265, + "minlon": -74.0072430, + "maxlat": 40.8102148, + "maxlon": -74.0059449 + }, + "nodes": [ + 103872930, + 7475993611, + 5558419784, + 103872932, + 2813943255, + 103872934 + ], + "geometry": [ + { "lat": 40.8096265, "lon": -74.0072430 }, + { "lat": 40.8098111, "lon": -74.0069418 }, + { "lat": 40.8098267, "lon": -74.0069140 }, + { "lat": 40.8098968, "lon": -74.0067563 }, + { "lat": 40.8101640, "lon": -74.0060711 }, + { "lat": 40.8102148, "lon": -74.0059449 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "oneway": "yes", + "ref": "CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 27523802, + "bounds": { + "minlat": 40.8106774, + "minlon": -74.0049190, + "maxlat": 40.8108318, + "maxlon": -74.0035011 + }, + "nodes": [ + 103872944, + 2813943269, + 2325759614, + 103858394, + 103872942, + 103872940, + 103872938, + 2813943261 + ], + "geometry": [ + { "lat": 40.8106774, "lon": -74.0035011 }, + { "lat": 40.8107468, "lon": -74.0036182 }, + { "lat": 40.8107950, "lon": -74.0037852 }, + { "lat": 40.8108318, "lon": -74.0039725 }, + { "lat": 40.8108266, "lon": -74.0043256 }, + { "lat": 40.8107728, "lon": -74.0046263 }, + { "lat": 40.8107460, "lon": -74.0047282 }, + { "lat": 40.8106856, "lon": -74.0049190 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "highway": "primary", + "lanes": "2", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "name_1": "Kennedy Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 27531457, + "bounds": { + "minlat": 40.8014895, + "minlon": -74.0043396, + "maxlat": 40.8018210, + "maxlon": -74.0034243 + }, + "nodes": [ + 4727867658, + 4727867643, + 103879123, + 103879124, + 103879125, + 4727867637, + 103879127, + 103879003 + ], + "geometry": [ + { "lat": 40.8014895, "lon": -74.0034243 }, + { "lat": 40.8015244, "lon": -74.0034811 }, + { "lat": 40.8016139, "lon": -74.0036268 }, + { "lat": 40.8016601, "lon": -74.0037269 }, + { "lat": 40.8017128, "lon": -74.0038620 }, + { "lat": 40.8017526, "lon": -74.0040043 }, + { "lat": 40.8017906, "lon": -74.0041933 }, + { "lat": 40.8018210, "lon": -74.0043396 } + ], + "tags": { + "highway": "residential", + "name": "Park Drive", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 28038747, + "bounds": { + "minlat": 40.7725455, + "minlon": -74.0149176, + "maxlat": 40.7728771, + "maxlon": -74.0142053 + }, + "nodes": [ + 103884900, + 307870550 + ], + "geometry": [ + { "lat": 40.7728771, "lon": -74.0149176 }, + { "lat": 40.7725455, "lon": -74.0142053 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09111120", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Pershing Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Pershing", + "tiger:name_base_1": "County Road 682", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "wikidata": "Q7170177", + "wikipedia": "en:Pershing Road (Weehawken)" + } +}, +{ + "type": "way", + "id": 28038748, + "bounds": { + "minlat": 40.7723367, + "minlon": -74.0142053, + "maxlat": 40.7725455, + "maxlon": -74.0137361 + }, + "nodes": [ + 307870550, + 7996406019 + ], + "geometry": [ + { "lat": 40.7725455, "lon": -74.0142053 }, + { "lat": 40.7723367, "lon": -74.0137361 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09111120", + "highway": "tertiary", + "lanes": "2", + "name": "Pershing Road", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Pershing", + "tiger:name_base_1": "County Road 682", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "wikidata": "Q7170177", + "wikipedia": "en:Pershing Road (Weehawken)" + } +}, +{ + "type": "way", + "id": 28038749, + "bounds": { + "minlat": 40.7706419, + "minlon": -74.0150421, + "maxlat": 40.7718526, + "maxlon": -74.0143742 + }, + "nodes": [ + 307870554, + 2404083359, + 2404083729, + 2404083111, + 2404083909, + 2404083252, + 2404083043, + 7297022996 + ], + "geometry": [ + { "lat": 40.7718526, "lon": -74.0143742 }, + { "lat": 40.7717197, "lon": -74.0144993 }, + { "lat": 40.7716724, "lon": -74.0145686 }, + { "lat": 40.7716041, "lon": -74.0146327 }, + { "lat": 40.7708534, "lon": -74.0150035 }, + { "lat": 40.7707668, "lon": -74.0150207 }, + { "lat": 40.7706651, "lon": -74.0150339 }, + { "lat": 40.7706419, "lon": -74.0150421 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Regency Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 28038751, + "bounds": { + "minlat": 40.7672925, + "minlon": -74.0167237, + "maxlat": 40.7694348, + "maxlon": -74.0155165 + }, + "nodes": [ + 307870558, + 7297001584, + 307870556, + 2404083061, + 2404083147, + 2404083877, + 307870559, + 2404083174, + 307870560, + 7297001581, + 307870561, + 7297001579, + 307870562, + 307870563, + 5964467362, + 2631530250 + ], + "geometry": [ + { "lat": 40.7694348, "lon": -74.0162075 }, + { "lat": 40.7693901, "lon": -74.0161069 }, + { "lat": 40.7693461, "lon": -74.0160068 }, + { "lat": 40.7693131, "lon": -74.0159500 }, + { "lat": 40.7692760, "lon": -74.0159159 }, + { "lat": 40.7691920, "lon": -74.0158442 }, + { "lat": 40.7690675, "lon": -74.0155562 }, + { "lat": 40.7690245, "lon": -74.0155254 }, + { "lat": 40.7689734, "lon": -74.0155165 }, + { "lat": 40.7689158, "lon": -74.0155452 }, + { "lat": 40.7688713, "lon": -74.0155673 }, + { "lat": 40.7685202, "lon": -74.0158234 }, + { "lat": 40.7684567, "lon": -74.0158697 }, + { "lat": 40.7678721, "lon": -74.0162943 }, + { "lat": 40.7673604, "lon": -74.0166710 }, + { "lat": 40.7672925, "lon": -74.0167237 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Henley Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 28038752, + "bounds": { + "minlat": 40.7680994, + "minlon": -74.0168020, + "maxlat": 40.7686688, + "maxlon": -74.0164101 + }, + "nodes": [ + 307870564, + 3588875423, + 3588875424 + ], + "geometry": [ + { "lat": 40.7680994, "lon": -74.0168020 }, + { "lat": 40.7681636, "lon": -74.0167815 }, + { "lat": 40.7686688, "lon": -74.0164101 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Cambridge Way", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 28038758, + "bounds": { + "minlat": 40.7644996, + "minlon": -74.0190796, + "maxlat": 40.7659586, + "maxlon": -74.0181129 + }, + "nodes": [ + 7642029863, + 10795374675, + 10795374674, + 307870578, + 307870579, + 10795374673, + 307870580, + 3656020248, + 13166863077, + 12320029173, + 12320029175, + 10795374657, + 3656020242, + 10795374665, + 307870581 + ], + "geometry": [ + { "lat": 40.7659586, "lon": -74.0183324 }, + { "lat": 40.7659053, "lon": -74.0182028 }, + { "lat": 40.7658857, "lon": -74.0181642 }, + { "lat": 40.7658670, "lon": -74.0181352 }, + { "lat": 40.7658419, "lon": -74.0181182 }, + { "lat": 40.7658132, "lon": -74.0181129 }, + { "lat": 40.7657854, "lon": -74.0181176 }, + { "lat": 40.7657581, "lon": -74.0181300 }, + { "lat": 40.7653325, "lon": -74.0184384 }, + { "lat": 40.7650873, "lon": -74.0186114 }, + { "lat": 40.7649209, "lon": -74.0187308 }, + { "lat": 40.7645965, "lon": -74.0189636 }, + { "lat": 40.7645582, "lon": -74.0190002 }, + { "lat": 40.7645269, "lon": -74.0190348 }, + { "lat": 40.7644996, "lon": -74.0190796 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "name": "Waterfront Park Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 28038762, + "bounds": { + "minlat": 40.7715924, + "minlon": -74.0143371, + "maxlat": 40.7718364, + "maxlon": -74.0135842 + }, + "nodes": [ + 307870548, + 2837053800, + 10116091109, + 2325759301, + 2325759405, + 7996406020 + ], + "geometry": [ + { "lat": 40.7716256, "lon": -74.0135842 }, + { "lat": 40.7716021, "lon": -74.0136299 }, + { "lat": 40.7715924, "lon": -74.0136941 }, + { "lat": 40.7715959, "lon": -74.0137629 }, + { "lat": 40.7716121, "lon": -74.0138212 }, + { "lat": 40.7718364, "lon": -74.0143371 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "Carlyle Court", + "name_1": "County Road 682", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Pershing", + "tiger:name_base_1": "County Road 682", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 28080781, + "bounds": { + "minlat": 40.8292378, + "minlon": -73.9766245, + "maxlat": 40.8344160, + "maxlon": -73.9724731 + }, + "nodes": [ + 1752676699, + 103190874, + 103190873, + 103190872, + 12068970310, + 103190871, + 12068970311, + 103190870, + 103190866, + 1752676708, + 103190864, + 103115628, + 103190862, + 103190860, + 103190858, + 103190856, + 103190854, + 103190852, + 103190850, + 103190848, + 103190846, + 103190844, + 103190842, + 103190840, + 103190838, + 103190836, + 103190834, + 103115535, + 440208267, + 440208266, + 440208747, + 440208748, + 440208751, + 440208752, + 440208749, + 440208750, + 440208756, + 440208757, + 440208753, + 440208754, + 440208745, + 440208744, + 440208257, + 440208256, + 103190802, + 7494903065, + 103190800, + 103190798, + 103190797, + 103190796, + 103190795, + 7487669789, + 103190794, + 103162142, + 103191037, + 103191036, + 103191035, + 103191034, + 103191033, + 103191032, + 103191030, + 103191028, + 103191026, + 103125345 + ], + "geometry": [ + { "lat": 40.8292378, "lon": -73.9724731 }, + { "lat": 40.8295720, "lon": -73.9725510 }, + { "lat": 40.8299490, "lon": -73.9726270 }, + { "lat": 40.8303947, "lon": -73.9727172 }, + { "lat": 40.8304836, "lon": -73.9727378 }, + { "lat": 40.8305725, "lon": -73.9727671 }, + { "lat": 40.8306697, "lon": -73.9728051 }, + { "lat": 40.8308664, "lon": -73.9728986 }, + { "lat": 40.8313350, "lon": -73.9731247 }, + { "lat": 40.8314037, "lon": -73.9731568 }, + { "lat": 40.8315810, "lon": -73.9732260 }, + { "lat": 40.8317646, "lon": -73.9732804 }, + { "lat": 40.8319230, "lon": -73.9733060 }, + { "lat": 40.8321200, "lon": -73.9733320 }, + { "lat": 40.8322930, "lon": -73.9733410 }, + { "lat": 40.8324660, "lon": -73.9733340 }, + { "lat": 40.8336170, "lon": -73.9731740 }, + { "lat": 40.8337840, "lon": -73.9731270 }, + { "lat": 40.8339200, "lon": -73.9730710 }, + { "lat": 40.8339880, "lon": -73.9730360 }, + { "lat": 40.8340960, "lon": -73.9729680 }, + { "lat": 40.8341640, "lon": -73.9729490 }, + { "lat": 40.8342290, "lon": -73.9729520 }, + { "lat": 40.8342920, "lon": -73.9729730 }, + { "lat": 40.8343510, "lon": -73.9730140 }, + { "lat": 40.8343870, "lon": -73.9730600 }, + { "lat": 40.8344090, "lon": -73.9731160 }, + { "lat": 40.8344160, "lon": -73.9731650 }, + { "lat": 40.8344130, "lon": -73.9732250 }, + { "lat": 40.8343920, "lon": -73.9732890 }, + { "lat": 40.8343640, "lon": -73.9733320 }, + { "lat": 40.8342840, "lon": -73.9733790 }, + { "lat": 40.8342210, "lon": -73.9733940 }, + { "lat": 40.8341670, "lon": -73.9733910 }, + { "lat": 40.8339090, "lon": -73.9733550 }, + { "lat": 40.8337780, "lon": -73.9733510 }, + { "lat": 40.8333520, "lon": -73.9733980 }, + { "lat": 40.8331790, "lon": -73.9734330 }, + { "lat": 40.8330090, "lon": -73.9734850 }, + { "lat": 40.8321980, "lon": -73.9738140 }, + { "lat": 40.8318920, "lon": -73.9739560 }, + { "lat": 40.8317010, "lon": -73.9740600 }, + { "lat": 40.8315150, "lon": -73.9741760 }, + { "lat": 40.8313260, "lon": -73.9743140 }, + { "lat": 40.8312750, "lon": -73.9743510 }, + { "lat": 40.8312039, "lon": -73.9744119 }, + { "lat": 40.8310450, "lon": -73.9745480 }, + { "lat": 40.8308790, "lon": -73.9747090 }, + { "lat": 40.8307450, "lon": -73.9748520 }, + { "lat": 40.8302900, "lon": -73.9753140 }, + { "lat": 40.8301140, "lon": -73.9754720 }, + { "lat": 40.8300032, "lon": -73.9755607 }, + { "lat": 40.8297270, "lon": -73.9757820 }, + { "lat": 40.8296834, "lon": -73.9758788 }, + { "lat": 40.8296530, "lon": -73.9760030 }, + { "lat": 40.8296490, "lon": -73.9761070 }, + { "lat": 40.8296600, "lon": -73.9762090 }, + { "lat": 40.8296860, "lon": -73.9763070 }, + { "lat": 40.8297300, "lon": -73.9764050 }, + { "lat": 40.8297940, "lon": -73.9764940 }, + { "lat": 40.8298530, "lon": -73.9765480 }, + { "lat": 40.8299240, "lon": -73.9765910 }, + { "lat": 40.8300010, "lon": -73.9766160 }, + { "lat": 40.8301754, "lon": -73.9766245 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "State Route 5", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A35; A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 5", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 28080806, + "bounds": { + "minlat": 40.8395910, + "minlon": -73.9858972, + "maxlat": 40.8414953, + "maxlon": -73.9826160 + }, + "nodes": [ + 4205620797, + 103174035, + 103174036, + 103174037, + 103174038, + 7527301269, + 103174039, + 440215413 + ], + "geometry": [ + { "lat": 40.8395910, "lon": -73.9826160 }, + { "lat": 40.8398320, "lon": -73.9830410 }, + { "lat": 40.8402467, "lon": -73.9837479 }, + { "lat": 40.8406668, "lon": -73.9844659 }, + { "lat": 40.8410829, "lon": -73.9851811 }, + { "lat": 40.8413250, "lon": -73.9856054 }, + { "lat": 40.8413883, "lon": -73.9857164 }, + { "lat": 40.8414953, "lon": -73.9858972 } + ], + "tags": { + "Bergen_County_database_ref": "54", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000054", + "highway": "secondary", + "name": "Central Boulevard", + "ref": "CR 54", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 28080812, + "bounds": { + "minlat": 40.8366580, + "minlon": -73.9782870, + "maxlat": 40.8415878, + "maxlon": -73.9744531 + }, + "nodes": [ + 103174015, + 103235752, + 7292367201, + 103235754, + 103235755, + 7937598131, + 103166403, + 103235756, + 103173996, + 13523728840, + 103149538, + 103235761, + 103235762, + 7483150830, + 103230923, + 103230930, + 103235764, + 7483134173, + 103235765, + 5449336806, + 103143799, + 5340687629, + 13523651641, + 103235767, + 7474409159, + 5449351814 + ], + "geometry": [ + { "lat": 40.8366580, "lon": -73.9782870 }, + { "lat": 40.8370593, "lon": -73.9782772 }, + { "lat": 40.8372999, "lon": -73.9782571 }, + { "lat": 40.8374835, "lon": -73.9782417 }, + { "lat": 40.8376989, "lon": -73.9782025 }, + { "lat": 40.8378568, "lon": -73.9781591 }, + { "lat": 40.8379118, "lon": -73.9781440 }, + { "lat": 40.8380617, "lon": -73.9780840 }, + { "lat": 40.8382078, "lon": -73.9780115 }, + { "lat": 40.8382692, "lon": -73.9779629 }, + { "lat": 40.8385420, "lon": -73.9777470 }, + { "lat": 40.8387080, "lon": -73.9776120 }, + { "lat": 40.8387970, "lon": -73.9775310 }, + { "lat": 40.8388318, "lon": -73.9774929 }, + { "lat": 40.8390970, "lon": -73.9772020 }, + { "lat": 40.8393030, "lon": -73.9769750 }, + { "lat": 40.8396310, "lon": -73.9766150 }, + { "lat": 40.8398784, "lon": -73.9763427 }, + { "lat": 40.8401570, "lon": -73.9760360 }, + { "lat": 40.8405813, "lon": -73.9755715 }, + { "lat": 40.8409480, "lon": -73.9751700 }, + { "lat": 40.8410232, "lon": -73.9750877 }, + { "lat": 40.8412413, "lon": -73.9748434 }, + { "lat": 40.8412840, "lon": -73.9747956 }, + { "lat": 40.8414688, "lon": -73.9745873 }, + { "lat": 40.8415878, "lon": -73.9744531 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Palisade Avenue", + "ref": "NJ 67", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 28080822, + "bounds": { + "minlat": 40.8316769, + "minlon": -73.9789077, + "maxlat": 40.8320681, + "maxlon": -73.9787641 + }, + "nodes": [ + 4205772570, + 103235750, + 103191038 + ], + "geometry": [ + { "lat": 40.8320681, "lon": -73.9787641 }, + { "lat": 40.8319048, "lon": -73.9788168 }, + { "lat": 40.8316769, "lon": -73.9789077 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "cycleway:both": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Palisade Avenue", + "ref": "NJ 5", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left||", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 28080863, + "bounds": { + "minlat": 40.8416003, + "minlon": -74.0002599, + "maxlat": 40.8420913, + "maxlon": -73.9995220 + }, + "nodes": [ + 766719920, + 12020316354, + 4205620800, + 103134625 + ], + "geometry": [ + { "lat": 40.8420913, "lon": -74.0002599 }, + { "lat": 40.8418819, "lon": -73.9999945 }, + { "lat": 40.8417407, "lon": -73.9997642 }, + { "lat": 40.8416003, "lon": -73.9995220 } + ], + "tags": { + "highway": "primary", + "lanes": "1", + "name": "East Columbia Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 28080895, + "bounds": { + "minlat": 40.8524200, + "minlon": -73.9946620, + "maxlat": 40.8531209, + "maxlon": -73.9941510 + }, + "nodes": [ + 103137589, + 5976411297, + 5976408280, + 5976408279, + 6891318601 + ], + "geometry": [ + { "lat": 40.8524200, "lon": -73.9946620 }, + { "lat": 40.8526362, "lon": -73.9945044 }, + { "lat": 40.8529177, "lon": -73.9942991 }, + { "lat": 40.8530996, "lon": -73.9941665 }, + { "lat": 40.8531209, "lon": -73.9941510 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 28080936, + "bounds": { + "minlat": 40.8364630, + "minlon": -73.9920330, + "maxlat": 40.8388340, + "maxlon": -73.9915480 + }, + "nodes": [ + 103134602, + 103134604, + 103134606, + 103134608, + 103134609 + ], + "geometry": [ + { "lat": 40.8388340, "lon": -73.9920330 }, + { "lat": 40.8369610, "lon": -73.9917400 }, + { "lat": 40.8368140, "lon": -73.9917010 }, + { "lat": 40.8366340, "lon": -73.9916340 }, + { "lat": 40.8364630, "lon": -73.9915480 } + ], + "tags": { + "highway": "track", + "name": "Grantwood Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grantwood", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 28080948, + "bounds": { + "minlat": 40.8358304, + "minlon": -73.9915480, + "maxlat": 40.8364630, + "maxlon": -73.9909987 + }, + "nodes": [ + 103134609, + 6499542572, + 103134610, + 103134611, + 103134612, + 440215428, + 308364800, + 308365119 + ], + "geometry": [ + { "lat": 40.8364630, "lon": -73.9915480 }, + { "lat": 40.8363924, "lon": -73.9915047 }, + { "lat": 40.8363570, "lon": -73.9914830 }, + { "lat": 40.8361920, "lon": -73.9913640 }, + { "lat": 40.8361190, "lon": -73.9912970 }, + { "lat": 40.8360370, "lon": -73.9912210 }, + { "lat": 40.8359603, "lon": -73.9911704 }, + { "lat": 40.8358304, "lon": -73.9909987 } + ], + "tags": { + "highway": "residential", + "name": "Grantwood Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grantwood", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 28081022, + "bounds": { + "minlat": 40.8632080, + "minlon": -73.9630092, + "maxlat": 40.8652508, + "maxlon": -73.9609977 + }, + "nodes": [ + 65902741, + 7930295795, + 103205097, + 103205098, + 7930268877, + 103205099, + 7396469111, + 5108198962, + 7930295786, + 5108198970, + 103205100, + 7387503109, + 7387503112, + 7387503108, + 7387503105, + 5554920849, + 7930295785, + 103215711 + ], + "geometry": [ + { "lat": 40.8632080, "lon": -73.9630092 }, + { "lat": 40.8632843, "lon": -73.9629539 }, + { "lat": 40.8633845, "lon": -73.9628772 }, + { "lat": 40.8634810, "lon": -73.9627999 }, + { "lat": 40.8635760, "lon": -73.9627183 }, + { "lat": 40.8636664, "lon": -73.9626361 }, + { "lat": 40.8637129, "lon": -73.9625909 }, + { "lat": 40.8637653, "lon": -73.9625391 }, + { "lat": 40.8638258, "lon": -73.9624775 }, + { "lat": 40.8638835, "lon": -73.9624185 }, + { "lat": 40.8642401, "lon": -73.9620375 }, + { "lat": 40.8643896, "lon": -73.9618780 }, + { "lat": 40.8645864, "lon": -73.9616700 }, + { "lat": 40.8646089, "lon": -73.9616464 }, + { "lat": 40.8646607, "lon": -73.9615936 }, + { "lat": 40.8650436, "lon": -73.9612061 }, + { "lat": 40.8651536, "lon": -73.9610946 }, + { "lat": 40.8652508, "lon": -73.9609977 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "4", + "name": "Lemoine Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 28081032, + "bounds": { + "minlat": 40.8363168, + "minlon": -73.9707853, + "maxlat": 40.8366668, + "maxlon": -73.9706871 + }, + "nodes": [ + 4205772574, + 103137164, + 103137165 + ], + "geometry": [ + { "lat": 40.8363168, "lon": -73.9707853 }, + { "lat": 40.8364326, "lon": -73.9707474 }, + { "lat": 40.8366668, "lon": -73.9706871 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 28081058, + "bounds": { + "minlat": 40.8414953, + "minlon": -73.9873344, + "maxlat": 40.8423104, + "maxlon": -73.9858972 + }, + "nodes": [ + 103227489, + 103290264, + 440215413 + ], + "geometry": [ + { "lat": 40.8423104, "lon": -73.9873344 }, + { "lat": 40.8418872, "lon": -73.9866171 }, + { "lat": 40.8414953, "lon": -73.9858972 } + ], + "tags": { + "Bergen_County_database_ref": "54", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000054", + "highway": "secondary", + "name": "East Central Boulevard", + "ref": "CR 54", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 28081059, + "bounds": { + "minlat": 40.8433879, + "minlon": -73.9871351, + "maxlat": 40.8500833, + "maxlon": -73.9848395 + }, + "nodes": [ + 12692293522, + 5975035337, + 5975035330, + 103148035, + 5965026362, + 103148037, + 3581839097, + 103148039, + 103148040, + 5965026268, + 103148042, + 103148046, + 5965026281, + 103148048, + 103148049, + 103148051, + 103148052, + 103148054, + 4695808502, + 103148055, + 4695808498, + 103148056, + 103148059, + 103148061, + 5362373772, + 4695808184, + 103100034 + ], + "geometry": [ + { "lat": 40.8433879, "lon": -73.9871351 }, + { "lat": 40.8435131, "lon": -73.9870568 }, + { "lat": 40.8439793, "lon": -73.9867614 }, + { "lat": 40.8441208, "lon": -73.9866789 }, + { "lat": 40.8446166, "lon": -73.9863568 }, + { "lat": 40.8447768, "lon": -73.9862614 }, + { "lat": 40.8448730, "lon": -73.9862000 }, + { "lat": 40.8450816, "lon": -73.9860797 }, + { "lat": 40.8454094, "lon": -73.9859033 }, + { "lat": 40.8454995, "lon": -73.9858575 }, + { "lat": 40.8457814, "lon": -73.9857228 }, + { "lat": 40.8461203, "lon": -73.9855717 }, + { "lat": 40.8462173, "lon": -73.9855342 }, + { "lat": 40.8465829, "lon": -73.9853942 }, + { "lat": 40.8469520, "lon": -73.9852480 }, + { "lat": 40.8470960, "lon": -73.9852030 }, + { "lat": 40.8475620, "lon": -73.9850840 }, + { "lat": 40.8480310, "lon": -73.9849880 }, + { "lat": 40.8481760, "lon": -73.9849628 }, + { "lat": 40.8482670, "lon": -73.9849470 }, + { "lat": 40.8486256, "lon": -73.9848975 }, + { "lat": 40.8487020, "lon": -73.9848870 }, + { "lat": 40.8491150, "lon": -73.9848577 }, + { "lat": 40.8492741, "lon": -73.9848481 }, + { "lat": 40.8493558, "lon": -73.9848467 }, + { "lat": 40.8497226, "lon": -73.9848395 }, + { "lat": 40.8500833, "lon": -73.9848423 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Bergen Boulevard", + "placement:forward": "left_of:1", + "ref": "NJ 63", + "shoulder": "left", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 28081101, + "bounds": { + "minlat": 40.8504903, + "minlon": -74.0038806, + "maxlat": 40.8519981, + "maxlon": -74.0014106 + }, + "nodes": [ + 103119435, + 8226127112, + 6477912321, + 103119437, + 103119439, + 103119441, + 103246698, + 2707984832, + 2707984833 + ], + "geometry": [ + { "lat": 40.8504903, "lon": -74.0014106 }, + { "lat": 40.8506181, "lon": -74.0016319 }, + { "lat": 40.8508132, "lon": -74.0019699 }, + { "lat": 40.8512440, "lon": -74.0027160 }, + { "lat": 40.8516212, "lon": -74.0033806 }, + { "lat": 40.8516810, "lon": -74.0034730 }, + { "lat": 40.8517453, "lon": -74.0035709 }, + { "lat": 40.8518447, "lon": -74.0037317 }, + { "lat": 40.8519981, "lon": -74.0038806 } + ], + "tags": { + "highway": "residential", + "name": "West Central Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 28081135, + "bounds": { + "minlat": 40.8436894, + "minlon": -74.0047910, + "maxlat": 40.8502167, + "maxlon": -74.0015677 + }, + "nodes": [ + 103296615, + 5976782458, + 103226717, + 103191327, + 5976782451, + 103138713, + 103296620, + 103296622, + 103296624, + 103296626, + 8219522616, + 103147683, + 103149652, + 103296628, + 103296630, + 103296632, + 12016147220, + 12016147219, + 103296635, + 103129337, + 5976782410, + 9915262731, + 5976782396, + 5672006449, + 299182057, + 12016147169, + 299182056 + ], + "geometry": [ + { "lat": 40.8502167, "lon": -74.0015677 }, + { "lat": 40.8497244, "lon": -74.0018660 }, + { "lat": 40.8496631, "lon": -74.0019031 }, + { "lat": 40.8490208, "lon": -74.0022237 }, + { "lat": 40.8487623, "lon": -74.0023711 }, + { "lat": 40.8482442, "lon": -74.0026524 }, + { "lat": 40.8480782, "lon": -74.0027402 }, + { "lat": 40.8474182, "lon": -74.0031002 }, + { "lat": 40.8468387, "lon": -74.0034232 }, + { "lat": 40.8466137, "lon": -74.0035649 }, + { "lat": 40.8463380, "lon": -74.0037109 }, + { "lat": 40.8460917, "lon": -74.0038413 }, + { "lat": 40.8459433, "lon": -74.0039038 }, + { "lat": 40.8453829, "lon": -74.0041985 }, + { "lat": 40.8452920, "lon": -74.0042493 }, + { "lat": 40.8449678, "lon": -74.0044116 }, + { "lat": 40.8448994, "lon": -74.0044407 }, + { "lat": 40.8448389, "lon": -74.0044641 }, + { "lat": 40.8447549, "lon": -74.0044940 }, + { "lat": 40.8445875, "lon": -74.0045411 }, + { "lat": 40.8445178, "lon": -74.0045602 }, + { "lat": 40.8444554, "lon": -74.0045781 }, + { "lat": 40.8442048, "lon": -74.0046478 }, + { "lat": 40.8440594, "lon": -74.0046905 }, + { "lat": 40.8439384, "lon": -74.0047238 }, + { "lat": 40.8437615, "lon": -74.0047715 }, + { "lat": 40.8436894, "lon": -74.0047910 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 28081150, + "bounds": { + "minlat": 40.8781269, + "minlon": -73.9818795, + "maxlat": 40.8785560, + "maxlon": -73.9814248 + }, + "nodes": [ + 103098025, + 103174058, + 6374848006, + 7701684513 + ], + "geometry": [ + { "lat": 40.8785560, "lon": -73.9814248 }, + { "lat": 40.8784534, "lon": -73.9815463 }, + { "lat": 40.8782516, "lon": -73.9817789 }, + { "lat": 40.8781269, "lon": -73.9818795 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "1", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "oneway": "yes", + "ref": "NJ 93;CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 28081168, + "bounds": { + "minlat": 40.8753763, + "minlon": -73.9763467, + "maxlat": 40.8778301, + "maxlon": -73.9719965 + }, + "nodes": [ + 103224138, + 12021734808, + 12021734775, + 103211664 + ], + "geometry": [ + { "lat": 40.8778301, "lon": -73.9763467 }, + { "lat": 40.8777792, "lon": -73.9762566 }, + { "lat": 40.8754613, "lon": -73.9721535 }, + { "lat": 40.8753763, "lon": -73.9719965 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Van Nostrand Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 28081170, + "bounds": { + "minlat": 40.8772331, + "minlon": -73.9855320, + "maxlat": 40.8810961, + "maxlon": -73.9830721 + }, + "nodes": [ + 9239580232, + 7256921778, + 103134443, + 103134448, + 7144151038, + 5735550970, + 7936522018, + 5735550964, + 6905434405, + 12022105713, + 103134452, + 6905434412, + 12022105714, + 103134454, + 12022105715, + 12022105716, + 103134455, + 103134456, + 5735550975, + 12022105718, + 103134457 + ], + "geometry": [ + { "lat": 40.8810961, "lon": -73.9830721 }, + { "lat": 40.8808818, "lon": -73.9831806 }, + { "lat": 40.8807870, "lon": -73.9832380 }, + { "lat": 40.8797258, "lon": -73.9838057 }, + { "lat": 40.8795841, "lon": -73.9838838 }, + { "lat": 40.8792651, "lon": -73.9840595 }, + { "lat": 40.8792424, "lon": -73.9840720 }, + { "lat": 40.8788584, "lon": -73.9842835 }, + { "lat": 40.8784894, "lon": -73.9844868 }, + { "lat": 40.8784308, "lon": -73.9845174 }, + { "lat": 40.8783676, "lon": -73.9845532 }, + { "lat": 40.8782583, "lon": -73.9846171 }, + { "lat": 40.8781719, "lon": -73.9846692 }, + { "lat": 40.8780860, "lon": -73.9847316 }, + { "lat": 40.8780124, "lon": -73.9847881 }, + { "lat": 40.8779387, "lon": -73.9848491 }, + { "lat": 40.8778705, "lon": -73.9849082 }, + { "lat": 40.8777987, "lon": -73.9849778 }, + { "lat": 40.8776841, "lon": -73.9850902 }, + { "lat": 40.8773159, "lon": -73.9854509 }, + { "lat": 40.8772331, "lon": -73.9855320 } + ], + "tags": { + "highway": "unclassified", + "maxheight:signed": "no", + "name": "South Dean Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dean", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 28081201, + "bounds": { + "minlat": 40.8791186, + "minlon": -73.9495382, + "maxlat": 40.8795337, + "maxlon": -73.9487968 + }, + "nodes": [ + 103195292, + 10002983628, + 103105054 + ], + "geometry": [ + { "lat": 40.8795337, "lon": -73.9495382 }, + { "lat": 40.8791884, "lon": -73.9489235 }, + { "lat": 40.8791186, "lon": -73.9487968 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "maxheight": "13'6\"", + "maxspeed": "25 mph", + "name": "East Palisade Avenue", + "smoothness": "excellent", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 28081220, + "bounds": { + "minlat": 40.8800199, + "minlon": -73.9507733, + "maxlat": 40.8802380, + "maxlon": -73.9503911 + }, + "nodes": [ + 8374457899, + 8374457900, + 103098551 + ], + "geometry": [ + { "lat": 40.8802380, "lon": -73.9507733 }, + { "lat": 40.8800437, "lon": -73.9504336 }, + { "lat": 40.8800199, "lon": -73.9503911 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East Palisade Avenue", + "old_ref": "CR 66", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 28101025, + "bounds": { + "minlat": 40.7793797, + "minlon": -74.0088915, + "maxlat": 40.7798362, + "maxlon": -74.0078276 + }, + "nodes": [ + 308679526, + 308679527 + ], + "geometry": [ + { "lat": 40.7798362, "lon": -74.0088915 }, + { "lat": 40.7793797, "lon": -74.0078276 } + ], + "tags": { + "created_by": "Merkaartor 0.12", + "highway": "residential", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 28101027, + "bounds": { + "minlat": 40.7803227, + "minlon": -74.0082693, + "maxlat": 40.7806349, + "maxlon": -74.0075636 + }, + "nodes": [ + 308679528, + 308679530 + ], + "geometry": [ + { "lat": 40.7806349, "lon": -74.0082693 }, + { "lat": 40.7803227, "lon": -74.0075636 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 28101028, + "bounds": { + "minlat": 40.7809639, + "minlon": -74.0076139, + "maxlat": 40.7814340, + "maxlon": -74.0065348 + }, + "nodes": [ + 308679531, + 5964467326, + 308679532 + ], + "geometry": [ + { "lat": 40.7814340, "lon": -74.0076139 }, + { "lat": 40.7809772, "lon": -74.0065654 }, + { "lat": 40.7809639, "lon": -74.0065348 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 28101030, + "bounds": { + "minlat": 40.7835107, + "minlon": -74.0041422, + "maxlat": 40.7845018, + "maxlon": -74.0025973 + }, + "nodes": [ + 308679536, + 308679541, + 308679547 + ], + "geometry": [ + { "lat": 40.7845018, "lon": -74.0041422 }, + { "lat": 40.7839312, "lon": -74.0032180 }, + { "lat": 40.7835107, "lon": -74.0025973 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 28101769, + "bounds": { + "minlat": 40.7894183, + "minlon": -73.9991722, + "maxlat": 40.7897823, + "maxlon": -73.9983323 + }, + "nodes": [ + 308692917, + 5964467295, + 308692918 + ], + "geometry": [ + { "lat": 40.7894183, "lon": -73.9983323 }, + { "lat": 40.7894404, "lon": -73.9983832 }, + { "lat": 40.7897823, "lon": -73.9991722 } + ], + "tags": { + "highway": "residential", + "name": "Abbie Court" + } +}, +{ + "type": "way", + "id": 28101778, + "bounds": { + "minlat": 40.7812166, + "minlon": -74.0068861, + "maxlat": 40.7832340, + "maxlon": -74.0054757 + }, + "nodes": [ + 308678992, + 308678958, + 7300731161, + 7300731114, + 308678955, + 7300731120, + 308678961 + ], + "geometry": [ + { "lat": 40.7812166, "lon": -74.0054757 }, + { "lat": 40.7812976, "lon": -74.0055426 }, + { "lat": 40.7817414, "lon": -74.0058500 }, + { "lat": 40.7820900, "lon": -74.0060915 }, + { "lat": 40.7821919, "lon": -74.0061638 }, + { "lat": 40.7822747, "lon": -74.0062213 }, + { "lat": 40.7832340, "lon": -74.0068861 } + ], + "tags": { + "highway": "residential", + "name": "Riverwalk Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 28101779, + "bounds": { + "minlat": 40.7810317, + "minlon": -74.0056590, + "maxlat": 40.7812257, + "maxlon": -74.0054035 + }, + "nodes": [ + 308692979, + 2308993166, + 308678975, + 2308993158, + 2308993161, + 308678978, + 2308993159, + 308678984, + 2308993164, + 308678988, + 2308993154, + 308678992, + 2308993162, + 2308993160, + 308692980, + 2308993163, + 2308993157, + 308692979 + ], + "geometry": [ + { "lat": 40.7811129, "lon": -74.0056590 }, + { "lat": 40.7810735, "lon": -74.0056378 }, + { "lat": 40.7810495, "lon": -74.0056063 }, + { "lat": 40.7810392, "lon": -74.0055818 }, + { "lat": 40.7810317, "lon": -74.0055382 }, + { "lat": 40.7810360, "lon": -74.0054939 }, + { "lat": 40.7810598, "lon": -74.0054417 }, + { "lat": 40.7810874, "lon": -74.0054158 }, + { "lat": 40.7811299, "lon": -74.0054035 }, + { "lat": 40.7811632, "lon": -74.0054117 }, + { "lat": 40.7811967, "lon": -74.0054396 }, + { "lat": 40.7812166, "lon": -74.0054757 }, + { "lat": 40.7812257, "lon": -74.0055159 }, + { "lat": 40.7812240, "lon": -74.0055605 }, + { "lat": 40.7812110, "lon": -74.0056017 }, + { "lat": 40.7811784, "lon": -74.0056430 }, + { "lat": 40.7811467, "lon": -74.0056586 }, + { "lat": 40.7811129, "lon": -74.0056590 } + ], + "tags": { + "highway": "residential", + "name": "Riverwalk Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 28101802, + "bounds": { + "minlat": 40.7779135, + "minlon": -74.0119149, + "maxlat": 40.7781062, + "maxlon": -74.0114905 + }, + "nodes": [ + 7907171744, + 7045779042, + 308693079 + ], + "geometry": [ + { "lat": 40.7779135, "lon": -74.0114905 }, + { "lat": 40.7780010, "lon": -74.0116832 }, + { "lat": 40.7781062, "lon": -74.0119149 } + ], + "tags": { + "cycleway:right": "no", + "highway": "unclassified", + "lanes": "3", + "name": "Ferry Way", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|left|right" + } +}, +{ + "type": "way", + "id": 28101804, + "bounds": { + "minlat": 40.7797119, + "minlon": -74.0097058, + "maxlat": 40.7805009, + "maxlon": -74.0090998 + }, + "nodes": [ + 1793478687, + 5910252616, + 5555237925, + 5910252619, + 1793478671 + ], + "geometry": [ + { "lat": 40.7805009, "lon": -74.0090998 }, + { "lat": 40.7803315, "lon": -74.0092299 }, + { "lat": 40.7801158, "lon": -74.0093956 }, + { "lat": 40.7799011, "lon": -74.0095605 }, + { "lat": 40.7797119, "lon": -74.0097058 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Riverbend Drive", + "source:geometry": "Bing", + "source:name": "TIGER;guess", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 28102003, + "bounds": { + "minlat": 40.8042691, + "minlon": -73.9933990, + "maxlat": 40.8047840, + "maxlon": -73.9932167 + }, + "nodes": [ + 5342516910, + 752619010, + 5342516904, + 752619009, + 13886816683, + 5342516903, + 308698267 + ], + "geometry": [ + { "lat": 40.8047840, "lon": -73.9933563 }, + { "lat": 40.8046356, "lon": -73.9933990 }, + { "lat": 40.8045477, "lon": -73.9933907 }, + { "lat": 40.8044640, "lon": -73.9933735 }, + { "lat": 40.8043794, "lon": -73.9933239 }, + { "lat": 40.8043447, "lon": -73.9933035 }, + { "lat": 40.8042691, "lon": -73.9932167 } + ], + "tags": { + "highway": "residential", + "name": "River Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 31311315, + "bounds": { + "minlat": 40.7704523, + "minlon": -73.9735807, + "maxlat": 40.7733776, + "maxlon": -73.9725082 + }, + "nodes": [ + 1420632789, + 1420632788, + 1420634201, + 1420632787, + 1150587396, + 2059303811, + 4257351383, + 7998661046, + 1150587399, + 7998654842, + 2059303813, + 4257351399, + 4257351414, + 1210383509, + 1150587409, + 1150587394, + 4257351430, + 7998654840, + 3248816695, + 2059303828, + 42442145, + 2059303835, + 2059303836, + 2059303840, + 2059303841, + 2059303842, + 4257351460 + ], + "geometry": [ + { "lat": 40.7704523, "lon": -73.9735807 }, + { "lat": 40.7705452, "lon": -73.9735701 }, + { "lat": 40.7705927, "lon": -73.9735667 }, + { "lat": 40.7706820, "lon": -73.9735524 }, + { "lat": 40.7710373, "lon": -73.9734968 }, + { "lat": 40.7711546, "lon": -73.9734715 }, + { "lat": 40.7712430, "lon": -73.9734521 }, + { "lat": 40.7713173, "lon": -73.9734338 }, + { "lat": 40.7714017, "lon": -73.9734068 }, + { "lat": 40.7715019, "lon": -73.9733631 }, + { "lat": 40.7716380, "lon": -73.9732958 }, + { "lat": 40.7718012, "lon": -73.9731865 }, + { "lat": 40.7721221, "lon": -73.9729414 }, + { "lat": 40.7722489, "lon": -73.9728522 }, + { "lat": 40.7723398, "lon": -73.9727896 }, + { "lat": 40.7725137, "lon": -73.9726702 }, + { "lat": 40.7726386, "lon": -73.9725921 }, + { "lat": 40.7727065, "lon": -73.9725616 }, + { "lat": 40.7727683, "lon": -73.9725449 }, + { "lat": 40.7728841, "lon": -73.9725191 }, + { "lat": 40.7729641, "lon": -73.9725107 }, + { "lat": 40.7730206, "lon": -73.9725082 }, + { "lat": 40.7730802, "lon": -73.9725127 }, + { "lat": 40.7731409, "lon": -73.9725222 }, + { "lat": 40.7732123, "lon": -73.9725407 }, + { "lat": 40.7732904, "lon": -73.9725673 }, + { "lat": 40.7733776, "lon": -73.9725981 } + ], + "tags": { + "alt_name": "Dead Road", + "bicycle": "no", + "description": "Known locally as \"Skater's Road,\" this is a popular place for roller skating.", + "highway": "track", + "lit": "yes", + "loc_name": "Skater's Road", + "name": "Former Drive", + "note": "Former Drive, cut off in the 70s, repaved in the 80s for skaters and volleyball fields.", + "official_name": "Center Drive", + "source": "https://www.cpdsa.org/our-story/;https://www.echonyc.com/~parks/images/central-park-big-web.jpg;https://assets.centralparknyc.org/pdfs/maps/Central_Park_Bike_Map.pdf", + "surface": "asphalt", + "tracktype": "grade1" + } +}, +{ + "type": "way", + "id": 31311318, + "bounds": { + "minlat": 40.7736439, + "minlon": -73.9735273, + "maxlat": 40.7741221, + "maxlon": -73.9708689 + }, + "nodes": [ + 561950491, + 9906887506, + 9906887507, + 2059303843, + 9906887508, + 480493376, + 9178915145, + 2216963702, + 9906887509, + 9178915146, + 1490116224, + 9178915147, + 9906887510, + 4257949422, + 42442158, + 2059303845, + 9906887511, + 9178915148, + 2059303844, + 480493366, + 2059303846, + 2059303847, + 2059303848, + 9178915149, + 9906887512, + 42442148, + 9178915150, + 2216963709, + 1490116227, + 9178915151, + 9906887513, + 9178915152 + ], + "geometry": [ + { "lat": 40.7736439, "lon": -73.9708689 }, + { "lat": 40.7736616, "lon": -73.9709421 }, + { "lat": 40.7737161, "lon": -73.9711897 }, + { "lat": 40.7737354, "lon": -73.9712771 }, + { "lat": 40.7737573, "lon": -73.9713732 }, + { "lat": 40.7738142, "lon": -73.9716350 }, + { "lat": 40.7738266, "lon": -73.9717016 }, + { "lat": 40.7738360, "lon": -73.9717740 }, + { "lat": 40.7738399, "lon": -73.9718473 }, + { "lat": 40.7738412, "lon": -73.9719112 }, + { "lat": 40.7738377, "lon": -73.9719848 }, + { "lat": 40.7738322, "lon": -73.9720616 }, + { "lat": 40.7738236, "lon": -73.9721365 }, + { "lat": 40.7738143, "lon": -73.9721958 }, + { "lat": 40.7738011, "lon": -73.9722975 }, + { "lat": 40.7737861, "lon": -73.9724273 }, + { "lat": 40.7737811, "lon": -73.9724961 }, + { "lat": 40.7737767, "lon": -73.9725672 }, + { "lat": 40.7737752, "lon": -73.9726459 }, + { "lat": 40.7737779, "lon": -73.9727159 }, + { "lat": 40.7737856, "lon": -73.9727983 }, + { "lat": 40.7737984, "lon": -73.9728795 }, + { "lat": 40.7738157, "lon": -73.9729657 }, + { "lat": 40.7738387, "lon": -73.9730482 }, + { "lat": 40.7738626, "lon": -73.9731180 }, + { "lat": 40.7738894, "lon": -73.9731840 }, + { "lat": 40.7739236, "lon": -73.9732529 }, + { "lat": 40.7739593, "lon": -73.9733224 }, + { "lat": 40.7739894, "lon": -73.9733687 }, + { "lat": 40.7740294, "lon": -73.9734221 }, + { "lat": 40.7740730, "lon": -73.9734749 }, + { "lat": 40.7741221, "lon": -73.9735273 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "Olmstead and Vaux Way", + "cycleway": "track", + "cycleway:oneway": "no", + "footway": "track", + "hgv": "no", + "highway": "service", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "width": "15" + } +}, +{ + "type": "way", + "id": 31984130, + "bounds": { + "minlat": 40.7518133, + "minlon": -74.0008579, + "maxlat": 40.7522461, + "maxlon": -73.9997474 + }, + "nodes": [ + 1701844618, + 8261122850, + 3788348138, + 358448167, + 1701844729, + 12152867534, + 12152867538, + 427841071 + ], + "geometry": [ + { "lat": 40.7522461, "lon": -74.0008579 }, + { "lat": 40.7521875, "lon": -74.0007181 }, + { "lat": 40.7518353, "lon": -73.9998807 }, + { "lat": 40.7518269, "lon": -73.9998511 }, + { "lat": 40.7518208, "lon": -73.9998233 }, + { "lat": 40.7518165, "lon": -73.9998008 }, + { "lat": 40.7518149, "lon": -73.9997778 }, + { "lat": 40.7518133, "lon": -73.9997474 } + ], + "tags": { + "alt_name": "Lincoln Tunnel Approach", + "bicycle": "no", + "destination": "Lincoln Tunnel", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "oneway": "yes", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 31984136, + "bounds": { + "minlat": 40.7510694, + "minlon": -73.9996162, + "maxlat": 40.7518775, + "maxlon": -73.9980426 + }, + "nodes": [ + 358448394, + 10173309979, + 3788348156, + 12152867564, + 3788348155, + 3788348154, + 6878240302, + 358448390, + 358448389, + 12152867563, + 12152867550, + 12152867549, + 3788356661, + 12152867544, + 427841094, + 12152867546, + 12152867545, + 12152867547, + 12152867548, + 427841073 + ], + "geometry": [ + { "lat": 40.7510694, "lon": -73.9980426 }, + { "lat": 40.7510965, "lon": -73.9981652 }, + { "lat": 40.7511057, "lon": -73.9981963 }, + { "lat": 40.7511167, "lon": -73.9982340 }, + { "lat": 40.7511291, "lon": -73.9982719 }, + { "lat": 40.7511436, "lon": -73.9983088 }, + { "lat": 40.7512714, "lon": -73.9986004 }, + { "lat": 40.7515061, "lon": -73.9991362 }, + { "lat": 40.7516378, "lon": -73.9994340 }, + { "lat": 40.7516552, "lon": -73.9994693 }, + { "lat": 40.7516705, "lon": -73.9994967 }, + { "lat": 40.7516888, "lon": -73.9995251 }, + { "lat": 40.7517112, "lon": -73.9995492 }, + { "lat": 40.7517331, "lon": -73.9995684 }, + { "lat": 40.7517598, "lon": -73.9995875 }, + { "lat": 40.7517891, "lon": -73.9996017 }, + { "lat": 40.7518072, "lon": -73.9996089 }, + { "lat": 40.7518294, "lon": -73.9996144 }, + { "lat": 40.7518533, "lon": -73.9996162 }, + { "lat": 40.7518775, "lon": -73.9996131 } + ], + "tags": { + "alt_name": "Lincoln Tunnel Approach", + "bicycle": "no", + "cycleway:right": "no", + "destination": "Lincoln Tunnel", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "oneway": "yes", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32739156, + "bounds": { + "minlat": 40.8094954, + "minlon": -74.0012421, + "maxlat": 40.8096565, + "maxlon": -74.0011477 + }, + "nodes": [ + 103866686, + 4727867686, + 4205741393 + ], + "geometry": [ + { "lat": 40.8094954, "lon": -74.0012421 }, + { "lat": 40.8096165, "lon": -74.0011715 }, + { "lat": 40.8096565, "lon": -74.0011477 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000063", + "highway": "secondary", + "name": "Bergenline Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline", + "tiger:name_base_1": "County Road 721", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 32922453, + "bounds": { + "minlat": 40.7119599, + "minlon": -74.0044845, + "maxlat": 40.7126680, + "maxlon": -74.0040736 + }, + "nodes": [ + 486819535, + 13039986822, + 4158786451, + 1272562763, + 1272562875, + 278636741, + 4143892292, + 1272562735, + 1272562878, + 274308392, + 274308393, + 4143892293, + 4143892291, + 10277173504, + 4143892294, + 1272562861 + ], + "geometry": [ + { "lat": 40.7119599, "lon": -74.0040736 }, + { "lat": 40.7120316, "lon": -74.0041712 }, + { "lat": 40.7121397, "lon": -74.0043087 }, + { "lat": 40.7121788, "lon": -74.0043536 }, + { "lat": 40.7122180, "lon": -74.0043944 }, + { "lat": 40.7122539, "lon": -74.0044293 }, + { "lat": 40.7123060, "lon": -74.0044576 }, + { "lat": 40.7123604, "lon": -74.0044764 }, + { "lat": 40.7124126, "lon": -74.0044845 }, + { "lat": 40.7124606, "lon": -74.0044837 }, + { "lat": 40.7124942, "lon": -74.0044805 }, + { "lat": 40.7125422, "lon": -74.0044698 }, + { "lat": 40.7125934, "lon": -74.0044523 }, + { "lat": 40.7126209, "lon": -74.0044428 }, + { "lat": 40.7126357, "lon": -74.0044326 }, + { "lat": 40.7126680, "lon": -74.0044121 } + ], + "tags": { + "bicycle": "no", + "bus": "no", + "destination": "Centre Street;Chambers Street", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Centre Street", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:right": "no", + "sidewalk:separate": "left", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32934341, + "bounds": { + "minlat": 40.7058009, + "minlon": -74.0148091, + "maxlat": 40.7060310, + "maxlon": -74.0147077 + }, + "nodes": [ + 9181525938, + 246909446 + ], + "geometry": [ + { "lat": 40.7058009, "lon": -74.0148091 }, + { "lat": 40.7060310, "lon": -74.0147077 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxspeed": "25 mph", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "none|none|none|right", + "unsigned_ref": "I 478" + } +}, +{ + "type": "way", + "id": 32934351, + "bounds": { + "minlat": 40.7015168, + "minlon": -74.0126310, + "maxlat": 40.7017600, + "maxlon": -74.0124277 + }, + "nodes": [ + 42444200, + 7689146654, + 2897578473, + 2897578474, + 2792083053, + 2897578475, + 7689146655, + 7689143055, + 12301558335 + ], + "geometry": [ + { "lat": 40.7015254, "lon": -74.0124277 }, + { "lat": 40.7015179, "lon": -74.0124710 }, + { "lat": 40.7015168, "lon": -74.0124946 }, + { "lat": 40.7015211, "lon": -74.0125265 }, + { "lat": 40.7015348, "lon": -74.0125519 }, + { "lat": 40.7015536, "lon": -74.0125670 }, + { "lat": 40.7015690, "lon": -74.0125733 }, + { "lat": 40.7017119, "lon": -74.0126162 }, + { "lat": 40.7017600, "lon": -74.0126310 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Whitehall Street", + "name:etymology:wikidata": "Q214820", + "name:ko": "화이트홀 스트리트", + "name:ru": "Уайтхолл-стрит", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "source": "Bing", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Whitehall", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "wikidata": "Q7995998", + "wikipedia": "en:Whitehall Street" + } +}, +{ + "type": "way", + "id": 32934355, + "bounds": { + "minlat": 40.7032004, + "minlon": -74.0075899, + "maxlat": 40.7057747, + "maxlon": -74.0035408 + }, + "nodes": [ + 9907745081, + 9907745083, + 9907745086, + 12301079489, + 9907745088, + 9907745090, + 9907745092, + 9907745093, + 42451436 + ], + "geometry": [ + { "lat": 40.7032004, "lon": -74.0075899 }, + { "lat": 40.7037293, "lon": -74.0067265 }, + { "lat": 40.7040148, "lon": -74.0062811 }, + { "lat": 40.7045643, "lon": -74.0054264 }, + { "lat": 40.7046093, "lon": -74.0053565 }, + { "lat": 40.7049033, "lon": -74.0049007 }, + { "lat": 40.7051877, "lon": -74.0044588 }, + { "lat": 40.7054739, "lon": -74.0040101 }, + { "lat": 40.7057747, "lon": -74.0035408 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32934358, + "bounds": { + "minlat": 40.7013250, + "minlon": -74.0122634, + "maxlat": 40.7015527, + "maxlon": -74.0112102 + }, + "nodes": [ + 2895163399, + 4147197188, + 2895163398, + 11014606848, + 370880746, + 2895163397, + 370880748, + 3790255300, + 2895163395, + 9907745072, + 9907745073, + 9907745071, + 10107930170, + 11014606928, + 9907745074 + ], + "geometry": [ + { "lat": 40.7014642, "lon": -74.0122624 }, + { "lat": 40.7014290, "lon": -74.0122634 }, + { "lat": 40.7013980, "lon": -74.0122549 }, + { "lat": 40.7013742, "lon": -74.0122402 }, + { "lat": 40.7013636, "lon": -74.0122336 }, + { "lat": 40.7013440, "lon": -74.0122063 }, + { "lat": 40.7013292, "lon": -74.0121783 }, + { "lat": 40.7013250, "lon": -74.0121481 }, + { "lat": 40.7013290, "lon": -74.0121118 }, + { "lat": 40.7013396, "lon": -74.0120701 }, + { "lat": 40.7013663, "lon": -74.0119817 }, + { "lat": 40.7013808, "lon": -74.0119255 }, + { "lat": 40.7013998, "lon": -74.0118466 }, + { "lat": 40.7014849, "lon": -74.0114926 }, + { "lat": 40.7015527, "lon": -74.0112102 } + ], + "tags": { + "destination": "FDR Drive;Governors Island Ferry", + "foot": "no", + "hgv": "no", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32935106, + "bounds": { + "minlat": 40.7020631, + "minlon": -74.0097583, + "maxlat": 40.7028174, + "maxlon": -74.0084238 + }, + "nodes": [ + 370880734, + 4145735058, + 205021623, + 4145735065, + 4145735054, + 4145735057 + ], + "geometry": [ + { "lat": 40.7028174, "lon": -74.0084238 }, + { "lat": 40.7023226, "lon": -74.0092492 }, + { "lat": 40.7022552, "lon": -74.0093626 }, + { "lat": 40.7021904, "lon": -74.0094845 }, + { "lat": 40.7021271, "lon": -74.0096114 }, + { "lat": 40.7020631, "lon": -74.0097583 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "lanes:bus": "1", + "lanes:bus:conditional": "Mo-Fri 14:00-20:00", + "maxspeed": "30 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "turn:lanes": "through|through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32935107, + "bounds": { + "minlat": 40.7062566, + "minlon": -74.0027542, + "maxlat": 40.7072112, + "maxlon": -74.0010614 + }, + "nodes": [ + 42422270, + 4145704196, + 4145704189, + 205019285 + ], + "geometry": [ + { "lat": 40.7062566, "lon": -74.0027542 }, + { "lat": 40.7069370, "lon": -74.0015567 }, + { "lat": 40.7070787, "lon": -74.0013110 }, + { "lat": 40.7072112, "lon": -74.0010614 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32935108, + "bounds": { + "minlat": 40.7072112, + "minlon": -74.0010614, + "maxlat": 40.7093658, + "maxlon": -73.9935802 + }, + "nodes": [ + 205019285, + 4145704194, + 9907745098, + 4145704198, + 4158646440, + 4145704190, + 4145704201, + 4145704195, + 205019393, + 4158646434, + 4158646431, + 4158646442, + 42451448, + 4158646439, + 4158646441, + 4158646430, + 205023847, + 4158646432, + 205023848, + 4158646437, + 4158649705, + 4158649703, + 4158649704, + 205023849, + 4158649701, + 4158652189, + 4158652190, + 9907939595, + 4158654691, + 11032985450, + 42451465 + ], + "geometry": [ + { "lat": 40.7072112, "lon": -74.0010614 }, + { "lat": 40.7073640, "lon": -74.0007584 }, + { "lat": 40.7075169, "lon": -74.0004414 }, + { "lat": 40.7076453, "lon": -74.0001744 }, + { "lat": 40.7077005, "lon": -74.0000644 }, + { "lat": 40.7077531, "lon": -73.9999595 }, + { "lat": 40.7078026, "lon": -73.9998644 }, + { "lat": 40.7078507, "lon": -73.9997755 }, + { "lat": 40.7078982, "lon": -73.9996911 }, + { "lat": 40.7079508, "lon": -73.9996007 }, + { "lat": 40.7082113, "lon": -73.9991672 }, + { "lat": 40.7082626, "lon": -73.9990791 }, + { "lat": 40.7083230, "lon": -73.9989709 }, + { "lat": 40.7083739, "lon": -73.9988718 }, + { "lat": 40.7084285, "lon": -73.9987646 }, + { "lat": 40.7084873, "lon": -73.9986381 }, + { "lat": 40.7085505, "lon": -73.9984959 }, + { "lat": 40.7086037, "lon": -73.9983672 }, + { "lat": 40.7086527, "lon": -73.9982408 }, + { "lat": 40.7087046, "lon": -73.9980873 }, + { "lat": 40.7087464, "lon": -73.9979540 }, + { "lat": 40.7087785, "lon": -73.9978401 }, + { "lat": 40.7088086, "lon": -73.9977217 }, + { "lat": 40.7088448, "lon": -73.9975633 }, + { "lat": 40.7088670, "lon": -73.9974461 }, + { "lat": 40.7088865, "lon": -73.9973340 }, + { "lat": 40.7089034, "lon": -73.9972227 }, + { "lat": 40.7089222, "lon": -73.9970914 }, + { "lat": 40.7093199, "lon": -73.9942153 }, + { "lat": 40.7093422, "lon": -73.9939807 }, + { "lat": 40.7093658, "lon": -73.9935802 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32935109, + "bounds": { + "minlat": 40.7093658, + "minlon": -73.9935802, + "maxlat": 40.7106043, + "maxlon": -73.9835389 + }, + "nodes": [ + 42451465, + 4158654689, + 42451485, + 9907939598, + 9907939599, + 42451489, + 9907939600, + 205022835, + 9907939601, + 5804478357, + 9907939602, + 9907939603, + 370888098 + ], + "geometry": [ + { "lat": 40.7093658, "lon": -73.9935802 }, + { "lat": 40.7094020, "lon": -73.9932990 }, + { "lat": 40.7098773, "lon": -73.9901283 }, + { "lat": 40.7099157, "lon": -73.9898620 }, + { "lat": 40.7099507, "lon": -73.9896002 }, + { "lat": 40.7099861, "lon": -73.9893237 }, + { "lat": 40.7100158, "lon": -73.9890674 }, + { "lat": 40.7104649, "lon": -73.9851705 }, + { "lat": 40.7104989, "lon": -73.9848775 }, + { "lat": 40.7105283, "lon": -73.9846042 }, + { "lat": 40.7105514, "lon": -73.9842997 }, + { "lat": 40.7105724, "lon": -73.9840108 }, + { "lat": 40.7106043, "lon": -73.9835389 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32935111, + "bounds": { + "minlat": 40.7106043, + "minlon": -73.9835389, + "maxlat": 40.7107500, + "maxlon": -73.9814926 + }, + "nodes": [ + 370888098, + 42423307 + ], + "geometry": [ + { "lat": 40.7106043, "lon": -73.9835389 }, + { "lat": 40.7107500, "lon": -73.9814926 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32935473, + "bounds": { + "minlat": 40.7180268, + "minlon": -73.9752627, + "maxlat": 40.7187961, + "maxlon": -73.9751131 + }, + "nodes": [ + 42457401, + 607922912, + 9438441029, + 9907942879, + 370893595, + 8919621235 + ], + "geometry": [ + { "lat": 40.7187961, "lon": -73.9751131 }, + { "lat": 40.7187583, "lon": -73.9751215 }, + { "lat": 40.7187153, "lon": -73.9751325 }, + { "lat": 40.7184557, "lon": -73.9751766 }, + { "lat": 40.7182400, "lon": -73.9752149 }, + { "lat": 40.7180268, "lon": -73.9752627 } + ], + "tags": { + "cycleway:right": "no", + "destination": "FDR Drive South", + "hgv": "destination", + "highway": "primary", + "lane_markings": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32935551, + "bounds": { + "minlat": 40.7192695, + "minlon": -73.9782869, + "maxlat": 40.7198093, + "maxlon": -73.9767345 + }, + "nodes": [ + 3655974176, + 3783071247, + 370893395, + 5799015888, + 3783071246, + 9181587085, + 3655974177, + 4205946597 + ], + "geometry": [ + { "lat": 40.7192695, "lon": -73.9767345 }, + { "lat": 40.7193412, "lon": -73.9770763 }, + { "lat": 40.7193477, "lon": -73.9771153 }, + { "lat": 40.7193615, "lon": -73.9771853 }, + { "lat": 40.7193850, "lon": -73.9772661 }, + { "lat": 40.7194071, "lon": -73.9773250 }, + { "lat": 40.7196870, "lon": -73.9779980 }, + { "lat": 40.7198093, "lon": -73.9782869 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 32936735, + "bounds": { + "minlat": 40.7186590, + "minlon": -73.9748960, + "maxlat": 40.7190611, + "maxlon": -73.9748442 + }, + "nodes": [ + 370894437, + 370894979 + ], + "geometry": [ + { "lat": 40.7186590, "lon": -73.9748960 }, + { "lat": 40.7190611, "lon": -73.9748442 } + ], + "tags": { + "alt_name": "East River Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "-1", + "maxheight": "below_default", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "South Street Viaduct", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "tunnel": "yes", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32936736, + "bounds": { + "minlat": 40.7190611, + "minlon": -73.9748442, + "maxlat": 40.7212958, + "maxlon": -73.9745541 + }, + "nodes": [ + 370894979, + 9907942878, + 370894980 + ], + "geometry": [ + { "lat": 40.7190611, "lon": -73.9748442 }, + { "lat": 40.7209959, "lon": -73.9746067 }, + { "lat": 40.7212958, "lon": -73.9745541 } + ], + "tags": { + "alt_name": "East River Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxheight": "below_default", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32936738, + "bounds": { + "minlat": 40.7186703, + "minlon": -73.9750115, + "maxlat": 40.7190695, + "maxlon": -73.9749610 + }, + "nodes": [ + 42423053, + 370901769 + ], + "geometry": [ + { "lat": 40.7190695, "lon": -73.9749610 }, + { "lat": 40.7186703, "lon": -73.9750115 } + ], + "tags": { + "alt_name": "East River Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "-1", + "maxheight": "below_default", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "tunnel": "yes", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32936739, + "bounds": { + "minlat": 40.7163982, + "minlon": -73.9757407, + "maxlat": 40.7186703, + "maxlon": -73.9750115 + }, + "nodes": [ + 370901769, + 42450849, + 42450845, + 42450840, + 42450833, + 42450831, + 42450829, + 9907942858, + 42450825, + 9907942857, + 9907942856, + 42423039 + ], + "geometry": [ + { "lat": 40.7186703, "lon": -73.9750115 }, + { "lat": 40.7184896, "lon": -73.9750434 }, + { "lat": 40.7182900, "lon": -73.9750795 }, + { "lat": 40.7180770, "lon": -73.9751269 }, + { "lat": 40.7178593, "lon": -73.9751825 }, + { "lat": 40.7176466, "lon": -73.9752401 }, + { "lat": 40.7174395, "lon": -73.9753055 }, + { "lat": 40.7172304, "lon": -73.9753802 }, + { "lat": 40.7170266, "lon": -73.9754591 }, + { "lat": 40.7168165, "lon": -73.9755435 }, + { "lat": 40.7166107, "lon": -73.9756384 }, + { "lat": 40.7163982, "lon": -73.9757407 } + ], + "tags": { + "alt_name": "East River Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32936740, + "bounds": { + "minlat": 40.7152339, + "minlon": -73.9761957, + "maxlat": 40.7186590, + "maxlon": -73.9748960 + }, + "nodes": [ + 370892861, + 9907942855, + 9907942859, + 9907942860, + 370894429, + 370894431, + 370894432, + 370894434, + 9907942861, + 370894435, + 9907942862, + 370894436, + 370894437 + ], + "geometry": [ + { "lat": 40.7152339, "lon": -73.9761957 }, + { "lat": 40.7155543, "lon": -73.9760500 }, + { "lat": 40.7165345, "lon": -73.9755479 }, + { "lat": 40.7167418, "lon": -73.9754515 }, + { "lat": 40.7169443, "lon": -73.9753656 }, + { "lat": 40.7171534, "lon": -73.9752857 }, + { "lat": 40.7173632, "lon": -73.9752130 }, + { "lat": 40.7175709, "lon": -73.9751451 }, + { "lat": 40.7177832, "lon": -73.9750819 }, + { "lat": 40.7179943, "lon": -73.9750271 }, + { "lat": 40.7182066, "lon": -73.9749797 }, + { "lat": 40.7184170, "lon": -73.9749359 }, + { "lat": 40.7186590, "lon": -73.9748960 } + ], + "tags": { + "alt_name": "East River Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32936741, + "bounds": { + "minlat": 40.7212958, + "minlon": -73.9745541, + "maxlat": 40.7279995, + "maxlon": -73.9716788 + }, + "nodes": [ + 370894980, + 9907937382, + 370894981, + 9907937381, + 9907937374, + 9907937380, + 370894982, + 9907937379, + 370894983, + 9907937378, + 370894984, + 9907937377, + 4913187800, + 9907937376, + 370895174, + 9907937375, + 370895175, + 4913187802, + 370895804, + 9907937395, + 9907937396, + 370895806, + 4913187801, + 370895809, + 9907937397, + 9907937398, + 370895810, + 9907937399, + 370895812, + 370897166 + ], + "geometry": [ + { "lat": 40.7212958, "lon": -73.9745541 }, + { "lat": 40.7216140, "lon": -73.9745122 }, + { "lat": 40.7217315, "lon": -73.9744960 }, + { "lat": 40.7218321, "lon": -73.9744779 }, + { "lat": 40.7219381, "lon": -73.9744560 }, + { "lat": 40.7220407, "lon": -73.9744290 }, + { "lat": 40.7221473, "lon": -73.9743967 }, + { "lat": 40.7222508, "lon": -73.9743606 }, + { "lat": 40.7223577, "lon": -73.9743182 }, + { "lat": 40.7224528, "lon": -73.9742772 }, + { "lat": 40.7225539, "lon": -73.9742306 }, + { "lat": 40.7226553, "lon": -73.9741795 }, + { "lat": 40.7227586, "lon": -73.9741210 }, + { "lat": 40.7228510, "lon": -73.9740661 }, + { "lat": 40.7229482, "lon": -73.9740062 }, + { "lat": 40.7231412, "lon": -73.9738847 }, + { "lat": 40.7241119, "lon": -73.9732732 }, + { "lat": 40.7249626, "lon": -73.9727354 }, + { "lat": 40.7254665, "lon": -73.9724249 }, + { "lat": 40.7256709, "lon": -73.9723116 }, + { "lat": 40.7258654, "lon": -73.9722095 }, + { "lat": 40.7260687, "lon": -73.9721082 }, + { "lat": 40.7262773, "lon": -73.9720155 }, + { "lat": 40.7263843, "lon": -73.9719749 }, + { "lat": 40.7264895, "lon": -73.9719399 }, + { "lat": 40.7265899, "lon": -73.9719087 }, + { "lat": 40.7267040, "lon": -73.9718775 }, + { "lat": 40.7268031, "lon": -73.9718566 }, + { "lat": 40.7269131, "lon": -73.9718383 }, + { "lat": 40.7279995, "lon": -73.9716788 } + ], + "tags": { + "alt_name": "East River Drive", + "destination:lanes": "||East 34 Street;Midtown Tunnel;East 20th Street;East 21rd Street;East 22rd Street;East 23rd Street", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "||through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32937063, + "bounds": { + "minlat": 40.7406720, + "minlon": -73.9729042, + "maxlat": 40.7455844, + "maxlon": -73.9704600 + }, + "nodes": [ + 42450699, + 9142507291, + 5286096331, + 5286096329, + 9142507290, + 9142507289, + 42450701, + 42434977, + 9142507288, + 42450705, + 9142507287, + 42450708, + 9142507286, + 370912435, + 9142507285, + 370912438, + 370912817 + ], + "geometry": [ + { "lat": 40.7455844, "lon": -73.9704600 }, + { "lat": 40.7454829, "lon": -73.9705532 }, + { "lat": 40.7453014, "lon": -73.9707054 }, + { "lat": 40.7451086, "lon": -73.9708649 }, + { "lat": 40.7449219, "lon": -73.9710047 }, + { "lat": 40.7447292, "lon": -73.9711418 }, + { "lat": 40.7445414, "lon": -73.9712710 }, + { "lat": 40.7435537, "lon": -73.9719214 }, + { "lat": 40.7433517, "lon": -73.9720464 }, + { "lat": 40.7431387, "lon": -73.9721641 }, + { "lat": 40.7429379, "lon": -73.9722672 }, + { "lat": 40.7427350, "lon": -73.9723640 }, + { "lat": 40.7425230, "lon": -73.9724533 }, + { "lat": 40.7423206, "lon": -73.9725292 }, + { "lat": 40.7420960, "lon": -73.9726041 }, + { "lat": 40.7418734, "lon": -73.9726576 }, + { "lat": 40.7406720, "lon": -73.9729042 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32937066, + "bounds": { + "minlat": 40.7310849, + "minlon": -73.9743677, + "maxlat": 40.7323903, + "maxlon": -73.9740778 + }, + "nodes": [ + 5137978709, + 13837911367, + 5137978710, + 4161569152, + 9142398641 + ], + "geometry": [ + { "lat": 40.7323903, "lon": -73.9743564 }, + { "lat": 40.7322854, "lon": -73.9743677 }, + { "lat": 40.7322263, "lon": -73.9743650 }, + { "lat": 40.7311149, "lon": -73.9740861 }, + { "lat": 40.7310849, "lon": -73.9740778 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 32938997, + "bounds": { + "minlat": 40.7327384, + "minlon": -73.9749391, + "maxlat": 40.7353742, + "maxlon": -73.9744288 + }, + "nodes": [ + 42439191, + 9140927096, + 5137743344, + 9140927094, + 5137743341, + 5137743342, + 9140927101, + 9140927100, + 9140927099, + 9140927098, + 4244360547, + 5137747688 + ], + "geometry": [ + { "lat": 40.7327384, "lon": -73.9744408 }, + { "lat": 40.7328596, "lon": -73.9744288 }, + { "lat": 40.7328906, "lon": -73.9744294 }, + { "lat": 40.7329348, "lon": -73.9744348 }, + { "lat": 40.7342233, "lon": -73.9747585 }, + { "lat": 40.7349006, "lon": -73.9749302 }, + { "lat": 40.7349292, "lon": -73.9749362 }, + { "lat": 40.7349578, "lon": -73.9749391 }, + { "lat": 40.7349873, "lon": -73.9749385 }, + { "lat": 40.7350171, "lon": -73.9749312 }, + { "lat": 40.7352713, "lon": -73.9748363 }, + { "lat": 40.7353742, "lon": -73.9747878 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "name_1": "FDR Drive Service Road East; Fdr Drive Service Road East", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 32939007, + "bounds": { + "minlat": 40.7478125, + "minlon": -73.9683571, + "maxlat": 40.7479473, + "maxlon": -73.9682455 + }, + "nodes": [ + 42450675, + 5779545445 + ], + "geometry": [ + { "lat": 40.7479473, "lon": -73.9682455 }, + { "lat": 40.7478125, "lon": -73.9683571 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "none|none|East 23rd Street|East 34th Street;Midtown Tunnel", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "turn:lanes": "none|none|none|slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32939046, + "bounds": { + "minlat": 40.7475579, + "minlon": -73.9687700, + "maxlat": 40.7482874, + "maxlon": -73.9684802 + }, + "nodes": [ + 42450809, + 9140864930, + 1701844737, + 9140864929, + 370915526, + 9140864928, + 9140864927, + 1701844749, + 9140864926, + 9140864925, + 1701844805, + 1701844760, + 9140864924, + 1701844717, + 370915530, + 1701844664 + ], + "geometry": [ + { "lat": 40.7482874, "lon": -73.9687676 }, + { "lat": 40.7482400, "lon": -73.9686637 }, + { "lat": 40.7482103, "lon": -73.9686102 }, + { "lat": 40.7481811, "lon": -73.9685674 }, + { "lat": 40.7481564, "lon": -73.9685386 }, + { "lat": 40.7481266, "lon": -73.9685145 }, + { "lat": 40.7481009, "lon": -73.9684994 }, + { "lat": 40.7480698, "lon": -73.9684862 }, + { "lat": 40.7480426, "lon": -73.9684812 }, + { "lat": 40.7480158, "lon": -73.9684802 }, + { "lat": 40.7479893, "lon": -73.9684845 }, + { "lat": 40.7479675, "lon": -73.9684916 }, + { "lat": 40.7479418, "lon": -73.9685030 }, + { "lat": 40.7478985, "lon": -73.9685319 }, + { "lat": 40.7477154, "lon": -73.9686476 }, + { "lat": 40.7475579, "lon": -73.9687700 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32939209, + "bounds": { + "minlat": 40.7305748, + "minlon": -73.9749149, + "maxlat": 40.7361737, + "maxlon": -73.9729934 + }, + "nodes": [ + 370898175, + 11039980727, + 11039980726, + 11039980725, + 9142507237, + 370898179, + 9142507236, + 370898181, + 9142507235, + 370898183, + 9142507234, + 370898185, + 9142507233, + 370898187, + 9142507224, + 370913765, + 9142507223, + 9142507222, + 370913766, + 9142507221, + 370913767 + ], + "geometry": [ + { "lat": 40.7305748, "lon": -73.9729934 }, + { "lat": 40.7307019, "lon": -73.9731449 }, + { "lat": 40.7308326, "lon": -73.9732894 }, + { "lat": 40.7309686, "lon": -73.9734195 }, + { "lat": 40.7310566, "lon": -73.9734969 }, + { "lat": 40.7311535, "lon": -73.9735712 }, + { "lat": 40.7312358, "lon": -73.9736280 }, + { "lat": 40.7313306, "lon": -73.9736948 }, + { "lat": 40.7314399, "lon": -73.9737562 }, + { "lat": 40.7315523, "lon": -73.9738118 }, + { "lat": 40.7316626, "lon": -73.9738601 }, + { "lat": 40.7317598, "lon": -73.9738969 }, + { "lat": 40.7318676, "lon": -73.9739333 }, + { "lat": 40.7319648, "lon": -73.9739572 }, + { "lat": 40.7354509, "lon": -73.9748470 }, + { "lat": 40.7355724, "lon": -73.9748756 }, + { "lat": 40.7356835, "lon": -73.9748953 }, + { "lat": 40.7357927, "lon": -73.9749096 }, + { "lat": 40.7358985, "lon": -73.9749149 }, + { "lat": 40.7360126, "lon": -73.9749148 }, + { "lat": 40.7361737, "lon": -73.9749050 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "South Street Viaduct", + "oneway": "yes", + "ref": "FDR", + "surface": "concrete", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32939224, + "bounds": { + "minlat": 40.7519373, + "minlon": -73.9654544, + "maxlat": 40.7525400, + "maxlon": -73.9647889 + }, + "nodes": [ + 370925141, + 9142568799, + 5426969126, + 9142568798, + 2998239297, + 9142568797, + 7096725572, + 370925143, + 9142568796, + 370925144, + 370925145, + 370925146, + 9142568795, + 370925147, + 9142568794, + 1733612442, + 9142568793, + 370925148, + 5426969129, + 10994926359, + 42438898 + ], + "geometry": [ + { "lat": 40.7519528, "lon": -73.9654544 }, + { "lat": 40.7519428, "lon": -73.9654094 }, + { "lat": 40.7519373, "lon": -73.9653526 }, + { "lat": 40.7519385, "lon": -73.9653010 }, + { "lat": 40.7519425, "lon": -73.9652501 }, + { "lat": 40.7519523, "lon": -73.9652098 }, + { "lat": 40.7519650, "lon": -73.9651664 }, + { "lat": 40.7519862, "lon": -73.9651286 }, + { "lat": 40.7520173, "lon": -73.9650895 }, + { "lat": 40.7520514, "lon": -73.9650539 }, + { "lat": 40.7522806, "lon": -73.9648346 }, + { "lat": 40.7523040, "lon": -73.9648126 }, + { "lat": 40.7523292, "lon": -73.9647980 }, + { "lat": 40.7523565, "lon": -73.9647910 }, + { "lat": 40.7523781, "lon": -73.9647889 }, + { "lat": 40.7524048, "lon": -73.9647953 }, + { "lat": 40.7524305, "lon": -73.9648047 }, + { "lat": 40.7524598, "lon": -73.9648208 }, + { "lat": 40.7524887, "lon": -73.9648432 }, + { "lat": 40.7525179, "lon": -73.9648810 }, + { "lat": 40.7525400, "lon": -73.9649161 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "30 mph", + "name": "General Douglas MacArthur Plaza", + "name:etymology:wikidata": "Q127417", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32939511, + "bounds": { + "minlat": 40.7479473, + "minlon": -73.9682455, + "maxlat": 40.7516587, + "maxlon": -73.9652088 + }, + "nodes": [ + 42424183, + 42450675 + ], + "geometry": [ + { "lat": 40.7516587, "lon": -73.9652088 }, + { "lat": 40.7479473, "lon": -73.9682455 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "-1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "tunnel": "yes", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32939512, + "bounds": { + "minlat": 40.7455255, + "minlon": -73.9703520, + "maxlat": 40.7481568, + "maxlon": -73.9678838 + }, + "nodes": [ + 589099584, + 589099591, + 370915059, + 370915060, + 13238997597, + 370915061, + 9142507308, + 370915065 + ], + "geometry": [ + { "lat": 40.7455255, "lon": -73.9703520 }, + { "lat": 40.7457040, "lon": -73.9701891 }, + { "lat": 40.7459468, "lon": -73.9699465 }, + { "lat": 40.7460880, "lon": -73.9697838 }, + { "lat": 40.7462066, "lon": -73.9696568 }, + { "lat": 40.7467602, "lon": -73.9690645 }, + { "lat": 40.7470305, "lon": -73.9688200 }, + { "lat": 40.7481568, "lon": -73.9678838 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "South Street Viaduct", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32939513, + "bounds": { + "minlat": 40.7481568, + "minlon": -73.9678838, + "maxlat": 40.7515697, + "maxlon": -73.9649925 + }, + "nodes": [ + 370915065, + 3884863034, + 370923579 + ], + "geometry": [ + { "lat": 40.7481568, "lon": -73.9678838 }, + { "lat": 40.7504833, "lon": -73.9659367 }, + { "lat": 40.7515697, "lon": -73.9649925 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "-1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "South Street Viaduct", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "tunnel": "yes", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32939514, + "bounds": { + "minlat": 40.7515697, + "minlon": -73.9649925, + "maxlat": 40.7553078, + "maxlon": -73.9615511 + }, + "nodes": [ + 370923579, + 370925070, + 9142568807, + 370924957, + 9142568809, + 370925077, + 371022307, + 3884863035, + 9142744773, + 5426969125, + 371022312, + 9142568812, + 405988242 + ], + "geometry": [ + { "lat": 40.7515697, "lon": -73.9649925 }, + { "lat": 40.7527977, "lon": -73.9638475 }, + { "lat": 40.7531724, "lon": -73.9635132 }, + { "lat": 40.7534038, "lon": -73.9633333 }, + { "lat": 40.7536643, "lon": -73.9631248 }, + { "lat": 40.7538670, "lon": -73.9629565 }, + { "lat": 40.7547781, "lon": -73.9621530 }, + { "lat": 40.7548739, "lon": -73.9620654 }, + { "lat": 40.7549552, "lon": -73.9619816 }, + { "lat": 40.7550406, "lon": -73.9618906 }, + { "lat": 40.7551259, "lon": -73.9617861 }, + { "lat": 40.7552167, "lon": -73.9616668 }, + { "lat": 40.7553078, "lon": -73.9615511 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32939517, + "bounds": { + "minlat": 40.7535447, + "minlon": -73.9634115, + "maxlat": 40.7543344, + "maxlon": -73.9626987 + }, + "nodes": [ + 42450656, + 5426969133 + ], + "geometry": [ + { "lat": 40.7543344, "lon": -73.9626987 }, + { "lat": 40.7535447, "lon": -73.9634115 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32946655, + "bounds": { + "minlat": 40.7554632, + "minlon": -73.9621088, + "maxlat": 40.7560685, + "maxlon": -73.9616198 + }, + "nodes": [ + 42440565, + 10992750782, + 10992750779, + 6747028072, + 7248638334, + 42440566 + ], + "geometry": [ + { "lat": 40.7554632, "lon": -73.9621088 }, + { "lat": 40.7554705, "lon": -73.9620903 }, + { "lat": 40.7554855, "lon": -73.9620675 }, + { "lat": 40.7554997, "lon": -73.9620525 }, + { "lat": 40.7560086, "lon": -73.9616655 }, + { "lat": 40.7560685, "lon": -73.9616198 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Sutton Place South", + "old_name:1811-1883": "Avenue A", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 32946656, + "bounds": { + "minlat": 40.7549794, + "minlon": -73.9647728, + "maxlat": 40.7557614, + "maxlon": -73.9629036 + }, + "nodes": [ + 42436716, + 10121802254, + 42436714 + ], + "geometry": [ + { "lat": 40.7549794, "lon": -73.9629036 }, + { "lat": 40.7557111, "lon": -73.9646525 }, + { "lat": 40.7557614, "lon": -73.9647728 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 53rd Street", + "name:ru": "Восточная 53-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 32947289, + "bounds": { + "minlat": 40.7594580, + "minlon": -73.9618856, + "maxlat": 40.7600372, + "maxlon": -73.9606274 + }, + "nodes": [ + 371034152, + 2089938149 + ], + "geometry": [ + { "lat": 40.7600372, "lon": -73.9618856 }, + { "lat": 40.7594580, "lon": -73.9606274 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "layer": "2", + "maxheight": "13'5\"", + "name": "Ed Koch Queensboro Bridge Lower Roadway", + "note": "Lower Level", + "oneway": "yes", + "ref": "NY 25", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 32947290, + "bounds": { + "minlat": 40.7514253, + "minlon": -73.9488780, + "maxlat": 40.7545046, + "maxlon": -73.9418780 + }, + "nodes": [ + 276069369, + 3785649261, + 3785649260, + 2089938139, + 2089938146 + ], + "geometry": [ + { "lat": 40.7514253, "lon": -73.9418780 }, + { "lat": 40.7518149, "lon": -73.9426652 }, + { "lat": 40.7522541, "lon": -73.9436852 }, + { "lat": 40.7530893, "lon": -73.9456052 }, + { "lat": 40.7545046, "lon": -73.9488780 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "name": "Queensboro Bridge (Lower Level)", + "note": "Lower Level", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 32947291, + "bounds": { + "minlat": 40.7589831, + "minlon": -73.9645095, + "maxlat": 40.7596426, + "maxlon": -73.9640002 + }, + "nodes": [ + 42423564, + 10121802233, + 3785586747, + 7792415873, + 42423565 + ], + "geometry": [ + { "lat": 40.7589831, "lon": -73.9645095 }, + { "lat": 40.7590789, "lon": -73.9644365 }, + { "lat": 40.7591931, "lon": -73.9643494 }, + { "lat": 40.7595885, "lon": -73.9640382 }, + { "lat": 40.7596426, "lon": -73.9640002 } + ], + "tags": { + "access:conditional": "no @ (Mo-Fr 06:00-10:00); yes @ (Mo-Fr 06:00-10:00 AND occupants>1)", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Queensboro Bridge Approach", + "oneway": "reversible", + "oneway:conditional": "yes @ (Mo-Fr 00:00-06:00, 10:00-24:00; Sa-Su); -1 @ (Mo-Fr 06:00-10:00)", + "shoulder": "left", + "sidewalk": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 32947293, + "bounds": { + "minlat": 40.7599564, + "minlon": -73.9636394, + "maxlat": 40.7605009, + "maxlon": -73.9619465 + }, + "nodes": [ + 371034153, + 42423569, + 3785591411, + 371037071, + 3785591412, + 3785591413, + 1701281782, + 3785591414, + 371037073, + 9140893830, + 9140893831, + 3785591415, + 3785591416, + 3785591417, + 42423571, + 3944770822 + ], + "geometry": [ + { "lat": 40.7601874, "lon": -73.9636394 }, + { "lat": 40.7604147, "lon": -73.9634929 }, + { "lat": 40.7604341, "lon": -73.9634737 }, + { "lat": 40.7604493, "lon": -73.9634553 }, + { "lat": 40.7604642, "lon": -73.9634343 }, + { "lat": 40.7604773, "lon": -73.9634070 }, + { "lat": 40.7604873, "lon": -73.9633770 }, + { "lat": 40.7604938, "lon": -73.9633440 }, + { "lat": 40.7604989, "lon": -73.9633075 }, + { "lat": 40.7605009, "lon": -73.9632724 }, + { "lat": 40.7604985, "lon": -73.9632347 }, + { "lat": 40.7604914, "lon": -73.9631953 }, + { "lat": 40.7604827, "lon": -73.9631619 }, + { "lat": 40.7604672, "lon": -73.9631169 }, + { "lat": 40.7604231, "lon": -73.9630068 }, + { "lat": 40.7599564, "lon": -73.9619465 } + ], + "tags": { + "access:conditional": "no @ (Mo-Fr 06:00-10:00); yes @ (Mo-Fr 06:00-10:00 AND occupants>1)", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "maxspeed": "35 mph", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "note": "Upper level", + "oneway": "reversible", + "oneway:conditional": "yes @ (Mo-Fr 00:00-06:00,09:30-24:00; Sa-Su); -1 @ (Mo-Fr 06:00-09:30)" + } +}, +{ + "type": "way", + "id": 32947297, + "bounds": { + "minlat": 40.7618022, + "minlon": -73.9621834, + "maxlat": 40.7620729, + "maxlon": -73.9619899 + }, + "nodes": [ + 371034162, + 10121802224, + 42423752 + ], + "geometry": [ + { "lat": 40.7618022, "lon": -73.9621834 }, + { "lat": 40.7620142, "lon": -73.9620319 }, + { "lat": 40.7620729, "lon": -73.9619899 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "2nd Avenue south;Westside|2nd Avenue south;Westside;1st Avenue North;FDR Drive|1st Avenue North;FDR Drive", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "moped": "no", + "name": "Queensboro Bridge Exit", + "oneway": "yes", + "sidewalk:both": "separate", + "turn:lanes": "through|through;right|right" + } +}, +{ + "type": "way", + "id": 32947509, + "bounds": { + "minlat": 40.7601231, + "minlon": -73.9631700, + "maxlat": 40.7603525, + "maxlon": -73.9626209 + }, + "nodes": [ + 13348916911, + 3785591398, + 2902396742, + 3785591399, + 1701281780, + 3785591400, + 1701281781, + 3785591401, + 2902396743, + 3785591402, + 371037406, + 3785591403, + 593301067, + 3785591404, + 3785591405, + 3785591406, + 3785591407, + 3785591408, + 3785591409 + ], + "geometry": [ + { "lat": 40.7601231, "lon": -73.9631700 }, + { "lat": 40.7601820, "lon": -73.9631326 }, + { "lat": 40.7601967, "lon": -73.9631385 }, + { "lat": 40.7602127, "lon": -73.9631418 }, + { "lat": 40.7602357, "lon": -73.9631435 }, + { "lat": 40.7602618, "lon": -73.9631385 }, + { "lat": 40.7602835, "lon": -73.9631267 }, + { "lat": 40.7603040, "lon": -73.9631098 }, + { "lat": 40.7603167, "lon": -73.9630904 }, + { "lat": 40.7603302, "lon": -73.9630592 }, + { "lat": 40.7603391, "lon": -73.9630289 }, + { "lat": 40.7603468, "lon": -73.9629918 }, + { "lat": 40.7603525, "lon": -73.9629463 }, + { "lat": 40.7603519, "lon": -73.9628991 }, + { "lat": 40.7603455, "lon": -73.9628316 }, + { "lat": 40.7603365, "lon": -73.9627828 }, + { "lat": 40.7603206, "lon": -73.9627212 }, + { "lat": 40.7603053, "lon": -73.9626673 }, + { "lat": 40.7602893, "lon": -73.9626209 } + ], + "tags": { + "access": "no", + "emergency": "yes", + "hgv": "no", + "highway": "service", + "lanes": "1", + "name": "Queensboro Bridge Outer Roadway", + "service": "emergency_access", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32947559, + "bounds": { + "minlat": 40.7594231, + "minlon": -73.9619167, + "maxlat": 40.7599959, + "maxlon": -73.9606575 + }, + "nodes": [ + 371037408, + 2089938148 + ], + "geometry": [ + { "lat": 40.7599959, "lon": -73.9619167 }, + { "lat": 40.7594231, "lon": -73.9606575 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "designated", + "hgv": "no", + "highway": "pedestrian", + "layer": "2", + "motor_vehicle": "no", + "name": "Queensboro Bridge Outer Roadway", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 32958722, + "bounds": { + "minlat": 40.7590801, + "minlon": -73.9586021, + "maxlat": 40.7596406, + "maxlon": -73.9581690 + }, + "nodes": [ + 371190620, + 6795524035, + 4918486758, + 6795524067, + 6795524063, + 6795524011, + 3785575833 + ], + "geometry": [ + { "lat": 40.7590801, "lon": -73.9586021 }, + { "lat": 40.7590817, "lon": -73.9585931 }, + { "lat": 40.7590848, "lon": -73.9585829 }, + { "lat": 40.7590901, "lon": -73.9585710 }, + { "lat": 40.7590968, "lon": -73.9585610 }, + { "lat": 40.7591120, "lon": -73.9585491 }, + { "lat": 40.7596406, "lon": -73.9581690 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32959299, + "bounds": { + "minlat": 40.7634712, + "minlon": -73.9536360, + "maxlat": 40.7651607, + "maxlon": -73.9521063 + }, + "nodes": [ + 42425246, + 42450634, + 42422682 + ], + "geometry": [ + { "lat": 40.7651607, "lon": -73.9521063 }, + { "lat": 40.7639358, "lon": -73.9531830 }, + { "lat": 40.7634712, "lon": -73.9536360 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "-1", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "surface": "asphalt", + "tunnel": "building_passage", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32959795, + "bounds": { + "minlat": 40.7611782, + "minlon": -73.9558329, + "maxlat": 40.7634207, + "maxlon": -73.9535266 + }, + "nodes": [ + 9142584947, + 371188760, + 371188761, + 371194365, + 3785575817, + 3785575816, + 3785575815, + 371188762, + 371194366 + ], + "geometry": [ + { "lat": 40.7611782, "lon": -73.9558329 }, + { "lat": 40.7612885, "lon": -73.9557176 }, + { "lat": 40.7613986, "lon": -73.9555873 }, + { "lat": 40.7621401, "lon": -73.9547614 }, + { "lat": 40.7623056, "lon": -73.9545702 }, + { "lat": 40.7624871, "lon": -73.9543747 }, + { "lat": 40.7626399, "lon": -73.9542213 }, + { "lat": 40.7628245, "lon": -73.9540532 }, + { "lat": 40.7634207, "lon": -73.9535266 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "tunnel": "building_passage", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32959885, + "bounds": { + "minlat": 40.7674304, + "minlon": -73.9500185, + "maxlat": 40.7686593, + "maxlon": -73.9490212 + }, + "nodes": [ + 4813099377, + 371198304, + 3785454970, + 3785454971, + 3785454972, + 3785454973, + 371198305 + ], + "geometry": [ + { "lat": 40.7674304, "lon": -73.9500185 }, + { "lat": 40.7677522, "lon": -73.9497267 }, + { "lat": 40.7679390, "lon": -73.9495688 }, + { "lat": 40.7681149, "lon": -73.9494372 }, + { "lat": 40.7682983, "lon": -73.9493006 }, + { "lat": 40.7684816, "lon": -73.9491669 }, + { "lat": 40.7686593, "lon": -73.9490212 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32959993, + "bounds": { + "minlat": 40.7769362, + "minlon": -73.9440036, + "maxlat": 40.7809091, + "maxlon": -73.9425316 + }, + "nodes": [ + 371198766, + 9178967034, + 371198769, + 9178967033, + 371198770, + 9178967032, + 371207148, + 371207149, + 9178967031, + 371207150, + 371207151, + 371207282 + ], + "geometry": [ + { "lat": 40.7769362, "lon": -73.9425316 }, + { "lat": 40.7770847, "lon": -73.9425712 }, + { "lat": 40.7779085, "lon": -73.9428201 }, + { "lat": 40.7781108, "lon": -73.9428934 }, + { "lat": 40.7782834, "lon": -73.9429654 }, + { "lat": 40.7795958, "lon": -73.9435733 }, + { "lat": 40.7797874, "lon": -73.9436565 }, + { "lat": 40.7799921, "lon": -73.9437408 }, + { "lat": 40.7801944, "lon": -73.9438138 }, + { "lat": 40.7803914, "lon": -73.9438764 }, + { "lat": 40.7805955, "lon": -73.9439291 }, + { "lat": 40.7809091, "lon": -73.9440036 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "Robert F Kennedy Bridge;Bruckner Expressway;Grand Central Parkway||none;East 96th Street", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "turn:lanes": "||through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32959995, + "bounds": { + "minlat": 40.7718282, + "minlon": -73.9458966, + "maxlat": 40.7769362, + "maxlon": -73.9424458 + }, + "nodes": [ + 371198785, + 3785513704, + 3785513705, + 3785513706, + 3785513707, + 371198312, + 371198314, + 371198316, + 371198749, + 3785513708, + 371198751, + 371198752, + 3785513709, + 371198754, + 371198755, + 371198756, + 3785513710, + 371198758, + 3785513711, + 371198759, + 3785513712, + 371198760, + 3785513713, + 371198761, + 3785513714, + 371198763, + 371198764, + 371198766 + ], + "geometry": [ + { "lat": 40.7718282, "lon": -73.9458966 }, + { "lat": 40.7720358, "lon": -73.9456390 }, + { "lat": 40.7721878, "lon": -73.9454600 }, + { "lat": 40.7723364, "lon": -73.9452659 }, + { "lat": 40.7724799, "lon": -73.9450808 }, + { "lat": 40.7726672, "lon": -73.9448667 }, + { "lat": 40.7728423, "lon": -73.9446949 }, + { "lat": 40.7730754, "lon": -73.9444824 }, + { "lat": 40.7742109, "lon": -73.9434514 }, + { "lat": 40.7743228, "lon": -73.9433435 }, + { "lat": 40.7744638, "lon": -73.9432178 }, + { "lat": 40.7746073, "lon": -73.9431003 }, + { "lat": 40.7747388, "lon": -73.9430007 }, + { "lat": 40.7748853, "lon": -73.9428939 }, + { "lat": 40.7750163, "lon": -73.9428087 }, + { "lat": 40.7751906, "lon": -73.9427145 }, + { "lat": 40.7753730, "lon": -73.9426320 }, + { "lat": 40.7755328, "lon": -73.9425695 }, + { "lat": 40.7756590, "lon": -73.9425285 }, + { "lat": 40.7757747, "lon": -73.9425044 }, + { "lat": 40.7759392, "lon": -73.9424742 }, + { "lat": 40.7760617, "lon": -73.9424606 }, + { "lat": 40.7761852, "lon": -73.9424480 }, + { "lat": 40.7762921, "lon": -73.9424458 }, + { "lat": 40.7764598, "lon": -73.9424553 }, + { "lat": 40.7766312, "lon": -73.9424769 }, + { "lat": 40.7767818, "lon": -73.9424980 }, + { "lat": 40.7769362, "lon": -73.9425316 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "-2", + "lit": "yes", + "maxheight": "11'10\"", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "tunnel": "yes", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32960688, + "bounds": { + "minlat": 40.7696410, + "minlon": -73.9484005, + "maxlat": 40.7703078, + "maxlon": -73.9477641 + }, + "nodes": [ + 42450641, + 9906887419, + 42424142 + ], + "geometry": [ + { "lat": 40.7703078, "lon": -73.9477641 }, + { "lat": 40.7701884, "lon": -73.9478862 }, + { "lat": 40.7696410, "lon": -73.9484005 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32960689, + "bounds": { + "minlat": 40.7668010, + "minlon": -73.9507038, + "maxlat": 40.7673168, + "maxlon": -73.9502726 + }, + "nodes": [ + 12393073876, + 42439571, + 3785451344, + 3785451343, + 42438809 + ], + "geometry": [ + { "lat": 40.7673168, "lon": -73.9502726 }, + { "lat": 40.7671343, "lon": -73.9504376 }, + { "lat": 40.7670418, "lon": -73.9505158 }, + { "lat": 40.7669602, "lon": -73.9505855 }, + { "lat": 40.7668010, "lon": -73.9507038 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "change:lanes": "no|no|no", + "destination:lanes": "||East 63 Street;Ed Koch Queensboro Bridge;East 71 Street", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "||through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32960690, + "bounds": { + "minlat": 40.7703078, + "minlon": -73.9477641, + "maxlat": 40.7715418, + "maxlon": -73.9466167 + }, + "nodes": [ + 42450641, + 4520458457, + 4520458449, + 371206277 + ], + "geometry": [ + { "lat": 40.7703078, "lon": -73.9477641 }, + { "lat": 40.7703630, "lon": -73.9477052 }, + { "lat": 40.7708671, "lon": -73.9472350 }, + { "lat": 40.7715418, "lon": -73.9466167 } + ], + "tags": { + "cycleway:right": "no", + "highway": "service", + "name": "FDR Drive", + "name:ru": "Магистраль ФДР", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32960691, + "bounds": { + "minlat": 40.7714919, + "minlon": -73.9464933, + "maxlat": 40.7769226, + "maxlon": -73.9425397 + }, + "nodes": [ + 42451231, + 42451233, + 3785513703, + 42451235, + 3785513702, + 42451242, + 42451244, + 3785513701, + 42451252, + 42451257, + 3785513700, + 42451261, + 3785513699, + 42451265, + 3785513698, + 42451270, + 42451271, + 42451272, + 589298047, + 3785513697, + 3785513696, + 3785513695, + 3785513694, + 589298051, + 3785513693, + 589298055, + 4695707875, + 3785513691, + 589298059, + 4695707872, + 42451280 + ], + "geometry": [ + { "lat": 40.7769226, "lon": -73.9426625 }, + { "lat": 40.7767786, "lon": -73.9426200 }, + { "lat": 40.7766621, "lon": -73.9425947 }, + { "lat": 40.7765623, "lon": -73.9425808 }, + { "lat": 40.7763810, "lon": -73.9425595 }, + { "lat": 40.7761784, "lon": -73.9425462 }, + { "lat": 40.7759575, "lon": -73.9425397 }, + { "lat": 40.7758175, "lon": -73.9425577 }, + { "lat": 40.7756861, "lon": -73.9425833 }, + { "lat": 40.7755752, "lon": -73.9426166 }, + { "lat": 40.7754437, "lon": -73.9426574 }, + { "lat": 40.7753103, "lon": -73.9427196 }, + { "lat": 40.7752005, "lon": -73.9427711 }, + { "lat": 40.7750576, "lon": -73.9428455 }, + { "lat": 40.7749373, "lon": -73.9429166 }, + { "lat": 40.7748113, "lon": -73.9430046 }, + { "lat": 40.7746560, "lon": -73.9431302 }, + { "lat": 40.7744217, "lon": -73.9433267 }, + { "lat": 40.7733897, "lon": -73.9442543 }, + { "lat": 40.7732332, "lon": -73.9443943 }, + { "lat": 40.7730780, "lon": -73.9445289 }, + { "lat": 40.7729551, "lon": -73.9446454 }, + { "lat": 40.7728096, "lon": -73.9447738 }, + { "lat": 40.7726842, "lon": -73.9449010 }, + { "lat": 40.7724836, "lon": -73.9451244 }, + { "lat": 40.7722563, "lon": -73.9454154 }, + { "lat": 40.7720498, "lon": -73.9456990 }, + { "lat": 40.7719111, "lon": -73.9459011 }, + { "lat": 40.7717895, "lon": -73.9460837 }, + { "lat": 40.7716546, "lon": -73.9463002 }, + { "lat": 40.7714919, "lon": -73.9464933 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "-1", + "lit": "yes", + "maxheight": "11'5\"", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "tunnel": "yes", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32961934, + "bounds": { + "minlat": 40.7823625, + "minlon": -73.9440512, + "maxlat": 40.7833585, + "maxlon": -73.9434726 + }, + "nodes": [ + 589929447, + 9178967020, + 4233923007, + 371208216, + 9178967019, + 9178967018, + 371210017, + 3785522901, + 9178967017, + 371210018, + 589929426 + ], + "geometry": [ + { "lat": 40.7823625, "lon": -73.9440512 }, + { "lat": 40.7824735, "lon": -73.9440162 }, + { "lat": 40.7825840, "lon": -73.9439750 }, + { "lat": 40.7826830, "lon": -73.9439301 }, + { "lat": 40.7827853, "lon": -73.9438796 }, + { "lat": 40.7828820, "lon": -73.9438228 }, + { "lat": 40.7829783, "lon": -73.9437668 }, + { "lat": 40.7830853, "lon": -73.9436936 }, + { "lat": 40.7831777, "lon": -73.9436262 }, + { "lat": 40.7832670, "lon": -73.9435506 }, + { "lat": 40.7833585, "lon": -73.9434726 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32961935, + "bounds": { + "minlat": 40.7833585, + "minlon": -73.9434726, + "maxlat": 40.7844055, + "maxlon": -73.9418662 + }, + "nodes": [ + 589929426, + 589929427, + 9178958205, + 3785522902, + 9178958204, + 589929429, + 9178958203, + 589929430, + 9178958202, + 3785522903, + 371210024, + 9178958201, + 371209940 + ], + "geometry": [ + { "lat": 40.7833585, "lon": -73.9434726 }, + { "lat": 40.7834524, "lon": -73.9433806 }, + { "lat": 40.7835354, "lon": -73.9432917 }, + { "lat": 40.7836157, "lon": -73.9432002 }, + { "lat": 40.7836947, "lon": -73.9431063 }, + { "lat": 40.7837709, "lon": -73.9430031 }, + { "lat": 40.7838455, "lon": -73.9428968 }, + { "lat": 40.7839137, "lon": -73.9427944 }, + { "lat": 40.7839784, "lon": -73.9426823 }, + { "lat": 40.7840418, "lon": -73.9425646 }, + { "lat": 40.7841621, "lon": -73.9423369 }, + { "lat": 40.7842874, "lon": -73.9420962 }, + { "lat": 40.7844055, "lon": -73.9418662 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32961937, + "bounds": { + "minlat": 40.7823635, + "minlon": -73.9441993, + "maxlat": 40.7833636, + "maxlon": -73.9436401 + }, + "nodes": [ + 589929435, + 9178967024, + 42450593, + 9178967023, + 42450592, + 371214568, + 9178967022, + 371214563, + 9178967021, + 589929443, + 589929444 + ], + "geometry": [ + { "lat": 40.7833636, "lon": -73.9436401 }, + { "lat": 40.7832709, "lon": -73.9437175 }, + { "lat": 40.7831682, "lon": -73.9437968 }, + { "lat": 40.7830728, "lon": -73.9438642 }, + { "lat": 40.7829759, "lon": -73.9439260 }, + { "lat": 40.7828918, "lon": -73.9439748 }, + { "lat": 40.7827848, "lon": -73.9440328 }, + { "lat": 40.7826816, "lon": -73.9440811 }, + { "lat": 40.7825804, "lon": -73.9441249 }, + { "lat": 40.7824789, "lon": -73.9441625 }, + { "lat": 40.7823635, "lon": -73.9441993 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32962118, + "bounds": { + "minlat": 40.7879854, + "minlon": -73.9381789, + "maxlat": 40.7887043, + "maxlon": -73.9378563 + }, + "nodes": [ + 42433513, + 7924346647, + 9906259311, + 42433510 + ], + "geometry": [ + { "lat": 40.7887043, "lon": -73.9378563 }, + { "lat": 40.7880228, "lon": -73.9381506 }, + { "lat": 40.7879998, "lon": -73.9381649 }, + { "lat": 40.7879854, "lon": -73.9381789 } + ], + "tags": { + "destination": "East 105th Street", + "highway": "residential", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32963302, + "bounds": { + "minlat": 40.7957756, + "minlon": -73.9296774, + "maxlat": 40.7971720, + "maxlon": -73.9293306 + }, + "nodes": [ + 3786728557, + 3786724044, + 9153702854, + 42422489, + 371218821, + 371218820, + 42433433, + 371218661, + 3786724042 + ], + "geometry": [ + { "lat": 40.7971720, "lon": -73.9293306 }, + { "lat": 40.7970896, "lon": -73.9293311 }, + { "lat": 40.7969336, "lon": -73.9293474 }, + { "lat": 40.7967172, "lon": -73.9293828 }, + { "lat": 40.7965102, "lon": -73.9294283 }, + { "lat": 40.7962939, "lon": -73.9294830 }, + { "lat": 40.7960892, "lon": -73.9295517 }, + { "lat": 40.7958889, "lon": -73.9296250 }, + { "lat": 40.7957756, "lon": -73.9296774 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 32965216, + "bounds": { + "minlat": 40.8018771, + "minlon": -73.9311119, + "maxlat": 40.8023101, + "maxlon": -73.9307833 + }, + "nodes": [ + 8653755530, + 7471942376 + ], + "geometry": [ + { "lat": 40.8018771, "lon": -73.9311119 }, + { "lat": 40.8023101, "lon": -73.9307833 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Willis Avenue Bridge", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "4", + "layer": "1", + "maxspeed": "30 mph", + "name": "Willis Avenue Bridge", + "oneway": "yes", + "sidewalk": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "turn:lanes": "merge_to_right|||merge_to_left", + "wikidata": "Q2581529", + "wikipedia": "en:Willis Avenue Bridge" + } +}, +{ + "type": "way", + "id": 32972072, + "bounds": { + "minlat": 40.7195806, + "minlon": -73.9787920, + "maxlat": 40.7198786, + "maxlon": -73.9780573 + }, + "nodes": [ + 42449874, + 3783071243, + 11772132430 + ], + "geometry": [ + { "lat": 40.7198786, "lon": -73.9787920 }, + { "lat": 40.7198366, "lon": -73.9786734 }, + { "lat": 40.7195806, "lon": -73.9780573 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 32973203, + "bounds": { + "minlat": 40.8116473, + "minlon": -73.9359166, + "maxlat": 40.8121376, + "maxlon": -73.9348857 + }, + "nodes": [ + 7541804760, + 2481877068, + 13503616370, + 9163819557, + 9166236567, + 9166236568, + 9166236569, + 9166236570, + 7732243576 + ], + "geometry": [ + { "lat": 40.8121376, "lon": -73.9359166 }, + { "lat": 40.8121129, "lon": -73.9358542 }, + { "lat": 40.8120111, "lon": -73.9356030 }, + { "lat": 40.8117726, "lon": -73.9350280 }, + { "lat": 40.8117437, "lon": -73.9349758 }, + { "lat": 40.8117226, "lon": -73.9349499 }, + { "lat": 40.8117013, "lon": -73.9349304 }, + { "lat": 40.8116771, "lon": -73.9349090 }, + { "lat": 40.8116473, "lon": -73.9348857 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32973204, + "bounds": { + "minlat": 40.8119805, + "minlon": -73.9360803, + "maxlat": 40.8120958, + "maxlon": -73.9360360 + }, + "nodes": [ + 7541804762, + 2481877063 + ], + "geometry": [ + { "lat": 40.8120958, "lon": -73.9360803 }, + { "lat": 40.8119805, "lon": -73.9360360 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 32973207, + "bounds": { + "minlat": 40.8266348, + "minlon": -73.9352723, + "maxlat": 40.8269366, + "maxlon": -73.9351348 + }, + "nodes": [ + 371337227, + 8695926171, + 11218641145, + 9150629575, + 373769315, + 9150629576, + 9150629577, + 371337230 + ], + "geometry": [ + { "lat": 40.8266348, "lon": -73.9352723 }, + { "lat": 40.8266892, "lon": -73.9352337 }, + { "lat": 40.8266986, "lon": -73.9352273 }, + { "lat": 40.8267433, "lon": -73.9351965 }, + { "lat": 40.8267987, "lon": -73.9351656 }, + { "lat": 40.8268432, "lon": -73.9351507 }, + { "lat": 40.8268905, "lon": -73.9351390 }, + { "lat": 40.8269366, "lon": -73.9351348 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 32973209, + "bounds": { + "minlat": 40.8280388, + "minlon": -73.9348611, + "maxlat": 40.8280514, + "maxlon": -73.9345792 + }, + "nodes": [ + 371337239, + 9153608668, + 13535333126, + 13535333129, + 2140997998 + ], + "geometry": [ + { "lat": 40.8280476, "lon": -73.9345792 }, + { "lat": 40.8280514, "lon": -73.9347485 }, + { "lat": 40.8280486, "lon": -73.9347917 }, + { "lat": 40.8280455, "lon": -73.9348220 }, + { "lat": 40.8280388, "lon": -73.9348611 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "layer": "2", + "maxspeed": "25 mph", + "name": "Macombs Place", + "name:etymology:wikidata": "Q328356", + "oneway": "yes", + "sidewalk": "no", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 33080410, + "bounds": { + "minlat": 40.7724535, + "minlon": -73.9689208, + "maxlat": 40.7728156, + "maxlon": -73.9680407 + }, + "nodes": [ + 373268478, + 9178915124, + 9178915125, + 373268481, + 2059303821, + 373268483, + 4331118556, + 2059303824, + 9178915127, + 9906887498, + 9178915126, + 9906887496, + 6091080882 + ], + "geometry": [ + { "lat": 40.7724535, "lon": -73.9689208 }, + { "lat": 40.7725551, "lon": -73.9688280 }, + { "lat": 40.7726074, "lon": -73.9687655 }, + { "lat": 40.7726510, "lon": -73.9687071 }, + { "lat": 40.7726841, "lon": -73.9686514 }, + { "lat": 40.7727147, "lon": -73.9685839 }, + { "lat": 40.7727471, "lon": -73.9685051 }, + { "lat": 40.7727659, "lon": -73.9684444 }, + { "lat": 40.7727832, "lon": -73.9683713 }, + { "lat": 40.7727934, "lon": -73.9683077 }, + { "lat": 40.7727962, "lon": -73.9682901 }, + { "lat": 40.7728059, "lon": -73.9681980 }, + { "lat": 40.7728156, "lon": -73.9680407 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "no", + "highway": "service", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 33114090, + "bounds": { + "minlat": 40.8295918, + "minlon": -73.9355839, + "maxlat": 40.8305218, + "maxlon": -73.9352393 + }, + "nodes": [ + 42424551, + 9153608693, + 42424542, + 9153608692, + 42424538, + 9153608691, + 9902223874, + 42424534, + 373772071, + 7246782893, + 42424531 + ], + "geometry": [ + { "lat": 40.8305218, "lon": -73.9355839 }, + { "lat": 40.8304813, "lon": -73.9355278 }, + { "lat": 40.8304384, "lon": -73.9354791 }, + { "lat": 40.8304008, "lon": -73.9354406 }, + { "lat": 40.8303673, "lon": -73.9354092 }, + { "lat": 40.8303263, "lon": -73.9353820 }, + { "lat": 40.8302845, "lon": -73.9353610 }, + { "lat": 40.8302376, "lon": -73.9353428 }, + { "lat": 40.8302025, "lon": -73.9353326 }, + { "lat": 40.8300161, "lon": -73.9353023 }, + { "lat": 40.8295918, "lon": -73.9352393 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Harlem River Drive", + "name1": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q597451", + "name_1": "Adam Clayton Powell Jr. Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A63;A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes": "slight_left;through" + } +}, +{ + "type": "way", + "id": 33114684, + "bounds": { + "minlat": 40.7972731, + "minlon": -73.9291580, + "maxlat": 40.7993152, + "maxlon": -73.9290694 + }, + "nodes": [ + 371239958, + 9153702856, + 9153702855, + 3786728606, + 3786728607, + 42433438, + 3786728608, + 371227780, + 3786728609, + 9906258864, + 42425681 + ], + "geometry": [ + { "lat": 40.7972731, "lon": -73.9291580 }, + { "lat": 40.7974711, "lon": -73.9291363 }, + { "lat": 40.7977061, "lon": -73.9291213 }, + { "lat": 40.7982581, "lon": -73.9290868 }, + { "lat": 40.7986611, "lon": -73.9290732 }, + { "lat": 40.7987945, "lon": -73.9290694 }, + { "lat": 40.7989001, "lon": -73.9290722 }, + { "lat": 40.7990031, "lon": -73.9290796 }, + { "lat": 40.7991068, "lon": -73.9290908 }, + { "lat": 40.7992125, "lon": -73.9291064 }, + { "lat": 40.7993152, "lon": -73.9291260 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "Harlem River Drive North;George Washington Bridge|Harlem River Drive North;George Washington Bridge;Willis Avenue Bridge;Deegan Expressway|Willis Avenue Bridge;Deegan Expressway", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "slight_left|slight_left;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 33117565, + "bounds": { + "minlat": 40.8452504, + "minlon": -73.9294983, + "maxlat": 40.8475473, + "maxlon": -73.9244310 + }, + "nodes": [ + 42453142, + 12547080796, + 60924412 + ], + "geometry": [ + { "lat": 40.8452504, "lon": -73.9244310 }, + { "lat": 40.8475360, "lon": -73.9294733 }, + { "lat": 40.8475473, "lon": -73.9294983 } + ], + "tags": { + "FIXME:hgv": "verify", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "layer": "3", + "maxspeed": "25 mph", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Washington", + "tiger:name_base_1": "181st", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Brg", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "wikidata": "Q2550421", + "wikipedia": "en:Washington Bridge" + } +}, +{ + "type": "way", + "id": 33117571, + "bounds": { + "minlat": 40.8446712, + "minlon": -73.9250695, + "maxlat": 40.8448158, + "maxlon": -73.9215080 + }, + "nodes": [ + 529799269, + 12070746303, + 12070746304, + 7899270078, + 60919144, + 7899256504, + 60919143, + 7899269996, + 7899270051, + 12213447941, + 7899270133, + 60919142, + 60922940 + ], + "geometry": [ + { "lat": 40.8447113, "lon": -73.9250695 }, + { "lat": 40.8447036, "lon": -73.9249826 }, + { "lat": 40.8446939, "lon": -73.9248482 }, + { "lat": 40.8446865, "lon": -73.9246960 }, + { "lat": 40.8446794, "lon": -73.9245504 }, + { "lat": 40.8446744, "lon": -73.9244089 }, + { "lat": 40.8446712, "lon": -73.9242674 }, + { "lat": 40.8446721, "lon": -73.9241241 }, + { "lat": 40.8446771, "lon": -73.9239674 }, + { "lat": 40.8446927, "lon": -73.9236772 }, + { "lat": 40.8447100, "lon": -73.9233780 }, + { "lat": 40.8447251, "lon": -73.9231102 }, + { "lat": 40.8448158, "lon": -73.9215080 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 33117572, + "bounds": { + "minlat": 40.8448518, + "minlon": -73.9279549, + "maxlat": 40.8454652, + "maxlon": -73.9250388 + }, + "nodes": [ + 373850889, + 7899270047, + 60919206, + 60919207, + 7899256565, + 7899270138, + 60919208, + 7899270056, + 7899270147, + 7899256574, + 7899270095, + 12213447933, + 60922834 + ], + "geometry": [ + { "lat": 40.8448518, "lon": -73.9250388 }, + { "lat": 40.8448630, "lon": -73.9251500 }, + { "lat": 40.8448756, "lon": -73.9252665 }, + { "lat": 40.8448924, "lon": -73.9254042 }, + { "lat": 40.8449116, "lon": -73.9255492 }, + { "lat": 40.8449330, "lon": -73.9256907 }, + { "lat": 40.8449562, "lon": -73.9258313 }, + { "lat": 40.8449818, "lon": -73.9259682 }, + { "lat": 40.8450112, "lon": -73.9261152 }, + { "lat": 40.8450408, "lon": -73.9262506 }, + { "lat": 40.8450719, "lon": -73.9263833 }, + { "lat": 40.8451627, "lon": -73.9267542 }, + { "lat": 40.8454652, "lon": -73.9279549 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Alexander Hamilton Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "maxspeed": "50 mph", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "concrete", + "wikidata": "Q621768", + "wikipedia": "en:Alexander Hamilton Bridge" + } +}, +{ + "type": "way", + "id": 33117579, + "bounds": { + "minlat": 40.8309959, + "minlon": -73.9398777, + "maxlat": 40.8335542, + "maxlon": -73.9378424 + }, + "nodes": [ + 13535333030, + 13535333031, + 9166241203, + 13535333036, + 42444665, + 13535333035, + 9166241202, + 13535333034, + 373777859, + 13535333033, + 42444672, + 13535333032, + 9166241199, + 42444678, + 9166241197, + 9166241198, + 42444683, + 9166241196, + 9166241195, + 42444686, + 42444690, + 13535333037, + 42444698, + 13535333038, + 9166241194, + 42444702, + 42444704, + 42444706, + 13535333039, + 42444710, + 13535333040, + 42444712 + ], + "geometry": [ + { "lat": 40.8335542, "lon": -73.9378424 }, + { "lat": 40.8334224, "lon": -73.9380090 }, + { "lat": 40.8332974, "lon": -73.9381684 }, + { "lat": 40.8332315, "lon": -73.9382463 }, + { "lat": 40.8331655, "lon": -73.9383216 }, + { "lat": 40.8330986, "lon": -73.9383950 }, + { "lat": 40.8330276, "lon": -73.9384685 }, + { "lat": 40.8329540, "lon": -73.9385399 }, + { "lat": 40.8328749, "lon": -73.9386124 }, + { "lat": 40.8328003, "lon": -73.9386766 }, + { "lat": 40.8327214, "lon": -73.9387408 }, + { "lat": 40.8326463, "lon": -73.9388000 }, + { "lat": 40.8325663, "lon": -73.9388593 }, + { "lat": 40.8324919, "lon": -73.9389133 }, + { "lat": 40.8324328, "lon": -73.9389533 }, + { "lat": 40.8323628, "lon": -73.9389982 }, + { "lat": 40.8322961, "lon": -73.9390369 }, + { "lat": 40.8322255, "lon": -73.9390786 }, + { "lat": 40.8321442, "lon": -73.9391226 }, + { "lat": 40.8320636, "lon": -73.9391646 }, + { "lat": 40.8319796, "lon": -73.9392032 }, + { "lat": 40.8318941, "lon": -73.9392383 }, + { "lat": 40.8317213, "lon": -73.9393051 }, + { "lat": 40.8316454, "lon": -73.9393372 }, + { "lat": 40.8315757, "lon": -73.9393737 }, + { "lat": 40.8315152, "lon": -73.9394113 }, + { "lat": 40.8314588, "lon": -73.9394523 }, + { "lat": 40.8314004, "lon": -73.9395006 }, + { "lat": 40.8313398, "lon": -73.9395551 }, + { "lat": 40.8311017, "lon": -73.9397850 }, + { "lat": 40.8310492, "lon": -73.9398334 }, + { "lat": 40.8309959, "lon": -73.9398777 } + ], + "tags": { + "alt_name": "Willie Mays Drive", + "bicycle": "use_sidepath", + "cycleway:left": "separate", + "cycleway:right": "no", + "description": "This honorary street name memorializes Willie Mays.", + "hgv": "destination", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Harlem River Driveway", + "name:etymology:wikidata": "Q597451", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Harlem River", + "tiger:name_base_1": "159th", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Dr", + "tiger:name_type_1": "St" + } +}, +{ + "type": "way", + "id": 33117582, + "bounds": { + "minlat": 40.8297960, + "minlon": -73.9353893, + "maxlat": 40.8342754, + "maxlon": -73.9350862 + }, + "nodes": [ + 42444564, + 42444560, + 9166241140, + 42444557, + 9166241139, + 9166241138, + 42444553, + 373774813, + 9166241137, + 5175281848, + 9166241136, + 42425752 + ], + "geometry": [ + { "lat": 40.8342754, "lon": -73.9353609 }, + { "lat": 40.8340512, "lon": -73.9353767 }, + { "lat": 40.8338371, "lon": -73.9353843 }, + { "lat": 40.8336206, "lon": -73.9353893 }, + { "lat": 40.8334024, "lon": -73.9353854 }, + { "lat": 40.8331819, "lon": -73.9353763 }, + { "lat": 40.8329660, "lon": -73.9353629 }, + { "lat": 40.8306661, "lon": -73.9351777 }, + { "lat": 40.8304481, "lon": -73.9351597 }, + { "lat": 40.8302316, "lon": -73.9351393 }, + { "lat": 40.8300154, "lon": -73.9351121 }, + { "lat": 40.8297960, "lon": -73.9350862 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "tiger:cfcc": "A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "Harlem River", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 33117583, + "bounds": { + "minlat": 40.8272300, + "minlon": -73.9350862, + "maxlat": 40.8297960, + "maxlon": -73.9347302 + }, + "nodes": [ + 42425752, + 5175281845, + 42425417, + 589927932 + ], + "geometry": [ + { "lat": 40.8297960, "lon": -73.9350862 }, + { "lat": 40.8293277, "lon": -73.9350217 }, + { "lat": 40.8282864, "lon": -73.9348645 }, + { "lat": 40.8272300, "lon": -73.9347302 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "tiger:cfcc": "A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "Harlem River", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 33117585, + "bounds": { + "minlat": 40.8280476, + "minlon": -73.9348029, + "maxlat": 40.8281103, + "maxlon": -73.9345792 + }, + "nodes": [ + 371337239, + 13535333132, + 5959378994, + 13535333131, + 2140998756, + 13535333130, + 13320112971 + ], + "geometry": [ + { "lat": 40.8280476, "lon": -73.9345792 }, + { "lat": 40.8280542, "lon": -73.9346244 }, + { "lat": 40.8280608, "lon": -73.9346618 }, + { "lat": 40.8280697, "lon": -73.9346986 }, + { "lat": 40.8280806, "lon": -73.9347310 }, + { "lat": 40.8280927, "lon": -73.9347636 }, + { "lat": 40.8281103, "lon": -73.9348029 } + ], + "tags": { + "alt_name": "Charles Hamilton Houston Boulevard", + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "description": "This honorary street name memorializes Charles Hamilton Houston.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "layer": "2", + "maxspeed": "25 mph", + "name": "West 155th Street", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 33117587, + "bounds": { + "minlat": 40.8277438, + "minlon": -73.9355807, + "maxlat": 40.8279598, + "maxlon": -73.9350740 + }, + "nodes": [ + 373850902, + 13001401203, + 5959424805 + ], + "geometry": [ + { "lat": 40.8279598, "lon": -73.9350740 }, + { "lat": 40.8278977, "lon": -73.9352387 }, + { "lat": 40.8277438, "lon": -73.9355807 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Macombs Place", + "name:etymology:wikidata": "Q328356", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 33117588, + "bounds": { + "minlat": 40.8267401, + "minlon": -73.9355215, + "maxlat": 40.8275839, + "maxlon": -73.9353119 + }, + "nodes": [ + 589927943, + 9150629583, + 42440046, + 373768354, + 9150629582, + 373768357, + 13535333119, + 373768359, + 4207863951, + 373768360, + 9150629581, + 371337224, + 9150629572, + 11218641147, + 371337226 + ], + "geometry": [ + { "lat": 40.8275839, "lon": -73.9353210 }, + { "lat": 40.8275271, "lon": -73.9353380 }, + { "lat": 40.8274678, "lon": -73.9353494 }, + { "lat": 40.8274022, "lon": -73.9353524 }, + { "lat": 40.8273409, "lon": -73.9353466 }, + { "lat": 40.8271944, "lon": -73.9353223 }, + { "lat": 40.8271388, "lon": -73.9353123 }, + { "lat": 40.8270945, "lon": -73.9353119 }, + { "lat": 40.8270561, "lon": -73.9353186 }, + { "lat": 40.8270122, "lon": -73.9353349 }, + { "lat": 40.8269715, "lon": -73.9353541 }, + { "lat": 40.8269286, "lon": -73.9353809 }, + { "lat": 40.8268358, "lon": -73.9354461 }, + { "lat": 40.8268029, "lon": -73.9354720 }, + { "lat": 40.8267401, "lon": -73.9355215 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam C Powell", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "turn:lanes": "left|through", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 33117592, + "bounds": { + "minlat": 40.8142114, + "minlon": -73.9352228, + "maxlat": 40.8144025, + "maxlon": -73.9341955 + }, + "nodes": [ + 5843576975, + 5175281856, + 7732264888, + 9903106218, + 7732264887, + 9163819565, + 371337174, + 373850912 + ], + "geometry": [ + { "lat": 40.8142114, "lon": -73.9341955 }, + { "lat": 40.8142468, "lon": -73.9347320 }, + { "lat": 40.8142516, "lon": -73.9347821 }, + { "lat": 40.8142619, "lon": -73.9348437 }, + { "lat": 40.8142757, "lon": -73.9349006 }, + { "lat": 40.8142934, "lon": -73.9349583 }, + { "lat": 40.8143126, "lon": -73.9350103 }, + { "lat": 40.8144025, "lon": -73.9352228 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Madison Avenue Bridge", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes", + "wikidata": "Q3751430", + "wikipedia": "en:Madison Avenue Bridge" + } +}, +{ + "type": "way", + "id": 33117594, + "bounds": { + "minlat": 40.8120958, + "minlon": -73.9360803, + "maxlat": 40.8133978, + "maxlon": -73.9351378 + }, + "nodes": [ + 4215812469, + 9559342281, + 7541804762 + ], + "geometry": [ + { "lat": 40.8133978, "lon": -73.9351378 }, + { "lat": 40.8121880, "lon": -73.9360411 }, + { "lat": 40.8120958, "lon": -73.9360803 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "turn:lanes": "right", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 33117595, + "bounds": { + "minlat": 40.8135574, + "minlon": -73.9348884, + "maxlat": 40.8141235, + "maxlon": -73.9337093 + }, + "nodes": [ + 371337187, + 373762361, + 9163819566, + 9163819567, + 373762362, + 9163819568, + 9163819569, + 9903106219, + 373762363, + 9163819570, + 371337188, + 9163819571, + 371337189, + 7477281988 + ], + "geometry": [ + { "lat": 40.8135574, "lon": -73.9348884 }, + { "lat": 40.8138904, "lon": -73.9346379 }, + { "lat": 40.8139320, "lon": -73.9346036 }, + { "lat": 40.8139670, "lon": -73.9345677 }, + { "lat": 40.8140024, "lon": -73.9345233 }, + { "lat": 40.8140299, "lon": -73.9344784 }, + { "lat": 40.8140574, "lon": -73.9344186 }, + { "lat": 40.8140775, "lon": -73.9343611 }, + { "lat": 40.8140960, "lon": -73.9343020 }, + { "lat": 40.8141102, "lon": -73.9342368 }, + { "lat": 40.8141200, "lon": -73.9341654 }, + { "lat": 40.8141235, "lon": -73.9340943 }, + { "lat": 40.8141233, "lon": -73.9340180 }, + { "lat": 40.8141169, "lon": -73.9337093 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Madison Avenue Bridge", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "wikidata": "Q3751430", + "wikipedia": "en:Madison Avenue Bridge" + } +}, +{ + "type": "way", + "id": 33117596, + "bounds": { + "minlat": 40.8137894, + "minlon": -73.9320520, + "maxlat": 40.8140960, + "maxlon": -73.9313758 + }, + "nodes": [ + 2482581646, + 9051549342, + 7612920617, + 42779675 + ], + "geometry": [ + { "lat": 40.8137894, "lon": -73.9313758 }, + { "lat": 40.8138305, "lon": -73.9314706 }, + { "lat": 40.8139902, "lon": -73.9318277 }, + { "lat": 40.8140960, "lon": -73.9320520 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 33117603, + "bounds": { + "minlat": 40.8096053, + "minlon": -73.9350781, + "maxlat": 40.8135861, + "maxlon": -73.9345073 + }, + "nodes": [ + 373760396, + 9153699962, + 5871327695, + 9153699964, + 5871327697, + 9153699965, + 9153699968, + 5871327696, + 42444762, + 9153699970, + 9153699971, + 42444758, + 6540051711, + 42444755, + 6532254350, + 9153699974, + 6532254351 + ], + "geometry": [ + { "lat": 40.8135861, "lon": -73.9345073 }, + { "lat": 40.8132187, "lon": -73.9345252 }, + { "lat": 40.8124057, "lon": -73.9346082 }, + { "lat": 40.8122572, "lon": -73.9346256 }, + { "lat": 40.8121274, "lon": -73.9346485 }, + { "lat": 40.8119864, "lon": -73.9346737 }, + { "lat": 40.8118309, "lon": -73.9347049 }, + { "lat": 40.8116673, "lon": -73.9347403 }, + { "lat": 40.8106678, "lon": -73.9349926 }, + { "lat": 40.8105398, "lon": -73.9350214 }, + { "lat": 40.8104312, "lon": -73.9350440 }, + { "lat": 40.8103281, "lon": -73.9350608 }, + { "lat": 40.8101793, "lon": -73.9350727 }, + { "lat": 40.8100344, "lon": -73.9350781 }, + { "lat": 40.8099068, "lon": -73.9350741 }, + { "lat": 40.8097820, "lon": -73.9350627 }, + { "lat": 40.8096053, "lon": -73.9350420 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD" + } +}, +{ + "type": "way", + "id": 33117604, + "bounds": { + "minlat": 40.8065690, + "minlon": -73.9341865, + "maxlat": 40.8076008, + "maxlon": -73.9333826 + }, + "nodes": [ + 9153699982, + 6515254131, + 6515268514, + 6159309159, + 373755525 + ], + "geometry": [ + { "lat": 40.8076008, "lon": -73.9341865 }, + { "lat": 40.8074018, "lon": -73.9340499 }, + { "lat": 40.8071269, "lon": -73.9338485 }, + { "lat": 40.8069056, "lon": -73.9336562 }, + { "lat": 40.8065690, "lon": -73.9333826 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 33117932, + "bounds": { + "minlat": 40.7375608, + "minlon": -73.9742051, + "maxlat": 40.7397165, + "maxlon": -73.9729308 + }, + "nodes": [ + 9141034853, + 370913774, + 370913776, + 9141034854, + 370913777, + 4412043543, + 9141034855, + 370913779 + ], + "geometry": [ + { "lat": 40.7375608, "lon": -73.9742051 }, + { "lat": 40.7385104, "lon": -73.9735165 }, + { "lat": 40.7387073, "lon": -73.9733824 }, + { "lat": 40.7389086, "lon": -73.9732637 }, + { "lat": 40.7391086, "lon": -73.9731623 }, + { "lat": 40.7393202, "lon": -73.9730775 }, + { "lat": 40.7395308, "lon": -73.9730032 }, + { "lat": 40.7397165, "lon": -73.9729308 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "South Street Viaduct", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 33117933, + "bounds": { + "minlat": 40.7383390, + "minlon": -73.9738156, + "maxlat": 40.7397291, + "maxlon": -73.9730944 + }, + "nodes": [ + 589100393, + 42450720, + 9141034871, + 42450724, + 42450734, + 9141034870, + 42450741, + 42423774 + ], + "geometry": [ + { "lat": 40.7397291, "lon": -73.9730944 }, + { "lat": 40.7395167, "lon": -73.9731548 }, + { "lat": 40.7393004, "lon": -73.9732353 }, + { "lat": 40.7390916, "lon": -73.9733194 }, + { "lat": 40.7388729, "lon": -73.9734334 }, + { "lat": 40.7387147, "lon": -73.9735277 }, + { "lat": 40.7385668, "lon": -73.9736228 }, + { "lat": 40.7383390, "lon": -73.9738156 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 33144915, + "bounds": { + "minlat": 40.8717540, + "minlon": -73.9314089, + "maxlat": 40.8765654, + "maxlon": -73.9277424 + }, + "nodes": [ + 374446047, + 2560788363, + 2560788364, + 2560788362, + 2560788360, + 2560788361, + 2560788365, + 2560788367, + 2560788368, + 2560788369, + 2560788370, + 2560788371, + 2560788373, + 2560788375, + 2560788377, + 2560788379, + 2560788380, + 2560788378, + 2560788376, + 2560788374, + 2560788372, + 374446041, + 2560788366, + 374446047, + 374446056, + 374446063, + 374446070, + 374446078, + 2560788355, + 374446087, + 374446094, + 374446102, + 374446111, + 2560788349, + 11670993651, + 374446117, + 374446142, + 11670993649, + 374446164, + 11670993645, + 374446172, + 11670993641, + 11670993639 + ], + "geometry": [ + { "lat": 40.8763802, "lon": -73.9280977 }, + { "lat": 40.8763989, "lon": -73.9280505 }, + { "lat": 40.8764027, "lon": -73.9280070 }, + { "lat": 40.8763969, "lon": -73.9279580 }, + { "lat": 40.8763924, "lon": -73.9278967 }, + { "lat": 40.8763947, "lon": -73.9278447 }, + { "lat": 40.8764037, "lon": -73.9278123 }, + { "lat": 40.8764166, "lon": -73.9277825 }, + { "lat": 40.8764353, "lon": -73.9277629 }, + { "lat": 40.8764533, "lon": -73.9277484 }, + { "lat": 40.8764810, "lon": -73.9277424 }, + { "lat": 40.8765013, "lon": -73.9277446 }, + { "lat": 40.8765239, "lon": -73.9277548 }, + { "lat": 40.8765419, "lon": -73.9277705 }, + { "lat": 40.8765564, "lon": -73.9277936 }, + { "lat": 40.8765645, "lon": -73.9278336 }, + { "lat": 40.8765654, "lon": -73.9278600 }, + { "lat": 40.8765616, "lon": -73.9278899 }, + { "lat": 40.8765497, "lon": -73.9279180 }, + { "lat": 40.8765297, "lon": -73.9279555 }, + { "lat": 40.8765023, "lon": -73.9279943 }, + { "lat": 40.8764654, "lon": -73.9280251 }, + { "lat": 40.8764124, "lon": -73.9280556 }, + { "lat": 40.8763802, "lon": -73.9280977 }, + { "lat": 40.8762827, "lon": -73.9282515 }, + { "lat": 40.8761425, "lon": -73.9284497 }, + { "lat": 40.8759737, "lon": -73.9286618 }, + { "lat": 40.8758654, "lon": -73.9287867 }, + { "lat": 40.8757834, "lon": -73.9288700 }, + { "lat": 40.8757070, "lon": -73.9289659 }, + { "lat": 40.8755887, "lon": -73.9290583 }, + { "lat": 40.8754712, "lon": -73.9291493 }, + { "lat": 40.8753550, "lon": -73.9292192 }, + { "lat": 40.8749512, "lon": -73.9294427 }, + { "lat": 40.8746033, "lon": -73.9296427 }, + { "lat": 40.8745563, "lon": -73.9296787 }, + { "lat": 40.8740975, "lon": -73.9300013 }, + { "lat": 40.8740255, "lon": -73.9300563 }, + { "lat": 40.8735868, "lon": -73.9303204 }, + { "lat": 40.8722652, "lon": -73.9311199 }, + { "lat": 40.8722591, "lon": -73.9311233 }, + { "lat": 40.8718348, "lon": -73.9313632 }, + { "lat": 40.8717540, "lon": -73.9314089 } + ], + "tags": { + "bicycle": "yes", + "highway": "track", + "incline": "0%", + "smoothness": "excellent", + "surface": "asphalt", + "tracktype": "grade1", + "width": "3.4" + } +}, +{ + "type": "way", + "id": 33145049, + "bounds": { + "minlat": 40.8738932, + "minlon": -73.9300013, + "maxlat": 40.8740975, + "maxlon": -73.9294820 + }, + "nodes": [ + 374446142, + 374449338, + 374449929 + ], + "geometry": [ + { "lat": 40.8740975, "lon": -73.9300013 }, + { "lat": 40.8739715, "lon": -73.9296758 }, + { "lat": 40.8738932, "lon": -73.9294820 } + ], + "tags": { + "bicycle": "yes", + "highway": "track", + "surface": "paved", + "tracktype": "grade1" + } +}, +{ + "type": "way", + "id": 33145084, + "bounds": { + "minlat": 40.8735692, + "minlon": -73.9303204, + "maxlat": 40.8737755, + "maxlon": -73.9295870 + }, + "nodes": [ + 374446164, + 2560788276, + 374449895, + 2560788277, + 374449901, + 11670626255, + 2560788278, + 374449909, + 2560788279, + 374449916, + 374449305 + ], + "geometry": [ + { "lat": 40.8735868, "lon": -73.9303204 }, + { "lat": 40.8735698, "lon": -73.9302272 }, + { "lat": 40.8735692, "lon": -73.9301487 }, + { "lat": 40.8735721, "lon": -73.9300708 }, + { "lat": 40.8735838, "lon": -73.9299825 }, + { "lat": 40.8735975, "lon": -73.9299259 }, + { "lat": 40.8736049, "lon": -73.9298955 }, + { "lat": 40.8736406, "lon": -73.9298122 }, + { "lat": 40.8736733, "lon": -73.9297399 }, + { "lat": 40.8737114, "lon": -73.9296719 }, + { "lat": 40.8737755, "lon": -73.9295870 } + ], + "tags": { + "foot": "yes", + "highway": "track", + "surface": "asphalt", + "tracktype": "grade1" + } +}, +{ + "type": "way", + "id": 33145122, + "bounds": { + "minlat": 40.8744464, + "minlon": -73.9296787, + "maxlat": 40.8745563, + "maxlon": -73.9293577 + }, + "nodes": [ + 374446117, + 374449351, + 374450932 + ], + "geometry": [ + { "lat": 40.8745563, "lon": -73.9296787 }, + { "lat": 40.8744599, "lon": -73.9294031 }, + { "lat": 40.8744464, "lon": -73.9293577 } + ], + "tags": { + "bicycle": "yes", + "highway": "track", + "surface": "paved", + "tracktype": "grade1" + } +}, +{ + "type": "way", + "id": 33145993, + "bounds": { + "minlat": 40.8689123, + "minlon": -73.9307213, + "maxlat": 40.8758059, + "maxlon": -73.9251568 + }, + "nodes": [ + 374466116, + 60916208, + 10181840414, + 10181840413, + 42458596, + 60915041, + 60915042, + 60915085, + 8584784522, + 60915086, + 60915087, + 12063632751, + 12063632750, + 5771241290, + 6057046159, + 8584784524 + ], + "geometry": [ + { "lat": 40.8689123, "lon": -73.9307213 }, + { "lat": 40.8696881, "lon": -73.9302455 }, + { "lat": 40.8708811, "lon": -73.9295249 }, + { "lat": 40.8720434, "lon": -73.9287941 }, + { "lat": 40.8728201, "lon": -73.9282785 }, + { "lat": 40.8733011, "lon": -73.9279381 }, + { "lat": 40.8736515, "lon": -73.9276720 }, + { "lat": 40.8740038, "lon": -73.9273600 }, + { "lat": 40.8741817, "lon": -73.9271736 }, + { "lat": 40.8743486, "lon": -73.9269879 }, + { "lat": 40.8746921, "lon": -73.9265961 }, + { "lat": 40.8752716, "lon": -73.9258792 }, + { "lat": 40.8753496, "lon": -73.9257815 }, + { "lat": 40.8754234, "lon": -73.9256846 }, + { "lat": 40.8756313, "lon": -73.9253980 }, + { "lat": 40.8758059, "lon": -73.9251568 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 33145995, + "bounds": { + "minlat": 40.8682475, + "minlon": -73.9311123, + "maxlat": 40.8689123, + "maxlon": -73.9307213 + }, + "nodes": [ + 374470740, + 374466116 + ], + "geometry": [ + { "lat": 40.8682475, "lon": -73.9311123 }, + { "lat": 40.8689123, "lon": -73.9307213 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 33146263, + "bounds": { + "minlat": 40.8669977, + "minlon": -73.9318777, + "maxlat": 40.8682475, + "maxlon": -73.9311123 + }, + "nodes": [ + 60916191, + 374470740 + ], + "geometry": [ + { "lat": 40.8669977, "lon": -73.9318777 }, + { "lat": 40.8682475, "lon": -73.9311123 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 33146267, + "bounds": { + "minlat": 40.8668075, + "minlon": -73.9319910, + "maxlat": 40.8669977, + "maxlon": -73.9318777 + }, + "nodes": [ + 374472698, + 60916191 + ], + "geometry": [ + { "lat": 40.8668075, "lon": -73.9319910 }, + { "lat": 40.8669977, "lon": -73.9318777 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 33146350, + "bounds": { + "minlat": 40.8663173, + "minlon": -73.9327916, + "maxlat": 40.8698239, + "maxlon": -73.9307590 + }, + "nodes": [ + 374479219, + 60916157, + 60916100, + 60916139, + 60916140, + 374475605 + ], + "geometry": [ + { "lat": 40.8698239, "lon": -73.9307590 }, + { "lat": 40.8695712, "lon": -73.9308893 }, + { "lat": 40.8680200, "lon": -73.9317047 }, + { "lat": 40.8669047, "lon": -73.9324056 }, + { "lat": 40.8665076, "lon": -73.9326660 }, + { "lat": 40.8663173, "lon": -73.9327916 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "concrete", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 33146406, + "bounds": { + "minlat": 40.8515102, + "minlon": -73.9433114, + "maxlat": 40.8556050, + "maxlon": -73.9400797 + }, + "nodes": [ + 12312236338, + 7908594137, + 60916557, + 7908594143, + 7908594149, + 7908594155, + 7908594161, + 7908594167, + 7908594173, + 7908594123, + 7908594128, + 60916559, + 374505843, + 60916560, + 7908594133, + 374512717, + 7908594139, + 60916561, + 374512736, + 60916562, + 7908594145, + 7908594151, + 42458663 + ], + "geometry": [ + { "lat": 40.8556050, "lon": -73.9400797 }, + { "lat": 40.8553666, "lon": -73.9402494 }, + { "lat": 40.8551709, "lon": -73.9403789 }, + { "lat": 40.8549775, "lon": -73.9405052 }, + { "lat": 40.8547776, "lon": -73.9406337 }, + { "lat": 40.8545792, "lon": -73.9407613 }, + { "lat": 40.8543815, "lon": -73.9408839 }, + { "lat": 40.8541771, "lon": -73.9410086 }, + { "lat": 40.8539863, "lon": -73.9411292 }, + { "lat": 40.8537915, "lon": -73.9412525 }, + { "lat": 40.8536107, "lon": -73.9413692 }, + { "lat": 40.8533995, "lon": -73.9415101 }, + { "lat": 40.8532058, "lon": -73.9416437 }, + { "lat": 40.8530152, "lon": -73.9417845 }, + { "lat": 40.8528296, "lon": -73.9419309 }, + { "lat": 40.8526437, "lon": -73.9420889 }, + { "lat": 40.8524617, "lon": -73.9422543 }, + { "lat": 40.8522809, "lon": -73.9424279 }, + { "lat": 40.8521147, "lon": -73.9425993 }, + { "lat": 40.8519455, "lon": -73.9427825 }, + { "lat": 40.8517828, "lon": -73.9429714 }, + { "lat": 40.8516239, "lon": -73.9431673 }, + { "lat": 40.8515102, "lon": -73.9433114 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 33146650, + "bounds": { + "minlat": 40.8613086, + "minlon": -73.9327678, + "maxlat": 40.8628168, + "maxlon": -73.9324380 + }, + "nodes": [ + 374486339, + 42434550, + 42434547, + 42434546, + 42434545, + 42434543, + 42434540, + 42434537, + 42434536, + 42434526, + 42434519 + ], + "geometry": [ + { "lat": 40.8628168, "lon": -73.9327678 }, + { "lat": 40.8627155, "lon": -73.9327670 }, + { "lat": 40.8626185, "lon": -73.9327433 }, + { "lat": 40.8624816, "lon": -73.9326896 }, + { "lat": 40.8623690, "lon": -73.9326481 }, + { "lat": 40.8622420, "lon": -73.9326000 }, + { "lat": 40.8621104, "lon": -73.9325515 }, + { "lat": 40.8619024, "lon": -73.9325019 }, + { "lat": 40.8617006, "lon": -73.9324657 }, + { "lat": 40.8615059, "lon": -73.9324429 }, + { "lat": 40.8613086, "lon": -73.9324380 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "lanes": "2", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 33146652, + "bounds": { + "minlat": 40.8628168, + "minlon": -73.9327678, + "maxlat": 40.8630799, + "maxlon": -73.9326834 + }, + "nodes": [ + 374486503, + 42434555, + 42434551, + 374486339 + ], + "geometry": [ + { "lat": 40.8630799, "lon": -73.9326834 }, + { "lat": 40.8629982, "lon": -73.9327274 }, + { "lat": 40.8628992, "lon": -73.9327546 }, + { "lat": 40.8628168, "lon": -73.9327678 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "cycleway": "lane", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "lanes": "2", + "layer": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 33146748, + "bounds": { + "minlat": 40.8632904, + "minlon": -73.9325365, + "maxlat": 40.8637510, + "maxlon": -73.9319922 + }, + "nodes": [ + 42434559, + 374489538, + 9496867912, + 374498281 + ], + "geometry": [ + { "lat": 40.8632904, "lon": -73.9325365 }, + { "lat": 40.8634018, "lon": -73.9323844 }, + { "lat": 40.8636034, "lon": -73.9321610 }, + { "lat": 40.8637510, "lon": -73.9319922 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 33146899, + "bounds": { + "minlat": 40.8653840, + "minlon": -73.9322240, + "maxlat": 40.8657874, + "maxlon": -73.9312514 + }, + "nodes": [ + 42434670, + 374492893, + 374492902, + 3808464436, + 374492909, + 3805630550, + 374492918, + 374492926, + 374492937, + 10051021924, + 374492952, + 374492962, + 374492971, + 42434611 + ], + "geometry": [ + { "lat": 40.8656302, "lon": -73.9312514 }, + { "lat": 40.8657149, "lon": -73.9314156 }, + { "lat": 40.8657467, "lon": -73.9315006 }, + { "lat": 40.8657753, "lon": -73.9315924 }, + { "lat": 40.8657848, "lon": -73.9316711 }, + { "lat": 40.8657874, "lon": -73.9317495 }, + { "lat": 40.8657733, "lon": -73.9318501 }, + { "lat": 40.8657443, "lon": -73.9319405 }, + { "lat": 40.8657065, "lon": -73.9320064 }, + { "lat": 40.8656689, "lon": -73.9320468 }, + { "lat": 40.8656313, "lon": -73.9320777 }, + { "lat": 40.8655542, "lon": -73.9321372 }, + { "lat": 40.8654675, "lon": -73.9321907 }, + { "lat": 40.8653840, "lon": -73.9322240 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 33146938, + "bounds": { + "minlat": 40.8641940, + "minlon": -73.9325826, + "maxlat": 40.8642506, + "maxlon": -73.9325114 + }, + "nodes": [ + 1209796168, + 374494536 + ], + "geometry": [ + { "lat": 40.8642506, "lon": -73.9325826 }, + { "lat": 40.8641940, "lon": -73.9325114 } + ], + "tags": { + "highway": "residential", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 33146985, + "bounds": { + "minlat": 40.8638295, + "minlon": -73.9318220, + "maxlat": 40.8639056, + "maxlon": -73.9314679 + }, + "nodes": [ + 374494595, + 374495674, + 374495682, + 374495692, + 42434780 + ], + "geometry": [ + { "lat": 40.8638640, "lon": -73.9318220 }, + { "lat": 40.8638295, "lon": -73.9316999 }, + { "lat": 40.8638315, "lon": -73.9316141 }, + { "lat": 40.8638478, "lon": -73.9315578 }, + { "lat": 40.8639056, "lon": -73.9314679 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "residential", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 33147042, + "bounds": { + "minlat": 40.8637510, + "minlon": -73.9319922, + "maxlat": 40.8639813, + "maxlon": -73.9317289 + }, + "nodes": [ + 374498281, + 374498287 + ], + "geometry": [ + { "lat": 40.8637510, "lon": -73.9319922 }, + { "lat": 40.8639813, "lon": -73.9317289 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "cycleway:right": "lane", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "layer": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 33147044, + "bounds": { + "minlat": 40.8639813, + "minlon": -73.9317289, + "maxlat": 40.8646389, + "maxlon": -73.9309931 + }, + "nodes": [ + 374498287, + 374489545, + 42434722 + ], + "geometry": [ + { "lat": 40.8639813, "lon": -73.9317289 }, + { "lat": 40.8644360, "lon": -73.9312319 }, + { "lat": 40.8646389, "lon": -73.9309931 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 33804436, + "bounds": { + "minlat": 40.7360982, + "minlon": -73.9790127, + "maxlat": 40.7362172, + "maxlon": -73.9787384 + }, + "nodes": [ + 387184869, + 3601295727, + 3601295748, + 6331080435 + ], + "geometry": [ + { "lat": 40.7362172, "lon": -73.9790127 }, + { "lat": 40.7361488, "lon": -73.9788523 }, + { "lat": 40.7361179, "lon": -73.9787811 }, + { "lat": 40.7360982, "lon": -73.9787384 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Peter Cooper Road", + "name:etymology:wikidata": "Q935291", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 34079830, + "bounds": { + "minlat": 40.7375568, + "minlon": -73.9845164, + "maxlat": 40.7377447, + "maxlon": -73.9840840 + }, + "nodes": [ + 390519635, + 4132605229, + 8699785164 + ], + "geometry": [ + { "lat": 40.7375568, "lon": -73.9840840 }, + { "lat": 40.7376166, "lon": -73.9842110 }, + { "lat": 40.7377447, "lon": -73.9845164 } + ], + "tags": { + "alt_name": "Gramercy Park North", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 21st Street", + "name:ru": "Восточная 21-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9" + } +}, +{ + "type": "way", + "id": 34079834, + "bounds": { + "minlat": 40.7360238, + "minlon": -73.9845133, + "maxlat": 40.7369675, + "maxlon": -73.9822654 + }, + "nodes": [ + 42439170, + 4132605204, + 12181309637, + 12181309638, + 10166118083, + 42439178 + ], + "geometry": [ + { "lat": 40.7369675, "lon": -73.9845133 }, + { "lat": 40.7369132, "lon": -73.9843743 }, + { "lat": 40.7361217, "lon": -73.9824814 }, + { "lat": 40.7361050, "lon": -73.9824430 }, + { "lat": 40.7360780, "lon": -73.9823806 }, + { "lat": 40.7360238, "lon": -73.9822654 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "delivery", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9.5" + } +}, +{ + "type": "way", + "id": 34080062, + "bounds": { + "minlat": 40.7396764, + "minlon": -73.9970019, + "maxlat": 40.7422336, + "maxlon": -73.9909614 + }, + "nodes": [ + 42427374, + 9683231692, + 12181309656, + 7781159300, + 42427371, + 7781159301, + 12181309653, + 12181309655, + 7781143530, + 42427369 + ], + "geometry": [ + { "lat": 40.7422336, "lon": -73.9970019 }, + { "lat": 40.7421785, "lon": -73.9968877 }, + { "lat": 40.7411145, "lon": -73.9943661 }, + { "lat": 40.7410866, "lon": -73.9943000 }, + { "lat": 40.7410305, "lon": -73.9941671 }, + { "lat": 40.7409761, "lon": -73.9940380 }, + { "lat": 40.7397629, "lon": -73.9911638 }, + { "lat": 40.7397509, "lon": -73.9911354 }, + { "lat": 40.7397255, "lon": -73.9910755 }, + { "lat": 40.7396764, "lon": -73.9909614 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 20th Street", + "name:ru": "Западная 20-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 34080149, + "bounds": { + "minlat": 40.7349161, + "minlon": -73.9899684, + "maxlat": 40.7353170, + "maxlon": -73.9898706 + }, + "nodes": [ + 4205565498, + 12179582174, + 8569045545, + 8569045612, + 12179582173, + 8569045541, + 12179582172, + 595403439, + 4983147814, + 12179582168, + 4597668018, + 42431452 + ], + "geometry": [ + { "lat": 40.7349161, "lon": -73.9899591 }, + { "lat": 40.7349602, "lon": -73.9899637 }, + { "lat": 40.7350021, "lon": -73.9899669 }, + { "lat": 40.7350380, "lon": -73.9899684 }, + { "lat": 40.7350714, "lon": -73.9899670 }, + { "lat": 40.7351054, "lon": -73.9899614 }, + { "lat": 40.7351419, "lon": -73.9899511 }, + { "lat": 40.7351796, "lon": -73.9899387 }, + { "lat": 40.7352144, "lon": -73.9899238 }, + { "lat": 40.7352380, "lon": -73.9899127 }, + { "lat": 40.7352638, "lon": -73.9898989 }, + { "lat": 40.7353170, "lon": -73.9898706 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Union Square East", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 34080174, + "bounds": { + "minlat": 40.7403752, + "minlon": -73.9895193, + "maxlat": 40.7409542, + "maxlon": -73.9892691 + }, + "nodes": [ + 9470120002, + 10177673809, + 9470120001, + 10177673810, + 3857400393, + 10179028036, + 42428198, + 10179045294, + 3857400404, + 8264701247 + ], + "geometry": [ + { "lat": 40.7409542, "lon": -73.9892691 }, + { "lat": 40.7409355, "lon": -73.9892808 }, + { "lat": 40.7408533, "lon": -73.9893617 }, + { "lat": 40.7408374, "lon": -73.9893708 }, + { "lat": 40.7406756, "lon": -73.9894219 }, + { "lat": 40.7406634, "lon": -73.9894253 }, + { "lat": 40.7406193, "lon": -73.9894421 }, + { "lat": 40.7405998, "lon": -73.9894486 }, + { "lat": 40.7405553, "lon": -73.9894658 }, + { "lat": 40.7403752, "lon": -73.9895193 } + ], + "tags": { + "bicycle": "designated", + "cycleway:right": "lane", + "foot": "designated", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "traffic_calming": "chicane", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 34080508, + "bounds": { + "minlat": 40.7411769, + "minlon": -73.9898765, + "maxlat": 40.7415506, + "maxlon": -73.9895966 + }, + "nodes": [ + 42437881, + 3009534450, + 8265964352 + ], + "geometry": [ + { "lat": 40.7415506, "lon": -73.9895966 }, + { "lat": 40.7414574, "lon": -73.9896662 }, + { "lat": 40.7411769, "lon": -73.9898765 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 34625442, + "bounds": { + "minlat": 40.7423282, + "minlon": -74.0087078, + "maxlat": 40.7428568, + "maxlon": -74.0086050 + }, + "nodes": [ + 11027819091, + 12161932064, + 11049420901 + ], + "geometry": [ + { "lat": 40.7423282, "lon": -74.0087078 }, + { "lat": 40.7424705, "lon": -74.0086913 }, + { "lat": 40.7428568, "lon": -74.0086050 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 34625443, + "bounds": { + "minlat": 40.7404761, + "minlon": -74.0094006, + "maxlat": 40.7415084, + "maxlon": -74.0090814 + }, + "nodes": [ + 11027819089, + 8862521328, + 373897122, + 8862521330, + 373897123, + 8862521337, + 246647954, + 12161932082, + 8862521334, + 12161932083, + 246647955 + ], + "geometry": [ + { "lat": 40.7415084, "lon": -74.0090814 }, + { "lat": 40.7412670, "lon": -74.0091342 }, + { "lat": 40.7411118, "lon": -74.0091667 }, + { "lat": 40.7410192, "lon": -74.0091889 }, + { "lat": 40.7409190, "lon": -74.0092176 }, + { "lat": 40.7408190, "lon": -74.0092516 }, + { "lat": 40.7407343, "lon": -74.0092838 }, + { "lat": 40.7406549, "lon": -74.0093154 }, + { "lat": 40.7405814, "lon": -74.0093470 }, + { "lat": 40.7405258, "lon": -74.0093738 }, + { "lat": 40.7404761, "lon": -74.0094006 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 34625463, + "bounds": { + "minlat": 40.7486964, + "minlon": -74.0083005, + "maxlat": 40.7502621, + "maxlon": -74.0076825 + }, + "nodes": [ + 8703673333, + 12161232217, + 9143574621, + 12161232218, + 246579610, + 9143574620, + 12161232219, + 246650838, + 8703673334, + 42437915, + 12161232220, + 246579582, + 246579614, + 12161224686, + 373910795, + 12161224669, + 246651361, + 12161224668, + 9143569897, + 42427494 + ], + "geometry": [ + { "lat": 40.7486964, "lon": -74.0076825 }, + { "lat": 40.7487787, "lon": -74.0077055 }, + { "lat": 40.7488304, "lon": -74.0077235 }, + { "lat": 40.7488933, "lon": -74.0077485 }, + { "lat": 40.7489568, "lon": -74.0077760 }, + { "lat": 40.7490334, "lon": -74.0078144 }, + { "lat": 40.7491032, "lon": -74.0078503 }, + { "lat": 40.7492004, "lon": -74.0079013 }, + { "lat": 40.7492691, "lon": -74.0079425 }, + { "lat": 40.7495772, "lon": -74.0081120 }, + { "lat": 40.7496399, "lon": -74.0081442 }, + { "lat": 40.7497034, "lon": -74.0081727 }, + { "lat": 40.7497665, "lon": -74.0081981 }, + { "lat": 40.7498429, "lon": -74.0082241 }, + { "lat": 40.7499232, "lon": -74.0082470 }, + { "lat": 40.7499968, "lon": -74.0082644 }, + { "lat": 40.7500477, "lon": -74.0082762 }, + { "lat": 40.7501087, "lon": -74.0082865 }, + { "lat": 40.7501797, "lon": -74.0082970 }, + { "lat": 40.7502621, "lon": -74.0083005 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 34625464, + "bounds": { + "minlat": 40.7470819, + "minlon": -74.0080148, + "maxlat": 40.7479993, + "maxlon": -74.0078415 + }, + "nodes": [ + 246579753, + 12097469455 + ], + "geometry": [ + { "lat": 40.7479993, "lon": -74.0078415 }, + { "lat": 40.7470819, "lon": -74.0080148 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "change": "yes", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 34768995, + "bounds": { + "minlat": 40.7552945, + "minlon": -73.9617558, + "maxlat": 40.7553562, + "maxlon": -73.9616701 + }, + "nodes": [ + 405984035, + 8865306820 + ], + "geometry": [ + { "lat": 40.7553562, "lon": -73.9616701 }, + { "lat": 40.7552945, "lon": -73.9617558 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 34769004, + "bounds": { + "minlat": 40.7553562, + "minlon": -73.9616701, + "maxlat": 40.7580427, + "maxlon": -73.9591431 + }, + "nodes": [ + 42450645, + 3785578852, + 3785578855, + 3785578854, + 3785578853, + 2178052726, + 3785579062, + 3785579061, + 3785578851, + 3785578850, + 405984035 + ], + "geometry": [ + { "lat": 40.7580427, "lon": -73.9591431 }, + { "lat": 40.7572137, "lon": -73.9598200 }, + { "lat": 40.7570603, "lon": -73.9599492 }, + { "lat": 40.7569351, "lon": -73.9600592 }, + { "lat": 40.7567167, "lon": -73.9602659 }, + { "lat": 40.7564984, "lon": -73.9604726 }, + { "lat": 40.7562326, "lon": -73.9607146 }, + { "lat": 40.7560204, "lon": -73.9609295 }, + { "lat": 40.7557155, "lon": -73.9612422 }, + { "lat": 40.7555466, "lon": -73.9614353 }, + { "lat": 40.7553562, "lon": -73.9616701 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "-1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "tunnel": "yes", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 34769017, + "bounds": { + "minlat": 40.7553078, + "minlon": -73.9615511, + "maxlat": 40.7580288, + "maxlon": -73.9590876 + }, + "nodes": [ + 405988242, + 3785578856, + 3785579057, + 3785579058, + 3785579059, + 3785579060, + 2178052725, + 405989914 + ], + "geometry": [ + { "lat": 40.7553078, "lon": -73.9615511 }, + { "lat": 40.7556878, "lon": -73.9611045 }, + { "lat": 40.7559099, "lon": -73.9608648 }, + { "lat": 40.7561384, "lon": -73.9606336 }, + { "lat": 40.7563840, "lon": -73.9604080 }, + { "lat": 40.7566403, "lon": -73.9601966 }, + { "lat": 40.7569265, "lon": -73.9599654 }, + { "lat": 40.7580288, "lon": -73.9590876 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "-2", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "tunnel": "yes", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 34769021, + "bounds": { + "minlat": 40.7580288, + "minlon": -73.9590876, + "maxlat": 40.7590118, + "maxlon": -73.9583867 + }, + "nodes": [ + 405989914, + 371188750 + ], + "geometry": [ + { "lat": 40.7580288, "lon": -73.9590876 }, + { "lat": 40.7590118, "lon": -73.9583867 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "East 61st Street;Ed Koch Queensboro Bridge||East 96th Street", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "tunnel": "yes", + "turn:lanes": "slight_left||", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 34769546, + "bounds": { + "minlat": 40.7438669, + "minlon": -73.9716376, + "maxlat": 40.7443472, + "maxlon": -73.9713203 + }, + "nodes": [ + 589099734, + 4273797604, + 406048768 + ], + "geometry": [ + { "lat": 40.7443472, "lon": -73.9713203 }, + { "lat": 40.7439289, "lon": -73.9715966 }, + { "lat": 40.7438669, "lon": -73.9716376 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 34956958, + "bounds": { + "minlat": 40.7908584, + "minlon": -73.9645552, + "maxlat": 40.7916252, + "maxlon": -73.9636395 + }, + "nodes": [ + 595703322, + 7106475375, + 9908460335, + 9908460336, + 3377460312, + 9908460337, + 595703323, + 1203806626, + 7106467216, + 9908460339, + 595703324, + 2047573307, + 7099250762, + 7099250739, + 7099250746, + 7099250759, + 2047573305, + 9908460340, + 42424456 + ], + "geometry": [ + { "lat": 40.7916252, "lon": -73.9645552 }, + { "lat": 40.7915561, "lon": -73.9644612 }, + { "lat": 40.7914883, "lon": -73.9643065 }, + { "lat": 40.7914600, "lon": -73.9642478 }, + { "lat": 40.7914336, "lon": -73.9641986 }, + { "lat": 40.7913983, "lon": -73.9641341 }, + { "lat": 40.7913564, "lon": -73.9640631 }, + { "lat": 40.7913033, "lon": -73.9639787 }, + { "lat": 40.7912398, "lon": -73.9638843 }, + { "lat": 40.7911877, "lon": -73.9638105 }, + { "lat": 40.7911331, "lon": -73.9637452 }, + { "lat": 40.7910793, "lon": -73.9636897 }, + { "lat": 40.7910553, "lon": -73.9636695 }, + { "lat": 40.7910325, "lon": -73.9636547 }, + { "lat": 40.7910054, "lon": -73.9636431 }, + { "lat": 40.7909815, "lon": -73.9636395 }, + { "lat": 40.7909536, "lon": -73.9636416 }, + { "lat": 40.7909184, "lon": -73.9636512 }, + { "lat": 40.7908584, "lon": -73.9636781 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "cycleway": "shared_lane", + "hgv": "no", + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West 96th Street", + "name:ru": "Западная 96-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 34958053, + "bounds": { + "minlat": 40.7916893, + "minlon": -73.9627520, + "maxlat": 40.7917087, + "maxlon": -73.9626941 + }, + "nodes": [ + 7106607090, + 42431293 + ], + "geometry": [ + { "lat": 40.7916893, "lon": -73.9626941 }, + { "lat": 40.7917087, "lon": -73.9627520 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxheight": "9'11\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 34961048, + "bounds": { + "minlat": 40.7164033, + "minlon": -73.9230895, + "maxlat": 40.7166060, + "maxlon": -73.9223186 + }, + "nodes": [ + 42538044, + 1533280143 + ], + "geometry": [ + { "lat": 40.7164033, "lon": -73.9230895 }, + { "lat": 40.7166060, "lon": -73.9223186 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "swing", + "bridge:name": "Grand Street Bridge", + "hgv": "local", + "highway": "primary", + "layer": "1", + "maxheight": "13'4\"", + "maxweight": "46000 lbs", + "name": "Grand Street", + "operator": "New York City Department of Transportation", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 35027226, + "bounds": { + "minlat": 40.7483045, + "minlon": -73.9881935, + "maxlat": 40.7490950, + "maxlon": -73.9880016 + }, + "nodes": [ + 6509575772, + 10261412743, + 6224277869, + 6509575770, + 10261412981, + 6509575769, + 10911711699, + 6223969260 + ], + "geometry": [ + { "lat": 40.7490950, "lon": -73.9880016 }, + { "lat": 40.7490581, "lon": -73.9880102 }, + { "lat": 40.7490303, "lon": -73.9880169 }, + { "lat": 40.7489998, "lon": -73.9880235 }, + { "lat": 40.7489544, "lon": -73.9880240 }, + { "lat": 40.7483670, "lon": -73.9881652 }, + { "lat": 40.7483209, "lon": -73.9881861 }, + { "lat": 40.7483045, "lon": -73.9881935 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "sidewalk:both": "separate", + "surface": "paved", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 35027229, + "bounds": { + "minlat": 40.7550539, + "minlon": -73.9866712, + "maxlat": 40.7558193, + "maxlon": -73.9864249 + }, + "nodes": [ + 42428287, + 3974095817, + 10173032937, + 42428283 + ], + "geometry": [ + { "lat": 40.7558193, "lon": -73.9864249 }, + { "lat": 40.7557155, "lon": -73.9864577 }, + { "lat": 40.7551172, "lon": -73.9866505 }, + { "lat": 40.7550539, "lon": -73.9866712 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 35027232, + "bounds": { + "minlat": 40.7581001, + "minlon": -73.9856475, + "maxlat": 40.7586294, + "maxlon": -73.9853696 + }, + "nodes": [ + 6632233656, + 10224032643, + 6598535203 + ], + "geometry": [ + { "lat": 40.7586294, "lon": -73.9853696 }, + { "lat": 40.7581552, "lon": -73.9856188 }, + { "lat": 40.7581001, "lon": -73.9856475 } + ], + "tags": { + "access": "yes", + "bicycle": "dismount", + "cycleway": "no", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "note": "closed to motor vehicles May 24, 2009", + "oneway": "no", + "surface": "paving_stones", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 36065657, + "bounds": { + "minlat": 40.8503060, + "minlon": -73.9849041, + "maxlat": 40.8527665, + "maxlon": -73.9847965 + }, + "nodes": [ + 10943492031, + 103148070, + 10943492034, + 103148072, + 299182324, + 9516021846, + 10943492090, + 10943482403, + 12692293506, + 10943492005, + 299182326, + 299182327, + 299172186 + ], + "geometry": [ + { "lat": 40.8503060, "lon": -73.9848167 }, + { "lat": 40.8503912, "lon": -73.9848232 }, + { "lat": 40.8504936, "lon": -73.9848298 }, + { "lat": 40.8505976, "lon": -73.9848382 }, + { "lat": 40.8510292, "lon": -73.9848776 }, + { "lat": 40.8511491, "lon": -73.9848881 }, + { "lat": 40.8512543, "lon": -73.9848971 }, + { "lat": 40.8513516, "lon": -73.9849021 }, + { "lat": 40.8514083, "lon": -73.9849041 }, + { "lat": 40.8514905, "lon": -73.9849029 }, + { "lat": 40.8515508, "lon": -73.9849004 }, + { "lat": 40.8516174, "lon": -73.9848957 }, + { "lat": 40.8527665, "lon": -73.9847965 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "1", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 36185329, + "bounds": { + "minlat": 40.7687981, + "minlon": -73.9711154, + "maxlat": 40.7688129, + "maxlon": -73.9707939 + }, + "nodes": [ + 248709820, + 422438817 + ], + "geometry": [ + { "lat": 40.7688129, "lon": -73.9707939 }, + { "lat": 40.7687981, "lon": -73.9711154 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "bridge": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "level": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 36185330, + "bounds": { + "minlat": 40.7686501, + "minlon": -73.9707939, + "maxlat": 40.7688155, + "maxlon": -73.9698222 + }, + "nodes": [ + 42447228, + 7797632763, + 5307237644, + 2216963583, + 248709821, + 2216963586, + 2216963589, + 9170842314, + 9908336677, + 248709820 + ], + "geometry": [ + { "lat": 40.7686501, "lon": -73.9698222 }, + { "lat": 40.7686892, "lon": -73.9699242 }, + { "lat": 40.7687238, "lon": -73.9700201 }, + { "lat": 40.7687555, "lon": -73.9701283 }, + { "lat": 40.7687784, "lon": -73.9702350 }, + { "lat": 40.7687968, "lon": -73.9703550 }, + { "lat": 40.7688097, "lon": -73.9704826 }, + { "lat": 40.7688155, "lon": -73.9705920 }, + { "lat": 40.7688155, "lon": -73.9706970 }, + { "lat": 40.7688129, "lon": -73.9707939 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "destination": "West Side", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 36185331, + "bounds": { + "minlat": 40.7683032, + "minlon": -73.9712285, + "maxlat": 40.7684901, + "maxlon": -73.9708755 + }, + "nodes": [ + 422438819, + 9908336682, + 9908336683, + 422438821 + ], + "geometry": [ + { "lat": 40.7684901, "lon": -73.9712285 }, + { "lat": 40.7684217, "lon": -73.9711008 }, + { "lat": 40.7683625, "lon": -73.9709928 }, + { "lat": 40.7683032, "lon": -73.9708755 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "bridge": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|through|right" + } +}, +{ + "type": "way", + "id": 36185332, + "bounds": { + "minlat": 40.7680278, + "minlon": -73.9708755, + "maxlat": 40.7683032, + "maxlon": -73.9702791 + }, + "nodes": [ + 422438821, + 9908336684, + 5307237642, + 5307237643, + 7630577065, + 42455662 + ], + "geometry": [ + { "lat": 40.7683032, "lon": -73.9708755 }, + { "lat": 40.7682505, "lon": -73.9707788 }, + { "lat": 40.7682015, "lon": -73.9706728 }, + { "lat": 40.7681499, "lon": -73.9705586 }, + { "lat": 40.7680704, "lon": -73.9703773 }, + { "lat": 40.7680278, "lon": -73.9702791 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|right" + } +}, +{ + "type": "way", + "id": 36185337, + "bounds": { + "minlat": 40.7695384, + "minlon": -73.9722423, + "maxlat": 40.7700117, + "maxlon": -73.9713563 + }, + "nodes": [ + 42433881, + 422438779, + 9906929112, + 247221412, + 9906929113, + 9906929114, + 4332700926, + 9906929115, + 9906929116, + 4332700919, + 9906929117, + 4332700775, + 4332700788 + ], + "geometry": [ + { "lat": 40.7695384, "lon": -73.9722423 }, + { "lat": 40.7695498, "lon": -73.9721871 }, + { "lat": 40.7695770, "lon": -73.9720940 }, + { "lat": 40.7695997, "lon": -73.9720314 }, + { "lat": 40.7696287, "lon": -73.9719635 }, + { "lat": 40.7696606, "lon": -73.9718905 }, + { "lat": 40.7697034, "lon": -73.9718046 }, + { "lat": 40.7697611, "lon": -73.9716990 }, + { "lat": 40.7698182, "lon": -73.9716006 }, + { "lat": 40.7698664, "lon": -73.9715279 }, + { "lat": 40.7699063, "lon": -73.9714718 }, + { "lat": 40.7699486, "lon": -73.9714209 }, + { "lat": 40.7700117, "lon": -73.9713563 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 36185649, + "bounds": { + "minlat": 40.7542717, + "minlon": -73.9652321, + "maxlat": 40.7551314, + "maxlon": -73.9631773 + }, + "nodes": [ + 42452882, + 9140940628, + 10957063846, + 370927297 + ], + "geometry": [ + { "lat": 40.7551314, "lon": -73.9652321 }, + { "lat": 40.7550811, "lon": -73.9651119 }, + { "lat": 40.7544780, "lon": -73.9636705 }, + { "lat": 40.7542717, "lon": -73.9631773 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 52nd Street", + "name:ru": "Восточная 52-я стрит", + "name_1": "East 52 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 36271338, + "bounds": { + "minlat": 40.7491639, + "minlon": -73.9749540, + "maxlat": 40.7501166, + "maxlon": -73.9727006 + }, + "nodes": [ + 42432451, + 9987259770, + 12187391608, + 12187391609, + 4136147002, + 42432458, + 2929098298, + 12187390451, + 4556126016, + 4556120771, + 4556120772, + 12187390452, + 9987259771, + 42432464 + ], + "geometry": [ + { "lat": 40.7501166, "lon": -73.9749540 }, + { "lat": 40.7500509, "lon": -73.9748009 }, + { "lat": 40.7500235, "lon": -73.9747371 }, + { "lat": 40.7498103, "lon": -73.9742330 }, + { "lat": 40.7497712, "lon": -73.9741404 }, + { "lat": 40.7497428, "lon": -73.9740737 }, + { "lat": 40.7497127, "lon": -73.9740024 }, + { "lat": 40.7496632, "lon": -73.9738856 }, + { "lat": 40.7495507, "lon": -73.9736159 }, + { "lat": 40.7493808, "lon": -73.9732087 }, + { "lat": 40.7493471, "lon": -73.9731280 }, + { "lat": 40.7492589, "lon": -73.9729166 }, + { "lat": 40.7492176, "lon": -73.9728227 }, + { "lat": 40.7491639, "lon": -73.9727006 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 41st Street", + "name:ru": "Восточная 41-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 36801165, + "bounds": { + "minlat": 40.7582961, + "minlon": -74.0001285, + "maxlat": 40.7589139, + "maxlon": -73.9996835 + }, + "nodes": [ + 593839894, + 8288270550, + 12974291650, + 8261122946, + 42430651 + ], + "geometry": [ + { "lat": 40.7589139, "lon": -73.9996835 }, + { "lat": 40.7588485, "lon": -73.9997299 }, + { "lat": 40.7583812, "lon": -74.0000689 }, + { "lat": 40.7583610, "lon": -74.0000836 }, + { "lat": 40.7582961, "lon": -74.0001285 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "destination:backward": "Lincoln Tunnel", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "surface": "asphalt", + "turn:lanes:forward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 36801250, + "bounds": { + "minlat": 40.7582971, + "minlon": -73.9975429, + "maxlat": 40.7584023, + "maxlon": -73.9973383 + }, + "nodes": [ + 427804105, + 427804110, + 1806444936, + 11149329294 + ], + "geometry": [ + { "lat": 40.7582971, "lon": -73.9973383 }, + { "lat": 40.7583575, "lon": -73.9974641 }, + { "lat": 40.7583807, "lon": -73.9975092 }, + { "lat": 40.7584023, "lon": -73.9975429 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "destination": "West 40th Street", + "highway": "service", + "layer": "1", + "motor_vehicle": "customers", + "name": "PABT Ramp towards West 40th Street", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 36806658, + "bounds": { + "minlat": 40.7509074, + "minlon": -73.9987610, + "maxlat": 40.7511635, + "maxlon": -73.9981555 + }, + "nodes": [ + 4207913305, + 10173309980, + 42437688 + ], + "geometry": [ + { "lat": 40.7511635, "lon": -73.9987610 }, + { "lat": 40.7509535, "lon": -73.9982630 }, + { "lat": 40.7509074, "lon": -73.9981555 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|right|right" + } +}, +{ + "type": "way", + "id": 36806659, + "bounds": { + "minlat": 40.7499302, + "minlon": -73.9977072, + "maxlat": 40.7507021, + "maxlon": -73.9958929 + }, + "nodes": [ + 9584459602, + 9584459603 + ], + "geometry": [ + { "lat": 40.7507021, "lon": -73.9977072 }, + { "lat": 40.7499302, "lon": -73.9958929 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 36806670, + "bounds": { + "minlat": 40.7548577, + "minlon": -73.9970987, + "maxlat": 40.7551965, + "maxlon": -73.9959659 + }, + "nodes": [ + 427840979, + 427840977, + 9971300870, + 427840975, + 9971300871, + 427840974, + 9971300872, + 427840973 + ], + "geometry": [ + { "lat": 40.7548577, "lon": -73.9970987 }, + { "lat": 40.7549388, "lon": -73.9967005 }, + { "lat": 40.7549718, "lon": -73.9965664 }, + { "lat": 40.7550026, "lon": -73.9964563 }, + { "lat": 40.7550528, "lon": -73.9963062 }, + { "lat": 40.7550992, "lon": -73.9961879 }, + { "lat": 40.7551499, "lon": -73.9960671 }, + { "lat": 40.7551965, "lon": -73.9959659 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "-1", + "maxspeed": "25 mph", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "note": "this is supposed to be a local truck route but signs say no trucks", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 36806671, + "bounds": { + "minlat": 40.7546452, + "minlon": -73.9979154, + "maxlat": 40.7550288, + "maxlon": -73.9969702 + }, + "nodes": [ + 427841043, + 427841045, + 9971300882, + 427841047, + 427841048, + 9971300883, + 427841050 + ], + "geometry": [ + { "lat": 40.7550288, "lon": -73.9969702 }, + { "lat": 40.7548586, "lon": -73.9974500 }, + { "lat": 40.7547943, "lon": -73.9976199 }, + { "lat": 40.7547589, "lon": -73.9977014 }, + { "lat": 40.7547151, "lon": -73.9977884 }, + { "lat": 40.7546765, "lon": -73.9978599 }, + { "lat": 40.7546452, "lon": -73.9979154 } + ], + "tags": { + "destination:lanes": "West 33rd Street|30th Street;31st Street", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "yes", + "turn:lanes": "slight_left|slight_right" + } +}, +{ + "type": "way", + "id": 36806673, + "bounds": { + "minlat": 40.7550288, + "minlon": -73.9969702, + "maxlat": 40.7552846, + "maxlon": -73.9963440 + }, + "nodes": [ + 427842125, + 9971300880, + 427841042, + 9971300881, + 427841043 + ], + "geometry": [ + { "lat": 40.7552846, "lon": -73.9963440 }, + { "lat": 40.7552392, "lon": -73.9964391 }, + { "lat": 40.7551720, "lon": -73.9965912 }, + { "lat": 40.7551189, "lon": -73.9967224 }, + { "lat": 40.7550288, "lon": -73.9969702 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "-1", + "maxspeed": "25 mph", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 36806678, + "bounds": { + "minlat": 40.7555338, + "minlon": -73.9959214, + "maxlat": 40.7557196, + "maxlon": -73.9954792 + }, + "nodes": [ + 427842141, + 11142777751 + ], + "geometry": [ + { "lat": 40.7555338, "lon": -73.9954792 }, + { "lat": 40.7557196, "lon": -73.9959214 } + ], + "tags": { + "bridge": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 36806680, + "bounds": { + "minlat": 40.7570936, + "minlon": -73.9982200, + "maxlat": 40.7574671, + "maxlon": -73.9973219 + }, + "nodes": [ + 8318644137, + 8288270403, + 42433644 + ], + "geometry": [ + { "lat": 40.7574671, "lon": -73.9982200 }, + { "lat": 40.7571529, "lon": -73.9974691 }, + { "lat": 40.7570936, "lon": -73.9973219 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 36806681, + "bounds": { + "minlat": 40.7563865, + "minlon": -73.9960216, + "maxlat": 40.7565500, + "maxlon": -73.9956424 + }, + "nodes": [ + 427842145, + 427842144 + ], + "geometry": [ + { "lat": 40.7565500, "lon": -73.9960216 }, + { "lat": 40.7563865, "lon": -73.9956424 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 36806682, + "bounds": { + "minlat": 40.7562054, + "minlon": -73.9956424, + "maxlat": 40.7563865, + "maxlon": -73.9952168 + }, + "nodes": [ + 427842144, + 11142777717, + 427842143 + ], + "geometry": [ + { "lat": 40.7563865, "lon": -73.9956424 }, + { "lat": 40.7562911, "lon": -73.9954180 }, + { "lat": 40.7562054, "lon": -73.9952168 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 36806683, + "bounds": { + "minlat": 40.7561004, + "minlon": -73.9952168, + "maxlat": 40.7562054, + "maxlon": -73.9949636 + }, + "nodes": [ + 427842143, + 427842142 + ], + "geometry": [ + { "lat": 40.7562054, "lon": -73.9952168 }, + { "lat": 40.7561004, "lon": -73.9949636 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "layer": "1", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 36806903, + "bounds": { + "minlat": 40.7536418, + "minlon": -73.9976109, + "maxlat": 40.7539458, + "maxlon": -73.9968801 + }, + "nodes": [ + 42434427, + 10089242331, + 10089242337, + 9971314388 + ], + "geometry": [ + { "lat": 40.7539458, "lon": -73.9976109 }, + { "lat": 40.7537864, "lon": -73.9972271 }, + { "lat": 40.7537073, "lon": -73.9970372 }, + { "lat": 40.7536418, "lon": -73.9968801 } + ], + "tags": { + "bus:lanes:backward": "yes|designated|yes", + "bus:lanes:forward": "yes|designated", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "||right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 36806904, + "bounds": { + "minlat": 40.7601965, + "minlon": -74.0029352, + "maxlat": 40.7603152, + "maxlon": -74.0027594 + }, + "nodes": [ + 1760566994, + 9422038032, + 12154605949, + 9422038033, + 247085080, + 247085079 + ], + "geometry": [ + { "lat": 40.7603152, "lon": -74.0029352 }, + { "lat": 40.7602898, "lon": -74.0029282 }, + { "lat": 40.7602726, "lon": -74.0029157 }, + { "lat": 40.7602570, "lon": -74.0028998 }, + { "lat": 40.7602443, "lon": -74.0028790 }, + { "lat": 40.7601965, "lon": -74.0027594 } + ], + "tags": { + "highway": "service", + "name": "West 39th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "39th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "aerial", + "tiger:zip_left": "10018", + "tiger:zip_right": "10018" + } +}, +{ + "type": "way", + "id": 36806905, + "bounds": { + "minlat": 40.7570117, + "minlon": -73.9955439, + "maxlat": 40.7571817, + "maxlon": -73.9951376 + }, + "nodes": [ + 427845251, + 593977713 + ], + "geometry": [ + { "lat": 40.7570117, "lon": -73.9951376 }, + { "lat": 40.7571817, "lon": -73.9955439 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "highway": "residential", + "layer": "1", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 36806906, + "bounds": { + "minlat": 40.7515813, + "minlon": -73.9870696, + "maxlat": 40.7536222, + "maxlon": -73.9822757 + }, + "nodes": [ + 42445649, + 9965135086, + 1747650043, + 10166333097, + 42430320, + 10166333100, + 10173490593, + 42428272 + ], + "geometry": [ + { "lat": 40.7515813, "lon": -73.9822757 }, + { "lat": 40.7516350, "lon": -73.9824018 }, + { "lat": 40.7520694, "lon": -73.9834214 }, + { "lat": 40.7528878, "lon": -73.9853572 }, + { "lat": 40.7529437, "lon": -73.9854836 }, + { "lat": 40.7530035, "lon": -73.9856236 }, + { "lat": 40.7535697, "lon": -73.9869495 }, + { "lat": 40.7536222, "lon": -73.9870696 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lit": "yes", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 36806907, + "bounds": { + "minlat": 40.7569340, + "minlon": -73.9967634, + "maxlat": 40.7575640, + "maxlon": -73.9955836 + }, + "nodes": [ + 427841011, + 427841012, + 9971300891, + 427841013, + 9971300890, + 427841014, + 427841015, + 11142778034, + 427841017 + ], + "geometry": [ + { "lat": 40.7575640, "lon": -73.9967634 }, + { "lat": 40.7574040, "lon": -73.9965708 }, + { "lat": 40.7573556, "lon": -73.9965096 }, + { "lat": 40.7573167, "lon": -73.9964574 }, + { "lat": 40.7572832, "lon": -73.9964051 }, + { "lat": 40.7572565, "lon": -73.9963495 }, + { "lat": 40.7572293, "lon": -73.9962862 }, + { "lat": 40.7570089, "lon": -73.9957618 }, + { "lat": 40.7569340, "lon": -73.9955836 } + ], + "tags": { + "destination": "36th Street South", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "35 mph", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "reversible", + "ref": "NY 495", + "surface": "concrete", + "toll:backward": "no", + "toll:forward": "yes" + } +}, +{ + "type": "way", + "id": 36806908, + "bounds": { + "minlat": 40.7560047, + "minlon": -73.9951130, + "maxlat": 40.7562704, + "maxlon": -73.9949687 + }, + "nodes": [ + 427840967, + 1695371079, + 9971300877, + 427840966, + 9971300878, + 427840965 + ], + "geometry": [ + { "lat": 40.7560047, "lon": -73.9951130 }, + { "lat": 40.7560419, "lon": -73.9950813 }, + { "lat": 40.7560962, "lon": -73.9950419 }, + { "lat": 40.7561564, "lon": -73.9950077 }, + { "lat": 40.7562130, "lon": -73.9949844 }, + { "lat": 40.7562704, "lon": -73.9949687 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:advisory": "20 mph", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "note": "this is supposed to be a local truck route but signs say no trucks", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 36806909, + "bounds": { + "minlat": 40.7579621, + "minlon": -73.9977612, + "maxlat": 40.7583765, + "maxlon": -73.9969500 + }, + "nodes": [ + 427840949, + 42423883, + 427804191, + 427804187, + 427804186, + 42455535, + 427804205 + ], + "geometry": [ + { "lat": 40.7579621, "lon": -73.9969500 }, + { "lat": 40.7580428, "lon": -73.9970827 }, + { "lat": 40.7581145, "lon": -73.9972148 }, + { "lat": 40.7581730, "lon": -73.9973217 }, + { "lat": 40.7582379, "lon": -73.9974532 }, + { "lat": 40.7582933, "lon": -73.9975786 }, + { "lat": 40.7583765, "lon": -73.9977612 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "slight_left;through" + } +}, +{ + "type": "way", + "id": 36806910, + "bounds": { + "minlat": 40.7565044, + "minlon": -73.9928608, + "maxlat": 40.7574336, + "maxlon": -73.9906324 + }, + "nodes": [ + 10686429941, + 9536031144, + 9201440704, + 10686429934 + ], + "geometry": [ + { "lat": 40.7565044, "lon": -73.9906324 }, + { "lat": 40.7565726, "lon": -73.9908114 }, + { "lat": 40.7567808, "lon": -73.9913094 }, + { "lat": 40.7574336, "lon": -73.9928608 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "layer": "-2", + "note": "buses only", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 36807166, + "bounds": { + "minlat": 40.7572085, + "minlon": -73.9945564, + "maxlat": 40.7575594, + "maxlon": -73.9944239 + }, + "nodes": [ + 427850895, + 1701920985, + 11149329216, + 427850901, + 427850905, + 427850915, + 427850924, + 11149329064, + 427850932, + 427850887 + ], + "geometry": [ + { "lat": 40.7575594, "lon": -73.9945564 }, + { "lat": 40.7574758, "lon": -73.9944681 }, + { "lat": 40.7574529, "lon": -73.9944520 }, + { "lat": 40.7574415, "lon": -73.9944439 }, + { "lat": 40.7574082, "lon": -73.9944284 }, + { "lat": 40.7573671, "lon": -73.9944239 }, + { "lat": 40.7573350, "lon": -73.9944284 }, + { "lat": 40.7573020, "lon": -73.9944419 }, + { "lat": 40.7572623, "lon": -73.9944687 }, + { "lat": 40.7572085, "lon": -73.9945123 } + ], + "tags": { + "access": "no", + "destination": "Port Authority Bus Terminal", + "foot": "no", + "highway": "service", + "motor_vehicle": "customers", + "name": "PABT Ramp", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 36807209, + "bounds": { + "minlat": 40.7571571, + "minlon": -73.9953467, + "maxlat": 40.7578029, + "maxlon": -73.9950102 + }, + "nodes": [ + 42424776, + 1806430559, + 427850985, + 1806430484, + 11149329152, + 427850986, + 42424771, + 427850988, + 427850989, + 427850990, + 427850991, + 42424783, + 427851427 + ], + "geometry": [ + { "lat": 40.7571571, "lon": -73.9950102 }, + { "lat": 40.7571828, "lon": -73.9950606 }, + { "lat": 40.7572115, "lon": -73.9951119 }, + { "lat": 40.7572458, "lon": -73.9951661 }, + { "lat": 40.7572913, "lon": -73.9952280 }, + { "lat": 40.7573473, "lon": -73.9952928 }, + { "lat": 40.7573844, "lon": -73.9953194 }, + { "lat": 40.7574370, "lon": -73.9953418 }, + { "lat": 40.7575044, "lon": -73.9953467 }, + { "lat": 40.7575687, "lon": -73.9953316 }, + { "lat": 40.7576294, "lon": -73.9953018 }, + { "lat": 40.7576771, "lon": -73.9952594 }, + { "lat": 40.7578029, "lon": -73.9951024 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "1", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 36836394, + "bounds": { + "minlat": 40.7579608, + "minlon": -73.9946658, + "maxlat": 40.7580174, + "maxlon": -73.9942488 + }, + "nodes": [ + 428219616, + 428219619, + 428219620, + 428219621, + 427851457 + ], + "geometry": [ + { "lat": 40.7579608, "lon": -73.9942488 }, + { "lat": 40.7579810, "lon": -73.9943328 }, + { "lat": 40.7579953, "lon": -73.9944240 }, + { "lat": 40.7580082, "lon": -73.9945331 }, + { "lat": 40.7580174, "lon": -73.9946658 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "1", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 36836395, + "bounds": { + "minlat": 40.7574639, + "minlon": -73.9942488, + "maxlat": 40.7579608, + "maxlon": -73.9931589 + }, + "nodes": [ + 428219616, + 11149329287, + 428219623, + 428219624, + 11149329286, + 477284535 + ], + "geometry": [ + { "lat": 40.7579608, "lon": -73.9942488 }, + { "lat": 40.7579455, "lon": -73.9941762 }, + { "lat": 40.7579088, "lon": -73.9940644 }, + { "lat": 40.7576369, "lon": -73.9934165 }, + { "lat": 40.7575819, "lon": -73.9933211 }, + { "lat": 40.7574639, "lon": -73.9931589 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "1", + "name": "PABT Bus Ramp", + "note": "buses only" + } +}, +{ + "type": "way", + "id": 36836396, + "bounds": { + "minlat": 40.7578970, + "minlon": -73.9948142, + "maxlat": 40.7579608, + "maxlon": -73.9942488 + }, + "nodes": [ + 427851428, + 428219629, + 428219630, + 428219631, + 428219634, + 428219616 + ], + "geometry": [ + { "lat": 40.7578970, "lon": -73.9948142 }, + { "lat": 40.7579187, "lon": -73.9947382 }, + { "lat": 40.7579351, "lon": -73.9946373 }, + { "lat": 40.7579484, "lon": -73.9945483 }, + { "lat": 40.7579603, "lon": -73.9944321 }, + { "lat": 40.7579608, "lon": -73.9942488 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "1", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 36836404, + "bounds": { + "minlat": 40.7575294, + "minlon": -73.9961939, + "maxlat": 40.7580153, + "maxlon": -73.9950911 + }, + "nodes": [ + 593984805, + 593984822, + 593984823, + 7902264901, + 593984824, + 11149329199, + 593984825, + 11149329037, + 593984826, + 11149329036, + 593984827, + 11149329035, + 11149329034, + 593984781 + ], + "geometry": [ + { "lat": 40.7575294, "lon": -73.9950911 }, + { "lat": 40.7575865, "lon": -73.9951030 }, + { "lat": 40.7576342, "lon": -73.9951175 }, + { "lat": 40.7576829, "lon": -73.9951469 }, + { "lat": 40.7577177, "lon": -73.9951895 }, + { "lat": 40.7577571, "lon": -73.9952621 }, + { "lat": 40.7579531, "lon": -73.9957226 }, + { "lat": 40.7579773, "lon": -73.9957859 }, + { "lat": 40.7579984, "lon": -73.9958572 }, + { "lat": 40.7580136, "lon": -73.9959324 }, + { "lat": 40.7580153, "lon": -73.9960077 }, + { "lat": 40.7580086, "lon": -73.9960799 }, + { "lat": 40.7579881, "lon": -73.9961431 }, + { "lat": 40.7579659, "lon": -73.9961939 } + ], + "tags": { + "access": "no", + "bus": "yes", + "destination": "Port Authority Bus Terminal;10th Avenue", + "highway": "service", + "maxspeed": "15 mph", + "motor_vehicle": "customers", + "name": "PABT Ramp", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 37182106, + "bounds": { + "minlat": 40.7736204, + "minlon": -73.9896514, + "maxlat": 40.7745560, + "maxlon": -73.9874827 + }, + "nodes": [ + 42457209, + 7727569325, + 7595748182, + 42430983, + 7595763585, + 11298582539, + 595245920 + ], + "geometry": [ + { "lat": 40.7736204, "lon": -73.9874827 }, + { "lat": 40.7738410, "lon": -73.9879919 }, + { "lat": 40.7740641, "lon": -73.9884934 }, + { "lat": 40.7741192, "lon": -73.9886248 }, + { "lat": 40.7741785, "lon": -73.9887697 }, + { "lat": 40.7745166, "lon": -73.9895593 }, + { "lat": 40.7745560, "lon": -73.9896514 } + ], + "tags": { + "alt_name": "Thelonious Monk Circle", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 63rd Street", + "name:ru": "Западная 63-я стрит", + "name_2": "Thelonious Monk Circle", + "not:name": "Thelonius Monk Circle", + "note": "There are two O's in Thelonious. See e.g. https://amsterdamnews.com/news/2013/02/15/city-fixes-misspelling-of-thelonious-monks-street/", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 37183217, + "bounds": { + "minlat": 40.7802320, + "minlon": -73.9620842, + "maxlat": 40.7804903, + "maxlon": -73.9613628 + }, + "nodes": [ + 6925950135, + 4290878967, + 42435497 + ], + "geometry": [ + { "lat": 40.7804903, "lon": -73.9620842 }, + { "lat": 40.7802621, "lon": -73.9615185 }, + { "lat": 40.7802320, "lon": -73.9613628 } + ], + "tags": { + "access": "private", + "highway": "service", + "incline": "up" + } +}, +{ + "type": "way", + "id": 37890350, + "bounds": { + "minlat": 40.7042465, + "minlon": -74.0115763, + "maxlat": 40.7049939, + "maxlon": -74.0115415 + }, + "nodes": [ + 42431875, + 2183010557, + 42431871, + 8276468869, + 42431868 + ], + "geometry": [ + { "lat": 40.7042465, "lon": -74.0115763 }, + { "lat": 40.7045513, "lon": -74.0115608 }, + { "lat": 40.7047613, "lon": -74.0115534 }, + { "lat": 40.7049503, "lon": -74.0115439 }, + { "lat": 40.7049939, "lon": -74.0115415 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Broad Street", + "name:ko": "브로드 스트리트", + "name:ru": "Брод-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broad", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q2613951", + "wikipedia": "en:Broad Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 37890351, + "bounds": { + "minlat": 40.7065770, + "minlon": -74.0124181, + "maxlat": 40.7067926, + "maxlon": -74.0119212 + }, + "nodes": [ + 11051773154, + 10316225995, + 8281922247, + 2824829726, + 11051773127, + 11051773153 + ], + "geometry": [ + { "lat": 40.7067926, "lon": -74.0124181 }, + { "lat": 40.7067910, "lon": -74.0124078 }, + { "lat": 40.7067856, "lon": -74.0123896 }, + { "lat": 40.7067684, "lon": -74.0123509 }, + { "lat": 40.7065808, "lon": -74.0119296 }, + { "lat": 40.7065770, "lon": -74.0119212 } + ], + "tags": { + "access": "permit", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "Exchange Place", + "name:etymology:wikidata": "Q1097619", + "name:ko": "익스체인지 플레이스", + "name:ru": "Эксчейндж-Плейс", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Exchange", + "tiger:name_type": "Pl", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q13578686", + "wikipedia": "en:Exchange Place (Manhattan)" + } +}, +{ + "type": "way", + "id": 38254377, + "bounds": { + "minlat": 40.7012448, + "minlon": -73.9878006, + "maxlat": 40.7012734, + "maxlon": -73.9876179 + }, + "nodes": [ + 451024912, + 598054748 + ], + "geometry": [ + { "lat": 40.7012448, "lon": -73.9876179 }, + { "lat": 40.7012734, "lon": -73.9878006 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 38605246, + "bounds": { + "minlat": 40.7068521, + "minlon": -74.0054889, + "maxlat": 40.7073945, + "maxlon": -74.0050152 + }, + "nodes": [ + 42440350, + 10311946273, + 10311946272, + 5362205528, + 8262936326, + 11367912998, + 42440347 + ], + "geometry": [ + { "lat": 40.7068521, "lon": -74.0050152 }, + { "lat": 40.7068975, "lon": -74.0050300 }, + { "lat": 40.7069416, "lon": -74.0050490 }, + { "lat": 40.7069795, "lon": -74.0050716 }, + { "lat": 40.7073453, "lon": -74.0054505 }, + { "lat": 40.7073704, "lon": -74.0054707 }, + { "lat": 40.7073945, "lon": -74.0054889 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "20 mph", + "name": "John Street", + "name:etymology:wikidata": "Q113897737", + "name:ko": "존 스트리트", + "name:ru": "Джон-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q108240697" + } +}, +{ + "type": "way", + "id": 38605247, + "bounds": { + "minlat": 40.7057898, + "minlon": -74.0045692, + "maxlat": 40.7064117, + "maxlon": -74.0038751 + }, + "nodes": [ + 42440353, + 11356801023, + 12285397815, + 8094558986, + 4985377335, + 42440356 + ], + "geometry": [ + { "lat": 40.7064117, "lon": -74.0045692 }, + { "lat": 40.7063815, "lon": -74.0045388 }, + { "lat": 40.7063038, "lon": -74.0044579 }, + { "lat": 40.7062729, "lon": -74.0044257 }, + { "lat": 40.7058460, "lon": -74.0039419 }, + { "lat": 40.7057898, "lon": -74.0038751 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "John Street", + "name:etymology:wikidata": "Q113897737", + "name:ko": "존 스트리트", + "name:ru": "Джон-стрит", + "name_1": "Burling Slip", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "John", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q108240697" + } +}, +{ + "type": "way", + "id": 38605248, + "bounds": { + "minlat": 40.7060012, + "minlon": -74.0052076, + "maxlat": 40.7063824, + "maxlon": -74.0046155 + }, + "nodes": [ + 11356801008, + 11356801021, + 3350483346, + 11356801003, + 42427254 + ], + "geometry": [ + { "lat": 40.7063824, "lon": -74.0046155 }, + { "lat": 40.7063643, "lon": -74.0046444 }, + { "lat": 40.7061726, "lon": -74.0049522 }, + { "lat": 40.7060159, "lon": -74.0051857 }, + { "lat": 40.7060012, "lon": -74.0052076 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Front Street", + "name:ko": "프론트 스트리트", + "name:ru": "Фронт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Front", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q4493022", + "wikipedia": "en:Front Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 38654451, + "bounds": { + "minlat": 40.7010290, + "minlon": -73.9487480, + "maxlat": 40.7015940, + "maxlon": -73.9481160 + }, + "nodes": [ + 42492003, + 9755373147, + 3808846151, + 9755373162, + 42526740 + ], + "geometry": [ + { "lat": 40.7015940, "lon": -73.9487480 }, + { "lat": 40.7015488, "lon": -73.9486974 }, + { "lat": 40.7014694, "lon": -73.9486086 }, + { "lat": 40.7010829, "lon": -73.9481762 }, + { "lat": 40.7010290, "lon": -73.9481160 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 38774186, + "bounds": { + "minlat": 40.8451798, + "minlon": -73.9225519, + "maxlat": 40.8452873, + "maxlon": -73.9225021 + }, + "nodes": [ + 60921026, + 12072283181, + 12070869604 + ], + "geometry": [ + { "lat": 40.8452873, "lon": -73.9225021 }, + { "lat": 40.8452120, "lon": -73.9225377 }, + { "lat": 40.8451798, "lon": -73.9225519 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bridge": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 38774187, + "bounds": { + "minlat": 40.8475591, + "minlon": -73.9196881, + "maxlat": 40.8483813, + "maxlon": -73.9185150 + }, + "nodes": [ + 2907939239, + 2907939241, + 2907939242, + 2907939270, + 13181365290, + 2907939252, + 13181365294, + 2907939251 + ], + "geometry": [ + { "lat": 40.8483813, "lon": -73.9185150 }, + { "lat": 40.8481355, "lon": -73.9188310 }, + { "lat": 40.8480308, "lon": -73.9189704 }, + { "lat": 40.8479232, "lon": -73.9191329 }, + { "lat": 40.8477879, "lon": -73.9193452 }, + { "lat": 40.8477419, "lon": -73.9194174 }, + { "lat": 40.8476718, "lon": -73.9195213 }, + { "lat": 40.8475591, "lon": -73.9196881 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 38774188, + "bounds": { + "minlat": 40.8446626, + "minlon": -73.9206102, + "maxlat": 40.8452162, + "maxlon": -73.9202585 + }, + "nodes": [ + 595757772, + 459823616 + ], + "geometry": [ + { "lat": 40.8452162, "lon": -73.9202585 }, + { "lat": 40.8446626, "lon": -73.9206102 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Nelson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Nelson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_left_1": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 38774190, + "bounds": { + "minlat": 40.8460822, + "minlon": -73.9197100, + "maxlat": 40.8487373, + "maxlon": -73.9161490 + }, + "nodes": [ + 42752020, + 2907939277, + 42752015, + 8575373968, + 42752012, + 2329087596, + 2329087598, + 12046922289, + 12046922288, + 42737552 + ], + "geometry": [ + { "lat": 40.8487332, "lon": -73.9161490 }, + { "lat": 40.8487373, "lon": -73.9163395 }, + { "lat": 40.8477300, "lon": -73.9176440 }, + { "lat": 40.8474095, "lon": -73.9180484 }, + { "lat": 40.8469540, "lon": -73.9186230 }, + { "lat": 40.8463259, "lon": -73.9194527 }, + { "lat": 40.8461759, "lon": -73.9196318 }, + { "lat": 40.8461446, "lon": -73.9196617 }, + { "lat": 40.8461156, "lon": -73.9196852 }, + { "lat": 40.8460822, "lon": -73.9197100 } + ], + "tags": { + "highway": "residential", + "name": "Nelson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Nelson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "tiger:zip_right_1": "10453" + } +}, +{ + "type": "way", + "id": 38774191, + "bounds": { + "minlat": 40.8448936, + "minlon": -73.9184208, + "maxlat": 40.8452262, + "maxlon": -73.9183590 + }, + "nodes": [ + 595757816, + 12046910562 + ], + "geometry": [ + { "lat": 40.8448936, "lon": -73.9184208 }, + { "lat": 40.8452262, "lon": -73.9183590 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Jesup Avenue", + "name:etymology:wikidata": "Q713243", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jesup", + "tiger:name_type": "Ave", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 38774193, + "bounds": { + "minlat": 40.8452262, + "minlon": -73.9183590, + "maxlat": 40.8462517, + "maxlon": -73.9181767 + }, + "nodes": [ + 12046910562, + 595757773, + 10724413370, + 8575373983, + 13181365230, + 42737549 + ], + "geometry": [ + { "lat": 40.8452262, "lon": -73.9183590 }, + { "lat": 40.8453220, "lon": -73.9183416 }, + { "lat": 40.8457632, "lon": -73.9182633 }, + { "lat": 40.8461157, "lon": -73.9182008 }, + { "lat": 40.8461674, "lon": -73.9181916 }, + { "lat": 40.8462517, "lon": -73.9181767 } + ], + "tags": { + "highway": "residential", + "name": "Jesup Avenue", + "name:etymology:wikidata": "Q713243", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jesup", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 38774194, + "bounds": { + "minlat": 40.8449490, + "minlon": -73.9173931, + "maxlat": 40.8452906, + "maxlon": -73.9171704 + }, + "nodes": [ + 42748602, + 596668954 + ], + "geometry": [ + { "lat": 40.8449490, "lon": -73.9173931 }, + { "lat": 40.8452906, "lon": -73.9171704 } + ], + "tags": { + "bridge": "yes", + "cycleway": "lane", + "highway": "tertiary", + "layer": "1", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 38774195, + "bounds": { + "minlat": 40.8464621, + "minlon": -73.9168628, + "maxlat": 40.8490145, + "maxlon": -73.9161377 + }, + "nodes": [ + 42737547, + 12527797822, + 42770695, + 42770697, + 42761317, + 42752020, + 42744753 + ], + "geometry": [ + { "lat": 40.8464621, "lon": -73.9168628 }, + { "lat": 40.8465837, "lon": -73.9167812 }, + { "lat": 40.8472560, "lon": -73.9163300 }, + { "lat": 40.8475590, "lon": -73.9162240 }, + { "lat": 40.8482890, "lon": -73.9161740 }, + { "lat": 40.8487332, "lon": -73.9161490 }, + { "lat": 40.8490145, "lon": -73.9161377 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 38774197, + "bounds": { + "minlat": 40.8453393, + "minlon": -73.9140430, + "maxlat": 40.8458147, + "maxlon": -73.9137041 + }, + "nodes": [ + 2408357249, + 12089606500, + 42736339, + 12089606499, + 12089606487 + ], + "geometry": [ + { "lat": 40.8458147, "lon": -73.9137041 }, + { "lat": 40.8455114, "lon": -73.9139203 }, + { "lat": 40.8454311, "lon": -73.9139776 }, + { "lat": 40.8453577, "lon": -73.9140299 }, + { "lat": 40.8453393, "lon": -73.9140430 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 38774200, + "bounds": { + "minlat": 40.8490790, + "minlon": -73.9094510, + "maxlat": 40.8513326, + "maxlon": -73.9084198 + }, + "nodes": [ + 42733821, + 12739101099, + 2807583965, + 5527067361, + 5527067367, + 2807583858, + 5527067362, + 13037331557, + 42733818, + 13037331572, + 13037357739, + 42733813 + ], + "geometry": [ + { "lat": 40.8513326, "lon": -73.9084198 }, + { "lat": 40.8512586, "lon": -73.9084871 }, + { "lat": 40.8509646, "lon": -73.9087548 }, + { "lat": 40.8508297, "lon": -73.9088515 }, + { "lat": 40.8507987, "lon": -73.9088667 }, + { "lat": 40.8507337, "lon": -73.9088985 }, + { "lat": 40.8500490, "lon": -73.9091253 }, + { "lat": 40.8499673, "lon": -73.9091495 }, + { "lat": 40.8498990, "lon": -73.9091750 }, + { "lat": 40.8498416, "lon": -73.9091943 }, + { "lat": 40.8491420, "lon": -73.9094299 }, + { "lat": 40.8490790, "lon": -73.9094510 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Walton Avenue", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 38774205, + "bounds": { + "minlat": 40.8305360, + "minlon": -73.9156990, + "maxlat": 40.8377844, + "maxlon": -73.9114380 + }, + "nodes": [ + 42735842, + 12038440131, + 10647804810, + 42735846, + 10647804806, + 5762095679, + 42735849, + 5762095681, + 13031202587, + 42735854, + 13031229916, + 5481921472, + 8187805230, + 13031229924, + 42735857, + 13031229919, + 5481921496, + 5481921498, + 5481921500, + 5762102219, + 2408359292 + ], + "geometry": [ + { "lat": 40.8305360, "lon": -73.9156990 }, + { "lat": 40.8306022, "lon": -73.9156606 }, + { "lat": 40.8316611, "lon": -73.9150456 }, + { "lat": 40.8317283, "lon": -73.9150066 }, + { "lat": 40.8317861, "lon": -73.9149722 }, + { "lat": 40.8331436, "lon": -73.9141638 }, + { "lat": 40.8332860, "lon": -73.9140790 }, + { "lat": 40.8333694, "lon": -73.9140304 }, + { "lat": 40.8336565, "lon": -73.9138655 }, + { "lat": 40.8336940, "lon": -73.9138440 }, + { "lat": 40.8337718, "lon": -73.9137982 }, + { "lat": 40.8342065, "lon": -73.9135422 }, + { "lat": 40.8345739, "lon": -73.9133258 }, + { "lat": 40.8352195, "lon": -73.9129456 }, + { "lat": 40.8352970, "lon": -73.9129000 }, + { "lat": 40.8353824, "lon": -73.9128498 }, + { "lat": 40.8356536, "lon": -73.9126904 }, + { "lat": 40.8370239, "lon": -73.9118850 }, + { "lat": 40.8374836, "lon": -73.9116148 }, + { "lat": 40.8377375, "lon": -73.9114666 }, + { "lat": 40.8377844, "lon": -73.9114380 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Morris Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 38976749, + "bounds": { + "minlat": 40.8565314, + "minlon": -74.0127112, + "maxlat": 40.8640409, + "maxlon": -74.0108272 + }, + "nodes": [ + 298561949, + 10938641135, + 298560798, + 10938708265, + 10938708247, + 10938708238, + 10938708260, + 298560799, + 10938708240, + 298561951, + 10938708254, + 298561927, + 10938708263, + 298561952, + 10938708253, + 10938708251, + 298561929, + 10938708259, + 298560804, + 10938708245, + 10938708243, + 298560805, + 10938708267, + 298560806, + 10938708262, + 10938708235, + 10938708250, + 10938991638, + 298560808, + 10938708237, + 10938708256, + 10938708244, + 10938641183, + 298560811, + 10938641127, + 298560812, + 10938641133, + 298560813, + 10938641192, + 298560814, + 10938641112, + 298561954, + 298561955, + 10938641130, + 298561934, + 10938598290, + 528865248 + ], + "geometry": [ + { "lat": 40.8565314, "lon": -74.0127112 }, + { "lat": 40.8568830, "lon": -74.0125891 }, + { "lat": 40.8578056, "lon": -74.0121374 }, + { "lat": 40.8579242, "lon": -74.0120807 }, + { "lat": 40.8580403, "lon": -74.0120268 }, + { "lat": 40.8581636, "lon": -74.0119716 }, + { "lat": 40.8582930, "lon": -74.0119161 }, + { "lat": 40.8584221, "lon": -74.0118637 }, + { "lat": 40.8585465, "lon": -74.0118151 }, + { "lat": 40.8586738, "lon": -74.0117661 }, + { "lat": 40.8588024, "lon": -74.0117206 }, + { "lat": 40.8589340, "lon": -74.0116769 }, + { "lat": 40.8590677, "lon": -74.0116349 }, + { "lat": 40.8591854, "lon": -74.0116018 }, + { "lat": 40.8593234, "lon": -74.0115654 }, + { "lat": 40.8594524, "lon": -74.0115330 }, + { "lat": 40.8595872, "lon": -74.0115042 }, + { "lat": 40.8597241, "lon": -74.0114772 }, + { "lat": 40.8598596, "lon": -74.0114528 }, + { "lat": 40.8599970, "lon": -74.0114317 }, + { "lat": 40.8601337, "lon": -74.0114126 }, + { "lat": 40.8602724, "lon": -74.0113970 }, + { "lat": 40.8604088, "lon": -74.0113855 }, + { "lat": 40.8605480, "lon": -74.0113765 }, + { "lat": 40.8606840, "lon": -74.0113694 }, + { "lat": 40.8608234, "lon": -74.0113637 }, + { "lat": 40.8609606, "lon": -74.0113602 }, + { "lat": 40.8610999, "lon": -74.0113594 }, + { "lat": 40.8612354, "lon": -74.0113596 }, + { "lat": 40.8613743, "lon": -74.0113602 }, + { "lat": 40.8615106, "lon": -74.0113627 }, + { "lat": 40.8620647, "lon": -74.0113790 }, + { "lat": 40.8622007, "lon": -74.0113809 }, + { "lat": 40.8623375, "lon": -74.0113794 }, + { "lat": 40.8624776, "lon": -74.0113735 }, + { "lat": 40.8626145, "lon": -74.0113634 }, + { "lat": 40.8627537, "lon": -74.0113484 }, + { "lat": 40.8628903, "lon": -74.0113296 }, + { "lat": 40.8630280, "lon": -74.0113032 }, + { "lat": 40.8631641, "lon": -74.0112696 }, + { "lat": 40.8632999, "lon": -74.0112279 }, + { "lat": 40.8634337, "lon": -74.0111810 }, + { "lat": 40.8635656, "lon": -74.0111262 }, + { "lat": 40.8636955, "lon": -74.0110606 }, + { "lat": 40.8638223, "lon": -74.0109852 }, + { "lat": 40.8639470, "lon": -74.0108993 }, + { "lat": 40.8640409, "lon": -74.0108272 } + ], + "tags": { + "bicycle": "no", + "destination": "George Washington Bridge Upper Level;All Trucks To New York", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 38976753, + "bounds": { + "minlat": 40.8565314, + "minlon": -74.0127112, + "maxlat": 40.8596693, + "maxlon": -74.0113423 + }, + "nodes": [ + 298561949, + 13751654230, + 10938641128, + 10938641184, + 298562213, + 298562093, + 13762277518, + 13762277519, + 10938598302, + 10938641170, + 298562023, + 298562059, + 13762277520, + 13762277521, + 298562061, + 298562027, + 10938641182, + 13762277522, + 13762277523, + 13762277524, + 298562029, + 8894496325, + 8894496326 + ], + "geometry": [ + { "lat": 40.8565314, "lon": -74.0127112 }, + { "lat": 40.8568589, "lon": -74.0125011 }, + { "lat": 40.8570449, "lon": -74.0124078 }, + { "lat": 40.8571712, "lon": -74.0123417 }, + { "lat": 40.8572968, "lon": -74.0122750 }, + { "lat": 40.8574279, "lon": -74.0122044 }, + { "lat": 40.8575584, "lon": -74.0121341 }, + { "lat": 40.8576817, "lon": -74.0120669 }, + { "lat": 40.8578082, "lon": -74.0120007 }, + { "lat": 40.8579399, "lon": -74.0119341 }, + { "lat": 40.8580692, "lon": -74.0118712 }, + { "lat": 40.8581951, "lon": -74.0118129 }, + { "lat": 40.8583275, "lon": -74.0117561 }, + { "lat": 40.8584583, "lon": -74.0117020 }, + { "lat": 40.8585876, "lon": -74.0116518 }, + { "lat": 40.8587259, "lon": -74.0116024 }, + { "lat": 40.8588705, "lon": -74.0115536 }, + { "lat": 40.8589909, "lon": -74.0115149 }, + { "lat": 40.8591266, "lon": -74.0114764 }, + { "lat": 40.8592608, "lon": -74.0114406 }, + { "lat": 40.8593955, "lon": -74.0114067 }, + { "lat": 40.8595286, "lon": -74.0113747 }, + { "lat": 40.8596693, "lon": -74.0113423 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination": "George Washington Bridge Lower Level;Fort Lee;All New Jersey Exits", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 39015951, + "bounds": { + "minlat": 40.7063730, + "minlon": -73.9683562, + "maxlat": 40.7068489, + "maxlon": -73.9681983 + }, + "nodes": [ + 4207774905, + 3552666733, + 8468050536, + 4999422875, + 42469447 + ], + "geometry": [ + { "lat": 40.7063730, "lon": -73.9681983 }, + { "lat": 40.7066694, "lon": -73.9683182 }, + { "lat": 40.7067062, "lon": -73.9683256 }, + { "lat": 40.7067448, "lon": -73.9683334 }, + { "lat": 40.7068489, "lon": -73.9683562 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 39250165, + "bounds": { + "minlat": 40.7210315, + "minlon": -73.9922542, + "maxlat": 40.7212541, + "maxlon": -73.9914850 + }, + "nodes": [ + 42437111, + 6330061741, + 6330061770, + 9213170893, + 6330061766, + 42437113 + ], + "geometry": [ + { "lat": 40.7210315, "lon": -73.9914850 }, + { "lat": 40.7210510, "lon": -73.9915523 }, + { "lat": 40.7210729, "lon": -73.9916278 }, + { "lat": 40.7211090, "lon": -73.9917528 }, + { "lat": 40.7212061, "lon": -73.9920882 }, + { "lat": 40.7212541, "lon": -73.9922542 } + ], + "tags": { + "bicycle": "designated", + "highway": "pedestrian", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "oneway:bicycle": "yes", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 39332803, + "bounds": { + "minlat": 40.8233804, + "minlon": -73.9103820, + "maxlat": 40.8236970, + "maxlon": -73.9091028 + }, + "nodes": [ + 42732960, + 3637961487, + 10647829927, + 42732965 + ], + "geometry": [ + { "lat": 40.8236682, "lon": -73.9103820 }, + { "lat": 40.8236970, "lon": -73.9101245 }, + { "lat": 40.8234239, "lon": -73.9092433 }, + { "lat": 40.8233804, "lon": -73.9091028 } + ], + "tags": { + "highway": "residential", + "name": "East 162nd Street", + "tiger:county": "Bronx, NY", + "tiger:name_base": "162nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 39332808, + "bounds": { + "minlat": 40.8231928, + "minlon": -73.9111583, + "maxlat": 40.8233792, + "maxlon": -73.9104940 + }, + "nodes": [ + 471221481, + 8184243023, + 8184221188, + 13249117229, + 42748183 + ], + "geometry": [ + { "lat": 40.8233740, "lon": -73.9111583 }, + { "lat": 40.8233777, "lon": -73.9110689 }, + { "lat": 40.8233792, "lon": -73.9110322 }, + { "lat": 40.8232293, "lon": -73.9105993 }, + { "lat": 40.8231928, "lon": -73.9104940 } + ], + "tags": { + "highway": "residential", + "name": "East 161st Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 39332809, + "bounds": { + "minlat": 40.8242039, + "minlon": -73.9108174, + "maxlat": 40.8246425, + "maxlon": -73.9105720 + }, + "nodes": [ + 42730079, + 9917683075, + 9567671088, + 9917683084, + 42730077 + ], + "geometry": [ + { "lat": 40.8246425, "lon": -73.9105720 }, + { "lat": 40.8245490, "lon": -73.9106040 }, + { "lat": 40.8243595, "lon": -73.9107189 }, + { "lat": 40.8242480, "lon": -73.9107894 }, + { "lat": 40.8242039, "lon": -73.9108174 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Washington Avenue", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "sidewalk:right": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Washington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "left|none|none" + } +}, +{ + "type": "way", + "id": 39334103, + "bounds": { + "minlat": 40.8053091, + "minlon": -73.9104091, + "maxlat": 40.8058980, + "maxlon": -73.9090725 + }, + "nodes": [ + 471241232, + 471241235, + 471241236 + ], + "geometry": [ + { "lat": 40.8053091, "lon": -73.9104091 }, + { "lat": 40.8055140, "lon": -73.9099638 }, + { "lat": 40.8058980, "lon": -73.9090725 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "I-278", + "tiger:name_type": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 39334244, + "bounds": { + "minlat": 40.8003722, + "minlon": -73.9127547, + "maxlat": 40.8023147, + "maxlon": -73.9090724 + }, + "nodes": [ + 42747208, + 9908669935, + 8285355506, + 7042980645, + 9910669590, + 9910669592, + 9910669591, + 988638770, + 5859955127, + 9910669566, + 42747216, + 9910669567, + 5859955128, + 9910669607, + 9910669608, + 42747219 + ], + "geometry": [ + { "lat": 40.8023147, "lon": -73.9127547 }, + { "lat": 40.8022848, "lon": -73.9126828 }, + { "lat": 40.8022541, "lon": -73.9126108 }, + { "lat": 40.8021533, "lon": -73.9123638 }, + { "lat": 40.8018286, "lon": -73.9115865 }, + { "lat": 40.8017751, "lon": -73.9114768 }, + { "lat": 40.8017359, "lon": -73.9114023 }, + { "lat": 40.8016786, "lon": -73.9113057 }, + { "lat": 40.8011257, "lon": -73.9103736 }, + { "lat": 40.8011020, "lon": -73.9103330 }, + { "lat": 40.8010537, "lon": -73.9102506 }, + { "lat": 40.8010166, "lon": -73.9101856 }, + { "lat": 40.8009892, "lon": -73.9101378 }, + { "lat": 40.8004449, "lon": -73.9091980 }, + { "lat": 40.8004168, "lon": -73.9091494 }, + { "lat": 40.8003722, "lon": -73.9090724 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 135th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 39334251, + "bounds": { + "minlat": 40.8035398, + "minlon": -73.9147757, + "maxlat": 40.8050147, + "maxlon": -73.9113410 + }, + "nodes": [ + 471240527, + 471244262, + 471244264, + 471244265, + 9156942243, + 12521912063, + 471244266, + 9156942242, + 471244268 + ], + "geometry": [ + { "lat": 40.8050147, "lon": -73.9113410 }, + { "lat": 40.8045595, "lon": -73.9123012 }, + { "lat": 40.8037592, "lon": -73.9140507 }, + { "lat": 40.8037061, "lon": -73.9141744 }, + { "lat": 40.8036592, "lon": -73.9143014 }, + { "lat": 40.8036260, "lon": -73.9144079 }, + { "lat": 40.8035946, "lon": -73.9145215 }, + { "lat": 40.8035699, "lon": -73.9146331 }, + { "lat": 40.8035398, "lon": -73.9147757 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination": "Robert F. Kennedy Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 39419919, + "bounds": { + "minlat": 40.7010910, + "minlon": -73.9450140, + "maxlat": 40.7018774, + "maxlon": -73.9438528 + }, + "nodes": [ + 42499146, + 9752126460, + 5487724333, + 9752126450, + 42505456 + ], + "geometry": [ + { "lat": 40.7010910, "lon": -73.9450140 }, + { "lat": 40.7011355, "lon": -73.9449453 }, + { "lat": 40.7017023, "lon": -73.9440713 }, + { "lat": 40.7018063, "lon": -73.9439110 }, + { "lat": 40.7018774, "lon": -73.9438528 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "highway": "residential", + "name": "Whipple Street", + "name:etymology:wikidata": "Q1969780", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Whipple", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 39419920, + "bounds": { + "minlat": 40.7110488, + "minlon": -73.9657688, + "maxlat": 40.7128718, + "maxlon": -73.9605909 + }, + "nodes": [ + 42467551, + 7146380645, + 9767625364, + 42509273, + 9767625366, + 9769719088, + 42520415, + 9767625460, + 8288353920, + 7034559336, + 42535041, + 7034559334, + 2896429690, + 10596313307, + 5186818315, + 42506331 + ], + "geometry": [ + { "lat": 40.7110488, "lon": -73.9605909 }, + { "lat": 40.7111207, "lon": -73.9607583 }, + { "lat": 40.7113347, "lon": -73.9613439 }, + { "lat": 40.7113599, "lon": -73.9614138 }, + { "lat": 40.7113912, "lon": -73.9615022 }, + { "lat": 40.7118787, "lon": -73.9628701 }, + { "lat": 40.7119050, "lon": -73.9629420 }, + { "lat": 40.7119348, "lon": -73.9630243 }, + { "lat": 40.7123318, "lon": -73.9641129 }, + { "lat": 40.7124305, "lon": -73.9643837 }, + { "lat": 40.7124590, "lon": -73.9644620 }, + { "lat": 40.7124928, "lon": -73.9645557 }, + { "lat": 40.7126579, "lon": -73.9650207 }, + { "lat": 40.7127052, "lon": -73.9651855 }, + { "lat": 40.7128541, "lon": -73.9657051 }, + { "lat": 40.7128718, "lon": -73.9657688 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "South 4th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 39513384, + "bounds": { + "minlat": 40.7024148, + "minlon": -73.9932989, + "maxlat": 40.7024544, + "maxlon": -73.9932640 + }, + "nodes": [ + 42499982, + 11674209489, + 3174844145 + ], + "geometry": [ + { "lat": 40.7024544, "lon": -73.9932640 }, + { "lat": 40.7024341, "lon": -73.9932846 }, + { "lat": 40.7024148, "lon": -73.9932989 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Front Street", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Front", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 39513387, + "bounds": { + "minlat": 40.7018653, + "minlon": -73.9944573, + "maxlat": 40.7022859, + "maxlon": -73.9931642 + }, + "nodes": [ + 42469596, + 11682365827, + 11682365826, + 11682365828, + 598054768, + 42499341, + 9712420160, + 9712420170, + 42499339 + ], + "geometry": [ + { "lat": 40.7018653, "lon": -73.9931642 }, + { "lat": 40.7018853, "lon": -73.9931713 }, + { "lat": 40.7019101, "lon": -73.9931832 }, + { "lat": 40.7019307, "lon": -73.9932085 }, + { "lat": 40.7019417, "lon": -73.9932353 }, + { "lat": 40.7021716, "lon": -73.9940696 }, + { "lat": 40.7022443, "lon": -73.9943334 }, + { "lat": 40.7022611, "lon": -73.9943942 }, + { "lat": 40.7022859, "lon": -73.9944573 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Doughty Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Doughty", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 39513388, + "bounds": { + "minlat": 40.7022859, + "minlon": -73.9944573, + "maxlat": 40.7027404, + "maxlon": -73.9941850 + }, + "nodes": [ + 42499339, + 11730966762, + 8164734043, + 8262934767, + 11674209504, + 11674209505, + 11674209506, + 3174844139 + ], + "geometry": [ + { "lat": 40.7022859, "lon": -73.9944573 }, + { "lat": 40.7023270, "lon": -73.9944488 }, + { "lat": 40.7026432, "lon": -73.9942850 }, + { "lat": 40.7026905, "lon": -73.9942605 }, + { "lat": 40.7027179, "lon": -73.9942463 }, + { "lat": 40.7027295, "lon": -73.9942320 }, + { "lat": 40.7027375, "lon": -73.9942083 }, + { "lat": 40.7027404, "lon": -73.9941850 } + ], + "tags": { + "alt_name": "Columbia Heights", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Everit Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Everit", + "tiger:name_type": "St", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 39513390, + "bounds": { + "minlat": 40.7015862, + "minlon": -73.9946073, + "maxlat": 40.7019516, + "maxlon": -73.9933450 + }, + "nodes": [ + 6720148786, + 10739408377, + 8164734041, + 10739408383, + 42486077 + ], + "geometry": [ + { "lat": 40.7015862, "lon": -73.9933450 }, + { "lat": 40.7016185, "lon": -73.9934565 }, + { "lat": 40.7019173, "lon": -73.9944876 }, + { "lat": 40.7019328, "lon": -73.9945408 }, + { "lat": 40.7019516, "lon": -73.9946073 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Vine Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Vine", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 39612790, + "bounds": { + "minlat": 40.7004825, + "minlon": -73.9504961, + "maxlat": 40.7015940, + "maxlon": -73.9487480 + }, + "nodes": [ + 42492003, + 9755373145, + 8288311259, + 9772859318, + 42492001, + 9772859312, + 42491998 + ], + "geometry": [ + { "lat": 40.7015940, "lon": -73.9487480 }, + { "lat": 40.7015436, "lon": -73.9488255 }, + { "lat": 40.7010737, "lon": -73.9495490 }, + { "lat": 40.7006787, "lon": -73.9501566 }, + { "lat": 40.7006062, "lon": -73.9502680 }, + { "lat": 40.7005157, "lon": -73.9504074 }, + { "lat": 40.7004825, "lon": -73.9504961 } + ], + "tags": { + "highway": "residential", + "name": "Wallabout Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wallabout", + "tiger:name_type": "St", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 39613244, + "bounds": { + "minlat": 40.7006062, + "minlon": -73.9502911, + "maxlat": 40.7025700, + "maxlon": -73.9502460 + }, + "nodes": [ + 42492001, + 9772859313, + 9755373276, + 42475325, + 9755373275, + 9755373294, + 42520556 + ], + "geometry": [ + { "lat": 40.7006062, "lon": -73.9502680 }, + { "lat": 40.7007008, "lon": -73.9502911 }, + { "lat": 40.7014840, "lon": -73.9502780 }, + { "lat": 40.7015790, "lon": -73.9502740 }, + { "lat": 40.7016781, "lon": -73.9502730 }, + { "lat": 40.7024667, "lon": -73.9502460 }, + { "lat": 40.7025700, "lon": -73.9502510 } + ], + "tags": { + "highway": "residential", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Union", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 39662322, + "bounds": { + "minlat": 40.7108875, + "minlon": -73.9883106, + "maxlat": 40.7113815, + "maxlon": -73.9882174 + }, + "nodes": [ + 42437500, + 8310246591, + 6330089036 + ], + "geometry": [ + { "lat": 40.7113815, "lon": -73.9883106 }, + { "lat": 40.7112974, "lon": -73.9882947 }, + { "lat": 40.7108875, "lon": -73.9882174 } + ], + "tags": { + "highway": "service", + "name": "Jefferson Street", + "name:etymology:wikidata": "Q11812", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Jefferson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10002", + "tiger:zip_right": "10002" + } +}, +{ + "type": "way", + "id": 39662323, + "bounds": { + "minlat": 40.7143170, + "minlon": -73.9871695, + "maxlat": 40.7159286, + "maxlon": -73.9867312 + }, + "nodes": [ + 42433551, + 6214824222, + 42440444, + 9746386680, + 42440438, + 42440435, + 3683162987, + 7595185930, + 42440430, + 42440422, + 42440415, + 42440411, + 5804835266, + 11038072541 + ], + "geometry": [ + { "lat": 40.7143170, "lon": -73.9871695 }, + { "lat": 40.7143975, "lon": -73.9871678 }, + { "lat": 40.7144667, "lon": -73.9871673 }, + { "lat": 40.7146220, "lon": -73.9871645 }, + { "lat": 40.7148373, "lon": -73.9871477 }, + { "lat": 40.7150171, "lon": -73.9871247 }, + { "lat": 40.7151054, "lon": -73.9871034 }, + { "lat": 40.7151883, "lon": -73.9870854 }, + { "lat": 40.7152410, "lon": -73.9870740 }, + { "lat": 40.7154145, "lon": -73.9870047 }, + { "lat": 40.7155702, "lon": -73.9869319 }, + { "lat": 40.7157708, "lon": -73.9868287 }, + { "lat": 40.7158566, "lon": -73.9867815 }, + { "lat": 40.7159286, "lon": -73.9867312 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Clinton Street", + "name:etymology:wikidata": "Q201646", + "name:ko": "클린턴 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 39662324, + "bounds": { + "minlat": 40.7161377, + "minlon": -73.9861940, + "maxlat": 40.7168982, + "maxlon": -73.9836386 + }, + "nodes": [ + 42432094, + 8310245554, + 7668835409, + 42432093, + 42432091, + 3234481788, + 8309738052, + 8372982783, + 42427337 + ], + "geometry": [ + { "lat": 40.7168982, "lon": -73.9861940 }, + { "lat": 40.7168809, "lon": -73.9861367 }, + { "lat": 40.7166976, "lon": -73.9855314 }, + { "lat": 40.7166303, "lon": -73.9853091 }, + { "lat": 40.7163967, "lon": -73.9845346 }, + { "lat": 40.7162874, "lon": -73.9841719 }, + { "lat": 40.7161963, "lon": -73.9838472 }, + { "lat": 40.7161799, "lon": -73.9837887 }, + { "lat": 40.7161377, "lon": -73.9836386 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 39662325, + "bounds": { + "minlat": 40.7034211, + "minlon": -73.9594408, + "maxlat": 40.7042030, + "maxlon": -73.9582440 + }, + "nodes": [ + 598035426, + 9772859100, + 42491429 + ], + "geometry": [ + { "lat": 40.7034211, "lon": -73.9594408 }, + { "lat": 40.7041564, "lon": -73.9583157 }, + { "lat": 40.7042030, "lon": -73.9582440 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Hooper Street", + "name:etymology:wikidata": "Q1345669", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hooper", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 39702921, + "bounds": { + "minlat": 40.7136287, + "minlon": -73.9534422, + "maxlat": 40.7145061, + "maxlon": -73.9525427 + }, + "nodes": [ + 598031728, + 479716748 + ], + "geometry": [ + { "lat": 40.7136287, "lon": -73.9534422 }, + { "lat": 40.7145061, "lon": -73.9525427 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11; A63; A11; A11; A11; A11; A63; A11", + "tiger:county": "Queens, NY; Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy" + } +}, +{ + "type": "way", + "id": 39703058, + "bounds": { + "minlat": 40.7249086, + "minlon": -73.9344658, + "maxlat": 40.7251698, + "maxlon": -73.9334779 + }, + "nodes": [ + 9194920846, + 598031844 + ], + "geometry": [ + { "lat": 40.7251698, "lon": -73.9334779 }, + { "lat": 40.7249086, "lon": -73.9344658 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 39772363, + "bounds": { + "minlat": 40.7084065, + "minlon": -74.0047821, + "maxlat": 40.7086334, + "maxlon": -74.0042454 + }, + "nodes": [ + 673008453, + 8262309716, + 688630141, + 673008462, + 11345701921, + 11347777575 + ], + "geometry": [ + { "lat": 40.7084065, "lon": -74.0047821 }, + { "lat": 40.7084457, "lon": -74.0046823 }, + { "lat": 40.7084699, "lon": -74.0046263 }, + { "lat": 40.7086122, "lon": -74.0042967 }, + { "lat": 40.7086276, "lon": -74.0042594 }, + { "lat": 40.7086334, "lon": -74.0042454 } + ], + "tags": { + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "lit": "yes", + "motor_vehicle": "private", + "name": "Cliff Street", + "name:ko": "클리프 스트리트", + "oneway": "no", + "service": "alley", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 39772365, + "bounds": { + "minlat": 40.7081946, + "minlon": -74.0039541, + "maxlat": 40.7087540, + "maxlon": -74.0034720 + }, + "nodes": [ + 5362212161, + 11327973807, + 11343006684, + 42433334 + ], + "geometry": [ + { "lat": 40.7081946, "lon": -74.0034720 }, + { "lat": 40.7082508, "lon": -74.0035204 }, + { "lat": 40.7086442, "lon": -74.0038594 }, + { "lat": 40.7087540, "lon": -74.0039541 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Beekman Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "비크먼 스트리트", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 39909514, + "bounds": { + "minlat": 40.7336586, + "minlon": -73.9224431, + "maxlat": 40.7343889, + "maxlon": -73.9214850 + }, + "nodes": [ + 479166916, + 9194902606, + 9194902607, + 9194902608, + 5607992547 + ], + "geometry": [ + { "lat": 40.7343889, "lon": -73.9224431 }, + { "lat": 40.7342705, "lon": -73.9222783 }, + { "lat": 40.7341111, "lon": -73.9220730 }, + { "lat": 40.7339556, "lon": -73.9218722 }, + { "lat": 40.7336586, "lon": -73.9214850 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov": "contraflow_lane", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 39946147, + "bounds": { + "minlat": 40.7189644, + "minlon": -73.9463148, + "maxlat": 40.7234193, + "maxlon": -73.9390318 + }, + "nodes": [ + 598031729, + 476025027, + 12162675510, + 6219006694, + 476025872, + 12162675511, + 12162675512, + 12162675513, + 476025873, + 12162675514, + 476025874, + 12162675515, + 12162675516, + 12162675517, + 12162675518, + 12162675519, + 12162675520, + 12162675521, + 476025875, + 12162675522, + 12162675523, + 12162675525, + 12162675524, + 12162675527, + 12162675526, + 12162675528, + 476025877 + ], + "geometry": [ + { "lat": 40.7234193, "lon": -73.9390318 }, + { "lat": 40.7228899, "lon": -73.9400002 }, + { "lat": 40.7228218, "lon": -73.9401215 }, + { "lat": 40.7227542, "lon": -73.9402336 }, + { "lat": 40.7226861, "lon": -73.9403467 }, + { "lat": 40.7226055, "lon": -73.9404719 }, + { "lat": 40.7225189, "lon": -73.9405978 }, + { "lat": 40.7224543, "lon": -73.9406905 }, + { "lat": 40.7223869, "lon": -73.9407878 }, + { "lat": 40.7223044, "lon": -73.9409008 }, + { "lat": 40.7219923, "lon": -73.9413302 }, + { "lat": 40.7219069, "lon": -73.9414480 }, + { "lat": 40.7218363, "lon": -73.9415449 }, + { "lat": 40.7217588, "lon": -73.9416523 }, + { "lat": 40.7216833, "lon": -73.9417605 }, + { "lat": 40.7216139, "lon": -73.9418615 }, + { "lat": 40.7215342, "lon": -73.9419809 }, + { "lat": 40.7214670, "lon": -73.9420886 }, + { "lat": 40.7214016, "lon": -73.9421981 }, + { "lat": 40.7213413, "lon": -73.9423019 }, + { "lat": 40.7212738, "lon": -73.9424221 }, + { "lat": 40.7207084, "lon": -73.9434048 }, + { "lat": 40.7201430, "lon": -73.9443836 }, + { "lat": 40.7198470, "lon": -73.9448746 }, + { "lat": 40.7195511, "lon": -73.9453610 }, + { "lat": 40.7192578, "lon": -73.9458411 }, + { "lat": 40.7189644, "lon": -73.9463148 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 39946177, + "bounds": { + "minlat": 40.7010565, + "minlon": -73.9874504, + "maxlat": 40.7011410, + "maxlon": -73.9869215 + }, + "nodes": [ + 1258945414, + 1258945453, + 1258945464, + 11679066079 + ], + "geometry": [ + { "lat": 40.7011410, "lon": -73.9874504 }, + { "lat": 40.7011106, "lon": -73.9872577 }, + { "lat": 40.7010851, "lon": -73.9870950 }, + { "lat": 40.7010565, "lon": -73.9869215 } + ], + "tags": { + "bicycle": "no", + "covered": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 39946612, + "bounds": { + "minlat": 40.7100622, + "minlon": -73.9599620, + "maxlat": 40.7101591, + "maxlon": -73.9589345 + }, + "nodes": [ + 479719230, + 592627488 + ], + "geometry": [ + { "lat": 40.7100622, "lon": -73.9599620 }, + { "lat": 40.7101591, "lon": -73.9589345 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "maxspeed:advisory": "30 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 39956197, + "bounds": { + "minlat": 40.7102847, + "minlon": -73.9565269, + "maxlat": 40.7103746, + "maxlon": -73.9563925 + }, + "nodes": [ + 4593135559, + 8842875816, + 598033026 + ], + "geometry": [ + { "lat": 40.7103746, "lon": -73.9565269 }, + { "lat": 40.7103170, "lon": -73.9564396 }, + { "lat": 40.7102847, "lon": -73.9563925 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "South 3rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "3rd", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 39956200, + "bounds": { + "minlat": 40.7174100, + "minlon": -73.9886710, + "maxlat": 40.7176500, + "maxlon": -73.9878823 + }, + "nodes": [ + 42432099, + 8231896472, + 8231896479, + 42432097 + ], + "geometry": [ + { "lat": 40.7176500, "lon": -73.9886710 }, + { "lat": 40.7176142, "lon": -73.9885533 }, + { "lat": 40.7174308, "lon": -73.9879505 }, + { "lat": 40.7174100, "lon": -73.9878823 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 39956201, + "bounds": { + "minlat": 40.7108057, + "minlon": -73.9599366, + "maxlat": 40.7114240, + "maxlon": -73.9595330 + }, + "nodes": [ + 42474131, + 6248588474, + 6248588470, + 42526525 + ], + "geometry": [ + { "lat": 40.7114240, "lon": -73.9595330 }, + { "lat": 40.7113689, "lon": -73.9595680 }, + { "lat": 40.7108637, "lon": -73.9598933 }, + { "lat": 40.7108057, "lon": -73.9599366 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Roebling Street", + "name:etymology:wikidata": "Q77237", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Roebling", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 39956202, + "bounds": { + "minlat": 40.7095356, + "minlon": -74.0040772, + "maxlat": 40.7101627, + "maxlon": -74.0024521 + }, + "nodes": [ + 5378284710, + 11345710820, + 11345710822, + 588546509, + 11345710821, + 12921714133, + 11345710729, + 983501191, + 11345710725, + 8262309703 + ], + "geometry": [ + { "lat": 40.7099996, "lon": -74.0024521 }, + { "lat": 40.7095430, "lon": -74.0030775 }, + { "lat": 40.7095356, "lon": -74.0030952 }, + { "lat": 40.7095356, "lon": -74.0031100 }, + { "lat": 40.7095434, "lon": -74.0031263 }, + { "lat": 40.7096224, "lon": -74.0032448 }, + { "lat": 40.7097510, "lon": -74.0034374 }, + { "lat": 40.7099544, "lon": -74.0037469 }, + { "lat": 40.7100209, "lon": -74.0038513 }, + { "lat": 40.7101627, "lon": -74.0040772 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Spruce Street", + "name:ko": "스프루스 스트리트", + "oneway": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 39956203, + "bounds": { + "minlat": 40.7143170, + "minlon": -73.9871695, + "maxlat": 40.7145093, + "maxlon": -73.9847081 + }, + "nodes": [ + 42433551, + 8231942816, + 3234087898, + 42433553, + 8518556691, + 6411125219, + 42433554 + ], + "geometry": [ + { "lat": 40.7143170, "lon": -73.9871695 }, + { "lat": 40.7143264, "lon": -73.9870515 }, + { "lat": 40.7143906, "lon": -73.9862926 }, + { "lat": 40.7144708, "lon": -73.9853265 }, + { "lat": 40.7145006, "lon": -73.9849712 }, + { "lat": 40.7145045, "lon": -73.9848875 }, + { "lat": 40.7145093, "lon": -73.9847081 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 39956205, + "bounds": { + "minlat": 40.7082744, + "minlon": -74.0024367, + "maxlat": 40.7087820, + "maxlon": -74.0018996 + }, + "nodes": [ + 42433231, + 8279851807, + 3898690192, + 11375807930 + ], + "geometry": [ + { "lat": 40.7082744, "lon": -74.0018996 }, + { "lat": 40.7083190, "lon": -74.0019570 }, + { "lat": 40.7087642, "lon": -74.0024177 }, + { "lat": 40.7087820, "lon": -74.0024367 } + ], + "tags": { + "bicycle": "yes", + "check_date": "2023-11-25", + "foot": "yes", + "highway": "residential", + "horse": "no", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 07:30-16:00)", + "name": "Peck Slip", + "name:etymology:wikidata": "Q128782864", + "name:ko": "펙 슬립", + "note": "Closed to vehicles Mondays to Fridays 7:30am to 4:00pm", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 39956208, + "bounds": { + "minlat": 40.7076540, + "minlon": -73.9398380, + "maxlat": 40.7077810, + "maxlon": -73.9385382 + }, + "nodes": [ + 42513657, + 6943630240, + 9752593960, + 9752593959, + 42523550 + ], + "geometry": [ + { "lat": 40.7076540, "lon": -73.9398380 }, + { "lat": 40.7076644, "lon": -73.9397334 }, + { "lat": 40.7077643, "lon": -73.9387089 }, + { "lat": 40.7077706, "lon": -73.9386446 }, + { "lat": 40.7077810, "lon": -73.9385382 } + ], + "tags": { + "highway": "residential", + "name": "Montrose Avenue", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 39972648, + "bounds": { + "minlat": 40.7117244, + "minlon": -73.9551970, + "maxlat": 40.7128788, + "maxlon": -73.9544111 + }, + "nodes": [ + 479718678, + 9968376569, + 9968376568, + 479718677, + 480221611 + ], + "geometry": [ + { "lat": 40.7128788, "lon": -73.9544111 }, + { "lat": 40.7127700, "lon": -73.9544933 }, + { "lat": 40.7126728, "lon": -73.9545659 }, + { "lat": 40.7125498, "lon": -73.9546498 }, + { "lat": 40.7117244, "lon": -73.9551970 } + ], + "tags": { + "destination": "Williamsburg Bridge;Manhattan", + "hgv": "designated", + "highway": "motorway", + "junction:ref": "32A", + "lanes": "2", + "lit": "yes", + "maxspeed": "35 mph", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 39972825, + "bounds": { + "minlat": 40.7106070, + "minlon": -73.9561958, + "maxlat": 40.7106809, + "maxlon": -73.9555467 + }, + "nodes": [ + 42504779, + 480217241 + ], + "geometry": [ + { "lat": 40.7106070, "lon": -73.9555467 }, + { "lat": 40.7106809, "lon": -73.9561958 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "local", + "highway": "primary", + "layer": "1", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 39972830, + "bounds": { + "minlat": 40.7104010, + "minlon": -73.9563526, + "maxlat": 40.7104253, + "maxlon": -73.9561284 + }, + "nodes": [ + 480212188, + 4202609195 + ], + "geometry": [ + { "lat": 40.7104010, "lon": -73.9563526 }, + { "lat": 40.7104253, "lon": -73.9561284 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 39972954, + "bounds": { + "minlat": 40.7116882, + "minlon": -73.9551004, + "maxlat": 40.7136708, + "maxlon": -73.9535706 + }, + "nodes": [ + 480221805, + 479719240, + 9968370386, + 9968370385, + 9968370387, + 479719241, + 9968370388, + 479719242, + 9968370389, + 479719243, + 479719244, + 9968370390, + 598031720 + ], + "geometry": [ + { "lat": 40.7116882, "lon": -73.9551004 }, + { "lat": 40.7124007, "lon": -73.9546523 }, + { "lat": 40.7125022, "lon": -73.9545852 }, + { "lat": 40.7126036, "lon": -73.9545133 }, + { "lat": 40.7127131, "lon": -73.9544382 }, + { "lat": 40.7128082, "lon": -73.9543685 }, + { "lat": 40.7129339, "lon": -73.9542632 }, + { "lat": 40.7130602, "lon": -73.9541590 }, + { "lat": 40.7132031, "lon": -73.9540295 }, + { "lat": 40.7133062, "lon": -73.9539317 }, + { "lat": 40.7134526, "lon": -73.9537951 }, + { "lat": 40.7135617, "lon": -73.9536859 }, + { "lat": 40.7136708, "lon": -73.9535706 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "1", + "maxspeed:advisory": "30 mph", + "name": "Williamsburg Bridge", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 39972957, + "bounds": { + "minlat": 40.7102384, + "minlon": -73.9589524, + "maxlat": 40.7117244, + "maxlon": -73.9551970 + }, + "nodes": [ + 480221611, + 479718676, + 9968376567, + 479718675, + 9968376566, + 479718674, + 9968376565, + 9968376564, + 479718673, + 9968376563, + 9968376562, + 479718672, + 9968376561, + 479718671, + 9968376560, + 7659489949, + 479718670, + 9968376559, + 7659489950, + 479718669, + 9968376558, + 7659489951, + 479718668, + 592627493 + ], + "geometry": [ + { "lat": 40.7117244, "lon": -73.9551970 }, + { "lat": 40.7115210, "lon": -73.9553347 }, + { "lat": 40.7114386, "lon": -73.9553955 }, + { "lat": 40.7113506, "lon": -73.9554683 }, + { "lat": 40.7112586, "lon": -73.9555520 }, + { "lat": 40.7111812, "lon": -73.9556294 }, + { "lat": 40.7111089, "lon": -73.9557082 }, + { "lat": 40.7110425, "lon": -73.9557908 }, + { "lat": 40.7109687, "lon": -73.9558896 }, + { "lat": 40.7109025, "lon": -73.9559871 }, + { "lat": 40.7108322, "lon": -73.9560993 }, + { "lat": 40.7107711, "lon": -73.9562055 }, + { "lat": 40.7107162, "lon": -73.9563112 }, + { "lat": 40.7106616, "lon": -73.9564266 }, + { "lat": 40.7106133, "lon": -73.9565422 }, + { "lat": 40.7105695, "lon": -73.9566610 }, + { "lat": 40.7105282, "lon": -73.9567851 }, + { "lat": 40.7104939, "lon": -73.9569063 }, + { "lat": 40.7104654, "lon": -73.9570196 }, + { "lat": 40.7104392, "lon": -73.9571331 }, + { "lat": 40.7104176, "lon": -73.9572466 }, + { "lat": 40.7103998, "lon": -73.9573642 }, + { "lat": 40.7103825, "lon": -73.9574868 }, + { "lat": 40.7102384, "lon": -73.9589524 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxspeed": "35 mph", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 40023360, + "bounds": { + "minlat": 40.8731861, + "minlon": -73.9066114, + "maxlat": 40.8733775, + "maxlon": -73.9058516 + }, + "nodes": [ + 481201674, + 481201672 + ], + "geometry": [ + { "lat": 40.8731861, "lon": -73.9058516 }, + { "lat": 40.8733775, "lon": -73.9066114 } + ], + "tags": { + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "West Kingsbridge Road", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 40023361, + "bounds": { + "minlat": 40.8733775, + "minlon": -73.9067173, + "maxlat": 40.8734051, + "maxlon": -73.9066114 + }, + "nodes": [ + 481201672, + 12748328794, + 42731542 + ], + "geometry": [ + { "lat": 40.8733775, "lon": -73.9066114 }, + { "lat": 40.8733841, "lon": -73.9066349 }, + { "lat": 40.8734051, "lon": -73.9067173 } + ], + "tags": { + "highway": "secondary", + "name": "West Kingsbridge Road", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 40117420, + "bounds": { + "minlat": 40.7059075, + "minlon": -73.9631045, + "maxlat": 40.7070066, + "maxlon": -73.9613709 + }, + "nodes": [ + 42514850, + 6235394751, + 6235394745, + 42514854 + ], + "geometry": [ + { "lat": 40.7059075, "lon": -73.9631045 }, + { "lat": 40.7059517, "lon": -73.9630159 }, + { "lat": 40.7069540, "lon": -73.9614300 }, + { "lat": 40.7070066, "lon": -73.9613709 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed:type": "US-NY:urban", + "name": "Taylor Street", + "name:etymology:wikidata": "Q1369216", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Taylor", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 40117454, + "bounds": { + "minlat": 40.7000620, + "minlon": -73.9541400, + "maxlat": 40.7002063, + "maxlon": -73.9538934 + }, + "nodes": [ + 42492065, + 5368768977, + 1275778429 + ], + "geometry": [ + { "lat": 40.7002063, "lon": -73.9538934 }, + { "lat": 40.7001664, "lon": -73.9539632 }, + { "lat": 40.7000620, "lon": -73.9541400 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Wallabout Street", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wallabout", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 40174797, + "bounds": { + "minlat": 40.7163967, + "minlon": -73.9845346, + "maxlat": 40.7169520, + "maxlon": -73.9842443 + }, + "nodes": [ + 42435534, + 8310245565, + 7668835412, + 8309738056, + 8310245556, + 42432091 + ], + "geometry": [ + { "lat": 40.7169520, "lon": -73.9842443 }, + { "lat": 40.7169048, "lon": -73.9842680 }, + { "lat": 40.7166530, "lon": -73.9844001 }, + { "lat": 40.7164940, "lon": -73.9844835 }, + { "lat": 40.7164552, "lon": -73.9845039 }, + { "lat": 40.7163967, "lon": -73.9845346 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Ridge Street", + "name:ko": "리지 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 40174799, + "bounds": { + "minlat": 40.7004640, + "minlon": -73.9474860, + "maxlat": 40.7023160, + "maxlon": -73.9446361 + }, + "nodes": [ + 42516653, + 9755373188, + 9755373170, + 42499144, + 9755373169, + 6857235911, + 6857235909, + 8229295983, + 9773714135, + 42505446 + ], + "geometry": [ + { "lat": 40.7004640, "lon": -73.9474860 }, + { "lat": 40.7005151, "lon": -73.9474071 }, + { "lat": 40.7016089, "lon": -73.9457162 }, + { "lat": 40.7016550, "lon": -73.9456450 }, + { "lat": 40.7017000, "lon": -73.9455764 }, + { "lat": 40.7017857, "lon": -73.9454455 }, + { "lat": 40.7020287, "lon": -73.9450747 }, + { "lat": 40.7022360, "lon": -73.9447582 }, + { "lat": 40.7022600, "lon": -73.9447201 }, + { "lat": 40.7023160, "lon": -73.9446361 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Bartlett Street", + "name:etymology:wikidata": "Q710057", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bartlett", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 40222186, + "bounds": { + "minlat": 40.7668066, + "minlon": -73.9069623, + "maxlat": 40.7685629, + "maxlon": -73.8970632 + }, + "nodes": [ + 106076455, + 13174823065, + 13174823064, + 13174823063, + 2433000853, + 9179198102, + 106081099, + 9179198103, + 9179198104, + 106081098, + 9179198105, + 9179198106, + 106081097, + 9179198107, + 9179198108, + 9179198109, + 9179198110, + 106074504 + ], + "geometry": [ + { "lat": 40.7685629, "lon": -73.9069623 }, + { "lat": 40.7684884, "lon": -73.9065291 }, + { "lat": 40.7684202, "lon": -73.9062528 }, + { "lat": 40.7683633, "lon": -73.9060363 }, + { "lat": 40.7682434, "lon": -73.9055919 }, + { "lat": 40.7681647, "lon": -73.9053098 }, + { "lat": 40.7681242, "lon": -73.9051650 }, + { "lat": 40.7680904, "lon": -73.9050310 }, + { "lat": 40.7680586, "lon": -73.9048954 }, + { "lat": 40.7680259, "lon": -73.9047563 }, + { "lat": 40.7679970, "lon": -73.9046160 }, + { "lat": 40.7679660, "lon": -73.9044473 }, + { "lat": 40.7679261, "lon": -73.9042135 }, + { "lat": 40.7671231, "lon": -73.8991910 }, + { "lat": 40.7670774, "lon": -73.8989025 }, + { "lat": 40.7670339, "lon": -73.8986228 }, + { "lat": 40.7669906, "lon": -73.8983416 }, + { "lat": 40.7668066, "lon": -73.8970632 } + ], + "tags": { + "destination:lanes": "||Airport Terminals B C;Parking Terminal C;Astoria Boulevard;82nd Street;Airport Terminal A;Terminal B Wait Area", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "GCP", + "surface": "asphalt", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 40336166, + "bounds": { + "minlat": 40.8369692, + "minlon": -73.9093027, + "maxlat": 40.8374059, + "maxlon": -73.9091912 + }, + "nodes": [ + 42739246, + 8454214944, + 486818474, + 486818473 + ], + "geometry": [ + { "lat": 40.8369692, "lon": -73.9091912 }, + { "lat": 40.8371137, "lon": -73.9092928 }, + { "lat": 40.8371990, "lon": -73.9093027 }, + { "lat": 40.8374059, "lon": -73.9092779 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "1", + "name": "Findlay Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 40336167, + "bounds": { + "minlat": 40.8367704, + "minlon": -73.9097405, + "maxlat": 40.8368680, + "maxlon": -73.9091870 + }, + "nodes": [ + 486818472, + 5329030887, + 486818477, + 13746562707, + 5329030888, + 486818476, + 5329030889, + 9181609385, + 13746493097, + 486818475 + ], + "geometry": [ + { "lat": 40.8367704, "lon": -73.9091870 }, + { "lat": 40.8367892, "lon": -73.9092270 }, + { "lat": 40.8368215, "lon": -73.9092748 }, + { "lat": 40.8368257, "lon": -73.9092860 }, + { "lat": 40.8368519, "lon": -73.9093567 }, + { "lat": 40.8368679, "lon": -73.9094401 }, + { "lat": 40.8368680, "lon": -73.9095187 }, + { "lat": 40.8368503, "lon": -73.9095965 }, + { "lat": 40.8368430, "lon": -73.9096159 }, + { "lat": 40.8367964, "lon": -73.9097405 } + ], + "tags": { + "highway": "residential", + "name": "Teller Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 40336235, + "bounds": { + "minlat": 40.7003710, + "minlon": -73.9896319, + "maxlat": 40.7004983, + "maxlon": -73.9894385 + }, + "nodes": [ + 9680322049, + 7561173758 + ], + "geometry": [ + { "lat": 40.7003710, "lon": -73.9894385 }, + { "lat": 40.7004983, "lon": -73.9896319 } + ], + "tags": { + "bicycle": "use_sidepath", + "bus": "no", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "1", + "maxspeed": "30 mph", + "name": "Brooklyn Bridge Boulevard", + "name:etymology:wikidata": "Q125006", + "name:etymology:wikipedia": "en:Brooklyn Bridge", + "noref": "yes", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41:A49:A63", + "tiger:county": "Kings, NY;New York, NY", + "tiger:name_base": "Brooklyn", + "tiger:name_type": "Brg" + } +}, +{ + "type": "way", + "id": 40337615, + "bounds": { + "minlat": 40.7114142, + "minlon": -73.9787954, + "maxlat": 40.7157200, + "maxlon": -73.9646127 + }, + "nodes": [ + 486849239, + 3630219664, + 592627494, + 486859044, + 486859046, + 5079840928 + ], + "geometry": [ + { "lat": 40.7114142, "lon": -73.9646127 }, + { "lat": 40.7118354, "lon": -73.9658906 }, + { "lat": 40.7121293, "lon": -73.9669112 }, + { "lat": 40.7152245, "lon": -73.9771211 }, + { "lat": 40.7155931, "lon": -73.9782770 }, + { "lat": 40.7157200, "lon": -73.9787954 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "layer": "2", + "maxheight": "13'4\"", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "wikidata": "Q125068", + "wikipedia": "en:Williamsburg Bridge" + } +}, +{ + "type": "way", + "id": 40337665, + "bounds": { + "minlat": 40.7155363, + "minlon": -73.9842574, + "maxlat": 40.7171427, + "maxlon": -73.9788947 + }, + "nodes": [ + 4727104610, + 4727104614, + 4727104619, + 3785707057, + 3785707059 + ], + "geometry": [ + { "lat": 40.7171427, "lon": -73.9842574 }, + { "lat": 40.7169514, "lon": -73.9836174 }, + { "lat": 40.7164723, "lon": -73.9820133 }, + { "lat": 40.7159026, "lon": -73.9801246 }, + { "lat": 40.7155363, "lon": -73.9788947 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "hgv:lanes": "no|no||", + "highway": "motorway", + "lanes": "4", + "layer": "2", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "turn:lanes": "slight_left|slight_left|slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 40337681, + "bounds": { + "minlat": 40.7186305, + "minlon": -73.9889795, + "maxlat": 40.7188741, + "maxlon": -73.9881675 + }, + "nodes": [ + 42429773, + 3314293721, + 11163941275, + 12195880607, + 3314293717, + 42429769 + ], + "geometry": [ + { "lat": 40.7186305, "lon": -73.9881675 }, + { "lat": 40.7186669, "lon": -73.9882854 }, + { "lat": 40.7188284, "lon": -73.9888301 }, + { "lat": 40.7188376, "lon": -73.9888603 }, + { "lat": 40.7188539, "lon": -73.9889140 }, + { "lat": 40.7188741, "lon": -73.9889795 } + ], + "tags": { + "bus:lanes": "||designated|designated", + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through||", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 40337691, + "bounds": { + "minlat": 40.7173458, + "minlon": -73.9854974, + "maxlat": 40.7177588, + "maxlon": -73.9841569 + }, + "nodes": [ + 486859051, + 5079840929 + ], + "geometry": [ + { "lat": 40.7173458, "lon": -73.9841569 }, + { "lat": 40.7177588, "lon": -73.9854974 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "4", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "turn:lanes": "through|through|through|right" + } +}, +{ + "type": "way", + "id": 40337706, + "bounds": { + "minlat": 40.7101398, + "minlon": -73.9611978, + "maxlat": 40.7103519, + "maxlon": -73.9599738 + }, + "nodes": [ + 479718667, + 9968376555, + 7659489948, + 486871961, + 9968376554, + 7659489947, + 486871967, + 9968376553, + 7659489946, + 486871971, + 9968376551 + ], + "geometry": [ + { "lat": 40.7101447, "lon": -73.9599738 }, + { "lat": 40.7101418, "lon": -73.9600366 }, + { "lat": 40.7101398, "lon": -73.9601277 }, + { "lat": 40.7101399, "lon": -73.9602260 }, + { "lat": 40.7101458, "lon": -73.9603311 }, + { "lat": 40.7101571, "lon": -73.9604515 }, + { "lat": 40.7101702, "lon": -73.9605470 }, + { "lat": 40.7101920, "lon": -73.9606534 }, + { "lat": 40.7102173, "lon": -73.9607643 }, + { "lat": 40.7102458, "lon": -73.9608685 }, + { "lat": 40.7103519, "lon": -73.9611978 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 40337716, + "bounds": { + "minlat": 40.7100497, + "minlon": -73.9612928, + "maxlat": 40.7102057, + "maxlon": -73.9599620 + }, + "nodes": [ + 486863762, + 9968370360, + 486875354, + 9968370365, + 9968370364, + 9968370363, + 486875360, + 486875364, + 9968370361, + 486875381, + 9968370362, + 479719230 + ], + "geometry": [ + { "lat": 40.7102057, "lon": -73.9612928 }, + { "lat": 40.7101778, "lon": -73.9611914 }, + { "lat": 40.7101487, "lon": -73.9610770 }, + { "lat": 40.7101218, "lon": -73.9609710 }, + { "lat": 40.7101000, "lon": -73.9608692 }, + { "lat": 40.7100803, "lon": -73.9607444 }, + { "lat": 40.7100667, "lon": -73.9606400 }, + { "lat": 40.7100546, "lon": -73.9605153 }, + { "lat": 40.7100497, "lon": -73.9603815 }, + { "lat": 40.7100500, "lon": -73.9602364 }, + { "lat": 40.7100558, "lon": -73.9600742 }, + { "lat": 40.7100622, "lon": -73.9599620 } + ], + "tags": { + "destination": "Queens;Bronx", + "destination:ref": "I 278 East", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed:advisory": "30 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 40350730, + "bounds": { + "minlat": 40.7344464, + "minlon": -73.9225517, + "maxlat": 40.7346263, + "maxlon": -73.9222931 + }, + "nodes": [ + 479166881, + 487120840 + ], + "geometry": [ + { "lat": 40.7344464, "lon": -73.9222931 }, + { "lat": 40.7346263, "lon": -73.9225517 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 40389023, + "bounds": { + "minlat": 40.7253323, + "minlon": -73.9318993, + "maxlat": 40.7254593, + "maxlon": -73.9316148 + }, + "nodes": [ + 476025204, + 12162652783, + 6760344195 + ], + "geometry": [ + { "lat": 40.7253323, "lon": -73.9318993 }, + { "lat": 40.7253965, "lon": -73.9317530 }, + { "lat": 40.7254593, "lon": -73.9316148 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 40709920, + "bounds": { + "minlat": 40.7221822, + "minlon": -73.9916699, + "maxlat": 40.7224213, + "maxlon": -73.9908923 + }, + "nodes": [ + 42432083, + 4539951611, + 6330061769, + 6330061740, + 42432054 + ], + "geometry": [ + { "lat": 40.7224213, "lon": -73.9916699 }, + { "lat": 40.7223660, "lon": -73.9914903 }, + { "lat": 40.7222270, "lon": -73.9910393 }, + { "lat": 40.7222033, "lon": -73.9909626 }, + { "lat": 40.7221822, "lon": -73.9908923 } + ], + "tags": { + "bicycle": "designated", + "highway": "pedestrian", + "name": "Stanton Street", + "name:ru": "Стэнтон-стрит", + "oneway:bicycle": "yes", + "surface": "paving_stones", + "wikidata": "Q7600270", + "wikipedia": "en:Stanton Street" + } +}, +{ + "type": "way", + "id": 40709921, + "bounds": { + "minlat": 40.7228311, + "minlon": -73.9931650, + "maxlat": 40.7240074, + "maxlon": -73.9927280 + }, + "nodes": [ + 5829779512, + 12187431497, + 42432082 + ], + "geometry": [ + { "lat": 40.7240074, "lon": -73.9927280 }, + { "lat": 40.7239827, "lon": -73.9927382 }, + { "lat": 40.7228311, "lon": -73.9931650 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 40709927, + "bounds": { + "minlat": 40.7257047, + "minlon": -73.9940260, + "maxlat": 40.7265957, + "maxlon": -73.9922271 + }, + "nodes": [ + 11608906306, + 12187431472, + 8309479097 + ], + "geometry": [ + { "lat": 40.7265957, "lon": -73.9940260 }, + { "lat": 40.7257209, "lon": -73.9922681 }, + { "lat": 40.7257047, "lon": -73.9922271 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 16:30-23:00; Sa 10:00-23:00; Su 11:30-23:00)", + "name": "Bond Street", + "name:ko": "본드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q23091435", + "wikipedia": "en:Bond Street" + } +}, +{ + "type": "way", + "id": 40709928, + "bounds": { + "minlat": 40.7179269, + "minlon": -73.9930731, + "maxlat": 40.7234794, + "maxlon": -73.9902426 + }, + "nodes": [ + 42451660, + 12196062162, + 6369613059, + 12196062164, + 8231877084, + 42432111, + 8231877082, + 8821681991, + 5159452347, + 486867432, + 42429756, + 5159452352, + 8307642279, + 42437111, + 8307642278, + 12196062166, + 8307642271, + 42432054, + 8307642270, + 12196062167, + 8821475420, + 5783022067, + 1918039896, + 42451665 + ], + "geometry": [ + { "lat": 40.7179269, "lon": -73.9930731 }, + { "lat": 40.7179599, "lon": -73.9930559 }, + { "lat": 40.7180025, "lon": -73.9930337 }, + { "lat": 40.7187452, "lon": -73.9926551 }, + { "lat": 40.7187929, "lon": -73.9926306 }, + { "lat": 40.7188452, "lon": -73.9926039 }, + { "lat": 40.7189021, "lon": -73.9925748 }, + { "lat": 40.7195318, "lon": -73.9922508 }, + { "lat": 40.7195881, "lon": -73.9922222 }, + { "lat": 40.7196785, "lon": -73.9921764 }, + { "lat": 40.7198217, "lon": -73.9921037 }, + { "lat": 40.7199199, "lon": -73.9920538 }, + { "lat": 40.7209807, "lon": -73.9915125 }, + { "lat": 40.7210315, "lon": -73.9914850 }, + { "lat": 40.7210793, "lon": -73.9914607 }, + { "lat": 40.7220933, "lon": -73.9909382 }, + { "lat": 40.7221336, "lon": -73.9909174 }, + { "lat": 40.7221822, "lon": -73.9908923 }, + { "lat": 40.7222309, "lon": -73.9908721 }, + { "lat": 40.7223268, "lon": -73.9908323 }, + { "lat": 40.7232294, "lon": -73.9903699 }, + { "lat": 40.7232839, "lon": -73.9903422 }, + { "lat": 40.7233719, "lon": -73.9902968 }, + { "lat": 40.7234794, "lon": -73.9902426 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Forsyth Street", + "name:etymology:wikidata": "Q4888596", + "name:ko": "포사이스 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5470659", + "wikipedia": "en:Forsyth Street" + } +}, +{ + "type": "way", + "id": 40712688, + "bounds": { + "minlat": 40.7008342, + "minlon": -73.9599339, + "maxlat": 40.7030760, + "maxlon": -73.9574398 + }, + "nodes": [ + 42477575, + 6235395086, + 9772859041, + 42520236, + 9772859039, + 9772859012, + 42482037, + 9772859010, + 9772858995, + 42490956, + 9772858997, + 13670670132, + 9772858983, + 42504253, + 598035420 + ], + "geometry": [ + { "lat": 40.7008342, "lon": -73.9574398 }, + { "lat": 40.7009026, "lon": -73.9574953 }, + { "lat": 40.7013512, "lon": -73.9580166 }, + { "lat": 40.7013980, "lon": -73.9580710 }, + { "lat": 40.7014551, "lon": -73.9581349 }, + { "lat": 40.7019146, "lon": -73.9586462 }, + { "lat": 40.7019530, "lon": -73.9586890 }, + { "lat": 40.7020225, "lon": -73.9587669 }, + { "lat": 40.7024814, "lon": -73.9592811 }, + { "lat": 40.7025280, "lon": -73.9593330 }, + { "lat": 40.7025819, "lon": -73.9593935 }, + { "lat": 40.7027533, "lon": -73.9595844 }, + { "lat": 40.7029799, "lon": -73.9598368 }, + { "lat": 40.7030320, "lon": -73.9598890 }, + { "lat": 40.7030760, "lon": -73.9599339 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "yes", + "tiger:zip_left": "11226", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 40837875, + "bounds": { + "minlat": 40.7123696, + "minlon": -73.9941106, + "maxlat": 40.7130535, + "maxlon": -73.9937507 + }, + "nodes": [ + 496707000, + 8279851220, + 12303955448, + 8279851225, + 496707003 + ], + "geometry": [ + { "lat": 40.7130535, "lon": -73.9941106 }, + { "lat": 40.7129962, "lon": -73.9940812 }, + { "lat": 40.7124583, "lon": -73.9937974 }, + { "lat": 40.7124365, "lon": -73.9937859 }, + { "lat": 40.7123696, "lon": -73.9937507 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Mechanics Alley", + "name:ko": "메케닉스 앨리", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 40837877, + "bounds": { + "minlat": 40.7139214, + "minlon": -73.9671197, + "maxlat": 40.7158693, + "maxlon": -73.9662346 + }, + "nodes": [ + 42469468, + 5186818625, + 11163899194, + 11249142487, + 11249142483, + 9949550298, + 42469475, + 9949550299, + 11163899191, + 9450686170 + ], + "geometry": [ + { "lat": 40.7139214, "lon": -73.9671197 }, + { "lat": 40.7139867, "lon": -73.9670905 }, + { "lat": 40.7142100, "lon": -73.9669892 }, + { "lat": 40.7146705, "lon": -73.9667802 }, + { "lat": 40.7147259, "lon": -73.9667551 }, + { "lat": 40.7154780, "lon": -73.9664163 }, + { "lat": 40.7155231, "lon": -73.9663960 }, + { "lat": 40.7155937, "lon": -73.9663631 }, + { "lat": 40.7156886, "lon": -73.9663188 }, + { "lat": 40.7158693, "lon": -73.9662346 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 40879212, + "bounds": { + "minlat": 40.7151250, + "minlon": -73.9828615, + "maxlat": 40.7158586, + "maxlon": -73.9803139 + }, + "nodes": [ + 42432089, + 8312361704, + 8310245602, + 42432088, + 5377706587, + 5377706589, + 42432190 + ], + "geometry": [ + { "lat": 40.7158586, "lon": -73.9828615 }, + { "lat": 40.7158405, "lon": -73.9827929 }, + { "lat": 40.7153988, "lon": -73.9812434 }, + { "lat": 40.7153762, "lon": -73.9811640 }, + { "lat": 40.7153586, "lon": -73.9811045 }, + { "lat": 40.7151330, "lon": -73.9803409 }, + { "lat": 40.7151250, "lon": -73.9803139 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "operator": "Hillman Housing Corp.", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 40879214, + "bounds": { + "minlat": 40.7146584, + "minlon": -73.9768194, + "maxlat": 40.7153027, + "maxlon": -73.9764830 + }, + "nodes": [ + 42452936, + 42452916, + 42424641 + ], + "geometry": [ + { "lat": 40.7153027, "lon": -73.9764830 }, + { "lat": 40.7150488, "lon": -73.9766204 }, + { "lat": 40.7146584, "lon": -73.9768194 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 40879216, + "bounds": { + "minlat": 40.7095135, + "minlon": -73.9940953, + "maxlat": 40.7100934, + "maxlon": -73.9940239 + }, + "nodes": [ + 42452556, + 11519945282, + 9525441195, + 3316837973, + 7830788153, + 42444116 + ], + "geometry": [ + { "lat": 40.7100934, "lon": -73.9940953 }, + { "lat": 40.7100405, "lon": -73.9940948 }, + { "lat": 40.7099948, "lon": -73.9940897 }, + { "lat": 40.7098733, "lon": -73.9940738 }, + { "lat": 40.7095981, "lon": -73.9940357 }, + { "lat": 40.7095135, "lon": -73.9940239 } + ], + "tags": { + "cycleway:both": "lane", + "cycleway:both:buffer": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Market Slip", + "name:ko": "마켓 슬립", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 40879221, + "bounds": { + "minlat": 40.7102335, + "minlon": -74.0056176, + "maxlat": 40.7104144, + "maxlon": -74.0054271 + }, + "nodes": [ + 12311690169, + 8281922080, + 11347850344, + 42448593 + ], + "geometry": [ + { "lat": 40.7102335, "lon": -74.0054271 }, + { "lat": 40.7103505, "lon": -74.0055492 }, + { "lat": 40.7103888, "lon": -74.0055902 }, + { "lat": 40.7104144, "lon": -74.0056176 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Beekman Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "비크먼 스트리트", + "name:ru": "Бикман-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 40879223, + "bounds": { + "minlat": 40.7078606, + "minlon": -74.0068365, + "maxlat": 40.7082290, + "maxlon": -74.0065343 + }, + "nodes": [ + 42440345, + 11369961809, + 8281922172, + 11369961817, + 11369961816, + 11369961782, + 42429354 + ], + "geometry": [ + { "lat": 40.7082290, "lon": -74.0065343 }, + { "lat": 40.7082087, "lon": -74.0065544 }, + { "lat": 40.7081853, "lon": -74.0065771 }, + { "lat": 40.7081311, "lon": -74.0066276 }, + { "lat": 40.7080131, "lon": -74.0067230 }, + { "lat": 40.7078945, "lon": -74.0068144 }, + { "lat": 40.7078606, "lon": -74.0068365 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Gold Street", + "name:ko": "골드 스트리트", + "name:ru": "Голд-стрит", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 40956096, + "bounds": { + "minlat": 40.7078990, + "minlon": -74.0042554, + "maxlat": 40.7082508, + "maxlon": -74.0035204 + }, + "nodes": [ + 11327973807, + 11345701919, + 11343006580, + 11327973806, + 11327973842, + 7139624425, + 7139624452 + ], + "geometry": [ + { "lat": 40.7082508, "lon": -74.0035204 }, + { "lat": 40.7082368, "lon": -74.0035506 }, + { "lat": 40.7082218, "lon": -74.0035829 }, + { "lat": 40.7081225, "lon": -74.0037898 }, + { "lat": 40.7079377, "lon": -74.0041747 }, + { "lat": 40.7079303, "lon": -74.0041901 }, + { "lat": 40.7078990, "lon": -74.0042554 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "no", + "surface": "concrete", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 40956098, + "bounds": { + "minlat": 40.7136103, + "minlon": -74.0035418, + "maxlat": 40.7139579, + "maxlon": -74.0030498 + }, + "nodes": [ + 42427278, + 11380040170, + 4625583186, + 11380040171, + 9377509567, + 1251908606, + 9377509566, + 1253070618, + 11380040168, + 4561384853 + ], + "geometry": [ + { "lat": 40.7136103, "lon": -74.0035418 }, + { "lat": 40.7136381, "lon": -74.0035151 }, + { "lat": 40.7136758, "lon": -74.0034742 }, + { "lat": 40.7137243, "lon": -74.0034211 }, + { "lat": 40.7137734, "lon": -74.0033619 }, + { "lat": 40.7138205, "lon": -74.0032970 }, + { "lat": 40.7138570, "lon": -74.0032414 }, + { "lat": 40.7138925, "lon": -74.0031810 }, + { "lat": 40.7139287, "lon": -74.0031110 }, + { "lat": 40.7139579, "lon": -74.0030498 } + ], + "tags": { + "change": "yes", + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_stopping", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 41520108, + "bounds": { + "minlat": 40.7148220, + "minlon": -73.9945128, + "maxlat": 40.7150930, + "maxlon": -73.9944236 + }, + "nodes": [ + 2902542860, + 2902542859, + 42451654, + 11638918197, + 12333974934 + ], + "geometry": [ + { "lat": 40.7150930, "lon": -73.9945113 }, + { "lat": 40.7150167, "lon": -73.9945128 }, + { "lat": 40.7149038, "lon": -73.9944664 }, + { "lat": 40.7148922, "lon": -73.9944603 }, + { "lat": 40.7148220, "lon": -73.9944236 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Forsyth Street", + "name:etymology:wikidata": "Q4888596", + "name:ko": "포사이스 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5470659", + "wikipedia": "en:Forsyth Street" + } +}, +{ + "type": "way", + "id": 41744763, + "bounds": { + "minlat": 40.7714243, + "minlon": -73.9198026, + "maxlat": 40.7717327, + "maxlon": -73.9196311 + }, + "nodes": [ + 514103142, + 6453002252, + 514103140 + ], + "geometry": [ + { "lat": 40.7714243, "lon": -73.9198026 }, + { "lat": 40.7716569, "lon": -73.9196713 }, + { "lat": 40.7717327, "lon": -73.9196311 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 42361744, + "bounds": { + "minlat": 40.8693899, + "minlon": -74.0037759, + "maxlat": 40.8696495, + "maxlon": -74.0034113 + }, + "nodes": [ + 298782720, + 775937813 + ], + "geometry": [ + { "lat": 40.8693899, "lon": -74.0034113 }, + { "lat": 40.8696495, "lon": -74.0037759 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "2", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 42361752, + "bounds": { + "minlat": 40.8679589, + "minlon": -73.9769205, + "maxlat": 40.8683463, + "maxlon": -73.9760147 + }, + "nodes": [ + 299385886, + 7924979199, + 103292643 + ], + "geometry": [ + { "lat": 40.8679589, "lon": -73.9769205 }, + { "lat": 40.8679898, "lon": -73.9768561 }, + { "lat": 40.8683463, "lon": -73.9760147 } + ], + "tags": { + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Edgewood Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewood", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42361756, + "bounds": { + "minlat": 40.8686433, + "minlon": -74.0034113, + "maxlat": 40.8693899, + "maxlon": -74.0023495 + }, + "nodes": [ + 103107184, + 298782720 + ], + "geometry": [ + { "lat": 40.8686433, "lon": -74.0023495 }, + { "lat": 40.8693899, "lon": -74.0034113 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "bridge": "yes", + "cycleway:right": "no", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 42361758, + "bounds": { + "minlat": 40.8637347, + "minlon": -74.0118648, + "maxlat": 40.8640330, + "maxlon": -74.0117179 + }, + "nodes": [ + 528865065, + 10938672414, + 298562569, + 298562923 + ], + "geometry": [ + { "lat": 40.8640330, "lon": -74.0117179 }, + { "lat": 40.8639929, "lon": -74.0117395 }, + { "lat": 40.8638845, "lon": -74.0117973 }, + { "lat": 40.8637347, "lon": -74.0118648 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "no", + "turn:lanes": "through|through|through|merge_to_left" + } +}, +{ + "type": "way", + "id": 42361770, + "bounds": { + "minlat": 40.8640330, + "minlon": -74.0117179, + "maxlat": 40.8643574, + "maxlon": -74.0114991 + }, + "nodes": [ + 298607523, + 5389691967, + 298562567, + 528865065 + ], + "geometry": [ + { "lat": 40.8643574, "lon": -74.0114991 }, + { "lat": 40.8642362, "lon": -74.0115879 }, + { "lat": 40.8641202, "lon": -74.0116641 }, + { "lat": 40.8640330, "lon": -74.0117179 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "maxspeed": "55 mph", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42361800, + "bounds": { + "minlat": 40.8640666, + "minlon": -74.0106390, + "maxlat": 40.8644499, + "maxlon": -74.0101875 + }, + "nodes": [ + 298562216, + 10938641159, + 298562099, + 298562217, + 10938641108, + 298562075 + ], + "geometry": [ + { "lat": 40.8640666, "lon": -74.0106390 }, + { "lat": 40.8641684, "lon": -74.0105356 }, + { "lat": 40.8642373, "lon": -74.0104618 }, + { "lat": 40.8643037, "lon": -74.0103840 }, + { "lat": 40.8643943, "lon": -74.0102688 }, + { "lat": 40.8644499, "lon": -74.0101875 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42361820, + "bounds": { + "minlat": 40.8644152, + "minlon": -74.0104394, + "maxlat": 40.8664427, + "maxlon": -74.0059290 + }, + "nodes": [ + 298561957, + 10938641195, + 10938916529, + 298561938, + 10938916523, + 10938641140, + 10938916531, + 298561939, + 10938916554, + 298561958, + 10938641154, + 298561941, + 298561959, + 13758734033, + 13758734032, + 13758734034, + 298561943, + 10938641186, + 298561944, + 10938641177, + 10938641120, + 298561960, + 10938641188, + 298561946, + 10938641193, + 298561961, + 10938641161, + 298561948, + 13164303708, + 13164303709, + 13164303710, + 13758734036, + 13758734037, + 298607359 + ], + "geometry": [ + { "lat": 40.8644152, "lon": -74.0104394 }, + { "lat": 40.8644599, "lon": -74.0103806 }, + { "lat": 40.8645073, "lon": -74.0103148 }, + { "lat": 40.8645541, "lon": -74.0102464 }, + { "lat": 40.8645974, "lon": -74.0101788 }, + { "lat": 40.8646421, "lon": -74.0101052 }, + { "lat": 40.8646841, "lon": -74.0100302 }, + { "lat": 40.8647242, "lon": -74.0099561 }, + { "lat": 40.8647632, "lon": -74.0098785 }, + { "lat": 40.8647997, "lon": -74.0098015 }, + { "lat": 40.8648653, "lon": -74.0096453 }, + { "lat": 40.8649291, "lon": -74.0094802 }, + { "lat": 40.8649897, "lon": -74.0093168 }, + { "lat": 40.8650497, "lon": -74.0091505 }, + { "lat": 40.8651084, "lon": -74.0089847 }, + { "lat": 40.8651668, "lon": -74.0088181 }, + { "lat": 40.8652250, "lon": -74.0086511 }, + { "lat": 40.8652853, "lon": -74.0084805 }, + { "lat": 40.8653445, "lon": -74.0083120 }, + { "lat": 40.8654070, "lon": -74.0081437 }, + { "lat": 40.8654706, "lon": -74.0079736 }, + { "lat": 40.8655333, "lon": -74.0078099 }, + { "lat": 40.8656007, "lon": -74.0076397 }, + { "lat": 40.8656661, "lon": -74.0074815 }, + { "lat": 40.8657373, "lon": -74.0073143 }, + { "lat": 40.8658055, "lon": -74.0071598 }, + { "lat": 40.8658773, "lon": -74.0070076 }, + { "lat": 40.8659507, "lon": -74.0068536 }, + { "lat": 40.8660269, "lon": -74.0066988 }, + { "lat": 40.8661066, "lon": -74.0065424 }, + { "lat": 40.8661846, "lon": -74.0063961 }, + { "lat": 40.8662785, "lon": -74.0062216 }, + { "lat": 40.8663685, "lon": -74.0060588 }, + { "lat": 40.8664427, "lon": -74.0059290 } + ], + "tags": { + "bicycle": "no", + "destination": "George Washington Bridge", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42361855, + "bounds": { + "minlat": 40.8640409, + "minlon": -74.0108272, + "maxlat": 40.8644152, + "maxlon": -74.0104394 + }, + "nodes": [ + 528865248, + 298561956, + 10938641141, + 10938641190, + 10938641148, + 298561936, + 10938598304, + 10938641163, + 298561957 + ], + "geometry": [ + { "lat": 40.8640409, "lon": -74.0108272 }, + { "lat": 40.8640579, "lon": -74.0108131 }, + { "lat": 40.8641168, "lon": -74.0107620 }, + { "lat": 40.8641722, "lon": -74.0107096 }, + { "lat": 40.8642203, "lon": -74.0106619 }, + { "lat": 40.8642661, "lon": -74.0106138 }, + { "lat": 40.8643157, "lon": -74.0105584 }, + { "lat": 40.8643600, "lon": -74.0105060 }, + { "lat": 40.8644152, "lon": -74.0104394 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination": "George Washington Bridge", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42361879, + "bounds": { + "minlat": 40.8647197, + "minlon": -74.0111648, + "maxlat": 40.8651367, + "maxlon": -74.0106025 + }, + "nodes": [ + 298562560, + 10936420177, + 5389691966, + 298562562, + 298562563, + 5389691965, + 298562921 + ], + "geometry": [ + { "lat": 40.8651367, "lon": -74.0106025 }, + { "lat": 40.8651049, "lon": -74.0106546 }, + { "lat": 40.8650283, "lon": -74.0107736 }, + { "lat": 40.8649441, "lon": -74.0108919 }, + { "lat": 40.8648477, "lon": -74.0110167 }, + { "lat": 40.8647708, "lon": -74.0111084 }, + { "lat": 40.8647197, "lon": -74.0111648 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42361891, + "bounds": { + "minlat": 40.8643574, + "minlon": -74.0114991, + "maxlat": 40.8647197, + "maxlon": -74.0111648 + }, + "nodes": [ + 298562921, + 10936420167, + 10936420168, + 298562565, + 298607523 + ], + "geometry": [ + { "lat": 40.8647197, "lon": -74.0111648 }, + { "lat": 40.8647031, "lon": -74.0111822 }, + { "lat": 40.8646014, "lon": -74.0112859 }, + { "lat": 40.8644856, "lon": -74.0113932 }, + { "lat": 40.8643574, "lon": -74.0114991 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42361916, + "bounds": { + "minlat": 40.8655721, + "minlon": -74.0155123, + "maxlat": 40.8703967, + "maxlon": -74.0139498 + }, + "nodes": [ + 103214383, + 10939049296, + 6875540447, + 7505454808, + 103214384, + 7505454817, + 103214385, + 7505454804, + 7505454805, + 103146428, + 103146457, + 103184874, + 103214386, + 103127875, + 103214387, + 103214389, + 103214391, + 6875600538, + 475230345, + 11135782031, + 11135782028, + 103214399 + ], + "geometry": [ + { "lat": 40.8655721, "lon": -74.0155123 }, + { "lat": 40.8655966, "lon": -74.0155056 }, + { "lat": 40.8657616, "lon": -74.0154598 }, + { "lat": 40.8657901, "lon": -74.0154520 }, + { "lat": 40.8658589, "lon": -74.0154337 }, + { "lat": 40.8660194, "lon": -74.0153903 }, + { "lat": 40.8665418, "lon": -74.0152417 }, + { "lat": 40.8666078, "lon": -74.0152233 }, + { "lat": 40.8666723, "lon": -74.0152060 }, + { "lat": 40.8672230, "lon": -74.0150524 }, + { "lat": 40.8673094, "lon": -74.0150273 }, + { "lat": 40.8679720, "lon": -74.0148140 }, + { "lat": 40.8686300, "lon": -74.0146340 }, + { "lat": 40.8688630, "lon": -74.0145700 }, + { "lat": 40.8692990, "lon": -74.0144480 }, + { "lat": 40.8694280, "lon": -74.0144030 }, + { "lat": 40.8695270, "lon": -74.0143640 }, + { "lat": 40.8698743, "lon": -74.0141986 }, + { "lat": 40.8700986, "lon": -74.0140918 }, + { "lat": 40.8701542, "lon": -74.0140653 }, + { "lat": 40.8702841, "lon": -74.0140034 }, + { "lat": 40.8703967, "lon": -74.0139498 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "maxspeed": "40 mph", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 42361926, + "bounds": { + "minlat": 40.8647115, + "minlon": -74.0157498, + "maxlat": 40.8655721, + "maxlon": -74.0155123 + }, + "nodes": [ + 103214381, + 103214383 + ], + "geometry": [ + { "lat": 40.8647115, "lon": -74.0157498 }, + { "lat": 40.8655721, "lon": -74.0155123 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 42361927, + "bounds": { + "minlat": 40.8644499, + "minlon": -74.0101875, + "maxlat": 40.8651830, + "maxlon": -74.0081369 + }, + "nodes": [ + 298562075, + 10938641111, + 298562076, + 10938598294, + 298562101, + 298562218, + 298562103, + 10938598286, + 298562219, + 10938641171, + 13762277535, + 13762277536, + 13762277537, + 9181865344 + ], + "geometry": [ + { "lat": 40.8644499, "lon": -74.0101875 }, + { "lat": 40.8645009, "lon": -74.0101124 }, + { "lat": 40.8645843, "lon": -74.0099704 }, + { "lat": 40.8646607, "lon": -74.0098227 }, + { "lat": 40.8647319, "lon": -74.0096679 }, + { "lat": 40.8647960, "lon": -74.0095073 }, + { "lat": 40.8648542, "lon": -74.0093391 }, + { "lat": 40.8649053, "lon": -74.0091655 }, + { "lat": 40.8649529, "lon": -74.0089954 }, + { "lat": 40.8649981, "lon": -74.0088252 }, + { "lat": 40.8650469, "lon": -74.0086425 }, + { "lat": 40.8650905, "lon": -74.0084790 }, + { "lat": 40.8651366, "lon": -74.0083088 }, + { "lat": 40.8651830, "lon": -74.0081369 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42380724, + "bounds": { + "minlat": 40.8046021, + "minlon": -73.9192848, + "maxlat": 40.8047741, + "maxlon": -73.9188757 + }, + "nodes": [ + 9156942309, + 595800962 + ], + "geometry": [ + { "lat": 40.8046021, "lon": -73.9188757 }, + { "lat": 40.8047741, "lon": -73.9192848 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42381302, + "bounds": { + "minlat": 40.8331640, + "minlon": -73.9317296, + "maxlat": 40.8376601, + "maxlon": -73.9304060 + }, + "nodes": [ + 529056338, + 529054572, + 529054574, + 7899202002, + 7899202023, + 529054581, + 7899202044, + 7899202012, + 529288546 + ], + "geometry": [ + { "lat": 40.8376601, "lon": -73.9304060 }, + { "lat": 40.8374515, "lon": -73.9304824 }, + { "lat": 40.8372389, "lon": -73.9305575 }, + { "lat": 40.8370266, "lon": -73.9306280 }, + { "lat": 40.8368113, "lon": -73.9306969 }, + { "lat": 40.8365909, "lon": -73.9307663 }, + { "lat": 40.8363845, "lon": -73.9308279 }, + { "lat": 40.8361625, "lon": -73.9308882 }, + { "lat": 40.8331640, "lon": -73.9317296 } + ], + "tags": { + "destination:lanes": "none|none|none;East 153 Street;River Avenue", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 42381305, + "bounds": { + "minlat": 40.8323955, + "minlon": -73.9317856, + "maxlat": 40.8374915, + "maxlon": -73.9303041 + }, + "nodes": [ + 529059900, + 7899201994, + 7899202034, + 529051461, + 529051464, + 13533533147, + 60922694 + ], + "geometry": [ + { "lat": 40.8323955, "lon": -73.9317856 }, + { "lat": 40.8364067, "lon": -73.9306564 }, + { "lat": 40.8366259, "lon": -73.9305928 }, + { "lat": 40.8368436, "lon": -73.9305255 }, + { "lat": 40.8370572, "lon": -73.9304560 }, + { "lat": 40.8372713, "lon": -73.9303827 }, + { "lat": 40.8374915, "lon": -73.9303041 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete", + "turn:lanes": "||slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 42435675, + "bounds": { + "minlat": 40.8456343, + "minlon": -73.9303694, + "maxlat": 40.8459089, + "maxlon": -73.9293861 + }, + "nodes": [ + 529798909, + 12213447912, + 5891063547, + 529799006 + ], + "geometry": [ + { "lat": 40.8459089, "lon": -73.9303694 }, + { "lat": 40.8458852, "lon": -73.9302768 }, + { "lat": 40.8458600, "lon": -73.9301812 }, + { "lat": 40.8456343, "lon": -73.9293861 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Alexander Hamilton Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "toll": "yes", + "wikidata": "Q621768", + "wikipedia": "en:Alexander Hamilton Bridge" + } +}, +{ + "type": "way", + "id": 42480726, + "bounds": { + "minlat": 40.8790973, + "minlon": -73.9492515, + "maxlat": 40.8795228, + "maxlon": -73.9490254 + }, + "nodes": [ + 114662150, + 65634431 + ], + "geometry": [ + { "lat": 40.8795228, "lon": -73.9490254 }, + { "lat": 40.8790973, "lon": -73.9492515 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway", + "turn:lanes": "none|none|merge_to_left" + } +}, +{ + "type": "way", + "id": 42480727, + "bounds": { + "minlat": 40.8734216, + "minlon": -73.9515505, + "maxlat": 40.8774428, + "maxlon": -73.9500269 + }, + "nodes": [ + 12316726915, + 62885822, + 62885824, + 62885825, + 62885826, + 62885827 + ], + "geometry": [ + { "lat": 40.8774428, "lon": -73.9500269 }, + { "lat": 40.8772158, "lon": -73.9501220 }, + { "lat": 40.8763267, "lon": -73.9504138 }, + { "lat": 40.8750741, "lon": -73.9508258 }, + { "lat": 40.8743992, "lon": -73.9510833 }, + { "lat": 40.8734216, "lon": -73.9515505 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway" + } +}, +{ + "type": "way", + "id": 42480728, + "bounds": { + "minlat": 40.8730576, + "minlon": -73.9517622, + "maxlat": 40.8734216, + "maxlon": -73.9515505 + }, + "nodes": [ + 62885827, + 62885828 + ], + "geometry": [ + { "lat": 40.8734216, "lon": -73.9515505 }, + { "lat": 40.8730576, "lon": -73.9517622 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway" + } +}, +{ + "type": "way", + "id": 42480729, + "bounds": { + "minlat": 40.8648714, + "minlon": -73.9551516, + "maxlat": 40.8730576, + "maxlon": -73.9517622 + }, + "nodes": [ + 62885828, + 62885830, + 62885831, + 13606941648, + 62885832, + 7924838491, + 62885834, + 7924835172, + 7924835183, + 62885835, + 7924835164, + 62885837, + 7924835177, + 7924838488, + 62885839, + 62885840, + 7924769794, + 7924769791, + 7924769793, + 62885842, + 7912952257, + 62885843, + 7912952270, + 62885844, + 7912952282, + 7924769792, + 62885845, + 7924835169, + 1381944100 + ], + "geometry": [ + { "lat": 40.8730576, "lon": -73.9517622 }, + { "lat": 40.8725365, "lon": -73.9520875 }, + { "lat": 40.8712056, "lon": -73.9531052 }, + { "lat": 40.8707895, "lon": -73.9534162 }, + { "lat": 40.8705870, "lon": -73.9535443 }, + { "lat": 40.8703849, "lon": -73.9536695 }, + { "lat": 40.8701820, "lon": -73.9537758 }, + { "lat": 40.8699780, "lon": -73.9538750 }, + { "lat": 40.8697743, "lon": -73.9539632 }, + { "lat": 40.8695721, "lon": -73.9540400 }, + { "lat": 40.8693661, "lon": -73.9541085 }, + { "lat": 40.8691578, "lon": -73.9541674 }, + { "lat": 40.8689419, "lon": -73.9542184 }, + { "lat": 40.8687314, "lon": -73.9542566 }, + { "lat": 40.8685224, "lon": -73.9542853 }, + { "lat": 40.8674462, "lon": -73.9544128 }, + { "lat": 40.8672383, "lon": -73.9544393 }, + { "lat": 40.8670217, "lon": -73.9544729 }, + { "lat": 40.8668093, "lon": -73.9545124 }, + { "lat": 40.8666006, "lon": -73.9545535 }, + { "lat": 40.8663844, "lon": -73.9546045 }, + { "lat": 40.8661580, "lon": -73.9546674 }, + { "lat": 40.8659721, "lon": -73.9547232 }, + { "lat": 40.8657655, "lon": -73.9547936 }, + { "lat": 40.8655550, "lon": -73.9548717 }, + { "lat": 40.8653770, "lon": -73.9549364 }, + { "lat": 40.8651982, "lon": -73.9550057 }, + { "lat": 40.8650312, "lon": -73.9550764 }, + { "lat": 40.8648714, "lon": -73.9551516 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway" + } +}, +{ + "type": "way", + "id": 42480730, + "bounds": { + "minlat": 40.8610364, + "minlon": -73.9593664, + "maxlat": 40.8615456, + "maxlon": -73.9588101 + }, + "nodes": [ + 103195227, + 5108332547, + 7393404762, + 530475801 + ], + "geometry": [ + { "lat": 40.8610364, "lon": -73.9593664 }, + { "lat": 40.8612104, "lon": -73.9591784 }, + { "lat": 40.8612860, "lon": -73.9590947 }, + { "lat": 40.8615456, "lon": -73.9588101 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 42480733, + "bounds": { + "minlat": 40.8589837, + "minlon": -73.9724460, + "maxlat": 40.8593415, + "maxlon": -73.9720523 + }, + "nodes": [ + 299386519, + 7921644074, + 76463561, + 7298101930, + 12020552509, + 12020552508, + 76463562 + ], + "geometry": [ + { "lat": 40.8593415, "lon": -73.9720523 }, + { "lat": 40.8592493, "lon": -73.9721633 }, + { "lat": 40.8591753, "lon": -73.9722406 }, + { "lat": 40.8590844, "lon": -73.9723359 }, + { "lat": 40.8590780, "lon": -73.9723428 }, + { "lat": 40.8590551, "lon": -73.9723689 }, + { "lat": 40.8589837, "lon": -73.9724460 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "destination:ref:lanes": "||NJ 4 West;CR 505 Truck;GSP", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "||through;right" + } +}, +{ + "type": "way", + "id": 42480734, + "bounds": { + "minlat": 40.8540849, + "minlon": -73.9682621, + "maxlat": 40.8548197, + "maxlon": -73.9678068 + }, + "nodes": [ + 4207174912, + 530475416 + ], + "geometry": [ + { "lat": 40.8548197, "lon": -73.9678068 }, + { "lat": 40.8540849, "lon": -73.9682621 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "bridge": "yes", + "highway": "primary", + "lanes": "4", + "layer": "1", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 42480735, + "bounds": { + "minlat": 40.8550957, + "minlon": -73.9676406, + "maxlat": 40.8551733, + "maxlon": -73.9675921 + }, + "nodes": [ + 752650952, + 76465501 + ], + "geometry": [ + { "lat": 40.8551733, "lon": -73.9675921 }, + { "lat": 40.8550957, "lon": -73.9676406 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 42480736, + "bounds": { + "minlat": 40.8546866, + "minlon": -73.9707653, + "maxlat": 40.8548017, + "maxlon": -73.9707000 + }, + "nodes": [ + 103096338, + 13620890076, + 530754357 + ], + "geometry": [ + { "lat": 40.8546866, "lon": -73.9707653 }, + { "lat": 40.8547559, "lon": -73.9707260 }, + { "lat": 40.8548017, "lon": -73.9707000 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000S29", + "highway": "secondary", + "lanes": "2", + "name": "Center Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 42480737, + "bounds": { + "minlat": 40.8557965, + "minlon": -73.9699204, + "maxlat": 40.8560340, + "maxlon": -73.9696790 + }, + "nodes": [ + 103099720, + 12020552491, + 11170628916, + 103115840 + ], + "geometry": [ + { "lat": 40.8557965, "lon": -73.9699204 }, + { "lat": 40.8559545, "lon": -73.9697586 }, + { "lat": 40.8559796, "lon": -73.9697349 }, + { "lat": 40.8560340, "lon": -73.9696790 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "name": "Center Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left|through|right" + } +}, +{ + "type": "way", + "id": 42480738, + "bounds": { + "minlat": 40.8548576, + "minlon": -73.9702698, + "maxlat": 40.8556995, + "maxlon": -73.9667061 + }, + "nodes": [ + 530475520, + 76464186, + 9957279599, + 13765164926, + 3257513613, + 13765164925, + 76464187, + 3257513622, + 5108601653, + 76464188, + 3257513626, + 3257513629, + 13765164924, + 7924871189, + 13765164923, + 76464189, + 13765164919, + 13765164920, + 13765164921, + 13765164922, + 13765164918, + 13765164917, + 13765164916, + 13765164915, + 5108601660 + ], + "geometry": [ + { "lat": 40.8548576, "lon": -73.9667061 }, + { "lat": 40.8548763, "lon": -73.9668545 }, + { "lat": 40.8548897, "lon": -73.9669465 }, + { "lat": 40.8549010, "lon": -73.9670354 }, + { "lat": 40.8549241, "lon": -73.9671998 }, + { "lat": 40.8549427, "lon": -73.9673246 }, + { "lat": 40.8549678, "lon": -73.9674869 }, + { "lat": 40.8550142, "lon": -73.9677490 }, + { "lat": 40.8550410, "lon": -73.9678990 }, + { "lat": 40.8550644, "lon": -73.9680159 }, + { "lat": 40.8550872, "lon": -73.9681231 }, + { "lat": 40.8551108, "lon": -73.9682276 }, + { "lat": 40.8551280, "lon": -73.9682970 }, + { "lat": 40.8551473, "lon": -73.9683695 }, + { "lat": 40.8551666, "lon": -73.9684367 }, + { "lat": 40.8551962, "lon": -73.9685397 }, + { "lat": 40.8552349, "lon": -73.9686694 }, + { "lat": 40.8552782, "lon": -73.9688100 }, + { "lat": 40.8553191, "lon": -73.9689453 }, + { "lat": 40.8553580, "lon": -73.9690772 }, + { "lat": 40.8554774, "lon": -73.9694821 }, + { "lat": 40.8555142, "lon": -73.9696066 }, + { "lat": 40.8555519, "lon": -73.9697342 }, + { "lat": 40.8555856, "lon": -73.9698573 }, + { "lat": 40.8556995, "lon": -73.9702698 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight": "14'6\"", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 42480740, + "bounds": { + "minlat": 40.8546904, + "minlon": -73.9659343, + "maxlat": 40.8549599, + "maxlon": -73.9647334 + }, + "nodes": [ + 103115813, + 12020539641, + 11170628913, + 103115815, + 12020539642, + 12020539643, + 5103409892, + 12020539644, + 103115819, + 12020539645, + 12020539646, + 12020539647, + 12020539648, + 103115821, + 12020539649, + 12020539655, + 12020539656, + 103115825, + 12020539658, + 12020539659, + 12020539657 + ], + "geometry": [ + { "lat": 40.8547106, "lon": -73.9647334 }, + { "lat": 40.8547014, "lon": -73.9647574 }, + { "lat": 40.8546940, "lon": -73.9647837 }, + { "lat": 40.8546904, "lon": -73.9648090 }, + { "lat": 40.8546934, "lon": -73.9648386 }, + { "lat": 40.8546992, "lon": -73.9648674 }, + { "lat": 40.8547073, "lon": -73.9648968 }, + { "lat": 40.8547174, "lon": -73.9649292 }, + { "lat": 40.8547578, "lon": -73.9650377 }, + { "lat": 40.8547854, "lon": -73.9651144 }, + { "lat": 40.8548111, "lon": -73.9651904 }, + { "lat": 40.8548350, "lon": -73.9652709 }, + { "lat": 40.8548517, "lon": -73.9653314 }, + { "lat": 40.8548715, "lon": -73.9654079 }, + { "lat": 40.8548861, "lon": -73.9654748 }, + { "lat": 40.8549005, "lon": -73.9655413 }, + { "lat": 40.8549152, "lon": -73.9656158 }, + { "lat": 40.8549284, "lon": -73.9656911 }, + { "lat": 40.8549403, "lon": -73.9657735 }, + { "lat": 40.8549501, "lon": -73.9658494 }, + { "lat": 40.8549599, "lon": -73.9659343 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "Bridge Plaza North", + "name_1": "Cross Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge", + "tiger:name_base_1": "Cross", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Plz", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 42480742, + "bounds": { + "minlat": 40.8527418, + "minlon": -73.9673179, + "maxlat": 40.8532212, + "maxlon": -73.9672479 + }, + "nodes": [ + 298809690, + 298810339, + 298809692, + 9553536873 + ], + "geometry": [ + { "lat": 40.8532212, "lon": -73.9672490 }, + { "lat": 40.8530553, "lon": -73.9672479 }, + { "lat": 40.8528368, "lon": -73.9672820 }, + { "lat": 40.8527418, "lon": -73.9673179 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Park Avenue", + "oneway": "yes", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 42480743, + "bounds": { + "minlat": 40.8516894, + "minlon": -73.9717293, + "maxlat": 40.8521546, + "maxlon": -73.9713354 + }, + "nodes": [ + 3748229043, + 7442921492, + 4397826829 + ], + "geometry": [ + { "lat": 40.8516894, "lon": -73.9717293 }, + { "lat": 40.8521141, "lon": -73.9713697 }, + { "lat": 40.8521546, "lon": -73.9713354 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 42480747, + "bounds": { + "minlat": 40.8540687, + "minlon": -73.9661477, + "maxlat": 40.8547888, + "maxlon": -73.9632928 + }, + "nodes": [ + 76464181, + 7921808874, + 13765164939, + 13765164940, + 13765164941, + 13765164942, + 13765164943, + 76464182, + 76464183, + 7921808859, + 3257513445, + 7921808843, + 3257513455, + 76464184, + 3257513577, + 7921808828, + 76464185 + ], + "geometry": [ + { "lat": 40.8540687, "lon": -73.9632928 }, + { "lat": 40.8541791, "lon": -73.9637000 }, + { "lat": 40.8542185, "lon": -73.9638396 }, + { "lat": 40.8542515, "lon": -73.9639655 }, + { "lat": 40.8542892, "lon": -73.9641026 }, + { "lat": 40.8543260, "lon": -73.9642395 }, + { "lat": 40.8543612, "lon": -73.9643680 }, + { "lat": 40.8543994, "lon": -73.9645066 }, + { "lat": 40.8545470, "lon": -73.9650471 }, + { "lat": 40.8545833, "lon": -73.9651821 }, + { "lat": 40.8546185, "lon": -73.9653159 }, + { "lat": 40.8546562, "lon": -73.9654530 }, + { "lat": 40.8546903, "lon": -73.9655894 }, + { "lat": 40.8547202, "lon": -73.9657267 }, + { "lat": 40.8547476, "lon": -73.9658651 }, + { "lat": 40.8547682, "lon": -73.9659981 }, + { "lat": 40.8547888, "lon": -73.9661477 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight": "13'9\"", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 42480748, + "bounds": { + "minlat": 40.8529279, + "minlon": -73.9649614, + "maxlat": 40.8536950, + "maxlon": -73.9640969 + }, + "nodes": [ + 76464398, + 530475576, + 530475584, + 12021372305, + 3257513394, + 530475590, + 12021372304, + 3257513390, + 2715015145, + 2715015151, + 12021372303, + 530475559, + 2715015149, + 2715015147, + 3257513384, + 2715015152, + 530475551, + 4204765790 + ], + "geometry": [ + { "lat": 40.8536950, "lon": -73.9649614 }, + { "lat": 40.8535781, "lon": -73.9646749 }, + { "lat": 40.8535256, "lon": -73.9645225 }, + { "lat": 40.8535022, "lon": -73.9644612 }, + { "lat": 40.8534836, "lon": -73.9644127 }, + { "lat": 40.8534645, "lon": -73.9643708 }, + { "lat": 40.8534451, "lon": -73.9643316 }, + { "lat": 40.8534218, "lon": -73.9642947 }, + { "lat": 40.8533972, "lon": -73.9642623 }, + { "lat": 40.8533688, "lon": -73.9642337 }, + { "lat": 40.8533408, "lon": -73.9642107 }, + { "lat": 40.8533126, "lon": -73.9641917 }, + { "lat": 40.8532805, "lon": -73.9641744 }, + { "lat": 40.8532454, "lon": -73.9641572 }, + { "lat": 40.8532145, "lon": -73.9641460 }, + { "lat": 40.8531830, "lon": -73.9641377 }, + { "lat": 40.8531547, "lon": -73.9641321 }, + { "lat": 40.8529279, "lon": -73.9640969 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "emergency_access", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42480750, + "bounds": { + "minlat": 40.8547888, + "minlon": -73.9667061, + "maxlat": 40.8548576, + "maxlon": -73.9661477 + }, + "nodes": [ + 76464185, + 530475520 + ], + "geometry": [ + { "lat": 40.8547888, "lon": -73.9661477 }, + { "lat": 40.8548576, "lon": -73.9667061 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 42480752, + "bounds": { + "minlat": 40.8528439, + "minlon": -73.9645722, + "maxlat": 40.8544780, + "maxlon": -73.9630017 + }, + "nodes": [ + 298787045, + 9903150710, + 13772860479, + 9903150709, + 298787046, + 3257513381, + 298787048, + 3257513380, + 298787049, + 3257513376, + 298788799, + 3257513373, + 298787051, + 3257513371, + 298787053, + 3257513368, + 298787054, + 3257513369, + 3257513370, + 298787056, + 3257513372, + 298787057, + 3257513374, + 298787059, + 3257513378, + 3257513379, + 298787135, + 3257513383, + 298787136, + 3257513385, + 298787137, + 3257513387, + 3257513389, + 298787138, + 3257513395, + 3257513399, + 298787065, + 3257513405, + 298788800 + ], + "geometry": [ + { "lat": 40.8544780, "lon": -73.9630017 }, + { "lat": 40.8538460, "lon": -73.9631940 }, + { "lat": 40.8537724, "lon": -73.9632170 }, + { "lat": 40.8537099, "lon": -73.9632377 }, + { "lat": 40.8532172, "lon": -73.9634129 }, + { "lat": 40.8531650, "lon": -73.9634306 }, + { "lat": 40.8531149, "lon": -73.9634545 }, + { "lat": 40.8530633, "lon": -73.9634868 }, + { "lat": 40.8530159, "lon": -73.9635251 }, + { "lat": 40.8529729, "lon": -73.9635743 }, + { "lat": 40.8529342, "lon": -73.9636325 }, + { "lat": 40.8529057, "lon": -73.9636878 }, + { "lat": 40.8528804, "lon": -73.9637530 }, + { "lat": 40.8528612, "lon": -73.9638176 }, + { "lat": 40.8528496, "lon": -73.9638892 }, + { "lat": 40.8528439, "lon": -73.9639537 }, + { "lat": 40.8528443, "lon": -73.9640174 }, + { "lat": 40.8528484, "lon": -73.9640777 }, + { "lat": 40.8528586, "lon": -73.9641379 }, + { "lat": 40.8528723, "lon": -73.9641969 }, + { "lat": 40.8528888, "lon": -73.9642576 }, + { "lat": 40.8529133, "lon": -73.9643140 }, + { "lat": 40.8529401, "lon": -73.9643613 }, + { "lat": 40.8529691, "lon": -73.9644026 }, + { "lat": 40.8530062, "lon": -73.9644494 }, + { "lat": 40.8530484, "lon": -73.9644879 }, + { "lat": 40.8531042, "lon": -73.9645244 }, + { "lat": 40.8531559, "lon": -73.9645512 }, + { "lat": 40.8532104, "lon": -73.9645658 }, + { "lat": 40.8532629, "lon": -73.9645722 }, + { "lat": 40.8533141, "lon": -73.9645696 }, + { "lat": 40.8533589, "lon": -73.9645617 }, + { "lat": 40.8534020, "lon": -73.9645462 }, + { "lat": 40.8534428, "lon": -73.9645252 }, + { "lat": 40.8534890, "lon": -73.9644978 }, + { "lat": 40.8535330, "lon": -73.9644632 }, + { "lat": 40.8535723, "lon": -73.9644202 }, + { "lat": 40.8536162, "lon": -73.9643638 }, + { "lat": 40.8536512, "lon": -73.9643030 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "layer": "3", + "maxspeed": "55 mph", + "maxspeed:advisory": "25 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 42480753, + "bounds": { + "minlat": 40.8534317, + "minlon": -73.9638487, + "maxlat": 40.8535502, + "maxlon": -73.9637878 + }, + "nodes": [ + 530475595, + 595485041 + ], + "geometry": [ + { "lat": 40.8534317, "lon": -73.9638487 }, + { "lat": 40.8535502, "lon": -73.9637878 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bridge": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "layer": "1", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 42480754, + "bounds": { + "minlat": 40.8533173, + "minlon": -73.9626656, + "maxlat": 40.8533600, + "maxlon": -73.9617468 + }, + "nodes": [ + 298792357, + 2408237864, + 298792421, + 2408237865 + ], + "geometry": [ + { "lat": 40.8533600, "lon": -73.9626656 }, + { "lat": 40.8533534, "lon": -73.9623641 }, + { "lat": 40.8533351, "lon": -73.9620040 }, + { "lat": 40.8533173, "lon": -73.9617468 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "toll": "yes", + "tunnel": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 42480757, + "bounds": { + "minlat": 40.8536512, + "minlon": -73.9643030, + "maxlat": 40.8537215, + "maxlon": -73.9640221 + }, + "nodes": [ + 298788800, + 3257513409, + 298788801, + 9903150708, + 3257513411, + 298788802 + ], + "geometry": [ + { "lat": 40.8536512, "lon": -73.9643030 }, + { "lat": 40.8536802, "lon": -73.9642334 }, + { "lat": 40.8536986, "lon": -73.9641748 }, + { "lat": 40.8537125, "lon": -73.9641126 }, + { "lat": 40.8537187, "lon": -73.9640650 }, + { "lat": 40.8537215, "lon": -73.9640221 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "layer": "2", + "maxspeed:advisory": "25 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 42480758, + "bounds": { + "minlat": 40.8556587, + "minlon": -73.9622205, + "maxlat": 40.8573909, + "maxlon": -73.9611892 + }, + "nodes": [ + 60810551, + 7924810068, + 13772862301, + 530475616, + 7924810075, + 7924810063, + 7924810069, + 530475624, + 7924810076, + 7924810064, + 530475632, + 7924810070, + 7924810062, + 7924810077, + 530475638, + 7924810066, + 7924810073, + 530475648, + 7924810079, + 7924810072, + 7924810065, + 60810556 + ], + "geometry": [ + { "lat": 40.8556587, "lon": -73.9622205 }, + { "lat": 40.8558093, "lon": -73.9619705 }, + { "lat": 40.8558409, "lon": -73.9619354 }, + { "lat": 40.8558725, "lon": -73.9619003 }, + { "lat": 40.8559383, "lon": -73.9618335 }, + { "lat": 40.8560102, "lon": -73.9617653 }, + { "lat": 40.8560827, "lon": -73.9617004 }, + { "lat": 40.8561570, "lon": -73.9616349 }, + { "lat": 40.8562354, "lon": -73.9615707 }, + { "lat": 40.8563136, "lon": -73.9615126 }, + { "lat": 40.8563976, "lon": -73.9614554 }, + { "lat": 40.8564796, "lon": -73.9614044 }, + { "lat": 40.8565574, "lon": -73.9613621 }, + { "lat": 40.8566314, "lon": -73.9613263 }, + { "lat": 40.8567082, "lon": -73.9612932 }, + { "lat": 40.8567782, "lon": -73.9612676 }, + { "lat": 40.8568491, "lon": -73.9612465 }, + { "lat": 40.8569194, "lon": -73.9612275 }, + { "lat": 40.8569983, "lon": -73.9612108 }, + { "lat": 40.8570789, "lon": -73.9611991 }, + { "lat": 40.8571654, "lon": -73.9611892 }, + { "lat": 40.8573909, "lon": -73.9611960 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 42480763, + "bounds": { + "minlat": 40.8602118, + "minlon": -73.9680438, + "maxlat": 40.8610942, + "maxlon": -73.9659813 + }, + "nodes": [ + 530475662, + 103124648, + 12021336895, + 12021336894, + 12021336893, + 12021336891, + 12021336890, + 12021336892, + 12021336889, + 103124646 + ], + "geometry": [ + { "lat": 40.8610405, "lon": -73.9680438 }, + { "lat": 40.8610942, "lon": -73.9675951 }, + { "lat": 40.8610921, "lon": -73.9675630 }, + { "lat": 40.8610875, "lon": -73.9675275 }, + { "lat": 40.8610807, "lon": -73.9674942 }, + { "lat": 40.8610720, "lon": -73.9674648 }, + { "lat": 40.8610608, "lon": -73.9674335 }, + { "lat": 40.8610469, "lon": -73.9673982 }, + { "lat": 40.8610319, "lon": -73.9673659 }, + { "lat": 40.8602118, "lon": -73.9659813 } + ], + "tags": { + "highway": "residential", + "name": "New York Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "New York", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 42480767, + "bounds": { + "minlat": 40.8612840, + "minlon": -73.9639882, + "maxlat": 40.8618491, + "maxlon": -73.9636393 + }, + "nodes": [ + 7921584343, + 12021383187, + 7921584384, + 12021383186, + 76463705, + 12021383185, + 7921643445, + 12021383184, + 12021383183, + 7921643425, + 7921643404, + 65903763 + ], + "geometry": [ + { "lat": 40.8612840, "lon": -73.9639882 }, + { "lat": 40.8613034, "lon": -73.9639697 }, + { "lat": 40.8613263, "lon": -73.9639501 }, + { "lat": 40.8613520, "lon": -73.9639316 }, + { "lat": 40.8613784, "lon": -73.9639146 }, + { "lat": 40.8614266, "lon": -73.9638850 }, + { "lat": 40.8614821, "lon": -73.9638528 }, + { "lat": 40.8615482, "lon": -73.9638159 }, + { "lat": 40.8616150, "lon": -73.9637795 }, + { "lat": 40.8616630, "lon": -73.9637539 }, + { "lat": 40.8617192, "lon": -73.9637274 }, + { "lat": 40.8618491, "lon": -73.9636393 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "1", + "maxheight:signed": "no", + "maxspeed:advisory": "20 mph", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42480768, + "bounds": { + "minlat": 40.8611637, + "minlon": -73.9645297, + "maxlat": 40.8612840, + "maxlon": -73.9639882 + }, + "nodes": [ + 76463701, + 7921643397, + 7921584377, + 12021383192, + 76463702, + 7814317989, + 7921643418, + 12021383191, + 76463703, + 76463704, + 12021383190, + 7921643438, + 12021383189, + 12021383188, + 7921584343 + ], + "geometry": [ + { "lat": 40.8611729, "lon": -73.9645297 }, + { "lat": 40.8611675, "lon": -73.9644474 }, + { "lat": 40.8611646, "lon": -73.9643984 }, + { "lat": 40.8611637, "lon": -73.9643572 }, + { "lat": 40.8611638, "lon": -73.9643125 }, + { "lat": 40.8611651, "lon": -73.9642728 }, + { "lat": 40.8611700, "lon": -73.9642340 }, + { "lat": 40.8611773, "lon": -73.9641930 }, + { "lat": 40.8611860, "lon": -73.9641597 }, + { "lat": 40.8611966, "lon": -73.9641305 }, + { "lat": 40.8612085, "lon": -73.9641024 }, + { "lat": 40.8612219, "lon": -73.9640745 }, + { "lat": 40.8612416, "lon": -73.9640418 }, + { "lat": 40.8612632, "lon": -73.9640111 }, + { "lat": 40.8612840, "lon": -73.9639882 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "bridge": "yes", + "highway": "primary", + "lanes": "1", + "layer": "1", + "maxspeed:advisory": "20 mph", + "oneway": "yes", + "ref": "US 9W", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 42480772, + "bounds": { + "minlat": 40.8790302, + "minlon": -73.9491157, + "maxlat": 40.8794722, + "maxlon": -73.9488764 + }, + "nodes": [ + 530475880, + 65614878 + ], + "geometry": [ + { "lat": 40.8790302, "lon": -73.9491157 }, + { "lat": 40.8794722, "lon": -73.9488764 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway" + } +}, +{ + "type": "way", + "id": 42480773, + "bounds": { + "minlat": 40.8794722, + "minlon": -73.9488764, + "maxlat": 40.8800962, + "maxlon": -73.9485338 + }, + "nodes": [ + 65614878, + 103098504 + ], + "geometry": [ + { "lat": 40.8794722, "lon": -73.9488764 }, + { "lat": 40.8800962, "lon": -73.9485338 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "destination:lanes": "none|none|Palisade Avenue;Englewood Cliffs;Englewood", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway", + "turn:lanes": "none|none|right" + } +}, +{ + "type": "way", + "id": 42480778, + "bounds": { + "minlat": 40.8733681, + "minlon": -73.9513467, + "maxlat": 40.8790302, + "maxlon": -73.9491157 + }, + "nodes": [ + 60810758, + 60810759, + 60810760, + 60810761, + 60810762, + 60810763, + 60810764, + 60810765, + 65614877, + 530475880 + ], + "geometry": [ + { "lat": 40.8733681, "lon": -73.9513467 }, + { "lat": 40.8741949, "lon": -73.9509393 }, + { "lat": 40.8748569, "lon": -73.9506733 }, + { "lat": 40.8757266, "lon": -73.9503986 }, + { "lat": 40.8766481, "lon": -73.9501411 }, + { "lat": 40.8771154, "lon": -73.9499952 }, + { "lat": 40.8775242, "lon": -73.9498407 }, + { "lat": 40.8779526, "lon": -73.9496605 }, + { "lat": 40.8786541, "lon": -73.9493186 }, + { "lat": 40.8790302, "lon": -73.9491157 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway" + } +}, +{ + "type": "way", + "id": 42480781, + "bounds": { + "minlat": 40.8729929, + "minlon": -73.9515791, + "maxlat": 40.8733681, + "maxlon": -73.9513467 + }, + "nodes": [ + 60810757, + 60810758 + ], + "geometry": [ + { "lat": 40.8729929, "lon": -73.9515791 }, + { "lat": 40.8733681, "lon": -73.9513467 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway" + } +}, +{ + "type": "way", + "id": 42502900, + "bounds": { + "minlat": 40.8584099, + "minlon": -73.9788065, + "maxlat": 40.8584240, + "maxlon": -73.9786541 + }, + "nodes": [ + 530754382, + 299098708 + ], + "geometry": [ + { "lat": 40.8584240, "lon": -73.9786541 }, + { "lat": 40.8584099, "lon": -73.9788065 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "destination:lanes": "|Main Street;Fort Lee;Leonia", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes": "none|through;slight_right" + } +}, +{ + "type": "way", + "id": 42502901, + "bounds": { + "minlat": 40.8570038, + "minlon": -73.9820383, + "maxlat": 40.8579380, + "maxlon": -73.9805767 + }, + "nodes": [ + 299120672, + 7921587249, + 7921587255, + 299120757, + 7921587262, + 7921587269, + 299171731, + 7921587275, + 7921587244, + 299171732, + 10942990449, + 3655086536, + 299171733, + 299171734 + ], + "geometry": [ + { "lat": 40.8579380, "lon": -73.9805767 }, + { "lat": 40.8578782, "lon": -73.9807110 }, + { "lat": 40.8578194, "lon": -73.9808357 }, + { "lat": 40.8577593, "lon": -73.9809541 }, + { "lat": 40.8576943, "lon": -73.9810756 }, + { "lat": 40.8576282, "lon": -73.9811923 }, + { "lat": 40.8575594, "lon": -73.9813059 }, + { "lat": 40.8574882, "lon": -73.9814174 }, + { "lat": 40.8574158, "lon": -73.9815237 }, + { "lat": 40.8573396, "lon": -73.9816313 }, + { "lat": 40.8572624, "lon": -73.9817339 }, + { "lat": 40.8571820, "lon": -73.9818347 }, + { "lat": 40.8571005, "lon": -73.9819312 }, + { "lat": 40.8570038, "lon": -73.9820383 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42502902, + "bounds": { + "minlat": 40.8539389, + "minlon": -73.9696524, + "maxlat": 40.8551821, + "maxlon": -73.9639164 + }, + "nodes": [ + 60810373, + 7921808875, + 7921816991, + 7921817008, + 60810372, + 7921808834, + 7921808849, + 60810371, + 7921808865, + 3257513428, + 3257513430, + 60810369, + 7921808880, + 60810368, + 3257513435, + 3257513436, + 7921816996, + 60811372, + 3257513439, + 60811371, + 3257513442, + 3257513443, + 7921817013, + 7921808839, + 60811369, + 3257513446, + 3257513451, + 60811368, + 3257513561, + 7921808854, + 7921969717, + 60811367, + 7921969709, + 3257513590, + 7921969694, + 60811366, + 7921969719, + 7921969703, + 60811365, + 7921969728, + 7921969713, + 7921969698, + 3257513628, + 7921969723, + 60811364 + ], + "geometry": [ + { "lat": 40.8539389, "lon": -73.9639164 }, + { "lat": 40.8539553, "lon": -73.9639818 }, + { "lat": 40.8539941, "lon": -73.9641300 }, + { "lat": 40.8540361, "lon": -73.9642789 }, + { "lat": 40.8540746, "lon": -73.9644101 }, + { "lat": 40.8541189, "lon": -73.9645524 }, + { "lat": 40.8541637, "lon": -73.9646918 }, + { "lat": 40.8542036, "lon": -73.9648109 }, + { "lat": 40.8542500, "lon": -73.9649391 }, + { "lat": 40.8542988, "lon": -73.9650745 }, + { "lat": 40.8543450, "lon": -73.9652079 }, + { "lat": 40.8543868, "lon": -73.9653412 }, + { "lat": 40.8544244, "lon": -73.9654767 }, + { "lat": 40.8544579, "lon": -73.9656138 }, + { "lat": 40.8544858, "lon": -73.9657518 }, + { "lat": 40.8545107, "lon": -73.9658954 }, + { "lat": 40.8545314, "lon": -73.9660373 }, + { "lat": 40.8545484, "lon": -73.9661782 }, + { "lat": 40.8545611, "lon": -73.9663232 }, + { "lat": 40.8545692, "lon": -73.9664693 }, + { "lat": 40.8545752, "lon": -73.9666107 }, + { "lat": 40.8545830, "lon": -73.9667526 }, + { "lat": 40.8545911, "lon": -73.9668959 }, + { "lat": 40.8546020, "lon": -73.9670392 }, + { "lat": 40.8546155, "lon": -73.9671823 }, + { "lat": 40.8546290, "lon": -73.9673245 }, + { "lat": 40.8546449, "lon": -73.9674666 }, + { "lat": 40.8546652, "lon": -73.9676150 }, + { "lat": 40.8546898, "lon": -73.9677633 }, + { "lat": 40.8547127, "lon": -73.9678886 }, + { "lat": 40.8547344, "lon": -73.9679991 }, + { "lat": 40.8547573, "lon": -73.9681104 }, + { "lat": 40.8547839, "lon": -73.9682361 }, + { "lat": 40.8548139, "lon": -73.9683723 }, + { "lat": 40.8548458, "lon": -73.9685025 }, + { "lat": 40.8548782, "lon": -73.9686280 }, + { "lat": 40.8549093, "lon": -73.9687483 }, + { "lat": 40.8549420, "lon": -73.9688706 }, + { "lat": 40.8549762, "lon": -73.9689909 }, + { "lat": 40.8550137, "lon": -73.9691206 }, + { "lat": 40.8550515, "lon": -73.9692472 }, + { "lat": 40.8550879, "lon": -73.9693664 }, + { "lat": 40.8551290, "lon": -73.9694966 }, + { "lat": 40.8551702, "lon": -73.9696189 }, + { "lat": 40.8551821, "lon": -73.9696524 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge Plaza", + "bridge:name:etymology:wikidata": "Q23", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight": "13'9\"", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 42502903, + "bounds": { + "minlat": 40.8579614, + "minlon": -73.9803038, + "maxlat": 40.8583416, + "maxlon": -73.9786991 + }, + "nodes": [ + 299121487, + 7921587241, + 299120873, + 7921587248, + 299120875, + 299120876, + 7921587254, + 7921587261, + 299121261, + 7921587268, + 299120878, + 7935798212, + 530754380 + ], + "geometry": [ + { "lat": 40.8579614, "lon": -73.9803038 }, + { "lat": 40.8580115, "lon": -73.9801695 }, + { "lat": 40.8580573, "lon": -73.9800369 }, + { "lat": 40.8580990, "lon": -73.9799045 }, + { "lat": 40.8581391, "lon": -73.9797683 }, + { "lat": 40.8581750, "lon": -73.9796346 }, + { "lat": 40.8582083, "lon": -73.9794958 }, + { "lat": 40.8582391, "lon": -73.9793567 }, + { "lat": 40.8582666, "lon": -73.9792205 }, + { "lat": 40.8582915, "lon": -73.9790761 }, + { "lat": 40.8583131, "lon": -73.9789355 }, + { "lat": 40.8583325, "lon": -73.9787905 }, + { "lat": 40.8583416, "lon": -73.9786991 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42502904, + "bounds": { + "minlat": 40.8561598, + "minlon": -73.9725963, + "maxlat": 40.8566620, + "maxlon": -73.9720309 + }, + "nodes": [ + 530754337, + 530754330 + ], + "geometry": [ + { "lat": 40.8566620, "lon": -73.9720309 }, + { "lat": 40.8561598, "lon": -73.9725963 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000029", + "bridge": "yes", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "name": "Linwood Avenue", + "oneway": "yes", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 42502905, + "bounds": { + "minlat": 40.8544723, + "minlon": -73.9743728, + "maxlat": 40.8561187, + "maxlon": -73.9726533 + }, + "nodes": [ + 103132816, + 13620890038, + 5108603133, + 103132818, + 4621211712, + 7407574839, + 5108605922, + 4204798789 + ], + "geometry": [ + { "lat": 40.8561187, "lon": -73.9726533 }, + { "lat": 40.8560588, "lon": -73.9727170 }, + { "lat": 40.8556750, "lon": -73.9731253 }, + { "lat": 40.8556021, "lon": -73.9732025 }, + { "lat": 40.8549046, "lon": -73.9739250 }, + { "lat": 40.8546074, "lon": -73.9742329 }, + { "lat": 40.8545203, "lon": -73.9743231 }, + { "lat": 40.8544723, "lon": -73.9743728 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "lanes": "2", + "name": "Linwood Avenue", + "oneway": "yes", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 42502907, + "bounds": { + "minlat": 40.8578810, + "minlon": -73.9805046, + "maxlat": 40.8579614, + "maxlon": -73.9803038 + }, + "nodes": [ + 299120871, + 7921587272, + 299121487 + ], + "geometry": [ + { "lat": 40.8578810, "lon": -73.9805046 }, + { "lat": 40.8579182, "lon": -73.9804154 }, + { "lat": 40.8579614, "lon": -73.9803038 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 42502909, + "bounds": { + "minlat": 40.8579380, + "minlon": -73.9805767, + "maxlat": 40.8580198, + "maxlon": -73.9803770 + }, + "nodes": [ + 299120756, + 7921587242, + 299120672 + ], + "geometry": [ + { "lat": 40.8580198, "lon": -73.9803770 }, + { "lat": 40.8579863, "lon": -73.9804610 }, + { "lat": 40.8579380, "lon": -73.9805767 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42502910, + "bounds": { + "minlat": 40.8569808, + "minlon": -73.9744460, + "maxlat": 40.8571100, + "maxlon": -73.9743148 + }, + "nodes": [ + 299178371, + 530754315 + ], + "geometry": [ + { "lat": 40.8569808, "lon": -73.9744460 }, + { "lat": 40.8571100, "lon": -73.9743148 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "ref": "US 9W", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 42502912, + "bounds": { + "minlat": 40.8538737, + "minlon": -73.9671209, + "maxlat": 40.8539393, + "maxlon": -73.9667011 + }, + "nodes": [ + 530754369, + 76464400 + ], + "geometry": [ + { "lat": 40.8539393, "lon": -73.9671209 }, + { "lat": 40.8538737, "lon": -73.9667011 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "toll": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 42502913, + "bounds": { + "minlat": 40.8537190, + "minlon": -73.9667011, + "maxlat": 40.8538737, + "maxlon": -73.9652695 + }, + "nodes": [ + 76464400, + 7921969730, + 7921969705, + 76464399, + 7921969700, + 13772860461, + 13336053701, + 9928488632, + 7921969725 + ], + "geometry": [ + { "lat": 40.8538737, "lon": -73.9667011 }, + { "lat": 40.8538547, "lon": -73.9665536 }, + { "lat": 40.8538367, "lon": -73.9664114 }, + { "lat": 40.8538194, "lon": -73.9662643 }, + { "lat": 40.8538044, "lon": -73.9661283 }, + { "lat": 40.8537910, "lon": -73.9659839 }, + { "lat": 40.8537434, "lon": -73.9655162 }, + { "lat": 40.8537338, "lon": -73.9654220 }, + { "lat": 40.8537190, "lon": -73.9652695 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "toll": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 42502945, + "bounds": { + "minlat": 40.8535404, + "minlon": -73.9634099, + "maxlat": 40.8536398, + "maxlon": -73.9628439 + }, + "nodes": [ + 530754378, + 7921992357, + 12072538016 + ], + "geometry": [ + { "lat": 40.8536398, "lon": -73.9634099 }, + { "lat": 40.8535916, "lon": -73.9631360 }, + { "lat": 40.8535404, "lon": -73.9628439 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 42502953, + "bounds": { + "minlat": 40.8536398, + "minlon": -73.9640221, + "maxlat": 40.8537215, + "maxlon": -73.9634099 + }, + "nodes": [ + 298788802, + 7925074769, + 3257513412, + 298788803, + 9903150707, + 7925074766, + 530754378 + ], + "geometry": [ + { "lat": 40.8537215, "lon": -73.9640221 }, + { "lat": 40.8537194, "lon": -73.9639393 }, + { "lat": 40.8537152, "lon": -73.9638800 }, + { "lat": 40.8537104, "lon": -73.9638225 }, + { "lat": 40.8536992, "lon": -73.9637415 }, + { "lat": 40.8536761, "lon": -73.9636147 }, + { "lat": 40.8536398, "lon": -73.9634099 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "layer": "2", + "maxspeed:advisory": "25 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 42502956, + "bounds": { + "minlat": 40.8538060, + "minlon": -73.9635257, + "maxlat": 40.8538535, + "maxlon": -73.9633049 + }, + "nodes": [ + 530754379, + 60810374 + ], + "geometry": [ + { "lat": 40.8538060, "lon": -73.9633049 }, + { "lat": 40.8538535, "lon": -73.9635257 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "bridge:name": "George Washington Bridge (upper level)", + "bridge:name:etymology:wikidata": "Q23", + "bridge:name:ru": "Мост Джорджа Вашингтона (верхний уровень)", + "destination:lanes": "||Fort Lee", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "none|none|through;slight_right", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 42502965, + "bounds": { + "minlat": 40.8583416, + "minlon": -73.9786991, + "maxlat": 40.8583633, + "maxlon": -73.9784578 + }, + "nodes": [ + 530754380, + 299121022 + ], + "geometry": [ + { "lat": 40.8583416, "lon": -73.9786991 }, + { "lat": 40.8583633, "lon": -73.9784578 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 42502966, + "bounds": { + "minlat": 40.8584240, + "minlon": -73.9786541, + "maxlat": 40.8584453, + "maxlon": -73.9784155 + }, + "nodes": [ + 299120753, + 530754382 + ], + "geometry": [ + { "lat": 40.8584453, "lon": -73.9784155 }, + { "lat": 40.8584240, "lon": -73.9786541 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42502968, + "bounds": { + "minlat": 40.8583633, + "minlon": -73.9784578, + "maxlat": 40.8583744, + "maxlon": -73.9782914 + }, + "nodes": [ + 299121022, + 299121488 + ], + "geometry": [ + { "lat": 40.8583633, "lon": -73.9784578 }, + { "lat": 40.8583744, "lon": -73.9782914 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "destination:lanes": "George Washington Bridge|none;Fort Lee;Palisades Interstate Parkway", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "turn:lanes": "none|through;slight_right" + } +}, +{ + "type": "way", + "id": 42508512, + "bounds": { + "minlat": 40.8398354, + "minlon": -74.0187098, + "maxlat": 40.8465148, + "maxlon": -74.0177011 + }, + "nodes": [ + 298563998, + 12014234081, + 298563999, + 298564000, + 10931067338, + 298564001, + 298564002, + 10931067343, + 10938131424, + 298564004, + 10938131425, + 298564005, + 10938131409, + 298564067, + 10938126791, + 298564066, + 10938126782, + 10936282350, + 10938131450, + 295001588, + 10938126778, + 103205883, + 10938126787, + 291760640, + 10938126798, + 103289809, + 10938131412, + 10936282345, + 10938131442, + 103289807, + 103289805 + ], + "geometry": [ + { "lat": 40.8465148, "lon": -74.0177011 }, + { "lat": 40.8463328, "lon": -74.0177363 }, + { "lat": 40.8461352, "lon": -74.0177715 }, + { "lat": 40.8458616, "lon": -74.0178098 }, + { "lat": 40.8455899, "lon": -74.0178387 }, + { "lat": 40.8453195, "lon": -74.0178568 }, + { "lat": 40.8450486, "lon": -74.0178707 }, + { "lat": 40.8432738, "lon": -74.0179281 }, + { "lat": 40.8429992, "lon": -74.0179375 }, + { "lat": 40.8428656, "lon": -74.0179425 }, + { "lat": 40.8427299, "lon": -74.0179494 }, + { "lat": 40.8425957, "lon": -74.0179571 }, + { "lat": 40.8424563, "lon": -74.0179667 }, + { "lat": 40.8423214, "lon": -74.0179782 }, + { "lat": 40.8421872, "lon": -74.0179925 }, + { "lat": 40.8420525, "lon": -74.0180087 }, + { "lat": 40.8419179, "lon": -74.0180280 }, + { "lat": 40.8417812, "lon": -74.0180509 }, + { "lat": 40.8416450, "lon": -74.0180780 }, + { "lat": 40.8415128, "lon": -74.0181075 }, + { "lat": 40.8413738, "lon": -74.0181424 }, + { "lat": 40.8412453, "lon": -74.0181758 }, + { "lat": 40.8411206, "lon": -74.0182109 }, + { "lat": 40.8409785, "lon": -74.0182522 }, + { "lat": 40.8408455, "lon": -74.0182963 }, + { "lat": 40.8407135, "lon": -74.0183420 }, + { "lat": 40.8405822, "lon": -74.0183887 }, + { "lat": 40.8404548, "lon": -74.0184384 }, + { "lat": 40.8403219, "lon": -74.0184944 }, + { "lat": 40.8401984, "lon": -74.0185470 }, + { "lat": 40.8398354, "lon": -74.0187098 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A11:A15:A19:A63", + "tiger:county": "Bergen, NJ:Hudson, NJ:Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:New Jersey", + "tiger:name_base_1": "I-95:New Jersey", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508515, + "bounds": { + "minlat": 40.8390771, + "minlon": -74.0190679, + "maxlat": 40.8398354, + "maxlon": -74.0187098 + }, + "nodes": [ + 103289805, + 12014207068 + ], + "geometry": [ + { "lat": 40.8398354, "lon": -74.0187098 }, + { "lat": 40.8390771, "lon": -74.0190679 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A11:A15:A19:A63", + "tiger:county": "Bergen, NJ:Hudson, NJ:Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:New Jersey", + "tiger:name_base_1": "I-95:New Jersey", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no", + "turn:lanes": "|through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 42508517, + "bounds": { + "minlat": 40.8344238, + "minlon": -74.0213930, + "maxlat": 40.8381823, + "maxlon": -74.0194932 + }, + "nodes": [ + 103206050, + 10936639774, + 295001305, + 10936641414, + 10936639796, + 10936639791, + 295001316, + 295001317, + 10936639772, + 295001318, + 10936639775, + 295001319, + 10936639799, + 10936639782, + 295001320, + 295001312, + 10936639778, + 10936641410, + 13753819033, + 10936692386, + 291761538 + ], + "geometry": [ + { "lat": 40.8381823, "lon": -74.0194932 }, + { "lat": 40.8378291, "lon": -74.0197167 }, + { "lat": 40.8370184, "lon": -74.0201912 }, + { "lat": 40.8366851, "lon": -74.0203935 }, + { "lat": 40.8365622, "lon": -74.0204678 }, + { "lat": 40.8364369, "lon": -74.0205421 }, + { "lat": 40.8363152, "lon": -74.0206106 }, + { "lat": 40.8361993, "lon": -74.0206741 }, + { "lat": 40.8360726, "lon": -74.0207411 }, + { "lat": 40.8359494, "lon": -74.0208036 }, + { "lat": 40.8358190, "lon": -74.0208653 }, + { "lat": 40.8356968, "lon": -74.0209225 }, + { "lat": 40.8355717, "lon": -74.0209777 }, + { "lat": 40.8354403, "lon": -74.0210331 }, + { "lat": 40.8353109, "lon": -74.0210846 }, + { "lat": 40.8351733, "lon": -74.0211382 }, + { "lat": 40.8350506, "lon": -74.0211832 }, + { "lat": 40.8349219, "lon": -74.0212275 }, + { "lat": 40.8348571, "lon": -74.0212493 }, + { "lat": 40.8347892, "lon": -74.0212721 }, + { "lat": 40.8344238, "lon": -74.0213930 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination": "Lincoln Tunnel", + "destination:ref": "NJTP South", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Eastern Spur", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A11:A15:A19:A63", + "tiger:county": "Bergen, NJ:Hudson, NJ:Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:New Jersey", + "tiger:name_base_1": "I-95:New Jersey", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508519, + "bounds": { + "minlat": 40.8686671, + "minlon": -73.9754673, + "maxlat": 40.8723326, + "maxlon": -73.9734366 + }, + "nodes": [ + 12021450559, + 12021450558, + 12021450557, + 12021450556, + 103171640, + 103296151, + 12021450543, + 103203957, + 12021450542, + 103296153, + 440215008, + 12021450537, + 103292650 + ], + "geometry": [ + { "lat": 40.8723326, "lon": -73.9734366 }, + { "lat": 40.8722379, "lon": -73.9734857 }, + { "lat": 40.8721492, "lon": -73.9735359 }, + { "lat": 40.8720565, "lon": -73.9735933 }, + { "lat": 40.8718656, "lon": -73.9737147 }, + { "lat": 40.8702603, "lon": -73.9747009 }, + { "lat": 40.8701396, "lon": -73.9747766 }, + { "lat": 40.8700564, "lon": -73.9748268 }, + { "lat": 40.8699602, "lon": -73.9748745 }, + { "lat": 40.8694560, "lon": -73.9751126 }, + { "lat": 40.8687722, "lon": -73.9754174 }, + { "lat": 40.8686943, "lon": -73.9754526 }, + { "lat": 40.8686671, "lon": -73.9754673 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jones Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jones", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 42508520, + "bounds": { + "minlat": 40.8721285, + "minlon": -73.9804923, + "maxlat": 40.8722794, + "maxlon": -73.9803067 + }, + "nodes": [ + 530805992, + 298772284 + ], + "geometry": [ + { "lat": 40.8722794, "lon": -73.9804923 }, + { "lat": 40.8721285, "lon": -73.9803067 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508521, + "bounds": { + "minlat": 40.8719844, + "minlon": -73.9806477, + "maxlat": 40.8721554, + "maxlon": -73.9804364 + }, + "nodes": [ + 10940678100, + 11438911115, + 298775916 + ], + "geometry": [ + { "lat": 40.8721554, "lon": -73.9806477 }, + { "lat": 40.8720740, "lon": -73.9805460 }, + { "lat": 40.8719844, "lon": -73.9804364 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "George Washington Bridge|George Washington Bridge|George Washington Bridge;Fort Lee|Englewood", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "placement": "middle_of:2", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "none|none|none|slight_right" + } +}, +{ + "type": "way", + "id": 42508522, + "bounds": { + "minlat": 40.8672245, + "minlon": -73.9804364, + "maxlat": 40.8719844, + "maxlon": -73.9760884 + }, + "nodes": [ + 298775916, + 13751654286, + 10940696708, + 13762277593, + 298774765, + 13762277594, + 10940696713, + 13762277595, + 298774083, + 10940696712, + 13762277596, + 298774082, + 13762277597, + 10940696706, + 298774081, + 13762277598, + 298775235, + 13762277599, + 10940696711, + 13762277600, + 10940678091, + 13762329201, + 298774353, + 13762329202, + 298774351, + 13762329203, + 10940678095, + 13762329204, + 10940678099, + 298774075, + 13762329211, + 298774074, + 13762329205, + 7926202588, + 13762329206, + 298773698, + 13762329207, + 7926202606, + 13762329209, + 298773642, + 13762329210, + 298773640, + 13762329208, + 1365154716 + ], + "geometry": [ + { "lat": 40.8719844, "lon": -73.9804364 }, + { "lat": 40.8718762, "lon": -73.9803058 }, + { "lat": 40.8717777, "lon": -73.9801878 }, + { "lat": 40.8716776, "lon": -73.9800708 }, + { "lat": 40.8715778, "lon": -73.9799561 }, + { "lat": 40.8714671, "lon": -73.9798296 }, + { "lat": 40.8713635, "lon": -73.9797135 }, + { "lat": 40.8712572, "lon": -73.9795947 }, + { "lat": 40.8711507, "lon": -73.9794798 }, + { "lat": 40.8710445, "lon": -73.9793661 }, + { "lat": 40.8709381, "lon": -73.9792508 }, + { "lat": 40.8708300, "lon": -73.9791365 }, + { "lat": 40.8707268, "lon": -73.9790303 }, + { "lat": 40.8706178, "lon": -73.9789194 }, + { "lat": 40.8705024, "lon": -73.9788015 }, + { "lat": 40.8703996, "lon": -73.9786977 }, + { "lat": 40.8702838, "lon": -73.9785863 }, + { "lat": 40.8701785, "lon": -73.9784824 }, + { "lat": 40.8700645, "lon": -73.9783715 }, + { "lat": 40.8699529, "lon": -73.9782664 }, + { "lat": 40.8698446, "lon": -73.9781631 }, + { "lat": 40.8697312, "lon": -73.9780563 }, + { "lat": 40.8696209, "lon": -73.9779566 }, + { "lat": 40.8695079, "lon": -73.9778520 }, + { "lat": 40.8693979, "lon": -73.9777517 }, + { "lat": 40.8692793, "lon": -73.9776454 }, + { "lat": 40.8691664, "lon": -73.9775458 }, + { "lat": 40.8690500, "lon": -73.9774434 }, + { "lat": 40.8689313, "lon": -73.9773428 }, + { "lat": 40.8688197, "lon": -73.9772475 }, + { "lat": 40.8687038, "lon": -73.9771500 }, + { "lat": 40.8685864, "lon": -73.9770551 }, + { "lat": 40.8684673, "lon": -73.9769604 }, + { "lat": 40.8683485, "lon": -73.9768670 }, + { "lat": 40.8682350, "lon": -73.9767803 }, + { "lat": 40.8681426, "lon": -73.9767116 }, + { "lat": 40.8679891, "lon": -73.9765969 }, + { "lat": 40.8678695, "lon": -73.9765098 }, + { "lat": 40.8677483, "lon": -73.9764250 }, + { "lat": 40.8676479, "lon": -73.9763582 }, + { "lat": 40.8675301, "lon": -73.9762825 }, + { "lat": 40.8674249, "lon": -73.9762159 }, + { "lat": 40.8673112, "lon": -73.9761433 }, + { "lat": 40.8672245, "lon": -73.9760884 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508523, + "bounds": { + "minlat": 40.8653923, + "minlon": -73.9803067, + "maxlat": 40.8721285, + "maxlon": -73.9748414 + }, + "nodes": [ + 298772284, + 10940650443, + 13758734092, + 10940650439, + 13758734093, + 298772423, + 13758734094, + 298772281, + 10940650444, + 298772280, + 298772279, + 298772278, + 10940650437, + 298772277, + 10940650450, + 298777686, + 298772832, + 298772274, + 10940650455, + 10940650442, + 7926187970, + 298772272, + 298772833, + 7926202610, + 298772270, + 298772269, + 298772268, + 10940650441, + 298772267, + 10940650436, + 298772266, + 10940650440, + 298772265, + 10940650446, + 7926202592, + 10940650448, + 298772263, + 10940650453, + 298772262, + 10940650454, + 298772261 + ], + "geometry": [ + { "lat": 40.8721285, "lon": -73.9803067 }, + { "lat": 40.8720772, "lon": -73.9802447 }, + { "lat": 40.8719661, "lon": -73.9801111 }, + { "lat": 40.8718757, "lon": -73.9800030 }, + { "lat": 40.8717698, "lon": -73.9798802 }, + { "lat": 40.8716662, "lon": -73.9797602 }, + { "lat": 40.8715608, "lon": -73.9796408 }, + { "lat": 40.8714554, "lon": -73.9795213 }, + { "lat": 40.8712589, "lon": -73.9793027 }, + { "lat": 40.8710513, "lon": -73.9790791 }, + { "lat": 40.8708362, "lon": -73.9788540 }, + { "lat": 40.8706201, "lon": -73.9786338 }, + { "lat": 40.8703990, "lon": -73.9784163 }, + { "lat": 40.8701829, "lon": -73.9782091 }, + { "lat": 40.8699613, "lon": -73.9780008 }, + { "lat": 40.8697381, "lon": -73.9777982 }, + { "lat": 40.8695088, "lon": -73.9775952 }, + { "lat": 40.8692822, "lon": -73.9773993 }, + { "lat": 40.8690530, "lon": -73.9772074 }, + { "lat": 40.8688209, "lon": -73.9770211 }, + { "lat": 40.8686025, "lon": -73.9768505 }, + { "lat": 40.8683868, "lon": -73.9766856 }, + { "lat": 40.8681527, "lon": -73.9765124 }, + { "lat": 40.8678961, "lon": -73.9763271 }, + { "lat": 40.8676475, "lon": -73.9761537 }, + { "lat": 40.8674001, "lon": -73.9759877 }, + { "lat": 40.8671504, "lon": -73.9758252 }, + { "lat": 40.8670238, "lon": -73.9757452 }, + { "lat": 40.8668959, "lon": -73.9756658 }, + { "lat": 40.8667732, "lon": -73.9755915 }, + { "lat": 40.8666445, "lon": -73.9755148 }, + { "lat": 40.8665460, "lon": -73.9754591 }, + { "lat": 40.8664231, "lon": -73.9753889 }, + { "lat": 40.8662875, "lon": -73.9753132 }, + { "lat": 40.8661613, "lon": -73.9752436 }, + { "lat": 40.8660332, "lon": -73.9751742 }, + { "lat": 40.8659100, "lon": -73.9751073 }, + { "lat": 40.8657809, "lon": -73.9750399 }, + { "lat": 40.8656490, "lon": -73.9749717 }, + { "lat": 40.8655202, "lon": -73.9749062 }, + { "lat": 40.8653923, "lon": -73.9748414 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508524, + "bounds": { + "minlat": 40.8768594, + "minlon": -73.9795196, + "maxlat": 40.8781964, + "maxlon": -73.9771884 + }, + "nodes": [ + 298940214, + 9239567772, + 10943513073, + 10943513078, + 1313831886 + ], + "geometry": [ + { "lat": 40.8768594, "lon": -73.9771884 }, + { "lat": 40.8778978, "lon": -73.9790272 }, + { "lat": 40.8779641, "lon": -73.9791420 }, + { "lat": 40.8781359, "lon": -73.9794171 }, + { "lat": 40.8781964, "lon": -73.9795196 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "2", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508525, + "bounds": { + "minlat": 40.8766499, + "minlon": -73.9772528, + "maxlat": 40.8767799, + "maxlon": -73.9770225 + }, + "nodes": [ + 298940083, + 530806622 + ], + "geometry": [ + { "lat": 40.8767799, "lon": -73.9772528 }, + { "lat": 40.8766499, "lon": -73.9770225 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "bridge": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508533, + "bounds": { + "minlat": 40.8725551, + "minlon": -73.9770225, + "maxlat": 40.8766499, + "maxlon": -73.9725908 + }, + "nodes": [ + 530806622, + 10942741364, + 10942741368, + 10942904470, + 103174091, + 10942904474, + 10942904455, + 298940446, + 10942904472, + 298940451, + 12670669503, + 298940511, + 10942904478, + 10942904459, + 298940455, + 10942904463, + 298917992, + 298917995, + 10942904468, + 10942904451, + 298917996, + 298917997, + 10942904464, + 298917998, + 10942904460, + 298918114, + 10942904480, + 298918386, + 10942904469, + 298918390, + 10942904461, + 298918393, + 12670669505, + 12670669509, + 12670669508 + ], + "geometry": [ + { "lat": 40.8766499, "lon": -73.9770225 }, + { "lat": 40.8761807, "lon": -73.9761936 }, + { "lat": 40.8757233, "lon": -73.9753859 }, + { "lat": 40.8756583, "lon": -73.9752705 }, + { "lat": 40.8755918, "lon": -73.9751553 }, + { "lat": 40.8755230, "lon": -73.9750390 }, + { "lat": 40.8754543, "lon": -73.9749265 }, + { "lat": 40.8753841, "lon": -73.9748158 }, + { "lat": 40.8753103, "lon": -73.9747065 }, + { "lat": 40.8752224, "lon": -73.9745770 }, + { "lat": 40.8750351, "lon": -73.9743346 }, + { "lat": 40.8748421, "lon": -73.9740988 }, + { "lat": 40.8747592, "lon": -73.9740068 }, + { "lat": 40.8746745, "lon": -73.9739168 }, + { "lat": 40.8745866, "lon": -73.9738270 }, + { "lat": 40.8744996, "lon": -73.9737426 }, + { "lat": 40.8744103, "lon": -73.9736596 }, + { "lat": 40.8743182, "lon": -73.9735774 }, + { "lat": 40.8742282, "lon": -73.9734990 }, + { "lat": 40.8741367, "lon": -73.9734247 }, + { "lat": 40.8740399, "lon": -73.9733491 }, + { "lat": 40.8739440, "lon": -73.9732784 }, + { "lat": 40.8738487, "lon": -73.9732126 }, + { "lat": 40.8737521, "lon": -73.9731467 }, + { "lat": 40.8736538, "lon": -73.9730843 }, + { "lat": 40.8735514, "lon": -73.9730228 }, + { "lat": 40.8734566, "lon": -73.9729686 }, + { "lat": 40.8733542, "lon": -73.9729140 }, + { "lat": 40.8732472, "lon": -73.9728603 }, + { "lat": 40.8731398, "lon": -73.9728096 }, + { "lat": 40.8730392, "lon": -73.9727642 }, + { "lat": 40.8729330, "lon": -73.9727216 }, + { "lat": 40.8727788, "lon": -73.9726599 }, + { "lat": 40.8726236, "lon": -73.9726116 }, + { "lat": 40.8725551, "lon": -73.9725908 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508535, + "bounds": { + "minlat": 40.8792629, + "minlon": -73.9826805, + "maxlat": 40.8799852, + "maxlon": -73.9814047 + }, + "nodes": [ + 3655086549, + 9239567782, + 9239567783, + 298940219, + 477384661 + ], + "geometry": [ + { "lat": 40.8792629, "lon": -73.9814047 }, + { "lat": 40.8793707, "lon": -73.9816030 }, + { "lat": 40.8794987, "lon": -73.9818292 }, + { "lat": 40.8797045, "lon": -73.9821858 }, + { "lat": 40.8799852, "lon": -73.9826805 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508552, + "bounds": { + "minlat": 40.8817117, + "minlon": -73.9863601, + "maxlat": 40.8821301, + "maxlon": -73.9856893 + }, + "nodes": [ + 298940221, + 10943513079, + 10943513076, + 10943513080 + ], + "geometry": [ + { "lat": 40.8817117, "lon": -73.9856893 }, + { "lat": 40.8818508, "lon": -73.9859140 }, + { "lat": 40.8819884, "lon": -73.9861364 }, + { "lat": 40.8821301, "lon": -73.9863601 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508611, + "bounds": { + "minlat": 40.8428495, + "minlon": -74.0014949, + "maxlat": 40.8428792, + "maxlon": -74.0014755 + }, + "nodes": [ + 530805706, + 103162306 + ], + "geometry": [ + { "lat": 40.8428792, "lon": -74.0014755 }, + { "lat": 40.8428495, "lon": -74.0014949 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "35 mph", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21:A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 42508630, + "bounds": { + "minlat": 40.8435082, + "minlon": -74.0047186, + "maxlat": 40.8435252, + "maxlon": -74.0038942 + }, + "nodes": [ + 299181603, + 10943435071, + 10943455723, + 530805411 + ], + "geometry": [ + { "lat": 40.8435252, "lon": -74.0047186 }, + { "lat": 40.8435220, "lon": -74.0046405 }, + { "lat": 40.8435192, "lon": -74.0045034 }, + { "lat": 40.8435082, "lon": -74.0038942 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "destination:lanes": "New York|New York|Broad Avenue", + "destination:ref:lanes": "US 46 East;US 1 North;US 9 North|US 1 South;US 9 South", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "turn:lanes": "||slight_right" + } +}, +{ + "type": "way", + "id": 42508673, + "bounds": { + "minlat": 40.8442093, + "minlon": -74.0102376, + "maxlat": 40.8445296, + "maxlon": -74.0076475 + }, + "nodes": [ + 298567034, + 10927913947, + 10927913929, + 10927913937, + 10927869386, + 298567035, + 10927913940, + 10927913924, + 5672006435, + 10927869381, + 6902805650, + 11444811725, + 11444811726, + 11101364200, + 6902805655, + 298567529, + 10927869382, + 6902805654, + 298566822, + 10927913917, + 298566823 + ], + "geometry": [ + { "lat": 40.8442093, "lon": -74.0076475 }, + { "lat": 40.8442473, "lon": -74.0078240 }, + { "lat": 40.8442752, "lon": -74.0079625 }, + { "lat": 40.8443026, "lon": -74.0081030 }, + { "lat": 40.8443277, "lon": -74.0082404 }, + { "lat": 40.8443523, "lon": -74.0083803 }, + { "lat": 40.8443744, "lon": -74.0085197 }, + { "lat": 40.8443949, "lon": -74.0086595 }, + { "lat": 40.8444147, "lon": -74.0088046 }, + { "lat": 40.8444363, "lon": -74.0089630 }, + { "lat": 40.8444498, "lon": -74.0090758 }, + { "lat": 40.8444530, "lon": -74.0091024 }, + { "lat": 40.8444690, "lon": -74.0092577 }, + { "lat": 40.8444753, "lon": -74.0093247 }, + { "lat": 40.8444822, "lon": -74.0093988 }, + { "lat": 40.8444941, "lon": -74.0095413 }, + { "lat": 40.8445053, "lon": -74.0096841 }, + { "lat": 40.8445142, "lon": -74.0098253 }, + { "lat": 40.8445208, "lon": -74.0099718 }, + { "lat": 40.8445254, "lon": -74.0101074 }, + { "lat": 40.8445296, "lon": -74.0102376 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42508681, + "bounds": { + "minlat": 40.8445296, + "minlon": -74.0114340, + "maxlat": 40.8445671, + "maxlon": -74.0102376 + }, + "nodes": [ + 298566823, + 298566824 + ], + "geometry": [ + { "lat": 40.8445296, "lon": -74.0102376 }, + { "lat": 40.8445671, "lon": -74.0114340 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "||New Jersey Turnpike;Teaneck Road|New Jersey Turnpike;Teaneck Road", + "destination:ref:lanes": "US 46 West|US 46 West|I 95 South;I 80 West|I 95 South;I 80 West", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "turn:lanes": "none|none|slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 42508692, + "bounds": { + "minlat": 40.8445664, + "minlon": -74.0173350, + "maxlat": 40.8467927, + "maxlon": -74.0120862 + }, + "nodes": [ + 12014234155, + 10927913909, + 298566825, + 10928105636, + 10927869385, + 298566854, + 10927869397, + 298566827, + 10927913934, + 298566828, + 10927869401, + 298566829, + 10927913920, + 298566855, + 10927913926, + 10927913923, + 298566885, + 10927913932, + 10927913908, + 10927913915, + 298566832, + 10927386350, + 10927386360, + 298567053, + 12014234108, + 12014234109, + 298566887 + ], + "geometry": [ + { "lat": 40.8445664, "lon": -74.0120862 }, + { "lat": 40.8445772, "lon": -74.0122828 }, + { "lat": 40.8445896, "lon": -74.0124167 }, + { "lat": 40.8445972, "lon": -74.0124879 }, + { "lat": 40.8446057, "lon": -74.0125544 }, + { "lat": 40.8446261, "lon": -74.0126931 }, + { "lat": 40.8446511, "lon": -74.0128306 }, + { "lat": 40.8446798, "lon": -74.0129698 }, + { "lat": 40.8447110, "lon": -74.0131025 }, + { "lat": 40.8447474, "lon": -74.0132393 }, + { "lat": 40.8447865, "lon": -74.0133694 }, + { "lat": 40.8448318, "lon": -74.0135037 }, + { "lat": 40.8448795, "lon": -74.0136328 }, + { "lat": 40.8449316, "lon": -74.0137629 }, + { "lat": 40.8449856, "lon": -74.0138856 }, + { "lat": 40.8450456, "lon": -74.0140069 }, + { "lat": 40.8451097, "lon": -74.0141269 }, + { "lat": 40.8453001, "lon": -74.0144770 }, + { "lat": 40.8454302, "lon": -74.0147129 }, + { "lat": 40.8455562, "lon": -74.0149446 }, + { "lat": 40.8456818, "lon": -74.0151809 }, + { "lat": 40.8458067, "lon": -74.0154176 }, + { "lat": 40.8464922, "lon": -74.0167232 }, + { "lat": 40.8465536, "lon": -74.0168417 }, + { "lat": 40.8466091, "lon": -74.0169516 }, + { "lat": 40.8466828, "lon": -74.0171010 }, + { "lat": 40.8467927, "lon": -74.0173350 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42508700, + "bounds": { + "minlat": 40.8463288, + "minlon": -74.0171457, + "maxlat": 40.8471969, + "maxlon": -74.0168953 + }, + "nodes": [ + 294998041, + 294998042, + 10927713103, + 10927731210, + 10927731277, + 10927731271, + 294998043 + ], + "geometry": [ + { "lat": 40.8463288, "lon": -74.0171457 }, + { "lat": 40.8465302, "lon": -74.0170914 }, + { "lat": 40.8466766, "lon": -74.0170518 }, + { "lat": 40.8468062, "lon": -74.0170149 }, + { "lat": 40.8469430, "lon": -74.0169750 }, + { "lat": 40.8470741, "lon": -74.0169348 }, + { "lat": 40.8471969, "lon": -74.0168953 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508704, + "bounds": { + "minlat": 40.8465148, + "minlon": -74.0177011, + "maxlat": 40.8471628, + "maxlon": -74.0175407 + }, + "nodes": [ + 298563995, + 10931067904, + 298563996, + 10931067901, + 298563997, + 298563998 + ], + "geometry": [ + { "lat": 40.8471628, "lon": -74.0175407 }, + { "lat": 40.8470690, "lon": -74.0175697 }, + { "lat": 40.8469391, "lon": -74.0176043 }, + { "lat": 40.8467984, "lon": -74.0176393 }, + { "lat": 40.8466560, "lon": -74.0176723 }, + { "lat": 40.8465148, "lon": -74.0177011 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A11:A15:A19:A63", + "tiger:county": "Bergen, NJ:Hudson, NJ:Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:New Jersey", + "tiger:name_base_1": "I-95:New Jersey", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508713, + "bounds": { + "minlat": 40.8406508, + "minlon": -74.0178041, + "maxlat": 40.8424704, + "maxlon": -74.0175504 + }, + "nodes": [ + 294998027, + 10938126773, + 294998028, + 10938131434, + 10927731269, + 10938126781, + 10927731275, + 10938131437, + 294998030, + 10938131456, + 294998031, + 10938126800, + 13753819032, + 294998032 + ], + "geometry": [ + { "lat": 40.8406508, "lon": -74.0178041 }, + { "lat": 40.8407673, "lon": -74.0177763 }, + { "lat": 40.8408978, "lon": -74.0177458 }, + { "lat": 40.8410312, "lon": -74.0177171 }, + { "lat": 40.8411756, "lon": -74.0176894 }, + { "lat": 40.8413120, "lon": -74.0176656 }, + { "lat": 40.8414439, "lon": -74.0176436 }, + { "lat": 40.8415885, "lon": -74.0176241 }, + { "lat": 40.8417283, "lon": -74.0176061 }, + { "lat": 40.8418678, "lon": -74.0175908 }, + { "lat": 40.8419931, "lon": -74.0175791 }, + { "lat": 40.8421384, "lon": -74.0175676 }, + { "lat": 40.8423471, "lon": -74.0175547 }, + { "lat": 40.8424704, "lon": -74.0175504 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "George Washington Bridge|George Washington Bridge|George Washington Bridge|The Ridgefields;Palisades Park", + "destination:ref:lanes": "I 95 North|I 95 North|I 95 North|US 46", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "placement": "middle_of:2", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no", + "turn:lanes": "|||slight_right" + } +}, +{ + "type": "way", + "id": 42508715, + "bounds": { + "minlat": 40.8373160, + "minlon": -74.0175690, + "maxlat": 40.8385682, + "maxlon": -74.0171040 + }, + "nodes": [ + 103228577, + 10936284795, + 10936284784, + 10936284787, + 103228578, + 10936284797, + 10936300905, + 103228579, + 10936300909, + 10936284782, + 103228580, + 103228581, + 103198944 + ], + "geometry": [ + { "lat": 40.8385682, "lon": -74.0171040 }, + { "lat": 40.8383920, "lon": -74.0171829 }, + { "lat": 40.8383318, "lon": -74.0172084 }, + { "lat": 40.8382642, "lon": -74.0172371 }, + { "lat": 40.8381879, "lon": -74.0172682 }, + { "lat": 40.8381112, "lon": -74.0172979 }, + { "lat": 40.8380356, "lon": -74.0173243 }, + { "lat": 40.8379537, "lon": -74.0173505 }, + { "lat": 40.8378777, "lon": -74.0173744 }, + { "lat": 40.8377382, "lon": -74.0174183 }, + { "lat": 40.8376646, "lon": -74.0174433 }, + { "lat": 40.8374643, "lon": -74.0175068 }, + { "lat": 40.8373160, "lon": -74.0175690 } + ], + "tags": { + "Bergen_County_database_ref": "17", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020001241", + "highway": "secondary", + "name": "Bergen Turnpike", + "old_ref": "CR 17", + "ref": "CR 124", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_type": "Tpke", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 42508725, + "bounds": { + "minlat": 40.8385682, + "minlon": -74.0171040, + "maxlat": 40.8395513, + "maxlon": -74.0166694 + }, + "nodes": [ + 103228575, + 103228577 + ], + "geometry": [ + { "lat": 40.8395513, "lon": -74.0166694 }, + { "lat": 40.8385682, "lon": -74.0171040 } + ], + "tags": { + "Bergen_County_database_ref": "17", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020001241", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "Bergen Turnpike", + "old_ref": "CR 17", + "ref": "CR 124", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_type": "Tpke", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 42508728, + "bounds": { + "minlat": 40.8390292, + "minlon": -74.0183905, + "maxlat": 40.8397450, + "maxlon": -74.0180842 + }, + "nodes": [ + 294997637, + 294998024 + ], + "geometry": [ + { "lat": 40.8390292, "lon": -74.0183905 }, + { "lat": 40.8397450, "lon": -74.0180842 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508729, + "bounds": { + "minlat": 40.8410511, + "minlon": -74.0187359, + "maxlat": 40.8410793, + "maxlon": -74.0173968 + }, + "nodes": [ + 103228559, + 10936284792, + 10936284804, + 10937819099, + 103228560 + ], + "geometry": [ + { "lat": 40.8410511, "lon": -74.0187359 }, + { "lat": 40.8410785, "lon": -74.0176299 }, + { "lat": 40.8410793, "lon": -74.0175476 }, + { "lat": 40.8410789, "lon": -74.0174725 }, + { "lat": 40.8410754, "lon": -74.0173968 } + ], + "tags": { + "Bergen_County_database_ref": "17;124;S-12 [sic]", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020001241", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "Bergen Turnpike", + "old_ref": "CR 17", + "ref": "CR 124", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_type": "Tpke", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 42508730, + "bounds": { + "minlat": 40.8395513, + "minlon": -74.0173968, + "maxlat": 40.8410754, + "maxlon": -74.0164249 + }, + "nodes": [ + 103228560, + 103228561, + 10936284789, + 10936284791, + 103228562, + 10936284801, + 103228563, + 10936284770, + 103228564, + 10936284774, + 103228566, + 10936284799, + 10936284803, + 10936284786, + 103228567, + 10936300910, + 103228568, + 103228569, + 10936284783, + 103228570, + 10936300907, + 10936284785, + 103228571, + 10936300908, + 103228572, + 10936284771, + 10936284773, + 103228573, + 10936284798, + 7933051906, + 10937884236, + 103228575 + ], + "geometry": [ + { "lat": 40.8410754, "lon": -74.0173968 }, + { "lat": 40.8410694, "lon": -74.0173300 }, + { "lat": 40.8410594, "lon": -74.0172585 }, + { "lat": 40.8410447, "lon": -74.0171866 }, + { "lat": 40.8410253, "lon": -74.0171171 }, + { "lat": 40.8410026, "lon": -74.0170499 }, + { "lat": 40.8409772, "lon": -74.0169864 }, + { "lat": 40.8409499, "lon": -74.0169220 }, + { "lat": 40.8409162, "lon": -74.0168573 }, + { "lat": 40.8408789, "lon": -74.0167991 }, + { "lat": 40.8408383, "lon": -74.0167432 }, + { "lat": 40.8407971, "lon": -74.0166923 }, + { "lat": 40.8407549, "lon": -74.0166451 }, + { "lat": 40.8407119, "lon": -74.0166040 }, + { "lat": 40.8406674, "lon": -74.0165687 }, + { "lat": 40.8406233, "lon": -74.0165391 }, + { "lat": 40.8405759, "lon": -74.0165101 }, + { "lat": 40.8405302, "lon": -74.0164865 }, + { "lat": 40.8404798, "lon": -74.0164669 }, + { "lat": 40.8404268, "lon": -74.0164499 }, + { "lat": 40.8403734, "lon": -74.0164370 }, + { "lat": 40.8403206, "lon": -74.0164288 }, + { "lat": 40.8402643, "lon": -74.0164249 }, + { "lat": 40.8402158, "lon": -74.0164270 }, + { "lat": 40.8401606, "lon": -74.0164349 }, + { "lat": 40.8401045, "lon": -74.0164471 }, + { "lat": 40.8400493, "lon": -74.0164630 }, + { "lat": 40.8399936, "lon": -74.0164821 }, + { "lat": 40.8399044, "lon": -74.0165174 }, + { "lat": 40.8398166, "lon": -74.0165538 }, + { "lat": 40.8396613, "lon": -74.0166207 }, + { "lat": 40.8395513, "lon": -74.0166694 } + ], + "tags": { + "Bergen_County_database_ref": "17;124;S-12 [sic]", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020001241", + "highway": "secondary", + "name": "Bergen Turnpike", + "old_ref": "CR 17", + "ref": "CR 124", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_type": "Tpke", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 42508734, + "bounds": { + "minlat": 40.8440191, + "minlon": -74.0092815, + "maxlat": 40.8443293, + "maxlon": -74.0074490 + }, + "nodes": [ + 11084293560, + 298567069, + 10927869383, + 298566987, + 10927869400, + 10927869398, + 299181680, + 10927913935, + 10927869396, + 299181962, + 10927913951, + 10927869399, + 12016147183, + 299181594 + ], + "geometry": [ + { "lat": 40.8443293, "lon": -74.0092815 }, + { "lat": 40.8443192, "lon": -74.0091767 }, + { "lat": 40.8443030, "lon": -74.0090372 }, + { "lat": 40.8442857, "lon": -74.0088961 }, + { "lat": 40.8442669, "lon": -74.0087549 }, + { "lat": 40.8442454, "lon": -74.0086081 }, + { "lat": 40.8442213, "lon": -74.0084539 }, + { "lat": 40.8441982, "lon": -74.0083150 }, + { "lat": 40.8441721, "lon": -74.0081732 }, + { "lat": 40.8441452, "lon": -74.0080301 }, + { "lat": 40.8441168, "lon": -74.0078896 }, + { "lat": 40.8440864, "lon": -74.0077491 }, + { "lat": 40.8440526, "lon": -74.0075932 }, + { "lat": 40.8440191, "lon": -74.0074490 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "turn:lanes": "||slight_right" + } +}, +{ + "type": "way", + "id": 42508735, + "bounds": { + "minlat": 40.8443940, + "minlon": -74.0120930, + "maxlat": 40.8444556, + "maxlon": -74.0102867 + }, + "nodes": [ + 298566982, + 298566983 + ], + "geometry": [ + { "lat": 40.8444556, "lon": -74.0120930 }, + { "lat": 40.8443940, "lon": -74.0102867 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 42508737, + "bounds": { + "minlat": 40.8436138, + "minlon": -74.0050530, + "maxlat": 40.8436446, + "maxlon": -74.0046921 + }, + "nodes": [ + 103203004, + 10943455752, + 12016147324, + 9729499582, + 103203008 + ], + "geometry": [ + { "lat": 40.8436138, "lon": -74.0046921 }, + { "lat": 40.8436166, "lon": -74.0047625 }, + { "lat": 40.8436202, "lon": -74.0048357 }, + { "lat": 40.8436302, "lon": -74.0049346 }, + { "lat": 40.8436446, "lon": -74.0050530 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 42508738, + "bounds": { + "minlat": 40.8436446, + "minlon": -74.0069306, + "maxlat": 40.8440246, + "maxlon": -74.0050530 + }, + "nodes": [ + 103203008, + 103203010, + 10943435085, + 10943455768, + 12016147188, + 103203012, + 10943435103, + 103203014, + 10943455754, + 12016147187, + 10943435073, + 12016147186, + 103203016, + 12016116950 + ], + "geometry": [ + { "lat": 40.8436446, "lon": -74.0050530 }, + { "lat": 40.8436685, "lon": -74.0051985 }, + { "lat": 40.8436902, "lon": -74.0053332 }, + { "lat": 40.8437144, "lon": -74.0054745 }, + { "lat": 40.8437401, "lon": -74.0056174 }, + { "lat": 40.8437658, "lon": -74.0057554 }, + { "lat": 40.8437921, "lon": -74.0058894 }, + { "lat": 40.8438199, "lon": -74.0060282 }, + { "lat": 40.8438469, "lon": -74.0061618 }, + { "lat": 40.8438776, "lon": -74.0063025 }, + { "lat": 40.8439084, "lon": -74.0064417 }, + { "lat": 40.8439415, "lon": -74.0065868 }, + { "lat": 40.8439758, "lon": -74.0067302 }, + { "lat": 40.8440246, "lon": -74.0069306 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42508739, + "bounds": { + "minlat": 40.8435252, + "minlon": -74.0049652, + "maxlat": 40.8435453, + "maxlon": -74.0047186 + }, + "nodes": [ + 299181602, + 10943455714, + 10943455711, + 299181603 + ], + "geometry": [ + { "lat": 40.8435453, "lon": -74.0049652 }, + { "lat": 40.8435400, "lon": -74.0049121 }, + { "lat": 40.8435293, "lon": -74.0047864 }, + { "lat": 40.8435252, "lon": -74.0047186 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bridge": "yes", + "destination:lanes": "New York|New York|Broad Avenue", + "destination:ref:lanes": "US 46 East;US 1 North;US 9 North|US 1 South;US 9 South", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "turn:lanes": "||slight_right" + } +}, +{ + "type": "way", + "id": 42508750, + "bounds": { + "minlat": 40.8435453, + "minlon": -74.0069739, + "maxlat": 40.8439232, + "maxlon": -74.0049652 + }, + "nodes": [ + 12016147184, + 10943455747, + 12016147189, + 12016147190, + 299181596, + 12016147191, + 299181598, + 12016147192, + 10943455742, + 299181986, + 12016147193, + 10943435099, + 299181995, + 12016147194, + 299181601, + 299181602 + ], + "geometry": [ + { "lat": 40.8439232, "lon": -74.0069739 }, + { "lat": 40.8439027, "lon": -74.0068840 }, + { "lat": 40.8438711, "lon": -74.0067513 }, + { "lat": 40.8438391, "lon": -74.0066092 }, + { "lat": 40.8438101, "lon": -74.0064731 }, + { "lat": 40.8437817, "lon": -74.0063401 }, + { "lat": 40.8437529, "lon": -74.0061967 }, + { "lat": 40.8437258, "lon": -74.0060586 }, + { "lat": 40.8436981, "lon": -74.0059198 }, + { "lat": 40.8436719, "lon": -74.0057786 }, + { "lat": 40.8436473, "lon": -74.0056383 }, + { "lat": 40.8436248, "lon": -74.0055054 }, + { "lat": 40.8436022, "lon": -74.0053677 }, + { "lat": 40.8435785, "lon": -74.0052237 }, + { "lat": 40.8435610, "lon": -74.0051071 }, + { "lat": 40.8435453, "lon": -74.0049652 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42508755, + "bounds": { + "minlat": 40.8650808, + "minlon": -74.0315048, + "maxlat": 40.8669921, + "maxlon": -74.0169659 + }, + "nodes": [ + 298287082, + 10938692577, + 298287373, + 10938692591, + 298286594, + 298286595, + 10938598285, + 298286690, + 298286598, + 10938598288, + 298286599, + 298286691, + 10938641125, + 298286693, + 10938641115, + 298287084, + 10938641124, + 298287374, + 298286697, + 11436234346, + 12650338337, + 12650338334, + 298285981, + 10938641119, + 10938641117, + 298286698, + 298289420, + 298289434, + 298289422, + 10938641138, + 8883033062 + ], + "geometry": [ + { "lat": 40.8669921, "lon": -74.0315048 }, + { "lat": 40.8669784, "lon": -74.0311488 }, + { "lat": 40.8669662, "lon": -74.0308859 }, + { "lat": 40.8669515, "lon": -74.0306204 }, + { "lat": 40.8669350, "lon": -74.0303579 }, + { "lat": 40.8669089, "lon": -74.0299572 }, + { "lat": 40.8668795, "lon": -74.0295669 }, + { "lat": 40.8668592, "lon": -74.0293014 }, + { "lat": 40.8668364, "lon": -74.0290406 }, + { "lat": 40.8668126, "lon": -74.0287757 }, + { "lat": 40.8667755, "lon": -74.0283861 }, + { "lat": 40.8667477, "lon": -74.0281186 }, + { "lat": 40.8667172, "lon": -74.0278544 }, + { "lat": 40.8666858, "lon": -74.0275949 }, + { "lat": 40.8666528, "lon": -74.0273340 }, + { "lat": 40.8666178, "lon": -74.0270738 }, + { "lat": 40.8665808, "lon": -74.0268163 }, + { "lat": 40.8665266, "lon": -74.0264294 }, + { "lat": 40.8664880, "lon": -74.0261666 }, + { "lat": 40.8664273, "lon": -74.0257523 }, + { "lat": 40.8663559, "lon": -74.0252677 }, + { "lat": 40.8661463, "lon": -74.0238145 }, + { "lat": 40.8660243, "lon": -74.0229786 }, + { "lat": 40.8659414, "lon": -74.0224068 }, + { "lat": 40.8656756, "lon": -74.0205899 }, + { "lat": 40.8655788, "lon": -74.0199388 }, + { "lat": 40.8654794, "lon": -74.0192901 }, + { "lat": 40.8653952, "lon": -74.0187724 }, + { "lat": 40.8652877, "lon": -74.0181287 }, + { "lat": 40.8651985, "lon": -74.0176097 }, + { "lat": 40.8650808, "lon": -74.0169659 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000080", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 80", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42508758, + "bounds": { + "minlat": 40.8654769, + "minlon": -74.0315081, + "maxlat": 40.8671013, + "maxlon": -74.0183376 + }, + "nodes": [ + 298286511, + 10938692588, + 10938692590, + 298286985, + 10938692578, + 10938692595, + 298286533, + 298287079, + 10938692581, + 298286535, + 298286999, + 10938692583, + 298286519, + 10938692585, + 298286520, + 298286521, + 10938692600, + 298286522, + 10938692584, + 298286523, + 12650338336, + 12650338335, + 298286526, + 10938663464, + 11440192756, + 10938672434, + 8894330190 + ], + "geometry": [ + { "lat": 40.8671013, "lon": -74.0315081 }, + { "lat": 40.8671003, "lon": -74.0314450 }, + { "lat": 40.8670982, "lon": -74.0312983 }, + { "lat": 40.8670949, "lon": -74.0311679 }, + { "lat": 40.8670856, "lon": -74.0308947 }, + { "lat": 40.8670738, "lon": -74.0306211 }, + { "lat": 40.8670617, "lon": -74.0303499 }, + { "lat": 40.8670481, "lon": -74.0300751 }, + { "lat": 40.8670337, "lon": -74.0298046 }, + { "lat": 40.8670138, "lon": -74.0295274 }, + { "lat": 40.8669933, "lon": -74.0292547 }, + { "lat": 40.8669704, "lon": -74.0289810 }, + { "lat": 40.8669469, "lon": -74.0287094 }, + { "lat": 40.8669211, "lon": -74.0284379 }, + { "lat": 40.8668940, "lon": -74.0281673 }, + { "lat": 40.8668640, "lon": -74.0278973 }, + { "lat": 40.8668320, "lon": -74.0276235 }, + { "lat": 40.8667977, "lon": -74.0273573 }, + { "lat": 40.8667602, "lon": -74.0270866 }, + { "lat": 40.8667222, "lon": -74.0268187 }, + { "lat": 40.8664386, "lon": -74.0248949 }, + { "lat": 40.8663318, "lon": -74.0241550 }, + { "lat": 40.8662707, "lon": -74.0237356 }, + { "lat": 40.8660734, "lon": -74.0223943 }, + { "lat": 40.8658919, "lon": -74.0211767 }, + { "lat": 40.8656147, "lon": -74.0192936 }, + { "lat": 40.8654769, "lon": -74.0183376 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000080", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "ref": "I 80", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42508779, + "bounds": { + "minlat": 40.8471969, + "minlon": -74.0168953, + "maxlat": 40.8517689, + "maxlon": -74.0150456 + }, + "nodes": [ + 294998043, + 294998044, + 10927731264, + 294998045, + 10927731207, + 294998047, + 9957332743, + 10927731267, + 294998048, + 10927731260, + 10927731247, + 294998050, + 10927731232, + 298560742, + 298560658, + 10927731208, + 10927731212, + 298562326, + 298562327 + ], + "geometry": [ + { "lat": 40.8471969, "lon": -74.0168953 }, + { "lat": 40.8474702, "lon": -74.0168066 }, + { "lat": 40.8477383, "lon": -74.0167143 }, + { "lat": 40.8479914, "lon": -74.0166263 }, + { "lat": 40.8482387, "lon": -74.0165383 }, + { "lat": 40.8485053, "lon": -74.0164427 }, + { "lat": 40.8487555, "lon": -74.0163491 }, + { "lat": 40.8490124, "lon": -74.0162518 }, + { "lat": 40.8492701, "lon": -74.0161509 }, + { "lat": 40.8495215, "lon": -74.0160508 }, + { "lat": 40.8497820, "lon": -74.0159440 }, + { "lat": 40.8500295, "lon": -74.0158413 }, + { "lat": 40.8502840, "lon": -74.0157325 }, + { "lat": 40.8505363, "lon": -74.0156216 }, + { "lat": 40.8507858, "lon": -74.0155093 }, + { "lat": 40.8510359, "lon": -74.0153945 }, + { "lat": 40.8512772, "lon": -74.0152830 }, + { "lat": 40.8515324, "lon": -74.0151595 }, + { "lat": 40.8517689, "lon": -74.0150456 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508784, + "bounds": { + "minlat": 40.8479430, + "minlon": -74.0155231, + "maxlat": 40.8485631, + "maxlon": -74.0137609 + }, + "nodes": [ + 103161052, + 530805604 + ], + "geometry": [ + { "lat": 40.8479430, "lon": -74.0137609 }, + { "lat": 40.8485631, "lon": -74.0155231 } + ], + "tags": { + "highway": "secondary", + "name": "Emerson Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Emerson", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508801, + "bounds": { + "minlat": 40.8491856, + "minlon": -74.0178975, + "maxlat": 40.8492959, + "maxlon": -74.0173175 + }, + "nodes": [ + 299380721, + 10936265597, + 299383661, + 10936283618, + 299380723, + 10936265603, + 294998182 + ], + "geometry": [ + { "lat": 40.8492959, "lon": -74.0178975 }, + { "lat": 40.8492865, "lon": -74.0178175 }, + { "lat": 40.8492763, "lon": -74.0177485 }, + { "lat": 40.8492642, "lon": -74.0176766 }, + { "lat": 40.8492500, "lon": -74.0176042 }, + { "lat": 40.8492332, "lon": -74.0175239 }, + { "lat": 40.8491856, "lon": -74.0173175 } + ], + "tags": { + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "East Winant Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 42508822, + "bounds": { + "minlat": 40.8514479, + "minlon": -73.9855636, + "maxlat": 40.8515822, + "maxlon": -73.9854299 + }, + "nodes": [ + 299171995, + 530805916 + ], + "geometry": [ + { "lat": 40.8515822, "lon": -73.9854299 }, + { "lat": 40.8514479, "lon": -73.9855636 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508826, + "bounds": { + "minlat": 40.8503025, + "minlon": -73.9867190, + "maxlat": 40.8511342, + "maxlon": -73.9858800 + }, + "nodes": [ + 4695817865, + 4695817861, + 299171997 + ], + "geometry": [ + { "lat": 40.8511342, "lon": -73.9858800 }, + { "lat": 40.8508255, "lon": -73.9861915 }, + { "lat": 40.8503025, "lon": -73.9867190 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 42508827, + "bounds": { + "minlat": 40.8488205, + "minlon": -73.9882087, + "maxlat": 40.8501850, + "maxlon": -73.9868374 + }, + "nodes": [ + 530805913, + 299172190 + ], + "geometry": [ + { "lat": 40.8501850, "lon": -73.9868374 }, + { "lat": 40.8488205, "lon": -73.9882087 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "embankment": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508828, + "bounds": { + "minlat": 40.8485679, + "minlon": -73.9884627, + "maxlat": 40.8486409, + "maxlon": -73.9883884 + }, + "nodes": [ + 530805910, + 299172024 + ], + "geometry": [ + { "lat": 40.8486409, "lon": -73.9883884 }, + { "lat": 40.8485679, "lon": -73.9884627 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "destination:lanes": "|none;Fifth Street;Palisades Park", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes": "|through;slight_right" + } +}, +{ + "type": "way", + "id": 42508829, + "bounds": { + "minlat": 40.8454018, + "minlon": -73.9958308, + "maxlat": 40.8479510, + "maxlon": -73.9932750 + }, + "nodes": [ + 103271821, + 103271819, + 103172164 + ], + "geometry": [ + { "lat": 40.8479510, "lon": -73.9932750 }, + { "lat": 40.8465680, "lon": -73.9946920 }, + { "lat": 40.8454018, "lon": -73.9958308 } + ], + "tags": { + "highway": "residential", + "name": "Roff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 42508830, + "bounds": { + "minlat": 40.8439691, + "minlon": -73.9930872, + "maxlat": 40.8449496, + "maxlon": -73.9921006 + }, + "nodes": [ + 298942989, + 530805901 + ], + "geometry": [ + { "lat": 40.8449496, "lon": -73.9921006 }, + { "lat": 40.8439691, "lon": -73.9930872 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "embankment": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 42508831, + "bounds": { + "minlat": 40.8437916, + "minlon": -73.9932668, + "maxlat": 40.8439691, + "maxlon": -73.9930872 + }, + "nodes": [ + 530805901, + 298942990 + ], + "geometry": [ + { "lat": 40.8439691, "lon": -73.9930872 }, + { "lat": 40.8437916, "lon": -73.9932668 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 42508833, + "bounds": { + "minlat": 40.8439181, + "minlon": -73.9929985, + "maxlat": 40.8448967, + "maxlon": -73.9920101 + }, + "nodes": [ + 299181708, + 299181641 + ], + "geometry": [ + { "lat": 40.8439181, "lon": -73.9929985 }, + { "lat": 40.8448967, "lon": -73.9920101 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "embankment": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42508834, + "bounds": { + "minlat": 40.8426086, + "minlon": -73.9944731, + "maxlat": 40.8437916, + "maxlon": -73.9932668 + }, + "nodes": [ + 298942990, + 103238580, + 7934286260, + 7934286264, + 298942966 + ], + "geometry": [ + { "lat": 40.8437916, "lon": -73.9932668 }, + { "lat": 40.8428302, "lon": -73.9942349 }, + { "lat": 40.8427489, "lon": -73.9943191 }, + { "lat": 40.8426598, "lon": -73.9944154 }, + { "lat": 40.8426086, "lon": -73.9944731 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "embankment": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 42508835, + "bounds": { + "minlat": 40.8424998, + "minlon": -73.9946061, + "maxlat": 40.8426086, + "maxlon": -73.9944731 + }, + "nodes": [ + 298942966, + 7934286263, + 530805898 + ], + "geometry": [ + { "lat": 40.8426086, "lon": -73.9944731 }, + { "lat": 40.8425735, "lon": -73.9945141 }, + { "lat": 40.8424998, "lon": -73.9946061 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 42508842, + "bounds": { + "minlat": 40.8417594, + "minlon": -73.9960823, + "maxlat": 40.8424998, + "maxlon": -73.9946061 + }, + "nodes": [ + 530805898, + 10942990443, + 103238584, + 10942990440, + 7934286259, + 10943455771, + 103238585, + 10943435081, + 7934286262, + 103238586, + 7934286266, + 7934286258, + 103238587, + 10943435086, + 12020325872, + 12020325871, + 12020325873, + 103238588 + ], + "geometry": [ + { "lat": 40.8424998, "lon": -73.9946061 }, + { "lat": 40.8424607, "lon": -73.9946581 }, + { "lat": 40.8424206, "lon": -73.9947123 }, + { "lat": 40.8423835, "lon": -73.9947646 }, + { "lat": 40.8423462, "lon": -73.9948184 }, + { "lat": 40.8423097, "lon": -73.9948728 }, + { "lat": 40.8422725, "lon": -73.9949307 }, + { "lat": 40.8422390, "lon": -73.9949853 }, + { "lat": 40.8422053, "lon": -73.9950414 }, + { "lat": 40.8421403, "lon": -73.9951574 }, + { "lat": 40.8420770, "lon": -73.9952774 }, + { "lat": 40.8420180, "lon": -73.9953969 }, + { "lat": 40.8419614, "lon": -73.9955207 }, + { "lat": 40.8419088, "lon": -73.9956467 }, + { "lat": 40.8418631, "lon": -73.9957691 }, + { "lat": 40.8418174, "lon": -73.9958964 }, + { "lat": 40.8417981, "lon": -73.9959537 }, + { "lat": 40.8417594, "lon": -73.9960823 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 42508843, + "bounds": { + "minlat": 40.8406522, + "minlon": -73.9975603, + "maxlat": 40.8411752, + "maxlon": -73.9970408 + }, + "nodes": [ + 103208156, + 10286906178, + 7130110353, + 766720051, + 766720047 + ], + "geometry": [ + { "lat": 40.8411752, "lon": -73.9970408 }, + { "lat": 40.8409660, "lon": -73.9972550 }, + { "lat": 40.8408562, "lon": -73.9973591 }, + { "lat": 40.8407212, "lon": -73.9974912 }, + { "lat": 40.8406522, "lon": -73.9975603 } + ], + "tags": { + "highway": "residential", + "name": "Abbott Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 42508844, + "bounds": { + "minlat": 40.8437393, + "minlon": -73.9931765, + "maxlat": 40.8439181, + "maxlon": -73.9929985 + }, + "nodes": [ + 299181991, + 299181708 + ], + "geometry": [ + { "lat": 40.8437393, "lon": -73.9931765 }, + { "lat": 40.8439181, "lon": -73.9929985 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 42508845, + "bounds": { + "minlat": 40.8425526, + "minlon": -73.9943809, + "maxlat": 40.8437393, + "maxlon": -73.9931765 + }, + "nodes": [ + 299181637, + 10942990433, + 7934286268, + 299181638, + 7934286265, + 12020325880, + 299181991 + ], + "geometry": [ + { "lat": 40.8425526, "lon": -73.9943809 }, + { "lat": 40.8426034, "lon": -73.9943250 }, + { "lat": 40.8426916, "lon": -73.9942301 }, + { "lat": 40.8427731, "lon": -73.9941462 }, + { "lat": 40.8428563, "lon": -73.9940602 }, + { "lat": 40.8430237, "lon": -73.9938924 }, + { "lat": 40.8437393, "lon": -73.9931765 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "embankment": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42508846, + "bounds": { + "minlat": 40.8424410, + "minlon": -73.9945166, + "maxlat": 40.8425526, + "maxlon": -73.9943809 + }, + "nodes": [ + 299181705, + 299181637 + ], + "geometry": [ + { "lat": 40.8424410, "lon": -73.9945166 }, + { "lat": 40.8425526, "lon": -73.9943809 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 42508853, + "bounds": { + "minlat": 40.8417833, + "minlon": -73.9965218, + "maxlat": 40.8429687, + "maxlon": -73.9952726 + }, + "nodes": [ + 530805889, + 10285498730, + 530805892, + 103153166, + 12692332167, + 103208158 + ], + "geometry": [ + { "lat": 40.8417833, "lon": -73.9965218 }, + { "lat": 40.8417924, "lon": -73.9964698 }, + { "lat": 40.8418110, "lon": -73.9964295 }, + { "lat": 40.8422724, "lon": -73.9959647 }, + { "lat": 40.8429065, "lon": -73.9953337 }, + { "lat": 40.8429687, "lon": -73.9952726 } + ], + "tags": { + "highway": "residential", + "name": "Abbott Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 42508857, + "bounds": { + "minlat": 40.8417248, + "minlon": -73.9993946, + "maxlat": 40.8418516, + "maxlon": -73.9992674 + }, + "nodes": [ + 530805885, + 530805886 + ], + "geometry": [ + { "lat": 40.8417248, "lon": -73.9993946 }, + { "lat": 40.8418516, "lon": -73.9992674 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "layer": "1", + "name": "Roff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650", + "turn:lanes:backward": "left;through", + "turn:lanes:forward": "left;through" + } +}, +{ + "type": "way", + "id": 42508873, + "bounds": { + "minlat": 40.8428792, + "minlon": -74.0014755, + "maxlat": 40.8430274, + "maxlon": -74.0013789 + }, + "nodes": [ + 530805720, + 530805706 + ], + "geometry": [ + { "lat": 40.8430274, "lon": -74.0013789 }, + { "lat": 40.8428792, "lon": -74.0014755 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "cycleway:both": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "layer": "1", + "maxspeed": "35 mph", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:cfcc": "A21:A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 42508874, + "bounds": { + "minlat": 40.8430663, + "minlon": -74.0025139, + "maxlat": 40.8435532, + "maxlon": -74.0013526 + }, + "nodes": [ + 308363346, + 10943482402, + 10943492025, + 10943492060, + 530805880, + 10943482398, + 10943492041, + 530805881, + 5976782418, + 530805882, + 10943482386, + 10943492042, + 299181156 + ], + "geometry": [ + { "lat": 40.8430663, "lon": -74.0013526 }, + { "lat": 40.8431330, "lon": -74.0014612 }, + { "lat": 40.8431773, "lon": -74.0015379 }, + { "lat": 40.8432195, "lon": -74.0016162 }, + { "lat": 40.8432652, "lon": -74.0017037 }, + { "lat": 40.8433172, "lon": -74.0018123 }, + { "lat": 40.8433647, "lon": -74.0019238 }, + { "lat": 40.8434105, "lon": -74.0020392 }, + { "lat": 40.8434378, "lon": -74.0021141 }, + { "lat": 40.8434515, "lon": -74.0021547 }, + { "lat": 40.8434900, "lon": -74.0022745 }, + { "lat": 40.8435237, "lon": -74.0023932 }, + { "lat": 40.8435532, "lon": -74.0025139 } + ], + "tags": { + "destination:ref": "US 46 West", + "frontage_road": "yes", + "highway": "primary", + "lanes": "2", + "name": "West Columbia Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42508875, + "bounds": { + "minlat": 40.8462829, + "minlon": -73.9906162, + "maxlat": 40.8464592, + "maxlon": -73.9904364 + }, + "nodes": [ + 299181973, + 299172012 + ], + "geometry": [ + { "lat": 40.8462829, "lon": -73.9906162 }, + { "lat": 40.8464592, "lon": -73.9904364 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 42508876, + "bounds": { + "minlat": 40.8463317, + "minlon": -73.9907074, + "maxlat": 40.8465095, + "maxlon": -73.9905278 + }, + "nodes": [ + 299172191, + 298942988 + ], + "geometry": [ + { "lat": 40.8465095, "lon": -73.9905278 }, + { "lat": 40.8463317, "lon": -73.9907074 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1" + } +}, +{ + "type": "way", + "id": 42508878, + "bounds": { + "minlat": 40.8450747, + "minlon": -73.9918299, + "maxlat": 40.8462829, + "maxlon": -73.9906162 + }, + "nodes": [ + 299181642, + 299181973 + ], + "geometry": [ + { "lat": 40.8450747, "lon": -73.9918299 }, + { "lat": 40.8462829, "lon": -73.9906162 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "embankment": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42508879, + "bounds": { + "minlat": 40.8448967, + "minlon": -73.9920101, + "maxlat": 40.8450747, + "maxlon": -73.9918299 + }, + "nodes": [ + 299181641, + 299181642 + ], + "geometry": [ + { "lat": 40.8448967, "lon": -73.9920101 }, + { "lat": 40.8450747, "lon": -73.9918299 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 42508880, + "bounds": { + "minlat": 40.8449496, + "minlon": -73.9921006, + "maxlat": 40.8451269, + "maxlon": -73.9919227 + }, + "nodes": [ + 299180794, + 298942989 + ], + "geometry": [ + { "lat": 40.8451269, "lon": -73.9919227 }, + { "lat": 40.8449496, "lon": -73.9921006 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 42508882, + "bounds": { + "minlat": 40.8514896, + "minlon": -73.9854012, + "maxlat": 40.8527665, + "maxlon": -73.9847965 + }, + "nodes": [ + 299172194, + 7934286261, + 299172125, + 10943011801, + 299172187, + 10943011793, + 299172107, + 10943011794, + 299172123, + 10943011796, + 10943011795, + 10943011792, + 10943011797, + 299172186 + ], + "geometry": [ + { "lat": 40.8514896, "lon": -73.9854012 }, + { "lat": 40.8515751, "lon": -73.9853207 }, + { "lat": 40.8516678, "lon": -73.9852393 }, + { "lat": 40.8517637, "lon": -73.9851636 }, + { "lat": 40.8518606, "lon": -73.9850965 }, + { "lat": 40.8519613, "lon": -73.9850345 }, + { "lat": 40.8520649, "lon": -73.9849797 }, + { "lat": 40.8521693, "lon": -73.9849334 }, + { "lat": 40.8522762, "lon": -73.9848943 }, + { "lat": 40.8523857, "lon": -73.9848618 }, + { "lat": 40.8524927, "lon": -73.9848391 }, + { "lat": 40.8526024, "lon": -73.9848204 }, + { "lat": 40.8527122, "lon": -73.9848043 }, + { "lat": 40.8527665, "lon": -73.9847965 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "United States Highway 1", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508885, + "bounds": { + "minlat": 40.8487684, + "minlon": -73.9881164, + "maxlat": 40.8501312, + "maxlon": -73.9867466 + }, + "nodes": [ + 530805912, + 103238569 + ], + "geometry": [ + { "lat": 40.8487684, "lon": -73.9881164 }, + { "lat": 40.8501312, "lon": -73.9867466 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "embankment": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 42508886, + "bounds": { + "minlat": 40.8485880, + "minlon": -73.9882974, + "maxlat": 40.8487684, + "maxlon": -73.9881164 + }, + "nodes": [ + 530805911, + 530805912 + ], + "geometry": [ + { "lat": 40.8485880, "lon": -73.9882974 }, + { "lat": 40.8487684, "lon": -73.9881164 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 42508887, + "bounds": { + "minlat": 40.8486409, + "minlon": -73.9883884, + "maxlat": 40.8488205, + "maxlon": -73.9882087 + }, + "nodes": [ + 299172190, + 530805910 + ], + "geometry": [ + { "lat": 40.8488205, "lon": -73.9882087 }, + { "lat": 40.8486409, "lon": -73.9883884 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508888, + "bounds": { + "minlat": 40.8513530, + "minlon": -73.9855348, + "maxlat": 40.8514896, + "maxlon": -73.9854012 + }, + "nodes": [ + 530805915, + 299172194 + ], + "geometry": [ + { "lat": 40.8513530, "lon": -73.9855348 }, + { "lat": 40.8514896, "lon": -73.9854012 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "United States Highway 1", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508889, + "bounds": { + "minlat": 40.8501312, + "minlon": -73.9867466, + "maxlat": 40.8502515, + "maxlon": -73.9866265 + }, + "nodes": [ + 103238569, + 530805914 + ], + "geometry": [ + { "lat": 40.8501312, "lon": -73.9867466 }, + { "lat": 40.8502515, "lon": -73.9866265 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:name_base_2": "United States Highway 46", + "turn:lanes": "none|none|merge_to_left" + } +}, +{ + "type": "way", + "id": 42508890, + "bounds": { + "minlat": 40.8502515, + "minlon": -73.9866265, + "maxlat": 40.8503703, + "maxlon": -73.9865045 + }, + "nodes": [ + 530805914, + 8956261524 + ], + "geometry": [ + { "lat": 40.8502515, "lon": -73.9866265 }, + { "lat": 40.8503703, "lon": -73.9865045 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46", + "turn:lanes": "||merge_to_left" + } +}, +{ + "type": "way", + "id": 42508891, + "bounds": { + "minlat": 40.8501850, + "minlon": -73.9868374, + "maxlat": 40.8503025, + "maxlon": -73.9867190 + }, + "nodes": [ + 299171997, + 530805913 + ], + "geometry": [ + { "lat": 40.8503025, "lon": -73.9867190 }, + { "lat": 40.8501850, "lon": -73.9868374 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508895, + "bounds": { + "minlat": 40.8723600, + "minlon": -73.9846327, + "maxlat": 40.8750591, + "maxlon": -73.9804344 + }, + "nodes": [ + 298771474, + 10940285233, + 10940285235, + 298771176, + 10940285231, + 298771178, + 298771179, + 10940285245, + 298771180, + 10940285228, + 13759582517, + 13759582516, + 13759582515, + 13759582514, + 13759582513, + 13759582512, + 298771183, + 13759582511, + 298771476, + 13759580195, + 10940285239, + 13759582510, + 298771187 + ], + "geometry": [ + { "lat": 40.8723600, "lon": -73.9804344 }, + { "lat": 40.8724054, "lon": -73.9804910 }, + { "lat": 40.8726291, "lon": -73.9807754 }, + { "lat": 40.8728435, "lon": -73.9810573 }, + { "lat": 40.8730534, "lon": -73.9813410 }, + { "lat": 40.8732537, "lon": -73.9816221 }, + { "lat": 40.8734573, "lon": -73.9819142 }, + { "lat": 40.8736550, "lon": -73.9822054 }, + { "lat": 40.8738449, "lon": -73.9824928 }, + { "lat": 40.8740361, "lon": -73.9827920 }, + { "lat": 40.8740943, "lon": -73.9828863 }, + { "lat": 40.8741833, "lon": -73.9830306 }, + { "lat": 40.8742674, "lon": -73.9831678 }, + { "lat": 40.8743531, "lon": -73.9833117 }, + { "lat": 40.8744392, "lon": -73.9834566 }, + { "lat": 40.8745237, "lon": -73.9836035 }, + { "lat": 40.8746058, "lon": -73.9837473 }, + { "lat": 40.8746847, "lon": -73.9838917 }, + { "lat": 40.8747648, "lon": -73.9840412 }, + { "lat": 40.8748523, "lon": -73.9842106 }, + { "lat": 40.8749191, "lon": -73.9843427 }, + { "lat": 40.8749965, "lon": -73.9844996 }, + { "lat": 40.8750591, "lon": -73.9846327 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508898, + "bounds": { + "minlat": 40.8724805, + "minlon": -73.9830596, + "maxlat": 40.8743717, + "maxlon": -73.9803479 + }, + "nodes": [ + 298768848, + 298768849, + 10940262048, + 298771426, + 298768851, + 10940262042, + 298769755, + 298769759, + 10940262055, + 298769760, + 10940262026 + ], + "geometry": [ + { "lat": 40.8724805, "lon": -73.9803479 }, + { "lat": 40.8726814, "lon": -73.9806027 }, + { "lat": 40.8728747, "lon": -73.9808548 }, + { "lat": 40.8730700, "lon": -73.9811151 }, + { "lat": 40.8732621, "lon": -73.9813790 }, + { "lat": 40.8734492, "lon": -73.9816439 }, + { "lat": 40.8736325, "lon": -73.9819094 }, + { "lat": 40.8738158, "lon": -73.9821830 }, + { "lat": 40.8739947, "lon": -73.9824574 }, + { "lat": 40.8741718, "lon": -73.9827352 }, + { "lat": 40.8743717, "lon": -73.9830596 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508899, + "bounds": { + "minlat": 40.8729006, + "minlon": -73.9799013, + "maxlat": 40.8729721, + "maxlon": -73.9798498 + }, + "nodes": [ + 530805994, + 530805998 + ], + "geometry": [ + { "lat": 40.8729006, "lon": -73.9799013 }, + { "lat": 40.8729721, "lon": -73.9798498 } + ], + "tags": { + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508901, + "bounds": { + "minlat": 40.8782043, + "minlon": -73.9760749, + "maxlat": 40.8837209, + "maxlon": -73.9720943 + }, + "nodes": [ + 12021734811, + 103138154, + 103224140, + 103224142, + 12021734821, + 12021734822, + 12021734823, + 103214247, + 103224144, + 7231950520, + 103138368, + 12021734849, + 7095101222, + 7095101213, + 7095101230, + 103224146, + 12021734850 + ], + "geometry": [ + { "lat": 40.8782043, "lon": -73.9760749 }, + { "lat": 40.8786400, "lon": -73.9757626 }, + { "lat": 40.8790402, "lon": -73.9754748 }, + { "lat": 40.8794681, "lon": -73.9751512 }, + { "lat": 40.8796944, "lon": -73.9749853 }, + { "lat": 40.8798213, "lon": -73.9748916 }, + { "lat": 40.8799697, "lon": -73.9747847 }, + { "lat": 40.8806503, "lon": -73.9743017 }, + { "lat": 40.8807236, "lon": -73.9742481 }, + { "lat": 40.8817905, "lon": -73.9734805 }, + { "lat": 40.8823939, "lon": -73.9730422 }, + { "lat": 40.8824443, "lon": -73.9730053 }, + { "lat": 40.8827625, "lon": -73.9727772 }, + { "lat": 40.8831785, "lon": -73.9724747 }, + { "lat": 40.8835318, "lon": -73.9722315 }, + { "lat": 40.8836572, "lon": -73.9721453 }, + { "lat": 40.8837209, "lon": -73.9720943 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508912, + "bounds": { + "minlat": 40.8802523, + "minlon": -73.9844363, + "maxlat": 40.8808476, + "maxlon": -73.9833847 + }, + "nodes": [ + 298939983, + 298940039 + ], + "geometry": [ + { "lat": 40.8808476, "lon": -73.9844363 }, + { "lat": 40.8802523, "lon": -73.9833847 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "bridge": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508915, + "bounds": { + "minlat": 40.8793219, + "minlon": -73.9829040, + "maxlat": 40.8799808, + "maxlon": -73.9817440 + }, + "nodes": [ + 4215546706, + 103098043 + ], + "geometry": [ + { "lat": 40.8799808, "lon": -73.9829040 }, + { "lat": 40.8793219, "lon": -73.9817440 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508917, + "bounds": { + "minlat": 40.8722794, + "minlon": -73.9846807, + "maxlat": 40.8749745, + "maxlon": -73.9804923 + }, + "nodes": [ + 298772294, + 13758734069, + 298772422, + 13758734070, + 10940650445, + 13758734071, + 298772292, + 13758734072, + 298772291, + 13758734073, + 10940650438, + 13758734074, + 298772290, + 13758734075, + 10940650447, + 13758734076, + 298772289, + 13758734077, + 298772288, + 13758734078, + 10940650452, + 13758734079, + 10940650449, + 13758734080, + 10940650435, + 13758734081, + 298772286, + 13758734082, + 298772285, + 13758734083, + 530805992 + ], + "geometry": [ + { "lat": 40.8749745, "lon": -73.9846807 }, + { "lat": 40.8749019, "lon": -73.9845215 }, + { "lat": 40.8748266, "lon": -73.9843644 }, + { "lat": 40.8747505, "lon": -73.9842129 }, + { "lat": 40.8746721, "lon": -73.9840649 }, + { "lat": 40.8745934, "lon": -73.9839190 }, + { "lat": 40.8745093, "lon": -73.9837678 }, + { "lat": 40.8744280, "lon": -73.9836253 }, + { "lat": 40.8743447, "lon": -73.9834803 }, + { "lat": 40.8742605, "lon": -73.9833395 }, + { "lat": 40.8741713, "lon": -73.9831927 }, + { "lat": 40.8740851, "lon": -73.9830530 }, + { "lat": 40.8739968, "lon": -73.9829099 }, + { "lat": 40.8739099, "lon": -73.9827721 }, + { "lat": 40.8738205, "lon": -73.9826328 }, + { "lat": 40.8737322, "lon": -73.9824977 }, + { "lat": 40.8736442, "lon": -73.9823647 }, + { "lat": 40.8735485, "lon": -73.9822216 }, + { "lat": 40.8734582, "lon": -73.9820867 }, + { "lat": 40.8733701, "lon": -73.9819591 }, + { "lat": 40.8732722, "lon": -73.9818171 }, + { "lat": 40.8731850, "lon": -73.9816947 }, + { "lat": 40.8730891, "lon": -73.9815605 }, + { "lat": 40.8729912, "lon": -73.9814270 }, + { "lat": 40.8728960, "lon": -73.9812969 }, + { "lat": 40.8728030, "lon": -73.9811700 }, + { "lat": 40.8727061, "lon": -73.9810402 }, + { "lat": 40.8726137, "lon": -73.9809185 }, + { "lat": 40.8725082, "lon": -73.9807809 }, + { "lat": 40.8724134, "lon": -73.9806601 }, + { "lat": 40.8722794, "lon": -73.9804923 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508920, + "bounds": { + "minlat": 40.8724518, + "minlon": -73.9847621, + "maxlat": 40.8748289, + "maxlon": -73.9810247 + }, + "nodes": [ + 298774099, + 10940678096, + 10940696718, + 10940678094, + 298774759, + 10940696716, + 298774760, + 13758734084, + 10940678103, + 13758734085, + 298774762, + 13758734086, + 10940678093, + 13758734087, + 298774093, + 13758734088, + 10940678104, + 13758734089, + 298774091, + 13758734090, + 298774090, + 13758734091, + 10940678092, + 13762277590, + 298774368, + 13762277591, + 298774365, + 11438911116 + ], + "geometry": [ + { "lat": 40.8748289, "lon": -73.9847621 }, + { "lat": 40.8747655, "lon": -73.9846229 }, + { "lat": 40.8746920, "lon": -73.9844727 }, + { "lat": 40.8746128, "lon": -73.9843156 }, + { "lat": 40.8745310, "lon": -73.9841643 }, + { "lat": 40.8744490, "lon": -73.9840207 }, + { "lat": 40.8743658, "lon": -73.9838761 }, + { "lat": 40.8742818, "lon": -73.9837314 }, + { "lat": 40.8742010, "lon": -73.9835976 }, + { "lat": 40.8741111, "lon": -73.9834501 }, + { "lat": 40.8740228, "lon": -73.9833061 }, + { "lat": 40.8739376, "lon": -73.9831682 }, + { "lat": 40.8738519, "lon": -73.9830306 }, + { "lat": 40.8737601, "lon": -73.9828888 }, + { "lat": 40.8736694, "lon": -73.9827486 }, + { "lat": 40.8735817, "lon": -73.9826147 }, + { "lat": 40.8734933, "lon": -73.9824814 }, + { "lat": 40.8733994, "lon": -73.9823401 }, + { "lat": 40.8733092, "lon": -73.9822060 }, + { "lat": 40.8732156, "lon": -73.9820685 }, + { "lat": 40.8731230, "lon": -73.9819368 }, + { "lat": 40.8730293, "lon": -73.9818055 }, + { "lat": 40.8729335, "lon": -73.9816725 }, + { "lat": 40.8728355, "lon": -73.9815374 }, + { "lat": 40.8727470, "lon": -73.9814155 }, + { "lat": 40.8726489, "lon": -73.9812843 }, + { "lat": 40.8725533, "lon": -73.9811578 }, + { "lat": 40.8724518, "lon": -73.9810247 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508921, + "bounds": { + "minlat": 40.8751709, + "minlon": -73.9900213, + "maxlat": 40.8759212, + "maxlon": -73.9845657 + }, + "nodes": [ + 298769765, + 10940262012, + 298769767, + 10940262054, + 10940262047, + 298771245, + 8954758606, + 10940262037, + 298768863, + 10940262043, + 10940262053, + 298769771, + 10940262022, + 10940262045, + 298768865, + 8954758601, + 10940262040, + 298768866, + 8954758604, + 10940262057, + 298768867, + 10940262027, + 10940262032, + 298768868, + 10940262010, + 10940234401, + 298769773, + 10940262049, + 10940262009, + 298768871, + 10940262034, + 298768872, + 10940234399, + 10940234400, + 298768873 + ], + "geometry": [ + { "lat": 40.8751709, "lon": -73.9845657 }, + { "lat": 40.8752462, "lon": -73.9847391 }, + { "lat": 40.8753075, "lon": -73.9848914 }, + { "lat": 40.8753662, "lon": -73.9850458 }, + { "lat": 40.8754233, "lon": -73.9852056 }, + { "lat": 40.8754769, "lon": -73.9853676 }, + { "lat": 40.8755247, "lon": -73.9855219 }, + { "lat": 40.8755685, "lon": -73.9856772 }, + { "lat": 40.8756094, "lon": -73.9858327 }, + { "lat": 40.8756483, "lon": -73.9859953 }, + { "lat": 40.8756854, "lon": -73.9861579 }, + { "lat": 40.8757158, "lon": -73.9863007 }, + { "lat": 40.8757481, "lon": -73.9864624 }, + { "lat": 40.8757775, "lon": -73.9866263 }, + { "lat": 40.8758065, "lon": -73.9868043 }, + { "lat": 40.8758316, "lon": -73.9869717 }, + { "lat": 40.8758542, "lon": -73.9871428 }, + { "lat": 40.8758734, "lon": -73.9873126 }, + { "lat": 40.8758894, "lon": -73.9874884 }, + { "lat": 40.8758995, "lon": -73.9876274 }, + { "lat": 40.8759086, "lon": -73.9877960 }, + { "lat": 40.8759144, "lon": -73.9879351 }, + { "lat": 40.8759198, "lon": -73.9880851 }, + { "lat": 40.8759212, "lon": -73.9882564 }, + { "lat": 40.8759212, "lon": -73.9884080 }, + { "lat": 40.8759189, "lon": -73.9885723 }, + { "lat": 40.8759128, "lon": -73.9887489 }, + { "lat": 40.8759035, "lon": -73.9889180 }, + { "lat": 40.8758917, "lon": -73.9890769 }, + { "lat": 40.8758769, "lon": -73.9892411 }, + { "lat": 40.8758605, "lon": -73.9893962 }, + { "lat": 40.8758399, "lon": -73.9895648 }, + { "lat": 40.8758158, "lon": -73.9897463 }, + { "lat": 40.8757903, "lon": -73.9899178 }, + { "lat": 40.8757743, "lon": -73.9900213 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508922, + "bounds": { + "minlat": 40.8750591, + "minlon": -73.9899903, + "maxlat": 40.8758138, + "maxlon": -73.9846327 + }, + "nodes": [ + 298771187, + 10940285230, + 298771188, + 10940285236, + 10940285234, + 298775479, + 10940418151, + 298771193, + 10940418138, + 298777722, + 10940418154, + 298771200, + 10940418146, + 298771202, + 10940418148, + 10940418143, + 298771206, + 10940418153, + 298771208, + 10940418141, + 298771211, + 10940418150, + 10940418144, + 298771212, + 10940418142, + 298775184, + 10940418145, + 298775185, + 10940418147, + 298771216, + 298775186 + ], + "geometry": [ + { "lat": 40.8750591, "lon": -73.9846327 }, + { "lat": 40.8751456, "lon": -73.9848311 }, + { "lat": 40.8752106, "lon": -73.9849911 }, + { "lat": 40.8752716, "lon": -73.9851516 }, + { "lat": 40.8753286, "lon": -73.9853164 }, + { "lat": 40.8753835, "lon": -73.9854845 }, + { "lat": 40.8754339, "lon": -73.9856436 }, + { "lat": 40.8754858, "lon": -73.9858254 }, + { "lat": 40.8755286, "lon": -73.9859890 }, + { "lat": 40.8755721, "lon": -73.9861690 }, + { "lat": 40.8756093, "lon": -73.9863416 }, + { "lat": 40.8756433, "lon": -73.9864939 }, + { "lat": 40.8756742, "lon": -73.9866659 }, + { "lat": 40.8757022, "lon": -73.9868378 }, + { "lat": 40.8757287, "lon": -73.9870172 }, + { "lat": 40.8757514, "lon": -73.9871925 }, + { "lat": 40.8757711, "lon": -73.9873762 }, + { "lat": 40.8757867, "lon": -73.9875659 }, + { "lat": 40.8757983, "lon": -73.9877433 }, + { "lat": 40.8758085, "lon": -73.9879448 }, + { "lat": 40.8758128, "lon": -73.9880994 }, + { "lat": 40.8758138, "lon": -73.9882728 }, + { "lat": 40.8758137, "lon": -73.9884655 }, + { "lat": 40.8758092, "lon": -73.9886345 }, + { "lat": 40.8758003, "lon": -73.9888183 }, + { "lat": 40.8757873, "lon": -73.9890100 }, + { "lat": 40.8757730, "lon": -73.9891890 }, + { "lat": 40.8757518, "lon": -73.9893761 }, + { "lat": 40.8757309, "lon": -73.9895502 }, + { "lat": 40.8757041, "lon": -73.9897293 }, + { "lat": 40.8756640, "lon": -73.9899903 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508925, + "bounds": { + "minlat": 40.8748822, + "minlon": -73.9937801, + "maxlat": 40.8757743, + "maxlon": -73.9900213 + }, + "nodes": [ + 298768873, + 10940262052, + 298768874, + 298769775, + 10940262018, + 298768877, + 298771427, + 298775158, + 10940262029, + 298771309, + 298775160, + 10940262006, + 298771431 + ], + "geometry": [ + { "lat": 40.8757743, "lon": -73.9900213 }, + { "lat": 40.8757384, "lon": -73.9902371 }, + { "lat": 40.8756749, "lon": -73.9905968 }, + { "lat": 40.8756081, "lon": -73.9909471 }, + { "lat": 40.8755380, "lon": -73.9912927 }, + { "lat": 40.8754628, "lon": -73.9916394 }, + { "lat": 40.8753818, "lon": -73.9919900 }, + { "lat": 40.8752981, "lon": -73.9923258 }, + { "lat": 40.8752057, "lon": -73.9926803 }, + { "lat": 40.8751116, "lon": -73.9930193 }, + { "lat": 40.8750133, "lon": -73.9933502 }, + { "lat": 40.8749103, "lon": -73.9936894 }, + { "lat": 40.8748822, "lon": -73.9937801 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508927, + "bounds": { + "minlat": 40.8747278, + "minlon": -73.9937553, + "maxlat": 40.8756640, + "maxlon": -73.9899903 + }, + "nodes": [ + 298775186, + 13759582508, + 10940418152, + 13759582507, + 298771219, + 13759582506, + 298771221, + 13759582505, + 298771222, + 13759582504, + 13759582503, + 13759582502, + 13759582501, + 13759580200, + 13759580199, + 10940418140, + 13759580198, + 298771226, + 13759580197, + 10940458755, + 13759580196, + 298771485, + 298777723 + ], + "geometry": [ + { "lat": 40.8756640, "lon": -73.9899903 }, + { "lat": 40.8756485, "lon": -73.9900845 }, + { "lat": 40.8756176, "lon": -73.9902600 }, + { "lat": 40.8755839, "lon": -73.9904388 }, + { "lat": 40.8755493, "lon": -73.9906180 }, + { "lat": 40.8755141, "lon": -73.9907932 }, + { "lat": 40.8754764, "lon": -73.9909725 }, + { "lat": 40.8754387, "lon": -73.9911399 }, + { "lat": 40.8753990, "lon": -73.9913180 }, + { "lat": 40.8753592, "lon": -73.9914868 }, + { "lat": 40.8753149, "lon": -73.9916714 }, + { "lat": 40.8752724, "lon": -73.9918474 }, + { "lat": 40.8752310, "lon": -73.9920132 }, + { "lat": 40.8751874, "lon": -73.9921903 }, + { "lat": 40.8751425, "lon": -73.9923636 }, + { "lat": 40.8750965, "lon": -73.9925359 }, + { "lat": 40.8750536, "lon": -73.9926970 }, + { "lat": 40.8750023, "lon": -73.9928776 }, + { "lat": 40.8749524, "lon": -73.9930494 }, + { "lat": 40.8749019, "lon": -73.9932165 }, + { "lat": 40.8748495, "lon": -73.9933849 }, + { "lat": 40.8747955, "lon": -73.9935512 }, + { "lat": 40.8747278, "lon": -73.9937553 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508930, + "bounds": { + "minlat": 40.8749745, + "minlon": -73.9899657, + "maxlat": 40.8757279, + "maxlon": -73.9846807 + }, + "nodes": [ + 298772638, + 298772640, + 10940529094, + 298777683, + 10940529097, + 298772644, + 10940529084, + 298775644, + 10940538208, + 298772649, + 10940529098, + 298772651, + 10940529088, + 298772653, + 10940529099, + 298772827, + 10940529101, + 298772657, + 10940538210, + 298772409, + 10940538205, + 298772411, + 10940529085, + 298772414, + 10940529093, + 298772417, + 10940538206, + 10940529104, + 298772419, + 10940529090, + 298772294 + ], + "geometry": [ + { "lat": 40.8755763, "lon": -73.9899657 }, + { "lat": 40.8756094, "lon": -73.9897540 }, + { "lat": 40.8756340, "lon": -73.9895843 }, + { "lat": 40.8756590, "lon": -73.9893979 }, + { "lat": 40.8756785, "lon": -73.9892291 }, + { "lat": 40.8756950, "lon": -73.9890528 }, + { "lat": 40.8757087, "lon": -73.9888630 }, + { "lat": 40.8757179, "lon": -73.9886919 }, + { "lat": 40.8757252, "lon": -73.9885012 }, + { "lat": 40.8757279, "lon": -73.9883271 }, + { "lat": 40.8757256, "lon": -73.9881353 }, + { "lat": 40.8757204, "lon": -73.9879674 }, + { "lat": 40.8757123, "lon": -73.9877872 }, + { "lat": 40.8757030, "lon": -73.9876105 }, + { "lat": 40.8756863, "lon": -73.9874126 }, + { "lat": 40.8756684, "lon": -73.9872489 }, + { "lat": 40.8756466, "lon": -73.9870660 }, + { "lat": 40.8756188, "lon": -73.9868797 }, + { "lat": 40.8755867, "lon": -73.9866913 }, + { "lat": 40.8755539, "lon": -73.9865143 }, + { "lat": 40.8755186, "lon": -73.9863412 }, + { "lat": 40.8754803, "lon": -73.9861738 }, + { "lat": 40.8754364, "lon": -73.9859965 }, + { "lat": 40.8753886, "lon": -73.9858199 }, + { "lat": 40.8753393, "lon": -73.9856524 }, + { "lat": 40.8752863, "lon": -73.9854826 }, + { "lat": 40.8752305, "lon": -73.9853175 }, + { "lat": 40.8751702, "lon": -73.9851515 }, + { "lat": 40.8751091, "lon": -73.9849925 }, + { "lat": 40.8750422, "lon": -73.9848309 }, + { "lat": 40.8749745, "lon": -73.9846807 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508933, + "bounds": { + "minlat": 40.8748289, + "minlon": -73.9899340, + "maxlat": 40.8756127, + "maxlon": -73.9847621 + }, + "nodes": [ + 298774431, + 10940529103, + 298774427, + 298774751, + 10940538207, + 298774419, + 10940529089, + 298774415, + 298774410, + 10940529092, + 298774406, + 298774401, + 298775230, + 10940529096, + 298774753, + 10940529087, + 298775937, + 10940529095, + 298774756, + 10940529102, + 298774757, + 10940529100, + 10940529091, + 298774379, + 10940529086, + 298774099 + ], + "geometry": [ + { "lat": 40.8754631, "lon": -73.9899340 }, + { "lat": 40.8755050, "lon": -73.9896667 }, + { "lat": 40.8755352, "lon": -73.9894477 }, + { "lat": 40.8755604, "lon": -73.9892284 }, + { "lat": 40.8755826, "lon": -73.9889992 }, + { "lat": 40.8755989, "lon": -73.9887736 }, + { "lat": 40.8756084, "lon": -73.9885179 }, + { "lat": 40.8756127, "lon": -73.9882899 }, + { "lat": 40.8756081, "lon": -73.9880672 }, + { "lat": 40.8755989, "lon": -73.9878248 }, + { "lat": 40.8755824, "lon": -73.9875695 }, + { "lat": 40.8755570, "lon": -73.9873024 }, + { "lat": 40.8755210, "lon": -73.9870122 }, + { "lat": 40.8754837, "lon": -73.9867957 }, + { "lat": 40.8754415, "lon": -73.9865657 }, + { "lat": 40.8754022, "lon": -73.9863916 }, + { "lat": 40.8753686, "lon": -73.9862518 }, + { "lat": 40.8753234, "lon": -73.9860819 }, + { "lat": 40.8752719, "lon": -73.9859083 }, + { "lat": 40.8752209, "lon": -73.9857489 }, + { "lat": 40.8751607, "lon": -73.9855750 }, + { "lat": 40.8750999, "lon": -73.9854103 }, + { "lat": 40.8750392, "lon": -73.9852529 }, + { "lat": 40.8749737, "lon": -73.9850928 }, + { "lat": 40.8749042, "lon": -73.9849311 }, + { "lat": 40.8748289, "lon": -73.9847621 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508934, + "bounds": { + "minlat": 40.8803532, + "minlon": -73.9842768, + "maxlat": 40.8808887, + "maxlon": -73.9833310 + }, + "nodes": [ + 298940220, + 298939919 + ], + "geometry": [ + { "lat": 40.8803532, "lon": -73.9833310 }, + { "lat": 40.8808887, "lon": -73.9842768 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "bridge": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508938, + "bounds": { + "minlat": 40.8714480, + "minlon": -73.9787008, + "maxlat": 40.8734159, + "maxlon": -73.9743785 + }, + "nodes": [ + 103134255, + 530806016, + 103134257, + 392522192, + 103125899, + 103134258, + 530806007, + 103134260, + 103134262, + 103134264, + 103134266, + 103134268, + 103134270, + 103134272, + 103134273, + 103134275, + 103134277, + 103134279, + 392522323, + 103134281, + 392522295, + 103134283, + 392522185, + 392522186, + 103134285, + 8310654901, + 103134287 + ], + "geometry": [ + { "lat": 40.8734159, "lon": -73.9787008 }, + { "lat": 40.8733422, "lon": -73.9785596 }, + { "lat": 40.8732874, "lon": -73.9784114 }, + { "lat": 40.8732654, "lon": -73.9782140 }, + { "lat": 40.8732825, "lon": -73.9779106 }, + { "lat": 40.8733078, "lon": -73.9775070 }, + { "lat": 40.8732688, "lon": -73.9772894 }, + { "lat": 40.8731874, "lon": -73.9770822 }, + { "lat": 40.8729797, "lon": -73.9768161 }, + { "lat": 40.8728629, "lon": -73.9767646 }, + { "lat": 40.8727590, "lon": -73.9767389 }, + { "lat": 40.8723372, "lon": -73.9766530 }, + { "lat": 40.8722268, "lon": -73.9766359 }, + { "lat": 40.8721425, "lon": -73.9766101 }, + { "lat": 40.8720711, "lon": -73.9766015 }, + { "lat": 40.8716232, "lon": -73.9765329 }, + { "lat": 40.8714999, "lon": -73.9763698 }, + { "lat": 40.8714480, "lon": -73.9762668 }, + { "lat": 40.8714480, "lon": -73.9760608 }, + { "lat": 40.8715064, "lon": -73.9758548 }, + { "lat": 40.8715973, "lon": -73.9757346 }, + { "lat": 40.8718634, "lon": -73.9755887 }, + { "lat": 40.8722268, "lon": -73.9753055 }, + { "lat": 40.8723696, "lon": -73.9749879 }, + { "lat": 40.8724151, "lon": -73.9747218 }, + { "lat": 40.8723691, "lon": -73.9746059 }, + { "lat": 40.8722788, "lon": -73.9743785 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lanes": "2", + "name": "Cross Creek Drive", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cross Creek", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508939, + "bounds": { + "minlat": 40.8722095, + "minlon": -73.9804344, + "maxlat": 40.8723600, + "maxlon": -73.9802483 + }, + "nodes": [ + 298771172, + 298771474 + ], + "geometry": [ + { "lat": 40.8722095, "lon": -73.9802483 }, + { "lat": 40.8723600, "lon": -73.9804344 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508940, + "bounds": { + "minlat": 40.8723304, + "minlon": -73.9803479, + "maxlat": 40.8724805, + "maxlon": -73.9801611 + }, + "nodes": [ + 298768847, + 298768848 + ], + "geometry": [ + { "lat": 40.8723304, "lon": -73.9801611 }, + { "lat": 40.8724805, "lon": -73.9803479 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42508941, + "bounds": { + "minlat": 40.8734159, + "minlon": -73.9788054, + "maxlat": 40.8735061, + "maxlon": -73.9787008 + }, + "nodes": [ + 530806014, + 103134255 + ], + "geometry": [ + { "lat": 40.8735061, "lon": -73.9788054 }, + { "lat": 40.8734159, "lon": -73.9787008 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Cross Creek Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cross Creek", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508945, + "bounds": { + "minlat": 40.8731254, + "minlon": -73.9730775, + "maxlat": 40.8738373, + "maxlon": -73.9727535 + }, + "nodes": [ + 530806366, + 103107950 + ], + "geometry": [ + { "lat": 40.8738373, "lon": -73.9727535 }, + { "lat": 40.8731254, "lon": -73.9730775 } + ], + "tags": { + "bridge": "yes", + "highway": "tertiary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Jones Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jones", + "tiger:name_type": "Rd", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 42508947, + "bounds": { + "minlat": 40.8787702, + "minlon": -73.9811506, + "maxlat": 40.8789873, + "maxlon": -73.9807670 + }, + "nodes": [ + 103100540, + 530806419 + ], + "geometry": [ + { "lat": 40.8789873, "lon": -73.9811506 }, + { "lat": 40.8787702, "lon": -73.9807670 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "bridge": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "layer": "1", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508948, + "bounds": { + "minlat": 40.8778181, + "minlon": -73.9796023, + "maxlat": 40.8781104, + "maxlon": -73.9790869 + }, + "nodes": [ + 3655086224, + 765596337 + ], + "geometry": [ + { "lat": 40.8781104, "lon": -73.9796023 }, + { "lat": 40.8778181, "lon": -73.9790869 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508949, + "bounds": { + "minlat": 40.8767383, + "minlon": -73.9771884, + "maxlat": 40.8768594, + "maxlon": -73.9769741 + }, + "nodes": [ + 530806396, + 298940214 + ], + "geometry": [ + { "lat": 40.8767383, "lon": -73.9769741 }, + { "lat": 40.8768594, "lon": -73.9771884 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "bridge": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508952, + "bounds": { + "minlat": 40.8788806, + "minlon": -73.9810380, + "maxlat": 40.8790554, + "maxlon": -73.9807262 + }, + "nodes": [ + 530806410, + 298940218 + ], + "geometry": [ + { "lat": 40.8788806, "lon": -73.9807262 }, + { "lat": 40.8790554, "lon": -73.9810380 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "bridge": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "layer": "1", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 42508954, + "bounds": { + "minlat": 40.8751407, + "minlon": -73.9756019, + "maxlat": 40.8752114, + "maxlon": -73.9755970 + }, + "nodes": [ + 530806587, + 103105415 + ], + "geometry": [ + { "lat": 40.8751407, "lon": -73.9756019 }, + { "lat": 40.8752114, "lon": -73.9755970 } + ], + "tags": { + "highway": "residential", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070828", + "tiger:tlid": "64390005", + "tiger:upload_uuid": "bulk_upload.pl-5b68207f-8509-44f2-bf52-94cbb5c7f59c" + } +}, +{ + "type": "way", + "id": 42779797, + "bounds": { + "minlat": 40.8316545, + "minlon": -74.0224411, + "maxlat": 40.8388667, + "maxlon": -74.0184381 + }, + "nodes": [ + 10936740621, + 10936706408, + 10936639776, + 294997624, + 10936639794, + 10936639784, + 294998021, + 10936639787, + 294997643, + 10936639785, + 10936641406, + 294997644, + 10936687696, + 294997628, + 10936687698, + 10936639786, + 10936687704, + 294998022, + 10936706407, + 294997630, + 8851772502, + 10936706406, + 294997631, + 10936706409, + 294997632, + 10936639771, + 10936641405, + 13788625554, + 13788625553, + 13788625552, + 13788625551, + 13788625550, + 13788625549, + 10936639788, + 13788625544, + 13788625548, + 13788625547, + 13788625546, + 13788625545, + 12014207056, + 13751654235 + ], + "geometry": [ + { "lat": 40.8316545, "lon": -74.0224411 }, + { "lat": 40.8331570, "lon": -74.0212323 }, + { "lat": 40.8332760, "lon": -74.0211393 }, + { "lat": 40.8334200, "lon": -74.0210274 }, + { "lat": 40.8335460, "lon": -74.0209299 }, + { "lat": 40.8336618, "lon": -74.0208423 }, + { "lat": 40.8337564, "lon": -74.0207724 }, + { "lat": 40.8338798, "lon": -74.0206837 }, + { "lat": 40.8339965, "lon": -74.0206029 }, + { "lat": 40.8341392, "lon": -74.0205071 }, + { "lat": 40.8342592, "lon": -74.0204288 }, + { "lat": 40.8343825, "lon": -74.0203520 }, + { "lat": 40.8345063, "lon": -74.0202762 }, + { "lat": 40.8346345, "lon": -74.0202005 }, + { "lat": 40.8347576, "lon": -74.0201316 }, + { "lat": 40.8348923, "lon": -74.0200603 }, + { "lat": 40.8350213, "lon": -74.0199918 }, + { "lat": 40.8351493, "lon": -74.0199271 }, + { "lat": 40.8352779, "lon": -74.0198631 }, + { "lat": 40.8354142, "lon": -74.0197989 }, + { "lat": 40.8354763, "lon": -74.0197712 }, + { "lat": 40.8355464, "lon": -74.0197399 }, + { "lat": 40.8356743, "lon": -74.0196851 }, + { "lat": 40.8358044, "lon": -74.0196316 }, + { "lat": 40.8359438, "lon": -74.0195759 }, + { "lat": 40.8362098, "lon": -74.0194716 }, + { "lat": 40.8364738, "lon": -74.0193712 }, + { "lat": 40.8366099, "lon": -74.0193191 }, + { "lat": 40.8367400, "lon": -74.0192697 }, + { "lat": 40.8368727, "lon": -74.0192190 }, + { "lat": 40.8370224, "lon": -74.0191630 }, + { "lat": 40.8371363, "lon": -74.0191195 }, + { "lat": 40.8372631, "lon": -74.0190702 }, + { "lat": 40.8374039, "lon": -74.0190163 }, + { "lat": 40.8375308, "lon": -74.0189677 }, + { "lat": 40.8377288, "lon": -74.0188932 }, + { "lat": 40.8379169, "lon": -74.0188188 }, + { "lat": 40.8381100, "lon": -74.0187392 }, + { "lat": 40.8383311, "lon": -74.0186438 }, + { "lat": 40.8387099, "lon": -74.0184842 }, + { "lat": 40.8388667, "lon": -74.0184381 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination": "George Washington Bridge", + "destination:ref": "I 95 North;NJTP North;US 46 Jct", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Eastern Spur", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42786502, + "bounds": { + "minlat": 40.7126966, + "minlon": -73.9987898, + "maxlat": 40.7132575, + "maxlon": -73.9982206 + }, + "nodes": [ + 7477081377, + 8827539965, + 9925342284, + 5378294676, + 4158807592 + ], + "geometry": [ + { "lat": 40.7126966, "lon": -73.9987898 }, + { "lat": 40.7130887, "lon": -73.9983900 }, + { "lat": 40.7131842, "lon": -73.9982948 }, + { "lat": 40.7131878, "lon": -73.9982919 }, + { "lat": 40.7132575, "lon": -73.9982206 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Saint James Place", + "name:etymology:wikidata": "Q7588396", + "name:ko": "세인트 제임스 플레이스", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 08:00-18:00)", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 42876895, + "bounds": { + "minlat": 40.8744269, + "minlon": -73.9941637, + "maxlat": 40.8745821, + "maxlon": -73.9937321 + }, + "nodes": [ + 298775638, + 10940618931, + 10940618930, + 298775216 + ], + "geometry": [ + { "lat": 40.8744269, "lon": -73.9941637 }, + { "lat": 40.8744849, "lon": -73.9940044 }, + { "lat": 40.8745431, "lon": -73.9938417 }, + { "lat": 40.8745821, "lon": -73.9937321 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42876896, + "bounds": { + "minlat": 40.8745784, + "minlon": -73.9941897, + "maxlat": 40.8747278, + "maxlon": -73.9937553 + }, + "nodes": [ + 298777723, + 10940458753, + 10940458758, + 298775484 + ], + "geometry": [ + { "lat": 40.8747278, "lon": -73.9937553 }, + { "lat": 40.8747182, "lon": -73.9937822 }, + { "lat": 40.8746114, "lon": -73.9940957 }, + { "lat": 40.8745784, "lon": -73.9941897 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42876897, + "bounds": { + "minlat": 40.8702746, + "minlon": -74.0015571, + "maxlat": 40.8745784, + "maxlon": -73.9941897 + }, + "nodes": [ + 298775484, + 10940458750, + 298775485, + 10940458752, + 298777726, + 10940458754, + 298604975, + 298604976, + 10940458751, + 298604684, + 298604685, + 10940458757, + 13759580194, + 298605026, + 13759580193, + 13759580192, + 13759580191, + 13759580190, + 13759580189, + 298604688, + 13759580188, + 10940444132, + 298606130, + 13759580187, + 10940444147, + 13759580186, + 10940444140, + 13759580185, + 298604979, + 13759580184, + 10940444126, + 13759580183, + 298604980, + 13759580182, + 10940444144, + 13759580181, + 298604981, + 13759580180, + 10940444136, + 298606098, + 13759580179, + 13759580178, + 8898146152 + ], + "geometry": [ + { "lat": 40.8745784, "lon": -73.9941897 }, + { "lat": 40.8744998, "lon": -73.9944098 }, + { "lat": 40.8743859, "lon": -73.9947174 }, + { "lat": 40.8742654, "lon": -73.9950296 }, + { "lat": 40.8741428, "lon": -73.9953326 }, + { "lat": 40.8740154, "lon": -73.9956332 }, + { "lat": 40.8738824, "lon": -73.9959353 }, + { "lat": 40.8737467, "lon": -73.9962331 }, + { "lat": 40.8736086, "lon": -73.9965251 }, + { "lat": 40.8734640, "lon": -73.9968209 }, + { "lat": 40.8733167, "lon": -73.9971102 }, + { "lat": 40.8731697, "lon": -73.9973906 }, + { "lat": 40.8730840, "lon": -73.9975526 }, + { "lat": 40.8730000, "lon": -73.9977066 }, + { "lat": 40.8729238, "lon": -73.9978440 }, + { "lat": 40.8728411, "lon": -73.9979887 }, + { "lat": 40.8727558, "lon": -73.9981381 }, + { "lat": 40.8726714, "lon": -73.9982798 }, + { "lat": 40.8725863, "lon": -73.9984218 }, + { "lat": 40.8724972, "lon": -73.9985669 }, + { "lat": 40.8724127, "lon": -73.9987030 }, + { "lat": 40.8723237, "lon": -73.9988460 }, + { "lat": 40.8722348, "lon": -73.9989859 }, + { "lat": 40.8721455, "lon": -73.9991237 }, + { "lat": 40.8720519, "lon": -73.9992643 }, + { "lat": 40.8719653, "lon": -73.9993934 }, + { "lat": 40.8718692, "lon": -73.9995335 }, + { "lat": 40.8717764, "lon": -73.9996672 }, + { "lat": 40.8716835, "lon": -73.9997979 }, + { "lat": 40.8715881, "lon": -73.9999300 }, + { "lat": 40.8714891, "lon": -74.0000651 }, + { "lat": 40.8713934, "lon": -74.0001915 }, + { "lat": 40.8712952, "lon": -74.0003213 }, + { "lat": 40.8711960, "lon": -74.0004497 }, + { "lat": 40.8710970, "lon": -74.0005764 }, + { "lat": 40.8709989, "lon": -74.0006991 }, + { "lat": 40.8708968, "lon": -74.0008257 }, + { "lat": 40.8707941, "lon": -74.0009500 }, + { "lat": 40.8706926, "lon": -74.0010713 }, + { "lat": 40.8705930, "lon": -74.0011880 }, + { "lat": 40.8704852, "lon": -74.0013136 }, + { "lat": 40.8703805, "lon": -74.0014346 }, + { "lat": 40.8702746, "lon": -74.0015571 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42876898, + "bounds": { + "minlat": 40.8747359, + "minlon": -73.9942140, + "maxlat": 40.8748822, + "maxlon": -73.9937801 + }, + "nodes": [ + 298771431, + 10940246466, + 10940262019, + 298775359 + ], + "geometry": [ + { "lat": 40.8748822, "lon": -73.9937801 }, + { "lat": 40.8748613, "lon": -73.9938436 }, + { "lat": 40.8747952, "lon": -73.9940445 }, + { "lat": 40.8747359, "lon": -73.9942140 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42876899, + "bounds": { + "minlat": 40.8720726, + "minlon": -73.9995283, + "maxlat": 40.8747359, + "maxlon": -73.9942140 + }, + "nodes": [ + 298775359, + 10940234402, + 298777789, + 298775361, + 10940262007, + 298604658, + 8954758600, + 10940234404, + 298605031, + 298604661, + 10940262038, + 298605032, + 10940262016, + 298604663, + 298605033, + 10940262023, + 298604832, + 10940262011, + 13753819041 + ], + "geometry": [ + { "lat": 40.8747359, "lon": -73.9942140 }, + { "lat": 40.8746349, "lon": -73.9944935 }, + { "lat": 40.8745188, "lon": -73.9948086 }, + { "lat": 40.8743971, "lon": -73.9951260 }, + { "lat": 40.8742662, "lon": -73.9954480 }, + { "lat": 40.8741336, "lon": -73.9957620 }, + { "lat": 40.8739975, "lon": -73.9960707 }, + { "lat": 40.8738582, "lon": -73.9963752 }, + { "lat": 40.8737138, "lon": -73.9966781 }, + { "lat": 40.8735666, "lon": -73.9969771 }, + { "lat": 40.8734162, "lon": -73.9972708 }, + { "lat": 40.8732571, "lon": -73.9975736 }, + { "lat": 40.8730946, "lon": -73.9978695 }, + { "lat": 40.8729348, "lon": -73.9981513 }, + { "lat": 40.8727780, "lon": -73.9984202 }, + { "lat": 40.8726042, "lon": -73.9987066 }, + { "lat": 40.8724331, "lon": -73.9989801 }, + { "lat": 40.8722573, "lon": -73.9992523 }, + { "lat": 40.8720726, "lon": -73.9995283 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "none|none|Hackensack;Paterson;Leonia;Teaneck", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 42876900, + "bounds": { + "minlat": 40.8742732, + "minlon": -73.9941448, + "maxlat": 40.8744380, + "maxlon": -73.9937068 + }, + "nodes": [ + 298777605, + 10940618928, + 10940618926, + 298774467 + ], + "geometry": [ + { "lat": 40.8742732, "lon": -73.9941448 }, + { "lat": 40.8743126, "lon": -73.9940439 }, + { "lat": 40.8743763, "lon": -73.9938729 }, + { "lat": 40.8744380, "lon": -73.9937068 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42876901, + "bounds": { + "minlat": 40.8744380, + "minlon": -73.9937068, + "maxlat": 40.8754631, + "maxlon": -73.9899340 + }, + "nodes": [ + 298774467, + 10940618932, + 13762277580, + 298775912, + 13762277581, + 298774746, + 13762277582, + 298774747, + 13762277583, + 298775913, + 13762277584, + 10940657593, + 13762277585, + 298774750, + 13762277586, + 298774443, + 13762277587, + 298774439, + 13762277588, + 298774435, + 13762277589, + 10940657595, + 298774431 + ], + "geometry": [ + { "lat": 40.8744380, "lon": -73.9937068 }, + { "lat": 40.8744962, "lon": -73.9935458 }, + { "lat": 40.8745530, "lon": -73.9933865 }, + { "lat": 40.8746103, "lon": -73.9932213 }, + { "lat": 40.8746663, "lon": -73.9930589 }, + { "lat": 40.8747226, "lon": -73.9928960 }, + { "lat": 40.8747788, "lon": -73.9927277 }, + { "lat": 40.8748329, "lon": -73.9925607 }, + { "lat": 40.8748857, "lon": -73.9923933 }, + { "lat": 40.8749385, "lon": -73.9922219 }, + { "lat": 40.8749895, "lon": -73.9920512 }, + { "lat": 40.8750379, "lon": -73.9918826 }, + { "lat": 40.8750854, "lon": -73.9917130 }, + { "lat": 40.8751302, "lon": -73.9915420 }, + { "lat": 40.8751733, "lon": -73.9913694 }, + { "lat": 40.8752150, "lon": -73.9911948 }, + { "lat": 40.8752547, "lon": -73.9910228 }, + { "lat": 40.8752932, "lon": -73.9908463 }, + { "lat": 40.8753296, "lon": -73.9906714 }, + { "lat": 40.8753643, "lon": -73.9904982 }, + { "lat": 40.8753968, "lon": -73.9903249 }, + { "lat": 40.8754283, "lon": -73.9901483 }, + { "lat": 40.8754631, "lon": -73.9899340 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42876902, + "bounds": { + "minlat": 40.8745821, + "minlon": -73.9937321, + "maxlat": 40.8755763, + "maxlon": -73.9899657 + }, + "nodes": [ + 298775216, + 10940618929, + 13758734060, + 298772811, + 13758734061, + 10940672839, + 298772813, + 13758734062, + 298775218, + 13758734063, + 10940672836, + 13758734064, + 298772815, + 10940672840, + 13758734065, + 298772816, + 13758734066, + 298772634, + 13758734067, + 10940672835, + 13758734068, + 298775219, + 298772638 + ], + "geometry": [ + { "lat": 40.8745821, "lon": -73.9937321 }, + { "lat": 40.8746600, "lon": -73.9935070 }, + { "lat": 40.8747130, "lon": -73.9933479 }, + { "lat": 40.8747695, "lon": -73.9931794 }, + { "lat": 40.8748226, "lon": -73.9930151 }, + { "lat": 40.8748734, "lon": -73.9928556 }, + { "lat": 40.8749270, "lon": -73.9926793 }, + { "lat": 40.8749781, "lon": -73.9925119 }, + { "lat": 40.8750262, "lon": -73.9923510 }, + { "lat": 40.8750749, "lon": -73.9921812 }, + { "lat": 40.8751243, "lon": -73.9920057 }, + { "lat": 40.8751706, "lon": -73.9918369 }, + { "lat": 40.8752158, "lon": -73.9916673 }, + { "lat": 40.8752605, "lon": -73.9914918 }, + { "lat": 40.8753012, "lon": -73.9913274 }, + { "lat": 40.8753420, "lon": -73.9911548 }, + { "lat": 40.8753810, "lon": -73.9909802 }, + { "lat": 40.8754177, "lon": -73.9908170 }, + { "lat": 40.8754550, "lon": -73.9906388 }, + { "lat": 40.8754902, "lon": -73.9904610 }, + { "lat": 40.8755223, "lon": -73.9902912 }, + { "lat": 40.8755520, "lon": -73.9901192 }, + { "lat": 40.8755763, "lon": -73.9899657 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 42876908, + "bounds": { + "minlat": 40.8353165, + "minlon": -74.0201592, + "maxlat": 40.8388778, + "maxlon": -74.0184798 + }, + "nodes": [ + 291761917, + 10927731228, + 10927731225, + 291761920, + 10927731281, + 10927731216, + 291761886, + 10927731238, + 10927731274, + 10927731215, + 10927731213, + 10927713102, + 10927731273, + 291761888, + 13788625541, + 13788625542, + 13788625543, + 10927731268, + 12014207057, + 13751654236 + ], + "geometry": [ + { "lat": 40.8353165, "lon": -74.0201592 }, + { "lat": 40.8354395, "lon": -74.0200858 }, + { "lat": 40.8355641, "lon": -74.0200163 }, + { "lat": 40.8356923, "lon": -74.0199447 }, + { "lat": 40.8358202, "lon": -74.0198769 }, + { "lat": 40.8359455, "lon": -74.0198149 }, + { "lat": 40.8360838, "lon": -74.0197484 }, + { "lat": 40.8362103, "lon": -74.0196885 }, + { "lat": 40.8363390, "lon": -74.0196293 }, + { "lat": 40.8363974, "lon": -74.0196035 }, + { "lat": 40.8364856, "lon": -74.0195644 }, + { "lat": 40.8366179, "lon": -74.0195053 }, + { "lat": 40.8367559, "lon": -74.0194448 }, + { "lat": 40.8371320, "lon": -74.0192781 }, + { "lat": 40.8372695, "lon": -74.0192144 }, + { "lat": 40.8375301, "lon": -74.0190990 }, + { "lat": 40.8376775, "lon": -74.0190350 }, + { "lat": 40.8377968, "lon": -74.0189818 }, + { "lat": 40.8387310, "lon": -74.0185663 }, + { "lat": 40.8388778, "lon": -74.0184798 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095W", + "bicycle": "no", + "destination": "George Washington Bridge", + "destination:ref": "I 95 North;NJTP North;US 46 Jct", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Western Spur", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "I-95", + "tiger:name_base_1": "New Jersey", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 44164412, + "bounds": { + "minlat": 40.8416786, + "minlon": -73.9392999, + "maxlat": 40.8418306, + "maxlon": -73.9392469 + }, + "nodes": [ + 42428980, + 9566927262, + 2541754688 + ], + "geometry": [ + { "lat": 40.8416786, "lon": -73.9392999 }, + { "lat": 40.8417395, "lon": -73.9392786 }, + { "lat": 40.8418306, "lon": -73.9392469 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 44164413, + "bounds": { + "minlat": 40.7794990, + "minlon": -73.9816284, + "maxlat": 40.7838080, + "maxlon": -73.9798812 + }, + "nodes": [ + 1061531757, + 5115916406, + 11655743728, + 1061531500, + 8727756039, + 11655721363, + 1061531634, + 8727756105, + 8727760421, + 1061531566, + 8727760417, + 8709392034, + 1061531695, + 2047267755, + 2047267757, + 8709392053, + 1061531803, + 2240269257, + 8709392049, + 11655721341, + 1061531454 + ], + "geometry": [ + { "lat": 40.7794990, "lon": -73.9816284 }, + { "lat": 40.7795736, "lon": -73.9816068 }, + { "lat": 40.7801804, "lon": -73.9814398 }, + { "lat": 40.7802483, "lon": -73.9814211 }, + { "lat": 40.7803143, "lon": -73.9814000 }, + { "lat": 40.7809244, "lon": -73.9812303 }, + { "lat": 40.7809928, "lon": -73.9812112 }, + { "lat": 40.7810584, "lon": -73.9811910 }, + { "lat": 40.7816571, "lon": -73.9810047 }, + { "lat": 40.7817194, "lon": -73.9809824 }, + { "lat": 40.7817907, "lon": -73.9809560 }, + { "lat": 40.7823790, "lon": -73.9807525 }, + { "lat": 40.7824512, "lon": -73.9807232 }, + { "lat": 40.7825123, "lon": -73.9807026 }, + { "lat": 40.7826598, "lon": -73.9806303 }, + { "lat": 40.7830717, "lon": -73.9804202 }, + { "lat": 40.7831278, "lon": -73.9803916 }, + { "lat": 40.7831756, "lon": -73.9803635 }, + { "lat": 40.7831913, "lon": -73.9803514 }, + { "lat": 40.7837109, "lon": -73.9799552 }, + { "lat": 40.7838080, "lon": -73.9798812 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 44164416, + "bounds": { + "minlat": 40.7970992, + "minlon": -73.9523960, + "maxlat": 40.7982188, + "maxlon": -73.9497360 + }, + "nodes": [ + 595703226, + 7123873121, + 2058919913, + 2058920014, + 42426374 + ], + "geometry": [ + { "lat": 40.7970992, "lon": -73.9497360 }, + { "lat": 40.7971006, "lon": -73.9497392 }, + { "lat": 40.7975954, "lon": -73.9509130 }, + { "lat": 40.7981802, "lon": -73.9523037 }, + { "lat": 40.7982188, "lon": -73.9523960 } + ], + "tags": { + "alt_name": "Central Park North", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "West 110th Street", + "old_name": "Cathedral Parkway", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 44164419, + "bounds": { + "minlat": 40.8629279, + "minlon": -73.9332782, + "maxlat": 40.8635159, + "maxlon": -73.9317811 + }, + "nodes": [ + 42454893, + 42454910, + 42454922, + 42454928, + 42454942, + 42454950, + 42454961, + 42454970, + 7246038815, + 302095403 + ], + "geometry": [ + { "lat": 40.8635159, "lon": -73.9317811 }, + { "lat": 40.8631388, "lon": -73.9320982 }, + { "lat": 40.8630648, "lon": -73.9321680 }, + { "lat": 40.8630131, "lon": -73.9322404 }, + { "lat": 40.8629664, "lon": -73.9323222 }, + { "lat": 40.8629421, "lon": -73.9324348 }, + { "lat": 40.8629279, "lon": -73.9325327 }, + { "lat": 40.8629299, "lon": -73.9326239 }, + { "lat": 40.8629362, "lon": -73.9326759 }, + { "lat": 40.8630014, "lon": -73.9332782 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "residential", + "lanes": "2", + "name": "Fort Tryon Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Ft Tryon", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 44164429, + "bounds": { + "minlat": 40.8630799, + "minlon": -73.9326834, + "maxlat": 40.8632904, + "maxlon": -73.9325365 + }, + "nodes": [ + 42434559, + 42434556, + 374486503 + ], + "geometry": [ + { "lat": 40.8632904, "lon": -73.9325365 }, + { "lat": 40.8631660, "lon": -73.9326292 }, + { "lat": 40.8630799, "lon": -73.9326834 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "lanes": "2", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 44165026, + "bounds": { + "minlat": 40.7463935, + "minlon": -73.9817976, + "maxlat": 40.7469645, + "maxlon": -73.9814458 + }, + "nodes": [ + 3786901738, + 12181374922, + 9894979425, + 12181374921, + 9894979424, + 3786901730, + 595142429 + ], + "geometry": [ + { "lat": 40.7463935, "lon": -73.9817611 }, + { "lat": 40.7464213, "lon": -73.9817883 }, + { "lat": 40.7464354, "lon": -73.9817953 }, + { "lat": 40.7464518, "lon": -73.9817976 }, + { "lat": 40.7464678, "lon": -73.9817965 }, + { "lat": 40.7464870, "lon": -73.9817879 }, + { "lat": 40.7469645, "lon": -73.9814458 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue Tunnel", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q2628830", + "wikipedia": "en:Park Avenue Tunnel (roadway)" + } +}, +{ + "type": "way", + "id": 44165027, + "bounds": { + "minlat": 40.7515747, + "minlon": -73.9782486, + "maxlat": 40.7520942, + "maxlon": -73.9778799 + }, + "nodes": [ + 11506834531, + 11506834591, + 11506834547, + 11506834548, + 11506834549, + 11506834550, + 11506834551, + 11506834546, + 11506834545, + 11506834544, + 11506834508 + ], + "geometry": [ + { "lat": 40.7520942, "lon": -73.9778799 }, + { "lat": 40.7520265, "lon": -73.9779216 }, + { "lat": 40.7519462, "lon": -73.9779749 }, + { "lat": 40.7519140, "lon": -73.9780026 }, + { "lat": 40.7518750, "lon": -73.9780432 }, + { "lat": 40.7518391, "lon": -73.9780827 }, + { "lat": 40.7518006, "lon": -73.9781183 }, + { "lat": 40.7517607, "lon": -73.9781495 }, + { "lat": 40.7517096, "lon": -73.9781813 }, + { "lat": 40.7516504, "lon": -73.9782122 }, + { "lat": 40.7515747, "lon": -73.9782486 } + ], + "tags": { + "alt_name": "Pershing Square West Plaza", + "check_date": "2025-03-07", + "construction": "pedestrian", + "covered": "no", + "foot": "yes", + "highway": "pedestrian", + "incline": "up", + "lit": "yes", + "motor_vehicle": "no", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "paving_stones", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 44165029, + "bounds": { + "minlat": 40.7503073, + "minlon": -73.9790027, + "maxlat": 40.7508474, + "maxlon": -73.9785793 + }, + "nodes": [ + 561042196, + 12181374954, + 3786901750, + 561042199 + ], + "geometry": [ + { "lat": 40.7503073, "lon": -73.9790027 }, + { "lat": 40.7507338, "lon": -73.9786706 }, + { "lat": 40.7507752, "lon": -73.9786371 }, + { "lat": 40.7508474, "lon": -73.9785793 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxheight": "8'11\"", + "maxspeed": "25 mph", + "name": "Park Avenue Tunnel", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q2628830", + "wikipedia": "en:Park Avenue Tunnel (roadway)" + } +}, +{ + "type": "way", + "id": 44165030, + "bounds": { + "minlat": 40.7505450, + "minlon": -73.9786965, + "maxlat": 40.7508474, + "maxlon": -73.9785793 + }, + "nodes": [ + 561042197, + 13299994624, + 12181374955, + 3786901751, + 561042199 + ], + "geometry": [ + { "lat": 40.7505450, "lon": -73.9786965 }, + { "lat": 40.7506414, "lon": -73.9786564 }, + { "lat": 40.7507153, "lon": -73.9786256 }, + { "lat": 40.7507642, "lon": -73.9786116 }, + { "lat": 40.7508474, "lon": -73.9785793 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "turn:lanes": "through", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 44165033, + "bounds": { + "minlat": 40.7521643, + "minlon": -73.9769219, + "maxlat": 40.7536458, + "maxlon": -73.9758503 + }, + "nodes": [ + 3842775636, + 100522735, + 9673654629, + 100522734, + 9140654138, + 3786902260 + ], + "geometry": [ + { "lat": 40.7521643, "lon": -73.9769219 }, + { "lat": 40.7521919, "lon": -73.9769016 }, + { "lat": 40.7528922, "lon": -73.9763926 }, + { "lat": 40.7534623, "lon": -73.9759828 }, + { "lat": 40.7535392, "lon": -73.9759262 }, + { "lat": 40.7536458, "lon": -73.9758503 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "primary", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q7137641", + "wikipedia": "en:Park Avenue Viaduct" + } +}, +{ + "type": "way", + "id": 44225575, + "bounds": { + "minlat": 40.7136952, + "minlon": -74.0139410, + "maxlat": 40.7137911, + "maxlon": -74.0137098 + }, + "nodes": [ + 373880031, + 42453395 + ], + "geometry": [ + { "lat": 40.7137911, "lon": -74.0139410 }, + { "lat": 40.7136952, "lon": -74.0137098 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Vesey Street", + "name:etymology:wikidata": "Q8019717", + "name:etymology:wikipedia": "en:William Vessey", + "name:ko": "비지 스트리트", + "name:ru": "Визи-стрит", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt", + "wikidata": "Q1592975", + "wikipedia": "en:Vesey Street" + } +}, +{ + "type": "way", + "id": 44225576, + "bounds": { + "minlat": 40.7121185, + "minlon": -74.0116480, + "maxlat": 40.7127804, + "maxlon": -74.0102008 + }, + "nodes": [ + 8840333842, + 8262936513, + 11301575808, + 10282972086, + 4578218122 + ], + "geometry": [ + { "lat": 40.7121185, "lon": -74.0102008 }, + { "lat": 40.7121376, "lon": -74.0102441 }, + { "lat": 40.7126826, "lon": -74.0114399 }, + { "lat": 40.7126991, "lon": -74.0114761 }, + { "lat": 40.7127804, "lon": -74.0116480 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "foot": "yes", + "hgv": "local", + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "motor_vehicle": "permit", + "motorcar": "no", + "name": "Vesey Street", + "name:etymology:wikidata": "Q8019717", + "name:etymology:wikipedia": "en:William Vessey", + "name:ko": "비지 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592975", + "wikipedia": "en:Vesey Street" + } +}, +{ + "type": "way", + "id": 44708554, + "bounds": { + "minlat": 40.8671462, + "minlon": -74.0017000, + "maxlat": 40.8680821, + "maxlon": -74.0000051 + }, + "nodes": [ + 775937799, + 10940838054, + 567269810, + 567269811, + 567269812, + 567269813, + 10940838057, + 567269814, + 10940838049, + 4472813109, + 10940838047, + 10940838084, + 10940838087, + 10940838063, + 567269815 + ], + "geometry": [ + { "lat": 40.8680821, "lon": -74.0017000 }, + { "lat": 40.8678056, "lon": -74.0013086 }, + { "lat": 40.8677327, "lon": -74.0012044 }, + { "lat": 40.8676603, "lon": -74.0010989 }, + { "lat": 40.8675887, "lon": -74.0009931 }, + { "lat": 40.8675218, "lon": -74.0008868 }, + { "lat": 40.8674561, "lon": -74.0007745 }, + { "lat": 40.8673945, "lon": -74.0006585 }, + { "lat": 40.8673322, "lon": -74.0005340 }, + { "lat": 40.8672822, "lon": -74.0004231 }, + { "lat": 40.8672322, "lon": -74.0003013 }, + { "lat": 40.8671852, "lon": -74.0001732 }, + { "lat": 40.8671698, "lon": -74.0001211 }, + { "lat": 40.8671554, "lon": -74.0000563 }, + { "lat": 40.8671462, "lon": -74.0000051 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "2", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 44708558, + "bounds": { + "minlat": 40.8716618, + "minlon": -74.0068299, + "maxlat": 40.8724470, + "maxlon": -74.0066588 + }, + "nodes": [ + 775937815, + 10940833236, + 567269862, + 567269863, + 10940833235, + 567269864, + 10940833261, + 10940833225, + 10940833220, + 567269865, + 103288403, + 103288401, + 10940833263, + 10940833260, + 567269867 + ], + "geometry": [ + { "lat": 40.8716618, "lon": -74.0068114 }, + { "lat": 40.8717132, "lon": -74.0067739 }, + { "lat": 40.8717594, "lon": -74.0067446 }, + { "lat": 40.8718230, "lon": -74.0067108 }, + { "lat": 40.8718728, "lon": -74.0066894 }, + { "lat": 40.8719241, "lon": -74.0066722 }, + { "lat": 40.8719774, "lon": -74.0066627 }, + { "lat": 40.8720354, "lon": -74.0066588 }, + { "lat": 40.8720895, "lon": -74.0066651 }, + { "lat": 40.8721417, "lon": -74.0066789 }, + { "lat": 40.8721926, "lon": -74.0066956 }, + { "lat": 40.8723550, "lon": -74.0067498 }, + { "lat": 40.8723892, "lon": -74.0067670 }, + { "lat": 40.8724171, "lon": -74.0067907 }, + { "lat": 40.8724470, "lon": -74.0068299 } + ], + "tags": { + "highway": "residential", + "name": "Frank W Burr Boulevard", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Frank W Burr", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 44708561, + "bounds": { + "minlat": 40.8671462, + "minlon": -74.0022094, + "maxlat": 40.8685451, + "maxlon": -74.0000051 + }, + "nodes": [ + 567269815, + 10940838059, + 10940838068, + 10940838062, + 10940838053, + 103247012, + 10940838085, + 205498637, + 10940838071, + 298781747, + 10940838064, + 10940838070, + 103247013, + 10940838065, + 10940838043, + 775937798 + ], + "geometry": [ + { "lat": 40.8671462, "lon": -74.0000051 }, + { "lat": 40.8671810, "lon": -74.0000434 }, + { "lat": 40.8672114, "lon": -74.0000881 }, + { "lat": 40.8672367, "lon": -74.0001372 }, + { "lat": 40.8672866, "lon": -74.0002628 }, + { "lat": 40.8673347, "lon": -74.0003761 }, + { "lat": 40.8673848, "lon": -74.0004890 }, + { "lat": 40.8674434, "lon": -74.0006077 }, + { "lat": 40.8675065, "lon": -74.0007262 }, + { "lat": 40.8675694, "lon": -74.0008350 }, + { "lat": 40.8676373, "lon": -74.0009418 }, + { "lat": 40.8677046, "lon": -74.0010418 }, + { "lat": 40.8677797, "lon": -74.0011498 }, + { "lat": 40.8683044, "lon": -74.0018922 }, + { "lat": 40.8683732, "lon": -74.0019848 }, + { "lat": 40.8685451, "lon": -74.0022094 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "1", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 44708567, + "bounds": { + "minlat": 40.8724304, + "minlon": -74.0138692, + "maxlat": 40.8726258, + "maxlon": -74.0134885 + }, + "nodes": [ + 103124981, + 4205863451 + ], + "geometry": [ + { "lat": 40.8726258, "lon": -74.0138692 }, + { "lat": 40.8724304, "lon": -74.0134885 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "lanes": "2", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 44708568, + "bounds": { + "minlat": 40.8722269, + "minlon": -74.0130614, + "maxlat": 40.8723062, + "maxlon": -74.0127358 + }, + "nodes": [ + 103214403, + 13527753027, + 775937814, + 4472892621 + ], + "geometry": [ + { "lat": 40.8723062, "lon": -74.0130614 }, + { "lat": 40.8722718, "lon": -74.0129220 }, + { "lat": 40.8722554, "lon": -74.0128553 }, + { "lat": 40.8722269, "lon": -74.0127358 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 44708570, + "bounds": { + "minlat": 40.8685881, + "minlon": -74.0034788, + "maxlat": 40.8693350, + "maxlon": -74.0024175 + }, + "nodes": [ + 567269909, + 567269808 + ], + "geometry": [ + { "lat": 40.8693350, "lon": -74.0034788 }, + { "lat": 40.8685881, "lon": -74.0024175 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "bridge": "yes", + "cycleway:right": "no", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 44708573, + "bounds": { + "minlat": 40.8722550, + "minlon": -74.0130131, + "maxlat": 40.8724162, + "maxlon": -74.0123002 + }, + "nodes": [ + 103247060, + 10947500746, + 103247063, + 10947500736, + 103247064, + 13527753028, + 103214404 + ], + "geometry": [ + { "lat": 40.8722550, "lon": -74.0123002 }, + { "lat": 40.8722820, "lon": -74.0124412 }, + { "lat": 40.8723094, "lon": -74.0125852 }, + { "lat": 40.8723344, "lon": -74.0127073 }, + { "lat": 40.8723603, "lon": -74.0128208 }, + { "lat": 40.8723750, "lon": -74.0128714 }, + { "lat": 40.8724162, "lon": -74.0130131 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "3", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 44708578, + "bounds": { + "minlat": 40.8743663, + "minlon": -74.0114563, + "maxlat": 40.8745750, + "maxlon": -74.0113986 + }, + "nodes": [ + 2003014047, + 567269985, + 2003013250 + ], + "geometry": [ + { "lat": 40.8745750, "lon": -74.0114248 }, + { "lat": 40.8744738, "lon": -74.0114563 }, + { "lat": 40.8743663, "lon": -74.0113986 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 44763886, + "bounds": { + "minlat": 40.8490076, + "minlon": -73.9369988, + "maxlat": 40.8500465, + "maxlon": -73.9358238 + }, + "nodes": [ + 9550791773, + 9550791784, + 42428094, + 9550791783, + 11595000928, + 11595000927 + ], + "geometry": [ + { "lat": 40.8490076, "lon": -73.9369988 }, + { "lat": 40.8494848, "lon": -73.9364590 }, + { "lat": 40.8495410, "lon": -73.9363970 }, + { "lat": 40.8495902, "lon": -73.9363401 }, + { "lat": 40.8498896, "lon": -73.9359946 }, + { "lat": 40.8500465, "lon": -73.9358238 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 44763887, + "bounds": { + "minlat": 40.8493131, + "minlon": -73.9407830, + "maxlat": 40.8497370, + "maxlon": -73.9389291 + }, + "nodes": [ + 60926076, + 13300405995, + 12069006605, + 12068944089, + 12068944087, + 12068944088, + 9908553703, + 595480989, + 8151605400, + 595479032, + 7409240964, + 12066839630, + 9908553704, + 9908553705, + 60926078 + ], + "geometry": [ + { "lat": 40.8493131, "lon": -73.9389291 }, + { "lat": 40.8493178, "lon": -73.9389478 }, + { "lat": 40.8493390, "lon": -73.9390326 }, + { "lat": 40.8493492, "lon": -73.9390734 }, + { "lat": 40.8493789, "lon": -73.9391977 }, + { "lat": 40.8494075, "lon": -73.9393242 }, + { "lat": 40.8494343, "lon": -73.9394508 }, + { "lat": 40.8495285, "lon": -73.9399248 }, + { "lat": 40.8496180, "lon": -73.9403766 }, + { "lat": 40.8496800, "lon": -73.9406873 }, + { "lat": 40.8496880, "lon": -73.9407168 }, + { "lat": 40.8496980, "lon": -73.9407382 }, + { "lat": 40.8497107, "lon": -73.9407572 }, + { "lat": 40.8497238, "lon": -73.9407720 }, + { "lat": 40.8497370, "lon": -73.9407830 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 179th Street", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "179th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 44763888, + "bounds": { + "minlat": 40.8489521, + "minlon": -73.9389291, + "maxlat": 40.8493131, + "maxlon": -73.9370618 + }, + "nodes": [ + 42429023, + 12068929557, + 9566938919, + 60926076 + ], + "geometry": [ + { "lat": 40.8489521, "lon": -73.9370618 }, + { "lat": 40.8489854, "lon": -73.9372341 }, + { "lat": 40.8492927, "lon": -73.9388238 }, + { "lat": 40.8493131, "lon": -73.9389291 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 179th Street", + "name_1": "West 179 Street", + "oneway": "yes", + "ref": "US 9", + "source": "Bing", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "179th", + "tiger:name_base_1": "179", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 44763889, + "bounds": { + "minlat": 40.8483863, + "minlon": -73.9376884, + "maxlat": 40.8485072, + "maxlon": -73.9375672 + }, + "nodes": [ + 42429017, + 12068948279, + 12068948277, + 11595081909 + ], + "geometry": [ + { "lat": 40.8483863, "lon": -73.9376884 }, + { "lat": 40.8484292, "lon": -73.9376529 }, + { "lat": 40.8484491, "lon": -73.9376332 }, + { "lat": 40.8485072, "lon": -73.9375672 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodruguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "ref": "US 9", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 44763890, + "bounds": { + "minlat": 40.8483863, + "minlon": -73.9386441, + "maxlat": 40.8485765, + "maxlon": -73.9376884 + }, + "nodes": [ + 9908570824, + 9550791743, + 42429017 + ], + "geometry": [ + { "lat": 40.8485765, "lon": -73.9386441 }, + { "lat": 40.8484170, "lon": -73.9378374 }, + { "lat": 40.8483863, "lon": -73.9376884 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 178th Street", + "name_1": "West 178 Street", + "oneway": "yes", + "ref": "US 9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "178th", + "tiger:name_base_1": "178", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "turn:lanes": "left;through|through|right" + } +}, +{ + "type": "way", + "id": 44763891, + "bounds": { + "minlat": 40.8494121, + "minlon": -73.9441593, + "maxlat": 40.8499323, + "maxlon": -73.9414167 + }, + "nodes": [ + 298792355, + 12068892582, + 12068821062, + 595464699 + ], + "geometry": [ + { "lat": 40.8499323, "lon": -73.9441593 }, + { "lat": 40.8498236, "lon": -73.9435927 }, + { "lat": 40.8497826, "lon": -73.9433756 }, + { "lat": 40.8494121, "lon": -73.9414167 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "destination": "Harlem River Drive", + "destination:ref": "I 95 North", + "destination:ref:to": "I 87", + "destination:to": "Franklin Delano Roosevelt Drive", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "George Washington Bridge Upper Level", + "name:etymology:wikidata": "Q23", + "name:ru": "Мост Джорджа Вашингтона (верхний уровень)", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 44773481, + "bounds": { + "minlat": 40.8097611, + "minlon": -73.9320579, + "maxlat": 40.8114476, + "maxlon": -73.9300905 + }, + "nodes": [ + 567820468, + 2408979630, + 567820471, + 701223492, + 2408979626, + 5482247614, + 10941548380, + 10941548371, + 4207700493 + ], + "geometry": [ + { "lat": 40.8114476, "lon": -73.9320579 }, + { "lat": 40.8112812, "lon": -73.9319355 }, + { "lat": 40.8112196, "lon": -73.9318883 }, + { "lat": 40.8111215, "lon": -73.9318063 }, + { "lat": 40.8110216, "lon": -73.9316914 }, + { "lat": 40.8103785, "lon": -73.9308779 }, + { "lat": 40.8101916, "lon": -73.9306396 }, + { "lat": 40.8099297, "lon": -73.9303055 }, + { "lat": 40.8097611, "lon": -73.9300905 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "New York State Office of Cyber Security (OCS) StreetSegmentPublic Dataset (http://gis.ny.gov/gisdata/inventories/details.cfm?DSID=932)" + } +}, +{ + "type": "way", + "id": 45291714, + "bounds": { + "minlat": 40.7844924, + "minlon": -73.9292919, + "maxlat": 40.7896348, + "maxlon": -73.9251980 + }, + "nodes": [ + 731930601, + 3040261609, + 9153832684, + 731930609, + 4461307911, + 575256348, + 4461307912, + 575256349, + 731930614, + 1890944370, + 575256350, + 740060236, + 575256351, + 3040261628, + 9153832687, + 575256352, + 5482325247, + 5482325253, + 1891172986, + 575256355, + 9153832688, + 9153832689, + 1242159723, + 9153832690, + 1242159698, + 1242159687, + 1242159696, + 1242159743, + 1242159657, + 9153832691, + 9153832692, + 1242159798, + 1242159769, + 9153832693, + 4159724371, + 9153832694, + 1242159825, + 1242159680, + 9153832695, + 9153832696, + 13121008199, + 1242159827, + 9253795620, + 3037154348, + 1242159747, + 9153832697, + 3037154349, + 3037154350, + 9153832698, + 1242159677, + 9253795625, + 3037154339, + 3037154342, + 3037154341, + 3037154343, + 1242159822, + 9153832699, + 9253795627, + 3037154337, + 1242159817, + 9253795629, + 3037154338, + 1242159653, + 9153832700, + 1242159731, + 9153832701, + 3040261588 + ], + "geometry": [ + { "lat": 40.7861197, "lon": -73.9292772 }, + { "lat": 40.7860487, "lon": -73.9292867 }, + { "lat": 40.7859687, "lon": -73.9292913 }, + { "lat": 40.7858688, "lon": -73.9292919 }, + { "lat": 40.7857686, "lon": -73.9292793 }, + { "lat": 40.7856635, "lon": -73.9292478 }, + { "lat": 40.7855742, "lon": -73.9292087 }, + { "lat": 40.7854905, "lon": -73.9291605 }, + { "lat": 40.7854059, "lon": -73.9291015 }, + { "lat": 40.7853334, "lon": -73.9290397 }, + { "lat": 40.7852743, "lon": -73.9289905 }, + { "lat": 40.7852025, "lon": -73.9289190 }, + { "lat": 40.7851365, "lon": -73.9288330 }, + { "lat": 40.7850732, "lon": -73.9287368 }, + { "lat": 40.7850254, "lon": -73.9286440 }, + { "lat": 40.7849750, "lon": -73.9285376 }, + { "lat": 40.7848968, "lon": -73.9283504 }, + { "lat": 40.7847238, "lon": -73.9279428 }, + { "lat": 40.7846035, "lon": -73.9276574 }, + { "lat": 40.7845539, "lon": -73.9275411 }, + { "lat": 40.7845292, "lon": -73.9274708 }, + { "lat": 40.7845111, "lon": -73.9273956 }, + { "lat": 40.7844987, "lon": -73.9273184 }, + { "lat": 40.7844924, "lon": -73.9272326 }, + { "lat": 40.7844962, "lon": -73.9271395 }, + { "lat": 40.7845059, "lon": -73.9270592 }, + { "lat": 40.7845294, "lon": -73.9269580 }, + { "lat": 40.7845688, "lon": -73.9268537 }, + { "lat": 40.7846060, "lon": -73.9267782 }, + { "lat": 40.7846483, "lon": -73.9267138 }, + { "lat": 40.7846998, "lon": -73.9266603 }, + { "lat": 40.7847592, "lon": -73.9266080 }, + { "lat": 40.7857064, "lon": -73.9258756 }, + { "lat": 40.7857813, "lon": -73.9258219 }, + { "lat": 40.7858632, "lon": -73.9257735 }, + { "lat": 40.7859242, "lon": -73.9257387 }, + { "lat": 40.7860007, "lon": -73.9257146 }, + { "lat": 40.7860813, "lon": -73.9257025 }, + { "lat": 40.7861635, "lon": -73.9257025 }, + { "lat": 40.7862513, "lon": -73.9257092 }, + { "lat": 40.7862717, "lon": -73.9257126 }, + { "lat": 40.7863411, "lon": -73.9257244 }, + { "lat": 40.7865058, "lon": -73.9257607 }, + { "lat": 40.7866556, "lon": -73.9257960 }, + { "lat": 40.7867881, "lon": -73.9258164 }, + { "lat": 40.7869191, "lon": -73.9258379 }, + { "lat": 40.7870512, "lon": -73.9258519 }, + { "lat": 40.7872100, "lon": -73.9258661 }, + { "lat": 40.7873713, "lon": -73.9258679 }, + { "lat": 40.7875325, "lon": -73.9258619 }, + { "lat": 40.7877153, "lon": -73.9258475 }, + { "lat": 40.7877917, "lon": -73.9258354 }, + { "lat": 40.7879223, "lon": -73.9258122 }, + { "lat": 40.7880430, "lon": -73.9257979 }, + { "lat": 40.7881786, "lon": -73.9257683 }, + { "lat": 40.7882854, "lon": -73.9257487 }, + { "lat": 40.7883874, "lon": -73.9257251 }, + { "lat": 40.7884482, "lon": -73.9257060 }, + { "lat": 40.7885057, "lon": -73.9256900 }, + { "lat": 40.7886933, "lon": -73.9256285 }, + { "lat": 40.7888953, "lon": -73.9255562 }, + { "lat": 40.7889020, "lon": -73.9255518 }, + { "lat": 40.7890897, "lon": -73.9254710 }, + { "lat": 40.7892498, "lon": -73.9253893 }, + { "lat": 40.7895827, "lon": -73.9252104 }, + { "lat": 40.7896088, "lon": -73.9252009 }, + { "lat": 40.7896348, "lon": -73.9251980 } + ], + "tags": { + "cycleway": "no", + "highway": "tertiary", + "lanes": "2", + "name": "Hell Gate Circle", + "name:etymology:wikidata": "Q838755", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 45443072, + "bounds": { + "minlat": 40.8140511, + "minlon": -73.9618650, + "maxlat": 40.8159022, + "maxlon": -73.9605612 + }, + "nodes": [ + 42441077, + 7732571997, + 10049857026, + 7732571996, + 7732571998, + 7732571995, + 10054994696, + 4013803656, + 42441080 + ], + "geometry": [ + { "lat": 40.8159022, "lon": -73.9605612 }, + { "lat": 40.8158403, "lon": -73.9605854 }, + { "lat": 40.8157978, "lon": -73.9606032 }, + { "lat": 40.8157904, "lon": -73.9606063 }, + { "lat": 40.8156594, "lon": -73.9606993 }, + { "lat": 40.8151013, "lon": -73.9611053 }, + { "lat": 40.8148122, "lon": -73.9613154 }, + { "lat": 40.8143927, "lon": -73.9616236 }, + { "lat": 40.8140511, "lon": -73.9618650 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "no", + "sidewalk": "left", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 45781338, + "bounds": { + "minlat": 40.8535902, + "minlon": -73.9618935, + "maxlat": 40.8540128, + "maxlon": -73.9607185 + }, + "nodes": [ + 582987568, + 582987570, + 8167708102, + 582987571, + 582987572, + 8167708103, + 582987573, + 582987574 + ], + "geometry": [ + { "lat": 40.8540128, "lon": -73.9618935 }, + { "lat": 40.8539959, "lon": -73.9618383 }, + { "lat": 40.8539676, "lon": -73.9613289 }, + { "lat": 40.8539077, "lon": -73.9607185 }, + { "lat": 40.8536297, "lon": -73.9607574 }, + { "lat": 40.8535952, "lon": -73.9607902 }, + { "lat": 40.8535902, "lon": -73.9608392 }, + { "lat": 40.8536815, "lon": -73.9613126 } + ], + "tags": { + "bicycle": "no", + "highway": "track", + "surface": "dirt" + } +}, +{ + "type": "way", + "id": 46111601, + "bounds": { + "minlat": 40.8326085, + "minlon": -73.9497813, + "maxlat": 40.8327035, + "maxlon": -73.9497705 + }, + "nodes": [ + 11191809988, + 42441805 + ], + "geometry": [ + { "lat": 40.8326085, "lon": -73.9497705 }, + { "lat": 40.8327035, "lon": -73.9497813 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "secondary", + "layer": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46111604, + "bounds": { + "minlat": 40.8357503, + "minlon": -73.9471461, + "maxlat": 40.8377581, + "maxlon": -73.9459435 + }, + "nodes": [ + 587934073, + 587934061, + 4701483777, + 11296125596, + 587934058, + 587934056, + 8344675607, + 587934053, + 4701483776, + 8344675600, + 587934050, + 587934047, + 587934044 + ], + "geometry": [ + { "lat": 40.8377581, "lon": -73.9471227 }, + { "lat": 40.8375815, "lon": -73.9471461 }, + { "lat": 40.8373544, "lon": -73.9471163 }, + { "lat": 40.8372175, "lon": -73.9471007 }, + { "lat": 40.8370794, "lon": -73.9470771 }, + { "lat": 40.8368382, "lon": -73.9470354 }, + { "lat": 40.8366042, "lon": -73.9469188 }, + { "lat": 40.8365582, "lon": -73.9468959 }, + { "lat": 40.8365192, "lon": -73.9468660 }, + { "lat": 40.8363913, "lon": -73.9467680 }, + { "lat": 40.8362782, "lon": -73.9466813 }, + { "lat": 40.8360444, "lon": -73.9464053 }, + { "lat": 40.8357503, "lon": -73.9459435 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46111605, + "bounds": { + "minlat": 40.8419918, + "minlon": -73.9441499, + "maxlat": 40.8424312, + "maxlon": -73.9440335 + }, + "nodes": [ + 60927819, + 13165210897, + 12458181278, + 60927820, + 13165210890 + ], + "geometry": [ + { "lat": 40.8419918, "lon": -73.9441499 }, + { "lat": 40.8421096, "lon": -73.9441138 }, + { "lat": 40.8421906, "lon": -73.9440890 }, + { "lat": 40.8423188, "lon": -73.9440565 }, + { "lat": 40.8424312, "lon": -73.9440335 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46111607, + "bounds": { + "minlat": 40.7861933, + "minlon": -73.9814421, + "maxlat": 40.7927869, + "maxlon": -73.9770460 + }, + "nodes": [ + 595314125, + 42441535, + 10060800061, + 9168918321, + 2029349812, + 9168918320, + 2029349811, + 2029349809, + 2029349808, + 11682710505, + 2029349806, + 42437058, + 11682710503, + 9168918319, + 9168918318, + 9168918317, + 10039861888, + 42422018, + 10039861883, + 42441540, + 9168918209, + 42441544, + 2029349802, + 42441550, + 9168918210, + 42441553, + 9168918211, + 42441559, + 10039776315, + 42438052, + 9168918208, + 2967753945, + 10039795803, + 42434161, + 10039795798, + 10039645591, + 42441564, + 10039645584, + 9168918207, + 10039645579, + 42441569, + 10039741698, + 9168918206, + 2329939933, + 2329939931, + 2329939928, + 2329939925, + 9168918205, + 2329939922, + 10039741678, + 42421820, + 10039741672, + 7554188472, + 10039656211, + 42437312, + 10039693563, + 7554195690, + 10039653305, + 42433569, + 10039653300, + 42441576, + 9168918196, + 42441580, + 42441581, + 9168918195, + 9168918170, + 42441583, + 9168918194, + 42441587 + ], + "geometry": [ + { "lat": 40.7927869, "lon": -73.9770460 }, + { "lat": 40.7927220, "lon": -73.9770873 }, + { "lat": 40.7926657, "lon": -73.9771238 }, + { "lat": 40.7926442, "lon": -73.9771378 }, + { "lat": 40.7925661, "lon": -73.9772024 }, + { "lat": 40.7924909, "lon": -73.9772718 }, + { "lat": 40.7924188, "lon": -73.9773442 }, + { "lat": 40.7923462, "lon": -73.9774250 }, + { "lat": 40.7922871, "lon": -73.9775019 }, + { "lat": 40.7922315, "lon": -73.9775778 }, + { "lat": 40.7922230, "lon": -73.9775894 }, + { "lat": 40.7921750, "lon": -73.9776753 }, + { "lat": 40.7921289, "lon": -73.9777644 }, + { "lat": 40.7921125, "lon": -73.9777961 }, + { "lat": 40.7920652, "lon": -73.9778993 }, + { "lat": 40.7920276, "lon": -73.9779927 }, + { "lat": 40.7918310, "lon": -73.9785185 }, + { "lat": 40.7917878, "lon": -73.9786190 }, + { "lat": 40.7917445, "lon": -73.9787197 }, + { "lat": 40.7917136, "lon": -73.9787809 }, + { "lat": 40.7916798, "lon": -73.9788478 }, + { "lat": 40.7916419, "lon": -73.9789123 }, + { "lat": 40.7915974, "lon": -73.9789866 }, + { "lat": 40.7915563, "lon": -73.9790544 }, + { "lat": 40.7915043, "lon": -73.9791253 }, + { "lat": 40.7914550, "lon": -73.9791886 }, + { "lat": 40.7913980, "lon": -73.9792510 }, + { "lat": 40.7913394, "lon": -73.9793137 }, + { "lat": 40.7913058, "lon": -73.9793445 }, + { "lat": 40.7912444, "lon": -73.9794014 }, + { "lat": 40.7911807, "lon": -73.9794491 }, + { "lat": 40.7909777, "lon": -73.9796026 }, + { "lat": 40.7906763, "lon": -73.9798228 }, + { "lat": 40.7906175, "lon": -73.9798657 }, + { "lat": 40.7905594, "lon": -73.9799084 }, + { "lat": 40.7900391, "lon": -73.9802913 }, + { "lat": 40.7899463, "lon": -73.9803596 }, + { "lat": 40.7898522, "lon": -73.9804274 }, + { "lat": 40.7893329, "lon": -73.9808015 }, + { "lat": 40.7893198, "lon": -73.9808103 }, + { "lat": 40.7892552, "lon": -73.9808538 }, + { "lat": 40.7891917, "lon": -73.9808906 }, + { "lat": 40.7891770, "lon": -73.9808991 }, + { "lat": 40.7891079, "lon": -73.9809346 }, + { "lat": 40.7890334, "lon": -73.9809659 }, + { "lat": 40.7889541, "lon": -73.9809950 }, + { "lat": 40.7888684, "lon": -73.9810168 }, + { "lat": 40.7887683, "lon": -73.9810332 }, + { "lat": 40.7886607, "lon": -73.9810496 }, + { "lat": 40.7885566, "lon": -73.9810619 }, + { "lat": 40.7884860, "lon": -73.9810702 }, + { "lat": 40.7884170, "lon": -73.9810780 }, + { "lat": 40.7882529, "lon": -73.9810965 }, + { "lat": 40.7877628, "lon": -73.9811444 }, + { "lat": 40.7876839, "lon": -73.9811521 }, + { "lat": 40.7876197, "lon": -73.9811599 }, + { "lat": 40.7876095, "lon": -73.9811611 }, + { "lat": 40.7869805, "lon": -73.9812188 }, + { "lat": 40.7868921, "lon": -73.9812269 }, + { "lat": 40.7868277, "lon": -73.9812363 }, + { "lat": 40.7867112, "lon": -73.9812529 }, + { "lat": 40.7866479, "lon": -73.9812626 }, + { "lat": 40.7865777, "lon": -73.9812774 }, + { "lat": 40.7865019, "lon": -73.9812976 }, + { "lat": 40.7864425, "lon": -73.9813167 }, + { "lat": 40.7863760, "lon": -73.9813405 }, + { "lat": 40.7863047, "lon": -73.9813761 }, + { "lat": 40.7862518, "lon": -73.9814048 }, + { "lat": 40.7861933, "lon": -73.9814421 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:both": "separate", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46111610, + "bounds": { + "minlat": 40.7961187, + "minlon": -73.9748911, + "maxlat": 40.8015900, + "maxlon": -73.9705450 + }, + "nodes": [ + 595314119, + 9168918357, + 2029349927, + 6996574443, + 595314120, + 6996564358, + 9177516855, + 595314121, + 2029349936, + 2029349939, + 2556560431, + 2556560432, + 9177516856, + 42433256, + 9177516857, + 6996574440, + 11741893733, + 42441889, + 2556560433, + 2556560434, + 9177516858, + 2556560435, + 9177516859, + 2556560436, + 10169443468, + 42429557, + 10169443469, + 2556560437, + 6903603545, + 2556560438, + 6887003293, + 42441895, + 6883897273, + 6894260891, + 6883897226, + 42441899, + 11885218983, + 42441903, + 6883897082, + 7785881388, + 42441907, + 7785881441, + 42437920 + ], + "geometry": [ + { "lat": 40.7961187, "lon": -73.9748911 }, + { "lat": 40.7961962, "lon": -73.9746270 }, + { "lat": 40.7964427, "lon": -73.9742335 }, + { "lat": 40.7964790, "lon": -73.9741800 }, + { "lat": 40.7965226, "lon": -73.9741146 }, + { "lat": 40.7965711, "lon": -73.9740416 }, + { "lat": 40.7966775, "lon": -73.9739295 }, + { "lat": 40.7967320, "lon": -73.9738796 }, + { "lat": 40.7967918, "lon": -73.9738328 }, + { "lat": 40.7968569, "lon": -73.9737879 }, + { "lat": 40.7969437, "lon": -73.9737386 }, + { "lat": 40.7970182, "lon": -73.9736973 }, + { "lat": 40.7970840, "lon": -73.9736656 }, + { "lat": 40.7971483, "lon": -73.9736411 }, + { "lat": 40.7972244, "lon": -73.9736204 }, + { "lat": 40.7978305, "lon": -73.9734734 }, + { "lat": 40.7978354, "lon": -73.9734722 }, + { "lat": 40.7978915, "lon": -73.9734588 }, + { "lat": 40.7981103, "lon": -73.9734050 }, + { "lat": 40.7981835, "lon": -73.9733785 }, + { "lat": 40.7982498, "lon": -73.9733513 }, + { "lat": 40.7983175, "lon": -73.9733208 }, + { "lat": 40.7983910, "lon": -73.9732789 }, + { "lat": 40.7984629, "lon": -73.9732349 }, + { "lat": 40.7985277, "lon": -73.9731855 }, + { "lat": 40.7985815, "lon": -73.9731448 }, + { "lat": 40.7986367, "lon": -73.9730978 }, + { "lat": 40.7986670, "lon": -73.9730704 }, + { "lat": 40.7987278, "lon": -73.9730079 }, + { "lat": 40.7987789, "lon": -73.9729510 }, + { "lat": 40.7991014, "lon": -73.9725875 }, + { "lat": 40.7991459, "lon": -73.9725352 }, + { "lat": 40.7995582, "lon": -73.9720649 }, + { "lat": 40.7996114, "lon": -73.9720047 }, + { "lat": 40.7996423, "lon": -73.9719761 }, + { "lat": 40.7997050, "lon": -73.9719240 }, + { "lat": 40.8002711, "lon": -73.9715064 }, + { "lat": 40.8003340, "lon": -73.9714600 }, + { "lat": 40.8003888, "lon": -73.9714210 }, + { "lat": 40.8009013, "lon": -73.9710480 }, + { "lat": 40.8009607, "lon": -73.9710040 }, + { "lat": 40.8010287, "lon": -73.9709554 }, + { "lat": 40.8015900, "lon": -73.9705450 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46111614, + "bounds": { + "minlat": 40.8114305, + "minlon": -73.9638811, + "maxlat": 40.8134277, + "maxlon": -73.9624360 + }, + "nodes": [ + 6868145384, + 42441104, + 1332860726, + 7732571981, + 3269867944 + ], + "geometry": [ + { "lat": 40.8114305, "lon": -73.9638811 }, + { "lat": 40.8124168, "lon": -73.9631713 }, + { "lat": 40.8126411, "lon": -73.9630020 }, + { "lat": 40.8133968, "lon": -73.9624582 }, + { "lat": 40.8134277, "lon": -73.9624360 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46111615, + "bounds": { + "minlat": 40.8107852, + "minlon": -73.9644669, + "maxlat": 40.8113749, + "maxlon": -73.9640405 + }, + "nodes": [ + 6868145381, + 3269867926, + 9518268102, + 42441254 + ], + "geometry": [ + { "lat": 40.8113749, "lon": -73.9640405 }, + { "lat": 40.8112923, "lon": -73.9641068 }, + { "lat": 40.8108380, "lon": -73.9644281 }, + { "lat": 40.8107852, "lon": -73.9644669 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46111619, + "bounds": { + "minlat": 40.8168887, + "minlon": -73.9611688, + "maxlat": 40.8169581, + "maxlon": -73.9611187 + }, + "nodes": [ + 42441191, + 595314033 + ], + "geometry": [ + { "lat": 40.8168887, "lon": -73.9611688 }, + { "lat": 40.8169581, "lon": -73.9611187 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46111626, + "bounds": { + "minlat": 40.8175360, + "minlon": -73.9607211, + "maxlat": 40.8179509, + "maxlon": -73.9604157 + }, + "nodes": [ + 7616688918, + 10049860712, + 10049953223, + 6867580414 + ], + "geometry": [ + { "lat": 40.8175360, "lon": -73.9607211 }, + { "lat": 40.8175921, "lon": -73.9606798 }, + { "lat": 40.8178841, "lon": -73.9604648 }, + { "lat": 40.8179509, "lon": -73.9604157 } + ], + "tags": { + "alt_name": "12 Avenue;Twelfth Avenue", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "no", + "highway": "unclassified", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "12th Avenue", + "surface": "asphalt", + "turn:lanes:backward": "left|left;through" + } +}, +{ + "type": "way", + "id": 46111627, + "bounds": { + "minlat": 40.8180007, + "minlon": -73.9618103, + "maxlat": 40.8186803, + "maxlon": -73.9610583 + }, + "nodes": [ + 42424703, + 10049926004, + 764744759, + 3874689569, + 42424706 + ], + "geometry": [ + { "lat": 40.8186803, "lon": -73.9610583 }, + { "lat": 40.8186187, "lon": -73.9611294 }, + { "lat": 40.8184772, "lon": -73.9612924 }, + { "lat": 40.8180977, "lon": -73.9617095 }, + { "lat": 40.8180007, "lon": -73.9618103 } + ], + "tags": { + "bicycle": "designated", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Marginal Street", + "oneway": "yes", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 46111629, + "bounds": { + "minlat": 40.8176592, + "minlon": -73.9615372, + "maxlat": 40.8178824, + "maxlon": -73.9610181 + }, + "nodes": [ + 12851749298, + 8736432151, + 10049860705, + 42425088 + ], + "geometry": [ + { "lat": 40.8178824, "lon": -73.9615372 }, + { "lat": 40.8177065, "lon": -73.9611313 }, + { "lat": 40.8176936, "lon": -73.9611015 }, + { "lat": 40.8176592, "lon": -73.9610181 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "secondary", + "name": "Saint Clair Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Clair", + "tiger:name_type": "Pl", + "tiger:reviewed": "aerial", + "tiger:zip_left": "10027", + "tiger:zip_right": "10027" + } +}, +{ + "type": "way", + "id": 46111631, + "bounds": { + "minlat": 40.8042152, + "minlon": -73.9680127, + "maxlat": 40.8047230, + "maxlon": -73.9667983 + }, + "nodes": [ + 42428782, + 10170704057, + 11378511129, + 11378511126, + 42441926 + ], + "geometry": [ + { "lat": 40.8042152, "lon": -73.9667983 }, + { "lat": 40.8042606, "lon": -73.9669068 }, + { "lat": 40.8046655, "lon": -73.9678752 }, + { "lat": 40.8046942, "lon": -73.9679439 }, + { "lat": 40.8047230, "lon": -73.9680127 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46114474, + "bounds": { + "minlat": 40.8462078, + "minlon": -73.9436027, + "maxlat": 40.8477205, + "maxlon": -73.9435017 + }, + "nodes": [ + 60927827, + 7911412108, + 7911399063, + 7911412147, + 60927829, + 7911365311, + 60927830, + 60927831, + 60927832 + ], + "geometry": [ + { "lat": 40.8462078, "lon": -73.9435668 }, + { "lat": 40.8462810, "lon": -73.9435369 }, + { "lat": 40.8463574, "lon": -73.9435160 }, + { "lat": 40.8464379, "lon": -73.9435049 }, + { "lat": 40.8465205, "lon": -73.9435017 }, + { "lat": 40.8468221, "lon": -73.9435297 }, + { "lat": 40.8475492, "lon": -73.9435973 }, + { "lat": 40.8476312, "lon": -73.9436027 }, + { "lat": 40.8477205, "lon": -73.9435997 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "turn:lanes": "through|slight_right", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46114478, + "bounds": { + "minlat": 40.8351598, + "minlon": -73.9468666, + "maxlat": 40.8380720, + "maxlon": -73.9453861 + }, + "nodes": [ + 2504882469, + 9935939398, + 587933892, + 587933911, + 587933918, + 587933922, + 587933928, + 587933936, + 9935939355, + 587933945, + 9935939356, + 587933951, + 11296617474, + 587933956, + 587933963, + 4701483775, + 42441695 + ], + "geometry": [ + { "lat": 40.8351598, "lon": -73.9453926 }, + { "lat": 40.8351821, "lon": -73.9453861 }, + { "lat": 40.8354077, "lon": -73.9454418 }, + { "lat": 40.8355070, "lon": -73.9454743 }, + { "lat": 40.8358642, "lon": -73.9457104 }, + { "lat": 40.8362051, "lon": -73.9462093 }, + { "lat": 40.8364851, "lon": -73.9465365 }, + { "lat": 40.8368220, "lon": -73.9467403 }, + { "lat": 40.8372062, "lon": -73.9468016 }, + { "lat": 40.8373178, "lon": -73.9468195 }, + { "lat": 40.8373804, "lon": -73.9468295 }, + { "lat": 40.8375607, "lon": -73.9468583 }, + { "lat": 40.8376877, "lon": -73.9468666 }, + { "lat": 40.8378287, "lon": -73.9468257 }, + { "lat": 40.8379438, "lon": -73.9467552 }, + { "lat": 40.8380417, "lon": -73.9466808 }, + { "lat": 40.8380720, "lon": -73.9466482 } + ], + "tags": { + "highway": "residential", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46114483, + "bounds": { + "minlat": 40.8364547, + "minlon": -73.9488460, + "maxlat": 40.8364991, + "maxlon": -73.9486325 + }, + "nodes": [ + 587934172, + 9935939179, + 9168918401, + 9168918402, + 9168918403, + 595352911 + ], + "geometry": [ + { "lat": 40.8364991, "lon": -73.9488460 }, + { "lat": 40.8364987, "lon": -73.9488231 }, + { "lat": 40.8364982, "lon": -73.9487968 }, + { "lat": 40.8364925, "lon": -73.9487423 }, + { "lat": 40.8364780, "lon": -73.9486936 }, + { "lat": 40.8364547, "lon": -73.9486325 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "no", + "highway": "secondary", + "layer": "1", + "name": "West 158th Street", + "oneway:bicycle": "no", + "source:name": "OSM US TIGER 2012 Roads Overlay" + } +}, +{ + "type": "way", + "id": 46114492, + "bounds": { + "minlat": 40.8328147, + "minlon": -73.9465126, + "maxlat": 40.8330613, + "maxlon": -73.9459388 + }, + "nodes": [ + 9801962062, + 13033664657, + 11191773500, + 42428956 + ], + "geometry": [ + { "lat": 40.8330613, "lon": -73.9465126 }, + { "lat": 40.8329956, "lon": -73.9463596 }, + { "lat": 40.8328520, "lon": -73.9460256 }, + { "lat": 40.8328147, "lon": -73.9459388 } + ], + "tags": { + "highway": "residential", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46114497, + "bounds": { + "minlat": 40.8307638, + "minlon": -73.9513537, + "maxlat": 40.8314619, + "maxlon": -73.9512706 + }, + "nodes": [ + 587934311, + 587934446, + 9566822907, + 587934450, + 3273684037 + ], + "geometry": [ + { "lat": 40.8314619, "lon": -73.9512706 }, + { "lat": 40.8312412, "lon": -73.9513323 }, + { "lat": 40.8311923, "lon": -73.9513367 }, + { "lat": 40.8310017, "lon": -73.9513537 }, + { "lat": 40.8307638, "lon": -73.9513527 } + ], + "tags": { + "bicycle": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 46116177, + "bounds": { + "minlat": 40.7060310, + "minlon": -74.0147077, + "maxlat": 40.7064590, + "maxlon": -74.0145755 + }, + "nodes": [ + 246909446, + 11384283202, + 4149937228, + 4149937227, + 4149936231, + 5209071190 + ], + "geometry": [ + { "lat": 40.7060310, "lon": -74.0147077 }, + { "lat": 40.7061777, "lon": -74.0146581 }, + { "lat": 40.7063201, "lon": -74.0146023 }, + { "lat": 40.7063594, "lon": -74.0145896 }, + { "lat": 40.7064116, "lon": -74.0145815 }, + { "lat": 40.7064590, "lon": -74.0145755 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "25 mph", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "I 478" + } +}, +{ + "type": "way", + "id": 46116180, + "bounds": { + "minlat": 40.7056997, + "minlon": -74.0151163, + "maxlat": 40.7058643, + "maxlon": -74.0150527 + }, + "nodes": [ + 13064844941, + 9906966863 + ], + "geometry": [ + { "lat": 40.7058643, "lon": -74.0150527 }, + { "lat": 40.7056997, "lon": -74.0151163 } + ], + "tags": { + "bicycle": "no", + "description": "One lane is reversible on weekday mornings Manhattan bound to HOV 3+ vehicles", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "25 mph", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "I 478" + } +}, +{ + "type": "way", + "id": 46116181, + "bounds": { + "minlat": 40.7052257, + "minlon": -74.0167779, + "maxlat": 40.7064673, + "maxlon": -74.0162777 + }, + "nodes": [ + 588593353, + 11416159813, + 11385942383, + 11385942384, + 11385942382, + 11385942381 + ], + "geometry": [ + { "lat": 40.7064673, "lon": -74.0162777 }, + { "lat": 40.7064536, "lon": -74.0162852 }, + { "lat": 40.7064254, "lon": -74.0163008 }, + { "lat": 40.7063405, "lon": -74.0163431 }, + { "lat": 40.7062823, "lon": -74.0163683 }, + { "lat": 40.7052257, "lon": -74.0167779 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "destination": "Battery Place", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 46116183, + "bounds": { + "minlat": 40.7097164, + "minlon": -74.0006453, + "maxlat": 40.7098483, + "maxlon": -74.0004861 + }, + "nodes": [ + 13368199833, + 12924890409 + ], + "geometry": [ + { "lat": 40.7097164, "lon": -74.0004861 }, + { "lat": 40.7098483, "lon": -74.0006453 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Robert F. Wagner Sr. Place", + "name:etymology:wikidata": "Q213721", + "name:ko": "로버트 F. 와그너 시니어 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46116280, + "bounds": { + "minlat": 40.7004806, + "minlon": -73.9901327, + "maxlat": 40.7006709, + "maxlon": -73.9898606 + }, + "nodes": [ + 7561173754, + 10001058408, + 10001058407, + 588717513 + ], + "geometry": [ + { "lat": 40.7006709, "lon": -73.9901327 }, + { "lat": 40.7005985, "lon": -73.9900363 }, + { "lat": 40.7005359, "lon": -73.9899447 }, + { "lat": 40.7004806, "lon": -73.9898606 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "destination": "Adams Street / Brooklyn Bridge Boulevard", + "embankment": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "1", + "maxspeed": "30 mph", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41:A49:A63", + "tiger:county": "Kings, NY;New York, NY", + "tiger:name_base": "Brooklyn", + "tiger:name_type": "Brg" + } +}, +{ + "type": "way", + "id": 46116314, + "bounds": { + "minlat": 40.7131550, + "minlon": -74.0041090, + "maxlat": 40.7136604, + "maxlon": -74.0036490 + }, + "nodes": [ + 9121386338, + 4878838760, + 4878838733, + 4878831008 + ], + "geometry": [ + { "lat": 40.7136604, "lon": -74.0036490 }, + { "lat": 40.7135973, "lon": -74.0037069 }, + { "lat": 40.7132240, "lon": -74.0040190 }, + { "lat": 40.7131550, "lon": -74.0041090 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46116316, + "bounds": { + "minlat": 40.7111862, + "minlon": -74.0035824, + "maxlat": 40.7115573, + "maxlon": -74.0031140 + }, + "nodes": [ + 4158753824, + 12304459478 + ], + "geometry": [ + { "lat": 40.7111862, "lon": -74.0031140 }, + { "lat": 40.7115573, "lon": -74.0035824 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "destination": "Park Row South;Chambers Street;Centre Street", + "expressway": "yes", + "foot": "use_sidepath", + "hgv": "no", + "highway": "secondary", + "lanes": "1", + "layer": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46116326, + "bounds": { + "minlat": 40.7113166, + "minlon": -74.0085272, + "maxlat": 40.7113856, + "maxlon": -74.0082065 + }, + "nodes": [ + 4143875739, + 9368526936, + 10290135962, + 4878838721, + 8262936588, + 8262936579, + 4143875741, + 8262936586 + ], + "geometry": [ + { "lat": 40.7113281, "lon": -74.0085272 }, + { "lat": 40.7113207, "lon": -74.0084985 }, + { "lat": 40.7113166, "lon": -74.0084682 }, + { "lat": 40.7113167, "lon": -74.0084405 }, + { "lat": 40.7113200, "lon": -74.0084177 }, + { "lat": 40.7113239, "lon": -74.0084010 }, + { "lat": 40.7113626, "lon": -74.0082835 }, + { "lat": 40.7113856, "lon": -74.0082065 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 46116329, + "bounds": { + "minlat": 40.7119884, + "minlon": -74.0088791, + "maxlat": 40.7123600, + "maxlon": -74.0081342 + }, + "nodes": [ + 272195270, + 10290401136, + 9368526978, + 10290401137, + 4143875743, + 11411576728 + ], + "geometry": [ + { "lat": 40.7119884, "lon": -74.0081342 }, + { "lat": 40.7120006, "lon": -74.0081483 }, + { "lat": 40.7120267, "lon": -74.0081820 }, + { "lat": 40.7120411, "lon": -74.0082019 }, + { "lat": 40.7120565, "lon": -74.0082296 }, + { "lat": 40.7123600, "lon": -74.0088791 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Barclay Street", + "name:etymology:wikidata": "Q94355342", + "name:ko": "바클레이 스트리트", + "name:ru": "Баркли-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 07:00-10:00,16:00-19:00)", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14622883" + } +}, +{ + "type": "way", + "id": 46116332, + "bounds": { + "minlat": 40.7130782, + "minlon": -74.0008317, + "maxlat": 40.7133032, + "maxlon": -73.9995931 + }, + "nodes": [ + 11394592619, + 7476968853, + 4499408167, + 7476968855 + ], + "geometry": [ + { "lat": 40.7133032, "lon": -73.9995931 }, + { "lat": 40.7132224, "lon": -74.0001024 }, + { "lat": 40.7130951, "lon": -74.0007544 }, + { "lat": 40.7130782, "lon": -74.0008317 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "cycleway": "no", + "cycleway:right:oneway": "yes", + "emergency": "designated", + "foot": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "10 mph", + "motor_vehicle": "private", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "old_name": "Chatham Street", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 46116390, + "bounds": { + "minlat": 40.7237608, + "minlon": -74.0075231, + "maxlat": 40.7239064, + "maxlon": -74.0061172 + }, + "nodes": [ + 42426060, + 10099294650, + 4602410644, + 4602410642, + 13036626671, + 4139510041, + 13846767404, + 4890633719, + 4602414021 + ], + "geometry": [ + { "lat": 40.7239064, "lon": -74.0075231 }, + { "lat": 40.7238981, "lon": -74.0074429 }, + { "lat": 40.7238815, "lon": -74.0072828 }, + { "lat": 40.7238349, "lon": -74.0068332 }, + { "lat": 40.7238184, "lon": -74.0066737 }, + { "lat": 40.7238031, "lon": -74.0065261 }, + { "lat": 40.7237827, "lon": -74.0063269 }, + { "lat": 40.7237731, "lon": -74.0062334 }, + { "lat": 40.7237608, "lon": -74.0061172 } + ], + "tags": { + "bicycle": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Watts Street", + "name:etymology:wikidata": "Q1702113", + "name:ko": "와츠 스트리트", + "name:ru": "Уоттс-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46116403, + "bounds": { + "minlat": 40.7245034, + "minlon": -74.0074057, + "maxlat": 40.7245406, + "maxlon": -74.0070314 + }, + "nodes": [ + 42423514, + 13846767106 + ], + "geometry": [ + { "lat": 40.7245034, "lon": -74.0070314 }, + { "lat": 40.7245406, "lon": -74.0074057 } + ], + "tags": { + "access": "no", + "highway": "service", + "maxspeed": "20 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "no", + "service": "emergency_access", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 46116435, + "bounds": { + "minlat": 40.7206309, + "minlon": -74.0098902, + "maxlat": 40.7207543, + "maxlon": -74.0086288 + }, + "nodes": [ + 3788379698, + 42434863, + 11489120811 + ], + "geometry": [ + { "lat": 40.7206309, "lon": -74.0086288 }, + { "lat": 40.7206968, "lon": -74.0092987 }, + { "lat": 40.7207543, "lon": -74.0098902 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Beach Street", + "name:ko": "비치 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 46121847, + "bounds": { + "minlat": 40.7016243, + "minlon": -73.9920929, + "maxlat": 40.7017662, + "maxlon": -73.9919157 + }, + "nodes": [ + 11673036954, + 11673036955, + 11674207999 + ], + "geometry": [ + { "lat": 40.7016243, "lon": -73.9919157 }, + { "lat": 40.7017249, "lon": -73.9920408 }, + { "lat": 40.7017662, "lon": -73.9920929 } + ], + "tags": { + "covered": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "tiger:reviewed": "no", + "turn:lanes": "left|left|through" + } +}, +{ + "type": "way", + "id": 46130040, + "bounds": { + "minlat": 40.8081964, + "minlon": -73.9361311, + "maxlat": 40.8088106, + "maxlon": -73.9347058 + }, + "nodes": [ + 589928035, + 9178585628, + 7950964476, + 9178585627, + 9178585626, + 371337145 + ], + "geometry": [ + { "lat": 40.8088106, "lon": -73.9361311 }, + { "lat": 40.8087827, "lon": -73.9360621 }, + { "lat": 40.8082401, "lon": -73.9347609 }, + { "lat": 40.8082257, "lon": -73.9347367 }, + { "lat": 40.8082119, "lon": -73.9347190 }, + { "lat": 40.8081964, "lon": -73.9347058 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 131st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46130044, + "bounds": { + "minlat": 40.8063016, + "minlon": -73.9413121, + "maxlat": 40.8077113, + "maxlon": -73.9379637 + }, + "nodes": [ + 589928029, + 589928041, + 10172922915, + 10171956577, + 42446177, + 10171956580, + 13703510003, + 4970616806, + 42436724 + ], + "geometry": [ + { "lat": 40.8063016, "lon": -73.9379637 }, + { "lat": 40.8064089, "lon": -73.9382179 }, + { "lat": 40.8064440, "lon": -73.9383031 }, + { "lat": 40.8069938, "lon": -73.9396102 }, + { "lat": 40.8070341, "lon": -73.9397061 }, + { "lat": 40.8070771, "lon": -73.9398083 }, + { "lat": 40.8072527, "lon": -73.9402209 }, + { "lat": 40.8076728, "lon": -73.9412216 }, + { "lat": 40.8077113, "lon": -73.9413121 } + ], + "tags": { + "highway": "residential", + "name": "East 127th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46130049, + "bounds": { + "minlat": 40.8048030, + "minlon": -73.9330483, + "maxlat": 40.8050861, + "maxlon": -73.9323855 + }, + "nodes": [ + 4215812467, + 9903045884, + 3786728751 + ], + "geometry": [ + { "lat": 40.8050861, "lon": -73.9330483 }, + { "lat": 40.8048236, "lon": -73.9324254 }, + { "lat": 40.8048030, "lon": -73.9323855 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 128th Street", + "oneway": "yes", + "proposed:cycleway:left": "track", + "proposed:cycleway:left:oneway": "yes", + "surface": "asphalt", + "turn:lanes": "right|right" + } +}, +{ + "type": "way", + "id": 46130056, + "bounds": { + "minlat": 40.8068775, + "minlon": -73.9290658, + "maxlat": 40.8083858, + "maxlon": -73.9254650 + }, + "nodes": [ + 42749817, + 9908636606, + 9908621500, + 9908621499, + 42732845, + 11427300072, + 471243365 + ], + "geometry": [ + { "lat": 40.8083858, "lon": -73.9290658 }, + { "lat": 40.8083269, "lon": -73.9289247 }, + { "lat": 40.8075963, "lon": -73.9271875 }, + { "lat": 40.8075691, "lon": -73.9271245 }, + { "lat": 40.8075201, "lon": -73.9270069 }, + { "lat": 40.8074683, "lon": -73.9268827 }, + { "lat": 40.8068775, "lon": -73.9254650 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 134th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "134th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46130059, + "bounds": { + "minlat": 40.8118784, + "minlon": -73.9321706, + "maxlat": 40.8136972, + "maxlon": -73.9314060 + }, + "nodes": [ + 5214547511, + 5214547516, + 9903106222, + 595801202, + 9903106223, + 2408974709, + 2408974714, + 9163775395, + 2408974721, + 2408974707, + 9163775393, + 9163775394, + 9903106224, + 2408979624, + 7111683122, + 2408979620, + 9903106225 + ], + "geometry": [ + { "lat": 40.8136972, "lon": -73.9314060 }, + { "lat": 40.8136341, "lon": -73.9314255 }, + { "lat": 40.8136120, "lon": -73.9314323 }, + { "lat": 40.8135879, "lon": -73.9314410 }, + { "lat": 40.8135599, "lon": -73.9314527 }, + { "lat": 40.8132394, "lon": -73.9315661 }, + { "lat": 40.8131509, "lon": -73.9316011 }, + { "lat": 40.8130773, "lon": -73.9316298 }, + { "lat": 40.8129991, "lon": -73.9316649 }, + { "lat": 40.8129186, "lon": -73.9317056 }, + { "lat": 40.8122337, "lon": -73.9320645 }, + { "lat": 40.8121805, "lon": -73.9320898 }, + { "lat": 40.8121189, "lon": -73.9321153 }, + { "lat": 40.8120605, "lon": -73.9321349 }, + { "lat": 40.8119860, "lon": -73.9321558 }, + { "lat": 40.8119352, "lon": -73.9321642 }, + { "lat": 40.8118784, "lon": -73.9321706 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Exterior Street", + "name_1": "I-87", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "New York State Office of Cyber Security (OCS) StreetSegmentPublic Dataset (http://gis.ny.gov/gisdata/inventories/details.cfm?DSID=932)", + "tiger:cfcc": "A15", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Major Deegan", + "tiger:name_base_1": "I-87", + "tiger:name_type": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46130060, + "bounds": { + "minlat": 40.8135273, + "minlon": -73.9310473, + "maxlat": 40.8136295, + "maxlon": -73.9310144 + }, + "nodes": [ + 5214547509, + 42760015 + ], + "geometry": [ + { "lat": 40.8135273, "lon": -73.9310473 }, + { "lat": 40.8136295, "lon": -73.9310144 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Gerard Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Major Deegan Serv", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46130061, + "bounds": { + "minlat": 40.8093262, + "minlon": -73.9294982, + "maxlat": 40.8095499, + "maxlon": -73.9292204 + }, + "nodes": [ + 42747177, + 567820429 + ], + "geometry": [ + { "lat": 40.8095499, "lon": -73.9292204 }, + { "lat": 40.8093262, "lon": -73.9294982 } + ], + "tags": { + "alt_name": "Third Avenue", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "4", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 46130064, + "bounds": { + "minlat": 40.8147133, + "minlon": -73.9290102, + "maxlat": 40.8149072, + "maxlon": -73.9289370 + }, + "nodes": [ + 42741445, + 12162704289, + 2408985655 + ], + "geometry": [ + { "lat": 40.8149072, "lon": -73.9289370 }, + { "lat": 40.8148421, "lon": -73.9289615 }, + { "lat": 40.8147133, "lon": -73.9290102 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "none|through;slight_right", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 46130066, + "bounds": { + "minlat": 40.8066513, + "minlon": -73.9242442, + "maxlat": 40.8071758, + "maxlon": -73.9230165 + }, + "nodes": [ + 42724756, + 5482371897, + 9908621372, + 42725346 + ], + "geometry": [ + { "lat": 40.8066513, "lon": -73.9230165 }, + { "lat": 40.8070109, "lon": -73.9238635 }, + { "lat": 40.8071341, "lon": -73.9241563 }, + { "lat": 40.8071758, "lon": -73.9242442 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 46130105, + "bounds": { + "minlat": 40.8015550, + "minlon": -73.9073086, + "maxlat": 40.8021284, + "maxlon": -73.9063050 + }, + "nodes": [ + 42779743, + 9701343009, + 9910669613, + 9910669614, + 42770121 + ], + "geometry": [ + { "lat": 40.8015550, "lon": -73.9063050 }, + { "lat": 40.8020225, "lon": -73.9071062 }, + { "lat": 40.8020711, "lon": -73.9071898 }, + { "lat": 40.8020964, "lon": -73.9072356 }, + { "lat": 40.8021284, "lon": -73.9073086 } + ], + "tags": { + "access": "private", + "hgv": "local", + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 46130106, + "bounds": { + "minlat": 40.8042010, + "minlon": -73.9128857, + "maxlat": 40.8045703, + "maxlon": -73.9121361 + }, + "nodes": [ + 588115631, + 13003790094, + 588114597 + ], + "geometry": [ + { "lat": 40.8042010, "lon": -73.9128857 }, + { "lat": 40.8045146, "lon": -73.9122483 }, + { "lat": 40.8045703, "lon": -73.9121361 } + ], + "tags": { + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline" + } +}, +{ + "type": "way", + "id": 46130107, + "bounds": { + "minlat": 40.8037128, + "minlon": -73.9188128, + "maxlat": 40.8049012, + "maxlon": -73.9158500 + }, + "nodes": [ + 42728721, + 9156970102, + 9156970101, + 9156970100, + 471243875, + 7555027618, + 7043037357, + 10168413325, + 10168413328, + 7043037345, + 7042955057, + 7555049545, + 11427300043, + 42747190 + ], + "geometry": [ + { "lat": 40.8037128, "lon": -73.9158500 }, + { "lat": 40.8037340, "lon": -73.9159689 }, + { "lat": 40.8037573, "lon": -73.9160745 }, + { "lat": 40.8037887, "lon": -73.9161830 }, + { "lat": 40.8038253, "lon": -73.9162919 }, + { "lat": 40.8041325, "lon": -73.9169921 }, + { "lat": 40.8042710, "lon": -73.9173262 }, + { "lat": 40.8044117, "lon": -73.9176585 }, + { "lat": 40.8044523, "lon": -73.9177582 }, + { "lat": 40.8045679, "lon": -73.9180316 }, + { "lat": 40.8046290, "lon": -73.9181817 }, + { "lat": 40.8046713, "lon": -73.9182807 }, + { "lat": 40.8048632, "lon": -73.9187248 }, + { "lat": 40.8049012, "lon": -73.9188128 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "East 135th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 46130110, + "bounds": { + "minlat": 40.8061627, + "minlon": -73.9091832, + "maxlat": 40.8072023, + "maxlon": -73.9066984 + }, + "nodes": [ + 42724872, + 10902729994, + 5175586413, + 42753407, + 13247555775, + 42743468 + ], + "geometry": [ + { "lat": 40.8072023, "lon": -73.9066984 }, + { "lat": 40.8067385, "lon": -73.9077990 }, + { "lat": 40.8067168, "lon": -73.9078504 }, + { "lat": 40.8063957, "lon": -73.9085969 }, + { "lat": 40.8062048, "lon": -73.9090730 }, + { "lat": 40.8061627, "lon": -73.9091832 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10472" + } +}, +{ + "type": "way", + "id": 46130120, + "bounds": { + "minlat": 40.8046449, + "minlon": -73.9123046, + "maxlat": 40.8051105, + "maxlon": -73.9113905 + }, + "nodes": [ + 42753400, + 7672343319, + 596271820, + 13003720154, + 10700391950 + ], + "geometry": [ + { "lat": 40.8051105, "lon": -73.9113905 }, + { "lat": 40.8049056, "lon": -73.9118437 }, + { "lat": 40.8047417, "lon": -73.9121590 }, + { "lat": 40.8046971, "lon": -73.9122261 }, + { "lat": 40.8046449, "lon": -73.9123046 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_type": "Blvd", + "tiger:zip_left": "10472", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 46130128, + "bounds": { + "minlat": 40.8054522, + "minlon": -73.9102195, + "maxlat": 40.8060281, + "maxlon": -73.9090267 + }, + "nodes": [ + 588114535, + 13039019683, + 13247555769, + 588114548 + ], + "geometry": [ + { "lat": 40.8054522, "lon": -73.9102195 }, + { "lat": 40.8055027, "lon": -73.9101106 }, + { "lat": 40.8059715, "lon": -73.9091434 }, + { "lat": 40.8060281, "lon": -73.9090267 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46130134, + "bounds": { + "minlat": 40.8016846, + "minlon": -73.9228973, + "maxlat": 40.8040205, + "maxlon": -73.9173243 + }, + "nodes": [ + 42739612, + 11427299959, + 42760999, + 11427299960, + 7668989451, + 7668989446, + 9908642164, + 7553992429, + 9908642165, + 9908642166, + 42743550 + ], + "geometry": [ + { "lat": 40.8040205, "lon": -73.9228973 }, + { "lat": 40.8037220, "lon": -73.9221820 }, + { "lat": 40.8036775, "lon": -73.9220753 }, + { "lat": 40.8036392, "lon": -73.9219820 }, + { "lat": 40.8035628, "lon": -73.9217960 }, + { "lat": 40.8031027, "lon": -73.9206906 }, + { "lat": 40.8029722, "lon": -73.9203830 }, + { "lat": 40.8029288, "lon": -73.9202800 }, + { "lat": 40.8028841, "lon": -73.9201723 }, + { "lat": 40.8028632, "lon": -73.9201285 }, + { "lat": 40.8016846, "lon": -73.9173243 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 132nd Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "132nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 46130135, + "bounds": { + "minlat": 40.8046958, + "minlon": -73.9229539, + "maxlat": 40.8049299, + "maxlon": -73.9224013 + }, + "nodes": [ + 13733745014, + 13703412784, + 9908650925, + 42739615 + ], + "geometry": [ + { "lat": 40.8049299, "lon": -73.9229539 }, + { "lat": 40.8048829, "lon": -73.9228424 }, + { "lat": 40.8047327, "lon": -73.9224864 }, + { "lat": 40.8046958, "lon": -73.9224013 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "Jersey_barrier", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes:forward": "||right" + } +}, +{ + "type": "way", + "id": 46130138, + "bounds": { + "minlat": 40.8031772, + "minlon": -73.9172901, + "maxlat": 40.8032548, + "maxlon": -73.9155301 + }, + "nodes": [ + 42753109, + 5944541688, + 9156970096, + 9156970097, + 471247045 + ], + "geometry": [ + { "lat": 40.8031772, "lon": -73.9172901 }, + { "lat": 40.8031818, "lon": -73.9164506 }, + { "lat": 40.8031999, "lon": -73.9160742 }, + { "lat": 40.8032219, "lon": -73.9158216 }, + { "lat": 40.8032548, "lon": -73.9155301 } + ], + "tags": { + "foot": "no", + "hgv": "designated", + "highway": "primary", + "layer": "-1", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 46130141, + "bounds": { + "minlat": 40.8032548, + "minlon": -73.9155301, + "maxlat": 40.8042010, + "maxlon": -73.9128857 + }, + "nodes": [ + 471247045, + 9156970098, + 588115606, + 9156970099, + 9156942273, + 5944903668, + 588115617, + 588115631 + ], + "geometry": [ + { "lat": 40.8032548, "lon": -73.9155301 }, + { "lat": 40.8032890, "lon": -73.9153171 }, + { "lat": 40.8033296, "lon": -73.9151092 }, + { "lat": 40.8033915, "lon": -73.9148663 }, + { "lat": 40.8035007, "lon": -73.9145036 }, + { "lat": 40.8035750, "lon": -73.9142857 }, + { "lat": 40.8036665, "lon": -73.9140688 }, + { "lat": 40.8042010, "lon": -73.9128857 } + ], + "tags": { + "foot": "no", + "hgv": "designated", + "highway": "primary", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46130145, + "bounds": { + "minlat": 40.8125899, + "minlon": -73.9203332, + "maxlat": 40.8132263, + "maxlon": -73.9198630 + }, + "nodes": [ + 9908621394, + 9908621395, + 42761245, + 9908621400, + 4207707364 + ], + "geometry": [ + { "lat": 40.8125899, "lon": -73.9203332 }, + { "lat": 40.8128350, "lon": -73.9201515 }, + { "lat": 40.8128956, "lon": -73.9201066 }, + { "lat": 40.8129556, "lon": -73.9200623 }, + { "lat": 40.8132263, "lon": -73.9198630 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46139021, + "bounds": { + "minlat": 40.7469395, + "minlon": -73.9732058, + "maxlat": 40.7475701, + "maxlon": -73.9727421 + }, + "nodes": [ + 42445666, + 9987259784, + 9987259787, + 42454006 + ], + "geometry": [ + { "lat": 40.7475701, "lon": -73.9727421 }, + { "lat": 40.7475082, "lon": -73.9727876 }, + { "lat": 40.7470111, "lon": -73.9731532 }, + { "lat": 40.7469395, "lon": -73.9732058 } + ], + "tags": { + "destination:lanes:forward": "Queens Midtown Tunnel", + "highway": "unclassified", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Tunnel Approach Street", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Tunnel Entrance", + "tiger:name_type": "St", + "tiger:reviewed": "aerial", + "turn:lanes:backward": "left|left", + "turn:lanes:forward": "left;through" + } +}, +{ + "type": "way", + "id": 46139023, + "bounds": { + "minlat": 40.7445022, + "minlon": -73.9752025, + "maxlat": 40.7451792, + "maxlon": -73.9747430 + }, + "nodes": [ + 42445387, + 3932847293, + 9971314373, + 9971314376, + 9971314372, + 4259278559, + 42434969 + ], + "geometry": [ + { "lat": 40.7445022, "lon": -73.9752025 }, + { "lat": 40.7446018, "lon": -73.9751427 }, + { "lat": 40.7446692, "lon": -73.9751007 }, + { "lat": 40.7447465, "lon": -73.9750504 }, + { "lat": 40.7448246, "lon": -73.9749965 }, + { "lat": 40.7451165, "lon": -73.9747870 }, + { "lat": 40.7451792, "lon": -73.9747430 } + ], + "tags": { + "destination": "Queens-Midtown Tunnel", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Tunnel Approach Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Tunnel Entrance", + "tiger:name_type": "St", + "tiger:reviewed": "aerial", + "turn:lanes": "left;through|through" + } +}, +{ + "type": "way", + "id": 46139027, + "bounds": { + "minlat": 40.7601736, + "minlon": -73.9988397, + "maxlat": 40.7605257, + "maxlon": -73.9985870 + }, + "nodes": [ + 11235977918, + 10168212475, + 42430669 + ], + "geometry": [ + { "lat": 40.7605257, "lon": -73.9985870 }, + { "lat": 40.7602412, "lon": -73.9987911 }, + { "lat": 40.7601736, "lon": -73.9988397 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46139029, + "bounds": { + "minlat": 40.7589479, + "minlon": -73.9985897, + "maxlat": 40.7592748, + "maxlon": -73.9977989 + }, + "nodes": [ + 4207942159, + 593920865 + ], + "geometry": [ + { "lat": 40.7592748, "lon": -73.9985897 }, + { "lat": 40.7589479, "lon": -73.9977989 } + ], + "tags": { + "alt_name": "West 40 Street", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46139033, + "bounds": { + "minlat": 40.7237872, + "minlon": -74.0061125, + "maxlat": 40.7244077, + "maxlon": -74.0059462 + }, + "nodes": [ + 42424864, + 4890333653, + 4890633720, + 4616536349, + 13846767407, + 42423456 + ], + "geometry": [ + { "lat": 40.7244077, "lon": -74.0059462 }, + { "lat": 40.7243170, "lon": -74.0059619 }, + { "lat": 40.7238598, "lon": -74.0060512 }, + { "lat": 40.7238395, "lon": -74.0060577 }, + { "lat": 40.7238183, "lon": -74.0060747 }, + { "lat": 40.7237872, "lon": -74.0061125 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "old_ref": "NY 1A", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 46139034, + "bounds": { + "minlat": 40.7265020, + "minlon": -74.0056475, + "maxlat": 40.7284709, + "maxlon": -74.0053413 + }, + "nodes": [ + 9259617996, + 8307641865, + 42455200, + 8307641866, + 8307641873, + 42439345, + 8307641874, + 3252582134 + ], + "geometry": [ + { "lat": 40.7284709, "lon": -74.0053413 }, + { "lat": 40.7279583, "lon": -74.0054144 }, + { "lat": 40.7278806, "lon": -74.0054267 }, + { "lat": 40.7278190, "lon": -74.0054368 }, + { "lat": 40.7272312, "lon": -74.0055330 }, + { "lat": 40.7271570, "lon": -74.0055450 }, + { "lat": 40.7270888, "lon": -74.0055557 }, + { "lat": 40.7265020, "lon": -74.0056475 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 46139035, + "bounds": { + "minlat": 40.7203422, + "minlon": -74.0054889, + "maxlat": 40.7206562, + "maxlon": -74.0052237 + }, + "nodes": [ + 42434837, + 4136965230, + 4136965229, + 2155551109, + 11492801296, + 42430126 + ], + "geometry": [ + { "lat": 40.7203422, "lon": -74.0054889 }, + { "lat": 40.7203543, "lon": -74.0054668 }, + { "lat": 40.7203723, "lon": -74.0054447 }, + { "lat": 40.7205037, "lon": -74.0053427 }, + { "lat": 40.7206334, "lon": -74.0052466 }, + { "lat": 40.7206562, "lon": -74.0052237 } + ], + "tags": { + "cycleway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "noref": "yes", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 46139036, + "bounds": { + "minlat": 40.7206562, + "minlon": -74.0052237, + "maxlat": 40.7213666, + "maxlon": -74.0046193 + }, + "nodes": [ + 42430126, + 4890621095, + 2151385487, + 42440829 + ], + "geometry": [ + { "lat": 40.7206562, "lon": -74.0052237 }, + { "lat": 40.7208010, "lon": -74.0051009 }, + { "lat": 40.7212604, "lon": -74.0047083 }, + { "lat": 40.7213666, "lon": -74.0046193 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 46139037, + "bounds": { + "minlat": 40.7300458, + "minlon": -73.9911109, + "maxlat": 40.7306356, + "maxlon": -73.9906308 + }, + "nodes": [ + 42445543, + 12179562758, + 5784518545, + 12179562759, + 12179562761, + 12179562762, + 12179562760, + 12179565607, + 3919359299, + 42445548 + ], + "geometry": [ + { "lat": 40.7300458, "lon": -73.9911109 }, + { "lat": 40.7300713, "lon": -73.9910803 }, + { "lat": 40.7300986, "lon": -73.9910494 }, + { "lat": 40.7301552, "lon": -73.9909878 }, + { "lat": 40.7301834, "lon": -73.9909589 }, + { "lat": 40.7302068, "lon": -73.9909385 }, + { "lat": 40.7302316, "lon": -73.9909185 }, + { "lat": 40.7305169, "lon": -73.9907139 }, + { "lat": 40.7305592, "lon": -73.9906839 }, + { "lat": 40.7306356, "lon": -73.9906308 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 46139038, + "bounds": { + "minlat": 40.7187349, + "minlon": -74.0002887, + "maxlat": 40.7200616, + "maxlon": -73.9990790 + }, + "nodes": [ + 42445489, + 12197904817, + 8231927330, + 12197904806, + 8231931836, + 42439580, + 8231931837, + 4202984493 + ], + "geometry": [ + { "lat": 40.7200616, "lon": -73.9990790 }, + { "lat": 40.7200242, "lon": -73.9991121 }, + { "lat": 40.7199971, "lon": -73.9991380 }, + { "lat": 40.7192885, "lon": -73.9997846 }, + { "lat": 40.7192475, "lon": -73.9998220 }, + { "lat": 40.7192031, "lon": -73.9998623 }, + { "lat": 40.7191604, "lon": -73.9999015 }, + { "lat": 40.7187349, "lon": -74.0002887 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 46139039, + "bounds": { + "minlat": 40.7155918, + "minlon": -74.0030354, + "maxlat": 40.7179480, + "maxlon": -74.0010080 + }, + "nodes": [ + 42445484, + 8307641746, + 12197904842, + 8307641737, + 42445481, + 8307641738, + 12198027552, + 4878781664, + 42445479, + 7132560113, + 11599251907, + 7132560149, + 42445474, + 7132560115, + 42445469, + 11599251905, + 12198027561, + 12198027562, + 11599251906, + 7132560114, + 12198027563, + 11503466094, + 42445466 + ], + "geometry": [ + { "lat": 40.7179480, "lon": -74.0010080 }, + { "lat": 40.7178989, "lon": -74.0010518 }, + { "lat": 40.7173979, "lon": -74.0015130 }, + { "lat": 40.7173600, "lon": -74.0015464 }, + { "lat": 40.7173175, "lon": -74.0015833 }, + { "lat": 40.7172691, "lon": -74.0016257 }, + { "lat": 40.7168257, "lon": -74.0020158 }, + { "lat": 40.7167885, "lon": -74.0020480 }, + { "lat": 40.7167378, "lon": -74.0020928 }, + { "lat": 40.7167054, "lon": -74.0021203 }, + { "lat": 40.7162863, "lon": -74.0024893 }, + { "lat": 40.7162482, "lon": -74.0025229 }, + { "lat": 40.7161862, "lon": -74.0025774 }, + { "lat": 40.7161232, "lon": -74.0026328 }, + { "lat": 40.7158979, "lon": -74.0028270 }, + { "lat": 40.7157736, "lon": -74.0029365 }, + { "lat": 40.7157485, "lon": -74.0029552 }, + { "lat": 40.7157169, "lon": -74.0029764 }, + { "lat": 40.7156920, "lon": -74.0029911 }, + { "lat": 40.7156731, "lon": -74.0030036 }, + { "lat": 40.7156542, "lon": -74.0030131 }, + { "lat": 40.7156320, "lon": -74.0030227 }, + { "lat": 40.7155918, "lon": -74.0030354 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 46139040, + "bounds": { + "minlat": 40.7226474, + "minlon": -74.0081643, + "maxlat": 40.7231488, + "maxlon": -74.0080724 + }, + "nodes": [ + 42436340, + 8304498373, + 13294718036, + 12417324313 + ], + "geometry": [ + { "lat": 40.7226474, "lon": -74.0081643 }, + { "lat": 40.7227150, "lon": -74.0081505 }, + { "lat": 40.7227663, "lon": -74.0081415 }, + { "lat": 40.7231488, "lon": -74.0080724 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46139041, + "bounds": { + "minlat": 40.7237633, + "minlon": -74.0079290, + "maxlat": 40.7245758, + "maxlon": -74.0077594 + }, + "nodes": [ + 12417264049, + 4602429319, + 4602429329, + 13846767115, + 13846767114, + 42432116 + ], + "geometry": [ + { "lat": 40.7237633, "lon": -74.0079290 }, + { "lat": 40.7238482, "lon": -74.0079132 }, + { "lat": 40.7239623, "lon": -74.0078838 }, + { "lat": 40.7240303, "lon": -74.0078625 }, + { "lat": 40.7241234, "lon": -74.0078386 }, + { "lat": 40.7245758, "lon": -74.0077594 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46139042, + "bounds": { + "minlat": 40.7206149, + "minlon": -74.0084726, + "maxlat": 40.7213306, + "maxlon": -74.0083435 + }, + "nodes": [ + 42424610, + 8304498055, + 3681001629, + 13294718051, + 42436308 + ], + "geometry": [ + { "lat": 40.7206149, "lon": -74.0084726 }, + { "lat": 40.7207428, "lon": -74.0084479 }, + { "lat": 40.7208934, "lon": -74.0084206 }, + { "lat": 40.7212692, "lon": -74.0083543 }, + { "lat": 40.7213306, "lon": -74.0083435 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "20 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46139043, + "bounds": { + "minlat": 40.7199105, + "minlon": -73.9929475, + "maxlat": 40.7200534, + "maxlon": -73.9928771 + }, + "nodes": [ + 42429754, + 486869282 + ], + "geometry": [ + { "lat": 40.7199105, "lon": -73.9929475 }, + { "lat": 40.7200534, "lon": -73.9928771 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "designated", + "highway": "secondary", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 46139045, + "bounds": { + "minlat": 40.7283741, + "minlon": -74.0028488, + "maxlat": 40.7284697, + "maxlon": -74.0028017 + }, + "nodes": [ + 4321748238, + 4321748237 + ], + "geometry": [ + { "lat": 40.7283741, "lon": -74.0028488 }, + { "lat": 40.7284697, "lon": -74.0028017 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "lane", + "foot": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 46139046, + "bounds": { + "minlat": 40.7206562, + "minlon": -74.0052803, + "maxlat": 40.7214938, + "maxlon": -74.0052237 + }, + "nodes": [ + 42430126, + 42430131, + 5155817221, + 11492801307 + ], + "geometry": [ + { "lat": 40.7206562, "lon": -74.0052237 }, + { "lat": 40.7210318, "lon": -74.0052509 }, + { "lat": 40.7211418, "lon": -74.0052584 }, + { "lat": 40.7214938, "lon": -74.0052803 } + ], + "tags": { + "alt_name:ko": "6번가", + "change": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "20 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "noref": "yes", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 46139047, + "bounds": { + "minlat": 40.7191029, + "minlon": -73.9902811, + "maxlat": 40.7192474, + "maxlon": -73.9902109 + }, + "nodes": [ + 42429762, + 12195880614, + 486868830 + ], + "geometry": [ + { "lat": 40.7191029, "lon": -73.9902811 }, + { "lat": 40.7191537, "lon": -73.9902564 }, + { "lat": 40.7192474, "lon": -73.9902109 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 46139048, + "bounds": { + "minlat": 40.7160352, + "minlon": -73.9921686, + "maxlat": 40.7174356, + "maxlon": -73.9914520 + }, + "nodes": [ + 42437996, + 5043084245, + 13001304759, + 6695729258, + 6139477297, + 5863593975, + 3212472963, + 5863593965, + 9505971550 + ], + "geometry": [ + { "lat": 40.7174356, "lon": -73.9914520 }, + { "lat": 40.7173594, "lon": -73.9914910 }, + { "lat": 40.7173288, "lon": -73.9915067 }, + { "lat": 40.7168095, "lon": -73.9917724 }, + { "lat": 40.7163935, "lon": -73.9919853 }, + { "lat": 40.7163088, "lon": -73.9920286 }, + { "lat": 40.7162541, "lon": -73.9920566 }, + { "lat": 40.7162038, "lon": -73.9920824 }, + { "lat": 40.7160352, "lon": -73.9921686 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 46139796, + "bounds": { + "minlat": 40.7343471, + "minlon": -73.9362915, + "maxlat": 40.7350026, + "maxlon": -73.9358700 + }, + "nodes": [ + 42896778, + 11211159965, + 5891894648, + 8097303867, + 9982697958, + 42888683 + ], + "geometry": [ + { "lat": 40.7350026, "lon": -73.9362915 }, + { "lat": 40.7349284, "lon": -73.9362434 }, + { "lat": 40.7348881, "lon": -73.9362172 }, + { "lat": 40.7344523, "lon": -73.9359366 }, + { "lat": 40.7344084, "lon": -73.9359090 }, + { "lat": 40.7343471, "lon": -73.9358700 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Starr Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46139798, + "bounds": { + "minlat": 40.7343656, + "minlon": -73.9380656, + "maxlat": 40.7345565, + "maxlon": -73.9374463 + }, + "nodes": [ + 1056072092, + 1533280144, + 597294498 + ], + "geometry": [ + { "lat": 40.7343656, "lon": -73.9380656 }, + { "lat": 40.7343697, "lon": -73.9378214 }, + { "lat": 40.7345565, "lon": -73.9374463 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "yes", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 46139799, + "bounds": { + "minlat": 40.7351255, + "minlon": -73.9359672, + "maxlat": 40.7363566, + "maxlon": -73.9326659 + }, + "nodes": [ + 9982697957, + 9982697955, + 42896784, + 9981925180, + 11155242465, + 5482230599, + 5891894642, + 9981925178, + 11155242463, + 42896787 + ], + "geometry": [ + { "lat": 40.7351255, "lon": -73.9359672 }, + { "lat": 40.7355257, "lon": -73.9348694 }, + { "lat": 40.7355614, "lon": -73.9347826 }, + { "lat": 40.7355912, "lon": -73.9347099 }, + { "lat": 40.7356020, "lon": -73.9346807 }, + { "lat": 40.7359143, "lon": -73.9338396 }, + { "lat": 40.7361945, "lon": -73.9330873 }, + { "lat": 40.7362817, "lon": -73.9328482 }, + { "lat": 40.7363216, "lon": -73.9327511 }, + { "lat": 40.7363566, "lon": -73.9326659 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 46139800, + "bounds": { + "minlat": 40.7350026, + "minlon": -73.9367086, + "maxlat": 40.7356567, + "maxlon": -73.9362915 + }, + "nodes": [ + 42896778, + 9982697950, + 8549558981, + 9982697951, + 1056085659 + ], + "geometry": [ + { "lat": 40.7350026, "lon": -73.9362915 }, + { "lat": 40.7350699, "lon": -73.9363354 }, + { "lat": 40.7355569, "lon": -73.9366479 }, + { "lat": 40.7355899, "lon": -73.9366692 }, + { "lat": 40.7356567, "lon": -73.9367086 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Starr Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46139826, + "bounds": { + "minlat": 40.7708318, + "minlon": -73.9180103, + "maxlat": 40.7713145, + "maxlon": -73.9172400 + }, + "nodes": [ + 42849703, + 7784017526, + 9179198066, + 5104280319, + 4215833540 + ], + "geometry": [ + { "lat": 40.7708318, "lon": -73.9172400 }, + { "lat": 40.7708937, "lon": -73.9173389 }, + { "lat": 40.7709414, "lon": -73.9174117 }, + { "lat": 40.7710774, "lon": -73.9176789 }, + { "lat": 40.7713145, "lon": -73.9180103 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "5", + "lanes:bus:forward": "1", + "level": "0", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46139827, + "bounds": { + "minlat": 40.7694974, + "minlon": -73.9166059, + "maxlat": 40.7698071, + "maxlon": -73.9148573 + }, + "nodes": [ + 7659376752, + 13098035648, + 9179198070, + 3020369619, + 42908487, + 3020369631, + 6406731043, + 42866647 + ], + "geometry": [ + { "lat": 40.7698071, "lon": -73.9166059 }, + { "lat": 40.7697919, "lon": -73.9165391 }, + { "lat": 40.7697792, "lon": -73.9164838 }, + { "lat": 40.7696940, "lon": -73.9161093 }, + { "lat": 40.7696522, "lon": -73.9158597 }, + { "lat": 40.7695983, "lon": -73.9154877 }, + { "lat": 40.7695091, "lon": -73.9149388 }, + { "lat": 40.7694974, "lon": -73.9148573 } + ], + "tags": { + "foot": "yes", + "hgv": "designated", + "highway": "secondary", + "name": "Astoria Boulevard South", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 46140173, + "bounds": { + "minlat": 40.7714694, + "minlon": -73.9182483, + "maxlat": 40.7729880, + "maxlon": -73.9163880 + }, + "nodes": [ + 42818207, + 6450635175, + 42833271, + 2522794126, + 11591692627, + 2802664429, + 7714984328, + 42833276 + ], + "geometry": [ + { "lat": 40.7729880, "lon": -73.9163880 }, + { "lat": 40.7729307, "lon": -73.9164582 }, + { "lat": 40.7722937, "lon": -73.9172386 }, + { "lat": 40.7721793, "lon": -73.9173786 }, + { "lat": 40.7719816, "lon": -73.9176208 }, + { "lat": 40.7717505, "lon": -73.9179039 }, + { "lat": 40.7715824, "lon": -73.9181099 }, + { "lat": 40.7714694, "lon": -73.9182483 } + ], + "tags": { + "hgv": "designated", + "highway": "tertiary", + "name": "29th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46140174, + "bounds": { + "minlat": 40.7714694, + "minlon": -73.9192476, + "maxlat": 40.7722336, + "maxlon": -73.9182483 + }, + "nodes": [ + 42833276, + 9179198030, + 42817462, + 13088876754 + ], + "geometry": [ + { "lat": 40.7714694, "lon": -73.9182483 }, + { "lat": 40.7716267, "lon": -73.9184080 }, + { "lat": 40.7719916, "lon": -73.9188911 }, + { "lat": 40.7722336, "lon": -73.9192476 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46140175, + "bounds": { + "minlat": 40.7534590, + "minlon": -73.9424300, + "maxlat": 40.7539980, + "maxlon": -73.9414060 + }, + "nodes": [ + 42825882, + 7734653724, + 9622473000, + 42895308 + ], + "geometry": [ + { "lat": 40.7539980, "lon": -73.9424300 }, + { "lat": 40.7539381, "lon": -73.9423159 }, + { "lat": 40.7535015, "lon": -73.9414868 }, + { "lat": 40.7534590, "lon": -73.9414060 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lane_markings": "no", + "lit": "yes", + "name": "41st Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "41st", + "tiger:name_type": "Ave", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 46140176, + "bounds": { + "minlat": 40.7510037, + "minlon": -73.9391219, + "maxlat": 40.7522423, + "maxlon": -73.9367868 + }, + "nodes": [ + 42808193, + 5493300577, + 7069690920, + 10744356603, + 42872024, + 10744391820, + 7833495857, + 7103675573, + 11699225522, + 6785727233, + 42817424, + 11699225519, + 11211139833, + 11699225518, + 6785727237, + 42833363 + ], + "geometry": [ + { "lat": 40.7522423, "lon": -73.9391219 }, + { "lat": 40.7521994, "lon": -73.9390422 }, + { "lat": 40.7521155, "lon": -73.9388853 }, + { "lat": 40.7520430, "lon": -73.9387498 }, + { "lat": 40.7518200, "lon": -73.9383330 }, + { "lat": 40.7517890, "lon": -73.9382745 }, + { "lat": 40.7517326, "lon": -73.9381682 }, + { "lat": 40.7515991, "lon": -73.9379165 }, + { "lat": 40.7514474, "lon": -73.9376303 }, + { "lat": 40.7514268, "lon": -73.9375913 }, + { "lat": 40.7514110, "lon": -73.9375620 }, + { "lat": 40.7513768, "lon": -73.9374969 }, + { "lat": 40.7510683, "lon": -73.9369098 }, + { "lat": 40.7510462, "lon": -73.9368678 }, + { "lat": 40.7510206, "lon": -73.9368191 }, + { "lat": 40.7510037, "lon": -73.9367868 } + ], + "tags": { + "highway": "residential", + "name": "41st Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46140177, + "bounds": { + "minlat": 40.7753908, + "minlon": -73.9230165, + "maxlat": 40.7766191, + "maxlon": -73.9215156 + }, + "nodes": [ + 42818182, + 6450583548, + 7746705649, + 42826000, + 11107942792, + 42826005, + 11420421074, + 11591692615, + 13885263274, + 7714984342, + 42826008 + ], + "geometry": [ + { "lat": 40.7766191, "lon": -73.9215156 }, + { "lat": 40.7765564, "lon": -73.9215940 }, + { "lat": 40.7763504, "lon": -73.9218508 }, + { "lat": 40.7760862, "lon": -73.9221820 }, + { "lat": 40.7758493, "lon": -73.9224663 }, + { "lat": 40.7755873, "lon": -73.9227807 }, + { "lat": 40.7755640, "lon": -73.9228086 }, + { "lat": 40.7754974, "lon": -73.9228885 }, + { "lat": 40.7754849, "lon": -73.9229035 }, + { "lat": 40.7754602, "lon": -73.9229332 }, + { "lat": 40.7753908, "lon": -73.9230165 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "hgv": "designated", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46140178, + "bounds": { + "minlat": 40.7766191, + "minlon": -73.9226582, + "maxlat": 40.7774189, + "maxlon": -73.9215156 + }, + "nodes": [ + 42812053, + 6450635159, + 7748157088, + 11107942800, + 6450583550, + 42818182 + ], + "geometry": [ + { "lat": 40.7774189, "lon": -73.9226582 }, + { "lat": 40.7773773, "lon": -73.9225988 }, + { "lat": 40.7773499, "lon": -73.9225597 }, + { "lat": 40.7771294, "lon": -73.9222447 }, + { "lat": 40.7766845, "lon": -73.9216091 }, + { "lat": 40.7766191, "lon": -73.9215156 } + ], + "tags": { + "hgv": "designated", + "highway": "residential", + "name": "24th Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "24th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11102", + "tiger:zip_right": "11102" + } +}, +{ + "type": "way", + "id": 46140179, + "bounds": { + "minlat": 40.7718676, + "minlon": -73.9163880, + "maxlat": 40.7729880, + "maxlon": -73.9148014 + }, + "nodes": [ + 42818207, + 6450635174, + 6450635178, + 42818209, + 7784017621, + 9776116446, + 42818215 + ], + "geometry": [ + { "lat": 40.7729880, "lon": -73.9163880 }, + { "lat": 40.7729465, "lon": -73.9163291 }, + { "lat": 40.7723733, "lon": -73.9155172 }, + { "lat": 40.7722884, "lon": -73.9153970 }, + { "lat": 40.7722185, "lon": -73.9152982 }, + { "lat": 40.7719067, "lon": -73.9148567 }, + { "lat": 40.7718676, "lon": -73.9148014 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "24th Avenue", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46140180, + "bounds": { + "minlat": 40.7418922, + "minlon": -73.9498212, + "maxlat": 40.7423276, + "maxlon": -73.9492952 + }, + "nodes": [ + 276317215, + 9179070597, + 2477804800, + 9179070598, + 2477804803, + 9179070599, + 276317216, + 276317219, + 9983412341, + 42836389 + ], + "geometry": [ + { "lat": 40.7423276, "lon": -73.9492952 }, + { "lat": 40.7422260, "lon": -73.9493656 }, + { "lat": 40.7421945, "lon": -73.9493841 }, + { "lat": 40.7421604, "lon": -73.9494070 }, + { "lat": 40.7421188, "lon": -73.9494410 }, + { "lat": 40.7420872, "lon": -73.9494737 }, + { "lat": 40.7420639, "lon": -73.9495049 }, + { "lat": 40.7420327, "lon": -73.9495520 }, + { "lat": 40.7419177, "lon": -73.9497675 }, + { "lat": 40.7418922, "lon": -73.9498212 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46140181, + "bounds": { + "minlat": 40.7416251, + "minlon": -73.9498212, + "maxlat": 40.7418922, + "maxlon": -73.9495180 + }, + "nodes": [ + 276317345, + 9179070592, + 2135570985, + 9179070594, + 276317361, + 9179070593, + 276317360, + 9983412339, + 42836389 + ], + "geometry": [ + { "lat": 40.7416251, "lon": -73.9495193 }, + { "lat": 40.7417395, "lon": -73.9495180 }, + { "lat": 40.7417642, "lon": -73.9495232 }, + { "lat": 40.7417917, "lon": -73.9495400 }, + { "lat": 40.7418174, "lon": -73.9495661 }, + { "lat": 40.7418369, "lon": -73.9495939 }, + { "lat": 40.7418518, "lon": -73.9496277 }, + { "lat": 40.7418652, "lon": -73.9496718 }, + { "lat": 40.7418922, "lon": -73.9498212 } + ], + "tags": { + "bicycle": "no", + "destination": "Midtown Tunnel;Manhattan;50th Avenue;To Pulaski Bridge", + "destination:ref": "I 495 West", + "foot": "no", + "highway": "tertiary", + "horse": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "50th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46140183, + "bounds": { + "minlat": 40.7489020, + "minlon": -73.9421415, + "maxlat": 40.7498313, + "maxlon": -73.9412869 + }, + "nodes": [ + 42818591, + 13146376345, + 9982745673, + 42818139 + ], + "geometry": [ + { "lat": 40.7498313, "lon": -73.9412869 }, + { "lat": 40.7497861, "lon": -73.9413281 }, + { "lat": 40.7489744, "lon": -73.9420687 }, + { "lat": 40.7489020, "lon": -73.9421415 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Crescent Street", + "name_1": "25th Street", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46140187, + "bounds": { + "minlat": 40.7504165, + "minlon": -73.9406478, + "maxlat": 40.7505312, + "maxlon": -73.9403653 + }, + "nodes": [ + 2969267798, + 13598289381, + 3785649057, + 2969267799 + ], + "geometry": [ + { "lat": 40.7505312, "lon": -73.9406478 }, + { "lat": 40.7504910, "lon": -73.9405616 }, + { "lat": 40.7504617, "lon": -73.9404989 }, + { "lat": 40.7504165, "lon": -73.9403653 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Queens Plaza South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46141498, + "bounds": { + "minlat": 40.7089648, + "minlon": -73.9601115, + "maxlat": 40.7091725, + "maxlon": -73.9594910 + }, + "nodes": [ + 2307230978, + 5606446477 + ], + "geometry": [ + { "lat": 40.7089648, "lon": -73.9594910 }, + { "lat": 40.7091725, "lon": -73.9601115 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 46141499, + "bounds": { + "minlat": 40.7088858, + "minlon": -73.9592632, + "maxlat": 40.7095541, + "maxlon": -73.9588604 + }, + "nodes": [ + 42480086, + 6245642038, + 9785615322, + 42480088 + ], + "geometry": [ + { "lat": 40.7088858, "lon": -73.9592632 }, + { "lat": 40.7089635, "lon": -73.9592231 }, + { "lat": 40.7095012, "lon": -73.9588926 }, + { "lat": 40.7095541, "lon": -73.9588604 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Havemeyer Street", + "name_1": "South 5th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Havemeyer", + "tiger:name_base_1": "5th", + "tiger:name_direction_prefix_1": "S", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 46141500, + "bounds": { + "minlat": 40.7106809, + "minlon": -73.9564585, + "maxlat": 40.7106906, + "maxlon": -73.9561958 + }, + "nodes": [ + 480217241, + 1893285378 + ], + "geometry": [ + { "lat": 40.7106809, "lon": -73.9561958 }, + { "lat": 40.7106906, "lon": -73.9564585 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "local", + "highway": "primary", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base_1": "Borinquen", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46141627, + "bounds": { + "minlat": 40.7095541, + "minlon": -73.9588604, + "maxlat": 40.7099066, + "maxlon": -73.9586420 + }, + "nodes": [ + 42480088, + 9785615324, + 1692483438 + ], + "geometry": [ + { "lat": 40.7095541, "lon": -73.9588604 }, + { "lat": 40.7096250, "lon": -73.9588167 }, + { "lat": 40.7099066, "lon": -73.9586420 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Havemeyer Street", + "name_1": "South 5th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Havemeyer", + "tiger:name_base_1": "5th", + "tiger:name_direction_prefix_1": "S", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "turn:lanes": "left|left;through|right" + } +}, +{ + "type": "way", + "id": 46141628, + "bounds": { + "minlat": 40.7089464, + "minlon": -73.9588604, + "maxlat": 40.7095541, + "maxlon": -73.9570987 + }, + "nodes": [ + 42480088, + 9785615323, + 9768167564, + 42482429, + 9768167566, + 598033024 + ], + "geometry": [ + { "lat": 40.7095541, "lon": -73.9588604 }, + { "lat": 40.7095214, "lon": -73.9587674 }, + { "lat": 40.7091091, "lon": -73.9575726 }, + { "lat": 40.7090800, "lon": -73.9574880 }, + { "lat": 40.7090559, "lon": -73.9574177 }, + { "lat": 40.7089464, "lon": -73.9570987 } + ], + "tags": { + "highway": "residential", + "name": "South 5th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46141629, + "bounds": { + "minlat": 40.7104805, + "minlon": -73.9556377, + "maxlat": 40.7105360, + "maxlon": -73.9551195 + }, + "nodes": [ + 479847986, + 8842929734, + 4593135560 + ], + "geometry": [ + { "lat": 40.7104805, "lon": -73.9556377 }, + { "lat": 40.7105261, "lon": -73.9552306 }, + { "lat": 40.7105360, "lon": -73.9551195 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 46141630, + "bounds": { + "minlat": 40.7103461, + "minlon": -73.9583486, + "maxlat": 40.7141005, + "maxlon": -73.9559948 + }, + "nodes": [ + 1893285374, + 9768177710, + 9768177729, + 42474135, + 9768177731, + 9957055559, + 42480096, + 9957055558, + 9955210355, + 42480099, + 9955210354, + 9768177599, + 42480109, + 9768177601, + 9955210360, + 42480117, + 9955210361, + 5481854404, + 6248588893, + 42480120 + ], + "geometry": [ + { "lat": 40.7103461, "lon": -73.9583486 }, + { "lat": 40.7103972, "lon": -73.9583122 }, + { "lat": 40.7108106, "lon": -73.9580387 }, + { "lat": 40.7108640, "lon": -73.9580030 }, + { "lat": 40.7109261, "lon": -73.9579640 }, + { "lat": 40.7115528, "lon": -73.9575703 }, + { "lat": 40.7116090, "lon": -73.9575350 }, + { "lat": 40.7116704, "lon": -73.9574961 }, + { "lat": 40.7121912, "lon": -73.9571663 }, + { "lat": 40.7122390, "lon": -73.9571360 }, + { "lat": 40.7122960, "lon": -73.9571000 }, + { "lat": 40.7126984, "lon": -73.9568463 }, + { "lat": 40.7127560, "lon": -73.9568100 }, + { "lat": 40.7128240, "lon": -73.9567669 }, + { "lat": 40.7133505, "lon": -73.9564328 }, + { "lat": 40.7133990, "lon": -73.9564020 }, + { "lat": 40.7134599, "lon": -73.9563662 }, + { "lat": 40.7137129, "lon": -73.9562172 }, + { "lat": 40.7140244, "lon": -73.9560355 }, + { "lat": 40.7141005, "lon": -73.9559948 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Havemeyer Street", + "name_1": "South 5th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Havemeyer", + "tiger:name_base_1": "5th", + "tiger:name_direction_prefix_1": "S", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 46141631, + "bounds": { + "minlat": 40.7074070, + "minlon": -73.9599380, + "maxlat": 40.7084795, + "maxlon": -73.9595160 + }, + "nodes": [ + 42478001, + 6235394758, + 42480084, + 42474673, + 9551483254 + ], + "geometry": [ + { "lat": 40.7074070, "lon": -73.9599380 }, + { "lat": 40.7074891, "lon": -73.9599239 }, + { "lat": 40.7079400, "lon": -73.9598460 }, + { "lat": 40.7082140, "lon": -73.9596790 }, + { "lat": 40.7084795, "lon": -73.9595160 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Havemeyer Street", + "name_1": "South 5th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Havemeyer", + "tiger:name_base_1": "5th", + "tiger:name_direction_prefix_1": "S", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 46141632, + "bounds": { + "minlat": 40.7106027, + "minlon": -73.9555467, + "maxlat": 40.7106191, + "maxlon": -73.9550673 + }, + "nodes": [ + 4209420712, + 8842929733, + 5754136581, + 9967927285, + 9967927284, + 9967927283, + 42504779 + ], + "geometry": [ + { "lat": 40.7106191, "lon": -73.9550673 }, + { "lat": 40.7106126, "lon": -73.9551745 }, + { "lat": 40.7106078, "lon": -73.9552812 }, + { "lat": 40.7106048, "lon": -73.9553465 }, + { "lat": 40.7106027, "lon": -73.9554092 }, + { "lat": 40.7106036, "lon": -73.9554819 }, + { "lat": 40.7106070, "lon": -73.9555467 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "local", + "highway": "primary", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base_1": "Borinquen", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46141634, + "bounds": { + "minlat": 40.7201887, + "minlon": -73.9443942, + "maxlat": 40.7202425, + "maxlon": -73.9443505 + }, + "nodes": [ + 42502915, + 42502920 + ], + "geometry": [ + { "lat": 40.7201887, "lon": -73.9443505 }, + { "lat": 40.7202425, "lon": -73.9443942 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694" + } +}, +{ + "type": "way", + "id": 46141635, + "bounds": { + "minlat": 40.7350064, + "minlon": -73.9528837, + "maxlat": 40.7367222, + "maxlon": -73.9525740 + }, + "nodes": [ + 597261864, + 12042056977, + 597261861 + ], + "geometry": [ + { "lat": 40.7367222, "lon": -73.9528837 }, + { "lat": 40.7353131, "lon": -73.9526466 }, + { "lat": 40.7350064, "lon": -73.9525740 } + ], + "tags": { + "bicycle": "no", + "cycleway:left": "no", + "cycleway:right": "separate", + "foot": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "tiger:cfcc": "A49", + "tiger:county": "Kings, NY", + "tiger:name_base": "Mc Guinness", + "tiger:name_base_1": "Pulaski", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Brg", + "tiger:reviewed": "no", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 46141636, + "bounds": { + "minlat": 40.7302057, + "minlon": -73.9542532, + "maxlat": 40.7304591, + "maxlon": -73.9515692 + }, + "nodes": [ + 2987758879, + 6235394712, + 11155242475, + 42514447, + 11155242477, + 42491236, + 11155242478, + 6235394722, + 42514448 + ], + "geometry": [ + { "lat": 40.7304591, "lon": -73.9515692 }, + { "lat": 40.7304501, "lon": -73.9516669 }, + { "lat": 40.7304367, "lon": -73.9518065 }, + { "lat": 40.7303694, "lon": -73.9525082 }, + { "lat": 40.7303161, "lon": -73.9530773 }, + { "lat": 40.7302799, "lon": -73.9534637 }, + { "lat": 40.7302760, "lon": -73.9535047 }, + { "lat": 40.7302146, "lon": -73.9541496 }, + { "lat": 40.7302057, "lon": -73.9542532 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 46141639, + "bounds": { + "minlat": 40.7448673, + "minlon": -73.9480850, + "maxlat": 40.7456135, + "maxlon": -73.9461769 + }, + "nodes": [ + 4203034929, + 42844256, + 597255502, + 42844259, + 42843268 + ], + "geometry": [ + { "lat": 40.7448673, "lon": -73.9480850 }, + { "lat": 40.7450853, "lon": -73.9475086 }, + { "lat": 40.7453545, "lon": -73.9468238 }, + { "lat": 40.7454691, "lon": -73.9465388 }, + { "lat": 40.7456135, "lon": -73.9461769 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46154281, + "bounds": { + "minlat": 40.7138032, + "minlon": -73.9850499, + "maxlat": 40.7143755, + "maxlon": -73.9813220 + }, + "nodes": [ + 42435931, + 5804425627, + 42431999, + 7153367759, + 7184916487, + 7499128116, + 7499128125, + 592405093, + 9297513850, + 9297513851, + 11038072615, + 9297513852, + 7499263656 + ], + "geometry": [ + { "lat": 40.7138032, "lon": -73.9850499 }, + { "lat": 40.7138163, "lon": -73.9849065 }, + { "lat": 40.7139044, "lon": -73.9839864 }, + { "lat": 40.7139783, "lon": -73.9833948 }, + { "lat": 40.7139796, "lon": -73.9833825 }, + { "lat": 40.7140667, "lon": -73.9825766 }, + { "lat": 40.7141027, "lon": -73.9822438 }, + { "lat": 40.7141884, "lon": -73.9814501 }, + { "lat": 40.7141996, "lon": -73.9814167 }, + { "lat": 40.7142341, "lon": -73.9813912 }, + { "lat": 40.7142718, "lon": -73.9813722 }, + { "lat": 40.7143039, "lon": -73.9813562 }, + { "lat": 40.7143755, "lon": -73.9813220 } + ], + "tags": { + "foot": "use_sidepath", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Henry Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "헨리 스트리트", + "name:ru": "Хенри-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5728794", + "wikipedia": "en:Henry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46154285, + "bounds": { + "minlat": 40.7144395, + "minlon": -73.9971755, + "maxlat": 40.7150259, + "maxlon": -73.9967631 + }, + "nodes": [ + 9584768447, + 12196074931, + 12196074937, + 12196074938, + 8746789253, + 4625620212, + 42437564 + ], + "geometry": [ + { "lat": 40.7144395, "lon": -73.9971755 }, + { "lat": 40.7145149, "lon": -73.9971201 }, + { "lat": 40.7145561, "lon": -73.9970907 }, + { "lat": 40.7146199, "lon": -73.9970451 }, + { "lat": 40.7149433, "lon": -73.9968139 }, + { "lat": 40.7149720, "lon": -73.9967962 }, + { "lat": 40.7150259, "lon": -73.9967631 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 46154286, + "bounds": { + "minlat": 40.7104831, + "minlon": -73.9852574, + "maxlat": 40.7106416, + "maxlon": -73.9846564 + }, + "nodes": [ + 588455697, + 9907939582, + 9907939581, + 588455699, + 9907939606, + 11037604141, + 6411125199, + 11037604139, + 11037604140, + 588455698 + ], + "geometry": [ + { "lat": 40.7106401, "lon": -73.9852574 }, + { "lat": 40.7106416, "lon": -73.9851821 }, + { "lat": 40.7106347, "lon": -73.9851206 }, + { "lat": 40.7106262, "lon": -73.9850721 }, + { "lat": 40.7106048, "lon": -73.9849992 }, + { "lat": 40.7105522, "lon": -73.9848789 }, + { "lat": 40.7105291, "lon": -73.9848149 }, + { "lat": 40.7105055, "lon": -73.9847493 }, + { "lat": 40.7104926, "lon": -73.9847034 }, + { "lat": 40.7104831, "lon": -73.9846564 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxheight": "12'5\"", + "maxspeed": "25 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46154287, + "bounds": { + "minlat": 40.7104831, + "minlon": -73.9847040, + "maxlat": 40.7107237, + "maxlon": -73.9846564 + }, + "nodes": [ + 588455698, + 42438531 + ], + "geometry": [ + { "lat": 40.7104831, "lon": -73.9846564 }, + { "lat": 40.7107237, "lon": -73.9847040 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Montgomery Street", + "name:etymology:wikidata": "Q444947", + "name:ko": "몽고메리 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46154291, + "bounds": { + "minlat": 40.7144207, + "minlon": -73.9911284, + "maxlat": 40.7146759, + "maxlon": -73.9902277 + }, + "nodes": [ + 42440785, + 8231942806, + 6129309605, + 9941087939, + 42440679 + ], + "geometry": [ + { "lat": 40.7144207, "lon": -73.9902277 }, + { "lat": 40.7144470, "lon": -73.9903731 }, + { "lat": 40.7145329, "lon": -73.9906627 }, + { "lat": 40.7146561, "lon": -73.9910638 }, + { "lat": 40.7146759, "lon": -73.9911284 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 15:00-23:00; Sa-Su 10:00-23:00)", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46154294, + "bounds": { + "minlat": 40.7116837, + "minlon": -73.9937507, + "maxlat": 40.7123696, + "maxlon": -73.9933858 + }, + "nodes": [ + 496707003, + 8279851254, + 8279851260, + 496707005 + ], + "geometry": [ + { "lat": 40.7123696, "lon": -73.9937507 }, + { "lat": 40.7122972, "lon": -73.9937121 }, + { "lat": 40.7117329, "lon": -73.9934116 }, + { "lat": 40.7116837, "lon": -73.9933858 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "Mechanics Alley", + "name:ko": "메케닉스 앨리", + "service": "alley" + } +}, +{ + "type": "way", + "id": 46154296, + "bounds": { + "minlat": 40.7133803, + "minlon": -73.9901247, + "maxlat": 40.7137882, + "maxlon": -73.9852253 + }, + "nodes": [ + 42435923, + 8310246643, + 8309738048, + 8231945164, + 42435925, + 8231945161, + 8231945171, + 10931516194, + 42435928, + 8231945168, + 7755083985, + 5804425631, + 588455700 + ], + "geometry": [ + { "lat": 40.7133803, "lon": -73.9901247 }, + { "lat": 40.7133872, "lon": -73.9900418 }, + { "lat": 40.7134946, "lon": -73.9887514 }, + { "lat": 40.7134998, "lon": -73.9886890 }, + { "lat": 40.7135073, "lon": -73.9885984 }, + { "lat": 40.7135144, "lon": -73.9885126 }, + { "lat": 40.7136273, "lon": -73.9871564 }, + { "lat": 40.7136308, "lon": -73.9871143 }, + { "lat": 40.7136336, "lon": -73.9870806 }, + { "lat": 40.7136438, "lon": -73.9869582 }, + { "lat": 40.7136655, "lon": -73.9866967 }, + { "lat": 40.7137816, "lon": -73.9853005 }, + { "lat": 40.7137882, "lon": -73.9852253 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Henry Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "헨리 스트리트", + "name:ru": "Хенри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5728794", + "wikipedia": "en:Henry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46154300, + "bounds": { + "minlat": 40.7076706, + "minlon": -74.0031101, + "maxlat": 40.7082744, + "maxlon": -74.0018996 + }, + "nodes": [ + 42457292, + 8279851768, + 10309191198, + 8279851809, + 42433205, + 8279851810, + 42433231 + ], + "geometry": [ + { "lat": 40.7076706, "lon": -74.0031101 }, + { "lat": 40.7077073, "lon": -74.0030370 }, + { "lat": 40.7081610, "lon": -74.0021280 }, + { "lat": 40.7081725, "lon": -74.0021053 }, + { "lat": 40.7081931, "lon": -74.0020637 }, + { "lat": 40.7082235, "lon": -74.0020028 }, + { "lat": 40.7082744, "lon": -74.0018996 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 46154324, + "bounds": { + "minlat": 40.7095745, + "minlon": -73.9960833, + "maxlat": 40.7097861, + "maxlon": -73.9960219 + }, + "nodes": [ + 12301435728, + 11523686112, + 7830788157, + 588455858 + ], + "geometry": [ + { "lat": 40.7095745, "lon": -73.9960219 }, + { "lat": 40.7096788, "lon": -73.9960522 }, + { "lat": 40.7097288, "lon": -73.9960667 }, + { "lat": 40.7097861, "lon": -73.9960833 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Slip", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 슬립", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 46154327, + "bounds": { + "minlat": 40.7079949, + "minlon": -74.0100172, + "maxlat": 40.7098263, + "maxlon": -74.0080097 + }, + "nodes": [ + 42448583, + 7138157349, + 11365151711, + 11365151712, + 11365151713, + 8281922211, + 42454795, + 8281922213, + 11372463147, + 42454792, + 11372463146, + 42454789, + 42454785, + 10299839474, + 42454782, + 8281922228, + 42428376 + ], + "geometry": [ + { "lat": 40.7079949, "lon": -74.0080097 }, + { "lat": 40.7080288, "lon": -74.0080345 }, + { "lat": 40.7080819, "lon": -74.0080706 }, + { "lat": 40.7081605, "lon": -74.0081293 }, + { "lat": 40.7084539, "lon": -74.0083726 }, + { "lat": 40.7090192, "lon": -74.0088621 }, + { "lat": 40.7090594, "lon": -74.0088957 }, + { "lat": 40.7091030, "lon": -74.0089345 }, + { "lat": 40.7091369, "lon": -74.0089662 }, + { "lat": 40.7092589, "lon": -74.0090858 }, + { "lat": 40.7093215, "lon": -74.0091508 }, + { "lat": 40.7093898, "lon": -74.0092232 }, + { "lat": 40.7094700, "lon": -74.0093285 }, + { "lat": 40.7095386, "lon": -74.0094377 }, + { "lat": 40.7096050, "lon": -74.0095610 }, + { "lat": 40.7097810, "lon": -74.0099193 }, + { "lat": 40.7098263, "lon": -74.0100172 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Maiden Lane", + "name:ko": "메이든 레인", + "name:ru": "Мейден-Лейн", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q13422110", + "wikipedia": "en:Maiden Lane (Manhattan)" + } +}, +{ + "type": "way", + "id": 46154329, + "bounds": { + "minlat": 40.7059358, + "minlon": -74.0043403, + "maxlat": 40.7065574, + "maxlon": -74.0036212 + }, + "nodes": [ + 588455899, + 10311563869, + 8276469217, + 588455894 + ], + "geometry": [ + { "lat": 40.7059358, "lon": -74.0036212 }, + { "lat": 40.7059773, "lon": -74.0036693 }, + { "lat": 40.7059921, "lon": -74.0036863 }, + { "lat": 40.7065574, "lon": -74.0043403 } + ], + "tags": { + "bicycle": "yes", + "highway": "pedestrian", + "motor_vehicle": "private", + "name": "Burling Slip", + "name:ko": "벌링 슬립", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46154330, + "bounds": { + "minlat": 40.7074428, + "minlon": -74.0054945, + "maxlat": 40.7090956, + "maxlon": -74.0040737 + }, + "nodes": [ + 42440270, + 4985377333, + 11369424992, + 4015192929, + 11369424994, + 11343006554, + 673008453, + 42440277, + 11345127031, + 673008457, + 11345127032, + 42440278, + 3942012642, + 4985377329, + 42440280 + ], + "geometry": [ + { "lat": 40.7074428, "lon": -74.0040737 }, + { "lat": 40.7075744, "lon": -74.0041354 }, + { "lat": 40.7077924, "lon": -74.0042955 }, + { "lat": 40.7078360, "lon": -74.0043276 }, + { "lat": 40.7078826, "lon": -74.0043646 }, + { "lat": 40.7083693, "lon": -74.0047509 }, + { "lat": 40.7084065, "lon": -74.0047821 }, + { "lat": 40.7086755, "lon": -74.0050039 }, + { "lat": 40.7087749, "lon": -74.0050876 }, + { "lat": 40.7088457, "lon": -74.0051472 }, + { "lat": 40.7088939, "lon": -74.0051918 }, + { "lat": 40.7089430, "lon": -74.0052457 }, + { "lat": 40.7089892, "lon": -74.0053124 }, + { "lat": 40.7090401, "lon": -74.0053916 }, + { "lat": 40.7090956, "lon": -74.0054945 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "name:ru": "Фултон-стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-24:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46154332, + "bounds": { + "minlat": 40.7078710, + "minlon": -74.0014617, + "maxlat": 40.7083040, + "maxlon": -74.0005918 + }, + "nodes": [ + 12339478938, + 10309191067, + 8279851779, + 42433237 + ], + "geometry": [ + { "lat": 40.7083040, "lon": -74.0005918 }, + { "lat": 40.7079173, "lon": -74.0013688 }, + { "lat": 40.7079051, "lon": -74.0013933 }, + { "lat": 40.7078710, "lon": -74.0014617 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Front Street", + "name:ko": "프론트 스트리트", + "name:ru": "Фронт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q4493022", + "wikipedia": "en:Front Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46154337, + "bounds": { + "minlat": 40.7033264, + "minlon": -74.0077746, + "maxlat": 40.7042528, + "maxlon": -74.0062946 + }, + "nodes": [ + 42444230, + 10557070628, + 4156798789, + 4156798797, + 42444223, + 9181607983, + 11047466410, + 6129324449, + 11030812457, + 4145794845, + 10457330751, + 42421951 + ], + "geometry": [ + { "lat": 40.7042528, "lon": -74.0062946 }, + { "lat": 40.7042313, "lon": -74.0063376 }, + { "lat": 40.7042179, "lon": -74.0063609 }, + { "lat": 40.7037971, "lon": -74.0070009 }, + { "lat": 40.7037626, "lon": -74.0070517 }, + { "lat": 40.7037370, "lon": -74.0070902 }, + { "lat": 40.7036503, "lon": -74.0072276 }, + { "lat": 40.7036272, "lon": -74.0072642 }, + { "lat": 40.7034558, "lon": -74.0075441 }, + { "lat": 40.7033604, "lon": -74.0077000 }, + { "lat": 40.7033417, "lon": -74.0077362 }, + { "lat": 40.7033264, "lon": -74.0077746 } + ], + "tags": { + "cycleway:left": "separate", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "parking:both:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46154338, + "bounds": { + "minlat": 40.7056340, + "minlon": -74.0074544, + "maxlat": 40.7060628, + "maxlon": -74.0067527 + }, + "nodes": [ + 42429844, + 8276468602, + 11367912775, + 8276468632, + 42429842 + ], + "geometry": [ + { "lat": 40.7056340, "lon": -74.0067527 }, + { "lat": 40.7057058, "lon": -74.0068646 }, + { "lat": 40.7060023, "lon": -74.0073554 }, + { "lat": 40.7060361, "lon": -74.0074107 }, + { "lat": 40.7060628, "lon": -74.0074544 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Pine Street", + "name:ko": "파인 스트리트", + "name:ru": "Пайн-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A71", + "tiger:county": "New York, NY", + "tiger:name_base": "Pine", + "tiger:name_type": "St", + "tiger:zip_left": "10005", + "wikidata": "Q13845373" + } +}, +{ + "type": "way", + "id": 46160098, + "bounds": { + "minlat": 40.7119157, + "minlon": -74.0061073, + "maxlat": 40.7120310, + "maxlon": -74.0060472 + }, + "nodes": [ + 2821304145, + 1272562931 + ], + "geometry": [ + { "lat": 40.7120310, "lon": -74.0061073 }, + { "lat": 40.7119157, "lon": -74.0060472 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "Spruce Street", + "name:ko": "스프루스 스트리트", + "name:ru": "Спрус-стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q20858363", + "wikipedia": "en:Spruce Street" + } +}, +{ + "type": "way", + "id": 46160106, + "bounds": { + "minlat": 40.7152775, + "minlon": -74.0136227, + "maxlat": 40.7152938, + "maxlon": -74.0135224 + }, + "nodes": [ + 11439633310, + 246858435 + ], + "geometry": [ + { "lat": 40.7152938, "lon": -74.0136227 }, + { "lat": 40.7152775, "lon": -74.0135224 } + ], + "tags": { + "cycleway:both": "lane", + "highway": "residential", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "sidewalk:both": "separate", + "surface": "concrete", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 46160153, + "bounds": { + "minlat": 40.7112310, + "minlon": -74.0069661, + "maxlat": 40.7117008, + "maxlon": -74.0064780 + }, + "nodes": [ + 42456492, + 8281922069, + 3658821414, + 4878831016, + 42443844 + ], + "geometry": [ + { "lat": 40.7112310, "lon": -74.0064780 }, + { "lat": 40.7112736, "lon": -74.0065225 }, + { "lat": 40.7115115, "lon": -74.0067715 }, + { "lat": 40.7116377, "lon": -74.0069012 }, + { "lat": 40.7117008, "lon": -74.0069661 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Beekman Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "비크먼 스트리트", + "name:ru": "Бикман-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46160225, + "bounds": { + "minlat": 40.7098706, + "minlon": -74.0077439, + "maxlat": 40.7102231, + "maxlon": -74.0070413 + }, + "nodes": [ + 42440284, + 8281922127, + 42440287 + ], + "geometry": [ + { "lat": 40.7098706, "lon": -74.0070413 }, + { "lat": 40.7102030, "lon": -74.0077053 }, + { "lat": 40.7102231, "lon": -74.0077439 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "name:ru": "Фултон-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46160244, + "bounds": { + "minlat": 40.7105895, + "minlon": -74.0037754, + "maxlat": 40.7109496, + "maxlon": -74.0036162 + }, + "nodes": [ + 42448469, + 4878934393, + 10277180441, + 9988073559, + 9988073561, + 42459820 + ], + "geometry": [ + { "lat": 40.7109496, "lon": -74.0036162 }, + { "lat": 40.7108903, "lon": -74.0036488 }, + { "lat": 40.7108002, "lon": -74.0037005 }, + { "lat": 40.7106828, "lon": -74.0037662 }, + { "lat": 40.7106132, "lon": -74.0037732 }, + { "lat": 40.7105895, "lon": -74.0037754 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Gold Street", + "name:ko": "골드 스트리트", + "name:ru": "Голд-стрит", + "oneway": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through" + } +}, +{ + "type": "way", + "id": 46160250, + "bounds": { + "minlat": 40.7104739, + "minlon": -74.0055584, + "maxlat": 40.7106460, + "maxlon": -74.0054290 + }, + "nodes": [ + 11347850281, + 11347850342, + 11347850282, + 11347850343, + 11347850345 + ], + "geometry": [ + { "lat": 40.7106460, "lon": -74.0054760 }, + { "lat": 40.7106284, "lon": -74.0054389 }, + { "lat": 40.7106161, "lon": -74.0054290 }, + { "lat": 40.7106030, "lon": -74.0054337 }, + { "lat": 40.7104739, "lon": -74.0055584 } + ], + "tags": { + "bicycle": "dismount", + "foot": "no", + "highway": "service", + "lit": "yes", + "motor_vehicle": "destination", + "name": "William Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "윌리엄 스트리트", + "oneway": "no", + "service": "driveway", + "surface": "paving_stones", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46160330, + "bounds": { + "minlat": 40.7072416, + "minlon": -74.0082757, + "maxlat": 40.7077288, + "maxlon": -74.0074540 + }, + "nodes": [ + 42422053, + 7138157359, + 9753289200, + 7138157376, + 11350190939, + 11367912840, + 6262915548 + ], + "geometry": [ + { "lat": 40.7077288, "lon": -74.0082757 }, + { "lat": 40.7076946, "lon": -74.0082187 }, + { "lat": 40.7074365, "lon": -74.0078076 }, + { "lat": 40.7073076, "lon": -74.0076006 }, + { "lat": 40.7072808, "lon": -74.0075482 }, + { "lat": 40.7072590, "lon": -74.0075001 }, + { "lat": 40.7072416, "lon": -74.0074540 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46160365, + "bounds": { + "minlat": 40.7095371, + "minlon": -74.0084241, + "maxlat": 40.7108922, + "maxlon": -74.0069496 + }, + "nodes": [ + 42440335, + 8281922136, + 8281922128, + 42440287, + 8281922126, + 8281922101, + 1538237434, + 8281922099, + 5008036548, + 10585438628 + ], + "geometry": [ + { "lat": 40.7095371, "lon": -74.0084241 }, + { "lat": 40.7095766, "lon": -74.0083853 }, + { "lat": 40.7101793, "lon": -74.0077899 }, + { "lat": 40.7102231, "lon": -74.0077439 }, + { "lat": 40.7102744, "lon": -74.0076907 }, + { "lat": 40.7105497, "lon": -74.0074254 }, + { "lat": 40.7105880, "lon": -74.0073814 }, + { "lat": 40.7106199, "lon": -74.0073421 }, + { "lat": 40.7108069, "lon": -74.0070682 }, + { "lat": 40.7108922, "lon": -74.0069496 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Nassau Street", + "name:etymology:wikidata": "Q155483", + "name:ko": "나사우 스트리트", + "name:ru": "Нассо-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2597808", + "wikipedia": "en:Nassau Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46160386, + "bounds": { + "minlat": 40.7055581, + "minlon": -74.0098642, + "maxlat": 40.7058008, + "maxlon": -74.0090526 + }, + "nodes": [ + 42432679, + 8276468885, + 11053183415, + 10703318306, + 11053183420, + 11053183421, + 42429507 + ], + "geometry": [ + { "lat": 40.7058008, "lon": -74.0098642 }, + { "lat": 40.7057843, "lon": -74.0098180 }, + { "lat": 40.7055804, "lon": -74.0091754 }, + { "lat": 40.7055600, "lon": -74.0091106 }, + { "lat": 40.7055581, "lon": -74.0090880 }, + { "lat": 40.7055618, "lon": -74.0090686 }, + { "lat": 40.7055699, "lon": -74.0090526 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Exchange Place", + "name:etymology:wikidata": "Q1097619", + "name:ko": "익스체인지 플레이스", + "name:ru": "Эксчейндж-Плейс", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Exchange", + "tiger:name_type": "Pl", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q13578686", + "wikipedia": "en:Exchange Place (Manhattan)" + } +}, +{ + "type": "way", + "id": 46160403, + "bounds": { + "minlat": 40.7041084, + "minlon": -74.0094849, + "maxlat": 40.7045596, + "maxlon": -74.0089696 + }, + "nodes": [ + 42421960, + 10435219302, + 6904109938, + 10344354967, + 8276468675, + 42427956 + ], + "geometry": [ + { "lat": 40.7041084, "lon": -74.0089696 }, + { "lat": 40.7041477, "lon": -74.0090056 }, + { "lat": 40.7041846, "lon": -74.0090437 }, + { "lat": 40.7044626, "lon": -74.0093665 }, + { "lat": 40.7045019, "lon": -74.0094144 }, + { "lat": 40.7045596, "lon": -74.0094849 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "maxlength": "33 ft", + "maxspeed": "20 mph", + "name": "Hanover Square", + "name:etymology:wikidata": "Q157217", + "name:ko": "해노버 스퀘어", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Hanover", + "tiger:name_type": "Sq" + } +}, +{ + "type": "way", + "id": 46160404, + "bounds": { + "minlat": 40.7048276, + "minlon": -74.0173422, + "maxlat": 40.7049134, + "maxlon": -74.0169161 + }, + "nodes": [ + 246858654, + 246866793, + 4876394048, + 8821315486, + 246901366 + ], + "geometry": [ + { "lat": 40.7048276, "lon": -74.0169161 }, + { "lat": 40.7048432, "lon": -74.0170362 }, + { "lat": 40.7048771, "lon": -74.0172033 }, + { "lat": 40.7048958, "lon": -74.0172835 }, + { "lat": 40.7049134, "lon": -74.0173422 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bowling Grn", + "tiger:name_base_1": "Battery", + "tiger:name_type_1": "Pl", + "tiger:zip_left": "10280", + "tiger:zip_right": "10280", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 46160406, + "bounds": { + "minlat": 40.7035982, + "minlon": -74.0132054, + "maxlat": 40.7040707, + "maxlon": -74.0131307 + }, + "nodes": [ + 42428524, + 11050054100, + 42444480 + ], + "geometry": [ + { "lat": 40.7040707, "lon": -74.0132054 }, + { "lat": 40.7039905, "lon": -74.0131918 }, + { "lat": 40.7035982, "lon": -74.0131307 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Whitehall Street", + "name:etymology:wikidata": "Q214820", + "name:ko": "화이트홀 스트리트", + "name:ru": "Уайтхолл-стрит", + "oneway": "yes", + "parking:left": "street_side", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Whitehall", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "wikidata": "Q7995998", + "wikipedia": "en:Whitehall Street" + } +}, +{ + "type": "way", + "id": 46165807, + "bounds": { + "minlat": 40.7158827, + "minlon": -74.0163497, + "maxlat": 40.7162693, + "maxlon": -74.0155049 + }, + "nodes": [ + 11432613324, + 5815643290, + 11432613321, + 11449987536, + 11449987541, + 5815643310, + 11432613325 + ], + "geometry": [ + { "lat": 40.7158827, "lon": -74.0155049 }, + { "lat": 40.7158968, "lon": -74.0155378 }, + { "lat": 40.7159813, "lon": -74.0157203 }, + { "lat": 40.7160031, "lon": -74.0157694 }, + { "lat": 40.7161886, "lon": -74.0161737 }, + { "lat": 40.7162605, "lon": -74.0163304 }, + { "lat": 40.7162693, "lon": -74.0163497 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 46165809, + "bounds": { + "minlat": 40.7141093, + "minlon": -74.0167234, + "maxlat": 40.7143995, + "maxlon": -74.0164925 + }, + "nodes": [ + 11429768244, + 2350521220 + ], + "geometry": [ + { "lat": 40.7143995, "lon": -74.0164925 }, + { "lat": 40.7141093, "lon": -74.0167234 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "service", + "lanes": "2", + "motor_vehicle": "customers", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "oneway": "no", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46165810, + "bounds": { + "minlat": 40.7154372, + "minlon": -74.0155973, + "maxlat": 40.7155687, + "maxlon": -74.0146236 + }, + "nodes": [ + 42429595, + 11432613018, + 5815643350, + 7838207515, + 11439633459, + 3588508439 + ], + "geometry": [ + { "lat": 40.7155687, "lon": -74.0155973 }, + { "lat": 40.7155476, "lon": -74.0155210 }, + { "lat": 40.7155329, "lon": -74.0154479 }, + { "lat": 40.7154389, "lon": -74.0147767 }, + { "lat": 40.7154372, "lon": -74.0147248 }, + { "lat": 40.7154525, "lon": -74.0146236 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46165812, + "bounds": { + "minlat": 40.7149130, + "minlon": -74.0130952, + "maxlat": 40.7152035, + "maxlon": -74.0113363 + }, + "nodes": [ + 11460562447, + 11292548513, + 12301651269, + 4143838198, + 8404113359, + 5812734102, + 11461036518, + 42429565 + ], + "geometry": [ + { "lat": 40.7152035, "lon": -74.0130952 }, + { "lat": 40.7151992, "lon": -74.0130693 }, + { "lat": 40.7151969, "lon": -74.0130550 }, + { "lat": 40.7151116, "lon": -74.0125320 }, + { "lat": 40.7150547, "lon": -74.0121722 }, + { "lat": 40.7149457, "lon": -74.0114888 }, + { "lat": 40.7149333, "lon": -74.0114167 }, + { "lat": 40.7149130, "lon": -74.0113363 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46165813, + "bounds": { + "minlat": 40.7165175, + "minlon": -74.0133001, + "maxlat": 40.7165534, + "maxlon": -74.0132067 + }, + "nodes": [ + 11440189985, + 246858449 + ], + "geometry": [ + { "lat": 40.7165534, "lon": -74.0133001 }, + { "lat": 40.7165175, "lon": -74.0132067 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Warren Street", + "name:etymology:wikidata": "Q3376953", + "name:ko": "워렌 스트리트", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46165814, + "bounds": { + "minlat": 40.7172557, + "minlon": -74.0131113, + "maxlat": 40.7172977, + "maxlon": -74.0130166 + }, + "nodes": [ + 8750271943, + 246858448 + ], + "geometry": [ + { "lat": 40.7172977, "lon": -74.0131113 }, + { "lat": 40.7172557, "lon": -74.0130166 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46165815, + "bounds": { + "minlat": 40.7151170, + "minlon": -74.0159482, + "maxlat": 40.7155687, + "maxlon": -74.0155973 + }, + "nodes": [ + 42429595, + 5815643273, + 42446849 + ], + "geometry": [ + { "lat": 40.7155687, "lon": -74.0155973 }, + { "lat": 40.7155092, "lon": -74.0156455 }, + { "lat": 40.7151170, "lon": -74.0159482 } + ], + "tags": { + "highway": "residential", + "lanes": "4", + "maxspeed": "20 mph", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46165816, + "bounds": { + "minlat": 40.7098348, + "minlon": -74.0151385, + "maxlat": 40.7098356, + "maxlon": -74.0150379 + }, + "nodes": [ + 4143824663, + 246858431 + ], + "geometry": [ + { "lat": 40.7098356, "lon": -74.0151385 }, + { "lat": 40.7098348, "lon": -74.0150379 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Albany Street", + "name:etymology:wikidata": "Q24861", + "name:ko": "앨버니 스트리트", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q29110247", + "wikipedia": "en:Albany Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46165819, + "bounds": { + "minlat": 40.7068458, + "minlon": -74.0179396, + "maxlat": 40.7070005, + "maxlon": -74.0175734 + }, + "nodes": [ + 42433715, + 4876394047, + 5214620548, + 279152444 + ], + "geometry": [ + { "lat": 40.7068458, "lon": -74.0175734 }, + { "lat": 40.7068854, "lon": -74.0176683 }, + { "lat": 40.7069067, "lon": -74.0177159 }, + { "lat": 40.7070005, "lon": -74.0179396 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "maxspeed": "20 mph", + "name": "2nd Place", + "name_1": "2 Place", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46165821, + "bounds": { + "minlat": 40.7074717, + "minlon": -74.0174620, + "maxlat": 40.7076167, + "maxlon": -74.0171151 + }, + "nodes": [ + 42433718, + 4876394052, + 5214620546, + 42437819 + ], + "geometry": [ + { "lat": 40.7074717, "lon": -74.0171151 }, + { "lat": 40.7075121, "lon": -74.0172118 }, + { "lat": 40.7075301, "lon": -74.0172548 }, + { "lat": 40.7076167, "lon": -74.0174620 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "3rd Place", + "name_1": "3 Place", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46165822, + "bounds": { + "minlat": 40.7062095, + "minlon": -74.0187565, + "maxlat": 40.7065461, + "maxlon": -74.0179211 + }, + "nodes": [ + 13645024466, + 4876394039, + 4876394041, + 11421772035, + 889585009, + 42443667, + 1242148291 + ], + "geometry": [ + { "lat": 40.7062095, "lon": -74.0179211 }, + { "lat": 40.7062451, "lon": -74.0180243 }, + { "lat": 40.7062736, "lon": -74.0181165 }, + { "lat": 40.7062862, "lon": -74.0181635 }, + { "lat": 40.7063845, "lon": -74.0185030 }, + { "lat": 40.7064516, "lon": -74.0186189 }, + { "lat": 40.7065461, "lon": -74.0187565 } + ], + "tags": { + "bicycle": "no", + "highway": "service", + "name": "1st Place", + "name_1": "1 Place", + "surface": "paving_stones", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "1st", + "tiger:name_base_1": "1", + "tiger:name_type": "Pl", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10280", + "tiger:zip_right": "10280" + } +}, +{ + "type": "way", + "id": 46166212, + "bounds": { + "minlat": 40.7071527, + "minlon": -74.0139431, + "maxlat": 40.7079832, + "maxlon": -74.0135999 + }, + "nodes": [ + 42436181, + 4206997186, + 11385942214, + 11385942206, + 4149936245 + ], + "geometry": [ + { "lat": 40.7079832, "lon": -74.0135999 }, + { "lat": 40.7079376, "lon": -74.0136198 }, + { "lat": 40.7072341, "lon": -74.0139095 }, + { "lat": 40.7072054, "lon": -74.0139213 }, + { "lat": 40.7071527, "lon": -74.0139431 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "parking:both:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 46171876, + "bounds": { + "minlat": 40.7255893, + "minlon": -74.0091615, + "maxlat": 40.7260025, + "maxlon": -74.0090892 + }, + "nodes": [ + 11148599484, + 12162542948, + 8789178529, + 8307641939, + 42436088 + ], + "geometry": [ + { "lat": 40.7255893, "lon": -74.0091615 }, + { "lat": 40.7258581, "lon": -74.0091162 }, + { "lat": 40.7258828, "lon": -74.0091120 }, + { "lat": 40.7259210, "lon": -74.0091055 }, + { "lat": 40.7260025, "lon": -74.0090892 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (10:00-16:00)", + "motor_vehicle:conditional": "destination @ (10:00-16:00)", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 46171878, + "bounds": { + "minlat": 40.7196981, + "minlon": -74.0059645, + "maxlat": 40.7200757, + "maxlon": -74.0056628 + }, + "nodes": [ + 42434855, + 2155551105, + 42445700 + ], + "geometry": [ + { "lat": 40.7200757, "lon": -74.0056628 }, + { "lat": 40.7200174, "lon": -74.0057089 }, + { "lat": 40.7196981, "lon": -74.0059645 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 46171879, + "bounds": { + "minlat": 40.7138581, + "minlon": -74.0105746, + "maxlat": 40.7143998, + "maxlon": -74.0101630 + }, + "nodes": [ + 42429563, + 11461123805, + 8279851479, + 11461036496, + 8279851471, + 42430007 + ], + "geometry": [ + { "lat": 40.7143998, "lon": -74.0101630 }, + { "lat": 40.7143646, "lon": -74.0101975 }, + { "lat": 40.7143450, "lon": -74.0102140 }, + { "lat": 40.7141377, "lon": -74.0103642 }, + { "lat": 40.7139179, "lon": -74.0105348 }, + { "lat": 40.7138581, "lon": -74.0105746 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "old_name": "West Broadway", + "oneway": "yes", + "parking:left": "street_side", + "parking:left:orientation": "parallel", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 46171880, + "bounds": { + "minlat": 40.7143998, + "minlon": -74.0113363, + "maxlat": 40.7149130, + "maxlon": -74.0101630 + }, + "nodes": [ + 42429563, + 8279851480, + 8304497700, + 11461036519, + 42429565 + ], + "geometry": [ + { "lat": 40.7143998, "lon": -74.0101630 }, + { "lat": 40.7144368, "lon": -74.0102475 }, + { "lat": 40.7148765, "lon": -74.0112122 }, + { "lat": 40.7148964, "lon": -74.0112747 }, + { "lat": 40.7149130, "lon": -74.0113363 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46171883, + "bounds": { + "minlat": 40.7176762, + "minlon": -74.0075505, + "maxlat": 40.7182780, + "maxlon": -74.0070866 + }, + "nodes": [ + 42448162, + 8312361645, + 5490721611, + 8312361693, + 42452816 + ], + "geometry": [ + { "lat": 40.7182780, "lon": -74.0070866 }, + { "lat": 40.7182392, "lon": -74.0071172 }, + { "lat": 40.7178555, "lon": -74.0074175 }, + { "lat": 40.7177220, "lon": -74.0075145 }, + { "lat": 40.7176762, "lon": -74.0075505 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 46171884, + "bounds": { + "minlat": 40.7136173, + "minlon": -74.0116598, + "maxlat": 40.7149130, + "maxlon": -74.0113363 + }, + "nodes": [ + 42429565, + 4143763632, + 4143763629, + 4143763628, + 8304497722, + 42430009, + 8304497723, + 4143765779, + 8279851498, + 10282960478, + 10282960473, + 10282960477, + 272194254 + ], + "geometry": [ + { "lat": 40.7149130, "lon": -74.0113363 }, + { "lat": 40.7148267, "lon": -74.0113829 }, + { "lat": 40.7147353, "lon": -74.0114194 }, + { "lat": 40.7146394, "lon": -74.0114455 }, + { "lat": 40.7143395, "lon": -74.0115164 }, + { "lat": 40.7143259, "lon": -74.0115197 }, + { "lat": 40.7141982, "lon": -74.0115508 }, + { "lat": 40.7137980, "lon": -74.0116575 }, + { "lat": 40.7137288, "lon": -74.0116598 }, + { "lat": 40.7137001, "lon": -74.0116563 }, + { "lat": 40.7136729, "lon": -74.0116455 }, + { "lat": 40.7136423, "lon": -74.0116304 }, + { "lat": 40.7136173, "lon": -74.0116170 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 46171887, + "bounds": { + "minlat": 40.7143998, + "minlon": -74.0101630, + "maxlat": 40.7149648, + "maxlon": -74.0097093 + }, + "nodes": [ + 42449600, + 7410938047, + 7536025163, + 8279851478, + 11461123806, + 42429563 + ], + "geometry": [ + { "lat": 40.7149648, "lon": -74.0097093 }, + { "lat": 40.7149112, "lon": -74.0097537 }, + { "lat": 40.7148609, "lon": -74.0097936 }, + { "lat": 40.7144590, "lon": -74.0101042 }, + { "lat": 40.7144370, "lon": -74.0101245 }, + { "lat": 40.7143998, "lon": -74.0101630 } + ], + "tags": { + "construction": "minor", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "yes", + "parking:left": "street_side", + "parking:left:orientation": "parallel", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 46171888, + "bounds": { + "minlat": 40.7098438, + "minlon": -74.0126706, + "maxlat": 40.7101470, + "maxlon": -74.0119788 + }, + "nodes": [ + 12311833363, + 8526690246, + 8262936678, + 42422035 + ], + "geometry": [ + { "lat": 40.7098438, "lon": -74.0119788 }, + { "lat": 40.7099768, "lon": -74.0122876 }, + { "lat": 40.7101126, "lon": -74.0125942 }, + { "lat": 40.7101470, "lon": -74.0126706 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:both": "no", + "foot": "yes", + "highway": "unclassified", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46171889, + "bounds": { + "minlat": 40.7074917, + "minlon": -74.0146677, + "maxlat": 40.7090829, + "maxlon": -74.0140498 + }, + "nodes": [ + 42452310, + 8262936706, + 11415663030, + 8279851849, + 42446632, + 4207000395, + 4206997172, + 4149750390 + ], + "geometry": [ + { "lat": 40.7090829, "lon": -74.0140498 }, + { "lat": 40.7090438, "lon": -74.0140646 }, + { "lat": 40.7083230, "lon": -74.0143428 }, + { "lat": 40.7082857, "lon": -74.0143570 }, + { "lat": 40.7082321, "lon": -74.0143778 }, + { "lat": 40.7081865, "lon": -74.0143972 }, + { "lat": 40.7075359, "lon": -74.0146492 }, + { "lat": 40.7074917, "lon": -74.0146677 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46171907, + "bounds": { + "minlat": 40.7085915, + "minlon": -74.0121098, + "maxlat": 40.7090441, + "maxlon": -74.0110462 + }, + "nodes": [ + 42428373, + 10299850193, + 7335430596, + 10299850201, + 8262936653, + 10299850207, + 10299850206, + 10299850211, + 42456888 + ], + "geometry": [ + { "lat": 40.7085915, "lon": -74.0110462 }, + { "lat": 40.7086279, "lon": -74.0110953 }, + { "lat": 40.7086326, "lon": -74.0111056 }, + { "lat": 40.7086621, "lon": -74.0111715 }, + { "lat": 40.7090406, "lon": -74.0120151 }, + { "lat": 40.7090430, "lon": -74.0120344 }, + { "lat": 40.7090441, "lon": -74.0120638 }, + { "lat": 40.7090400, "lon": -74.0120842 }, + { "lat": 40.7090349, "lon": -74.0121098 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Thames Street", + "name:ko": "템즈 스트리트", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "15'8\"" + } +}, +{ + "type": "way", + "id": 46177116, + "bounds": { + "minlat": 40.7003348, + "minlon": -73.9898606, + "maxlat": 40.7004806, + "maxlon": -73.9896431 + }, + "nodes": [ + 588717513, + 7561173760 + ], + "geometry": [ + { "lat": 40.7004806, "lon": -73.9898606 }, + { "lat": 40.7003348, "lon": -73.9896431 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "1", + "layer": "1", + "maxspeed": "30 mph", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41:A49:A63", + "tiger:county": "Kings, NY;New York, NY", + "tiger:name_base": "Brooklyn", + "tiger:name_type": "Brg" + } +}, +{ + "type": "way", + "id": 46177152, + "bounds": { + "minlat": 40.7022184, + "minlon": -74.0007289, + "maxlat": 40.7090747, + "maxlon": -73.9921091 + }, + "nodes": [ + 4158752889, + 4158751333 + ], + "geometry": [ + { "lat": 40.7090747, "lon": -74.0007289 }, + { "lat": 40.7022184, "lon": -73.9921091 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "layer": "3", + "lit": "yes", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:both": "no", + "surface": "asphalt", + "wikidata": "Q125006", + "wikipedia": "en:Brooklyn Bridge" + } +}, +{ + "type": "way", + "id": 46179210, + "bounds": { + "minlat": 40.6997800, + "minlon": -73.9946697, + "maxlat": 40.7148122, + "maxlon": -73.9863158 + }, + "nodes": [ + 451028274, + 588785542, + 7561173777 + ], + "geometry": [ + { "lat": 40.6997800, "lon": -73.9863158 }, + { "lat": 40.7144370, "lon": -73.9944567 }, + { "lat": 40.7148122, "lon": -73.9946697 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:conditional": "no @ (Mo-Fr 05:00-15:00)", + "highway": "secondary", + "hov:lanes": "designated|yes", + "lanes": "2", + "layer": "3", + "maxheight": "13'4\"", + "maxspeed": "35 mph", + "moped": "no", + "name": "Manhattan Bridge", + "name:etymology:wikidata": "Q11299", + "name:ko": "맨해튼 브리지", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:both": "no", + "surface": "asphalt", + "toll": "no", + "wikidata": "Q125050", + "wikipedia": "en:Manhattan Bridge" + } +}, +{ + "type": "way", + "id": 46179212, + "bounds": { + "minlat": 40.7148122, + "minlon": -73.9948562, + "maxlat": 40.7153933, + "maxlon": -73.9946697 + }, + "nodes": [ + 7561173777, + 1819616526, + 4160382257, + 1819616527, + 1819616528, + 588455863 + ], + "geometry": [ + { "lat": 40.7148122, "lon": -73.9946697 }, + { "lat": 40.7149305, "lon": -73.9947366 }, + { "lat": 40.7149973, "lon": -73.9947697 }, + { "lat": 40.7150685, "lon": -73.9947992 }, + { "lat": 40.7152099, "lon": -73.9948409 }, + { "lat": 40.7153933, "lon": -73.9948562 } + ], + "tags": { + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:conditional": "no @ (Mo-Fr 05:00-15:00)", + "highway": "secondary", + "hov:lanes": "designated|yes", + "lanes": "2", + "lit": "yes", + "maxspeed": "35 mph", + "moped": "no", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "yes", + "parking:both:restriction": "no_stopping" + } +}, +{ + "type": "way", + "id": 46179217, + "bounds": { + "minlat": 40.6993591, + "minlon": -73.9949325, + "maxlat": 40.7147296, + "maxlon": -73.9863517 + }, + "nodes": [ + 4160368848, + 588785633, + 541467441 + ], + "geometry": [ + { "lat": 40.7147296, "lon": -73.9949325 }, + { "lat": 40.7143535, "lon": -73.9947285 }, + { "lat": 40.6993591, "lon": -73.9863517 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "layer": "3", + "maxheight": "13'4\"", + "maxspeed": "35 mph", + "moped": "no", + "name": "Manhattan Bridge", + "name:etymology:wikidata": "Q11299", + "name:ko": "맨해튼 브리지", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "surface": "asphalt", + "toll": "no", + "wikidata": "Q125050", + "wikipedia": "en:Manhattan Bridge" + } +}, +{ + "type": "way", + "id": 46189288, + "bounds": { + "minlat": 40.7153328, + "minlon": -73.9952520, + "maxlat": 40.7155392, + "maxlon": -73.9951287 + }, + "nodes": [ + 4844627299, + 588938271 + ], + "geometry": [ + { "lat": 40.7153328, "lon": -73.9951287 }, + { "lat": 40.7155392, "lon": -73.9952520 } + ], + "tags": { + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "35 mph", + "moped": "no", + "name": "Canal Street", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46189291, + "bounds": { + "minlat": 40.7143684, + "minlon": -73.9950911, + "maxlat": 40.7152640, + "maxlon": -73.9945869 + }, + "nodes": [ + 588938282, + 4844627300 + ], + "geometry": [ + { "lat": 40.7143684, "lon": -73.9945869 }, + { "lat": 40.7152640, "lon": -73.9950911 } + ], + "tags": { + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "35 mph", + "moped": "no", + "name": "Canal Street", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46189305, + "bounds": { + "minlat": 40.6997508, + "minlon": -73.9945869, + "maxlat": 40.7143684, + "maxlon": -73.9864288 + }, + "nodes": [ + 588938289, + 588938282 + ], + "geometry": [ + { "lat": 40.6997508, "lon": -73.9864288 }, + { "lat": 40.7143684, "lon": -73.9945869 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "cycleway:both": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "layer": "2", + "maxheight": "13'8\"", + "maxspeed": "35 mph", + "moped": "no", + "name": "Manhattan Bridge (lower level)", + "name:etymology:wikidata": "Q11299", + "name:ko": "맨해튼 브리지 (로워 레벨)", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "toll": "no", + "wikidata": "Q125050", + "wikipedia": "en:Manhattan Bridge" + } +}, +{ + "type": "way", + "id": 46201629, + "bounds": { + "minlat": 40.7517028, + "minlon": -73.9653121, + "maxlat": 40.7518563, + "maxlon": -73.9652298 + }, + "nodes": [ + 3011333827, + 10994926353, + 10994926354, + 10994926355, + 5220467776 + ], + "geometry": [ + { "lat": 40.7517028, "lon": -73.9653121 }, + { "lat": 40.7517339, "lon": -73.9652874 }, + { "lat": 40.7517827, "lon": -73.9652519 }, + { "lat": 40.7518283, "lon": -73.9652328 }, + { "lat": 40.7518563, "lon": -73.9652298 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46201630, + "bounds": { + "minlat": 40.7486413, + "minlon": -73.9697356, + "maxlat": 40.7487771, + "maxlon": -73.9695959 + }, + "nodes": [ + 248708582, + 11002617615, + 11002617614, + 3569749104, + 9140864935 + ], + "geometry": [ + { "lat": 40.7487771, "lon": -73.9697356 }, + { "lat": 40.7487276, "lon": -73.9697166 }, + { "lat": 40.7486917, "lon": -73.9696887 }, + { "lat": 40.7486768, "lon": -73.9696680 }, + { "lat": 40.7486413, "lon": -73.9695959 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46201642, + "bounds": { + "minlat": 40.7463256, + "minlon": -73.9744963, + "maxlat": 40.7466849, + "maxlon": -73.9736516 + }, + "nodes": [ + 42449689, + 4699874256, + 13399037696, + 4259278548, + 42442918 + ], + "geometry": [ + { "lat": 40.7463256, "lon": -73.9736516 }, + { "lat": 40.7463678, "lon": -73.9737527 }, + { "lat": 40.7465173, "lon": -73.9741054 }, + { "lat": 40.7466275, "lon": -73.9743656 }, + { "lat": 40.7466849, "lon": -73.9744963 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through" + } +}, +{ + "type": "way", + "id": 46201643, + "bounds": { + "minlat": 40.7478303, + "minlon": -73.9705802, + "maxlat": 40.7487219, + "maxlon": -73.9699638 + }, + "nodes": [ + 11003445421, + 12154055784, + 248708366 + ], + "geometry": [ + { "lat": 40.7478303, "lon": -73.9705802 }, + { "lat": 40.7479730, "lon": -73.9705041 }, + { "lat": 40.7487219, "lon": -73.9699638 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxheight": "13'2\"", + "maxspeed": "25 mph", + "name": "1st Avenue Tunnel", + "note": "not sure why signs say 'all trucks' pointing to the tunnel; they're clearly allowed up on the surface", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46201644, + "bounds": { + "minlat": 40.7381466, + "minlon": -73.9736517, + "maxlat": 40.7390235, + "maxlon": -73.9730741 + }, + "nodes": [ + 42422509, + 42457904, + 9141029099, + 42457921, + 9141029100, + 42457925 + ], + "geometry": [ + { "lat": 40.7381466, "lon": -73.9736517 }, + { "lat": 40.7385276, "lon": -73.9733751 }, + { "lat": 40.7386248, "lon": -73.9733083 }, + { "lat": 40.7387253, "lon": -73.9732454 }, + { "lat": 40.7388427, "lon": -73.9731767 }, + { "lat": 40.7390235, "lon": -73.9730741 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "FDR Drive Service Road East;Fdr Drive Service Road East", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "slight_left|slight_right" + } +}, +{ + "type": "way", + "id": 46201646, + "bounds": { + "minlat": 40.7408501, + "minlon": -73.9726175, + "maxlat": 40.7442787, + "maxlon": -73.9713014 + }, + "nodes": [ + 370913784, + 370913786, + 370913788, + 370913790, + 370913792, + 9142507292, + 370913793, + 9142507293, + 3734911593, + 370914027 + ], + "geometry": [ + { "lat": 40.7408501, "lon": -73.9726175 }, + { "lat": 40.7414109, "lon": -73.9725007 }, + { "lat": 40.7422132, "lon": -73.9723350 }, + { "lat": 40.7425018, "lon": -73.9722771 }, + { "lat": 40.7428433, "lon": -73.9721518 }, + { "lat": 40.7430553, "lon": -73.9720567 }, + { "lat": 40.7432605, "lon": -73.9719517 }, + { "lat": 40.7434710, "lon": -73.9718257 }, + { "lat": 40.7436632, "lon": -73.9716988 }, + { "lat": 40.7442787, "lon": -73.9713014 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "bridge": "yes", + "destination:lanes": "||none;East 42nd Street", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "South Street Viaduct", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "||through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 46201647, + "bounds": { + "minlat": 40.7403440, + "minlon": -73.9731358, + "maxlat": 40.7430812, + "maxlon": -73.9722255 + }, + "nodes": [ + 4412043541, + 9141034877, + 9141034882, + 9141034883, + 42451122, + 9141034884, + 42451118, + 4274141353, + 9141034885, + 5131026405, + 9141034888, + 13650297900, + 10170983098, + 4274141356 + ], + "geometry": [ + { "lat": 40.7430812, "lon": -73.9722255 }, + { "lat": 40.7429839, "lon": -73.9723971 }, + { "lat": 40.7427599, "lon": -73.9725162 }, + { "lat": 40.7425680, "lon": -73.9726025 }, + { "lat": 40.7424012, "lon": -73.9726746 }, + { "lat": 40.7422417, "lon": -73.9727354 }, + { "lat": 40.7420788, "lon": -73.9727882 }, + { "lat": 40.7418957, "lon": -73.9728424 }, + { "lat": 40.7417025, "lon": -73.9728810 }, + { "lat": 40.7408631, "lon": -73.9730197 }, + { "lat": 40.7407326, "lon": -73.9730404 }, + { "lat": 40.7404425, "lon": -73.9731116 }, + { "lat": 40.7404160, "lon": -73.9731184 }, + { "lat": 40.7403440, "lon": -73.9731358 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46201649, + "bounds": { + "minlat": 40.7371759, + "minlon": -73.9741861, + "maxlat": 40.7380880, + "maxlon": -73.9735306 + }, + "nodes": [ + 589100164, + 6697648692, + 5863965880 + ], + "geometry": [ + { "lat": 40.7371759, "lon": -73.9741861 }, + { "lat": 40.7372248, "lon": -73.9741584 }, + { "lat": 40.7380880, "lon": -73.9735306 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "Fdr Drive Service Road East", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46201650, + "bounds": { + "minlat": 40.7359054, + "minlon": -73.9751672, + "maxlat": 40.7369776, + "maxlon": -73.9749044 + }, + "nodes": [ + 42426875, + 42451049, + 9141029082, + 42451038, + 42451035, + 9141029081, + 42451030, + 9141029080, + 42451028, + 9141029079, + 42451026, + 9141029078, + 9141029077, + 589100228 + ], + "geometry": [ + { "lat": 40.7369776, "lon": -73.9749044 }, + { "lat": 40.7368552, "lon": -73.9749671 }, + { "lat": 40.7367748, "lon": -73.9750052 }, + { "lat": 40.7366740, "lon": -73.9750452 }, + { "lat": 40.7365716, "lon": -73.9750802 }, + { "lat": 40.7364712, "lon": -73.9751100 }, + { "lat": 40.7363762, "lon": -73.9751281 }, + { "lat": 40.7363030, "lon": -73.9751417 }, + { "lat": 40.7362345, "lon": -73.9751510 }, + { "lat": 40.7361602, "lon": -73.9751577 }, + { "lat": 40.7360798, "lon": -73.9751630 }, + { "lat": 40.7360264, "lon": -73.9751658 }, + { "lat": 40.7359706, "lon": -73.9751672 }, + { "lat": 40.7359054, "lon": -73.9751612 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10010", + "tiger:zip_left_1": "10010" + } +}, +{ + "type": "way", + "id": 46201651, + "bounds": { + "minlat": 40.7359893, + "minlon": -73.9748050, + "maxlat": 40.7366969, + "maxlon": -73.9744992 + }, + "nodes": [ + 589100267, + 589100272, + 9913607182, + 9141029074, + 1739869224, + 589100276, + 9141029071, + 9141029073, + 9141029072, + 9141029070, + 9913607183, + 42458006, + 9913607184, + 42458010, + 9141029087, + 9913607185, + 9141029088, + 1728266963 + ], + "geometry": [ + { "lat": 40.7359893, "lon": -73.9748050 }, + { "lat": 40.7359951, "lon": -73.9747805 }, + { "lat": 40.7360039, "lon": -73.9747577 }, + { "lat": 40.7360168, "lon": -73.9747326 }, + { "lat": 40.7360361, "lon": -73.9747086 }, + { "lat": 40.7360592, "lon": -73.9746863 }, + { "lat": 40.7360845, "lon": -73.9746715 }, + { "lat": 40.7361125, "lon": -73.9746622 }, + { "lat": 40.7361394, "lon": -73.9746575 }, + { "lat": 40.7362264, "lon": -73.9746522 }, + { "lat": 40.7362642, "lon": -73.9746476 }, + { "lat": 40.7363055, "lon": -73.9746396 }, + { "lat": 40.7363621, "lon": -73.9746249 }, + { "lat": 40.7364156, "lon": -73.9746091 }, + { "lat": 40.7365009, "lon": -73.9745807 }, + { "lat": 40.7365648, "lon": -73.9745598 }, + { "lat": 40.7366106, "lon": -73.9745432 }, + { "lat": 40.7366969, "lon": -73.9744992 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Waterside Plaza", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46201652, + "bounds": { + "minlat": 40.7359054, + "minlon": -73.9751612, + "maxlat": 40.7359893, + "maxlon": -73.9748050 + }, + "nodes": [ + 589100267, + 4906226604, + 9141029075, + 4906226603, + 589100228 + ], + "geometry": [ + { "lat": 40.7359893, "lon": -73.9748050 }, + { "lat": 40.7359434, "lon": -73.9751011 }, + { "lat": 40.7359391, "lon": -73.9751157 }, + { "lat": 40.7359272, "lon": -73.9751378 }, + { "lat": 40.7359054, "lon": -73.9751612 } + ], + "tags": { + "destination": "East 23rd Street and FDR Drive south", + "highway": "unclassified", + "lanes": "1", + "maxheight": "9'8\"", + "maxspeed": "25 mph", + "name": "Waterside Plaza", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46201653, + "bounds": { + "minlat": 40.7305004, + "minlon": -73.9750637, + "maxlat": 40.7361838, + "maxlon": -73.9730922 + }, + "nodes": [ + 42450910, + 11039980724, + 9142507218, + 42450901, + 42450897, + 9142507219, + 9142507220, + 42450893, + 370898785, + 9142507225, + 9142507226, + 370898784, + 370898782, + 9142507228, + 9142507227, + 9142507229, + 42451013, + 11039980730, + 11039980729, + 11039980728, + 42450977 + ], + "geometry": [ + { "lat": 40.7361838, "lon": -73.9750543 }, + { "lat": 40.7360888, "lon": -73.9750600 }, + { "lat": 40.7360061, "lon": -73.9750637 }, + { "lat": 40.7358940, "lon": -73.9750599 }, + { "lat": 40.7357801, "lon": -73.9750500 }, + { "lat": 40.7356684, "lon": -73.9750358 }, + { "lat": 40.7355566, "lon": -73.9750093 }, + { "lat": 40.7354095, "lon": -73.9749738 }, + { "lat": 40.7318028, "lon": -73.9740511 }, + { "lat": 40.7317024, "lon": -73.9740236 }, + { "lat": 40.7315902, "lon": -73.9739821 }, + { "lat": 40.7314855, "lon": -73.9739341 }, + { "lat": 40.7313773, "lon": -73.9738799 }, + { "lat": 40.7312793, "lon": -73.9738277 }, + { "lat": 40.7311762, "lon": -73.9737607 }, + { "lat": 40.7310735, "lon": -73.9736874 }, + { "lat": 40.7309708, "lon": -73.9736027 }, + { "lat": 40.7308376, "lon": -73.9734790 }, + { "lat": 40.7307203, "lon": -73.9733507 }, + { "lat": 40.7306177, "lon": -73.9732286 }, + { "lat": 40.7305004, "lon": -73.9730922 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 46201655, + "bounds": { + "minlat": 40.7328793, + "minlon": -73.9773908, + "maxlat": 40.7339397, + "maxlon": -73.9748737 + }, + "nodes": [ + 13837911380, + 12179607163, + 3686061872, + 42438362, + 3686061900, + 12179607164, + 4298764922, + 4298764923 + ], + "geometry": [ + { "lat": 40.7328793, "lon": -73.9748737 }, + { "lat": 40.7330412, "lon": -73.9752554 }, + { "lat": 40.7330638, "lon": -73.9753088 }, + { "lat": 40.7330899, "lon": -73.9753702 }, + { "lat": 40.7331220, "lon": -73.9754458 }, + { "lat": 40.7331355, "lon": -73.9754777 }, + { "lat": 40.7333370, "lon": -73.9759559 }, + { "lat": 40.7339397, "lon": -73.9773908 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "separate", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46201665, + "bounds": { + "minlat": 40.7198786, + "minlon": -73.9793658, + "maxlat": 40.7200569, + "maxlon": -73.9787920 + }, + "nodes": [ + 4205946599, + 3783073281, + 3783071232, + 42449874 + ], + "geometry": [ + { "lat": 40.7200569, "lon": -73.9793658 }, + { "lat": 40.7199375, "lon": -73.9789800 }, + { "lat": 40.7199167, "lon": -73.9789058 }, + { "lat": 40.7198786, "lon": -73.9787920 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through;right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 46201666, + "bounds": { + "minlat": 40.7153027, + "minlon": -73.9764830, + "maxlat": 40.7177589, + "maxlon": -73.9753295 + }, + "nodes": [ + 42430973, + 10617892232, + 9906966843, + 4300994888, + 10168307451, + 10168307459, + 4300940099, + 4300940097, + 42452936 + ], + "geometry": [ + { "lat": 40.7177589, "lon": -73.9753295 }, + { "lat": 40.7176776, "lon": -73.9753723 }, + { "lat": 40.7176501, "lon": -73.9753841 }, + { "lat": 40.7173234, "lon": -73.9755266 }, + { "lat": 40.7169054, "lon": -73.9757168 }, + { "lat": 40.7166439, "lon": -73.9758352 }, + { "lat": 40.7162673, "lon": -73.9760067 }, + { "lat": 40.7157649, "lon": -73.9762355 }, + { "lat": 40.7153027, "lon": -73.9764830 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46201667, + "bounds": { + "minlat": 40.7194963, + "minlon": -73.9750225, + "maxlat": 40.7200751, + "maxlon": -73.9749559 + }, + "nodes": [ + 42451712, + 9907942880 + ], + "geometry": [ + { "lat": 40.7200751, "lon": -73.9749559 }, + { "lat": 40.7194963, "lon": -73.9750225 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46201668, + "bounds": { + "minlat": 40.7198312, + "minlon": -73.9875441, + "maxlat": 40.7221638, + "maxlon": -73.9863339 + }, + "nodes": [ + 42437084, + 8231900995, + 8231900992, + 42432068, + 4561657054, + 10168325603, + 9166033064, + 4598752847, + 9166033061 + ], + "geometry": [ + { "lat": 40.7198312, "lon": -73.9875441 }, + { "lat": 40.7198874, "lon": -73.9875139 }, + { "lat": 40.7209373, "lon": -73.9869740 }, + { "lat": 40.7209878, "lon": -73.9869480 }, + { "lat": 40.7210396, "lon": -73.9869205 }, + { "lat": 40.7215058, "lon": -73.9866789 }, + { "lat": 40.7220410, "lon": -73.9864016 }, + { "lat": 40.7220818, "lon": -73.9863792 }, + { "lat": 40.7221638, "lon": -73.9863339 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Essex Street", + "name:etymology:wikidata": "Q23240", + "name:ko": "에식스 스트리트", + "name:ru": "Эссекс-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4532801", + "wikipedia": "en:Essex Street" + } +}, +{ + "type": "way", + "id": 46201677, + "bounds": { + "minlat": 40.7198510, + "minlon": -73.9866195, + "maxlat": 40.7220363, + "maxlon": -73.9854838 + }, + "nodes": [ + 12539238743, + 4561657049, + 42432071, + 4561657051, + 8821475425, + 4598752862, + 1919595924, + 42451604 + ], + "geometry": [ + { "lat": 40.7198510, "lon": -73.9866195 }, + { "lat": 40.7207001, "lon": -73.9861819 }, + { "lat": 40.7207483, "lon": -73.9861570 }, + { "lat": 40.7208017, "lon": -73.9861282 }, + { "lat": 40.7217897, "lon": -73.9856118 }, + { "lat": 40.7218502, "lon": -73.9855798 }, + { "lat": 40.7219214, "lon": -73.9855447 }, + { "lat": 40.7220363, "lon": -73.9854838 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "15 mph", + "maxspeed:type": "sign", + "name": "Norfolk Street", + "name:etymology:wikidata": "Q23109", + "name:ko": "노퍽 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46201679, + "bounds": { + "minlat": 40.7162003, + "minlon": -73.9883771, + "maxlat": 40.7164549, + "maxlon": -73.9875301 + }, + "nodes": [ + 42451593, + 5804835279, + 5804832252, + 42447428 + ], + "geometry": [ + { "lat": 40.7164549, "lon": -73.9883771 }, + { "lat": 40.7164338, "lon": -73.9883072 }, + { "lat": 40.7162181, "lon": -73.9875919 }, + { "lat": 40.7162003, "lon": -73.9875301 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|right", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46211827, + "bounds": { + "minlat": 40.7656084, + "minlon": -73.9518272, + "maxlat": 40.7665323, + "maxlon": -73.9510157 + }, + "nodes": [ + 42427036, + 9906953424, + 9906953425, + 9906953426, + 13149429666 + ], + "geometry": [ + { "lat": 40.7665323, "lon": -73.9510157 }, + { "lat": 40.7664402, "lon": -73.9510969 }, + { "lat": 40.7663317, "lon": -73.9511869 }, + { "lat": 40.7662046, "lon": -73.9512972 }, + { "lat": 40.7656084, "lon": -73.9518272 } + ], + "tags": { + "cycleway:right": "no", + "foot": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "sidewalk": "no", + "surface": "asphalt", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 46211828, + "bounds": { + "minlat": 40.7614886, + "minlon": -73.9619899, + "maxlat": 40.7620729, + "maxlon": -73.9605894 + }, + "nodes": [ + 42423752, + 9375594839, + 4942649697, + 42456049 + ], + "geometry": [ + { "lat": 40.7620729, "lon": -73.9619899 }, + { "lat": 40.7620420, "lon": -73.9619159 }, + { "lat": 40.7615490, "lon": -73.9607342 }, + { "lat": 40.7614886, "lon": -73.9605894 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "East 62nd Street", + "name:ru": "Восточная 62-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 46211829, + "bounds": { + "minlat": 40.7611218, + "minlon": -73.9639021, + "maxlat": 40.7612397, + "maxlon": -73.9636159 + }, + "nodes": [ + 6176483595, + 4798293326 + ], + "geometry": [ + { "lat": 40.7612397, "lon": -73.9639021 }, + { "lat": 40.7611218, "lon": -73.9636159 } + ], + "tags": { + "busway": "opposite_lane", + "highway": "unclassified", + "lanes": "3", + "lanes:bus:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "name_1": "East 60 Street", + "oneway": "yes", + "oneway:bus": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46211831, + "bounds": { + "minlat": 40.7590773, + "minlon": -73.9592658, + "maxlat": 40.7593001, + "maxlon": -73.9586021 + }, + "nodes": [ + 42424672, + 4918486761, + 6177439757, + 6795524057, + 6795524080, + 6795524041, + 6795524077, + 6795524053, + 6795524021, + 371190620 + ], + "geometry": [ + { "lat": 40.7593001, "lon": -73.9592658 }, + { "lat": 40.7592676, "lon": -73.9591258 }, + { "lat": 40.7591830, "lon": -73.9589067 }, + { "lat": 40.7590886, "lon": -73.9586824 }, + { "lat": 40.7590830, "lon": -73.9586659 }, + { "lat": 40.7590799, "lon": -73.9586525 }, + { "lat": 40.7590779, "lon": -73.9586409 }, + { "lat": 40.7590773, "lon": -73.9586290 }, + { "lat": 40.7590784, "lon": -73.9586142 }, + { "lat": 40.7590801, "lon": -73.9586021 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "name_1": "East 60 Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46211832, + "bounds": { + "minlat": 40.7609238, + "minlon": -73.9579018, + "maxlat": 40.7611816, + "maxlon": -73.9573589 + }, + "nodes": [ + 42427970, + 4918486973, + 4886250352 + ], + "geometry": [ + { "lat": 40.7611816, "lon": -73.9579018 }, + { "lat": 40.7610973, "lon": -73.9577718 }, + { "lat": 40.7609238, "lon": -73.9573589 } + ], + "tags": { + "hgv": "destination", + "hgv:lanes": "no|", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 63rd Street", + "name:ru": "Восточная 63-я стрит", + "name_1": "East 63 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|none" + } +}, +{ + "type": "way", + "id": 46211834, + "bounds": { + "minlat": 40.7583833, + "minlon": -73.9597228, + "maxlat": 40.7586736, + "maxlon": -73.9590324 + }, + "nodes": [ + 42448329, + 4918486743, + 3551756586 + ], + "geometry": [ + { "lat": 40.7586736, "lon": -73.9597228 }, + { "lat": 40.7586214, "lon": -73.9595971 }, + { "lat": 40.7583833, "lon": -73.9590324 } + ], + "tags": { + "highway": "unclassified", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46211835, + "bounds": { + "minlat": 40.7596231, + "minlon": -73.9630585, + "maxlat": 40.7600804, + "maxlon": -73.9619550 + }, + "nodes": [ + 13892069978, + 10836164178, + 4215909069, + 9375594176, + 4918486787, + 42448326 + ], + "geometry": [ + { "lat": 40.7600804, "lon": -73.9630585 }, + { "lat": 40.7599842, "lon": -73.9628068 }, + { "lat": 40.7598417, "lon": -73.9624578 }, + { "lat": 40.7598300, "lon": -73.9624299 }, + { "lat": 40.7596890, "lon": -73.9620929 }, + { "lat": 40.7596231, "lon": -73.9619550 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:backward": "destination", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "no", + "parking:left": "no", + "parking:right": "lane", + "sidewalk:left": "separate;lane", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46211836, + "bounds": { + "minlat": 40.7592704, + "minlon": -73.9640002, + "maxlat": 40.7596426, + "maxlon": -73.9630951 + }, + "nodes": [ + 42423565, + 7792415882, + 10121802240 + ], + "geometry": [ + { "lat": 40.7596426, "lon": -73.9640002 }, + { "lat": 40.7596152, "lon": -73.9639155 }, + { "lat": 40.7592704, "lon": -73.9630951 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46211838, + "bounds": { + "minlat": 40.7596406, + "minlon": -73.9588108, + "maxlat": 40.7599137, + "maxlon": -73.9581690 + }, + "nodes": [ + 3785575833, + 8586570516, + 5690549035, + 42427965 + ], + "geometry": [ + { "lat": 40.7596406, "lon": -73.9581690 }, + { "lat": 40.7597814, "lon": -73.9585033 }, + { "lat": 40.7598582, "lon": -73.9586828 }, + { "lat": 40.7599137, "lon": -73.9588108 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 61st Street", + "name:ru": "Восточная 61-я стрит", + "name_1": "East 61 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left;through|through;right|right" + } +}, +{ + "type": "way", + "id": 46211840, + "bounds": { + "minlat": 40.7617963, + "minlon": -73.9574532, + "maxlat": 40.7636731, + "maxlon": -73.9560793 + }, + "nodes": [ + 42427985, + 7837088611, + 4999169390, + 42427979, + 4999169386, + 4918486807, + 42427975, + 4918486804, + 4918486092, + 13701257557, + 42427972 + ], + "geometry": [ + { "lat": 40.7636731, "lon": -73.9560793 }, + { "lat": 40.7636193, "lon": -73.9561187 }, + { "lat": 40.7631181, "lon": -73.9564856 }, + { "lat": 40.7630517, "lon": -73.9565342 }, + { "lat": 40.7629896, "lon": -73.9565797 }, + { "lat": 40.7624786, "lon": -73.9569538 }, + { "lat": 40.7624248, "lon": -73.9569931 }, + { "lat": 40.7623700, "lon": -73.9570332 }, + { "lat": 40.7618602, "lon": -73.9574064 }, + { "lat": 40.7618117, "lon": -73.9574419 }, + { "lat": 40.7617963, "lon": -73.9574532 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "6", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 46211841, + "bounds": { + "minlat": 40.7571963, + "minlon": -73.9606728, + "maxlat": 40.7573667, + "maxlon": -73.9602633 + }, + "nodes": [ + 42432871, + 7248638328, + 42432875 + ], + "geometry": [ + { "lat": 40.7573667, "lon": -73.9606728 }, + { "lat": 40.7573131, "lon": -73.9605439 }, + { "lat": 40.7571963, "lon": -73.9602633 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46211846, + "bounds": { + "minlat": 40.7606729, + "minlon": -73.9573589, + "maxlat": 40.7609238, + "maxlon": -73.9570166 + }, + "nodes": [ + 4886250352, + 3785575802, + 9142584931, + 406010312, + 3785575803, + 9142584934, + 3785575804, + 9142584935, + 9142584936, + 406010307 + ], + "geometry": [ + { "lat": 40.7609238, "lon": -73.9573589 }, + { "lat": 40.7607914, "lon": -73.9570945 }, + { "lat": 40.7607798, "lon": -73.9570719 }, + { "lat": 40.7607631, "lon": -73.9570462 }, + { "lat": 40.7607478, "lon": -73.9570326 }, + { "lat": 40.7607338, "lon": -73.9570250 }, + { "lat": 40.7607194, "lon": -73.9570183 }, + { "lat": 40.7607063, "lon": -73.9570166 }, + { "lat": 40.7606876, "lon": -73.9570188 }, + { "lat": 40.7606729, "lon": -73.9570242 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46211847, + "bounds": { + "minlat": 40.7580427, + "minlon": -73.9591431, + "maxlat": 40.7593428, + "maxlon": -73.9582013 + }, + "nodes": [ + 406006393, + 3785578849, + 42423587, + 42450645 + ], + "geometry": [ + { "lat": 40.7593428, "lon": -73.9582013 }, + { "lat": 40.7591336, "lon": -73.9583653 }, + { "lat": 40.7589864, "lon": -73.9584687 }, + { "lat": 40.7580427, "lon": -73.9591431 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 46211848, + "bounds": { + "minlat": 40.7599962, + "minlon": -73.9576644, + "maxlat": 40.7604092, + "maxlon": -73.9571258 + }, + "nodes": [ + 589298725, + 9142584944, + 3785575791, + 3785575813 + ], + "geometry": [ + { "lat": 40.7604092, "lon": -73.9571258 }, + { "lat": 40.7603010, "lon": -73.9572860 }, + { "lat": 40.7601530, "lon": -73.9574798 }, + { "lat": 40.7599962, "lon": -73.9576644 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 46211849, + "bounds": { + "minlat": 40.7597420, + "minlon": -73.9579039, + "maxlat": 40.7599962, + "maxlon": -73.9576644 + }, + "nodes": [ + 3785575813, + 3785575792, + 371188918 + ], + "geometry": [ + { "lat": 40.7599962, "lon": -73.9576644 }, + { "lat": 40.7599053, "lon": -73.9577561 }, + { "lat": 40.7597420, "lon": -73.9579039 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 46211851, + "bounds": { + "minlat": 40.7300024, + "minlon": -73.9745591, + "maxlat": 40.7305250, + "maxlon": -73.9741791 + }, + "nodes": [ + 1989931107, + 5145329326, + 370896902 + ], + "geometry": [ + { "lat": 40.7300024, "lon": -73.9745591 }, + { "lat": 40.7303240, "lon": -73.9743252 }, + { "lat": 40.7305250, "lon": -73.9741791 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 46224832, + "bounds": { + "minlat": 40.7092114, + "minlon": -73.9963766, + "maxlat": 40.7097436, + "maxlon": -73.9962351 + }, + "nodes": [ + 42433324, + 4382842407, + 11922724473, + 4382842398, + 42437135 + ], + "geometry": [ + { "lat": 40.7097436, "lon": -73.9963766 }, + { "lat": 40.7096894, "lon": -73.9963618 }, + { "lat": 40.7093422, "lon": -73.9962681 }, + { "lat": 40.7092963, "lon": -73.9962557 }, + { "lat": 40.7092114, "lon": -73.9962351 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Slip", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 슬립", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46226325, + "bounds": { + "minlat": 40.7925561, + "minlon": -73.9410289, + "maxlat": 40.7931803, + "maxlon": -73.9405687 + }, + "nodes": [ + 42434386, + 7924346871, + 7777321733, + 42443072 + ], + "geometry": [ + { "lat": 40.7931803, "lon": -73.9405687 }, + { "lat": 40.7931346, "lon": -73.9406025 }, + { "lat": 40.7926226, "lon": -73.9409802 }, + { "lat": 40.7925561, "lon": -73.9410289 } + ], + "tags": { + "alt_name:ko": "2번가", + "construction": "minor", + "cycleway:left": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "turn:lanes": "through|through|none|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46226326, + "bounds": { + "minlat": 40.8017638, + "minlon": -73.9312131, + "maxlat": 40.8026148, + "maxlon": -73.9304764 + }, + "nodes": [ + 7641820943, + 9153700006, + 9153700007, + 9153700008, + 9153700009, + 7926724574, + 2848096357, + 2848096358, + 3786728829, + 589520056, + 3786728830, + 2848096359, + 3786728832, + 589520058, + 2848096360, + 3786728833, + 3786728834, + 9153700005, + 589520063, + 6515269079 + ], + "geometry": [ + { "lat": 40.8017651, "lon": -73.9312131 }, + { "lat": 40.8017638, "lon": -73.9310658 }, + { "lat": 40.8017662, "lon": -73.9310213 }, + { "lat": 40.8017788, "lon": -73.9309782 }, + { "lat": 40.8018021, "lon": -73.9309426 }, + { "lat": 40.8018255, "lon": -73.9309180 }, + { "lat": 40.8022623, "lon": -73.9305305 }, + { "lat": 40.8023024, "lon": -73.9305032 }, + { "lat": 40.8023370, "lon": -73.9304869 }, + { "lat": 40.8023801, "lon": -73.9304766 }, + { "lat": 40.8024214, "lon": -73.9304764 }, + { "lat": 40.8024616, "lon": -73.9304798 }, + { "lat": 40.8024951, "lon": -73.9304968 }, + { "lat": 40.8025256, "lon": -73.9305168 }, + { "lat": 40.8025555, "lon": -73.9305444 }, + { "lat": 40.8025847, "lon": -73.9305871 }, + { "lat": 40.8026012, "lon": -73.9306323 }, + { "lat": 40.8026115, "lon": -73.9306823 }, + { "lat": 40.8026148, "lon": -73.9307276 }, + { "lat": 40.8026118, "lon": -73.9307963 } + ], + "tags": { + "alt_name:ko": "1번가", + "destination": "Harlem River Drive North", + "hgv": "destination", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 46226327, + "bounds": { + "minlat": 40.8033683, + "minlon": -73.9330811, + "maxlat": 40.8034339, + "maxlon": -73.9329255 + }, + "nodes": [ + 42423189, + 42434134 + ], + "geometry": [ + { "lat": 40.8033683, "lon": -73.9329255 }, + { "lat": 40.8034339, "lon": -73.9330811 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "name": "East 126th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46226328, + "bounds": { + "minlat": 40.8202619, + "minlon": -73.9596517, + "maxlat": 40.8203291, + "maxlon": -73.9594899 + }, + "nodes": [ + 42424679, + 42425242 + ], + "geometry": [ + { "lat": 40.8202619, "lon": -73.9594899 }, + { "lat": 40.8203291, "lon": -73.9596517 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "name": "West 133rd Street", + "name_1": "West 133 Street", + "oneway": "yes", + "turn:lanes": "left", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46226329, + "bounds": { + "minlat": 40.8183068, + "minlon": -73.9601523, + "maxlat": 40.8187841, + "maxlon": -73.9598117 + }, + "nodes": [ + 12522167763, + 10128660289, + 42438228 + ], + "geometry": [ + { "lat": 40.8183068, "lon": -73.9601523 }, + { "lat": 40.8187068, "lon": -73.9598668 }, + { "lat": 40.8187841, "lon": -73.9598117 } + ], + "tags": { + "bicycle": "designated", + "cycleway:left": "shared_lane", + "hgv": "destination", + "highway": "unclassified", + "lanes": "4", + "maxspeed": "25 mph", + "name": "12th Avenue", + "name_1": "12 Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46226330, + "bounds": { + "minlat": 40.8018365, + "minlon": -73.9334099, + "maxlat": 40.8026940, + "maxlon": -73.9313894 + }, + "nodes": [ + 42423203, + 9178231198, + 9178231197, + 7926756689, + 371239962 + ], + "geometry": [ + { "lat": 40.8026940, "lon": -73.9334099 }, + { "lat": 40.8026469, "lon": -73.9333140 }, + { "lat": 40.8025984, "lon": -73.9332066 }, + { "lat": 40.8025514, "lon": -73.9330979 }, + { "lat": 40.8018365, "lon": -73.9313894 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46226331, + "bounds": { + "minlat": 40.7544661, + "minlon": -74.0068630, + "maxlat": 40.7545608, + "maxlon": -74.0066345 + }, + "nodes": [ + 246650510, + 42437699 + ], + "geometry": [ + { "lat": 40.7545608, "lon": -74.0068630 }, + { "lat": 40.7544661, "lon": -74.0066345 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "destination:street": "30th Street", + "hgv": "destination", + "highway": "primary", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46226332, + "bounds": { + "minlat": 40.7512711, + "minlon": -74.0000281, + "maxlat": 40.7516771, + "maxlon": -73.9989993 + }, + "nodes": [ + 10792226610, + 3788348142, + 42434465 + ], + "geometry": [ + { "lat": 40.7516771, "lon": -74.0000281 }, + { "lat": 40.7513743, "lon": -73.9993054 }, + { "lat": 40.7512711, "lon": -73.9989993 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46226335, + "bounds": { + "minlat": 40.7518775, + "minlon": -73.9996131, + "maxlat": 40.7521328, + "maxlon": -73.9994282 + }, + "nodes": [ + 427841073, + 12152867543, + 11509842343 + ], + "geometry": [ + { "lat": 40.7518775, "lon": -73.9996131 }, + { "lat": 40.7521136, "lon": -73.9994422 }, + { "lat": 40.7521328, "lon": -73.9994282 } + ], + "tags": { + "alt_name": "Lincoln Tunnel Approach", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "sidewalk": "right", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "concrete", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 46240000, + "bounds": { + "minlat": 40.8282929, + "minlon": -73.9352393, + "maxlat": 40.8295918, + "maxlon": -73.9350893 + }, + "nodes": [ + 42424531, + 2140984897, + 2140986518, + 9153608666, + 589927877, + 9153608667, + 2140986517, + 589927878 + ], + "geometry": [ + { "lat": 40.8295918, "lon": -73.9352393 }, + { "lat": 40.8292831, "lon": -73.9352049 }, + { "lat": 40.8285637, "lon": -73.9350893 }, + { "lat": 40.8285178, "lon": -73.9350900 }, + { "lat": 40.8284651, "lon": -73.9350960 }, + { "lat": 40.8284190, "lon": -73.9351165 }, + { "lat": 40.8283720, "lon": -73.9351444 }, + { "lat": 40.8282929, "lon": -73.9352023 } + ], + "tags": { + "hgv": "destination", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "name_1": "Adam Clayton Powell Jr. Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 46240001, + "bounds": { + "minlat": 40.8279598, + "minlon": -73.9350740, + "maxlat": 40.8279826, + "maxlon": -73.9350182 + }, + "nodes": [ + 42434935, + 373850902 + ], + "geometry": [ + { "lat": 40.8279826, "lon": -73.9350182 }, + { "lat": 40.8279598, "lon": -73.9350740 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "highway": "secondary", + "lanes": "2", + "layer": "2", + "name": "Macombs Place", + "name:etymology:wikidata": "Q328356", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 46240038, + "bounds": { + "minlat": 40.8317856, + "minlon": -73.9355202, + "maxlat": 40.8349240, + "maxlon": -73.9353486 + }, + "nodes": [ + 42426810, + 373777437, + 9153608714, + 373777433, + 9153608713, + 2504882421, + 373777429, + 13535333011, + 373773100, + 13535333010, + 9153608712, + 9153608711, + 9153608710, + 13535318224, + 13535318225, + 373774381, + 5009645111 + ], + "geometry": [ + { "lat": 40.8349240, "lon": -73.9354669 }, + { "lat": 40.8346689, "lon": -73.9355040 }, + { "lat": 40.8345648, "lon": -73.9355153 }, + { "lat": 40.8344598, "lon": -73.9355202 }, + { "lat": 40.8343570, "lon": -73.9355178 }, + { "lat": 40.8342614, "lon": -73.9355110 }, + { "lat": 40.8341803, "lon": -73.9355032 }, + { "lat": 40.8322367, "lon": -73.9353498 }, + { "lat": 40.8321781, "lon": -73.9353486 }, + { "lat": 40.8321257, "lon": -73.9353498 }, + { "lat": 40.8320760, "lon": -73.9353528 }, + { "lat": 40.8320220, "lon": -73.9353592 }, + { "lat": 40.8319762, "lon": -73.9353703 }, + { "lat": 40.8319399, "lon": -73.9353802 }, + { "lat": 40.8319096, "lon": -73.9353900 }, + { "lat": 40.8318770, "lon": -73.9354069 }, + { "lat": 40.8317856, "lon": -73.9354566 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "name_1": "Frederick Douglass Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "8th;Harlem River", + "tiger:name_base_1": "Frederick Douglass", + "tiger:name_type": "Ave;Dr", + "tiger:name_type_1": "Blvd", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 46240040, + "bounds": { + "minlat": 40.8263097, + "minlon": -73.9356686, + "maxlat": 40.8272054, + "maxlon": -73.9350091 + }, + "nodes": [ + 12739219136, + 9153608661, + 589927910, + 9153608660 + ], + "geometry": [ + { "lat": 40.8272054, "lon": -73.9350091 }, + { "lat": 40.8271936, "lon": -73.9350159 }, + { "lat": 40.8271403, "lon": -73.9350508 }, + { "lat": 40.8263097, "lon": -73.9356686 } + ], + "tags": { + "alt_name": "7th Avenue", + "cutting": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "no", + "sidewalk": "no", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "tiger:cfcc": "A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46240053, + "bounds": { + "minlat": 40.8301558, + "minlon": -73.9400054, + "maxlat": 40.8303169, + "maxlon": -73.9396091 + }, + "nodes": [ + 42439802, + 11221649589 + ], + "geometry": [ + { "lat": 40.8301558, "lon": -73.9396091 }, + { "lat": 40.8303169, "lon": -73.9400054 } + ], + "tags": { + "alt_name": "Charles Hamilton Houston Boulevard", + "description": "This honorary street name memorializes Charles Hamilton Houston.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "turn:lanes:forward": "through|through;right", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46240063, + "bounds": { + "minlat": 40.8269366, + "minlon": -73.9351822, + "maxlat": 40.8271660, + "maxlon": -73.9351348 + }, + "nodes": [ + 371337230, + 5959378998, + 373769319 + ], + "geometry": [ + { "lat": 40.8269366, "lon": -73.9351348 }, + { "lat": 40.8270324, "lon": -73.9351496 }, + { "lat": 40.8271660, "lon": -73.9351822 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46240065, + "bounds": { + "minlat": 40.8271660, + "minlon": -73.9352133, + "maxlat": 40.8276675, + "maxlon": -73.9351404 + }, + "nodes": [ + 373769319, + 371337231, + 9150629578, + 589927920, + 5959378997, + 9150629579, + 13535333121, + 13535333122 + ], + "geometry": [ + { "lat": 40.8271660, "lon": -73.9351822 }, + { "lat": 40.8272900, "lon": -73.9352061 }, + { "lat": 40.8273552, "lon": -73.9352133 }, + { "lat": 40.8274259, "lon": -73.9352132 }, + { "lat": 40.8274945, "lon": -73.9352061 }, + { "lat": 40.8275583, "lon": -73.9351900 }, + { "lat": 40.8276126, "lon": -73.9351684 }, + { "lat": 40.8276675, "lon": -73.9351404 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46240067, + "bounds": { + "minlat": 40.8277907, + "minlon": -73.9350557, + "maxlat": 40.8280476, + "maxlon": -73.9345792 + }, + "nodes": [ + 373769330, + 5959378996, + 373769333, + 371337237, + 13535333125, + 2140998757, + 371337239 + ], + "geometry": [ + { "lat": 40.8277907, "lon": -73.9350557 }, + { "lat": 40.8278517, "lon": -73.9349938 }, + { "lat": 40.8278872, "lon": -73.9349504 }, + { "lat": 40.8279322, "lon": -73.9348829 }, + { "lat": 40.8279683, "lon": -73.9348082 }, + { "lat": 40.8279935, "lon": -73.9347435 }, + { "lat": 40.8280476, "lon": -73.9345792 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "concrete", + "turn:lanes": "through|through", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 46240076, + "bounds": { + "minlat": 40.8259331, + "minlon": -73.9358068, + "maxlat": 40.8260123, + "maxlon": -73.9357392 + }, + "nodes": [ + 2141002595, + 5916527828 + ], + "geometry": [ + { "lat": 40.8259331, "lon": -73.9358068 }, + { "lat": 40.8260123, "lon": -73.9357392 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Adam Clayton Powell Jr. Boulevard", + "name1": "7th Ave", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46240079, + "bounds": { + "minlat": 40.8258024, + "minlon": -73.9361454, + "maxlat": 40.8267401, + "maxlon": -73.9355215 + }, + "nodes": [ + 371337226, + 11218641143, + 9150629573, + 12739219128, + 2141002596, + 9150629565, + 2141002590 + ], + "geometry": [ + { "lat": 40.8267401, "lon": -73.9355215 }, + { "lat": 40.8266870, "lon": -73.9355634 }, + { "lat": 40.8266583, "lon": -73.9355861 }, + { "lat": 40.8261700, "lon": -73.9359227 }, + { "lat": 40.8260430, "lon": -73.9360101 }, + { "lat": 40.8260146, "lon": -73.9360326 }, + { "lat": 40.8258024, "lon": -73.9361454 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46240091, + "bounds": { + "minlat": 40.8201556, + "minlon": -73.9347302, + "maxlat": 40.8272300, + "maxlon": -73.9344437 + }, + "nodes": [ + 589927932, + 9166241135, + 9166241134, + 42444546, + 9166241133, + 9166241132, + 373767430, + 9166241126, + 373767433, + 9166241125, + 373766926, + 42444538, + 9166241124, + 373766696, + 9166241123, + 373766697, + 9166241122, + 373766572, + 373766491, + 9166241121, + 373766270, + 589927933 + ], + "geometry": [ + { "lat": 40.8272300, "lon": -73.9347302 }, + { "lat": 40.8259127, "lon": -73.9345969 }, + { "lat": 40.8257104, "lon": -73.9345775 }, + { "lat": 40.8255047, "lon": -73.9345596 }, + { "lat": 40.8252970, "lon": -73.9345446 }, + { "lat": 40.8251108, "lon": -73.9345386 }, + { "lat": 40.8249036, "lon": -73.9345343 }, + { "lat": 40.8242071, "lon": -73.9345418 }, + { "lat": 40.8240037, "lon": -73.9345436 }, + { "lat": 40.8237998, "lon": -73.9345425 }, + { "lat": 40.8236056, "lon": -73.9345328 }, + { "lat": 40.8226962, "lon": -73.9344621 }, + { "lat": 40.8224942, "lon": -73.9344482 }, + { "lat": 40.8222969, "lon": -73.9344437 }, + { "lat": 40.8220897, "lon": -73.9344502 }, + { "lat": 40.8218811, "lon": -73.9344657 }, + { "lat": 40.8215895, "lon": -73.9344923 }, + { "lat": 40.8213870, "lon": -73.9345078 }, + { "lat": 40.8211870, "lon": -73.9345157 }, + { "lat": 40.8209797, "lon": -73.9345169 }, + { "lat": 40.8207673, "lon": -73.9345069 }, + { "lat": 40.8201556, "lon": -73.9344827 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD" + } +}, +{ + "type": "way", + "id": 46240093, + "bounds": { + "minlat": 40.8272343, + "minlon": -73.9348466, + "maxlat": 40.8293371, + "maxlon": -73.9345913 + }, + "nodes": [ + 589927935, + 8862591092 + ], + "geometry": [ + { "lat": 40.8272343, "lon": -73.9345913 }, + { "lat": 40.8293371, "lon": -73.9348466 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East River:Harlem River", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10035" + } +}, +{ + "type": "way", + "id": 46240112, + "bounds": { + "minlat": 40.8201576, + "minlon": -73.9345913, + "maxlat": 40.8272343, + "maxlon": -73.9343053 + }, + "nodes": [ + 589927953, + 373766402, + 9166241117, + 373766542, + 373766543, + 9166241118, + 9166241119, + 9166241120, + 373766802, + 371337217, + 373766943, + 9166241127, + 373767328, + 9166241128, + 371337219, + 9166241129, + 373767329, + 9166241130, + 371337221, + 9166241131, + 589927935 + ], + "geometry": [ + { "lat": 40.8201576, "lon": -73.9343436 }, + { "lat": 40.8207582, "lon": -73.9343722 }, + { "lat": 40.8209684, "lon": -73.9343788 }, + { "lat": 40.8211812, "lon": -73.9343779 }, + { "lat": 40.8213846, "lon": -73.9343665 }, + { "lat": 40.8215902, "lon": -73.9343496 }, + { "lat": 40.8219955, "lon": -73.9343147 }, + { "lat": 40.8221904, "lon": -73.9343053 }, + { "lat": 40.8223958, "lon": -73.9343054 }, + { "lat": 40.8226106, "lon": -73.9343179 }, + { "lat": 40.8236061, "lon": -73.9343941 }, + { "lat": 40.8238110, "lon": -73.9344031 }, + { "lat": 40.8240068, "lon": -73.9344079 }, + { "lat": 40.8241846, "lon": -73.9344059 }, + { "lat": 40.8243880, "lon": -73.9344009 }, + { "lat": 40.8248983, "lon": -73.9343932 }, + { "lat": 40.8251003, "lon": -73.9343967 }, + { "lat": 40.8253304, "lon": -73.9344063 }, + { "lat": 40.8255263, "lon": -73.9344199 }, + { "lat": 40.8257289, "lon": -73.9344388 }, + { "lat": 40.8272343, "lon": -73.9345913 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "smoothness": "good", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 46240115, + "bounds": { + "minlat": 40.8147590, + "minlon": -73.9343888, + "maxlat": 40.8188825, + "maxlon": -73.9341189 + }, + "nodes": [ + 42426971, + 42444532, + 9166236612, + 373765606, + 373765608, + 373765737, + 373765610, + 42425985, + 42425484 + ], + "geometry": [ + { "lat": 40.8188825, "lon": -73.9343644 }, + { "lat": 40.8183557, "lon": -73.9342353 }, + { "lat": 40.8181378, "lon": -73.9341859 }, + { "lat": 40.8179124, "lon": -73.9341513 }, + { "lat": 40.8177082, "lon": -73.9341298 }, + { "lat": 40.8174741, "lon": -73.9341189 }, + { "lat": 40.8172692, "lon": -73.9341244 }, + { "lat": 40.8170488, "lon": -73.9341425 }, + { "lat": 40.8147590, "lon": -73.9343888 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD" + } +}, +{ + "type": "way", + "id": 46240121, + "bounds": { + "minlat": 40.8122646, + "minlon": -73.9361914, + "maxlat": 40.8140490, + "maxlon": -73.9348455 + }, + "nodes": [ + 589927965, + 8236461975, + 12688865136, + 589927966, + 9163819561, + 9902223892, + 9163819562, + 9163819563, + 8236461958 + ], + "geometry": [ + { "lat": 40.8140490, "lon": -73.9348455 }, + { "lat": 40.8140156, "lon": -73.9348698 }, + { "lat": 40.8139591, "lon": -73.9349102 }, + { "lat": 40.8132297, "lon": -73.9354412 }, + { "lat": 40.8123511, "lon": -73.9360803 }, + { "lat": 40.8123261, "lon": -73.9361037 }, + { "lat": 40.8123011, "lon": -73.9361329 }, + { "lat": 40.8122781, "lon": -73.9361625 }, + { "lat": 40.8122646, "lon": -73.9361914 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 46240138, + "bounds": { + "minlat": 40.8147720, + "minlon": -73.9361049, + "maxlat": 40.8153391, + "maxlon": -73.9357666 + }, + "nodes": [ + 371337175, + 9557110439, + 9166236574, + 371337199, + 42456831 + ], + "geometry": [ + { "lat": 40.8147720, "lon": -73.9361049 }, + { "lat": 40.8148634, "lon": -73.9360401 }, + { "lat": 40.8152107, "lon": -73.9358035 }, + { "lat": 40.8152496, "lon": -73.9357900 }, + { "lat": 40.8153391, "lon": -73.9357666 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:lane:width": "13'", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 46240142, + "bounds": { + "minlat": 40.8147435, + "minlon": -73.9345542, + "maxlat": 40.8158343, + "maxlon": -73.9344443 + }, + "nodes": [ + 42425425, + 42425423 + ], + "geometry": [ + { "lat": 40.8158343, "lon": -73.9344443 }, + { "lat": 40.8147435, "lon": -73.9345542 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46240148, + "bounds": { + "minlat": 40.8113932, + "minlon": -73.9386492, + "maxlat": 40.8127563, + "maxlon": -73.9376408 + }, + "nodes": [ + 7541804761, + 9559433254, + 7448934385, + 7616585444, + 7448934386, + 8962620263 + ], + "geometry": [ + { "lat": 40.8127563, "lon": -73.9376408 }, + { "lat": 40.8126624, "lon": -73.9377160 }, + { "lat": 40.8119180, "lon": -73.9382621 }, + { "lat": 40.8117170, "lon": -73.9384104 }, + { "lat": 40.8116372, "lon": -73.9384692 }, + { "lat": 40.8113932, "lon": -73.9386492 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:lane:width": "13'", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 46240152, + "bounds": { + "minlat": 40.8147982, + "minlon": -73.9368471, + "maxlat": 40.8149338, + "maxlon": -73.9361896 + }, + "nodes": [ + 5378686574, + 589928002, + 9557110441, + 5175281846, + 589928003 + ], + "geometry": [ + { "lat": 40.8147982, "lon": -73.9361896 }, + { "lat": 40.8148218, "lon": -73.9362827 }, + { "lat": 40.8148244, "lon": -73.9362974 }, + { "lat": 40.8148938, "lon": -73.9366885 }, + { "lat": 40.8149338, "lon": -73.9368471 } + ], + "tags": { + "highway": "residential", + "name": "West 138th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46240154, + "bounds": { + "minlat": 40.8172609, + "minlon": -73.9470312, + "maxlat": 40.8192188, + "maxlon": -73.9423832 + }, + "nodes": [ + 42432956, + 7784459456, + 10166154764, + 42435981, + 10166154762, + 7069015234, + 10166154756, + 42435856, + 10166154754, + 6823179315, + 13450020366, + 9150629549, + 42435967 + ], + "geometry": [ + { "lat": 40.8192188, "lon": -73.9470312 }, + { "lat": 40.8191665, "lon": -73.9469061 }, + { "lat": 40.8190480, "lon": -73.9466224 }, + { "lat": 40.8190060, "lon": -73.9465220 }, + { "lat": 40.8189731, "lon": -73.9464441 }, + { "lat": 40.8185955, "lon": -73.9455480 }, + { "lat": 40.8184822, "lon": -73.9452781 }, + { "lat": 40.8184240, "lon": -73.9451410 }, + { "lat": 40.8183735, "lon": -73.9450209 }, + { "lat": 40.8180573, "lon": -73.9442694 }, + { "lat": 40.8176531, "lon": -73.9433122 }, + { "lat": 40.8173066, "lon": -73.9424915 }, + { "lat": 40.8172609, "lon": -73.9423832 } + ], + "tags": { + "highway": "residential", + "name": "West 138th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46240188, + "bounds": { + "minlat": 40.8101814, + "minlon": -73.9390289, + "maxlat": 40.8108543, + "maxlon": -73.9374066 + }, + "nodes": [ + 42429530, + 9902223903, + 5481922057, + 10168169637, + 42446190 + ], + "geometry": [ + { "lat": 40.8108543, "lon": -73.9390289 }, + { "lat": 40.8108077, "lon": -73.9389164 }, + { "lat": 40.8106837, "lon": -73.9386175 }, + { "lat": 40.8102300, "lon": -73.9375227 }, + { "lat": 40.8101814, "lon": -73.9374066 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 132nd Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46240204, + "bounds": { + "minlat": 40.7615775, + "minlon": -73.9706710, + "maxlat": 40.7622520, + "maxlon": -73.9701729 + }, + "nodes": [ + 42432834, + 10125227996, + 12834723223, + 10166509650, + 42456598 + ], + "geometry": [ + { "lat": 40.7615775, "lon": -73.9706710 }, + { "lat": 40.7616785, "lon": -73.9705964 }, + { "lat": 40.7621514, "lon": -73.9702472 }, + { "lat": 40.7621932, "lon": -73.9702164 }, + { "lat": 40.7622520, "lon": -73.9701729 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 46240205, + "bounds": { + "minlat": 40.8054494, + "minlon": -73.9389413, + "maxlat": 40.8095503, + "maxlon": -73.9359324 + }, + "nodes": [ + 589927991, + 10168169572, + 5482250750, + 10168169560, + 589928037, + 10168169565, + 10168169555, + 589928038, + 10168169551, + 10169411219, + 589928039, + 10169411223, + 10168169517, + 589928040, + 10168169523, + 10172922916, + 589928041, + 10186193917, + 10172935819, + 10169411285, + 589928042, + 10169411289, + 12218154250 + ], + "geometry": [ + { "lat": 40.8095503, "lon": -73.9359324 }, + { "lat": 40.8094746, "lon": -73.9359868 }, + { "lat": 40.8090984, "lon": -73.9362567 }, + { "lat": 40.8089616, "lon": -73.9363548 }, + { "lat": 40.8089052, "lon": -73.9363966 }, + { "lat": 40.8088423, "lon": -73.9364424 }, + { "lat": 40.8083405, "lon": -73.9368072 }, + { "lat": 40.8082806, "lon": -73.9368507 }, + { "lat": 40.8082276, "lon": -73.9368901 }, + { "lat": 40.8077148, "lon": -73.9372720 }, + { "lat": 40.8076564, "lon": -73.9373154 }, + { "lat": 40.8076076, "lon": -73.9373504 }, + { "lat": 40.8070903, "lon": -73.9377220 }, + { "lat": 40.8070213, "lon": -73.9377715 }, + { "lat": 40.8069795, "lon": -73.9378020 }, + { "lat": 40.8064749, "lon": -73.9381698 }, + { "lat": 40.8064089, "lon": -73.9382179 }, + { "lat": 40.8063655, "lon": -73.9382576 }, + { "lat": 40.8063439, "lon": -73.9382772 }, + { "lat": 40.8058575, "lon": -73.9386375 }, + { "lat": 40.8057906, "lon": -73.9386884 }, + { "lat": 40.8057362, "lon": -73.9387288 }, + { "lat": 40.8054494, "lon": -73.9389413 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 46240246, + "bounds": { + "minlat": 40.8034325, + "minlon": -73.9326917, + "maxlat": 40.8058615, + "maxlon": -73.9307139 + }, + "nodes": [ + 5871779254, + 3786728745, + 12537570259, + 3786728744, + 12537570258, + 42444740, + 3786728743, + 12537570257, + 589928165, + 12537570256, + 3786728742, + 42444737, + 12537570255, + 371225102, + 12537570254, + 12537570253, + 589928166 + ], + "geometry": [ + { "lat": 40.8058615, "lon": -73.9326917 }, + { "lat": 40.8053131, "lon": -73.9321541 }, + { "lat": 40.8051811, "lon": -73.9320228 }, + { "lat": 40.8050818, "lon": -73.9319252 }, + { "lat": 40.8049631, "lon": -73.9318137 }, + { "lat": 40.8048465, "lon": -73.9317040 }, + { "lat": 40.8047286, "lon": -73.9315960 }, + { "lat": 40.8046143, "lon": -73.9314997 }, + { "lat": 40.8044834, "lon": -73.9313884 }, + { "lat": 40.8043363, "lon": -73.9312811 }, + { "lat": 40.8042033, "lon": -73.9311840 }, + { "lat": 40.8040819, "lon": -73.9310913 }, + { "lat": 40.8039527, "lon": -73.9310057 }, + { "lat": 40.8038191, "lon": -73.9309192 }, + { "lat": 40.8037037, "lon": -73.9308605 }, + { "lat": 40.8035862, "lon": -73.9307936 }, + { "lat": 40.8034325, "lon": -73.9307139 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46240250, + "bounds": { + "minlat": 40.8025637, + "minlon": -73.9307139, + "maxlat": 40.8034325, + "maxlon": -73.9303673 + }, + "nodes": [ + 589928166, + 371225093, + 371230221, + 3786728740, + 42425718, + 42426799 + ], + "geometry": [ + { "lat": 40.8034325, "lon": -73.9307139 }, + { "lat": 40.8033291, "lon": -73.9306568 }, + { "lat": 40.8031116, "lon": -73.9305637 }, + { "lat": 40.8029710, "lon": -73.9305040 }, + { "lat": 40.8028180, "lon": -73.9304424 }, + { "lat": 40.8025637, "lon": -73.9303673 } + ], + "tags": { + "destination:lanes": "||East 116th Street|Robert F Kennedy Bridge;Bruckner Expressway;Grand Central Parkway", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "turn:lanes": "||merge_to_left|slight_right" + } +}, +{ + "type": "way", + "id": 46240259, + "bounds": { + "minlat": 40.8060843, + "minlon": -73.9335118, + "maxlat": 40.8070815, + "maxlon": -73.9325795 + }, + "nodes": [ + 12537570231, + 6511274595 + ], + "geometry": [ + { "lat": 40.8060843, "lon": -73.9325795 }, + { "lat": 40.8070815, "lon": -73.9335118 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "smoothness": "good", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46240260, + "bounds": { + "minlat": 40.8034956, + "minlon": -73.9325000, + "maxlat": 40.8059994, + "maxlon": -73.9304986 + }, + "nodes": [ + 6137509877, + 12537570243, + 5920675986, + 12537570242, + 5959765087, + 12537570241, + 9153702827, + 12537570240, + 6159309154, + 12537570239, + 5920675987, + 12537570238, + 12537570237, + 6159309155, + 12537570236, + 5920675988, + 12537570235, + 6384020635, + 12537570234, + 5920675990 + ], + "geometry": [ + { "lat": 40.8034956, "lon": -73.9304986 }, + { "lat": 40.8036495, "lon": -73.9305733 }, + { "lat": 40.8037989, "lon": -73.9306475 }, + { "lat": 40.8038871, "lon": -73.9306927 }, + { "lat": 40.8039732, "lon": -73.9307398 }, + { "lat": 40.8040589, "lon": -73.9307917 }, + { "lat": 40.8041600, "lon": -73.9308501 }, + { "lat": 40.8042493, "lon": -73.9309111 }, + { "lat": 40.8043338, "lon": -73.9309679 }, + { "lat": 40.8044250, "lon": -73.9310307 }, + { "lat": 40.8045260, "lon": -73.9311059 }, + { "lat": 40.8046355, "lon": -73.9311945 }, + { "lat": 40.8047251, "lon": -73.9312667 }, + { "lat": 40.8048259, "lon": -73.9313517 }, + { "lat": 40.8049184, "lon": -73.9314317 }, + { "lat": 40.8050097, "lon": -73.9315171 }, + { "lat": 40.8051006, "lon": -73.9316021 }, + { "lat": 40.8051857, "lon": -73.9316846 }, + { "lat": 40.8056568, "lon": -73.9321420 }, + { "lat": 40.8059994, "lon": -73.9325000 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46240274, + "bounds": { + "minlat": 40.7970767, + "minlon": -73.9312818, + "maxlat": 40.7976374, + "maxlon": -73.9299191 + }, + "nodes": [ + 42432324, + 9906259300, + 7925258889, + 9906259299, + 42443826 + ], + "geometry": [ + { "lat": 40.7970767, "lon": -73.9299191 }, + { "lat": 40.7971065, "lon": -73.9299882 }, + { "lat": 40.7975900, "lon": -73.9311446 }, + { "lat": 40.7976137, "lon": -73.9312098 }, + { "lat": 40.7976374, "lon": -73.9312818 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 120th Street", + "name:ru": "Восточная 120-я стрит", + "name_1": "East 120 Street" + } +}, +{ + "type": "way", + "id": 46240372, + "bounds": { + "minlat": 40.7969920, + "minlon": -73.9339919, + "maxlat": 40.7979434, + "maxlon": -73.9317474 + }, + "nodes": [ + 42435240, + 7925258621, + 7589801929, + 5482291278, + 8796935301, + 42435237 + ], + "geometry": [ + { "lat": 40.7969920, "lon": -73.9317474 }, + { "lat": 40.7970431, "lon": -73.9318679 }, + { "lat": 40.7977006, "lon": -73.9334189 }, + { "lat": 40.7978170, "lon": -73.9336936 }, + { "lat": 40.7978890, "lon": -73.9338634 }, + { "lat": 40.7979434, "lon": -73.9339919 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 119th Street", + "name:ru": "Восточная 119-я стрит", + "name_1": "East 119 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46240373, + "bounds": { + "minlat": 40.7976795, + "minlon": -73.9426190, + "maxlat": 40.7999317, + "maxlon": -73.9372797 + }, + "nodes": [ + 42443088, + 10170834280, + 10166326167, + 42449840, + 10166326171, + 10122952997, + 10122952998, + 42447201, + 10122952999, + 13703693547, + 10173037239, + 42449833 + ], + "geometry": [ + { "lat": 40.7976795, "lon": -73.9372797 }, + { "lat": 40.7977358, "lon": -73.9374133 }, + { "lat": 40.7985750, "lon": -73.9394040 }, + { "lat": 40.7986248, "lon": -73.9395221 }, + { "lat": 40.7986895, "lon": -73.9396633 }, + { "lat": 40.7986919, "lon": -73.9396686 }, + { "lat": 40.7992705, "lon": -73.9410369 }, + { "lat": 40.7993112, "lon": -73.9411335 }, + { "lat": 40.7993489, "lon": -73.9412238 }, + { "lat": 40.7994065, "lon": -73.9413617 }, + { "lat": 40.7998991, "lon": -73.9425406 }, + { "lat": 40.7999317, "lon": -73.9426190 } + ], + "tags": { + "highway": "residential", + "name": "East 117th Street", + "name:ru": "Восточная 117-я стрит", + "name_1": "East 117 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46240374, + "bounds": { + "minlat": 40.7958438, + "minlon": -73.9320391, + "maxlat": 40.7962897, + "maxlon": -73.9309878 + }, + "nodes": [ + 6257070519, + 42439514 + ], + "geometry": [ + { "lat": 40.7962897, "lon": -73.9320391 }, + { "lat": 40.7958438, "lon": -73.9309878 } + ], + "tags": { + "highway": "residential", + "name": "East 118th Street", + "name:ru": "Восточная 118-я стрит", + "name_1": "East 118 Street", + "oneway": "no", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 46240375, + "bounds": { + "minlat": 40.7887043, + "minlon": -73.9378563, + "maxlat": 40.7895887, + "maxlon": -73.9374595 + }, + "nodes": [ + 371216381, + 42433516, + 9906259310, + 3786723989, + 42433513 + ], + "geometry": [ + { "lat": 40.7895887, "lon": -73.9374595 }, + { "lat": 40.7894419, "lon": -73.9375390 }, + { "lat": 40.7893031, "lon": -73.9376027 }, + { "lat": 40.7888347, "lon": -73.9378041 }, + { "lat": 40.7887043, "lon": -73.9378563 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46240376, + "bounds": { + "minlat": 40.7805427, + "minlon": -73.9444847, + "maxlat": 40.7830347, + "maxlon": -73.9440388 + }, + "nodes": [ + 4779073677, + 4779073680, + 3785522888, + 9906275219, + 9178958215, + 42433406, + 3785522889, + 9178958216, + 6289180295, + 589929423, + 9178967042, + 5161838650, + 9906275220, + 5161838654, + 9178967043, + 5161838651, + 5161838653, + 9178967044, + 9906275221, + 589929417 + ], + "geometry": [ + { "lat": 40.7830347, "lon": -73.9440388 }, + { "lat": 40.7829268, "lon": -73.9441165 }, + { "lat": 40.7828590, "lon": -73.9441625 }, + { "lat": 40.7827521, "lon": -73.9442253 }, + { "lat": 40.7826376, "lon": -73.9442925 }, + { "lat": 40.7825338, "lon": -73.9443423 }, + { "lat": 40.7824358, "lon": -73.9443830 }, + { "lat": 40.7823405, "lon": -73.9444148 }, + { "lat": 40.7822424, "lon": -73.9444401 }, + { "lat": 40.7821377, "lon": -73.9444608 }, + { "lat": 40.7820471, "lon": -73.9444716 }, + { "lat": 40.7819425, "lon": -73.9444807 }, + { "lat": 40.7818231, "lon": -73.9444840 }, + { "lat": 40.7817012, "lon": -73.9444847 }, + { "lat": 40.7815886, "lon": -73.9444784 }, + { "lat": 40.7814657, "lon": -73.9444662 }, + { "lat": 40.7813532, "lon": -73.9444493 }, + { "lat": 40.7812522, "lon": -73.9444297 }, + { "lat": 40.7811376, "lon": -73.9444035 }, + { "lat": 40.7805427, "lon": -73.9442562 } + ], + "tags": { + "destination": "FDR Drive south and York Avenue", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46240377, + "bounds": { + "minlat": 40.7840873, + "minlon": -73.9429425, + "maxlat": 40.7858286, + "maxlon": -73.9398936 + }, + "nodes": [ + 5749215967, + 9178958197, + 9178958198, + 5904383033, + 5904383036, + 9178958199, + 3785522922, + 42433366, + 42433370, + 5904383034, + 3785522931, + 8828070163, + 8828070152, + 42433377, + 8828070169, + 3785522885, + 42427026, + 3631837585 + ], + "geometry": [ + { "lat": 40.7858286, "lon": -73.9398936 }, + { "lat": 40.7857434, "lon": -73.9399937 }, + { "lat": 40.7856799, "lon": -73.9400603 }, + { "lat": 40.7856180, "lon": -73.9401346 }, + { "lat": 40.7855537, "lon": -73.9402129 }, + { "lat": 40.7854946, "lon": -73.9402887 }, + { "lat": 40.7854391, "lon": -73.9403737 }, + { "lat": 40.7853722, "lon": -73.9404786 }, + { "lat": 40.7853059, "lon": -73.9405938 }, + { "lat": 40.7852317, "lon": -73.9407293 }, + { "lat": 40.7850458, "lon": -73.9410405 }, + { "lat": 40.7849733, "lon": -73.9411541 }, + { "lat": 40.7846483, "lon": -73.9418227 }, + { "lat": 40.7846006, "lon": -73.9419442 }, + { "lat": 40.7845337, "lon": -73.9421274 }, + { "lat": 40.7844949, "lon": -73.9422125 }, + { "lat": 40.7842250, "lon": -73.9427447 }, + { "lat": 40.7840873, "lon": -73.9429425 } + ], + "tags": { + "destination": "East 100th Street", + "hgv": "destination", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46332295, + "bounds": { + "minlat": 40.7223840, + "minlon": -74.0037680, + "maxlat": 40.7270026, + "maxlon": -73.9998695 + }, + "nodes": [ + 42452026, + 8231935506, + 12187433939, + 4676469047, + 12187433938, + 8231885411, + 42432142, + 8231885410, + 12187433937, + 12187433936, + 8231938429, + 42442276, + 8231938428, + 8231934407, + 42454423, + 8231934406, + 5829844672, + 5799117240, + 42448558 + ], + "geometry": [ + { "lat": 40.7223840, "lon": -74.0037680 }, + { "lat": 40.7224476, "lon": -74.0037208 }, + { "lat": 40.7225078, "lon": -74.0036760 }, + { "lat": 40.7229325, "lon": -74.0033212 }, + { "lat": 40.7232077, "lon": -74.0030916 }, + { "lat": 40.7232356, "lon": -74.0030660 }, + { "lat": 40.7233168, "lon": -74.0029951 }, + { "lat": 40.7233981, "lon": -74.0029212 }, + { "lat": 40.7234350, "lon": -74.0028883 }, + { "lat": 40.7244659, "lon": -74.0020150 }, + { "lat": 40.7245065, "lon": -74.0019806 }, + { "lat": 40.7245552, "lon": -74.0019395 }, + { "lat": 40.7246170, "lon": -74.0018872 }, + { "lat": 40.7257355, "lon": -74.0009412 }, + { "lat": 40.7257774, "lon": -74.0009057 }, + { "lat": 40.7258267, "lon": -74.0008640 }, + { "lat": 40.7268158, "lon": -74.0000275 }, + { "lat": 40.7268880, "lon": -73.9999665 }, + { "lat": 40.7270026, "lon": -73.9998695 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 46332297, + "bounds": { + "minlat": 40.7176898, + "minlon": -74.0023502, + "maxlat": 40.7183162, + "maxlon": -74.0018252 + }, + "nodes": [ + 42432627, + 8307641751, + 8307641754, + 42432635 + ], + "geometry": [ + { "lat": 40.7176898, "lon": -74.0023502 }, + { "lat": 40.7177274, "lon": -74.0023187 }, + { "lat": 40.7182725, "lon": -74.0018618 }, + { "lat": 40.7183162, "lon": -74.0018252 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "name": "Cortlandt Alley", + "name:ko": "코트랜드 앨리", + "oneway": "yes", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46332299, + "bounds": { + "minlat": 40.7191379, + "minlon": -74.0101307, + "maxlat": 40.7194342, + "maxlon": -74.0071167 + }, + "nodes": [ + 11466637309, + 8304498539, + 42436335, + 8304498536, + 11308790026 + ], + "geometry": [ + { "lat": 40.7194342, "lon": -74.0101307 }, + { "lat": 40.7193077, "lon": -74.0088198 }, + { "lat": 40.7192960, "lon": -74.0086990 }, + { "lat": 40.7192851, "lon": -74.0085909 }, + { "lat": 40.7191379, "lon": -74.0071167 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "name:ko": "프랭클린 스트리트", + "name:ru": "Франклин-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 46332300, + "bounds": { + "minlat": 40.7186420, + "minlon": -74.0102721, + "maxlat": 40.7187970, + "maxlon": -74.0088190 + }, + "nodes": [ + 11464658113, + 8304498468, + 42437463, + 11608926499, + 10696246426, + 42436330 + ], + "geometry": [ + { "lat": 40.7187970, "lon": -74.0102721 }, + { "lat": 40.7187958, "lon": -74.0102606 }, + { "lat": 40.7186964, "lon": -74.0093292 }, + { "lat": 40.7186648, "lon": -74.0090326 }, + { "lat": 40.7186540, "lon": -74.0089312 }, + { "lat": 40.7186420, "lon": -74.0088190 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Harrison Street", + "name:ko": "해리슨 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 46332301, + "bounds": { + "minlat": 40.7157492, + "minlon": -74.0070866, + "maxlat": 40.7182780, + "maxlon": -74.0016779 + }, + "nodes": [ + 42427305, + 12198027574, + 7132560121, + 12198027576, + 12198027554, + 7132560120, + 12198027557, + 42445474, + 7132560107, + 42437933, + 8307641681, + 5706569905, + 8307641684, + 8312361648, + 42448171, + 8312361651, + 8312361642, + 42448162 + ], + "geometry": [ + { "lat": 40.7157492, "lon": -74.0016779 }, + { "lat": 40.7157862, "lon": -74.0017351 }, + { "lat": 40.7158101, "lon": -74.0017725 }, + { "lat": 40.7158233, "lon": -74.0017932 }, + { "lat": 40.7161219, "lon": -74.0023970 }, + { "lat": 40.7161418, "lon": -74.0024523 }, + { "lat": 40.7161567, "lon": -74.0024944 }, + { "lat": 40.7161862, "lon": -74.0025774 }, + { "lat": 40.7162280, "lon": -74.0026921 }, + { "lat": 40.7165204, "lon": -74.0033020 }, + { "lat": 40.7168275, "lon": -74.0039440 }, + { "lat": 40.7168710, "lon": -74.0040260 }, + { "lat": 40.7169207, "lon": -74.0041340 }, + { "lat": 40.7176237, "lon": -74.0056621 }, + { "lat": 40.7176740, "lon": -74.0057722 }, + { "lat": 40.7177315, "lon": -74.0058954 }, + { "lat": 40.7182221, "lon": -74.0069621 }, + { "lat": 40.7182780, "lon": -74.0070866 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Leonard Street", + "name:etymology:wikidata": "Q6525508", + "name:ko": "레오나드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6525759", + "wikipedia": "en:Leonard Street" + } +}, +{ + "type": "way", + "id": 46332307, + "bounds": { + "minlat": 40.7139579, + "minlon": -74.0034162, + "maxlat": 40.7141387, + "maxlon": -74.0030498 + }, + "nodes": [ + 42430535, + 12198027595, + 1253070385, + 4561384853 + ], + "geometry": [ + { "lat": 40.7141387, "lon": -74.0034162 }, + { "lat": 40.7140676, "lon": -74.0032664 }, + { "lat": 40.7140548, "lon": -74.0032393 }, + { "lat": 40.7139579, "lon": -74.0030498 } + ], + "tags": { + "cycleway:both": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Duane Street", + "name:etymology:wikidata": "Q339274", + "name:ko": "두에인 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 46332308, + "bounds": { + "minlat": 40.7143201, + "minlon": -74.0040130, + "maxlat": 40.7145774, + "maxlon": -74.0036862 + }, + "nodes": [ + 42430540, + 8372950521, + 6457001915 + ], + "geometry": [ + { "lat": 40.7145774, "lon": -74.0040130 }, + { "lat": 40.7145283, "lon": -74.0039532 }, + { "lat": 40.7143201, "lon": -74.0036862 } + ], + "tags": { + "access": "no", + "alt_name": "Paul O'Dwyer Plaza", + "cycleway:both": "no", + "foot": "yes", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Duane Street", + "name:etymology:wikidata": "Q339274", + "name:ko": "두에인 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46332309, + "bounds": { + "minlat": 40.7142176, + "minlon": -74.0043173, + "maxlat": 40.7145774, + "maxlon": -74.0040130 + }, + "nodes": [ + 4551119133, + 7335430594, + 42430540 + ], + "geometry": [ + { "lat": 40.7142176, "lon": -74.0043173 }, + { "lat": 40.7145081, "lon": -74.0040727 }, + { "lat": 40.7145774, "lon": -74.0040130 } + ], + "tags": { + "access": "no", + "alt_name": "African Burial Ground Way", + "foot": "yes", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Elk Street", + "name:etymology:wikidata": "Q2895789", + "name:ko": "엘크 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46334563, + "bounds": { + "minlat": 40.8511790, + "minlon": -73.9402230, + "maxlat": 40.8513438, + "maxlon": -73.9392359 + }, + "nodes": [ + 42444097, + 3536432326, + 12068617247, + 1762381493, + 12068617246, + 12068617245, + 12068617244, + 12068617243, + 1762381492, + 12068617241, + 12068617242, + 9563821099, + 42428124 + ], + "geometry": [ + { "lat": 40.8511790, "lon": -73.9392359 }, + { "lat": 40.8512554, "lon": -73.9395026 }, + { "lat": 40.8512740, "lon": -73.9395749 }, + { "lat": 40.8512921, "lon": -73.9396546 }, + { "lat": 40.8513063, "lon": -73.9397300 }, + { "lat": 40.8513180, "lon": -73.9398027 }, + { "lat": 40.8513262, "lon": -73.9398676 }, + { "lat": 40.8513329, "lon": -73.9399290 }, + { "lat": 40.8513383, "lon": -73.9399942 }, + { "lat": 40.8513413, "lon": -73.9400484 }, + { "lat": 40.8513430, "lon": -73.9400946 }, + { "lat": 40.8513438, "lon": -73.9401433 }, + { "lat": 40.8513413, "lon": -73.9402230 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 181st Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 46334565, + "bounds": { + "minlat": 40.8695510, + "minlon": -73.9158491, + "maxlat": 40.8698643, + "maxlon": -73.9151830 + }, + "nodes": [ + 42454553, + 9563662422, + 9561208957, + 42429242 + ], + "geometry": [ + { "lat": 40.8695510, "lon": -73.9151830 }, + { "lat": 40.8696169, "lon": -73.9153400 }, + { "lat": 40.8697959, "lon": -73.9157457 }, + { "lat": 40.8698643, "lon": -73.9158491 } + ], + "tags": { + "alt_name": "Police Offer Donald J. McIntyre Way", + "hgv": "local", + "highway": "tertiary", + "name": "West 215th Street", + "name_1": "West 215 Street", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "215th", + "tiger:name_base_1": "215", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 46334566, + "bounds": { + "minlat": 40.8064044, + "minlon": -73.9459054, + "maxlat": 40.8070675, + "maxlon": -73.9443406 + }, + "nodes": [ + 42442128, + 10170875108, + 9177554438, + 7680219837, + 7680219840, + 10170875053, + 42453241 + ], + "geometry": [ + { "lat": 40.8064044, "lon": -73.9443406 }, + { "lat": 40.8064538, "lon": -73.9444453 }, + { "lat": 40.8064577, "lon": -73.9444537 }, + { "lat": 40.8066031, "lon": -73.9447999 }, + { "lat": 40.8068111, "lon": -73.9452950 }, + { "lat": 40.8070318, "lon": -73.9458239 }, + { "lat": 40.8070675, "lon": -73.9459054 } + ], + "tags": { + "highway": "residential", + "name": "West 124th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46334578, + "bounds": { + "minlat": 40.7836354, + "minlon": -73.9442196, + "maxlat": 40.7839383, + "maxlon": -73.9435282 + }, + "nodes": [ + 42433385, + 7083039988, + 6181478357, + 42449010 + ], + "geometry": [ + { "lat": 40.7836354, "lon": -73.9435282 }, + { "lat": 40.7836665, "lon": -73.9435979 }, + { "lat": 40.7838828, "lon": -73.9440901 }, + { "lat": 40.7839383, "lon": -73.9442196 } + ], + "tags": { + "destination:symbol": "hospital", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 97th Street", + "name:ru": "Восточная 97-я стрит", + "name_1": "East 97 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46334579, + "bounds": { + "minlat": 40.7953849, + "minlon": -73.9727170, + "maxlat": 40.7959381, + "maxlon": -73.9714074 + }, + "nodes": [ + 42428716, + 8687882748, + 7061583861, + 8687882765, + 42431102 + ], + "geometry": [ + { "lat": 40.7953849, "lon": -73.9714074 }, + { "lat": 40.7954221, "lon": -73.9714961 }, + { "lat": 40.7957505, "lon": -73.9722731 }, + { "lat": 40.7958869, "lon": -73.9725958 }, + { "lat": 40.7959381, "lon": -73.9727170 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 97th Street", + "name:ru": "Западная 97-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46334580, + "bounds": { + "minlat": 40.7765623, + "minlon": -73.9597737, + "maxlat": 40.7795447, + "maxlon": -73.9527041 + }, + "nodes": [ + 42435499, + 2238282226, + 6816303734, + 10125180299, + 596776120, + 42435504, + 10125180300, + 10125087284, + 42435509, + 10125087283, + 10156669112, + 42435514, + 10156669109, + 8250715791, + 42435516 + ], + "geometry": [ + { "lat": 40.7795447, "lon": -73.9597737 }, + { "lat": 40.7794987, "lon": -73.9596656 }, + { "lat": 40.7792135, "lon": -73.9589850 }, + { "lat": 40.7789554, "lon": -73.9583722 }, + { "lat": 40.7789066, "lon": -73.9582602 }, + { "lat": 40.7788307, "lon": -73.9580801 }, + { "lat": 40.7787825, "lon": -73.9579671 }, + { "lat": 40.7782294, "lon": -73.9566489 }, + { "lat": 40.7781874, "lon": -73.9565490 }, + { "lat": 40.7781433, "lon": -73.9564450 }, + { "lat": 40.7775669, "lon": -73.9550867 }, + { "lat": 40.7775056, "lon": -73.9549422 }, + { "lat": 40.7774493, "lon": -73.9548087 }, + { "lat": 40.7766188, "lon": -73.9528384 }, + { "lat": 40.7765623, "lon": -73.9527041 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 84th Street", + "name:ru": "Восточная 84-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46334582, + "bounds": { + "minlat": 40.7809928, + "minlon": -73.9847754, + "maxlat": 40.7824893, + "maxlon": -73.9812112 + }, + "nodes": [ + 1061531634, + 11655721360, + 11655721361, + 9492556604, + 42431008, + 9492556591, + 11655743703, + 10039919283, + 42441670 + ], + "geometry": [ + { "lat": 40.7809928, "lon": -73.9812112 }, + { "lat": 40.7810772, "lon": -73.9814187 }, + { "lat": 40.7811193, "lon": -73.9815189 }, + { "lat": 40.7817109, "lon": -73.9829288 }, + { "lat": 40.7817655, "lon": -73.9830559 }, + { "lat": 40.7818199, "lon": -73.9831794 }, + { "lat": 40.7824205, "lon": -73.9846115 }, + { "lat": 40.7824450, "lon": -73.9846698 }, + { "lat": 40.7824893, "lon": -73.9847754 } + ], + "tags": { + "access": "yes", + "alt_name": "West 75 Street", + "cycleway": "shared_lane", + "highway": "residential", + "motor_vehicle:conditional": "no @ (08:00-20:00)", + "name": "West 75th Street", + "name:ru": "Западная 75-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46334583, + "bounds": { + "minlat": 40.7805610, + "minlon": -73.9812112, + "maxlat": 40.7809928, + "maxlon": -73.9802100 + }, + "nodes": [ + 42442451, + 6207264909, + 9897616161, + 11655721362, + 1061531634 + ], + "geometry": [ + { "lat": 40.7805610, "lon": -73.9802100 }, + { "lat": 40.7805992, "lon": -73.9803030 }, + { "lat": 40.7806161, "lon": -73.9803442 }, + { "lat": 40.7809480, "lon": -73.9811098 }, + { "lat": 40.7809928, "lon": -73.9812112 } + ], + "tags": { + "alt_name": "West 75 Street", + "hgv": "local", + "highway": "secondary", + "name": "West 75th Street", + "name:ru": "Западная 75-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46334584, + "bounds": { + "minlat": 40.7832589, + "minlon": -73.9751019, + "maxlat": 40.7835117, + "maxlon": -73.9745499 + }, + "nodes": [ + 4205805391, + 4689234439, + 42443280 + ], + "geometry": [ + { "lat": 40.7835117, "lon": -73.9751019 }, + { "lat": 40.7833220, "lon": -73.9746503 }, + { "lat": 40.7832589, "lon": -73.9745499 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 81st Street", + "name:ru": "Западная 81-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 46334585, + "bounds": { + "minlat": 40.7858381, + "minlon": -73.9812269, + "maxlat": 40.7868921, + "maxlon": -73.9786335 + }, + "nodes": [ + 42433569, + 9168918173, + 9168918172, + 9168918171, + 8727756078, + 42431027, + 8727756074, + 8709397321, + 42428661 + ], + "geometry": [ + { "lat": 40.7868921, "lon": -73.9812269 }, + { "lat": 40.7868848, "lon": -73.9811642 }, + { "lat": 40.7868754, "lon": -73.9811201 }, + { "lat": 40.7868619, "lon": -73.9810774 }, + { "lat": 40.7863559, "lon": -73.9798679 }, + { "lat": 40.7863040, "lon": -73.9797464 }, + { "lat": 40.7862488, "lon": -73.9796150 }, + { "lat": 40.7858820, "lon": -73.9787361 }, + { "lat": 40.7858381, "lon": -73.9786335 } + ], + "tags": { + "alt_name": "West 82 Street", + "highway": "residential", + "name": "West 82nd Street", + "name:ru": "Западная 82-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46334586, + "bounds": { + "minlat": 40.7724211, + "minlon": -73.9809442, + "maxlat": 40.7733398, + "maxlon": -73.9787387 + }, + "nodes": [ + 7802856352, + 3809536792, + 12317594570, + 12317594556, + 9915469767, + 9602428100 + ], + "geometry": [ + { "lat": 40.7724211, "lon": -73.9787387 }, + { "lat": 40.7724681, "lon": -73.9788650 }, + { "lat": 40.7726959, "lon": -73.9794003 }, + { "lat": 40.7727458, "lon": -73.9795147 }, + { "lat": 40.7728179, "lon": -73.9796926 }, + { "lat": 40.7733398, "lon": -73.9809442 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 66th Street", + "name:ru": "Западная 66-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "33'4\"", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46334588, + "bounds": { + "minlat": 40.7742359, + "minlon": -73.9875786, + "maxlat": 40.7753178, + "maxlon": -73.9850078 + }, + "nodes": [ + 7595763588, + 9448032938, + 5481869414, + 7050687051 + ], + "geometry": [ + { "lat": 40.7753178, "lon": -73.9875786 }, + { "lat": 40.7751765, "lon": -73.9872390 }, + { "lat": 40.7749764, "lon": -73.9867594 }, + { "lat": 40.7742359, "lon": -73.9850078 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 65th Street", + "name:ru": "Западная 65-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46334591, + "bounds": { + "minlat": 40.7624248, + "minlon": -73.9616072, + "maxlat": 40.7643672, + "maxlon": -73.9569931 + }, + "nodes": [ + 42442977, + 8851344400, + 7837088636, + 42455675, + 7837088632, + 4918486809, + 42427975 + ], + "geometry": [ + { "lat": 40.7643672, "lon": -73.9616072 }, + { "lat": 40.7643141, "lon": -73.9614811 }, + { "lat": 40.7634264, "lon": -73.9593724 }, + { "lat": 40.7633694, "lon": -73.9592368 }, + { "lat": 40.7633123, "lon": -73.9591012 }, + { "lat": 40.7624761, "lon": -73.9571150 }, + { "lat": 40.7624248, "lon": -73.9569931 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 65th Street", + "name:ru": "Восточная 65-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46334593, + "bounds": { + "minlat": 40.7578400, + "minlon": -73.9943910, + "maxlat": 40.7583714, + "maxlon": -73.9930728 + }, + "nodes": [ + 42445001, + 5851709102, + 5851709097, + 5851709103, + 11149329277, + 42434434 + ], + "geometry": [ + { "lat": 40.7578400, "lon": -73.9930728 }, + { "lat": 40.7579174, "lon": -73.9931927 }, + { "lat": 40.7583309, "lon": -73.9941696 }, + { "lat": 40.7583493, "lon": -73.9942426 }, + { "lat": 40.7583608, "lon": -73.9942996 }, + { "lat": 40.7583714, "lon": -73.9943910 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 46334594, + "bounds": { + "minlat": 40.7628736, + "minlon": -73.9692590, + "maxlat": 40.7635085, + "maxlon": -73.9677191 + }, + "nodes": [ + 42447020, + 10125147539, + 12679744004, + 12679690995, + 12834723219, + 10125227989, + 6177439750 + ], + "geometry": [ + { "lat": 40.7628736, "lon": -73.9677191 }, + { "lat": 40.7629145, "lon": -73.9678182 }, + { "lat": 40.7631128, "lon": -73.9683004 }, + { "lat": 40.7631988, "lon": -73.9685097 }, + { "lat": 40.7634373, "lon": -73.9690897 }, + { "lat": 40.7634584, "lon": -73.9691411 }, + { "lat": 40.7635085, "lon": -73.9692590 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46334595, + "bounds": { + "minlat": 40.7457827, + "minlon": -73.9749393, + "maxlat": 40.7460796, + "maxlon": -73.9743190 + }, + "nodes": [ + 42423020, + 4259278549, + 6594863447, + 9140723305, + 42454495 + ], + "geometry": [ + { "lat": 40.7460796, "lon": -73.9749393 }, + { "lat": 40.7460063, "lon": -73.9748150 }, + { "lat": 40.7459176, "lon": -73.9746535 }, + { "lat": 40.7458151, "lon": -73.9744031 }, + { "lat": 40.7457827, "lon": -73.9743190 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 36th Street", + "name:ru": "Восточная 36-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through" + } +}, +{ + "type": "way", + "id": 46334597, + "bounds": { + "minlat": 40.7459215, + "minlon": -73.9884727, + "maxlat": 40.7467961, + "maxlon": -73.9863915 + }, + "nodes": [ + 42428227, + 8265964370, + 6231480916, + 10167162613, + 42437686 + ], + "geometry": [ + { "lat": 40.7467961, "lon": -73.9884727 }, + { "lat": 40.7467452, "lon": -73.9883516 }, + { "lat": 40.7463652, "lon": -73.9874473 }, + { "lat": 40.7459727, "lon": -73.9865144 }, + { "lat": 40.7459215, "lon": -73.9863915 } + ], + "tags": { + "alt_name": "West 30 Street", + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46334598, + "bounds": { + "minlat": 40.7438323, + "minlon": -73.9811202, + "maxlat": 40.7445045, + "maxlon": -73.9795193 + }, + "nodes": [ + 42449926, + 4234425025, + 13714121222, + 3789563970, + 6371048752, + 12183285324, + 8119462478, + 42446933 + ], + "geometry": [ + { "lat": 40.7438323, "lon": -73.9795193 }, + { "lat": 40.7438840, "lon": -73.9796424 }, + { "lat": 40.7440866, "lon": -73.9801151 }, + { "lat": 40.7442046, "lon": -73.9803931 }, + { "lat": 40.7442888, "lon": -73.9806064 }, + { "lat": 40.7444334, "lon": -73.9809507 }, + { "lat": 40.7444609, "lon": -73.9810162 }, + { "lat": 40.7445045, "lon": -73.9811202 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 31st Street", + "name:ru": "Восточная 31-я стрит", + "name_1": "East 31 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46334599, + "bounds": { + "minlat": 40.7362172, + "minlon": -73.9868123, + "maxlat": 40.7395079, + "maxlon": -73.9790127 + }, + "nodes": [ + 42440323, + 10166167547, + 12181379203, + 10172843067, + 42440325, + 8835579643, + 12183286737, + 4132605268, + 42440326, + 4132605266, + 12183286738, + 4132971872, + 42440330, + 4132971841, + 4296710225, + 387184869 + ], + "geometry": [ + { "lat": 40.7395079, "lon": -73.9868123 }, + { "lat": 40.7394679, "lon": -73.9867155 }, + { "lat": 40.7389057, "lon": -73.9853827 }, + { "lat": 40.7388816, "lon": -73.9853256 }, + { "lat": 40.7388483, "lon": -73.9852454 }, + { "lat": 40.7388050, "lon": -73.9851416 }, + { "lat": 40.7382555, "lon": -73.9838307 }, + { "lat": 40.7382309, "lon": -73.9837718 }, + { "lat": 40.7381714, "lon": -73.9836359 }, + { "lat": 40.7381109, "lon": -73.9834911 }, + { "lat": 40.7373076, "lon": -73.9815831 }, + { "lat": 40.7372711, "lon": -73.9815080 }, + { "lat": 40.7372187, "lon": -73.9813983 }, + { "lat": 40.7371644, "lon": -73.9812745 }, + { "lat": 40.7362804, "lon": -73.9791579 }, + { "lat": 40.7362172, "lon": -73.9790127 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 22nd Street", + "name:ru": "Восточная 22-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9" + } +}, +{ + "type": "way", + "id": 46334600, + "bounds": { + "minlat": 40.7437973, + "minlon": -73.9890279, + "maxlat": 40.7438166, + "maxlon": -73.9889816 + }, + "nodes": [ + 42428216, + 7369969947 + ], + "geometry": [ + { "lat": 40.7438166, "lon": -73.9890279 }, + { "lat": 40.7437973, "lon": -73.9889816 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46334602, + "bounds": { + "minlat": 40.7416415, + "minlon": -74.0077050, + "maxlat": 40.7428340, + "maxlon": -74.0048213 + }, + "nodes": [ + 387180916, + 4557517550, + 8262308751, + 8214302535, + 42445766 + ], + "geometry": [ + { "lat": 40.7416415, "lon": -74.0048213 }, + { "lat": 40.7416809, "lon": -74.0049194 }, + { "lat": 40.7417111, "lon": -74.0049922 }, + { "lat": 40.7427833, "lon": -74.0075840 }, + { "lat": 40.7428340, "lon": -74.0077050 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 15th Street", + "name:ru": "Западная 15-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46334605, + "bounds": { + "minlat": 40.7101204, + "minlon": -73.9897857, + "maxlat": 40.7106401, + "maxlon": -73.9852574 + }, + "nodes": [ + 42443928, + 8310246656, + 42443937, + 4581870335, + 11037590240, + 475485738, + 5458544542, + 11037590233, + 5458544539, + 11037590232, + 8310246582, + 11037590268, + 42440449, + 8310246578, + 3683163348, + 588455697 + ], + "geometry": [ + { "lat": 40.7101204, "lon": -73.9897857 }, + { "lat": 40.7101288, "lon": -73.9897288 }, + { "lat": 40.7101689, "lon": -73.9893917 }, + { "lat": 40.7102983, "lon": -73.9883192 }, + { "lat": 40.7103031, "lon": -73.9882774 }, + { "lat": 40.7103224, "lon": -73.9881112 }, + { "lat": 40.7103323, "lon": -73.9880247 }, + { "lat": 40.7103855, "lon": -73.9875742 }, + { "lat": 40.7104021, "lon": -73.9874225 }, + { "lat": 40.7104167, "lon": -73.9873005 }, + { "lat": 40.7104761, "lon": -73.9867661 }, + { "lat": 40.7104820, "lon": -73.9867084 }, + { "lat": 40.7104945, "lon": -73.9865861 }, + { "lat": 40.7105058, "lon": -73.9864821 }, + { "lat": 40.7105766, "lon": -73.9858517 }, + { "lat": 40.7106401, "lon": -73.9852574 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46334608, + "bounds": { + "minlat": 40.8673490, + "minlon": -73.9212171, + "maxlat": 40.8677070, + "maxlon": -73.9209918 + }, + "nodes": [ + 12234717916, + 9561420823, + 42429222 + ], + "geometry": [ + { "lat": 40.8673490, "lon": -73.9209918 }, + { "lat": 40.8676035, "lon": -73.9211514 }, + { "lat": 40.8677070, "lon": -73.9212171 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "name": "West 207th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|none|none" + } +}, +{ + "type": "way", + "id": 46334658, + "bounds": { + "minlat": 40.8486832, + "minlon": -73.9391834, + "maxlat": 40.8487467, + "maxlon": -73.9391578 + }, + "nodes": [ + 595473291, + 60925950 + ], + "geometry": [ + { "lat": 40.8487467, "lon": -73.9391578 }, + { "lat": 40.8486832, "lon": -73.9391834 } + ], + "tags": { + "bicycle": "designated", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 46334660, + "bounds": { + "minlat": 40.8478420, + "minlon": -73.9395229, + "maxlat": 40.8486832, + "maxlon": -73.9391834 + }, + "nodes": [ + 60925950, + 12069054651, + 9566938944, + 42427168 + ], + "geometry": [ + { "lat": 40.8486832, "lon": -73.9391834 }, + { "lat": 40.8486049, "lon": -73.9392150 }, + { "lat": 40.8479076, "lon": -73.9394964 }, + { "lat": 40.8478420, "lon": -73.9395229 } + ], + "tags": { + "bicycle": "designated", + "cycleway": "shared_lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "rcn_ref": "9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 46334663, + "bounds": { + "minlat": 40.7137475, + "minlon": -73.9941371, + "maxlat": 40.7142715, + "maxlon": -73.9939452 + }, + "nodes": [ + 42451650, + 6369613304, + 11638918071, + 8279851202, + 11638918157, + 42433542 + ], + "geometry": [ + { "lat": 40.7142715, "lon": -73.9941371 }, + { "lat": 40.7142198, "lon": -73.9941160 }, + { "lat": 40.7139018, "lon": -73.9939899 }, + { "lat": 40.7138542, "lon": -73.9939731 }, + { "lat": 40.7138057, "lon": -73.9939583 }, + { "lat": 40.7137475, "lon": -73.9939452 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Forsyth Street", + "name:etymology:wikidata": "Q4888596", + "name:ko": "포사이스 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5470659", + "wikipedia": "en:Forsyth Street" + } +}, +{ + "type": "way", + "id": 46334664, + "bounds": { + "minlat": 40.7820388, + "minlon": -73.9717224, + "maxlat": 40.7824229, + "maxlon": -73.9714456 + }, + "nodes": [ + 42427915, + 9170771795, + 11807757973 + ], + "geometry": [ + { "lat": 40.7820388, "lon": -73.9717224 }, + { "lat": 40.7821384, "lon": -73.9716479 }, + { "lat": 40.7824229, "lon": -73.9714456 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:left": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46334665, + "bounds": { + "minlat": 40.7881763, + "minlon": -73.9672511, + "maxlat": 40.7891218, + "maxlon": -73.9665628 + }, + "nodes": [ + 11807757976, + 7123525313, + 42435316, + 7123525330, + 12308808604, + 7123525287, + 42435317 + ], + "geometry": [ + { "lat": 40.7881763, "lon": -73.9672511 }, + { "lat": 40.7884375, "lon": -73.9670646 }, + { "lat": 40.7885002, "lon": -73.9670210 }, + { "lat": 40.7885487, "lon": -73.9669851 }, + { "lat": 40.7886992, "lon": -73.9668738 }, + { "lat": 40.7890673, "lon": -73.9666014 }, + { "lat": 40.7891218, "lon": -73.9665628 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46340034, + "bounds": { + "minlat": 40.7791490, + "minlon": -73.9470292, + "maxlat": 40.7800714, + "maxlon": -73.9447790 + }, + "nodes": [ + 42428049, + 5904383031, + 10121819485, + 6214889058, + 42456076 + ], + "geometry": [ + { "lat": 40.7791490, "lon": -73.9447790 }, + { "lat": 40.7791736, "lon": -73.9449112 }, + { "lat": 40.7800050, "lon": -73.9468707 }, + { "lat": 40.7800189, "lon": -73.9469033 }, + { "lat": 40.7800714, "lon": -73.9470292 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 91st Street", + "name:ru": "Восточная 91-я стрит", + "name_1": "East 91 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46340036, + "bounds": { + "minlat": 40.7810699, + "minlon": -73.9516502, + "maxlat": 40.7820144, + "maxlon": -73.9494125 + }, + "nodes": [ + 42443046, + 6214889043, + 6214889057, + 42450035 + ], + "geometry": [ + { "lat": 40.7810699, "lon": -73.9494125 }, + { "lat": 40.7811220, "lon": -73.9495380 }, + { "lat": 40.7819570, "lon": -73.9515144 }, + { "lat": 40.7820144, "lon": -73.9516502 } + ], + "tags": { + "bicycle": "designated", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:left:segregated": "no", + "cycleway:right": "no", + "highway": "pedestrian", + "name": "East 91st Street", + "oneway": "yes", + "sidewalk:left": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 46348767, + "bounds": { + "minlat": 40.7210819, + "minlon": -73.9998623, + "maxlat": 40.7217942, + "maxlon": -73.9982238 + }, + "nodes": [ + 42432165, + 8231927650, + 12187436363, + 8231906911, + 42432161, + 8231906914, + 12187433922, + 12187433924, + 7741546980, + 42428438 + ], + "geometry": [ + { "lat": 40.7210819, "lon": -73.9982238 }, + { "lat": 40.7211144, "lon": -73.9982994 }, + { "lat": 40.7213818, "lon": -73.9989227 }, + { "lat": 40.7213999, "lon": -73.9989680 }, + { "lat": 40.7214242, "lon": -73.9990287 }, + { "lat": 40.7214510, "lon": -73.9990956 }, + { "lat": 40.7214620, "lon": -73.9991230 }, + { "lat": 40.7217206, "lon": -73.9997210 }, + { "lat": 40.7217413, "lon": -73.9997607 }, + { "lat": 40.7217942, "lon": -73.9998623 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "13.5", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 46348768, + "bounds": { + "minlat": 40.7167392, + "minlon": -73.9936732, + "maxlat": 40.7179269, + "maxlon": -73.9930731 + }, + "nodes": [ + 42451660, + 12196062163, + 6369613054, + 8309738051, + 6330061737, + 42445627 + ], + "geometry": [ + { "lat": 40.7179269, "lon": -73.9930731 }, + { "lat": 40.7178976, "lon": -73.9930883 }, + { "lat": 40.7178441, "lon": -73.9931162 }, + { "lat": 40.7168359, "lon": -73.9936245 }, + { "lat": 40.7167891, "lon": -73.9936476 }, + { "lat": 40.7167392, "lon": -73.9936732 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Forsyth Street", + "name:etymology:wikidata": "Q4888596", + "name:ko": "포사이스 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5470659", + "wikipedia": "en:Forsyth Street" + } +}, +{ + "type": "way", + "id": 46348787, + "bounds": { + "minlat": 40.7122115, + "minlon": -73.9808591, + "maxlat": 40.7135531, + "maxlon": -73.9807115 + }, + "nodes": [ + 7476469426, + 6411125188, + 7499128090, + 5721705549, + 11040029984, + 5804425623, + 42427744 + ], + "geometry": [ + { "lat": 40.7122115, "lon": -73.9807115 }, + { "lat": 40.7122765, "lon": -73.9807190 }, + { "lat": 40.7128106, "lon": -73.9807813 }, + { "lat": 40.7129145, "lon": -73.9807934 }, + { "lat": 40.7133556, "lon": -73.9808449 }, + { "lat": 40.7134774, "lon": -73.9808591 }, + { "lat": 40.7135531, "lon": -73.9808346 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Jackson Street", + "name:etymology:wikidata": "Q11817", + "name:ko": "잭슨 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46348789, + "bounds": { + "minlat": 40.7131988, + "minlon": -73.9839864, + "maxlat": 40.7139044, + "maxlon": -73.9838874 + }, + "nodes": [ + 42432000, + 8310246490, + 5863649222, + 7499128114, + 8310246511, + 42431999 + ], + "geometry": [ + { "lat": 40.7131988, "lon": -73.9838874 }, + { "lat": 40.7132839, "lon": -73.9839113 }, + { "lat": 40.7133156, "lon": -73.9839151 }, + { "lat": 40.7138128, "lon": -73.9839753 }, + { "lat": 40.7138263, "lon": -73.9839769 }, + { "lat": 40.7139044, "lon": -73.9839864 } + ], + "tags": { + "bicycle": "permissive", + "highway": "pedestrian", + "name": "Gouverneur Street", + "name:etymology:wikidata": "Q56742810", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46348790, + "bounds": { + "minlat": 40.7110613, + "minlon": -73.9806230, + "maxlat": 40.7115248, + "maxlon": -73.9805639 + }, + "nodes": [ + 42427750, + 11038072033, + 11038072036, + 42423303 + ], + "geometry": [ + { "lat": 40.7115248, "lon": -73.9806230 }, + { "lat": 40.7113788, "lon": -73.9805982 }, + { "lat": 40.7110806, "lon": -73.9805639 }, + { "lat": 40.7110613, "lon": -73.9805703 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Jackson Street", + "name:etymology:wikidata": "Q11817", + "name:ko": "잭슨 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46349386, + "bounds": { + "minlat": 40.7164540, + "minlon": -73.9805736, + "maxlat": 40.7189398, + "maxlon": -73.9792730 + }, + "nodes": [ + 42429812, + 4300994838, + 8310245795, + 42437118, + 8310245793, + 5323794437, + 7013873967, + 13191017844, + 12959514828, + 4300994818, + 13191017843, + 42432041, + 13189180814 + ], + "geometry": [ + { "lat": 40.7164540, "lon": -73.9805736 }, + { "lat": 40.7165681, "lon": -73.9805137 }, + { "lat": 40.7174928, "lon": -73.9800275 }, + { "lat": 40.7175542, "lon": -73.9799952 }, + { "lat": 40.7176356, "lon": -73.9799527 }, + { "lat": 40.7178116, "lon": -73.9798609 }, + { "lat": 40.7183918, "lon": -73.9795564 }, + { "lat": 40.7185088, "lon": -73.9794950 }, + { "lat": 40.7185758, "lon": -73.9794598 }, + { "lat": 40.7186121, "lon": -73.9794407 }, + { "lat": 40.7186300, "lon": -73.9794313 }, + { "lat": 40.7186651, "lon": -73.9794129 }, + { "lat": 40.7189398, "lon": -73.9792730 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbia Street", + "name:ko": "콜럼비아 스트리트", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46349390, + "bounds": { + "minlat": 40.7171547, + "minlon": -73.9870412, + "maxlat": 40.7179207, + "maxlon": -73.9866412 + }, + "nodes": [ + 486867548, + 7476387566, + 5296792752, + 7476387568, + 7476387569, + 10050207094, + 42432095 + ], + "geometry": [ + { "lat": 40.7179207, "lon": -73.9866412 }, + { "lat": 40.7178690, "lon": -73.9866696 }, + { "lat": 40.7178436, "lon": -73.9866833 }, + { "lat": 40.7177608, "lon": -73.9867263 }, + { "lat": 40.7177462, "lon": -73.9867339 }, + { "lat": 40.7172189, "lon": -73.9870079 }, + { "lat": 40.7171547, "lon": -73.9870412 } + ], + "tags": { + "fixme": "closed for construction, resurvey for opening; check surface", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Suffolk Street", + "name:etymology:wikidata": "Q23111", + "name:ko": "서퍽 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46349393, + "bounds": { + "minlat": 40.7154169, + "minlon": -73.9792153, + "maxlat": 40.7159570, + "maxlon": -73.9789246 + }, + "nodes": [ + 42435550, + 4300994803, + 42429814 + ], + "geometry": [ + { "lat": 40.7154169, "lon": -73.9792153 }, + { "lat": 40.7158696, "lon": -73.9789716 }, + { "lat": 40.7159570, "lon": -73.9789246 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "Lewis Street", + "name:ko": "루이스 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46350690, + "bounds": { + "minlat": 40.7265342, + "minlon": -74.0034641, + "maxlat": 40.7268704, + "maxlon": -74.0031066 + }, + "nodes": [ + 42439335, + 7465100696, + 2477560535, + 6491645894, + 10208805585, + 2477560540 + ], + "geometry": [ + { "lat": 40.7268704, "lon": -74.0031066 }, + { "lat": 40.7268285, "lon": -74.0031487 }, + { "lat": 40.7268225, "lon": -74.0031547 }, + { "lat": 40.7265621, "lon": -74.0034041 }, + { "lat": 40.7265423, "lon": -74.0034342 }, + { "lat": 40.7265342, "lon": -74.0034641 } + ], + "tags": { + "highway": "pedestrian", + "name_1": "Washington Square West", + "old_name": "MacDougal Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46350693, + "bounds": { + "minlat": 40.7262500, + "minlon": -74.0056580, + "maxlat": 40.7264350, + "maxlon": -74.0037300 + }, + "nodes": [ + 42430160, + 8307641856, + 3252582132, + 42445574 + ], + "geometry": [ + { "lat": 40.7262500, "lon": -74.0037300 }, + { "lat": 40.7262656, "lon": -74.0038926 }, + { "lat": 40.7264227, "lon": -74.0055302 }, + { "lat": 40.7264350, "lon": -74.0056580 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Vandam Street", + "name:ko": "밴담 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29135239", + "wikipedia": "en:Vandam Street" + } +}, +{ + "type": "way", + "id": 46350694, + "bounds": { + "minlat": 40.7280490, + "minlon": -74.0087206, + "maxlat": 40.7281978, + "maxlon": -74.0071926 + }, + "nodes": [ + 42436100, + 8307641917, + 8307641915, + 42436369 + ], + "geometry": [ + { "lat": 40.7281978, "lon": -74.0087206 }, + { "lat": 40.7281879, "lon": -74.0086182 }, + { "lat": 40.7280634, "lon": -74.0073402 }, + { "lat": 40.7280490, "lon": -74.0071926 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "King Street", + "name:etymology:wikidata": "Q456794", + "name:ko": "킹 스트리트", + "name:ru": "Кинг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46350695, + "bounds": { + "minlat": 40.7190179, + "minlon": -73.9819415, + "maxlat": 40.7194618, + "maxlon": -73.9804466 + }, + "nodes": [ + 42427352, + 8310245648, + 592484214, + 7552138519 + ], + "geometry": [ + { "lat": 40.7194618, "lon": -73.9819415 }, + { "lat": 40.7194484, "lon": -73.9818990 }, + { "lat": 40.7192130, "lon": -73.9811043 }, + { "lat": 40.7190179, "lon": -73.9804466 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Stanton Street", + "name:ko": "스탠턴 스트리트", + "name:ru": "Стэнтон-стрит", + "surface": "asphalt", + "wikidata": "Q7600270", + "wikipedia": "en:Stanton Street" + } +}, +{ + "type": "way", + "id": 46350707, + "bounds": { + "minlat": 40.7260025, + "minlon": -74.0099122, + "maxlat": 40.7260802, + "maxlon": -74.0090892 + }, + "nodes": [ + 42442291, + 8307641941, + 12162542949, + 8307641940, + 42436088 + ], + "geometry": [ + { "lat": 40.7260802, "lon": -74.0099122 }, + { "lat": 40.7260672, "lon": -74.0098084 }, + { "lat": 40.7260177, "lon": -74.0092724 }, + { "lat": 40.7260100, "lon": -74.0091895 }, + { "lat": 40.7260025, "lon": -74.0090892 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46351263, + "bounds": { + "minlat": 40.7178700, + "minlon": -73.9768790, + "maxlat": 40.7181150, + "maxlon": -73.9760270 + }, + "nodes": [ + 42442791, + 9010154528, + 4300945412, + 42442794 + ], + "geometry": [ + { "lat": 40.7181150, "lon": -73.9768790 }, + { "lat": 40.7179031, "lon": -73.9761421 }, + { "lat": 40.7178820, "lon": -73.9760691 }, + { "lat": 40.7178700, "lon": -73.9760270 } + ], + "tags": { + "alt_name": "A New Street", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Stanton Street", + "name:ko": "스탠턴 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7600270", + "wikipedia": "en:Stanton Street" + } +}, +{ + "type": "way", + "id": 46359882, + "bounds": { + "minlat": 40.7121913, + "minlon": -73.9540723, + "maxlat": 40.7125212, + "maxlon": -73.9538659 + }, + "nodes": [ + 598033030, + 42463350, + 9957055570 + ], + "geometry": [ + { "lat": 40.7121913, "lon": -73.9540723 }, + { "lat": 40.7124813, "lon": -73.9538909 }, + { "lat": 40.7125212, "lon": -73.9538659 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46359885, + "bounds": { + "minlat": 40.7131205, + "minlon": -73.9534911, + "maxlat": 40.7140639, + "maxlon": -73.9528538 + }, + "nodes": [ + 42520729, + 11155242409, + 8117195701, + 42476485 + ], + "geometry": [ + { "lat": 40.7131205, "lon": -73.9534911 }, + { "lat": 40.7134483, "lon": -73.9532981 }, + { "lat": 40.7139829, "lon": -73.9529517 }, + { "lat": 40.7140639, "lon": -73.9528538 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46359888, + "bounds": { + "minlat": 40.7126120, + "minlon": -73.9491310, + "maxlat": 40.7130870, + "maxlon": -73.9441480 + }, + "nodes": [ + 42525812, + 9767624835, + 8617784297, + 9767549610, + 42491180, + 9767624857, + 9767624892, + 42525818, + 9767624890, + 9767624911, + 42467858 + ], + "geometry": [ + { "lat": 40.7126120, "lon": -73.9491310 }, + { "lat": 40.7126210, "lon": -73.9490355 }, + { "lat": 40.7127575, "lon": -73.9476129 }, + { "lat": 40.7127615, "lon": -73.9475709 }, + { "lat": 40.7127700, "lon": -73.9474820 }, + { "lat": 40.7127774, "lon": -73.9474058 }, + { "lat": 40.7129187, "lon": -73.9459215 }, + { "lat": 40.7129270, "lon": -73.9458340 }, + { "lat": 40.7129342, "lon": -73.9457578 }, + { "lat": 40.7130759, "lon": -73.9442656 }, + { "lat": 40.7130870, "lon": -73.9441480 } + ], + "tags": { + "highway": "residential", + "name": "Ainslie Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46359897, + "bounds": { + "minlat": 40.7109607, + "minlon": -73.9514517, + "maxlat": 40.7131084, + "maxlon": -73.9511193 + }, + "nodes": [ + 42520579, + 5379075732, + 42481931, + 7976681097, + 9957055580, + 6235394658, + 42520582, + 9768177777, + 42520585 + ], + "geometry": [ + { "lat": 40.7109607, "lon": -73.9511193 }, + { "lat": 40.7110423, "lon": -73.9511319 }, + { "lat": 40.7114936, "lon": -73.9511990 }, + { "lat": 40.7116926, "lon": -73.9512284 }, + { "lat": 40.7117580, "lon": -73.9512380 }, + { "lat": 40.7123371, "lon": -73.9513233 }, + { "lat": 40.7124006, "lon": -73.9513324 }, + { "lat": 40.7124794, "lon": -73.9513456 }, + { "lat": 40.7131084, "lon": -73.9514517 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 46359910, + "bounds": { + "minlat": 40.7103011, + "minlon": -73.9574692, + "maxlat": 40.7116882, + "maxlon": -73.9551004 + }, + "nodes": [ + 12101605022, + 479719231, + 9968370367, + 9968370368, + 479719232, + 9968370369, + 9968370370, + 479719233, + 9968370371, + 9968370372, + 9968370373, + 479719234, + 9968370374, + 9968370375, + 479719235, + 9968370376, + 9968370377, + 9968370378, + 479719236, + 9968370379, + 479719237, + 9968370380, + 9968370381, + 479719238, + 9968370382, + 9968370383, + 9968370384, + 480221805 + ], + "geometry": [ + { "lat": 40.7103011, "lon": -73.9574692 }, + { "lat": 40.7103057, "lon": -73.9574284 }, + { "lat": 40.7103174, "lon": -73.9573252 }, + { "lat": 40.7103349, "lon": -73.9572125 }, + { "lat": 40.7103553, "lon": -73.9571083 }, + { "lat": 40.7103796, "lon": -73.9570036 }, + { "lat": 40.7104021, "lon": -73.9569119 }, + { "lat": 40.7104319, "lon": -73.9568044 }, + { "lat": 40.7104596, "lon": -73.9567122 }, + { "lat": 40.7104940, "lon": -73.9566157 }, + { "lat": 40.7105309, "lon": -73.9565163 }, + { "lat": 40.7105664, "lon": -73.9564254 }, + { "lat": 40.7106042, "lon": -73.9563380 }, + { "lat": 40.7106474, "lon": -73.9562495 }, + { "lat": 40.7106932, "lon": -73.9561602 }, + { "lat": 40.7107471, "lon": -73.9560647 }, + { "lat": 40.7107982, "lon": -73.9559801 }, + { "lat": 40.7108579, "lon": -73.9558867 }, + { "lat": 40.7109220, "lon": -73.9557964 }, + { "lat": 40.7109954, "lon": -73.9557024 }, + { "lat": 40.7110753, "lon": -73.9556059 }, + { "lat": 40.7111532, "lon": -73.9555219 }, + { "lat": 40.7112250, "lon": -73.9554486 }, + { "lat": 40.7113061, "lon": -73.9553751 }, + { "lat": 40.7113718, "lon": -73.9553194 }, + { "lat": 40.7114539, "lon": -73.9552587 }, + { "lat": 40.7115317, "lon": -73.9552022 }, + { "lat": 40.7116882, "lon": -73.9551004 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "layer": "2", + "maxspeed:advisory": "30 mph", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46359922, + "bounds": { + "minlat": 40.7114142, + "minlon": -73.9787954, + "maxlat": 40.7157200, + "maxlon": -73.9646127 + }, + "nodes": [ + 486849239, + 486849241, + 592627489, + 486849242, + 486849155, + 5079840928 + ], + "geometry": [ + { "lat": 40.7114142, "lon": -73.9646127 }, + { "lat": 40.7117730, "lon": -73.9659416 }, + { "lat": 40.7121080, "lon": -73.9670879 }, + { "lat": 40.7151695, "lon": -73.9771324 }, + { "lat": 40.7155284, "lon": -73.9782822 }, + { "lat": 40.7157200, "lon": -73.9787954 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "2", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "wikidata": "Q125068", + "wikipedia": "en:Williamsburg Bridge" + } +}, +{ + "type": "way", + "id": 46359926, + "bounds": { + "minlat": 40.7105010, + "minlon": -73.9646127, + "maxlat": 40.7114142, + "maxlon": -73.9616663 + }, + "nodes": [ + 486859031, + 486849239 + ], + "geometry": [ + { "lat": 40.7105010, "lon": -73.9616663 }, + { "lat": 40.7114142, "lon": -73.9646127 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "motorway", + "lanes": "4", + "layer": "2", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A63;A63;A41;A41;A63", + "tiger:county": "New York, NY;Kings, NY", + "tiger:name_base": "Williamsburg", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "turn:lanes": "slight_left|slight_left||" + } +}, +{ + "type": "way", + "id": 46359931, + "bounds": { + "minlat": 40.7102057, + "minlon": -73.9617571, + "maxlat": 40.7103459, + "maxlon": -73.9612928 + }, + "nodes": [ + 592627490, + 486863762 + ], + "geometry": [ + { "lat": 40.7103459, "lon": -73.9617571 }, + { "lat": 40.7102057, "lon": -73.9612928 } + ], + "tags": { + "destination": "Queens;Bronx", + "destination:ref": "I 278 East", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A63;A63;A41;A41;A63", + "tiger:county": "New York, NY;Kings, NY", + "tiger:name_base": "Williamsburg", + "tiger:name_type": "Brg", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46361719, + "bounds": { + "minlat": 40.7171427, + "minlon": -73.9853646, + "maxlat": 40.7174772, + "maxlon": -73.9842574 + }, + "nodes": [ + 11536126180, + 4727104610 + ], + "geometry": [ + { "lat": 40.7174772, "lon": -73.9853646 }, + { "lat": 40.7171427, "lon": -73.9842574 } + ], + "tags": { + "hgv": "designated", + "hgv:lanes": "no|no||", + "highway": "motorway", + "lanes": "4", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46372159, + "bounds": { + "minlat": 40.7482328, + "minlon": -73.9438682, + "maxlat": 40.7493003, + "maxlon": -73.9429402 + }, + "nodes": [ + 42818134, + 5345803649, + 5345803647, + 6253213396, + 9982745678, + 42861168 + ], + "geometry": [ + { "lat": 40.7493003, "lon": -73.9429402 }, + { "lat": 40.7492305, "lon": -73.9429999 }, + { "lat": 40.7492029, "lon": -73.9430237 }, + { "lat": 40.7483153, "lon": -73.9437983 }, + { "lat": 40.7482844, "lon": -73.9438233 }, + { "lat": 40.7482328, "lon": -73.9438682 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "24th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46372160, + "bounds": { + "minlat": 40.7512566, + "minlon": -73.9422771, + "maxlat": 40.7516905, + "maxlon": -73.9418628 + }, + "nodes": [ + 42920892, + 7768243606, + 663799618, + 42920889 + ], + "geometry": [ + { "lat": 40.7512566, "lon": -73.9422771 }, + { "lat": 40.7513096, "lon": -73.9422267 }, + { "lat": 40.7516354, "lon": -73.9419164 }, + { "lat": 40.7516905, "lon": -73.9418628 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "cycleway:left:buffer": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "23rd Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 46372161, + "bounds": { + "minlat": 40.7516275, + "minlon": -73.9442350, + "maxlat": 40.7521080, + "maxlon": -73.9431090 + }, + "nodes": [ + 42793624, + 7768202174, + 4457126156, + 10891946376, + 7768202182, + 276069438 + ], + "geometry": [ + { "lat": 40.7521080, "lon": -73.9442350 }, + { "lat": 40.7520561, "lon": -73.9441131 }, + { "lat": 40.7520532, "lon": -73.9441065 }, + { "lat": 40.7517141, "lon": -73.9433119 }, + { "lat": 40.7516574, "lon": -73.9431783 }, + { "lat": 40.7516275, "lon": -73.9431090 } + ], + "tags": { + "highway": "secondary", + "name": "Queens Plaza South", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46372162, + "bounds": { + "minlat": 40.7510507, + "minlon": -73.9464701, + "maxlat": 40.7524881, + "maxlon": -73.9451046 + }, + "nodes": [ + 42818118, + 8334173158, + 11211160206, + 8334173149, + 3785649062 + ], + "geometry": [ + { "lat": 40.7510507, "lon": -73.9464701 }, + { "lat": 40.7511161, "lon": -73.9463989 }, + { "lat": 40.7523796, "lon": -73.9451885 }, + { "lat": 40.7524208, "lon": -73.9451490 }, + { "lat": 40.7524881, "lon": -73.9451046 } + ], + "tags": { + "highway": "residential", + "name": "13th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46372168, + "bounds": { + "minlat": 40.7508772, + "minlon": -73.9419210, + "maxlat": 40.7513613, + "maxlon": -73.9408211 + }, + "nodes": [ + 592643518, + 7739297998, + 592643514 + ], + "geometry": [ + { "lat": 40.7513613, "lon": -73.9419210 }, + { "lat": 40.7510996, "lon": -73.9413265 }, + { "lat": 40.7508772, "lon": -73.9408211 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46372171, + "bounds": { + "minlat": 40.7499391, + "minlon": -73.9392412, + "maxlat": 40.7501830, + "maxlon": -73.9389617 + }, + "nodes": [ + 592643526, + 4457118201, + 592643527 + ], + "geometry": [ + { "lat": 40.7501830, "lon": -73.9392412 }, + { "lat": 40.7499934, "lon": -73.9390201 }, + { "lat": 40.7499391, "lon": -73.9389617 } + ], + "tags": { + "bicycle": "use_sidepath", + "destination:ref": "NY 25", + "destination:street": "Queens Boulevard", + "hgv": "designated", + "highway": "trunk", + "lanes": "1", + "oneway": "yes", + "ref": "NY 25" + } +}, +{ + "type": "way", + "id": 46372172, + "bounds": { + "minlat": 40.7490806, + "minlon": -73.9396484, + "maxlat": 40.7498201, + "maxlon": -73.9389912 + }, + "nodes": [ + 42817469, + 7788554515, + 11256151931, + 11256151930, + 8375044381, + 11256151928, + 11520108723, + 11748585475 + ], + "geometry": [ + { "lat": 40.7498201, "lon": -73.9389912 }, + { "lat": 40.7497749, "lon": -73.9390312 }, + { "lat": 40.7496724, "lon": -73.9391223 }, + { "lat": 40.7495834, "lon": -73.9392015 }, + { "lat": 40.7493290, "lon": -73.9394276 }, + { "lat": 40.7492823, "lon": -73.9394691 }, + { "lat": 40.7491030, "lon": -73.9396285 }, + { "lat": 40.7490806, "lon": -73.9396484 } + ], + "tags": { + "highway": "residential", + "name": "28th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46372173, + "bounds": { + "minlat": 40.7506555, + "minlon": -73.9428340, + "maxlat": 40.7512566, + "maxlon": -73.9422771 + }, + "nodes": [ + 42920894, + 11180928339, + 7768243585, + 42920892 + ], + "geometry": [ + { "lat": 40.7506555, "lon": -73.9428340 }, + { "lat": 40.7511675, "lon": -73.9423591 }, + { "lat": 40.7512103, "lon": -73.9423191 }, + { "lat": 40.7512566, "lon": -73.9422771 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "23rd Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46372174, + "bounds": { + "minlat": 40.7513332, + "minlon": -73.9410644, + "maxlat": 40.7526400, + "maxlon": -73.9398710 + }, + "nodes": [ + 42861200, + 8699111820, + 6884746911, + 7833495856, + 7961868567, + 8062562627, + 8354876676, + 42861204 + ], + "geometry": [ + { "lat": 40.7526400, "lon": -73.9398710 }, + { "lat": 40.7525884, "lon": -73.9399202 }, + { "lat": 40.7525586, "lon": -73.9399453 }, + { "lat": 40.7525451, "lon": -73.9399577 }, + { "lat": 40.7523874, "lon": -73.9401017 }, + { "lat": 40.7514200, "lon": -73.9409851 }, + { "lat": 40.7513867, "lon": -73.9410155 }, + { "lat": 40.7513332, "lon": -73.9410644 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "24th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46372175, + "bounds": { + "minlat": 40.7582360, + "minlon": -73.9370090, + "maxlat": 40.7594657, + "maxlon": -73.9358819 + }, + "nodes": [ + 42935595, + 3569402132, + 13701267353, + 13701267356, + 6452768046, + 42815782 + ], + "geometry": [ + { "lat": 40.7594657, "lon": -73.9358819 }, + { "lat": 40.7593889, "lon": -73.9359439 }, + { "lat": 40.7591901, "lon": -73.9361276 }, + { "lat": 40.7590517, "lon": -73.9362555 }, + { "lat": 40.7583027, "lon": -73.9369474 }, + { "lat": 40.7582360, "lon": -73.9370090 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lit": "yes", + "name": "22nd Street", + "name_1": "Harry Suna Place", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46372177, + "bounds": { + "minlat": 40.7506253, + "minlon": -73.9394341, + "maxlat": 40.7518200, + "maxlon": -73.9383330 + }, + "nodes": [ + 42872016, + 7504482293, + 7103675574, + 8062562628, + 5493300573, + 42872024 + ], + "geometry": [ + { "lat": 40.7506253, "lon": -73.9394341 }, + { "lat": 40.7506785, "lon": -73.9393849 }, + { "lat": 40.7516061, "lon": -73.9385301 }, + { "lat": 40.7517163, "lon": -73.9384286 }, + { "lat": 40.7517700, "lon": -73.9383794 }, + { "lat": 40.7518200, "lon": -73.9383330 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "27th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46372178, + "bounds": { + "minlat": 40.7508942, + "minlon": -73.9418780, + "maxlat": 40.7514253, + "maxlon": -73.9406430 + }, + "nodes": [ + 276204253, + 276069369 + ], + "geometry": [ + { "lat": 40.7508942, "lon": -73.9406430 }, + { "lat": 40.7514253, "lon": -73.9418780 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "maxheight": "below_default", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46372180, + "bounds": { + "minlat": 40.7518200, + "minlon": -73.9383330, + "maxlat": 40.7530790, + "maxlon": -73.9371700 + }, + "nodes": [ + 42872024, + 5493300575, + 7069690913, + 7961868561, + 7961868558, + 8334074914, + 10744391813, + 42872027 + ], + "geometry": [ + { "lat": 40.7518200, "lon": -73.9383330 }, + { "lat": 40.7518808, "lon": -73.9382768 }, + { "lat": 40.7522664, "lon": -73.9379206 }, + { "lat": 40.7522862, "lon": -73.9379023 }, + { "lat": 40.7526348, "lon": -73.9375803 }, + { "lat": 40.7529878, "lon": -73.9372542 }, + { "lat": 40.7530315, "lon": -73.9372138 }, + { "lat": 40.7530790, "lon": -73.9371700 } + ], + "tags": { + "highway": "residential", + "name": "27th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "27th", + "tiger:name_type": "St", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 46372183, + "bounds": { + "minlat": 40.7499675, + "minlon": -73.9377472, + "maxlat": 40.7604285, + "maxlon": -73.9288539 + }, + "nodes": [ + 8315072990, + 11699225517, + 42833363, + 592643532, + 42833357, + 8315005361, + 8315072952, + 42833349, + 8315072980, + 10047899229, + 8230397445, + 8315005340, + 42833344, + 8314985386, + 8315005366, + 42833340, + 8314985383, + 5487951317, + 5487951319, + 3569401962, + 42815807, + 3569401968, + 3569401989, + 42833332, + 3569402097, + 6452568271, + 42833328, + 6452568270, + 10763787861, + 11699225540, + 42824112 + ], + "geometry": [ + { "lat": 40.7499675, "lon": -73.9377472 }, + { "lat": 40.7509472, "lon": -73.9368378 }, + { "lat": 40.7510037, "lon": -73.9367868 }, + { "lat": 40.7511975, "lon": -73.9365909 }, + { "lat": 40.7517237, "lon": -73.9361192 }, + { "lat": 40.7522042, "lon": -73.9356813 }, + { "lat": 40.7522327, "lon": -73.9356572 }, + { "lat": 40.7522820, "lon": -73.9356140 }, + { "lat": 40.7523356, "lon": -73.9355686 }, + { "lat": 40.7532060, "lon": -73.9347665 }, + { "lat": 40.7532733, "lon": -73.9347046 }, + { "lat": 40.7534725, "lon": -73.9345222 }, + { "lat": 40.7535337, "lon": -73.9344657 }, + { "lat": 40.7535794, "lon": -73.9344271 }, + { "lat": 40.7545399, "lon": -73.9336189 }, + { "lat": 40.7546055, "lon": -73.9335642 }, + { "lat": 40.7546760, "lon": -73.9335069 }, + { "lat": 40.7550589, "lon": -73.9331954 }, + { "lat": 40.7551342, "lon": -73.9331342 }, + { "lat": 40.7557523, "lon": -73.9326314 }, + { "lat": 40.7558212, "lon": -73.9325753 }, + { "lat": 40.7558896, "lon": -73.9325195 }, + { "lat": 40.7572734, "lon": -73.9313940 }, + { "lat": 40.7573288, "lon": -73.9313490 }, + { "lat": 40.7574087, "lon": -73.9312839 }, + { "lat": 40.7588061, "lon": -73.9301474 }, + { "lat": 40.7588701, "lon": -73.9300953 }, + { "lat": 40.7589509, "lon": -73.9300296 }, + { "lat": 40.7603352, "lon": -73.9289312 }, + { "lat": 40.7603682, "lon": -73.9289039 }, + { "lat": 40.7604285, "lon": -73.9288539 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "29th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46419221, + "bounds": { + "minlat": 40.7620729, + "minlon": -73.9619899, + "maxlat": 40.7627152, + "maxlon": -73.9615610 + }, + "nodes": [ + 42423752, + 10121802229, + 8112585814, + 6744466013 + ], + "geometry": [ + { "lat": 40.7620729, "lon": -73.9619899 }, + { "lat": 40.7621301, "lon": -73.9619490 }, + { "lat": 40.7626580, "lon": -73.9615990 }, + { "lat": 40.7627152, "lon": -73.9615610 } + ], + "tags": { + "destination": "2nd Avenue south;Westside", + "foot": "no", + "highway": "trunk", + "lanes": "3", + "name": "Queensboro Bridge Exit", + "oneway": "yes", + "sidewalk": "no" + } +}, +{ + "type": "way", + "id": 46419222, + "bounds": { + "minlat": 40.7596426, + "minlon": -73.9640002, + "maxlat": 40.7601874, + "maxlon": -73.9636394 + }, + "nodes": [ + 42423565, + 3785586749, + 9140893829, + 3785586748, + 371034153 + ], + "geometry": [ + { "lat": 40.7596426, "lon": -73.9640002 }, + { "lat": 40.7597297, "lon": -73.9639377 }, + { "lat": 40.7598065, "lon": -73.9638913 }, + { "lat": 40.7600127, "lon": -73.9637529 }, + { "lat": 40.7601874, "lon": -73.9636394 } + ], + "tags": { + "access:conditional": "no @ (Mo-Fr 06:00-10:00); yes @ (Mo-Fr 06:00-10:00 AND occupants>1)", + "bicycle": "no", + "destination": "Ed Koch Queensboro Bridge Upper Roadway", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "maxspeed": "25 mph", + "moped": "no", + "name": "Queensboro Bridge Approach", + "oneway": "reversible", + "oneway:conditional": "yes @ (Mo-Fr 00:00-06:00,09:30-24:00; Sa-Su); -1 @ (Mo-Fr 06:00-09:30)", + "shoulder": "right", + "sidewalk": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46419224, + "bounds": { + "minlat": 40.7456005, + "minlon": -73.9394831, + "maxlat": 40.7459296, + "maxlon": -73.9392655 + }, + "nodes": [ + 42802543, + 3785649284, + 2971759033 + ], + "geometry": [ + { "lat": 40.7456005, "lon": -73.9392655 }, + { "lat": 40.7457082, "lon": -73.9393437 }, + { "lat": 40.7459296, "lon": -73.9394831 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46420267, + "bounds": { + "minlat": 40.7476037, + "minlon": -73.9437075, + "maxlat": 40.7496814, + "maxlon": -73.9412696 + }, + "nodes": [ + 2971841358, + 9371728439, + 9982745668, + 42818143, + 9982745669, + 9982745677, + 9982745675, + 2971841348, + 9982745676, + 9982745674, + 42818139, + 9982745672, + 42818134, + 9982745691, + 42818131 + ], + "geometry": [ + { "lat": 40.7476037, "lon": -73.9412696 }, + { "lat": 40.7476536, "lon": -73.9413022 }, + { "lat": 40.7481875, "lon": -73.9416320 }, + { "lat": 40.7482416, "lon": -73.9416655 }, + { "lat": 40.7483115, "lon": -73.9417089 }, + { "lat": 40.7488179, "lon": -73.9420291 }, + { "lat": 40.7488336, "lon": -73.9420405 }, + { "lat": 40.7488574, "lon": -73.9420638 }, + { "lat": 40.7488677, "lon": -73.9420776 }, + { "lat": 40.7488809, "lon": -73.9421008 }, + { "lat": 40.7489020, "lon": -73.9421415 }, + { "lat": 40.7489439, "lon": -73.9422244 }, + { "lat": 40.7493003, "lon": -73.9429402 }, + { "lat": 40.7496367, "lon": -73.9436174 }, + { "lat": 40.7496814, "lon": -73.9437075 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46420270, + "bounds": { + "minlat": 40.7447251, + "minlon": -73.9335745, + "maxlat": 40.7451604, + "maxlon": -73.9335163 + }, + "nodes": [ + 42866362, + 9179115039, + 9179115038, + 10743722740, + 42866365 + ], + "geometry": [ + { "lat": 40.7451604, "lon": -73.9335163 }, + { "lat": 40.7450258, "lon": -73.9335548 }, + { "lat": 40.7448972, "lon": -73.9335745 }, + { "lat": 40.7448623, "lon": -73.9335724 }, + { "lat": 40.7447251, "lon": -73.9335542 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "Van Dam Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 46420273, + "bounds": { + "minlat": 40.7494240, + "minlon": -73.9405350, + "maxlat": 40.7501879, + "maxlon": -73.9398386 + }, + "nodes": [ + 42872008, + 4457126160, + 7672241249, + 10994725850, + 42872006 + ], + "geometry": [ + { "lat": 40.7501879, "lon": -73.9398386 }, + { "lat": 40.7501332, "lon": -73.9398863 }, + { "lat": 40.7499428, "lon": -73.9400604 }, + { "lat": 40.7494698, "lon": -73.9404926 }, + { "lat": 40.7494240, "lon": -73.9405350 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "27th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46420274, + "bounds": { + "minlat": 40.7403988, + "minlon": -73.9372930, + "maxlat": 40.7450749, + "maxlon": -73.9363505 + }, + "nodes": [ + 9981973318, + 42832499, + 9981973319, + 9981973331, + 42867657, + 9981973332, + 5482217756, + 6721057425, + 9981973350, + 42860570, + 9981973352, + 5482217769, + 9981973372, + 42867654 + ], + "geometry": [ + { "lat": 40.7403988, "lon": -73.9372930 }, + { "lat": 40.7404678, "lon": -73.9372795 }, + { "lat": 40.7405313, "lon": -73.9372665 }, + { "lat": 40.7412757, "lon": -73.9371095 }, + { "lat": 40.7413560, "lon": -73.9370928 }, + { "lat": 40.7414393, "lon": -73.9370755 }, + { "lat": 40.7422549, "lon": -73.9369058 }, + { "lat": 40.7424921, "lon": -73.9368564 }, + { "lat": 40.7431193, "lon": -73.9367378 }, + { "lat": 40.7432011, "lon": -73.9367223 }, + { "lat": 40.7432850, "lon": -73.9367067 }, + { "lat": 40.7439858, "lon": -73.9365657 }, + { "lat": 40.7449635, "lon": -73.9363725 }, + { "lat": 40.7450749, "lon": -73.9363505 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "30th Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46420276, + "bounds": { + "minlat": 40.7428834, + "minlon": -73.9339429, + "maxlat": 40.7437022, + "maxlon": -73.9337568 + }, + "nodes": [ + 6411299364, + 10743722090, + 6744726750, + 10743722089, + 9981973359, + 42860580 + ], + "geometry": [ + { "lat": 40.7437022, "lon": -73.9337568 }, + { "lat": 40.7434179, "lon": -73.9338252 }, + { "lat": 40.7433305, "lon": -73.9338463 }, + { "lat": 40.7432522, "lon": -73.9338640 }, + { "lat": 40.7429656, "lon": -73.9339286 }, + { "lat": 40.7428834, "lon": -73.9339429 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Van Dam Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46420278, + "bounds": { + "minlat": 40.7446154, + "minlon": -73.9335542, + "maxlat": 40.7447251, + "maxlon": -73.9326468 + }, + "nodes": [ + 42866365, + 10743722738, + 9179115036, + 9179115037, + 10743722727, + 42820836 + ], + "geometry": [ + { "lat": 40.7447251, "lon": -73.9335542 }, + { "lat": 40.7446933, "lon": -73.9334157 }, + { "lat": 40.7446861, "lon": -73.9333810 }, + { "lat": 40.7446154, "lon": -73.9327897 }, + { "lat": 40.7446172, "lon": -73.9327280 }, + { "lat": 40.7446215, "lon": -73.9326468 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Thomson Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 46420280, + "bounds": { + "minlat": 40.7456005, + "minlon": -73.9399335, + "maxlat": 40.7457495, + "maxlon": -73.9392655 + }, + "nodes": [ + 276035449, + 42802543 + ], + "geometry": [ + { "lat": 40.7457495, "lon": -73.9399335 }, + { "lat": 40.7456005, "lon": -73.9392655 } + ], + "tags": { + "bridge": "yes", + "fixme": "check lanes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "layer": "1", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46420281, + "bounds": { + "minlat": 40.7449382, + "minlon": -73.9333550, + "maxlat": 40.7450474, + "maxlon": -73.9332749 + }, + "nodes": [ + 5978492512, + 9179115052, + 9179115051, + 593300815 + ], + "geometry": [ + { "lat": 40.7450474, "lon": -73.9333550 }, + { "lat": 40.7450191, "lon": -73.9333279 }, + { "lat": 40.7449850, "lon": -73.9333014 }, + { "lat": 40.7449382, "lon": -73.9332749 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Queens Boulevard", + "oneway": "no", + "ref": "NY 25", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 46420287, + "bounds": { + "minlat": 40.7608253, + "minlon": -73.9628962, + "maxlat": 40.7609890, + "maxlon": -73.9627835 + }, + "nodes": [ + 1775201764, + 7792410662, + 4918486106 + ], + "geometry": [ + { "lat": 40.7608253, "lon": -73.9628962 }, + { "lat": 40.7608768, "lon": -73.9628608 }, + { "lat": 40.7609890, "lon": -73.9627835 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Queensboro Bridge Exit", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46420292, + "bounds": { + "minlat": 40.7482804, + "minlon": -73.9397181, + "maxlat": 40.7490021, + "maxlon": -73.9391782 + }, + "nodes": [ + 42817470, + 11520102448, + 2089938102, + 11748585472, + 11211159814, + 42844299 + ], + "geometry": [ + { "lat": 40.7490021, "lon": -73.9397181 }, + { "lat": 40.7489401, "lon": -73.9396115 }, + { "lat": 40.7489169, "lon": -73.9395717 }, + { "lat": 40.7487074, "lon": -73.9394402 }, + { "lat": 40.7483818, "lon": -73.9392409 }, + { "lat": 40.7482804, "lon": -73.9391782 } + ], + "tags": { + "highway": "residential", + "name": "42nd Road", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46420295, + "bounds": { + "minlat": 40.7498313, + "minlon": -73.9412869, + "maxlat": 40.7505312, + "maxlon": -73.9406478 + }, + "nodes": [ + 42818591, + 9982745704, + 7768189627, + 8315037310, + 2969267798 + ], + "geometry": [ + { "lat": 40.7498313, "lon": -73.9412869 }, + { "lat": 40.7498811, "lon": -73.9412402 }, + { "lat": 40.7504701, "lon": -73.9407056 }, + { "lat": 40.7504941, "lon": -73.9406825 }, + { "lat": 40.7505312, "lon": -73.9406478 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 46420296, + "bounds": { + "minlat": 40.7482416, + "minlon": -73.9416655, + "maxlat": 40.7490021, + "maxlon": -73.9397181 + }, + "nodes": [ + 42818143, + 9982745670, + 2089938104, + 11747175591, + 42817470 + ], + "geometry": [ + { "lat": 40.7482416, "lon": -73.9416655 }, + { "lat": 40.7482783, "lon": -73.9415640 }, + { "lat": 40.7488829, "lon": -73.9398726 }, + { "lat": 40.7489490, "lon": -73.9397863 }, + { "lat": 40.7490021, "lon": -73.9397181 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Hunter Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46421548, + "bounds": { + "minlat": 40.7833561, + "minlon": -73.9299912, + "maxlat": 40.7875058, + "maxlon": -73.9285758 + }, + "nodes": [ + 7561204349, + 100662013, + 9153831943, + 9153831944, + 100662015, + 9153831945, + 9153831946, + 100662016, + 9153831947, + 100662018, + 9153831948, + 100662019, + 9153831949, + 100662020, + 9153831950, + 9153831951, + 100662023, + 9153831952, + 100662024, + 9153831953, + 9153831954, + 100662025, + 9153831929, + 8794203883 + ], + "geometry": [ + { "lat": 40.7833561, "lon": -73.9294078 }, + { "lat": 40.7835345, "lon": -73.9295363 }, + { "lat": 40.7836969, "lon": -73.9296353 }, + { "lat": 40.7838358, "lon": -73.9297143 }, + { "lat": 40.7839784, "lon": -73.9297841 }, + { "lat": 40.7841422, "lon": -73.9298496 }, + { "lat": 40.7842983, "lon": -73.9298957 }, + { "lat": 40.7844402, "lon": -73.9299311 }, + { "lat": 40.7846039, "lon": -73.9299619 }, + { "lat": 40.7847781, "lon": -73.9299835 }, + { "lat": 40.7849406, "lon": -73.9299912 }, + { "lat": 40.7851306, "lon": -73.9299823 }, + { "lat": 40.7853021, "lon": -73.9299618 }, + { "lat": 40.7854947, "lon": -73.9299253 }, + { "lat": 40.7856698, "lon": -73.9298721 }, + { "lat": 40.7858254, "lon": -73.9298101 }, + { "lat": 40.7859759, "lon": -73.9297366 }, + { "lat": 40.7861390, "lon": -73.9296513 }, + { "lat": 40.7862900, "lon": -73.9295643 }, + { "lat": 40.7864547, "lon": -73.9294519 }, + { "lat": 40.7866006, "lon": -73.9293421 }, + { "lat": 40.7867235, "lon": -73.9292375 }, + { "lat": 40.7870261, "lon": -73.9289761 }, + { "lat": 40.7875058, "lon": -73.9285758 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 46422586, + "bounds": { + "minlat": 40.7095204, + "minlon": -74.0151154, + "maxlat": 40.7098348, + "maxlon": -74.0150379 + }, + "nodes": [ + 246858431, + 11374474062, + 5815234915 + ], + "geometry": [ + { "lat": 40.7098348, "lon": -74.0150379 }, + { "lat": 40.7097370, "lon": -74.0150654 }, + { "lat": 40.7095204, "lon": -74.0151154 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "destination:lanes": "Hugh L Carey Tunnel;Brooklyn|Hugh L Carey Tunnel;Brooklyn|FDR Drive North|FDR Drive North|Battery Park", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|left|||", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 46428911, + "bounds": { + "minlat": 40.7496814, + "minlon": -73.9456600, + "maxlat": 40.7506535, + "maxlon": -73.9437075 + }, + "nodes": [ + 42818120, + 8334173127, + 42818123, + 42818126, + 9982745692, + 42818131 + ], + "geometry": [ + { "lat": 40.7506535, "lon": -73.9456600 }, + { "lat": 40.7505950, "lon": -73.9455353 }, + { "lat": 40.7501655, "lon": -73.9446843 }, + { "lat": 40.7500865, "lon": -73.9445249 }, + { "lat": 40.7497301, "lon": -73.9438058 }, + { "lat": 40.7496814, "lon": -73.9437075 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46431821, + "bounds": { + "minlat": 40.7389504, + "minlon": -74.0097426, + "maxlat": 40.7392299, + "maxlon": -74.0097276 + }, + "nodes": [ + 11310311808, + 12161966105, + 12161966106, + 12161966107, + 12161966108, + 246649433, + 12161966109, + 3884622511 + ], + "geometry": [ + { "lat": 40.7392299, "lon": -74.0097347 }, + { "lat": 40.7391868, "lon": -74.0097377 }, + { "lat": 40.7391440, "lon": -74.0097351 }, + { "lat": 40.7390988, "lon": -74.0097304 }, + { "lat": 40.7390635, "lon": -74.0097276 }, + { "lat": 40.7390246, "lon": -74.0097286 }, + { "lat": 40.7389906, "lon": -74.0097314 }, + { "lat": 40.7389504, "lon": -74.0097426 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46431822, + "bounds": { + "minlat": 40.7340921, + "minlon": -74.0085809, + "maxlat": 40.7344390, + "maxlon": -74.0061609 + }, + "nodes": [ + 42436400, + 8307642113, + 12162494505, + 10166176730, + 42436135, + 10166176728, + 12162436926, + 10166176727, + 42452610, + 8307642131 + ], + "geometry": [ + { "lat": 40.7344390, "lon": -74.0061609 }, + { "lat": 40.7344327, "lon": -74.0063091 }, + { "lat": 40.7343306, "lon": -74.0069923 }, + { "lat": 40.7343217, "lon": -74.0070521 }, + { "lat": 40.7343066, "lon": -74.0071547 }, + { "lat": 40.7342886, "lon": -74.0072774 }, + { "lat": 40.7341211, "lon": -74.0083447 }, + { "lat": 40.7341151, "lon": -74.0083953 }, + { "lat": 40.7341015, "lon": -74.0085070 }, + { "lat": 40.7340921, "lon": -74.0085809 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Charles Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29167331", + "wikipedia": "en:Charles Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46431823, + "bounds": { + "minlat": 40.7345724, + "minlon": -74.0100438, + "maxlat": 40.7347874, + "maxlon": -74.0085290 + }, + "nodes": [ + 42453468, + 4872761059, + 12162436919, + 8307642161 + ], + "geometry": [ + { "lat": 40.7345724, "lon": -74.0100438 }, + { "lat": 40.7345920, "lon": -74.0098973 }, + { "lat": 40.7347832, "lon": -74.0085581 }, + { "lat": 40.7347874, "lon": -74.0085290 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Perry Street", + "name:etymology:wikidata": "Q580513", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 46431825, + "bounds": { + "minlat": 40.7324328, + "minlon": -74.0100954, + "maxlat": 40.7326608, + "maxlon": -74.0086473 + }, + "nodes": [ + 42436894, + 8307641995, + 12162436932, + 10919435177, + 10168907027, + 42436899, + 10168907025, + 12161966227, + 4872777172 + ], + "geometry": [ + { "lat": 40.7326608, "lon": -74.0086473 }, + { "lat": 40.7326500, "lon": -74.0087352 }, + { "lat": 40.7326400, "lon": -74.0088022 }, + { "lat": 40.7325989, "lon": -74.0090580 }, + { "lat": 40.7324796, "lon": -74.0098005 }, + { "lat": 40.7324688, "lon": -74.0098677 }, + { "lat": 40.7324587, "lon": -74.0099303 }, + { "lat": 40.7324427, "lon": -74.0100297 }, + { "lat": 40.7324328, "lon": -74.0100954 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Christopher Street", + "name:ru": "Кристофер-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1086990", + "wikipedia": "en:Christopher Street" + } +}, +{ + "type": "way", + "id": 46431828, + "bounds": { + "minlat": 40.7312875, + "minlon": -74.0103462, + "maxlat": 40.7312977, + "maxlon": -74.0102108 + }, + "nodes": [ + 591454081, + 4629488490 + ], + "geometry": [ + { "lat": 40.7312977, "lon": -74.0103462 }, + { "lat": 40.7312875, "lon": -74.0102108 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Morton Street", + "name:etymology:wikidata": "Q6119027", + "name:ru": "Мортон-стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46431829, + "bounds": { + "minlat": 40.7316700, + "minlon": -74.0077059, + "maxlat": 40.7317831, + "maxlon": -74.0066039 + }, + "nodes": [ + 42436384, + 8288270296, + 12162494527, + 8288270261 + ], + "geometry": [ + { "lat": 40.7316700, "lon": -74.0066039 }, + { "lat": 40.7316839, "lon": -74.0067549 }, + { "lat": 40.7317802, "lon": -74.0076778 }, + { "lat": 40.7317831, "lon": -74.0077059 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Barrow Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 46432181, + "bounds": { + "minlat": 40.7568121, + "minlon": -74.0044180, + "maxlat": 40.7568943, + "maxlon": -74.0041078 + }, + "nodes": [ + 593839881, + 5851983198, + 11511554774, + 11511554775, + 8261122874 + ], + "geometry": [ + { "lat": 40.7568943, "lon": -74.0041078 }, + { "lat": 40.7568467, "lon": -74.0041802 }, + { "lat": 40.7568261, "lon": -74.0042276 }, + { "lat": 40.7568178, "lon": -74.0042879 }, + { "lat": 40.7568121, "lon": -74.0044180 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 46432183, + "bounds": { + "minlat": 40.7571817, + "minlon": -73.9960075, + "maxlat": 40.7573838, + "maxlon": -73.9955439 + }, + "nodes": [ + 593977713, + 8834806807 + ], + "geometry": [ + { "lat": 40.7571817, "lon": -73.9955439 }, + { "lat": 40.7573838, "lon": -73.9960075 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46432185, + "bounds": { + "minlat": 40.7561187, + "minlon": -74.0039742, + "maxlat": 40.7568383, + "maxlon": -74.0019684 + }, + "nodes": [ + 12974291641, + 12974291645, + 9421649597, + 593915317, + 5851983200, + 5851983196, + 593915318, + 9421657445, + 8666573694, + 9421649572, + 12974291640 + ], + "geometry": [ + { "lat": 40.7563973, "lon": -74.0020281 }, + { "lat": 40.7563535, "lon": -74.0019705 }, + { "lat": 40.7562934, "lon": -74.0019684 }, + { "lat": 40.7561585, "lon": -74.0020698 }, + { "lat": 40.7561298, "lon": -74.0021230 }, + { "lat": 40.7561187, "lon": -74.0021807 }, + { "lat": 40.7561235, "lon": -74.0022498 }, + { "lat": 40.7561312, "lon": -74.0022983 }, + { "lat": 40.7565981, "lon": -74.0034022 }, + { "lat": 40.7567224, "lon": -74.0036979 }, + { "lat": 40.7568383, "lon": -74.0039742 } + ], + "tags": { + "highway": "service", + "lane_markings": "no", + "maxspeed": "5 mph", + "motor_vehicle": "destination", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46432187, + "bounds": { + "minlat": 40.7532765, + "minlon": -74.0066345, + "maxlat": 40.7544661, + "maxlon": -74.0038197 + }, + "nodes": [ + 42437699, + 4872498726, + 9423683546, + 12161224627, + 7116915289, + 11507256012, + 7116910484, + 11507256013, + 8261122121, + 5523065801, + 42430607 + ], + "geometry": [ + { "lat": 40.7544661, "lon": -74.0066345 }, + { "lat": 40.7544158, "lon": -74.0065149 }, + { "lat": 40.7542825, "lon": -74.0061976 }, + { "lat": 40.7541657, "lon": -74.0059242 }, + { "lat": 40.7541286, "lon": -74.0058801 }, + { "lat": 40.7540817, "lon": -74.0058210 }, + { "lat": 40.7537323, "lon": -74.0049912 }, + { "lat": 40.7536206, "lon": -74.0047188 }, + { "lat": 40.7536181, "lon": -74.0046399 }, + { "lat": 40.7533300, "lon": -74.0039560 }, + { "lat": 40.7532765, "lon": -74.0038197 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "destination:street": "30th Street", + "hgv": "destination", + "highway": "primary", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46435596, + "bounds": { + "minlat": 40.7627398, + "minlon": -73.9989729, + "maxlat": 40.7636288, + "maxlon": -73.9968900 + }, + "nodes": [ + 42430685, + 9140941070, + 10166505414, + 5458524665, + 5458524664, + 4599130021, + 4872429937, + 62915527 + ], + "geometry": [ + { "lat": 40.7627398, "lon": -73.9968900 }, + { "lat": 40.7627926, "lon": -73.9970145 }, + { "lat": 40.7628085, "lon": -73.9970524 }, + { "lat": 40.7630563, "lon": -73.9976461 }, + { "lat": 40.7632770, "lon": -73.9981624 }, + { "lat": 40.7635574, "lon": -73.9988061 }, + { "lat": 40.7635815, "lon": -73.9988610 }, + { "lat": 40.7636288, "lon": -73.9989729 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46435602, + "bounds": { + "minlat": 40.7642432, + "minlon": -73.9987098, + "maxlat": 40.7643299, + "maxlon": -73.9985035 + }, + "nodes": [ + 42453555, + 11017187937 + ], + "geometry": [ + { "lat": 40.7643299, "lon": -73.9987098 }, + { "lat": 40.7642432, "lon": -73.9985035 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46435657, + "bounds": { + "minlat": 40.7593876, + "minlon": -73.9972272, + "maxlat": 40.7595088, + "maxlon": -73.9969538 + }, + "nodes": [ + 42423836, + 593920879 + ], + "geometry": [ + { "lat": 40.7593876, "lon": -73.9969538 }, + { "lat": 40.7595088, "lon": -73.9972272 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 46435658, + "bounds": { + "minlat": 40.7620659, + "minlon": -74.0014781, + "maxlat": 40.7623263, + "maxlon": -74.0013362 + }, + "nodes": [ + 247119751, + 12152950989, + 9143503696, + 12152950990, + 9143503697, + 12152950991, + 247086015, + 2710280683, + 9143503698, + 12152950972, + 247072104, + 12152950973, + 12152950974, + 9143503691, + 42437379 + ], + "geometry": [ + { "lat": 40.7623263, "lon": -74.0013787 }, + { "lat": 40.7623031, "lon": -74.0014011 }, + { "lat": 40.7622815, "lon": -74.0014237 }, + { "lat": 40.7622596, "lon": -74.0014429 }, + { "lat": 40.7622379, "lon": -74.0014590 }, + { "lat": 40.7622213, "lon": -74.0014685 }, + { "lat": 40.7621980, "lon": -74.0014759 }, + { "lat": 40.7621711, "lon": -74.0014781 }, + { "lat": 40.7621508, "lon": -74.0014767 }, + { "lat": 40.7621286, "lon": -74.0014673 }, + { "lat": 40.7621149, "lon": -74.0014568 }, + { "lat": 40.7621027, "lon": -74.0014401 }, + { "lat": 40.7620917, "lon": -74.0014190 }, + { "lat": 40.7620811, "lon": -74.0013876 }, + { "lat": 40.7620659, "lon": -74.0013362 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46443559, + "bounds": { + "minlat": 40.7686019, + "minlon": -73.9962443, + "maxlat": 40.7697929, + "maxlon": -73.9950878 + }, + "nodes": [ + 4872414618, + 11017186431, + 7573345223, + 4872414616, + 593861319, + 7782741730, + 593861321, + 247120350 + ], + "geometry": [ + { "lat": 40.7686019, "lon": -73.9962443 }, + { "lat": 40.7687028, "lon": -73.9961735 }, + { "lat": 40.7690734, "lon": -73.9959130 }, + { "lat": 40.7694762, "lon": -73.9956234 }, + { "lat": 40.7697929, "lon": -73.9953963 }, + { "lat": 40.7697568, "lon": -73.9952832 }, + { "lat": 40.7697353, "lon": -73.9952243 }, + { "lat": 40.7696900, "lon": -73.9950878 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 46443582, + "bounds": { + "minlat": 40.7712271, + "minlon": -73.9942139, + "maxlat": 40.7715328, + "maxlon": -73.9935659 + }, + "nodes": [ + 7443621689, + 9143010991, + 12153915823, + 4872443907, + 61271722 + ], + "geometry": [ + { "lat": 40.7712271, "lon": -73.9935659 }, + { "lat": 40.7713752, "lon": -73.9937993 }, + { "lat": 40.7714592, "lon": -73.9939996 }, + { "lat": 40.7714816, "lon": -73.9940523 }, + { "lat": 40.7715328, "lon": -73.9942139 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "name_1": "West 57 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46443588, + "bounds": { + "minlat": 40.7713679, + "minlon": -73.9945454, + "maxlat": 40.7719981, + "maxlon": -73.9941842 + }, + "nodes": [ + 61272997, + 13168459337, + 13168459338, + 13168459327, + 13168459336, + 13168459320, + 13168459328, + 13168459335, + 13168459322, + 13168459334, + 13168459333, + 13168459331, + 13168459330, + 13168459319, + 13168459326, + 13168459340, + 13168459332, + 13168459321, + 13168459339, + 13168459318, + 13168459344, + 13168459324 + ], + "geometry": [ + { "lat": 40.7719981, "lon": -73.9941842 }, + { "lat": 40.7719136, "lon": -73.9942454 }, + { "lat": 40.7718788, "lon": -73.9942705 }, + { "lat": 40.7718433, "lon": -73.9942951 }, + { "lat": 40.7718210, "lon": -73.9943102 }, + { "lat": 40.7718098, "lon": -73.9943177 }, + { "lat": 40.7717848, "lon": -73.9943341 }, + { "lat": 40.7717740, "lon": -73.9943409 }, + { "lat": 40.7717562, "lon": -73.9943521 }, + { "lat": 40.7717333, "lon": -73.9943657 }, + { "lat": 40.7717104, "lon": -73.9943793 }, + { "lat": 40.7716887, "lon": -73.9943917 }, + { "lat": 40.7716656, "lon": -73.9944046 }, + { "lat": 40.7716190, "lon": -73.9944295 }, + { "lat": 40.7716011, "lon": -73.9944394 }, + { "lat": 40.7715615, "lon": -73.9944602 }, + { "lat": 40.7715410, "lon": -73.9944706 }, + { "lat": 40.7715018, "lon": -73.9944892 }, + { "lat": 40.7714684, "lon": -73.9945044 }, + { "lat": 40.7714343, "lon": -73.9945192 }, + { "lat": 40.7714032, "lon": -73.9945315 }, + { "lat": 40.7713679, "lon": -73.9945454 } + ], + "tags": { + "alt_name": "12th Avenue", + "bicycle": "no", + "destination:lanes": "West 56 Street;West 54 Street|West 56 Street|Battery Park|Battery Park|Battery Park;Ship Terminal", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Side Highway", + "name:ru": "Вест-Сайд-Хайвей", + "not:name": "Henry Hudson Parkway", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "source:name": "https://en.wikipedia.org/wiki/West_Side_Highway" + } +}, +{ + "type": "way", + "id": 46443594, + "bounds": { + "minlat": 40.7729617, + "minlon": -73.9939382, + "maxlat": 40.7730776, + "maxlon": -73.9936483 + }, + "nodes": [ + 61272887, + 12152905163, + 2059325741, + 7572774699, + 247123999 + ], + "geometry": [ + { "lat": 40.7729617, "lon": -73.9936483 }, + { "lat": 40.7729833, "lon": -73.9937023 }, + { "lat": 40.7729947, "lon": -73.9937308 }, + { "lat": 40.7730066, "lon": -73.9937607 }, + { "lat": 40.7730776, "lon": -73.9939382 } + ], + "tags": { + "highway": "service", + "name": "West 59th Street", + "name:ru": "Западная 59-я стрит", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 46443634, + "bounds": { + "minlat": 40.7681457, + "minlon": -73.9963479, + "maxlat": 40.7682478, + "maxlon": -73.9961019 + }, + "nodes": [ + 4870557354, + 4872564991, + 10864738907, + 7573345226, + 247072112 + ], + "geometry": [ + { "lat": 40.7682478, "lon": -73.9963479 }, + { "lat": 40.7681774, "lon": -73.9961783 }, + { "lat": 40.7681661, "lon": -73.9961510 }, + { "lat": 40.7681577, "lon": -73.9961308 }, + { "lat": 40.7681457, "lon": -73.9961019 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 46443637, + "bounds": { + "minlat": 40.7692042, + "minlon": -73.9948504, + "maxlat": 40.7692588, + "maxlon": -73.9947214 + }, + "nodes": [ + 9140954071, + 3308681118 + ], + "geometry": [ + { "lat": 40.7692588, "lon": -73.9948504 }, + { "lat": 40.7692042, "lon": -73.9947214 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "name_1": "West 54 Street", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46443639, + "bounds": { + "minlat": 40.7668330, + "minlon": -73.9972638, + "maxlat": 40.7669863, + "maxlon": -73.9968877 + }, + "nodes": [ + 4870557355, + 4872564990, + 10864456160, + 4872414620, + 593861371, + 12153915859 + ], + "geometry": [ + { "lat": 40.7669863, "lon": -73.9972638 }, + { "lat": 40.7669203, "lon": -73.9971047 }, + { "lat": 40.7669064, "lon": -73.9970702 }, + { "lat": 40.7668996, "lon": -73.9970534 }, + { "lat": 40.7668846, "lon": -73.9970159 }, + { "lat": 40.7668330, "lon": -73.9968877 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 46443649, + "bounds": { + "minlat": 40.7539350, + "minlon": -73.9656942, + "maxlat": 40.7544977, + "maxlon": -73.9643470 + }, + "nodes": [ + 42440472, + 6747000422, + 42440469 + ], + "geometry": [ + { "lat": 40.7539350, "lon": -73.9643470 }, + { "lat": 40.7544445, "lon": -73.9655669 }, + { "lat": 40.7544977, "lon": -73.9656942 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 51st Street", + "name:ru": "Восточная 51-я стрит", + "name_1": "East 51 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "51st", + "tiger:name_base_1": "51", + "tiger:name_direction_prefix": "E", + "tiger:name_direction_prefix_1": "E", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "10022", + "tiger:zip_right": "10022", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46443656, + "bounds": { + "minlat": 40.7641132, + "minlon": -73.9971388, + "maxlat": 40.7661220, + "maxlon": -73.9923694 + }, + "nodes": [ + 10168028992, + 4782543127, + 10698841379, + 10166521658, + 42430698, + 10166521654, + 2956903784, + 13701309747, + 4782543124, + 4872429939, + 62915536 + ], + "geometry": [ + { "lat": 40.7641132, "lon": -73.9923694 }, + { "lat": 40.7642209, "lon": -73.9926216 }, + { "lat": 40.7650767, "lon": -73.9946549 }, + { "lat": 40.7652017, "lon": -73.9949519 }, + { "lat": 40.7652498, "lon": -73.9950660 }, + { "lat": 40.7653173, "lon": -73.9952243 }, + { "lat": 40.7654550, "lon": -73.9955435 }, + { "lat": 40.7654729, "lon": -73.9955864 }, + { "lat": 40.7659335, "lon": -73.9966896 }, + { "lat": 40.7660664, "lon": -73.9970121 }, + { "lat": 40.7661220, "lon": -73.9971388 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 49th Street", + "name:ru": "Западная 49-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46443684, + "bounds": { + "minlat": 40.7667473, + "minlon": -73.9968877, + "maxlat": 40.7668330, + "maxlon": -73.9966812 + }, + "nodes": [ + 12153915859, + 11017186437 + ], + "geometry": [ + { "lat": 40.7668330, "lon": -73.9968877 }, + { "lat": 40.7667473, "lon": -73.9966812 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "West 50th Street", + "name:ru": "Западная 50-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46469718, + "bounds": { + "minlat": 40.7464170, + "minlon": -73.9762151, + "maxlat": 40.7466079, + "maxlon": -73.9757655 + }, + "nodes": [ + 593886214, + 4215926836 + ], + "geometry": [ + { "lat": 40.7466079, "lon": -73.9762151 }, + { "lat": 40.7464170, "lon": -73.9757655 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 36th Street", + "name:ru": "Восточная 36-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46469719, + "bounds": { + "minlat": 40.7466079, + "minlon": -73.9763921, + "maxlat": 40.7466817, + "maxlon": -73.9762151 + }, + "nodes": [ + 593886220, + 593886214 + ], + "geometry": [ + { "lat": 40.7466817, "lon": -73.9763921 }, + { "lat": 40.7466079, "lon": -73.9762151 } + ], + "tags": { + "bridge": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "layer": "1", + "maxspeed": "25 mph", + "name": "East 36th Street", + "name:ru": "Восточная 36-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46469720, + "bounds": { + "minlat": 40.7476401, + "minlon": -73.9777597, + "maxlat": 40.7480679, + "maxlon": -73.9767589 + }, + "nodes": [ + 42449685, + 10171137633, + 5340982007, + 12183285338 + ], + "geometry": [ + { "lat": 40.7476401, "lon": -73.9767589 }, + { "lat": 40.7476883, "lon": -73.9768716 }, + { "lat": 40.7478440, "lon": -73.9772358 }, + { "lat": 40.7480679, "lon": -73.9777597 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46469721, + "bounds": { + "minlat": 40.7472995, + "minlon": -73.9759943, + "maxlat": 40.7473668, + "maxlon": -73.9758338 + }, + "nodes": [ + 42426816, + 9140729335 + ], + "geometry": [ + { "lat": 40.7472995, "lon": -73.9758338 }, + { "lat": 40.7473668, "lon": -73.9759943 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46469722, + "bounds": { + "minlat": 40.7466817, + "minlon": -73.9771862, + "maxlat": 40.7470130, + "maxlon": -73.9763921 + }, + "nodes": [ + 42449932, + 13416532079, + 11273068436, + 593886220 + ], + "geometry": [ + { "lat": 40.7470130, "lon": -73.9771862 }, + { "lat": 40.7469837, "lon": -73.9771127 }, + { "lat": 40.7469576, "lon": -73.9770503 }, + { "lat": 40.7466817, "lon": -73.9763921 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 36th Street", + "name:ru": "Восточная 36-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46469723, + "bounds": { + "minlat": 40.7484102, + "minlon": -73.9727006, + "maxlat": 40.7491639, + "maxlon": -73.9709247 + }, + "nodes": [ + 42432464, + 9509151987, + 9987259782, + 11715620406, + 9509176060, + 42432540 + ], + "geometry": [ + { "lat": 40.7491639, "lon": -73.9727006 }, + { "lat": 40.7491015, "lon": -73.9725521 }, + { "lat": 40.7487629, "lon": -73.9717538 }, + { "lat": 40.7484799, "lon": -73.9710866 }, + { "lat": 40.7484585, "lon": -73.9710362 }, + { "lat": 40.7484102, "lon": -73.9709247 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 41st Street", + "name:ru": "Восточная 41-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 46469724, + "bounds": { + "minlat": 40.7475450, + "minlon": -73.9701821, + "maxlat": 40.7481335, + "maxlon": -73.9687700 + }, + "nodes": [ + 1701844664, + 11003445278, + 11003445277, + 1701844812, + 8270907189, + 8270907188, + 5160015817, + 3946506159, + 3670414976, + 11003445281, + 595105538 + ], + "geometry": [ + { "lat": 40.7475579, "lon": -73.9687700 }, + { "lat": 40.7475475, "lon": -73.9688044 }, + { "lat": 40.7475450, "lon": -73.9688354 }, + { "lat": 40.7475517, "lon": -73.9688663 }, + { "lat": 40.7476629, "lon": -73.9691332 }, + { "lat": 40.7478058, "lon": -73.9694762 }, + { "lat": 40.7479822, "lon": -73.9698993 }, + { "lat": 40.7480540, "lon": -73.9700717 }, + { "lat": 40.7480768, "lon": -73.9701263 }, + { "lat": 40.7480938, "lon": -73.9701455 }, + { "lat": 40.7481335, "lon": -73.9701821 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "name": "East 41st Street", + "name:ru": "Восточная 41-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 46469725, + "bounds": { + "minlat": 40.7483194, + "minlon": -73.9709247, + "maxlat": 40.7484102, + "maxlon": -73.9707085 + }, + "nodes": [ + 42432540, + 593886226 + ], + "geometry": [ + { "lat": 40.7484102, "lon": -73.9709247 }, + { "lat": 40.7483194, "lon": -73.9707085 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 41st Street", + "name:ru": "Восточная 41-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 46469726, + "bounds": { + "minlat": 40.7484102, + "minlon": -73.9709247, + "maxlat": 40.7489671, + "maxlon": -73.9705128 + }, + "nodes": [ + 42432540, + 9509176059, + 3817631967, + 248707601 + ], + "geometry": [ + { "lat": 40.7484102, "lon": -73.9709247 }, + { "lat": 40.7484701, "lon": -73.9708678 }, + { "lat": 40.7489365, "lon": -73.9705325 }, + { "lat": 40.7489671, "lon": -73.9705128 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "Tudor City Place", + "name:etymology:wikidata": "Q549206", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46469727, + "bounds": { + "minlat": 40.7497536, + "minlon": -73.9739708, + "maxlat": 40.7514615, + "maxlon": -73.9699431 + }, + "nodes": [ + 42445804, + 9509176091, + 12673751291, + 42442939, + 3569749117, + 10017163240, + 10125260542, + 42449947 + ], + "geometry": [ + { "lat": 40.7497536, "lon": -73.9699431 }, + { "lat": 40.7497954, "lon": -73.9700425 }, + { "lat": 40.7504471, "lon": -73.9715784 }, + { "lat": 40.7505017, "lon": -73.9717073 }, + { "lat": 40.7505632, "lon": -73.9718522 }, + { "lat": 40.7508842, "lon": -73.9726092 }, + { "lat": 40.7513966, "lon": -73.9738175 }, + { "lat": 40.7514615, "lon": -73.9739708 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 43rd Street", + "name:ru": "Восточная 43-я стрит", + "name_1": "Abt Fulton J. Jean Place", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46469729, + "bounds": { + "minlat": 40.7464084, + "minlon": -73.9746972, + "maxlat": 40.7466071, + "maxlon": -73.9745526 + }, + "nodes": [ + 11956649238, + 593886227 + ], + "geometry": [ + { "lat": 40.7466071, "lon": -73.9745526 }, + { "lat": 40.7464084, "lon": -73.9746972 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "bridge": "yes", + "change:lanes": "no|no|not_left|yes|yes|yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46469730, + "bounds": { + "minlat": 40.7459742, + "minlon": -73.9736071, + "maxlat": 40.7461116, + "maxlon": -73.9731241 + }, + "nodes": [ + 106706938, + 9140729329, + 3846772713, + 9140729330, + 6166331835, + 9140729331, + 588166448, + 6166426226 + ], + "geometry": [ + { "lat": 40.7459742, "lon": -73.9731241 }, + { "lat": 40.7459765, "lon": -73.9731729 }, + { "lat": 40.7459831, "lon": -73.9732297 }, + { "lat": 40.7459973, "lon": -73.9733021 }, + { "lat": 40.7460146, "lon": -73.9733647 }, + { "lat": 40.7460359, "lon": -73.9734241 }, + { "lat": 40.7460505, "lon": -73.9734599 }, + { "lat": 40.7461116, "lon": -73.9736071 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 46469731, + "bounds": { + "minlat": 40.7484303, + "minlon": -73.9840705, + "maxlat": 40.7491045, + "maxlon": -73.9824775 + }, + "nodes": [ + 42434948, + 10173357075, + 9965135063, + 42434946 + ], + "geometry": [ + { "lat": 40.7484303, "lon": -73.9824775 }, + { "lat": 40.7484728, "lon": -73.9825780 }, + { "lat": 40.7490594, "lon": -73.9839633 }, + { "lat": 40.7491045, "lon": -73.9840705 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lit": "yes", + "name": "East 35th Street", + "name:ru": "Восточная 35-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46469732, + "bounds": { + "minlat": 40.7454554, + "minlon": -73.9757809, + "maxlat": 40.7456175, + "maxlon": -73.9753989 + }, + "nodes": [ + 42434965, + 4259278550, + 4207683805 + ], + "geometry": [ + { "lat": 40.7454554, "lon": -73.9753989 }, + { "lat": 40.7455110, "lon": -73.9755276 }, + { "lat": 40.7456175, "lon": -73.9757809 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 35th Street", + "name:ru": "Восточная 35-я стрит", + "short_name": "East 35 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "right|right" + } +}, +{ + "type": "way", + "id": 46481095, + "bounds": { + "minlat": 40.7514035, + "minlon": -74.0051771, + "maxlat": 40.7536336, + "maxlon": -74.0035610 + }, + "nodes": [ + 593909446, + 11153346394, + 42430607, + 8261122836, + 10168324136, + 12152879561, + 8261122841, + 42427824, + 8261122842, + 8261123018, + 42430603, + 8261123019, + 8261123024, + 42430600 + ], + "geometry": [ + { "lat": 40.7536336, "lon": -74.0035610 }, + { "lat": 40.7533206, "lon": -74.0037877 }, + { "lat": 40.7532765, "lon": -74.0038197 }, + { "lat": 40.7532103, "lon": -74.0038677 }, + { "lat": 40.7527782, "lon": -74.0041852 }, + { "lat": 40.7527536, "lon": -74.0042032 }, + { "lat": 40.7527133, "lon": -74.0042328 }, + { "lat": 40.7526648, "lon": -74.0042686 }, + { "lat": 40.7525905, "lon": -74.0043229 }, + { "lat": 40.7520896, "lon": -74.0046799 }, + { "lat": 40.7520312, "lon": -74.0047222 }, + { "lat": 40.7519621, "lon": -74.0047723 }, + { "lat": 40.7514677, "lon": -74.0051306 }, + { "lat": 40.7514035, "lon": -74.0051771 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46481738, + "bounds": { + "minlat": 40.7558935, + "minlon": -74.0005846, + "maxlat": 40.7576744, + "maxlon": -73.9963387 + }, + "nodes": [ + 427842134, + 4601240939, + 8261122939, + 42443975, + 8261122942, + 8592620027, + 9421943093, + 8261122902, + 42430646 + ], + "geometry": [ + { "lat": 40.7558935, "lon": -73.9963387 }, + { "lat": 40.7559876, "lon": -73.9965926 }, + { "lat": 40.7564267, "lon": -73.9976394 }, + { "lat": 40.7564802, "lon": -73.9977670 }, + { "lat": 40.7565572, "lon": -73.9979016 }, + { "lat": 40.7569803, "lon": -73.9989119 }, + { "lat": 40.7571762, "lon": -73.9993866 }, + { "lat": 40.7576237, "lon": -74.0004663 }, + { "lat": 40.7576744, "lon": -74.0005846 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46481740, + "bounds": { + "minlat": 40.7576107, + "minlon": -73.9989024, + "maxlat": 40.7577576, + "maxlon": -73.9985511 + }, + "nodes": [ + 593915211, + 593915213 + ], + "geometry": [ + { "lat": 40.7577576, "lon": -73.9989024 }, + { "lat": 40.7576107, "lon": -73.9985511 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "layer": "1", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46481741, + "bounds": { + "minlat": 40.7577576, + "minlon": -74.0001285, + "maxlat": 40.7582961, + "maxlon": -73.9989024 + }, + "nodes": [ + 42430651, + 8261122945, + 13701261731, + 5481847153, + 593915211 + ], + "geometry": [ + { "lat": 40.7582961, "lon": -74.0001285 }, + { "lat": 40.7582422, "lon": -74.0000076 }, + { "lat": 40.7580828, "lon": -73.9996417 }, + { "lat": 40.7579418, "lon": -73.9993286 }, + { "lat": 40.7577576, "lon": -73.9989024 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "residential", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46481742, + "bounds": { + "minlat": 40.7576744, + "minlon": -74.0009472, + "maxlat": 40.7578305, + "maxlon": -74.0005846 + }, + "nodes": [ + 42430646, + 8261122905, + 9421657467, + 593915237 + ], + "geometry": [ + { "lat": 40.7576744, "lon": -74.0005846 }, + { "lat": 40.7577453, "lon": -74.0007437 }, + { "lat": 40.7577680, "lon": -74.0007951 }, + { "lat": 40.7578305, "lon": -74.0009472 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 46481744, + "bounds": { + "minlat": 40.7564645, + "minlon": -74.0014663, + "maxlat": 40.7574514, + "maxlon": -74.0007462 + }, + "nodes": [ + 593915255, + 8261122915, + 42430643, + 8261122916, + 8261122888, + 42430639 + ], + "geometry": [ + { "lat": 40.7574514, "lon": -74.0007462 }, + { "lat": 40.7571235, "lon": -74.0009837 }, + { "lat": 40.7570547, "lon": -74.0010329 }, + { "lat": 40.7569984, "lon": -74.0010726 }, + { "lat": 40.7565065, "lon": -74.0014335 }, + { "lat": 40.7564645, "lon": -74.0014663 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46481747, + "bounds": { + "minlat": 40.7522886, + "minlon": -73.9925251, + "maxlat": 40.7534779, + "maxlon": -73.9896878 + }, + "nodes": [ + 42435646, + 8660596952, + 3769557283, + 10169532575, + 42439955 + ], + "geometry": [ + { "lat": 40.7534779, "lon": -73.9925251 }, + { "lat": 40.7534216, "lon": -73.9923910 }, + { "lat": 40.7530724, "lon": -73.9915577 }, + { "lat": 40.7523403, "lon": -73.9898111 }, + { "lat": 40.7522886, "lon": -73.9896878 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 36th Street", + "name:ru": "Западная 36-я стрит", + "name_1": "West 36 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46481748, + "bounds": { + "minlat": 40.7561911, + "minlon": -74.0014663, + "maxlat": 40.7564645, + "maxlon": -74.0007876 + }, + "nodes": [ + 593915274, + 8261122891, + 42430639 + ], + "geometry": [ + { "lat": 40.7561911, "lon": -74.0007876 }, + { "lat": 40.7564140, "lon": -74.0013416 }, + { "lat": 40.7564645, "lon": -74.0014663 } + ], + "tags": { + "highway": "unclassified", + "name": "West 35th Street", + "name:ru": "Западная 35-я стрит", + "name_1": "West 35 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46481752, + "bounds": { + "minlat": 40.7556016, + "minlon": -74.0051412, + "maxlat": 40.7562436, + "maxlon": -74.0036228 + }, + "nodes": [ + 593915295, + 8261044803, + 11511543644 + ], + "geometry": [ + { "lat": 40.7556016, "lon": -74.0036228 }, + { "lat": 40.7559662, "lon": -74.0044870 }, + { "lat": 40.7562436, "lon": -74.0051412 } + ], + "tags": { + "access": "permissive", + "description": "NYPD closed street and is using for parking", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "name_1": "West 33 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46481754, + "bounds": { + "minlat": 40.7560737, + "minlon": -74.0044180, + "maxlat": 40.7568121, + "maxlon": -74.0026630 + }, + "nodes": [ + 593915303, + 4696815195, + 8261122869, + 8261122874 + ], + "geometry": [ + { "lat": 40.7560737, "lon": -74.0026630 }, + { "lat": 40.7566909, "lon": -74.0041278 }, + { "lat": 40.7567230, "lon": -74.0042054 }, + { "lat": 40.7568121, "lon": -74.0044180 } + ], + "tags": { + "change": "yes", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46481755, + "bounds": { + "minlat": 40.7555666, + "minlon": -74.0019763, + "maxlat": 40.7557816, + "maxlon": -74.0014670 + }, + "nodes": [ + 42430633, + 5165644096, + 593915305, + 9971314389 + ], + "geometry": [ + { "lat": 40.7557816, "lon": -74.0019763 }, + { "lat": 40.7557280, "lon": -74.0018499 }, + { "lat": 40.7556553, "lon": -74.0016768 }, + { "lat": 40.7555666, "lon": -74.0014670 } + ], + "tags": { + "bus:lanes:forward": "yes|designated", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "surface": "asphalt", + "turn:lanes:backward": "left|through;right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46482536, + "bounds": { + "minlat": 40.7581469, + "minlon": -73.9984041, + "maxlat": 40.7583819, + "maxlon": -73.9978539 + }, + "nodes": [ + 427804196, + 427804211 + ], + "geometry": [ + { "lat": 40.7581469, "lon": -73.9978539 }, + { "lat": 40.7583819, "lon": -73.9984041 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46482537, + "bounds": { + "minlat": 40.7583460, + "minlon": -73.9971988, + "maxlat": 40.7586789, + "maxlon": -73.9964055 + }, + "nodes": [ + 6905716426, + 6905716429, + 8288270425, + 42446504 + ], + "geometry": [ + { "lat": 40.7586789, "lon": -73.9971988 }, + { "lat": 40.7584857, "lon": -73.9967386 }, + { "lat": 40.7584068, "lon": -73.9965535 }, + { "lat": 40.7583460, "lon": -73.9964055 } + ], + "tags": { + "alt_name": "West 40 Street", + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46482538, + "bounds": { + "minlat": 40.7587259, + "minlon": -73.9975781, + "maxlat": 40.7588460, + "maxlon": -73.9973105 + }, + "nodes": [ + 42446506, + 9143220944, + 593920840 + ], + "geometry": [ + { "lat": 40.7588460, "lon": -73.9975781 }, + { "lat": 40.7588009, "lon": -73.9974764 }, + { "lat": 40.7587259, "lon": -73.9973105 } + ], + "tags": { + "alt_name": "West 40 Street", + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46482539, + "bounds": { + "minlat": 40.7595088, + "minlon": -73.9987232, + "maxlat": 40.7601279, + "maxlon": -73.9972272 + }, + "nodes": [ + 593920879, + 6863958502, + 10168212478, + 9019680389 + ], + "geometry": [ + { "lat": 40.7595088, "lon": -73.9972272 }, + { "lat": 40.7600757, "lon": -73.9985937 }, + { "lat": 40.7601040, "lon": -73.9986620 }, + { "lat": 40.7601279, "lon": -73.9987232 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 46482540, + "bounds": { + "minlat": 40.7593452, + "minlon": -73.9969538, + "maxlat": 40.7593876, + "maxlon": -73.9968491 + }, + "nodes": [ + 593920893, + 42423836 + ], + "geometry": [ + { "lat": 40.7593452, "lon": -73.9968491 }, + { "lat": 40.7593876, "lon": -73.9969538 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 46482541, + "bounds": { + "minlat": 40.7583819, + "minlon": -73.9996835, + "maxlat": 40.7589139, + "maxlon": -73.9984041 + }, + "nodes": [ + 427804211, + 5890772452, + 13701261728, + 5481848621, + 8288270548, + 593839894 + ], + "geometry": [ + { "lat": 40.7583819, "lon": -73.9984041 }, + { "lat": 40.7585934, "lon": -73.9989090 }, + { "lat": 40.7587471, "lon": -73.9992818 }, + { "lat": 40.7587862, "lon": -73.9993766 }, + { "lat": 40.7588641, "lon": -73.9995601 }, + { "lat": 40.7589139, "lon": -73.9996835 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46482592, + "bounds": { + "minlat": 40.7639924, + "minlon": -73.9980477, + "maxlat": 40.7648743, + "maxlon": -73.9959815 + }, + "nodes": [ + 42430691, + 10166521636, + 10086163401, + 4599130022, + 62915531 + ], + "geometry": [ + { "lat": 40.7639924, "lon": -73.9959815 }, + { "lat": 40.7640607, "lon": -73.9961414 }, + { "lat": 40.7647957, "lon": -73.9978634 }, + { "lat": 40.7648172, "lon": -73.9979140 }, + { "lat": 40.7648743, "lon": -73.9980477 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 47th Street", + "name:ru": "Западная 47-я стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "surface": "asphalt", + "wikidata": "Q4638574", + "wikipedia": "en:47th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46482600, + "bounds": { + "minlat": 40.7618010, + "minlon": -73.9949256, + "maxlat": 40.7619192, + "maxlon": -73.9946460 + }, + "nodes": [ + 593921856, + 593921857 + ], + "geometry": [ + { "lat": 40.7618010, "lon": -73.9946460 }, + { "lat": 40.7619192, "lon": -73.9949256 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46482602, + "bounds": { + "minlat": 40.7609866, + "minlon": -73.9941692, + "maxlat": 40.7624224, + "maxlon": -73.9907670 + }, + "nodes": [ + 593921858, + 10168047560, + 42455761, + 10168047556, + 10168047571, + 42445018 + ], + "geometry": [ + { "lat": 40.7624224, "lon": -73.9941692 }, + { "lat": 40.7622405, "lon": -73.9937382 }, + { "lat": 40.7621850, "lon": -73.9936069 }, + { "lat": 40.7621371, "lon": -73.9934932 }, + { "lat": 40.7610442, "lon": -73.9909113 }, + { "lat": 40.7609866, "lon": -73.9907670 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46482603, + "bounds": { + "minlat": 40.7624224, + "minlon": -73.9944293, + "maxlat": 40.7625317, + "maxlon": -73.9941692 + }, + "nodes": [ + 593921859, + 593921858 + ], + "geometry": [ + { "lat": 40.7625317, "lon": -73.9944293 }, + { "lat": 40.7624224, "lon": -73.9941692 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46482604, + "bounds": { + "minlat": 40.7630652, + "minlon": -73.9939806, + "maxlat": 40.7631593, + "maxlon": -73.9937550 + }, + "nodes": [ + 593921860, + 593921845 + ], + "geometry": [ + { "lat": 40.7630652, "lon": -73.9937550 }, + { "lat": 40.7631593, "lon": -73.9939806 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "West 47th Street", + "name:ru": "Западная 47-я стрит", + "name_1": "West 47 Street", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4638574", + "wikipedia": "en:47th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46482609, + "bounds": { + "minlat": 40.7597283, + "minlon": -73.9945259, + "maxlat": 40.7609247, + "maxlon": -73.9916836 + }, + "nodes": [ + 42443563, + 10168047541, + 10168047519, + 42443561 + ], + "geometry": [ + { "lat": 40.7609247, "lon": -73.9945259 }, + { "lat": 40.7608757, "lon": -73.9944039 }, + { "lat": 40.7597874, "lon": -73.9918240 }, + { "lat": 40.7597283, "lon": -73.9916836 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46482611, + "bounds": { + "minlat": 40.7613062, + "minlon": -73.9973436, + "maxlat": 40.7621145, + "maxlon": -73.9954293 + }, + "nodes": [ + 42430680, + 10166505406, + 593921869 + ], + "geometry": [ + { "lat": 40.7621145, "lon": -73.9973436 }, + { "lat": 40.7620650, "lon": -73.9972263 }, + { "lat": 40.7613062, "lon": -73.9954293 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "unclassified", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46482818, + "bounds": { + "minlat": 40.7586026, + "minlon": -73.9987719, + "maxlat": 40.7588148, + "maxlon": -73.9981326 + }, + "nodes": [ + 593926734, + 427804059, + 9143220939, + 42423844 + ], + "geometry": [ + { "lat": 40.7586026, "lon": -73.9981326 }, + { "lat": 40.7586569, "lon": -73.9982959 }, + { "lat": 40.7587142, "lon": -73.9984703 }, + { "lat": 40.7588148, "lon": -73.9987719 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "motor_vehicle": "customers", + "name": "PABT Ramp", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46482819, + "bounds": { + "minlat": 40.7583765, + "minlon": -73.9992001, + "maxlat": 40.7588687, + "maxlon": -73.9977612 + }, + "nodes": [ + 427804205, + 427804172, + 593926743, + 427804170, + 427804169, + 427804168, + 427804166, + 9143220941, + 6150826392, + 42423847 + ], + "geometry": [ + { "lat": 40.7583765, "lon": -73.9977612 }, + { "lat": 40.7584601, "lon": -73.9979569 }, + { "lat": 40.7585385, "lon": -73.9981498 }, + { "lat": 40.7585858, "lon": -73.9982638 }, + { "lat": 40.7586344, "lon": -73.9983943 }, + { "lat": 40.7586727, "lon": -73.9985069 }, + { "lat": 40.7587091, "lon": -73.9986280 }, + { "lat": 40.7587531, "lon": -73.9987887 }, + { "lat": 40.7588068, "lon": -73.9989824 }, + { "lat": 40.7588687, "lon": -73.9992001 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "maxheight": "13'0\"", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 46490537, + "bounds": { + "minlat": 40.7522065, + "minlon": -74.0005305, + "maxlat": 40.7526895, + "maxlon": -73.9993807 + }, + "nodes": [ + 427840998, + 427841062, + 10171326396, + 11509890710, + 8261122516, + 42451695 + ], + "geometry": [ + { "lat": 40.7522065, "lon": -73.9993807 }, + { "lat": 40.7522423, "lon": -73.9994670 }, + { "lat": 40.7522649, "lon": -73.9995213 }, + { "lat": 40.7524169, "lon": -73.9998834 }, + { "lat": 40.7526355, "lon": -74.0004044 }, + { "lat": 40.7526895, "lon": -74.0005305 } + ], + "tags": { + "alt_name": "West 31 Street", + "hgv": "local", + "highway": "tertiary", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "West 31st Street", + "name:ru": "Западная 31-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46490538, + "bounds": { + "minlat": 40.7465313, + "minlon": -73.9891568, + "maxlat": 40.7478958, + "maxlon": -73.9859434 + }, + "nodes": [ + 42451674, + 10168260250, + 6321287405, + 6321287404, + 6223969252, + 42428232, + 6223969259, + 4769084861, + 10168911587, + 42430292 + ], + "geometry": [ + { "lat": 40.7465313, "lon": -73.9859434 }, + { "lat": 40.7465842, "lon": -73.9860681 }, + { "lat": 40.7468123, "lon": -73.9866051 }, + { "lat": 40.7469190, "lon": -73.9868565 }, + { "lat": 40.7474920, "lon": -73.9882059 }, + { "lat": 40.7475458, "lon": -73.9883326 }, + { "lat": 40.7475827, "lon": -73.9884194 }, + { "lat": 40.7477385, "lon": -73.9887864 }, + { "lat": 40.7478451, "lon": -73.9890375 }, + { "lat": 40.7478958, "lon": -73.9891568 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 31st Street", + "name:ru": "Западная 31-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46490540, + "bounds": { + "minlat": 40.7470230, + "minlon": -74.0046530, + "maxlat": 40.7477028, + "maxlon": -74.0041638 + }, + "nodes": [ + 42434285, + 10168486328, + 9971263902, + 42437914 + ], + "geometry": [ + { "lat": 40.7470230, "lon": -74.0046530 }, + { "lat": 40.7470882, "lon": -74.0046085 }, + { "lat": 40.7476112, "lon": -74.0042292 }, + { "lat": 40.7477028, "lon": -74.0041638 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46491363, + "bounds": { + "minlat": 40.7578487, + "minlon": -73.9937877, + "maxlat": 40.7580638, + "maxlon": -73.9932752 + }, + "nodes": [ + 9307956352, + 593977712 + ], + "geometry": [ + { "lat": 40.7580638, "lon": -73.9937877 }, + { "lat": 40.7578487, "lon": -73.9932752 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "PABT Bus Ramp", + "note": "buses only", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46492007, + "bounds": { + "minlat": 40.7559056, + "minlon": -73.9953727, + "maxlat": 40.7566236, + "maxlon": -73.9950781 + }, + "nodes": [ + 427841023, + 427841026, + 9971300888, + 427841027, + 427841028, + 9971300887, + 427841029, + 427841030, + 9971300886, + 9971300885, + 427841031, + 427841032, + 9971300884, + 427841033, + 427841034 + ], + "geometry": [ + { "lat": 40.7566236, "lon": -73.9951455 }, + { "lat": 40.7565281, "lon": -73.9951041 }, + { "lat": 40.7564695, "lon": -73.9950930 }, + { "lat": 40.7564139, "lon": -73.9950832 }, + { "lat": 40.7563583, "lon": -73.9950781 }, + { "lat": 40.7563050, "lon": -73.9950791 }, + { "lat": 40.7562593, "lon": -73.9950849 }, + { "lat": 40.7561991, "lon": -73.9951002 }, + { "lat": 40.7561570, "lon": -73.9951191 }, + { "lat": 40.7561157, "lon": -73.9951431 }, + { "lat": 40.7560754, "lon": -73.9951738 }, + { "lat": 40.7560272, "lon": -73.9952132 }, + { "lat": 40.7559869, "lon": -73.9952580 }, + { "lat": 40.7559525, "lon": -73.9953045 }, + { "lat": 40.7559056, "lon": -73.9953727 } + ], + "tags": { + "destination": "Dyer Avenue;9th Avenue;West 30th Street;West 33rd Street", + "destination:lanes": "30-33 Street|30-33 Street;34-36 Street", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "yes", + "turn:lanes": "|through;slight_right" + } +}, +{ + "type": "way", + "id": 46492008, + "bounds": { + "minlat": 40.7562704, + "minlon": -73.9951455, + "maxlat": 40.7566236, + "maxlon": -73.9949687 + }, + "nodes": [ + 427840965, + 593984747, + 593984748, + 593984749, + 593984750, + 11142762503, + 427841023 + ], + "geometry": [ + { "lat": 40.7562704, "lon": -73.9949687 }, + { "lat": 40.7563630, "lon": -73.9949788 }, + { "lat": 40.7564053, "lon": -73.9949851 }, + { "lat": 40.7564735, "lon": -73.9950091 }, + { "lat": 40.7565258, "lon": -73.9950382 }, + { "lat": 40.7565818, "lon": -73.9950902 }, + { "lat": 40.7566236, "lon": -73.9951455 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "oneway": "yes", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 46492009, + "bounds": { + "minlat": 40.7562704, + "minlon": -73.9952257, + "maxlat": 40.7568782, + "maxlon": -73.9949471 + }, + "nodes": [ + 427840965, + 427840964, + 427840962, + 427840961, + 427840960, + 427840959, + 427840958, + 11142762504, + 427840957 + ], + "geometry": [ + { "lat": 40.7562704, "lon": -73.9949687 }, + { "lat": 40.7563673, "lon": -73.9949471 }, + { "lat": 40.7564431, "lon": -73.9949543 }, + { "lat": 40.7565162, "lon": -73.9949738 }, + { "lat": 40.7565874, "lon": -73.9950040 }, + { "lat": 40.7566610, "lon": -73.9950442 }, + { "lat": 40.7567382, "lon": -73.9950972 }, + { "lat": 40.7568189, "lon": -73.9951647 }, + { "lat": 40.7568782, "lon": -73.9952257 } + ], + "tags": { + "destination": "Lincoln Tunnel", + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 46492010, + "bounds": { + "minlat": 40.7556805, + "minlon": -73.9962926, + "maxlat": 40.7560543, + "maxlon": -73.9960224 + }, + "nodes": [ + 42423685, + 8835121396 + ], + "geometry": [ + { "lat": 40.7560543, "lon": -73.9960224 }, + { "lat": 40.7556805, "lon": -73.9962926 } + ], + "tags": { + "bicycle": "no", + "destination": "36th Street;Downtown;Madison Square Garden", + "destination:ref:to": "I 495 East", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "left|none|none|none|slight_right" + } +}, +{ + "type": "way", + "id": 46492013, + "bounds": { + "minlat": 40.7571045, + "minlon": -73.9950102, + "maxlat": 40.7571689, + "maxlon": -73.9945421 + }, + "nodes": [ + 427850889, + 11149329075, + 427850890, + 42424775, + 1806430486, + 427850893, + 427850894, + 1806430556, + 11149329074, + 1806430500, + 42424776 + ], + "geometry": [ + { "lat": 40.7571689, "lon": -73.9945421 }, + { "lat": 40.7571483, "lon": -73.9945776 }, + { "lat": 40.7571333, "lon": -73.9946117 }, + { "lat": 40.7571205, "lon": -73.9946523 }, + { "lat": 40.7571102, "lon": -73.9947009 }, + { "lat": 40.7571045, "lon": -73.9947483 }, + { "lat": 40.7571060, "lon": -73.9947994 }, + { "lat": 40.7571093, "lon": -73.9948412 }, + { "lat": 40.7571184, "lon": -73.9948852 }, + { "lat": 40.7571350, "lon": -73.9949523 }, + { "lat": 40.7571571, "lon": -73.9950102 } + ], + "tags": { + "access": "no", + "bus": "yes", + "destination": "Port Authority Bus Terminal", + "highway": "service", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46492014, + "bounds": { + "minlat": 40.7578475, + "minlon": -73.9973383, + "maxlat": 40.7582971, + "maxlon": -73.9962712 + }, + "nodes": [ + 427851484, + 427804085, + 427804105 + ], + "geometry": [ + { "lat": 40.7578475, "lon": -73.9962712 }, + { "lat": 40.7581447, "lon": -73.9969876 }, + { "lat": 40.7582971, "lon": -73.9973383 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "1", + "motor_vehicle": "customers", + "name": "PABT Ramp", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46492015, + "bounds": { + "minlat": 40.7567795, + "minlon": -73.9955836, + "maxlat": 40.7569340, + "maxlon": -73.9952967 + }, + "nodes": [ + 427841017, + 9971300889, + 427841018, + 427841019, + 427841020 + ], + "geometry": [ + { "lat": 40.7569340, "lon": -73.9955836 }, + { "lat": 40.7568910, "lon": -73.9954816 }, + { "lat": 40.7568592, "lon": -73.9954206 }, + { "lat": 40.7568214, "lon": -73.9953563 }, + { "lat": 40.7567795, "lon": -73.9952967 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "-1", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "reversible", + "ref": "NY 495", + "toll:backward": "no", + "toll:forward": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 46492016, + "bounds": { + "minlat": 40.7566236, + "minlon": -73.9952967, + "maxlat": 40.7567795, + "maxlon": -73.9951455 + }, + "nodes": [ + 427841020, + 427841021, + 1701920958, + 427841023 + ], + "geometry": [ + { "lat": 40.7567795, "lon": -73.9952967 }, + { "lat": 40.7567371, "lon": -73.9952471 }, + { "lat": 40.7566792, "lon": -73.9951877 }, + { "lat": 40.7566236, "lon": -73.9951455 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "reversible", + "ref": "NY 495", + "surface": "concrete", + "toll:backward": "no", + "toll:forward": "yes" + } +}, +{ + "type": "way", + "id": 46492020, + "bounds": { + "minlat": 40.7577628, + "minlon": -73.9966861, + "maxlat": 40.7579622, + "maxlon": -73.9963682 + }, + "nodes": [ + 428219642, + 428219722, + 428219723, + 6872046054, + 6872046047, + 428219724, + 428219725, + 11149329017, + 428219726, + 428219647, + 6872046053, + 428219735, + 6872046049, + 428219648 + ], + "geometry": [ + { "lat": 40.7578245, "lon": -73.9963682 }, + { "lat": 40.7578009, "lon": -73.9963932 }, + { "lat": 40.7577848, "lon": -73.9964124 }, + { "lat": 40.7577749, "lon": -73.9964311 }, + { "lat": 40.7577663, "lon": -73.9964562 }, + { "lat": 40.7577628, "lon": -73.9964948 }, + { "lat": 40.7577659, "lon": -73.9965316 }, + { "lat": 40.7577770, "lon": -73.9965638 }, + { "lat": 40.7577916, "lon": -73.9965938 }, + { "lat": 40.7578130, "lon": -73.9966271 }, + { "lat": 40.7578377, "lon": -73.9966502 }, + { "lat": 40.7578735, "lon": -73.9966723 }, + { "lat": 40.7579042, "lon": -73.9966833 }, + { "lat": 40.7579622, "lon": -73.9966861 } + ], + "tags": { + "access": "no", + "bus": "yes", + "destination": "10th Avenue", + "highway": "service", + "maxspeed": "5 mph", + "motor_vehicle": "customers", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46492028, + "bounds": { + "minlat": 40.7575294, + "minlon": -73.9961821, + "maxlat": 40.7579456, + "maxlon": -73.9950911 + }, + "nodes": [ + 593984805, + 593984806, + 11149329198, + 7902264894, + 593984807, + 11149329197, + 428219691, + 428219698, + 428219699, + 428219700, + 428219701, + 428219702, + 428219703, + 428219704, + 428219706, + 428219707, + 428219708, + 428219709, + 11149329127, + 428219712, + 428219713 + ], + "geometry": [ + { "lat": 40.7575294, "lon": -73.9950911 }, + { "lat": 40.7575818, "lon": -73.9951281 }, + { "lat": 40.7576272, "lon": -73.9951670 }, + { "lat": 40.7576671, "lon": -73.9952115 }, + { "lat": 40.7577039, "lon": -73.9952683 }, + { "lat": 40.7577427, "lon": -73.9953443 }, + { "lat": 40.7578530, "lon": -73.9956037 }, + { "lat": 40.7579109, "lon": -73.9957445 }, + { "lat": 40.7579325, "lon": -73.9958375 }, + { "lat": 40.7579456, "lon": -73.9959364 }, + { "lat": 40.7579374, "lon": -73.9960276 }, + { "lat": 40.7579105, "lon": -73.9960889 }, + { "lat": 40.7578816, "lon": -73.9961285 }, + { "lat": 40.7578283, "lon": -73.9961697 }, + { "lat": 40.7577683, "lon": -73.9961821 }, + { "lat": 40.7577204, "lon": -73.9961631 }, + { "lat": 40.7576831, "lon": -73.9961402 }, + { "lat": 40.7576484, "lon": -73.9961065 }, + { "lat": 40.7576207, "lon": -73.9960558 }, + { "lat": 40.7576027, "lon": -73.9960053 }, + { "lat": 40.7575956, "lon": -73.9959531 } + ], + "tags": { + "access": "no", + "bus": "yes", + "destination": "Port Authority Bus Terminal", + "highway": "service", + "maxspeed": "15 mph", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46492034, + "bounds": { + "minlat": 40.7568782, + "minlon": -73.9969500, + "maxlat": 40.7579621, + "maxlon": -73.9952257 + }, + "nodes": [ + 427840957, + 427840956, + 427840955, + 427840954, + 427840953, + 427840952, + 427840951, + 427840950, + 427840949 + ], + "geometry": [ + { "lat": 40.7568782, "lon": -73.9952257 }, + { "lat": 40.7569551, "lon": -73.9953339 }, + { "lat": 40.7570973, "lon": -73.9955538 }, + { "lat": 40.7572132, "lon": -73.9957603 }, + { "lat": 40.7573634, "lon": -73.9960232 }, + { "lat": 40.7574874, "lon": -73.9962351 }, + { "lat": 40.7576154, "lon": -73.9964550 }, + { "lat": 40.7577515, "lon": -73.9966616 }, + { "lat": 40.7579621, "lon": -73.9969500 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "layer": "-1", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "toll": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 46492035, + "bounds": { + "minlat": 40.7576988, + "minlon": -73.9953920, + "maxlat": 40.7578029, + "maxlon": -73.9951024 + }, + "nodes": [ + 428219720, + 427851427 + ], + "geometry": [ + { "lat": 40.7576988, "lon": -73.9953920 }, + { "lat": 40.7578029, "lon": -73.9951024 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "1", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46492037, + "bounds": { + "minlat": 40.7575475, + "minlon": -73.9963152, + "maxlat": 40.7579659, + "maxlon": -73.9959555 + }, + "nodes": [ + 593984781, + 10686639775, + 10686639774, + 11149329033, + 593984813, + 11149329184, + 593984814, + 593984815, + 11149329139, + 593984816, + 11149329140, + 593984817, + 593984818 + ], + "geometry": [ + { "lat": 40.7579659, "lon": -73.9961939 }, + { "lat": 40.7579202, "lon": -73.9962389 }, + { "lat": 40.7578720, "lon": -73.9962814 }, + { "lat": 40.7578324, "lon": -73.9963058 }, + { "lat": 40.7577830, "lon": -73.9963152 }, + { "lat": 40.7577540, "lon": -73.9963150 }, + { "lat": 40.7577110, "lon": -73.9962984 }, + { "lat": 40.7576776, "lon": -73.9962703 }, + { "lat": 40.7576165, "lon": -73.9961924 }, + { "lat": 40.7575886, "lon": -73.9961366 }, + { "lat": 40.7575650, "lon": -73.9960734 }, + { "lat": 40.7575504, "lon": -73.9959990 }, + { "lat": 40.7575475, "lon": -73.9959555 } + ], + "tags": { + "access": "no", + "bus": "yes", + "destination": "Port Authority Bus Terminal", + "highway": "service", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46492638, + "bounds": { + "minlat": 40.7576654, + "minlon": -73.9948115, + "maxlat": 40.7581732, + "maxlon": -73.9945329 + }, + "nodes": [ + 42424789, + 9509567997, + 8288270428, + 593977715, + 4604291692, + 4604291690, + 4604290488, + 9307956353 + ], + "geometry": [ + { "lat": 40.7576654, "lon": -73.9948115 }, + { "lat": 40.7577014, "lon": -73.9947821 }, + { "lat": 40.7577241, "lon": -73.9947636 }, + { "lat": 40.7577507, "lon": -73.9947419 }, + { "lat": 40.7578412, "lon": -73.9946976 }, + { "lat": 40.7579879, "lon": -73.9946551 }, + { "lat": 40.7580852, "lon": -73.9945961 }, + { "lat": 40.7581732, "lon": -73.9945329 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "name": "Dyer Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|left;through|none|none|none", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 46492639, + "bounds": { + "minlat": 40.7546303, + "minlon": -73.9971610, + "maxlat": 40.7552202, + "maxlon": -73.9966484 + }, + "nodes": [ + 42434429, + 8261123408, + 8261123399, + 1533280147 + ], + "geometry": [ + { "lat": 40.7552202, "lon": -73.9966484 }, + { "lat": 40.7551636, "lon": -73.9967003 }, + { "lat": 40.7546841, "lon": -73.9971250 }, + { "lat": 40.7546303, "lon": -73.9971610 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "||right", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 46492640, + "bounds": { + "minlat": 40.7578029, + "minlon": -73.9951024, + "maxlat": 40.7578970, + "maxlon": -73.9948142 + }, + "nodes": [ + 427851427, + 427851428 + ], + "geometry": [ + { "lat": 40.7578029, "lon": -73.9951024 }, + { "lat": 40.7578970, "lon": -73.9948142 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "1", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46518728, + "bounds": { + "minlat": 40.7506690, + "minlon": -73.9684095, + "maxlat": 40.7507505, + "maxlon": -73.9681935 + }, + "nodes": [ + 595105420, + 9140864947, + 9140864946, + 11000990836, + 3670418727, + 11003445386, + 11003445385, + 42444055 + ], + "geometry": [ + { "lat": 40.7506690, "lon": -73.9681935 }, + { "lat": 40.7506891, "lon": -73.9682129 }, + { "lat": 40.7507058, "lon": -73.9682431 }, + { "lat": 40.7507109, "lon": -73.9682530 }, + { "lat": 40.7507236, "lon": -73.9682851 }, + { "lat": 40.7507312, "lon": -73.9683197 }, + { "lat": 40.7507378, "lon": -73.9683682 }, + { "lat": 40.7507505, "lon": -73.9684095 } + ], + "tags": { + "highway": "service", + "name": "East 45th Street", + "name:ru": "Восточная 45-я стрит" + } +}, +{ + "type": "way", + "id": 46518729, + "bounds": { + "minlat": 40.7506465, + "minlon": -73.9681935, + "maxlat": 40.7506690, + "maxlon": -73.9681814 + }, + "nodes": [ + 595105420, + 3827330944 + ], + "geometry": [ + { "lat": 40.7506690, "lon": -73.9681935 }, + { "lat": 40.7506465, "lon": -73.9681814 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 46518730, + "bounds": { + "minlat": 40.7492578, + "minlon": -73.9691791, + "maxlat": 40.7493718, + "maxlon": -73.9690088 + }, + "nodes": [ + 1254408221, + 11002617522, + 11002617523, + 11000991287, + 11002617481, + 1357949864 + ], + "geometry": [ + { "lat": 40.7493718, "lon": -73.9691791 }, + { "lat": 40.7493544, "lon": -73.9691434 }, + { "lat": 40.7493491, "lon": -73.9691326 }, + { "lat": 40.7493291, "lon": -73.9690917 }, + { "lat": 40.7492947, "lon": -73.9690427 }, + { "lat": 40.7492578, "lon": -73.9690088 } + ], + "tags": { + "access": "no", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46518731, + "bounds": { + "minlat": 40.7494064, + "minlon": -73.9693844, + "maxlat": 40.7501172, + "maxlon": -73.9688692 + }, + "nodes": [ + 595105472, + 42455931, + 3569749109, + 3569749110, + 42453000 + ], + "geometry": [ + { "lat": 40.7494064, "lon": -73.9693844 }, + { "lat": 40.7494908, "lon": -73.9693240 }, + { "lat": 40.7495922, "lon": -73.9692502 }, + { "lat": 40.7500537, "lon": -73.9689145 }, + { "lat": 40.7501172, "lon": -73.9688692 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 46518732, + "bounds": { + "minlat": 40.7478303, + "minlon": -73.9705802, + "maxlat": 40.7479910, + "maxlon": -73.9703956 + }, + "nodes": [ + 11003445421, + 9140864922, + 1701844698 + ], + "geometry": [ + { "lat": 40.7478303, "lon": -73.9705802 }, + { "lat": 40.7479873, "lon": -73.9703979 }, + { "lat": 40.7479910, "lon": -73.9703956 } + ], + "tags": { + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "lit": "yes", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 46518734, + "bounds": { + "minlat": 40.7513685, + "minlon": -73.9679588, + "maxlat": 40.7517161, + "maxlon": -73.9676257 + }, + "nodes": [ + 42434092, + 6271127159, + 9140864949, + 6271127164, + 11003445395, + 6271127144, + 3569749129 + ], + "geometry": [ + { "lat": 40.7513685, "lon": -73.9679588 }, + { "lat": 40.7514253, "lon": -73.9679000 }, + { "lat": 40.7514395, "lon": -73.9678864 }, + { "lat": 40.7515410, "lon": -73.9678113 }, + { "lat": 40.7516067, "lon": -73.9677480 }, + { "lat": 40.7516680, "lon": -73.9676822 }, + { "lat": 40.7517161, "lon": -73.9676257 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 46518739, + "bounds": { + "minlat": 40.7519528, + "minlon": -73.9669654, + "maxlat": 40.7525098, + "maxlon": -73.9654544 + }, + "nodes": [ + 3829675223, + 9140864957, + 8224676525, + 8224618700, + 9140864958, + 6316875547, + 3569749141, + 370925141 + ], + "geometry": [ + { "lat": 40.7523347, "lon": -73.9669654 }, + { "lat": 40.7524833, "lon": -73.9668744 }, + { "lat": 40.7525004, "lon": -73.9668560 }, + { "lat": 40.7525075, "lon": -73.9668375 }, + { "lat": 40.7525098, "lon": -73.9668138 }, + { "lat": 40.7525073, "lon": -73.9667950 }, + { "lat": 40.7525011, "lon": -73.9667745 }, + { "lat": 40.7519528, "lon": -73.9654544 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "name": "East 48th Street", + "name:ru": "Восточная 48-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 46518740, + "bounds": { + "minlat": 40.7531536, + "minlon": -73.9648110, + "maxlat": 40.7533140, + "maxlon": -73.9644223 + }, + "nodes": [ + 42453087, + 12244884964, + 42459579 + ], + "geometry": [ + { "lat": 40.7533140, "lon": -73.9648110 }, + { "lat": 40.7532862, "lon": -73.9647437 }, + { "lat": 40.7531536, "lon": -73.9644223 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 50th Street", + "name:ru": "Восточная 50-я стрит", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46520833, + "bounds": { + "minlat": 40.7464603, + "minlon": -73.9850381, + "maxlat": 40.7477740, + "maxlon": -73.9819120 + }, + "nodes": [ + 561042188, + 8119462477, + 10168210239, + 42445903, + 10168210235, + 4493840514, + 10169157387, + 42446701 + ], + "geometry": [ + { "lat": 40.7464603, "lon": -73.9819120 }, + { "lat": 40.7465015, "lon": -73.9820124 }, + { "lat": 40.7470573, "lon": -73.9833388 }, + { "lat": 40.7471011, "lon": -73.9834426 }, + { "lat": 40.7471456, "lon": -73.9835481 }, + { "lat": 40.7475283, "lon": -73.9844555 }, + { "lat": 40.7477308, "lon": -73.9849357 }, + { "lat": 40.7477740, "lon": -73.9850381 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 33rd Street", + "name:ru": "Восточная 33-я стрит", + "name_1": "East 33 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46520834, + "bounds": { + "minlat": 40.7469645, + "minlon": -73.9814458, + "maxlat": 40.7503073, + "maxlon": -73.9790027 + }, + "nodes": [ + 595142429, + 561042196 + ], + "geometry": [ + { "lat": 40.7469645, "lon": -73.9814458 }, + { "lat": 40.7503073, "lon": -73.9790027 } + ], + "tags": { + "alt_name": "Murray Hill Tunnel", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "primary", + "lanes": "1", + "layer": "-1", + "level": "-1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue Tunnel", + "name:tr": "Park Avenue Tüneli", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "tunnel": "yes", + "wikidata": "Q2628830", + "wikipedia": "en:Park Avenue Tunnel (roadway)" + } +}, +{ + "type": "way", + "id": 46520921, + "bounds": { + "minlat": 40.7537188, + "minlon": -73.9774323, + "maxlat": 40.7556019, + "maxlon": -73.9760646 + }, + "nodes": [ + 42443807, + 10125247896, + 10125247895, + 10125247894, + 42443810, + 10125247892, + 10125247890, + 42434077, + 10125247889, + 13639581369, + 10125247886, + 42443811 + ], + "geometry": [ + { "lat": 40.7537188, "lon": -73.9774323 }, + { "lat": 40.7537789, "lon": -73.9773887 }, + { "lat": 40.7541338, "lon": -73.9771314 }, + { "lat": 40.7542976, "lon": -73.9770130 }, + { "lat": 40.7543510, "lon": -73.9769749 }, + { "lat": 40.7544139, "lon": -73.9769295 }, + { "lat": 40.7549322, "lon": -73.9765558 }, + { "lat": 40.7549885, "lon": -73.9765138 }, + { "lat": 40.7550391, "lon": -73.9764767 }, + { "lat": 40.7555168, "lon": -73.9761271 }, + { "lat": 40.7555496, "lon": -73.9761031 }, + { "lat": 40.7556019, "lon": -73.9760646 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vanderbilt Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q75889665", + "wikipedia": "en:Vanderbilt Avenue" + } +}, +{ + "type": "way", + "id": 46521465, + "bounds": { + "minlat": 40.7539599, + "minlon": -73.9760133, + "maxlat": 40.7545141, + "maxlon": -73.9757585 + }, + "nodes": [ + 3639381191, + 3786902263, + 11509720073, + 100522732, + 3786902264, + 3786902265, + 100522731, + 3786902266, + 11509720074, + 1690448998, + 3786902267, + 3786902268, + 100522730, + 3639381192 + ], + "geometry": [ + { "lat": 40.7539599, "lon": -73.9758148 }, + { "lat": 40.7539802, "lon": -73.9758202 }, + { "lat": 40.7540037, "lon": -73.9758322 }, + { "lat": 40.7540204, "lon": -73.9758446 }, + { "lat": 40.7540384, "lon": -73.9758660 }, + { "lat": 40.7540558, "lon": -73.9758973 }, + { "lat": 40.7540828, "lon": -73.9759622 }, + { "lat": 40.7540953, "lon": -73.9759840 }, + { "lat": 40.7541096, "lon": -73.9759996 }, + { "lat": 40.7541217, "lon": -73.9760076 }, + { "lat": 40.7541406, "lon": -73.9760133 }, + { "lat": 40.7541593, "lon": -73.9760091 }, + { "lat": 40.7541803, "lon": -73.9759965 }, + { "lat": 40.7545141, "lon": -73.9757585 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:advisory": "15 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "concrete", + "tunnel": "building_passage", + "turn:lanes": "through|through", + "wikidata": "Q7137641", + "wikipedia": "en:Park Avenue Viaduct" + } +}, +{ + "type": "way", + "id": 46521736, + "bounds": { + "minlat": 40.7533140, + "minlon": -73.9661361, + "maxlat": 40.7538651, + "maxlon": -73.9648110 + }, + "nodes": [ + 42455934, + 8224618705, + 8224618701, + 42453087 + ], + "geometry": [ + { "lat": 40.7538651, "lon": -73.9661361 }, + { "lat": 40.7538199, "lon": -73.9660277 }, + { "lat": 40.7533444, "lon": -73.9648841 }, + { "lat": 40.7533140, "lon": -73.9648110 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 50th Street", + "name:ru": "Восточная 50-я стрит", + "name_1": "East 50 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46521993, + "bounds": { + "minlat": 40.7610471, + "minlon": -73.9786085, + "maxlat": 40.7623991, + "maxlon": -73.9753806 + }, + "nodes": [ + 42430371, + 3971302312, + 4544486780, + 3977886858, + 42450426 + ], + "geometry": [ + { "lat": 40.7623991, "lon": -73.9786085 }, + { "lat": 40.7623469, "lon": -73.9784842 }, + { "lat": 40.7622285, "lon": -73.9782022 }, + { "lat": 40.7611011, "lon": -73.9755019 }, + { "lat": 40.7610471, "lon": -73.9753806 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46521994, + "bounds": { + "minlat": 40.7573810, + "minlon": -73.9689446, + "maxlat": 40.7583399, + "maxlon": -73.9667020 + }, + "nodes": [ + 42449963, + 10125255953, + 10006361869, + 10006361870, + 10006361874, + 10168544055, + 42442957 + ], + "geometry": [ + { "lat": 40.7583399, "lon": -73.9689446 }, + { "lat": 40.7582782, "lon": -73.9688028 }, + { "lat": 40.7580418, "lon": -73.9682543 }, + { "lat": 40.7578060, "lon": -73.9677004 }, + { "lat": 40.7577545, "lon": -73.9675793 }, + { "lat": 40.7574405, "lon": -73.9668393 }, + { "lat": 40.7573810, "lon": -73.9667020 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 54th Street", + "name:ru": "Восточная 54-я стрит", + "name_1": "East 54 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46521995, + "bounds": { + "minlat": 40.7621951, + "minlon": -73.9670246, + "maxlat": 40.7625775, + "maxlon": -73.9661278 + }, + "nodes": [ + 6177439759, + 6177439756, + 8941697842, + 8915549080 + ], + "geometry": [ + { "lat": 40.7621951, "lon": -73.9661278 }, + { "lat": 40.7622468, "lon": -73.9662490 }, + { "lat": 40.7624118, "lon": -73.9666361 }, + { "lat": 40.7625775, "lon": -73.9670246 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46521998, + "bounds": { + "minlat": 40.7577077, + "minlon": -73.9709896, + "maxlat": 40.7583781, + "maxlon": -73.9694066 + }, + "nodes": [ + 42436707, + 10125255955, + 8872058239, + 11070055772, + 42436705 + ], + "geometry": [ + { "lat": 40.7577077, "lon": -73.9694066 }, + { "lat": 40.7577648, "lon": -73.9695431 }, + { "lat": 40.7579857, "lon": -73.9700699 }, + { "lat": 40.7583321, "lon": -73.9708820 }, + { "lat": 40.7583781, "lon": -73.9709896 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 53rd Street", + "name:ru": "Восточная 53-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46522000, + "bounds": { + "minlat": 40.7560373, + "minlon": -73.9822537, + "maxlat": 40.7573902, + "maxlon": -73.9790227 + }, + "nodes": [ + 42430347, + 3944708055, + 2176936535, + 3944708044, + 42434072 + ], + "geometry": [ + { "lat": 40.7573902, "lon": -73.9822537 }, + { "lat": 40.7573350, "lon": -73.9821235 }, + { "lat": 40.7569769, "lon": -73.9812777 }, + { "lat": 40.7560890, "lon": -73.9791511 }, + { "lat": 40.7560373, "lon": -73.9790227 } + ], + "tags": { + "alt_name": "Little Brazil Street", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "name_1": "West 46 Street", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46522001, + "bounds": { + "minlat": 40.7513685, + "minlon": -73.9703410, + "maxlat": 40.7523790, + "maxlon": -73.9679588 + }, + "nodes": [ + 42434090, + 6175849555, + 4917049630, + 3569749127, + 42434092 + ], + "geometry": [ + { "lat": 40.7523790, "lon": -73.9703410 }, + { "lat": 40.7523379, "lon": -73.9702445 }, + { "lat": 40.7523245, "lon": -73.9702132 }, + { "lat": 40.7514370, "lon": -73.9681142 }, + { "lat": 40.7513685, "lon": -73.9679588 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "East 46th Street", + "name:ru": "Восточная 46-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46522002, + "bounds": { + "minlat": 40.7552045, + "minlon": -73.9728200, + "maxlat": 40.7558700, + "maxlon": -73.9712357 + }, + "nodes": [ + 42438891, + 10125260532, + 4782506039, + 4550867479, + 10165986983, + 42438889 + ], + "geometry": [ + { "lat": 40.7552045, "lon": -73.9712357 }, + { "lat": 40.7552661, "lon": -73.9713827 }, + { "lat": 40.7553349, "lon": -73.9715474 }, + { "lat": 40.7554490, "lon": -73.9718188 }, + { "lat": 40.7558266, "lon": -73.9727165 }, + { "lat": 40.7558700, "lon": -73.9728200 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46522003, + "bounds": { + "minlat": 40.7548770, + "minlon": -73.9707763, + "maxlat": 40.7558333, + "maxlon": -73.9685200 + }, + "nodes": [ + 42449956, + 10125255966, + 4782442659, + 4782442658, + 10168544030, + 42442952 + ], + "geometry": [ + { "lat": 40.7558333, "lon": -73.9707763 }, + { "lat": 40.7557727, "lon": -73.9706286 }, + { "lat": 40.7556560, "lon": -73.9703501 }, + { "lat": 40.7549657, "lon": -73.9687289 }, + { "lat": 40.7549416, "lon": -73.9686723 }, + { "lat": 40.7548770, "lon": -73.9685200 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 50th Street", + "name:ru": "Восточная 50-я стрит", + "name_1": "East 50 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46522005, + "bounds": { + "minlat": 40.7517000, + "minlon": -73.9875372, + "maxlat": 40.7521903, + "maxlon": -73.9863990 + }, + "nodes": [ + 42430314, + 10169532559, + 4770624019, + 4707468275, + 10169532523, + 4707471845, + 42428264 + ], + "geometry": [ + { "lat": 40.7517000, "lon": -73.9863990 }, + { "lat": 40.7517594, "lon": -73.9865370 }, + { "lat": 40.7520416, "lon": -73.9871918 }, + { "lat": 40.7520962, "lon": -73.9873184 }, + { "lat": 40.7521097, "lon": -73.9873501 }, + { "lat": 40.7521693, "lon": -73.9874878 }, + { "lat": 40.7521903, "lon": -73.9875372 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46522006, + "bounds": { + "minlat": 40.7497277, + "minlon": -73.9868280, + "maxlat": 40.7510824, + "maxlon": -73.9836173 + }, + "nodes": [ + 42430311, + 9856196755, + 13718124375, + 6350462397, + 3769557279, + 9965135067, + 42452973 + ], + "geometry": [ + { "lat": 40.7510824, "lon": -73.9868280 }, + { "lat": 40.7510408, "lon": -73.9867294 }, + { "lat": 40.7507935, "lon": -73.9861431 }, + { "lat": 40.7500835, "lon": -73.9844604 }, + { "lat": 40.7499050, "lon": -73.9840376 }, + { "lat": 40.7497860, "lon": -73.9837554 }, + { "lat": 40.7497277, "lon": -73.9836173 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa 12:00-23:00; Su 12:00-21:00)", + "name": "West 36th Street", + "name:ru": "Западная 36-я стрит", + "name_1": "West 36 Street", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46522007, + "bounds": { + "minlat": 40.7527044, + "minlon": -73.9746480, + "maxlat": 40.7533670, + "maxlon": -73.9730626 + }, + "nodes": [ + 42444051, + 10125260524, + 10168841857, + 42444049 + ], + "geometry": [ + { "lat": 40.7527044, "lon": -73.9730626 }, + { "lat": 40.7527557, "lon": -73.9731853 }, + { "lat": 40.7533260, "lon": -73.9745498 }, + { "lat": 40.7533670, "lon": -73.9746480 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "East 45th Street", + "name:ru": "Восточная 45-я стрит", + "note": "thru street", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46522008, + "bounds": { + "minlat": 40.7580455, + "minlon": -73.9883858, + "maxlat": 40.7591595, + "maxlon": -73.9857320 + }, + "nodes": [ + 6597464445, + 5522182777, + 42432697, + 6598535204, + 42432700 + ], + "geometry": [ + { "lat": 40.7580455, "lon": -73.9857320 }, + { "lat": 40.7582527, "lon": -73.9862271 }, + { "lat": 40.7584619, "lon": -73.9867284 }, + { "lat": 40.7591062, "lon": -73.9882592 }, + { "lat": 40.7591595, "lon": -73.9883858 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46522160, + "bounds": { + "minlat": 40.7631130, + "minlon": -73.9711890, + "maxlat": 40.7667670, + "maxlon": -73.9625150 + }, + "nodes": [ + 42429981, + 8112585812, + 10166171499, + 42429980, + 10166171500, + 10125147528, + 42429976, + 10125147527, + 12834723209, + 10125227978, + 42429974, + 596775998, + 10125227977, + 2792781450, + 42429971, + 10171007683, + 7797632759, + 42429970 + ], + "geometry": [ + { "lat": 40.7631130, "lon": -73.9625150 }, + { "lat": 40.7631704, "lon": -73.9626513 }, + { "lat": 40.7640019, "lon": -73.9646247 }, + { "lat": 40.7640570, "lon": -73.9647558 }, + { "lat": 40.7641178, "lon": -73.9648989 }, + { "lat": 40.7646956, "lon": -73.9662593 }, + { "lat": 40.7647390, "lon": -73.9663609 }, + { "lat": 40.7647853, "lon": -73.9664703 }, + { "lat": 40.7653132, "lon": -73.9677227 }, + { "lat": 40.7653296, "lon": -73.9677616 }, + { "lat": 40.7653837, "lon": -73.9678898 }, + { "lat": 40.7654593, "lon": -73.9680718 }, + { "lat": 40.7655003, "lon": -73.9681700 }, + { "lat": 40.7660467, "lon": -73.9694798 }, + { "lat": 40.7660912, "lon": -73.9695848 }, + { "lat": 40.7661400, "lon": -73.9696989 }, + { "lat": 40.7667240, "lon": -73.9710869 }, + { "lat": 40.7667670, "lon": -73.9711890 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 63rd Street", + "name:ru": "Восточная 63-я стрит", + "name_1": "East 63 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46524947, + "bounds": { + "minlat": 40.7784773, + "minlon": -73.9871067, + "maxlat": 40.7791875, + "maxlon": -73.9854454 + }, + "nodes": [ + 42438832, + 9170766761, + 6858150183, + 6858150177, + 9177400756, + 42431000 + ], + "geometry": [ + { "lat": 40.7791875, "lon": -73.9871067 }, + { "lat": 40.7791520, "lon": -73.9870185 }, + { "lat": 40.7789279, "lon": -73.9865084 }, + { "lat": 40.7787034, "lon": -73.9859622 }, + { "lat": 40.7785476, "lon": -73.9855793 }, + { "lat": 40.7784773, "lon": -73.9854454 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 70th Street", + "name:ru": "Западная 70-я стрит", + "name_1": "West 70 Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46524959, + "bounds": { + "minlat": 40.7788958, + "minlon": -73.9883218, + "maxlat": 40.7795541, + "maxlon": -73.9879995 + }, + "nodes": [ + 42438306, + 2346800736, + 9170766758, + 595245836 + ], + "geometry": [ + { "lat": 40.7795541, "lon": -73.9879995 }, + { "lat": 40.7794671, "lon": -73.9880461 }, + { "lat": 40.7793766, "lon": -73.9880954 }, + { "lat": 40.7788958, "lon": -73.9883218 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "maxspeed": "25 mph", + "name": "Riverside Boulevard", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46524969, + "bounds": { + "minlat": 40.7760616, + "minlon": -73.9896122, + "maxlat": 40.7761698, + "maxlon": -73.9893412 + }, + "nodes": [ + 595245859, + 9900513528, + 9915469769 + ], + "geometry": [ + { "lat": 40.7761698, "lon": -73.9896122 }, + { "lat": 40.7761332, "lon": -73.9895175 }, + { "lat": 40.7760616, "lon": -73.9893412 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 65th Street", + "name:ru": "Западная 65-я стрит" + } +}, +{ + "type": "way", + "id": 46524975, + "bounds": { + "minlat": 40.7760235, + "minlon": -73.9883936, + "maxlat": 40.7765109, + "maxlon": -73.9872396 + }, + "nodes": [ + 42430989, + 5117745456, + 10742000967, + 10742000968, + 42438819 + ], + "geometry": [ + { "lat": 40.7760235, "lon": -73.9872396 }, + { "lat": 40.7760820, "lon": -73.9873767 }, + { "lat": 40.7761861, "lon": -73.9876234 }, + { "lat": 40.7763499, "lon": -73.9880119 }, + { "lat": 40.7765109, "lon": -73.9883936 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 66th Street", + "name:ru": "Западная 66-я стрит", + "name_1": "West 66 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46524983, + "bounds": { + "minlat": 40.7791258, + "minlon": -73.9867858, + "maxlat": 40.7799016, + "maxlon": -73.9849751 + }, + "nodes": [ + 42431002, + 9492556556, + 595245883 + ], + "geometry": [ + { "lat": 40.7791258, "lon": -73.9849751 }, + { "lat": 40.7791829, "lon": -73.9851084 }, + { "lat": 40.7799016, "lon": -73.9867858 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 71st Street", + "name:ru": "Западная 71-я стрит" + } +}, +{ + "type": "way", + "id": 46524989, + "bounds": { + "minlat": 40.7799016, + "minlon": -73.9869620, + "maxlat": 40.7799770, + "maxlon": -73.9867858 + }, + "nodes": [ + 595245883, + 595245889 + ], + "geometry": [ + { "lat": 40.7799016, "lon": -73.9867858 }, + { "lat": 40.7799770, "lon": -73.9869620 } + ], + "tags": { + "highway": "pedestrian", + "layer": "1", + "name": "West 71st Street", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 46524998, + "bounds": { + "minlat": 40.7799770, + "minlon": -73.9874605, + "maxlat": 40.7801906, + "maxlon": -73.9869620 + }, + "nodes": [ + 595245889, + 9012718354, + 5619144360 + ], + "geometry": [ + { "lat": 40.7799770, "lon": -73.9869620 }, + { "lat": 40.7801673, "lon": -73.9874062 }, + { "lat": 40.7801906, "lon": -73.9874605 } + ], + "tags": { + "highway": "residential", + "layer": "1", + "maxspeed": "25 mph", + "name": "West 71st Street", + "name:ru": "Западная 71-я стрит" + } +}, +{ + "type": "way", + "id": 46525011, + "bounds": { + "minlat": 40.7716605, + "minlon": -73.9895402, + "maxlat": 40.7728633, + "maxlon": -73.9866770 + }, + "nodes": [ + 42421985, + 7591060180, + 3371304373, + 7791984434, + 432736825, + 11441798961, + 7791984427, + 3371304370, + 9122683604, + 42421982 + ], + "geometry": [ + { "lat": 40.7728633, "lon": -73.9895402 }, + { "lat": 40.7728129, "lon": -73.9894102 }, + { "lat": 40.7725980, "lon": -73.9889002 }, + { "lat": 40.7725673, "lon": -73.9888292 }, + { "lat": 40.7723831, "lon": -73.9883987 }, + { "lat": 40.7722921, "lon": -73.9881833 }, + { "lat": 40.7720002, "lon": -73.9874926 }, + { "lat": 40.7719720, "lon": -73.9874241 }, + { "lat": 40.7717261, "lon": -73.9868399 }, + { "lat": 40.7716605, "lon": -73.9866770 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "1", + "name": "West 61st Street", + "name:ru": "Западная 61-я стрит", + "name_1": "West 61 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46525019, + "bounds": { + "minlat": 40.7745560, + "minlon": -73.9896514, + "maxlat": 40.7751752, + "maxlon": -73.9891964 + }, + "nodes": [ + 595245918, + 10046485491, + 10046485488, + 10098681464, + 595245920 + ], + "geometry": [ + { "lat": 40.7751752, "lon": -73.9891964 }, + { "lat": 40.7751210, "lon": -73.9892363 }, + { "lat": 40.7751094, "lon": -73.9892448 }, + { "lat": 40.7746183, "lon": -73.9896056 }, + { "lat": 40.7745560, "lon": -73.9896514 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Freedom Place South", + "not:name": "Thelonious Monk Circle;Thelonius Monk Circle", + "note": "Thelonious Monk Circle is the segment of West 63rd St extending east to a cul de sac. This block has been incorrectly labeled by that name, possibly due to incorrect naming of the CitiBike station at the corner of West 64th St and Freedom Pl S.", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 46525029, + "bounds": { + "minlat": 40.7747427, + "minlon": -73.9891964, + "maxlat": 40.7751752, + "maxlon": -73.9881703 + }, + "nodes": [ + 42430984, + 7595748174, + 595245918 + ], + "geometry": [ + { "lat": 40.7747427, "lon": -73.9881703 }, + { "lat": 40.7748031, "lon": -73.9883136 }, + { "lat": 40.7751752, "lon": -73.9891964 } + ], + "tags": { + "covered": "no", + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 64th Street", + "name:ru": "Западная 64-я стрит", + "name_1": "West 64 Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46525058, + "bounds": { + "minlat": 40.7620135, + "minlon": -73.9974204, + "maxlat": 40.7621145, + "maxlon": -73.9973436 + }, + "nodes": [ + 42430680, + 10166505404, + 8855911559 + ], + "geometry": [ + { "lat": 40.7621145, "lon": -73.9973436 }, + { "lat": 40.7620516, "lon": -73.9973913 }, + { "lat": 40.7620135, "lon": -73.9974204 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46525065, + "bounds": { + "minlat": 40.7673998, + "minlon": -73.9909124, + "maxlat": 40.7709867, + "maxlon": -73.9823637 + }, + "nodes": [ + 42430747, + 10082554034, + 13207929584, + 3998699941, + 42450341, + 3998699939, + 7246154631, + 7644293501, + 9170766732, + 10082615953, + 42445039, + 2351534216, + 10082615959, + 9170766733, + 7597291064, + 7597291076, + 7597291073, + 11945388421, + 10674102218, + 8314977757, + 7597291079, + 42435716 + ], + "geometry": [ + { "lat": 40.7709867, "lon": -73.9909124 }, + { "lat": 40.7709309, "lon": -73.9907801 }, + { "lat": 40.7699815, "lon": -73.9885223 }, + { "lat": 40.7698477, "lon": -73.9882040 }, + { "lat": 40.7697859, "lon": -73.9880556 }, + { "lat": 40.7697409, "lon": -73.9879519 }, + { "lat": 40.7696153, "lon": -73.9876546 }, + { "lat": 40.7690551, "lon": -73.9863287 }, + { "lat": 40.7686663, "lon": -73.9854126 }, + { "lat": 40.7686483, "lon": -73.9853619 }, + { "lat": 40.7685979, "lon": -73.9852202 }, + { "lat": 40.7685675, "lon": -73.9851370 }, + { "lat": 40.7685511, "lon": -73.9850928 }, + { "lat": 40.7685416, "lon": -73.9850670 }, + { "lat": 40.7684180, "lon": -73.9847672 }, + { "lat": 40.7683659, "lon": -73.9846411 }, + { "lat": 40.7683144, "lon": -73.9845131 }, + { "lat": 40.7681880, "lon": -73.9842070 }, + { "lat": 40.7681080, "lon": -73.9840132 }, + { "lat": 40.7680793, "lon": -73.9839438 }, + { "lat": 40.7674723, "lon": -73.9825166 }, + { "lat": 40.7673998, "lon": -73.9823637 } + ], + "tags": { + "bicycle": "yes", + "highway": "tertiary", + "lanes": "2", + "motor_vehicle": "yes", + "name": "West 58th Street", + "name:ru": "Западная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46526948, + "bounds": { + "minlat": 40.7785248, + "minlon": -73.9883218, + "maxlat": 40.7788958, + "maxlon": -73.9874323 + }, + "nodes": [ + 42438825, + 9899950371, + 8528660211, + 9899950366, + 595245836 + ], + "geometry": [ + { "lat": 40.7785248, "lon": -73.9874323 }, + { "lat": 40.7785583, "lon": -73.9875125 }, + { "lat": 40.7788345, "lon": -73.9881730 }, + { "lat": 40.7788562, "lon": -73.9882256 }, + { "lat": 40.7788958, "lon": -73.9883218 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 69th Street", + "name:ru": "Западная 69-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46526965, + "bounds": { + "minlat": 40.7728633, + "minlon": -73.9905614, + "maxlat": 40.7733062, + "maxlon": -73.9895402 + }, + "nodes": [ + 3533937800, + 8575682946, + 7591060179, + 42421985 + ], + "geometry": [ + { "lat": 40.7733062, "lon": -73.9905614 }, + { "lat": 40.7732667, "lon": -73.9904706 }, + { "lat": 40.7729246, "lon": -73.9896877 }, + { "lat": 40.7728633, "lon": -73.9895402 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 61st Street", + "name:ru": "Западная 61-я стрит", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46529270, + "bounds": { + "minlat": 40.7739898, + "minlon": -73.9914364, + "maxlat": 40.7744841, + "maxlon": -73.9902550 + }, + "nodes": [ + 595254571, + 2294828183, + 7340767828, + 7659477360, + 7333509728, + 1672106385 + ], + "geometry": [ + { "lat": 40.7744841, "lon": -73.9914364 }, + { "lat": 40.7744473, "lon": -73.9913409 }, + { "lat": 40.7741833, "lon": -73.9907183 }, + { "lat": 40.7741160, "lon": -73.9905569 }, + { "lat": 40.7740227, "lon": -73.9903375 }, + { "lat": 40.7739898, "lon": -73.9902550 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 62nd Street", + "name:ru": "Западная 62-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46529274, + "bounds": { + "minlat": 40.7733062, + "minlon": -73.9920933, + "maxlat": 40.7739469, + "maxlon": -73.9905614 + }, + "nodes": [ + 3533937800, + 8575682947, + 7333509693, + 7340767829, + 11591924805, + 595254573 + ], + "geometry": [ + { "lat": 40.7733062, "lon": -73.9905614 }, + { "lat": 40.7733444, "lon": -73.9906492 }, + { "lat": 40.7735618, "lon": -73.9911489 }, + { "lat": 40.7735700, "lon": -73.9911677 }, + { "lat": 40.7739057, "lon": -73.9919962 }, + { "lat": 40.7739469, "lon": -73.9920933 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 61st Street", + "name:ru": "Западная 61-я стрит", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46538335, + "bounds": { + "minlat": 40.7591757, + "minlon": -73.9794746, + "maxlat": 40.7603266, + "maxlon": -73.9767414 + }, + "nodes": [ + 42440452, + 3977886237, + 805764995, + 4549080330, + 805764998, + 5475605301 + ], + "geometry": [ + { "lat": 40.7591757, "lon": -73.9767414 }, + { "lat": 40.7592298, "lon": -73.9768603 }, + { "lat": 40.7596414, "lon": -73.9778473 }, + { "lat": 40.7597079, "lon": -73.9780043 }, + { "lat": 40.7597404, "lon": -73.9780799 }, + { "lat": 40.7603266, "lon": -73.9794746 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete:plates", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46538371, + "bounds": { + "minlat": 40.7629646, + "minlon": -73.9829033, + "maxlat": 40.7633820, + "maxlon": -73.9818975 + }, + "nodes": [ + 42440012, + 3977886877, + 8785244246, + 4322008113, + 42428313 + ], + "geometry": [ + { "lat": 40.7629646, "lon": -73.9818975 }, + { "lat": 40.7630218, "lon": -73.9820336 }, + { "lat": 40.7633167, "lon": -73.9827350 }, + { "lat": 40.7633301, "lon": -73.9827672 }, + { "lat": 40.7633820, "lon": -73.9829033 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 53rd Street", + "name:ru": "Западная 53-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46538375, + "bounds": { + "minlat": 40.7680051, + "minlon": -73.9959717, + "maxlat": 40.7680917, + "maxlon": -73.9957629 + }, + "nodes": [ + 12153915853, + 11017186435 + ], + "geometry": [ + { "lat": 40.7680917, "lon": -73.9959717 }, + { "lat": 40.7680051, "lon": -73.9957629 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 52nd Street", + "name:ru": "Западная 52-я стрит", + "oneway": "yes", + "sidewalk": "both", + "surface": "concrete", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46538382, + "bounds": { + "minlat": 40.7707028, + "minlon": -73.9946779, + "maxlat": 40.7708054, + "maxlon": -73.9944205 + }, + "nodes": [ + 61273001, + 61273004 + ], + "geometry": [ + { "lat": 40.7708054, "lon": -73.9946779 }, + { "lat": 40.7707028, "lon": -73.9944205 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 56th Street", + "name:ru": "Западная 56-я стрит", + "name_1": "West 56 Street", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46538396, + "bounds": { + "minlat": 40.7719754, + "minlon": -73.9901846, + "maxlat": 40.7722404, + "maxlon": -73.9899959 + }, + "nodes": [ + 595269619, + 7591060183, + 2061592973 + ], + "geometry": [ + { "lat": 40.7719754, "lon": -73.9901846 }, + { "lat": 40.7721783, "lon": -73.9900409 }, + { "lat": 40.7722404, "lon": -73.9899959 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lit": "yes", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46538405, + "bounds": { + "minlat": 40.7709867, + "minlon": -73.9909124, + "maxlat": 40.7712839, + "maxlon": -73.9907032 + }, + "nodes": [ + 595269639, + 8751705874, + 7637834796, + 42430747 + ], + "geometry": [ + { "lat": 40.7712839, "lon": -73.9907032 }, + { "lat": 40.7711396, "lon": -73.9908077 }, + { "lat": 40.7710510, "lon": -73.9908722 }, + { "lat": 40.7709867, "lon": -73.9909124 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "turn:lanes:forward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46538429, + "bounds": { + "minlat": 40.7704036, + "minlon": -73.9904508, + "maxlat": 40.7716133, + "maxlon": -73.9875948 + }, + "nodes": [ + 42440935, + 9441141807, + 12110077274, + 12110077271, + 11608958693, + 42430749 + ], + "geometry": [ + { "lat": 40.7704036, "lon": -73.9875948 }, + { "lat": 40.7704684, "lon": -73.9877473 }, + { "lat": 40.7706665, "lon": -73.9882151 }, + { "lat": 40.7708429, "lon": -73.9886316 }, + { "lat": 40.7715584, "lon": -73.9903210 }, + { "lat": 40.7716133, "lon": -73.9904508 } + ], + "tags": { + "highway": "tertiary", + "lit": "yes", + "name": "West 59th Street", + "name:ru": "Западная 59-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46546728, + "bounds": { + "minlat": 40.7854887, + "minlon": -73.9841179, + "maxlat": 40.7856546, + "maxlon": -73.9840057 + }, + "nodes": [ + 595295436, + 595295438 + ], + "geometry": [ + { "lat": 40.7856546, "lon": -73.9840057 }, + { "lat": 40.7854887, "lon": -73.9841179 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46546732, + "bounds": { + "minlat": 40.7815580, + "minlon": -73.9869732, + "maxlat": 40.7835849, + "maxlon": -73.9854512 + }, + "nodes": [ + 10873903275, + 61269411, + 593861325, + 7910007166, + 12162590072, + 61269413 + ], + "geometry": [ + { "lat": 40.7835849, "lon": -73.9854512 }, + { "lat": 40.7818906, "lon": -73.9866926 }, + { "lat": 40.7818014, "lon": -73.9867605 }, + { "lat": 40.7817222, "lon": -73.9868241 }, + { "lat": 40.7816373, "lon": -73.9868969 }, + { "lat": 40.7815580, "lon": -73.9869732 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46546737, + "bounds": { + "minlat": 40.7849764, + "minlon": -73.9828455, + "maxlat": 40.7850603, + "maxlon": -73.9826519 + }, + "nodes": [ + 42422592, + 595295501, + 7912855687 + ], + "geometry": [ + { "lat": 40.7849764, "lon": -73.9826519 }, + { "lat": 40.7850294, "lon": -73.9827753 }, + { "lat": 40.7850603, "lon": -73.9828455 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West 79th Street", + "name:ru": "Западная 79-я стрит", + "name_1": "West 79 Street", + "turn:lanes:backward": "through|through;right", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46546758, + "bounds": { + "minlat": 40.7854386, + "minlon": -73.9839963, + "maxlat": 40.7856036, + "maxlon": -73.9838819 + }, + "nodes": [ + 595295538, + 595295542 + ], + "geometry": [ + { "lat": 40.7854386, "lon": -73.9839963 }, + { "lat": 40.7856036, "lon": -73.9838819 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46546766, + "bounds": { + "minlat": 40.7891168, + "minlon": -73.9822770, + "maxlat": 40.7942649, + "maxlon": -73.9784713 + }, + "nodes": [ + 61240933, + 7910052655, + 7910052646, + 7910052665, + 61243000, + 7910052656, + 7910052647, + 7910052666, + 42458418, + 7910052658, + 9168918184, + 9168918185, + 7910052660, + 7910052651, + 7910052641, + 7910052643, + 7910052663, + 61243002, + 7910052654, + 7910052645, + 7908637458, + 61243003, + 7908637461, + 7908637464, + 61243004, + 7908637467, + 61243005, + 7908637470, + 2029349824, + 595314118 + ], + "geometry": [ + { "lat": 40.7891168, "lon": -73.9822770 }, + { "lat": 40.7892988, "lon": -73.9821903 }, + { "lat": 40.7894620, "lon": -73.9821096 }, + { "lat": 40.7896298, "lon": -73.9820233 }, + { "lat": 40.7898090, "lon": -73.9819284 }, + { "lat": 40.7899823, "lon": -73.9818334 }, + { "lat": 40.7901469, "lon": -73.9817414 }, + { "lat": 40.7903188, "lon": -73.9816401 }, + { "lat": 40.7904683, "lon": -73.9815530 }, + { "lat": 40.7906449, "lon": -73.9814458 }, + { "lat": 40.7908981, "lon": -73.9812855 }, + { "lat": 40.7911476, "lon": -73.9811221 }, + { "lat": 40.7913908, "lon": -73.9809546 }, + { "lat": 40.7916380, "lon": -73.9807841 }, + { "lat": 40.7918727, "lon": -73.9806143 }, + { "lat": 40.7920990, "lon": -73.9804432 }, + { "lat": 40.7922809, "lon": -73.9803119 }, + { "lat": 40.7924422, "lon": -73.9801848 }, + { "lat": 40.7925787, "lon": -73.9800746 }, + { "lat": 40.7927397, "lon": -73.9799447 }, + { "lat": 40.7928950, "lon": -73.9798136 }, + { "lat": 40.7930384, "lon": -73.9796921 }, + { "lat": 40.7931858, "lon": -73.9795621 }, + { "lat": 40.7933320, "lon": -73.9794279 }, + { "lat": 40.7935123, "lon": -73.9792603 }, + { "lat": 40.7936546, "lon": -73.9791219 }, + { "lat": 40.7938066, "lon": -73.9789659 }, + { "lat": 40.7939469, "lon": -73.9788211 }, + { "lat": 40.7940864, "lon": -73.9786712 }, + { "lat": 40.7942649, "lon": -73.9784713 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46562939, + "bounds": { + "minlat": 40.8134277, + "minlon": -73.9624360, + "maxlat": 40.8140511, + "maxlon": -73.9618650 + }, + "nodes": [ + 3269867944, + 7732571982, + 12015534421, + 6868145369, + 7732571987, + 6868145376, + 42441095, + 7108430032, + 42441080 + ], + "geometry": [ + { "lat": 40.8134277, "lon": -73.9624360 }, + { "lat": 40.8135995, "lon": -73.9622631 }, + { "lat": 40.8136366, "lon": -73.9622219 }, + { "lat": 40.8136829, "lon": -73.9621706 }, + { "lat": 40.8137878, "lon": -73.9620472 }, + { "lat": 40.8138046, "lon": -73.9620284 }, + { "lat": 40.8138233, "lon": -73.9620111 }, + { "lat": 40.8138477, "lon": -73.9619916 }, + { "lat": 40.8140511, "lon": -73.9618650 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46562972, + "bounds": { + "minlat": 40.8086692, + "minlon": -73.9653822, + "maxlat": 40.8089155, + "maxlon": -73.9645365 + }, + "nodes": [ + 595314036, + 7732384873, + 7732384872, + 7732384874, + 7620540915, + 7732384871, + 7732384876, + 7732384870, + 7732384875, + 7732384869, + 10165984408, + 7732384868, + 595314040 + ], + "geometry": [ + { "lat": 40.8089155, "lon": -73.9645365 }, + { "lat": 40.8088353, "lon": -73.9646847 }, + { "lat": 40.8087981, "lon": -73.9647577 }, + { "lat": 40.8087601, "lon": -73.9648479 }, + { "lat": 40.8087399, "lon": -73.9648994 }, + { "lat": 40.8087185, "lon": -73.9649620 }, + { "lat": 40.8087081, "lon": -73.9649945 }, + { "lat": 40.8086989, "lon": -73.9650296 }, + { "lat": 40.8086889, "lon": -73.9650770 }, + { "lat": 40.8086784, "lon": -73.9651446 }, + { "lat": 40.8086764, "lon": -73.9651606 }, + { "lat": 40.8086692, "lon": -73.9652678 }, + { "lat": 40.8086847, "lon": -73.9653822 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "Claremont Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5126299", + "wikipedia": "en:Claremont Avenue" + } +}, +{ + "type": "way", + "id": 46563041, + "bounds": { + "minlat": 40.8016452, + "minlon": -73.9700504, + "maxlat": 40.8022679, + "maxlon": -73.9685741 + }, + "nodes": [ + 42421749, + 9177516871, + 8831843004, + 7785782268, + 42421751 + ], + "geometry": [ + { "lat": 40.8016452, "lon": -73.9685741 }, + { "lat": 40.8016908, "lon": -73.9686729 }, + { "lat": 40.8022202, "lon": -73.9699373 }, + { "lat": 40.8022463, "lon": -73.9699992 }, + { "lat": 40.8022679, "lon": -73.9700504 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46563061, + "bounds": { + "minlat": 40.8016452, + "minlon": -73.9685741, + "maxlat": 40.8023404, + "maxlon": -73.9681138 + }, + "nodes": [ + 42431121, + 6900903327, + 11548264834, + 42421749 + ], + "geometry": [ + { "lat": 40.8023404, "lon": -73.9681138 }, + { "lat": 40.8022784, "lon": -73.9681488 }, + { "lat": 40.8017296, "lon": -73.9685174 }, + { "lat": 40.8016452, "lon": -73.9685741 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46563135, + "bounds": { + "minlat": 40.7992880, + "minlon": -73.9748876, + "maxlat": 40.8091580, + "maxlon": -73.9681085 + }, + "nodes": [ + 42458466, + 61247392, + 7908637466, + 7908637463, + 61249174, + 7908637460, + 7908637457, + 61249175, + 7908637454, + 7908669918, + 1889208625, + 61249177, + 7908669935, + 7908669932, + 7908669929, + 61249178, + 7908669926, + 7908669923, + 7908669920, + 7908669916, + 7908669912, + 7908669908, + 7908669937, + 42458473, + 7908669913, + 7908669938, + 7908669909, + 7908669917, + 7908669921, + 61249179, + 7908669924, + 7908669927, + 7908669930, + 7908669933, + 7908669936, + 7908669907, + 7908669911, + 7908669915, + 7908669919, + 7908669922, + 61249181, + 7908669925, + 7908669928, + 7908669931, + 7908669934, + 7908637469, + 61249182, + 7908637444, + 7908637447, + 7908637450, + 7908637462, + 7908637465, + 7908637468, + 7908637443, + 61249184, + 7908637446, + 7908637449, + 61257626 + ], + "geometry": [ + { "lat": 40.7992880, "lon": -73.9748876 }, + { "lat": 40.7994592, "lon": -73.9748256 }, + { "lat": 40.7996566, "lon": -73.9747464 }, + { "lat": 40.7998605, "lon": -73.9746583 }, + { "lat": 40.8000614, "lon": -73.9745641 }, + { "lat": 40.8002502, "lon": -73.9744673 }, + { "lat": 40.8004450, "lon": -73.9743605 }, + { "lat": 40.8006411, "lon": -73.9742480 }, + { "lat": 40.8008279, "lon": -73.9741374 }, + { "lat": 40.8010186, "lon": -73.9740187 }, + { "lat": 40.8016081, "lon": -73.9736367 }, + { "lat": 40.8016951, "lon": -73.9735819 }, + { "lat": 40.8018572, "lon": -73.9734719 }, + { "lat": 40.8020083, "lon": -73.9733681 }, + { "lat": 40.8021832, "lon": -73.9732459 }, + { "lat": 40.8023444, "lon": -73.9731319 }, + { "lat": 40.8025017, "lon": -73.9730248 }, + { "lat": 40.8026473, "lon": -73.9729207 }, + { "lat": 40.8028086, "lon": -73.9728057 }, + { "lat": 40.8029658, "lon": -73.9726931 }, + { "lat": 40.8031247, "lon": -73.9725778 }, + { "lat": 40.8033025, "lon": -73.9724512 }, + { "lat": 40.8034662, "lon": -73.9723351 }, + { "lat": 40.8036231, "lon": -73.9722212 }, + { "lat": 40.8037655, "lon": -73.9721185 }, + { "lat": 40.8039440, "lon": -73.9719866 }, + { "lat": 40.8041087, "lon": -73.9718653 }, + { "lat": 40.8042693, "lon": -73.9717441 }, + { "lat": 40.8044437, "lon": -73.9716114 }, + { "lat": 40.8045999, "lon": -73.9714929 }, + { "lat": 40.8047495, "lon": -73.9713776 }, + { "lat": 40.8049060, "lon": -73.9712585 }, + { "lat": 40.8050658, "lon": -73.9711329 }, + { "lat": 40.8052144, "lon": -73.9710166 }, + { "lat": 40.8053784, "lon": -73.9708867 }, + { "lat": 40.8055248, "lon": -73.9707711 }, + { "lat": 40.8057018, "lon": -73.9706318 }, + { "lat": 40.8058525, "lon": -73.9705157 }, + { "lat": 40.8059965, "lon": -73.9704032 }, + { "lat": 40.8061625, "lon": -73.9702701 }, + { "lat": 40.8063472, "lon": -73.9701252 }, + { "lat": 40.8064855, "lon": -73.9700184 }, + { "lat": 40.8066458, "lon": -73.9698948 }, + { "lat": 40.8068017, "lon": -73.9697720 }, + { "lat": 40.8069577, "lon": -73.9696529 }, + { "lat": 40.8071195, "lon": -73.9695310 }, + { "lat": 40.8072829, "lon": -73.9694072 }, + { "lat": 40.8074480, "lon": -73.9692847 }, + { "lat": 40.8076030, "lon": -73.9691739 }, + { "lat": 40.8077640, "lon": -73.9690573 }, + { "lat": 40.8080100, "lon": -73.9688800 }, + { "lat": 40.8081712, "lon": -73.9687668 }, + { "lat": 40.8083335, "lon": -73.9686553 }, + { "lat": 40.8084961, "lon": -73.9685451 }, + { "lat": 40.8086614, "lon": -73.9684344 }, + { "lat": 40.8088247, "lon": -73.9683259 }, + { "lat": 40.8089850, "lon": -73.9682222 }, + { "lat": 40.8091580, "lon": -73.9681085 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "maxweight:signed": "yes", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46563137, + "bounds": { + "minlat": 40.7988569, + "minlon": -73.9750417, + "maxlat": 40.7992880, + "maxlon": -73.9748876 + }, + "nodes": [ + 595314111, + 42458466 + ], + "geometry": [ + { "lat": 40.7988569, "lon": -73.9750417 }, + { "lat": 40.7992880, "lon": -73.9748876 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46563139, + "bounds": { + "minlat": 40.7989104, + "minlon": -73.9752149, + "maxlat": 40.7993288, + "maxlon": -73.9750593 + }, + "nodes": [ + 595314021, + 595314112 + ], + "geometry": [ + { "lat": 40.7993288, "lon": -73.9750593 }, + { "lat": 40.7989104, "lon": -73.9752149 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46563143, + "bounds": { + "minlat": 40.7969242, + "minlon": -73.9760626, + "maxlat": 40.7989104, + "maxlon": -73.9752149 + }, + "nodes": [ + 595314112, + 7908575880, + 7908589084, + 9168918380, + 3917286380 + ], + "geometry": [ + { "lat": 40.7989104, "lon": -73.9752149 }, + { "lat": 40.7978679, "lon": -73.9756269 }, + { "lat": 40.7971683, "lon": -73.9759346 }, + { "lat": 40.7970553, "lon": -73.9759905 }, + { "lat": 40.7969242, "lon": -73.9760626 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46563166, + "bounds": { + "minlat": 40.7959475, + "minlon": -73.9751800, + "maxlat": 40.7961187, + "maxlon": -73.9748911 + }, + "nodes": [ + 595314114, + 595314119 + ], + "geometry": [ + { "lat": 40.7959475, "lon": -73.9751800 }, + { "lat": 40.7961187, "lon": -73.9748911 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "secondary", + "layer": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46563171, + "bounds": { + "minlat": 40.7943548, + "minlon": -73.9786013, + "maxlat": 40.7945998, + "maxlon": -73.9783159 + }, + "nodes": [ + 61261108, + 595314116 + ], + "geometry": [ + { "lat": 40.7945998, "lon": -73.9783159 }, + { "lat": 40.7943548, "lon": -73.9786013 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46563174, + "bounds": { + "minlat": 40.7873443, + "minlon": -73.9831775, + "maxlat": 40.7943548, + "maxlon": -73.9786013 + }, + "nodes": [ + 595314116, + 61261110, + 7908594129, + 61261111, + 7908594124, + 61261113, + 7908594118, + 61261114, + 7908594168, + 7910007169, + 61261115, + 61269389, + 7910007153, + 61269390, + 7910007160, + 7910007167, + 61269391, + 7910007151, + 61269392, + 7910007158, + 7910007165, + 61269393, + 7910007149, + 7910007157, + 61269394, + 7910007164, + 61269395, + 7910007148, + 61269397, + 7910007156, + 7910007163, + 61269398, + 7910007147, + 61269399, + 61269400 + ], + "geometry": [ + { "lat": 40.7943548, "lon": -73.9786013 }, + { "lat": 40.7941940, "lon": -73.9787812 }, + { "lat": 40.7940229, "lon": -73.9789676 }, + { "lat": 40.7938546, "lon": -73.9791418 }, + { "lat": 40.7936811, "lon": -73.9793160 }, + { "lat": 40.7935056, "lon": -73.9794865 }, + { "lat": 40.7933265, "lon": -73.9796506 }, + { "lat": 40.7931469, "lon": -73.9798099 }, + { "lat": 40.7929631, "lon": -73.9799660 }, + { "lat": 40.7927810, "lon": -73.9801165 }, + { "lat": 40.7925970, "lon": -73.9802673 }, + { "lat": 40.7924142, "lon": -73.9804129 }, + { "lat": 40.7922242, "lon": -73.9805575 }, + { "lat": 40.7920364, "lon": -73.9807007 }, + { "lat": 40.7918464, "lon": -73.9808415 }, + { "lat": 40.7916562, "lon": -73.9809768 }, + { "lat": 40.7914647, "lon": -73.9811101 }, + { "lat": 40.7912727, "lon": -73.9812412 }, + { "lat": 40.7910799, "lon": -73.9813706 }, + { "lat": 40.7908835, "lon": -73.9814967 }, + { "lat": 40.7906903, "lon": -73.9816178 }, + { "lat": 40.7904921, "lon": -73.9817391 }, + { "lat": 40.7902955, "lon": -73.9818551 }, + { "lat": 40.7900937, "lon": -73.9819696 }, + { "lat": 40.7898942, "lon": -73.9820798 }, + { "lat": 40.7896953, "lon": -73.9821840 }, + { "lat": 40.7894930, "lon": -73.9822870 }, + { "lat": 40.7892887, "lon": -73.9823868 }, + { "lat": 40.7890849, "lon": -73.9824831 }, + { "lat": 40.7888784, "lon": -73.9825767 }, + { "lat": 40.7886751, "lon": -73.9826657 }, + { "lat": 40.7884690, "lon": -73.9827527 }, + { "lat": 40.7882646, "lon": -73.9828357 }, + { "lat": 40.7880541, "lon": -73.9829146 }, + { "lat": 40.7873443, "lon": -73.9831775 } + ], + "tags": { + "destination:lanes": "none|none|none;79th Street;Boat Basin;Metropolitan Museum of Art;American Museum of Natural History;Children's Museum Of Manhattan;JCC in Manhattan;Lincoln Center;New York Historical Society;New York Institute of Technology", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46563178, + "bounds": { + "minlat": 40.7945118, + "minlon": -73.9781841, + "maxlat": 40.7956850, + "maxlon": -73.9767319 + }, + "nodes": [ + 595314117, + 7908637455, + 61243007, + 42425552, + 7908637456, + 7908637453, + 42458435 + ], + "geometry": [ + { "lat": 40.7945118, "lon": -73.9781841 }, + { "lat": 40.7946473, "lon": -73.9780197 }, + { "lat": 40.7947897, "lon": -73.9778434 }, + { "lat": 40.7951692, "lon": -73.9773685 }, + { "lat": 40.7953078, "lon": -73.9771973 }, + { "lat": 40.7954533, "lon": -73.9770038 }, + { "lat": 40.7956850, "lon": -73.9767319 } + ], + "tags": { + "destination:lanes": "none|none|none;West 96th Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "turn:lanes": "none|none|through;slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46563181, + "bounds": { + "minlat": 40.7942649, + "minlon": -73.9784713, + "maxlat": 40.7945118, + "maxlon": -73.9781841 + }, + "nodes": [ + 595314118, + 7908637452, + 595314117 + ], + "geometry": [ + { "lat": 40.7942649, "lon": -73.9784713 }, + { "lat": 40.7943615, "lon": -73.9783615 }, + { "lat": 40.7945118, "lon": -73.9781841 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46568279, + "bounds": { + "minlat": 40.8270636, + "minlon": -73.9549112, + "maxlat": 40.8272591, + "maxlon": -73.9540184 + }, + "nodes": [ + 595337981, + 595337984, + 595337986, + 595337989, + 1332843726 + ], + "geometry": [ + { "lat": 40.8272591, "lon": -73.9540184 }, + { "lat": 40.8272396, "lon": -73.9542071 }, + { "lat": 40.8271950, "lon": -73.9544164 }, + { "lat": 40.8270935, "lon": -73.9547758 }, + { "lat": 40.8270636, "lon": -73.9549112 } + ], + "tags": { + "bicycle": "dismount", + "highway": "service", + "layer": "2", + "name": "Riverbank Park Access Road", + "name_1": "W 145 St", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West 145th", + "tiger:name_base_1": "145", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46568285, + "bounds": { + "minlat": 40.8272014, + "minlon": -73.9540184, + "maxlat": 40.8273249, + "maxlon": -73.9523630 + }, + "nodes": [ + 595337997, + 595338001, + 595338007, + 595338010, + 595337981 + ], + "geometry": [ + { "lat": 40.8272014, "lon": -73.9523630 }, + { "lat": 40.8272721, "lon": -73.9525495 }, + { "lat": 40.8273208, "lon": -73.9527802 }, + { "lat": 40.8273249, "lon": -73.9530001 }, + { "lat": 40.8272591, "lon": -73.9540184 } + ], + "tags": { + "bicycle": "dismount", + "bridge": "yes", + "highway": "service", + "layer": "2", + "name": "Riverbank Park Access Road", + "name_1": "W 145 St", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West 145th", + "tiger:name_base_1": "145", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46568293, + "bounds": { + "minlat": 40.8229028, + "minlon": -73.9574874, + "maxlat": 40.8287140, + "maxlon": -73.9523880 + }, + "nodes": [ + 595338023, + 7907957259, + 7907957235, + 7907957255, + 7907957278, + 7907957227, + 7907957251, + 7907957274, + 254342117, + 7907957222, + 7907957246, + 8882666913 + ], + "geometry": [ + { "lat": 40.8287140, "lon": -73.9523880 }, + { "lat": 40.8285535, "lon": -73.9525316 }, + { "lat": 40.8266776, "lon": -73.9542760 }, + { "lat": 40.8254311, "lon": -73.9554342 }, + { "lat": 40.8252551, "lon": -73.9555979 }, + { "lat": 40.8250688, "lon": -73.9557671 }, + { "lat": 40.8248882, "lon": -73.9559277 }, + { "lat": 40.8247171, "lon": -73.9560734 }, + { "lat": 40.8245242, "lon": -73.9562316 }, + { "lat": 40.8243479, "lon": -73.9563712 }, + { "lat": 40.8241665, "lon": -73.9565124 }, + { "lat": 40.8229028, "lon": -73.9574874 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46568300, + "bounds": { + "minlat": 40.8286521, + "minlon": -73.9522722, + "maxlat": 40.8292599, + "maxlon": -73.9517862 + }, + "nodes": [ + 595338043, + 595338046, + 7907957276, + 2830276527 + ], + "geometry": [ + { "lat": 40.8286521, "lon": -73.9522722 }, + { "lat": 40.8288763, "lon": -73.9520791 }, + { "lat": 40.8290698, "lon": -73.9519275 }, + { "lat": 40.8292599, "lon": -73.9517862 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46568312, + "bounds": { + "minlat": 40.8200228, + "minlon": -73.9589033, + "maxlat": 40.8213327, + "maxlon": -73.9579208 + }, + "nodes": [ + 2383895311, + 595313977, + 10128931543, + 10128878992, + 42434105 + ], + "geometry": [ + { "lat": 40.8213327, "lon": -73.9579208 }, + { "lat": 40.8209805, "lon": -73.9582221 }, + { "lat": 40.8206298, "lon": -73.9584715 }, + { "lat": 40.8200649, "lon": -73.9588734 }, + { "lat": 40.8200228, "lon": -73.9589033 } + ], + "tags": { + "bicycle": "designated", + "cycleway:right": "lane", + "highway": "unclassified", + "lit": "no", + "maxspeed": "25 mph", + "name": "12th Avenue", + "name_1": "12 Avenue", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46568321, + "bounds": { + "minlat": 40.8169581, + "minlon": -73.9611187, + "maxlat": 40.8210863, + "maxlon": -73.9577376 + }, + "nodes": [ + 595314033, + 595320307, + 595320332, + 5269902785, + 5269902784, + 595320335, + 595313978, + 2505004938, + 8746375051, + 4954151929 + ], + "geometry": [ + { "lat": 40.8169581, "lon": -73.9611187 }, + { "lat": 40.8206258, "lon": -73.9584210 }, + { "lat": 40.8208082, "lon": -73.9582824 }, + { "lat": 40.8208649, "lon": -73.9582186 }, + { "lat": 40.8209080, "lon": -73.9581558 }, + { "lat": 40.8209318, "lon": -73.9581142 }, + { "lat": 40.8209709, "lon": -73.9580421 }, + { "lat": 40.8210142, "lon": -73.9579417 }, + { "lat": 40.8210369, "lon": -73.9578864 }, + { "lat": 40.8210863, "lon": -73.9577376 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "bridge": "yes", + "hgv": "no", + "highway": "secondary", + "layer": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46568326, + "bounds": { + "minlat": 40.8229413, + "minlon": -73.9556565, + "maxlat": 40.8234352, + "maxlon": -73.9553927 + }, + "nodes": [ + 595338100, + 10055059296 + ], + "geometry": [ + { "lat": 40.8229413, "lon": -73.9556565 }, + { "lat": 40.8234352, "lon": -73.9553927 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "bridge": "yes", + "hgv": "no", + "highway": "secondary", + "layer": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "tiger:cfcc": "A45;A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_base_1": "Riverside", + "tiger:name_direction_suffix_1": "E", + "tiger:name_type": "Dr", + "tiger:name_type_1": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46568332, + "bounds": { + "minlat": 40.8227976, + "minlon": -73.9557251, + "maxlat": 40.8229413, + "maxlon": -73.9556565 + }, + "nodes": [ + 595338090, + 595338100 + ], + "geometry": [ + { "lat": 40.8227976, "lon": -73.9557251 }, + { "lat": 40.8229413, "lon": -73.9556565 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "bridge": "yes", + "hgv": "no", + "highway": "secondary", + "layer": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "tiger:cfcc": "A45; A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_base_1": "Riverside", + "tiger:name_direction_suffix_1": "E", + "tiger:name_type": "Dr", + "tiger:name_type_1": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46568339, + "bounds": { + "minlat": 40.8168282, + "minlon": -73.9628934, + "maxlat": 40.8178802, + "maxlon": -73.9618010 + }, + "nodes": [ + 595338029, + 7907957229, + 7908575873, + 254484074 + ], + "geometry": [ + { "lat": 40.8178802, "lon": -73.9618010 }, + { "lat": 40.8171721, "lon": -73.9625383 }, + { "lat": 40.8169997, "lon": -73.9627189 }, + { "lat": 40.8168282, "lon": -73.9628934 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46568381, + "bounds": { + "minlat": 40.8178287, + "minlon": -73.9616777, + "maxlat": 40.8286521, + "maxlon": -73.9522722 + }, + "nodes": [ + 595314041, + 7907988092, + 7907957240, + 7907957264, + 595314042, + 7907988087, + 7907957234, + 7907957258, + 595314043, + 7907957281, + 7907957230, + 7907957254, + 42448792, + 7907957277, + 7907957226, + 7908575881, + 42424698, + 7907988085, + 7907957262, + 7907957238, + 42458508, + 7907988090, + 7907957267, + 7907957243, + 7907957231, + 42458514, + 7907957282, + 595338043 + ], + "geometry": [ + { "lat": 40.8178287, "lon": -73.9616777 }, + { "lat": 40.8179521, "lon": -73.9615489 }, + { "lat": 40.8181195, "lon": -73.9613751 }, + { "lat": 40.8182754, "lon": -73.9612144 }, + { "lat": 40.8184458, "lon": -73.9610442 }, + { "lat": 40.8186182, "lon": -73.9608752 }, + { "lat": 40.8187936, "lon": -73.9607122 }, + { "lat": 40.8189758, "lon": -73.9605475 }, + { "lat": 40.8203318, "lon": -73.9593465 }, + { "lat": 40.8205140, "lon": -73.9591902 }, + { "lat": 40.8206997, "lon": -73.9590353 }, + { "lat": 40.8208814, "lon": -73.9588888 }, + { "lat": 40.8210688, "lon": -73.9587420 }, + { "lat": 40.8212480, "lon": -73.9586023 }, + { "lat": 40.8214046, "lon": -73.9584820 }, + { "lat": 40.8225604, "lon": -73.9575920 }, + { "lat": 40.8232976, "lon": -73.9570228 }, + { "lat": 40.8240541, "lon": -73.9564400 }, + { "lat": 40.8242509, "lon": -73.9562890 }, + { "lat": 40.8244357, "lon": -73.9561418 }, + { "lat": 40.8246157, "lon": -73.9559951 }, + { "lat": 40.8248057, "lon": -73.9558329 }, + { "lat": 40.8249894, "lon": -73.9556720 }, + { "lat": 40.8251720, "lon": -73.9555047 }, + { "lat": 40.8253448, "lon": -73.9553456 }, + { "lat": 40.8266200, "lon": -73.9541578 }, + { "lat": 40.8285135, "lon": -73.9523968 }, + { "lat": 40.8286521, "lon": -73.9522722 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46577947, + "bounds": { + "minlat": 40.8352739, + "minlon": -73.9440835, + "maxlat": 40.8353625, + "maxlon": -73.9438727 + }, + "nodes": [ + 561035374, + 2541754781, + 42427086 + ], + "geometry": [ + { "lat": 40.8352739, "lon": -73.9438727 }, + { "lat": 40.8353062, "lon": -73.9439545 }, + { "lat": 40.8353625, "lon": -73.9440835 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "West 159th Street", + "name_1": "West 159 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "159th", + "tiger:name_base_1": "159", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 46577948, + "bounds": { + "minlat": 40.8377581, + "minlon": -73.9472602, + "maxlat": 40.8379956, + "maxlon": -73.9471227 + }, + "nodes": [ + 587934079, + 587934076, + 9935928807, + 587934073 + ], + "geometry": [ + { "lat": 40.8379956, "lon": -73.9472602 }, + { "lat": 40.8379248, "lon": -73.9471988 }, + { "lat": 40.8378480, "lon": -73.9471671 }, + { "lat": 40.8377581, "lon": -73.9471227 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46577949, + "bounds": { + "minlat": 40.8377581, + "minlon": -73.9471227, + "maxlat": 40.8382107, + "maxlon": -73.9469759 + }, + "nodes": [ + 587934073, + 595352896, + 595352897 + ], + "geometry": [ + { "lat": 40.8377581, "lon": -73.9471227 }, + { "lat": 40.8379595, "lon": -73.9470557 }, + { "lat": 40.8382107, "lon": -73.9469759 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46577951, + "bounds": { + "minlat": 40.8375532, + "minlon": -73.9478771, + "maxlat": 40.8379956, + "maxlon": -73.9472602 + }, + "nodes": [ + 595352902, + 254312246, + 9935928812, + 587934079 + ], + "geometry": [ + { "lat": 40.8375532, "lon": -73.9478771 }, + { "lat": 40.8377926, "lon": -73.9475767 }, + { "lat": 40.8379399, "lon": -73.9473470 }, + { "lat": 40.8379956, "lon": -73.9472602 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive West", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46577952, + "bounds": { + "minlat": 40.8342881, + "minlon": -73.9467489, + "maxlat": 40.8349454, + "maxlon": -73.9453866 + }, + "nodes": [ + 42452130, + 9703359682, + 12998931047, + 9935939195, + 2504882459, + 12998931053 + ], + "geometry": [ + { "lat": 40.8342881, "lon": -73.9453866 }, + { "lat": 40.8343388, "lon": -73.9455118 }, + { "lat": 40.8347954, "lon": -73.9466177 }, + { "lat": 40.8348607, "lon": -73.9467103 }, + { "lat": 40.8348777, "lon": -73.9467196 }, + { "lat": 40.8349454, "lon": -73.9467489 } + ], + "tags": { + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 157th Street", + "name_1": "West 157 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "157th", + "tiger:name_base_1": "157", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 46577953, + "bounds": { + "minlat": 40.8336477, + "minlon": -73.9453866, + "maxlat": 40.8342881, + "maxlon": -73.9453214 + }, + "nodes": [ + 42452130, + 2504882457, + 12998931028, + 12998931027, + 12998931026, + 12998931029, + 2504882476, + 11295759940, + 595352904 + ], + "geometry": [ + { "lat": 40.8342881, "lon": -73.9453866 }, + { "lat": 40.8342097, "lon": -73.9453661 }, + { "lat": 40.8340736, "lon": -73.9453349 }, + { "lat": 40.8340234, "lon": -73.9453255 }, + { "lat": 40.8339767, "lon": -73.9453221 }, + { "lat": 40.8339321, "lon": -73.9453214 }, + { "lat": 40.8338359, "lon": -73.9453271 }, + { "lat": 40.8338073, "lon": -73.9453291 }, + { "lat": 40.8336477, "lon": -73.9453237 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Edward M. Morgan Place", + "name:etymology:wikidata": "Q5344283", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edward M Morgan", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46577954, + "bounds": { + "minlat": 40.8340255, + "minlon": -73.9453866, + "maxlat": 40.8342881, + "maxlon": -73.9447869 + }, + "nodes": [ + 561035372, + 42428961, + 9703359676, + 9703359677, + 42452130 + ], + "geometry": [ + { "lat": 40.8340255, "lon": -73.9447869 }, + { "lat": 40.8341125, "lon": -73.9449805 }, + { "lat": 40.8341548, "lon": -73.9450701 }, + { "lat": 40.8342322, "lon": -73.9452565 }, + { "lat": 40.8342881, "lon": -73.9453866 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "name": "West 157th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "157th", + "tiger:name_base_1": "157", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 46577955, + "bounds": { + "minlat": 40.8346452, + "minlon": -73.9445301, + "maxlat": 40.8347297, + "maxlon": -73.9443287 + }, + "nodes": [ + 42428962, + 561035373 + ], + "geometry": [ + { "lat": 40.8347297, "lon": -73.9445301 }, + { "lat": 40.8346452, "lon": -73.9443287 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "no", + "name": "West 158th Street", + "name_1": "West 158 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "158th", + "tiger:name_base_1": "158", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 46577961, + "bounds": { + "minlat": 40.8352917, + "minlon": -73.9486325, + "maxlat": 40.8364547, + "maxlon": -73.9458898 + }, + "nodes": [ + 595352911, + 5354421380, + 5354421383, + 5354421378, + 13460886888, + 2512378852 + ], + "geometry": [ + { "lat": 40.8364547, "lon": -73.9486325 }, + { "lat": 40.8362156, "lon": -73.9480974 }, + { "lat": 40.8360196, "lon": -73.9476310 }, + { "lat": 40.8358927, "lon": -73.9473364 }, + { "lat": 40.8353145, "lon": -73.9459447 }, + { "lat": 40.8352917, "lon": -73.9458898 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "West 158th Street", + "oneway": "no", + "oneway:bicycle": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46577962, + "bounds": { + "minlat": 40.8333847, + "minlon": -73.9500240, + "maxlat": 40.8379900, + "maxlon": -73.9480157 + }, + "nodes": [ + 595352913, + 7907916417, + 595352914, + 7907916458, + 7907883469, + 7907916409, + 42458527, + 7907916449, + 7907916491, + 7907916401, + 7907916441, + 42458531, + 7907916483, + 7907916393, + 7907916433, + 42424823, + 595352915 + ], + "geometry": [ + { "lat": 40.8333847, "lon": -73.9500240 }, + { "lat": 40.8364046, "lon": -73.9491345 }, + { "lat": 40.8365064, "lon": -73.9491019 }, + { "lat": 40.8365978, "lon": -73.9490687 }, + { "lat": 40.8366975, "lon": -73.9490286 }, + { "lat": 40.8367981, "lon": -73.9489810 }, + { "lat": 40.8369000, "lon": -73.9489281 }, + { "lat": 40.8369998, "lon": -73.9488708 }, + { "lat": 40.8370980, "lon": -73.9488081 }, + { "lat": 40.8371750, "lon": -73.9487552 }, + { "lat": 40.8372753, "lon": -73.9486808 }, + { "lat": 40.8373662, "lon": -73.9486067 }, + { "lat": 40.8374521, "lon": -73.9485314 }, + { "lat": 40.8375329, "lon": -73.9484561 }, + { "lat": 40.8376242, "lon": -73.9483690 }, + { "lat": 40.8379645, "lon": -73.9480409 }, + { "lat": 40.8379900, "lon": -73.9480157 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46577963, + "bounds": { + "minlat": 40.8323460, + "minlon": -73.9504724, + "maxlat": 40.8334069, + "maxlon": -73.9501588 + }, + "nodes": [ + 595352916, + 7907916475, + 9039624678 + ], + "geometry": [ + { "lat": 40.8334069, "lon": -73.9501588 }, + { "lat": 40.8325993, "lon": -73.9503977 }, + { "lat": 40.8323460, "lon": -73.9504724 } + ], + "tags": { + "destination:lanes": "none|none|none;West 158th Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "turn:lanes": "none|none|through;slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46577964, + "bounds": { + "minlat": 40.8334069, + "minlon": -73.9501588, + "maxlat": 40.8381148, + "maxlon": -73.9480680 + }, + "nodes": [ + 595352917, + 7907916400, + 7907916490, + 7907916440, + 595352918, + 7907916482, + 7907916392, + 7907916432, + 595352919, + 7907916474, + 7907916385, + 7907916425, + 254342113, + 7907916466, + 7907883477, + 595352916 + ], + "geometry": [ + { "lat": 40.8381148, "lon": -73.9480680 }, + { "lat": 40.8377812, "lon": -73.9483923 }, + { "lat": 40.8376272, "lon": -73.9485383 }, + { "lat": 40.8375277, "lon": -73.9486323 }, + { "lat": 40.8374190, "lon": -73.9487243 }, + { "lat": 40.8373293, "lon": -73.9487985 }, + { "lat": 40.8372254, "lon": -73.9488760 }, + { "lat": 40.8371280, "lon": -73.9489431 }, + { "lat": 40.8370294, "lon": -73.9490053 }, + { "lat": 40.8369179, "lon": -73.9490702 }, + { "lat": 40.8368041, "lon": -73.9491267 }, + { "lat": 40.8367190, "lon": -73.9491666 }, + { "lat": 40.8365939, "lon": -73.9492150 }, + { "lat": 40.8364818, "lon": -73.9492543 }, + { "lat": 40.8363780, "lon": -73.9492858 }, + { "lat": 40.8334069, "lon": -73.9501588 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "maxspeed:advisory": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46577965, + "bounds": { + "minlat": 40.8379900, + "minlon": -73.9480157, + "maxlat": 40.8392955, + "maxlon": -73.9468276 + }, + "nodes": [ + 595352915, + 7907916426, + 7907916386, + 587934194, + 7907883470, + 7907916459, + 7907916418, + 7907883478, + 60928425 + ], + "geometry": [ + { "lat": 40.8379900, "lon": -73.9480157 }, + { "lat": 40.8380508, "lon": -73.9479552 }, + { "lat": 40.8382186, "lon": -73.9477955 }, + { "lat": 40.8383938, "lon": -73.9476287 }, + { "lat": 40.8385730, "lon": -73.9474598 }, + { "lat": 40.8387469, "lon": -73.9473018 }, + { "lat": 40.8389309, "lon": -73.9471379 }, + { "lat": 40.8391033, "lon": -73.9469899 }, + { "lat": 40.8392955, "lon": -73.9468276 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 46577966, + "bounds": { + "minlat": 40.8326563, + "minlon": -73.9497813, + "maxlat": 40.8327035, + "maxlon": -73.9496167 + }, + "nodes": [ + 595352927, + 42441805 + ], + "geometry": [ + { "lat": 40.8326563, "lon": -73.9496167 }, + { "lat": 40.8327035, "lon": -73.9497813 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "2", + "maxweight": "16 st", + "name": "West 153rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "153rd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 46577970, + "bounds": { + "minlat": 40.8236481, + "minlon": -73.9552907, + "maxlat": 40.8253058, + "maxlon": -73.9537325 + }, + "nodes": [ + 6885524030, + 6885524017, + 42433811, + 42441951, + 11937720191, + 6885524021 + ], + "geometry": [ + { "lat": 40.8236481, "lon": -73.9552907 }, + { "lat": 40.8237311, "lon": -73.9551906 }, + { "lat": 40.8241260, "lon": -73.9548300 }, + { "lat": 40.8247390, "lon": -73.9543470 }, + { "lat": 40.8252771, "lon": -73.9537636 }, + { "lat": 40.8253058, "lon": -73.9537325 } + ], + "tags": { + "highway": "unclassified", + "name": "Riverside Drive", + "name_1": "Riverside Drive East", + "oneway": "yes", + "tiger:cfcc": "A45; A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_base_1": "Riverside", + "tiger:name_direction_suffix_1": "E", + "tiger:name_type": "Dr", + "tiger:name_type_1": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 46579213, + "bounds": { + "minlat": 40.7973877, + "minlon": -73.9675624, + "maxlat": 40.7978705, + "maxlon": -73.9662364 + }, + "nodes": [ + 42442557, + 10165989498, + 7571410095, + 7571410096, + 7571410098, + 11990880714, + 7571274525, + 7571410130, + 1807940789 + ], + "geometry": [ + { "lat": 40.7978705, "lon": -73.9675624 }, + { "lat": 40.7978287, "lon": -73.9674659 }, + { "lat": 40.7977609, "lon": -73.9673044 }, + { "lat": 40.7974728, "lon": -73.9666101 }, + { "lat": 40.7974405, "lon": -73.9665311 }, + { "lat": 40.7974084, "lon": -73.9664240 }, + { "lat": 40.7973937, "lon": -73.9663290 }, + { "lat": 40.7973877, "lon": -73.9662807 }, + { "lat": 40.7973896, "lon": -73.9662364 } + ], + "tags": { + "highway": "residential", + "name": "West 102nd Street", + "name:ru": "Западная 102-я стрит", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46579577, + "bounds": { + "minlat": 40.7705364, + "minlon": -73.9801168, + "maxlat": 40.7708960, + "maxlon": -73.9798514 + }, + "nodes": [ + 42435253, + 7837165548, + 9915560877 + ], + "geometry": [ + { "lat": 40.7705364, "lon": -73.9801168 }, + { "lat": 40.7705974, "lon": -73.9800722 }, + { "lat": 40.7708960, "lon": -73.9798514 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:lane:right": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46579578, + "bounds": { + "minlat": 40.7689504, + "minlon": -73.9843169, + "maxlat": 40.7698546, + "maxlon": -73.9822001 + }, + "nodes": [ + 42428570, + 9907441334, + 8314977760, + 10674102219, + 8390080233, + 6465823512, + 6465823507, + 10046259422, + 1241742627 + ], + "geometry": [ + { "lat": 40.7689504, "lon": -73.9822001 }, + { "lat": 40.7690036, "lon": -73.9823326 }, + { "lat": 40.7693102, "lon": -73.9830683 }, + { "lat": 40.7693374, "lon": -73.9831322 }, + { "lat": 40.7694145, "lon": -73.9833131 }, + { "lat": 40.7695418, "lon": -73.9836135 }, + { "lat": 40.7696565, "lon": -73.9838843 }, + { "lat": 40.7697902, "lon": -73.9841965 }, + { "lat": 40.7698546, "lon": -73.9843169 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "yes", + "lanes": "2", + "lit": "yes", + "name": "West 60th Street", + "name:ru": "Западная 60-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46579579, + "bounds": { + "minlat": 40.7710965, + "minlon": -73.9841677, + "maxlat": 40.7714155, + "maxlon": -73.9834109 + }, + "nodes": [ + 12852416776, + 9904552002, + 1241742563 + ], + "geometry": [ + { "lat": 40.7714155, "lon": -73.9841677 }, + { "lat": 40.7711527, "lon": -73.9835434 }, + { "lat": 40.7710965, "lon": -73.9834109 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "yes", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 62nd Street", + "name:ru": "Западная 62-я стрит", + "name_1": "West 62 Street", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46581216, + "bounds": { + "minlat": 40.7469695, + "minlon": -73.9884165, + "maxlat": 40.7473523, + "maxlon": -73.9883679 + }, + "nodes": [ + 11355997383, + 11766442644, + 11766442643, + 7369969942 + ], + "geometry": [ + { "lat": 40.7473523, "lon": -73.9883679 }, + { "lat": 40.7471864, "lon": -73.9884071 }, + { "lat": 40.7471240, "lon": -73.9883867 }, + { "lat": 40.7469695, "lon": -73.9884165 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 46582968, + "bounds": { + "minlat": 40.7230780, + "minlon": -73.9812110, + "maxlat": 40.7250730, + "maxlon": -73.9764770 + }, + "nodes": [ + 42434237, + 8309479381, + 8309479374, + 42434233, + 8309479377, + 4216045844, + 42434226 + ], + "geometry": [ + { "lat": 40.7230780, "lon": -73.9764770 }, + { "lat": 40.7231219, "lon": -73.9765813 }, + { "lat": 40.7240411, "lon": -73.9787630 }, + { "lat": 40.7240792, "lon": -73.9788537 }, + { "lat": 40.7241219, "lon": -73.9789548 }, + { "lat": 40.7250374, "lon": -73.9811265 }, + { "lat": 40.7250730, "lon": -73.9812110 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 7th Street", + "name:ru": "Восточная 7-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46583189, + "bounds": { + "minlat": 40.7639136, + "minlon": -73.9741101, + "maxlat": 40.7645689, + "maxlon": -73.9736594 + }, + "nodes": [ + 4347534767, + 11359524022, + 4347534776, + 4347534774, + 10173346254, + 11359524020, + 11359524021, + 42427764 + ], + "geometry": [ + { "lat": 40.7645689, "lon": -73.9736594 }, + { "lat": 40.7645333, "lon": -73.9736942 }, + { "lat": 40.7644904, "lon": -73.9737265 }, + { "lat": 40.7640177, "lon": -73.9740710 }, + { "lat": 40.7639787, "lon": -73.9740994 }, + { "lat": 40.7639585, "lon": -73.9741077 }, + { "lat": 40.7639361, "lon": -73.9741101 }, + { "lat": 40.7639136, "lon": -73.9741072 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "name": "Grand Army Plaza", + "name_1": "5 Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46583480, + "bounds": { + "minlat": 40.8100741, + "minlon": -73.9541968, + "maxlat": 40.8105629, + "maxlon": -73.9530446 + }, + "nodes": [ + 9714409350, + 8238946730, + 10171069640, + 8238946736, + 42439371, + 10171069695, + 42432928 + ], + "geometry": [ + { "lat": 40.8105629, "lon": -73.9541968 }, + { "lat": 40.8105187, "lon": -73.9540921 }, + { "lat": 40.8105016, "lon": -73.9540503 }, + { "lat": 40.8104089, "lon": -73.9538231 }, + { "lat": 40.8103252, "lon": -73.9536230 }, + { "lat": 40.8101529, "lon": -73.9532215 }, + { "lat": 40.8100741, "lon": -73.9530446 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 124th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46583483, + "bounds": { + "minlat": 40.8094823, + "minlon": -73.9535786, + "maxlat": 40.8100741, + "maxlon": -73.9530446 + }, + "nodes": [ + 42432928, + 12534082076, + 7732243557, + 42439369, + 10171069697, + 12534082082, + 10168029072, + 42438920 + ], + "geometry": [ + { "lat": 40.8100741, "lon": -73.9530446 }, + { "lat": 40.8100410, "lon": -73.9531334 }, + { "lat": 40.8100280, "lon": -73.9531616 }, + { "lat": 40.8100153, "lon": -73.9531840 }, + { "lat": 40.8099976, "lon": -73.9532048 }, + { "lat": 40.8099753, "lon": -73.9532235 }, + { "lat": 40.8095445, "lon": -73.9535337 }, + { "lat": 40.8094823, "lon": -73.9535786 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347126", + "wikipedia": "en:Manhattan Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46583484, + "bounds": { + "minlat": 40.8031114, + "minlon": -73.9637648, + "maxlat": 40.8036319, + "maxlon": -73.9633898 + }, + "nodes": [ + 13772615411, + 7618358575, + 4717512348, + 42442571 + ], + "geometry": [ + { "lat": 40.8031114, "lon": -73.9637648 }, + { "lat": 40.8032364, "lon": -73.9636752 }, + { "lat": 40.8035799, "lon": -73.9634264 }, + { "lat": 40.8036319, "lon": -73.9633898 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "4", + "motor_vehicle:conditional": "no @ (Fr 19:00-23:00; Sa-Su 11:00-23:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46588498, + "bounds": { + "minlat": 40.8497370, + "minlon": -73.9407984, + "maxlat": 40.8503859, + "maxlon": -73.9405973 + }, + "nodes": [ + 60926078, + 12066839629, + 12066839628, + 7409240965, + 9908553706, + 7409240966, + 12914260647, + 9563821088, + 42428107 + ], + "geometry": [ + { "lat": 40.8497370, "lon": -73.9407830 }, + { "lat": 40.8497531, "lon": -73.9407919 }, + { "lat": 40.8497676, "lon": -73.9407964 }, + { "lat": 40.8497860, "lon": -73.9407984 }, + { "lat": 40.8498031, "lon": -73.9407967 }, + { "lat": 40.8498207, "lon": -73.9407921 }, + { "lat": 40.8502719, "lon": -73.9406366 }, + { "lat": 40.8503206, "lon": -73.9406198 }, + { "lat": 40.8503859, "lon": -73.9405973 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Cabrini Boulevard", + "name:etymology:wikidata": "Q238983", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cabrini", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5015842", + "wikipedia": "en:Cabrini Boulevard" + } +}, +{ + "type": "way", + "id": 46590474, + "bounds": { + "minlat": 40.8492170, + "minlon": -73.9399149, + "maxlat": 40.8493251, + "maxlon": -73.9393422 + }, + "nodes": [ + 595464577, + 60918686 + ], + "geometry": [ + { "lat": 40.8492170, "lon": -73.9393422 }, + { "lat": 40.8493251, "lon": -73.9399149 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "New Jersey|New Jersey;Henry Hudson Parkway;West 181st Street|Henry Hudson Parkway;West 181st Street", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "none|through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 46590476, + "bounds": { + "minlat": 40.8492549, + "minlon": -73.9413598, + "maxlat": 40.8495877, + "maxlon": -73.9412163 + }, + "nodes": [ + 595448572, + 12066733742, + 12066733737, + 12066733736, + 9908548307, + 9908548308, + 60925897 + ], + "geometry": [ + { "lat": 40.8492549, "lon": -73.9413598 }, + { "lat": 40.8492799, "lon": -73.9413360 }, + { "lat": 40.8493007, "lon": -73.9413197 }, + { "lat": 40.8493215, "lon": -73.9413083 }, + { "lat": 40.8493426, "lon": -73.9412993 }, + { "lat": 40.8495080, "lon": -73.9412425 }, + { "lat": 40.8495877, "lon": -73.9412163 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "lanes": "2", + "layer": "2", + "motor_vehicle": "private" + } +}, +{ + "type": "way", + "id": 46590477, + "bounds": { + "minlat": 40.8515613, + "minlon": -73.9607266, + "maxlat": 40.8531696, + "maxlon": -73.9525431 + }, + "nodes": [ + 298792359, + 2408221645 + ], + "geometry": [ + { "lat": 40.8531696, "lon": -73.9607266 }, + { "lat": 40.8515613, "lon": -73.9525431 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "access:conditional": "yes @ (axles=2 AND weight<40 st); yes @ (axles=3 AND weight<60 st); yes @ (axles=4 AND weight<70 st); yes @ (axles>=5 AND weight<80 st)", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hazmat": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxaxleload": "20 st", + "maxheight": "13'6\"", + "maxspeed": "45 mph", + "maxweight": "80 st", + "maxwidth": "8'6\"", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "name:ru": "Мост Джорджа Вашингтона (нижний уровень)", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "toll": "yes", + "unsigned_ref": "US 46", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 46590814, + "bounds": { + "minlat": 40.8491274, + "minlon": -73.9399683, + "maxlat": 40.8492281, + "maxlon": -73.9394518 + }, + "nodes": [ + 595464558, + 12066694598, + 12066694599, + 1362215055 + ], + "geometry": [ + { "lat": 40.8491274, "lon": -73.9394518 }, + { "lat": 40.8491786, "lon": -73.9397012 }, + { "lat": 40.8492038, "lon": -73.9398327 }, + { "lat": 40.8492281, "lon": -73.9399683 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 46590816, + "bounds": { + "minlat": 40.8495819, + "minlon": -73.9435563, + "maxlat": 40.8499327, + "maxlon": -73.9412604 + }, + "nodes": [ + 595464616, + 595462049, + 12068708121, + 12068900595, + 12068708122, + 12068708123, + 12068708124, + 12068708126, + 12068708128, + 12068708125, + 12068708120, + 12068708119, + 12068708118, + 12068708117, + 595462050 + ], + "geometry": [ + { "lat": 40.8495819, "lon": -73.9412604 }, + { "lat": 40.8498620, "lon": -73.9427213 }, + { "lat": 40.8498711, "lon": -73.9427751 }, + { "lat": 40.8498771, "lon": -73.9428142 }, + { "lat": 40.8498824, "lon": -73.9428555 }, + { "lat": 40.8498873, "lon": -73.9429010 }, + { "lat": 40.8498923, "lon": -73.9429599 }, + { "lat": 40.8498958, "lon": -73.9430158 }, + { "lat": 40.8498963, "lon": -73.9430724 }, + { "lat": 40.8498975, "lon": -73.9432496 }, + { "lat": 40.8498999, "lon": -73.9433027 }, + { "lat": 40.8499041, "lon": -73.9433597 }, + { "lat": 40.8499095, "lon": -73.9434075 }, + { "lat": 40.8499157, "lon": -73.9434533 }, + { "lat": 40.8499327, "lon": -73.9435563 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "name:ru": "Мост Джорджа Вашингтона (нижний уровень)", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 46590825, + "bounds": { + "minlat": 40.8489142, + "minlon": -73.9391155, + "maxlat": 40.8491978, + "maxlon": -73.9376059 + }, + "nodes": [ + 595473093, + 12069043561, + 12069043560, + 12069043559, + 12069043558, + 595473098 + ], + "geometry": [ + { "lat": 40.8489142, "lon": -73.9376059 }, + { "lat": 40.8491919, "lon": -73.9390319 }, + { "lat": 40.8491953, "lon": -73.9390547 }, + { "lat": 40.8491971, "lon": -73.9390750 }, + { "lat": 40.8491978, "lon": -73.9390952 }, + { "lat": 40.8491976, "lon": -73.9391155 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "layer": "1", + "motor_vehicle": "private", + "oneway": "yes", + "surface": "concrete", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 46590831, + "bounds": { + "minlat": 40.8478764, + "minlon": -73.9394629, + "maxlat": 40.8489026, + "maxlon": -73.9358257 + }, + "nodes": [ + 60918736, + 12066694592, + 60918737, + 60918739, + 60918740, + 9908548299, + 9908548287, + 12066596944, + 595473259 + ], + "geometry": [ + { "lat": 40.8489026, "lon": -73.9394629 }, + { "lat": 40.8485243, "lon": -73.9376287 }, + { "lat": 40.8484863, "lon": -73.9374582 }, + { "lat": 40.8484450, "lon": -73.9372944 }, + { "lat": 40.8483999, "lon": -73.9371421 }, + { "lat": 40.8483515, "lon": -73.9369964 }, + { "lat": 40.8482953, "lon": -73.9368365 }, + { "lat": 40.8482313, "lon": -73.9366691 }, + { "lat": 40.8478764, "lon": -73.9358257 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 46590832, + "bounds": { + "minlat": 40.8479758, + "minlon": -73.9394913, + "maxlat": 40.8490198, + "maxlon": -73.9357524 + }, + "nodes": [ + 595464709, + 60917870, + 9908548295, + 60917871, + 9908548296, + 60917872, + 9908548297, + 9908548286, + 12066694593, + 595473385 + ], + "geometry": [ + { "lat": 40.8490198, "lon": -73.9394913 }, + { "lat": 40.8486374, "lon": -73.9375881 }, + { "lat": 40.8486101, "lon": -73.9374596 }, + { "lat": 40.8485790, "lon": -73.9373275 }, + { "lat": 40.8485433, "lon": -73.9371938 }, + { "lat": 40.8485005, "lon": -73.9370542 }, + { "lat": 40.8484524, "lon": -73.9369114 }, + { "lat": 40.8483933, "lon": -73.9367569 }, + { "lat": 40.8483355, "lon": -73.9366098 }, + { "lat": 40.8479758, "lon": -73.9357524 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 46590835, + "bounds": { + "minlat": 40.8489026, + "minlon": -73.9413586, + "maxlat": 40.8493002, + "maxlon": -73.9394629 + }, + "nodes": [ + 3959468915, + 12066596945, + 9908548300, + 60918736 + ], + "geometry": [ + { "lat": 40.8493002, "lon": -73.9413586 }, + { "lat": 40.8492261, "lon": -73.9409799 }, + { "lat": 40.8491746, "lon": -73.9407276 }, + { "lat": 40.8489026, "lon": -73.9394629 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 46591058, + "bounds": { + "minlat": 40.8429245, + "minlon": -73.9365954, + "maxlat": 40.8487400, + "maxlon": -73.9323334 + }, + "nodes": [ + 42455245, + 11758679657, + 8723021880, + 42429457, + 8723021883, + 8722881596, + 42454611, + 8722881594, + 8722881590, + 42446331, + 8722881592, + 8722881613, + 42436807, + 8722881616, + 8723021823, + 42455252, + 8723021826, + 8723021914, + 42452147, + 12081927920, + 12077214223, + 42455059, + 2797305762, + 9550791762, + 42428082, + 9550791761, + 9550791856, + 42444060 + ], + "geometry": [ + { "lat": 40.8429245, "lon": -73.9365954 }, + { "lat": 40.8429815, "lon": -73.9365525 }, + { "lat": 40.8434779, "lon": -73.9361787 }, + { "lat": 40.8435500, "lon": -73.9361260 }, + { "lat": 40.8436294, "lon": -73.9360682 }, + { "lat": 40.8441444, "lon": -73.9356942 }, + { "lat": 40.8442010, "lon": -73.9356530 }, + { "lat": 40.8442568, "lon": -73.9356122 }, + { "lat": 40.8447654, "lon": -73.9352399 }, + { "lat": 40.8448460, "lon": -73.9351810 }, + { "lat": 40.8449379, "lon": -73.9351131 }, + { "lat": 40.8454644, "lon": -73.9347269 }, + { "lat": 40.8455200, "lon": -73.9346860 }, + { "lat": 40.8455813, "lon": -73.9346412 }, + { "lat": 40.8460905, "lon": -73.9342690 }, + { "lat": 40.8461410, "lon": -73.9342320 }, + { "lat": 40.8462030, "lon": -73.9341865 }, + { "lat": 40.8466893, "lon": -73.9338300 }, + { "lat": 40.8467657, "lon": -73.9337745 }, + { "lat": 40.8468444, "lon": -73.9337175 }, + { "lat": 40.8473592, "lon": -73.9333443 }, + { "lat": 40.8474152, "lon": -73.9333038 }, + { "lat": 40.8474749, "lon": -73.9332610 }, + { "lat": 40.8479868, "lon": -73.9328863 }, + { "lat": 40.8480380, "lon": -73.9328490 }, + { "lat": 40.8480981, "lon": -73.9328047 }, + { "lat": 40.8486609, "lon": -73.9323914 }, + { "lat": 40.8487400, "lon": -73.9323334 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "maxspeed:type": "sign", + "name": "Audubon Avenue", + "name:etymology:wikidata": "Q182882", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Audubon", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q2870884", + "wikipedia": "en:Audubon Avenue" + } +}, +{ + "type": "way", + "id": 46591062, + "bounds": { + "minlat": 40.8467529, + "minlon": -73.9318917, + "maxlat": 40.8468056, + "maxlon": -73.9318532 + }, + "nodes": [ + 595473050, + 42442733 + ], + "geometry": [ + { "lat": 40.8467529, "lon": -73.9318917 }, + { "lat": 40.8468056, "lon": -73.9318532 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46591067, + "bounds": { + "minlat": 40.8485072, + "minlon": -73.9375672, + "maxlat": 40.8489367, + "maxlon": -73.9370793 + }, + "nodes": [ + 11595081909, + 11595081910, + 11595081921, + 595473133, + 13320061244 + ], + "geometry": [ + { "lat": 40.8485072, "lon": -73.9375672 }, + { "lat": 40.8485989, "lon": -73.9374630 }, + { "lat": 40.8488458, "lon": -73.9371826 }, + { "lat": 40.8489024, "lon": -73.9371183 }, + { "lat": 40.8489367, "lon": -73.9370793 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "ref": "US 9", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 46591068, + "bounds": { + "minlat": 40.8478794, + "minlon": -73.9363969, + "maxlat": 40.8485206, + "maxlon": -73.9359288 + }, + "nodes": [ + 42449634, + 595473185, + 595473148, + 42449637 + ], + "geometry": [ + { "lat": 40.8478794, "lon": -73.9363969 }, + { "lat": 40.8479541, "lon": -73.9363423 }, + { "lat": 40.8484633, "lon": -73.9359707 }, + { "lat": 40.8485206, "lon": -73.9359288 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Wadsworth Avenue", + "name:etymology:wikidata": "Q2339186", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 46591073, + "bounds": { + "minlat": 40.8463400, + "minlon": -73.9359057, + "maxlat": 40.8486260, + "maxlon": -73.9342390 + }, + "nodes": [ + 12872793594, + 11595083021, + 8723021817, + 5403873778, + 42433060, + 5403873777, + 11595083011, + 5403873774, + 42433062, + 595473222, + 5403873769, + 42433064, + 5403873768, + 5403858698, + 5403873764, + 42428086 + ], + "geometry": [ + { "lat": 40.8463400, "lon": -73.9359057 }, + { "lat": 40.8464118, "lon": -73.9358531 }, + { "lat": 40.8466382, "lon": -73.9356871 }, + { "lat": 40.8466810, "lon": -73.9356556 }, + { "lat": 40.8467270, "lon": -73.9356220 }, + { "lat": 40.8467874, "lon": -73.9355789 }, + { "lat": 40.8470570, "lon": -73.9353871 }, + { "lat": 40.8472822, "lon": -73.9352267 }, + { "lat": 40.8473580, "lon": -73.9351720 }, + { "lat": 40.8474324, "lon": -73.9351149 }, + { "lat": 40.8479422, "lon": -73.9347354 }, + { "lat": 40.8480005, "lon": -73.9346936 }, + { "lat": 40.8480639, "lon": -73.9346471 }, + { "lat": 40.8482883, "lon": -73.9344836 }, + { "lat": 40.8485748, "lon": -73.9342766 }, + { "lat": 40.8486260, "lon": -73.9342390 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 46591081, + "bounds": { + "minlat": 40.8481821, + "minlon": -73.9393422, + "maxlat": 40.8492170, + "maxlon": -73.9356004 + }, + "nodes": [ + 595473279, + 12066694594, + 60918682, + 9908548292, + 60918683, + 9908548291, + 60918684, + 9908548288, + 13768867469, + 595464577 + ], + "geometry": [ + { "lat": 40.8481821, "lon": -73.9356004 }, + { "lat": 40.8486266, "lon": -73.9366650 }, + { "lat": 40.8486839, "lon": -73.9368145 }, + { "lat": 40.8487322, "lon": -73.9369626 }, + { "lat": 40.8487760, "lon": -73.9371074 }, + { "lat": 40.8488136, "lon": -73.9372481 }, + { "lat": 40.8488427, "lon": -73.9373816 }, + { "lat": 40.8488739, "lon": -73.9375362 }, + { "lat": 40.8490603, "lon": -73.9385174 }, + { "lat": 40.8492170, "lon": -73.9393422 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 46591083, + "bounds": { + "minlat": 40.8487467, + "minlon": -73.9391578, + "maxlat": 40.8492427, + "maxlon": -73.9389575 + }, + "nodes": [ + 12069006603, + 12069006604, + 11595081898, + 12925573374, + 11595081897, + 12069054653, + 595473291 + ], + "geometry": [ + { "lat": 40.8492427, "lon": -73.9389575 }, + { "lat": 40.8492248, "lon": -73.9389647 }, + { "lat": 40.8491014, "lon": -73.9390146 }, + { "lat": 40.8489777, "lon": -73.9390645 }, + { "lat": 40.8488746, "lon": -73.9391062 }, + { "lat": 40.8487580, "lon": -73.9391532 }, + { "lat": 40.8487467, "lon": -73.9391578 } + ], + "tags": { + "bicycle": "designated", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "maxheight": "3.96", + "maxspeed": "25 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "tunnel": "building_passage", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 46591084, + "bounds": { + "minlat": 40.8492427, + "minlon": -73.9389575, + "maxlat": 40.8493131, + "maxlon": -73.9389291 + }, + "nodes": [ + 60926076, + 12069006603 + ], + "geometry": [ + { "lat": 40.8493131, "lon": -73.9389291 }, + { "lat": 40.8492427, "lon": -73.9389575 } + ], + "tags": { + "bicycle": "designated", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 46591090, + "bounds": { + "minlat": 40.8480768, + "minlon": -73.9394518, + "maxlat": 40.8491274, + "maxlon": -73.9356779 + }, + "nodes": [ + 595473421, + 12066694595, + 9908548285, + 9908548294, + 60917775, + 9908548293, + 60917774, + 12066694596, + 595464558 + ], + "geometry": [ + { "lat": 40.8480768, "lon": -73.9356779 }, + { "lat": 40.8484969, "lon": -73.9366879 }, + { "lat": 40.8485566, "lon": -73.9368382 }, + { "lat": 40.8486070, "lon": -73.9369789 }, + { "lat": 40.8486520, "lon": -73.9371231 }, + { "lat": 40.8486937, "lon": -73.9372705 }, + { "lat": 40.8487277, "lon": -73.9374199 }, + { "lat": 40.8487590, "lon": -73.9375641 }, + { "lat": 40.8491274, "lon": -73.9394518 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 46592773, + "bounds": { + "minlat": 40.8513723, + "minlon": -73.9418422, + "maxlat": 40.8518322, + "maxlon": -73.9412123 + }, + "nodes": [ + 9166213997, + 12067141212, + 9563821092, + 3536436332, + 12067141211, + 12067141192, + 12067141191, + 42438157, + 1769703617, + 42438160 + ], + "geometry": [ + { "lat": 40.8513723, "lon": -73.9412123 }, + { "lat": 40.8514105, "lon": -73.9412494 }, + { "lat": 40.8514395, "lon": -73.9412825 }, + { "lat": 40.8514627, "lon": -73.9413161 }, + { "lat": 40.8514840, "lon": -73.9413502 }, + { "lat": 40.8515093, "lon": -73.9413936 }, + { "lat": 40.8515355, "lon": -73.9414362 }, + { "lat": 40.8515655, "lon": -73.9414811 }, + { "lat": 40.8517728, "lon": -73.9417618 }, + { "lat": 40.8518322, "lon": -73.9418422 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Lafayette Plaza", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Plaza Lafayette" + } +}, +{ + "type": "way", + "id": 46593523, + "bounds": { + "minlat": 40.8503859, + "minlon": -73.9405973, + "maxlat": 40.8513413, + "maxlon": -73.9402230 + }, + "nodes": [ + 42428124, + 9563821096, + 12914260646, + 9563821089, + 42428107 + ], + "geometry": [ + { "lat": 40.8513413, "lon": -73.9402230 }, + { "lat": 40.8512467, "lon": -73.9403005 }, + { "lat": 40.8504770, "lon": -73.9405658 }, + { "lat": 40.8504428, "lon": -73.9405776 }, + { "lat": 40.8503859, "lon": -73.9405973 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Cabrini Boulevard", + "name:etymology:wikidata": "Q238983", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cabrini", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5015842", + "wikipedia": "en:Cabrini Boulevard" + } +}, +{ + "type": "way", + "id": 46593524, + "bounds": { + "minlat": 40.8554831, + "minlon": -73.9380132, + "maxlat": 40.8594076, + "maxlon": -73.9342479 + }, + "nodes": [ + 13317627776, + 8718834313, + 42428134, + 8718834311, + 9429828944, + 8151650886, + 10699913353, + 9421734337, + 42428144, + 2348610354, + 2348610356, + 2348610358, + 9503585325, + 9503566608, + 2348610363, + 2348610365, + 2348610368, + 42428147, + 2348610387, + 2348610396, + 2348610398, + 2348610399, + 2348610400, + 2348610402, + 2348610403, + 2348610401, + 9476358894, + 9476358893, + 11596413359, + 9338511504 + ], + "geometry": [ + { "lat": 40.8554831, "lon": -73.9380132 }, + { "lat": 40.8555430, "lon": -73.9379693 }, + { "lat": 40.8556073, "lon": -73.9379210 }, + { "lat": 40.8556626, "lon": -73.9378792 }, + { "lat": 40.8557845, "lon": -73.9377867 }, + { "lat": 40.8561403, "lon": -73.9375188 }, + { "lat": 40.8568565, "lon": -73.9369745 }, + { "lat": 40.8570292, "lon": -73.9368433 }, + { "lat": 40.8573519, "lon": -73.9365840 }, + { "lat": 40.8574401, "lon": -73.9365146 }, + { "lat": 40.8575540, "lon": -73.9364366 }, + { "lat": 40.8576849, "lon": -73.9363611 }, + { "lat": 40.8579000, "lon": -73.9362418 }, + { "lat": 40.8580318, "lon": -73.9361731 }, + { "lat": 40.8583353, "lon": -73.9360049 }, + { "lat": 40.8584564, "lon": -73.9359225 }, + { "lat": 40.8587091, "lon": -73.9357342 }, + { "lat": 40.8590220, "lon": -73.9354266 }, + { "lat": 40.8592572, "lon": -73.9351354 }, + { "lat": 40.8593233, "lon": -73.9350464 }, + { "lat": 40.8593513, "lon": -73.9349969 }, + { "lat": 40.8593759, "lon": -73.9349375 }, + { "lat": 40.8593937, "lon": -73.9348782 }, + { "lat": 40.8594039, "lon": -73.9348136 }, + { "lat": 40.8594076, "lon": -73.9347387 }, + { "lat": 40.8594002, "lon": -73.9346482 }, + { "lat": 40.8593836, "lon": -73.9345718 }, + { "lat": 40.8593752, "lon": -73.9345329 }, + { "lat": 40.8593287, "lon": -73.9343201 }, + { "lat": 40.8593130, "lon": -73.9342479 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cabrini Boulevard", + "name:etymology:wikidata": "Q238983", + "oneway": "yes", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cabrini", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "width": "32'0\"", + "wikidata": "Q5015842", + "wikipedia": "en:Cabrini Boulevard" + } +}, +{ + "type": "way", + "id": 46593907, + "bounds": { + "minlat": 40.8456402, + "minlon": -73.9293064, + "maxlat": 40.8457916, + "maxlon": -73.9286741 + }, + "nodes": [ + 595484163, + 373850887 + ], + "geometry": [ + { "lat": 40.8456402, "lon": -73.9286741 }, + { "lat": 40.8457916, "lon": -73.9293064 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Alexander Hamilton Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "5", + "layer": "2", + "maxspeed": "50 mph", + "name": "Trans-Manhattan Expressway", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "concrete", + "toll": "no", + "turn:lanes": "slight_left|slight_left|slight_right|slight_right|merge_to_left", + "wikidata": "Q621768", + "wikipedia": "en:Alexander Hamilton Bridge" + } +}, +{ + "type": "way", + "id": 46593908, + "bounds": { + "minlat": 40.8453140, + "minlon": -73.9287877, + "maxlat": 40.8454920, + "maxlon": -73.9280366 + }, + "nodes": [ + 595484164, + 529799493 + ], + "geometry": [ + { "lat": 40.8454920, "lon": -73.9287877 }, + { "lat": 40.8453140, "lon": -73.9280366 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Alexander Hamilton Bridge", + "destination:lanes": "Cross Bronx Expressway;New Haven CT|Cross Bronx Expressway;New Haven CT|Cross Bronx Expressway;New Haven CT;Major Deegan Expressway;Queens;Albany;Yankee Stadium|Major Deegan Expressway;Queens;Albany;Yankee Stadium", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "maxspeed": "50 mph", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "concrete", + "turn:lanes": "||through;slight_right|slight_right", + "wikidata": "Q621768", + "wikipedia": "en:Alexander Hamilton Bridge" + } +}, +{ + "type": "way", + "id": 46593909, + "bounds": { + "minlat": 40.8479448, + "minlon": -73.9306670, + "maxlat": 40.8480854, + "maxlon": -73.9303616 + }, + "nodes": [ + 595484165, + 595484166 + ], + "geometry": [ + { "lat": 40.8479448, "lon": -73.9303616 }, + { "lat": 40.8480854, "lon": -73.9306670 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "layer": "1", + "maxspeed": "25 mph", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "name_1": "West 181st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Washington", + "tiger:name_base_1": "181st", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Brg", + "tiger:name_type_1": "St", + "turn:lanes": "left|left|through;right" + } +}, +{ + "type": "way", + "id": 46593910, + "bounds": { + "minlat": 40.8480854, + "minlon": -73.9308802, + "maxlat": 40.8481359, + "maxlon": -73.9306670 + }, + "nodes": [ + 595484166, + 12076351755, + 9566892715, + 12076351756, + 12076351757, + 12076351758, + 42442734 + ], + "geometry": [ + { "lat": 40.8480854, "lon": -73.9306670 }, + { "lat": 40.8480972, "lon": -73.9306966 }, + { "lat": 40.8481091, "lon": -73.9307307 }, + { "lat": 40.8481176, "lon": -73.9307635 }, + { "lat": 40.8481255, "lon": -73.9308020 }, + { "lat": 40.8481316, "lon": -73.9308428 }, + { "lat": 40.8481359, "lon": -73.9308802 } + ], + "tags": { + "bicycle": "no", + "cycleway:right": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "name_1": "West 181st Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Washington", + "tiger:name_base_1": "181st", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Brg", + "tiger:name_type_1": "St", + "turn:lanes": "left|left|through;right" + } +}, +{ + "type": "way", + "id": 46593993, + "bounds": { + "minlat": 40.8535502, + "minlon": -73.9637878, + "maxlat": 40.8535859, + "maxlon": -73.9637699 + }, + "nodes": [ + 595485041, + 103121480 + ], + "geometry": [ + { "lat": 40.8535502, "lon": -73.9637878 }, + { "lat": 40.8535859, "lon": -73.9637699 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 46593994, + "bounds": { + "minlat": 40.8540730, + "minlon": -73.9635326, + "maxlat": 40.8541915, + "maxlon": -73.9634715 + }, + "nodes": [ + 595485042, + 103115804 + ], + "geometry": [ + { "lat": 40.8540730, "lon": -73.9635326 }, + { "lat": 40.8541915, "lon": -73.9634715 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bridge": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "layer": "1", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 46593997, + "bounds": { + "minlat": 40.8511850, + "minlon": -73.9717293, + "maxlat": 40.8516894, + "maxlon": -73.9701630 + }, + "nodes": [ + 103205062, + 103276278, + 103235586, + 103276279, + 103276281, + 7442921495, + 3748229043 + ], + "geometry": [ + { "lat": 40.8511850, "lon": -73.9701630 }, + { "lat": 40.8512840, "lon": -73.9708830 }, + { "lat": 40.8513210, "lon": -73.9710510 }, + { "lat": 40.8513660, "lon": -73.9711880 }, + { "lat": 40.8514270, "lon": -73.9713290 }, + { "lat": 40.8514516, "lon": -73.9713665 }, + { "lat": 40.8516894, "lon": -73.9717293 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 46593998, + "bounds": { + "minlat": 40.8529279, + "minlon": -73.9640969, + "maxlat": 40.8534317, + "maxlon": -73.9638487 + }, + "nodes": [ + 4204765790, + 7930462138, + 103101973, + 7921969699, + 103102011, + 530475595 + ], + "geometry": [ + { "lat": 40.8529279, "lon": -73.9640969 }, + { "lat": 40.8529792, "lon": -73.9640749 }, + { "lat": 40.8530325, "lon": -73.9640501 }, + { "lat": 40.8531296, "lon": -73.9640016 }, + { "lat": 40.8532908, "lon": -73.9639201 }, + { "lat": 40.8534317, "lon": -73.9638487 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 46594123, + "bounds": { + "minlat": 40.8075469, + "minlon": -73.9399455, + "maxlat": 40.8095866, + "maxlon": -73.9351120 + }, + "nodes": [ + 42448141, + 7004437170, + 10168169592, + 42446184, + 10168169596, + 10168169553, + 589928038, + 589928034, + 10168169549, + 7950964478, + 10122952958, + 42447210 + ], + "geometry": [ + { "lat": 40.8095866, "lon": -73.9399455 }, + { "lat": 40.8095508, "lon": -73.9398606 }, + { "lat": 40.8089533, "lon": -73.9384447 }, + { "lat": 40.8089094, "lon": -73.9383407 }, + { "lat": 40.8088710, "lon": -73.9382497 }, + { "lat": 40.8083132, "lon": -73.9369280 }, + { "lat": 40.8082806, "lon": -73.9368507 }, + { "lat": 40.8081768, "lon": -73.9366047 }, + { "lat": 40.8081452, "lon": -73.9365298 }, + { "lat": 40.8076101, "lon": -73.9352619 }, + { "lat": 40.8075876, "lon": -73.9352083 }, + { "lat": 40.8075469, "lon": -73.9351120 } + ], + "tags": { + "highway": "residential", + "name": "East 130th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46594124, + "bounds": { + "minlat": 40.8102066, + "minlon": -73.9484190, + "maxlat": 40.8139380, + "maxlon": -73.9394953 + }, + "nodes": [ + 42438235, + 7004451711, + 10172819008, + 42438236, + 3099327944, + 10172819013, + 8319433974, + 2141026551, + 42438240, + 8319433979, + 10171603020, + 42435825 + ], + "geometry": [ + { "lat": 40.8102066, "lon": -73.9394953 }, + { "lat": 40.8102545, "lon": -73.9396064 }, + { "lat": 40.8114879, "lon": -73.9425301 }, + { "lat": 40.8115326, "lon": -73.9426361 }, + { "lat": 40.8116007, "lon": -73.9428003 }, + { "lat": 40.8116453, "lon": -73.9429050 }, + { "lat": 40.8126888, "lon": -73.9453581 }, + { "lat": 40.8127308, "lon": -73.9454761 }, + { "lat": 40.8127932, "lon": -73.9456451 }, + { "lat": 40.8128378, "lon": -73.9457636 }, + { "lat": 40.8138900, "lon": -73.9483034 }, + { "lat": 40.8139380, "lon": -73.9484190 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 131st Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46594125, + "bounds": { + "minlat": 40.8088106, + "minlon": -73.9363966, + "maxlat": 40.8089052, + "maxlon": -73.9361311 + }, + "nodes": [ + 589928035, + 589928037 + ], + "geometry": [ + { "lat": 40.8088106, "lon": -73.9361311 }, + { "lat": 40.8089052, "lon": -73.9363966 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 131st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46594126, + "bounds": { + "minlat": 40.8089052, + "minlon": -73.9394953, + "maxlat": 40.8102066, + "maxlon": -73.9363966 + }, + "nodes": [ + 589928037, + 10168169558, + 10168169618, + 42446187, + 10168169614, + 7004451712, + 42438235 + ], + "geometry": [ + { "lat": 40.8089052, "lon": -73.9363966 }, + { "lat": 40.8089350, "lon": -73.9364716 }, + { "lat": 40.8094915, "lon": -73.9377901 }, + { "lat": 40.8095324, "lon": -73.9378846 }, + { "lat": 40.8095748, "lon": -73.9379828 }, + { "lat": 40.8101625, "lon": -73.9393882 }, + { "lat": 40.8102066, "lon": -73.9394953 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 131st Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46594127, + "bounds": { + "minlat": 40.8091051, + "minlon": -73.9474622, + "maxlat": 40.8103039, + "maxlon": -73.9446164 + }, + "nodes": [ + 3099327975, + 10171038449, + 10794664661, + 8758345330, + 2141026493, + 42436728 + ], + "geometry": [ + { "lat": 40.8091051, "lon": -73.9446164 }, + { "lat": 40.8091419, "lon": -73.9447040 }, + { "lat": 40.8096989, "lon": -73.9460322 }, + { "lat": 40.8101882, "lon": -73.9471936 }, + { "lat": 40.8102335, "lon": -73.9472988 }, + { "lat": 40.8103039, "lon": -73.9474622 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "West 127th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46594129, + "bounds": { + "minlat": 40.8070890, + "minlon": -73.9444754, + "maxlat": 40.8082283, + "maxlon": -73.9417696 + }, + "nodes": [ + 42434117, + 10171956571, + 3846051359, + 3846051358, + 5015321231, + 9625658173 + ], + "geometry": [ + { "lat": 40.8070890, "lon": -73.9417696 }, + { "lat": 40.8071337, "lon": -73.9418797 }, + { "lat": 40.8074125, "lon": -73.9425391 }, + { "lat": 40.8078651, "lon": -73.9436139 }, + { "lat": 40.8078924, "lon": -73.9436788 }, + { "lat": 40.8082283, "lon": -73.9444754 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "West 126th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46594485, + "bounds": { + "minlat": 40.8147743, + "minlon": -73.9177556, + "maxlat": 40.8151602, + "maxlon": -73.9168457 + }, + "nodes": [ + 42746065, + 6415815508, + 7555037307 + ], + "geometry": [ + { "lat": 40.8151602, "lon": -73.9177556 }, + { "lat": 40.8151276, "lon": -73.9176834 }, + { "lat": 40.8147743, "lon": -73.9168457 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 148th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "148th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 46594494, + "bounds": { + "minlat": 40.8403269, + "minlon": -73.9303035, + "maxlat": 40.8423624, + "maxlon": -73.9293465 + }, + "nodes": [ + 595757801, + 9918293186, + 9918293185, + 9918293187, + 9918293188, + 9918293189, + 595757811, + 9918293190, + 595757812, + 11232429460, + 9918293191, + 9918293192, + 9918293193, + 9918293194, + 9918293195, + 9918293196, + 42759142 + ], + "geometry": [ + { "lat": 40.8403501, "lon": -73.9303035 }, + { "lat": 40.8403388, "lon": -73.9302770 }, + { "lat": 40.8403297, "lon": -73.9302445 }, + { "lat": 40.8403269, "lon": -73.9302106 }, + { "lat": 40.8403348, "lon": -73.9301743 }, + { "lat": 40.8403509, "lon": -73.9301354 }, + { "lat": 40.8403687, "lon": -73.9301044 }, + { "lat": 40.8403952, "lon": -73.9300831 }, + { "lat": 40.8404249, "lon": -73.9300660 }, + { "lat": 40.8410387, "lon": -73.9298225 }, + { "lat": 40.8416253, "lon": -73.9295837 }, + { "lat": 40.8416920, "lon": -73.9295657 }, + { "lat": 40.8417679, "lon": -73.9295584 }, + { "lat": 40.8418852, "lon": -73.9295520 }, + { "lat": 40.8419473, "lon": -73.9295364 }, + { "lat": 40.8420023, "lon": -73.9295145 }, + { "lat": 40.8423624, "lon": -73.9293465 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "unclassified", + "name": "Exterior Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Depot Pl Appr" + } +}, +{ + "type": "way", + "id": 46594506, + "bounds": { + "minlat": 40.8281953, + "minlon": -73.9116637, + "maxlat": 40.8290738, + "maxlon": -73.9111237 + }, + "nodes": [ + 42761108, + 7560827241, + 13031186634, + 13031207652, + 13031207653, + 7560827242, + 42761134 + ], + "geometry": [ + { "lat": 40.8281953, "lon": -73.9116637 }, + { "lat": 40.8286529, "lon": -73.9113810 }, + { "lat": 40.8289551, "lon": -73.9111279 }, + { "lat": 40.8289814, "lon": -73.9111237 }, + { "lat": 40.8289973, "lon": -73.9111288 }, + { "lat": 40.8290123, "lon": -73.9111399 }, + { "lat": 40.8290738, "lon": -73.9111912 } + ], + "tags": { + "highway": "residential", + "name": "Brook Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46594510, + "bounds": { + "minlat": 40.8164638, + "minlon": -73.9156715, + "maxlat": 40.8181680, + "maxlon": -73.9136450 + }, + "nodes": [ + 6415815558, + 6415814848, + 42746083, + 10121168832, + 13249095754, + 42746087 + ], + "geometry": [ + { "lat": 40.8164638, "lon": -73.9156715 }, + { "lat": 40.8165213, "lon": -73.9155957 }, + { "lat": 40.8171290, "lon": -73.9148530 }, + { "lat": 40.8180830, "lon": -73.9137438 }, + { "lat": 40.8181232, "lon": -73.9136971 }, + { "lat": 40.8181680, "lon": -73.9136450 } + ], + "tags": { + "highway": "residential", + "name": "Bergen Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bergen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46594580, + "bounds": { + "minlat": 40.8352623, + "minlon": -73.9212850, + "maxlat": 40.8357240, + "maxlon": -73.9199110 + }, + "nodes": [ + 42759437, + 13036543074, + 12998404098, + 42734195, + 5762094236, + 2408379355 + ], + "geometry": [ + { "lat": 40.8357240, "lon": -73.9212850 }, + { "lat": 40.8356947, "lon": -73.9211975 }, + { "lat": 40.8354267, "lon": -73.9203958 }, + { "lat": 40.8354009, "lon": -73.9203187 }, + { "lat": 40.8353725, "lon": -73.9202326 }, + { "lat": 40.8352623, "lon": -73.9199110 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 46594584, + "bounds": { + "minlat": 40.8165762, + "minlon": -73.9174600, + "maxlat": 40.8167610, + "maxlon": -73.9167513 + }, + "nodes": [ + 42733534, + 2912071214, + 6415815517, + 42733530 + ], + "geometry": [ + { "lat": 40.8165762, "lon": -73.9167513 }, + { "lat": 40.8166062, "lon": -73.9168790 }, + { "lat": 40.8167352, "lon": -73.9173656 }, + { "lat": 40.8167610, "lon": -73.9174600 } + ], + "tags": { + "cycleway:right": "track", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "East 150th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "150th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "turn:lanes": "left|through;right" + } +}, +{ + "type": "way", + "id": 46594617, + "bounds": { + "minlat": 40.8239297, + "minlon": -73.9114585, + "maxlat": 40.8242039, + "maxlon": -73.9108174 + }, + "nodes": [ + 4202516474, + 8415736884, + 42730077 + ], + "geometry": [ + { "lat": 40.8239297, "lon": -73.9114585 }, + { "lat": 40.8241886, "lon": -73.9108563 }, + { "lat": 40.8242039, "lon": -73.9108174 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Elton Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Elton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46594770, + "bounds": { + "minlat": 40.8389820, + "minlon": -73.9185920, + "maxlat": 40.8397056, + "maxlon": -73.9184017 + }, + "nodes": [ + 6286472234, + 7588079058, + 6286472235, + 7588079067, + 13036958382, + 42736040 + ], + "geometry": [ + { "lat": 40.8397056, "lon": -73.9184017 }, + { "lat": 40.8395308, "lon": -73.9184922 }, + { "lat": 40.8394056, "lon": -73.9185570 }, + { "lat": 40.8393578, "lon": -73.9185609 }, + { "lat": 40.8390446, "lon": -73.9185848 }, + { "lat": 40.8389820, "lon": -73.9185920 } + ], + "tags": { + "highway": "unclassified", + "name": "Plaza Drive", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46595121, + "bounds": { + "minlat": 40.8633776, + "minlon": -73.9090758, + "maxlat": 40.8652533, + "maxlon": -73.9085904 + }, + "nodes": [ + 2899216726, + 2899216727, + 2899216760, + 1396352595, + 2979499749, + 1396352598, + 5588819590, + 1396352586, + 5588819589, + 5968362332, + 9461627674 + ], + "geometry": [ + { "lat": 40.8633776, "lon": -73.9090758 }, + { "lat": 40.8636739, "lon": -73.9090600 }, + { "lat": 40.8638397, "lon": -73.9090425 }, + { "lat": 40.8639634, "lon": -73.9090294 }, + { "lat": 40.8640940, "lon": -73.9090020 }, + { "lat": 40.8646163, "lon": -73.9088926 }, + { "lat": 40.8648536, "lon": -73.9087937 }, + { "lat": 40.8649580, "lon": -73.9087431 }, + { "lat": 40.8650870, "lon": -73.9086771 }, + { "lat": 40.8652053, "lon": -73.9086140 }, + { "lat": 40.8652533, "lon": -73.9085904 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 46595125, + "bounds": { + "minlat": 40.8153306, + "minlon": -73.9310121, + "maxlat": 40.8167084, + "maxlon": -73.9306114 + }, + "nodes": [ + 42728921, + 595793828, + 5944426657, + 9163819535, + 42724266, + 13604753747, + 595790192 + ], + "geometry": [ + { "lat": 40.8153306, "lon": -73.9306114 }, + { "lat": 40.8155655, "lon": -73.9306380 }, + { "lat": 40.8160186, "lon": -73.9307271 }, + { "lat": 40.8160991, "lon": -73.9307536 }, + { "lat": 40.8161891, "lon": -73.9307913 }, + { "lat": 40.8164907, "lon": -73.9309196 }, + { "lat": 40.8167084, "lon": -73.9310121 } + ], + "tags": { + "destination": "Deegan Expressway;Yankee Stadium", + "destination:ref": "I 87 South", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 46595126, + "bounds": { + "minlat": 40.8194814, + "minlon": -73.9300638, + "maxlat": 40.8233134, + "maxlon": -73.9285612 + }, + "nodes": [ + 1213918465, + 8702031757, + 13146557965, + 42758654, + 13146557967, + 5079055357, + 2611678483, + 7043272427, + 7672826905, + 13337724676, + 7557695124, + 13337724677, + 13246259570, + 7557695123 + ], + "geometry": [ + { "lat": 40.8233134, "lon": -73.9285612 }, + { "lat": 40.8232018, "lon": -73.9286068 }, + { "lat": 40.8229235, "lon": -73.9287245 }, + { "lat": 40.8228446, "lon": -73.9287579 }, + { "lat": 40.8227364, "lon": -73.9287985 }, + { "lat": 40.8222870, "lon": -73.9289670 }, + { "lat": 40.8217711, "lon": -73.9291648 }, + { "lat": 40.8208949, "lon": -73.9295061 }, + { "lat": 40.8205195, "lon": -73.9296537 }, + { "lat": 40.8203209, "lon": -73.9297306 }, + { "lat": 40.8202675, "lon": -73.9297513 }, + { "lat": 40.8202013, "lon": -73.9297776 }, + { "lat": 40.8195652, "lon": -73.9300305 }, + { "lat": 40.8194814, "lon": -73.9300638 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "River Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 46607937, + "bounds": { + "minlat": 40.7303374, + "minlon": -74.0024762, + "maxlat": 40.7303491, + "maxlon": -74.0024382 + }, + "nodes": [ + 42431773, + 6213204047 + ], + "geometry": [ + { "lat": 40.7303374, "lon": -74.0024762 }, + { "lat": 40.7303491, "lon": -74.0024382 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Carmine Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46608204, + "bounds": { + "minlat": 40.7218850, + "minlon": -73.9797217, + "maxlat": 40.7228867, + "maxlon": -73.9773460 + }, + "nodes": [ + 42453160, + 8309479367, + 8309479356, + 42453158 + ], + "geometry": [ + { "lat": 40.7218850, "lon": -73.9773460 }, + { "lat": 40.7219281, "lon": -73.9774482 }, + { "lat": 40.7228504, "lon": -73.9796354 }, + { "lat": 40.7228867, "lon": -73.9797217 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 5th Street", + "name:ru": "Восточная 5-я стрит", + "name_1": "East 5 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46608205, + "bounds": { + "minlat": 40.7244940, + "minlon": -73.9861760, + "maxlat": 40.7264090, + "maxlon": -73.9816370 + }, + "nodes": [ + 42444827, + 7977873291, + 5481937325, + 7271387072, + 3316524005, + 7977873369, + 42444829, + 7977873368, + 7977832458, + 42444832 + ], + "geometry": [ + { "lat": 40.7264090, "lon": -73.9861760 }, + { "lat": 40.7263513, "lon": -73.9860393 }, + { "lat": 40.7262906, "lon": -73.9858955 }, + { "lat": 40.7259462, "lon": -73.9850815 }, + { "lat": 40.7257039, "lon": -73.9845051 }, + { "lat": 40.7255195, "lon": -73.9840682 }, + { "lat": 40.7254711, "lon": -73.9839534 }, + { "lat": 40.7254292, "lon": -73.9838542 }, + { "lat": 40.7245301, "lon": -73.9817225 }, + { "lat": 40.7244940, "lon": -73.9816370 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 6th Street", + "name:ru": "Восточная 6-я стрит", + "name_1": "East 6 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46608336, + "bounds": { + "minlat": 40.7294404, + "minlon": -73.9780286, + "maxlat": 40.7295617, + "maxlon": -73.9779380 + }, + "nodes": [ + 595655123, + 4298757027, + 42439001 + ], + "geometry": [ + { "lat": 40.7295617, "lon": -73.9779380 }, + { "lat": 40.7295181, "lon": -73.9779713 }, + { "lat": 40.7294404, "lon": -73.9780286 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "name": "14th Street Loop", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46608946, + "bounds": { + "minlat": 40.7337334, + "minlon": -74.0038740, + "maxlat": 40.7381290, + "maxlon": -74.0027408 + }, + "nodes": [ + 4320028826, + 4320028840, + 8307642097, + 42457728, + 8307642098, + 10168546915, + 42452598, + 10168548418, + 11591877895, + 42457421, + 11591877892, + 10168548424, + 42449076, + 10168548423, + 10168548421, + 42440940, + 10168548419, + 8307463719, + 42439078, + 8307463716, + 8307463700, + 42454742 + ], + "geometry": [ + { "lat": 40.7337334, "lon": -74.0027408 }, + { "lat": 40.7338218, "lon": -74.0028340 }, + { "lat": 40.7342091, "lon": -74.0029560 }, + { "lat": 40.7342533, "lon": -74.0029703 }, + { "lat": 40.7343035, "lon": -74.0029847 }, + { "lat": 40.7348549, "lon": -74.0031423 }, + { "lat": 40.7348912, "lon": -74.0031527 }, + { "lat": 40.7349549, "lon": -74.0031708 }, + { "lat": 40.7354980, "lon": -74.0033303 }, + { "lat": 40.7355308, "lon": -74.0033399 }, + { "lat": 40.7355983, "lon": -74.0033594 }, + { "lat": 40.7361468, "lon": -74.0035173 }, + { "lat": 40.7361983, "lon": -74.0035323 }, + { "lat": 40.7362460, "lon": -74.0035457 }, + { "lat": 40.7368003, "lon": -74.0037030 }, + { "lat": 40.7368390, "lon": -74.0037140 }, + { "lat": 40.7369030, "lon": -74.0037278 }, + { "lat": 40.7374803, "lon": -74.0038580 }, + { "lat": 40.7375440, "lon": -74.0038645 }, + { "lat": 40.7376125, "lon": -74.0038716 }, + { "lat": 40.7380826, "lon": -74.0038734 }, + { "lat": 40.7381290, "lon": -74.0038740 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 4th Street", + "name:ru": "Западная 4-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46609036, + "bounds": { + "minlat": 40.7387436, + "minlon": -74.0027775, + "maxlat": 40.7393750, + "maxlon": -74.0024001 + }, + "nodes": [ + 42429378, + 6213315371, + 6211332474, + 42432214 + ], + "geometry": [ + { "lat": 40.7387436, "lon": -74.0024001 }, + { "lat": 40.7388533, "lon": -74.0024658 }, + { "lat": 40.7392716, "lon": -74.0027163 }, + { "lat": 40.7393750, "lon": -74.0027775 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Greenwich Avenue", + "name:etymology:wikidata": "Q205380", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5604832", + "wikipedia": "en:Greenwich Avenue" + } +}, +{ + "type": "way", + "id": 46610717, + "bounds": { + "minlat": 40.7303210, + "minlon": -74.0046880, + "maxlat": 40.7309220, + "maxlon": -74.0028182 + }, + "nodes": [ + 42430770, + 8214320108, + 8214320102, + 42431524, + 8214331036, + 7201256357, + 8309469103, + 42431777 + ], + "geometry": [ + { "lat": 40.7303210, "lon": -74.0046880 }, + { "lat": 40.7303853, "lon": -74.0045151 }, + { "lat": 40.7304271, "lon": -74.0043657 }, + { "lat": 40.7304470, "lon": -74.0043030 }, + { "lat": 40.7304693, "lon": -74.0042332 }, + { "lat": 40.7308836, "lon": -74.0029385 }, + { "lat": 40.7309016, "lon": -74.0028821 }, + { "lat": 40.7309220, "lon": -74.0028182 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Leroy Street", + "name:etymology:wikidata": "Q121745745", + "name:ko": "르로이 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46610719, + "bounds": { + "minlat": 40.7403827, + "minlon": -74.0073881, + "maxlat": 40.7409125, + "maxlon": -74.0061308 + }, + "nodes": [ + 13859173272, + 12162436947, + 8262308721 + ], + "geometry": [ + { "lat": 40.7403827, "lon": -74.0061308 }, + { "lat": 40.7408991, "lon": -74.0073564 }, + { "lat": 40.7409125, "lon": -74.0073881 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (We-Fr 14:00-22:00; Sa-Su 12:00-22:00))", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "name_1": "West 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 46610721, + "bounds": { + "minlat": 40.7393829, + "minlon": -74.0080522, + "maxlat": 40.7403058, + "maxlon": -74.0079432 + }, + "nodes": [ + 42431154, + 12162436940, + 8262308729, + 12162436939, + 12162436943, + 12162436936, + 12162301597, + 1042457810, + 42455357 + ], + "geometry": [ + { "lat": 40.7403058, "lon": -74.0079432 }, + { "lat": 40.7402757, "lon": -74.0079568 }, + { "lat": 40.7402447, "lon": -74.0079703 }, + { "lat": 40.7402246, "lon": -74.0079761 }, + { "lat": 40.7402029, "lon": -74.0079805 }, + { "lat": 40.7401832, "lon": -74.0079838 }, + { "lat": 40.7395043, "lon": -74.0080433 }, + { "lat": 40.7394503, "lon": -74.0080446 }, + { "lat": 40.7393829, "lon": -74.0080522 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46610722, + "bounds": { + "minlat": 40.7409804, + "minlon": -74.0054299, + "maxlat": 40.7416809, + "maxlon": -74.0049194 + }, + "nodes": [ + 4557517550, + 8262308750, + 2985573626, + 4557517554 + ], + "geometry": [ + { "lat": 40.7416809, "lon": -74.0049194 }, + { "lat": 40.7416175, "lon": -74.0049667 }, + { "lat": 40.7410783, "lon": -74.0053690 }, + { "lat": 40.7409804, "lon": -74.0054299 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:surface": "paving_stones", + "highway": "pedestrian", + "lane_markings": "no", + "motor_vehicle:conditional": "no @ (We-Fr 14:00-22:00; Sa-Su 12:00-22:00))", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 46610724, + "bounds": { + "minlat": 40.7324303, + "minlon": -74.0034387, + "maxlat": 40.7328410, + "maxlon": -74.0021240 + }, + "nodes": [ + 5837088104, + 5837101294, + 6923836165, + 6923836173, + 6923836167, + 5151983466, + 6923836162, + 6923836171, + 6923836169, + 4816151672, + 8764758197, + 4320032276, + 42451987 + ], + "geometry": [ + { "lat": 40.7325066, "lon": -74.0034387 }, + { "lat": 40.7324479, "lon": -74.0033705 }, + { "lat": 40.7324419, "lon": -74.0033612 }, + { "lat": 40.7324369, "lon": -74.0033506 }, + { "lat": 40.7324337, "lon": -74.0033395 }, + { "lat": 40.7324316, "lon": -74.0033287 }, + { "lat": 40.7324303, "lon": -74.0033171 }, + { "lat": 40.7324304, "lon": -74.0033063 }, + { "lat": 40.7324336, "lon": -74.0032844 }, + { "lat": 40.7324376, "lon": -74.0032654 }, + { "lat": 40.7327988, "lon": -74.0022439 }, + { "lat": 40.7328198, "lon": -74.0021841 }, + { "lat": 40.7328410, "lon": -74.0021240 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Barrow Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46610725, + "bounds": { + "minlat": 40.7323690, + "minlon": -74.0064889, + "maxlat": 40.7332265, + "maxlon": -74.0030292 + }, + "nodes": [ + 42436390, + 8288270307, + 42427898, + 8429031340, + 42431536, + 8429031337, + 8429015933, + 42431797, + 529556011, + 8429015932, + 4320028830, + 42430803 + ], + "geometry": [ + { "lat": 40.7324250, "lon": -74.0064889 }, + { "lat": 40.7324160, "lon": -74.0063810 }, + { "lat": 40.7323690, "lon": -74.0058160 }, + { "lat": 40.7324372, "lon": -74.0055116 }, + { "lat": 40.7324485, "lon": -74.0054610 }, + { "lat": 40.7324628, "lon": -74.0054165 }, + { "lat": 40.7329069, "lon": -74.0040321 }, + { "lat": 40.7329250, "lon": -74.0039756 }, + { "lat": 40.7329359, "lon": -74.0039421 }, + { "lat": 40.7329422, "lon": -74.0039221 }, + { "lat": 40.7331641, "lon": -74.0032143 }, + { "lat": 40.7332265, "lon": -74.0030292 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Grove Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46610726, + "bounds": { + "minlat": 40.7316248, + "minlon": -74.0066039, + "maxlat": 40.7322982, + "maxlon": -74.0035825 + }, + "nodes": [ + 5837088105, + 6923836168, + 5837101292, + 6923836172, + 6923836174, + 6923836163, + 6923836170, + 6923836166, + 5837101293, + 4320035374, + 11034728137, + 8429014585, + 42431531, + 8307641986, + 4816151662, + 4816151664, + 4816151663, + 42431275, + 42452001, + 8288270291, + 42436384 + ], + "geometry": [ + { "lat": 40.7322539, "lon": -74.0035825 }, + { "lat": 40.7322855, "lon": -74.0036310 }, + { "lat": 40.7322895, "lon": -74.0036376 }, + { "lat": 40.7322927, "lon": -74.0036442 }, + { "lat": 40.7322953, "lon": -74.0036515 }, + { "lat": 40.7322973, "lon": -74.0036596 }, + { "lat": 40.7322982, "lon": -74.0036670 }, + { "lat": 40.7322981, "lon": -74.0036755 }, + { "lat": 40.7322962, "lon": -74.0036887 }, + { "lat": 40.7322874, "lon": -74.0037175 }, + { "lat": 40.7318554, "lon": -74.0050470 }, + { "lat": 40.7318510, "lon": -74.0050606 }, + { "lat": 40.7318361, "lon": -74.0051065 }, + { "lat": 40.7318227, "lon": -74.0051500 }, + { "lat": 40.7316676, "lon": -74.0056551 }, + { "lat": 40.7316345, "lon": -74.0058028 }, + { "lat": 40.7316331, "lon": -74.0058828 }, + { "lat": 40.7316248, "lon": -74.0060166 }, + { "lat": 40.7316336, "lon": -74.0061759 }, + { "lat": 40.7316618, "lon": -74.0065073 }, + { "lat": 40.7316700, "lon": -74.0066039 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Barrow Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46610727, + "bounds": { + "minlat": 40.7314049, + "minlon": -74.0040681, + "maxlat": 40.7322539, + "maxlon": -74.0035825 + }, + "nodes": [ + 5837088105, + 5151983467, + 42430796, + 8959133939 + ], + "geometry": [ + { "lat": 40.7322539, "lon": -74.0035825 }, + { "lat": 40.7321384, "lon": -74.0036485 }, + { "lat": 40.7318924, "lon": -74.0037892 }, + { "lat": 40.7314049, "lon": -74.0040681 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46610734, + "bounds": { + "minlat": 40.7357626, + "minlon": -74.0021360, + "maxlat": 40.7370660, + "maxlon": -74.0017616 + }, + "nodes": [ + 42433278, + 8262308519, + 8262308512, + 42433275, + 8262308510, + 8262308501, + 42433272 + ], + "geometry": [ + { "lat": 40.7370660, "lon": -74.0021360 }, + { "lat": 40.7370271, "lon": -74.0021247 }, + { "lat": 40.7364637, "lon": -74.0019617 }, + { "lat": 40.7364234, "lon": -74.0019508 }, + { "lat": 40.7363631, "lon": -74.0019329 }, + { "lat": 40.7358311, "lon": -74.0017801 }, + { "lat": 40.7357626, "lon": -74.0017616 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Waverly Place", + "name:etymology:wikidata": "Q678251", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4993391", + "wikipedia": "en:Waverly Place" + } +}, +{ + "type": "way", + "id": 46613627, + "bounds": { + "minlat": 40.8055631, + "minlon": -73.9527966, + "maxlat": 40.8058775, + "maxlon": -73.9527854 + }, + "nodes": [ + 12774284688, + 11840449870, + 42432900 + ], + "geometry": [ + { "lat": 40.8055631, "lon": -73.9527854 }, + { "lat": 40.8057939, "lon": -73.9527936 }, + { "lat": 40.8058775, "lon": -73.9527966 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "sidewalk:both": "separate", + "turn:lanes:forward": "left|none", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 46613630, + "bounds": { + "minlat": 40.8535859, + "minlon": -73.9637699, + "maxlat": 40.8540291, + "maxlon": -73.9635095 + }, + "nodes": [ + 103121480, + 9973298518, + 9973298517, + 76465622 + ], + "geometry": [ + { "lat": 40.8535859, "lon": -73.9637699 }, + { "lat": 40.8536251, "lon": -73.9636731 }, + { "lat": 40.8539674, "lon": -73.9635095 }, + { "lat": 40.8540291, "lon": -73.9635538 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "maxheight": "13'2\"", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "oneway": "yes", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 46613631, + "bounds": { + "minlat": 40.8817271, + "minlon": -73.9508570, + "maxlat": 40.8828646, + "maxlon": -73.9500447 + }, + "nodes": [ + 4204322156, + 7930376716, + 103215754, + 7772033025, + 7930376707, + 7930376701, + 103215756, + 7930376699, + 7930376714, + 103215757, + 7930376706, + 7930376713, + 103215760, + 7930376698, + 103215762 + ], + "geometry": [ + { "lat": 40.8817271, "lon": -73.9508570 }, + { "lat": 40.8818315, "lon": -73.9508142 }, + { "lat": 40.8819346, "lon": -73.9507674 }, + { "lat": 40.8819864, "lon": -73.9507415 }, + { "lat": 40.8820375, "lon": -73.9507134 }, + { "lat": 40.8821399, "lon": -73.9506542 }, + { "lat": 40.8822048, "lon": -73.9506132 }, + { "lat": 40.8822429, "lon": -73.9505884 }, + { "lat": 40.8823354, "lon": -73.9505242 }, + { "lat": 40.8824311, "lon": -73.9504509 }, + { "lat": 40.8825244, "lon": -73.9503748 }, + { "lat": 40.8826152, "lon": -73.9502945 }, + { "lat": 40.8826908, "lon": -73.9502248 }, + { "lat": 40.8827813, "lon": -73.9501335 }, + { "lat": 40.8828646, "lon": -73.9500447 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Sylvan Avenue", + "rcn_ref": "9", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 46613632, + "bounds": { + "minlat": 40.8041987, + "minlon": -73.9577147, + "maxlat": 40.8062968, + "maxlon": -73.9527337 + }, + "nodes": [ + 42432894, + 10171219265, + 7433986963, + 11298919666, + 42435766, + 11298975869, + 7892274600, + 10168010393, + 42447323, + 6814306908, + 8151881633, + 6814306909, + 42440112 + ], + "geometry": [ + { "lat": 40.8041987, "lon": -73.9527337 }, + { "lat": 40.8042495, "lon": -73.9528562 }, + { "lat": 40.8044592, "lon": -73.9533622 }, + { "lat": 40.8050494, "lon": -73.9547634 }, + { "lat": 40.8050938, "lon": -73.9548742 }, + { "lat": 40.8051363, "lon": -73.9549742 }, + { "lat": 40.8054042, "lon": -73.9556045 }, + { "lat": 40.8056736, "lon": -73.9562432 }, + { "lat": 40.8057124, "lon": -73.9563350 }, + { "lat": 40.8057509, "lon": -73.9564269 }, + { "lat": 40.8062286, "lon": -73.9575526 }, + { "lat": 40.8062475, "lon": -73.9575939 }, + { "lat": 40.8062968, "lon": -73.9577147 } + ], + "tags": { + "highway": "residential", + "name": "West 117th Street", + "name:ru": "Западная 117-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46613633, + "bounds": { + "minlat": 40.8039345, + "minlon": -73.9527337, + "maxlat": 40.8041987, + "maxlon": -73.9521121 + }, + "nodes": [ + 42439849, + 8758287376, + 10171219262, + 42432894 + ], + "geometry": [ + { "lat": 40.8039345, "lon": -73.9521121 }, + { "lat": 40.8039796, "lon": -73.9522182 }, + { "lat": 40.8041343, "lon": -73.9525822 }, + { "lat": 40.8041987, "lon": -73.9527337 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "West 117th Street", + "name:ru": "Западная 117-я стрит", + "oneway": "yes", + "route": "bicycle", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46613634, + "bounds": { + "minlat": 40.8019710, + "minlon": -73.9514846, + "maxlat": 40.8044957, + "maxlon": -73.9455080 + }, + "nodes": [ + 2141026492, + 8758345337, + 7477877422, + 9559461849, + 3099327966, + 42452564, + 7004372907, + 5481977585, + 13703661289, + 10167137535, + 42439485 + ], + "geometry": [ + { "lat": 40.8044957, "lon": -73.9514846 }, + { "lat": 40.8044531, "lon": -73.9513839 }, + { "lat": 40.8041206, "lon": -73.9505964 }, + { "lat": 40.8034088, "lon": -73.9489110 }, + { "lat": 40.8033718, "lon": -73.9488235 }, + { "lat": 40.8033044, "lon": -73.9486636 }, + { "lat": 40.8032655, "lon": -73.9485715 }, + { "lat": 40.8022763, "lon": -73.9462272 }, + { "lat": 40.8021423, "lon": -73.9459114 }, + { "lat": 40.8020245, "lon": -73.9456339 }, + { "lat": 40.8019710, "lon": -73.9455080 } + ], + "tags": { + "highway": "residential", + "name": "West 118th Street", + "name:ru": "Западная 118-я стрит", + "name_1": "West 118 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46613635, + "bounds": { + "minlat": 40.8045644, + "minlon": -73.9527655, + "maxlat": 40.8050309, + "maxlon": -73.9516496 + }, + "nodes": [ + 42432897, + 11840449874, + 8758287375, + 42439851 + ], + "geometry": [ + { "lat": 40.8050309, "lon": -73.9527655 }, + { "lat": 40.8049720, "lon": -73.9526245 }, + { "lat": 40.8046092, "lon": -73.9517565 }, + { "lat": 40.8045644, "lon": -73.9516496 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "secondary", + "name": "West 118th Street", + "name:ru": "Западная 118-я стрит", + "name_1": "West 118 Street", + "network": "lcn", + "oneway": "yes", + "rcn_ref": "9", + "route": "bicycle" + } +}, +{ + "type": "way", + "id": 46613643, + "bounds": { + "minlat": 40.8482164, + "minlon": -73.9419746, + "maxlat": 40.8483199, + "maxlon": -73.9414100 + }, + "nodes": [ + 42428114, + 595448714, + 7911327445, + 9908572543, + 12159955529 + ], + "geometry": [ + { "lat": 40.8482164, "lon": -73.9414100 }, + { "lat": 40.8483115, "lon": -73.9419004 }, + { "lat": 40.8483154, "lon": -73.9419275 }, + { "lat": 40.8483188, "lon": -73.9419607 }, + { "lat": 40.8483199, "lon": -73.9419746 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 177th Street", + "name_1": "West 177 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "177th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 46613645, + "bounds": { + "minlat": 40.8478420, + "minlon": -73.9414100, + "maxlat": 40.8482164, + "maxlon": -73.9395229 + }, + "nodes": [ + 42427168, + 9566938945, + 9566938946, + 42458936, + 9566938948, + 5048446874, + 42428114 + ], + "geometry": [ + { "lat": 40.8478420, "lon": -73.9395229 }, + { "lat": 40.8478678, "lon": -73.9396343 }, + { "lat": 40.8480077, "lon": -73.9403508 }, + { "lat": 40.8480246, "lon": -73.9404342 }, + { "lat": 40.8480407, "lon": -73.9405183 }, + { "lat": 40.8481999, "lon": -73.9413247 }, + { "lat": 40.8482164, "lon": -73.9414100 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 177th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "177th", + "tiger:name_base_1": "177", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 46613654, + "bounds": { + "minlat": 40.8023660, + "minlon": -73.9526870, + "maxlat": 40.8028555, + "maxlon": -73.9525833 + }, + "nodes": [ + 42433173, + 10168729771, + 4925259781, + 9150629538, + 9150629539, + 8758345343, + 1705982030 + ], + "geometry": [ + { "lat": 40.8023660, "lon": -73.9525882 }, + { "lat": 40.8024384, "lon": -73.9525833 }, + { "lat": 40.8027215, "lon": -73.9525913 }, + { "lat": 40.8027528, "lon": -73.9525970 }, + { "lat": 40.8027705, "lon": -73.9526077 }, + { "lat": 40.8027889, "lon": -73.9526239 }, + { "lat": 40.8028555, "lon": -73.9526870 } + ], + "tags": { + "highway": "tertiary", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 46613655, + "bounds": { + "minlat": 40.8041987, + "minlon": -73.9527475, + "maxlat": 40.8045323, + "maxlon": -73.9527337 + }, + "nodes": [ + 42432894, + 10171219264, + 4207743627 + ], + "geometry": [ + { "lat": 40.8041987, "lon": -73.9527337 }, + { "lat": 40.8042793, "lon": -73.9527367 }, + { "lat": 40.8045323, "lon": -73.9527475 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "sidewalk:both": "separate", + "turn:lanes:backward": "through|right", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 46613656, + "bounds": { + "minlat": 40.7990263, + "minlon": -73.9525912, + "maxlat": 40.8023660, + "maxlon": -73.9524352 + }, + "nodes": [ + 42433161, + 7802964932, + 7803460136, + 42433163, + 7803460148, + 10165996984, + 42431201, + 10165996985, + 10165996992, + 42433165, + 10165996993, + 10168729775, + 42433173 + ], + "geometry": [ + { "lat": 40.7990263, "lon": -73.9524352 }, + { "lat": 40.7990888, "lon": -73.9524370 }, + { "lat": 40.7997828, "lon": -73.9524699 }, + { "lat": 40.7998583, "lon": -73.9524733 }, + { "lat": 40.7999331, "lon": -73.9524767 }, + { "lat": 40.8006129, "lon": -73.9525079 }, + { "lat": 40.8006859, "lon": -73.9525112 }, + { "lat": 40.8007710, "lon": -73.9525151 }, + { "lat": 40.8014591, "lon": -73.9525463 }, + { "lat": 40.8015271, "lon": -73.9525498 }, + { "lat": 40.8016184, "lon": -73.9525551 }, + { "lat": 40.8022972, "lon": -73.9525912 }, + { "lat": 40.8023660, "lon": -73.9525882 } + ], + "tags": { + "highway": "tertiary", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 46613657, + "bounds": { + "minlat": 40.7991806, + "minlon": -73.9553585, + "maxlat": 40.7994068, + "maxlon": -73.9552205 + }, + "nodes": [ + 595703216, + 9908455761, + 2058920045, + 595703218, + 9908455762, + 2058920054, + 12818364907, + 2141026499 + ], + "geometry": [ + { "lat": 40.7991806, "lon": -73.9553585 }, + { "lat": 40.7992064, "lon": -73.9553580 }, + { "lat": 40.7992338, "lon": -73.9553534 }, + { "lat": 40.7992639, "lon": -73.9553416 }, + { "lat": 40.7992904, "lon": -73.9553275 }, + { "lat": 40.7993266, "lon": -73.9552983 }, + { "lat": 40.7993685, "lon": -73.9552578 }, + { "lat": 40.7994068, "lon": -73.9552205 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "7th Avenue", + "bicycle": "designated", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "no", + "highway": "service", + "lanes": "3", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "oneway:bicycle": "yes", + "route": "bicycle", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 46613659, + "bounds": { + "minlat": 40.7983189, + "minlon": -73.9546892, + "maxlat": 40.7986297, + "maxlon": -73.9541717 + }, + "nodes": [ + 595703224, + 9178942113, + 9178942114, + 9178942121, + 9178942120, + 9178942119, + 12815989214, + 247225032 + ], + "geometry": [ + { "lat": 40.7983189, "lon": -73.9541717 }, + { "lat": 40.7983438, "lon": -73.9542255 }, + { "lat": 40.7983745, "lon": -73.9542769 }, + { "lat": 40.7984126, "lon": -73.9543354 }, + { "lat": 40.7984682, "lon": -73.9544083 }, + { "lat": 40.7985255, "lon": -73.9544987 }, + { "lat": 40.7985810, "lon": -73.9545885 }, + { "lat": 40.7986297, "lon": -73.9546892 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "hgv": "no", + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Lenox Avenue Approach", + "oneway": "yes", + "oneway:bicycle": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46613661, + "bounds": { + "minlat": 40.7970958, + "minlon": -73.9497360, + "maxlat": 40.7971515, + "maxlon": -73.9490776 + }, + "nodes": [ + 42432352, + 42432351, + 42432349, + 5706570107, + 42432347, + 42432346, + 6783696429, + 5706569344, + 42432342, + 6783696413, + 1695379679, + 5706570106, + 595703225, + 6783696478, + 5706569345, + 595703226 + ], + "geometry": [ + { "lat": 40.7971010, "lon": -73.9490776 }, + { "lat": 40.7971177, "lon": -73.9491301 }, + { "lat": 40.7971352, "lon": -73.9491866 }, + { "lat": 40.7971427, "lon": -73.9492299 }, + { "lat": 40.7971489, "lon": -73.9492741 }, + { "lat": 40.7971515, "lon": -73.9493226 }, + { "lat": 40.7971477, "lon": -73.9493720 }, + { "lat": 40.7971421, "lon": -73.9494135 }, + { "lat": 40.7971301, "lon": -73.9494566 }, + { "lat": 40.7971185, "lon": -73.9494910 }, + { "lat": 40.7971049, "lon": -73.9495282 }, + { "lat": 40.7970990, "lon": -73.9495628 }, + { "lat": 40.7970958, "lon": -73.9495980 }, + { "lat": 40.7970964, "lon": -73.9496448 }, + { "lat": 40.7970959, "lon": -73.9496779 }, + { "lat": 40.7970992, "lon": -73.9497360 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "no", + "lit": "yes", + "name": "Duke Ellington Circle", + "name:etymology:wikidata": "Q4030", + "old_name": "Frawley Circle", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5312765" + } +}, +{ + "type": "way", + "id": 46613662, + "bounds": { + "minlat": 40.7965774, + "minlon": -73.9494082, + "maxlat": 40.7967335, + "maxlon": -73.9488554 + }, + "nodes": [ + 42432395, + 7123798410, + 42432391, + 6783696416, + 42432388, + 9177562831, + 5706569883, + 42432385, + 42432381, + 5706569884, + 6783696463, + 42432379, + 5706570109, + 42432376 + ], + "geometry": [ + { "lat": 40.7966362, "lon": -73.9494082 }, + { "lat": 40.7966150, "lon": -73.9493230 }, + { "lat": 40.7966000, "lon": -73.9492822 }, + { "lat": 40.7965857, "lon": -73.9492398 }, + { "lat": 40.7965774, "lon": -73.9491951 }, + { "lat": 40.7965777, "lon": -73.9491594 }, + { "lat": 40.7965825, "lon": -73.9491109 }, + { "lat": 40.7965918, "lon": -73.9490605 }, + { "lat": 40.7966056, "lon": -73.9490168 }, + { "lat": 40.7966200, "lon": -73.9489865 }, + { "lat": 40.7966425, "lon": -73.9489520 }, + { "lat": 40.7966690, "lon": -73.9489194 }, + { "lat": 40.7966950, "lon": -73.9488894 }, + { "lat": 40.7967335, "lon": -73.9488554 } + ], + "tags": { + "check_date:surface": "2024-11-19", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Duke Ellington Circle", + "name:etymology:wikidata": "Q4030", + "old_name": "Frawley Circle", + "oneway": "yes", + "parking:lane:right": "no_parking", + "surface": "paved", + "wikidata": "Q5312765" + } +}, +{ + "type": "way", + "id": 46613683, + "bounds": { + "minlat": 40.7936433, + "minlon": -73.9626863, + "maxlat": 40.7941730, + "maxlon": -73.9615687 + }, + "nodes": [ + 595703303, + 9908460321, + 9908460322, + 582992305, + 9908460324, + 2057103366, + 2057103367, + 166614618, + 9908460325, + 2057103368, + 2057103369, + 2057103371, + 2057103375, + 2057103376, + 7571414447 + ], + "geometry": [ + { "lat": 40.7936433, "lon": -73.9615687 }, + { "lat": 40.7937009, "lon": -73.9617559 }, + { "lat": 40.7937273, "lon": -73.9618287 }, + { "lat": 40.7937419, "lon": -73.9618711 }, + { "lat": 40.7937616, "lon": -73.9619193 }, + { "lat": 40.7937790, "lon": -73.9619587 }, + { "lat": 40.7938131, "lon": -73.9620284 }, + { "lat": 40.7938566, "lon": -73.9621107 }, + { "lat": 40.7939125, "lon": -73.9622075 }, + { "lat": 40.7940151, "lon": -73.9623721 }, + { "lat": 40.7940451, "lon": -73.9624219 }, + { "lat": 40.7940818, "lon": -73.9624895 }, + { "lat": 40.7941154, "lon": -73.9625588 }, + { "lat": 40.7941451, "lon": -73.9626227 }, + { "lat": 40.7941730, "lon": -73.9626863 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "hgv": "no", + "highway": "service", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West 100th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46613684, + "bounds": { + "minlat": 40.7936407, + "minlon": -73.9615687, + "maxlat": 40.7936822, + "maxlon": -73.9610489 + }, + "nodes": [ + 595703304, + 9908460320, + 9908460319, + 595703305, + 9908460318, + 9908460317, + 595703303 + ], + "geometry": [ + { "lat": 40.7936822, "lon": -73.9610489 }, + { "lat": 40.7936606, "lon": -73.9611666 }, + { "lat": 40.7936528, "lon": -73.9612242 }, + { "lat": 40.7936448, "lon": -73.9612943 }, + { "lat": 40.7936411, "lon": -73.9613639 }, + { "lat": 40.7936407, "lon": -73.9614309 }, + { "lat": 40.7936433, "lon": -73.9615687 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "hgv": "no", + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West 100th Street", + "name:ru": "Западная 100-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46613685, + "bounds": { + "minlat": 40.7933921, + "minlon": -73.9615687, + "maxlat": 40.7936433, + "maxlon": -73.9614614 + }, + "nodes": [ + 595703303, + 2057103357, + 2057103355, + 9908455814, + 595703306, + 9908455815, + 9908455816, + 595703307 + ], + "geometry": [ + { "lat": 40.7936433, "lon": -73.9615687 }, + { "lat": 40.7936001, "lon": -73.9615093 }, + { "lat": 40.7935793, "lon": -73.9614935 }, + { "lat": 40.7935512, "lon": -73.9614802 }, + { "lat": 40.7935190, "lon": -73.9614705 }, + { "lat": 40.7934925, "lon": -73.9614650 }, + { "lat": 40.7934599, "lon": -73.9614630 }, + { "lat": 40.7933921, "lon": -73.9614614 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "hgv": "no", + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West 100th Street", + "name:ru": "Западная 100-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46613687, + "bounds": { + "minlat": 40.7829668, + "minlon": -73.9690390, + "maxlat": 40.7837431, + "maxlon": -73.9678511 + }, + "nodes": [ + 247224529, + 9908460391, + 9908460392, + 9908460393, + 4332540840, + 9908460394, + 247224530, + 9908460395, + 9908460396, + 1071832237, + 9908460397, + 9908460398, + 4332540831 + ], + "geometry": [ + { "lat": 40.7837431, "lon": -73.9678511 }, + { "lat": 40.7836495, "lon": -73.9679531 }, + { "lat": 40.7835728, "lon": -73.9680462 }, + { "lat": 40.7834915, "lon": -73.9681515 }, + { "lat": 40.7834341, "lon": -73.9682299 }, + { "lat": 40.7833614, "lon": -73.9683376 }, + { "lat": 40.7832997, "lon": -73.9684341 }, + { "lat": 40.7832471, "lon": -73.9685279 }, + { "lat": 40.7831867, "lon": -73.9686490 }, + { "lat": 40.7830935, "lon": -73.9688362 }, + { "lat": 40.7830599, "lon": -73.9688981 }, + { "lat": 40.7830195, "lon": -73.9689654 }, + { "lat": 40.7829668, "lon": -73.9690390 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46613691, + "bounds": { + "minlat": 40.7780983, + "minlon": -73.9664994, + "maxlat": 40.7812284, + "maxlon": -73.9638119 + }, + "nodes": [ + 480492947, + 9178942025, + 2216963889, + 9178942026, + 9178942027, + 247221429, + 9178942028, + 247221628, + 9908358284, + 7094731954, + 9178942030, + 432751368, + 9178942031, + 247221629, + 9178942032, + 9908358285, + 2216963893, + 9178942033, + 9908358286, + 9178942034, + 247221630, + 9178942035, + 2216963894, + 2216963895, + 9178942037, + 9178942038, + 9908390666, + 247224743, + 9178942039, + 42433923, + 9178942040, + 1382339052, + 9178942041, + 1382339074, + 7094731945, + 1382339043, + 1382339088 + ], + "geometry": [ + { "lat": 40.7780983, "lon": -73.9664994 }, + { "lat": 40.7783673, "lon": -73.9663191 }, + { "lat": 40.7784376, "lon": -73.9662648 }, + { "lat": 40.7785032, "lon": -73.9662093 }, + { "lat": 40.7785759, "lon": -73.9661446 }, + { "lat": 40.7786453, "lon": -73.9660744 }, + { "lat": 40.7787208, "lon": -73.9659877 }, + { "lat": 40.7787874, "lon": -73.9659058 }, + { "lat": 40.7788642, "lon": -73.9658062 }, + { "lat": 40.7790384, "lon": -73.9655689 }, + { "lat": 40.7790954, "lon": -73.9654971 }, + { "lat": 40.7791499, "lon": -73.9654294 }, + { "lat": 40.7792092, "lon": -73.9653637 }, + { "lat": 40.7792700, "lon": -73.9653000 }, + { "lat": 40.7793471, "lon": -73.9652254 }, + { "lat": 40.7794248, "lon": -73.9651502 }, + { "lat": 40.7794998, "lon": -73.9650850 }, + { "lat": 40.7795791, "lon": -73.9650206 }, + { "lat": 40.7796525, "lon": -73.9649641 }, + { "lat": 40.7797420, "lon": -73.9649025 }, + { "lat": 40.7798265, "lon": -73.9648506 }, + { "lat": 40.7799251, "lon": -73.9647926 }, + { "lat": 40.7800215, "lon": -73.9647401 }, + { "lat": 40.7802974, "lon": -73.9646060 }, + { "lat": 40.7803750, "lon": -73.9645614 }, + { "lat": 40.7804620, "lon": -73.9645074 }, + { "lat": 40.7805092, "lon": -73.9644743 }, + { "lat": 40.7805435, "lon": -73.9644502 }, + { "lat": 40.7806347, "lon": -73.9643830 }, + { "lat": 40.7807187, "lon": -73.9643212 }, + { "lat": 40.7808090, "lon": -73.9642538 }, + { "lat": 40.7809107, "lon": -73.9641689 }, + { "lat": 40.7809852, "lon": -73.9641025 }, + { "lat": 40.7810518, "lon": -73.9640355 }, + { "lat": 40.7811127, "lon": -73.9639664 }, + { "lat": 40.7811754, "lon": -73.9638869 }, + { "lat": 40.7812284, "lon": -73.9638119 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "6" + } +}, +{ + "type": "way", + "id": 46613692, + "bounds": { + "minlat": 40.7815071, + "minlon": -73.9627223, + "maxlat": 40.7839495, + "maxlon": -73.9590659 + }, + "nodes": [ + 595703325, + 9178942046, + 42433930, + 1901016116, + 9178942047, + 4304633107, + 4304633105, + 9178942048, + 247224745, + 9178942049, + 4304633089, + 9908358287, + 247224746, + 4304633099, + 9178942050, + 247224747, + 9908358288, + 4304633122, + 247224997, + 9178942051, + 9908358289, + 9178942052, + 9178942053, + 9908390661 + ], + "geometry": [ + { "lat": 40.7815989, "lon": -73.9627223 }, + { "lat": 40.7816142, "lon": -73.9626434 }, + { "lat": 40.7816240, "lon": -73.9625606 }, + { "lat": 40.7816261, "lon": -73.9624733 }, + { "lat": 40.7816198, "lon": -73.9623809 }, + { "lat": 40.7816043, "lon": -73.9622476 }, + { "lat": 40.7815304, "lon": -73.9617600 }, + { "lat": 40.7815201, "lon": -73.9616636 }, + { "lat": 40.7815099, "lon": -73.9615569 }, + { "lat": 40.7815071, "lon": -73.9614631 }, + { "lat": 40.7815097, "lon": -73.9613803 }, + { "lat": 40.7815166, "lon": -73.9612878 }, + { "lat": 40.7815288, "lon": -73.9612014 }, + { "lat": 40.7815460, "lon": -73.9611312 }, + { "lat": 40.7815712, "lon": -73.9610474 }, + { "lat": 40.7816021, "lon": -73.9609629 }, + { "lat": 40.7816360, "lon": -73.9608873 }, + { "lat": 40.7816787, "lon": -73.9608072 }, + { "lat": 40.7817209, "lon": -73.9607495 }, + { "lat": 40.7817660, "lon": -73.9606924 }, + { "lat": 40.7818084, "lon": -73.9606491 }, + { "lat": 40.7818529, "lon": -73.9606117 }, + { "lat": 40.7819025, "lon": -73.9605700 }, + { "lat": 40.7839495, "lon": -73.9590659 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "6" + } +}, +{ + "type": "way", + "id": 46613696, + "bounds": { + "minlat": 40.7816986, + "minlon": -73.9670266, + "maxlat": 40.7843689, + "maxlon": -73.9629964 + }, + "nodes": [ + 1901016118, + 1382339073, + 6978018329, + 9906895087, + 6978018328, + 6978018330, + 2059303986, + 6978018341, + 280576069, + 2059303989, + 9170796882, + 9906895086, + 2059303995, + 9906895085, + 2059304001, + 2059304002, + 1382339054, + 1382339068, + 9170796881, + 1382339060, + 1382339063, + 42449193, + 1382339083, + 1382339081, + 1382339086, + 1382339053, + 9906895084, + 12099277766, + 9170796880, + 1382339080, + 1382339070, + 9906895082, + 375858655, + 12099277776, + 12099277773, + 1901016170, + 2059304006, + 2059304007, + 375858656, + 2059304009, + 2059304010, + 2059304012, + 9906895081, + 595703333, + 2059304015 + ], + "geometry": [ + { "lat": 40.7816986, "lon": -73.9629964 }, + { "lat": 40.7817388, "lon": -73.9630586 }, + { "lat": 40.7817851, "lon": -73.9631137 }, + { "lat": 40.7818422, "lon": -73.9631732 }, + { "lat": 40.7818999, "lon": -73.9632270 }, + { "lat": 40.7819760, "lon": -73.9632891 }, + { "lat": 40.7820657, "lon": -73.9633542 }, + { "lat": 40.7821327, "lon": -73.9633959 }, + { "lat": 40.7822065, "lon": -73.9634363 }, + { "lat": 40.7822741, "lon": -73.9634655 }, + { "lat": 40.7823411, "lon": -73.9634916 }, + { "lat": 40.7823947, "lon": -73.9635103 }, + { "lat": 40.7824638, "lon": -73.9635295 }, + { "lat": 40.7827217, "lon": -73.9635932 }, + { "lat": 40.7827824, "lon": -73.9636095 }, + { "lat": 40.7828558, "lon": -73.9636328 }, + { "lat": 40.7829170, "lon": -73.9636585 }, + { "lat": 40.7829700, "lon": -73.9636850 }, + { "lat": 40.7830220, "lon": -73.9637156 }, + { "lat": 40.7830869, "lon": -73.9637582 }, + { "lat": 40.7831443, "lon": -73.9638043 }, + { "lat": 40.7832021, "lon": -73.9638569 }, + { "lat": 40.7832526, "lon": -73.9639213 }, + { "lat": 40.7833025, "lon": -73.9639984 }, + { "lat": 40.7833492, "lon": -73.9640817 }, + { "lat": 40.7833926, "lon": -73.9641680 }, + { "lat": 40.7834353, "lon": -73.9642593 }, + { "lat": 40.7834583, "lon": -73.9643127 }, + { "lat": 40.7834840, "lon": -73.9643722 }, + { "lat": 40.7835281, "lon": -73.9644858 }, + { "lat": 40.7835550, "lon": -73.9645572 }, + { "lat": 40.7835845, "lon": -73.9646454 }, + { "lat": 40.7836213, "lon": -73.9647553 }, + { "lat": 40.7836727, "lon": -73.9649355 }, + { "lat": 40.7837674, "lon": -73.9652674 }, + { "lat": 40.7838444, "lon": -73.9655375 }, + { "lat": 40.7840305, "lon": -73.9661854 }, + { "lat": 40.7840712, "lon": -73.9663198 }, + { "lat": 40.7841153, "lon": -73.9664517 }, + { "lat": 40.7841599, "lon": -73.9665726 }, + { "lat": 40.7842008, "lon": -73.9666795 }, + { "lat": 40.7842440, "lon": -73.9667779 }, + { "lat": 40.7842827, "lon": -73.9668639 }, + { "lat": 40.7843236, "lon": -73.9669425 }, + { "lat": 40.7843689, "lon": -73.9670266 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxheight": "10'5\"", + "maxspeed": "25 mph", + "name": "86th Street Transverse", + "oneway": "no", + "shoulder": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46613697, + "bounds": { + "minlat": 40.7801730, + "minlon": -73.9609089, + "maxlat": 40.7808503, + "maxlon": -73.9593110 + }, + "nodes": [ + 42446036, + 3392519865, + 3392519833, + 42449187 + ], + "geometry": [ + { "lat": 40.7801730, "lon": -73.9593110 }, + { "lat": 40.7802211, "lon": -73.9594220 }, + { "lat": 40.7808108, "lon": -73.9608127 }, + { "lat": 40.7808503, "lon": -73.9609089 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lane_markings": "no", + "name": "East 85th Street", + "name:ru": "Восточная 85-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644879", + "wikipedia": "en:85th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46613701, + "bounds": { + "minlat": 40.7844692, + "minlon": -73.9791163, + "maxlat": 40.7852101, + "maxlon": -73.9773536 + }, + "nodes": [ + 42442469, + 9906904522, + 8709392108, + 11655721348, + 42428657 + ], + "geometry": [ + { "lat": 40.7844692, "lon": -73.9773536 }, + { "lat": 40.7845269, "lon": -73.9774897 }, + { "lat": 40.7850795, "lon": -73.9788082 }, + { "lat": 40.7851211, "lon": -73.9789064 }, + { "lat": 40.7852101, "lon": -73.9791163 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 81st Street", + "name:ru": "Западная 81-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46613703, + "bounds": { + "minlat": 40.7747937, + "minlon": -73.9755463, + "maxlat": 40.7751541, + "maxlon": -73.9754304 + }, + "nodes": [ + 2059303916, + 9178915169, + 2059303895 + ], + "geometry": [ + { "lat": 40.7751541, "lon": -73.9755463 }, + { "lat": 40.7749978, "lon": -73.9755084 }, + { "lat": 40.7747937, "lon": -73.9754304 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "cycleway:right": "lane", + "hgv": "no", + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46613704, + "bounds": { + "minlat": 40.7747049, + "minlon": -73.9755463, + "maxlat": 40.7751541, + "maxlon": -73.9748273 + }, + "nodes": [ + 42442175, + 595703343, + 9906929017, + 2059303867, + 2059303869, + 2059303874, + 595703344, + 2059303881, + 2059303885, + 9906929018, + 2059303899, + 2059303902, + 9906929019, + 2059303905, + 2059303916 + ], + "geometry": [ + { "lat": 40.7747049, "lon": -73.9748273 }, + { "lat": 40.7747224, "lon": -73.9750427 }, + { "lat": 40.7747268, "lon": -73.9750936 }, + { "lat": 40.7747335, "lon": -73.9751395 }, + { "lat": 40.7747429, "lon": -73.9751750 }, + { "lat": 40.7747565, "lon": -73.9752111 }, + { "lat": 40.7747768, "lon": -73.9752479 }, + { "lat": 40.7748105, "lon": -73.9752950 }, + { "lat": 40.7748471, "lon": -73.9753392 }, + { "lat": 40.7748820, "lon": -73.9753742 }, + { "lat": 40.7749120, "lon": -73.9753984 }, + { "lat": 40.7749480, "lon": -73.9754226 }, + { "lat": 40.7749832, "lon": -73.9754439 }, + { "lat": 40.7750210, "lon": -73.9754651 }, + { "lat": 40.7751541, "lon": -73.9755463 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46613711, + "bounds": { + "minlat": 40.7687806, + "minlon": -73.9723598, + "maxlat": 40.7688761, + "maxlon": -73.9711154 + }, + "nodes": [ + 422438817, + 9170842313, + 9908336678, + 248709819, + 1071832224, + 9170842312, + 9908336679, + 5307237640, + 9908336680, + 9170842310, + 42457788 + ], + "geometry": [ + { "lat": 40.7687981, "lon": -73.9711154 }, + { "lat": 40.7687824, "lon": -73.9714409 }, + { "lat": 40.7687814, "lon": -73.9715314 }, + { "lat": 40.7687806, "lon": -73.9716133 }, + { "lat": 40.7687849, "lon": -73.9717019 }, + { "lat": 40.7687935, "lon": -73.9717942 }, + { "lat": 40.7688047, "lon": -73.9718848 }, + { "lat": 40.7688180, "lon": -73.9719816 }, + { "lat": 40.7688306, "lon": -73.9720687 }, + { "lat": 40.7688459, "lon": -73.9721575 }, + { "lat": 40.7688761, "lon": -73.9723598 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46613712, + "bounds": { + "minlat": 40.7695356, + "minlon": -73.9744923, + "maxlat": 40.7699303, + "maxlon": -73.9726031 + }, + "nodes": [ + 595703385, + 9906929097, + 4263273985, + 9906929098, + 561949968, + 9906929099, + 9906929100, + 247220910, + 2216963622, + 9906929101, + 2216963621, + 9906929102, + 4263273991, + 4263273990, + 9906929103, + 42424805, + 2216963620, + 42439059, + 9906929104, + 561949997, + 2216963618, + 9906929105, + 42439057, + 9906929106, + 2216963616, + 9906929107, + 9906929108 + ], + "geometry": [ + { "lat": 40.7697952, "lon": -73.9744923 }, + { "lat": 40.7698181, "lon": -73.9744413 }, + { "lat": 40.7698407, "lon": -73.9743877 }, + { "lat": 40.7698612, "lon": -73.9743306 }, + { "lat": 40.7698827, "lon": -73.9742628 }, + { "lat": 40.7698976, "lon": -73.9742006 }, + { "lat": 40.7699095, "lon": -73.9741396 }, + { "lat": 40.7699174, "lon": -73.9740871 }, + { "lat": 40.7699251, "lon": -73.9740122 }, + { "lat": 40.7699297, "lon": -73.9739381 }, + { "lat": 40.7699303, "lon": -73.9738644 }, + { "lat": 40.7699270, "lon": -73.9737828 }, + { "lat": 40.7699196, "lon": -73.9737062 }, + { "lat": 40.7699097, "lon": -73.9736252 }, + { "lat": 40.7698949, "lon": -73.9735526 }, + { "lat": 40.7698743, "lon": -73.9734788 }, + { "lat": 40.7698494, "lon": -73.9734047 }, + { "lat": 40.7698212, "lon": -73.9733340 }, + { "lat": 40.7698006, "lon": -73.9732869 }, + { "lat": 40.7697017, "lon": -73.9730939 }, + { "lat": 40.7696393, "lon": -73.9729692 }, + { "lat": 40.7696171, "lon": -73.9729167 }, + { "lat": 40.7695981, "lon": -73.9728631 }, + { "lat": 40.7695777, "lon": -73.9727976 }, + { "lat": 40.7695610, "lon": -73.9727300 }, + { "lat": 40.7695456, "lon": -73.9726640 }, + { "lat": 40.7695356, "lon": -73.9726031 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Center Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 46613713, + "bounds": { + "minlat": 40.7686366, + "minlon": -73.9755808, + "maxlat": 40.7697266, + "maxlon": -73.9746052 + }, + "nodes": [ + 3898029175, + 247220908, + 9906929089, + 9906929090, + 4263273874, + 9906929091, + 247220909, + 9906929092, + 9906929093, + 9906929094, + 9906929095, + 1420632765 + ], + "geometry": [ + { "lat": 40.7686366, "lon": -73.9755808 }, + { "lat": 40.7689885, "lon": -73.9753554 }, + { "lat": 40.7690618, "lon": -73.9753046 }, + { "lat": 40.7691331, "lon": -73.9752508 }, + { "lat": 40.7692022, "lon": -73.9751936 }, + { "lat": 40.7692826, "lon": -73.9751248 }, + { "lat": 40.7693771, "lon": -73.9750353 }, + { "lat": 40.7694623, "lon": -73.9749436 }, + { "lat": 40.7695504, "lon": -73.9748369 }, + { "lat": 40.7696290, "lon": -73.9747378 }, + { "lat": 40.7696780, "lon": -73.9746726 }, + { "lat": 40.7697266, "lon": -73.9746052 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Center Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 46613913, + "bounds": { + "minlat": 40.7250102, + "minlon": -74.0213072, + "maxlat": 40.7276365, + "maxlon": -74.0069644 + }, + "nodes": [ + 559862621, + 1701898697, + 8230390117, + 596747397, + 8230390119, + 596747399, + 596747401, + 596747403, + 8230390118, + 1701898725, + 1701898747, + 1701898707, + 1701898716, + 1701898685, + 4168235965, + 4168209028, + 8230380816, + 8230380815, + 8230380814, + 4168209029, + 4168253289, + 8230380813, + 4168253305, + 4168253327, + 763020156 + ], + "geometry": [ + { "lat": 40.7250102, "lon": -74.0069652 }, + { "lat": 40.7250568, "lon": -74.0069644 }, + { "lat": 40.7251184, "lon": -74.0069801 }, + { "lat": 40.7252050, "lon": -74.0070206 }, + { "lat": 40.7252698, "lon": -74.0070592 }, + { "lat": 40.7253518, "lon": -74.0071102 }, + { "lat": 40.7254165, "lon": -74.0071519 }, + { "lat": 40.7255021, "lon": -74.0072149 }, + { "lat": 40.7255523, "lon": -74.0072617 }, + { "lat": 40.7256212, "lon": -74.0073376 }, + { "lat": 40.7256981, "lon": -74.0074501 }, + { "lat": 40.7257727, "lon": -74.0075977 }, + { "lat": 40.7258288, "lon": -74.0077643 }, + { "lat": 40.7258771, "lon": -74.0079541 }, + { "lat": 40.7259048, "lon": -74.0080938 }, + { "lat": 40.7259251, "lon": -74.0082500 }, + { "lat": 40.7261797, "lon": -74.0109211 }, + { "lat": 40.7264183, "lon": -74.0132108 }, + { "lat": 40.7265626, "lon": -74.0147075 }, + { "lat": 40.7265973, "lon": -74.0150852 }, + { "lat": 40.7266344, "lon": -74.0154606 }, + { "lat": 40.7266774, "lon": -74.0157509 }, + { "lat": 40.7267908, "lon": -74.0164080 }, + { "lat": 40.7268982, "lon": -74.0170377 }, + { "lat": 40.7276365, "lon": -74.0213072 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hazmat": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "-1", + "lit": "24/7", + "maxaxles": "3", + "maxheight": "12'6\"", + "maxspeed": "35 mph", + "maxwidth": "8'", + "name": "Holland Tunnel", + "name:etymology:wikidata": "Q5133008", + "name:ko": "홀랜드 터널", + "old_name": "Hudson River Vehicular Tunnel", + "oneway": "yes", + "operator": "Port Authority of New York and New Jersey", + "ref": "I 78", + "sidewalk": "no", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes", + "unsigned_ref": "I 78", + "wikidata": "Q125753", + "wikipedia": "en:Holland Tunnel" + } +}, +{ + "type": "way", + "id": 46616991, + "bounds": { + "minlat": 40.8655306, + "minlon": -73.9280465, + "maxlat": 40.8661784, + "maxlon": -73.9272714 + }, + "nodes": [ + 42429215, + 1764661151, + 1209512055, + 9561395266, + 42432799 + ], + "geometry": [ + { "lat": 40.8655306, "lon": -73.9272714 }, + { "lat": 40.8656213, "lon": -73.9273350 }, + { "lat": 40.8659007, "lon": -73.9277040 }, + { "lat": 40.8661344, "lon": -73.9279919 }, + { "lat": 40.8661784, "lon": -73.9280465 } + ], + "tags": { + "bicycle": "designated", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "pedestrian", + "name": "Quisqueya Plaza", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 46616995, + "bounds": { + "minlat": 40.8673840, + "minlon": -73.9264060, + "maxlat": 40.8691500, + "maxlon": -73.9221450 + }, + "nodes": [ + 42457282, + 9561420913, + 42445640, + 8952423304, + 1760567069, + 8153243799, + 9561420921, + 42455509, + 9561420919, + 42453669, + 10794673071, + 9561561664, + 42431230 + ], + "geometry": [ + { "lat": 40.8673840, "lon": -73.9264060 }, + { "lat": 40.8677036, "lon": -73.9260022 }, + { "lat": 40.8677690, "lon": -73.9259190 }, + { "lat": 40.8678051, "lon": -73.9258544 }, + { "lat": 40.8678379, "lon": -73.9257975 }, + { "lat": 40.8681848, "lon": -73.9248366 }, + { "lat": 40.8684329, "lon": -73.9241490 }, + { "lat": 40.8684730, "lon": -73.9240380 }, + { "lat": 40.8685043, "lon": -73.9239487 }, + { "lat": 40.8686860, "lon": -73.9234330 }, + { "lat": 40.8687983, "lon": -73.9231248 }, + { "lat": 40.8691149, "lon": -73.9222427 }, + { "lat": 40.8691500, "lon": -73.9221450 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "foot": "yes", + "highway": "tertiary", + "inline_skates": "yes", + "maxspeed": "20 mph", + "name": "Seaman Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Seaman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 46616996, + "bounds": { + "minlat": 40.8688397, + "minlon": -73.9316097, + "maxlat": 40.8690931, + "maxlon": -73.9315115 + }, + "nodes": [ + 42425959, + 5051482018 + ], + "geometry": [ + { "lat": 40.8690931, "lon": -73.9315115 }, + { "lat": 40.8688397, "lon": -73.9316097 } + ], + "tags": { + "bicycle": "designated", + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 46616997, + "bounds": { + "minlat": 40.8667430, + "minlon": -73.9300052, + "maxlat": 40.8678058, + "maxlon": -73.9287220 + }, + "nodes": [ + 42431666, + 11587266208, + 11587266202, + 42432805, + 9561561630, + 42432802 + ], + "geometry": [ + { "lat": 40.8678058, "lon": -73.9300052 }, + { "lat": 40.8677144, "lon": -73.9298956 }, + { "lat": 40.8672953, "lon": -73.9293931 }, + { "lat": 40.8672563, "lon": -73.9293463 }, + { "lat": 40.8667913, "lon": -73.9287809 }, + { "lat": 40.8667430, "lon": -73.9287220 } + ], + "tags": { + "alt_name": "West 200th Street", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "inline_skates": "yes", + "maxspeed": "20 mph", + "name": "Dyckman Street", + "surface": "asphalt", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 46616999, + "bounds": { + "minlat": 40.8523456, + "minlon": -73.9387617, + "maxlat": 40.8554065, + "maxlon": -73.9378009 + }, + "nodes": [ + 42436301, + 8718862723, + 8151650883, + 2840354110, + 302097273, + 42454089, + 12607382008, + 1763597001, + 9563821018, + 42438218 + ], + "geometry": [ + { "lat": 40.8554065, "lon": -73.9378009 }, + { "lat": 40.8553422, "lon": -73.9378236 }, + { "lat": 40.8544206, "lon": -73.9381004 }, + { "lat": 40.8540365, "lon": -73.9382168 }, + { "lat": 40.8538202, "lon": -73.9382862 }, + { "lat": 40.8535370, "lon": -73.9383780 }, + { "lat": 40.8529277, "lon": -73.9385761 }, + { "lat": 40.8524300, "lon": -73.9387325 }, + { "lat": 40.8523842, "lon": -73.9387482 }, + { "lat": 40.8523456, "lon": -73.9387617 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pinehurst Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pinehurst", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 46617000, + "bounds": { + "minlat": 40.8553918, + "minlon": -73.9386160, + "maxlat": 40.8559050, + "maxlon": -73.9377494 + }, + "nodes": [ + 1763608189, + 12607365685, + 1763569147, + 42428134, + 8718834312, + 42436305 + ], + "geometry": [ + { "lat": 40.8553918, "lon": -73.9377494 }, + { "lat": 40.8554395, "lon": -73.9377502 }, + { "lat": 40.8555795, "lon": -73.9378545 }, + { "lat": 40.8556073, "lon": -73.9379210 }, + { "lat": 40.8556400, "lon": -73.9380047 }, + { "lat": 40.8559050, "lon": -73.9386160 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 187th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "187th", + "tiger:name_base_1": "187", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 46617001, + "bounds": { + "minlat": 40.8554065, + "minlon": -73.9380214, + "maxlat": 40.8554719, + "maxlon": -73.9378009 + }, + "nodes": [ + 595729852, + 8718862722, + 1763612251, + 42436301 + ], + "geometry": [ + { "lat": 40.8554719, "lon": -73.9380214 }, + { "lat": 40.8554500, "lon": -73.9379484 }, + { "lat": 40.8554265, "lon": -73.9378694 }, + { "lat": 40.8554065, "lon": -73.9378009 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 187th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46618199, + "bounds": { + "minlat": 40.8499327, + "minlon": -73.9524542, + "maxlat": 40.8517067, + "maxlon": -73.9435563 + }, + "nodes": [ + 595462050, + 12068669162, + 12068669164, + 12068669163, + 12068669161, + 12068669160, + 12068669159, + 622204986 + ], + "geometry": [ + { "lat": 40.8499327, "lon": -73.9435563 }, + { "lat": 40.8501140, "lon": -73.9445095 }, + { "lat": 40.8501395, "lon": -73.9446349 }, + { "lat": 40.8501642, "lon": -73.9447517 }, + { "lat": 40.8504456, "lon": -73.9460566 }, + { "lat": 40.8504736, "lon": -73.9461856 }, + { "lat": 40.8504982, "lon": -73.9463048 }, + { "lat": 40.8517067, "lon": -73.9524542 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "name:ru": "Мост Джорджа Вашингтона (нижний уровень)", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "concrete", + "toll": "no", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 46618200, + "bounds": { + "minlat": 40.8493002, + "minlon": -73.9435883, + "maxlat": 40.8498372, + "maxlon": -73.9413586 + }, + "nodes": [ + 595462053, + 2408211662, + 595462054, + 12067211129, + 2408262115, + 12067211133, + 12067211136, + 12067211132, + 12067211131, + 12067211130, + 3959468915 + ], + "geometry": [ + { "lat": 40.8498372, "lon": -73.9435883 }, + { "lat": 40.8498187, "lon": -73.9435173 }, + { "lat": 40.8498044, "lon": -73.9434634 }, + { "lat": 40.8497872, "lon": -73.9434082 }, + { "lat": 40.8497653, "lon": -73.9433566 }, + { "lat": 40.8496654, "lon": -73.9431111 }, + { "lat": 40.8496470, "lon": -73.9430583 }, + { "lat": 40.8496302, "lon": -73.9430041 }, + { "lat": 40.8496156, "lon": -73.9429469 }, + { "lat": 40.8496000, "lon": -73.9428776 }, + { "lat": 40.8493002, "lon": -73.9413586 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:ref": "I 95", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "name:ru": "Мост Джорджа Вашингтона (нижний уровень)", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 46619130, + "bounds": { + "minlat": 40.8620224, + "minlon": -73.9133764, + "maxlat": 40.8622762, + "maxlon": -73.9129928 + }, + "nodes": [ + 595749104, + 1764746688, + 12058475124, + 12058475125, + 595749105, + 12074555507 + ], + "geometry": [ + { "lat": 40.8620224, "lon": -73.9129928 }, + { "lat": 40.8622300, "lon": -73.9132769 }, + { "lat": 40.8622397, "lon": -73.9132937 }, + { "lat": 40.8622498, "lon": -73.9133143 }, + { "lat": 40.8622583, "lon": -73.9133336 }, + { "lat": 40.8622762, "lon": -73.9133764 } + ], + "tags": { + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Exterior Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 46619131, + "bounds": { + "minlat": 40.8624611, + "minlon": -73.9130396, + "maxlat": 40.8647664, + "maxlon": -73.9107720 + }, + "nodes": [ + 595749112, + 595749309, + 12058343001, + 12058343002, + 12058343003, + 7998614661, + 595749310, + 595749311, + 7998614666, + 595749313, + 595749315 + ], + "geometry": [ + { "lat": 40.8624611, "lon": -73.9130396 }, + { "lat": 40.8629520, "lon": -73.9123934 }, + { "lat": 40.8632392, "lon": -73.9120188 }, + { "lat": 40.8633178, "lon": -73.9119202 }, + { "lat": 40.8633861, "lon": -73.9118404 }, + { "lat": 40.8634799, "lon": -73.9117367 }, + { "lat": 40.8635631, "lon": -73.9116514 }, + { "lat": 40.8639576, "lon": -73.9112847 }, + { "lat": 40.8641101, "lon": -73.9111672 }, + { "lat": 40.8643645, "lon": -73.9109711 }, + { "lat": 40.8647664, "lon": -73.9107720 } + ], + "tags": { + "highway": "unclassified", + "name": "Exterior Street" + } +}, +{ + "type": "way", + "id": 46619132, + "bounds": { + "minlat": 40.8621855, + "minlon": -73.9141075, + "maxlat": 40.8624493, + "maxlon": -73.9134747 + }, + "nodes": [ + 42731051, + 9903143738, + 7612920601, + 42731058 + ], + "geometry": [ + { "lat": 40.8621855, "lon": -73.9134747 }, + { "lat": 40.8621882, "lon": -73.9134811 }, + { "lat": 40.8624436, "lon": -73.9140941 }, + { "lat": 40.8624493, "lon": -73.9141075 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "primary", + "layer": "1", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 46619355, + "bounds": { + "minlat": 40.8559224, + "minlon": -73.9172176, + "maxlat": 40.8597534, + "maxlon": -73.9145699 + }, + "nodes": [ + 42727425, + 9918291091, + 7476260860, + 42732715, + 42732716, + 42732718, + 42732720, + 42732722, + 42731745, + 10135688294, + 42732724, + 42732726, + 42732728, + 42732730, + 42732732, + 6760241910, + 42732733, + 42732735, + 42732736, + 42732738, + 42732739, + 42732741, + 13018943326 + ], + "geometry": [ + { "lat": 40.8559224, "lon": -73.9172176 }, + { "lat": 40.8559806, "lon": -73.9172131 }, + { "lat": 40.8561454, "lon": -73.9172087 }, + { "lat": 40.8568370, "lon": -73.9171900 }, + { "lat": 40.8570440, "lon": -73.9171270 }, + { "lat": 40.8572960, "lon": -73.9170300 }, + { "lat": 40.8575280, "lon": -73.9169220 }, + { "lat": 40.8577910, "lon": -73.9167730 }, + { "lat": 40.8579880, "lon": -73.9166420 }, + { "lat": 40.8580975, "lon": -73.9165756 }, + { "lat": 40.8587850, "lon": -73.9161590 }, + { "lat": 40.8589120, "lon": -73.9160740 }, + { "lat": 40.8590560, "lon": -73.9159540 }, + { "lat": 40.8591682, "lon": -73.9158399 }, + { "lat": 40.8593010, "lon": -73.9156800 }, + { "lat": 40.8593779, "lon": -73.9155658 }, + { "lat": 40.8594120, "lon": -73.9155150 }, + { "lat": 40.8595010, "lon": -73.9153550 }, + { "lat": 40.8595750, "lon": -73.9151950 }, + { "lat": 40.8596420, "lon": -73.9150200 }, + { "lat": 40.8596927, "lon": -73.9148238 }, + { "lat": 40.8597293, "lon": -73.9146458 }, + { "lat": 40.8597534, "lon": -73.9145699 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "maxweight:hgv": "5 st", + "name": "Cedar Avenue", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cedar", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 46619356, + "bounds": { + "minlat": 40.8530731, + "minlon": -73.9196577, + "maxlat": 40.8533560, + "maxlon": -73.9190820 + }, + "nodes": [ + 42780947, + 9918264515, + 2808800185, + 12058067220, + 12058067221, + 42732711, + 12058067222, + 595750835 + ], + "geometry": [ + { "lat": 40.8530731, "lon": -73.9190820 }, + { "lat": 40.8532880, "lon": -73.9194791 }, + { "lat": 40.8533099, "lon": -73.9195203 }, + { "lat": 40.8533212, "lon": -73.9195461 }, + { "lat": 40.8533294, "lon": -73.9195696 }, + { "lat": 40.8533396, "lon": -73.9196033 }, + { "lat": 40.8533475, "lon": -73.9196307 }, + { "lat": 40.8533560, "lon": -73.9196577 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West Tremont Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 46619357, + "bounds": { + "minlat": 40.8533560, + "minlon": -73.9204182, + "maxlat": 40.8537624, + "maxlon": -73.9196577 + }, + "nodes": [ + 595750835, + 12058067218, + 12058067219, + 12058067217, + 9918264516, + 9291815420, + 9918291017, + 595750836 + ], + "geometry": [ + { "lat": 40.8533560, "lon": -73.9196577 }, + { "lat": 40.8533668, "lon": -73.9196871 }, + { "lat": 40.8533704, "lon": -73.9196963 }, + { "lat": 40.8533772, "lon": -73.9197119 }, + { "lat": 40.8533847, "lon": -73.9197276 }, + { "lat": 40.8536652, "lon": -73.9202404 }, + { "lat": 40.8537240, "lon": -73.9203478 }, + { "lat": 40.8537624, "lon": -73.9204182 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "maxspeed": "25 mph", + "name": "West Tremont Avenue", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 46619358, + "bounds": { + "minlat": 40.8521804, + "minlon": -73.9215266, + "maxlat": 40.8525877, + "maxlon": -73.9207623 + }, + "nodes": [ + 595750838, + 12527858547, + 12056545243, + 9918264512, + 9918264511, + 13068115998, + 42745481 + ], + "geometry": [ + { "lat": 40.8521804, "lon": -73.9207623 }, + { "lat": 40.8521961, "lon": -73.9207928 }, + { "lat": 40.8522267, "lon": -73.9208494 }, + { "lat": 40.8525174, "lon": -73.9213947 }, + { "lat": 40.8525410, "lon": -73.9214388 }, + { "lat": 40.8525541, "lon": -73.9214635 }, + { "lat": 40.8525877, "lon": -73.9215266 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Roberto Clemente State Park Bridge", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Harlem River Park", + "tiger:name_type": "Brg", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46620580, + "bounds": { + "minlat": 40.8443052, + "minlon": -73.9236380, + "maxlat": 40.8445610, + "maxlon": -73.9229609 + }, + "nodes": [ + 60924009, + 12070855416, + 9910779420, + 12070855415, + 9910779421, + 12070855414, + 7742797367, + 12070855413, + 60924011, + 12070855412, + 9910779422, + 12046762835, + 12046770883, + 12045150848, + 60921024 + ], + "geometry": [ + { "lat": 40.8445610, "lon": -73.9236380 }, + { "lat": 40.8445329, "lon": -73.9235942 }, + { "lat": 40.8445083, "lon": -73.9235562 }, + { "lat": 40.8444847, "lon": -73.9235156 }, + { "lat": 40.8444638, "lon": -73.9234760 }, + { "lat": 40.8444441, "lon": -73.9234362 }, + { "lat": 40.8444251, "lon": -73.9233925 }, + { "lat": 40.8444070, "lon": -73.9233461 }, + { "lat": 40.8443908, "lon": -73.9232985 }, + { "lat": 40.8443739, "lon": -73.9232403 }, + { "lat": 40.8443598, "lon": -73.9231857 }, + { "lat": 40.8443437, "lon": -73.9231229 }, + { "lat": 40.8443309, "lon": -73.9230709 }, + { "lat": 40.8443225, "lon": -73.9230361 }, + { "lat": 40.8443052, "lon": -73.9229609 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|left" + } +}, +{ + "type": "way", + "id": 46620585, + "bounds": { + "minlat": 40.8445610, + "minlon": -73.9240568, + "maxlat": 40.8448974, + "maxlon": -73.9236380 + }, + "nodes": [ + 60924008, + 60924009 + ], + "geometry": [ + { "lat": 40.8448974, "lon": -73.9240568 }, + { "lat": 40.8445610, "lon": -73.9236380 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 46620587, + "bounds": { + "minlat": 40.8454406, + "minlon": -73.9242813, + "maxlat": 40.8456494, + "maxlon": -73.9241743 + }, + "nodes": [ + 595757757, + 60920619 + ], + "geometry": [ + { "lat": 40.8456494, "lon": -73.9241743 }, + { "lat": 40.8454406, "lon": -73.9242813 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Undercliff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 46620588, + "bounds": { + "minlat": 40.8456494, + "minlon": -73.9241743, + "maxlat": 40.8526141, + "maxlon": -73.9192744 + }, + "nodes": [ + 42743072, + 12527858540, + 12056107822, + 12056107821, + 4720620192, + 12056107820, + 12055955051, + 6863700047, + 12055955050, + 12049933745, + 7477208370, + 12049933744, + 12049933743, + 12049933742, + 12049933741, + 595757757 + ], + "geometry": [ + { "lat": 40.8526141, "lon": -73.9192979 }, + { "lat": 40.8525368, "lon": -73.9192808 }, + { "lat": 40.8525190, "lon": -73.9192779 }, + { "lat": 40.8524885, "lon": -73.9192744 }, + { "lat": 40.8524586, "lon": -73.9192840 }, + { "lat": 40.8524304, "lon": -73.9192992 }, + { "lat": 40.8500313, "lon": -73.9212627 }, + { "lat": 40.8483482, "lon": -73.9226367 }, + { "lat": 40.8479959, "lon": -73.9229189 }, + { "lat": 40.8479306, "lon": -73.9229656 }, + { "lat": 40.8478578, "lon": -73.9230149 }, + { "lat": 40.8477677, "lon": -73.9230740 }, + { "lat": 40.8476602, "lon": -73.9231387 }, + { "lat": 40.8475761, "lon": -73.9231871 }, + { "lat": 40.8474818, "lon": -73.9232377 }, + { "lat": 40.8456494, "lon": -73.9241743 } + ], + "tags": { + "highway": "residential", + "name": "Undercliff Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 46620590, + "bounds": { + "minlat": 40.8451113, + "minlon": -73.9242697, + "maxlat": 40.8451928, + "maxlon": -73.9227313 + }, + "nodes": [ + 12046770880, + 60924129, + 12045120316, + 12045120317, + 12045120318, + 12045120319, + 12045120320, + 12045120321, + 9910762813, + 12045120323, + 12045120324, + 60924130, + 60924131, + 9910762812, + 12045120328, + 9910762811, + 12045120330, + 60924132, + 8702031756, + 12045120333, + 9910762810, + 12045120335, + 12070717544, + 13884131390 + ], + "geometry": [ + { "lat": 40.8451318, "lon": -73.9227313 }, + { "lat": 40.8451360, "lon": -73.9227860 }, + { "lat": 40.8451402, "lon": -73.9228393 }, + { "lat": 40.8451434, "lon": -73.9228910 }, + { "lat": 40.8451459, "lon": -73.9229379 }, + { "lat": 40.8451474, "lon": -73.9229853 }, + { "lat": 40.8451483, "lon": -73.9230311 }, + { "lat": 40.8451489, "lon": -73.9230763 }, + { "lat": 40.8451485, "lon": -73.9231232 }, + { "lat": 40.8451476, "lon": -73.9231671 }, + { "lat": 40.8451456, "lon": -73.9232162 }, + { "lat": 40.8451425, "lon": -73.9232691 }, + { "lat": 40.8451174, "lon": -73.9237206 }, + { "lat": 40.8451122, "lon": -73.9237665 }, + { "lat": 40.8451113, "lon": -73.9238084 }, + { "lat": 40.8451127, "lon": -73.9238545 }, + { "lat": 40.8451153, "lon": -73.9238985 }, + { "lat": 40.8451186, "lon": -73.9239425 }, + { "lat": 40.8451295, "lon": -73.9240006 }, + { "lat": 40.8451363, "lon": -73.9240583 }, + { "lat": 40.8451480, "lon": -73.9241154 }, + { "lat": 40.8451588, "lon": -73.9241591 }, + { "lat": 40.8451725, "lon": -73.9242127 }, + { "lat": 40.8451928, "lon": -73.9242697 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46620592, + "bounds": { + "minlat": 40.8447076, + "minlon": -73.9225219, + "maxlat": 40.8449633, + "maxlon": -73.9224154 + }, + "nodes": [ + 11794372937, + 60924107 + ], + "geometry": [ + { "lat": 40.8447076, "lon": -73.9225219 }, + { "lat": 40.8449633, "lon": -73.9224154 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "bridge": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "left|through|through|" + } +}, +{ + "type": "way", + "id": 46620610, + "bounds": { + "minlat": 40.8386250, + "minlon": -73.9273960, + "maxlat": 40.8420990, + "maxlon": -73.9262310 + }, + "nodes": [ + 42769860, + 13809338867, + 8454214947, + 42769863, + 3583825876, + 12647548315, + 13564503727, + 42769868 + ], + "geometry": [ + { "lat": 40.8386250, "lon": -73.9270920 }, + { "lat": 40.8386888, "lon": -73.9270752 }, + { "lat": 40.8387077, "lon": -73.9270702 }, + { "lat": 40.8402810, "lon": -73.9273960 }, + { "lat": 40.8417312, "lon": -73.9265162 }, + { "lat": 40.8419407, "lon": -73.9263809 }, + { "lat": 40.8420376, "lon": -73.9262892 }, + { "lat": 40.8420990, "lon": -73.9262310 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway:left": "lane", + "highway": "residential", + "name": "University Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Dr Martin Luther King Jr", + "tiger:name_base_1": "University", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 46620611, + "bounds": { + "minlat": 40.8442741, + "minlon": -73.9251653, + "maxlat": 40.8444251, + "maxlon": -73.9250463 + }, + "nodes": [ + 60924370, + 60920541 + ], + "geometry": [ + { "lat": 40.8444251, "lon": -73.9250463 }, + { "lat": 40.8442741, "lon": -73.9251653 } + ], + "tags": { + "bridge": "yes", + "cycleway:right": "lane", + "highway": "residential", + "layer": "1", + "name": "Undercliff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 46620614, + "bounds": { + "minlat": 40.8412999, + "minlon": -73.9280043, + "maxlat": 40.8414262, + "maxlon": -73.9279207 + }, + "nodes": [ + 42740411, + 13298165403, + 13533533184, + 60920487 + ], + "geometry": [ + { "lat": 40.8412999, "lon": -73.9280043 }, + { "lat": 40.8413360, "lon": -73.9279800 }, + { "lat": 40.8413720, "lon": -73.9279556 }, + { "lat": 40.8414262, "lon": -73.9279207 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "destination", + "highway": "secondary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 46620616, + "bounds": { + "minlat": 40.8443596, + "minlon": -73.9250463, + "maxlat": 40.8444251, + "maxlon": -73.9248988 + }, + "nodes": [ + 595757796, + 60924370 + ], + "geometry": [ + { "lat": 40.8443596, "lon": -73.9248988 }, + { "lat": 40.8444251, "lon": -73.9250463 } + ], + "tags": { + "bridge": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "layer": "1", + "name": "Boscobel Place" + } +}, +{ + "type": "way", + "id": 46620617, + "bounds": { + "minlat": 40.8434530, + "minlon": -73.9246940, + "maxlat": 40.8439090, + "maxlon": -73.9241280 + }, + "nodes": [ + 42741652, + 42769873 + ], + "geometry": [ + { "lat": 40.8434530, "lon": -73.9246940 }, + { "lat": 40.8439090, "lon": -73.9241280 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway": "shared_lane", + "highway": "residential", + "name": "University Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Dr Martin Luther King Jr", + "tiger:name_base_1": "University", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 46620619, + "bounds": { + "minlat": 40.8449194, + "minlon": -73.9246553, + "maxlat": 40.8454406, + "maxlon": -73.9242813 + }, + "nodes": [ + 60920619, + 12049933705, + 12049933706, + 12049828936, + 60920618 + ], + "geometry": [ + { "lat": 40.8454406, "lon": -73.9242813 }, + { "lat": 40.8453449, "lon": -73.9243306 }, + { "lat": 40.8453145, "lon": -73.9243486 }, + { "lat": 40.8452828, "lon": -73.9243706 }, + { "lat": 40.8449194, "lon": -73.9246553 } + ], + "tags": { + "highway": "residential", + "name": "Undercliff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 46620620, + "bounds": { + "minlat": 40.8413222, + "minlon": -73.9286459, + "maxlat": 40.8414622, + "maxlon": -73.9280927 + }, + "nodes": [ + 595757798, + 13533533187, + 9166334399, + 13533533192, + 42740414 + ], + "geometry": [ + { "lat": 40.8413222, "lon": -73.9280927 }, + { "lat": 40.8413365, "lon": -73.9281490 }, + { "lat": 40.8414397, "lon": -73.9285571 }, + { "lat": 40.8414529, "lon": -73.9286090 }, + { "lat": 40.8414622, "lon": -73.9286459 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Depot Place", + "name:etymology:wikidata": "Q5757842", + "oneway": "no", + "sidewalk": "both", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Depot", + "tiger:name_type": "Pl" + } +}, +{ + "type": "way", + "id": 46620621, + "bounds": { + "minlat": 40.8403501, + "minlon": -73.9303489, + "maxlat": 40.8405457, + "maxlon": -73.9303035 + }, + "nodes": [ + 595757799, + 13564503718, + 9918293181, + 9918293182, + 595757800, + 9918293183, + 9918293184, + 595757801 + ], + "geometry": [ + { "lat": 40.8405457, "lon": -73.9303303 }, + { "lat": 40.8405098, "lon": -73.9303414 }, + { "lat": 40.8405029, "lon": -73.9303435 }, + { "lat": 40.8404678, "lon": -73.9303489 }, + { "lat": 40.8404349, "lon": -73.9303463 }, + { "lat": 40.8403981, "lon": -73.9303384 }, + { "lat": 40.8403701, "lon": -73.9303224 }, + { "lat": 40.8403501, "lon": -73.9303035 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "unclassified", + "name": "Depot Place", + "name:etymology:wikidata": "Q5757842", + "sidewalk": "right", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Depot", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46620841, + "bounds": { + "minlat": 40.8405457, + "minlon": -73.9303303, + "maxlat": 40.8418603, + "maxlon": -73.9287440 + }, + "nodes": [ + 12075915088, + 7899202031, + 9918293175, + 42740417, + 7899202010, + 9918293176, + 60920203, + 7899202050, + 60920204, + 9918293177, + 7899202029, + 60920205, + 9918293178, + 7899202008, + 60920206, + 7899202048, + 9918293179, + 60920207, + 9918293180, + 42766918, + 595757799 + ], + "geometry": [ + { "lat": 40.8415394, "lon": -73.9287440 }, + { "lat": 40.8416444, "lon": -73.9288148 }, + { "lat": 40.8416824, "lon": -73.9288398 }, + { "lat": 40.8417169, "lon": -73.9288709 }, + { "lat": 40.8417504, "lon": -73.9289114 }, + { "lat": 40.8417838, "lon": -73.9289640 }, + { "lat": 40.8418098, "lon": -73.9290154 }, + { "lat": 40.8418344, "lon": -73.9290816 }, + { "lat": 40.8418504, "lon": -73.9291460 }, + { "lat": 40.8418573, "lon": -73.9292095 }, + { "lat": 40.8418603, "lon": -73.9292716 }, + { "lat": 40.8418564, "lon": -73.9293460 }, + { "lat": 40.8418456, "lon": -73.9294187 }, + { "lat": 40.8418266, "lon": -73.9294819 }, + { "lat": 40.8417947, "lon": -73.9295556 }, + { "lat": 40.8417603, "lon": -73.9296146 }, + { "lat": 40.8417253, "lon": -73.9296611 }, + { "lat": 40.8416901, "lon": -73.9296984 }, + { "lat": 40.8416463, "lon": -73.9297287 }, + { "lat": 40.8416014, "lon": -73.9297541 }, + { "lat": 40.8405457, "lon": -73.9303303 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "unclassified", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Depot Place", + "name:etymology:wikidata": "Q5757842", + "oneway": "no", + "sidewalk": "right", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Depot", + "tiger:name_type": "Pl" + } +}, +{ + "type": "way", + "id": 46621438, + "bounds": { + "minlat": 40.8398099, + "minlon": -73.9286705, + "maxlat": 40.8412999, + "maxlon": -73.9280043 + }, + "nodes": [ + 42728159, + 13533533154, + 8285603925, + 3809984325, + 13533533155, + 3809984324, + 3809984323, + 3809984321, + 13533533156, + 3809984322, + 12050046944, + 12050046943, + 12050046941, + 13533533191, + 42740411 + ], + "geometry": [ + { "lat": 40.8398099, "lon": -73.9286509 }, + { "lat": 40.8398393, "lon": -73.9286619 }, + { "lat": 40.8398619, "lon": -73.9286705 }, + { "lat": 40.8398861, "lon": -73.9286700 }, + { "lat": 40.8399186, "lon": -73.9286607 }, + { "lat": 40.8399416, "lon": -73.9286514 }, + { "lat": 40.8401179, "lon": -73.9285811 }, + { "lat": 40.8407376, "lon": -73.9283324 }, + { "lat": 40.8408397, "lon": -73.9282863 }, + { "lat": 40.8409367, "lon": -73.9282368 }, + { "lat": 40.8410221, "lon": -73.9281899 }, + { "lat": 40.8410869, "lon": -73.9281509 }, + { "lat": 40.8411495, "lon": -73.9281075 }, + { "lat": 40.8412446, "lon": -73.9280422 }, + { "lat": 40.8412999, "lon": -73.9280043 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 46621440, + "bounds": { + "minlat": 40.8369290, + "minlon": -73.9281390, + "maxlat": 40.8387710, + "maxlon": -73.9271230 + }, + "nodes": [ + 42734286, + 9897215544, + 9897215543, + 3809984330, + 10273471832, + 13809338853, + 42736651, + 13809338855, + 42736655 + ], + "geometry": [ + { "lat": 40.8369290, "lon": -73.9271230 }, + { "lat": 40.8369503, "lon": -73.9271949 }, + { "lat": 40.8369687, "lon": -73.9272255 }, + { "lat": 40.8370066, "lon": -73.9272525 }, + { "lat": 40.8372325, "lon": -73.9273684 }, + { "lat": 40.8376597, "lon": -73.9275875 }, + { "lat": 40.8377210, "lon": -73.9276190 }, + { "lat": 40.8378166, "lon": -73.9276663 }, + { "lat": 40.8387710, "lon": -73.9281390 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "West 167th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 46621441, + "bounds": { + "minlat": 40.8369290, + "minlon": -73.9271230, + "maxlat": 40.8385120, + "maxlon": -73.9261910 + }, + "nodes": [ + 42734286, + 13809338863, + 10273471835, + 13703485698, + 10273471826, + 5487840292, + 13809338872, + 42734290 + ], + "geometry": [ + { "lat": 40.8369290, "lon": -73.9271230 }, + { "lat": 40.8369975, "lon": -73.9270827 }, + { "lat": 40.8371150, "lon": -73.9270135 }, + { "lat": 40.8373005, "lon": -73.9269042 }, + { "lat": 40.8373918, "lon": -73.9268505 }, + { "lat": 40.8377582, "lon": -73.9266348 }, + { "lat": 40.8384451, "lon": -73.9262304 }, + { "lat": 40.8385120, "lon": -73.9261910 } + ], + "tags": { + "highway": "tertiary", + "name": "Ogden Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ogden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 46622823, + "bounds": { + "minlat": 40.8267114, + "minlon": -73.9300926, + "maxlat": 40.8268095, + "maxlon": -73.9298577 + }, + "nodes": [ + 595776433, + 9910769994, + 9166314445, + 9910769992, + 1932768691 + ], + "geometry": [ + { "lat": 40.8268095, "lon": -73.9300926 }, + { "lat": 40.8267864, "lon": -73.9300323 }, + { "lat": 40.8267454, "lon": -73.9299318 }, + { "lat": 40.8267298, "lon": -73.9298881 }, + { "lat": 40.8267114, "lon": -73.9298577 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 157th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "157th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 46622824, + "bounds": { + "minlat": 40.8270367, + "minlon": -73.9308122, + "maxlat": 40.8278462, + "maxlon": -73.9306096 + }, + "nodes": [ + 42744103, + 9166314449, + 5944457227, + 595776434, + 9166314447, + 9166314448 + ], + "geometry": [ + { "lat": 40.8270367, "lon": -73.9306096 }, + { "lat": 40.8272320, "lon": -73.9306442 }, + { "lat": 40.8273576, "lon": -73.9306724 }, + { "lat": 40.8274567, "lon": -73.9306928 }, + { "lat": 40.8276692, "lon": -73.9307480 }, + { "lat": 40.8278462, "lon": -73.9308122 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46622828, + "bounds": { + "minlat": 40.8258304, + "minlon": -73.9312449, + "maxlat": 40.8273192, + "maxlon": -73.9310892 + }, + "nodes": [ + 529054675, + 9166314470, + 5944453578, + 9166314469, + 9166314468, + 9166314471, + 529054683, + 529054686, + 529054689, + 9166314464, + 529054699 + ], + "geometry": [ + { "lat": 40.8273192, "lon": -73.9310942 }, + { "lat": 40.8272032, "lon": -73.9310903 }, + { "lat": 40.8270980, "lon": -73.9310892 }, + { "lat": 40.8269848, "lon": -73.9310937 }, + { "lat": 40.8268790, "lon": -73.9311029 }, + { "lat": 40.8267713, "lon": -73.9311135 }, + { "lat": 40.8266676, "lon": -73.9311276 }, + { "lat": 40.8264459, "lon": -73.9311612 }, + { "lat": 40.8262279, "lon": -73.9311958 }, + { "lat": 40.8260072, "lon": -73.9312226 }, + { "lat": 40.8258304, "lon": -73.9312449 } + ], + "tags": { + "bridge": "yes", + "ele": "1", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46622829, + "bounds": { + "minlat": 40.8273347, + "minlon": -73.9320830, + "maxlat": 40.8310279, + "maxlon": -73.9309338 + }, + "nodes": [ + 529051364, + 9166314575, + 529051365, + 9166314574, + 9166314473, + 9166314573, + 529051366, + 9166314572, + 529051375, + 9166314571, + 529051382, + 9166314570, + 529051386, + 9166314476, + 529051394, + 9166314577, + 9166314579, + 9166314578, + 529051399, + 9166314580, + 9166314581, + 529051404, + 9166314582, + 529051408, + 9166314583, + 529051411, + 9166314584, + 9910769987, + 9166314585, + 529051415, + 9166314586, + 529051418 + ], + "geometry": [ + { "lat": 40.8273347, "lon": -73.9309338 }, + { "lat": 40.8274652, "lon": -73.9309437 }, + { "lat": 40.8275884, "lon": -73.9309556 }, + { "lat": 40.8276961, "lon": -73.9309722 }, + { "lat": 40.8278145, "lon": -73.9309922 }, + { "lat": 40.8279180, "lon": -73.9310121 }, + { "lat": 40.8280191, "lon": -73.9310319 }, + { "lat": 40.8281450, "lon": -73.9310651 }, + { "lat": 40.8282619, "lon": -73.9311016 }, + { "lat": 40.8283678, "lon": -73.9311392 }, + { "lat": 40.8284733, "lon": -73.9311802 }, + { "lat": 40.8285772, "lon": -73.9312305 }, + { "lat": 40.8286893, "lon": -73.9312884 }, + { "lat": 40.8287916, "lon": -73.9313476 }, + { "lat": 40.8292912, "lon": -73.9316381 }, + { "lat": 40.8293964, "lon": -73.9316960 }, + { "lat": 40.8295044, "lon": -73.9317512 }, + { "lat": 40.8296031, "lon": -73.9317984 }, + { "lat": 40.8297032, "lon": -73.9318418 }, + { "lat": 40.8298119, "lon": -73.9318832 }, + { "lat": 40.8299209, "lon": -73.9319214 }, + { "lat": 40.8300244, "lon": -73.9319553 }, + { "lat": 40.8301424, "lon": -73.9319886 }, + { "lat": 40.8302438, "lon": -73.9320118 }, + { "lat": 40.8303485, "lon": -73.9320330 }, + { "lat": 40.8304527, "lon": -73.9320495 }, + { "lat": 40.8305713, "lon": -73.9320668 }, + { "lat": 40.8305933, "lon": -73.9320690 }, + { "lat": 40.8306834, "lon": -73.9320781 }, + { "lat": 40.8307904, "lon": -73.9320820 }, + { "lat": 40.8309149, "lon": -73.9320830 }, + { "lat": 40.8310279, "lon": -73.9320806 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxheight": "default", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46622830, + "bounds": { + "minlat": 40.8252664, + "minlon": -73.9315744, + "maxlat": 40.8261059, + "maxlon": -73.9314173 + }, + "nodes": [ + 2609933834, + 2611640942, + 2611640950, + 2609933828, + 9910773620, + 9166314418, + 2901827708, + 2609933830, + 595776439 + ], + "geometry": [ + { "lat": 40.8252664, "lon": -73.9314173 }, + { "lat": 40.8256176, "lon": -73.9314407 }, + { "lat": 40.8257075, "lon": -73.9314446 }, + { "lat": 40.8260394, "lon": -73.9314738 }, + { "lat": 40.8260669, "lon": -73.9314814 }, + { "lat": 40.8260844, "lon": -73.9314931 }, + { "lat": 40.8260976, "lon": -73.9315127 }, + { "lat": 40.8261044, "lon": -73.9315437 }, + { "lat": 40.8261059, "lon": -73.9315744 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46622845, + "bounds": { + "minlat": 40.8261059, + "minlon": -73.9316303, + "maxlat": 40.8268011, + "maxlon": -73.9315744 + }, + "nodes": [ + 2611678472, + 4281473291, + 13247433344, + 595776439 + ], + "geometry": [ + { "lat": 40.8268011, "lon": -73.9316303 }, + { "lat": 40.8265030, "lon": -73.9316047 }, + { "lat": 40.8261622, "lon": -73.9315787 }, + { "lat": 40.8261059, "lon": -73.9315744 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46622847, + "bounds": { + "minlat": 40.8303761, + "minlon": -73.9322521, + "maxlat": 40.8310476, + "maxlon": -73.9322103 + }, + "nodes": [ + 529054610, + 9166314561, + 5944483416, + 9166314560, + 529054624 + ], + "geometry": [ + { "lat": 40.8310476, "lon": -73.9322505 }, + { "lat": 40.8308952, "lon": -73.9322521 }, + { "lat": 40.8307123, "lon": -73.9322474 }, + { "lat": 40.8305568, "lon": -73.9322365 }, + { "lat": 40.8303761, "lon": -73.9322103 } + ], + "tags": { + "destination:lanes": "none|none|East 138th Street;Madison Avenue Bridge;East 161st Street;Macombs Dam Bridge", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 46623181, + "bounds": { + "minlat": 40.8281748, + "minlon": -73.9314190, + "maxlat": 40.8292176, + "maxlon": -73.9309062 + }, + "nodes": [ + 595779472, + 9166314608, + 250535495, + 9166314609, + 2912071099, + 9166314610, + 9166314611, + 595779473 + ], + "geometry": [ + { "lat": 40.8281748, "lon": -73.9309062 }, + { "lat": 40.8282835, "lon": -73.9309423 }, + { "lat": 40.8284620, "lon": -73.9310116 }, + { "lat": 40.8286137, "lon": -73.9310804 }, + { "lat": 40.8287414, "lon": -73.9311448 }, + { "lat": 40.8288529, "lon": -73.9312056 }, + { "lat": 40.8289870, "lon": -73.9312809 }, + { "lat": 40.8292176, "lon": -73.9314190 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "turn:lanes": "|through;slight_right" + } +}, +{ + "type": "way", + "id": 46624270, + "bounds": { + "minlat": 40.8284966, + "minlon": -73.9288861, + "maxlat": 40.8291127, + "maxlon": -73.9278920 + }, + "nodes": [ + 595776466, + 9166334401, + 595786220, + 12163643874 + ], + "geometry": [ + { "lat": 40.8291127, "lon": -73.9288861 }, + { "lat": 40.8290603, "lon": -73.9288085 }, + { "lat": 40.8290208, "lon": -73.9287454 }, + { "lat": 40.8284966, "lon": -73.9278920 } + ], + "tags": { + "bus:lanes": "designated|", + "cycleway:left": "share_busway", + "highway": "secondary", + "incline": "down", + "lanes": "2", + "lanes:bus": "1", + "lanes:bus:conditional": "Mo-Fr 07:00-20:00", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46624275, + "bounds": { + "minlat": 40.8251180, + "minlon": -73.9271680, + "maxlat": 40.8257181, + "maxlon": -73.9253906 + }, + "nodes": [ + 42744112, + 13039118980, + 42734161, + 8285601012, + 13330151065, + 42733706 + ], + "geometry": [ + { "lat": 40.8257181, "lon": -73.9271680 }, + { "lat": 40.8256785, "lon": -73.9270496 }, + { "lat": 40.8253913, "lon": -73.9261986 }, + { "lat": 40.8251655, "lon": -73.9255455 }, + { "lat": 40.8251483, "lon": -73.9254895 }, + { "lat": 40.8251180, "lon": -73.9253906 } + ], + "tags": { + "highway": "residential", + "name": "East 157th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "157th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 46624276, + "bounds": { + "minlat": 40.8382020, + "minlon": -73.9237070, + "maxlat": 40.8386850, + "maxlon": -73.9229770 + }, + "nodes": [ + 42757307, + 8454214966, + 8454214950, + 42734992 + ], + "geometry": [ + { "lat": 40.8382020, "lon": -73.9237070 }, + { "lat": 40.8382850, "lon": -73.9235816 }, + { "lat": 40.8385133, "lon": -73.9232365 }, + { "lat": 40.8386850, "lon": -73.9229770 } + ], + "tags": { + "highway": "residential", + "name": "Woodycrest Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Woodycrest", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:separated": "no", + "tiger:source": "tiger_import_dch_v0.6_20070829", + "tiger:tlid": "80299372:80299373:80299375:80299453:80299455:80300014:80300032:80300034:80299422", + "tiger:upload_uuid": "bulk_upload.pl-31e02009-f620-482f-9ce6-28e1cea72242", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 46624277, + "bounds": { + "minlat": 40.8302231, + "minlon": -73.9284799, + "maxlat": 40.8305262, + "maxlon": -73.9275013 + }, + "nodes": [ + 2912071091, + 2912071090 + ], + "geometry": [ + { "lat": 40.8305262, "lon": -73.9275013 }, + { "lat": 40.8302231, "lon": -73.9284799 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 46624278, + "bounds": { + "minlat": 40.8305938, + "minlon": -73.9272342, + "maxlat": 40.8350475, + "maxlon": -73.9239831 + }, + "nodes": [ + 42732922, + 13038527565, + 2609934067, + 2609934065, + 9910738448, + 42735984, + 10133344516, + 2822090566, + 7560880443, + 2822090567, + 10133348723, + 5116063237, + 10133344483, + 42735993, + 10133344484, + 42735996, + 5818174268, + 42734978 + ], + "geometry": [ + { "lat": 40.8305938, "lon": -73.9272342 }, + { "lat": 40.8306333, "lon": -73.9271965 }, + { "lat": 40.8310438, "lon": -73.9268041 }, + { "lat": 40.8311908, "lon": -73.9266654 }, + { "lat": 40.8313793, "lon": -73.9264844 }, + { "lat": 40.8314264, "lon": -73.9264312 }, + { "lat": 40.8314974, "lon": -73.9263694 }, + { "lat": 40.8320384, "lon": -73.9258747 }, + { "lat": 40.8320528, "lon": -73.9258616 }, + { "lat": 40.8325178, "lon": -73.9254378 }, + { "lat": 40.8325600, "lon": -73.9254133 }, + { "lat": 40.8326303, "lon": -73.9253720 }, + { "lat": 40.8326878, "lon": -73.9253411 }, + { "lat": 40.8332730, "lon": -73.9250290 }, + { "lat": 40.8337166, "lon": -73.9247964 }, + { "lat": 40.8344840, "lon": -73.9243940 }, + { "lat": 40.8348305, "lon": -73.9241466 }, + { "lat": 40.8350475, "lon": -73.9239831 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 46624279, + "bounds": { + "minlat": 40.8301559, + "minlon": -73.9284461, + "maxlat": 40.8303086, + "maxlon": -73.9276674 + }, + "nodes": [ + 7594160288, + 9155906308, + 9910738439, + 9910738440, + 9910738441, + 9910738442, + 2912071092, + 9910738444, + 9910738443, + 9910738445 + ], + "geometry": [ + { "lat": 40.8301559, "lon": -73.9284461 }, + { "lat": 40.8302302, "lon": -73.9282023 }, + { "lat": 40.8302879, "lon": -73.9280208 }, + { "lat": 40.8303001, "lon": -73.9279771 }, + { "lat": 40.8303079, "lon": -73.9279291 }, + { "lat": 40.8303086, "lon": -73.9278838 }, + { "lat": 40.8303050, "lon": -73.9278345 }, + { "lat": 40.8302933, "lon": -73.9277777 }, + { "lat": 40.8302787, "lon": -73.9277337 }, + { "lat": 40.8302557, "lon": -73.9276674 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|right", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 46624281, + "bounds": { + "minlat": 40.8222250, + "minlon": -73.9311040, + "maxlat": 40.8246289, + "maxlon": -73.9309022 + }, + "nodes": [ + 595786271, + 2819425206, + 6378691541, + 595786272 + ], + "geometry": [ + { "lat": 40.8246289, "lon": -73.9311040 }, + { "lat": 40.8241241, "lon": -73.9310645 }, + { "lat": 40.8232962, "lon": -73.9309938 }, + { "lat": 40.8222250, "lon": -73.9309022 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 46624282, + "bounds": { + "minlat": 40.8346940, + "minlon": -73.9309562, + "maxlat": 40.8398099, + "maxlon": -73.9286509 + }, + "nodes": [ + 5760246311, + 13533533146, + 13533533149, + 13533533148, + 9166314651, + 13533533150, + 9166314652, + 3809984329, + 9166314653, + 9166314654, + 42743043, + 9166314655, + 9166314656, + 3809984326, + 9166314657, + 13533533151, + 13533533152, + 7694073466, + 42728159 + ], + "geometry": [ + { "lat": 40.8346940, "lon": -73.9309562 }, + { "lat": 40.8363775, "lon": -73.9304867 }, + { "lat": 40.8366050, "lon": -73.9304210 }, + { "lat": 40.8368202, "lon": -73.9303553 }, + { "lat": 40.8370300, "lon": -73.9302917 }, + { "lat": 40.8372522, "lon": -73.9302180 }, + { "lat": 40.8374578, "lon": -73.9301433 }, + { "lat": 40.8376865, "lon": -73.9300535 }, + { "lat": 40.8378832, "lon": -73.9299773 }, + { "lat": 40.8380445, "lon": -73.9299013 }, + { "lat": 40.8381915, "lon": -73.9298289 }, + { "lat": 40.8383423, "lon": -73.9297424 }, + { "lat": 40.8384940, "lon": -73.9296485 }, + { "lat": 40.8386495, "lon": -73.9295430 }, + { "lat": 40.8388132, "lon": -73.9294230 }, + { "lat": 40.8389717, "lon": -73.9293057 }, + { "lat": 40.8396535, "lon": -73.9287614 }, + { "lat": 40.8396903, "lon": -73.9287355 }, + { "lat": 40.8398099, "lon": -73.9286509 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 46624285, + "bounds": { + "minlat": 40.8257181, + "minlon": -73.9294723, + "maxlat": 40.8267504, + "maxlon": -73.9271680 + }, + "nodes": [ + 1932727598, + 9291799157, + 1932727641, + 2609933913, + 2609933876, + 10119768425, + 1932727631, + 2611640872, + 42744112 + ], + "geometry": [ + { "lat": 40.8267504, "lon": -73.9294723 }, + { "lat": 40.8265003, "lon": -73.9292726 }, + { "lat": 40.8264491, "lon": -73.9292294 }, + { "lat": 40.8261629, "lon": -73.9284708 }, + { "lat": 40.8258367, "lon": -73.9276064 }, + { "lat": 40.8258184, "lon": -73.9275578 }, + { "lat": 40.8257316, "lon": -73.9273279 }, + { "lat": 40.8257300, "lon": -73.9272901 }, + { "lat": 40.8257181, "lon": -73.9271680 } + ], + "tags": { + "highway": "pedestrian", + "name": "East 157th Street", + "surface": "paved", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "157th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 46624286, + "bounds": { + "minlat": 40.8247518, + "minlon": -73.9314173, + "maxlat": 40.8252664, + "maxlon": -73.9311156 + }, + "nodes": [ + 595779503, + 13457734305, + 13457734307, + 9910773628, + 9910773632, + 9910773629, + 9910773631, + 9910773630, + 2609933834 + ], + "geometry": [ + { "lat": 40.8247518, "lon": -73.9311156 }, + { "lat": 40.8249885, "lon": -73.9312008 }, + { "lat": 40.8250398, "lon": -73.9312193 }, + { "lat": 40.8251159, "lon": -73.9312467 }, + { "lat": 40.8251529, "lon": -73.9312670 }, + { "lat": 40.8251898, "lon": -73.9312952 }, + { "lat": 40.8252242, "lon": -73.9313308 }, + { "lat": 40.8252482, "lon": -73.9313725 }, + { "lat": 40.8252664, "lon": -73.9314173 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46624287, + "bounds": { + "minlat": 40.8252565, + "minlon": -73.9315744, + "maxlat": 40.8261059, + "maxlon": -73.9315039 + }, + "nodes": [ + 595776439, + 2799382018, + 9910773621, + 2611640931 + ], + "geometry": [ + { "lat": 40.8261059, "lon": -73.9315744 }, + { "lat": 40.8256139, "lon": -73.9315336 }, + { "lat": 40.8254162, "lon": -73.9315172 }, + { "lat": 40.8252565, "lon": -73.9315039 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46624288, + "bounds": { + "minlat": 40.8246289, + "minlon": -73.9311156, + "maxlat": 40.8247518, + "maxlon": -73.9311040 + }, + "nodes": [ + 595786271, + 595779503 + ], + "geometry": [ + { "lat": 40.8246289, "lon": -73.9311040 }, + { "lat": 40.8247518, "lon": -73.9311156 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46624289, + "bounds": { + "minlat": 40.8235870, + "minlon": -73.9311040, + "maxlat": 40.8246810, + "maxlon": -73.9290203 + }, + "nodes": [ + 595786271, + 7224263618, + 595786283, + 13703580580, + 13703580579, + 13703580578 + ], + "geometry": [ + { "lat": 40.8246289, "lon": -73.9311040 }, + { "lat": 40.8246473, "lon": -73.9307552 }, + { "lat": 40.8246810, "lon": -73.9298264 }, + { "lat": 40.8246577, "lon": -73.9296868 }, + { "lat": 40.8238732, "lon": -73.9290686 }, + { "lat": 40.8235870, "lon": -73.9290203 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 46624981, + "bounds": { + "minlat": 40.8160135, + "minlon": -73.9309365, + "maxlat": 40.8174249, + "maxlon": -73.9308181 + }, + "nodes": [ + 529049399, + 9166288572, + 595790128, + 9166288573, + 529049648, + 9166288574, + 529049651, + 9166288575, + 529049654, + 9166288576, + 529049657, + 9166288577, + 9166288539, + 529051337 + ], + "geometry": [ + { "lat": 40.8160135, "lon": -73.9308763 }, + { "lat": 40.8161437, "lon": -73.9308981 }, + { "lat": 40.8162445, "lon": -73.9309123 }, + { "lat": 40.8163534, "lon": -73.9309247 }, + { "lat": 40.8164624, "lon": -73.9309323 }, + { "lat": 40.8165694, "lon": -73.9309365 }, + { "lat": 40.8166763, "lon": -73.9309362 }, + { "lat": 40.8167883, "lon": -73.9309301 }, + { "lat": 40.8168977, "lon": -73.9309215 }, + { "lat": 40.8170047, "lon": -73.9309083 }, + { "lat": 40.8171200, "lon": -73.9308904 }, + { "lat": 40.8172178, "lon": -73.9308722 }, + { "lat": 40.8173247, "lon": -73.9308470 }, + { "lat": 40.8174249, "lon": -73.9308181 } + ], + "tags": { + "bridge": "yes", + "destination:lanes": "||East 161st Street;Macombs Dam Bridge;East 149th Street;145th Street Bridge", + "ele": "1", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 46624982, + "bounds": { + "minlat": 40.8138982, + "minlon": -73.9312043, + "maxlat": 40.8157258, + "maxlon": -73.9309296 + }, + "nodes": [ + 9163819542, + 529054765, + 9163819543, + 529054766, + 9163819544, + 9163819545, + 529054768, + 9163819546, + 529054771, + 9163819547, + 529054777, + 4736480526 + ], + "geometry": [ + { "lat": 40.8157258, "lon": -73.9309880 }, + { "lat": 40.8155108, "lon": -73.9309503 }, + { "lat": 40.8153923, "lon": -73.9309378 }, + { "lat": 40.8152831, "lon": -73.9309323 }, + { "lat": 40.8151807, "lon": -73.9309296 }, + { "lat": 40.8150740, "lon": -73.9309296 }, + { "lat": 40.8149789, "lon": -73.9309299 }, + { "lat": 40.8148679, "lon": -73.9309382 }, + { "lat": 40.8147598, "lon": -73.9309530 }, + { "lat": 40.8146138, "lon": -73.9309788 }, + { "lat": 40.8145024, "lon": -73.9310067 }, + { "lat": 40.8138982, "lon": -73.9312043 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46625536, + "bounds": { + "minlat": 40.8136972, + "minlon": -73.9321061, + "maxlat": 40.8140171, + "maxlon": -73.9314060 + }, + "nodes": [ + 373762191, + 9051549341, + 5214547511 + ], + "geometry": [ + { "lat": 40.8140171, "lon": -73.9321061 }, + { "lat": 40.8137356, "lon": -73.9314885 }, + { "lat": 40.8136972, "lon": -73.9314060 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "turn:lanes": "none|through|right" + } +}, +{ + "type": "way", + "id": 46625537, + "bounds": { + "minlat": 40.8140960, + "minlon": -73.9325884, + "maxlat": 40.8141604, + "maxlon": -73.9320520 + }, + "nodes": [ + 42779675, + 9903106221, + 9163775413, + 6166835725, + 8719343605, + 42779674, + 7477281985 + ], + "geometry": [ + { "lat": 40.8140960, "lon": -73.9320520 }, + { "lat": 40.8141134, "lon": -73.9320924 }, + { "lat": 40.8141277, "lon": -73.9321317 }, + { "lat": 40.8141403, "lon": -73.9321833 }, + { "lat": 40.8141475, "lon": -73.9322329 }, + { "lat": 40.8141508, "lon": -73.9322827 }, + { "lat": 40.8141604, "lon": -73.9325884 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Madison Avenue Bridge", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY:New York, NY", + "tiger:name_base": "138th:Madison:Madison Avenue", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave:Brg:St", + "tiger:reviewed": "no", + "tiger:zip_left": "10037:10454", + "tiger:zip_right": "10037:10454", + "wikidata": "Q3751430", + "wikipedia": "en:Madison Avenue Bridge" + } +}, +{ + "type": "way", + "id": 46625539, + "bounds": { + "minlat": 40.8136295, + "minlon": -73.9313758, + "maxlat": 40.8137894, + "maxlon": -73.9310144 + }, + "nodes": [ + 42760015, + 2482581646 + ], + "geometry": [ + { "lat": 40.8136295, "lon": -73.9310144 }, + { "lat": 40.8137894, "lon": -73.9313758 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "through|through|through" + } +}, +{ + "type": "way", + "id": 46625541, + "bounds": { + "minlat": 40.8159997, + "minlon": -73.9311877, + "maxlat": 40.8167084, + "maxlon": -73.9310121 + }, + "nodes": [ + 595790192, + 13604753742, + 7940842414, + 595793809 + ], + "geometry": [ + { "lat": 40.8167084, "lon": -73.9310121 }, + { "lat": 40.8164821, "lon": -73.9310715 }, + { "lat": 40.8161175, "lon": -73.9311673 }, + { "lat": 40.8159997, "lon": -73.9311877 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46625546, + "bounds": { + "minlat": 40.8167084, + "minlon": -73.9310121, + "maxlat": 40.8171472, + "maxlon": -73.9309685 + }, + "nodes": [ + 595790188, + 9903106242, + 595790189, + 9903106241, + 595790192 + ], + "geometry": [ + { "lat": 40.8171472, "lon": -73.9309685 }, + { "lat": 40.8170322, "lon": -73.9309844 }, + { "lat": 40.8169196, "lon": -73.9309977 }, + { "lat": 40.8168118, "lon": -73.9310077 }, + { "lat": 40.8167084, "lon": -73.9310121 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Exterior Street" + } +}, +{ + "type": "way", + "id": 46625547, + "bounds": { + "minlat": 40.8172488, + "minlon": -73.9309435, + "maxlat": 40.8193150, + "maxlon": -73.9303313 + }, + "nodes": [ + 13246259562, + 9166288597, + 9166288555, + 9166288556, + 7557697913, + 9166288565, + 595790186, + 9166288564, + 9166288563, + 9166288562, + 7557695126 + ], + "geometry": [ + { "lat": 40.8193150, "lon": -73.9303313 }, + { "lat": 40.8191739, "lon": -73.9303667 }, + { "lat": 40.8189104, "lon": -73.9304027 }, + { "lat": 40.8187545, "lon": -73.9304451 }, + { "lat": 40.8185981, "lon": -73.9304938 }, + { "lat": 40.8181716, "lon": -73.9306603 }, + { "lat": 40.8179422, "lon": -73.9307414 }, + { "lat": 40.8175734, "lon": -73.9308555 }, + { "lat": 40.8174430, "lon": -73.9308934 }, + { "lat": 40.8173427, "lon": -73.9309206 }, + { "lat": 40.8172488, "lon": -73.9309435 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46626563, + "bounds": { + "minlat": 40.8014789, + "minlon": -73.9168342, + "maxlat": 40.8021329, + "maxlon": -73.9163480 + }, + "nodes": [ + 595800941, + 13247612799, + 8285359938, + 9156976065, + 595800943 + ], + "geometry": [ + { "lat": 40.8014789, "lon": -73.9168342 }, + { "lat": 40.8015327, "lon": -73.9167941 }, + { "lat": 40.8020168, "lon": -73.9164330 }, + { "lat": 40.8020562, "lon": -73.9164041 }, + { "lat": 40.8021329, "lon": -73.9163480 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Cypress Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46626565, + "bounds": { + "minlat": 40.7991742, + "minlon": -73.9137124, + "maxlat": 40.8010064, + "maxlon": -73.9102946 + }, + "nodes": [ + 42750274, + 9908642190, + 8285355505, + 9910669597, + 9908642192, + 9910669596, + 988638719, + 13703060021, + 13703060018, + 5859955132, + 42775292, + 5859955133, + 9910669600, + 9910669599, + 42770110 + ], + "geometry": [ + { "lat": 40.8010064, "lon": -73.9137124 }, + { "lat": 40.8009761, "lon": -73.9136264 }, + { "lat": 40.8009582, "lon": -73.9135840 }, + { "lat": 40.8006678, "lon": -73.9129047 }, + { "lat": 40.8006075, "lon": -73.9127699 }, + { "lat": 40.8005512, "lon": -73.9126546 }, + { "lat": 40.8004717, "lon": -73.9125080 }, + { "lat": 40.8003233, "lon": -73.9122561 }, + { "lat": 40.8000235, "lon": -73.9117499 }, + { "lat": 40.7999074, "lon": -73.9115535 }, + { "lat": 40.7998538, "lon": -73.9114635 }, + { "lat": 40.7997905, "lon": -73.9113545 }, + { "lat": 40.7992428, "lon": -73.9104127 }, + { "lat": 40.7992114, "lon": -73.9103587 }, + { "lat": 40.7991742, "lon": -73.9102946 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 133rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "133rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46626566, + "bounds": { + "minlat": 40.8053516, + "minlon": -73.9210535, + "maxlat": 40.8055176, + "maxlon": -73.9206575 + }, + "nodes": [ + 471241911, + 42724759 + ], + "geometry": [ + { "lat": 40.8053516, "lon": -73.9206575 }, + { "lat": 40.8055176, "lon": -73.9210535 } + ], + "tags": { + "bridge": "yes", + "destination:lanes": "none|none|none;Willis Avenue;Third Avenue Bridge", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 46626567, + "bounds": { + "minlat": 40.8055176, + "minlon": -73.9220812, + "maxlat": 40.8059552, + "maxlon": -73.9210535 + }, + "nodes": [ + 42724759, + 12522123913, + 12522123914, + 12522123915, + 471242005 + ], + "geometry": [ + { "lat": 40.8055176, "lon": -73.9210535 }, + { "lat": 40.8056248, "lon": -73.9212998 }, + { "lat": 40.8057309, "lon": -73.9215478 }, + { "lat": 40.8058430, "lon": -73.9218118 }, + { "lat": 40.8059552, "lon": -73.9220812 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46626568, + "bounds": { + "minlat": 40.8047741, + "minlon": -73.9206575, + "maxlat": 40.8053516, + "maxlon": -73.9192848 + }, + "nodes": [ + 595800962, + 471241911 + ], + "geometry": [ + { "lat": 40.8047741, "lon": -73.9192848 }, + { "lat": 40.8053516, "lon": -73.9206575 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46626571, + "bounds": { + "minlat": 40.8052535, + "minlon": -73.9211208, + "maxlat": 40.8054192, + "maxlon": -73.9207281 + }, + "nodes": [ + 471241848, + 9156942255 + ], + "geometry": [ + { "lat": 40.8054192, "lon": -73.9211208 }, + { "lat": 40.8052535, "lon": -73.9207281 } + ], + "tags": { + "bridge": "yes", + "destination:lanes": "Bruckner Expressway;New Haven|Bruckner Expressway;New Haven;RFK Bridge;Manhattan;Queens|RFK Bridge;Manhattan;Queens", + "destination:ref": "I 278 East", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "turn:lanes": "none|through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 46626574, + "bounds": { + "minlat": 40.8043498, + "minlon": -73.9215827, + "maxlat": 40.8149410, + "maxlon": -73.9149607 + }, + "nodes": [ + 42761063, + 9903127475, + 9908651018, + 42761060, + 9908651017, + 12612914178, + 42761058, + 12615881173, + 9908651004, + 3638040640, + 9908651003, + 9908651002, + 42761050, + 9908651001, + 9908650996, + 42761045, + 9908650993, + 13809174875, + 5482371858, + 3637936710, + 9908650989, + 9908650988, + 42761037, + 9908650985, + 9908650981, + 42743428, + 9908650980, + 9908650978, + 42761030, + 9908650976, + 5726964129, + 9908650971, + 42761025, + 9908650970, + 9908650967, + 42761019, + 9908650966, + 9908650965, + 42737709, + 9908650964, + 7038610349, + 13809294797, + 42719461, + 13809294796, + 7042955051, + 9908650945, + 42747188, + 9908650935, + 42761006, + 9908650934, + 10168305441, + 9908650937, + 42753240 + ], + "geometry": [ + { "lat": 40.8149410, "lon": -73.9149607 }, + { "lat": 40.8148433, "lon": -73.9150177 }, + { "lat": 40.8143396, "lon": -73.9153074 }, + { "lat": 40.8142690, "lon": -73.9153481 }, + { "lat": 40.8142168, "lon": -73.9153789 }, + { "lat": 40.8136892, "lon": -73.9156881 }, + { "lat": 40.8136303, "lon": -73.9157226 }, + { "lat": 40.8135601, "lon": -73.9157620 }, + { "lat": 40.8130290, "lon": -73.9160550 }, + { "lat": 40.8129659, "lon": -73.9160931 }, + { "lat": 40.8128946, "lon": -73.9161356 }, + { "lat": 40.8123706, "lon": -73.9164352 }, + { "lat": 40.8123095, "lon": -73.9164705 }, + { "lat": 40.8122402, "lon": -73.9165097 }, + { "lat": 40.8117249, "lon": -73.9168158 }, + { "lat": 40.8116620, "lon": -73.9168528 }, + { "lat": 40.8115925, "lon": -73.9168927 }, + { "lat": 40.8112021, "lon": -73.9171169 }, + { "lat": 40.8110720, "lon": -73.9171916 }, + { "lat": 40.8110056, "lon": -73.9172324 }, + { "lat": 40.8109458, "lon": -73.9172669 }, + { "lat": 40.8104207, "lon": -73.9175695 }, + { "lat": 40.8103548, "lon": -73.9176084 }, + { "lat": 40.8102989, "lon": -73.9176410 }, + { "lat": 40.8096416, "lon": -73.9180174 }, + { "lat": 40.8095796, "lon": -73.9180536 }, + { "lat": 40.8095071, "lon": -73.9180958 }, + { "lat": 40.8089767, "lon": -73.9184005 }, + { "lat": 40.8089253, "lon": -73.9184301 }, + { "lat": 40.8088494, "lon": -73.9184746 }, + { "lat": 40.8086638, "lon": -73.9185775 }, + { "lat": 40.8083323, "lon": -73.9187711 }, + { "lat": 40.8082698, "lon": -73.9188073 }, + { "lat": 40.8081964, "lon": -73.9188493 }, + { "lat": 40.8076418, "lon": -73.9191762 }, + { "lat": 40.8075640, "lon": -73.9192291 }, + { "lat": 40.8074782, "lon": -73.9192900 }, + { "lat": 40.8069536, "lon": -73.9196723 }, + { "lat": 40.8068867, "lon": -73.9197215 }, + { "lat": 40.8068066, "lon": -73.9197776 }, + { "lat": 40.8066272, "lon": -73.9199053 }, + { "lat": 40.8063289, "lon": -73.9201260 }, + { "lat": 40.8062704, "lon": -73.9201693 }, + { "lat": 40.8062066, "lon": -73.9202163 }, + { "lat": 40.8059629, "lon": -73.9203957 }, + { "lat": 40.8057317, "lon": -73.9205680 }, + { "lat": 40.8056584, "lon": -73.9206226 }, + { "lat": 40.8050776, "lon": -73.9210492 }, + { "lat": 40.8050269, "lon": -73.9210880 }, + { "lat": 40.8049702, "lon": -73.9211319 }, + { "lat": 40.8045828, "lon": -73.9214130 }, + { "lat": 40.8044558, "lon": -73.9215056 }, + { "lat": 40.8043498, "lon": -73.9215827 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Brook Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46626575, + "bounds": { + "minlat": 40.8149410, + "minlon": -73.9149607, + "maxlat": 40.8158633, + "maxlon": -73.9144338 + }, + "nodes": [ + 42761063, + 9903127476, + 5482340596, + 7557474523, + 12197807024 + ], + "geometry": [ + { "lat": 40.8149410, "lon": -73.9149607 }, + { "lat": 40.8150433, "lon": -73.9149025 }, + { "lat": 40.8151570, "lon": -73.9148371 }, + { "lat": 40.8153067, "lon": -73.9147495 }, + { "lat": 40.8158633, "lon": -73.9144338 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Brook Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46626580, + "bounds": { + "minlat": 40.8069757, + "minlon": -73.9243563, + "maxlat": 40.8071758, + "maxlon": -73.9242442 + }, + "nodes": [ + 7369741432, + 9163759250, + 9908621352, + 42725346 + ], + "geometry": [ + { "lat": 40.8069757, "lon": -73.9243563 }, + { "lat": 40.8070633, "lon": -73.9242920 }, + { "lat": 40.8071014, "lon": -73.9242715 }, + { "lat": 40.8071758, "lon": -73.9242442 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "horse": "no", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Willis Avenue Bridge", + "oneway": "yes", + "sidewalk": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 46626581, + "bounds": { + "minlat": 40.8076972, + "minlon": -73.9269973, + "maxlat": 40.8079110, + "maxlon": -73.9265436 + }, + "nodes": [ + 471242593, + 12522123916, + 9163759224, + 9163759226 + ], + "geometry": [ + { "lat": 40.8076972, "lon": -73.9265436 }, + { "lat": 40.8077626, "lon": -73.9266963 }, + { "lat": 40.8078280, "lon": -73.9268397 }, + { "lat": 40.8079110, "lon": -73.9269973 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46626582, + "bounds": { + "minlat": 40.8082740, + "minlon": -73.9282753, + "maxlat": 40.8086989, + "maxlon": -73.9276469 + }, + "nodes": [ + 9163759284, + 250546964, + 9163759285, + 250546963 + ], + "geometry": [ + { "lat": 40.8082740, "lon": -73.9276469 }, + { "lat": 40.8084140, "lon": -73.9278686 }, + { "lat": 40.8085557, "lon": -73.9280791 }, + { "lat": 40.8086989, "lon": -73.9282753 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46626584, + "bounds": { + "minlat": 40.8059786, + "minlon": -73.9254407, + "maxlat": 40.8065429, + "maxlon": -73.9250268 + }, + "nodes": [ + 9908650917, + 9908650920, + 8763736074, + 9908650919, + 595801009 + ], + "geometry": [ + { "lat": 40.8065429, "lon": -73.9250268 }, + { "lat": 40.8063061, "lon": -73.9252034 }, + { "lat": 40.8062524, "lon": -73.9252434 }, + { "lat": 40.8060715, "lon": -73.9253738 }, + { "lat": 40.8059786, "lon": -73.9254407 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "oneway": "yes", + "turn:lanes": "left|right|right" + } +}, +{ + "type": "way", + "id": 46626585, + "bounds": { + "minlat": 40.8086989, + "minlon": -73.9295614, + "maxlat": 40.8096692, + "maxlon": -73.9282753 + }, + "nodes": [ + 250546963, + 250545214 + ], + "geometry": [ + { "lat": 40.8086989, "lon": -73.9282753 }, + { "lat": 40.8096692, "lon": -73.9295614 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46626586, + "bounds": { + "minlat": 40.8075358, + "minlon": -73.9271229, + "maxlat": 40.8078378, + "maxlon": -73.9264397 + }, + "nodes": [ + 471242145, + 9163759280, + 12522123921, + 9163759279, + 12522123920, + 42725324 + ], + "geometry": [ + { "lat": 40.8078378, "lon": -73.9271229 }, + { "lat": 40.8077776, "lon": -73.9270013 }, + { "lat": 40.8077210, "lon": -73.9268793 }, + { "lat": 40.8076636, "lon": -73.9267483 }, + { "lat": 40.8075997, "lon": -73.9266000 }, + { "lat": 40.8075358, "lon": -73.9264397 } + ], + "tags": { + "bridge": "yes", + "destination:lanes": "New Haven|New Haven;Manhattan;Queens|Manhattan;Queens;Brook Avenue;Hunts Point Market;Willis Avenue;Third Avenue Bridge", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 46626587, + "bounds": { + "minlat": 40.8066858, + "minlon": -73.9264397, + "maxlat": 40.8075358, + "maxlon": -73.9242889 + }, + "nodes": [ + 42725324, + 12522123932, + 12522123930, + 12522123931, + 250546966 + ], + "geometry": [ + { "lat": 40.8075358, "lon": -73.9264397 }, + { "lat": 40.8073155, "lon": -73.9258858 }, + { "lat": 40.8070945, "lon": -73.9253278 }, + { "lat": 40.8068902, "lon": -73.9248130 }, + { "lat": 40.8066858, "lon": -73.9242889 } + ], + "tags": { + "destination:lanes": "Bruckner Expressway;New Haven|Bruckner Expressway;New Haven;Robert F. Kennedy Bridge;Manhattan;Queens|Robert F. Kennedy Bridge;Manhattan;Queens;Brook Avenue", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete", + "turn:lanes": "none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 46626590, + "bounds": { + "minlat": 40.8096692, + "minlon": -73.9312373, + "maxlat": 40.8111918, + "maxlon": -73.9295614 + }, + "nodes": [ + 250545214, + 529049380, + 2408976657, + 9163775368, + 529049381, + 2408976655, + 9163775369, + 529049382, + 9163775370, + 9163775371, + 529049384 + ], + "geometry": [ + { "lat": 40.8096692, "lon": -73.9295614 }, + { "lat": 40.8103841, "lon": -73.9305042 }, + { "lat": 40.8104674, "lon": -73.9306058 }, + { "lat": 40.8105448, "lon": -73.9307028 }, + { "lat": 40.8106332, "lon": -73.9307998 }, + { "lat": 40.8107331, "lon": -73.9309006 }, + { "lat": 40.8108133, "lon": -73.9309726 }, + { "lat": 40.8109022, "lon": -73.9310484 }, + { "lat": 40.8109976, "lon": -73.9311173 }, + { "lat": 40.8110929, "lon": -73.9311773 }, + { "lat": 40.8111918, "lon": -73.9312373 } + ], + "tags": { + "destination:lanes": "none|none|East 149th Street;145th Street Bridge;Yankee Stadium;Grand Concourse;East 138 Street;Lincoln Hospital;The Bronx Museum of the Arts", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 46626592, + "bounds": { + "minlat": 40.8083858, + "minlon": -73.9290658, + "maxlat": 40.8087869, + "maxlon": -73.9287652 + }, + "nodes": [ + 567820415, + 13003571880, + 13040847454, + 42749817 + ], + "geometry": [ + { "lat": 40.8087869, "lon": -73.9287652 }, + { "lat": 40.8087443, "lon": -73.9287958 }, + { "lat": 40.8084423, "lon": -73.9290233 }, + { "lat": 40.8083858, "lon": -73.9290658 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Lincoln Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 46626593, + "bounds": { + "minlat": 40.8078378, + "minlon": -73.9283762, + "maxlat": 40.8086156, + "maxlon": -73.9271229 + }, + "nodes": [ + 471242090, + 12522123937, + 9163759283, + 12522123936, + 471242190, + 12522123935, + 9163759282, + 12522123934, + 9163759281, + 12522123933, + 471242191, + 471242145 + ], + "geometry": [ + { "lat": 40.8086156, "lon": -73.9283762 }, + { "lat": 40.8085326, "lon": -73.9282614 }, + { "lat": 40.8084450, "lon": -73.9281432 }, + { "lat": 40.8083711, "lon": -73.9280402 }, + { "lat": 40.8082966, "lon": -73.9279273 }, + { "lat": 40.8082267, "lon": -73.9278184 }, + { "lat": 40.8081568, "lon": -73.9277039 }, + { "lat": 40.8080923, "lon": -73.9275963 }, + { "lat": 40.8080222, "lon": -73.9274750 }, + { "lat": 40.8079601, "lon": -73.9273641 }, + { "lat": 40.8078954, "lon": -73.9272362 }, + { "lat": 40.8078378, "lon": -73.9271229 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46626602, + "bounds": { + "minlat": 40.8078525, + "minlon": -73.9318355, + "maxlat": 40.8084991, + "maxlon": -73.9306045 + }, + "nodes": [ + 595801150, + 9163778734, + 9163778733, + 42753226, + 7612920628, + 2826997293 + ], + "geometry": [ + { "lat": 40.8084991, "lon": -73.9306045 }, + { "lat": 40.8084255, "lon": -73.9307156 }, + { "lat": 40.8083533, "lon": -73.9308387 }, + { "lat": 40.8082929, "lon": -73.9309519 }, + { "lat": 40.8080465, "lon": -73.9314777 }, + { "lat": 40.8078525, "lon": -73.9318355 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Third Avenue Bridge", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "3", + "layer": "2", + "maxspeed": "25 mph", + "name": "Third Avenue Bridge", + "oneway": "yes", + "sidewalk:both": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q7784766", + "wikipedia": "en:Third Avenue Bridge (New York City)" + } +}, +{ + "type": "way", + "id": 46626629, + "bounds": { + "minlat": 40.8094099, + "minlon": -73.9296227, + "maxlat": 40.8096310, + "maxlon": -73.9293273 + }, + "nodes": [ + 595801157, + 595801158 + ], + "geometry": [ + { "lat": 40.8096310, "lon": -73.9293273 }, + { "lat": 40.8094099, "lon": -73.9296227 } + ], + "tags": { + "alt_name": "Third Avenue", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "source:name": "OSM US TIGER 2012 Roads Overly" + } +}, +{ + "type": "way", + "id": 46626630, + "bounds": { + "minlat": 40.8083858, + "minlon": -73.9300049, + "maxlat": 40.8087841, + "maxlon": -73.9290658 + }, + "nodes": [ + 42749817, + 9908636605, + 8285603918, + 11427300178, + 595801153 + ], + "geometry": [ + { "lat": 40.8083858, "lon": -73.9290658 }, + { "lat": 40.8084423, "lon": -73.9292014 }, + { "lat": 40.8084604, "lon": -73.9292448 }, + { "lat": 40.8087621, "lon": -73.9299533 }, + { "lat": 40.8087841, "lon": -73.9300049 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 134th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "134th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46626632, + "bounds": { + "minlat": 40.8116153, + "minlon": -73.9311607, + "maxlat": 40.8119547, + "maxlon": -73.9307369 + }, + "nodes": [ + 2408984076, + 9910711683, + 9910711684, + 9910711685, + 9910711686, + 2408984075 + ], + "geometry": [ + { "lat": 40.8116153, "lon": -73.9311607 }, + { "lat": 40.8116532, "lon": -73.9311332 }, + { "lat": 40.8116993, "lon": -73.9310859 }, + { "lat": 40.8117396, "lon": -73.9310380 }, + { "lat": 40.8119121, "lon": -73.9308035 }, + { "lat": 40.8119547, "lon": -73.9307369 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 46626640, + "bounds": { + "minlat": 40.8259674, + "minlon": -73.9248530, + "maxlat": 40.8271341, + "maxlon": -73.9241391 + }, + "nodes": [ + 2408448901, + 12163704722, + 12163704724, + 5163203690, + 13037105470, + 9166351227, + 42733711 + ], + "geometry": [ + { "lat": 40.8271341, "lon": -73.9241391 }, + { "lat": 40.8270376, "lon": -73.9241960 }, + { "lat": 40.8269925, "lon": -73.9242226 }, + { "lat": 40.8260567, "lon": -73.9247743 }, + { "lat": 40.8260402, "lon": -73.9247838 }, + { "lat": 40.8260187, "lon": -73.9248028 }, + { "lat": 40.8259674, "lon": -73.9248530 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Walton Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 46626642, + "bounds": { + "minlat": 40.8086156, + "minlon": -73.9296573, + "maxlat": 40.8095870, + "maxlon": -73.9283762 + }, + "nodes": [ + 529054861, + 471242090 + ], + "geometry": [ + { "lat": 40.8095870, "lon": -73.9296573 }, + { "lat": 40.8086156, "lon": -73.9283762 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46626748, + "bounds": { + "minlat": 40.8066532, + "minlon": -73.9254650, + "maxlat": 40.8068775, + "maxlon": -73.9249991 + }, + "nodes": [ + 471243365, + 9163759271, + 9163759273, + 9163759272, + 595801007 + ], + "geometry": [ + { "lat": 40.8068775, "lon": -73.9254650 }, + { "lat": 40.8067095, "lon": -73.9250667 }, + { "lat": 40.8066947, "lon": -73.9250362 }, + { "lat": 40.8066717, "lon": -73.9250110 }, + { "lat": 40.8066532, "lon": -73.9249991 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 134th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "134th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46627520, + "bounds": { + "minlat": 40.8618984, + "minlon": -73.9128385, + "maxlat": 40.8619672, + "maxlon": -73.9124461 + }, + "nodes": [ + 12074339369, + 12058467754, + 9903143745, + 9903143744, + 12058475126 + ], + "geometry": [ + { "lat": 40.8618984, "lon": -73.9124461 }, + { "lat": 40.8619393, "lon": -73.9127139 }, + { "lat": 40.8619477, "lon": -73.9127605 }, + { "lat": 40.8619579, "lon": -73.9128050 }, + { "lat": 40.8619672, "lon": -73.9128385 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "layer": "1", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 46628187, + "bounds": { + "minlat": 40.8050821, + "minlon": -73.9250646, + "maxlat": 40.8058221, + "maxlon": -73.9233118 + }, + "nodes": [ + 7553992430, + 9908650921, + 9908650929, + 42725827 + ], + "geometry": [ + { "lat": 40.8058221, "lon": -73.9250646 }, + { "lat": 40.8058023, "lon": -73.9250243 }, + { "lat": 40.8051234, "lon": -73.9234174 }, + { "lat": 40.8050821, "lon": -73.9233118 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 46629376, + "bounds": { + "minlat": 40.7107814, + "minlon": -73.9837964, + "maxlat": 40.7108774, + "maxlon": -73.9823619 + }, + "nodes": [ + 370888101, + 42434832, + 42436971 + ], + "geometry": [ + { "lat": 40.7108774, "lon": -73.9823619 }, + { "lat": 40.7108145, "lon": -73.9833045 }, + { "lat": 40.7107814, "lon": -73.9837964 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46629378, + "bounds": { + "minlat": 40.7022362, + "minlon": -74.0091454, + "maxlat": 40.7027291, + "maxlon": -74.0083337 + }, + "nodes": [ + 3790255316, + 9907745079, + 42451409 + ], + "geometry": [ + { "lat": 40.7022362, "lon": -74.0091454 }, + { "lat": 40.7023227, "lon": -74.0090023 }, + { "lat": 40.7027291, "lon": -74.0083337 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "25 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "turn:lanes": "through|through|merge_to_left", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 46656961, + "bounds": { + "minlat": 40.8044365, + "minlon": -73.9118438, + "maxlat": 40.8045505, + "maxlon": -73.9115006 + }, + "nodes": [ + 42728734, + 13003720163, + 596270909 + ], + "geometry": [ + { "lat": 40.8044365, "lon": -73.9118438 }, + { "lat": 40.8044864, "lon": -73.9117008 }, + { "lat": 40.8045505, "lon": -73.9115006 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "name_1": "Houghton Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "Houghton", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46656962, + "bounds": { + "minlat": 40.8045505, + "minlon": -73.9115006, + "maxlat": 40.8053092, + "maxlon": -73.9098901 + }, + "nodes": [ + 596270909, + 42752942, + 9156970114, + 13039019672, + 42752947 + ], + "geometry": [ + { "lat": 40.8045505, "lon": -73.9115006 }, + { "lat": 40.8048828, "lon": -73.9107910 }, + { "lat": 40.8052309, "lon": -73.9100361 }, + { "lat": 40.8052658, "lon": -73.9099710 }, + { "lat": 40.8053092, "lon": -73.9098901 } + ], + "tags": { + "fixme": "check lanes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "name_1": "Houghton Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "Houghton", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46656967, + "bounds": { + "minlat": 40.8034656, + "minlon": -73.9138273, + "maxlat": 40.8041454, + "maxlon": -73.9122889 + }, + "nodes": [ + 596271084, + 42719481, + 42737584, + 8834383059 + ], + "geometry": [ + { "lat": 40.8034656, "lon": -73.9138273 }, + { "lat": 40.8035278, "lon": -73.9136829 }, + { "lat": 40.8039522, "lon": -73.9127450 }, + { "lat": 40.8041454, "lon": -73.9122889 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "name_1": "Houghton Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "Houghton", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46656970, + "bounds": { + "minlat": 40.8055017, + "minlon": -73.9124384, + "maxlat": 40.8088028, + "maxlon": -73.9107123 + }, + "nodes": [ + 13038908734, + 42764618, + 13038908727, + 42764622, + 13809174861, + 42743451, + 13809174859, + 42764625, + 5487854684, + 5175586410, + 1104953194 + ], + "geometry": [ + { "lat": 40.8055017, "lon": -73.9124384 }, + { "lat": 40.8055659, "lon": -73.9124037 }, + { "lat": 40.8056335, "lon": -73.9123689 }, + { "lat": 40.8062465, "lon": -73.9120517 }, + { "lat": 40.8068818, "lon": -73.9117095 }, + { "lat": 40.8069763, "lon": -73.9116586 }, + { "lat": 40.8070412, "lon": -73.9116250 }, + { "lat": 40.8080387, "lon": -73.9111083 }, + { "lat": 40.8084040, "lon": -73.9109190 }, + { "lat": 40.8087493, "lon": -73.9107400 }, + { "lat": 40.8088028, "lon": -73.9107123 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "name": "Jackson Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jackson", + "tiger:name_type": "Ave", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 46656971, + "bounds": { + "minlat": 40.8032675, + "minlon": -73.9162305, + "maxlat": 40.8037128, + "maxlon": -73.9158500 + }, + "nodes": [ + 42728721, + 596271272, + 596271275, + 471244273 + ], + "geometry": [ + { "lat": 40.8037128, "lon": -73.9158500 }, + { "lat": 40.8035589, "lon": -73.9159617 }, + { "lat": 40.8034168, "lon": -73.9160958 }, + { "lat": 40.8032675, "lon": -73.9162305 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46656973, + "bounds": { + "minlat": 40.8029893, + "minlon": -73.9155078, + "maxlat": 40.8035998, + "maxlon": -73.9138187 + }, + "nodes": [ + 471244592, + 12521912085, + 9156930410, + 471244593, + 9156930411, + 12521912084, + 471244594, + 471244595, + 9156930412, + 9156930413, + 12521912083, + 471244596, + 9156930414, + 471244598 + ], + "geometry": [ + { "lat": 40.8029893, "lon": -73.9155078 }, + { "lat": 40.8030318, "lon": -73.9154292 }, + { "lat": 40.8030865, "lon": -73.9153233 }, + { "lat": 40.8031296, "lon": -73.9152317 }, + { "lat": 40.8031656, "lon": -73.9151428 }, + { "lat": 40.8032064, "lon": -73.9150288 }, + { "lat": 40.8032458, "lon": -73.9149041 }, + { "lat": 40.8032872, "lon": -73.9147578 }, + { "lat": 40.8033720, "lon": -73.9144291 }, + { "lat": 40.8034092, "lon": -73.9142970 }, + { "lat": 40.8034448, "lon": -73.9141863 }, + { "lat": 40.8034857, "lon": -73.9140768 }, + { "lat": 40.8035417, "lon": -73.9139459 }, + { "lat": 40.8035998, "lon": -73.9138187 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "I-278", + "tiger:name_type": "Expy", + "tiger:reviewed": "no", + "toll": "no" + } +}, +{ + "type": "way", + "id": 46656974, + "bounds": { + "minlat": 40.8023920, + "minlon": -73.9166287, + "maxlat": 40.8034449, + "maxlon": -73.9157705 + }, + "nodes": [ + 471244271, + 9156942238, + 9156942237, + 471244272, + 9156942236, + 471244273, + 12521912067, + 9156942235, + 471244274, + 9156942234, + 12521912068, + 9156942233, + 471244276, + 12521912069, + 471244277, + 12521912070, + 9156942232, + 12521912071, + 471244278, + 12521912072, + 471244279 + ], + "geometry": [ + { "lat": 40.8034449, "lon": -73.9157705 }, + { "lat": 40.8034253, "lon": -73.9158629 }, + { "lat": 40.8033899, "lon": -73.9159642 }, + { "lat": 40.8033564, "lon": -73.9160574 }, + { "lat": 40.8033180, "lon": -73.9161433 }, + { "lat": 40.8032675, "lon": -73.9162305 }, + { "lat": 40.8032271, "lon": -73.9162864 }, + { "lat": 40.8031954, "lon": -73.9163278 }, + { "lat": 40.8031460, "lon": -73.9163826 }, + { "lat": 40.8031101, "lon": -73.9164155 }, + { "lat": 40.8030700, "lon": -73.9164482 }, + { "lat": 40.8030243, "lon": -73.9164786 }, + { "lat": 40.8029779, "lon": -73.9165027 }, + { "lat": 40.8029324, "lon": -73.9165210 }, + { "lat": 40.8028896, "lon": -73.9165338 }, + { "lat": 40.8028430, "lon": -73.9165448 }, + { "lat": 40.8027899, "lon": -73.9165539 }, + { "lat": 40.8026370, "lon": -73.9165768 }, + { "lat": 40.8025381, "lon": -73.9165954 }, + { "lat": 40.8024602, "lon": -73.9166116 }, + { "lat": 40.8023920, "lon": -73.9166287 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "50 mph", + "maxspeed:advisory": "25 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 46656975, + "bounds": { + "minlat": 40.8034449, + "minlon": -73.9157705, + "maxlat": 40.8035398, + "maxlon": -73.9147757 + }, + "nodes": [ + 471244268, + 12521912064, + 9156942241, + 471244269, + 9156942240, + 471244270, + 12521912065, + 9156942239, + 12521912066, + 471244271 + ], + "geometry": [ + { "lat": 40.8035398, "lon": -73.9147757 }, + { "lat": 40.8035207, "lon": -73.9149196 }, + { "lat": 40.8035035, "lon": -73.9150700 }, + { "lat": 40.8034921, "lon": -73.9152207 }, + { "lat": 40.8034830, "lon": -73.9153912 }, + { "lat": 40.8034764, "lon": -73.9155242 }, + { "lat": 40.8034698, "lon": -73.9156014 }, + { "lat": 40.8034632, "lon": -73.9156625 }, + { "lat": 40.8034539, "lon": -73.9157184 }, + { "lat": 40.8034449, "lon": -73.9157705 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "50 mph", + "maxspeed:advisory": "25 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 46656981, + "bounds": { + "minlat": 40.8020782, + "minlon": -73.9165177, + "maxlat": 40.8022863, + "maxlon": -73.9163571 + }, + "nodes": [ + 596271375, + 471244588 + ], + "geometry": [ + { "lat": 40.8020782, "lon": -73.9165177 }, + { "lat": 40.8022863, "lon": -73.9163571 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "I-278", + "tiger:name_type": "Expy", + "tiger:reviewed": "no", + "toll": "no" + } +}, +{ + "type": "way", + "id": 46656989, + "bounds": { + "minlat": 40.8022863, + "minlon": -73.9163571, + "maxlat": 40.8029893, + "maxlon": -73.9155078 + }, + "nodes": [ + 471244588, + 9156930393, + 471244818, + 9156930407, + 471244589, + 471244591, + 9156930408, + 9156930409, + 12521912086, + 471244592 + ], + "geometry": [ + { "lat": 40.8022863, "lon": -73.9163571 }, + { "lat": 40.8023581, "lon": -73.9162923 }, + { "lat": 40.8024383, "lon": -73.9162221 }, + { "lat": 40.8025276, "lon": -73.9161350 }, + { "lat": 40.8026171, "lon": -73.9160410 }, + { "lat": 40.8027028, "lon": -73.9159442 }, + { "lat": 40.8027796, "lon": -73.9158427 }, + { "lat": 40.8028568, "lon": -73.9157369 }, + { "lat": 40.8029221, "lon": -73.9156292 }, + { "lat": 40.8029893, "lon": -73.9155078 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "I-278", + "tiger:name_type": "Expy", + "tiger:reviewed": "no", + "toll": "no" + } +}, +{ + "type": "way", + "id": 46656992, + "bounds": { + "minlat": 40.8016697, + "minlon": -73.9170459, + "maxlat": 40.8021538, + "maxlon": -73.9167134 + }, + "nodes": [ + 596271471, + 471244282, + 9156942225, + 471244283, + 12521912073, + 9156942227 + ], + "geometry": [ + { "lat": 40.8021538, "lon": -73.9167134 }, + { "lat": 40.8020869, "lon": -73.9167469 }, + { "lat": 40.8020048, "lon": -73.9167930 }, + { "lat": 40.8019136, "lon": -73.9168503 }, + { "lat": 40.8017934, "lon": -73.9169366 }, + { "lat": 40.8016697, "lon": -73.9170459 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "50 mph", + "maxspeed:advisory": "25 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 46656995, + "bounds": { + "minlat": 40.8021538, + "minlon": -73.9167134, + "maxlat": 40.8023920, + "maxlon": -73.9166287 + }, + "nodes": [ + 471244279, + 9156942230, + 471244281, + 596271471 + ], + "geometry": [ + { "lat": 40.8023920, "lon": -73.9166287 }, + { "lat": 40.8023090, "lon": -73.9166541 }, + { "lat": 40.8022346, "lon": -73.9166812 }, + { "lat": 40.8021538, "lon": -73.9167134 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "50 mph", + "maxspeed:advisory": "25 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 46687702, + "bounds": { + "minlat": 40.8450960, + "minlon": -73.9120080, + "maxlat": 40.8451040, + "maxlon": -73.9115801 + }, + "nodes": [ + 596668832, + 12411198058 + ], + "geometry": [ + { "lat": 40.8451040, "lon": -73.9120080 }, + { "lat": 40.8450960, "lon": -73.9115801 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46687703, + "bounds": { + "minlat": 40.8448875, + "minlon": -73.9104811, + "maxlat": 40.8450605, + "maxlon": -73.9069466 + }, + "nodes": [ + 596669017, + 12041905368, + 12041910469, + 12041910470, + 4635180152 + ], + "geometry": [ + { "lat": 40.8450605, "lon": -73.9104811 }, + { "lat": 40.8450510, "lon": -73.9102415 }, + { "lat": 40.8450389, "lon": -73.9099595 }, + { "lat": 40.8450253, "lon": -73.9096681 }, + { "lat": 40.8448875, "lon": -73.9069466 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1" + } +}, +{ + "type": "way", + "id": 46687704, + "bounds": { + "minlat": 40.8450190, + "minlon": -73.9120565, + "maxlat": 40.8453127, + "maxlon": -73.9118472 + }, + "nodes": [ + 459823618, + 596669030 + ], + "geometry": [ + { "lat": 40.8453127, "lon": -73.9118472 }, + { "lat": 40.8450190, "lon": -73.9120565 } + ], + "tags": { + "bridge": "yes", + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "2", + "layer": "1", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 46687708, + "bounds": { + "minlat": 40.8451772, + "minlon": -73.9115732, + "maxlat": 40.8452186, + "maxlon": -73.9104738 + }, + "nodes": [ + 103070844, + 4635180144 + ], + "geometry": [ + { "lat": 40.8451772, "lon": -73.9104738 }, + { "lat": 40.8452186, "lon": -73.9115732 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-2", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "tiger:cfcc": "A13", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cross Bronx", + "tiger:name_type": "Expy", + "tunnel": "yes", + "turn:lanes": "none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 46693864, + "bounds": { + "minlat": 40.7846006, + "minlon": -73.9433191, + "maxlat": 40.7851720, + "maxlon": -73.9419442 + }, + "nodes": [ + 42445263, + 4980915601, + 5482216783, + 9906259316, + 6190264274, + 42433377 + ], + "geometry": [ + { "lat": 40.7851720, "lon": -73.9433191 }, + { "lat": 40.7851177, "lon": -73.9431889 }, + { "lat": 40.7847404, "lon": -73.9422858 }, + { "lat": 40.7846677, "lon": -73.9421118 }, + { "lat": 40.7846313, "lon": -73.9420247 }, + { "lat": 40.7846006, "lon": -73.9419442 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 99th Street", + "name:ru": "Восточная 99-я стрит", + "name_1": "East 99 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46693865, + "bounds": { + "minlat": 40.7871827, + "minlon": -73.9514729, + "maxlat": 40.7878011, + "maxlon": -73.9499793 + }, + "nodes": [ + 42453577, + 3901503160, + 7951097793, + 6248342743, + 42447174 + ], + "geometry": [ + { "lat": 40.7878011, "lon": -73.9514729 }, + { "lat": 40.7877709, "lon": -73.9514072 }, + { "lat": 40.7874114, "lon": -73.9505334 }, + { "lat": 40.7872188, "lon": -73.9500654 }, + { "lat": 40.7871827, "lon": -73.9499793 } + ], + "tags": { + "highway": "residential", + "name": "East 98th Street", + "name:ru": "Восточная 98-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46693868, + "bounds": { + "minlat": 40.7961631, + "minlon": -73.9488554, + "maxlat": 40.7967335, + "maxlon": -73.9476486 + }, + "nodes": [ + 42434377, + 6819274885, + 6217820602, + 6961065598, + 10610255915, + 9177562830, + 3563594386, + 42432376 + ], + "geometry": [ + { "lat": 40.7961631, "lon": -73.9476486 }, + { "lat": 40.7962157, "lon": -73.9477559 }, + { "lat": 40.7964552, "lon": -73.9483064 }, + { "lat": 40.7966434, "lon": -73.9487473 }, + { "lat": 40.7966531, "lon": -73.9487621 }, + { "lat": 40.7966627, "lon": -73.9487768 }, + { "lat": 40.7966889, "lon": -73.9488049 }, + { "lat": 40.7967335, "lon": -73.9488554 } + ], + "tags": { + "alt_name": "Tito Puente Way", + "alt_name:etymology:wikidata": "Q317122", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "-1", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 110th Street", + "name:ru": "Восточная 110-я стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:lane:left": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46693907, + "bounds": { + "minlat": 40.8058396, + "minlon": -73.9408517, + "maxlat": 40.8083381, + "maxlon": -73.9349414 + }, + "nodes": [ + 42448979, + 7004469482, + 10171956588, + 42446182, + 10171956585, + 10168132315, + 589928040, + 589928030, + 10168169520, + 8234417267, + 42447209, + 9903045878, + 1332843611, + 9903045880, + 9903045879 + ], + "geometry": [ + { "lat": 40.8083381, "lon": -73.9408517 }, + { "lat": 40.8083034, "lon": -73.9407709 }, + { "lat": 40.8076963, "lon": -73.9393695 }, + { "lat": 40.8076491, "lon": -73.9392584 }, + { "lat": 40.8076113, "lon": -73.9391686 }, + { "lat": 40.8070513, "lon": -73.9378381 }, + { "lat": 40.8070213, "lon": -73.9377715 }, + { "lat": 40.8069166, "lon": -73.9375205 }, + { "lat": 40.8068867, "lon": -73.9374488 }, + { "lat": 40.8063359, "lon": -73.9361227 }, + { "lat": 40.8062979, "lon": -73.9360254 }, + { "lat": 40.8062628, "lon": -73.9359375 }, + { "lat": 40.8060036, "lon": -73.9353273 }, + { "lat": 40.8058611, "lon": -73.9349921 }, + { "lat": 40.8058396, "lon": -73.9349414 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 128th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694751, + "bounds": { + "minlat": 40.7565033, + "minlon": -73.9611654, + "maxlat": 40.7566914, + "maxlon": -73.9607182 + }, + "nodes": [ + 42440567, + 7248638338, + 42443621 + ], + "geometry": [ + { "lat": 40.7566914, "lon": -73.9611654 }, + { "lat": 40.7566379, "lon": -73.9610363 }, + { "lat": 40.7565033, "lon": -73.9607182 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 56th Street", + "name:ru": "Восточная 56-я стрит", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694752, + "bounds": { + "minlat": 40.7560685, + "minlon": -73.9638565, + "maxlat": 40.7570205, + "maxlon": -73.9616198 + }, + "nodes": [ + 42440566, + 7248638329, + 10121802245, + 42448390 + ], + "geometry": [ + { "lat": 40.7560685, "lon": -73.9616198 }, + { "lat": 40.7561229, "lon": -73.9617477 }, + { "lat": 40.7569642, "lon": -73.9637241 }, + { "lat": 40.7570205, "lon": -73.9638565 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 55th Street", + "name:ru": "Восточная 55-я стрит", + "name_1": "East 55 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46694753, + "bounds": { + "minlat": 40.7699800, + "minlon": -73.9654340, + "maxlat": 40.7717833, + "maxlon": -73.9611569 + }, + "nodes": [ + 42436477, + 4207313538, + 4207313533, + 596776057, + 42436481, + 4207313526, + 3562587893, + 42436484, + 3562587894, + 12801914327 + ], + "geometry": [ + { "lat": 40.7717833, "lon": -73.9654340 }, + { "lat": 40.7717389, "lon": -73.9653250 }, + { "lat": 40.7711949, "lon": -73.9640276 }, + { "lat": 40.7711488, "lon": -73.9639199 }, + { "lat": 40.7710637, "lon": -73.9637208 }, + { "lat": 40.7710228, "lon": -73.9636254 }, + { "lat": 40.7704716, "lon": -73.9623172 }, + { "lat": 40.7704253, "lon": -73.9622127 }, + { "lat": 40.7703827, "lon": -73.9621118 }, + { "lat": 40.7699800, "lon": -73.9611569 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "East 72nd Street", + "name:ru": "Восточная 72-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46694755, + "bounds": { + "minlat": 40.7653096, + "minlon": -73.9547105, + "maxlat": 40.7655447, + "maxlon": -73.9541508 + }, + "nodes": [ + 42428003, + 6670244839, + 9906953438 + ], + "geometry": [ + { "lat": 40.7655447, "lon": -73.9547105 }, + { "lat": 40.7654905, "lon": -73.9545812 }, + { "lat": 40.7653096, "lon": -73.9541508 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "name": "East 70th Street", + "name:ru": "Восточная 70-я стрит", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694757, + "bounds": { + "minlat": 40.7717042, + "minlon": -73.9624991, + "maxlat": 40.7730994, + "maxlon": -73.9591761 + }, + "nodes": [ + 42430063, + 10170793887, + 10125087307, + 42430060, + 10125087308, + 10125222328, + 42430056, + 596776046 + ], + "geometry": [ + { "lat": 40.7717042, "lon": -73.9591761 }, + { "lat": 40.7717642, "lon": -73.9593193 }, + { "lat": 40.7723380, "lon": -73.9606883 }, + { "lat": 40.7723765, "lon": -73.9607791 }, + { "lat": 40.7724238, "lon": -73.9608917 }, + { "lat": 40.7729772, "lon": -73.9622058 }, + { "lat": 40.7730236, "lon": -73.9623161 }, + { "lat": 40.7730994, "lon": -73.9624991 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "name": "East 75th Street", + "name:ru": "Восточная 75-я стрит", + "name_1": "East 75 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694758, + "bounds": { + "minlat": 40.7672237, + "minlon": -73.9527922, + "maxlat": 40.7681722, + "maxlon": -73.9505427 + }, + "nodes": [ + 42428012, + 6689923824, + 371197453 + ], + "geometry": [ + { "lat": 40.7681722, "lon": -73.9527922 }, + { "lat": 40.7681172, "lon": -73.9526585 }, + { "lat": 40.7672237, "lon": -73.9505427 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 74th Street", + "name:ru": "Восточная 74-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12052613", + "wikipedia": "en:74th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 46694759, + "bounds": { + "minlat": 40.7667452, + "minlon": -73.9532494, + "maxlat": 40.7675409, + "maxlon": -73.9514025 + }, + "nodes": [ + 596799891, + 5463840961, + 6670244828, + 42428010 + ], + "geometry": [ + { "lat": 40.7667452, "lon": -73.9514025 }, + { "lat": 40.7668036, "lon": -73.9515379 }, + { "lat": 40.7674836, "lon": -73.9531127 }, + { "lat": 40.7675409, "lon": -73.9532494 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 73rd Street", + "name:ru": "Восточная 73-я стрит", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694760, + "bounds": { + "minlat": 40.7704966, + "minlon": -73.9665333, + "maxlat": 40.7731391, + "maxlon": -73.9602540 + }, + "nodes": [ + 10043925178, + 10125087315, + 42438798, + 10125087316, + 10125222336, + 42438795, + 596776063, + 10125222335, + 10167967053, + 42438791, + 10167967049, + 7785624667, + 42438788 + ], + "geometry": [ + { "lat": 40.7704966, "lon": -73.9602540 }, + { "lat": 40.7710718, "lon": -73.9616142 }, + { "lat": 40.7711121, "lon": -73.9617094 }, + { "lat": 40.7711570, "lon": -73.9618158 }, + { "lat": 40.7717098, "lon": -73.9631304 }, + { "lat": 40.7717575, "lon": -73.9632440 }, + { "lat": 40.7718322, "lon": -73.9634212 }, + { "lat": 40.7718787, "lon": -73.9635327 }, + { "lat": 40.7724162, "lon": -73.9648240 }, + { "lat": 40.7724629, "lon": -73.9649361 }, + { "lat": 40.7725132, "lon": -73.9650551 }, + { "lat": 40.7731016, "lon": -73.9664464 }, + { "lat": 40.7731391, "lon": -73.9665333 } + ], + "tags": { + "cycleway:left": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 73rd Street", + "name:ru": "Восточная 73-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694761, + "bounds": { + "minlat": 40.7696410, + "minlon": -73.9494513, + "maxlat": 40.7700936, + "maxlon": -73.9484005 + }, + "nodes": [ + 42424142, + 7784412862, + 10122913406, + 9906887431, + 9906887430, + 4562863353 + ], + "geometry": [ + { "lat": 40.7696410, "lon": -73.9484005 }, + { "lat": 40.7696536, "lon": -73.9484285 }, + { "lat": 40.7700538, "lon": -73.9493699 }, + { "lat": 40.7700602, "lon": -73.9493851 }, + { "lat": 40.7700666, "lon": -73.9494000 }, + { "lat": 40.7700936, "lon": -73.9494513 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 78th Street", + "name:ru": "Восточная 78-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694762, + "bounds": { + "minlat": 40.7700880, + "minlon": -73.9646737, + "maxlat": 40.7756852, + "maxlon": -73.9514050 + }, + "nodes": [ + 42428015, + 6689923795, + 10122913413, + 6689909666, + 42446478, + 6689909668, + 8250715763, + 42443024, + 8250715778, + 10122913414, + 42446472, + 10122937119, + 10122937122, + 42446466, + 10122937130, + 10122937133, + 42446461, + 596776052, + 10122937134, + 10122937145, + 42446016, + 10122937144, + 7094731948, + 42446455 + ], + "geometry": [ + { "lat": 40.7700880, "lon": -73.9514050 }, + { "lat": 40.7701384, "lon": -73.9515195 }, + { "lat": 40.7709623, "lon": -73.9534751 }, + { "lat": 40.7709737, "lon": -73.9535023 }, + { "lat": 40.7710306, "lon": -73.9536338 }, + { "lat": 40.7710905, "lon": -73.9537734 }, + { "lat": 40.7719769, "lon": -73.9558798 }, + { "lat": 40.7720395, "lon": -73.9560266 }, + { "lat": 40.7720845, "lon": -73.9561304 }, + { "lat": 40.7729226, "lon": -73.9581232 }, + { "lat": 40.7729798, "lon": -73.9582574 }, + { "lat": 40.7730364, "lon": -73.9583902 }, + { "lat": 40.7736140, "lon": -73.9597546 }, + { "lat": 40.7736555, "lon": -73.9598542 }, + { "lat": 40.7737005, "lon": -73.9599617 }, + { "lat": 40.7742566, "lon": -73.9612794 }, + { "lat": 40.7743023, "lon": -73.9613859 }, + { "lat": 40.7743785, "lon": -73.9615646 }, + { "lat": 40.7744230, "lon": -73.9616724 }, + { "lat": 40.7749701, "lon": -73.9629713 }, + { "lat": 40.7750204, "lon": -73.9630908 }, + { "lat": 40.7750651, "lon": -73.9631986 }, + { "lat": 40.7756509, "lon": -73.9645923 }, + { "lat": 40.7756852, "lon": -73.9646737 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 77th Street", + "name:ru": "Восточная 77-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694763, + "bounds": { + "minlat": 40.7688591, + "minlon": -73.9518664, + "maxlat": 40.7694509, + "maxlon": -73.9504796 + }, + "nodes": [ + 42428014, + 6689923814, + 10832508151 + ], + "geometry": [ + { "lat": 40.7694509, "lon": -73.9518664 }, + { "lat": 40.7693938, "lon": -73.9517307 }, + { "lat": 40.7688591, "lon": -73.9504796 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "East 76th Street", + "name:ru": "Восточная 76-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694764, + "bounds": { + "minlat": 40.7717169, + "minlon": -73.9627630, + "maxlat": 40.7783119, + "maxlon": -73.9471185 + }, + "nodes": [ + 42451754, + 7103815244, + 7834024332, + 42428024, + 7834024335, + 8996371852, + 6691104511, + 42452956, + 6263083519, + 6691104513, + 5401365957, + 7834024333, + 6176390288, + 42443029, + 7834024313, + 10170647167, + 42450025, + 10170647170, + 10125087294, + 42447115, + 10125087295, + 10125180312, + 42452954, + 596776095, + 10125180311, + 3341917069, + 42446026, + 3341917068, + 3341858522, + 42452951 + ], + "geometry": [ + { "lat": 40.7717169, "lon": -73.9471185 }, + { "lat": 40.7717714, "lon": -73.9472505 }, + { "lat": 40.7726561, "lon": -73.9493419 }, + { "lat": 40.7727093, "lon": -73.9494733 }, + { "lat": 40.7727626, "lon": -73.9496052 }, + { "lat": 40.7734598, "lon": -73.9512565 }, + { "lat": 40.7736017, "lon": -73.9515921 }, + { "lat": 40.7736593, "lon": -73.9517225 }, + { "lat": 40.7737053, "lon": -73.9518272 }, + { "lat": 40.7737207, "lon": -73.9518629 }, + { "lat": 40.7739729, "lon": -73.9524629 }, + { "lat": 40.7746106, "lon": -73.9539615 }, + { "lat": 40.7746288, "lon": -73.9540058 }, + { "lat": 40.7746660, "lon": -73.9540995 }, + { "lat": 40.7747141, "lon": -73.9542184 }, + { "lat": 40.7755387, "lon": -73.9562075 }, + { "lat": 40.7755929, "lon": -73.9563382 }, + { "lat": 40.7756498, "lon": -73.9564706 }, + { "lat": 40.7762366, "lon": -73.9578363 }, + { "lat": 40.7762807, "lon": -73.9579390 }, + { "lat": 40.7763267, "lon": -73.9580472 }, + { "lat": 40.7768812, "lon": -73.9593540 }, + { "lat": 40.7769299, "lon": -73.9594687 }, + { "lat": 40.7770056, "lon": -73.9596488 }, + { "lat": 40.7770522, "lon": -73.9597612 }, + { "lat": 40.7775904, "lon": -73.9610596 }, + { "lat": 40.7776355, "lon": -73.9611664 }, + { "lat": 40.7776866, "lon": -73.9612871 }, + { "lat": 40.7782728, "lon": -73.9626729 }, + { "lat": 40.7783119, "lon": -73.9627630 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 81st Street", + "name:ru": "Восточная 81-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694765, + "bounds": { + "minlat": 40.7709708, + "minlon": -73.9475897, + "maxlat": 40.7710722, + "maxlon": -73.9473388 + }, + "nodes": [ + 42438513, + 7103815240, + 371206271 + ], + "geometry": [ + { "lat": 40.7710722, "lon": -73.9475897 }, + { "lat": 40.7710240, "lon": -73.9474704 }, + { "lat": 40.7709708, "lon": -73.9473388 } + ], + "tags": { + "highway": "residential", + "name": "East 80th Street", + "name:ru": "Восточная 80-я стрит", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46694766, + "bounds": { + "minlat": 40.7729859, + "minlon": -73.9618327, + "maxlat": 40.7795823, + "maxlon": -73.9461964 + }, + "nodes": [ + 42448257, + 7135164282, + 7834024316, + 42428029, + 7834024306, + 6691104503, + 42448254, + 6691104505, + 6263083514, + 6263083526, + 8250715752, + 42443032, + 8250715790, + 10156669089, + 42448238, + 10156669085, + 10125087287, + 42447126, + 10125087288, + 10125180304, + 42448216, + 596776074, + 10125180303, + 2832297701, + 42446031, + 2832297702, + 2238282243, + 42448203 + ], + "geometry": [ + { "lat": 40.7729859, "lon": -73.9461964 }, + { "lat": 40.7730397, "lon": -73.9463315 }, + { "lat": 40.7739219, "lon": -73.9484219 }, + { "lat": 40.7739755, "lon": -73.9485489 }, + { "lat": 40.7740300, "lon": -73.9486780 }, + { "lat": 40.7748696, "lon": -73.9506676 }, + { "lat": 40.7749252, "lon": -73.9507993 }, + { "lat": 40.7749858, "lon": -73.9509430 }, + { "lat": 40.7750200, "lon": -73.9510239 }, + { "lat": 40.7751077, "lon": -73.9512317 }, + { "lat": 40.7758726, "lon": -73.9530480 }, + { "lat": 40.7759238, "lon": -73.9531654 }, + { "lat": 40.7759812, "lon": -73.9533015 }, + { "lat": 40.7768111, "lon": -73.9552681 }, + { "lat": 40.7768695, "lon": -73.9554065 }, + { "lat": 40.7769298, "lon": -73.9555479 }, + { "lat": 40.7775074, "lon": -73.9569035 }, + { "lat": 40.7775539, "lon": -73.9570119 }, + { "lat": 40.7775946, "lon": -73.9571097 }, + { "lat": 40.7781486, "lon": -73.9584302 }, + { "lat": 40.7781960, "lon": -73.9585432 }, + { "lat": 40.7782722, "lon": -73.9587235 }, + { "lat": 40.7783175, "lon": -73.9588339 }, + { "lat": 40.7788639, "lon": -73.9601294 }, + { "lat": 40.7789076, "lon": -73.9602361 }, + { "lat": 40.7789579, "lon": -73.9603532 }, + { "lat": 40.7795471, "lon": -73.9617519 }, + { "lat": 40.7795823, "lon": -73.9618327 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 83rd Street", + "name:ru": "Восточная 83-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694768, + "bounds": { + "minlat": 40.7850458, + "minlon": -73.9428466, + "maxlat": 40.7858143, + "maxlon": -73.9410405 + }, + "nodes": [ + 3785522931, + 7080329519, + 5482216779, + 5716393833, + 4980915603, + 42456091 + ], + "geometry": [ + { "lat": 40.7850458, "lon": -73.9410405 }, + { "lat": 40.7850707, "lon": -73.9410974 }, + { "lat": 40.7853001, "lon": -73.9416434 }, + { "lat": 40.7853268, "lon": -73.9417067 }, + { "lat": 40.7857565, "lon": -73.9427233 }, + { "lat": 40.7858143, "lon": -73.9428466 } + ], + "tags": { + "highway": "residential", + "name": "East 100th Street", + "name:ru": "Восточная 100-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694769, + "bounds": { + "minlat": 40.7851720, + "minlon": -73.9479214, + "maxlat": 40.7871229, + "maxlon": -73.9433191 + }, + "nodes": [ + 42445263, + 6169388296, + 4980915599, + 5482216752, + 3900961248, + 3900961249, + 13703487251, + 6181709416, + 6175905194, + 42443058, + 6181708470, + 6254902687, + 6247953721, + 2831988194, + 2831988196, + 4980915582, + 6181480033 + ], + "geometry": [ + { "lat": 40.7851720, "lon": -73.9433191 }, + { "lat": 40.7852156, "lon": -73.9434246 }, + { "lat": 40.7852311, "lon": -73.9434622 }, + { "lat": 40.7853045, "lon": -73.9436403 }, + { "lat": 40.7853654, "lon": -73.9437931 }, + { "lat": 40.7854448, "lon": -73.9439910 }, + { "lat": 40.7856542, "lon": -73.9444784 }, + { "lat": 40.7861214, "lon": -73.9455660 }, + { "lat": 40.7861385, "lon": -73.9456053 }, + { "lat": 40.7861808, "lon": -73.9457073 }, + { "lat": 40.7862344, "lon": -73.9458265 }, + { "lat": 40.7864459, "lon": -73.9463343 }, + { "lat": 40.7865661, "lon": -73.9466229 }, + { "lat": 40.7866238, "lon": -73.9467614 }, + { "lat": 40.7867279, "lon": -73.9470038 }, + { "lat": 40.7870662, "lon": -73.9477909 }, + { "lat": 40.7871229, "lon": -73.9479214 } + ], + "tags": { + "highway": "residential", + "name": "East 99th Street", + "name:ru": "Восточная 99-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46694771, + "bounds": { + "minlat": 40.7839383, + "minlon": -73.9446411, + "maxlat": 40.7841159, + "maxlon": -73.9442196 + }, + "nodes": [ + 42449010, + 6181480043, + 7067139597 + ], + "geometry": [ + { "lat": 40.7839383, "lon": -73.9442196 }, + { "lat": 40.7840010, "lon": -73.9443660 }, + { "lat": 40.7841159, "lon": -73.9446411 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 97th Street", + "name:ru": "Восточная 97-я стрит", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46694772, + "bounds": { + "minlat": 40.7858875, + "minlon": -73.9536721, + "maxlat": 40.7879020, + "maxlon": -73.9488279 + }, + "nodes": [ + 42449007, + 4980915576, + 5640800365, + 5640800357, + 6070217079, + 42447169, + 6070217078, + 6070217081, + 42449005, + 596776165, + 6254816612, + 7075509775, + 42446093 + ], + "geometry": [ + { "lat": 40.7858875, "lon": -73.9488279 }, + { "lat": 40.7859346, "lon": -73.9489756 }, + { "lat": 40.7860611, "lon": -73.9492886 }, + { "lat": 40.7862402, "lon": -73.9497046 }, + { "lat": 40.7865090, "lon": -73.9503452 }, + { "lat": 40.7865479, "lon": -73.9504365 }, + { "lat": 40.7865911, "lon": -73.9505366 }, + { "lat": 40.7871423, "lon": -73.9518575 }, + { "lat": 40.7871732, "lon": -73.9519286 }, + { "lat": 40.7872803, "lon": -73.9521844 }, + { "lat": 40.7873106, "lon": -73.9522585 }, + { "lat": 40.7878563, "lon": -73.9535649 }, + { "lat": 40.7879020, "lon": -73.9536721 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 97th Street", + "name:ru": "Восточная 97-я стрит", + "name_1": "East 97 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46694777, + "bounds": { + "minlat": 40.7890006, + "minlon": -73.9481549, + "maxlat": 40.7896902, + "maxlon": -73.9465498 + }, + "nodes": [ + 42430482, + 6190264269, + 8732555163, + 5481999822, + 7779545040, + 42430479 + ], + "geometry": [ + { "lat": 40.7890006, "lon": -73.9465498 }, + { "lat": 40.7890715, "lon": -73.9466846 }, + { "lat": 40.7893164, "lon": -73.9472751 }, + { "lat": 40.7896074, "lon": -73.9479628 }, + { "lat": 40.7896535, "lon": -73.9480702 }, + { "lat": 40.7896902, "lon": -73.9481549 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "East 102nd Street", + "name:ru": "Восточная 102-я стрит", + "oneway": "yes", + "parking:condition:left": "private", + "parking:lane:left": "diagonal", + "parking:lane:right": "parallel" + } +}, +{ + "type": "way", + "id": 46694779, + "bounds": { + "minlat": 40.7886864, + "minlon": -73.9446762, + "maxlat": 40.7890168, + "maxlon": -73.9438661 + }, + "nodes": [ + 42434912, + 6191027328, + 42434915 + ], + "geometry": [ + { "lat": 40.7886864, "lon": -73.9438661 }, + { "lat": 40.7887400, "lon": -73.9439986 }, + { "lat": 40.7890168, "lon": -73.9446762 } + ], + "tags": { + "access": "private", + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "name": "East 103rd Street", + "name:ru": "Восточная 103-я стрит", + "name_1": "East 103 Street" + } +}, +{ + "type": "way", + "id": 46694780, + "bounds": { + "minlat": 40.7923959, + "minlon": -73.9368828, + "maxlat": 40.7924469, + "maxlon": -73.9367868 + }, + "nodes": [ + 42426805, + 7474626839 + ], + "geometry": [ + { "lat": 40.7923959, "lon": -73.9367868 }, + { "lat": 40.7924469, "lon": -73.9368828 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "name": "East 111th Street", + "name:ru": "Восточная 111-я стрит", + "oneway": "yes", + "parking:condition:left:time_interval": "Tu, Fr 00:00-11:30, 11:00-24:00;Mo, We, Fr, Sa, Su 00:00-24:00", + "parking:condition:right:time_interval": "Mo, Th 00:00-11:30, 13:00-24:00;Tu, We, Fr-Su 00:00-24:00", + "parking:lane:both": "parallel", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46714304, + "bounds": { + "minlat": 40.7396934, + "minlon": -73.9526755, + "maxlat": 40.7404306, + "maxlon": -73.9524307 + }, + "nodes": [ + 597237255, + 6614849292, + 9690651009, + 597237260, + 6594514422 + ], + "geometry": [ + { "lat": 40.7404306, "lon": -73.9524307 }, + { "lat": 40.7403451, "lon": -73.9524585 }, + { "lat": 40.7399364, "lon": -73.9525946 }, + { "lat": 40.7398986, "lon": -73.9526072 }, + { "lat": 40.7396934, "lon": -73.9526755 } + ], + "tags": { + "highway": "unclassified", + "name": "11th Street", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:county": "Queens, NY", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46714308, + "bounds": { + "minlat": 40.7373539, + "minlon": -73.9502822, + "maxlat": 40.7415979, + "maxlon": -73.9338404 + }, + "nodes": [ + 7814707852, + 7814707858, + 7814707862, + 7814707825, + 7814707864, + 7814707826, + 7814707857, + 7814707866, + 9179073019, + 7814707833, + 9983412334, + 7814707851, + 9983412383, + 9983412384, + 7814707828, + 7814707843, + 9179086304, + 7814707832, + 9179086303, + 7814707831, + 9179086302, + 7814707841, + 9179086301, + 7814707849, + 7814707842, + 7814707850, + 7814707855, + 7814707839, + 7814707812, + 7814707863, + 7814707814, + 7814707860, + 7814707847, + 7814707867, + 7814707845, + 7814707836, + 7814707815, + 7814707868, + 7814707810, + 7814707808, + 7814707838, + 7814707820, + 7814707807, + 7814707817, + 7814707816, + 7814707809, + 7814707823, + 9179114922, + 7814707837, + 7814707865, + 7814707818, + 7814771767 + ], + "geometry": [ + { "lat": 40.7415935, "lon": -73.9502822 }, + { "lat": 40.7415939, "lon": -73.9501794 }, + { "lat": 40.7415979, "lon": -73.9500669 }, + { "lat": 40.7415978, "lon": -73.9499463 }, + { "lat": 40.7415942, "lon": -73.9498090 }, + { "lat": 40.7415881, "lon": -73.9496831 }, + { "lat": 40.7415755, "lon": -73.9495409 }, + { "lat": 40.7415600, "lon": -73.9494099 }, + { "lat": 40.7415401, "lon": -73.9492754 }, + { "lat": 40.7415182, "lon": -73.9491412 }, + { "lat": 40.7414893, "lon": -73.9489872 }, + { "lat": 40.7408776, "lon": -73.9458340 }, + { "lat": 40.7408424, "lon": -73.9456586 }, + { "lat": 40.7408024, "lon": -73.9454724 }, + { "lat": 40.7407590, "lon": -73.9452977 }, + { "lat": 40.7407171, "lon": -73.9451360 }, + { "lat": 40.7406747, "lon": -73.9449801 }, + { "lat": 40.7406353, "lon": -73.9448388 }, + { "lat": 40.7405953, "lon": -73.9447074 }, + { "lat": 40.7405503, "lon": -73.9445713 }, + { "lat": 40.7405039, "lon": -73.9444358 }, + { "lat": 40.7404528, "lon": -73.9442932 }, + { "lat": 40.7404085, "lon": -73.9441762 }, + { "lat": 40.7403579, "lon": -73.9440463 }, + { "lat": 40.7402999, "lon": -73.9439019 }, + { "lat": 40.7387624, "lon": -73.9402741 }, + { "lat": 40.7387025, "lon": -73.9401321 }, + { "lat": 40.7386237, "lon": -73.9399357 }, + { "lat": 40.7385601, "lon": -73.9397733 }, + { "lat": 40.7385041, "lon": -73.9396208 }, + { "lat": 40.7384511, "lon": -73.9394764 }, + { "lat": 40.7383930, "lon": -73.9393021 }, + { "lat": 40.7383365, "lon": -73.9391266 }, + { "lat": 40.7382858, "lon": -73.9389649 }, + { "lat": 40.7382391, "lon": -73.9388085 }, + { "lat": 40.7381862, "lon": -73.9386141 }, + { "lat": 40.7381376, "lon": -73.9384235 }, + { "lat": 40.7380952, "lon": -73.9382516 }, + { "lat": 40.7380525, "lon": -73.9380611 }, + { "lat": 40.7380117, "lon": -73.9378732 }, + { "lat": 40.7379659, "lon": -73.9376481 }, + { "lat": 40.7379330, "lon": -73.9374663 }, + { "lat": 40.7378967, "lon": -73.9372461 }, + { "lat": 40.7378675, "lon": -73.9370467 }, + { "lat": 40.7378432, "lon": -73.9368688 }, + { "lat": 40.7378211, "lon": -73.9366759 }, + { "lat": 40.7377409, "lon": -73.9359688 }, + { "lat": 40.7377186, "lon": -73.9357812 }, + { "lat": 40.7376940, "lon": -73.9356106 }, + { "lat": 40.7376650, "lon": -73.9354438 }, + { "lat": 40.7376213, "lon": -73.9352207 }, + { "lat": 40.7373539, "lon": -73.9338404 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov": "contraflow_lane", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46714309, + "bounds": { + "minlat": 40.7416620, + "minlon": -73.9542138, + "maxlat": 40.7419836, + "maxlon": -73.9541215 + }, + "nodes": [ + 276320117, + 13018432748, + 10774449941, + 42826923 + ], + "geometry": [ + { "lat": 40.7416620, "lon": -73.9542138 }, + { "lat": 40.7417648, "lon": -73.9541843 }, + { "lat": 40.7419428, "lon": -73.9541332 }, + { "lat": 40.7419836, "lon": -73.9541215 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Vernon Boulevard", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Vernon", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46714312, + "bounds": { + "minlat": 40.7419294, + "minlon": -73.9541215, + "maxlat": 40.7419836, + "maxlon": -73.9537796 + }, + "nodes": [ + 42836093, + 10774449943, + 42826923 + ], + "geometry": [ + { "lat": 40.7419294, "lon": -73.9537796 }, + { "lat": 40.7419732, "lon": -73.9540531 }, + { "lat": 40.7419836, "lon": -73.9541215 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "highway": "primary", + "name": "51st Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "51st", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 46714313, + "bounds": { + "minlat": 40.7420235, + "minlon": -73.9566721, + "maxlat": 40.7424777, + "maxlon": -73.9543437 + }, + "nodes": [ + 42826890, + 10774449945, + 11211160261, + 42836084 + ], + "geometry": [ + { "lat": 40.7420235, "lon": -73.9543437 }, + { "lat": 40.7420442, "lon": -73.9544499 }, + { "lat": 40.7424629, "lon": -73.9565965 }, + { "lat": 40.7424777, "lon": -73.9566721 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "51st Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "51st", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 46714314, + "bounds": { + "minlat": 40.7413557, + "minlon": -73.9545741, + "maxlat": 40.7420235, + "maxlon": -73.9543437 + }, + "nodes": [ + 42826890, + 10774449944, + 9179070567, + 11211160298, + 11211160297, + 12078482031, + 42826898 + ], + "geometry": [ + { "lat": 40.7420235, "lon": -73.9543437 }, + { "lat": 40.7419833, "lon": -73.9543556 }, + { "lat": 40.7419582, "lon": -73.9543630 }, + { "lat": 40.7414772, "lon": -73.9545319 }, + { "lat": 40.7414403, "lon": -73.9545448 }, + { "lat": 40.7414023, "lon": -73.9545581 }, + { "lat": 40.7413557, "lon": -73.9545741 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "name": "Vernon Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Vernon", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46714315, + "bounds": { + "minlat": 40.7413061, + "minlon": -73.9545741, + "maxlat": 40.7413557, + "maxlon": -73.9543492 + }, + "nodes": [ + 42826898, + 276320116 + ], + "geometry": [ + { "lat": 40.7413557, "lon": -73.9545741 }, + { "lat": 40.7413061, "lon": -73.9543492 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101", + "turn:lanes:backward": "through" + } +}, +{ + "type": "way", + "id": 46714317, + "bounds": { + "minlat": 40.7422151, + "minlon": -73.9518110, + "maxlat": 40.7422928, + "maxlon": -73.9514130 + }, + "nodes": [ + 42866953, + 42806188 + ], + "geometry": [ + { "lat": 40.7422151, "lon": -73.9514130 }, + { "lat": 40.7422928, "lon": -73.9518110 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "maxheight": "12'9\"", + "maxspeed": "25 mph", + "name": "50th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46714320, + "bounds": { + "minlat": 40.7418922, + "minlon": -73.9507008, + "maxlat": 40.7420660, + "maxlon": -73.9498212 + }, + "nodes": [ + 42836389, + 2986363079, + 42803159 + ], + "geometry": [ + { "lat": 40.7418922, "lon": -73.9498212 }, + { "lat": 40.7419869, "lon": -73.9503006 }, + { "lat": 40.7420660, "lon": -73.9507008 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "50th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46714321, + "bounds": { + "minlat": 40.7435655, + "minlon": -73.9593576, + "maxlat": 40.7437507, + "maxlon": -73.9583690 + }, + "nodes": [ + 6633383602, + 8250918933, + 11623120598, + 42852827, + 3567881531 + ], + "geometry": [ + { "lat": 40.7437507, "lon": -73.9593576 }, + { "lat": 40.7437202, "lon": -73.9591962 }, + { "lat": 40.7435997, "lon": -73.9585535 }, + { "lat": 40.7435796, "lon": -73.9584461 }, + { "lat": 40.7435655, "lon": -73.9583690 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "50th Avenue", + "oneway": "yes", + "parking:lane:right": "no_parking", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "50th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 46714325, + "bounds": { + "minlat": 40.7394456, + "minlon": -73.9525898, + "maxlat": 40.7423497, + "maxlon": -73.9516211 + }, + "nodes": [ + 597237397, + 9690694931, + 9690695020, + 9690695010, + 42867013 + ], + "geometry": [ + { "lat": 40.7423497, "lon": -73.9516211 }, + { "lat": 40.7406635, "lon": -73.9521862 }, + { "lat": 40.7401024, "lon": -73.9523703 }, + { "lat": 40.7399687, "lon": -73.9524150 }, + { "lat": 40.7394456, "lon": -73.9525898 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Pulaski Bridge", + "foot": "no", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 46714326, + "bounds": { + "minlat": 40.7425326, + "minlon": -73.9504735, + "maxlat": 40.7427411, + "maxlon": -73.9492280 + }, + "nodes": [ + 42832462, + 9179070604, + 9179070605, + 9179070603, + 4911015692, + 42825933 + ], + "geometry": [ + { "lat": 40.7427318, "lon": -73.9504735 }, + { "lat": 40.7427373, "lon": -73.9504478 }, + { "lat": 40.7427411, "lon": -73.9504275 }, + { "lat": 40.7427398, "lon": -73.9504007 }, + { "lat": 40.7425479, "lon": -73.9493458 }, + { "lat": 40.7425326, "lon": -73.9492280 } + ], + "tags": { + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "name": "49th Avenue", + "name_1": "Hunters Point Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46714328, + "bounds": { + "minlat": 40.7439120, + "minlon": -73.9557423, + "maxlat": 40.7452614, + "maxlon": -73.9487635 + }, + "nodes": [ + 42866842, + 9982771922, + 5034724175, + 42826875, + 5034724171, + 9982728596, + 11157958410, + 42866935, + 9982728595, + 11384101544, + 11211159838, + 42844251, + 11211159837, + 12339755021, + 11211159828, + 42825925 + ], + "geometry": [ + { "lat": 40.7452614, "lon": -73.9557423 }, + { "lat": 40.7452468, "lon": -73.9556673 }, + { "lat": 40.7448289, "lon": -73.9535186 }, + { "lat": 40.7448067, "lon": -73.9534089 }, + { "lat": 40.7447858, "lon": -73.9533013 }, + { "lat": 40.7443744, "lon": -73.9511575 }, + { "lat": 40.7443555, "lon": -73.9510504 }, + { "lat": 40.7443382, "lon": -73.9509526 }, + { "lat": 40.7443161, "lon": -73.9508538 }, + { "lat": 40.7442905, "lon": -73.9507219 }, + { "lat": 40.7441203, "lon": -73.9498718 }, + { "lat": 40.7440892, "lon": -73.9496847 }, + { "lat": 40.7440572, "lon": -73.9495032 }, + { "lat": 40.7439454, "lon": -73.9489349 }, + { "lat": 40.7439344, "lon": -73.9488789 }, + { "lat": 40.7439120, "lon": -73.9487635 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "47th Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46714329, + "bounds": { + "minlat": 40.7429810, + "minlon": -73.9538694, + "maxlat": 40.7434296, + "maxlon": -73.9518215 + }, + "nodes": [ + 42826882, + 5034728015, + 5481866282, + 5481866280, + 7662619987, + 6769993778, + 9179086299, + 42832453 + ], + "geometry": [ + { "lat": 40.7434296, "lon": -73.9538694 }, + { "lat": 40.7434083, "lon": -73.9537590 }, + { "lat": 40.7432588, "lon": -73.9529862 }, + { "lat": 40.7431637, "lon": -73.9525012 }, + { "lat": 40.7430970, "lon": -73.9521619 }, + { "lat": 40.7430459, "lon": -73.9519272 }, + { "lat": 40.7430309, "lon": -73.9518869 }, + { "lat": 40.7429810, "lon": -73.9518215 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "name": "49th Avenue", + "name_1": "Hunters Point Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46714330, + "bounds": { + "minlat": 40.7424777, + "minlon": -73.9586943, + "maxlat": 40.7428732, + "maxlon": -73.9566721 + }, + "nodes": [ + 42836084, + 11211160257, + 3575033043, + 11196902807, + 3567881530, + 42836082 + ], + "geometry": [ + { "lat": 40.7424777, "lon": -73.9566721 }, + { "lat": 40.7424945, "lon": -73.9567578 }, + { "lat": 40.7428325, "lon": -73.9584859 }, + { "lat": 40.7428462, "lon": -73.9585571 }, + { "lat": 40.7428551, "lon": -73.9586020 }, + { "lat": 40.7428732, "lon": -73.9586943 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "name": "51st Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "51st", + "tiger:name_type": "Ave", + "turn:lanes": "left;through" + } +}, +{ + "type": "way", + "id": 46714332, + "bounds": { + "minlat": 40.7417126, + "minlon": -73.9585910, + "maxlat": 40.7421228, + "maxlon": -73.9568901 + }, + "nodes": [ + 42901546, + 9179070545, + 9179070546, + 12183295172, + 9179070548, + 12183295171, + 276318227, + 12183295170, + 9179070549, + 3575033029, + 2034007288, + 9179070550, + 9179070551, + 42901549, + 6883887172, + 9179070552, + 2034007277, + 276318043, + 9179070557, + 9179070558, + 9179070559, + 9179070556, + 276318040 + ], + "geometry": [ + { "lat": 40.7421228, "lon": -73.9585910 }, + { "lat": 40.7420749, "lon": -73.9584219 }, + { "lat": 40.7420202, "lon": -73.9582354 }, + { "lat": 40.7420057, "lon": -73.9581848 }, + { "lat": 40.7419880, "lon": -73.9581372 }, + { "lat": 40.7419697, "lon": -73.9580953 }, + { "lat": 40.7419455, "lon": -73.9580505 }, + { "lat": 40.7419168, "lon": -73.9579996 }, + { "lat": 40.7418891, "lon": -73.9579583 }, + { "lat": 40.7418660, "lon": -73.9579265 }, + { "lat": 40.7418309, "lon": -73.9578777 }, + { "lat": 40.7418103, "lon": -73.9578383 }, + { "lat": 40.7417945, "lon": -73.9578038 }, + { "lat": 40.7417828, "lon": -73.9577625 }, + { "lat": 40.7417126, "lon": -73.9574060 }, + { "lat": 40.7417133, "lon": -73.9573652 }, + { "lat": 40.7417177, "lon": -73.9573336 }, + { "lat": 40.7417311, "lon": -73.9572830 }, + { "lat": 40.7417618, "lon": -73.9571827 }, + { "lat": 40.7417748, "lon": -73.9571367 }, + { "lat": 40.7417825, "lon": -73.9570959 }, + { "lat": 40.7417901, "lon": -73.9570479 }, + { "lat": 40.7418108, "lon": -73.9568901 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 46714333, + "bounds": { + "minlat": 40.7413557, + "minlon": -73.9568901, + "maxlat": 40.7418108, + "maxlon": -73.9545741 + }, + "nodes": [ + 276318040, + 12125828388, + 9179070538, + 9179070537, + 42826898 + ], + "geometry": [ + { "lat": 40.7418108, "lon": -73.9568901 }, + { "lat": 40.7414124, "lon": -73.9548349 }, + { "lat": 40.7413989, "lon": -73.9547699 }, + { "lat": 40.7413864, "lon": -73.9547114 }, + { "lat": 40.7413557, "lon": -73.9545741 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "4", + "name": "Borden Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 46714334, + "bounds": { + "minlat": 40.7419294, + "minlon": -73.9537796, + "maxlat": 40.7424742, + "maxlon": -73.9527543 + }, + "nodes": [ + 42836093, + 10225954370, + 42844233 + ], + "geometry": [ + { "lat": 40.7419294, "lon": -73.9537796 }, + { "lat": 40.7424257, "lon": -73.9528498 }, + { "lat": 40.7424742, "lon": -73.9527543 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "track", + "cycleway:both:traffic_mode:left": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Jackson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Queens, NY", + "tiger:name_base": "Jackson", + "tiger:name_base_1": "State Highway 25 (Alt)", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 46714337, + "bounds": { + "minlat": 40.7420235, + "minlon": -73.9543437, + "maxlat": 40.7427367, + "maxlon": -73.9540991 + }, + "nodes": [ + 6593145588, + 9179070563, + 6795905103, + 9179070566, + 10774449946, + 42826890 + ], + "geometry": [ + { "lat": 40.7427367, "lon": -73.9540991 }, + { "lat": 40.7426756, "lon": -73.9541409 }, + { "lat": 40.7424732, "lon": -73.9542046 }, + { "lat": 40.7421370, "lon": -73.9543131 }, + { "lat": 40.7421047, "lon": -73.9543217 }, + { "lat": 40.7420235, "lon": -73.9543437 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Vernon Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Vernon", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46714346, + "bounds": { + "minlat": 40.7417311, + "minlon": -73.9572830, + "maxlat": 40.7420357, + "maxlon": -73.9571698 + }, + "nodes": [ + 276318043, + 12183295163, + 2034007297, + 12183295162, + 2034007299, + 2034007304, + 12183295161, + 2034007309, + 4675915058, + 2034007313, + 276318039 + ], + "geometry": [ + { "lat": 40.7417311, "lon": -73.9572830 }, + { "lat": 40.7417592, "lon": -73.9572515 }, + { "lat": 40.7417860, "lon": -73.9572241 }, + { "lat": 40.7418038, "lon": -73.9572074 }, + { "lat": 40.7418311, "lon": -73.9571898 }, + { "lat": 40.7418582, "lon": -73.9571762 }, + { "lat": 40.7418809, "lon": -73.9571710 }, + { "lat": 40.7419073, "lon": -73.9571698 }, + { "lat": 40.7419407, "lon": -73.9571750 }, + { "lat": 40.7419772, "lon": -73.9571873 }, + { "lat": 40.7420357, "lon": -73.9572059 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46714388, + "bounds": { + "minlat": 40.7432648, + "minlon": -73.9512578, + "maxlat": 40.7433558, + "maxlon": -73.9510762 + }, + "nodes": [ + 11157958412, + 276316979 + ], + "geometry": [ + { "lat": 40.7432648, "lon": -73.9512578 }, + { "lat": 40.7433558, "lon": -73.9510762 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Jackson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|left|through" + } +}, +{ + "type": "way", + "id": 46714392, + "bounds": { + "minlat": 40.7435957, + "minlon": -73.9506198, + "maxlat": 40.7445092, + "maxlon": -73.9488860 + }, + "nodes": [ + 4203034928, + 13687534659, + 11211159836, + 42844251, + 11211159835, + 2966132299, + 11623120609, + 8742652244 + ], + "geometry": [ + { "lat": 40.7445092, "lon": -73.9488860 }, + { "lat": 40.7443956, "lon": -73.9491010 }, + { "lat": 40.7441346, "lon": -73.9495950 }, + { "lat": 40.7440892, "lon": -73.9496847 }, + { "lat": 40.7440451, "lon": -73.9497856 }, + { "lat": 40.7439373, "lon": -73.9499775 }, + { "lat": 40.7437195, "lon": -73.9503870 }, + { "lat": 40.7435957, "lon": -73.9506198 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "name": "Jackson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46714790, + "bounds": { + "minlat": 40.7473367, + "minlon": -73.9565026, + "maxlat": 40.7476217, + "maxlon": -73.9550486 + }, + "nodes": [ + 42843274, + 9982774482, + 3575046213, + 2387504625 + ], + "geometry": [ + { "lat": 40.7473367, "lon": -73.9550486 }, + { "lat": 40.7473526, "lon": -73.9551346 }, + { "lat": 40.7475903, "lon": -73.9563421 }, + { "lat": 40.7476217, "lon": -73.9565026 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "46th Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 46714791, + "bounds": { + "minlat": 40.7438786, + "minlon": -73.9562086, + "maxlat": 40.7478169, + "maxlon": -73.9548936 + }, + "nodes": [ + 42866831, + 9982774483, + 3575046206, + 42843274, + 9982774481, + 8018964698, + 2408209082, + 2408209083, + 5034740471, + 42860527, + 5034740475, + 11211159868, + 42866842, + 9982774479, + 3575033062, + 2473480059, + 42866845, + 597237400, + 2473480057, + 9982774476, + 42832449 + ], + "geometry": [ + { "lat": 40.7478169, "lon": -73.9548936 }, + { "lat": 40.7477979, "lon": -73.9548976 }, + { "lat": 40.7474012, "lon": -73.9550266 }, + { "lat": 40.7473367, "lon": -73.9550486 }, + { "lat": 40.7472714, "lon": -73.9550703 }, + { "lat": 40.7469526, "lon": -73.9551808 }, + { "lat": 40.7467032, "lon": -73.9552567 }, + { "lat": 40.7466439, "lon": -73.9552781 }, + { "lat": 40.7460187, "lon": -73.9554927 }, + { "lat": 40.7459516, "lon": -73.9555147 }, + { "lat": 40.7458902, "lon": -73.9555346 }, + { "lat": 40.7453269, "lon": -73.9557207 }, + { "lat": 40.7452614, "lon": -73.9557423 }, + { "lat": 40.7451995, "lon": -73.9557630 }, + { "lat": 40.7446772, "lon": -73.9559393 }, + { "lat": 40.7446316, "lon": -73.9559547 }, + { "lat": 40.7445659, "lon": -73.9559769 }, + { "lat": 40.7444602, "lon": -73.9560125 }, + { "lat": 40.7443946, "lon": -73.9560347 }, + { "lat": 40.7439436, "lon": -73.9561867 }, + { "lat": 40.7438786, "lon": -73.9562086 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "5th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 46715106, + "bounds": { + "minlat": 40.7453545, + "minlon": -73.9468238, + "maxlat": 40.7457276, + "maxlon": -73.9467243 + }, + "nodes": [ + 597255499, + 11211159884, + 10774449947, + 597255502 + ], + "geometry": [ + { "lat": 40.7457276, "lon": -73.9467243 }, + { "lat": 40.7455486, "lon": -73.9467740 }, + { "lat": 40.7455038, "lon": -73.9467865 }, + { "lat": 40.7453545, "lon": -73.9468238 } + ], + "tags": { + "foot": "designated", + "highway": "pedestrian", + "motor_vehicle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46715108, + "bounds": { + "minlat": 40.7451988, + "minlon": -73.9428053, + "maxlat": 40.7463427, + "maxlon": -73.9420334 + }, + "nodes": [ + 42866500, + 6760776760, + 8490352100, + 13276743847, + 42866502 + ], + "geometry": [ + { "lat": 40.7463427, "lon": -73.9428053 }, + { "lat": 40.7462601, "lon": -73.9427557 }, + { "lat": 40.7462182, "lon": -73.9427282 }, + { "lat": 40.7457294, "lon": -73.9423951 }, + { "lat": 40.7451988, "lon": -73.9420334 } + ], + "tags": { + "highway": "residential", + "name": "Court Square East", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Court", + "tiger:name_type": "Sq", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46717584, + "bounds": { + "minlat": 40.7367336, + "minlon": -73.9529291, + "maxlat": 40.7390196, + "maxlon": -73.9526108 + }, + "nodes": [ + 597261843, + 277046407, + 9690694963, + 2987785540, + 9165439488, + 277046406, + 2987785537, + 277046405, + 9690695005, + 9690695012, + 7477262849 + ], + "geometry": [ + { "lat": 40.7367336, "lon": -73.9527648 }, + { "lat": 40.7376480, "lon": -73.9529152 }, + { "lat": 40.7377495, "lon": -73.9529261 }, + { "lat": 40.7378509, "lon": -73.9529291 }, + { "lat": 40.7379569, "lon": -73.9529256 }, + { "lat": 40.7380551, "lon": -73.9529129 }, + { "lat": 40.7381759, "lon": -73.9528852 }, + { "lat": 40.7382926, "lon": -73.9528542 }, + { "lat": 40.7383585, "lon": -73.9528321 }, + { "lat": 40.7384923, "lon": -73.9527873 }, + { "lat": 40.7390196, "lon": -73.9526108 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Pulaski Bridge", + "cycleway:both": "no", + "foot": "no", + "highway": "primary", + "lanes": "3", + "layer": "1", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 46717585, + "bounds": { + "minlat": 40.7361199, + "minlon": -73.9525296, + "maxlat": 40.7363480, + "maxlon": -73.9501570 + }, + "nodes": [ + 42499745, + 8097082825, + 5481915273, + 5801598842, + 8097082905, + 42513233 + ], + "geometry": [ + { "lat": 40.7363480, "lon": -73.9501570 }, + { "lat": 40.7363400, "lon": -73.9502404 }, + { "lat": 40.7362132, "lon": -73.9515599 }, + { "lat": 40.7361322, "lon": -73.9524028 }, + { "lat": 40.7361280, "lon": -73.9524427 }, + { "lat": 40.7361199, "lon": -73.9525296 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Dupont Street", + "name:etymology:wikidata": "Q127406", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46717592, + "bounds": { + "minlat": 40.7347071, + "minlon": -73.9523393, + "maxlat": 40.7349329, + "maxlon": -73.9499284 + }, + "nodes": [ + 42486608, + 8097082838, + 5481915282, + 5801598841, + 8097082971, + 42486604 + ], + "geometry": [ + { "lat": 40.7349329, "lon": -73.9499284 }, + { "lat": 40.7349253, "lon": -73.9500152 }, + { "lat": 40.7348144, "lon": -73.9511981 }, + { "lat": 40.7347232, "lon": -73.9521531 }, + { "lat": 40.7347178, "lon": -73.9522101 }, + { "lat": 40.7347071, "lon": -73.9523393 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Freeman Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46717624, + "bounds": { + "minlat": 40.7212920, + "minlon": -73.9498712, + "maxlat": 40.7221719, + "maxlon": -73.9488750 + }, + "nodes": [ + 42509213, + 9789356618, + 6228788695, + 42466376 + ], + "geometry": [ + { "lat": 40.7221719, "lon": -73.9498712 }, + { "lat": 40.7221192, "lon": -73.9498391 }, + { "lat": 40.7214035, "lon": -73.9490041 }, + { "lat": 40.7212920, "lon": -73.9488750 } + ], + "tags": { + "highway": "tertiary", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 46717643, + "bounds": { + "minlat": 40.7677952, + "minlon": -73.9359654, + "maxlat": 40.7678709, + "maxlon": -73.9359108 + }, + "nodes": [ + 2402842580, + 2459401767, + 2459401771 + ], + "geometry": [ + { "lat": 40.7677952, "lon": -73.9359654 }, + { "lat": 40.7678184, "lon": -73.9359407 }, + { "lat": 40.7678709, "lon": -73.9359108 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Vernon Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46717644, + "bounds": { + "minlat": 40.7721088, + "minlon": -73.9305988, + "maxlat": 40.7723022, + "maxlon": -73.9263614 + }, + "nodes": [ + 42881130, + 2886112277, + 5104280935, + 6452930134, + 42926468, + 6452930135, + 6452969517, + 42833057, + 6452969518, + 5104280931, + 5104280933, + 7733783935, + 42866526, + 7733783934, + 5104280927, + 7781247062, + 2297358950 + ], + "geometry": [ + { "lat": 40.7721090, "lon": -73.9305988 }, + { "lat": 40.7721088, "lon": -73.9304742 }, + { "lat": 40.7721108, "lon": -73.9303503 }, + { "lat": 40.7721132, "lon": -73.9302056 }, + { "lat": 40.7721139, "lon": -73.9301250 }, + { "lat": 40.7721167, "lon": -73.9300559 }, + { "lat": 40.7721547, "lon": -73.9290667 }, + { "lat": 40.7721598, "lon": -73.9289332 }, + { "lat": 40.7721651, "lon": -73.9288343 }, + { "lat": 40.7721654, "lon": -73.9287838 }, + { "lat": 40.7721879, "lon": -73.9284077 }, + { "lat": 40.7722357, "lon": -73.9275103 }, + { "lat": 40.7722400, "lon": -73.9274300 }, + { "lat": 40.7722433, "lon": -73.9273733 }, + { "lat": 40.7722817, "lon": -73.9267140 }, + { "lat": 40.7722977, "lon": -73.9264386 }, + { "lat": 40.7723022, "lon": -73.9263614 } + ], + "tags": { + "alt_name": "Astoria Boulevard South", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Astoria Boulevard", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 46718640, + "bounds": { + "minlat": 40.7355614, + "minlon": -73.9356502, + "maxlat": 40.7368893, + "maxlon": -73.9347826 + }, + "nodes": [ + 42866377, + 9982697935, + 42866705, + 9982697954, + 42896784 + ], + "geometry": [ + { "lat": 40.7368893, "lon": -73.9356502 }, + { "lat": 40.7367806, "lon": -73.9355654 }, + { "lat": 40.7362087, "lon": -73.9352012 }, + { "lat": 40.7356251, "lon": -73.9348262 }, + { "lat": 40.7355614, "lon": -73.9347826 } + ], + "tags": { + "hgv": "designated", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bradley Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46718641, + "bounds": { + "minlat": 40.7376517, + "minlon": -73.9359352, + "maxlat": 40.7379376, + "maxlon": -73.9358769 + }, + "nodes": [ + 597269945, + 9982189110, + 42901430 + ], + "geometry": [ + { "lat": 40.7376517, "lon": -73.9359352 }, + { "lat": 40.7378854, "lon": -73.9358875 }, + { "lat": 40.7379376, "lon": -73.9358769 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "31st Place", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46718644, + "bounds": { + "minlat": 40.7343656, + "minlon": -73.9383877, + "maxlat": 40.7346851, + "maxlon": -73.9380656 + }, + "nodes": [ + 1056072092, + 9982697975, + 6762244514, + 9982697974, + 9982697973, + 13505886483, + 6721368599, + 9982697972 + ], + "geometry": [ + { "lat": 40.7343656, "lon": -73.9380656 }, + { "lat": 40.7344534, "lon": -73.9381764 }, + { "lat": 40.7344793, "lon": -73.9382074 }, + { "lat": 40.7345156, "lon": -73.9382456 }, + { "lat": 40.7345658, "lon": -73.9382918 }, + { "lat": 40.7346215, "lon": -73.9383386 }, + { "lat": 40.7346296, "lon": -73.9383454 }, + { "lat": 40.7346851, "lon": -73.9383877 } + ], + "tags": { + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Review Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|merge_to_left" + } +}, +{ + "type": "way", + "id": 46718647, + "bounds": { + "minlat": 40.7381750, + "minlon": -73.9406060, + "maxlat": 40.7384935, + "maxlon": -73.9400286 + }, + "nodes": [ + 7761549843, + 9982287333, + 9982287332, + 9179086309, + 9179086310, + 9982287331, + 8314258583, + 9982617313, + 42833299 + ], + "geometry": [ + { "lat": 40.7384935, "lon": -73.9400286 }, + { "lat": 40.7384435, "lon": -73.9400455 }, + { "lat": 40.7384181, "lon": -73.9400548 }, + { "lat": 40.7384013, "lon": -73.9400650 }, + { "lat": 40.7383837, "lon": -73.9400788 }, + { "lat": 40.7383669, "lon": -73.9400972 }, + { "lat": 40.7383549, "lon": -73.9401231 }, + { "lat": 40.7382234, "lon": -73.9404760 }, + { "lat": 40.7381750, "lon": -73.9406060 } + ], + "tags": { + "highway": "unclassified", + "name": "29th Street", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46721818, + "bounds": { + "minlat": 40.7376895, + "minlon": -73.9216968, + "maxlat": 40.7413752, + "maxlon": -73.9209510 + }, + "nodes": [ + 42860618, + 9192032624, + 8316237136, + 10081025532, + 42880331, + 8237218742, + 8237218734, + 8237218735, + 10084797187, + 42910092 + ], + "geometry": [ + { "lat": 40.7413752, "lon": -73.9209510 }, + { "lat": 40.7412570, "lon": -73.9209755 }, + { "lat": 40.7404933, "lon": -73.9211328 }, + { "lat": 40.7396151, "lon": -73.9213106 }, + { "lat": 40.7395344, "lon": -73.9213261 }, + { "lat": 40.7394543, "lon": -73.9213429 }, + { "lat": 40.7389811, "lon": -73.9214376 }, + { "lat": 40.7387026, "lon": -73.9214948 }, + { "lat": 40.7377615, "lon": -73.9216816 }, + { "lat": 40.7376895, "lon": -73.9216968 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "44th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721822, + "bounds": { + "minlat": 40.7354294, + "minlon": -73.9212005, + "maxlat": 40.7418115, + "maxlon": -73.9199194 + }, + "nodes": [ + 42825303, + 10084797196, + 10084797195, + 42885762, + 10084797194, + 10774439651, + 10774439654, + 10774439659, + 10774439663, + 8237218745, + 42880335, + 10083107674, + 10743722491, + 10081025535, + 42860622, + 10081025533, + 10743722499, + 42885759 + ], + "geometry": [ + { "lat": 40.7354294, "lon": -73.9212005 }, + { "lat": 40.7354940, "lon": -73.9211881 }, + { "lat": 40.7375003, "lon": -73.9207830 }, + { "lat": 40.7375829, "lon": -73.9207671 }, + { "lat": 40.7376536, "lon": -73.9207529 }, + { "lat": 40.7382294, "lon": -73.9206369 }, + { "lat": 40.7383670, "lon": -73.9206092 }, + { "lat": 40.7385052, "lon": -73.9205814 }, + { "lat": 40.7386376, "lon": -73.9205547 }, + { "lat": 40.7393458, "lon": -73.9204121 }, + { "lat": 40.7394267, "lon": -73.9203971 }, + { "lat": 40.7395100, "lon": -73.9203813 }, + { "lat": 40.7404159, "lon": -73.9202007 }, + { "lat": 40.7411847, "lon": -73.9200473 }, + { "lat": 40.7412723, "lon": -73.9200293 }, + { "lat": 40.7413562, "lon": -73.9200124 }, + { "lat": 40.7417394, "lon": -73.9199341 }, + { "lat": 40.7418115, "lon": -73.9199194 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "45th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721824, + "bounds": { + "minlat": 40.7353540, + "minlon": -73.9202609, + "maxlat": 40.7422023, + "maxlon": -73.9188878 + }, + "nodes": [ + 42833574, + 10743722507, + 10081025538, + 42833579, + 10081025537, + 5482367272, + 5482367274, + 10083107678, + 42833587, + 10083107679, + 10743722408, + 8316786964, + 10084797197, + 42833591, + 10084797198, + 8234915466, + 10084797199, + 42825304 + ], + "geometry": [ + { "lat": 40.7422023, "lon": -73.9188878 }, + { "lat": 40.7421136, "lon": -73.9189019 }, + { "lat": 40.7412449, "lon": -73.9190834 }, + { "lat": 40.7411631, "lon": -73.9190999 }, + { "lat": 40.7410768, "lon": -73.9191179 }, + { "lat": 40.7405123, "lon": -73.9192296 }, + { "lat": 40.7398935, "lon": -73.9193515 }, + { "lat": 40.7394001, "lon": -73.9194526 }, + { "lat": 40.7393191, "lon": -73.9194696 }, + { "lat": 40.7392398, "lon": -73.9194873 }, + { "lat": 40.7382788, "lon": -73.9196790 }, + { "lat": 40.7375852, "lon": -73.9198174 }, + { "lat": 40.7375458, "lon": -73.9198253 }, + { "lat": 40.7374744, "lon": -73.9198397 }, + { "lat": 40.7373924, "lon": -73.9198558 }, + { "lat": 40.7354656, "lon": -73.9202406 }, + { "lat": 40.7354243, "lon": -73.9202483 }, + { "lat": 40.7353540, "lon": -73.9202609 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "46th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721830, + "bounds": { + "minlat": 40.7353766, + "minlon": -73.9192981, + "maxlat": 40.7410553, + "maxlon": -73.9181662 + }, + "nodes": [ + 42825306, + 10084797203, + 10084797204, + 8316786995, + 10084797201, + 42904473, + 10084797202, + 13004295807, + 10083107683, + 42880337, + 10083107682, + 10081025542, + 10081025541, + 42860624 + ], + "geometry": [ + { "lat": 40.7353766, "lon": -73.9192981 }, + { "lat": 40.7354468, "lon": -73.9192834 }, + { "lat": 40.7362683, "lon": -73.9191211 }, + { "lat": 40.7372359, "lon": -73.9189293 }, + { "lat": 40.7372867, "lon": -73.9189187 }, + { "lat": 40.7373652, "lon": -73.9189029 }, + { "lat": 40.7374413, "lon": -73.9188875 }, + { "lat": 40.7376890, "lon": -73.9188383 }, + { "lat": 40.7391327, "lon": -73.9185516 }, + { "lat": 40.7392080, "lon": -73.9185364 }, + { "lat": 40.7392938, "lon": -73.9185193 }, + { "lat": 40.7409368, "lon": -73.9181907 }, + { "lat": 40.7409755, "lon": -73.9181830 }, + { "lat": 40.7410553, "lon": -73.9181662 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "47th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721837, + "bounds": { + "minlat": 40.7350401, + "minlon": -73.9193689, + "maxlat": 40.7351666, + "maxlon": -73.9183941 + }, + "nodes": [ + 42798095, + 10087484065, + 10087484093, + 42825232 + ], + "geometry": [ + { "lat": 40.7350401, "lon": -73.9193689 }, + { "lat": 40.7350513, "lon": -73.9192885 }, + { "lat": 40.7351521, "lon": -73.9185189 }, + { "lat": 40.7351666, "lon": -73.9183941 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721841, + "bounds": { + "minlat": 40.7364569, + "minlon": -73.9266863, + "maxlat": 40.7382279, + "maxlon": -73.9263311 + }, + "nodes": [ + 42864385, + 10084797162, + 8097303863, + 10084797164, + 42825297 + ], + "geometry": [ + { "lat": 40.7382279, "lon": -73.9263311 }, + { "lat": 40.7381540, "lon": -73.9263453 }, + { "lat": 40.7365768, "lon": -73.9266601 }, + { "lat": 40.7365359, "lon": -73.9266696 }, + { "lat": 40.7364569, "lon": -73.9266863 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "39th Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721844, + "bounds": { + "minlat": 40.7362783, + "minlon": -73.9257604, + "maxlat": 40.7395317, + "maxlon": -73.9251161 + }, + "nodes": [ + 42896819, + 10084797158, + 10774439559, + 10774439557, + 8233070271, + 10084797166, + 42904606, + 10084797165, + 7827752532, + 10774439592, + 10774439596, + 8097303876, + 10743722332, + 42825298 + ], + "geometry": [ + { "lat": 40.7395317, "lon": -73.9251161 }, + { "lat": 40.7394252, "lon": -73.9251434 }, + { "lat": 40.7389094, "lon": -73.9252473 }, + { "lat": 40.7387180, "lon": -73.9252859 }, + { "lat": 40.7382307, "lon": -73.9253841 }, + { "lat": 40.7381969, "lon": -73.9253911 }, + { "lat": 40.7381212, "lon": -73.9254014 }, + { "lat": 40.7380418, "lon": -73.9254140 }, + { "lat": 40.7378030, "lon": -73.9254596 }, + { "lat": 40.7377165, "lon": -73.9254766 }, + { "lat": 40.7369088, "lon": -73.9256356 }, + { "lat": 40.7363776, "lon": -73.9257401 }, + { "lat": 40.7363548, "lon": -73.9257448 }, + { "lat": 40.7362783, "lon": -73.9257604 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "40th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721847, + "bounds": { + "minlat": 40.7360478, + "minlon": -73.9248787, + "maxlat": 40.7398468, + "maxlon": -73.9240463 + }, + "nodes": [ + 42825299, + 10084797168, + 8233070267, + 6908928767, + 10084797169, + 42910076, + 10084797170, + 8002452388, + 10774439588, + 5482367270, + 8233070266, + 10774439563, + 8233070278, + 9192032632, + 9192032633, + 9192032634, + 9192032635, + 4215943289 + ], + "geometry": [ + { "lat": 40.7360478, "lon": -73.9248787 }, + { "lat": 40.7361132, "lon": -73.9248630 }, + { "lat": 40.7370048, "lon": -73.9246774 }, + { "lat": 40.7376973, "lon": -73.9245405 }, + { "lat": 40.7379309, "lon": -73.9244919 }, + { "lat": 40.7380119, "lon": -73.9244750 }, + { "lat": 40.7380881, "lon": -73.9244594 }, + { "lat": 40.7383133, "lon": -73.9244135 }, + { "lat": 40.7383675, "lon": -73.9244027 }, + { "lat": 40.7389398, "lon": -73.9242887 }, + { "lat": 40.7390459, "lon": -73.9242676 }, + { "lat": 40.7394588, "lon": -73.9241868 }, + { "lat": 40.7397263, "lon": -73.9241344 }, + { "lat": 40.7397455, "lon": -73.9241286 }, + { "lat": 40.7397792, "lon": -73.9241117 }, + { "lat": 40.7397953, "lon": -73.9240980 }, + { "lat": 40.7398146, "lon": -73.9240784 }, + { "lat": 40.7398468, "lon": -73.9240463 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "41st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721850, + "bounds": { + "minlat": 40.7379026, + "minlon": -73.9235457, + "maxlat": 40.7404360, + "maxlon": -73.9230400 + }, + "nodes": [ + 42896827, + 10083107668, + 8233070269, + 10083107663, + 42880323, + 10083107664, + 10774439583, + 8233070272, + 10084797172, + 42910082 + ], + "geometry": [ + { "lat": 40.7404360, "lon": -73.9230400 }, + { "lat": 40.7403479, "lon": -73.9230607 }, + { "lat": 40.7398753, "lon": -73.9231529 }, + { "lat": 40.7398312, "lon": -73.9231632 }, + { "lat": 40.7397502, "lon": -73.9231811 }, + { "lat": 40.7396673, "lon": -73.9231967 }, + { "lat": 40.7382679, "lon": -73.9234735 }, + { "lat": 40.7380185, "lon": -73.9235228 }, + { "lat": 40.7379769, "lon": -73.9235310 }, + { "lat": 40.7379026, "lon": -73.9235457 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "42nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721873, + "bounds": { + "minlat": 40.7353924, + "minlon": -73.9183416, + "maxlat": 40.7354386, + "maxlon": -73.9169312 + }, + "nodes": [ + 42825308, + 42799951, + 10087484098, + 42825307 + ], + "geometry": [ + { "lat": 40.7353924, "lon": -73.9169312 }, + { "lat": 40.7354098, "lon": -73.9175191 }, + { "lat": 40.7354386, "lon": -73.9182346 }, + { "lat": 40.7354327, "lon": -73.9183416 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721884, + "bounds": { + "minlat": 40.7353924, + "minlon": -73.9169312, + "maxlat": 40.7362841, + "maxlon": -73.9101078 + }, + "nodes": [ + 10087484100, + 10088171280, + 761594218, + 10088171279, + 10087484099, + 9194848683, + 9194902534, + 42825308 + ], + "geometry": [ + { "lat": 40.7362841, "lon": -73.9101078 }, + { "lat": 40.7357081, "lon": -73.9144668 }, + { "lat": 40.7356920, "lon": -73.9145884 }, + { "lat": 40.7356763, "lon": -73.9147072 }, + { "lat": 40.7354679, "lon": -73.9162813 }, + { "lat": 40.7354395, "lon": -73.9165040 }, + { "lat": 40.7354126, "lon": -73.9167283 }, + { "lat": 40.7353924, "lon": -73.9169312 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721897, + "bounds": { + "minlat": 40.7365883, + "minlon": -73.9276479, + "maxlat": 40.7383317, + "maxlon": -73.9272966 + }, + "nodes": [ + 42910064, + 13247221570, + 7708763529, + 8316786990, + 10084797161, + 42825296 + ], + "geometry": [ + { "lat": 40.7383317, "lon": -73.9272966 }, + { "lat": 40.7382467, "lon": -73.9273136 }, + { "lat": 40.7369612, "lon": -73.9275703 }, + { "lat": 40.7367420, "lon": -73.9276160 }, + { "lat": 40.7366955, "lon": -73.9276255 }, + { "lat": 40.7365883, "lon": -73.9276479 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "39th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721976, + "bounds": { + "minlat": 40.7377883, + "minlon": -73.9343565, + "maxlat": 40.7390177, + "maxlon": -73.9335602 + }, + "nodes": [ + 277385119, + 9981925176, + 10743722222, + 42820847, + 13294008241, + 9510717669 + ], + "geometry": [ + { "lat": 40.7377883, "lon": -73.9335602 }, + { "lat": 40.7378261, "lon": -73.9335886 }, + { "lat": 40.7378945, "lon": -73.9336343 }, + { "lat": 40.7383172, "lon": -73.9339164 }, + { "lat": 40.7388779, "lon": -73.9342687 }, + { "lat": 40.7390177, "lon": -73.9343565 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "name": "Gale Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721981, + "bounds": { + "minlat": 40.7377237, + "minlon": -73.9335602, + "maxlat": 40.7378595, + "maxlon": -73.9328889 + }, + "nodes": [ + 7824544616, + 597294494, + 9179114974, + 9981925174, + 9179114973, + 597294495, + 9179114963, + 9179114964, + 9179114965, + 277385119 + ], + "geometry": [ + { "lat": 40.7378595, "lon": -73.9328889 }, + { "lat": 40.7377430, "lon": -73.9332163 }, + { "lat": 40.7377338, "lon": -73.9332526 }, + { "lat": 40.7377250, "lon": -73.9332989 }, + { "lat": 40.7377237, "lon": -73.9333424 }, + { "lat": 40.7377262, "lon": -73.9333847 }, + { "lat": 40.7377327, "lon": -73.9334251 }, + { "lat": 40.7377444, "lon": -73.9334672 }, + { "lat": 40.7377612, "lon": -73.9335114 }, + { "lat": 40.7377883, "lon": -73.9335602 } + ], + "tags": { + "highway": "unclassified", + "name": "34th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 46721985, + "bounds": { + "minlat": 40.7381931, + "minlon": -73.9386311, + "maxlat": 40.7384107, + "maxlon": -73.9377342 + }, + "nodes": [ + 42867660, + 13048095845, + 4148924227, + 9982189115, + 9982189116, + 42901424 + ], + "geometry": [ + { "lat": 40.7381931, "lon": -73.9377342 }, + { "lat": 40.7382108, "lon": -73.9378134 }, + { "lat": 40.7382500, "lon": -73.9379866 }, + { "lat": 40.7383280, "lon": -73.9383069 }, + { "lat": 40.7383691, "lon": -73.9384721 }, + { "lat": 40.7384107, "lon": -73.9386311 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46721990, + "bounds": { + "minlat": 40.7383172, + "minlon": -73.9339164, + "maxlat": 40.7392959, + "maxlon": -73.9337105 + }, + "nodes": [ + 42820844, + 9981925195, + 8097303884, + 7697800534, + 7697800531, + 42820847 + ], + "geometry": [ + { "lat": 40.7392959, "lon": -73.9337105 }, + { "lat": 40.7392139, "lon": -73.9337254 }, + { "lat": 40.7391717, "lon": -73.9337363 }, + { "lat": 40.7387877, "lon": -73.9338183 }, + { "lat": 40.7384892, "lon": -73.9338856 }, + { "lat": 40.7383172, "lon": -73.9339164 } + ], + "tags": { + "highway": "unclassified", + "name": "32nd Place", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46722009, + "bounds": { + "minlat": 40.7371550, + "minlon": -73.9338404, + "maxlat": 40.7373539, + "maxlon": -73.9326382 + }, + "nodes": [ + 7814771767, + 7814275642, + 7814275645, + 7814275648, + 597294501 + ], + "geometry": [ + { "lat": 40.7373539, "lon": -73.9338404 }, + { "lat": 40.7373160, "lon": -73.9336405 }, + { "lat": 40.7372916, "lon": -73.9335005 }, + { "lat": 40.7372679, "lon": -73.9333602 }, + { "lat": 40.7371550, "lon": -73.9326382 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "Long Island Expressway;Eastern Long Island;Riverhead|Long Island Expressway;Eastern Long Island;Riverhead|Long Island Expressway;Eastern Long Island;Riverhead;Brooklyn-Queens Expressway;Staten Island;Bronx;LaGuardia Airport;Maurice Avenue", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov": "contraflow_lane", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 46722012, + "bounds": { + "minlat": 40.7374619, + "minlon": -73.9401785, + "maxlat": 40.7388559, + "maxlon": -73.9338009 + }, + "nodes": [ + 597294502, + 7814246332, + 7814246364, + 2799472361, + 7814246359, + 4148924233, + 487121013, + 9179114923, + 7814246349, + 7814246345, + 7814246341, + 7814246337, + 487121030, + 7814246333, + 7814246369, + 7814246365, + 7814246360, + 7814246356, + 487121072, + 7814246351, + 7814246347, + 7814246343, + 7814246340, + 7814246336, + 487121101, + 7814246331, + 7814246367, + 7814246358, + 9179114924, + 7814246354 + ], + "geometry": [ + { "lat": 40.7374619, "lon": -73.9338009 }, + { "lat": 40.7377601, "lon": -73.9353294 }, + { "lat": 40.7377929, "lon": -73.9355123 }, + { "lat": 40.7378175, "lon": -73.9356599 }, + { "lat": 40.7378374, "lon": -73.9357994 }, + { "lat": 40.7378547, "lon": -73.9359427 }, + { "lat": 40.7379212, "lon": -73.9365309 }, + { "lat": 40.7379419, "lon": -73.9366936 }, + { "lat": 40.7379591, "lon": -73.9368352 }, + { "lat": 40.7379827, "lon": -73.9370140 }, + { "lat": 40.7380070, "lon": -73.9371823 }, + { "lat": 40.7380358, "lon": -73.9373704 }, + { "lat": 40.7380683, "lon": -73.9375596 }, + { "lat": 40.7380972, "lon": -73.9377115 }, + { "lat": 40.7381253, "lon": -73.9378506 }, + { "lat": 40.7381585, "lon": -73.9379995 }, + { "lat": 40.7381993, "lon": -73.9381796 }, + { "lat": 40.7382418, "lon": -73.9383605 }, + { "lat": 40.7382837, "lon": -73.9385231 }, + { "lat": 40.7383276, "lon": -73.9386793 }, + { "lat": 40.7383717, "lon": -73.9388313 }, + { "lat": 40.7384245, "lon": -73.9390012 }, + { "lat": 40.7384725, "lon": -73.9391598 }, + { "lat": 40.7385240, "lon": -73.9393145 }, + { "lat": 40.7385682, "lon": -73.9394429 }, + { "lat": 40.7386203, "lon": -73.9395861 }, + { "lat": 40.7386637, "lon": -73.9397015 }, + { "lat": 40.7387177, "lon": -73.9398404 }, + { "lat": 40.7387634, "lon": -73.9399552 }, + { "lat": 40.7388559, "lon": -73.9401785 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 46722022, + "bounds": { + "minlat": 40.7362941, + "minlon": -73.9371176, + "maxlat": 40.7366879, + "maxlon": -73.9358500 + }, + "nodes": [ + 9179114938, + 9982697926, + 9982697931, + 9982697930, + 9982697927, + 9982697928, + 42908540 + ], + "geometry": [ + { "lat": 40.7366879, "lon": -73.9358500 }, + { "lat": 40.7366705, "lon": -73.9360358 }, + { "lat": 40.7366636, "lon": -73.9360780 }, + { "lat": 40.7366575, "lon": -73.9361090 }, + { "lat": 40.7363449, "lon": -73.9369864 }, + { "lat": 40.7363239, "lon": -73.9370411 }, + { "lat": 40.7362941, "lon": -73.9371176 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "34th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46722026, + "bounds": { + "minlat": 40.7368893, + "minlon": -73.9356502, + "maxlat": 40.7373444, + "maxlon": -73.9342951 + }, + "nodes": [ + 42866377, + 9982697936, + 9179114937, + 8097303881, + 9981925182, + 277385217 + ], + "geometry": [ + { "lat": 40.7368893, "lon": -73.9356502 }, + { "lat": 40.7369025, "lon": -73.9355483 }, + { "lat": 40.7369175, "lon": -73.9354415 }, + { "lat": 40.7372849, "lon": -73.9344566 }, + { "lat": 40.7373116, "lon": -73.9343936 }, + { "lat": 40.7373444, "lon": -73.9342951 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "34th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46722028, + "bounds": { + "minlat": 40.7349656, + "minlon": -73.9385695, + "maxlat": 40.7354379, + "maxlon": -73.9370583 + }, + "nodes": [ + 42856255, + 5481983893, + 5650231800, + 9982617315, + 9982617316, + 9982617314, + 42866384 + ], + "geometry": [ + { "lat": 40.7349656, "lon": -73.9385695 }, + { "lat": 40.7352122, "lon": -73.9378982 }, + { "lat": 40.7354078, "lon": -73.9373507 }, + { "lat": 40.7354157, "lon": -73.9373183 }, + { "lat": 40.7354209, "lon": -73.9372845 }, + { "lat": 40.7354249, "lon": -73.9372504 }, + { "lat": 40.7354379, "lon": -73.9370583 } + ], + "tags": { + "highway": "residential", + "name": "35th Street" + } +}, +{ + "type": "way", + "id": 46722033, + "bounds": { + "minlat": 40.7340660, + "minlon": -73.9385386, + "maxlat": 40.7343656, + "maxlon": -73.9380656 + }, + "nodes": [ + 597294496, + 490155454, + 1056072092 + ], + "geometry": [ + { "lat": 40.7340660, "lon": -73.9385386 }, + { "lat": 40.7342770, "lon": -73.9381828 }, + { "lat": 40.7343656, "lon": -73.9380656 } + ], + "tags": { + "cycleway": "lane", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "surface": "asphalt", + "turn:lanes:backward": "|merge_to_left", + "turn:lanes:forward": "left;through|through;right", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 46723256, + "bounds": { + "minlat": 40.7350766, + "minlon": -73.9276970, + "maxlat": 40.7364156, + "maxlon": -73.9233085 + }, + "nodes": [ + 487120883, + 9194902620, + 9194902619, + 487120892, + 9194902618, + 487120902, + 487120912, + 9194902617, + 487120923, + 9194902616, + 9194902615, + 487120927, + 9179114952, + 597311193 + ], + "geometry": [ + { "lat": 40.7350766, "lon": -73.9233085 }, + { "lat": 40.7351975, "lon": -73.9235372 }, + { "lat": 40.7353154, "lon": -73.9237789 }, + { "lat": 40.7354255, "lon": -73.9240238 }, + { "lat": 40.7355336, "lon": -73.9242832 }, + { "lat": 40.7356332, "lon": -73.9245457 }, + { "lat": 40.7357265, "lon": -73.9248054 }, + { "lat": 40.7358146, "lon": -73.9250757 }, + { "lat": 40.7358980, "lon": -73.9253428 }, + { "lat": 40.7359736, "lon": -73.9256174 }, + { "lat": 40.7360389, "lon": -73.9258937 }, + { "lat": 40.7361016, "lon": -73.9261770 }, + { "lat": 40.7362413, "lon": -73.9268846 }, + { "lat": 40.7364156, "lon": -73.9276970 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723292, + "bounds": { + "minlat": 40.7346136, + "minlon": -73.9231972, + "maxlat": 40.7348707, + "maxlon": -73.9227735 + }, + "nodes": [ + 597311272, + 9194902604, + 597311274 + ], + "geometry": [ + { "lat": 40.7348707, "lon": -73.9231972 }, + { "lat": 40.7347425, "lon": -73.9229794 }, + { "lat": 40.7346136, "lon": -73.9227735 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov": "contraflow_lane", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723297, + "bounds": { + "minlat": 40.7348707, + "minlon": -73.9233484, + "maxlat": 40.7349528, + "maxlon": -73.9231972 + }, + "nodes": [ + 487117148, + 597311272 + ], + "geometry": [ + { "lat": 40.7349528, "lon": -73.9233484 }, + { "lat": 40.7348707, "lon": -73.9231972 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov": "contraflow_lane", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723304, + "bounds": { + "minlat": 40.7349862, + "minlon": -73.9233085, + "maxlat": 40.7350766, + "maxlon": -73.9231397 + }, + "nodes": [ + 597311284, + 487120883 + ], + "geometry": [ + { "lat": 40.7349862, "lon": -73.9231397 }, + { "lat": 40.7350766, "lon": -73.9233085 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723346, + "bounds": { + "minlat": 40.7346263, + "minlon": -73.9231397, + "maxlat": 40.7349862, + "maxlon": -73.9225517 + }, + "nodes": [ + 487120840, + 9194902622, + 9194902621, + 597311284 + ], + "geometry": [ + { "lat": 40.7346263, "lon": -73.9225517 }, + { "lat": 40.7347395, "lon": -73.9227233 }, + { "lat": 40.7348767, "lon": -73.9229449 }, + { "lat": 40.7349862, "lon": -73.9231397 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723354, + "bounds": { + "minlat": 40.7343889, + "minlon": -73.9227735, + "maxlat": 40.7346136, + "maxlon": -73.9224431 + }, + "nodes": [ + 597311274, + 9194902605, + 479166916 + ], + "geometry": [ + { "lat": 40.7346136, "lon": -73.9227735 }, + { "lat": 40.7344996, "lon": -73.9225983 }, + { "lat": 40.7343889, "lon": -73.9224431 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov": "contraflow_lane", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723395, + "bounds": { + "minlat": 40.7335080, + "minlon": -73.9214412, + "maxlat": 40.7336238, + "maxlon": -73.9212914 + }, + "nodes": [ + 597311388, + 597311390 + ], + "geometry": [ + { "lat": 40.7336238, "lon": -73.9214412 }, + { "lat": 40.7335080, "lon": -73.9212914 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov": "contraflow_lane", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723403, + "bounds": { + "minlat": 40.7337830, + "minlon": -73.9222931, + "maxlat": 40.7344464, + "maxlon": -73.9214280 + }, + "nodes": [ + 597311392, + 9194902623, + 479166881 + ], + "geometry": [ + { "lat": 40.7337830, "lon": -73.9214280 }, + { "lat": 40.7343182, "lon": -73.9221169 }, + { "lat": 40.7344464, "lon": -73.9222931 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723407, + "bounds": { + "minlat": 40.7336556, + "minlon": -73.9214280, + "maxlat": 40.7337830, + "maxlon": -73.9212658 + }, + "nodes": [ + 597311398, + 597311392 + ], + "geometry": [ + { "lat": 40.7336556, "lon": -73.9212658 }, + { "lat": 40.7337830, "lon": -73.9214280 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723447, + "bounds": { + "minlat": 40.7330632, + "minlon": -73.9212914, + "maxlat": 40.7335080, + "maxlon": -73.9207146 + }, + "nodes": [ + 597311390, + 479166918 + ], + "geometry": [ + { "lat": 40.7335080, "lon": -73.9212914 }, + { "lat": 40.7330632, "lon": -73.9207146 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov": "contraflow_lane", + "lanes": "4", + "lit": "yes", + "maxspeed": "55 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723463, + "bounds": { + "minlat": 40.7347557, + "minlon": -73.9211886, + "maxlat": 40.7351145, + "maxlon": -73.9195122 + }, + "nodes": [ + 597311475, + 9194902656, + 12162675451, + 488264407, + 12162675452, + 9194902655, + 12162675453, + 488264422, + 12162675454, + 9194902654, + 3440153794, + 488264429 + ], + "geometry": [ + { "lat": 40.7347557, "lon": -73.9211886 }, + { "lat": 40.7348049, "lon": -73.9210082 }, + { "lat": 40.7348444, "lon": -73.9208555 }, + { "lat": 40.7348814, "lon": -73.9207138 }, + { "lat": 40.7349153, "lon": -73.9205738 }, + { "lat": 40.7349464, "lon": -73.9204410 }, + { "lat": 40.7349725, "lon": -73.9203179 }, + { "lat": 40.7350012, "lon": -73.9201761 }, + { "lat": 40.7350288, "lon": -73.9200410 }, + { "lat": 40.7350561, "lon": -73.9198875 }, + { "lat": 40.7350820, "lon": -73.9197341 }, + { "lat": 40.7351145, "lon": -73.9195122 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723466, + "bounds": { + "minlat": 40.7341393, + "minlon": -73.9232061, + "maxlat": 40.7348534, + "maxlon": -73.9213267 + }, + "nodes": [ + 597311488, + 9194902550, + 488248710, + 9194902549, + 488248724, + 12162675461, + 9194902548, + 488248734, + 12162675460, + 9194902547, + 488248759, + 6219006568, + 9194902652, + 488248771 + ], + "geometry": [ + { "lat": 40.7348534, "lon": -73.9213267 }, + { "lat": 40.7347961, "lon": -73.9215225 }, + { "lat": 40.7347513, "lon": -73.9216666 }, + { "lat": 40.7346975, "lon": -73.9218254 }, + { "lat": 40.7346386, "lon": -73.9219984 }, + { "lat": 40.7345878, "lon": -73.9221414 }, + { "lat": 40.7345357, "lon": -73.9222872 }, + { "lat": 40.7344835, "lon": -73.9224237 }, + { "lat": 40.7344353, "lon": -73.9225504 }, + { "lat": 40.7343863, "lon": -73.9226702 }, + { "lat": 40.7343273, "lon": -73.9228096 }, + { "lat": 40.7342655, "lon": -73.9229493 }, + { "lat": 40.7342020, "lon": -73.9230806 }, + { "lat": 40.7341393, "lon": -73.9232061 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46723468, + "bounds": { + "minlat": 40.7325236, + "minlon": -73.9251135, + "maxlat": 40.7341393, + "maxlon": -73.9232061 + }, + "nodes": [ + 488248771, + 12162675459, + 9194902546, + 12162675458, + 488248787, + 9194902545, + 6219006569, + 488248797, + 9194902544, + 6219006570, + 12162675457, + 488248810, + 6219006571, + 12162675456, + 488248818, + 6219006573, + 9194902543, + 6219006572, + 12162675455, + 6219006574, + 6163924028 + ], + "geometry": [ + { "lat": 40.7341393, "lon": -73.9232061 }, + { "lat": 40.7340875, "lon": -73.9233069 }, + { "lat": 40.7340403, "lon": -73.9233937 }, + { "lat": 40.7339823, "lon": -73.9235001 }, + { "lat": 40.7339150, "lon": -73.9236185 }, + { "lat": 40.7338423, "lon": -73.9237319 }, + { "lat": 40.7337647, "lon": -73.9238439 }, + { "lat": 40.7336801, "lon": -73.9239636 }, + { "lat": 40.7335891, "lon": -73.9240870 }, + { "lat": 40.7334952, "lon": -73.9242011 }, + { "lat": 40.7334137, "lon": -73.9242958 }, + { "lat": 40.7333294, "lon": -73.9243899 }, + { "lat": 40.7332383, "lon": -73.9244868 }, + { "lat": 40.7331599, "lon": -73.9245676 }, + { "lat": 40.7330665, "lon": -73.9246583 }, + { "lat": 40.7329673, "lon": -73.9247507 }, + { "lat": 40.7328740, "lon": -73.9248344 }, + { "lat": 40.7327955, "lon": -73.9249024 }, + { "lat": 40.7327140, "lon": -73.9249687 }, + { "lat": 40.7326176, "lon": -73.9250470 }, + { "lat": 40.7325236, "lon": -73.9251135 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46723471, + "bounds": { + "minlat": 40.7342466, + "minlon": -73.9226233, + "maxlat": 40.7345513, + "maxlon": -73.9218645 + }, + "nodes": [ + 6219006685, + 488264347, + 488264360, + 9194902659, + 488264376 + ], + "geometry": [ + { "lat": 40.7342466, "lon": -73.9226233 }, + { "lat": 40.7342763, "lon": -73.9225549 }, + { "lat": 40.7343692, "lon": -73.9223215 }, + { "lat": 40.7344510, "lon": -73.9221005 }, + { "lat": 40.7345513, "lon": -73.9218645 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46723482, + "bounds": { + "minlat": 40.7351145, + "minlon": -73.9195122, + "maxlat": 40.7363810, + "maxlon": -73.9088674 + }, + "nodes": [ + 488264429, + 488264444, + 9194839443, + 9194839444, + 488264461, + 9194839442, + 9194839440, + 488264530, + 9194839439, + 488264541, + 597315979 + ], + "geometry": [ + { "lat": 40.7351145, "lon": -73.9195122 }, + { "lat": 40.7351443, "lon": -73.9192128 }, + { "lat": 40.7351795, "lon": -73.9189230 }, + { "lat": 40.7352083, "lon": -73.9186382 }, + { "lat": 40.7352316, "lon": -73.9183573 }, + { "lat": 40.7352525, "lon": -73.9180635 }, + { "lat": 40.7353008, "lon": -73.9173371 }, + { "lat": 40.7353151, "lon": -73.9170638 }, + { "lat": 40.7353417, "lon": -73.9167700 }, + { "lat": 40.7353737, "lon": -73.9164932 }, + { "lat": 40.7363810, "lon": -73.9088674 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723487, + "bounds": { + "minlat": 40.7348534, + "minlon": -73.9213267, + "maxlat": 40.7352134, + "maxlon": -73.9195366 + }, + "nodes": [ + 488248660, + 12162675463, + 9194902651, + 9194902555, + 488248672, + 9194902554, + 9194902553, + 12162675462, + 488248696, + 9194902552, + 9194902551, + 597311488 + ], + "geometry": [ + { "lat": 40.7352134, "lon": -73.9195366 }, + { "lat": 40.7351901, "lon": -73.9197073 }, + { "lat": 40.7351679, "lon": -73.9198720 }, + { "lat": 40.7351444, "lon": -73.9200318 }, + { "lat": 40.7351164, "lon": -73.9202088 }, + { "lat": 40.7350869, "lon": -73.9203768 }, + { "lat": 40.7350531, "lon": -73.9205334 }, + { "lat": 40.7350193, "lon": -73.9206778 }, + { "lat": 40.7349882, "lon": -73.9208068 }, + { "lat": 40.7349501, "lon": -73.9209610 }, + { "lat": 40.7349048, "lon": -73.9211459 }, + { "lat": 40.7348534, "lon": -73.9213267 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723493, + "bounds": { + "minlat": 40.7328146, + "minlon": -73.9197656, + "maxlat": 40.7350401, + "maxlon": -73.9188740 + }, + "nodes": [ + 42859982, + 10038425642, + 10087484088, + 10087484089, + 10087484090, + 10087484091, + 277388841, + 10087484092, + 10087484087, + 10087484086, + 10087484085, + 42904480, + 10087484084, + 10087484083, + 10087484082, + 8234915510, + 42845185, + 7984105269, + 10087484066, + 42798095 + ], + "geometry": [ + { "lat": 40.7328146, "lon": -73.9188740 }, + { "lat": 40.7328262, "lon": -73.9189914 }, + { "lat": 40.7328585, "lon": -73.9192553 }, + { "lat": 40.7328647, "lon": -73.9192958 }, + { "lat": 40.7328739, "lon": -73.9193581 }, + { "lat": 40.7328833, "lon": -73.9194154 }, + { "lat": 40.7328953, "lon": -73.9194753 }, + { "lat": 40.7329130, "lon": -73.9195546 }, + { "lat": 40.7329332, "lon": -73.9196310 }, + { "lat": 40.7329491, "lon": -73.9196804 }, + { "lat": 40.7329602, "lon": -73.9197105 }, + { "lat": 40.7329725, "lon": -73.9197364 }, + { "lat": 40.7329874, "lon": -73.9197528 }, + { "lat": 40.7330073, "lon": -73.9197621 }, + { "lat": 40.7330275, "lon": -73.9197656 }, + { "lat": 40.7330494, "lon": -73.9197643 }, + { "lat": 40.7338449, "lon": -73.9196094 }, + { "lat": 40.7342773, "lon": -73.9195201 }, + { "lat": 40.7349512, "lon": -73.9193875 }, + { "lat": 40.7350401, "lon": -73.9193689 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "47th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46723497, + "bounds": { + "minlat": 40.7346737, + "minlon": -73.9203812, + "maxlat": 40.7350401, + "maxlon": -73.9193689 + }, + "nodes": [ + 42802906, + 10087484070, + 10087484069, + 9194902646, + 10087484068, + 42798095 + ], + "geometry": [ + { "lat": 40.7346737, "lon": -73.9203812 }, + { "lat": 40.7346871, "lon": -73.9203690 }, + { "lat": 40.7347011, "lon": -73.9203502 }, + { "lat": 40.7347127, "lon": -73.9203278 }, + { "lat": 40.7349783, "lon": -73.9195178 }, + { "lat": 40.7350401, "lon": -73.9193689 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Laurel Hill Boulevard", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46724224, + "bounds": { + "minlat": 40.7259476, + "minlon": -73.9183687, + "maxlat": 40.7298790, + "maxlon": -73.9177300 + }, + "nodes": [ + 42810325, + 7506961827, + 10087637238, + 42823469, + 10087637239, + 42916218, + 8190068739, + 7712008355, + 42876102 + ], + "geometry": [ + { "lat": 40.7298790, "lon": -73.9177300 }, + { "lat": 40.7292271, "lon": -73.9178421 }, + { "lat": 40.7285834, "lon": -73.9179617 }, + { "lat": 40.7285061, "lon": -73.9179756 }, + { "lat": 40.7284318, "lon": -73.9179881 }, + { "lat": 40.7271280, "lon": -73.9181946 }, + { "lat": 40.7269599, "lon": -73.9182194 }, + { "lat": 40.7264459, "lon": -73.9182952 }, + { "lat": 40.7259476, "lon": -73.9183687 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "50th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46724225, + "bounds": { + "minlat": 40.7353155, + "minlon": -73.9187249, + "maxlat": 40.7364958, + "maxlon": -73.9088962 + }, + "nodes": [ + 597315978, + 488242888, + 9194839432, + 488248526, + 9194839433, + 9194839435, + 9194839438, + 488248607 + ], + "geometry": [ + { "lat": 40.7364958, "lon": -73.9088962 }, + { "lat": 40.7354975, "lon": -73.9164535 }, + { "lat": 40.7354658, "lon": -73.9167344 }, + { "lat": 40.7354399, "lon": -73.9170061 }, + { "lat": 40.7354221, "lon": -73.9172919 }, + { "lat": 40.7353662, "lon": -73.9181593 }, + { "lat": 40.7353447, "lon": -73.9184445 }, + { "lat": 40.7353155, "lon": -73.9187249 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "Brooklyn Queens Expressway;Staten Island|Brooklyn Queens Expressway;Staten Island|Long Island Expressway;Midtown Tunnel;Eastern Long Island;Greenpoint Avenue", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "turn:lanes": "||slight_right" + } +}, +{ + "type": "way", + "id": 46724229, + "bounds": { + "minlat": 40.7309247, + "minlon": -73.9207146, + "maxlat": 40.7330632, + "maxlon": -73.9159327 + }, + "nodes": [ + 479166918, + 479166921, + 9196017997, + 479166922, + 9196017998, + 479166925, + 9196017999, + 479166932, + 9196018003, + 479166935, + 479166937, + 9196018004, + 479166940, + 479166942 + ], + "geometry": [ + { "lat": 40.7330632, "lon": -73.9207146 }, + { "lat": 40.7325189, "lon": -73.9200046 }, + { "lat": 40.7323808, "lon": -73.9198053 }, + { "lat": 40.7321990, "lon": -73.9195095 }, + { "lat": 40.7320630, "lon": -73.9192694 }, + { "lat": 40.7319374, "lon": -73.9190288 }, + { "lat": 40.7318214, "lon": -73.9187773 }, + { "lat": 40.7317301, "lon": -73.9185678 }, + { "lat": 40.7316118, "lon": -73.9182632 }, + { "lat": 40.7315259, "lon": -73.9180222 }, + { "lat": 40.7314335, "lon": -73.9177336 }, + { "lat": 40.7313552, "lon": -73.9174664 }, + { "lat": 40.7312742, "lon": -73.9171755 }, + { "lat": 40.7309247, "lon": -73.9159327 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov": "contraflow_lane", + "lanes": "3", + "layer": "2", + "maxspeed": "50 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46724230, + "bounds": { + "minlat": 40.7331503, + "minlon": -73.9207644, + "maxlat": 40.7332701, + "maxlon": -73.9206065 + }, + "nodes": [ + 597315980, + 479166879 + ], + "geometry": [ + { "lat": 40.7331503, "lon": -73.9206065 }, + { "lat": 40.7332701, "lon": -73.9207644 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "||Van Dam Street;Ed Koch Queensboro Bridge;Hunters Point Avenue;Greenpoint Avenue", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 46724231, + "bounds": { + "minlat": 40.7356383, + "minlon": -73.9256521, + "maxlat": 40.7362547, + "maxlon": -73.9230607 + }, + "nodes": [ + 42825301, + 10084797186, + 9194902526, + 9194902527, + 9179115026, + 9179115025, + 10087484094, + 42825300, + 9179115024, + 9179115023, + 10084797182, + 9179115022, + 10084797183, + 10084797184, + 42825299, + 9179115021, + 9179115020, + 10774439589, + 10084797185, + 597311206 + ], + "geometry": [ + { "lat": 40.7356383, "lon": -73.9230607 }, + { "lat": 40.7356564, "lon": -73.9231607 }, + { "lat": 40.7356802, "lon": -73.9233290 }, + { "lat": 40.7357033, "lon": -73.9234902 }, + { "lat": 40.7357296, "lon": -73.9236506 }, + { "lat": 40.7357576, "lon": -73.9238067 }, + { "lat": 40.7357760, "lon": -73.9238951 }, + { "lat": 40.7357918, "lon": -73.9239713 }, + { "lat": 40.7358115, "lon": -73.9240624 }, + { "lat": 40.7358369, "lon": -73.9241693 }, + { "lat": 40.7358705, "lon": -73.9242958 }, + { "lat": 40.7359085, "lon": -73.9244323 }, + { "lat": 40.7359503, "lon": -73.9245688 }, + { "lat": 40.7359991, "lon": -73.9247267 }, + { "lat": 40.7360478, "lon": -73.9248787 }, + { "lat": 40.7361179, "lon": -73.9251105 }, + { "lat": 40.7361675, "lon": -73.9252980 }, + { "lat": 40.7362029, "lon": -73.9254377 }, + { "lat": 40.7362097, "lon": -73.9254647 }, + { "lat": 40.7362547, "lon": -73.9256521 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Laurel Hill", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46724234, + "bounds": { + "minlat": 40.7315818, + "minlon": -73.9248355, + "maxlat": 40.7322500, + "maxlon": -73.9245193 + }, + "nodes": [ + 42786844, + 11955770858, + 10038425614, + 42810304 + ], + "geometry": [ + { "lat": 40.7322500, "lon": -73.9245193 }, + { "lat": 40.7321955, "lon": -73.9245451 }, + { "lat": 40.7316380, "lon": -73.9248097 }, + { "lat": 40.7315818, "lon": -73.9248355 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "43rd Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46724235, + "bounds": { + "minlat": 40.7315028, + "minlon": -73.9196561, + "maxlat": 40.7317665, + "maxlon": -73.9192036 + }, + "nodes": [ + 42802984, + 11155242435, + 10038425637, + 9196018010, + 9196018011, + 10087637114, + 42802987 + ], + "geometry": [ + { "lat": 40.7317665, "lon": -73.9196561 }, + { "lat": 40.7315717, "lon": -73.9193509 }, + { "lat": 40.7315526, "lon": -73.9193203 }, + { "lat": 40.7315377, "lon": -73.9192953 }, + { "lat": 40.7315228, "lon": -73.9192641 }, + { "lat": 40.7315118, "lon": -73.9192358 }, + { "lat": 40.7315028, "lon": -73.9192036 } + ], + "tags": { + "hgv": "local", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "53rd Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46724236, + "bounds": { + "minlat": 40.7317736, + "minlon": -73.9191123, + "maxlat": 40.7322687, + "maxlon": -73.9189845 + }, + "nodes": [ + 277386814, + 9196018012, + 277386523 + ], + "geometry": [ + { "lat": 40.7317736, "lon": -73.9191123 }, + { "lat": 40.7320164, "lon": -73.9190395 }, + { "lat": 40.7322687, "lon": -73.9189845 } + ], + "tags": { + "bridge": "yes", + "cycleway": "lane", + "cycleway:buffer": "yes", + "highway": "tertiary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "48th Street", + "oneway": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46724238, + "bounds": { + "minlat": 40.7315028, + "minlon": -73.9192036, + "maxlat": 40.7317736, + "maxlon": -73.9191123 + }, + "nodes": [ + 42802987, + 10038425636, + 277386814 + ], + "geometry": [ + { "lat": 40.7315028, "lon": -73.9192036 }, + { "lat": 40.7315675, "lon": -73.9191787 }, + { "lat": 40.7317736, "lon": -73.9191123 } + ], + "tags": { + "cycleway": "lane", + "cycleway:right:buffer": "yes", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "48th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46724503, + "bounds": { + "minlat": 40.7318358, + "minlon": -73.9260531, + "maxlat": 40.7325414, + "maxlon": -73.9255557 + }, + "nodes": [ + 42786838, + 8554683717, + 42810297 + ], + "geometry": [ + { "lat": 40.7325414, "lon": -73.9255557 }, + { "lat": 40.7324328, "lon": -73.9256309 }, + { "lat": 40.7318358, "lon": -73.9260531 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Laurel Hill Boulevard", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46725377, + "bounds": { + "minlat": 40.7276151, + "minlon": -73.9083108, + "maxlat": 40.7282345, + "maxlon": -73.9073051 + }, + "nodes": [ + 479154981, + 597325433 + ], + "geometry": [ + { "lat": 40.7276151, "lon": -73.9073051 }, + { "lat": 40.7282345, "lon": -73.9083108 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46725378, + "bounds": { + "minlat": 40.7273240, + "minlon": -73.9073051, + "maxlat": 40.7276151, + "maxlon": -73.9068364 + }, + "nodes": [ + 479154964, + 479154981 + ], + "geometry": [ + { "lat": 40.7273240, "lon": -73.9068364 }, + { "lat": 40.7276151, "lon": -73.9073051 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46725382, + "bounds": { + "minlat": 40.7282345, + "minlon": -73.9206065, + "maxlat": 40.7331503, + "maxlon": -73.9083108 + }, + "nodes": [ + 597325433, + 9196051089, + 479155038, + 9196051088, + 479155055, + 9196051086, + 479166831, + 9196051084, + 479166833, + 9196051058, + 479166837, + 9196051057, + 479166845, + 1387832646, + 9196051052, + 9196051051, + 479166848, + 479166849, + 9196051047, + 479166860, + 9196051045, + 479166862, + 9196051044, + 479166864, + 479166867, + 9196051035, + 9196051036, + 9196051034, + 479166872, + 479166874, + 9196051033, + 479166877, + 597315980 + ], + "geometry": [ + { "lat": 40.7282345, "lon": -73.9083108 }, + { "lat": 40.7289548, "lon": -73.9094763 }, + { "lat": 40.7290996, "lon": -73.9097224 }, + { "lat": 40.7292586, "lon": -73.9100003 }, + { "lat": 40.7293958, "lon": -73.9102670 }, + { "lat": 40.7295246, "lon": -73.9105363 }, + { "lat": 40.7296218, "lon": -73.9107529 }, + { "lat": 40.7297246, "lon": -73.9110114 }, + { "lat": 40.7298196, "lon": -73.9112713 }, + { "lat": 40.7299109, "lon": -73.9115404 }, + { "lat": 40.7299871, "lon": -73.9118004 }, + { "lat": 40.7300605, "lon": -73.9120780 }, + { "lat": 40.7301276, "lon": -73.9123545 }, + { "lat": 40.7303574, "lon": -73.9133157 }, + { "lat": 40.7304206, "lon": -73.9135883 }, + { "lat": 40.7304920, "lon": -73.9138804 }, + { "lat": 40.7305580, "lon": -73.9141443 }, + { "lat": 40.7306268, "lon": -73.9144092 }, + { "lat": 40.7313875, "lon": -73.9171159 }, + { "lat": 40.7314657, "lon": -73.9173954 }, + { "lat": 40.7315426, "lon": -73.9176694 }, + { "lat": 40.7316270, "lon": -73.9179311 }, + { "lat": 40.7317192, "lon": -73.9181916 }, + { "lat": 40.7318278, "lon": -73.9184625 }, + { "lat": 40.7319276, "lon": -73.9186962 }, + { "lat": 40.7320397, "lon": -73.9189334 }, + { "lat": 40.7321722, "lon": -73.9191879 }, + { "lat": 40.7322912, "lon": -73.9194027 }, + { "lat": 40.7324280, "lon": -73.9196295 }, + { "lat": 40.7325755, "lon": -73.9198494 }, + { "lat": 40.7327218, "lon": -73.9200567 }, + { "lat": 40.7328722, "lon": -73.9202515 }, + { "lat": 40.7331503, "lon": -73.9206065 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "maxspeed": "50 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46725384, + "bounds": { + "minlat": 40.7272502, + "minlon": -73.9073957, + "maxlat": 40.7275312, + "maxlon": -73.9069251 + }, + "nodes": [ + 479160255, + 479160258 + ], + "geometry": [ + { "lat": 40.7275312, "lon": -73.9073957 }, + { "lat": 40.7272502, "lon": -73.9069251 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "50 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46725385, + "bounds": { + "minlat": 40.7259199, + "minlon": -73.9069251, + "maxlat": 40.7272502, + "maxlon": -73.9023851 + }, + "nodes": [ + 479160258, + 9196080156, + 9196080155, + 479160261, + 9196080154, + 9196080153, + 479160262, + 9196080152, + 9196080151, + 479160263, + 9196080150, + 9196080149, + 479160266, + 9196080148, + 9196080147, + 479160272, + 9196080146, + 9196080145, + 479160291, + 9196080144, + 3440285388 + ], + "geometry": [ + { "lat": 40.7272502, "lon": -73.9069251 }, + { "lat": 40.7271361, "lon": -73.9067232 }, + { "lat": 40.7270458, "lon": -73.9065585 }, + { "lat": 40.7269630, "lon": -73.9064011 }, + { "lat": 40.7268800, "lon": -73.9062308 }, + { "lat": 40.7267969, "lon": -73.9060482 }, + { "lat": 40.7267232, "lon": -73.9058759 }, + { "lat": 40.7266509, "lon": -73.9056991 }, + { "lat": 40.7265813, "lon": -73.9055183 }, + { "lat": 40.7265010, "lon": -73.9052945 }, + { "lat": 40.7264402, "lon": -73.9051159 }, + { "lat": 40.7263816, "lon": -73.9049273 }, + { "lat": 40.7263146, "lon": -73.9046943 }, + { "lat": 40.7262601, "lon": -73.9044804 }, + { "lat": 40.7262067, "lon": -73.9042570 }, + { "lat": 40.7261693, "lon": -73.9040778 }, + { "lat": 40.7261302, "lon": -73.9038808 }, + { "lat": 40.7260927, "lon": -73.9036574 }, + { "lat": 40.7260680, "lon": -73.9034826 }, + { "lat": 40.7260376, "lon": -73.9032583 }, + { "lat": 40.7259199, "lon": -73.9023851 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "50 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46725706, + "bounds": { + "minlat": 40.7297871, + "minlon": -73.9101785, + "maxlat": 40.7299291, + "maxlon": -73.9083532 + }, + "nodes": [ + 42786728, + 7725287397, + 9196051113, + 9196051114, + 9196051115, + 9196051116, + 9196051117, + 9196051118, + 9196051119, + 42786767 + ], + "geometry": [ + { "lat": 40.7299056, "lon": -73.9101785 }, + { "lat": 40.7299280, "lon": -73.9096264 }, + { "lat": 40.7299291, "lon": -73.9094132 }, + { "lat": 40.7299236, "lon": -73.9091836 }, + { "lat": 40.7299101, "lon": -73.9089315 }, + { "lat": 40.7298977, "lon": -73.9087749 }, + { "lat": 40.7298814, "lon": -73.9086466 }, + { "lat": 40.7298568, "lon": -73.9085350 }, + { "lat": 40.7298262, "lon": -73.9084432 }, + { "lat": 40.7297871, "lon": -73.9083532 } + ], + "tags": { + "highway": "residential", + "name": "54th Avenue", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46725708, + "bounds": { + "minlat": 40.7278675, + "minlon": -73.9105375, + "maxlat": 40.7297888, + "maxlon": -73.9069822 + }, + "nodes": [ + 7425120110, + 13703247955, + 9196051108, + 9196051109, + 9196051110, + 9196051111, + 7950054613, + 9196051112, + 9196051128, + 9196051127, + 9196051126, + 42803296, + 9196051125, + 597328420 + ], + "geometry": [ + { "lat": 40.7278675, "lon": -73.9069822 }, + { "lat": 40.7279191, "lon": -73.9070708 }, + { "lat": 40.7280800, "lon": -73.9073472 }, + { "lat": 40.7286138, "lon": -73.9083663 }, + { "lat": 40.7287430, "lon": -73.9085933 }, + { "lat": 40.7288859, "lon": -73.9088244 }, + { "lat": 40.7291629, "lon": -73.9092758 }, + { "lat": 40.7293388, "lon": -73.9095520 }, + { "lat": 40.7294132, "lon": -73.9096814 }, + { "lat": 40.7294719, "lon": -73.9097946 }, + { "lat": 40.7295431, "lon": -73.9099480 }, + { "lat": 40.7296425, "lon": -73.9101684 }, + { "lat": 40.7297282, "lon": -73.9103713 }, + { "lat": 40.7297888, "lon": -73.9105375 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens-Midtown Expressway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41;A64", + "tiger:county": "Queens, NY", + "tiger:name_base": "54th;Long Island Exwy Service Road", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 46725859, + "bounds": { + "minlat": 40.7275108, + "minlon": -73.9082221, + "maxlat": 40.7276947, + "maxlon": -73.9079110 + }, + "nodes": [ + 8872404067, + 4202569191 + ], + "geometry": [ + { "lat": 40.7276947, "lon": -73.9082221 }, + { "lat": 40.7275108, "lon": -73.9079110 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46735685, + "bounds": { + "minlat": 40.7366977, + "minlon": -73.9081856, + "maxlat": 40.7384751, + "maxlon": -73.9036442 + }, + "nodes": [ + 597414628, + 9194848652, + 11685914789, + 9194848653, + 9194848654, + 9194848655, + 42825317, + 42825316, + 42825315, + 9194848656, + 9194848657, + 276388345, + 9194848658, + 9194848659, + 9194848660, + 42825314, + 9194848661, + 42825313 + ], + "geometry": [ + { "lat": 40.7384751, "lon": -73.9036442 }, + { "lat": 40.7383953, "lon": -73.9039073 }, + { "lat": 40.7383254, "lon": -73.9040566 }, + { "lat": 40.7383203, "lon": -73.9040675 }, + { "lat": 40.7382577, "lon": -73.9041862 }, + { "lat": 40.7381913, "lon": -73.9043310 }, + { "lat": 40.7380701, "lon": -73.9045898 }, + { "lat": 40.7376326, "lon": -73.9055678 }, + { "lat": 40.7372094, "lon": -73.9065381 }, + { "lat": 40.7371395, "lon": -73.9066967 }, + { "lat": 40.7370847, "lon": -73.9068304 }, + { "lat": 40.7370367, "lon": -73.9069607 }, + { "lat": 40.7369948, "lon": -73.9070769 }, + { "lat": 40.7369453, "lon": -73.9072272 }, + { "lat": 40.7369043, "lon": -73.9073547 }, + { "lat": 40.7368684, "lon": -73.9074780 }, + { "lat": 40.7368331, "lon": -73.9076125 }, + { "lat": 40.7366977, "lon": -73.9081856 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46735698, + "bounds": { + "minlat": 40.7505620, + "minlon": -73.9103271, + "maxlat": 40.7529697, + "maxlon": -73.9094456 + }, + "nodes": [ + 1904847201, + 9188971700, + 9188971699, + 8088629412, + 9188971698, + 9188971697, + 9188971696, + 9188971695, + 277136465, + 3785177681, + 3778080990, + 3785177675, + 42815933, + 3569893200, + 5482228862, + 42896867, + 277136322, + 277136323, + 42876809 + ], + "geometry": [ + { "lat": 40.7529697, "lon": -73.9102410 }, + { "lat": 40.7529313, "lon": -73.9102684 }, + { "lat": 40.7528930, "lon": -73.9102900 }, + { "lat": 40.7528507, "lon": -73.9103130 }, + { "lat": 40.7528134, "lon": -73.9103186 }, + { "lat": 40.7527669, "lon": -73.9103264 }, + { "lat": 40.7527287, "lon": -73.9103271 }, + { "lat": 40.7526900, "lon": -73.9103227 }, + { "lat": 40.7526487, "lon": -73.9103115 }, + { "lat": 40.7525658, "lon": -73.9102712 }, + { "lat": 40.7521017, "lon": -73.9100627 }, + { "lat": 40.7519201, "lon": -73.9099809 }, + { "lat": 40.7515750, "lon": -73.9098197 }, + { "lat": 40.7514983, "lon": -73.9097851 }, + { "lat": 40.7511717, "lon": -73.9096379 }, + { "lat": 40.7510233, "lon": -73.9095710 }, + { "lat": 40.7508679, "lon": -73.9095050 }, + { "lat": 40.7507290, "lon": -73.9094456 }, + { "lat": 40.7505620, "lon": -73.9094897 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Woodside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46735724, + "bounds": { + "minlat": 40.7425448, + "minlon": -73.9159517, + "maxlat": 40.7426906, + "maxlon": -73.9150166 + }, + "nodes": [ + 42807852, + 3785693709, + 12954458216, + 10927686065, + 9986789926, + 276315696 + ], + "geometry": [ + { "lat": 40.7426906, "lon": -73.9159517 }, + { "lat": 40.7426247, "lon": -73.9157597 }, + { "lat": 40.7425599, "lon": -73.9152003 }, + { "lat": 40.7425534, "lon": -73.9151443 }, + { "lat": 40.7425481, "lon": -73.9151003 }, + { "lat": 40.7425448, "lon": -73.9150166 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 46735749, + "bounds": { + "minlat": 40.7364958, + "minlon": -73.9088962, + "maxlat": 40.7382350, + "maxlon": -73.9037856 + }, + "nodes": [ + 9194848613, + 9194848614, + 9194848615, + 9194848616, + 9194848617, + 488235603, + 9194848618, + 488235634, + 9194848637, + 9194848638, + 9194848639, + 9194848640, + 488241107, + 9194848641, + 9194848642, + 9194848643, + 488241112, + 9194848644, + 9194848645, + 9194848646, + 488241118, + 9194848647, + 9194848648, + 9194848649, + 488242881, + 597315978 + ], + "geometry": [ + { "lat": 40.7382350, "lon": -73.9037856 }, + { "lat": 40.7381454, "lon": -73.9040241 }, + { "lat": 40.7380410, "lon": -73.9042876 }, + { "lat": 40.7379361, "lon": -73.9045329 }, + { "lat": 40.7378264, "lon": -73.9047835 }, + { "lat": 40.7377141, "lon": -73.9050334 }, + { "lat": 40.7376070, "lon": -73.9052758 }, + { "lat": 40.7371628, "lon": -73.9062753 }, + { "lat": 40.7371075, "lon": -73.9064086 }, + { "lat": 40.7370568, "lon": -73.9065277 }, + { "lat": 40.7370100, "lon": -73.9066509 }, + { "lat": 40.7369630, "lon": -73.9067765 }, + { "lat": 40.7369176, "lon": -73.9069028 }, + { "lat": 40.7368730, "lon": -73.9070414 }, + { "lat": 40.7368322, "lon": -73.9071764 }, + { "lat": 40.7367965, "lon": -73.9072962 }, + { "lat": 40.7367590, "lon": -73.9074349 }, + { "lat": 40.7367235, "lon": -73.9075757 }, + { "lat": 40.7366920, "lon": -73.9077131 }, + { "lat": 40.7366626, "lon": -73.9078484 }, + { "lat": 40.7366339, "lon": -73.9079853 }, + { "lat": 40.7366067, "lon": -73.9081296 }, + { "lat": 40.7365839, "lon": -73.9082647 }, + { "lat": 40.7365615, "lon": -73.9084040 }, + { "lat": 40.7365428, "lon": -73.9085404 }, + { "lat": 40.7364958, "lon": -73.9088962 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46738903, + "bounds": { + "minlat": 40.7721803, + "minlon": -73.9199688, + "maxlat": 40.7722989, + "maxlon": -73.9198031 + }, + "nodes": [ + 100661124, + 597443928 + ], + "geometry": [ + { "lat": 40.7722989, "lon": -73.9199688 }, + { "lat": 40.7721803, "lon": -73.9198031 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "I 278;GCP", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 46738904, + "bounds": { + "minlat": 40.7722696, + "minlon": -73.9198672, + "maxlat": 40.7723867, + "maxlon": -73.9197238 + }, + "nodes": [ + 597443929, + 276210711 + ], + "geometry": [ + { "lat": 40.7722696, "lon": -73.9197238 }, + { "lat": 40.7723867, "lon": -73.9198672 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "GCP;I 278", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 46738909, + "bounds": { + "minlat": 40.7700013, + "minlon": -73.9166971, + "maxlat": 40.7702291, + "maxlon": -73.9166055 + }, + "nodes": [ + 8427721091, + 8427721092 + ], + "geometry": [ + { "lat": 40.7700013, "lon": -73.9166971 }, + { "lat": 40.7702291, "lon": -73.9166055 } + ], + "tags": { + "bridge": "yes", + "foot": "yes", + "highway": "secondary", + "lanes": "3", + "layer": "1", + "maxspeed": "25 mph", + "name": "33rd Street", + "oneway": "yes", + "turn:lanes": "left|left|left" + } +}, +{ + "type": "way", + "id": 46738922, + "bounds": { + "minlat": 40.7682888, + "minlon": -73.9070739, + "maxlat": 40.7688268, + "maxlon": -73.9069225 + }, + "nodes": [ + 597443960, + 12170312853 + ], + "geometry": [ + { "lat": 40.7688268, "lon": -73.9069225 }, + { "lat": 40.7682888, "lon": -73.9070739 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "layer": "1", + "name": "44th Street", + "oneway": "no", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 46738948, + "bounds": { + "minlat": 40.7682614, + "minlon": -73.9352270, + "maxlat": 40.7695260, + "maxlon": -73.9320267 + }, + "nodes": [ + 42843340, + 7668020431, + 2509332379, + 7668020429, + 42856504, + 7668020428, + 6866836872, + 2403963458, + 5753505456, + 7668020427, + 7668020426, + 42826940 + ], + "geometry": [ + { "lat": 40.7682614, "lon": -73.9320267 }, + { "lat": 40.7683051, "lon": -73.9321376 }, + { "lat": 40.7685554, "lon": -73.9327692 }, + { "lat": 40.7687932, "lon": -73.9333811 }, + { "lat": 40.7688180, "lon": -73.9334450 }, + { "lat": 40.7688524, "lon": -73.9335315 }, + { "lat": 40.7691287, "lon": -73.9342269 }, + { "lat": 40.7691904, "lon": -73.9343823 }, + { "lat": 40.7692805, "lon": -73.9346091 }, + { "lat": 40.7694678, "lon": -73.9350806 }, + { "lat": 40.7694858, "lon": -73.9351312 }, + { "lat": 40.7695260, "lon": -73.9352270 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "name": "31st Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46740536, + "bounds": { + "minlat": 40.7521455, + "minlon": -73.9289511, + "maxlat": 40.7581780, + "maxlon": -73.9240642 + }, + "nodes": [ + 42866674, + 8088590953, + 3569401930, + 42815829, + 3569401935, + 6884584464, + 3569858131, + 42866667, + 3569858136, + 3574982343, + 42866664, + 3574982346, + 6943175631, + 3577895802, + 42824147 + ], + "geometry": [ + { "lat": 40.7521455, "lon": -73.9289511 }, + { "lat": 40.7522138, "lon": -73.9288918 }, + { "lat": 40.7532074, "lon": -73.9280860 }, + { "lat": 40.7532726, "lon": -73.9280311 }, + { "lat": 40.7533407, "lon": -73.9279739 }, + { "lat": 40.7536136, "lon": -73.9277770 }, + { "lat": 40.7550344, "lon": -73.9266213 }, + { "lat": 40.7550980, "lon": -73.9265696 }, + { "lat": 40.7551658, "lon": -73.9265144 }, + { "lat": 40.7565740, "lon": -73.9253692 }, + { "lat": 40.7566393, "lon": -73.9253159 }, + { "lat": 40.7567161, "lon": -73.9252534 }, + { "lat": 40.7571966, "lon": -73.9248502 }, + { "lat": 40.7581141, "lon": -73.9241162 }, + { "lat": 40.7581780, "lon": -73.9240642 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "35th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46740551, + "bounds": { + "minlat": 40.7520725, + "minlon": -73.9265506, + "maxlat": 40.7524054, + "maxlon": -73.9264731 + }, + "nodes": [ + 42888672, + 8088590947, + 8088564407, + 9189020457, + 9189020458, + 9189020459, + 42815838 + ], + "geometry": [ + { "lat": 40.7520725, "lon": -73.9264731 }, + { "lat": 40.7521978, "lon": -73.9264865 }, + { "lat": 40.7522402, "lon": -73.9264879 }, + { "lat": 40.7522737, "lon": -73.9264948 }, + { "lat": 40.7523285, "lon": -73.9265120 }, + { "lat": 40.7523548, "lon": -73.9265240 }, + { "lat": 40.7524054, "lon": -73.9265506 } + ], + "tags": { + "highway": "residential", + "name": "37th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46740556, + "bounds": { + "minlat": 40.7696022, + "minlon": -73.9121721, + "maxlat": 40.7700277, + "maxlon": -73.9115365 + }, + "nodes": [ + 42818232, + 6406731412, + 6406731399, + 42818227 + ], + "geometry": [ + { "lat": 40.7696022, "lon": -73.9115365 }, + { "lat": 40.7697384, "lon": -73.9117373 }, + { "lat": 40.7699936, "lon": -73.9120981 }, + { "lat": 40.7700277, "lon": -73.9121721 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "24th Avenue", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46740642, + "bounds": { + "minlat": 40.7739655, + "minlon": -73.9227995, + "maxlat": 40.7744328, + "maxlon": -73.9223173 + }, + "nodes": [ + 42897243, + 6452989062, + 6452989055, + 2447553703, + 42898265 + ], + "geometry": [ + { "lat": 40.7744328, "lon": -73.9223173 }, + { "lat": 40.7743380, "lon": -73.9224279 }, + { "lat": 40.7740779, "lon": -73.9227364 }, + { "lat": 40.7740574, "lon": -73.9227608 }, + { "lat": 40.7739655, "lon": -73.9227995 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "23rd Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46740643, + "bounds": { + "minlat": 40.7632760, + "minlon": -73.9313521, + "maxlat": 40.7692825, + "maxlon": -73.9264763 + }, + "nodes": [ + 42807570, + 6455933435, + 2883487949, + 7791670091, + 6455933432, + 42881458, + 6455933431, + 6452415990, + 42882970, + 6452415988, + 2403986930, + 8047166477, + 8047166430, + 7726598447, + 8047166465, + 7791526559, + 6453029366, + 2693557989, + 7791526542, + 5487911888, + 8047166439, + 7661754165, + 42856513, + 7661754164, + 2403968915, + 4991520400, + 6452981345, + 42849235, + 4991520398, + 6452981346, + 4991520402, + 42810479, + 4991520401, + 6452981329, + 6452971016, + 42874036 + ], + "geometry": [ + { "lat": 40.7632760, "lon": -73.9313521 }, + { "lat": 40.7633571, "lon": -73.9312861 }, + { "lat": 40.7635861, "lon": -73.9310998 }, + { "lat": 40.7637911, "lon": -73.9309331 }, + { "lat": 40.7638297, "lon": -73.9309017 }, + { "lat": 40.7638735, "lon": -73.9308660 }, + { "lat": 40.7639296, "lon": -73.9308218 }, + { "lat": 40.7644241, "lon": -73.9304181 }, + { "lat": 40.7644906, "lon": -73.9303640 }, + { "lat": 40.7645708, "lon": -73.9302987 }, + { "lat": 40.7649830, "lon": -73.9299634 }, + { "lat": 40.7652959, "lon": -73.9297088 }, + { "lat": 40.7653229, "lon": -73.9296869 }, + { "lat": 40.7653739, "lon": -73.9296454 }, + { "lat": 40.7654315, "lon": -73.9295986 }, + { "lat": 40.7659005, "lon": -73.9292178 }, + { "lat": 40.7659320, "lon": -73.9291922 }, + { "lat": 40.7659830, "lon": -73.9291499 }, + { "lat": 40.7660392, "lon": -73.9291031 }, + { "lat": 40.7661688, "lon": -73.9289987 }, + { "lat": 40.7662546, "lon": -73.9289293 }, + { "lat": 40.7666501, "lon": -73.9286071 }, + { "lat": 40.7667180, "lon": -73.9285540 }, + { "lat": 40.7667905, "lon": -73.9284972 }, + { "lat": 40.7671667, "lon": -73.9281869 }, + { "lat": 40.7675680, "lon": -73.9278603 }, + { "lat": 40.7675738, "lon": -73.9278556 }, + { "lat": 40.7676161, "lon": -73.9278212 }, + { "lat": 40.7676722, "lon": -73.9277756 }, + { "lat": 40.7676786, "lon": -73.9277704 }, + { "lat": 40.7683881, "lon": -73.9271932 }, + { "lat": 40.7684418, "lon": -73.9271495 }, + { "lat": 40.7684917, "lon": -73.9271096 }, + { "lat": 40.7685072, "lon": -73.9270972 }, + { "lat": 40.7692099, "lon": -73.9265345 }, + { "lat": 40.7692825, "lon": -73.9264763 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "23rd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46746183, + "bounds": { + "minlat": 40.7477318, + "minlon": -73.9315882, + "maxlat": 40.7512695, + "maxlon": -73.9296572 + }, + "nodes": [ + 42838391, + 10069637113, + 42838400, + 11467771685 + ], + "geometry": [ + { "lat": 40.7512695, "lon": -73.9315882 }, + { "lat": 40.7508180, "lon": -73.9313418 }, + { "lat": 40.7479505, "lon": -73.9297705 }, + { "lat": 40.7477318, "lon": -73.9296572 } + ], + "tags": { + "bridge": "yes", + "cycleway": "lane", + "cycleway:buffer": "yes", + "highway": "tertiary", + "lanes": "2", + "layer": "1", + "lcn": "yes", + "lit": "yes", + "maxspeed": "25 mph", + "maxweight:signed": "no", + "name": "Honeywell Street", + "oneway": "no", + "parking:both": "no", + "parking:both:restriction": "no_parking", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46746184, + "bounds": { + "minlat": 40.7471531, + "minlon": -73.9293783, + "maxlat": 40.7472062, + "maxlon": -73.9293531 + }, + "nodes": [ + 42838410, + 10069637115, + 7985719891 + ], + "geometry": [ + { "lat": 40.7472062, "lon": -73.9293783 }, + { "lat": 40.7471768, "lon": -73.9293644 }, + { "lat": 40.7471531, "lon": -73.9293531 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Honeywell Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "through|right" + } +}, +{ + "type": "way", + "id": 46746185, + "bounds": { + "minlat": 40.7480861, + "minlon": -73.9253533, + "maxlat": 40.7492050, + "maxlon": -73.9251277 + }, + "nodes": [ + 42932829, + 4202449332 + ], + "geometry": [ + { "lat": 40.7492050, "lon": -73.9251277 }, + { "lat": 40.7480861, "lon": -73.9253533 } + ], + "tags": { + "bridge": "yes", + "cycleway": "lane", + "cycleway:both:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "39th Street", + "parking:lane:both": "no_parking", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46746186, + "bounds": { + "minlat": 40.7492050, + "minlon": -73.9251277, + "maxlat": 40.7497139, + "maxlon": -73.9250271 + }, + "nodes": [ + 277032734, + 4181556875, + 42932829 + ], + "geometry": [ + { "lat": 40.7497139, "lon": -73.9250271 }, + { "lat": 40.7492662, "lon": -73.9251156 }, + { "lat": 40.7492050, "lon": -73.9251277 } + ], + "tags": { + "bridge": "yes", + "cycleway": "lane", + "cycleway:left:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:forward": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "39th Street", + "parking:lane:both": "no_parking", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46746187, + "bounds": { + "minlat": 40.7516392, + "minlon": -73.9246403, + "maxlat": 40.7518992, + "maxlon": -73.9245791 + }, + "nodes": [ + 597500970, + 4202449333 + ], + "geometry": [ + { "lat": 40.7518992, "lon": -73.9245791 }, + { "lat": 40.7516392, "lon": -73.9246403 } + ], + "tags": { + "bridge": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:forward": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "39th Street", + "parking:lane:both": "no_parking", + "surface": "concrete", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 46768109, + "bounds": { + "minlat": 40.7114560, + "minlon": -73.9211040, + "maxlat": 40.7121905, + "maxlon": -73.9198600 + }, + "nodes": [ + 2997098445, + 8155282882, + 7138278366, + 9744131331, + 42827564 + ], + "geometry": [ + { "lat": 40.7121905, "lon": -73.9211040 }, + { "lat": 40.7121442, "lon": -73.9210256 }, + { "lat": 40.7121174, "lon": -73.9209802 }, + { "lat": 40.7115124, "lon": -73.9199552 }, + { "lat": 40.7114560, "lon": -73.9198600 } + ], + "tags": { + "highway": "residential", + "name": "Onderdonk Avenue", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 46768132, + "bounds": { + "minlat": 40.7082380, + "minlon": -73.9345340, + "maxlat": 40.7127540, + "maxlon": -73.9325230 + }, + "nodes": [ + 42490318, + 6789842924, + 597676432, + 2133350143, + 9194735805, + 42490322, + 9194735804, + 42490325, + 7207857461, + 13701172277, + 42490327, + 7229794607, + 42490329, + 7229794598, + 42490332, + 42490334 + ], + "geometry": [ + { "lat": 40.7082380, "lon": -73.9325230 }, + { "lat": 40.7085569, "lon": -73.9326529 }, + { "lat": 40.7086235, "lon": -73.9326800 }, + { "lat": 40.7086603, "lon": -73.9326959 }, + { "lat": 40.7092390, "lon": -73.9329576 }, + { "lat": 40.7092958, "lon": -73.9329869 }, + { "lat": 40.7093794, "lon": -73.9330234 }, + { "lat": 40.7099880, "lon": -73.9332960 }, + { "lat": 40.7104609, "lon": -73.9335085 }, + { "lat": 40.7106156, "lon": -73.9335780 }, + { "lat": 40.7106690, "lon": -73.9336020 }, + { "lat": 40.7112897, "lon": -73.9338728 }, + { "lat": 40.7113360, "lon": -73.9338930 }, + { "lat": 40.7117996, "lon": -73.9341074 }, + { "lat": 40.7121230, "lon": -73.9342570 }, + { "lat": 40.7127540, "lon": -73.9345340 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "name": "Morgan Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46768165, + "bounds": { + "minlat": 40.7175292, + "minlon": -73.9100923, + "maxlat": 40.7176857, + "maxlon": -73.9099428 + }, + "nodes": [ + 597676533, + 597676535 + ], + "geometry": [ + { "lat": 40.7176857, "lon": -73.9100923 }, + { "lat": 40.7175292, "lon": -73.9099428 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Flushing Avenue", + "oneway": "yes", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 46768168, + "bounds": { + "minlat": 40.7165263, + "minlon": -73.9111936, + "maxlat": 40.7175292, + "maxlon": -73.9099118 + }, + "nodes": [ + 597676535, + 597676544, + 597676546, + 597676548 + ], + "geometry": [ + { "lat": 40.7175292, "lon": -73.9099428 }, + { "lat": 40.7174917, "lon": -73.9099118 }, + { "lat": 40.7171931, "lon": -73.9104513 }, + { "lat": 40.7165263, "lon": -73.9111936 } + ], + "tags": { + "highway": "residential", + "name": "Flushing Avenue", + "oneway": "yes", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 46768170, + "bounds": { + "minlat": 40.7193480, + "minlon": -73.9127688, + "maxlat": 40.7207873, + "maxlon": -73.9123210 + }, + "nodes": [ + 42871299, + 9759966680, + 597676554 + ], + "geometry": [ + { "lat": 40.7193480, "lon": -73.9123210 }, + { "lat": 40.7194572, "lon": -73.9123550 }, + { "lat": 40.7207873, "lon": -73.9127688 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 46768180, + "bounds": { + "minlat": 40.7167085, + "minlon": -73.9114702, + "maxlat": 40.7169470, + "maxlon": -73.9111870 + }, + "nodes": [ + 42881170, + 597676576 + ], + "geometry": [ + { "lat": 40.7169470, "lon": -73.9111870 }, + { "lat": 40.7167085, "lon": -73.9114702 } + ], + "tags": { + "highway": "residential", + "name": "Flushing Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 46768184, + "bounds": { + "minlat": 40.7156574, + "minlon": -73.9125652, + "maxlat": 40.7167085, + "maxlon": -73.9114702 + }, + "nodes": [ + 597676576, + 2996303761, + 597676406, + 597676586, + 2996303757, + 2996303714, + 2996303747, + 597676589 + ], + "geometry": [ + { "lat": 40.7167085, "lon": -73.9114702 }, + { "lat": 40.7165518, "lon": -73.9116295 }, + { "lat": 40.7164302, "lon": -73.9117336 }, + { "lat": 40.7162913, "lon": -73.9118533 }, + { "lat": 40.7161041, "lon": -73.9120418 }, + { "lat": 40.7158336, "lon": -73.9123253 }, + { "lat": 40.7157223, "lon": -73.9124560 }, + { "lat": 40.7156574, "lon": -73.9125652 } + ], + "tags": { + "foot": "use_sidepath", + "highway": "residential", + "name": "Flushing Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 46768186, + "bounds": { + "minlat": 40.7166838, + "minlon": -73.9114702, + "maxlat": 40.7167085, + "maxlon": -73.9114333 + }, + "nodes": [ + 597676594, + 597676576 + ], + "geometry": [ + { "lat": 40.7166838, "lon": -73.9114333 }, + { "lat": 40.7167085, "lon": -73.9114702 } + ], + "tags": { + "highway": "residential", + "name": "57th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46768188, + "bounds": { + "minlat": 40.7165551, + "minlon": -73.9114333, + "maxlat": 40.7166838, + "maxlon": -73.9112373 + }, + "nodes": [ + 597676599, + 597676594 + ], + "geometry": [ + { "lat": 40.7165551, "lon": -73.9112373 }, + { "lat": 40.7166838, "lon": -73.9114333 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "57th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46768210, + "bounds": { + "minlat": 40.7165263, + "minlon": -73.9112373, + "maxlat": 40.7165551, + "maxlon": -73.9111936 + }, + "nodes": [ + 597676548, + 597676599 + ], + "geometry": [ + { "lat": 40.7165263, "lon": -73.9111936 }, + { "lat": 40.7165551, "lon": -73.9112373 } + ], + "tags": { + "highway": "residential", + "name": "57th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46768211, + "bounds": { + "minlat": 40.7169470, + "minlon": -73.9111870, + "maxlat": 40.7177067, + "maxlon": -73.9100923 + }, + "nodes": [ + 42881170, + 597676694, + 13701708522, + 9759966699, + 597676533 + ], + "geometry": [ + { "lat": 40.7169470, "lon": -73.9111870 }, + { "lat": 40.7174696, "lon": -73.9105801 }, + { "lat": 40.7176216, "lon": -73.9102818 }, + { "lat": 40.7177067, "lon": -73.9101149 }, + { "lat": 40.7176857, "lon": -73.9100923 } + ], + "tags": { + "highway": "residential", + "name": "Flushing Avenue", + "oneway": "yes", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 46768212, + "bounds": { + "minlat": 40.7177183, + "minlon": -73.9097411, + "maxlat": 40.7178736, + "maxlon": -73.9095956 + }, + "nodes": [ + 597676712, + 12024319677, + 597676713 + ], + "geometry": [ + { "lat": 40.7178736, "lon": -73.9097411 }, + { "lat": 40.7177820, "lon": -73.9096553 }, + { "lat": 40.7177183, "lon": -73.9095956 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "secondary", + "layer": "1", + "name": "Rust Street", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 46768213, + "bounds": { + "minlat": 40.7176735, + "minlon": -73.9095956, + "maxlat": 40.7177183, + "maxlon": -73.9095497 + }, + "nodes": [ + 597676713, + 597676720 + ], + "geometry": [ + { "lat": 40.7177183, "lon": -73.9095956 }, + { "lat": 40.7176735, "lon": -73.9095497 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Rust Street", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 46768215, + "bounds": { + "minlat": 40.7174690, + "minlon": -73.9085050, + "maxlat": 40.7181398, + "maxlon": -73.9083822 + }, + "nodes": [ + 42827478, + 9759984224, + 7963468552, + 13048049517, + 597676783 + ], + "geometry": [ + { "lat": 40.7174690, "lon": -73.9085050 }, + { "lat": 40.7175326, "lon": -73.9084933 }, + { "lat": 40.7175634, "lon": -73.9084877 }, + { "lat": 40.7180974, "lon": -73.9083900 }, + { "lat": 40.7181398, "lon": -73.9083822 } + ], + "tags": { + "highway": "residential", + "name": "59th Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46768217, + "bounds": { + "minlat": 40.7186838, + "minlon": -73.9083030, + "maxlat": 40.7190404, + "maxlon": -73.9082240 + }, + "nodes": [ + 42827469, + 12302276112, + 9820917956, + 9820869302 + ], + "geometry": [ + { "lat": 40.7190404, "lon": -73.9082240 }, + { "lat": 40.7188222, "lon": -73.9082724 }, + { "lat": 40.7187649, "lon": -73.9082858 }, + { "lat": 40.7186838, "lon": -73.9083030 } + ], + "tags": { + "highway": "residential", + "name": "59th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46768218, + "bounds": { + "minlat": 40.7181398, + "minlon": -73.9083822, + "maxlat": 40.7183312, + "maxlon": -73.9083513 + }, + "nodes": [ + 597676783, + 7963468576, + 9759984162, + 597676797 + ], + "geometry": [ + { "lat": 40.7181398, "lon": -73.9083822 }, + { "lat": 40.7182331, "lon": -73.9083671 }, + { "lat": 40.7182906, "lon": -73.9083575 }, + { "lat": 40.7183312, "lon": -73.9083513 } + ], + "tags": { + "highway": "residential", + "name": "59th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46768219, + "bounds": { + "minlat": 40.7179930, + "minlon": -73.9083822, + "maxlat": 40.7186790, + "maxlon": -73.9022940 + }, + "nodes": [ + 42807052, + 11004089422, + 7963480204, + 11003420588, + 42844508, + 9759984201, + 7963468571, + 9759984204, + 42851281, + 9759984183, + 9759984220, + 7983753736, + 7963468562, + 9759984186, + 42851278, + 9759984174, + 42851273, + 12302276113, + 9759984171, + 597676783 + ], + "geometry": [ + { "lat": 40.7186790, "lon": -73.9022940 }, + { "lat": 40.7186625, "lon": -73.9023927 }, + { "lat": 40.7186445, "lon": -73.9025008 }, + { "lat": 40.7186383, "lon": -73.9025320 }, + { "lat": 40.7186248, "lon": -73.9026190 }, + { "lat": 40.7186115, "lon": -73.9026989 }, + { "lat": 40.7184114, "lon": -73.9040267 }, + { "lat": 40.7184014, "lon": -73.9040897 }, + { "lat": 40.7183920, "lon": -73.9041590 }, + { "lat": 40.7183811, "lon": -73.9042337 }, + { "lat": 40.7182205, "lon": -73.9053388 }, + { "lat": 40.7181122, "lon": -73.9060843 }, + { "lat": 40.7180668, "lon": -73.9063969 }, + { "lat": 40.7180568, "lon": -73.9064657 }, + { "lat": 40.7180460, "lon": -73.9065400 }, + { "lat": 40.7180341, "lon": -73.9066270 }, + { "lat": 40.7179930, "lon": -73.9069280 }, + { "lat": 40.7181257, "lon": -73.9082420 }, + { "lat": 40.7181322, "lon": -73.9083065 }, + { "lat": 40.7181398, "lon": -73.9083822 } + ], + "tags": { + "highway": "residential", + "name": "59th Road", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46768220, + "bounds": { + "minlat": 40.7190486, + "minlon": -73.9078798, + "maxlat": 40.7190609, + "maxlon": -73.9073672 + }, + "nodes": [ + 2996303620, + 7860806046 + ], + "geometry": [ + { "lat": 40.7190609, "lon": -73.9073672 }, + { "lat": 40.7190486, "lon": -73.9078798 } + ], + "tags": { + "highway": "residential", + "name": "59th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 46769803, + "bounds": { + "minlat": 40.7154549, + "minlon": -73.9073222, + "maxlat": 40.7155370, + "maxlon": -73.9072440 + }, + "nodes": [ + 597688993, + 7980856277, + 42806444 + ], + "geometry": [ + { "lat": 40.7154549, "lon": -73.9073222 }, + { "lat": 40.7155121, "lon": -73.9072677 }, + { "lat": 40.7155370, "lon": -73.9072440 } + ], + "tags": { + "highway": "residential", + "name": "Andrews Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Andrews", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_left_1": "11378", + "tiger:zip_left_2": "11378", + "tiger:zip_right": "11378", + "tiger:zip_right_1": "11378", + "tiger:zip_right_2": "11378" + } +}, +{ + "type": "way", + "id": 46769804, + "bounds": { + "minlat": 40.7152625, + "minlon": -73.9075055, + "maxlat": 40.7154549, + "maxlon": -73.9073222 + }, + "nodes": [ + 597688992, + 597688993 + ], + "geometry": [ + { "lat": 40.7152625, "lon": -73.9075055 }, + { "lat": 40.7154549, "lon": -73.9073222 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Andrews Avenue", + "oneway": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46816987, + "bounds": { + "minlat": 40.7191884, + "minlon": -73.9560380, + "maxlat": 40.7213970, + "maxlon": -73.9524877 + }, + "nodes": [ + 42514559, + 9939430892, + 9939430891, + 3865279486, + 9794890663, + 42509228, + 3865279490, + 3865279497, + 42514554, + 9794890692, + 9794890675, + 42514549 + ], + "geometry": [ + { "lat": 40.7191884, "lon": -73.9524877 }, + { "lat": 40.7193005, "lon": -73.9526298 }, + { "lat": 40.7194133, "lon": -73.9528504 }, + { "lat": 40.7196224, "lon": -73.9531872 }, + { "lat": 40.7197528, "lon": -73.9533963 }, + { "lat": 40.7197980, "lon": -73.9534690 }, + { "lat": 40.7198444, "lon": -73.9535433 }, + { "lat": 40.7205623, "lon": -73.9546921 }, + { "lat": 40.7206010, "lon": -73.9547540 }, + { "lat": 40.7206441, "lon": -73.9548233 }, + { "lat": 40.7213562, "lon": -73.9559721 }, + { "lat": 40.7213970, "lon": -73.9560380 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "North 12th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "12th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46816988, + "bounds": { + "minlat": 40.7172921, + "minlon": -73.9659361, + "maxlat": 40.7173450, + "maxlon": -73.9658264 + }, + "nodes": [ + 9377680319, + 9949556525 + ], + "geometry": [ + { "lat": 40.7172921, "lon": -73.9658264 }, + { "lat": 40.7173450, "lon": -73.9659361 } + ], + "tags": { + "highway": "residential", + "motor_vehicle": "private", + "name": "North 1st Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "1st", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46816990, + "bounds": { + "minlat": 40.7116780, + "minlon": -73.9677048, + "maxlat": 40.7126029, + "maxlon": -73.9649580 + }, + "nodes": [ + 42469461, + 9990599551, + 9143611893, + 9990599538, + 42506332, + 9990599528, + 10596295101, + 8842469032, + 42514914 + ], + "geometry": [ + { "lat": 40.7126029, "lon": -73.9677048 }, + { "lat": 40.7125817, "lon": -73.9676431 }, + { "lat": 40.7121093, "lon": -73.9662729 }, + { "lat": 40.7120886, "lon": -73.9662214 }, + { "lat": 40.7120570, "lon": -73.9661430 }, + { "lat": 40.7120344, "lon": -73.9660724 }, + { "lat": 40.7119168, "lon": -73.9657048 }, + { "lat": 40.7117069, "lon": -73.9650485 }, + { "lat": 40.7116780, "lon": -73.9649580 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "name": "South 5th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 46816992, + "bounds": { + "minlat": 40.7150079, + "minlon": -73.9614230, + "maxlat": 40.7163840, + "maxlon": -73.9594397 + }, + "nodes": [ + 42536642, + 9785615146, + 11502113291, + 9785615165, + 42520398, + 9785615167, + 5481954237, + 598031715, + 598031716, + 9785615176, + 598031717 + ], + "geometry": [ + { "lat": 40.7163840, "lon": -73.9614230 }, + { "lat": 40.7163475, "lon": -73.9613645 }, + { "lat": 40.7156553, "lon": -73.9602552 }, + { "lat": 40.7156294, "lon": -73.9602136 }, + { "lat": 40.7155830, "lon": -73.9601390 }, + { "lat": 40.7155496, "lon": -73.9600847 }, + { "lat": 40.7154638, "lon": -73.9599450 }, + { "lat": 40.7151855, "lon": -73.9594936 }, + { "lat": 40.7151332, "lon": -73.9594421 }, + { "lat": 40.7150837, "lon": -73.9594397 }, + { "lat": 40.7150079, "lon": -73.9594742 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "North 3rd Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "3rd", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46816993, + "bounds": { + "minlat": 40.7175280, + "minlon": -73.9628939, + "maxlat": 40.7192023, + "maxlon": -73.9601960 + }, + "nodes": [ + 42469496, + 9795044534, + 9948156245, + 42506318, + 9948156246, + 7111665349, + 9795044563, + 42528570 + ], + "geometry": [ + { "lat": 40.7192023, "lon": -73.9628939 }, + { "lat": 40.7191674, "lon": -73.9628372 }, + { "lat": 40.7184628, "lon": -73.9616943 }, + { "lat": 40.7184170, "lon": -73.9616200 }, + { "lat": 40.7183794, "lon": -73.9615598 }, + { "lat": 40.7176273, "lon": -73.9603550 }, + { "lat": 40.7175776, "lon": -73.9602754 }, + { "lat": 40.7175280, "lon": -73.9601960 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "North 5th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46816994, + "bounds": { + "minlat": 40.7197594, + "minlon": -73.9632805, + "maxlat": 40.7203652, + "maxlon": -73.9622901 + }, + "nodes": [ + 42469499, + 6248588430, + 9794998986, + 42506166 + ], + "geometry": [ + { "lat": 40.7197594, "lon": -73.9622901 }, + { "lat": 40.7198198, "lon": -73.9623959 }, + { "lat": 40.7203316, "lon": -73.9632260 }, + { "lat": 40.7203652, "lon": -73.9632805 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "residential", + "name": "North 6th Street", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "6th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46816995, + "bounds": { + "minlat": 40.7172252, + "minlon": -73.9599178, + "maxlat": 40.7219660, + "maxlon": -73.9521470 + }, + "nodes": [ + 42482474, + 6228178123, + 6530806541, + 6248588904, + 42482473, + 6248588903, + 12952466775, + 6248588442, + 42482469, + 9794890419, + 9794890432, + 42482465, + 9794890434, + 6978351421, + 9794890348, + 42482461, + 9794890464, + 7086694454, + 42482458, + 7086694453, + 8468050587, + 9794890363, + 42469514 + ], + "geometry": [ + { "lat": 40.7172313, "lon": -73.9521470 }, + { "lat": 40.7172252, "lon": -73.9522559 }, + { "lat": 40.7172546, "lon": -73.9523318 }, + { "lat": 40.7178636, "lon": -73.9533146 }, + { "lat": 40.7179135, "lon": -73.9533952 }, + { "lat": 40.7179669, "lon": -73.9534814 }, + { "lat": 40.7185172, "lon": -73.9543717 }, + { "lat": 40.7186557, "lon": -73.9545934 }, + { "lat": 40.7186940, "lon": -73.9546550 }, + { "lat": 40.7187384, "lon": -73.9547264 }, + { "lat": 40.7194563, "lon": -73.9558829 }, + { "lat": 40.7194930, "lon": -73.9559420 }, + { "lat": 40.7195367, "lon": -73.9560121 }, + { "lat": 40.7202258, "lon": -73.9571163 }, + { "lat": 40.7202528, "lon": -73.9571599 }, + { "lat": 40.7202930, "lon": -73.9572250 }, + { "lat": 40.7203421, "lon": -73.9573028 }, + { "lat": 40.7211430, "lon": -73.9585870 }, + { "lat": 40.7211810, "lon": -73.9586480 }, + { "lat": 40.7212270, "lon": -73.9587228 }, + { "lat": 40.7219063, "lon": -73.9598224 }, + { "lat": 40.7219341, "lon": -73.9598663 }, + { "lat": 40.7219660, "lon": -73.9599178 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North 10th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46816996, + "bounds": { + "minlat": 40.7181791, + "minlon": -73.9580613, + "maxlat": 40.7217289, + "maxlon": -73.9523019 + }, + "nodes": [ + 42506305, + 9794890569, + 6245642016, + 9794890554, + 42534485, + 9794890552, + 9794890538, + 42520383, + 9794890536, + 6245642012, + 42509232, + 6245642015, + 6228178113, + 42526495, + 6228178111, + 7173740501, + 6228178109, + 42520612 + ], + "geometry": [ + { "lat": 40.7217289, "lon": -73.9580613 }, + { "lat": 40.7216874, "lon": -73.9579929 }, + { "lat": 40.7212491, "lon": -73.9572780 }, + { "lat": 40.7208940, "lon": -73.9567072 }, + { "lat": 40.7208460, "lon": -73.9566300 }, + { "lat": 40.7208049, "lon": -73.9565638 }, + { "lat": 40.7200934, "lon": -73.9554208 }, + { "lat": 40.7200490, "lon": -73.9553480 }, + { "lat": 40.7200081, "lon": -73.9552824 }, + { "lat": 40.7192927, "lon": -73.9541359 }, + { "lat": 40.7192460, "lon": -73.9540610 }, + { "lat": 40.7192062, "lon": -73.9539969 }, + { "lat": 40.7185145, "lon": -73.9528903 }, + { "lat": 40.7184658, "lon": -73.9528124 }, + { "lat": 40.7184083, "lon": -73.9527204 }, + { "lat": 40.7182632, "lon": -73.9524882 }, + { "lat": 40.7182211, "lon": -73.9524208 }, + { "lat": 40.7181791, "lon": -73.9523019 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North 11th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "11th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46816998, + "bounds": { + "minlat": 40.7136708, + "minlon": -73.9535706, + "maxlat": 40.7145061, + "maxlon": -73.9525427 + }, + "nodes": [ + 598031720, + 9968370391, + 479719245, + 479716748 + ], + "geometry": [ + { "lat": 40.7136708, "lon": -73.9535706 }, + { "lat": 40.7137891, "lon": -73.9534419 }, + { "lat": 40.7140515, "lon": -73.9531476 }, + { "lat": 40.7145061, "lon": -73.9525427 } + ], + "tags": { + "bridge": "yes", + "highway": "motorway", + "lanes": "1", + "layer": "1", + "maxspeed:advisory": "30 mph", + "name": "Williamsburg Bridge", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46816999, + "bounds": { + "minlat": 40.7140780, + "minlon": -73.9550508, + "maxlat": 40.7143340, + "maxlon": -73.9547734 + }, + "nodes": [ + 42484194, + 7923125549, + 13041002938, + 42480143 + ], + "geometry": [ + { "lat": 40.7140780, "lon": -73.9547734 }, + { "lat": 40.7141765, "lon": -73.9547912 }, + { "lat": 40.7142958, "lon": -73.9549878 }, + { "lat": 40.7143340, "lon": -73.9550508 } + ], + "tags": { + "highway": "pedestrian", + "name": "North 5th Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46817000, + "bounds": { + "minlat": 40.7140732, + "minlon": -73.9552522, + "maxlat": 40.7143340, + "maxlon": -73.9550508 + }, + "nodes": [ + 42480143, + 9785615202, + 7923125551, + 42480149 + ], + "geometry": [ + { "lat": 40.7143340, "lon": -73.9550508 }, + { "lat": 40.7142865, "lon": -73.9551010 }, + { "lat": 40.7141558, "lon": -73.9552389 }, + { "lat": 40.7140732, "lon": -73.9552522 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "name": "Havemeyer Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Havemeyer", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46817001, + "bounds": { + "minlat": 40.7175079, + "minlon": -73.9652030, + "maxlat": 40.7177890, + "maxlon": -73.9647139 + }, + "nodes": [ + 42484162, + 9785615137, + 8968692141, + 9779538082, + 2357946649, + 42469489 + ], + "geometry": [ + { "lat": 40.7177890, "lon": -73.9652030 }, + { "lat": 40.7177643, "lon": -73.9651588 }, + { "lat": 40.7177419, "lon": -73.9651202 }, + { "lat": 40.7175678, "lon": -73.9648209 }, + { "lat": 40.7175414, "lon": -73.9647759 }, + { "lat": 40.7175079, "lon": -73.9647139 } + ], + "tags": { + "highway": "residential", + "name": "Metropolitan Avenue", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Metropolitan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 46817005, + "bounds": { + "minlat": 40.7163691, + "minlon": -73.9401130, + "maxlat": 40.7168797, + "maxlon": -73.9384207 + }, + "nodes": [ + 7725510882, + 9695771727, + 10684276016, + 8347773888, + 6858108821, + 8955521579, + 7721358852 + ], + "geometry": [ + { "lat": 40.7163691, "lon": -73.9401130 }, + { "lat": 40.7163769, "lon": -73.9400320 }, + { "lat": 40.7163977, "lon": -73.9399702 }, + { "lat": 40.7164785, "lon": -73.9397298 }, + { "lat": 40.7164882, "lon": -73.9396986 }, + { "lat": 40.7165229, "lon": -73.9395853 }, + { "lat": 40.7168797, "lon": -73.9384207 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Skillman Avenue" + } +}, +{ + "type": "way", + "id": 46817006, + "bounds": { + "minlat": 40.7161773, + "minlon": -73.9497154, + "maxlat": 40.7170936, + "maxlon": -73.9402328 + }, + "nodes": [ + 42489753, + 9695771719, + 8610941935, + 9695846826, + 42491527, + 9695846831, + 9795355874, + 42502897, + 9795355864, + 8589641117, + 9945679645, + 42467889, + 9795355831, + 8610941945, + 9795355836, + 42509933, + 9795355838, + 9795355910, + 9802943820, + 42491203, + 9802943821, + 7925457343, + 9802943861, + 42509922 + ], + "geometry": [ + { "lat": 40.7170936, "lon": -73.9402328 }, + { "lat": 40.7170652, "lon": -73.9403323 }, + { "lat": 40.7169372, "lon": -73.9416712 }, + { "lat": 40.7169316, "lon": -73.9417305 }, + { "lat": 40.7169206, "lon": -73.9418454 }, + { "lat": 40.7169074, "lon": -73.9419837 }, + { "lat": 40.7168137, "lon": -73.9429721 }, + { "lat": 40.7168050, "lon": -73.9430550 }, + { "lat": 40.7167970, "lon": -73.9431413 }, + { "lat": 40.7166624, "lon": -73.9445895 }, + { "lat": 40.7166580, "lon": -73.9446364 }, + { "lat": 40.7166490, "lon": -73.9447340 }, + { "lat": 40.7166383, "lon": -73.9448458 }, + { "lat": 40.7164989, "lon": -73.9462937 }, + { "lat": 40.7164945, "lon": -73.9463395 }, + { "lat": 40.7164870, "lon": -73.9464170 }, + { "lat": 40.7164782, "lon": -73.9465099 }, + { "lat": 40.7163438, "lon": -73.9479317 }, + { "lat": 40.7163378, "lon": -73.9479952 }, + { "lat": 40.7163310, "lon": -73.9480670 }, + { "lat": 40.7163229, "lon": -73.9481541 }, + { "lat": 40.7161914, "lon": -73.9495640 }, + { "lat": 40.7161851, "lon": -73.9496304 }, + { "lat": 40.7161773, "lon": -73.9497154 } + ], + "tags": { + "highway": "residential", + "name": "Jackson Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46817007, + "bounds": { + "minlat": 40.7179070, + "minlon": -73.9466530, + "maxlat": 40.7184755, + "maxlon": -73.9406535 + }, + "nodes": [ + 7722378702, + 9695721706, + 8610941949, + 9935605430, + 42502902, + 9795332508, + 9795356061, + 42467894, + 9795356062, + 5520860770, + 5520860775, + 42529769 + ], + "geometry": [ + { "lat": 40.7184755, "lon": -73.9406535 }, + { "lat": 40.7184671, "lon": -73.9407952 }, + { "lat": 40.7182390, "lon": -73.9431501 }, + { "lat": 40.7182337, "lon": -73.9432052 }, + { "lat": 40.7182260, "lon": -73.9432850 }, + { "lat": 40.7182176, "lon": -73.9433735 }, + { "lat": 40.7180756, "lon": -73.9448653 }, + { "lat": 40.7180660, "lon": -73.9449660 }, + { "lat": 40.7180550, "lon": -73.9450828 }, + { "lat": 40.7179203, "lon": -73.9465114 }, + { "lat": 40.7179151, "lon": -73.9465673 }, + { "lat": 40.7179070, "lon": -73.9466530 } + ], + "tags": { + "highway": "residential", + "name": "Frost Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46817008, + "bounds": { + "minlat": 40.7170936, + "minlon": -73.9402328, + "maxlat": 40.7176559, + "maxlon": -73.9384529 + }, + "nodes": [ + 42504218, + 10075776357, + 10075671036, + 9695771644, + 42489753 + ], + "geometry": [ + { "lat": 40.7176559, "lon": -73.9384529 }, + { "lat": 40.7176227, "lon": -73.9385723 }, + { "lat": 40.7171592, "lon": -73.9400226 }, + { "lat": 40.7171256, "lon": -73.9401277 }, + { "lat": 40.7170936, "lon": -73.9402328 } + ], + "tags": { + "highway": "residential", + "name": "Jackson Street", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 46817009, + "bounds": { + "minlat": 40.7166656, + "minlon": -73.9520488, + "maxlat": 40.7168534, + "maxlon": -73.9500283 + }, + "nodes": [ + 12966258417, + 9942799067, + 12966258416, + 5481954255, + 5481954253, + 6235394612, + 42505929 + ], + "geometry": [ + { "lat": 40.7167992, "lon": -73.9500283 }, + { "lat": 40.7168529, "lon": -73.9501073 }, + { "lat": 40.7168534, "lon": -73.9501531 }, + { "lat": 40.7167647, "lon": -73.9510144 }, + { "lat": 40.7167034, "lon": -73.9516543 }, + { "lat": 40.7166749, "lon": -73.9519519 }, + { "lat": 40.7166656, "lon": -73.9520488 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "name": "Withers Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46817012, + "bounds": { + "minlat": 40.7188740, + "minlon": -73.9451080, + "maxlat": 40.7196040, + "maxlon": -73.9438990 + }, + "nodes": [ + 42467904, + 9703355386, + 6235394681, + 42463370 + ], + "geometry": [ + { "lat": 40.7188740, "lon": -73.9451080 }, + { "lat": 40.7189269, "lon": -73.9450203 }, + { "lat": 40.7195582, "lon": -73.9439757 }, + { "lat": 40.7196040, "lon": -73.9438990 } + ], + "tags": { + "highway": "residential", + "name": "Herbert Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Herbert", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 46817015, + "bounds": { + "minlat": 40.7210011, + "minlon": -73.9456716, + "maxlat": 40.7270246, + "maxlon": -73.9446747 + }, + "nodes": [ + 42502930, + 6732947949, + 42479372, + 6732947951, + 9765742499, + 42502927, + 9765784226, + 42502926, + 9789356847, + 42466392, + 9789356845, + 42502922 + ], + "geometry": [ + { "lat": 40.7270246, "lon": -73.9456716 }, + { "lat": 40.7256059, "lon": -73.9454434 }, + { "lat": 40.7255309, "lon": -73.9454318 }, + { "lat": 40.7254593, "lon": -73.9454197 }, + { "lat": 40.7230798, "lon": -73.9450277 }, + { "lat": 40.7230141, "lon": -73.9450173 }, + { "lat": 40.7229501, "lon": -73.9450073 }, + { "lat": 40.7223648, "lon": -73.9449004 }, + { "lat": 40.7217552, "lon": -73.9447995 }, + { "lat": 40.7216825, "lon": -73.9447875 }, + { "lat": 40.7216250, "lon": -73.9447780 }, + { "lat": 40.7210011, "lon": -73.9446747 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46817017, + "bounds": { + "minlat": 40.7211437, + "minlon": -73.9431587, + "maxlat": 40.7232021, + "maxlon": -73.9428264 + }, + "nodes": [ + 8672287431, + 6732842569, + 9789356865, + 42466398, + 9789356863, + 6235394688, + 42476648 + ], + "geometry": [ + { "lat": 40.7232021, "lon": -73.9431587 }, + { "lat": 40.7231284, "lon": -73.9431458 }, + { "lat": 40.7219325, "lon": -73.9429482 }, + { "lat": 40.7218590, "lon": -73.9429360 }, + { "lat": 40.7217999, "lon": -73.9429273 }, + { "lat": 40.7212142, "lon": -73.9428424 }, + { "lat": 40.7211437, "lon": -73.9428264 } + ], + "tags": { + "highway": "residential", + "name": "North Henry Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46817019, + "bounds": { + "minlat": 40.7276682, + "minlon": -73.9437496, + "maxlat": 40.7323849, + "maxlon": -73.9429430 + }, + "nodes": [ + 622232007, + 13515590855, + 13515590854, + 9788947427, + 10187694021, + 42496825, + 7644831027, + 10187694031, + 9788947374, + 42517892 + ], + "geometry": [ + { "lat": 40.7323849, "lon": -73.9437496 }, + { "lat": 40.7323624, "lon": -73.9437357 }, + { "lat": 40.7323362, "lon": -73.9437218 }, + { "lat": 40.7323087, "lon": -73.9437137 }, + { "lat": 40.7318714, "lon": -73.9436446 }, + { "lat": 40.7308120, "lon": -73.9434650 }, + { "lat": 40.7307824, "lon": -73.9434601 }, + { "lat": 40.7307659, "lon": -73.9434574 }, + { "lat": 40.7277477, "lon": -73.9429562 }, + { "lat": 40.7276682, "lon": -73.9429430 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Monitor Street", + "name:etymology:wikidata": "Q857891", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817031, + "bounds": { + "minlat": 40.7222806, + "minlon": -73.9419920, + "maxlat": 40.7277500, + "maxlon": -73.9410898 + }, + "nodes": [ + 42476656, + 6228788720, + 10926828053, + 6235394697, + 42495896, + 6235394699, + 10164025287, + 10164025311, + 6732845685, + 42479388, + 6732842583, + 6235394701, + 42495899 + ], + "geometry": [ + { "lat": 40.7222806, "lon": -73.9410898 }, + { "lat": 40.7223733, "lon": -73.9411051 }, + { "lat": 40.7229046, "lon": -73.9411975 }, + { "lat": 40.7233098, "lon": -73.9412680 }, + { "lat": 40.7233810, "lon": -73.9412807 }, + { "lat": 40.7234369, "lon": -73.9412888 }, + { "lat": 40.7243180, "lon": -73.9414323 }, + { "lat": 40.7253337, "lon": -73.9415977 }, + { "lat": 40.7258201, "lon": -73.9416769 }, + { "lat": 40.7258820, "lon": -73.9416870 }, + { "lat": 40.7259573, "lon": -73.9416993 }, + { "lat": 40.7276749, "lon": -73.9419798 }, + { "lat": 40.7277500, "lon": -73.9419920 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "name_1": "Grandparents Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817032, + "bounds": { + "minlat": 40.7226071, + "minlon": -73.9371073, + "maxlat": 40.7234043, + "maxlon": -73.9340271 + }, + "nodes": [ + 42522375, + 9937834334, + 42522377, + 42505675 + ], + "geometry": [ + { "lat": 40.7226071, "lon": -73.9371073 }, + { "lat": 40.7226395, "lon": -73.9369820 }, + { "lat": 40.7229970, "lon": -73.9355879 }, + { "lat": 40.7234043, "lon": -73.9340271 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "name": "Lombardy Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817033, + "bounds": { + "minlat": 40.7219460, + "minlon": -73.9420040, + "maxlat": 40.7220040, + "maxlon": -73.9414578 + }, + "nodes": [ + 42466405, + 9789356880, + 9789356885, + 42466401 + ], + "geometry": [ + { "lat": 40.7220040, "lon": -73.9414578 }, + { "lat": 40.7219882, "lon": -73.9416072 }, + { "lat": 40.7219548, "lon": -73.9419242 }, + { "lat": 40.7219460, "lon": -73.9420040 } + ], + "tags": { + "highway": "residential", + "name": "Engert Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46817034, + "bounds": { + "minlat": 40.7234193, + "minlon": -73.9390318, + "maxlat": 40.7239973, + "maxlon": -73.9378037 + }, + "nodes": [ + 476025026, + 9194920865, + 6219006693, + 9194920866, + 9194920867, + 9194920868, + 5943344509, + 9194920869, + 12162675507, + 598031729 + ], + "geometry": [ + { "lat": 40.7239973, "lon": -73.9378037 }, + { "lat": 40.7239503, "lon": -73.9379308 }, + { "lat": 40.7238953, "lon": -73.9380675 }, + { "lat": 40.7238397, "lon": -73.9382020 }, + { "lat": 40.7237844, "lon": -73.9383255 }, + { "lat": 40.7237280, "lon": -73.9384525 }, + { "lat": 40.7236633, "lon": -73.9385819 }, + { "lat": 40.7235867, "lon": -73.9387279 }, + { "lat": 40.7235208, "lon": -73.9388506 }, + { "lat": 40.7234193, "lon": -73.9390318 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46817035, + "bounds": { + "minlat": 40.7239973, + "minlon": -73.9378037, + "maxlat": 40.7241279, + "maxlon": -73.9374003 + }, + "nodes": [ + 476025024, + 12162675505, + 12162675506, + 476025026 + ], + "geometry": [ + { "lat": 40.7241279, "lon": -73.9374003 }, + { "lat": 40.7240907, "lon": -73.9375309 }, + { "lat": 40.7240432, "lon": -73.9376747 }, + { "lat": 40.7239973, "lon": -73.9378037 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46817036, + "bounds": { + "minlat": 40.7242808, + "minlon": -73.9362852, + "maxlat": 40.7246044, + "maxlon": -73.9347486 + }, + "nodes": [ + 476025198, + 5943344513, + 598031819 + ], + "geometry": [ + { "lat": 40.7242808, "lon": -73.9362852 }, + { "lat": 40.7244923, "lon": -73.9352356 }, + { "lat": 40.7246044, "lon": -73.9347486 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46817037, + "bounds": { + "minlat": 40.7238733, + "minlon": -73.9377592, + "maxlat": 40.7240350, + "maxlon": -73.9372537 + }, + "nodes": [ + 476025195, + 9194902744, + 9194902743, + 9194902742, + 9194902741 + ], + "geometry": [ + { "lat": 40.7238733, "lon": -73.9377592 }, + { "lat": 40.7239182, "lon": -73.9376267 }, + { "lat": 40.7239593, "lon": -73.9375021 }, + { "lat": 40.7239998, "lon": -73.9373723 }, + { "lat": 40.7240350, "lon": -73.9372537 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "turn:lanes": "none|through;right|right" + } +}, +{ + "type": "way", + "id": 46817038, + "bounds": { + "minlat": 40.7233880, + "minlon": -73.9393984, + "maxlat": 40.7235607, + "maxlon": -73.9393242 + }, + "nodes": [ + 42476669, + 42490491 + ], + "geometry": [ + { "lat": 40.7233880, "lon": -73.9393242 }, + { "lat": 40.7235607, "lon": -73.9393984 } + ], + "tags": { + "highway": "residential", + "name": "Morgan Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46817039, + "bounds": { + "minlat": 40.7246883, + "minlon": -73.9343634, + "maxlat": 40.7249041, + "maxlon": -73.9333748 + }, + "nodes": [ + 598031839, + 6219006699 + ], + "geometry": [ + { "lat": 40.7246883, "lon": -73.9343634 }, + { "lat": 40.7249041, "lon": -73.9333748 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46817040, + "bounds": { + "minlat": 40.7248084, + "minlon": -73.9348371, + "maxlat": 40.7249086, + "maxlon": -73.9344658 + }, + "nodes": [ + 598031844, + 598031845 + ], + "geometry": [ + { "lat": 40.7249086, "lon": -73.9344658 }, + { "lat": 40.7248084, "lon": -73.9348371 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46817041, + "bounds": { + "minlat": 40.7241279, + "minlon": -73.9374003, + "maxlat": 40.7248084, + "maxlon": -73.9348371 + }, + "nodes": [ + 598031845, + 476025022, + 12162675504, + 476025024 + ], + "geometry": [ + { "lat": 40.7248084, "lon": -73.9348371 }, + { "lat": 40.7242121, "lon": -73.9371048 }, + { "lat": 40.7241698, "lon": -73.9372577 }, + { "lat": 40.7241279, "lon": -73.9374003 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817042, + "bounds": { + "minlat": 40.7246044, + "minlon": -73.9347486, + "maxlat": 40.7246883, + "maxlon": -73.9343634 + }, + "nodes": [ + 598031819, + 598031839 + ], + "geometry": [ + { "lat": 40.7246044, "lon": -73.9347486 }, + { "lat": 40.7246883, "lon": -73.9343634 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 46817043, + "bounds": { + "minlat": 40.7240442, + "minlon": -73.9360548, + "maxlat": 40.7244078, + "maxlon": -73.9344680 + }, + "nodes": [ + 42505315, + 9194920837, + 9194920836, + 9194920835, + 9194920834, + 9937797975, + 9937797965, + 42505318 + ], + "geometry": [ + { "lat": 40.7240442, "lon": -73.9360548 }, + { "lat": 40.7240651, "lon": -73.9359507 }, + { "lat": 40.7240932, "lon": -73.9358053 }, + { "lat": 40.7241266, "lon": -73.9356466 }, + { "lat": 40.7241608, "lon": -73.9354998 }, + { "lat": 40.7243685, "lon": -73.9346472 }, + { "lat": 40.7243806, "lon": -73.9345918 }, + { "lat": 40.7244078, "lon": -73.9344680 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Cherry Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 46817044, + "bounds": { + "minlat": 40.7236720, + "minlon": -73.9360548, + "maxlat": 40.7240442, + "maxlon": -73.9358898 + }, + "nodes": [ + 42505315, + 9937797958, + 8465212328, + 9937834360, + 42522710 + ], + "geometry": [ + { "lat": 40.7240442, "lon": -73.9360548 }, + { "lat": 40.7239888, "lon": -73.9360316 }, + { "lat": 40.7237753, "lon": -73.9359361 }, + { "lat": 40.7237289, "lon": -73.9359153 }, + { "lat": 40.7236720, "lon": -73.9358898 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Porter Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817049, + "bounds": { + "minlat": 40.7234043, + "minlon": -73.9343180, + "maxlat": 40.7240708, + "maxlon": -73.9340271 + }, + "nodes": [ + 42505675, + 9937797940, + 10164025310, + 42505677 + ], + "geometry": [ + { "lat": 40.7234043, "lon": -73.9340271 }, + { "lat": 40.7234566, "lon": -73.9340499 }, + { "lat": 40.7235010, "lon": -73.9340693 }, + { "lat": 40.7240708, "lon": -73.9343180 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817050, + "bounds": { + "minlat": 40.7245538, + "minlon": -73.9332190, + "maxlat": 40.7255488, + "maxlon": -73.9327835 + }, + "nodes": [ + 10164025296, + 9937797949, + 42505320, + 9937797951, + 9765199829, + 9353866462, + 3789157788 + ], + "geometry": [ + { "lat": 40.7245538, "lon": -73.9327835 }, + { "lat": 40.7247322, "lon": -73.9328605 }, + { "lat": 40.7247866, "lon": -73.9328855 }, + { "lat": 40.7248637, "lon": -73.9329187 }, + { "lat": 40.7251639, "lon": -73.9330485 }, + { "lat": 40.7254544, "lon": -73.9331740 }, + { "lat": 40.7255488, "lon": -73.9332190 } + ], + "tags": { + "highway": "unclassified", + "name": "Stewart Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817174, + "bounds": { + "minlat": 40.7066530, + "minlon": -73.9504060, + "maxlat": 40.7070110, + "maxlon": -73.9465230 + }, + "nodes": [ + 42514959, + 9959900661, + 7154190641, + 5481854376, + 9959900689, + 42523539, + 9959900688, + 9959900694, + 42491149 + ], + "geometry": [ + { "lat": 40.7066530, "lon": -73.9504060 }, + { "lat": 40.7066632, "lon": -73.9502928 }, + { "lat": 40.7066949, "lon": -73.9499408 }, + { "lat": 40.7067155, "lon": -73.9497121 }, + { "lat": 40.7068417, "lon": -73.9483161 }, + { "lat": 40.7068518, "lon": -73.9482068 }, + { "lat": 40.7068626, "lon": -73.9480916 }, + { "lat": 40.7070012, "lon": -73.9466252 }, + { "lat": 40.7070110, "lon": -73.9465230 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Montrose Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817176, + "bounds": { + "minlat": 40.7058880, + "minlon": -73.9429660, + "maxlat": 40.7065881, + "maxlon": -73.9356668 + }, + "nodes": [ + 42467823, + 9752594008, + 5487698320, + 9752594007, + 9752594006, + 42476791, + 9752594002, + 7191266551, + 7191266548, + 9744012655, + 42476793, + 9744012656, + 42476805, + 8229303521, + 9752593975, + 42476811 + ], + "geometry": [ + { "lat": 40.7058880, "lon": -73.9429660 }, + { "lat": 40.7058972, "lon": -73.9428699 }, + { "lat": 40.7059484, "lon": -73.9423347 }, + { "lat": 40.7060353, "lon": -73.9414253 }, + { "lat": 40.7060409, "lon": -73.9413674 }, + { "lat": 40.7060490, "lon": -73.9412820 }, + { "lat": 40.7060569, "lon": -73.9411994 }, + { "lat": 40.7060978, "lon": -73.9407713 }, + { "lat": 40.7061663, "lon": -73.9400547 }, + { "lat": 40.7061987, "lon": -73.9397119 }, + { "lat": 40.7062100, "lon": -73.9395980 }, + { "lat": 40.7062198, "lon": -73.9394939 }, + { "lat": 40.7062642, "lon": -73.9390451 }, + { "lat": 40.7065743, "lon": -73.9358110 }, + { "lat": 40.7065797, "lon": -73.9357548 }, + { "lat": 40.7065881, "lon": -73.9356668 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Boerum Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 46817177, + "bounds": { + "minlat": 40.7044708, + "minlon": -73.9490689, + "maxlat": 40.7047945, + "maxlon": -73.9488091 + }, + "nodes": [ + 42499129, + 9755373305, + 6906897196, + 9755373309, + 42499132 + ], + "geometry": [ + { "lat": 40.7047945, "lon": -73.9490689 }, + { "lat": 40.7047132, "lon": -73.9490655 }, + { "lat": 40.7046740, "lon": -73.9490473 }, + { "lat": 40.7045286, "lon": -73.9488796 }, + { "lat": 40.7044708, "lon": -73.9488091 } + ], + "tags": { + "highway": "residential", + "name": "Throop Avenue", + "name:etymology:wikidata": "Q881026", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817178, + "bounds": { + "minlat": 40.7043097, + "minlon": -73.9486201, + "maxlat": 40.7045127, + "maxlon": -73.9485600 + }, + "nodes": [ + 598033003, + 8617440644, + 9983521623, + 598033005 + ], + "geometry": [ + { "lat": 40.7043097, "lon": -73.9486201 }, + { "lat": 40.7043840, "lon": -73.9486160 }, + { "lat": 40.7044418, "lon": -73.9485909 }, + { "lat": 40.7045127, "lon": -73.9485600 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817179, + "bounds": { + "minlat": 40.7069210, + "minlon": -73.9547765, + "maxlat": 40.7069798, + "maxlon": -73.9541273 + }, + "nodes": [ + 42478031, + 9785858293, + 12931973737, + 12931973740, + 9785858294, + 42478029 + ], + "geometry": [ + { "lat": 40.7069210, "lon": -73.9541273 }, + { "lat": 40.7069327, "lon": -73.9541818 }, + { "lat": 40.7069368, "lon": -73.9542231 }, + { "lat": 40.7069781, "lon": -73.9546369 }, + { "lat": 40.7069798, "lon": -73.9546543 }, + { "lat": 40.7069628, "lon": -73.9547765 } + ], + "tags": { + "highway": "pedestrian", + "name": "Division Avenue" + } +}, +{ + "type": "way", + "id": 46817180, + "bounds": { + "minlat": 40.7054390, + "minlon": -73.9563370, + "maxlat": 40.7066761, + "maxlon": -73.9544241 + }, + "nodes": [ + 42491439, + 6245642043, + 9772859219, + 42482174 + ], + "geometry": [ + { "lat": 40.7066761, "lon": -73.9544241 }, + { "lat": 40.7066228, "lon": -73.9545017 }, + { "lat": 40.7054877, "lon": -73.9562613 }, + { "lat": 40.7054390, "lon": -73.9563370 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Hooper Street", + "name:etymology:wikidata": "Q1345669", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hooper", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46817182, + "bounds": { + "minlat": 40.7083663, + "minlon": -73.9532127, + "maxlat": 40.7108889, + "maxlon": -73.9516717 + }, + "nodes": [ + 42491478, + 9967927282, + 9967927281, + 8842929742, + 9955210475, + 42491468, + 9955210474, + 9985973859, + 42491462, + 9985973858, + 9985973836, + 42474156, + 9985973835, + 9755373466, + 42491456 + ], + "geometry": [ + { "lat": 40.7108889, "lon": -73.9516718 }, + { "lat": 40.7108553, "lon": -73.9516717 }, + { "lat": 40.7108333, "lon": -73.9516765 }, + { "lat": 40.7108091, "lon": -73.9516840 }, + { "lat": 40.7103955, "lon": -73.9519315 }, + { "lat": 40.7103360, "lon": -73.9519680 }, + { "lat": 40.7102829, "lon": -73.9520016 }, + { "lat": 40.7097782, "lon": -73.9523207 }, + { "lat": 40.7097160, "lon": -73.9523600 }, + { "lat": 40.7096617, "lon": -73.9523944 }, + { "lat": 40.7090346, "lon": -73.9527916 }, + { "lat": 40.7089740, "lon": -73.9528300 }, + { "lat": 40.7089198, "lon": -73.9528641 }, + { "lat": 40.7084136, "lon": -73.9531829 }, + { "lat": 40.7083663, "lon": -73.9532127 } + ], + "tags": { + "highway": "residential", + "name": "Hooper Street", + "name:etymology:wikidata": "Q1345669", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817183, + "bounds": { + "minlat": 40.7065847, + "minlon": -73.9509467, + "maxlat": 40.7066530, + "maxlon": -73.9504060 + }, + "nodes": [ + 42514959, + 9755373442, + 598033006 + ], + "geometry": [ + { "lat": 40.7066530, "lon": -73.9504060 }, + { "lat": 40.7066351, "lon": -73.9505479 }, + { "lat": 40.7065847, "lon": -73.9509467 } + ], + "tags": { + "alt_name": "Montrose Avenue", + "cycleway:both": "no", + "highway": "residential", + "name": "New Montrose Avenue", + "oneway": "yes", + "sidewalk": "separate", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817184, + "bounds": { + "minlat": 40.7079300, + "minlon": -73.9575985, + "maxlat": 40.7079726, + "maxlon": -73.9572295 + }, + "nodes": [ + 598033008, + 598033007 + ], + "geometry": [ + { "lat": 40.7079300, "lon": -73.9572295 }, + { "lat": 40.7079726, "lon": -73.9575985 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "South 9th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "9th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46817185, + "bounds": { + "minlat": 40.7070403, + "minlon": -73.9582979, + "maxlat": 40.7072447, + "maxlon": -73.9581364 + }, + "nodes": [ + 598033009, + 6235394765, + 9351682792 + ], + "geometry": [ + { "lat": 40.7070403, "lon": -73.9581364 }, + { "lat": 40.7071742, "lon": -73.9582507 }, + { "lat": 40.7072447, "lon": -73.9582979 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11216", + "tiger:zip_right": "11216" + } +}, +{ + "type": "way", + "id": 46817186, + "bounds": { + "minlat": 40.7068208, + "minlon": -73.9581364, + "maxlat": 40.7070403, + "maxlon": -73.9578924 + }, + "nodes": [ + 598033010, + 598033009 + ], + "geometry": [ + { "lat": 40.7068208, "lon": -73.9578924 }, + { "lat": 40.7070403, "lon": -73.9581364 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "maxspeed": "25 mph", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11216", + "tiger:zip_right": "11216" + } +}, +{ + "type": "way", + "id": 46817187, + "bounds": { + "minlat": 40.7071141, + "minlon": -73.9570820, + "maxlat": 40.7071415, + "maxlon": -73.9567168 + }, + "nodes": [ + 42478023, + 6338023993, + 42478025 + ], + "geometry": [ + { "lat": 40.7071415, "lon": -73.9570820 }, + { "lat": 40.7071370, "lon": -73.9570220 }, + { "lat": 40.7071141, "lon": -73.9567168 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Division Avenue", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Division", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46817189, + "bounds": { + "minlat": 40.7071895, + "minlon": -73.9580271, + "maxlat": 40.7072178, + "maxlon": -73.9576788 + }, + "nodes": [ + 598033016, + 598033013 + ], + "geometry": [ + { "lat": 40.7072178, "lon": -73.9580271 }, + { "lat": 40.7071895, "lon": -73.9576788 } + ], + "tags": { + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "maxspeed": "25 mph", + "name": "Division Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Division", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46817191, + "bounds": { + "minlat": 40.7091686, + "minlon": -73.9685018, + "maxlat": 40.7100398, + "maxlon": -73.9608366 + }, + "nodes": [ + 42501318, + 2782255533, + 9779538283, + 42501316, + 9779538281, + 9779538265, + 42501314, + 9779538267, + 7397166301, + 9779538184, + 42501312, + 9785653039, + 9785653045, + 42501307, + 9785653043, + 9785653017, + 9785616616, + 42469451 + ], + "geometry": [ + { "lat": 40.7091686, "lon": -73.9608366 }, + { "lat": 40.7091836, "lon": -73.9609697 }, + { "lat": 40.7093429, "lon": -73.9623356 }, + { "lat": 40.7093520, "lon": -73.9624140 }, + { "lat": 40.7093618, "lon": -73.9625007 }, + { "lat": 40.7095241, "lon": -73.9639396 }, + { "lat": 40.7095340, "lon": -73.9640270 }, + { "lat": 40.7095455, "lon": -73.9641288 }, + { "lat": 40.7096307, "lon": -73.9648801 }, + { "lat": 40.7097075, "lon": -73.9655575 }, + { "lat": 40.7097170, "lon": -73.9656410 }, + { "lat": 40.7097282, "lon": -73.9657403 }, + { "lat": 40.7098558, "lon": -73.9668777 }, + { "lat": 40.7098650, "lon": -73.9669490 }, + { "lat": 40.7098751, "lon": -73.9670390 }, + { "lat": 40.7100282, "lon": -73.9683989 }, + { "lat": 40.7100326, "lon": -73.9684375 }, + { "lat": 40.7100398, "lon": -73.9685018 } + ], + "tags": { + "highway": "residential", + "name": "South 8th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "8th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46817192, + "bounds": { + "minlat": 40.7080169, + "minlon": -73.9570147, + "maxlat": 40.7081152, + "maxlon": -73.9567281 + }, + "nodes": [ + 598033017, + 9776829397, + 42505402 + ], + "geometry": [ + { "lat": 40.7081152, "lon": -73.9570147 }, + { "lat": 40.7080426, "lon": -73.9568032 }, + { "lat": 40.7080169, "lon": -73.9567281 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 46817193, + "bounds": { + "minlat": 40.7081152, + "minlon": -73.9575086, + "maxlat": 40.7082844, + "maxlon": -73.9570147 + }, + "nodes": [ + 598033018, + 11155188001, + 598033017 + ], + "geometry": [ + { "lat": 40.7082844, "lon": -73.9575086 }, + { "lat": 40.7082836, "lon": -73.9575063 }, + { "lat": 40.7081152, "lon": -73.9570147 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "primary", + "layer": "1", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 46817194, + "bounds": { + "minlat": 40.7078892, + "minlon": -73.9572295, + "maxlat": 40.7079300, + "maxlon": -73.9568937 + }, + "nodes": [ + 11055055718, + 9776829396, + 598033008 + ], + "geometry": [ + { "lat": 40.7078892, "lon": -73.9568937 }, + { "lat": 40.7078903, "lon": -73.9569019 }, + { "lat": 40.7079300, "lon": -73.9572295 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "South 9th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "9th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46817196, + "bounds": { + "minlat": 40.7096403, + "minlon": -73.9570586, + "maxlat": 40.7097744, + "maxlon": -73.9566649 + }, + "nodes": [ + 480213827, + 9767625314, + 42482424 + ], + "geometry": [ + { "lat": 40.7096403, "lon": -73.9566649 }, + { "lat": 40.7097562, "lon": -73.9569915 }, + { "lat": 40.7097744, "lon": -73.9570586 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "residential", + "name": "South 4th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46817197, + "bounds": { + "minlat": 40.7086740, + "minlon": -73.9566473, + "maxlat": 40.7087915, + "maxlon": -73.9563050 + }, + "nodes": [ + 598033023, + 9768167591, + 42514949 + ], + "geometry": [ + { "lat": 40.7087915, "lon": -73.9566473 }, + { "lat": 40.7086999, "lon": -73.9563818 }, + { "lat": 40.7086740, "lon": -73.9563050 } + ], + "tags": { + "check_date:surface": "2023-08-08", + "highway": "residential", + "name": "South 5th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46817198, + "bounds": { + "minlat": 40.7087915, + "minlon": -73.9570987, + "maxlat": 40.7089464, + "maxlon": -73.9566473 + }, + "nodes": [ + 598033024, + 598033023 + ], + "geometry": [ + { "lat": 40.7089464, "lon": -73.9570987 }, + { "lat": 40.7087915, "lon": -73.9566473 } + ], + "tags": { + "bridge": "yes", + "cycleway:both": "no", + "highway": "residential", + "layer": "1", + "name": "South 5th Street", + "oneway": "yes", + "parking:lane:both": "parallel", + "parking:lane:both:parallel": "on_street", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46817199, + "bounds": { + "minlat": 40.7079726, + "minlon": -73.9581520, + "maxlat": 40.7080410, + "maxlon": -73.9575985 + }, + "nodes": [ + 598033007, + 9776829358, + 42474674 + ], + "geometry": [ + { "lat": 40.7079726, "lon": -73.9575985 }, + { "lat": 40.7080308, "lon": -73.9580696 }, + { "lat": 40.7080410, "lon": -73.9581520 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "South 9th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "9th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46817201, + "bounds": { + "minlat": 40.7100636, + "minlon": -73.9563925, + "maxlat": 40.7102847, + "maxlon": -73.9558016 + }, + "nodes": [ + 598033026, + 480214899 + ], + "geometry": [ + { "lat": 40.7102847, "lon": -73.9563925 }, + { "lat": 40.7100636, "lon": -73.9558016 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "layer": "1", + "name": "South 3rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "3rd", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46817202, + "bounds": { + "minlat": 40.7095039, + "minlon": -73.9566649, + "maxlat": 40.7096403, + "maxlon": -73.9562847 + }, + "nodes": [ + 480213833, + 480213827 + ], + "geometry": [ + { "lat": 40.7095039, "lon": -73.9562847 }, + { "lat": 40.7096403, "lon": -73.9566649 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "residential", + "layer": "1", + "name": "South 4th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46817203, + "bounds": { + "minlat": 40.7099910, + "minlon": -73.9528032, + "maxlat": 40.7107735, + "maxlon": -73.9509560 + }, + "nodes": [ + 4202609198, + 8842929745, + 4593135561, + 9967927274, + 4593135569, + 4593135568, + 9755372948, + 9755372943, + 42491468, + 9755373506, + 42504294, + 8232714835, + 9755373503, + 42504297 + ], + "geometry": [ + { "lat": 40.7107735, "lon": -73.9528032 }, + { "lat": 40.7106882, "lon": -73.9527911 }, + { "lat": 40.7106627, "lon": -73.9527847 }, + { "lat": 40.7106500, "lon": -73.9527755 }, + { "lat": 40.7106368, "lon": -73.9527629 }, + { "lat": 40.7106273, "lon": -73.9527479 }, + { "lat": 40.7103887, "lon": -73.9521105 }, + { "lat": 40.7103672, "lon": -73.9520523 }, + { "lat": 40.7103360, "lon": -73.9519680 }, + { "lat": 40.7103130, "lon": -73.9519047 }, + { "lat": 40.7101720, "lon": -73.9515160 }, + { "lat": 40.7100487, "lon": -73.9511381 }, + { "lat": 40.7100320, "lon": -73.9510855 }, + { "lat": 40.7099910, "lon": -73.9509560 } + ], + "tags": { + "highway": "residential", + "name": "South 1st Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46817211, + "bounds": { + "minlat": 40.7233101, + "minlon": -73.9389731, + "maxlat": 40.7238733, + "maxlon": -73.9377592 + }, + "nodes": [ + 598031872, + 12162675509, + 9194902745, + 9194902746, + 5943344510, + 9194902747, + 6219006696, + 12162675508, + 9194902748, + 476025195 + ], + "geometry": [ + { "lat": 40.7233101, "lon": -73.9389731 }, + { "lat": 40.7234007, "lon": -73.9388094 }, + { "lat": 40.7234641, "lon": -73.9386877 }, + { "lat": 40.7235276, "lon": -73.9385637 }, + { "lat": 40.7236012, "lon": -73.9384153 }, + { "lat": 40.7236693, "lon": -73.9382700 }, + { "lat": 40.7237258, "lon": -73.9381438 }, + { "lat": 40.7237808, "lon": -73.9380108 }, + { "lat": 40.7238231, "lon": -73.9378950 }, + { "lat": 40.7238733, "lon": -73.9377592 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "turn:lanes": "none|through;right|right" + } +}, +{ + "type": "way", + "id": 46817496, + "bounds": { + "minlat": 40.7010529, + "minlon": -73.9612512, + "maxlat": 40.7016127, + "maxlon": -73.9609527 + }, + "nodes": [ + 598035409, + 479715929 + ], + "geometry": [ + { "lat": 40.7010529, "lon": -73.9612512 }, + { "lat": 40.7016127, "lon": -73.9609527 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11; A11; A11; A63; A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46817497, + "bounds": { + "minlat": 40.7002632, + "minlon": -73.9612800, + "maxlat": 40.7007920, + "maxlon": -73.9605000 + }, + "nodes": [ + 42482032, + 9772858912, + 42482034 + ], + "geometry": [ + { "lat": 40.7002632, "lon": -73.9612800 }, + { "lat": 40.7007475, "lon": -73.9605656 }, + { "lat": 40.7007920, "lon": -73.9605000 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Penn Street", + "name:etymology:wikidata": "Q530037", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Penn", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46817498, + "bounds": { + "minlat": 40.7000924, + "minlon": -73.9616663, + "maxlat": 40.7010529, + "maxlon": -73.9612512 + }, + "nodes": [ + 479715926, + 598035409 + ], + "geometry": [ + { "lat": 40.7000924, "lon": -73.9616663 }, + { "lat": 40.7010529, "lon": -73.9612512 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11; A11; A11; A63; A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46817499, + "bounds": { + "minlat": 40.6997752, + "minlon": -73.9617950, + "maxlat": 40.7000924, + "maxlon": -73.9616663 + }, + "nodes": [ + 479715925, + 479715926 + ], + "geometry": [ + { "lat": 40.6997752, "lon": -73.9617950 }, + { "lat": 40.7000924, "lon": -73.9616663 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11; A11; A11; A63; A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46817500, + "bounds": { + "minlat": 40.6998565, + "minlon": -73.9619345, + "maxlat": 40.7001575, + "maxlon": -73.9618165 + }, + "nodes": [ + 479715820, + 479715821 + ], + "geometry": [ + { "lat": 40.7001575, "lon": -73.9618165 }, + { "lat": 40.6998565, "lon": -73.9619345 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11; A11; A63; A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46817504, + "bounds": { + "minlat": 40.7011632, + "minlon": -73.9613605, + "maxlat": 40.7017144, + "maxlon": -73.9610615 + }, + "nodes": [ + 479715817, + 598035413 + ], + "geometry": [ + { "lat": 40.7017144, "lon": -73.9610615 }, + { "lat": 40.7011632, "lon": -73.9613605 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11; A11; A63; A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46817505, + "bounds": { + "minlat": 40.7001575, + "minlon": -73.9618165, + "maxlat": 40.7011632, + "maxlon": -73.9613605 + }, + "nodes": [ + 598035413, + 479715820 + ], + "geometry": [ + { "lat": 40.7011632, "lon": -73.9613605 }, + { "lat": 40.7001575, "lon": -73.9618165 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11; A11; A63; A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46817506, + "bounds": { + "minlat": 40.7016127, + "minlon": -73.9609527, + "maxlat": 40.7030693, + "maxlon": -73.9600891 + }, + "nodes": [ + 479715929, + 479715930, + 479715931 + ], + "geometry": [ + { "lat": 40.7016127, "lon": -73.9609527 }, + { "lat": 40.7019501, "lon": -73.9607686 }, + { "lat": 40.7030693, "lon": -73.9600891 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11; A11; A11; A63; A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46817507, + "bounds": { + "minlat": 40.7048381, + "minlon": -73.9672797, + "maxlat": 40.7070033, + "maxlon": -73.9663165 + }, + "nodes": [ + 42477968, + 5849350242, + 4999422827, + 8348154024, + 5849350257, + 10058693150, + 8348154026, + 10058693149, + 42487634, + 6338018558, + 2173166246, + 2173166252, + 2173166207, + 2173166160, + 4999422832, + 42506366 + ], + "geometry": [ + { "lat": 40.7070033, "lon": -73.9672797 }, + { "lat": 40.7069231, "lon": -73.9672497 }, + { "lat": 40.7065181, "lon": -73.9670973 }, + { "lat": 40.7063506, "lon": -73.9670334 }, + { "lat": 40.7063226, "lon": -73.9670227 }, + { "lat": 40.7059551, "lon": -73.9668890 }, + { "lat": 40.7058928, "lon": -73.9668663 }, + { "lat": 40.7058348, "lon": -73.9668439 }, + { "lat": 40.7055211, "lon": -73.9667229 }, + { "lat": 40.7053278, "lon": -73.9666415 }, + { "lat": 40.7051631, "lon": -73.9665770 }, + { "lat": 40.7050892, "lon": -73.9665485 }, + { "lat": 40.7050228, "lon": -73.9665121 }, + { "lat": 40.7049259, "lon": -73.9664289 }, + { "lat": 40.7049130, "lon": -73.9664106 }, + { "lat": 40.7048381, "lon": -73.9663165 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "secondary", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46817508, + "bounds": { + "minlat": 40.7037970, + "minlon": -73.9602731, + "maxlat": 40.7038916, + "maxlon": -73.9601096 + }, + "nodes": [ + 598035417, + 598035418 + ], + "geometry": [ + { "lat": 40.7037970, "lon": -73.9601096 }, + { "lat": 40.7038916, "lon": -73.9602731 } + ], + "tags": { + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 46817509, + "bounds": { + "minlat": 40.7033927, + "minlon": -73.9631045, + "maxlat": 40.7059075, + "maxlon": -73.9602916 + }, + "nodes": [ + 598035419, + 42508120, + 6235394781, + 6248573330, + 42488328, + 6235394782, + 7980929182, + 6235394778, + 42520216, + 6235394779, + 6235394773, + 42506827, + 6235394771, + 6235394774, + 42475761, + 6235394776, + 13670670131, + 6235394748, + 42514850 + ], + "geometry": [ + { "lat": 40.7033927, "lon": -73.9602916 }, + { "lat": 40.7034370, "lon": -73.9603410 }, + { "lat": 40.7034999, "lon": -73.9604077 }, + { "lat": 40.7036161, "lon": -73.9605444 }, + { "lat": 40.7036580, "lon": -73.9605910 }, + { "lat": 40.7037186, "lon": -73.9606596 }, + { "lat": 40.7038227, "lon": -73.9607745 }, + { "lat": 40.7041781, "lon": -73.9611701 }, + { "lat": 40.7042110, "lon": -73.9612070 }, + { "lat": 40.7042801, "lon": -73.9612859 }, + { "lat": 40.7047342, "lon": -73.9617958 }, + { "lat": 40.7047860, "lon": -73.9618540 }, + { "lat": 40.7048522, "lon": -73.9619285 }, + { "lat": 40.7053041, "lon": -73.9624312 }, + { "lat": 40.7053520, "lon": -73.9624850 }, + { "lat": 40.7054148, "lon": -73.9625552 }, + { "lat": 40.7057633, "lon": -73.9629466 }, + { "lat": 40.7058355, "lon": -73.9630277 }, + { "lat": 40.7059075, "lon": -73.9631045 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "yes", + "tiger:zip_left": "11226", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 46817510, + "bounds": { + "minlat": 40.7030760, + "minlon": -73.9602916, + "maxlat": 40.7033927, + "maxlon": -73.9599339 + }, + "nodes": [ + 598035420, + 12998805867, + 12998805864, + 598035419 + ], + "geometry": [ + { "lat": 40.7030760, "lon": -73.9599339 }, + { "lat": 40.7030879, "lon": -73.9599473 }, + { "lat": 40.7033830, "lon": -73.9602807 }, + { "lat": 40.7033927, "lon": -73.9602916 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "yes", + "tiger:zip_left": "11226", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 46817511, + "bounds": { + "minlat": 40.6994152, + "minlon": -73.9605000, + "maxlat": 40.7007920, + "maxlon": -73.9590040 + }, + "nodes": [ + 42482034, + 9772858911, + 9772859024, + 42506427, + 9772859026, + 9772859070, + 42477573, + 9772859068, + 7176145505, + 9772859056, + 7722348499 + ], + "geometry": [ + { "lat": 40.7007920, "lon": -73.9605000 }, + { "lat": 40.7007490, "lon": -73.9604514 }, + { "lat": 40.7002902, "lon": -73.9599325 }, + { "lat": 40.7002350, "lon": -73.9598700 }, + { "lat": 40.7001864, "lon": -73.9598158 }, + { "lat": 40.6997280, "lon": -73.9593049 }, + { "lat": 40.6996680, "lon": -73.9592380 }, + { "lat": 40.6996213, "lon": -73.9591838 }, + { "lat": 40.6995072, "lon": -73.9590513 }, + { "lat": 40.6994916, "lon": -73.9590433 }, + { "lat": 40.6994152, "lon": -73.9590040 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 46817512, + "bounds": { + "minlat": 40.7048392, + "minlon": -73.9592625, + "maxlat": 40.7051153, + "maxlon": -73.9589535 + }, + "nodes": [ + 598035421, + 598035422 + ], + "geometry": [ + { "lat": 40.7051153, "lon": -73.9592625 }, + { "lat": 40.7048392, "lon": -73.9589535 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "secondary", + "layer": "1", + "name": "Lee Avenue", + "name:etymology:wikidata": "Q725907; Q709825", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Lee", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 46817513, + "bounds": { + "minlat": 40.7002063, + "minlon": -73.9550910, + "maxlat": 40.7013820, + "maxlon": -73.9538934 + }, + "nodes": [ + 42522394, + 9755372070, + 13670908131, + 9755373245, + 42519630, + 9755373246, + 5368768993, + 5368768987, + 42492065 + ], + "geometry": [ + { "lat": 40.7013820, "lon": -73.9550910 }, + { "lat": 40.7013310, "lon": -73.9550341 }, + { "lat": 40.7011134, "lon": -73.9547916 }, + { "lat": 40.7008774, "lon": -73.9545284 }, + { "lat": 40.7008160, "lon": -73.9544600 }, + { "lat": 40.7007607, "lon": -73.9543997 }, + { "lat": 40.7004702, "lon": -73.9540828 }, + { "lat": 40.7002801, "lon": -73.9539527 }, + { "lat": 40.7002063, "lon": -73.9538934 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Lee Avenue", + "name:etymology:wikidata": "Q725907; Q709825", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Lee", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 46817514, + "bounds": { + "minlat": 40.7049451, + "minlon": -73.9587590, + "maxlat": 40.7050273, + "maxlon": -73.9586106 + }, + "nodes": [ + 598035423, + 598035424 + ], + "geometry": [ + { "lat": 40.7049451, "lon": -73.9586106 }, + { "lat": 40.7050273, "lon": -73.9587590 } + ], + "tags": { + "highway": "unclassified", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46817515, + "bounds": { + "minlat": 40.7034211, + "minlon": -73.9596305, + "maxlat": 40.7034901, + "maxlon": -73.9594408 + }, + "nodes": [ + 598035425, + 9772858979, + 598035426 + ], + "geometry": [ + { "lat": 40.7034901, "lon": -73.9596305 }, + { "lat": 40.7034697, "lon": -73.9595744 }, + { "lat": 40.7034211, "lon": -73.9594408 } + ], + "tags": { + "highway": "residential", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no" + } +}, +{ + "type": "way", + "id": 46817518, + "bounds": { + "minlat": 40.7042110, + "minlon": -73.9612070, + "maxlat": 40.7053320, + "maxlon": -73.9595090 + }, + "nodes": [ + 42520740, + 9776829225, + 6235394780, + 42520216 + ], + "geometry": [ + { "lat": 40.7053320, "lon": -73.9595090 }, + { "lat": 40.7052866, "lon": -73.9595777 }, + { "lat": 40.7042633, "lon": -73.9611272 }, + { "lat": 40.7042110, "lon": -73.9612070 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_left_1": "11211", + "tiger:zip_right": "11211", + "tiger:zip_right_1": "11211" + } +}, +{ + "type": "way", + "id": 46818896, + "bounds": { + "minlat": 40.7140639, + "minlon": -73.9529575, + "maxlat": 40.7140649, + "maxlon": -73.9528538 + }, + "nodes": [ + 42476485, + 6116989028 + ], + "geometry": [ + { "lat": 40.7140639, "lon": -73.9528538 }, + { "lat": 40.7140649, "lon": -73.9529575 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Metropolitan Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Metropolitan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes:backward": "left|through", + "turn:lanes:forward": "left|through", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 46818899, + "bounds": { + "minlat": 40.7068627, + "minlon": -73.9571244, + "maxlat": 40.7071141, + "maxlon": -73.9567168 + }, + "nodes": [ + 42520698, + 9785910741, + 8617429470, + 6338023995, + 42478025 + ], + "geometry": [ + { "lat": 40.7068627, "lon": -73.9571244 }, + { "lat": 40.7068985, "lon": -73.9570407 }, + { "lat": 40.7070222, "lon": -73.9568544 }, + { "lat": 40.7070618, "lon": -73.9567937 }, + { "lat": 40.7071141, "lon": -73.9567168 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46818900, + "bounds": { + "minlat": 40.7140682, + "minlon": -73.9543400, + "maxlat": 40.7140738, + "maxlon": -73.9533670 + }, + "nodes": [ + 2089937767, + 9785615303, + 8425776224, + 4205219008, + 42482398 + ], + "geometry": [ + { "lat": 40.7140682, "lon": -73.9533670 }, + { "lat": 40.7140683, "lon": -73.9534450 }, + { "lat": 40.7140691, "lon": -73.9536401 }, + { "lat": 40.7140701, "lon": -73.9537844 }, + { "lat": 40.7140738, "lon": -73.9543400 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "name": "Metropolitan Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Metropolitan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes:forward": "left|left|through", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 46819491, + "bounds": { + "minlat": 40.6999604, + "minlon": -73.9868886, + "maxlat": 40.7001014, + "maxlon": -73.9868422 + }, + "nodes": [ + 1371803820, + 11709378744, + 370870741 + ], + "geometry": [ + { "lat": 40.6999604, "lon": -73.9868422 }, + { "lat": 40.7000211, "lon": -73.9868621 }, + { "lat": 40.7001014, "lon": -73.9868886 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Jay", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 46819492, + "bounds": { + "minlat": 40.7005263, + "minlon": -73.9857925, + "maxlat": 40.7006812, + "maxlon": -73.9855211 + }, + "nodes": [ + 559865263, + 1258945406, + 11708907053, + 559865264, + 1258945392 + ], + "geometry": [ + { "lat": 40.7006812, "lon": -73.9857925 }, + { "lat": 40.7006378, "lon": -73.9857120 }, + { "lat": 40.7005923, "lon": -73.9856299 }, + { "lat": 40.7005551, "lon": -73.9855683 }, + { "lat": 40.7005263, "lon": -73.9855211 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "turn:lanes": "none|none|right" + } +}, +{ + "type": "way", + "id": 46819493, + "bounds": { + "minlat": 40.6999656, + "minlon": -73.9853304, + "maxlat": 40.7005190, + "maxlon": -73.9846823 + }, + "nodes": [ + 598050829, + 11708944186, + 249534935, + 11708944184, + 1258945387, + 248606976 + ], + "geometry": [ + { "lat": 40.6999656, "lon": -73.9846823 }, + { "lat": 40.7000848, "lon": -73.9848140 }, + { "lat": 40.7002078, "lon": -73.9849490 }, + { "lat": 40.7003314, "lon": -73.9850911 }, + { "lat": 40.7004459, "lon": -73.9852326 }, + { "lat": 40.7005190, "lon": -73.9853304 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46819497, + "bounds": { + "minlat": 40.7005726, + "minlon": -73.9848032, + "maxlat": 40.7014478, + "maxlon": -73.9847598 + }, + "nodes": [ + 42519833, + 10722387778, + 7707712191, + 10722387785, + 42503949 + ], + "geometry": [ + { "lat": 40.7005726, "lon": -73.9848032 }, + { "lat": 40.7006693, "lon": -73.9848005 }, + { "lat": 40.7010155, "lon": -73.9847821 }, + { "lat": 40.7013777, "lon": -73.9847633 }, + { "lat": 40.7014478, "lon": -73.9847598 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bridge Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bridge", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 46819498, + "bounds": { + "minlat": 40.7005190, + "minlon": -73.9855704, + "maxlat": 40.7006740, + "maxlon": -73.9853304 + }, + "nodes": [ + 248606976, + 11708907054, + 11708907055, + 1258945528, + 248606975 + ], + "geometry": [ + { "lat": 40.7005190, "lon": -73.9853304 }, + { "lat": 40.7005457, "lon": -73.9853717 }, + { "lat": 40.7005897, "lon": -73.9854388 }, + { "lat": 40.7006388, "lon": -73.9855161 }, + { "lat": 40.7006740, "lon": -73.9855704 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46819499, + "bounds": { + "minlat": 40.7006740, + "minlon": -73.9866660, + "maxlat": 40.7010924, + "maxlon": -73.9855704 + }, + "nodes": [ + 248606975, + 11708907057, + 11708907056, + 1258945588, + 451024908, + 11708907033, + 1258945405, + 11708907032, + 451024909 + ], + "geometry": [ + { "lat": 40.7006740, "lon": -73.9855704 }, + { "lat": 40.7007350, "lon": -73.9856821 }, + { "lat": 40.7007995, "lon": -73.9858109 }, + { "lat": 40.7008702, "lon": -73.9859743 }, + { "lat": 40.7009183, "lon": -73.9860953 }, + { "lat": 40.7009807, "lon": -73.9862705 }, + { "lat": 40.7010285, "lon": -73.9864230 }, + { "lat": 40.7010664, "lon": -73.9865539 }, + { "lat": 40.7010924, "lon": -73.9866660 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46819503, + "bounds": { + "minlat": 40.7042791, + "minlon": -73.9845830, + "maxlat": 40.7043450, + "maxlon": -73.9825581 + }, + "nodes": [ + 42479470, + 10725896478, + 3469169227, + 10725896479, + 10725896480, + 3469169220, + 10725896482, + 42479465 + ], + "geometry": [ + { "lat": 40.7042791, "lon": -73.9825581 }, + { "lat": 40.7042810, "lon": -73.9826462 }, + { "lat": 40.7042829, "lon": -73.9826767 }, + { "lat": 40.7042834, "lon": -73.9826934 }, + { "lat": 40.7043411, "lon": -73.9844612 }, + { "lat": 40.7043415, "lon": -73.9844734 }, + { "lat": 40.7043441, "lon": -73.9845166 }, + { "lat": 40.7043450, "lon": -73.9845830 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "John Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "John", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 46819509, + "bounds": { + "minlat": 40.7022320, + "minlon": -73.9811750, + "maxlat": 40.7029090, + "maxlon": -73.9811240 + }, + "nodes": [ + 42469364, + 10004163947, + 42500011 + ], + "geometry": [ + { "lat": 40.7029090, "lon": -73.9811240 }, + { "lat": 40.7022996, "lon": -73.9811694 }, + { "lat": 40.7022320, "lon": -73.9811750 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "Hudson Avenue", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 46819510, + "bounds": { + "minlat": 40.7005935, + "minlon": -73.9858055, + "maxlat": 40.7006084, + "maxlon": -73.9853353 + }, + "nodes": [ + 11708944178, + 11708944179 + ], + "geometry": [ + { "lat": 40.7006084, "lon": -73.9858055 }, + { "lat": 40.7005935, "lon": -73.9853353 } + ], + "tags": { + "covered": "yes", + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 46819899, + "bounds": { + "minlat": 40.7008956, + "minlon": -73.9947981, + "maxlat": 40.7016895, + "maxlon": -73.9923486 + }, + "nodes": [ + 451019492, + 11679066093, + 451019488, + 1258945630, + 1258945432, + 451019485, + 1258945481, + 1258945565, + 451019483, + 1258945537, + 11679066100, + 451019479, + 11679066104, + 11679066102, + 451019476, + 451019471 + ], + "geometry": [ + { "lat": 40.7016895, "lon": -73.9923486 }, + { "lat": 40.7016785, "lon": -73.9924365 }, + { "lat": 40.7016610, "lon": -73.9925608 }, + { "lat": 40.7016377, "lon": -73.9927003 }, + { "lat": 40.7016042, "lon": -73.9928645 }, + { "lat": 40.7015767, "lon": -73.9929909 }, + { "lat": 40.7015362, "lon": -73.9931503 }, + { "lat": 40.7014909, "lon": -73.9933192 }, + { "lat": 40.7014262, "lon": -73.9935243 }, + { "lat": 40.7013687, "lon": -73.9937038 }, + { "lat": 40.7013152, "lon": -73.9938578 }, + { "lat": 40.7012734, "lon": -73.9939737 }, + { "lat": 40.7012171, "lon": -73.9941185 }, + { "lat": 40.7011726, "lon": -73.9942219 }, + { "lat": 40.7010797, "lon": -73.9944237 }, + { "lat": 40.7008956, "lon": -73.9947981 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxheight": "12'4\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46819900, + "bounds": { + "minlat": 40.7016895, + "minlon": -73.9923486, + "maxlat": 40.7017141, + "maxlon": -73.9918938 + }, + "nodes": [ + 451019495, + 1258945442, + 11673036951, + 1258945390, + 451019492 + ], + "geometry": [ + { "lat": 40.7017141, "lon": -73.9918938 }, + { "lat": 40.7017114, "lon": -73.9919847 }, + { "lat": 40.7017074, "lon": -73.9921024 }, + { "lat": 40.7017005, "lon": -73.9922263 }, + { "lat": 40.7016895, "lon": -73.9923486 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxheight": "12'4\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46819901, + "bounds": { + "minlat": 40.7016537, + "minlon": -73.9922950, + "maxlat": 40.7016769, + "maxlon": -73.9918472 + }, + "nodes": [ + 451074820, + 1258945510, + 1258945584, + 451074830 + ], + "geometry": [ + { "lat": 40.7016537, "lon": -73.9922950 }, + { "lat": 40.7016665, "lon": -73.9921387 }, + { "lat": 40.7016735, "lon": -73.9919868 }, + { "lat": 40.7016769, "lon": -73.9918472 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxheight": "12'9\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_base_2": "Gowanus", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46819902, + "bounds": { + "minlat": 40.7015925, + "minlon": -73.9910449, + "maxlat": 40.7016562, + "maxlon": -73.9904507 + }, + "nodes": [ + 11673008219, + 451074843, + 1258945428, + 11673036963, + 598054698 + ], + "geometry": [ + { "lat": 40.7016562, "lon": -73.9910449 }, + { "lat": 40.7016466, "lon": -73.9909458 }, + { "lat": 40.7016288, "lon": -73.9907686 }, + { "lat": 40.7016098, "lon": -73.9906072 }, + { "lat": 40.7015925, "lon": -73.9904507 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "none|none|Brooklyn Bridge", + "embankment": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxheight": "12'9\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_base_2": "Gowanus", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 46819903, + "bounds": { + "minlat": 40.7011511, + "minlon": -73.9874963, + "maxlat": 40.7012265, + "maxlon": -73.9869749 + }, + "nodes": [ + 11679066080, + 11679066078, + 1258945541, + 11679066077 + ], + "geometry": [ + { "lat": 40.7011511, "lon": -73.9869749 }, + { "lat": 40.7011719, "lon": -73.9871093 }, + { "lat": 40.7011932, "lon": -73.9872677 }, + { "lat": 40.7012265, "lon": -73.9874963 } + ], + "tags": { + "bicycle": "no", + "covered": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46819904, + "bounds": { + "minlat": 40.7010924, + "minlon": -73.9868854, + "maxlat": 40.7011349, + "maxlon": -73.9866660 + }, + "nodes": [ + 451024909, + 1258945604, + 598054700 + ], + "geometry": [ + { "lat": 40.7010924, "lon": -73.9866660 }, + { "lat": 40.7011150, "lon": -73.9867762 }, + { "lat": 40.7011349, "lon": -73.9868854 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46819912, + "bounds": { + "minlat": 40.7015058, + "minlon": -73.9904507, + "maxlat": 40.7015925, + "maxlon": -73.9898044 + }, + "nodes": [ + 598054698, + 11673036966, + 11673036962 + ], + "geometry": [ + { "lat": 40.7015925, "lon": -73.9904507 }, + { "lat": 40.7015440, "lon": -73.9900618 }, + { "lat": 40.7015058, "lon": -73.9898044 } + ], + "tags": { + "bicycle": "no", + "embankment": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxheight": "12'9\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46819914, + "bounds": { + "minlat": 40.7030542, + "minlon": -73.9942499, + "maxlat": 40.7033504, + "maxlon": -73.9939226 + }, + "nodes": [ + 42469325, + 11678027555, + 6720137599, + 999184452, + 8262934769, + 11678027483 + ], + "geometry": [ + { "lat": 40.7033504, "lon": -73.9939226 }, + { "lat": 40.7033371, "lon": -73.9939545 }, + { "lat": 40.7033214, "lon": -73.9939744 }, + { "lat": 40.7031781, "lon": -73.9941249 }, + { "lat": 40.7030636, "lon": -73.9942415 }, + { "lat": 40.7030542, "lon": -73.9942499 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Water Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 46819916, + "bounds": { + "minlat": 40.7017593, + "minlon": -73.9931642, + "maxlat": 40.7018653, + "maxlon": -73.9927692 + }, + "nodes": [ + 42483440, + 10245966637, + 42469596 + ], + "geometry": [ + { "lat": 40.7017593, "lon": -73.9927692 }, + { "lat": 40.7017876, "lon": -73.9928817 }, + { "lat": 40.7018653, "lon": -73.9931642 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Doughty Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Doughty", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 46819917, + "bounds": { + "minlat": 40.7012734, + "minlon": -73.9885323, + "maxlat": 40.7013872, + "maxlon": -73.9878006 + }, + "nodes": [ + 598054748, + 598054737 + ], + "geometry": [ + { "lat": 40.7012734, "lon": -73.9878006 }, + { "lat": 40.7013872, "lon": -73.9885323 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46819924, + "bounds": { + "minlat": 40.7042290, + "minlon": -73.9825581, + "maxlat": 40.7042791, + "maxlon": -73.9810200 + }, + "nodes": [ + 42479472, + 42479470 + ], + "geometry": [ + { "lat": 40.7042290, "lon": -73.9810200 }, + { "lat": 40.7042791, "lon": -73.9825581 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "John Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "John", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46819926, + "bounds": { + "minlat": 40.6999335, + "minlon": -73.9863910, + "maxlat": 40.7002118, + "maxlon": -73.9862546 + }, + "nodes": [ + 494509169, + 11709378755, + 11709378756, + 3413665527, + 11709378757, + 3413665526 + ], + "geometry": [ + { "lat": 40.7002118, "lon": -73.9863910 }, + { "lat": 40.7000365, "lon": -73.9862942 }, + { "lat": 40.7000106, "lon": -73.9862818 }, + { "lat": 40.6999850, "lon": -73.9862711 }, + { "lat": 40.6999580, "lon": -73.9862612 }, + { "lat": 40.6999335, "lon": -73.9862546 } + ], + "tags": { + "cycleway:both": "no", + "destination": "Brooklyn-Queens Expressway", + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:county": "Kings, NY", + "tiger:name_type": "St", + "turn:lanes": "left|left" + } +}, +{ + "type": "way", + "id": 46820145, + "bounds": { + "minlat": 40.6999911, + "minlon": -73.9877858, + "maxlat": 40.7000967, + "maxlon": -73.9877775 + }, + "nodes": [ + 370870738, + 598050852 + ], + "geometry": [ + { "lat": 40.7000967, "lon": -73.9877775 }, + { "lat": 40.6999911, "lon": -73.9877858 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Pearl Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46835368, + "bounds": { + "minlat": 40.7008538, + "minlon": -73.9951308, + "maxlat": 40.7021044, + "maxlon": -73.9945344 + }, + "nodes": [ + 42502396, + 11731003801, + 42486077, + 11731003804, + 10043160450 + ], + "geometry": [ + { "lat": 40.7008538, "lon": -73.9951308 }, + { "lat": 40.7019055, "lon": -73.9946292 }, + { "lat": 40.7019516, "lon": -73.9946073 }, + { "lat": 40.7019989, "lon": -73.9945847 }, + { "lat": 40.7021044, "lon": -73.9945344 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Columbia Heights", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Columbia Heights:Everit", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 46835369, + "bounds": { + "minlat": 40.7004309, + "minlon": -73.9953295, + "maxlat": 40.7008538, + "maxlon": -73.9951308 + }, + "nodes": [ + 598202958, + 10737091578, + 11686402203, + 42502396 + ], + "geometry": [ + { "lat": 40.7004309, "lon": -73.9953295 }, + { "lat": 40.7007523, "lon": -73.9951778 }, + { "lat": 40.7007734, "lon": -73.9951680 }, + { "lat": 40.7008538, "lon": -73.9951308 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "15 mph", + "name": "Columbia Heights", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Columbia Heights:Everit", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 46835370, + "bounds": { + "minlat": 40.6981282, + "minlon": -73.9954632, + "maxlat": 40.7007295, + "maxlon": -73.9942250 + }, + "nodes": [ + 42502400, + 10739408390, + 10739408345, + 42513257, + 10739408344, + 10745443919, + 42513259, + 10745443918, + 10745369503, + 42513265, + 10745369502, + 8620160030, + 10745443961, + 42513270 + ], + "geometry": [ + { "lat": 40.7007295, "lon": -73.9942250 }, + { "lat": 40.7006778, "lon": -73.9942499 }, + { "lat": 40.7001260, "lon": -73.9945129 }, + { "lat": 40.7000754, "lon": -73.9945372 }, + { "lat": 40.7000249, "lon": -73.9945612 }, + { "lat": 40.6994842, "lon": -73.9948183 }, + { "lat": 40.6994249, "lon": -73.9948465 }, + { "lat": 40.6993821, "lon": -73.9948669 }, + { "lat": 40.6988310, "lon": -73.9951290 }, + { "lat": 40.6987735, "lon": -73.9951564 }, + { "lat": 40.6987252, "lon": -73.9951794 }, + { "lat": 40.6982096, "lon": -73.9954245 }, + { "lat": 40.6981723, "lon": -73.9954416 }, + { "lat": 40.6981282, "lon": -73.9954632 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Willow Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Willow", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 46835371, + "bounds": { + "minlat": 40.7004856, + "minlon": -73.9942250, + "maxlat": 40.7007295, + "maxlon": -73.9933589 + }, + "nodes": [ + 42483453, + 7097820977, + 10739408391, + 42502400 + ], + "geometry": [ + { "lat": 40.7004856, "lon": -73.9933589 }, + { "lat": 40.7005068, "lon": -73.9934400 }, + { "lat": 40.7007104, "lon": -73.9941500 }, + { "lat": 40.7007295, "lon": -73.9942250 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Middagh Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Middagh", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 46863444, + "bounds": { + "minlat": 40.7104981, + "minlon": -73.9595330, + "maxlat": 40.7114240, + "maxlon": -73.9570508 + }, + "nodes": [ + 42474131, + 6248588475, + 9768177732, + 42474135, + 9768177730, + 8617429454, + 9768177689, + 479847987 + ], + "geometry": [ + { "lat": 40.7114240, "lon": -73.9595330 }, + { "lat": 40.7113947, "lon": -73.9594379 }, + { "lat": 40.7108945, "lon": -73.9580864 }, + { "lat": 40.7108640, "lon": -73.9580030 }, + { "lat": 40.7108383, "lon": -73.9579361 }, + { "lat": 40.7105518, "lon": -73.9571905 }, + { "lat": 40.7105275, "lon": -73.9571303 }, + { "lat": 40.7104981, "lon": -73.9570508 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "residential", + "name": "South 3rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "3rd", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46863448, + "bounds": { + "minlat": 40.7099130, + "minlon": -73.9622778, + "maxlat": 40.7113599, + "maxlon": -73.9614138 + }, + "nodes": [ + 42509273, + 9767625363, + 6338024011, + 42509277, + 4726244601, + 8842464613, + 10053847477, + 6338024008, + 42505389 + ], + "geometry": [ + { "lat": 40.7113599, "lon": -73.9614138 }, + { "lat": 40.7113004, "lon": -73.9614519 }, + { "lat": 40.7108199, "lon": -73.9617579 }, + { "lat": 40.7107667, "lon": -73.9617922 }, + { "lat": 40.7107184, "lon": -73.9618212 }, + { "lat": 40.7107143, "lon": -73.9618238 }, + { "lat": 40.7106859, "lon": -73.9618412 }, + { "lat": 40.7099962, "lon": -73.9622476 }, + { "lat": 40.7099130, "lon": -73.9622778 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "residential", + "name": "Driggs Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Driggs", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46863451, + "bounds": { + "minlat": 40.7076850, + "minlon": -73.9627430, + "maxlat": 40.7099130, + "maxlon": -73.9622778 + }, + "nodes": [ + 42505389, + 2782255544, + 9779538282, + 42501316, + 9779538280, + 9779538333, + 42474668, + 9779538331, + 6338023996, + 42477980 + ], + "geometry": [ + { "lat": 40.7099130, "lon": -73.9622778 }, + { "lat": 40.7098392, "lon": -73.9623034 }, + { "lat": 40.7094120, "lon": -73.9624030 }, + { "lat": 40.7093520, "lon": -73.9624140 }, + { "lat": 40.7092931, "lon": -73.9624255 }, + { "lat": 40.7086044, "lon": -73.9625595 }, + { "lat": 40.7085350, "lon": -73.9625730 }, + { "lat": 40.7084827, "lon": -73.9625835 }, + { "lat": 40.7077655, "lon": -73.9627269 }, + { "lat": 40.7076850, "lon": -73.9627430 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Driggs Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Driggs", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46863464, + "bounds": { + "minlat": 40.7326577, + "minlon": -73.9428354, + "maxlat": 40.7327947, + "maxlon": -73.9428072 + }, + "nodes": [ + 622232010, + 6235394705, + 42495908 + ], + "geometry": [ + { "lat": 40.7326577, "lon": -73.9428072 }, + { "lat": 40.7327634, "lon": -73.9428291 }, + { "lat": 40.7327947, "lon": -73.9428354 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "name_1": "Grandparents Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46863471, + "bounds": { + "minlat": 40.7277500, + "minlon": -73.9427774, + "maxlat": 40.7325135, + "maxlon": -73.9419920 + }, + "nodes": [ + 42495899, + 6235394702, + 7154267996, + 7203597812, + 10187694039, + 7644831038, + 7644831022, + 42495902, + 11659083338, + 7644831026, + 3430733406, + 13515590858 + ], + "geometry": [ + { "lat": 40.7277500, "lon": -73.9419920 }, + { "lat": 40.7278373, "lon": -73.9420064 }, + { "lat": 40.7292822, "lon": -73.9422423 }, + { "lat": 40.7295747, "lon": -73.9422914 }, + { "lat": 40.7302780, "lon": -73.9424096 }, + { "lat": 40.7302881, "lon": -73.9424113 }, + { "lat": 40.7306185, "lon": -73.9424668 }, + { "lat": 40.7309020, "lon": -73.9425144 }, + { "lat": 40.7315369, "lon": -73.9426099 }, + { "lat": 40.7315765, "lon": -73.9426159 }, + { "lat": 40.7322322, "lon": -73.9427296 }, + { "lat": 40.7325135, "lon": -73.9427774 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "name_1": "Grandparents Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46863475, + "bounds": { + "minlat": 40.7141127, + "minlon": -73.9269260, + "maxlat": 40.7154010, + "maxlon": -73.9263646 + }, + "nodes": [ + 1275778479, + 5423609565, + 8676803838, + 13287694866, + 8676803822, + 10840566513, + 42509758 + ], + "geometry": [ + { "lat": 40.7141127, "lon": -73.9263646 }, + { "lat": 40.7142009, "lon": -73.9264041 }, + { "lat": 40.7146402, "lon": -73.9265925 }, + { "lat": 40.7148887, "lon": -73.9267014 }, + { "lat": 40.7151676, "lon": -73.9268237 }, + { "lat": 40.7153431, "lon": -73.9269006 }, + { "lat": 40.7154010, "lon": -73.9269260 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Gardner Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46863477, + "bounds": { + "minlat": 40.7339983, + "minlon": -73.9521783, + "maxlat": 40.7342235, + "maxlon": -73.9498117 + }, + "nodes": [ + 2987758904, + 8097082866, + 9920934964, + 8097025081, + 8097082847, + 42499740 + ], + "geometry": [ + { "lat": 40.7339983, "lon": -73.9521783 }, + { "lat": 40.7340076, "lon": -73.9520849 }, + { "lat": 40.7341397, "lon": -73.9506981 }, + { "lat": 40.7342109, "lon": -73.9499425 }, + { "lat": 40.7342153, "lon": -73.9498955 }, + { "lat": 40.7342235, "lon": -73.9498117 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Green Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46863479, + "bounds": { + "minlat": 40.7362842, + "minlon": -73.9502067, + "maxlat": 40.7367175, + "maxlon": -73.9487085 + }, + "nodes": [ + 42469151, + 42469155, + 4593135585, + 2473603044 + ], + "geometry": [ + { "lat": 40.7367175, "lon": -73.9502067 }, + { "lat": 40.7363061, "lon": -73.9488881 }, + { "lat": 40.7362880, "lon": -73.9488100 }, + { "lat": 40.7362842, "lon": -73.9487085 } + ], + "tags": { + "highway": "unclassified", + "name": "Paidge Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46863480, + "bounds": { + "minlat": 40.7378918, + "minlon": -73.9555960, + "maxlat": 40.7387854, + "maxlon": -73.9553999 + }, + "nodes": [ + 2473602890, + 9996409587, + 9996409588, + 9996409589, + 9996409590, + 9996409586, + 42492086, + 9996409578, + 9996409579, + 8097025092, + 9996409580, + 9996409581, + 2473602889 + ], + "geometry": [ + { "lat": 40.7387854, "lon": -73.9554177 }, + { "lat": 40.7387257, "lon": -73.9554056 }, + { "lat": 40.7386966, "lon": -73.9554012 }, + { "lat": 40.7386686, "lon": -73.9553999 }, + { "lat": 40.7386424, "lon": -73.9554030 }, + { "lat": 40.7386062, "lon": -73.9554127 }, + { "lat": 40.7379995, "lon": -73.9555947 }, + { "lat": 40.7379874, "lon": -73.9555959 }, + { "lat": 40.7379708, "lon": -73.9555960 }, + { "lat": 40.7379507, "lon": -73.9555921 }, + { "lat": 40.7379344, "lon": -73.9555862 }, + { "lat": 40.7379126, "lon": -73.9555737 }, + { "lat": 40.7378918, "lon": -73.9555591 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Manhattan", + "tiger:name_type": "Ave", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 46863496, + "bounds": { + "minlat": 40.7302057, + "minlon": -73.9544971, + "maxlat": 40.7316233, + "maxlon": -73.9542532 + }, + "nodes": [ + 42514448, + 6235394721, + 2592331365, + 11229826571, + 8097159431, + 42493355, + 8097159383, + 9996409584, + 8097159406, + 42501788 + ], + "geometry": [ + { "lat": 40.7302057, "lon": -73.9542532 }, + { "lat": 40.7302800, "lon": -73.9542745 }, + { "lat": 40.7303404, "lon": -73.9542885 }, + { "lat": 40.7304402, "lon": -73.9543047 }, + { "lat": 40.7308450, "lon": -73.9543706 }, + { "lat": 40.7309123, "lon": -73.9543818 }, + { "lat": 40.7309733, "lon": -73.9543929 }, + { "lat": 40.7315311, "lon": -73.9544805 }, + { "lat": 40.7315581, "lon": -73.9544849 }, + { "lat": 40.7316233, "lon": -73.9544971 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Manhattan", + "tiger:name_type": "Ave", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 46863502, + "bounds": { + "minlat": 40.7144986, + "minlon": -73.9647139, + "maxlat": 40.7175079, + "maxlon": -73.9575340 + }, + "nodes": [ + 42469489, + 9779538080, + 9779538055, + 42484164, + 9779538054, + 9779538041, + 42484167, + 9779538039, + 5749607908, + 9779533108, + 42484171, + 9779533106, + 3583866038, + 598031717, + 6248588461, + 42484180, + 6248588460, + 9785615253, + 42484186 + ], + "geometry": [ + { "lat": 40.7175079, "lon": -73.9647139 }, + { "lat": 40.7174748, "lon": -73.9646550 }, + { "lat": 40.7168084, "lon": -73.9634683 }, + { "lat": 40.7167650, "lon": -73.9633910 }, + { "lat": 40.7167318, "lon": -73.9633321 }, + { "lat": 40.7159714, "lon": -73.9619854 }, + { "lat": 40.7159300, "lon": -73.9619120 }, + { "lat": 40.7158982, "lon": -73.9618526 }, + { "lat": 40.7158056, "lon": -73.9616809 }, + { "lat": 40.7153394, "lon": -73.9605193 }, + { "lat": 40.7153060, "lon": -73.9604360 }, + { "lat": 40.7152797, "lon": -73.9603654 }, + { "lat": 40.7151527, "lon": -73.9600247 }, + { "lat": 40.7150079, "lon": -73.9594742 }, + { "lat": 40.7148504, "lon": -73.9588945 }, + { "lat": 40.7148331, "lon": -73.9588018 }, + { "lat": 40.7148178, "lon": -73.9587230 }, + { "lat": 40.7145308, "lon": -73.9576609 }, + { "lat": 40.7144986, "lon": -73.9575340 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Metropolitan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 46863514, + "bounds": { + "minlat": 40.7133022, + "minlon": -73.9583281, + "maxlat": 40.7144986, + "maxlon": -73.9575340 + }, + "nodes": [ + 42484186, + 9785615297, + 42481938, + 42489993, + 9768177637, + 42526516 + ], + "geometry": [ + { "lat": 40.7144986, "lon": -73.9575340 }, + { "lat": 40.7144415, "lon": -73.9576372 }, + { "lat": 40.7139579, "lon": -73.9579286 }, + { "lat": 40.7137706, "lon": -73.9580415 }, + { "lat": 40.7133717, "lon": -73.9582825 }, + { "lat": 40.7133022, "lon": -73.9583281 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Roebling Street", + "name:etymology:wikidata": "Q77237", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Roebling", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 46863518, + "bounds": { + "minlat": 40.7059075, + "minlon": -73.9639395, + "maxlat": 40.7066522, + "maxlon": -73.9631045 + }, + "nodes": [ + 42514850, + 6235394750, + 6235394754, + 42520210, + 6235394753, + 9684800599 + ], + "geometry": [ + { "lat": 40.7059075, "lon": -73.9631045 }, + { "lat": 40.7059762, "lon": -73.9631831 }, + { "lat": 40.7064267, "lon": -73.9636866 }, + { "lat": 40.7064871, "lon": -73.9637541 }, + { "lat": 40.7065417, "lon": -73.9638153 }, + { "lat": 40.7066522, "lon": -73.9639395 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "yes", + "tiger:zip_left": "11226", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 46863522, + "bounds": { + "minlat": 40.7051153, + "minlon": -73.9613709, + "maxlat": 40.7070066, + "maxlon": -73.9592625 + }, + "nodes": [ + 42514854, + 6235394747, + 13670908135, + 9776829104, + 42475764, + 9776829106, + 6235394768, + 42506832, + 6235394770, + 13670908134, + 9776829224, + 42520740, + 9772858950, + 42508123, + 9776829217, + 598035421 + ], + "geometry": [ + { "lat": 40.7070066, "lon": -73.9613709 }, + { "lat": 40.7069227, "lon": -73.9612795 }, + { "lat": 40.7067848, "lon": -73.9611254 }, + { "lat": 40.7065250, "lon": -73.9608352 }, + { "lat": 40.7064640, "lon": -73.9607670 }, + { "lat": 40.7064144, "lon": -73.9607119 }, + { "lat": 40.7059581, "lon": -73.9602046 }, + { "lat": 40.7058980, "lon": -73.9601380 }, + { "lat": 40.7058477, "lon": -73.9600822 }, + { "lat": 40.7055936, "lon": -73.9597997 }, + { "lat": 40.7053894, "lon": -73.9595727 }, + { "lat": 40.7053320, "lon": -73.9595090 }, + { "lat": 40.7052404, "lon": -73.9594053 }, + { "lat": 40.7051810, "lon": -73.9593380 }, + { "lat": 40.7051286, "lon": -73.9592778 }, + { "lat": 40.7051153, "lon": -73.9592625 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Lee Avenue", + "name:etymology:wikidata": "Q725907; Q709825", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Lee", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 46863552, + "bounds": { + "minlat": 40.7025700, + "minlon": -73.9502510, + "maxlat": 40.7029400, + "maxlon": -73.9502470 + }, + "nodes": [ + 42520556, + 9755373296, + 9755373291, + 42520559 + ], + "geometry": [ + { "lat": 40.7025700, "lon": -73.9502510 }, + { "lat": 40.7026787, "lon": -73.9502498 }, + { "lat": 40.7028250, "lon": -73.9502495 }, + { "lat": 40.7029400, "lon": -73.9502470 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Union", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 46863567, + "bounds": { + "minlat": 40.7181791, + "minlon": -73.9524877, + "maxlat": 40.7191884, + "maxlon": -73.9523019 + }, + "nodes": [ + 42520612, + 13040561512, + 9939430896, + 6228178116, + 42512055, + 6228178118, + 6228178119, + 42514559 + ], + "geometry": [ + { "lat": 40.7181791, "lon": -73.9523019 }, + { "lat": 40.7182384, "lon": -73.9523122 }, + { "lat": 40.7183247, "lon": -73.9523273 }, + { "lat": 40.7187096, "lon": -73.9523721 }, + { "lat": 40.7187824, "lon": -73.9523974 }, + { "lat": 40.7188710, "lon": -73.9524302 }, + { "lat": 40.7191480, "lon": -73.9524747 }, + { "lat": 40.7191884, "lon": -73.9524877 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 46863577, + "bounds": { + "minlat": 40.7274928, + "minlon": -73.9381890, + "maxlat": 40.7281000, + "maxlon": -73.9362535 + }, + "nodes": [ + 42502778, + 42526793, + 9927149408, + 42466856 + ], + "geometry": [ + { "lat": 40.7274928, "lon": -73.9362535 }, + { "lat": 40.7277940, "lon": -73.9372430 }, + { "lat": 40.7280745, "lon": -73.9381103 }, + { "lat": 40.7281000, "lon": -73.9381890 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Bridgewater Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bridgewater", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 46863581, + "bounds": { + "minlat": 40.7275817, + "minlon": -73.9446033, + "maxlat": 40.7320876, + "maxlon": -73.9438743 + }, + "nodes": [ + 3430220604, + 9788947336, + 10187694024, + 42496823, + 42516624, + 9731450872, + 9788947360, + 42523808 + ], + "geometry": [ + { "lat": 40.7320876, "lon": -73.9446033 }, + { "lat": 40.7319870, "lon": -73.9446027 }, + { "lat": 40.7315928, "lon": -73.9445400 }, + { "lat": 40.7306806, "lon": -73.9443846 }, + { "lat": 40.7294420, "lon": -73.9441860 }, + { "lat": 40.7276971, "lon": -73.9438937 }, + { "lat": 40.7276533, "lon": -73.9438864 }, + { "lat": 40.7275817, "lon": -73.9438743 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "maxspeed": "25 mph", + "name": "North Henry Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46863584, + "bounds": { + "minlat": 40.7320876, + "minlon": -73.9449735, + "maxlat": 40.7343678, + "maxlon": -73.9446033 + }, + "nodes": [ + 3430220604, + 8097025067, + 3430220628, + 3430220671, + 3430220666, + 3430220634, + 3430220640, + 3430220657, + 3430220663 + ], + "geometry": [ + { "lat": 40.7320876, "lon": -73.9446033 }, + { "lat": 40.7321842, "lon": -73.9446073 }, + { "lat": 40.7321991, "lon": -73.9446078 }, + { "lat": 40.7330588, "lon": -73.9447480 }, + { "lat": 40.7336147, "lon": -73.9448437 }, + { "lat": 40.7337457, "lon": -73.9448663 }, + { "lat": 40.7338728, "lon": -73.9448882 }, + { "lat": 40.7339239, "lon": -73.9448970 }, + { "lat": 40.7343678, "lon": -73.9449735 } + ], + "tags": { + "access": "no", + "highway": "service", + "name": "North Henry Street" + } +}, +{ + "type": "way", + "id": 46863591, + "bounds": { + "minlat": 40.7275817, + "minlon": -73.9438743, + "maxlat": 40.7276682, + "maxlon": -73.9429430 + }, + "nodes": [ + 42523808, + 9927149414, + 9788947375, + 42517892 + ], + "geometry": [ + { "lat": 40.7275817, "lon": -73.9438743 }, + { "lat": 40.7275890, "lon": -73.9437960 }, + { "lat": 40.7276596, "lon": -73.9430351 }, + { "lat": 40.7276682, "lon": -73.9429430 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "name": "Norman Avenue", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46863596, + "bounds": { + "minlat": 40.7248208, + "minlon": -73.9367886, + "maxlat": 40.7259070, + "maxlon": -73.9353980 + }, + "nodes": [ + 42476680, + 9789356922, + 9765073782, + 9789356977, + 9789356970, + 8896031715 + ], + "geometry": [ + { "lat": 40.7259070, "lon": -73.9353980 }, + { "lat": 40.7258586, "lon": -73.9354604 }, + { "lat": 40.7250759, "lon": -73.9364690 }, + { "lat": 40.7249813, "lon": -73.9365910 }, + { "lat": 40.7249495, "lon": -73.9366318 }, + { "lat": 40.7248208, "lon": -73.9367886 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Meeker Avenue", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46863598, + "bounds": { + "minlat": 40.7244078, + "minlon": -73.9344680, + "maxlat": 40.7247866, + "maxlon": -73.9328855 + }, + "nodes": [ + 42505318, + 9937797962, + 9937797974, + 9937797956, + 9765199823, + 42505320 + ], + "geometry": [ + { "lat": 40.7244078, "lon": -73.9344680 }, + { "lat": 40.7244329, "lon": -73.9343632 }, + { "lat": 40.7244462, "lon": -73.9343075 }, + { "lat": 40.7247529, "lon": -73.9330262 }, + { "lat": 40.7247659, "lon": -73.9329718 }, + { "lat": 40.7247866, "lon": -73.9328855 } + ], + "tags": { + "highway": "unclassified", + "name": "Cherry Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46863621, + "bounds": { + "minlat": 40.7364773, + "minlon": -73.9581648, + "maxlat": 40.7371418, + "maxlon": -73.9569305 + }, + "nodes": [ + 10170251943, + 13701067343, + 13020223608, + 2991742350, + 2991742352, + 10602887355, + 42472251 + ], + "geometry": [ + { "lat": 40.7364773, "lon": -73.9581648 }, + { "lat": 40.7366011, "lon": -73.9579379 }, + { "lat": 40.7367315, "lon": -73.9576990 }, + { "lat": 40.7368548, "lon": -73.9574702 }, + { "lat": 40.7370681, "lon": -73.9570733 }, + { "lat": 40.7371303, "lon": -73.9569634 }, + { "lat": 40.7371418, "lon": -73.9569305 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Commercial Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Commercial", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 46863736, + "bounds": { + "minlat": 40.7018963, + "minlon": -73.9811895, + "maxlat": 40.7022320, + "maxlon": -73.9811750 + }, + "nodes": [ + 42500011, + 13352211468, + 598050842 + ], + "geometry": [ + { "lat": 40.7022320, "lon": -73.9811750 }, + { "lat": 40.7021713, "lon": -73.9811776 }, + { "lat": 40.7018963, "lon": -73.9811895 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "Hudson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 46863794, + "bounds": { + "minlat": 40.7029109, + "minlon": -73.9946996, + "maxlat": 40.7029842, + "maxlon": -73.9943695 + }, + "nodes": [ + 42469320, + 3552719649, + 11674209496, + 11674209497, + 3174844136, + 11674209498, + 42493375 + ], + "geometry": [ + { "lat": 40.7029109, "lon": -73.9943695 }, + { "lat": 40.7029475, "lon": -73.9944673 }, + { "lat": 40.7029657, "lon": -73.9945313 }, + { "lat": 40.7029789, "lon": -73.9945902 }, + { "lat": 40.7029842, "lon": -73.9946295 }, + { "lat": 40.7029837, "lon": -73.9946673 }, + { "lat": 40.7029783, "lon": -73.9946996 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz" + } +}, +{ + "type": "way", + "id": 46863874, + "bounds": { + "minlat": 40.7024813, + "minlon": -73.9887620, + "maxlat": 40.7031724, + "maxlon": -73.9885314 + }, + "nodes": [ + 42492401, + 7259656136, + 250451628, + 1329106711, + 42469341 + ], + "geometry": [ + { "lat": 40.7024813, "lon": -73.9885559 }, + { "lat": 40.7025445, "lon": -73.9885434 }, + { "lat": 40.7027956, "lon": -73.9885314 }, + { "lat": 40.7030107, "lon": -73.9886641 }, + { "lat": 40.7031724, "lon": -73.9887620 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "hgv": "no", + "highway": "residential", + "lcn": "yes", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Adams Street", + "name:etymology:wikidata": "Q11806", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Adams", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 46869119, + "bounds": { + "minlat": 40.7228930, + "minlon": -73.9138630, + "maxlat": 40.7230820, + "maxlon": -73.9131700 + }, + "nodes": [ + 42854200, + 42854204 + ], + "geometry": [ + { "lat": 40.7228930, "lon": -73.9138630 }, + { "lat": 40.7230820, "lon": -73.9131700 } + ], + "tags": { + "highway": "secondary", + "name": "Maspeth Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Maspeth", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 46869120, + "bounds": { + "minlat": 40.7277330, + "minlon": -73.9067300, + "maxlat": 40.7285828, + "maxlon": -73.9056373 + }, + "nodes": [ + 42801650, + 10203936738, + 7824472482, + 9196051120, + 9196051121, + 42786771, + 5118652113 + ], + "geometry": [ + { "lat": 40.7277330, "lon": -73.9067300 }, + { "lat": 40.7277936, "lon": -73.9066506 }, + { "lat": 40.7279890, "lon": -73.9063999 }, + { "lat": 40.7283300, "lon": -73.9059564 }, + { "lat": 40.7284782, "lon": -73.9057741 }, + { "lat": 40.7285269, "lon": -73.9057083 }, + { "lat": 40.7285828, "lon": -73.9056373 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Maurice Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 46869135, + "bounds": { + "minlat": 40.7708878, + "minlon": -73.9081920, + "maxlat": 40.7743639, + "maxlon": -73.9032654 + }, + "nodes": [ + 9776150624, + 10901389041, + 9776150637, + 42874640, + 9776150633, + 10764679316, + 42874636, + 10764679314, + 9847967563, + 42874631, + 9847967684, + 9236643614, + 42874628, + 9236657427, + 10225266833, + 9776150540, + 42841790, + 9776150544, + 9776150553, + 42874625, + 9776150556, + 9694280291, + 42874622 + ], + "geometry": [ + { "lat": 40.7708878, "lon": -73.9032654 }, + { "lat": 40.7710476, "lon": -73.9034928 }, + { "lat": 40.7712900, "lon": -73.9038377 }, + { "lat": 40.7713361, "lon": -73.9039032 }, + { "lat": 40.7713852, "lon": -73.9039760 }, + { "lat": 40.7717915, "lon": -73.9045499 }, + { "lat": 40.7718453, "lon": -73.9046259 }, + { "lat": 40.7718902, "lon": -73.9046896 }, + { "lat": 40.7722933, "lon": -73.9052617 }, + { "lat": 40.7723439, "lon": -73.9053335 }, + { "lat": 40.7723912, "lon": -73.9054001 }, + { "lat": 40.7728065, "lon": -73.9059846 }, + { "lat": 40.7728594, "lon": -73.9060591 }, + { "lat": 40.7729170, "lon": -73.9061413 }, + { "lat": 40.7731017, "lon": -73.9064048 }, + { "lat": 40.7733230, "lon": -73.9067205 }, + { "lat": 40.7733709, "lon": -73.9067888 }, + { "lat": 40.7734214, "lon": -73.9068612 }, + { "lat": 40.7738277, "lon": -73.9074324 }, + { "lat": 40.7738673, "lon": -73.9074884 }, + { "lat": 40.7739108, "lon": -73.9075500 }, + { "lat": 40.7743141, "lon": -73.9081214 }, + { "lat": 40.7743639, "lon": -73.9081920 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Ditmars Boulevard", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt", + "wikidata": "Q5283685", + "wikipedia": "en:Ditmars Boulevard" + } +}, +{ + "type": "way", + "id": 46869146, + "bounds": { + "minlat": 40.7784650, + "minlon": -73.9124546, + "maxlat": 40.7840652, + "maxlon": -73.9045273 + }, + "nodes": [ + 42825956, + 7833236359, + 2307002078, + 42920817, + 2307002074, + 42861213, + 42818466, + 5127233082, + 42913619, + 7833232128, + 5127233084, + 42872001, + 5127233086, + 7833232159, + 42817443, + 7833232144, + 5127233090, + 7833232141, + 42833255, + 7833232121, + 7779193108, + 3778345281, + 3778345287, + 7779193092, + 7780463546, + 7447030309, + 42922402, + 3778372571, + 42866616 + ], + "geometry": [ + { "lat": 40.7840652, "lon": -73.9124546 }, + { "lat": 40.7839860, "lon": -73.9123456 }, + { "lat": 40.7836764, "lon": -73.9119191 }, + { "lat": 40.7833411, "lon": -73.9114390 }, + { "lat": 40.7831001, "lon": -73.9110974 }, + { "lat": 40.7828566, "lon": -73.9107522 }, + { "lat": 40.7823649, "lon": -73.9100552 }, + { "lat": 40.7821136, "lon": -73.9096990 }, + { "lat": 40.7818808, "lon": -73.9093690 }, + { "lat": 40.7818475, "lon": -73.9093218 }, + { "lat": 40.7816389, "lon": -73.9090260 }, + { "lat": 40.7814000, "lon": -73.9086873 }, + { "lat": 40.7811487, "lon": -73.9083312 }, + { "lat": 40.7809587, "lon": -73.9080619 }, + { "lat": 40.7809214, "lon": -73.9080089 }, + { "lat": 40.7808775, "lon": -73.9079466 }, + { "lat": 40.7806869, "lon": -73.9076765 }, + { "lat": 40.7804775, "lon": -73.9073797 }, + { "lat": 40.7804263, "lon": -73.9073071 }, + { "lat": 40.7803941, "lon": -73.9072614 }, + { "lat": 40.7798112, "lon": -73.9064348 }, + { "lat": 40.7797666, "lon": -73.9063717 }, + { "lat": 40.7796789, "lon": -73.9062477 }, + { "lat": 40.7796443, "lon": -73.9061986 }, + { "lat": 40.7793092, "lon": -73.9057196 }, + { "lat": 40.7792273, "lon": -73.9056025 }, + { "lat": 40.7789604, "lon": -73.9052344 }, + { "lat": 40.7787089, "lon": -73.9048727 }, + { "lat": 40.7784650, "lon": -73.9045273 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "20th Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "20th", + "tiger:name_type": "Ave", + "tiger:zip_left": "11105", + "tiger:zip_right": "11105" + } +}, +{ + "type": "way", + "id": 46869147, + "bounds": { + "minlat": 40.7723846, + "minlon": -73.9328462, + "maxlat": 40.7727141, + "maxlon": -73.9326803 + }, + "nodes": [ + 42926712, + 11308871002, + 7745197940 + ], + "geometry": [ + { "lat": 40.7727141, "lon": -73.9326803 }, + { "lat": 40.7726391, "lon": -73.9327181 }, + { "lat": 40.7723846, "lon": -73.9328462 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "8th Street" + } +}, +{ + "type": "way", + "id": 46869150, + "bounds": { + "minlat": 40.7386004, + "minlon": -73.9272434, + "maxlat": 40.7432136, + "maxlon": -73.9263194 + }, + "nodes": [ + 5482367306, + 5482367308, + 5482367290, + 10081023597, + 10081023598, + 42860603, + 10081023600, + 10081023601, + 8316786961, + 7986647162, + 13121217254, + 10081023599, + 42880308, + 10083107649, + 10774439538, + 10774439544, + 10084797149, + 42896812 + ], + "geometry": [ + { "lat": 40.7432136, "lon": -73.9263194 }, + { "lat": 40.7430384, "lon": -73.9263540 }, + { "lat": 40.7424979, "lon": -73.9264628 }, + { "lat": 40.7421517, "lon": -73.9265323 }, + { "lat": 40.7421082, "lon": -73.9265414 }, + { "lat": 40.7420266, "lon": -73.9265588 }, + { "lat": 40.7419483, "lon": -73.9265742 }, + { "lat": 40.7419151, "lon": -73.9265809 }, + { "lat": 40.7413050, "lon": -73.9267039 }, + { "lat": 40.7412488, "lon": -73.9267157 }, + { "lat": 40.7409499, "lon": -73.9267751 }, + { "lat": 40.7402605, "lon": -73.9269121 }, + { "lat": 40.7401831, "lon": -73.9269265 }, + { "lat": 40.7400955, "lon": -73.9269436 }, + { "lat": 40.7398352, "lon": -73.9269957 }, + { "lat": 40.7393220, "lon": -73.9270985 }, + { "lat": 40.7386961, "lon": -73.9272239 }, + { "lat": 40.7386004, "lon": -73.9272434 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "39th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46869152, + "bounds": { + "minlat": 40.7220397, + "minlon": -73.9205284, + "maxlat": 40.7229563, + "maxlon": -73.9165821 + }, + "nodes": [ + 5176490258, + 5827997728, + 42854182, + 42807873, + 5482425948, + 42819671, + 5482677597, + 8288388982, + 2825689926, + 5849795405, + 42854190 + ], + "geometry": [ + { "lat": 40.7229563, "lon": -73.9205284 }, + { "lat": 40.7229142, "lon": -73.9203427 }, + { "lat": 40.7227489, "lon": -73.9200563 }, + { "lat": 40.7225180, "lon": -73.9190410 }, + { "lat": 40.7224424, "lon": -73.9186898 }, + { "lat": 40.7222710, "lon": -73.9178930 }, + { "lat": 40.7222130, "lon": -73.9176268 }, + { "lat": 40.7220635, "lon": -73.9169065 }, + { "lat": 40.7220478, "lon": -73.9168308 }, + { "lat": 40.7220397, "lon": -73.9167075 }, + { "lat": 40.7220717, "lon": -73.9165821 } + ], + "tags": { + "highway": "tertiary", + "name": "Maspeth Avenue" + } +}, +{ + "type": "way", + "id": 46869153, + "bounds": { + "minlat": 40.7288894, + "minlon": -73.9195097, + "maxlat": 40.7303591, + "maxlon": -73.9189941 + }, + "nodes": [ + 42810313, + 10087637128, + 10087637126, + 42810323, + 10087637232, + 42823397 + ], + "geometry": [ + { "lat": 40.7303591, "lon": -73.9189956 }, + { "lat": 40.7302979, "lon": -73.9189941 }, + { "lat": 40.7302385, "lon": -73.9190059 }, + { "lat": 40.7301622, "lon": -73.9190281 }, + { "lat": 40.7289815, "lon": -73.9194758 }, + { "lat": 40.7288894, "lon": -73.9195097 } + ], + "tags": { + "cycleway": "lane", + "cycleway:left:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46869154, + "bounds": { + "minlat": 40.7303591, + "minlon": -73.9248355, + "maxlat": 40.7315818, + "maxlon": -73.9189956 + }, + "nodes": [ + 42810304, + 10038425613, + 10087637151, + 42810306, + 10087637150, + 10087637153, + 42810310, + 10087637155, + 5482425978, + 5482425976, + 8097303854, + 10087637122, + 42810313 + ], + "geometry": [ + { "lat": 40.7315818, "lon": -73.9248355 }, + { "lat": 40.7315611, "lon": -73.9247467 }, + { "lat": 40.7312975, "lon": -73.9235549 }, + { "lat": 40.7312777, "lon": -73.9234634 }, + { "lat": 40.7312603, "lon": -73.9233831 }, + { "lat": 40.7309891, "lon": -73.9221308 }, + { "lat": 40.7309707, "lon": -73.9220458 }, + { "lat": 40.7309513, "lon": -73.9219559 }, + { "lat": 40.7305982, "lon": -73.9202755 }, + { "lat": 40.7304361, "lon": -73.9195040 }, + { "lat": 40.7303718, "lon": -73.9191980 }, + { "lat": 40.7303596, "lon": -73.9191399 }, + { "lat": 40.7303591, "lon": -73.9189956 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "54th Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46869155, + "bounds": { + "minlat": 40.7278173, + "minlon": -73.9266137, + "maxlat": 40.7315818, + "maxlon": -73.9248355 + }, + "nodes": [ + 42810304, + 10038425615, + 13701195856, + 10693967650, + 42823457, + 10087637148, + 6863638924, + 10087637177, + 42876186, + 10087637178, + 2134456028, + 42839746, + 42900574 + ], + "geometry": [ + { "lat": 40.7315818, "lon": -73.9248355 }, + { "lat": 40.7315159, "lon": -73.9248639 }, + { "lat": 40.7310140, "lon": -73.9250994 }, + { "lat": 40.7307657, "lon": -73.9252159 }, + { "lat": 40.7303765, "lon": -73.9254043 }, + { "lat": 40.7303305, "lon": -73.9254260 }, + { "lat": 40.7290538, "lon": -73.9260286 }, + { "lat": 40.7288718, "lon": -73.9261144 }, + { "lat": 40.7287848, "lon": -73.9261565 }, + { "lat": 40.7287033, "lon": -73.9261943 }, + { "lat": 40.7279830, "lon": -73.9265300 }, + { "lat": 40.7279521, "lon": -73.9265457 }, + { "lat": 40.7278173, "lon": -73.9266137 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "43rd Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 46869157, + "bounds": { + "minlat": 40.7200480, + "minlon": -73.9235730, + "maxlat": 40.7201530, + "maxlon": -73.9231590 + }, + "nodes": [ + 5176490244, + 5482678230, + 11777349347, + 5482678232, + 11777479075, + 42923673 + ], + "geometry": [ + { "lat": 40.7201530, "lon": -73.9231590 }, + { "lat": 40.7201293, "lon": -73.9232470 }, + { "lat": 40.7201225, "lon": -73.9232743 }, + { "lat": 40.7200772, "lon": -73.9234579 }, + { "lat": 40.7200530, "lon": -73.9235533 }, + { "lat": 40.7200480, "lon": -73.9235730 } + ], + "tags": { + "highway": "residential", + "name": "58th Road" + } +}, +{ + "type": "way", + "id": 46869160, + "bounds": { + "minlat": 40.7241370, + "minlon": -73.9113450, + "maxlat": 40.7241820, + "maxlon": -73.9107590 + }, + "nodes": [ + 42902810, + 11055680680, + 7963468559, + 42825390 + ], + "geometry": [ + { "lat": 40.7241820, "lon": -73.9113450 }, + { "lat": 40.7241720, "lon": -73.9112142 }, + { "lat": 40.7241663, "lon": -73.9111400 }, + { "lat": 40.7241370, "lon": -73.9107590 } + ], + "tags": { + "highway": "residential", + "name": "56th Drive", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "56th", + "tiger:name_type": "Dr", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 47091894, + "bounds": { + "minlat": 40.7952218, + "minlon": -73.9522495, + "maxlat": 40.7953492, + "maxlon": -73.9520506 + }, + "nodes": [ + 600524220, + 4302965802, + 4302965800, + 4302965796, + 4302965791, + 600524221, + 4302965783, + 4302965780, + 4302965775, + 600524215, + 4302965762, + 4302965763, + 4302965764, + 4302965765, + 4302965766, + 4302965769, + 4302965771, + 600524223, + 4302965776, + 4302965781, + 4302965782, + 4302965786, + 4302965789, + 4302965794, + 4302965799, + 4302965803, + 4302965809, + 600524227, + 4302965821, + 4302965823, + 4302965835, + 4302965839, + 600524228, + 4302965844, + 4302965828, + 4302965832, + 4302965831, + 4302965827, + 4302965824, + 4302965822, + 4302965820, + 4302965816, + 600524237, + 4302965813, + 4302965810, + 600524220 + ], + "geometry": [ + { "lat": 40.7952930, "lon": -73.9522495 }, + { "lat": 40.7952900, "lon": -73.9522278 }, + { "lat": 40.7952850, "lon": -73.9522269 }, + { "lat": 40.7952798, "lon": -73.9522207 }, + { "lat": 40.7952704, "lon": -73.9522115 }, + { "lat": 40.7952617, "lon": -73.9522028 }, + { "lat": 40.7952561, "lon": -73.9521924 }, + { "lat": 40.7952494, "lon": -73.9521734 }, + { "lat": 40.7952428, "lon": -73.9521556 }, + { "lat": 40.7952235, "lon": -73.9521595 }, + { "lat": 40.7952218, "lon": -73.9521389 }, + { "lat": 40.7952221, "lon": -73.9521273 }, + { "lat": 40.7952230, "lon": -73.9521166 }, + { "lat": 40.7952245, "lon": -73.9521106 }, + { "lat": 40.7952267, "lon": -73.9521040 }, + { "lat": 40.7952295, "lon": -73.9520943 }, + { "lat": 40.7952330, "lon": -73.9520881 }, + { "lat": 40.7952380, "lon": -73.9520812 }, + { "lat": 40.7952434, "lon": -73.9520727 }, + { "lat": 40.7952497, "lon": -73.9520659 }, + { "lat": 40.7952549, "lon": -73.9520618 }, + { "lat": 40.7952619, "lon": -73.9520564 }, + { "lat": 40.7952685, "lon": -73.9520536 }, + { "lat": 40.7952752, "lon": -73.9520519 }, + { "lat": 40.7952847, "lon": -73.9520506 }, + { "lat": 40.7952913, "lon": -73.9520509 }, + { "lat": 40.7953015, "lon": -73.9520541 }, + { "lat": 40.7953147, "lon": -73.9520603 }, + { "lat": 40.7953212, "lon": -73.9520648 }, + { "lat": 40.7953269, "lon": -73.9520710 }, + { "lat": 40.7953339, "lon": -73.9520802 }, + { "lat": 40.7953417, "lon": -73.9520939 }, + { "lat": 40.7953490, "lon": -73.9521202 }, + { "lat": 40.7953492, "lon": -73.9521291 }, + { "lat": 40.7953299, "lon": -73.9521348 }, + { "lat": 40.7953313, "lon": -73.9521492 }, + { "lat": 40.7953307, "lon": -73.9521569 }, + { "lat": 40.7953292, "lon": -73.9521672 }, + { "lat": 40.7953273, "lon": -73.9521811 }, + { "lat": 40.7953249, "lon": -73.9521895 }, + { "lat": 40.7953191, "lon": -73.9522023 }, + { "lat": 40.7953123, "lon": -73.9522179 }, + { "lat": 40.7953077, "lon": -73.9522230 }, + { "lat": 40.7953094, "lon": -73.9522456 }, + { "lat": 40.7953026, "lon": -73.9522479 }, + { "lat": 40.7952930, "lon": -73.9522495 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "historic": "fort", + "lit": "yes", + "memorial:conflict": "War_of_1812", + "name": "Fort Clinton", + "name:be": "Форт Клінтан", + "name:en": "Fort Clinton", + "name:pl": "Fort Clinton", + "name:ru": "Форт Клинтон", + "start_date": "1814", + "tourism": "attraction", + "war_memorial": "yes", + "website": "https://www.centralparknyc.org/locations/fort-clinton", + "wikidata": "Q5470941", + "wikipedia": "en:Fort Clinton (Central Park)" + } +}, +{ + "type": "way", + "id": 47795999, + "bounds": { + "minlat": 40.7717854, + "minlon": -73.9792016, + "maxlat": 40.7724211, + "maxlon": -73.9787387 + }, + "nodes": [ + 7802856365, + 7784826678, + 7802856360, + 7802856352 + ], + "geometry": [ + { "lat": 40.7717854, "lon": -73.9792016 }, + { "lat": 40.7718463, "lon": -73.9791558 }, + { "lat": 40.7723598, "lon": -73.9787826 }, + { "lat": 40.7724211, "lon": -73.9787387 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:lane:right": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 47796089, + "bounds": { + "minlat": 40.8012375, + "minlon": -73.9576916, + "maxlat": 40.8018566, + "maxlon": -73.9572369 + }, + "nodes": [ + 42435743, + 10171241033, + 11296200777, + 42435746 + ], + "geometry": [ + { "lat": 40.8012375, "lon": -73.9576916 }, + { "lat": 40.8012958, "lon": -73.9576489 }, + { "lat": 40.8018038, "lon": -73.9572745 }, + { "lat": 40.8018566, "lon": -73.9572369 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 47796374, + "bounds": { + "minlat": 40.7011309, + "minlon": -74.0138826, + "maxlat": 40.7013961, + "maxlon": -74.0137468 + }, + "nodes": [ + 11013387830, + 1805328738, + 11013387831, + 1805328745, + 1805328748, + 11013387828, + 11013387837, + 4024142486, + 11013387829, + 1805328780 + ], + "geometry": [ + { "lat": 40.7011309, "lon": -74.0137813 }, + { "lat": 40.7011470, "lon": -74.0137624 }, + { "lat": 40.7011633, "lon": -74.0137503 }, + { "lat": 40.7011813, "lon": -74.0137468 }, + { "lat": 40.7012119, "lon": -74.0137540 }, + { "lat": 40.7012520, "lon": -74.0137771 }, + { "lat": 40.7012761, "lon": -74.0137939 }, + { "lat": 40.7013061, "lon": -74.0138148 }, + { "lat": 40.7013368, "lon": -74.0138357 }, + { "lat": 40.7013961, "lon": -74.0138826 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Peter Minuit Plaza", + "name:etymology:wikidata": "Q312889", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 47796510, + "bounds": { + "minlat": 40.7148947, + "minlon": -73.9777493, + "maxlat": 40.7149705, + "maxlon": -73.9775558 + }, + "nodes": [ + 4375208207, + 8310245628, + 42435556 + ], + "geometry": [ + { "lat": 40.7149705, "lon": -73.9777493 }, + { "lat": 40.7149292, "lon": -73.9776244 }, + { "lat": 40.7148947, "lon": -73.9775558 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "parking:lane:right": "no_parking", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 47796678, + "bounds": { + "minlat": 40.7367697, + "minlon": -73.9744597, + "maxlat": 40.7371759, + "maxlon": -73.9741861 + }, + "nodes": [ + 42458017, + 9913607186, + 42437872, + 9141034818, + 589100164 + ], + "geometry": [ + { "lat": 40.7367697, "lon": -73.9744597 }, + { "lat": 40.7367883, "lon": -73.9744501 }, + { "lat": 40.7368573, "lon": -73.9744052 }, + { "lat": 40.7371088, "lon": -73.9742262 }, + { "lat": 40.7371759, "lon": -73.9741861 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxheight": "12'1\"", + "maxspeed": "25 mph", + "name": "Waterside Plaza", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|through;right" + } +}, +{ + "type": "way", + "id": 47796685, + "bounds": { + "minlat": 40.7389932, + "minlon": -73.9729309, + "maxlat": 40.7399483, + "maxlon": -73.9726293 + }, + "nodes": [ + 42458034, + 42458036, + 42458049, + 9141029090, + 589100171, + 9141029091, + 9141029094, + 9141029095, + 9141029093, + 9141029096, + 9141029092, + 9141029097, + 4412043536, + 42457940 + ], + "geometry": [ + { "lat": 40.7389932, "lon": -73.9729309 }, + { "lat": 40.7390912, "lon": -73.9728876 }, + { "lat": 40.7392241, "lon": -73.9728389 }, + { "lat": 40.7395318, "lon": -73.9727327 }, + { "lat": 40.7396036, "lon": -73.9727002 }, + { "lat": 40.7397148, "lon": -73.9726457 }, + { "lat": 40.7397361, "lon": -73.9726375 }, + { "lat": 40.7397569, "lon": -73.9726312 }, + { "lat": 40.7397724, "lon": -73.9726294 }, + { "lat": 40.7397940, "lon": -73.9726293 }, + { "lat": 40.7398144, "lon": -73.9726354 }, + { "lat": 40.7398425, "lon": -73.9726495 }, + { "lat": 40.7398754, "lon": -73.9726707 }, + { "lat": 40.7399483, "lon": -73.9727291 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "Fdr Drive Service Road East", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 47798749, + "bounds": { + "minlat": 40.7593080, + "minlon": -73.9441670, + "maxlat": 40.7615662, + "maxlon": -73.9427264 + }, + "nodes": [ + 5538983367, + 9915217283, + 5538983366, + 42815748, + 5714280489, + 5538983365, + 9915217284, + 9915217285, + 9915217286, + 42826820 + ], + "geometry": [ + { "lat": 40.7615662, "lon": -73.9427264 }, + { "lat": 40.7613459, "lon": -73.9428766 }, + { "lat": 40.7608999, "lon": -73.9431537 }, + { "lat": 40.7606580, "lon": -73.9433040 }, + { "lat": 40.7602373, "lon": -73.9435730 }, + { "lat": 40.7595755, "lon": -73.9439801 }, + { "lat": 40.7594493, "lon": -73.9440616 }, + { "lat": 40.7594030, "lon": -73.9440920 }, + { "lat": 40.7593524, "lon": -73.9441301 }, + { "lat": 40.7593080, "lon": -73.9441670 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lit": "yes", + "name": "Vernon Boulevard", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 47798911, + "bounds": { + "minlat": 40.7714419, + "minlon": -73.9341029, + "maxlat": 40.7720210, + "maxlon": -73.9333198 + }, + "nodes": [ + 607955129, + 42826960, + 2073751521, + 276016725, + 2073751524, + 276016609, + 12044698821, + 2459401730, + 42824399 + ], + "geometry": [ + { "lat": 40.7714419, "lon": -73.9341029 }, + { "lat": 40.7717385, "lon": -73.9340002 }, + { "lat": 40.7718480, "lon": -73.9339197 }, + { "lat": 40.7719198, "lon": -73.9338201 }, + { "lat": 40.7719787, "lon": -73.9336934 }, + { "lat": 40.7720065, "lon": -73.9335587 }, + { "lat": 40.7720137, "lon": -73.9334564 }, + { "lat": 40.7720184, "lon": -73.9333886 }, + { "lat": 40.7720210, "lon": -73.9333198 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "name": "Vernon Boulevard" + } +}, +{ + "type": "way", + "id": 47844975, + "bounds": { + "minlat": 40.8783047, + "minlon": -73.9096780, + "maxlat": 40.8795150, + "maxlon": -73.9080206 + }, + "nodes": [ + 42746772, + 10868090804, + 13068319286, + 42735471, + 13068319293, + 7048096537, + 13068269730, + 42746777 + ], + "geometry": [ + { "lat": 40.8783047, "lon": -73.9080206 }, + { "lat": 40.8783628, "lon": -73.9081088 }, + { "lat": 40.8789380, "lon": -73.9089669 }, + { "lat": 40.8789790, "lon": -73.9090280 }, + { "lat": 40.8790289, "lon": -73.9090865 }, + { "lat": 40.8791911, "lon": -73.9092852 }, + { "lat": 40.8794658, "lon": -73.9096171 }, + { "lat": 40.8795150, "lon": -73.9096780 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "foot": "yes", + "highway": "secondary", + "inline_skates": "yes", + "lane_markings": "yes", + "lcn": "yes", + "name": "West 230th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 47845011, + "bounds": { + "minlat": 40.8795150, + "minlon": -73.9096780, + "maxlat": 40.8808190, + "maxlon": -73.9083990 + }, + "nodes": [ + 42757968, + 10132643590, + 1581436709, + 1581436696, + 7048096545, + 10132643584, + 42746777 + ], + "geometry": [ + { "lat": 40.8808190, "lon": -73.9083990 }, + { "lat": 40.8807507, "lon": -73.9084660 }, + { "lat": 40.8804476, "lon": -73.9087633 }, + { "lat": 40.8800355, "lon": -73.9091675 }, + { "lat": 40.8797482, "lon": -73.9094493 }, + { "lat": 40.8795911, "lon": -73.9096040 }, + { "lat": 40.8795150, "lon": -73.9096780 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "foot": "yes", + "highway": "residential", + "inline_skates": "yes", + "lane_markings": "no", + "lcn": "yes", + "name": "Tibbett Avenue", + "name:etymology:wikidata": "Q28186791", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tibbett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 47845025, + "bounds": { + "minlat": 40.8698770, + "minlon": -73.9208970, + "maxlat": 40.8709736, + "maxlon": -73.9192577 + }, + "nodes": [ + 42458728, + 9561229732, + 8153243808, + 8153243815, + 42429946 + ], + "geometry": [ + { "lat": 40.8698770, "lon": -73.9208970 }, + { "lat": 40.8699439, "lon": -73.9207968 }, + { "lat": 40.8703419, "lon": -73.9202015 }, + { "lat": 40.8707291, "lon": -73.9196222 }, + { "lat": 40.8709736, "lon": -73.9192577 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "foot": "yes", + "highway": "tertiary", + "inline_skates": "yes", + "maxspeed": "20 mph", + "name": "Seaman Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Seaman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 47845042, + "bounds": { + "minlat": 40.8714790, + "minlon": -73.9185640, + "maxlat": 40.8724990, + "maxlon": -73.9171760 + }, + "nodes": [ + 42454538, + 9561209103, + 9561209098, + 42429708 + ], + "geometry": [ + { "lat": 40.8714790, "lon": -73.9185640 }, + { "lat": 40.8715211, "lon": -73.9185068 }, + { "lat": 40.8724403, "lon": -73.9172559 }, + { "lat": 40.8724990, "lon": -73.9171760 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "foot": "yes", + "highway": "tertiary", + "inline_skates": "yes", + "maxspeed": "20 mph", + "name": "Seaman Avenue", + "segregated": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Seaman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 47845066, + "bounds": { + "minlat": 40.8712160, + "minlon": -73.9142504, + "maxlat": 40.8712707, + "maxlon": -73.9141154 + }, + "nodes": [ + 1544809885, + 9561126015 + ], + "geometry": [ + { "lat": 40.8712160, "lon": -73.9141154 }, + { "lat": 40.8712707, "lon": -73.9142504 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "West 218th Street", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "218th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034" + } +}, +{ + "type": "way", + "id": 47973171, + "bounds": { + "minlat": 40.8733323, + "minlon": -74.0126746, + "maxlat": 40.8734009, + "maxlon": -74.0126474 + }, + "nodes": [ + 103162978, + 6592337635 + ], + "geometry": [ + { "lat": 40.8733323, "lon": -74.0126746 }, + { "lat": 40.8734009, "lon": -74.0126474 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 47973173, + "bounds": { + "minlat": 40.8724470, + "minlon": -74.0070400, + "maxlat": 40.8744971, + "maxlon": -74.0063642 + }, + "nodes": [ + 567269867, + 10940833282, + 10940833244, + 10940833217, + 10940833280, + 103288399, + 10940833247, + 103288397, + 103288395, + 10940833271, + 103288393, + 10940833274, + 103288391, + 103288387, + 9803107717 + ], + "geometry": [ + { "lat": 40.8724470, "lon": -74.0068299 }, + { "lat": 40.8728225, "lon": -74.0069633 }, + { "lat": 40.8728741, "lon": -74.0069828 }, + { "lat": 40.8729247, "lon": -74.0070017 }, + { "lat": 40.8729823, "lon": -74.0070189 }, + { "lat": 40.8730428, "lon": -74.0070315 }, + { "lat": 40.8730973, "lon": -74.0070384 }, + { "lat": 40.8731633, "lon": -74.0070400 }, + { "lat": 40.8732242, "lon": -74.0070354 }, + { "lat": 40.8732847, "lon": -74.0070222 }, + { "lat": 40.8733402, "lon": -74.0070033 }, + { "lat": 40.8733940, "lon": -74.0069775 }, + { "lat": 40.8743191, "lon": -74.0064787 }, + { "lat": 40.8744264, "lon": -74.0064080 }, + { "lat": 40.8744971, "lon": -74.0063642 } + ], + "tags": { + "highway": "residential", + "name": "Frank W Burr Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Frank W Burr", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 47973174, + "bounds": { + "minlat": 40.8602126, + "minlon": -74.0112603, + "maxlat": 40.8640666, + "maxlon": -74.0106390 + }, + "nodes": [ + 13751654231, + 13762277527, + 298562033, + 13762277528, + 13762277529, + 10938641158, + 13762277530, + 298562032, + 10938598289, + 10938598284, + 298562036, + 13762277531, + 13762277532, + 13762277533, + 13762277534, + 298562037, + 298562094, + 10938641157, + 298562214, + 10938641107, + 298562066, + 10938641134, + 298562067, + 298562068, + 10938641121, + 298562069, + 298562096, + 298562215, + 10938598297, + 298562216 + ], + "geometry": [ + { "lat": 40.8602126, "lon": -74.0112603 }, + { "lat": 40.8603435, "lon": -74.0112480 }, + { "lat": 40.8604868, "lon": -74.0112377 }, + { "lat": 40.8606219, "lon": -74.0112307 }, + { "lat": 40.8607596, "lon": -74.0112251 }, + { "lat": 40.8608978, "lon": -74.0112218 }, + { "lat": 40.8610358, "lon": -74.0112204 }, + { "lat": 40.8611051, "lon": -74.0112200 }, + { "lat": 40.8613061, "lon": -74.0112195 }, + { "lat": 40.8614472, "lon": -74.0112220 }, + { "lat": 40.8615849, "lon": -74.0112257 }, + { "lat": 40.8617202, "lon": -74.0112288 }, + { "lat": 40.8618550, "lon": -74.0112334 }, + { "lat": 40.8619936, "lon": -74.0112373 }, + { "lat": 40.8621350, "lon": -74.0112405 }, + { "lat": 40.8622706, "lon": -74.0112414 }, + { "lat": 40.8624026, "lon": -74.0112401 }, + { "lat": 40.8625456, "lon": -74.0112338 }, + { "lat": 40.8626723, "lon": -74.0112226 }, + { "lat": 40.8628070, "lon": -74.0112053 }, + { "lat": 40.8629380, "lon": -74.0111816 }, + { "lat": 40.8630758, "lon": -74.0111523 }, + { "lat": 40.8632155, "lon": -74.0111172 }, + { "lat": 40.8633426, "lon": -74.0110782 }, + { "lat": 40.8634905, "lon": -74.0110207 }, + { "lat": 40.8636131, "lon": -74.0109630 }, + { "lat": 40.8637321, "lon": -74.0108943 }, + { "lat": 40.8638554, "lon": -74.0108119 }, + { "lat": 40.8639721, "lon": -74.0107217 }, + { "lat": 40.8640666, "lon": -74.0106390 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 47973175, + "bounds": { + "minlat": 40.8720307, + "minlon": -74.0114800, + "maxlat": 40.8721334, + "maxlon": -74.0081567 + }, + "nodes": [ + 103247042, + 103247043, + 10940833266, + 103247044, + 10940833252, + 103247045, + 10940833249, + 103247046, + 10940833258, + 103247048, + 103247050, + 10947500742, + 10947500752, + 10947500751, + 10947500733, + 103247052, + 10947500749, + 10947500739, + 103247054 + ], + "geometry": [ + { "lat": 40.8720307, "lon": -74.0081567 }, + { "lat": 40.8720569, "lon": -74.0083393 }, + { "lat": 40.8720725, "lon": -74.0084779 }, + { "lat": 40.8720851, "lon": -74.0086176 }, + { "lat": 40.8720947, "lon": -74.0087582 }, + { "lat": 40.8721009, "lon": -74.0088976 }, + { "lat": 40.8721047, "lon": -74.0090436 }, + { "lat": 40.8721045, "lon": -74.0091852 }, + { "lat": 40.8721012, "lon": -74.0093238 }, + { "lat": 40.8720822, "lon": -74.0098856 }, + { "lat": 40.8720704, "lon": -74.0103086 }, + { "lat": 40.8720670, "lon": -74.0104501 }, + { "lat": 40.8720661, "lon": -74.0105917 }, + { "lat": 40.8720681, "lon": -74.0107236 }, + { "lat": 40.8720728, "lon": -74.0108652 }, + { "lat": 40.8720807, "lon": -74.0110030 }, + { "lat": 40.8720922, "lon": -74.0111469 }, + { "lat": 40.8721071, "lon": -74.0112869 }, + { "lat": 40.8721334, "lon": -74.0114800 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 47973177, + "bounds": { + "minlat": 40.8711182, + "minlon": -74.0037938, + "maxlat": 40.8766233, + "maxlon": -74.0006593 + }, + "nodes": [ + 103093310, + 13527741624, + 103093312, + 9871150056, + 103093314, + 6643339518, + 103093316, + 103093318, + 103093320, + 103093322, + 9871150048, + 9871150071, + 9871150073, + 103093324, + 103093325, + 4469448615, + 103093326, + 9871181536, + 103093329, + 103093331, + 9871181594, + 103093334, + 103093336, + 103093337, + 103093339, + 103093341, + 103093343 + ], + "geometry": [ + { "lat": 40.8711182, "lon": -74.0037938 }, + { "lat": 40.8712349, "lon": -74.0037355 }, + { "lat": 40.8716982, "lon": -74.0035039 }, + { "lat": 40.8717308, "lon": -74.0034737 }, + { "lat": 40.8721482, "lon": -74.0032274 }, + { "lat": 40.8722173, "lon": -74.0031869 }, + { "lat": 40.8724556, "lon": -74.0030504 }, + { "lat": 40.8729797, "lon": -74.0027484 }, + { "lat": 40.8733177, "lon": -74.0025428 }, + { "lat": 40.8736297, "lon": -74.0023620 }, + { "lat": 40.8736397, "lon": -74.0023553 }, + { "lat": 40.8736653, "lon": -74.0023410 }, + { "lat": 40.8737139, "lon": -74.0023139 }, + { "lat": 40.8737868, "lon": -74.0022732 }, + { "lat": 40.8740029, "lon": -74.0021464 }, + { "lat": 40.8743431, "lon": -74.0019572 }, + { "lat": 40.8746116, "lon": -74.0018262 }, + { "lat": 40.8752421, "lon": -74.0014795 }, + { "lat": 40.8753485, "lon": -74.0014166 }, + { "lat": 40.8754948, "lon": -74.0013259 }, + { "lat": 40.8756114, "lon": -74.0012418 }, + { "lat": 40.8757093, "lon": -74.0011712 }, + { "lat": 40.8758070, "lon": -74.0011136 }, + { "lat": 40.8759053, "lon": -74.0010572 }, + { "lat": 40.8760486, "lon": -74.0009771 }, + { "lat": 40.8761460, "lon": -74.0009210 }, + { "lat": 40.8766233, "lon": -74.0006593 } + ], + "tags": { + "highway": "residential", + "name": "Glenwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glenwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 48109826, + "bounds": { + "minlat": 40.8583744, + "minlon": -73.9782914, + "maxlat": 40.8584152, + "maxlon": -73.9770895 + }, + "nodes": [ + 299121488, + 299121025, + 7921587250, + 299121489, + 7921587256, + 299120882, + 7921587263, + 299121029, + 299121263 + ], + "geometry": [ + { "lat": 40.8583744, "lon": -73.9782914 }, + { "lat": 40.8583885, "lon": -73.9780794 }, + { "lat": 40.8583988, "lon": -73.9779258 }, + { "lat": 40.8584078, "lon": -73.9777839 }, + { "lat": 40.8584126, "lon": -73.9776530 }, + { "lat": 40.8584152, "lon": -73.9774988 }, + { "lat": 40.8584107, "lon": -73.9773525 }, + { "lat": 40.8584054, "lon": -73.9772085 }, + { "lat": 40.8583965, "lon": -73.9770895 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 48109885, + "bounds": { + "minlat": 40.8611668, + "minlon": -73.9739837, + "maxlat": 40.8629740, + "maxlon": -73.9736396 + }, + "nodes": [ + 76464878, + 299386342, + 7926187971, + 76464879, + 7925010438, + 7925010421, + 7925010432, + 7925010442, + 7925010425, + 76464880, + 8922784660, + 13754077752, + 13754077751 + ], + "geometry": [ + { "lat": 40.8611668, "lon": -73.9739837 }, + { "lat": 40.8616534, "lon": -73.9738593 }, + { "lat": 40.8617641, "lon": -73.9738303 }, + { "lat": 40.8618669, "lon": -73.9738050 }, + { "lat": 40.8619671, "lon": -73.9737813 }, + { "lat": 40.8620705, "lon": -73.9737579 }, + { "lat": 40.8621825, "lon": -73.9737361 }, + { "lat": 40.8622938, "lon": -73.9737157 }, + { "lat": 40.8624006, "lon": -73.9736972 }, + { "lat": 40.8625135, "lon": -73.9736800 }, + { "lat": 40.8626008, "lon": -73.9736690 }, + { "lat": 40.8627597, "lon": -73.9736554 }, + { "lat": 40.8629740, "lon": -73.9736396 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "highway": "trunk", + "horse": "no", + "lanes": "2", + "oneway": "yes", + "ref": "NJ 4", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "none|merge_to_left" + } +}, +{ + "type": "way", + "id": 48110167, + "bounds": { + "minlat": 40.8575787, + "minlon": -73.9738230, + "maxlat": 40.8578051, + "maxlon": -73.9735854 + }, + "nodes": [ + 4207161482, + 76463592 + ], + "geometry": [ + { "lat": 40.8575787, "lon": -73.9738230 }, + { "lat": 40.8578051, "lon": -73.9735854 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "bridge": "yes", + "highway": "trunk", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "layer": "1", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "ref": "US 9W", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 49032026, + "bounds": { + "minlat": 40.8500274, + "minlon": -73.9525330, + "maxlat": 40.8515745, + "maxlon": -73.9446443 + }, + "nodes": [ + 622204987, + 12393091296 + ], + "geometry": [ + { "lat": 40.8515745, "lon": -73.9525330 }, + { "lat": 40.8500274, "lon": -73.9446443 } + ], + "tags": { + "access:conditional": "permit @ height>14'0\"; permit @ width>8'6\"; permit @ weight>50000 lbs; permit @ axleload>20000 lbs; permit @ bogieweight>34000 lbs", + "bicycle": "use_sidepath", + "bridge": "yes", + "destination:lanes": "none|none|Harlem River Drive;Franklin D. Roosevelt East River Drive;West 178th Street|Henry Hudson Parkway", + "foot": "no", + "hazmat:1.1": "permit", + "hazmat:1.2": "permit", + "hazmat:1.3": "permit", + "hgv": "designated", + "hgv_articulated:conditional": "permit @ height>14'0\"; permit @ width>8'6\"; permit @ weight>80000 lbs; permit @ axleload>20000 lbs; permit @ bogieweight>34000 lbs", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "lit": "yes", + "maxaxleload": "20000 lbs", + "maxbogieweight": "34000 lbs", + "maxheight": "14'0\"", + "maxspeed": "45 mph", + "maxweight": "50000 lbs", + "maxweight:hgv_articulated": "80000 lbs", + "maxwidth": "8'6\"", + "name": "George Washington Bridge Upper Level", + "name:etymology:wikidata": "Q23", + "name:ru": "Мост Джорджа Вашингтона (верхний уровень)", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "sidewalk:right": "separate", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "none|none|through;slight_right|slight_right", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 49032029, + "bounds": { + "minlat": 40.8517067, + "minlon": -73.9606732, + "maxlat": 40.8533218, + "maxlon": -73.9524542 + }, + "nodes": [ + 622204986, + 298792713 + ], + "geometry": [ + { "lat": 40.8517067, "lon": -73.9524542 }, + { "lat": 40.8533218, "lon": -73.9606732 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "access:conditional": "yes @ (axles=2 AND weight<40 st); yes @ (axles=3 AND weight<60 st); yes @ (axles=4 AND weight<70 st); yes @ (axles>=5 AND weight<80 st)", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hazmat": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxaxleload": "20 st", + "maxheight": "13'6\"", + "maxspeed": "45 mph", + "maxweight": "80 st", + "maxwidth": "8'6\"", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "name:ru": "Мост Джорджа Вашингтона (нижний уровень)", + "oneway": "yes", + "ref": "I 95;US 1", + "toll": "no", + "unsigned_ref": "US 46", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 49036327, + "bounds": { + "minlat": 40.8454920, + "minlon": -73.9293861, + "maxlat": 40.8456343, + "maxlon": -73.9287877 + }, + "nodes": [ + 529799006, + 595484164 + ], + "geometry": [ + { "lat": 40.8456343, "lon": -73.9293861 }, + { "lat": 40.8454920, "lon": -73.9287877 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Alexander Hamilton Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "maxspeed": "50 mph", + "name": "Trans-Manhattan Expressway", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "concrete", + "toll": "no", + "wikidata": "Q621768", + "wikipedia": "en:Alexander Hamilton Bridge" + } +}, +{ + "type": "way", + "id": 49036344, + "bounds": { + "minlat": 40.8516917, + "minlon": -73.9606814, + "maxlat": 40.8532913, + "maxlon": -73.9524621 + }, + "nodes": [ + 1044184576, + 13754102632, + 60007332 + ], + "geometry": [ + { "lat": 40.8516917, "lon": -73.9524621 }, + { "lat": 40.8531194, "lon": -73.9597980 }, + { "lat": 40.8532913, "lon": -73.9606814 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "access:conditional": "permit @ height>14'0\"; permit @ width>8'6\"; permit @ weight>50000 lbs; permit @ axleload>20000 lbs; permit @ bogieweight>34000 lbs", + "bicycle": "use_sidepath", + "bridge": "yes", + "bridge:name": "George Washington Bridge (upper level)", + "bridge:name:etymology:wikidata": "Q23", + "bridge:name:ru": "Мост Джорджа Вашингтона (верхний уровень)", + "foot": "no", + "hazmat": "designated", + "hazmat:1.1": "permit", + "hazmat:1.2": "permit", + "hazmat:1.3": "permit", + "hgv": "designated", + "hgv:national_network": "yes", + "hgv_articulated:conditional": "permit @ height>14'0\"; permit @ width>8'6\"; permit @ weight>80000 lbs; permit @ axleload>20000 lbs; permit @ bogieweight>34000 lbs", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "maxaxleload": "20000 lbs", + "maxbogieweight": "34000 lbs", + "maxheight": "14'0\"", + "maxspeed": "45 mph", + "maxweight": "50000 lbs", + "maxweight:hgv_articulated": "80000 lbs", + "maxwidth": "8'6\"", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "sidewalk:right": "separate", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "US 46", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 49036429, + "bounds": { + "minlat": 40.8461615, + "minlon": -73.9333726, + "maxlat": 40.8471113, + "maxlon": -73.9309682 + }, + "nodes": [ + 5891063542, + 12065313558, + 9908548266, + 9908548267, + 12065313557, + 60925701, + 12065313556, + 9908548268, + 9908548269, + 5891063514, + 12065287963 + ], + "geometry": [ + { "lat": 40.8461615, "lon": -73.9309682 }, + { "lat": 40.8461883, "lon": -73.9310767 }, + { "lat": 40.8462137, "lon": -73.9311698 }, + { "lat": 40.8462349, "lon": -73.9312454 }, + { "lat": 40.8462566, "lon": -73.9313173 }, + { "lat": 40.8462794, "lon": -73.9313883 }, + { "lat": 40.8463069, "lon": -73.9314664 }, + { "lat": 40.8463349, "lon": -73.9315429 }, + { "lat": 40.8463654, "lon": -73.9316197 }, + { "lat": 40.8468316, "lon": -73.9327186 }, + { "lat": 40.8471113, "lon": -73.9333726 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 49590048, + "bounds": { + "minlat": 40.8380622, + "minlon": -73.9813920, + "maxlat": 40.8397970, + "maxlon": -73.9783854 + }, + "nodes": [ + 103166405, + 13523737906, + 103166408, + 103166410, + 7469386211, + 2395474003, + 2002608879, + 7469386212, + 103166394 + ], + "geometry": [ + { "lat": 40.8380622, "lon": -73.9783854 }, + { "lat": 40.8381050, "lon": -73.9784597 }, + { "lat": 40.8389070, "lon": -73.9798530 }, + { "lat": 40.8390755, "lon": -73.9801285 }, + { "lat": 40.8393849, "lon": -73.9806776 }, + { "lat": 40.8394151, "lon": -73.9807313 }, + { "lat": 40.8395132, "lon": -73.9809084 }, + { "lat": 40.8395686, "lon": -73.9810027 }, + { "lat": 40.8397970, "lon": -73.9813920 } + ], + "tags": { + "highway": "residential", + "name": "Plateau Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Plateau", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 49590064, + "bounds": { + "minlat": 40.8409480, + "minlon": -73.9793630, + "maxlat": 40.8432850, + "maxlon": -73.9751700 + }, + "nodes": [ + 103143799, + 7292367059, + 103143801, + 103143803, + 103143806, + 7292367026, + 103143808, + 103143810, + 103143813 + ], + "geometry": [ + { "lat": 40.8409480, "lon": -73.9751700 }, + { "lat": 40.8409978, "lon": -73.9752594 }, + { "lat": 40.8413990, "lon": -73.9759800 }, + { "lat": 40.8418110, "lon": -73.9767180 }, + { "lat": 40.8422110, "lon": -73.9774350 }, + { "lat": 40.8426761, "lon": -73.9782706 }, + { "lat": 40.8426880, "lon": -73.9782920 }, + { "lat": 40.8428400, "lon": -73.9785640 }, + { "lat": 40.8432850, "lon": -73.9793630 } + ], + "tags": { + "highway": "residential", + "name": "Forest Road", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Forest", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 49688928, + "bounds": { + "minlat": 40.8068316, + "minlon": -73.9638012, + "maxlat": 40.8079870, + "maxlon": -73.9610565 + }, + "nodes": [ + 42437142, + 9518281836, + 7323390434, + 3907629314, + 3907629312, + 2308955255, + 2308955254, + 2308955244, + 3907629306, + 2308955250, + 7578363998, + 9518281819, + 1506445762 + ], + "geometry": [ + { "lat": 40.8068316, "lon": -73.9610565 }, + { "lat": 40.8068717, "lon": -73.9611518 }, + { "lat": 40.8068797, "lon": -73.9611709 }, + { "lat": 40.8068949, "lon": -73.9612069 }, + { "lat": 40.8069124, "lon": -73.9612483 }, + { "lat": 40.8072178, "lon": -73.9619740 }, + { "lat": 40.8074124, "lon": -73.9624361 }, + { "lat": 40.8076063, "lon": -73.9628969 }, + { "lat": 40.8079060, "lon": -73.9636087 }, + { "lat": 40.8079231, "lon": -73.9636494 }, + { "lat": 40.8079401, "lon": -73.9636899 }, + { "lat": 40.8079605, "lon": -73.9637383 }, + { "lat": 40.8079870, "lon": -73.9638012 } + ], + "tags": { + "access": "private", + "alt_name": "West 116th Street;West 116 Street", + "bicycle": "no", + "foot": "yes", + "highway": "pedestrian", + "horse": "no", + "lit": "yes", + "motor_vehicle": "private", + "name": "College Walk", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "paving_stones", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "116th", + "tiger:name_base_1": "116", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "aerial", + "tiger:zip_left": "10027", + "tiger:zip_right": "10027" + } +}, +{ + "type": "way", + "id": 49688932, + "bounds": { + "minlat": 40.8079870, + "minlon": -73.9639884, + "maxlat": 40.8080645, + "maxlon": -73.9638012 + }, + "nodes": [ + 1506445762, + 470209120 + ], + "geometry": [ + { "lat": 40.8079870, "lon": -73.9638012 }, + { "lat": 40.8080645, "lon": -73.9639884 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "name_1": "West 116 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 50073731, + "bounds": { + "minlat": 40.8415454, + "minlon": -74.0024864, + "maxlat": 40.8424401, + "maxlon": -74.0018034 + }, + "nodes": [ + 103224073, + 12016147317, + 13196857683, + 103170135, + 5959904717, + 5978850765 + ], + "geometry": [ + { "lat": 40.8415454, "lon": -74.0024864 }, + { "lat": 40.8415844, "lon": -74.0024549 }, + { "lat": 40.8420378, "lon": -74.0021034 }, + { "lat": 40.8421335, "lon": -74.0020292 }, + { "lat": 40.8422609, "lon": -74.0019367 }, + { "lat": 40.8424401, "lon": -74.0018034 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21:A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 50073733, + "bounds": { + "minlat": 40.8415482, + "minlon": -73.9965792, + "maxlat": 40.8417377, + "maxlon": -73.9958323 + }, + "nodes": [ + 299181627, + 11444863313, + 11444863347, + 11444863346, + 11444863345, + 11444863344, + 12020325875, + 299181632 + ], + "geometry": [ + { "lat": 40.8415482, "lon": -73.9965792 }, + { "lat": 40.8415535, "lon": -73.9965515 }, + { "lat": 40.8415796, "lon": -73.9964303 }, + { "lat": 40.8416079, "lon": -73.9962975 }, + { "lat": 40.8416367, "lon": -73.9961755 }, + { "lat": 40.8416697, "lon": -73.9960501 }, + { "lat": 40.8417016, "lon": -73.9959469 }, + { "lat": 40.8417377, "lon": -73.9958323 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "destination:lanes": "New York|New York|New York;Sixth Street;Palisades Park", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "oneway": "yes", + "placement": "middle_of:2", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 50074174, + "bounds": { + "minlat": 40.8568075, + "minlon": -73.9734357, + "maxlat": 40.8578328, + "maxlon": -73.9723822 + }, + "nodes": [ + 76464195, + 13765164911, + 7925039044, + 13765164932, + 76464198, + 13765164931, + 7925039025, + 13765164930, + 76464199, + 13765164928, + 76464200, + 13765164929, + 7925039056, + 13765164927, + 299386720, + 13765164933, + 13765164910, + 13765164909, + 13765164934, + 299386721 + ], + "geometry": [ + { "lat": 40.8568075, "lon": -73.9723822 }, + { "lat": 40.8568766, "lon": -73.9724870 }, + { "lat": 40.8569505, "lon": -73.9725944 }, + { "lat": 40.8569869, "lon": -73.9726464 }, + { "lat": 40.8570279, "lon": -73.9727032 }, + { "lat": 40.8570626, "lon": -73.9727495 }, + { "lat": 40.8570994, "lon": -73.9727955 }, + { "lat": 40.8571404, "lon": -73.9728443 }, + { "lat": 40.8571852, "lon": -73.9728945 }, + { "lat": 40.8572282, "lon": -73.9729392 }, + { "lat": 40.8572738, "lon": -73.9729834 }, + { "lat": 40.8573141, "lon": -73.9730206 }, + { "lat": 40.8573611, "lon": -73.9730623 }, + { "lat": 40.8573960, "lon": -73.9730924 }, + { "lat": 40.8574488, "lon": -73.9731372 }, + { "lat": 40.8574949, "lon": -73.9731747 }, + { "lat": 40.8575549, "lon": -73.9732233 }, + { "lat": 40.8576146, "lon": -73.9732704 }, + { "lat": 40.8577571, "lon": -73.9733796 }, + { "lat": 40.8578328, "lon": -73.9734357 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "Paramus|Paterson|Hackensack", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "toll": "no", + "turn:lanes": "slight_left|none|none" + } +}, +{ + "type": "way", + "id": 50074175, + "bounds": { + "minlat": 40.8566795, + "minlon": -73.9741224, + "maxlat": 40.8578113, + "maxlon": -73.9725496 + }, + "nodes": [ + 60811360, + 60811358, + 7921816992, + 7921808876, + 60811357, + 3132250231 + ], + "geometry": [ + { "lat": 40.8566795, "lon": -73.9725496 }, + { "lat": 40.8570099, "lon": -73.9730429 }, + { "lat": 40.8570694, "lon": -73.9731294 }, + { "lat": 40.8571542, "lon": -73.9732516 }, + { "lat": 40.8572850, "lon": -73.9734315 }, + { "lat": 40.8578113, "lon": -73.9741224 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "Paterson|Paterson;Hackensack|Hackensack", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight": "14'4\"", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "|through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 50074176, + "bounds": { + "minlat": 40.8573384, + "minlon": -73.9744837, + "maxlat": 40.8584882, + "maxlon": -73.9732758 + }, + "nodes": [ + 76464545, + 299098575, + 7921551374, + 299098576, + 7921551379, + 299098577, + 7921551365, + 7921551360, + 299098578 + ], + "geometry": [ + { "lat": 40.8573384, "lon": -73.9732758 }, + { "lat": 40.8578026, "lon": -73.9737641 }, + { "lat": 40.8579011, "lon": -73.9738612 }, + { "lat": 40.8580724, "lon": -73.9740352 }, + { "lat": 40.8581645, "lon": -73.9741288 }, + { "lat": 40.8582542, "lon": -73.9742222 }, + { "lat": 40.8583343, "lon": -73.9743082 }, + { "lat": 40.8584223, "lon": -73.9744072 }, + { "lat": 40.8584882, "lon": -73.9744837 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 50074178, + "bounds": { + "minlat": 40.8552675, + "minlon": -73.9720894, + "maxlat": 40.8559602, + "maxlon": -73.9710944 + }, + "nodes": [ + 76464410, + 13768984240, + 13754021081, + 76464409, + 7921992361, + 7921992378, + 13768984239, + 76464408, + 7921992350, + 76464407 + ], + "geometry": [ + { "lat": 40.8559602, "lon": -73.9720894 }, + { "lat": 40.8558875, "lon": -73.9719774 }, + { "lat": 40.8558147, "lon": -73.9718644 }, + { "lat": 40.8557460, "lon": -73.9717603 }, + { "lat": 40.8556658, "lon": -73.9716442 }, + { "lat": 40.8555954, "lon": -73.9715484 }, + { "lat": 40.8555186, "lon": -73.9714430 }, + { "lat": 40.8554410, "lon": -73.9713340 }, + { "lat": 40.8553582, "lon": -73.9712196 }, + { "lat": 40.8552675, "lon": -73.9710944 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "5", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 50074179, + "bounds": { + "minlat": 40.8560677, + "minlon": -73.9729550, + "maxlat": 40.8565441, + "maxlon": -73.9722515 + }, + "nodes": [ + 299121905, + 13772860458, + 13772860459, + 7922003511, + 13772860460, + 8901247880 + ], + "geometry": [ + { "lat": 40.8565441, "lon": -73.9729550 }, + { "lat": 40.8564694, "lon": -73.9728446 }, + { "lat": 40.8563964, "lon": -73.9727371 }, + { "lat": 40.8563250, "lon": -73.9726331 }, + { "lat": 40.8561766, "lon": -73.9724152 }, + { "lat": 40.8560677, "lon": -73.9722515 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxheight": "14'4\"", + "name": "George Washington Bridge Lower Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 50603617, + "bounds": { + "minlat": 40.7441131, + "minlon": -73.9752025, + "maxlat": 40.7445022, + "maxlon": -73.9742814 + }, + "nodes": [ + 9971314371, + 3932847282, + 42445387 + ], + "geometry": [ + { "lat": 40.7441131, "lon": -73.9742814 }, + { "lat": 40.7444529, "lon": -73.9750890 }, + { "lat": 40.7445022, "lon": -73.9752025 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated|yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "||right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 51756812, + "bounds": { + "minlat": 40.8361860, + "minlon": -73.9907763, + "maxlat": 40.8375446, + "maxlon": -73.9906323 + }, + "nodes": [ + 103148010, + 103148011, + 440215427, + 103148014, + 103148017, + 103148018, + 9648874303, + 103148019 + ], + "geometry": [ + { "lat": 40.8361860, "lon": -73.9907110 }, + { "lat": 40.8364855, "lon": -73.9907542 }, + { "lat": 40.8366177, "lon": -73.9907695 }, + { "lat": 40.8367412, "lon": -73.9907763 }, + { "lat": 40.8369500, "lon": -73.9907660 }, + { "lat": 40.8371530, "lon": -73.9907350 }, + { "lat": 40.8374822, "lon": -73.9906487 }, + { "lat": 40.8375446, "lon": -73.9906323 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 51756813, + "bounds": { + "minlat": 40.8353229, + "minlon": -73.9907110, + "maxlat": 40.8361860, + "maxlon": -73.9906127 + }, + "nodes": [ + 440208245, + 103148007, + 103148010 + ], + "geometry": [ + { "lat": 40.8353229, "lon": -73.9906127 }, + { "lat": 40.8356100, "lon": -73.9906310 }, + { "lat": 40.8361860, "lon": -73.9907110 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "bridge": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "layer": "1", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 51756879, + "bounds": { + "minlat": 40.8346114, + "minlon": -73.9901785, + "maxlat": 40.8352691, + "maxlon": -73.9897761 + }, + "nodes": [ + 660545482, + 103148214, + 7501837156, + 440208242, + 103148219 + ], + "geometry": [ + { "lat": 40.8346114, "lon": -73.9901785 }, + { "lat": 40.8350080, "lon": -73.9899290 }, + { "lat": 40.8350534, "lon": -73.9899003 }, + { "lat": 40.8351487, "lon": -73.9898429 }, + { "lat": 40.8352691, "lon": -73.9897761 } + ], + "tags": { + "highway": "primary", + "name": "Bergen Boulevard", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 51756913, + "bounds": { + "minlat": 40.8466850, + "minlon": -73.9753860, + "maxlat": 40.8469512, + "maxlon": -73.9752091 + }, + "nodes": [ + 5108613710, + 103230891 + ], + "geometry": [ + { "lat": 40.8469512, "lon": -73.9752091 }, + { "lat": 40.8466850, "lon": -73.9753860 } + ], + "tags": { + "highway": "residential", + "name": "Abbott Boulevard", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 51756923, + "bounds": { + "minlat": 40.8332257, + "minlon": -73.9851431, + "maxlat": 40.8336905, + "maxlon": -73.9842892 + }, + "nodes": [ + 103162181, + 103162183, + 6964278295, + 103162185 + ], + "geometry": [ + { "lat": 40.8332257, "lon": -73.9842892 }, + { "lat": 40.8334929, "lon": -73.9847450 }, + { "lat": 40.8336669, "lon": -73.9850644 }, + { "lat": 40.8336905, "lon": -73.9851431 } + ], + "tags": { + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "1", + "name": "Columbia Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 51756924, + "bounds": { + "minlat": 40.8314202, + "minlon": -73.9843381, + "maxlat": 40.8331203, + "maxlon": -73.9806242 + }, + "nodes": [ + 103162102, + 103149466, + 103162105, + 103162106, + 660545784, + 103162108, + 7498899404, + 7498899553, + 103162110, + 103162113, + 103162115, + 103162117, + 103162119 + ], + "geometry": [ + { "lat": 40.8331203, "lon": -73.9843381 }, + { "lat": 40.8325393, "lon": -73.9833152 }, + { "lat": 40.8324443, "lon": -73.9831591 }, + { "lat": 40.8320513, "lon": -73.9824703 }, + { "lat": 40.8319389, "lon": -73.9822487 }, + { "lat": 40.8317734, "lon": -73.9819235 }, + { "lat": 40.8317677, "lon": -73.9819106 }, + { "lat": 40.8317363, "lon": -73.9818400 }, + { "lat": 40.8316854, "lon": -73.9817258 }, + { "lat": 40.8316124, "lon": -73.9815315 }, + { "lat": 40.8315565, "lon": -73.9813338 }, + { "lat": 40.8315134, "lon": -73.9811779 }, + { "lat": 40.8314202, "lon": -73.9806242 } + ], + "tags": { + "Bergen_County_database_ref": "119", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000119", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "1", + "name": "Columbia Avenue", + "oneway": "yes", + "ref": "CR 119", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 51756925, + "bounds": { + "minlat": 40.8336905, + "minlon": -73.9865037, + "maxlat": 40.8344158, + "maxlon": -73.9851431 + }, + "nodes": [ + 103162185, + 103162190, + 103162192 + ], + "geometry": [ + { "lat": 40.8336905, "lon": -73.9851431 }, + { "lat": 40.8340726, "lon": -73.9858479 }, + { "lat": 40.8344158, "lon": -73.9865037 } + ], + "tags": { + "highway": "tertiary", + "name": "Columbia Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 51756943, + "bounds": { + "minlat": 40.8458784, + "minlon": -73.9712446, + "maxlat": 40.8467133, + "maxlon": -73.9707353 + }, + "nodes": [ + 5449315451, + 5449315458, + 5449327992, + 660546070, + 5449327972, + 660546458, + 660546281 + ], + "geometry": [ + { "lat": 40.8458784, "lon": -73.9712446 }, + { "lat": 40.8459870, "lon": -73.9711284 }, + { "lat": 40.8461514, "lon": -73.9710335 }, + { "lat": 40.8462242, "lon": -73.9709915 }, + { "lat": 40.8464144, "lon": -73.9708819 }, + { "lat": 40.8465060, "lon": -73.9708309 }, + { "lat": 40.8467133, "lon": -73.9707353 } + ], + "tags": { + "highway": "tertiary", + "name": "Palisade Avenue", + "oneway": "yes", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 51756945, + "bounds": { + "minlat": 40.8467729, + "minlon": -73.9710167, + "maxlat": 40.8468557, + "maxlon": -73.9706824 + }, + "nodes": [ + 660546073, + 5449315452, + 660546074, + 103171552 + ], + "geometry": [ + { "lat": 40.8468557, "lon": -73.9706824 }, + { "lat": 40.8468195, "lon": -73.9707406 }, + { "lat": 40.8467980, "lon": -73.9708202 }, + { "lat": 40.8467729, "lon": -73.9710167 } + ], + "tags": { + "highway": "tertiary", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 51756956, + "bounds": { + "minlat": 40.8496213, + "minlon": -73.9705125, + "maxlat": 40.8511850, + "maxlon": -73.9701630 + }, + "nodes": [ + 103205062, + 103205061, + 103205059, + 6896079417, + 103205057, + 103205056, + 7431516892, + 5449315442, + 630656239, + 103154236, + 12401386045, + 103205050 + ], + "geometry": [ + { "lat": 40.8511850, "lon": -73.9701630 }, + { "lat": 40.8507600, "lon": -73.9704150 }, + { "lat": 40.8506620, "lon": -73.9704600 }, + { "lat": 40.8506187, "lon": -73.9704723 }, + { "lat": 40.8505420, "lon": -73.9704940 }, + { "lat": 40.8504190, "lon": -73.9705050 }, + { "lat": 40.8503727, "lon": -73.9705125 }, + { "lat": 40.8502274, "lon": -73.9704990 }, + { "lat": 40.8501627, "lon": -73.9704886 }, + { "lat": 40.8499889, "lon": -73.9704549 }, + { "lat": 40.8496711, "lon": -73.9704166 }, + { "lat": 40.8496213, "lon": -73.9703707 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "2", + "name": "Lemoine Avenue", + "oneway": "yes", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 51756957, + "bounds": { + "minlat": 40.8530975, + "minlon": -73.9688717, + "maxlat": 40.8534183, + "maxlon": -73.9686768 + }, + "nodes": [ + 4204785599, + 12747513996, + 6902027593, + 6902027597, + 6902027598 + ], + "geometry": [ + { "lat": 40.8534183, "lon": -73.9686768 }, + { "lat": 40.8533459, "lon": -73.9687175 }, + { "lat": 40.8533145, "lon": -73.9687346 }, + { "lat": 40.8531855, "lon": -73.9688153 }, + { "lat": 40.8530975, "lon": -73.9688717 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 51757250, + "bounds": { + "minlat": 40.8521006, + "minlon": -73.9723130, + "maxlat": 40.8544924, + "maxlon": -73.9708734 + }, + "nodes": [ + 103174599, + 5449454094, + 5362322580, + 103174601, + 6895010055, + 103174605, + 6895010045, + 103174607, + 7111637686, + 103174608, + 7111601877, + 6964899066 + ], + "geometry": [ + { "lat": 40.8521006, "lon": -73.9723130 }, + { "lat": 40.8524426, "lon": -73.9719803 }, + { "lat": 40.8529014, "lon": -73.9715380 }, + { "lat": 40.8530840, "lon": -73.9713620 }, + { "lat": 40.8534777, "lon": -73.9713053 }, + { "lat": 40.8537160, "lon": -73.9712710 }, + { "lat": 40.8538185, "lon": -73.9712397 }, + { "lat": 40.8538730, "lon": -73.9712230 }, + { "lat": 40.8539692, "lon": -73.9711782 }, + { "lat": 40.8540040, "lon": -73.9711620 }, + { "lat": 40.8544140, "lon": -73.9709190 }, + { "lat": 40.8544924, "lon": -73.9708734 } + ], + "tags": { + "Bergen_County_database_ref": "S-29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000S29", + "highway": "secondary", + "lanes": "2", + "name": "Center Avenue", + "oneway": "yes", + "ref": "CR S-29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 51757251, + "bounds": { + "minlat": 40.8548017, + "minlon": -73.9707000, + "maxlat": 40.8551486, + "maxlon": -73.9704910 + }, + "nodes": [ + 530754357, + 7926245203, + 752658835 + ], + "geometry": [ + { "lat": 40.8548017, "lon": -73.9707000 }, + { "lat": 40.8550745, "lon": -73.9705386 }, + { "lat": 40.8551486, "lon": -73.9704910 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000S29", + "bridge": "yes", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "name": "Center Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 51757252, + "bounds": { + "minlat": 40.8572874, + "minlon": -73.9713520, + "maxlat": 40.8592217, + "maxlon": -73.9693301 + }, + "nodes": [ + 7407010396, + 12021336836, + 12021336835, + 103132812, + 12021336851, + 9887211338 + ], + "geometry": [ + { "lat": 40.8592217, "lon": -73.9693301 }, + { "lat": 40.8591785, "lon": -73.9693696 }, + { "lat": 40.8591303, "lon": -73.9694167 }, + { "lat": 40.8582870, "lon": -73.9703083 }, + { "lat": 40.8573676, "lon": -73.9712683 }, + { "lat": 40.8572874, "lon": -73.9713520 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000029", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Linwood Avenue", + "oneway": "yes", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 51757253, + "bounds": { + "minlat": 40.8595039, + "minlon": -73.9691429, + "maxlat": 40.8610405, + "maxlon": -73.9680438 + }, + "nodes": [ + 530475662, + 12021336888, + 12021336876, + 13324698246, + 12021336870, + 103132808, + 12021336869, + 103132809, + 103132810 + ], + "geometry": [ + { "lat": 40.8610405, "lon": -73.9680438 }, + { "lat": 40.8610241, "lon": -73.9680556 }, + { "lat": 40.8609610, "lon": -73.9681008 }, + { "lat": 40.8608749, "lon": -73.9681609 }, + { "lat": 40.8607565, "lon": -73.9682436 }, + { "lat": 40.8607169, "lon": -73.9682788 }, + { "lat": 40.8606740, "lon": -73.9683145 }, + { "lat": 40.8601109, "lon": -73.9687140 }, + { "lat": 40.8595039, "lon": -73.9691429 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000029", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Linwood Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 51757254, + "bounds": { + "minlat": 40.8587597, + "minlon": -73.9672362, + "maxlat": 40.8602118, + "maxlon": -73.9659813 + }, + "nodes": [ + 12021336858, + 103174615, + 12021336859, + 12021336877, + 103174616, + 12021336878, + 12021336860, + 12021336883, + 103174618, + 12021336886, + 12021336884, + 12021336885, + 103124646 + ], + "geometry": [ + { "lat": 40.8587597, "lon": -73.9672362 }, + { "lat": 40.8590847, "lon": -73.9670631 }, + { "lat": 40.8591141, "lon": -73.9670453 }, + { "lat": 40.8591398, "lon": -73.9670278 }, + { "lat": 40.8591619, "lon": -73.9670104 }, + { "lat": 40.8591879, "lon": -73.9669866 }, + { "lat": 40.8592139, "lon": -73.9669628 }, + { "lat": 40.8596699, "lon": -73.9665192 }, + { "lat": 40.8597178, "lon": -73.9664726 }, + { "lat": 40.8597620, "lon": -73.9664287 }, + { "lat": 40.8601605, "lon": -73.9660329 }, + { "lat": 40.8601795, "lon": -73.9660140 }, + { "lat": 40.8602118, "lon": -73.9659813 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Center Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 51757255, + "bounds": { + "minlat": 40.8585054, + "minlon": -73.9691429, + "maxlat": 40.8595039, + "maxlon": -73.9673562 + }, + "nodes": [ + 103174614, + 12021336854, + 12021336850, + 103212123, + 12021336838, + 12021336839, + 103132810 + ], + "geometry": [ + { "lat": 40.8585054, "lon": -73.9673562 }, + { "lat": 40.8585464, "lon": -73.9674296 }, + { "lat": 40.8585592, "lon": -73.9674524 }, + { "lat": 40.8590632, "lon": -73.9683543 }, + { "lat": 40.8594509, "lon": -73.9690482 }, + { "lat": 40.8594695, "lon": -73.9690815 }, + { "lat": 40.8595039, "lon": -73.9691429 } + ], + "tags": { + "hgv": "no", + "highway": "tertiary", + "lane_markings": "no", + "name": "Lincoln Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 51757321, + "bounds": { + "minlat": 40.8626146, + "minlon": -73.9635159, + "maxlat": 40.8627282, + "maxlon": -73.9633561 + }, + "nodes": [ + 76463662, + 530475795 + ], + "geometry": [ + { "lat": 40.8627282, "lon": -73.9633561 }, + { "lat": 40.8626146, "lon": -73.9635159 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "destination:ref": "US 9W South", + "highway": "primary", + "lanes": "2", + "maxspeed:advisory": "15 mph", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 54369822, + "bounds": { + "minlat": 40.7380018, + "minlon": -73.9771480, + "maxlat": 40.7387960, + "maxlon": -73.9752084 + }, + "nodes": [ + 42422830, + 11543660453, + 5007384474, + 42429918 + ], + "geometry": [ + { "lat": 40.7380018, "lon": -73.9752084 }, + { "lat": 40.7386876, "lon": -73.9768461 }, + { "lat": 40.7387396, "lon": -73.9770133 }, + { "lat": 40.7387960, "lon": -73.9771480 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 26th Street", + "name:ru": "Восточная 26-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 54674846, + "bounds": { + "minlat": 40.8306118, + "minlon": -73.9929152, + "maxlat": 40.8317006, + "maxlon": -73.9921908 + }, + "nodes": [ + 4205589232, + 103147981, + 103147984, + 6964929531, + 4205620789 + ], + "geometry": [ + { "lat": 40.8306118, "lon": -73.9929152 }, + { "lat": 40.8309670, "lon": -73.9926690 }, + { "lat": 40.8312946, "lon": -73.9924549 }, + { "lat": 40.8316374, "lon": -73.9922319 }, + { "lat": 40.8317006, "lon": -73.9921908 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk": "both", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 54674847, + "bounds": { + "minlat": 40.8138645, + "minlon": -74.0030781, + "maxlat": 40.8143118, + "maxlon": -74.0029177 + }, + "nodes": [ + 103147915, + 688325018 + ], + "geometry": [ + { "lat": 40.8138645, "lon": -74.0030781 }, + { "lat": 40.8143118, "lon": -74.0029177 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "bridge": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "layer": "1", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 54675005, + "bounds": { + "minlat": 40.8362030, + "minlon": -73.9918767, + "maxlat": 40.8394043, + "maxlon": -73.9910560 + }, + "nodes": [ + 103108462, + 103190934, + 5978850776, + 103190936, + 103190938, + 103190940, + 103190942, + 103190944, + 103190945, + 103190947, + 7162150122, + 7162150102, + 103190949, + 103190951, + 7162150107, + 103190955, + 103190957, + 7162150113, + 103190959, + 103190962, + 103190964, + 103190966, + 6499542573, + 103190968, + 7162150121, + 440215425, + 103162218 + ], + "geometry": [ + { "lat": 40.8394043, "lon": -73.9918767 }, + { "lat": 40.8393459, "lon": -73.9918322 }, + { "lat": 40.8392868, "lon": -73.9917913 }, + { "lat": 40.8392136, "lon": -73.9917420 }, + { "lat": 40.8390285, "lon": -73.9916326 }, + { "lat": 40.8388838, "lon": -73.9915756 }, + { "lat": 40.8387100, "lon": -73.9915140 }, + { "lat": 40.8385630, "lon": -73.9914880 }, + { "lat": 40.8383780, "lon": -73.9914740 }, + { "lat": 40.8381920, "lon": -73.9914810 }, + { "lat": 40.8378045, "lon": -73.9915368 }, + { "lat": 40.8376031, "lon": -73.9915658 }, + { "lat": 40.8375530, "lon": -73.9915730 }, + { "lat": 40.8374640, "lon": -73.9915790 }, + { "lat": 40.8373848, "lon": -73.9915772 }, + { "lat": 40.8372860, "lon": -73.9915750 }, + { "lat": 40.8371450, "lon": -73.9915570 }, + { "lat": 40.8370343, "lon": -73.9915317 }, + { "lat": 40.8369700, "lon": -73.9915170 }, + { "lat": 40.8367990, "lon": -73.9914570 }, + { "lat": 40.8366320, "lon": -73.9913770 }, + { "lat": 40.8365030, "lon": -73.9913000 }, + { "lat": 40.8364746, "lon": -73.9912793 }, + { "lat": 40.8363480, "lon": -73.9911870 }, + { "lat": 40.8363271, "lon": -73.9911683 }, + { "lat": 40.8362530, "lon": -73.9911020 }, + { "lat": 40.8362030, "lon": -73.9910560 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 5", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 54675006, + "bounds": { + "minlat": 40.8406290, + "minlon": -73.9949707, + "maxlat": 40.8407187, + "maxlon": -73.9946594 + }, + "nodes": [ + 103190916, + 688343619 + ], + "geometry": [ + { "lat": 40.8407187, "lon": -73.9949707 }, + { "lat": 40.8406290, "lon": -73.9946594 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "bridge": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "layer": "1", + "placement:forward": "left_of:1", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 5", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 54689817, + "bounds": { + "minlat": 40.7038253, + "minlon": -74.0083431, + "maxlat": 40.7059768, + "maxlon": -74.0052445 + }, + "nodes": [ + 11356786750, + 4985377337, + 42452708, + 4985377339, + 11316393546, + 11316393548, + 11316393547, + 7139608175, + 11315551925, + 42452700, + 4561414108, + 10556966409, + 10168838116, + 42452630, + 12133465278, + 10168838114, + 10457330689, + 10170966591, + 42421946 + ], + "geometry": [ + { "lat": 40.7059768, "lon": -74.0052445 }, + { "lat": 40.7058445, "lon": -74.0054463 }, + { "lat": 40.7057998, "lon": -74.0055192 }, + { "lat": 40.7057477, "lon": -74.0056051 }, + { "lat": 40.7053709, "lon": -74.0061590 }, + { "lat": 40.7053412, "lon": -74.0062016 }, + { "lat": 40.7052906, "lon": -74.0062745 }, + { "lat": 40.7049281, "lon": -74.0067662 }, + { "lat": 40.7048416, "lon": -74.0068903 }, + { "lat": 40.7047990, "lon": -74.0069515 }, + { "lat": 40.7047598, "lon": -74.0070080 }, + { "lat": 40.7043508, "lon": -74.0075760 }, + { "lat": 40.7043229, "lon": -74.0076148 }, + { "lat": 40.7042989, "lon": -74.0076468 }, + { "lat": 40.7042853, "lon": -74.0076661 }, + { "lat": 40.7042564, "lon": -74.0077070 }, + { "lat": 40.7038966, "lon": -74.0082342 }, + { "lat": 40.7038642, "lon": -74.0082817 }, + { "lat": 40.7038253, "lon": -74.0083431 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Front Street", + "name:ko": "프론트 스트리트", + "name:ru": "Фронт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Front", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q4493022", + "wikipedia": "en:Front Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 54689818, + "bounds": { + "minlat": 40.7054688, + "minlon": -74.0048632, + "maxlat": 40.7057214, + "maxlon": -74.0045497 + }, + "nodes": [ + 9814893489, + 1772140793, + 9814893490 + ], + "geometry": [ + { "lat": 40.7057214, "lon": -74.0048632 }, + { "lat": 40.7054883, "lon": -74.0045740 }, + { "lat": 40.7054688, "lon": -74.0045497 } + ], + "tags": { + "access": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Fletcher Street", + "name:etymology:wikidata": "Q4888590", + "name:ko": "플렛처 스트리트", + "name:ru": "Флетчер-стрит", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fletcher", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q13882294" + } +}, +{ + "type": "way", + "id": 55333443, + "bounds": { + "minlat": 40.8347285, + "minlon": -74.0090242, + "maxlat": 40.8351753, + "maxlon": -74.0084119 + }, + "nodes": [ + 695054585, + 12016147267, + 12016147268, + 12016147266, + 695054587, + 103125593 + ], + "geometry": [ + { "lat": 40.8351753, "lon": -74.0084119 }, + { "lat": 40.8349912, "lon": -74.0086777 }, + { "lat": 40.8349394, "lon": -74.0087389 }, + { "lat": 40.8348912, "lon": -74.0087976 }, + { "lat": 40.8348706, "lon": -74.0088264 }, + { "lat": 40.8347285, "lon": -74.0090242 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "Broad Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21:A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 55333444, + "bounds": { + "minlat": 40.8343919, + "minlon": -74.0091689, + "maxlat": 40.8351753, + "maxlon": -74.0084119 + }, + "nodes": [ + 695054599, + 12016147270, + 12016147265, + 5554920855, + 12016147269, + 695054585 + ], + "geometry": [ + { "lat": 40.8343919, "lon": -74.0091689 }, + { "lat": 40.8345639, "lon": -74.0089904 }, + { "lat": 40.8347402, "lon": -74.0088143 }, + { "lat": 40.8348347, "lon": -74.0087185 }, + { "lat": 40.8349527, "lon": -74.0085992 }, + { "lat": 40.8351753, "lon": -74.0084119 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "Broad Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21:A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 55333460, + "bounds": { + "minlat": 40.8307949, + "minlon": -74.0102614, + "maxlat": 40.8320466, + "maxlon": -74.0100494 + }, + "nodes": [ + 695054584, + 12016315249, + 695054701, + 695054702, + 103224045, + 4207232345 + ], + "geometry": [ + { "lat": 40.8307949, "lon": -74.0102614 }, + { "lat": 40.8310178, "lon": -74.0101572 }, + { "lat": 40.8313454, "lon": -74.0100708 }, + { "lat": 40.8315402, "lon": -74.0100494 }, + { "lat": 40.8319511, "lon": -74.0100689 }, + { "lat": 40.8320466, "lon": -74.0100826 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "40 mph", + "name": "South Broad Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_base_3": "Broad", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Ave", + "tiger:name_type_3": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 55333483, + "bounds": { + "minlat": 40.8338628, + "minlon": -74.0112492, + "maxlat": 40.8341820, + "maxlon": -74.0111300 + }, + "nodes": [ + 695054869, + 13527768425, + 5498647260, + 5498647261, + 752204773 + ], + "geometry": [ + { "lat": 40.8341820, "lon": -74.0111418 }, + { "lat": 40.8339985, "lon": -74.0112314 }, + { "lat": 40.8339621, "lon": -74.0112492 }, + { "lat": 40.8339279, "lon": -74.0112370 }, + { "lat": 40.8338628, "lon": -74.0111300 } + ], + "tags": { + "highway": "residential", + "name": "Edgewater Avenue West", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 55333486, + "bounds": { + "minlat": 40.8359518, + "minlon": -74.0181820, + "maxlat": 40.8373160, + "maxlon": -74.0175690 + }, + "nodes": [ + 103198927, + 103198928, + 103198929, + 103198931, + 103198932, + 103198933, + 103198934, + 103198936, + 103198938, + 103198940, + 103198942, + 103198943, + 103198944 + ], + "geometry": [ + { "lat": 40.8359518, "lon": -74.0178728 }, + { "lat": 40.8360640, "lon": -74.0179870 }, + { "lat": 40.8361910, "lon": -74.0180720 }, + { "lat": 40.8363230, "lon": -74.0181390 }, + { "lat": 40.8364110, "lon": -74.0181700 }, + { "lat": 40.8365010, "lon": -74.0181820 }, + { "lat": 40.8365920, "lon": -74.0181760 }, + { "lat": 40.8366810, "lon": -74.0181510 }, + { "lat": 40.8367660, "lon": -74.0181080 }, + { "lat": 40.8368530, "lon": -74.0180400 }, + { "lat": 40.8370930, "lon": -74.0177730 }, + { "lat": 40.8372000, "lon": -74.0176630 }, + { "lat": 40.8373160, "lon": -74.0175690 } + ], + "tags": { + "Bergen_County_database_ref": "17", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020001241", + "highway": "secondary", + "name": "Hendricks Causeway", + "old_ref": "CR 17", + "ref": "CR 124", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hendricks", + "tiger:name_type": "Cswy", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 55333488, + "bounds": { + "minlat": 40.8332429, + "minlon": -74.0117982, + "maxlat": 40.8333321, + "maxlon": -74.0111652 + }, + "nodes": [ + 695054580, + 695054581 + ], + "geometry": [ + { "lat": 40.8332429, "lon": -74.0111652 }, + { "lat": 40.8333321, "lon": -74.0117982 } + ], + "tags": { + "Bergen_County_database_ref": "17", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020001241", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "Hendricks Causeway", + "old_ref": "CR 17", + "ref": "CR 124", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hendricks", + "tiger:name_type": "Cswy", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 55333498, + "bounds": { + "minlat": 40.8330744, + "minlon": -74.0113147, + "maxlat": 40.8335964, + "maxlon": -74.0112707 + }, + "nodes": [ + 695055278, + 695055281, + 9895312496, + 9895312493, + 9895312495, + 695055283 + ], + "geometry": [ + { "lat": 40.8335964, "lon": -74.0112803 }, + { "lat": 40.8333833, "lon": -74.0113142 }, + { "lat": 40.8333312, "lon": -74.0113147 }, + { "lat": 40.8331900, "lon": -74.0113083 }, + { "lat": 40.8331386, "lon": -74.0112954 }, + { "lat": 40.8330744, "lon": -74.0112707 } + ], + "tags": { + "highway": "tertiary", + "junction": "jughandle", + "maxheight:signed": "no", + "name": "Remsen Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 55824232, + "bounds": { + "minlat": 40.8061627, + "minlon": -73.9161840, + "maxlat": 40.8087900, + "maxlon": -73.9091832 + }, + "nodes": [ + 42743431, + 13809174847, + 42719411, + 42743438, + 13809174852, + 42743443, + 13809174854, + 13809174857, + 42743447, + 3507688289, + 5308530243, + 13809174858, + 42743451, + 13809174860, + 42743458, + 5487854698, + 7554161856, + 42743464, + 9156979721, + 9156979723, + 9156979722, + 9156979724, + 42743468 + ], + "geometry": [ + { "lat": 40.8087900, "lon": -73.9161840 }, + { "lat": 40.8087516, "lon": -73.9160921 }, + { "lat": 40.8084756, "lon": -73.9154323 }, + { "lat": 40.8080070, "lon": -73.9143320 }, + { "lat": 40.8076561, "lon": -73.9135067 }, + { "lat": 40.8076090, "lon": -73.9133960 }, + { "lat": 40.8075689, "lon": -73.9132993 }, + { "lat": 40.8072884, "lon": -73.9126219 }, + { "lat": 40.8072558, "lon": -73.9125431 }, + { "lat": 40.8071201, "lon": -73.9121274 }, + { "lat": 40.8070738, "lon": -73.9119766 }, + { "lat": 40.8070037, "lon": -73.9117479 }, + { "lat": 40.8069763, "lon": -73.9116586 }, + { "lat": 40.8069507, "lon": -73.9115768 }, + { "lat": 40.8067069, "lon": -73.9107993 }, + { "lat": 40.8066437, "lon": -73.9105978 }, + { "lat": 40.8066324, "lon": -73.9105617 }, + { "lat": 40.8063260, "lon": -73.9095860 }, + { "lat": 40.8062555, "lon": -73.9093400 }, + { "lat": 40.8062415, "lon": -73.9093024 }, + { "lat": 40.8062224, "lon": -73.9092613 }, + { "lat": 40.8061950, "lon": -73.9092227 }, + { "lat": 40.8061627, "lon": -73.9091832 } + ], + "tags": { + "highway": "residential", + "name": "East 141st Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "141st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454" + } +}, +{ + "type": "way", + "id": 55824234, + "bounds": { + "minlat": 40.8108534, + "minlon": -73.9321643, + "maxlat": 40.8111215, + "maxlon": -73.9318063 + }, + "nodes": [ + 701223492, + 13040649441, + 701223494 + ], + "geometry": [ + { "lat": 40.8111215, "lon": -73.9318063 }, + { "lat": 40.8110662, "lon": -73.9318801 }, + { "lat": 40.8108534, "lon": -73.9321643 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "surface": "paved", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 55874424, + "bounds": { + "minlat": 40.7644930, + "minlon": -73.9988992, + "maxlat": 40.7651529, + "maxlon": -73.9984258 + }, + "nodes": [ + 247120364, + 12152950931, + 12152950930, + 247120624 + ], + "geometry": [ + { "lat": 40.7651529, "lon": -73.9984258 }, + { "lat": 40.7645326, "lon": -73.9988708 }, + { "lat": 40.7645097, "lon": -73.9988876 }, + { "lat": 40.7644930, "lon": -73.9988992 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 56577925, + "bounds": { + "minlat": 40.7736238, + "minlon": -73.9503323, + "maxlat": 40.7755591, + "maxlon": -73.9457297 + }, + "nodes": [ + 42435518, + 7834025529, + 7834025575, + 42428032, + 7834025521, + 6352970544, + 42435522 + ], + "geometry": [ + { "lat": 40.7755591, "lon": -73.9503323 }, + { "lat": 40.7755051, "lon": -73.9502036 }, + { "lat": 40.7746684, "lon": -73.9482111 }, + { "lat": 40.7746144, "lon": -73.9480825 }, + { "lat": 40.7745614, "lon": -73.9479567 }, + { "lat": 40.7736781, "lon": -73.9458612 }, + { "lat": 40.7736238, "lon": -73.9457297 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 84th Street", + "name:ru": "Восточная 84-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 56578204, + "bounds": { + "minlat": 40.7761941, + "minlon": -73.9578009, + "maxlat": 40.7795347, + "maxlon": -73.9498734 + }, + "nodes": [ + 42456066, + 6263083531, + 7834030807, + 8250715762, + 6176390179, + 42443037, + 8250715758, + 8782897304, + 42450028, + 8250514386, + 8250514381, + 8250514367, + 8782897301, + 42447132, + 8782897298, + 8782897297, + 42458766, + 596776132 + ], + "geometry": [ + { "lat": 40.7761941, "lon": -73.9498734 }, + { "lat": 40.7762380, "lon": -73.9499777 }, + { "lat": 40.7762540, "lon": -73.9500156 }, + { "lat": 40.7771457, "lon": -73.9521236 }, + { "lat": 40.7771604, "lon": -73.9521595 }, + { "lat": 40.7771941, "lon": -73.9522399 }, + { "lat": 40.7772499, "lon": -73.9523698 }, + { "lat": 40.7780838, "lon": -73.9543419 }, + { "lat": 40.7781411, "lon": -73.9544774 }, + { "lat": 40.7781984, "lon": -73.9546163 }, + { "lat": 40.7782934, "lon": -73.9548525 }, + { "lat": 40.7784206, "lon": -73.9551541 }, + { "lat": 40.7787757, "lon": -73.9559797 }, + { "lat": 40.7788196, "lon": -73.9560836 }, + { "lat": 40.7788637, "lon": -73.9561867 }, + { "lat": 40.7794113, "lon": -73.9575064 }, + { "lat": 40.7794585, "lon": -73.9576208 }, + { "lat": 40.7795347, "lon": -73.9578009 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lane_markings": "no", + "name": "East 85th Street", + "name:ru": "Восточная 85-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644879", + "wikipedia": "en:85th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 58202333, + "bounds": { + "minlat": 40.8821386, + "minlon": -73.9148832, + "maxlat": 40.8852928, + "maxlon": -73.9132544 + }, + "nodes": [ + 1545521276, + 3965035290, + 11250047212, + 42750741, + 11250047189, + 8344773917, + 11250047179, + 42748863, + 11250077542, + 13041409088, + 1581489775 + ], + "geometry": [ + { "lat": 40.8821386, "lon": -73.9148832 }, + { "lat": 40.8821953, "lon": -73.9147947 }, + { "lat": 40.8830999, "lon": -73.9143385 }, + { "lat": 40.8831940, "lon": -73.9142910 }, + { "lat": 40.8832849, "lon": -73.9142463 }, + { "lat": 40.8838949, "lon": -73.9139465 }, + { "lat": 40.8842283, "lon": -73.9137826 }, + { "lat": 40.8843190, "lon": -73.9137380 }, + { "lat": 40.8844388, "lon": -73.9136785 }, + { "lat": 40.8852470, "lon": -73.9132772 }, + { "lat": 40.8852928, "lon": -73.9132544 } + ], + "tags": { + "highway": "residential", + "name": "Fairfield Avenue", + "name:etymology:wikidata": "Q754635", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fairfield", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 58202334, + "bounds": { + "minlat": 40.8811290, + "minlon": -73.9151653, + "maxlat": 40.8820153, + "maxlon": -73.9127540 + }, + "nodes": [ + 42746799, + 11250047230, + 13068228294, + 42746802, + 12520067903, + 721838974 + ], + "geometry": [ + { "lat": 40.8811290, "lon": -73.9127540 }, + { "lat": 40.8811911, "lon": -73.9129078 }, + { "lat": 40.8814914, "lon": -73.9137144 }, + { "lat": 40.8815242, "lon": -73.9138075 }, + { "lat": 40.8820153, "lon": -73.9149109 }, + { "lat": 40.8817787, "lon": -73.9151653 } + ], + "tags": { + "highway": "residential", + "name": "West 230th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 58202335, + "bounds": { + "minlat": 40.8824530, + "minlon": -73.9142910, + "maxlat": 40.8831940, + "maxlon": -73.9120599 + }, + "nodes": [ + 42770865, + 10132643317, + 11250047221, + 13068268093, + 42770873, + 13068411673, + 11250047225, + 7708935434, + 42750741 + ], + "geometry": [ + { "lat": 40.8824530, "lon": -73.9120599 }, + { "lat": 40.8825163, "lon": -73.9121807 }, + { "lat": 40.8827789, "lon": -73.9130015 }, + { "lat": 40.8827858, "lon": -73.9130229 }, + { "lat": 40.8828110, "lon": -73.9131020 }, + { "lat": 40.8828398, "lon": -73.9131915 }, + { "lat": 40.8828545, "lon": -73.9132371 }, + { "lat": 40.8830155, "lon": -73.9137369 }, + { "lat": 40.8831940, "lon": -73.9142910 } + ], + "tags": { + "highway": "residential", + "name": "West 231st Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "231st", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 58202864, + "bounds": { + "minlat": 40.7635103, + "minlon": -73.9354541, + "maxlat": 40.7649896, + "maxlon": -73.9344970 + }, + "nodes": [ + 721845308, + 2504465118, + 2504465137, + 2504565422, + 7726860996, + 7726860990, + 7692711169, + 6452522185, + 42824091 + ], + "geometry": [ + { "lat": 40.7649896, "lon": -73.9344970 }, + { "lat": 40.7649499, "lon": -73.9345214 }, + { "lat": 40.7647962, "lon": -73.9346158 }, + { "lat": 40.7644882, "lon": -73.9348050 }, + { "lat": 40.7643850, "lon": -73.9348684 }, + { "lat": 40.7639611, "lon": -73.9351289 }, + { "lat": 40.7636431, "lon": -73.9353587 }, + { "lat": 40.7635992, "lon": -73.9353855 }, + { "lat": 40.7635103, "lon": -73.9354541 } + ], + "tags": { + "highway": "residential", + "name": "14th Street" + } +}, +{ + "type": "way", + "id": 58734978, + "bounds": { + "minlat": 40.8559936, + "minlon": -73.9721865, + "maxlat": 40.8562676, + "maxlon": -73.9717364 + }, + "nodes": [ + 60811502, + 13759310529, + 7921569551, + 13759310530, + 60811504 + ], + "geometry": [ + { "lat": 40.8562676, "lon": -73.9721865 }, + { "lat": 40.8561945, "lon": -73.9720715 }, + { "lat": 40.8561294, "lon": -73.9719662 }, + { "lat": 40.8560620, "lon": -73.9718541 }, + { "lat": 40.8559936, "lon": -73.9717364 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge Plaza", + "bridge:name:etymology:wikidata": "Q23", + "destination:lanes": "George Washington Bridge;New York City|George Washington Bridge;New York City|George Washington Bridge;New York City|George Washington Bridge;New York City;Fort Lee;Palisades Interstate Parkway", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "hov:lanes": "|||designated", + "lanes": "4", + "maxheight": "14'4\"", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "none|none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 59044115, + "bounds": { + "minlat": 40.7861197, + "minlon": -73.9312194, + "maxlat": 40.7869316, + "maxlon": -73.9292772 + }, + "nodes": [ + 731930601, + 10713118000, + 3037067136, + 3040306430 + ], + "geometry": [ + { "lat": 40.7861197, "lon": -73.9292772 }, + { "lat": 40.7861797, "lon": -73.9294242 }, + { "lat": 40.7866098, "lon": -73.9304445 }, + { "lat": 40.7869316, "lon": -73.9312194 } + ], + "tags": { + "highway": "unclassified", + "lit": "yes", + "name": "Sunken Garden Loop", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 59044117, + "bounds": { + "minlat": 40.7850852, + "minlon": -73.9307054, + "maxlat": 40.7852815, + "maxlon": -73.9304639 + }, + "nodes": [ + 7734633956, + 7734633957, + 7734633958, + 7734633959, + 7734633960, + 7734633950, + 7734633962, + 4596420547, + 4596420545, + 4596420548, + 7734633951, + 7734633952, + 7734633953, + 10713117998, + 10713117997, + 10713117996, + 10713117995, + 4596420549, + 4596420544, + 4596420543, + 4596420542, + 7734633956 + ], + "geometry": [ + { "lat": 40.7852769, "lon": -73.9305562 }, + { "lat": 40.7852815, "lon": -73.9305907 }, + { "lat": 40.7852768, "lon": -73.9306246 }, + { "lat": 40.7852651, "lon": -73.9306517 }, + { "lat": 40.7852457, "lon": -73.9306777 }, + { "lat": 40.7852222, "lon": -73.9306953 }, + { "lat": 40.7851922, "lon": -73.9307054 }, + { "lat": 40.7851616, "lon": -73.9307054 }, + { "lat": 40.7851350, "lon": -73.9306869 }, + { "lat": 40.7851137, "lon": -73.9306633 }, + { "lat": 40.7850962, "lon": -73.9306291 }, + { "lat": 40.7850859, "lon": -73.9305923 }, + { "lat": 40.7850852, "lon": -73.9305466 }, + { "lat": 40.7850967, "lon": -73.9305128 }, + { "lat": 40.7851195, "lon": -73.9304874 }, + { "lat": 40.7851453, "lon": -73.9304716 }, + { "lat": 40.7851704, "lon": -73.9304643 }, + { "lat": 40.7852014, "lon": -73.9304639 }, + { "lat": 40.7852280, "lon": -73.9304737 }, + { "lat": 40.7852491, "lon": -73.9304934 }, + { "lat": 40.7852667, "lon": -73.9305213 }, + { "lat": 40.7852769, "lon": -73.9305562 } + ], + "tags": { + "highway": "unclassified", + "name": "Sunken Garden Loop", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60098344, + "bounds": { + "minlat": 40.8495649, + "minlon": -73.9446423, + "maxlat": 40.8498716, + "maxlon": -73.9434357 + }, + "nodes": [ + 746718818, + 11976150576, + 746730275, + 11976150577, + 11976150578, + 11976150579, + 746730277, + 3273685568, + 8071771662, + 8071771661, + 8071771660, + 746730288 + ], + "geometry": [ + { "lat": 40.8495649, "lon": -73.9434357 }, + { "lat": 40.8495785, "lon": -73.9435574 }, + { "lat": 40.8495882, "lon": -73.9436474 }, + { "lat": 40.8496297, "lon": -73.9437874 }, + { "lat": 40.8496545, "lon": -73.9439906 }, + { "lat": 40.8496554, "lon": -73.9441490 }, + { "lat": 40.8496719, "lon": -73.9442985 }, + { "lat": 40.8496920, "lon": -73.9443922 }, + { "lat": 40.8497341, "lon": -73.9444847 }, + { "lat": 40.8498231, "lon": -73.9446214 }, + { "lat": 40.8498457, "lon": -73.9446371 }, + { "lat": 40.8498716, "lon": -73.9446423 } + ], + "tags": { + "bicycle": "no", + "highway": "track", + "surface": "gravel", + "tracktype": "grade1" + } +}, +{ + "type": "way", + "id": 60251942, + "bounds": { + "minlat": 40.8321814, + "minlon": -73.9408792, + "maxlat": 40.8323747, + "maxlon": -73.9404015 + }, + "nodes": [ + 42456979, + 11291880544, + 42432990 + ], + "geometry": [ + { "lat": 40.8321814, "lon": -73.9404015 }, + { "lat": 40.8323234, "lon": -73.9407524 }, + { "lat": 40.8323747, "lon": -73.9408792 } + ], + "tags": { + "highway": "residential", + "name": "West 157th Street", + "name_1": "West 157 Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "157th", + "tiger:name_base_1": "157", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 60321022, + "bounds": { + "minlat": 40.8326570, + "minlon": -73.9785090, + "maxlat": 40.8366580, + "maxlon": -73.9782870 + }, + "nodes": [ + 103125377, + 7508363703, + 103235751, + 7508363831, + 7508363767, + 7508363834, + 103093107, + 13523728873, + 103174015 + ], + "geometry": [ + { "lat": 40.8326570, "lon": -73.9785090 }, + { "lat": 40.8332404, "lon": -73.9784685 }, + { "lat": 40.8333770, "lon": -73.9784590 }, + { "lat": 40.8340465, "lon": -73.9784267 }, + { "lat": 40.8341534, "lon": -73.9784215 }, + { "lat": 40.8342479, "lon": -73.9784170 }, + { "lat": 40.8351170, "lon": -73.9783750 }, + { "lat": 40.8351884, "lon": -73.9783709 }, + { "lat": 40.8366580, "lon": -73.9782870 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Palisade Avenue", + "ref": "NJ 5", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 60321192, + "bounds": { + "minlat": 40.8318532, + "minlon": -73.9356955, + "maxlat": 40.8343760, + "maxlon": -73.9355536 + }, + "nodes": [ + 6854080985, + 13535318262, + 6854080986, + 6854080987, + 13535318288, + 13535318297, + 6854080994, + 6854080997, + 6854080988, + 13535318263, + 13535318268, + 6854080989, + 13535318273, + 13535318264, + 13535318265, + 6854080990, + 13535318266, + 6854080991, + 13535318267, + 6854080992, + 2313365627 + ], + "geometry": [ + { "lat": 40.8343760, "lon": -73.9356955 }, + { "lat": 40.8343252, "lon": -73.9356835 }, + { "lat": 40.8342766, "lon": -73.9356745 }, + { "lat": 40.8342227, "lon": -73.9356695 }, + { "lat": 40.8340444, "lon": -73.9356564 }, + { "lat": 40.8335393, "lon": -73.9356191 }, + { "lat": 40.8334241, "lon": -73.9356106 }, + { "lat": 40.8331208, "lon": -73.9355892 }, + { "lat": 40.8330080, "lon": -73.9355819 }, + { "lat": 40.8329486, "lon": -73.9355855 }, + { "lat": 40.8329186, "lon": -73.9355867 }, + { "lat": 40.8328887, "lon": -73.9355879 }, + { "lat": 40.8325380, "lon": -73.9355676 }, + { "lat": 40.8323292, "lon": -73.9355555 }, + { "lat": 40.8322613, "lon": -73.9355536 }, + { "lat": 40.8321996, "lon": -73.9355562 }, + { "lat": 40.8321282, "lon": -73.9355618 }, + { "lat": 40.8320516, "lon": -73.9355688 }, + { "lat": 40.8319845, "lon": -73.9355844 }, + { "lat": 40.8319283, "lon": -73.9356000 }, + { "lat": 40.8318532, "lon": -73.9356257 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60325668, + "bounds": { + "minlat": 40.7571357, + "minlon": -74.0099717, + "maxlat": 40.7624689, + "maxlon": -73.9970821 + }, + "nodes": [ + 3276524466, + 3275488110, + 42423681, + 427971844, + 3275488105, + 427850819 + ], + "geometry": [ + { "lat": 40.7624689, "lon": -74.0099717 }, + { "lat": 40.7573118, "lon": -73.9977077 }, + { "lat": 40.7572547, "lon": -73.9975570 }, + { "lat": 40.7572044, "lon": -73.9974010 }, + { "lat": 40.7571619, "lon": -73.9972285 }, + { "lat": 40.7571357, "lon": -73.9970821 } + ], + "tags": { + "bicycle": "no", + "cycleway:right": "no", + "destination:lanes": "Dyer Avenue north;West 40th Street|Dyer Avenue south", + "foot": "no", + "hazmat": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "-2", + "lit": "24/7", + "maxheight": "13'0\"", + "maxspeed": "35 mph", + "maxwidth": "8'6\"", + "name": "Lincoln Tunnel", + "name:etymology:wikidata": "Q91", + "note": "signed as I-495 in New York all the way into the tunnel", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "source": "usgs", + "surface": "asphalt", + "toll": "yes", + "tunnel": "yes", + "wikidata": "Q125805", + "wikipedia": "en:Lincoln Tunnel" + } +}, +{ + "type": "way", + "id": 60325671, + "bounds": { + "minlat": 40.7631084, + "minlon": -74.0193925, + "maxlat": 40.7672521, + "maxlon": -74.0095468 + }, + "nodes": [ + 3276524465, + 42455519 + ], + "geometry": [ + { "lat": 40.7631084, "lon": -74.0095468 }, + { "lat": 40.7672521, "lon": -74.0193925 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000495", + "bicycle": "no", + "cycleway:right": "no", + "foot": "no", + "hazmat": "no", + "hgv": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "-2", + "lit": "24/7", + "maxheight": "13'0\"", + "maxspeed": "35 mph", + "maxwidth": "8'6\"", + "name": "Lincoln Tunnel", + "name:etymology:wikidata": "Q91", + "oneway": "yes", + "ref": "NJ 495", + "source": "usgs", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:name_base": "Lincoln", + "tiger:name_base_1": "I-495", + "tiger:name_type": "Tunl", + "tiger:reviewed": "no", + "toll": "no", + "tunnel": "yes", + "wikidata": "Q125805", + "wikipedia": "en:Lincoln Tunnel" + } +}, +{ + "type": "way", + "id": 60356179, + "bounds": { + "minlat": 40.7853014, + "minlon": -74.0075847, + "maxlat": 40.7858384, + "maxlon": -74.0062787 + }, + "nodes": [ + 103870532, + 103870533, + 6894944715, + 103870534, + 6894944724, + 7225960648, + 5509633558, + 103870536 + ], + "geometry": [ + { "lat": 40.7858384, "lon": -74.0075847 }, + { "lat": 40.7858204, "lon": -74.0074698 }, + { "lat": 40.7857105, "lon": -74.0072050 }, + { "lat": 40.7856034, "lon": -74.0069567 }, + { "lat": 40.7855407, "lon": -74.0068220 }, + { "lat": 40.7854198, "lon": -74.0065468 }, + { "lat": 40.7854024, "lon": -74.0065079 }, + { "lat": 40.7853014, "lon": -74.0062787 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "J F Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 60356196, + "bounds": { + "minlat": 40.8060812, + "minlon": -74.0018396, + "maxlat": 40.8061559, + "maxlon": -74.0013673 + }, + "nodes": [ + 103870495, + 103870496, + 5474412237, + 2010233206, + 103870498 + ], + "geometry": [ + { "lat": 40.8061559, "lon": -74.0013673 }, + { "lat": 40.8061486, "lon": -74.0015614 }, + { "lat": 40.8061339, "lon": -74.0016169 }, + { "lat": 40.8061245, "lon": -74.0016742 }, + { "lat": 40.8060812, "lon": -74.0018396 } + ], + "tags": { + "highway": "residential", + "name": "Riverview Drive", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_base_1": "Boulevard E", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 60356198, + "bounds": { + "minlat": 40.7716256, + "minlon": -74.0135842, + "maxlat": 40.7721120, + "maxlon": -74.0132312 + }, + "nodes": [ + 103858326, + 7320078015, + 307870548 + ], + "geometry": [ + { "lat": 40.7721120, "lon": -74.0132312 }, + { "lat": 40.7720440, "lon": -74.0132801 }, + { "lat": 40.7716256, "lon": -74.0135842 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "Pershing Road", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Pershing", + "tiger:name_base_1": "County Road 682", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "wikidata": "Q7170177", + "wikipedia": "en:Pershing Road (Weehawken)" + } +}, +{ + "type": "way", + "id": 60357857, + "bounds": { + "minlat": 40.7885818, + "minlon": -74.0004323, + "maxlat": 40.7890978, + "maxlon": -74.0001469 + }, + "nodes": [ + 103856521, + 103861686 + ], + "geometry": [ + { "lat": 40.7885818, "lon": -74.0004323 }, + { "lat": 40.7890978, "lon": -74.0001469 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hillside", + "tiger:name_base_1": "River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 60419747, + "bounds": { + "minlat": 40.7819206, + "minlon": -74.0188854, + "maxlat": 40.7930882, + "maxlon": -74.0099348 + }, + "nodes": [ + 103878362, + 7678242760, + 7678242762, + 103884182, + 7678242702, + 7678242696, + 103864415, + 7678131130, + 7085632627, + 7678131133, + 103885498, + 7678131110, + 7678131113, + 103872299, + 7678131078, + 103864948, + 7678103750, + 7678103753, + 103876898, + 7678103761, + 7678103763, + 103864121, + 7675458920, + 7675458922, + 103884680, + 7675116959, + 7675116961, + 103862000, + 7675116941, + 7675116939, + 103869668, + 7657469005, + 6885754308, + 7657469003, + 103879230, + 7657468947, + 7657468949, + 103884735, + 103884725, + 7617909942, + 103860949, + 7617907273, + 103860951, + 7617907275, + 103864300, + 7613768222, + 7613768224, + 103855295, + 7613768200, + 7192358959, + 7613768197, + 103868185, + 7613768153, + 11240111369, + 103884448 + ], + "geometry": [ + { "lat": 40.7930882, "lon": -74.0099348 }, + { "lat": 40.7930396, "lon": -74.0099729 }, + { "lat": 40.7925674, "lon": -74.0103499 }, + { "lat": 40.7924971, "lon": -74.0104060 }, + { "lat": 40.7924575, "lon": -74.0104376 }, + { "lat": 40.7919803, "lon": -74.0108185 }, + { "lat": 40.7919215, "lon": -74.0108654 }, + { "lat": 40.7918740, "lon": -74.0109030 }, + { "lat": 40.7915025, "lon": -74.0111975 }, + { "lat": 40.7913938, "lon": -74.0112863 }, + { "lat": 40.7913331, "lon": -74.0113360 }, + { "lat": 40.7912853, "lon": -74.0113742 }, + { "lat": 40.7908157, "lon": -74.0117493 }, + { "lat": 40.7907711, "lon": -74.0117850 }, + { "lat": 40.7902304, "lon": -74.0122150 }, + { "lat": 40.7901411, "lon": -74.0122860 }, + { "lat": 40.7900875, "lon": -74.0123287 }, + { "lat": 40.7892483, "lon": -74.0129976 }, + { "lat": 40.7891781, "lon": -74.0130530 }, + { "lat": 40.7891049, "lon": -74.0131118 }, + { "lat": 40.7878916, "lon": -74.0140869 }, + { "lat": 40.7878187, "lon": -74.0141490 }, + { "lat": 40.7877305, "lon": -74.0142186 }, + { "lat": 40.7872519, "lon": -74.0146177 }, + { "lat": 40.7871884, "lon": -74.0146706 }, + { "lat": 40.7871446, "lon": -74.0147065 }, + { "lat": 40.7866809, "lon": -74.0150866 }, + { "lat": 40.7866156, "lon": -74.0151401 }, + { "lat": 40.7865626, "lon": -74.0151817 }, + { "lat": 40.7860777, "lon": -74.0155621 }, + { "lat": 40.7860248, "lon": -74.0156083 }, + { "lat": 40.7859651, "lon": -74.0156551 }, + { "lat": 40.7855843, "lon": -74.0159534 }, + { "lat": 40.7854976, "lon": -74.0160259 }, + { "lat": 40.7854406, "lon": -74.0160735 }, + { "lat": 40.7853787, "lon": -74.0161229 }, + { "lat": 40.7848956, "lon": -74.0165079 }, + { "lat": 40.7848452, "lon": -74.0165481 }, + { "lat": 40.7845762, "lon": -74.0167590 }, + { "lat": 40.7845418, "lon": -74.0167854 }, + { "lat": 40.7842614, "lon": -74.0170002 }, + { "lat": 40.7842059, "lon": -74.0170485 }, + { "lat": 40.7841490, "lon": -74.0170979 }, + { "lat": 40.7837283, "lon": -74.0174372 }, + { "lat": 40.7836803, "lon": -74.0174759 }, + { "lat": 40.7836249, "lon": -74.0175207 }, + { "lat": 40.7831461, "lon": -74.0179083 }, + { "lat": 40.7830949, "lon": -74.0179497 }, + { "lat": 40.7830404, "lon": -74.0179921 }, + { "lat": 40.7826326, "lon": -74.0183084 }, + { "lat": 40.7825527, "lon": -74.0183719 }, + { "lat": 40.7824982, "lon": -74.0184148 }, + { "lat": 40.7824490, "lon": -74.0184548 }, + { "lat": 40.7819686, "lon": -74.0188463 }, + { "lat": 40.7819206, "lon": -74.0188854 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 60419750, + "bounds": { + "minlat": 40.7985268, + "minlon": -74.0098598, + "maxlat": 40.7989431, + "maxlon": -74.0090433 + }, + "nodes": [ + 103866654, + 7678636837, + 2813943234, + 7678629973, + 103867937 + ], + "geometry": [ + { "lat": 40.7985268, "lon": -74.0090433 }, + { "lat": 40.7986039, "lon": -74.0091583 }, + { "lat": 40.7986529, "lon": -74.0092314 }, + { "lat": 40.7989140, "lon": -74.0097968 }, + { "lat": 40.7989431, "lon": -74.0098598 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09081168", + "highway": "residential", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 60419763, + "bounds": { + "minlat": 40.8159270, + "minlon": -74.0196095, + "maxlat": 40.8179672, + "maxlon": -74.0148201 + }, + "nodes": [ + 3740792844, + 8218941722, + 3740792843, + 3740792845, + 3740793580, + 103872035, + 5707102066, + 103865040 + ], + "geometry": [ + { "lat": 40.8179672, "lon": -74.0196095 }, + { "lat": 40.8174125, "lon": -74.0182846 }, + { "lat": 40.8170822, "lon": -74.0174959 }, + { "lat": 40.8171350, "lon": -74.0170506 }, + { "lat": 40.8161241, "lon": -74.0151838 }, + { "lat": 40.8160028, "lon": -74.0149636 }, + { "lat": 40.8159523, "lon": -74.0148680 }, + { "lat": 40.8159270, "lon": -74.0148201 } + ], + "tags": { + "highway": "service", + "name": "91st Street", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "91st", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 60419765, + "bounds": { + "minlat": 40.8028290, + "minlon": -74.0162420, + "maxlat": 40.8034256, + "maxlon": -74.0158049 + }, + "nodes": [ + 103878762, + 7474498884, + 103878764 + ], + "geometry": [ + { "lat": 40.8028290, "lon": -74.0162420 }, + { "lat": 40.8033853, "lon": -74.0158344 }, + { "lat": 40.8034256, "lon": -74.0158049 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081120", + "highway": "tertiary", + "name": "Cottage Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Cottage", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 60419774, + "bounds": { + "minlat": 40.7855429, + "minlon": -74.0092607, + "maxlat": 40.7949926, + "maxlon": -74.0015247 + }, + "nodes": [ + 103864115, + 7468537539, + 103864385, + 103864383, + 103886404, + 103876893, + 103886406, + 7468537704, + 103864941, + 7468537554, + 7588135073, + 7468537556, + 103872293, + 7468537570, + 103886408, + 7468537572, + 103886410, + 7468537601, + 7468537705, + 103864413, + 7468537604, + 7468537606, + 103884180, + 7468537669, + 7468537671, + 103878359, + 7468537697, + 440244396, + 7468537695, + 103869196, + 7468583686, + 6650006663, + 7468583688, + 103855253, + 7468583736, + 7468583738, + 103867983, + 7468583751, + 7468583753, + 103880616, + 7468583769, + 440243580, + 7468583771, + 7468583770, + 7468583773, + 103873526, + 7468583784, + 7649372577, + 7468583798, + 103876556, + 7468583800, + 7468583802, + 103867934 + ], + "geometry": [ + { "lat": 40.7855429, "lon": -74.0092607 }, + { "lat": 40.7856213, "lon": -74.0091880 }, + { "lat": 40.7860583, "lon": -74.0087825 }, + { "lat": 40.7863527, "lon": -74.0085042 }, + { "lat": 40.7867167, "lon": -74.0081434 }, + { "lat": 40.7868526, "lon": -74.0080113 }, + { "lat": 40.7876480, "lon": -74.0072437 }, + { "lat": 40.7877179, "lon": -74.0071833 }, + { "lat": 40.7877625, "lon": -74.0071448 }, + { "lat": 40.7878297, "lon": -74.0070919 }, + { "lat": 40.7881286, "lon": -74.0068566 }, + { "lat": 40.7883024, "lon": -74.0067198 }, + { "lat": 40.7883645, "lon": -74.0066709 }, + { "lat": 40.7884081, "lon": -74.0066354 }, + { "lat": 40.7888561, "lon": -74.0062701 }, + { "lat": 40.7888929, "lon": -74.0062404 }, + { "lat": 40.7889332, "lon": -74.0062077 }, + { "lat": 40.7890015, "lon": -74.0061526 }, + { "lat": 40.7894756, "lon": -74.0057703 }, + { "lat": 40.7895116, "lon": -74.0057413 }, + { "lat": 40.7895694, "lon": -74.0056949 }, + { "lat": 40.7900453, "lon": -74.0053127 }, + { "lat": 40.7901102, "lon": -74.0052605 }, + { "lat": 40.7901590, "lon": -74.0052218 }, + { "lat": 40.7906444, "lon": -74.0048358 }, + { "lat": 40.7906977, "lon": -74.0047934 }, + { "lat": 40.7907483, "lon": -74.0047490 }, + { "lat": 40.7910128, "lon": -74.0045173 }, + { "lat": 40.7912245, "lon": -74.0043428 }, + { "lat": 40.7912720, "lon": -74.0043062 }, + { "lat": 40.7913183, "lon": -74.0042660 }, + { "lat": 40.7917303, "lon": -74.0039305 }, + { "lat": 40.7919419, "lon": -74.0037567 }, + { "lat": 40.7919820, "lon": -74.0037238 }, + { "lat": 40.7920358, "lon": -74.0036803 }, + { "lat": 40.7925204, "lon": -74.0032887 }, + { "lat": 40.7925709, "lon": -74.0032487 }, + { "lat": 40.7926265, "lon": -74.0032028 }, + { "lat": 40.7931072, "lon": -74.0028115 }, + { "lat": 40.7931472, "lon": -74.0027790 }, + { "lat": 40.7932053, "lon": -74.0027297 }, + { "lat": 40.7934150, "lon": -74.0025520 }, + { "lat": 40.7935092, "lon": -74.0024996 }, + { "lat": 40.7936330, "lon": -74.0024691 }, + { "lat": 40.7937219, "lon": -74.0024143 }, + { "lat": 40.7937815, "lon": -74.0023775 }, + { "lat": 40.7938405, "lon": -74.0023352 }, + { "lat": 40.7941031, "lon": -74.0021465 }, + { "lat": 40.7943337, "lon": -74.0019809 }, + { "lat": 40.7943755, "lon": -74.0019508 }, + { "lat": 40.7944632, "lon": -74.0018903 }, + { "lat": 40.7949403, "lon": -74.0015608 }, + { "lat": 40.7949926, "lon": -74.0015247 } + ], + "tags": { + "HFCS": "Urban Minor Collector", + "NJDOT_SRI": "09121044", + "highway": "tertiary", + "name": "Park Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 60419775, + "bounds": { + "minlat": 40.8034256, + "minlon": -74.0184303, + "maxlat": 40.8044317, + "maxlon": -74.0158049 + }, + "nodes": [ + 103878764, + 103881382, + 11499493879, + 11499493870 + ], + "geometry": [ + { "lat": 40.8034256, "lon": -74.0158049 }, + { "lat": 40.8036610, "lon": -74.0164520 }, + { "lat": 40.8043985, "lon": -74.0183451 }, + { "lat": 40.8044317, "lon": -74.0184303 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09081246", + "highway": "tertiary", + "name": "76th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 60419787, + "bounds": { + "minlat": 40.8022557, + "minlon": -74.0158049, + "maxlat": 40.8034256, + "maxlon": -74.0127270 + }, + "nodes": [ + 103872909, + 7474498902, + 7474498897, + 103862780, + 5560675179, + 7474498900, + 5571858318, + 5560675426, + 13428956324, + 103861504, + 103861506, + 103881378, + 103876439, + 103880536, + 7474498888, + 103878764 + ], + "geometry": [ + { "lat": 40.8022557, "lon": -74.0127270 }, + { "lat": 40.8023306, "lon": -74.0128854 }, + { "lat": 40.8025988, "lon": -74.0134472 }, + { "lat": 40.8026255, "lon": -74.0134690 }, + { "lat": 40.8026770, "lon": -74.0135711 }, + { "lat": 40.8028262, "lon": -74.0138991 }, + { "lat": 40.8028395, "lon": -74.0139266 }, + { "lat": 40.8028735, "lon": -74.0140044 }, + { "lat": 40.8030503, "lon": -74.0144027 }, + { "lat": 40.8031820, "lon": -74.0147060 }, + { "lat": 40.8032210, "lon": -74.0148100 }, + { "lat": 40.8032640, "lon": -74.0149260 }, + { "lat": 40.8033220, "lon": -74.0152440 }, + { "lat": 40.8033318, "lon": -74.0153073 }, + { "lat": 40.8033375, "lon": -74.0153373 }, + { "lat": 40.8034256, "lon": -74.0158049 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081246", + "highway": "tertiary", + "name": "76th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 60428244, + "bounds": { + "minlat": 40.7855429, + "minlon": -74.0156249, + "maxlat": 40.7885103, + "maxlon": -74.0092607 + }, + "nodes": [ + 103864115, + 7658692206, + 7658692210, + 103864117, + 7675458952, + 7174014503, + 7174014512, + 7675458950, + 103862601, + 7675458944, + 103855469, + 7675458940, + 103855601, + 7675458930, + 103864119, + 7675458928, + 103864121, + 7675458918, + 103864122, + 103864123 + ], + "geometry": [ + { "lat": 40.7855429, "lon": -74.0092607 }, + { "lat": 40.7855915, "lon": -74.0093649 }, + { "lat": 40.7859797, "lon": -74.0101965 }, + { "lat": 40.7860218, "lon": -74.0102867 }, + { "lat": 40.7860645, "lon": -74.0103813 }, + { "lat": 40.7861054, "lon": -74.0104719 }, + { "lat": 40.7862414, "lon": -74.0107616 }, + { "lat": 40.7863468, "lon": -74.0109946 }, + { "lat": 40.7863803, "lon": -74.0110687 }, + { "lat": 40.7864222, "lon": -74.0111599 }, + { "lat": 40.7867310, "lon": -74.0118320 }, + { "lat": 40.7870556, "lon": -74.0125178 }, + { "lat": 40.7870999, "lon": -74.0126113 }, + { "lat": 40.7871397, "lon": -74.0126993 }, + { "lat": 40.7874435, "lon": -74.0133715 }, + { "lat": 40.7877786, "lon": -74.0140636 }, + { "lat": 40.7878187, "lon": -74.0141490 }, + { "lat": 40.7878621, "lon": -74.0142322 }, + { "lat": 40.7881771, "lon": -74.0149006 }, + { "lat": 40.7885103, "lon": -74.0156249 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "09121076", + "highway": "tertiary", + "name": "60th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "60th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 60430318, + "bounds": { + "minlat": 40.8213880, + "minlon": -74.0087282, + "maxlat": 40.8220694, + "maxlon": -74.0084060 + }, + "nodes": [ + 103094942, + 103224003, + 103224004, + 103112481 + ], + "geometry": [ + { "lat": 40.8213880, "lon": -74.0084060 }, + { "lat": 40.8218321, "lon": -74.0086356 }, + { "lat": 40.8219646, "lon": -74.0086875 }, + { "lat": 40.8220694, "lon": -74.0087282 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657" + } +}, +{ + "type": "way", + "id": 60430319, + "bounds": { + "minlat": 40.8330602, + "minlon": -74.0103307, + "maxlat": 40.8335516, + "maxlon": -74.0101461 + }, + "nodes": [ + 695054688, + 12016315213, + 695054689, + 12016315215, + 12016315216, + 12016315214, + 12016315229, + 12016315217, + 695054690, + 12016315228, + 12016315227, + 695054578 + ], + "geometry": [ + { "lat": 40.8335516, "lon": -74.0101461 }, + { "lat": 40.8335203, "lon": -74.0101714 }, + { "lat": 40.8334871, "lon": -74.0101987 }, + { "lat": 40.8334492, "lon": -74.0102247 }, + { "lat": 40.8334134, "lon": -74.0102457 }, + { "lat": 40.8333734, "lon": -74.0102634 }, + { "lat": 40.8333358, "lon": -74.0102773 }, + { "lat": 40.8332951, "lon": -74.0102913 }, + { "lat": 40.8332447, "lon": -74.0103047 }, + { "lat": 40.8331910, "lon": -74.0103161 }, + { "lat": 40.8331371, "lon": -74.0103247 }, + { "lat": 40.8330602, "lon": -74.0103307 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "40 mph", + "name": "South Broad Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_base_3": "Broad", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Ave", + "tiger:name_type_3": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 60430322, + "bounds": { + "minlat": 40.8335516, + "minlon": -74.0111300, + "maxlat": 40.8338737, + "maxlon": -74.0101461 + }, + "nodes": [ + 752204773, + 5498647263, + 5498647262, + 103205578, + 12016315234, + 5498647264, + 695054688 + ], + "geometry": [ + { "lat": 40.8338628, "lon": -74.0111300 }, + { "lat": 40.8338737, "lon": -74.0110777 }, + { "lat": 40.8338659, "lon": -74.0110165 }, + { "lat": 40.8337823, "lon": -74.0107999 }, + { "lat": 40.8336195, "lon": -74.0102974 }, + { "lat": 40.8336075, "lon": -74.0102612 }, + { "lat": 40.8335516, "lon": -74.0101461 } + ], + "tags": { + "highway": "tertiary", + "junction": "jughandle", + "lanes": "2", + "name": "Edgewater Avenue West", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 60430323, + "bounds": { + "minlat": 40.8205999, + "minlon": -74.0111650, + "maxlat": 40.8207697, + "maxlon": -74.0088261 + }, + "nodes": [ + 103094954, + 103232548, + 103232550, + 5837332132, + 5837332145, + 7769379555, + 8759538640, + 9884491814, + 440208109 + ], + "geometry": [ + { "lat": 40.8207697, "lon": -74.0088261 }, + { "lat": 40.8207373, "lon": -74.0091020 }, + { "lat": 40.8207211, "lon": -74.0093029 }, + { "lat": 40.8207217, "lon": -74.0093145 }, + { "lat": 40.8206816, "lon": -74.0099168 }, + { "lat": 40.8206746, "lon": -74.0100232 }, + { "lat": 40.8206275, "lon": -74.0107434 }, + { "lat": 40.8206071, "lon": -74.0110555 }, + { "lat": 40.8205999, "lon": -74.0111650 } + ], + "tags": { + "highway": "residential", + "name": "Fairview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 60430326, + "bounds": { + "minlat": 40.8207203, + "minlon": -74.0072992, + "maxlat": 40.8242405, + "maxlon": -74.0066855 + }, + "nodes": [ + 103203993, + 13525555882, + 10654412831, + 103203995, + 103112478, + 103203997, + 103203999, + 6370327537, + 103204001, + 103204002, + 103204004, + 103204006, + 912424998 + ], + "geometry": [ + { "lat": 40.8207203, "lon": -74.0072992 }, + { "lat": 40.8207815, "lon": -74.0072856 }, + { "lat": 40.8209278, "lon": -74.0072530 }, + { "lat": 40.8212494, "lon": -74.0071815 }, + { "lat": 40.8218710, "lon": -74.0070131 }, + { "lat": 40.8222716, "lon": -74.0069322 }, + { "lat": 40.8224684, "lon": -74.0068971 }, + { "lat": 40.8229097, "lon": -74.0068716 }, + { "lat": 40.8232311, "lon": -74.0068473 }, + { "lat": 40.8234390, "lon": -74.0068372 }, + { "lat": 40.8236607, "lon": -74.0068033 }, + { "lat": 40.8240413, "lon": -74.0067282 }, + { "lat": 40.8242405, "lon": -74.0066855 } + ], + "tags": { + "highway": "residential", + "name": "Sedore Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sedore", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 60430347, + "bounds": { + "minlat": 40.8307949, + "minlon": -74.0102645, + "maxlat": 40.8320383, + "maxlon": -74.0102096 + }, + "nodes": [ + 752204775, + 5673867000, + 695054699, + 12016315245, + 12016315246, + 695054700, + 12016315247, + 12016315248, + 695054584 + ], + "geometry": [ + { "lat": 40.8320383, "lon": -74.0102645 }, + { "lat": 40.8319016, "lon": -74.0102529 }, + { "lat": 40.8313627, "lon": -74.0102129 }, + { "lat": 40.8312841, "lon": -74.0102104 }, + { "lat": 40.8312194, "lon": -74.0102096 }, + { "lat": 40.8311531, "lon": -74.0102166 }, + { "lat": 40.8310802, "lon": -74.0102271 }, + { "lat": 40.8310236, "lon": -74.0102384 }, + { "lat": 40.8307949, "lon": -74.0102614 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "40 mph", + "name": "South Broad Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_base_3": "Broad", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Ave", + "tiger:name_type_3": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 60433266, + "bounds": { + "minlat": 40.8551300, + "minlon": -74.0282659, + "maxlat": 40.8574024, + "maxlon": -74.0189085 + }, + "nodes": [ + 103244002, + 103126065, + 8668227028, + 103212366, + 103212482, + 103283612, + 103283613, + 103276233, + 8374432357, + 103283614, + 7132864989, + 7132854080, + 103148772, + 10783732075, + 103116870, + 103214357 + ], + "geometry": [ + { "lat": 40.8574024, "lon": -74.0282659 }, + { "lat": 40.8572400, "lon": -74.0275740 }, + { "lat": 40.8571597, "lon": -74.0272309 }, + { "lat": 40.8570770, "lon": -74.0268780 }, + { "lat": 40.8570444, "lon": -74.0267435 }, + { "lat": 40.8569680, "lon": -74.0264130 }, + { "lat": 40.8568660, "lon": -74.0259980 }, + { "lat": 40.8566504, "lon": -74.0251447 }, + { "lat": 40.8564727, "lon": -74.0243954 }, + { "lat": 40.8562810, "lon": -74.0236140 }, + { "lat": 40.8561419, "lon": -74.0230607 }, + { "lat": 40.8560697, "lon": -74.0227738 }, + { "lat": 40.8558966, "lon": -74.0221554 }, + { "lat": 40.8558609, "lon": -74.0220026 }, + { "lat": 40.8555100, "lon": -74.0205010 }, + { "lat": 40.8551300, "lon": -74.0189085 } + ], + "tags": { + "Bergen_County_database_ref": "17", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000411", + "highway": "secondary", + "name": "Mount Vernon Street", + "old_ref": "CR 17", + "ref": "CR 41", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mount Vernon:Mt Vernon", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660" + } +}, +{ + "type": "way", + "id": 60433269, + "bounds": { + "minlat": 40.8504744, + "minlon": -74.0210439, + "maxlat": 40.8551300, + "maxlon": -74.0189085 + }, + "nodes": [ + 103179394, + 103214353, + 103214355, + 103211071, + 7249039278, + 103191716, + 103214357 + ], + "geometry": [ + { "lat": 40.8504744, "lon": -74.0210439 }, + { "lat": 40.8510875, "lon": -74.0207508 }, + { "lat": 40.8518811, "lon": -74.0203838 }, + { "lat": 40.8527175, "lon": -74.0199998 }, + { "lat": 40.8533081, "lon": -74.0197375 }, + { "lat": 40.8539413, "lon": -74.0194563 }, + { "lat": 40.8551300, "lon": -74.0189085 } + ], + "tags": { + "Bergen_County_database_ref": "17;39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "name": "Teaneck Road", + "old_ref": "CR 17", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 60433275, + "bounds": { + "minlat": 40.8551300, + "minlon": -74.0189085, + "maxlat": 40.8614740, + "maxlon": -74.0166860 + }, + "nodes": [ + 103214357, + 103214359, + 103214361, + 103214363, + 103214365, + 103214367, + 103214368, + 8958841361, + 8958841351, + 103143389, + 103143381, + 103214370, + 103214372, + 103214373, + 103156008 + ], + "geometry": [ + { "lat": 40.8551300, "lon": -74.0189085 }, + { "lat": 40.8554190, "lon": -74.0187883 }, + { "lat": 40.8563369, "lon": -74.0184009 }, + { "lat": 40.8569690, "lon": -74.0181510 }, + { "lat": 40.8574200, "lon": -74.0180080 }, + { "lat": 40.8575520, "lon": -74.0179660 }, + { "lat": 40.8577600, "lon": -74.0179000 }, + { "lat": 40.8578668, "lon": -74.0178629 }, + { "lat": 40.8580935, "lon": -74.0177842 }, + { "lat": 40.8584310, "lon": -74.0176670 }, + { "lat": 40.8587370, "lon": -74.0175690 }, + { "lat": 40.8598390, "lon": -74.0172190 }, + { "lat": 40.8606970, "lon": -74.0169380 }, + { "lat": 40.8607380, "lon": -74.0169250 }, + { "lat": 40.8614740, "lon": -74.0166860 } + ], + "tags": { + "Bergen_County_database_ref": "17;39 [sic]", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 60433276, + "bounds": { + "minlat": 40.8548192, + "minlon": -74.0189085, + "maxlat": 40.8551300, + "maxlon": -74.0175831 + }, + "nodes": [ + 103214357, + 103212071, + 5508080960 + ], + "geometry": [ + { "lat": 40.8551300, "lon": -74.0189085 }, + { "lat": 40.8548376, "lon": -74.0176740 }, + { "lat": 40.8548192, "lon": -74.0175831 } + ], + "tags": { + "highway": "residential", + "name": "Mount Vernon Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mount Vernon", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660" + } +}, +{ + "type": "way", + "id": 60433277, + "bounds": { + "minlat": 40.8384289, + "minlon": -73.9970432, + "maxlat": 40.8388950, + "maxlon": -73.9965730 + }, + "nodes": [ + 103139598, + 13524430684, + 103139601, + 440215474 + ], + "geometry": [ + { "lat": 40.8384289, "lon": -73.9970432 }, + { "lat": 40.8384819, "lon": -73.9969895 }, + { "lat": 40.8387830, "lon": -73.9966850 }, + { "lat": 40.8388950, "lon": -73.9965730 } + ], + "tags": { + "highway": "tertiary", + "name": "Shaler Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Shaler", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 60438429, + "bounds": { + "minlat": 40.8465370, + "minlon": -73.9751120, + "maxlat": 40.8468451, + "maxlon": -73.9749176 + }, + "nodes": [ + 103230889, + 103282077 + ], + "geometry": [ + { "lat": 40.8465370, "lon": -73.9751120 }, + { "lat": 40.8468451, "lon": -73.9749176 } + ], + "tags": { + "highway": "residential", + "name": "Abbott Boulevard", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 60438430, + "bounds": { + "minlat": 40.8383260, + "minlon": -73.9803776, + "maxlat": 40.8466850, + "maxlon": -73.9753860 + }, + "nodes": [ + 103230891, + 103232120, + 103282036, + 103282034, + 103182292, + 103186449, + 103235397, + 103272690, + 103282032, + 103143810, + 103282031, + 103282030, + 103282029, + 103282028, + 103264716, + 103230927, + 103149541, + 103166410, + 13525419798, + 103174031 + ], + "geometry": [ + { "lat": 40.8466850, "lon": -73.9753860 }, + { "lat": 40.8460680, "lon": -73.9757860 }, + { "lat": 40.8457410, "lon": -73.9759960 }, + { "lat": 40.8455380, "lon": -73.9761540 }, + { "lat": 40.8454520, "lon": -73.9762300 }, + { "lat": 40.8448970, "lon": -73.9767133 }, + { "lat": 40.8443280, "lon": -73.9772360 }, + { "lat": 40.8437632, "lon": -73.9777396 }, + { "lat": 40.8430740, "lon": -73.9783710 }, + { "lat": 40.8428400, "lon": -73.9785640 }, + { "lat": 40.8425360, "lon": -73.9787810 }, + { "lat": 40.8423450, "lon": -73.9789000 }, + { "lat": 40.8421480, "lon": -73.9789970 }, + { "lat": 40.8419280, "lon": -73.9790790 }, + { "lat": 40.8412070, "lon": -73.9793480 }, + { "lat": 40.8404980, "lon": -73.9796100 }, + { "lat": 40.8397790, "lon": -73.9798770 }, + { "lat": 40.8390755, "lon": -73.9801285 }, + { "lat": 40.8384352, "lon": -73.9803413 }, + { "lat": 40.8383260, "lon": -73.9803776 } + ], + "tags": { + "highway": "residential", + "name": "Abbott Boulevard", + "oneway": "yes", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 60438434, + "bounds": { + "minlat": 40.8073745, + "minlon": -73.9921242, + "maxlat": 40.8085088, + "maxlon": -73.9911055 + }, + "nodes": [ + 752618821, + 752618824, + 103181698, + 5482328592, + 103181699, + 5482328598, + 5482328601, + 752618827 + ], + "geometry": [ + { "lat": 40.8073745, "lon": -73.9921242 }, + { "lat": 40.8076844, "lon": -73.9918470 }, + { "lat": 40.8078418, "lon": -73.9916874 }, + { "lat": 40.8079077, "lon": -73.9916036 }, + { "lat": 40.8079524, "lon": -73.9915466 }, + { "lat": 40.8080314, "lon": -73.9914656 }, + { "lat": 40.8082800, "lon": -73.9912781 }, + { "lat": 40.8085088, "lon": -73.9911055 } + ], + "tags": { + "highway": "residential", + "name": "Old River Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old River", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 60438436, + "bounds": { + "minlat": 40.8085088, + "minlon": -73.9911055, + "maxlat": 40.8133378, + "maxlon": -73.9877923 + }, + "nodes": [ + 752618827, + 8260603336, + 8260603324, + 103181700, + 103181701, + 103179723, + 103179726, + 103181703, + 103181705, + 103181706, + 103181707, + 103181708, + 103181709, + 103181711, + 103181713, + 103181715, + 103181717, + 7289750204, + 103181718, + 103181719, + 103181720, + 103181721, + 103181722, + 103181723, + 103181725 + ], + "geometry": [ + { "lat": 40.8085088, "lon": -73.9911055 }, + { "lat": 40.8085268, "lon": -73.9910931 }, + { "lat": 40.8089075, "lon": -73.9908299 }, + { "lat": 40.8089253, "lon": -73.9908176 }, + { "lat": 40.8095740, "lon": -73.9902580 }, + { "lat": 40.8096720, "lon": -73.9901626 }, + { "lat": 40.8098625, "lon": -73.9899892 }, + { "lat": 40.8100190, "lon": -73.9898100 }, + { "lat": 40.8101192, "lon": -73.9896700 }, + { "lat": 40.8103160, "lon": -73.9894430 }, + { "lat": 40.8103250, "lon": -73.9894320 }, + { "lat": 40.8104840, "lon": -73.9892660 }, + { "lat": 40.8106520, "lon": -73.9891160 }, + { "lat": 40.8107987, "lon": -73.9889891 }, + { "lat": 40.8109860, "lon": -73.9888660 }, + { "lat": 40.8111090, "lon": -73.9887810 }, + { "lat": 40.8113600, "lon": -73.9886280 }, + { "lat": 40.8115494, "lon": -73.9885130 }, + { "lat": 40.8125260, "lon": -73.9879197 }, + { "lat": 40.8125700, "lon": -73.9878940 }, + { "lat": 40.8126951, "lon": -73.9878557 }, + { "lat": 40.8127670, "lon": -73.9878430 }, + { "lat": 40.8128750, "lon": -73.9878440 }, + { "lat": 40.8132310, "lon": -73.9878040 }, + { "lat": 40.8133378, "lon": -73.9877923 } + ], + "tags": { + "highway": "residential", + "name": "Old River Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old River", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 60438438, + "bounds": { + "minlat": 40.8040613, + "minlon": -73.9977802, + "maxlat": 40.8057483, + "maxlon": -73.9961787 + }, + "nodes": [ + 103861215, + 103869222, + 103869224, + 103869226, + 5465261900, + 103869228 + ], + "geometry": [ + { "lat": 40.8040613, "lon": -73.9961787 }, + { "lat": 40.8044420, "lon": -73.9964730 }, + { "lat": 40.8049819, "lon": -73.9969245 }, + { "lat": 40.8055706, "lon": -73.9976005 }, + { "lat": 40.8056909, "lon": -73.9977199 }, + { "lat": 40.8057483, "lon": -73.9977802 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081243", + "highway": "secondary", + "name": "Woodcliff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Woodcliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 60438448, + "bounds": { + "minlat": 40.7959921, + "minlon": -73.9985700, + "maxlat": 40.7960309, + "maxlon": -73.9984807 + }, + "nodes": [ + 103870458, + 5570105474 + ], + "geometry": [ + { "lat": 40.7959921, "lon": -73.9984807 }, + { "lat": 40.7960309, "lon": -73.9985700 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "77th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "77th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 60438454, + "bounds": { + "minlat": 40.7900091, + "minlon": -74.0006732, + "maxlat": 40.7910418, + "maxlon": -74.0003564 + }, + "nodes": [ + 752619482, + 752619486, + 5482160106, + 752619489 + ], + "geometry": [ + { "lat": 40.7900091, "lon": -74.0006627 }, + { "lat": 40.7900515, "lon": -74.0006732 }, + { "lat": 40.7903220, "lon": -74.0005970 }, + { "lat": 40.7910418, "lon": -74.0003564 } + ], + "tags": { + "highway": "tertiary", + "layer": "-1", + "name": "Ferry Road", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Ferry", + "tiger:name_type": "Rd", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 60438455, + "bounds": { + "minlat": 40.7910418, + "minlon": -74.0009914, + "maxlat": 40.7922222, + "maxlon": -74.0001636 + }, + "nodes": [ + 752619489, + 752619506, + 752619512, + 752619518, + 752619521, + 752619525, + 752619527, + 752619531, + 7468537640, + 752619534 + ], + "geometry": [ + { "lat": 40.7910418, "lon": -74.0003564 }, + { "lat": 40.7912983, "lon": -74.0002548 }, + { "lat": 40.7916019, "lon": -74.0001636 }, + { "lat": 40.7917248, "lon": -74.0001689 }, + { "lat": 40.7918517, "lon": -74.0002025 }, + { "lat": 40.7919807, "lon": -74.0003472 }, + { "lat": 40.7921642, "lon": -74.0007000 }, + { "lat": 40.7922071, "lon": -74.0008032 }, + { "lat": 40.7922222, "lon": -74.0008682 }, + { "lat": 40.7922072, "lon": -74.0009914 } + ], + "tags": { + "highway": "tertiary", + "name": "Ferry Road", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Ferry", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 60438456, + "bounds": { + "minlat": 40.7960834, + "minlon": -73.9984760, + "maxlat": 40.7993780, + "maxlon": -73.9968360 + }, + "nodes": [ + 752619553, + 103870462, + 103870465, + 103870466, + 4727867830, + 103868267, + 4727867832, + 103870467, + 103870468, + 103870469, + 103870471, + 103870473, + 103864243 + ], + "geometry": [ + { "lat": 40.7960834, "lon": -73.9984760 }, + { "lat": 40.7967525, "lon": -73.9984577 }, + { "lat": 40.7969740, "lon": -73.9983820 }, + { "lat": 40.7971650, "lon": -73.9982880 }, + { "lat": 40.7973755, "lon": -73.9981349 }, + { "lat": 40.7974366, "lon": -73.9980935 }, + { "lat": 40.7974794, "lon": -73.9980344 }, + { "lat": 40.7976739, "lon": -73.9978300 }, + { "lat": 40.7983740, "lon": -73.9971990 }, + { "lat": 40.7986810, "lon": -73.9969630 }, + { "lat": 40.7988190, "lon": -73.9968961 }, + { "lat": 40.7989160, "lon": -73.9968680 }, + { "lat": 40.7993780, "lon": -73.9968360 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 60438458, + "bounds": { + "minlat": 40.7957495, + "minlon": -73.9984933, + "maxlat": 40.7960834, + "maxlon": -73.9984760 + }, + "nodes": [ + 752619601, + 6918402337, + 103870458, + 752619553 + ], + "geometry": [ + { "lat": 40.7957495, "lon": -73.9984933 }, + { "lat": 40.7958155, "lon": -73.9984899 }, + { "lat": 40.7959921, "lon": -73.9984807 }, + { "lat": 40.7960834, "lon": -73.9984760 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 60438723, + "bounds": { + "minlat": 40.8532212, + "minlon": -73.9680031, + "maxlat": 40.8534890, + "maxlon": -73.9672490 + }, + "nodes": [ + 4204777289, + 5330468397, + 10000920091, + 298809690 + ], + "geometry": [ + { "lat": 40.8534890, "lon": -73.9680031 }, + { "lat": 40.8533940, "lon": -73.9677326 }, + { "lat": 40.8532700, "lon": -73.9673857 }, + { "lat": 40.8532212, "lon": -73.9672490 } + ], + "tags": { + "highway": "primary", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 60438724, + "bounds": { + "minlat": 40.8542790, + "minlon": -73.9703151, + "maxlat": 40.8544127, + "maxlon": -73.9700589 + }, + "nodes": [ + 103280496, + 7930510629, + 7930510615, + 103280494 + ], + "geometry": [ + { "lat": 40.8544127, "lon": -73.9703151 }, + { "lat": 40.8543699, "lon": -73.9702382 }, + { "lat": 40.8543258, "lon": -73.9701548 }, + { "lat": 40.8542790, "lon": -73.9700589 } + ], + "tags": { + "highway": "primary", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 60438727, + "bounds": { + "minlat": 40.8564317, + "minlon": -73.9742222, + "maxlat": 40.8569134, + "maxlon": -73.9731305 + }, + "nodes": [ + 103141031, + 7930510631, + 103141030, + 9452566125, + 103141028, + 103141027, + 7930510619, + 103141026, + 7930510625, + 9452566129, + 9568936478 + ], + "geometry": [ + { "lat": 40.8569134, "lon": -73.9742222 }, + { "lat": 40.8568560, "lon": -73.9740200 }, + { "lat": 40.8568132, "lon": -73.9738807 }, + { "lat": 40.8568017, "lon": -73.9738470 }, + { "lat": 40.8567746, "lon": -73.9737665 }, + { "lat": 40.8567335, "lon": -73.9736654 }, + { "lat": 40.8566856, "lon": -73.9735620 }, + { "lat": 40.8566342, "lon": -73.9734657 }, + { "lat": 40.8565790, "lon": -73.9733706 }, + { "lat": 40.8565600, "lon": -73.9733399 }, + { "lat": 40.8564317, "lon": -73.9731305 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "name": "Kelby Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kelby", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 60438731, + "bounds": { + "minlat": 40.8559525, + "minlon": -73.9769232, + "maxlat": 40.8562671, + "maxlon": -73.9765712 + }, + "nodes": [ + 103306637, + 103318349, + 103318351, + 103285693 + ], + "geometry": [ + { "lat": 40.8559525, "lon": -73.9769232 }, + { "lat": 40.8560365, "lon": -73.9768534 }, + { "lat": 40.8561542, "lon": -73.9767322 }, + { "lat": 40.8562671, "lon": -73.9765712 } + ], + "tags": { + "highway": "secondary", + "name": "Edwin Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edwin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 60438732, + "bounds": { + "minlat": 40.8562671, + "minlon": -73.9765712, + "maxlat": 40.8572497, + "maxlon": -73.9759942 + }, + "nodes": [ + 103285693, + 103318352, + 6896007130, + 103318354, + 103318355, + 7417938948, + 7417938949 + ], + "geometry": [ + { "lat": 40.8562671, "lon": -73.9765712 }, + { "lat": 40.8566940, "lon": -73.9762413 }, + { "lat": 40.8567860, "lon": -73.9761706 }, + { "lat": 40.8569148, "lon": -73.9761271 }, + { "lat": 40.8570211, "lon": -73.9760705 }, + { "lat": 40.8571501, "lon": -73.9760212 }, + { "lat": 40.8572497, "lon": -73.9759942 } + ], + "tags": { + "highway": "residential", + "name": "Edwin Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edwin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 60438734, + "bounds": { + "minlat": 40.8558277, + "minlon": -73.9726533, + "maxlat": 40.8561187, + "maxlon": -73.9722974 + }, + "nodes": [ + 103132816, + 13620890044, + 8942003713 + ], + "geometry": [ + { "lat": 40.8561187, "lon": -73.9726533 }, + { "lat": 40.8560689, "lon": -73.9725924 }, + { "lat": 40.8558277, "lon": -73.9722974 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 60438735, + "bounds": { + "minlat": 40.8564277, + "minlon": -73.9692866, + "maxlat": 40.8582738, + "maxlon": -73.9674720 + }, + "nodes": [ + 7403552778, + 2905087684, + 11170278552, + 2822040427, + 5108596013, + 5108596609, + 4629849044, + 2821779893, + 5108596613, + 5108598195, + 5108597590, + 12021336844, + 12021336845, + 5108599812, + 12021336846 + ], + "geometry": [ + { "lat": 40.8564277, "lon": -73.9692866 }, + { "lat": 40.8566141, "lon": -73.9691008 }, + { "lat": 40.8566450, "lon": -73.9690700 }, + { "lat": 40.8572777, "lon": -73.9684393 }, + { "lat": 40.8574373, "lon": -73.9682802 }, + { "lat": 40.8575254, "lon": -73.9681924 }, + { "lat": 40.8576897, "lon": -73.9680286 }, + { "lat": 40.8577306, "lon": -73.9679879 }, + { "lat": 40.8578074, "lon": -73.9679102 }, + { "lat": 40.8579499, "lon": -73.9677659 }, + { "lat": 40.8581532, "lon": -73.9675615 }, + { "lat": 40.8581798, "lon": -73.9675375 }, + { "lat": 40.8582124, "lon": -73.9675114 }, + { "lat": 40.8582429, "lon": -73.9674916 }, + { "lat": 40.8582738, "lon": -73.9674720 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Center Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 60438736, + "bounds": { + "minlat": 40.8550141, + "minlon": -73.9671501, + "maxlat": 40.8550917, + "maxlon": -73.9667021 + }, + "nodes": [ + 76465636, + 3257513624, + 12020552480, + 4207161475 + ], + "geometry": [ + { "lat": 40.8550141, "lon": -73.9667021 }, + { "lat": 40.8550610, "lon": -73.9669939 }, + { "lat": 40.8550763, "lon": -73.9670743 }, + { "lat": 40.8550917, "lon": -73.9671501 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "Bridge Plaza North", + "name_1": "Cross Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge", + "tiger:name_base_1": "Cross", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Plz", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 60438737, + "bounds": { + "minlat": 40.8560340, + "minlon": -73.9703883, + "maxlat": 40.8564445, + "maxlon": -73.9696790 + }, + "nodes": [ + 103115840, + 11170628918, + 7400259273, + 7400259267, + 4629849048, + 103115842 + ], + "geometry": [ + { "lat": 40.8560340, "lon": -73.9696790 }, + { "lat": 40.8560775, "lon": -73.9697537 }, + { "lat": 40.8563043, "lon": -73.9701425 }, + { "lat": 40.8563637, "lon": -73.9702444 }, + { "lat": 40.8564175, "lon": -73.9703366 }, + { "lat": 40.8564445, "lon": -73.9703883 } + ], + "tags": { + "alt_name": "Cross Street", + "highway": "primary", + "name": "Bridge Plaza North", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge", + "tiger:name_base_1": "Cross", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Plz", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 60438738, + "bounds": { + "minlat": 40.8566620, + "minlon": -73.9720309, + "maxlat": 40.8571034, + "maxlon": -73.9715467 + }, + "nodes": [ + 76465370, + 12020552500, + 11461733255, + 530754337 + ], + "geometry": [ + { "lat": 40.8571034, "lon": -73.9715467 }, + { "lat": 40.8570558, "lon": -73.9715998 }, + { "lat": 40.8567380, "lon": -73.9719448 }, + { "lat": 40.8566620, "lon": -73.9720309 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Linwood Avenue", + "oneway": "yes", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 60438915, + "bounds": { + "minlat": 40.8555093, + "minlon": -73.9702052, + "maxlat": 40.8556340, + "maxlon": -73.9700867 + }, + "nodes": [ + 752658804, + 103174612 + ], + "geometry": [ + { "lat": 40.8555093, "lon": -73.9702052 }, + { "lat": 40.8556340, "lon": -73.9700867 } + ], + "tags": { + "bridge": "yes", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "name": "Center Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 60438916, + "bounds": { + "minlat": 40.8552493, + "minlon": -73.9704207, + "maxlat": 40.8555093, + "maxlon": -73.9702052 + }, + "nodes": [ + 752658821, + 7926245202, + 7926245201, + 7926245200, + 752658804 + ], + "geometry": [ + { "lat": 40.8552493, "lon": -73.9704207 }, + { "lat": 40.8553148, "lon": -73.9703720 }, + { "lat": 40.8553819, "lon": -73.9703172 }, + { "lat": 40.8554463, "lon": -73.9702631 }, + { "lat": 40.8555093, "lon": -73.9702052 } + ], + "tags": { + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "Center Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 60438917, + "bounds": { + "minlat": 40.8551486, + "minlon": -73.9704910, + "maxlat": 40.8552068, + "maxlon": -73.9704513 + }, + "nodes": [ + 752658835, + 660549324 + ], + "geometry": [ + { "lat": 40.8551486, "lon": -73.9704910 }, + { "lat": 40.8552068, "lon": -73.9704513 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Center Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 60438918, + "bounds": { + "minlat": 40.8556340, + "minlon": -73.9700867, + "maxlat": 40.8557965, + "maxlon": -73.9699204 + }, + "nodes": [ + 103174612, + 103099720 + ], + "geometry": [ + { "lat": 40.8556340, "lon": -73.9700867 }, + { "lat": 40.8557965, "lon": -73.9699204 } + ], + "tags": { + "bridge": "yes", + "highway": "primary", + "lanes": "3", + "layer": "1", + "name": "Center Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left|through|right" + } +}, +{ + "type": "way", + "id": 60501802, + "bounds": { + "minlat": 40.7911286, + "minlon": -73.9989127, + "maxlat": 40.7912938, + "maxlon": -73.9988052 + }, + "nodes": [ + 4205813741, + 103861697, + 10013380689 + ], + "geometry": [ + { "lat": 40.7911286, "lon": -73.9989127 }, + { "lat": 40.7912399, "lon": -73.9988368 }, + { "lat": 40.7912938, "lon": -73.9988052 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "shared_lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 60666511, + "bounds": { + "minlat": 40.7291796, + "minlon": -73.9070673, + "maxlat": 40.7297398, + "maxlon": -73.9068319 + }, + "nodes": [ + 759335959, + 10203936787, + 9239149449, + 9239498872, + 6791748482, + 6791748480, + 6791748478, + 6791748476, + 759335968 + ], + "geometry": [ + { "lat": 40.7291796, "lon": -73.9070673 }, + { "lat": 40.7292306, "lon": -73.9070389 }, + { "lat": 40.7292419, "lon": -73.9070326 }, + { "lat": 40.7293057, "lon": -73.9069968 }, + { "lat": 40.7293553, "lon": -73.9069689 }, + { "lat": 40.7294246, "lon": -73.9069379 }, + { "lat": 40.7295506, "lon": -73.9068827 }, + { "lat": 40.7296810, "lon": -73.9068392 }, + { "lat": 40.7297398, "lon": -73.9068319 } + ], + "tags": { + "access": "unknown", + "covered": "no", + "est_width": "6", + "highway": "service", + "source": "Yahoo" + } +}, +{ + "type": "way", + "id": 60666512, + "bounds": { + "minlat": 40.7296910, + "minlon": -73.9068319, + "maxlat": 40.7346839, + "maxlon": -73.9026991 + }, + "nodes": [ + 759335968, + 759335997, + 759336001, + 759336004, + 9239357813, + 9239498851, + 6791737168, + 759336007, + 6791748393, + 759336010, + 6791734295, + 6791737174, + 6791734296, + 9239375923, + 6791734297, + 6791734288, + 9239375922, + 9239375919, + 9239375917, + 9239375918, + 9239498834, + 6791737177, + 759336030, + 9239361116, + 759336032, + 9239361115, + 6791737182, + 9239386726, + 6791748426, + 6791748423, + 9239454716, + 6791755793, + 9239361112, + 6791729773, + 9239361109, + 6791748386, + 9239361106, + 6791729775, + 6791748464, + 6791748391, + 9239343629, + 6791748389, + 6791748474, + 759336048, + 9239343628, + 6791748432, + 9239361103, + 6791748468, + 9239361100, + 9239459104, + 9239459100, + 6791734307, + 6791748459, + 759336051, + 9239343623, + 9239343622, + 6791748446, + 6791748444, + 9239459020, + 6791734303, + 6791748440, + 6791734301, + 6791729742, + 6791748435, + 6791743275, + 6791729738, + 6791748437, + 6791748454, + 6791734305, + 6791748452, + 6791748456, + 6791729739, + 6791748450, + 9239202350, + 9239202351, + 10203944889, + 9239202353, + 759336059 + ], + "geometry": [ + { "lat": 40.7297398, "lon": -73.9068319 }, + { "lat": 40.7296910, "lon": -73.9066260 }, + { "lat": 40.7297165, "lon": -73.9065758 }, + { "lat": 40.7297732, "lon": -73.9065409 }, + { "lat": 40.7298535, "lon": -73.9065268 }, + { "lat": 40.7299059, "lon": -73.9065177 }, + { "lat": 40.7299844, "lon": -73.9065041 }, + { "lat": 40.7300470, "lon": -73.9064843 }, + { "lat": 40.7301180, "lon": -73.9064577 }, + { "lat": 40.7301721, "lon": -73.9064293 }, + { "lat": 40.7302328, "lon": -73.9063857 }, + { "lat": 40.7302823, "lon": -73.9063476 }, + { "lat": 40.7303387, "lon": -73.9062963 }, + { "lat": 40.7303894, "lon": -73.9062325 }, + { "lat": 40.7304301, "lon": -73.9061594 }, + { "lat": 40.7304992, "lon": -73.9059912 }, + { "lat": 40.7305428, "lon": -73.9059123 }, + { "lat": 40.7305858, "lon": -73.9058493 }, + { "lat": 40.7306831, "lon": -73.9057324 }, + { "lat": 40.7307361, "lon": -73.9056816 }, + { "lat": 40.7307858, "lon": -73.9056268 }, + { "lat": 40.7308487, "lon": -73.9055245 }, + { "lat": 40.7308755, "lon": -73.9054747 }, + { "lat": 40.7309244, "lon": -73.9054026 }, + { "lat": 40.7309847, "lon": -73.9053317 }, + { "lat": 40.7310637, "lon": -73.9052586 }, + { "lat": 40.7311733, "lon": -73.9051799 }, + { "lat": 40.7312411, "lon": -73.9051420 }, + { "lat": 40.7313006, "lon": -73.9051087 }, + { "lat": 40.7313537, "lon": -73.9050775 }, + { "lat": 40.7313678, "lon": -73.9050659 }, + { "lat": 40.7314368, "lon": -73.9050091 }, + { "lat": 40.7314701, "lon": -73.9049722 }, + { "lat": 40.7315172, "lon": -73.9049201 }, + { "lat": 40.7315628, "lon": -73.9048655 }, + { "lat": 40.7316073, "lon": -73.9048058 }, + { "lat": 40.7316549, "lon": -73.9047441 }, + { "lat": 40.7317093, "lon": -73.9046885 }, + { "lat": 40.7318072, "lon": -73.9046068 }, + { "lat": 40.7318768, "lon": -73.9045487 }, + { "lat": 40.7319512, "lon": -73.9044867 }, + { "lat": 40.7319701, "lon": -73.9044709 }, + { "lat": 40.7320024, "lon": -73.9044440 }, + { "lat": 40.7320453, "lon": -73.9044082 }, + { "lat": 40.7321194, "lon": -73.9043464 }, + { "lat": 40.7321965, "lon": -73.9042821 }, + { "lat": 40.7322416, "lon": -73.9042445 }, + { "lat": 40.7323231, "lon": -73.9041765 }, + { "lat": 40.7323710, "lon": -73.9041366 }, + { "lat": 40.7324360, "lon": -73.9040824 }, + { "lat": 40.7324905, "lon": -73.9040369 }, + { "lat": 40.7325826, "lon": -73.9039600 }, + { "lat": 40.7326418, "lon": -73.9039106 }, + { "lat": 40.7327164, "lon": -73.9038485 }, + { "lat": 40.7327311, "lon": -73.9038362 }, + { "lat": 40.7329017, "lon": -73.9041919 }, + { "lat": 40.7329623, "lon": -73.9041412 }, + { "lat": 40.7331250, "lon": -73.9040048 }, + { "lat": 40.7332236, "lon": -73.9039223 }, + { "lat": 40.7333219, "lon": -73.9038399 }, + { "lat": 40.7333893, "lon": -73.9037835 }, + { "lat": 40.7334856, "lon": -73.9037028 }, + { "lat": 40.7335590, "lon": -73.9036413 }, + { "lat": 40.7336580, "lon": -73.9035584 }, + { "lat": 40.7337278, "lon": -73.9034999 }, + { "lat": 40.7338949, "lon": -73.9033600 }, + { "lat": 40.7339704, "lon": -73.9032967 }, + { "lat": 40.7340238, "lon": -73.9032520 }, + { "lat": 40.7340608, "lon": -73.9032210 }, + { "lat": 40.7340865, "lon": -73.9031995 }, + { "lat": 40.7341779, "lon": -73.9031229 }, + { "lat": 40.7342298, "lon": -73.9030795 }, + { "lat": 40.7343075, "lon": -73.9030144 }, + { "lat": 40.7343929, "lon": -73.9029429 }, + { "lat": 40.7346121, "lon": -73.9027592 }, + { "lat": 40.7346266, "lon": -73.9027471 }, + { "lat": 40.7346394, "lon": -73.9027364 }, + { "lat": 40.7346839, "lon": -73.9026991 } + ], + "tags": { + "access": "unknown", + "bicycle": "no", + "covered": "no", + "est_width": "6", + "highway": "service", + "name": "Right Section", + "source": "Yahoo" + } +}, +{ + "type": "way", + "id": 60666513, + "bounds": { + "minlat": 40.7297398, + "minlon": -73.9098025, + "maxlat": 40.7330778, + "maxlon": -73.9068319 + }, + "nodes": [ + 759335968, + 9239498854, + 759336076, + 759336080, + 9239498845, + 9239498843, + 9239498898, + 9239498900, + 9239498902, + 9239498853, + 759336088, + 9239519347, + 9239519345, + 6791748413, + 6791748409, + 9239587657, + 759336092, + 759336095, + 759336108, + 759336110, + 9239519349, + 9239519350, + 9239645619, + 9239645620, + 9239519386, + 6794164060, + 9239645621, + 6794164053, + 6794164055, + 6794164051, + 9239645622, + 6794164049, + 6794164045, + 6794164043, + 6794164041, + 9239645623, + 9239645624, + 9239645625, + 9239645626, + 9239645627 + ], + "geometry": [ + { "lat": 40.7297398, "lon": -73.9068319 }, + { "lat": 40.7298004, "lon": -73.9068456 }, + { "lat": 40.7298588, "lon": -73.9068896 }, + { "lat": 40.7299670, "lon": -73.9070552 }, + { "lat": 40.7300462, "lon": -73.9071912 }, + { "lat": 40.7301225, "lon": -73.9073304 }, + { "lat": 40.7302164, "lon": -73.9075268 }, + { "lat": 40.7302621, "lon": -73.9076222 }, + { "lat": 40.7303105, "lon": -73.9077234 }, + { "lat": 40.7305135, "lon": -73.9081479 }, + { "lat": 40.7306972, "lon": -73.9085258 }, + { "lat": 40.7307275, "lon": -73.9086101 }, + { "lat": 40.7307696, "lon": -73.9087767 }, + { "lat": 40.7307919, "lon": -73.9088661 }, + { "lat": 40.7308619, "lon": -73.9091670 }, + { "lat": 40.7308906, "lon": -73.9092861 }, + { "lat": 40.7309965, "lon": -73.9097253 }, + { "lat": 40.7310352, "lon": -73.9097736 }, + { "lat": 40.7310910, "lon": -73.9098025 }, + { "lat": 40.7311497, "lon": -73.9097954 }, + { "lat": 40.7311948, "lon": -73.9097765 }, + { "lat": 40.7312165, "lon": -73.9097675 }, + { "lat": 40.7312801, "lon": -73.9097409 }, + { "lat": 40.7316072, "lon": -73.9096041 }, + { "lat": 40.7316927, "lon": -73.9095684 }, + { "lat": 40.7318442, "lon": -73.9095050 }, + { "lat": 40.7319353, "lon": -73.9094669 }, + { "lat": 40.7319956, "lon": -73.9094417 }, + { "lat": 40.7320441, "lon": -73.9094214 }, + { "lat": 40.7320977, "lon": -73.9093990 }, + { "lat": 40.7323131, "lon": -73.9093089 }, + { "lat": 40.7323730, "lon": -73.9092838 }, + { "lat": 40.7324241, "lon": -73.9092625 }, + { "lat": 40.7324803, "lon": -73.9092390 }, + { "lat": 40.7326085, "lon": -73.9091854 }, + { "lat": 40.7326930, "lon": -73.9091500 }, + { "lat": 40.7327784, "lon": -73.9091143 }, + { "lat": 40.7329410, "lon": -73.9090463 }, + { "lat": 40.7330352, "lon": -73.9090069 }, + { "lat": 40.7330778, "lon": -73.9089891 } + ], + "tags": { + "access": "unknown", + "bicycle": "no", + "covered": "no", + "est_width": "6", + "highway": "service", + "name": "Left Section", + "source": "Yahoo" + } +}, +{ + "type": "way", + "id": 60812034, + "bounds": { + "minlat": 40.8342111, + "minlon": -73.9487730, + "maxlat": 40.8350252, + "maxlon": -73.9467835 + }, + "nodes": [ + 587934268, + 12998931048, + 2513517573, + 2504882450, + 12998931054, + 2504882447, + 761293063, + 761293064, + 761293065, + 12998931034, + 12998931033, + 761293068, + 12998931032, + 2847627056, + 12998931031, + 12998931030, + 761293072, + 761323191 + ], + "geometry": [ + { "lat": 40.8350252, "lon": -73.9467835 }, + { "lat": 40.8350041, "lon": -73.9468946 }, + { "lat": 40.8349650, "lon": -73.9471079 }, + { "lat": 40.8348786, "lon": -73.9475815 }, + { "lat": 40.8348646, "lon": -73.9476120 }, + { "lat": 40.8348411, "lon": -73.9476405 }, + { "lat": 40.8348030, "lon": -73.9476795 }, + { "lat": 40.8344109, "lon": -73.9479650 }, + { "lat": 40.8343254, "lon": -73.9480509 }, + { "lat": 40.8342842, "lon": -73.9481042 }, + { "lat": 40.8342547, "lon": -73.9481552 }, + { "lat": 40.8342323, "lon": -73.9482097 }, + { "lat": 40.8342197, "lon": -73.9482772 }, + { "lat": 40.8342111, "lon": -73.9483404 }, + { "lat": 40.8342136, "lon": -73.9484093 }, + { "lat": 40.8342172, "lon": -73.9484717 }, + { "lat": 40.8342289, "lon": -73.9485315 }, + { "lat": 40.8343209, "lon": -73.9487730 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 60813032, + "bounds": { + "minlat": 40.8342323, + "minlon": -73.9491723, + "maxlat": 40.8343731, + "maxlon": -73.9488218 + }, + "nodes": [ + 13105137065, + 9935945725, + 823952247 + ], + "geometry": [ + { "lat": 40.8343731, "lon": -73.9491723 }, + { "lat": 40.8342989, "lon": -73.9489874 }, + { "lat": 40.8342323, "lon": -73.9488218 } + ], + "tags": { + "alt_name": "Robert Lowery Way", + "bridge": "yes", + "cycleway:right": "no", + "description": "This honorary street name memorializes Robert Lowery.", + "hgv": "destination", + "highway": "secondary", + "historic": "memorial", + "lane_markings": "no", + "layer": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 60813173, + "bounds": { + "minlat": 40.8334848, + "minlon": -73.9476826, + "maxlat": 40.8344225, + "maxlon": -73.9454338 + }, + "nodes": [ + 761329683, + 11296617469, + 9703359675, + 42428958 + ], + "geometry": [ + { "lat": 40.8344225, "lon": -73.9476826 }, + { "lat": 40.8343891, "lon": -73.9475752 }, + { "lat": 40.8335263, "lon": -73.9455279 }, + { "lat": 40.8334848, "lon": -73.9454338 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 156th Street", + "name_1": "West 156 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "156th", + "tiger:name_base_1": "156", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 60836952, + "bounds": { + "minlat": 40.7286015, + "minlon": -73.9158866, + "maxlat": 40.7306725, + "maxlon": -73.9120713 + }, + "nodes": [ + 277390488, + 10087637321, + 10087637320, + 10087637319, + 10087637318, + 10087637317, + 10087637316, + 761564649, + 10087637315, + 10087637314, + 10087637313, + 761564650, + 10087637312, + 9888602267, + 10087637311, + 10087637310, + 10087637309, + 10087637308, + 761564651, + 10087637307, + 10087637306, + 761564653, + 10087637305, + 10087637304, + 10087637303, + 10087637299, + 10087637300, + 10087637301, + 761564654, + 10087637302, + 10087637298, + 10087637297, + 10087637296, + 10087637295, + 10087637292, + 10087637294, + 10087637293, + 761564655, + 10087637288, + 10087637291, + 10087637290, + 10087637289, + 761564656, + 10087637287, + 10087637286, + 10087637285, + 761564657, + 10087637284, + 10087637283, + 10087637282, + 10087637281, + 9888602269 + ], + "geometry": [ + { "lat": 40.7306725, "lon": -73.9158866 }, + { "lat": 40.7306531, "lon": -73.9158665 }, + { "lat": 40.7306305, "lon": -73.9158456 }, + { "lat": 40.7306051, "lon": -73.9158263 }, + { "lat": 40.7305778, "lon": -73.9158076 }, + { "lat": 40.7305368, "lon": -73.9157856 }, + { "lat": 40.7305180, "lon": -73.9157718 }, + { "lat": 40.7305021, "lon": -73.9157545 }, + { "lat": 40.7304888, "lon": -73.9157349 }, + { "lat": 40.7304772, "lon": -73.9157113 }, + { "lat": 40.7304673, "lon": -73.9156828 }, + { "lat": 40.7304606, "lon": -73.9156546 }, + { "lat": 40.7303097, "lon": -73.9147710 }, + { "lat": 40.7302994, "lon": -73.9147042 }, + { "lat": 40.7302928, "lon": -73.9146460 }, + { "lat": 40.7302904, "lon": -73.9145818 }, + { "lat": 40.7302908, "lon": -73.9145153 }, + { "lat": 40.7302964, "lon": -73.9144248 }, + { "lat": 40.7302986, "lon": -73.9143523 }, + { "lat": 40.7302976, "lon": -73.9142848 }, + { "lat": 40.7302930, "lon": -73.9142166 }, + { "lat": 40.7302856, "lon": -73.9141600 }, + { "lat": 40.7302780, "lon": -73.9141004 }, + { "lat": 40.7302705, "lon": -73.9140579 }, + { "lat": 40.7302599, "lon": -73.9140047 }, + { "lat": 40.7298184, "lon": -73.9121429 }, + { "lat": 40.7298105, "lon": -73.9121192 }, + { "lat": 40.7297982, "lon": -73.9120963 }, + { "lat": 40.7297851, "lon": -73.9120823 }, + { "lat": 40.7297703, "lon": -73.9120745 }, + { "lat": 40.7297564, "lon": -73.9120713 }, + { "lat": 40.7297400, "lon": -73.9120744 }, + { "lat": 40.7297225, "lon": -73.9120791 }, + { "lat": 40.7293603, "lon": -73.9122211 }, + { "lat": 40.7293119, "lon": -73.9122389 }, + { "lat": 40.7292751, "lon": -73.9122507 }, + { "lat": 40.7292385, "lon": -73.9122592 }, + { "lat": 40.7291969, "lon": -73.9122647 }, + { "lat": 40.7286977, "lon": -73.9122931 }, + { "lat": 40.7286746, "lon": -73.9122955 }, + { "lat": 40.7286512, "lon": -73.9123023 }, + { "lat": 40.7286326, "lon": -73.9123150 }, + { "lat": 40.7286178, "lon": -73.9123311 }, + { "lat": 40.7286089, "lon": -73.9123527 }, + { "lat": 40.7286033, "lon": -73.9123786 }, + { "lat": 40.7286015, "lon": -73.9124093 }, + { "lat": 40.7286474, "lon": -73.9146276 }, + { "lat": 40.7286509, "lon": -73.9146623 }, + { "lat": 40.7286572, "lon": -73.9146893 }, + { "lat": 40.7286665, "lon": -73.9147112 }, + { "lat": 40.7286777, "lon": -73.9147279 }, + { "lat": 40.7286921, "lon": -73.9147403 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Matthew Avenue", + "source": "Yahoo", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 60836961, + "bounds": { + "minlat": 40.7291576, + "minlon": -73.9171629, + "maxlat": 40.7294384, + "maxlon": -73.9157108 + }, + "nodes": [ + 761564665, + 10087637275, + 10087637274, + 10087637273, + 9888602268, + 761564666, + 10087637269, + 10087637272, + 10087637271, + 10087637270, + 761564667 + ], + "geometry": [ + { "lat": 40.7291716, "lon": -73.9157108 }, + { "lat": 40.7291628, "lon": -73.9157392 }, + { "lat": 40.7291583, "lon": -73.9157658 }, + { "lat": 40.7291576, "lon": -73.9157913 }, + { "lat": 40.7291602, "lon": -73.9158145 }, + { "lat": 40.7292862, "lon": -73.9164522 }, + { "lat": 40.7294081, "lon": -73.9170768 }, + { "lat": 40.7294133, "lon": -73.9171002 }, + { "lat": 40.7294194, "lon": -73.9171220 }, + { "lat": 40.7294285, "lon": -73.9171455 }, + { "lat": 40.7294384, "lon": -73.9171629 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Theresa Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60836965, + "bounds": { + "minlat": 40.7292862, + "minlon": -73.9164522, + "maxlat": 40.7306165, + "maxlon": -73.9160575 + }, + "nodes": [ + 277390489, + 761564666 + ], + "geometry": [ + { "lat": 40.7306165, "lon": -73.9160575 }, + { "lat": 40.7292862, "lon": -73.9164522 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Aloysius Avenue", + "source": "Yahoo", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 60836971, + "bounds": { + "minlat": 40.7380026, + "minlon": -73.9162963, + "maxlat": 40.7389774, + "maxlon": -73.9095364 + }, + "nodes": [ + 761564696, + 10088171232, + 9888602261, + 10088171231, + 10088171230, + 10088171229, + 9888602262, + 10088171224, + 6793880148, + 10088171223, + 10088171222, + 10088171221, + 6796231835, + 10088171220, + 10088171219, + 761564699, + 10088171218, + 10088171217, + 10088171216, + 761564702, + 10088171215, + 10088171214, + 10088171213, + 10088171212, + 10088171211, + 761564707, + 10088171151, + 10088171150, + 10088171149, + 9888602260, + 10088171148, + 10088171147, + 10088171146, + 761565106, + 10088171145, + 10088171144, + 10088171143, + 761565103, + 10088171142, + 10088171141, + 10088171265, + 10088171264, + 10088171119, + 761565099, + 10088171118, + 761565093, + 761565090, + 10088171117, + 10088043116, + 10088043115, + 9888602263 + ], + "geometry": [ + { "lat": 40.7380026, "lon": -73.9095364 }, + { "lat": 40.7380294, "lon": -73.9097006 }, + { "lat": 40.7380503, "lon": -73.9098556 }, + { "lat": 40.7380651, "lon": -73.9099876 }, + { "lat": 40.7380790, "lon": -73.9101287 }, + { "lat": 40.7381232, "lon": -73.9106004 }, + { "lat": 40.7381316, "lon": -73.9107132 }, + { "lat": 40.7381356, "lon": -73.9107926 }, + { "lat": 40.7381390, "lon": -73.9108467 }, + { "lat": 40.7381442, "lon": -73.9108887 }, + { "lat": 40.7381516, "lon": -73.9109268 }, + { "lat": 40.7381952, "lon": -73.9111241 }, + { "lat": 40.7382096, "lon": -73.9111922 }, + { "lat": 40.7382196, "lon": -73.9112527 }, + { "lat": 40.7382278, "lon": -73.9113213 }, + { "lat": 40.7382305, "lon": -73.9113808 }, + { "lat": 40.7382302, "lon": -73.9114380 }, + { "lat": 40.7382266, "lon": -73.9114897 }, + { "lat": 40.7382184, "lon": -73.9115440 }, + { "lat": 40.7382062, "lon": -73.9115961 }, + { "lat": 40.7381903, "lon": -73.9116513 }, + { "lat": 40.7381697, "lon": -73.9117080 }, + { "lat": 40.7381488, "lon": -73.9117574 }, + { "lat": 40.7381157, "lon": -73.9118187 }, + { "lat": 40.7381037, "lon": -73.9118486 }, + { "lat": 40.7380983, "lon": -73.9118749 }, + { "lat": 40.7380987, "lon": -73.9119028 }, + { "lat": 40.7381022, "lon": -73.9119260 }, + { "lat": 40.7381117, "lon": -73.9119609 }, + { "lat": 40.7381218, "lon": -73.9119868 }, + { "lat": 40.7381522, "lon": -73.9120370 }, + { "lat": 40.7382074, "lon": -73.9121182 }, + { "lat": 40.7382662, "lon": -73.9122131 }, + { "lat": 40.7383224, "lon": -73.9123132 }, + { "lat": 40.7383637, "lon": -73.9123922 }, + { "lat": 40.7384120, "lon": -73.9124861 }, + { "lat": 40.7384428, "lon": -73.9125528 }, + { "lat": 40.7384626, "lon": -73.9126191 }, + { "lat": 40.7384838, "lon": -73.9127179 }, + { "lat": 40.7384988, "lon": -73.9128101 }, + { "lat": 40.7385122, "lon": -73.9129074 }, + { "lat": 40.7385321, "lon": -73.9130532 }, + { "lat": 40.7386350, "lon": -73.9138016 }, + { "lat": 40.7386508, "lon": -73.9138862 }, + { "lat": 40.7386672, "lon": -73.9139760 }, + { "lat": 40.7389295, "lon": -73.9158760 }, + { "lat": 40.7389752, "lon": -73.9162145 }, + { "lat": 40.7389774, "lon": -73.9162388 }, + { "lat": 40.7389768, "lon": -73.9162617 }, + { "lat": 40.7389738, "lon": -73.9162807 }, + { "lat": 40.7389685, "lon": -73.9162963 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Boniface Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60836994, + "bounds": { + "minlat": 40.7307958, + "minlon": -73.9145168, + "maxlat": 40.7355174, + "maxlon": -73.9133660 + }, + "nodes": [ + 9888628467, + 10088171260, + 10088171261, + 10088171262, + 3795557334, + 761564743, + 10087633310, + 10087633311, + 761564742 + ], + "geometry": [ + { "lat": 40.7307958, "lon": -73.9145168 }, + { "lat": 40.7308065, "lon": -73.9145009 }, + { "lat": 40.7308196, "lon": -73.9144904 }, + { "lat": 40.7308361, "lon": -73.9144839 }, + { "lat": 40.7308533, "lon": -73.9144787 }, + { "lat": 40.7333499, "lon": -73.9138895 }, + { "lat": 40.7354936, "lon": -73.9133780 }, + { "lat": 40.7355052, "lon": -73.9133739 }, + { "lat": 40.7355174, "lon": -73.9133660 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Vincent de Paul Avenue", + "source": "Yahoo", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 60837023, + "bounds": { + "minlat": 40.7310217, + "minlon": -73.9131513, + "maxlat": 40.7354837, + "maxlon": -73.9120962 + }, + "nodes": [ + 761564815, + 10087637068, + 10087637069, + 10087637070, + 761564824, + 10087637071, + 761564832, + 761564747 + ], + "geometry": [ + { "lat": 40.7310217, "lon": -73.9131343 }, + { "lat": 40.7310460, "lon": -73.9131444 }, + { "lat": 40.7310721, "lon": -73.9131500 }, + { "lat": 40.7310944, "lon": -73.9131513 }, + { "lat": 40.7311164, "lon": -73.9131491 }, + { "lat": 40.7311434, "lon": -73.9131432 }, + { "lat": 40.7331839, "lon": -73.9126496 }, + { "lat": 40.7354837, "lon": -73.9120962 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Bridget Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60837033, + "bounds": { + "minlat": 40.7328273, + "minlon": -73.9180547, + "maxlat": 40.7339206, + "maxlon": -73.9116855 + }, + "nodes": [ + 761564783, + 10087637049, + 10087637051, + 10087637052, + 10087637050, + 761564871, + 761564832, + 761564743, + 6791729730, + 761564882, + 6791729732, + 761564885, + 761564887, + 761564890 + ], + "geometry": [ + { "lat": 40.7328273, "lon": -73.9116855 }, + { "lat": 40.7329889, "lon": -73.9118831 }, + { "lat": 40.7330028, "lon": -73.9119005 }, + { "lat": 40.7330159, "lon": -73.9119204 }, + { "lat": 40.7330245, "lon": -73.9119404 }, + { "lat": 40.7330305, "lon": -73.9119608 }, + { "lat": 40.7331839, "lon": -73.9126496 }, + { "lat": 40.7333499, "lon": -73.9138895 }, + { "lat": 40.7334308, "lon": -73.9144866 }, + { "lat": 40.7335139, "lon": -73.9150964 }, + { "lat": 40.7336090, "lon": -73.9157883 }, + { "lat": 40.7337141, "lon": -73.9165573 }, + { "lat": 40.7338695, "lon": -73.9176718 }, + { "lat": 40.7339206, "lon": -73.9180547 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint William Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60837036, + "bounds": { + "minlat": 40.7307875, + "minlon": -73.9181342, + "maxlat": 40.7319007, + "maxlon": -73.9145168 + }, + "nodes": [ + 761564902, + 10087633290, + 10087633293, + 3795557329, + 10087633292, + 10087633291, + 3795557340, + 6791729731, + 277390486, + 6791729729, + 3795557342, + 10088171258, + 10088171259, + 9888628467 + ], + "geometry": [ + { "lat": 40.7319007, "lon": -73.9181342 }, + { "lat": 40.7316630, "lon": -73.9176377 }, + { "lat": 40.7316404, "lon": -73.9175881 }, + { "lat": 40.7316229, "lon": -73.9175452 }, + { "lat": 40.7316072, "lon": -73.9174972 }, + { "lat": 40.7315899, "lon": -73.9174377 }, + { "lat": 40.7314933, "lon": -73.9170825 }, + { "lat": 40.7313031, "lon": -73.9163349 }, + { "lat": 40.7311376, "lon": -73.9156713 }, + { "lat": 40.7309521, "lon": -73.9150727 }, + { "lat": 40.7307903, "lon": -73.9145729 }, + { "lat": 40.7307875, "lon": -73.9145536 }, + { "lat": 40.7307896, "lon": -73.9145323 }, + { "lat": 40.7307958, "lon": -73.9145168 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Boundary Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60837039, + "bounds": { + "minlat": 40.7314933, + "minlon": -73.9170825, + "maxlat": 40.7353356, + "maxlon": -73.9161821 + }, + "nodes": [ + 761564907, + 10087633301, + 10087633295, + 10087633300, + 10087633299, + 10087633298, + 10087633297, + 10087633306, + 761564885, + 3795557340 + ], + "geometry": [ + { "lat": 40.7353356, "lon": -73.9161950 }, + { "lat": 40.7353090, "lon": -73.9161864 }, + { "lat": 40.7352959, "lon": -73.9161828 }, + { "lat": 40.7352836, "lon": -73.9161821 }, + { "lat": 40.7352713, "lon": -73.9161826 }, + { "lat": 40.7352563, "lon": -73.9161844 }, + { "lat": 40.7352361, "lon": -73.9161881 }, + { "lat": 40.7352162, "lon": -73.9161921 }, + { "lat": 40.7337141, "lon": -73.9165573 }, + { "lat": 40.7314933, "lon": -73.9170825 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint James Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60837074, + "bounds": { + "minlat": 40.7365589, + "minlon": -73.9168687, + "maxlat": 40.7418052, + "maxlon": -73.9087392 + }, + "nodes": [ + 761564933, + 10088171272, + 761564936, + 761564940, + 10088171257, + 10088171256, + 10088171255, + 10088171254, + 10088171253, + 10088171252, + 10088171251, + 761564945, + 10088171250, + 10088171248, + 10088171249, + 761564956, + 10088171247, + 10088171246, + 761564971, + 10088171245, + 10088171244, + 10088171243, + 761564997, + 10088171241, + 10088171242, + 10088171240, + 761565005, + 10088171239, + 10088171238, + 761565032, + 10088171237, + 761565037, + 10088171236, + 10088171235, + 761565042, + 10088171234, + 10088171233, + 761564696, + 10088171210, + 10088171209, + 761565046, + 10088171208, + 10088171207, + 10088171206, + 761565050, + 10088171205, + 10088171204, + 761565052, + 10088171203, + 10088171202, + 10088171201, + 10088171200, + 10088171197, + 10088171199, + 10088171198, + 761565057, + 10088171196, + 9888620866, + 9888620864, + 10088171195, + 10088171194, + 9888620865, + 10088171191, + 10088171193, + 761565065, + 10088171192, + 10088171190, + 10088171188, + 10088171189, + 9888638942, + 9888638943, + 9888638941, + 10088171134, + 10088171133, + 761565069, + 10088171132, + 9888638938, + 9888638939, + 10088171131, + 9888638937, + 9888638940, + 10088043110, + 2844412386, + 10088043111, + 3795557337 + ], + "geometry": [ + { "lat": 40.7418052, "lon": -73.9131399 }, + { "lat": 40.7416927, "lon": -73.9121830 }, + { "lat": 40.7416050, "lon": -73.9114374 }, + { "lat": 40.7413359, "lon": -73.9091234 }, + { "lat": 40.7413306, "lon": -73.9090805 }, + { "lat": 40.7413218, "lon": -73.9090318 }, + { "lat": 40.7413110, "lon": -73.9089940 }, + { "lat": 40.7412968, "lon": -73.9089577 }, + { "lat": 40.7412791, "lon": -73.9089307 }, + { "lat": 40.7412573, "lon": -73.9089079 }, + { "lat": 40.7412323, "lon": -73.9088870 }, + { "lat": 40.7411919, "lon": -73.9088588 }, + { "lat": 40.7411307, "lon": -73.9088276 }, + { "lat": 40.7410695, "lon": -73.9087975 }, + { "lat": 40.7410089, "lon": -73.9087727 }, + { "lat": 40.7409430, "lon": -73.9087548 }, + { "lat": 40.7408737, "lon": -73.9087455 }, + { "lat": 40.7407903, "lon": -73.9087399 }, + { "lat": 40.7406875, "lon": -73.9087392 }, + { "lat": 40.7404514, "lon": -73.9087578 }, + { "lat": 40.7402800, "lon": -73.9087733 }, + { "lat": 40.7400485, "lon": -73.9088035 }, + { "lat": 40.7399176, "lon": -73.9088231 }, + { "lat": 40.7397480, "lon": -73.9088551 }, + { "lat": 40.7396160, "lon": -73.9088838 }, + { "lat": 40.7394898, "lon": -73.9089125 }, + { "lat": 40.7393807, "lon": -73.9089423 }, + { "lat": 40.7392717, "lon": -73.9089753 }, + { "lat": 40.7391686, "lon": -73.9090107 }, + { "lat": 40.7390496, "lon": -73.9090557 }, + { "lat": 40.7388429, "lon": -73.9091381 }, + { "lat": 40.7387188, "lon": -73.9091912 }, + { "lat": 40.7385849, "lon": -73.9092496 }, + { "lat": 40.7384509, "lon": -73.9093110 }, + { "lat": 40.7383440, "lon": -73.9093622 }, + { "lat": 40.7381530, "lon": -73.9094559 }, + { "lat": 40.7380795, "lon": -73.9094941 }, + { "lat": 40.7380026, "lon": -73.9095364 }, + { "lat": 40.7378470, "lon": -73.9095112 }, + { "lat": 40.7377520, "lon": -73.9095005 }, + { "lat": 40.7376566, "lon": -73.9094924 }, + { "lat": 40.7375573, "lon": -73.9094896 }, + { "lat": 40.7374721, "lon": -73.9094927 }, + { "lat": 40.7373839, "lon": -73.9094991 }, + { "lat": 40.7372847, "lon": -73.9095110 }, + { "lat": 40.7371987, "lon": -73.9095267 }, + { "lat": 40.7371233, "lon": -73.9095434 }, + { "lat": 40.7370114, "lon": -73.9095765 }, + { "lat": 40.7369896, "lon": -73.9095845 }, + { "lat": 40.7369664, "lon": -73.9095961 }, + { "lat": 40.7369466, "lon": -73.9096116 }, + { "lat": 40.7369261, "lon": -73.9096331 }, + { "lat": 40.7369054, "lon": -73.9096579 }, + { "lat": 40.7368898, "lon": -73.9096862 }, + { "lat": 40.7368774, "lon": -73.9097124 }, + { "lat": 40.7368668, "lon": -73.9097414 }, + { "lat": 40.7367358, "lon": -73.9102034 }, + { "lat": 40.7367084, "lon": -73.9102964 }, + { "lat": 40.7366884, "lon": -73.9103764 }, + { "lat": 40.7366696, "lon": -73.9104558 }, + { "lat": 40.7366532, "lon": -73.9105349 }, + { "lat": 40.7366330, "lon": -73.9106431 }, + { "lat": 40.7365722, "lon": -73.9110107 }, + { "lat": 40.7365648, "lon": -73.9110661 }, + { "lat": 40.7365606, "lon": -73.9111182 }, + { "lat": 40.7365589, "lon": -73.9111657 }, + { "lat": 40.7365622, "lon": -73.9112151 }, + { "lat": 40.7365700, "lon": -73.9112936 }, + { "lat": 40.7365801, "lon": -73.9113739 }, + { "lat": 40.7365920, "lon": -73.9114498 }, + { "lat": 40.7366131, "lon": -73.9115662 }, + { "lat": 40.7366822, "lon": -73.9119067 }, + { "lat": 40.7367087, "lon": -73.9120363 }, + { "lat": 40.7367300, "lon": -73.9121586 }, + { "lat": 40.7367545, "lon": -73.9123100 }, + { "lat": 40.7367634, "lon": -73.9123762 }, + { "lat": 40.7367683, "lon": -73.9124323 }, + { "lat": 40.7367684, "lon": -73.9124732 }, + { "lat": 40.7367679, "lon": -73.9125084 }, + { "lat": 40.7367698, "lon": -73.9125449 }, + { "lat": 40.7367724, "lon": -73.9125852 }, + { "lat": 40.7369957, "lon": -73.9141964 }, + { "lat": 40.7370086, "lon": -73.9142771 }, + { "lat": 40.7370238, "lon": -73.9143731 }, + { "lat": 40.7373709, "lon": -73.9168687 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Patrick Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60837097, + "bounds": { + "minlat": 40.7355427, + "minlon": -73.9170133, + "maxlat": 40.7389685, + "maxlon": -73.9145513 + }, + "nodes": [ + 9888647747, + 10088043092, + 10088043094, + 10088043093, + 10088043095, + 9888647746, + 9888647745, + 10088043100, + 10088043099, + 10088043098, + 9888647744, + 10088043097, + 10088043096, + 3795557331, + 10088043101, + 3795557330, + 3795557336, + 10088043102, + 10088043103, + 10088043104, + 10088043105, + 10088043106, + 10088043107, + 3795557343, + 3795557337, + 3795557335, + 10088043113, + 10088043114, + 9888602263 + ], + "geometry": [ + { "lat": 40.7358695, "lon": -73.9145513 }, + { "lat": 40.7358271, "lon": -73.9147462 }, + { "lat": 40.7358048, "lon": -73.9148435 }, + { "lat": 40.7357889, "lon": -73.9149166 }, + { "lat": 40.7357791, "lon": -73.9149750 }, + { "lat": 40.7357704, "lon": -73.9150388 }, + { "lat": 40.7355435, "lon": -73.9167673 }, + { "lat": 40.7355427, "lon": -73.9167886 }, + { "lat": 40.7355453, "lon": -73.9168088 }, + { "lat": 40.7355517, "lon": -73.9168286 }, + { "lat": 40.7355624, "lon": -73.9168465 }, + { "lat": 40.7355745, "lon": -73.9168540 }, + { "lat": 40.7355893, "lon": -73.9168548 }, + { "lat": 40.7356051, "lon": -73.9168523 }, + { "lat": 40.7356197, "lon": -73.9168486 }, + { "lat": 40.7367929, "lon": -73.9164458 }, + { "lat": 40.7368942, "lon": -73.9169612 }, + { "lat": 40.7368995, "lon": -73.9169807 }, + { "lat": 40.7369071, "lon": -73.9169953 }, + { "lat": 40.7369206, "lon": -73.9170063 }, + { "lat": 40.7369344, "lon": -73.9170121 }, + { "lat": 40.7369527, "lon": -73.9170133 }, + { "lat": 40.7369692, "lon": -73.9170103 }, + { "lat": 40.7369925, "lon": -73.9170035 }, + { "lat": 40.7373709, "lon": -73.9168687 }, + { "lat": 40.7389382, "lon": -73.9163247 }, + { "lat": 40.7389494, "lon": -73.9163180 }, + { "lat": 40.7389594, "lon": -73.9163081 }, + { "lat": 40.7389685, "lon": -73.9162963 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Boundary Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60837108, + "bounds": { + "minlat": 40.7389295, + "minlon": -73.9158760, + "maxlat": 40.7402476, + "maxlon": -73.9116405 + }, + "nodes": [ + 761565093, + 9888646593, + 10088171120, + 10088171121, + 10088171122, + 761565151, + 10088171123, + 10088171124, + 10088171125, + 9888646594, + 10088171126, + 761565157, + 10088171127, + 10088171161, + 10088171162, + 10088171266, + 10088171163, + 761565162, + 10088171164, + 10088171165, + 761565166, + 10088171166, + 10088171167, + 761565170, + 10088171169, + 10088171168, + 10088171170, + 10088171171, + 761565173, + 10088171173, + 10088171174, + 10088171172, + 761565121, + 10088171181, + 10088171175 + ], + "geometry": [ + { "lat": 40.7389295, "lon": -73.9158760 }, + { "lat": 40.7401826, "lon": -73.9155823 }, + { "lat": 40.7401988, "lon": -73.9155753 }, + { "lat": 40.7402153, "lon": -73.9155659 }, + { "lat": 40.7402283, "lon": -73.9155520 }, + { "lat": 40.7402387, "lon": -73.9155368 }, + { "lat": 40.7402452, "lon": -73.9155167 }, + { "lat": 40.7402476, "lon": -73.9154921 }, + { "lat": 40.7402469, "lon": -73.9154639 }, + { "lat": 40.7402433, "lon": -73.9154310 }, + { "lat": 40.7400018, "lon": -73.9136738 }, + { "lat": 40.7399842, "lon": -73.9135696 }, + { "lat": 40.7399693, "lon": -73.9134888 }, + { "lat": 40.7398582, "lon": -73.9126821 }, + { "lat": 40.7398477, "lon": -73.9126256 }, + { "lat": 40.7398403, "lon": -73.9125952 }, + { "lat": 40.7398359, "lon": -73.9125773 }, + { "lat": 40.7398193, "lon": -73.9125193 }, + { "lat": 40.7397981, "lon": -73.9124619 }, + { "lat": 40.7397745, "lon": -73.9124101 }, + { "lat": 40.7397482, "lon": -73.9123612 }, + { "lat": 40.7397152, "lon": -73.9123082 }, + { "lat": 40.7396791, "lon": -73.9122587 }, + { "lat": 40.7395817, "lon": -73.9121418 }, + { "lat": 40.7395622, "lon": -73.9121157 }, + { "lat": 40.7395375, "lon": -73.9120798 }, + { "lat": 40.7395128, "lon": -73.9120405 }, + { "lat": 40.7394869, "lon": -73.9119951 }, + { "lat": 40.7394647, "lon": -73.9119483 }, + { "lat": 40.7394476, "lon": -73.9119023 }, + { "lat": 40.7394332, "lon": -73.9118585 }, + { "lat": 40.7394186, "lon": -73.9118013 }, + { "lat": 40.7393998, "lon": -73.9117291 }, + { "lat": 40.7393894, "lon": -73.9116873 }, + { "lat": 40.7393805, "lon": -73.9116405 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Francis Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60837111, + "bounds": { + "minlat": 40.7367684, + "minlon": -73.9124732, + "maxlat": 40.7416050, + "maxlon": -73.9114374 + }, + "nodes": [ + 9888638939, + 10088171135, + 10088171136, + 761565196, + 10088171137, + 10088171138, + 761565193, + 10088171139, + 761565110, + 10088171140, + 761564707, + 10088171152, + 10088171153, + 10088171154, + 761565113, + 10088171155, + 10088171156, + 761565118, + 10088171158, + 10088171159, + 10088171157, + 10088171160, + 761565121, + 10088171182, + 761565127, + 10088171184, + 10088171183, + 10088171185, + 761565130, + 10088171186, + 10088171187, + 761564936 + ], + "geometry": [ + { "lat": 40.7367684, "lon": -73.9124732 }, + { "lat": 40.7372650, "lon": -73.9123418 }, + { "lat": 40.7373225, "lon": -73.9123236 }, + { "lat": 40.7373740, "lon": -73.9123054 }, + { "lat": 40.7374535, "lon": -73.9122729 }, + { "lat": 40.7375954, "lon": -73.9122072 }, + { "lat": 40.7377183, "lon": -73.9121417 }, + { "lat": 40.7378532, "lon": -73.9120554 }, + { "lat": 40.7380276, "lon": -73.9119221 }, + { "lat": 40.7380585, "lon": -73.9119000 }, + { "lat": 40.7380983, "lon": -73.9118749 }, + { "lat": 40.7381569, "lon": -73.9118491 }, + { "lat": 40.7382235, "lon": -73.9118228 }, + { "lat": 40.7382938, "lon": -73.9118019 }, + { "lat": 40.7383666, "lon": -73.9117822 }, + { "lat": 40.7384687, "lon": -73.9117567 }, + { "lat": 40.7385498, "lon": -73.9117396 }, + { "lat": 40.7386507, "lon": -73.9117269 }, + { "lat": 40.7387886, "lon": -73.9117119 }, + { "lat": 40.7389189, "lon": -73.9117016 }, + { "lat": 40.7390440, "lon": -73.9117004 }, + { "lat": 40.7391926, "lon": -73.9117061 }, + { "lat": 40.7393998, "lon": -73.9117291 }, + { "lat": 40.7395214, "lon": -73.9117475 }, + { "lat": 40.7398041, "lon": -73.9117986 }, + { "lat": 40.7398893, "lon": -73.9118059 }, + { "lat": 40.7399745, "lon": -73.9118082 }, + { "lat": 40.7400655, "lon": -73.9118044 }, + { "lat": 40.7401607, "lon": -73.9117930 }, + { "lat": 40.7402587, "lon": -73.9117754 }, + { "lat": 40.7403557, "lon": -73.9117528 }, + { "lat": 40.7416050, "lon": -73.9114374 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Michael Avenue", + "source": "Yahoo", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 60839977, + "bounds": { + "minlat": 40.7322545, + "minlon": -73.9324291, + "maxlat": 40.7331795, + "maxlon": -73.9322860 + }, + "nodes": [ + 761583311, + 761583317, + 3440153587, + 761583335 + ], + "geometry": [ + { "lat": 40.7322545, "lon": -73.9322860 }, + { "lat": 40.7325435, "lon": -73.9323479 }, + { "lat": 40.7327034, "lon": -73.9323743 }, + { "lat": 40.7331795, "lon": -73.9324291 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "name": "Cardinal Farley Avenue", + "source": "Yahoo" + } +}, +{ + "type": "way", + "id": 60840010, + "bounds": { + "minlat": 40.7335658, + "minlon": -73.9302273, + "maxlat": 40.7358467, + "maxlon": -73.9271271 + }, + "nodes": [ + 761583584, + 10088180881, + 10088180879, + 10088180878, + 10088180877, + 761583575, + 3440153504, + 761583585, + 10088180899, + 761583587, + 10088180901, + 10088180900, + 10088180902, + 761583588 + ], + "geometry": [ + { "lat": 40.7358467, "lon": -73.9271271 }, + { "lat": 40.7358230, "lon": -73.9271474 }, + { "lat": 40.7358013, "lon": -73.9271689 }, + { "lat": 40.7357785, "lon": -73.9271963 }, + { "lat": 40.7357608, "lon": -73.9272205 }, + { "lat": 40.7355025, "lon": -73.9275987 }, + { "lat": 40.7354316, "lon": -73.9277087 }, + { "lat": 40.7343234, "lon": -73.9294679 }, + { "lat": 40.7342739, "lon": -73.9295413 }, + { "lat": 40.7342311, "lon": -73.9295998 }, + { "lat": 40.7341769, "lon": -73.9296620 }, + { "lat": 40.7341074, "lon": -73.9297295 }, + { "lat": 40.7340162, "lon": -73.9298136 }, + { "lat": 40.7335658, "lon": -73.9302273 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Mary's Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60840033, + "bounds": { + "minlat": 40.7331410, + "minlon": -73.9326659, + "maxlat": 40.7363566, + "maxlon": -73.9283365 + }, + "nodes": [ + 42896787, + 10743730282, + 761583613, + 5482246018, + 10088180853, + 3440153527, + 3440153521, + 3440153529, + 761583620, + 10088180860, + 10088180859, + 10088180858, + 761583631, + 10088180857, + 10088180856, + 761583634, + 3440153630, + 10088180861, + 761583640, + 10088180862, + 761583641, + 10088180863, + 3440153634, + 761583643, + 10088180864, + 10088180865, + 761583645, + 3440153532, + 3440153538, + 3440153597, + 761583588, + 10088187172, + 10088187173, + 3440153533, + 3440153499, + 761583648, + 10088180908, + 3440153498, + 761583650, + 10088180909, + 3440153497, + 10088180910, + 761583652, + 10088180911, + 3440153495, + 3440153496, + 10088180912, + 3440153510, + 761583670, + 10088180913, + 761583691 + ], + "geometry": [ + { "lat": 40.7363566, "lon": -73.9326659 }, + { "lat": 40.7362875, "lon": -73.9325975 }, + { "lat": 40.7362468, "lon": -73.9325571 }, + { "lat": 40.7362129, "lon": -73.9325220 }, + { "lat": 40.7361647, "lon": -73.9324561 }, + { "lat": 40.7361022, "lon": -73.9323720 }, + { "lat": 40.7358507, "lon": -73.9320330 }, + { "lat": 40.7352544, "lon": -73.9312103 }, + { "lat": 40.7351418, "lon": -73.9310575 }, + { "lat": 40.7350994, "lon": -73.9310033 }, + { "lat": 40.7350575, "lon": -73.9309527 }, + { "lat": 40.7350045, "lon": -73.9308985 }, + { "lat": 40.7349452, "lon": -73.9308515 }, + { "lat": 40.7348839, "lon": -73.9308140 }, + { "lat": 40.7348167, "lon": -73.9307760 }, + { "lat": 40.7347439, "lon": -73.9307430 }, + { "lat": 40.7346639, "lon": -73.9307173 }, + { "lat": 40.7345945, "lon": -73.9306981 }, + { "lat": 40.7343663, "lon": -73.9306660 }, + { "lat": 40.7342871, "lon": -73.9306494 }, + { "lat": 40.7342041, "lon": -73.9306323 }, + { "lat": 40.7341103, "lon": -73.9306055 }, + { "lat": 40.7340258, "lon": -73.9305769 }, + { "lat": 40.7339543, "lon": -73.9305476 }, + { "lat": 40.7338969, "lon": -73.9305216 }, + { "lat": 40.7338435, "lon": -73.9304872 }, + { "lat": 40.7337924, "lon": -73.9304475 }, + { "lat": 40.7337373, "lon": -73.9303954 }, + { "lat": 40.7336616, "lon": -73.9303128 }, + { "lat": 40.7335993, "lon": -73.9302564 }, + { "lat": 40.7335658, "lon": -73.9302273 }, + { "lat": 40.7335364, "lon": -73.9302023 }, + { "lat": 40.7335122, "lon": -73.9301790 }, + { "lat": 40.7334881, "lon": -73.9301477 }, + { "lat": 40.7333153, "lon": -73.9298634 }, + { "lat": 40.7332039, "lon": -73.9296752 }, + { "lat": 40.7331865, "lon": -73.9296409 }, + { "lat": 40.7331687, "lon": -73.9296004 }, + { "lat": 40.7331545, "lon": -73.9295578 }, + { "lat": 40.7331462, "lon": -73.9295109 }, + { "lat": 40.7331417, "lon": -73.9294696 }, + { "lat": 40.7331410, "lon": -73.9294222 }, + { "lat": 40.7331413, "lon": -73.9293702 }, + { "lat": 40.7331454, "lon": -73.9293106 }, + { "lat": 40.7331840, "lon": -73.9287431 }, + { "lat": 40.7331911, "lon": -73.9286761 }, + { "lat": 40.7332028, "lon": -73.9286078 }, + { "lat": 40.7332123, "lon": -73.9285529 }, + { "lat": 40.7332282, "lon": -73.9284912 }, + { "lat": 40.7332527, "lon": -73.9284116 }, + { "lat": 40.7332771, "lon": -73.9283365 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint John's Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60840045, + "bounds": { + "minlat": 40.7294249, + "minlon": -73.9308236, + "maxlat": 40.7347351, + "maxlon": -73.9242969 + }, + "nodes": [ + 761583735, + 10088180888, + 10088180889, + 761583737, + 10088180892, + 10088180890, + 3440153493, + 10088180891, + 761583738, + 10088180893, + 761583724, + 3440153351, + 3440153666, + 3440153655, + 761583739, + 3440153348, + 10088187225, + 10088187226, + 761583532, + 10088187227, + 10088187228, + 3440153346, + 3440153355, + 3440153358, + 761583740, + 761583741, + 3440153362, + 10088187229, + 3440153361 + ], + "geometry": [ + { "lat": 40.7347351, "lon": -73.9242969 }, + { "lat": 40.7347113, "lon": -73.9243010 }, + { "lat": 40.7346862, "lon": -73.9243084 }, + { "lat": 40.7346603, "lon": -73.9243198 }, + { "lat": 40.7346344, "lon": -73.9243375 }, + { "lat": 40.7345898, "lon": -73.9243710 }, + { "lat": 40.7345558, "lon": -73.9244005 }, + { "lat": 40.7345215, "lon": -73.9244340 }, + { "lat": 40.7344908, "lon": -73.9244664 }, + { "lat": 40.7344485, "lon": -73.9245160 }, + { "lat": 40.7336717, "lon": -73.9255012 }, + { "lat": 40.7335918, "lon": -73.9255955 }, + { "lat": 40.7326494, "lon": -73.9267914 }, + { "lat": 40.7324329, "lon": -73.9270662 }, + { "lat": 40.7321836, "lon": -73.9273870 }, + { "lat": 40.7316851, "lon": -73.9280147 }, + { "lat": 40.7316327, "lon": -73.9280681 }, + { "lat": 40.7315879, "lon": -73.9281117 }, + { "lat": 40.7315513, "lon": -73.9281420 }, + { "lat": 40.7314959, "lon": -73.9281888 }, + { "lat": 40.7314488, "lon": -73.9282330 }, + { "lat": 40.7314061, "lon": -73.9282859 }, + { "lat": 40.7310988, "lon": -73.9286708 }, + { "lat": 40.7305441, "lon": -73.9293702 }, + { "lat": 40.7297775, "lon": -73.9303270 }, + { "lat": 40.7294454, "lon": -73.9307692 }, + { "lat": 40.7294341, "lon": -73.9307876 }, + { "lat": 40.7294281, "lon": -73.9308036 }, + { "lat": 40.7294249, "lon": -73.9308236 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Calvary Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60840046, + "bounds": { + "minlat": 40.7322849, + "minlon": -73.9344909, + "maxlat": 40.7354477, + "maxlon": -73.9313033 + }, + "nodes": [ + 761583590, + 761583797, + 3440153567, + 761583335, + 3440153582, + 3440153580, + 3440153578, + 3440153576, + 3440153574, + 3440153569, + 761583798, + 10088187181, + 761583563, + 10088187180, + 3440153518, + 761583782, + 761583783, + 10088187179, + 10088187178, + 3440153553, + 3440153570 + ], + "geometry": [ + { "lat": 40.7322849, "lon": -73.9313033 }, + { "lat": 40.7324277, "lon": -73.9315713 }, + { "lat": 40.7329404, "lon": -73.9321562 }, + { "lat": 40.7331795, "lon": -73.9324291 }, + { "lat": 40.7332933, "lon": -73.9325573 }, + { "lat": 40.7334288, "lon": -73.9327100 }, + { "lat": 40.7335680, "lon": -73.9328667 }, + { "lat": 40.7337047, "lon": -73.9330206 }, + { "lat": 40.7338462, "lon": -73.9331775 }, + { "lat": 40.7338911, "lon": -73.9332307 }, + { "lat": 40.7340944, "lon": -73.9334596 }, + { "lat": 40.7344433, "lon": -73.9338593 }, + { "lat": 40.7344844, "lon": -73.9338994 }, + { "lat": 40.7345182, "lon": -73.9339297 }, + { "lat": 40.7345520, "lon": -73.9339551 }, + { "lat": 40.7345888, "lon": -73.9339794 }, + { "lat": 40.7353518, "lon": -73.9344704 }, + { "lat": 40.7353798, "lon": -73.9344842 }, + { "lat": 40.7354024, "lon": -73.9344891 }, + { "lat": 40.7354245, "lon": -73.9344909 }, + { "lat": 40.7354477, "lon": -73.9344860 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Rose Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60840049, + "bounds": { + "minlat": 40.7318514, + "minlon": -73.9325571, + "maxlat": 40.7322961, + "maxlon": -73.9318415 + }, + "nodes": [ + 761583813, + 10088187250, + 10088187251, + 10088187252, + 10088187253, + 761583815, + 10088187255, + 10088187256, + 10088187254, + 761583817, + 761583818, + 10088187257, + 10088187258, + 761583819, + 10088187259, + 10088187260, + 761583820, + 761583821, + 10088187261, + 10088187262, + 10088187263, + 761583822, + 10088187264, + 10088187265, + 761583311, + 10088187243, + 10088187244, + 10088187245, + 10088187246, + 761583825, + 10088187247, + 10088187248, + 761583813 + ], + "geometry": [ + { "lat": 40.7321707, "lon": -73.9318762 }, + { "lat": 40.7320993, "lon": -73.9318439 }, + { "lat": 40.7320697, "lon": -73.9318415 }, + { "lat": 40.7320471, "lon": -73.9318447 }, + { "lat": 40.7320244, "lon": -73.9318547 }, + { "lat": 40.7319997, "lon": -73.9318764 }, + { "lat": 40.7319802, "lon": -73.9319040 }, + { "lat": 40.7319660, "lon": -73.9319364 }, + { "lat": 40.7319523, "lon": -73.9319780 }, + { "lat": 40.7319255, "lon": -73.9320710 }, + { "lat": 40.7318570, "lon": -73.9323216 }, + { "lat": 40.7318514, "lon": -73.9323564 }, + { "lat": 40.7318518, "lon": -73.9323836 }, + { "lat": 40.7318580, "lon": -73.9324114 }, + { "lat": 40.7318725, "lon": -73.9324408 }, + { "lat": 40.7318894, "lon": -73.9324601 }, + { "lat": 40.7319091, "lon": -73.9324747 }, + { "lat": 40.7320658, "lon": -73.9325485 }, + { "lat": 40.7320935, "lon": -73.9325565 }, + { "lat": 40.7321211, "lon": -73.9325571 }, + { "lat": 40.7321460, "lon": -73.9325507 }, + { "lat": 40.7321635, "lon": -73.9325396 }, + { "lat": 40.7321845, "lon": -73.9325216 }, + { "lat": 40.7321995, "lon": -73.9324875 }, + { "lat": 40.7322545, "lon": -73.9322860 }, + { "lat": 40.7322907, "lon": -73.9321118 }, + { "lat": 40.7322961, "lon": -73.9320667 }, + { "lat": 40.7322945, "lon": -73.9320273 }, + { "lat": 40.7322860, "lon": -73.9319859 }, + { "lat": 40.7322714, "lon": -73.9319493 }, + { "lat": 40.7322564, "lon": -73.9319276 }, + { "lat": 40.7322329, "lon": -73.9319071 }, + { "lat": 40.7321707, "lon": -73.9318762 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Cardinal Farley Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60840416, + "bounds": { + "minlat": 40.7361357, + "minlon": -73.9144844, + "maxlat": 40.7419597, + "maxlon": -73.9131040 + }, + "nodes": [ + 10088171129, + 761564933, + 10088171128, + 761565157, + 7984653647, + 761565099, + 2844412386, + 10088043112 + ], + "geometry": [ + { "lat": 40.7419597, "lon": -73.9131040 }, + { "lat": 40.7418052, "lon": -73.9131399 }, + { "lat": 40.7409781, "lon": -73.9133268 }, + { "lat": 40.7399842, "lon": -73.9135696 }, + { "lat": 40.7392847, "lon": -73.9137358 }, + { "lat": 40.7386508, "lon": -73.9138862 }, + { "lat": 40.7370086, "lon": -73.9142771 }, + { "lat": 40.7361357, "lon": -73.9144844 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Lawrence Avenue", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 60858625, + "bounds": { + "minlat": 40.8701354, + "minlon": -73.9179160, + "maxlat": 40.8709230, + "maxlon": -73.9170165 + }, + "nodes": [ + 42434370, + 11587349766, + 11587349762, + 42436929 + ], + "geometry": [ + { "lat": 40.8701354, "lon": -73.9170165 }, + { "lat": 40.8701863, "lon": -73.9170746 }, + { "lat": 40.8708833, "lon": -73.9178707 }, + { "lat": 40.8709230, "lon": -73.9179160 } + ], + "tags": { + "alt_name": "John Patrick Burnside Way", + "highway": "residential", + "maxspeed": "20 mph", + "name": "West 215th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "215th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 61133358, + "bounds": { + "minlat": 40.8064189, + "minlon": -73.9426871, + "maxlat": 40.8065955, + "maxlon": -73.9422694 + }, + "nodes": [ + 42444452, + 5266458355, + 11255278315, + 4207752451 + ], + "geometry": [ + { "lat": 40.8064189, "lon": -73.9422694 }, + { "lat": 40.8064621, "lon": -73.9423713 }, + { "lat": 40.8065586, "lon": -73.9425998 }, + { "lat": 40.8065955, "lon": -73.9426871 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "turn:lanes:backward": "through|", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 61274441, + "bounds": { + "minlat": 40.8584453, + "minlon": -73.9784155, + "maxlat": 40.8587115, + "maxlon": -73.9771185 + }, + "nodes": [ + 765596262, + 299120749, + 7921551372, + 299120750, + 7921551368, + 299120751, + 7921551363, + 299120752, + 7921551366, + 10942990444, + 299120753 + ], + "geometry": [ + { "lat": 40.8587115, "lon": -73.9771185 }, + { "lat": 40.8586639, "lon": -73.9772595 }, + { "lat": 40.8586202, "lon": -73.9774031 }, + { "lat": 40.8585901, "lon": -73.9775228 }, + { "lat": 40.8585634, "lon": -73.9776416 }, + { "lat": 40.8585318, "lon": -73.9777843 }, + { "lat": 40.8585048, "lon": -73.9779275 }, + { "lat": 40.8584815, "lon": -73.9780737 }, + { "lat": 40.8584637, "lon": -73.9782202 }, + { "lat": 40.8584498, "lon": -73.9783731 }, + { "lat": 40.8584453, "lon": -73.9784155 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 61274458, + "bounds": { + "minlat": 40.8644811, + "minlon": -73.9739300, + "maxlat": 40.8682709, + "maxlon": -73.9731998 + }, + "nodes": [ + 76464763, + 12021419898, + 10942505757, + 76464899, + 7925010433, + 7925010415, + 76464900, + 7925010426, + 7925010437, + 299127884, + 7925010419, + 298917885, + 10562008953, + 7925010430, + 10942953981, + 298917886, + 10942953947, + 7513732186, + 10942953969, + 298918545, + 7925010440, + 298917889, + 7513705679, + 7925010434, + 298917938, + 298917891, + 7373684555, + 7373684554, + 3132254312, + 3655086220, + 3655086532, + 298918546, + 3655086525, + 3655086545 + ], + "geometry": [ + { "lat": 40.8644811, "lon": -73.9737206 }, + { "lat": 40.8647473, "lon": -73.9737923 }, + { "lat": 40.8648166, "lon": -73.9738095 }, + { "lat": 40.8649277, "lon": -73.9738307 }, + { "lat": 40.8650359, "lon": -73.9738507 }, + { "lat": 40.8651438, "lon": -73.9738692 }, + { "lat": 40.8652543, "lon": -73.9738864 }, + { "lat": 40.8653612, "lon": -73.9739002 }, + { "lat": 40.8654722, "lon": -73.9739112 }, + { "lat": 40.8656078, "lon": -73.9739201 }, + { "lat": 40.8657056, "lon": -73.9739265 }, + { "lat": 40.8657998, "lon": -73.9739300 }, + { "lat": 40.8658492, "lon": -73.9739291 }, + { "lat": 40.8659089, "lon": -73.9739262 }, + { "lat": 40.8659627, "lon": -73.9739222 }, + { "lat": 40.8660184, "lon": -73.9739157 }, + { "lat": 40.8660797, "lon": -73.9739071 }, + { "lat": 40.8661401, "lon": -73.9738967 }, + { "lat": 40.8661856, "lon": -73.9738874 }, + { "lat": 40.8662338, "lon": -73.9738771 }, + { "lat": 40.8663430, "lon": -73.9738506 }, + { "lat": 40.8664499, "lon": -73.9738219 }, + { "lat": 40.8665576, "lon": -73.9737903 }, + { "lat": 40.8666643, "lon": -73.9737567 }, + { "lat": 40.8667728, "lon": -73.9737228 }, + { "lat": 40.8669060, "lon": -73.9736804 }, + { "lat": 40.8672733, "lon": -73.9735574 }, + { "lat": 40.8673159, "lon": -73.9735423 }, + { "lat": 40.8674860, "lon": -73.9734818 }, + { "lat": 40.8676287, "lon": -73.9734301 }, + { "lat": 40.8677000, "lon": -73.9734042 }, + { "lat": 40.8679394, "lon": -73.9733185 }, + { "lat": 40.8681446, "lon": -73.9732447 }, + { "lat": 40.8682709, "lon": -73.9731998 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "2", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 61274471, + "bounds": { + "minlat": 40.8679205, + "minlon": -73.9755094, + "maxlat": 40.8686671, + "maxlon": -73.9754342 + }, + "nodes": [ + 103292650, + 12021450535, + 12021450534, + 12021450533, + 12021450532, + 103296159, + 12021450540, + 12021450541, + 103296161 + ], + "geometry": [ + { "lat": 40.8686671, "lon": -73.9754673 }, + { "lat": 40.8686191, "lon": -73.9754467 }, + { "lat": 40.8685873, "lon": -73.9754376 }, + { "lat": 40.8685573, "lon": -73.9754345 }, + { "lat": 40.8685255, "lon": -73.9754342 }, + { "lat": 40.8680322, "lon": -73.9754769 }, + { "lat": 40.8679966, "lon": -73.9754831 }, + { "lat": 40.8679603, "lon": -73.9754924 }, + { "lat": 40.8679205, "lon": -73.9755094 } + ], + "tags": { + "highway": "residential", + "name": "Jones Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jones", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 61274477, + "bounds": { + "minlat": 40.8775178, + "minlon": -73.9814573, + "maxlat": 40.8783997, + "maxlon": -73.9799021 + }, + "nodes": [ + 6374848002, + 9239567792, + 9239567793, + 103106090 + ], + "geometry": [ + { "lat": 40.8783997, "lon": -73.9814573 }, + { "lat": 40.8783466, "lon": -73.9813612 }, + { "lat": 40.8783282, "lon": -73.9813300 }, + { "lat": 40.8775178, "lon": -73.9799021 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "Rockwood Place", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Rockwood", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 61274478, + "bounds": { + "minlat": 40.8761740, + "minlon": -73.9799021, + "maxlat": 40.8775178, + "maxlon": -73.9775385 + }, + "nodes": [ + 103106090, + 13320454021, + 103174060 + ], + "geometry": [ + { "lat": 40.8775178, "lon": -73.9799021 }, + { "lat": 40.8762310, "lon": -73.9776388 }, + { "lat": 40.8761740, "lon": -73.9775385 } + ], + "tags": { + "highway": "residential", + "name": "Rockwood Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Rockwood", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 61282869, + "bounds": { + "minlat": 40.8696827, + "minlon": -74.0139498, + "maxlat": 40.8703967, + "maxlon": -74.0119928 + }, + "nodes": [ + 103214399, + 6875600539, + 103282382, + 475137411, + 6592337544, + 298608924 + ], + "geometry": [ + { "lat": 40.8703967, "lon": -74.0139498 }, + { "lat": 40.8701548, "lon": -74.0133046 }, + { "lat": 40.8700008, "lon": -74.0128940 }, + { "lat": 40.8698699, "lon": -74.0125232 }, + { "lat": 40.8697057, "lon": -74.0120579 }, + { "lat": 40.8696827, "lon": -74.0119928 } + ], + "tags": { + "Bergen_County_database_ref": "56", + "HFCS": "Urban Local", + "NJDOT_SRI": "020000564", + "highway": "residential", + "maxspeed": "40 mph", + "name": "Fort Lee Road", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 61282907, + "bounds": { + "minlat": 40.8500746, + "minlon": -74.0131152, + "maxlat": 40.8532263, + "maxlon": -74.0118050 + }, + "nodes": [ + 298559944, + 5674744858, + 298559870, + 5674744855, + 5674744864, + 103161087, + 5674744895, + 5674744909, + 10936388944, + 103161073, + 10936388933, + 103161071, + 10936388936, + 103161069, + 10936388949, + 103161067, + 10936388935, + 103161064, + 10936388929, + 5674744910 + ], + "geometry": [ + { "lat": 40.8532263, "lon": -74.0118050 }, + { "lat": 40.8530192, "lon": -74.0119036 }, + { "lat": 40.8528876, "lon": -74.0119673 }, + { "lat": 40.8525580, "lon": -74.0121289 }, + { "lat": 40.8524036, "lon": -74.0122024 }, + { "lat": 40.8520051, "lon": -74.0123950 }, + { "lat": 40.8514832, "lon": -74.0126490 }, + { "lat": 40.8510594, "lon": -74.0128551 }, + { "lat": 40.8509979, "lon": -74.0128844 }, + { "lat": 40.8509266, "lon": -74.0129175 }, + { "lat": 40.8508423, "lon": -74.0129542 }, + { "lat": 40.8507622, "lon": -74.0129850 }, + { "lat": 40.8506775, "lon": -74.0130145 }, + { "lat": 40.8506054, "lon": -74.0130359 }, + { "lat": 40.8505297, "lon": -74.0130556 }, + { "lat": 40.8504595, "lon": -74.0130712 }, + { "lat": 40.8503669, "lon": -74.0130880 }, + { "lat": 40.8502688, "lon": -74.0131031 }, + { "lat": 40.8501733, "lon": -74.0131116 }, + { "lat": 40.8500746, "lon": -74.0131152 } + ], + "tags": { + "Bergen_County_database_ref": "S-39", + "HFCS": "Urban Local", + "NJDOT_SRI": "020000333", + "highway": "secondary", + "name": "Challenger Road", + "ref": "CR S-39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Challenger", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 61282941, + "bounds": { + "minlat": 40.8685353, + "minlon": -74.0119928, + "maxlat": 40.8696827, + "maxlon": -74.0070112 + }, + "nodes": [ + 298608924, + 475137310, + 103205429, + 298608926, + 103282384, + 103282386, + 10941376268, + 10941376266, + 9676402312, + 10941376265, + 205498557 + ], + "geometry": [ + { "lat": 40.8696827, "lon": -74.0119928 }, + { "lat": 40.8696640, "lon": -74.0119339 }, + { "lat": 40.8695983, "lon": -74.0117267 }, + { "lat": 40.8694556, "lon": -74.0112718 }, + { "lat": 40.8692608, "lon": -74.0105595 }, + { "lat": 40.8691054, "lon": -74.0099477 }, + { "lat": 40.8690704, "lon": -74.0097874 }, + { "lat": 40.8690396, "lon": -74.0096258 }, + { "lat": 40.8688217, "lon": -74.0085090 }, + { "lat": 40.8686884, "lon": -74.0078028 }, + { "lat": 40.8685353, "lon": -74.0070112 } + ], + "tags": { + "highway": "residential", + "name": "Fort Lee Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 61282959, + "bounds": { + "minlat": 40.8726258, + "minlon": -74.0207294, + "maxlat": 40.8752304, + "maxlon": -74.0138692 + }, + "nodes": [ + 103247067, + 7006293680, + 7006293683, + 7081638903, + 7006356856, + 103130848, + 103187263, + 103115270, + 103169827, + 103195637, + 103200396, + 103247066, + 103124981 + ], + "geometry": [ + { "lat": 40.8752304, "lon": -74.0207294 }, + { "lat": 40.8750235, "lon": -74.0201693 }, + { "lat": 40.8749699, "lon": -74.0200242 }, + { "lat": 40.8749525, "lon": -74.0199770 }, + { "lat": 40.8749257, "lon": -74.0199044 }, + { "lat": 40.8747790, "lon": -74.0195073 }, + { "lat": 40.8743506, "lon": -74.0183829 }, + { "lat": 40.8739158, "lon": -74.0172414 }, + { "lat": 40.8734680, "lon": -74.0160827 }, + { "lat": 40.8731759, "lon": -74.0152930 }, + { "lat": 40.8730526, "lon": -74.0149411 }, + { "lat": 40.8728717, "lon": -74.0144984 }, + { "lat": 40.8726258, "lon": -74.0138692 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 61300765, + "bounds": { + "minlat": 40.8202875, + "minlon": -73.9908158, + "maxlat": 40.8214915, + "maxlon": -73.9886294 + }, + "nodes": [ + 103201209, + 7604304713, + 103133912, + 103201212, + 103201214, + 103201216, + 7607890796, + 7771767485, + 7578880232, + 440208183 + ], + "geometry": [ + { "lat": 40.8202875, "lon": -73.9886294 }, + { "lat": 40.8204230, "lon": -73.9888698 }, + { "lat": 40.8205463, "lon": -73.9890885 }, + { "lat": 40.8208658, "lon": -73.9896625 }, + { "lat": 40.8210330, "lon": -73.9899785 }, + { "lat": 40.8212090, "lon": -73.9902898 }, + { "lat": 40.8212306, "lon": -73.9903301 }, + { "lat": 40.8212954, "lon": -73.9904507 }, + { "lat": 40.8213946, "lon": -73.9906353 }, + { "lat": 40.8214915, "lon": -73.9908158 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "name": "Edgewater Road", + "ref": "CR 50", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd;Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022;07657", + "tiger:zip_right": "07010;07657" + } +}, +{ + "type": "way", + "id": 61316318, + "bounds": { + "minlat": 40.8384289, + "minlon": -74.0024864, + "maxlat": 40.8415454, + "maxlon": -73.9970432 + }, + "nodes": [ + 103139598, + 13524430683, + 13524430685, + 103241066, + 103208138, + 12016293152, + 12016293151, + 103190893, + 12016293150, + 12016293145, + 103159307, + 12016293144, + 5976777474, + 8605599066, + 12016147214, + 12016147315, + 103224073 + ], + "geometry": [ + { "lat": 40.8384289, "lon": -73.9970432 }, + { "lat": 40.8384719, "lon": -73.9971246 }, + { "lat": 40.8384850, "lon": -73.9971495 }, + { "lat": 40.8388880, "lon": -73.9979120 }, + { "lat": 40.8394225, "lon": -73.9987924 }, + { "lat": 40.8402165, "lon": -74.0001727 }, + { "lat": 40.8402565, "lon": -74.0002404 }, + { "lat": 40.8403028, "lon": -74.0003253 }, + { "lat": 40.8403502, "lon": -74.0004034 }, + { "lat": 40.8404434, "lon": -74.0005670 }, + { "lat": 40.8404792, "lon": -74.0006299 }, + { "lat": 40.8405145, "lon": -74.0006927 }, + { "lat": 40.8412738, "lon": -74.0020014 }, + { "lat": 40.8413008, "lon": -74.0020477 }, + { "lat": 40.8414672, "lon": -74.0023522 }, + { "lat": 40.8414847, "lon": -74.0023822 }, + { "lat": 40.8415454, "lon": -74.0024864 } + ], + "tags": { + "Bergen_County_database_ref": "S-31", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000S31", + "highway": "tertiary", + "name": "Maple Avenue", + "ref": "CR S-31", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 61325680, + "bounds": { + "minlat": 40.8820085, + "minlon": -74.0057451, + "maxlat": 40.8838248, + "maxlon": -74.0000422 + }, + "nodes": [ + 103199465, + 103199467, + 103169991, + 10940277284, + 103199469, + 103186258, + 103199470, + 103199472, + 103156670, + 103199473, + 13527742911 + ], + "geometry": [ + { "lat": 40.8838248, "lon": -74.0057451 }, + { "lat": 40.8834805, "lon": -74.0046353 }, + { "lat": 40.8833577, "lon": -74.0042394 }, + { "lat": 40.8832881, "lon": -74.0040149 }, + { "lat": 40.8832315, "lon": -74.0038392 }, + { "lat": 40.8829594, "lon": -74.0029946 }, + { "lat": 40.8826908, "lon": -74.0021605 }, + { "lat": 40.8824259, "lon": -74.0013381 }, + { "lat": 40.8822589, "lon": -74.0008198 }, + { "lat": 40.8821542, "lon": -74.0004947 }, + { "lat": 40.8820085, "lon": -74.0000422 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "East Cedar Lane", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 61374232, + "bounds": { + "minlat": 40.8540192, + "minlon": -73.9757329, + "maxlat": 40.8542824, + "maxlon": -73.9753004 + }, + "nodes": [ + 103276285, + 7407669534, + 7407669559, + 7407669561, + 4204802389 + ], + "geometry": [ + { "lat": 40.8542824, "lon": -73.9757329 }, + { "lat": 40.8542280, "lon": -73.9756435 }, + { "lat": 40.8540642, "lon": -73.9753743 }, + { "lat": 40.8540238, "lon": -73.9753080 }, + { "lat": 40.8540192, "lon": -73.9753004 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 61374238, + "bounds": { + "minlat": 40.8534879, + "minlon": -73.9750124, + "maxlat": 40.8538476, + "maxlon": -73.9744493 + }, + "nodes": [ + 103132820, + 6895010044, + 4207161473, + 103245991 + ], + "geometry": [ + { "lat": 40.8538476, "lon": -73.9750124 }, + { "lat": 40.8537579, "lon": -73.9748777 }, + { "lat": 40.8536131, "lon": -73.9746511 }, + { "lat": 40.8534879, "lon": -73.9744493 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56;CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "through|right" + } +}, +{ + "type": "way", + "id": 61382464, + "bounds": { + "minlat": 40.8410230, + "minlon": -74.0218520, + "maxlat": 40.8419771, + "maxlon": -74.0187359 + }, + "nodes": [ + 103228542, + 6605885981, + 7115808252, + 10936284802, + 103228544, + 103102629, + 10936284788, + 10936284778, + 10936284781, + 103228546, + 103228548, + 103228549, + 103228551, + 103228553, + 103228555, + 103228557, + 103228559 + ], + "geometry": [ + { "lat": 40.8419771, "lon": -74.0218520 }, + { "lat": 40.8419210, "lon": -74.0218041 }, + { "lat": 40.8418175, "lon": -74.0217154 }, + { "lat": 40.8415101, "lon": -74.0214553 }, + { "lat": 40.8414461, "lon": -74.0213980 }, + { "lat": 40.8414074, "lon": -74.0213624 }, + { "lat": 40.8413879, "lon": -74.0213439 }, + { "lat": 40.8413647, "lon": -74.0213201 }, + { "lat": 40.8413403, "lon": -74.0212940 }, + { "lat": 40.8413169, "lon": -74.0212664 }, + { "lat": 40.8412490, "lon": -74.0211530 }, + { "lat": 40.8411760, "lon": -74.0210200 }, + { "lat": 40.8411250, "lon": -74.0208900 }, + { "lat": 40.8410790, "lon": -74.0207030 }, + { "lat": 40.8410230, "lon": -74.0202780 }, + { "lat": 40.8410233, "lon": -74.0197456 }, + { "lat": 40.8410511, "lon": -74.0187359 } + ], + "tags": { + "Bergen_County_database_ref": "17;124;S-12 [sic]", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020001241", + "highway": "secondary", + "name": "Bergen Turnpike", + "old_ref": "CR 17", + "ref": "CR 124", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_type": "Tpke", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 61407168, + "bounds": { + "minlat": 40.8385964, + "minlon": -73.9978923, + "maxlat": 40.8406132, + "maxlon": -73.9943589 + }, + "nodes": [ + 103190899, + 103208144, + 13524430676, + 103225167, + 13524430678, + 9891196048 + ], + "geometry": [ + { "lat": 40.8406132, "lon": -73.9978923 }, + { "lat": 40.8405127, "lon": -73.9977163 }, + { "lat": 40.8395537, "lon": -73.9960361 }, + { "lat": 40.8395134, "lon": -73.9959655 }, + { "lat": 40.8394752, "lon": -73.9958985 }, + { "lat": 40.8385964, "lon": -73.9943589 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "East Columbia Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 61407169, + "bounds": { + "minlat": 40.8411752, + "minlon": -73.9970408, + "maxlat": 40.8415012, + "maxlon": -73.9966661 + }, + "nodes": [ + 103208156, + 12020316357, + 530805674, + 6892934880, + 530805895 + ], + "geometry": [ + { "lat": 40.8411752, "lon": -73.9970408 }, + { "lat": 40.8413337, "lon": -73.9968889 }, + { "lat": 40.8413629, "lon": -73.9968562 }, + { "lat": 40.8414153, "lon": -73.9967880 }, + { "lat": 40.8415012, "lon": -73.9966661 } + ], + "tags": { + "highway": "residential", + "name": "Abbott Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 61407170, + "bounds": { + "minlat": 40.8410891, + "minlon": -73.9927081, + "maxlat": 40.8414791, + "maxlon": -73.9919680 + }, + "nodes": [ + 103166094, + 12692332170, + 12692332157, + 103295503 + ], + "geometry": [ + { "lat": 40.8410891, "lon": -73.9919680 }, + { "lat": 40.8413418, "lon": -73.9924021 }, + { "lat": 40.8414432, "lon": -73.9925908 }, + { "lat": 40.8414791, "lon": -73.9927081 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "East Homestead Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Homestead", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650" + } +}, +{ + "type": "way", + "id": 61407171, + "bounds": { + "minlat": 40.8414791, + "minlon": -73.9934140, + "maxlat": 40.8419093, + "maxlon": -73.9927081 + }, + "nodes": [ + 103295503, + 7940839056, + 12692332171, + 103268226, + 103238953 + ], + "geometry": [ + { "lat": 40.8414791, "lon": -73.9927081 }, + { "lat": 40.8416295, "lon": -73.9929335 }, + { "lat": 40.8417990, "lon": -73.9932168 }, + { "lat": 40.8418538, "lon": -73.9933161 }, + { "lat": 40.8419093, "lon": -73.9934140 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "East Homestead Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Homestead", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650" + } +}, +{ + "type": "way", + "id": 61407173, + "bounds": { + "minlat": 40.8419093, + "minlon": -73.9934140, + "maxlat": 40.8480944, + "maxlon": -73.9872044 + }, + "nodes": [ + 103238962, + 103238960, + 7299073198, + 103238958, + 103238956, + 103238953 + ], + "geometry": [ + { "lat": 40.8480944, "lon": -73.9872044 }, + { "lat": 40.8457700, "lon": -73.9895390 }, + { "lat": 40.8453934, "lon": -73.9899242 }, + { "lat": 40.8444089, "lon": -73.9909315 }, + { "lat": 40.8432570, "lon": -73.9920828 }, + { "lat": 40.8419093, "lon": -73.9934140 } + ], + "tags": { + "highway": "residential", + "name": "7th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "7th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 61407174, + "bounds": { + "minlat": 40.8402964, + "minlon": -73.9941981, + "maxlat": 40.8409559, + "maxlon": -73.9929003 + }, + "nodes": [ + 103134583, + 103134584, + 103134585, + 103134586, + 103134587, + 5726967413, + 103134589, + 103134591 + ], + "geometry": [ + { "lat": 40.8409559, "lon": -73.9941981 }, + { "lat": 40.8408878, "lon": -73.9940417 }, + { "lat": 40.8407350, "lon": -73.9936820 }, + { "lat": 40.8406620, "lon": -73.9935080 }, + { "lat": 40.8405750, "lon": -73.9933450 }, + { "lat": 40.8404984, "lon": -73.9932270 }, + { "lat": 40.8404770, "lon": -73.9931940 }, + { "lat": 40.8402964, "lon": -73.9929003 } + ], + "tags": { + "highway": "residential", + "name": "Grantwood Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grantwood", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 61407176, + "bounds": { + "minlat": 40.8471012, + "minlon": -73.9904983, + "maxlat": 40.8489375, + "maxlon": -73.9886495 + }, + "nodes": [ + 103093898, + 103189435 + ], + "geometry": [ + { "lat": 40.8471012, "lon": -73.9904983 }, + { "lat": 40.8489375, "lon": -73.9886495 } + ], + "tags": { + "highway": "residential", + "name": "5th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 61407190, + "bounds": { + "minlat": 40.8529802, + "minlon": -73.9847668, + "maxlat": 40.8546823, + "maxlon": -73.9841725 + }, + "nodes": [ + 12692293520, + 299172121, + 12901394782, + 299172120, + 7427964161, + 11444811789, + 10943407661, + 5362398646, + 7427964160, + 299172185, + 10943407664, + 299172100, + 10943407663, + 299172099, + 10943407659, + 10943407662, + 299172098, + 10943407660, + 5362392159 + ], + "geometry": [ + { "lat": 40.8529802, "lon": -73.9847668 }, + { "lat": 40.8532587, "lon": -73.9847279 }, + { "lat": 40.8532895, "lon": -73.9847230 }, + { "lat": 40.8533676, "lon": -73.9847104 }, + { "lat": 40.8534779, "lon": -73.9846900 }, + { "lat": 40.8535109, "lon": -73.9846826 }, + { "lat": 40.8535845, "lon": -73.9846667 }, + { "lat": 40.8537580, "lon": -73.9846200 }, + { "lat": 40.8538003, "lon": -73.9846067 }, + { "lat": 40.8539053, "lon": -73.9845719 }, + { "lat": 40.8540130, "lon": -73.9845313 }, + { "lat": 40.8541159, "lon": -73.9844884 }, + { "lat": 40.8542190, "lon": -73.9844412 }, + { "lat": 40.8543222, "lon": -73.9843890 }, + { "lat": 40.8544235, "lon": -73.9843337 }, + { "lat": 40.8545238, "lon": -73.9842741 }, + { "lat": 40.8545369, "lon": -73.9842660 }, + { "lat": 40.8546220, "lon": -73.9842114 }, + { "lat": 40.8546823, "lon": -73.9841725 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "United States Highway 1", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 61407191, + "bounds": { + "minlat": 40.8485252, + "minlon": -73.9879411, + "maxlat": 40.8499628, + "maxlon": -73.9865096 + }, + "nodes": [ + 103255687, + 12692250259 + ], + "geometry": [ + { "lat": 40.8485252, "lon": -73.9879411 }, + { "lat": 40.8499628, "lon": -73.9865096 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "6th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "6th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 61407192, + "bounds": { + "minlat": 40.8475502, + "minlon": -73.9889024, + "maxlat": 40.8485252, + "maxlon": -73.9879411 + }, + "nodes": [ + 103093901, + 10943492029, + 10943492086, + 10943492063, + 103255687 + ], + "geometry": [ + { "lat": 40.8475502, "lon": -73.9889024 }, + { "lat": 40.8479028, "lon": -73.9885462 }, + { "lat": 40.8481769, "lon": -73.9882729 }, + { "lat": 40.8484532, "lon": -73.9880071 }, + { "lat": 40.8485252, "lon": -73.9879411 } + ], + "tags": { + "highway": "residential", + "name": "6th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "6th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 61407193, + "bounds": { + "minlat": 40.8515822, + "minlon": -73.9854299, + "maxlat": 40.8538879, + "maxlon": -73.9846794 + }, + "nodes": [ + 299171950, + 12020325906, + 12020325905, + 299172189, + 10943455746, + 299171952, + 10943455750, + 10943455737, + 299171957, + 10943455718, + 299171958, + 10943455765, + 299171959, + 10943455728, + 299171960, + 299171993, + 10943455748, + 12020325890, + 299171994, + 299171995 + ], + "geometry": [ + { "lat": 40.8538879, "lon": -73.9846794 }, + { "lat": 40.8537709, "lon": -73.9847183 }, + { "lat": 40.8536652, "lon": -73.9847488 }, + { "lat": 40.8535636, "lon": -73.9847740 }, + { "lat": 40.8534567, "lon": -73.9847955 }, + { "lat": 40.8533460, "lon": -73.9848152 }, + { "lat": 40.8532363, "lon": -73.9848324 }, + { "lat": 40.8526885, "lon": -73.9849085 }, + { "lat": 40.8525794, "lon": -73.9849242 }, + { "lat": 40.8524718, "lon": -73.9849433 }, + { "lat": 40.8523643, "lon": -73.9849696 }, + { "lat": 40.8522577, "lon": -73.9850033 }, + { "lat": 40.8521548, "lon": -73.9850436 }, + { "lat": 40.8520512, "lon": -73.9850923 }, + { "lat": 40.8519498, "lon": -73.9851477 }, + { "lat": 40.8518512, "lon": -73.9852104 }, + { "lat": 40.8517551, "lon": -73.9852801 }, + { "lat": 40.8517055, "lon": -73.9853211 }, + { "lat": 40.8516629, "lon": -73.9853563 }, + { "lat": 40.8515822, "lon": -73.9854299 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 61407194, + "bounds": { + "minlat": 40.8569648, + "minlon": -73.9805836, + "maxlat": 40.8575551, + "maxlon": -73.9799967 + }, + "nodes": [ + 103146637, + 7426470271, + 7434431187, + 12020325924, + 12020325926, + 103146639 + ], + "geometry": [ + { "lat": 40.8569648, "lon": -73.9805836 }, + { "lat": 40.8572425, "lon": -73.9803045 }, + { "lat": 40.8573110, "lon": -73.9802331 }, + { "lat": 40.8574567, "lon": -73.9800900 }, + { "lat": 40.8574948, "lon": -73.9800539 }, + { "lat": 40.8575551, "lon": -73.9799967 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Maple Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 61410419, + "bounds": { + "minlat": 40.8457500, + "minlon": -74.0189552, + "maxlat": 40.8472939, + "maxlon": -74.0156257 + }, + "nodes": [ + 298567579, + 10928116462, + 10928116464, + 10928116448, + 10928116456, + 10928116465, + 10928116459, + 298566970, + 10928116467, + 10928116457, + 298567560, + 10927386368, + 298566973 + ], + "geometry": [ + { "lat": 40.8472939, "lon": -74.0189552 }, + { "lat": 40.8469894, "lon": -74.0181993 }, + { "lat": 40.8469386, "lon": -74.0180731 }, + { "lat": 40.8468739, "lon": -74.0179129 }, + { "lat": 40.8468087, "lon": -74.0177501 }, + { "lat": 40.8467425, "lon": -74.0175880 }, + { "lat": 40.8466828, "lon": -74.0174511 }, + { "lat": 40.8466236, "lon": -74.0173239 }, + { "lat": 40.8465646, "lon": -74.0172008 }, + { "lat": 40.8465066, "lon": -74.0170828 }, + { "lat": 40.8464450, "lon": -74.0169647 }, + { "lat": 40.8463829, "lon": -74.0168460 }, + { "lat": 40.8457500, "lon": -74.0156257 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 61410424, + "bounds": { + "minlat": 40.8485631, + "minlon": -74.0173175, + "maxlat": 40.8491856, + "maxlon": -74.0155231 + }, + "nodes": [ + 530805604, + 294998163, + 294998182 + ], + "geometry": [ + { "lat": 40.8485631, "lon": -74.0155231 }, + { "lat": 40.8487583, "lon": -74.0160857 }, + { "lat": 40.8491856, "lon": -74.0173175 } + ], + "tags": { + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "Emerson Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Emerson", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 61461863, + "bounds": { + "minlat": 40.8414200, + "minlon": -74.0052799, + "maxlat": 40.8429225, + "maxlon": -74.0049169 + }, + "nodes": [ + 103241068, + 11444811733, + 103296639, + 12016147223, + 12016147224, + 103222032, + 12016147225, + 12016147226, + 12016147227, + 103296641, + 12016147228, + 12016147229, + 103296642, + 12016147230, + 103296643, + 103265287 + ], + "geometry": [ + { "lat": 40.8429225, "lon": -74.0049169 }, + { "lat": 40.8427745, "lon": -74.0049282 }, + { "lat": 40.8422500, "lon": -74.0049722 }, + { "lat": 40.8421950, "lon": -74.0049779 }, + { "lat": 40.8421522, "lon": -74.0049843 }, + { "lat": 40.8421149, "lon": -74.0049908 }, + { "lat": 40.8420738, "lon": -74.0049991 }, + { "lat": 40.8420276, "lon": -74.0050094 }, + { "lat": 40.8419598, "lon": -74.0050294 }, + { "lat": 40.8418972, "lon": -74.0050511 }, + { "lat": 40.8418305, "lon": -74.0050741 }, + { "lat": 40.8417757, "lon": -74.0050957 }, + { "lat": 40.8417184, "lon": -74.0051218 }, + { "lat": 40.8416540, "lon": -74.0051525 }, + { "lat": 40.8415967, "lon": -74.0051820 }, + { "lat": 40.8414200, "lon": -74.0052799 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "40 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 61912066, + "bounds": { + "minlat": 40.8355010, + "minlon": -73.9897260, + "maxlat": 40.8389653, + "maxlon": -73.9882872 + }, + "nodes": [ + 103148225, + 13527755876, + 103148226, + 103148228, + 103148229, + 103148230, + 13527715986, + 103125453, + 13527715988, + 103148232, + 103148233, + 103148234, + 7527758425, + 103148236 + ], + "geometry": [ + { "lat": 40.8355010, "lon": -73.9897260 }, + { "lat": 40.8356001, "lon": -73.9897121 }, + { "lat": 40.8356860, "lon": -73.9897000 }, + { "lat": 40.8363590, "lon": -73.9895660 }, + { "lat": 40.8364920, "lon": -73.9895190 }, + { "lat": 40.8366020, "lon": -73.9894620 }, + { "lat": 40.8368304, "lon": -73.9893064 }, + { "lat": 40.8368750, "lon": -73.9892760 }, + { "lat": 40.8369473, "lon": -73.9892298 }, + { "lat": 40.8370880, "lon": -73.9891400 }, + { "lat": 40.8373890, "lon": -73.9889710 }, + { "lat": 40.8376680, "lon": -73.9888370 }, + { "lat": 40.8384808, "lon": -73.9884925 }, + { "lat": 40.8389653, "lon": -73.9882872 } + ], + "tags": { + "alt_name": "Bergen Boulevard", + "highway": "residential", + "name": "Old Bergen Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 61914063, + "bounds": { + "minlat": 40.8518669, + "minlon": -73.9309960, + "maxlat": 40.8530620, + "maxlon": -73.9281588 + }, + "nodes": [ + 42436285, + 8740550826, + 1253602761, + 13703298716, + 1253602813, + 8740550801, + 42436288, + 8740550805, + 5403868151, + 42433080 + ], + "geometry": [ + { "lat": 40.8518669, "lon": -73.9281588 }, + { "lat": 40.8519189, "lon": -73.9282816 }, + { "lat": 40.8522953, "lon": -73.9291707 }, + { "lat": 40.8523613, "lon": -73.9293328 }, + { "lat": 40.8523923, "lon": -73.9294087 }, + { "lat": 40.8524372, "lon": -73.9295131 }, + { "lat": 40.8524760, "lon": -73.9296030 }, + { "lat": 40.8525202, "lon": -73.9297084 }, + { "lat": 40.8530085, "lon": -73.9308687 }, + { "lat": 40.8530620, "lon": -73.9309960 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "no", + "name": "West 187th Street", + "name_1": "West 187 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "187th", + "tiger:name_base_1": "187", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 61914064, + "bounds": { + "minlat": 40.8541572, + "minlon": -73.9360382, + "maxlat": 40.8549324, + "maxlon": -73.9337034 + }, + "nodes": [ + 42429083, + 1761599525, + 9563795478, + 9563795437, + 42436296, + 9423152413, + 8151650896, + 10057037402, + 9423152414, + 42436297 + ], + "geometry": [ + { "lat": 40.8541572, "lon": -73.9337034 }, + { "lat": 40.8541849, "lon": -73.9338357 }, + { "lat": 40.8541916, "lon": -73.9338538 }, + { "lat": 40.8544814, "lon": -73.9345477 }, + { "lat": 40.8545099, "lon": -73.9346217 }, + { "lat": 40.8545336, "lon": -73.9347048 }, + { "lat": 40.8546962, "lon": -73.9352564 }, + { "lat": 40.8547688, "lon": -73.9354967 }, + { "lat": 40.8549080, "lon": -73.9359569 }, + { "lat": 40.8549324, "lon": -73.9360382 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 187th Street", + "name_1": "West 187 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "187th", + "tiger:name_base_1": "187", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 61914065, + "bounds": { + "minlat": 40.8551570, + "minlon": -73.9320920, + "maxlat": 40.8557550, + "maxlon": -73.9316550 + }, + "nodes": [ + 42443486, + 748725145, + 8369968538, + 9563795377, + 42443488 + ], + "geometry": [ + { "lat": 40.8551570, "lon": -73.9320920 }, + { "lat": 40.8556244, "lon": -73.9317441 }, + { "lat": 40.8556818, "lon": -73.9317050 }, + { "lat": 40.8557034, "lon": -73.9316905 }, + { "lat": 40.8557550, "lon": -73.9316550 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Wadsworth Terrace", + "name:etymology:wikidata": "Q2339186", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 61914066, + "bounds": { + "minlat": 40.8557550, + "minlon": -73.9316550, + "maxlat": 40.8573725, + "maxlon": -73.9299339 + }, + "nodes": [ + 42443492, + 9563795366, + 6882325993, + 6882325994, + 704441661, + 1762373648, + 704441660, + 8369968548, + 9563795376, + 42443488 + ], + "geometry": [ + { "lat": 40.8573725, "lon": -73.9299339 }, + { "lat": 40.8573134, "lon": -73.9299544 }, + { "lat": 40.8572927, "lon": -73.9299616 }, + { "lat": 40.8572309, "lon": -73.9300561 }, + { "lat": 40.8571129, "lon": -73.9303655 }, + { "lat": 40.8569144, "lon": -73.9306817 }, + { "lat": 40.8566377, "lon": -73.9310057 }, + { "lat": 40.8558438, "lon": -73.9315897 }, + { "lat": 40.8558081, "lon": -73.9316158 }, + { "lat": 40.8557550, "lon": -73.9316550 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Wadsworth Terrace", + "name:etymology:wikidata": "Q2339186", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 61914068, + "bounds": { + "minlat": 40.8392951, + "minlon": -73.9396778, + "maxlat": 40.8402585, + "maxlon": -73.9373385 + }, + "nodes": [ + 2075592658, + 6836035774, + 9566997297, + 42432226, + 9566997300, + 9979245309, + 9566997289, + 42432228 + ], + "geometry": [ + { "lat": 40.8392951, "lon": -73.9373385 }, + { "lat": 40.8393501, "lon": -73.9374722 }, + { "lat": 40.8398604, "lon": -73.9387112 }, + { "lat": 40.8398976, "lon": -73.9388015 }, + { "lat": 40.8399396, "lon": -73.9389034 }, + { "lat": 40.8400564, "lon": -73.9391870 }, + { "lat": 40.8402109, "lon": -73.9395623 }, + { "lat": 40.8402585, "lon": -73.9396778 } + ], + "tags": { + "highway": "residential", + "name": "West 167th Street", + "name_1": "West 167 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "167th", + "tiger:name_base_1": "167", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 62207188, + "bounds": { + "minlat": 40.8724162, + "minlon": -74.0138692, + "maxlat": 40.8726258, + "maxlon": -74.0130131 + }, + "nodes": [ + 103214404, + 13527753038, + 4205863452, + 103124981 + ], + "geometry": [ + { "lat": 40.8724162, "lon": -74.0130131 }, + { "lat": 40.8724660, "lon": -74.0131877 }, + { "lat": 40.8725643, "lon": -74.0135327 }, + { "lat": 40.8726258, "lon": -74.0138692 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 62207278, + "bounds": { + "minlat": 40.8716993, + "minlon": -74.0069071, + "maxlat": 40.8719940, + "maxlon": -74.0067827 + }, + "nodes": [ + 567269849, + 10940833241, + 567269850, + 10940833222, + 567269852, + 10940833233, + 567269853 + ], + "geometry": [ + { "lat": 40.8719940, "lon": -74.0067827 }, + { "lat": 40.8719501, "lon": -74.0067901 }, + { "lat": 40.8719138, "lon": -74.0068012 }, + { "lat": 40.8718727, "lon": -74.0068165 }, + { "lat": 40.8718322, "lon": -74.0068345 }, + { "lat": 40.8718035, "lon": -74.0068498 }, + { "lat": 40.8716993, "lon": -74.0069071 } + ], + "tags": { + "highway": "residential", + "name": "Frank W Burr Boulevard", + "oneway": "yes", + "turn:lanes": "left|left" + } +}, +{ + "type": "way", + "id": 62207279, + "bounds": { + "minlat": 40.8721450, + "minlon": -74.0068515, + "maxlat": 40.8724470, + "maxlon": -74.0067954 + }, + "nodes": [ + 567269867, + 10940833279, + 10940833243, + 4775749265, + 10940833248, + 567269846 + ], + "geometry": [ + { "lat": 40.8724470, "lon": -74.0068299 }, + { "lat": 40.8723987, "lon": -74.0068483 }, + { "lat": 40.8723674, "lon": -74.0068515 }, + { "lat": 40.8723384, "lon": -74.0068469 }, + { "lat": 40.8721871, "lon": -74.0068058 }, + { "lat": 40.8721450, "lon": -74.0067954 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 62207281, + "bounds": { + "minlat": 40.8716993, + "minlon": -74.0070454, + "maxlat": 40.8717493, + "maxlon": -74.0069071 + }, + "nodes": [ + 567269853, + 4215501250, + 567269831 + ], + "geometry": [ + { "lat": 40.8716993, "lon": -74.0069071 }, + { "lat": 40.8717357, "lon": -74.0070061 }, + { "lat": 40.8717493, "lon": -74.0070454 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "4", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes": "|||right" + } +}, +{ + "type": "way", + "id": 62212953, + "bounds": { + "minlat": 40.7252011, + "minlon": -73.9906279, + "maxlat": 40.7253989, + "maxlon": -73.9901455 + }, + "nodes": [ + 775996476, + 775996479, + 8309479099, + 775996460 + ], + "geometry": [ + { "lat": 40.7253989, "lon": -73.9906279 }, + { "lat": 40.7252690, "lon": -73.9903019 }, + { "lat": 40.7252572, "lon": -73.9902721 }, + { "lat": 40.7252011, "lon": -73.9901455 } + ], + "tags": { + "highway": "service", + "lit": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 67917445, + "bounds": { + "minlat": 40.7489275, + "minlon": -73.9389239, + "maxlat": 40.7499184, + "maxlon": -73.9373948 + }, + "nodes": [ + 4966315015, + 6813394094, + 3785669497, + 5920758888, + 6813394087, + 276204477, + 4966315019, + 592643537, + 3785669498, + 8315037313, + 42844306 + ], + "geometry": [ + { "lat": 40.7499184, "lon": -73.9389239 }, + { "lat": 40.7498902, "lon": -73.9388597 }, + { "lat": 40.7497293, "lon": -73.9384877 }, + { "lat": 40.7496158, "lon": -73.9382653 }, + { "lat": 40.7495011, "lon": -73.9380665 }, + { "lat": 40.7494903, "lon": -73.9380477 }, + { "lat": 40.7494395, "lon": -73.9379727 }, + { "lat": 40.7492187, "lon": -73.9377219 }, + { "lat": 40.7490762, "lon": -73.9375777 }, + { "lat": 40.7490183, "lon": -73.9375074 }, + { "lat": 40.7489275, "lon": -73.9373948 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "name": "Queensboro Plaza", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 68010240, + "bounds": { + "minlat": 40.8787916, + "minlon": -73.9484618, + "maxlat": 40.8789527, + "maxlon": -73.9480836 + }, + "nodes": [ + 103106482, + 9682486640, + 103235606 + ], + "geometry": [ + { "lat": 40.8789527, "lon": -73.9484618 }, + { "lat": 40.8788882, "lon": -73.9483112 }, + { "lat": 40.8787916, "lon": -73.9480836 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Dyckman Hill Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 68196311, + "bounds": { + "minlat": 40.8401941, + "minlon": -73.9444186, + "maxlat": 40.8408932, + "maxlon": -73.9430682 + }, + "nodes": [ + 42427133, + 9566927276, + 13800731495, + 13800731498, + 2869154557, + 2499827795, + 595352889 + ], + "geometry": [ + { "lat": 40.8401941, "lon": -73.9430682 }, + { "lat": 40.8402458, "lon": -73.9431669 }, + { "lat": 40.8405454, "lon": -73.9437494 }, + { "lat": 40.8406334, "lon": -73.9439204 }, + { "lat": 40.8406834, "lon": -73.9440176 }, + { "lat": 40.8407273, "lon": -73.9441028 }, + { "lat": 40.8408932, "lon": -73.9444186 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "West 165th Street", + "name_1": "West 165 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "165th", + "tiger:name_base_1": "165", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 68196312, + "bounds": { + "minlat": 40.8386617, + "minlon": -73.9398760, + "maxlat": 40.8390431, + "maxlon": -73.9398390 + }, + "nodes": [ + 11107581284, + 12819924597, + 9569897422, + 2499803009 + ], + "geometry": [ + { "lat": 40.8390431, "lon": -73.9398760 }, + { "lat": 40.8389226, "lon": -73.9398593 }, + { "lat": 40.8387761, "lon": -73.9398390 }, + { "lat": 40.8386617, "lon": -73.9398419 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 68196317, + "bounds": { + "minlat": 40.8424808, + "minlon": -73.9387846, + "maxlat": 40.8429055, + "maxlon": -73.9384302 + }, + "nodes": [ + 42433043, + 7604384233, + 2499757472 + ], + "geometry": [ + { "lat": 40.8429055, "lon": -73.9384302 }, + { "lat": 40.8428566, "lon": -73.9384740 }, + { "lat": 40.8424808, "lon": -73.9387846 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 68196323, + "bounds": { + "minlat": 40.8385135, + "minlon": -73.9410885, + "maxlat": 40.8391601, + "maxlon": -73.9398455 + }, + "nodes": [ + 42433027, + 9569897424, + 2499803004, + 9566927279, + 561035380 + ], + "geometry": [ + { "lat": 40.8385135, "lon": -73.9398455 }, + { "lat": 40.8385949, "lon": -73.9400006 }, + { "lat": 40.8386183, "lon": -73.9400452 }, + { "lat": 40.8390918, "lon": -73.9409571 }, + { "lat": 40.8391601, "lon": -73.9410885 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "West 165th Street", + "name_1": "West 165 Street", + "oneway": "no", + "rcn_ref": "9", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "165th", + "tiger:name_base_1": "165", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 68196325, + "bounds": { + "minlat": 40.8396107, + "minlon": -73.9432984, + "maxlat": 40.8401941, + "maxlon": -73.9430682 + }, + "nodes": [ + 42427133, + 9566927275, + 5552273903 + ], + "geometry": [ + { "lat": 40.8401941, "lon": -73.9430682 }, + { "lat": 40.8401017, "lon": -73.9431052 }, + { "lat": 40.8396107, "lon": -73.9432984 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "secondary", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 68325061, + "bounds": { + "minlat": 40.7595683, + "minlon": -74.0029273, + "maxlat": 40.7601045, + "maxlon": -74.0025334 + }, + "nodes": [ + 8666573688, + 12154605950, + 247119422, + 42453541 + ], + "geometry": [ + { "lat": 40.7595683, "lon": -74.0029273 }, + { "lat": 40.7599698, "lon": -74.0026329 }, + { "lat": 40.7599985, "lon": -74.0026119 }, + { "lat": 40.7601045, "lon": -74.0025334 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 68325062, + "bounds": { + "minlat": 40.7286179, + "minlon": -74.0070745, + "maxlat": 40.7287662, + "maxlon": -74.0053218 + }, + "nodes": [ + 42448563, + 8307641955, + 8307641948, + 42436371 + ], + "geometry": [ + { "lat": 40.7286179, "lon": -74.0053218 }, + { "lat": 40.7286300, "lon": -74.0054575 }, + { "lat": 40.7287572, "lon": -74.0069674 }, + { "lat": 40.7287662, "lon": -74.0070745 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 68325065, + "bounds": { + "minlat": 40.7225365, + "minlon": -73.9876023, + "maxlat": 40.7226798, + "maxlon": -73.9870920 + }, + "nodes": [ + 4478001045, + 5783020907, + 9181587101 + ], + "geometry": [ + { "lat": 40.7225365, "lon": -73.9870920 }, + { "lat": 40.7225635, "lon": -73.9871797 }, + { "lat": 40.7226798, "lon": -73.9876023 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 68325075, + "bounds": { + "minlat": 40.7536424, + "minlon": -73.9986250, + "maxlat": 40.7543851, + "maxlon": -73.9982439 + }, + "nodes": [ + 427841052, + 427841054, + 11144700405, + 427841055, + 427841056, + 11144700404, + 9423683653, + 11144700419, + 427841057 + ], + "geometry": [ + { "lat": 40.7543851, "lon": -73.9982439 }, + { "lat": 40.7541116, "lon": -73.9984396 }, + { "lat": 40.7540481, "lon": -73.9984806 }, + { "lat": 40.7539718, "lon": -73.9985246 }, + { "lat": 40.7538702, "lon": -73.9985685 }, + { "lat": 40.7537967, "lon": -73.9985955 }, + { "lat": 40.7537268, "lon": -73.9986125 }, + { "lat": 40.7536799, "lon": -73.9986210 }, + { "lat": 40.7536424, "lon": -73.9986250 } + ], + "tags": { + "hgv": "local", + "highway": "motorway", + "lanes": "2", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 68325078, + "bounds": { + "minlat": 40.8493251, + "minlon": -73.9412604, + "maxlat": 40.8495819, + "maxlon": -73.9399149 + }, + "nodes": [ + 60918686, + 595464616 + ], + "geometry": [ + { "lat": 40.8493251, "lon": -73.9399149 }, + { "lat": 40.8495819, "lon": -73.9412604 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 68325079, + "bounds": { + "minlat": 40.7596264, + "minlon": -73.9971998, + "maxlat": 40.7603630, + "maxlon": -73.9954726 + }, + "nodes": [ + 4207932665, + 10168212456, + 42437371 + ], + "geometry": [ + { "lat": 40.7603630, "lon": -73.9971998 }, + { "lat": 40.7596864, "lon": -73.9956133 }, + { "lat": 40.7596264, "lon": -73.9954726 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lit": "yes", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:backward": "left|left;through|", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68325082, + "bounds": { + "minlat": 40.7349071, + "minlon": -73.9347826, + "maxlat": 40.7355614, + "maxlon": -73.9343783 + }, + "nodes": [ + 42888681, + 8097303880, + 9982697956, + 42896784 + ], + "geometry": [ + { "lat": 40.7349071, "lon": -73.9343783 }, + { "lat": 40.7349758, "lon": -73.9344214 }, + { "lat": 40.7354890, "lon": -73.9347403 }, + { "lat": 40.7355614, "lon": -73.9347826 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Bradley Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 68325088, + "bounds": { + "minlat": 40.8609282, + "minlon": -73.9745226, + "maxlat": 40.8654570, + "maxlon": -73.9740244 + }, + "nodes": [ + 76464206, + 13765116185, + 13765116186, + 13765116189, + 13765116187, + 13765116188, + 76464207, + 76464208, + 7921808842, + 13765116184, + 7924973878, + 7924973864, + 299125366, + 7924973884, + 299125367, + 299125368, + 7924973870, + 7924979203, + 299125369, + 299125370, + 7924973861, + 299125371, + 7924979194, + 299125372, + 7924973880, + 299125373, + 7924973866, + 299125374, + 7924973876, + 7924973857, + 7924979190, + 298768827 + ], + "geometry": [ + { "lat": 40.8609282, "lon": -73.9745226 }, + { "lat": 40.8610326, "lon": -73.9745173 }, + { "lat": 40.8611417, "lon": -73.9745068 }, + { "lat": 40.8612106, "lon": -73.9744971 }, + { "lat": 40.8612766, "lon": -73.9744865 }, + { "lat": 40.8613728, "lon": -73.9744689 }, + { "lat": 40.8614661, "lon": -73.9744505 }, + { "lat": 40.8615950, "lon": -73.9744212 }, + { "lat": 40.8617860, "lon": -73.9743753 }, + { "lat": 40.8624482, "lon": -73.9741971 }, + { "lat": 40.8625847, "lon": -73.9741603 }, + { "lat": 40.8627193, "lon": -73.9741276 }, + { "lat": 40.8628591, "lon": -73.9740984 }, + { "lat": 40.8630002, "lon": -73.9740711 }, + { "lat": 40.8631370, "lon": -73.9740515 }, + { "lat": 40.8632749, "lon": -73.9740373 }, + { "lat": 40.8634147, "lon": -73.9740289 }, + { "lat": 40.8635582, "lon": -73.9740244 }, + { "lat": 40.8636971, "lon": -73.9740252 }, + { "lat": 40.8638375, "lon": -73.9740336 }, + { "lat": 40.8639759, "lon": -73.9740463 }, + { "lat": 40.8641118, "lon": -73.9740627 }, + { "lat": 40.8642509, "lon": -73.9740873 }, + { "lat": 40.8644119, "lon": -73.9741219 }, + { "lat": 40.8645427, "lon": -73.9741555 }, + { "lat": 40.8646732, "lon": -73.9741953 }, + { "lat": 40.8648099, "lon": -73.9742421 }, + { "lat": 40.8649420, "lon": -73.9742925 }, + { "lat": 40.8650686, "lon": -73.9743440 }, + { "lat": 40.8651965, "lon": -73.9743993 }, + { "lat": 40.8653234, "lon": -73.9744557 }, + { "lat": 40.8654570, "lon": -73.9745176 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 68325104, + "bounds": { + "minlat": 40.7538740, + "minlon": -74.0072465, + "maxlat": 40.7545608, + "maxlon": -74.0068630 + }, + "nodes": [ + 246650510, + 247073541, + 9143569882, + 9143569881, + 373915413, + 246650511, + 12161224628, + 247073284, + 12161224641, + 4899886584 + ], + "geometry": [ + { "lat": 40.7545608, "lon": -74.0068630 }, + { "lat": 40.7544593, "lon": -74.0069356 }, + { "lat": 40.7543921, "lon": -74.0069829 }, + { "lat": 40.7543115, "lon": -74.0070334 }, + { "lat": 40.7542204, "lon": -74.0070872 }, + { "lat": 40.7541184, "lon": -74.0071410 }, + { "lat": 40.7540151, "lon": -74.0071888 }, + { "lat": 40.7539636, "lon": -74.0072116 }, + { "lat": 40.7539108, "lon": -74.0072325 }, + { "lat": 40.7538740, "lon": -74.0072465 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:separate": "right", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 68506901, + "bounds": { + "minlat": 40.7699411, + "minlon": -73.9945360, + "maxlat": 40.7704997, + "maxlon": -73.9944465 + }, + "nodes": [ + 61275380, + 247128814, + 12153915828, + 12153915827, + 7771637686, + 13101015877 + ], + "geometry": [ + { "lat": 40.7699411, "lon": -73.9945360 }, + { "lat": 40.7700337, "lon": -73.9945121 }, + { "lat": 40.7701209, "lon": -73.9944969 }, + { "lat": 40.7702154, "lon": -73.9944830 }, + { "lat": 40.7703087, "lon": -73.9944696 }, + { "lat": 40.7704997, "lon": -73.9944465 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "foot": "use_sidepath", + "hgv": "destination", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "note": "this is supposed to be a local truck route but signs say no trucks", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A" + } +}, +{ + "type": "way", + "id": 68506902, + "bounds": { + "minlat": 40.7695243, + "minlon": -73.9949670, + "maxlat": 40.7700328, + "maxlon": -73.9947846 + }, + "nodes": [ + 9140924713, + 12153915816, + 12153915815, + 4904792740, + 12153915835, + 61275658, + 9143011014 + ], + "geometry": [ + { "lat": 40.7700328, "lon": -73.9947846 }, + { "lat": 40.7699555, "lon": -73.9948025 }, + { "lat": 40.7698863, "lon": -73.9948215 }, + { "lat": 40.7697974, "lon": -73.9948513 }, + { "lat": 40.7697194, "lon": -73.9948795 }, + { "lat": 40.7696215, "lon": -73.9949211 }, + { "lat": 40.7695243, "lon": -73.9949670 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "no|not_left|yes|yes|yes", + "foot": "use_sidepath", + "hgv": "destination", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 68506907, + "bounds": { + "minlat": 40.7696881, + "minlon": -73.9946225, + "maxlat": 40.7699411, + "maxlon": -73.9945360 + }, + "nodes": [ + 13099951760, + 12153915837, + 9143024319, + 61275380 + ], + "geometry": [ + { "lat": 40.7696881, "lon": -73.9946225 }, + { "lat": 40.7697491, "lon": -73.9945995 }, + { "lat": 40.7698405, "lon": -73.9945668 }, + { "lat": 40.7699411, "lon": -73.9945360 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "foot": "use_sidepath", + "hgv": "no", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "note": "this is supposed to be a local truck route but signs say no trucks", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:both": "no", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 68518731, + "bounds": { + "minlat": 40.8044365, + "minlon": -73.9121361, + "maxlat": 40.8045703, + "maxlon": -73.9118438 + }, + "nodes": [ + 42728734, + 588114597 + ], + "geometry": [ + { "lat": 40.8044365, "lon": -73.9118438 }, + { "lat": 40.8045703, "lon": -73.9121361 } + ], + "tags": { + "cycleway": "track", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 138th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 68518734, + "bounds": { + "minlat": 40.8292176, + "minlon": -73.9317876, + "maxlat": 40.8301026, + "maxlon": -73.9314190 + }, + "nodes": [ + 595779473, + 9166314628, + 595786284, + 8962601313, + 595786285, + 9166314636, + 9166314629, + 8427906326 + ], + "geometry": [ + { "lat": 40.8292176, "lon": -73.9314190 }, + { "lat": 40.8293487, "lon": -73.9315007 }, + { "lat": 40.8294329, "lon": -73.9315481 }, + { "lat": 40.8295675, "lon": -73.9316124 }, + { "lat": 40.8296702, "lon": -73.9316550 }, + { "lat": 40.8297806, "lon": -73.9316984 }, + { "lat": 40.8299088, "lon": -73.9317419 }, + { "lat": 40.8301026, "lon": -73.9317876 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "turn:lanes": "merge_to_right|" + } +}, +{ + "type": "way", + "id": 68518745, + "bounds": { + "minlat": 40.8341173, + "minlon": -73.9488218, + "maxlat": 40.8349454, + "maxlon": -73.9467489 + }, + "nodes": [ + 823952247, + 587934112, + 12998931062, + 12998931063, + 12998931061, + 595352906, + 12998931060, + 12998931059, + 12998931058, + 587934250, + 12998931037, + 761293090, + 761329683, + 587934263, + 12998931057, + 12998931056, + 2504882454, + 2513517572, + 12998931055, + 12998931049, + 12998931053 + ], + "geometry": [ + { "lat": 40.8342323, "lon": -73.9488218 }, + { "lat": 40.8341556, "lon": -73.9486076 }, + { "lat": 40.8341375, "lon": -73.9485260 }, + { "lat": 40.8341249, "lon": -73.9484569 }, + { "lat": 40.8341173, "lon": -73.9483678 }, + { "lat": 40.8341197, "lon": -73.9482127 }, + { "lat": 40.8341218, "lon": -73.9481820 }, + { "lat": 40.8341345, "lon": -73.9481109 }, + { "lat": 40.8341502, "lon": -73.9480546 }, + { "lat": 40.8341779, "lon": -73.9479712 }, + { "lat": 40.8342441, "lon": -73.9478434 }, + { "lat": 40.8343240, "lon": -73.9477493 }, + { "lat": 40.8344225, "lon": -73.9476826 }, + { "lat": 40.8347197, "lon": -73.9474676 }, + { "lat": 40.8347971, "lon": -73.9473807 }, + { "lat": 40.8348260, "lon": -73.9473405 }, + { "lat": 40.8348452, "lon": -73.9472945 }, + { "lat": 40.8348977, "lon": -73.9470451 }, + { "lat": 40.8349156, "lon": -73.9469354 }, + { "lat": 40.8349211, "lon": -73.9468647 }, + { "lat": 40.8349454, "lon": -73.9467489 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 68518746, + "bounds": { + "minlat": 40.8343209, + "minlon": -73.9491332, + "maxlat": 40.8344543, + "maxlon": -73.9487730 + }, + "nodes": [ + 761323191, + 13105137066, + 9935945726, + 13105137064 + ], + "geometry": [ + { "lat": 40.8343209, "lon": -73.9487730 }, + { "lat": 40.8343662, "lon": -73.9488893 }, + { "lat": 40.8343897, "lon": -73.9489496 }, + { "lat": 40.8344543, "lon": -73.9491332 } + ], + "tags": { + "bridge": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "no", + "layer": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 68523759, + "bounds": { + "minlat": 40.7093500, + "minlon": -73.9562847, + "maxlat": 40.7095039, + "maxlon": -73.9558706 + }, + "nodes": [ + 42520715, + 9768177544, + 480213833 + ], + "geometry": [ + { "lat": 40.7093500, "lon": -73.9558706 }, + { "lat": 40.7093816, "lon": -73.9559551 }, + { "lat": 40.7095039, "lon": -73.9562847 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "residential", + "name": "South 4th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 68523762, + "bounds": { + "minlat": 40.7347071, + "minlon": -73.9524468, + "maxlat": 40.7349832, + "maxlon": -73.9523393 + }, + "nodes": [ + 42486604, + 12068940234, + 8962299835 + ], + "geometry": [ + { "lat": 40.7347071, "lon": -73.9523393 }, + { "lat": 40.7347705, "lon": -73.9523646 }, + { "lat": 40.7349832, "lon": -73.9524468 } + ], + "tags": { + "bicycle": "no", + "cycleway:both": "no", + "foot": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 68523763, + "bounds": { + "minlat": 40.7138453, + "minlon": -73.9239340, + "maxlat": 40.7140101, + "maxlon": -73.9211019 + }, + "nodes": [ + 42477655, + 10633037987, + 5482675500, + 5515218192 + ], + "geometry": [ + { "lat": 40.7140101, "lon": -73.9239340 }, + { "lat": 40.7139705, "lon": -73.9232242 }, + { "lat": 40.7139602, "lon": -73.9230388 }, + { "lat": 40.7138453, "lon": -73.9211019 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 68523778, + "bounds": { + "minlat": 40.7233163, + "minlon": -73.9482326, + "maxlat": 40.7246177, + "maxlon": -73.9475020 + }, + "nodes": [ + 2987758886, + 6348469399, + 4396121307, + 2987758888 + ], + "geometry": [ + { "lat": 40.7246177, "lon": -73.9482326 }, + { "lat": 40.7245569, "lon": -73.9481968 }, + { "lat": 40.7245240, "lon": -73.9481776 }, + { "lat": 40.7233163, "lon": -73.9475020 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 68537817, + "bounds": { + "minlat": 40.7241820, + "minlon": -73.9125050, + "maxlat": 40.7242570, + "maxlon": -73.9113450 + }, + "nodes": [ + 42902805, + 11406248208, + 11406248209, + 42902810 + ], + "geometry": [ + { "lat": 40.7242570, "lon": -73.9125050 }, + { "lat": 40.7242493, "lon": -73.9123862 }, + { "lat": 40.7241971, "lon": -73.9115780 }, + { "lat": 40.7241820, "lon": -73.9113450 } + ], + "tags": { + "highway": "unclassified", + "name": "56th Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 68537821, + "bounds": { + "minlat": 40.7684376, + "minlon": -73.9199879, + "maxlat": 40.7698754, + "maxlon": -73.9183546 + }, + "nodes": [ + 276209340, + 7976789863, + 4971244239, + 42832974 + ], + "geometry": [ + { "lat": 40.7698754, "lon": -73.9183546 }, + { "lat": 40.7689713, "lon": -73.9193699 }, + { "lat": 40.7685097, "lon": -73.9199079 }, + { "lat": 40.7684376, "lon": -73.9199879 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxheight": "12'6\"", + "maxspeed": "20 mph", + "name": "31st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 68537822, + "bounds": { + "minlat": 40.7375966, + "minlon": -73.9349617, + "maxlat": 40.7377897, + "maxlon": -73.9338663 + }, + "nodes": [ + 597322234, + 9179114939, + 13049334892, + 42866373 + ], + "geometry": [ + { "lat": 40.7375966, "lon": -73.9338663 }, + { "lat": 40.7376698, "lon": -73.9343030 }, + { "lat": 40.7377661, "lon": -73.9348313 }, + { "lat": 40.7377897, "lon": -73.9349617 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 68537831, + "bounds": { + "minlat": 40.7316586, + "minlon": -73.9245193, + "maxlat": 40.7322500, + "maxlon": -73.9217855 + }, + "nodes": [ + 42786844, + 11955770856, + 8097303853, + 42786848, + 10087637167, + 42786855 + ], + "geometry": [ + { "lat": 40.7322500, "lon": -73.9245193 }, + { "lat": 40.7322332, "lon": -73.9244412 }, + { "lat": 40.7322193, "lon": -73.9243762 }, + { "lat": 40.7319702, "lon": -73.9232141 }, + { "lat": 40.7316719, "lon": -73.9218688 }, + { "lat": 40.7316586, "lon": -73.9217855 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "54th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 68668516, + "bounds": { + "minlat": 40.7208346, + "minlon": -73.9982238, + "maxlat": 40.7210819, + "maxlon": -73.9976388 + }, + "nodes": [ + 42427327, + 12197904819, + 8231927644, + 12187436357, + 12187436354, + 8231927647, + 12197904820, + 42432165 + ], + "geometry": [ + { "lat": 40.7208346, "lon": -73.9976388 }, + { "lat": 40.7208592, "lon": -73.9976939 }, + { "lat": 40.7208758, "lon": -73.9977313 }, + { "lat": 40.7208865, "lon": -73.9977552 }, + { "lat": 40.7210053, "lon": -73.9980430 }, + { "lat": 40.7210286, "lon": -73.9980978 }, + { "lat": 40.7210446, "lon": -73.9981356 }, + { "lat": 40.7210819, "lon": -73.9982238 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "13.5", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 68668517, + "bounds": { + "minlat": 40.8037065, + "minlon": -73.9358291, + "maxlat": 40.8043912, + "maxlon": -73.9353330 + }, + "nodes": [ + 42444458, + 4980798211, + 11255243802, + 11214344804, + 42434131 + ], + "geometry": [ + { "lat": 40.8037065, "lon": -73.9358291 }, + { "lat": 40.8037991, "lon": -73.9357619 }, + { "lat": 40.8040410, "lon": -73.9355867 }, + { "lat": 40.8043259, "lon": -73.9353803 }, + { "lat": 40.8043912, "lon": -73.9353330 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 68668518, + "bounds": { + "minlat": 40.8138841, + "minlon": -73.9347739, + "maxlat": 40.8142114, + "maxlon": -73.9341955 + }, + "nodes": [ + 5843576975, + 7732264894, + 7732264893, + 373762480, + 9903106217, + 7732264891, + 7732264892, + 373762481, + 7732264889, + 7732264890, + 373762482, + 4215812470 + ], + "geometry": [ + { "lat": 40.8142114, "lon": -73.9341955 }, + { "lat": 40.8141835, "lon": -73.9343261 }, + { "lat": 40.8141717, "lon": -73.9343736 }, + { "lat": 40.8141538, "lon": -73.9344297 }, + { "lat": 40.8141355, "lon": -73.9344790 }, + { "lat": 40.8141130, "lon": -73.9345307 }, + { "lat": 40.8140850, "lon": -73.9345809 }, + { "lat": 40.8140562, "lon": -73.9346219 }, + { "lat": 40.8140214, "lon": -73.9346614 }, + { "lat": 40.8139870, "lon": -73.9346929 }, + { "lat": 40.8139539, "lon": -73.9347209 }, + { "lat": 40.8138841, "lon": -73.9347739 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Madison Avenue Bridge", + "highway": "secondary", + "lanes": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "wikidata": "Q3751430", + "wikipedia": "en:Madison Avenue Bridge" + } +}, +{ + "type": "way", + "id": 68668519, + "bounds": { + "minlat": 40.7478958, + "minlon": -73.9891568, + "maxlat": 40.7481021, + "maxlon": -73.9890050 + }, + "nodes": [ + 42430292, + 10168911589, + 9051115967 + ], + "geometry": [ + { "lat": 40.7478958, "lon": -73.9891568 }, + { "lat": 40.7479511, "lon": -73.9891161 }, + { "lat": 40.7481021, "lon": -73.9890050 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 68668521, + "bounds": { + "minlat": 40.7360172, + "minlon": -73.9780827, + "maxlat": 40.7366994, + "maxlon": -73.9764585 + }, + "nodes": [ + 4207683795, + 5356470560, + 5356470555, + 7134524482, + 5684427051, + 9832349990 + ], + "geometry": [ + { "lat": 40.7366994, "lon": -73.9780827 }, + { "lat": 40.7366087, "lon": -73.9778669 }, + { "lat": 40.7363180, "lon": -73.9771747 }, + { "lat": 40.7362159, "lon": -73.9769315 }, + { "lat": 40.7360817, "lon": -73.9766121 }, + { "lat": 40.7360172, "lon": -73.9764585 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "name_1": "East 23 Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668522, + "bounds": { + "minlat": 40.7586736, + "minlon": -73.9619550, + "maxlat": 40.7596231, + "maxlon": -73.9597228 + }, + "nodes": [ + 42448326, + 6795524043, + 6293701619, + 4918486739, + 42448329 + ], + "geometry": [ + { "lat": 40.7596231, "lon": -73.9619550 }, + { "lat": 40.7595660, "lon": -73.9618353 }, + { "lat": 40.7591778, "lon": -73.9609164 }, + { "lat": 40.7587240, "lon": -73.9598403 }, + { "lat": 40.7586736, "lon": -73.9597228 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668523, + "bounds": { + "minlat": 40.8493210, + "minlon": -73.9337310, + "maxlat": 40.8527903, + "maxlon": -73.9311949 + }, + "nodes": [ + 42433066, + 5403873761, + 8395180316, + 11595000898, + 5403873759, + 42433068, + 5403873757, + 5403873754, + 42433069, + 5403873752, + 5403873750, + 42433072, + 5403873748, + 11596488702, + 11595082071, + 5403873745, + 42433075, + 5403873746, + 5403868155, + 42433077, + 5403868154, + 12953580081 + ], + "geometry": [ + { "lat": 40.8493210, "lon": -73.9337310 }, + { "lat": 40.8494041, "lon": -73.9336700 }, + { "lat": 40.8494288, "lon": -73.9336519 }, + { "lat": 40.8496603, "lon": -73.9334821 }, + { "lat": 40.8498498, "lon": -73.9333432 }, + { "lat": 40.8498950, "lon": -73.9333100 }, + { "lat": 40.8499564, "lon": -73.9332648 }, + { "lat": 40.8504404, "lon": -73.9329092 }, + { "lat": 40.8505060, "lon": -73.9328610 }, + { "lat": 40.8505860, "lon": -73.9328029 }, + { "lat": 40.8510426, "lon": -73.9324710 }, + { "lat": 40.8510950, "lon": -73.9324330 }, + { "lat": 40.8511543, "lon": -73.9323899 }, + { "lat": 40.8513936, "lon": -73.9322153 }, + { "lat": 40.8515893, "lon": -73.9320726 }, + { "lat": 40.8516291, "lon": -73.9320436 }, + { "lat": 40.8516960, "lon": -73.9319950 }, + { "lat": 40.8517658, "lon": -73.9319439 }, + { "lat": 40.8523220, "lon": -73.9315372 }, + { "lat": 40.8523800, "lon": -73.9314950 }, + { "lat": 40.8524383, "lon": -73.9314522 }, + { "lat": 40.8527903, "lon": -73.9311949 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 68668524, + "bounds": { + "minlat": 40.7704153, + "minlon": -73.9495942, + "maxlat": 40.7710443, + "maxlon": -73.9480635 + }, + "nodes": [ + 4888399301, + 9906887427, + 3785451353, + 9906887417, + 42451744 + ], + "geometry": [ + { "lat": 40.7710443, "lon": -73.9495942 }, + { "lat": 40.7704665, "lon": -73.9482168 }, + { "lat": 40.7704546, "lon": -73.9481883 }, + { "lat": 40.7704329, "lon": -73.9481215 }, + { "lat": 40.7704153, "lon": -73.9480635 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668526, + "bounds": { + "minlat": 40.7304142, + "minlon": -73.9825607, + "maxlat": 40.7313525, + "maxlon": -73.9803596 + }, + "nodes": [ + 42440743, + 4161568336, + 11040029970, + 11040080988, + 9882223234, + 9882223239, + 9907956900, + 9907956899, + 9907956898, + 9882223232, + 11040080986, + 11040029972, + 4298757077, + 42439006 + ], + "geometry": [ + { "lat": 40.7313525, "lon": -73.9825607 }, + { "lat": 40.7313043, "lon": -73.9824417 }, + { "lat": 40.7312087, "lon": -73.9822054 }, + { "lat": 40.7311494, "lon": -73.9820644 }, + { "lat": 40.7310166, "lon": -73.9817484 }, + { "lat": 40.7307331, "lon": -73.9810745 }, + { "lat": 40.7307202, "lon": -73.9810475 }, + { "lat": 40.7307059, "lon": -73.9810220 }, + { "lat": 40.7306527, "lon": -73.9809302 }, + { "lat": 40.7306378, "lon": -73.9808999 }, + { "lat": 40.7305752, "lon": -73.9807510 }, + { "lat": 40.7305663, "lon": -73.9807299 }, + { "lat": 40.7304530, "lon": -73.9804606 }, + { "lat": 40.7304142, "lon": -73.9803596 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668527, + "bounds": { + "minlat": 40.7795447, + "minlon": -73.9597737, + "maxlat": 40.7808601, + "maxlon": -73.9588013 + }, + "nodes": [ + 42435499, + 2238282279, + 3392519831, + 42446036, + 3392519863, + 3392519869, + 42429324 + ], + "geometry": [ + { "lat": 40.7795447, "lon": -73.9597737 }, + { "lat": 40.7795972, "lon": -73.9597335 }, + { "lat": 40.7801164, "lon": -73.9593518 }, + { "lat": 40.7801730, "lon": -73.9593110 }, + { "lat": 40.7802386, "lon": -73.9592639 }, + { "lat": 40.7807603, "lon": -73.9588777 }, + { "lat": 40.7808601, "lon": -73.9588013 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 68668529, + "bounds": { + "minlat": 40.7434866, + "minlon": -73.9735080, + "maxlat": 40.7437863, + "maxlon": -73.9727995 + }, + "nodes": [ + 9971314370, + 6298391914, + 3932847294, + 42445390 + ], + "geometry": [ + { "lat": 40.7434866, "lon": -73.9727995 }, + { "lat": 40.7436321, "lon": -73.9731434 }, + { "lat": 40.7437271, "lon": -73.9733679 }, + { "lat": 40.7437863, "lon": -73.9735080 } + ], + "tags": { + "bus:lanes:forward": "yes|designated|yes", + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "||right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668532, + "bounds": { + "minlat": 40.7769914, + "minlon": -73.9637197, + "maxlat": 40.7808503, + "maxlon": -73.9609089 + }, + "nodes": [ + 42449187, + 3392519835, + 2238282394, + 42435497, + 2238282383, + 3392519826, + 42448203, + 3392519824, + 3392519828, + 42439389, + 3392519846, + 3392519843, + 42452951, + 3341858521, + 3341915090, + 42438485, + 3341915089, + 5618091325, + 7103600800, + 7076310729, + 7076310731, + 3278932311, + 42440397 + ], + "geometry": [ + { "lat": 40.7808503, "lon": -73.9609089 }, + { "lat": 40.7807976, "lon": -73.9609493 }, + { "lat": 40.7803015, "lon": -73.9613103 }, + { "lat": 40.7802320, "lon": -73.9613628 }, + { "lat": 40.7801584, "lon": -73.9614166 }, + { "lat": 40.7796424, "lon": -73.9617921 }, + { "lat": 40.7795823, "lon": -73.9618327 }, + { "lat": 40.7795293, "lon": -73.9618707 }, + { "lat": 40.7790041, "lon": -73.9622553 }, + { "lat": 40.7789465, "lon": -73.9622984 }, + { "lat": 40.7788968, "lon": -73.9623363 }, + { "lat": 40.7783736, "lon": -73.9627182 }, + { "lat": 40.7783119, "lon": -73.9627630 }, + { "lat": 40.7782666, "lon": -73.9627962 }, + { "lat": 40.7777403, "lon": -73.9631763 }, + { "lat": 40.7776743, "lon": -73.9632228 }, + { "lat": 40.7776473, "lon": -73.9632435 }, + { "lat": 40.7776249, "lon": -73.9632592 }, + { "lat": 40.7775055, "lon": -73.9633456 }, + { "lat": 40.7774582, "lon": -73.9633809 }, + { "lat": 40.7773253, "lon": -73.9634772 }, + { "lat": 40.7771024, "lon": -73.9636393 }, + { "lat": 40.7769914, "lon": -73.9637197 } + ], + "tags": { + "alt_name": "Museum Mile", + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "motorcar": "yes", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 68668533, + "bounds": { + "minlat": 40.7838930, + "minlon": -73.9821955, + "maxlat": 40.7847833, + "maxlon": -73.9800838 + }, + "nodes": [ + 42428653, + 8709392078, + 8727756097, + 42431019, + 8727756101, + 9906904523 + ], + "geometry": [ + { "lat": 40.7838930, "lon": -73.9800838 }, + { "lat": 40.7839370, "lon": -73.9801883 }, + { "lat": 40.7842965, "lon": -73.9810361 }, + { "lat": 40.7843536, "lon": -73.9811697 }, + { "lat": 40.7844025, "lon": -73.9812917 }, + { "lat": 40.7847833, "lon": -73.9821955 } + ], + "tags": { + "alt_name": "West 79 Street", + "bicycle": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 79th Street", + "name:ru": "Западная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668534, + "bounds": { + "minlat": 40.8050631, + "minlon": -73.9411468, + "maxlat": 40.8057387, + "maxlon": -73.9406432 + }, + "nodes": [ + 42438704, + 10171231551, + 10170762176, + 42444453 + ], + "geometry": [ + { "lat": 40.8050631, "lon": -73.9411468 }, + { "lat": 40.8051247, "lon": -73.9411007 }, + { "lat": 40.8056478, "lon": -73.9407077 }, + { "lat": 40.8057387, "lon": -73.9406432 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "||right", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 68668536, + "bounds": { + "minlat": 40.7676772, + "minlon": -73.9962736, + "maxlat": 40.7680917, + "maxlon": -73.9959717 + }, + "nodes": [ + 12153915853, + 247122524, + 13101015871 + ], + "geometry": [ + { "lat": 40.7680917, "lon": -73.9959717 }, + { "lat": 40.7680127, "lon": -73.9960310 }, + { "lat": 40.7676772, "lon": -73.9962736 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 68668538, + "bounds": { + "minlat": 40.8060692, + "minlon": -73.9425206, + "maxlat": 40.8064189, + "maxlon": -73.9422694 + }, + "nodes": [ + 42444452, + 7004469480, + 11255278314, + 4207764479 + ], + "geometry": [ + { "lat": 40.8064189, "lon": -73.9422694 }, + { "lat": 40.8063268, "lon": -73.9423356 }, + { "lat": 40.8060951, "lon": -73.9425020 }, + { "lat": 40.8060692, "lon": -73.9425206 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "turn:lanes": "left|right|none", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 68668539, + "bounds": { + "minlat": 40.7180188, + "minlon": -73.9999527, + "maxlat": 40.7195174, + "maxlon": -73.9987423 + }, + "nodes": [ + 42427316, + 8307641564, + 3316533507, + 12197926852, + 8307641574, + 42427319, + 8307641573, + 10168800620, + 42427322, + 12197926851 + ], + "geometry": [ + { "lat": 40.7180188, "lon": -73.9999527 }, + { "lat": 40.7181100, "lon": -73.9998757 }, + { "lat": 40.7183861, "lon": -73.9996593 }, + { "lat": 40.7185953, "lon": -73.9994874 }, + { "lat": 40.7186357, "lon": -73.9994552 }, + { "lat": 40.7186870, "lon": -73.9994121 }, + { "lat": 40.7187423, "lon": -73.9993702 }, + { "lat": 40.7188753, "lon": -73.9992640 }, + { "lat": 40.7189132, "lon": -73.9992327 }, + { "lat": 40.7195174, "lon": -73.9987423 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668540, + "bounds": { + "minlat": 40.7526267, + "minlon": -74.0038197, + "maxlat": 40.7532765, + "maxlon": -74.0022894 + }, + "nodes": [ + 42430607, + 8261122308, + 9423683692, + 9423683689, + 8585752285, + 6656308633, + 6656308648 + ], + "geometry": [ + { "lat": 40.7532765, "lon": -74.0038197 }, + { "lat": 40.7532200, "lon": -74.0036807 }, + { "lat": 40.7528920, "lon": -74.0029142 }, + { "lat": 40.7528506, "lon": -74.0028130 }, + { "lat": 40.7528351, "lon": -74.0027786 }, + { "lat": 40.7526446, "lon": -74.0023314 }, + { "lat": 40.7526267, "lon": -74.0022894 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 68668541, + "bounds": { + "minlat": 40.7399819, + "minlon": -73.9907411, + "maxlat": 40.7408858, + "maxlon": -73.9900833 + }, + "nodes": [ + 42434268, + 8265964351, + 12181309682, + 7781098559, + 42443671, + 7781138986, + 8265964369 + ], + "geometry": [ + { "lat": 40.7408858, "lon": -73.9900833 }, + { "lat": 40.7408302, "lon": -73.9901239 }, + { "lat": 40.7403732, "lon": -73.9904564 }, + { "lat": 40.7403303, "lon": -73.9904876 }, + { "lat": 40.7402774, "lon": -73.9905253 }, + { "lat": 40.7402115, "lon": -73.9905722 }, + { "lat": 40.7399819, "lon": -73.9907411 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "16", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 68668542, + "bounds": { + "minlat": 40.8631688, + "minlon": -73.9198485, + "maxlat": 40.8632348, + "maxlon": -73.9197718 + }, + "nodes": [ + 42446797, + 1764626357 + ], + "geometry": [ + { "lat": 40.8631688, "lon": -73.9198485 }, + { "lat": 40.8632348, "lon": -73.9197718 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668543, + "bounds": { + "minlat": 40.7950638, + "minlon": -73.9354016, + "maxlat": 40.7960087, + "maxlon": -73.9331708 + }, + "nodes": [ + 42448278, + 6216836407, + 5482321447, + 4980851585, + 42456115 + ], + "geometry": [ + { "lat": 40.7950638, "lon": -73.9331708 }, + { "lat": 40.7951119, "lon": -73.9332869 }, + { "lat": 40.7954697, "lon": -73.9341341 }, + { "lat": 40.7959535, "lon": -73.9352716 }, + { "lat": 40.7960087, "lon": -73.9354016 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 116th Street", + "name:ru": "Восточная 116-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668544, + "bounds": { + "minlat": 40.7808601, + "minlon": -73.9588013, + "maxlat": 40.7872310, + "maxlon": -73.9541623 + }, + "nodes": [ + 42429324, + 3392519870, + 7924099756, + 42446041, + 7924099714, + 5306314428, + 42445733, + 5306314432, + 5306314421, + 42436539, + 5306314424, + 6949740442, + 6949740430, + 5306313718, + 42444810, + 5306313694, + 6270714161, + 42446066, + 6270714163, + 7093725099, + 42446070, + 7093725091, + 7093725097, + 42446072, + 7093725086, + 7093620715, + 42444487, + 7093620694, + 6270666550, + 42434166, + 6270666554, + 7075509771, + 42446086 + ], + "geometry": [ + { "lat": 40.7808601, "lon": -73.9588013 }, + { "lat": 40.7809576, "lon": -73.9587277 }, + { "lat": 40.7814740, "lon": -73.9583520 }, + { "lat": 40.7815341, "lon": -73.9583086 }, + { "lat": 40.7815912, "lon": -73.9582678 }, + { "lat": 40.7821073, "lon": -73.9579023 }, + { "lat": 40.7821666, "lon": -73.9578583 }, + { "lat": 40.7822253, "lon": -73.9578162 }, + { "lat": 40.7827358, "lon": -73.9574452 }, + { "lat": 40.7827919, "lon": -73.9574044 }, + { "lat": 40.7828517, "lon": -73.9573605 }, + { "lat": 40.7829566, "lon": -73.9572833 }, + { "lat": 40.7832443, "lon": -73.9570719 }, + { "lat": 40.7833646, "lon": -73.9569835 }, + { "lat": 40.7834134, "lon": -73.9569479 }, + { "lat": 40.7834757, "lon": -73.9569022 }, + { "lat": 40.7839915, "lon": -73.9565256 }, + { "lat": 40.7840524, "lon": -73.9564810 }, + { "lat": 40.7841043, "lon": -73.9564432 }, + { "lat": 40.7846178, "lon": -73.9560691 }, + { "lat": 40.7846690, "lon": -73.9560317 }, + { "lat": 40.7847250, "lon": -73.9559905 }, + { "lat": 40.7852441, "lon": -73.9556086 }, + { "lat": 40.7852993, "lon": -73.9555695 }, + { "lat": 40.7853609, "lon": -73.9555233 }, + { "lat": 40.7858744, "lon": -73.9551507 }, + { "lat": 40.7859253, "lon": -73.9551138 }, + { "lat": 40.7859830, "lon": -73.9550719 }, + { "lat": 40.7865008, "lon": -73.9546935 }, + { "lat": 40.7865547, "lon": -73.9546527 }, + { "lat": 40.7866097, "lon": -73.9546139 }, + { "lat": 40.7871383, "lon": -73.9542314 }, + { "lat": 40.7872310, "lon": -73.9541623 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 68668546, + "bounds": { + "minlat": 40.7213678, + "minlon": -74.0029710, + "maxlat": 40.7219950, + "maxlon": -74.0016857 + }, + "nodes": [ + 42433574, + 8231922382, + 8231922378, + 42452040, + 8231922375, + 9513049127 + ], + "geometry": [ + { "lat": 40.7219950, "lon": -74.0029710 }, + { "lat": 40.7219668, "lon": -74.0029128 }, + { "lat": 40.7216536, "lon": -74.0022738 }, + { "lat": 40.7216214, "lon": -74.0022085 }, + { "lat": 40.7215949, "lon": -74.0021546 }, + { "lat": 40.7213678, "lon": -74.0016857 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668548, + "bounds": { + "minlat": 40.8161248, + "minlon": -73.9594934, + "maxlat": 40.8170071, + "maxlon": -73.9586824 + }, + "nodes": [ + 5266458373, + 42438066 + ], + "geometry": [ + { "lat": 40.8161248, "lon": -73.9586824 }, + { "lat": 40.8170071, "lon": -73.9594934 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668549, + "bounds": { + "minlat": 40.7994668, + "minlon": -73.9576591, + "maxlat": 40.8004358, + "maxlon": -73.9553630 + }, + "nodes": [ + 7024230434, + 5481882807, + 7784826665, + 42433743 + ], + "geometry": [ + { "lat": 40.8004358, "lon": -73.9576591 }, + { "lat": 40.7996973, "lon": -73.9559082 }, + { "lat": 40.7995158, "lon": -73.9554788 }, + { "lat": 40.7994668, "lon": -73.9553630 } + ], + "tags": { + "alt_name": "West 110th Street", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "Central Park North", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668550, + "bounds": { + "minlat": 40.8264888, + "minlon": -73.9519225, + "maxlat": 40.8270529, + "maxlon": -73.9505640 + }, + "nodes": [ + 42428931, + 11193723027, + 6878336548, + 9903106005, + 13239270567 + ], + "geometry": [ + { "lat": 40.8264888, "lon": -73.9505640 }, + { "lat": 40.8265213, "lon": -73.9506414 }, + { "lat": 40.8266987, "lon": -73.9510678 }, + { "lat": 40.8270330, "lon": -73.9518659 }, + { "lat": 40.8270529, "lon": -73.9519225 } + ], + "tags": { + "alt_name": "A. Philip Randolph Boulevard", + "description": "This honorary street name memorializes A. Philip Randolph.", + "hgv": "destination", + "highway": "secondary", + "incline": "down", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 145th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "145th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668551, + "bounds": { + "minlat": 40.7593001, + "minlon": -73.9597424, + "maxlat": 40.7594990, + "maxlon": -73.9592658 + }, + "nodes": [ + 4202960389, + 3785575845, + 4918486769, + 42424672 + ], + "geometry": [ + { "lat": 40.7594990, "lon": -73.9597424 }, + { "lat": 40.7593770, "lon": -73.9594550 }, + { "lat": 40.7593473, "lon": -73.9593813 }, + { "lat": 40.7593001, "lon": -73.9592658 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "name_1": "East 60 Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through;right" + } +}, +{ + "type": "way", + "id": 68668552, + "bounds": { + "minlat": 40.7432751, + "minlon": -73.9883247, + "maxlat": 40.7434569, + "maxlon": -73.9881911 + }, + "nodes": [ + 42429874, + 8264701245, + 7372860100 + ], + "geometry": [ + { "lat": 40.7434569, "lon": -73.9881911 }, + { "lat": 40.7433926, "lon": -73.9882367 }, + { "lat": 40.7432751, "lon": -73.9883247 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 68668553, + "bounds": { + "minlat": 40.7182739, + "minlon": -74.0088803, + "maxlat": 40.7186420, + "maxlon": -74.0088190 + }, + "nodes": [ + 42436327, + 5490721614, + 42436330 + ], + "geometry": [ + { "lat": 40.7182739, "lon": -74.0088803 }, + { "lat": 40.7183889, "lon": -74.0088609 }, + { "lat": 40.7186420, "lon": -74.0088190 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668554, + "bounds": { + "minlat": 40.7872310, + "minlon": -73.9541623, + "maxlat": 40.7879020, + "maxlon": -73.9536721 + }, + "nodes": [ + 42446086, + 7075509774, + 7086831274, + 42446093 + ], + "geometry": [ + { "lat": 40.7872310, "lon": -73.9541623 }, + { "lat": 40.7873219, "lon": -73.9540967 }, + { "lat": 40.7878499, "lon": -73.9537130 }, + { "lat": 40.7879020, "lon": -73.9536721 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 68668555, + "bounds": { + "minlat": 40.7947149, + "minlon": -73.9722805, + "maxlat": 40.7948722, + "maxlon": -73.9718975 + }, + "nodes": [ + 4205805398, + 7801775755, + 42428714 + ], + "geometry": [ + { "lat": 40.7948722, "lon": -73.9722805 }, + { "lat": 40.7947551, "lon": -73.9719954 }, + { "lat": 40.7947149, "lon": -73.9718975 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 96th Street", + "name:ru": "Западная 96-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left;through|through;right", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668556, + "bounds": { + "minlat": 40.7484690, + "minlon": -73.9924631, + "maxlat": 40.7491010, + "maxlon": -73.9920060 + }, + "nodes": [ + 42435422, + 9414480640, + 10168911569, + 42435420 + ], + "geometry": [ + { "lat": 40.7491010, "lon": -73.9920060 }, + { "lat": 40.7490421, "lon": -73.9920475 }, + { "lat": 40.7485416, "lon": -73.9924102 }, + { "lat": 40.7484690, "lon": -73.9924631 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668557, + "bounds": { + "minlat": 40.7573667, + "minlon": -73.9629223, + "maxlat": 40.7583127, + "maxlon": -73.9606728 + }, + "nodes": [ + 2711029280, + 10170862029, + 7248638331, + 42432871 + ], + "geometry": [ + { "lat": 40.7583127, "lon": -73.9629223 }, + { "lat": 40.7582544, "lon": -73.9627839 }, + { "lat": 40.7574195, "lon": -73.9608028 }, + { "lat": 40.7573667, "lon": -73.9606728 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "6", + "lanes:backward": "3", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668558, + "bounds": { + "minlat": 40.7300458, + "minlon": -73.9924142, + "maxlat": 40.7306005, + "maxlon": -73.9911109 + }, + "nodes": [ + 42428473, + 8309479163, + 12179562748, + 5784518536, + 42445543 + ], + "geometry": [ + { "lat": 40.7306005, "lon": -73.9924142 }, + { "lat": 40.7305560, "lon": -73.9923087 }, + { "lat": 40.7301149, "lon": -73.9912805 }, + { "lat": 40.7300871, "lon": -73.9912127 }, + { "lat": 40.7300458, "lon": -73.9911109 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 8th Street", + "name:ru": "Восточная 8-я стрит", + "name_1": "East 8 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2142493", + "wikipedia": "en:8th Street and St. Mark's Place" + } +}, +{ + "type": "way", + "id": 68668559, + "bounds": { + "minlat": 40.7167118, + "minlon": -73.9911718, + "maxlat": 40.7173510, + "maxlon": -73.9891494 + }, + "nodes": [ + 42437962, + 5043084238, + 5043074383, + 42452076, + 5043074387, + 5041370335, + 42440686, + 5041370331, + 5041369241, + 42452084 + ], + "geometry": [ + { "lat": 40.7173510, "lon": -73.9911718 }, + { "lat": 40.7173308, "lon": -73.9911053 }, + { "lat": 40.7172284, "lon": -73.9907674 }, + { "lat": 40.7172086, "lon": -73.9907021 }, + { "lat": 40.7171890, "lon": -73.9906377 }, + { "lat": 40.7170007, "lon": -73.9900170 }, + { "lat": 40.7169795, "lon": -73.9899465 }, + { "lat": 40.7169603, "lon": -73.9898833 }, + { "lat": 40.7167723, "lon": -73.9892633 }, + { "lat": 40.7167118, "lon": -73.9891494 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668560, + "bounds": { + "minlat": 40.7883617, + "minlon": -73.9778597, + "maxlat": 40.7888916, + "maxlon": -73.9766064 + }, + "nodes": [ + 42428674, + 9906904531, + 8699239255, + 9492556589, + 42431037 + ], + "geometry": [ + { "lat": 40.7883617, "lon": -73.9766064 }, + { "lat": 40.7883715, "lon": -73.9766291 }, + { "lat": 40.7884067, "lon": -73.9767104 }, + { "lat": 40.7888382, "lon": -73.9777312 }, + { "lat": 40.7888916, "lon": -73.9778597 } + ], + "tags": { + "alt_name": "West 86 Street", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 86th Street", + "name:ru": "Западная 86-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668561, + "bounds": { + "minlat": 40.7748013, + "minlon": -73.9848096, + "maxlat": 40.7750011, + "maxlon": -73.9843888 + }, + "nodes": [ + 42439464, + 7050687018, + 8637876184 + ], + "geometry": [ + { "lat": 40.7748013, "lon": -73.9843888 }, + { "lat": 40.7748834, "lon": -73.9845346 }, + { "lat": 40.7750011, "lon": -73.9848096 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 66th Street", + "name:ru": "Западная 66-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:left:restriction:conditional": "no_parking @ (Tu,Fr 08:00-09:30)", + "parking:left:restriction:reason:conditional": "street_cleaning @ (Tu,Fr 08:00-09:30)", + "parking:right:restriction": "no_standing", + "parking:right:restriction:reason": "bus_stop", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668562, + "bounds": { + "minlat": 40.7155294, + "minlon": -74.0092468, + "maxlat": 40.7163480, + "maxlon": -74.0085910 + }, + "nodes": [ + 9430719481, + 7410938067, + 42445357, + 7410938068, + 11517225742, + 7410938054, + 11517225741, + 42431614 + ], + "geometry": [ + { "lat": 40.7163480, "lon": -74.0085910 }, + { "lat": 40.7160813, "lon": -74.0088002 }, + { "lat": 40.7160290, "lon": -74.0088423 }, + { "lat": 40.7159861, "lon": -74.0088751 }, + { "lat": 40.7156404, "lon": -74.0091426 }, + { "lat": 40.7155886, "lon": -74.0091865 }, + { "lat": 40.7155760, "lon": -74.0091988 }, + { "lat": 40.7155294, "lon": -74.0092468 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 68668563, + "bounds": { + "minlat": 40.8531188, + "minlon": -73.9272390, + "maxlat": 40.8537179, + "maxlon": -73.9268061 + }, + "nodes": [ + 42442766, + 9566892705, + 9566892702, + 42442770 + ], + "geometry": [ + { "lat": 40.8531188, "lon": -73.9272390 }, + { "lat": 40.8531735, "lon": -73.9271993 }, + { "lat": 40.8536409, "lon": -73.9268618 }, + { "lat": 40.8537179, "lon": -73.9268061 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 68668564, + "bounds": { + "minlat": 40.7808503, + "minlon": -73.9609089, + "maxlat": 40.7815342, + "maxlon": -73.9604148 + }, + "nodes": [ + 42429314, + 7093980573, + 7093980572, + 42449187 + ], + "geometry": [ + { "lat": 40.7815342, "lon": -73.9604148 }, + { "lat": 40.7814441, "lon": -73.9604792 }, + { "lat": 40.7809196, "lon": -73.9608573 }, + { "lat": 40.7808503, "lon": -73.9609089 } + ], + "tags": { + "alt_name": "Museum Mile", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 68674958, + "bounds": { + "minlat": 40.7760235, + "minlon": -73.9872396, + "maxlat": 40.7768258, + "maxlon": -73.9866513 + }, + "nodes": [ + 42430989, + 5707949012, + 3371304327, + 6828500177, + 3377387917, + 3377387920 + ], + "geometry": [ + { "lat": 40.7760235, "lon": -73.9872396 }, + { "lat": 40.7760992, "lon": -73.9871837 }, + { "lat": 40.7764479, "lon": -73.9869307 }, + { "lat": 40.7765864, "lon": -73.9868270 }, + { "lat": 40.7766335, "lon": -73.9867936 }, + { "lat": 40.7768258, "lon": -73.9866513 } + ], + "tags": { + "cycleway:both": "no", + "goods:backward": "no", + "highway": "secondary", + "lanes": "4", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 68674959, + "bounds": { + "minlat": 40.7871732, + "minlon": -73.9519286, + "maxlat": 40.7878011, + "maxlon": -73.9514729 + }, + "nodes": [ + 42449005, + 6254816654, + 42453577 + ], + "geometry": [ + { "lat": 40.7871732, "lon": -73.9519286 }, + { "lat": 40.7872253, "lon": -73.9518901 }, + { "lat": 40.7878011, "lon": -73.9514729 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "sidewalk:both": "separate", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 68674960, + "bounds": { + "minlat": 40.7508073, + "minlon": -73.9784855, + "maxlat": 40.7514181, + "maxlon": -73.9780429 + }, + "nodes": [ + 42453005, + 11506834426, + 8122411166, + 12181374959, + 3955360010, + 8122411159 + ], + "geometry": [ + { "lat": 40.7508073, "lon": -73.9784855 }, + { "lat": 40.7508548, "lon": -73.9784497 }, + { "lat": 40.7508726, "lon": -73.9784357 }, + { "lat": 40.7513229, "lon": -73.9781115 }, + { "lat": 40.7513568, "lon": -73.9780861 }, + { "lat": 40.7514181, "lon": -73.9780429 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 68674961, + "bounds": { + "minlat": 40.7477174, + "minlon": -73.9807655, + "maxlat": 40.7501913, + "maxlon": -73.9789617 + }, + "nodes": [ + 42434951, + 11336685983, + 12181374931, + 11273068446, + 42458333, + 11273068445, + 12181374939, + 10169157363, + 42449683, + 10169157359, + 12181374943, + 10171035520, + 42453986, + 10171035519, + 12181374947, + 8122411160, + 42445653 + ], + "geometry": [ + { "lat": 40.7477174, "lon": -73.9807655 }, + { "lat": 40.7477740, "lon": -73.9807228 }, + { "lat": 40.7482393, "lon": -73.9803879 }, + { "lat": 40.7482757, "lon": -73.9803617 }, + { "lat": 40.7483359, "lon": -73.9803186 }, + { "lat": 40.7483901, "lon": -73.9802789 }, + { "lat": 40.7488564, "lon": -73.9799388 }, + { "lat": 40.7488964, "lon": -73.9799096 }, + { "lat": 40.7489553, "lon": -73.9798682 }, + { "lat": 40.7490072, "lon": -73.9798304 }, + { "lat": 40.7494712, "lon": -73.9794902 }, + { "lat": 40.7495121, "lon": -73.9794601 }, + { "lat": 40.7495623, "lon": -73.9794227 }, + { "lat": 40.7496293, "lon": -73.9793732 }, + { "lat": 40.7500960, "lon": -73.9790343 }, + { "lat": 40.7501351, "lon": -73.9790059 }, + { "lat": 40.7501913, "lon": -73.9789617 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 68674962, + "bounds": { + "minlat": 40.7698355, + "minlon": -73.9648768, + "maxlat": 40.7862775, + "maxlon": -73.9528792 + }, + "nodes": [ + 9178805727, + 7093620703, + 596776167, + 7093620714, + 7093620690, + 596776173, + 7093620702, + 7158854738, + 596776144, + 7158854771, + 7158799077, + 596776177, + 7158854759, + 7158854696, + 596776163, + 7158854736, + 7158854775, + 596776156, + 7158854755, + 7160238609, + 596776150, + 7160238586, + 7924099727, + 596776103, + 7924094059, + 7924099692, + 596776115, + 7924099698, + 7924094080, + 596776164, + 7924099796, + 10125139606, + 8782897315, + 596776132, + 8782897303, + 10125180296, + 10125180298, + 596776120, + 10125180305, + 10125180302, + 596776074, + 10156669071, + 10125180307, + 596776127, + 3341912574, + 10125180310, + 596776095, + 10125180314, + 9563518593, + 596776083, + 9563518598, + 10125180315, + 596776089, + 10122937137, + 7160238588, + 596776078, + 7160238607, + 10125222318, + 596776052, + 10125222323, + 10125222320, + 596776041, + 10173084344, + 10125222326, + 596776046, + 10173084331, + 10125222331, + 596788016, + 10167967061, + 10125222334, + 596776063, + 10167967044, + 4207313534, + 596776057, + 4207313527, + 10125222338, + 596776021, + 10125222340, + 10122943675, + 596776009 + ], + "geometry": [ + { "lat": 40.7862775, "lon": -73.9528792 }, + { "lat": 40.7859766, "lon": -73.9531001 }, + { "lat": 40.7859221, "lon": -73.9531410 }, + { "lat": 40.7858681, "lon": -73.9531821 }, + { "lat": 40.7853483, "lon": -73.9535614 }, + { "lat": 40.7852889, "lon": -73.9536033 }, + { "lat": 40.7852363, "lon": -73.9536410 }, + { "lat": 40.7847225, "lon": -73.9540181 }, + { "lat": 40.7846661, "lon": -73.9540596 }, + { "lat": 40.7846100, "lon": -73.9540987 }, + { "lat": 40.7840926, "lon": -73.9544754 }, + { "lat": 40.7840307, "lon": -73.9545206 }, + { "lat": 40.7839833, "lon": -73.9545564 }, + { "lat": 40.7834719, "lon": -73.9549291 }, + { "lat": 40.7834162, "lon": -73.9549702 }, + { "lat": 40.7833536, "lon": -73.9550173 }, + { "lat": 40.7828409, "lon": -73.9553897 }, + { "lat": 40.7827784, "lon": -73.9554342 }, + { "lat": 40.7827273, "lon": -73.9554740 }, + { "lat": 40.7822123, "lon": -73.9558527 }, + { "lat": 40.7821565, "lon": -73.9558911 }, + { "lat": 40.7820999, "lon": -73.9559308 }, + { "lat": 40.7815876, "lon": -73.9563049 }, + { "lat": 40.7815278, "lon": -73.9563489 }, + { "lat": 40.7814716, "lon": -73.9563912 }, + { "lat": 40.7809577, "lon": -73.9567640 }, + { "lat": 40.7809009, "lon": -73.9568062 }, + { "lat": 40.7808427, "lon": -73.9568484 }, + { "lat": 40.7803255, "lon": -73.9572278 }, + { "lat": 40.7802244, "lon": -73.9572984 }, + { "lat": 40.7801271, "lon": -73.9573717 }, + { "lat": 40.7800181, "lon": -73.9574551 }, + { "lat": 40.7795974, "lon": -73.9577550 }, + { "lat": 40.7795347, "lon": -73.9578009 }, + { "lat": 40.7794843, "lon": -73.9578403 }, + { "lat": 40.7793401, "lon": -73.9579502 }, + { "lat": 40.7789630, "lon": -73.9582198 }, + { "lat": 40.7789066, "lon": -73.9582602 }, + { "lat": 40.7788526, "lon": -73.9582996 }, + { "lat": 40.7783310, "lon": -73.9586805 }, + { "lat": 40.7782722, "lon": -73.9587235 }, + { "lat": 40.7782186, "lon": -73.9587629 }, + { "lat": 40.7776975, "lon": -73.9591445 }, + { "lat": 40.7776373, "lon": -73.9591886 }, + { "lat": 40.7775838, "lon": -73.9592274 }, + { "lat": 40.7770680, "lon": -73.9596034 }, + { "lat": 40.7770056, "lon": -73.9596488 }, + { "lat": 40.7769516, "lon": -73.9596884 }, + { "lat": 40.7764263, "lon": -73.9600730 }, + { "lat": 40.7763680, "lon": -73.9601147 }, + { "lat": 40.7763142, "lon": -73.9601529 }, + { "lat": 40.7757847, "lon": -73.9605368 }, + { "lat": 40.7756889, "lon": -73.9606062 }, + { "lat": 40.7755983, "lon": -73.9606789 }, + { "lat": 40.7750604, "lon": -73.9610638 }, + { "lat": 40.7749989, "lon": -73.9611070 }, + { "lat": 40.7749505, "lon": -73.9611438 }, + { "lat": 40.7744337, "lon": -73.9615242 }, + { "lat": 40.7743785, "lon": -73.9615646 }, + { "lat": 40.7743145, "lon": -73.9616111 }, + { "lat": 40.7737915, "lon": -73.9619917 }, + { "lat": 40.7737350, "lon": -73.9620329 }, + { "lat": 40.7736791, "lon": -73.9620739 }, + { "lat": 40.7731590, "lon": -73.9624553 }, + { "lat": 40.7730994, "lon": -73.9624991 }, + { "lat": 40.7730444, "lon": -73.9625387 }, + { "lat": 40.7725204, "lon": -73.9629169 }, + { "lat": 40.7724621, "lon": -73.9629588 }, + { "lat": 40.7724062, "lon": -73.9629997 }, + { "lat": 40.7718858, "lon": -73.9633820 }, + { "lat": 40.7718322, "lon": -73.9634212 }, + { "lat": 40.7717794, "lon": -73.9634598 }, + { "lat": 40.7712474, "lon": -73.9638475 }, + { "lat": 40.7711488, "lon": -73.9639199 }, + { "lat": 40.7710530, "lon": -73.9639915 }, + { "lat": 40.7705194, "lon": -73.9643788 }, + { "lat": 40.7704726, "lon": -73.9644127 }, + { "lat": 40.7704086, "lon": -73.9644594 }, + { "lat": 40.7698943, "lon": -73.9648339 }, + { "lat": 40.7698355, "lon": -73.9648768 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 68674963, + "bounds": { + "minlat": 40.8013981, + "minlon": -73.9680981, + "maxlat": 40.8014390, + "maxlon": -73.9679955 + }, + "nodes": [ + 6900903299, + 42421745 + ], + "geometry": [ + { "lat": 40.8014390, "lon": -73.9680981 }, + { "lat": 40.8013981, "lon": -73.9679955 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "no", + "highway": "secondary", + "lane_markings": "no", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 68674965, + "bounds": { + "minlat": 40.7464603, + "minlon": -73.9819120, + "maxlat": 40.7471247, + "maxlon": -73.9814539 + }, + "nodes": [ + 561042190, + 8119462452, + 3786901746, + 561042188 + ], + "geometry": [ + { "lat": 40.7471247, "lon": -73.9814539 }, + { "lat": 40.7470369, "lon": -73.9815169 }, + { "lat": 40.7465422, "lon": -73.9818725 }, + { "lat": 40.7464603, "lon": -73.9819120 } + ], + "tags": { + "foot": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 68674966, + "bounds": { + "minlat": 40.7315898, + "minlon": -73.9968539, + "maxlat": 40.7318643, + "maxlon": -73.9966562 + }, + "nodes": [ + 42433354, + 9470088389 + ], + "geometry": [ + { "lat": 40.7318643, "lon": -73.9966562 }, + { "lat": 40.7315898, "lon": -73.9968539 } + ], + "tags": { + "bus": "no", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 68674967, + "bounds": { + "minlat": 40.7993567, + "minlon": -73.9590861, + "maxlat": 40.7997016, + "maxlon": -73.9588337 + }, + "nodes": [ + 42435341, + 11261676951, + 11807757984 + ], + "geometry": [ + { "lat": 40.7993567, "lon": -73.9590861 }, + { "lat": 40.7994105, "lon": -73.9590467 }, + { "lat": 40.7997016, "lon": -73.9588337 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 68674968, + "bounds": { + "minlat": 40.7477980, + "minlon": -73.9809560, + "maxlat": 40.7502720, + "maxlon": -73.9791501 + }, + "nodes": [ + 561042195, + 8122411157, + 12181374942, + 10171035522, + 561042194, + 10171035521, + 12181374940, + 10169157358, + 561042192, + 10169157364, + 12181374935, + 11273068447, + 561042193, + 11273068448, + 12181374930, + 11336685985, + 561042191 + ], + "geometry": [ + { "lat": 40.7502720, "lon": -73.9791501 }, + { "lat": 40.7502130, "lon": -73.9791910 }, + { "lat": 40.7497504, "lon": -73.9795253 }, + { "lat": 40.7497070, "lon": -73.9795567 }, + { "lat": 40.7496429, "lon": -73.9796046 }, + { "lat": 40.7495891, "lon": -73.9796428 }, + { "lat": 40.7491308, "lon": -73.9799782 }, + { "lat": 40.7490844, "lon": -73.9800127 }, + { "lat": 40.7490334, "lon": -73.9800510 }, + { "lat": 40.7489742, "lon": -73.9800950 }, + { "lat": 40.7485091, "lon": -73.9804319 }, + { "lat": 40.7484680, "lon": -73.9804628 }, + { "lat": 40.7484136, "lon": -73.9805029 }, + { "lat": 40.7483534, "lon": -73.9805466 }, + { "lat": 40.7478960, "lon": -73.9808843 }, + { "lat": 40.7478551, "lon": -73.9809146 }, + { "lat": 40.7477980, "lon": -73.9809560 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 68674970, + "bounds": { + "minlat": 40.8044178, + "minlon": -73.9568273, + "maxlat": 40.8050314, + "maxlon": -73.9553696 + }, + "nodes": [ + 42435763, + 11298975873, + 5481868701, + 10165996962, + 42437188 + ], + "geometry": [ + { "lat": 40.8044178, "lon": -73.9553696 }, + { "lat": 40.8044682, "lon": -73.9554823 }, + { "lat": 40.8047284, "lon": -73.9560999 }, + { "lat": 40.8049914, "lon": -73.9567312 }, + { "lat": 40.8050314, "lon": -73.9568273 } + ], + "tags": { + "highway": "tertiary", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "name_1": "West 116 Street", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 68675820, + "bounds": { + "minlat": 40.7190677, + "minlon": -74.0069661, + "maxlat": 40.7195706, + "maxlon": -74.0068583 + }, + "nodes": [ + 4207150080, + 8312361624, + 11308790039, + 42453038 + ], + "geometry": [ + { "lat": 40.7195706, "lon": -74.0068583 }, + { "lat": 40.7192018, "lon": -74.0069349 }, + { "lat": 40.7191658, "lon": -74.0069433 }, + { "lat": 40.7190677, "lon": -74.0069661 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 68778874, + "bounds": { + "minlat": 40.8755068, + "minlon": -74.0026965, + "maxlat": 40.8756235, + "maxlon": -74.0023287 + }, + "nodes": [ + 103118672, + 4469448608 + ], + "geometry": [ + { "lat": 40.8755068, "lon": -74.0023287 }, + { "lat": 40.8756235, "lon": -74.0026965 } + ], + "tags": { + "highway": "residential", + "name": "Home Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Home", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 75069697, + "bounds": { + "minlat": 40.8775051, + "minlon": -73.9226006, + "maxlat": 40.8795254, + "maxlon": -73.9198261 + }, + "nodes": [ + 886041692, + 1545167911, + 1545168055, + 1545168054, + 1545167987, + 1545167985, + 2520127095, + 1545167979, + 1545168019, + 1545168056, + 1545167958, + 1545167922, + 1545168007, + 1545167977, + 886041641, + 42767183, + 886041642, + 1545167938, + 886041643, + 886041644, + 1545168057, + 886041645, + 2520101880, + 2520127071, + 886041606, + 2520101867, + 2520101846, + 1545168015, + 2520101877, + 2520101870, + 1545168047, + 1545167914, + 2520101815, + 42767164 + ], + "geometry": [ + { "lat": 40.8787273, "lon": -73.9200047 }, + { "lat": 40.8786744, "lon": -73.9199912 }, + { "lat": 40.8786034, "lon": -73.9199905 }, + { "lat": 40.8785096, "lon": -73.9199992 }, + { "lat": 40.8783963, "lon": -73.9200072 }, + { "lat": 40.8783311, "lon": -73.9200041 }, + { "lat": 40.8782660, "lon": -73.9199933 }, + { "lat": 40.8781854, "lon": -73.9199737 }, + { "lat": 40.8780817, "lon": -73.9199484 }, + { "lat": 40.8779779, "lon": -73.9199259 }, + { "lat": 40.8778917, "lon": -73.9198995 }, + { "lat": 40.8777696, "lon": -73.9198476 }, + { "lat": 40.8776804, "lon": -73.9198261 }, + { "lat": 40.8776195, "lon": -73.9198261 }, + { "lat": 40.8775518, "lon": -73.9198723 }, + { "lat": 40.8775107, "lon": -73.9199436 }, + { "lat": 40.8775051, "lon": -73.9200647 }, + { "lat": 40.8775267, "lon": -73.9201554 }, + { "lat": 40.8775778, "lon": -73.9202628 }, + { "lat": 40.8779616, "lon": -73.9208871 }, + { "lat": 40.8780635, "lon": -73.9210455 }, + { "lat": 40.8781733, "lon": -73.9211930 }, + { "lat": 40.8784308, "lon": -73.9214816 }, + { "lat": 40.8787118, "lon": -73.9217477 }, + { "lat": 40.8790719, "lon": -73.9220887 }, + { "lat": 40.8792946, "lon": -73.9223167 }, + { "lat": 40.8793353, "lon": -73.9223619 }, + { "lat": 40.8793676, "lon": -73.9224178 }, + { "lat": 40.8794024, "lon": -73.9225013 }, + { "lat": 40.8794261, "lon": -73.9225518 }, + { "lat": 40.8794547, "lon": -73.9225904 }, + { "lat": 40.8794774, "lon": -73.9226006 }, + { "lat": 40.8795035, "lon": -73.9225986 }, + { "lat": 40.8795254, "lon": -73.9225771 } + ], + "tags": { + "highway": "residential", + "name": "Edsall Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edsall", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 75311776, + "bounds": { + "minlat": 40.7118476, + "minlon": -74.0157538, + "maxlat": 40.7119996, + "maxlon": -74.0155533 + }, + "nodes": [ + 11424681371, + 889298452, + 889298432, + 1696261064, + 889298374, + 1696261085, + 889298487, + 1696261090, + 1696261091, + 1696261095, + 1696261096, + 1696261099, + 889298386, + 1696261093, + 889298607, + 1696261088, + 889298459, + 1696261067, + 889298423, + 11424681371 + ], + "geometry": [ + { "lat": 40.7118633, "lon": -74.0157145 }, + { "lat": 40.7118516, "lon": -74.0156855 }, + { "lat": 40.7118476, "lon": -74.0156524 }, + { "lat": 40.7118520, "lon": -74.0156194 }, + { "lat": 40.7118645, "lon": -74.0155902 }, + { "lat": 40.7118835, "lon": -74.0155680 }, + { "lat": 40.7119069, "lon": -74.0155552 }, + { "lat": 40.7119323, "lon": -74.0155533 }, + { "lat": 40.7119567, "lon": -74.0155624 }, + { "lat": 40.7119775, "lon": -74.0155817 }, + { "lat": 40.7119924, "lon": -74.0156089 }, + { "lat": 40.7119996, "lon": -74.0156403 }, + { "lat": 40.7119988, "lon": -74.0156731 }, + { "lat": 40.7119900, "lon": -74.0157038 }, + { "lat": 40.7119742, "lon": -74.0157291 }, + { "lat": 40.7119530, "lon": -74.0157464 }, + { "lat": 40.7119288, "lon": -74.0157538 }, + { "lat": 40.7119040, "lon": -74.0157506 }, + { "lat": 40.7118814, "lon": -74.0157370 }, + { "lat": 40.7118633, "lon": -74.0157145 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "South End Avenue", + "name:ko": "사우스 엔드 애비뉴", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 75359816, + "bounds": { + "minlat": 40.7190196, + "minlon": -74.0123246, + "maxlat": 40.7190475, + "maxlon": -74.0121010 + }, + "nodes": [ + 42453417, + 3874650162, + 2565683776 + ], + "geometry": [ + { "lat": 40.7190475, "lon": -74.0123246 }, + { "lat": 40.7190286, "lon": -74.0121739 }, + { "lat": 40.7190196, "lon": -74.0121010 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Harrison Street", + "name:ko": "해리슨 스트리트", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 77518366, + "bounds": { + "minlat": 40.8245720, + "minlon": -74.0066045, + "maxlat": 40.8253690, + "maxlon": -74.0063820 + }, + "nodes": [ + 912425025, + 103168163, + 103204007 + ], + "geometry": [ + { "lat": 40.8245720, "lon": -74.0066045 }, + { "lat": 40.8247361, "lon": -74.0065889 }, + { "lat": 40.8253690, "lon": -74.0063820 } + ], + "tags": { + "highway": "residential", + "name": "Sedore Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sedore", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 78288186, + "bounds": { + "minlat": 40.7002740, + "minlon": -73.9624798, + "maxlat": 40.7005085, + "maxlon": -73.9621464 + }, + "nodes": [ + 42469400, + 4207774902, + 42469405 + ], + "geometry": [ + { "lat": 40.7002740, "lon": -73.9621464 }, + { "lat": 40.7003304, "lon": -73.9622370 }, + { "lat": 40.7005085, "lon": -73.9624798 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 83703553, + "bounds": { + "minlat": 40.8045703, + "minlon": -73.9121361, + "maxlat": 40.8054522, + "maxlon": -73.9102195 + }, + "nodes": [ + 588114597, + 13003720158, + 13039019667, + 588114535 + ], + "geometry": [ + { "lat": 40.8045703, "lon": -73.9121361 }, + { "lat": 40.8046124, "lon": -73.9120447 }, + { "lat": 40.8053935, "lon": -73.9103438 }, + { "lat": 40.8054522, "lon": -73.9102195 } + ], + "tags": { + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 83703554, + "bounds": { + "minlat": 40.8036828, + "minlon": -73.9158500, + "maxlat": 40.8047194, + "maxlon": -73.9124649 + }, + "nodes": [ + 42753396, + 13003790088, + 42753392, + 42737723, + 9156970110, + 9156970111, + 42719500, + 9156970109, + 9156970108, + 588115052, + 9156970107, + 9156970106, + 588115056, + 9156970105, + 9156970104, + 9156970103, + 42728721 + ], + "geometry": [ + { "lat": 40.8047194, "lon": -73.9124649 }, + { "lat": 40.8046618, "lon": -73.9125903 }, + { "lat": 40.8044804, "lon": -73.9129855 }, + { "lat": 40.8042542, "lon": -73.9134857 }, + { "lat": 40.8039400, "lon": -73.9141673 }, + { "lat": 40.8038893, "lon": -73.9142913 }, + { "lat": 40.8038390, "lon": -73.9144317 }, + { "lat": 40.8038003, "lon": -73.9145641 }, + { "lat": 40.8037556, "lon": -73.9147296 }, + { "lat": 40.8037247, "lon": -73.9148941 }, + { "lat": 40.8037043, "lon": -73.9150554 }, + { "lat": 40.8036916, "lon": -73.9152076 }, + { "lat": 40.8036851, "lon": -73.9153544 }, + { "lat": 40.8036828, "lon": -73.9154958 }, + { "lat": 40.8036871, "lon": -73.9156262 }, + { "lat": 40.8036956, "lon": -73.9157337 }, + { "lat": 40.8037128, "lon": -73.9158500 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10472" + } +}, +{ + "type": "way", + "id": 86093582, + "bounds": { + "minlat": 40.8696495, + "minlon": -74.0050523, + "maxlat": 40.8705773, + "maxlon": -74.0037759 + }, + "nodes": [ + 775937813, + 10940833265, + 10940833289, + 10940833278, + 775937817 + ], + "geometry": [ + { "lat": 40.8696495, "lon": -74.0037759 }, + { "lat": 40.8703823, "lon": -74.0048102 }, + { "lat": 40.8704511, "lon": -74.0049009 }, + { "lat": 40.8705155, "lon": -74.0049794 }, + { "lat": 40.8705773, "lon": -74.0050523 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "2", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 86093592, + "bounds": { + "minlat": 40.8685451, + "minlon": -74.0023495, + "maxlat": 40.8686433, + "maxlon": -74.0022094 + }, + "nodes": [ + 775937798, + 103107184 + ], + "geometry": [ + { "lat": 40.8685451, "lon": -74.0022094 }, + { "lat": 40.8686433, "lon": -74.0023495 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "2", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 90086364, + "bounds": { + "minlat": 40.8553196, + "minlon": -73.9717364, + "maxlat": 40.8559936, + "maxlon": -73.9703435 + }, + "nodes": [ + 60811504, + 13759310531, + 60811505, + 13756544979, + 7921569539, + 7921569535, + 13756544978, + 60811506, + 7921569527, + 60811507, + 7921569562, + 60811508 + ], + "geometry": [ + { "lat": 40.8559936, "lon": -73.9717364 }, + { "lat": 40.8559267, "lon": -73.9716164 }, + { "lat": 40.8558630, "lon": -73.9715010 }, + { "lat": 40.8557990, "lon": -73.9713816 }, + { "lat": 40.8557394, "lon": -73.9712659 }, + { "lat": 40.8556793, "lon": -73.9711436 }, + { "lat": 40.8556186, "lon": -73.9710152 }, + { "lat": 40.8555600, "lon": -73.9708927 }, + { "lat": 40.8555029, "lon": -73.9707682 }, + { "lat": 40.8554495, "lon": -73.9706480 }, + { "lat": 40.8553919, "lon": -73.9705139 }, + { "lat": 40.8553196, "lon": -73.9703435 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge Plaza", + "bridge:name:etymology:wikidata": "Q23", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "hov:lanes": "|||designated", + "lanes": "4", + "maxheight:signed": "no", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 90086370, + "bounds": { + "minlat": 40.7982030, + "minlon": -73.9194260, + "maxlat": 40.8012930, + "maxlon": -73.9171560 + }, + "nodes": [ + 277481765, + 100662035 + ], + "geometry": [ + { "lat": 40.7982030, "lon": -73.9194260 }, + { "lat": 40.8012930, "lon": -73.9171560 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "destination:lanes": "Major Deegan Expressway;Albany|Major Deegan Expressway;Albany|Bruckner Expressway;New Haven|Bruckner Expressway;New Haven", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "maxwidth": "12'0\"", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "toll": "no", + "turn:lanes": "slight_left|slight_left|slight_right|slight_right", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 90086377, + "bounds": { + "minlat": 40.7695266, + "minlon": -73.9197238, + "maxlat": 40.7722696, + "maxlon": -73.9128043 + }, + "nodes": [ + 106138663, + 9179198053, + 106138644, + 9179198052, + 9179198050, + 9179198051, + 10578103915, + 106138646, + 9179198049, + 106138648, + 9179198048, + 106138650, + 10578103916, + 9179198047, + 9179198046, + 106138652, + 9179198045, + 2447553695, + 106138654, + 10578103917, + 10578103918, + 5676585297, + 2447553687, + 9179198024, + 597443929 + ], + "geometry": [ + { "lat": 40.7695266, "lon": -73.9128043 }, + { "lat": 40.7700476, "lon": -73.9160345 }, + { "lat": 40.7700695, "lon": -73.9161599 }, + { "lat": 40.7700956, "lon": -73.9162838 }, + { "lat": 40.7701285, "lon": -73.9164202 }, + { "lat": 40.7701706, "lon": -73.9165603 }, + { "lat": 40.7702157, "lon": -73.9166883 }, + { "lat": 40.7702601, "lon": -73.9168128 }, + { "lat": 40.7703116, "lon": -73.9169296 }, + { "lat": 40.7703629, "lon": -73.9170336 }, + { "lat": 40.7704154, "lon": -73.9171296 }, + { "lat": 40.7704728, "lon": -73.9172255 }, + { "lat": 40.7705451, "lon": -73.9173358 }, + { "lat": 40.7707273, "lon": -73.9176062 }, + { "lat": 40.7707975, "lon": -73.9177074 }, + { "lat": 40.7708873, "lon": -73.9178251 }, + { "lat": 40.7709871, "lon": -73.9179541 }, + { "lat": 40.7710900, "lon": -73.9180796 }, + { "lat": 40.7711953, "lon": -73.9182094 }, + { "lat": 40.7712903, "lon": -73.9183367 }, + { "lat": 40.7713674, "lon": -73.9184474 }, + { "lat": 40.7716076, "lon": -73.9187921 }, + { "lat": 40.7718615, "lon": -73.9191510 }, + { "lat": 40.7720790, "lon": -73.9194742 }, + { "lat": 40.7722696, "lon": -73.9197238 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "GCP;I 278", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 90086378, + "bounds": { + "minlat": 40.8609059, + "minlon": -73.9591392, + "maxlat": 40.8619625, + "maxlon": -73.9577069 + }, + "nodes": [ + 60811194, + 60811195, + 60811196 + ], + "geometry": [ + { "lat": 40.8619625, "lon": -73.9577069 }, + { "lat": 40.8613678, "lon": -73.9585148 }, + { "lat": 40.8609059, "lon": -73.9591392 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "destination": "George Washington Bridge", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "55 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 90086379, + "bounds": { + "minlat": 40.7369917, + "minlon": -73.9338009, + "maxlat": 40.7374619, + "maxlon": -73.9306610 + }, + "nodes": [ + 597294550, + 9179114950, + 7814275635, + 7814275638, + 7814275640, + 597294502 + ], + "geometry": [ + { "lat": 40.7369917, "lon": -73.9306610 }, + { "lat": 40.7371330, "lon": -73.9316409 }, + { "lat": 40.7373875, "lon": -73.9333410 }, + { "lat": 40.7374084, "lon": -73.9334832 }, + { "lat": 40.7374314, "lon": -73.9336258 }, + { "lat": 40.7374619, "lon": -73.9338009 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 90086380, + "bounds": { + "minlat": 40.7900272, + "minlon": -73.9265913, + "maxlat": 40.7919574, + "maxlon": -73.9248422 + }, + "nodes": [ + 42449515, + 1934650086 + ], + "geometry": [ + { "lat": 40.7919574, "lon": -73.9248422 }, + { "lat": 40.7900272, "lon": -73.9265913 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "destination:lanes": "none|none|none|none;Randalls Island;Icahn Stadium", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Queens, NY", + "tiger:name_base": "Robert F. Kennedy", + "tiger:name_type": "Brg", + "toll": "no", + "turn:lanes": "none|none|none|through;slight_right", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 90399907, + "bounds": { + "minlat": 40.7623902, + "minlon": -73.9328700, + "maxlat": 40.7639900, + "maxlon": -73.9294250 + }, + "nodes": [ + 42807567, + 4991541889, + 6859764839, + 7746705670, + 7791667370, + 7241615156, + 7791670097, + 42807570, + 7791667343, + 4600497359, + 7591076220, + 6799076714, + 7791670164, + 6452886878, + 42807575 + ], + "geometry": [ + { "lat": 40.7639900, "lon": -73.9328700 }, + { "lat": 40.7639376, "lon": -73.9327517 }, + { "lat": 40.7637642, "lon": -73.9323850 }, + { "lat": 40.7637564, "lon": -73.9323686 }, + { "lat": 40.7634079, "lon": -73.9316312 }, + { "lat": 40.7633373, "lon": -73.9314819 }, + { "lat": 40.7633123, "lon": -73.9314291 }, + { "lat": 40.7632760, "lon": -73.9313521 }, + { "lat": 40.7632458, "lon": -73.9312863 }, + { "lat": 40.7632207, "lon": -73.9312318 }, + { "lat": 40.7629553, "lon": -73.9306527 }, + { "lat": 40.7625911, "lon": -73.9298580 }, + { "lat": 40.7624567, "lon": -73.9295691 }, + { "lat": 40.7624363, "lon": -73.9295253 }, + { "lat": 40.7623902, "lon": -73.9294250 } + ], + "tags": { + "highway": "residential", + "name": "33rd Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 90399909, + "bounds": { + "minlat": 40.7641245, + "minlon": -73.9331289, + "maxlat": 40.7643052, + "maxlon": -73.9327413 + }, + "nodes": [ + 1048734622, + 6452786389, + 2504466035, + 8433855056 + ], + "geometry": [ + { "lat": 40.7641245, "lon": -73.9327413 }, + { "lat": 40.7641845, "lon": -73.9328700 }, + { "lat": 40.7642439, "lon": -73.9329974 }, + { "lat": 40.7643052, "lon": -73.9331289 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 90399910, + "bounds": { + "minlat": 40.7620980, + "minlon": -73.9322587, + "maxlat": 40.7646423, + "maxlon": -73.9274920 + }, + "nodes": [ + 42833325, + 6455616288, + 6455614980, + 42817396, + 6455614982, + 8314985416, + 6452907630, + 42818534, + 6452886881, + 6799076718, + 6455933434, + 42881458, + 6455933433, + 7737864106, + 4991520739, + 42881454 + ], + "geometry": [ + { "lat": 40.7620980, "lon": -73.9274920 }, + { "lat": 40.7621330, "lon": -73.9275662 }, + { "lat": 40.7624460, "lon": -73.9282296 }, + { "lat": 40.7624750, "lon": -73.9282910 }, + { "lat": 40.7625109, "lon": -73.9283636 }, + { "lat": 40.7627667, "lon": -73.9288801 }, + { "lat": 40.7627833, "lon": -73.9289136 }, + { "lat": 40.7628243, "lon": -73.9289963 }, + { "lat": 40.7628719, "lon": -73.9290811 }, + { "lat": 40.7630668, "lon": -73.9294285 }, + { "lat": 40.7638325, "lon": -73.9307930 }, + { "lat": 40.7638735, "lon": -73.9308660 }, + { "lat": 40.7639126, "lon": -73.9309373 }, + { "lat": 40.7645623, "lon": -73.9321104 }, + { "lat": 40.7645801, "lon": -73.9321426 }, + { "lat": 40.7646423, "lon": -73.9322587 } + ], + "tags": { + "highway": "residential", + "name": "33rd Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 90571519, + "bounds": { + "minlat": 40.8645128, + "minlon": -73.9337455, + "maxlat": 40.8659507, + "maxlon": -73.9329905 + }, + "nodes": [ + 9822407115, + 42458659 + ], + "geometry": [ + { "lat": 40.8659507, "lon": -73.9329905 }, + { "lat": 40.8645128, "lon": -73.9337455 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "concrete", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 90571534, + "bounds": { + "minlat": 40.8664124, + "minlon": -73.9322336, + "maxlat": 40.8668075, + "maxlon": -73.9319910 + }, + "nodes": [ + 374472690, + 374472698 + ], + "geometry": [ + { "lat": 40.8664124, "lon": -73.9322336 }, + { "lat": 40.8668075, "lon": -73.9319910 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 90571543, + "bounds": { + "minlat": 40.8805759, + "minlon": -73.9182318, + "maxlat": 40.8817432, + "maxlon": -73.9168802 + }, + "nodes": [ + 721834116, + 12064274955, + 12064274956, + 12064274962 + ], + "geometry": [ + { "lat": 40.8817432, "lon": -73.9168802 }, + { "lat": 40.8816156, "lon": -73.9170268 }, + { "lat": 40.8814469, "lon": -73.9172187 }, + { "lat": 40.8805759, "lon": -73.9182318 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 91383966, + "bounds": { + "minlat": 40.7685440, + "minlon": -73.9819959, + "maxlat": 40.7688965, + "maxlon": -73.9819534 + }, + "nodes": [ + 9170790586, + 10187602637, + 1695371036, + 1695371082, + 10183978876, + 1792549666, + 8732949885, + 1061531429 + ], + "geometry": [ + { "lat": 40.7685440, "lon": -73.9819534 }, + { "lat": 40.7685530, "lon": -73.9819631 }, + { "lat": 40.7685642, "lon": -73.9819717 }, + { "lat": 40.7685867, "lon": -73.9819785 }, + { "lat": 40.7686252, "lon": -73.9819856 }, + { "lat": 40.7686637, "lon": -73.9819887 }, + { "lat": 40.7688306, "lon": -73.9819931 }, + { "lat": 40.7688965, "lon": -73.9819959 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 95181768, + "bounds": { + "minlat": 40.7305151, + "minlon": -74.0106424, + "maxlat": 40.7385265, + "maxlon": -74.0100274 + }, + "nodes": [ + 246649427, + 246647962, + 8862521329, + 8862521346, + 12161966149, + 8862521327, + 246649342, + 8862521342, + 4599130016, + 8862521340, + 246649343, + 8862521344, + 8862521338, + 8862521335, + 12161966172, + 4599130014, + 246649344, + 246649345, + 4599130013, + 246874387, + 246649346, + 4599130012, + 246878196, + 246878284, + 4599130010, + 246876728, + 246857083, + 9609713328, + 4207143439 + ], + "geometry": [ + { "lat": 40.7385265, "lon": -74.0101203 }, + { "lat": 40.7379145, "lon": -74.0100537 }, + { "lat": 40.7378115, "lon": -74.0100423 }, + { "lat": 40.7377448, "lon": -74.0100376 }, + { "lat": 40.7376950, "lon": -74.0100342 }, + { "lat": 40.7376824, "lon": -74.0100334 }, + { "lat": 40.7376500, "lon": -74.0100320 }, + { "lat": 40.7376053, "lon": -74.0100299 }, + { "lat": 40.7375669, "lon": -74.0100287 }, + { "lat": 40.7375255, "lon": -74.0100281 }, + { "lat": 40.7374878, "lon": -74.0100274 }, + { "lat": 40.7374266, "lon": -74.0100287 }, + { "lat": 40.7373113, "lon": -74.0100330 }, + { "lat": 40.7372047, "lon": -74.0100410 }, + { "lat": 40.7370861, "lon": -74.0100508 }, + { "lat": 40.7354700, "lon": -74.0101894 }, + { "lat": 40.7354205, "lon": -74.0101925 }, + { "lat": 40.7352474, "lon": -74.0102056 }, + { "lat": 40.7340199, "lon": -74.0103123 }, + { "lat": 40.7339713, "lon": -74.0103174 }, + { "lat": 40.7338190, "lon": -74.0103298 }, + { "lat": 40.7326448, "lon": -74.0104370 }, + { "lat": 40.7325927, "lon": -74.0104429 }, + { "lat": 40.7323112, "lon": -74.0104679 }, + { "lat": 40.7314517, "lon": -74.0105536 }, + { "lat": 40.7313983, "lon": -74.0105590 }, + { "lat": 40.7312113, "lon": -74.0105763 }, + { "lat": 40.7305882, "lon": -74.0106362 }, + { "lat": 40.7305151, "lon": -74.0106424 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "yes", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 95181769, + "bounds": { + "minlat": 40.7744271, + "minlon": -73.9884009, + "maxlat": 40.7747427, + "maxlon": -73.9881703 + }, + "nodes": [ + 7640353301, + 7595748181, + 42430984 + ], + "geometry": [ + { "lat": 40.7744271, "lon": -73.9884009 }, + { "lat": 40.7746889, "lon": -73.9882104 }, + { "lat": 40.7747427, "lon": -73.9881703 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 95181773, + "bounds": { + "minlat": 40.7213306, + "minlon": -74.0083880, + "maxlat": 40.7216384, + "maxlon": -74.0083435 + }, + "nodes": [ + 42436308, + 13294718047, + 12417324314 + ], + "geometry": [ + { "lat": 40.7213306, "lon": -74.0083435 }, + { "lat": 40.7214056, "lon": -74.0083880 }, + { "lat": 40.7216384, "lon": -74.0083526 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 95181774, + "bounds": { + "minlat": 40.7551246, + "minlon": -74.0024796, + "maxlat": 40.7557816, + "maxlon": -74.0019763 + }, + "nodes": [ + 42430633, + 5165666208, + 5165666202, + 42430629 + ], + "geometry": [ + { "lat": 40.7557816, "lon": -74.0019763 }, + { "lat": 40.7557011, "lon": -74.0020393 }, + { "lat": 40.7551857, "lon": -74.0024354 }, + { "lat": 40.7551246, "lon": -74.0024796 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 95481536, + "bounds": { + "minlat": 40.8133378, + "minlon": -73.9877923, + "maxlat": 40.8135253, + "maxlon": -73.9877436 + }, + "nodes": [ + 103181725, + 103181727 + ], + "geometry": [ + { "lat": 40.8133378, "lon": -73.9877923 }, + { "lat": 40.8135253, "lon": -73.9877436 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "lit": "yes", + "maxweight:signed": "no", + "name": "Old River Road", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old River", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 95481537, + "bounds": { + "minlat": 40.8134876, + "minlon": -73.9877436, + "maxlat": 40.8145867, + "maxlon": -73.9840253 + }, + "nodes": [ + 103181727, + 103181729, + 103181731, + 103181732, + 103181733, + 103181734, + 103181736, + 103181738, + 103181740, + 103181742, + 103181743, + 103181744, + 477426297, + 103181746, + 103181747, + 103181748, + 103181749, + 103181750, + 103181752, + 103181754, + 1751405026, + 103181756, + 103181757, + 103181758, + 103181762, + 103181763, + 10200267910 + ], + "geometry": [ + { "lat": 40.8135253, "lon": -73.9877436 }, + { "lat": 40.8135700, "lon": -73.9877200 }, + { "lat": 40.8136240, "lon": -73.9876700 }, + { "lat": 40.8136700, "lon": -73.9876000 }, + { "lat": 40.8136960, "lon": -73.9875300 }, + { "lat": 40.8137070, "lon": -73.9874590 }, + { "lat": 40.8137020, "lon": -73.9873880 }, + { "lat": 40.8136329, "lon": -73.9869740 }, + { "lat": 40.8135323, "lon": -73.9864868 }, + { "lat": 40.8135041, "lon": -73.9863256 }, + { "lat": 40.8134894, "lon": -73.9861801 }, + { "lat": 40.8134892, "lon": -73.9860734 }, + { "lat": 40.8134876, "lon": -73.9859506 }, + { "lat": 40.8135070, "lon": -73.9858213 }, + { "lat": 40.8135535, "lon": -73.9856253 }, + { "lat": 40.8135777, "lon": -73.9855145 }, + { "lat": 40.8136293, "lon": -73.9853892 }, + { "lat": 40.8136840, "lon": -73.9852770 }, + { "lat": 40.8137820, "lon": -73.9851470 }, + { "lat": 40.8139320, "lon": -73.9849660 }, + { "lat": 40.8140356, "lon": -73.9848568 }, + { "lat": 40.8141560, "lon": -73.9847300 }, + { "lat": 40.8142410, "lon": -73.9846320 }, + { "lat": 40.8144412, "lon": -73.9844257 }, + { "lat": 40.8145079, "lon": -73.9842909 }, + { "lat": 40.8145811, "lon": -73.9840774 }, + { "lat": 40.8145867, "lon": -73.9840253 } + ], + "tags": { + "highway": "residential", + "name": "Old River Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old River", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 99177780, + "bounds": { + "minlat": 40.8128072, + "minlon": -73.9637438, + "maxlat": 40.8133430, + "maxlon": -73.9628841 + }, + "nodes": [ + 1147215109, + 10055027118, + 1147215152, + 7732572026, + 1147215163, + 1147215150, + 1147215143, + 1147215113, + 1147215121, + 7732572025, + 1147215086, + 1147215134, + 10055027117, + 1147215107, + 1147215136, + 3274372793, + 1147215165, + 10054994689, + 10054994690, + 1147215168, + 1147215166, + 7732571948, + 7732571947, + 1147215109 + ], + "geometry": [ + { "lat": 40.8132245, "lon": -73.9636863 }, + { "lat": 40.8131689, "lon": -73.9634532 }, + { "lat": 40.8131534, "lon": -73.9633907 }, + { "lat": 40.8132022, "lon": -73.9633676 }, + { "lat": 40.8131893, "lon": -73.9633197 }, + { "lat": 40.8133430, "lon": -73.9632431 }, + { "lat": 40.8132769, "lon": -73.9630189 }, + { "lat": 40.8131273, "lon": -73.9630958 }, + { "lat": 40.8131131, "lon": -73.9630485 }, + { "lat": 40.8130614, "lon": -73.9630739 }, + { "lat": 40.8130439, "lon": -73.9630082 }, + { "lat": 40.8130100, "lon": -73.9628841 }, + { "lat": 40.8129370, "lon": -73.9629304 }, + { "lat": 40.8128553, "lon": -73.9629822 }, + { "lat": 40.8128925, "lon": -73.9630860 }, + { "lat": 40.8128072, "lon": -73.9631298 }, + { "lat": 40.8128388, "lon": -73.9632372 }, + { "lat": 40.8128740, "lon": -73.9633567 }, + { "lat": 40.8129069, "lon": -73.9634687 }, + { "lat": 40.8129373, "lon": -73.9635721 }, + { "lat": 40.8130233, "lon": -73.9635280 }, + { "lat": 40.8130821, "lon": -73.9637438 }, + { "lat": 40.8131355, "lon": -73.9637257 }, + { "lat": 40.8132245, "lon": -73.9636863 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "rock" + } +}, +{ + "type": "way", + "id": 100194255, + "bounds": { + "minlat": 40.8757949, + "minlon": -74.0029795, + "maxlat": 40.8762634, + "maxlon": -74.0028019 + }, + "nodes": [ + 103302932, + 1158133044, + 1158133046, + 103302934 + ], + "geometry": [ + { "lat": 40.8757974, "lon": -74.0029795 }, + { "lat": 40.8757949, "lon": -74.0028115 }, + { "lat": 40.8762623, "lon": -74.0028019 }, + { "lat": 40.8762634, "lon": -74.0029580 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Lowell Court", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lowell", + "tiger:name_type": "Ct" + } +}, +{ + "type": "way", + "id": 100196267, + "bounds": { + "minlat": 40.8724470, + "minlon": -74.0068299, + "maxlat": 40.8725548, + "maxlon": -74.0063056 + }, + "nodes": [ + 1158148620, + 13527750527, + 567269867 + ], + "geometry": [ + { "lat": 40.8725548, "lon": -74.0063056 }, + { "lat": 40.8724719, "lon": -74.0067089 }, + { "lat": 40.8724470, "lon": -74.0068299 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 100196270, + "bounds": { + "minlat": 40.8713330, + "minlon": -74.0046832, + "maxlat": 40.8714952, + "maxlon": -74.0040401 + }, + "nodes": [ + 4469429060, + 1158148626, + 4469429076, + 1158148629, + 4469429038, + 1158148632, + 6902585213 + ], + "geometry": [ + { "lat": 40.8714952, "lon": -74.0040401 }, + { "lat": 40.8714395, "lon": -74.0041999 }, + { "lat": 40.8714117, "lon": -74.0042770 }, + { "lat": 40.8713899, "lon": -74.0043447 }, + { "lat": 40.8713823, "lon": -74.0044382 }, + { "lat": 40.8713846, "lon": -74.0045403 }, + { "lat": 40.8713330, "lon": -74.0046832 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 100196273, + "bounds": { + "minlat": 40.8747894, + "minlon": -74.0050565, + "maxlat": 40.8751196, + "maxlon": -74.0046449 + }, + "nodes": [ + 1158148716, + 4469435364, + 4469435369, + 4469435379 + ], + "geometry": [ + { "lat": 40.8747894, "lon": -74.0050565 }, + { "lat": 40.8750395, "lon": -74.0049049 }, + { "lat": 40.8750780, "lon": -74.0048105 }, + { "lat": 40.8751196, "lon": -74.0046449 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 100198546, + "bounds": { + "minlat": 40.8741494, + "minlon": -74.0034098, + "maxlat": 40.8748287, + "maxlon": -74.0031239 + }, + "nodes": [ + 1158170847, + 4469435377, + 4469435382, + 4469435372, + 4469435376, + 4469435365, + 4469435381 + ], + "geometry": [ + { "lat": 40.8741494, "lon": -74.0034098 }, + { "lat": 40.8744276, "lon": -74.0032465 }, + { "lat": 40.8746643, "lon": -74.0031239 }, + { "lat": 40.8747312, "lon": -74.0031400 }, + { "lat": 40.8747663, "lon": -74.0031740 }, + { "lat": 40.8747967, "lon": -74.0032626 }, + { "lat": 40.8748287, "lon": -74.0033706 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 103917119, + "bounds": { + "minlat": 40.8369673, + "minlon": -73.9401365, + "maxlat": 40.8377140, + "maxlon": -73.9399940 + }, + "nodes": [ + 42433024, + 9569882305, + 11292676877, + 42433020 + ], + "geometry": [ + { "lat": 40.8377140, "lon": -73.9399940 }, + { "lat": 40.8376528, "lon": -73.9400085 }, + { "lat": 40.8370350, "lon": -73.9401239 }, + { "lat": 40.8369673, "lon": -73.9401365 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "rcn_ref": "9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 103917121, + "bounds": { + "minlat": 40.8344923, + "minlon": -73.9400480, + "maxlat": 40.8350754, + "maxlon": -73.9397872 + }, + "nodes": [ + 42432999, + 11291880496, + 11296125598, + 42433011 + ], + "geometry": [ + { "lat": 40.8344923, "lon": -73.9400480 }, + { "lat": 40.8345637, "lon": -73.9400164 }, + { "lat": 40.8349180, "lon": -73.9398600 }, + { "lat": 40.8350754, "lon": -73.9397872 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "parking:lane:both": "parallel", + "rcn_ref": "9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 104144064, + "bounds": { + "minlat": 40.8614596, + "minlon": -73.9247102, + "maxlat": 40.8615543, + "maxlon": -73.9246410 + }, + "nodes": [ + 42432785, + 1764400302 + ], + "geometry": [ + { "lat": 40.8615543, "lon": -73.9247102 }, + { "lat": 40.8614596, "lon": -73.9246410 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:separation": "flex_post", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "name": "Dyckman Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "turn:lanes:backward": "left|", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 104169857, + "bounds": { + "minlat": 40.8695420, + "minlon": -73.9183124, + "maxlat": 40.8697118, + "maxlon": -73.9180882 + }, + "nodes": [ + 1202018682, + 1764684192, + 1202018697, + 1202018704, + 1202018656, + 1202018721, + 1202018690, + 1202018691, + 1202018710, + 1202018678, + 6865009899, + 1202018719, + 1202018693, + 1202018650, + 1202018696, + 1202018708, + 1202018680, + 6865009898, + 1202018714, + 1202018695, + 1202018682 + ], + "geometry": [ + { "lat": 40.8695810, "lon": -73.9181058 }, + { "lat": 40.8696018, "lon": -73.9180929 }, + { "lat": 40.8696332, "lon": -73.9180882 }, + { "lat": 40.8696690, "lon": -73.9181027 }, + { "lat": 40.8696927, "lon": -73.9181292 }, + { "lat": 40.8697061, "lon": -73.9181597 }, + { "lat": 40.8697118, "lon": -73.9181984 }, + { "lat": 40.8697067, "lon": -73.9182386 }, + { "lat": 40.8696896, "lon": -73.9182761 }, + { "lat": 40.8696615, "lon": -73.9183029 }, + { "lat": 40.8696518, "lon": -73.9183060 }, + { "lat": 40.8696318, "lon": -73.9183124 }, + { "lat": 40.8696066, "lon": -73.9183093 }, + { "lat": 40.8695843, "lon": -73.9182974 }, + { "lat": 40.8695614, "lon": -73.9182717 }, + { "lat": 40.8695473, "lon": -73.9182396 }, + { "lat": 40.8695420, "lon": -73.9181983 }, + { "lat": 40.8695444, "lon": -73.9181823 }, + { "lat": 40.8695480, "lon": -73.9181585 }, + { "lat": 40.8695652, "lon": -73.9181231 }, + { "lat": 40.8695810, "lon": -73.9181058 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Park Terrace East", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Park Terrace East", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 104315946, + "bounds": { + "minlat": 40.8602477, + "minlon": -73.9193790, + "maxlat": 40.8605270, + "maxlon": -73.9187061 + }, + "nodes": [ + 42445561, + 1764746047, + 9561557611, + 42445046 + ], + "geometry": [ + { "lat": 40.8602477, "lon": -73.9187061 }, + { "lat": 40.8604677, "lon": -73.9192360 }, + { "lat": 40.8604902, "lon": -73.9192921 }, + { "lat": 40.8605270, "lon": -73.9193790 } + ], + "tags": { + "highway": "residential", + "name": "West 202nd Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "202nd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 104315947, + "bounds": { + "minlat": 40.8610156, + "minlon": -73.9189270, + "maxlat": 40.8611420, + "maxlon": -73.9185900 + }, + "nodes": [ + 1203709420, + 1764746044, + 9561557612, + 42435412 + ], + "geometry": [ + { "lat": 40.8610156, "lon": -73.9185900 }, + { "lat": 40.8610845, "lon": -73.9187822 }, + { "lat": 40.8611084, "lon": -73.9188460 }, + { "lat": 40.8611420, "lon": -73.9189270 } + ], + "tags": { + "highway": "residential", + "name": "West 203rd Street", + "name_1": "West 203 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "203rd", + "tiger:name_base_1": "203", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 104336123, + "bounds": { + "minlat": 40.7947868, + "minlon": -73.9591455, + "maxlat": 40.7963009, + "maxlon": -73.9568490 + }, + "nodes": [ + 2059304070, + 2059304063, + 9908455793, + 247225059, + 247225060, + 9908455794, + 9908455795, + 2059304050, + 2059304035, + 247225061, + 2059304034, + 2059304033, + 9908455796, + 247225062, + 2057103416, + 9908455797, + 2057103414, + 247225063, + 2057103412, + 9908455798, + 2057103404, + 247225064, + 2057103402, + 2057103400, + 2057103398, + 247225065, + 9908455799, + 2057103397, + 247225066, + 9908455800, + 1203806378 + ], + "geometry": [ + { "lat": 40.7963009, "lon": -73.9568490 }, + { "lat": 40.7962338, "lon": -73.9568828 }, + { "lat": 40.7961688, "lon": -73.9569219 }, + { "lat": 40.7961123, "lon": -73.9569646 }, + { "lat": 40.7960523, "lon": -73.9570142 }, + { "lat": 40.7959908, "lon": -73.9570749 }, + { "lat": 40.7959044, "lon": -73.9571648 }, + { "lat": 40.7958364, "lon": -73.9572406 }, + { "lat": 40.7957722, "lon": -73.9573221 }, + { "lat": 40.7957133, "lon": -73.9574112 }, + { "lat": 40.7956614, "lon": -73.9575015 }, + { "lat": 40.7956141, "lon": -73.9575885 }, + { "lat": 40.7955649, "lon": -73.9576940 }, + { "lat": 40.7955224, "lon": -73.9577921 }, + { "lat": 40.7954842, "lon": -73.9578981 }, + { "lat": 40.7954528, "lon": -73.9580033 }, + { "lat": 40.7954255, "lon": -73.9581076 }, + { "lat": 40.7953580, "lon": -73.9583837 }, + { "lat": 40.7953366, "lon": -73.9584601 }, + { "lat": 40.7953098, "lon": -73.9585424 }, + { "lat": 40.7952828, "lon": -73.9586142 }, + { "lat": 40.7952449, "lon": -73.9586953 }, + { "lat": 40.7952020, "lon": -73.9587721 }, + { "lat": 40.7951656, "lon": -73.9588276 }, + { "lat": 40.7951194, "lon": -73.9588878 }, + { "lat": 40.7950701, "lon": -73.9589439 }, + { "lat": 40.7950204, "lon": -73.9589964 }, + { "lat": 40.7949661, "lon": -73.9590433 }, + { "lat": 40.7949125, "lon": -73.9590803 }, + { "lat": 40.7948518, "lon": -73.9591136 }, + { "lat": 40.7947868, "lon": -73.9591455 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 104336139, + "bounds": { + "minlat": 40.7897220, + "minlon": -73.9573402, + "maxlat": 40.7915893, + "maxlon": -73.9557458 + }, + "nodes": [ + 247224999, + 9178942068, + 247225000, + 2059119520, + 9178942069, + 9908358294, + 247225001, + 9178942070, + 9908358295, + 2059119543, + 9178942071, + 247225002, + 9178942072, + 2059119568, + 9908358296, + 9178942073, + 9908390658 + ], + "geometry": [ + { "lat": 40.7897220, "lon": -73.9573402 }, + { "lat": 40.7897765, "lon": -73.9573253 }, + { "lat": 40.7898395, "lon": -73.9573017 }, + { "lat": 40.7899121, "lon": -73.9572657 }, + { "lat": 40.7899788, "lon": -73.9572291 }, + { "lat": 40.7900725, "lon": -73.9571687 }, + { "lat": 40.7901837, "lon": -73.9570973 }, + { "lat": 40.7902877, "lon": -73.9570275 }, + { "lat": 40.7904111, "lon": -73.9569437 }, + { "lat": 40.7905728, "lon": -73.9568223 }, + { "lat": 40.7907231, "lon": -73.9566988 }, + { "lat": 40.7908567, "lon": -73.9565787 }, + { "lat": 40.7910138, "lon": -73.9564188 }, + { "lat": 40.7911990, "lon": -73.9562204 }, + { "lat": 40.7913576, "lon": -73.9560319 }, + { "lat": 40.7914914, "lon": -73.9558645 }, + { "lat": 40.7915893, "lon": -73.9557458 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 104343850, + "bounds": { + "minlat": 40.7995283, + "minlon": -73.9579411, + "maxlat": 40.7998393, + "maxlon": -73.9578250 + }, + "nodes": [ + 3247295569, + 9908455771, + 9908455772, + 1203883740, + 6804416827, + 2058920069, + 1203884002, + 1203883658, + 9908455773, + 1203884134 + ], + "geometry": [ + { "lat": 40.7998393, "lon": -73.9578478 }, + { "lat": 40.7997934, "lon": -73.9578350 }, + { "lat": 40.7997612, "lon": -73.9578294 }, + { "lat": 40.7997245, "lon": -73.9578250 }, + { "lat": 40.7996972, "lon": -73.9578278 }, + { "lat": 40.7996712, "lon": -73.9578340 }, + { "lat": 40.7996427, "lon": -73.9578456 }, + { "lat": 40.7996136, "lon": -73.9578624 }, + { "lat": 40.7995826, "lon": -73.9578868 }, + { "lat": 40.7995283, "lon": -73.9579411 } + ], + "tags": { + "bicycle": "designated", + "hgv": "no", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "West 110th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 104343858, + "bounds": { + "minlat": 40.7998393, + "minlon": -73.9579325, + "maxlat": 40.8000580, + "maxlon": -73.9578478 + }, + "nodes": [ + 3247295568, + 3247295569 + ], + "geometry": [ + { "lat": 40.8000580, "lon": -73.9579325 }, + { "lat": 40.7998393, "lon": -73.9578478 } + ], + "tags": { + "bicycle": "designated", + "bridge": "yes", + "hgv": "no", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "motor_vehicle": "no", + "name": "West 110th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 104502445, + "bounds": { + "minlat": 40.8592596, + "minlon": -73.9341761, + "maxlat": 40.8592685, + "maxlon": -73.9340649 + }, + "nodes": [ + 1205714875, + 1205714869, + 1205714903, + 1205714863 + ], + "geometry": [ + { "lat": 40.8592644, "lon": -73.9341761 }, + { "lat": 40.8592602, "lon": -73.9341523 }, + { "lat": 40.8592596, "lon": -73.9341089 }, + { "lat": 40.8592685, "lon": -73.9340649 } + ], + "tags": { + "highway": "unclassified", + "junction": "roundabout", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Plaza", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "surface": "asphalt", + "width": "52'0\"" + } +}, +{ + "type": "way", + "id": 104903374, + "bounds": { + "minlat": 40.8650215, + "minlon": -73.9312056, + "maxlat": 40.8653403, + "maxlon": -73.9309729 + }, + "nodes": [ + 1209670174, + 1209670350, + 1209671285, + 1209671443, + 1209671629, + 1209671861, + 1209670127, + 1209671009, + 1209671039, + 1209671079, + 1209671152, + 1209671295, + 1209671484, + 1209670369, + 1209671804, + 1209671901, + 1209670112, + 1209670459, + 1209670599, + 1209670676, + 1209670863, + 1209671353, + 10051021974, + 10051021973, + 1209671562, + 1209671717, + 1209671964, + 1209670178, + 1209670187, + 1209670232, + 1209670250, + 1209670174 + ], + "geometry": [ + { "lat": 40.8653260, "lon": -73.9311010 }, + { "lat": 40.8653403, "lon": -73.9311182 }, + { "lat": 40.8653300, "lon": -73.9311326 }, + { "lat": 40.8653141, "lon": -73.9311522 }, + { "lat": 40.8652893, "lon": -73.9311780 }, + { "lat": 40.8652698, "lon": -73.9311912 }, + { "lat": 40.8652456, "lon": -73.9312000 }, + { "lat": 40.8652212, "lon": -73.9312056 }, + { "lat": 40.8651959, "lon": -73.9312027 }, + { "lat": 40.8651631, "lon": -73.9311966 }, + { "lat": 40.8651341, "lon": -73.9311977 }, + { "lat": 40.8651097, "lon": -73.9311676 }, + { "lat": 40.8650905, "lon": -73.9311406 }, + { "lat": 40.8650812, "lon": -73.9311054 }, + { "lat": 40.8650768, "lon": -73.9310885 }, + { "lat": 40.8650580, "lon": -73.9310776 }, + { "lat": 40.8650438, "lon": -73.9310521 }, + { "lat": 40.8650388, "lon": -73.9310279 }, + { "lat": 40.8650256, "lon": -73.9310132 }, + { "lat": 40.8650215, "lon": -73.9309797 }, + { "lat": 40.8650651, "lon": -73.9309729 }, + { "lat": 40.8651239, "lon": -73.9309770 }, + { "lat": 40.8651278, "lon": -73.9309951 }, + { "lat": 40.8651402, "lon": -73.9310097 }, + { "lat": 40.8651626, "lon": -73.9310209 }, + { "lat": 40.8651945, "lon": -73.9310309 }, + { "lat": 40.8652352, "lon": -73.9310418 }, + { "lat": 40.8652751, "lon": -73.9310534 }, + { "lat": 40.8652943, "lon": -73.9310548 }, + { "lat": 40.8653016, "lon": -73.9310734 }, + { "lat": 40.8653136, "lon": -73.9310877 }, + { "lat": 40.8653260, "lon": -73.9311010 } + ], + "tags": { + "area": "yes", + "highway": "service", + "surface": "cobblestone" + } +}, +{ + "type": "way", + "id": 104903377, + "bounds": { + "minlat": 40.8650651, + "minlon": -73.9311070, + "maxlat": 40.8654411, + "maxlon": -73.9309729 + }, + "nodes": [ + 1209670863, + 5828411310, + 5828411309, + 1209670250, + 1209670324, + 1209670337 + ], + "geometry": [ + { "lat": 40.8650651, "lon": -73.9309729 }, + { "lat": 40.8651372, "lon": -73.9310719 }, + { "lat": 40.8652665, "lon": -73.9311070 }, + { "lat": 40.8653136, "lon": -73.9310877 }, + { "lat": 40.8653914, "lon": -73.9310535 }, + { "lat": 40.8654411, "lon": -73.9310280 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "cobblestone" + } +}, +{ + "type": "way", + "id": 104903378, + "bounds": { + "minlat": 40.8650547, + "minlon": -73.9309729, + "maxlat": 40.8650651, + "maxlon": -73.9309073 + }, + "nodes": [ + 42434707, + 1209670863 + ], + "geometry": [ + { "lat": 40.8650547, "lon": -73.9309073 }, + { "lat": 40.8650651, "lon": -73.9309729 } + ], + "tags": { + "highway": "service", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 104903389, + "bounds": { + "minlat": 40.8655732, + "minlon": -73.9307195, + "maxlat": 40.8656873, + "maxlon": -73.9305842 + }, + "nodes": [ + 1209670437, + 1209670463, + 1209670496, + 1209670508, + 1209670548, + 1209670514, + 1209670559, + 1209670562, + 1209670605, + 1209670611, + 1209670629, + 1209670667, + 1209670683, + 12544135290, + 12544135289, + 12544135292, + 1209670437 + ], + "geometry": [ + { "lat": 40.8656716, "lon": -73.9307195 }, + { "lat": 40.8656819, "lon": -73.9307045 }, + { "lat": 40.8656865, "lon": -73.9306875 }, + { "lat": 40.8656873, "lon": -73.9306595 }, + { "lat": 40.8656867, "lon": -73.9306388 }, + { "lat": 40.8656821, "lon": -73.9306189 }, + { "lat": 40.8656735, "lon": -73.9306034 }, + { "lat": 40.8656616, "lon": -73.9305925 }, + { "lat": 40.8656476, "lon": -73.9305874 }, + { "lat": 40.8656308, "lon": -73.9305842 }, + { "lat": 40.8656113, "lon": -73.9305928 }, + { "lat": 40.8655907, "lon": -73.9306078 }, + { "lat": 40.8655732, "lon": -73.9306244 }, + { "lat": 40.8655904, "lon": -73.9306410 }, + { "lat": 40.8656267, "lon": -73.9306761 }, + { "lat": 40.8656537, "lon": -73.9307022 }, + { "lat": 40.8656716, "lon": -73.9307195 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 104903413, + "bounds": { + "minlat": 40.8646063, + "minlon": -73.9315698, + "maxlat": 40.8650812, + "maxlon": -73.9311054 + }, + "nodes": [ + 1209670369, + 1209670414, + 1209670470, + 1209670797, + 1209670719, + 1209670766, + 1209670743, + 1209670806, + 1209670856, + 1209670898, + 1209670407, + 1209670452, + 1209670477, + 1209670518, + 1209670568, + 1209670619, + 1209670685, + 1209670776, + 1209670823, + 1209670921, + 1209671357, + 1209671336, + 1209671447, + 10051021975, + 1209671618, + 1209671928 + ], + "geometry": [ + { "lat": 40.8650812, "lon": -73.9311054 }, + { "lat": 40.8650582, "lon": -73.9311426 }, + { "lat": 40.8650299, "lon": -73.9311610 }, + { "lat": 40.8649997, "lon": -73.9311691 }, + { "lat": 40.8649462, "lon": -73.9311620 }, + { "lat": 40.8649058, "lon": -73.9311457 }, + { "lat": 40.8648729, "lon": -73.9311383 }, + { "lat": 40.8648469, "lon": -73.9311343 }, + { "lat": 40.8648187, "lon": -73.9311302 }, + { "lat": 40.8647889, "lon": -73.9311323 }, + { "lat": 40.8647625, "lon": -73.9311363 }, + { "lat": 40.8647398, "lon": -73.9311394 }, + { "lat": 40.8647095, "lon": -73.9311511 }, + { "lat": 40.8646749, "lon": -73.9311758 }, + { "lat": 40.8646507, "lon": -73.9312010 }, + { "lat": 40.8646326, "lon": -73.9312322 }, + { "lat": 40.8646219, "lon": -73.9312621 }, + { "lat": 40.8646109, "lon": -73.9313050 }, + { "lat": 40.8646063, "lon": -73.9313492 }, + { "lat": 40.8646104, "lon": -73.9313919 }, + { "lat": 40.8646223, "lon": -73.9314409 }, + { "lat": 40.8646544, "lon": -73.9314942 }, + { "lat": 40.8646954, "lon": -73.9315466 }, + { "lat": 40.8647457, "lon": -73.9315698 }, + { "lat": 40.8648059, "lon": -73.9315619 }, + { "lat": 40.8648871, "lon": -73.9315271 } + ], + "tags": { + "highway": "service", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 104903423, + "bounds": { + "minlat": 40.8661592, + "minlon": -73.9312962, + "maxlat": 40.8662626, + "maxlon": -73.9311447 + }, + "nodes": [ + 1209670332, + 3805630277, + 1209670763, + 1209670782, + 1209670815, + 1209670825, + 1209670853, + 1209670867, + 3805630278, + 1209670432, + 1209670455, + 3805630276, + 1209670346, + 1209670332 + ], + "geometry": [ + { "lat": 40.8662160, "lon": -73.9312842 }, + { "lat": 40.8662261, "lon": -73.9312600 }, + { "lat": 40.8662444, "lon": -73.9312533 }, + { "lat": 40.8662555, "lon": -73.9312345 }, + { "lat": 40.8662626, "lon": -73.9312117 }, + { "lat": 40.8662586, "lon": -73.9311903 }, + { "lat": 40.8662525, "lon": -73.9311742 }, + { "lat": 40.8662413, "lon": -73.9311568 }, + { "lat": 40.8662149, "lon": -73.9311447 }, + { "lat": 40.8661815, "lon": -73.9311460 }, + { "lat": 40.8661724, "lon": -73.9311662 }, + { "lat": 40.8661592, "lon": -73.9311889 }, + { "lat": 40.8661977, "lon": -73.9312962 }, + { "lat": 40.8662160, "lon": -73.9312842 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 104911010, + "bounds": { + "minlat": 40.7489713, + "minlon": -73.9691837, + "maxlat": 40.7492605, + "maxlon": -73.9687770 + }, + "nodes": [ + 1209764779, + 1209764815, + 1209764808, + 11002617459, + 1209764863, + 1209764840, + 1209764751, + 1209764727, + 11002617460, + 11002617455, + 1357949738 + ], + "geometry": [ + { "lat": 40.7492605, "lon": -73.9691536 }, + { "lat": 40.7492206, "lon": -73.9691752 }, + { "lat": 40.7491893, "lon": -73.9691837 }, + { "lat": 40.7491598, "lon": -73.9691824 }, + { "lat": 40.7491282, "lon": -73.9691681 }, + { "lat": 40.7490983, "lon": -73.9691411 }, + { "lat": 40.7490687, "lon": -73.9690954 }, + { "lat": 40.7490190, "lon": -73.9689803 }, + { "lat": 40.7489838, "lon": -73.9689147 }, + { "lat": 40.7489713, "lon": -73.9688373 }, + { "lat": 40.7489745, "lon": -73.9687770 } + ], + "tags": { + "access": "no", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 104917361, + "bounds": { + "minlat": 40.8635159, + "minlon": -73.9325114, + "maxlat": 40.8641940, + "maxlon": -73.9317487 + }, + "nodes": [ + 374494536, + 374494557, + 374494567, + 374494577, + 1209796057, + 374494585, + 374494595, + 374494603, + 374494609, + 374494618, + 374494628, + 42454893 + ], + "geometry": [ + { "lat": 40.8641940, "lon": -73.9325114 }, + { "lat": 40.8640896, "lon": -73.9323736 }, + { "lat": 40.8640516, "lon": -73.9322927 }, + { "lat": 40.8639437, "lon": -73.9319707 }, + { "lat": 40.8639381, "lon": -73.9319589 }, + { "lat": 40.8639113, "lon": -73.9319021 }, + { "lat": 40.8638640, "lon": -73.9318220 }, + { "lat": 40.8637973, "lon": -73.9317802 }, + { "lat": 40.8637410, "lon": -73.9317585 }, + { "lat": 40.8636898, "lon": -73.9317487 }, + { "lat": 40.8636169, "lon": -73.9317568 }, + { "lat": 40.8635159, "lon": -73.9317811 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "residential", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 104934548, + "bounds": { + "minlat": 40.8631112, + "minlon": -73.9331865, + "maxlat": 40.8632096, + "maxlon": -73.9330452 + }, + "nodes": [ + 1209943236, + 1209943238, + 1209943249, + 1209943310, + 1209943313, + 1209943320, + 1209943327, + 1209943329, + 1209943334, + 1209943366, + 1209943345, + 1209943350, + 1209943236 + ], + "geometry": [ + { "lat": 40.8632056, "lon": -73.9331062 }, + { "lat": 40.8632045, "lon": -73.9331623 }, + { "lat": 40.8631964, "lon": -73.9331677 }, + { "lat": 40.8631579, "lon": -73.9331838 }, + { "lat": 40.8631447, "lon": -73.9331865 }, + { "lat": 40.8631224, "lon": -73.9331744 }, + { "lat": 40.8631112, "lon": -73.9331167 }, + { "lat": 40.8631203, "lon": -73.9330926 }, + { "lat": 40.8631386, "lon": -73.9330859 }, + { "lat": 40.8631529, "lon": -73.9330702 }, + { "lat": 40.8631812, "lon": -73.9330452 }, + { "lat": 40.8632096, "lon": -73.9330691 }, + { "lat": 40.8632056, "lon": -73.9331062 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 104984000, + "bounds": { + "minlat": 40.8572591, + "minlon": -73.9334312, + "maxlat": 40.8588692, + "maxlon": -73.9325832 + }, + "nodes": [ + 1205715024, + 11594925618, + 42427782, + 11594925614, + 1210384798 + ], + "geometry": [ + { "lat": 40.8588692, "lon": -73.9325832 }, + { "lat": 40.8584289, "lon": -73.9328137 }, + { "lat": 40.8581161, "lon": -73.9329770 }, + { "lat": 40.8574624, "lon": -73.9333235 }, + { "lat": 40.8572591, "lon": -73.9334312 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bennett Avenue", + "name:etymology:wikidata": "Q1343611", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bennett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 104984009, + "bounds": { + "minlat": 40.8504587, + "minlon": -73.9366718, + "maxlat": 40.8555926, + "maxlon": -73.9342626 + }, + "nodes": [ + 42450290, + 9563795438, + 42436296, + 9563795439, + 13011654516, + 9563795534, + 42445689, + 9563795536, + 11989039487, + 9563795518, + 42454240, + 9563795517, + 11595081363, + 9550791823, + 42444081 + ], + "geometry": [ + { "lat": 40.8555926, "lon": -73.9342626 }, + { "lat": 40.8545721, "lon": -73.9346023 }, + { "lat": 40.8545099, "lon": -73.9346217 }, + { "lat": 40.8544427, "lon": -73.9346555 }, + { "lat": 40.8535866, "lon": -73.9350796 }, + { "lat": 40.8535470, "lon": -73.9350993 }, + { "lat": 40.8534790, "lon": -73.9351330 }, + { "lat": 40.8534188, "lon": -73.9351638 }, + { "lat": 40.8524462, "lon": -73.9356612 }, + { "lat": 40.8524009, "lon": -73.9356843 }, + { "lat": 40.8523390, "lon": -73.9357160 }, + { "lat": 40.8522867, "lon": -73.9357423 }, + { "lat": 40.8514653, "lon": -73.9361681 }, + { "lat": 40.8505398, "lon": -73.9366346 }, + { "lat": 40.8504587, "lon": -73.9366718 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bennett Avenue", + "name:etymology:wikidata": "Q1343611", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bennett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 104987894, + "bounds": { + "minlat": 40.8621061, + "minlon": -73.9331154, + "maxlat": 40.8623004, + "maxlon": -73.9329310 + }, + "nodes": [ + 561035408, + 561035401, + 1209977121, + 1210424292, + 561035408 + ], + "geometry": [ + { "lat": 40.8623004, "lon": -73.9331120 }, + { "lat": 40.8622403, "lon": -73.9331154 }, + { "lat": 40.8621061, "lon": -73.9331096 }, + { "lat": 40.8622019, "lon": -73.9329310 }, + { "lat": 40.8623004, "lon": -73.9331120 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "source": "GPS survey", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 105354586, + "bounds": { + "minlat": 40.8235181, + "minlon": -73.9284546, + "maxlat": 40.8257181, + "maxlon": -73.9271680 + }, + "nodes": [ + 42771297, + 2611640974, + 13146557951, + 42749785, + 13146557936, + 7043070572, + 13238609082, + 13039118982, + 42744112 + ], + "geometry": [ + { "lat": 40.8235181, "lon": -73.9284546 }, + { "lat": 40.8239569, "lon": -73.9282057 }, + { "lat": 40.8239718, "lon": -73.9281978 }, + { "lat": 40.8240652, "lon": -73.9281487 }, + { "lat": 40.8241523, "lon": -73.9280955 }, + { "lat": 40.8245250, "lon": -73.9278680 }, + { "lat": 40.8250269, "lon": -73.9275736 }, + { "lat": 40.8256638, "lon": -73.9272000 }, + { "lat": 40.8257181, "lon": -73.9271680 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "River Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 105354611, + "bounds": { + "minlat": 40.8215451, + "minlon": -73.9272980, + "maxlat": 40.8218122, + "maxlon": -73.9271827 + }, + "nodes": [ + 42733697, + 1213918199 + ], + "geometry": [ + { "lat": 40.8218122, "lon": -73.9271827 }, + { "lat": 40.8215451, "lon": -73.9272980 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "cycleway:right": "lane", + "highway": "residential", + "layer": "1", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 105354619, + "bounds": { + "minlat": 40.8233134, + "minlon": -73.9285612, + "maxlat": 40.8235181, + "maxlon": -73.9284546 + }, + "nodes": [ + 1213918465, + 42771297 + ], + "geometry": [ + { "lat": 40.8233134, "lon": -73.9285612 }, + { "lat": 40.8235181, "lon": -73.9284546 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "secondary", + "layer": "1", + "name": "River Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 105354631, + "bounds": { + "minlat": 40.8180211, + "minlon": -73.9252852, + "maxlat": 40.8180477, + "maxlon": -73.9251816 + }, + "nodes": [ + 42778542, + 42778545 + ], + "geometry": [ + { "lat": 40.8180477, "lon": -73.9252852 }, + { "lat": 40.8180211, "lon": -73.9251816 } + ], + "tags": { + "bicycle": "yes", + "busway:both": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 149th Street", + "sidewalk": "both", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "turn:lanes:forward": "left|through|" + } +}, +{ + "type": "way", + "id": 105354634, + "bounds": { + "minlat": 40.8150600, + "minlon": -73.9297968, + "maxlat": 40.8187803, + "maxlon": -73.9282771 + }, + "nodes": [ + 42733691, + 9917864251, + 10225241481, + 6117189987, + 9166288557, + 9166288558, + 42733689, + 13039063249, + 42733686, + 13039063251, + 8236160868, + 9903106238, + 42733681, + 9903106237 + ], + "geometry": [ + { "lat": 40.8187803, "lon": -73.9282771 }, + { "lat": 40.8187025, "lon": -73.9283032 }, + { "lat": 40.8185054, "lon": -73.9283634 }, + { "lat": 40.8184499, "lon": -73.9283804 }, + { "lat": 40.8175244, "lon": -73.9286718 }, + { "lat": 40.8174684, "lon": -73.9286930 }, + { "lat": 40.8174123, "lon": -73.9287171 }, + { "lat": 40.8168237, "lon": -73.9289948 }, + { "lat": 40.8167575, "lon": -73.9290263 }, + { "lat": 40.8166908, "lon": -73.9290567 }, + { "lat": 40.8152235, "lon": -73.9297227 }, + { "lat": 40.8151895, "lon": -73.9297378 }, + { "lat": 40.8151190, "lon": -73.9297710 }, + { "lat": 40.8150600, "lon": -73.9297968 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 105354636, + "bounds": { + "minlat": 40.8204232, + "minlon": -73.9265149, + "maxlat": 40.8207382, + "maxlon": -73.9263344 + }, + "nodes": [ + 42741428, + 12162740234, + 12162740233, + 1213919346, + 1213918130 + ], + "geometry": [ + { "lat": 40.8207382, "lon": -73.9263344 }, + { "lat": 40.8206813, "lon": -73.9263761 }, + { "lat": 40.8206246, "lon": -73.9264126 }, + { "lat": 40.8205663, "lon": -73.9264427 }, + { "lat": 40.8204232, "lon": -73.9265149 } + ], + "tags": { + "bridge": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 105354643, + "bounds": { + "minlat": 40.8226517, + "minlon": -73.9278055, + "maxlat": 40.8262902, + "maxlon": -73.9256689 + }, + "nodes": [ + 42734153, + 9166351218, + 13146557932, + 42734157, + 13146557934, + 42734161, + 13038604268, + 42734164 + ], + "geometry": [ + { "lat": 40.8226517, "lon": -73.9278055 }, + { "lat": 40.8228123, "lon": -73.9277132 }, + { "lat": 40.8231054, "lon": -73.9275369 }, + { "lat": 40.8231784, "lon": -73.9274929 }, + { "lat": 40.8232546, "lon": -73.9274483 }, + { "lat": 40.8253913, "lon": -73.9261986 }, + { "lat": 40.8262426, "lon": -73.9256970 }, + { "lat": 40.8262902, "lon": -73.9256689 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Gerard Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 105354645, + "bounds": { + "minlat": 40.8202003, + "minlon": -73.9226749, + "maxlat": 40.8205013, + "maxlon": -73.9214864 + }, + "nodes": [ + 42749748, + 8250477903, + 8250504917, + 42735703 + ], + "geometry": [ + { "lat": 40.8205013, "lon": -73.9226749 }, + { "lat": 40.8204798, "lon": -73.9225892 }, + { "lat": 40.8202217, "lon": -73.9215954 }, + { "lat": 40.8202003, "lon": -73.9214864 } + ], + "tags": { + "highway": "residential", + "name": "East 153rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "153rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 105354649, + "bounds": { + "minlat": 40.8181131, + "minlon": -73.9262717, + "maxlat": 40.8183042, + "maxlon": -73.9255368 + }, + "nodes": [ + 42778538, + 11570087958 + ], + "geometry": [ + { "lat": 40.8183042, "lon": -73.9262717 }, + { "lat": 40.8181131, "lon": -73.9255368 } + ], + "tags": { + "bridge": "yes", + "busway:both": "lane", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "lanes:backward": "3", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "layer": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 149th Street", + "sidewalk": "both", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "turn:lanes:backward": "||right", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 105354654, + "bounds": { + "minlat": 40.8195091, + "minlon": -73.9269493, + "maxlat": 40.8202673, + "maxlon": -73.9265926 + }, + "nodes": [ + 12162740231, + 12162740230, + 10133486277, + 42741432, + 12162740228, + 5468179330, + 12162740214, + 12162740219, + 42733563 + ], + "geometry": [ + { "lat": 40.8202673, "lon": -73.9265926 }, + { "lat": 40.8202255, "lon": -73.9266134 }, + { "lat": 40.8201798, "lon": -73.9266357 }, + { "lat": 40.8200762, "lon": -73.9266837 }, + { "lat": 40.8200132, "lon": -73.9267133 }, + { "lat": 40.8199502, "lon": -73.9267430 }, + { "lat": 40.8196142, "lon": -73.9269018 }, + { "lat": 40.8195676, "lon": -73.9269238 }, + { "lat": 40.8195091, "lon": -73.9269493 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 106877213, + "bounds": { + "minlat": 40.7173195, + "minlon": -73.9826190, + "maxlat": 40.7174872, + "maxlon": -73.9825345 + }, + "nodes": [ + 1228990842, + 1228990840 + ], + "geometry": [ + { "lat": 40.7174872, "lon": -73.9825345 }, + { "lat": 40.7173195, "lon": -73.9826190 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 106877214, + "bounds": { + "minlat": 40.7167818, + "minlon": -73.9808072, + "maxlat": 40.7169241, + "maxlon": -73.9807321 + }, + "nodes": [ + 1228990851, + 1228990841 + ], + "geometry": [ + { "lat": 40.7169241, "lon": -73.9807321 }, + { "lat": 40.7167818, "lon": -73.9808072 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 106877215, + "bounds": { + "minlat": 40.7171834, + "minlon": -73.9826190, + "maxlat": 40.7173195, + "maxlon": -73.9821468 + }, + "nodes": [ + 1228990840, + 1228990855 + ], + "geometry": [ + { "lat": 40.7173195, "lon": -73.9826190 }, + { "lat": 40.7171834, "lon": -73.9821468 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 106877217, + "bounds": { + "minlat": 40.7167818, + "minlon": -73.9819780, + "maxlat": 40.7171417, + "maxlon": -73.9808072 + }, + "nodes": [ + 1228990857, + 1228990844, + 1228990841 + ], + "geometry": [ + { "lat": 40.7171417, "lon": -73.9819780 }, + { "lat": 40.7169420, "lon": -73.9813272 }, + { "lat": 40.7167818, "lon": -73.9808072 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 106877218, + "bounds": { + "minlat": 40.7167180, + "minlon": -73.9814380, + "maxlat": 40.7170856, + "maxlon": -73.9812562 + }, + "nodes": [ + 42429811, + 5174909936, + 11073167087, + 1228990844, + 1228990853 + ], + "geometry": [ + { "lat": 40.7167180, "lon": -73.9814380 }, + { "lat": 40.7168288, "lon": -73.9813832 }, + { "lat": 40.7168547, "lon": -73.9813709 }, + { "lat": 40.7169420, "lon": -73.9813272 }, + { "lat": 40.7170856, "lon": -73.9812562 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 106877219, + "bounds": { + "minlat": 40.7169241, + "minlon": -73.9819072, + "maxlat": 40.7172861, + "maxlon": -73.9807321 + }, + "nodes": [ + 1228990851, + 1228990853, + 1228990861 + ], + "geometry": [ + { "lat": 40.7169241, "lon": -73.9807321 }, + { "lat": 40.7170856, "lon": -73.9812562 }, + { "lat": 40.7172861, "lon": -73.9819072 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 106877221, + "bounds": { + "minlat": 40.7173440, + "minlon": -73.9825345, + "maxlat": 40.7174872, + "maxlon": -73.9820623 + }, + "nodes": [ + 1228990862, + 1228990842 + ], + "geometry": [ + { "lat": 40.7173440, "lon": -73.9820623 }, + { "lat": 40.7174872, "lon": -73.9825345 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 106877223, + "bounds": { + "minlat": 40.7171417, + "minlon": -73.9819780, + "maxlat": 40.7180332, + "maxlon": -73.9815365 + }, + "nodes": [ + 1228990857, + 1228990861, + 2359921665 + ], + "geometry": [ + { "lat": 40.7171417, "lon": -73.9819780 }, + { "lat": 40.7172861, "lon": -73.9819072 }, + { "lat": 40.7180332, "lon": -73.9815365 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 108185557, + "bounds": { + "minlat": 40.7983692, + "minlon": -73.9143579, + "maxlat": 40.7992623, + "maxlon": -73.9131069 + }, + "nodes": [ + 1241563580, + 1241563649 + ], + "geometry": [ + { "lat": 40.7983692, "lon": -73.9143579 }, + { "lat": 40.7992623, "lon": -73.9131069 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 108185562, + "bounds": { + "minlat": 40.7978115, + "minlon": -73.9152243, + "maxlat": 40.7982552, + "maxlon": -73.9146488 + }, + "nodes": [ + 1241563635, + 1241563577 + ], + "geometry": [ + { "lat": 40.7982552, "lon": -73.9146488 }, + { "lat": 40.7978115, "lon": -73.9152243 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 108185565, + "bounds": { + "minlat": 40.7976487, + "minlon": -73.9148965, + "maxlat": 40.7980404, + "maxlon": -73.9143634 + }, + "nodes": [ + 1241563583, + 1241563651 + ], + "geometry": [ + { "lat": 40.7980404, "lon": -73.9143634 }, + { "lat": 40.7976487, "lon": -73.9148965 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 108200127, + "bounds": { + "minlat": 40.7718025, + "minlon": -73.9845590, + "maxlat": 40.7720047, + "maxlon": -73.9844163 + }, + "nodes": [ + 1241760163, + 6463515517 + ], + "geometry": [ + { "lat": 40.7720047, "lon": -73.9844163 }, + { "lat": 40.7718025, "lon": -73.9845590 } + ], + "tags": { + "highway": "service", + "incline": "up", + "layer": "-1", + "oneway": "yes", + "service": "driveway", + "sidewalk": "right", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 108200128, + "bounds": { + "minlat": 40.7715890, + "minlon": -73.9845801, + "maxlat": 40.7717617, + "maxlon": -73.9844576 + }, + "nodes": [ + 1241760156, + 5118031096, + 6463515516 + ], + "geometry": [ + { "lat": 40.7715890, "lon": -73.9845801 }, + { "lat": 40.7716765, "lon": -73.9845174 }, + { "lat": 40.7717617, "lon": -73.9844576 } + ], + "tags": { + "highway": "service", + "incline": "down", + "oneway": "yes", + "service": "driveway", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108202943, + "bounds": { + "minlat": 40.7595186, + "minlon": -73.9516374, + "maxlat": 40.7602431, + "maxlon": -73.9513999 + }, + "nodes": [ + 42426418, + 9913669028, + 3785703013, + 3785703014, + 3785703012, + 3569568705, + 3785703015, + 3785703016, + 3785703017, + 9913669027, + 42448873, + 9913669026, + 3785703018, + 9913669025, + 3569568704, + 3785703019, + 2141121132 + ], + "geometry": [ + { "lat": 40.7602431, "lon": -73.9515065 }, + { "lat": 40.7601993, "lon": -73.9515043 }, + { "lat": 40.7601590, "lon": -73.9514984 }, + { "lat": 40.7601138, "lon": -73.9514858 }, + { "lat": 40.7600748, "lon": -73.9514730 }, + { "lat": 40.7599710, "lon": -73.9514277 }, + { "lat": 40.7599364, "lon": -73.9514133 }, + { "lat": 40.7599046, "lon": -73.9514046 }, + { "lat": 40.7598748, "lon": -73.9514006 }, + { "lat": 40.7598398, "lon": -73.9513999 }, + { "lat": 40.7598113, "lon": -73.9514039 }, + { "lat": 40.7597867, "lon": -73.9514083 }, + { "lat": 40.7597729, "lon": -73.9514111 }, + { "lat": 40.7597477, "lon": -73.9514228 }, + { "lat": 40.7597240, "lon": -73.9514374 }, + { "lat": 40.7597053, "lon": -73.9514545 }, + { "lat": 40.7595186, "lon": -73.9516374 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "name_1": "East Road", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108209241, + "bounds": { + "minlat": 40.7627542, + "minlon": -73.9492715, + "maxlat": 40.7627838, + "maxlon": -73.9492535 + }, + "nodes": [ + 3785702992, + 8152930806 + ], + "geometry": [ + { "lat": 40.7627542, "lon": -73.9492715 }, + { "lat": 40.7627838, "lon": -73.9492535 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 108209245, + "bounds": { + "minlat": 40.7560688, + "minlon": -73.9538451, + "maxlat": 40.7570354, + "maxlon": -73.9530381 + }, + "nodes": [ + 8265113768, + 3569568695, + 9189040169, + 9913660007, + 9189040170, + 9913660006, + 9913660005, + 13040990368, + 593428071, + 9913660004, + 9913660003, + 9913660002, + 2300353446, + 9189040171, + 593428068, + 6323387093 + ], + "geometry": [ + { "lat": 40.7570354, "lon": -73.9530553 }, + { "lat": 40.7570066, "lon": -73.9530450 }, + { "lat": 40.7569818, "lon": -73.9530381 }, + { "lat": 40.7569578, "lon": -73.9530384 }, + { "lat": 40.7569345, "lon": -73.9530445 }, + { "lat": 40.7569101, "lon": -73.9530573 }, + { "lat": 40.7568919, "lon": -73.9530718 }, + { "lat": 40.7568849, "lon": -73.9530796 }, + { "lat": 40.7568732, "lon": -73.9530929 }, + { "lat": 40.7567284, "lon": -73.9533098 }, + { "lat": 40.7566926, "lon": -73.9533564 }, + { "lat": 40.7566529, "lon": -73.9534021 }, + { "lat": 40.7566163, "lon": -73.9534396 }, + { "lat": 40.7565833, "lon": -73.9534671 }, + { "lat": 40.7563290, "lon": -73.9536532 }, + { "lat": 40.7560688, "lon": -73.9538451 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "15 mph", + "name": "East Main Street", + "name_1": "Main Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East", + "tiger:name_base_1": "Main", + "tiger:name_type": "Rd", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 108209246, + "bounds": { + "minlat": 40.7566077, + "minlon": -73.9558339, + "maxlat": 40.7578285, + "maxlon": -73.9548192 + }, + "nodes": [ + 42427070, + 3569568694, + 9189040175, + 9913659996, + 2346815499, + 9189040174, + 2346815531, + 9913659997, + 1241864785, + 3569568697, + 42447412 + ], + "geometry": [ + { "lat": 40.7566077, "lon": -73.9558339 }, + { "lat": 40.7567584, "lon": -73.9557032 }, + { "lat": 40.7568594, "lon": -73.9556070 }, + { "lat": 40.7569063, "lon": -73.9555509 }, + { "lat": 40.7569532, "lon": -73.9554917 }, + { "lat": 40.7569972, "lon": -73.9554450 }, + { "lat": 40.7570466, "lon": -73.9554012 }, + { "lat": 40.7570914, "lon": -73.9553620 }, + { "lat": 40.7576851, "lon": -73.9549216 }, + { "lat": 40.7577151, "lon": -73.9548996 }, + { "lat": 40.7578285, "lon": -73.9548192 } + ], + "tags": { + "bicycle": "designated", + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "maxspeed": "15 mph", + "name": "West Main Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 108211744, + "bounds": { + "minlat": 40.7578285, + "minlon": -73.9548192, + "maxlat": 40.7590154, + "maxlon": -73.9537325 + }, + "nodes": [ + 42447412, + 9189040178, + 9189040179, + 9913660012, + 9189040180, + 42450137, + 9189040181, + 42450145, + 9189040182, + 42450148, + 42450151, + 42450154, + 42450160, + 42450162, + 9189040184, + 9189040185, + 9913660013, + 5487036765 + ], + "geometry": [ + { "lat": 40.7578285, "lon": -73.9548192 }, + { "lat": 40.7578841, "lon": -73.9547825 }, + { "lat": 40.7579227, "lon": -73.9547698 }, + { "lat": 40.7579566, "lon": -73.9547631 }, + { "lat": 40.7580125, "lon": -73.9547568 }, + { "lat": 40.7580443, "lon": -73.9547466 }, + { "lat": 40.7580790, "lon": -73.9547300 }, + { "lat": 40.7581162, "lon": -73.9547044 }, + { "lat": 40.7583096, "lon": -73.9545476 }, + { "lat": 40.7583872, "lon": -73.9544805 }, + { "lat": 40.7584568, "lon": -73.9544175 }, + { "lat": 40.7587944, "lon": -73.9540846 }, + { "lat": 40.7588437, "lon": -73.9540305 }, + { "lat": 40.7588896, "lon": -73.9539694 }, + { "lat": 40.7589295, "lon": -73.9539044 }, + { "lat": 40.7589639, "lon": -73.9538424 }, + { "lat": 40.7589913, "lon": -73.9537872 }, + { "lat": 40.7590154, "lon": -73.9537325 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "15 mph", + "name": "West Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 108220706, + "bounds": { + "minlat": 40.7688922, + "minlon": -73.9433364, + "maxlat": 40.7690911, + "maxlon": -73.9431618 + }, + "nodes": [ + 1241986437, + 8265114694, + 593428194 + ], + "geometry": [ + { "lat": 40.7688922, "lon": -73.9433364 }, + { "lat": 40.7690364, "lon": -73.9432146 }, + { "lat": 40.7690911, "lon": -73.9431618 } + ], + "tags": { + "highway": "service", + "maxspeed": "10 mph", + "name": "The Octagon" + } +}, +{ + "type": "way", + "id": 108220710, + "bounds": { + "minlat": 40.7698001, + "minlon": -73.9444811, + "maxlat": 40.7703074, + "maxlon": -73.9437867 + }, + "nodes": [ + 42424903, + 9913669109, + 9913669110, + 9913669108, + 9913669111, + 7800922837, + 5487813184, + 5487813176 + ], + "geometry": [ + { "lat": 40.7698001, "lon": -73.9444811 }, + { "lat": 40.7698217, "lon": -73.9444763 }, + { "lat": 40.7698433, "lon": -73.9444635 }, + { "lat": 40.7698623, "lon": -73.9444494 }, + { "lat": 40.7698806, "lon": -73.9444277 }, + { "lat": 40.7699373, "lon": -73.9443481 }, + { "lat": 40.7701807, "lon": -73.9439756 }, + { "lat": 40.7703074, "lon": -73.9437867 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "10 mph", + "name": "West Road" + } +}, +{ + "type": "way", + "id": 108220714, + "bounds": { + "minlat": 40.7638534, + "minlon": -73.9467577, + "maxlat": 40.7643155, + "maxlon": -73.9463664 + }, + "nodes": [ + 1241986471, + 11442895659, + 11442895658 + ], + "geometry": [ + { "lat": 40.7638534, "lon": -73.9467577 }, + { "lat": 40.7642441, "lon": -73.9464285 }, + { "lat": 40.7643155, "lon": -73.9463664 } + ], + "tags": { + "covered": "yes", + "highway": "pedestrian", + "layer": "-1", + "lit": "yes", + "name": "East Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108220715, + "bounds": { + "minlat": 40.7669326, + "minlon": -73.9444311, + "maxlat": 40.7685804, + "maxlon": -73.9426639 + }, + "nodes": [ + 1241986495, + 9913669064, + 9913669065, + 42448854, + 9913669067, + 6647688902, + 9913669068, + 9913669069, + 9913669070, + 9913669071, + 6647688903, + 9913669072, + 6647688904, + 9913669073, + 9913669074, + 42448857 + ], + "geometry": [ + { "lat": 40.7669326, "lon": -73.9444311 }, + { "lat": 40.7669473, "lon": -73.9443837 }, + { "lat": 40.7669665, "lon": -73.9443322 }, + { "lat": 40.7669876, "lon": -73.9442850 }, + { "lat": 40.7670123, "lon": -73.9442402 }, + { "lat": 40.7670460, "lon": -73.9441944 }, + { "lat": 40.7670816, "lon": -73.9441563 }, + { "lat": 40.7672651, "lon": -73.9439909 }, + { "lat": 40.7673582, "lon": -73.9439004 }, + { "lat": 40.7677279, "lon": -73.9435214 }, + { "lat": 40.7678430, "lon": -73.9434119 }, + { "lat": 40.7679521, "lon": -73.9433119 }, + { "lat": 40.7682699, "lon": -73.9430325 }, + { "lat": 40.7683118, "lon": -73.9429936 }, + { "lat": 40.7683537, "lon": -73.9429474 }, + { "lat": 40.7685804, "lon": -73.9426639 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "sidewalk": "left", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108220721, + "bounds": { + "minlat": 40.7641383, + "minlon": -73.9474612, + "maxlat": 40.7643651, + "maxlon": -73.9470006 + }, + "nodes": [ + 3569402541, + 9915262014, + 9915262013, + 9915262015, + 9915262016, + 5212861677, + 5212861676, + 9915262012, + 9915262011, + 9915262010, + 3569402540, + 9915262006, + 5212739095 + ], + "geometry": [ + { "lat": 40.7643651, "lon": -73.9470006 }, + { "lat": 40.7643491, "lon": -73.9470182 }, + { "lat": 40.7643389, "lon": -73.9470336 }, + { "lat": 40.7643290, "lon": -73.9470561 }, + { "lat": 40.7643221, "lon": -73.9470797 }, + { "lat": 40.7643172, "lon": -73.9471056 }, + { "lat": 40.7642918, "lon": -73.9472697 }, + { "lat": 40.7642853, "lon": -73.9472938 }, + { "lat": 40.7642786, "lon": -73.9473117 }, + { "lat": 40.7642701, "lon": -73.9473281 }, + { "lat": 40.7642605, "lon": -73.9473417 }, + { "lat": 40.7641540, "lon": -73.9474468 }, + { "lat": 40.7641383, "lon": -73.9474612 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "lanes": "1", + "layer": "1", + "maxspeed": "10 mph", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 108220723, + "bounds": { + "minlat": 40.7683133, + "minlon": -73.9454753, + "maxlat": 40.7688922, + "maxlon": -73.9433364 + }, + "nodes": [ + 1241986707, + 13154919181, + 2847158969, + 8265114777, + 1241986542, + 8265114775, + 1241986692, + 8488556372, + 6647688947, + 1241986433, + 9913669151, + 9913669150, + 8265114702, + 9913669149, + 9913669146, + 1241986411, + 1241986536, + 1241986437 + ], + "geometry": [ + { "lat": 40.7683914, "lon": -73.9454753 }, + { "lat": 40.7686254, "lon": -73.9452812 }, + { "lat": 40.7686930, "lon": -73.9451914 }, + { "lat": 40.7687091, "lon": -73.9451425 }, + { "lat": 40.7687163, "lon": -73.9451208 }, + { "lat": 40.7687237, "lon": -73.9450520 }, + { "lat": 40.7687112, "lon": -73.9449896 }, + { "lat": 40.7685859, "lon": -73.9447161 }, + { "lat": 40.7685657, "lon": -73.9446697 }, + { "lat": 40.7683219, "lon": -73.9440936 }, + { "lat": 40.7683164, "lon": -73.9440653 }, + { "lat": 40.7683133, "lon": -73.9440301 }, + { "lat": 40.7683154, "lon": -73.9440021 }, + { "lat": 40.7683221, "lon": -73.9439593 }, + { "lat": 40.7683319, "lon": -73.9439272 }, + { "lat": 40.7683484, "lon": -73.9439008 }, + { "lat": 40.7688227, "lon": -73.9434789 }, + { "lat": 40.7688922, "lon": -73.9433364 } + ], + "tags": { + "highway": "service", + "maxspeed": "10 mph" + } +}, +{ + "type": "way", + "id": 108236531, + "bounds": { + "minlat": 40.7845827, + "minlon": -73.9329792, + "maxlat": 40.7857970, + "maxlon": -73.9320421 + }, + "nodes": [ + 1242159752, + 3040306364, + 3040306370, + 1242159704 + ], + "geometry": [ + { "lat": 40.7845827, "lon": -73.9329792 }, + { "lat": 40.7856085, "lon": -73.9322126 }, + { "lat": 40.7857270, "lon": -73.9321233 }, + { "lat": 40.7857970, "lon": -73.9320421 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 108295741, + "bounds": { + "minlat": 40.7654590, + "minlon": -73.9475263, + "maxlat": 40.7658860, + "maxlon": -73.9470054 + }, + "nodes": [ + 1242825901, + 1242825852, + 1242825912, + 2885750795, + 1242826002, + 1242825734, + 1242825816, + 1242825795, + 2885750804, + 1242825831, + 1242825793, + 1242825963, + 1242825753, + 1242825735, + 1242825847, + 1242825913, + 1242825993, + 1242825983, + 1242825865, + 1242825940, + 1242825929, + 1242825901 + ], + "geometry": [ + { "lat": 40.7654590, "lon": -73.9472675 }, + { "lat": 40.7656018, "lon": -73.9471402 }, + { "lat": 40.7657614, "lon": -73.9470054 }, + { "lat": 40.7657802, "lon": -73.9470449 }, + { "lat": 40.7657977, "lon": -73.9470787 }, + { "lat": 40.7657840, "lon": -73.9470910 }, + { "lat": 40.7658327, "lon": -73.9471851 }, + { "lat": 40.7658464, "lon": -73.9471728 }, + { "lat": 40.7658632, "lon": -73.9472051 }, + { "lat": 40.7658762, "lon": -73.9472269 }, + { "lat": 40.7658860, "lon": -73.9472741 }, + { "lat": 40.7658281, "lon": -73.9473264 }, + { "lat": 40.7657570, "lon": -73.9474163 }, + { "lat": 40.7656626, "lon": -73.9474793 }, + { "lat": 40.7656189, "lon": -73.9475263 }, + { "lat": 40.7656016, "lon": -73.9474995 }, + { "lat": 40.7655722, "lon": -73.9474941 }, + { "lat": 40.7655479, "lon": -73.9474411 }, + { "lat": 40.7655635, "lon": -73.9474267 }, + { "lat": 40.7655133, "lon": -73.9473264 }, + { "lat": 40.7654940, "lon": -73.9473399 }, + { "lat": 40.7654590, "lon": -73.9472675 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 108296006, + "bounds": { + "minlat": 40.7648607, + "minlon": -73.9481982, + "maxlat": 40.7652197, + "maxlon": -73.9477382 + }, + "nodes": [ + 1242830400, + 1242830350, + 1242830438, + 1242830381, + 1242830416, + 1242830368, + 1242830429, + 1242830317, + 1242830371, + 1242830327, + 1242830411, + 5212861675, + 1242830342, + 1242830400 + ], + "geometry": [ + { "lat": 40.7649730, "lon": -73.9481436 }, + { "lat": 40.7649881, "lon": -73.9481298 }, + { "lat": 40.7650247, "lon": -73.9481982 }, + { "lat": 40.7650877, "lon": -73.9481499 }, + { "lat": 40.7651070, "lon": -73.9481687 }, + { "lat": 40.7651354, "lon": -73.9481713 }, + { "lat": 40.7651557, "lon": -73.9481512 }, + { "lat": 40.7651608, "lon": -73.9481244 }, + { "lat": 40.7651557, "lon": -73.9480909 }, + { "lat": 40.7652197, "lon": -73.9480292 }, + { "lat": 40.7650755, "lon": -73.9477382 }, + { "lat": 40.7650191, "lon": -73.9477863 }, + { "lat": 40.7648607, "lon": -73.9479249 }, + { "lat": 40.7649730, "lon": -73.9481436 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 108296488, + "bounds": { + "minlat": 40.7992940, + "minlon": -73.9211869, + "maxlat": 40.7996487, + "maxlon": -73.9208828 + }, + "nodes": [ + 1242838984, + 1242838982 + ], + "geometry": [ + { "lat": 40.7996487, "lon": -73.9211869 }, + { "lat": 40.7992940, "lon": -73.9208828 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 108296896, + "bounds": { + "minlat": 40.7518024, + "minlon": -73.9588521, + "maxlat": 40.7527831, + "maxlon": -73.9574444 + }, + "nodes": [ + 607954497, + 2461977154, + 12527049321, + 42425369, + 2463887274, + 2463887273, + 2141101258, + 593473292, + 2463887272, + 2141101256, + 2300353425 + ], + "geometry": [ + { "lat": 40.7527831, "lon": -73.9574444 }, + { "lat": 40.7526608, "lon": -73.9575767 }, + { "lat": 40.7526539, "lon": -73.9575872 }, + { "lat": 40.7526249, "lon": -73.9576315 }, + { "lat": 40.7524690, "lon": -73.9577951 }, + { "lat": 40.7523549, "lon": -73.9579554 }, + { "lat": 40.7521719, "lon": -73.9581569 }, + { "lat": 40.7520621, "lon": -73.9583585 }, + { "lat": 40.7519454, "lon": -73.9586129 }, + { "lat": 40.7518765, "lon": -73.9587148 }, + { "lat": 40.7518024, "lon": -73.9588521 } + ], + "tags": { + "highway": "service", + "name": "East Road", + "name_1": "Main Street", + "service": "driveway", + "source": "Bing", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East", + "tiger:name_base_1": "Main", + "tiger:name_type": "Rd", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 108297466, + "bounds": { + "minlat": 40.7550500, + "minlon": -73.9486512, + "maxlat": 40.7564301, + "maxlon": -73.9473115 + }, + "nodes": [ + 2629162213, + 6452721219, + 2471344567, + 2629156116, + 194600352, + 2471344565, + 6859408311 + ], + "geometry": [ + { "lat": 40.7564301, "lon": -73.9473115 }, + { "lat": 40.7563950, "lon": -73.9473543 }, + { "lat": 40.7562568, "lon": -73.9475225 }, + { "lat": 40.7558929, "lon": -73.9479064 }, + { "lat": 40.7557898, "lon": -73.9480076 }, + { "lat": 40.7556024, "lon": -73.9481692 }, + { "lat": 40.7550500, "lon": -73.9486512 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Vernon Boulevard" + } +}, +{ + "type": "way", + "id": 108297469, + "bounds": { + "minlat": 40.7481130, + "minlon": -73.9473607, + "maxlat": 40.7511112, + "maxlon": -73.9451879 + }, + "nodes": [ + 42825544, + 5034782277, + 8334173139, + 42825901, + 8334165779, + 9982750331, + 9982750332, + 276320206, + 9982750334, + 9982750333, + 8334173121, + 42825900, + 8334165777, + 6100731085, + 11524814898, + 8334165808, + 42818120, + 8334173146, + 8334165795, + 42804992 + ], + "geometry": [ + { "lat": 40.7481130, "lon": -73.9473607 }, + { "lat": 40.7482188, "lon": -73.9473246 }, + { "lat": 40.7487943, "lon": -73.9471345 }, + { "lat": 40.7488584, "lon": -73.9471114 }, + { "lat": 40.7489249, "lon": -73.9470882 }, + { "lat": 40.7490199, "lon": -73.9470575 }, + { "lat": 40.7490505, "lon": -73.9470457 }, + { "lat": 40.7490822, "lon": -73.9470311 }, + { "lat": 40.7491057, "lon": -73.9470158 }, + { "lat": 40.7491309, "lon": -73.9469958 }, + { "lat": 40.7494533, "lon": -73.9467158 }, + { "lat": 40.7495081, "lon": -73.9466666 }, + { "lat": 40.7495611, "lon": -73.9466190 }, + { "lat": 40.7501288, "lon": -73.9461340 }, + { "lat": 40.7505487, "lon": -73.9457699 }, + { "lat": 40.7505925, "lon": -73.9457317 }, + { "lat": 40.7506535, "lon": -73.9456600 }, + { "lat": 40.7507186, "lon": -73.9455863 }, + { "lat": 40.7510298, "lon": -73.9452665 }, + { "lat": 40.7511112, "lon": -73.9451879 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108297470, + "bounds": { + "minlat": 40.7530102, + "minlon": -73.9433786, + "maxlat": 40.7539980, + "maxlon": -73.9424300 + }, + "nodes": [ + 7746742283, + 7781294905, + 42825882 + ], + "geometry": [ + { "lat": 40.7530102, "lon": -73.9433786 }, + { "lat": 40.7539434, "lon": -73.9424821 }, + { "lat": 40.7539980, "lon": -73.9424300 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lit": "yes", + "name": "21st Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108297510, + "bounds": { + "minlat": 40.7511260, + "minlon": -73.9345418, + "maxlat": 40.7515694, + "maxlon": -73.9337792 + }, + "nodes": [ + 8073501866, + 9189020479, + 9189020482, + 9189020480, + 9189020481, + 42849753 + ], + "geometry": [ + { "lat": 40.7511260, "lon": -73.9345418 }, + { "lat": 40.7511735, "lon": -73.9344675 }, + { "lat": 40.7513535, "lon": -73.9341795 }, + { "lat": 40.7514348, "lon": -73.9340482 }, + { "lat": 40.7515082, "lon": -73.9339102 }, + { "lat": 40.7515694, "lon": -73.9337792 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 108297511, + "bounds": { + "minlat": 40.7496699, + "minlon": -73.9388976, + "maxlat": 40.7497953, + "maxlon": -73.9386164 + }, + "nodes": [ + 592643525, + 7739297997, + 5920758889 + ], + "geometry": [ + { "lat": 40.7497953, "lon": -73.9388976 }, + { "lat": 40.7496932, "lon": -73.9386683 }, + { "lat": 40.7496699, "lon": -73.9386164 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "name": "Queens Plaza South", + "oneway": "yes", + "parking:right": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108297872, + "bounds": { + "minlat": 40.7668703, + "minlon": -73.9448076, + "maxlat": 40.7669326, + "maxlon": -73.9444311 + }, + "nodes": [ + 1241986580, + 1241986560, + 1241986500, + 1241986495 + ], + "geometry": [ + { "lat": 40.7668703, "lon": -73.9448076 }, + { "lat": 40.7669102, "lon": -73.9445499 }, + { "lat": 40.7669190, "lon": -73.9444959 }, + { "lat": 40.7669326, "lon": -73.9444311 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 108298301, + "bounds": { + "minlat": 40.7637645, + "minlon": -73.9474566, + "maxlat": 40.7641887, + "maxlon": -73.9470454 + }, + "nodes": [ + 1242879146, + 5690561013, + 3838008667, + 9915286733, + 3838008668, + 9915286732, + 3838008666, + 9915286731, + 3838008665, + 9915286730, + 1242879147, + 9915286729, + 9915286728, + 3580758396 + ], + "geometry": [ + { "lat": 40.7641887, "lon": -73.9474566 }, + { "lat": 40.7641841, "lon": -73.9474470 }, + { "lat": 40.7640540, "lon": -73.9471806 }, + { "lat": 40.7640351, "lon": -73.9471453 }, + { "lat": 40.7640115, "lon": -73.9471134 }, + { "lat": 40.7639845, "lon": -73.9470880 }, + { "lat": 40.7639557, "lon": -73.9470695 }, + { "lat": 40.7639243, "lon": -73.9470558 }, + { "lat": 40.7638939, "lon": -73.9470468 }, + { "lat": 40.7638667, "lon": -73.9470454 }, + { "lat": 40.7638367, "lon": -73.9470471 }, + { "lat": 40.7638115, "lon": -73.9470536 }, + { "lat": 40.7637858, "lon": -73.9470633 }, + { "lat": 40.7637645, "lon": -73.9470762 } + ], + "tags": { + "covered": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "10 mph", + "name": "Roosevelt Island Bridge", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 108298303, + "bounds": { + "minlat": 40.7641887, + "minlon": -73.9475868, + "maxlat": 40.7642528, + "maxlon": -73.9474566 + }, + "nodes": [ + 1242879136, + 1242879146 + ], + "geometry": [ + { "lat": 40.7642528, "lon": -73.9475868 }, + { "lat": 40.7641887, "lon": -73.9474566 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "10 mph", + "name": "Roosevelt Island Bridge", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108298535, + "bounds": { + "minlat": 40.7526930, + "minlon": -73.9329100, + "maxlat": 40.7537870, + "maxlon": -73.9320220 + }, + "nodes": [ + 42849745, + 3569401944, + 10891946388, + 13702917038, + 10891946387, + 3569401916, + 42849749 + ], + "geometry": [ + { "lat": 40.7537870, "lon": -73.9320220 }, + { "lat": 40.7537220, "lon": -73.9320748 }, + { "lat": 40.7536662, "lon": -73.9321201 }, + { "lat": 40.7529795, "lon": -73.9326775 }, + { "lat": 40.7527741, "lon": -73.9328442 }, + { "lat": 40.7527500, "lon": -73.9328645 }, + { "lat": 40.7526930, "lon": -73.9329100 } + ], + "tags": { + "cycleway": "track", + "highway": "secondary", + "lanes": "2", + "maxheight": "12'6\"", + "name": "31st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108298536, + "bounds": { + "minlat": 40.7639012, + "minlon": -73.9206020, + "maxlat": 40.7665256, + "maxlon": -73.9149982 + }, + "nodes": [ + 42874056, + 6406731548, + 6406731678, + 3570250020, + 42874057, + 3570250018, + 5118688296, + 5118688298, + 3570250011, + 42874058, + 3570250009, + 3570250003, + 42866652, + 3570250000, + 5538998203, + 5118688294, + 3570249994, + 42874059, + 3570249992, + 3570249986, + 42874060, + 3570249984, + 4925171902, + 3570249978, + 42841755, + 3570249976, + 3807166495, + 4942206601, + 3570249968, + 42874062 + ], + "geometry": [ + { "lat": 40.7665256, "lon": -73.9206020 }, + { "lat": 40.7664879, "lon": -73.9205203 }, + { "lat": 40.7662643, "lon": -73.9200373 }, + { "lat": 40.7661892, "lon": -73.9198830 }, + { "lat": 40.7661449, "lon": -73.9197922 }, + { "lat": 40.7661079, "lon": -73.9197163 }, + { "lat": 40.7660124, "lon": -73.9195073 }, + { "lat": 40.7658946, "lon": -73.9192555 }, + { "lat": 40.7658060, "lon": -73.9190675 }, + { "lat": 40.7657719, "lon": -73.9189932 }, + { "lat": 40.7657398, "lon": -73.9189225 }, + { "lat": 40.7654389, "lon": -73.9182592 }, + { "lat": 40.7654066, "lon": -73.9181900 }, + { "lat": 40.7653717, "lon": -73.9181151 }, + { "lat": 40.7652558, "lon": -73.9178739 }, + { "lat": 40.7651609, "lon": -73.9176756 }, + { "lat": 40.7650596, "lon": -73.9174631 }, + { "lat": 40.7650290, "lon": -73.9173999 }, + { "lat": 40.7649932, "lon": -73.9173267 }, + { "lat": 40.7646775, "lon": -73.9166648 }, + { "lat": 40.7646430, "lon": -73.9165887 }, + { "lat": 40.7646133, "lon": -73.9165232 }, + { "lat": 40.7645394, "lon": -73.9163656 }, + { "lat": 40.7643058, "lon": -73.9158654 }, + { "lat": 40.7642684, "lon": -73.9157851 }, + { "lat": 40.7642364, "lon": -73.9157165 }, + { "lat": 40.7641810, "lon": -73.9155956 }, + { "lat": 40.7640009, "lon": -73.9152120 }, + { "lat": 40.7639463, "lon": -73.9150949 }, + { "lat": 40.7639012, "lon": -73.9149982 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "30th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108298537, + "bounds": { + "minlat": 40.7717760, + "minlon": -73.9244410, + "maxlat": 40.7739655, + "maxlon": -73.9227995 + }, + "nodes": [ + 42920850, + 6452985344, + 6877115183, + 2883544423, + 9947294579, + 7791548113, + 42828378, + 7791548120, + 2447553704, + 6452989053, + 42898265 + ], + "geometry": [ + { "lat": 40.7717760, "lon": -73.9244410 }, + { "lat": 40.7718609, "lon": -73.9243760 }, + { "lat": 40.7724833, "lon": -73.9238992 }, + { "lat": 40.7730862, "lon": -73.9234374 }, + { "lat": 40.7731340, "lon": -73.9234008 }, + { "lat": 40.7734319, "lon": -73.9231726 }, + { "lat": 40.7734640, "lon": -73.9231480 }, + { "lat": 40.7735140, "lon": -73.9231097 }, + { "lat": 40.7738617, "lon": -73.9228434 }, + { "lat": 40.7738755, "lon": -73.9228376 }, + { "lat": 40.7739655, "lon": -73.9227995 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "23rd Street", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108298538, + "bounds": { + "minlat": 40.7692825, + "minlon": -73.9264763, + "maxlat": 40.7713537, + "maxlon": -73.9247803 + }, + "nodes": [ + 42874036, + 6452971018, + 2883544412, + 6452971011, + 42855147, + 6452971008, + 2883544414, + 6452995008, + 42833185, + 6452995010, + 7768245668, + 11420216945, + 42888723, + 11420216946, + 6452985338, + 42900309 + ], + "geometry": [ + { "lat": 40.7692825, "lon": -73.9264763 }, + { "lat": 40.7693538, "lon": -73.9264157 }, + { "lat": 40.7695930, "lon": -73.9262129 }, + { "lat": 40.7698576, "lon": -73.9260048 }, + { "lat": 40.7699099, "lon": -73.9259637 }, + { "lat": 40.7699632, "lon": -73.9259187 }, + { "lat": 40.7702053, "lon": -73.9257147 }, + { "lat": 40.7704612, "lon": -73.9255064 }, + { "lat": 40.7705086, "lon": -73.9254679 }, + { "lat": 40.7705690, "lon": -73.9254187 }, + { "lat": 40.7708539, "lon": -73.9251869 }, + { "lat": 40.7709679, "lon": -73.9250942 }, + { "lat": 40.7710102, "lon": -73.9250598 }, + { "lat": 40.7710684, "lon": -73.9250122 }, + { "lat": 40.7712857, "lon": -73.9248357 }, + { "lat": 40.7713537, "lon": -73.9247803 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "23rd Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 108298539, + "bounds": { + "minlat": 40.7686366, + "minlon": -73.9264763, + "maxlat": 40.7692825, + "maxlon": -73.9250866 + }, + "nodes": [ + 42874036, + 6452971017, + 5538998201, + 6452895156, + 42818504 + ], + "geometry": [ + { "lat": 40.7692825, "lon": -73.9264763 }, + { "lat": 40.7692470, "lon": -73.9264006 }, + { "lat": 40.7687548, "lon": -73.9253499 }, + { "lat": 40.7686781, "lon": -73.9251761 }, + { "lat": 40.7686366, "lon": -73.9250866 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "name": "30th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108298540, + "bounds": { + "minlat": 40.7736047, + "minlon": -73.9310519, + "maxlat": 40.7739765, + "maxlon": -73.9299114 + }, + "nodes": [ + 42811439, + 42811443, + 7733783508, + 7733683729, + 7745197943 + ], + "geometry": [ + { "lat": 40.7739765, "lon": -73.9310519 }, + { "lat": 40.7738427, "lon": -73.9306414 }, + { "lat": 40.7738070, "lon": -73.9305318 }, + { "lat": 40.7736223, "lon": -73.9299653 }, + { "lat": 40.7736047, "lon": -73.9299114 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "27th Avenue" + } +}, +{ + "type": "way", + "id": 108299040, + "bounds": { + "minlat": 40.7632907, + "minlon": -73.9472582, + "maxlat": 40.7638534, + "maxlon": -73.9467577 + }, + "nodes": [ + 42426775, + 8265114804, + 1241986471 + ], + "geometry": [ + { "lat": 40.7632907, "lon": -73.9472582 }, + { "lat": 40.7634561, "lon": -73.9471111 }, + { "lat": 40.7638534, "lon": -73.9467577 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "East Road", + "name_1": "East Road" + } +}, +{ + "type": "way", + "id": 108299273, + "bounds": { + "minlat": 40.7666402, + "minlon": -73.9446836, + "maxlat": 40.7669326, + "maxlon": -73.9443499 + }, + "nodes": [ + 10752086827, + 1241986643, + 1241986532, + 1241986484, + 9913669060, + 1241986687, + 1241986678, + 9913669061, + 1241986487, + 1241986520, + 1241986586, + 9913669062, + 1241986451, + 9913669063, + 1241986473, + 1241986557, + 9913669066, + 1241986495 + ], + "geometry": [ + { "lat": 40.7666908, "lon": -73.9446836 }, + { "lat": 40.7666787, "lon": -73.9446668 }, + { "lat": 40.7666635, "lon": -73.9446423 }, + { "lat": 40.7666510, "lon": -73.9446102 }, + { "lat": 40.7666422, "lon": -73.9445740 }, + { "lat": 40.7666402, "lon": -73.9445364 }, + { "lat": 40.7666405, "lon": -73.9444986 }, + { "lat": 40.7666488, "lon": -73.9444593 }, + { "lat": 40.7666626, "lon": -73.9444219 }, + { "lat": 40.7666817, "lon": -73.9443932 }, + { "lat": 40.7667064, "lon": -73.9443721 }, + { "lat": 40.7667342, "lon": -73.9443577 }, + { "lat": 40.7667621, "lon": -73.9443499 }, + { "lat": 40.7667878, "lon": -73.9443499 }, + { "lat": 40.7668126, "lon": -73.9443584 }, + { "lat": 40.7668423, "lon": -73.9443752 }, + { "lat": 40.7668643, "lon": -73.9443888 }, + { "lat": 40.7669326, "lon": -73.9444311 } + ], + "tags": { + "highway": "residential", + "name": "East Road", + "oneway": "yes", + "surface": "paving_stones", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 108305981, + "bounds": { + "minlat": 40.7691837, + "minlon": -73.9236279, + "maxlat": 40.7704322, + "maxlon": -73.9221663 + }, + "nodes": [ + 42818490, + 6452895169, + 3020369556, + 42872073, + 6228232691, + 11420216944, + 42817383, + 11420216936, + 6453012679, + 42833248 + ], + "geometry": [ + { "lat": 40.7704322, "lon": -73.9236279 }, + { "lat": 40.7703766, "lon": -73.9235627 }, + { "lat": 40.7699206, "lon": -73.9230305 }, + { "lat": 40.7698510, "lon": -73.9229480 }, + { "lat": 40.7696610, "lon": -73.9227275 }, + { "lat": 40.7694498, "lon": -73.9224824 }, + { "lat": 40.7694083, "lon": -73.9224342 }, + { "lat": 40.7693626, "lon": -73.9223790 }, + { "lat": 40.7692350, "lon": -73.9222333 }, + { "lat": 40.7691837, "lon": -73.9221663 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Newtown Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108305983, + "bounds": { + "minlat": 40.7686366, + "minlon": -73.9250866, + "maxlat": 40.7704322, + "maxlon": -73.9236279 + }, + "nodes": [ + 42818490, + 6452895167, + 11420382890, + 42818493, + 11420382896, + 8626128280, + 11420382897, + 42818499, + 11420382885, + 6452895155, + 42818504 + ], + "geometry": [ + { "lat": 40.7704322, "lon": -73.9236279 }, + { "lat": 40.7703677, "lon": -73.9236857 }, + { "lat": 40.7699375, "lon": -73.9240522 }, + { "lat": 40.7698734, "lon": -73.9241068 }, + { "lat": 40.7698264, "lon": -73.9241443 }, + { "lat": 40.7696031, "lon": -73.9243227 }, + { "lat": 40.7693201, "lon": -73.9245489 }, + { "lat": 40.7692590, "lon": -73.9245977 }, + { "lat": 40.7692104, "lon": -73.9246346 }, + { "lat": 40.7687172, "lon": -73.9250366 }, + { "lat": 40.7686366, "lon": -73.9250866 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108305984, + "bounds": { + "minlat": 40.7657446, + "minlon": -73.9264504, + "maxlat": 40.7667528, + "maxlon": -73.9259732 + }, + "nodes": [ + 42818511, + 4991520420, + 7661754162, + 42818515 + ], + "geometry": [ + { "lat": 40.7667528, "lon": -73.9259732 }, + { "lat": 40.7666976, "lon": -73.9259996 }, + { "lat": 40.7658301, "lon": -73.9264116 }, + { "lat": 40.7657446, "lon": -73.9264504 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "lanes": "1", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108311917, + "bounds": { + "minlat": 40.7642528, + "minlon": -73.9475868, + "maxlat": 40.7643853, + "maxlon": -73.9474722 + }, + "nodes": [ + 1242879136, + 3580758413, + 5212861654 + ], + "geometry": [ + { "lat": 40.7642528, "lon": -73.9475868 }, + { "lat": 40.7642855, "lon": -73.9475564 }, + { "lat": 40.7643853, "lon": -73.9474722 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "asphalt", + "turn:lanes:backward": "left;through" + } +}, +{ + "type": "way", + "id": 108314576, + "bounds": { + "minlat": 40.7620721, + "minlon": -73.9444123, + "maxlat": 40.7627807, + "maxlon": -73.9424065 + }, + "nodes": [ + 3785702958, + 3569402526, + 2799403759, + 3785702964, + 2799403760, + 9915261990, + 42938521, + 42938516, + 9915261989, + 3785702965, + 42938511, + 3785702966, + 42938508, + 3785702967, + 3785702968, + 9915261988, + 1242994591, + 3785702973, + 3785702972, + 3785702971, + 42938497, + 3785702970, + 42938492, + 3785702969, + 42938487, + 9915261987, + 9915261986, + 9915261985, + 3785702962, + 3785702963 + ], + "geometry": [ + { "lat": 40.7620839, "lon": -73.9424065 }, + { "lat": 40.7621274, "lon": -73.9425287 }, + { "lat": 40.7625215, "lon": -73.9436266 }, + { "lat": 40.7625749, "lon": -73.9437698 }, + { "lat": 40.7626224, "lon": -73.9438875 }, + { "lat": 40.7626654, "lon": -73.9439885 }, + { "lat": 40.7627113, "lon": -73.9440924 }, + { "lat": 40.7627620, "lon": -73.9442087 }, + { "lat": 40.7627726, "lon": -73.9442398 }, + { "lat": 40.7627785, "lon": -73.9442691 }, + { "lat": 40.7627807, "lon": -73.9442974 }, + { "lat": 40.7627778, "lon": -73.9443245 }, + { "lat": 40.7627691, "lon": -73.9443480 }, + { "lat": 40.7627549, "lon": -73.9443697 }, + { "lat": 40.7627422, "lon": -73.9443835 }, + { "lat": 40.7627233, "lon": -73.9443980 }, + { "lat": 40.7627080, "lon": -73.9444076 }, + { "lat": 40.7626903, "lon": -73.9444123 }, + { "lat": 40.7626719, "lon": -73.9444121 }, + { "lat": 40.7626545, "lon": -73.9444106 }, + { "lat": 40.7626367, "lon": -73.9444038 }, + { "lat": 40.7626200, "lon": -73.9443950 }, + { "lat": 40.7626036, "lon": -73.9443808 }, + { "lat": 40.7625883, "lon": -73.9443613 }, + { "lat": 40.7625750, "lon": -73.9443362 }, + { "lat": 40.7624976, "lon": -73.9441518 }, + { "lat": 40.7624358, "lon": -73.9440026 }, + { "lat": 40.7623842, "lon": -73.9438725 }, + { "lat": 40.7622211, "lon": -73.9434328 }, + { "lat": 40.7620721, "lon": -73.9430791 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "36th Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 108314577, + "bounds": { + "minlat": 40.7621895, + "minlon": -73.9440984, + "maxlat": 40.7625924, + "maxlon": -73.9430801 + }, + "nodes": [ + 42938502, + 3785702975, + 3785702974, + 3785702960, + 3785702961 + ], + "geometry": [ + { "lat": 40.7625924, "lon": -73.9440984 }, + { "lat": 40.7624993, "lon": -73.9438785 }, + { "lat": 40.7624072, "lon": -73.9436470 }, + { "lat": 40.7623308, "lon": -73.9434413 }, + { "lat": 40.7621895, "lon": -73.9430801 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Roosevelt Island Bridge", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 108321051, + "bounds": { + "minlat": 40.7793515, + "minlon": -73.9067461, + "maxlat": 40.7796789, + "maxlon": -73.9062477 + }, + "nodes": [ + 2295056673, + 7779193115, + 3778345287 + ], + "geometry": [ + { "lat": 40.7793515, "lon": -73.9067461 }, + { "lat": 40.7796287, "lon": -73.9063239 }, + { "lat": 40.7796789, "lon": -73.9062477 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "31st Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "31st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 108325085, + "bounds": { + "minlat": 40.7883551, + "minlon": -73.9103079, + "maxlat": 40.7891824, + "maxlon": -73.9093074 + }, + "nodes": [ + 5622854060, + 5622854057, + 5622854055, + 1243119501 + ], + "geometry": [ + { "lat": 40.7891824, "lon": -73.9093074 }, + { "lat": 40.7888301, "lon": -73.9097319 }, + { "lat": 40.7887669, "lon": -73.9098102 }, + { "lat": 40.7883551, "lon": -73.9103079 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 108329835, + "bounds": { + "minlat": 40.7926712, + "minlon": -73.9218258, + "maxlat": 40.7930247, + "maxlon": -73.9194934 + }, + "nodes": [ + 9323739413, + 3039865343, + 3039865342, + 1243166075, + 3039386963, + 3039386964, + 2054405606, + 3039865345, + 3039865344, + 1243166071, + 3039386965, + 2054405611, + 3039865228 + ], + "geometry": [ + { "lat": 40.7929328, "lon": -73.9218258 }, + { "lat": 40.7929215, "lon": -73.9218041 }, + { "lat": 40.7927598, "lon": -73.9215003 }, + { "lat": 40.7927333, "lon": -73.9214418 }, + { "lat": 40.7927150, "lon": -73.9213725 }, + { "lat": 40.7927130, "lon": -73.9213215 }, + { "lat": 40.7927221, "lon": -73.9212585 }, + { "lat": 40.7927390, "lon": -73.9212091 }, + { "lat": 40.7928509, "lon": -73.9208673 }, + { "lat": 40.7930148, "lon": -73.9203695 }, + { "lat": 40.7930236, "lon": -73.9203304 }, + { "lat": 40.7930247, "lon": -73.9202768 }, + { "lat": 40.7926712, "lon": -73.9194934 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 108331532, + "bounds": { + "minlat": 40.7804179, + "minlon": -73.9111537, + "maxlat": 40.7834525, + "maxlon": -73.9050871 + }, + "nodes": [ + 1243196536, + 7833236371, + 1243196557, + 5622056451, + 5622072716, + 1243196555, + 1243196461, + 5622072709, + 5622072713, + 5622072714, + 5622072712, + 5622881183, + 7830095153, + 5622881188, + 5622881194, + 1243057027 + ], + "geometry": [ + { "lat": 40.7834525, "lon": -73.9111537 }, + { "lat": 40.7834332, "lon": -73.9111268 }, + { "lat": 40.7825601, "lon": -73.9099089 }, + { "lat": 40.7825387, "lon": -73.9098793 }, + { "lat": 40.7816621, "lon": -73.9086700 }, + { "lat": 40.7816318, "lon": -73.9086257 }, + { "lat": 40.7808741, "lon": -73.9076349 }, + { "lat": 40.7804179, "lon": -73.9069848 }, + { "lat": 40.7804189, "lon": -73.9067123 }, + { "lat": 40.7806937, "lon": -73.9062597 }, + { "lat": 40.7807206, "lon": -73.9061664 }, + { "lat": 40.7807313, "lon": -73.9061274 }, + { "lat": 40.7807981, "lon": -73.9058846 }, + { "lat": 40.7809171, "lon": -73.9054332 }, + { "lat": 40.7809317, "lon": -73.9053707 }, + { "lat": 40.7807606, "lon": -73.9050871 } + ], + "tags": { + "access": "private", + "bicycle": "private", + "highway": "service", + "name": "19th Avenue", + "surface": "asphalt", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 109337495, + "bounds": { + "minlat": 40.7047902, + "minlon": -74.0096715, + "maxlat": 40.7049576, + "maxlon": -74.0089667 + }, + "nodes": [ + 8276468691, + 8276468708, + 1251958256 + ], + "geometry": [ + { "lat": 40.7047902, "lon": -74.0096715 }, + { "lat": 40.7048665, "lon": -74.0093503 }, + { "lat": 40.7049576, "lon": -74.0089667 } + ], + "tags": { + "ele": "3", + "gnis:feature_id": "2057421", + "highway": "pedestrian", + "lit": "yes", + "name": "Hanover Square", + "name:etymology:wikidata": "Q157217", + "surface": "paving_stones", + "wikidata": "Q34833410" + } +}, +{ + "type": "way", + "id": 109819879, + "bounds": { + "minlat": 40.8063508, + "minlon": -73.9901033, + "maxlat": 40.8078062, + "maxlon": -73.9869351 + }, + "nodes": [ + 103137031, + 7672269039, + 3477651075, + 3480369179, + 3480369178, + 3480369177, + 3480369176, + 3480371629, + 3480371628, + 3480371627, + 3480371626, + 3480371625, + 3480371624, + 3480371623, + 9055811834, + 1256269849, + 3480364154, + 1256269854 + ], + "geometry": [ + { "lat": 40.8078062, "lon": -73.9901033 }, + { "lat": 40.8077838, "lon": -73.9900533 }, + { "lat": 40.8077100, "lon": -73.9898886 }, + { "lat": 40.8075349, "lon": -73.9894500 }, + { "lat": 40.8074410, "lon": -73.9892149 }, + { "lat": 40.8073577, "lon": -73.9890062 }, + { "lat": 40.8072856, "lon": -73.9888257 }, + { "lat": 40.8072065, "lon": -73.9886276 }, + { "lat": 40.8071297, "lon": -73.9884353 }, + { "lat": 40.8070575, "lon": -73.9882545 }, + { "lat": 40.8069770, "lon": -73.9880528 }, + { "lat": 40.8068900, "lon": -73.9878351 }, + { "lat": 40.8068105, "lon": -73.9876359 }, + { "lat": 40.8067365, "lon": -73.9874505 }, + { "lat": 40.8066882, "lon": -73.9873297 }, + { "lat": 40.8066539, "lon": -73.9872438 }, + { "lat": 40.8066108, "lon": -73.9871693 }, + { "lat": 40.8063508, "lon": -73.9869351 } + ], + "tags": { + "highway": "residential", + "name": "Penny Lane" + } +}, +{ + "type": "way", + "id": 109819880, + "bounds": { + "minlat": 40.8060304, + "minlon": -73.9869351, + "maxlat": 40.8063508, + "maxlon": -73.9865570 + }, + "nodes": [ + 1256269855, + 3480361730, + 1256269854 + ], + "geometry": [ + { "lat": 40.8060304, "lon": -73.9865570 }, + { "lat": 40.8060689, "lon": -73.9866305 }, + { "lat": 40.8063508, "lon": -73.9869351 } + ], + "tags": { + "highway": "service", + "name": "City Place" + } +}, +{ + "type": "way", + "id": 110299710, + "bounds": { + "minlat": 40.7497670, + "minlon": -73.9075090, + "maxlat": 40.7534065, + "maxlon": -73.9058946 + }, + "nodes": [ + 42876815, + 11643653062, + 3569893195, + 3569893196, + 42815937, + 3569893197, + 42900246, + 42896704, + 11643653201, + 42883034, + 5921060985, + 8088629334, + 6453157767, + 7762260253 + ], + "geometry": [ + { "lat": 40.7497670, "lon": -73.9075090 }, + { "lat": 40.7498118, "lon": -73.9074880 }, + { "lat": 40.7507553, "lon": -73.9070458 }, + { "lat": 40.7507766, "lon": -73.9070356 }, + { "lat": 40.7508530, "lon": -73.9070000 }, + { "lat": 40.7509431, "lon": -73.9069595 }, + { "lat": 40.7512140, "lon": -73.9068380 }, + { "lat": 40.7521839, "lon": -73.9064162 }, + { "lat": 40.7528109, "lon": -73.9061253 }, + { "lat": 40.7529239, "lon": -73.9060729 }, + { "lat": 40.7530204, "lon": -73.9060305 }, + { "lat": 40.7532599, "lon": -73.9059209 }, + { "lat": 40.7532926, "lon": -73.9059084 }, + { "lat": 40.7534065, "lon": -73.9058946 } + ], + "tags": { + "highway": "residential", + "name": "55th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "55th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_left_1": "11377", + "tiger:zip_left_2": "11377", + "tiger:zip_right": "11377", + "tiger:zip_right_1": "11377", + "tiger:zip_right_2": "11377" + } +}, +{ + "type": "way", + "id": 110299713, + "bounds": { + "minlat": 40.7493370, + "minlon": -73.9066980, + "maxlat": 40.7535044, + "maxlon": -73.9049019 + }, + "nodes": [ + 7762260252, + 9188727823, + 2446071892, + 9188727822, + 9188727821, + 12375203799, + 5867077878, + 2446071896, + 11643674622, + 42855368, + 2446071898, + 5921060987, + 2446071900, + 42815939, + 2446071902, + 9677940576, + 11643653074, + 42855374 + ], + "geometry": [ + { "lat": 40.7535044, "lon": -73.9049072 }, + { "lat": 40.7534369, "lon": -73.9049019 }, + { "lat": 40.7533949, "lon": -73.9049045 }, + { "lat": 40.7533505, "lon": -73.9049143 }, + { "lat": 40.7533143, "lon": -73.9049280 }, + { "lat": 40.7532107, "lon": -73.9049762 }, + { "lat": 40.7527047, "lon": -73.9052114 }, + { "lat": 40.7526962, "lon": -73.9052150 }, + { "lat": 40.7526715, "lon": -73.9052234 }, + { "lat": 40.7525676, "lon": -73.9052616 }, + { "lat": 40.7524610, "lon": -73.9052997 }, + { "lat": 40.7507527, "lon": -73.9060664 }, + { "lat": 40.7507100, "lon": -73.9060829 }, + { "lat": 40.7506299, "lon": -73.9061242 }, + { "lat": 40.7505490, "lon": -73.9061571 }, + { "lat": 40.7494409, "lon": -73.9066516 }, + { "lat": 40.7494046, "lon": -73.9066678 }, + { "lat": 40.7493370, "lon": -73.9066980 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "56th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 110489637, + "bounds": { + "minlat": 40.7422336, + "minlon": -73.9998503, + "maxlat": 40.7434291, + "maxlon": -73.9970019 + }, + "nodes": [ + 42427381, + 10171337725, + 12181309658, + 9683231695, + 42427374 + ], + "geometry": [ + { "lat": 40.7434291, "lon": -73.9998503 }, + { "lat": 40.7433793, "lon": -73.9997125 }, + { "lat": 40.7423212, "lon": -73.9971852 }, + { "lat": 40.7422948, "lon": -73.9971252 }, + { "lat": 40.7422336, "lon": -73.9970019 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 20th Street", + "name:ru": "Западная 20-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 110489638, + "bounds": { + "minlat": 40.7352285, + "minlon": -73.9822654, + "maxlat": 40.7360238, + "maxlon": -73.9803927 + }, + "nodes": [ + 42439178, + 10166118080, + 10170878667, + 10170878668, + 6804917583 + ], + "geometry": [ + { "lat": 40.7360238, "lon": -73.9822654 }, + { "lat": 40.7359717, "lon": -73.9821518 }, + { "lat": 40.7356678, "lon": -73.9814324 }, + { "lat": 40.7353946, "lon": -73.9807934 }, + { "lat": 40.7352285, "lon": -73.9803927 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 110542344, + "bounds": { + "minlat": 40.7193368, + "minlon": -73.9859139, + "maxlat": 40.7204937, + "maxlon": -73.9853164 + }, + "nodes": [ + 42432073, + 8231900988, + 8231900977, + 42437078 + ], + "geometry": [ + { "lat": 40.7204937, "lon": -73.9853164 }, + { "lat": 40.7204429, "lon": -73.9853426 }, + { "lat": 40.7193928, "lon": -73.9858846 }, + { "lat": 40.7193368, "lon": -73.9859139 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Suffolk Street", + "name:etymology:wikidata": "Q23111", + "name:ko": "서퍽 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 110542345, + "bounds": { + "minlat": 40.7181153, + "minlon": -73.9865259, + "maxlat": 40.7193368, + "maxlon": -73.9859139 + }, + "nodes": [ + 42437078, + 8231900978, + 12195869758, + 5296792756, + 486868138 + ], + "geometry": [ + { "lat": 40.7193368, "lon": -73.9859139 }, + { "lat": 40.7192875, "lon": -73.9859390 }, + { "lat": 40.7182701, "lon": -73.9864711 }, + { "lat": 40.7182299, "lon": -73.9864854 }, + { "lat": 40.7181153, "lon": -73.9865259 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Suffolk Street", + "name:etymology:wikidata": "Q23111", + "name:ko": "서퍽 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 110777346, + "bounds": { + "minlat": 40.7146073, + "minlon": -73.9925918, + "maxlat": 40.7150484, + "maxlon": -73.9923757 + }, + "nodes": [ + 42437970, + 8750047668, + 9525441201, + 7480410402, + 42437967 + ], + "geometry": [ + { "lat": 40.7146073, "lon": -73.9925918 }, + { "lat": 40.7148291, "lon": -73.9924832 }, + { "lat": 40.7149240, "lon": -73.9924372 }, + { "lat": 40.7149754, "lon": -73.9924119 }, + { "lat": 40.7150484, "lon": -73.9923757 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 110853728, + "bounds": { + "minlat": 40.7104336, + "minlon": -73.9846564, + "maxlat": 40.7104831, + "maxlon": -73.9846461 + }, + "nodes": [ + 436764933, + 588455698 + ], + "geometry": [ + { "lat": 40.7104336, "lon": -73.9846461 }, + { "lat": 40.7104831, "lon": -73.9846564 } + ], + "tags": { + "bicycle": "designated", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 110854073, + "bounds": { + "minlat": 40.7212346, + "minlon": -73.9885157, + "maxlat": 40.7214626, + "maxlon": -73.9877644 + }, + "nodes": [ + 42432063, + 8231901005, + 5796774291, + 8231901003, + 42432066 + ], + "geometry": [ + { "lat": 40.7214626, "lon": -73.9885157 }, + { "lat": 40.7214436, "lon": -73.9884530 }, + { "lat": 40.7214217, "lon": -73.9883806 }, + { "lat": 40.7212541, "lon": -73.9878286 }, + { "lat": 40.7212346, "lon": -73.9877644 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (mo-su 12:00-21:00; Th-Sa 12:00-23:00)", + "motor_vehicle:conditional": "destination @ (mo-su 12:00-21:00; Th-Sa 12:00-23:00)", + "name": "Stanton Street", + "name:ko": "스탠턴 스트리트", + "name:ru": "Стэнтон-стрит", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7600270", + "wikipedia": "en:Stanton Street" + } +}, +{ + "type": "way", + "id": 110985802, + "bounds": { + "minlat": 40.8511085, + "minlon": -73.9332260, + "maxlat": 40.8522130, + "maxlon": -73.9306027 + }, + "nodes": [ + 42454102, + 9566869964, + 7134871407, + 5403873744, + 42433075, + 5403873743, + 5549743255, + 9563795520, + 42449644 + ], + "geometry": [ + { "lat": 40.8511085, "lon": -73.9306027 }, + { "lat": 40.8511525, "lon": -73.9307068 }, + { "lat": 40.8514763, "lon": -73.9314735 }, + { "lat": 40.8516455, "lon": -73.9318751 }, + { "lat": 40.8516960, "lon": -73.9319950 }, + { "lat": 40.8517521, "lon": -73.9321285 }, + { "lat": 40.8520696, "lon": -73.9328847 }, + { "lat": 40.8521793, "lon": -73.9331458 }, + { "lat": 40.8522130, "lon": -73.9332260 } + ], + "tags": { + "highway": "residential", + "name": "West 185th Street", + "name_1": "West 185 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "185th", + "tiger:name_base_1": "185", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 111826111, + "bounds": { + "minlat": 40.7155607, + "minlon": -73.9917920, + "maxlat": 40.7161764, + "maxlon": -73.9897482 + }, + "nodes": [ + 42437965, + 5863593968, + 8231954823, + 42445620, + 8231954820, + 8231942797, + 42440682, + 8231942794, + 8231942792, + 42445617 + ], + "geometry": [ + { "lat": 40.7161764, "lon": -73.9917920 }, + { "lat": 40.7161531, "lon": -73.9917146 }, + { "lat": 40.7160501, "lon": -73.9913727 }, + { "lat": 40.7160318, "lon": -73.9913119 }, + { "lat": 40.7160101, "lon": -73.9912399 }, + { "lat": 40.7158241, "lon": -73.9906225 }, + { "lat": 40.7158050, "lon": -73.9905591 }, + { "lat": 40.7157857, "lon": -73.9904952 }, + { "lat": 40.7155966, "lon": -73.9898674 }, + { "lat": 40.7155607, "lon": -73.9897482 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Hester Street", + "name:ko": "헤스터 스트리트", + "name:ru": "Хестер-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5746336", + "wikipedia": "en:Hester Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 112116234, + "bounds": { + "minlat": 40.7208073, + "minlon": -73.9939324, + "maxlat": 40.7223827, + "maxlon": -73.9933264 + }, + "nodes": [ + 42437608, + 8231909750, + 12196062131, + 8231909718, + 42437114, + 8231909719, + 8821681997, + 8231909724, + 42437605, + 8231909725, + 4202950102 + ], + "geometry": [ + { "lat": 40.7223827, "lon": -73.9933264 }, + { "lat": 40.7223414, "lon": -73.9933414 }, + { "lat": 40.7217473, "lon": -73.9935608 }, + { "lat": 40.7217029, "lon": -73.9935766 }, + { "lat": 40.7216557, "lon": -73.9935947 }, + { "lat": 40.7216073, "lon": -73.9936107 }, + { "lat": 40.7210754, "lon": -73.9938220 }, + { "lat": 40.7210302, "lon": -73.9938416 }, + { "lat": 40.7209753, "lon": -73.9938646 }, + { "lat": 40.7209298, "lon": -73.9938841 }, + { "lat": 40.7208073, "lon": -73.9939324 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 112116235, + "bounds": { + "minlat": 40.7188259, + "minlon": -73.9867535, + "maxlat": 40.7195914, + "maxlon": -73.9842294 + }, + "nodes": [ + 42437071, + 8310245528, + 42437074, + 8310245531, + 8231900976, + 42437078, + 8231900979, + 8231900980, + 42437082 + ], + "geometry": [ + { "lat": 40.7188259, "lon": -73.9842294 }, + { "lat": 40.7190632, "lon": -73.9850120 }, + { "lat": 40.7190825, "lon": -73.9850756 }, + { "lat": 40.7191012, "lon": -73.9851373 }, + { "lat": 40.7193165, "lon": -73.9858471 }, + { "lat": 40.7193368, "lon": -73.9859139 }, + { "lat": 40.7193568, "lon": -73.9859799 }, + { "lat": 40.7195689, "lon": -73.9866791 }, + { "lat": 40.7195914, "lon": -73.9867535 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "name:ko": "리빙턴 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 112168173, + "bounds": { + "minlat": 40.7143917, + "minlon": -73.9305759, + "maxlat": 40.7144439, + "maxlon": -73.9303780 + }, + "nodes": [ + 5330321644, + 8842579375, + 8842579367 + ], + "geometry": [ + { "lat": 40.7144439, "lon": -73.9305759 }, + { "lat": 40.7144147, "lon": -73.9304800 }, + { "lat": 40.7143917, "lon": -73.9303780 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 112168174, + "bounds": { + "minlat": 40.7140101, + "minlon": -73.9245596, + "maxlat": 40.7140364, + "maxlon": -73.9239340 + }, + "nodes": [ + 42477655, + 5330321649 + ], + "geometry": [ + { "lat": 40.7140101, "lon": -73.9239340 }, + { "lat": 40.7140364, "lon": -73.9245596 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Metropolitan Avenue", + "oneway": "yes", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 112168183, + "bounds": { + "minlat": 40.7077860, + "minlon": -73.9320720, + "maxlat": 40.7094124, + "maxlon": -73.9218981 + }, + "nodes": [ + 3325564426, + 9744131239, + 9744131244, + 42474010, + 9744131243, + 9744109114, + 42496398, + 9744109113, + 42496394, + 2133350141, + 9767625197, + 42496391, + 9767625195, + 10003499550, + 42496387, + 9959635947, + 10003499555, + 6789842929, + 9767625244, + 42496384 + ], + "geometry": [ + { "lat": 40.7094021, "lon": -73.9218981 }, + { "lat": 40.7094124, "lon": -73.9220191 }, + { "lat": 40.7093501, "lon": -73.9223841 }, + { "lat": 40.7093330, "lon": -73.9224830 }, + { "lat": 40.7093165, "lon": -73.9225856 }, + { "lat": 40.7090918, "lon": -73.9240611 }, + { "lat": 40.7090654, "lon": -73.9241840 }, + { "lat": 40.7090444, "lon": -73.9243164 }, + { "lat": 40.7088099, "lon": -73.9257702 }, + { "lat": 40.7086132, "lon": -73.9270054 }, + { "lat": 40.7085625, "lon": -73.9273208 }, + { "lat": 40.7085444, "lon": -73.9274130 }, + { "lat": 40.7085239, "lon": -73.9275174 }, + { "lat": 40.7085012, "lon": -73.9276560 }, + { "lat": 40.7082770, "lon": -73.9290260 }, + { "lat": 40.7082615, "lon": -73.9291220 }, + { "lat": 40.7080824, "lon": -73.9302335 }, + { "lat": 40.7079772, "lon": -73.9308859 }, + { "lat": 40.7078031, "lon": -73.9319657 }, + { "lat": 40.7077860, "lon": -73.9320720 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Johnson Avenue", + "name:etymology:wikidata": "Q23091816", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 112168186, + "bounds": { + "minlat": 40.7145378, + "minlon": -73.9304001, + "maxlat": 40.7147230, + "maxlon": -73.9296010 + }, + "nodes": [ + 42505703, + 8075147248, + 9325509502, + 8075147247, + 10296243015 + ], + "geometry": [ + { "lat": 40.7147230, "lon": -73.9296010 }, + { "lat": 40.7146362, "lon": -73.9300671 }, + { "lat": 40.7145880, "lon": -73.9302697 }, + { "lat": 40.7145723, "lon": -73.9303355 }, + { "lat": 40.7145378, "lon": -73.9304001 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Grand Street", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 112168187, + "bounds": { + "minlat": 40.7010304, + "minlon": -73.9306521, + "maxlat": 40.7011453, + "maxlon": -73.9305388 + }, + "nodes": [ + 1275778382, + 9705748045, + 42486712 + ], + "geometry": [ + { "lat": 40.7010304, "lon": -73.9306521 }, + { "lat": 40.7010949, "lon": -73.9305886 }, + { "lat": 40.7011453, "lon": -73.9305388 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Melrose", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 112168189, + "bounds": { + "minlat": 40.7147230, + "minlon": -73.9296010, + "maxlat": 40.7154010, + "maxlon": -73.9269260 + }, + "nodes": [ + 42509758, + 10840566511, + 5482303009, + 7706126119, + 5482303002, + 5515218186, + 5482302994, + 42516166, + 8842929841, + 42505703 + ], + "geometry": [ + { "lat": 40.7154010, "lon": -73.9269260 }, + { "lat": 40.7153759, "lon": -73.9270252 }, + { "lat": 40.7152679, "lon": -73.9274458 }, + { "lat": 40.7151800, "lon": -73.9277887 }, + { "lat": 40.7151670, "lon": -73.9278395 }, + { "lat": 40.7151097, "lon": -73.9280630 }, + { "lat": 40.7150621, "lon": -73.9282489 }, + { "lat": 40.7149950, "lon": -73.9285110 }, + { "lat": 40.7149705, "lon": -73.9286091 }, + { "lat": 40.7147230, "lon": -73.9296010 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Grand Street", + "sidewalk:both": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 112168192, + "bounds": { + "minlat": 40.7011453, + "minlon": -73.9305388, + "maxlat": 40.7026200, + "maxlon": -73.9290910 + }, + "nodes": [ + 42496644, + 9705734212, + 12883509025, + 9705748063, + 42486712 + ], + "geometry": [ + { "lat": 40.7026200, "lon": -73.9290910 }, + { "lat": 40.7025653, "lon": -73.9291447 }, + { "lat": 40.7014228, "lon": -73.9302651 }, + { "lat": 40.7011950, "lon": -73.9304898 }, + { "lat": 40.7011453, "lon": -73.9305388 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Melrose Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Melrose", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 112168193, + "bounds": { + "minlat": 40.7024310, + "minlon": -73.9327920, + "maxlat": 40.7034579, + "maxlon": -73.9319307 + }, + "nodes": [ + 42486707, + 9744012733, + 7153236305, + 1275778408, + 1275778423, + 1275778468, + 9744012731, + 42504122 + ], + "geometry": [ + { "lat": 40.7024310, "lon": -73.9327920 }, + { "lat": 40.7024829, "lon": -73.9327408 }, + { "lat": 40.7027309, "lon": -73.9324964 }, + { "lat": 40.7032622, "lon": -73.9319725 }, + { "lat": 40.7032952, "lon": -73.9319551 }, + { "lat": 40.7033468, "lon": -73.9319461 }, + { "lat": 40.7033894, "lon": -73.9319425 }, + { "lat": 40.7034579, "lon": -73.9319307 } + ], + "tags": { + "highway": "residential", + "name": "Forrest Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Forrest", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 112168196, + "bounds": { + "minlat": 40.7143448, + "minlon": -73.9334534, + "maxlat": 40.7144092, + "maxlon": -73.9323951 + }, + "nodes": [ + 1275778413, + 8842568845, + 5838943021, + 42484221 + ], + "geometry": [ + { "lat": 40.7143448, "lon": -73.9323951 }, + { "lat": 40.7144052, "lon": -73.9332393 }, + { "lat": 40.7144092, "lon": -73.9333074 }, + { "lat": 40.7144048, "lon": -73.9334534 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 112588879, + "bounds": { + "minlat": 40.7075149, + "minlon": -74.0103865, + "maxlat": 40.7077053, + "maxlon": -74.0102034 + }, + "nodes": [ + 493889629, + 11053134858, + 8281922252, + 11053136333, + 42429838 + ], + "geometry": [ + { "lat": 40.7075149, "lon": -74.0103865 }, + { "lat": 40.7076431, "lon": -74.0102629 }, + { "lat": 40.7076732, "lon": -74.0102330 }, + { "lat": 40.7076792, "lon": -74.0102275 }, + { "lat": 40.7077053, "lon": -74.0102034 } + ], + "tags": { + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Nassau Street", + "name:etymology:wikidata": "Q155483", + "name:ko": "나사우 스트리트", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2597808", + "wikipedia": "en:Nassau Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 112588882, + "bounds": { + "minlat": 40.7064224, + "minlon": -74.0106735, + "maxlat": 40.7071202, + "maxlon": -74.0095707 + }, + "nodes": [ + 42431858, + 11051851575, + 1279337144, + 1280340191, + 11051851639 + ], + "geometry": [ + { "lat": 40.7071202, "lon": -74.0106735 }, + { "lat": 40.7070505, "lon": -74.0105634 }, + { "lat": 40.7066190, "lon": -74.0098809 }, + { "lat": 40.7064914, "lon": -74.0096815 }, + { "lat": 40.7064224, "lon": -74.0095707 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "destination", + "name": "Wall Street", + "name:en": "Wall Street", + "name:etymology:wikidata": "Q106706881", + "name:ja": "ウォールストリート", + "name:ko": "월 스트리트", + "name:ru": "Уолл-стрит", + "name:zh": "华尔街", + "oneway": "yes", + "sidewalk": "both", + "surface": "sett", + "wikidata": "Q11690", + "wikipedia": "en:Wall Street" + } +}, +{ + "type": "way", + "id": 113049822, + "bounds": { + "minlat": 40.7701160, + "minlon": -73.9739797, + "maxlat": 40.7704523, + "maxlon": -73.9735807 + }, + "nodes": [ + 1420632789, + 7998661147, + 4257351335, + 4257351334, + 4257351331, + 7998661044, + 4257351328, + 4257351324, + 1283225113, + 1283225163, + 1283225165 + ], + "geometry": [ + { "lat": 40.7704523, "lon": -73.9735807 }, + { "lat": 40.7704226, "lon": -73.9735852 }, + { "lat": 40.7703946, "lon": -73.9735948 }, + { "lat": 40.7703500, "lon": -73.9736162 }, + { "lat": 40.7703033, "lon": -73.9736468 }, + { "lat": 40.7702712, "lon": -73.9736750 }, + { "lat": 40.7702429, "lon": -73.9737158 }, + { "lat": 40.7702068, "lon": -73.9737732 }, + { "lat": 40.7701794, "lon": -73.9738273 }, + { "lat": 40.7701472, "lon": -73.9739018 }, + { "lat": 40.7701160, "lon": -73.9739797 } + ], + "tags": { + "bicycle": "no", + "highway": "track", + "name": "Former Drive", + "source": "GPS survey", + "surface": "asphalt", + "tracktype": "grade1" + } +}, +{ + "type": "way", + "id": 113506931, + "bounds": { + "minlat": 40.7750962, + "minlon": -74.0127764, + "maxlat": 40.7765782, + "maxlon": -74.0121718 + }, + "nodes": [ + 103869875, + 2325759512, + 1286793917, + 1286793939, + 1286793929, + 4703442878, + 1286793937, + 7907171748, + 1286793903, + 7907171745, + 1286793940, + 5474255136, + 1286793845, + 1286793871, + 1286793891, + 1286793867, + 1286793938 + ], + "geometry": [ + { "lat": 40.7765782, "lon": -74.0121718 }, + { "lat": 40.7765438, "lon": -74.0122615 }, + { "lat": 40.7764813, "lon": -74.0123312 }, + { "lat": 40.7763249, "lon": -74.0124117 }, + { "lat": 40.7760548, "lon": -74.0125592 }, + { "lat": 40.7759715, "lon": -74.0125935 }, + { "lat": 40.7758659, "lon": -74.0126370 }, + { "lat": 40.7758078, "lon": -74.0126566 }, + { "lat": 40.7756912, "lon": -74.0126960 }, + { "lat": 40.7756091, "lon": -74.0127256 }, + { "lat": 40.7755795, "lon": -74.0127362 }, + { "lat": 40.7754825, "lon": -74.0127618 }, + { "lat": 40.7754373, "lon": -74.0127738 }, + { "lat": 40.7753662, "lon": -74.0127764 }, + { "lat": 40.7753012, "lon": -74.0127416 }, + { "lat": 40.7752098, "lon": -74.0126852 }, + { "lat": 40.7750962, "lon": -74.0126339 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 113506934, + "bounds": { + "minlat": 40.7736647, + "minlon": -74.0120158, + "maxlat": 40.7759445, + "maxlon": -74.0109918 + }, + "nodes": [ + 1286793918, + 2010237030, + 1286793908, + 2325759510, + 2325759426, + 2837060021, + 2325759424, + 2325759422, + 2325759420, + 5964467343, + 2325759416, + 2325759413, + 7300717232, + 4069497848, + 2721508544 + ], + "geometry": [ + { "lat": 40.7759445, "lon": -74.0119455 }, + { "lat": 40.7759124, "lon": -74.0118690 }, + { "lat": 40.7755495, "lon": -74.0110874 }, + { "lat": 40.7754847, "lon": -74.0110192 }, + { "lat": 40.7754209, "lon": -74.0109918 }, + { "lat": 40.7753789, "lon": -74.0109985 }, + { "lat": 40.7753379, "lon": -74.0110192 }, + { "lat": 40.7749420, "lon": -74.0113168 }, + { "lat": 40.7748545, "lon": -74.0113403 }, + { "lat": 40.7747921, "lon": -74.0113455 }, + { "lat": 40.7745475, "lon": -74.0113605 }, + { "lat": 40.7745041, "lon": -74.0113679 }, + { "lat": 40.7744766, "lon": -74.0113857 }, + { "lat": 40.7740238, "lon": -74.0117386 }, + { "lat": 40.7736647, "lon": -74.0120158 } + ], + "tags": { + "highway": "unclassified", + "name": "Avenue at Port Imperial", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 114654203, + "bounds": { + "minlat": 40.7781876, + "minlon": -73.9818922, + "maxlat": 40.7786010, + "maxlon": -73.9816100 + }, + "nodes": [ + 1061531491, + 3235708628, + 6207264908 + ], + "geometry": [ + { "lat": 40.7781876, "lon": -73.9818922 }, + { "lat": 40.7785026, "lon": -73.9816772 }, + { "lat": 40.7786010, "lon": -73.9816100 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 116562734, + "bounds": { + "minlat": 40.8782794, + "minlon": -73.9807262, + "maxlat": 40.8788806, + "maxlon": -73.9796680 + }, + "nodes": [ + 3655086537, + 298940217, + 530806410 + ], + "geometry": [ + { "lat": 40.8782794, "lon": -73.9796680 }, + { "lat": 40.8787214, "lon": -73.9804462 }, + { "lat": 40.8788806, "lon": -73.9807262 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 116672333, + "bounds": { + "minlat": 40.7477028, + "minlon": -74.0070027, + "maxlat": 40.7488909, + "maxlon": -74.0041638 + }, + "nodes": [ + 42430589, + 3914863405, + 12161232225, + 2823833538, + 9971263900, + 42437914 + ], + "geometry": [ + { "lat": 40.7488909, "lon": -74.0070027 }, + { "lat": 40.7488366, "lon": -74.0068728 }, + { "lat": 40.7488091, "lon": -74.0068071 }, + { "lat": 40.7479352, "lon": -74.0047191 }, + { "lat": 40.7477610, "lon": -74.0043028 }, + { "lat": 40.7477028, "lon": -74.0041638 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 23rd Street", + "name:ru": "Западная 23-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 116672631, + "bounds": { + "minlat": 40.7291289, + "minlon": -74.0109445, + "maxlat": 40.7291478, + "maxlon": -74.0107774 + }, + "nodes": [ + 246879394, + 12162542907 + ], + "geometry": [ + { "lat": 40.7291478, "lon": -74.0109445 }, + { "lat": 40.7291289, "lon": -74.0107774 } + ], + "tags": { + "highway": "service", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 116672642, + "bounds": { + "minlat": 40.7293914, + "minlon": -74.0069526, + "maxlat": 40.7294927, + "maxlon": -74.0057654 + }, + "nodes": [ + 42436374, + 8214320083, + 2073622000, + 8648032265 + ], + "geometry": [ + { "lat": 40.7294927, "lon": -74.0069526 }, + { "lat": 40.7294840, "lon": -74.0068557 }, + { "lat": 40.7294177, "lon": -74.0061177 }, + { "lat": 40.7293914, "lon": -74.0057654 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Clarkson Street", + "name:etymology:wikidata": "Q6790308", + "name:ko": "클락슨 스트리트", + "name:ru": "Кларксон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;right" + } +}, +{ + "type": "way", + "id": 118400726, + "bounds": { + "minlat": 40.7252011, + "minlon": -73.9901455, + "maxlat": 40.7255809, + "maxlon": -73.9898675 + }, + "nodes": [ + 42437333, + 7977873347, + 775996460 + ], + "geometry": [ + { "lat": 40.7255809, "lon": -73.9898675 }, + { "lat": 40.7255267, "lon": -73.9899066 }, + { "lat": 40.7252011, "lon": -73.9901455 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 118400728, + "bounds": { + "minlat": 40.7241092, + "minlon": -73.9909579, + "maxlat": 40.7242862, + "maxlon": -73.9908290 + }, + "nodes": [ + 42442842, + 7977873327, + 42442838 + ], + "geometry": [ + { "lat": 40.7242862, "lon": -73.9908290 }, + { "lat": 40.7242267, "lon": -73.9908735 }, + { "lat": 40.7241092, "lon": -73.9909579 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through|through;right", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 118400729, + "bounds": { + "minlat": 40.7428905, + "minlon": -73.9772763, + "maxlat": 40.7435047, + "maxlon": -73.9768235 + }, + "nodes": [ + 42442910, + 3817760024, + 3817760043, + 42442906 + ], + "geometry": [ + { "lat": 40.7435047, "lon": -73.9768235 }, + { "lat": 40.7434530, "lon": -73.9768631 }, + { "lat": 40.7429444, "lon": -73.9772368 }, + { "lat": 40.7428905, "lon": -73.9772763 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 118524657, + "bounds": { + "minlat": 40.8264068, + "minlon": -73.9555129, + "maxlat": 40.8267457, + "maxlon": -73.9552662 + }, + "nodes": [ + 13246807892, + 1332843727, + 1332843710, + 1332843758, + 1332843501 + ], + "geometry": [ + { "lat": 40.8267457, "lon": -73.9554066 }, + { "lat": 40.8265772, "lon": -73.9555129 }, + { "lat": 40.8265245, "lon": -73.9555129 }, + { "lat": 40.8264758, "lon": -73.9554325 }, + { "lat": 40.8264068, "lon": -73.9552662 } + ], + "tags": { + "bicycle": "dismount", + "highway": "service", + "layer": "2", + "name": "Riverbank Park Access Road", + "name_1": "W 145 St", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West 145th", + "tiger:name_base_1": "145", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 118528237, + "bounds": { + "minlat": 40.8224473, + "minlon": -73.9591115, + "maxlat": 40.8225135, + "maxlon": -73.9589485 + }, + "nodes": [ + 9533471776, + 1332860750 + ], + "geometry": [ + { "lat": 40.8225135, "lon": -73.9591115 }, + { "lat": 40.8224473, "lon": -73.9589485 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 118529225, + "bounds": { + "minlat": 40.8561253, + "minlon": -73.9267398, + "maxlat": 40.8564552, + "maxlon": -73.9258055 + }, + "nodes": [ + 1332871331, + 1332871393, + 8725139287, + 1332871097 + ], + "geometry": [ + { "lat": 40.8561253, "lon": -73.9258055 }, + { "lat": 40.8564471, "lon": -73.9266027 }, + { "lat": 40.8564491, "lon": -73.9266366 }, + { "lat": 40.8564552, "lon": -73.9267398 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 118714266, + "bounds": { + "minlat": 40.7429776, + "minlon": -73.9162150, + "maxlat": 40.7430424, + "maxlon": -73.9158119 + }, + "nodes": [ + 276315677, + 9192032669, + 9986789937, + 588178907 + ], + "geometry": [ + { "lat": 40.7429776, "lon": -73.9158119 }, + { "lat": 40.7429981, "lon": -73.9159557 }, + { "lat": 40.7430037, "lon": -73.9160225 }, + { "lat": 40.7430424, "lon": -73.9162150 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 118714347, + "bounds": { + "minlat": 40.8072023, + "minlon": -73.9066984, + "maxlat": 40.8098312, + "maxlon": -73.9030738 + }, + "nodes": [ + 588115006, + 10900092333, + 13198296325, + 10902729984, + 588115012, + 588115016, + 5944903677, + 9156979753, + 9156979752, + 42724872 + ], + "geometry": [ + { "lat": 40.8098312, "lon": -73.9030738 }, + { "lat": 40.8095582, "lon": -73.9033235 }, + { "lat": 40.8085110, "lon": -73.9047943 }, + { "lat": 40.8084955, "lon": -73.9048161 }, + { "lat": 40.8084388, "lon": -73.9048958 }, + { "lat": 40.8078848, "lon": -73.9056555 }, + { "lat": 40.8075131, "lon": -73.9061880 }, + { "lat": 40.8074162, "lon": -73.9063324 }, + { "lat": 40.8073219, "lon": -73.9064757 }, + { "lat": 40.8072023, "lon": -73.9066984 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10472" + } +}, +{ + "type": "way", + "id": 118714352, + "bounds": { + "minlat": 40.7449682, + "minlon": -73.9333550, + "maxlat": 40.7450474, + "maxlon": -73.9328784 + }, + "nodes": [ + 3785676234, + 10761870675, + 5978492512 + ], + "geometry": [ + { "lat": 40.7449682, "lon": -73.9328784 }, + { "lat": 40.7450081, "lon": -73.9331924 }, + { "lat": 40.7450474, "lon": -73.9333550 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 118714408, + "bounds": { + "minlat": 40.7426731, + "minlon": -73.9159517, + "maxlat": 40.7427034, + "maxlon": -73.9149933 + }, + "nodes": [ + 42807852, + 3785693710, + 276299245, + 3785693711, + 3785693712, + 9192032664, + 3785693713, + 9986789927, + 276207729 + ], + "geometry": [ + { "lat": 40.7426906, "lon": -73.9159517 }, + { "lat": 40.7426935, "lon": -73.9157454 }, + { "lat": 40.7427000, "lon": -73.9156075 }, + { "lat": 40.7427034, "lon": -73.9154739 }, + { "lat": 40.7427026, "lon": -73.9153718 }, + { "lat": 40.7427000, "lon": -73.9152515 }, + { "lat": 40.7426929, "lon": -73.9151466 }, + { "lat": 40.7426869, "lon": -73.9150816 }, + { "lat": 40.7426731, "lon": -73.9149933 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 118714453, + "bounds": { + "minlat": 40.7614566, + "minlon": -74.0018370, + "maxlat": 40.7619774, + "maxlon": -74.0014349 + }, + "nodes": [ + 373932683, + 12154605915, + 373932842, + 9143503692, + 12154605916, + 373930413, + 247080924 + ], + "geometry": [ + { "lat": 40.7619774, "lon": -74.0014349 }, + { "lat": 40.7619100, "lon": -74.0014950 }, + { "lat": 40.7618472, "lon": -74.0015482 }, + { "lat": 40.7617645, "lon": -74.0016171 }, + { "lat": 40.7616793, "lon": -74.0016827 }, + { "lat": 40.7615748, "lon": -74.0017583 }, + { "lat": 40.7614566, "lon": -74.0018370 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 118714476, + "bounds": { + "minlat": 40.7524138, + "minlon": -74.0075760, + "maxlat": 40.7538181, + "maxlon": -74.0070373 + }, + "nodes": [ + 42434827, + 42438684, + 12413770651, + 247073199, + 12161224636, + 12161224637 + ], + "geometry": [ + { "lat": 40.7524138, "lon": -74.0075760 }, + { "lat": 40.7531186, "lon": -74.0073044 }, + { "lat": 40.7536523, "lon": -74.0071042 }, + { "lat": 40.7536889, "lon": -74.0070912 }, + { "lat": 40.7537482, "lon": -74.0070653 }, + { "lat": 40.7538181, "lon": -74.0070373 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 118756289, + "bounds": { + "minlat": 40.7765458, + "minlon": -73.9240200, + "maxlat": 40.7768855, + "maxlon": -73.9237353 + }, + "nodes": [ + 2862420475, + 10176191509, + 11500492591, + 13885263275, + 7756491635, + 42812059 + ], + "geometry": [ + { "lat": 40.7768855, "lon": -73.9240200 }, + { "lat": 40.7767722, "lon": -73.9239323 }, + { "lat": 40.7767276, "lon": -73.9239087 }, + { "lat": 40.7766142, "lon": -73.9238242 }, + { "lat": 40.7765919, "lon": -73.9237922 }, + { "lat": 40.7765458, "lon": -73.9237353 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 120718209, + "bounds": { + "minlat": 40.8531838, + "minlon": -73.9619038, + "maxlat": 40.8534168, + "maxlon": -73.9607219 + }, + "nodes": [ + 76464372, + 7921992352, + 298792354 + ], + "geometry": [ + { "lat": 40.8534168, "lon": -73.9619038 }, + { "lat": 40.8533491, "lon": -73.9615709 }, + { "lat": 40.8531838, "lon": -73.9607219 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge (upper level)", + "bridge:name:etymology:wikidata": "Q23", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxspeed": "45 mph", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 120718256, + "bounds": { + "minlat": 40.8578610, + "minlon": -73.9755724, + "maxlat": 40.8580583, + "maxlon": -73.9751279 + }, + "nodes": [ + 1352814134, + 76464594, + 7921587247, + 76464595 + ], + "geometry": [ + { "lat": 40.8580583, "lon": -73.9755724 }, + { "lat": 40.8580037, "lon": -73.9754359 }, + { "lat": 40.8579460, "lon": -73.9753065 }, + { "lat": 40.8578610, "lon": -73.9751279 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 121257599, + "bounds": { + "minlat": 40.7493718, + "minlon": -73.9693240, + "maxlat": 40.7494908, + "maxlon": -73.9691791 + }, + "nodes": [ + 42455931, + 11002617483, + 11000991286, + 3670418735, + 1254408221 + ], + "geometry": [ + { "lat": 40.7494908, "lon": -73.9693240 }, + { "lat": 40.7494491, "lon": -73.9692917 }, + { "lat": 40.7494166, "lon": -73.9692571 }, + { "lat": 40.7493877, "lon": -73.9692127 }, + { "lat": 40.7493718, "lon": -73.9691791 } + ], + "tags": { + "access": "no", + "highway": "service", + "name": "East 43rd Street", + "name:ru": "Восточная 43-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 121257600, + "bounds": { + "minlat": 40.7489646, + "minlon": -73.9690121, + "maxlat": 40.7494778, + "maxlon": -73.9683358 + }, + "nodes": [ + 1357949860, + 1357949807, + 1357949870, + 1357949836, + 1357949872, + 1357949849, + 1357949839, + 1357949752, + 1357949861, + 12311582954, + 1357949828, + 1357949780, + 1357949805, + 1357949843, + 1357949787, + 1357949822, + 1357949864, + 1357949770, + 1357949825, + 13074871360, + 1357949868, + 1357949820, + 1357949738, + 1357949776, + 1357949866, + 1357949823, + 1357949760, + 1357949791, + 1357949786, + 1357949797, + 11002617560, + 1357949826, + 1357949757, + 1357949742, + 1357949749, + 1357949778, + 1357949841, + 1357949773, + 1357949845, + 1357949860 + ], + "geometry": [ + { "lat": 40.7493921, "lon": -73.9684207 }, + { "lat": 40.7494157, "lon": -73.9684525 }, + { "lat": 40.7494336, "lon": -73.9684833 }, + { "lat": 40.7494495, "lon": -73.9685187 }, + { "lat": 40.7494614, "lon": -73.9685544 }, + { "lat": 40.7494710, "lon": -73.9685956 }, + { "lat": 40.7494778, "lon": -73.9686678 }, + { "lat": 40.7494750, "lon": -73.9687231 }, + { "lat": 40.7494604, "lon": -73.9687962 }, + { "lat": 40.7494477, "lon": -73.9688276 }, + { "lat": 40.7494336, "lon": -73.9688622 }, + { "lat": 40.7494108, "lon": -73.9689017 }, + { "lat": 40.7493809, "lon": -73.9689386 }, + { "lat": 40.7493527, "lon": -73.9689644 }, + { "lat": 40.7493446, "lon": -73.9689705 }, + { "lat": 40.7493031, "lon": -73.9689945 }, + { "lat": 40.7492578, "lon": -73.9690088 }, + { "lat": 40.7492119, "lon": -73.9690121 }, + { "lat": 40.7491806, "lon": -73.9689972 }, + { "lat": 40.7491495, "lon": -73.9689777 }, + { "lat": 40.7490702, "lon": -73.9688859 }, + { "lat": 40.7490199, "lon": -73.9688374 }, + { "lat": 40.7489745, "lon": -73.9687770 }, + { "lat": 40.7489709, "lon": -73.9687491 }, + { "lat": 40.7489646, "lon": -73.9686866 }, + { "lat": 40.7489673, "lon": -73.9686227 }, + { "lat": 40.7489759, "lon": -73.9685732 }, + { "lat": 40.7489908, "lon": -73.9685238 }, + { "lat": 40.7490107, "lon": -73.9684794 }, + { "lat": 40.7490386, "lon": -73.9684352 }, + { "lat": 40.7490639, "lon": -73.9684070 }, + { "lat": 40.7490740, "lon": -73.9683958 }, + { "lat": 40.7491121, "lon": -73.9683667 }, + { "lat": 40.7491590, "lon": -73.9683447 }, + { "lat": 40.7491982, "lon": -73.9683359 }, + { "lat": 40.7492431, "lon": -73.9683358 }, + { "lat": 40.7492786, "lon": -73.9683432 }, + { "lat": 40.7493187, "lon": -73.9683601 }, + { "lat": 40.7493635, "lon": -73.9683915 }, + { "lat": 40.7493921, "lon": -73.9684207 } + ], + "tags": { + "access": "no", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 121257607, + "bounds": { + "minlat": 40.7494477, + "minlon": -73.9688276, + "maxlat": 40.7506465, + "maxlon": -73.9681549 + }, + "nodes": [ + 12311582954, + 2711692986, + 12311582953, + 7098760448, + 11000991022, + 11000991213, + 595105456, + 13871214897, + 6126958461, + 11000991004, + 595105453, + 11000991006, + 1357949854, + 595105438, + 11000991005, + 1357949809, + 11000990999, + 11000990985, + 3827330944 + ], + "geometry": [ + { "lat": 40.7494477, "lon": -73.9688276 }, + { "lat": 40.7495552, "lon": -73.9687606 }, + { "lat": 40.7496102, "lon": -73.9687080 }, + { "lat": 40.7496310, "lon": -73.9686881 }, + { "lat": 40.7497478, "lon": -73.9685476 }, + { "lat": 40.7498488, "lon": -73.9684572 }, + { "lat": 40.7499562, "lon": -73.9683729 }, + { "lat": 40.7500443, "lon": -73.9683129 }, + { "lat": 40.7501178, "lon": -73.9682769 }, + { "lat": 40.7501869, "lon": -73.9682517 }, + { "lat": 40.7502489, "lon": -73.9682190 }, + { "lat": 40.7503011, "lon": -73.9681953 }, + { "lat": 40.7503542, "lon": -73.9681756 }, + { "lat": 40.7504180, "lon": -73.9681614 }, + { "lat": 40.7504754, "lon": -73.9681549 }, + { "lat": 40.7505204, "lon": -73.9681564 }, + { "lat": 40.7505748, "lon": -73.9681626 }, + { "lat": 40.7506132, "lon": -73.9681727 }, + { "lat": 40.7506465, "lon": -73.9681814 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 121772574, + "bounds": { + "minlat": 40.8492281, + "minlon": -73.9413859, + "maxlat": 40.8494900, + "maxlon": -73.9399683 + }, + "nodes": [ + 1362215055, + 12066694597, + 12066694600, + 9908548290, + 60918687 + ], + "geometry": [ + { "lat": 40.8492281, "lon": -73.9399683 }, + { "lat": 40.8493269, "lon": -73.9405401 }, + { "lat": 40.8493521, "lon": -73.9406767 }, + { "lat": 40.8493794, "lon": -73.9408207 }, + { "lat": 40.8494900, "lon": -73.9413859 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 121772576, + "bounds": { + "minlat": 40.8474550, + "minlon": -73.9341824, + "maxlat": 40.8475900, + "maxlon": -73.9338592 + }, + "nodes": [ + 60925716, + 4803647104 + ], + "geometry": [ + { "lat": 40.8474550, "lon": -73.9338592 }, + { "lat": 40.8475900, "lon": -73.9341824 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 121772577, + "bounds": { + "minlat": 40.8459089, + "minlon": -73.9334396, + "maxlat": 40.8470180, + "maxlon": -73.9303694 + }, + "nodes": [ + 9908464006, + 12065172931, + 60918490, + 5891063543, + 12065290742, + 9908548265, + 9908548260, + 12065104153, + 60918488, + 12065104154, + 5891063544, + 529798909 + ], + "geometry": [ + { "lat": 40.8470180, "lon": -73.9334396 }, + { "lat": 40.8469545, "lon": -73.9332792 }, + { "lat": 40.8468939, "lon": -73.9331337 }, + { "lat": 40.8463574, "lon": -73.9318602 }, + { "lat": 40.8463087, "lon": -73.9317428 }, + { "lat": 40.8462698, "lon": -73.9316456 }, + { "lat": 40.8462324, "lon": -73.9315448 }, + { "lat": 40.8461970, "lon": -73.9314417 }, + { "lat": 40.8461594, "lon": -73.9313267 }, + { "lat": 40.8461273, "lon": -73.9312150 }, + { "lat": 40.8460954, "lon": -73.9310951 }, + { "lat": 40.8459089, "lon": -73.9303694 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 121772578, + "bounds": { + "minlat": 40.8458069, + "minlon": -73.9335395, + "maxlat": 40.8468750, + "maxlon": -73.9304100 + }, + "nodes": [ + 9897252113, + 12065306206, + 9908548270, + 12065074536, + 60925761, + 12065074537, + 9908548271, + 9908548272, + 9908548273, + 12065074546, + 9908548274, + 12065074547, + 60925763, + 12065074548, + 60925764, + 9908548280, + 9908548275, + 9908548281, + 60925765, + 9908548282, + 9908548276, + 12076329407, + 5891063546, + 12076329406, + 60925766, + 12076329409, + 12076329408, + 12076329405, + 12076329404, + 60925767 + ], + "geometry": [ + { "lat": 40.8468750, "lon": -73.9335395 }, + { "lat": 40.8468406, "lon": -73.9334839 }, + { "lat": 40.8468072, "lon": -73.9334242 }, + { "lat": 40.8467718, "lon": -73.9333566 }, + { "lat": 40.8467383, "lon": -73.9332903 }, + { "lat": 40.8467062, "lon": -73.9332255 }, + { "lat": 40.8466741, "lon": -73.9331607 }, + { "lat": 40.8466372, "lon": -73.9330814 }, + { "lat": 40.8466013, "lon": -73.9330036 }, + { "lat": 40.8465759, "lon": -73.9329476 }, + { "lat": 40.8465514, "lon": -73.9328932 }, + { "lat": 40.8465249, "lon": -73.9328317 }, + { "lat": 40.8460130, "lon": -73.9316178 }, + { "lat": 40.8459804, "lon": -73.9315379 }, + { "lat": 40.8459486, "lon": -73.9314592 }, + { "lat": 40.8459253, "lon": -73.9313976 }, + { "lat": 40.8459028, "lon": -73.9313303 }, + { "lat": 40.8458848, "lon": -73.9312648 }, + { "lat": 40.8458662, "lon": -73.9311913 }, + { "lat": 40.8458530, "lon": -73.9311269 }, + { "lat": 40.8458403, "lon": -73.9310581 }, + { "lat": 40.8458306, "lon": -73.9309898 }, + { "lat": 40.8458213, "lon": -73.9309048 }, + { "lat": 40.8458148, "lon": -73.9308333 }, + { "lat": 40.8458113, "lon": -73.9307667 }, + { "lat": 40.8458095, "lon": -73.9306921 }, + { "lat": 40.8458086, "lon": -73.9306305 }, + { "lat": 40.8458101, "lon": -73.9305565 }, + { "lat": 40.8458100, "lon": -73.9304732 }, + { "lat": 40.8458069, "lon": -73.9304100 } + ], + "tags": { + "bicycle": "no", + "destination:ref:lanes": "I 95 North;I 87|I 87", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "45 mph", + "maxspeed:advisory": "35 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 121772707, + "bounds": { + "minlat": 40.8611729, + "minlon": -73.9667702, + "maxlat": 40.8612933, + "maxlon": -73.9645297 + }, + "nodes": [ + 12512756308, + 12512756309, + 12512756311, + 76463699, + 7921584371, + 12021383193, + 76463701 + ], + "geometry": [ + { "lat": 40.8612761, "lon": -73.9667702 }, + { "lat": 40.8612895, "lon": -73.9664085 }, + { "lat": 40.8612933, "lon": -73.9662621 }, + { "lat": 40.8612900, "lon": -73.9661362 }, + { "lat": 40.8612760, "lon": -73.9658627 }, + { "lat": 40.8612639, "lon": -73.9656781 }, + { "lat": 40.8611729, "lon": -73.9645297 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "destination:ref": "US 9W North", + "highway": "primary", + "lanes": "1", + "maxspeed:advisory": "20 mph", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 121787380, + "bounds": { + "minlat": 40.8454652, + "minlon": -73.9286741, + "maxlat": 40.8456402, + "maxlon": -73.9279549 + }, + "nodes": [ + 60922834, + 595484163 + ], + "geometry": [ + { "lat": 40.8454652, "lon": -73.9279549 }, + { "lat": 40.8456402, "lon": -73.9286741 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Alexander Hamilton Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "5", + "layer": "2", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "concrete", + "turn:lanes": "||||merge_to_left", + "wikidata": "Q621768", + "wikipedia": "en:Alexander Hamilton Bridge" + } +}, +{ + "type": "way", + "id": 121787381, + "bounds": { + "minlat": 40.8447113, + "minlon": -73.9280366, + "maxlat": 40.8453140, + "maxlon": -73.9250695 + }, + "nodes": [ + 529799493, + 7899270087, + 7899256569, + 7899269987, + 529799496, + 7899256495, + 7899270142, + 7899270069, + 529799501, + 7899256578, + 529799509, + 7899270151, + 529799269 + ], + "geometry": [ + { "lat": 40.8453140, "lon": -73.9280366 }, + { "lat": 40.8451661, "lon": -73.9273923 }, + { "lat": 40.8449320, "lon": -73.9264186 }, + { "lat": 40.8448985, "lon": -73.9262726 }, + { "lat": 40.8448694, "lon": -73.9261376 }, + { "lat": 40.8448418, "lon": -73.9259973 }, + { "lat": 40.8448163, "lon": -73.9258553 }, + { "lat": 40.8447922, "lon": -73.9257114 }, + { "lat": 40.8447715, "lon": -73.9255715 }, + { "lat": 40.8447514, "lon": -73.9254246 }, + { "lat": 40.8447346, "lon": -73.9252808 }, + { "lat": 40.8447221, "lon": -73.9251735 }, + { "lat": 40.8447113, "lon": -73.9250695 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Alexander Hamilton Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "maxspeed": "50 mph", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "concrete", + "wikidata": "Q621768", + "wikipedia": "en:Alexander Hamilton Bridge" + } +}, +{ + "type": "way", + "id": 122088813, + "bounds": { + "minlat": 40.8416247, + "minlon": -73.9284166, + "maxlat": 40.8489255, + "maxlon": -73.9241648 + }, + "nodes": [ + 42749016, + 13533559915, + 13533559912, + 13533559911, + 13533559910, + 7899202033, + 7899202047, + 60919601, + 7899202007, + 7899202045, + 7899202005, + 7899202026, + 42727239, + 7899202030, + 7899151314, + 60919529, + 7899202051, + 7899202011, + 60919528, + 60919527, + 7899202032, + 60919526, + 7899202053, + 7899202013 + ], + "geometry": [ + { "lat": 40.8489255, "lon": -73.9241648 }, + { "lat": 40.8484989, "lon": -73.9245079 }, + { "lat": 40.8483059, "lon": -73.9246609 }, + { "lat": 40.8481263, "lon": -73.9248070 }, + { "lat": 40.8479601, "lon": -73.9249400 }, + { "lat": 40.8477829, "lon": -73.9250720 }, + { "lat": 40.8475969, "lon": -73.9252097 }, + { "lat": 40.8474207, "lon": -73.9253354 }, + { "lat": 40.8472266, "lon": -73.9254698 }, + { "lat": 40.8470304, "lon": -73.9256019 }, + { "lat": 40.8468277, "lon": -73.9257325 }, + { "lat": 40.8466303, "lon": -73.9258568 }, + { "lat": 40.8464288, "lon": -73.9259773 }, + { "lat": 40.8462404, "lon": -73.9260855 }, + { "lat": 40.8458229, "lon": -73.9263365 }, + { "lat": 40.8438039, "lon": -73.9275102 }, + { "lat": 40.8436048, "lon": -73.9276250 }, + { "lat": 40.8433879, "lon": -73.9277512 }, + { "lat": 40.8431702, "lon": -73.9278712 }, + { "lat": 40.8429638, "lon": -73.9279730 }, + { "lat": 40.8427557, "lon": -73.9280626 }, + { "lat": 40.8425419, "lon": -73.9281418 }, + { "lat": 40.8423296, "lon": -73.9282094 }, + { "lat": 40.8416247, "lon": -73.9284166 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 122088814, + "bounds": { + "minlat": 40.8413711, + "minlon": -73.9283683, + "maxlat": 40.8523960, + "maxlon": -73.9207116 + }, + "nodes": [ + 7899225180, + 60920150, + 7899225183, + 7899151326, + 7899151329, + 7899151312, + 60919826, + 7899151315, + 60919827, + 7899151318, + 7899151321, + 7899151324, + 60919828, + 8748510704, + 60919831, + 7899151305, + 7899151328, + 60919832, + 7899151325, + 7899151322, + 60919833, + 7899151319, + 7899151316, + 7899151313, + 60919834, + 7899151311, + 60919835, + 7899151309, + 7899151306, + 60919836, + 7899151304, + 7899151327, + 7899151308, + 7899151310, + 60919839 + ], + "geometry": [ + { "lat": 40.8413711, "lon": -73.9283683 }, + { "lat": 40.8414698, "lon": -73.9283311 }, + { "lat": 40.8415759, "lon": -73.9282931 }, + { "lat": 40.8416808, "lon": -73.9282564 }, + { "lat": 40.8418934, "lon": -73.9281828 }, + { "lat": 40.8423207, "lon": -73.9280354 }, + { "lat": 40.8425319, "lon": -73.9279590 }, + { "lat": 40.8427445, "lon": -73.9278754 }, + { "lat": 40.8429526, "lon": -73.9277875 }, + { "lat": 40.8431616, "lon": -73.9276918 }, + { "lat": 40.8433682, "lon": -73.9275874 }, + { "lat": 40.8435693, "lon": -73.9274769 }, + { "lat": 40.8437629, "lon": -73.9273659 }, + { "lat": 40.8457083, "lon": -73.9262332 }, + { "lat": 40.8457839, "lon": -73.9261892 }, + { "lat": 40.8460880, "lon": -73.9260140 }, + { "lat": 40.8462909, "lon": -73.9258986 }, + { "lat": 40.8464915, "lon": -73.9257816 }, + { "lat": 40.8466460, "lon": -73.9256898 }, + { "lat": 40.8468281, "lon": -73.9255758 }, + { "lat": 40.8470201, "lon": -73.9254513 }, + { "lat": 40.8472214, "lon": -73.9253185 }, + { "lat": 40.8474129, "lon": -73.9251885 }, + { "lat": 40.8476070, "lon": -73.9250504 }, + { "lat": 40.8477991, "lon": -73.9249110 }, + { "lat": 40.8479907, "lon": -73.9247672 }, + { "lat": 40.8481777, "lon": -73.9246219 }, + { "lat": 40.8483665, "lon": -73.9244701 }, + { "lat": 40.8485537, "lon": -73.9243152 }, + { "lat": 40.8487357, "lon": -73.9241595 }, + { "lat": 40.8489195, "lon": -73.9239975 }, + { "lat": 40.8491009, "lon": -73.9238333 }, + { "lat": 40.8492811, "lon": -73.9236654 }, + { "lat": 40.8518664, "lon": -73.9212358 }, + { "lat": 40.8523960, "lon": -73.9207116 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "maxheight": "default", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 122088817, + "bounds": { + "minlat": 40.8059552, + "minlon": -73.9265436, + "maxlat": 40.8076972, + "maxlon": -73.9220812 + }, + "nodes": [ + 471242005, + 9163759221, + 471242015, + 9163759222, + 471242593 + ], + "geometry": [ + { "lat": 40.8059552, "lon": -73.9220812 }, + { "lat": 40.8068435, "lon": -73.9243360 }, + { "lat": 40.8074879, "lon": -73.9260153 }, + { "lat": 40.8075942, "lon": -73.9262839 }, + { "lat": 40.8076972, "lon": -73.9265436 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 122088820, + "bounds": { + "minlat": 40.8591400, + "minlon": -73.9160898, + "maxlat": 40.8647566, + "maxlon": -73.9098830 + }, + "nodes": [ + 595749116, + 7898998239, + 7898998198, + 60915924, + 60915923, + 7898958256, + 7898998225, + 7898998206, + 7898958264, + 7898958222, + 7898998214, + 60915921, + 7898958231, + 7898958273, + 60915920, + 7898998223, + 7898958281, + 60915919, + 7898958239, + 60915918, + 7898998230, + 60915917, + 7898998189, + 7898958246, + 7898998238, + 60915916, + 60915915, + 60915914, + 60915913, + 7898998197, + 60915912, + 7898958255, + 8865049403 + ], + "geometry": [ + { "lat": 40.8591400, "lon": -73.9160898 }, + { "lat": 40.8593125, "lon": -73.9159100 }, + { "lat": 40.8594789, "lon": -73.9157201 }, + { "lat": 40.8596386, "lon": -73.9155263 }, + { "lat": 40.8597946, "lon": -73.9153295 }, + { "lat": 40.8599520, "lon": -73.9151245 }, + { "lat": 40.8601869, "lon": -73.9148179 }, + { "lat": 40.8603386, "lon": -73.9146138 }, + { "lat": 40.8604928, "lon": -73.9144089 }, + { "lat": 40.8606456, "lon": -73.9142058 }, + { "lat": 40.8608030, "lon": -73.9139981 }, + { "lat": 40.8609580, "lon": -73.9137926 }, + { "lat": 40.8611101, "lon": -73.9135894 }, + { "lat": 40.8614984, "lon": -73.9130825 }, + { "lat": 40.8616326, "lon": -73.9129097 }, + { "lat": 40.8617873, "lon": -73.9127111 }, + { "lat": 40.8619363, "lon": -73.9125216 }, + { "lat": 40.8621048, "lon": -73.9123159 }, + { "lat": 40.8622698, "lon": -73.9121244 }, + { "lat": 40.8624338, "lon": -73.9119372 }, + { "lat": 40.8626039, "lon": -73.9117502 }, + { "lat": 40.8627748, "lon": -73.9115650 }, + { "lat": 40.8629465, "lon": -73.9113827 }, + { "lat": 40.8631141, "lon": -73.9112089 }, + { "lat": 40.8632900, "lon": -73.9110313 }, + { "lat": 40.8634668, "lon": -73.9108574 }, + { "lat": 40.8636460, "lon": -73.9106909 }, + { "lat": 40.8638312, "lon": -73.9105331 }, + { "lat": 40.8640172, "lon": -73.9103836 }, + { "lat": 40.8642104, "lon": -73.9102424 }, + { "lat": 40.8644027, "lon": -73.9101094 }, + { "lat": 40.8646037, "lon": -73.9099782 }, + { "lat": 40.8647566, "lon": -73.9098830 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 122088821, + "bounds": { + "minlat": 40.8376601, + "minlon": -73.9304060, + "maxlat": 40.8397410, + "maxlon": -73.9293970 + }, + "nodes": [ + 60920157, + 7899201997, + 60922716, + 7899202018, + 9166334395, + 7899202039, + 7899201999, + 60922714, + 7899202020, + 7899202041, + 529056338 + ], + "geometry": [ + { "lat": 40.8397410, "lon": -73.9293970 }, + { "lat": 40.8395361, "lon": -73.9295164 }, + { "lat": 40.8393445, "lon": -73.9296285 }, + { "lat": 40.8391364, "lon": -73.9297428 }, + { "lat": 40.8389303, "lon": -73.9298490 }, + { "lat": 40.8387219, "lon": -73.9299546 }, + { "lat": 40.8385147, "lon": -73.9300515 }, + { "lat": 40.8383077, "lon": -73.9301433 }, + { "lat": 40.8380936, "lon": -73.9302323 }, + { "lat": 40.8378821, "lon": -73.9303191 }, + { "lat": 40.8376601, "lon": -73.9304060 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 122095930, + "bounds": { + "minlat": 40.8570627, + "minlon": -73.9746883, + "maxlat": 40.8580400, + "maxlon": -73.9733858 + }, + "nodes": [ + 76464369, + 7921569538, + 13758738401, + 76464370, + 7921569534, + 7921569529, + 76464371, + 13758738402, + 13758734095, + 60811500 + ], + "geometry": [ + { "lat": 40.8580400, "lon": -73.9746883 }, + { "lat": 40.8579317, "lon": -73.9745777 }, + { "lat": 40.8578586, "lon": -73.9744972 }, + { "lat": 40.8577915, "lon": -73.9744187 }, + { "lat": 40.8577072, "lon": -73.9743144 }, + { "lat": 40.8576304, "lon": -73.9742131 }, + { "lat": 40.8575541, "lon": -73.9741083 }, + { "lat": 40.8574678, "lon": -73.9739845 }, + { "lat": 40.8572782, "lon": -73.9737067 }, + { "lat": 40.8570627, "lon": -73.9733858 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge Plaza", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "hov:lanes": "||designated", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 122095931, + "bounds": { + "minlat": 40.8591693, + "minlon": -73.9752943, + "maxlat": 40.8617529, + "maxlon": -73.9747336 + }, + "nodes": [ + 76464360, + 13758734099, + 76464361, + 13758734098, + 13758734097, + 13758734096, + 76464362, + 76464363, + 7921569533, + 7921569528, + 76464364, + 299127740, + 7921569524, + 76464365 + ], + "geometry": [ + { "lat": 40.8617529, "lon": -73.9747336 }, + { "lat": 40.8607985, "lon": -73.9750014 }, + { "lat": 40.8606699, "lon": -73.9750367 }, + { "lat": 40.8605299, "lon": -73.9750753 }, + { "lat": 40.8603919, "lon": -73.9751134 }, + { "lat": 40.8602555, "lon": -73.9751515 }, + { "lat": 40.8601148, "lon": -73.9751913 }, + { "lat": 40.8599853, "lon": -73.9752209 }, + { "lat": 40.8598521, "lon": -73.9752509 }, + { "lat": 40.8597084, "lon": -73.9752737 }, + { "lat": 40.8595736, "lon": -73.9752875 }, + { "lat": 40.8594457, "lon": -73.9752943 }, + { "lat": 40.8593066, "lon": -73.9752890 }, + { "lat": 40.8591693, "lon": -73.9752738 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge Plaza", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov": "shoulder", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "note:lanes": "right shoulder (not counted in lanes tag) is hov (FIXME: am rush only? how far?)", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 122095933, + "bounds": { + "minlat": 40.8551821, + "minlon": -73.9725496, + "maxlat": 40.8566795, + "maxlon": -73.9696524 + }, + "nodes": [ + 60811364, + 3257513635, + 60811363, + 7921808860, + 7921808844, + 7921808829, + 7921817002, + 7921816986, + 60811362, + 7921808871, + 3257513643, + 7921808840, + 7921808855, + 60811361, + 7921817014, + 7921816997, + 7921808881, + 60811360 + ], + "geometry": [ + { "lat": 40.8551821, "lon": -73.9696524 }, + { "lat": 40.8553492, "lon": -73.9700921 }, + { "lat": 40.8554937, "lon": -73.9704393 }, + { "lat": 40.8555337, "lon": -73.9705324 }, + { "lat": 40.8555847, "lon": -73.9706454 }, + { "lat": 40.8556304, "lon": -73.9707460 }, + { "lat": 40.8556821, "lon": -73.9708553 }, + { "lat": 40.8557358, "lon": -73.9709712 }, + { "lat": 40.8557912, "lon": -73.9710834 }, + { "lat": 40.8558463, "lon": -73.9711937 }, + { "lat": 40.8559025, "lon": -73.9713053 }, + { "lat": 40.8559620, "lon": -73.9714169 }, + { "lat": 40.8560240, "lon": -73.9715296 }, + { "lat": 40.8560838, "lon": -73.9716351 }, + { "lat": 40.8561456, "lon": -73.9717404 }, + { "lat": 40.8562073, "lon": -73.9718450 }, + { "lat": 40.8562721, "lon": -73.9719482 }, + { "lat": 40.8566795, "lon": -73.9725496 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge Plaza", + "bridge:name:etymology:wikidata": "Q23", + "destination:lanes": "Paterson|Paterson;Hackensack|Hackensack|Palisades Park", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxheight:signed": "no", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "|||slight_right", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 122095942, + "bounds": { + "minlat": 40.8424704, + "minlon": -74.0175504, + "maxlat": 40.8463288, + "maxlon": -74.0171457 + }, + "nodes": [ + 294998032, + 12014234087, + 12014234075, + 294998034, + 10927731230, + 294998035, + 294998036, + 294998037, + 10927731211, + 294998038, + 10927472237, + 294998039, + 10927472236, + 10927472238, + 294998040, + 10927472235, + 294998041 + ], + "geometry": [ + { "lat": 40.8424704, "lon": -74.0175504 }, + { "lat": 40.8426051, "lon": -74.0175440 }, + { "lat": 40.8428672, "lon": -74.0175326 }, + { "lat": 40.8436608, "lon": -74.0175086 }, + { "lat": 40.8439389, "lon": -74.0174998 }, + { "lat": 40.8442126, "lon": -74.0174846 }, + { "lat": 40.8444922, "lon": -74.0174640 }, + { "lat": 40.8447692, "lon": -74.0174317 }, + { "lat": 40.8450400, "lon": -74.0173957 }, + { "lat": 40.8453183, "lon": -74.0173533 }, + { "lat": 40.8454515, "lon": -74.0173311 }, + { "lat": 40.8455871, "lon": -74.0173074 }, + { "lat": 40.8457249, "lon": -74.0172819 }, + { "lat": 40.8458663, "lon": -74.0172538 }, + { "lat": 40.8460002, "lon": -74.0172262 }, + { "lat": 40.8461383, "lon": -74.0171938 }, + { "lat": 40.8463288, "lon": -74.0171457 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination": "George Washington Bridge", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 122095945, + "bounds": { + "minlat": 40.8578113, + "minlon": -73.9750992, + "maxlat": 40.8619210, + "maxlon": -73.9741224 + }, + "nodes": [ + 3132250231, + 76463921, + 13759310578, + 3132250230, + 7922003520, + 76463920, + 13759310575, + 7922003514, + 13759310577, + 13759310573, + 13759310576, + 76463919, + 13759310574, + 7922003512, + 76463918, + 7922003524, + 13759310580, + 7922003518, + 76463917, + 76463916, + 7925022067, + 13759310579, + 76463915, + 76463914, + 7925022036, + 7925022055, + 76463913, + 76465445, + 7925022028, + 13759310581, + 76463912, + 13754021061 + ], + "geometry": [ + { "lat": 40.8578113, "lon": -73.9741224 }, + { "lat": 40.8578639, "lon": -73.9741875 }, + { "lat": 40.8579250, "lon": -73.9742595 }, + { "lat": 40.8580093, "lon": -73.9743587 }, + { "lat": 40.8580910, "lon": -73.9744466 }, + { "lat": 40.8581487, "lon": -73.9745024 }, + { "lat": 40.8582018, "lon": -73.9745529 }, + { "lat": 40.8582559, "lon": -73.9746011 }, + { "lat": 40.8582925, "lon": -73.9746326 }, + { "lat": 40.8583387, "lon": -73.9746708 }, + { "lat": 40.8583814, "lon": -73.9747041 }, + { "lat": 40.8584254, "lon": -73.9747357 }, + { "lat": 40.8584813, "lon": -73.9747736 }, + { "lat": 40.8585480, "lon": -73.9748145 }, + { "lat": 40.8586684, "lon": -73.9748818 }, + { "lat": 40.8587774, "lon": -73.9749342 }, + { "lat": 40.8588669, "lon": -73.9749735 }, + { "lat": 40.8589574, "lon": -73.9750077 }, + { "lat": 40.8590758, "lon": -73.9750425 }, + { "lat": 40.8592185, "lon": -73.9750724 }, + { "lat": 40.8593576, "lon": -73.9750912 }, + { "lat": 40.8594961, "lon": -73.9750992 }, + { "lat": 40.8596294, "lon": -73.9750963 }, + { "lat": 40.8597743, "lon": -73.9750833 }, + { "lat": 40.8599116, "lon": -73.9750637 }, + { "lat": 40.8600482, "lon": -73.9750370 }, + { "lat": 40.8601831, "lon": -73.9750076 }, + { "lat": 40.8603229, "lon": -73.9749732 }, + { "lat": 40.8604592, "lon": -73.9749391 }, + { "lat": 40.8605975, "lon": -73.9749028 }, + { "lat": 40.8607347, "lon": -73.9748660 }, + { "lat": 40.8619210, "lon": -73.9745401 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination": "Paterson;Express Roadway", + "destination:ref": "I 95 South;NJTP South", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 122095951, + "bounds": { + "minlat": 40.8582556, + "minlon": -73.9760374, + "maxlat": 40.8588145, + "maxlon": -73.9758619 + }, + "nodes": [ + 7924909382, + 13762329236, + 13762329237, + 13762329238, + 76464423, + 13762329233, + 13762329235, + 76464422, + 13762329234, + 7921607614, + 13762329240, + 76464421 + ], + "geometry": [ + { "lat": 40.8588145, "lon": -73.9760374 }, + { "lat": 40.8587642, "lon": -73.9760341 }, + { "lat": 40.8587092, "lon": -73.9760283 }, + { "lat": 40.8586581, "lon": -73.9760205 }, + { "lat": 40.8586040, "lon": -73.9760089 }, + { "lat": 40.8585592, "lon": -73.9759976 }, + { "lat": 40.8585066, "lon": -73.9759812 }, + { "lat": 40.8584547, "lon": -73.9759619 }, + { "lat": 40.8584023, "lon": -73.9759402 }, + { "lat": 40.8583534, "lon": -73.9759166 }, + { "lat": 40.8583017, "lon": -73.9758884 }, + { "lat": 40.8582556, "lon": -73.9758619 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 122095955, + "bounds": { + "minlat": 40.8528532, + "minlon": -74.0145120, + "maxlat": 40.8565314, + "maxlon": -74.0127112 + }, + "nodes": [ + 298562323, + 298561949 + ], + "geometry": [ + { "lat": 40.8528532, "lon": -74.0145120 }, + { "lat": 40.8565314, "lon": -74.0127112 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "George Washington Bridge|George Washington Bridge|George Washington Bridge;Fort Lee|George Washington Bridge;Fort Lee", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no", + "turn:lanes": "||slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 122095956, + "bounds": { + "minlat": 40.8603315, + "minlon": -73.9756916, + "maxlat": 40.8616797, + "maxlon": -73.9752244 + }, + "nodes": [ + 76464971, + 13762329217, + 13762329216, + 13762329227, + 7924909378, + 13762329218, + 76464427, + 13762329219, + 7924909377, + 76464426 + ], + "geometry": [ + { "lat": 40.8616797, "lon": -73.9752244 }, + { "lat": 40.8614841, "lon": -73.9752958 }, + { "lat": 40.8613491, "lon": -73.9753437 }, + { "lat": 40.8611179, "lon": -73.9754258 }, + { "lat": 40.8609804, "lon": -73.9754740 }, + { "lat": 40.8608518, "lon": -73.9755182 }, + { "lat": 40.8607249, "lon": -73.9755621 }, + { "lat": 40.8605979, "lon": -73.9756050 }, + { "lat": 40.8604568, "lon": -73.9756506 }, + { "lat": 40.8603315, "lon": -73.9756916 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 122095958, + "bounds": { + "minlat": 40.8652220, + "minlon": -73.9760884, + "maxlat": 40.8672245, + "maxlon": -73.9750422 + }, + "nodes": [ + 1365154716, + 10940678097, + 298773636, + 10940696707, + 298773634, + 10940696717, + 7926202624, + 10940696710, + 298774072, + 10940696719, + 298773696, + 10940696705, + 298774071, + 10940696709, + 298773694, + 10940696714, + 298773624 + ], + "geometry": [ + { "lat": 40.8672245, "lon": -73.9760884 }, + { "lat": 40.8671114, "lon": -73.9760170 }, + { "lat": 40.8670063, "lon": -73.9759521 }, + { "lat": 40.8668916, "lon": -73.9758830 }, + { "lat": 40.8667604, "lon": -73.9758053 }, + { "lat": 40.8666324, "lon": -73.9757291 }, + { "lat": 40.8665080, "lon": -73.9756572 }, + { "lat": 40.8663859, "lon": -73.9755880 }, + { "lat": 40.8662623, "lon": -73.9755210 }, + { "lat": 40.8661296, "lon": -73.9754515 }, + { "lat": 40.8660012, "lon": -73.9753865 }, + { "lat": 40.8658753, "lon": -73.9753250 }, + { "lat": 40.8657421, "lon": -73.9752627 }, + { "lat": 40.8656164, "lon": -73.9752062 }, + { "lat": 40.8654881, "lon": -73.9751503 }, + { "lat": 40.8653569, "lon": -73.9750954 }, + { "lat": 40.8652220, "lon": -73.9750422 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "hov:lanes": "designated|||", + "lanes": "4", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 122095959, + "bounds": { + "minlat": 40.8616797, + "minlon": -73.9752244, + "maxlat": 40.8638715, + "maxlon": -73.9746616 + }, + "nodes": [ + 13754077750, + 7926565538, + 7926565537, + 13762329223, + 299124227, + 13762329222, + 7926565541, + 13762329221, + 76464431, + 13762329220, + 13762329212, + 13762329224, + 76464433, + 13762329225, + 13762329226, + 76464971 + ], + "geometry": [ + { "lat": 40.8638715, "lon": -73.9746790 }, + { "lat": 40.8637313, "lon": -73.9746651 }, + { "lat": 40.8635998, "lon": -73.9746616 }, + { "lat": 40.8635233, "lon": -73.9746628 }, + { "lat": 40.8634545, "lon": -73.9746655 }, + { "lat": 40.8633832, "lon": -73.9746707 }, + { "lat": 40.8633172, "lon": -73.9746766 }, + { "lat": 40.8632433, "lon": -73.9746855 }, + { "lat": 40.8631845, "lon": -73.9746947 }, + { "lat": 40.8631088, "lon": -73.9747097 }, + { "lat": 40.8630425, "lon": -73.9747261 }, + { "lat": 40.8629723, "lon": -73.9747464 }, + { "lat": 40.8628924, "lon": -73.9747714 }, + { "lat": 40.8627997, "lon": -73.9748037 }, + { "lat": 40.8626647, "lon": -73.9748535 }, + { "lat": 40.8616797, "lon": -73.9752244 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "Palisades Parkway;Fort Lee|George Washington Bridge|none", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "left|none|merge_to_left" + } +}, +{ + "type": "way", + "id": 122625675, + "bounds": { + "minlat": 40.7072870, + "minlon": -73.9578809, + "maxlat": 40.7117668, + "maxlon": -73.9556120 + }, + "nodes": [ + 479716904, + 479716905, + 479716906, + 479716907, + 479716908, + 479716916, + 479716917, + 479715826, + 10844877936 + ], + "geometry": [ + { "lat": 40.7117668, "lon": -73.9556120 }, + { "lat": 40.7114741, "lon": -73.9557837 }, + { "lat": 40.7111943, "lon": -73.9559039 }, + { "lat": 40.7109341, "lon": -73.9559897 }, + { "lat": 40.7105047, "lon": -73.9561099 }, + { "lat": 40.7102509, "lon": -73.9562129 }, + { "lat": 40.7099581, "lon": -73.9563588 }, + { "lat": 40.7087620, "lon": -73.9570358 }, + { "lat": 40.7072870, "lon": -73.9578809 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11;A11;A63;A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 122625683, + "bounds": { + "minlat": 40.7345513, + "minlon": -73.9218645, + "maxlat": 40.7347557, + "maxlon": -73.9211886 + }, + "nodes": [ + 488264376, + 9194902660, + 9194902661, + 9194902662, + 597311475 + ], + "geometry": [ + { "lat": 40.7345513, "lon": -73.9218645 }, + { "lat": 40.7346077, "lon": -73.9216807 }, + { "lat": 40.7346634, "lon": -73.9215052 }, + { "lat": 40.7347169, "lon": -73.9213345 }, + { "lat": 40.7347557, "lon": -73.9211886 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 122625687, + "bounds": { + "minlat": 40.7352134, + "minlon": -73.9195366, + "maxlat": 40.7353155, + "maxlon": -73.9187249 + }, + "nodes": [ + 488248607, + 488248660 + ], + "geometry": [ + { "lat": 40.7353155, "lon": -73.9187249 }, + { "lat": 40.7352134, "lon": -73.9195366 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 122625698, + "bounds": { + "minlat": 40.7117668, + "minlon": -73.9556120, + "maxlat": 40.7137269, + "maxlon": -73.9536634 + }, + "nodes": [ + 598031719, + 479716886, + 479716888, + 479716889, + 479716903, + 479716904 + ], + "geometry": [ + { "lat": 40.7137269, "lon": -73.9536634 }, + { "lat": 40.7129509, "lon": -73.9545134 }, + { "lat": 40.7126191, "lon": -73.9548739 }, + { "lat": 40.7123263, "lon": -73.9551571 }, + { "lat": 40.7120336, "lon": -73.9554146 }, + { "lat": 40.7117668, "lon": -73.9556120 } + ], + "tags": { + "bicycle": "no", + "destination": "Staten Island", + "destination:ref": "I 278 West", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11; A11; A63; A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 122625699, + "bounds": { + "minlat": 40.7145061, + "minlon": -73.9525427, + "maxlat": 40.7188145, + "maxlon": -73.9463359 + }, + "nodes": [ + 479716748, + 476026032, + 476026030, + 476026029, + 476026028, + 5750251171, + 476026026 + ], + "geometry": [ + { "lat": 40.7145061, "lon": -73.9525427 }, + { "lat": 40.7150220, "lon": -73.9519365 }, + { "lat": 40.7155794, "lon": -73.9512354 }, + { "lat": 40.7161099, "lon": -73.9504928 }, + { "lat": 40.7166025, "lon": -73.9497660 }, + { "lat": 40.7178203, "lon": -73.9479013 }, + { "lat": 40.7188145, "lon": -73.9463359 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "none|Long Island Expressway;Midtown Tunnel;Eastern Long Island|Long Island Expressway;Midtown Tunnel;Eastern Long Island|McGuinness Boulevard;Humboldt Street", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "turn:lanes": "none|none|none|slight_right" + } +}, +{ + "type": "way", + "id": 122625702, + "bounds": { + "minlat": 40.7188145, + "minlon": -73.9463359, + "maxlat": 40.7231684, + "maxlon": -73.9392325 + }, + "nodes": [ + 476026026, + 12162675544, + 12162675540, + 12162675543, + 12162675541, + 12162675542, + 12162675539, + 12162675537, + 12162675538, + 476026024, + 12162675536, + 12162675534, + 12162675535, + 476026023, + 476026022, + 12162675532, + 12162675533, + 476026021, + 12162675531, + 12162675529, + 12162675530, + 476025194, + 12747642062 + ], + "geometry": [ + { "lat": 40.7188145, "lon": -73.9463359 }, + { "lat": 40.7194012, "lon": -73.9453729 }, + { "lat": 40.7199968, "lon": -73.9443929 }, + { "lat": 40.7202740, "lon": -73.9439234 }, + { "lat": 40.7206021, "lon": -73.9433504 }, + { "lat": 40.7208912, "lon": -73.9428476 }, + { "lat": 40.7211384, "lon": -73.9424088 }, + { "lat": 40.7212081, "lon": -73.9422872 }, + { "lat": 40.7212796, "lon": -73.9421647 }, + { "lat": 40.7213504, "lon": -73.9420476 }, + { "lat": 40.7214183, "lon": -73.9419378 }, + { "lat": 40.7214928, "lon": -73.9418246 }, + { "lat": 40.7215646, "lon": -73.9417168 }, + { "lat": 40.7216365, "lon": -73.9416120 }, + { "lat": 40.7223053, "lon": -73.9406855 }, + { "lat": 40.7223890, "lon": -73.9405684 }, + { "lat": 40.7224603, "lon": -73.9404658 }, + { "lat": 40.7225316, "lon": -73.9403579 }, + { "lat": 40.7226002, "lon": -73.9402506 }, + { "lat": 40.7226694, "lon": -73.9401363 }, + { "lat": 40.7227345, "lon": -73.9400243 }, + { "lat": 40.7227996, "lon": -73.9399074 }, + { "lat": 40.7231684, "lon": -73.9392325 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 122625703, + "bounds": { + "minlat": 40.7005475, + "minlon": -73.9954589, + "maxlat": 40.7007242, + "maxlon": -73.9951562 + }, + "nodes": [ + 451019469, + 451020895 + ], + "geometry": [ + { "lat": 40.7007242, "lon": -73.9951562 }, + { "lat": 40.7005475, "lon": -73.9954589 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "lit": "yes", + "maxheight": "12'4\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_base_2": "Gowanus", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy", + "tiger:reviewed": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 122625704, + "bounds": { + "minlat": 40.8058980, + "minlon": -73.9090725, + "maxlat": 40.8199994, + "maxlon": -73.8904099 + }, + "nodes": [ + 471241236, + 471241237, + 9156979739, + 471241239, + 9156979742, + 471241241, + 471241243, + 471241410, + 471241411, + 5944905499, + 471241412, + 5944905501, + 5944905503, + 471241413, + 471241415, + 471241416, + 471241417, + 471241418, + 588113982 + ], + "geometry": [ + { "lat": 40.8058980, "lon": -73.9090725 }, + { "lat": 40.8068867, "lon": -73.9067184 }, + { "lat": 40.8069647, "lon": -73.9065260 }, + { "lat": 40.8070596, "lon": -73.9063202 }, + { "lat": 40.8071466, "lon": -73.9061541 }, + { "lat": 40.8072606, "lon": -73.9059549 }, + { "lat": 40.8074241, "lon": -73.9057220 }, + { "lat": 40.8132766, "lon": -73.8975182 }, + { "lat": 40.8135805, "lon": -73.8971023 }, + { "lat": 40.8138640, "lon": -73.8967869 }, + { "lat": 40.8141460, "lon": -73.8964856 }, + { "lat": 40.8150138, "lon": -73.8956016 }, + { "lat": 40.8154620, "lon": -73.8951287 }, + { "lat": 40.8158558, "lon": -73.8947257 }, + { "lat": 40.8166179, "lon": -73.8939358 }, + { "lat": 40.8175161, "lon": -73.8930183 }, + { "lat": 40.8187559, "lon": -73.8917210 }, + { "lat": 40.8196400, "lon": -73.8908150 }, + { "lat": 40.8199994, "lon": -73.8904099 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "New Haven|New Haven|Sheridan Boulevard;East 177th Street", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "I-278", + "tiger:name_type": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 122625708, + "bounds": { + "minlat": 40.8042769, + "minlon": -73.9123568, + "maxlat": 40.8053091, + "maxlon": -73.9104091 + }, + "nodes": [ + 9156942284, + 9156942285, + 9156942282, + 12521912081, + 9156942287, + 9156942286, + 9156942288, + 12521912080, + 12521912079, + 12521912078, + 471241232 + ], + "geometry": [ + { "lat": 40.8042769, "lon": -73.9123568 }, + { "lat": 40.8043425, "lon": -73.9122335 }, + { "lat": 40.8044318, "lon": -73.9120699 }, + { "lat": 40.8044995, "lon": -73.9119496 }, + { "lat": 40.8045673, "lon": -73.9118229 }, + { "lat": 40.8046515, "lon": -73.9116707 }, + { "lat": 40.8047727, "lon": -73.9114491 }, + { "lat": 40.8049002, "lon": -73.9112152 }, + { "lat": 40.8050038, "lon": -73.9110178 }, + { "lat": 40.8050906, "lon": -73.9108385 }, + { "lat": 40.8053091, "lon": -73.9104091 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "layer": "2", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "I-278", + "tiger:name_type": "Expy", + "tiger:reviewed": "no", + "toll": "no" + } +}, +{ + "type": "way", + "id": 122625709, + "bounds": { + "minlat": 40.7687185, + "minlon": -73.9115692, + "maxlat": 40.7692057, + "maxlon": -73.9078784 + }, + "nodes": [ + 9179198087, + 10578103919, + 6163935034, + 106076448, + 9179198088, + 10578103920, + 9179198089, + 9179198092, + 10578103921, + 9179198090, + 10578103922, + 9179198091, + 10578103923, + 6163935032, + 10578103924, + 9179198093, + 10578103925, + 13174823062, + 13174823078, + 13174823079, + 13174823080, + 13174823087, + 13174823081, + 13174823088 + ], + "geometry": [ + { "lat": 40.7692057, "lon": -73.9115692 }, + { "lat": 40.7691446, "lon": -73.9113044 }, + { "lat": 40.7691115, "lon": -73.9111618 }, + { "lat": 40.7690818, "lon": -73.9110274 }, + { "lat": 40.7690471, "lon": -73.9108533 }, + { "lat": 40.7690118, "lon": -73.9106712 }, + { "lat": 40.7689765, "lon": -73.9104804 }, + { "lat": 40.7689513, "lon": -73.9103274 }, + { "lat": 40.7689276, "lon": -73.9101773 }, + { "lat": 40.7689071, "lon": -73.9100371 }, + { "lat": 40.7688866, "lon": -73.9098921 }, + { "lat": 40.7688664, "lon": -73.9097579 }, + { "lat": 40.7688499, "lon": -73.9096054 }, + { "lat": 40.7688334, "lon": -73.9094663 }, + { "lat": 40.7688202, "lon": -73.9093271 }, + { "lat": 40.7688082, "lon": -73.9091948 }, + { "lat": 40.7687914, "lon": -73.9090210 }, + { "lat": 40.7687771, "lon": -73.9088441 }, + { "lat": 40.7687657, "lon": -73.9086479 }, + { "lat": 40.7687567, "lon": -73.9084968 }, + { "lat": 40.7687399, "lon": -73.9081395 }, + { "lat": 40.7687331, "lon": -73.9080365 }, + { "lat": 40.7687257, "lon": -73.9079573 }, + { "lat": 40.7687185, "lon": -73.9078784 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "I 278;GCP", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 122625711, + "bounds": { + "minlat": 40.7706731, + "minlon": -73.9198031, + "maxlat": 40.7721803, + "maxlon": -73.9177431 + }, + "nodes": [ + 597443928, + 2447553693, + 3778263946, + 2447553694, + 9179198034, + 3778263926, + 42817491, + 3778263932 + ], + "geometry": [ + { "lat": 40.7721803, "lon": -73.9198031 }, + { "lat": 40.7713317, "lon": -73.9185879 }, + { "lat": 40.7712206, "lon": -73.9184362 }, + { "lat": 40.7711218, "lon": -73.9183054 }, + { "lat": 40.7710026, "lon": -73.9181578 }, + { "lat": 40.7708987, "lon": -73.9180354 }, + { "lat": 40.7707950, "lon": -73.9179052 }, + { "lat": 40.7706731, "lon": -73.9177431 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "I 278;GCP", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 122625716, + "bounds": { + "minlat": 40.7919574, + "minlon": -73.9248422, + "maxlat": 40.7976476, + "maxlon": -73.9199769 + }, + "nodes": [ + 9153831727, + 9153831732, + 9153831897, + 9902723842, + 9153831731, + 9153831730, + 9153831729, + 9153831728, + 1369722081, + 42449482, + 9153831896, + 9153831895, + 3640160618, + 9153831894, + 9153831893, + 9153831886, + 42449515 + ], + "geometry": [ + { "lat": 40.7976476, "lon": -73.9199769 }, + { "lat": 40.7968857, "lon": -73.9205492 }, + { "lat": 40.7967094, "lon": -73.9206873 }, + { "lat": 40.7965203, "lon": -73.9208359 }, + { "lat": 40.7963342, "lon": -73.9209840 }, + { "lat": 40.7961468, "lon": -73.9211373 }, + { "lat": 40.7959643, "lon": -73.9212876 }, + { "lat": 40.7957716, "lon": -73.9214469 }, + { "lat": 40.7955883, "lon": -73.9216059 }, + { "lat": 40.7935903, "lon": -73.9233555 }, + { "lat": 40.7933233, "lon": -73.9235899 }, + { "lat": 40.7930439, "lon": -73.9238299 }, + { "lat": 40.7927775, "lon": -73.9240698 }, + { "lat": 40.7925959, "lon": -73.9242305 }, + { "lat": 40.7924107, "lon": -73.9243918 }, + { "lat": 40.7922225, "lon": -73.9245641 }, + { "lat": 40.7919574, "lon": -73.9248422 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY;Queens, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Triborough;Brooklyn Queens", + "tiger:name_type_1": "Brg;Expy", + "toll": "yes", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 122625718, + "bounds": { + "minlat": 40.7919833, + "minlon": -73.9245916, + "maxlat": 40.7954099, + "maxlon": -73.9216134 + }, + "nodes": [ + 100662028, + 9153831773, + 100662030 + ], + "geometry": [ + { "lat": 40.7919833, "lon": -73.9245916 }, + { "lat": 40.7923905, "lon": -73.9242747 }, + { "lat": 40.7954099, "lon": -73.9216134 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "destination": "Bronx", + "destination:ref": "I 87 North;I 278 East", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 122625719, + "bounds": { + "minlat": 40.7954099, + "minlon": -73.9216134, + "maxlat": 40.7982030, + "maxlon": -73.9194260 + }, + "nodes": [ + 100662030, + 9153831775, + 9902723860, + 9153831774, + 9153831776, + 9153831777, + 9902723861, + 9902723862, + 9902723863, + 9902723864, + 100662032, + 277481765 + ], + "geometry": [ + { "lat": 40.7954099, "lon": -73.9216134 }, + { "lat": 40.7956041, "lon": -73.9214468 }, + { "lat": 40.7957875, "lon": -73.9212925 }, + { "lat": 40.7959716, "lon": -73.9211387 }, + { "lat": 40.7961591, "lon": -73.9209836 }, + { "lat": 40.7963477, "lon": -73.9208321 }, + { "lat": 40.7965360, "lon": -73.9206837 }, + { "lat": 40.7967206, "lon": -73.9205386 }, + { "lat": 40.7969131, "lon": -73.9203910 }, + { "lat": 40.7971042, "lon": -73.9202474 }, + { "lat": 40.7978244, "lon": -73.9197234 }, + { "lat": 40.7982030, "lon": -73.9194260 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 122660450, + "bounds": { + "minlat": 40.7008726, + "minlon": -73.9906344, + "maxlat": 40.7012877, + "maxlon": -73.9901171 + }, + "nodes": [ + 486819533, + 1258875449, + 7561173767 + ], + "geometry": [ + { "lat": 40.7008726, "lon": -73.9901171 }, + { "lat": 40.7010568, "lon": -73.9903522 }, + { "lat": 40.7012877, "lon": -73.9906344 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "embankment": "yes", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41:A49:A63", + "tiger:county": "Kings, NY;New York, NY", + "tiger:name_base": "Brooklyn", + "tiger:name_type": "Brg" + } +}, +{ + "type": "way", + "id": 122660454, + "bounds": { + "minlat": 40.7028174, + "minlon": -74.0084238, + "maxlat": 40.7061184, + "maxlon": -74.0032036 + }, + "nodes": [ + 4145704197, + 205019743, + 9907745094, + 9907745091, + 205019744, + 9907745089, + 205019745, + 9907745087, + 4145735067, + 9907745085, + 9907745084, + 370880734 + ], + "geometry": [ + { "lat": 40.7061184, "lon": -74.0032036 }, + { "lat": 40.7059815, "lon": -74.0034245 }, + { "lat": 40.7058541, "lon": -74.0036227 }, + { "lat": 40.7055467, "lon": -74.0040959 }, + { "lat": 40.7052670, "lon": -74.0045343 }, + { "lat": 40.7049754, "lon": -74.0049826 }, + { "lat": 40.7046852, "lon": -74.0054362 }, + { "lat": 40.7043772, "lon": -74.0059188 }, + { "lat": 40.7040869, "lon": -74.0063679 }, + { "lat": 40.7038023, "lon": -74.0068122 }, + { "lat": 40.7035266, "lon": -74.0072595 }, + { "lat": 40.7028174, "lon": -74.0084238 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "lanes:bus": "1", + "lanes:bus:conditional": "Mo-Fri 14:00-20:00", + "layer": "1", + "maxspeed": "30 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 122660455, + "bounds": { + "minlat": 40.7086699, + "minlon": -73.9983873, + "maxlat": 40.7090266, + "maxlon": -73.9968491 + }, + "nodes": [ + 205024444, + 205024445, + 4157854438, + 4157854439, + 205024447, + 4158644582, + 436764959, + 12301218036 + ], + "geometry": [ + { "lat": 40.7090266, "lon": -73.9968491 }, + { "lat": 40.7089380, "lon": -73.9974376 }, + { "lat": 40.7089068, "lon": -73.9975964 }, + { "lat": 40.7088771, "lon": -73.9977322 }, + { "lat": 40.7088495, "lon": -73.9978345 }, + { "lat": 40.7088143, "lon": -73.9979512 }, + { "lat": 40.7087852, "lon": -73.9980521 }, + { "lat": 40.7086699, "lon": -73.9983873 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "turn:lanes": "|slight_right|slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 122660459, + "bounds": { + "minlat": 40.7119069, + "minlon": -74.0044702, + "maxlat": 40.7120623, + "maxlon": -74.0042694 + }, + "nodes": [ + 1369956654, + 486819529 + ], + "geometry": [ + { "lat": 40.7120623, "lon": -74.0044702 }, + { "lat": 40.7119069, "lon": -74.0042694 } + ], + "tags": { + "bicycle": "no", + "bus": "no", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "1", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Centre Street", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 122660460, + "bounds": { + "minlat": 40.7114480, + "minlon": -74.0042694, + "maxlat": 40.7119069, + "maxlon": -74.0037138 + }, + "nodes": [ + 486819529, + 4158740807, + 486819531 + ], + "geometry": [ + { "lat": 40.7119069, "lon": -74.0042694 }, + { "lat": 40.7115118, "lon": -74.0037906 }, + { "lat": 40.7114480, "lon": -74.0037138 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "1", + "layer": "3", + "lit": "yes", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 122738248, + "bounds": { + "minlat": 40.7669595, + "minlon": -73.9071301, + "maxlat": 40.7687451, + "maxlon": -73.8973179 + }, + "nodes": [ + 106092173, + 10578103879, + 9179209219, + 3778933726, + 106090502, + 2433000857, + 10578103900, + 6163935025, + 9179198116, + 106090505, + 3778752978, + 9179198115, + 106090507, + 9179198114, + 106090508, + 10578103901, + 9179198112, + 10578103902, + 106090510, + 10578103903, + 106090512, + 9179198111, + 13174827120, + 13174827123 + ], + "geometry": [ + { "lat": 40.7669595, "lon": -73.8973179 }, + { "lat": 40.7670145, "lon": -73.8977125 }, + { "lat": 40.7670652, "lon": -73.8980915 }, + { "lat": 40.7671250, "lon": -73.8985094 }, + { "lat": 40.7671780, "lon": -73.8988699 }, + { "lat": 40.7680181, "lon": -73.9041416 }, + { "lat": 40.7680438, "lon": -73.9042920 }, + { "lat": 40.7680814, "lon": -73.9044935 }, + { "lat": 40.7681236, "lon": -73.9047093 }, + { "lat": 40.7681552, "lon": -73.9048531 }, + { "lat": 40.7681869, "lon": -73.9049883 }, + { "lat": 40.7682226, "lon": -73.9051251 }, + { "lat": 40.7682604, "lon": -73.9052611 }, + { "lat": 40.7682969, "lon": -73.9053911 }, + { "lat": 40.7684148, "lon": -73.9057965 }, + { "lat": 40.7684520, "lon": -73.9059285 }, + { "lat": 40.7684891, "lon": -73.9060721 }, + { "lat": 40.7685220, "lon": -73.9062059 }, + { "lat": 40.7685543, "lon": -73.9063386 }, + { "lat": 40.7685887, "lon": -73.9064841 }, + { "lat": 40.7686194, "lon": -73.9066221 }, + { "lat": 40.7686505, "lon": -73.9067633 }, + { "lat": 40.7686689, "lon": -73.9068544 }, + { "lat": 40.7687451, "lon": -73.9071301 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "GCP", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 122738256, + "bounds": { + "minlat": 40.7971720, + "minlon": -73.9300844, + "maxlat": 40.8013811, + "maxlon": -73.9293306 + }, + "nodes": [ + 9153700003, + 3786728569, + 42422470, + 3786728568, + 3786728567, + 371225089, + 371225088, + 3786728565, + 3786728564, + 371225911, + 3786728563, + 42422478, + 9153702853, + 3786728562, + 3786728561, + 9153702852, + 9153702851, + 42422481, + 42422486, + 9153702850, + 9153702849, + 371219092, + 3786728557 + ], + "geometry": [ + { "lat": 40.8013811, "lon": -73.9300844 }, + { "lat": 40.8009704, "lon": -73.9299623 }, + { "lat": 40.8008039, "lon": -73.9299269 }, + { "lat": 40.8006473, "lon": -73.9299008 }, + { "lat": 40.8004893, "lon": -73.9298878 }, + { "lat": 40.8003115, "lon": -73.9298859 }, + { "lat": 40.8001589, "lon": -73.9298866 }, + { "lat": 40.7996064, "lon": -73.9298866 }, + { "lat": 40.7995020, "lon": -73.9298817 }, + { "lat": 40.7993950, "lon": -73.9298782 }, + { "lat": 40.7992926, "lon": -73.9298592 }, + { "lat": 40.7991904, "lon": -73.9298300 }, + { "lat": 40.7990716, "lon": -73.9297908 }, + { "lat": 40.7989599, "lon": -73.9297517 }, + { "lat": 40.7987877, "lon": -73.9296884 }, + { "lat": 40.7986711, "lon": -73.9296472 }, + { "lat": 40.7985387, "lon": -73.9296066 }, + { "lat": 40.7983679, "lon": -73.9295623 }, + { "lat": 40.7979508, "lon": -73.9294565 }, + { "lat": 40.7977971, "lon": -73.9294228 }, + { "lat": 40.7976598, "lon": -73.9293943 }, + { "lat": 40.7975029, "lon": -73.9293735 }, + { "lat": 40.7971720, "lon": -73.9293306 } + ], + "tags": { + "destination": "FDR Drive South", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 122738257, + "bounds": { + "minlat": 40.7993152, + "minlon": -73.9298760, + "maxlat": 40.8012672, + "maxlon": -73.9291260 + }, + "nodes": [ + 42425681, + 3786728611, + 9153702840, + 371227944, + 371227976, + 371227977, + 42426923, + 9153702839, + 3786728695, + 9190083396 + ], + "geometry": [ + { "lat": 40.7993152, "lon": -73.9291260 }, + { "lat": 40.7995877, "lon": -73.9292344 }, + { "lat": 40.7997666, "lon": -73.9293102 }, + { "lat": 40.7998641, "lon": -73.9293583 }, + { "lat": 40.8000717, "lon": -73.9294631 }, + { "lat": 40.8002822, "lon": -73.9295548 }, + { "lat": 40.8004942, "lon": -73.9296369 }, + { "lat": 40.8006858, "lon": -73.9296992 }, + { "lat": 40.8009533, "lon": -73.9297814 }, + { "lat": 40.8012672, "lon": -73.9298760 } + ], + "tags": { + "destination:lanes": "none|East 135th Street;Madison Avenue Bridge;East 125th Street", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "surface": "asphalt", + "turn:lanes": "none|through;slight_right" + } +}, +{ + "type": "way", + "id": 122738258, + "bounds": { + "minlat": 40.8383154, + "minlon": -73.9334654, + "maxlat": 40.8386754, + "maxlon": -73.9332395 + }, + "nodes": [ + 371337269, + 60925389 + ], + "geometry": [ + { "lat": 40.8383154, "lon": -73.9334654 }, + { "lat": 40.8386754, "lon": -73.9332395 } + ], + "tags": { + "destination:lanes": "George Washington Bridge;Amsterdam Avenue;West 179th Street|George Washington Bridge;Amsterdam Avenue;West 179th Street|Dyckman Street;10th Avenue|Dyckman Street;10th Avenue", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East River:Harlem River", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10035", + "turn:lanes": "slight_left|slight_left|none|none" + } +}, +{ + "type": "way", + "id": 122738259, + "bounds": { + "minlat": 40.8070815, + "minlon": -73.9347341, + "maxlat": 40.8090357, + "maxlon": -73.9335118 + }, + "nodes": [ + 6511274595, + 9153700012, + 9153700011, + 373757522, + 373757523, + 3786741811, + 3786741812, + 371337149, + 6515268515, + 5959713759 + ], + "geometry": [ + { "lat": 40.8070815, "lon": -73.9335118 }, + { "lat": 40.8073295, "lon": -73.9337306 }, + { "lat": 40.8075448, "lon": -73.9339157 }, + { "lat": 40.8077641, "lon": -73.9340872 }, + { "lat": 40.8079730, "lon": -73.9342252 }, + { "lat": 40.8081771, "lon": -73.9343434 }, + { "lat": 40.8083867, "lon": -73.9344578 }, + { "lat": 40.8085947, "lon": -73.9345555 }, + { "lat": 40.8088437, "lon": -73.9346611 }, + { "lat": 40.8090357, "lon": -73.9347341 } + ], + "tags": { + "destination:lanes": "8th Avenue;West 155th Street|none|none;East 135th Street;Madison Avenue Bridge", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "smoothness": "good", + "surface": "concrete", + "turn:lanes": "none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 122738260, + "bounds": { + "minlat": 40.8342754, + "minlon": -73.9353609, + "maxlat": 40.8381261, + "maxlon": -73.9337510 + }, + "nodes": [ + 42444581, + 13768867416, + 9166241220, + 13768867414, + 373778270, + 12064353849, + 9166241143, + 12064353848, + 42426667, + 12064353847, + 42444577, + 12064353846, + 9166241142, + 12064353845, + 42444573, + 42444570, + 9166241141, + 42444567, + 42444564 + ], + "geometry": [ + { "lat": 40.8381261, "lon": -73.9337510 }, + { "lat": 40.8380280, "lon": -73.9338038 }, + { "lat": 40.8378747, "lon": -73.9338908 }, + { "lat": 40.8376580, "lon": -73.9340115 }, + { "lat": 40.8361992, "lon": -73.9348309 }, + { "lat": 40.8360960, "lon": -73.9348859 }, + { "lat": 40.8359959, "lon": -73.9349371 }, + { "lat": 40.8358843, "lon": -73.9349897 }, + { "lat": 40.8357981, "lon": -73.9350260 }, + { "lat": 40.8356938, "lon": -73.9350675 }, + { "lat": 40.8355866, "lon": -73.9351061 }, + { "lat": 40.8354815, "lon": -73.9351449 }, + { "lat": 40.8353757, "lon": -73.9351775 }, + { "lat": 40.8352674, "lon": -73.9352076 }, + { "lat": 40.8351590, "lon": -73.9352350 }, + { "lat": 40.8349366, "lon": -73.9352791 }, + { "lat": 40.8347189, "lon": -73.9353143 }, + { "lat": 40.8344942, "lon": -73.9353421 }, + { "lat": 40.8342754, "lon": -73.9353609 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "tiger:cfcc": "A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "Harlem River", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 122738264, + "bounds": { + "minlat": 40.8805596, + "minlon": -73.9181189, + "maxlat": 40.8816107, + "maxlon": -73.9168930 + }, + "nodes": [ + 12064288844, + 9129024053 + ], + "geometry": [ + { "lat": 40.8805596, "lon": -73.9181189 }, + { "lat": 40.8816107, "lon": -73.9168930 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 122738265, + "bounds": { + "minlat": 40.8414998, + "minlon": -73.9456414, + "maxlat": 40.8479225, + "maxlon": -73.9450510 + }, + "nodes": [ + 60917021, + 5871691028, + 7907916443, + 60917022, + 7907916463, + 7907883474, + 7907916414, + 7907916471, + 7907883482, + 60917023, + 7907916422, + 7907916389, + 60917024, + 7907916479, + 7907916437, + 7907916397, + 60927576, + 7907916487, + 7907916445, + 7907916405, + 7907883465, + 60927577, + 7907916454, + 7907916413, + 7907883473, + 60927578, + 7907916462, + 7907916421, + 7907883481, + 60927579, + 7907916470, + 7907916429, + 7907916388, + 7907916478, + 60927580, + 7907916404, + 7907916444, + 7907916486, + 7907916396, + 60927581, + 13765549402, + 7907916436, + 60928402 + ], + "geometry": [ + { "lat": 40.8479225, "lon": -73.9452408 }, + { "lat": 40.8476366, "lon": -73.9452402 }, + { "lat": 40.8475563, "lon": -73.9452382 }, + { "lat": 40.8469185, "lon": -73.9451880 }, + { "lat": 40.8466969, "lon": -73.9451703 }, + { "lat": 40.8464552, "lon": -73.9451532 }, + { "lat": 40.8461685, "lon": -73.9451361 }, + { "lat": 40.8458728, "lon": -73.9451185 }, + { "lat": 40.8457663, "lon": -73.9451129 }, + { "lat": 40.8456591, "lon": -73.9451066 }, + { "lat": 40.8454490, "lon": -73.9450960 }, + { "lat": 40.8447022, "lon": -73.9450533 }, + { "lat": 40.8446132, "lon": -73.9450519 }, + { "lat": 40.8445076, "lon": -73.9450510 }, + { "lat": 40.8444093, "lon": -73.9450512 }, + { "lat": 40.8442940, "lon": -73.9450521 }, + { "lat": 40.8441913, "lon": -73.9450559 }, + { "lat": 40.8440858, "lon": -73.9450595 }, + { "lat": 40.8439792, "lon": -73.9450641 }, + { "lat": 40.8438790, "lon": -73.9450718 }, + { "lat": 40.8437783, "lon": -73.9450799 }, + { "lat": 40.8436655, "lon": -73.9450915 }, + { "lat": 40.8435702, "lon": -73.9451024 }, + { "lat": 40.8434674, "lon": -73.9451146 }, + { "lat": 40.8433602, "lon": -73.9451289 }, + { "lat": 40.8432587, "lon": -73.9451438 }, + { "lat": 40.8431588, "lon": -73.9451602 }, + { "lat": 40.8430559, "lon": -73.9451771 }, + { "lat": 40.8429556, "lon": -73.9451940 }, + { "lat": 40.8428415, "lon": -73.9452168 }, + { "lat": 40.8427332, "lon": -73.9452401 }, + { "lat": 40.8426376, "lon": -73.9452627 }, + { "lat": 40.8425348, "lon": -73.9452877 }, + { "lat": 40.8424352, "lon": -73.9453142 }, + { "lat": 40.8423339, "lon": -73.9453402 }, + { "lat": 40.8422338, "lon": -73.9453687 }, + { "lat": 40.8421307, "lon": -73.9454007 }, + { "lat": 40.8420262, "lon": -73.9454336 }, + { "lat": 40.8419319, "lon": -73.9454652 }, + { "lat": 40.8418233, "lon": -73.9455026 }, + { "lat": 40.8418116, "lon": -73.9455074 }, + { "lat": 40.8416250, "lon": -73.9455842 }, + { "lat": 40.8414998, "lon": -73.9456414 } + ], + "tags": { + "destination": "Henry Hudson Parkway", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 122738266, + "bounds": { + "minlat": 40.7730023, + "minlon": -73.9931985, + "maxlat": 40.7811556, + "maxlon": -73.9871997 + }, + "nodes": [ + 1370721870, + 9168918153, + 9168918152, + 7908017353, + 3536466937, + 7910096912, + 61255001, + 7910096923, + 9168918150, + 61255003, + 7910096918, + 61254247 + ], + "geometry": [ + { "lat": 40.7730023, "lon": -73.9931985 }, + { "lat": 40.7745592, "lon": -73.9921618 }, + { "lat": 40.7748308, "lon": -73.9919754 }, + { "lat": 40.7750673, "lon": -73.9918097 }, + { "lat": 40.7797877, "lon": -73.9883688 }, + { "lat": 40.7799856, "lon": -73.9882232 }, + { "lat": 40.7801715, "lon": -73.9880836 }, + { "lat": 40.7803605, "lon": -73.9879292 }, + { "lat": 40.7805489, "lon": -73.9877676 }, + { "lat": 40.7807331, "lon": -73.9875984 }, + { "lat": 40.7809147, "lon": -73.9874269 }, + { "lat": 40.7811556, "lon": -73.9871997 } + ], + "tags": { + "alt_name": "12th Avenue", + "bridge": "yes", + "change": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "name": "West Side Highway", + "name:ru": "Вест-Сайд-Хайвей", + "not:name": "Henry Hudson Parkway", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "source:name": "https://en.wikipedia.org/wiki/West_Side_Highway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 122738269, + "bounds": { + "minlat": 40.8418145, + "minlon": -73.9454066, + "maxlat": 40.8439315, + "maxlon": -73.9449629 + }, + "nodes": [ + 7908589044, + 7908589083, + 7908575879, + 7908575866, + 60927644, + 7908588993, + 7908589007, + 7908589021, + 60927645, + 7908589035, + 7908589048, + 7908589061, + 60927646, + 7908589075, + 7908589088, + 7908575871, + 60927647, + 7908575884, + 7908588998, + 7908589012, + 7908589026 + ], + "geometry": [ + { "lat": 40.8418145, "lon": -73.9454066 }, + { "lat": 40.8419183, "lon": -73.9453741 }, + { "lat": 40.8420129, "lon": -73.9453415 }, + { "lat": 40.8421142, "lon": -73.9453076 }, + { "lat": 40.8422178, "lon": -73.9452748 }, + { "lat": 40.8423249, "lon": -73.9452434 }, + { "lat": 40.8424209, "lon": -73.9452163 }, + { "lat": 40.8425547, "lon": -73.9451832 }, + { "lat": 40.8426656, "lon": -73.9451563 }, + { "lat": 40.8427740, "lon": -73.9451310 }, + { "lat": 40.8428763, "lon": -73.9451097 }, + { "lat": 40.8429925, "lon": -73.9450872 }, + { "lat": 40.8430995, "lon": -73.9450685 }, + { "lat": 40.8432080, "lon": -73.9450486 }, + { "lat": 40.8433096, "lon": -73.9450318 }, + { "lat": 40.8434167, "lon": -73.9450163 }, + { "lat": 40.8435200, "lon": -73.9450028 }, + { "lat": 40.8436204, "lon": -73.9449907 }, + { "lat": 40.8437241, "lon": -73.9449803 }, + { "lat": 40.8438267, "lon": -73.9449714 }, + { "lat": 40.8439315, "lon": -73.9449629 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 122738270, + "bounds": { + "minlat": 40.8552517, + "minlon": -73.9397533, + "maxlat": 40.8615504, + "maxlon": -73.9348046 + }, + "nodes": [ + 60916831, + 42458579, + 42458581, + 374504172, + 10846058069, + 10846058068, + 374503479, + 10846058070, + 60916793, + 10846058071, + 60916794, + 10846058072, + 42458582, + 374504011, + 60916752, + 374504018, + 60916753, + 374503516, + 60916754, + 60916755, + 60916756, + 10846058073, + 374503539, + 60916757, + 10846058074, + 42458585, + 42458589, + 8898513809 + ], + "geometry": [ + { "lat": 40.8552517, "lon": -73.9397533 }, + { "lat": 40.8560870, "lon": -73.9390535 }, + { "lat": 40.8570845, "lon": -73.9382154 }, + { "lat": 40.8579282, "lon": -73.9375084 }, + { "lat": 40.8581225, "lon": -73.9373465 }, + { "lat": 40.8583338, "lon": -73.9371813 }, + { "lat": 40.8587733, "lon": -73.9368543 }, + { "lat": 40.8588603, "lon": -73.9367856 }, + { "lat": 40.8589449, "lon": -73.9367073 }, + { "lat": 40.8590288, "lon": -73.9366270 }, + { "lat": 40.8591055, "lon": -73.9365403 }, + { "lat": 40.8591998, "lon": -73.9364184 }, + { "lat": 40.8592917, "lon": -73.9362837 }, + { "lat": 40.8593889, "lon": -73.9361184 }, + { "lat": 40.8594948, "lon": -73.9359372 }, + { "lat": 40.8595901, "lon": -73.9357969 }, + { "lat": 40.8596899, "lon": -73.9356728 }, + { "lat": 40.8598888, "lon": -73.9354688 }, + { "lat": 40.8600675, "lon": -73.9353261 }, + { "lat": 40.8602464, "lon": -73.9352149 }, + { "lat": 40.8604821, "lon": -73.9351229 }, + { "lat": 40.8606130, "lon": -73.9350953 }, + { "lat": 40.8607488, "lon": -73.9350741 }, + { "lat": 40.8610215, "lon": -73.9350330 }, + { "lat": 40.8611576, "lon": -73.9349943 }, + { "lat": 40.8612864, "lon": -73.9349492 }, + { "lat": 40.8614156, "lon": -73.9348855 }, + { "lat": 40.8615504, "lon": -73.9348046 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 122738271, + "bounds": { + "minlat": 40.8381148, + "minlon": -73.9480680, + "maxlat": 40.8414998, + "maxlon": -73.9456414 + }, + "nodes": [ + 60928402, + 60929659, + 60928403, + 7907916423, + 7907916464, + 60928404, + 7907883475, + 60928405, + 7907916415, + 60928406, + 7907916456, + 7907883467, + 7907916407, + 7907916447, + 7907916399, + 7907916439, + 7907916481, + 595352917 + ], + "geometry": [ + { "lat": 40.8414998, "lon": -73.9456414 }, + { "lat": 40.8410297, "lon": -73.9458618 }, + { "lat": 40.8408398, "lon": -73.9459556 }, + { "lat": 40.8406466, "lon": -73.9460586 }, + { "lat": 40.8404496, "lon": -73.9461695 }, + { "lat": 40.8402597, "lon": -73.9462847 }, + { "lat": 40.8400733, "lon": -73.9464054 }, + { "lat": 40.8398914, "lon": -73.9465325 }, + { "lat": 40.8397037, "lon": -73.9466701 }, + { "lat": 40.8395255, "lon": -73.9468044 }, + { "lat": 40.8393482, "lon": -73.9469475 }, + { "lat": 40.8391715, "lon": -73.9470946 }, + { "lat": 40.8389937, "lon": -73.9472479 }, + { "lat": 40.8388247, "lon": -73.9473973 }, + { "lat": 40.8386546, "lon": -73.9475519 }, + { "lat": 40.8384879, "lon": -73.9477100 }, + { "lat": 40.8383154, "lon": -73.9478741 }, + { "lat": 40.8381148, "lon": -73.9480680 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 122741158, + "bounds": { + "minlat": 40.7275312, + "minlon": -73.9084086, + "maxlat": 40.7281418, + "maxlon": -73.9073957 + }, + "nodes": [ + 1370740692, + 479160255 + ], + "geometry": [ + { "lat": 40.7281418, "lon": -73.9084086 }, + { "lat": 40.7275312, "lon": -73.9073957 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "50 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 122741162, + "bounds": { + "minlat": 40.7414669, + "minlon": -73.9539927, + "maxlat": 40.7415620, + "maxlon": -73.9522665 + }, + "nodes": [ + 6594863440, + 9179073057, + 9983412375, + 4148924131, + 12222131886, + 6166333241, + 5676408048, + 9179070527, + 4148924193, + 11942100831 + ], + "geometry": [ + { "lat": 40.7414669, "lon": -73.9522665 }, + { "lat": 40.7414857, "lon": -73.9525047 }, + { "lat": 40.7415080, "lon": -73.9527326 }, + { "lat": 40.7415229, "lon": -73.9529078 }, + { "lat": 40.7415362, "lon": -73.9531151 }, + { "lat": 40.7415391, "lon": -73.9531854 }, + { "lat": 40.7415505, "lon": -73.9534214 }, + { "lat": 40.7415573, "lon": -73.9536296 }, + { "lat": 40.7415620, "lon": -73.9538322 }, + { "lat": 40.7415619, "lon": -73.9539927 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 122741173, + "bounds": { + "minlat": 40.7260964, + "minlon": -73.9068364, + "maxlat": 40.7273240, + "maxlon": -73.9025676 + }, + "nodes": [ + 597325451, + 479154858, + 9196080164, + 479154875, + 9196080163, + 479154889, + 9196080162, + 9196080161, + 479154905, + 9196080160, + 479154926, + 9196080159, + 479154944, + 9196080158, + 479154964 + ], + "geometry": [ + { "lat": 40.7260964, "lon": -73.9025676 }, + { "lat": 40.7261639, "lon": -73.9033886 }, + { "lat": 40.7262150, "lon": -73.9037200 }, + { "lat": 40.7262604, "lon": -73.9039739 }, + { "lat": 40.7263200, "lon": -73.9042509 }, + { "lat": 40.7263870, "lon": -73.9045285 }, + { "lat": 40.7264601, "lon": -73.9048014 }, + { "lat": 40.7265399, "lon": -73.9050671 }, + { "lat": 40.7266291, "lon": -73.9053284 }, + { "lat": 40.7267239, "lon": -73.9055865 }, + { "lat": 40.7268266, "lon": -73.9058407 }, + { "lat": 40.7269352, "lon": -73.9060897 }, + { "lat": 40.7270517, "lon": -73.9063344 }, + { "lat": 40.7271797, "lon": -73.9065805 }, + { "lat": 40.7273240, "lon": -73.9068364 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 124083371, + "bounds": { + "minlat": 40.8534734, + "minlon": -73.9633049, + "maxlat": 40.8538060, + "maxlon": -73.9615915 + }, + "nodes": [ + 1381944089, + 60810378, + 13759310534, + 13759310535, + 13759310536, + 13759310537, + 60810375, + 530754379 + ], + "geometry": [ + { "lat": 40.8534734, "lon": -73.9615915 }, + { "lat": 40.8536130, "lon": -73.9623477 }, + { "lat": 40.8536368, "lon": -73.9624632 }, + { "lat": 40.8536646, "lon": -73.9626009 }, + { "lat": 40.8536943, "lon": -73.9627448 }, + { "lat": 40.8537221, "lon": -73.9628819 }, + { "lat": 40.8537499, "lon": -73.9630211 }, + { "lat": 40.8538060, "lon": -73.9633049 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge (upper level)", + "bridge:name:etymology:wikidata": "Q23", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 124083376, + "bounds": { + "minlat": 40.8636854, + "minlon": -73.9558816, + "maxlat": 40.8648714, + "maxlon": -73.9551516 + }, + "nodes": [ + 1381944100, + 62885847, + 60810940, + 5362437318, + 7924729976, + 7924729981, + 7924762186, + 60810941 + ], + "geometry": [ + { "lat": 40.8648714, "lon": -73.9551516 }, + { "lat": 40.8645672, "lon": -73.9553116 }, + { "lat": 40.8641701, "lon": -73.9555466 }, + { "lat": 40.8640716, "lon": -73.9556110 }, + { "lat": 40.8639758, "lon": -73.9556753 }, + { "lat": 40.8638755, "lon": -73.9557436 }, + { "lat": 40.8637814, "lon": -73.9558100 }, + { "lat": 40.8636854, "lon": -73.9558816 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway" + } +}, +{ + "type": "way", + "id": 124083384, + "bounds": { + "minlat": 40.8620824, + "minlon": -73.9575465, + "maxlat": 40.8621926, + "maxlon": -73.9573991 + }, + "nodes": [ + 1381944096, + 8900052656 + ], + "geometry": [ + { "lat": 40.8621926, "lon": -73.9573991 }, + { "lat": 40.8620824, "lon": -73.9575465 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "no" + } +}, +{ + "type": "way", + "id": 124083386, + "bounds": { + "minlat": 40.8556587, + "minlon": -73.9622205, + "maxlat": 40.8594153, + "maxlon": -73.9598648 + }, + "nodes": [ + 60810551, + 12021372314, + 60810552, + 4801162414, + 60810553, + 13772860482, + 60810554, + 13772860500, + 60810555, + 7916466763, + 60810556, + 2400756973, + 7912952264, + 7912952253, + 60810558, + 7912952276, + 7912952251, + 7912952262, + 60810559, + 7912952273, + 7912952249, + 7912952260, + 7912952271, + 60810560, + 7912952283, + 7912952258, + 7912952269, + 60810561 + ], + "geometry": [ + { "lat": 40.8556587, "lon": -73.9622205 }, + { "lat": 40.8559859, "lon": -73.9619850 }, + { "lat": 40.8561796, "lon": -73.9618506 }, + { "lat": 40.8564027, "lon": -73.9617028 }, + { "lat": 40.8565625, "lon": -73.9616078 }, + { "lat": 40.8566971, "lon": -73.9615340 }, + { "lat": 40.8568196, "lon": -73.9614672 }, + { "lat": 40.8569538, "lon": -73.9613991 }, + { "lat": 40.8570721, "lon": -73.9613417 }, + { "lat": 40.8572443, "lon": -73.9612619 }, + { "lat": 40.8573909, "lon": -73.9611960 }, + { "lat": 40.8577705, "lon": -73.9610378 }, + { "lat": 40.8578824, "lon": -73.9609886 }, + { "lat": 40.8579945, "lon": -73.9609364 }, + { "lat": 40.8581064, "lon": -73.9608799 }, + { "lat": 40.8582113, "lon": -73.9608227 }, + { "lat": 40.8583201, "lon": -73.9607572 }, + { "lat": 40.8584246, "lon": -73.9606928 }, + { "lat": 40.8585315, "lon": -73.9606236 }, + { "lat": 40.8586347, "lon": -73.9605512 }, + { "lat": 40.8587394, "lon": -73.9604747 }, + { "lat": 40.8588476, "lon": -73.9603898 }, + { "lat": 40.8589401, "lon": -73.9603142 }, + { "lat": 40.8590427, "lon": -73.9602254 }, + { "lat": 40.8591365, "lon": -73.9601404 }, + { "lat": 40.8592328, "lon": -73.9600478 }, + { "lat": 40.8593251, "lon": -73.9599584 }, + { "lat": 40.8594153, "lon": -73.9598648 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 124083387, + "bounds": { + "minlat": 40.8544780, + "minlon": -73.9630017, + "maxlat": 40.8594822, + "maxlon": -73.9604510 + }, + "nodes": [ + 7921635527, + 7921635524, + 7921635521, + 12021372289, + 60811202, + 12021372285, + 13772860481, + 13772860494, + 13772860496, + 13772860487, + 13772860495, + 13772860488, + 13772860497, + 13772860498, + 13772860486, + 13772860499, + 13772860489, + 13772860492, + 13772860480, + 13772860491, + 13772860490, + 13772860493, + 60811207, + 60811208, + 6391353751, + 60811209, + 12021372300, + 7924347419, + 13772860484, + 7924347418, + 13772860485, + 60811210, + 13772860483, + 298787045 + ], + "geometry": [ + { "lat": 40.8594822, "lon": -73.9604510 }, + { "lat": 40.8593872, "lon": -73.9604968 }, + { "lat": 40.8592807, "lon": -73.9605481 }, + { "lat": 40.8591836, "lon": -73.9605912 }, + { "lat": 40.8590851, "lon": -73.9606336 }, + { "lat": 40.8582636, "lon": -73.9609860 }, + { "lat": 40.8577921, "lon": -73.9611888 }, + { "lat": 40.8572307, "lon": -73.9614405 }, + { "lat": 40.8571125, "lon": -73.9614935 }, + { "lat": 40.8569759, "lon": -73.9615584 }, + { "lat": 40.8568571, "lon": -73.9616178 }, + { "lat": 40.8567739, "lon": -73.9616625 }, + { "lat": 40.8567010, "lon": -73.9617017 }, + { "lat": 40.8566266, "lon": -73.9617437 }, + { "lat": 40.8565430, "lon": -73.9617902 }, + { "lat": 40.8564431, "lon": -73.9618514 }, + { "lat": 40.8563341, "lon": -73.9619171 }, + { "lat": 40.8561646, "lon": -73.9620274 }, + { "lat": 40.8559930, "lon": -73.9621419 }, + { "lat": 40.8558304, "lon": -73.9622531 }, + { "lat": 40.8555987, "lon": -73.9624187 }, + { "lat": 40.8555119, "lon": -73.9624770 }, + { "lat": 40.8553963, "lon": -73.9625524 }, + { "lat": 40.8553001, "lon": -73.9626149 }, + { "lat": 40.8552105, "lon": -73.9626704 }, + { "lat": 40.8551162, "lon": -73.9627244 }, + { "lat": 40.8550172, "lon": -73.9627771 }, + { "lat": 40.8549203, "lon": -73.9628252 }, + { "lat": 40.8548679, "lon": -73.9628513 }, + { "lat": 40.8548198, "lon": -73.9628730 }, + { "lat": 40.8547706, "lon": -73.9628952 }, + { "lat": 40.8547215, "lon": -73.9629149 }, + { "lat": 40.8546561, "lon": -73.9629387 }, + { "lat": 40.8544780, "lon": -73.9630017 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:advisory": "25 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 124794665, + "bounds": { + "minlat": 40.7451463, + "minlon": -73.9085789, + "maxlat": 40.7451837, + "maxlon": -73.9084300 + }, + "nodes": [ + 42870249, + 9950327753, + 42855339 + ], + "geometry": [ + { "lat": 40.7451463, "lon": -73.9084300 }, + { "lat": 40.7451620, "lon": -73.9084927 }, + { "lat": 40.7451837, "lon": -73.9085789 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 124794666, + "bounds": { + "minlat": 40.7424742, + "minlon": -73.9527543, + "maxlat": 40.7426909, + "maxlon": -73.9523902 + }, + "nodes": [ + 42844233, + 10225954372, + 2799469684 + ], + "geometry": [ + { "lat": 40.7424742, "lon": -73.9527543 }, + { "lat": 40.7425254, "lon": -73.9526766 }, + { "lat": 40.7426909, "lon": -73.9523902 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:traffic_mode": "parking", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Jackson Avenue", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 124794667, + "bounds": { + "minlat": 40.7429810, + "minlon": -73.9518215, + "maxlat": 40.7431897, + "maxlon": -73.9514078 + }, + "nodes": [ + 42832453, + 11211160090, + 8626128152, + 6769993777, + 42844241 + ], + "geometry": [ + { "lat": 40.7429810, "lon": -73.9518215 }, + { "lat": 40.7430000, "lon": -73.9517175 }, + { "lat": 40.7430496, "lon": -73.9516054 }, + { "lat": 40.7430842, "lon": -73.9515424 }, + { "lat": 40.7431897, "lon": -73.9514078 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Jackson Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through" + } +}, +{ + "type": "way", + "id": 124801530, + "bounds": { + "minlat": 40.7281418, + "minlon": -73.9159327, + "maxlat": 40.7309247, + "maxlon": -73.9084086 + }, + "nodes": [ + 479166942, + 479166950, + 9196051019, + 9196051020, + 9196051024, + 479166951, + 9196051026, + 479166953, + 9196051028, + 479166955, + 9196051030, + 479166957, + 9196051032, + 479161076, + 9196051072, + 479161080, + 9196051073, + 1370740692 + ], + "geometry": [ + { "lat": 40.7309247, "lon": -73.9159327 }, + { "lat": 40.7305114, "lon": -73.9144654 }, + { "lat": 40.7304432, "lon": -73.9141950 }, + { "lat": 40.7303744, "lon": -73.9139250 }, + { "lat": 40.7303049, "lon": -73.9136372 }, + { "lat": 40.7300115, "lon": -73.9123949 }, + { "lat": 40.7299423, "lon": -73.9121103 }, + { "lat": 40.7298658, "lon": -73.9118345 }, + { "lat": 40.7297819, "lon": -73.9115506 }, + { "lat": 40.7296927, "lon": -73.9112926 }, + { "lat": 40.7296005, "lon": -73.9110424 }, + { "lat": 40.7295005, "lon": -73.9107996 }, + { "lat": 40.7293839, "lon": -73.9105327 }, + { "lat": 40.7292666, "lon": -73.9102927 }, + { "lat": 40.7291489, "lon": -73.9100698 }, + { "lat": 40.7290080, "lon": -73.9098242 }, + { "lat": 40.7288670, "lon": -73.9095950 }, + { "lat": 40.7281418, "lon": -73.9084086 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "maxspeed": "50 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 124814435, + "bounds": { + "minlat": 40.7161881, + "minlon": -74.0091888, + "maxlat": 40.7182739, + "maxlon": -74.0088803 + }, + "nodes": [ + 42436322, + 8304497536, + 8304498507, + 42430571, + 8304498506, + 8304498501, + 42430529, + 8304498500, + 42429833, + 8304498520, + 42436326, + 8304498519, + 42436327 + ], + "geometry": [ + { "lat": 40.7161881, "lon": -74.0091888 }, + { "lat": 40.7162683, "lon": -74.0091826 }, + { "lat": 40.7168472, "lon": -74.0091184 }, + { "lat": 40.7169280, "lon": -74.0091078 }, + { "lat": 40.7169978, "lon": -74.0090971 }, + { "lat": 40.7172164, "lon": -74.0090677 }, + { "lat": 40.7172754, "lon": -74.0090579 }, + { "lat": 40.7173356, "lon": -74.0090486 }, + { "lat": 40.7175980, "lon": -74.0090000 }, + { "lat": 40.7178682, "lon": -74.0089530 }, + { "lat": 40.7179347, "lon": -74.0089396 }, + { "lat": 40.7180064, "lon": -74.0089269 }, + { "lat": 40.7182739, "lon": -74.0088803 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 125436141, + "bounds": { + "minlat": 40.7157492, + "minlon": -74.0016779, + "maxlat": 40.7176217, + "maxlon": -74.0002647 + }, + "nodes": [ + 42427305, + 7132560177, + 12198027578, + 12198027572, + 591567245, + 12197904845, + 7132560152, + 42427307, + 7132560178, + 12197904846, + 12197904832, + 7641859739, + 42427311 + ], + "geometry": [ + { "lat": 40.7157492, "lon": -74.0016779 }, + { "lat": 40.7158010, "lon": -74.0016358 }, + { "lat": 40.7158157, "lon": -74.0016238 }, + { "lat": 40.7162926, "lon": -74.0012709 }, + { "lat": 40.7163679, "lon": -74.0012161 }, + { "lat": 40.7168168, "lon": -74.0008887 }, + { "lat": 40.7168702, "lon": -74.0008528 }, + { "lat": 40.7169298, "lon": -74.0008126 }, + { "lat": 40.7169909, "lon": -74.0007714 }, + { "lat": 40.7170106, "lon": -74.0007581 }, + { "lat": 40.7175432, "lon": -74.0003278 }, + { "lat": 40.7175699, "lon": -74.0003064 }, + { "lat": 40.7176217, "lon": -74.0002647 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 125479715, + "bounds": { + "minlat": 40.7330707, + "minlon": -74.0063829, + "maxlat": 40.7365313, + "maxlon": -74.0058168 + }, + "nodes": [ + 42436393, + 11609529471, + 8307642010, + 42436396, + 8307642009, + 4207862997, + 8307642110, + 42436400, + 8307642109, + 8307463860, + 42436404, + 8307463859, + 4207862998, + 11609529503, + 42436407, + 11401831099, + 2076950449, + 6210448851, + 42436411 + ], + "geometry": [ + { "lat": 40.7330707, "lon": -74.0063829 }, + { "lat": 40.7331325, "lon": -74.0063734 }, + { "lat": 40.7336976, "lon": -74.0062865 }, + { "lat": 40.7337434, "lon": -74.0062788 }, + { "lat": 40.7338100, "lon": -74.0062675 }, + { "lat": 40.7341347, "lon": -74.0062078 }, + { "lat": 40.7343964, "lon": -74.0061675 }, + { "lat": 40.7344390, "lon": -74.0061609 }, + { "lat": 40.7345043, "lon": -74.0061502 }, + { "lat": 40.7350927, "lon": -74.0060541 }, + { "lat": 40.7351330, "lon": -74.0060475 }, + { "lat": 40.7351975, "lon": -74.0060369 }, + { "lat": 40.7355264, "lon": -74.0059831 }, + { "lat": 40.7357943, "lon": -74.0059401 }, + { "lat": 40.7358563, "lon": -74.0059343 }, + { "lat": 40.7359161, "lon": -74.0059232 }, + { "lat": 40.7362525, "lon": -74.0058746 }, + { "lat": 40.7364606, "lon": -74.0058314 }, + { "lat": 40.7365313, "lon": -74.0058168 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 125479721, + "bounds": { + "minlat": 40.7553300, + "minlon": -73.9911770, + "maxlat": 40.7559486, + "maxlon": -73.9907278 + }, + "nodes": [ + 42435654, + 1758008333, + 9538820168, + 42435657 + ], + "geometry": [ + { "lat": 40.7553300, "lon": -73.9911770 }, + { "lat": 40.7553899, "lon": -73.9911336 }, + { "lat": 40.7558967, "lon": -73.9907656 }, + { "lat": 40.7559486, "lon": -73.9907278 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "none|through|through|through;right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 125480075, + "bounds": { + "minlat": 40.7572335, + "minlon": -73.9897914, + "maxlat": 40.7577210, + "maxlon": -73.9894354 + }, + "nodes": [ + 42435663, + 9235539541, + 9469803476 + ], + "geometry": [ + { "lat": 40.7572335, "lon": -73.9897914 }, + { "lat": 40.7573308, "lon": -73.9897203 }, + { "lat": 40.7577210, "lon": -73.9894354 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 125525165, + "bounds": { + "minlat": 40.7131988, + "minlon": -73.9838874, + "maxlat": 40.7135531, + "maxlon": -73.9808346 + }, + "nodes": [ + 42432000, + 8310246529, + 4501160113, + 7153367758, + 4501160115, + 7499128117, + 7499128107, + 5805219956, + 7499128126, + 7499128108, + 42437775, + 4501160117, + 3659164546, + 8310246483, + 42427744 + ], + "geometry": [ + { "lat": 40.7131988, "lon": -73.9838874 }, + { "lat": 40.7132121, "lon": -73.9837925 }, + { "lat": 40.7132509, "lon": -73.9834557 }, + { "lat": 40.7132699, "lon": -73.9832906 }, + { "lat": 40.7133424, "lon": -73.9826618 }, + { "lat": 40.7133617, "lon": -73.9824947 }, + { "lat": 40.7133895, "lon": -73.9822538 }, + { "lat": 40.7133988, "lon": -73.9821730 }, + { "lat": 40.7134030, "lon": -73.9821366 }, + { "lat": 40.7134081, "lon": -73.9820923 }, + { "lat": 40.7134121, "lon": -73.9820571 }, + { "lat": 40.7134524, "lon": -73.9817077 }, + { "lat": 40.7135002, "lon": -73.9812927 }, + { "lat": 40.7135409, "lon": -73.9809406 }, + { "lat": 40.7135531, "lon": -73.9808346 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "foot": "use_sidepath", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 125525171, + "bounds": { + "minlat": 40.7124807, + "minlon": -73.9922797, + "maxlat": 40.7126536, + "maxlon": -73.9900158 + }, + "nodes": [ + 6330018917, + 8279851242, + 9010266057, + 7480301988, + 6330018915, + 8310246640, + 42437763 + ], + "geometry": [ + { "lat": 40.7124807, "lon": -73.9922797 }, + { "lat": 40.7124886, "lon": -73.9921763 }, + { "lat": 40.7124928, "lon": -73.9921190 }, + { "lat": 40.7125376, "lon": -73.9915211 }, + { "lat": 40.7126160, "lon": -73.9904718 }, + { "lat": 40.7126471, "lon": -73.9900949 }, + { "lat": 40.7126536, "lon": -73.9900158 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 125527383, + "bounds": { + "minlat": 40.7132542, + "minlon": -73.9775923, + "maxlat": 40.7146584, + "maxlon": -73.9768194 + }, + "nodes": [ + 42424641, + 9906966857, + 9906966848, + 9906966849, + 9906966850, + 42423295 + ], + "geometry": [ + { "lat": 40.7146584, "lon": -73.9768194 }, + { "lat": 40.7142933, "lon": -73.9770173 }, + { "lat": 40.7138836, "lon": -73.9772482 }, + { "lat": 40.7135702, "lon": -73.9774174 }, + { "lat": 40.7133869, "lon": -73.9775238 }, + { "lat": 40.7132542, "lon": -73.9775923 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 125527384, + "bounds": { + "minlat": 40.7124114, + "minlon": -73.9780068, + "maxlat": 40.7130646, + "maxlon": -73.9776047 + }, + "nodes": [ + 9906966855, + 11038072080, + 9906966851, + 9619793647, + 9907942848, + 42437519 + ], + "geometry": [ + { "lat": 40.7130646, "lon": -73.9776047 }, + { "lat": 40.7129702, "lon": -73.9776882 }, + { "lat": 40.7128872, "lon": -73.9777463 }, + { "lat": 40.7124406, "lon": -73.9779767 }, + { "lat": 40.7124256, "lon": -73.9779865 }, + { "lat": 40.7124114, "lon": -73.9780068 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 125528659, + "bounds": { + "minlat": 40.7245840, + "minlon": -73.9898675, + "maxlat": 40.7255809, + "maxlon": -73.9875020 + }, + "nodes": [ + 42437339, + 3834459528, + 8309479305, + 7977873343, + 4376122101, + 42437333 + ], + "geometry": [ + { "lat": 40.7245840, "lon": -73.9875020 }, + { "lat": 40.7246273, "lon": -73.9876048 }, + { "lat": 40.7246415, "lon": -73.9876385 }, + { "lat": 40.7255307, "lon": -73.9897496 }, + { "lat": 40.7255486, "lon": -73.9897908 }, + { "lat": 40.7255809, "lon": -73.9898675 } + ], + "tags": { + "alt_name:ko": "이스트 3번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 3rd Street", + "name:ko": "이스트 3rd 스트리트", + "name:ru": "Восточная 3-я стрит", + "name_1": "East 3 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 125774603, + "bounds": { + "minlat": 40.8058775, + "minlon": -73.9568013, + "maxlat": 40.8075511, + "maxlon": -73.9527966 + }, + "nodes": [ + 42432900, + 11840444667, + 10127369911, + 42435775, + 10127369913, + 13232597977, + 10127369915, + 42447330, + 8250876242, + 8238946740, + 8151881640, + 7004413974, + 42440125 + ], + "geometry": [ + { "lat": 40.8058775, "lon": -73.9527966 }, + { "lat": 40.8059388, "lon": -73.9529469 }, + { "lat": 40.8063081, "lon": -73.9538527 }, + { "lat": 40.8063523, "lon": -73.9539576 }, + { "lat": 40.8063996, "lon": -73.9540697 }, + { "lat": 40.8067727, "lon": -73.9549541 }, + { "lat": 40.8069264, "lon": -73.9553185 }, + { "lat": 40.8069655, "lon": -73.9554122 }, + { "lat": 40.8070070, "lon": -73.9555114 }, + { "lat": 40.8072089, "lon": -73.9559896 }, + { "lat": 40.8074764, "lon": -73.9566241 }, + { "lat": 40.8075002, "lon": -73.9566809 }, + { "lat": 40.8075511, "lon": -73.9568013 } + ], + "tags": { + "alt_name": "West 119 Street", + "highway": "residential", + "name": "West 119th Street", + "name:ru": "Западная 119-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 126074615, + "bounds": { + "minlat": 40.7723848, + "minlon": -73.9196895, + "maxlat": 40.7724775, + "maxlon": -73.9195788 + }, + "nodes": [ + 42802627, + 4535961903, + 1398606016 + ], + "geometry": [ + { "lat": 40.7724775, "lon": -73.9195788 }, + { "lat": 40.7723990, "lon": -73.9196718 }, + { "lat": 40.7723848, "lon": -73.9196895 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "27th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 126140593, + "bounds": { + "minlat": 40.8731938, + "minlon": -73.9115496, + "maxlat": 40.8732622, + "maxlon": -73.9114601 + }, + "nodes": [ + 1399181883, + 7477194676 + ], + "geometry": [ + { "lat": 40.8731938, "lon": -73.9115496 }, + { "lat": 40.8732622, "lon": -73.9114601 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Broadway Bridge", + "bridge:wikidata": "Q922869", + "bridge:wikipedia": "en:Broadway Bridge (Manhattan)", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q922869", + "wikipedia": "en:Broadway Bridge (Manhattan)" + } +}, +{ + "type": "way", + "id": 127690685, + "bounds": { + "minlat": 40.7155294, + "minlon": -74.0109232, + "maxlat": 40.7163041, + "maxlon": -74.0092468 + }, + "nodes": [ + 42431614, + 7410938056, + 8304497233, + 42431617 + ], + "geometry": [ + { "lat": 40.7155294, "lon": -74.0092468 }, + { "lat": 40.7155843, "lon": -74.0093661 }, + { "lat": 40.7162697, "lon": -74.0108485 }, + { "lat": 40.7163041, "lon": -74.0109232 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 127691870, + "bounds": { + "minlat": 40.7137475, + "minlon": -73.9939452, + "maxlat": 40.7142862, + "maxlon": -73.9939060 + }, + "nodes": [ + 42433542, + 11638918143, + 11638918144, + 8279851200, + 11638918070, + 11638918145, + 11638918158, + 6369613303, + 11638918172, + 42429636 + ], + "geometry": [ + { "lat": 40.7137475, "lon": -73.9939452 }, + { "lat": 40.7138058, "lon": -73.9939214 }, + { "lat": 40.7138368, "lon": -73.9939133 }, + { "lat": 40.7138657, "lon": -73.9939076 }, + { "lat": 40.7138956, "lon": -73.9939060 }, + { "lat": 40.7139573, "lon": -73.9939104 }, + { "lat": 40.7141780, "lon": -73.9939395 }, + { "lat": 40.7142300, "lon": -73.9939421 }, + { "lat": 40.7142574, "lon": -73.9939404 }, + { "lat": 40.7142862, "lon": -73.9939355 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Eldridge Street", + "name:en": "Eldridge Street", + "name:ko": "엘드리지 스트리트", + "name:zh": "愛烈治街", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q29950420", + "wikipedia": "en:Eldridge Street" + } +}, +{ + "type": "way", + "id": 127691871, + "bounds": { + "minlat": 40.7142862, + "minlon": -73.9939355, + "maxlat": 40.7144931, + "maxlon": -73.9938460 + }, + "nodes": [ + 42429636, + 11638918171, + 6369613307, + 12323757329 + ], + "geometry": [ + { "lat": 40.7142862, "lon": -73.9939355 }, + { "lat": 40.7143161, "lon": -73.9939300 }, + { "lat": 40.7143556, "lon": -73.9939172 }, + { "lat": 40.7144931, "lon": -73.9938460 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Eldridge Street", + "name:en": "Eldridge Street", + "name:ko": "엘드리지 스트리트", + "name:zh": "愛烈治街", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29950420", + "wikipedia": "en:Eldridge Street" + } +}, +{ + "type": "way", + "id": 127691872, + "bounds": { + "minlat": 40.7153571, + "minlon": -73.9933988, + "maxlat": 40.7176680, + "maxlon": -73.9922172 + }, + "nodes": [ + 7480410410, + 6369613316, + 6369625010, + 42429641, + 6369625008, + 5043087536, + 42429643 + ], + "geometry": [ + { "lat": 40.7153571, "lon": -73.9933988 }, + { "lat": 40.7154400, "lon": -73.9933568 }, + { "lat": 40.7164357, "lon": -73.9928491 }, + { "lat": 40.7164855, "lon": -73.9928237 }, + { "lat": 40.7165324, "lon": -73.9927997 }, + { "lat": 40.7175911, "lon": -73.9922566 }, + { "lat": 40.7176680, "lon": -73.9922172 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Eldridge Street", + "name:en": "Eldridge Street", + "name:ko": "엘드리지 스트리트", + "name:zh": "愛烈治街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29950420", + "wikipedia": "en:Eldridge Street" + } +}, +{ + "type": "way", + "id": 127693102, + "bounds": { + "minlat": 40.7336634, + "minlon": -73.9995234, + "maxlat": 40.7341463, + "maxlon": -73.9991816 + }, + "nodes": [ + 42430237, + 4320194257, + 4320194267, + 42421889 + ], + "geometry": [ + { "lat": 40.7336634, "lon": -73.9995234 }, + { "lat": 40.7337621, "lon": -73.9994523 }, + { "lat": 40.7340788, "lon": -73.9992263 }, + { "lat": 40.7341463, "lon": -73.9991816 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "jersey_barrier", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 127693103, + "bounds": { + "minlat": 40.7548420, + "minlon": -73.9841180, + "maxlat": 40.7561421, + "maxlon": -73.9831665 + }, + "nodes": [ + 42430333, + 8375523266, + 1751440889, + 10173043408, + 42430338, + 10173043412, + 10173121976, + 42430342 + ], + "geometry": [ + { "lat": 40.7548420, "lon": -73.9841180 }, + { "lat": 40.7549381, "lon": -73.9840473 }, + { "lat": 40.7549599, "lon": -73.9840313 }, + { "lat": 40.7554547, "lon": -73.9836688 }, + { "lat": 40.7555160, "lon": -73.9836240 }, + { "lat": 40.7555742, "lon": -73.9835813 }, + { "lat": 40.7560847, "lon": -73.9832084 }, + { "lat": 40.7561421, "lon": -73.9831665 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 127693199, + "bounds": { + "minlat": 40.7434761, + "minlon": -74.0063850, + "maxlat": 40.7446460, + "maxlon": -74.0035806 + }, + "nodes": [ + 42429664, + 10168486359, + 4555542099, + 4555542098, + 4555500073, + 4555542092, + 8310246378, + 42429663 + ], + "geometry": [ + { "lat": 40.7446460, "lon": -74.0063850 }, + { "lat": 40.7445965, "lon": -74.0062663 }, + { "lat": 40.7440004, "lon": -74.0048374 }, + { "lat": 40.7439569, "lon": -74.0047332 }, + { "lat": 40.7437702, "lon": -74.0042856 }, + { "lat": 40.7437363, "lon": -74.0042042 }, + { "lat": 40.7435168, "lon": -74.0036781 }, + { "lat": 40.7434761, "lon": -74.0035806 } + ], + "tags": { + "alt_name": "West 18 Street", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 18th Street", + "name:ru": "Западная 18-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 127693200, + "bounds": { + "minlat": 40.7446460, + "minlon": -74.0063850, + "maxlat": 40.7458171, + "maxlon": -74.0055340 + }, + "nodes": [ + 42429664, + 10168486361, + 10168486365, + 42454381, + 10168486369, + 6401966213, + 12181309667, + 10168486373, + 42427390 + ], + "geometry": [ + { "lat": 40.7446460, "lon": -74.0063850 }, + { "lat": 40.7447173, "lon": -74.0063321 }, + { "lat": 40.7451729, "lon": -74.0060022 }, + { "lat": 40.7452310, "lon": -74.0059600 }, + { "lat": 40.7452967, "lon": -74.0059123 }, + { "lat": 40.7456418, "lon": -74.0056615 }, + { "lat": 40.7457243, "lon": -74.0056017 }, + { "lat": 40.7457525, "lon": -74.0055812 }, + { "lat": 40.7458171, "lon": -74.0055340 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 127693383, + "bounds": { + "minlat": 40.7472165, + "minlon": -73.9970852, + "maxlat": 40.7486647, + "maxlon": -73.9960202 + }, + "nodes": [ + 42435632, + 10171484178, + 10170593071, + 42434810, + 10170593070, + 10170593059, + 42435633, + 10170593058, + 9469803473 + ], + "geometry": [ + { "lat": 40.7472165, "lon": -73.9970852 }, + { "lat": 40.7472616, "lon": -73.9970531 }, + { "lat": 40.7477809, "lon": -73.9966750 }, + { "lat": 40.7478363, "lon": -73.9966345 }, + { "lat": 40.7478863, "lon": -73.9965976 }, + { "lat": 40.7483684, "lon": -73.9962412 }, + { "lat": 40.7484350, "lon": -73.9961920 }, + { "lat": 40.7485033, "lon": -73.9961409 }, + { "lat": 40.7486647, "lon": -73.9960202 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 127693384, + "bounds": { + "minlat": 40.7390953, + "minlon": -74.0030301, + "maxlat": 40.7393750, + "maxlon": -74.0027775 + }, + "nodes": [ + 42429388, + 1825740017, + 6211334199, + 42432214 + ], + "geometry": [ + { "lat": 40.7390953, "lon": -74.0030301 }, + { "lat": 40.7391685, "lon": -74.0029414 }, + { "lat": 40.7392425, "lon": -74.0028827 }, + { "lat": 40.7393750, "lon": -74.0027775 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 127693388, + "bounds": { + "minlat": 40.7416415, + "minlon": -74.0048213, + "maxlat": 40.7418935, + "maxlon": -74.0046676 + }, + "nodes": [ + 10862160674, + 8262308747, + 387180916 + ], + "geometry": [ + { "lat": 40.7418935, "lon": -74.0046676 }, + { "lat": 40.7416927, "lon": -74.0047901 }, + { "lat": 40.7416415, "lon": -74.0048213 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 127845106, + "bounds": { + "minlat": 40.7484171, + "minlon": -73.9212452, + "maxlat": 40.7486602, + "maxlon": -73.9208660 + }, + "nodes": [ + 1414043440, + 1414043442 + ], + "geometry": [ + { "lat": 40.7484171, "lon": -73.9208660 }, + { "lat": 40.7486602, "lon": -73.9212452 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 127845107, + "bounds": { + "minlat": 40.7483334, + "minlon": -73.9208660, + "maxlat": 40.7484171, + "maxlon": -73.9205080 + }, + "nodes": [ + 1414043438, + 8593852963, + 1414043439, + 12374185414, + 1414043440 + ], + "geometry": [ + { "lat": 40.7483334, "lon": -73.9205080 }, + { "lat": 40.7483468, "lon": -73.9206204 }, + { "lat": 40.7483621, "lon": -73.9207302 }, + { "lat": 40.7483847, "lon": -73.9208027 }, + { "lat": 40.7484171, "lon": -73.9208660 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 127845108, + "bounds": { + "minlat": 40.7486602, + "minlon": -73.9216411, + "maxlat": 40.7491320, + "maxlon": -73.9212452 + }, + "nodes": [ + 1414043442, + 12374111066, + 12374111067, + 12374111077, + 12374111072, + 5444865943, + 5444865945, + 12374111070, + 12374111069, + 12374111071, + 12374111068, + 1414043447 + ], + "geometry": [ + { "lat": 40.7486602, "lon": -73.9212452 }, + { "lat": 40.7486865, "lon": -73.9212808 }, + { "lat": 40.7487048, "lon": -73.9213002 }, + { "lat": 40.7487242, "lon": -73.9213110 }, + { "lat": 40.7488155, "lon": -73.9213237 }, + { "lat": 40.7488650, "lon": -73.9213405 }, + { "lat": 40.7490307, "lon": -73.9213961 }, + { "lat": 40.7490771, "lon": -73.9214283 }, + { "lat": 40.7491061, "lon": -73.9214712 }, + { "lat": 40.7491284, "lon": -73.9215282 }, + { "lat": 40.7491320, "lon": -73.9215779 }, + { "lat": 40.7491262, "lon": -73.9216411 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 128578947, + "bounds": { + "minlat": 40.7717082, + "minlon": -73.9786146, + "maxlat": 40.7718100, + "maxlon": -73.9776645 + }, + "nodes": [ + 247222680, + 9908336694, + 1420632024, + 247223719, + 9170842294, + 5307238006, + 595371399, + 9908336693, + 5307238002, + 9170842295, + 5307238003, + 247223720 + ], + "geometry": [ + { "lat": 40.7717096, "lon": -73.9786146 }, + { "lat": 40.7717192, "lon": -73.9785504 }, + { "lat": 40.7717328, "lon": -73.9784824 }, + { "lat": 40.7717897, "lon": -73.9782583 }, + { "lat": 40.7718015, "lon": -73.9781967 }, + { "lat": 40.7718099, "lon": -73.9781298 }, + { "lat": 40.7718100, "lon": -73.9780724 }, + { "lat": 40.7718037, "lon": -73.9780131 }, + { "lat": 40.7717941, "lon": -73.9779557 }, + { "lat": 40.7717790, "lon": -73.9778903 }, + { "lat": 40.7717565, "lon": -73.9778122 }, + { "lat": 40.7717082, "lon": -73.9776645 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 128578950, + "bounds": { + "minlat": 40.7717019, + "minlon": -73.9788832, + "maxlat": 40.7717096, + "maxlon": -73.9786146 + }, + "nodes": [ + 1420632047, + 7802856344, + 9170842292, + 9170842293, + 247222680 + ], + "geometry": [ + { "lat": 40.7717060, "lon": -73.9788832 }, + { "lat": 40.7717021, "lon": -73.9788150 }, + { "lat": 40.7717019, "lon": -73.9787458 }, + { "lat": 40.7717051, "lon": -73.9786786 }, + { "lat": 40.7717096, "lon": -73.9786146 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "bridge": "yes", + "hgv": "destination", + "highway": "secondary", + "layer": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 128817017, + "bounds": { + "minlat": 40.7147262, + "minlon": -73.9616983, + "maxlat": 40.7203169, + "maxlon": -73.9527027 + }, + "nodes": [ + 42469503, + 6245642027, + 6245642029, + 42480055, + 6245642031, + 6235394728, + 42480062, + 6235394727, + 6212365385, + 42480066, + 6212365386, + 6248588446, + 42480069, + 6248588445, + 6235394630, + 42480071, + 6235394627, + 7071198461, + 6235394616, + 42480075, + 6235394617, + 8617429511, + 9785568215, + 42476576 + ], + "geometry": [ + { "lat": 40.7203169, "lon": -73.9616983 }, + { "lat": 40.7202778, "lon": -73.9616463 }, + { "lat": 40.7195653, "lon": -73.9605041 }, + { "lat": 40.7195210, "lon": -73.9604340 }, + { "lat": 40.7194820, "lon": -73.9603711 }, + { "lat": 40.7186800, "lon": -73.9590799 }, + { "lat": 40.7186360, "lon": -73.9590090 }, + { "lat": 40.7185950, "lon": -73.9589448 }, + { "lat": 40.7178782, "lon": -73.9577940 }, + { "lat": 40.7178350, "lon": -73.9577250 }, + { "lat": 40.7178081, "lon": -73.9576822 }, + { "lat": 40.7170737, "lon": -73.9565061 }, + { "lat": 40.7170320, "lon": -73.9564390 }, + { "lat": 40.7170037, "lon": -73.9563945 }, + { "lat": 40.7163040, "lon": -73.9552693 }, + { "lat": 40.7162520, "lon": -73.9551860 }, + { "lat": 40.7162018, "lon": -73.9551051 }, + { "lat": 40.7157251, "lon": -73.9543362 }, + { "lat": 40.7154781, "lon": -73.9539379 }, + { "lat": 40.7154330, "lon": -73.9538650 }, + { "lat": 40.7153989, "lon": -73.9538091 }, + { "lat": 40.7148199, "lon": -73.9528567 }, + { "lat": 40.7147927, "lon": -73.9528121 }, + { "lat": 40.7147262, "lon": -73.9527027 } + ], + "tags": { + "highway": "residential", + "name": "North 7th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "7th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 129002934, + "bounds": { + "minlat": 40.7186525, + "minlon": -73.9642713, + "maxlat": 40.7196969, + "maxlon": -73.9634800 + }, + "nodes": [ + 42469494, + 9794890515, + 1424163343, + 1424163340, + 1975910745, + 6226509052, + 1975910746, + 1975910747, + 1424163326, + 1975910748, + 1975910749, + 6226509051, + 5341048809, + 5341048806, + 11670618804, + 12973006746, + 1424163333 + ], + "geometry": [ + { "lat": 40.7186525, "lon": -73.9634800 }, + { "lat": 40.7187102, "lon": -73.9635751 }, + { "lat": 40.7187761, "lon": -73.9637116 }, + { "lat": 40.7188798, "lon": -73.9639658 }, + { "lat": 40.7190471, "lon": -73.9642326 }, + { "lat": 40.7190551, "lon": -73.9642443 }, + { "lat": 40.7190708, "lon": -73.9642586 }, + { "lat": 40.7190954, "lon": -73.9642713 }, + { "lat": 40.7191194, "lon": -73.9642706 }, + { "lat": 40.7191445, "lon": -73.9642620 }, + { "lat": 40.7191644, "lon": -73.9642489 }, + { "lat": 40.7192014, "lon": -73.9642151 }, + { "lat": 40.7192752, "lon": -73.9641376 }, + { "lat": 40.7193990, "lon": -73.9640054 }, + { "lat": 40.7194516, "lon": -73.9639493 }, + { "lat": 40.7196422, "lon": -73.9637458 }, + { "lat": 40.7196969, "lon": -73.9636874 } + ], + "tags": { + "highway": "residential", + "name": "North 4th Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 129080560, + "bounds": { + "minlat": 40.8755329, + "minlon": -73.9470508, + "maxlat": 40.8758842, + "maxlon": -73.9467263 + }, + "nodes": [ + 2214758020, + 1424873034, + 1424873032, + 5102220048, + 1424873029, + 5102220051, + 1424873028, + 5102220062, + 103220863, + 1424873030, + 5102220056, + 1424873031, + 103220864, + 1424873033, + 5102220047, + 103220865, + 1424873035, + 5102220053, + 2214758020 + ], + "geometry": [ + { "lat": 40.8758557, "lon": -73.9470169 }, + { "lat": 40.8757655, "lon": -73.9470508 }, + { "lat": 40.8756505, "lon": -73.9470450 }, + { "lat": 40.8755895, "lon": -73.9470248 }, + { "lat": 40.8755571, "lon": -73.9470045 }, + { "lat": 40.8755381, "lon": -73.9469536 }, + { "lat": 40.8755329, "lon": -73.9468861 }, + { "lat": 40.8755460, "lon": -73.9468310 }, + { "lat": 40.8755774, "lon": -73.9467969 }, + { "lat": 40.8756334, "lon": -73.9467585 }, + { "lat": 40.8757102, "lon": -73.9467263 }, + { "lat": 40.8757427, "lon": -73.9467311 }, + { "lat": 40.8757889, "lon": -73.9467537 }, + { "lat": 40.8758359, "lon": -73.9467906 }, + { "lat": 40.8758729, "lon": -73.9468200 }, + { "lat": 40.8758824, "lon": -73.9468275 }, + { "lat": 40.8758842, "lon": -73.9469228 }, + { "lat": 40.8758802, "lon": -73.9469787 }, + { "lat": 40.8758557, "lon": -73.9470169 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "junction": "roundabout", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 129080562, + "bounds": { + "minlat": 40.8758824, + "minlon": -73.9471012, + "maxlat": 40.8762549, + "maxlon": -73.9468275 + }, + "nodes": [ + 103220865, + 9682486641, + 5102220049 + ], + "geometry": [ + { "lat": 40.8758824, "lon": -73.9468275 }, + { "lat": 40.8759048, "lon": -73.9468440 }, + { "lat": 40.8762549, "lon": -73.9471012 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 129834314, + "bounds": { + "minlat": 40.7115731, + "minlon": -74.0119776, + "maxlat": 40.7120732, + "maxlon": -74.0105082 + }, + "nodes": [ + 1431790464, + 12027842145, + 12027842146, + 8262936393, + 11301575805, + 8262936507, + 8840333839 + ], + "geometry": [ + { "lat": 40.7120732, "lon": -74.0119776 }, + { "lat": 40.7120475, "lon": -74.0119192 }, + { "lat": 40.7120359, "lon": -74.0118912 }, + { "lat": 40.7120243, "lon": -74.0118616 }, + { "lat": 40.7120017, "lon": -74.0117971 }, + { "lat": 40.7115913, "lon": -74.0105534 }, + { "lat": 40.7115731, "lon": -74.0105082 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "lane_markings": "no", + "lanes": "1", + "lit": "no", + "maxspeed:advisory": "5 mph", + "motor_vehicle": "no", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "name:ru": "Фултон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 129834316, + "bounds": { + "minlat": 40.7091384, + "minlon": -74.0130890, + "maxlat": 40.7096833, + "maxlon": -74.0128433 + }, + "nodes": [ + 42434413, + 10288473158, + 5487737822, + 42436192, + 11415663284, + 42436187 + ], + "geometry": [ + { "lat": 40.7096833, "lon": -74.0128433 }, + { "lat": 40.7096556, "lon": -74.0128560 }, + { "lat": 40.7094844, "lon": -74.0129340 }, + { "lat": 40.7093852, "lon": -74.0129792 }, + { "lat": 40.7092153, "lon": -74.0130548 }, + { "lat": 40.7091384, "lon": -74.0130890 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 132500830, + "bounds": { + "minlat": 40.8740632, + "minlon": -73.9104120, + "maxlat": 40.8744789, + "maxlon": -73.9097424 + }, + "nodes": [ + 1399181886, + 3966664775, + 1544809875, + 1544809874, + 10128431624 + ], + "geometry": [ + { "lat": 40.8740632, "lon": -73.9104120 }, + { "lat": 40.8741237, "lon": -73.9103306 }, + { "lat": 40.8743453, "lon": -73.9099716 }, + { "lat": 40.8744542, "lon": -73.9097785 }, + { "lat": 40.8744789, "lon": -73.9097424 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 132500852, + "bounds": { + "minlat": 40.8678058, + "minlon": -73.9311686, + "maxlat": 40.8687597, + "maxlon": -73.9300052 + }, + "nodes": [ + 4515465265, + 11587266210, + 42431666 + ], + "geometry": [ + { "lat": 40.8687597, "lon": -73.9311686 }, + { "lat": 40.8680901, "lon": -73.9303524 }, + { "lat": 40.8678058, "lon": -73.9300052 } + ], + "tags": { + "alt_name": "West 200th Street", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "inline_skates": "yes", + "lanes": "2", + "maxheight": "default", + "maxspeed": "20 mph", + "name": "Dyckman Street", + "surface": "asphalt", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 132500868, + "bounds": { + "minlat": 40.8772422, + "minlon": -73.9177695, + "maxlat": 40.8793582, + "maxlon": -73.9123686 + }, + "nodes": [ + 42733228, + 10132643451, + 1545109720, + 1545109725, + 42733233, + 1545109740, + 1545109714, + 1545109737, + 1545109736, + 1545109721, + 1545109712, + 1545109738, + 1545109713, + 42733237, + 1545109726, + 1545109717, + 1545136715, + 42733253 + ], + "geometry": [ + { "lat": 40.8772422, "lon": -73.9177695 }, + { "lat": 40.8772834, "lon": -73.9176979 }, + { "lat": 40.8773855, "lon": -73.9175208 }, + { "lat": 40.8777815, "lon": -73.9167871 }, + { "lat": 40.8778714, "lon": -73.9166000 }, + { "lat": 40.8779279, "lon": -73.9164076 }, + { "lat": 40.8779645, "lon": -73.9161730 }, + { "lat": 40.8779696, "lon": -73.9159622 }, + { "lat": 40.8779594, "lon": -73.9157664 }, + { "lat": 40.8779621, "lon": -73.9155059 }, + { "lat": 40.8779675, "lon": -73.9153099 }, + { "lat": 40.8779941, "lon": -73.9150529 }, + { "lat": 40.8780452, "lon": -73.9147984 }, + { "lat": 40.8781059, "lon": -73.9145589 }, + { "lat": 40.8782032, "lon": -73.9143057 }, + { "lat": 40.8783105, "lon": -73.9140514 }, + { "lat": 40.8791971, "lon": -73.9126034 }, + { "lat": 40.8793582, "lon": -73.9123686 } + ], + "tags": { + "highway": "tertiary", + "name": "Johnson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Johnson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 132500869, + "bounds": { + "minlat": 40.8806886, + "minlon": -73.9203072, + "maxlat": 40.8827190, + "maxlon": -73.9193107 + }, + "nodes": [ + 42747780, + 2520341972, + 1545207085, + 1545207048, + 1545207093, + 1545207068, + 42747785, + 2520341962, + 2520207197, + 1545207090, + 1545207056, + 1545207063, + 1545207050, + 2520260839, + 2520260863, + 1545207079, + 10130976936, + 10130977123, + 10130976937, + 10130976938, + 42747790 + ], + "geometry": [ + { "lat": 40.8806886, "lon": -73.9193107 }, + { "lat": 40.8807523, "lon": -73.9193923 }, + { "lat": 40.8808206, "lon": -73.9194799 }, + { "lat": 40.8809360, "lon": -73.9196094 }, + { "lat": 40.8810138, "lon": -73.9196725 }, + { "lat": 40.8811200, "lon": -73.9197141 }, + { "lat": 40.8812300, "lon": -73.9197291 }, + { "lat": 40.8815026, "lon": -73.9197355 }, + { "lat": 40.8817118, "lon": -73.9197405 }, + { "lat": 40.8818401, "lon": -73.9197435 }, + { "lat": 40.8819423, "lon": -73.9197508 }, + { "lat": 40.8820553, "lon": -73.9197775 }, + { "lat": 40.8821767, "lon": -73.9198299 }, + { "lat": 40.8823841, "lon": -73.9199672 }, + { "lat": 40.8824190, "lon": -73.9199887 }, + { "lat": 40.8825899, "lon": -73.9200926 }, + { "lat": 40.8826458, "lon": -73.9201415 }, + { "lat": 40.8826675, "lon": -73.9201843 }, + { "lat": 40.8826833, "lon": -73.9202155 }, + { "lat": 40.8826884, "lon": -73.9202283 }, + { "lat": 40.8827190, "lon": -73.9203072 } + ], + "tags": { + "highway": "residential", + "name": "Kappock Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Kappock", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 132500870, + "bounds": { + "minlat": 40.8803639, + "minlon": -73.9193107, + "maxlat": 40.8806886, + "maxlon": -73.9178887 + }, + "nodes": [ + 42747780, + 10130977088, + 1545207060, + 12064370400, + 2520194905, + 12064370399, + 12064370401, + 12064370398, + 374457913, + 12064370403, + 12064370404, + 12064370405, + 2520194956, + 12064370406, + 12064370407 + ], + "geometry": [ + { "lat": 40.8806886, "lon": -73.9193107 }, + { "lat": 40.8806578, "lon": -73.9192297 }, + { "lat": 40.8806417, "lon": -73.9191748 }, + { "lat": 40.8806341, "lon": -73.9191440 }, + { "lat": 40.8806283, "lon": -73.9191155 }, + { "lat": 40.8805326, "lon": -73.9185580 }, + { "lat": 40.8805229, "lon": -73.9185048 }, + { "lat": 40.8805118, "lon": -73.9184504 }, + { "lat": 40.8804437, "lon": -73.9181446 }, + { "lat": 40.8804355, "lon": -73.9181119 }, + { "lat": 40.8804252, "lon": -73.9180749 }, + { "lat": 40.8804135, "lon": -73.9180357 }, + { "lat": 40.8803990, "lon": -73.9179892 }, + { "lat": 40.8803805, "lon": -73.9179364 }, + { "lat": 40.8803639, "lon": -73.9178887 } + ], + "tags": { + "highway": "tertiary", + "name": "Kappock Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Kappock", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 132500882, + "bounds": { + "minlat": 40.8772238, + "minlon": -73.9090578, + "maxlat": 40.8778411, + "maxlon": -73.9084513 + }, + "nodes": [ + 42435567, + 10868090805, + 42443997, + 42444009 + ], + "geometry": [ + { "lat": 40.8772238, "lon": -73.9090578 }, + { "lat": 40.8772912, "lon": -73.9089895 }, + { "lat": 40.8774651, "lon": -73.9088162 }, + { "lat": 40.8778411, "lon": -73.9084513 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "foot": "yes", + "highway": "residential", + "inline_skates": "yes", + "lane_markings": "yes", + "name": "Marble Hill Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Marble Hill", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463" + } +}, +{ + "type": "way", + "id": 132500932, + "bounds": { + "minlat": 40.8724990, + "minlon": -73.9184590, + "maxlat": 40.8730220, + "maxlon": -73.9171760 + }, + "nodes": [ + 42429708, + 9561209099, + 7249923670, + 5828423894, + 42429709 + ], + "geometry": [ + { "lat": 40.8724990, "lon": -73.9171760 }, + { "lat": 40.8725472, "lon": -73.9172941 }, + { "lat": 40.8725780, "lon": -73.9173697 }, + { "lat": 40.8727089, "lon": -73.9176909 }, + { "lat": 40.8730220, "lon": -73.9184590 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "West 218th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "218th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034" + } +}, +{ + "type": "way", + "id": 132500933, + "bounds": { + "minlat": 40.8743360, + "minlon": -73.9110993, + "maxlat": 40.8746713, + "maxlon": -73.9104341 + }, + "nodes": [ + 42427934, + 9377187351, + 7612920598, + 7779712806 + ], + "geometry": [ + { "lat": 40.8746713, "lon": -73.9110993 }, + { "lat": 40.8744189, "lon": -73.9105949 }, + { "lat": 40.8743723, "lon": -73.9105017 }, + { "lat": 40.8743360, "lon": -73.9104341 } + ], + "tags": { + "alt_name": "West 225 Street", + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "yes", + "highway": "residential", + "inline_skates": "yes", + "lane_markings": "yes", + "lanes": "1", + "lcn": "yes", + "name": "West 225th Street", + "oneway": "yes", + "oneway:bicycle": "dismount", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "225th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 132500934, + "bounds": { + "minlat": 40.8772238, + "minlon": -73.9100278, + "maxlat": 40.8778412, + "maxlon": -73.9090578 + }, + "nodes": [ + 42435567, + 2302043706, + 1545097371, + 1545097318, + 42431724 + ], + "geometry": [ + { "lat": 40.8772238, "lon": -73.9090578 }, + { "lat": 40.8772761, "lon": -73.9091425 }, + { "lat": 40.8776542, "lon": -73.9096606 }, + { "lat": 40.8777568, "lon": -73.9098269 }, + { "lat": 40.8778412, "lon": -73.9100278 } + ], + "tags": { + "alt_name": "West 228 Street", + "bicycle": "yes", + "cycleway": "shared_lane", + "foot": "yes", + "highway": "residential", + "inline_skates": "yes", + "lcn": "yes", + "name": "West 228th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "228th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 133804489, + "bounds": { + "minlat": 40.7270439, + "minlon": -73.9572233, + "maxlat": 40.7304885, + "maxlon": -73.9462406 + }, + "nodes": [ + 42496839, + 9789402727, + 42488139, + 9920934979, + 9998478148, + 9998478149, + 42496846, + 9998478147, + 42496848, + 9925275983, + 7725544398, + 9789402855, + 9788947509, + 9788947500, + 7725544403, + 9788947498, + 9785884659, + 7725544399, + 9785884658, + 8097222293, + 7725544402, + 8097222254, + 8097222281, + 7725544401, + 8097222243, + 8097222237, + 7725544404, + 7725544400, + 8097222261, + 9925275973, + 42496869, + 9925275974, + 42478909, + 9927158597, + 42496874, + 9927158596, + 9788947252, + 42496878, + 9788947254, + 9788947271, + 7725544396 + ], + "geometry": [ + { "lat": 40.7270439, "lon": -73.9572233 }, + { "lat": 40.7270557, "lon": -73.9571181 }, + { "lat": 40.7270726, "lon": -73.9569301 }, + { "lat": 40.7270824, "lon": -73.9568301 }, + { "lat": 40.7271222, "lon": -73.9564044 }, + { "lat": 40.7271273, "lon": -73.9563653 }, + { "lat": 40.7271334, "lon": -73.9563332 }, + { "lat": 40.7271416, "lon": -73.9563026 }, + { "lat": 40.7273053, "lon": -73.9558161 }, + { "lat": 40.7275503, "lon": -73.9550462 }, + { "lat": 40.7275710, "lon": -73.9549835 }, + { "lat": 40.7275920, "lon": -73.9549199 }, + { "lat": 40.7278124, "lon": -73.9542733 }, + { "lat": 40.7278312, "lon": -73.9542158 }, + { "lat": 40.7278571, "lon": -73.9541355 }, + { "lat": 40.7278813, "lon": -73.9540633 }, + { "lat": 40.7281095, "lon": -73.9533636 }, + { "lat": 40.7281381, "lon": -73.9532771 }, + { "lat": 40.7281656, "lon": -73.9531934 }, + { "lat": 40.7283993, "lon": -73.9524943 }, + { "lat": 40.7284210, "lon": -73.9524262 }, + { "lat": 40.7284482, "lon": -73.9523438 }, + { "lat": 40.7286764, "lon": -73.9516372 }, + { "lat": 40.7286975, "lon": -73.9515716 }, + { "lat": 40.7287195, "lon": -73.9515040 }, + { "lat": 40.7289517, "lon": -73.9508060 }, + { "lat": 40.7289764, "lon": -73.9507224 }, + { "lat": 40.7290212, "lon": -73.9505853 }, + { "lat": 40.7290458, "lon": -73.9505120 }, + { "lat": 40.7292202, "lon": -73.9499832 }, + { "lat": 40.7292440, "lon": -73.9499110 }, + { "lat": 40.7292670, "lon": -73.9498416 }, + { "lat": 40.7295180, "lon": -73.9490830 }, + { "lat": 40.7297671, "lon": -73.9483274 }, + { "lat": 40.7297910, "lon": -73.9482550 }, + { "lat": 40.7298124, "lon": -73.9481901 }, + { "lat": 40.7300423, "lon": -73.9474929 }, + { "lat": 40.7300640, "lon": -73.9474270 }, + { "lat": 40.7300857, "lon": -73.9473638 }, + { "lat": 40.7304371, "lon": -73.9463374 }, + { "lat": 40.7304885, "lon": -73.9462406 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Calyer Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 134203433, + "bounds": { + "minlat": 40.7032401, + "minlon": -73.9347934, + "maxlat": 40.7039335, + "maxlon": -73.9345641 + }, + "nodes": [ + 42529847, + 9744012861, + 9744012857, + 9744012851, + 42509037 + ], + "geometry": [ + { "lat": 40.7032401, "lon": -73.9345641 }, + { "lat": 40.7033081, "lon": -73.9345866 }, + { "lat": 40.7038270, "lon": -73.9347582 }, + { "lat": 40.7038732, "lon": -73.9347735 }, + { "lat": 40.7039335, "lon": -73.9347934 } + ], + "tags": { + "highway": "residential", + "name": "White Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 134484064, + "bounds": { + "minlat": 40.7407719, + "minlon": -73.9725332, + "maxlat": 40.7407963, + "maxlon": -73.9724042 + }, + "nodes": [ + 1478572209, + 9913607191, + 9141029112, + 9141029108, + 1478572211 + ], + "geometry": [ + { "lat": 40.7407804, "lon": -73.9725332 }, + { "lat": 40.7407741, "lon": -73.9724873 }, + { "lat": 40.7407719, "lon": -73.9724604 }, + { "lat": 40.7407737, "lon": -73.9724067 }, + { "lat": 40.7407963, "lon": -73.9724042 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 138613113, + "bounds": { + "minlat": 40.8517109, + "minlon": -73.9656693, + "maxlat": 40.8518901, + "maxlon": -73.9648076 + }, + "nodes": [ + 1519930696, + 10000920057, + 5106302143, + 5449433350, + 5449433352, + 103154295 + ], + "geometry": [ + { "lat": 40.8517109, "lon": -73.9648076 }, + { "lat": 40.8517152, "lon": -73.9649040 }, + { "lat": 40.8517175, "lon": -73.9649358 }, + { "lat": 40.8517734, "lon": -73.9651685 }, + { "lat": 40.8518314, "lon": -73.9654175 }, + { "lat": 40.8518901, "lon": -73.9656693 } + ], + "tags": { + "highway": "residential", + "name": "Central Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 138613411, + "bounds": { + "minlat": 40.8497137, + "minlon": -73.9653917, + "maxlat": 40.8506647, + "maxlon": -73.9646517 + }, + "nodes": [ + 103191202, + 1519930691, + 12072538053, + 5106308506, + 12072538054, + 1519930688, + 12072538055, + 1519930625, + 12072538057, + 12072538056, + 12072538065, + 12072538064, + 12072538066, + 8150030336, + 5449368215, + 9523617186, + 103195190 + ], + "geometry": [ + { "lat": 40.8506647, "lon": -73.9653917 }, + { "lat": 40.8505708, "lon": -73.9652131 }, + { "lat": 40.8505434, "lon": -73.9651636 }, + { "lat": 40.8505135, "lon": -73.9651164 }, + { "lat": 40.8504801, "lon": -73.9650712 }, + { "lat": 40.8504446, "lon": -73.9650333 }, + { "lat": 40.8503983, "lon": -73.9649878 }, + { "lat": 40.8503520, "lon": -73.9649479 }, + { "lat": 40.8502916, "lon": -73.9649022 }, + { "lat": 40.8502311, "lon": -73.9648622 }, + { "lat": 40.8501739, "lon": -73.9648309 }, + { "lat": 40.8501166, "lon": -73.9648026 }, + { "lat": 40.8500568, "lon": -73.9647782 }, + { "lat": 40.8499970, "lon": -73.9647586 }, + { "lat": 40.8499362, "lon": -73.9647404 }, + { "lat": 40.8498926, "lon": -73.9647332 }, + { "lat": 40.8497137, "lon": -73.9646517 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 138613582, + "bounds": { + "minlat": 40.8517109, + "minlon": -73.9648076, + "maxlat": 40.8523996, + "maxlon": -73.9644805 + }, + "nodes": [ + 3659262410, + 3659262409, + 5449368214, + 10000920031, + 10000920058, + 1519930696 + ], + "geometry": [ + { "lat": 40.8523996, "lon": -73.9644805 }, + { "lat": 40.8521833, "lon": -73.9645333 }, + { "lat": 40.8519495, "lon": -73.9646957 }, + { "lat": 40.8518047, "lon": -73.9647632 }, + { "lat": 40.8517801, "lon": -73.9647747 }, + { "lat": 40.8517109, "lon": -73.9648076 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 139919646, + "bounds": { + "minlat": 40.7703090, + "minlon": -73.9194910, + "maxlat": 40.7704400, + "maxlon": -73.9189980 + }, + "nodes": [ + 42833306, + 6453002248, + 42935204 + ], + "geometry": [ + { "lat": 40.7704400, "lon": -73.9194910 }, + { "lat": 40.7704228, "lon": -73.9194263 }, + { "lat": 40.7703090, "lon": -73.9189980 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Astoria Boulevard South", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Astoria", + "tiger:name_base_1": "Astoria", + "tiger:name_direction_suffix_1": "S", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "name", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 139919706, + "bounds": { + "minlat": 40.7539458, + "minlon": -73.9976109, + "maxlat": 40.7543104, + "maxlon": -73.9973473 + }, + "nodes": [ + 9971300853, + 8261123379, + 42434427 + ], + "geometry": [ + { "lat": 40.7543104, "lon": -73.9973473 }, + { "lat": 40.7540469, "lon": -73.9975337 }, + { "lat": 40.7539458, "lon": -73.9976109 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv:backward": "no", + "hgv:forward": "designated", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "sidewalk": "separate", + "source:hgv:forward": "Rules of the City of New York Title 34 §4-13 http://24.97.137.100/nyc/rcny/Title34_4-13.asp", + "surface": "asphalt", + "turn:lanes:forward": "left|right", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 139919714, + "bounds": { + "minlat": 40.7546523, + "minlon": -73.9969903, + "maxlat": 40.7551147, + "maxlon": -73.9963969 + }, + "nodes": [ + 11144700326, + 9971300856, + 593976798, + 9971300855, + 8261123407, + 427842070 + ], + "geometry": [ + { "lat": 40.7546523, "lon": -73.9969903 }, + { "lat": 40.7547202, "lon": -73.9969109 }, + { "lat": 40.7547804, "lon": -73.9968435 }, + { "lat": 40.7548303, "lon": -73.9967824 }, + { "lat": 40.7550668, "lon": -73.9964703 }, + { "lat": 40.7551147, "lon": -73.9963969 } + ], + "tags": { + "bicycle": "no", + "destination": "Lincoln Tunnel;New Jersey", + "foot": "no", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 139934550, + "bounds": { + "minlat": 40.7720154, + "minlon": -73.9331631, + "maxlat": 40.7720464, + "maxlon": -73.9322382 + }, + "nodes": [ + 9650262373, + 13185640927, + 9650262371, + 11308870993, + 7745197942 + ], + "geometry": [ + { "lat": 40.7720464, "lon": -73.9331631 }, + { "lat": 40.7720210, "lon": -73.9330786 }, + { "lat": 40.7720154, "lon": -73.9329966 }, + { "lat": 40.7720361, "lon": -73.9323916 }, + { "lat": 40.7720413, "lon": -73.9322382 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Main Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 140391514, + "bounds": { + "minlat": 40.7092750, + "minlon": -73.9986359, + "maxlat": 40.7094725, + "maxlon": -73.9974114 + }, + "nodes": [ + 1538237300, + 1538237359, + 3884569919, + 1538237508 + ], + "geometry": [ + { "lat": 40.7092750, "lon": -73.9986359 }, + { "lat": 40.7093869, "lon": -73.9979423 }, + { "lat": 40.7094675, "lon": -73.9974423 }, + { "lat": 40.7094725, "lon": -73.9974114 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 140391516, + "bounds": { + "minlat": 40.7089774, + "minlon": -73.9979423, + "maxlat": 40.7093869, + "maxlon": -73.9978326 + }, + "nodes": [ + 1538237359, + 1754823270, + 1538237310, + 11543862980, + 13851002618, + 4382842396, + 12353436230, + 1538237325 + ], + "geometry": [ + { "lat": 40.7093869, "lon": -73.9979423 }, + { "lat": 40.7092893, "lon": -73.9979161 }, + { "lat": 40.7091907, "lon": -73.9978897 }, + { "lat": 40.7091208, "lon": -73.9978710 }, + { "lat": 40.7090739, "lon": -73.9978584 }, + { "lat": 40.7090509, "lon": -73.9978523 }, + { "lat": 40.7090282, "lon": -73.9978462 }, + { "lat": 40.7089774, "lon": -73.9978326 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 140391518, + "bounds": { + "minlat": 40.7090816, + "minlon": -73.9985853, + "maxlat": 40.7091907, + "maxlon": -73.9978897 + }, + "nodes": [ + 1538237463, + 1538237310 + ], + "geometry": [ + { "lat": 40.7090816, "lon": -73.9985853 }, + { "lat": 40.7091907, "lon": -73.9978897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 140391522, + "bounds": { + "minlat": 40.7108209, + "minlon": -74.0086548, + "maxlat": 40.7113948, + "maxlon": -74.0077638 + }, + "nodes": [ + 42428391, + 10290135961, + 10290135960, + 8262936592, + 10290401155, + 3658821413 + ], + "geometry": [ + { "lat": 40.7113948, "lon": -74.0086548 }, + { "lat": 40.7113611, "lon": -74.0086300 }, + { "lat": 40.7113314, "lon": -74.0085978 }, + { "lat": 40.7112961, "lon": -74.0085455 }, + { "lat": 40.7112604, "lon": -74.0084884 }, + { "lat": 40.7108209, "lon": -74.0077638 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Ann Street", + "name:ko": "앤 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4766689", + "wikipedia": "en:Ann Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 141119720, + "bounds": { + "minlat": 40.8824000, + "minlon": -73.9080120, + "maxlat": 40.8865120, + "maxlon": -73.9031560 + }, + "nodes": [ + 42748798, + 13022227451, + 13471735794, + 5487893024, + 1581399115, + 42739598, + 1581399150, + 42720157, + 1545210192, + 1545210190, + 1545210193, + 42757686 + ], + "geometry": [ + { "lat": 40.8824000, "lon": -73.9080120 }, + { "lat": 40.8824462, "lon": -73.9079593 }, + { "lat": 40.8825087, "lon": -73.9078871 }, + { "lat": 40.8828347, "lon": -73.9075103 }, + { "lat": 40.8836612, "lon": -73.9065566 }, + { "lat": 40.8837320, "lon": -73.9064750 }, + { "lat": 40.8846138, "lon": -73.9054507 }, + { "lat": 40.8852420, "lon": -73.9047210 }, + { "lat": 40.8855528, "lon": -73.9043787 }, + { "lat": 40.8856935, "lon": -73.9041990 }, + { "lat": 40.8858091, "lon": -73.9040000 }, + { "lat": 40.8865120, "lon": -73.9031560 } + ], + "tags": { + "highway": "residential", + "name": "Irwin Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Irwin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141119722, + "bounds": { + "minlat": 40.8824934, + "minlon": -73.9093051, + "maxlat": 40.8836591, + "maxlon": -73.9086976 + }, + "nodes": [ + 42748812, + 10132643275, + 42748815, + 42748819, + 42748822, + 42748827, + 42748833, + 42748838, + 42748842, + 10132643175, + 10132643247, + 42748847 + ], + "geometry": [ + { "lat": 40.8824934, "lon": -73.9086976 }, + { "lat": 40.8825108, "lon": -73.9087357 }, + { "lat": 40.8825540, "lon": -73.9088300 }, + { "lat": 40.8826280, "lon": -73.9089450 }, + { "lat": 40.8827030, "lon": -73.9090330 }, + { "lat": 40.8828063, "lon": -73.9091337 }, + { "lat": 40.8829056, "lon": -73.9091854 }, + { "lat": 40.8830100, "lon": -73.9092160 }, + { "lat": 40.8831360, "lon": -73.9092350 }, + { "lat": 40.8835422, "lon": -73.9092894 }, + { "lat": 40.8835921, "lon": -73.9092960 }, + { "lat": 40.8836591, "lon": -73.9093051 } + ], + "tags": { + "highway": "residential", + "name": "West 232nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "232nd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141119725, + "bounds": { + "minlat": 40.8795150, + "minlon": -73.9105350, + "maxlat": 40.8802677, + "maxlon": -73.9096780 + }, + "nodes": [ + 1544756357, + 6882537210, + 5871581452, + 1544756279, + 1544756446, + 7128005637, + 5927463179, + 10132643583, + 42746777 + ], + "geometry": [ + { "lat": 40.8802677, "lon": -73.9105350 }, + { "lat": 40.8802366, "lon": -73.9105211 }, + { "lat": 40.8801982, "lon": -73.9105041 }, + { "lat": 40.8801331, "lon": -73.9104703 }, + { "lat": 40.8799916, "lon": -73.9103265 }, + { "lat": 40.8798654, "lon": -73.9101718 }, + { "lat": 40.8795863, "lon": -73.9098297 }, + { "lat": 40.8795577, "lon": -73.9097687 }, + { "lat": 40.8795150, "lon": -73.9096780 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "West 230th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141119731, + "bounds": { + "minlat": 40.8804528, + "minlon": -73.9105323, + "maxlat": 40.8804929, + "maxlon": -73.9102564 + }, + "nodes": [ + 42746781, + 1544756466, + 1544756314 + ], + "geometry": [ + { "lat": 40.8804528, "lon": -73.9105323 }, + { "lat": 40.8804647, "lon": -73.9103858 }, + { "lat": 40.8804929, "lon": -73.9102564 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "name": "Riverdale Avenue", + "oneway": "yes", + "sidewalk": "no" + } +}, +{ + "type": "way", + "id": 141119735, + "bounds": { + "minlat": 40.8795150, + "minlon": -73.9102610, + "maxlat": 40.8800595, + "maxlon": -73.9096780 + }, + "nodes": [ + 42746777, + 10132643582, + 8712629679, + 5927463180, + 13716281366, + 5927463181, + 10207247487, + 9691381112 + ], + "geometry": [ + { "lat": 40.8795150, "lon": -73.9096780 }, + { "lat": 40.8795941, "lon": -73.9097280 }, + { "lat": 40.8796192, "lon": -73.9097438 }, + { "lat": 40.8796503, "lon": -73.9097635 }, + { "lat": 40.8797610, "lon": -73.9099022 }, + { "lat": 40.8798916, "lon": -73.9100658 }, + { "lat": 40.8799386, "lon": -73.9101204 }, + { "lat": 40.8800595, "lon": -73.9102610 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "West 230th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141122793, + "bounds": { + "minlat": 40.8766753, + "minlon": -73.9066572, + "maxlat": 40.8767490, + "maxlon": -73.9065288 + }, + "nodes": [ + 1544782747, + 1396352309 + ], + "geometry": [ + { "lat": 40.8767490, "lon": -73.9066572 }, + { "lat": 40.8766753, "lon": -73.9065288 } + ], + "tags": { + "highway": "secondary", + "name": "West 230th Street", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141122805, + "bounds": { + "minlat": 40.8765175, + "minlon": -73.9070878, + "maxlat": 40.8767490, + "maxlon": -73.9066572 + }, + "nodes": [ + 1544782747, + 10128431581, + 1544782763 + ], + "geometry": [ + { "lat": 40.8767490, "lon": -73.9066572 }, + { "lat": 40.8766900, "lon": -73.9067667 }, + { "lat": 40.8765175, "lon": -73.9070878 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 141125504, + "bounds": { + "minlat": 40.8728056, + "minlon": -73.9118281, + "maxlat": 40.8729372, + "maxlon": -73.9116935 + }, + "nodes": [ + 60915682, + 11591951174, + 1544809882 + ], + "geometry": [ + { "lat": 40.8728056, "lon": -73.9116935 }, + { "lat": 40.8728714, "lon": -73.9117608 }, + { "lat": 40.8729372, "lon": -73.9118281 } + ], + "tags": { + "highway": "tertiary", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "9th", + "tiger:name_base_1": "9", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_left_1": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 141125505, + "bounds": { + "minlat": 40.8739199, + "minlon": -73.9108286, + "maxlat": 40.8741489, + "maxlon": -73.9105305 + }, + "nodes": [ + 1544809878, + 7477194671 + ], + "geometry": [ + { "lat": 40.8741489, "lon": -73.9105305 }, + { "lat": 40.8739199, "lon": -73.9108286 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Broadway Bridge", + "bridge:wikidata": "Q922869", + "bridge:wikipedia": "en:Broadway Bridge (Manhattan)", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q922869", + "wikipedia": "en:Broadway Bridge (Manhattan)" + } +}, +{ + "type": "way", + "id": 141125506, + "bounds": { + "minlat": 40.8707672, + "minlon": -73.9146859, + "maxlat": 40.8709231, + "maxlon": -73.9144084 + }, + "nodes": [ + 1544809886, + 7132855263 + ], + "geometry": [ + { "lat": 40.8707672, "lon": -73.9146859 }, + { "lat": 40.8709231, "lon": -73.9144084 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 141125508, + "bounds": { + "minlat": 40.8727313, + "minlon": -73.9123588, + "maxlat": 40.8732847, + "maxlon": -73.9116550 + }, + "nodes": [ + 1544809877, + 3966664818, + 10902146187 + ], + "geometry": [ + { "lat": 40.8732847, "lon": -73.9116550 }, + { "lat": 40.8731063, "lon": -73.9119034 }, + { "lat": 40.8727313, "lon": -73.9123588 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk": "separate", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 141125509, + "bounds": { + "minlat": 40.8769218, + "minlon": -73.9082484, + "maxlat": 40.8775244, + "maxlon": -73.9072514 + }, + "nodes": [ + 42746768, + 10868090882, + 10868090878, + 1544809892, + 10128431676, + 1544809884 + ], + "geometry": [ + { "lat": 40.8775244, "lon": -73.9072514 }, + { "lat": 40.8774970, "lon": -73.9073110 }, + { "lat": 40.8774658, "lon": -73.9073680 }, + { "lat": 40.8772974, "lon": -73.9076659 }, + { "lat": 40.8769515, "lon": -73.9082024 }, + { "lat": 40.8769218, "lon": -73.9082484 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 141125510, + "bounds": { + "minlat": 40.8728056, + "minlon": -73.9119097, + "maxlat": 40.8728468, + "maxlon": -73.9116935 + }, + "nodes": [ + 1544809889, + 60915682 + ], + "geometry": [ + { "lat": 40.8728468, "lon": -73.9119097 }, + { "lat": 40.8728056, "lon": -73.9116935 } + ], + "tags": { + "highway": "tertiary", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "9th", + "tiger:name_base_1": "9", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "tiger:zip_right_1": "10034", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 141128766, + "bounds": { + "minlat": 40.8802930, + "minlon": -73.9111380, + "maxlat": 40.8805131, + "maxlon": -73.9107443 + }, + "nodes": [ + 1544847090, + 6882537206, + 10132643266, + 1544847140, + 1544847091 + ], + "geometry": [ + { "lat": 40.8805131, "lon": -73.9107443 }, + { "lat": 40.8804798, "lon": -73.9108220 }, + { "lat": 40.8804749, "lon": -73.9108333 }, + { "lat": 40.8804148, "lon": -73.9109684 }, + { "lat": 40.8802930, "lon": -73.9111380 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "name": "Irwin Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ewen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141128767, + "bounds": { + "minlat": 40.8777626, + "minlon": -73.9119022, + "maxlat": 40.8795150, + "maxlon": -73.9096780 + }, + "nodes": [ + 13068325352, + 13471678168, + 1544847095, + 42757960, + 5487852150, + 5487852160, + 10132643585, + 42746777 + ], + "geometry": [ + { "lat": 40.8777626, "lon": -73.9119022 }, + { "lat": 40.8778007, "lon": -73.9118760 }, + { "lat": 40.8779828, "lon": -73.9117508 }, + { "lat": 40.8781866, "lon": -73.9115293 }, + { "lat": 40.8782151, "lon": -73.9114895 }, + { "lat": 40.8790386, "lon": -73.9103419 }, + { "lat": 40.8794487, "lon": -73.9097704 }, + { "lat": 40.8795150, "lon": -73.9096780 } + ], + "tags": { + "highway": "residential", + "name": "Tibbett Avenue", + "name:etymology:wikidata": "Q28186791", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tibbett", + "tiger:name_type": "Ave", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141128770, + "bounds": { + "minlat": 40.8802930, + "minlon": -73.9111380, + "maxlat": 40.8803979, + "maxlon": -73.9108644 + }, + "nodes": [ + 1544847091, + 3965035289, + 5608272469 + ], + "geometry": [ + { "lat": 40.8802930, "lon": -73.9111380 }, + { "lat": 40.8803707, "lon": -73.9109427 }, + { "lat": 40.8803979, "lon": -73.9108644 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "Irwin Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ewen", + "tiger:name_type": "Ave", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 141143530, + "bounds": { + "minlat": 40.8759084, + "minlon": -73.9136658, + "maxlat": 40.8760347, + "maxlon": -73.9134988 + }, + "nodes": [ + 5588601607, + 42439164, + 1545097363, + 2024033372, + 1545097204, + 2024033396, + 1545097444, + 1545097344, + 1545097399, + 2024033384, + 1545097402, + 2024033370, + 1545097370, + 5588601606, + 1545097337, + 1545097249, + 2024033378, + 1545097291, + 1545097295, + 5588601607 + ], + "geometry": [ + { "lat": 40.8760262, "lon": -73.9135395 }, + { "lat": 40.8760338, "lon": -73.9135650 }, + { "lat": 40.8760347, "lon": -73.9135927 }, + { "lat": 40.8760288, "lon": -73.9136193 }, + { "lat": 40.8760166, "lon": -73.9136419 }, + { "lat": 40.8759996, "lon": -73.9136580 }, + { "lat": 40.8759795, "lon": -73.9136658 }, + { "lat": 40.8759585, "lon": -73.9136646 }, + { "lat": 40.8759390, "lon": -73.9136544 }, + { "lat": 40.8759231, "lon": -73.9136364 }, + { "lat": 40.8759125, "lon": -73.9136125 }, + { "lat": 40.8759084, "lon": -73.9135853 }, + { "lat": 40.8759112, "lon": -73.9135578 }, + { "lat": 40.8759206, "lon": -73.9135331 }, + { "lat": 40.8759356, "lon": -73.9135137 }, + { "lat": 40.8759543, "lon": -73.9135020 }, + { "lat": 40.8759748, "lon": -73.9134988 }, + { "lat": 40.8759951, "lon": -73.9135046 }, + { "lat": 40.8760128, "lon": -73.9135187 }, + { "lat": 40.8760262, "lon": -73.9135395 } + ], + "tags": { + "highway": "residential", + "name": "Teunissen Place", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Teunissen", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141146277, + "bounds": { + "minlat": 40.8785709, + "minlon": -73.9161217, + "maxlat": 40.8796506, + "maxlon": -73.9145358 + }, + "nodes": [ + 7941613933, + 1545109735, + 1545109732, + 1545109728, + 7532175317, + 1545109731, + 1545109743, + 1545109733, + 1545109716, + 42733316 + ], + "geometry": [ + { "lat": 40.8796506, "lon": -73.9145358 }, + { "lat": 40.8794438, "lon": -73.9147596 }, + { "lat": 40.8792403, "lon": -73.9149781 }, + { "lat": 40.8791356, "lon": -73.9150957 }, + { "lat": 40.8787533, "lon": -73.9157156 }, + { "lat": 40.8786975, "lon": -73.9158061 }, + { "lat": 40.8786423, "lon": -73.9158962 }, + { "lat": 40.8786090, "lon": -73.9159847 }, + { "lat": 40.8785889, "lon": -73.9160744 }, + { "lat": 40.8785709, "lon": -73.9161217 } + ], + "tags": { + "highway": "residential", + "name": "Netherland Avenue", + "name:etymology:wikidata": "Q382593", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Netherland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141146283, + "bounds": { + "minlat": 40.8785649, + "minlon": -73.9161217, + "maxlat": 40.8796100, + "maxlon": -73.9144676 + }, + "nodes": [ + 42733316, + 1545120653, + 1545120617, + 1545120616, + 1545120636, + 1545120657, + 1545120618, + 7941613935, + 42759307 + ], + "geometry": [ + { "lat": 40.8785709, "lon": -73.9161217 }, + { "lat": 40.8785649, "lon": -73.9159995 }, + { "lat": 40.8785791, "lon": -73.9159163 }, + { "lat": 40.8786058, "lon": -73.9158447 }, + { "lat": 40.8790881, "lon": -73.9150635 }, + { "lat": 40.8791794, "lon": -73.9149589 }, + { "lat": 40.8794798, "lon": -73.9146216 }, + { "lat": 40.8795567, "lon": -73.9145297 }, + { "lat": 40.8796100, "lon": -73.9144676 } + ], + "tags": { + "highway": "residential", + "name": "Netherland Avenue", + "name:etymology:wikidata": "Q382593", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 141147116, + "bounds": { + "minlat": 40.8824530, + "minlon": -73.9120599, + "maxlat": 40.8879606, + "maxlon": -73.9103548 + }, + "nodes": [ + 42770865, + 7232781353, + 42748859, + 10132643326, + 10132643327, + 10132643328, + 1581505592, + 10132643329, + 42747621, + 13068516818, + 1581473948, + 5487885756, + 1581473874, + 5487887527, + 1581473991, + 1581473973, + 1581473965, + 1581474073, + 1581473953, + 42720189, + 1581463905, + 1581463840, + 1581463868, + 1581463857, + 1581463763, + 1581463867, + 1581463816, + 1581463863, + 1581463847, + 1581463807, + 13041409083, + 42759641 + ], + "geometry": [ + { "lat": 40.8824530, "lon": -73.9120599 }, + { "lat": 40.8837210, "lon": -73.9116262 }, + { "lat": 40.8838060, "lon": -73.9115973 }, + { "lat": 40.8838529, "lon": -73.9115819 }, + { "lat": 40.8841587, "lon": -73.9114818 }, + { "lat": 40.8851920, "lon": -73.9111433 }, + { "lat": 40.8852586, "lon": -73.9111215 }, + { "lat": 40.8857694, "lon": -73.9109542 }, + { "lat": 40.8858340, "lon": -73.9109330 }, + { "lat": 40.8858996, "lon": -73.9109118 }, + { "lat": 40.8861449, "lon": -73.9108326 }, + { "lat": 40.8861632, "lon": -73.9108231 }, + { "lat": 40.8862334, "lon": -73.9107869 }, + { "lat": 40.8862938, "lon": -73.9107415 }, + { "lat": 40.8863203, "lon": -73.9107216 }, + { "lat": 40.8864740, "lon": -73.9105747 }, + { "lat": 40.8865332, "lon": -73.9105195 }, + { "lat": 40.8866003, "lon": -73.9104760 }, + { "lat": 40.8866918, "lon": -73.9104359 }, + { "lat": 40.8867654, "lon": -73.9104092 }, + { "lat": 40.8868789, "lon": -73.9103718 }, + { "lat": 40.8869792, "lon": -73.9103577 }, + { "lat": 40.8870875, "lon": -73.9103548 }, + { "lat": 40.8871886, "lon": -73.9103703 }, + { "lat": 40.8872900, "lon": -73.9103939 }, + { "lat": 40.8873895, "lon": -73.9104234 }, + { "lat": 40.8875062, "lon": -73.9104762 }, + { "lat": 40.8876181, "lon": -73.9105633 }, + { "lat": 40.8877181, "lon": -73.9106551 }, + { "lat": 40.8878716, "lon": -73.9108331 }, + { "lat": 40.8879189, "lon": -73.9108817 }, + { "lat": 40.8879606, "lon": -73.9109245 } + ], + "tags": { + "highway": "residential", + "name": "Netherland Avenue", + "name:etymology:wikidata": "Q382593", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Netherland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141147123, + "bounds": { + "minlat": 40.8796100, + "minlon": -73.9144676, + "maxlat": 40.8811290, + "maxlon": -73.9127540 + }, + "nodes": [ + 42759307, + 1545136699, + 42773855, + 11250047194, + 1545136743, + 42746799 + ], + "geometry": [ + { "lat": 40.8796100, "lon": -73.9144676 }, + { "lat": 40.8796898, "lon": -73.9143602 }, + { "lat": 40.8803279, "lon": -73.9136493 }, + { "lat": 40.8807188, "lon": -73.9131876 }, + { "lat": 40.8810665, "lon": -73.9127768 }, + { "lat": 40.8811290, "lon": -73.9127540 } + ], + "tags": { + "highway": "residential", + "name": "Netherland Avenue", + "name:etymology:wikidata": "Q382593", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Netherland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141147126, + "bounds": { + "minlat": 40.8815242, + "minlon": -73.9138075, + "maxlat": 40.8860050, + "maxlon": -73.9118480 + }, + "nodes": [ + 42746802, + 13068411683, + 42770873, + 13068411677, + 42748860, + 7397512261, + 5588651927, + 8395915600, + 11250047203, + 13363856895, + 42747626 + ], + "geometry": [ + { "lat": 40.8815242, "lon": -73.9138075 }, + { "lat": 40.8827453, "lon": -73.9131361 }, + { "lat": 40.8828110, "lon": -73.9131020 }, + { "lat": 40.8828687, "lon": -73.9130749 }, + { "lat": 40.8840176, "lon": -73.9125334 }, + { "lat": 40.8850369, "lon": -73.9121819 }, + { "lat": 40.8852413, "lon": -73.9121114 }, + { "lat": 40.8853719, "lon": -73.9120664 }, + { "lat": 40.8859048, "lon": -73.9118826 }, + { "lat": 40.8859496, "lon": -73.9118671 }, + { "lat": 40.8860050, "lon": -73.9118480 } + ], + "tags": { + "highway": "residential", + "name": "Arlington Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Arlington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141147127, + "bounds": { + "minlat": 40.8796506, + "minlon": -73.9145358, + "maxlat": 40.8811290, + "maxlon": -73.9127540 + }, + "nodes": [ + 42746799, + 1545136701, + 1545136742, + 7941613933 + ], + "geometry": [ + { "lat": 40.8811290, "lon": -73.9127540 }, + { "lat": 40.8811120, "lon": -73.9128534 }, + { "lat": 40.8797432, "lon": -73.9144359 }, + { "lat": 40.8796506, "lon": -73.9145358 } + ], + "tags": { + "highway": "residential", + "name": "Netherland Avenue", + "name:etymology:wikidata": "Q382593", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Netherland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141148686, + "bounds": { + "minlat": 40.8792023, + "minlon": -73.9182899, + "maxlat": 40.8796865, + "maxlon": -73.9176455 + }, + "nodes": [ + 1545168063, + 1545167919, + 1545167916, + 10747822421, + 1545168084, + 1545168070, + 10747822422, + 1545168066, + 10747822423, + 1545167943, + 10747822425, + 1545167954, + 10747822424, + 1545167957, + 10747822426, + 1545167951, + 1545168050 + ], + "geometry": [ + { "lat": 40.8792114, "lon": -73.9182899 }, + { "lat": 40.8792023, "lon": -73.9181551 }, + { "lat": 40.8792104, "lon": -73.9180426 }, + { "lat": 40.8792248, "lon": -73.9179685 }, + { "lat": 40.8792383, "lon": -73.9179147 }, + { "lat": 40.8792801, "lon": -73.9177951 }, + { "lat": 40.8793046, "lon": -73.9177479 }, + { "lat": 40.8793418, "lon": -73.9177009 }, + { "lat": 40.8793771, "lon": -73.9176727 }, + { "lat": 40.8794016, "lon": -73.9176630 }, + { "lat": 40.8794398, "lon": -73.9176521 }, + { "lat": 40.8794853, "lon": -73.9176455 }, + { "lat": 40.8795193, "lon": -73.9176459 }, + { "lat": 40.8795664, "lon": -73.9176616 }, + { "lat": 40.8795961, "lon": -73.9176840 }, + { "lat": 40.8796175, "lon": -73.9177108 }, + { "lat": 40.8796865, "lon": -73.9178423 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 141148687, + "bounds": { + "minlat": 40.8796520, + "minlon": -73.9180865, + "maxlat": 40.8797915, + "maxlon": -73.9178423 + }, + "nodes": [ + 1545168050, + 1545167953, + 10747822427, + 1545168017, + 10747822433, + 1545167978, + 10747822428, + 1545167923, + 10747822429, + 1545168060, + 10747822430, + 1545167981, + 1545167974, + 10747822431, + 1545167983, + 1545167927, + 1545167973, + 10747822432, + 1545168050 + ], + "geometry": [ + { "lat": 40.8796865, "lon": -73.9178423 }, + { "lat": 40.8797429, "lon": -73.9178735 }, + { "lat": 40.8797645, "lon": -73.9178973 }, + { "lat": 40.8797778, "lon": -73.9179254 }, + { "lat": 40.8797875, "lon": -73.9179542 }, + { "lat": 40.8797915, "lon": -73.9179888 }, + { "lat": 40.8797875, "lon": -73.9180229 }, + { "lat": 40.8797753, "lon": -73.9180505 }, + { "lat": 40.8797619, "lon": -73.9180658 }, + { "lat": 40.8797413, "lon": -73.9180810 }, + { "lat": 40.8797248, "lon": -73.9180865 }, + { "lat": 40.8797068, "lon": -73.9180863 }, + { "lat": 40.8796784, "lon": -73.9180729 }, + { "lat": 40.8796634, "lon": -73.9180503 }, + { "lat": 40.8796541, "lon": -73.9180220 }, + { "lat": 40.8796520, "lon": -73.9179603 }, + { "lat": 40.8796564, "lon": -73.9179097 }, + { "lat": 40.8796639, "lon": -73.9178868 }, + { "lat": 40.8796865, "lon": -73.9178423 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 141153899, + "bounds": { + "minlat": 40.8795139, + "minlon": -73.9209701, + "maxlat": 40.8806886, + "maxlon": -73.9193107 + }, + "nodes": [ + 42747780, + 5762032513, + 1545196732, + 2532447557, + 7043037933, + 1545196672, + 2532447558, + 1545196740, + 2520265073, + 1545196693, + 1545196663, + 2520265084, + 1545196653, + 1545196697, + 1545196700, + 1545196670, + 1545196721, + 7477473200, + 7477473197, + 1545196705, + 10130977068, + 42750160 + ], + "geometry": [ + { "lat": 40.8806886, "lon": -73.9193107 }, + { "lat": 40.8805976, "lon": -73.9193869 }, + { "lat": 40.8805744, "lon": -73.9194063 }, + { "lat": 40.8805252, "lon": -73.9194629 }, + { "lat": 40.8805051, "lon": -73.9194909 }, + { "lat": 40.8804791, "lon": -73.9195270 }, + { "lat": 40.8804396, "lon": -73.9195941 }, + { "lat": 40.8804134, "lon": -73.9196547 }, + { "lat": 40.8803811, "lon": -73.9197454 }, + { "lat": 40.8803626, "lon": -73.9198267 }, + { "lat": 40.8803546, "lon": -73.9199018 }, + { "lat": 40.8803480, "lon": -73.9199785 }, + { "lat": 40.8803367, "lon": -73.9200627 }, + { "lat": 40.8803167, "lon": -73.9201362 }, + { "lat": 40.8802715, "lon": -73.9202483 }, + { "lat": 40.8801877, "lon": -73.9203794 }, + { "lat": 40.8801387, "lon": -73.9204279 }, + { "lat": 40.8799948, "lon": -73.9205500 }, + { "lat": 40.8797410, "lon": -73.9207652 }, + { "lat": 40.8795971, "lon": -73.9208872 }, + { "lat": 40.8795745, "lon": -73.9209097 }, + { "lat": 40.8795139, "lon": -73.9209701 } + ], + "tags": { + "highway": "residential", + "name": "Independence Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no" + } +}, +{ + "type": "way", + "id": 141153900, + "bounds": { + "minlat": 40.8802169, + "minlon": -73.9223540, + "maxlat": 40.8806886, + "maxlon": -73.9193107 + }, + "nodes": [ + 1545196739, + 1545196744, + 10130977031, + 1545196691, + 1545196665, + 1545196743, + 2520127065, + 1545196715, + 1545196720, + 1545196689, + 1545196671, + 1545196679, + 1545196718, + 1545196651, + 1545196655, + 1545196695, + 1545196727, + 1545196741, + 1545196669, + 1545196699, + 1545196719, + 2520265079, + 1545196683, + 1545196647, + 42771762, + 5762032512, + 42747780 + ], + "geometry": [ + { "lat": 40.8805170, "lon": -73.9223540 }, + { "lat": 40.8804506, "lon": -73.9223179 }, + { "lat": 40.8804163, "lon": -73.9222862 }, + { "lat": 40.8803820, "lon": -73.9222545 }, + { "lat": 40.8803268, "lon": -73.9221981 }, + { "lat": 40.8802741, "lon": -73.9221175 }, + { "lat": 40.8802412, "lon": -73.9220208 }, + { "lat": 40.8802250, "lon": -73.9219354 }, + { "lat": 40.8802169, "lon": -73.9218422 }, + { "lat": 40.8802370, "lon": -73.9216243 }, + { "lat": 40.8802902, "lon": -73.9212674 }, + { "lat": 40.8803428, "lon": -73.9210315 }, + { "lat": 40.8803947, "lon": -73.9208249 }, + { "lat": 40.8804419, "lon": -73.9206458 }, + { "lat": 40.8804641, "lon": -73.9205340 }, + { "lat": 40.8804783, "lon": -73.9204305 }, + { "lat": 40.8804839, "lon": -73.9203300 }, + { "lat": 40.8804788, "lon": -73.9202097 }, + { "lat": 40.8804661, "lon": -73.9200939 }, + { "lat": 40.8804580, "lon": -73.9199900 }, + { "lat": 40.8804556, "lon": -73.9198901 }, + { "lat": 40.8804638, "lon": -73.9198016 }, + { "lat": 40.8804839, "lon": -73.9197159 }, + { "lat": 40.8805209, "lon": -73.9196280 }, + { "lat": 40.8805801, "lon": -73.9195113 }, + { "lat": 40.8806229, "lon": -73.9194322 }, + { "lat": 40.8806886, "lon": -73.9193107 } + ], + "tags": { + "highway": "residential", + "name": "Independence Avenue", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Independence", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10471", + "tiger:zip_right": "10471" + } +}, +{ + "type": "way", + "id": 141155765, + "bounds": { + "minlat": 40.8795134, + "minlon": -73.9177001, + "maxlat": 40.8879606, + "maxlon": -73.9109245 + }, + "nodes": [ + 42747763, + 1545207092, + 1545207087, + 1545207074, + 2634452687, + 1545207066, + 2532396946, + 1545207046, + 2634452704, + 1545207053, + 1545207045, + 1545207059, + 1545207095, + 1545207065, + 1545207088, + 1545207044, + 1545207094, + 1545207052, + 1545207062, + 1545207057, + 42759314, + 1545521313, + 1545521310, + 1545521299, + 1545521311, + 42746810, + 1581505561, + 1545521259, + 1581505562, + 42759634, + 1545532957, + 1545532967, + 1545532949, + 1545532982, + 1545532984, + 1545532980, + 5762032511, + 42748868, + 5762032510, + 1581489704, + 1581489770, + 1581489714, + 1581489772, + 1051068149, + 1581489835, + 1581489759, + 1581489743, + 1581489700, + 42750747, + 1581489702, + 1581489677, + 11250047205, + 1581474067, + 42747630, + 1581473911, + 1581473901, + 1581473922, + 42720192, + 1581473891, + 1581473904, + 1581474020, + 1581474023, + 1581473870, + 1581473976, + 1581474012, + 42759641 + ], + "geometry": [ + { "lat": 40.8795134, "lon": -73.9167579 }, + { "lat": 40.8797314, "lon": -73.9168499 }, + { "lat": 40.8798064, "lon": -73.9168995 }, + { "lat": 40.8798671, "lon": -73.9169444 }, + { "lat": 40.8798894, "lon": -73.9169656 }, + { "lat": 40.8799367, "lon": -73.9170105 }, + { "lat": 40.8800242, "lon": -73.9171097 }, + { "lat": 40.8801134, "lon": -73.9172301 }, + { "lat": 40.8801495, "lon": -73.9172884 }, + { "lat": 40.8801937, "lon": -73.9173599 }, + { "lat": 40.8802616, "lon": -73.9174756 }, + { "lat": 40.8803348, "lon": -73.9175771 }, + { "lat": 40.8803776, "lon": -73.9176267 }, + { "lat": 40.8804258, "lon": -73.9176645 }, + { "lat": 40.8805119, "lon": -73.9176974 }, + { "lat": 40.8805910, "lon": -73.9177001 }, + { "lat": 40.8806619, "lon": -73.9176947 }, + { "lat": 40.8807512, "lon": -73.9176545 }, + { "lat": 40.8808268, "lon": -73.9175840 }, + { "lat": 40.8810588, "lon": -73.9173026 }, + { "lat": 40.8812857, "lon": -73.9170584 }, + { "lat": 40.8815401, "lon": -73.9168042 }, + { "lat": 40.8818069, "lon": -73.9164875 }, + { "lat": 40.8820875, "lon": -73.9161775 }, + { "lat": 40.8823439, "lon": -73.9159126 }, + { "lat": 40.8824889, "lon": -73.9157789 }, + { "lat": 40.8828018, "lon": -73.9155467 }, + { "lat": 40.8830722, "lon": -73.9153827 }, + { "lat": 40.8832284, "lon": -73.9153013 }, + { "lat": 40.8834753, "lon": -73.9151833 }, + { "lat": 40.8835957, "lon": -73.9151358 }, + { "lat": 40.8837735, "lon": -73.9150934 }, + { "lat": 40.8839250, "lon": -73.9150406 }, + { "lat": 40.8841068, "lon": -73.9149367 }, + { "lat": 40.8842728, "lon": -73.9148067 }, + { "lat": 40.8844024, "lon": -73.9146813 }, + { "lat": 40.8844731, "lon": -73.9146027 }, + { "lat": 40.8845266, "lon": -73.9145433 }, + { "lat": 40.8845923, "lon": -73.9144656 }, + { "lat": 40.8846435, "lon": -73.9144051 }, + { "lat": 40.8847417, "lon": -73.9142650 }, + { "lat": 40.8848675, "lon": -73.9140872 }, + { "lat": 40.8849853, "lon": -73.9139107 }, + { "lat": 40.8850985, "lon": -73.9137329 }, + { "lat": 40.8851958, "lon": -73.9135818 }, + { "lat": 40.8853007, "lon": -73.9134348 }, + { "lat": 40.8853491, "lon": -73.9133743 }, + { "lat": 40.8854113, "lon": -73.9132966 }, + { "lat": 40.8855456, "lon": -73.9131289 }, + { "lat": 40.8857282, "lon": -73.9129282 }, + { "lat": 40.8858924, "lon": -73.9127653 }, + { "lat": 40.8859983, "lon": -73.9126655 }, + { "lat": 40.8860727, "lon": -73.9125954 }, + { "lat": 40.8861298, "lon": -73.9125339 }, + { "lat": 40.8863246, "lon": -73.9123621 }, + { "lat": 40.8865277, "lon": -73.9122027 }, + { "lat": 40.8867591, "lon": -73.9120206 }, + { "lat": 40.8869916, "lon": -73.9118422 }, + { "lat": 40.8871735, "lon": -73.9117141 }, + { "lat": 40.8873376, "lon": -73.9116030 }, + { "lat": 40.8874460, "lon": -73.9115305 }, + { "lat": 40.8875701, "lon": -73.9114313 }, + { "lat": 40.8876837, "lon": -73.9113110 }, + { "lat": 40.8877750, "lon": -73.9111969 }, + { "lat": 40.8878639, "lon": -73.9110664 }, + { "lat": 40.8879606, "lon": -73.9109245 } + ], + "tags": { + "highway": "tertiary", + "name": "Henry Hudson Parkway East", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Henry Hudson", + "tiger:name_base_1": "Johnson", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "Pky", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 141178141, + "bounds": { + "minlat": 40.8821386, + "minlon": -73.9155524, + "maxlat": 40.8823894, + "maxlon": -73.9148832 + }, + "nodes": [ + 1545521276, + 721838971, + 6853710658 + ], + "geometry": [ + { "lat": 40.8821386, "lon": -73.9148832 }, + { "lat": 40.8821462, "lon": -73.9149986 }, + { "lat": 40.8823894, "lon": -73.9155524 } + ], + "tags": { + "highway": "residential", + "name": "West 230th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 141178142, + "bounds": { + "minlat": 40.8810480, + "minlon": -73.9121274, + "maxlat": 40.8822794, + "maxlon": -73.9116283 + }, + "nodes": [ + 721838975, + 10132643320, + 10132643319, + 10132643318, + 1545521317, + 10132643316, + 1545521272, + 1545521292, + 1545522901, + 1545521307 + ], + "geometry": [ + { "lat": 40.8822794, "lon": -73.9116410 }, + { "lat": 40.8822689, "lon": -73.9116308 }, + { "lat": 40.8822549, "lon": -73.9116283 }, + { "lat": 40.8822298, "lon": -73.9116303 }, + { "lat": 40.8818589, "lon": -73.9117333 }, + { "lat": 40.8816388, "lon": -73.9117907 }, + { "lat": 40.8813801, "lon": -73.9119125 }, + { "lat": 40.8811874, "lon": -73.9120089 }, + { "lat": 40.8811149, "lon": -73.9120597 }, + { "lat": 40.8810480, "lon": -73.9121274 } + ], + "tags": { + "highway": "service", + "name": "Edgehill Avenue", + "service": "alley" + } +}, +{ + "type": "way", + "id": 141178143, + "bounds": { + "minlat": 40.8813920, + "minlon": -73.9159122, + "maxlat": 40.8821462, + "maxlon": -73.9149986 + }, + "nodes": [ + 1545521275, + 721838971 + ], + "geometry": [ + { "lat": 40.8813920, "lon": -73.9159122 }, + { "lat": 40.8821462, "lon": -73.9149986 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fairfield", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 144001606, + "bounds": { + "minlat": 40.7437863, + "minlon": -73.9735080, + "maxlat": 40.7442368, + "maxlon": -73.9731768 + }, + "nodes": [ + 42445390, + 3932847283, + 8838254189 + ], + "geometry": [ + { "lat": 40.7437863, "lon": -73.9735080 }, + { "lat": 40.7438812, "lon": -73.9734382 }, + { "lat": 40.7442368, "lon": -73.9731768 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 144150484, + "bounds": { + "minlat": 40.7459109, + "minlon": -73.9726572, + "maxlat": 40.7465231, + "maxlon": -73.9722094 + }, + "nodes": [ + 1577321467, + 11299035037, + 10170620790, + 1577321470 + ], + "geometry": [ + { "lat": 40.7465231, "lon": -73.9722094 }, + { "lat": 40.7464705, "lon": -73.9722479 }, + { "lat": 40.7459724, "lon": -73.9726122 }, + { "lat": 40.7459109, "lon": -73.9726572 } + ], + "tags": { + "foot": "yes", + "highway": "service", + "service": "driveway", + "source": "survey", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 144158892, + "bounds": { + "minlat": 40.7431778, + "minlon": -73.9720697, + "maxlat": 40.7438669, + "maxlon": -73.9715257 + }, + "nodes": [ + 42445392, + 2054377378, + 1478572253, + 1577400874, + 2054377416, + 406048768 + ], + "geometry": [ + { "lat": 40.7431778, "lon": -73.9720697 }, + { "lat": 40.7432485, "lon": -73.9718881 }, + { "lat": 40.7433430, "lon": -73.9717576 }, + { "lat": 40.7436991, "lon": -73.9715257 }, + { "lat": 40.7437605, "lon": -73.9715309 }, + { "lat": 40.7438669, "lon": -73.9716376 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 144178017, + "bounds": { + "minlat": 40.7454500, + "minlon": -73.9715503, + "maxlat": 40.7460663, + "maxlon": -73.9711142 + }, + "nodes": [ + 1577501048, + 10166084884, + 3948407898, + 11296262857, + 6176628864, + 1577501047 + ], + "geometry": [ + { "lat": 40.7460663, "lon": -73.9711142 }, + { "lat": 40.7460046, "lon": -73.9711556 }, + { "lat": 40.7459331, "lon": -73.9712031 }, + { "lat": 40.7455104, "lon": -73.9715070 }, + { "lat": 40.7454843, "lon": -73.9715257 }, + { "lat": 40.7454500, "lon": -73.9715503 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "source": "survey" + } +}, +{ + "type": "way", + "id": 144183267, + "bounds": { + "minlat": 40.7365900, + "minlon": -73.9728362, + "maxlat": 40.7367090, + "maxlon": -73.9726788 + }, + "nodes": [ + 1577583860, + 1577583884, + 1577583870, + 1577583852, + 1577583882, + 1577583865, + 1577583881, + 1577583867, + 1577583854, + 1577583850, + 1577583862, + 2566289835, + 1577583849, + 1577583869, + 1577583859, + 1577583858, + 1577583883, + 1577583864, + 1577583847, + 9934065146, + 1577583885, + 1577583860 + ], + "geometry": [ + { "lat": 40.7366276, "lon": -73.9728308 }, + { "lat": 40.7366104, "lon": -73.9728170 }, + { "lat": 40.7365976, "lon": -73.9727964 }, + { "lat": 40.7365913, "lon": -73.9727746 }, + { "lat": 40.7365900, "lon": -73.9727513 }, + { "lat": 40.7365940, "lon": -73.9727286 }, + { "lat": 40.7366029, "lon": -73.9727084 }, + { "lat": 40.7366158, "lon": -73.9726926 }, + { "lat": 40.7366317, "lon": -73.9726824 }, + { "lat": 40.7366492, "lon": -73.9726788 }, + { "lat": 40.7366667, "lon": -73.9726822 }, + { "lat": 40.7366827, "lon": -73.9726921 }, + { "lat": 40.7366961, "lon": -73.9727085 }, + { "lat": 40.7367052, "lon": -73.9727294 }, + { "lat": 40.7367090, "lon": -73.9727530 }, + { "lat": 40.7367073, "lon": -73.9727770 }, + { "lat": 40.7366991, "lon": -73.9728013 }, + { "lat": 40.7366852, "lon": -73.9728206 }, + { "lat": 40.7366673, "lon": -73.9728327 }, + { "lat": 40.7366572, "lon": -73.9728359 }, + { "lat": 40.7366473, "lon": -73.9728362 }, + { "lat": 40.7366276, "lon": -73.9728308 } + ], + "tags": { + "highway": "service", + "junction": "roundabout", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 144603169, + "bounds": { + "minlat": 40.8817430, + "minlon": -73.9068399, + "maxlat": 40.8826899, + "maxlon": -73.9057600 + }, + "nodes": [ + 1581431093, + 1581431091 + ], + "geometry": [ + { "lat": 40.8817430, "lon": -73.9068399 }, + { "lat": 40.8826899, "lon": -73.9057600 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 144603172, + "bounds": { + "minlat": 40.8815902, + "minlon": -73.9079959, + "maxlat": 40.8817687, + "maxlon": -73.9076598 + }, + "nodes": [ + 1581431079, + 13020770643, + 1581431082 + ], + "geometry": [ + { "lat": 40.8815902, "lon": -73.9076598 }, + { "lat": 40.8816288, "lon": -73.9077326 }, + { "lat": 40.8817687, "lon": -73.9079959 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 144606510, + "bounds": { + "minlat": 40.8800355, + "minlon": -73.9099975, + "maxlat": 40.8803240, + "maxlon": -73.9091675 + }, + "nodes": [ + 1581436696, + 10132643591, + 1581436693, + 1581436688, + 1581436700, + 10207247504 + ], + "geometry": [ + { "lat": 40.8800355, "lon": -73.9091675 }, + { "lat": 40.8800737, "lon": -73.9092282 }, + { "lat": 40.8801489, "lon": -73.9093478 }, + { "lat": 40.8801756, "lon": -73.9094057 }, + { "lat": 40.8802000, "lon": -73.9094620 }, + { "lat": 40.8803240, "lon": -73.9099975 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 144606512, + "bounds": { + "minlat": 40.8775472, + "minlon": -73.9069855, + "maxlat": 40.8777455, + "maxlon": -73.9065085 + }, + "nodes": [ + 1581436699, + 13038874704, + 1581436697 + ], + "geometry": [ + { "lat": 40.8777455, "lon": -73.9069855 }, + { "lat": 40.8777228, "lon": -73.9069309 }, + { "lat": 40.8775472, "lon": -73.9065085 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 144606514, + "bounds": { + "minlat": 40.8801196, + "minlon": -73.9087633, + "maxlat": 40.8804476, + "maxlon": -73.9081692 + }, + "nodes": [ + 1581436709, + 13020770631, + 1581436694, + 1581436695, + 1581436712 + ], + "geometry": [ + { "lat": 40.8804476, "lon": -73.9087633 }, + { "lat": 40.8804147, "lon": -73.9087035 }, + { "lat": 40.8803646, "lon": -73.9086127 }, + { "lat": 40.8802831, "lon": -73.9084711 }, + { "lat": 40.8801196, "lon": -73.9081692 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 144606516, + "bounds": { + "minlat": 40.8796703, + "minlon": -73.9091965, + "maxlat": 40.8803646, + "maxlon": -73.9084711 + }, + "nodes": [ + 1581436694, + 1581436705, + 1581436692, + 1581436695 + ], + "geometry": [ + { "lat": 40.8803646, "lon": -73.9086127 }, + { "lat": 40.8797498, "lon": -73.9091965 }, + { "lat": 40.8796703, "lon": -73.9090581 }, + { "lat": 40.8802831, "lon": -73.9084711 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 144606517, + "bounds": { + "minlat": 40.8773388, + "minlon": -73.9066591, + "maxlat": 40.8778633, + "maxlon": -73.9062847 + }, + "nodes": [ + 1581436690, + 1581436697, + 1581436713 + ], + "geometry": [ + { "lat": 40.8773388, "lon": -73.9066591 }, + { "lat": 40.8775472, "lon": -73.9065085 }, + { "lat": 40.8778633, "lon": -73.9062847 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 144944183, + "bounds": { + "minlat": 40.7853243, + "minlon": -73.9847486, + "maxlat": 40.7861437, + "maxlon": -73.9840250 + }, + "nodes": [ + 1584183225, + 1584183221, + 1584183223, + 10160790230, + 1584183224, + 10160664900, + 1584183228, + 1584183235, + 1584183254, + 10160664901, + 10160664899, + 10160664898, + 1584183263, + 1584183265, + 1584183270 + ], + "geometry": [ + { "lat": 40.7853484, "lon": -73.9847486 }, + { "lat": 40.7853335, "lon": -73.9846841 }, + { "lat": 40.7853243, "lon": -73.9845935 }, + { "lat": 40.7853308, "lon": -73.9845071 }, + { "lat": 40.7853485, "lon": -73.9844304 }, + { "lat": 40.7853801, "lon": -73.9843661 }, + { "lat": 40.7854375, "lon": -73.9842876 }, + { "lat": 40.7855182, "lon": -73.9842254 }, + { "lat": 40.7857498, "lon": -73.9840612 }, + { "lat": 40.7858083, "lon": -73.9840384 }, + { "lat": 40.7858739, "lon": -73.9840250 }, + { "lat": 40.7859507, "lon": -73.9840256 }, + { "lat": 40.7860278, "lon": -73.9840523 }, + { "lat": 40.7860881, "lon": -73.9841094 }, + { "lat": 40.7861437, "lon": -73.9842044 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "no", + "highway": "service", + "layer": "-1", + "motor_vehicle": "private", + "oneway": "yes", + "service": "driveway", + "surface": "paved", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 144944204, + "bounds": { + "minlat": 40.7853484, + "minlon": -73.9849367, + "maxlat": 40.7855003, + "maxlon": -73.9847486 + }, + "nodes": [ + 1584183227, + 10160790243, + 1584183226, + 10160790229, + 1584183225 + ], + "geometry": [ + { "lat": 40.7855003, "lon": -73.9849367 }, + { "lat": 40.7854541, "lon": -73.9849064 }, + { "lat": 40.7854025, "lon": -73.9848617 }, + { "lat": 40.7853654, "lon": -73.9848038 }, + { "lat": 40.7853484, "lon": -73.9847486 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "no", + "highway": "service", + "motor_vehicle": "permit", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 151178219, + "bounds": { + "minlat": 40.7471469, + "minlon": -73.9437238, + "maxlat": 40.7474113, + "maxlon": -73.9425182 + }, + "nodes": [ + 2971841380, + 4228583957, + 9982745650, + 9982745649, + 9982745648, + 11520102436, + 5572318588, + 42825551 + ], + "geometry": [ + { "lat": 40.7471469, "lon": -73.9425182 }, + { "lat": 40.7471832, "lon": -73.9426115 }, + { "lat": 40.7472001, "lon": -73.9426639 }, + { "lat": 40.7472156, "lon": -73.9427200 }, + { "lat": 40.7472291, "lon": -73.9427808 }, + { "lat": 40.7473644, "lon": -73.9434852 }, + { "lat": 40.7473729, "lon": -73.9435297 }, + { "lat": 40.7474113, "lon": -73.9437238 } + ], + "tags": { + "cycleway": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 151178220, + "bounds": { + "minlat": 40.7491503, + "minlon": -73.9553503, + "maxlat": 40.7495870, + "maxlon": -73.9527738 + }, + "nodes": [ + 2991208457, + 2472137176, + 42825525, + 2479485256, + 6781146560 + ], + "geometry": [ + { "lat": 40.7491503, "lon": -73.9527738 }, + { "lat": 40.7493558, "lon": -73.9539866 }, + { "lat": 40.7494155, "lon": -73.9543388 }, + { "lat": 40.7494940, "lon": -73.9548020 }, + { "lat": 40.7495870, "lon": -73.9553503 } + ], + "tags": { + "highway": "unclassified", + "lcn": "proposed", + "name": "44th Drive", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "44th", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_left_1": "11101", + "tiger:zip_right": "11101", + "tiger:zip_right_1": "11101" + } +}, +{ + "type": "way", + "id": 153014629, + "bounds": { + "minlat": 40.8302517, + "minlon": -73.9092430, + "maxlat": 40.8303170, + "maxlon": -73.9090400 + }, + "nodes": [ + 1657650814, + 42759468 + ], + "geometry": [ + { "lat": 40.8302517, "lon": -73.9090400 }, + { "lat": 40.8303170, "lon": -73.9092430 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "East 167th Street", + "oneway": "yes", + "source:geometry": "Bing aerial imagery", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 153014632, + "bounds": { + "minlat": 40.8298230, + "minlon": -73.9090400, + "maxlat": 40.8302517, + "maxlon": -73.9077220 + }, + "nodes": [ + 42730097, + 12038478858, + 5482223731, + 12038478874, + 42759471, + 13327574319, + 1657650814 + ], + "geometry": [ + { "lat": 40.8298230, "lon": -73.9077220 }, + { "lat": 40.8298552, "lon": -73.9078209 }, + { "lat": 40.8300830, "lon": -73.9085206 }, + { "lat": 40.8302029, "lon": -73.9088891 }, + { "lat": 40.8302260, "lon": -73.9089600 }, + { "lat": 40.8302499, "lon": -73.9090348 }, + { "lat": 40.8302517, "lon": -73.9090400 } + ], + "tags": { + "highway": "residential", + "name": "East 167th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 153014642, + "bounds": { + "minlat": 40.8317893, + "minlon": -73.9083528, + "maxlat": 40.8318734, + "maxlon": -73.9080888 + }, + "nodes": [ + 1657650815, + 13146491653, + 42742461 + ], + "geometry": [ + { "lat": 40.8318734, "lon": -73.9083528 }, + { "lat": 40.8317977, "lon": -73.9081152 }, + { "lat": 40.8317893, "lon": -73.9080888 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "cycleway": "lane", + "highway": "tertiary", + "layer": "1", + "name": "East 168th Street", + "oneway": "no", + "source:geometry": "Bing aerial imagery", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 153180206, + "bounds": { + "minlat": 40.8162904, + "minlon": -73.9300143, + "maxlat": 40.8170073, + "maxlon": -73.9272554 + }, + "nodes": [ + 42734141, + 13040500264, + 13039063250, + 42733686, + 13039063248, + 12162704299, + 12162740203, + 42741440, + 2408448893, + 12162740202, + 12162740201, + 1912029671, + 13185592791 + ], + "geometry": [ + { "lat": 40.8170073, "lon": -73.9300143 }, + { "lat": 40.8169856, "lon": -73.9299284 }, + { "lat": 40.8167814, "lon": -73.9291208 }, + { "lat": 40.8167575, "lon": -73.9290263 }, + { "lat": 40.8167359, "lon": -73.9289418 }, + { "lat": 40.8166083, "lon": -73.9284555 }, + { "lat": 40.8165903, "lon": -73.9283865 }, + { "lat": 40.8165672, "lon": -73.9282979 }, + { "lat": 40.8165261, "lon": -73.9281396 }, + { "lat": 40.8165017, "lon": -73.9280482 }, + { "lat": 40.8164830, "lon": -73.9279781 }, + { "lat": 40.8162964, "lon": -73.9272779 }, + { "lat": 40.8162904, "lon": -73.9272554 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 144th Street", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "144th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 153180207, + "bounds": { + "minlat": 40.8154390, + "minlon": -73.9267344, + "maxlat": 40.8161517, + "maxlon": -73.9240000 + }, + "nodes": [ + 1658959860, + 42777866, + 9910711697, + 9910711695, + 3647451367, + 3647451368, + 9047703699, + 42733948, + 13703620517, + 2795084767, + 12040837250, + 42735684 + ], + "geometry": [ + { "lat": 40.8161517, "lon": -73.9267344 }, + { "lat": 40.8161372, "lon": -73.9266714 }, + { "lat": 40.8161157, "lon": -73.9265928 }, + { "lat": 40.8159883, "lon": -73.9260902 }, + { "lat": 40.8158840, "lon": -73.9256965 }, + { "lat": 40.8158334, "lon": -73.9255266 }, + { "lat": 40.8157968, "lon": -73.9253850 }, + { "lat": 40.8157174, "lon": -73.9250775 }, + { "lat": 40.8156898, "lon": -73.9249705 }, + { "lat": 40.8156393, "lon": -73.9247752 }, + { "lat": 40.8154715, "lon": -73.9241259 }, + { "lat": 40.8154390, "lon": -73.9240000 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "lit": "yes", + "name": "East 144th Street", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "144th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 153180994, + "bounds": { + "minlat": 40.8161372, + "minlon": -73.9266714, + "maxlat": 40.8175183, + "maxlon": -73.9255955 + }, + "nodes": [ + 42777866, + 9910711699, + 9910711700, + 42745909, + 9910711703, + 12110035542, + 6853667900 + ], + "geometry": [ + { "lat": 40.8161372, "lon": -73.9266714 }, + { "lat": 40.8162330, "lon": -73.9266088 }, + { "lat": 40.8167005, "lon": -73.9262899 }, + { "lat": 40.8167763, "lon": -73.9262304 }, + { "lat": 40.8168599, "lon": -73.9261620 }, + { "lat": 40.8172388, "lon": -73.9258360 }, + { "lat": 40.8175183, "lon": -73.9255955 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "lit": "yes", + "name": "Park Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 153180995, + "bounds": { + "minlat": 40.8180211, + "minlon": -73.9251816, + "maxlat": 40.8215589, + "maxlon": -73.9208887 + }, + "nodes": [ + 42778545, + 9903127458, + 8344525033, + 13232762731, + 5487843496, + 42758635, + 9910711706, + 9910711705, + 9910711707, + 9910711704, + 9910711708, + 42749748, + 11335643750, + 11335643753, + 9910711714, + 9910711716, + 9910711715, + 2784292188, + 9910711713, + 2784292190, + 9910711712, + 42735711 + ], + "geometry": [ + { "lat": 40.8180211, "lon": -73.9251816 }, + { "lat": 40.8181225, "lon": -73.9250962 }, + { "lat": 40.8187553, "lon": -73.9245581 }, + { "lat": 40.8188428, "lon": -73.9244781 }, + { "lat": 40.8190051, "lon": -73.9243298 }, + { "lat": 40.8192967, "lon": -73.9240423 }, + { "lat": 40.8194501, "lon": -73.9238924 }, + { "lat": 40.8196559, "lon": -73.9236795 }, + { "lat": 40.8198191, "lon": -73.9235064 }, + { "lat": 40.8200305, "lon": -73.9232679 }, + { "lat": 40.8202481, "lon": -73.9230072 }, + { "lat": 40.8205013, "lon": -73.9226749 }, + { "lat": 40.8214328, "lon": -73.9213703 }, + { "lat": 40.8214741, "lon": -73.9213126 }, + { "lat": 40.8215149, "lon": -73.9212553 }, + { "lat": 40.8215346, "lon": -73.9212277 }, + { "lat": 40.8215485, "lon": -73.9211941 }, + { "lat": 40.8215581, "lon": -73.9211554 }, + { "lat": 40.8215589, "lon": -73.9211333 }, + { "lat": 40.8215549, "lon": -73.9211041 }, + { "lat": 40.8215266, "lon": -73.9209993 }, + { "lat": 40.8214972, "lon": -73.9208887 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 153183643, + "bounds": { + "minlat": 40.8282250, + "minlon": -73.9103080, + "maxlat": 40.8287730, + "maxlon": -73.9086040 + }, + "nodes": [ + 42730090, + 12038478850, + 5482223738, + 9990169410, + 8187805303, + 12038478882, + 2827547782 + ], + "geometry": [ + { "lat": 40.8282250, "lon": -73.9086040 }, + { "lat": 40.8282570, "lon": -73.9087035 }, + { "lat": 40.8284628, "lon": -73.9093433 }, + { "lat": 40.8286121, "lon": -73.9098075 }, + { "lat": 40.8287336, "lon": -73.9101854 }, + { "lat": 40.8287505, "lon": -73.9102380 }, + { "lat": 40.8287730, "lon": -73.9103080 } + ], + "tags": { + "highway": "residential", + "name": "East 166th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "166th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 153450269, + "bounds": { + "minlat": 40.8227171, + "minlon": -73.9200377, + "maxlat": 40.8255848, + "maxlon": -73.9184587 + }, + "nodes": [ + 1661234083, + 42763586, + 13033568946, + 42763590, + 13033568941, + 5356400996, + 13758485757, + 13703555000, + 10108383861, + 9917683042, + 42735824 + ], + "geometry": [ + { "lat": 40.8227171, "lon": -73.9200377 }, + { "lat": 40.8229000, "lon": -73.9199310 }, + { "lat": 40.8238055, "lon": -73.9194351 }, + { "lat": 40.8238624, "lon": -73.9194039 }, + { "lat": 40.8239308, "lon": -73.9193645 }, + { "lat": 40.8240556, "lon": -73.9192925 }, + { "lat": 40.8241496, "lon": -73.9192397 }, + { "lat": 40.8244806, "lon": -73.9190607 }, + { "lat": 40.8247635, "lon": -73.9189064 }, + { "lat": 40.8254698, "lon": -73.9185217 }, + { "lat": 40.8255848, "lon": -73.9184587 } + ], + "tags": { + "highway": "residential", + "name": "Concourse Village East", + "name:etymology:wikidata": "Q122566725", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concourse Village", + "tiger:name_direction_suffix": "E", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 153450275, + "bounds": { + "minlat": 40.8212879, + "minlon": -73.9204059, + "maxlat": 40.8220620, + "maxlon": -73.9174051 + }, + "nodes": [ + 42735716, + 9910723123, + 4604302411, + 9910723124, + 2827514754 + ], + "geometry": [ + { "lat": 40.8220620, "lon": -73.9204059 }, + { "lat": 40.8220211, "lon": -73.9202520 }, + { "lat": 40.8218872, "lon": -73.9197445 }, + { "lat": 40.8213151, "lon": -73.9175435 }, + { "lat": 40.8212879, "lon": -73.9174051 } + ], + "tags": { + "highway": "residential", + "name": "East 156th Street", + "name_1": "Thurman Munson Way", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "156th", + "tiger:name_base_1": "Thurman Munson", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:name_type_1": "Way" + } +}, +{ + "type": "way", + "id": 153450282, + "bounds": { + "minlat": 40.8223397, + "minlon": -73.9202495, + "maxlat": 40.8225187, + "maxlon": -73.9201497 + }, + "nodes": [ + 1661234082, + 42735719 + ], + "geometry": [ + { "lat": 40.8223397, "lon": -73.9202495 }, + { "lat": 40.8225187, "lon": -73.9201497 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Morris Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 153450289, + "bounds": { + "minlat": 40.8202761, + "minlon": -73.9237650, + "maxlat": 40.8219878, + "maxlon": -73.9214743 + }, + "nodes": [ + 7557517343, + 7557517342, + 10635464416, + 13185824064, + 3695220271, + 7557517348, + 1661234078 + ], + "geometry": [ + { "lat": 40.8202761, "lon": -73.9237650 }, + { "lat": 40.8207191, "lon": -73.9232079 }, + { "lat": 40.8208257, "lon": -73.9230738 }, + { "lat": 40.8209374, "lon": -73.9229312 }, + { "lat": 40.8210017, "lon": -73.9228525 }, + { "lat": 40.8212767, "lon": -73.9224989 }, + { "lat": 40.8219878, "lon": -73.9214743 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "sidewalk": "no", + "source": "Bing aerial imagery", + "surface": "paved", + "width": "8" + } +}, +{ + "type": "way", + "id": 153450290, + "bounds": { + "minlat": 40.8219508, + "minlon": -73.9214743, + "maxlat": 40.8219878, + "maxlon": -73.9207711 + }, + "nodes": [ + 1661234078, + 1661234069 + ], + "geometry": [ + { "lat": 40.8219878, "lon": -73.9214743 }, + { "lat": 40.8219508, "lon": -73.9207711 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "sidewalk": "no", + "source": "Bing aerial imagery", + "surface": "paved", + "width": "8" + } +}, +{ + "type": "way", + "id": 153450292, + "bounds": { + "minlat": 40.8218553, + "minlon": -73.9207711, + "maxlat": 40.8219508, + "maxlon": -73.9206688 + }, + "nodes": [ + 1661234069, + 13547349174, + 1661202371 + ], + "geometry": [ + { "lat": 40.8219508, "lon": -73.9207711 }, + { "lat": 40.8219338, "lon": -73.9207529 }, + { "lat": 40.8218553, "lon": -73.9206688 } + ], + "tags": { + "highway": "service", + "sidewalk": "no", + "source": "Bing aerial imagery", + "surface": "paved", + "width": "8" + } +}, +{ + "type": "way", + "id": 154359258, + "bounds": { + "minlat": 40.7136067, + "minlon": -73.9142387, + "maxlat": 40.7144167, + "maxlon": -73.9128559 + }, + "nodes": [ + 42881147, + 9950028003, + 5515218204, + 9759984079, + 42847253 + ], + "geometry": [ + { "lat": 40.7144167, "lon": -73.9142387 }, + { "lat": 40.7143632, "lon": -73.9141477 }, + { "lat": 40.7136750, "lon": -73.9129847 }, + { "lat": 40.7136580, "lon": -73.9129527 }, + { "lat": 40.7136067, "lon": -73.9128559 } + ], + "tags": { + "highway": "residential", + "name": "53rd Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 154513051, + "bounds": { + "minlat": 40.7021986, + "minlon": -73.9771388, + "maxlat": 40.7027888, + "maxlon": -73.9764850 + }, + "nodes": [ + 42473945, + 42488910 + ], + "geometry": [ + { "lat": 40.7027888, "lon": -73.9771388 }, + { "lat": 40.7021986, "lon": -73.9764850 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Front Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Front", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 154716101, + "bounds": { + "minlat": 40.7744841, + "minlon": -73.9914364, + "maxlat": 40.7755748, + "maxlon": -73.9901444 + }, + "nodes": [ + 595254571, + 11924904893, + 10168235688, + 1672106382, + 10168235687, + 595254569, + 10098621377, + 595245925 + ], + "geometry": [ + { "lat": 40.7744841, "lon": -73.9914364 }, + { "lat": 40.7745435, "lon": -73.9913628 }, + { "lat": 40.7749818, "lon": -73.9908194 }, + { "lat": 40.7750338, "lon": -73.9907549 }, + { "lat": 40.7751035, "lon": -73.9906692 }, + { "lat": 40.7752368, "lon": -73.9905054 }, + { "lat": 40.7755277, "lon": -73.9901946 }, + { "lat": 40.7755748, "lon": -73.9901444 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Riverside Boulevard", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 154716102, + "bounds": { + "minlat": 40.7739898, + "minlon": -73.9902550, + "maxlat": 40.7745560, + "maxlon": -73.9896514 + }, + "nodes": [ + 1672106385, + 9170766743, + 1672106380, + 8122371990, + 9170766742, + 8122371982, + 2294828184, + 9170766741, + 9170766740, + 1672106383, + 10573903212, + 595245920 + ], + "geometry": [ + { "lat": 40.7739898, "lon": -73.9902550 }, + { "lat": 40.7740140, "lon": -73.9902329 }, + { "lat": 40.7740438, "lon": -73.9902024 }, + { "lat": 40.7740734, "lon": -73.9901667 }, + { "lat": 40.7741009, "lon": -73.9901230 }, + { "lat": 40.7742098, "lon": -73.9899423 }, + { "lat": 40.7742378, "lon": -73.9898990 }, + { "lat": 40.7742679, "lon": -73.9898624 }, + { "lat": 40.7743181, "lon": -73.9898150 }, + { "lat": 40.7743698, "lon": -73.9897703 }, + { "lat": 40.7744968, "lon": -73.9896892 }, + { "lat": 40.7745560, "lon": -73.9896514 } + ], + "tags": { + "highway": "residential", + "layer": "0", + "name": "Freedom Place South", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 154716105, + "bounds": { + "minlat": 40.7739469, + "minlon": -73.9920933, + "maxlat": 40.7744841, + "maxlon": -73.9914364 + }, + "nodes": [ + 595254573, + 10098711648, + 11924904886, + 595254571 + ], + "geometry": [ + { "lat": 40.7739469, "lon": -73.9920933 }, + { "lat": 40.7740145, "lon": -73.9920107 }, + { "lat": 40.7744401, "lon": -73.9914892 }, + { "lat": 40.7744841, "lon": -73.9914364 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Riverside Boulevard", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 155008808, + "bounds": { + "minlat": 40.7015315, + "minlon": -73.9871947, + "maxlat": 40.7015443, + "maxlon": -73.9868154 + }, + "nodes": [ + 11708907031, + 9795347321, + 10172645856 + ], + "geometry": [ + { "lat": 40.7015315, "lon": -73.9868154 }, + { "lat": 40.7015321, "lon": -73.9868322 }, + { "lat": 40.7015443, "lon": -73.9871947 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "hgv": "local", + "highway": "tertiary", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "York Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:name_base": "York", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 156136393, + "bounds": { + "minlat": 40.7352133, + "minlon": -73.9528495, + "maxlat": 40.7353684, + "maxlon": -73.9528055 + }, + "nodes": [ + 277046418, + 9996409524, + 9996409525, + 9996409522 + ], + "geometry": [ + { "lat": 40.7353684, "lon": -73.9528495 }, + { "lat": 40.7352936, "lon": -73.9528371 }, + { "lat": 40.7352433, "lon": -73.9528248 }, + { "lat": 40.7352133, "lon": -73.9528055 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A49", + "tiger:county": "Kings, NY", + "tiger:name_base": "Mc Guinness", + "tiger:name_base_1": "Pulaski", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Brg", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 156897955, + "bounds": { + "minlat": 40.8161527, + "minlon": -73.9801831, + "maxlat": 40.8165866, + "maxlon": -73.9789252 + }, + "nodes": [ + 1750475778, + 12248807215, + 12248807214, + 12248807213, + 12248807212, + 12248807211, + 1750475781, + 1750475783, + 5929253653, + 5950210793, + 5929253649, + 5362533099 + ], + "geometry": [ + { "lat": 40.8161890, "lon": -73.9789252 }, + { "lat": 40.8161737, "lon": -73.9789350 }, + { "lat": 40.8161634, "lon": -73.9789448 }, + { "lat": 40.8161555, "lon": -73.9789578 }, + { "lat": 40.8161527, "lon": -73.9789709 }, + { "lat": 40.8161543, "lon": -73.9789874 }, + { "lat": 40.8162507, "lon": -73.9792312 }, + { "lat": 40.8163072, "lon": -73.9793790 }, + { "lat": 40.8163607, "lon": -73.9795294 }, + { "lat": 40.8165170, "lon": -73.9799673 }, + { "lat": 40.8165261, "lon": -73.9799920 }, + { "lat": 40.8165866, "lon": -73.9801831 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 156897959, + "bounds": { + "minlat": 40.8286185, + "minlon": -73.9721956, + "maxlat": 40.8289564, + "maxlon": -73.9713443 + }, + "nodes": [ + 1691389661, + 7672312217, + 1691389660, + 6767703637, + 1691389659, + 12068970332, + 1752676683, + 12068970327, + 1691389653, + 12068970326, + 1752676684, + 12068970328, + 1752676686, + 12068970329, + 1752676688, + 12068970331, + 12068970330, + 12068970342, + 1752676689, + 6767703639, + 1691389660 + ], + "geometry": [ + { "lat": 40.8289564, "lon": -73.9721956 }, + { "lat": 40.8289122, "lon": -73.9720684 }, + { "lat": 40.8287883, "lon": -73.9717049 }, + { "lat": 40.8287170, "lon": -73.9716243 }, + { "lat": 40.8286469, "lon": -73.9715553 }, + { "lat": 40.8286330, "lon": -73.9715355 }, + { "lat": 40.8286229, "lon": -73.9715127 }, + { "lat": 40.8286185, "lon": -73.9714810 }, + { "lat": 40.8286190, "lon": -73.9714501 }, + { "lat": 40.8286286, "lon": -73.9714128 }, + { "lat": 40.8286471, "lon": -73.9713798 }, + { "lat": 40.8286739, "lon": -73.9713573 }, + { "lat": 40.8287057, "lon": -73.9713443 }, + { "lat": 40.8287385, "lon": -73.9713464 }, + { "lat": 40.8287624, "lon": -73.9713617 }, + { "lat": 40.8287797, "lon": -73.9713797 }, + { "lat": 40.8287958, "lon": -73.9714079 }, + { "lat": 40.8288047, "lon": -73.9714288 }, + { "lat": 40.8288081, "lon": -73.9714541 }, + { "lat": 40.8288035, "lon": -73.9715644 }, + { "lat": 40.8287883, "lon": -73.9717049 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 156994955, + "bounds": { + "minlat": 40.7452350, + "minlon": -74.0050981, + "maxlat": 40.7464102, + "maxlon": -74.0022968 + }, + "nodes": [ + 42443674, + 10168486339, + 12181309669, + 11048744567, + 10168486352, + 42443676 + ], + "geometry": [ + { "lat": 40.7452350, "lon": -74.0022968 }, + { "lat": 40.7452769, "lon": -74.0023935 }, + { "lat": 40.7463373, "lon": -74.0049146 }, + { "lat": 40.7463485, "lon": -74.0049427 }, + { "lat": 40.7463654, "lon": -74.0049841 }, + { "lat": 40.7464102, "lon": -74.0050981 } + ], + "tags": { + "alt_name": "West 21 Street", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "West 21st Street", + "name:ru": "Западная 21-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 156994961, + "bounds": { + "minlat": 40.7416288, + "minlon": -73.9994132, + "maxlat": 40.7440255, + "maxlon": -73.9937317 + }, + "nodes": [ + 42430265, + 7781138062, + 12181309676, + 9683231686, + 42439836, + 9683231689, + 12181309673, + 12181309674, + 10171509282, + 5849918502 + ], + "geometry": [ + { "lat": 40.7416288, "lon": -73.9937317 }, + { "lat": 40.7416869, "lon": -73.9938722 }, + { "lat": 40.7427548, "lon": -73.9964045 }, + { "lat": 40.7427748, "lon": -73.9964512 }, + { "lat": 40.7428254, "lon": -73.9965699 }, + { "lat": 40.7428804, "lon": -73.9966998 }, + { "lat": 40.7439393, "lon": -73.9992087 }, + { "lat": 40.7439520, "lon": -73.9992389 }, + { "lat": 40.7439701, "lon": -73.9992818 }, + { "lat": 40.7440255, "lon": -73.9994132 } + ], + "tags": { + "alt_name": "West 21 Street", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 21st Street", + "name:ru": "Западная 21-я стрит", + "oneway": "yes", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 156994969, + "bounds": { + "minlat": 40.7440255, + "minlon": -73.9994132, + "maxlat": 40.7446300, + "maxlon": -73.9989693 + }, + "nodes": [ + 5849918502, + 10171509284, + 10171509272, + 42434271 + ], + "geometry": [ + { "lat": 40.7440255, "lon": -73.9994132 }, + { "lat": 40.7440691, "lon": -73.9993817 }, + { "lat": 40.7445707, "lon": -73.9990129 }, + { "lat": 40.7446300, "lon": -73.9989693 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 156994977, + "bounds": { + "minlat": 40.7449883, + "minlon": -74.0024764, + "maxlat": 40.7452350, + "maxlon": -74.0022968 + }, + "nodes": [ + 42443674, + 10168486341, + 8913108827 + ], + "geometry": [ + { "lat": 40.7452350, "lon": -74.0022968 }, + { "lat": 40.7451669, "lon": -74.0023452 }, + { "lat": 40.7449883, "lon": -74.0024764 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 157012386, + "bounds": { + "minlat": 40.7258473, + "minlon": -74.0021622, + "maxlat": 40.7297532, + "maxlon": -73.9944754 + }, + "nodes": [ + 42430187, + 5854302558, + 3891950553, + 2477560563, + 8309478941, + 1692433938, + 8309478938, + 8309478953, + 1692433935, + 8309478951, + 8429031593, + 1692433932, + 8429031590, + 8309478930, + 1692433928, + 8309478928, + 1692433924, + 3236571730, + 8309478998, + 1692433920, + 8309478995, + 5355267632, + 8309479027, + 1692433919, + 8309479024, + 1692433918, + 12187431478, + 8309479017, + 1692433916, + 8309479014, + 12187431479, + 12187431489, + 1692433914 + ], + "geometry": [ + { "lat": 40.7297532, "lon": -74.0021622 }, + { "lat": 40.7296215, "lon": -74.0021058 }, + { "lat": 40.7296038, "lon": -74.0020721 }, + { "lat": 40.7295131, "lon": -74.0018856 }, + { "lat": 40.7292026, "lon": -74.0012559 }, + { "lat": 40.7291698, "lon": -74.0011880 }, + { "lat": 40.7291437, "lon": -74.0011344 }, + { "lat": 40.7288280, "lon": -74.0004872 }, + { "lat": 40.7288005, "lon": -74.0004308 }, + { "lat": 40.7287747, "lon": -74.0003789 }, + { "lat": 40.7284540, "lon": -73.9997307 }, + { "lat": 40.7284251, "lon": -73.9996723 }, + { "lat": 40.7284007, "lon": -73.9996230 }, + { "lat": 40.7281146, "lon": -73.9990453 }, + { "lat": 40.7280695, "lon": -73.9989542 }, + { "lat": 40.7280320, "lon": -73.9988785 }, + { "lat": 40.7276837, "lon": -73.9981746 }, + { "lat": 40.7272964, "lon": -73.9974022 }, + { "lat": 40.7269682, "lon": -73.9967370 }, + { "lat": 40.7269315, "lon": -73.9966626 }, + { "lat": 40.7269008, "lon": -73.9966005 }, + { "lat": 40.7267777, "lon": -73.9963523 }, + { "lat": 40.7265761, "lon": -73.9959456 }, + { "lat": 40.7265283, "lon": -73.9958473 }, + { "lat": 40.7264847, "lon": -73.9957583 }, + { "lat": 40.7261371, "lon": -73.9950679 }, + { "lat": 40.7260041, "lon": -73.9948035 }, + { "lat": 40.7259795, "lon": -73.9947537 }, + { "lat": 40.7259268, "lon": -73.9946467 }, + { "lat": 40.7258838, "lon": -73.9945612 }, + { "lat": 40.7258730, "lon": -73.9945385 }, + { "lat": 40.7258602, "lon": -73.9945095 }, + { "lat": 40.7258473, "lon": -73.9944754 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Bleecker Street", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 157012387, + "bounds": { + "minlat": 40.7304314, + "minlon": -74.0001225, + "maxlat": 40.7310432, + "maxlon": -73.9996039 + }, + "nodes": [ + 1692433941, + 3584752496, + 8309478965, + 1692433940 + ], + "geometry": [ + { "lat": 40.7310432, "lon": -73.9996039 }, + { "lat": 40.7309915, "lon": -73.9996477 }, + { "lat": 40.7304729, "lon": -74.0000873 }, + { "lat": 40.7304314, "lon": -74.0001225 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "MacDougal Street", + "name:etymology:wikidata": "Q659951", + "name:ko": "맥두걸 스트리트", + "name:ru": "Макдугал-стрит", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6721850", + "wikipedia": "en:MacDougal Street" + } +}, +{ + "type": "way", + "id": 157012388, + "bounds": { + "minlat": 40.7282513, + "minlon": -73.9965975, + "maxlat": 40.7283843, + "maxlon": -73.9964854 + }, + "nodes": [ + 1692433929, + 1692433930 + ], + "geometry": [ + { "lat": 40.7282513, "lon": -73.9965975 }, + { "lat": 40.7283843, "lon": -73.9964854 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "source": "Bing aerial imagery", + "source:geometry": "Bing aerial imagery", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 157012389, + "bounds": { + "minlat": 40.7278112, + "minlon": -73.9980654, + "maxlat": 40.7279445, + "maxlon": -73.9979512 + }, + "nodes": [ + 1692433926, + 1692433925 + ], + "geometry": [ + { "lat": 40.7279445, "lon": -73.9979512 }, + { "lat": 40.7278112, "lon": -73.9980654 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 157012390, + "bounds": { + "minlat": 40.7283843, + "minlon": -73.9964854, + "maxlat": 40.7285692, + "maxlon": -73.9963296 + }, + "nodes": [ + 1692433930, + 8309478914, + 12009866801, + 12009866791, + 42440548 + ], + "geometry": [ + { "lat": 40.7283843, "lon": -73.9964854 }, + { "lat": 40.7284785, "lon": -73.9964060 }, + { "lat": 40.7284923, "lon": -73.9963944 }, + { "lat": 40.7285192, "lon": -73.9963717 }, + { "lat": 40.7285692, "lon": -73.9963296 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "source:geometry": "Bing aerial imagery", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 157012391, + "bounds": { + "minlat": 40.7286300, + "minlon": -73.9973638, + "maxlat": 40.7287597, + "maxlon": -73.9972527 + }, + "nodes": [ + 1692433934, + 1692433933 + ], + "geometry": [ + { "lat": 40.7287597, "lon": -73.9972527 }, + { "lat": 40.7286300, "lon": -73.9973638 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 157012393, + "bounds": { + "minlat": 40.7276837, + "minlon": -73.9981746, + "maxlat": 40.7278112, + "maxlon": -73.9980654 + }, + "nodes": [ + 1692433925, + 8309478917, + 1692433924 + ], + "geometry": [ + { "lat": 40.7278112, "lon": -73.9980654 }, + { "lat": 40.7277431, "lon": -73.9981237 }, + { "lat": 40.7276837, "lon": -73.9981746 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "source": "Bing aerial imagery", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 157012395, + "bounds": { + "minlat": 40.7287597, + "minlon": -73.9972527, + "maxlat": 40.7289446, + "maxlon": -73.9970942 + }, + "nodes": [ + 1692433936, + 12009866790, + 12009866802, + 8309478915, + 1692433934 + ], + "geometry": [ + { "lat": 40.7289446, "lon": -73.9970942 }, + { "lat": 40.7288951, "lon": -73.9971366 }, + { "lat": 40.7288729, "lon": -73.9971556 }, + { "lat": 40.7288547, "lon": -73.9971712 }, + { "lat": 40.7287597, "lon": -73.9972527 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "source": "Bing aerial imagery", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 157012396, + "bounds": { + "minlat": 40.7275630, + "minlon": -73.9971775, + "maxlat": 40.7282513, + "maxlon": -73.9965975 + }, + "nodes": [ + 1692433923, + 6337060932, + 6337060930, + 1692433929 + ], + "geometry": [ + { "lat": 40.7275630, "lon": -73.9971775 }, + { "lat": 40.7277074, "lon": -73.9970559 }, + { "lat": 40.7281313, "lon": -73.9966986 }, + { "lat": 40.7282513, "lon": -73.9965975 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "source:geometry": "Bing aerial imagery", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 157012397, + "bounds": { + "minlat": 40.7279445, + "minlon": -73.9979512, + "maxlat": 40.7286300, + "maxlon": -73.9973638 + }, + "nodes": [ + 1692433933, + 9934776564, + 9934776539, + 1692433926 + ], + "geometry": [ + { "lat": 40.7286300, "lon": -73.9973638 }, + { "lat": 40.7283300, "lon": -73.9976208 }, + { "lat": 40.7282983, "lon": -73.9976480 }, + { "lat": 40.7279445, "lon": -73.9979512 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "source": "Bing aerial imagery", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 157012398, + "bounds": { + "minlat": 40.7310432, + "minlon": -73.9996039, + "maxlat": 40.7322180, + "maxlon": -73.9986160 + }, + "nodes": [ + 42433281, + 3584752520, + 4302910557, + 1692433942, + 4302910552, + 4302903239, + 1692433941 + ], + "geometry": [ + { "lat": 40.7322180, "lon": -73.9986160 }, + { "lat": 40.7321630, "lon": -73.9986559 }, + { "lat": 40.7316792, "lon": -73.9990639 }, + { "lat": 40.7316250, "lon": -73.9991088 }, + { "lat": 40.7315768, "lon": -73.9991502 }, + { "lat": 40.7311062, "lon": -73.9995503 }, + { "lat": 40.7310432, "lon": -73.9996039 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Washington Square West", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 157014136, + "bounds": { + "minlat": 40.7375239, + "minlon": -73.9811768, + "maxlat": 40.7378893, + "maxlon": -73.9809116 + }, + "nodes": [ + 42442889, + 3686062439, + 6139477286, + 8119192797 + ], + "geometry": [ + { "lat": 40.7378893, "lon": -73.9809116 }, + { "lat": 40.7377950, "lon": -73.9809800 }, + { "lat": 40.7376007, "lon": -73.9811211 }, + { "lat": 40.7375239, "lon": -73.9811768 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 157014137, + "bounds": { + "minlat": 40.7460796, + "minlon": -73.9749393, + "maxlat": 40.7464084, + "maxlon": -73.9746972 + }, + "nodes": [ + 593886227, + 9987259798, + 7949892055, + 4259278546, + 42423020 + ], + "geometry": [ + { "lat": 40.7464084, "lon": -73.9746972 }, + { "lat": 40.7463439, "lon": -73.9747447 }, + { "lat": 40.7462086, "lon": -73.9748443 }, + { "lat": 40.7461562, "lon": -73.9748826 }, + { "lat": 40.7460796, "lon": -73.9749393 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "change:lanes": "no|no|not_left|yes|yes|yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 157019558, + "bounds": { + "minlat": 40.7101830, + "minlon": -73.9584575, + "maxlat": 40.7103357, + "maxlon": -73.9568334 + }, + "nodes": [ + 42463268, + 9768177711, + 1692483453, + 7711430782, + 5481854408, + 8821588895, + 3630238013 + ], + "geometry": [ + { "lat": 40.7101830, "lon": -73.9584575 }, + { "lat": 40.7101921, "lon": -73.9583432 }, + { "lat": 40.7102160, "lon": -73.9579963 }, + { "lat": 40.7102168, "lon": -73.9579886 }, + { "lat": 40.7102700, "lon": -73.9574644 }, + { "lat": 40.7103302, "lon": -73.9568866 }, + { "lat": 40.7103357, "lon": -73.9568334 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 157019562, + "bounds": { + "minlat": 40.7075240, + "minlon": -73.9611440, + "maxlat": 40.7091686, + "maxlon": -73.9608366 + }, + "nodes": [ + 42501318, + 2782255530, + 6235394740, + 42474671, + 6235394739, + 6235394742, + 42477995 + ], + "geometry": [ + { "lat": 40.7091686, "lon": -73.9608366 }, + { "lat": 40.7091145, "lon": -73.9608493 }, + { "lat": 40.7084314, "lon": -73.9609771 }, + { "lat": 40.7083545, "lon": -73.9609905 }, + { "lat": 40.7082957, "lon": -73.9610014 }, + { "lat": 40.7076159, "lon": -73.9611266 }, + { "lat": 40.7075240, "lon": -73.9611440 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Roebling Street", + "name:etymology:wikidata": "Q77237", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Roebling", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 157019568, + "bounds": { + "minlat": 40.7114240, + "minlon": -73.9671197, + "maxlat": 40.7139214, + "maxlon": -73.9595330 + }, + "nodes": [ + 42469468, + 13146592947, + 8468050573, + 5186818622, + 42474099, + 5186818623, + 8468050633, + 9767625465, + 42474104, + 5186818635, + 9767625467, + 9767625399, + 42474121, + 9785615330, + 6248588467, + 42474126, + 6248588466, + 6248588472, + 42474131 + ], + "geometry": [ + { "lat": 40.7139214, "lon": -73.9671197 }, + { "lat": 40.7139035, "lon": -73.9670534 }, + { "lat": 40.7135261, "lon": -73.9656585 }, + { "lat": 40.7135084, "lon": -73.9655916 }, + { "lat": 40.7134840, "lon": -73.9655030 }, + { "lat": 40.7134625, "lon": -73.9654284 }, + { "lat": 40.7131189, "lon": -73.9642122 }, + { "lat": 40.7131063, "lon": -73.9641675 }, + { "lat": 40.7130790, "lon": -73.9640710 }, + { "lat": 40.7130512, "lon": -73.9639946 }, + { "lat": 40.7130506, "lon": -73.9639929 }, + { "lat": 40.7125547, "lon": -73.9626310 }, + { "lat": 40.7125260, "lon": -73.9625520 }, + { "lat": 40.7124998, "lon": -73.9624803 }, + { "lat": 40.7119991, "lon": -73.9611111 }, + { "lat": 40.7119690, "lon": -73.9610290 }, + { "lat": 40.7119439, "lon": -73.9609604 }, + { "lat": 40.7114629, "lon": -73.9596396 }, + { "lat": 40.7114240, "lon": -73.9595330 } + ], + "tags": { + "highway": "residential", + "name": "South 3rd Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 157019571, + "bounds": { + "minlat": 40.7074296, + "minlon": -73.9558706, + "maxlat": 40.7093500, + "maxlon": -73.9505355 + }, + "nodes": [ + 42520569, + 6663064633, + 9582431919, + 9582431918, + 12980320303, + 9755373473, + 42490943, + 9755373472, + 9755373469, + 42491456, + 9755373468, + 5481854391, + 9768177528, + 42488291, + 9768177530, + 6663064632, + 9768177542, + 42520715 + ], + "geometry": [ + { "lat": 40.7074296, "lon": -73.9505355 }, + { "lat": 40.7074379, "lon": -73.9506484 }, + { "lat": 40.7074983, "lon": -73.9508266 }, + { "lat": 40.7075622, "lon": -73.9510135 }, + { "lat": 40.7076554, "lon": -73.9512678 }, + { "lat": 40.7077953, "lon": -73.9516492 }, + { "lat": 40.7078205, "lon": -73.9517181 }, + { "lat": 40.7078499, "lon": -73.9517986 }, + { "lat": 40.7083429, "lon": -73.9531485 }, + { "lat": 40.7083663, "lon": -73.9532127 }, + { "lat": 40.7083958, "lon": -73.9532940 }, + { "lat": 40.7087222, "lon": -73.9541939 }, + { "lat": 40.7088871, "lon": -73.9546446 }, + { "lat": 40.7089128, "lon": -73.9547149 }, + { "lat": 40.7089416, "lon": -73.9547920 }, + { "lat": 40.7093001, "lon": -73.9557498 }, + { "lat": 40.7093243, "lon": -73.9558081 }, + { "lat": 40.7093500, "lon": -73.9558706 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "South 4th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 157405685, + "bounds": { + "minlat": 40.7116585, + "minlon": -74.0157489, + "maxlat": 40.7118516, + "maxlon": -74.0156855 + }, + "nodes": [ + 889298452, + 11424681370, + 11424681366, + 11424681369 + ], + "geometry": [ + { "lat": 40.7118516, "lon": -74.0156855 }, + { "lat": 40.7117427, "lon": -74.0157185 }, + { "lat": 40.7116818, "lon": -74.0157386 }, + { "lat": 40.7116585, "lon": -74.0157489 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "South End Avenue", + "name:ko": "사우스 엔드 애비뉴", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 157457340, + "bounds": { + "minlat": 40.7449819, + "minlon": -73.9577572, + "maxlat": 40.7461010, + "maxlon": -73.9567091 + }, + "nodes": [ + 5834590676, + 2053820234, + 9982771531, + 276318085, + 9982771532, + 9982771534, + 9982771537, + 4886088631 + ], + "geometry": [ + { "lat": 40.7461010, "lon": -73.9567091 }, + { "lat": 40.7460602, "lon": -73.9567447 }, + { "lat": 40.7456120, "lon": -73.9571700 }, + { "lat": 40.7455488, "lon": -73.9572300 }, + { "lat": 40.7454933, "lon": -73.9572797 }, + { "lat": 40.7454245, "lon": -73.9573444 }, + { "lat": 40.7450202, "lon": -73.9577248 }, + { "lat": 40.7449819, "lon": -73.9577572 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Center", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 158799939, + "bounds": { + "minlat": 40.7235607, + "minlon": -73.9393984, + "maxlat": 40.7236021, + "maxlon": -73.9389330 + }, + "nodes": [ + 42476673, + 8610941932, + 9765038812, + 42490491 + ], + "geometry": [ + { "lat": 40.7236021, "lon": -73.9389330 }, + { "lat": 40.7235776, "lon": -73.9392063 }, + { "lat": 40.7235688, "lon": -73.9392817 }, + { "lat": 40.7235607, "lon": -73.9393984 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Driggs Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 158799967, + "bounds": { + "minlat": 40.7025700, + "minlon": -73.9502510, + "maxlat": 40.7027260, + "maxlon": -73.9500130 + }, + "nodes": [ + 42520556, + 9755373301, + 42527626 + ], + "geometry": [ + { "lat": 40.7025700, "lon": -73.9502510 }, + { "lat": 40.7026770, "lon": -73.9500880 }, + { "lat": 40.7027260, "lon": -73.9500130 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Lorimer", + "tiger:name_type": "St", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 159047977, + "bounds": { + "minlat": 40.8603676, + "minlon": -73.9560729, + "maxlat": 40.8604964, + "maxlon": -73.9555637 + }, + "nodes": [ + 1711517076, + 1711517067 + ], + "geometry": [ + { "lat": 40.8604964, "lon": -73.9560729 }, + { "lat": 40.8603676, "lon": -73.9555637 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "oneway": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 159047978, + "bounds": { + "minlat": 40.8609934, + "minlon": -73.9551211, + "maxlat": 40.8612145, + "maxlon": -73.9543699 + }, + "nodes": [ + 1711517115, + 1711517123 + ], + "geometry": [ + { "lat": 40.8609934, "lon": -73.9543699 }, + { "lat": 40.8612145, "lon": -73.9551211 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 159047979, + "bounds": { + "minlat": 40.8600370, + "minlon": -73.9564803, + "maxlat": 40.8602681, + "maxlon": -73.9557182 + }, + "nodes": [ + 1711517047, + 1711517061 + ], + "geometry": [ + { "lat": 40.8600370, "lon": -73.9557182 }, + { "lat": 40.8602681, "lon": -73.9564803 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 159047980, + "bounds": { + "minlat": 40.8597921, + "minlon": -73.9571663, + "maxlat": 40.8613807, + "maxlon": -73.9549558 + }, + "nodes": [ + 10273888998, + 1711517135, + 1711517129, + 1711517123, + 1711517117, + 7393543899, + 1711517104, + 1711517067, + 1711517058, + 1711517047, + 1711517042, + 1711517036, + 1711517034, + 1711517040, + 1711517052, + 1711517054, + 1711517050 + ], + "geometry": [ + { "lat": 40.8613762, "lon": -73.9549558 }, + { "lat": 40.8613807, "lon": -73.9549983 }, + { "lat": 40.8613602, "lon": -73.9550430 }, + { "lat": 40.8612145, "lon": -73.9551211 }, + { "lat": 40.8610407, "lon": -73.9552128 }, + { "lat": 40.8609394, "lon": -73.9552665 }, + { "lat": 40.8608240, "lon": -73.9553292 }, + { "lat": 40.8603676, "lon": -73.9555637 }, + { "lat": 40.8602158, "lon": -73.9556346 }, + { "lat": 40.8600370, "lon": -73.9557182 }, + { "lat": 40.8598760, "lon": -73.9557935 }, + { "lat": 40.8598071, "lon": -73.9558728 }, + { "lat": 40.8597921, "lon": -73.9559382 }, + { "lat": 40.8598430, "lon": -73.9561898 }, + { "lat": 40.8600771, "lon": -73.9570111 }, + { "lat": 40.8600989, "lon": -73.9571221 }, + { "lat": 40.8601106, "lon": -73.9571663 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 159047982, + "bounds": { + "minlat": 40.8598760, + "minlon": -73.9564862, + "maxlat": 40.8603820, + "maxlon": -73.9556346 + }, + "nodes": [ + 1711517058, + 1711517069, + 1711517065, + 1711517061, + 1711517056, + 1711517045, + 1711517042 + ], + "geometry": [ + { "lat": 40.8602158, "lon": -73.9556346 }, + { "lat": 40.8603820, "lon": -73.9562009 }, + { "lat": 40.8603640, "lon": -73.9563871 }, + { "lat": 40.8602681, "lon": -73.9564803 }, + { "lat": 40.8601272, "lon": -73.9564862 }, + { "lat": 40.8600193, "lon": -73.9563673 }, + { "lat": 40.8598760, "lon": -73.9557935 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 159047983, + "bounds": { + "minlat": 40.8608721, + "minlon": -73.9552128, + "maxlat": 40.8613762, + "maxlon": -73.9543699 + }, + "nodes": [ + 1711517117, + 1711517110, + 1711517112, + 1711517115, + 1711517119, + 1711517126, + 10273888998 + ], + "geometry": [ + { "lat": 40.8610407, "lon": -73.9552128 }, + { "lat": 40.8608721, "lon": -73.9546473 }, + { "lat": 40.8608960, "lon": -73.9544690 }, + { "lat": 40.8609934, "lon": -73.9543699 }, + { "lat": 40.8611418, "lon": -73.9543699 }, + { "lat": 40.8612392, "lon": -73.9544908 }, + { "lat": 40.8613762, "lon": -73.9549558 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 159047984, + "bounds": { + "minlat": 40.8604964, + "minlon": -73.9560729, + "maxlat": 40.8608681, + "maxlon": -73.9553292 + }, + "nodes": [ + 1711517104, + 1711517108, + 1711517106, + 1711517102, + 1711517093, + 1711517085, + 1711517079, + 1711517076 + ], + "geometry": [ + { "lat": 40.8608240, "lon": -73.9553292 }, + { "lat": 40.8608681, "lon": -73.9555201 }, + { "lat": 40.8608531, "lon": -73.9556191 }, + { "lat": 40.8607977, "lon": -73.9556925 }, + { "lat": 40.8606553, "lon": -73.9557678 }, + { "lat": 40.8605489, "lon": -73.9558272 }, + { "lat": 40.8605084, "lon": -73.9559322 }, + { "lat": 40.8604964, "lon": -73.9560729 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "oneway": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 159047985, + "bounds": { + "minlat": 40.8578600, + "minlon": -73.9588715, + "maxlat": 40.8605144, + "maxlon": -73.9560729 + }, + "nodes": [ + 1711527536, + 1711517019, + 1711517025, + 1711517032, + 1711517060, + 1711517073, + 1711517083, + 1711517076 + ], + "geometry": [ + { "lat": 40.8578600, "lon": -73.9588715 }, + { "lat": 40.8579547, "lon": -73.9587539 }, + { "lat": 40.8588978, "lon": -73.9583987 }, + { "lat": 40.8597621, "lon": -73.9579375 }, + { "lat": 40.8602447, "lon": -73.9573550 }, + { "lat": 40.8604365, "lon": -73.9569151 }, + { "lat": 40.8605144, "lon": -73.9564910 }, + { "lat": 40.8604964, "lon": -73.9560729 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "no", + "highway": "service", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "surface": "paved", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 159049610, + "bounds": { + "minlat": 40.8579350, + "minlon": -73.9591476, + "maxlat": 40.8751456, + "maxlon": -73.9469962 + }, + "nodes": [ + 1711527542, + 5603145571, + 3701917118, + 171241671, + 3701917124, + 3701917114, + 171241674, + 3701917123, + 103220773, + 3701917116, + 3701917117, + 3701917113, + 3701917122, + 3701917115, + 440215039, + 103220775, + 103220776, + 103220777, + 103220778, + 103220780, + 3701917119, + 1424873005, + 3701917120, + 3701917121, + 1424873006, + 1424873007, + 1424873008, + 1424873009, + 1424873010, + 1424873011, + 1424873012, + 1424873013, + 1424873014, + 1424873015, + 1424873016, + 1424873017, + 1424873018, + 1424873019, + 1424873020, + 1424873021, + 1424873022, + 1424873023, + 1424873024, + 1424873025, + 1424873027, + 5102220052 + ], + "geometry": [ + { "lat": 40.8579350, "lon": -73.9591476 }, + { "lat": 40.8581714, "lon": -73.9589701 }, + { "lat": 40.8582997, "lon": -73.9588722 }, + { "lat": 40.8589937, "lon": -73.9585841 }, + { "lat": 40.8596480, "lon": -73.9584086 }, + { "lat": 40.8599747, "lon": -73.9582902 }, + { "lat": 40.8600509, "lon": -73.9582211 }, + { "lat": 40.8602111, "lon": -73.9580587 }, + { "lat": 40.8606060, "lon": -73.9575058 }, + { "lat": 40.8610545, "lon": -73.9570203 }, + { "lat": 40.8613299, "lon": -73.9566506 }, + { "lat": 40.8615590, "lon": -73.9563328 }, + { "lat": 40.8618737, "lon": -73.9559581 }, + { "lat": 40.8621449, "lon": -73.9556212 }, + { "lat": 40.8623608, "lon": -73.9553760 }, + { "lat": 40.8625604, "lon": -73.9552067 }, + { "lat": 40.8627957, "lon": -73.9550363 }, + { "lat": 40.8629870, "lon": -73.9549072 }, + { "lat": 40.8635166, "lon": -73.9545509 }, + { "lat": 40.8637452, "lon": -73.9543796 }, + { "lat": 40.8640294, "lon": -73.9541452 }, + { "lat": 40.8641834, "lon": -73.9539902 }, + { "lat": 40.8644722, "lon": -73.9537328 }, + { "lat": 40.8646974, "lon": -73.9535313 }, + { "lat": 40.8648680, "lon": -73.9534122 }, + { "lat": 40.8656731, "lon": -73.9529991 }, + { "lat": 40.8663535, "lon": -73.9526455 }, + { "lat": 40.8671438, "lon": -73.9524273 }, + { "lat": 40.8677394, "lon": -73.9522330 }, + { "lat": 40.8682264, "lon": -73.9518566 }, + { "lat": 40.8686400, "lon": -73.9515800 }, + { "lat": 40.8691030, "lon": -73.9512728 }, + { "lat": 40.8697416, "lon": -73.9508055 }, + { "lat": 40.8703242, "lon": -73.9505307 }, + { "lat": 40.8710451, "lon": -73.9502232 }, + { "lat": 40.8717821, "lon": -73.9499070 }, + { "lat": 40.8720687, "lon": -73.9497669 }, + { "lat": 40.8722958, "lon": -73.9495738 }, + { "lat": 40.8727655, "lon": -73.9490209 }, + { "lat": 40.8731705, "lon": -73.9486877 }, + { "lat": 40.8735980, "lon": -73.9482246 }, + { "lat": 40.8740979, "lon": -73.9477180 }, + { "lat": 40.8743051, "lon": -73.9474832 }, + { "lat": 40.8745901, "lon": -73.9472646 }, + { "lat": 40.8750915, "lon": -73.9470200 }, + { "lat": 40.8751456, "lon": -73.9469962 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "lanes": "2", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "surface": "asphalt", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 159049616, + "bounds": { + "minlat": 40.8575889, + "minlon": -73.9593065, + "maxlat": 40.8579443, + "maxlon": -73.9588371 + }, + "nodes": [ + 1711527542, + 7924845364, + 2308999659, + 7924845365, + 7924845362, + 7924845357, + 1711527538, + 7924845377, + 2308999658, + 7924845354, + 7924845369, + 1711527535, + 7924845360, + 2308999662, + 7924845374, + 7924845352, + 1711527531, + 7924845366, + 7924845372, + 1711527529, + 7924845363, + 1711527527, + 7924845355, + 2308999660, + 7924845375, + 7924845368, + 7924845367, + 1711527533, + 7924845358, + 2308999661, + 7924845351, + 7924845359, + 7924845370, + 1711527536, + 7924845361, + 2308999664, + 7924845353, + 1711527540, + 7924845373, + 7924845371, + 7924845376, + 2308999663, + 7924845356, + 1711527542 + ], + "geometry": [ + { "lat": 40.8579350, "lon": -73.9591476 }, + { "lat": 40.8579264, "lon": -73.9591752 }, + { "lat": 40.8579155, "lon": -73.9592004 }, + { "lat": 40.8578993, "lon": -73.9592283 }, + { "lat": 40.8578814, "lon": -73.9592514 }, + { "lat": 40.8578571, "lon": -73.9592742 }, + { "lat": 40.8578328, "lon": -73.9592900 }, + { "lat": 40.8578032, "lon": -73.9593018 }, + { "lat": 40.8577768, "lon": -73.9593065 }, + { "lat": 40.8577509, "lon": -73.9593059 }, + { "lat": 40.8577202, "lon": -73.9592987 }, + { "lat": 40.8576916, "lon": -73.9592849 }, + { "lat": 40.8576636, "lon": -73.9592634 }, + { "lat": 40.8576426, "lon": -73.9592403 }, + { "lat": 40.8576238, "lon": -73.9592118 }, + { "lat": 40.8576096, "lon": -73.9591822 }, + { "lat": 40.8575986, "lon": -73.9591489 }, + { "lat": 40.8575917, "lon": -73.9591141 }, + { "lat": 40.8575889, "lon": -73.9590822 }, + { "lat": 40.8575894, "lon": -73.9590520 }, + { "lat": 40.8575930, "lon": -73.9590204 }, + { "lat": 40.8576000, "lon": -73.9589892 }, + { "lat": 40.8576103, "lon": -73.9589593 }, + { "lat": 40.8576229, "lon": -73.9589331 }, + { "lat": 40.8576390, "lon": -73.9589078 }, + { "lat": 40.8576571, "lon": -73.9588863 }, + { "lat": 40.8576800, "lon": -73.9588663 }, + { "lat": 40.8577033, "lon": -73.9588519 }, + { "lat": 40.8577274, "lon": -73.9588422 }, + { "lat": 40.8577541, "lon": -73.9588371 }, + { "lat": 40.8577806, "lon": -73.9588372 }, + { "lat": 40.8578116, "lon": -73.9588441 }, + { "lat": 40.8578344, "lon": -73.9588542 }, + { "lat": 40.8578600, "lon": -73.9588715 }, + { "lat": 40.8578804, "lon": -73.9588909 }, + { "lat": 40.8579009, "lon": -73.9589174 }, + { "lat": 40.8579161, "lon": -73.9589441 }, + { "lat": 40.8579278, "lon": -73.9589722 }, + { "lat": 40.8579363, "lon": -73.9590012 }, + { "lat": 40.8579416, "lon": -73.9590294 }, + { "lat": 40.8579443, "lon": -73.9590595 }, + { "lat": 40.8579440, "lon": -73.9590891 }, + { "lat": 40.8579408, "lon": -73.9591192 }, + { "lat": 40.8579350, "lon": -73.9591476 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "loc_name": "Ross Dock Circle", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "surface": "asphalt", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 159229976, + "bounds": { + "minlat": 40.7687520, + "minlon": -73.9069064, + "maxlat": 40.7688848, + "maxlon": -73.9060436 + }, + "nodes": [ + 2433000850, + 10917729766, + 10917729771, + 4927558988, + 42865836 + ], + "geometry": [ + { "lat": 40.7687520, "lon": -73.9060436 }, + { "lat": 40.7687801, "lon": -73.9062277 }, + { "lat": 40.7688294, "lon": -73.9065510 }, + { "lat": 40.7688645, "lon": -73.9067815 }, + { "lat": 40.7688848, "lon": -73.9069064 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "name": "Astoria Boulevard North", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 159230480, + "bounds": { + "minlat": 40.7704254, + "minlon": -73.9177172, + "maxlat": 40.7704875, + "maxlon": -73.9176422 + }, + "nodes": [ + 597443930, + 13399317576, + 279603573 + ], + "geometry": [ + { "lat": 40.7704875, "lon": -73.9176422 }, + { "lat": 40.7704820, "lon": -73.9176488 }, + { "lat": 40.7704254, "lon": -73.9177172 } + ], + "tags": { + "highway": "secondary", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "31st Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 159230481, + "bounds": { + "minlat": 40.7694974, + "minlon": -73.9148573, + "maxlat": 40.7695700, + "maxlon": -73.9147922 + }, + "nodes": [ + 597443932, + 42866647 + ], + "geometry": [ + { "lat": 40.7695700, "lon": -73.9147922 }, + { "lat": 40.7694974, "lon": -73.9148573 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:right": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "35th Street", + "oneway": "no", + "source:maxspeed": "sign" + } +}, +{ + "type": "way", + "id": 159657620, + "bounds": { + "minlat": 40.7368828, + "minlon": -74.0055274, + "maxlat": 40.7371064, + "maxlon": -74.0052750 + }, + "nodes": [ + 6211334202, + 6211334201, + 11040080997 + ], + "geometry": [ + { "lat": 40.7368828, "lon": -74.0055274 }, + { "lat": 40.7369330, "lon": -74.0054725 }, + { "lat": 40.7371064, "lon": -74.0052750 } + ], + "tags": { + "alt_name": "Abingdon Square", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 160061999, + "bounds": { + "minlat": 40.8487498, + "minlon": -73.9430454, + "maxlat": 40.8491584, + "maxlon": -73.9430168 + }, + "nodes": [ + 60927836, + 12066633329, + 7911365300, + 7911307272, + 374508121, + 7911307243, + 12068606745, + 60927837 + ], + "geometry": [ + { "lat": 40.8487498, "lon": -73.9430454 }, + { "lat": 40.8487730, "lon": -73.9430401 }, + { "lat": 40.8487971, "lon": -73.9430366 }, + { "lat": 40.8489521, "lon": -73.9430207 }, + { "lat": 40.8489918, "lon": -73.9430177 }, + { "lat": 40.8490334, "lon": -73.9430168 }, + { "lat": 40.8490712, "lon": -73.9430181 }, + { "lat": 40.8491584, "lon": -73.9430242 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 160140193, + "bounds": { + "minlat": 40.7752387, + "minlon": -73.9853840, + "maxlat": 40.7759268, + "maxlon": -73.9851681 + }, + "nodes": [ + 1722116497, + 5708000895, + 1722116479, + 3371304352, + 8636941254, + 1722116476 + ], + "geometry": [ + { "lat": 40.7752387, "lon": -73.9853779 }, + { "lat": 40.7753184, "lon": -73.9853191 }, + { "lat": 40.7755485, "lon": -73.9851681 }, + { "lat": 40.7756027, "lon": -73.9851990 }, + { "lat": 40.7758696, "lon": -73.9853513 }, + { "lat": 40.7759268, "lon": -73.9853840 } + ], + "tags": { + "addr:city": "New York", + "addr:housenumber": "160", + "addr:postcode": "10023", + "addr:state": "NY", + "addr:street": "West End Avenue", + "highway": "service", + "maxspeed": "5 mph", + "service": "driveway", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 160140196, + "bounds": { + "minlat": 40.7766455, + "minlon": -73.9850208, + "maxlat": 40.7772722, + "maxlon": -73.9844370 + }, + "nodes": [ + 1722116514, + 7050745509, + 1722116531, + 1722116483, + 1722116528, + 1722116470, + 3377387933, + 1722116510, + 1722116542, + 1722116534, + 1722116473, + 7050745510, + 4865372426 + ], + "geometry": [ + { "lat": 40.7771850, "lon": -73.9844370 }, + { "lat": 40.7771222, "lon": -73.9844825 }, + { "lat": 40.7766968, "lon": -73.9847909 }, + { "lat": 40.7766586, "lon": -73.9848432 }, + { "lat": 40.7766455, "lon": -73.9848977 }, + { "lat": 40.7766554, "lon": -73.9849483 }, + { "lat": 40.7766630, "lon": -73.9849681 }, + { "lat": 40.7766732, "lon": -73.9849950 }, + { "lat": 40.7767005, "lon": -73.9850124 }, + { "lat": 40.7767400, "lon": -73.9850208 }, + { "lat": 40.7767864, "lon": -73.9850061 }, + { "lat": 40.7772108, "lon": -73.9846965 }, + { "lat": 40.7772722, "lon": -73.9846517 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 160140199, + "bounds": { + "minlat": 40.7773349, + "minlon": -73.9859482, + "maxlat": 40.7777922, + "maxlon": -73.9848187 + }, + "nodes": [ + 1722116498, + 3377383088, + 5948952145 + ], + "geometry": [ + { "lat": 40.7777922, "lon": -73.9859482 }, + { "lat": 40.7777407, "lon": -73.9858149 }, + { "lat": 40.7773349, "lon": -73.9848187 } + ], + "tags": { + "highway": "service", + "name": "West 69th Street", + "name:ru": "Западная 69-я стрит", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 160309051, + "bounds": { + "minlat": 40.7015901, + "minlon": -73.9654658, + "maxlat": 40.7029126, + "maxlon": -73.9638198 + }, + "nodes": [ + 42469414, + 42469421, + 42469425, + 10058693146, + 9998827415 + ], + "geometry": [ + { "lat": 40.7015901, "lon": -73.9638198 }, + { "lat": 40.7021057, "lon": -73.9644630 }, + { "lat": 40.7026517, "lon": -73.9651418 }, + { "lat": 40.7028392, "lon": -73.9653743 }, + { "lat": 40.7029126, "lon": -73.9654658 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 160741325, + "bounds": { + "minlat": 40.7675285, + "minlon": -73.9370611, + "maxlat": 40.7678994, + "maxlon": -73.9366440 + }, + "nodes": [ + 2402842575, + 9915145365, + 10173041592, + 9915145355, + 11427630538, + 1727893495, + 1727893578 + ], + "geometry": [ + { "lat": 40.7675285, "lon": -73.9366440 }, + { "lat": 40.7676001, "lon": -73.9366889 }, + { "lat": 40.7676695, "lon": -73.9367324 }, + { "lat": 40.7676896, "lon": -73.9367450 }, + { "lat": 40.7677429, "lon": -73.9367926 }, + { "lat": 40.7677962, "lon": -73.9368705 }, + { "lat": 40.7678994, "lon": -73.9370611 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 160741334, + "bounds": { + "minlat": 40.7677024, + "minlon": -73.9374973, + "maxlat": 40.7680098, + "maxlon": -73.9372226 + }, + "nodes": [ + 1727893628, + 1727893487 + ], + "geometry": [ + { "lat": 40.7680098, "lon": -73.9372226 }, + { "lat": 40.7677024, "lon": -73.9374973 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 160741335, + "bounds": { + "minlat": 40.7676112, + "minlon": -73.9388236, + "maxlat": 40.7684831, + "maxlon": -73.9370455 + }, + "nodes": [ + 1727893454, + 7746848050, + 1727893578, + 1727893522, + 1727893628, + 1727893682, + 1727893693, + 1727893699, + 1727893702, + 1727893705, + 7746848048, + 7746848047 + ], + "geometry": [ + { "lat": 40.7676112, "lon": -73.9373257 }, + { "lat": 40.7678102, "lon": -73.9371433 }, + { "lat": 40.7678994, "lon": -73.9370611 }, + { "lat": 40.7679159, "lon": -73.9370455 }, + { "lat": 40.7680098, "lon": -73.9372226 }, + { "lat": 40.7681113, "lon": -73.9374071 }, + { "lat": 40.7682024, "lon": -73.9375727 }, + { "lat": 40.7683024, "lon": -73.9377542 }, + { "lat": 40.7683895, "lon": -73.9379180 }, + { "lat": 40.7684831, "lon": -73.9380953 }, + { "lat": 40.7681813, "lon": -73.9383905 }, + { "lat": 40.7677366, "lon": -73.9388236 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 160741336, + "bounds": { + "minlat": 40.7675950, + "minlon": -73.9384148, + "maxlat": 40.7683024, + "maxlon": -73.9377542 + }, + "nodes": [ + 1727893699, + 7746848057, + 1727893618 + ], + "geometry": [ + { "lat": 40.7683024, "lon": -73.9377542 }, + { "lat": 40.7679948, "lon": -73.9380397 }, + { "lat": 40.7675950, "lon": -73.9384148 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 160741340, + "bounds": { + "minlat": 40.7678003, + "minlon": -73.9376789, + "maxlat": 40.7681113, + "maxlon": -73.9374071 + }, + "nodes": [ + 1727893682, + 1727893516 + ], + "geometry": [ + { "lat": 40.7681113, "lon": -73.9374071 }, + { "lat": 40.7678003, "lon": -73.9376789 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 160741342, + "bounds": { + "minlat": 40.7675454, + "minlon": -73.9394957, + "maxlat": 40.7682024, + "maxlon": -73.9375727 + }, + "nodes": [ + 1727893693, + 7746848056, + 1727893595, + 11427630536, + 11427630535, + 11427630534, + 1727893618, + 1727893482, + 7746848047, + 7746848055, + 11427630533, + 7746848053, + 7746848054 + ], + "geometry": [ + { "lat": 40.7682024, "lon": -73.9375727 }, + { "lat": 40.7678970, "lon": -73.9378556 }, + { "lat": 40.7675581, "lon": -73.9381921 }, + { "lat": 40.7675462, "lon": -73.9382240 }, + { "lat": 40.7675454, "lon": -73.9382692 }, + { "lat": 40.7675606, "lon": -73.9383240 }, + { "lat": 40.7675950, "lon": -73.9384148 }, + { "lat": 40.7676624, "lon": -73.9386085 }, + { "lat": 40.7677366, "lon": -73.9388236 }, + { "lat": 40.7677495, "lon": -73.9388586 }, + { "lat": 40.7678423, "lon": -73.9390084 }, + { "lat": 40.7680227, "lon": -73.9393307 }, + { "lat": 40.7678572, "lon": -73.9394957 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 160741343, + "bounds": { + "minlat": 40.7676624, + "minlon": -73.9386085, + "maxlat": 40.7683895, + "maxlon": -73.9379180 + }, + "nodes": [ + 1727893702, + 1727893637, + 1727893482 + ], + "geometry": [ + { "lat": 40.7683895, "lon": -73.9379180 }, + { "lat": 40.7680865, "lon": -73.9382098 }, + { "lat": 40.7676624, "lon": -73.9386085 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 160801658, + "bounds": { + "minlat": 40.7357938, + "minlon": -73.9740046, + "maxlat": 40.7363647, + "maxlon": -73.9725940 + }, + "nodes": [ + 1728266910, + 1728266880, + 1728266824, + 1728266826, + 1728266858 + ], + "geometry": [ + { "lat": 40.7363647, "lon": -73.9740046 }, + { "lat": 40.7362788, "lon": -73.9739635 }, + { "lat": 40.7357938, "lon": -73.9728303 }, + { "lat": 40.7358062, "lon": -73.9725940 }, + { "lat": 40.7361147, "lon": -73.9726272 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 160801660, + "bounds": { + "minlat": 40.7366301, + "minlon": -73.9744992, + "maxlat": 40.7366969, + "maxlon": -73.9743478 + }, + "nodes": [ + 1728266963, + 1728266957, + 4401241767, + 3686034882 + ], + "geometry": [ + { "lat": 40.7366969, "lon": -73.9744992 }, + { "lat": 40.7366701, "lon": -73.9744305 }, + { "lat": 40.7366578, "lon": -73.9744041 }, + { "lat": 40.7366301, "lon": -73.9743478 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 160942006, + "bounds": { + "minlat": 40.7431623, + "minlon": -73.9761991, + "maxlat": 40.7437628, + "maxlon": -73.9750044 + }, + "nodes": [ + 1729087000, + 5721338585, + 1729086996, + 1729086999, + 1729086997, + 3929403850, + 1729086993, + 1729086994, + 1729086995, + 5721338583, + 1729086998 + ], + "geometry": [ + { "lat": 40.7437398, "lon": -73.9755524 }, + { "lat": 40.7436598, "lon": -73.9756114 }, + { "lat": 40.7435829, "lon": -73.9756694 }, + { "lat": 40.7437628, "lon": -73.9760975 }, + { "lat": 40.7436246, "lon": -73.9761991 }, + { "lat": 40.7433941, "lon": -73.9756542 }, + { "lat": 40.7431623, "lon": -73.9751063 }, + { "lat": 40.7432998, "lon": -73.9750044 }, + { "lat": 40.7434817, "lon": -73.9754313 }, + { "lat": 40.7435606, "lon": -73.9753752 }, + { "lat": 40.7436399, "lon": -73.9753158 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "destination", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 161026133, + "bounds": { + "minlat": 40.7128399, + "minlon": -73.9999928, + "maxlat": 40.7129712, + "maxlon": -73.9993671 + }, + "nodes": [ + 9925815180, + 1730318420 + ], + "geometry": [ + { "lat": 40.7128399, "lon": -73.9999928 }, + { "lat": 40.7129712, "lon": -73.9993671 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 161387757, + "bounds": { + "minlat": 40.7641355, + "minlon": -73.9556211, + "maxlat": 40.7642988, + "maxlon": -73.9552174 + }, + "nodes": [ + 42427991, + 6670244845, + 9906953433 + ], + "geometry": [ + { "lat": 40.7642988, "lon": -73.9556211 }, + { "lat": 40.7642479, "lon": -73.9554952 }, + { "lat": 40.7641355, "lon": -73.9552174 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "name": "East 68th Street", + "name:ru": "Восточная 68-я стрит", + "oneway": "no", + "parking:both": "no", + "sidewalk:left": "separate", + "sidewalk:right": "yes", + "surface": "asphalt", + "turn:lanes:backward": "left|right" + } +}, +{ + "type": "way", + "id": 161387758, + "bounds": { + "minlat": 40.7638580, + "minlon": -73.9548639, + "maxlat": 40.7642664, + "maxlon": -73.9540921 + }, + "nodes": [ + 1733612450, + 1733612449, + 1733612451, + 1733612448, + 3786876195, + 3786876194, + 1733612447, + 1733612458, + 1733612460, + 1733612454, + 6747046589, + 1733612462, + 3786876193, + 3786876192, + 1733612456, + 1733612457, + 1733612444, + 1733612445, + 9906953434, + 1733612459 + ], + "geometry": [ + { "lat": 40.7638580, "lon": -73.9542116 }, + { "lat": 40.7638733, "lon": -73.9541798 }, + { "lat": 40.7638912, "lon": -73.9541594 }, + { "lat": 40.7639728, "lon": -73.9541081 }, + { "lat": 40.7639905, "lon": -73.9540979 }, + { "lat": 40.7640070, "lon": -73.9540921 }, + { "lat": 40.7640258, "lon": -73.9540936 }, + { "lat": 40.7640446, "lon": -73.9540994 }, + { "lat": 40.7640622, "lon": -73.9541125 }, + { "lat": 40.7640799, "lon": -73.9541358 }, + { "lat": 40.7642010, "lon": -73.9544130 }, + { "lat": 40.7642499, "lon": -73.9545250 }, + { "lat": 40.7642598, "lon": -73.9545585 }, + { "lat": 40.7642664, "lon": -73.9545949 }, + { "lat": 40.7642664, "lon": -73.9546255 }, + { "lat": 40.7642653, "lon": -73.9546488 }, + { "lat": 40.7642554, "lon": -73.9546678 }, + { "lat": 40.7642399, "lon": -73.9546867 }, + { "lat": 40.7640491, "lon": -73.9548234 }, + { "lat": 40.7639925, "lon": -73.9548639 } + ], + "tags": { + "highway": "service", + "lanes": "3", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 161387759, + "bounds": { + "minlat": 40.7638282, + "minlon": -73.9548639, + "maxlat": 40.7639925, + "maxlon": -73.9542116 + }, + "nodes": [ + 1733612459, + 6747038938, + 1733612464, + 1733612463, + 3786876196, + 1733612453, + 1733612452, + 3786876197, + 3786876198, + 1733612450 + ], + "geometry": [ + { "lat": 40.7639925, "lon": -73.9548639 }, + { "lat": 40.7638382, "lon": -73.9544997 }, + { "lat": 40.7638321, "lon": -73.9544731 }, + { "lat": 40.7638304, "lon": -73.9544477 }, + { "lat": 40.7638293, "lon": -73.9544200 }, + { "lat": 40.7638282, "lon": -73.9543850 }, + { "lat": 40.7638304, "lon": -73.9543399 }, + { "lat": 40.7638381, "lon": -73.9542961 }, + { "lat": 40.7638481, "lon": -73.9542481 }, + { "lat": 40.7638580, "lon": -73.9542116 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left|right" + } +}, +{ + "type": "way", + "id": 162041587, + "bounds": { + "minlat": 40.7327384, + "minlon": -73.9751427, + "maxlat": 40.7354563, + "maxlon": -73.9744408 + }, + "nodes": [ + 42448714, + 3601295733, + 3686051662, + 42451018, + 13837911389, + 9140927093, + 3686061906, + 13837911388, + 9140927097, + 42439191 + ], + "geometry": [ + { "lat": 40.7354563, "lon": -73.9751359 }, + { "lat": 40.7353029, "lon": -73.9751427 }, + { "lat": 40.7352484, "lon": -73.9751388 }, + { "lat": 40.7342008, "lon": -73.9748747 }, + { "lat": 40.7329919, "lon": -73.9745673 }, + { "lat": 40.7329569, "lon": -73.9745584 }, + { "lat": 40.7329240, "lon": -73.9745479 }, + { "lat": 40.7328862, "lon": -73.9745330 }, + { "lat": 40.7328547, "lon": -73.9745160 }, + { "lat": 40.7327384, "lon": -73.9744408 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 162041588, + "bounds": { + "minlat": 40.7353742, + "minlon": -73.9748071, + "maxlat": 40.7359893, + "maxlon": -73.9747721 + }, + "nodes": [ + 5137747688, + 9141016326, + 4401235711, + 3686061922, + 42457849, + 9141016324, + 4401235710, + 9141016323, + 42450765, + 589100267 + ], + "geometry": [ + { "lat": 40.7353742, "lon": -73.9747878 }, + { "lat": 40.7354149, "lon": -73.9747765 }, + { "lat": 40.7354558, "lon": -73.9747721 }, + { "lat": 40.7354930, "lon": -73.9747743 }, + { "lat": 40.7355130, "lon": -73.9747742 }, + { "lat": 40.7355760, "lon": -73.9747828 }, + { "lat": 40.7356640, "lon": -73.9747947 }, + { "lat": 40.7357602, "lon": -73.9748052 }, + { "lat": 40.7358490, "lon": -73.9748071 }, + { "lat": 40.7359893, "lon": -73.9748050 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "FDR Drive Service Road East;Fdr Drive Service Road East", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 163161184, + "bounds": { + "minlat": 40.8513846, + "minlon": -73.9737538, + "maxlat": 40.8517788, + "maxlon": -73.9733583 + }, + "nodes": [ + 1749228834, + 5449448613, + 5449448611, + 1749228842 + ], + "geometry": [ + { "lat": 40.8513846, "lon": -73.9737538 }, + { "lat": 40.8515323, "lon": -73.9736056 }, + { "lat": 40.8516726, "lon": -73.9734649 }, + { "lat": 40.8517788, "lon": -73.9733583 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 163161185, + "bounds": { + "minlat": 40.8515837, + "minlon": -73.9733583, + "maxlat": 40.8518013, + "maxlon": -73.9728134 + }, + "nodes": [ + 1749228837, + 1749228840, + 1749228845, + 1749228842 + ], + "geometry": [ + { "lat": 40.8515837, "lon": -73.9728134 }, + { "lat": 40.8517821, "lon": -73.9731298 }, + { "lat": 40.8518013, "lon": -73.9732373 }, + { "lat": 40.8517788, "lon": -73.9733583 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 163332647, + "bounds": { + "minlat": 40.8149358, + "minlon": -73.9826182, + "maxlat": 40.8151224, + "maxlon": -73.9823497 + }, + "nodes": [ + 1750475709, + 9901109704, + 9901109703, + 9901109702, + 6767703601, + 1750475721 + ], + "geometry": [ + { "lat": 40.8149358, "lon": -73.9823497 }, + { "lat": 40.8149396, "lon": -73.9823649 }, + { "lat": 40.8149456, "lon": -73.9823806 }, + { "lat": 40.8150206, "lon": -73.9824899 }, + { "lat": 40.8150399, "lon": -73.9825179 }, + { "lat": 40.8151224, "lon": -73.9826182 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 163332648, + "bounds": { + "minlat": 40.8159951, + "minlon": -73.9816580, + "maxlat": 40.8160222, + "maxlon": -73.9813259 + }, + "nodes": [ + 1750475770, + 5362533098, + 1750475768 + ], + "geometry": [ + { "lat": 40.8160059, "lon": -73.9816580 }, + { "lat": 40.8160222, "lon": -73.9814747 }, + { "lat": 40.8159951, "lon": -73.9813259 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 163332650, + "bounds": { + "minlat": 40.8166056, + "minlon": -73.9806815, + "maxlat": 40.8166828, + "maxlon": -73.9804519 + }, + "nodes": [ + 1750475804, + 1750475796 + ], + "geometry": [ + { "lat": 40.8166828, "lon": -73.9806815 }, + { "lat": 40.8166056, "lon": -73.9804519 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163332651, + "bounds": { + "minlat": 40.8159118, + "minlon": -73.9811272, + "maxlat": 40.8166476, + "maxlon": -73.9804092 + }, + "nodes": [ + 1750475765, + 5929253642, + 1750475796, + 5362533093 + ], + "geometry": [ + { "lat": 40.8159118, "lon": -73.9811272 }, + { "lat": 40.8163953, "lon": -73.9806566 }, + { "lat": 40.8166056, "lon": -73.9804519 }, + { "lat": 40.8166476, "lon": -73.9804092 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 163332653, + "bounds": { + "minlat": 40.8159951, + "minlon": -73.9813259, + "maxlat": 40.8166828, + "maxlon": -73.9806815 + }, + "nodes": [ + 1750475768, + 1750475771, + 5929253643, + 1750475804 + ], + "geometry": [ + { "lat": 40.8159951, "lon": -73.9813259 }, + { "lat": 40.8160358, "lon": -73.9812870 }, + { "lat": 40.8164872, "lon": -73.9808646 }, + { "lat": 40.8166828, "lon": -73.9806815 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 163332654, + "bounds": { + "minlat": 40.8158065, + "minlon": -73.9817196, + "maxlat": 40.8159492, + "maxlon": -73.9814369 + }, + "nodes": [ + 1750475756, + 1750475758, + 7672312046, + 5362533101 + ], + "geometry": [ + { "lat": 40.8158065, "lon": -73.9814369 }, + { "lat": 40.8158296, "lon": -73.9814892 }, + { "lat": 40.8158887, "lon": -73.9816030 }, + { "lat": 40.8159492, "lon": -73.9817196 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 163332655, + "bounds": { + "minlat": 40.8158293, + "minlon": -73.9809304, + "maxlat": 40.8165866, + "maxlon": -73.9801831 + }, + "nodes": [ + 1750475760, + 5929253641, + 5362533099 + ], + "geometry": [ + { "lat": 40.8158293, "lon": -73.9809304 }, + { "lat": 40.8162967, "lon": -73.9804692 }, + { "lat": 40.8165866, "lon": -73.9801831 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 163332657, + "bounds": { + "minlat": 40.8154725, + "minlon": -73.9811272, + "maxlat": 40.8162507, + "maxlon": -73.9792312 + }, + "nodes": [ + 1750475781, + 1750475742, + 5929253648, + 1750475760, + 1750475765 + ], + "geometry": [ + { "lat": 40.8162507, "lon": -73.9792312 }, + { "lat": 40.8154725, "lon": -73.9800183 }, + { "lat": 40.8157473, "lon": -73.9807348 }, + { "lat": 40.8158293, "lon": -73.9809304 }, + { "lat": 40.8159118, "lon": -73.9811272 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 163332658, + "bounds": { + "minlat": 40.8162751, + "minlon": -73.9790823, + "maxlat": 40.8165721, + "maxlon": -73.9788678 + }, + "nodes": [ + 1750475793, + 1750475780, + 1750475795 + ], + "geometry": [ + { "lat": 40.8162751, "lon": -73.9788678 }, + { "lat": 40.8163557, "lon": -73.9790823 }, + { "lat": 40.8165721, "lon": -73.9789318 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163332659, + "bounds": { + "minlat": 40.8166547, + "minlon": -73.9802926, + "maxlat": 40.8171057, + "maxlon": -73.9791446 + }, + "nodes": [ + 1750475814, + 1750475800 + ], + "geometry": [ + { "lat": 40.8171057, "lon": -73.9802926 }, + { "lat": 40.8166547, "lon": -73.9791446 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 163332660, + "bounds": { + "minlat": 40.8161890, + "minlon": -73.9791446, + "maxlat": 40.8166547, + "maxlon": -73.9787235 + }, + "nodes": [ + 1750475778, + 1750475793, + 1750475790, + 1750475795, + 1750475800 + ], + "geometry": [ + { "lat": 40.8161890, "lon": -73.9789252 }, + { "lat": 40.8162751, "lon": -73.9788678 }, + { "lat": 40.8164917, "lon": -73.9787235 }, + { "lat": 40.8165721, "lon": -73.9789318 }, + { "lat": 40.8166547, "lon": -73.9791446 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163332663, + "bounds": { + "minlat": 40.8149358, + "minlon": -73.9823497, + "maxlat": 40.8158065, + "maxlon": -73.9814369 + }, + "nodes": [ + 1750475756, + 1750475732, + 1750475718, + 9901109706, + 9901109705, + 1750475709 + ], + "geometry": [ + { "lat": 40.8158065, "lon": -73.9814369 }, + { "lat": 40.8153723, "lon": -73.9818568 }, + { "lat": 40.8150868, "lon": -73.9821608 }, + { "lat": 40.8149575, "lon": -73.9823031 }, + { "lat": 40.8149408, "lon": -73.9823303 }, + { "lat": 40.8149358, "lon": -73.9823497 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163332668, + "bounds": { + "minlat": 40.8168969, + "minlon": -73.9818291, + "maxlat": 40.8174747, + "maxlon": -73.9807917 + }, + "nodes": [ + 103137081, + 103115567 + ], + "geometry": [ + { "lat": 40.8168969, "lon": -73.9807917 }, + { "lat": 40.8174747, "lon": -73.9818291 } + ], + "tags": { + "highway": "residential", + "name": "Archer Street" + } +}, +{ + "type": "way", + "id": 163448376, + "bounds": { + "minlat": 40.8119406, + "minlon": -73.9864172, + "maxlat": 40.8124776, + "maxlon": -73.9860427 + }, + "nodes": [ + 3566318127, + 5482328572 + ], + "geometry": [ + { "lat": 40.8119406, "lon": -73.9864172 }, + { "lat": 40.8124776, "lon": -73.9860427 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 163448377, + "bounds": { + "minlat": 40.8121680, + "minlon": -73.9848390, + "maxlat": 40.8129210, + "maxlon": -73.9843410 + }, + "nodes": [ + 1751404905, + 1751404960 + ], + "geometry": [ + { "lat": 40.8121680, "lon": -73.9848390 }, + { "lat": 40.8129210, "lon": -73.9843410 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448379, + "bounds": { + "minlat": 40.8124756, + "minlon": -73.9824013, + "maxlat": 40.8134293, + "maxlon": -73.9817362 + }, + "nodes": [ + 1751404993, + 1751404920 + ], + "geometry": [ + { "lat": 40.8134293, "lon": -73.9817362 }, + { "lat": 40.8124756, "lon": -73.9824013 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448380, + "bounds": { + "minlat": 40.8118675, + "minlon": -73.9840361, + "maxlat": 40.8128509, + "maxlon": -73.9833755 + }, + "nodes": [ + 1751404892, + 1751404957 + ], + "geometry": [ + { "lat": 40.8118675, "lon": -73.9840361 }, + { "lat": 40.8128509, "lon": -73.9833755 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448382, + "bounds": { + "minlat": 40.8127824, + "minlon": -73.9832021, + "maxlat": 40.8137346, + "maxlon": -73.9825572 + }, + "nodes": [ + 1751404949, + 1751405015 + ], + "geometry": [ + { "lat": 40.8127824, "lon": -73.9832021 }, + { "lat": 40.8137346, "lon": -73.9825572 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448383, + "bounds": { + "minlat": 40.8122466, + "minlon": -73.9850490, + "maxlat": 40.8129332, + "maxlon": -73.9846090 + }, + "nodes": [ + 1751404909, + 1751404963 + ], + "geometry": [ + { "lat": 40.8122466, "lon": -73.9850490 }, + { "lat": 40.8129332, "lon": -73.9846090 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448385, + "bounds": { + "minlat": 40.8125409, + "minlon": -73.9826052, + "maxlat": 40.8134923, + "maxlon": -73.9819469 + }, + "nodes": [ + 1751405002, + 1751404926 + ], + "geometry": [ + { "lat": 40.8134923, "lon": -73.9819469 }, + { "lat": 40.8125409, "lon": -73.9826052 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448387, + "bounds": { + "minlat": 40.8117866, + "minlon": -73.9838200, + "maxlat": 40.8127824, + "maxlon": -73.9832021 + }, + "nodes": [ + 1751404890, + 1751404949 + ], + "geometry": [ + { "lat": 40.8117866, "lon": -73.9838200 }, + { "lat": 40.8127824, "lon": -73.9832021 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448389, + "bounds": { + "minlat": 40.8128509, + "minlon": -73.9833755, + "maxlat": 40.8138226, + "maxlon": -73.9827424 + }, + "nodes": [ + 1751405018, + 1751404957 + ], + "geometry": [ + { "lat": 40.8138226, "lon": -73.9827424 }, + { "lat": 40.8128509, "lon": -73.9833755 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448390, + "bounds": { + "minlat": 40.8129292, + "minlon": -73.9835779, + "maxlat": 40.8138968, + "maxlon": -73.9829424 + }, + "nodes": [ + 1751405021, + 1751404961 + ], + "geometry": [ + { "lat": 40.8138968, "lon": -73.9829424 }, + { "lat": 40.8129292, "lon": -73.9835779 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448391, + "bounds": { + "minlat": 40.8117203, + "minlon": -73.9836427, + "maxlat": 40.8127034, + "maxlon": -73.9830068 + }, + "nodes": [ + 1751404887, + 1751404943 + ], + "geometry": [ + { "lat": 40.8117203, "lon": -73.9836427 }, + { "lat": 40.8127034, "lon": -73.9830068 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448393, + "bounds": { + "minlat": 40.8116423, + "minlon": -73.9834507, + "maxlat": 40.8126222, + "maxlon": -73.9828061 + }, + "nodes": [ + 1751404884, + 1751404935 + ], + "geometry": [ + { "lat": 40.8116423, "lon": -73.9834507 }, + { "lat": 40.8126222, "lon": -73.9828061 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448394, + "bounds": { + "minlat": 40.8126222, + "minlon": -73.9828061, + "maxlat": 40.8135516, + "maxlon": -73.9821612 + }, + "nodes": [ + 1751405006, + 1751404935 + ], + "geometry": [ + { "lat": 40.8135516, "lon": -73.9821612 }, + { "lat": 40.8126222, "lon": -73.9828061 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448396, + "bounds": { + "minlat": 40.8113945, + "minlon": -73.9828463, + "maxlat": 40.8121413, + "maxlon": -73.9823608 + }, + "nodes": [ + 1751404877, + 1751404902 + ], + "geometry": [ + { "lat": 40.8113945, "lon": -73.9828463 }, + { "lat": 40.8121413, "lon": -73.9823608 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448397, + "bounds": { + "minlat": 40.8119423, + "minlon": -73.9842359, + "maxlat": 40.8129292, + "maxlon": -73.9835779 + }, + "nodes": [ + 1751404894, + 1751404961 + ], + "geometry": [ + { "lat": 40.8119423, "lon": -73.9842359 }, + { "lat": 40.8129292, "lon": -73.9835779 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448403, + "bounds": { + "minlat": 40.8115543, + "minlon": -73.9832492, + "maxlat": 40.8125409, + "maxlon": -73.9826052 + }, + "nodes": [ + 1751404883, + 1751404926 + ], + "geometry": [ + { "lat": 40.8115543, "lon": -73.9832492 }, + { "lat": 40.8125409, "lon": -73.9826052 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448405, + "bounds": { + "minlat": 40.8113209, + "minlon": -73.9826560, + "maxlat": 40.8120601, + "maxlon": -73.9821698 + }, + "nodes": [ + 1751404900, + 1751404875 + ], + "geometry": [ + { "lat": 40.8120601, "lon": -73.9821698 }, + { "lat": 40.8113209, "lon": -73.9826560 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448407, + "bounds": { + "minlat": 40.8130152, + "minlon": -73.9837953, + "maxlat": 40.8139684, + "maxlon": -73.9831354 + }, + "nodes": [ + 1751405025, + 13529273316, + 1751404968 + ], + "geometry": [ + { "lat": 40.8139684, "lon": -73.9831354 }, + { "lat": 40.8133562, "lon": -73.9835592 }, + { "lat": 40.8130152, "lon": -73.9837953 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 163448408, + "bounds": { + "minlat": 40.8124065, + "minlon": -73.9854682, + "maxlat": 40.8131301, + "maxlon": -73.9849885 + }, + "nodes": [ + 1751404915, + 1751404976 + ], + "geometry": [ + { "lat": 40.8124065, "lon": -73.9854682 }, + { "lat": 40.8131301, "lon": -73.9849885 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448409, + "bounds": { + "minlat": 40.8120956, + "minlon": -73.9846456, + "maxlat": 40.8128539, + "maxlon": -73.9841537 + }, + "nodes": [ + 1751404901, + 1751404958 + ], + "geometry": [ + { "lat": 40.8120956, "lon": -73.9846456 }, + { "lat": 40.8128539, "lon": -73.9841537 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448410, + "bounds": { + "minlat": 40.8125444, + "minlon": -73.9821081, + "maxlat": 40.8133623, + "maxlon": -73.9815505 + }, + "nodes": [ + 1751404987, + 1751404927 + ], + "geometry": [ + { "lat": 40.8133623, "lon": -73.9815505 }, + { "lat": 40.8125444, "lon": -73.9821081 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448411, + "bounds": { + "minlat": 40.8124810, + "minlon": -73.9856531, + "maxlat": 40.8130457, + "maxlon": -73.9852844 + }, + "nodes": [ + 1751404922, + 1751404971 + ], + "geometry": [ + { "lat": 40.8124810, "lon": -73.9856531 }, + { "lat": 40.8130457, "lon": -73.9852844 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448416, + "bounds": { + "minlat": 40.8127034, + "minlon": -73.9830068, + "maxlat": 40.8136273, + "maxlon": -73.9823629 + }, + "nodes": [ + 1751405007, + 1751404943 + ], + "geometry": [ + { "lat": 40.8136273, "lon": -73.9823629 }, + { "lat": 40.8127034, "lon": -73.9830068 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448417, + "bounds": { + "minlat": 40.8123216, + "minlon": -73.9852497, + "maxlat": 40.8129304, + "maxlon": -73.9848584 + }, + "nodes": [ + 1751404913, + 1751404962 + ], + "geometry": [ + { "lat": 40.8123216, "lon": -73.9852497 }, + { "lat": 40.8129304, "lon": -73.9848584 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448419, + "bounds": { + "minlat": 40.8126028, + "minlon": -73.9860805, + "maxlat": 40.8126716, + "maxlon": -73.9859557 + }, + "nodes": [ + 1751404936, + 5929253680, + 1751404933 + ], + "geometry": [ + { "lat": 40.8126716, "lon": -73.9860805 }, + { "lat": 40.8126622, "lon": -73.9860636 }, + { "lat": 40.8126028, "lon": -73.9859557 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 163448423, + "bounds": { + "minlat": 40.8127014, + "minlon": -73.9813281, + "maxlat": 40.8132820, + "maxlon": -73.9798907 + }, + "nodes": [ + 1751404984, + 1751404980, + 1751404942 + ], + "geometry": [ + { "lat": 40.8132820, "lon": -73.9813281 }, + { "lat": 40.8132185, "lon": -73.9811708 }, + { "lat": 40.8127014, "lon": -73.9798907 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 163448425, + "bounds": { + "minlat": 40.8136809, + "minlon": -73.9848568, + "maxlat": 40.8140356, + "maxlon": -73.9844354 + }, + "nodes": [ + 1751405026, + 1751405023, + 1751405011 + ], + "geometry": [ + { "lat": 40.8140356, "lon": -73.9848568 }, + { "lat": 40.8139129, "lon": -73.9846618 }, + { "lat": 40.8136809, "lon": -73.9844354 } + ], + "tags": { + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 163448426, + "bounds": { + "minlat": 40.8131265, + "minlon": -73.9844354, + "maxlat": 40.8136809, + "maxlon": -73.9839732 + }, + "nodes": [ + 1751405011, + 5560289562, + 1751404992, + 1751404986, + 1751404983, + 7672312019, + 1751404978, + 1751404975 + ], + "geometry": [ + { "lat": 40.8136809, "lon": -73.9844354 }, + { "lat": 40.8135578, "lon": -73.9843695 }, + { "lat": 40.8134250, "lon": -73.9842414 }, + { "lat": 40.8133443, "lon": -73.9841908 }, + { "lat": 40.8132295, "lon": -73.9841168 }, + { "lat": 40.8132080, "lon": -73.9841020 }, + { "lat": 40.8131693, "lon": -73.9840752 }, + { "lat": 40.8131265, "lon": -73.9839732 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 163448428, + "bounds": { + "minlat": 40.8114778, + "minlon": -73.9830620, + "maxlat": 40.8124756, + "maxlon": -73.9824013 + }, + "nodes": [ + 1751404879, + 1751404906, + 1751404920 + ], + "geometry": [ + { "lat": 40.8114778, "lon": -73.9830620 }, + { "lat": 40.8122281, "lon": -73.9825652 }, + { "lat": 40.8124756, "lon": -73.9824013 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448430, + "bounds": { + "minlat": 40.8124756, + "minlon": -73.9831354, + "maxlat": 40.8139684, + "maxlon": -73.9813281 + }, + "nodes": [ + 1751404920, + 1751404927, + 1751404934, + 1751404940, + 1751404984, + 1751404987, + 1751404993, + 1751405001, + 1751405002, + 1751405003, + 5929254187, + 1751405006, + 1751405007, + 1751405008, + 5929254188, + 1751405015, + 1751405017, + 1751405018, + 13015336073, + 1751405021, + 5929254189, + 1751405025 + ], + "geometry": [ + { "lat": 40.8124756, "lon": -73.9824013 }, + { "lat": 40.8125444, "lon": -73.9821081 }, + { "lat": 40.8126129, "lon": -73.9818161 }, + { "lat": 40.8126767, "lon": -73.9817318 }, + { "lat": 40.8132820, "lon": -73.9813281 }, + { "lat": 40.8133623, "lon": -73.9815505 }, + { "lat": 40.8134293, "lon": -73.9817362 }, + { "lat": 40.8134793, "lon": -73.9818749 }, + { "lat": 40.8134923, "lon": -73.9819469 }, + { "lat": 40.8135122, "lon": -73.9820563 }, + { "lat": 40.8135281, "lon": -73.9821004 }, + { "lat": 40.8135516, "lon": -73.9821612 }, + { "lat": 40.8136273, "lon": -73.9823629 }, + { "lat": 40.8136417, "lon": -73.9824013 }, + { "lat": 40.8136578, "lon": -73.9824284 }, + { "lat": 40.8137346, "lon": -73.9825572 }, + { "lat": 40.8137984, "lon": -73.9826772 }, + { "lat": 40.8138226, "lon": -73.9827424 }, + { "lat": 40.8138876, "lon": -73.9829176 }, + { "lat": 40.8138968, "lon": -73.9829424 }, + { "lat": 40.8139546, "lon": -73.9830981 }, + { "lat": 40.8139684, "lon": -73.9831354 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 163448432, + "bounds": { + "minlat": 40.8126716, + "minlon": -73.9865057, + "maxlat": 40.8127581, + "maxlon": -73.9860805 + }, + "nodes": [ + 103137059, + 1751404945, + 1751404944, + 1751404936 + ], + "geometry": [ + { "lat": 40.8127581, "lon": -73.9865057 }, + { "lat": 40.8127551, "lon": -73.9862939 }, + { "lat": 40.8127425, "lon": -73.9862237 }, + { "lat": 40.8126716, "lon": -73.9860805 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 163448433, + "bounds": { + "minlat": 40.8131265, + "minlon": -73.9840500, + "maxlat": 40.8133108, + "maxlon": -73.9839732 + }, + "nodes": [ + 1751404975, + 1751404982, + 5929253679, + 1751404985 + ], + "geometry": [ + { "lat": 40.8131265, "lon": -73.9839732 }, + { "lat": 40.8132213, "lon": -73.9839867 }, + { "lat": 40.8132487, "lon": -73.9840060 }, + { "lat": 40.8133108, "lon": -73.9840500 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 163448434, + "bounds": { + "minlat": 40.8126716, + "minlon": -73.9861266, + "maxlat": 40.8130567, + "maxlon": -73.9859987 + }, + "nodes": [ + 1751404936, + 1751404946, + 1751404956, + 103137063 + ], + "geometry": [ + { "lat": 40.8126716, "lon": -73.9860805 }, + { "lat": 40.8127589, "lon": -73.9861227 }, + { "lat": 40.8128450, "lon": -73.9861266 }, + { "lat": 40.8130567, "lon": -73.9859987 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 163448435, + "bounds": { + "minlat": 40.8148021, + "minlon": -73.9826793, + "maxlat": 40.8150661, + "maxlon": -73.9825561 + }, + "nodes": [ + 1751405031, + 1751405032, + 6767703625, + 1751405035, + 1751405036 + ], + "geometry": [ + { "lat": 40.8148021, "lon": -73.9825561 }, + { "lat": 40.8148597, "lon": -73.9826169 }, + { "lat": 40.8148754, "lon": -73.9826212 }, + { "lat": 40.8149776, "lon": -73.9826489 }, + { "lat": 40.8150661, "lon": -73.9826793 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 163448437, + "bounds": { + "minlat": 40.8133108, + "minlon": -73.9841168, + "maxlat": 40.8139459, + "maxlon": -73.9839778 + }, + "nodes": [ + 1751404985, + 1751405004, + 7672312029, + 1751405010, + 1751405014, + 103137078 + ], + "geometry": [ + { "lat": 40.8133108, "lon": -73.9840500 }, + { "lat": 40.8135235, "lon": -73.9841168 }, + { "lat": 40.8136226, "lon": -73.9841046 }, + { "lat": 40.8136561, "lon": -73.9841005 }, + { "lat": 40.8137299, "lon": -73.9840700 }, + { "lat": 40.8139459, "lon": -73.9839778 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 163448439, + "bounds": { + "minlat": 40.8140459, + "minlon": -73.9833442, + "maxlat": 40.8148021, + "maxlon": -73.9825561 + }, + "nodes": [ + 1751405027, + 5929254190, + 1751405029, + 1751405030, + 1751405031 + ], + "geometry": [ + { "lat": 40.8140459, "lon": -73.9833442 }, + { "lat": 40.8141094, "lon": -73.9833007 }, + { "lat": 40.8142360, "lon": -73.9832138 }, + { "lat": 40.8146407, "lon": -73.9827440 }, + { "lat": 40.8148021, "lon": -73.9825561 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 163448441, + "bounds": { + "minlat": 40.8113715, + "minlon": -73.9825652, + "maxlat": 40.8122281, + "maxlon": -73.9819937 + }, + "nodes": [ + 1751404906, + 1751404902, + 1751404900, + 1751404897, + 5929254186, + 1751404876 + ], + "geometry": [ + { "lat": 40.8122281, "lon": -73.9825652 }, + { "lat": 40.8121413, "lon": -73.9823608 }, + { "lat": 40.8120601, "lon": -73.9821698 }, + { "lat": 40.8119890, "lon": -73.9819937 }, + { "lat": 40.8117967, "lon": -73.9820948 }, + { "lat": 40.8113715, "lon": -73.9823520 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 163448444, + "bounds": { + "minlat": 40.8134086, + "minlon": -73.9840012, + "maxlat": 40.8139184, + "maxlon": -73.9834674 + }, + "nodes": [ + 1751405019, + 13433786398, + 1751405024, + 5929253676, + 1751405020, + 13433786399, + 1751405005, + 13433881801, + 1751404994, + 1751404989 + ], + "geometry": [ + { "lat": 40.8138622, "lon": -73.9834674 }, + { "lat": 40.8138733, "lon": -73.9835026 }, + { "lat": 40.8139184, "lon": -73.9836446 }, + { "lat": 40.8139061, "lon": -73.9836995 }, + { "lat": 40.8138512, "lon": -73.9837620 }, + { "lat": 40.8138258, "lon": -73.9837822 }, + { "lat": 40.8135288, "lon": -73.9840012 }, + { "lat": 40.8134908, "lon": -73.9839911 }, + { "lat": 40.8134373, "lon": -73.9838820 }, + { "lat": 40.8134086, "lon": -73.9838021 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 163448446, + "bounds": { + "minlat": 40.8133443, + "minlon": -73.9852620, + "maxlat": 40.8134735, + "maxlon": -73.9841908 + }, + "nodes": [ + 103137067, + 1751404996, + 1751404998, + 7672312021, + 1751404995, + 1751404988, + 1751404986 + ], + "geometry": [ + { "lat": 40.8133546, "lon": -73.9852620 }, + { "lat": 40.8134524, "lon": -73.9846859 }, + { "lat": 40.8134735, "lon": -73.9845455 }, + { "lat": 40.8134582, "lon": -73.9844447 }, + { "lat": 40.8134525, "lon": -73.9844074 }, + { "lat": 40.8133689, "lon": -73.9842451 }, + { "lat": 40.8133443, "lon": -73.9841908 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 163602674, + "bounds": { + "minlat": 40.8280453, + "minlon": -73.9727443, + "maxlat": 40.8284800, + "maxlon": -73.9722039 + }, + "nodes": [ + 1752676682, + 7700926249, + 1752676679, + 7700926250, + 7700926251, + 1752676669, + 7700926252, + 1752676675 + ], + "geometry": [ + { "lat": 40.8284800, "lon": -73.9725311 }, + { "lat": 40.8283489, "lon": -73.9722129 }, + { "lat": 40.8283191, "lon": -73.9722050 }, + { "lat": 40.8282834, "lon": -73.9722039 }, + { "lat": 40.8280587, "lon": -73.9723447 }, + { "lat": 40.8280453, "lon": -73.9723947 }, + { "lat": 40.8280593, "lon": -73.9724547 }, + { "lat": 40.8281636, "lon": -73.9727443 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 163806028, + "bounds": { + "minlat": 40.7099723, + "minlon": -73.9988854, + "maxlat": 40.7100348, + "maxlon": -73.9981439 + }, + "nodes": [ + 1754823149, + 13851002735, + 1754823229, + 12330570174, + 8279851309, + 13851002643, + 588455870 + ], + "geometry": [ + { "lat": 40.7099934, "lon": -73.9988854 }, + { "lat": 40.7099753, "lon": -73.9988254 }, + { "lat": 40.7099723, "lon": -73.9987652 }, + { "lat": 40.7100176, "lon": -73.9983190 }, + { "lat": 40.7100261, "lon": -73.9982355 }, + { "lat": 40.7100282, "lon": -73.9982137 }, + { "lat": 40.7100348, "lon": -73.9981439 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "sidewalk:right": "separate", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 164184349, + "bounds": { + "minlat": 40.7609113, + "minlon": -73.9850108, + "maxlat": 40.7609890, + "maxlon": -73.9849545 + }, + "nodes": [ + 1758380528, + 11296253748, + 1762449346 + ], + "geometry": [ + { "lat": 40.7609890, "lon": -73.9849545 }, + { "lat": 40.7609340, "lon": -73.9849944 }, + { "lat": 40.7609113, "lon": -73.9850108 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "maxspeed": "5 mph", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 164418307, + "bounds": { + "minlat": 40.8682709, + "minlon": -73.9731998, + "maxlat": 40.8687352, + "maxlon": -73.9727400 + }, + "nodes": [ + 3655086545, + 3655086222, + 3655086214, + 3655086543, + 3655086529, + 530805923 + ], + "geometry": [ + { "lat": 40.8682709, "lon": -73.9731998 }, + { "lat": 40.8683359, "lon": -73.9729943 }, + { "lat": 40.8684009, "lon": -73.9728560 }, + { "lat": 40.8685750, "lon": -73.9727400 }, + { "lat": 40.8686085, "lon": -73.9727559 }, + { "lat": 40.8687352, "lon": -73.9730342 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 164420221, + "bounds": { + "minlat": 40.7603152, + "minlon": -74.0029352, + "maxlat": 40.7607102, + "maxlon": -74.0025637 + }, + "nodes": [ + 247084443, + 1760567039, + 1760567033, + 1760567050, + 5538485407, + 1760566994 + ], + "geometry": [ + { "lat": 40.7607102, "lon": -74.0025637 }, + { "lat": 40.7606963, "lon": -74.0026074 }, + { "lat": 40.7606733, "lon": -74.0026513 }, + { "lat": 40.7606432, "lon": -74.0026902 }, + { "lat": 40.7606095, "lon": -74.0027224 }, + { "lat": 40.7603152, "lon": -74.0029352 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 164420607, + "bounds": { + "minlat": 40.7344915, + "minlon": -74.0016967, + "maxlat": 40.7355352, + "maxlon": -74.0013916 + }, + "nodes": [ + 42430818, + 8307642072, + 42433269, + 8307642062, + 8307642086, + 42433264 + ], + "geometry": [ + { "lat": 40.7355352, "lon": -74.0016967 }, + { "lat": 40.7353848, "lon": -74.0016521 }, + { "lat": 40.7351323, "lon": -74.0015800 }, + { "lat": 40.7350857, "lon": -74.0015664 }, + { "lat": 40.7345374, "lon": -74.0014050 }, + { "lat": 40.7344915, "lon": -74.0013916 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Waverly Place", + "name:etymology:wikidata": "Q678251", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4993391", + "wikipedia": "en:Waverly Place" + } +}, +{ + "type": "way", + "id": 164624785, + "bounds": { + "minlat": 40.8453000, + "minlon": -73.9382620, + "maxlat": 40.8472490, + "maxlon": -73.9368570 + }, + "nodes": [ + 42449627, + 7604384205, + 7604384192, + 42446337, + 7604384186, + 8722881560, + 42436812, + 13300384057, + 8722881558, + 9550791729, + 42449631 + ], + "geometry": [ + { "lat": 40.8453000, "lon": -73.9382620 }, + { "lat": 40.8453587, "lon": -73.9382210 }, + { "lat": 40.8458974, "lon": -73.9378444 }, + { "lat": 40.8459480, "lon": -73.9378090 }, + { "lat": 40.8460580, "lon": -73.9377282 }, + { "lat": 40.8465708, "lon": -73.9373514 }, + { "lat": 40.8466230, "lon": -73.9373130 }, + { "lat": 40.8466464, "lon": -73.9372960 }, + { "lat": 40.8466814, "lon": -73.9372705 }, + { "lat": 40.8471966, "lon": -73.9368952 }, + { "lat": 40.8472490, "lon": -73.9368570 } + ], + "tags": { + "highway": "tertiary", + "name": "Wadsworth Avenue", + "name:etymology:wikidata": "Q2339186", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 164632299, + "bounds": { + "minlat": 40.7603603, + "minlon": -73.9854112, + "maxlat": 40.7604506, + "maxlon": -73.9853393 + }, + "nodes": [ + 1762449347, + 10173121985, + 1758380526 + ], + "geometry": [ + { "lat": 40.7604506, "lon": -73.9853393 }, + { "lat": 40.7604294, "lon": -73.9853562 }, + { "lat": 40.7603603, "lon": -73.9854112 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "maxspeed": "5 mph", + "motor_vehicle": "private", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 164632300, + "bounds": { + "minlat": 40.7604506, + "minlon": -73.9853393, + "maxlat": 40.7609113, + "maxlon": -73.9850108 + }, + "nodes": [ + 1762449346, + 1762449347 + ], + "geometry": [ + { "lat": 40.7609113, "lon": -73.9850108 }, + { "lat": 40.7604506, "lon": -73.9853393 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "maxspeed": "5 mph", + "motor_vehicle": "private", + "service": "parking_aisle", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 164664263, + "bounds": { + "minlat": 40.8392960, + "minlon": -73.9392390, + "maxlat": 40.8404870, + "maxlon": -73.9383640 + }, + "nodes": [ + 42455234, + 9566997293, + 9566997298, + 42432226, + 9566997299, + 9566997264, + 42455238 + ], + "geometry": [ + { "lat": 40.8392960, "lon": -73.9392390 }, + { "lat": 40.8393728, "lon": -73.9391832 }, + { "lat": 40.8398493, "lon": -73.9388366 }, + { "lat": 40.8398976, "lon": -73.9388015 }, + { "lat": 40.8399634, "lon": -73.9387527 }, + { "lat": 40.8404219, "lon": -73.9384124 }, + { "lat": 40.8404870, "lon": -73.9383640 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "20 mph", + "maxspeed:type": "sign", + "name": "Audubon Avenue", + "name:etymology:wikidata": "Q182882", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Audubon", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q2870884", + "wikipedia": "en:Audubon Avenue" + } +}, +{ + "type": "way", + "id": 164756872, + "bounds": { + "minlat": 40.8571090, + "minlon": -73.9356020, + "maxlat": 40.8590989, + "maxlon": -73.9342474 + }, + "nodes": [ + 42427216, + 8929221219, + 9476704231, + 9476704238, + 42427221, + 1215606699, + 11596413356, + 42427224, + 11596413355, + 9338511505 + ], + "geometry": [ + { "lat": 40.8571090, "lon": -73.9356020 }, + { "lat": 40.8571746, "lon": -73.9355524 }, + { "lat": 40.8575656, "lon": -73.9352613 }, + { "lat": 40.8579727, "lon": -73.9349583 }, + { "lat": 40.8584723, "lon": -73.9346056 }, + { "lat": 40.8586549, "lon": -73.9344847 }, + { "lat": 40.8588212, "lon": -73.9343904 }, + { "lat": 40.8588273, "lon": -73.9343869 }, + { "lat": 40.8590144, "lon": -73.9342949 }, + { "lat": 40.8590989, "lon": -73.9342474 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 164756916, + "bounds": { + "minlat": 40.8571090, + "minlon": -73.9365840, + "maxlat": 40.8573519, + "maxlon": -73.9356020 + }, + "nodes": [ + 42427216, + 8929221217, + 9464289822, + 9464289820, + 42428144 + ], + "geometry": [ + { "lat": 40.8571090, "lon": -73.9356020 }, + { "lat": 40.8571377, "lon": -73.9357201 }, + { "lat": 40.8573141, "lon": -73.9364310 }, + { "lat": 40.8573312, "lon": -73.9365005 }, + { "lat": 40.8573519, "lon": -73.9365840 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 190th Street", + "name_1": "West 190 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "190th", + "tiger:name_base_1": "190", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "width": "35'0\"" + } +}, +{ + "type": "way", + "id": 164756917, + "bounds": { + "minlat": 40.8520580, + "minlon": -73.9365259, + "maxlat": 40.8526284, + "maxlon": -73.9347760 + }, + "nodes": [ + 42429044, + 9563795515, + 13703283271, + 1769703629, + 9563795516, + 42454240, + 9563795519, + 11594999845, + 1763628650, + 2348610319, + 2348610320, + 2348610321, + 42442378 + ], + "geometry": [ + { "lat": 40.8520580, "lon": -73.9347760 }, + { "lat": 40.8521005, "lon": -73.9349182 }, + { "lat": 40.8522356, "lon": -73.9353714 }, + { "lat": 40.8523001, "lon": -73.9355876 }, + { "lat": 40.8523182, "lon": -73.9356464 }, + { "lat": 40.8523390, "lon": -73.9357160 }, + { "lat": 40.8523623, "lon": -73.9357985 }, + { "lat": 40.8523798, "lon": -73.9358553 }, + { "lat": 40.8525668, "lon": -73.9364635 }, + { "lat": 40.8525763, "lon": -73.9364810 }, + { "lat": 40.8525892, "lon": -73.9364952 }, + { "lat": 40.8526054, "lon": -73.9365097 }, + { "lat": 40.8526284, "lon": -73.9365259 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 184th Street", + "name_1": "West 184 Street", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "184th", + "tiger:name_base_1": "184", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 164758478, + "bounds": { + "minlat": 40.8516150, + "minlon": -73.9347760, + "maxlat": 40.8520580, + "maxlon": -73.9336670 + }, + "nodes": [ + 42449641, + 9563795511, + 11976751701, + 11976751705, + 9563795512, + 42429044 + ], + "geometry": [ + { "lat": 40.8516150, "lon": -73.9336670 }, + { "lat": 40.8516574, "lon": -73.9337731 }, + { "lat": 40.8519077, "lon": -73.9343999 }, + { "lat": 40.8519317, "lon": -73.9344599 }, + { "lat": 40.8520093, "lon": -73.9346542 }, + { "lat": 40.8520580, "lon": -73.9347760 } + ], + "tags": { + "highway": "residential", + "name": "West 184th Street", + "name_1": "West 184 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "184th", + "tiger:name_base_1": "184", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 164758479, + "bounds": { + "minlat": 40.8522130, + "minlon": -73.9344300, + "maxlat": 40.8527290, + "maxlon": -73.9332260 + }, + "nodes": [ + 42429058, + 9563795526, + 9563795523, + 42449644 + ], + "geometry": [ + { "lat": 40.8527290, "lon": -73.9344300 }, + { "lat": 40.8526788, "lon": -73.9343129 }, + { "lat": 40.8522592, "lon": -73.9333338 }, + { "lat": 40.8522130, "lon": -73.9332260 } + ], + "tags": { + "highway": "residential", + "name": "West 185th Street", + "name_1": "West 185 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "185th", + "tiger:name_base_1": "185", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 164773919, + "bounds": { + "minlat": 40.8665599, + "minlon": -73.9307312, + "maxlat": 40.8666798, + "maxlon": -73.9305736 + }, + "nodes": [ + 9567696633, + 4207641230 + ], + "geometry": [ + { "lat": 40.8665599, "lon": -73.9305736 }, + { "lat": 40.8666798, "lon": -73.9307312 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "turn:lanes": "left|through;right" + } +}, +{ + "type": "way", + "id": 164839573, + "bounds": { + "minlat": 40.8593942, + "minlon": -73.9307617, + "maxlat": 40.8612590, + "maxlon": -73.9256680 + }, + "nodes": [ + 1764387325, + 1764387329, + 7588420582, + 7016431217, + 9561344690, + 42443522, + 9561344688, + 9561344698, + 42448930, + 9561344697, + 42431177, + 9561344709, + 42452485 + ], + "geometry": [ + { "lat": 40.8593942, "lon": -73.9307617 }, + { "lat": 40.8594507, "lon": -73.9305963 }, + { "lat": 40.8594957, "lon": -73.9304847 }, + { "lat": 40.8598335, "lon": -73.9295436 }, + { "lat": 40.8602138, "lon": -73.9284976 }, + { "lat": 40.8602420, "lon": -73.9284200 }, + { "lat": 40.8602710, "lon": -73.9283418 }, + { "lat": 40.8606252, "lon": -73.9273859 }, + { "lat": 40.8606570, "lon": -73.9273000 }, + { "lat": 40.8606849, "lon": -73.9272207 }, + { "lat": 40.8609560, "lon": -73.9265020 }, + { "lat": 40.8612342, "lon": -73.9257362 }, + { "lat": 40.8612590, "lon": -73.9256680 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Nagle Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 164842044, + "bounds": { + "minlat": 40.8612972, + "minlon": -73.9255794, + "maxlat": 40.8613637, + "maxlon": -73.9252612 + }, + "nodes": [ + 1764400297, + 4814440060, + 4814440062 + ], + "geometry": [ + { "lat": 40.8612972, "lon": -73.9255794 }, + { "lat": 40.8613011, "lon": -73.9254416 }, + { "lat": 40.8613637, "lon": -73.9252612 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Nagle Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 164842046, + "bounds": { + "minlat": 40.8616359, + "minlon": -73.9247646, + "maxlat": 40.8618235, + "maxlon": -73.9241374 + }, + "nodes": [ + 1764400288, + 1764400292, + 4321038138, + 13300319378, + 1764400286 + ], + "geometry": [ + { "lat": 40.8618235, "lon": -73.9241374 }, + { "lat": 40.8617501, "lon": -73.9244554 }, + { "lat": 40.8616856, "lon": -73.9246344 }, + { "lat": 40.8616486, "lon": -73.9247313 }, + { "lat": 40.8616359, "lon": -73.9247646 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Nagle Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 164842049, + "bounds": { + "minlat": 40.8624268, + "minlon": -73.9225094, + "maxlat": 40.8631202, + "maxlon": -73.9206133 + }, + "nodes": [ + 42445634, + 7045648152, + 9561420845, + 8385356007, + 7045648147, + 9561420842, + 42452495 + ], + "geometry": [ + { "lat": 40.8624268, "lon": -73.9225094 }, + { "lat": 40.8624663, "lon": -73.9224014 }, + { "lat": 40.8624775, "lon": -73.9223708 }, + { "lat": 40.8624858, "lon": -73.9223480 }, + { "lat": 40.8627510, "lon": -73.9216229 }, + { "lat": 40.8630824, "lon": -73.9207169 }, + { "lat": 40.8631202, "lon": -73.9206133 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Nagle Avenue", + "parking:lane:left": "parallel", + "parking:lane:right": "perpendicular", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:forward": "left;through|right" + } +}, +{ + "type": "way", + "id": 164842051, + "bounds": { + "minlat": 40.8614596, + "minlon": -73.9246410, + "maxlat": 40.8619107, + "maxlon": -73.9239021 + }, + "nodes": [ + 1764400302, + 1764400285, + 9561344660, + 8592434762, + 1764400304 + ], + "geometry": [ + { "lat": 40.8614596, "lon": -73.9246410 }, + { "lat": 40.8614877, "lon": -73.9245265 }, + { "lat": 40.8614924, "lon": -73.9245080 }, + { "lat": 40.8617819, "lon": -73.9240014 }, + { "lat": 40.8619107, "lon": -73.9239021 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Nagle Avenue", + "oneway": "yes", + "parking:lane:right": "perpendicular", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 164843933, + "bounds": { + "minlat": 40.8589802, + "minlon": -73.9233773, + "maxlat": 40.8594690, + "maxlon": -73.9229261 + }, + "nodes": [ + 589927883, + 9561344638, + 5890982670, + 1764424345 + ], + "geometry": [ + { "lat": 40.8594690, "lon": -73.9233773 }, + { "lat": 40.8590719, "lon": -73.9230484 }, + { "lat": 40.8590472, "lon": -73.9230274 }, + { "lat": 40.8589802, "lon": -73.9229261 } + ], + "tags": { + "alt_name": "West 200th Street", + "cycleway:left": "shared_lane", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Dyckman Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:alt_name_base": "W 200th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "turn:lanes:forward": "left|right", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 164843942, + "bounds": { + "minlat": 40.8589802, + "minlon": -73.9229261, + "maxlat": 40.8595101, + "maxlon": -73.9225464 + }, + "nodes": [ + 1764424345, + 9561344637, + 8385356005, + 11587200863, + 1764424330 + ], + "geometry": [ + { "lat": 40.8589802, "lon": -73.9229261 }, + { "lat": 40.8591099, "lon": -73.9228334 }, + { "lat": 40.8593078, "lon": -73.9226913 }, + { "lat": 40.8594007, "lon": -73.9226248 }, + { "lat": 40.8595101, "lon": -73.9225464 } + ], + "tags": { + "bicycle": "designated", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:backward": "slight_left|right", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 164843960, + "bounds": { + "minlat": 40.8387380, + "minlon": -73.9334486, + "maxlat": 40.8589802, + "maxlon": -73.9228716 + }, + "nodes": [ + 1764424345, + 1764424359, + 589927896, + 373784760, + 371337273, + 373784763, + 373784677, + 373784680, + 748725023, + 373784682, + 373784685, + 371337271, + 9056205023, + 9056205022, + 9053650738, + 42444628, + 60925520, + 60925521, + 60925522, + 60925523, + 60925524, + 60925525, + 9053650737, + 60925526, + 60925527, + 60925528, + 60925529, + 9166224854, + 60925530, + 9166224855, + 60925531, + 9166224856, + 60925532, + 9166224857, + 60925533, + 5822838488, + 373783100, + 60925534, + 9166224847, + 60925535, + 9166224846, + 60925536, + 60925537, + 9166224845, + 9166224844, + 373782660, + 60925538, + 9166224843, + 5891063531, + 60925539, + 9166224842, + 60925540, + 373782606, + 9166224841, + 12064353854, + 60925541, + 9166224840, + 12064353855, + 9166224839, + 12064353856, + 13768867418 + ], + "geometry": [ + { "lat": 40.8589802, "lon": -73.9229261 }, + { "lat": 40.8587890, "lon": -73.9229880 }, + { "lat": 40.8569121, "lon": -73.9228809 }, + { "lat": 40.8566901, "lon": -73.9228716 }, + { "lat": 40.8564820, "lon": -73.9228738 }, + { "lat": 40.8562115, "lon": -73.9229082 }, + { "lat": 40.8559200, "lon": -73.9229567 }, + { "lat": 40.8556544, "lon": -73.9230433 }, + { "lat": 40.8554395, "lon": -73.9231208 }, + { "lat": 40.8552408, "lon": -73.9232050 }, + { "lat": 40.8550513, "lon": -73.9233023 }, + { "lat": 40.8546756, "lon": -73.9235511 }, + { "lat": 40.8539129, "lon": -73.9241347 }, + { "lat": 40.8532261, "lon": -73.9246416 }, + { "lat": 40.8525374, "lon": -73.9251325 }, + { "lat": 40.8515940, "lon": -73.9257815 }, + { "lat": 40.8511940, "lon": -73.9260399 }, + { "lat": 40.8508908, "lon": -73.9262226 }, + { "lat": 40.8504441, "lon": -73.9264854 }, + { "lat": 40.8498731, "lon": -73.9268029 }, + { "lat": 40.8494901, "lon": -73.9270388 }, + { "lat": 40.8491598, "lon": -73.9272713 }, + { "lat": 40.8484061, "lon": -73.9277905 }, + { "lat": 40.8476080, "lon": -73.9283034 }, + { "lat": 40.8472203, "lon": -73.9285379 }, + { "lat": 40.8469145, "lon": -73.9287485 }, + { "lat": 40.8463274, "lon": -73.9291567 }, + { "lat": 40.8455656, "lon": -73.9296885 }, + { "lat": 40.8453657, "lon": -73.9298241 }, + { "lat": 40.8451984, "lon": -73.9299338 }, + { "lat": 40.8450175, "lon": -73.9300480 }, + { "lat": 40.8448437, "lon": -73.9301425 }, + { "lat": 40.8446587, "lon": -73.9302383 }, + { "lat": 40.8444896, "lon": -73.9303188 }, + { "lat": 40.8443191, "lon": -73.9303964 }, + { "lat": 40.8441408, "lon": -73.9304689 }, + { "lat": 40.8437146, "lon": -73.9306279 }, + { "lat": 40.8431454, "lon": -73.9308450 }, + { "lat": 40.8428315, "lon": -73.9309702 }, + { "lat": 40.8426705, "lon": -73.9310357 }, + { "lat": 40.8424818, "lon": -73.9311276 }, + { "lat": 40.8423508, "lon": -73.9311920 }, + { "lat": 40.8422634, "lon": -73.9312426 }, + { "lat": 40.8421758, "lon": -73.9313031 }, + { "lat": 40.8420752, "lon": -73.9313848 }, + { "lat": 40.8419507, "lon": -73.9314966 }, + { "lat": 40.8418326, "lon": -73.9316194 }, + { "lat": 40.8416883, "lon": -73.9317633 }, + { "lat": 40.8415536, "lon": -73.9318825 }, + { "lat": 40.8414324, "lon": -73.9319782 }, + { "lat": 40.8412435, "lon": -73.9321110 }, + { "lat": 40.8409547, "lon": -73.9322952 }, + { "lat": 40.8406931, "lon": -73.9324441 }, + { "lat": 40.8404987, "lon": -73.9325593 }, + { "lat": 40.8403496, "lon": -73.9326484 }, + { "lat": 40.8402456, "lon": -73.9327053 }, + { "lat": 40.8401454, "lon": -73.9327583 }, + { "lat": 40.8400431, "lon": -73.9328130 }, + { "lat": 40.8399368, "lon": -73.9328677 }, + { "lat": 40.8398332, "lon": -73.9329179 }, + { "lat": 40.8387380, "lon": -73.9334486 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "surface": "asphalt", + "tiger:cfcc": "A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "Harlem River", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 164845825, + "bounds": { + "minlat": 40.8605270, + "minlon": -73.9212320, + "maxlat": 40.8613110, + "maxlon": -73.9193790 + }, + "nodes": [ + 42445046, + 9563435895, + 11971526843, + 9563435899, + 42451736 + ], + "geometry": [ + { "lat": 40.8605270, "lon": -73.9193790 }, + { "lat": 40.8605714, "lon": -73.9194839 }, + { "lat": 40.8610227, "lon": -73.9205509 }, + { "lat": 40.8612626, "lon": -73.9211182 }, + { "lat": 40.8613110, "lon": -73.9212320 } + ], + "tags": { + "highway": "residential", + "name": "West 202nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "202nd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 164845829, + "bounds": { + "minlat": 40.8611420, + "minlon": -73.9207740, + "maxlat": 40.8619360, + "maxlon": -73.9189270 + }, + "nodes": [ + 42435415, + 9563435897, + 7694163699, + 11596111968, + 9563435896, + 1764746046, + 42435412 + ], + "geometry": [ + { "lat": 40.8619360, "lon": -73.9207740 }, + { "lat": 40.8618859, "lon": -73.9206574 }, + { "lat": 40.8612939, "lon": -73.9192803 }, + { "lat": 40.8612110, "lon": -73.9190874 }, + { "lat": 40.8611868, "lon": -73.9190312 }, + { "lat": 40.8611859, "lon": -73.9190291 }, + { "lat": 40.8611420, "lon": -73.9189270 } + ], + "tags": { + "highway": "residential", + "name": "West 203rd Street", + "name_1": "West 203 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "203rd", + "tiger:name_base_1": "203", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 164846390, + "bounds": { + "minlat": 40.8595101, + "minlon": -73.9225464, + "maxlat": 40.8613110, + "maxlon": -73.9212320 + }, + "nodes": [ + 1764424330, + 8725139237, + 11587200864, + 7257560983, + 42445644, + 9563435886, + 7518438079, + 9563435901, + 42451736 + ], + "geometry": [ + { "lat": 40.8595101, "lon": -73.9225464 }, + { "lat": 40.8595893, "lon": -73.9224889 }, + { "lat": 40.8596412, "lon": -73.9224499 }, + { "lat": 40.8602629, "lon": -73.9219925 }, + { "lat": 40.8606861, "lon": -73.9216811 }, + { "lat": 40.8609294, "lon": -73.9215062 }, + { "lat": 40.8610497, "lon": -73.9214198 }, + { "lat": 40.8612532, "lon": -73.9212735 }, + { "lat": 40.8613110, "lon": -73.9212320 } + ], + "tags": { + "bicycle": "designated", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 164866814, + "bounds": { + "minlat": 40.8644793, + "minlon": -73.9189398, + "maxlat": 40.8660425, + "maxlon": -73.9178070 + }, + "nodes": [ + 42431257, + 9563662423, + 42446609, + 42455705, + 6860593881, + 3327370781, + 3327370783 + ], + "geometry": [ + { "lat": 40.8644793, "lon": -73.9189398 }, + { "lat": 40.8645686, "lon": -73.9188737 }, + { "lat": 40.8650616, "lon": -73.9185087 }, + { "lat": 40.8655852, "lon": -73.9181211 }, + { "lat": 40.8657691, "lon": -73.9180011 }, + { "lat": 40.8658272, "lon": -73.9179632 }, + { "lat": 40.8660425, "lon": -73.9178070 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 164873474, + "bounds": { + "minlat": 40.8655306, + "minlon": -73.9284054, + "maxlat": 40.8656636, + "maxlon": -73.9272714 + }, + "nodes": [ + 42429215, + 9561395280, + 1764661152, + 9561395260, + 1764661150, + 9561395289, + 42441009 + ], + "geometry": [ + { "lat": 40.8655306, "lon": -73.9272714 }, + { "lat": 40.8655807, "lon": -73.9274042 }, + { "lat": 40.8655959, "lon": -73.9274447 }, + { "lat": 40.8656351, "lon": -73.9279033 }, + { "lat": 40.8656636, "lon": -73.9282365 }, + { "lat": 40.8656500, "lon": -73.9283069 }, + { "lat": 40.8656310, "lon": -73.9284054 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 164873475, + "bounds": { + "minlat": 40.8656310, + "minlon": -73.9298529, + "maxlat": 40.8659478, + "maxlon": -73.9284054 + }, + "nodes": [ + 42441009, + 9561395291, + 60916267, + 2052329274, + 60916266, + 60916277, + 9561395227, + 9561561621, + 42441007 + ], + "geometry": [ + { "lat": 40.8656310, "lon": -73.9284054 }, + { "lat": 40.8656428, "lon": -73.9285317 }, + { "lat": 40.8656828, "lon": -73.9289610 }, + { "lat": 40.8657141, "lon": -73.9291682 }, + { "lat": 40.8657506, "lon": -73.9293567 }, + { "lat": 40.8658411, "lon": -73.9296337 }, + { "lat": 40.8658934, "lon": -73.9297490 }, + { "lat": 40.8659003, "lon": -73.9297622 }, + { "lat": 40.8659478, "lon": -73.9298529 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "network": "lcn", + "route": "bicycle", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 164873888, + "bounds": { + "minlat": 40.8632348, + "minlon": -73.9197718, + "maxlat": 40.8638064, + "maxlon": -73.9194023 + }, + "nodes": [ + 1764626357, + 5890982664, + 8592434761, + 9561566542, + 42440494 + ], + "geometry": [ + { "lat": 40.8632348, "lon": -73.9197718 }, + { "lat": 40.8633384, "lon": -73.9196642 }, + { "lat": 40.8637106, "lon": -73.9194023 }, + { "lat": 40.8637300, "lon": -73.9194052 }, + { "lat": 40.8638064, "lon": -73.9194167 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 164873891, + "bounds": { + "minlat": 40.8635998, + "minlon": -73.9195831, + "maxlat": 40.8638064, + "maxlon": -73.9194167 + }, + "nodes": [ + 42440494, + 9561566544, + 5890982665 + ], + "geometry": [ + { "lat": 40.8638064, "lon": -73.9194167 }, + { "lat": 40.8637537, "lon": -73.9194592 }, + { "lat": 40.8635998, "lon": -73.9195831 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "parking:lane:left": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 164874521, + "bounds": { + "minlat": 40.8709736, + "minlon": -73.9196925, + "maxlat": 40.8720821, + "maxlon": -73.9192577 + }, + "nodes": [ + 42429950, + 9561209100, + 1761401124, + 9561209031, + 42429946 + ], + "geometry": [ + { "lat": 40.8720821, "lon": -73.9196925 }, + { "lat": 40.8720689, "lon": -73.9196870 }, + { "lat": 40.8711345, "lon": -73.9192988 }, + { "lat": 40.8711030, "lon": -73.9192870 }, + { "lat": 40.8709736, "lon": -73.9192577 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 214th Street", + "name_1": "West 214 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "214th", + "tiger:name_base_1": "214", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 164874889, + "bounds": { + "minlat": 40.8685090, + "minlon": -73.9221450, + "maxlat": 40.8691500, + "maxlon": -73.9217178 + }, + "nodes": [ + 42431230, + 9561561662, + 8952453948, + 42431234 + ], + "geometry": [ + { "lat": 40.8691500, "lon": -73.9221450 }, + { "lat": 40.8690799, "lon": -73.9220982 }, + { "lat": 40.8685712, "lon": -73.9217591 }, + { "lat": 40.8685090, "lon": -73.9217178 } + ], + "tags": { + "alt_name": "Damien Meehan Way", + "cycleway:both": "no", + "highway": "tertiary", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West 207th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 164875072, + "bounds": { + "minlat": 40.8696332, + "minlon": -73.9180882, + "maxlat": 40.8701354, + "maxlon": -73.9170165 + }, + "nodes": [ + 1202018697, + 2034003316, + 42429936, + 2034003363, + 42434370 + ], + "geometry": [ + { "lat": 40.8696332, "lon": -73.9180882 }, + { "lat": 40.8696441, "lon": -73.9180095 }, + { "lat": 40.8696740, "lon": -73.9179151 }, + { "lat": 40.8698978, "lon": -73.9174284 }, + { "lat": 40.8701354, "lon": -73.9170165 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Park Terrace East" + } +}, +{ + "type": "way", + "id": 164875073, + "bounds": { + "minlat": 40.8701354, + "minlon": -73.9170165, + "maxlat": 40.8716030, + "maxlon": -73.9150560 + }, + "nodes": [ + 42429705, + 9561209093, + 42434372, + 11587411471, + 2034003397, + 42434370 + ], + "geometry": [ + { "lat": 40.8716030, "lon": -73.9150560 }, + { "lat": 40.8715387, "lon": -73.9151353 }, + { "lat": 40.8710440, "lon": -73.9157460 }, + { "lat": 40.8709882, "lon": -73.9158178 }, + { "lat": 40.8703494, "lon": -73.9166405 }, + { "lat": 40.8701354, "lon": -73.9170165 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Park Terrace East", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 164877022, + "bounds": { + "minlat": 40.8605270, + "minlon": -73.9193790, + "maxlat": 40.8636939, + "maxlon": -73.9170603 + }, + "nodes": [ + 42445046, + 11596481887, + 9563435888, + 11596481878, + 42435412, + 11596481877, + 9561566527, + 42445051, + 9561566526, + 9561566517, + 42445054, + 9561557616, + 9561566520, + 42440499, + 9561566519, + 9561208925, + 42431260 + ], + "geometry": [ + { "lat": 40.8605270, "lon": -73.9193790 }, + { "lat": 40.8605905, "lon": -73.9193323 }, + { "lat": 40.8609084, "lon": -73.9190987 }, + { "lat": 40.8610897, "lon": -73.9189654 }, + { "lat": 40.8611420, "lon": -73.9189270 }, + { "lat": 40.8612107, "lon": -73.9188773 }, + { "lat": 40.8617168, "lon": -73.9185112 }, + { "lat": 40.8617750, "lon": -73.9184690 }, + { "lat": 40.8618404, "lon": -73.9184211 }, + { "lat": 40.8623449, "lon": -73.9180510 }, + { "lat": 40.8623940, "lon": -73.9180150 }, + { "lat": 40.8624621, "lon": -73.9179649 }, + { "lat": 40.8629586, "lon": -73.9176000 }, + { "lat": 40.8630200, "lon": -73.9175550 }, + { "lat": 40.8630869, "lon": -73.9175059 }, + { "lat": 40.8635727, "lon": -73.9171509 }, + { "lat": 40.8636939, "lon": -73.9170603 } + ], + "tags": { + "highway": "tertiary", + "name": "9th Avenue", + "name_1": "9 Avenue", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "9th", + "tiger:name_base_1": "9", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 164877023, + "bounds": { + "minlat": 40.8617750, + "minlon": -73.9202964, + "maxlat": 40.8626109, + "maxlon": -73.9184690 + }, + "nodes": [ + 42445051, + 9561566528, + 1763748994, + 42455493 + ], + "geometry": [ + { "lat": 40.8617750, "lon": -73.9184690 }, + { "lat": 40.8618174, "lon": -73.9185694 }, + { "lat": 40.8625100, "lon": -73.9202024 }, + { "lat": 40.8626109, "lon": -73.9202964 } + ], + "tags": { + "highway": "tertiary", + "name": "West 204th Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "204th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 164877155, + "bounds": { + "minlat": 40.8621882, + "minlon": -73.9134871, + "maxlat": 40.8623227, + "maxlon": -73.9134332 + }, + "nodes": [ + 595749106, + 9903143739, + 12074555511, + 12074555512, + 12074555510, + 12074555509, + 7899133116, + 1764746690, + 12058439905, + 12058439907, + 12058439906, + 12074555508, + 9903143738 + ], + "geometry": [ + { "lat": 40.8623227, "lon": -73.9134871 }, + { "lat": 40.8623128, "lon": -73.9134685 }, + { "lat": 40.8623056, "lon": -73.9134578 }, + { "lat": 40.8622981, "lon": -73.9134488 }, + { "lat": 40.8622895, "lon": -73.9134409 }, + { "lat": 40.8622827, "lon": -73.9134368 }, + { "lat": 40.8622745, "lon": -73.9134340 }, + { "lat": 40.8622664, "lon": -73.9134332 }, + { "lat": 40.8622582, "lon": -73.9134346 }, + { "lat": 40.8622494, "lon": -73.9134373 }, + { "lat": 40.8622398, "lon": -73.9134419 }, + { "lat": 40.8622310, "lon": -73.9134475 }, + { "lat": 40.8621882, "lon": -73.9134811 } + ], + "tags": { + "highway": "unclassified", + "name": "Exterior Street", + "oneway": "yes", + "sidewalk": "no" + } +}, +{ + "type": "way", + "id": 164877224, + "bounds": { + "minlat": 40.8617433, + "minlon": -73.9125109, + "maxlat": 40.8617781, + "maxlon": -73.9121020 + }, + "nodes": [ + 12037507558, + 12074332267, + 12058477471, + 12058477475, + 12058477474, + 8913596530 + ], + "geometry": [ + { "lat": 40.8617781, "lon": -73.9125109 }, + { "lat": 40.8617688, "lon": -73.9124396 }, + { "lat": 40.8617649, "lon": -73.9124020 }, + { "lat": 40.8617612, "lon": -73.9123596 }, + { "lat": 40.8617532, "lon": -73.9122513 }, + { "lat": 40.8617433, "lon": -73.9121020 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 164877228, + "bounds": { + "minlat": 40.8617435, + "minlon": -73.9119941, + "maxlat": 40.8618154, + "maxlon": -73.9118129 + }, + "nodes": [ + 42731033, + 12058459520, + 12058421234, + 12058421235, + 12058459515, + 1764747395 + ], + "geometry": [ + { "lat": 40.8617435, "lon": -73.9118129 }, + { "lat": 40.8617635, "lon": -73.9118469 }, + { "lat": 40.8617787, "lon": -73.9118839 }, + { "lat": 40.8617905, "lon": -73.9119155 }, + { "lat": 40.8618024, "lon": -73.9119500 }, + { "lat": 40.8618154, "lon": -73.9119941 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "turn:lanes": "none|none|none|right" + } +}, +{ + "type": "way", + "id": 164877267, + "bounds": { + "minlat": 40.8625747, + "minlon": -73.9115176, + "maxlat": 40.8635322, + "maxlon": -73.9105443 + }, + "nodes": [ + 1764748511, + 1764748508, + 1764748513, + 1764748524, + 1764748520, + 1764748523, + 2899216793 + ], + "geometry": [ + { "lat": 40.8625747, "lon": -73.9115176 }, + { "lat": 40.8627153, "lon": -73.9113965 }, + { "lat": 40.8629688, "lon": -73.9111498 }, + { "lat": 40.8631482, "lon": -73.9109490 }, + { "lat": 40.8632963, "lon": -73.9107840 }, + { "lat": 40.8634433, "lon": -73.9106288 }, + { "lat": 40.8635322, "lon": -73.9105443 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 164877268, + "bounds": { + "minlat": 40.8621551, + "minlon": -73.9120624, + "maxlat": 40.8625747, + "maxlon": -73.9115176 + }, + "nodes": [ + 1764748516, + 12058459511, + 12058459510, + 7899133108, + 1764748511 + ], + "geometry": [ + { "lat": 40.8621551, "lon": -73.9120624 }, + { "lat": 40.8623002, "lon": -73.9118090 }, + { "lat": 40.8623171, "lon": -73.9117829 }, + { "lat": 40.8623383, "lon": -73.9117574 }, + { "lat": 40.8625747, "lon": -73.9115176 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 164879303, + "bounds": { + "minlat": 40.8617435, + "minlon": -73.9118129, + "maxlat": 40.8623478, + "maxlon": -73.9109819 + }, + "nodes": [ + 42732755, + 12993728176, + 12058459523, + 12058421229, + 42731033 + ], + "geometry": [ + { "lat": 40.8623478, "lon": -73.9109819 }, + { "lat": 40.8622845, "lon": -73.9110687 }, + { "lat": 40.8618898, "lon": -73.9116100 }, + { "lat": 40.8618550, "lon": -73.9116582 }, + { "lat": 40.8617435, "lon": -73.9118129 } + ], + "tags": { + "highway": "residential", + "name": "Cedar Avenue", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cedar", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 164879650, + "bounds": { + "minlat": 40.8623478, + "minlon": -73.9115176, + "maxlat": 40.8625747, + "maxlon": -73.9109819 + }, + "nodes": [ + 42732755, + 13038939519, + 1764748511 + ], + "geometry": [ + { "lat": 40.8623478, "lon": -73.9109819 }, + { "lat": 40.8625576, "lon": -73.9114772 }, + { "lat": 40.8625747, "lon": -73.9115176 } + ], + "tags": { + "highway": "residential", + "name": "Landing Road", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Landing", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 165366872, + "bounds": { + "minlat": 40.8651000, + "minlon": -73.9231100, + "maxlat": 40.8670160, + "maxlon": -73.9218840 + }, + "nodes": [ + 42429220, + 8952453925, + 9561420929, + 42437923, + 9561420927, + 9561420925, + 42427867 + ], + "geometry": [ + { "lat": 40.8670160, "lon": -73.9231100 }, + { "lat": 40.8669225, "lon": -73.9230500 }, + { "lat": 40.8661495, "lon": -73.9225529 }, + { "lat": 40.8660653, "lon": -73.9224988 }, + { "lat": 40.8659943, "lon": -73.9224537 }, + { "lat": 40.8652060, "lon": -73.9219515 }, + { "lat": 40.8651000, "lon": -73.9218840 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "yes", + "name": "West 204th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "204th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 165397592, + "bounds": { + "minlat": 40.8681625, + "minlon": -73.9119113, + "maxlat": 40.8688503, + "maxlon": -73.9114398 + }, + "nodes": [ + 42454551, + 42446228 + ], + "geometry": [ + { "lat": 40.8681625, "lon": -73.9119113 }, + { "lat": 40.8688503, "lon": -73.9114398 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 165398358, + "bounds": { + "minlat": 40.8636939, + "minlon": -73.9170603, + "maxlat": 40.8643376, + "maxlon": -73.9166074 + }, + "nodes": [ + 42431260, + 9561208919, + 7477500102, + 7477500096, + 42436571, + 3718637426 + ], + "geometry": [ + { "lat": 40.8636939, "lon": -73.9170603 }, + { "lat": 40.8638134, "lon": -73.9169774 }, + { "lat": 40.8639195, "lon": -73.9169027 }, + { "lat": 40.8639988, "lon": -73.9168472 }, + { "lat": 40.8642930, "lon": -73.9166408 }, + { "lat": 40.8643376, "lon": -73.9166074 } + ], + "tags": { + "highway": "residential", + "name": "9th Avenue", + "name_1": "9 Avenue", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "9th", + "tiger:name_base_1": "9", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 165398359, + "bounds": { + "minlat": 40.8687770, + "minlon": -73.9151830, + "maxlat": 40.8695510, + "maxlon": -73.9133520 + }, + "nodes": [ + 42444873, + 9563662421, + 42454553 + ], + "geometry": [ + { "lat": 40.8687770, "lon": -73.9133520 }, + { "lat": 40.8695082, "lon": -73.9150816 }, + { "lat": 40.8695510, "lon": -73.9151830 } + ], + "tags": { + "alt_name": "Police Offer Donald J. McIntyre Way", + "highway": "tertiary", + "name": "West 215th Street", + "name_1": "West 215 Street", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "215th", + "tiger:name_base_1": "215", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 165399196, + "bounds": { + "minlat": 40.8711394, + "minlon": -73.9142122, + "maxlat": 40.8711883, + "maxlon": -73.9141504 + }, + "nodes": [ + 13320061232, + 9561126014 + ], + "geometry": [ + { "lat": 40.8711883, "lon": -73.9141504 }, + { "lat": 40.8711394, "lon": -73.9142122 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 165399493, + "bounds": { + "minlat": 40.8722414, + "minlon": -73.9126036, + "maxlat": 40.8728468, + "maxlon": -73.9119097 + }, + "nodes": [ + 42427507, + 9561125959, + 1544809895, + 42429262, + 1544809889 + ], + "geometry": [ + { "lat": 40.8722414, "lon": -73.9126036 }, + { "lat": 40.8723125, "lon": -73.9125121 }, + { "lat": 40.8725165, "lon": -73.9122492 }, + { "lat": 40.8726931, "lon": -73.9120485 }, + { "lat": 40.8728468, "lon": -73.9119097 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 165399494, + "bounds": { + "minlat": 40.8711588, + "minlon": -73.9141154, + "maxlat": 40.8712160, + "maxlon": -73.9139795 + }, + "nodes": [ + 42429704, + 1544809885 + ], + "geometry": [ + { "lat": 40.8711588, "lon": -73.9139795 }, + { "lat": 40.8712160, "lon": -73.9141154 } + ], + "tags": { + "highway": "tertiary", + "maxheight": "11'6\"", + "name": "West 218th Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "218th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034" + } +}, +{ + "type": "way", + "id": 165409451, + "bounds": { + "minlat": 40.8702250, + "minlon": -73.9146940, + "maxlat": 40.8709944, + "maxlon": -73.9141039 + }, + "nodes": [ + 42446231, + 9142910499, + 7132855261 + ], + "geometry": [ + { "lat": 40.8702250, "lon": -73.9146940 }, + { "lat": 40.8706409, "lon": -73.9143750 }, + { "lat": 40.8709944, "lon": -73.9141039 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 165422866, + "bounds": { + "minlat": 40.8500286, + "minlon": -73.9429047, + "maxlat": 40.8517167, + "maxlon": -73.9419549 + }, + "nodes": [ + 60927838, + 60917345, + 12068606741, + 7911469482, + 60917346, + 12068606740, + 7911469474, + 7911483090, + 12068606738, + 7911469483, + 12068606739, + 60917347, + 12067141187, + 7911483092, + 12067141186, + 42441496, + 12067141185, + 7911469475, + 12067141184, + 7911469473, + 12067141183, + 7911469484, + 42441499, + 7911483093, + 12067141188, + 1769708231, + 12067141189, + 60929261 + ], + "geometry": [ + { "lat": 40.8500286, "lon": -73.9429047 }, + { "lat": 40.8505446, "lon": -73.9428287 }, + { "lat": 40.8506139, "lon": -73.9428164 }, + { "lat": 40.8506809, "lon": -73.9428011 }, + { "lat": 40.8507408, "lon": -73.9427834 }, + { "lat": 40.8508022, "lon": -73.9427618 }, + { "lat": 40.8508583, "lon": -73.9427401 }, + { "lat": 40.8509007, "lon": -73.9427214 }, + { "lat": 40.8509395, "lon": -73.9427022 }, + { "lat": 40.8509856, "lon": -73.9426768 }, + { "lat": 40.8510230, "lon": -73.9426545 }, + { "lat": 40.8510588, "lon": -73.9426312 }, + { "lat": 40.8511058, "lon": -73.9425985 }, + { "lat": 40.8511456, "lon": -73.9425695 }, + { "lat": 40.8511863, "lon": -73.9425373 }, + { "lat": 40.8512267, "lon": -73.9425037 }, + { "lat": 40.8512624, "lon": -73.9424722 }, + { "lat": 40.8512973, "lon": -73.9424381 }, + { "lat": 40.8513440, "lon": -73.9423914 }, + { "lat": 40.8513900, "lon": -73.9423437 }, + { "lat": 40.8514283, "lon": -73.9423027 }, + { "lat": 40.8514696, "lon": -73.9422551 }, + { "lat": 40.8515167, "lon": -73.9421979 }, + { "lat": 40.8515580, "lon": -73.9421461 }, + { "lat": 40.8516034, "lon": -73.9420902 }, + { "lat": 40.8516539, "lon": -73.9420261 }, + { "lat": 40.8516848, "lon": -73.9419899 }, + { "lat": 40.8517167, "lon": -73.9419549 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 165423253, + "bounds": { + "minlat": 40.8487283, + "minlon": -73.9431770, + "maxlat": 40.8491584, + "maxlon": -73.9430242 + }, + "nodes": [ + 60927837, + 12066602765, + 12066602766, + 12066602764, + 7911307238, + 1721287336, + 7911307267, + 2901137052, + 1721287334, + 12066633328, + 7911365297, + 1721287331, + 1721287325, + 1721287332, + 7911307245, + 12066633330, + 60927836 + ], + "geometry": [ + { "lat": 40.8491584, "lon": -73.9430242 }, + { "lat": 40.8491141, "lon": -73.9430346 }, + { "lat": 40.8490789, "lon": -73.9430451 }, + { "lat": 40.8490316, "lon": -73.9430635 }, + { "lat": 40.8489862, "lon": -73.9430832 }, + { "lat": 40.8488137, "lon": -73.9431672 }, + { "lat": 40.8487966, "lon": -73.9431742 }, + { "lat": 40.8487803, "lon": -73.9431770 }, + { "lat": 40.8487626, "lon": -73.9431755 }, + { "lat": 40.8487499, "lon": -73.9431674 }, + { "lat": 40.8487398, "lon": -73.9431547 }, + { "lat": 40.8487331, "lon": -73.9431384 }, + { "lat": 40.8487289, "lon": -73.9431160 }, + { "lat": 40.8487283, "lon": -73.9430878 }, + { "lat": 40.8487322, "lon": -73.9430722 }, + { "lat": 40.8487395, "lon": -73.9430582 }, + { "lat": 40.8487498, "lon": -73.9430454 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 165426549, + "bounds": { + "minlat": 40.8327035, + "minlon": -73.9497813, + "maxlat": 40.8343731, + "maxlon": -73.9491723 + }, + "nodes": [ + 42441805, + 11196755546, + 12140122243, + 12448048751, + 12448048752, + 42441810, + 42441823, + 9935945728, + 13105137065 + ], + "geometry": [ + { "lat": 40.8327035, "lon": -73.9497813 }, + { "lat": 40.8327731, "lon": -73.9497797 }, + { "lat": 40.8329513, "lon": -73.9497287 }, + { "lat": 40.8335917, "lon": -73.9495505 }, + { "lat": 40.8338709, "lon": -73.9494540 }, + { "lat": 40.8339990, "lon": -73.9493968 }, + { "lat": 40.8342576, "lon": -73.9492422 }, + { "lat": 40.8343060, "lon": -73.9492123 }, + { "lat": 40.8343731, "lon": -73.9491723 } + ], + "tags": { + "bridge": "yes", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "layer": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "shoulder": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 165453010, + "bounds": { + "minlat": 40.8344543, + "minlon": -73.9491332, + "maxlat": 40.8363296, + "maxlon": -73.9485348 + }, + "nodes": [ + 13105137064, + 9935945727, + 761293078, + 12448048753, + 13319818985 + ], + "geometry": [ + { "lat": 40.8344543, "lon": -73.9491332 }, + { "lat": 40.8345354, "lon": -73.9491040 }, + { "lat": 40.8345842, "lon": -73.9490892 }, + { "lat": 40.8354225, "lon": -73.9488256 }, + { "lat": 40.8363296, "lon": -73.9485348 } + ], + "tags": { + "alt_name": "Robert Lowery Way", + "bridge": "yes", + "description": "This honorary street name memorializes Robert Lowery.", + "hgv": "no", + "highway": "secondary", + "historic": "memorial", + "layer": "2", + "name": "Riverside Drive West", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 165473831, + "bounds": { + "minlat": 40.8112793, + "minlon": -73.9467446, + "maxlat": 40.8121726, + "maxlon": -73.9460975 + }, + "nodes": [ + 42439878, + 10170874390, + 10177607124, + 42439873, + 10177607123, + 8904493700 + ], + "geometry": [ + { "lat": 40.8121726, "lon": -73.9460975 }, + { "lat": 40.8121196, "lon": -73.9461357 }, + { "lat": 40.8116095, "lon": -73.9465035 }, + { "lat": 40.8115460, "lon": -73.9465492 }, + { "lat": 40.8114943, "lon": -73.9465871 }, + { "lat": 40.8112793, "lon": -73.9467446 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 165473832, + "bounds": { + "minlat": 40.8236699, + "minlon": -73.9503603, + "maxlat": 40.8264034, + "maxlon": -73.9438857 + }, + "nodes": [ + 13239270566, + 9903127419, + 5403823149, + 5403823148, + 9903106016, + 42432963, + 9903106014, + 9903106012, + 42434259, + 9903106010, + 11221649610, + 42434262, + 11221649613, + 9703359668, + 561035361 + ], + "geometry": [ + { "lat": 40.8236699, "lon": -73.9438857 }, + { "lat": 40.8236876, "lon": -73.9439276 }, + { "lat": 40.8238469, "lon": -73.9443057 }, + { "lat": 40.8239480, "lon": -73.9445466 }, + { "lat": 40.8239853, "lon": -73.9446343 }, + { "lat": 40.8240402, "lon": -73.9447637 }, + { "lat": 40.8240953, "lon": -73.9448933 }, + { "lat": 40.8246213, "lon": -73.9461332 }, + { "lat": 40.8246596, "lon": -73.9462230 }, + { "lat": 40.8246947, "lon": -73.9463066 }, + { "lat": 40.8251871, "lon": -73.9474753 }, + { "lat": 40.8252380, "lon": -73.9475961 }, + { "lat": 40.8252954, "lon": -73.9477326 }, + { "lat": 40.8263549, "lon": -73.9502498 }, + { "lat": 40.8264034, "lon": -73.9503603 } + ], + "tags": { + "alt_name": "A. Philip Randolph", + "description": "This honorary street name memorializes A. Philip Randolph.", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 145th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "h", + "tiger:name_base": "145th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031", + "width": "18", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 165672323, + "bounds": { + "minlat": 40.7048009, + "minlon": -74.0164093, + "maxlat": 40.7048397, + "maxlon": -74.0153824 + }, + "nodes": [ + 1772136801, + 4145439100, + 9371204340, + 1772136809, + 13707001856, + 9371204341, + 10316226219, + 4206998261, + 1772136810, + 4206998260, + 9371204345, + 2889562918 + ], + "geometry": [ + { "lat": 40.7048009, "lon": -74.0164093 }, + { "lat": 40.7048069, "lon": -74.0162763 }, + { "lat": 40.7048240, "lon": -74.0160939 }, + { "lat": 40.7048368, "lon": -74.0159238 }, + { "lat": 40.7048386, "lon": -74.0158650 }, + { "lat": 40.7048397, "lon": -74.0158305 }, + { "lat": 40.7048392, "lon": -74.0157856 }, + { "lat": 40.7048390, "lon": -74.0157657 }, + { "lat": 40.7048354, "lon": -74.0156504 }, + { "lat": 40.7048300, "lon": -74.0155539 }, + { "lat": 40.7048233, "lon": -74.0154915 }, + { "lat": 40.7048054, "lon": -74.0153824 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Battery", + "tiger:name_type": "Pl", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 165774923, + "bounds": { + "minlat": 40.7123778, + "minlon": -74.0030513, + "maxlat": 40.7126739, + "maxlon": -74.0025407 + }, + "nodes": [ + 4158789495, + 9390090820, + 4158789498, + 4158789491, + 4158789493, + 1251908549 + ], + "geometry": [ + { "lat": 40.7126739, "lon": -74.0025407 }, + { "lat": 40.7126513, "lon": -74.0025921 }, + { "lat": 40.7126244, "lon": -74.0026480 }, + { "lat": 40.7125917, "lon": -74.0027069 }, + { "lat": 40.7125552, "lon": -74.0027674 }, + { "lat": 40.7123778, "lon": -74.0030513 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "emergency": "designated", + "highway": "residential", + "lanes": "1", + "layer": "-1", + "maxspeed": "10 mph", + "motor_vehicle": "private", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "surface": "asphalt", + "tunnel": "yes", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 165774924, + "bounds": { + "minlat": 40.7119017, + "minlon": -74.0038751, + "maxlat": 40.7123778, + "maxlon": -74.0030513 + }, + "nodes": [ + 1251908549, + 11394594176, + 42425964, + 12196111478, + 4143876133, + 12196111477, + 12196111476, + 12824247697, + 4143876130, + 12196111474, + 4143876126 + ], + "geometry": [ + { "lat": 40.7123778, "lon": -74.0030513 }, + { "lat": 40.7122024, "lon": -74.0033274 }, + { "lat": 40.7121801, "lon": -74.0033570 }, + { "lat": 40.7121528, "lon": -74.0033942 }, + { "lat": 40.7120320, "lon": -74.0035716 }, + { "lat": 40.7120096, "lon": -74.0036039 }, + { "lat": 40.7119897, "lon": -74.0036357 }, + { "lat": 40.7119710, "lon": -74.0036669 }, + { "lat": 40.7119528, "lon": -74.0037018 }, + { "lat": 40.7119270, "lon": -74.0037590 }, + { "lat": 40.7119017, "lon": -74.0038751 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "emergency": "designated", + "highway": "residential", + "lanes": "1", + "maxspeed": "10 mph", + "motor_vehicle": "private", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 165775306, + "bounds": { + "minlat": 40.7137811, + "minlon": -73.9980743, + "maxlat": 40.7140701, + "maxlon": -73.9975839 + }, + "nodes": [ + 12374690314, + 4160342478, + 12196074942, + 4160344092, + 4160344091, + 4160342477, + 4160344097, + 1773060104, + 8827539968, + 3973686294, + 1773060099 + ], + "geometry": [ + { "lat": 40.7140701, "lon": -73.9975839 }, + { "lat": 40.7140361, "lon": -73.9976165 }, + { "lat": 40.7140084, "lon": -73.9976442 }, + { "lat": 40.7139841, "lon": -73.9976750 }, + { "lat": 40.7139565, "lon": -73.9977144 }, + { "lat": 40.7139321, "lon": -73.9977556 }, + { "lat": 40.7139044, "lon": -73.9978071 }, + { "lat": 40.7138806, "lon": -73.9978556 }, + { "lat": 40.7138284, "lon": -73.9979690 }, + { "lat": 40.7138126, "lon": -73.9980059 }, + { "lat": 40.7137811, "lon": -73.9980743 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Chatham Square", + "name:etymology:wikidata": "Q208663", + "name:ko": "채텀 스퀘어", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q5087691" + } +}, +{ + "type": "way", + "id": 165777194, + "bounds": { + "minlat": 40.7198220, + "minlon": -73.9942459, + "maxlat": 40.7203018, + "maxlon": -73.9939937 + }, + "nodes": [ + 1773076513, + 6902711853, + 8821681994, + 1773076514, + 1773076511 + ], + "geometry": [ + { "lat": 40.7198220, "lon": -73.9942459 }, + { "lat": 40.7200446, "lon": -73.9940991 }, + { "lat": 40.7201274, "lon": -73.9940646 }, + { "lat": 40.7201786, "lon": -73.9940413 }, + { "lat": 40.7203018, "lon": -73.9939937 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|none", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 165777195, + "bounds": { + "minlat": 40.7194667, + "minlon": -73.9943946, + "maxlat": 40.7198220, + "maxlon": -73.9942459 + }, + "nodes": [ + 1773076513, + 12195871650, + 8231909731, + 42432184 + ], + "geometry": [ + { "lat": 40.7198220, "lon": -73.9942459 }, + { "lat": 40.7195911, "lon": -73.9943405 }, + { "lat": 40.7195325, "lon": -73.9943651 }, + { "lat": 40.7194667, "lon": -73.9943946 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 165777255, + "bounds": { + "minlat": 40.7216253, + "minlon": -73.9934835, + "maxlat": 40.7223465, + "maxlon": -73.9932156 + }, + "nodes": [ + 1773076778, + 8231896516, + 12196062129, + 8231909748, + 1773078006 + ], + "geometry": [ + { "lat": 40.7216253, "lon": -73.9934835 }, + { "lat": 40.7216713, "lon": -73.9934667 }, + { "lat": 40.7222653, "lon": -73.9932449 }, + { "lat": 40.7223075, "lon": -73.9932295 }, + { "lat": 40.7223465, "lon": -73.9932156 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 165777635, + "bounds": { + "minlat": 40.7233543, + "minlon": -73.9928257, + "maxlat": 40.7240553, + "maxlon": -73.9925739 + }, + "nodes": [ + 11676490353, + 8821494825, + 5829779494, + 1918039904 + ], + "geometry": [ + { "lat": 40.7233543, "lon": -73.9928257 }, + { "lat": 40.7239108, "lon": -73.9926160 }, + { "lat": 40.7239635, "lon": -73.9925984 }, + { "lat": 40.7240553, "lon": -73.9925739 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 165777951, + "bounds": { + "minlat": 40.7256286, + "minlon": -73.9920249, + "maxlat": 40.7270874, + "maxlon": -73.9915502 + }, + "nodes": [ + 1773084407, + 8309479093, + 12187431474, + 12187431463, + 8309479104, + 1773084405, + 8309479103, + 5286255073, + 12187431461, + 8309479115, + 1773084402 + ], + "geometry": [ + { "lat": 40.7256286, "lon": -73.9920249 }, + { "lat": 40.7256968, "lon": -73.9919987 }, + { "lat": 40.7257230, "lon": -73.9919895 }, + { "lat": 40.7262566, "lon": -73.9917944 }, + { "lat": 40.7263042, "lon": -73.9917765 }, + { "lat": 40.7263820, "lon": -73.9917495 }, + { "lat": 40.7264534, "lon": -73.9917228 }, + { "lat": 40.7268784, "lon": -73.9915667 }, + { "lat": 40.7269538, "lon": -73.9915609 }, + { "lat": 40.7270179, "lon": -73.9915559 }, + { "lat": 40.7270874, "lon": -73.9915502 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "24/7", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 165886328, + "bounds": { + "minlat": 40.8103252, + "minlon": -73.9542758, + "maxlat": 40.8110093, + "maxlon": -73.9536230 + }, + "nodes": [ + 42429825, + 10171069631, + 42439371 + ], + "geometry": [ + { "lat": 40.8110093, "lon": -73.9542758 }, + { "lat": 40.8109201, "lon": -73.9541829 }, + { "lat": 40.8103252, "lon": -73.9536230 } + ], + "tags": { + "highway": "residential", + "name": "Hancock Place", + "name:etymology:wikidata": "Q435517", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 165893413, + "bounds": { + "minlat": 40.8086658, + "minlon": -73.9587510, + "maxlat": 40.8091488, + "maxlon": -73.9576175 + }, + "nodes": [ + 3579432160, + 6791440545, + 7168010780 + ], + "geometry": [ + { "lat": 40.8086658, "lon": -73.9576175 }, + { "lat": 40.8087098, "lon": -73.9577181 }, + { "lat": 40.8091488, "lon": -73.9587510 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "West 120th Street", + "name:ru": "Западная 120-я стрит", + "name_1": "West 120 Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 166038132, + "bounds": { + "minlat": 40.7164189, + "minlon": -73.9947504, + "maxlat": 40.7169812, + "maxlon": -73.9944635 + }, + "nodes": [ + 1775260897, + 12196062146, + 6369613023, + 42445603 + ], + "geometry": [ + { "lat": 40.7164189, "lon": -73.9947504 }, + { "lat": 40.7168804, "lon": -73.9945153 }, + { "lat": 40.7169240, "lon": -73.9944926 }, + { "lat": 40.7169812, "lon": -73.9944635 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 166038145, + "bounds": { + "minlat": 40.7159115, + "minlon": -73.9950346, + "maxlat": 40.7164189, + "maxlon": -73.9947504 + }, + "nodes": [ + 1775260897, + 1775260899, + 12196062148, + 12196062149, + 12196062147, + 4376122098, + 4477147270 + ], + "geometry": [ + { "lat": 40.7164189, "lon": -73.9947504 }, + { "lat": 40.7162565, "lon": -73.9948753 }, + { "lat": 40.7161383, "lon": -73.9949353 }, + { "lat": 40.7160738, "lon": -73.9949654 }, + { "lat": 40.7160049, "lon": -73.9949954 }, + { "lat": 40.7159518, "lon": -73.9950166 }, + { "lat": 40.7159115, "lon": -73.9950346 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 166038501, + "bounds": { + "minlat": 40.7155392, + "minlon": -73.9960588, + "maxlat": 40.7162686, + "maxlon": -73.9952520 + }, + "nodes": [ + 588938271, + 5799593149, + 5799593147, + 11495928489, + 4477147273, + 4477147274, + 4160356765, + 11495928491, + 12196074926, + 1773067972, + 11496014203, + 11496014207 + ], + "geometry": [ + { "lat": 40.7155392, "lon": -73.9952520 }, + { "lat": 40.7157073, "lon": -73.9953675 }, + { "lat": 40.7158391, "lon": -73.9954567 }, + { "lat": 40.7159146, "lon": -73.9955120 }, + { "lat": 40.7159827, "lon": -73.9955701 }, + { "lat": 40.7160559, "lon": -73.9956529 }, + { "lat": 40.7161295, "lon": -73.9957600 }, + { "lat": 40.7161709, "lon": -73.9958312 }, + { "lat": 40.7161845, "lon": -73.9958608 }, + { "lat": 40.7162066, "lon": -73.9959089 }, + { "lat": 40.7162461, "lon": -73.9960008 }, + { "lat": 40.7162686, "lon": -73.9960588 } + ], + "tags": { + "alt_name": "Canal Street", + "bicycle": "no", + "destination": "Canal Street", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "35 mph", + "moped": "no", + "name": "Canal Street", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:right": "yes", + "sidewalk:separate": "both", + "surface": "asphalt", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 166084358, + "bounds": { + "minlat": 40.8039853, + "minlon": -73.9624703, + "maxlat": 40.8048929, + "maxlon": -73.9603251 + }, + "nodes": [ + 6166969757, + 8251054454, + 8251054462, + 42431186 + ], + "geometry": [ + { "lat": 40.8048929, "lon": -73.9624703 }, + { "lat": 40.8048378, "lon": -73.9623400 }, + { "lat": 40.8040280, "lon": -73.9604260 }, + { "lat": 40.8039853, "lon": -73.9603251 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 113th Street", + "name:ru": "Западная 113-я стрит", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 167922070, + "bounds": { + "minlat": 40.7553730, + "minlon": -73.9874470, + "maxlat": 40.7560361, + "maxlon": -73.9869489 + }, + "nodes": [ + 42437363, + 9235539549, + 10168088452, + 42439972 + ], + "geometry": [ + { "lat": 40.7560361, "lon": -73.9869489 }, + { "lat": 40.7559487, "lon": -73.9870146 }, + { "lat": 40.7554332, "lon": -73.9874021 }, + { "lat": 40.7553730, "lon": -73.9874470 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|none", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 167922071, + "bounds": { + "minlat": 40.7592226, + "minlon": -73.9846194, + "maxlat": 40.7598410, + "maxlon": -73.9841740 + }, + "nodes": [ + 42439996, + 10172901890, + 10228962335, + 42439994 + ], + "geometry": [ + { "lat": 40.7598410, "lon": -73.9841740 }, + { "lat": 40.7597819, "lon": -73.9842169 }, + { "lat": 40.7592703, "lon": -73.9845851 }, + { "lat": 40.7592226, "lon": -73.9846194 } + ], + "tags": { + "cycleway:left": "track", + "foot": "designated", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 167922072, + "bounds": { + "minlat": 40.7548420, + "minlon": -73.9859192, + "maxlat": 40.7556053, + "maxlon": -73.9841180 + }, + "nodes": [ + 42430333, + 6597464528, + 1752946324, + 10598594003 + ], + "geometry": [ + { "lat": 40.7548420, "lon": -73.9841180 }, + { "lat": 40.7549032, "lon": -73.9842621 }, + { "lat": 40.7554706, "lon": -73.9856013 }, + { "lat": 40.7556053, "lon": -73.9859192 } + ], + "tags": { + "access": "yes", + "foot": "designated", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 167922073, + "bounds": { + "minlat": 40.7589801, + "minlon": -73.9841740, + "maxlat": 40.7598410, + "maxlon": -73.9821356 + }, + "nodes": [ + 42439996, + 10172901888, + 1745991210, + 6167628291, + 3971196620 + ], + "geometry": [ + { "lat": 40.7598410, "lon": -73.9841740 }, + { "lat": 40.7597911, "lon": -73.9840570 }, + { "lat": 40.7594093, "lon": -73.9831606 }, + { "lat": 40.7593493, "lon": -73.9830173 }, + { "lat": 40.7589801, "lon": -73.9821356 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "West 48th Street", + "name:ru": "Западная 48-я стрит", + "name_1": "West 48 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 167922074, + "bounds": { + "minlat": 40.7598410, + "minlon": -73.9848196, + "maxlat": 40.7601126, + "maxlon": -73.9841740 + }, + "nodes": [ + 42428305, + 4322008118, + 10173121980, + 10172901884, + 42439996 + ], + "geometry": [ + { "lat": 40.7601126, "lon": -73.9848196 }, + { "lat": 40.7600919, "lon": -73.9847701 }, + { "lat": 40.7600599, "lon": -73.9846937 }, + { "lat": 40.7598970, "lon": -73.9843068 }, + { "lat": 40.7598410, "lon": -73.9841740 } + ], + "tags": { + "access": "yes", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "name": "West 48th Street", + "name:ru": "Западная 48-я стрит", + "name_1": "West 48 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 167922075, + "bounds": { + "minlat": 40.7675992, + "minlon": -73.9813961, + "maxlat": 40.7677661, + "maxlon": -73.9807850 + }, + "nodes": [ + 11225191368, + 9170790603, + 10183978836, + 1825841706, + 1792535233, + 1792535218, + 1792535224, + 4347550074 + ], + "geometry": [ + { "lat": 40.7677602, "lon": -73.9813961 }, + { "lat": 40.7677638, "lon": -73.9813814 }, + { "lat": 40.7677661, "lon": -73.9813552 }, + { "lat": 40.7677636, "lon": -73.9813252 }, + { "lat": 40.7677533, "lon": -73.9812745 }, + { "lat": 40.7677348, "lon": -73.9812322 }, + { "lat": 40.7677176, "lon": -73.9811854 }, + { "lat": 40.7675992, "lon": -73.9807850 } + ], + "tags": { + "alt_name": "West 59th Street", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park South", + "name_1": "West 59 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "right|right", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 167922076, + "bounds": { + "minlat": 40.7558193, + "minlon": -73.9869489, + "maxlat": 40.7560361, + "maxlon": -73.9864249 + }, + "nodes": [ + 42428287, + 9235539555, + 9235539548, + 42437363 + ], + "geometry": [ + { "lat": 40.7558193, "lon": -73.9864249 }, + { "lat": 40.7558542, "lon": -73.9865087 }, + { "lat": 40.7559883, "lon": -73.9868306 }, + { "lat": 40.7560361, "lon": -73.9869489 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 167922077, + "bounds": { + "minlat": 40.7584326, + "minlon": -73.9934205, + "maxlat": 40.7587598, + "maxlon": -73.9926458 + }, + "nodes": [ + 12220427275, + 9535571856, + 42437368 + ], + "geometry": [ + { "lat": 40.7587598, "lon": -73.9934205 }, + { "lat": 40.7584903, "lon": -73.9927823 }, + { "lat": 40.7584326, "lon": -73.9926458 } + ], + "tags": { + "access": "yes", + "cycleway:both": "no", + "foot": "designated", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:forward": "through|through|right", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 167923357, + "bounds": { + "minlat": 40.7371273, + "minlon": -73.9903374, + "maxlat": 40.7378047, + "maxlon": -73.9901393 + }, + "nodes": [ + 42428174, + 4763882045, + 4285055691, + 42428170 + ], + "geometry": [ + { "lat": 40.7378047, "lon": -73.9901393 }, + { "lat": 40.7377460, "lon": -73.9901653 }, + { "lat": 40.7371847, "lon": -73.9903067 }, + { "lat": 40.7371273, "lon": -73.9903374 } + ], + "tags": { + "cycleway": "track", + "hgv": "local", + "highway": "pedestrian", + "lit": "yes", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 167923358, + "bounds": { + "minlat": 40.7430428, + "minlon": -73.9891631, + "maxlat": 40.7438166, + "maxlon": -73.9890279 + }, + "nodes": [ + 42428216, + 3009534482, + 3008857246, + 42428212 + ], + "geometry": [ + { "lat": 40.7438166, "lon": -73.9890279 }, + { "lat": 40.7437311, "lon": -73.9890439 }, + { "lat": 40.7431221, "lon": -73.9891492 }, + { "lat": 40.7430428, "lon": -73.9891631 } + ], + "tags": { + "bicycle": "designated", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "pedestrian", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 168037766, + "bounds": { + "minlat": 40.7885490, + "minlon": -74.0011667, + "maxlat": 40.7886252, + "maxlon": -74.0004323 + }, + "nodes": [ + 1793478702, + 1793478703, + 1793478704, + 1793478706, + 1793478705, + 1943592027, + 103856521 + ], + "geometry": [ + { "lat": 40.7885490, "lon": -74.0011667 }, + { "lat": 40.7885826, "lon": -74.0010786 }, + { "lat": 40.7886115, "lon": -74.0009583 }, + { "lat": 40.7886241, "lon": -74.0008427 }, + { "lat": 40.7886252, "lon": -74.0007048 }, + { "lat": 40.7886071, "lon": -74.0005261 }, + { "lat": 40.7885818, "lon": -74.0004323 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "ref": "CR 505", + "source:geometry": "Bing", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "turn:lanes:forward": "left|left" + } +}, +{ + "type": "way", + "id": 168037768, + "bounds": { + "minlat": 40.7816688, + "minlon": -74.0082009, + "maxlat": 40.7826372, + "maxlon": -74.0074685 + }, + "nodes": [ + 1793478692, + 13252373883, + 12364532716, + 6771752380, + 1793478690 + ], + "geometry": [ + { "lat": 40.7826372, "lon": -74.0082009 }, + { "lat": 40.7825425, "lon": -74.0080936 }, + { "lat": 40.7823692, "lon": -74.0079824 }, + { "lat": 40.7818329, "lon": -74.0076019 }, + { "lat": 40.7816688, "lon": -74.0074685 } + ], + "tags": { + "highway": "residential", + "name": "Avenue at Port Imperial", + "source:geometry": "Bing", + "source:name": "TIGER", + "source:oneway": "Bing" + } +}, +{ + "type": "way", + "id": 168037769, + "bounds": { + "minlat": 40.7788546, + "minlon": -74.0096755, + "maxlat": 40.7834656, + "maxlon": -74.0038389 + }, + "nodes": [ + 308678157, + 1793478667, + 308679524, + 1793478670, + 308679526, + 5555237927, + 308693080, + 5910252630, + 308679528, + 5910252643, + 308678154, + 308679531, + 4068479261, + 1793478688, + 1793478690, + 1793478691, + 7300731105, + 308678969, + 308678955, + 7300731127, + 4068479618, + 308679580, + 308678147, + 7081594138, + 3659304021 + ], + "geometry": [ + { "lat": 40.7788546, "lon": -74.0096755 }, + { "lat": 40.7789972, "lon": -74.0095610 }, + { "lat": 40.7791036, "lon": -74.0094723 }, + { "lat": 40.7794755, "lon": -74.0091693 }, + { "lat": 40.7798362, "lon": -74.0088915 }, + { "lat": 40.7798778, "lon": -74.0088584 }, + { "lat": 40.7802597, "lon": -74.0085543 }, + { "lat": 40.7804595, "lon": -74.0084025 }, + { "lat": 40.7806349, "lon": -74.0082693 }, + { "lat": 40.7809436, "lon": -74.0080197 }, + { "lat": 40.7812807, "lon": -74.0077471 }, + { "lat": 40.7814340, "lon": -74.0076139 }, + { "lat": 40.7815147, "lon": -74.0075410 }, + { "lat": 40.7815889, "lon": -74.0074740 }, + { "lat": 40.7816688, "lon": -74.0074685 }, + { "lat": 40.7817195, "lon": -74.0073013 }, + { "lat": 40.7821193, "lon": -74.0063543 }, + { "lat": 40.7821403, "lon": -74.0063046 }, + { "lat": 40.7821919, "lon": -74.0061638 }, + { "lat": 40.7822110, "lon": -74.0061115 }, + { "lat": 40.7826198, "lon": -74.0049881 }, + { "lat": 40.7826311, "lon": -74.0049604 }, + { "lat": 40.7828568, "lon": -74.0044641 }, + { "lat": 40.7833038, "lon": -74.0039947 }, + { "lat": 40.7834656, "lon": -74.0038389 } + ], + "tags": { + "highway": "residential", + "name": "Avenue at Port Imperial", + "source:name": "TIGER" + } +}, +{ + "type": "way", + "id": 168037770, + "bounds": { + "minlat": 40.7775386, + "minlon": -74.0106646, + "maxlat": 40.7786206, + "maxlon": -74.0098264 + }, + "nodes": [ + 308693078, + 5964467331, + 1793478665, + 2631530267 + ], + "geometry": [ + { "lat": 40.7775386, "lon": -74.0106646 }, + { "lat": 40.7776247, "lon": -74.0105991 }, + { "lat": 40.7779756, "lon": -74.0103192 }, + { "lat": 40.7786206, "lon": -74.0098264 } + ], + "tags": { + "highway": "unclassified", + "name": "Avenue at Port Imperial", + "source:name": "TIGER", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 168037772, + "bounds": { + "minlat": 40.7759445, + "minlon": -74.0119455, + "maxlat": 40.7775386, + "maxlon": -74.0106646 + }, + "nodes": [ + 1286793918, + 1793478661, + 1793478662, + 4703428267, + 1793478663, + 7297023056, + 308693078 + ], + "geometry": [ + { "lat": 40.7759445, "lon": -74.0119455 }, + { "lat": 40.7761161, "lon": -74.0117840 }, + { "lat": 40.7765132, "lon": -74.0114711 }, + { "lat": 40.7766661, "lon": -74.0113517 }, + { "lat": 40.7770343, "lon": -74.0110642 }, + { "lat": 40.7771304, "lon": -74.0109887 }, + { "lat": 40.7775386, "lon": -74.0106646 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "Avenue at Port Imperial", + "oneway": "yes", + "source:name": "TIGER", + "source:oneway": "Bing", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 168037774, + "bounds": { + "minlat": 40.7794755, + "minlon": -74.0103742, + "maxlat": 40.7800137, + "maxlon": -74.0091693 + }, + "nodes": [ + 308679535, + 1793478671, + 5555237923, + 1793478670 + ], + "geometry": [ + { "lat": 40.7800137, "lon": -74.0103742 }, + { "lat": 40.7797119, "lon": -74.0097058 }, + { "lat": 40.7795984, "lon": -74.0094483 }, + { "lat": 40.7794755, "lon": -74.0091693 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Riverbend Drive", + "oneway": "yes", + "source:geometry": "Bing", + "source:name": "TIGER", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 168037775, + "bounds": { + "minlat": 40.7802597, + "minlon": -74.0094231, + "maxlat": 40.7806434, + "maxlon": -74.0085543 + }, + "nodes": [ + 308693080, + 5555237924, + 1793478687, + 9807964109 + ], + "geometry": [ + { "lat": 40.7802597, "lon": -74.0085543 }, + { "lat": 40.7803886, "lon": -74.0088458 }, + { "lat": 40.7805009, "lon": -74.0090998 }, + { "lat": 40.7806434, "lon": -74.0094231 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "Riverbend Drive", + "oneway": "yes", + "source:geometry": "Bing", + "source:name": "TIGER", + "source:oneway": "Bing;guess", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 168037776, + "bounds": { + "minlat": 40.7802387, + "minlon": -74.0075731, + "maxlat": 40.7803511, + "maxlon": -74.0074254 + }, + "nodes": [ + 308679530, + 1793478682, + 1793478680, + 1793478678, + 1793478676, + 1793478674, + 1793478672, + 1793478673, + 1793478675, + 1793478677, + 1793478679, + 1793478681, + 1793478683, + 1793478684, + 1793478686, + 1793478685, + 308679530 + ], + "geometry": [ + { "lat": 40.7803227, "lon": -74.0075636 }, + { "lat": 40.7803102, "lon": -74.0075705 }, + { "lat": 40.7802904, "lon": -74.0075731 }, + { "lat": 40.7802704, "lon": -74.0075660 }, + { "lat": 40.7802532, "lon": -74.0075492 }, + { "lat": 40.7802426, "lon": -74.0075272 }, + { "lat": 40.7802387, "lon": -74.0075070 }, + { "lat": 40.7802393, "lon": -74.0074854 }, + { "lat": 40.7802443, "lon": -74.0074657 }, + { "lat": 40.7802553, "lon": -74.0074458 }, + { "lat": 40.7802785, "lon": -74.0074276 }, + { "lat": 40.7803036, "lon": -74.0074254 }, + { "lat": 40.7803257, "lon": -74.0074367 }, + { "lat": 40.7803422, "lon": -74.0074587 }, + { "lat": 40.7803511, "lon": -74.0074989 }, + { "lat": 40.7803459, "lon": -74.0075302 }, + { "lat": 40.7803227, "lon": -74.0075636 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 169267536, + "bounds": { + "minlat": 40.7527726, + "minlon": -73.9671150, + "maxlat": 40.7528971, + "maxlon": -73.9669700 + }, + "nodes": [ + 595105496, + 10998208717, + 10998208721, + 7641820936 + ], + "geometry": [ + { "lat": 40.7527726, "lon": -73.9671150 }, + { "lat": 40.7527986, "lon": -73.9670764 }, + { "lat": 40.7528260, "lon": -73.9670359 }, + { "lat": 40.7528971, "lon": -73.9669700 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 169267538, + "bounds": { + "minlat": 40.7616989, + "minlon": -74.0010599, + "maxlat": 40.7619764, + "maxlon": -74.0003663 + }, + "nodes": [ + 62915549, + 3874681634, + 4500909091, + 4500916751 + ], + "geometry": [ + { "lat": 40.7619764, "lon": -74.0010599 }, + { "lat": 40.7619288, "lon": -74.0009244 }, + { "lat": 40.7618142, "lon": -74.0006463 }, + { "lat": 40.7616989, "lon": -74.0003663 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:backward": "left|left|right", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 169267539, + "bounds": { + "minlat": 40.7636288, + "minlon": -73.9989729, + "maxlat": 40.7639539, + "maxlon": -73.9987162 + }, + "nodes": [ + 62915527, + 12154598286, + 12154598285, + 12154598287, + 373941276 + ], + "geometry": [ + { "lat": 40.7636288, "lon": -73.9989729 }, + { "lat": 40.7636800, "lon": -73.9989285 }, + { "lat": 40.7637389, "lon": -73.9988804 }, + { "lat": 40.7638020, "lon": -73.9988309 }, + { "lat": 40.7639539, "lon": -73.9987162 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "through|through|through|through;right" + } +}, +{ + "type": "way", + "id": 169267541, + "bounds": { + "minlat": 40.7542510, + "minlon": -73.9689780, + "maxlat": 40.7548770, + "maxlon": -73.9685200 + }, + "nodes": [ + 42442952, + 10168544029, + 6139477296, + 10170640090, + 42438894 + ], + "geometry": [ + { "lat": 40.7548770, "lon": -73.9685200 }, + { "lat": 40.7548198, "lon": -73.9685618 }, + { "lat": 40.7546603, "lon": -73.9686785 }, + { "lat": 40.7543125, "lon": -73.9689330 }, + { "lat": 40.7542510, "lon": -73.9689780 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 169267543, + "bounds": { + "minlat": 40.7538651, + "minlon": -73.9685200, + "maxlat": 40.7548770, + "maxlon": -73.9661361 + }, + "nodes": [ + 42442952, + 6175849564, + 10168544027, + 8224618715, + 6169344761, + 42455934 + ], + "geometry": [ + { "lat": 40.7548770, "lon": -73.9685200 }, + { "lat": 40.7548360, "lon": -73.9684235 }, + { "lat": 40.7548232, "lon": -73.9683935 }, + { "lat": 40.7539322, "lon": -73.9662951 }, + { "lat": 40.7539170, "lon": -73.9662592 }, + { "lat": 40.7538651, "lon": -73.9661361 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 50th Street", + "name:ru": "Восточная 50-я стрит", + "name_1": "East 50 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 169267544, + "bounds": { + "minlat": 40.7532346, + "minlon": -73.9666622, + "maxlat": 40.7532753, + "maxlon": -73.9665625 + }, + "nodes": [ + 595105499, + 5852272391 + ], + "geometry": [ + { "lat": 40.7532346, "lon": -73.9665625 }, + { "lat": 40.7532753, "lon": -73.9666622 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 169269031, + "bounds": { + "minlat": 40.7634033, + "minlon": -73.9994716, + "maxlat": 40.7638466, + "maxlon": -73.9990628 + }, + "nodes": [ + 42432714, + 12154598289, + 12154598290, + 12154598291, + 12154598292, + 2280259150, + 12154598293, + 12154598294 + ], + "geometry": [ + { "lat": 40.7638466, "lon": -73.9990628 }, + { "lat": 40.7637837, "lon": -73.9991084 }, + { "lat": 40.7637192, "lon": -73.9991586 }, + { "lat": 40.7636530, "lon": -73.9992138 }, + { "lat": 40.7635930, "lon": -73.9992710 }, + { "lat": 40.7635374, "lon": -73.9993256 }, + { "lat": 40.7634620, "lon": -73.9994056 }, + { "lat": 40.7634033, "lon": -73.9994716 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "6", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left|through|through|through|through|" + } +}, +{ + "type": "way", + "id": 169381957, + "bounds": { + "minlat": 40.7787867, + "minlon": -73.9844806, + "maxlat": 40.7798127, + "maxlon": -73.9820522 + }, + "nodes": [ + 42431004, + 9899924394, + 3235708630, + 42428634 + ], + "geometry": [ + { "lat": 40.7798127, "lon": -73.9844806 }, + { "lat": 40.7797614, "lon": -73.9843533 }, + { "lat": 40.7788322, "lon": -73.9821527 }, + { "lat": 40.7787867, "lon": -73.9820522 } + ], + "tags": { + "alt_name": "West 72 Street", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 169381958, + "bounds": { + "minlat": 40.7570205, + "minlon": -73.9662476, + "maxlat": 40.7580289, + "maxlon": -73.9638565 + }, + "nodes": [ + 42448390, + 10121802248, + 11395670528, + 10121802250, + 42442959 + ], + "geometry": [ + { "lat": 40.7570205, "lon": -73.9638565 }, + { "lat": 40.7570821, "lon": -73.9640020 }, + { "lat": 40.7575336, "lon": -73.9650724 }, + { "lat": 40.7579652, "lon": -73.9660957 }, + { "lat": 40.7580289, "lon": -73.9662476 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 55th Street", + "name:ru": "Восточная 55-я стрит", + "name_1": "East 55 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "10", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 169381959, + "bounds": { + "minlat": 40.7798127, + "minlon": -73.9844806, + "maxlat": 40.7801950, + "maxlon": -73.9842013 + }, + "nodes": [ + 42431004, + 9177400762, + 7818397388 + ], + "geometry": [ + { "lat": 40.7798127, "lon": -73.9844806 }, + { "lat": 40.7799139, "lon": -73.9844109 }, + { "lat": 40.7801950, "lon": -73.9842013 } + ], + "tags": { + "cycleway:both": "no", + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 169381960, + "bounds": { + "minlat": 40.7583127, + "minlon": -73.9629223, + "maxlat": 40.7589866, + "maxlon": -73.9624288 + }, + "nodes": [ + 2711029280, + 10121802239, + 6133374844, + 4918486725, + 42456041 + ], + "geometry": [ + { "lat": 40.7583127, "lon": -73.9629223 }, + { "lat": 40.7584095, "lon": -73.9628512 }, + { "lat": 40.7588099, "lon": -73.9625575 }, + { "lat": 40.7589256, "lon": -73.9624728 }, + { "lat": 40.7589866, "lon": -73.9624288 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 169381961, + "bounds": { + "minlat": 40.7703169, + "minlon": -73.9920789, + "maxlat": 40.7706042, + "maxlon": -73.9913932 + }, + "nodes": [ + 4207865789, + 7595763587, + 42430745 + ], + "geometry": [ + { "lat": 40.7706042, "lon": -73.9920789 }, + { "lat": 40.7703786, "lon": -73.9915429 }, + { "lat": 40.7703169, "lon": -73.9913932 } + ], + "tags": { + "access": "designated", + "foot": "designated", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "name_1": "West 57 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 169381962, + "bounds": { + "minlat": 40.7570205, + "minlon": -73.9638565, + "maxlat": 40.7576367, + "maxlon": -73.9634088 + }, + "nodes": [ + 42448390, + 10121802247, + 5160028813, + 10121802244, + 42443618 + ], + "geometry": [ + { "lat": 40.7570205, "lon": -73.9638565 }, + { "lat": 40.7570742, "lon": -73.9638190 }, + { "lat": 40.7573612, "lon": -73.9636133 }, + { "lat": 40.7575756, "lon": -73.9634529 }, + { "lat": 40.7576367, "lon": -73.9634088 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 169381963, + "bounds": { + "minlat": 40.7560685, + "minlon": -73.9616198, + "maxlat": 40.7573667, + "maxlon": -73.9606728 + }, + "nodes": [ + 42432871, + 7248638333, + 7248638335, + 42440567, + 7248638327, + 7248638337, + 42440566 + ], + "geometry": [ + { "lat": 40.7573667, "lon": -73.9606728 }, + { "lat": 40.7572811, "lon": -73.9607353 }, + { "lat": 40.7567495, "lon": -73.9611230 }, + { "lat": 40.7566914, "lon": -73.9611654 }, + { "lat": 40.7566326, "lon": -73.9612083 }, + { "lat": 40.7561233, "lon": -73.9615798 }, + { "lat": 40.7560685, "lon": -73.9616198 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "residential", + "lanes": "6", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Sutton Place South", + "network": "lcn", + "old_name:1811-1883": "Avenue A", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 169381964, + "bounds": { + "minlat": 40.7798127, + "minlon": -73.9849613, + "maxlat": 40.7800179, + "maxlon": -73.9844806 + }, + "nodes": [ + 42431004, + 9492556584, + 4207865790 + ], + "geometry": [ + { "lat": 40.7798127, "lon": -73.9844806 }, + { "lat": 40.7798683, "lon": -73.9846121 }, + { "lat": 40.7800179, "lon": -73.9849613 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 169381965, + "bounds": { + "minlat": 40.7602510, + "minlon": -73.9615019, + "maxlat": 40.7605395, + "maxlon": -73.9612955 + }, + "nodes": [ + 6177439749, + 4918486775, + 8959167156 + ], + "geometry": [ + { "lat": 40.7602510, "lon": -73.9615019 }, + { "lat": 40.7602932, "lon": -73.9614714 }, + { "lat": 40.7605395, "lon": -73.9612955 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 169383512, + "bounds": { + "minlat": 40.7625524, + "minlon": -74.0005301, + "maxlat": 40.7626470, + "maxlon": -74.0002895 + }, + "nodes": [ + 62915525, + 42453548 + ], + "geometry": [ + { "lat": 40.7625524, "lon": -74.0002895 }, + { "lat": 40.7626470, "lon": -74.0005301 } + ], + "tags": { + "bicycle": "designated", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 169383514, + "bounds": { + "minlat": 40.7620659, + "minlon": -74.0013362, + "maxlat": 40.7626470, + "maxlon": -74.0005301 + }, + "nodes": [ + 42453548, + 9143503689, + 9143503690, + 12154605912, + 8765433490, + 247119753, + 42437379 + ], + "geometry": [ + { "lat": 40.7626470, "lon": -74.0005301 }, + { "lat": 40.7623321, "lon": -74.0009843 }, + { "lat": 40.7622907, "lon": -74.0010451 }, + { "lat": 40.7622498, "lon": -74.0010958 }, + { "lat": 40.7622105, "lon": -74.0011462 }, + { "lat": 40.7621848, "lon": -74.0011813 }, + { "lat": 40.7620659, "lon": -74.0013362 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left|left|||" + } +}, +{ + "type": "way", + "id": 169383516, + "bounds": { + "minlat": 40.7487771, + "minlon": -73.9697356, + "maxlat": 40.7494064, + "maxlon": -73.9693844 + }, + "nodes": [ + 248708582, + 1701844700, + 9140864938, + 9140864941, + 6162215869, + 6133359418, + 9140864945, + 595105472 + ], + "geometry": [ + { "lat": 40.7487771, "lon": -73.9697356 }, + { "lat": 40.7488977, "lon": -73.9696739 }, + { "lat": 40.7489959, "lon": -73.9696235 }, + { "lat": 40.7491772, "lon": -73.9695289 }, + { "lat": 40.7492312, "lon": -73.9694951 }, + { "lat": 40.7492787, "lon": -73.9694625 }, + { "lat": 40.7493235, "lon": -73.9694350 }, + { "lat": 40.7494064, "lon": -73.9693844 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 169383517, + "bounds": { + "minlat": 40.7481335, + "minlon": -73.9701821, + "maxlat": 40.7486685, + "maxlon": -73.9697866 + }, + "nodes": [ + 595105538, + 1701844702, + 3569749103 + ], + "geometry": [ + { "lat": 40.7481335, "lon": -73.9701821 }, + { "lat": 40.7482053, "lon": -73.9701117 }, + { "lat": 40.7486685, "lon": -73.9697866 } + ], + "tags": { + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 169383518, + "bounds": { + "minlat": 40.7457826, + "minlon": -73.9704329, + "maxlat": 40.7475579, + "maxlon": -73.9687700 + }, + "nodes": [ + 1701844664, + 6863068086, + 42426851, + 6863027979, + 370915582, + 42450814 + ], + "geometry": [ + { "lat": 40.7475579, "lon": -73.9687700 }, + { "lat": 40.7472812, "lon": -73.9689848 }, + { "lat": 40.7469300, "lon": -73.9692725 }, + { "lat": 40.7469125, "lon": -73.9692879 }, + { "lat": 40.7467560, "lon": -73.9694257 }, + { "lat": 40.7457826, "lon": -73.9704329 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 169785443, + "bounds": { + "minlat": 40.7909985, + "minlon": -73.9708683, + "maxlat": 40.7933852, + "maxlon": -73.9651883 + }, + "nodes": [ + 42435328, + 7123525316, + 3718670413, + 42443373, + 7792793732, + 8687882698, + 42442528 + ], + "geometry": [ + { "lat": 40.7909985, "lon": -73.9651883 }, + { "lat": 40.7910481, "lon": -73.9653064 }, + { "lat": 40.7921353, "lon": -73.9678938 }, + { "lat": 40.7921969, "lon": -73.9680402 }, + { "lat": 40.7922440, "lon": -73.9681524 }, + { "lat": 40.7933292, "lon": -73.9707350 }, + { "lat": 40.7933852, "lon": -73.9708683 } + ], + "tags": { + "alt_name": "West 95 Street", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 95th Street", + "name:ru": "Западная 95-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4646040", + "wikipedia": "en:95th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 171561798, + "bounds": { + "minlat": 40.7744006, + "minlon": -73.9924462, + "maxlat": 40.7815580, + "maxlon": -73.9869732 + }, + "nodes": [ + 61269413, + 7910007159, + 1825732607, + 12162590073, + 7910007161, + 12162590074, + 7910007168, + 61269416, + 7910007152, + 61269417, + 12018683324, + 9151174953 + ], + "geometry": [ + { "lat": 40.7815580, "lon": -73.9869732 }, + { "lat": 40.7814803, "lon": -73.9870510 }, + { "lat": 40.7809037, "lon": -73.9876252 }, + { "lat": 40.7807987, "lon": -73.9877235 }, + { "lat": 40.7806995, "lon": -73.9878148 }, + { "lat": 40.7806105, "lon": -73.9878914 }, + { "lat": 40.7805171, "lon": -73.9879691 }, + { "lat": 40.7803211, "lon": -73.9881206 }, + { "lat": 40.7801289, "lon": -73.9882706 }, + { "lat": 40.7799364, "lon": -73.9884140 }, + { "lat": 40.7749972, "lon": -73.9920193 }, + { "lat": 40.7744006, "lon": -73.9924462 } + ], + "tags": { + "alt_name": "12th Avenue", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "name": "West Side Highway", + "name:ru": "Вест-Сайд-Хайвей", + "not:name": "Henry Hudson Parkway", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "source:name": "https://en.wikipedia.org/wiki/West_Side_Highway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 171574337, + "bounds": { + "minlat": 40.7682630, + "minlon": -73.9816789, + "maxlat": 40.7683994, + "maxlon": -73.9814740 + }, + "nodes": [ + 4347550065, + 9170790596, + 9170790595, + 9969200091, + 9969200092, + 1825841742 + ], + "geometry": [ + { "lat": 40.7682630, "lon": -73.9814740 }, + { "lat": 40.7683008, "lon": -73.9815119 }, + { "lat": 40.7683219, "lon": -73.9815378 }, + { "lat": 40.7683536, "lon": -73.9815857 }, + { "lat": 40.7683826, "lon": -73.9816435 }, + { "lat": 40.7683994, "lon": -73.9816789 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "junction": "circular", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Circle", + "name:etymology:wikidata": "Q7322", + "name:ja": "コロンバスサークル", + "name:ko": "콜럼버스 서클", + "name:ru": "Коламбус-сёркл", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q109968" + } +}, +{ + "type": "way", + "id": 171960802, + "bounds": { + "minlat": 40.8386754, + "minlon": -73.9332395, + "maxlat": 40.8571506, + "maxlon": -73.9227783 + }, + "nodes": [ + 60925389, + 13768867408, + 13768867403, + 13768867404, + 13535333025, + 13535333026, + 13535333027, + 13535333028, + 13535333029, + 60925175, + 60925176, + 9166224848, + 9166224849, + 60925177, + 60925178, + 9166224850, + 9166224851, + 60925179, + 373783252, + 9166224852, + 60918409, + 9166224853, + 42444609, + 42444615, + 42444621, + 373783948, + 60925180, + 373784097, + 373784193, + 373784195, + 60925422, + 60925423, + 9056205025, + 416480306, + 9056205021, + 9056205024, + 42444632, + 1764424337, + 42444637, + 42444640, + 42444643, + 42444645, + 42444648, + 42444652, + 42444653, + 42444655, + 42444657, + 9902223857 + ], + "geometry": [ + { "lat": 40.8386754, "lon": -73.9332395 }, + { "lat": 40.8387898, "lon": -73.9331671 }, + { "lat": 40.8388564, "lon": -73.9331248 }, + { "lat": 40.8389341, "lon": -73.9330776 }, + { "lat": 40.8389810, "lon": -73.9330497 }, + { "lat": 40.8398655, "lon": -73.9325535 }, + { "lat": 40.8413307, "lon": -73.9317049 }, + { "lat": 40.8416413, "lon": -73.9315243 }, + { "lat": 40.8419019, "lon": -73.9313655 }, + { "lat": 40.8421463, "lon": -73.9312155 }, + { "lat": 40.8423385, "lon": -73.9310954 }, + { "lat": 40.8425441, "lon": -73.9309879 }, + { "lat": 40.8426869, "lon": -73.9309252 }, + { "lat": 40.8428669, "lon": -73.9308510 }, + { "lat": 40.8441480, "lon": -73.9303688 }, + { "lat": 40.8443381, "lon": -73.9302854 }, + { "lat": 40.8445444, "lon": -73.9301930 }, + { "lat": 40.8447463, "lon": -73.9300897 }, + { "lat": 40.8449409, "lon": -73.9299831 }, + { "lat": 40.8451536, "lon": -73.9298544 }, + { "lat": 40.8453542, "lon": -73.9297216 }, + { "lat": 40.8455452, "lon": -73.9295916 }, + { "lat": 40.8462934, "lon": -73.9290714 }, + { "lat": 40.8471900, "lon": -73.9284504 }, + { "lat": 40.8475878, "lon": -73.9282137 }, + { "lat": 40.8483842, "lon": -73.9277000 }, + { "lat": 40.8494604, "lon": -73.9269546 }, + { "lat": 40.8498479, "lon": -73.9267143 }, + { "lat": 40.8504128, "lon": -73.9264008 }, + { "lat": 40.8508685, "lon": -73.9261294 }, + { "lat": 40.8511660, "lon": -73.9259480 }, + { "lat": 40.8515629, "lon": -73.9256916 }, + { "lat": 40.8524968, "lon": -73.9250533 }, + { "lat": 40.8524992, "lon": -73.9250516 }, + { "lat": 40.8531896, "lon": -73.9245611 }, + { "lat": 40.8538830, "lon": -73.9240468 }, + { "lat": 40.8546491, "lon": -73.9234623 }, + { "lat": 40.8548329, "lon": -73.9233360 }, + { "lat": 40.8550224, "lon": -73.9232180 }, + { "lat": 40.8552205, "lon": -73.9231120 }, + { "lat": 40.8554418, "lon": -73.9230153 }, + { "lat": 40.8556598, "lon": -73.9229353 }, + { "lat": 40.8558951, "lon": -73.9228675 }, + { "lat": 40.8562060, "lon": -73.9228052 }, + { "lat": 40.8564763, "lon": -73.9227813 }, + { "lat": 40.8566897, "lon": -73.9227783 }, + { "lat": 40.8569130, "lon": -73.9227846 }, + { "lat": 40.8571506, "lon": -73.9228010 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East River:Harlem River", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 172598469, + "bounds": { + "minlat": 40.7997960, + "minlon": -73.9714600, + "maxlat": 40.8003340, + "maxlon": -73.9701839 + }, + "nodes": [ + 13854932483, + 8831843009, + 6880029876, + 42441903 + ], + "geometry": [ + { "lat": 40.7997960, "lon": -73.9701839 }, + { "lat": 40.8002961, "lon": -73.9713712 }, + { "lat": 40.8003109, "lon": -73.9714059 }, + { "lat": 40.8003340, "lon": -73.9714600 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 103rd Street", + "name:ru": "Западная 103-я стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "width": "8.5" + } +}, +{ + "type": "way", + "id": 172598470, + "bounds": { + "minlat": 40.7993233, + "minlon": -73.9696725, + "maxlat": 40.7995802, + "maxlon": -73.9690519 + }, + "nodes": [ + 11271754125, + 11625056871 + ], + "geometry": [ + { "lat": 40.7993233, "lon": -73.9690519 }, + { "lat": 40.7995802, "lon": -73.9696725 } + ], + "tags": { + "alt_name": "Humphrey Bogart Place", + "cycleway": "shared_lane", + "highway": "living_street", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "10 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "West 103rd Street", + "name:etymology:wikidata": "Q16390", + "name:ru": "Западная 103-я стрит", + "note": "must add elements added about 8/15/2023 per the source url such as asphalt art and safety stones.", + "oneway": "yes", + "sidewalk": "separate", + "smoothness": "good", + "source": "https://www.nyc.gov/html/dot/downloads/pdf/w103-st-open-street-jun2022.pdf", + "surface": "asphalt", + "traffic_calming": "choker" + } +}, +{ + "type": "way", + "id": 173223906, + "bounds": { + "minlat": 40.7173040, + "minlon": -73.9095497, + "maxlat": 40.7176735, + "maxlon": -73.9063900 + }, + "nodes": [ + 42882344, + 9759984295, + 7983753729, + 42882342, + 9759984275, + 42882340, + 9759984273, + 42827478, + 42827509, + 7963480255, + 597676720 + ], + "geometry": [ + { "lat": 40.7173640, "lon": -73.9063900 }, + { "lat": 40.7173552, "lon": -73.9064747 }, + { "lat": 40.7173118, "lon": -73.9068898 }, + { "lat": 40.7173040, "lon": -73.9069640 }, + { "lat": 40.7173718, "lon": -73.9075923 }, + { "lat": 40.7173800, "lon": -73.9076840 }, + { "lat": 40.7173848, "lon": -73.9077282 }, + { "lat": 40.7174690, "lon": -73.9085050 }, + { "lat": 40.7174810, "lon": -73.9086230 }, + { "lat": 40.7175794, "lon": -73.9093891 }, + { "lat": 40.7176735, "lon": -73.9095497 } + ], + "tags": { + "highway": "residential", + "name": "59th Drive", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "59th", + "tiger:name_type": "Dr", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 174557178, + "bounds": { + "minlat": 40.7939688, + "minlon": -73.9680276, + "maxlat": 40.7946547, + "maxlon": -73.9675350 + }, + "nodes": [ + 7801775727, + 7801775756, + 8344003066, + 6859714440, + 6859714450, + 3617884147, + 1852323307 + ], + "geometry": [ + { "lat": 40.7939688, "lon": -73.9680276 }, + { "lat": 40.7940415, "lon": -73.9679775 }, + { "lat": 40.7941673, "lon": -73.9678904 }, + { "lat": 40.7941938, "lon": -73.9678720 }, + { "lat": 40.7945296, "lon": -73.9676254 }, + { "lat": 40.7945607, "lon": -73.9676037 }, + { "lat": 40.7946547, "lon": -73.9675350 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 174786145, + "bounds": { + "minlat": 40.8272698, + "minlon": -73.9859345, + "maxlat": 40.8297379, + "maxlon": -73.9815813 + }, + "nodes": [ + 103237100, + 7111640176, + 7111640173, + 7542525683, + 7538918098, + 7111640171, + 7538748018, + 7542525684, + 103237099, + 7538748019, + 7550915560, + 7538966603, + 7538966446, + 7538966454, + 9887279347 + ], + "geometry": [ + { "lat": 40.8297379, "lon": -73.9859345 }, + { "lat": 40.8295700, "lon": -73.9856424 }, + { "lat": 40.8294840, "lon": -73.9854926 }, + { "lat": 40.8294380, "lon": -73.9854127 }, + { "lat": 40.8293620, "lon": -73.9852804 }, + { "lat": 40.8292855, "lon": -73.9851473 }, + { "lat": 40.8286891, "lon": -73.9841095 }, + { "lat": 40.8286126, "lon": -73.9839764 }, + { "lat": 40.8284058, "lon": -73.9836164 }, + { "lat": 40.8283413, "lon": -73.9835009 }, + { "lat": 40.8280611, "lon": -73.9829990 }, + { "lat": 40.8274509, "lon": -73.9819056 }, + { "lat": 40.8273985, "lon": -73.9818118 }, + { "lat": 40.8273379, "lon": -73.9817033 }, + { "lat": 40.8272698, "lon": -73.9815813 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "Lafayette Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lafayette", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 174786146, + "bounds": { + "minlat": 40.8263534, + "minlon": -73.9799884, + "maxlat": 40.8269346, + "maxlon": -73.9784561 + }, + "nodes": [ + 103226484, + 7533716667, + 7533716708, + 1854444516, + 1854444505, + 1854444526, + 1854444494, + 1854444501, + 1854444519, + 1854444495, + 6932010928, + 1854444506, + 1854444518 + ], + "geometry": [ + { "lat": 40.8269346, "lon": -73.9799884 }, + { "lat": 40.8269173, "lon": -73.9799598 }, + { "lat": 40.8268905, "lon": -73.9799153 }, + { "lat": 40.8266342, "lon": -73.9794902 }, + { "lat": 40.8265038, "lon": -73.9794089 }, + { "lat": 40.8264265, "lon": -73.9793606 }, + { "lat": 40.8263758, "lon": -73.9793177 }, + { "lat": 40.8263555, "lon": -73.9792756 }, + { "lat": 40.8263534, "lon": -73.9792300 }, + { "lat": 40.8263676, "lon": -73.9790315 }, + { "lat": 40.8263772, "lon": -73.9789328 }, + { "lat": 40.8263960, "lon": -73.9787391 }, + { "lat": 40.8264265, "lon": -73.9784561 } + ], + "tags": { + "highway": "residential", + "name": "Winston Drive", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Winston", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 174786147, + "bounds": { + "minlat": 40.8270285, + "minlon": -73.9813078, + "maxlat": 40.8271172, + "maxlon": -73.9807427 + }, + "nodes": [ + 1854444479, + 6964853597, + 6964853593, + 1854444498, + 1854444492 + ], + "geometry": [ + { "lat": 40.8270394, "lon": -73.9807427 }, + { "lat": 40.8270285, "lon": -73.9808153 }, + { "lat": 40.8270359, "lon": -73.9809068 }, + { "lat": 40.8271135, "lon": -73.9811705 }, + { "lat": 40.8271172, "lon": -73.9813078 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "Norman Drive", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 174786148, + "bounds": { + "minlat": 40.8262125, + "minlon": -73.9797390, + "maxlat": 40.8265038, + "maxlon": -73.9794089 + }, + "nodes": [ + 1854444505, + 1854444525 + ], + "geometry": [ + { "lat": 40.8265038, "lon": -73.9794089 }, + { "lat": 40.8262125, "lon": -73.9797390 } + ], + "tags": { + "highway": "residential", + "name": "Winston Drive", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 175164869, + "bounds": { + "minlat": 40.8450637, + "minlon": -73.9169860, + "maxlat": 40.8451219, + "maxlon": -73.9129981 + }, + "nodes": [ + 60923716, + 12046906544, + 12042711604, + 12042711603, + 12042711602, + 60923715, + 12042711601, + 12042711600, + 12042711599, + 12089606490, + 12089606491 + ], + "geometry": [ + { "lat": 40.8450637, "lon": -73.9169860 }, + { "lat": 40.8450724, "lon": -73.9167366 }, + { "lat": 40.8450821, "lon": -73.9164390 }, + { "lat": 40.8450915, "lon": -73.9161527 }, + { "lat": 40.8450999, "lon": -73.9158678 }, + { "lat": 40.8451061, "lon": -73.9155802 }, + { "lat": 40.8451117, "lon": -73.9152898 }, + { "lat": 40.8451155, "lon": -73.9149940 }, + { "lat": 40.8451196, "lon": -73.9147060 }, + { "lat": 40.8451209, "lon": -73.9144264 }, + { "lat": 40.8451219, "lon": -73.9129981 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 175164875, + "bounds": { + "minlat": 40.8452475, + "minlon": -73.9143213, + "maxlat": 40.8452481, + "maxlon": -73.9132290 + }, + "nodes": [ + 12089606495, + 596669094, + 60923723 + ], + "geometry": [ + { "lat": 40.8452481, "lon": -73.9132290 }, + { "lat": 40.8452475, "lon": -73.9140360 }, + { "lat": 40.8452479, "lon": -73.9143213 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "tiger:cfcc": "A13", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cross Bronx", + "tiger:name_type": "Expy" + } +}, +{ + "type": "way", + "id": 175164880, + "bounds": { + "minlat": 40.8451040, + "minlon": -73.9129981, + "maxlat": 40.8451219, + "maxlon": -73.9120080 + }, + "nodes": [ + 12089606491, + 12042711598, + 12042711597, + 596668832 + ], + "geometry": [ + { "lat": 40.8451219, "lon": -73.9129981 }, + { "lat": 40.8451170, "lon": -73.9126874 }, + { "lat": 40.8451124, "lon": -73.9124013 }, + { "lat": 40.8451040, "lon": -73.9120080 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 175952760, + "bounds": { + "minlat": 40.7188740, + "minlon": -73.9453991, + "maxlat": 40.7192898, + "maxlon": -73.9451080 + }, + "nodes": [ + 42467904, + 11026017882, + 11229826579, + 9937287954, + 42463363 + ], + "geometry": [ + { "lat": 40.7188740, "lon": -73.9451080 }, + { "lat": 40.7189409, "lon": -73.9451432 }, + { "lat": 40.7190642, "lon": -73.9452344 }, + { "lat": 40.7192265, "lon": -73.9453545 }, + { "lat": 40.7192898, "lon": -73.9453991 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 176498778, + "bounds": { + "minlat": 40.7041507, + "minlon": -74.0106982, + "maxlat": 40.7047851, + "maxlon": -74.0097419 + }, + "nodes": [ + 42440650, + 11040350673, + 11040350671, + 42440655, + 11040350677, + 42440659, + 11040350676, + 42440660, + 42440667, + 11040350713, + 8276468721, + 10344043173, + 42427951 + ], + "geometry": [ + { "lat": 40.7041507, "lon": -74.0106982 }, + { "lat": 40.7041603, "lon": -74.0106895 }, + { "lat": 40.7041699, "lon": -74.0106731 }, + { "lat": 40.7042261, "lon": -74.0105442 }, + { "lat": 40.7042663, "lon": -74.0104589 }, + { "lat": 40.7043127, "lon": -74.0103685 }, + { "lat": 40.7043541, "lon": -74.0103053 }, + { "lat": 40.7044119, "lon": -74.0102240 }, + { "lat": 40.7045437, "lon": -74.0100522 }, + { "lat": 40.7047420, "lon": -74.0097983 }, + { "lat": 40.7047505, "lon": -74.0097874 }, + { "lat": 40.7047637, "lon": -74.0097699 }, + { "lat": 40.7047851, "lon": -74.0097419 } + ], + "tags": { + "highway": "pedestrian", + "motor_vehicle": "no", + "motor_vehicle:conditional": "yes @ (02:00-10:00)", + "name": "Stone Street", + "name:etymology:wikidata": "Q2996907", + "name:ko": "스톤 스트리트", + "oneway": "yes", + "oneway:foot": "no", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Stone", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q7619036", + "wikipedia": "en:Stone Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 176910406, + "bounds": { + "minlat": 40.7730852, + "minlon": -73.9840201, + "maxlat": 40.7738026, + "maxlon": -73.9823112 + }, + "nodes": [ + 2744944552, + 10211295972, + 1873940899, + 3369582834, + 12097383315, + 5117963659, + 9915469771 + ], + "geometry": [ + { "lat": 40.7738026, "lon": -73.9840201 }, + { "lat": 40.7736596, "lon": -73.9836797 }, + { "lat": 40.7735794, "lon": -73.9834895 }, + { "lat": 40.7735509, "lon": -73.9834219 }, + { "lat": 40.7731739, "lon": -73.9825199 }, + { "lat": 40.7731435, "lon": -73.9824472 }, + { "lat": 40.7730852, "lon": -73.9823112 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 65th Street", + "name:ru": "Западная 65-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 177127292, + "bounds": { + "minlat": 40.7030379, + "minlon": -73.9875912, + "maxlat": 40.7031301, + "maxlon": -73.9846631 + }, + "nodes": [ + 7707712195, + 10722370731, + 9928136719, + 9928136718, + 42469358, + 9928127513, + 10170379782, + 10170379783, + 42469188 + ], + "geometry": [ + { "lat": 40.7030379, "lon": -73.9846631 }, + { "lat": 40.7030410, "lon": -73.9847517 }, + { "lat": 40.7031029, "lon": -73.9865139 }, + { "lat": 40.7031042, "lon": -73.9865699 }, + { "lat": 40.7031065, "lon": -73.9866471 }, + { "lat": 40.7031079, "lon": -73.9867336 }, + { "lat": 40.7031278, "lon": -73.9874990 }, + { "lat": 40.7031284, "lon": -73.9875226 }, + { "lat": 40.7031301, "lon": -73.9875912 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lcn": "yes", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Water Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 177127299, + "bounds": { + "minlat": 40.7022320, + "minlon": -73.9828076, + "maxlat": 40.7022873, + "maxlon": -73.9811750 + }, + "nodes": [ + 42500009, + 10722370744, + 10004163955, + 42500011 + ], + "geometry": [ + { "lat": 40.7022873, "lon": -73.9828076 }, + { "lat": 40.7022846, "lon": -73.9827276 }, + { "lat": 40.7022343, "lon": -73.9812503 }, + { "lat": 40.7022320, "lon": -73.9811750 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:name_base": "Front", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 177127305, + "bounds": { + "minlat": 40.7023515, + "minlon": -73.9847051, + "maxlat": 40.7043450, + "maxlon": -73.9845830 + }, + "nodes": [ + 42479465, + 10725916722, + 9800456569, + 10725916739, + 7707712196, + 10725916738, + 3000084373, + 10722370729, + 7707712195, + 10722370728, + 10722370763, + 7707712197 + ], + "geometry": [ + { "lat": 40.7043450, "lon": -73.9845830 }, + { "lat": 40.7042960, "lon": -73.9845860 }, + { "lat": 40.7042510, "lon": -73.9845888 }, + { "lat": 40.7037378, "lon": -73.9846202 }, + { "lat": 40.7036962, "lon": -73.9846227 }, + { "lat": 40.7036497, "lon": -73.9846256 }, + { "lat": 40.7036078, "lon": -73.9846282 }, + { "lat": 40.7030828, "lon": -73.9846604 }, + { "lat": 40.7030379, "lon": -73.9846631 }, + { "lat": 40.7029899, "lon": -73.9846660 }, + { "lat": 40.7024219, "lon": -73.9847008 }, + { "lat": 40.7023515, "lon": -73.9847051 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bridge Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bridge", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 178739721, + "bounds": { + "minlat": 40.7865235, + "minlon": -73.9284081, + "maxlat": 40.7869498, + "maxlon": -73.9282341 + }, + "nodes": [ + 1890944398, + 7734722715, + 7734722714 + ], + "geometry": [ + { "lat": 40.7869498, "lon": -73.9282341 }, + { "lat": 40.7867259, "lon": -73.9284081 }, + { "lat": 40.7865235, "lon": -73.9283709 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 178739722, + "bounds": { + "minlat": 40.7853334, + "minlon": -73.9290397, + "maxlat": 40.7858596, + "maxlon": -73.9278836 + }, + "nodes": [ + 1890944383, + 5610570619, + 3040262700, + 9902723872, + 9253748807, + 1890944370 + ], + "geometry": [ + { "lat": 40.7858596, "lon": -73.9278836 }, + { "lat": 40.7855795, "lon": -73.9285197 }, + { "lat": 40.7855212, "lon": -73.9286521 }, + { "lat": 40.7853779, "lon": -73.9289503 }, + { "lat": 40.7853689, "lon": -73.9289691 }, + { "lat": 40.7853334, "lon": -73.9290397 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 178739723, + "bounds": { + "minlat": 40.7861306, + "minlon": -73.9277298, + "maxlat": 40.7869095, + "maxlon": -73.9261440 + }, + "nodes": [ + 1890944397, + 1890944390, + 7734722718, + 3040261619, + 1890944386 + ], + "geometry": [ + { "lat": 40.7869095, "lon": -73.9277298 }, + { "lat": 40.7865257, "lon": -73.9269560 }, + { "lat": 40.7864446, "lon": -73.9267894 }, + { "lat": 40.7863694, "lon": -73.9266348 }, + { "lat": 40.7861306, "lon": -73.9261440 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 178739725, + "bounds": { + "minlat": 40.7859704, + "minlon": -73.9281816, + "maxlat": 40.7865257, + "maxlon": -73.9269560 + }, + "nodes": [ + 1890944384, + 3040261613, + 1890944385, + 1890944388, + 1890944390 + ], + "geometry": [ + { "lat": 40.7859704, "lon": -73.9281816 }, + { "lat": 40.7860228, "lon": -73.9280659 }, + { "lat": 40.7860443, "lon": -73.9280192 }, + { "lat": 40.7862000, "lon": -73.9276748 }, + { "lat": 40.7865257, "lon": -73.9269560 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 178739726, + "bounds": { + "minlat": 40.7856116, + "minlon": -73.9284436, + "maxlat": 40.7872238, + "maxlon": -73.9272342 + }, + "nodes": [ + 1890944402, + 9153832685, + 1890944398, + 1890944388, + 1890944380, + 1890944376 + ], + "geometry": [ + { "lat": 40.7872238, "lon": -73.9284436 }, + { "lat": 40.7871682, "lon": -73.9284029 }, + { "lat": 40.7869498, "lon": -73.9282341 }, + { "lat": 40.7862000, "lon": -73.9276748 }, + { "lat": 40.7856707, "lon": -73.9272819 }, + { "lat": 40.7856116, "lon": -73.9272342 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 178739727, + "bounds": { + "minlat": 40.7855480, + "minlon": -73.9272342, + "maxlat": 40.7856116, + "maxlon": -73.9267488 + }, + "nodes": [ + 1890944376, + 1890944375 + ], + "geometry": [ + { "lat": 40.7856116, "lon": -73.9272342 }, + { "lat": 40.7855480, "lon": -73.9267488 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 178808513, + "bounds": { + "minlat": 40.8603119, + "minlon": -73.9094504, + "maxlat": 40.8628249, + "maxlon": -73.9075960 + }, + "nodes": [ + 1891639900, + 9903143779, + 9903143780, + 5296125214, + 9903143781, + 2327325360 + ], + "geometry": [ + { "lat": 40.8603119, "lon": -73.9094504 }, + { "lat": 40.8626766, "lon": -73.9076353 }, + { "lat": 40.8626976, "lon": -73.9076229 }, + { "lat": 40.8627217, "lon": -73.9076137 }, + { "lat": 40.8627486, "lon": -73.9076050 }, + { "lat": 40.8628249, "lon": -73.9075960 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Loring Place North", + "name:etymology:wikidata": "Q56000453", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Loring", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 178808514, + "bounds": { + "minlat": 40.8590480, + "minlon": -73.9116253, + "maxlat": 40.8597646, + "maxlon": -73.9111957 + }, + "nodes": [ + 1891639843, + 10135688399, + 1891639845, + 10304074677, + 5487859633, + 1891639847, + 2906620451, + 1891639850, + 1891639855, + 5487859636, + 1891639860, + 5487859638, + 1891639862, + 1891639863 + ], + "geometry": [ + { "lat": 40.8590480, "lon": -73.9116253 }, + { "lat": 40.8591103, "lon": -73.9116074 }, + { "lat": 40.8591664, "lon": -73.9115912 }, + { "lat": 40.8591911, "lon": -73.9115854 }, + { "lat": 40.8592357, "lon": -73.9115748 }, + { "lat": 40.8592522, "lon": -73.9115709 }, + { "lat": 40.8593515, "lon": -73.9115279 }, + { "lat": 40.8593924, "lon": -73.9115025 }, + { "lat": 40.8594918, "lon": -73.9114197 }, + { "lat": 40.8595281, "lon": -73.9113887 }, + { "lat": 40.8596281, "lon": -73.9113034 }, + { "lat": 40.8596629, "lon": -73.9112739 }, + { "lat": 40.8597205, "lon": -73.9112250 }, + { "lat": 40.8597646, "lon": -73.9111957 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 178808515, + "bounds": { + "minlat": 40.8594610, + "minlon": -73.9126581, + "maxlat": 40.8600783, + "maxlon": -73.9117645 + }, + "nodes": [ + 10135688397, + 1891639883, + 1891639854, + 1891639856, + 1891639859, + 1891639868, + 1891639881, + 1891639883 + ], + "geometry": [ + { "lat": 40.8600783, "lon": -73.9117645 }, + { "lat": 40.8600437, "lon": -73.9118732 }, + { "lat": 40.8594610, "lon": -73.9122715 }, + { "lat": 40.8595412, "lon": -73.9124729 }, + { "lat": 40.8596149, "lon": -73.9126581 }, + { "lat": 40.8598920, "lon": -73.9124372 }, + { "lat": 40.8599759, "lon": -73.9121253 }, + { "lat": 40.8600437, "lon": -73.9118732 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 178808516, + "bounds": { + "minlat": 40.8595412, + "minlon": -73.9124729, + "maxlat": 40.8599759, + "maxlon": -73.9121253 + }, + "nodes": [ + 1891639856, + 1891639881 + ], + "geometry": [ + { "lat": 40.8595412, "lon": -73.9124729 }, + { "lat": 40.8599759, "lon": -73.9121253 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 178808517, + "bounds": { + "minlat": 40.8597646, + "minlon": -73.9114866, + "maxlat": 40.8602028, + "maxlon": -73.9111093 + }, + "nodes": [ + 1891639895, + 1891639866, + 5487859643, + 1891639863 + ], + "geometry": [ + { "lat": 40.8602028, "lon": -73.9111093 }, + { "lat": 40.8598656, "lon": -73.9114866 }, + { "lat": 40.8598087, "lon": -73.9113244 }, + { "lat": 40.8597646, "lon": -73.9111957 } + ], + "tags": { + "highway": "service", + "maxspeed": "10 mph", + "oneway": "yes", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 179679750, + "bounds": { + "minlat": 40.7749205, + "minlon": -73.9666863, + "maxlat": 40.7751177, + "maxlon": -73.9664260 + }, + "nodes": [ + 8873707993, + 1901016086, + 1901016092, + 1901016098, + 2706132496, + 2706132497, + 2706132498, + 2706132499, + 2706132500, + 2706132501, + 12113277795, + 1901016089, + 1901016095, + 1901016084, + 1901016078, + 2706132491, + 2706132492, + 2706132493, + 2706132494, + 2706132495, + 8873707993 + ], + "geometry": [ + { "lat": 40.7749205, "lon": -73.9665719 }, + { "lat": 40.7749296, "lon": -73.9666132 }, + { "lat": 40.7749484, "lon": -73.9666485 }, + { "lat": 40.7749748, "lon": -73.9666737 }, + { "lat": 40.7750060, "lon": -73.9666863 }, + { "lat": 40.7750386, "lon": -73.9666847 }, + { "lat": 40.7750691, "lon": -73.9666693 }, + { "lat": 40.7750941, "lon": -73.9666416 }, + { "lat": 40.7751109, "lon": -73.9666046 }, + { "lat": 40.7751177, "lon": -73.9665625 }, + { "lat": 40.7751138, "lon": -73.9665197 }, + { "lat": 40.7750996, "lon": -73.9664810 }, + { "lat": 40.7750893, "lon": -73.9664674 }, + { "lat": 40.7750767, "lon": -73.9664505 }, + { "lat": 40.7750475, "lon": -73.9664315 }, + { "lat": 40.7750152, "lon": -73.9664260 }, + { "lat": 40.7749833, "lon": -73.9664346 }, + { "lat": 40.7749553, "lon": -73.9664564 }, + { "lat": 40.7749341, "lon": -73.9664891 }, + { "lat": 40.7749221, "lon": -73.9665290 }, + { "lat": 40.7749205, "lon": -73.9665719 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "no", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 180337407, + "bounds": { + "minlat": 40.7107080, + "minlon": -73.9600912, + "maxlat": 40.7107507, + "maxlon": -73.9600819 + }, + "nodes": [ + 1907726306, + 2999521376, + 4726242988 + ], + "geometry": [ + { "lat": 40.7107080, "lon": -73.9600912 }, + { "lat": 40.7107277, "lon": -73.9600840 }, + { "lat": 40.7107507, "lon": -73.9600819 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 180719506, + "bounds": { + "minlat": 40.8134231, + "minlon": -73.9479470, + "maxlat": 40.8145800, + "maxlon": -73.9451787 + }, + "nodes": [ + 42429538, + 10171599211, + 9150629542, + 42429536 + ], + "geometry": [ + { "lat": 40.8145800, "lon": -73.9479470 }, + { "lat": 40.8145299, "lon": -73.9478246 }, + { "lat": 40.8134738, "lon": -73.9452996 }, + { "lat": 40.8134231, "lon": -73.9451787 } + ], + "tags": { + "highway": "residential", + "name": "West 132nd Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 180719510, + "bounds": { + "minlat": 40.8095866, + "minlon": -73.9460975, + "maxlat": 40.8121726, + "maxlon": -73.9399455 + }, + "nodes": [ + 42439878, + 2141026513, + 8758345327, + 5481907288, + 10172833423, + 3099327945, + 42453253, + 10172833418, + 7004437171, + 42448141 + ], + "geometry": [ + { "lat": 40.8121726, "lon": -73.9460975 }, + { "lat": 40.8121043, "lon": -73.9459364 }, + { "lat": 40.8120551, "lon": -73.9458194 }, + { "lat": 40.8118027, "lon": -73.9452322 }, + { "lat": 40.8110161, "lon": -73.9433515 }, + { "lat": 40.8109749, "lon": -73.9432528 }, + { "lat": 40.8109081, "lon": -73.9430908 }, + { "lat": 40.8108686, "lon": -73.9429965 }, + { "lat": 40.8096319, "lon": -73.9400459 }, + { "lat": 40.8095866, "lon": -73.9399455 } + ], + "tags": { + "highway": "residential", + "name": "West 130th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 180719512, + "bounds": { + "minlat": 40.8083381, + "minlon": -73.9470064, + "maxlat": 40.8109249, + "maxlon": -73.9408517 + }, + "nodes": [ + 42439868, + 2141026524, + 8758345329, + 10170874384, + 3099327970, + 42453251, + 10170874379, + 5481939504, + 7004469481, + 42448979 + ], + "geometry": [ + { "lat": 40.8109249, "lon": -73.9470064 }, + { "lat": 40.8108572, "lon": -73.9468491 }, + { "lat": 40.8108082, "lon": -73.9467364 }, + { "lat": 40.8097606, "lon": -73.9442448 }, + { "lat": 40.8097268, "lon": -73.9441642 }, + { "lat": 40.8096586, "lon": -73.9440006 }, + { "lat": 40.8096276, "lon": -73.9439269 }, + { "lat": 40.8090626, "lon": -73.9425879 }, + { "lat": 40.8083844, "lon": -73.9409594 }, + { "lat": 40.8083381, "lon": -73.9408517 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "West 128th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 180740838, + "bounds": { + "minlat": 40.8183301, + "minlon": -73.9263684, + "maxlat": 40.8192393, + "maxlon": -73.9259459 + }, + "nodes": [ + 42743020, + 9903127454, + 42733567 + ], + "geometry": [ + { "lat": 40.8183301, "lon": -73.9263684 }, + { "lat": 40.8184374, "lon": -73.9263200 }, + { "lat": 40.8192393, "lon": -73.9259459 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Anthony J. Griffin Place", + "name:etymology:wikidata": "Q4772830", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Anthony J Griffin", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 180895255, + "bounds": { + "minlat": 40.7262390, + "minlon": -73.9382344, + "maxlat": 40.7281000, + "maxlon": -73.9379420 + }, + "nodes": [ + 42466856, + 8097303849, + 5891916886, + 9789356985, + 42466853 + ], + "geometry": [ + { "lat": 40.7281000, "lon": -73.9381890 }, + { "lat": 40.7280088, "lon": -73.9382344 }, + { "lat": 40.7263699, "lon": -73.9379594 }, + { "lat": 40.7263210, "lon": -73.9379534 }, + { "lat": 40.7262390, "lon": -73.9379420 } + ], + "tags": { + "highway": "residential", + "name": "Apollo Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 181334353, + "bounds": { + "minlat": 40.8551136, + "minlon": -73.9378009, + "maxlat": 40.8554065, + "maxlon": -73.9369042 + }, + "nodes": [ + 42436301, + 1763608189, + 8718862718, + 1763612255, + 3965020557, + 42427212 + ], + "geometry": [ + { "lat": 40.8554065, "lon": -73.9378009 }, + { "lat": 40.8553918, "lon": -73.9377494 }, + { "lat": 40.8553833, "lon": -73.9377193 }, + { "lat": 40.8553664, "lon": -73.9376583 }, + { "lat": 40.8551336, "lon": -73.9370006 }, + { "lat": 40.8551136, "lon": -73.9369042 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 187th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 181375404, + "bounds": { + "minlat": 40.7242438, + "minlon": -73.9942080, + "maxlat": 40.7246266, + "maxlon": -73.9931340 + }, + "nodes": [ + 1918039901, + 5829779516, + 5829779529, + 1918039898, + 5829779490, + 4202908169 + ], + "geometry": [ + { "lat": 40.7246266, "lon": -73.9942080 }, + { "lat": 40.7246031, "lon": -73.9941425 }, + { "lat": 40.7243944, "lon": -73.9935563 }, + { "lat": 40.7243691, "lon": -73.9934855 }, + { "lat": 40.7243462, "lon": -73.9934220 }, + { "lat": 40.7242438, "lon": -73.9931340 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 181699235, + "bounds": { + "minlat": 40.8515311, + "minlon": -73.9390988, + "maxlat": 40.8523456, + "maxlon": -73.9387617 + }, + "nodes": [ + 42438218, + 9563821019, + 1763597000, + 9563769790 + ], + "geometry": [ + { "lat": 40.8523456, "lon": -73.9387617 }, + { "lat": 40.8522935, "lon": -73.9387806 }, + { "lat": 40.8522371, "lon": -73.9388016 }, + { "lat": 40.8515311, "lon": -73.9390988 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pinehurst Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 181699238, + "bounds": { + "minlat": 40.8521285, + "minlon": -73.9387617, + "maxlat": 40.8523456, + "maxlon": -73.9378214 + }, + "nodes": [ + 42438218, + 9563821017, + 9563795435, + 42427196 + ], + "geometry": [ + { "lat": 40.8523456, "lon": -73.9387617 }, + { "lat": 40.8523280, "lon": -73.9386849 }, + { "lat": 40.8521521, "lon": -73.9379237 }, + { "lat": 40.8521285, "lon": -73.9378214 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 183rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "183rd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 181782253, + "bounds": { + "minlat": 40.7169685, + "minlon": -73.9489846, + "maxlat": 40.7177881, + "maxlon": -73.9403477 + }, + "nodes": [ + 42476509, + 9802943826, + 9802943848, + 9802943829, + 42491205, + 9795355823, + 8610941942, + 5520860778, + 42505939, + 5520860781, + 9795356026, + 42467892, + 9795356024, + 9795355877, + 9795332516, + 42502899, + 9795355878, + 9695771682, + 42491524, + 9695771684, + 9695721716, + 42495847 + ], + "geometry": [ + { "lat": 40.7169685, "lon": -73.9489846 }, + { "lat": 40.7169770, "lon": -73.9488803 }, + { "lat": 40.7170220, "lon": -73.9483308 }, + { "lat": 40.7170271, "lon": -73.9482677 }, + { "lat": 40.7170339, "lon": -73.9481847 }, + { "lat": 40.7170412, "lon": -73.9481100 }, + { "lat": 40.7171836, "lon": -73.9466777 }, + { "lat": 40.7171893, "lon": -73.9466208 }, + { "lat": 40.7171980, "lon": -73.9465330 }, + { "lat": 40.7172056, "lon": -73.9464533 }, + { "lat": 40.7173462, "lon": -73.9449642 }, + { "lat": 40.7173570, "lon": -73.9448500 }, + { "lat": 40.7173664, "lon": -73.9447511 }, + { "lat": 40.7175033, "lon": -73.9433140 }, + { "lat": 40.7175087, "lon": -73.9432575 }, + { "lat": 40.7175170, "lon": -73.9431700 }, + { "lat": 40.7175243, "lon": -73.9430922 }, + { "lat": 40.7176842, "lon": -73.9414127 }, + { "lat": 40.7176970, "lon": -73.9412698 }, + { "lat": 40.7177088, "lon": -73.9411356 }, + { "lat": 40.7177783, "lon": -73.9404474 }, + { "lat": 40.7177881, "lon": -73.9403477 } + ], + "tags": { + "highway": "residential", + "name": "Withers Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 182135969, + "bounds": { + "minlat": 40.8635159, + "minlon": -73.9317811, + "maxlat": 40.8639056, + "maxlon": -73.9314679 + }, + "nodes": [ + 42454893, + 10050985311, + 10050985312, + 42434780 + ], + "geometry": [ + { "lat": 40.8635159, "lon": -73.9317811 }, + { "lat": 40.8636147, "lon": -73.9316671 }, + { "lat": 40.8638213, "lon": -73.9315118 }, + { "lat": 40.8639056, "lon": -73.9314679 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "residential", + "name": "Fort Tryon Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 182690746, + "bounds": { + "minlat": 40.7368368, + "minlon": -73.9350527, + "maxlat": 40.7374945, + "maxlon": -73.9315914 + }, + "nodes": [ + 277385050, + 13049334895, + 277385217, + 9179114954, + 9179114955, + 597294499, + 9179114953, + 9179114957, + 42801787 + ], + "geometry": [ + { "lat": 40.7374945, "lon": -73.9350527 }, + { "lat": 40.7374715, "lon": -73.9349363 }, + { "lat": 40.7373444, "lon": -73.9342951 }, + { "lat": 40.7371708, "lon": -73.9333958 }, + { "lat": 40.7371417, "lon": -73.9332038 }, + { "lat": 40.7371152, "lon": -73.9330306 }, + { "lat": 40.7370802, "lon": -73.9328112 }, + { "lat": 40.7368703, "lon": -73.9317446 }, + { "lat": 40.7368368, "lon": -73.9315914 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 182927756, + "bounds": { + "minlat": 40.8285454, + "minlon": -73.9286366, + "maxlat": 40.8292642, + "maxlon": -73.9274890 + }, + "nodes": [ + 1932829832, + 12163643877, + 595786218, + 595786219 + ], + "geometry": [ + { "lat": 40.8285454, "lon": -73.9274890 }, + { "lat": 40.8291742, "lon": -73.9284955 }, + { "lat": 40.8292130, "lon": -73.9285571 }, + { "lat": 40.8292642, "lon": -73.9286366 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "secondary", + "incline": "up", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 183010767, + "bounds": { + "minlat": 40.7144680, + "minlon": -73.9995913, + "maxlat": 40.7145118, + "maxlon": -73.9987971 + }, + "nodes": [ + 42432238, + 8307637714, + 12281652104, + 11505205639, + 7132389363, + 11505205644, + 11505205645, + 42435435 + ], + "geometry": [ + { "lat": 40.7145118, "lon": -73.9987971 }, + { "lat": 40.7145074, "lon": -73.9988727 }, + { "lat": 40.7144885, "lon": -73.9991953 }, + { "lat": 40.7144694, "lon": -73.9995189 }, + { "lat": 40.7144680, "lon": -73.9995431 }, + { "lat": 40.7144687, "lon": -73.9995596 }, + { "lat": 40.7144721, "lon": -73.9995764 }, + { "lat": 40.7144791, "lon": -73.9995913 } + ], + "tags": { + "alt_name": "Corky Lee Way", + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Mosco Street", + "name:ko": "모스코 스트리트", + "old_name": "Cross Street", + "old_name:1854-1982": "Park Street", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "source": "https://untappedcities.com/2018/05/31/chinatowns-one-block-mosco-street-is-the-last-remnant-of-street-in-five-points/", + "surface": "asphalt", + "wikidata": "Q123270171" + } +}, +{ + "type": "way", + "id": 183028880, + "bounds": { + "minlat": 40.7186620, + "minlon": -73.9463575, + "maxlat": 40.7192090, + "maxlon": -73.9405870 + }, + "nodes": [ + 42476525, + 9937287975, + 8610941939, + 9937287978, + 42467896, + 9703355401, + 8610941936, + 9795332512, + 42502909, + 9935605440, + 9935590161, + 42511030, + 9935590160, + 42511032, + 9695771673, + 42495860 + ], + "geometry": [ + { "lat": 40.7186620, "lon": -73.9463575 }, + { "lat": 40.7186730, "lon": -73.9462405 }, + { "lat": 40.7187691, "lon": -73.9452204 }, + { "lat": 40.7187715, "lon": -73.9451954 }, + { "lat": 40.7187820, "lon": -73.9450840 }, + { "lat": 40.7187925, "lon": -73.9449693 }, + { "lat": 40.7189218, "lon": -73.9435598 }, + { "lat": 40.7189251, "lon": -73.9435173 }, + { "lat": 40.7189324, "lon": -73.9434315 }, + { "lat": 40.7189416, "lon": -73.9433441 }, + { "lat": 40.7190148, "lon": -73.9425500 }, + { "lat": 40.7190220, "lon": -73.9424720 }, + { "lat": 40.7190292, "lon": -73.9423967 }, + { "lat": 40.7191110, "lon": -73.9415390 }, + { "lat": 40.7191990, "lon": -73.9406860 }, + { "lat": 40.7192090, "lon": -73.9405870 } + ], + "tags": { + "highway": "residential", + "name": "Richardson Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 183103091, + "bounds": { + "minlat": 40.7008622, + "minlon": -73.9947715, + "maxlat": 40.7009651, + "maxlon": -73.9945693 + }, + "nodes": [ + 451018391, + 598054695 + ], + "geometry": [ + { "lat": 40.7008622, "lon": -73.9947715 }, + { "lat": 40.7009651, "lon": -73.9945693 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "none|none|none;Cadman Plaza West", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxheight": "12'9\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_base_2": "Gowanus", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 183103093, + "bounds": { + "minlat": 40.7007242, + "minlon": -73.9951562, + "maxlat": 40.7008956, + "maxlon": -73.9947981 + }, + "nodes": [ + 451019471, + 451019469 + ], + "geometry": [ + { "lat": 40.7008956, "lon": -73.9947981 }, + { "lat": 40.7007242, "lon": -73.9951562 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-2", + "lit": "yes", + "maxheight": "12'4\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_base_2": "Gowanus", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy", + "tiger:reviewed": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 183103103, + "bounds": { + "minlat": 40.7004518, + "minlon": -73.9955046, + "maxlat": 40.7008622, + "maxlon": -73.9947715 + }, + "nodes": [ + 451020319, + 11685272864, + 11685272865, + 451020322, + 11685272863, + 11685272862, + 451018391 + ], + "geometry": [ + { "lat": 40.7004518, "lon": -73.9955046 }, + { "lat": 40.7005168, "lon": -73.9954083 }, + { "lat": 40.7005971, "lon": -73.9952750 }, + { "lat": 40.7006560, "lon": -73.9951676 }, + { "lat": 40.7007285, "lon": -73.9950326 }, + { "lat": 40.7007967, "lon": -73.9948980 }, + { "lat": 40.7008622, "lon": -73.9947715 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "lit": "yes", + "maxheight": "12'9\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_base_2": "Gowanus", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy", + "tiger:reviewed": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 183103121, + "bounds": { + "minlat": 40.8013453, + "minlon": -73.9161161, + "maxlat": 40.8020375, + "maxlon": -73.9145159 + }, + "nodes": [ + 42752931, + 9156979758, + 13071708896 + ], + "geometry": [ + { "lat": 40.8020375, "lon": -73.9161161 }, + { "lat": 40.8019894, "lon": -73.9160363 }, + { "lat": 40.8013453, "lon": -73.9145159 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "15 mph", + "name": "East 133rd Street", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "133rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 183103697, + "bounds": { + "minlat": 40.7899969, + "minlon": -73.9258576, + "maxlat": 40.7915439, + "maxlon": -73.9244535 + }, + "nodes": [ + 8123418696, + 9153832707, + 277482206, + 277482207, + 277482208, + 1242159811 + ], + "geometry": [ + { "lat": 40.7915439, "lon": -73.9244535 }, + { "lat": 40.7905965, "lon": -73.9252885 }, + { "lat": 40.7904222, "lon": -73.9254448 }, + { "lat": 40.7902682, "lon": -73.9255885 }, + { "lat": 40.7901584, "lon": -73.9256964 }, + { "lat": 40.7899969, "lon": -73.9258576 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "lanes": "2", + "lcn": "yes", + "name": "Central Road", + "parking:lane:both": "no_parking", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 183103730, + "bounds": { + "minlat": 40.7928528, + "minlon": -73.9230503, + "maxlat": 40.7931998, + "maxlon": -73.9226229 + }, + "nodes": [ + 277482094, + 9153832714, + 9153832713, + 9153832712, + 9153832715, + 9153832716, + 11769248219, + 4159726632, + 9153856217, + 277482096, + 7738506172 + ], + "geometry": [ + { "lat": 40.7931998, "lon": -73.9230503 }, + { "lat": 40.7931543, "lon": -73.9230343 }, + { "lat": 40.7931203, "lon": -73.9230183 }, + { "lat": 40.7930747, "lon": -73.9229891 }, + { "lat": 40.7930327, "lon": -73.9229519 }, + { "lat": 40.7929905, "lon": -73.9229076 }, + { "lat": 40.7929659, "lon": -73.9228700 }, + { "lat": 40.7929599, "lon": -73.9228609 }, + { "lat": 40.7929330, "lon": -73.9228071 }, + { "lat": 40.7929056, "lon": -73.9227411 }, + { "lat": 40.7928528, "lon": -73.9226229 } + ], + "tags": { + "cycleway:right": "no", + "highway": "tertiary", + "lcn": "yes", + "oneway": "yes", + "oneway:bicycle": "no" + } +}, +{ + "type": "way", + "id": 183930955, + "bounds": { + "minlat": 40.7881873, + "minlon": -74.0007269, + "maxlat": 40.7885818, + "maxlon": -74.0004323 + }, + "nodes": [ + 1943592026, + 103856521 + ], + "geometry": [ + { "lat": 40.7881873, "lon": -74.0007269 }, + { "lat": 40.7885818, "lon": -74.0004323 } + ], + "tags": { + "highway": "primary", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 184697443, + "bounds": { + "minlat": 40.8563086, + "minlon": -73.9663454, + "maxlat": 40.8565988, + "maxlon": -73.9655176 + }, + "nodes": [ + 1951974344, + 1952059774 + ], + "geometry": [ + { "lat": 40.8563086, "lon": -73.9655176 }, + { "lat": 40.8565988, "lon": -73.9663454 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "no", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184698346, + "bounds": { + "minlat": 40.8560370, + "minlon": -73.9665460, + "maxlat": 40.8562532, + "maxlon": -73.9664158 + }, + "nodes": [ + 1951979439, + 1951979455 + ], + "geometry": [ + { "lat": 40.8560370, "lon": -73.9665460 }, + { "lat": 40.8562532, "lon": -73.9664158 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184698347, + "bounds": { + "minlat": 40.8560018, + "minlon": -73.9666138, + "maxlat": 40.8563220, + "maxlon": -73.9656922 + }, + "nodes": [ + 1951979447, + 1951979455, + 2565327522, + 1951979450, + 1951979436 + ], + "geometry": [ + { "lat": 40.8563220, "lon": -73.9666138 }, + { "lat": 40.8562532, "lon": -73.9664158 }, + { "lat": 40.8561769, "lon": -73.9661962 }, + { "lat": 40.8560241, "lon": -73.9657564 }, + { "lat": 40.8560018, "lon": -73.9656922 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184702866, + "bounds": { + "minlat": 40.8602084, + "minlon": -73.9708732, + "maxlat": 40.8603028, + "maxlon": -73.9708066 + }, + "nodes": [ + 1952055196, + 13525924943, + 1952055197 + ], + "geometry": [ + { "lat": 40.8603028, "lon": -73.9708732 }, + { "lat": 40.8603004, "lon": -73.9708715 }, + { "lat": 40.8602084, "lon": -73.9708066 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184702867, + "bounds": { + "minlat": 40.8609793, + "minlon": -73.9693373, + "maxlat": 40.8611293, + "maxlon": -73.9692200 + }, + "nodes": [ + 1952055214, + 7921620741 + ], + "geometry": [ + { "lat": 40.8611293, "lon": -73.9693373 }, + { "lat": 40.8609793, "lon": -73.9692200 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "no", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184702868, + "bounds": { + "minlat": 40.8604606, + "minlon": -73.9708486, + "maxlat": 40.8611293, + "maxlon": -73.9693373 + }, + "nodes": [ + 7377058306, + 1952061944, + 1952061934, + 1952061919, + 1952063175, + 1952063173, + 1952063171, + 1952063166, + 13161361656, + 1952055214 + ], + "geometry": [ + { "lat": 40.8604606, "lon": -73.9708486 }, + { "lat": 40.8605028, "lon": -73.9707624 }, + { "lat": 40.8605978, "lon": -73.9705569 }, + { "lat": 40.8606931, "lon": -73.9703543 }, + { "lat": 40.8607815, "lon": -73.9701576 }, + { "lat": 40.8608696, "lon": -73.9699592 }, + { "lat": 40.8609631, "lon": -73.9697483 }, + { "lat": 40.8610455, "lon": -73.9695452 }, + { "lat": 40.8610908, "lon": -73.9694329 }, + { "lat": 40.8611293, "lon": -73.9693373 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184702869, + "bounds": { + "minlat": 40.8604753, + "minlon": -73.9712163, + "maxlat": 40.8607340, + "maxlon": -73.9710008 + }, + "nodes": [ + 1952055193, + 1952055212, + 1952055206, + 1952055217 + ], + "geometry": [ + { "lat": 40.8607340, "lon": -73.9712163 }, + { "lat": 40.8606846, "lon": -73.9711686 }, + { "lat": 40.8605618, "lon": -73.9710680 }, + { "lat": 40.8604753, "lon": -73.9710008 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 184702870, + "bounds": { + "minlat": 40.8607340, + "minlon": -73.9716760, + "maxlat": 40.8610030, + "maxlon": -73.9712163 + }, + "nodes": [ + 103318364, + 1952055205, + 1952055208, + 1952065237, + 1952055203, + 1952055193 + ], + "geometry": [ + { "lat": 40.8610030, "lon": -73.9716760 }, + { "lat": 40.8609807, "lon": -73.9716247 }, + { "lat": 40.8609371, "lon": -73.9715481 }, + { "lat": 40.8608758, "lon": -73.9714473 }, + { "lat": 40.8608373, "lon": -73.9713842 }, + { "lat": 40.8607340, "lon": -73.9712163 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184702871, + "bounds": { + "minlat": 40.8607340, + "minlon": -73.9712163, + "maxlat": 40.8614228, + "maxlon": -73.9693373 + }, + "nodes": [ + 1952055214, + 1952055191, + 13161361655, + 1952055220, + 13161361633, + 1952055201, + 1952055213, + 1952055218, + 1952063157, + 1952063160, + 1952063167, + 1952061918, + 1952061936, + 1952061932, + 13161361663, + 1952055192, + 1952055193 + ], + "geometry": [ + { "lat": 40.8611293, "lon": -73.9693373 }, + { "lat": 40.8612351, "lon": -73.9694207 }, + { "lat": 40.8614118, "lon": -73.9695667 }, + { "lat": 40.8614200, "lon": -73.9695909 }, + { "lat": 40.8614228, "lon": -73.9696213 }, + { "lat": 40.8614213, "lon": -73.9696855 }, + { "lat": 40.8614088, "lon": -73.9697282 }, + { "lat": 40.8613809, "lon": -73.9698043 }, + { "lat": 40.8612909, "lon": -73.9700049 }, + { "lat": 40.8612003, "lon": -73.9702174 }, + { "lat": 40.8611078, "lon": -73.9704197 }, + { "lat": 40.8610188, "lon": -73.9706197 }, + { "lat": 40.8609301, "lon": -73.9708272 }, + { "lat": 40.8608381, "lon": -73.9710306 }, + { "lat": 40.8607987, "lon": -73.9711224 }, + { "lat": 40.8607647, "lon": -73.9711872 }, + { "lat": 40.8607340, "lon": -73.9712163 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184703242, + "bounds": { + "minlat": 40.8605028, + "minlon": -73.9710306, + "maxlat": 40.8608381, + "maxlon": -73.9707624 + }, + "nodes": [ + 1952061944, + 1952061932 + ], + "geometry": [ + { "lat": 40.8605028, "lon": -73.9707624 }, + { "lat": 40.8608381, "lon": -73.9710306 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184703243, + "bounds": { + "minlat": 40.8606931, + "minlon": -73.9706197, + "maxlat": 40.8610188, + "maxlon": -73.9703543 + }, + "nodes": [ + 1952061919, + 1952061918 + ], + "geometry": [ + { "lat": 40.8606931, "lon": -73.9703543 }, + { "lat": 40.8610188, "lon": -73.9706197 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184703244, + "bounds": { + "minlat": 40.8605978, + "minlon": -73.9708272, + "maxlat": 40.8609301, + "maxlon": -73.9705569 + }, + "nodes": [ + 1952061934, + 1952061936 + ], + "geometry": [ + { "lat": 40.8605978, "lon": -73.9705569 }, + { "lat": 40.8609301, "lon": -73.9708272 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184703402, + "bounds": { + "minlat": 40.8609631, + "minlon": -73.9700049, + "maxlat": 40.8612909, + "maxlon": -73.9697483 + }, + "nodes": [ + 1952063171, + 1952063157 + ], + "geometry": [ + { "lat": 40.8609631, "lon": -73.9697483 }, + { "lat": 40.8612909, "lon": -73.9700049 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184703403, + "bounds": { + "minlat": 40.8607815, + "minlon": -73.9704197, + "maxlat": 40.8611078, + "maxlon": -73.9701576 + }, + "nodes": [ + 1952063175, + 1952063167 + ], + "geometry": [ + { "lat": 40.8607815, "lon": -73.9701576 }, + { "lat": 40.8611078, "lon": -73.9704197 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184703404, + "bounds": { + "minlat": 40.8610455, + "minlon": -73.9698043, + "maxlat": 40.8613809, + "maxlon": -73.9695452 + }, + "nodes": [ + 1952063166, + 1952055218 + ], + "geometry": [ + { "lat": 40.8610455, "lon": -73.9695452 }, + { "lat": 40.8613809, "lon": -73.9698043 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 184703405, + "bounds": { + "minlat": 40.8608696, + "minlon": -73.9702174, + "maxlat": 40.8612003, + "maxlon": -73.9699592 + }, + "nodes": [ + 1952063173, + 1952063160 + ], + "geometry": [ + { "lat": 40.8608696, "lon": -73.9699592 }, + { "lat": 40.8612003, "lon": -73.9702174 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 184703448, + "bounds": { + "minlat": 40.8603783, + "minlon": -73.9717144, + "maxlat": 40.8608758, + "maxlon": -73.9710008 + }, + "nodes": [ + 1952065237, + 1952065239, + 1952065244, + 1952065240, + 1952065236, + 1952065241, + 1952065238, + 1952065243, + 1952065242, + 1952055217 + ], + "geometry": [ + { "lat": 40.8608758, "lon": -73.9714473 }, + { "lat": 40.8608546, "lon": -73.9714687 }, + { "lat": 40.8607322, "lon": -73.9716017 }, + { "lat": 40.8606308, "lon": -73.9717144 }, + { "lat": 40.8605385, "lon": -73.9715736 }, + { "lat": 40.8604148, "lon": -73.9713576 }, + { "lat": 40.8603783, "lon": -73.9712678 }, + { "lat": 40.8603965, "lon": -73.9711806 }, + { "lat": 40.8604529, "lon": -73.9710476 }, + { "lat": 40.8604753, "lon": -73.9710008 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 185225619, + "bounds": { + "minlat": 40.8495019, + "minlon": -73.9706031, + "maxlat": 40.8495036, + "maxlon": -73.9703557 + }, + "nodes": [ + 1957898027, + 1957898012, + 1957897990 + ], + "geometry": [ + { "lat": 40.8495019, "lon": -73.9703557 }, + { "lat": 40.8495036, "lon": -73.9704835 }, + { "lat": 40.8495020, "lon": -73.9706031 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "source": "local knowledge", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 185225620, + "bounds": { + "minlat": 40.8485515, + "minlon": -73.9708811, + "maxlat": 40.8488231, + "maxlon": -73.9707929 + }, + "nodes": [ + 1957898046, + 1957898032, + 1957898021 + ], + "geometry": [ + { "lat": 40.8485515, "lon": -73.9708811 }, + { "lat": 40.8487080, "lon": -73.9708272 }, + { "lat": 40.8488231, "lon": -73.9707929 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "local knowledge", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 185225621, + "bounds": { + "minlat": 40.8488231, + "minlon": -73.9707929, + "maxlat": 40.8495020, + "maxlon": -73.9706031 + }, + "nodes": [ + 1957897990, + 1957897984, + 1957898060, + 1957897992, + 1957898041, + 1957898021 + ], + "geometry": [ + { "lat": 40.8495020, "lon": -73.9706031 }, + { "lat": 40.8494066, "lon": -73.9706125 }, + { "lat": 40.8492971, "lon": -73.9706286 }, + { "lat": 40.8492382, "lon": -73.9706447 }, + { "lat": 40.8489792, "lon": -73.9707215 }, + { "lat": 40.8488231, "lon": -73.9707929 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "local knowledge", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 185225622, + "bounds": { + "minlat": 40.8488231, + "minlon": -73.9712066, + "maxlat": 40.8497576, + "maxlon": -73.9705977 + }, + "nodes": [ + 1957897990, + 1957897994, + 1957897996, + 1957897988, + 1957898010, + 1957898024, + 1957897991, + 1957898042, + 1957898017, + 1957898051, + 1957898028, + 1957898055, + 1957898054, + 1957898011, + 1957898021 + ], + "geometry": [ + { "lat": 40.8495020, "lon": -73.9706031 }, + { "lat": 40.8495872, "lon": -73.9705977 }, + { "lat": 40.8496825, "lon": -73.9706299 }, + { "lat": 40.8497576, "lon": -73.9707136 }, + { "lat": 40.8497333, "lon": -73.9708257 }, + { "lat": 40.8496927, "lon": -73.9709088 }, + { "lat": 40.8495608, "lon": -73.9709705 }, + { "lat": 40.8493701, "lon": -73.9710617 }, + { "lat": 40.8491226, "lon": -73.9711744 }, + { "lat": 40.8490691, "lon": -73.9711968 }, + { "lat": 40.8490110, "lon": -73.9712066 }, + { "lat": 40.8489313, "lon": -73.9710898 }, + { "lat": 40.8488982, "lon": -73.9709835 }, + { "lat": 40.8488510, "lon": -73.9709060 }, + { "lat": 40.8488231, "lon": -73.9707929 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "local knowledge", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 185225623, + "bounds": { + "minlat": 40.8487670, + "minlon": -73.9707929, + "maxlat": 40.8488231, + "maxlon": -73.9705064 + }, + "nodes": [ + 1957898021, + 1957897982, + 1957898057 + ], + "geometry": [ + { "lat": 40.8488231, "lon": -73.9707929 }, + { "lat": 40.8488016, "lon": -73.9706789 }, + { "lat": 40.8487670, "lon": -73.9705064 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "source": "local knowledge", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 186202420, + "bounds": { + "minlat": 40.7675992, + "minlon": -73.9812930, + "maxlat": 40.7679285, + "maxlon": -73.9807850 + }, + "nodes": [ + 4347550074, + 1792535236, + 1792535228, + 9170790604, + 9170790591, + 1825841669, + 11225191374 + ], + "geometry": [ + { "lat": 40.7675992, "lon": -73.9807850 }, + { "lat": 40.7678115, "lon": -73.9811483 }, + { "lat": 40.7678404, "lon": -73.9812078 }, + { "lat": 40.7678571, "lon": -73.9812350 }, + { "lat": 40.7678774, "lon": -73.9812604 }, + { "lat": 40.7679049, "lon": -73.9812806 }, + { "lat": 40.7679285, "lon": -73.9812930 } + ], + "tags": { + "alt_name": "West 59th Street", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park South", + "name_1": "West 59 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 188290057, + "bounds": { + "minlat": 40.7806719, + "minlon": -73.9838929, + "maxlat": 40.7837916, + "maxlon": -73.9764438 + }, + "nodes": [ + 42438859, + 8318991974, + 12850047598, + 9916170494, + 9611179674, + 42438862, + 9611179673, + 8709392032, + 1061531695, + 42428648, + 10039514106, + 8831879421, + 9492556537, + 42431015, + 9492556566, + 9916170493, + 10039870521, + 42438867 + ], + "geometry": [ + { "lat": 40.7806719, "lon": -73.9764438 }, + { "lat": 40.7807053, "lon": -73.9765701 }, + { "lat": 40.7807910, "lon": -73.9767736 }, + { "lat": 40.7817806, "lon": -73.9791227 }, + { "lat": 40.7817941, "lon": -73.9791584 }, + { "lat": 40.7818426, "lon": -73.9792740 }, + { "lat": 40.7818980, "lon": -73.9794056 }, + { "lat": 40.7824058, "lon": -73.9806155 }, + { "lat": 40.7824512, "lon": -73.9807232 }, + { "lat": 40.7825317, "lon": -73.9809157 }, + { "lat": 40.7825777, "lon": -73.9810146 }, + { "lat": 40.7829776, "lon": -73.9819665 }, + { "lat": 40.7829929, "lon": -73.9820043 }, + { "lat": 40.7830455, "lon": -73.9821238 }, + { "lat": 40.7830978, "lon": -73.9822482 }, + { "lat": 40.7837253, "lon": -73.9837357 }, + { "lat": 40.7837462, "lon": -73.9837852 }, + { "lat": 40.7837916, "lon": -73.9838929 } + ], + "tags": { + "alt_name": "West 77 Street", + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 77th Street", + "name:ru": "Западная 77-я стрит", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 188366388, + "bounds": { + "minlat": 40.7286492, + "minlon": -73.9762552, + "maxlat": 40.7288499, + "maxlon": -73.9761669 + }, + "nodes": [ + 1989931124, + 4298757079, + 9907956892, + 1989931103 + ], + "geometry": [ + { "lat": 40.7286492, "lon": -73.9761669 }, + { "lat": 40.7287844, "lon": -73.9762245 }, + { "lat": 40.7288171, "lon": -73.9762399 }, + { "lat": 40.7288499, "lon": -73.9762552 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 188366389, + "bounds": { + "minlat": 40.7288087, + "minlon": -73.9754528, + "maxlat": 40.7290570, + "maxlon": -73.9754271 + }, + "nodes": [ + 1989931122, + 4298778310, + 1989931109 + ], + "geometry": [ + { "lat": 40.7290570, "lon": -73.9754528 }, + { "lat": 40.7289604, "lon": -73.9754441 }, + { "lat": 40.7288087, "lon": -73.9754271 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 188366390, + "bounds": { + "minlat": 40.7295361, + "minlon": -73.9751024, + "maxlat": 40.7295900, + "maxlon": -73.9748590 + }, + "nodes": [ + 1989931117, + 4298778312, + 1989931105 + ], + "geometry": [ + { "lat": 40.7295900, "lon": -73.9748590 }, + { "lat": 40.7295619, "lon": -73.9750068 }, + { "lat": 40.7295361, "lon": -73.9751024 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 188366391, + "bounds": { + "minlat": 40.7300024, + "minlon": -73.9745883, + "maxlat": 40.7302384, + "maxlon": -73.9745591 + }, + "nodes": [ + 1989931098, + 4298778320, + 1989931107 + ], + "geometry": [ + { "lat": 40.7302384, "lon": -73.9745883 }, + { "lat": 40.7301527, "lon": -73.9745791 }, + { "lat": 40.7300024, "lon": -73.9745591 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 188494945, + "bounds": { + "minlat": 40.7265947, + "minlon": -73.9737377, + "maxlat": 40.7268409, + "maxlon": -73.9729940 + }, + "nodes": [ + 1991212132, + 1991212118, + 1991212110, + 1991212114 + ], + "geometry": [ + { "lat": 40.7268409, "lon": -73.9737377 }, + { "lat": 40.7267775, "lon": -73.9735841 }, + { "lat": 40.7265947, "lon": -73.9731487 }, + { "lat": 40.7266057, "lon": -73.9729940 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 188559800, + "bounds": { + "minlat": 40.7187939, + "minlon": -73.9956895, + "maxlat": 40.7213148, + "maxlon": -73.9947014 + }, + "nodes": [ + 42452056, + 7641718013, + 8231909735, + 42432181, + 8231909734, + 8231909739, + 42430030, + 8231909738, + 8231909743, + 42442230 + ], + "geometry": [ + { "lat": 40.7187939, "lon": -73.9956895 }, + { "lat": 40.7188550, "lon": -73.9956650 }, + { "lat": 40.7198023, "lon": -73.9952859 }, + { "lat": 40.7198711, "lon": -73.9952571 }, + { "lat": 40.7199399, "lon": -73.9952319 }, + { "lat": 40.7205556, "lon": -73.9949955 }, + { "lat": 40.7206316, "lon": -73.9949663 }, + { "lat": 40.7207117, "lon": -73.9949353 }, + { "lat": 40.7212675, "lon": -73.9947202 }, + { "lat": 40.7213148, "lon": -73.9947014 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Elizabeth Street", + "name:ar": "شارع ايليزابيت", + "name:en": "Elizabeth Street", + "name:ko": "엘리자베스 스트리트", + "name:zh": "伊利沙白街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5363575", + "wikipedia": "en:Elizabeth Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 188722435, + "bounds": { + "minlat": 40.7612233, + "minlon": -73.9999570, + "maxlat": 40.7614590, + "maxlon": -73.9997871 + }, + "nodes": [ + 1993431132, + 5542715081, + 1993431127 + ], + "geometry": [ + { "lat": 40.7612233, "lon": -73.9999570 }, + { "lat": 40.7613340, "lon": -73.9998768 }, + { "lat": 40.7614590, "lon": -73.9997871 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 188722436, + "bounds": { + "minlat": 40.7611409, + "minlon": -74.0001188, + "maxlat": 40.7612661, + "maxlon": -73.9999526 + }, + "nodes": [ + 1993431098, + 1993431126, + 1993431090, + 1993431100, + 4695216190, + 4695216191, + 1993431093, + 1993431121, + 1993431118, + 1993431125, + 1993431131, + 1993431130, + 1993431094, + 1993431113, + 4695216192, + 1993431132, + 1993431129, + 1993431092, + 1993431089, + 1993431098 + ], + "geometry": [ + { "lat": 40.7612661, "lon": -74.0000388 }, + { "lat": 40.7612622, "lon": -74.0000648 }, + { "lat": 40.7612523, "lon": -74.0000879 }, + { "lat": 40.7612374, "lon": -74.0001057 }, + { "lat": 40.7612190, "lon": -74.0001163 }, + { "lat": 40.7611990, "lon": -74.0001188 }, + { "lat": 40.7611794, "lon": -74.0001129 }, + { "lat": 40.7611612, "lon": -74.0000979 }, + { "lat": 40.7611478, "lon": -74.0000758 }, + { "lat": 40.7611409, "lon": -74.0000489 }, + { "lat": 40.7611412, "lon": -74.0000206 }, + { "lat": 40.7611486, "lon": -73.9999940 }, + { "lat": 40.7611625, "lon": -73.9999722 }, + { "lat": 40.7611810, "lon": -73.9999579 }, + { "lat": 40.7612021, "lon": -73.9999526 }, + { "lat": 40.7612233, "lon": -73.9999570 }, + { "lat": 40.7612411, "lon": -73.9999694 }, + { "lat": 40.7612550, "lon": -73.9999886 }, + { "lat": 40.7612636, "lon": -74.0000125 }, + { "lat": 40.7612661, "lon": -74.0000388 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 188880055, + "bounds": { + "minlat": 40.8005657, + "minlon": -74.0023602, + "maxlat": 40.8008548, + "maxlon": -74.0019776 + }, + "nodes": [ + 1995128559, + 1995128558, + 1995128551, + 1995128562, + 1995128549, + 1995128555, + 1995128550, + 2751423536, + 1995128544, + 1995128560, + 1995128548, + 1995128545, + 1995128543, + 1995128554, + 1995128542, + 1995128556, + 1995128553, + 1995128557, + 1995128547, + 1995128546, + 1995128559 + ], + "geometry": [ + { "lat": 40.8008073, "lon": -74.0023121 }, + { "lat": 40.8007685, "lon": -74.0023451 }, + { "lat": 40.8007256, "lon": -74.0023602 }, + { "lat": 40.8006812, "lon": -74.0023576 }, + { "lat": 40.8006395, "lon": -74.0023374 }, + { "lat": 40.8006043, "lon": -74.0023016 }, + { "lat": 40.8005789, "lon": -74.0022535 }, + { "lat": 40.8005657, "lon": -74.0021975 }, + { "lat": 40.8005658, "lon": -74.0021388 }, + { "lat": 40.8005804, "lon": -74.0020800 }, + { "lat": 40.8006084, "lon": -74.0020303 }, + { "lat": 40.8006469, "lon": -74.0019949 }, + { "lat": 40.8006911, "lon": -74.0019776 }, + { "lat": 40.8007372, "lon": -74.0019794 }, + { "lat": 40.8007806, "lon": -74.0020001 }, + { "lat": 40.8008169, "lon": -74.0020377 }, + { "lat": 40.8008425, "lon": -74.0020883 }, + { "lat": 40.8008548, "lon": -74.0021470 }, + { "lat": 40.8008527, "lon": -74.0022079 }, + { "lat": 40.8008363, "lon": -74.0022648 }, + { "lat": 40.8008073, "lon": -74.0023121 } + ], + "tags": { + "highway": "residential", + "junction": "roundabout", + "name": "Park Drive" + } +}, +{ + "type": "way", + "id": 189674762, + "bounds": { + "minlat": 40.8388839, + "minlon": -73.9814112, + "maxlat": 40.8390291, + "maxlon": -73.9812715 + }, + "nodes": [ + 2395474001, + 2002608873, + 2002608878 + ], + "geometry": [ + { "lat": 40.8388839, "lon": -73.9814112 }, + { "lat": 40.8389701, "lon": -73.9813262 }, + { "lat": 40.8390291, "lon": -73.9812715 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "no", + "source": "locak knowledge" + } +}, +{ + "type": "way", + "id": 189674763, + "bounds": { + "minlat": 40.8390609, + "minlon": -73.9813299, + "maxlat": 40.8395132, + "maxlon": -73.9809084 + }, + "nodes": [ + 2002608879, + 2002608875, + 2002608880 + ], + "geometry": [ + { "lat": 40.8395132, "lon": -73.9809084 }, + { "lat": 40.8394530, "lon": -73.9809610 }, + { "lat": 40.8390609, "lon": -73.9813299 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 189674764, + "bounds": { + "minlat": 40.8390609, + "minlon": -73.9816742, + "maxlat": 40.8392368, + "maxlon": -73.9813299 + }, + "nodes": [ + 2395474002, + 2002608884, + 2002608880 + ], + "geometry": [ + { "lat": 40.8392368, "lon": -73.9816742 }, + { "lat": 40.8391775, "lon": -73.9815491 }, + { "lat": 40.8390609, "lon": -73.9813299 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 189674765, + "bounds": { + "minlat": 40.8389757, + "minlon": -73.9813299, + "maxlat": 40.8394151, + "maxlon": -73.9807313 + }, + "nodes": [ + 2002608880, + 2002608878, + 2002608882, + 2002608876, + 2395474003 + ], + "geometry": [ + { "lat": 40.8390609, "lon": -73.9813299 }, + { "lat": 40.8390291, "lon": -73.9812715 }, + { "lat": 40.8389757, "lon": -73.9811652 }, + { "lat": 40.8393622, "lon": -73.9807795 }, + { "lat": 40.8394151, "lon": -73.9807313 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 190550014, + "bounds": { + "minlat": 40.7168982, + "minlon": -73.9878823, + "maxlat": 40.7174100, + "maxlon": -73.9861940 + }, + "nodes": [ + 42432094, + 6214824209, + 8310245553, + 42432095, + 13247154119, + 8960350842, + 42432097 + ], + "geometry": [ + { "lat": 40.7168982, "lon": -73.9861940 }, + { "lat": 40.7169104, "lon": -73.9862371 }, + { "lat": 40.7169187, "lon": -73.9862642 }, + { "lat": 40.7171547, "lon": -73.9870412 }, + { "lat": 40.7171742, "lon": -73.9871051 }, + { "lat": 40.7173904, "lon": -73.9878156 }, + { "lat": 40.7174100, "lon": -73.9878823 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 191304176, + "bounds": { + "minlat": 40.7016114, + "minlon": -73.9910855, + "maxlat": 40.7016904, + "maxlon": -73.9902315 + }, + "nodes": [ + 11673031541, + 451019502, + 11673036942, + 11679066096 + ], + "geometry": [ + { "lat": 40.7016114, "lon": -73.9902315 }, + { "lat": 40.7016623, "lon": -73.9907669 }, + { "lat": 40.7016786, "lon": -73.9909255 }, + { "lat": 40.7016904, "lon": -73.9910855 } + ], + "tags": { + "bicycle": "no", + "destination": "Verrazano Narrows Bridge", + "destination:ref": "I 278 West", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxheight": "12'4\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 191841608, + "bounds": { + "minlat": 40.8756754, + "minlon": -73.9135137, + "maxlat": 40.8759356, + "maxlon": -73.9133353 + }, + "nodes": [ + 1545097337, + 2024033385, + 2024033383, + 2024033389, + 2024033382 + ], + "geometry": [ + { "lat": 40.8759356, "lon": -73.9135137 }, + { "lat": 40.8758200, "lon": -73.9133723 }, + { "lat": 40.8758056, "lon": -73.9133638 }, + { "lat": 40.8756980, "lon": -73.9133353 }, + { "lat": 40.8756754, "lon": -73.9133402 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 191841610, + "bounds": { + "minlat": 40.8754549, + "minlon": -73.9134480, + "maxlat": 40.8756754, + "maxlon": -73.9133402 + }, + "nodes": [ + 2024033382, + 2797849715 + ], + "geometry": [ + { "lat": 40.8756754, "lon": -73.9133402 }, + { "lat": 40.8754549, "lon": -73.9134480 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 192268940, + "bounds": { + "minlat": 40.8499742, + "minlon": -73.9065401, + "maxlat": 40.8501110, + "maxlon": -73.9058552 + }, + "nodes": [ + 2028327998, + 12739101050, + 12739101051, + 2028327974 + ], + "geometry": [ + { "lat": 40.8499742, "lon": -73.9058552 }, + { "lat": 40.8499917, "lon": -73.9059433 }, + { "lat": 40.8500898, "lon": -73.9064338 }, + { "lat": 40.8501110, "lon": -73.9065401 } + ], + "tags": { + "highway": "residential", + "name": "Echo Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Echo", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 192268943, + "bounds": { + "minlat": 40.8496818, + "minlon": -73.9066435, + "maxlat": 40.8501001, + "maxlon": -73.9062201 + }, + "nodes": [ + 2028327967, + 4635132293 + ], + "geometry": [ + { "lat": 40.8496818, "lon": -73.9062201 }, + { "lat": 40.8501001, "lon": -73.9066435 } + ], + "tags": { + "cutting": "yes", + "foot": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 192268948, + "bounds": { + "minlat": 40.8503855, + "minlon": -73.9070489, + "maxlat": 40.8504472, + "maxlon": -73.9070040 + }, + "nodes": [ + 9920174006, + 2028361257 + ], + "geometry": [ + { "lat": 40.8504472, "lon": -73.9070489 }, + { "lat": 40.8503855, "lon": -73.9070040 } + ], + "tags": { + "foot": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 192270903, + "bounds": { + "minlat": 40.8503289, + "minlon": -73.9074056, + "maxlat": 40.8507091, + "maxlon": -73.9070603 + }, + "nodes": [ + 2028328020, + 2028361269, + 9920174010, + 2028361251 + ], + "geometry": [ + { "lat": 40.8507091, "lon": -73.9074056 }, + { "lat": 40.8506155, "lon": -73.9073462 }, + { "lat": 40.8503803, "lon": -73.9071100 }, + { "lat": 40.8503289, "lon": -73.9070603 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 192277005, + "bounds": { + "minlat": 40.8493446, + "minlon": -73.9105883, + "maxlat": 40.8501896, + "maxlon": -73.9063578 + }, + "nodes": [ + 42736323, + 13037331561, + 13037331587, + 42733818, + 13037331591, + 13037331583, + 42735766, + 12832579769, + 7782708869, + 6224280773, + 9920174014, + 2028327981 + ], + "geometry": [ + { "lat": 40.8501896, "lon": -73.9105883 }, + { "lat": 40.8501553, "lon": -73.9104191 }, + { "lat": 40.8499174, "lon": -73.9092643 }, + { "lat": 40.8498990, "lon": -73.9091750 }, + { "lat": 40.8498819, "lon": -73.9090885 }, + { "lat": 40.8496887, "lon": -73.9081125 }, + { "lat": 40.8496690, "lon": -73.9080130 }, + { "lat": 40.8496554, "lon": -73.9079446 }, + { "lat": 40.8494494, "lon": -73.9069093 }, + { "lat": 40.8493791, "lon": -73.9065144 }, + { "lat": 40.8493661, "lon": -73.9064488 }, + { "lat": 40.8493446, "lon": -73.9063578 } + ], + "tags": { + "highway": "residential", + "name": "East 177th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "177th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 192277007, + "bounds": { + "minlat": 40.8479080, + "minlon": -73.9065867, + "maxlat": 40.8485139, + "maxlon": -73.9035650 + }, + "nodes": [ + 42757916, + 11298926847, + 10099341558, + 8571799220, + 11492469782, + 42747315, + 11298926843, + 11298926844, + 2028383638 + ], + "geometry": [ + { "lat": 40.8479080, "lon": -73.9035650 }, + { "lat": 40.8479250, "lon": -73.9036496 }, + { "lat": 40.8481494, "lon": -73.9047696 }, + { "lat": 40.8483799, "lon": -73.9059197 }, + { "lat": 40.8483910, "lon": -73.9059753 }, + { "lat": 40.8484066, "lon": -73.9060528 }, + { "lat": 40.8484235, "lon": -73.9061367 }, + { "lat": 40.8484930, "lon": -73.9064826 }, + { "lat": 40.8485139, "lon": -73.9065867 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Mount Hope Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Hope", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 193048148, + "bounds": { + "minlat": 40.8691500, + "minlon": -73.9221450, + "maxlat": 40.8698770, + "maxlon": -73.9208970 + }, + "nodes": [ + 42431230, + 9561561663, + 1764670897, + 9561229733, + 42458728 + ], + "geometry": [ + { "lat": 40.8691500, "lon": -73.9221450 }, + { "lat": 40.8691905, "lon": -73.9220558 }, + { "lat": 40.8694288, "lon": -73.9215356 }, + { "lat": 40.8698233, "lon": -73.9209736 }, + { "lat": 40.8698770, "lon": -73.9208970 } + ], + "tags": { + "alt_name": "Tommy Dowd Way", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "foot": "yes", + "highway": "tertiary", + "inline_skates": "yes", + "maxspeed": "20 mph", + "name": "Seaman Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Seaman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 193048149, + "bounds": { + "minlat": 40.8677070, + "minlon": -73.9217178, + "maxlat": 40.8685090, + "maxlon": -73.9212171 + }, + "nodes": [ + 42431234, + 8952453943, + 8952453932, + 42429222 + ], + "geometry": [ + { "lat": 40.8685090, "lon": -73.9217178 }, + { "lat": 40.8684555, "lon": -73.9216842 }, + { "lat": 40.8678061, "lon": -73.9212790 }, + { "lat": 40.8677070, "lon": -73.9212171 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West 207th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 193604873, + "bounds": { + "minlat": 40.8717808, + "minlon": -73.9090134, + "maxlat": 40.8730920, + "maxlon": -73.9080741 + }, + "nodes": [ + 2041169515, + 2041169508, + 3994237778, + 2041169495, + 2041169484, + 2041169478, + 2041169476, + 2041169468, + 2041169464, + 2041169460, + 2041169458 + ], + "geometry": [ + { "lat": 40.8730920, "lon": -73.9090134 }, + { "lat": 40.8728805, "lon": -73.9088785 }, + { "lat": 40.8728282, "lon": -73.9088496 }, + { "lat": 40.8725869, "lon": -73.9086811 }, + { "lat": 40.8723580, "lon": -73.9085067 }, + { "lat": 40.8722585, "lon": -73.9083751 }, + { "lat": 40.8722309, "lon": -73.9083649 }, + { "lat": 40.8720719, "lon": -73.9083060 }, + { "lat": 40.8720195, "lon": -73.9082920 }, + { "lat": 40.8718268, "lon": -73.9082402 }, + { "lat": 40.8717808, "lon": -73.9080741 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 193604874, + "bounds": { + "minlat": 40.8723057, + "minlon": -73.9082203, + "maxlat": 40.8732749, + "maxlon": -73.9067754 + }, + "nodes": [ + 5487852136, + 5487852141, + 5487852139, + 5487852137, + 5487852144, + 2041169480, + 2041169488, + 2041169499, + 2041169509, + 2041169526 + ], + "geometry": [ + { "lat": 40.8725719, "lon": -73.9082203 }, + { "lat": 40.8725186, "lon": -73.9080210 }, + { "lat": 40.8724606, "lon": -73.9078068 }, + { "lat": 40.8723998, "lon": -73.9075812 }, + { "lat": 40.8723488, "lon": -73.9073919 }, + { "lat": 40.8723057, "lon": -73.9072320 }, + { "lat": 40.8724234, "lon": -73.9071765 }, + { "lat": 40.8726753, "lon": -73.9070579 }, + { "lat": 40.8729567, "lon": -73.9069253 }, + { "lat": 40.8732749, "lon": -73.9067754 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 193604875, + "bounds": { + "minlat": 40.8721142, + "minlon": -73.9083649, + "maxlat": 40.8722309, + "maxlon": -73.9079359 + }, + "nodes": [ + 2041169476, + 2041169472 + ], + "geometry": [ + { "lat": 40.8722309, "lon": -73.9083649 }, + { "lat": 40.8721142, "lon": -73.9079359 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 193604876, + "bounds": { + "minlat": 40.8719410, + "minlon": -73.9082920, + "maxlat": 40.8720195, + "maxlon": -73.9079869 + }, + "nodes": [ + 2041169464, + 2041169462 + ], + "geometry": [ + { "lat": 40.8720195, "lon": -73.9082920 }, + { "lat": 40.8719410, "lon": -73.9079869 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 193604877, + "bounds": { + "minlat": 40.8730920, + "minlon": -73.9092569, + "maxlat": 40.8736260, + "maxlon": -73.9087523 + }, + "nodes": [ + 2041169515, + 2041169517, + 2041169532, + 2041169542, + 2041169550, + 2041169536, + 2041169528 + ], + "geometry": [ + { "lat": 40.8730920, "lon": -73.9090134 }, + { "lat": 40.8731470, "lon": -73.9089495 }, + { "lat": 40.8733309, "lon": -73.9088529 }, + { "lat": 40.8735825, "lon": -73.9087523 }, + { "lat": 40.8736260, "lon": -73.9088128 }, + { "lat": 40.8734400, "lon": -73.9090664 }, + { "lat": 40.8732744, "lon": -73.9092569 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 193604878, + "bounds": { + "minlat": 40.8730920, + "minlon": -73.9095695, + "maxlat": 40.8736965, + "maxlon": -73.9090134 + }, + "nodes": [ + 2041169552, + 2302043684, + 2302043682, + 2302043680, + 2041169544, + 2302043678, + 2302043676, + 2041169540, + 2041169534, + 2041169528, + 2041169522, + 7693557775, + 2041169515 + ], + "geometry": [ + { "lat": 40.8736965, "lon": -73.9095316 }, + { "lat": 40.8736761, "lon": -73.9095551 }, + { "lat": 40.8736560, "lon": -73.9095658 }, + { "lat": 40.8736357, "lon": -73.9095693 }, + { "lat": 40.8736144, "lon": -73.9095695 }, + { "lat": 40.8735842, "lon": -73.9095622 }, + { "lat": 40.8735571, "lon": -73.9095527 }, + { "lat": 40.8735298, "lon": -73.9095349 }, + { "lat": 40.8734129, "lon": -73.9094263 }, + { "lat": 40.8732744, "lon": -73.9092569 }, + { "lat": 40.8732300, "lon": -73.9092026 }, + { "lat": 40.8731846, "lon": -73.9091404 }, + { "lat": 40.8730920, "lon": -73.9090134 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 194572581, + "bounds": { + "minlat": 40.7584023, + "minlon": -73.9976162, + "maxlat": 40.7587259, + "maxlon": -73.9973105 + }, + "nodes": [ + 11149329294, + 1806444937, + 1806444939, + 1806444938, + 1806444940, + 1806444933, + 1806444935, + 427804116, + 427804123, + 427804126, + 427804132, + 427804140, + 427804143, + 427804149, + 427804157, + 427804160, + 2050767464, + 593920840 + ], + "geometry": [ + { "lat": 40.7584023, "lon": -73.9975429 }, + { "lat": 40.7584247, "lon": -73.9975624 }, + { "lat": 40.7584497, "lon": -73.9975819 }, + { "lat": 40.7584711, "lon": -73.9975948 }, + { "lat": 40.7584922, "lon": -73.9976030 }, + { "lat": 40.7585140, "lon": -73.9976098 }, + { "lat": 40.7585405, "lon": -73.9976160 }, + { "lat": 40.7585650, "lon": -73.9976162 }, + { "lat": 40.7585882, "lon": -73.9976098 }, + { "lat": 40.7586118, "lon": -73.9976002 }, + { "lat": 40.7586343, "lon": -73.9975858 }, + { "lat": 40.7586579, "lon": -73.9975685 }, + { "lat": 40.7586790, "lon": -73.9975427 }, + { "lat": 40.7586950, "lon": -73.9975113 }, + { "lat": 40.7587097, "lon": -73.9974685 }, + { "lat": 40.7587188, "lon": -73.9974308 }, + { "lat": 40.7587239, "lon": -73.9973726 }, + { "lat": 40.7587259, "lon": -73.9973105 } + ], + "tags": { + "access": "no", + "bus": "yes", + "destination": "West 40th Street", + "highway": "service", + "motor_vehicle": "customers", + "name": "PABT Ramp", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 194920158, + "bounds": { + "minlat": 40.7624770, + "minlon": -73.9946061, + "maxlat": 40.7658780, + "maxlon": -73.9865357 + }, + "nodes": [ + 42430704, + 10111368918, + 5481839792, + 595269440, + 10168028978, + 42440170, + 10168028982, + 4782404427, + 4782404425, + 10171089675, + 42440163, + 10171089674, + 2682336534, + 5481883912, + 2682336531, + 12749546680 + ], + "geometry": [ + { "lat": 40.7658780, "lon": -73.9946061 }, + { "lat": 40.7658310, "lon": -73.9944918 }, + { "lat": 40.7655635, "lon": -73.9938415 }, + { "lat": 40.7650452, "lon": -73.9926381 }, + { "lat": 40.7647456, "lon": -73.9919261 }, + { "lat": 40.7646863, "lon": -73.9917852 }, + { "lat": 40.7646382, "lon": -73.9916712 }, + { "lat": 40.7646015, "lon": -73.9915837 }, + { "lat": 40.7636086, "lon": -73.9892245 }, + { "lat": 40.7635481, "lon": -73.9890806 }, + { "lat": 40.7634901, "lon": -73.9889429 }, + { "lat": 40.7634364, "lon": -73.9888155 }, + { "lat": 40.7629366, "lon": -73.9876276 }, + { "lat": 40.7628676, "lon": -73.9874635 }, + { "lat": 40.7627923, "lon": -73.9872850 }, + { "lat": 40.7624770, "lon": -73.9865357 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 50th Street", + "name:ru": "Западная 50-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194920159, + "bounds": { + "minlat": 40.7673726, + "minlon": -73.9962236, + "maxlat": 40.7677778, + "maxlon": -73.9959295 + }, + "nodes": [ + 12153915856, + 13099951758 + ], + "geometry": [ + { "lat": 40.7673726, "lon": -73.9962236 }, + { "lat": 40.7677778, "lon": -73.9959295 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 194923759, + "bounds": { + "minlat": 40.7117314, + "minlon": -74.0080524, + "maxlat": 40.7119042, + "maxlon": -74.0078441 + }, + "nodes": [ + 4143875757, + 10290401139, + 10290401135, + 272195277 + ], + "geometry": [ + { "lat": 40.7117314, "lon": -74.0078441 }, + { "lat": 40.7117740, "lon": -74.0079014 }, + { "lat": 40.7118444, "lon": -74.0079908 }, + { "lat": 40.7119042, "lon": -74.0080524 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923760, + "bounds": { + "minlat": 40.7177265, + "minlon": -74.0149597, + "maxlat": 40.7181289, + "maxlon": -74.0140548 + }, + "nodes": [ + 42431630, + 11458237362, + 5812713552, + 10612369349, + 10612369351, + 42431635 + ], + "geometry": [ + { "lat": 40.7177265, "lon": -74.0140548 }, + { "lat": 40.7177635, "lon": -74.0141356 }, + { "lat": 40.7180975, "lon": -74.0148650 }, + { "lat": 40.7181113, "lon": -74.0148971 }, + { "lat": 40.7181216, "lon": -74.0149260 }, + { "lat": 40.7181289, "lon": -74.0149597 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923761, + "bounds": { + "minlat": 40.7156490, + "minlon": -73.9789246, + "maxlat": 40.7159570, + "maxlon": -73.9779170 + }, + "nodes": [ + 42425100, + 4300992087, + 42429819, + 7225137650, + 4300994889, + 42429814 + ], + "geometry": [ + { "lat": 40.7156490, "lon": -73.9779170 }, + { "lat": 40.7156811, "lon": -73.9780221 }, + { "lat": 40.7156979, "lon": -73.9780769 }, + { "lat": 40.7158623, "lon": -73.9786147 }, + { "lat": 40.7159354, "lon": -73.9788540 }, + { "lat": 40.7159570, "lon": -73.9789246 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 194923762, + "bounds": { + "minlat": 40.7245958, + "minlon": -73.9751696, + "maxlat": 40.7248848, + "maxlon": -73.9745044 + }, + "nodes": [ + 42430942, + 4161569114, + 12179582421, + 274342024 + ], + "geometry": [ + { "lat": 40.7248848, "lon": -73.9751696 }, + { "lat": 40.7248352, "lon": -73.9750628 }, + { "lat": 40.7248100, "lon": -73.9750090 }, + { "lat": 40.7245958, "lon": -73.9745044 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 10th Street", + "name:ru": "Восточная 10-я стрит", + "name_1": "East 10 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 194923763, + "bounds": { + "minlat": 40.7248848, + "minlon": -73.9775411, + "maxlat": 40.7258818, + "maxlon": -73.9751696 + }, + "nodes": [ + 42430938, + 8309479408, + 9525422856, + 12179582413, + 42421828, + 12179582418, + 8309479446, + 42430942 + ], + "geometry": [ + { "lat": 40.7258818, "lon": -73.9775411 }, + { "lat": 40.7258425, "lon": -73.9774318 }, + { "lat": 40.7258263, "lon": -73.9773818 }, + { "lat": 40.7258120, "lon": -73.9773483 }, + { "lat": 40.7253340, "lon": -73.9762137 }, + { "lat": 40.7249648, "lon": -73.9753393 }, + { "lat": 40.7249279, "lon": -73.9752604 }, + { "lat": 40.7248848, "lon": -73.9751696 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 10th Street", + "name:ru": "Восточная 10-я стрит", + "name_1": "East 10 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 194923764, + "bounds": { + "minlat": 40.7286492, + "minlon": -73.9803596, + "maxlat": 40.7304142, + "maxlon": -73.9761669 + }, + "nodes": [ + 42439006, + 4298757036, + 9907956893, + 9907956888, + 4298757049, + 42439001, + 4298757069, + 4806876058, + 1989931124 + ], + "geometry": [ + { "lat": 40.7304142, "lon": -73.9803596 }, + { "lat": 40.7303775, "lon": -73.9802639 }, + { "lat": 40.7302737, "lon": -73.9799937 }, + { "lat": 40.7296139, "lon": -73.9784368 }, + { "lat": 40.7294835, "lon": -73.9781301 }, + { "lat": 40.7294404, "lon": -73.9780286 }, + { "lat": 40.7294052, "lon": -73.9779459 }, + { "lat": 40.7292294, "lon": -73.9775321 }, + { "lat": 40.7286492, "lon": -73.9761669 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923765, + "bounds": { + "minlat": 40.7353725, + "minlon": -73.9751359, + "maxlat": 40.7354563, + "maxlon": -73.9747878 + }, + "nodes": [ + 5137747688, + 9913605334, + 9913605333, + 3686051661, + 9141016322, + 9141016321, + 9141016320, + 42448714 + ], + "geometry": [ + { "lat": 40.7353742, "lon": -73.9747878 }, + { "lat": 40.7353725, "lon": -73.9748590 }, + { "lat": 40.7353742, "lon": -73.9748948 }, + { "lat": 40.7353775, "lon": -73.9749292 }, + { "lat": 40.7353831, "lon": -73.9749572 }, + { "lat": 40.7353932, "lon": -73.9749905 }, + { "lat": 40.7354032, "lon": -73.9750163 }, + { "lat": 40.7354563, "lon": -73.9751359 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "no", + "lanes": "4", + "lit": "yes", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "name_1": "East 23 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923766, + "bounds": { + "minlat": 40.7203948, + "minlon": -73.9810026, + "maxlat": 40.7206832, + "maxlon": -73.9800520 + }, + "nodes": [ + 592509222, + 9181587096 + ], + "geometry": [ + { "lat": 40.7203948, "lon": -73.9800520 }, + { "lat": 40.7206832, "lon": -73.9810026 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 194923769, + "bounds": { + "minlat": 40.7135321, + "minlon": -73.9795320, + "maxlat": 40.7138456, + "maxlon": -73.9784925 + }, + "nodes": [ + 42437786, + 11591859792, + 9907942851 + ], + "geometry": [ + { "lat": 40.7138456, "lon": -73.9795320 }, + { "lat": 40.7137954, "lon": -73.9793675 }, + { "lat": 40.7135321, "lon": -73.9784925 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923770, + "bounds": { + "minlat": 40.7166726, + "minlon": -73.9891494, + "maxlat": 40.7167118, + "maxlon": -73.9890408 + }, + "nodes": [ + 42452084, + 5041369237 + ], + "geometry": [ + { "lat": 40.7167118, "lon": -73.9891494 }, + { "lat": 40.7166726, "lon": -73.9890408 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923776, + "bounds": { + "minlat": 40.7147340, + "minlon": -74.0031947, + "maxlat": 40.7155918, + "maxlon": -74.0030354 + }, + "nodes": [ + 42445466, + 12198027567, + 11503466095, + 1253070826, + 9898100732, + 10583167619, + 12198027568, + 4561384502, + 12198027569, + 1253070530 + ], + "geometry": [ + { "lat": 40.7155918, "lon": -74.0030354 }, + { "lat": 40.7155648, "lon": -74.0030421 }, + { "lat": 40.7155395, "lon": -74.0030465 }, + { "lat": 40.7154934, "lon": -74.0030546 }, + { "lat": 40.7148766, "lon": -74.0031586 }, + { "lat": 40.7148451, "lon": -74.0031645 }, + { "lat": 40.7148145, "lon": -74.0031707 }, + { "lat": 40.7147865, "lon": -74.0031776 }, + { "lat": 40.7147595, "lon": -74.0031859 }, + { "lat": 40.7147340, "lon": -74.0031947 } + ], + "tags": { + "alt_name": "Federal Plaza", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 194923778, + "bounds": { + "minlat": 40.7092417, + "minlon": -74.0019810, + "maxlat": 40.7094916, + "maxlon": -74.0016570 + }, + "nodes": [ + 42422283, + 4885904498, + 10583318294, + 12300929901 + ], + "geometry": [ + { "lat": 40.7094916, "lon": -74.0016570 }, + { "lat": 40.7094289, "lon": -74.0017349 }, + { "lat": 40.7093738, "lon": -74.0018086 }, + { "lat": 40.7092417, "lon": -74.0019810 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "parking:left:restriction": "no_parking", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left;through|through;right", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923786, + "bounds": { + "minlat": 40.7216242, + "minlon": -73.9971193, + "maxlat": 40.7222994, + "maxlon": -73.9954604 + }, + "nodes": [ + 42442247, + 8231877113, + 8231877110, + 5159433792, + 8231877107, + 8231927619, + 42432302 + ], + "geometry": [ + { "lat": 40.7222994, "lon": -73.9971193 }, + { "lat": 40.7222568, "lon": -73.9970159 }, + { "lat": 40.7219793, "lon": -73.9963317 }, + { "lat": 40.7219524, "lon": -73.9962656 }, + { "lat": 40.7219299, "lon": -73.9962104 }, + { "lat": 40.7216521, "lon": -73.9955302 }, + { "lat": 40.7216242, "lon": -73.9954604 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923789, + "bounds": { + "minlat": 40.7252865, + "minlon": -74.0100977, + "maxlat": 40.7256883, + "maxlon": -74.0099949 + }, + "nodes": [ + 11148599483, + 12162542940, + 3316533532, + 4142105821, + 4142105820, + 12162542942, + 12162542943, + 42440850 + ], + "geometry": [ + { "lat": 40.7256883, "lon": -74.0099949 }, + { "lat": 40.7254544, "lon": -74.0100330 }, + { "lat": 40.7254085, "lon": -74.0100405 }, + { "lat": 40.7253678, "lon": -74.0100474 }, + { "lat": 40.7253517, "lon": -74.0100528 }, + { "lat": 40.7253368, "lon": -74.0100581 }, + { "lat": 40.7253252, "lon": -74.0100660 }, + { "lat": 40.7252865, "lon": -74.0100977 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923790, + "bounds": { + "minlat": 40.7263793, + "minlon": -74.0098428, + "maxlat": 40.7289826, + "maxlon": -74.0093445 + }, + "nodes": [ + 42448568, + 8307641897, + 11148599482 + ], + "geometry": [ + { "lat": 40.7289826, "lon": -74.0093445 }, + { "lat": 40.7289205, "lon": -74.0093549 }, + { "lat": 40.7263793, "lon": -74.0098428 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923791, + "bounds": { + "minlat": 40.7408488, + "minlon": -74.0054299, + "maxlat": 40.7409804, + "maxlon": -74.0051364 + }, + "nodes": [ + 42436439, + 8262308702, + 4557517554 + ], + "geometry": [ + { "lat": 40.7408488, "lon": -74.0051364 }, + { "lat": 40.7408987, "lon": -74.0052484 }, + { "lat": 40.7409804, "lon": -74.0054299 } + ], + "tags": { + "bus": "yes", + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "lit": "yes", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923792, + "bounds": { + "minlat": 40.7428340, + "minlon": -74.0081686, + "maxlat": 40.7430286, + "maxlon": -74.0077050 + }, + "nodes": [ + 42445766, + 3874650238, + 12098102322 + ], + "geometry": [ + { "lat": 40.7428340, "lon": -74.0077050 }, + { "lat": 40.7428868, "lon": -74.0078382 }, + { "lat": 40.7430286, "lon": -74.0081686 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 15th Street", + "name:ru": "Западная 15-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 194923794, + "bounds": { + "minlat": 40.7446460, + "minlon": -74.0080237, + "maxlat": 40.7453430, + "maxlon": -74.0063850 + }, + "nodes": [ + 3874653362, + 13680980815, + 2671667952, + 10168486356, + 42429664 + ], + "geometry": [ + { "lat": 40.7453430, "lon": -74.0080237 }, + { "lat": 40.7450640, "lon": -74.0073703 }, + { "lat": 40.7447926, "lon": -74.0067347 }, + { "lat": 40.7447023, "lon": -74.0065199 }, + { "lat": 40.7446460, "lon": -74.0063850 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 18th Street", + "name:ru": "Западная 18-я стрит", + "name_1": "West 18 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 194923795, + "bounds": { + "minlat": 40.7385111, + "minlon": -74.0035806, + "maxlat": 40.7434761, + "maxlon": -73.9918061 + }, + "nodes": [ + 42429663, + 5545401595, + 8310246374, + 10172816361, + 6211484420, + 42429662, + 10172816364, + 8429213038, + 42429661, + 8429213035, + 9683231662, + 42429659, + 9683231659, + 5481850675, + 7761301142, + 42429657 + ], + "geometry": [ + { "lat": 40.7434761, "lon": -74.0035806 }, + { "lat": 40.7434201, "lon": -74.0034486 }, + { "lat": 40.7434066, "lon": -74.0034165 }, + { "lat": 40.7423205, "lon": -74.0008378 }, + { "lat": 40.7423051, "lon": -74.0008012 }, + { "lat": 40.7422581, "lon": -74.0006951 }, + { "lat": 40.7422038, "lon": -74.0005672 }, + { "lat": 40.7411135, "lon": -73.9979976 }, + { "lat": 40.7410560, "lon": -73.9978620 }, + { "lat": 40.7409968, "lon": -73.9977211 }, + { "lat": 40.7399186, "lon": -73.9951573 }, + { "lat": 40.7398600, "lon": -73.9950180 }, + { "lat": 40.7398082, "lon": -73.9948947 }, + { "lat": 40.7393715, "lon": -73.9938551 }, + { "lat": 40.7385618, "lon": -73.9919260 }, + { "lat": 40.7385111, "lon": -73.9918061 } + ], + "tags": { + "alt_name": "West 18 Street", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 18th Street", + "name:ru": "Западная 18-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 194923796, + "bounds": { + "minlat": 40.7290253, + "minlon": -74.0105601, + "maxlat": 40.7291043, + "maxlon": -74.0099129 + }, + "nodes": [ + 12162502084, + 4629488489, + 12162502083 + ], + "geometry": [ + { "lat": 40.7290253, "lon": -74.0099129 }, + { "lat": 40.7290892, "lon": -74.0104267 }, + { "lat": 40.7291043, "lon": -74.0105601 } + ], + "tags": { + "bicycle:lanes": "||designated|", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no|yes", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left;through||right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 194923798, + "bounds": { + "minlat": 40.7151561, + "minlon": -74.0025779, + "maxlat": 40.7153816, + "maxlon": -74.0021038 + }, + "nodes": [ + 10583167614, + 12198027579, + 4878851614, + 42427300 + ], + "geometry": [ + { "lat": 40.7153816, "lon": -74.0025779 }, + { "lat": 40.7152462, "lon": -74.0022985 }, + { "lat": 40.7152201, "lon": -74.0022427 }, + { "lat": 40.7151561, "lon": -74.0021038 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Worth Street", + "name:etymology:wikidata": "Q3568734", + "name:ko": "워스 스트리트", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through", + "wikidata": "Q1318800", + "wikipedia": "en:Worth Street" + } +}, +{ + "type": "way", + "id": 194923799, + "bounds": { + "minlat": 40.7483332, + "minlon": -74.0074916, + "maxlat": 40.7484639, + "maxlon": -74.0073547 + }, + "nodes": [ + 9143569908, + 12161232234, + 246651648 + ], + "geometry": [ + { "lat": 40.7484639, "lon": -74.0073547 }, + { "lat": 40.7484130, "lon": -74.0074030 }, + { "lat": 40.7483332, "lon": -74.0074916 } + ], + "tags": { + "change": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923800, + "bounds": { + "minlat": 40.7434700, + "minlon": -74.0072380, + "maxlat": 40.7440000, + "maxlon": -74.0068551 + }, + "nodes": [ + 42449341, + 8261123428, + 8261123510, + 8261123509, + 8261123440 + ], + "geometry": [ + { "lat": 40.7434700, "lon": -74.0072380 }, + { "lat": 40.7435355, "lon": -74.0071905 }, + { "lat": 40.7438616, "lon": -74.0069551 }, + { "lat": 40.7439827, "lon": -74.0068676 }, + { "lat": 40.7440000, "lon": -74.0068551 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923801, + "bounds": { + "minlat": 40.7453904, + "minlon": -74.0081345, + "maxlat": 40.7461009, + "maxlon": -74.0080044 + }, + "nodes": [ + 11027912164, + 4872623863 + ], + "geometry": [ + { "lat": 40.7453904, "lon": -74.0081345 }, + { "lat": 40.7461009, "lon": -74.0080044 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "hgv": "designated", + "highway": "trunk", + "lane_markings": "yes", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923802, + "bounds": { + "minlat": 40.7431598, + "minlon": -74.0085446, + "maxlat": 40.7439767, + "maxlon": -74.0083937 + }, + "nodes": [ + 42445769, + 11272689116, + 12161232322, + 246580982 + ], + "geometry": [ + { "lat": 40.7431598, "lon": -74.0085446 }, + { "lat": 40.7433149, "lon": -74.0085153 }, + { "lat": 40.7438876, "lon": -74.0084087 }, + { "lat": 40.7439767, "lon": -74.0083937 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923803, + "bounds": { + "minlat": 40.7502621, + "minlon": -74.0083005, + "maxlat": 40.7508277, + "maxlon": -74.0081725 + }, + "nodes": [ + 42427494, + 12161224667, + 12161224666, + 9143569891, + 246579537, + 12161224665, + 9143569890, + 12161224664, + 373912347, + 1334569028 + ], + "geometry": [ + { "lat": 40.7502621, "lon": -74.0083005 }, + { "lat": 40.7502868, "lon": -74.0083000 }, + { "lat": 40.7503417, "lon": -74.0082991 }, + { "lat": 40.7503947, "lon": -74.0082945 }, + { "lat": 40.7504658, "lon": -74.0082860 }, + { "lat": 40.7505251, "lon": -74.0082745 }, + { "lat": 40.7505950, "lon": -74.0082568 }, + { "lat": 40.7506623, "lon": -74.0082342 }, + { "lat": 40.7507284, "lon": -74.0082101 }, + { "lat": 40.7508277, "lon": -74.0081725 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 194923805, + "bounds": { + "minlat": 40.7498800, + "minlon": -74.0084887, + "maxlat": 40.7503356, + "maxlon": -74.0084378 + }, + "nodes": [ + 246580797, + 12161224661, + 246579746, + 246651360, + 12161224663, + 373910553 + ], + "geometry": [ + { "lat": 40.7503356, "lon": -74.0084887 }, + { "lat": 40.7501681, "lon": -74.0084855 }, + { "lat": 40.7500894, "lon": -74.0084782 }, + { "lat": 40.7500262, "lon": -74.0084689 }, + { "lat": 40.7499477, "lon": -74.0084542 }, + { "lat": 40.7498800, "lon": -74.0084378 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 194923807, + "bounds": { + "minlat": 40.7387960, + "minlon": -73.9771480, + "maxlat": 40.7398373, + "maxlon": -73.9763904 + }, + "nodes": [ + 42429918, + 5007384481, + 13650297898, + 4298961520, + 4298961522, + 9470272149 + ], + "geometry": [ + { "lat": 40.7387960, "lon": -73.9771480 }, + { "lat": 40.7388621, "lon": -73.9770996 }, + { "lat": 40.7393183, "lon": -73.9767669 }, + { "lat": 40.7393594, "lon": -73.9767369 }, + { "lat": 40.7394684, "lon": -73.9766574 }, + { "lat": 40.7398373, "lon": -73.9763904 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 194923808, + "bounds": { + "minlat": 40.7356057, + "minlon": -73.9794530, + "maxlat": 40.7360313, + "maxlon": -73.9791465 + }, + "nodes": [ + 42451787, + 3686061898, + 12293285194 + ], + "geometry": [ + { "lat": 40.7356057, "lon": -73.9794530 }, + { "lat": 40.7356594, "lon": -73.9794120 }, + { "lat": 40.7360313, "lon": -73.9791465 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 194923810, + "bounds": { + "minlat": 40.7262500, + "minlon": -74.0037300, + "maxlat": 40.7277347, + "maxlon": -74.0031249 + }, + "nodes": [ + 42430160, + 8307641855, + 8231934392, + 42430164, + 8231934391, + 5135896922, + 12256296052, + 5151708181, + 42430167, + 5151708184 + ], + "geometry": [ + { "lat": 40.7262500, "lon": -74.0037300 }, + { "lat": 40.7263161, "lon": -74.0037034 }, + { "lat": 40.7268873, "lon": -74.0034735 }, + { "lat": 40.7269580, "lon": -74.0034450 }, + { "lat": 40.7270299, "lon": -74.0034155 }, + { "lat": 40.7271533, "lon": -74.0033648 }, + { "lat": 40.7273336, "lon": -74.0032907 }, + { "lat": 40.7276061, "lon": -74.0031788 }, + { "lat": 40.7276640, "lon": -74.0031550 }, + { "lat": 40.7277347, "lon": -74.0031249 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 194923811, + "bounds": { + "minlat": 40.7397428, + "minlon": -74.0024948, + "maxlat": 40.7400610, + "maxlon": -74.0022723 + }, + "nodes": [ + 42435596, + 8310246333, + 9097308661 + ], + "geometry": [ + { "lat": 40.7397428, "lon": -74.0024948 }, + { "lat": 40.7398369, "lon": -74.0024243 }, + { "lat": 40.7400610, "lon": -74.0022723 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 194923812, + "bounds": { + "minlat": 40.7425395, + "minlon": -74.0042461, + "maxlat": 40.7434761, + "maxlon": -74.0035806 + }, + "nodes": [ + 42429663, + 8310246377, + 8262308814, + 42439280, + 8262308815, + 4555581031, + 3564892571 + ], + "geometry": [ + { "lat": 40.7434761, "lon": -74.0035806 }, + { "lat": 40.7434120, "lon": -74.0036259 }, + { "lat": 40.7429411, "lon": -74.0039582 }, + { "lat": 40.7428829, "lon": -74.0039992 }, + { "lat": 40.7428203, "lon": -74.0040452 }, + { "lat": 40.7426700, "lon": -74.0041555 }, + { "lat": 40.7425395, "lon": -74.0042461 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 194926839, + "bounds": { + "minlat": 40.7371681, + "minlon": -73.9802923, + "maxlat": 40.7376333, + "maxlon": -73.9791876 + }, + "nodes": [ + 4015192893, + 9971262455 + ], + "geometry": [ + { "lat": 40.7376333, "lon": -73.9802923 }, + { "lat": 40.7371681, "lon": -73.9791876 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:backward": "1", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194926840, + "bounds": { + "minlat": 40.7431778, + "minlon": -73.9720697, + "maxlat": 40.7438669, + "maxlon": -73.9716376 + }, + "nodes": [ + 406048768, + 9141034892, + 4290991591, + 42445392 + ], + "geometry": [ + { "lat": 40.7438669, "lon": -73.9716376 }, + { "lat": 40.7435245, "lon": -73.9718637 }, + { "lat": 40.7432922, "lon": -73.9720086 }, + { "lat": 40.7431778, "lon": -73.9720697 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 194926841, + "bounds": { + "minlat": 40.7359893, + "minlon": -73.9748050, + "maxlat": 40.7381466, + "maxlon": -73.9736517 + }, + "nodes": [ + 589100267, + 42457858, + 42457867, + 42457890, + 9141029083, + 42457895, + 42450761, + 42457896, + 42457898, + 9141029084, + 42457900, + 9141029085, + 6948896628, + 9141029098, + 42422509 + ], + "geometry": [ + { "lat": 40.7359893, "lon": -73.9748050 }, + { "lat": 40.7360909, "lon": -73.9747964 }, + { "lat": 40.7362240, "lon": -73.9747811 }, + { "lat": 40.7363318, "lon": -73.9747629 }, + { "lat": 40.7364311, "lon": -73.9747420 }, + { "lat": 40.7365456, "lon": -73.9747077 }, + { "lat": 40.7366486, "lon": -73.9746680 }, + { "lat": 40.7367649, "lon": -73.9746150 }, + { "lat": 40.7368589, "lon": -73.9745683 }, + { "lat": 40.7369472, "lon": -73.9745224 }, + { "lat": 40.7370450, "lon": -73.9744604 }, + { "lat": 40.7372204, "lon": -73.9743255 }, + { "lat": 40.7374032, "lon": -73.9741723 }, + { "lat": 40.7379600, "lon": -73.9737632 }, + { "lat": 40.7381466, "lon": -73.9736517 } + ], + "tags": { + "bicycle": "no", + "cycleway:right": "no", + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxheight": "12'1\"", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "FDR Drive Service Road East;Fdr Drive Service Road East", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 194926842, + "bounds": { + "minlat": 40.7399483, + "minlon": -73.9727291, + "maxlat": 40.7403717, + "maxlon": -73.9726357 + }, + "nodes": [ + 42457940, + 9141029106, + 9141029107, + 9141029105, + 9913607189, + 8918574033 + ], + "geometry": [ + { "lat": 40.7399483, "lon": -73.9727291 }, + { "lat": 40.7400192, "lon": -73.9727106 }, + { "lat": 40.7400850, "lon": -73.9726997 }, + { "lat": 40.7401469, "lon": -73.9726919 }, + { "lat": 40.7402183, "lon": -73.9726762 }, + { "lat": 40.7403717, "lon": -73.9726357 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "FDR Drive Service Road East;Fdr Drive Service Road East", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 194926843, + "bounds": { + "minlat": 40.7551246, + "minlon": -74.0036228, + "maxlat": 40.7556016, + "maxlon": -74.0024796 + }, + "nodes": [ + 42430629, + 8261122118, + 593915295 + ], + "geometry": [ + { "lat": 40.7551246, "lon": -74.0024796 }, + { "lat": 40.7551920, "lon": -74.0026391 }, + { "lat": 40.7556016, "lon": -74.0036228 } + ], + "tags": { + "access": "permissive", + "description": "NYPD closed street and is using for parking", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "name_1": "West 33 Street", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 194926845, + "bounds": { + "minlat": 40.7569758, + "minlon": -74.0050368, + "maxlat": 40.7570691, + "maxlon": -74.0048129 + }, + "nodes": [ + 42437678, + 10858288590 + ], + "geometry": [ + { "lat": 40.7569758, "lon": -74.0048129 }, + { "lat": 40.7570691, "lon": -74.0050368 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "surface": "concrete", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 194926846, + "bounds": { + "minlat": 40.7579117, + "minlon": -73.9921385, + "maxlat": 40.7591038, + "maxlon": -73.9892961 + }, + "nodes": [ + 5849918504, + 10168088473, + 6353650680, + 8441992773, + 11591860829, + 10168047529, + 42445011 + ], + "geometry": [ + { "lat": 40.7579117, "lon": -73.9892961 }, + { "lat": 40.7579745, "lon": -73.9894470 }, + { "lat": 40.7582739, "lon": -73.9901667 }, + { "lat": 40.7584993, "lon": -73.9907030 }, + { "lat": 40.7585269, "lon": -73.9907685 }, + { "lat": 40.7590542, "lon": -73.9920184 }, + { "lat": 40.7591038, "lon": -73.9921385 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "unclassified", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 194926847, + "bounds": { + "minlat": 40.7591038, + "minlon": -73.9943459, + "maxlat": 40.7600450, + "maxlon": -73.9921385 + }, + "nodes": [ + 42445011, + 10168047533, + 9510751089 + ], + "geometry": [ + { "lat": 40.7591038, "lon": -73.9921385 }, + { "lat": 40.7591642, "lon": -73.9922848 }, + { "lat": 40.7600450, "lon": -73.9943459 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "2", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 194926849, + "bounds": { + "minlat": 40.7536336, + "minlon": -74.0035610, + "maxlat": 40.7551246, + "maxlon": -74.0024796 + }, + "nodes": [ + 42430629, + 8261122117, + 6656315591, + 6339939226, + 593909446 + ], + "geometry": [ + { "lat": 40.7551246, "lon": -74.0024796 }, + { "lat": 40.7550723, "lon": -74.0025168 }, + { "lat": 40.7545211, "lon": -74.0029219 }, + { "lat": 40.7539315, "lon": -74.0033527 }, + { "lat": 40.7536336, "lon": -74.0035610 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 194926850, + "bounds": { + "minlat": 40.7563097, + "minlon": -74.0052945, + "maxlat": 40.7569758, + "maxlon": -74.0048129 + }, + "nodes": [ + 42446678, + 247075514, + 42437678 + ], + "geometry": [ + { "lat": 40.7563097, "lon": -74.0052945 }, + { "lat": 40.7568579, "lon": -74.0048991 }, + { "lat": 40.7569758, "lon": -74.0048129 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "turn:lanes": "through|through|through|through|right" + } +}, +{ + "type": "way", + "id": 194926851, + "bounds": { + "minlat": 40.7591595, + "minlon": -73.9883858, + "maxlat": 40.7597869, + "maxlon": -73.9879285 + }, + "nodes": [ + 42432700, + 10168088482, + 5849918503, + 2435108451, + 42435675 + ], + "geometry": [ + { "lat": 40.7591595, "lon": -73.9883858 }, + { "lat": 40.7592227, "lon": -73.9883395 }, + { "lat": 40.7595080, "lon": -73.9881318 }, + { "lat": 40.7597310, "lon": -73.9879693 }, + { "lat": 40.7597869, "lon": -73.9879285 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 194926854, + "bounds": { + "minlat": 40.7549400, + "minlon": -73.9914625, + "maxlat": 40.7553300, + "maxlon": -73.9911770 + }, + "nodes": [ + 10279559005, + 10168381350, + 42435654 + ], + "geometry": [ + { "lat": 40.7549400, "lon": -73.9914625 }, + { "lat": 40.7552667, "lon": -73.9912234 }, + { "lat": 40.7553300, "lon": -73.9911770 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 194926855, + "bounds": { + "minlat": 40.7584326, + "minlon": -73.9926458, + "maxlat": 40.7588274, + "maxlon": -73.9923474 + }, + "nodes": [ + 9417289897, + 9535571854, + 42437368 + ], + "geometry": [ + { "lat": 40.7588274, "lon": -73.9923474 }, + { "lat": 40.7585361, "lon": -73.9925675 }, + { "lat": 40.7584326, "lon": -73.9926458 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lit": "yes", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 194926856, + "bounds": { + "minlat": 40.7528997, + "minlon": -73.9966917, + "maxlat": 40.7534078, + "maxlon": -73.9963175 + }, + "nodes": [ + 42437663, + 8660596983, + 4207913306 + ], + "geometry": [ + { "lat": 40.7534078, "lon": -73.9963175 }, + { "lat": 40.7533050, "lon": -73.9963906 }, + { "lat": 40.7528997, "lon": -73.9966917 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 194933368, + "bounds": { + "minlat": 40.8020916, + "minlon": -73.9363134, + "maxlat": 40.8030279, + "maxlon": -73.9340754 + }, + "nodes": [ + 42438774, + 10169411231, + 7081737063, + 9902486013, + 4980851553, + 3786728678 + ], + "geometry": [ + { "lat": 40.8030279, "lon": -73.9363134 }, + { "lat": 40.8029753, "lon": -73.9361887 }, + { "lat": 40.8025790, "lon": -73.9352494 }, + { "lat": 40.8021678, "lon": -73.9342692 }, + { "lat": 40.8021379, "lon": -73.9341980 }, + { "lat": 40.8020916, "lon": -73.9340754 } + ], + "tags": { + "highway": "residential", + "name": "East 124th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 194933369, + "bounds": { + "minlat": 40.8016439, + "minlon": -73.9339793, + "maxlat": 40.8018840, + "maxlon": -73.9333873 + }, + "nodes": [ + 42422086, + 9902488617, + 7925258521, + 4980799136, + 3931524260 + ], + "geometry": [ + { "lat": 40.8016439, "lon": -73.9333873 }, + { "lat": 40.8017677, "lon": -73.9336804 }, + { "lat": 40.8018454, "lon": -73.9338819 }, + { "lat": 40.8018676, "lon": -73.9339388 }, + { "lat": 40.8018840, "lon": -73.9339793 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 124th Street", + "oneway": "yes", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 194933371, + "bounds": { + "minlat": 40.8037990, + "minlon": -73.9378528, + "maxlat": 40.8043802, + "maxlon": -73.9374253 + }, + "nodes": [ + 42444457, + 10122952970, + 9726158604 + ], + "geometry": [ + { "lat": 40.8043802, "lon": -73.9374253 }, + { "lat": 40.8042947, "lon": -73.9374870 }, + { "lat": 40.8037990, "lon": -73.9378528 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 194933372, + "bounds": { + "minlat": 40.8043802, + "minlon": -73.9374253, + "maxlat": 40.8069238, + "maxlon": -73.9355669 + }, + "nodes": [ + 42424757, + 10122952963, + 10122952962, + 42447209, + 10122952965, + 10122952964, + 42447208, + 10122952966, + 11214344807, + 42434129, + 11214344809, + 4980798205, + 42444457 + ], + "geometry": [ + { "lat": 40.8069238, "lon": -73.9355669 }, + { "lat": 40.8068630, "lon": -73.9356048 }, + { "lat": 40.8063579, "lon": -73.9359829 }, + { "lat": 40.8062979, "lon": -73.9360254 }, + { "lat": 40.8062432, "lon": -73.9360659 }, + { "lat": 40.8057376, "lon": -73.9364354 }, + { "lat": 40.8056792, "lon": -73.9364782 }, + { "lat": 40.8056294, "lon": -73.9365143 }, + { "lat": 40.8051165, "lon": -73.9368929 }, + { "lat": 40.8050563, "lon": -73.9369374 }, + { "lat": 40.8050016, "lon": -73.9369770 }, + { "lat": 40.8044726, "lon": -73.9373602 }, + { "lat": 40.8043802, "lon": -73.9374253 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 194933373, + "bounds": { + "minlat": 40.7987437, + "minlon": -73.9248936, + "maxlat": 40.7991924, + "maxlon": -73.9238679 + }, + "nodes": [ + 9902723837, + 9153831836, + 6532277255 + ], + "geometry": [ + { "lat": 40.7987437, "lon": -73.9238679 }, + { "lat": 40.7990796, "lon": -73.9246252 }, + { "lat": 40.7991924, "lon": -73.9248936 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "hgv": "local", + "highway": "motorway", + "lanes": "4", + "layer": "2", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "tiger:cfcc": "A71", + "tiger:county": "New York, NY", + "tiger:name_base": "Triborough", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "toll": "no", + "turn:lanes": "merge_to_right|||", + "unsigned_ref": "NY 900G", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 194933374, + "bounds": { + "minlat": 40.8000254, + "minlon": -73.9255447, + "maxlat": 40.8001178, + "maxlon": -73.9251737 + }, + "nodes": [ + 277482087, + 9153856293, + 9153831867, + 3640160572 + ], + "geometry": [ + { "lat": 40.8001178, "lon": -73.9251737 }, + { "lat": 40.8000893, "lon": -73.9253028 }, + { "lat": 40.8000593, "lon": -73.9254190 }, + { "lat": 40.8000254, "lon": -73.9255447 } + ], + "tags": { + "destination": "Queens;Bruckner Expressway;Major Deegan Expressway", + "highway": "unclassified", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 194933378, + "bounds": { + "minlat": 40.7962629, + "minlon": -73.9180997, + "maxlat": 40.7963163, + "maxlon": -73.9175193 + }, + "nodes": [ + 2054405680, + 9156856630, + 3039386408, + 3039864981, + 2054405674 + ], + "geometry": [ + { "lat": 40.7963147, "lon": -73.9175193 }, + { "lat": 40.7963163, "lon": -73.9176254 }, + { "lat": 40.7963133, "lon": -73.9177150 }, + { "lat": 40.7962891, "lon": -73.9179012 }, + { "lat": 40.7962629, "lon": -73.9180997 } + ], + "tags": { + "highway": "unclassified", + "name": "Sunken Meadow Loop", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 194933380, + "bounds": { + "minlat": 40.7966003, + "minlon": -73.9185380, + "maxlat": 40.7967398, + "maxlon": -73.9180395 + }, + "nodes": [ + 277482105, + 9156856629, + 5906371183, + 9156856628, + 9156856627, + 9156856626, + 2054405686, + 3843180751 + ], + "geometry": [ + { "lat": 40.7967373, "lon": -73.9185380 }, + { "lat": 40.7967398, "lon": -73.9184623 }, + { "lat": 40.7967379, "lon": -73.9184101 }, + { "lat": 40.7967316, "lon": -73.9183534 }, + { "lat": 40.7967179, "lon": -73.9182995 }, + { "lat": 40.7966963, "lon": -73.9182432 }, + { "lat": 40.7966736, "lon": -73.9181893 }, + { "lat": 40.7966003, "lon": -73.9180395 } + ], + "tags": { + "highway": "unclassified", + "name": "Sunken Meadow Loop" + } +}, +{ + "type": "way", + "id": 194933383, + "bounds": { + "minlat": 40.7934172, + "minlon": -73.9229460, + "maxlat": 40.7961544, + "maxlon": -73.9193700 + }, + "nodes": [ + 5906371179, + 9156856689, + 13253471347, + 13253471346, + 3039386649, + 9153856317, + 9153856318, + 9153856233, + 9156860482, + 9153856232, + 9153856304, + 5868953351, + 5868953350, + 277482241, + 5906382993, + 9153856229, + 9153856228, + 9153856227, + 6218953524, + 5871340510, + 9156860499, + 9156860438, + 9153856225 + ], + "geometry": [ + { "lat": 40.7961544, "lon": -73.9193700 }, + { "lat": 40.7961062, "lon": -73.9194506 }, + { "lat": 40.7960565, "lon": -73.9195471 }, + { "lat": 40.7960060, "lon": -73.9196606 }, + { "lat": 40.7959641, "lon": -73.9197708 }, + { "lat": 40.7959315, "lon": -73.9198698 }, + { "lat": 40.7959070, "lon": -73.9199739 }, + { "lat": 40.7958754, "lon": -73.9201676 }, + { "lat": 40.7958723, "lon": -73.9201897 }, + { "lat": 40.7958709, "lon": -73.9202024 }, + { "lat": 40.7958546, "lon": -73.9203513 }, + { "lat": 40.7958362, "lon": -73.9205076 }, + { "lat": 40.7958091, "lon": -73.9206243 }, + { "lat": 40.7957719, "lon": -73.9207511 }, + { "lat": 40.7956228, "lon": -73.9209352 }, + { "lat": 40.7955924, "lon": -73.9209882 }, + { "lat": 40.7955630, "lon": -73.9210351 }, + { "lat": 40.7955238, "lon": -73.9210830 }, + { "lat": 40.7954745, "lon": -73.9211283 }, + { "lat": 40.7946728, "lon": -73.9218314 }, + { "lat": 40.7939510, "lon": -73.9224923 }, + { "lat": 40.7937963, "lon": -73.9226340 }, + { "lat": 40.7934172, "lon": -73.9229460 } + ], + "tags": { + "highway": "tertiary", + "name": "Central Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 195743130, + "bounds": { + "minlat": 40.7229037, + "minlon": -73.9887754, + "maxlat": 40.7229840, + "maxlon": -73.9886268 + }, + "nodes": [ + 5798966629, + 7480301864 + ], + "geometry": [ + { "lat": 40.7229840, "lon": -73.9886268 }, + { "lat": 40.7229037, "lon": -73.9887754 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 195743131, + "bounds": { + "minlat": 40.7786010, + "minlon": -73.9816100, + "maxlat": 40.7790389, + "maxlon": -73.9812960 + }, + "nodes": [ + 6207264908, + 3235708629, + 8323051888 + ], + "geometry": [ + { "lat": 40.7786010, "lon": -73.9816100 }, + { "lat": 40.7786995, "lon": -73.9815387 }, + { "lat": 40.7790389, "lon": -73.9812960 } + ], + "tags": { + "bus:lanes": "designated|yes|yes|yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "motorcar:lanes": "no|yes|yes|yes", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743132, + "bounds": { + "minlat": 40.7831527, + "minlon": -73.9783277, + "maxlat": 40.7843100, + "maxlon": -73.9774740 + }, + "nodes": [ + 42442463, + 9897810872, + 10037505649, + 42421772, + 10037505644, + 6929267030, + 9457151133 + ], + "geometry": [ + { "lat": 40.7831527, "lon": -73.9783277 }, + { "lat": 40.7832469, "lon": -73.9782584 }, + { "lat": 40.7837777, "lon": -73.9778629 }, + { "lat": 40.7838280, "lon": -73.9778254 }, + { "lat": 40.7838930, "lon": -73.9777779 }, + { "lat": 40.7841721, "lon": -73.9775743 }, + { "lat": 40.7843100, "lon": -73.9774740 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743133, + "bounds": { + "minlat": 40.7844692, + "minlon": -73.9773536, + "maxlat": 40.7855632, + "maxlon": -73.9765601 + }, + "nodes": [ + 42442469, + 9906904521, + 10039878624, + 42433567, + 10039927872, + 6929267014 + ], + "geometry": [ + { "lat": 40.7844692, "lon": -73.9773536 }, + { "lat": 40.7845276, "lon": -73.9773109 }, + { "lat": 40.7850492, "lon": -73.9769328 }, + { "lat": 40.7851032, "lon": -73.9768937 }, + { "lat": 40.7851624, "lon": -73.9768507 }, + { "lat": 40.7855632, "lon": -73.9765601 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743134, + "bounds": { + "minlat": 40.8140243, + "minlon": -73.9557888, + "maxlat": 40.8144827, + "maxlon": -73.9554444 + }, + "nodes": [ + 4212649297, + 10173250036, + 42442586, + 10173250035, + 10173362952, + 42442589 + ], + "geometry": [ + { "lat": 40.8140243, "lon": -73.9557888 }, + { "lat": 40.8140627, "lon": -73.9557583 }, + { "lat": 40.8141405, "lon": -73.9556965 }, + { "lat": 40.8142078, "lon": -73.9556469 }, + { "lat": 40.8144237, "lon": -73.9554879 }, + { "lat": 40.8144827, "lon": -73.9554444 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lit": "yes", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743135, + "bounds": { + "minlat": 40.8151098, + "minlon": -73.9550004, + "maxlat": 40.8175891, + "maxlon": -73.9531759 + }, + "nodes": [ + 42442592, + 10055123056, + 7124965421, + 3894470285, + 42442596, + 10055113542, + 10171135919, + 42438247, + 10171129715, + 7124965415, + 10170977557, + 42434098 + ], + "geometry": [ + { "lat": 40.8151098, "lon": -73.9550004 }, + { "lat": 40.8151728, "lon": -73.9549543 }, + { "lat": 40.8155777, "lon": -73.9546577 }, + { "lat": 40.8156919, "lon": -73.9545750 }, + { "lat": 40.8157354, "lon": -73.9545419 }, + { "lat": 40.8157924, "lon": -73.9544991 }, + { "lat": 40.8163115, "lon": -73.9541098 }, + { "lat": 40.8163558, "lon": -73.9540766 }, + { "lat": 40.8164288, "lon": -73.9540233 }, + { "lat": 40.8167549, "lon": -73.9537851 }, + { "lat": 40.8175255, "lon": -73.9532224 }, + { "lat": 40.8175891, "lon": -73.9531759 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743136, + "bounds": { + "minlat": 40.7792840, + "minlon": -73.9811164, + "maxlat": 40.7804048, + "maxlon": -73.9803202 + }, + "nodes": [ + 42432564, + 11655743685, + 9177424870, + 42442445, + 9441745384, + 8323051889 + ], + "geometry": [ + { "lat": 40.7792840, "lon": -73.9811164 }, + { "lat": 40.7793463, "lon": -73.9810717 }, + { "lat": 40.7798692, "lon": -73.9806966 }, + { "lat": 40.7799206, "lon": -73.9806592 }, + { "lat": 40.7799807, "lon": -73.9806200 }, + { "lat": 40.7804048, "lon": -73.9803202 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743137, + "bounds": { + "minlat": 40.7047105, + "minlon": -74.0149470, + "maxlat": 40.7048274, + "maxlon": -74.0144561 + }, + "nodes": [ + 588546885, + 10316226193, + 4145586925, + 4145586930, + 13370139581, + 4145586919, + 588546798 + ], + "geometry": [ + { "lat": 40.7047105, "lon": -74.0144561 }, + { "lat": 40.7047327, "lon": -74.0145292 }, + { "lat": 40.7047552, "lon": -74.0146073 }, + { "lat": 40.7047824, "lon": -74.0147167 }, + { "lat": 40.7047989, "lon": -74.0147911 }, + { "lat": 40.7048114, "lon": -74.0148520 }, + { "lat": 40.7048274, "lon": -74.0149470 } + ], + "tags": { + "bus:lanes": "yes|yes|designated", + "busway:right": "lane", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Battery", + "tiger:name_type": "Pl", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 195743138, + "bounds": { + "minlat": 40.7022573, + "minlon": -74.0115133, + "maxlat": 40.7029659, + "maxlon": -74.0113016 + }, + "nodes": [ + 42431898, + 7689146644, + 12296243937, + 12296243938 + ], + "geometry": [ + { "lat": 40.7029659, "lon": -74.0115133 }, + { "lat": 40.7028530, "lon": -74.0114774 }, + { "lat": 40.7024730, "lon": -74.0113839 }, + { "lat": 40.7022573, "lon": -74.0113016 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broad Street", + "name:ko": "브로드 스트리트", + "name:ru": "Брод-стрит", + "oneway": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broad", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "turn:lanes:backward": "left;through|right", + "wikidata": "Q2613951", + "wikipedia": "en:Broad Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743139, + "bounds": { + "minlat": 40.8047876, + "minlon": -73.9661339, + "maxlat": 40.8073049, + "maxlon": -73.9642951 + }, + "nodes": [ + 1506445808, + 7004393035, + 3579432158, + 7004385798, + 561035333, + 7004399550, + 7004385802, + 7004385800, + 561035334, + 7004403486, + 7004372898, + 561035335, + 7004416526, + 7004387319, + 7004387318, + 7004416671, + 627905367 + ], + "geometry": [ + { "lat": 40.8047876, "lon": -73.9661339 }, + { "lat": 40.8048515, "lon": -73.9660847 }, + { "lat": 40.8050534, "lon": -73.9659287 }, + { "lat": 40.8053565, "lon": -73.9657056 }, + { "lat": 40.8054119, "lon": -73.9656735 }, + { "lat": 40.8054774, "lon": -73.9656244 }, + { "lat": 40.8059925, "lon": -73.9652511 }, + { "lat": 40.8059985, "lon": -73.9652467 }, + { "lat": 40.8060401, "lon": -73.9652167 }, + { "lat": 40.8061079, "lon": -73.9651675 }, + { "lat": 40.8066225, "lon": -73.9647960 }, + { "lat": 40.8066746, "lon": -73.9647589 }, + { "lat": 40.8067347, "lon": -73.9647138 }, + { "lat": 40.8069814, "lon": -73.9645316 }, + { "lat": 40.8070584, "lon": -73.9644753 }, + { "lat": 40.8072478, "lon": -73.9643376 }, + { "lat": 40.8073049, "lon": -73.9642951 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743141, + "bounds": { + "minlat": 40.7730852, + "minlon": -73.9823197, + "maxlat": 40.7739227, + "maxlon": -73.9823112 + }, + "nodes": [ + 42428595, + 5117991232, + 12097383314, + 5117963657, + 9915469771 + ], + "geometry": [ + { "lat": 40.7739227, "lon": -73.9823188 }, + { "lat": 40.7738443, "lon": -73.9823179 }, + { "lat": 40.7732555, "lon": -73.9823197 }, + { "lat": 40.7731843, "lon": -73.9823174 }, + { "lat": 40.7730852, "lon": -73.9823112 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743143, + "bounds": { + "minlat": 40.7971801, + "minlon": -73.9698184, + "maxlat": 40.8013033, + "maxlon": -73.9677649 + }, + "nodes": [ + 1061531596, + 11803957855, + 7801775712, + 1061531631, + 7801775738, + 7801775731, + 1061531802, + 7801775720, + 7801775763, + 1061531815, + 11803957864, + 9646862890, + 1061531496, + 9177532558, + 6886038343, + 9654214257, + 11803957851, + 10166004110, + 10166004115, + 1061531654 + ], + "geometry": [ + { "lat": 40.7971801, "lon": -73.9698184 }, + { "lat": 40.7972401, "lon": -73.9697730 }, + { "lat": 40.7977542, "lon": -73.9693907 }, + { "lat": 40.7978046, "lon": -73.9693528 }, + { "lat": 40.7978644, "lon": -73.9693079 }, + { "lat": 40.7983827, "lon": -73.9689352 }, + { "lat": 40.7984292, "lon": -73.9689001 }, + { "lat": 40.7984971, "lon": -73.9688539 }, + { "lat": 40.7990190, "lon": -73.9684893 }, + { "lat": 40.7990701, "lon": -73.9684544 }, + { "lat": 40.7991357, "lon": -73.9684192 }, + { "lat": 40.7996816, "lon": -73.9681308 }, + { "lat": 40.7997386, "lon": -73.9681062 }, + { "lat": 40.7998106, "lon": -73.9680752 }, + { "lat": 40.8002647, "lon": -73.9679206 }, + { "lat": 40.8003992, "lon": -73.9678850 }, + { "lat": 40.8004669, "lon": -73.9678739 }, + { "lat": 40.8005369, "lon": -73.9678625 }, + { "lat": 40.8011815, "lon": -73.9677806 }, + { "lat": 40.8013033, "lon": -73.9677649 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743144, + "bounds": { + "minlat": 40.7946143, + "minlon": -73.9716646, + "maxlat": 40.7950660, + "maxlon": -73.9713740 + }, + "nodes": [ + 1061531807, + 8687882777, + 9177516873, + 4205805399 + ], + "geometry": [ + { "lat": 40.7946143, "lon": -73.9716646 }, + { "lat": 40.7947018, "lon": -73.9716021 }, + { "lat": 40.7948505, "lon": -73.9715045 }, + { "lat": 40.7950660, "lon": -73.9713740 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743145, + "bounds": { + "minlat": 40.8336477, + "minlon": -73.9453237, + "maxlat": 40.8347297, + "maxlon": -73.9445301 + }, + "nodes": [ + 42428962, + 9703359686, + 9703359679, + 42428961, + 3627501383, + 595352904 + ], + "geometry": [ + { "lat": 40.8347297, "lon": -73.9445301 }, + { "lat": 40.8346730, "lon": -73.9445720 }, + { "lat": 40.8341687, "lon": -73.9449448 }, + { "lat": 40.8341125, "lon": -73.9449805 }, + { "lat": 40.8340337, "lon": -73.9450341 }, + { "lat": 40.8336477, "lon": -73.9453237 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743146, + "bounds": { + "minlat": 40.8219884, + "minlon": -73.9535995, + "maxlat": 40.8244860, + "maxlon": -73.9517593 + }, + "nodes": [ + 561035354, + 10168100453, + 10170641700, + 561035355, + 10170641699, + 10170641707, + 561035356, + 10170641706, + 10170641715, + 561035357, + 10170641714, + 10743657291, + 561035358 + ], + "geometry": [ + { "lat": 40.8219884, "lon": -73.9535995 }, + { "lat": 40.8220558, "lon": -73.9535483 }, + { "lat": 40.8225558, "lon": -73.9531688 }, + { "lat": 40.8226075, "lon": -73.9531289 }, + { "lat": 40.8226713, "lon": -73.9530824 }, + { "lat": 40.8231782, "lon": -73.9527139 }, + { "lat": 40.8232275, "lon": -73.9526780 }, + { "lat": 40.8232921, "lon": -73.9526310 }, + { "lat": 40.8238039, "lon": -73.9522586 }, + { "lat": 40.8238532, "lon": -73.9522227 }, + { "lat": 40.8239178, "lon": -73.9521744 }, + { "lat": 40.8244318, "lon": -73.9517990 }, + { "lat": 40.8244860, "lon": -73.9517593 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743147, + "bounds": { + "minlat": 40.8391736, + "minlon": -73.9410786, + "maxlat": 40.8393772, + "maxlon": -73.9409299 + }, + "nodes": [ + 13320061254, + 9566927280, + 13320061253 + ], + "geometry": [ + { "lat": 40.8391736, "lon": -73.9410786 }, + { "lat": 40.8392340, "lon": -73.9410345 }, + { "lat": 40.8393772, "lon": -73.9409299 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "3", + "name": "Broadway", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743148, + "bounds": { + "minlat": 40.8028712, + "minlon": -73.9677238, + "maxlat": 40.8042152, + "maxlon": -73.9667983 + }, + "nodes": [ + 42428782, + 7004393041, + 7004393044, + 42428770, + 7004393045, + 7004393047, + 595314103, + 9492618962, + 7004393049 + ], + "geometry": [ + { "lat": 40.8042152, "lon": -73.9667983 }, + { "lat": 40.8041254, "lon": -73.9668692 }, + { "lat": 40.8036695, "lon": -73.9671964 }, + { "lat": 40.8036102, "lon": -73.9672442 }, + { "lat": 40.8035562, "lon": -73.9672823 }, + { "lat": 40.8030413, "lon": -73.9676393 }, + { "lat": 40.8029732, "lon": -73.9676801 }, + { "lat": 40.8029134, "lon": -73.9677099 }, + { "lat": 40.8028712, "lon": -73.9677238 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743149, + "bounds": { + "minlat": 40.8162833, + "minlon": -73.9577315, + "maxlat": 40.8175078, + "maxlon": -73.9568442 + }, + "nodes": [ + 561035344, + 10050036786, + 6198320765, + 10128823995, + 2541754747 + ], + "geometry": [ + { "lat": 40.8162833, "lon": -73.9577315 }, + { "lat": 40.8163573, "lon": -73.9576767 }, + { "lat": 40.8168973, "lon": -73.9572758 }, + { "lat": 40.8174306, "lon": -73.9568987 }, + { "lat": 40.8175078, "lon": -73.9568442 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743150, + "bounds": { + "minlat": 40.8188507, + "minlon": -73.9561236, + "maxlat": 40.8201617, + "maxlon": -73.9551864 + }, + "nodes": [ + 42428892, + 10168100433, + 10129081637, + 7732653970 + ], + "geometry": [ + { "lat": 40.8201617, "lon": -73.9551864 }, + { "lat": 40.8200490, "lon": -73.9552671 }, + { "lat": 40.8189154, "lon": -73.9560773 }, + { "lat": 40.8188507, "lon": -73.9561236 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743151, + "bounds": { + "minlat": 40.7779528, + "minlon": -73.9821913, + "maxlat": 40.7787867, + "maxlon": -73.9820522 + }, + "nodes": [ + 42428634, + 3235708626, + 9177424861, + 3235708633, + 1061531448 + ], + "geometry": [ + { "lat": 40.7787867, "lon": -73.9820522 }, + { "lat": 40.7786693, "lon": -73.9820803 }, + { "lat": 40.7782429, "lon": -73.9821704 }, + { "lat": 40.7780675, "lon": -73.9821913 }, + { "lat": 40.7779528, "lon": -73.9821878 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743152, + "bounds": { + "minlat": 40.7668760, + "minlon": -73.9796013, + "maxlat": 40.7670983, + "maxlon": -73.9790760 + }, + "nodes": [ + 4207892897, + 7830685378, + 42423674 + ], + "geometry": [ + { "lat": 40.7670983, "lon": -73.9796013 }, + { "lat": 40.7669248, "lon": -73.9791913 }, + { "lat": 40.7668760, "lon": -73.9790760 } + ], + "tags": { + "alt_name": "West 59th Street", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "name": "Central Park South", + "name_1": "West 59 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "||right", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743153, + "bounds": { + "minlat": 40.7970192, + "minlon": -73.9607820, + "maxlat": 40.7980478, + "maxlon": -73.9600437 + }, + "nodes": [ + 11807757981, + 7784826645, + 42435337, + 7784826644, + 3602679383, + 7784826657, + 42421728 + ], + "geometry": [ + { "lat": 40.7970192, "lon": -73.9607820 }, + { "lat": 40.7973245, "lon": -73.9605702 }, + { "lat": 40.7973764, "lon": -73.9605349 }, + { "lat": 40.7974335, "lon": -73.9604907 }, + { "lat": 40.7975294, "lon": -73.9604229 }, + { "lat": 40.7979549, "lon": -73.9601116 }, + { "lat": 40.7980478, "lon": -73.9600437 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743154, + "bounds": { + "minlat": 40.7920130, + "minlon": -73.9644503, + "maxlat": 40.7923773, + "maxlon": -73.9641772 + }, + "nodes": [ + 7058748619, + 7108199736, + 42425232 + ], + "geometry": [ + { "lat": 40.7920130, "lon": -73.9644503 }, + { "lat": 40.7922715, "lon": -73.9642608 }, + { "lat": 40.7923773, "lon": -73.9641772 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743156, + "bounds": { + "minlat": 40.7798151, + "minlon": -73.9733542, + "maxlat": 40.7809834, + "maxlon": -73.9725008 + }, + "nodes": [ + 11807757970, + 3248774449, + 11807757971 + ], + "geometry": [ + { "lat": 40.7798151, "lon": -73.9733542 }, + { "lat": 40.7807149, "lon": -73.9726981 }, + { "lat": 40.7809834, "lon": -73.9725008 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743158, + "bounds": { + "minlat": 40.7812798, + "minlon": -73.9759984, + "maxlat": 40.7819606, + "maxlon": -73.9754991 + }, + "nodes": [ + 42443347, + 9897810836, + 10156924788, + 42428061 + ], + "geometry": [ + { "lat": 40.7819606, "lon": -73.9754991 }, + { "lat": 40.7818684, "lon": -73.9755666 }, + { "lat": 40.7813282, "lon": -73.9759631 }, + { "lat": 40.7812798, "lon": -73.9759984 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743159, + "bounds": { + "minlat": 40.7819606, + "minlon": -73.9754991, + "maxlat": 40.7826383, + "maxlon": -73.9750067 + }, + "nodes": [ + 42421769, + 9897810855, + 9897810844, + 42443347 + ], + "geometry": [ + { "lat": 40.7826383, "lon": -73.9750067 }, + { "lat": 40.7825978, "lon": -73.9750368 }, + { "lat": 40.7820554, "lon": -73.9754275 }, + { "lat": 40.7819606, "lon": -73.9754991 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "||right", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743160, + "bounds": { + "minlat": 40.8184175, + "minlon": -73.9508309, + "maxlat": 40.8192614, + "maxlon": -73.9501619 + }, + "nodes": [ + 13207198389, + 7024563821, + 42448629, + 7024563819, + 7024563827, + 12148794244, + 5487817605, + 5539478573 + ], + "geometry": [ + { "lat": 40.8184175, "lon": -73.9508309 }, + { "lat": 40.8184423, "lon": -73.9507985 }, + { "lat": 40.8184977, "lon": -73.9507476 }, + { "lat": 40.8185547, "lon": -73.9506956 }, + { "lat": 40.8186185, "lon": -73.9506405 }, + { "lat": 40.8187978, "lon": -73.9505004 }, + { "lat": 40.8190609, "lon": -73.9503123 }, + { "lat": 40.8192614, "lon": -73.9501619 } + ], + "tags": { + "alt_name": "Gen. Colin Powell Way", + "bus:conditional": "designated @ (Mo-Fr 08:00-18:00)", + "description": "This honorary street name memorializes Colin Luther Powell.", + "highway": "tertiary", + "lanes": "2", + "motor_vehicle:conditional": "no @ (Mo-Fr 08:00-18:00)", + "name": "Convent Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743161, + "bounds": { + "minlat": 40.7889397, + "minlon": -73.9429284, + "maxlat": 40.7899429, + "maxlon": -73.9405592 + }, + "nodes": [ + 42456101, + 6191027334, + 6191027313, + 5481998025, + 5481998023, + 2947964865, + 42443066 + ], + "geometry": [ + { "lat": 40.7889397, "lon": -73.9405592 }, + { "lat": 40.7889872, "lon": -73.9406714 }, + { "lat": 40.7890006, "lon": -73.9407030 }, + { "lat": 40.7893993, "lon": -73.9416447 }, + { "lat": 40.7894492, "lon": -73.9417625 }, + { "lat": 40.7898925, "lon": -73.9428092 }, + { "lat": 40.7899429, "lon": -73.9429284 } + ], + "tags": { + "cycleway:left": "no", + "highway": "residential", + "maxspeed": "20 mph", + "name": "East 105th Street", + "name:ru": "Восточная 105-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743162, + "bounds": { + "minlat": 40.7944866, + "minlon": -73.9331708, + "maxlat": 40.7950638, + "maxlon": -73.9318124 + }, + "nodes": [ + 42448278, + 6216836424, + 6216836419, + 4443803073, + 6216836439, + 7924346625, + 6515676485, + 42424117 + ], + "geometry": [ + { "lat": 40.7950638, "lon": -73.9331708 }, + { "lat": 40.7950063, "lon": -73.9330324 }, + { "lat": 40.7947703, "lon": -73.9324740 }, + { "lat": 40.7947414, "lon": -73.9324108 }, + { "lat": 40.7947062, "lon": -73.9323302 }, + { "lat": 40.7946374, "lon": -73.9321707 }, + { "lat": 40.7944915, "lon": -73.9318245 }, + { "lat": 40.7944866, "lon": -73.9318124 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 116th Street", + "name:ru": "Восточная 116-я стрит", + "sidewalk:both": "separate", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743163, + "bounds": { + "minlat": 40.8034339, + "minlon": -73.9341999, + "maxlat": 40.8039089, + "maxlon": -73.9330811 + }, + "nodes": [ + 42434134, + 7926724575, + 13729902884, + 5590991383 + ], + "geometry": [ + { "lat": 40.8034339, "lon": -73.9330811 }, + { "lat": 40.8034865, "lon": -73.9332104 }, + { "lat": 40.8038007, "lon": -73.9339465 }, + { "lat": 40.8039089, "lon": -73.9341999 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "3", + "name": "East 126th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 195743164, + "bounds": { + "minlat": 40.7339696, + "minlon": -73.9895403, + "maxlat": 40.7342854, + "maxlon": -73.9887887 + }, + "nodes": [ + 9907978334, + 12183283843, + 11040080991, + 8310246184, + 42434352 + ], + "geometry": [ + { "lat": 40.7342854, "lon": -73.9895403 }, + { "lat": 40.7340613, "lon": -73.9890078 }, + { "lat": 40.7340316, "lon": -73.9889368 }, + { "lat": 40.7340039, "lon": -73.9888706 }, + { "lat": 40.7339696, "lon": -73.9887887 } + ], + "tags": { + "bus": "yes", + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "|merge_to_left", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743165, + "bounds": { + "minlat": 40.7458300, + "minlon": -73.9838914, + "maxlat": 40.7464825, + "maxlon": -73.9823372 + }, + "nodes": [ + 42445899, + 10169157396, + 12181374915, + 8119462499, + 4597668020 + ], + "geometry": [ + { "lat": 40.7464825, "lon": -73.9838914 }, + { "lat": 40.7464406, "lon": -73.9837979 }, + { "lat": 40.7459022, "lon": -73.9825074 }, + { "lat": 40.7458721, "lon": -73.9824364 }, + { "lat": 40.7458300, "lon": -73.9823372 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 32nd Street", + "name:ru": "Восточная 32-я стрит", + "name_1": "East 32 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743166, + "bounds": { + "minlat": 40.7653085, + "minlon": -73.9686619, + "maxlat": 40.7673574, + "maxlon": -73.9638433 + }, + "nodes": [ + 42445972, + 10171134797, + 12834723203, + 10125227987, + 596776032, + 42455666, + 10125112350, + 10125139627, + 42447060, + 10125139628, + 10166171507, + 42449985 + ], + "geometry": [ + { "lat": 40.7673574, "lon": -73.9686619 }, + { "lat": 40.7673109, "lon": -73.9685525 }, + { "lat": 40.7667847, "lon": -73.9673151 }, + { "lat": 40.7667601, "lon": -73.9672573 }, + { "lat": 40.7667157, "lon": -73.9671528 }, + { "lat": 40.7666394, "lon": -73.9669732 }, + { "lat": 40.7665889, "lon": -73.9668544 }, + { "lat": 40.7660360, "lon": -73.9655540 }, + { "lat": 40.7659911, "lon": -73.9654486 }, + { "lat": 40.7659492, "lon": -73.9653500 }, + { "lat": 40.7653695, "lon": -73.9639867 }, + { "lat": 40.7653085, "lon": -73.9638433 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 65th Street", + "name:ru": "Восточная 65-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743167, + "bounds": { + "minlat": 40.7652359, + "minlon": -73.9624718, + "maxlat": 40.7671880, + "maxlon": -73.9578431 + }, + "nodes": [ + 42431680, + 6670248393, + 5373598785, + 6680686171, + 6680686176, + 13680975210, + 6670244878, + 42431681, + 6670244879, + 6670244862, + 42431684 + ], + "geometry": [ + { "lat": 40.7671880, "lon": -73.9624718 }, + { "lat": 40.7671316, "lon": -73.9623382 }, + { "lat": 40.7668557, "lon": -73.9616840 }, + { "lat": 40.7666809, "lon": -73.9612694 }, + { "lat": 40.7664607, "lon": -73.9607473 }, + { "lat": 40.7664499, "lon": -73.9607216 }, + { "lat": 40.7662998, "lon": -73.9603657 }, + { "lat": 40.7662419, "lon": -73.9602285 }, + { "lat": 40.7661911, "lon": -73.9601081 }, + { "lat": 40.7653033, "lon": -73.9580030 }, + { "lat": 40.7652359, "lon": -73.9578431 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 68th Street", + "name:ru": "Восточная 68-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743168, + "bounds": { + "minlat": 40.7661832, + "minlon": -73.9564821, + "maxlat": 40.7671313, + "maxlon": -73.9542439 + }, + "nodes": [ + 42428005, + 6670244836, + 10122943662, + 9030210819, + 42445247 + ], + "geometry": [ + { "lat": 40.7661832, "lon": -73.9542439 }, + { "lat": 40.7662372, "lon": -73.9543678 }, + { "lat": 40.7670588, "lon": -73.9563101 }, + { "lat": 40.7670771, "lon": -73.9563533 }, + { "lat": 40.7671313, "lon": -73.9564821 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 71st Street", + "name:ru": "Восточная 71-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743169, + "bounds": { + "minlat": 40.7660684, + "minlon": -73.9537482, + "maxlat": 40.7668593, + "maxlon": -73.9518597 + }, + "nodes": [ + 42428007, + 4207313500, + 4207313496, + 11383453719, + 596799866 + ], + "geometry": [ + { "lat": 40.7668593, "lon": -73.9537482 }, + { "lat": 40.7668013, "lon": -73.9536091 }, + { "lat": 40.7662827, "lon": -73.9523671 }, + { "lat": 40.7662245, "lon": -73.9522292 }, + { "lat": 40.7660684, "lon": -73.9518597 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "East 72nd Street", + "name:ru": "Восточная 72-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743170, + "bounds": { + "minlat": 40.7703078, + "minlon": -73.9480635, + "maxlat": 40.7704153, + "maxlon": -73.9477641 + }, + "nodes": [ + 42451744, + 9142744766, + 42450641 + ], + "geometry": [ + { "lat": 40.7704153, "lon": -73.9480635 }, + { "lat": 40.7703718, "lon": -73.9479201 }, + { "lat": 40.7703078, "lon": -73.9477641 } + ], + "tags": { + "cycleway:both": "no", + "destination:forward": "FDR Drive South", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743171, + "bounds": { + "minlat": 40.7710722, + "minlon": -73.9499354, + "maxlat": 40.7720762, + "maxlon": -73.9475897 + }, + "nodes": [ + 42428022, + 6691104520, + 7103815230, + 42438513 + ], + "geometry": [ + { "lat": 40.7720762, "lon": -73.9499354 }, + { "lat": 40.7720202, "lon": -73.9498054 }, + { "lat": 40.7711274, "lon": -73.9477205 }, + { "lat": 40.7710722, "lon": -73.9475897 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 80th Street", + "name:ru": "Восточная 80-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743172, + "bounds": { + "minlat": 40.7800714, + "minlon": -73.9494125, + "maxlat": 40.7810699, + "maxlon": -73.9470292 + }, + "nodes": [ + 42456076, + 6214889055, + 6214889045, + 42443046 + ], + "geometry": [ + { "lat": 40.7800714, "lon": -73.9470292 }, + { "lat": 40.7801315, "lon": -73.9471772 }, + { "lat": 40.7810211, "lon": -73.9492951 }, + { "lat": 40.7810699, "lon": -73.9494125 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 91st Street", + "name:ru": "Восточная 91-я стрит", + "name_1": "East 91 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743173, + "bounds": { + "minlat": 40.7799114, + "minlon": -73.9465727, + "maxlat": 40.7806943, + "maxlon": -73.9447095 + }, + "nodes": [ + 42448745, + 6185259911, + 3785530553, + 8828140385 + ], + "geometry": [ + { "lat": 40.7806943, "lon": -73.9465727 }, + { "lat": 40.7806414, "lon": -73.9464431 }, + { "lat": 40.7805652, "lon": -73.9462502 }, + { "lat": 40.7799114, "lon": -73.9447095 } + ], + "tags": { + "highway": "residential", + "name": "East 92nd Street", + "name:ru": "Восточная 92-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 195743175, + "bounds": { + "minlat": 40.7849455, + "minlon": -73.9488279, + "maxlat": 40.7858875, + "maxlon": -73.9465916 + }, + "nodes": [ + 42443056, + 6070217083, + 5637143330, + 4980915578, + 42449007 + ], + "geometry": [ + { "lat": 40.7849455, "lon": -73.9465916 }, + { "lat": 40.7850081, "lon": -73.9467138 }, + { "lat": 40.7852713, "lon": -73.9473373 }, + { "lat": 40.7858413, "lon": -73.9486897 }, + { "lat": 40.7858875, "lon": -73.9488279 } + ], + "tags": { + "highway": "tertiary", + "lanes": "5", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 97th Street", + "name:ru": "Восточная 97-я стрит", + "oneway": "no", + "parking:condition:left:time_interval": "Tu, Fr 00:00-09:30, 11:00-24:00;Mo, We, Th, Sa, Su 00:00-24:00", + "parking:condition:right:time_interval": "Mo, Th 00:00-09:30, 11:00-24:00;Tu, We, Fr-Su 00:00-24:00", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743176, + "bounds": { + "minlat": 40.7710722, + "minlon": -73.9475897, + "maxlat": 40.7729859, + "maxlon": -73.9461964 + }, + "nodes": [ + 42438513, + 7103815260, + 7103815257, + 42451754, + 7103815268, + 7135164283, + 42439416, + 7135164277, + 7135164266, + 42448257 + ], + "geometry": [ + { "lat": 40.7710722, "lon": -73.9475897 }, + { "lat": 40.7711375, "lon": -73.9475420 }, + { "lat": 40.7716628, "lon": -73.9471580 }, + { "lat": 40.7717169, "lon": -73.9471185 }, + { "lat": 40.7717778, "lon": -73.9470741 }, + { "lat": 40.7722910, "lon": -73.9466998 }, + { "lat": 40.7723510, "lon": -73.9466560 }, + { "lat": 40.7724099, "lon": -73.9466132 }, + { "lat": 40.7729321, "lon": -73.9462334 }, + { "lat": 40.7729859, "lon": -73.9461964 } + ], + "tags": { + "highway": "residential", + "name": "East End Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4122377", + "wikipedia": "en:East End Avenue" + } +}, +{ + "type": "way", + "id": 195743179, + "bounds": { + "minlat": 40.7186420, + "minlon": -74.0088190, + "maxlat": 40.7206149, + "maxlon": -74.0084726 + }, + "nodes": [ + 42436330, + 42436333, + 8304498538, + 42436335, + 8304498537, + 8312344395, + 42436336, + 8312344394, + 8304498056, + 42424610 + ], + "geometry": [ + { "lat": 40.7186420, "lon": -74.0088190 }, + { "lat": 40.7190290, "lon": -74.0087470 }, + { "lat": 40.7192362, "lon": -74.0087098 }, + { "lat": 40.7192960, "lon": -74.0086990 }, + { "lat": 40.7193712, "lon": -74.0086858 }, + { "lat": 40.7198958, "lon": -74.0085939 }, + { "lat": 40.7199664, "lon": -74.0085815 }, + { "lat": 40.7200219, "lon": -74.0085721 }, + { "lat": 40.7205495, "lon": -74.0084819 }, + { "lat": 40.7206149, "lon": -74.0084726 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743180, + "bounds": { + "minlat": 40.7763336, + "minlon": -73.9621347, + "maxlat": 40.7795447, + "maxlon": -73.9597737 + }, + "nodes": [ + 42446021, + 10173330838, + 10156669029, + 42438487, + 10156669028, + 3392519848, + 42446026, + 3341917067, + 3341917064, + 42439392, + 3392519839, + 2238282059, + 42446031, + 2238282070, + 2238282222, + 42435499 + ], + "geometry": [ + { "lat": 40.7763336, "lon": -73.9621347 }, + { "lat": 40.7764254, "lon": -73.9620652 }, + { "lat": 40.7769545, "lon": -73.9616647 }, + { "lat": 40.7770011, "lon": -73.9616294 }, + { "lat": 40.7770659, "lon": -73.9615821 }, + { "lat": 40.7775881, "lon": -73.9612010 }, + { "lat": 40.7776355, "lon": -73.9611664 }, + { "lat": 40.7777010, "lon": -73.9611184 }, + { "lat": 40.7782232, "lon": -73.9607367 }, + { "lat": 40.7782718, "lon": -73.9607012 }, + { "lat": 40.7783317, "lon": -73.9606574 }, + { "lat": 40.7788557, "lon": -73.9602740 }, + { "lat": 40.7789076, "lon": -73.9602361 }, + { "lat": 40.7789653, "lon": -73.9601941 }, + { "lat": 40.7794881, "lon": -73.9598133 }, + { "lat": 40.7795447, "lon": -73.9597737 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 195743182, + "bounds": { + "minlat": 40.7496645, + "minlon": -73.9815704, + "maxlat": 40.7515352, + "maxlon": -73.9802218 + }, + "nodes": [ + 42445909, + 4903169924, + 4960516267, + 3997454661, + 42445910, + 3997454664, + 3997454665, + 42445651, + 3997454668, + 11043321020, + 3997454669, + 42445914 + ], + "geometry": [ + { "lat": 40.7496645, "lon": -73.9815704 }, + { "lat": 40.7497302, "lon": -73.9815228 }, + { "lat": 40.7501866, "lon": -73.9811931 }, + { "lat": 40.7502299, "lon": -73.9811620 }, + { "lat": 40.7502832, "lon": -73.9811233 }, + { "lat": 40.7503512, "lon": -73.9810754 }, + { "lat": 40.7508618, "lon": -73.9807116 }, + { "lat": 40.7509069, "lon": -73.9806768 }, + { "lat": 40.7509604, "lon": -73.9806373 }, + { "lat": 40.7514044, "lon": -73.9803183 }, + { "lat": 40.7514791, "lon": -73.9802654 }, + { "lat": 40.7515352, "lon": -73.9802218 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 195743183, + "bounds": { + "minlat": 40.7673574, + "minlon": -73.9686619, + "maxlat": 40.7692257, + "maxlon": -73.9673032 + }, + "nodes": [ + 42445972, + 2792783183, + 2792787023, + 42445976, + 2792787017, + 2792787018, + 42437425, + 2792787016, + 10170844864, + 42431674 + ], + "geometry": [ + { "lat": 40.7673574, "lon": -73.9686619 }, + { "lat": 40.7674036, "lon": -73.9686271 }, + { "lat": 40.7679181, "lon": -73.9682514 }, + { "lat": 40.7679741, "lon": -73.9682111 }, + { "lat": 40.7680352, "lon": -73.9681662 }, + { "lat": 40.7685457, "lon": -73.9677956 }, + { "lat": 40.7686004, "lon": -73.9677557 }, + { "lat": 40.7686484, "lon": -73.9677212 }, + { "lat": 40.7691759, "lon": -73.9673392 }, + { "lat": 40.7692257, "lon": -73.9673032 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 195743184, + "bounds": { + "minlat": 40.7879020, + "minlon": -73.9536721, + "maxlat": 40.7936162, + "maxlon": -73.9495058 + }, + "nodes": [ + 42446093, + 7086831276, + 7078449359, + 6254630395, + 42446099, + 6254630505, + 6254630513, + 42445256, + 6254630414, + 6254630469, + 6254630443, + 7078493299, + 6254630510, + 42438963, + 6254630490, + 6254630470, + 42430474, + 6254630514, + 7078493294, + 11292691128, + 42434905, + 11292691126, + 7078493301, + 11292691124, + 42436610, + 11292691122, + 7921696721, + 6254630385, + 42446132, + 6254630452, + 6270715188, + 7078449373, + 7078449360, + 42446138 + ], + "geometry": [ + { "lat": 40.7879020, "lon": -73.9536721 }, + { "lat": 40.7879617, "lon": -73.9536294 }, + { "lat": 40.7884257, "lon": -73.9532884 }, + { "lat": 40.7884810, "lon": -73.9532480 }, + { "lat": 40.7885301, "lon": -73.9532121 }, + { "lat": 40.7885960, "lon": -73.9531647 }, + { "lat": 40.7890968, "lon": -73.9528043 }, + { "lat": 40.7891818, "lon": -73.9527422 }, + { "lat": 40.7892682, "lon": -73.9526798 }, + { "lat": 40.7897873, "lon": -73.9522985 }, + { "lat": 40.7898574, "lon": -73.9522470 }, + { "lat": 40.7902971, "lon": -73.9519272 }, + { "lat": 40.7903678, "lon": -73.9518753 }, + { "lat": 40.7904162, "lon": -73.9518390 }, + { "lat": 40.7904819, "lon": -73.9517923 }, + { "lat": 40.7909874, "lon": -73.9514258 }, + { "lat": 40.7910474, "lon": -73.9513807 }, + { "lat": 40.7911176, "lon": -73.9513313 }, + { "lat": 40.7913709, "lon": -73.9511413 }, + { "lat": 40.7916212, "lon": -73.9509588 }, + { "lat": 40.7916750, "lon": -73.9509196 }, + { "lat": 40.7917350, "lon": -73.9508763 }, + { "lat": 40.7921556, "lon": -73.9505729 }, + { "lat": 40.7922438, "lon": -73.9505109 }, + { "lat": 40.7923067, "lon": -73.9504667 }, + { "lat": 40.7923775, "lon": -73.9504143 }, + { "lat": 40.7925013, "lon": -73.9503227 }, + { "lat": 40.7928809, "lon": -73.9500439 }, + { "lat": 40.7929332, "lon": -73.9500043 }, + { "lat": 40.7929918, "lon": -73.9499596 }, + { "lat": 40.7931546, "lon": -73.9498421 }, + { "lat": 40.7934404, "lon": -73.9496337 }, + { "lat": 40.7935137, "lon": -73.9495796 }, + { "lat": 40.7936162, "lon": -73.9495058 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 195743185, + "bounds": { + "minlat": 40.7692257, + "minlon": -73.9673032, + "maxlat": 40.7717833, + "maxlon": -73.9654340 + }, + "nodes": [ + 42431674, + 10170844860, + 10170844883, + 42445994, + 10170844879, + 10122943683, + 42429682, + 10122943682, + 10122943679, + 42445227, + 10122943678, + 4207313537, + 42436477 + ], + "geometry": [ + { "lat": 40.7692257, "lon": -73.9673032 }, + { "lat": 40.7692873, "lon": -73.9672580 }, + { "lat": 40.7698013, "lon": -73.9668878 }, + { "lat": 40.7698511, "lon": -73.9668519 }, + { "lat": 40.7699059, "lon": -73.9668118 }, + { "lat": 40.7704258, "lon": -73.9664308 }, + { "lat": 40.7704755, "lon": -73.9663944 }, + { "lat": 40.7705330, "lon": -73.9663519 }, + { "lat": 40.7710447, "lon": -73.9659728 }, + { "lat": 40.7711054, "lon": -73.9659285 }, + { "lat": 40.7711539, "lon": -73.9658930 }, + { "lat": 40.7716941, "lon": -73.9654992 }, + { "lat": 40.7717833, "lon": -73.9654340 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 195743186, + "bounds": { + "minlat": 40.7986542, + "minlon": -73.9614745, + "maxlat": 40.8011120, + "maxlon": -73.9596822 + }, + "nodes": [ + 42421731, + 10171363560, + 10171241065, + 42432737, + 10171241064, + 10171241055, + 42447295, + 10171241054, + 10171363593, + 42447303, + 10171363592, + 9150529701, + 10171241046, + 12534082095 + ], + "geometry": [ + { "lat": 40.7986542, "lon": -73.9614745 }, + { "lat": 40.7987535, "lon": -73.9614014 }, + { "lat": 40.7992819, "lon": -73.9610129 }, + { "lat": 40.7993297, "lon": -73.9609777 }, + { "lat": 40.7993878, "lon": -73.9609356 }, + { "lat": 40.7999090, "lon": -73.9605583 }, + { "lat": 40.7999592, "lon": -73.9605219 }, + { "lat": 40.8000154, "lon": -73.9604805 }, + { "lat": 40.8005333, "lon": -73.9600993 }, + { "lat": 40.8005867, "lon": -73.9600600 }, + { "lat": 40.8006481, "lon": -73.9600159 }, + { "lat": 40.8009866, "lon": -73.9597726 }, + { "lat": 40.8010494, "lon": -73.9597300 }, + { "lat": 40.8011120, "lon": -73.9596822 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347126", + "wikipedia": "en:Manhattan Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743187, + "bounds": { + "minlat": 40.8050314, + "minlon": -73.9568273, + "maxlat": 40.8088548, + "maxlon": -73.9540507 + }, + "nodes": [ + 42437188, + 10165996964, + 10168010394, + 42447323, + 10168010391, + 10168010395, + 42447326, + 8250876257, + 5403787908, + 8250876243, + 42447330, + 10127369914, + 5403787907, + 11840444654, + 42429744, + 11840444652, + 10168029041, + 42445219, + 10168029038, + 5403787909, + 12534082086, + 10168029061, + 42447336 + ], + "geometry": [ + { "lat": 40.8050314, "lon": -73.9568273 }, + { "lat": 40.8051351, "lon": -73.9567512 }, + { "lat": 40.8056586, "lon": -73.9563738 }, + { "lat": 40.8057124, "lon": -73.9563350 }, + { "lat": 40.8057705, "lon": -73.9562918 }, + { "lat": 40.8062898, "lon": -73.9559063 }, + { "lat": 40.8063364, "lon": -73.9558716 }, + { "lat": 40.8063996, "lon": -73.9558259 }, + { "lat": 40.8066656, "lon": -73.9556313 }, + { "lat": 40.8069164, "lon": -73.9554479 }, + { "lat": 40.8069655, "lon": -73.9554122 }, + { "lat": 40.8070253, "lon": -73.9553688 }, + { "lat": 40.8071800, "lon": -73.9552561 }, + { "lat": 40.8075436, "lon": -73.9549884 }, + { "lat": 40.8075988, "lon": -73.9549478 }, + { "lat": 40.8076531, "lon": -73.9549087 }, + { "lat": 40.8081710, "lon": -73.9545358 }, + { "lat": 40.8082223, "lon": -73.9544988 }, + { "lat": 40.8082829, "lon": -73.9544543 }, + { "lat": 40.8084410, "lon": -73.9543380 }, + { "lat": 40.8087533, "lon": -73.9541069 }, + { "lat": 40.8087987, "lon": -73.9540796 }, + { "lat": 40.8088548, "lon": -73.9540507 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347126", + "wikipedia": "en:Manhattan Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743188, + "bounds": { + "minlat": 40.8113669, + "minlon": -73.9540099, + "maxlat": 40.8126972, + "maxlon": -73.9531404 + }, + "nodes": [ + 42436734, + 9150598853, + 9150598852, + 9150598850, + 9150598849, + 10171069622, + 42440146, + 10171069625, + 9150598848, + 9150598847, + 10171087501, + 42440144 + ], + "geometry": [ + { "lat": 40.8126972, "lon": -73.9531404 }, + { "lat": 40.8126669, "lon": -73.9531435 }, + { "lat": 40.8126346, "lon": -73.9531515 }, + { "lat": 40.8126061, "lon": -73.9531611 }, + { "lat": 40.8121620, "lon": -73.9534804 }, + { "lat": 40.8121196, "lon": -73.9535045 }, + { "lat": 40.8120517, "lon": -73.9535460 }, + { "lat": 40.8119968, "lon": -73.9535793 }, + { "lat": 40.8119415, "lon": -73.9536120 }, + { "lat": 40.8115182, "lon": -73.9539017 }, + { "lat": 40.8114771, "lon": -73.9539311 }, + { "lat": 40.8113669, "lon": -73.9540099 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "name": "Morningside Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 195743189, + "bounds": { + "minlat": 40.7152226, + "minlon": -74.0135224, + "maxlat": 40.7152775, + "maxlon": -74.0132124 + }, + "nodes": [ + 42429570, + 246858435 + ], + "geometry": [ + { "lat": 40.7152226, "lon": -74.0132124 }, + { "lat": 40.7152775, "lon": -74.0135224 } + ], + "tags": { + "cycleway:both": "lane", + "hgv": "destination", + "highway": "secondary", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 195743190, + "bounds": { + "minlat": 40.7491010, + "minlon": -73.9920060, + "maxlat": 40.7497060, + "maxlon": -73.9915630 + }, + "nodes": [ + 42439440, + 9414480617, + 5235625492, + 9414480632, + 42435422 + ], + "geometry": [ + { "lat": 40.7497060, "lon": -73.9915630 }, + { "lat": 40.7496675, "lon": -73.9915912 }, + { "lat": 40.7496345, "lon": -73.9916154 }, + { "lat": 40.7491505, "lon": -73.9919699 }, + { "lat": 40.7491010, "lon": -73.9920060 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|right", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743192, + "bounds": { + "minlat": 40.7950638, + "minlon": -73.9331708, + "maxlat": 40.7969920, + "maxlon": -73.9317474 + }, + "nodes": [ + 42435240, + 7925258658, + 13327581275, + 42439506, + 13327581267, + 6216836436, + 42448283, + 6216836417, + 6216836418, + 42448278 + ], + "geometry": [ + { "lat": 40.7969920, "lon": -73.9317474 }, + { "lat": 40.7969337, "lon": -73.9317870 }, + { "lat": 40.7964147, "lon": -73.9321703 }, + { "lat": 40.7963627, "lon": -73.9322087 }, + { "lat": 40.7963102, "lon": -73.9322464 }, + { "lat": 40.7957971, "lon": -73.9326142 }, + { "lat": 40.7957326, "lon": -73.9326614 }, + { "lat": 40.7956745, "lon": -73.9327042 }, + { "lat": 40.7951609, "lon": -73.9330796 }, + { "lat": 40.7950638, "lon": -73.9331708 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Pleasant Avenue", + "old_name:1811-1879": "Àvenue A", + "old_name:1954-1957": "Paladino Avenue", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q16932984", + "wikipedia": "en:Pleasant Avenue" + } +}, +{ + "type": "way", + "id": 195743193, + "bounds": { + "minlat": 40.7768348, + "minlon": -73.9891559, + "maxlat": 40.7781959, + "maxlon": -73.9885800 + }, + "nodes": [ + 42437845, + 11699290185, + 9177400753, + 9170766755, + 11699290178, + 42438301, + 11699290175, + 9170766754, + 9170766753, + 9170766751, + 42438300 + ], + "geometry": [ + { "lat": 40.7781959, "lon": -73.9885800 }, + { "lat": 40.7781256, "lon": -73.9886044 }, + { "lat": 40.7778154, "lon": -73.9887120 }, + { "lat": 40.7776277, "lon": -73.9887819 }, + { "lat": 40.7775414, "lon": -73.9888146 }, + { "lat": 40.7774787, "lon": -73.9888384 }, + { "lat": 40.7774212, "lon": -73.9888645 }, + { "lat": 40.7773005, "lon": -73.9889194 }, + { "lat": 40.7771617, "lon": -73.9889861 }, + { "lat": 40.7769192, "lon": -73.9891099 }, + { "lat": 40.7768348, "lon": -73.9891559 } + ], + "tags": { + "covered": "no", + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Riverside Boulevard", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743194, + "bounds": { + "minlat": 40.8211600, + "minlon": -73.9574917, + "maxlat": 40.8224991, + "maxlon": -73.9558905 + }, + "nodes": [ + 7620631148, + 10055013019, + 2505004939, + 42441947, + 42441949, + 10168100445, + 7491182058 + ], + "geometry": [ + { "lat": 40.8211600, "lon": -73.9574917 }, + { "lat": 40.8212013, "lon": -73.9573607 }, + { "lat": 40.8213037, "lon": -73.9572189 }, + { "lat": 40.8216938, "lon": -73.9567474 }, + { "lat": 40.8222347, "lon": -73.9561111 }, + { "lat": 40.8222818, "lon": -73.9560694 }, + { "lat": 40.8224991, "lon": -73.9558905 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743195, + "bounds": { + "minlat": 40.7084570, + "minlon": -74.0173980, + "maxlat": 40.7090728, + "maxlon": -74.0169509 + }, + "nodes": [ + 42427412, + 4876648469, + 10612369338, + 4876645530, + 42440628 + ], + "geometry": [ + { "lat": 40.7084570, "lon": -74.0173980 }, + { "lat": 40.7085494, "lon": -74.0173301 }, + { "lat": 40.7085824, "lon": -74.0173063 }, + { "lat": 40.7090095, "lon": -74.0169979 }, + { "lat": 40.7090728, "lon": -74.0169509 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "South End Avenue", + "name:ko": "사우스 엔드 애비뉴", + "network": "lcn", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743196, + "bounds": { + "minlat": 40.7016535, + "minlon": -74.0117885, + "maxlat": 40.7017865, + "maxlon": -74.0111627 + }, + "nodes": [ + 42431902, + 8276468927, + 9181607981 + ], + "geometry": [ + { "lat": 40.7017865, "lon": -74.0111627 }, + { "lat": 40.7017678, "lon": -74.0112425 }, + { "lat": 40.7016535, "lon": -74.0117885 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743197, + "bounds": { + "minlat": 40.7142486, + "minlon": -74.0161825, + "maxlat": 40.7147890, + "maxlon": -74.0149739 + }, + "nodes": [ + 42446854, + 5815643323, + 12299122342, + 588592974, + 12317725601 + ], + "geometry": [ + { "lat": 40.7147890, "lon": -74.0161825 }, + { "lat": 40.7147268, "lon": -74.0160548 }, + { "lat": 40.7147092, "lon": -74.0160149 }, + { "lat": 40.7143092, "lon": -74.0151092 }, + { "lat": 40.7142486, "lon": -74.0149739 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Vesey Street", + "name:etymology:wikidata": "Q8019717", + "name:etymology:wikipedia": "en:William Vessey", + "name:ko": "비지 스트리트", + "name:ru": "Визи-стрит", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592975", + "wikipedia": "en:Vesey Street" + } +}, +{ + "type": "way", + "id": 195743199, + "bounds": { + "minlat": 40.7032173, + "minlon": -74.0105380, + "maxlat": 40.7041084, + "maxlon": -74.0089696 + }, + "nodes": [ + 42421960, + 7139624471, + 11041048757, + 11041048729, + 6958376847, + 11041048756, + 11040253954, + 8276468771, + 5228410329, + 11040253956, + 11040253957, + 1251359553, + 11040253955, + 11040280570 + ], + "geometry": [ + { "lat": 40.7041084, "lon": -74.0089696 }, + { "lat": 40.7040623, "lon": -74.0090390 }, + { "lat": 40.7037597, "lon": -74.0094936 }, + { "lat": 40.7037014, "lon": -74.0095813 }, + { "lat": 40.7036934, "lon": -74.0095933 }, + { "lat": 40.7036364, "lon": -74.0096787 }, + { "lat": 40.7033677, "lon": -74.0100810 }, + { "lat": 40.7033370, "lon": -74.0101395 }, + { "lat": 40.7033084, "lon": -74.0102058 }, + { "lat": 40.7033061, "lon": -74.0102111 }, + { "lat": 40.7032777, "lon": -74.0103027 }, + { "lat": 40.7032517, "lon": -74.0104059 }, + { "lat": 40.7032361, "lon": -74.0104675 }, + { "lat": 40.7032173, "lon": -74.0105380 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 195743200, + "bounds": { + "minlat": 40.8013033, + "minlon": -73.9679955, + "maxlat": 40.8013981, + "maxlon": -73.9677649 + }, + "nodes": [ + 42421745, + 1061531654 + ], + "geometry": [ + { "lat": 40.8013981, "lon": -73.9679955 }, + { "lat": 40.8013033, "lon": -73.9677649 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743201, + "bounds": { + "minlat": 40.7990794, + "minlon": -73.9628734, + "maxlat": 40.7992437, + "maxlon": -73.9624866 + }, + "nodes": [ + 13787950059, + 9150552658, + 10171363583, + 42421737 + ], + "geometry": [ + { "lat": 40.7990794, "lon": -73.9624866 }, + { "lat": 40.7991586, "lon": -73.9626775 }, + { "lat": 40.7991884, "lon": -73.9627461 }, + { "lat": 40.7992437, "lon": -73.9628734 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lit": "yes", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 195743202, + "bounds": { + "minlat": 40.8050314, + "minlon": -73.9581910, + "maxlat": 40.8056136, + "maxlon": -73.9568273 + }, + "nodes": [ + 42437188, + 6814306901, + 6814306907, + 42437196 + ], + "geometry": [ + { "lat": 40.8050314, "lon": -73.9568273 }, + { "lat": 40.8050726, "lon": -73.9569238 }, + { "lat": 40.8055641, "lon": -73.9580738 }, + { "lat": 40.8056136, "lon": -73.9581910 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "name_1": "West 116 Street", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743203, + "bounds": { + "minlat": 40.8117315, + "minlon": -73.9550848, + "maxlat": 40.8120077, + "maxlon": -73.9548259 + }, + "nodes": [ + 42429827, + 3579426769, + 595412557, + 6824030290, + 3579426755, + 7598970693 + ], + "geometry": [ + { "lat": 40.8117315, "lon": -73.9548259 }, + { "lat": 40.8117962, "lon": -73.9548937 }, + { "lat": 40.8118767, "lon": -73.9549668 }, + { "lat": 40.8119100, "lon": -73.9549957 }, + { "lat": 40.8119166, "lon": -73.9550015 }, + { "lat": 40.8120077, "lon": -73.9550848 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743204, + "bounds": { + "minlat": 40.8143012, + "minlon": -73.9550004, + "maxlat": 40.8151098, + "maxlon": -73.9530769 + }, + "nodes": [ + 42442592, + 10055123054, + 9150598854, + 10171865598, + 42448607 + ], + "geometry": [ + { "lat": 40.8151098, "lon": -73.9550004 }, + { "lat": 40.8150566, "lon": -73.9548742 }, + { "lat": 40.8143482, "lon": -73.9531942 }, + { "lat": 40.8143401, "lon": -73.9531740 }, + { "lat": 40.8143012, "lon": -73.9530769 } + ], + "tags": { + "highway": "residential", + "name": "West 129th Street", + "name_1": "West 129 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 195743205, + "bounds": { + "minlat": 40.8151098, + "minlon": -73.9566127, + "maxlat": 40.8157920, + "maxlon": -73.9550004 + }, + "nodes": [ + 42451540, + 3894470283, + 765233265, + 10055123057, + 42442592 + ], + "geometry": [ + { "lat": 40.8157920, "lon": -73.9566127 }, + { "lat": 40.8156528, "lon": -73.9562763 }, + { "lat": 40.8155153, "lon": -73.9559497 }, + { "lat": 40.8151660, "lon": -73.9551320 }, + { "lat": 40.8151098, "lon": -73.9550004 } + ], + "tags": { + "highway": "residential", + "name": "West 129th Street", + "name_1": "West 129 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 195743206, + "bounds": { + "minlat": 40.8200718, + "minlon": -73.9551864, + "maxlat": 40.8201617, + "maxlon": -73.9549695 + }, + "nodes": [ + 42428892, + 561035349 + ], + "geometry": [ + { "lat": 40.8201617, "lon": -73.9551864 }, + { "lat": 40.8200718, "lon": -73.9549695 } + ], + "tags": { + "highway": "tertiary", + "name": "West 135th Street", + "name_1": "West 135 Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 195743208, + "bounds": { + "minlat": 40.7510092, + "minlon": -73.9934580, + "maxlat": 40.7521986, + "maxlon": -73.9906121 + }, + "nodes": [ + 42435644, + 8660596959, + 3799564975, + 10691086263, + 9421121461, + 10691086262, + 9413881838, + 42437654 + ], + "geometry": [ + { "lat": 40.7521986, "lon": -73.9934580 }, + { "lat": 40.7521481, "lon": -73.9933300 }, + { "lat": 40.7518840, "lon": -73.9926856 }, + { "lat": 40.7516114, "lon": -73.9920396 }, + { "lat": 40.7515766, "lon": -73.9919575 }, + { "lat": 40.7515404, "lon": -73.9918681 }, + { "lat": 40.7510680, "lon": -73.9907529 }, + { "lat": 40.7510092, "lon": -73.9906121 } + ], + "tags": { + "access:lanes": "yes|no", + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "foot": "designated", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743209, + "bounds": { + "minlat": 40.7553730, + "minlon": -73.9902760, + "maxlat": 40.7565670, + "maxlon": -73.9874470 + }, + "nodes": [ + 42439972, + 10168088454, + 5022414760, + 5022414759, + 9538820160, + 42435660 + ], + "geometry": [ + { "lat": 40.7553730, "lon": -73.9874470 }, + { "lat": 40.7554111, "lon": -73.9875373 }, + { "lat": 40.7557938, "lon": -73.9884441 }, + { "lat": 40.7558347, "lon": -73.9885408 }, + { "lat": 40.7565083, "lon": -73.9901369 }, + { "lat": 40.7565670, "lon": -73.9902760 } + ], + "tags": { + "highway": "unclassified", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 195743210, + "bounds": { + "minlat": 40.7565670, + "minlon": -73.9904289, + "maxlat": 40.7566313, + "maxlon": -73.9902760 + }, + "nodes": [ + 42435660, + 5916783970 + ], + "geometry": [ + { "lat": 40.7565670, "lon": -73.9902760 }, + { "lat": 40.7566313, "lon": -73.9904289 } + ], + "tags": { + "highway": "unclassified", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 195743211, + "bounds": { + "minlat": 40.7671828, + "minlon": -73.9927860, + "maxlat": 40.7683700, + "maxlon": -73.9899624 + }, + "nodes": [ + 42430736, + 8307463092, + 10713675989, + 3308681115, + 42450434 + ], + "geometry": [ + { "lat": 40.7683700, "lon": -73.9927860 }, + { "lat": 40.7683252, "lon": -73.9926760 }, + { "lat": 40.7678302, "lon": -73.9914985 }, + { "lat": 40.7672427, "lon": -73.9901020 }, + { "lat": 40.7671828, "lon": -73.9899624 } + ], + "tags": { + "bicycle": "yes", + "bicycle:lanes": "designated|", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "motor_vehicle:lanes": "no|", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743212, + "bounds": { + "minlat": 40.7739227, + "minlon": -73.9843888, + "maxlat": 40.7748013, + "maxlon": -73.9823188 + }, + "nodes": [ + 42428595, + 5117991233, + 6322584579, + 7050687019, + 42439464 + ], + "geometry": [ + { "lat": 40.7739227, "lon": -73.9823188 }, + { "lat": 40.7739793, "lon": -73.9824514 }, + { "lat": 40.7744575, "lon": -73.9835963 }, + { "lat": 40.7747434, "lon": -73.9842848 }, + { "lat": 40.7748013, "lon": -73.9843888 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 66th Street", + "name:ru": "Западная 66-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743213, + "bounds": { + "minlat": 40.7765109, + "minlon": -73.9891559, + "maxlat": 40.7768348, + "maxlon": -73.9883936 + }, + "nodes": [ + 42438819, + 9900507022, + 42438300 + ], + "geometry": [ + { "lat": 40.7765109, "lon": -73.9883936 }, + { "lat": 40.7767969, "lon": -73.9890666 }, + { "lat": 40.7768348, "lon": -73.9891559 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 66th Street", + "name:ru": "Западная 66-я стрит", + "name_1": "West 66 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743214, + "bounds": { + "minlat": 40.7763764, + "minlon": -73.9787995, + "maxlat": 40.7774164, + "maxlon": -73.9763302 + }, + "nodes": [ + 4207887847, + 6909727932, + 3269834161, + 9001520873, + 42443336 + ], + "geometry": [ + { "lat": 40.7763764, "lon": -73.9763302 }, + { "lat": 40.7764173, "lon": -73.9764274 }, + { "lat": 40.7765596, "lon": -73.9767653 }, + { "lat": 40.7773587, "lon": -73.9786625 }, + { "lat": 40.7774164, "lon": -73.9787995 } + ], + "tags": { + "alt_name": "West 72 Street", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743215, + "bounds": { + "minlat": 40.7803110, + "minlon": -73.9860353, + "maxlat": 40.7804511, + "maxlon": -73.9856862 + }, + "nodes": [ + 42424032, + 4906056153, + 9374838670 + ], + "geometry": [ + { "lat": 40.7803110, "lon": -73.9856862 }, + { "lat": 40.7803388, "lon": -73.9857588 }, + { "lat": 40.7804511, "lon": -73.9860353 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "name_1": "West 72 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743216, + "bounds": { + "minlat": 40.7792840, + "minlon": -73.9816284, + "maxlat": 40.7794990, + "maxlon": -73.9811164 + }, + "nodes": [ + 42432564, + 5115916408, + 5115917321, + 1061531757 + ], + "geometry": [ + { "lat": 40.7792840, "lon": -73.9811164 }, + { "lat": 40.7793444, "lon": -73.9812663 }, + { "lat": 40.7794559, "lon": -73.9815264 }, + { "lat": 40.7794990, "lon": -73.9816284 } + ], + "tags": { + "alt_name": "West 73 Street", + "cycleway:both": "no", + "highway": "primary", + "lanes": "3", + "name": "West 73rd Street", + "name:ru": "Западная 73-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through;right|right" + } +}, +{ + "type": "way", + "id": 195743217, + "bounds": { + "minlat": 40.7795842, + "minlon": -73.9853731, + "maxlat": 40.7810707, + "maxlon": -73.9818317 + }, + "nodes": [ + 42428637, + 5115916418, + 9492542173, + 42431005, + 9492542182, + 5115922043, + 9168918186, + 42432572 + ], + "geometry": [ + { "lat": 40.7795842, "lon": -73.9818317 }, + { "lat": 40.7796254, "lon": -73.9819284 }, + { "lat": 40.7804401, "lon": -73.9838547 }, + { "lat": 40.7804948, "lon": -73.9839842 }, + { "lat": 40.7805486, "lon": -73.9841119 }, + { "lat": 40.7810325, "lon": -73.9852621 }, + { "lat": 40.7810529, "lon": -73.9853186 }, + { "lat": 40.7810707, "lon": -73.9853731 } + ], + "tags": { + "highway": "residential", + "name": "West 73rd Street", + "name:ru": "Западная 73-я стрит", + "name_1": "West 73 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 195743218, + "bounds": { + "minlat": 40.7952567, + "minlon": -73.9752362, + "maxlat": 40.7961053, + "maxlon": -73.9732163 + }, + "nodes": [ + 42431099, + 8687882770, + 13703644170, + 587812578 + ], + "geometry": [ + { "lat": 40.7952567, "lon": -73.9732163 }, + { "lat": 40.7953101, "lon": -73.9733435 }, + { "lat": 40.7956075, "lon": -73.9740513 }, + { "lat": 40.7961053, "lon": -73.9752362 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxheight:signed": "no", + "name": "West 96th Street", + "name:ru": "Западная 96-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743219, + "bounds": { + "minlat": 40.7953010, + "minlon": -73.9714074, + "maxlat": 40.7953849, + "maxlon": -73.9712080 + }, + "nodes": [ + 1061531504, + 42428716 + ], + "geometry": [ + { "lat": 40.7953010, "lon": -73.9712080 }, + { "lat": 40.7953849, "lon": -73.9714074 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 97th Street", + "name:ru": "Западная 97-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743220, + "bounds": { + "minlat": 40.7959381, + "minlon": -73.9742913, + "maxlat": 40.7966023, + "maxlon": -73.9727170 + }, + "nodes": [ + 42431102, + 9496980730, + 6996574414, + 595314120, + 42441382 + ], + "geometry": [ + { "lat": 40.7959381, "lon": -73.9727170 }, + { "lat": 40.7959930, "lon": -73.9728496 }, + { "lat": 40.7964916, "lon": -73.9740418 }, + { "lat": 40.7965226, "lon": -73.9741146 }, + { "lat": 40.7966023, "lon": -73.9742913 } + ], + "tags": { + "highway": "residential", + "name": "West 97th Street", + "name:ru": "Западная 97-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743221, + "bounds": { + "minlat": 40.7985053, + "minlon": -73.9708452, + "maxlat": 40.7990793, + "maxlon": -73.9704265 + }, + "nodes": [ + 6912871508, + 6912871512, + 42431111 + ], + "geometry": [ + { "lat": 40.7985053, "lon": -73.9708452 }, + { "lat": 40.7990280, "lon": -73.9704658 }, + { "lat": 40.7990793, "lon": -73.9704265 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk:left": "separate", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743222, + "bounds": { + "minlat": 40.7753734, + "minlon": -73.9877140, + "maxlat": 40.7757052, + "maxlon": -73.9874708 + }, + "nodes": [ + 4207854762, + 7595748177, + 42430985 + ], + "geometry": [ + { "lat": 40.7757052, "lon": -73.9874708 }, + { "lat": 40.7754439, "lon": -73.9876616 }, + { "lat": 40.7753734, "lon": -73.9877140 } + ], + "tags": { + "cycleway:both": "no", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743223, + "bounds": { + "minlat": 40.7952567, + "minlon": -73.9732163, + "maxlat": 40.7955769, + "maxlon": -73.9729864 + }, + "nodes": [ + 4205805402, + 8687882774, + 42431099 + ], + "geometry": [ + { "lat": 40.7955769, "lon": -73.9729864 }, + { "lat": 40.7953572, "lon": -73.9731413 }, + { "lat": 40.7952567, "lon": -73.9732163 } + ], + "tags": { + "hgv": "no", + "highway": "tertiary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743224, + "bounds": { + "minlat": 40.7784773, + "minlon": -73.9854454, + "maxlat": 40.7791258, + "maxlon": -73.9849751 + }, + "nodes": [ + 42431002, + 9492542209, + 9374838669, + 42431000 + ], + "geometry": [ + { "lat": 40.7791258, "lon": -73.9849751 }, + { "lat": 40.7790746, "lon": -73.9850132 }, + { "lat": 40.7785620, "lon": -73.9853886 }, + { "lat": 40.7784773, "lon": -73.9854454 } + ], + "tags": { + "goods": "no", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743225, + "bounds": { + "minlat": 40.7107999, + "minlon": -74.0147460, + "maxlat": 40.7111162, + "maxlon": -74.0146587 + }, + "nodes": [ + 246858433, + 11374486379, + 10223354307 + ], + "geometry": [ + { "lat": 40.7111162, "lon": -74.0146587 }, + { "lat": 40.7109404, "lon": -74.0147079 }, + { "lat": 40.7107999, "lon": -74.0147460 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 195743226, + "bounds": { + "minlat": 40.7190475, + "minlon": -74.0123246, + "maxlat": 40.7203190, + "maxlon": -74.0120514 + }, + "nodes": [ + 42453417, + 373882873, + 11466637376, + 246891415, + 4207143418 + ], + "geometry": [ + { "lat": 40.7190475, "lon": -74.0123246 }, + { "lat": 40.7191627, "lon": -74.0122999 }, + { "lat": 40.7198535, "lon": -74.0121519 }, + { "lat": 40.7201985, "lon": -74.0120780 }, + { "lat": 40.7203190, "lon": -74.0120514 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 195743227, + "bounds": { + "minlat": 40.7125262, + "minlon": -74.0143239, + "maxlat": 40.7130857, + "maxlon": -74.0141631 + }, + "nodes": [ + 5813259900, + 2531682711, + 4143835693, + 4143835690, + 7334235840 + ], + "geometry": [ + { "lat": 40.7130857, "lon": -74.0141631 }, + { "lat": 40.7128828, "lon": -74.0142245 }, + { "lat": 40.7127383, "lon": -74.0142654 }, + { "lat": 40.7125981, "lon": -74.0143038 }, + { "lat": 40.7125262, "lon": -74.0143239 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "|||right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 195743228, + "bounds": { + "minlat": 40.7152226, + "minlon": -74.0132124, + "maxlat": 40.7159660, + "maxlon": -74.0130407 + }, + "nodes": [ + 42429570, + 11292548521, + 4215665527 + ], + "geometry": [ + { "lat": 40.7152226, "lon": -74.0132124 }, + { "lat": 40.7153349, "lon": -74.0131862 }, + { "lat": 40.7159660, "lon": -74.0130407 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 195743229, + "bounds": { + "minlat": 40.7171351, + "minlon": -74.0127568, + "maxlat": 40.7190475, + "maxlon": -74.0123246 + }, + "nodes": [ + 42431626, + 373882977, + 42453417 + ], + "geometry": [ + { "lat": 40.7171351, "lon": -74.0127568 }, + { "lat": 40.7189317, "lon": -74.0123505 }, + { "lat": 40.7190475, "lon": -74.0123246 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 195743264, + "bounds": { + "minlat": 40.7110047, + "minlon": -74.0143969, + "maxlat": 40.7136952, + "maxlon": -74.0137098 + }, + "nodes": [ + 42422028, + 8262936767, + 10282972455, + 10282972454, + 10282972453, + 10282972452, + 3778134968, + 1431790465, + 5813259899, + 10282972448, + 246895242, + 10282972447, + 5813280740, + 42453395 + ], + "geometry": [ + { "lat": 40.7110047, "lon": -74.0143969 }, + { "lat": 40.7111512, "lon": -74.0143564 }, + { "lat": 40.7112933, "lon": -74.0143255 }, + { "lat": 40.7115138, "lon": -74.0142859 }, + { "lat": 40.7118488, "lon": -74.0142284 }, + { "lat": 40.7121786, "lon": -74.0141597 }, + { "lat": 40.7126519, "lon": -74.0140490 }, + { "lat": 40.7129041, "lon": -74.0139835 }, + { "lat": 40.7129997, "lon": -74.0139595 }, + { "lat": 40.7131932, "lon": -74.0138978 }, + { "lat": 40.7133320, "lon": -74.0138487 }, + { "lat": 40.7135338, "lon": -74.0137713 }, + { "lat": 40.7135898, "lon": -74.0137519 }, + { "lat": 40.7136952, "lon": -74.0137098 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 195743267, + "bounds": { + "minlat": 40.7085101, + "minlon": -74.0180549, + "maxlat": 40.7087468, + "maxlon": -74.0175184 + }, + "nodes": [ + 1659428714, + 10612369336, + 4145424858 + ], + "geometry": [ + { "lat": 40.7085101, "lon": -74.0175184 }, + { "lat": 40.7085310, "lon": -74.0175656 }, + { "lat": 40.7087468, "lon": -74.0180549 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743271, + "bounds": { + "minlat": 40.7082678, + "minlon": -74.0172378, + "maxlat": 40.7084534, + "maxlon": -74.0168193 + }, + "nodes": [ + 9808249305, + 10612369335, + 1659428663 + ], + "geometry": [ + { "lat": 40.7082678, "lon": -74.0168193 }, + { "lat": 40.7084326, "lon": -74.0171908 }, + { "lat": 40.7084534, "lon": -74.0172378 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743297, + "bounds": { + "minlat": 40.7691175, + "minlon": -73.9885610, + "maxlat": 40.7696210, + "maxlon": -73.9881802 + }, + "nodes": [ + 42455643, + 3998699938, + 12427653344 + ], + "geometry": [ + { "lat": 40.7691175, "lon": -73.9885610 }, + { "lat": 40.7692158, "lon": -73.9884867 }, + { "lat": 40.7696210, "lon": -73.9881802 } + ], + "tags": { + "change": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "name_1": "10 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743301, + "bounds": { + "minlat": 40.7671828, + "minlon": -73.9899624, + "maxlat": 40.7676461, + "maxlon": -73.9896266 + }, + "nodes": [ + 42450434, + 6534229344, + 7557417108 + ], + "geometry": [ + { "lat": 40.7671828, "lon": -73.9899624 }, + { "lat": 40.7672450, "lon": -73.9899170 }, + { "lat": 40.7676461, "lon": -73.9896266 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "name_1": "10 Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743305, + "bounds": { + "minlat": 40.8025081, + "minlon": -73.9308738, + "maxlat": 40.8026118, + "maxlon": -73.9307963 + }, + "nodes": [ + 6515269079, + 42434135 + ], + "geometry": [ + { "lat": 40.8026118, "lon": -73.9307963 }, + { "lat": 40.8025081, "lon": -73.9308738 } + ], + "tags": { + "alt_name:ko": "1번가", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 195743307, + "bounds": { + "minlat": 40.7948596, + "minlon": -73.9362457, + "maxlat": 40.7953208, + "maxlon": -73.9359028 + }, + "nodes": [ + 4207948396, + 4980851589, + 42435400 + ], + "geometry": [ + { "lat": 40.7948596, "lon": -73.9362457 }, + { "lat": 40.7952491, "lon": -73.9359562 }, + { "lat": 40.7953208, "lon": -73.9359028 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 195743308, + "bounds": { + "minlat": 40.7800714, + "minlon": -73.9470292, + "maxlat": 40.7802167, + "maxlon": -73.9469228 + }, + "nodes": [ + 42456076, + 6214889044, + 8828140382 + ], + "geometry": [ + { "lat": 40.7800714, "lon": -73.9470292 }, + { "lat": 40.7801213, "lon": -73.9469928 }, + { "lat": 40.7802167, "lon": -73.9469228 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 195743309, + "bounds": { + "minlat": 40.7832515, + "minlon": -73.9447201, + "maxlat": 40.7837737, + "maxlon": -73.9443440 + }, + "nodes": [ + 4779073679, + 6162473814, + 4207786970 + ], + "geometry": [ + { "lat": 40.7832515, "lon": -73.9447201 }, + { "lat": 40.7833639, "lon": -73.9446347 }, + { "lat": 40.7837737, "lon": -73.9443440 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 195743311, + "bounds": { + "minlat": 40.7674122, + "minlon": -73.9562854, + "maxlat": 40.7678043, + "maxlon": -73.9559988 + }, + "nodes": [ + 8767790754, + 4215940676, + 3562587907, + 42436492 + ], + "geometry": [ + { "lat": 40.7674122, "lon": -73.9562854 }, + { "lat": 40.7675505, "lon": -73.9561829 }, + { "lat": 40.7677068, "lon": -73.9560696 }, + { "lat": 40.7678043, "lon": -73.9559988 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 195743312, + "bounds": { + "minlat": 40.7889397, + "minlon": -73.9405592, + "maxlat": 40.7891834, + "maxlon": -73.9403834 + }, + "nodes": [ + 42456101, + 6191027314, + 4207786978 + ], + "geometry": [ + { "lat": 40.7889397, "lon": -73.9405592 }, + { "lat": 40.7890156, "lon": -73.9405047 }, + { "lat": 40.7891834, "lon": -73.9403834 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 195743313, + "bounds": { + "minlat": 40.7760359, + "minlon": -73.9499861, + "maxlat": 40.7761941, + "maxlon": -73.9498734 + }, + "nodes": [ + 4215941089, + 7834025556, + 42456066 + ], + "geometry": [ + { "lat": 40.7760359, "lon": -73.9499861 }, + { "lat": 40.7761465, "lon": -73.9499076 }, + { "lat": 40.7761941, "lon": -73.9498734 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 195743315, + "bounds": { + "minlat": 40.7811624, + "minlon": -73.9462460, + "maxlat": 40.7813177, + "maxlon": -73.9461351 + }, + "nodes": [ + 4207786966, + 6181709418, + 42452814 + ], + "geometry": [ + { "lat": 40.7811624, "lon": -73.9462460 }, + { "lat": 40.7812515, "lon": -73.9461822 }, + { "lat": 40.7813177, "lon": -73.9461351 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "turn:lanes": "|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 195743316, + "bounds": { + "minlat": 40.7977867, + "minlon": -73.9341029, + "maxlat": 40.7979434, + "maxlon": -73.9339919 + }, + "nodes": [ + 4207669595, + 4980851579, + 42435237 + ], + "geometry": [ + { "lat": 40.7977867, "lon": -73.9341029 }, + { "lat": 40.7978864, "lon": -73.9340329 }, + { "lat": 40.7979434, "lon": -73.9339919 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 195743317, + "bounds": { + "minlat": 40.7839383, + "minlon": -73.9442196, + "maxlat": 40.7850062, + "maxlon": -73.9434364 + }, + "nodes": [ + 42449010, + 4980915604, + 6133388362, + 3900961232, + 11222397107, + 4207786971 + ], + "geometry": [ + { "lat": 40.7839383, "lon": -73.9442196 }, + { "lat": 40.7840076, "lon": -73.9441664 }, + { "lat": 40.7841571, "lon": -73.9440577 }, + { "lat": 40.7843824, "lon": -73.9438950 }, + { "lat": 40.7844075, "lon": -73.9438766 }, + { "lat": 40.7850062, "lon": -73.9434364 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 195743319, + "bounds": { + "minlat": 40.8034339, + "minlon": -73.9330811, + "maxlat": 40.8039116, + "maxlon": -73.9327700 + }, + "nodes": [ + 7926756849, + 9153702877, + 7926724567, + 42434134 + ], + "geometry": [ + { "lat": 40.8039116, "lon": -73.9327700 }, + { "lat": 40.8036740, "lon": -73.9329026 }, + { "lat": 40.8034875, "lon": -73.9330373 }, + { "lat": 40.8034339, "lon": -73.9330811 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743323, + "bounds": { + "minlat": 40.7846961, + "minlon": -73.9467730, + "maxlat": 40.7849455, + "maxlon": -73.9465916 + }, + "nodes": [ + 42443056, + 6070106312, + 5475082077 + ], + "geometry": [ + { "lat": 40.7849455, "lon": -73.9465916 }, + { "lat": 40.7848749, "lon": -73.9466425 }, + { "lat": 40.7846961, "lon": -73.9467730 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 14:00-19:00)", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743326, + "bounds": { + "minlat": 40.7835688, + "minlon": -73.9475880, + "maxlat": 40.7842494, + "maxlon": -73.9470901 + }, + "nodes": [ + 42443054, + 6070106314, + 6162473806, + 6139477292, + 6070106311, + 42434175 + ], + "geometry": [ + { "lat": 40.7842494, "lon": -73.9470901 }, + { "lat": 40.7841555, "lon": -73.9471603 }, + { "lat": 40.7838468, "lon": -73.9473846 }, + { "lat": 40.7837605, "lon": -73.9474474 }, + { "lat": 40.7836303, "lon": -73.9475421 }, + { "lat": 40.7835688, "lon": -73.9475880 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 14:00-19:00)", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "turn:lanes": "through|through|through|right", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743332, + "bounds": { + "minlat": 40.7895998, + "minlon": -73.9545251, + "maxlat": 40.7936080, + "maxlon": -73.9516020 + }, + "nodes": [ + 42456708, + 7779641279, + 7779641271, + 42436604, + 7779641272, + 7077954543, + 4969067233, + 42434904, + 4969067234, + 7089698658, + 42425127, + 7089698652, + 7077954545, + 7092397358, + 42438961, + 7092397364, + 42456335, + 7921537506, + 10610255911, + 7089698654, + 12761702755 + ], + "geometry": [ + { "lat": 40.7936080, "lon": -73.9516020 }, + { "lat": 40.7935608, "lon": -73.9516364 }, + { "lat": 40.7930423, "lon": -73.9520145 }, + { "lat": 40.7929817, "lon": -73.9520587 }, + { "lat": 40.7929300, "lon": -73.9520965 }, + { "lat": 40.7926124, "lon": -73.9523281 }, + { "lat": 40.7924060, "lon": -73.9524786 }, + { "lat": 40.7923469, "lon": -73.9525217 }, + { "lat": 40.7923020, "lon": -73.9525545 }, + { "lat": 40.7917806, "lon": -73.9529347 }, + { "lat": 40.7917204, "lon": -73.9529787 }, + { "lat": 40.7916623, "lon": -73.9530211 }, + { "lat": 40.7916320, "lon": -73.9530431 }, + { "lat": 40.7911483, "lon": -73.9533958 }, + { "lat": 40.7910863, "lon": -73.9534411 }, + { "lat": 40.7910401, "lon": -73.9534747 }, + { "lat": 40.7904713, "lon": -73.9538896 }, + { "lat": 40.7898769, "lon": -73.9543231 }, + { "lat": 40.7898509, "lon": -73.9543420 }, + { "lat": 40.7897817, "lon": -73.9543924 }, + { "lat": 40.7895998, "lon": -73.9545251 } + ], + "tags": { + "alt_name": "Museum Mile", + "cycleway:right": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 195743334, + "bounds": { + "minlat": 40.7847313, + "minlon": -73.9580844, + "maxlat": 40.7879006, + "maxlon": -73.9557669 + }, + "nodes": [ + 42443268, + 7058755700, + 11670994524, + 42434165, + 11670994525, + 7093532781, + 42444485, + 7093620727, + 7093725089, + 42452809, + 7093725098, + 7093620730, + 42448726, + 7093620724, + 5306313699, + 42456575 + ], + "geometry": [ + { "lat": 40.7879006, "lon": -73.9557669 }, + { "lat": 40.7878200, "lon": -73.9558255 }, + { "lat": 40.7872729, "lon": -73.9562259 }, + { "lat": 40.7872265, "lon": -73.9562599 }, + { "lat": 40.7871721, "lon": -73.9562997 }, + { "lat": 40.7866547, "lon": -73.9566778 }, + { "lat": 40.7866012, "lon": -73.9567171 }, + { "lat": 40.7865434, "lon": -73.9567593 }, + { "lat": 40.7860347, "lon": -73.9571313 }, + { "lat": 40.7859791, "lon": -73.9571720 }, + { "lat": 40.7859138, "lon": -73.9572197 }, + { "lat": 40.7854008, "lon": -73.9575948 }, + { "lat": 40.7853453, "lon": -73.9576355 }, + { "lat": 40.7852941, "lon": -73.9576729 }, + { "lat": 40.7847793, "lon": -73.9580493 }, + { "lat": 40.7847313, "lon": -73.9580844 } + ], + "tags": { + "alt_name": "Museum Mile", + "cycleway:right": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 195743335, + "bounds": { + "minlat": 40.7686501, + "minlon": -73.9698222, + "maxlat": 40.7692758, + "maxlon": -73.9693618 + }, + "nodes": [ + 42437423, + 6929267031, + 8746317601, + 6812799416, + 2792787013, + 42447228 + ], + "geometry": [ + { "lat": 40.7692758, "lon": -73.9693618 }, + { "lat": 40.7692277, "lon": -73.9693970 }, + { "lat": 40.7689494, "lon": -73.9696017 }, + { "lat": 40.7687531, "lon": -73.9697462 }, + { "lat": 40.7687122, "lon": -73.9697757 }, + { "lat": 40.7686501, "lon": -73.9698222 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 195743336, + "bounds": { + "minlat": 40.7616197, + "minlon": -73.9749688, + "maxlat": 40.7629723, + "maxlon": -73.9739744 + }, + "nodes": [ + 42432818, + 9971383726, + 10171655544, + 42431544, + 10171655545, + 11043134803, + 10610255908, + 42440951, + 9140929842 + ], + "geometry": [ + { "lat": 40.7629723, "lon": -73.9739744 }, + { "lat": 40.7628784, "lon": -73.9740429 }, + { "lat": 40.7623651, "lon": -73.9744172 }, + { "lat": 40.7622903, "lon": -73.9744717 }, + { "lat": 40.7622399, "lon": -73.9745091 }, + { "lat": 40.7618952, "lon": -73.9747645 }, + { "lat": 40.7617340, "lon": -73.9748839 }, + { "lat": 40.7616758, "lon": -73.9749271 }, + { "lat": 40.7616197, "lon": -73.9749688 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 195743338, + "bounds": { + "minlat": 40.7942850, + "minlon": -73.9511110, + "maxlat": 40.7966362, + "maxlon": -73.9494082 + }, + "nodes": [ + 42432395, + 6961065589, + 42456711, + 7781090335, + 7781090343, + 42436637, + 7781090332, + 7781090327, + 42445840, + 7781090339, + 7784826670, + 42450456 + ], + "geometry": [ + { "lat": 40.7966362, "lon": -73.9494082 }, + { "lat": 40.7962726, "lon": -73.9496543 }, + { "lat": 40.7962219, "lon": -73.9496927 }, + { "lat": 40.7961606, "lon": -73.9497393 }, + { "lat": 40.7956482, "lon": -73.9501125 }, + { "lat": 40.7955852, "lon": -73.9501580 }, + { "lat": 40.7955307, "lon": -73.9501978 }, + { "lat": 40.7950178, "lon": -73.9505687 }, + { "lat": 40.7949631, "lon": -73.9506082 }, + { "lat": 40.7949118, "lon": -73.9506462 }, + { "lat": 40.7943824, "lon": -73.9510388 }, + { "lat": 40.7942850, "lon": -73.9511110 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 195743339, + "bounds": { + "minlat": 40.7692758, + "minlon": -73.9693618, + "maxlat": 40.7724555, + "maxlon": -73.9670325 + }, + "nodes": [ + 42436475, + 3278932290, + 7797650087, + 42445225, + 7797650085, + 7797632767, + 42429680, + 7797632770, + 7797632758, + 42455693, + 7797632783, + 7797632777, + 42431671, + 7797650091, + 6929267007, + 42437423 + ], + "geometry": [ + { "lat": 40.7724555, "lon": -73.9670325 }, + { "lat": 40.7723686, "lon": -73.9670914 }, + { "lat": 40.7718381, "lon": -73.9674891 }, + { "lat": 40.7717837, "lon": -73.9675292 }, + { "lat": 40.7717270, "lon": -73.9675701 }, + { "lat": 40.7712067, "lon": -73.9679503 }, + { "lat": 40.7711470, "lon": -73.9679940 }, + { "lat": 40.7711057, "lon": -73.9680239 }, + { "lat": 40.7705849, "lon": -73.9684042 }, + { "lat": 40.7705251, "lon": -73.9684509 }, + { "lat": 40.7704736, "lon": -73.9684883 }, + { "lat": 40.7699543, "lon": -73.9688653 }, + { "lat": 40.7699010, "lon": -73.9689040 }, + { "lat": 40.7698449, "lon": -73.9689451 }, + { "lat": 40.7693305, "lon": -73.9693214 }, + { "lat": 40.7692758, "lon": -73.9693618 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "motorcar": "yes", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 195743341, + "bounds": { + "minlat": 40.7336073, + "minlon": -73.9953994, + "maxlat": 40.7346805, + "maxlon": -73.9946012 + }, + "nodes": [ + 42439070, + 8309479789, + 5243716991, + 8309479762, + 42449067, + 8309479763, + 9470088388 + ], + "geometry": [ + { "lat": 40.7346805, "lon": -73.9946012 }, + { "lat": 40.7346292, "lon": -73.9946398 }, + { "lat": 40.7344292, "lon": -73.9947905 }, + { "lat": 40.7340986, "lon": -73.9950260 }, + { "lat": 40.7340457, "lon": -73.9950635 }, + { "lat": 40.7339906, "lon": -73.9951043 }, + { "lat": 40.7336073, "lon": -73.9953994 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 195743342, + "bounds": { + "minlat": 40.7655257, + "minlon": -73.9721171, + "maxlat": 40.7686501, + "maxlon": -73.9698222 + }, + "nodes": [ + 42447228, + 2792787010, + 2792787025, + 42455662, + 2792787014, + 7797632756, + 42431649, + 7797632751, + 7797650099, + 42429970, + 7797650098, + 7797632775, + 42456683, + 7797632762, + 7797650094, + 42436510 + ], + "geometry": [ + { "lat": 40.7686501, "lon": -73.9698222 }, + { "lat": 40.7685894, "lon": -73.9698666 }, + { "lat": 40.7680917, "lon": -73.9702320 }, + { "lat": 40.7680278, "lon": -73.9702791 }, + { "lat": 40.7679648, "lon": -73.9703236 }, + { "lat": 40.7674486, "lon": -73.9706893 }, + { "lat": 40.7673940, "lon": -73.9707280 }, + { "lat": 40.7673441, "lon": -73.9707647 }, + { "lat": 40.7668285, "lon": -73.9711438 }, + { "lat": 40.7667670, "lon": -73.9711890 }, + { "lat": 40.7667175, "lon": -73.9712254 }, + { "lat": 40.7662074, "lon": -73.9716054 }, + { "lat": 40.7661447, "lon": -73.9716518 }, + { "lat": 40.7660960, "lon": -73.9716888 }, + { "lat": 40.7655872, "lon": -73.9720712 }, + { "lat": 40.7655257, "lon": -73.9721171 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 195743343, + "bounds": { + "minlat": 40.7471520, + "minlon": -73.9854903, + "maxlat": 40.7484537, + "maxlon": -73.9845455 + }, + "nodes": [ + 42437644, + 7782217017, + 10169157386, + 42446701, + 10169157388, + 11043134797, + 10173045239, + 42443680 + ], + "geometry": [ + { "lat": 40.7484537, "lon": -73.9845455 }, + { "lat": 40.7483515, "lon": -73.9846181 }, + { "lat": 40.7478331, "lon": -73.9849950 }, + { "lat": 40.7477740, "lon": -73.9850381 }, + { "lat": 40.7477111, "lon": -73.9850837 }, + { "lat": 40.7474946, "lon": -73.9852412 }, + { "lat": 40.7472091, "lon": -73.9854489 }, + { "lat": 40.7471520, "lon": -73.9854903 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 195743344, + "bounds": { + "minlat": 40.7550300, + "minlon": -73.9876920, + "maxlat": 40.7553730, + "maxlon": -73.9874470 + }, + "nodes": [ + 42439972, + 10168088453, + 5475605304 + ], + "geometry": [ + { "lat": 40.7553730, "lon": -73.9874470 }, + { "lat": 40.7553198, "lon": -73.9874850 }, + { "lat": 40.7550300, "lon": -73.9876920 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|none", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743345, + "bounds": { + "minlat": 40.7565670, + "minlon": -73.9902760, + "maxlat": 40.7568684, + "maxlon": -73.9900569 + }, + "nodes": [ + 42435660, + 9538820161, + 4207957613 + ], + "geometry": [ + { "lat": 40.7565670, "lon": -73.9902760 }, + { "lat": 40.7566259, "lon": -73.9902332 }, + { "lat": 40.7568684, "lon": -73.9900569 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743554, + "bounds": { + "minlat": 40.7222849, + "minlon": -73.9862671, + "maxlat": 40.7248589, + "maxlon": -73.9843993 + }, + "nodes": [ + 9166033062, + 4544006773, + 12539298227, + 9166033063, + 11040080982, + 11040029976, + 7977832442, + 42453604, + 7977832441, + 7977832448, + 42437343, + 8921278265, + 7977832452, + 42455051, + 7120676183, + 12539298226, + 11040080984, + 7120757700, + 42453175 + ], + "geometry": [ + { "lat": 40.7222849, "lon": -73.9862671 }, + { "lat": 40.7223654, "lon": -73.9862227 }, + { "lat": 40.7223830, "lon": -73.9862097 }, + { "lat": 40.7224176, "lon": -73.9861842 }, + { "lat": 40.7224343, "lon": -73.9861710 }, + { "lat": 40.7226684, "lon": -73.9859980 }, + { "lat": 40.7229421, "lon": -73.9857957 }, + { "lat": 40.7230074, "lon": -73.9857481 }, + { "lat": 40.7230830, "lon": -73.9856930 }, + { "lat": 40.7235920, "lon": -73.9853221 }, + { "lat": 40.7236472, "lon": -73.9852818 }, + { "lat": 40.7237019, "lon": -73.9852420 }, + { "lat": 40.7242049, "lon": -73.9848756 }, + { "lat": 40.7242664, "lon": -73.9848308 }, + { "lat": 40.7243365, "lon": -73.9847798 }, + { "lat": 40.7245166, "lon": -73.9846487 }, + { "lat": 40.7246633, "lon": -73.9845418 }, + { "lat": 40.7248021, "lon": -73.9844407 }, + { "lat": 40.7248589, "lon": -73.9843993 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "share_busway", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Avenue A", + "name:ru": "Авеню A", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790552", + "wikipedia": "en:Avenue A (Manhattan)" + } +}, +{ + "type": "way", + "id": 195743555, + "bounds": { + "minlat": 40.7365975, + "minlon": -74.0017550, + "maxlat": 40.7376609, + "maxlon": -74.0011098 + }, + "nodes": [ + 42430828, + 8262308485, + 42432205, + 8262308350, + 42432208 + ], + "geometry": [ + { "lat": 40.7365975, "lon": -74.0011098 }, + { "lat": 40.7367061, "lon": -74.0011816 }, + { "lat": 40.7371680, "lon": -74.0014630 }, + { "lat": 40.7375844, "lon": -74.0017097 }, + { "lat": 40.7376609, "lon": -74.0017550 } + ], + "tags": { + "cycleway:both": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenwich Avenue", + "name:etymology:wikidata": "Q205380", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5604832", + "wikipedia": "en:Greenwich Avenue" + } +}, +{ + "type": "way", + "id": 195743556, + "bounds": { + "minlat": 40.7346949, + "minlon": -73.9999737, + "maxlat": 40.7348376, + "maxlon": -73.9988635 + }, + "nodes": [ + 42432194, + 4320194277, + 6254325748, + 42421901, + 12179564376, + 12179564377, + 12179564378, + 12179564379, + 42457721 + ], + "geometry": [ + { "lat": 40.7346949, "lon": -73.9999737 }, + { "lat": 40.7347031, "lon": -73.9998571 }, + { "lat": 40.7347629, "lon": -73.9994426 }, + { "lat": 40.7347911, "lon": -73.9992532 }, + { "lat": 40.7348315, "lon": -73.9989733 }, + { "lat": 40.7348361, "lon": -73.9989418 }, + { "lat": 40.7348376, "lon": -73.9989130 }, + { "lat": 40.7348367, "lon": -73.9988894 }, + { "lat": 40.7348352, "lon": -73.9988635 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 10th Street", + "name:ru": "Западная 10-я стрит", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195743557, + "bounds": { + "minlat": 40.7331430, + "minlon": -74.0101693, + "maxlat": 40.7338609, + "maxlon": -74.0101038 + }, + "nodes": [ + 42453457, + 12161966192, + 246874702, + 42452613 + ], + "geometry": [ + { "lat": 40.7331430, "lon": -74.0101693 }, + { "lat": 40.7337564, "lon": -74.0101119 }, + { "lat": 40.7338077, "lon": -74.0101077 }, + { "lat": 40.7338609, "lon": -74.0101038 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 195745911, + "bounds": { + "minlat": 40.7146759, + "minlon": -73.9918872, + "maxlat": 40.7149028, + "maxlon": -73.9911284 + }, + "nodes": [ + 42440679, + 9941087938, + 13070742270, + 42440792 + ], + "geometry": [ + { "lat": 40.7146759, "lon": -73.9911284 }, + { "lat": 40.7146974, "lon": -73.9912003 }, + { "lat": 40.7148860, "lon": -73.9918311 }, + { "lat": 40.7149028, "lon": -73.9918872 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 15:00-23:00; Sa-Su 10:00-23:00)", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195745912, + "bounds": { + "minlat": 40.8040862, + "minlon": -73.9374253, + "maxlat": 40.8043802, + "maxlon": -73.9367288 + }, + "nodes": [ + 4215812466, + 11255243808, + 4980798204, + 42444457 + ], + "geometry": [ + { "lat": 40.8040862, "lon": -73.9367288 }, + { "lat": 40.8041350, "lon": -73.9368445 }, + { "lat": 40.8043468, "lon": -73.9373462 }, + { "lat": 40.8043802, "lon": -73.9374253 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:forward": "2", + "lanes:psv:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195745913, + "bounds": { + "minlat": 40.8030191, + "minlon": -73.9358291, + "maxlat": 40.8037065, + "maxlon": -73.9341867 + }, + "nodes": [ + 42444458, + 4980798213, + 5161751673, + 12231139772 + ], + "geometry": [ + { "lat": 40.8037065, "lon": -73.9358291 }, + { "lat": 40.8036481, "lon": -73.9356895 }, + { "lat": 40.8031639, "lon": -73.9345327 }, + { "lat": 40.8030191, "lon": -73.9341867 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:forward": "1", + "lit": "yes", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 195745914, + "bounds": { + "minlat": 40.7394995, + "minlon": -73.9842672, + "maxlat": 40.7401771, + "maxlon": -73.9826691 + }, + "nodes": [ + 42436582, + 8835579630, + 8753427897, + 4115878741, + 42436586 + ], + "geometry": [ + { "lat": 40.7401771, "lon": -73.9842672 }, + { "lat": 40.7401324, "lon": -73.9841639 }, + { "lat": 40.7396248, "lon": -73.9829689 }, + { "lat": 40.7395551, "lon": -73.9828029 }, + { "lat": 40.7394995, "lon": -73.9826691 } + ], + "tags": { + "cycleway:both": "no", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 24th Street", + "name:ru": "Восточная 24-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195745915, + "bounds": { + "minlat": 40.7385557, + "minlon": -73.9826691, + "maxlat": 40.7394995, + "maxlon": -73.9804284 + }, + "nodes": [ + 42436586, + 4115878739, + 8119192792, + 42436590 + ], + "geometry": [ + { "lat": 40.7394995, "lon": -73.9826691 }, + { "lat": 40.7394414, "lon": -73.9825310 }, + { "lat": 40.7386116, "lon": -73.9805609 }, + { "lat": 40.7385557, "lon": -73.9804284 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 24th Street", + "name:ru": "Восточная 24-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195745916, + "bounds": { + "minlat": 40.7220644, + "minlon": -73.9862671, + "maxlat": 40.7222849, + "maxlon": -73.9855770 + }, + "nodes": [ + 8307642243, + 42455039, + 4598752829, + 9166033062 + ], + "geometry": [ + { "lat": 40.7220644, "lon": -73.9855770 }, + { "lat": 40.7222210, "lon": -73.9860924 }, + { "lat": 40.7222415, "lon": -73.9861487 }, + { "lat": 40.7222849, "lon": -73.9862671 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 195745917, + "bounds": { + "minlat": 40.7219214, + "minlon": -73.9863339, + "maxlat": 40.7221638, + "maxlon": -73.9855447 + }, + "nodes": [ + 9166033061, + 4598752868, + 9181587105, + 8821475423, + 8307642244, + 1919595924 + ], + "geometry": [ + { "lat": 40.7221638, "lon": -73.9863339 }, + { "lat": 40.7221268, "lon": -73.9862156 }, + { "lat": 40.7219925, "lon": -73.9857759 }, + { "lat": 40.7219680, "lon": -73.9856946 }, + { "lat": 40.7219479, "lon": -73.9856330 }, + { "lat": 40.7219214, "lon": -73.9855447 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 195745925, + "bounds": { + "minlat": 40.7140183, + "minlon": -73.9974891, + "maxlat": 40.7140953, + "maxlon": -73.9974280 + }, + "nodes": [ + 12374690312, + 4160344090, + 1773066054 + ], + "geometry": [ + { "lat": 40.7140183, "lon": -73.9974891 }, + { "lat": 40.7140471, "lon": -73.9974628 }, + { "lat": 40.7140953, "lon": -73.9974280 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 195834894, + "bounds": { + "minlat": 40.7369314, + "minlon": -74.0063304, + "maxlat": 40.7369602, + "maxlon": -74.0058568 + }, + "nodes": [ + 247402950, + 1825739998, + 1825739995, + 12162483551, + 1825739992, + 12162483552, + 5244251222 + ], + "geometry": [ + { "lat": 40.7369518, "lon": -74.0058568 }, + { "lat": 40.7369438, "lon": -74.0058666 }, + { "lat": 40.7369378, "lon": -74.0058801 }, + { "lat": 40.7369338, "lon": -74.0058998 }, + { "lat": 40.7369314, "lon": -74.0059199 }, + { "lat": 40.7369326, "lon": -74.0059464 }, + { "lat": 40.7369602, "lon": -74.0063304 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bethune Street", + "name:etymology:wikidata": "Q1690802", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 195922666, + "bounds": { + "minlat": 40.7795541, + "minlon": -73.9879995, + "maxlat": 40.7805015, + "maxlon": -73.9873489 + }, + "nodes": [ + 42438306, + 2346800737, + 9170766759, + 2346800738, + 2346800739, + 61272284, + 9168918154, + 595245840 + ], + "geometry": [ + { "lat": 40.7795541, "lon": -73.9879995 }, + { "lat": 40.7796318, "lon": -73.9879578 }, + { "lat": 40.7797452, "lon": -73.9878841 }, + { "lat": 40.7798653, "lon": -73.9878098 }, + { "lat": 40.7799768, "lon": -73.9877353 }, + { "lat": 40.7802310, "lon": -73.9875459 }, + { "lat": 40.7804465, "lon": -73.9873919 }, + { "lat": 40.7805015, "lon": -73.9873489 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Riverside Boulevard", + "oneway": "no", + "sidewalk": "both", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 196116963, + "bounds": { + "minlat": 40.8248415, + "minlon": -73.9368478, + "maxlat": 40.8258024, + "maxlon": -73.9361454 + }, + "nodes": [ + 2141002590, + 2141005046, + 42439929, + 10177607157, + 10177607153, + 42439927 + ], + "geometry": [ + { "lat": 40.8258024, "lon": -73.9361454 }, + { "lat": 40.8255214, "lon": -73.9363529 }, + { "lat": 40.8254654, "lon": -73.9363928 }, + { "lat": 40.8254158, "lon": -73.9364290 }, + { "lat": 40.8249022, "lon": -73.9368036 }, + { "lat": 40.8248415, "lon": -73.9368478 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116964, + "bounds": { + "minlat": 40.8359308, + "minlon": -73.9398047, + "maxlat": 40.8360717, + "maxlon": -73.9397127 + }, + "nodes": [ + 4378236645, + 4207731296 + ], + "geometry": [ + { "lat": 40.8359308, "lon": -73.9398047 }, + { "lat": 40.8360717, "lon": -73.9397127 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116966, + "bounds": { + "minlat": 40.8461578, + "minlon": -73.9323269, + "maxlat": 40.8462291, + "maxlon": -73.9322748 + }, + "nodes": [ + 42423116, + 595473048 + ], + "geometry": [ + { "lat": 40.8461578, "lon": -73.9323269 }, + { "lat": 40.8462291, "lon": -73.9322748 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116967, + "bounds": { + "minlat": 40.8245499, + "minlon": -73.9480922, + "maxlat": 40.8283947, + "maxlon": -73.9452839 + }, + "nodes": [ + 42442621, + 11200341571, + 11221649612, + 42434262, + 11221649611, + 11221649607, + 42442625, + 11221649608, + 11218864390, + 42442628, + 11218864389, + 11218879846, + 42439213, + 11218879845, + 11218879852, + 42434340, + 11218879851, + 11221649604, + 42442635 + ], + "geometry": [ + { "lat": 40.8245499, "lon": -73.9480922 }, + { "lat": 40.8246173, "lon": -73.9480436 }, + { "lat": 40.8251405, "lon": -73.9476664 }, + { "lat": 40.8252380, "lon": -73.9475961 }, + { "lat": 40.8253361, "lon": -73.9475234 }, + { "lat": 40.8258494, "lon": -73.9471435 }, + { "lat": 40.8259010, "lon": -73.9471053 }, + { "lat": 40.8259581, "lon": -73.9470635 }, + { "lat": 40.8264760, "lon": -73.9466846 }, + { "lat": 40.8265263, "lon": -73.9466483 }, + { "lat": 40.8265855, "lon": -73.9466051 }, + { "lat": 40.8270966, "lon": -73.9462320 }, + { "lat": 40.8271519, "lon": -73.9461917 }, + { "lat": 40.8272089, "lon": -73.9461496 }, + { "lat": 40.8277252, "lon": -73.9457730 }, + { "lat": 40.8277796, "lon": -73.9457333 }, + { "lat": 40.8278391, "lon": -73.9456896 }, + { "lat": 40.8283445, "lon": -73.9453206 }, + { "lat": 40.8283947, "lon": -73.9452839 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:both_ways": "1", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:both_ways": "left", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116968, + "bounds": { + "minlat": 40.8424347, + "minlon": -73.9350278, + "maxlat": 40.8426539, + "maxlon": -73.9348771 + }, + "nodes": [ + 765365632, + 10668997785 + ], + "geometry": [ + { "lat": 40.8424347, "lon": -73.9350278 }, + { "lat": 40.8426539, "lon": -73.9348771 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116969, + "bounds": { + "minlat": 40.8468056, + "minlon": -73.9318532, + "maxlat": 40.8478163, + "maxlon": -73.9311139 + }, + "nodes": [ + 42442733, + 9550751264, + 12461893552, + 9566914923, + 42428080, + 9566914922, + 13768867401, + 42427016, + 4207702046 + ], + "geometry": [ + { "lat": 40.8468056, "lon": -73.9318532 }, + { "lat": 40.8468695, "lon": -73.9318063 }, + { "lat": 40.8471253, "lon": -73.9316193 }, + { "lat": 40.8473767, "lon": -73.9314354 }, + { "lat": 40.8474296, "lon": -73.9313968 }, + { "lat": 40.8474897, "lon": -73.9313528 }, + { "lat": 40.8477391, "lon": -73.9311704 }, + { "lat": 40.8477450, "lon": -73.9311661 }, + { "lat": 40.8478163, "lon": -73.9311139 } + ], + "tags": { + "cycleway:both": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116970, + "bounds": { + "minlat": 40.8004295, + "minlon": -73.9656909, + "maxlat": 40.8007947, + "maxlon": -73.9654264 + }, + "nodes": [ + 42421741, + 10166004078, + 13768397315 + ], + "geometry": [ + { "lat": 40.8004295, "lon": -73.9656909 }, + { "lat": 40.8005311, "lon": -73.9656174 }, + { "lat": 40.8007947, "lon": -73.9654264 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116971, + "bounds": { + "minlat": 40.8096560, + "minlon": -73.9589820, + "maxlat": 40.8100023, + "maxlon": -73.9587270 + }, + "nodes": [ + 12759646635, + 6916346847, + 3579432161 + ], + "geometry": [ + { "lat": 40.8096560, "lon": -73.9589820 }, + { "lat": 40.8099528, "lon": -73.9587632 }, + { "lat": 40.8100023, "lon": -73.9587270 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116972, + "bounds": { + "minlat": 40.8315742, + "minlon": -73.9429722, + "maxlat": 40.8347248, + "maxlon": -73.9406514 + }, + "nodes": [ + 42442651, + 11221649597, + 11291880591, + 42433339, + 11291880590, + 11291880589, + 42442656, + 11291880588, + 11291880469, + 42442659, + 11291862067, + 11291880587, + 42438257, + 11291880481, + 9935939406, + 42442664 + ], + "geometry": [ + { "lat": 40.8315742, "lon": -73.9429722 }, + { "lat": 40.8316591, "lon": -73.9429042 }, + { "lat": 40.8321839, "lon": -73.9425161 }, + { "lat": 40.8322331, "lon": -73.9424802 }, + { "lat": 40.8322929, "lon": -73.9424365 }, + { "lat": 40.8328094, "lon": -73.9420592 }, + { "lat": 40.8328806, "lon": -73.9420072 }, + { "lat": 40.8329229, "lon": -73.9419763 }, + { "lat": 40.8334312, "lon": -73.9416050 }, + { "lat": 40.8334829, "lon": -73.9415672 }, + { "lat": 40.8335448, "lon": -73.9415220 }, + { "lat": 40.8340575, "lon": -73.9411475 }, + { "lat": 40.8341102, "lon": -73.9411090 }, + { "lat": 40.8341705, "lon": -73.9410641 }, + { "lat": 40.8346725, "lon": -73.9406905 }, + { "lat": 40.8347248, "lon": -73.9406514 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116974, + "bounds": { + "minlat": 40.7369674, + "minlon": -74.0083557, + "maxlat": 40.7369722, + "maxlon": -74.0064962 + }, + "nodes": [ + 42436149, + 10168546909, + 12162436906, + 11608896513, + 42459436, + 11608896515 + ], + "geometry": [ + { "lat": 40.7369674, "lon": -74.0064962 }, + { "lat": 40.7369679, "lon": -74.0065926 }, + { "lat": 40.7369714, "lon": -74.0080912 }, + { "lat": 40.7369716, "lon": -74.0081522 }, + { "lat": 40.7369713, "lon": -74.0082739 }, + { "lat": 40.7369722, "lon": -74.0083557 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bethune Street", + "name:etymology:wikidata": "Q1690802", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 196116975, + "bounds": { + "minlat": 40.7706115, + "minlon": -73.9822603, + "maxlat": 40.7714348, + "maxlon": -73.9822476 + }, + "nodes": [ + 42428579, + 11306331973, + 7515977400, + 42428575 + ], + "geometry": [ + { "lat": 40.7714348, "lon": -73.9822603 }, + { "lat": 40.7713617, "lon": -73.9822592 }, + { "lat": 40.7706944, "lon": -73.9822508 }, + { "lat": 40.7706115, "lon": -73.9822476 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116976, + "bounds": { + "minlat": 40.7656840, + "minlon": -73.9820004, + "maxlat": 40.7663005, + "maxlon": -73.9818935 + }, + "nodes": [ + 42428329, + 8785244291, + 13233711092 + ], + "geometry": [ + { "lat": 40.7663005, "lon": -73.9818935 }, + { "lat": 40.7661962, "lon": -73.9819115 }, + { "lat": 40.7656840, "lon": -73.9820004 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116978, + "bounds": { + "minlat": 40.7130447, + "minlon": -74.0072254, + "maxlat": 40.7136180, + "maxlon": -74.0067530 + }, + "nodes": [ + 2821304136, + 8262309630, + 8262309224, + 2821304137 + ], + "geometry": [ + { "lat": 40.7136180, "lon": -74.0067530 }, + { "lat": 40.7135429, "lon": -74.0068145 }, + { "lat": 40.7130847, "lon": -74.0071936 }, + { "lat": 40.7130447, "lon": -74.0072254 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-18:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116979, + "bounds": { + "minlat": 40.7136180, + "minlon": -74.0067530, + "maxlat": 40.7141733, + "maxlon": -74.0063041 + }, + "nodes": [ + 272195271, + 5083818854, + 8767982155, + 4742733154, + 4742717549, + 4742697046, + 1272562880, + 2821304136 + ], + "geometry": [ + { "lat": 40.7141733, "lon": -74.0063041 }, + { "lat": 40.7140988, "lon": -74.0063641 }, + { "lat": 40.7140224, "lon": -74.0064260 }, + { "lat": 40.7139308, "lon": -74.0065001 }, + { "lat": 40.7138153, "lon": -74.0065935 }, + { "lat": 40.7137685, "lon": -74.0066313 }, + { "lat": 40.7136809, "lon": -74.0067023 }, + { "lat": 40.7136180, "lon": -74.0067530 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|yes|designated", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-18:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116980, + "bounds": { + "minlat": 40.7714348, + "minlon": -73.9822758, + "maxlat": 40.7722036, + "maxlon": -73.9822603 + }, + "nodes": [ + 42428583, + 11306331972, + 42428579 + ], + "geometry": [ + { "lat": 40.7722036, "lon": -73.9822758 }, + { "lat": 40.7715245, "lon": -73.9822618 }, + { "lat": 40.7714348, "lon": -73.9822603 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116981, + "bounds": { + "minlat": 40.8728468, + "minlon": -73.9119097, + "maxlat": 40.8731938, + "maxlon": -73.9115496 + }, + "nodes": [ + 1544809889, + 1544809882, + 7612920599, + 3966664825, + 1399181883 + ], + "geometry": [ + { "lat": 40.8728468, "lon": -73.9119097 }, + { "lat": 40.8729372, "lon": -73.9118281 }, + { "lat": 40.8729553, "lon": -73.9118102 }, + { "lat": 40.8730057, "lon": -73.9117604 }, + { "lat": 40.8731938, "lon": -73.9115496 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116982, + "bounds": { + "minlat": 40.7975824, + "minlon": -73.9697872, + "maxlat": 40.8013981, + "maxlon": -73.9679955 + }, + "nodes": [ + 42421745, + 10166004117, + 10166004111, + 11803957852, + 9654214292, + 9177532562, + 1989076883, + 2384892259, + 9646862888, + 42428746, + 9646862889, + 9177532557, + 7801775759, + 42428742, + 7801775757, + 1989076881, + 42428737, + 7801775709, + 7801775769, + 42428728, + 7801775729, + 9177516878 + ], + "geometry": [ + { "lat": 40.8013981, "lon": -73.9679955 }, + { "lat": 40.8012820, "lon": -73.9680091 }, + { "lat": 40.8006377, "lon": -73.9680792 }, + { "lat": 40.8005602, "lon": -73.9680927 }, + { "lat": 40.8004924, "lon": -73.9681046 }, + { "lat": 40.8004009, "lon": -73.9681189 }, + { "lat": 40.8003421, "lon": -73.9681327 }, + { "lat": 40.7999500, "lon": -73.9682567 }, + { "lat": 40.7998961, "lon": -73.9682770 }, + { "lat": 40.7998235, "lon": -73.9683098 }, + { "lat": 40.7997659, "lon": -73.9683358 }, + { "lat": 40.7992741, "lon": -73.9685913 }, + { "lat": 40.7992205, "lon": -73.9686185 }, + { "lat": 40.7991535, "lon": -73.9686546 }, + { "lat": 40.7990973, "lon": -73.9686898 }, + { "lat": 40.7985789, "lon": -73.9690576 }, + { "lat": 40.7985155, "lon": -73.9691051 }, + { "lat": 40.7984663, "lon": -73.9691433 }, + { "lat": 40.7979516, "lon": -73.9695148 }, + { "lat": 40.7978923, "lon": -73.9695597 }, + { "lat": 40.7978416, "lon": -73.9695983 }, + { "lat": 40.7975824, "lon": -73.9697872 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116983, + "bounds": { + "minlat": 40.8114371, + "minlon": -73.9612774, + "maxlat": 40.8156143, + "maxlon": -73.9582064 + }, + "nodes": [ + 13840703534, + 6886294945, + 9520170423, + 1506599378, + 6886295101, + 1506599377, + 11851500940, + 561035342, + 11851500941, + 7598688540, + 7598688543, + 5481847043, + 7598641858, + 10049830859, + 5763775589, + 7598930224, + 10056815671, + 9515699765, + 6871927724, + 561035343 + ], + "geometry": [ + { "lat": 40.8114371, "lon": -73.9612774 }, + { "lat": 40.8115037, "lon": -73.9612217 }, + { "lat": 40.8117191, "lon": -73.9610573 }, + { "lat": 40.8117893, "lon": -73.9610036 }, + { "lat": 40.8118610, "lon": -73.9609527 }, + { "lat": 40.8124135, "lon": -73.9605437 }, + { "lat": 40.8136435, "lon": -73.9596289 }, + { "lat": 40.8137352, "lon": -73.9595608 }, + { "lat": 40.8138245, "lon": -73.9595004 }, + { "lat": 40.8141651, "lon": -73.9592706 }, + { "lat": 40.8144566, "lon": -73.9590607 }, + { "lat": 40.8146560, "lon": -73.9589171 }, + { "lat": 40.8147747, "lon": -73.9588269 }, + { "lat": 40.8149772, "lon": -73.9586719 }, + { "lat": 40.8150353, "lon": -73.9586275 }, + { "lat": 40.8150968, "lon": -73.9585852 }, + { "lat": 40.8151023, "lon": -73.9585814 }, + { "lat": 40.8151680, "lon": -73.9585365 }, + { "lat": 40.8154778, "lon": -73.9582954 }, + { "lat": 40.8156143, "lon": -73.9582064 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116984, + "bounds": { + "minlat": 40.8093630, + "minlon": -73.9630374, + "maxlat": 40.8105801, + "maxlon": -73.9621587 + }, + "nodes": [ + 1506591536, + 11851500944, + 11851500953, + 6223571521, + 11851500955, + 11851500963, + 6223571523 + ], + "geometry": [ + { "lat": 40.8105801, "lon": -73.9621587 }, + { "lat": 40.8104812, "lon": -73.9622354 }, + { "lat": 40.8100520, "lon": -73.9625495 }, + { "lat": 40.8100102, "lon": -73.9625801 }, + { "lat": 40.8099483, "lon": -73.9626267 }, + { "lat": 40.8094200, "lon": -73.9629974 }, + { "lat": 40.8093630, "lon": -73.9630374 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116985, + "bounds": { + "minlat": 40.8013033, + "minlon": -73.9677649, + "maxlat": 40.8041328, + "maxlon": -73.9666013 + }, + "nodes": [ + 1061531654, + 10166004116, + 9177532563, + 10166004050, + 1061531717, + 7004393050, + 6886957282, + 595314108, + 595314109, + 7004393048, + 595314104, + 10166004064, + 7004393046, + 561035330, + 7004393043, + 7004393042, + 3579432156 + ], + "geometry": [ + { "lat": 40.8013033, "lon": -73.9677649 }, + { "lat": 40.8014370, "lon": -73.9677565 }, + { "lat": 40.8020190, "lon": -73.9677112 }, + { "lat": 40.8020860, "lon": -73.9676997 }, + { "lat": 40.8021586, "lon": -73.9676859 }, + { "lat": 40.8022310, "lon": -73.9676755 }, + { "lat": 40.8024765, "lon": -73.9676371 }, + { "lat": 40.8026093, "lon": -73.9675963 }, + { "lat": 40.8027632, "lon": -73.9675332 }, + { "lat": 40.8028269, "lon": -73.9675054 }, + { "lat": 40.8028910, "lon": -73.9674843 }, + { "lat": 40.8029626, "lon": -73.9674502 }, + { "lat": 40.8034700, "lon": -73.9670813 }, + { "lat": 40.8035282, "lon": -73.9670403 }, + { "lat": 40.8035876, "lon": -73.9669895 }, + { "lat": 40.8040432, "lon": -73.9666642 }, + { "lat": 40.8041328, "lon": -73.9666013 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed:type": "US:urban", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116986, + "bounds": { + "minlat": 40.8017886, + "minlon": -73.9614978, + "maxlat": 40.8019772, + "maxlon": -73.9610669 + }, + "nodes": [ + 13777220337, + 12534082097, + 7372610405, + 42435359 + ], + "geometry": [ + { "lat": 40.8019772, "lon": -73.9614978 }, + { "lat": 40.8018642, "lon": -73.9612304 }, + { "lat": 40.8018403, "lon": -73.9611741 }, + { "lat": 40.8017886, "lon": -73.9610669 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116987, + "bounds": { + "minlat": 40.8032005, + "minlon": -73.9660481, + "maxlat": 40.8038965, + "maxlon": -73.9644005 + }, + "nodes": [ + 2706603536, + 1506445827, + 11845848044, + 13772591454 + ], + "geometry": [ + { "lat": 40.8032005, "lon": -73.9644005 }, + { "lat": 40.8037040, "lon": -73.9655920 }, + { "lat": 40.8038900, "lon": -73.9660327 }, + { "lat": 40.8038965, "lon": -73.9660481 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116988, + "bounds": { + "minlat": 40.7662706, + "minlon": -73.9790760, + "maxlat": 40.7668760, + "maxlon": -73.9776429 + }, + "nodes": [ + 4796245038, + 1740700804, + 42423674 + ], + "geometry": [ + { "lat": 40.7662706, "lon": -73.9776429 }, + { "lat": 40.7668247, "lon": -73.9789476 }, + { "lat": 40.7668760, "lon": -73.9790760 } + ], + "tags": { + "alt_name": "West 59th Street", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "name": "Central Park South", + "name_1": "West 59 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|through", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116989, + "bounds": { + "minlat": 40.7134490, + "minlon": -73.9984987, + "maxlat": 40.7136728, + "maxlon": -73.9979810 + }, + "nodes": [ + 588455743, + 11153640061, + 8827539967, + 588455742 + ], + "geometry": [ + { "lat": 40.7134490, "lon": -73.9984987 }, + { "lat": 40.7135109, "lon": -73.9983540 }, + { "lat": 40.7136209, "lon": -73.9980976 }, + { "lat": 40.7136728, "lon": -73.9979810 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Chatham Square", + "name:etymology:wikidata": "Q208663", + "name:ko": "채텀 스퀘어", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "wikidata": "Q5087691" + } +}, +{ + "type": "way", + "id": 196116990, + "bounds": { + "minlat": 40.7932957, + "minlon": -73.9672257, + "maxlat": 40.7954860, + "maxlon": -73.9656255 + }, + "nodes": [ + 42443403, + 11296201251, + 3874617025, + 3602672702, + 300147325, + 11263350562, + 3874617028, + 8687882741, + 42443388, + 7801775751, + 9676474996 + ], + "geometry": [ + { "lat": 40.7954860, "lon": -73.9656255 }, + { "lat": 40.7954072, "lon": -73.9656825 }, + { "lat": 40.7948453, "lon": -73.9660889 }, + { "lat": 40.7947104, "lon": -73.9661864 }, + { "lat": 40.7943702, "lon": -73.9664401 }, + { "lat": 40.7942214, "lon": -73.9665451 }, + { "lat": 40.7940802, "lon": -73.9666459 }, + { "lat": 40.7936304, "lon": -73.9669714 }, + { "lat": 40.7935554, "lon": -73.9670321 }, + { "lat": 40.7934827, "lon": -73.9670826 }, + { "lat": 40.7932957, "lon": -73.9672257 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116991, + "bounds": { + "minlat": 40.7722791, + "minlon": -73.9825461, + "maxlat": 40.7726558, + "maxlon": -73.9822863 + }, + "nodes": [ + 42428588, + 11439239342, + 6173564349 + ], + "geometry": [ + { "lat": 40.7726558, "lon": -73.9822863 }, + { "lat": 40.7723801, "lon": -73.9824817 }, + { "lat": 40.7722791, "lon": -73.9825461 } + ], + "tags": { + "covered": "no", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116992, + "bounds": { + "minlat": 40.7960087, + "minlon": -73.9377697, + "maxlat": 40.7970162, + "maxlon": -73.9354016 + }, + "nodes": [ + 42456115, + 6216349368, + 4980851584, + 10170834270, + 6175905189, + 42443085 + ], + "geometry": [ + { "lat": 40.7960087, "lon": -73.9354016 }, + { "lat": 40.7960547, "lon": -73.9355097 }, + { "lat": 40.7960723, "lon": -73.9355510 }, + { "lat": 40.7969596, "lon": -73.9376367 }, + { "lat": 40.7969831, "lon": -73.9376918 }, + { "lat": 40.7970162, "lon": -73.9377697 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 116th Street", + "name:ru": "Восточная 116-я стрит", + "parking:lane:both": "parallel", + "parking:lane:both:parallel": "on_street", + "surface": "asphalt", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116993, + "bounds": { + "minlat": 40.8018088, + "minlon": -73.9415029, + "maxlat": 40.8019158, + "maxlon": -73.9412451 + }, + "nodes": [ + 596776594, + 42443818 + ], + "geometry": [ + { "lat": 40.8019158, "lon": -73.9415029 }, + { "lat": 40.8018088, "lon": -73.9412451 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "East 120th Street", + "name:ru": "Восточная 120-я стрит", + "name_1": "East 120 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 196116994, + "bounds": { + "minlat": 40.7995598, + "minlon": -73.9397578, + "maxlat": 40.8011859, + "maxlon": -73.9359116 + }, + "nodes": [ + 42443819, + 10122952985, + 10568682749, + 4980760982, + 42443821, + 4980760983, + 5482291246, + 7927125703, + 42443092 + ], + "geometry": [ + { "lat": 40.8011859, "lon": -73.9397578 }, + { "lat": 40.8011466, "lon": -73.9396706 }, + { "lat": 40.8009178, "lon": -73.9391273 }, + { "lat": 40.8005661, "lon": -73.9382920 }, + { "lat": 40.8005038, "lon": -73.9381606 }, + { "lat": 40.8004496, "lon": -73.9380211 }, + { "lat": 40.7997368, "lon": -73.9363372 }, + { "lat": 40.7996129, "lon": -73.9360412 }, + { "lat": 40.7995598, "lon": -73.9359116 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 120th Street", + "name:ru": "Восточная 120-я стрит", + "name_1": "East 120 Street", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 196116995, + "bounds": { + "minlat": 40.8026940, + "minlon": -73.9335768, + "maxlat": 40.8027638, + "maxlon": -73.9334099 + }, + "nodes": [ + 42423203, + 4980799124, + 42443116 + ], + "geometry": [ + { "lat": 40.8026940, "lon": -73.9334099 }, + { "lat": 40.8027086, "lon": -73.9334449 }, + { "lat": 40.8027638, "lon": -73.9335768 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196116997, + "bounds": { + "minlat": 40.7415054, + "minlon": -73.9870446, + "maxlat": 40.7421570, + "maxlon": -73.9854972 + }, + "nodes": [ + 4597668042, + 10166167567, + 5266444850, + 10168260236, + 42445879 + ], + "geometry": [ + { "lat": 40.7415054, "lon": -73.9854972 }, + { "lat": 40.7415368, "lon": -73.9855721 }, + { "lat": 40.7416358, "lon": -73.9858072 }, + { "lat": 40.7421177, "lon": -73.9869514 }, + { "lat": 40.7421570, "lon": -73.9870446 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 25th Street", + "name:ru": "Восточная 25-я стрит", + "name_1": "East 25 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 196117001, + "bounds": { + "minlat": 40.7643672, + "minlon": -73.9638433, + "maxlat": 40.7653085, + "maxlon": -73.9616072 + }, + "nodes": [ + 42449985, + 10166171506, + 6856746324, + 6856746335, + 5542680320, + 8847352139, + 5542680287, + 42442977 + ], + "geometry": [ + { "lat": 40.7653085, "lon": -73.9638433 }, + { "lat": 40.7652513, "lon": -73.9637074 }, + { "lat": 40.7650566, "lon": -73.9632450 }, + { "lat": 40.7649920, "lon": -73.9630915 }, + { "lat": 40.7647599, "lon": -73.9625401 }, + { "lat": 40.7645944, "lon": -73.9621469 }, + { "lat": 40.7644224, "lon": -73.9617383 }, + { "lat": 40.7643672, "lon": -73.9616072 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 65th Street", + "name:ru": "Восточная 65-я стрит", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 196117006, + "bounds": { + "minlat": 40.7296621, + "minlon": -73.9907402, + "maxlat": 40.7298936, + "maxlon": -73.9900935 + }, + "nodes": [ + 42439249, + 3919350757, + 595407639 + ], + "geometry": [ + { "lat": 40.7298936, "lon": -73.9907402 }, + { "lat": 40.7298599, "lon": -73.9906578 }, + { "lat": 40.7296621, "lon": -73.9900935 } + ], + "tags": { + "alt_name": "East 8th Street", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Astor Place", + "name:etymology:wikidata": "Q57423", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592990", + "wikipedia": "en:Astor Place" + } +}, +{ + "type": "way", + "id": 196117014, + "bounds": { + "minlat": 40.7134475, + "minlon": -73.9977832, + "maxlat": 40.7135026, + "maxlon": -73.9976411 + }, + "nodes": [ + 4158810011, + 588455855, + 4158810005, + 3882338379, + 588455856 + ], + "geometry": [ + { "lat": 40.7135026, "lon": -73.9977832 }, + { "lat": 40.7134806, "lon": -73.9977469 }, + { "lat": 40.7134635, "lon": -73.9977088 }, + { "lat": 40.7134529, "lon": -73.9976732 }, + { "lat": 40.7134475, "lon": -73.9976411 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117019, + "bounds": { + "minlat": 40.8305812, + "minlon": -73.9403700, + "maxlat": 40.8371124, + "maxlon": -73.9367288 + }, + "nodes": [ + 11221649594, + 42439675, + 42439679, + 11292656968, + 42439694, + 42439697, + 42439701, + 42439708, + 5610640946, + 7022869487, + 5610640947, + 11291880566, + 42439711, + 11291880563, + 764738938, + 5610640948, + 5610640949, + 42438255, + 42439718, + 2075595950, + 2075595949, + 42439721, + 8725182218, + 42439724, + 13718092690, + 13718113003, + 8725182236, + 42439728, + 748726642, + 4281505674 + ], + "geometry": [ + { "lat": 40.8305812, "lon": -73.9403502 }, + { "lat": 40.8313320, "lon": -73.9403700 }, + { "lat": 40.8314680, "lon": -73.9403680 }, + { "lat": 40.8315806, "lon": -73.9403584 }, + { "lat": 40.8317110, "lon": -73.9403090 }, + { "lat": 40.8318270, "lon": -73.9402550 }, + { "lat": 40.8319520, "lon": -73.9401740 }, + { "lat": 40.8320556, "lon": -73.9400999 }, + { "lat": 40.8323703, "lon": -73.9398598 }, + { "lat": 40.8324855, "lon": -73.9397794 }, + { "lat": 40.8325469, "lon": -73.9397397 }, + { "lat": 40.8326323, "lon": -73.9397003 }, + { "lat": 40.8326961, "lon": -73.9396729 }, + { "lat": 40.8327786, "lon": -73.9396319 }, + { "lat": 40.8328388, "lon": -73.9396035 }, + { "lat": 40.8329590, "lon": -73.9395120 }, + { "lat": 40.8330799, "lon": -73.9393925 }, + { "lat": 40.8332780, "lon": -73.9391550 }, + { "lat": 40.8338430, "lon": -73.9384920 }, + { "lat": 40.8341592, "lon": -73.9381315 }, + { "lat": 40.8343493, "lon": -73.9379896 }, + { "lat": 40.8348890, "lon": -73.9377510 }, + { "lat": 40.8349837, "lon": -73.9377075 }, + { "lat": 40.8356900, "lon": -73.9373830 }, + { "lat": 40.8360007, "lon": -73.9372394 }, + { "lat": 40.8361668, "lon": -73.9371619 }, + { "lat": 40.8364156, "lon": -73.9370476 }, + { "lat": 40.8364690, "lon": -73.9370230 }, + { "lat": 40.8365330, "lon": -73.9369925 }, + { "lat": 40.8371124, "lon": -73.9367288 } + ], + "tags": { + "alt_name": "Paul Robeson Boulevard", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "description": "This honorary street name memorializes Paul Robeson.", + "highway": "tertiary", + "historic": "memorial", + "lanes": "2", + "name": "Edgecombe Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 196117023, + "bounds": { + "minlat": 40.8372731, + "minlon": -73.9366535, + "maxlat": 40.8380844, + "maxlon": -73.9362576 + }, + "nodes": [ + 8725182230, + 764738936, + 42439730, + 2075592661, + 6836035791, + 13319742510 + ], + "geometry": [ + { "lat": 40.8372731, "lon": -73.9366535 }, + { "lat": 40.8374385, "lon": -73.9365759 }, + { "lat": 40.8378500, "lon": -73.9363830 }, + { "lat": 40.8380177, "lon": -73.9363073 }, + { "lat": 40.8380515, "lon": -73.9362815 }, + { "lat": 40.8380844, "lon": -73.9362576 } + ], + "tags": { + "alt_name": "Paul Robeson Boulevard", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "description": "This honorary street name memorializes Paul Robeson.", + "highway": "tertiary", + "historic": "memorial", + "lanes": "2", + "name": "Edgecombe Avenue", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 196117028, + "bounds": { + "minlat": 40.7369674, + "minlon": -74.0064962, + "maxlat": 40.7392808, + "maxlon": -74.0064405 + }, + "nodes": [ + 42436149, + 12162483555, + 10168546912, + 12162436998, + 10168546907, + 42436152, + 10168546905, + 12162436993, + 10168546902, + 42436155, + 10168546904, + 12162436992, + 11159805946, + 42431505, + 11159805945, + 12162436975 + ], + "geometry": [ + { "lat": 40.7369674, "lon": -74.0064962 }, + { "lat": 40.7369962, "lon": -74.0064931 }, + { "lat": 40.7370222, "lon": -74.0064900 }, + { "lat": 40.7374721, "lon": -74.0064771 }, + { "lat": 40.7374972, "lon": -74.0064767 }, + { "lat": 40.7375559, "lon": -74.0064757 }, + { "lat": 40.7376219, "lon": -74.0064745 }, + { "lat": 40.7380518, "lon": -74.0064683 }, + { "lat": 40.7380976, "lon": -74.0064667 }, + { "lat": 40.7381513, "lon": -74.0064657 }, + { "lat": 40.7382042, "lon": -74.0064639 }, + { "lat": 40.7386666, "lon": -74.0064499 }, + { "lat": 40.7387153, "lon": -74.0064484 }, + { "lat": 40.7387625, "lon": -74.0064480 }, + { "lat": 40.7388247, "lon": -74.0064490 }, + { "lat": 40.7392808, "lon": -74.0064405 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 196117032, + "bounds": { + "minlat": 40.7371696, + "minlon": -74.0057682, + "maxlat": 40.7372197, + "maxlon": -74.0057566 + }, + "nodes": [ + 42436414, + 247403147 + ], + "geometry": [ + { "lat": 40.7372197, "lon": -74.0057682 }, + { "lat": 40.7371696, "lon": -74.0057566 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117037, + "bounds": { + "minlat": 40.8064396, + "minlon": -73.9463669, + "maxlat": 40.8070675, + "maxlon": -73.9459054 + }, + "nodes": [ + 42438908, + 10170875064, + 10170875054, + 42453241 + ], + "geometry": [ + { "lat": 40.8064396, "lon": -73.9463669 }, + { "lat": 40.8065123, "lon": -73.9463135 }, + { "lat": 40.8070104, "lon": -73.9459477 }, + { "lat": 40.8070675, "lon": -73.9459054 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 196117039, + "bounds": { + "minlat": 40.7533670, + "minlon": -73.9746480, + "maxlat": 40.7539937, + "maxlon": -73.9741902 + }, + "nodes": [ + 42434085, + 10165986960, + 10168841855, + 42444049 + ], + "geometry": [ + { "lat": 40.7539937, "lon": -73.9741902 }, + { "lat": 40.7539462, "lon": -73.9742233 }, + { "lat": 40.7534342, "lon": -73.9745992 }, + { "lat": 40.7533670, "lon": -73.9746480 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 196117041, + "bounds": { + "minlat": 40.7915775, + "minlon": -73.9467764, + "maxlat": 40.7922499, + "maxlon": -73.9462871 + }, + "nodes": [ + 42447182, + 4970503549, + 9726158588, + 7779545016, + 42447179 + ], + "geometry": [ + { "lat": 40.7922499, "lon": -73.9462871 }, + { "lat": 40.7921545, "lon": -73.9463564 }, + { "lat": 40.7919478, "lon": -73.9465044 }, + { "lat": 40.7916298, "lon": -73.9467371 }, + { "lat": 40.7915775, "lon": -73.9467764 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 196117042, + "bounds": { + "minlat": 40.7427711, + "minlon": -73.9865977, + "maxlat": 40.7446313, + "maxlon": -73.9852432 + }, + "nodes": [ + 42429876, + 10168260241, + 10166167607, + 42445885, + 10166167606, + 10167162556, + 42445888, + 10167162557, + 11043321023, + 13707001852, + 10166167624, + 9143542457, + 42436746 + ], + "geometry": [ + { "lat": 40.7427711, "lon": -73.9865977 }, + { "lat": 40.7428347, "lon": -73.9865512 }, + { "lat": 40.7433322, "lon": -73.9861885 }, + { "lat": 40.7433948, "lon": -73.9861430 }, + { "lat": 40.7434548, "lon": -73.9860991 }, + { "lat": 40.7439536, "lon": -73.9857357 }, + { "lat": 40.7440084, "lon": -73.9856962 }, + { "lat": 40.7440671, "lon": -73.9856531 }, + { "lat": 40.7442947, "lon": -73.9854878 }, + { "lat": 40.7444539, "lon": -73.9853721 }, + { "lat": 40.7445733, "lon": -73.9852854 }, + { "lat": 40.7445930, "lon": -73.9852711 }, + { "lat": 40.7446313, "lon": -73.9852432 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 196117043, + "bounds": { + "minlat": 40.8194553, + "minlon": -73.9370590, + "maxlat": 40.8198059, + "maxlon": -73.9367953 + }, + "nodes": [ + 4207863943, + 9557086553, + 4207863941 + ], + "geometry": [ + { "lat": 40.8198059, "lon": -73.9367953 }, + { "lat": 40.8197517, "lon": -73.9368384 }, + { "lat": 40.8194553, "lon": -73.9370590 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 196117044, + "bounds": { + "minlat": 40.8012041, + "minlon": -73.9596153, + "maxlat": 40.8031025, + "maxlon": -73.9582337 + }, + "nodes": [ + 12534082093, + 7209676816, + 1774037219, + 11741833012, + 42446733, + 11741833010, + 11682716952, + 42437218, + 11682716950, + 7087041454, + 42431210 + ], + "geometry": [ + { "lat": 40.8012041, "lon": -73.9596153 }, + { "lat": 40.8012840, "lon": -73.9595571 }, + { "lat": 40.8014618, "lon": -73.9594279 }, + { "lat": 40.8017985, "lon": -73.9591807 }, + { "lat": 40.8018511, "lon": -73.9591421 }, + { "lat": 40.8018998, "lon": -73.9591067 }, + { "lat": 40.8024228, "lon": -73.9587263 }, + { "lat": 40.8024730, "lon": -73.9586898 }, + { "lat": 40.8025323, "lon": -73.9586459 }, + { "lat": 40.8030483, "lon": -73.9582715 }, + { "lat": 40.8031025, "lon": -73.9582337 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347126", + "wikipedia": "en:Manhattan Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117045, + "bounds": { + "minlat": 40.7169994, + "minlon": -74.0142977, + "maxlat": 40.7176193, + "maxlon": -74.0138194 + }, + "nodes": [ + 42446825, + 5815643339, + 8304878684, + 5815643280, + 42431629 + ], + "geometry": [ + { "lat": 40.7169994, "lon": -74.0142977 }, + { "lat": 40.7170634, "lon": -74.0142513 }, + { "lat": 40.7175225, "lon": -74.0138944 }, + { "lat": 40.7175533, "lon": -74.0138707 }, + { "lat": 40.7176193, "lon": -74.0138194 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 196117051, + "bounds": { + "minlat": 40.7420713, + "minlon": -73.9849181, + "maxlat": 40.7439299, + "maxlon": -73.9835670 + }, + "nodes": [ + 42429888, + 10166167573, + 6736497272, + 12181339183, + 10166167615, + 42454522, + 10166167613, + 12181339190, + 10167162565, + 42446266, + 10167162564, + 12181339195, + 10166167632, + 42436748 + ], + "geometry": [ + { "lat": 40.7420713, "lon": -73.9849181 }, + { "lat": 40.7421301, "lon": -73.9848755 }, + { "lat": 40.7423443, "lon": -73.9847197 }, + { "lat": 40.7425954, "lon": -73.9845371 }, + { "lat": 40.7426305, "lon": -73.9845115 }, + { "lat": 40.7426886, "lon": -73.9844692 }, + { "lat": 40.7427458, "lon": -73.9844276 }, + { "lat": 40.7432140, "lon": -73.9840878 }, + { "lat": 40.7432552, "lon": -73.9840580 }, + { "lat": 40.7433107, "lon": -73.9840157 }, + { "lat": 40.7433610, "lon": -73.9839793 }, + { "lat": 40.7438312, "lon": -73.9836401 }, + { "lat": 40.7438660, "lon": -73.9836143 }, + { "lat": 40.7439299, "lon": -73.9835670 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 196117053, + "bounds": { + "minlat": 40.8271028, + "minlon": -73.9520649, + "maxlat": 40.8296117, + "maxlon": -73.9501081 + }, + "nodes": [ + 42434343, + 11193743237, + 7738238870, + 12952282813, + 12952282812, + 12952282811, + 42439216, + 11842599244, + 12952282810, + 12952282802, + 11193743253, + 42441956, + 11193743255, + 12952282801, + 12952255700, + 42441955, + 12952255695, + 12952255696, + 12952255697, + 12952255699, + 12952255698, + 11193743262, + 1332843571, + 42434264 + ], + "geometry": [ + { "lat": 40.8296117, "lon": -73.9501081 }, + { "lat": 40.8295676, "lon": -73.9501217 }, + { "lat": 40.8295342, "lon": -73.9501347 }, + { "lat": 40.8294216, "lon": -73.9501786 }, + { "lat": 40.8293115, "lon": -73.9502264 }, + { "lat": 40.8291093, "lon": -73.9503394 }, + { "lat": 40.8289475, "lon": -73.9504477 }, + { "lat": 40.8288911, "lon": -73.9504885 }, + { "lat": 40.8287598, "lon": -73.9505814 }, + { "lat": 40.8285340, "lon": -73.9507455 }, + { "lat": 40.8283744, "lon": -73.9508655 }, + { "lat": 40.8283175, "lon": -73.9509088 }, + { "lat": 40.8282632, "lon": -73.9509480 }, + { "lat": 40.8281423, "lon": -73.9510326 }, + { "lat": 40.8277795, "lon": -73.9513005 }, + { "lat": 40.8276981, "lon": -73.9513637 }, + { "lat": 40.8275840, "lon": -73.9514756 }, + { "lat": 40.8274849, "lon": -73.9515908 }, + { "lat": 40.8274064, "lon": -73.9516941 }, + { "lat": 40.8273608, "lon": -73.9517575 }, + { "lat": 40.8272745, "lon": -73.9518746 }, + { "lat": 40.8272072, "lon": -73.9519633 }, + { "lat": 40.8271828, "lon": -73.9519892 }, + { "lat": 40.8271028, "lon": -73.9520649 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117054, + "bounds": { + "minlat": 40.8409552, + "minlon": -73.9394727, + "maxlat": 40.8414250, + "maxlon": -73.9393850 + }, + "nodes": [ + 42433035, + 2499757470, + 7985644728, + 7985644729, + 12639566894, + 7132814246 + ], + "geometry": [ + { "lat": 40.8409552, "lon": -73.9394727 }, + { "lat": 40.8410440, "lon": -73.9394597 }, + { "lat": 40.8411898, "lon": -73.9394228 }, + { "lat": 40.8413112, "lon": -73.9393850 }, + { "lat": 40.8413658, "lon": -73.9394072 }, + { "lat": 40.8414250, "lon": -73.9394464 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 196117055, + "bounds": { + "minlat": 40.8564757, + "minlon": -73.9285047, + "maxlat": 40.8566060, + "maxlon": -73.9284110 + }, + "nodes": [ + 42433138, + 4215780092 + ], + "geometry": [ + { "lat": 40.8566060, "lon": -73.9284110 }, + { "lat": 40.8564757, "lon": -73.9285047 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:backward": "left|through", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 196117056, + "bounds": { + "minlat": 40.8120151, + "minlon": -73.9515008, + "maxlat": 40.8125750, + "maxlon": -73.9509270 + }, + "nodes": [ + 42432932, + 10171865580, + 7594173332, + 10171865567, + 42432933 + ], + "geometry": [ + { "lat": 40.8120151, "lon": -73.9515008 }, + { "lat": 40.8120769, "lon": -73.9514374 }, + { "lat": 40.8125153, "lon": -73.9509880 }, + { "lat": 40.8125444, "lon": -73.9509583 }, + { "lat": 40.8125750, "lon": -73.9509270 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 196117057, + "bounds": { + "minlat": 40.8549080, + "minlon": -73.9296440, + "maxlat": 40.8561820, + "maxlon": -73.9287160 + }, + "nodes": [ + 42427769, + 5403868129, + 5403868134, + 1762221470, + 5403868135, + 761860876, + 5403868140, + 42433115 + ], + "geometry": [ + { "lat": 40.8561820, "lon": -73.9287160 }, + { "lat": 40.8561291, "lon": -73.9287548 }, + { "lat": 40.8556123, "lon": -73.9291322 }, + { "lat": 40.8555496, "lon": -73.9291780 }, + { "lat": 40.8555093, "lon": -73.9292068 }, + { "lat": 40.8552969, "lon": -73.9293591 }, + { "lat": 40.8549875, "lon": -73.9295859 }, + { "lat": 40.8549080, "lon": -73.9296440 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 196117058, + "bounds": { + "minlat": 40.8308910, + "minlon": -73.9413680, + "maxlat": 40.8313508, + "maxlon": -73.9412136 + }, + "nodes": [ + 42432985, + 11221649596, + 5475725289 + ], + "geometry": [ + { "lat": 40.8308910, "lon": -73.9413680 }, + { "lat": 40.8309961, "lon": -73.9413327 }, + { "lat": 40.8313508, "lon": -73.9412136 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "parking:lane:both": "parallel", + "rcn_ref": "9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 196117059, + "bounds": { + "minlat": 40.7165750, + "minlon": -74.0142977, + "maxlat": 40.7169994, + "maxlon": -74.0133564 + }, + "nodes": [ + 42446825, + 5815643298, + 4143812550, + 246866830 + ], + "geometry": [ + { "lat": 40.7169994, "lon": -74.0142977 }, + { "lat": 40.7169702, "lon": -74.0142351 }, + { "lat": 40.7165984, "lon": -74.0134164 }, + { "lat": 40.7165750, "lon": -74.0133564 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "maxspeed:advisory": "20 mph", + "name": "Warren Street", + "name:etymology:wikidata": "Q3376953", + "name:ko": "워렌 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 196117060, + "bounds": { + "minlat": 40.8004295, + "minlon": -73.9661491, + "maxlat": 40.8006204, + "maxlon": -73.9656909 + }, + "nodes": [ + 42421741, + 10166004080, + 4205830395 + ], + "geometry": [ + { "lat": 40.8004295, "lon": -73.9656909 }, + { "lat": 40.8004944, "lon": -73.9658448 }, + { "lat": 40.8006204, "lon": -73.9661491 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through" + } +}, +{ + "type": "way", + "id": 196117062, + "bounds": { + "minlat": 40.8020112, + "minlon": -73.9497548, + "maxlat": 40.8020733, + "maxlon": -73.9496071 + }, + "nodes": [ + 3099327952, + 42437177 + ], + "geometry": [ + { "lat": 40.8020733, "lon": -73.9497548 }, + { "lat": 40.8020112, "lon": -73.9496071 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "name_1": "West 116 Street", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117063, + "bounds": { + "minlat": 40.8105801, + "minlon": -73.9639549, + "maxlat": 40.8113373, + "maxlon": -73.9621587 + }, + "nodes": [ + 1506591536, + 9520170419, + 9518300228, + 470209122, + 9518300230, + 7785881426, + 7620540917 + ], + "geometry": [ + { "lat": 40.8105801, "lon": -73.9621587 }, + { "lat": 40.8106233, "lon": -73.9622604 }, + { "lat": 40.8109145, "lon": -73.9629656 }, + { "lat": 40.8109520, "lon": -73.9630559 }, + { "lat": 40.8110004, "lon": -73.9631672 }, + { "lat": 40.8112948, "lon": -73.9638558 }, + { "lat": 40.8113373, "lon": -73.9639549 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "4", + "name": "West 120th Street", + "name:ru": "Западная 120-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 196117064, + "bounds": { + "minlat": 40.8093443, + "minlon": -73.9619636, + "maxlat": 40.8104994, + "maxlon": -73.9592110 + }, + "nodes": [ + 1504153626, + 7004347452, + 3579432163, + 12005588914, + 11851500948, + 1504153604 + ], + "geometry": [ + { "lat": 40.8093443, "lon": -73.9592110 }, + { "lat": 40.8094006, "lon": -73.9593434 }, + { "lat": 40.8098094, "lon": -73.9603290 }, + { "lat": 40.8099063, "lon": -73.9605606 }, + { "lat": 40.8104569, "lon": -73.9618636 }, + { "lat": 40.8104994, "lon": -73.9619636 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "name": "West 120th Street", + "name:ru": "Западная 120-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 196117065, + "bounds": { + "minlat": 40.8083967, + "minlon": -73.9540507, + "maxlat": 40.8088548, + "maxlon": -73.9529558 + }, + "nodes": [ + 42447336, + 10168029059, + 10168029066, + 42432917 + ], + "geometry": [ + { "lat": 40.8088548, "lon": -73.9540507 }, + { "lat": 40.8088208, "lon": -73.9539677 }, + { "lat": 40.8084557, "lon": -73.9531000 }, + { "lat": 40.8083967, "lon": -73.9529558 } + ], + "tags": { + "highway": "residential", + "name": "West 122nd Street", + "name_1": "West 122 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 196117066, + "bounds": { + "minlat": 40.8082350, + "minlon": -73.9529558, + "maxlat": 40.8083967, + "maxlon": -73.9525797 + }, + "nodes": [ + 42432917, + 7004398487, + 11298919656, + 42435794 + ], + "geometry": [ + { "lat": 40.8083967, "lon": -73.9529558 }, + { "lat": 40.8083446, "lon": -73.9528252 }, + { "lat": 40.8082798, "lon": -73.9526832 }, + { "lat": 40.8082350, "lon": -73.9525797 } + ], + "tags": { + "highway": "residential", + "name": "West 122nd Street", + "name_1": "West 122 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 196117067, + "bounds": { + "minlat": 40.8156143, + "minlon": -73.9583906, + "maxlat": 40.8158098, + "maxlon": -73.9582064 + }, + "nodes": [ + 561035343, + 2541754668, + 5788367060, + 42428863 + ], + "geometry": [ + { "lat": 40.8156143, "lon": -73.9582064 }, + { "lat": 40.8156807, "lon": -73.9582741 }, + { "lat": 40.8156876, "lon": -73.9582804 }, + { "lat": 40.8158098, "lon": -73.9583906 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117069, + "bounds": { + "minlat": 40.8166971, + "minlon": -73.9467125, + "maxlat": 40.8199030, + "maxlon": -73.9390685 + }, + "nodes": [ + 42440376, + 9557110329, + 7732243569, + 7732243568, + 7732243567, + 6908683484, + 8758345319, + 2141026505, + 42439897, + 9150629551, + 6823179316, + 6823179305, + 8008167304, + 42435858, + 9557110443, + 10171324731, + 42439599, + 10171324734, + 7784459462, + 42432957 + ], + "geometry": [ + { "lat": 40.8166971, "lon": -73.9390685 }, + { "lat": 40.8167281, "lon": -73.9391591 }, + { "lat": 40.8167333, "lon": -73.9391742 }, + { "lat": 40.8168745, "lon": -73.9395299 }, + { "lat": 40.8173387, "lon": -73.9406249 }, + { "lat": 40.8176429, "lon": -73.9413510 }, + { "lat": 40.8177734, "lon": -73.9416611 }, + { "lat": 40.8178179, "lon": -73.9417633 }, + { "lat": 40.8178879, "lon": -73.9419240 }, + { "lat": 40.8179329, "lon": -73.9420277 }, + { "lat": 40.8182784, "lon": -73.9428540 }, + { "lat": 40.8186806, "lon": -73.9438133 }, + { "lat": 40.8189994, "lon": -73.9445736 }, + { "lat": 40.8190470, "lon": -73.9446870 }, + { "lat": 40.8191031, "lon": -73.9448200 }, + { "lat": 40.8195946, "lon": -73.9459856 }, + { "lat": 40.8196280, "lon": -73.9460650 }, + { "lat": 40.8196707, "lon": -73.9461655 }, + { "lat": 40.8198473, "lon": -73.9465814 }, + { "lat": 40.8199030, "lon": -73.9467125 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed:type": "US-NY:urban", + "name": "West 139th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 196117070, + "bounds": { + "minlat": 40.8223451, + "minlon": -73.9424165, + "maxlat": 40.8239240, + "maxlon": -73.9386646 + }, + "nodes": [ + 42440056, + 11218442120, + 8008242727, + 42435869, + 8008242724, + 9150629558, + 42439922 + ], + "geometry": [ + { "lat": 40.8239240, "lon": -73.9424165 }, + { "lat": 40.8238875, "lon": -73.9423300 }, + { "lat": 40.8235618, "lon": -73.9415574 }, + { "lat": 40.8235077, "lon": -73.9414281 }, + { "lat": 40.8234543, "lon": -73.9413006 }, + { "lat": 40.8223947, "lon": -73.9387828 }, + { "lat": 40.8223451, "lon": -73.9386646 } + ], + "tags": { + "highway": "residential", + "name": "West 146th Street", + "name_1": "West 146 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 196117071, + "bounds": { + "minlat": 40.8229671, + "minlon": -73.9419585, + "maxlat": 40.8245482, + "maxlon": -73.9382108 + }, + "nodes": [ + 42439924, + 9150629559, + 7229615772, + 8008242733, + 42435873, + 8008242736, + 2504882479, + 11218442116, + 42440059 + ], + "geometry": [ + { "lat": 40.8229671, "lon": -73.9382108 }, + { "lat": 40.8230160, "lon": -73.9383256 }, + { "lat": 40.8239165, "lon": -73.9404615 }, + { "lat": 40.8240770, "lon": -73.9408392 }, + { "lat": 40.8241320, "lon": -73.9409710 }, + { "lat": 40.8241881, "lon": -73.9411010 }, + { "lat": 40.8244929, "lon": -73.9418269 }, + { "lat": 40.8245122, "lon": -73.9418727 }, + { "lat": 40.8245482, "lon": -73.9419585 } + ], + "tags": { + "highway": "residential", + "name": "West 147th Street", + "name_1": "West 147 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "147th", + "tiger:name_base_1": "147", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039" + } +}, +{ + "type": "way", + "id": 196117073, + "bounds": { + "minlat": 40.7376569, + "minlon": -73.9991785, + "maxlat": 40.7383560, + "maxlon": -73.9975522 + }, + "nodes": [ + 5244228885, + 9907978326, + 9907978324, + 9907978325, + 9907978323 + ], + "geometry": [ + { "lat": 40.7383560, "lon": -73.9991785 }, + { "lat": 40.7382641, "lon": -73.9989587 }, + { "lat": 40.7377902, "lon": -73.9978443 }, + { "lat": 40.7377581, "lon": -73.9977687 }, + { "lat": 40.7376569, "lon": -73.9975522 } + ], + "tags": { + "bus": "yes", + "cycleway": "no", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117074, + "bounds": { + "minlat": 40.7387663, + "minlon": -74.0020341, + "maxlat": 40.7395519, + "maxlon": -74.0001941 + }, + "nodes": [ + 9907978327, + 9907978329, + 9907978330, + 9907978331, + 9907978328, + 9907978332, + 9907978333 + ], + "geometry": [ + { "lat": 40.7387663, "lon": -74.0001941 }, + { "lat": 40.7388233, "lon": -74.0003310 }, + { "lat": 40.7388467, "lon": -74.0003767 }, + { "lat": 40.7388927, "lon": -74.0004671 }, + { "lat": 40.7389276, "lon": -74.0005425 }, + { "lat": 40.7394065, "lon": -74.0016834 }, + { "lat": 40.7395519, "lon": -74.0020341 } + ], + "tags": { + "bus": "yes", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117075, + "bounds": { + "minlat": 40.7409804, + "minlon": -74.0080506, + "maxlat": 40.7420905, + "maxlon": -74.0054299 + }, + "nodes": [ + 4557517554, + 8262308693, + 12162436960, + 5244251221, + 12162436949, + 10820673908, + 42454325, + 10820673906, + 12162436950, + 2671667947, + 12162436961 + ], + "geometry": [ + { "lat": 40.7409804, "lon": -74.0054299 }, + { "lat": 40.7410123, "lon": -74.0055025 }, + { "lat": 40.7410270, "lon": -74.0055353 }, + { "lat": 40.7411489, "lon": -74.0058232 }, + { "lat": 40.7415909, "lon": -74.0068668 }, + { "lat": 40.7416039, "lon": -74.0068977 }, + { "lat": 40.7416433, "lon": -74.0069905 }, + { "lat": 40.7416781, "lon": -74.0070729 }, + { "lat": 40.7416919, "lon": -74.0071054 }, + { "lat": 40.7419052, "lon": -74.0076091 }, + { "lat": 40.7420905, "lon": -74.0080506 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "name_1": "West 14 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117076, + "bounds": { + "minlat": 40.8308910, + "minlon": -73.9429722, + "maxlat": 40.8315742, + "maxlon": -73.9413680 + }, + "nodes": [ + 42432985, + 11193685111, + 8668349552, + 8668349549, + 11193685097, + 42442651 + ], + "geometry": [ + { "lat": 40.8308910, "lon": -73.9413680 }, + { "lat": 40.8309504, "lon": -73.9415093 }, + { "lat": 40.8312900, "lon": -73.9423181 }, + { "lat": 40.8313483, "lon": -73.9424570 }, + { "lat": 40.8315208, "lon": -73.9428538 }, + { "lat": 40.8315742, "lon": -73.9429722 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117077, + "bounds": { + "minlat": 40.8306632, + "minlon": -73.9413680, + "maxlat": 40.8308910, + "maxlon": -73.9408360 + }, + "nodes": [ + 12231380249, + 748726593, + 11193685116, + 42432985 + ], + "geometry": [ + { "lat": 40.8306632, "lon": -73.9408360 }, + { "lat": 40.8307818, "lon": -73.9411169 }, + { "lat": 40.8308360, "lon": -73.9412415 }, + { "lat": 40.8308910, "lon": -73.9413680 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117078, + "bounds": { + "minlat": 40.8327323, + "minlon": -73.9459388, + "maxlat": 40.8328147, + "maxlon": -73.9457489 + }, + "nodes": [ + 42428956, + 561035370 + ], + "geometry": [ + { "lat": 40.8328147, "lon": -73.9459388 }, + { "lat": 40.8327323, "lon": -73.9457489 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lane_markings": "no", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117079, + "bounds": { + "minlat": 40.8369673, + "minlon": -73.9455430, + "maxlat": 40.8392320, + "maxlon": -73.9401365 + }, + "nodes": [ + 42433020, + 11292676876, + 11292676883, + 561035378, + 42428967, + 11292676880, + 9935939357, + 4631111310, + 42427126, + 4631111307, + 9935939360, + 7641990526, + 2499827801, + 11758679647, + 42441704 + ], + "geometry": [ + { "lat": 40.8369673, "lon": -73.9401365 }, + { "lat": 40.8370264, "lon": -73.9402815 }, + { "lat": 40.8377310, "lon": -73.9419617 }, + { "lat": 40.8377650, "lon": -73.9420429 }, + { "lat": 40.8378550, "lon": -73.9422590 }, + { "lat": 40.8378868, "lon": -73.9423373 }, + { "lat": 40.8384206, "lon": -73.9436529 }, + { "lat": 40.8384465, "lon": -73.9437118 }, + { "lat": 40.8384634, "lon": -73.9437512 }, + { "lat": 40.8384878, "lon": -73.9438080 }, + { "lat": 40.8385072, "lon": -73.9438526 }, + { "lat": 40.8387376, "lon": -73.9443902 }, + { "lat": 40.8391842, "lon": -73.9454299 }, + { "lat": 40.8392078, "lon": -73.9454860 }, + { "lat": 40.8392320, "lon": -73.9455430 } + ], + "tags": { + "highway": "residential", + "name": "West 163rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "163rd", + "tiger:name_base_1": "163", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 196117080, + "bounds": { + "minlat": 40.8409552, + "minlon": -73.9396840, + "maxlat": 40.8410453, + "maxlon": -73.9394727 + }, + "nodes": [ + 42433035, + 561035382 + ], + "geometry": [ + { "lat": 40.8409552, "lon": -73.9394727 }, + { "lat": 40.8410453, "lon": -73.9396840 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "tertiary", + "name": "West 168th Street", + "name_1": "West 168 Street", + "name_2": "Haven Avenue", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "168th", + "tiger:name_base_1": "168", + "tiger:name_base_2": "Haven", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:name_type_2": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 196117081, + "bounds": { + "minlat": 40.8404870, + "minlon": -73.9394727, + "maxlat": 40.8409552, + "maxlon": -73.9383640 + }, + "nodes": [ + 42455238, + 9566997265, + 9566927266, + 42433035 + ], + "geometry": [ + { "lat": 40.8404870, "lon": -73.9383640 }, + { "lat": 40.8405321, "lon": -73.9384733 }, + { "lat": 40.8409130, "lon": -73.9393717 }, + { "lat": 40.8409552, "lon": -73.9394727 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "West 168th Street", + "name_1": "West 168 Street", + "name_2": "Haven Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "168th", + "tiger:name_base_1": "168", + "tiger:name_base_2": "Haven", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:name_type_2": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 196117082, + "bounds": { + "minlat": 40.8537179, + "minlon": -73.9282540, + "maxlat": 40.8543210, + "maxlon": -73.9268061 + }, + "nodes": [ + 42455337, + 8740550844, + 9566892703, + 13300272420, + 42442770 + ], + "geometry": [ + { "lat": 40.8543210, "lon": -73.9282540 }, + { "lat": 40.8542813, "lon": -73.9281588 }, + { "lat": 40.8537720, "lon": -73.9269360 }, + { "lat": 40.8537321, "lon": -73.9268401 }, + { "lat": 40.8537179, "lon": -73.9268061 } + ], + "tags": { + "highway": "residential", + "name": "West 190th Street", + "name_1": "West 190 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "190th", + "tiger:name_base_1": "190", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 196117083, + "bounds": { + "minlat": 40.7663005, + "minlon": -73.9828727, + "maxlat": 40.7667157, + "maxlon": -73.9818935 + }, + "nodes": [ + 42428329, + 8785244293, + 10082626070, + 42435714 + ], + "geometry": [ + { "lat": 40.7663005, "lon": -73.9818935 }, + { "lat": 40.7663422, "lon": -73.9819929 }, + { "lat": 40.7666602, "lon": -73.9827409 }, + { "lat": 40.7667157, "lon": -73.9828727 } + ], + "tags": { + "alt_name": "West 57 Street", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117084, + "bounds": { + "minlat": 40.7672587, + "minlon": -73.9857183, + "maxlat": 40.7679160, + "maxlon": -73.9841634 + }, + "nodes": [ + 2698702581, + 4546351686, + 6534229350, + 10082710032, + 2349482107, + 42445037 + ], + "geometry": [ + { "lat": 40.7672587, "lon": -73.9841634 }, + { "lat": 40.7672835, "lon": -73.9842221 }, + { "lat": 40.7673635, "lon": -73.9844113 }, + { "lat": 40.7678600, "lon": -73.9855861 }, + { "lat": 40.7678812, "lon": -73.9856361 }, + { "lat": 40.7679160, "lon": -73.9857183 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "name_1": "West 57 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117085, + "bounds": { + "minlat": 40.7714348, + "minlon": -73.9829512, + "maxlat": 40.7717305, + "maxlon": -73.9822603 + }, + "nodes": [ + 42428579, + 11306314261, + 5117972562, + 42443313 + ], + "geometry": [ + { "lat": 40.7714348, "lon": -73.9822603 }, + { "lat": 40.7714886, "lon": -73.9823770 }, + { "lat": 40.7716742, "lon": -73.9828175 }, + { "lat": 40.7717305, "lon": -73.9829512 } + ], + "tags": { + "alt_name": "George Balanchine Way", + "alt_name:etymology": "George Balanchine", + "alt_name:etymology:wikidata": "Q310184", + "cutting": "no", + "cycleway:both": "no", + "embankment": "no", + "ford": "no", + "highway": "unclassified", + "lanes": "1", + "name": "West 63rd Street", + "name:ru": "Западная 63-я стрит", + "name_2": "Lincoln Center Plaza", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 196117086, + "bounds": { + "minlat": 40.7979386, + "minlon": -73.9400272, + "maxlat": 40.8011427, + "maxlon": -73.9376942 + }, + "nodes": [ + 42450071, + 10166326203, + 10166326165, + 42449840, + 10166326169, + 10166326157, + 42439490, + 10166326161, + 10166326149, + 10127369881, + 42435231, + 10166326153, + 10127369880, + 4980760984, + 42443821, + 4980760985, + 11296130447, + 11273617107, + 42450080 + ], + "geometry": [ + { "lat": 40.7979386, "lon": -73.9400272 }, + { "lat": 40.7980420, "lon": -73.9399511 }, + { "lat": 40.7985739, "lon": -73.9395596 }, + { "lat": 40.7986248, "lon": -73.9395221 }, + { "lat": 40.7986790, "lon": -73.9394824 }, + { "lat": 40.7991990, "lon": -73.9391015 }, + { "lat": 40.7992528, "lon": -73.9390621 }, + { "lat": 40.7993125, "lon": -73.9390189 }, + { "lat": 40.7998249, "lon": -73.9386481 }, + { "lat": 40.7998300, "lon": -73.9386444 }, + { "lat": 40.7998895, "lon": -73.9386013 }, + { "lat": 40.7999370, "lon": -73.9385674 }, + { "lat": 40.7999443, "lon": -73.9385622 }, + { "lat": 40.8004605, "lon": -73.9381934 }, + { "lat": 40.8005038, "lon": -73.9381606 }, + { "lat": 40.8005633, "lon": -73.9381143 }, + { "lat": 40.8005769, "lon": -73.9381044 }, + { "lat": 40.8010927, "lon": -73.9377305 }, + { "lat": 40.8011427, "lon": -73.9376942 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 196117088, + "bounds": { + "minlat": 40.8050065, + "minlon": -73.9348832, + "maxlat": 40.8056429, + "maxlon": -73.9343963 + }, + "nodes": [ + 42450089, + 9903045885, + 1332843459, + 9903045882, + 9903045881, + 9153702893 + ], + "geometry": [ + { "lat": 40.8050065, "lon": -73.9348832 }, + { "lat": 40.8050624, "lon": -73.9348420 }, + { "lat": 40.8053359, "lon": -73.9346261 }, + { "lat": 40.8055362, "lon": -73.9344751 }, + { "lat": 40.8055647, "lon": -73.9344537 }, + { "lat": 40.8056429, "lon": -73.9343963 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "destination", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "right|right", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 196117089, + "bounds": { + "minlat": 40.7654066, + "minlon": -73.9637702, + "maxlat": 40.7658448, + "maxlon": -73.9634512 + }, + "nodes": [ + 11355879242, + 5542680303, + 5542680310 + ], + "geometry": [ + { "lat": 40.7654066, "lon": -73.9637702 }, + { "lat": 40.7658067, "lon": -73.9634805 }, + { "lat": 40.7658448, "lon": -73.9634512 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "bump;flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left||||", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 196117090, + "bounds": { + "minlat": 40.7416288, + "minlon": -73.9937317, + "maxlat": 40.7425526, + "maxlon": -73.9930588 + }, + "nodes": [ + 42430265, + 7781114578, + 10171337665, + 42430269, + 10171337669, + 11766549309 + ], + "geometry": [ + { "lat": 40.7416288, "lon": -73.9937317 }, + { "lat": 40.7416804, "lon": -73.9936939 }, + { "lat": 40.7421814, "lon": -73.9933292 }, + { "lat": 40.7422328, "lon": -73.9932916 }, + { "lat": 40.7423013, "lon": -73.9932421 }, + { "lat": 40.7425526, "lon": -73.9930588 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 196117091, + "bounds": { + "minlat": 40.7374083, + "minlon": -74.0004957, + "maxlat": 40.7385578, + "maxlon": -73.9996800 + }, + "nodes": [ + 42439823, + 8310246341, + 5244228884, + 8310246326, + 42429375, + 8310246327, + 7956044490 + ], + "geometry": [ + { "lat": 40.7385578, "lon": -73.9996800 }, + { "lat": 40.7384774, "lon": -73.9997369 }, + { "lat": 40.7381978, "lon": -73.9999354 }, + { "lat": 40.7379217, "lon": -74.0001314 }, + { "lat": 40.7378614, "lon": -74.0001742 }, + { "lat": 40.7378083, "lon": -74.0002119 }, + { "lat": 40.7374083, "lon": -74.0004957 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196117092, + "bounds": { + "minlat": 40.7667157, + "minlon": -73.9828727, + "maxlat": 40.7671259, + "maxlon": -73.9825662 + }, + "nodes": [ + 42435714, + 10082664512, + 4207815982 + ], + "geometry": [ + { "lat": 40.7667157, "lon": -73.9828727 }, + { "lat": 40.7668203, "lon": -73.9827946 }, + { "lat": 40.7671259, "lon": -73.9825662 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "||||right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 196802689, + "bounds": { + "minlat": 40.7866050, + "minlon": -73.9712361, + "maxlat": 40.7877988, + "maxlon": -73.9683927 + }, + "nodes": [ + 42438043, + 3718670420, + 9796827005, + 7106818627 + ], + "geometry": [ + { "lat": 40.7877988, "lon": -73.9712361 }, + { "lat": 40.7877404, "lon": -73.9710964 }, + { "lat": 40.7866581, "lon": -73.9685198 }, + { "lat": 40.7866050, "lon": -73.9683927 } + ], + "tags": { + "highway": "residential", + "name": "West 88th Street", + "name:ru": "Западная 88-я стрит", + "name_1": "West 88 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 196946879, + "bounds": { + "minlat": 40.8546770, + "minlon": -73.9393482, + "maxlat": 40.8549812, + "maxlon": -73.9386520 + }, + "nodes": [ + 42440083, + 1763612252, + 9467158620, + 42428130 + ], + "geometry": [ + { "lat": 40.8549812, "lon": -73.9393482 }, + { "lat": 40.8547243, "lon": -73.9387599 }, + { "lat": 40.8547059, "lon": -73.9387180 }, + { "lat": 40.8546770, "lon": -73.9386520 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "West 186th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 196946881, + "bounds": { + "minlat": 40.8549812, + "minlon": -73.9393482, + "maxlat": 40.8559050, + "maxlon": -73.9386160 + }, + "nodes": [ + 42436305, + 42440083 + ], + "geometry": [ + { "lat": 40.8559050, "lon": -73.9386160 }, + { "lat": 40.8549812, "lon": -73.9393482 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Chittenden Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 197294051, + "bounds": { + "minlat": 40.8381145, + "minlon": -73.9362339, + "maxlat": 40.8404537, + "maxlon": -73.9350120 + }, + "nodes": [ + 13319742507, + 6836035786, + 42439763, + 42439760, + 42439757, + 42439754, + 13703102709, + 6836035793, + 42439751, + 42439748, + 42439745, + 6836035794, + 42439744, + 6836035795, + 42439742, + 6836035796, + 42439740, + 42439739, + 6836035797, + 42439738, + 42439737, + 42439735, + 42439734, + 6836035798, + 6836035790, + 13319742508 + ], + "geometry": [ + { "lat": 40.8404537, "lon": -73.9353046 }, + { "lat": 40.8403210, "lon": -73.9352431 }, + { "lat": 40.8401770, "lon": -73.9351736 }, + { "lat": 40.8400995, "lon": -73.9351357 }, + { "lat": 40.8400018, "lon": -73.9350908 }, + { "lat": 40.8399085, "lon": -73.9350560 }, + { "lat": 40.8397938, "lon": -73.9350293 }, + { "lat": 40.8397849, "lon": -73.9350272 }, + { "lat": 40.8396932, "lon": -73.9350134 }, + { "lat": 40.8396147, "lon": -73.9350120 }, + { "lat": 40.8395349, "lon": -73.9350196 }, + { "lat": 40.8394455, "lon": -73.9350306 }, + { "lat": 40.8393694, "lon": -73.9350478 }, + { "lat": 40.8392882, "lon": -73.9350752 }, + { "lat": 40.8392077, "lon": -73.9351123 }, + { "lat": 40.8391219, "lon": -73.9351585 }, + { "lat": 40.8390475, "lon": -73.9352073 }, + { "lat": 40.8389514, "lon": -73.9352820 }, + { "lat": 40.8388822, "lon": -73.9353499 }, + { "lat": 40.8387806, "lon": -73.9354609 }, + { "lat": 40.8386987, "lon": -73.9355857 }, + { "lat": 40.8385849, "lon": -73.9357460 }, + { "lat": 40.8384189, "lon": -73.9359514 }, + { "lat": 40.8382318, "lon": -73.9361302 }, + { "lat": 40.8381932, "lon": -73.9361666 }, + { "lat": 40.8381145, "lon": -73.9362339 } + ], + "tags": { + "alt_name": "Paul Robeson Boulevard", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "description": "This honorary street name memorializes Paul Robeson.", + "highway": "residential", + "historic": "memorial", + "name": "Edgecombe Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 197294052, + "bounds": { + "minlat": 40.8398640, + "minlon": -73.9383640, + "maxlat": 40.8404870, + "maxlon": -73.9369058 + }, + "nodes": [ + 42442710, + 6836035777, + 9566997263, + 42455238 + ], + "geometry": [ + { "lat": 40.8398640, "lon": -73.9369058 }, + { "lat": 40.8399295, "lon": -73.9370589 }, + { "lat": 40.8404471, "lon": -73.9382706 }, + { "lat": 40.8404870, "lon": -73.9383640 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "West 168th Street", + "name_1": "West 168 Street", + "name_2": "Haven Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "168th", + "tiger:name_base_1": "168", + "tiger:name_base_2": "Haven", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:name_type_2": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 197294557, + "bounds": { + "minlat": 40.8378835, + "minlon": -73.9398455, + "maxlat": 40.8385135, + "maxlon": -73.9383539 + }, + "nodes": [ + 42433027, + 9569882316, + 2499802999, + 1762784089, + 42437319 + ], + "geometry": [ + { "lat": 40.8385135, "lon": -73.9398455 }, + { "lat": 40.8384474, "lon": -73.9397025 }, + { "lat": 40.8384426, "lon": -73.9396892 }, + { "lat": 40.8379340, "lon": -73.9385018 }, + { "lat": 40.8378835, "lon": -73.9383539 } + ], + "tags": { + "highway": "tertiary", + "name": "West 165th Street", + "name_1": "West 165 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "165th", + "tiger:name_base_1": "165", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 197469195, + "bounds": { + "minlat": 40.8709230, + "minlon": -73.9194580, + "maxlat": 40.8722490, + "maxlon": -73.9179160 + }, + "nodes": [ + 42436929, + 11587349761, + 9561209102, + 42454538, + 9561209105, + 1764671317, + 9561209101, + 42432882 + ], + "geometry": [ + { "lat": 40.8709230, "lon": -73.9179160 }, + { "lat": 40.8709796, "lon": -73.9179820 }, + { "lat": 40.8714209, "lon": -73.9184963 }, + { "lat": 40.8714790, "lon": -73.9185640 }, + { "lat": 40.8715498, "lon": -73.9186461 }, + { "lat": 40.8721947, "lon": -73.9193949 }, + { "lat": 40.8722119, "lon": -73.9194149 }, + { "lat": 40.8722490, "lon": -73.9194580 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 215th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "215th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 197582873, + "bounds": { + "minlat": 40.7289446, + "minlon": -73.9970942, + "maxlat": 40.7295091, + "maxlon": -73.9966147 + }, + "nodes": [ + 1692433936, + 8309478907, + 3584752194 + ], + "geometry": [ + { "lat": 40.7289446, "lon": -73.9970942 }, + { "lat": 40.7289896, "lon": -73.9970560 }, + { "lat": 40.7295091, "lon": -73.9966147 } + ], + "tags": { + "foot": "private", + "highway": "pedestrian", + "name": "Schwartz Plaza", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 198595454, + "bounds": { + "minlat": 40.7412245, + "minlon": -73.9543492, + "maxlat": 40.7413061, + "maxlon": -73.9539755 + }, + "nodes": [ + 276320116, + 11211160299, + 9983412381, + 3205305426 + ], + "geometry": [ + { "lat": 40.7413061, "lon": -73.9543492 }, + { "lat": 40.7412940, "lon": -73.9542941 }, + { "lat": 40.7412664, "lon": -73.9541763 }, + { "lat": 40.7412245, "lon": -73.9539755 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Borden Avenue", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101", + "turn:lanes:backward": "through" + } +}, +{ + "type": "way", + "id": 198595455, + "bounds": { + "minlat": 40.7542826, + "minlon": -73.9118088, + "maxlat": 40.7555949, + "maxlon": -73.9090114 + }, + "nodes": [ + 42807812, + 8593793995, + 4912692240, + 6450807393, + 6450802101, + 6450802100, + 6450807392, + 11643678883, + 6450807391, + 6450802099, + 6450802098, + 8593804469, + 42819569 + ], + "geometry": [ + { "lat": 40.7555949, "lon": -73.9118088 }, + { "lat": 40.7555483, "lon": -73.9117099 }, + { "lat": 40.7555122, "lon": -73.9116332 }, + { "lat": 40.7552203, "lon": -73.9110132 }, + { "lat": 40.7550459, "lon": -73.9106427 }, + { "lat": 40.7549337, "lon": -73.9104042 }, + { "lat": 40.7549250, "lon": -73.9103857 }, + { "lat": 40.7548840, "lon": -73.9102987 }, + { "lat": 40.7546392, "lon": -73.9097786 }, + { "lat": 40.7546102, "lon": -73.9097170 }, + { "lat": 40.7544905, "lon": -73.9094628 }, + { "lat": 40.7543368, "lon": -73.9091272 }, + { "lat": 40.7542826, "lon": -73.9090114 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595457, + "bounds": { + "minlat": 40.7536450, + "minlon": -73.9090114, + "maxlat": 40.7542826, + "maxlon": -73.9076727 + }, + "nodes": [ + 42819569, + 3569893230, + 3786044413, + 5391426913, + 7661119493, + 13784327134, + 42836507 + ], + "geometry": [ + { "lat": 40.7542826, "lon": -73.9090114 }, + { "lat": 40.7542333, "lon": -73.9089076 }, + { "lat": 40.7539454, "lon": -73.9083015 }, + { "lat": 40.7538792, "lon": -73.9081602 }, + { "lat": 40.7538646, "lon": -73.9081291 }, + { "lat": 40.7536878, "lon": -73.9077616 }, + { "lat": 40.7536450, "lon": -73.9076727 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595460, + "bounds": { + "minlat": 40.7614755, + "minlon": -73.9627156, + "maxlat": 40.7615641, + "maxlon": -73.9625040 + }, + "nodes": [ + 13033168824, + 6747047550, + 8907450705 + ], + "geometry": [ + { "lat": 40.7614755, "lon": -73.9625040 }, + { "lat": 40.7614804, "lon": -73.9625157 }, + { "lat": 40.7615641, "lon": -73.9627156 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 61st Street", + "name:ru": "Восточная 61-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595461, + "bounds": { + "minlat": 40.7618673, + "minlon": -73.9702074, + "maxlat": 40.7647205, + "maxlon": -73.9634382 + }, + "nodes": [ + 42436527, + 4918486110, + 8638499088, + 10166509657, + 42436519, + 10166509660, + 10125147537, + 42436516, + 10125147536, + 12834723216, + 10125227968, + 42436514, + 596775930, + 10125227967, + 12926009471 + ], + "geometry": [ + { "lat": 40.7618673, "lon": -73.9634382 }, + { "lat": 40.7619188, "lon": -73.9635620 }, + { "lat": 40.7626878, "lon": -73.9653817 }, + { "lat": 40.7627522, "lon": -73.9655341 }, + { "lat": 40.7628079, "lon": -73.9656659 }, + { "lat": 40.7628666, "lon": -73.9658056 }, + { "lat": 40.7634404, "lon": -73.9671683 }, + { "lat": 40.7634846, "lon": -73.9672732 }, + { "lat": 40.7635264, "lon": -73.9673717 }, + { "lat": 40.7640609, "lon": -73.9686408 }, + { "lat": 40.7640860, "lon": -73.9687005 }, + { "lat": 40.7641300, "lon": -73.9688047 }, + { "lat": 40.7642073, "lon": -73.9689874 }, + { "lat": 40.7642547, "lon": -73.9691002 }, + { "lat": 40.7647205, "lon": -73.9702074 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 61st Street", + "name:ru": "Восточная 61-я стрит", + "name_1": "East 61 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595464, + "bounds": { + "minlat": 40.7572058, + "minlon": -73.9082700, + "maxlat": 40.7583293, + "maxlon": -73.9073050 + }, + "nodes": [ + 42819560, + 2503678895, + 7814160647, + 4912921614, + 42856598 + ], + "geometry": [ + { "lat": 40.7583293, "lon": -73.9073050 }, + { "lat": 40.7580975, "lon": -73.9075723 }, + { "lat": 40.7577682, "lon": -73.9078306 }, + { "lat": 40.7572718, "lon": -73.9082125 }, + { "lat": 40.7572058, "lon": -73.9082700 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Hobart Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595465, + "bounds": { + "minlat": 40.7591602, + "minlon": -73.9066887, + "maxlat": 40.7598474, + "maxlon": -73.9063123 + }, + "nodes": [ + 42873480, + 7814200403, + 10891936636, + 10891936637, + 7660653654 + ], + "geometry": [ + { "lat": 40.7598474, "lon": -73.9063123 }, + { "lat": 40.7597456, "lon": -73.9063682 }, + { "lat": 40.7597025, "lon": -73.9063925 }, + { "lat": 40.7595056, "lon": -73.9065000 }, + { "lat": 40.7591602, "lon": -73.9066887 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Hobart Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595466, + "bounds": { + "minlat": 40.7482804, + "minlon": -73.9391782, + "maxlat": 40.7488320, + "maxlon": -73.9376434 + }, + "nodes": [ + 276203987, + 42844305, + 6779410657, + 6766433608, + 42844301, + 11211159816, + 42844299 + ], + "geometry": [ + { "lat": 40.7488320, "lon": -73.9376434 }, + { "lat": 40.7487367, "lon": -73.9379061 }, + { "lat": 40.7485450, "lon": -73.9384168 }, + { "lat": 40.7484974, "lon": -73.9385426 }, + { "lat": 40.7483715, "lon": -73.9389193 }, + { "lat": 40.7483289, "lon": -73.9390404 }, + { "lat": 40.7482804, "lon": -73.9391782 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Jackson Avenue", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595470, + "bounds": { + "minlat": 40.7600372, + "minlon": -73.9639388, + "maxlat": 40.7606981, + "maxlon": -73.9618856 + }, + "nodes": [ + 371037237, + 3785591375, + 3785591374, + 3785591373, + 371037238, + 3785591372, + 3785591371, + 371037239, + 3785591370, + 371034148, + 371034152 + ], + "geometry": [ + { "lat": 40.7606981, "lon": -73.9639388 }, + { "lat": 40.7606945, "lon": -73.9638531 }, + { "lat": 40.7606856, "lon": -73.9637521 }, + { "lat": 40.7606767, "lon": -73.9636500 }, + { "lat": 40.7606474, "lon": -73.9634234 }, + { "lat": 40.7606385, "lon": -73.9633600 }, + { "lat": 40.7606252, "lon": -73.9632966 }, + { "lat": 40.7606065, "lon": -73.9632285 }, + { "lat": 40.7605896, "lon": -73.9631757 }, + { "lat": 40.7605691, "lon": -73.9631205 }, + { "lat": 40.7600372, "lon": -73.9618856 } + ], + "tags": { + "bicycle": "no", + "cycleway:right": "no", + "foot": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "maxheight": "13'5\"", + "name": "Ed Koch Queensboro Bridge Lower Roadway", + "oneway": "yes", + "ref": "NY 25", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595472, + "bounds": { + "minlat": 40.7520725, + "minlon": -73.9264731, + "maxlat": 40.7522295, + "maxlon": -73.9252362 + }, + "nodes": [ + 42888672, + 8088564408, + 42815840, + 9189020452, + 4841296378, + 8088564405, + 42841778, + 8088564403, + 10598537442 + ], + "geometry": [ + { "lat": 40.7520725, "lon": -73.9264731 }, + { "lat": 40.7520743, "lon": -73.9263794 }, + { "lat": 40.7520799, "lon": -73.9259775 }, + { "lat": 40.7520927, "lon": -73.9258230 }, + { "lat": 40.7521063, "lon": -73.9257461 }, + { "lat": 40.7521338, "lon": -73.9256143 }, + { "lat": 40.7521550, "lon": -73.9255231 }, + { "lat": 40.7521742, "lon": -73.9254404 }, + { "lat": 40.7522295, "lon": -73.9252362 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595475, + "bounds": { + "minlat": 40.7526405, + "minlon": -73.9233881, + "maxlat": 40.7527562, + "maxlon": -73.9228431 + }, + "nodes": [ + 13746022284, + 13509316954, + 6833045382, + 8088564400, + 42932884 + ], + "geometry": [ + { "lat": 40.7526405, "lon": -73.9233881 }, + { "lat": 40.7526681, "lon": -73.9232539 }, + { "lat": 40.7527097, "lon": -73.9230514 }, + { "lat": 40.7527269, "lon": -73.9229744 }, + { "lat": 40.7527562, "lon": -73.9228431 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595476, + "bounds": { + "minlat": 40.7536331, + "minlon": -73.9146838, + "maxlat": 40.7536576, + "maxlon": -73.9145488 + }, + "nodes": [ + 7622888739, + 8088642722 + ], + "geometry": [ + { "lat": 40.7536576, "lon": -73.9146838 }, + { "lat": 40.7536331, "lon": -73.9145488 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:right": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 198595477, + "bounds": { + "minlat": 40.7489275, + "minlon": -73.9373948, + "maxlat": 40.7491713, + "maxlon": -73.9367877 + }, + "nodes": [ + 42844306, + 6813394109, + 12829209546, + 8894202207, + 3785669504 + ], + "geometry": [ + { "lat": 40.7489275, "lon": -73.9373948 }, + { "lat": 40.7489838, "lon": -73.9372177 }, + { "lat": 40.7489946, "lon": -73.9371852 }, + { "lat": 40.7491282, "lon": -73.9368845 }, + { "lat": 40.7491713, "lon": -73.9367877 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 198595481, + "bounds": { + "minlat": 40.7538886, + "minlon": -73.9168741, + "maxlat": 40.7538967, + "maxlon": -73.9164781 + }, + "nodes": [ + 2503683548, + 9188971715, + 8088629351, + 42833515 + ], + "geometry": [ + { "lat": 40.7538964, "lon": -73.9168741 }, + { "lat": 40.7538967, "lon": -73.9167766 }, + { "lat": 40.7538940, "lon": -73.9165895 }, + { "lat": 40.7538886, "lon": -73.9164781 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595492, + "bounds": { + "minlat": 40.7509864, + "minlon": -73.9410644, + "maxlat": 40.7513332, + "maxlon": -73.9402810 + }, + "nodes": [ + 42808195, + 2468400259, + 42861204 + ], + "geometry": [ + { "lat": 40.7509864, "lon": -73.9402810 }, + { "lat": 40.7510280, "lon": -73.9403702 }, + { "lat": 40.7513332, "lon": -73.9410644 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "name": "Queens Plaza North", + "name_1": "Bridge Plaza North", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595499, + "bounds": { + "minlat": 40.7498201, + "minlon": -73.9398386, + "maxlat": 40.7501879, + "maxlon": -73.9389912 + }, + "nodes": [ + 42872008, + 6813394103, + 6779709386, + 6813394095, + 42817469 + ], + "geometry": [ + { "lat": 40.7501879, "lon": -73.9398386 }, + { "lat": 40.7501579, "lon": -73.9397694 }, + { "lat": 40.7499233, "lon": -73.9392382 }, + { "lat": 40.7498702, "lon": -73.9391063 }, + { "lat": 40.7498201, "lon": -73.9389912 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Queens Plaza South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 198595504, + "bounds": { + "minlat": 40.7507653, + "minlon": -73.9422771, + "maxlat": 40.7512566, + "maxlon": -73.9411693 + }, + "nodes": [ + 42920892, + 4457118210, + 42861161, + 9921707303 + ], + "geometry": [ + { "lat": 40.7512566, "lon": -73.9422771 }, + { "lat": 40.7512120, "lon": -73.9421785 }, + { "lat": 40.7508947, "lon": -73.9414712 }, + { "lat": 40.7507653, "lon": -73.9411693 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxheight": "below_default", + "name": "Queens Plaza South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595507, + "bounds": { + "minlat": 40.7595738, + "minlon": -73.9618363, + "maxlat": 40.7601027, + "maxlon": -73.9605510 + }, + "nodes": [ + 42423579, + 371034158 + ], + "geometry": [ + { "lat": 40.7595738, "lon": -73.9605510 }, + { "lat": 40.7601027, "lon": -73.9618363 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Queensboro Bridge lower level", + "destination": "2nd Avenue south;60th Street west", + "foot": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "Ed Koch Queensboro Bridge Lower Level", + "note": "Lower Level", + "oneway": "yes", + "ref": "NY 25", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 198595515, + "bounds": { + "minlat": 40.7571287, + "minlon": -73.9465611, + "maxlat": 40.7577990, + "maxlon": -73.9458140 + }, + "nodes": [ + 42826823, + 6452721230, + 5538983361, + 607954910 + ], + "geometry": [ + { "lat": 40.7577990, "lon": -73.9458140 }, + { "lat": 40.7577518, "lon": -73.9458658 }, + { "lat": 40.7576893, "lon": -73.9459343 }, + { "lat": 40.7571287, "lon": -73.9465611 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 198595516, + "bounds": { + "minlat": 40.7637352, + "minlon": -73.9413907, + "maxlat": 40.7655268, + "maxlon": -73.9402806 + }, + "nodes": [ + 2402842573, + 6452525939, + 7710779644, + 7746871139, + 11499501734, + 11499501739, + 7984683133, + 5538983370, + 42826813 + ], + "geometry": [ + { "lat": 40.7655268, "lon": -73.9402806 }, + { "lat": 40.7654525, "lon": -73.9403269 }, + { "lat": 40.7649546, "lon": -73.9406330 }, + { "lat": 40.7645987, "lon": -73.9408560 }, + { "lat": 40.7645220, "lon": -73.9409040 }, + { "lat": 40.7643549, "lon": -73.9410085 }, + { "lat": 40.7642896, "lon": -73.9410494 }, + { "lat": 40.7639619, "lon": -73.9412505 }, + { "lat": 40.7637352, "lon": -73.9413907 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard" + } +}, +{ + "type": "way", + "id": 198595517, + "bounds": { + "minlat": 40.7676918, + "minlon": -73.9361838, + "maxlat": 40.7677952, + "maxlon": -73.9359654 + }, + "nodes": [ + 2402842580, + 2459401770, + 2459401769, + 2796727177 + ], + "geometry": [ + { "lat": 40.7677952, "lon": -73.9359654 }, + { "lat": 40.7677671, "lon": -73.9360124 }, + { "lat": 40.7677353, "lon": -73.9360710 }, + { "lat": 40.7676918, "lon": -73.9361838 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:lane": "exclusive", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Vernon Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595533, + "bounds": { + "minlat": 40.7564410, + "minlon": -73.9435470, + "maxlat": 40.7646160, + "maxlon": -73.9377960 + }, + "nodes": [ + 42824080, + 6452525953, + 6452542363, + 42867027, + 6452542364, + 3569402511, + 42867029, + 3569402505, + 5487837572, + 6452777337, + 42815764, + 6452777338, + 8334076719, + 42867035, + 8334074883, + 2302476361, + 7987870304, + 8084752883, + 8334074908, + 42867040 + ], + "geometry": [ + { "lat": 40.7646160, "lon": -73.9377960 }, + { "lat": 40.7645487, "lon": -73.9378362 }, + { "lat": 40.7629189, "lon": -73.9388496 }, + { "lat": 40.7628360, "lon": -73.9389010 }, + { "lat": 40.7627643, "lon": -73.9389456 }, + { "lat": 40.7611871, "lon": -73.9399259 }, + { "lat": 40.7611000, "lon": -73.9399800 }, + { "lat": 40.7610239, "lon": -73.9400273 }, + { "lat": 40.7604531, "lon": -73.9403813 }, + { "lat": 40.7598370, "lon": -73.9407635 }, + { "lat": 40.7597620, "lon": -73.9408100 }, + { "lat": 40.7597036, "lon": -73.9408465 }, + { "lat": 40.7584770, "lon": -73.9416126 }, + { "lat": 40.7583980, "lon": -73.9416620 }, + { "lat": 40.7583331, "lon": -73.9417036 }, + { "lat": 40.7583119, "lon": -73.9417172 }, + { "lat": 40.7576538, "lon": -73.9423608 }, + { "lat": 40.7565487, "lon": -73.9434416 }, + { "lat": 40.7565106, "lon": -73.9434788 }, + { "lat": 40.7564410, "lon": -73.9435470 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "11th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595538, + "bounds": { + "minlat": 40.7677832, + "minlon": -73.9294913, + "maxlat": 40.7682290, + "maxlon": -73.9291350 + }, + "nodes": [ + 2403968916, + 5487911869, + 3570422529, + 42826048 + ], + "geometry": [ + { "lat": 40.7677832, "lon": -73.9294913 }, + { "lat": 40.7679810, "lon": -73.9293332 }, + { "lat": 40.7681773, "lon": -73.9291760 }, + { "lat": 40.7682290, "lon": -73.9291350 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595539, + "bounds": { + "minlat": 40.7746243, + "minlon": -73.9239852, + "maxlat": 40.7753908, + "maxlon": -73.9230165 + }, + "nodes": [ + 42826008, + 7714984364, + 3778337366, + 3778337393, + 8443800349, + 2447553712, + 42826016 + ], + "geometry": [ + { "lat": 40.7753908, "lon": -73.9230165 }, + { "lat": 40.7753129, "lon": -73.9231189 }, + { "lat": 40.7752981, "lon": -73.9231384 }, + { "lat": 40.7750621, "lon": -73.9234489 }, + { "lat": 40.7747164, "lon": -73.9238669 }, + { "lat": 40.7746967, "lon": -73.9238887 }, + { "lat": 40.7746243, "lon": -73.9239852 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "designated", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left|through" + } +}, +{ + "type": "way", + "id": 198595540, + "bounds": { + "minlat": 40.7544034, + "minlon": -73.9420401, + "maxlat": 40.7549959, + "maxlon": -73.9414686 + }, + "nodes": [ + 12221051822, + 12234525479 + ], + "geometry": [ + { "lat": 40.7549959, "lon": -73.9414686 }, + { "lat": 40.7544034, "lon": -73.9420401 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lit": "yes", + "name": "21st Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595541, + "bounds": { + "minlat": 40.7745522, + "minlon": -73.9240805, + "maxlat": 40.7746243, + "maxlon": -73.9239852 + }, + "nodes": [ + 42826016, + 6452806846 + ], + "geometry": [ + { "lat": 40.7746243, "lon": -73.9239852 }, + { "lat": 40.7745522, "lon": -73.9240805 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595542, + "bounds": { + "minlat": 40.7601597, + "minlon": -73.9365277, + "maxlat": 40.7613440, + "maxlon": -73.9353960 + }, + "nodes": [ + 42825865, + 4991539809, + 3569402185, + 3569402180, + 12234643430 + ], + "geometry": [ + { "lat": 40.7613440, "lon": -73.9353960 }, + { "lat": 40.7612834, "lon": -73.9354538 }, + { "lat": 40.7605190, "lon": -73.9361829 }, + { "lat": 40.7604254, "lon": -73.9362722 }, + { "lat": 40.7601597, "lon": -73.9365277 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595543, + "bounds": { + "minlat": 40.7450343, + "minlon": -73.9483880, + "maxlat": 40.7477643, + "maxlon": -73.9474775 + }, + "nodes": [ + 11163899158, + 8334173143, + 42825906, + 8334165804, + 6597261575, + 42825913, + 8996515261, + 11163899161, + 9982728590, + 11623120645, + 11211159882, + 42825916, + 9982750323, + 9982750321, + 42825919, + 9982750320, + 4203039770 + ], + "geometry": [ + { "lat": 40.7477643, "lon": -73.9474775 }, + { "lat": 40.7474299, "lon": -73.9475899 }, + { "lat": 40.7473679, "lon": -73.9476083 }, + { "lat": 40.7473058, "lon": -73.9476289 }, + { "lat": 40.7467365, "lon": -73.9478218 }, + { "lat": 40.7466807, "lon": -73.9478404 }, + { "lat": 40.7466126, "lon": -73.9478626 }, + { "lat": 40.7463863, "lon": -73.9479381 }, + { "lat": 40.7462084, "lon": -73.9479975 }, + { "lat": 40.7461927, "lon": -73.9480027 }, + { "lat": 40.7460539, "lon": -73.9480490 }, + { "lat": 40.7459865, "lon": -73.9480715 }, + { "lat": 40.7459174, "lon": -73.9480962 }, + { "lat": 40.7453582, "lon": -73.9482790 }, + { "lat": 40.7452936, "lon": -73.9483009 }, + { "lat": 40.7452269, "lon": -73.9483235 }, + { "lat": 40.7450343, "lon": -73.9483880 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595546, + "bounds": { + "minlat": 40.7476667, + "minlon": -73.9450503, + "maxlat": 40.7496814, + "maxlon": -73.9437075 + }, + "nodes": [ + 42825546, + 10699487863, + 9982745682, + 9982745681, + 9982745683, + 9982745684, + 42920903, + 9982745685, + 9982745686, + 9982745687, + 42917509, + 11180928338, + 11180928337, + 9982745690, + 42818131 + ], + "geometry": [ + { "lat": 40.7476667, "lon": -73.9450503 }, + { "lat": 40.7477662, "lon": -73.9450183 }, + { "lat": 40.7479781, "lon": -73.9449503 }, + { "lat": 40.7481115, "lon": -73.9449044 }, + { "lat": 40.7482303, "lon": -73.9448588 }, + { "lat": 40.7483430, "lon": -73.9448081 }, + { "lat": 40.7484073, "lon": -73.9447725 }, + { "lat": 40.7484615, "lon": -73.9447402 }, + { "lat": 40.7485818, "lon": -73.9446568 }, + { "lat": 40.7486659, "lon": -73.9445907 }, + { "lat": 40.7490431, "lon": -73.9442600 }, + { "lat": 40.7494494, "lon": -73.9439092 }, + { "lat": 40.7495836, "lon": -73.9437933 }, + { "lat": 40.7496098, "lon": -73.9437707 }, + { "lat": 40.7496814, "lon": -73.9437075 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "tertiary", + "lit": "yes", + "name": "23rd Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595547, + "bounds": { + "minlat": 40.7482416, + "minlon": -73.9416655, + "maxlat": 40.7494240, + "maxlon": -73.9405350 + }, + "nodes": [ + 42872006, + 10994725854, + 8158221224, + 9982745671, + 42818143 + ], + "geometry": [ + { "lat": 40.7494240, "lon": -73.9405350 }, + { "lat": 40.7493842, "lon": -73.9405725 }, + { "lat": 40.7483639, "lon": -73.9415362 }, + { "lat": 40.7483179, "lon": -73.9415892 }, + { "lat": 40.7482416, "lon": -73.9416655 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "27th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595548, + "bounds": { + "minlat": 40.7606212, + "minlon": -73.9643559, + "maxlat": 40.7609647, + "maxlon": -73.9640978 + }, + "nodes": [ + 1775176473, + 42424089 + ], + "geometry": [ + { "lat": 40.7609647, "lon": -73.9640978 }, + { "lat": 40.7606212, "lon": -73.9643559 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "separate", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 198595549, + "bounds": { + "minlat": 40.7614854, + "minlon": -73.9637205, + "maxlat": 40.7618673, + "maxlon": -73.9634382 + }, + "nodes": [ + 42436527, + 4918486113, + 7946231854, + 9496052478 + ], + "geometry": [ + { "lat": 40.7618673, "lon": -73.9634382 }, + { "lat": 40.7618120, "lon": -73.9634791 }, + { "lat": 40.7615190, "lon": -73.9636957 }, + { "lat": 40.7614854, "lon": -73.9637205 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|none|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 198595551, + "bounds": { + "minlat": 40.7642579, + "minlon": -73.9377960, + "maxlat": 40.7646160, + "maxlon": -73.9370141 + }, + "nodes": [ + 42824080, + 6452525954, + 6452525956, + 42824085 + ], + "geometry": [ + { "lat": 40.7646160, "lon": -73.9377960 }, + { "lat": 40.7645749, "lon": -73.9377064 }, + { "lat": 40.7642916, "lon": -73.9370866 }, + { "lat": 40.7642579, "lon": -73.9370141 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "34th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595552, + "bounds": { + "minlat": 40.7543973, + "minlon": -73.9284507, + "maxlat": 40.7581046, + "maxlon": -73.9205124 + }, + "nodes": [ + 42920467, + 3569401958, + 6450628429, + 42927013, + 6450628430, + 5114100238, + 6450628431, + 1927807845, + 6450628432, + 5114100236, + 3573447541, + 42841770, + 3573447542, + 3573447547, + 42888664, + 3573447548, + 3573447551, + 42926395, + 3573447553, + 3574982344, + 42866664, + 3574982345, + 3574982348, + 42908498, + 3574982349, + 3574982352, + 42927001, + 3574982353, + 3574982356, + 42905203, + 3574982357, + 11186117022, + 6450505980, + 8735889839 + ], + "geometry": [ + { "lat": 40.7543973, "lon": -73.9205124 }, + { "lat": 40.7544358, "lon": -73.9205949 }, + { "lat": 40.7547417, "lon": -73.9212504 }, + { "lat": 40.7547700, "lon": -73.9213110 }, + { "lat": 40.7548074, "lon": -73.9213912 }, + { "lat": 40.7549750, "lon": -73.9217503 }, + { "lat": 40.7550990, "lon": -73.9220177 }, + { "lat": 40.7551516, "lon": -73.9221287 }, + { "lat": 40.7551939, "lon": -73.9222177 }, + { "lat": 40.7553015, "lon": -73.9224498 }, + { "lat": 40.7554778, "lon": -73.9228274 }, + { "lat": 40.7555146, "lon": -73.9229062 }, + { "lat": 40.7555500, "lon": -73.9229820 }, + { "lat": 40.7558587, "lon": -73.9236433 }, + { "lat": 40.7558893, "lon": -73.9237089 }, + { "lat": 40.7559204, "lon": -73.9237753 }, + { "lat": 40.7562298, "lon": -73.9244386 }, + { "lat": 40.7562613, "lon": -73.9245059 }, + { "lat": 40.7562944, "lon": -73.9245768 }, + { "lat": 40.7566009, "lon": -73.9252334 }, + { "lat": 40.7566393, "lon": -73.9253159 }, + { "lat": 40.7566662, "lon": -73.9253736 }, + { "lat": 40.7569791, "lon": -73.9260438 }, + { "lat": 40.7570081, "lon": -73.9261059 }, + { "lat": 40.7570382, "lon": -73.9261703 }, + { "lat": 40.7573448, "lon": -73.9268274 }, + { "lat": 40.7573825, "lon": -73.9269082 }, + { "lat": 40.7574177, "lon": -73.9269836 }, + { "lat": 40.7577246, "lon": -73.9276410 }, + { "lat": 40.7577543, "lon": -73.9277046 }, + { "lat": 40.7577885, "lon": -73.9277780 }, + { "lat": 40.7580017, "lon": -73.9282347 }, + { "lat": 40.7580789, "lon": -73.9284002 }, + { "lat": 40.7581046, "lon": -73.9284507 } + ], + "tags": { + "highway": "tertiary", + "name": "35th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595553, + "bounds": { + "minlat": 40.7515694, + "minlon": -73.9347568, + "maxlat": 40.7519655, + "maxlon": -73.9337792 + }, + "nodes": [ + 42849753, + 9189020478, + 8088590973, + 13049835927, + 8250499943, + 42906439 + ], + "geometry": [ + { "lat": 40.7515694, "lon": -73.9337792 }, + { "lat": 40.7516248, "lon": -73.9338723 }, + { "lat": 40.7516517, "lon": -73.9339331 }, + { "lat": 40.7517622, "lon": -73.9342240 }, + { "lat": 40.7519378, "lon": -73.9346865 }, + { "lat": 40.7519655, "lon": -73.9347568 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "40th Avenue", + "oneway": "yes", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 198595554, + "bounds": { + "minlat": 40.7522423, + "minlon": -73.9406160, + "maxlat": 40.7530370, + "maxlon": -73.9391219 + }, + "nodes": [ + 42895311, + 9621417332, + 8699111916, + 42861200, + 8699111874, + 6785691682, + 9971542829, + 10744391805, + 42808193 + ], + "geometry": [ + { "lat": 40.7530370, "lon": -73.9406160 }, + { "lat": 40.7529951, "lon": -73.9405382 }, + { "lat": 40.7526807, "lon": -73.9399477 }, + { "lat": 40.7526400, "lon": -73.9398710 }, + { "lat": 40.7526094, "lon": -73.9398128 }, + { "lat": 40.7524800, "lon": -73.9395697 }, + { "lat": 40.7523014, "lon": -73.9392335 }, + { "lat": 40.7522716, "lon": -73.9391779 }, + { "lat": 40.7522423, "lon": -73.9391219 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "name": "41st Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595555, + "bounds": { + "minlat": 40.7494240, + "minlon": -73.9428340, + "maxlat": 40.7506555, + "maxlon": -73.9405350 + }, + "nodes": [ + 42872006, + 10994725868, + 8158221230, + 9982745703, + 42818591, + 9982745702, + 42861164, + 9982745706, + 9982745705, + 42920894 + ], + "geometry": [ + { "lat": 40.7494240, "lon": -73.9405350 }, + { "lat": 40.7494622, "lon": -73.9406062 }, + { "lat": 40.7497684, "lon": -73.9411719 }, + { "lat": 40.7497825, "lon": -73.9411989 }, + { "lat": 40.7498313, "lon": -73.9412869 }, + { "lat": 40.7498766, "lon": -73.9413732 }, + { "lat": 40.7502504, "lon": -73.9420716 }, + { "lat": 40.7505766, "lon": -73.9426854 }, + { "lat": 40.7506082, "lon": -73.9427449 }, + { "lat": 40.7506555, "lon": -73.9428340 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "42nd Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595556, + "bounds": { + "minlat": 40.7530594, + "minlon": -73.9214904, + "maxlat": 40.7543973, + "maxlon": -73.9205124 + }, + "nodes": [ + 42920467, + 3569401956, + 8593804550, + 3569401929, + 42920473 + ], + "geometry": [ + { "lat": 40.7543973, "lon": -73.9205124 }, + { "lat": 40.7543175, "lon": -73.9205769 }, + { "lat": 40.7537186, "lon": -73.9210609 }, + { "lat": 40.7531876, "lon": -73.9214904 }, + { "lat": 40.7530594, "lon": -73.9214902 } + ], + "tags": { + "highway": "residential", + "name": "42nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595557, + "bounds": { + "minlat": 40.7482259, + "minlon": -73.9491667, + "maxlat": 40.7484653, + "maxlon": -73.9479369 + }, + "nodes": [ + 9982750330, + 12259922426, + 12259922429, + 9982750328 + ], + "geometry": [ + { "lat": 40.7484653, "lon": -73.9491667 }, + { "lat": 40.7483206, "lon": -73.9484233 }, + { "lat": 40.7482949, "lon": -73.9482914 }, + { "lat": 40.7482259, "lon": -73.9479369 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595563, + "bounds": { + "minlat": 40.7529697, + "minlon": -73.9102410, + "maxlat": 40.7542826, + "maxlon": -73.9090114 + }, + "nodes": [ + 42819569, + 3569893229, + 7249269950, + 1904847198, + 9188971692, + 1904847206, + 9188971691, + 7660830682, + 9188971693, + 7661187836, + 1904847194, + 9188971702, + 9188971701, + 1904847201 + ], + "geometry": [ + { "lat": 40.7542826, "lon": -73.9090114 }, + { "lat": 40.7542105, "lon": -73.9090620 }, + { "lat": 40.7541125, "lon": -73.9091310 }, + { "lat": 40.7539801, "lon": -73.9092325 }, + { "lat": 40.7538351, "lon": -73.9093519 }, + { "lat": 40.7537119, "lon": -73.9094619 }, + { "lat": 40.7535858, "lon": -73.9095801 }, + { "lat": 40.7534798, "lon": -73.9096861 }, + { "lat": 40.7533650, "lon": -73.9098106 }, + { "lat": 40.7532560, "lon": -73.9099338 }, + { "lat": 40.7530944, "lon": -73.9101205 }, + { "lat": 40.7530523, "lon": -73.9101659 }, + { "lat": 40.7530122, "lon": -73.9102048 }, + { "lat": 40.7529697, "lon": -73.9102410 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "51st Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595566, + "bounds": { + "minlat": 40.7453966, + "minlon": -73.9066344, + "maxlat": 40.7456486, + "maxlon": -73.9064347 + }, + "nodes": [ + 42896911, + 11643652880, + 11919132867, + 42870273 + ], + "geometry": [ + { "lat": 40.7456486, "lon": -73.9064347 }, + { "lat": 40.7455896, "lon": -73.9064943 }, + { "lat": 40.7454684, "lon": -73.9066158 }, + { "lat": 40.7453966, "lon": -73.9066344 } + ], + "tags": { + "highway": "tertiary", + "name": "58th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198595578, + "bounds": { + "minlat": 40.7720464, + "minlon": -73.9331631, + "maxlat": 40.7723578, + "maxlon": -73.9328598 + }, + "nodes": [ + 42874022, + 7745153200, + 2297397057, + 2459401729, + 9650262372, + 9650262373 + ], + "geometry": [ + { "lat": 40.7723578, "lon": -73.9328598 }, + { "lat": 40.7722469, "lon": -73.9329401 }, + { "lat": 40.7722321, "lon": -73.9329508 }, + { "lat": 40.7721213, "lon": -73.9330292 }, + { "lat": 40.7720746, "lon": -73.9330932 }, + { "lat": 40.7720464, "lon": -73.9331631 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "8th Street" + } +}, +{ + "type": "way", + "id": 198924523, + "bounds": { + "minlat": 40.7102684, + "minlon": -73.9654967, + "maxlat": 40.7104554, + "maxlon": -73.9638802 + }, + "nodes": [ + 42505380, + 9779538171, + 2782255560, + 9990599496 + ], + "geometry": [ + { "lat": 40.7104554, "lon": -73.9654967 }, + { "lat": 40.7104458, "lon": -73.9654116 }, + { "lat": 40.7102812, "lon": -73.9639911 }, + { "lat": 40.7102684, "lon": -73.9638802 } + ], + "tags": { + "bicycle": "yes", + "check_date:cycleway": "2023-07-20", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:lane": "advisory", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 198924524, + "bounds": { + "minlat": 40.7351666, + "minlon": -73.9183941, + "maxlat": 40.7353924, + "maxlon": -73.9169312 + }, + "nodes": [ + 42825232, + 10087484096, + 3795557333, + 42825308 + ], + "geometry": [ + { "lat": 40.7351666, "lon": -73.9183941 }, + { "lat": 40.7351785, "lon": -73.9182934 }, + { "lat": 40.7352898, "lon": -73.9176284 }, + { "lat": 40.7353924, "lon": -73.9169312 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924525, + "bounds": { + "minlat": 40.7353484, + "minlon": -73.9202609, + "maxlat": 40.7354327, + "maxlon": -73.9183416 + }, + "nodes": [ + 42825307, + 10087484097, + 11155242438, + 10084797210, + 42825306, + 2874954750, + 9194902533, + 9194902532, + 42825304 + ], + "geometry": [ + { "lat": 40.7354327, "lon": -73.9183416 }, + { "lat": 40.7354257, "lon": -73.9184598 }, + { "lat": 40.7353856, "lon": -73.9191254 }, + { "lat": 40.7353801, "lon": -73.9192158 }, + { "lat": 40.7353766, "lon": -73.9192981 }, + { "lat": 40.7353522, "lon": -73.9198132 }, + { "lat": 40.7353485, "lon": -73.9199909 }, + { "lat": 40.7353484, "lon": -73.9201463 }, + { "lat": 40.7353540, "lon": -73.9202609 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924551, + "bounds": { + "minlat": 40.7603396, + "minlon": -73.9642041, + "maxlat": 40.7605566, + "maxlon": -73.9636948 + }, + "nodes": [ + 13233288350, + 5186208519 + ], + "geometry": [ + { "lat": 40.7605566, "lon": -73.9642041 }, + { "lat": 40.7603396, "lon": -73.9636948 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "flex_post", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:both": "no", + "sidewalk:left": "lane", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 198924552, + "bounds": { + "minlat": 40.7622304, + "minlon": -73.9714224, + "maxlat": 40.7635873, + "maxlon": -73.9681876 + }, + "nodes": [ + 42445950, + 6188877023, + 10125174406, + 12834723220, + 7788529728, + 596775946, + 42448317, + 7788529732, + 4960527247, + 10125174405, + 42447009 + ], + "geometry": [ + { "lat": 40.7635873, "lon": -73.9714224 }, + { "lat": 40.7635382, "lon": -73.9713169 }, + { "lat": 40.7634433, "lon": -73.9711009 }, + { "lat": 40.7630156, "lon": -73.9700654 }, + { "lat": 40.7629936, "lon": -73.9700122 }, + { "lat": 40.7629476, "lon": -73.9699030 }, + { "lat": 40.7628699, "lon": -73.9697240 }, + { "lat": 40.7628222, "lon": -73.9696115 }, + { "lat": 40.7627472, "lon": -73.9694281 }, + { "lat": 40.7622707, "lon": -73.9682938 }, + { "lat": 40.7622304, "lon": -73.9681876 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "yes", + "surface": "asphalt", + "width": "10", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 198924560, + "bounds": { + "minlat": 40.7197698, + "minlon": -73.9107974, + "maxlat": 40.7211599, + "maxlon": -73.9063349 + }, + "nodes": [ + 4202574179, + 42825404, + 5481977551, + 11003420596, + 42827463, + 7706126090, + 11055680667, + 11004089410, + 4396950891, + 2776603176, + 42815551 + ], + "geometry": [ + { "lat": 40.7197698, "lon": -73.9107974 }, + { "lat": 40.7198570, "lon": -73.9104840 }, + { "lat": 40.7201389, "lon": -73.9094637 }, + { "lat": 40.7203851, "lon": -73.9085585 }, + { "lat": 40.7204316, "lon": -73.9083905 }, + { "lat": 40.7204538, "lon": -73.9083063 }, + { "lat": 40.7204922, "lon": -73.9081984 }, + { "lat": 40.7205217, "lon": -73.9081168 }, + { "lat": 40.7205760, "lon": -73.9079653 }, + { "lat": 40.7209732, "lon": -73.9068560 }, + { "lat": 40.7211599, "lon": -73.9063349 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Grand Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 198924564, + "bounds": { + "minlat": 40.7109607, + "minlon": -73.9511193, + "maxlat": 40.7109977, + "maxlon": -73.9506941 + }, + "nodes": [ + 42520579, + 5379075740, + 11544820044 + ], + "geometry": [ + { "lat": 40.7109607, "lon": -73.9511193 }, + { "lat": 40.7109701, "lon": -73.9510015 }, + { "lat": 40.7109977, "lon": -73.9506941 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 198924565, + "bounds": { + "minlat": 40.7157352, + "minlon": -73.9660716, + "maxlat": 40.7162014, + "maxlon": -73.9644708 + }, + "nodes": [ + 42469478, + 7034529682, + 5572434506, + 42506325 + ], + "geometry": [ + { "lat": 40.7162014, "lon": -73.9660716 }, + { "lat": 40.7161814, "lon": -73.9660024 }, + { "lat": 40.7157629, "lon": -73.9645665 }, + { "lat": 40.7157352, "lon": -73.9644708 } + ], + "tags": { + "highway": "residential", + "name": "Grand Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Grand", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 198924566, + "bounds": { + "minlat": 40.7122660, + "minlon": -73.9583281, + "maxlat": 40.7133022, + "maxlon": -73.9554760 + }, + "nodes": [ + 42526516, + 6248588483, + 9768177602, + 42480109, + 9768177600, + 9775470051, + 9775470050, + 42482403 + ], + "geometry": [ + { "lat": 40.7133022, "lon": -73.9583281 }, + { "lat": 40.7132717, "lon": -73.9582475 }, + { "lat": 40.7127877, "lon": -73.9568983 }, + { "lat": 40.7127560, "lon": -73.9568100 }, + { "lat": 40.7127285, "lon": -73.9567349 }, + { "lat": 40.7123091, "lon": -73.9555935 }, + { "lat": 40.7122969, "lon": -73.9555605 }, + { "lat": 40.7122660, "lon": -73.9554760 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Grand", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 198924568, + "bounds": { + "minlat": 40.7133022, + "minlon": -73.9644708, + "maxlat": 40.7157352, + "maxlon": -73.9583281 + }, + "nodes": [ + 42506325, + 5572434504, + 5572434480, + 6235394731, + 42537987, + 6235394729, + 9779538154, + 42520404, + 9779538152, + 5680584635, + 42509258, + 5680584630, + 6248588481, + 42526516 + ], + "geometry": [ + { "lat": 40.7157352, "lon": -73.9644708 }, + { "lat": 40.7157135, "lon": -73.9643972 }, + { "lat": 40.7155787, "lon": -73.9639235 }, + { "lat": 40.7151407, "lon": -73.9628640 }, + { "lat": 40.7151065, "lon": -73.9627787 }, + { "lat": 40.7150764, "lon": -73.9627038 }, + { "lat": 40.7145347, "lon": -73.9613678 }, + { "lat": 40.7144978, "lon": -73.9612775 }, + { "lat": 40.7144736, "lon": -73.9612184 }, + { "lat": 40.7139223, "lon": -73.9598847 }, + { "lat": 40.7138913, "lon": -73.9598080 }, + { "lat": 40.7138608, "lon": -73.9597326 }, + { "lat": 40.7133495, "lon": -73.9584505 }, + { "lat": 40.7133022, "lon": -73.9583281 } + ], + "tags": { + "highway": "residential", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Grand", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 198924570, + "bounds": { + "minlat": 40.7428008, + "minlon": -73.9169205, + "maxlat": 40.7430424, + "maxlon": -73.9162150 + }, + "nodes": [ + 7667163195, + 9192032660, + 13095767975, + 13095767974, + 588178907 + ], + "geometry": [ + { "lat": 40.7428008, "lon": -73.9169205 }, + { "lat": 40.7428482, "lon": -73.9167552 }, + { "lat": 40.7429322, "lon": -73.9164957 }, + { "lat": 40.7429852, "lon": -73.9163348 }, + { "lat": 40.7430424, "lon": -73.9162150 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Greenpoint Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 198924574, + "bounds": { + "minlat": 40.7409563, + "minlon": -73.9422986, + "maxlat": 40.7411894, + "maxlon": -73.9411064 + }, + "nodes": [ + 42832478, + 8926703307, + 5481972215, + 7152878901, + 277046643 + ], + "geometry": [ + { "lat": 40.7411894, "lon": -73.9422986 }, + { "lat": 40.7411727, "lon": -73.9422051 }, + { "lat": 40.7411184, "lon": -73.9419206 }, + { "lat": 40.7410228, "lon": -73.9414339 }, + { "lat": 40.7409563, "lon": -73.9411064 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "49th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924575, + "bounds": { + "minlat": 40.7423076, + "minlon": -73.9492280, + "maxlat": 40.7425326, + "maxlon": -73.9480489 + }, + "nodes": [ + 42825933, + 9652144333, + 11623120607, + 277046475 + ], + "geometry": [ + { "lat": 40.7425326, "lon": -73.9492280 }, + { "lat": 40.7425121, "lon": -73.9491204 }, + { "lat": 40.7424607, "lon": -73.9488509 }, + { "lat": 40.7423076, "lon": -73.9480489 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "highway": "unclassified", + "lanes": "2", + "name": "49th Avenue", + "name_1": "Hunters Point Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924579, + "bounds": { + "minlat": 40.7203169, + "minlon": -73.9616983, + "maxlat": 40.7222664, + "maxlon": -73.9595978 + }, + "nodes": [ + 42469503, + 9794844990, + 9794890323, + 42469507, + 9794890322, + 13780549946, + 6245642025, + 42469511, + 9794890360, + 11163899180, + 9998760566, + 9945078146, + 42469514, + 9945078147, + 9998760565, + 4205219012 + ], + "geometry": [ + { "lat": 40.7203169, "lon": -73.9616983 }, + { "lat": 40.7203639, "lon": -73.9616471 }, + { "lat": 40.7208189, "lon": -73.9611503 }, + { "lat": 40.7208608, "lon": -73.9611052 }, + { "lat": 40.7209190, "lon": -73.9610452 }, + { "lat": 40.7212441, "lon": -73.9607019 }, + { "lat": 40.7213727, "lon": -73.9605661 }, + { "lat": 40.7214172, "lon": -73.9605177 }, + { "lat": 40.7214717, "lon": -73.9604575 }, + { "lat": 40.7216838, "lon": -73.9602262 }, + { "lat": 40.7218065, "lon": -73.9600923 }, + { "lat": 40.7219215, "lon": -73.9599668 }, + { "lat": 40.7219660, "lon": -73.9599178 }, + { "lat": 40.7220162, "lon": -73.9598645 }, + { "lat": 40.7221362, "lon": -73.9597366 }, + { "lat": 40.7222664, "lon": -73.9595978 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 198924587, + "bounds": { + "minlat": 40.7635873, + "minlon": -73.9714224, + "maxlat": 40.7640017, + "maxlon": -73.9711294 + }, + "nodes": [ + 42445950, + 6188877008, + 4796291642, + 8918680640 + ], + "geometry": [ + { "lat": 40.7635873, "lon": -73.9714224 }, + { "lat": 40.7636546, "lon": -73.9713751 }, + { "lat": 40.7637477, "lon": -73.9713113 }, + { "lat": 40.7640017, "lon": -73.9711294 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 198924595, + "bounds": { + "minlat": 40.7272103, + "minlon": -73.9074125, + "maxlat": 40.7277330, + "maxlon": -73.9067300 + }, + "nodes": [ + 42901476, + 42801650 + ], + "geometry": [ + { "lat": 40.7272103, "lon": -73.9074125 }, + { "lat": 40.7277330, "lon": -73.9067300 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Maurice Avenue", + "oneway": "no", + "turn:lanes:backward": "left|none", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 198924597, + "bounds": { + "minlat": 40.7260700, + "minlon": -73.9088908, + "maxlat": 40.7272103, + "maxlon": -73.9074125 + }, + "nodes": [ + 42827429, + 13247301425, + 8872404075, + 42916205, + 10069871467, + 5481971927, + 11925728869, + 42901476 + ], + "geometry": [ + { "lat": 40.7260700, "lon": -73.9088908 }, + { "lat": 40.7261323, "lon": -73.9088107 }, + { "lat": 40.7264265, "lon": -73.9084372 }, + { "lat": 40.7267276, "lon": -73.9080356 }, + { "lat": 40.7268875, "lon": -73.9078292 }, + { "lat": 40.7270997, "lon": -73.9075553 }, + { "lat": 40.7271654, "lon": -73.9074704 }, + { "lat": 40.7272103, "lon": -73.9074125 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Maurice Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 198924598, + "bounds": { + "minlat": 40.7146425, + "minlon": -73.9527944, + "maxlat": 40.7155192, + "maxlon": -73.9518508 + }, + "nodes": [ + 10003855163, + 12993598904, + 10003855168, + 42476580, + 10003855167, + 42476576, + 8907127817 + ], + "geometry": [ + { "lat": 40.7155192, "lon": -73.9518508 }, + { "lat": 40.7155146, "lon": -73.9518563 }, + { "lat": 40.7154271, "lon": -73.9519577 }, + { "lat": 40.7152770, "lon": -73.9521251 }, + { "lat": 40.7151528, "lon": -73.9522146 }, + { "lat": 40.7147262, "lon": -73.9527027 }, + { "lat": 40.7146425, "lon": -73.9527944 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924599, + "bounds": { + "minlat": 40.7140807, + "minlon": -73.9493717, + "maxlat": 40.7145320, + "maxlon": -73.9443880 + }, + "nodes": [ + 5482177473, + 6248588908, + 5515218179, + 13700919592, + 11155242415, + 9795356126, + 42484205, + 9795356125, + 11155242416, + 9795356099, + 42484207, + 9795356097, + 11155242417, + 11155242419, + 6235394668, + 42467872 + ], + "geometry": [ + { "lat": 40.7140807, "lon": -73.9493717 }, + { "lat": 40.7140868, "lon": -73.9492975 }, + { "lat": 40.7140927, "lon": -73.9492247 }, + { "lat": 40.7140987, "lon": -73.9491516 }, + { "lat": 40.7141828, "lon": -73.9481250 }, + { "lat": 40.7142088, "lon": -73.9478082 }, + { "lat": 40.7142160, "lon": -73.9477190 }, + { "lat": 40.7142233, "lon": -73.9476418 }, + { "lat": 40.7142520, "lon": -73.9473385 }, + { "lat": 40.7143634, "lon": -73.9461608 }, + { "lat": 40.7143720, "lon": -73.9460700 }, + { "lat": 40.7143795, "lon": -73.9459913 }, + { "lat": 40.7144850, "lon": -73.9448823 }, + { "lat": 40.7145161, "lon": -73.9445559 }, + { "lat": 40.7145213, "lon": -73.9445009 }, + { "lat": 40.7145320, "lon": -73.9443880 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 198924605, + "bounds": { + "minlat": 40.7140715, + "minlon": -73.9575340, + "maxlat": 40.7144986, + "maxlon": -73.9552522 + }, + "nodes": [ + 42484186, + 9785615289, + 6530806540, + 42473961, + 8132573641, + 42480120, + 6248588892, + 5515218174, + 8122409894, + 42480149 + ], + "geometry": [ + { "lat": 40.7144986, "lon": -73.9575340 }, + { "lat": 40.7144558, "lon": -73.9573657 }, + { "lat": 40.7142594, "lon": -73.9565925 }, + { "lat": 40.7141589, "lon": -73.9562101 }, + { "lat": 40.7141160, "lon": -73.9560489 }, + { "lat": 40.7141005, "lon": -73.9559948 }, + { "lat": 40.7140810, "lon": -73.9559266 }, + { "lat": 40.7140723, "lon": -73.9556712 }, + { "lat": 40.7140715, "lon": -73.9553535 }, + { "lat": 40.7140732, "lon": -73.9552522 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Metropolitan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 198924608, + "bounds": { + "minlat": 40.6998820, + "minlon": -73.9082990, + "maxlat": 40.7000273, + "maxlon": -73.9071213 + }, + "nodes": [ + 42848471, + 5328241464, + 42853140 + ], + "geometry": [ + { "lat": 40.6998820, "lon": -73.9082990 }, + { "lat": 40.6999011, "lon": -73.9081810 }, + { "lat": 40.7000273, "lon": -73.9071213 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Myrtle Avenue", + "name:etymology:wikidata": "Q6948581", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Myrtle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11418", + "tiger:zip_right": "11418", + "wikidata": "Q6948581", + "wikipedia": "en:Myrtle Avenue" + } +}, +{ + "type": "way", + "id": 198924614, + "bounds": { + "minlat": 40.7430424, + "minlon": -73.9168046, + "maxlat": 40.7430994, + "maxlon": -73.9162150 + }, + "nodes": [ + 588178907, + 10927727723, + 10743722568, + 276207582 + ], + "geometry": [ + { "lat": 40.7430424, "lon": -73.9162150 }, + { "lat": 40.7430793, "lon": -73.9165964 }, + { "lat": 40.7430890, "lon": -73.9166968 }, + { "lat": 40.7430994, "lon": -73.9168046 } + ], + "tags": { + "cycleway:right": "shared_lane", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "|||right", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 198924621, + "bounds": { + "minlat": 40.7497953, + "minlon": -73.9389912, + "maxlat": 40.7498201, + "maxlon": -73.9388976 + }, + "nodes": [ + 42817469, + 592643525 + ], + "geometry": [ + { "lat": 40.7498201, "lon": -73.9389912 }, + { "lat": 40.7497953, "lon": -73.9388976 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "name": "Queens Plaza South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924622, + "bounds": { + "minlat": 40.7277330, + "minlon": -73.9069822, + "maxlat": 40.7278675, + "maxlon": -73.9067300 + }, + "nodes": [ + 42801650, + 11925728877, + 7425120110 + ], + "geometry": [ + { "lat": 40.7277330, "lon": -73.9067300 }, + { "lat": 40.7277890, "lon": -73.9068350 }, + { "lat": 40.7278675, "lon": -73.9069822 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Queens-Midtown Expressway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A64", + "tiger:county": "Queens, NY", + "tiger:name_base": "Long Island Exwy Service Road", + "tiger:reviewed": "no", + "turn:lanes": "slight_left|||" + } +}, +{ + "type": "way", + "id": 198924625, + "bounds": { + "minlat": 40.7545046, + "minlon": -73.9605510, + "maxlat": 40.7595738, + "maxlon": -73.9488780 + }, + "nodes": [ + 2089938146, + 11868048950, + 42423579 + ], + "geometry": [ + { "lat": 40.7545046, "lon": -73.9488780 }, + { "lat": 40.7590014, "lon": -73.9592329 }, + { "lat": 40.7595738, "lon": -73.9605510 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "layer": "2", + "maxspeed": "30 mph", + "name": "Ed Koch Queensboro Bridge Lower Level", + "note": "Lower Level", + "oneway": "yes", + "ref": "NY 25", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 198924626, + "bounds": { + "minlat": 40.7543912, + "minlon": -73.9606274, + "maxlat": 40.7594580, + "maxlon": -73.9489648 + }, + "nodes": [ + 2089938149, + 2089938145 + ], + "geometry": [ + { "lat": 40.7594580, "lon": -73.9606274 }, + { "lat": 40.7543912, "lon": -73.9489648 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "cycleway:right": "no", + "foot": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "layer": "2", + "maxheight": "13'5\"", + "maxspeed": "30 mph", + "name": "Ed Koch Queensboro Bridge Lower Roadway", + "note": "Lower Level", + "oneway": "yes", + "ref": "NY 25", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 198924627, + "bounds": { + "minlat": 40.7513613, + "minlon": -73.9489648, + "maxlat": 40.7543912, + "maxlon": -73.9419210 + }, + "nodes": [ + 2089938145, + 2089938136, + 593216144, + 592643518 + ], + "geometry": [ + { "lat": 40.7543912, "lon": -73.9489648 }, + { "lat": 40.7529647, "lon": -73.9456796 }, + { "lat": 40.7520981, "lon": -73.9436470 }, + { "lat": 40.7513613, "lon": -73.9419210 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "maxheight": "13'5\"", + "name": "Ed Koch Queensboro Bridge Lower Roadway", + "note": "Lower Level", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 198924628, + "bounds": { + "minlat": 40.7543551, + "minlon": -73.9606575, + "maxlat": 40.7594231, + "maxlon": -73.9489924 + }, + "nodes": [ + 2089938148, + 2089938144 + ], + "geometry": [ + { "lat": 40.7594231, "lon": -73.9606575 }, + { "lat": 40.7543551, "lon": -73.9489924 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "bridge": "yes", + "foot": "designated", + "hgv": "no", + "highway": "pedestrian", + "layer": "2", + "motor_vehicle": "no", + "name": "Ed Koch Queensboro Bridge Outer Roadway", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 198924629, + "bounds": { + "minlat": 40.7513101, + "minlon": -73.9489924, + "maxlat": 40.7543551, + "maxlon": -73.9419581 + }, + "nodes": [ + 2089938144, + 3785648023, + 2089938135, + 593215787, + 276204425 + ], + "geometry": [ + { "lat": 40.7543551, "lon": -73.9489924 }, + { "lat": 40.7542283, "lon": -73.9486944 }, + { "lat": 40.7529854, "lon": -73.9458339 }, + { "lat": 40.7523418, "lon": -73.9443638 }, + { "lat": 40.7513101, "lon": -73.9419581 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "designated", + "hgv": "no", + "highway": "pedestrian", + "layer": "1", + "motor_vehicle": "no", + "name": "Ed Koch Queensboro Bridge Outer Roadway", + "surface": "asphalt", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 198924630, + "bounds": { + "minlat": 40.7595453, + "minlon": -73.9617837, + "maxlat": 40.7601725, + "maxlon": -73.9605601 + }, + "nodes": [ + 276032821, + 3785591423, + 3785591424, + 371036766, + 3785591425, + 371036767, + 3785591426, + 3785591427, + 3785591428, + 371034155, + 3944770806 + ], + "geometry": [ + { "lat": 40.7595453, "lon": -73.9605601 }, + { "lat": 40.7595876, "lon": -73.9606546 }, + { "lat": 40.7596376, "lon": -73.9607571 }, + { "lat": 40.7596695, "lon": -73.9608197 }, + { "lat": 40.7597532, "lon": -73.9609621 }, + { "lat": 40.7599335, "lon": -73.9612764 }, + { "lat": 40.7599714, "lon": -73.9613435 }, + { "lat": 40.7600154, "lon": -73.9614278 }, + { "lat": 40.7600508, "lon": -73.9615041 }, + { "lat": 40.7600861, "lon": -73.9615861 }, + { "lat": 40.7601725, "lon": -73.9617837 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "note": "Upper level", + "oneway": "yes", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 198924631, + "bounds": { + "minlat": 40.7544172, + "minlon": -73.9606065, + "maxlat": 40.7594828, + "maxlon": -73.9489448 + }, + "nodes": [ + 371037077, + 371034137 + ], + "geometry": [ + { "lat": 40.7594828, "lon": -73.9606065 }, + { "lat": 40.7544172, "lon": -73.9489448 } + ], + "tags": { + "access:conditional": "no @ (Mo-Fr 06:00-09:30); yes @ (Mo-Fr 06:00-09:30 AND occupants>1)", + "bicycle": "no", + "bridge": "yes", + "cycleway:right": "no", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "maxspeed": "35 mph", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "note": "Upper level", + "oneway": "reversible", + "oneway:conditional": "yes @ (Mo-Fr 00:00-06:00,09:30-24:00; Sa-Su); -1 @ (Mo-Fr 06:00-09:30)", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 198924632, + "bounds": { + "minlat": 40.7544751, + "minlon": -73.9605601, + "maxlat": 40.7595453, + "maxlon": -73.9489006 + }, + "nodes": [ + 371034141, + 7739298001, + 11868048948, + 276032821 + ], + "geometry": [ + { "lat": 40.7544751, "lon": -73.9489006 }, + { "lat": 40.7547122, "lon": -73.9494459 }, + { "lat": 40.7589763, "lon": -73.9592517 }, + { "lat": 40.7595453, "lon": -73.9605601 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "cycleway:right": "no", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "maxspeed": "30 mph", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "note": "Upper level", + "oneway": "yes", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 198924633, + "bounds": { + "minlat": 40.7512912, + "minlon": -73.9489448, + "maxlat": 40.7544172, + "maxlon": -73.9428448 + }, + "nodes": [ + 371034137, + 2089938137, + 3785649076, + 593215882, + 3785649077, + 2089938134, + 593215887, + 3785649079, + 3785649080, + 3785649081, + 593215895, + 3785649082, + 3785649083, + 2900282661, + 593215899, + 3785649084, + 593215904, + 2900282658, + 2900282107, + 593215908, + 2900282108, + 2900282657, + 593215914 + ], + "geometry": [ + { "lat": 40.7544172, "lon": -73.9489448 }, + { "lat": 40.7529764, "lon": -73.9456684 }, + { "lat": 40.7529427, "lon": -73.9455872 }, + { "lat": 40.7529081, "lon": -73.9455188 }, + { "lat": 40.7528741, "lon": -73.9454505 }, + { "lat": 40.7527989, "lon": -73.9453237 }, + { "lat": 40.7523484, "lon": -73.9445146 }, + { "lat": 40.7523014, "lon": -73.9444255 }, + { "lat": 40.7522481, "lon": -73.9443139 }, + { "lat": 40.7521957, "lon": -73.9441926 }, + { "lat": 40.7517063, "lon": -73.9430550 }, + { "lat": 40.7516764, "lon": -73.9429881 }, + { "lat": 40.7516565, "lon": -73.9429528 }, + { "lat": 40.7516338, "lon": -73.9429223 }, + { "lat": 40.7516047, "lon": -73.9428961 }, + { "lat": 40.7515757, "lon": -73.9428771 }, + { "lat": 40.7515361, "lon": -73.9428595 }, + { "lat": 40.7514875, "lon": -73.9428448 }, + { "lat": 40.7514527, "lon": -73.9428451 }, + { "lat": 40.7514151, "lon": -73.9428530 }, + { "lat": 40.7513838, "lon": -73.9428664 }, + { "lat": 40.7513453, "lon": -73.9428907 }, + { "lat": 40.7512912, "lon": -73.9429365 } + ], + "tags": { + "access:conditional": "no @ (Mo-Fr 06:00-09:30); yes @ (Mo-Fr 06:00-09:30 AND occupants>1)", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "note": "Upper level", + "oneway": "reversible", + "oneway:conditional": "yes @ (Mo-Fr 00:00-06:00,09:30-24:00; Sa-Su); -1 @ (Mo-Fr 06:00-09:30)", + "surface": "asphalt", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 198924634, + "bounds": { + "minlat": 40.7114240, + "minlon": -73.9595330, + "maxlat": 40.7133022, + "maxlon": -73.9583281 + }, + "nodes": [ + 42526516, + 6248588480, + 9955210349, + 42504285, + 9955210348, + 6248588479, + 42526520, + 6248588478, + 6248588473, + 42474131 + ], + "geometry": [ + { "lat": 40.7133022, "lon": -73.9583281 }, + { "lat": 40.7132453, "lon": -73.9583654 }, + { "lat": 40.7128437, "lon": -73.9586189 }, + { "lat": 40.7127922, "lon": -73.9586521 }, + { "lat": 40.7127444, "lon": -73.9586829 }, + { "lat": 40.7122280, "lon": -73.9590154 }, + { "lat": 40.7121634, "lon": -73.9590570 }, + { "lat": 40.7121115, "lon": -73.9590904 }, + { "lat": 40.7114839, "lon": -73.9594945 }, + { "lat": 40.7114240, "lon": -73.9595330 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Roebling Street", + "name:etymology:wikidata": "Q77237", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Roebling", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 198924643, + "bounds": { + "minlat": 40.7178736, + "minlon": -73.9113211, + "maxlat": 40.7196241, + "maxlon": -73.9097411 + }, + "nodes": [ + 42871307, + 9759984243, + 42838905, + 7984312005, + 9820860410, + 597676852, + 597676712 + ], + "geometry": [ + { "lat": 40.7196241, "lon": -73.9113211 }, + { "lat": 40.7195481, "lon": -73.9112502 }, + { "lat": 40.7189330, "lon": -73.9107020 }, + { "lat": 40.7182858, "lon": -73.9101104 }, + { "lat": 40.7179515, "lon": -73.9098079 }, + { "lat": 40.7179076, "lon": -73.9097689 }, + { "lat": 40.7178736, "lon": -73.9097411 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Rust Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 198924644, + "bounds": { + "minlat": 40.7196241, + "minlon": -73.9133287, + "maxlat": 40.7221183, + "maxlon": -73.9113211 + }, + "nodes": [ + 4396956978, + 42858495, + 7651475658, + 42815536, + 42903033, + 9759984241, + 42871307 + ], + "geometry": [ + { "lat": 40.7221183, "lon": -73.9133287 }, + { "lat": 40.7216010, "lon": -73.9129840 }, + { "lat": 40.7213707, "lon": -73.9128040 }, + { "lat": 40.7209310, "lon": -73.9124600 }, + { "lat": 40.7202630, "lon": -73.9118890 }, + { "lat": 40.7197215, "lon": -73.9114078 }, + { "lat": 40.7196241, "lon": -73.9113211 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Rust Street", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Rust", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11378" + } +}, +{ + "type": "way", + "id": 198924651, + "bounds": { + "minlat": 40.7460248, + "minlon": -73.9417221, + "maxlat": 40.7461432, + "maxlon": -73.9411800 + }, + "nodes": [ + 42825558, + 4215808499 + ], + "geometry": [ + { "lat": 40.7461432, "lon": -73.9417221 }, + { "lat": 40.7460248, "lon": -73.9411800 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|through;right|right" + } +}, +{ + "type": "way", + "id": 198924652, + "bounds": { + "minlat": 40.7140670, + "minlon": -73.9516997, + "maxlat": 40.7145376, + "maxlon": -73.9516294 + }, + "nodes": [ + 42484200, + 8117195698, + 42518608 + ], + "geometry": [ + { "lat": 40.7140670, "lon": -73.9516294 }, + { "lat": 40.7141595, "lon": -73.9516442 }, + { "lat": 40.7145376, "lon": -73.9516997 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924653, + "bounds": { + "minlat": 40.7155192, + "minlon": -73.9522867, + "maxlat": 40.7180850, + "maxlon": -73.9518508 + }, + "nodes": [ + 10003855163, + 6228178160, + 10003855165, + 42509952, + 6235394613, + 42505929, + 6235394611, + 42482474, + 5673291203, + 42520607, + 6228178125, + 6852820330, + 6852820335, + 42511011 + ], + "geometry": [ + { "lat": 40.7155192, "lon": -73.9518508 }, + { "lat": 40.7155876, "lon": -73.9518617 }, + { "lat": 40.7156458, "lon": -73.9518718 }, + { "lat": 40.7159585, "lon": -73.9519261 }, + { "lat": 40.7166129, "lon": -73.9520397 }, + { "lat": 40.7166656, "lon": -73.9520488 }, + { "lat": 40.7167353, "lon": -73.9520610 }, + { "lat": 40.7172313, "lon": -73.9521470 }, + { "lat": 40.7173269, "lon": -73.9521637 }, + { "lat": 40.7173814, "lon": -73.9521731 }, + { "lat": 40.7174420, "lon": -73.9521829 }, + { "lat": 40.7176285, "lon": -73.9522130 }, + { "lat": 40.7178205, "lon": -73.9522440 }, + { "lat": 40.7180850, "lon": -73.9522867 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924655, + "bounds": { + "minlat": 40.7394412, + "minlon": -73.9346328, + "maxlat": 40.7410390, + "maxlon": -73.9343110 + }, + "nodes": [ + 42866368, + 9981973342, + 13801396866, + 13801396863, + 7547561073, + 10743722192, + 42832512, + 9981925205, + 42866370 + ], + "geometry": [ + { "lat": 40.7410390, "lon": -73.9343110 }, + { "lat": 40.7409475, "lon": -73.9343294 }, + { "lat": 40.7408788, "lon": -73.9343433 }, + { "lat": 40.7406473, "lon": -73.9343903 }, + { "lat": 40.7402832, "lon": -73.9344641 }, + { "lat": 40.7397515, "lon": -73.9345753 }, + { "lat": 40.7396908, "lon": -73.9345846 }, + { "lat": 40.7396108, "lon": -73.9346005 }, + { "lat": 40.7394412, "lon": -73.9346328 } + ], + "tags": { + "foot": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Van Dam Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924660, + "bounds": { + "minlat": 40.7070033, + "minlon": -73.9674116, + "maxlat": 40.7106006, + "maxlon": -73.9667821 + }, + "nodes": [ + 42505376, + 9785653025, + 9785653044, + 42501307, + 9785653042, + 6338024003, + 42474660, + 6338024004, + 9785653101, + 42506344, + 9785653102, + 7174439832, + 9785653135, + 42494563, + 9785653136, + 2173361994, + 2173361988, + 42506352, + 2173361974, + 2173361999, + 4999422882, + 4999422896, + 42477968 + ], + "geometry": [ + { "lat": 40.7106006, "lon": -73.9667821 }, + { "lat": 40.7105229, "lon": -73.9667997 }, + { "lat": 40.7099316, "lon": -73.9669343 }, + { "lat": 40.7098650, "lon": -73.9669490 }, + { "lat": 40.7098074, "lon": -73.9669600 }, + { "lat": 40.7091109, "lon": -73.9670936 }, + { "lat": 40.7090540, "lon": -73.9671040 }, + { "lat": 40.7089894, "lon": -73.9671159 }, + { "lat": 40.7084135, "lon": -73.9672286 }, + { "lat": 40.7083433, "lon": -73.9672423 }, + { "lat": 40.7082834, "lon": -73.9672542 }, + { "lat": 40.7078793, "lon": -73.9673330 }, + { "lat": 40.7077140, "lon": -73.9673671 }, + { "lat": 40.7076370, "lon": -73.9673830 }, + { "lat": 40.7075781, "lon": -73.9673938 }, + { "lat": 40.7075228, "lon": -73.9674039 }, + { "lat": 40.7074808, "lon": -73.9674102 }, + { "lat": 40.7074407, "lon": -73.9674116 }, + { "lat": 40.7074064, "lon": -73.9674060 }, + { "lat": 40.7073512, "lon": -73.9673905 }, + { "lat": 40.7073292, "lon": -73.9673835 }, + { "lat": 40.7071014, "lon": -73.9673109 }, + { "lat": 40.7070033, "lon": -73.9672797 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 198924661, + "bounds": { + "minlat": 40.7106006, + "minlon": -73.9667821, + "maxlat": 40.7157352, + "maxlon": -73.9644708 + }, + "nodes": [ + 42506325, + 5572434478, + 9767625419, + 42504278, + 9949550282, + 11163899189, + 7034559291, + 42506329, + 7034559300, + 11163899192, + 9957055540, + 42474099, + 9957055541, + 5186818316, + 42506331, + 5186818318, + 9990599527, + 42506332, + 9990599526, + 11163899195, + 9990599506, + 42468738, + 9990599504, + 9785653020, + 4207788767, + 42505376 + ], + "geometry": [ + { "lat": 40.7157352, "lon": -73.9644708 }, + { "lat": 40.7156627, "lon": -73.9645286 }, + { "lat": 40.7151065, "lon": -73.9647776 }, + { "lat": 40.7150534, "lon": -73.9648014 }, + { "lat": 40.7150024, "lon": -73.9648242 }, + { "lat": 40.7148501, "lon": -73.9648922 }, + { "lat": 40.7143575, "lon": -73.9651121 }, + { "lat": 40.7142900, "lon": -73.9651420 }, + { "lat": 40.7142334, "lon": -73.9651674 }, + { "lat": 40.7136424, "lon": -73.9654320 }, + { "lat": 40.7135507, "lon": -73.9654731 }, + { "lat": 40.7134840, "lon": -73.9655030 }, + { "lat": 40.7134272, "lon": -73.9655277 }, + { "lat": 40.7129205, "lon": -73.9657477 }, + { "lat": 40.7128718, "lon": -73.9657688 }, + { "lat": 40.7128034, "lon": -73.9658002 }, + { "lat": 40.7121369, "lon": -73.9661063 }, + { "lat": 40.7120570, "lon": -73.9661430 }, + { "lat": 40.7120007, "lon": -73.9661676 }, + { "lat": 40.7119153, "lon": -73.9662049 }, + { "lat": 40.7114423, "lon": -73.9664115 }, + { "lat": 40.7113682, "lon": -73.9664439 }, + { "lat": 40.7113164, "lon": -73.9664666 }, + { "lat": 40.7107380, "lon": -73.9667206 }, + { "lat": 40.7106663, "lon": -73.9667521 }, + { "lat": 40.7106006, "lon": -73.9667821 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 198924713, + "bounds": { + "minlat": 40.7423276, + "minlon": -73.9492952, + "maxlat": 40.7425326, + "maxlon": -73.9492280 + }, + "nodes": [ + 42825933, + 4911015697, + 276317215 + ], + "geometry": [ + { "lat": 40.7425326, "lon": -73.9492280 }, + { "lat": 40.7424454, "lon": -73.9492579 }, + { "lat": 40.7423276, "lon": -73.9492952 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "21st Street", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924715, + "bounds": { + "minlat": 40.7458232, + "minlon": -73.9456423, + "maxlat": 40.7476667, + "maxlon": -73.9450503 + }, + "nodes": [ + 42825546, + 10699487864, + 6761543544, + 6761517988, + 42900397, + 3282109743, + 9982745707, + 8996215480, + 42844264 + ], + "geometry": [ + { "lat": 40.7476667, "lon": -73.9450503 }, + { "lat": 40.7475497, "lon": -73.9450900 }, + { "lat": 40.7469204, "lon": -73.9453036 }, + { "lat": 40.7462872, "lon": -73.9455073 }, + { "lat": 40.7462255, "lon": -73.9455263 }, + { "lat": 40.7460482, "lon": -73.9455867 }, + { "lat": 40.7460097, "lon": -73.9455970 }, + { "lat": 40.7459684, "lon": -73.9456068 }, + { "lat": 40.7458232, "lon": -73.9456423 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lcn": "proposed", + "lit": "yes", + "name": "23rd Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924725, + "bounds": { + "minlat": 40.7391110, + "minlon": -73.9429947, + "maxlat": 40.7411894, + "maxlon": -73.9422986 + }, + "nodes": [ + 42832478, + 8926818327, + 42872060, + 42836329, + 8316786967, + 11191764417, + 42859014 + ], + "geometry": [ + { "lat": 40.7411894, "lon": -73.9422986 }, + { "lat": 40.7411029, "lon": -73.9423291 }, + { "lat": 40.7404918, "lon": -73.9425270 }, + { "lat": 40.7397953, "lon": -73.9427603 }, + { "lat": 40.7392415, "lon": -73.9429462 }, + { "lat": 40.7392038, "lon": -73.9429602 }, + { "lat": 40.7391110, "lon": -73.9429947 } + ], + "tags": { + "highway": "unclassified", + "name": "27th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924727, + "bounds": { + "minlat": 40.7609647, + "minlon": -73.9640978, + "maxlat": 40.7612397, + "maxlon": -73.9639021 + }, + "nodes": [ + 6176483595, + 13033112345, + 3785585954, + 1775176473 + ], + "geometry": [ + { "lat": 40.7612397, "lon": -73.9639021 }, + { "lat": 40.7611833, "lon": -73.9639420 }, + { "lat": 40.7610287, "lon": -73.9640512 }, + { "lat": 40.7609647, "lon": -73.9640978 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "separate", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "left|left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 198924741, + "bounds": { + "minlat": 40.7552920, + "minlon": -73.9084650, + "maxlat": 40.7568980, + "maxlon": -73.8931880 + }, + "nodes": [ + 42819566, + 7668020476, + 42835518, + 6450783386, + 42835523, + 6450781882, + 6453161852, + 42835529, + 6453161853, + 6450781365, + 42835533, + 6450781369, + 42835538, + 5482290783, + 6453164962, + 42835544, + 6453164963, + 6453164951, + 42835547, + 6453164952, + 6453154696, + 42835549, + 6453154697, + 42835551, + 10795640292, + 42835569, + 10795640291, + 10795654449, + 42835573, + 8234210655, + 8234210666, + 42835576, + 10795640277, + 9900405129, + 42835580, + 9900405127, + 42835583, + 9900405107, + 42835588, + 9900405108, + 7671863018, + 42835590 + ], + "geometry": [ + { "lat": 40.7552920, "lon": -73.9084650 }, + { "lat": 40.7553070, "lon": -73.9083220 }, + { "lat": 40.7553430, "lon": -73.9079796 }, + { "lat": 40.7554289, "lon": -73.9071633 }, + { "lat": 40.7554359, "lon": -73.9070961 }, + { "lat": 40.7554459, "lon": -73.9070009 }, + { "lat": 40.7555232, "lon": -73.9062653 }, + { "lat": 40.7555313, "lon": -73.9061889 }, + { "lat": 40.7555401, "lon": -73.9061049 }, + { "lat": 40.7556172, "lon": -73.9053708 }, + { "lat": 40.7556254, "lon": -73.9052935 }, + { "lat": 40.7556331, "lon": -73.9052190 }, + { "lat": 40.7557250, "lon": -73.9043465 }, + { "lat": 40.7557307, "lon": -73.9042915 }, + { "lat": 40.7558164, "lon": -73.9034766 }, + { "lat": 40.7558245, "lon": -73.9033997 }, + { "lat": 40.7558328, "lon": -73.9033208 }, + { "lat": 40.7559115, "lon": -73.9025725 }, + { "lat": 40.7559187, "lon": -73.9025034 }, + { "lat": 40.7559270, "lon": -73.9024246 }, + { "lat": 40.7560043, "lon": -73.9016895 }, + { "lat": 40.7560114, "lon": -73.9016217 }, + { "lat": 40.7560215, "lon": -73.9015264 }, + { "lat": 40.7561057, "lon": -73.9007244 }, + { "lat": 40.7562860, "lon": -73.8990102 }, + { "lat": 40.7562949, "lon": -73.8989252 }, + { "lat": 40.7563028, "lon": -73.8988496 }, + { "lat": 40.7563908, "lon": -73.8980135 }, + { "lat": 40.7564017, "lon": -73.8979094 }, + { "lat": 40.7564123, "lon": -73.8978082 }, + { "lat": 40.7564983, "lon": -73.8969896 }, + { "lat": 40.7565062, "lon": -73.8969146 }, + { "lat": 40.7565151, "lon": -73.8968308 }, + { "lat": 40.7565960, "lon": -73.8960603 }, + { "lat": 40.7566050, "lon": -73.8959755 }, + { "lat": 40.7566137, "lon": -73.8958931 }, + { "lat": 40.7567022, "lon": -73.8950504 }, + { "lat": 40.7567919, "lon": -73.8941971 }, + { "lat": 40.7568002, "lon": -73.8941182 }, + { "lat": 40.7568093, "lon": -73.8940382 }, + { "lat": 40.7568899, "lon": -73.8932681 }, + { "lat": 40.7568980, "lon": -73.8931880 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "32nd Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924755, + "bounds": { + "minlat": 40.7477784, + "minlon": -73.9469057, + "maxlat": 40.7480271, + "maxlon": -73.9455985 + }, + "nodes": [ + 9297747810, + 7478004216 + ], + "geometry": [ + { "lat": 40.7477784, "lon": -73.9455985 }, + { "lat": 40.7480271, "lon": -73.9469057 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924756, + "bounds": { + "minlat": 40.7474113, + "minlon": -73.9445566, + "maxlat": 40.7475718, + "maxlon": -73.9437238 + }, + "nodes": [ + 42825551, + 5572318584, + 9982745659 + ], + "geometry": [ + { "lat": 40.7474113, "lon": -73.9437238 }, + { "lat": 40.7474272, "lon": -73.9438074 }, + { "lat": 40.7475718, "lon": -73.9445566 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924757, + "bounds": { + "minlat": 40.7398820, + "minlon": -73.9069970, + "maxlat": 40.7405558, + "maxlon": -73.9032610 + }, + "nodes": [ + 2089938046, + 8626128208, + 10203222044, + 42827525, + 10202787318, + 8626128123, + 5481954343, + 5481950910, + 13703064056, + 5481950906, + 13703064063, + 42860675, + 5481950865, + 5481950863, + 5481950861, + 5481950877, + 8668436754, + 42860677, + 8626128251, + 7691075212, + 9798580878, + 42860681, + 5481989474, + 8626128167, + 10202787227, + 42844321 + ], + "geometry": [ + { "lat": 40.7405558, "lon": -73.9069970 }, + { "lat": 40.7404466, "lon": -73.9065470 }, + { "lat": 40.7404328, "lon": -73.9064901 }, + { "lat": 40.7404090, "lon": -73.9063920 }, + { "lat": 40.7403877, "lon": -73.9063076 }, + { "lat": 40.7403757, "lon": -73.9062601 }, + { "lat": 40.7403516, "lon": -73.9061649 }, + { "lat": 40.7403069, "lon": -73.9059883 }, + { "lat": 40.7403015, "lon": -73.9059669 }, + { "lat": 40.7402717, "lon": -73.9058493 }, + { "lat": 40.7402689, "lon": -73.9058380 }, + { "lat": 40.7401759, "lon": -73.9054703 }, + { "lat": 40.7401554, "lon": -73.9053937 }, + { "lat": 40.7400962, "lon": -73.9051726 }, + { "lat": 40.7400401, "lon": -73.9049440 }, + { "lat": 40.7400079, "lon": -73.9048430 }, + { "lat": 40.7400058, "lon": -73.9048351 }, + { "lat": 40.7399251, "lon": -73.9045337 }, + { "lat": 40.7399105, "lon": -73.9041046 }, + { "lat": 40.7399042, "lon": -73.9039210 }, + { "lat": 40.7399018, "lon": -73.9038524 }, + { "lat": 40.7399000, "lon": -73.9037990 }, + { "lat": 40.7398941, "lon": -73.9036227 }, + { "lat": 40.7398870, "lon": -73.9034099 }, + { "lat": 40.7398868, "lon": -73.9033574 }, + { "lat": 40.7398820, "lon": -73.9032610 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "47th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924758, + "bounds": { + "minlat": 40.7404977, + "minlon": -73.9343110, + "maxlat": 40.7410390, + "maxlon": -73.9296773 + }, + "nodes": [ + 42866368, + 9981973343, + 10083107622, + 42820842, + 10083107624, + 10083107626, + 42880287, + 10083107630, + 10083107629, + 42880290, + 10083107631, + 10083107634, + 42866719, + 10083107637, + 10083107638, + 42880298 + ], + "geometry": [ + { "lat": 40.7410390, "lon": -73.9343110 }, + { "lat": 40.7410222, "lon": -73.9341689 }, + { "lat": 40.7409384, "lon": -73.9334631 }, + { "lat": 40.7409291, "lon": -73.9333855 }, + { "lat": 40.7409199, "lon": -73.9333040 }, + { "lat": 40.7408300, "lon": -73.9325398 }, + { "lat": 40.7408205, "lon": -73.9324558 }, + { "lat": 40.7408108, "lon": -73.9323724 }, + { "lat": 40.7407227, "lon": -73.9316100 }, + { "lat": 40.7407130, "lon": -73.9315284 }, + { "lat": 40.7407036, "lon": -73.9314490 }, + { "lat": 40.7406162, "lon": -73.9306819 }, + { "lat": 40.7406064, "lon": -73.9306041 }, + { "lat": 40.7405968, "lon": -73.9305229 }, + { "lat": 40.7405079, "lon": -73.9297560 }, + { "lat": 40.7404977, "lon": -73.9296773 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924759, + "bounds": { + "minlat": 40.7389680, + "minlon": -73.9176091, + "maxlat": 40.7391018, + "maxlon": -73.9164664 + }, + "nodes": [ + 42859973, + 10083107685, + 42807857, + 42807699 + ], + "geometry": [ + { "lat": 40.7391018, "lon": -73.9176091 }, + { "lat": 40.7390905, "lon": -73.9175096 }, + { "lat": 40.7389960, "lon": -73.9166857 }, + { "lat": 40.7389680, "lon": -73.9164664 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "48th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924760, + "bounds": { + "minlat": 40.7262238, + "minlon": -73.9205234, + "maxlat": 40.7288894, + "maxlon": -73.9195097 + }, + "nodes": [ + 42823397, + 10087637233, + 10087637235, + 10087637236, + 10087637234, + 5482425973, + 5482634979, + 42859995, + 10087637225, + 42859998 + ], + "geometry": [ + { "lat": 40.7288894, "lon": -73.9195097 }, + { "lat": 40.7286804, "lon": -73.9195892 }, + { "lat": 40.7285941, "lon": -73.9196264 }, + { "lat": 40.7285005, "lon": -73.9196671 }, + { "lat": 40.7284068, "lon": -73.9197050 }, + { "lat": 40.7278659, "lon": -73.9199068 }, + { "lat": 40.7275452, "lon": -73.9200264 }, + { "lat": 40.7274805, "lon": -73.9200507 }, + { "lat": 40.7263220, "lon": -73.9204853 }, + { "lat": 40.7262238, "lon": -73.9205234 } + ], + "tags": { + "cycleway": "lane", + "cycleway:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924761, + "bounds": { + "minlat": 40.7351666, + "minlon": -73.9183941, + "maxlat": 40.7354327, + "maxlon": -73.9183416 + }, + "nodes": [ + 42825307, + 42825232 + ], + "geometry": [ + { "lat": 40.7354327, "lon": -73.9183416 }, + { "lat": 40.7351666, "lon": -73.9183941 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924762, + "bounds": { + "minlat": 40.7354327, + "minlon": -73.9183416, + "maxlat": 40.7391018, + "maxlon": -73.9176091 + }, + "nodes": [ + 42859973, + 10083107687, + 11155242443, + 11155242442, + 11155242441, + 10084797207, + 42859976, + 10084797208, + 11155242440, + 8375045749, + 11155242439, + 10084797209, + 42825307 + ], + "geometry": [ + { "lat": 40.7391018, "lon": -73.9176091 }, + { "lat": 40.7390226, "lon": -73.9176252 }, + { "lat": 40.7389366, "lon": -73.9176424 }, + { "lat": 40.7388059, "lon": -73.9176685 }, + { "lat": 40.7375509, "lon": -73.9179194 }, + { "lat": 40.7373381, "lon": -73.9179619 }, + { "lat": 40.7372597, "lon": -73.9179776 }, + { "lat": 40.7371806, "lon": -73.9179928 }, + { "lat": 40.7369108, "lon": -73.9180487 }, + { "lat": 40.7368463, "lon": -73.9180621 }, + { "lat": 40.7358155, "lon": -73.9182668 }, + { "lat": 40.7355096, "lon": -73.9183275 }, + { "lat": 40.7354327, "lon": -73.9183416 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "48th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924763, + "bounds": { + "minlat": 40.7322687, + "minlon": -73.9189845, + "maxlat": 40.7328146, + "maxlon": -73.9188740 + }, + "nodes": [ + 277386523, + 11155242436, + 42859982 + ], + "geometry": [ + { "lat": 40.7322687, "lon": -73.9189845 }, + { "lat": 40.7327151, "lon": -73.9188941 }, + { "lat": 40.7328146, "lon": -73.9188740 } + ], + "tags": { + "cycleway": "lane", + "cycleway:buffer": "yes", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924767, + "bounds": { + "minlat": 40.7260700, + "minlon": -73.9121610, + "maxlat": 40.7263260, + "maxlon": -73.9088908 + }, + "nodes": [ + 42827429, + 13247301441, + 9196080126, + 8872404074, + 5481966773, + 5481965778, + 8761254372, + 42908364 + ], + "geometry": [ + { "lat": 40.7260700, "lon": -73.9088908 }, + { "lat": 40.7260773, "lon": -73.9090554 }, + { "lat": 40.7260869, "lon": -73.9092739 }, + { "lat": 40.7261380, "lon": -73.9097785 }, + { "lat": 40.7262426, "lon": -73.9111046 }, + { "lat": 40.7262765, "lon": -73.9115189 }, + { "lat": 40.7263013, "lon": -73.9118400 }, + { "lat": 40.7263260, "lon": -73.9121610 } + ], + "tags": { + "highway": "tertiary", + "name": "55th Drive", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 198924768, + "bounds": { + "minlat": 40.7258859, + "minlon": -73.9088908, + "maxlat": 40.7260700, + "maxlon": -73.9060989 + }, + "nodes": [ + 42827429, + 13247301428, + 9196080127, + 7725251774, + 7725251772, + 7725251757, + 42931804 + ], + "geometry": [ + { "lat": 40.7260700, "lon": -73.9088908 }, + { "lat": 40.7260620, "lon": -73.9087463 }, + { "lat": 40.7260565, "lon": -73.9086075 }, + { "lat": 40.7259872, "lon": -73.9075700 }, + { "lat": 40.7259558, "lon": -73.9071124 }, + { "lat": 40.7259195, "lon": -73.9065971 }, + { "lat": 40.7258859, "lon": -73.9060989 } + ], + "tags": { + "highway": "residential", + "name": "55th Drive", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 198924773, + "bounds": { + "minlat": 40.7299492, + "minlon": -73.9117399, + "maxlat": 40.7363952, + "maxlon": -73.9092686 + }, + "nodes": [ + 597294481, + 10087484114, + 42881924, + 42806985, + 5118656604, + 42862775, + 10203936755, + 9194885940, + 42908343, + 9194885941, + 9194885942, + 9194885943, + 9194885944, + 277389001, + 9194885945, + 9194885946, + 9194885947, + 277389002, + 9194885948, + 9194885949, + 9194885950, + 9196051097, + 597324689, + 9196051096, + 13443778424, + 42786722 + ], + "geometry": [ + { "lat": 40.7363952, "lon": -73.9092686 }, + { "lat": 40.7362425, "lon": -73.9093286 }, + { "lat": 40.7356641, "lon": -73.9096097 }, + { "lat": 40.7350075, "lon": -73.9099188 }, + { "lat": 40.7344278, "lon": -73.9101890 }, + { "lat": 40.7343388, "lon": -73.9102367 }, + { "lat": 40.7342779, "lon": -73.9102697 }, + { "lat": 40.7342290, "lon": -73.9102960 }, + { "lat": 40.7334710, "lon": -73.9106890 }, + { "lat": 40.7331483, "lon": -73.9108455 }, + { "lat": 40.7328780, "lon": -73.9109669 }, + { "lat": 40.7325970, "lon": -73.9110930 }, + { "lat": 40.7322765, "lon": -73.9112275 }, + { "lat": 40.7321313, "lon": -73.9112746 }, + { "lat": 40.7319929, "lon": -73.9113178 }, + { "lat": 40.7318155, "lon": -73.9113687 }, + { "lat": 40.7316317, "lon": -73.9114129 }, + { "lat": 40.7307991, "lon": -73.9116073 }, + { "lat": 40.7306869, "lon": -73.9116319 }, + { "lat": 40.7305630, "lon": -73.9116513 }, + { "lat": 40.7304274, "lon": -73.9116682 }, + { "lat": 40.7302009, "lon": -73.9116865 }, + { "lat": 40.7301130, "lon": -73.9116975 }, + { "lat": 40.7300356, "lon": -73.9117147 }, + { "lat": 40.7300028, "lon": -73.9117243 }, + { "lat": 40.7299492, "lon": -73.9117399 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "58th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924774, + "bounds": { + "minlat": 40.7297363, + "minlon": -73.9118241, + "maxlat": 40.7299492, + "maxlon": -73.9117399 + }, + "nodes": [ + 42786722, + 277390603 + ], + "geometry": [ + { "lat": 40.7299492, "lon": -73.9117399 }, + { "lat": 40.7297363, "lon": -73.9118241 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "58th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924775, + "bounds": { + "minlat": 40.7263260, + "minlon": -73.9121610, + "maxlat": 40.7276066, + "maxlon": -73.9121175 + }, + "nodes": [ + 42823474, + 10087637246, + 7725287395, + 10087637245, + 42908364 + ], + "geometry": [ + { "lat": 40.7276066, "lon": -73.9121175 }, + { "lat": 40.7275191, "lon": -73.9121197 }, + { "lat": 40.7272276, "lon": -73.9121267 }, + { "lat": 40.7264172, "lon": -73.9121552 }, + { "lat": 40.7263260, "lon": -73.9121610 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "58th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 198924776, + "bounds": { + "minlat": 40.7276066, + "minlon": -73.9121175, + "maxlat": 40.7297363, + "maxlon": -73.9118241 + }, + "nodes": [ + 277390603, + 6819995534, + 10087637250, + 10087637249, + 10087637248, + 42908354, + 6819995538, + 10087637247, + 42823474 + ], + "geometry": [ + { "lat": 40.7297363, "lon": -73.9118241 }, + { "lat": 40.7294422, "lon": -73.9119416 }, + { "lat": 40.7293074, "lon": -73.9119923 }, + { "lat": 40.7292574, "lon": -73.9120082 }, + { "lat": 40.7292091, "lon": -73.9120177 }, + { "lat": 40.7291637, "lon": -73.9120218 }, + { "lat": 40.7284737, "lon": -73.9120654 }, + { "lat": 40.7276915, "lon": -73.9121131 }, + { "lat": 40.7276066, "lon": -73.9121175 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "58th Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 198924777, + "bounds": { + "minlat": 40.7235467, + "minlon": -73.9126330, + "maxlat": 40.7242570, + "maxlon": -73.9125050 + }, + "nodes": [ + 42902805, + 11406248218, + 42908380, + 2776604937 + ], + "geometry": [ + { "lat": 40.7242570, "lon": -73.9125050 }, + { "lat": 40.7242088, "lon": -73.9125118 }, + { "lat": 40.7237002, "lon": -73.9125833 }, + { "lat": 40.7235467, "lon": -73.9126330 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "58th Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 198924778, + "bounds": { + "minlat": 40.7646148, + "minlon": -73.9727773, + "maxlat": 40.7649193, + "maxlon": -73.9725564 + }, + "nodes": [ + 4347534783, + 4347535696, + 10125174408, + 8904527314 + ], + "geometry": [ + { "lat": 40.7649193, "lon": -73.9725564 }, + { "lat": 40.7648408, "lon": -73.9726144 }, + { "lat": 40.7647467, "lon": -73.9726829 }, + { "lat": 40.7646148, "lon": -73.9727773 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 199124543, + "bounds": { + "minlat": 40.7878716, + "minlon": -73.9703363, + "maxlat": 40.7890588, + "maxlon": -73.9674683 + }, + "nodes": [ + 42437050, + 3718670418, + 8768040146, + 7123525296, + 42431447 + ], + "geometry": [ + { "lat": 40.7890588, "lon": -73.9703363 }, + { "lat": 40.7889964, "lon": -73.9701843 }, + { "lat": 40.7879272, "lon": -73.9676493 }, + { "lat": 40.7879114, "lon": -73.9676033 }, + { "lat": 40.7878716, "lon": -73.9674683 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 90th Street", + "name:ru": "Западная 90-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 199124544, + "bounds": { + "minlat": 40.7890588, + "minlon": -73.9731431, + "maxlat": 40.7902424, + "maxlon": -73.9703363 + }, + "nodes": [ + 42437052, + 8699249542, + 9916159529, + 9916159530, + 42437050 + ], + "geometry": [ + { "lat": 40.7902424, "lon": -73.9731431 }, + { "lat": 40.7901931, "lon": -73.9730245 }, + { "lat": 40.7891239, "lon": -73.9704919 }, + { "lat": 40.7891024, "lon": -73.9704387 }, + { "lat": 40.7890588, "lon": -73.9703363 } + ], + "tags": { + "alt_name": "Henry J Browne Boulevard", + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 90th Street", + "name:ru": "Западная 90-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 199927849, + "bounds": { + "minlat": 40.7215294, + "minlon": -73.9842958, + "maxlat": 40.7216780, + "maxlon": -73.9837985 + }, + "nodes": [ + 42440401, + 3783146164, + 4202899499 + ], + "geometry": [ + { "lat": 40.7215294, "lon": -73.9837985 }, + { "lat": 40.7215615, "lon": -73.9839027 }, + { "lat": 40.7216780, "lon": -73.9842958 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 199927850, + "bounds": { + "minlat": 40.7212758, + "minlon": -73.9838696, + "maxlat": 40.7214151, + "maxlon": -73.9833991 + }, + "nodes": [ + 1919595921, + 3783146180, + 9181587106 + ], + "geometry": [ + { "lat": 40.7214151, "lon": -73.9838696 }, + { "lat": 40.7213895, "lon": -73.9837806 }, + { "lat": 40.7212758, "lon": -73.9833991 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 200957797, + "bounds": { + "minlat": 40.7485258, + "minlon": -73.9101150, + "maxlat": 40.7490860, + "maxlon": -73.9099067 + }, + "nodes": [ + 42893076, + 7671862988, + 7667086997, + 11467993931, + 42892898 + ], + "geometry": [ + { "lat": 40.7490860, "lon": -73.9099067 }, + { "lat": 40.7490269, "lon": -73.9099282 }, + { "lat": 40.7489654, "lon": -73.9099506 }, + { "lat": 40.7485937, "lon": -73.9101011 }, + { "lat": 40.7485258, "lon": -73.9101150 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "lane", + "highway": "tertiary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Woodside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes:forward": "right" + } +}, +{ + "type": "way", + "id": 200957798, + "bounds": { + "minlat": 40.7456486, + "minlon": -73.9101519, + "maxlat": 40.7485258, + "maxlon": -73.9064347 + }, + "nodes": [ + 42896911, + 5538919084, + 5891889921, + 10762234104, + 42896906, + 10762234103, + 11917991179, + 42855336, + 10762234101, + 42896900, + 8599740366, + 11643646127, + 8599740383, + 10762234062, + 42896896, + 42808387, + 42896890, + 9677940598, + 11467993932, + 42892898 + ], + "geometry": [ + { "lat": 40.7456486, "lon": -73.9064347 }, + { "lat": 40.7456705, "lon": -73.9065275 }, + { "lat": 40.7457809, "lon": -73.9068982 }, + { "lat": 40.7458671, "lon": -73.9071938 }, + { "lat": 40.7458870, "lon": -73.9072620 }, + { "lat": 40.7459161, "lon": -73.9073453 }, + { "lat": 40.7461624, "lon": -73.9080497 }, + { "lat": 40.7461860, "lon": -73.9081170 }, + { "lat": 40.7462246, "lon": -73.9081979 }, + { "lat": 40.7467750, "lon": -73.9088470 }, + { "lat": 40.7468323, "lon": -73.9089124 }, + { "lat": 40.7468424, "lon": -73.9089287 }, + { "lat": 40.7471253, "lon": -73.9092465 }, + { "lat": 40.7473584, "lon": -73.9095078 }, + { "lat": 40.7473950, "lon": -73.9095540 }, + { "lat": 40.7477640, "lon": -73.9099190 }, + { "lat": 40.7482290, "lon": -73.9101519 }, + { "lat": 40.7482723, "lon": -73.9101483 }, + { "lat": 40.7484569, "lon": -73.9101146 }, + { "lat": 40.7485258, "lon": -73.9101150 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Woodside Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 200957800, + "bounds": { + "minlat": 40.7490340, + "minlon": -73.9156000, + "maxlat": 40.7491430, + "maxlon": -73.9146680 + }, + "nodes": [ + 42859942, + 7671808578, + 11467993925, + 42807823 + ], + "geometry": [ + { "lat": 40.7491430, "lon": -73.9156000 }, + { "lat": 40.7491311, "lon": -73.9154983 }, + { "lat": 40.7490450, "lon": -73.9147618 }, + { "lat": 40.7490340, "lon": -73.9146680 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "39th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 200957801, + "bounds": { + "minlat": 40.7501311, + "minlon": -73.9154002, + "maxlat": 40.7511890, + "maxlon": -73.9151896 + }, + "nodes": [ + 42816214, + 10762234053, + 42815107 + ], + "geometry": [ + { "lat": 40.7511890, "lon": -73.9151896 }, + { "lat": 40.7511022, "lon": -73.9152069 }, + { "lat": 40.7501311, "lon": -73.9154002 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxheight": "11'5\"", + "maxspeed": "25 mph", + "name": "48th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 200957802, + "bounds": { + "minlat": 40.7433255, + "minlon": -73.9167604, + "maxlat": 40.7447072, + "maxlon": -73.9164852 + }, + "nodes": [ + 42817805, + 10074123192, + 5482369533, + 9910693364 + ], + "geometry": [ + { "lat": 40.7447072, "lon": -73.9164852 }, + { "lat": 40.7446153, "lon": -73.9165035 }, + { "lat": 40.7434286, "lon": -73.9167403 }, + { "lat": 40.7433255, "lon": -73.9167604 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "48th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 202360047, + "bounds": { + "minlat": 40.8010376, + "minlon": -73.9317332, + "maxlat": 40.8013912, + "maxlon": -73.9314819 + }, + "nodes": [ + 6336676027, + 7925258842, + 6133355317, + 7495360334 + ], + "geometry": [ + { "lat": 40.8010376, "lon": -73.9317332 }, + { "lat": 40.8010687, "lon": -73.9317111 }, + { "lat": 40.8012716, "lon": -73.9315669 }, + { "lat": 40.8013912, "lon": -73.9314819 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:both": "no", + "sidewalk:both": "separate", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 202360048, + "bounds": { + "minlat": 40.7886864, + "minlon": -73.9438661, + "maxlat": 40.7893167, + "maxlon": -73.9433978 + }, + "nodes": [ + 42436627, + 6191027366, + 2947964861, + 42434912 + ], + "geometry": [ + { "lat": 40.7893167, "lon": -73.9433978 }, + { "lat": 40.7892470, "lon": -73.9434488 }, + { "lat": 40.7887609, "lon": -73.9438082 }, + { "lat": 40.7886864, "lon": -73.9438661 } + ], + "tags": { + "alt_name:ko": "2번가", + "construction": "minor", + "cycleway:left": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 14:00-19:00)", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 203319783, + "bounds": { + "minlat": 40.7099290, + "minlon": -73.9247754, + "maxlat": 40.7104870, + "maxlon": -73.9245360 + }, + "nodes": [ + 42502281, + 5436391865, + 597676499 + ], + "geometry": [ + { "lat": 40.7099290, "lon": -73.9245360 }, + { "lat": 40.7100064, "lon": -73.9245692 }, + { "lat": 40.7104870, "lon": -73.9247754 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 203319784, + "bounds": { + "minlat": 40.7111967, + "minlon": -73.9244866, + "maxlat": 40.7138845, + "maxlon": -73.9233113 + }, + "nodes": [ + 597676370, + 42474017, + 10253436231, + 42474020, + 10253436232, + 9325509482, + 12437305273, + 8452107999 + ], + "geometry": [ + { "lat": 40.7111967, "lon": -73.9233113 }, + { "lat": 40.7117499, "lon": -73.9235493 }, + { "lat": 40.7123564, "lon": -73.9238157 }, + { "lat": 40.7124280, "lon": -73.9238471 }, + { "lat": 40.7125159, "lon": -73.9238857 }, + { "lat": 40.7137701, "lon": -73.9244364 }, + { "lat": 40.7138113, "lon": -73.9244545 }, + { "lat": 40.7138845, "lon": -73.9244866 } + ], + "tags": { + "highway": "residential", + "name": "Scott Avenue", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 204082722, + "bounds": { + "minlat": 40.8353595, + "minlon": -73.9443615, + "maxlat": 40.8371038, + "maxlon": -73.9401964 + }, + "nodes": [ + 42442671, + 9935939387, + 6895256408, + 9935939408, + 561035376, + 42428965, + 9935939413, + 9935939364, + 42427115, + 13239260080 + ], + "geometry": [ + { "lat": 40.8353595, "lon": -73.9401964 }, + { "lat": 40.8354217, "lon": -73.9403450 }, + { "lat": 40.8357552, "lon": -73.9411412 }, + { "lat": 40.8364783, "lon": -73.9428625 }, + { "lat": 40.8365195, "lon": -73.9429606 }, + { "lat": 40.8366058, "lon": -73.9431703 }, + { "lat": 40.8366482, "lon": -73.9432693 }, + { "lat": 40.8370382, "lon": -73.9442047 }, + { "lat": 40.8370771, "lon": -73.9442977 }, + { "lat": 40.8371038, "lon": -73.9443615 } + ], + "tags": { + "highway": "residential", + "name": "West 161st Street", + "name_1": "West 161 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "161st", + "tiger:name_base_1": "161", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 204082723, + "bounds": { + "minlat": 40.8350754, + "minlon": -73.9397872, + "maxlat": 40.8352806, + "maxlon": -73.9397338 + }, + "nodes": [ + 42433011, + 2513517570, + 9935939403, + 2075600884 + ], + "geometry": [ + { "lat": 40.8350754, "lon": -73.9397872 }, + { "lat": 40.8351698, "lon": -73.9397416 }, + { "lat": 40.8352622, "lon": -73.9397352 }, + { "lat": 40.8352806, "lon": -73.9397338 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "parking:lane:right": "parallel", + "rcn_ref": "9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 204082743, + "bounds": { + "minlat": 40.8338430, + "minlon": -73.9400419, + "maxlat": 40.8344907, + "maxlon": -73.9384920 + }, + "nodes": [ + 13317744808, + 2140983262, + 42446919, + 2075600883, + 11296125620, + 42439718 + ], + "geometry": [ + { "lat": 40.8344907, "lon": -73.9400419 }, + { "lat": 40.8344585, "lon": -73.9399158 }, + { "lat": 40.8341688, "lon": -73.9392318 }, + { "lat": 40.8339053, "lon": -73.9386385 }, + { "lat": 40.8338865, "lon": -73.9385961 }, + { "lat": 40.8338430, "lon": -73.9384920 } + ], + "tags": { + "alt_name": "Count Basie Place", + "description": "This honorary street name memorializes Count Basie", + "highway": "residential", + "historic": "memorial", + "name": "West 160th Street", + "name_1": "West 160 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "160th", + "tiger:name_base_1": "160", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 204082744, + "bounds": { + "minlat": 40.8344923, + "minlon": -73.9406514, + "maxlat": 40.8347248, + "maxlon": -73.9400480 + }, + "nodes": [ + 42442664, + 9935939404, + 11291880495, + 2140983263, + 42432999 + ], + "geometry": [ + { "lat": 40.8347248, "lon": -73.9406514 }, + { "lat": 40.8346804, "lon": -73.9405441 }, + { "lat": 40.8345354, "lon": -73.9401925 }, + { "lat": 40.8345302, "lon": -73.9401799 }, + { "lat": 40.8344923, "lon": -73.9400480 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "name": "West 160th Street", + "name_1": "West 160 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "160th", + "tiger:name_base_1": "160", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 204083299, + "bounds": { + "minlat": 40.8281103, + "minlon": -73.9349775, + "maxlat": 40.8281871, + "maxlon": -73.9348029 + }, + "nodes": [ + 13320112971, + 371337241 + ], + "geometry": [ + { "lat": 40.8281103, "lon": -73.9348029 }, + { "lat": 40.8281871, "lon": -73.9349775 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "hgv": "local", + "highway": "primary", + "layer": "2", + "maxspeed": "25 mph", + "name": "West 155th Street", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 204083301, + "bounds": { + "minlat": 40.8271890, + "minlon": -73.9392533, + "maxlat": 40.8282799, + "maxlon": -73.9366137 + }, + "nodes": [ + 42449139, + 12994121391, + 13003709295, + 11762434881, + 42435894, + 11762434884, + 2140987076, + 11218821635, + 9153608685, + 42440075 + ], + "geometry": [ + { "lat": 40.8271890, "lon": -73.9366137 }, + { "lat": 40.8272352, "lon": -73.9367307 }, + { "lat": 40.8272748, "lon": -73.9368200 }, + { "lat": 40.8278238, "lon": -73.9381110 }, + { "lat": 40.8278770, "lon": -73.9382370 }, + { "lat": 40.8279305, "lon": -73.9383684 }, + { "lat": 40.8282399, "lon": -73.9391263 }, + { "lat": 40.8282509, "lon": -73.9391586 }, + { "lat": 40.8282599, "lon": -73.9391850 }, + { "lat": 40.8282799, "lon": -73.9392533 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 153rd Street", + "name_1": "West 153 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "153rd", + "tiger:name_base_1": "153", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 204083742, + "bounds": { + "minlat": 40.8279826, + "minlon": -73.9350182, + "maxlat": 40.8280388, + "maxlon": -73.9348611 + }, + "nodes": [ + 2140997998, + 13535333127, + 7612920606, + 13535333128, + 42434935 + ], + "geometry": [ + { "lat": 40.8280388, "lon": -73.9348611 }, + { "lat": 40.8280319, "lon": -73.9348817 }, + { "lat": 40.8280201, "lon": -73.9349216 }, + { "lat": 40.8280032, "lon": -73.9349699 }, + { "lat": 40.8279826, "lon": -73.9350182 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "layer": "2", + "maxspeed": "25 mph", + "name": "Macombs Place", + "name:etymology:wikidata": "Q328356", + "oneway": "yes", + "sidewalk": "no", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 204084138, + "bounds": { + "minlat": 40.8266260, + "minlon": -73.9401426, + "maxlat": 40.8270356, + "maxlon": -73.9391490 + }, + "nodes": [ + 42435885, + 8008242774, + 11218821627, + 42440069 + ], + "geometry": [ + { "lat": 40.8266260, "lon": -73.9391490 }, + { "lat": 40.8266820, "lon": -73.9392835 }, + { "lat": 40.8270025, "lon": -73.9400619 }, + { "lat": 40.8270356, "lon": -73.9401426 } + ], + "tags": { + "highway": "residential", + "name": "West 151st Street", + "name_1": "West 151 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "151st", + "tiger:name_base_1": "151", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 204084139, + "bounds": { + "minlat": 40.8253970, + "minlon": -73.9384158, + "maxlat": 40.8263202, + "maxlon": -73.9362364 + }, + "nodes": [ + 9150629570, + 42439929, + 8757847595, + 13535333106, + 11218835142, + 42449127 + ], + "geometry": [ + { "lat": 40.8253970, "lon": -73.9362364 }, + { "lat": 40.8254654, "lon": -73.9363928 }, + { "lat": 40.8255141, "lon": -73.9365012 }, + { "lat": 40.8262647, "lon": -73.9382823 }, + { "lat": 40.8262830, "lon": -73.9383265 }, + { "lat": 40.8263202, "lon": -73.9384158 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 151st Street", + "name_1": "West 151 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "151st", + "tiger:name_base_1": "151", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 204084140, + "bounds": { + "minlat": 40.8263202, + "minlon": -73.9391490, + "maxlat": 40.8266260, + "maxlon": -73.9384158 + }, + "nodes": [ + 42449127, + 12994121400, + 11218835144, + 8008242777, + 42435885 + ], + "geometry": [ + { "lat": 40.8263202, "lon": -73.9384158 }, + { "lat": 40.8263629, "lon": -73.9385187 }, + { "lat": 40.8264004, "lon": -73.9386088 }, + { "lat": 40.8265735, "lon": -73.9390251 }, + { "lat": 40.8266260, "lon": -73.9391490 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "West 151st Street", + "name_1": "West 151 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "151st", + "tiger:name_base_1": "151", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 204085724, + "bounds": { + "minlat": 40.8031843, + "minlon": -73.9524444, + "maxlat": 40.8035150, + "maxlon": -73.9522039 + }, + "nodes": [ + 2141026506, + 10171493830, + 13018378242, + 4207716483 + ], + "geometry": [ + { "lat": 40.8031843, "lon": -73.9524444 }, + { "lat": 40.8032890, "lon": -73.9523682 }, + { "lat": 40.8033464, "lon": -73.9523265 }, + { "lat": 40.8035150, "lon": -73.9522039 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "rcn_ref": "9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left|none|none", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 204085725, + "bounds": { + "minlat": 40.8216091, + "minlon": -73.9389915, + "maxlat": 40.8225547, + "maxlon": -73.9383022 + }, + "nodes": [ + 2141026518, + 9557088474, + 9557088491, + 2141026521, + 9557088495, + 4205440423 + ], + "geometry": [ + { "lat": 40.8216091, "lon": -73.9389915 }, + { "lat": 40.8217014, "lon": -73.9389242 }, + { "lat": 40.8222276, "lon": -73.9385406 }, + { "lat": 40.8222778, "lon": -73.9385040 }, + { "lat": 40.8223406, "lon": -73.9384583 }, + { "lat": 40.8225547, "lon": -73.9383022 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 204085726, + "bounds": { + "minlat": 40.8127308, + "minlon": -73.9454761, + "maxlat": 40.8133573, + "maxlon": -73.9450192 + }, + "nodes": [ + 2141026551, + 8319433975, + 10171603032, + 2141026534 + ], + "geometry": [ + { "lat": 40.8127308, "lon": -73.9454761 }, + { "lat": 40.8127904, "lon": -73.9454326 }, + { "lat": 40.8133055, "lon": -73.9450570 }, + { "lat": 40.8133573, "lon": -73.9450192 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 204085727, + "bounds": { + "minlat": 40.8258024, + "minlon": -73.9361454, + "maxlat": 40.8260626, + "maxlon": -73.9358564 + }, + "nodes": [ + 2141002593, + 5916527827, + 9150629564, + 2141002590 + ], + "geometry": [ + { "lat": 40.8260626, "lon": -73.9358564 }, + { "lat": 40.8260084, "lon": -73.9359461 }, + { "lat": 40.8259882, "lon": -73.9359764 }, + { "lat": 40.8258024, "lon": -73.9361454 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "destination", + "highway": "tertiary", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "tiger:cfcc": "A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 204085729, + "bounds": { + "minlat": 40.8241529, + "minlon": -73.9371350, + "maxlat": 40.8247731, + "maxlon": -73.9366870 + }, + "nodes": [ + 2141026509, + 10177607147, + 10177607150, + 2141026522 + ], + "geometry": [ + { "lat": 40.8241529, "lon": -73.9371350 }, + { "lat": 40.8242097, "lon": -73.9370941 }, + { "lat": 40.8247307, "lon": -73.9367176 }, + { "lat": 40.8247731, "lon": -73.9366870 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 204085730, + "bounds": { + "minlat": 40.8012531, + "minlon": -73.9538486, + "maxlat": 40.8019955, + "maxlon": -73.9533119 + }, + "nodes": [ + 2141026544, + 10170606885, + 10170606858, + 2141026523, + 10170606862, + 9684753438 + ], + "geometry": [ + { "lat": 40.8012531, "lon": -73.9538486 }, + { "lat": 40.8013139, "lon": -73.9538046 }, + { "lat": 40.8018348, "lon": -73.9534281 }, + { "lat": 40.8018838, "lon": -73.9533927 }, + { "lat": 40.8019419, "lon": -73.9533507 }, + { "lat": 40.8019955, "lon": -73.9533119 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 204085877, + "bounds": { + "minlat": 40.8255672, + "minlon": -73.9361135, + "maxlat": 40.8260626, + "maxlon": -73.9358564 + }, + "nodes": [ + 2141026516, + 2141027975, + 12739219129, + 9150629568, + 2141002593 + ], + "geometry": [ + { "lat": 40.8255672, "lon": -73.9361135 }, + { "lat": 40.8257281, "lon": -73.9360402 }, + { "lat": 40.8259334, "lon": -73.9359283 }, + { "lat": 40.8259838, "lon": -73.9359006 }, + { "lat": 40.8260626, "lon": -73.9358564 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "tiger:cfcc": "A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes": "through", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 204095108, + "bounds": { + "minlat": 40.7591211, + "minlon": -73.9519572, + "maxlat": 40.7595186, + "maxlon": -73.9514972 + }, + "nodes": [ + 2141121124, + 8265114405, + 2141121122, + 8265114451, + 8265114450, + 2141121130, + 8265114453, + 8265114452, + 8265114404, + 2141121132 + ], + "geometry": [ + { "lat": 40.7591917, "lon": -73.9519572 }, + { "lat": 40.7591521, "lon": -73.9518916 }, + { "lat": 40.7591211, "lon": -73.9518366 }, + { "lat": 40.7591229, "lon": -73.9517791 }, + { "lat": 40.7591501, "lon": -73.9517452 }, + { "lat": 40.7593832, "lon": -73.9515238 }, + { "lat": 40.7594160, "lon": -73.9514972 }, + { "lat": 40.7594473, "lon": -73.9515200 }, + { "lat": 40.7594815, "lon": -73.9515754 }, + { "lat": 40.7595186, "lon": -73.9516374 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 207542284, + "bounds": { + "minlat": 40.7545575, + "minlon": -73.9978498, + "maxlat": 40.7548577, + "maxlon": -73.9970987 + }, + "nodes": [ + 427840984, + 427840983, + 11144700390, + 427840982, + 11144690880, + 427840981, + 427840980, + 11144690879, + 427840979 + ], + "geometry": [ + { "lat": 40.7545575, "lon": -73.9978498 }, + { "lat": 40.7546014, "lon": -73.9977872 }, + { "lat": 40.7546498, "lon": -73.9977109 }, + { "lat": 40.7546919, "lon": -73.9976427 }, + { "lat": 40.7547436, "lon": -73.9975351 }, + { "lat": 40.7547849, "lon": -73.9974113 }, + { "lat": 40.7548165, "lon": -73.9972959 }, + { "lat": 40.7548405, "lon": -73.9971917 }, + { "lat": 40.7548577, "lon": -73.9970987 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "note": "this is supposed to be a local truck route but signs say no trucks", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 209462186, + "bounds": { + "minlat": 40.7856725, + "minlon": -73.9814421, + "maxlat": 40.7861933, + "maxlon": -73.9802092 + }, + "nodes": [ + 42431024, + 8727756086, + 10039664852, + 42441587 + ], + "geometry": [ + { "lat": 40.7856725, "lon": -73.9802092 }, + { "lat": 40.7857230, "lon": -73.9803332 }, + { "lat": 40.7861533, "lon": -73.9813480 }, + { "lat": 40.7861933, "lon": -73.9814421 } + ], + "tags": { + "highway": "residential", + "name": "West 81st Street", + "name:ru": "Западная 81-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 209462187, + "bounds": { + "minlat": 40.7852101, + "minlon": -73.9802092, + "maxlat": 40.7856725, + "maxlon": -73.9791163 + }, + "nodes": [ + 42428657, + 8709392114, + 8727756082, + 42431024 + ], + "geometry": [ + { "lat": 40.7852101, "lon": -73.9791163 }, + { "lat": 40.7852494, "lon": -73.9792086 }, + { "lat": 40.7856173, "lon": -73.9800775 }, + { "lat": 40.7856725, "lon": -73.9802092 } + ], + "tags": { + "alt_name": "Victor Wald Way", + "highway": "residential", + "name": "West 81st Street", + "name:ru": "Западная 81-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 211462389, + "bounds": { + "minlat": 40.8773042, + "minlon": -73.9466946, + "maxlat": 40.8796328, + "maxlon": -73.9456175 + }, + "nodes": [ + 2214758027, + 103221374, + 2214758033, + 8417201289, + 2214758034, + 2214758036, + 2214758037, + 2214758038, + 2214758040, + 2214758041 + ], + "geometry": [ + { "lat": 40.8773042, "lon": -73.9465903 }, + { "lat": 40.8776975, "lon": -73.9464857 }, + { "lat": 40.8779038, "lon": -73.9465213 }, + { "lat": 40.8780281, "lon": -73.9466450 }, + { "lat": 40.8780779, "lon": -73.9466946 }, + { "lat": 40.8783570, "lon": -73.9465952 }, + { "lat": 40.8786646, "lon": -73.9462971 }, + { "lat": 40.8791153, "lon": -73.9460706 }, + { "lat": 40.8793538, "lon": -73.9457963 }, + { "lat": 40.8796328, "lon": -73.9456175 } + ], + "tags": { + "highway": "service", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 211462390, + "bounds": { + "minlat": 40.8771835, + "minlon": -73.9466102, + "maxlat": 40.8773042, + "maxlon": -73.9465903 + }, + "nodes": [ + 2214758025, + 2214758027 + ], + "geometry": [ + { "lat": 40.8771835, "lon": -73.9466102 }, + { "lat": 40.8773042, "lon": -73.9465903 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 211731509, + "bounds": { + "minlat": 40.7726288, + "minlon": -73.9705609, + "maxlat": 40.7731053, + "maxlon": -73.9694371 + }, + "nodes": [ + 2216963648, + 1210383520, + 13718295133, + 13718295132, + 13718295131, + 13718295130, + 13718295129, + 13718295128, + 4254510132 + ], + "geometry": [ + { "lat": 40.7731053, "lon": -73.9705609 }, + { "lat": 40.7730402, "lon": -73.9702347 }, + { "lat": 40.7729704, "lon": -73.9701285 }, + { "lat": 40.7728627, "lon": -73.9699562 }, + { "lat": 40.7727932, "lon": -73.9698355 }, + { "lat": 40.7727251, "lon": -73.9697081 }, + { "lat": 40.7726652, "lon": -73.9695773 }, + { "lat": 40.7726474, "lon": -73.9695150 }, + { "lat": 40.7726288, "lon": -73.9694371 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 216924103, + "bounds": { + "minlat": 40.7516905, + "minlon": -73.9418628, + "maxlat": 40.7530370, + "maxlon": -73.9406160 + }, + "nodes": [ + 42920889, + 2468400262, + 6859408316, + 5493300586, + 42895311 + ], + "geometry": [ + { "lat": 40.7516905, "lon": -73.9418628 }, + { "lat": 40.7517336, "lon": -73.9418219 }, + { "lat": 40.7523433, "lon": -73.9412574 }, + { "lat": 40.7529881, "lon": -73.9406612 }, + { "lat": 40.7530370, "lon": -73.9406160 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "highway": "residential", + "lit": "yes", + "name": "23rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 216924104, + "bounds": { + "minlat": 40.7516905, + "minlon": -73.9438228, + "maxlat": 40.7525506, + "maxlon": -73.9418628 + }, + "nodes": [ + 42920889, + 2468400263, + 11623148126, + 42931320, + 11623148123, + 2468400257, + 7788502000, + 42825887 + ], + "geometry": [ + { "lat": 40.7516905, "lon": -73.9418628 }, + { "lat": 40.7517283, "lon": -73.9419466 }, + { "lat": 40.7520293, "lon": -73.9426387 }, + { "lat": 40.7520575, "lon": -73.9427036 }, + { "lat": 40.7520925, "lon": -73.9427834 }, + { "lat": 40.7524677, "lon": -73.9436390 }, + { "lat": 40.7524986, "lon": -73.9437068 }, + { "lat": 40.7525506, "lon": -73.9438228 } + ], + "tags": { + "highway": "tertiary", + "lit": "yes", + "name": "Queens Plaza North", + "name_1": "Bridge Plaza North", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 216928596, + "bounds": { + "minlat": 40.7432056, + "minlon": -73.9177302, + "maxlat": 40.7448139, + "maxlon": -73.9174103 + }, + "nodes": [ + 2262434175, + 10743722579, + 11256176718, + 10762295635, + 10074123196, + 42817802 + ], + "geometry": [ + { "lat": 40.7432056, "lon": -73.9177302 }, + { "lat": 40.7433209, "lon": -73.9177072 }, + { "lat": 40.7434514, "lon": -73.9176813 }, + { "lat": 40.7446936, "lon": -73.9174342 }, + { "lat": 40.7447202, "lon": -73.9174285 }, + { "lat": 40.7448139, "lon": -73.9174103 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "47th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 216928597, + "bounds": { + "minlat": 40.7445344, + "minlon": -73.9164852, + "maxlat": 40.7447072, + "maxlon": -73.9150039 + }, + "nodes": [ + 42817805, + 10074123176, + 11694673325, + 42807841, + 11694673324, + 10074123177 + ], + "geometry": [ + { "lat": 40.7447072, "lon": -73.9164852 }, + { "lat": 40.7446970, "lon": -73.9163934 }, + { "lat": 40.7446110, "lon": -73.9156494 }, + { "lat": 40.7446006, "lon": -73.9155589 }, + { "lat": 40.7445914, "lon": -73.9154819 }, + { "lat": 40.7445344, "lon": -73.9150039 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 216928600, + "bounds": { + "minlat": 40.7430994, + "minlon": -73.9177302, + "maxlat": 40.7432056, + "maxlon": -73.9168046 + }, + "nodes": [ + 276207582, + 9607672560, + 10743722577, + 2262434175 + ], + "geometry": [ + { "lat": 40.7430994, "lon": -73.9168046 }, + { "lat": 40.7431127, "lon": -73.9169203 }, + { "lat": 40.7431981, "lon": -73.9176647 }, + { "lat": 40.7432056, "lon": -73.9177302 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 216928604, + "bounds": { + "minlat": 40.7432056, + "minlon": -73.9270213, + "maxlat": 40.7442785, + "maxlon": -73.9177302 + }, + "nodes": [ + 2262434175, + 10743722576, + 10743714069, + 3785693708, + 10743714073, + 10743714075, + 2795569886, + 10743714078, + 10927727725, + 10743714087, + 3785693707, + 10743714090, + 5370619778, + 2844853158, + 5370619779, + 10743722035, + 2844853160, + 10743722037, + 10743722045, + 2844853161, + 8248311073, + 10927727728, + 4960588166, + 2844853162, + 4960588164, + 10743722050, + 2708237395, + 10743722054, + 10743722055, + 598433544, + 10743722058, + 10088753861, + 10743722059, + 597294490 + ], + "geometry": [ + { "lat": 40.7432056, "lon": -73.9177302 }, + { "lat": 40.7432149, "lon": -73.9178103 }, + { "lat": 40.7433067, "lon": -73.9186026 }, + { "lat": 40.7433145, "lon": -73.9186703 }, + { "lat": 40.7433236, "lon": -73.9187496 }, + { "lat": 40.7434130, "lon": -73.9195259 }, + { "lat": 40.7434201, "lon": -73.9195880 }, + { "lat": 40.7434299, "lon": -73.9196737 }, + { "lat": 40.7434529, "lon": -73.9198745 }, + { "lat": 40.7435187, "lon": -73.9204482 }, + { "lat": 40.7435270, "lon": -73.9205211 }, + { "lat": 40.7435369, "lon": -73.9206038 }, + { "lat": 40.7436254, "lon": -73.9213415 }, + { "lat": 40.7436366, "lon": -73.9214533 }, + { "lat": 40.7436462, "lon": -73.9215611 }, + { "lat": 40.7437341, "lon": -73.9223021 }, + { "lat": 40.7437438, "lon": -73.9223863 }, + { "lat": 40.7437537, "lon": -73.9224660 }, + { "lat": 40.7438458, "lon": -73.9232252 }, + { "lat": 40.7438549, "lon": -73.9233005 }, + { "lat": 40.7438637, "lon": -73.9233804 }, + { "lat": 40.7438921, "lon": -73.9236289 }, + { "lat": 40.7439532, "lon": -73.9241621 }, + { "lat": 40.7439615, "lon": -73.9242332 }, + { "lat": 40.7439700, "lon": -73.9243017 }, + { "lat": 40.7440563, "lon": -73.9250882 }, + { "lat": 40.7440628, "lon": -73.9251476 }, + { "lat": 40.7440740, "lon": -73.9252426 }, + { "lat": 40.7441652, "lon": -73.9260196 }, + { "lat": 40.7441770, "lon": -73.9261196 }, + { "lat": 40.7441906, "lon": -73.9262325 }, + { "lat": 40.7442243, "lon": -73.9265136 }, + { "lat": 40.7442694, "lon": -73.9269352 }, + { "lat": 40.7442785, "lon": -73.9270213 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 216928610, + "bounds": { + "minlat": 40.7447387, + "minlon": -73.9174103, + "maxlat": 40.7448139, + "maxlon": -73.9167592 + }, + "nodes": [ + 42817802, + 10074123195, + 11177302954 + ], + "geometry": [ + { "lat": 40.7448139, "lon": -73.9174103 }, + { "lat": 40.7448062, "lon": -73.9173437 }, + { "lat": 40.7447387, "lon": -73.9167592 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 216928613, + "bounds": { + "minlat": 40.7425097, + "minlon": -73.9178684, + "maxlat": 40.7432056, + "maxlon": -73.9177302 + }, + "nodes": [ + 42896840, + 10743722505, + 10743722574, + 2844853150, + 3798377337, + 2262434175 + ], + "geometry": [ + { "lat": 40.7425097, "lon": -73.9178684 }, + { "lat": 40.7426086, "lon": -73.9178457 }, + { "lat": 40.7428145, "lon": -73.9178067 }, + { "lat": 40.7429064, "lon": -73.9177903 }, + { "lat": 40.7430621, "lon": -73.9177616 }, + { "lat": 40.7432056, "lon": -73.9177302 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "47th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 216929307, + "bounds": { + "minlat": 40.7672998, + "minlon": -73.9250866, + "maxlat": 40.7686366, + "maxlon": -73.9222410 + }, + "nodes": [ + 42818504, + 6452895153, + 5118688300, + 42872077, + 7166349486, + 5538998202, + 6453013686, + 42833250, + 2297358929, + 6453013690, + 42833309, + 2297358933, + 5118688299, + 2297358944, + 42874050 + ], + "geometry": [ + { "lat": 40.7686366, "lon": -73.9250866 }, + { "lat": 40.7685892, "lon": -73.9249836 }, + { "lat": 40.7682684, "lon": -73.9243125 }, + { "lat": 40.7682479, "lon": -73.9242695 }, + { "lat": 40.7681892, "lon": -73.9241506 }, + { "lat": 40.7679954, "lon": -73.9237398 }, + { "lat": 40.7679253, "lon": -73.9235889 }, + { "lat": 40.7678953, "lon": -73.9235243 }, + { "lat": 40.7678646, "lon": -73.9234583 }, + { "lat": 40.7676806, "lon": -73.9230622 }, + { "lat": 40.7676528, "lon": -73.9230022 }, + { "lat": 40.7676233, "lon": -73.9229426 }, + { "lat": 40.7674937, "lon": -73.9226732 }, + { "lat": 40.7673376, "lon": -73.9223213 }, + { "lat": 40.7672998, "lon": -73.9222410 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "30th Avenue", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 216931394, + "bounds": { + "minlat": 40.7488320, + "minlon": -73.9376434, + "maxlat": 40.7489275, + "maxlon": -73.9373948 + }, + "nodes": [ + 276203987, + 11747175588, + 42844306 + ], + "geometry": [ + { "lat": 40.7488320, "lon": -73.9376434 }, + { "lat": 40.7488680, "lon": -73.9375496 }, + { "lat": 40.7489275, "lon": -73.9373948 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Jackson Avenue", + "oneway": "no", + "ref": "NY 25A" + } +}, +{ + "type": "way", + "id": 216939194, + "bounds": { + "minlat": 40.6998410, + "minlon": -73.9099331, + "maxlat": 40.7006082, + "maxlon": -73.9086830 + }, + "nodes": [ + 42870690, + 11042404183, + 9677213640, + 42871160, + 9677213643, + 5328241472, + 42899537 + ], + "geometry": [ + { "lat": 40.7006082, "lon": -73.9099331 }, + { "lat": 40.7005675, "lon": -73.9098654 }, + { "lat": 40.7002092, "lon": -73.9092698 }, + { "lat": 40.7001690, "lon": -73.9092040 }, + { "lat": 40.7001316, "lon": -73.9091446 }, + { "lat": 40.6999256, "lon": -73.9087980 }, + { "lat": 40.6998410, "lon": -73.9086830 } + ], + "tags": { + "highway": "residential", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY; Queens, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 216939199, + "bounds": { + "minlat": 40.7006082, + "minlon": -73.9099331, + "maxlat": 40.7016747, + "maxlon": -73.9088428 + }, + "nodes": [ + 42870690, + 9799250943, + 3017396599, + 5482432254, + 9762206654, + 42870693 + ], + "geometry": [ + { "lat": 40.7006082, "lon": -73.9099331 }, + { "lat": 40.7006659, "lon": -73.9098742 }, + { "lat": 40.7011941, "lon": -73.9093351 }, + { "lat": 40.7012700, "lon": -73.9092582 }, + { "lat": 40.7016242, "lon": -73.9088947 }, + { "lat": 40.7016747, "lon": -73.9088428 } + ], + "tags": { + "highway": "residential", + "name": "Palmetto Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Palmetto", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 216941303, + "bounds": { + "minlat": 40.7000273, + "minlon": -73.9071213, + "maxlat": 40.7002850, + "maxlon": -73.9048839 + }, + "nodes": [ + 42810955, + 5328241471, + 42830669, + 5328241463, + 5328241470, + 42899546, + 5328241474, + 42853140 + ], + "geometry": [ + { "lat": 40.7002850, "lon": -73.9048839 }, + { "lat": 40.7002192, "lon": -73.9054948 }, + { "lat": 40.7002043, "lon": -73.9055942 }, + { "lat": 40.7001851, "lon": -73.9057270 }, + { "lat": 40.7001456, "lon": -73.9060768 }, + { "lat": 40.7001302, "lon": -73.9062195 }, + { "lat": 40.7001180, "lon": -73.9063594 }, + { "lat": 40.7000273, "lon": -73.9071213 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Myrtle Avenue", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Myrtle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11418", + "tiger:zip_right": "11418", + "wikidata": "Q6948581", + "wikipedia": "en:Myrtle Avenue" + } +}, +{ + "type": "way", + "id": 216941306, + "bounds": { + "minlat": 40.7008040, + "minlon": -73.9088428, + "maxlat": 40.7016747, + "maxlon": -73.9073600 + }, + "nodes": [ + 42870693, + 9762206655, + 9762206690, + 42871166, + 9762206692, + 9762206704, + 42848475 + ], + "geometry": [ + { "lat": 40.7016747, "lon": -73.9088428 }, + { "lat": 40.7016321, "lon": -73.9087702 }, + { "lat": 40.7012828, "lon": -73.9081754 }, + { "lat": 40.7012409, "lon": -73.9081041 }, + { "lat": 40.7012100, "lon": -73.9080515 }, + { "lat": 40.7008466, "lon": -73.9074325 }, + { "lat": 40.7008040, "lon": -73.9073600 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "name": "Cypress Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 216941317, + "bounds": { + "minlat": 40.6982541, + "minlon": -73.9087823, + "maxlat": 40.7000273, + "maxlon": -73.9070925 + }, + "nodes": [ + 42853140, + 5328241458, + 11004046294, + 11162237846, + 9799250442, + 42853138 + ], + "geometry": [ + { "lat": 40.7000273, "lon": -73.9071213 }, + { "lat": 40.6999540, "lon": -73.9070925 }, + { "lat": 40.6998908, "lon": -73.9071227 }, + { "lat": 40.6983573, "lon": -73.9086784 }, + { "lat": 40.6983202, "lon": -73.9087160 }, + { "lat": 40.6982541, "lon": -73.9087823 } + ], + "tags": { + "highway": "residential", + "name": "Putnam Avenue", + "name:etymology:wikidata": "Q622130", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY; Kings, NY", + "tiger:name_base": "Putnam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 216941320, + "bounds": { + "minlat": 40.7003665, + "minlon": -73.9073600, + "maxlat": 40.7008040, + "maxlon": -73.9066205 + }, + "nodes": [ + 42848475, + 9762206706, + 42853145 + ], + "geometry": [ + { "lat": 40.7008040, "lon": -73.9073600 }, + { "lat": 40.7007702, "lon": -73.9073028 }, + { "lat": 40.7003665, "lon": -73.9066205 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Cypress Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 216941350, + "bounds": { + "minlat": 40.7016747, + "minlon": -73.9088428, + "maxlat": 40.7028076, + "maxlon": -73.9076849 + }, + "nodes": [ + 42870693, + 9762206656, + 3017396608, + 13701577680, + 9762206581, + 42870698 + ], + "geometry": [ + { "lat": 40.7016747, "lon": -73.9088428 }, + { "lat": 40.7017426, "lon": -73.9087735 }, + { "lat": 40.7018588, "lon": -73.9086550 }, + { "lat": 40.7024885, "lon": -73.9080112 }, + { "lat": 40.7027517, "lon": -73.9077421 }, + { "lat": 40.7028076, "lon": -73.9076849 } + ], + "tags": { + "highway": "residential", + "name": "Palmetto Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Palmetto", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 216941354, + "bounds": { + "minlat": 40.7008040, + "minlon": -73.9073600, + "maxlat": 40.7019310, + "maxlon": -73.9062080 + }, + "nodes": [ + 42848475, + 9762206703, + 9705793933, + 9762206671, + 42848478 + ], + "geometry": [ + { "lat": 40.7008040, "lon": -73.9073600 }, + { "lat": 40.7008663, "lon": -73.9072963 }, + { "lat": 40.7010691, "lon": -73.9070890 }, + { "lat": 40.7018746, "lon": -73.9062656 }, + { "lat": 40.7019310, "lon": -73.9062080 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 216959248, + "bounds": { + "minlat": 40.7337434, + "minlon": -74.0062788, + "maxlat": 40.7340100, + "maxlon": -74.0045610 + }, + "nodes": [ + 42436396, + 8307642008, + 8307642022, + 42431804 + ], + "geometry": [ + { "lat": 40.7337434, "lon": -74.0062788 }, + { "lat": 40.7337596, "lon": -74.0061698 }, + { "lat": 40.7339989, "lon": -74.0046326 }, + { "lat": 40.7340100, "lon": -74.0045610 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "20 mph", + "name": "West 10th Street", + "name:ru": "Западная 10-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 216959250, + "bounds": { + "minlat": 40.7340100, + "minlon": -74.0045610, + "maxlat": 40.7343413, + "maxlon": -74.0023950 + }, + "nodes": [ + 42431804, + 6213204051, + 8307642019, + 8307642099, + 42457728, + 8307642096, + 5244228881, + 8307642092, + 42430811 + ], + "geometry": [ + { "lat": 40.7340100, "lon": -74.0045610 }, + { "lat": 40.7340147, "lon": -74.0045285 }, + { "lat": 40.7340191, "lon": -74.0044996 }, + { "lat": 40.7342448, "lon": -74.0030259 }, + { "lat": 40.7342533, "lon": -74.0029703 }, + { "lat": 40.7342622, "lon": -74.0029119 }, + { "lat": 40.7342885, "lon": -74.0027404 }, + { "lat": 40.7343163, "lon": -74.0025583 }, + { "lat": 40.7343413, "lon": -74.0023950 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 10th Street", + "name:ru": "Западная 10-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 217704420, + "bounds": { + "minlat": 40.8529234, + "minlon": -73.9664107, + "maxlat": 40.8536448, + "maxlon": -73.9659738 + }, + "nodes": [ + 103126804, + 4054733402, + 7046240931, + 8418068125, + 103104423 + ], + "geometry": [ + { "lat": 40.8529234, "lon": -73.9664107 }, + { "lat": 40.8530072, "lon": -73.9663600 }, + { "lat": 40.8534434, "lon": -73.9660957 }, + { "lat": 40.8535602, "lon": -73.9660250 }, + { "lat": 40.8536448, "lon": -73.9659738 } + ], + "tags": { + "highway": "service", + "name": "Hoyt Avenue" + } +}, +{ + "type": "way", + "id": 217991114, + "bounds": { + "minlat": 40.7176349, + "minlon": -73.9822823, + "maxlat": 40.7182465, + "maxlon": -73.9801440 + }, + "nodes": [ + 9205440811, + 2359921665, + 8236347427, + 8236347434, + 8236347447, + 9205440810 + ], + "geometry": [ + { "lat": 40.7182465, "lon": -73.9822823 }, + { "lat": 40.7180332, "lon": -73.9815365 }, + { "lat": 40.7179897, "lon": -73.9813845 }, + { "lat": 40.7178911, "lon": -73.9810398 }, + { "lat": 40.7177887, "lon": -73.9806819 }, + { "lat": 40.7176349, "lon": -73.9801440 } + ], + "tags": { + "access": "private", + "highway": "pedestrian", + "lit": "yes", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 218330656, + "bounds": { + "minlat": 40.7582175, + "minlon": -73.9822572, + "maxlat": 40.7589801, + "maxlon": -73.9813410 + }, + "nodes": [ + 1751552932, + 10228962577, + 3971196607, + 3971196618, + 42430352, + 3971196619, + 3971196620, + 10228962580, + 1593915792, + 1593915791, + 1593915781, + 1751552937, + 1751552932 + ], + "geometry": [ + { "lat": 40.7582787, "lon": -73.9818064 }, + { "lat": 40.7582739, "lon": -73.9817943 }, + { "lat": 40.7582175, "lon": -73.9816514 }, + { "lat": 40.7585861, "lon": -73.9813835 }, + { "lat": 40.7586450, "lon": -73.9813410 }, + { "lat": 40.7587072, "lon": -73.9814844 }, + { "lat": 40.7589801, "lon": -73.9821356 }, + { "lat": 40.7589222, "lon": -73.9821810 }, + { "lat": 40.7589022, "lon": -73.9821968 }, + { "lat": 40.7588193, "lon": -73.9822572 }, + { "lat": 40.7586381, "lon": -73.9818219 }, + { "lat": 40.7583678, "lon": -73.9820181 }, + { "lat": 40.7582787, "lon": -73.9818064 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "News Corp. Plaza", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 219654674, + "bounds": { + "minlat": 40.7421891, + "minlon": -73.9589108, + "maxlat": 40.7435796, + "maxlon": -73.9584461 + }, + "nodes": [ + 42852827, + 8250918932, + 3575033044, + 8250918931, + 42836082, + 9179070560, + 11196902802, + 11196902800, + 42852816 + ], + "geometry": [ + { "lat": 40.7435796, "lon": -73.9584461 }, + { "lat": 40.7435106, "lon": -73.9584691 }, + { "lat": 40.7429929, "lon": -73.9586550 }, + { "lat": 40.7429466, "lon": -73.9586714 }, + { "lat": 40.7428732, "lon": -73.9586943 }, + { "lat": 40.7428225, "lon": -73.9587101 }, + { "lat": 40.7423374, "lon": -73.9588626 }, + { "lat": 40.7422968, "lon": -73.9588758 }, + { "lat": 40.7421891, "lon": -73.9589108 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "2nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "2nd", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 220140925, + "bounds": { + "minlat": 40.7460238, + "minlon": -73.9401305, + "maxlat": 40.7462474, + "maxlon": -73.9400436 + }, + "nodes": [ + 276035447, + 3049953953 + ], + "geometry": [ + { "lat": 40.7462474, "lon": -73.9401305 }, + { "lat": 40.7460238, "lon": -73.9400436 } + ], + "tags": { + "access:conditional": "no @ (Mo-Fr 06:00-09:30); yes @ (Mo-Fr 06:00-09:30 AND occupants>1)", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "oneway": "reversible", + "oneway:conditional": "yes @ (Mo-Fr 00:00-06:00,09:30-24:00; Sa-Su); -1 @ (Mo-Fr 06:00-09:30)", + "sidewalk": "no" + } +}, +{ + "type": "way", + "id": 220140928, + "bounds": { + "minlat": 40.7464234, + "minlon": -73.9433629, + "maxlat": 40.7506657, + "maxlon": -73.9397876 + }, + "nodes": [ + 2292637623, + 593215969, + 3785649282, + 593215977, + 3785649283, + 3785649280, + 593215981, + 3785649279, + 2969267787, + 3785649278, + 593215984, + 3785649277, + 2969267786, + 3785649276, + 3785649275, + 593215989, + 593215996, + 3785649274, + 3785649273, + 3785649272, + 9188711327, + 9188711328, + 6785828976, + 9188711329, + 6785828977, + 9188711330, + 9188711332, + 593216013 + ], + "geometry": [ + { "lat": 40.7464234, "lon": -73.9397876 }, + { "lat": 40.7476356, "lon": -73.9405410 }, + { "lat": 40.7490392, "lon": -73.9414148 }, + { "lat": 40.7491098, "lon": -73.9414626 }, + { "lat": 40.7491765, "lon": -73.9415149 }, + { "lat": 40.7492418, "lon": -73.9415690 }, + { "lat": 40.7493085, "lon": -73.9416282 }, + { "lat": 40.7493881, "lon": -73.9417068 }, + { "lat": 40.7494572, "lon": -73.9417806 }, + { "lat": 40.7495342, "lon": -73.9418641 }, + { "lat": 40.7495992, "lon": -73.9419401 }, + { "lat": 40.7496718, "lon": -73.9420383 }, + { "lat": 40.7497372, "lon": -73.9421291 }, + { "lat": 40.7498045, "lon": -73.9422318 }, + { "lat": 40.7498646, "lon": -73.9423335 }, + { "lat": 40.7499302, "lon": -73.9424516 }, + { "lat": 40.7503342, "lon": -73.9432047 }, + { "lat": 40.7503567, "lon": -73.9432443 }, + { "lat": 40.7503765, "lon": -73.9432739 }, + { "lat": 40.7504023, "lon": -73.9433013 }, + { "lat": 40.7504354, "lon": -73.9433257 }, + { "lat": 40.7504648, "lon": -73.9433430 }, + { "lat": 40.7505022, "lon": -73.9433581 }, + { "lat": 40.7505309, "lon": -73.9433629 }, + { "lat": 40.7505622, "lon": -73.9433604 }, + { "lat": 40.7505957, "lon": -73.9433468 }, + { "lat": 40.7506243, "lon": -73.9433280 }, + { "lat": 40.7506657, "lon": -73.9432913 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "lit": "yes", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 220463588, + "bounds": { + "minlat": 40.7104981, + "minlon": -73.9570508, + "maxlat": 40.7106906, + "maxlon": -73.9564585 + }, + "nodes": [ + 1893285378, + 9957055549, + 479847987 + ], + "geometry": [ + { "lat": 40.7106906, "lon": -73.9564585 }, + { "lat": 40.7106449, "lon": -73.9565982 }, + { "lat": 40.7104981, "lon": -73.9570508 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base_1": "Borinquen", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 220463590, + "bounds": { + "minlat": 40.7106191, + "minlon": -73.9550673, + "maxlat": 40.7113680, + "maxlon": -73.9545892 + }, + "nodes": [ + 4209420712, + 8842929729, + 42504290, + 9957055564 + ], + "geometry": [ + { "lat": 40.7106191, "lon": -73.9550673 }, + { "lat": 40.7107103, "lon": -73.9550045 }, + { "lat": 40.7113219, "lon": -73.9546188 }, + { "lat": 40.7113680, "lon": -73.9545892 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Rodney Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 220463594, + "bounds": { + "minlat": 40.7106047, + "minlon": -73.9565249, + "maxlat": 40.7106906, + "maxlon": -73.9564585 + }, + "nodes": [ + 1893285378, + 4463110026 + ], + "geometry": [ + { "lat": 40.7106906, "lon": -73.9564585 }, + { "lat": 40.7106047, "lon": -73.9565249 } + ], + "tags": { + "cycleway:lane": "pictogram", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lcn": "yes", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left|through|through" + } +}, +{ + "type": "way", + "id": 220464708, + "bounds": { + "minlat": 40.7084171, + "minlon": -73.9592632, + "maxlat": 40.7088858, + "maxlon": -73.9578957 + }, + "nodes": [ + 42482433, + 9768167545, + 11155188000, + 9779538357, + 42480086 + ], + "geometry": [ + { "lat": 40.7084171, "lon": -73.9578957 }, + { "lat": 40.7084503, "lon": -73.9579925 }, + { "lat": 40.7085682, "lon": -73.9583364 }, + { "lat": 40.7088571, "lon": -73.9591794 }, + { "lat": 40.7088858, "lon": -73.9592632 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 220464711, + "bounds": { + "minlat": 40.7086740, + "minlon": -73.9563050, + "maxlat": 40.7105360, + "maxlon": -73.9551195 + }, + "nodes": [ + 42514949, + 9768167592, + 11155188002, + 9768177543, + 42520715, + 9768177545, + 9755372019, + 42474150, + 9755372018, + 11155188004, + 8842929732, + 4593135560 + ], + "geometry": [ + { "lat": 40.7086740, "lon": -73.9563050 }, + { "lat": 40.7087270, "lon": -73.9562707 }, + { "lat": 40.7089146, "lon": -73.9561502 }, + { "lat": 40.7092737, "lon": -73.9559196 }, + { "lat": 40.7093500, "lon": -73.9558706 }, + { "lat": 40.7094026, "lon": -73.9558373 }, + { "lat": 40.7098945, "lon": -73.9555263 }, + { "lat": 40.7099521, "lon": -73.9554897 }, + { "lat": 40.7100079, "lon": -73.9554542 }, + { "lat": 40.7102059, "lon": -73.9553287 }, + { "lat": 40.7104543, "lon": -73.9551712 }, + { "lat": 40.7105360, "lon": -73.9551195 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 220464714, + "bounds": { + "minlat": 40.7072602, + "minlon": -73.9584546, + "maxlat": 40.7084171, + "maxlon": -73.9578957 + }, + "nodes": [ + 42482433, + 2782255503, + 6867303246, + 42474674, + 42482438, + 6235394763, + 42478008 + ], + "geometry": [ + { "lat": 40.7084171, "lon": -73.9578957 }, + { "lat": 40.7083158, "lon": -73.9579616 }, + { "lat": 40.7081434, "lon": -73.9580809 }, + { "lat": 40.7080410, "lon": -73.9581520 }, + { "lat": 40.7076760, "lon": -73.9583850 }, + { "lat": 40.7073428, "lon": -73.9584408 }, + { "lat": 40.7072602, "lon": -73.9584546 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 220464723, + "bounds": { + "minlat": 40.7054366, + "minlon": -73.9540209, + "maxlat": 40.7070866, + "maxlon": -73.9502183 + }, + "nodes": [ + 42491450, + 9779533084, + 13685735396, + 9755373412, + 42490968, + 9755373411, + 9755373424, + 42490941, + 9755373425, + 42505412, + 9755373421, + 42482048, + 9755373422, + 5849451134, + 13685735397, + 9755354501, + 42505415, + 9755354500, + 6291247293, + 13685892617, + 9755373382, + 42477588 + ], + "geometry": [ + { "lat": 40.7070866, "lon": -73.9540209 }, + { "lat": 40.7070651, "lon": -73.9539576 }, + { "lat": 40.7070501, "lon": -73.9539134 }, + { "lat": 40.7067519, "lon": -73.9530371 }, + { "lat": 40.7067090, "lon": -73.9529118 }, + { "lat": 40.7066879, "lon": -73.9528502 }, + { "lat": 40.7065960, "lon": -73.9525822 }, + { "lat": 40.7065692, "lon": -73.9525041 }, + { "lat": 40.7065459, "lon": -73.9524394 }, + { "lat": 40.7064920, "lon": -73.9522895 }, + { "lat": 40.7063800, "lon": -73.9520025 }, + { "lat": 40.7063412, "lon": -73.9519043 }, + { "lat": 40.7062999, "lon": -73.9517984 }, + { "lat": 40.7062608, "lon": -73.9517059 }, + { "lat": 40.7062277, "lon": -73.9516448 }, + { "lat": 40.7059720, "lon": -73.9511730 }, + { "lat": 40.7059187, "lon": -73.9510745 }, + { "lat": 40.7058831, "lon": -73.9510166 }, + { "lat": 40.7057996, "lon": -73.9508632 }, + { "lat": 40.7055565, "lon": -73.9504329 }, + { "lat": 40.7055350, "lon": -73.9503949 }, + { "lat": 40.7054366, "lon": -73.9502183 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 220504333, + "bounds": { + "minlat": 40.7500820, + "minlon": -73.9388549, + "maxlat": 40.7501525, + "maxlon": -73.9386862 + }, + "nodes": [ + 4457118209, + 592643539, + 6813394098 + ], + "geometry": [ + { "lat": 40.7500820, "lon": -73.9386862 }, + { "lat": 40.7501172, "lon": -73.9387697 }, + { "lat": 40.7501525, "lon": -73.9388549 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "name": "Queensboro Plaza", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 220536846, + "bounds": { + "minlat": 40.7851330, + "minlon": -73.9693444, + "maxlat": 40.7852965, + "maxlon": -73.9688086 + }, + "nodes": [ + 2059304029, + 2059304030, + 2059304031, + 9906895079, + 2059304032, + 12099277785, + 7106818626 + ], + "geometry": [ + { "lat": 40.7851330, "lon": -73.9688086 }, + { "lat": 40.7851643, "lon": -73.9688947 }, + { "lat": 40.7852100, "lon": -73.9690177 }, + { "lat": 40.7852470, "lon": -73.9691079 }, + { "lat": 40.7852777, "lon": -73.9691796 }, + { "lat": 40.7852902, "lon": -73.9692103 }, + { "lat": 40.7852965, "lon": -73.9693444 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "change": "no", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "maxheight": "10'5\"", + "maxspeed": "25 mph", + "name": "86th Street Transverse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|right", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 220544055, + "bounds": { + "minlat": 40.7806903, + "minlon": -73.9716576, + "maxlat": 40.7809988, + "maxlon": -73.9715943 + }, + "nodes": [ + 6946139598, + 6946139591, + 1989096604, + 6946139607, + 9906879210, + 1946814074 + ], + "geometry": [ + { "lat": 40.7806903, "lon": -73.9716576 }, + { "lat": 40.7807484, "lon": -73.9716553 }, + { "lat": 40.7808070, "lon": -73.9716509 }, + { "lat": 40.7808610, "lon": -73.9716388 }, + { "lat": 40.7809275, "lon": -73.9716199 }, + { "lat": 40.7809988, "lon": -73.9715943 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "foot": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 220620317, + "bounds": { + "minlat": 40.7434136, + "minlon": -73.9596265, + "maxlat": 40.7437507, + "maxlon": -73.9593576 + }, + "nodes": [ + 6633383602, + 9982771545, + 6644096961, + 9982771546, + 9982771547, + 9982771548, + 2297172738, + 9982771549 + ], + "geometry": [ + { "lat": 40.7437507, "lon": -73.9593576 }, + { "lat": 40.7437209, "lon": -73.9593888 }, + { "lat": 40.7436883, "lon": -73.9594164 }, + { "lat": 40.7436558, "lon": -73.9594487 }, + { "lat": 40.7436078, "lon": -73.9594922 }, + { "lat": 40.7435471, "lon": -73.9595377 }, + { "lat": 40.7434831, "lon": -73.9595816 }, + { "lat": 40.7434136, "lon": -73.9596265 } + ], + "tags": { + "direction": "forward", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 220620319, + "bounds": { + "minlat": 40.7428732, + "minlon": -73.9593469, + "maxlat": 40.7429975, + "maxlon": -73.9586943 + }, + "nodes": [ + 42836082, + 8250918930, + 9625666918 + ], + "geometry": [ + { "lat": 40.7428732, "lon": -73.9586943 }, + { "lat": 40.7428907, "lon": -73.9587879 }, + { "lat": 40.7429975, "lon": -73.9593469 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "51st Avenue", + "oneway": "yes", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 220642948, + "bounds": { + "minlat": 40.7704322, + "minlon": -73.9247803, + "maxlat": 40.7713537, + "maxlon": -73.9236279 + }, + "nodes": [ + 42900309, + 6452985337, + 7762310900, + 6452895168, + 42818490 + ], + "geometry": [ + { "lat": 40.7713537, "lon": -73.9247803 }, + { "lat": 40.7713097, "lon": -73.9247258 }, + { "lat": 40.7708863, "lon": -73.9241621 }, + { "lat": 40.7704972, "lon": -73.9236963 }, + { "lat": 40.7704322, "lon": -73.9236279 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Newtown Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 220642951, + "bounds": { + "minlat": 40.7717752, + "minlon": -73.9253910, + "maxlat": 40.7720224, + "maxlon": -73.9253360 + }, + "nodes": [ + 2297358949, + 5347736589, + 9947247607, + 2297358952 + ], + "geometry": [ + { "lat": 40.7717752, "lon": -73.9253360 }, + { "lat": 40.7719537, "lon": -73.9253910 }, + { "lat": 40.7719630, "lon": -73.9253872 }, + { "lat": 40.7720224, "lon": -73.9253631 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 220642952, + "bounds": { + "minlat": 40.7676626, + "minlon": -73.9212431, + "maxlat": 40.7683852, + "maxlon": -73.9207885 + }, + "nodes": [ + 42849719, + 2457398769, + 5159990129, + 42900319 + ], + "geometry": [ + { "lat": 40.7676626, "lon": -73.9207885 }, + { "lat": 40.7677761, "lon": -73.9208634 }, + { "lat": 40.7683199, "lon": -73.9212143 }, + { "lat": 40.7683852, "lon": -73.9212431 } + ], + "tags": { + "highway": "residential", + "maxheight": "12'6\"", + "maxspeed": "20 mph", + "name": "Newtown Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 220642954, + "bounds": { + "minlat": 40.7672998, + "minlon": -73.9222410, + "maxlat": 40.7683852, + "maxlon": -73.9212431 + }, + "nodes": [ + 42900319, + 6406731554, + 2297358940, + 42874050 + ], + "geometry": [ + { "lat": 40.7683852, "lon": -73.9212431 }, + { "lat": 40.7683398, "lon": -73.9213162 }, + { "lat": 40.7674004, "lon": -73.9222305 }, + { "lat": 40.7672998, "lon": -73.9222410 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "30th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 220642955, + "bounds": { + "minlat": 40.7683852, + "minlon": -73.9221663, + "maxlat": 40.7691837, + "maxlon": -73.9212431 + }, + "nodes": [ + 42900319, + 5159990128, + 6453012677, + 42833248 + ], + "geometry": [ + { "lat": 40.7683852, "lon": -73.9212431 }, + { "lat": 40.7684416, "lon": -73.9212768 }, + { "lat": 40.7691433, "lon": -73.9221119 }, + { "lat": 40.7691837, "lon": -73.9221663 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Newtown Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 220792579, + "bounds": { + "minlat": 40.7828305, + "minlon": -73.9354941, + "maxlat": 40.7849334, + "maxlon": -73.9314841 + }, + "nodes": [ + 3037153849, + 2298803362, + 2298803381, + 9156860621, + 2298803575, + 2298803383, + 2298803574, + 2298803385, + 9156860620, + 2298803387, + 9156860619, + 2298803389, + 9156860618, + 2298803392, + 2298803394, + 2298803564, + 2298803396, + 2298803398, + 2298803563, + 3037153873, + 2298803561, + 2298803400, + 9156860617, + 2298803560, + 2298803402, + 9156860616, + 2298803404, + 9156860615, + 2298803520, + 2298803406, + 2298803519, + 2298803524, + 2298803411, + 2298803523, + 2298803413, + 2298803528, + 2298803415, + 2298803417, + 2298803527, + 2298803420, + 9156860614, + 2298803422, + 2298803531, + 9156860613, + 2298803424, + 9156860612, + 2298803426 + ], + "geometry": [ + { "lat": 40.7849334, "lon": -73.9351368 }, + { "lat": 40.7849194, "lon": -73.9351563 }, + { "lat": 40.7848626, "lon": -73.9352383 }, + { "lat": 40.7848074, "lon": -73.9353046 }, + { "lat": 40.7847520, "lon": -73.9353649 }, + { "lat": 40.7846909, "lon": -73.9354109 }, + { "lat": 40.7846300, "lon": -73.9354472 }, + { "lat": 40.7845674, "lon": -73.9354748 }, + { "lat": 40.7845052, "lon": -73.9354877 }, + { "lat": 40.7844371, "lon": -73.9354941 }, + { "lat": 40.7843628, "lon": -73.9354867 }, + { "lat": 40.7842691, "lon": -73.9354584 }, + { "lat": 40.7842024, "lon": -73.9354256 }, + { "lat": 40.7841195, "lon": -73.9353723 }, + { "lat": 40.7840329, "lon": -73.9353068 }, + { "lat": 40.7839439, "lon": -73.9352298 }, + { "lat": 40.7838735, "lon": -73.9351587 }, + { "lat": 40.7837813, "lon": -73.9350451 }, + { "lat": 40.7837116, "lon": -73.9349484 }, + { "lat": 40.7836817, "lon": -73.9349023 }, + { "lat": 40.7836593, "lon": -73.9348643 }, + { "lat": 40.7836279, "lon": -73.9348020 }, + { "lat": 40.7835825, "lon": -73.9346931 }, + { "lat": 40.7835406, "lon": -73.9345818 }, + { "lat": 40.7835092, "lon": -73.9344741 }, + { "lat": 40.7834749, "lon": -73.9343438 }, + { "lat": 40.7834384, "lon": -73.9341955 }, + { "lat": 40.7834025, "lon": -73.9340847 }, + { "lat": 40.7833567, "lon": -73.9339546 }, + { "lat": 40.7833106, "lon": -73.9338468 }, + { "lat": 40.7832417, "lon": -73.9337028 }, + { "lat": 40.7831434, "lon": -73.9335202 }, + { "lat": 40.7830948, "lon": -73.9334101 }, + { "lat": 40.7830245, "lon": -73.9332485 }, + { "lat": 40.7829694, "lon": -73.9330860 }, + { "lat": 40.7829260, "lon": -73.9329344 }, + { "lat": 40.7828988, "lon": -73.9328288 }, + { "lat": 40.7828702, "lon": -73.9326629 }, + { "lat": 40.7828508, "lon": -73.9325362 }, + { "lat": 40.7828337, "lon": -73.9323384 }, + { "lat": 40.7828305, "lon": -73.9322029 }, + { "lat": 40.7828312, "lon": -73.9320425 }, + { "lat": 40.7828370, "lon": -73.9319186 }, + { "lat": 40.7828503, "lon": -73.9317875 }, + { "lat": 40.7828769, "lon": -73.9316563 }, + { "lat": 40.7829027, "lon": -73.9315709 }, + { "lat": 40.7829311, "lon": -73.9314841 } + ], + "tags": { + "highway": "unclassified", + "lane_markings": "no", + "name": "East River Lane", + "oneway": "no", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 220792580, + "bounds": { + "minlat": 40.7829307, + "minlon": -73.9310463, + "maxlat": 40.7846016, + "maxlon": -73.9266152 + }, + "nodes": [ + 2298803471, + 2298803501, + 9156860585, + 9156860586, + 2298803499, + 9156860587, + 2298803498, + 9156860588, + 2298803497, + 9156860589, + 9156860590, + 2298803496, + 9156860591, + 9156860592, + 2298803495, + 9156860593, + 2298803493, + 9156860594, + 9156860595, + 2298803492, + 9156860596, + 2298803491, + 9156860597, + 2298803490, + 9156860598, + 2298803489, + 9156860599, + 2298803488, + 2298803487, + 2298803486, + 2298803485, + 9156860600, + 9156860601, + 2298803484, + 9156860602, + 9156860603, + 2298803483, + 9156860604, + 2298803482, + 9156860605, + 2298803481, + 2298803480, + 2298803479, + 9156860606, + 2298803513, + 9156860607, + 2298803478, + 2298803514, + 2298803428 + ], + "geometry": [ + { "lat": 40.7841865, "lon": -73.9266152 }, + { "lat": 40.7842406, "lon": -73.9270236 }, + { "lat": 40.7842584, "lon": -73.9271369 }, + { "lat": 40.7842800, "lon": -73.9272419 }, + { "lat": 40.7843039, "lon": -73.9273450 }, + { "lat": 40.7843408, "lon": -73.9274669 }, + { "lat": 40.7843721, "lon": -73.9275557 }, + { "lat": 40.7844282, "lon": -73.9276912 }, + { "lat": 40.7844771, "lon": -73.9278068 }, + { "lat": 40.7845180, "lon": -73.9279101 }, + { "lat": 40.7845494, "lon": -73.9280149 }, + { "lat": 40.7845694, "lon": -73.9280990 }, + { "lat": 40.7845886, "lon": -73.9282140 }, + { "lat": 40.7845966, "lon": -73.9283169 }, + { "lat": 40.7846016, "lon": -73.9284021 }, + { "lat": 40.7845994, "lon": -73.9285240 }, + { "lat": 40.7845887, "lon": -73.9288137 }, + { "lat": 40.7845760, "lon": -73.9289202 }, + { "lat": 40.7845565, "lon": -73.9290207 }, + { "lat": 40.7845333, "lon": -73.9291033 }, + { "lat": 40.7844884, "lon": -73.9292003 }, + { "lat": 40.7844377, "lon": -73.9292810 }, + { "lat": 40.7843861, "lon": -73.9293582 }, + { "lat": 40.7843343, "lon": -73.9294299 }, + { "lat": 40.7842907, "lon": -73.9295087 }, + { "lat": 40.7842612, "lon": -73.9295788 }, + { "lat": 40.7842346, "lon": -73.9296721 }, + { "lat": 40.7842114, "lon": -73.9297893 }, + { "lat": 40.7841534, "lon": -73.9301241 }, + { "lat": 40.7840990, "lon": -73.9304426 }, + { "lat": 40.7840876, "lon": -73.9305015 }, + { "lat": 40.7840667, "lon": -73.9305765 }, + { "lat": 40.7840365, "lon": -73.9306531 }, + { "lat": 40.7840049, "lon": -73.9307126 }, + { "lat": 40.7839622, "lon": -73.9307700 }, + { "lat": 40.7839178, "lon": -73.9308186 }, + { "lat": 40.7838803, "lon": -73.9308518 }, + { "lat": 40.7838255, "lon": -73.9308832 }, + { "lat": 40.7837748, "lon": -73.9309079 }, + { "lat": 40.7837086, "lon": -73.9309306 }, + { "lat": 40.7836322, "lon": -73.9309599 }, + { "lat": 40.7834559, "lon": -73.9310205 }, + { "lat": 40.7833574, "lon": -73.9310461 }, + { "lat": 40.7832926, "lon": -73.9310463 }, + { "lat": 40.7832308, "lon": -73.9310405 }, + { "lat": 40.7831688, "lon": -73.9310241 }, + { "lat": 40.7831038, "lon": -73.9310008 }, + { "lat": 40.7830305, "lon": -73.9309600 }, + { "lat": 40.7829307, "lon": -73.9308953 } + ], + "tags": { + "highway": "unclassified", + "lane_markings": "no", + "name": "Wards Meadow Loop", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 220792581, + "bounds": { + "minlat": 40.7844909, + "minlon": -73.9268537, + "maxlat": 40.7845688, + "maxlon": -73.9268059 + }, + "nodes": [ + 1242159743, + 2298803502 + ], + "geometry": [ + { "lat": 40.7845688, "lon": -73.9268537 }, + { "lat": 40.7844909, "lon": -73.9268059 } + ], + "tags": { + "highway": "unclassified", + "name": "Wards Meadow Loop", + "name:etymology:wikidata": "Q838755" + } +}, +{ + "type": "way", + "id": 220792582, + "bounds": { + "minlat": 40.7842406, + "minlon": -73.9270236, + "maxlat": 40.7844909, + "maxlon": -73.9267997 + }, + "nodes": [ + 2298803502, + 9156860662, + 9156860661, + 7738506170, + 9156860660, + 7738506169, + 9156860659, + 7738506171, + 2298803501 + ], + "geometry": [ + { "lat": 40.7844909, "lon": -73.9268059 }, + { "lat": 40.7844085, "lon": -73.9267997 }, + { "lat": 40.7843790, "lon": -73.9268031 }, + { "lat": 40.7843509, "lon": -73.9268080 }, + { "lat": 40.7843261, "lon": -73.9268263 }, + { "lat": 40.7843028, "lon": -73.9268556 }, + { "lat": 40.7842836, "lon": -73.9268954 }, + { "lat": 40.7842637, "lon": -73.9269472 }, + { "lat": 40.7842406, "lon": -73.9270236 } + ], + "tags": { + "highway": "unclassified", + "name": "Wards Meadow Loop", + "name:etymology:wikidata": "Q838755", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 220792583, + "bounds": { + "minlat": 40.7841865, + "minlon": -73.9268059, + "maxlat": 40.7844909, + "maxlon": -73.9266152 + }, + "nodes": [ + 2298803471, + 9156860658, + 9156860663, + 2298803502 + ], + "geometry": [ + { "lat": 40.7841865, "lon": -73.9266152 }, + { "lat": 40.7842632, "lon": -73.9266644 }, + { "lat": 40.7844204, "lon": -73.9267470 }, + { "lat": 40.7844909, "lon": -73.9268059 } + ], + "tags": { + "highway": "unclassified", + "name": "Wards Meadow Loop", + "name:etymology:wikidata": "Q838755", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 220792584, + "bounds": { + "minlat": 40.7829311, + "minlon": -73.9314841, + "maxlat": 40.7833574, + "maxlon": -73.9310461 + }, + "nodes": [ + 2298803479, + 2298803509, + 2298803512, + 2298803510, + 2298803511, + 2298803426 + ], + "geometry": [ + { "lat": 40.7833574, "lon": -73.9310461 }, + { "lat": 40.7832020, "lon": -73.9311539 }, + { "lat": 40.7831451, "lon": -73.9312036 }, + { "lat": 40.7830893, "lon": -73.9312666 }, + { "lat": 40.7830111, "lon": -73.9313725 }, + { "lat": 40.7829311, "lon": -73.9314841 } + ], + "tags": { + "highway": "unclassified", + "lane_markings": "no", + "name": "East River Lane", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 220792585, + "bounds": { + "minlat": 40.7829307, + "minlon": -73.9314841, + "maxlat": 40.7829813, + "maxlon": -73.9308953 + }, + "nodes": [ + 2298803426, + 9156860611, + 2298803507, + 9156860610, + 2298803477, + 9156860609, + 2298803508, + 9156860608, + 2298803428 + ], + "geometry": [ + { "lat": 40.7829311, "lon": -73.9314841 }, + { "lat": 40.7829529, "lon": -73.9313934 }, + { "lat": 40.7829735, "lon": -73.9313087 }, + { "lat": 40.7829813, "lon": -73.9312427 }, + { "lat": 40.7829808, "lon": -73.9311681 }, + { "lat": 40.7829754, "lon": -73.9310998 }, + { "lat": 40.7829644, "lon": -73.9310301 }, + { "lat": 40.7829476, "lon": -73.9309651 }, + { "lat": 40.7829307, "lon": -73.9308953 } + ], + "tags": { + "highway": "unclassified", + "lane_markings": "no", + "name": "East River Lane", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 220953327, + "bounds": { + "minlat": 40.7789925, + "minlon": -73.9138364, + "maxlat": 40.7793520, + "maxlon": -73.9129668 + }, + "nodes": [ + 2300199424, + 2300199425, + 2300199426 + ], + "geometry": [ + { "lat": 40.7789925, "lon": -73.9138364 }, + { "lat": 40.7793520, "lon": -73.9134140 }, + { "lat": 40.7790548, "lon": -73.9129668 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 220953328, + "bounds": { + "minlat": 40.7793520, + "minlon": -73.9135957, + "maxlat": 40.7794704, + "maxlon": -73.9134140 + }, + "nodes": [ + 2300199427, + 9776150523, + 2300199425 + ], + "geometry": [ + { "lat": 40.7794704, "lon": -73.9135957 }, + { "lat": 40.7794361, "lon": -73.9135431 }, + { "lat": 40.7793520, "lon": -73.9134140 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 220953329, + "bounds": { + "minlat": 40.7800247, + "minlon": -73.9123082, + "maxlat": 40.7803508, + "maxlon": -73.9116188 + }, + "nodes": [ + 2300199429, + 2300199430, + 9776150526, + 2300199431 + ], + "geometry": [ + { "lat": 40.7803508, "lon": -73.9123082 }, + { "lat": 40.7800247, "lon": -73.9118346 }, + { "lat": 40.7801385, "lon": -73.9116862 }, + { "lat": 40.7801902, "lon": -73.9116188 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 220953330, + "bounds": { + "minlat": 40.7795449, + "minlon": -73.9132080, + "maxlat": 40.7801353, + "maxlon": -73.9124466 + }, + "nodes": [ + 2300199442, + 9776150525, + 2300199441, + 2300199440, + 2300199439, + 2300199438, + 2633057556, + 2300199437, + 2300199444, + 2300199436, + 2300199435, + 2300199434, + 2300199433, + 9776150524, + 2300199432 + ], + "geometry": [ + { "lat": 40.7801353, "lon": -73.9127986 }, + { "lat": 40.7801075, "lon": -73.9127532 }, + { "lat": 40.7800797, "lon": -73.9127079 }, + { "lat": 40.7799103, "lon": -73.9124896 }, + { "lat": 40.7798296, "lon": -73.9124504 }, + { "lat": 40.7797248, "lon": -73.9124466 }, + { "lat": 40.7796499, "lon": -73.9124952 }, + { "lat": 40.7796256, "lon": -73.9125121 }, + { "lat": 40.7796001, "lon": -73.9125649 }, + { "lat": 40.7795676, "lon": -73.9126281 }, + { "lat": 40.7795449, "lon": -73.9127646 }, + { "lat": 40.7795690, "lon": -73.9128937 }, + { "lat": 40.7797376, "lon": -73.9131352 }, + { "lat": 40.7797566, "lon": -73.9131622 }, + { "lat": 40.7797888, "lon": -73.9132080 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 220961732, + "bounds": { + "minlat": 40.7786936, + "minlon": -73.9125143, + "maxlat": 40.7790436, + "maxlon": -73.9119845 + }, + "nodes": [ + 2300261719, + 9217081564, + 3132177760, + 9776116516, + 2300261720 + ], + "geometry": [ + { "lat": 40.7790436, "lon": -73.9125143 }, + { "lat": 40.7789028, "lon": -73.9123011 }, + { "lat": 40.7788316, "lon": -73.9121934 }, + { "lat": 40.7787339, "lon": -73.9120456 }, + { "lat": 40.7786936, "lon": -73.9119845 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 220969598, + "bounds": { + "minlat": 40.7827771, + "minlon": -73.9175370, + "maxlat": 40.7837673, + "maxlon": -73.9161139 + }, + "nodes": [ + 2300336200, + 7415981668, + 7787345575, + 2300336201 + ], + "geometry": [ + { "lat": 40.7827771, "lon": -73.9161139 }, + { "lat": 40.7828229, "lon": -73.9161798 }, + { "lat": 40.7837320, "lon": -73.9174862 }, + { "lat": 40.7837673, "lon": -73.9175370 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 221157083, + "bounds": { + "minlat": 40.7394995, + "minlon": -73.9826691, + "maxlat": 40.7407511, + "maxlon": -73.9817646 + }, + "nodes": [ + 42436586, + 4115878742, + 12183286745, + 4115878744, + 4138911201, + 4234425016, + 12183286744, + 4234425051, + 42429896 + ], + "geometry": [ + { "lat": 40.7394995, "lon": -73.9826691 }, + { "lat": 40.7395627, "lon": -73.9826234 }, + { "lat": 40.7400279, "lon": -73.9822872 }, + { "lat": 40.7400660, "lon": -73.9822597 }, + { "lat": 40.7401252, "lon": -73.9822169 }, + { "lat": 40.7401737, "lon": -73.9821819 }, + { "lat": 40.7406472, "lon": -73.9818397 }, + { "lat": 40.7406866, "lon": -73.9818112 }, + { "lat": 40.7407511, "lon": -73.9817646 } + ], + "tags": { + "covered": "no", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "3", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate;lane", + "sidewalk:right": "separate", + "surface": "asphalt", + "toll": "no", + "trolley_wire": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 221189722, + "bounds": { + "minlat": 40.7824448, + "minlon": -73.9155225, + "maxlat": 40.7827158, + "maxlon": -73.9151941 + }, + "nodes": [ + 2302449491, + 7787351828, + 2302449497 + ], + "geometry": [ + { "lat": 40.7824448, "lon": -73.9155225 }, + { "lat": 40.7826583, "lon": -73.9152638 }, + { "lat": 40.7827158, "lon": -73.9151941 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 221189777, + "bounds": { + "minlat": 40.7818145, + "minlon": -73.9163483, + "maxlat": 40.7825852, + "maxlon": -73.9155131 + }, + "nodes": [ + 2302449637, + 7787345533, + 2302449629, + 2302449628, + 2302449625, + 7787345567, + 2302449626 + ], + "geometry": [ + { "lat": 40.7825852, "lon": -73.9163483 }, + { "lat": 40.7825457, "lon": -73.9162949 }, + { "lat": 40.7824059, "lon": -73.9161061 }, + { "lat": 40.7823979, "lon": -73.9160350 }, + { "lat": 40.7820370, "lon": -73.9155131 }, + { "lat": 40.7818591, "lon": -73.9157334 }, + { "lat": 40.7818145, "lon": -73.9157886 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 221189779, + "bounds": { + "minlat": 40.7820366, + "minlon": -73.9153739, + "maxlat": 40.7823546, + "maxlon": -73.9149134 + }, + "nodes": [ + 2302449634, + 8831888544, + 7787351795, + 2302449632 + ], + "geometry": [ + { "lat": 40.7823546, "lon": -73.9153739 }, + { "lat": 40.7821297, "lon": -73.9150502 }, + { "lat": 40.7821096, "lon": -73.9150212 }, + { "lat": 40.7820366, "lon": -73.9149134 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 221189781, + "bounds": { + "minlat": 40.7825852, + "minlon": -73.9178564, + "maxlat": 40.7836566, + "maxlon": -73.9163483 + }, + "nodes": [ + 2302449644, + 7787351809, + 2302449639, + 2302449635, + 7787351855, + 2302449637 + ], + "geometry": [ + { "lat": 40.7836566, "lon": -73.9178564 }, + { "lat": 40.7836116, "lon": -73.9177902 }, + { "lat": 40.7828429, "lon": -73.9166591 }, + { "lat": 40.7827616, "lon": -73.9165948 }, + { "lat": 40.7826281, "lon": -73.9164082 }, + { "lat": 40.7825852, "lon": -73.9163483 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 221189783, + "bounds": { + "minlat": 40.7815451, + "minlon": -73.9150374, + "maxlat": 40.7819340, + "maxlon": -73.9144822 + }, + "nodes": [ + 2302449645, + 7787351805, + 2302449646 + ], + "geometry": [ + { "lat": 40.7815451, "lon": -73.9144822 }, + { "lat": 40.7818704, "lon": -73.9149476 }, + { "lat": 40.7819340, "lon": -73.9150374 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 221192507, + "bounds": { + "minlat": 40.7568750, + "minlon": -73.9443500, + "maxlat": 40.7673348, + "maxlon": -73.9371757 + }, + "nodes": [ + 42906413, + 9915145357, + 7192439083, + 7611008711, + 8084752876, + 2302476363, + 42876747, + 2302476362, + 8334074913, + 6452777344, + 42815755, + 6452777343, + 10774458949, + 8084752890, + 3569402512, + 42909201, + 3569402514, + 8331899357, + 6452542356, + 42909195, + 6452542355, + 8158221227, + 6452525949, + 2402842572, + 6450662157, + 7733783933, + 6450662158, + 42807549, + 12059125049, + 7966122002, + 2459401777, + 9915145356, + 42826801 + ], + "geometry": [ + { "lat": 40.7568750, "lon": -73.9443500 }, + { "lat": 40.7569422, "lon": -73.9442756 }, + { "lat": 40.7576417, "lon": -73.9435256 }, + { "lat": 40.7579196, "lon": -73.9432175 }, + { "lat": 40.7585694, "lon": -73.9424967 }, + { "lat": 40.7585997, "lon": -73.9424648 }, + { "lat": 40.7586830, "lon": -73.9424560 }, + { "lat": 40.7587611, "lon": -73.9424482 }, + { "lat": 40.7587740, "lon": -73.9424398 }, + { "lat": 40.7599929, "lon": -73.9416670 }, + { "lat": 40.7600560, "lon": -73.9416270 }, + { "lat": 40.7601329, "lon": -73.9415791 }, + { "lat": 40.7603503, "lon": -73.9414438 }, + { "lat": 40.7612854, "lon": -73.9408618 }, + { "lat": 40.7613169, "lon": -73.9408422 }, + { "lat": 40.7613932, "lon": -73.9407949 }, + { "lat": 40.7614703, "lon": -73.9407468 }, + { "lat": 40.7630322, "lon": -73.9397776 }, + { "lat": 40.7630519, "lon": -73.9397654 }, + { "lat": 40.7631300, "lon": -73.9397170 }, + { "lat": 40.7632105, "lon": -73.9396670 }, + { "lat": 40.7648088, "lon": -73.9386729 }, + { "lat": 40.7648480, "lon": -73.9386484 }, + { "lat": 40.7649210, "lon": -73.9386030 }, + { "lat": 40.7649991, "lon": -73.9385543 }, + { "lat": 40.7663881, "lon": -73.9376892 }, + { "lat": 40.7664232, "lon": -73.9376673 }, + { "lat": 40.7664750, "lon": -73.9376350 }, + { "lat": 40.7665321, "lon": -73.9376008 }, + { "lat": 40.7671995, "lon": -73.9372010 }, + { "lat": 40.7672379, "lon": -73.9371866 }, + { "lat": 40.7672665, "lon": -73.9371794 }, + { "lat": 40.7673348, "lon": -73.9371757 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "10th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221192512, + "bounds": { + "minlat": 40.7552340, + "minlon": -73.9443500, + "maxlat": 40.7568750, + "maxlon": -73.9412390 + }, + "nodes": [ + 42906413, + 8334173132, + 13140347658, + 8334074893, + 42867040, + 8334076724, + 6818388764, + 42906419, + 6818388765, + 42889760, + 6818711850, + 7762369889, + 42825879 + ], + "geometry": [ + { "lat": 40.7568750, "lon": -73.9443500 }, + { "lat": 40.7568369, "lon": -73.9442814 }, + { "lat": 40.7568198, "lon": -73.9442497 }, + { "lat": 40.7564913, "lon": -73.9436402 }, + { "lat": 40.7564410, "lon": -73.9435470 }, + { "lat": 40.7563866, "lon": -73.9434437 }, + { "lat": 40.7560968, "lon": -73.9428938 }, + { "lat": 40.7560590, "lon": -73.9428220 }, + { "lat": 40.7560259, "lon": -73.9427597 }, + { "lat": 40.7556490, "lon": -73.9420500 }, + { "lat": 40.7556158, "lon": -73.9419855 }, + { "lat": 40.7553019, "lon": -73.9413717 }, + { "lat": 40.7552340, "lon": -73.9412390 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "40th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "40th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 221192519, + "bounds": { + "minlat": 40.7603551, + "minlon": -73.9424748, + "maxlat": 40.7619852, + "maxlon": -73.9379036 + }, + "nodes": [ + 3785702957, + 6452697940, + 3569402517, + 42890450, + 3569402516, + 3569402513, + 42909201, + 6452697930, + 3569402509, + 42867029, + 3569402508, + 3569402498, + 42926489, + 3569402494, + 6452688268, + 42889756, + 6452688264, + 3569402179 + ], + "geometry": [ + { "lat": 40.7619852, "lon": -73.9424748 }, + { "lat": 40.7619619, "lon": -73.9423749 }, + { "lat": 40.7617151, "lon": -73.9416822 }, + { "lat": 40.7616908, "lon": -73.9416136 }, + { "lat": 40.7616677, "lon": -73.9415516 }, + { "lat": 40.7614237, "lon": -73.9408758 }, + { "lat": 40.7613932, "lon": -73.9407949 }, + { "lat": 40.7613717, "lon": -73.9407347 }, + { "lat": 40.7611363, "lon": -73.9400818 }, + { "lat": 40.7611000, "lon": -73.9399800 }, + { "lat": 40.7610708, "lon": -73.9398981 }, + { "lat": 40.7608385, "lon": -73.9392403 }, + { "lat": 40.7608095, "lon": -73.9391559 }, + { "lat": 40.7607759, "lon": -73.9390493 }, + { "lat": 40.7605455, "lon": -73.9384223 }, + { "lat": 40.7605170, "lon": -73.9383420 }, + { "lat": 40.7604965, "lon": -73.9382828 }, + { "lat": 40.7603551, "lon": -73.9379036 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "36th Avenue", + "sidewalk:left": "separate", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 221192760, + "bounds": { + "minlat": 40.7668152, + "minlon": -73.9402744, + "maxlat": 40.7674167, + "maxlon": -73.9386192 + }, + "nodes": [ + 2302477719, + 13701347726, + 2355624862, + 4573599938 + ], + "geometry": [ + { "lat": 40.7674167, "lon": -73.9402744 }, + { "lat": 40.7668784, "lon": -73.9387604 }, + { "lat": 40.7668629, "lon": -73.9387169 }, + { "lat": 40.7668152, "lon": -73.9386192 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221193002, + "bounds": { + "minlat": 40.7656419, + "minlon": -73.9332712, + "maxlat": 40.7667310, + "maxlon": -73.9312988 + }, + "nodes": [ + 2302479501, + 6456419948, + 10780125947, + 7748157092, + 7746705667 + ], + "geometry": [ + { "lat": 40.7667310, "lon": -73.9332712 }, + { "lat": 40.7666806, "lon": -73.9331801 }, + { "lat": 40.7657251, "lon": -73.9314505 }, + { "lat": 40.7657048, "lon": -73.9314137 }, + { "lat": 40.7656419, "lon": -73.9312988 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 221577883, + "bounds": { + "minlat": 40.7010490, + "minlon": -73.9106813, + "maxlat": 40.7075510, + "maxlon": -73.9040330 + }, + "nodes": [ + 42851925, + 9763022057, + 11107097266, + 11107097264, + 10686537732, + 9763022296, + 42806596, + 9763022298, + 11107097262, + 11107097260, + 10686537742, + 9763022482, + 42809969, + 9763022484, + 10686537743, + 11107097258, + 11107097257, + 10686537748, + 9762206443, + 42827631, + 9762206445, + 10686537746, + 11107097256, + 11107097255, + 9762206566, + 42934477, + 9762206564, + 11107097253, + 8281025693, + 11107097252, + 11107097250, + 9761722194, + 42907497, + 9761722196, + 8281025687, + 11107097249, + 9668690921, + 3325564445 + ], + "geometry": [ + { "lat": 40.7075510, "lon": -73.9040330 }, + { "lat": 40.7075050, "lon": -73.9040803 }, + { "lat": 40.7073369, "lon": -73.9042555 }, + { "lat": 40.7066107, "lon": -73.9050125 }, + { "lat": 40.7064566, "lon": -73.9051731 }, + { "lat": 40.7064202, "lon": -73.9052104 }, + { "lat": 40.7063679, "lon": -73.9052641 }, + { "lat": 40.7063214, "lon": -73.9053118 }, + { "lat": 40.7061367, "lon": -73.9054996 }, + { "lat": 40.7055295, "lon": -73.9061174 }, + { "lat": 40.7053852, "lon": -73.9062642 }, + { "lat": 40.7053392, "lon": -73.9063105 }, + { "lat": 40.7052912, "lon": -73.9063601 }, + { "lat": 40.7052421, "lon": -73.9064103 }, + { "lat": 40.7052184, "lon": -73.9064346 }, + { "lat": 40.7050890, "lon": -73.9065651 }, + { "lat": 40.7043183, "lon": -73.9073421 }, + { "lat": 40.7042381, "lon": -73.9074230 }, + { "lat": 40.7042109, "lon": -73.9074508 }, + { "lat": 40.7041560, "lon": -73.9075070 }, + { "lat": 40.7041060, "lon": -73.9075580 }, + { "lat": 40.7040809, "lon": -73.9075837 }, + { "lat": 40.7039840, "lon": -73.9076827 }, + { "lat": 40.7034466, "lon": -73.9082313 }, + { "lat": 40.7033120, "lon": -73.9083687 }, + { "lat": 40.7032500, "lon": -73.9084320 }, + { "lat": 40.7031897, "lon": -73.9084937 }, + { "lat": 40.7030388, "lon": -73.9086483 }, + { "lat": 40.7029269, "lon": -73.9087629 }, + { "lat": 40.7023220, "lon": -73.9093823 }, + { "lat": 40.7022438, "lon": -73.9094624 }, + { "lat": 40.7021827, "lon": -73.9095250 }, + { "lat": 40.7021186, "lon": -73.9095906 }, + { "lat": 40.7020681, "lon": -73.9096421 }, + { "lat": 40.7013385, "lon": -73.9103861 }, + { "lat": 40.7011290, "lon": -73.9105997 }, + { "lat": 40.7011050, "lon": -73.9106242 }, + { "lat": 40.7010490, "lon": -73.9106813 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "Gates Avenue", + "name:etymology:wikidata": "Q365124", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221577885, + "bounds": { + "minlat": 40.7028076, + "minlon": -73.9076849, + "maxlat": 40.7093500, + "maxlon": -73.8942400 + }, + "nodes": [ + 42870698, + 9762206579, + 2306110891, + 8588552921, + 9762206426, + 42827635, + 9763022530, + 8588167439, + 9763022497, + 42809970, + 9763022315, + 8588167434, + 9763022312, + 42806597, + 9763022006, + 9763022012, + 42851933, + 9763022014, + 3368573293, + 9765879809, + 42862044, + 9765879791, + 9758056532, + 42807109, + 9758056524, + 11034249604, + 42870713, + 11034249603, + 7963511641, + 9765879767, + 42821744 + ], + "geometry": [ + { "lat": 40.7028076, "lon": -73.9076849 }, + { "lat": 40.7028673, "lon": -73.9076242 }, + { "lat": 40.7034175, "lon": -73.9070647 }, + { "lat": 40.7036167, "lon": -73.9068607 }, + { "lat": 40.7036677, "lon": -73.9068085 }, + { "lat": 40.7037140, "lon": -73.9067610 }, + { "lat": 40.7037716, "lon": -73.9067026 }, + { "lat": 40.7047671, "lon": -73.9056921 }, + { "lat": 40.7048022, "lon": -73.9056565 }, + { "lat": 40.7048490, "lon": -73.9056090 }, + { "lat": 40.7048996, "lon": -73.9055574 }, + { "lat": 40.7058419, "lon": -73.9045992 }, + { "lat": 40.7058763, "lon": -73.9045616 }, + { "lat": 40.7059230, "lon": -73.9045140 }, + { "lat": 40.7059757, "lon": -73.9044592 }, + { "lat": 40.7070736, "lon": -73.9033458 }, + { "lat": 40.7071356, "lon": -73.9032530 }, + { "lat": 40.7071749, "lon": -73.9031574 }, + { "lat": 40.7071940, "lon": -73.9031139 }, + { "lat": 40.7076502, "lon": -73.9011334 }, + { "lat": 40.7076680, "lon": -73.9010510 }, + { "lat": 40.7076872, "lon": -73.9009710 }, + { "lat": 40.7083748, "lon": -73.8981124 }, + { "lat": 40.7084010, "lon": -73.8980030 }, + { "lat": 40.7084292, "lon": -73.8978940 }, + { "lat": 40.7089222, "lon": -73.8959510 }, + { "lat": 40.7089430, "lon": -73.8958690 }, + { "lat": 40.7089616, "lon": -73.8957947 }, + { "lat": 40.7093083, "lon": -73.8944070 }, + { "lat": 40.7093254, "lon": -73.8943385 }, + { "lat": 40.7093500, "lon": -73.8942400 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Palmetto Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221577886, + "bounds": { + "minlat": 40.6999312, + "minlon": -73.9118119, + "maxlat": 40.7010490, + "maxlon": -73.9106813 + }, + "nodes": [ + 3325564445, + 9668690920, + 5482373243, + 7717125047, + 5482373247, + 5482368595, + 11107097248, + 11107097244, + 11107097246, + 9668548816, + 3325564444 + ], + "geometry": [ + { "lat": 40.7010490, "lon": -73.9106813 }, + { "lat": 40.7009945, "lon": -73.9107364 }, + { "lat": 40.7006430, "lon": -73.9110919 }, + { "lat": 40.7004238, "lon": -73.9113137 }, + { "lat": 40.7003567, "lon": -73.9113815 }, + { "lat": 40.7002889, "lon": -73.9114501 }, + { "lat": 40.7002521, "lon": -73.9114873 }, + { "lat": 40.7001370, "lon": -73.9116037 }, + { "lat": 40.7001224, "lon": -73.9116186 }, + { "lat": 40.6999960, "lon": -73.9117464 }, + { "lat": 40.6999312, "lon": -73.9118119 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Gates Avenue", + "name:etymology:wikidata": "Q365124", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY; Queens, NY", + "tiger:name_base": "Gates", + "tiger:name_type": "Ave", + "tiger:zip_left": "11237; 11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 221577891, + "bounds": { + "minlat": 40.7034175, + "minlon": -73.9070647, + "maxlat": 40.7035890, + "maxlon": -73.9065503 + }, + "nodes": [ + 2306110891, + 3017396668, + 3017396672, + 2306110886, + 3017396678, + 3017396681, + 9762206427, + 2306110889 + ], + "geometry": [ + { "lat": 40.7034175, "lon": -73.9070647 }, + { "lat": 40.7034522, "lon": -73.9069990 }, + { "lat": 40.7034783, "lon": -73.9069381 }, + { "lat": 40.7035003, "lon": -73.9068858 }, + { "lat": 40.7035228, "lon": -73.9068237 }, + { "lat": 40.7035490, "lon": -73.9067261 }, + { "lat": 40.7035710, "lon": -73.9066296 }, + { "lat": 40.7035890, "lon": -73.9065503 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Palmetto Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221577892, + "bounds": { + "minlat": 40.7006082, + "minlon": -73.9106813, + "maxlat": 40.7010490, + "maxlon": -73.9099331 + }, + "nodes": [ + 42870690, + 11042404184, + 11128557560, + 9668690922, + 3325564445 + ], + "geometry": [ + { "lat": 40.7006082, "lon": -73.9099331 }, + { "lat": 40.7006561, "lon": -73.9100145 }, + { "lat": 40.7009074, "lon": -73.9104410 }, + { "lat": 40.7010136, "lon": -73.9106212 }, + { "lat": 40.7010490, "lon": -73.9106813 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY; Queens, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 221578792, + "bounds": { + "minlat": 40.7047640, + "minlon": -73.9199570, + "maxlat": 40.7058670, + "maxlon": -73.9188330 + }, + "nodes": [ + 42477877, + 9755788982, + 9755789827, + 9755789731, + 42477874 + ], + "geometry": [ + { "lat": 40.7058670, "lon": -73.9188330 }, + { "lat": 40.7058144, "lon": -73.9188866 }, + { "lat": 40.7048613, "lon": -73.9198578 }, + { "lat": 40.7048264, "lon": -73.9198934 }, + { "lat": 40.7047640, "lon": -73.9199570 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Hart Street", + "name:etymology:wikidata": "Q1367952", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221578794, + "bounds": { + "minlat": 40.7058670, + "minlon": -73.9188330, + "maxlat": 40.7069378, + "maxlon": -73.9177411 + }, + "nodes": [ + 42828281, + 9592286291, + 9755788983, + 42477877 + ], + "geometry": [ + { "lat": 40.7069378, "lon": -73.9177411 }, + { "lat": 40.7068912, "lon": -73.9177883 }, + { "lat": 40.7059257, "lon": -73.9187731 }, + { "lat": 40.7058670, "lon": -73.9188330 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Hart Street", + "name:etymology:wikidata": "Q1367952", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "width": "21'0\"" + } +}, +{ + "type": "way", + "id": 221578795, + "bounds": { + "minlat": 40.7054290, + "minlon": -73.9180920, + "maxlat": 40.7076310, + "maxlon": -73.9158400 + }, + "nodes": [ + 42521481, + 9755788971, + 11175031797, + 9592286278, + 42907463, + 5690629925, + 5709901787, + 12873867706, + 11175031796, + 10693892813, + 9590434405, + 42908162 + ], + "geometry": [ + { "lat": 40.7054290, "lon": -73.9180920 }, + { "lat": 40.7054921, "lon": -73.9180273 }, + { "lat": 40.7056788, "lon": -73.9178359 }, + { "lat": 40.7064540, "lon": -73.9170414 }, + { "lat": 40.7064992, "lon": -73.9169955 }, + { "lat": 40.7065510, "lon": -73.9169429 }, + { "lat": 40.7074027, "lon": -73.9160731 }, + { "lat": 40.7074079, "lon": -73.9160678 }, + { "lat": 40.7075070, "lon": -73.9159665 }, + { "lat": 40.7075219, "lon": -73.9159513 }, + { "lat": 40.7075576, "lon": -73.9159149 }, + { "lat": 40.7076310, "lon": -73.9158400 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "DeKalb Avenue", + "name:etymology:wikidata": "Q75363", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5243930", + "wikipedia": "en:DeKalb Avenue" + } +}, +{ + "type": "way", + "id": 221578796, + "bounds": { + "minlat": 40.7043120, + "minlon": -73.9192300, + "maxlat": 40.7054290, + "maxlon": -73.9180920 + }, + "nodes": [ + 42512101, + 9755789820, + 10946117152, + 10946117156, + 9755788970, + 42521481 + ], + "geometry": [ + { "lat": 40.7043120, "lon": -73.9192300 }, + { "lat": 40.7043747, "lon": -73.9191661 }, + { "lat": 40.7045349, "lon": -73.9190029 }, + { "lat": 40.7051978, "lon": -73.9183275 }, + { "lat": 40.7053735, "lon": -73.9181485 }, + { "lat": 40.7054290, "lon": -73.9180920 } + ], + "tags": { + "highway": "residential", + "name": "DeKalb Avenue", + "name:etymology:wikidata": "Q75363", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5243930", + "wikipedia": "en:DeKalb Avenue" + } +}, +{ + "type": "way", + "id": 221578797, + "bounds": { + "minlat": 40.7054290, + "minlon": -73.9188330, + "maxlat": 40.7058670, + "maxlon": -73.9180920 + }, + "nodes": [ + 42521481, + 9755788973, + 9755788985, + 42477877 + ], + "geometry": [ + { "lat": 40.7054290, "lon": -73.9180920 }, + { "lat": 40.7054727, "lon": -73.9181657 }, + { "lat": 40.7058387, "lon": -73.9187852 }, + { "lat": 40.7058670, "lon": -73.9188330 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221578798, + "bounds": { + "minlat": 40.7023672, + "minlon": -73.9180920, + "maxlat": 40.7054290, + "maxlon": -73.9128975 + }, + "nodes": [ + 42521481, + 9755788972, + 9755788960, + 42537507, + 9755788959, + 5487756751, + 9755789747, + 42536742, + 9755789746, + 9755789711, + 42509663, + 9755789710, + 9755789699, + 42471607, + 9755789698, + 9761722117, + 42501196, + 9761722116, + 9761722133, + 42518739, + 9761722137, + 9668564758, + 3325564446 + ], + "geometry": [ + { "lat": 40.7054290, "lon": -73.9180920 }, + { "lat": 40.7053956, "lon": -73.9180353 }, + { "lat": 40.7050357, "lon": -73.9174255 }, + { "lat": 40.7049920, "lon": -73.9173500 }, + { "lat": 40.7049573, "lon": -73.9172911 }, + { "lat": 40.7047950, "lon": -73.9170169 }, + { "lat": 40.7045978, "lon": -73.9166840 }, + { "lat": 40.7045530, "lon": -73.9166090 }, + { "lat": 40.7045187, "lon": -73.9165510 }, + { "lat": 40.7041548, "lon": -73.9159367 }, + { "lat": 40.7041140, "lon": -73.9158680 }, + { "lat": 40.7040819, "lon": -73.9158136 }, + { "lat": 40.7037172, "lon": -73.9151941 }, + { "lat": 40.7036770, "lon": -73.9151260 }, + { "lat": 40.7036457, "lon": -73.9150732 }, + { "lat": 40.7032806, "lon": -73.9144563 }, + { "lat": 40.7032390, "lon": -73.9143860 }, + { "lat": 40.7032052, "lon": -73.9143290 }, + { "lat": 40.7028427, "lon": -73.9137176 }, + { "lat": 40.7027990, "lon": -73.9136440 }, + { "lat": 40.7027662, "lon": -73.9135874 }, + { "lat": 40.7024108, "lon": -73.9129738 }, + { "lat": 40.7023672, "lon": -73.9128975 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221578799, + "bounds": { + "minlat": 40.6999312, + "minlon": -73.9192300, + "maxlat": 40.7043120, + "maxlon": -73.9118119 + }, + "nodes": [ + 42512101, + 9755789819, + 9755789801, + 42512105, + 9755789800, + 11107097237, + 5785028809, + 42512110, + 5785028824, + 11107097238, + 9753035525, + 42509659, + 9753035524, + 9753035528, + 42471605, + 9753035527, + 11107097239, + 11107097240, + 9755789685, + 42501192, + 9755789684, + 9761722291, + 42512120, + 9761722293, + 11107097241, + 11107097242, + 9755789404, + 42477555, + 9755789403, + 11047362240, + 42512124, + 11047362239, + 11107097243, + 6024803588, + 42512126, + 11047362245, + 9668548813, + 3325564444 + ], + "geometry": [ + { "lat": 40.7043120, "lon": -73.9192300 }, + { "lat": 40.7042756, "lon": -73.9191717 }, + { "lat": 40.7039010, "lon": -73.9185727 }, + { "lat": 40.7038580, "lon": -73.9185040 }, + { "lat": 40.7038241, "lon": -73.9184497 }, + { "lat": 40.7035771, "lon": -73.9180535 }, + { "lat": 40.7034473, "lon": -73.9178453 }, + { "lat": 40.7034050, "lon": -73.9177770 }, + { "lat": 40.7033683, "lon": -73.9177199 }, + { "lat": 40.7032084, "lon": -73.9174620 }, + { "lat": 40.7029968, "lon": -73.9171206 }, + { "lat": 40.7029530, "lon": -73.9170500 }, + { "lat": 40.7029203, "lon": -73.9169978 }, + { "lat": 40.7025459, "lon": -73.9163998 }, + { "lat": 40.7024990, "lon": -73.9163250 }, + { "lat": 40.7024689, "lon": -73.9162766 }, + { "lat": 40.7023111, "lon": -73.9160241 }, + { "lat": 40.7022310, "lon": -73.9158959 }, + { "lat": 40.7020880, "lon": -73.9156672 }, + { "lat": 40.7020466, "lon": -73.9155982 }, + { "lat": 40.7020117, "lon": -73.9155401 }, + { "lat": 40.7016562, "lon": -73.9149185 }, + { "lat": 40.7016170, "lon": -73.9148500 }, + { "lat": 40.7015820, "lon": -73.9147864 }, + { "lat": 40.7014540, "lon": -73.9145535 }, + { "lat": 40.7013726, "lon": -73.9144056 }, + { "lat": 40.7012390, "lon": -73.9141625 }, + { "lat": 40.7011980, "lon": -73.9140880 }, + { "lat": 40.7011679, "lon": -73.9140336 }, + { "lat": 40.7008201, "lon": -73.9134059 }, + { "lat": 40.7007770, "lon": -73.9133280 }, + { "lat": 40.7007439, "lon": -73.9132680 }, + { "lat": 40.7006218, "lon": -73.9130469 }, + { "lat": 40.7003996, "lon": -73.9126443 }, + { "lat": 40.7003580, "lon": -73.9125690 }, + { "lat": 40.7003256, "lon": -73.9125114 }, + { "lat": 40.6999762, "lon": -73.9118915 }, + { "lat": 40.6999312, "lon": -73.9118119 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Wyckoff Avenue", + "name:etymology:wikidata": "Q30434938", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221605485, + "bounds": { + "minlat": 40.7012341, + "minlon": -73.9828426, + "maxlat": 40.7013624, + "maxlon": -73.9808629 + }, + "nodes": [ + 42503956, + 10716556297, + 4625701379, + 598050837, + 598050850, + 598050845 + ], + "geometry": [ + { "lat": 40.7013624, "lon": -73.9828426 }, + { "lat": 40.7013588, "lon": -73.9827336 }, + { "lat": 40.7013250, "lon": -73.9816982 }, + { "lat": 40.7013091, "lon": -73.9812121 }, + { "lat": 40.7012944, "lon": -73.9810393 }, + { "lat": 40.7012341, "lon": -73.9808629 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "York Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "York", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 221605487, + "bounds": { + "minlat": 40.7013624, + "minlon": -73.9828426, + "maxlat": 40.7042791, + "maxlon": -73.9825581 + }, + "nodes": [ + 42503956, + 10716556296, + 9815159783, + 10722370746, + 42500009, + 10722370745, + 9815159782, + 10725916753, + 42469362, + 10725916752, + 10725916706, + 598050834, + 10725916707, + 9815159781, + 10725896496, + 42479470 + ], + "geometry": [ + { "lat": 40.7013624, "lon": -73.9828426 }, + { "lat": 40.7014531, "lon": -73.9828372 }, + { "lat": 40.7021802, "lon": -73.9827935 }, + { "lat": 40.7022273, "lon": -73.9827997 }, + { "lat": 40.7022873, "lon": -73.9828076 }, + { "lat": 40.7023575, "lon": -73.9828168 }, + { "lat": 40.7023750, "lon": -73.9828191 }, + { "lat": 40.7029228, "lon": -73.9827442 }, + { "lat": 40.7029715, "lon": -73.9827376 }, + { "lat": 40.7030300, "lon": -73.9827296 }, + { "lat": 40.7035812, "lon": -73.9826543 }, + { "lat": 40.7036277, "lon": -73.9826479 }, + { "lat": 40.7036774, "lon": -73.9826411 }, + { "lat": 40.7041852, "lon": -73.9825717 }, + { "lat": 40.7042382, "lon": -73.9825640 }, + { "lat": 40.7042791, "lon": -73.9825581 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Gold Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Gold", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 221607365, + "bounds": { + "minlat": 40.7075240, + "minlon": -73.9644203, + "maxlat": 40.7077276, + "maxlon": -73.9611440 + }, + "nodes": [ + 42477974, + 9776814813, + 9733464319, + 9733464320, + 42477975, + 9733464318, + 6235394757, + 42477980, + 6235394756, + 42477986, + 42477990, + 6235394741, + 42477995 + ], + "geometry": [ + { "lat": 40.7075372, "lon": -73.9644203 }, + { "lat": 40.7075550, "lon": -73.9643258 }, + { "lat": 40.7077219, "lon": -73.9633200 }, + { "lat": 40.7077266, "lon": -73.9632838 }, + { "lat": 40.7077276, "lon": -73.9632614 }, + { "lat": 40.7077255, "lon": -73.9632357 }, + { "lat": 40.7076924, "lon": -73.9628337 }, + { "lat": 40.7076850, "lon": -73.9627430 }, + { "lat": 40.7076764, "lon": -73.9626574 }, + { "lat": 40.7076245, "lon": -73.9621585 }, + { "lat": 40.7075950, "lon": -73.9618600 }, + { "lat": 40.7075399, "lon": -73.9613057 }, + { "lat": 40.7075240, "lon": -73.9611440 } + ], + "tags": { + "highway": "tertiary", + "name": "Division Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Division", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 221607366, + "bounds": { + "minlat": 40.7009313, + "minlon": -73.9618636, + "maxlat": 40.7016683, + "maxlon": -73.9614463 + }, + "nodes": [ + 42464239, + 9776829336, + 42490972 + ], + "geometry": [ + { "lat": 40.7016683, "lon": -73.9614463 }, + { "lat": 40.7015767, "lon": -73.9615005 }, + { "lat": 40.7009313, "lon": -73.9618636 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Williamsburg Street West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Williamsburg", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "St", + "turn:lanes": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 221607367, + "bounds": { + "minlat": 40.7005085, + "minlon": -73.9631504, + "maxlat": 40.7010533, + "maxlon": -73.9624798 + }, + "nodes": [ + 42469405, + 7248919878, + 7248919875, + 6248573341, + 42469409 + ], + "geometry": [ + { "lat": 40.7005085, "lon": -73.9624798 }, + { "lat": 40.7006068, "lon": -73.9625993 }, + { "lat": 40.7007540, "lon": -73.9627849 }, + { "lat": 40.7009790, "lon": -73.9630574 }, + { "lat": 40.7010533, "lon": -73.9631504 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 221607369, + "bounds": { + "minlat": 40.7070066, + "minlon": -73.9613709, + "maxlat": 40.7075240, + "maxlon": -73.9611440 + }, + "nodes": [ + 42477995, + 6235394743, + 42526542, + 42526545, + 42526547, + 42526551, + 42514854 + ], + "geometry": [ + { "lat": 40.7075240, "lon": -73.9611440 }, + { "lat": 40.7074496, "lon": -73.9611514 }, + { "lat": 40.7073950, "lon": -73.9611570 }, + { "lat": 40.7072910, "lon": -73.9611850 }, + { "lat": 40.7071750, "lon": -73.9612370 }, + { "lat": 40.7070631, "lon": -73.9613099 }, + { "lat": 40.7070066, "lon": -73.9613709 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Roebling Street", + "name:etymology:wikidata": "Q77237", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Roebling", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 221607370, + "bounds": { + "minlat": 40.7072178, + "minlon": -73.9599380, + "maxlat": 40.7074070, + "maxlon": -73.9580271 + }, + "nodes": [ + 42478001, + 6235394759, + 42475767, + 6235394761, + 6235394764, + 42478008, + 6235394766, + 9351682792, + 6338023986, + 598033016 + ], + "geometry": [ + { "lat": 40.7074070, "lon": -73.9599380 }, + { "lat": 40.7073804, "lon": -73.9596690 }, + { "lat": 40.7073646, "lon": -73.9595092 }, + { "lat": 40.7073505, "lon": -73.9593670 }, + { "lat": 40.7072704, "lon": -73.9585589 }, + { "lat": 40.7072602, "lon": -73.9584546 }, + { "lat": 40.7072501, "lon": -73.9583557 }, + { "lat": 40.7072447, "lon": -73.9582979 }, + { "lat": 40.7072320, "lon": -73.9581782 }, + { "lat": 40.7072178, "lon": -73.9580271 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Division Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Division", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 221607737, + "bounds": { + "minlat": 40.7104770, + "minlon": -73.9638390, + "maxlat": 40.7108716, + "maxlon": -73.9635930 + }, + "nodes": [ + 42468744, + 9990599479, + 5509435467, + 592627484, + 9078626930 + ], + "geometry": [ + { "lat": 40.7104770, "lon": -73.9638390 }, + { "lat": 40.7105180, "lon": -73.9638134 }, + { "lat": 40.7106715, "lon": -73.9637177 }, + { "lat": 40.7107890, "lon": -73.9636444 }, + { "lat": 40.7108716, "lon": -73.9635930 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "name": "Bedford Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 221607738, + "bounds": { + "minlat": 40.7221719, + "minlon": -73.9507880, + "maxlat": 40.7237720, + "maxlon": -73.9498712 + }, + "nodes": [ + 42479281, + 9789356702, + 5238711305, + 5238711304, + 5481927202, + 5481927205, + 11229826572, + 9789343616, + 42509213 + ], + "geometry": [ + { "lat": 40.7237720, "lon": -73.9507880 }, + { "lat": 40.7237172, "lon": -73.9507562 }, + { "lat": 40.7236675, "lon": -73.9507275 }, + { "lat": 40.7235088, "lon": -73.9506357 }, + { "lat": 40.7227516, "lon": -73.9501974 }, + { "lat": 40.7226299, "lon": -73.9501270 }, + { "lat": 40.7223865, "lon": -73.9499870 }, + { "lat": 40.7222322, "lon": -73.9499078 }, + { "lat": 40.7221719, "lon": -73.9498712 } + ], + "tags": { + "highway": "tertiary", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 221607739, + "bounds": { + "minlat": 40.7102155, + "minlon": -73.9633041, + "maxlat": 40.7102412, + "maxlon": -73.9631645 + }, + "nodes": [ + 42468747, + 42505383 + ], + "geometry": [ + { "lat": 40.7102155, "lon": -73.9631645 }, + { "lat": 40.7102412, "lon": -73.9633041 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 221607740, + "bounds": { + "minlat": 40.7104770, + "minlon": -73.9680168, + "maxlat": 40.7119171, + "maxlon": -73.9638390 + }, + "nodes": [ + 42468744, + 2782255588, + 8468050635, + 9990599456, + 42468741, + 9990599449, + 9990599503, + 42468738, + 9990599505, + 42468735, + 10074624141, + 10074624136, + 8468050634, + 9990599427, + 42468731 + ], + "geometry": [ + { "lat": 40.7104770, "lon": -73.9638390 }, + { "lat": 40.7105117, "lon": -73.9639440 }, + { "lat": 40.7109649, "lon": -73.9652463 }, + { "lat": 40.7109810, "lon": -73.9652908 }, + { "lat": 40.7110064, "lon": -73.9653673 }, + { "lat": 40.7110422, "lon": -73.9654739 }, + { "lat": 40.7113466, "lon": -73.9663797 }, + { "lat": 40.7113682, "lon": -73.9664439 }, + { "lat": 40.7114011, "lon": -73.9665364 }, + { "lat": 40.7116490, "lon": -73.9672330 }, + { "lat": 40.7117713, "lon": -73.9675906 }, + { "lat": 40.7118084, "lon": -73.9676992 }, + { "lat": 40.7118767, "lon": -73.9678988 }, + { "lat": 40.7118934, "lon": -73.9679476 }, + { "lat": 40.7119171, "lon": -73.9680168 } + ], + "tags": { + "highway": "residential", + "name": "South 6th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "6th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 221607741, + "bounds": { + "minlat": 40.7075372, + "minlon": -73.9644203, + "maxlat": 40.7102684, + "maxlon": -73.9638802 + }, + "nodes": [ + 42477974, + 9776814816, + 10058693168, + 42520083, + 10058693167, + 9779538297, + 42474666, + 9779538294, + 9779538268, + 42501314, + 9779538266, + 4161571436, + 2782255557, + 9990599496 + ], + "geometry": [ + { "lat": 40.7075372, "lon": -73.9644203 }, + { "lat": 40.7076270, "lon": -73.9644074 }, + { "lat": 40.7079544, "lon": -73.9643406 }, + { "lat": 40.7080150, "lon": -73.9643290 }, + { "lat": 40.7080779, "lon": -73.9643162 }, + { "lat": 40.7086617, "lon": -73.9641969 }, + { "lat": 40.7087200, "lon": -73.9641850 }, + { "lat": 40.7087895, "lon": -73.9641715 }, + { "lat": 40.7094709, "lon": -73.9640393 }, + { "lat": 40.7095340, "lon": -73.9640270 }, + { "lat": 40.7096058, "lon": -73.9640127 }, + { "lat": 40.7097524, "lon": -73.9639835 }, + { "lat": 40.7102078, "lon": -73.9638935 }, + { "lat": 40.7102684, "lon": -73.9638802 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 221607742, + "bounds": { + "minlat": 40.7093911, + "minlon": -73.9608098, + "maxlat": 40.7094135, + "maxlon": -73.9607439 + }, + "nodes": [ + 42505393, + 9968370346 + ], + "geometry": [ + { "lat": 40.7093911, "lon": -73.9607439 }, + { "lat": 40.7094135, "lon": -73.9608098 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 221608276, + "bounds": { + "minlat": 40.7436586, + "minlon": -73.9536413, + "maxlat": 40.7441135, + "maxlon": -73.9512920 + }, + "nodes": [ + 42866942, + 9982728593, + 5481866294, + 5034727230, + 42826878 + ], + "geometry": [ + { "lat": 40.7436586, "lon": -73.9512920 }, + { "lat": 40.7436776, "lon": -73.9513914 }, + { "lat": 40.7438187, "lon": -73.9521097 }, + { "lat": 40.7440935, "lon": -73.9535341 }, + { "lat": 40.7441135, "lon": -73.9536413 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "48th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221608277, + "bounds": { + "minlat": 40.7376199, + "minlon": -73.9555591, + "maxlat": 40.7378918, + "maxlon": -73.9554788 + }, + "nodes": [ + 2473602886, + 9996409577, + 2473602889 + ], + "geometry": [ + { "lat": 40.7376199, "lon": -73.9554788 }, + { "lat": 40.7378266, "lon": -73.9555181 }, + { "lat": 40.7378918, "lon": -73.9555591 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "oneway:bicycle": "-1", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Manhattan", + "tiger:name_type": "Ave", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "turn:lanes:forward": "left", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 221608278, + "bounds": { + "minlat": 40.7431897, + "minlon": -73.9514078, + "maxlat": 40.7436586, + "maxlon": -73.9512920 + }, + "nodes": [ + 42866942, + 9179073044, + 11157958411, + 5538983349, + 8735624382, + 11163899164, + 42844241 + ], + "geometry": [ + { "lat": 40.7436586, "lon": -73.9512920 }, + { "lat": 40.7436028, "lon": -73.9513119 }, + { "lat": 40.7435159, "lon": -73.9513330 }, + { "lat": 40.7434337, "lon": -73.9513527 }, + { "lat": 40.7433345, "lon": -73.9513775 }, + { "lat": 40.7433047, "lon": -73.9513830 }, + { "lat": 40.7431897, "lon": -73.9514078 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "2", + "name": "11th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through;right" + } +}, +{ + "type": "way", + "id": 221608280, + "bounds": { + "minlat": 40.7423262, + "minlon": -73.9514970, + "maxlat": 40.7432648, + "maxlon": -73.9512578 + }, + "nodes": [ + 277046311, + 9179073052, + 11890110208, + 11157958412 + ], + "geometry": [ + { "lat": 40.7423262, "lon": -73.9514970 }, + { "lat": 40.7427074, "lon": -73.9513924 }, + { "lat": 40.7431273, "lon": -73.9512910 }, + { "lat": 40.7432648, "lon": -73.9512578 } + ], + "tags": { + "bicycle": "no", + "cycleway:right": "no", + "foot": "no", + "highway": "primary", + "lanes": "2", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 221608281, + "bounds": { + "minlat": 40.7346894, + "minlon": -73.9525740, + "maxlat": 40.7350064, + "maxlon": -73.9525122 + }, + "nodes": [ + 597261861, + 12068940235, + 598391465 + ], + "geometry": [ + { "lat": 40.7350064, "lon": -73.9525740 }, + { "lat": 40.7347529, "lon": -73.9525240 }, + { "lat": 40.7346894, "lon": -73.9525122 } + ], + "tags": { + "bicycle": "use_sidepath", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt", + "tiger:cfcc": "A49", + "tiger:county": "Kings, NY", + "tiger:name_base": "Mc Guinness", + "tiger:name_type": "Blvd", + "turn:lanes": "through||right", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 221608282, + "bounds": { + "minlat": 40.7433558, + "minlon": -73.9510762, + "maxlat": 40.7435472, + "maxlon": -73.9507136 + }, + "nodes": [ + 276316979, + 6769993781, + 42844248 + ], + "geometry": [ + { "lat": 40.7433558, "lon": -73.9510762 }, + { "lat": 40.7433768, "lon": -73.9510329 }, + { "lat": 40.7435472, "lon": -73.9507136 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Jackson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|left|through" + } +}, +{ + "type": "way", + "id": 221608284, + "bounds": { + "minlat": 40.7341475, + "minlon": -73.9582957, + "maxlat": 40.7344650, + "maxlon": -73.9549621 + }, + "nodes": [ + 42486600, + 7008335414, + 11163899167, + 5481915307, + 5801598828, + 7008335424, + 42486597 + ], + "geometry": [ + { "lat": 40.7344650, "lon": -73.9549621 }, + { "lat": 40.7344572, "lon": -73.9550770 }, + { "lat": 40.7344311, "lon": -73.9553566 }, + { "lat": 40.7343909, "lon": -73.9557882 }, + { "lat": 40.7341644, "lon": -73.9581360 }, + { "lat": 40.7341587, "lon": -73.9581932 }, + { "lat": 40.7341475, "lon": -73.9582957 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Freeman Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Freeman", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 221608285, + "bounds": { + "minlat": 40.7337436, + "minlon": -73.9548439, + "maxlat": 40.7339848, + "maxlon": -73.9523243 + }, + "nodes": [ + 42516051, + 8097159325, + 11163899166, + 12042056978, + 8097025106, + 4660170671 + ], + "geometry": [ + { "lat": 40.7337436, "lon": -73.9548439 }, + { "lat": 40.7337550, "lon": -73.9547203 }, + { "lat": 40.7337822, "lon": -73.9544376 }, + { "lat": 40.7339663, "lon": -73.9525207 }, + { "lat": 40.7339758, "lon": -73.9524222 }, + { "lat": 40.7339848, "lon": -73.9523243 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Green Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221661728, + "bounds": { + "minlat": 40.7816408, + "minlon": -73.9128632, + "maxlat": 40.7831001, + "maxlon": -73.9110974 + }, + "nodes": [ + 2307002073, + 2307002075, + 7777095376, + 2307002074 + ], + "geometry": [ + { "lat": 40.7816408, "lon": -73.9128632 }, + { "lat": 40.7829228, "lon": -73.9113103 }, + { "lat": 40.7830426, "lon": -73.9111664 }, + { "lat": 40.7831001, "lon": -73.9110974 } + ], + "tags": { + "addr:city": "Queens", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 221661729, + "bounds": { + "minlat": 40.7826781, + "minlon": -73.9113103, + "maxlat": 40.7829228, + "maxlon": -73.9109667 + }, + "nodes": [ + 2307002075, + 7787351854, + 2307002076 + ], + "geometry": [ + { "lat": 40.7829228, "lon": -73.9113103 }, + { "lat": 40.7827239, "lon": -73.9110310 }, + { "lat": 40.7826781, "lon": -73.9109667 } + ], + "tags": { + "addr:city": "Queens", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 221661730, + "bounds": { + "minlat": 40.7822246, + "minlon": -73.9137039, + "maxlat": 40.7836764, + "maxlon": -73.9119191 + }, + "nodes": [ + 2307002077, + 7776768915, + 2307002078 + ], + "geometry": [ + { "lat": 40.7822246, "lon": -73.9137039 }, + { "lat": 40.7836227, "lon": -73.9119850 }, + { "lat": 40.7836764, "lon": -73.9119191 } + ], + "tags": { + "addr:city": "Queens", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 221661732, + "bounds": { + "minlat": 40.7808840, + "minlon": -73.9125644, + "maxlat": 40.7813638, + "maxlon": -73.9118693 + }, + "nodes": [ + 2307002079, + 7806681626, + 2307002081, + 2307002082, + 7806681645, + 2307002080 + ], + "geometry": [ + { "lat": 40.7813638, "lon": -73.9125644 }, + { "lat": 40.7813257, "lon": -73.9125141 }, + { "lat": 40.7812171, "lon": -73.9123706 }, + { "lat": 40.7810092, "lon": -73.9120632 }, + { "lat": 40.7809292, "lon": -73.9119393 }, + { "lat": 40.7808840, "lon": -73.9118693 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 221661742, + "bounds": { + "minlat": 40.7803370, + "minlon": -73.9139181, + "maxlat": 40.7813064, + "maxlon": -73.9125495 + }, + "nodes": [ + 2307002128, + 5785108813, + 2307002130, + 7803828561, + 3778418342, + 7846454029, + 2307002106, + 7846454041, + 2307002104 + ], + "geometry": [ + { "lat": 40.7813064, "lon": -73.9139181 }, + { "lat": 40.7812701, "lon": -73.9138669 }, + { "lat": 40.7810651, "lon": -73.9135774 }, + { "lat": 40.7808612, "lon": -73.9132896 }, + { "lat": 40.7808245, "lon": -73.9132378 }, + { "lat": 40.7807808, "lon": -73.9131760 }, + { "lat": 40.7805632, "lon": -73.9128689 }, + { "lat": 40.7803750, "lon": -73.9126031 }, + { "lat": 40.7803370, "lon": -73.9125495 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 221661743, + "bounds": { + "minlat": 40.7790690, + "minlon": -73.9144125, + "maxlat": 40.7805632, + "maxlon": -73.9128689 + }, + "nodes": [ + 2307002107, + 7846454040, + 2307002105, + 2307002106 + ], + "geometry": [ + { "lat": 40.7790690, "lon": -73.9140874 }, + { "lat": 40.7791097, "lon": -73.9141458 }, + { "lat": 40.7792955, "lon": -73.9144125 }, + { "lat": 40.7805632, "lon": -73.9128689 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 221661744, + "bounds": { + "minlat": 40.7771047, + "minlon": -73.9127637, + "maxlat": 40.7780649, + "maxlon": -73.9113711 + }, + "nodes": [ + 2307002121, + 9776116495, + 2307002126, + 9776116498, + 2307002108, + 9776116506, + 2307002112, + 9776116509, + 2307002109 + ], + "geometry": [ + { "lat": 40.7771047, "lon": -73.9113711 }, + { "lat": 40.7771453, "lon": -73.9114299 }, + { "lat": 40.7773469, "lon": -73.9117223 }, + { "lat": 40.7775460, "lon": -73.9120110 }, + { "lat": 40.7775840, "lon": -73.9120662 }, + { "lat": 40.7776211, "lon": -73.9121200 }, + { "lat": 40.7778239, "lon": -73.9124141 }, + { "lat": 40.7780236, "lon": -73.9127038 }, + { "lat": 40.7780649, "lon": -73.9127637 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 221661745, + "bounds": { + "minlat": 40.7783900, + "minlon": -73.9111710, + "maxlat": 40.7793611, + "maxlon": -73.9097983 + }, + "nodes": [ + 2307002110, + 9776116510, + 2307002113, + 9776116505, + 2307002111, + 9776116499, + 2307002125, + 9776116494, + 2307002123 + ], + "geometry": [ + { "lat": 40.7793611, "lon": -73.9111710 }, + { "lat": 40.7793251, "lon": -73.9111178 }, + { "lat": 40.7791309, "lon": -73.9108313 }, + { "lat": 40.7789239, "lon": -73.9105390 }, + { "lat": 40.7788802, "lon": -73.9104773 }, + { "lat": 40.7788465, "lon": -73.9104326 }, + { "lat": 40.7786378, "lon": -73.9101552 }, + { "lat": 40.7784299, "lon": -73.9098557 }, + { "lat": 40.7783900, "lon": -73.9097983 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 221661746, + "bounds": { + "minlat": 40.7776248, + "minlon": -73.9123685, + "maxlat": 40.7791309, + "maxlon": -73.9108313 + }, + "nodes": [ + 13458141005, + 13458141006, + 13458141007, + 2307002113 + ], + "geometry": [ + { "lat": 40.7776248, "lon": -73.9120162 }, + { "lat": 40.7776611, "lon": -73.9120715 }, + { "lat": 40.7778569, "lon": -73.9123685 }, + { "lat": 40.7791309, "lon": -73.9108313 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 221661747, + "bounds": { + "minlat": 40.7785903, + "minlon": -73.9141326, + "maxlat": 40.7790319, + "maxlon": -73.9135036 + }, + "nodes": [ + 2307002114, + 9776150522, + 2307002116 + ], + "geometry": [ + { "lat": 40.7790319, "lon": -73.9141326 }, + { "lat": 40.7789971, "lon": -73.9140812 }, + { "lat": 40.7785903, "lon": -73.9135036 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 221661748, + "bounds": { + "minlat": 40.7780649, + "minlon": -73.9134167, + "maxlat": 40.7785238, + "maxlon": -73.9127637 + }, + "nodes": [ + 12206032323, + 9776150517, + 2307002109 + ], + "geometry": [ + { "lat": 40.7785238, "lon": -73.9134167 }, + { "lat": 40.7781059, "lon": -73.9128243 }, + { "lat": 40.7780649, "lon": -73.9127637 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 221661750, + "bounds": { + "minlat": 40.7773794, + "minlon": -73.9116747, + "maxlat": 40.7786378, + "maxlon": -73.9101552 + }, + "nodes": [ + 2307002125, + 13504533412 + ], + "geometry": [ + { "lat": 40.7786378, "lon": -73.9101552 }, + { "lat": 40.7773794, "lon": -73.9116747 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 221661752, + "bounds": { + "minlat": 40.7798991, + "minlon": -73.9149927, + "maxlat": 40.7810651, + "maxlon": -73.9135774 + }, + "nodes": [ + 2307002129, + 2307002130 + ], + "geometry": [ + { "lat": 40.7798991, "lon": -73.9149927 }, + { "lat": 40.7810651, "lon": -73.9135774 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 221674460, + "bounds": { + "minlat": 40.7466835, + "minlon": -73.9942512, + "maxlat": 40.7468057, + "maxlon": -73.9939658 + }, + "nodes": [ + 2703104396, + 2307164599 + ], + "geometry": [ + { "lat": 40.7466835, "lon": -73.9939658 }, + { "lat": 40.7468057, "lon": -73.9942512 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 27th Street", + "name:ru": "Западная 27-я стрит", + "name_1": "West 27 Street", + "oneway": "yes", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 221674464, + "bounds": { + "minlat": 40.7468057, + "minlon": -73.9966345, + "maxlat": 40.7478363, + "maxlon": -73.9942512 + }, + "nodes": [ + 2307164599, + 8614943094, + 8614943034, + 10170938584, + 10170593069, + 42434810 + ], + "geometry": [ + { "lat": 40.7468057, "lon": -73.9942512 }, + { "lat": 40.7470296, "lon": -73.9947737 }, + { "lat": 40.7473864, "lon": -73.9956068 }, + { "lat": 40.7477402, "lon": -73.9964327 }, + { "lat": 40.7477712, "lon": -73.9965053 }, + { "lat": 40.7478363, "lon": -73.9966345 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 27th Street", + "name:ru": "Западная 27-я стрит", + "name_1": "West 27 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221684322, + "bounds": { + "minlat": 40.7093911, + "minlon": -73.9607439, + "maxlat": 40.7097151, + "maxlon": -73.9600342 + }, + "nodes": [ + 42505393, + 5173383338, + 9968370412, + 9968370419, + 9968370413, + 9968370418, + 9968370414, + 9968370415, + 9968370416, + 9968370417, + 2295777078, + 9968370420, + 2307215740 + ], + "geometry": [ + { "lat": 40.7093911, "lon": -73.9607439 }, + { "lat": 40.7094590, "lon": -73.9606669 }, + { "lat": 40.7096422, "lon": -73.9605112 }, + { "lat": 40.7096596, "lon": -73.9604951 }, + { "lat": 40.7096767, "lon": -73.9604736 }, + { "lat": 40.7096900, "lon": -73.9604467 }, + { "lat": 40.7097013, "lon": -73.9604160 }, + { "lat": 40.7097088, "lon": -73.9603850 }, + { "lat": 40.7097142, "lon": -73.9603318 }, + { "lat": 40.7097151, "lon": -73.9602888 }, + { "lat": 40.7097113, "lon": -73.9602504 }, + { "lat": 40.7097006, "lon": -73.9601997 }, + { "lat": 40.7096622, "lon": -73.9600342 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Williamsburg Bridge Plaza", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221684323, + "bounds": { + "minlat": 40.7094760, + "minlon": -73.9600342, + "maxlat": 40.7096622, + "maxlon": -73.9594238 + }, + "nodes": [ + 2307215740, + 9968370395, + 9968370409 + ], + "geometry": [ + { "lat": 40.7096622, "lon": -73.9600342 }, + { "lat": 40.7095854, "lon": -73.9597137 }, + { "lat": 40.7094760, "lon": -73.9594238 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Washington Plaza Lane 3", + "oneway": "yes", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 221684325, + "bounds": { + "minlat": 40.7093792, + "minlon": -73.9600342, + "maxlat": 40.7096622, + "maxlon": -73.9596674 + }, + "nodes": [ + 2307215740, + 9968370397, + 9968370411, + 11155187994 + ], + "geometry": [ + { "lat": 40.7096622, "lon": -73.9600342 }, + { "lat": 40.7094609, "lon": -73.9598870 }, + { "lat": 40.7094151, "lon": -73.9597639 }, + { "lat": 40.7093792, "lon": -73.9596674 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Washington Plaza Lane 5", + "oneway": "yes", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 221684326, + "bounds": { + "minlat": 40.7094017, + "minlon": -73.9600342, + "maxlat": 40.7096622, + "maxlon": -73.9594820 + }, + "nodes": [ + 2307215740, + 9968370396, + 9968370410 + ], + "geometry": [ + { "lat": 40.7096622, "lon": -73.9600342 }, + { "lat": 40.7095329, "lon": -73.9598298 }, + { "lat": 40.7094017, "lon": -73.9594820 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Washington Plaza Lane 4", + "oneway": "yes", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 221684825, + "bounds": { + "minlat": 40.7095388, + "minlon": -73.9600342, + "maxlat": 40.7096622, + "maxlon": -73.9593953 + }, + "nodes": [ + 2307215740, + 9968370394, + 2307215735 + ], + "geometry": [ + { "lat": 40.7096622, "lon": -73.9600342 }, + { "lat": 40.7096194, "lon": -73.9596185 }, + { "lat": 40.7095388, "lon": -73.9593953 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Washington Plaza Lane 2", + "oneway": "yes", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 221685708, + "bounds": { + "minlat": 40.7093457, + "minlon": -73.9593364, + "maxlat": 40.7094255, + "maxlon": -73.9592903 + }, + "nodes": [ + 2307215731, + 6226508719, + 2307215746 + ], + "geometry": [ + { "lat": 40.7093457, "lon": -73.9593364 }, + { "lat": 40.7093958, "lon": -73.9593096 }, + { "lat": 40.7094255, "lon": -73.9592903 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Williamsburg Bridge Plaza", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221685712, + "bounds": { + "minlat": 40.7089648, + "minlon": -73.9594910, + "maxlat": 40.7092675, + "maxlon": -73.9593691 + }, + "nodes": [ + 2307215728, + 9968370406, + 2307215734, + 9968370405, + 2307215732, + 2307230978 + ], + "geometry": [ + { "lat": 40.7092675, "lon": -73.9593691 }, + { "lat": 40.7092212, "lon": -73.9593814 }, + { "lat": 40.7091607, "lon": -73.9593949 }, + { "lat": 40.7091199, "lon": -73.9594093 }, + { "lat": 40.7090541, "lon": -73.9594438 }, + { "lat": 40.7089648, "lon": -73.9594910 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Williamsburg Bridge Plaza", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221686082, + "bounds": { + "minlat": 40.7066530, + "minlon": -73.9563050, + "maxlat": 40.7086740, + "maxlon": -73.9504060 + }, + "nodes": [ + 42514949, + 9768167593, + 9768167606, + 42488286, + 9768167604, + 5481854393, + 9755373460, + 42491453, + 9755373459, + 11128557568, + 7223938216, + 9755373449, + 42490942, + 9755373453, + 8742539173, + 9755373440, + 42514959 + ], + "geometry": [ + { "lat": 40.7086740, "lon": -73.9563050 }, + { "lat": 40.7086553, "lon": -73.9562504 }, + { "lat": 40.7082938, "lon": -73.9551998 }, + { "lat": 40.7082660, "lon": -73.9551190 }, + { "lat": 40.7082432, "lon": -73.9550528 }, + { "lat": 40.7081541, "lon": -73.9547939 }, + { "lat": 40.7077740, "lon": -73.9536902 }, + { "lat": 40.7077450, "lon": -73.9536060 }, + { "lat": 40.7077210, "lon": -73.9535362 }, + { "lat": 40.7073870, "lon": -73.9525661 }, + { "lat": 40.7073555, "lon": -73.9524747 }, + { "lat": 40.7072519, "lon": -73.9521737 }, + { "lat": 40.7072211, "lon": -73.9520844 }, + { "lat": 40.7072019, "lon": -73.9520276 }, + { "lat": 40.7068251, "lon": -73.9509145 }, + { "lat": 40.7067048, "lon": -73.9505590 }, + { "lat": 40.7066530, "lon": -73.9504060 } + ], + "tags": { + "highway": "residential", + "name": "South 5th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221686585, + "bounds": { + "minlat": 40.7204477, + "minlon": -73.9440370, + "maxlat": 40.7210594, + "maxlon": -73.9429666 + }, + "nodes": [ + 9414914118, + 42472683, + 6166803110 + ], + "geometry": [ + { "lat": 40.7210594, "lon": -73.9429666 }, + { "lat": 40.7206497, "lon": -73.9436843 }, + { "lat": 40.7204477, "lon": -73.9440370 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 221686587, + "bounds": { + "minlat": 40.7145376, + "minlon": -73.9516997, + "maxlat": 40.7152280, + "maxlon": -73.9444991 + }, + "nodes": [ + 42467880, + 6235394671, + 9795355957, + 42518614, + 9795355959, + 9795355970, + 42491188, + 9795355972, + 9795355987, + 42518609, + 9795355988, + 4156052495, + 9802943879, + 42518608 + ], + "geometry": [ + { "lat": 40.7152280, "lon": -73.9444991 }, + { "lat": 40.7152169, "lon": -73.9446151 }, + { "lat": 40.7150747, "lon": -73.9461054 }, + { "lat": 40.7150670, "lon": -73.9461860 }, + { "lat": 40.7150588, "lon": -73.9462739 }, + { "lat": 40.7149213, "lon": -73.9477559 }, + { "lat": 40.7149140, "lon": -73.9478330 }, + { "lat": 40.7149053, "lon": -73.9479232 }, + { "lat": 40.7147635, "lon": -73.9493935 }, + { "lat": 40.7147550, "lon": -73.9494820 }, + { "lat": 40.7147456, "lon": -73.9495774 }, + { "lat": 40.7145550, "lon": -73.9515214 }, + { "lat": 40.7145488, "lon": -73.9515850 }, + { "lat": 40.7145376, "lon": -73.9516997 } + ], + "tags": { + "highway": "residential", + "name": "Conselyea Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221686588, + "bounds": { + "minlat": 40.7146692, + "minlon": -73.9428082, + "maxlat": 40.7153346, + "maxlon": -73.9427002 + }, + "nodes": [ + 7722378712, + 8668750429, + 9695846867, + 7712107372, + 7712107366 + ], + "geometry": [ + { "lat": 40.7153346, "lon": -73.9428082 }, + { "lat": 40.7148806, "lon": -73.9427303 }, + { "lat": 40.7147830, "lon": -73.9427181 }, + { "lat": 40.7146955, "lon": -73.9427045 }, + { "lat": 40.7146692, "lon": -73.9427002 } + ], + "tags": { + "highway": "residential", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 221686591, + "bounds": { + "minlat": 40.7144570, + "minlon": -73.9420710, + "maxlat": 40.7147353, + "maxlon": -73.9352880 + }, + "nodes": [ + 7722378707, + 9695846848, + 8668750426, + 8668750420, + 7712107371, + 9695771765, + 42484216, + 5838943016, + 42464419, + 6908682216, + 5838943001, + 42484219 + ], + "geometry": [ + { "lat": 40.7147353, "lon": -73.9420710 }, + { "lat": 40.7147276, "lon": -73.9419153 }, + { "lat": 40.7147211, "lon": -73.9417565 }, + { "lat": 40.7147097, "lon": -73.9414622 }, + { "lat": 40.7147051, "lon": -73.9413602 }, + { "lat": 40.7145961, "lon": -73.9388306 }, + { "lat": 40.7145929, "lon": -73.9387525 }, + { "lat": 40.7145903, "lon": -73.9386858 }, + { "lat": 40.7145370, "lon": -73.9372940 }, + { "lat": 40.7144954, "lon": -73.9362446 }, + { "lat": 40.7144615, "lon": -73.9353803 }, + { "lat": 40.7144570, "lon": -73.9352880 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 221686592, + "bounds": { + "minlat": 40.7158127, + "minlon": -73.9400202, + "maxlat": 40.7167864, + "maxlon": -73.9363312 + }, + "nodes": [ + 7725510883, + 9527375824, + 9527375825, + 9527375827, + 42489474, + 9527375828, + 10075708370, + 9695771781, + 42489482, + 9695771732, + 10689791478, + 10689791481, + 10689791484, + 10689791487, + 9695771623, + 42489486 + ], + "geometry": [ + { "lat": 40.7158127, "lon": -73.9400202 }, + { "lat": 40.7158370, "lon": -73.9399253 }, + { "lat": 40.7159598, "lon": -73.9394505 }, + { "lat": 40.7160533, "lon": -73.9390814 }, + { "lat": 40.7160668, "lon": -73.9390238 }, + { "lat": 40.7160856, "lon": -73.9389516 }, + { "lat": 40.7162085, "lon": -73.9384758 }, + { "lat": 40.7163372, "lon": -73.9379757 }, + { "lat": 40.7163612, "lon": -73.9378816 }, + { "lat": 40.7163806, "lon": -73.9378069 }, + { "lat": 40.7163934, "lon": -73.9377586 }, + { "lat": 40.7164105, "lon": -73.9376935 }, + { "lat": 40.7164227, "lon": -73.9376471 }, + { "lat": 40.7164394, "lon": -73.9375833 }, + { "lat": 40.7167418, "lon": -73.9364289 }, + { "lat": 40.7167864, "lon": -73.9363312 } + ], + "tags": { + "highway": "residential", + "name": "Maspeth Avenue", + "oneway": "no", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 221686593, + "bounds": { + "minlat": 40.7219327, + "minlon": -73.9410334, + "maxlat": 40.7237771, + "maxlon": -73.9375167 + }, + "nodes": [ + 42476536, + 9937834470, + 5482000004, + 5481999998, + 12162675486, + 5482000013, + 12162675485, + 5750251172, + 11155242433, + 9929558947, + 42476545, + 9765039218, + 9194920844, + 9194920843, + 12162675484, + 5943344507, + 9194920842, + 9194920841, + 5242718105, + 12162675483, + 9929558959, + 42473313 + ], + "geometry": [ + { "lat": 40.7219327, "lon": -73.9410334 }, + { "lat": 40.7220202, "lon": -73.9409093 }, + { "lat": 40.7220879, "lon": -73.9408133 }, + { "lat": 40.7223332, "lon": -73.9404644 }, + { "lat": 40.7223985, "lon": -73.9403727 }, + { "lat": 40.7224649, "lon": -73.9402743 }, + { "lat": 40.7225423, "lon": -73.9401463 }, + { "lat": 40.7226182, "lon": -73.9400104 }, + { "lat": 40.7229480, "lon": -73.9393916 }, + { "lat": 40.7230282, "lon": -73.9392520 }, + { "lat": 40.7230861, "lon": -73.9391490 }, + { "lat": 40.7231443, "lon": -73.9390464 }, + { "lat": 40.7232976, "lon": -73.9387703 }, + { "lat": 40.7233634, "lon": -73.9386497 }, + { "lat": 40.7234148, "lon": -73.9385444 }, + { "lat": 40.7234684, "lon": -73.9384280 }, + { "lat": 40.7235245, "lon": -73.9383000 }, + { "lat": 40.7235756, "lon": -73.9381742 }, + { "lat": 40.7236168, "lon": -73.9380600 }, + { "lat": 40.7236583, "lon": -73.9379334 }, + { "lat": 40.7237404, "lon": -73.9376481 }, + { "lat": 40.7237771, "lon": -73.9375167 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 221686732, + "bounds": { + "minlat": 40.7391018, + "minlon": -73.9176091, + "maxlat": 40.7409516, + "maxlon": -73.9172501 + }, + "nodes": [ + 42859969, + 9192032658, + 11155242444, + 10083107686, + 42859973 + ], + "geometry": [ + { "lat": 40.7409516, "lon": -73.9172501 }, + { "lat": 40.7408691, "lon": -73.9172549 }, + { "lat": 40.7406260, "lon": -73.9173035 }, + { "lat": 40.7391871, "lon": -73.9175909 }, + { "lat": 40.7391018, "lon": -73.9176091 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "48th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221686733, + "bounds": { + "minlat": 40.7410553, + "minlon": -73.9181662, + "maxlat": 40.7425097, + "maxlon": -73.9178684 + }, + "nodes": [ + 42860624, + 10081025543, + 11155242447, + 10081025546, + 10081025545, + 42896840 + ], + "geometry": [ + { "lat": 40.7410553, "lon": -73.9181662 }, + { "lat": 40.7411341, "lon": -73.9181501 }, + { "lat": 40.7423735, "lon": -73.9178963 }, + { "lat": 40.7423927, "lon": -73.9178924 }, + { "lat": 40.7424358, "lon": -73.9178835 }, + { "lat": 40.7425097, "lon": -73.9178684 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "47th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221686734, + "bounds": { + "minlat": 40.7408538, + "minlon": -73.9172501, + "maxlat": 40.7409516, + "maxlon": -73.9163202 + }, + "nodes": [ + 42859969, + 10081025549, + 3507660816, + 11379589267, + 42807854 + ], + "geometry": [ + { "lat": 40.7409516, "lon": -73.9172501 }, + { "lat": 40.7409390, "lon": -73.9171450 }, + { "lat": 40.7408538, "lon": -73.9164279 }, + { "lat": 40.7408555, "lon": -73.9164039 }, + { "lat": 40.7408615, "lon": -73.9163202 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "20 mph", + "name": "47th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221686735, + "bounds": { + "minlat": 40.7426906, + "minlon": -73.9169205, + "maxlat": 40.7428008, + "maxlon": -73.9159517 + }, + "nodes": [ + 7667163195, + 10743722564, + 9988416597, + 10927727722, + 42807852 + ], + "geometry": [ + { "lat": 40.7428008, "lon": -73.9169205 }, + { "lat": 40.7427816, "lon": -73.9166647 }, + { "lat": 40.7427648, "lon": -73.9165364 }, + { "lat": 40.7427519, "lon": -73.9164554 }, + { "lat": 40.7426906, "lon": -73.9159517 } + ], + "tags": { + "access": "yes", + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 221686736, + "bounds": { + "minlat": 40.7409516, + "minlon": -73.9181662, + "maxlat": 40.7410553, + "maxlon": -73.9172501 + }, + "nodes": [ + 42859969, + 10081025547, + 11155242445, + 10081025544, + 42860624 + ], + "geometry": [ + { "lat": 40.7409516, "lon": -73.9172501 }, + { "lat": 40.7409627, "lon": -73.9173527 }, + { "lat": 40.7410005, "lon": -73.9176774 }, + { "lat": 40.7410491, "lon": -73.9180944 }, + { "lat": 40.7410553, "lon": -73.9181662 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "20 mph", + "name": "47th Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 221686737, + "bounds": { + "minlat": 40.7409516, + "minlon": -73.9172501, + "maxlat": 40.7428008, + "maxlon": -73.9169174 + }, + "nodes": [ + 7667163195, + 9192032663, + 9192032659, + 9988416600, + 10774439469, + 10081025548, + 9192032657, + 42859969 + ], + "geometry": [ + { "lat": 40.7428008, "lon": -73.9169205 }, + { "lat": 40.7427444, "lon": -73.9169174 }, + { "lat": 40.7426903, "lon": -73.9169200 }, + { "lat": 40.7425197, "lon": -73.9169555 }, + { "lat": 40.7423299, "lon": -73.9169929 }, + { "lat": 40.7410735, "lon": -73.9172408 }, + { "lat": 40.7410344, "lon": -73.9172482 }, + { "lat": 40.7409516, "lon": -73.9172501 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "name": "48th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 221686897, + "bounds": { + "minlat": 40.7297295, + "minlon": -73.9593494, + "maxlat": 40.7304386, + "maxlon": -73.9592330 + }, + "nodes": [ + 7725555869, + 9922459764, + 9997952343, + 9997952332, + 11155242482, + 9922459770, + 42493348 + ], + "geometry": [ + { "lat": 40.7297295, "lon": -73.9592330 }, + { "lat": 40.7298122, "lon": -73.9592459 }, + { "lat": 40.7299195, "lon": -73.9592639 }, + { "lat": 40.7302991, "lon": -73.9593273 }, + { "lat": 40.7303196, "lon": -73.9593306 }, + { "lat": 40.7303735, "lon": -73.9593391 }, + { "lat": 40.7304386, "lon": -73.9593494 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221686898, + "bounds": { + "minlat": 40.7305920, + "minlon": -73.9577128, + "maxlat": 40.7313945, + "maxlon": -73.9493477 + }, + "nodes": [ + 42493352, + 8097159397, + 8097159393, + 42493355, + 8097159341, + 8097159365, + 2987758875, + 2987758876, + 8097159411, + 5481915298, + 12042028865, + 5481915296, + 8097082849, + 8097159380, + 42493365 + ], + "geometry": [ + { "lat": 40.7305920, "lon": -73.9577128 }, + { "lat": 40.7306019, "lon": -73.9576133 }, + { "lat": 40.7309004, "lon": -73.9545019 }, + { "lat": 40.7309123, "lon": -73.9543818 }, + { "lat": 40.7309232, "lon": -73.9542610 }, + { "lat": 40.7311441, "lon": -73.9519483 }, + { "lat": 40.7311535, "lon": -73.9518504 }, + { "lat": 40.7311668, "lon": -73.9517118 }, + { "lat": 40.7311755, "lon": -73.9516222 }, + { "lat": 40.7311936, "lon": -73.9514343 }, + { "lat": 40.7312055, "lon": -73.9513102 }, + { "lat": 40.7312300, "lon": -73.9510557 }, + { "lat": 40.7313808, "lon": -73.9494908 }, + { "lat": 40.7313869, "lon": -73.9494274 }, + { "lat": 40.7313945, "lon": -73.9493477 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Street", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221686899, + "bounds": { + "minlat": 40.7275959, + "minlon": -73.9592330, + "maxlat": 40.7297295, + "maxlon": -73.9588788 + }, + "nodes": [ + 42484582, + 11292128897, + 13204230892, + 9998478139, + 9925275992, + 42498314, + 9925275993, + 9998478138, + 9925276006, + 42531627, + 9925276005, + 5053904475, + 9998478137, + 9922459763, + 7725555869 + ], + "geometry": [ + { "lat": 40.7275959, "lon": -73.9588788 }, + { "lat": 40.7276664, "lon": -73.9588897 }, + { "lat": 40.7278464, "lon": -73.9589186 }, + { "lat": 40.7281722, "lon": -73.9589708 }, + { "lat": 40.7282486, "lon": -73.9589831 }, + { "lat": 40.7283150, "lon": -73.9589933 }, + { "lat": 40.7283800, "lon": -73.9590052 }, + { "lat": 40.7288569, "lon": -73.9590860 }, + { "lat": 40.7289538, "lon": -73.9591020 }, + { "lat": 40.7290181, "lon": -73.9591117 }, + { "lat": 40.7290924, "lon": -73.9591247 }, + { "lat": 40.7291492, "lon": -73.9591344 }, + { "lat": 40.7292881, "lon": -73.9591569 }, + { "lat": 40.7296419, "lon": -73.9592185 }, + { "lat": 40.7297295, "lon": -73.9592330 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 221686900, + "bounds": { + "minlat": 40.7298876, + "minlon": -73.9577128, + "maxlat": 40.7305920, + "maxlon": -73.9575954 + }, + "nodes": [ + 42493352, + 8097159381, + 11155242480, + 6235394725, + 42514451 + ], + "geometry": [ + { "lat": 40.7305920, "lon": -73.9577128 }, + { "lat": 40.7305311, "lon": -73.9577029 }, + { "lat": 40.7301324, "lon": -73.9576361 }, + { "lat": 40.7299734, "lon": -73.9576095 }, + { "lat": 40.7298876, "lon": -73.9575954 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Franklin", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 221686901, + "bounds": { + "minlat": 40.7305920, + "minlon": -73.9581783, + "maxlat": 40.7334328, + "maxlon": -73.9577128 + }, + "nodes": [ + 42493352, + 8097159387, + 7285976847, + 42501785, + 7285976846, + 11163899170, + 2843008346, + 9997952330, + 7285976855, + 42506516, + 7285976854, + 9997952328, + 11163899169, + 5481915321, + 5483600242, + 42500685, + 5483600247, + 7008335446, + 42516047 + ], + "geometry": [ + { "lat": 40.7305920, "lon": -73.9577128 }, + { "lat": 40.7306614, "lon": -73.9577251 }, + { "lat": 40.7312445, "lon": -73.9578183 }, + { "lat": 40.7313042, "lon": -73.9578282 }, + { "lat": 40.7313655, "lon": -73.9578382 }, + { "lat": 40.7317340, "lon": -73.9578991 }, + { "lat": 40.7318906, "lon": -73.9579250 }, + { "lat": 40.7319177, "lon": -73.9579289 }, + { "lat": 40.7319500, "lon": -73.9579343 }, + { "lat": 40.7320134, "lon": -73.9579446 }, + { "lat": 40.7320802, "lon": -73.9579557 }, + { "lat": 40.7321164, "lon": -73.9579623 }, + { "lat": 40.7322637, "lon": -73.9579874 }, + { "lat": 40.7325597, "lon": -73.9580378 }, + { "lat": 40.7326627, "lon": -73.9580540 }, + { "lat": 40.7327225, "lon": -73.9580639 }, + { "lat": 40.7327880, "lon": -73.9580745 }, + { "lat": 40.7333694, "lon": -73.9581676 }, + { "lat": 40.7334328, "lon": -73.9581783 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Franklin", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 221686902, + "bounds": { + "minlat": 40.7351021, + "minlon": -73.9373815, + "maxlat": 40.7354379, + "maxlon": -73.9370583 + }, + "nodes": [ + 42866384, + 9192032646, + 11155242468 + ], + "geometry": [ + { "lat": 40.7354379, "lon": -73.9370583 }, + { "lat": 40.7352432, "lon": -73.9372464 }, + { "lat": 40.7351021, "lon": -73.9373815 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Van Dam Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221686903, + "bounds": { + "minlat": 40.7304386, + "minlon": -73.9593494, + "maxlat": 40.7305920, + "maxlon": -73.9577128 + }, + "nodes": [ + 42493348, + 8097159376, + 5801598830, + 7286001084, + 42493352 + ], + "geometry": [ + { "lat": 40.7304386, "lon": -73.9593494 }, + { "lat": 40.7304461, "lon": -73.9592693 }, + { "lat": 40.7305775, "lon": -73.9578700 }, + { "lat": 40.7305829, "lon": -73.9578129 }, + { "lat": 40.7305920, "lon": -73.9577128 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Street", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221687788, + "bounds": { + "minlat": 40.7205303, + "minlon": -73.9906316, + "maxlat": 40.7207700, + "maxlon": -73.9898501 + }, + "nodes": [ + 42437109, + 3314293709, + 8307642281, + 42429646 + ], + "geometry": [ + { "lat": 40.7205303, "lon": -73.9898501 }, + { "lat": 40.7205559, "lon": -73.9899338 }, + { "lat": 40.7207493, "lon": -73.9905714 }, + { "lat": 40.7207700, "lon": -73.9906316 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "name:ko": "리빙턴 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 221687789, + "bounds": { + "minlat": 40.7204582, + "minlon": -73.9898501, + "maxlat": 40.7205303, + "maxlon": -73.9896132 + }, + "nodes": [ + 42437108, + 2349482103, + 42437109 + ], + "geometry": [ + { "lat": 40.7204582, "lon": -73.9896132 }, + { "lat": 40.7204926, "lon": -73.9897260 }, + { "lat": 40.7205303, "lon": -73.9898501 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "name:ko": "리빙턴 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 221687790, + "bounds": { + "minlat": 40.7192474, + "minlon": -73.9902109, + "maxlat": 40.7197383, + "maxlon": -73.9899686 + }, + "nodes": [ + 486868830, + 5854381568, + 8983103712 + ], + "geometry": [ + { "lat": 40.7192474, "lon": -73.9902109 }, + { "lat": 40.7193429, "lon": -73.9901638 }, + { "lat": 40.7197383, "lon": -73.9899686 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "none|merge_to_left", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 221687792, + "bounds": { + "minlat": 40.7204582, + "minlon": -73.9896132, + "maxlat": 40.7216145, + "maxlon": -73.9890209 + }, + "nodes": [ + 42437108, + 3314293714, + 5854381570, + 42432060 + ], + "geometry": [ + { "lat": 40.7204582, "lon": -73.9896132 }, + { "lat": 40.7205213, "lon": -73.9895824 }, + { "lat": 40.7215689, "lon": -73.9890426 }, + { "lat": 40.7216145, "lon": -73.9890209 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 221687794, + "bounds": { + "minlat": 40.7194380, + "minlon": -73.9904094, + "maxlat": 40.7205303, + "maxlon": -73.9898501 + }, + "nodes": [ + 42437109, + 3314293711, + 8270279220, + 10606730535, + 5296792744 + ], + "geometry": [ + { "lat": 40.7205303, "lon": -73.9898501 }, + { "lat": 40.7204892, "lon": -73.9898712 }, + { "lat": 40.7197326, "lon": -73.9902585 }, + { "lat": 40.7194788, "lon": -73.9903885 }, + { "lat": 40.7194380, "lon": -73.9904094 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 221688253, + "bounds": { + "minlat": 40.7088858, + "minlon": -73.9594910, + "maxlat": 40.7089648, + "maxlon": -73.9592632 + }, + "nodes": [ + 42480086, + 9779538358, + 2307230978 + ], + "geometry": [ + { "lat": 40.7088858, "lon": -73.9592632 }, + { "lat": 40.7089086, "lon": -73.9593300 }, + { "lat": 40.7089648, "lon": -73.9594910 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 221689127, + "bounds": { + "minlat": 40.7065970, + "minlon": -73.9430860, + "maxlat": 40.7069180, + "maxlon": -73.9397150 + }, + "nodes": [ + 42496361, + 9752593993, + 9752593989, + 42496356, + 9752593990, + 9752594013, + 42467825 + ], + "geometry": [ + { "lat": 40.7069180, "lon": -73.9397150 }, + { "lat": 40.7069075, "lon": -73.9398258 }, + { "lat": 40.7067652, "lon": -73.9413234 }, + { "lat": 40.7067580, "lon": -73.9413990 }, + { "lat": 40.7067498, "lon": -73.9414854 }, + { "lat": 40.7066072, "lon": -73.9429784 }, + { "lat": 40.7065970, "lon": -73.9430860 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Johnson Avenue", + "name:etymology:wikidata": "Q23091816", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221689128, + "bounds": { + "minlat": 40.7069180, + "minlon": -73.9398380, + "maxlat": 40.7076540, + "maxlon": -73.9397150 + }, + "nodes": [ + 42513657, + 6943630241, + 9752593994, + 42496361 + ], + "geometry": [ + { "lat": 40.7076540, "lon": -73.9398380 }, + { "lat": 40.7075865, "lon": -73.9398267 }, + { "lat": 40.7069877, "lon": -73.9397269 }, + { "lat": 40.7069180, "lon": -73.9397150 } + ], + "tags": { + "cycleway:both": "no", + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Bushwick Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221689129, + "bounds": { + "minlat": 40.7064410, + "minlon": -73.9448020, + "maxlat": 40.7065970, + "maxlon": -73.9430860 + }, + "nodes": [ + 42467825, + 9752594012, + 13730006022, + 7079402995, + 9752593982, + 6212365438, + 42496352 + ], + "geometry": [ + { "lat": 40.7065970, "lon": -73.9430860 }, + { "lat": 40.7065879, "lon": -73.9431868 }, + { "lat": 40.7065655, "lon": -73.9434331 }, + { "lat": 40.7064880, "lon": -73.9442851 }, + { "lat": 40.7064572, "lon": -73.9446230 }, + { "lat": 40.7064506, "lon": -73.9447006 }, + { "lat": 40.7064410, "lon": -73.9448020 } + ], + "tags": { + "highway": "residential", + "name": "Johnson Avenue", + "name:etymology:wikidata": "Q23091816", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 221689130, + "bounds": { + "minlat": 40.7074231, + "minlon": -73.9505355, + "maxlat": 40.7080704, + "maxlon": -73.9433216 + }, + "nodes": [ + 42467831, + 6943637587, + 6943637592, + 42529162, + 6943637595, + 9752593955, + 42491152, + 9752593954, + 7402010378, + 9752593884, + 42527635, + 9752593885, + 5481854377, + 8468050592, + 9752593876, + 42520569 + ], + "geometry": [ + { "lat": 40.7080704, "lon": -73.9433216 }, + { "lat": 40.7080601, "lon": -73.9434376 }, + { "lat": 40.7079188, "lon": -73.9449244 }, + { "lat": 40.7079110, "lon": -73.9450060 }, + { "lat": 40.7079021, "lon": -73.9450972 }, + { "lat": 40.7077617, "lon": -73.9465782 }, + { "lat": 40.7077540, "lon": -73.9466560 }, + { "lat": 40.7077459, "lon": -73.9467409 }, + { "lat": 40.7076868, "lon": -73.9473607 }, + { "lat": 40.7076049, "lon": -73.9482183 }, + { "lat": 40.7075970, "lon": -73.9483030 }, + { "lat": 40.7075883, "lon": -73.9483999 }, + { "lat": 40.7074231, "lon": -73.9502605 }, + { "lat": 40.7074231, "lon": -73.9503686 }, + { "lat": 40.7074231, "lon": -73.9504196 }, + { "lat": 40.7074296, "lon": -73.9505355 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Meserole Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 221689131, + "bounds": { + "minlat": 40.7065140, + "minlon": -73.9308930, + "maxlat": 40.7071460, + "maxlon": -73.9270150 + }, + "nodes": [ + 42525014, + 9767625226, + 9767625232, + 9767625229, + 42525015, + 9767625212, + 9767625216, + 9767625209, + 42505687 + ], + "geometry": [ + { "lat": 40.7065140, "lon": -73.9308930 }, + { "lat": 40.7065371, "lon": -73.9307741 }, + { "lat": 40.7068543, "lon": -73.9287953 }, + { "lat": 40.7068638, "lon": -73.9287367 }, + { "lat": 40.7068790, "lon": -73.9286430 }, + { "lat": 40.7068917, "lon": -73.9285653 }, + { "lat": 40.7071205, "lon": -73.9271707 }, + { "lat": 40.7071301, "lon": -73.9271122 }, + { "lat": 40.7071460, "lon": -73.9270150 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Harrison Place", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Pl", + "tiger:reviewed": "name", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 221689133, + "bounds": { + "minlat": 40.7066458, + "minlon": -73.9323135, + "maxlat": 40.7077460, + "maxlon": -73.9319743 + }, + "nodes": [ + 42490315, + 9767625240, + 9755371920, + 42487175, + 9755371919, + 12170460217 + ], + "geometry": [ + { "lat": 40.7077460, "lon": -73.9323135 }, + { "lat": 40.7076871, "lon": -73.9322861 }, + { "lat": 40.7071189, "lon": -73.9321082 }, + { "lat": 40.7070510, "lon": -73.9320860 }, + { "lat": 40.7069977, "lon": -73.9320713 }, + { "lat": 40.7066458, "lon": -73.9319743 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "residential", + "lanes": "1", + "name": "Morgan Avenue", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 221689134, + "bounds": { + "minlat": 40.7063540, + "minlon": -73.9318940, + "maxlat": 40.7065140, + "maxlon": -73.9308930 + }, + "nodes": [ + 42490311, + 9767625269, + 9767625265, + 9767625266, + 42525014 + ], + "geometry": [ + { "lat": 40.7063540, "lon": -73.9318940 }, + { "lat": 40.7063664, "lon": -73.9318168 }, + { "lat": 40.7064855, "lon": -73.9310715 }, + { "lat": 40.7064953, "lon": -73.9310102 }, + { "lat": 40.7065140, "lon": -73.9308930 } + ], + "tags": { + "highway": "residential", + "name": "Harrison Place", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Pl", + "tiger:reviewed": "name", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 221689135, + "bounds": { + "minlat": 40.7090800, + "minlon": -73.9574880, + "maxlat": 40.7097744, + "maxlon": -73.9570586 + }, + "nodes": [ + 42482424, + 9767625315, + 5481854410, + 11155188003, + 9768167565, + 42482429 + ], + "geometry": [ + { "lat": 40.7097744, "lon": -73.9570586 }, + { "lat": 40.7097020, "lon": -73.9571022 }, + { "lat": 40.7096239, "lon": -73.9571511 }, + { "lat": 40.7094953, "lon": -73.9572308 }, + { "lat": 40.7091447, "lon": -73.9574479 }, + { "lat": 40.7090800, "lon": -73.9574880 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 221689136, + "bounds": { + "minlat": 40.7077460, + "minlon": -73.9325230, + "maxlat": 40.7082380, + "maxlon": -73.9323135 + }, + "nodes": [ + 42490318, + 9767625242, + 42490315 + ], + "geometry": [ + { "lat": 40.7082380, "lon": -73.9325230 }, + { "lat": 40.7078144, "lon": -73.9323432 }, + { "lat": 40.7077460, "lon": -73.9323135 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "jersey_barrier", + "highway": "residential", + "lanes": "1", + "name": "Morgan Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221689137, + "bounds": { + "minlat": 40.7065140, + "minlon": -73.9317649, + "maxlat": 40.7074629, + "maxlon": -73.9308930 + }, + "nodes": [ + 42525014, + 9959630908, + 9959635935, + 42487177, + 9959635936, + 9432967506 + ], + "geometry": [ + { "lat": 40.7065140, "lon": -73.9308930 }, + { "lat": 40.7065836, "lon": -73.9309568 }, + { "lat": 40.7071005, "lon": -73.9314308 }, + { "lat": 40.7071522, "lon": -73.9314783 }, + { "lat": 40.7072109, "lon": -73.9315333 }, + { "lat": 40.7074629, "lon": -73.9317649 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "name": "Knickerbocker Avenue", + "name:etymology:wikidata": "Q55609555", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 221689139, + "bounds": { + "minlat": 40.7082844, + "minlon": -73.9578957, + "maxlat": 40.7084171, + "maxlon": -73.9575086 + }, + "nodes": [ + 42482433, + 9768167544, + 598033018 + ], + "geometry": [ + { "lat": 40.7084171, "lon": -73.9578957 }, + { "lat": 40.7083947, "lon": -73.9578303 }, + { "lat": 40.7082844, "lon": -73.9575086 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 221689140, + "bounds": { + "minlat": 40.7069180, + "minlon": -73.9397150, + "maxlat": 40.7077460, + "maxlon": -73.9323135 + }, + "nodes": [ + 42490315, + 9767625241, + 9959635959, + 42496377, + 9755371949, + 12981477389, + 9755371931, + 42496372, + 9952734806, + 2997098647, + 12983923554, + 42496367, + 12983923553, + 9752593996, + 42496361 + ], + "geometry": [ + { "lat": 40.7077460, "lon": -73.9323135 }, + { "lat": 40.7077368, "lon": -73.9323787 }, + { "lat": 40.7074977, "lon": -73.9338455 }, + { "lat": 40.7074841, "lon": -73.9339286 }, + { "lat": 40.7074693, "lon": -73.9340195 }, + { "lat": 40.7074595, "lon": -73.9340796 }, + { "lat": 40.7072921, "lon": -73.9358188 }, + { "lat": 40.7072846, "lon": -73.9358962 }, + { "lat": 40.7072751, "lon": -73.9359947 }, + { "lat": 40.7071021, "lon": -73.9377921 }, + { "lat": 40.7070239, "lon": -73.9386245 }, + { "lat": 40.7070170, "lon": -73.9386984 }, + { "lat": 40.7070099, "lon": -73.9387716 }, + { "lat": 40.7069263, "lon": -73.9396280 }, + { "lat": 40.7069180, "lon": -73.9397150 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Johnson Avenue", + "name:etymology:wikidata": "Q23091816", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221689142, + "bounds": { + "minlat": 40.7052611, + "minlon": -73.9397150, + "maxlat": 40.7069180, + "maxlon": -73.9394380 + }, + "nodes": [ + 42496361, + 9752593995, + 9744012654, + 42476793, + 2548031996, + 8548018142, + 7722378719 + ], + "geometry": [ + { "lat": 40.7069180, "lon": -73.9397150 }, + { "lat": 40.7068550, "lon": -73.9397046 }, + { "lat": 40.7062837, "lon": -73.9396095 }, + { "lat": 40.7062100, "lon": -73.9395980 }, + { "lat": 40.7061549, "lon": -73.9395890 }, + { "lat": 40.7053284, "lon": -73.9394482 }, + { "lat": 40.7052611, "lon": -73.9394380 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Bushwick Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221689143, + "bounds": { + "minlat": 40.7073350, + "minlon": -73.9433216, + "maxlat": 40.7080704, + "maxlon": -73.9432020 + }, + "nodes": [ + 42467828, + 6943638507, + 6943637585, + 42467831 + ], + "geometry": [ + { "lat": 40.7073350, "lon": -73.9432020 }, + { "lat": 40.7074190, "lon": -73.9432157 }, + { "lat": 40.7080144, "lon": -73.9433126 }, + { "lat": 40.7080704, "lon": -73.9433216 } + ], + "tags": { + "alt_name": "Avenue of Puerto Rico", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221689145, + "bounds": { + "minlat": 40.7047170, + "minlon": -73.9308930, + "maxlat": 40.7065140, + "maxlon": -73.9287380 + }, + "nodes": [ + 42504145, + 9744012791, + 9950027970, + 42520109, + 9950027971, + 9744012686, + 42490914, + 9744012685, + 9959630907, + 42525014 + ], + "geometry": [ + { "lat": 40.7047170, "lon": -73.9287380 }, + { "lat": 40.7047842, "lon": -73.9288488 }, + { "lat": 40.7052027, "lon": -73.9296143 }, + { "lat": 40.7052495, "lon": -73.9296824 }, + { "lat": 40.7053178, "lon": -73.9297642 }, + { "lat": 40.7058308, "lon": -73.9302653 }, + { "lat": 40.7058800, "lon": -73.9303100 }, + { "lat": 40.7059484, "lon": -73.9303722 }, + { "lat": 40.7064607, "lon": -73.9308439 }, + { "lat": 40.7065140, "lon": -73.9308930 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "name": "Knickerbocker Avenue", + "name:etymology:wikidata": "Q55609555", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221689146, + "bounds": { + "minlat": 40.7097744, + "minlon": -73.9579753, + "maxlat": 40.7101161, + "maxlon": -73.9570586 + }, + "nodes": [ + 42482424, + 9767625316, + 5481854412, + 5481854416, + 1692483444, + 1692483446 + ], + "geometry": [ + { "lat": 40.7097744, "lon": -73.9570586 }, + { "lat": 40.7097954, "lon": -73.9571361 }, + { "lat": 40.7099047, "lon": -73.9574338 }, + { "lat": 40.7099792, "lon": -73.9576377 }, + { "lat": 40.7100857, "lon": -73.9579305 }, + { "lat": 40.7101161, "lon": -73.9579753 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "residential", + "name": "South 4th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 221689147, + "bounds": { + "minlat": 40.7080704, + "minlon": -73.9437880, + "maxlat": 40.7109010, + "maxlon": -73.9433216 + }, + "nodes": [ + 42467831, + 6943637586, + 11229826590, + 6943576183, + 42467835, + 6943576184, + 11229826589, + 7257110366, + 8548018190, + 13232730049, + 9752590859, + 42467844 + ], + "geometry": [ + { "lat": 40.7080704, "lon": -73.9433216 }, + { "lat": 40.7081449, "lon": -73.9433341 }, + { "lat": 40.7084860, "lon": -73.9433909 }, + { "lat": 40.7087159, "lon": -73.9434292 }, + { "lat": 40.7087810, "lon": -73.9434400 }, + { "lat": 40.7088636, "lon": -73.9434538 }, + { "lat": 40.7091185, "lon": -73.9434962 }, + { "lat": 40.7095234, "lon": -73.9435637 }, + { "lat": 40.7096834, "lon": -73.9435894 }, + { "lat": 40.7101832, "lon": -73.9436712 }, + { "lat": 40.7108249, "lon": -73.9437762 }, + { "lat": 40.7109010, "lon": -73.9437880 } + ], + "tags": { + "alt_name": "Avenue of Puerto Rico", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "oneway": "no", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 221694586, + "bounds": { + "minlat": 40.7032468, + "minlon": -73.9931616, + "maxlat": 40.7033378, + "maxlon": -73.9906658 + }, + "nodes": [ + 2687331105, + 8262935499, + 11158142754, + 2358967554, + 42469329, + 214362644, + 11678027570 + ], + "geometry": [ + { "lat": 40.7032468, "lon": -73.9906658 }, + { "lat": 40.7032500, "lon": -73.9907406 }, + { "lat": 40.7032761, "lon": -73.9912467 }, + { "lat": 40.7032932, "lon": -73.9918157 }, + { "lat": 40.7033198, "lon": -73.9925604 }, + { "lat": 40.7033349, "lon": -73.9930624 }, + { "lat": 40.7033378, "lon": -73.9931616 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Water Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:reviewed": "aerial", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 221694587, + "bounds": { + "minlat": 40.7018498, + "minlon": -73.9924479, + "maxlat": 40.7020421, + "maxlon": -73.9921985 + }, + "nodes": [ + 42486083, + 11674185844, + 11674185843, + 3174844137, + 8834321011 + ], + "geometry": [ + { "lat": 40.7018498, "lon": -73.9921985 }, + { "lat": 40.7018935, "lon": -73.9922419 }, + { "lat": 40.7019456, "lon": -73.9923021 }, + { "lat": 40.7019883, "lon": -73.9923674 }, + { "lat": 40.7020421, "lon": -73.9924479 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz" + } +}, +{ + "type": "way", + "id": 221694588, + "bounds": { + "minlat": 40.7024701, + "minlon": -73.9896268, + "maxlat": 40.7025230, + "maxlon": -73.9881918 + }, + "nodes": [ + 42500003, + 10726079571, + 2358967547, + 10726079552, + 42492401, + 10726079543, + 2358967544, + 6424524890 + ], + "geometry": [ + { "lat": 40.7025230, "lon": -73.9896268 }, + { "lat": 40.7025203, "lon": -73.9895387 }, + { "lat": 40.7024910, "lon": -73.9888678 }, + { "lat": 40.7024846, "lon": -73.9886607 }, + { "lat": 40.7024813, "lon": -73.9885559 }, + { "lat": 40.7024785, "lon": -73.9884664 }, + { "lat": 40.7024734, "lon": -73.9882993 }, + { "lat": 40.7024701, "lon": -73.9881918 } + ], + "tags": { + "cycleway": "shared_lane", + "cycleway:surface": "paving_stones", + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:name_base": "Front", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 221694589, + "bounds": { + "minlat": 40.7025979, + "minlon": -73.9925807, + "maxlat": 40.7026073, + "maxlon": -73.9922298 + }, + "nodes": [ + 42472268, + 12867102454, + 11678027534 + ], + "geometry": [ + { "lat": 40.7026073, "lon": -73.9925807 }, + { "lat": 40.7026053, "lon": -73.9925070 }, + { "lat": 40.7025979, "lon": -73.9922298 } + ], + "tags": { + "covered": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Front", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 221694590, + "bounds": { + "minlat": 40.7032468, + "minlon": -73.9906658, + "maxlat": 40.7038527, + "maxlon": -73.9906283 + }, + "nodes": [ + 2687331105, + 8262935497, + 10170379769, + 11671229111 + ], + "geometry": [ + { "lat": 40.7032468, "lon": -73.9906658 }, + { "lat": 40.7033032, "lon": -73.9906634 }, + { "lat": 40.7038196, "lon": -73.9906347 }, + { "lat": 40.7038527, "lon": -73.9906283 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Main Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:zip_left": "11201" + } +}, +{ + "type": "way", + "id": 221725598, + "bounds": { + "minlat": 40.6942800, + "minlon": -73.9267360, + "maxlat": 40.7067550, + "maxlon": -73.9143610 + }, + "nodes": [ + 42934645, + 6024795693, + 8509362115, + 9761722056, + 42907474, + 9761722058, + 9755789745, + 42536742, + 9752992703, + 5487756757, + 5487756761, + 10923276557, + 5785028823, + 42512110, + 5785028808, + 7721927440, + 7153297696, + 9753035565, + 42511934, + 9753035564, + 9753035588, + 42536212, + 9753035587, + 12883509072, + 9753035605, + 42496674, + 9753035604, + 8589606324, + 9796891743, + 42517087, + 9796872795, + 9795578719, + 42486746, + 9795578717, + 13729914047, + 7931149588, + 9795578734, + 42499833, + 9758644635, + 5713857012, + 42513737 + ], + "geometry": [ + { "lat": 40.7067550, "lon": -73.9143610 }, + { "lat": 40.7066908, "lon": -73.9144234 }, + { "lat": 40.7063765, "lon": -73.9147299 }, + { "lat": 40.7056842, "lon": -73.9154579 }, + { "lat": 40.7056314, "lon": -73.9155134 }, + { "lat": 40.7055751, "lon": -73.9155704 }, + { "lat": 40.7046101, "lon": -73.9165478 }, + { "lat": 40.7045530, "lon": -73.9166090 }, + { "lat": 40.7045005, "lon": -73.9166620 }, + { "lat": 40.7040572, "lon": -73.9171135 }, + { "lat": 40.7040263, "lon": -73.9171449 }, + { "lat": 40.7036661, "lon": -73.9175114 }, + { "lat": 40.7034603, "lon": -73.9177207 }, + { "lat": 40.7034050, "lon": -73.9177770 }, + { "lat": 40.7033523, "lon": -73.9178288 }, + { "lat": 40.7029119, "lon": -73.9182614 }, + { "lat": 40.7029043, "lon": -73.9182689 }, + { "lat": 40.7018897, "lon": -73.9192654 }, + { "lat": 40.7018324, "lon": -73.9193216 }, + { "lat": 40.7017775, "lon": -73.9193756 }, + { "lat": 40.7003039, "lon": -73.9208241 }, + { "lat": 40.7002470, "lon": -73.9208800 }, + { "lat": 40.7001927, "lon": -73.9209333 }, + { "lat": 40.6988703, "lon": -73.9222315 }, + { "lat": 40.6988328, "lon": -73.9222683 }, + { "lat": 40.6987720, "lon": -73.9223280 }, + { "lat": 40.6987187, "lon": -73.9223810 }, + { "lat": 40.6984925, "lon": -73.9226059 }, + { "lat": 40.6984351, "lon": -73.9226615 }, + { "lat": 40.6983503, "lon": -73.9227473 }, + { "lat": 40.6982730, "lon": -73.9228230 }, + { "lat": 40.6973579, "lon": -73.9237184 }, + { "lat": 40.6972990, "lon": -73.9237760 }, + { "lat": 40.6972439, "lon": -73.9238300 }, + { "lat": 40.6965805, "lon": -73.9244805 }, + { "lat": 40.6953737, "lon": -73.9256631 }, + { "lat": 40.6953398, "lon": -73.9256963 }, + { "lat": 40.6952850, "lon": -73.9257500 }, + { "lat": 40.6952326, "lon": -73.9258014 }, + { "lat": 40.6943493, "lon": -73.9266681 }, + { "lat": 40.6942800, "lon": -73.9267360 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Stanhope Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221725603, + "bounds": { + "minlat": 40.7085360, + "minlon": -73.9149160, + "maxlat": 40.7096540, + "maxlon": -73.9137760 + }, + "nodes": [ + 42809938, + 9755788858, + 10287737745, + 10686521704, + 9590434397, + 42827597 + ], + "geometry": [ + { "lat": 40.7096540, "lon": -73.9137760 }, + { "lat": 40.7096081, "lon": -73.9138228 }, + { "lat": 40.7095865, "lon": -73.9138449 }, + { "lat": 40.7086186, "lon": -73.9148319 }, + { "lat": 40.7085886, "lon": -73.9148624 }, + { "lat": 40.7085360, "lon": -73.9149160 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "name": "DeKalb Avenue", + "name:etymology:wikidata": "Q75363", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221726015, + "bounds": { + "minlat": 40.7129107, + "minlon": -73.9129306, + "maxlat": 40.7133314, + "maxlon": -73.9060751 + }, + "nodes": [ + 42843577, + 9747567468, + 5482321047, + 9747567467, + 7712150386, + 9747567466, + 42843585, + 5482323602, + 12973268290, + 42831859, + 7980856263, + 5482323606, + 9747646483, + 42843597, + 9747646482, + 42843608, + 9747567460, + 42843612, + 9747567459, + 9344811896, + 8506346383, + 8506346379, + 9747567457, + 42843615 + ], + "geometry": [ + { "lat": 40.7133314, "lon": -73.9129306 }, + { "lat": 40.7133261, "lon": -73.9128318 }, + { "lat": 40.7132574, "lon": -73.9118391 }, + { "lat": 40.7131914, "lon": -73.9108002 }, + { "lat": 40.7131843, "lon": -73.9107224 }, + { "lat": 40.7131782, "lon": -73.9106296 }, + { "lat": 40.7131516, "lon": -73.9102232 }, + { "lat": 40.7131295, "lon": -73.9098805 }, + { "lat": 40.7131236, "lon": -73.9097996 }, + { "lat": 40.7131189, "lon": -73.9097148 }, + { "lat": 40.7131126, "lon": -73.9096183 }, + { "lat": 40.7131025, "lon": -73.9094601 }, + { "lat": 40.7130639, "lon": -73.9089360 }, + { "lat": 40.7130608, "lon": -73.9088320 }, + { "lat": 40.7130575, "lon": -73.9087405 }, + { "lat": 40.7130121, "lon": -73.9080111 }, + { "lat": 40.7129576, "lon": -73.9070130 }, + { "lat": 40.7129527, "lon": -73.9069021 }, + { "lat": 40.7129477, "lon": -73.9068313 }, + { "lat": 40.7129404, "lon": -73.9066702 }, + { "lat": 40.7129398, "lon": -73.9066437 }, + { "lat": 40.7129199, "lon": -73.9063002 }, + { "lat": 40.7129150, "lon": -73.9061787 }, + { "lat": 40.7129107, "lon": -73.9060751 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 221726016, + "bounds": { + "minlat": 40.7087874, + "minlon": -73.9145160, + "maxlat": 40.7100930, + "maxlon": -73.9122961 + }, + "nodes": [ + 42809943, + 9755788812, + 11004046297, + 42809940, + 6252542630, + 42809938, + 6252542625, + 42809936 + ], + "geometry": [ + { "lat": 40.7087874, "lon": -73.9122961 }, + { "lat": 40.7088316, "lon": -73.9123658 }, + { "lat": 40.7089963, "lon": -73.9126497 }, + { "lat": 40.7092180, "lon": -73.9130320 }, + { "lat": 40.7092836, "lon": -73.9131439 }, + { "lat": 40.7096540, "lon": -73.9137760 }, + { "lat": 40.7097352, "lon": -73.9139128 }, + { "lat": 40.7100930, "lon": -73.9145160 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Woodward Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Woodward", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 221726017, + "bounds": { + "minlat": 40.7114020, + "minlon": -73.9185347, + "maxlat": 40.7124530, + "maxlon": -73.9167480 + }, + "nodes": [ + 42809927, + 9744131358, + 9744131365, + 42809924, + 9744131366, + 10287737765, + 9744131371, + 42809921 + ], + "geometry": [ + { "lat": 40.7114020, "lon": -73.9167480 }, + { "lat": 40.7114463, "lon": -73.9168233 }, + { "lat": 40.7118043, "lon": -73.9174319 }, + { "lat": 40.7118380, "lon": -73.9174890 }, + { "lat": 40.7118791, "lon": -73.9175591 }, + { "lat": 40.7123803, "lon": -73.9184142 }, + { "lat": 40.7124032, "lon": -73.9184532 }, + { "lat": 40.7124530, "lon": -73.9185347 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Woodward Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 221726018, + "bounds": { + "minlat": 40.7133314, + "minlon": -73.9142799, + "maxlat": 40.7134203, + "maxlon": -73.9129306 + }, + "nodes": [ + 11175031790, + 6252541282, + 9755788638, + 42843577 + ], + "geometry": [ + { "lat": 40.7134203, "lon": -73.9142799 }, + { "lat": 40.7133479, "lon": -73.9131391 }, + { "lat": 40.7133425, "lon": -73.9130512 }, + { "lat": 40.7133314, "lon": -73.9129306 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 221726019, + "bounds": { + "minlat": 40.7114020, + "minlon": -73.9167480, + "maxlat": 40.7128229, + "maxlon": -73.9152972 + }, + "nodes": [ + 42809927, + 9744131361, + 11175031792, + 6252542645, + 6252542587, + 11175031791 + ], + "geometry": [ + { "lat": 40.7114020, "lon": -73.9167480 }, + { "lat": 40.7114526, "lon": -73.9166963 }, + { "lat": 40.7116360, "lon": -73.9165090 }, + { "lat": 40.7120673, "lon": -73.9160687 }, + { "lat": 40.7125854, "lon": -73.9155397 }, + { "lat": 40.7128229, "lon": -73.9152972 } + ], + "tags": { + "highway": "residential", + "name": "Starr Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 221726020, + "bounds": { + "minlat": 40.7075510, + "minlon": -73.9099727, + "maxlat": 40.7110632, + "maxlon": -73.9040330 + }, + "nodes": [ + 42851925, + 9763022059, + 5482714833, + 9763022082, + 42851922, + 9763022084, + 11047965373, + 42851920, + 11047965372, + 5505298410, + 5505298408, + 10686537751, + 9763022158, + 42827229, + 9763022160, + 10686537734, + 9763022178, + 42851917, + 9763022180, + 10686521676, + 9763022194, + 42851915, + 9763022196, + 10686537737, + 9763022245, + 42814493, + 9763022248, + 10686537715, + 9763022367, + 42851912, + 9763022368, + 10686537729, + 9747646493, + 42851907 + ], + "geometry": [ + { "lat": 40.7075510, "lon": -73.9040330 }, + { "lat": 40.7075936, "lon": -73.9041052 }, + { "lat": 40.7077952, "lon": -73.9044469 }, + { "lat": 40.7079563, "lon": -73.9047199 }, + { "lat": 40.7079900, "lon": -73.9047770 }, + { "lat": 40.7080330, "lon": -73.9048496 }, + { "lat": 40.7083965, "lon": -73.9054638 }, + { "lat": 40.7084280, "lon": -73.9055170 }, + { "lat": 40.7084698, "lon": -73.9055874 }, + { "lat": 40.7085259, "lon": -73.9056821 }, + { "lat": 40.7086027, "lon": -73.9058115 }, + { "lat": 40.7088083, "lon": -73.9061580 }, + { "lat": 40.7088391, "lon": -73.9062085 }, + { "lat": 40.7088670, "lon": -73.9062570 }, + { "lat": 40.7089105, "lon": -73.9063307 }, + { "lat": 40.7092484, "lon": -73.9069024 }, + { "lat": 40.7092726, "lon": -73.9069434 }, + { "lat": 40.7093060, "lon": -73.9070000 }, + { "lat": 40.7093482, "lon": -73.9070715 }, + { "lat": 40.7096861, "lon": -73.9076429 }, + { "lat": 40.7097118, "lon": -73.9076865 }, + { "lat": 40.7097440, "lon": -73.9077410 }, + { "lat": 40.7097854, "lon": -73.9078108 }, + { "lat": 40.7101245, "lon": -73.9083824 }, + { "lat": 40.7101500, "lon": -73.9084254 }, + { "lat": 40.7101830, "lon": -73.9084810 }, + { "lat": 40.7102257, "lon": -73.9085532 }, + { "lat": 40.7105568, "lon": -73.9091134 }, + { "lat": 40.7105865, "lon": -73.9091637 }, + { "lat": 40.7106210, "lon": -73.9092220 }, + { "lat": 40.7106631, "lon": -73.9092936 }, + { "lat": 40.7109946, "lon": -73.9098569 }, + { "lat": 40.7110227, "lon": -73.9099047 }, + { "lat": 40.7110632, "lon": -73.9099727 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Grandview Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221747611, + "bounds": { + "minlat": 40.7372721, + "minlon": -73.9556380, + "maxlat": 40.7372958, + "maxlon": -73.9554272 + }, + "nodes": [ + 11229826565, + 5801603714, + 8097082881, + 42472255 + ], + "geometry": [ + { "lat": 40.7372721, "lon": -73.9556380 }, + { "lat": 40.7372756, "lon": -73.9556008 }, + { "lat": 40.7372810, "lon": -73.9555476 }, + { "lat": 40.7372958, "lon": -73.9554272 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Box Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Box", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:backward": "through" + } +}, +{ + "type": "way", + "id": 221747612, + "bounds": { + "minlat": 40.7371418, + "minlon": -73.9569305, + "maxlat": 40.7373530, + "maxlon": -73.9565297 + }, + "nodes": [ + 2307703075, + 9153637249, + 42472251 + ], + "geometry": [ + { "lat": 40.7373530, "lon": -73.9565297 }, + { "lat": 40.7372374, "lon": -73.9567764 }, + { "lat": 40.7371418, "lon": -73.9569305 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Commercial Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Commercial", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 221747613, + "bounds": { + "minlat": 40.7372958, + "minlon": -73.9554272, + "maxlat": 40.7375049, + "maxlon": -73.9532044 + }, + "nodes": [ + 42472255, + 8097082817, + 8097025082, + 8097082921, + 42472259 + ], + "geometry": [ + { "lat": 40.7372958, "lon": -73.9554272 }, + { "lat": 40.7373074, "lon": -73.9553044 }, + { "lat": 40.7374912, "lon": -73.9533497 }, + { "lat": 40.7374966, "lon": -73.9532924 }, + { "lat": 40.7375049, "lon": -73.9532044 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Box Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Box", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 221747614, + "bounds": { + "minlat": 40.7373530, + "minlon": -73.9565297, + "maxlat": 40.7378918, + "maxlon": -73.9555591 + }, + "nodes": [ + 2473602889, + 8097082901, + 9153637236, + 10170251938, + 10170251935, + 2307703075 + ], + "geometry": [ + { "lat": 40.7378918, "lon": -73.9555591 }, + { "lat": 40.7378296, "lon": -73.9556611 }, + { "lat": 40.7375022, "lon": -73.9562480 }, + { "lat": 40.7373691, "lon": -73.9564980 }, + { "lat": 40.7373585, "lon": -73.9565189 }, + { "lat": 40.7373530, "lon": -73.9565297 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Commercial Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Commercial", + "tiger:name_type": "St", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 221747615, + "bounds": { + "minlat": 40.7016390, + "minlon": -73.9422576, + "maxlat": 40.7017980, + "maxlon": -73.9405440 + }, + "nodes": [ + 42467803, + 9752127013, + 8229303531, + 9752127021, + 42501379 + ], + "geometry": [ + { "lat": 40.7016390, "lon": -73.9422576 }, + { "lat": 40.7016478, "lon": -73.9421632 }, + { "lat": 40.7017801, "lon": -73.9407356 }, + { "lat": 40.7017859, "lon": -73.9406733 }, + { "lat": 40.7017980, "lon": -73.9405440 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Debevoise Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Debevoise", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 221747617, + "bounds": { + "minlat": 40.7214740, + "minlon": -73.9469800, + "maxlat": 40.7215801, + "maxlon": -73.9458801 + }, + "nodes": [ + 42466383, + 9789356731, + 5482193513, + 9789356803, + 2987758896 + ], + "geometry": [ + { "lat": 40.7214740, "lon": -73.9469800 }, + { "lat": 40.7214833, "lon": -73.9468866 }, + { "lat": 40.7215234, "lon": -73.9464656 }, + { "lat": 40.7215665, "lon": -73.9459990 }, + { "lat": 40.7215801, "lon": -73.9458801 } + ], + "tags": { + "highway": "residential", + "name": "Engert Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 221753935, + "bounds": { + "minlat": 40.7002810, + "minlon": -73.9419310, + "maxlat": 40.7007250, + "maxlon": -73.9411490 + }, + "nodes": [ + 42504102, + 9752127026, + 13685766105, + 13685892609, + 9752127033, + 42499079 + ], + "geometry": [ + { "lat": 40.7007250, "lon": -73.9419310 }, + { "lat": 40.7006651, "lon": -73.9418255 }, + { "lat": 40.7006029, "lon": -73.9417160 }, + { "lat": 40.7005004, "lon": -73.9415354 }, + { "lat": 40.7003238, "lon": -73.9412241 }, + { "lat": 40.7002810, "lon": -73.9411490 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:zh": "百老汇", + "name:zh-Hans": "百老汇", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 221753936, + "bounds": { + "minlat": 40.7007250, + "minlon": -73.9419310, + "maxlat": 40.7010770, + "maxlon": -73.9404200 + }, + "nodes": [ + 42504102, + 9752127025, + 9752127071, + 42499081 + ], + "geometry": [ + { "lat": 40.7007250, "lon": -73.9419310 }, + { "lat": 40.7007598, "lon": -73.9417816 }, + { "lat": 40.7010338, "lon": -73.9405885 }, + { "lat": 40.7010770, "lon": -73.9404200 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY;Kings, NY", + "tiger:name_base": "Flushing", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11378;11237", + "tiger:zip_right": "11378", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 221753939, + "bounds": { + "minlat": 40.7014421, + "minlon": -73.9430887, + "maxlat": 40.7015656, + "maxlon": -73.9429929 + }, + "nodes": [ + 2307731133, + 5673259231, + 42467507 + ], + "geometry": [ + { "lat": 40.7015656, "lon": -73.9429929 }, + { "lat": 40.7015196, "lon": -73.9430273 }, + { "lat": 40.7014421, "lon": -73.9430887 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Debevoise Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Debevoise", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 221753941, + "bounds": { + "minlat": 40.7004050, + "minlon": -73.9446170, + "maxlat": 40.7004197, + "maxlon": -73.9444636 + }, + "nodes": [ + 42467502, + 9752127052, + 7711304341 + ], + "geometry": [ + { "lat": 40.7004050, "lon": -73.9446170 }, + { "lat": 40.7004156, "lon": -73.9445068 }, + { "lat": 40.7004197, "lon": -73.9444636 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY;Kings, NY", + "tiger:name_base": "Flushing", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11378;11237", + "tiger:zip_right": "11378", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 221753943, + "bounds": { + "minlat": 40.7037702, + "minlon": -73.9430860, + "maxlat": 40.7065970, + "maxlon": -73.9426206 + }, + "nodes": [ + 42467814, + 7589674466, + 11229826594, + 9752126959, + 42467817, + 9752126960, + 11229826593, + 9952734771, + 42467820, + 9952734772, + 9952734781, + 42467823, + 9952734782, + 11229826592, + 9752594015, + 42467825 + ], + "geometry": [ + { "lat": 40.7037702, "lon": -73.9426206 }, + { "lat": 40.7038366, "lon": -73.9426306 }, + { "lat": 40.7042096, "lon": -73.9426912 }, + { "lat": 40.7044207, "lon": -73.9427255 }, + { "lat": 40.7044730, "lon": -73.9427340 }, + { "lat": 40.7045446, "lon": -73.9427457 }, + { "lat": 40.7047216, "lon": -73.9427747 }, + { "lat": 40.7051276, "lon": -73.9428411 }, + { "lat": 40.7051820, "lon": -73.9428500 }, + { "lat": 40.7052525, "lon": -73.9428616 }, + { "lat": 40.7058331, "lon": -73.9429570 }, + { "lat": 40.7058880, "lon": -73.9429660 }, + { "lat": 40.7059550, "lon": -73.9429773 }, + { "lat": 40.7063842, "lon": -73.9430499 }, + { "lat": 40.7065440, "lon": -73.9430770 }, + { "lat": 40.7065970, "lon": -73.9430860 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "oneway": "no", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 221753949, + "bounds": { + "minlat": 40.7004288, + "minlon": -73.9443862, + "maxlat": 40.7007023, + "maxlon": -73.9421164 + }, + "nodes": [ + 7711304351, + 9752127050, + 11229826629, + 5487724351, + 11229826599, + 13729664711, + 2530160374 + ], + "geometry": [ + { "lat": 40.7004288, "lon": -73.9443862 }, + { "lat": 40.7004435, "lon": -73.9442620 }, + { "lat": 40.7005018, "lon": -73.9437645 }, + { "lat": 40.7005174, "lon": -73.9436310 }, + { "lat": 40.7006678, "lon": -73.9423990 }, + { "lat": 40.7006734, "lon": -73.9423533 }, + { "lat": 40.7007023, "lon": -73.9421164 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY;Kings, NY", + "tiger:name_base": "Flushing", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11378;11237", + "tiger:zip_right": "11378", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 221795716, + "bounds": { + "minlat": 40.7235878, + "minlon": -73.9513449, + "maxlat": 40.7237720, + "maxlon": -73.9507880 + }, + "nodes": [ + 6980674614, + 9789356701, + 42479281 + ], + "geometry": [ + { "lat": 40.7235878, "lon": -73.9513449 }, + { "lat": 40.7237434, "lon": -73.9508746 }, + { "lat": 40.7237720, "lon": -73.9507880 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "name": "Nassau Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 221795720, + "bounds": { + "minlat": 40.7251520, + "minlon": -73.9546204, + "maxlat": 40.7287302, + "maxlon": -73.9525970 + }, + "nodes": [ + 42498320, + 8097222271, + 8097222268, + 7725544403, + 9788947499, + 8549558992, + 9789402878, + 42516604, + 9789402876, + 9789343585, + 42527678 + ], + "geometry": [ + { "lat": 40.7287302, "lon": -73.9546204 }, + { "lat": 40.7286552, "lon": -73.9545808 }, + { "lat": 40.7279090, "lon": -73.9541690 }, + { "lat": 40.7278571, "lon": -73.9541355 }, + { "lat": 40.7278009, "lon": -73.9541001 }, + { "lat": 40.7269129, "lon": -73.9536002 }, + { "lat": 40.7268811, "lon": -73.9535824 }, + { "lat": 40.7268212, "lon": -73.9535492 }, + { "lat": 40.7267623, "lon": -73.9535160 }, + { "lat": 40.7252231, "lon": -73.9526375 }, + { "lat": 40.7251520, "lon": -73.9525970 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Lorimer", + "tiger:name_type": "St", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 221795721, + "bounds": { + "minlat": 40.7264162, + "minlon": -73.9362535, + "maxlat": 40.7274928, + "maxlon": -73.9360815 + }, + "nodes": [ + 42502778, + 9789356932, + 5891914561, + 7833503756, + 5482263280, + 42479406 + ], + "geometry": [ + { "lat": 40.7274928, "lon": -73.9362535 }, + { "lat": 40.7273939, "lon": -73.9362432 }, + { "lat": 40.7273375, "lon": -73.9362374 }, + { "lat": 40.7269780, "lon": -73.9361761 }, + { "lat": 40.7266723, "lon": -73.9361273 }, + { "lat": 40.7264162, "lon": -73.9360815 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 221921319, + "bounds": { + "minlat": 40.7811784, + "minlon": -74.0070254, + "maxlat": 40.7831880, + "maxlon": -74.0056430 + }, + "nodes": [ + 308678964, + 7300731117, + 308678969, + 7300731123, + 7300731140, + 308678971, + 2308993163 + ], + "geometry": [ + { "lat": 40.7831880, "lon": -74.0070254 }, + { "lat": 40.7822215, "lon": -74.0063625 }, + { "lat": 40.7821403, "lon": -74.0063046 }, + { "lat": 40.7820365, "lon": -74.0062316 }, + { "lat": 40.7816884, "lon": -74.0059867 }, + { "lat": 40.7812344, "lon": -74.0056674 }, + { "lat": 40.7811784, "lon": -74.0056430 } + ], + "tags": { + "highway": "residential", + "name": "Riverwalk Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 222248830, + "bounds": { + "minlat": 40.6999109, + "minlon": -73.9829948, + "maxlat": 40.7012852, + "maxlon": -73.9829261 + }, + "nodes": [ + 2406369801, + 598050841, + 494509207, + 598050840, + 5912952463 + ], + "geometry": [ + { "lat": 40.7012852, "lon": -73.9829261 }, + { "lat": 40.7007803, "lon": -73.9829619 }, + { "lat": 40.7006062, "lon": -73.9829653 }, + { "lat": 40.7003456, "lon": -73.9829737 }, + { "lat": 40.6999109, "lon": -73.9829948 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Gold Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Gold", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 222258267, + "bounds": { + "minlat": 40.7000967, + "minlon": -73.9877775, + "maxlat": 40.7002116, + "maxlon": -73.9877709 + }, + "nodes": [ + 42469214, + 370870738 + ], + "geometry": [ + { "lat": 40.7002116, "lon": -73.9877709 }, + { "lat": 40.7000967, "lon": -73.9877775 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Pearl Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 222258268, + "bounds": { + "minlat": 40.7002116, + "minlon": -73.9886844, + "maxlat": 40.7002484, + "maxlon": -73.9877709 + }, + "nodes": [ + 42469214, + 13067984354, + 3413665528, + 11707467851, + 3413665530 + ], + "geometry": [ + { "lat": 40.7002116, "lon": -73.9877709 }, + { "lat": 40.7002138, "lon": -73.9878512 }, + { "lat": 40.7002348, "lon": -73.9886353 }, + { "lat": 40.7002384, "lon": -73.9886611 }, + { "lat": 40.7002484, "lon": -73.9886844 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "destination": "Adams Street", + "hgv": "local", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Sands Street", + "name:etymology:wikidata": "Q1708602", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Sands", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201" + } +}, +{ + "type": "way", + "id": 222258278, + "bounds": { + "minlat": 40.7001896, + "minlon": -73.9877709, + "maxlat": 40.7002116, + "maxlon": -73.9869304 + }, + "nodes": [ + 42497727, + 6224335506, + 10722387734, + 42469214 + ], + "geometry": [ + { "lat": 40.7001896, "lon": -73.9869304 }, + { "lat": 40.7001897, "lon": -73.9870460 }, + { "lat": 40.7002099, "lon": -73.9876795 }, + { "lat": 40.7002116, "lon": -73.9877709 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "destination": "Adams Street", + "hgv": "local", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "15 mph", + "maxspeed:type": "sign", + "name": "Sands Street", + "name:etymology:wikidata": "Q1708602", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Sands", + "tiger:name_type": "St", + "tiger:zip_left": "11201" + } +}, +{ + "type": "way", + "id": 222299238, + "bounds": { + "minlat": 40.7127130, + "minlon": -74.0106298, + "maxlat": 40.7131666, + "maxlon": -74.0096340 + }, + "nodes": [ + 42453952, + 11515442957, + 8279851460, + 12336775513 + ], + "geometry": [ + { "lat": 40.7127130, "lon": -74.0096340 }, + { "lat": 40.7127485, "lon": -74.0097120 }, + { "lat": 40.7127865, "lon": -74.0097957 }, + { "lat": 40.7131666, "lon": -74.0106298 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Barclay Street", + "name:etymology:wikidata": "Q94355342", + "name:ko": "바클레이 스트리트", + "name:ru": "Баркли-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14622883" + } +}, +{ + "type": "way", + "id": 222299240, + "bounds": { + "minlat": 40.7075066, + "minlon": -74.0158706, + "maxlat": 40.7077457, + "maxlon": -74.0157786 + }, + "nodes": [ + 588593611, + 11374474021, + 12296032333 + ], + "geometry": [ + { "lat": 40.7077457, "lon": -74.0157786 }, + { "lat": 40.7076454, "lon": -74.0158162 }, + { "lat": 40.7075066, "lon": -74.0158706 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 222299242, + "bounds": { + "minlat": 40.7135233, + "minlon": -73.9986438, + "maxlat": 40.7137811, + "maxlon": -73.9980743 + }, + "nodes": [ + 1773060099, + 8827539960, + 11153640060, + 1773055865 + ], + "geometry": [ + { "lat": 40.7137811, "lon": -73.9980743 }, + { "lat": 40.7136107, "lon": -73.9984499 }, + { "lat": 40.7135929, "lon": -73.9984870 }, + { "lat": 40.7135233, "lon": -73.9986438 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Chatham Square", + "name:etymology:wikidata": "Q208663", + "name:ko": "채텀 스퀘어", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through;right", + "wikidata": "Q5087691" + } +}, +{ + "type": "way", + "id": 222299248, + "bounds": { + "minlat": 40.7404187, + "minlon": -73.9790880, + "maxlat": 40.7410430, + "maxlon": -73.9786424 + }, + "nodes": [ + 42442898, + 7640856872, + 6139477294, + 7640871333, + 42442895 + ], + "geometry": [ + { "lat": 40.7410430, "lon": -73.9786424 }, + { "lat": 40.7409801, "lon": -73.9786879 }, + { "lat": 40.7407461, "lon": -73.9788547 }, + { "lat": 40.7404743, "lon": -73.9790484 }, + { "lat": 40.7404187, "lon": -73.9790880 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 222299254, + "bounds": { + "minlat": 40.7137935, + "minlon": -74.0088231, + "maxlat": 40.7143576, + "maxlon": -74.0083780 + }, + "nodes": [ + 42429562, + 8279851483, + 5135853006, + 8279851437, + 42449597 + ], + "geometry": [ + { "lat": 40.7137935, "lon": -74.0088231 }, + { "lat": 40.7138513, "lon": -74.0087773 }, + { "lat": 40.7142351, "lon": -74.0084745 }, + { "lat": 40.7142983, "lon": -74.0084248 }, + { "lat": 40.7143576, "lon": -74.0083780 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 222299258, + "bounds": { + "minlat": 40.7416552, + "minlon": -73.9799687, + "maxlat": 40.7424195, + "maxlon": -73.9781701 + }, + "nodes": [ + 42436754, + 7640871294, + 9165725162, + 9510729384 + ], + "geometry": [ + { "lat": 40.7416552, "lon": -73.9781701 }, + { "lat": 40.7417137, "lon": -73.9782925 }, + { "lat": 40.7419305, "lon": -73.9788122 }, + { "lat": 40.7424195, "lon": -73.9799687 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 29th Street", + "name:ru": "Восточная 29-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 222299272, + "bounds": { + "minlat": 40.7137935, + "minlon": -74.0101630, + "maxlat": 40.7143998, + "maxlon": -74.0088231 + }, + "nodes": [ + 42429562, + 8279851485, + 8279851477, + 42429563 + ], + "geometry": [ + { "lat": 40.7137935, "lon": -74.0088231 }, + { "lat": 40.7138544, "lon": -74.0089559 }, + { "lat": 40.7143407, "lon": -74.0100342 }, + { "lat": 40.7143998, "lon": -74.0101630 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lcn": "yes", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 222299273, + "bounds": { + "minlat": 40.7150409, + "minlon": -74.0135806, + "maxlat": 40.7152775, + "maxlon": -74.0135224 + }, + "nodes": [ + 246858435, + 11292548511, + 3594896445 + ], + "geometry": [ + { "lat": 40.7152775, "lon": -74.0135224 }, + { "lat": 40.7151666, "lon": -74.0135497 }, + { "lat": 40.7150409, "lon": -74.0135806 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 222299274, + "bounds": { + "minlat": 40.7164234, + "minlon": -74.0129331, + "maxlat": 40.7168432, + "maxlon": -74.0128305 + }, + "nodes": [ + 42449613, + 4872879375, + 12410398106 + ], + "geometry": [ + { "lat": 40.7164234, "lon": -74.0129331 }, + { "lat": 40.7165132, "lon": -74.0129112 }, + { "lat": 40.7168432, "lon": -74.0128305 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 222299275, + "bounds": { + "minlat": 40.7109130, + "minlon": -74.0090985, + "maxlat": 40.7113948, + "maxlon": -74.0086548 + }, + "nodes": [ + 42428391, + 10290135943, + 10290135958, + 10290135959, + 10290135957, + 8262936593, + 4741363705, + 8262936604, + 10290135964, + 42428385 + ], + "geometry": [ + { "lat": 40.7113948, "lon": -74.0086548 }, + { "lat": 40.7113864, "lon": -74.0086652 }, + { "lat": 40.7113777, "lon": -74.0086830 }, + { "lat": 40.7113686, "lon": -74.0087097 }, + { "lat": 40.7113606, "lon": -74.0087299 }, + { "lat": 40.7113496, "lon": -74.0087455 }, + { "lat": 40.7112692, "lon": -74.0088122 }, + { "lat": 40.7109698, "lon": -74.0090639 }, + { "lat": 40.7109395, "lon": -74.0090856 }, + { "lat": 40.7109130, "lon": -74.0090985 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 222299276, + "bounds": { + "minlat": 40.7406465, + "minlon": -73.9757944, + "maxlat": 40.7426694, + "maxlon": -73.9743233 + }, + "nodes": [ + 42436756, + 8119192796, + 6716668055, + 42445417, + 6716668054, + 3839412209, + 13070824496, + 10593550845 + ], + "geometry": [ + { "lat": 40.7406465, "lon": -73.9757944 }, + { "lat": 40.7407058, "lon": -73.9757521 }, + { "lat": 40.7411978, "lon": -73.9753937 }, + { "lat": 40.7412737, "lon": -73.9753382 }, + { "lat": 40.7413544, "lon": -73.9752793 }, + { "lat": 40.7421626, "lon": -73.9746915 }, + { "lat": 40.7421632, "lon": -73.9746911 }, + { "lat": 40.7426694, "lon": -73.9743233 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 222299277, + "bounds": { + "minlat": 40.7127130, + "minlon": -74.0096340, + "maxlat": 40.7131203, + "maxlon": -74.0093483 + }, + "nodes": [ + 42453952, + 10288802632, + 8279851458, + 11460901643, + 11460901642, + 10689662209 + ], + "geometry": [ + { "lat": 40.7127130, "lon": -74.0096340 }, + { "lat": 40.7127384, "lon": -74.0096207 }, + { "lat": 40.7127819, "lon": -74.0095998 }, + { "lat": 40.7128077, "lon": -74.0095865 }, + { "lat": 40.7128331, "lon": -74.0095696 }, + { "lat": 40.7131203, "lon": -74.0093483 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 222857220, + "bounds": { + "minlat": 40.7778751, + "minlon": -74.0136262, + "maxlat": 40.7790686, + "maxlon": -74.0122300 + }, + "nodes": [ + 103872547, + 103856775, + 7387641031, + 103872551, + 103872553, + 7377177668, + 103858361, + 7468512658, + 103872555, + 103872557, + 103872559, + 7468512660, + 103860806 + ], + "geometry": [ + { "lat": 40.7778751, "lon": -74.0136262 }, + { "lat": 40.7779220, "lon": -74.0135960 }, + { "lat": 40.7779407, "lon": -74.0135796 }, + { "lat": 40.7781070, "lon": -74.0134340 }, + { "lat": 40.7782736, "lon": -74.0132466 }, + { "lat": 40.7783497, "lon": -74.0131380 }, + { "lat": 40.7784211, "lon": -74.0130405 }, + { "lat": 40.7784513, "lon": -74.0129779 }, + { "lat": 40.7785458, "lon": -74.0128116 }, + { "lat": 40.7787678, "lon": -74.0125184 }, + { "lat": 40.7789969, "lon": -74.0122914 }, + { "lat": 40.7790222, "lon": -74.0122697 }, + { "lat": 40.7790686, "lon": -74.0122300 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 222857258, + "bounds": { + "minlat": 40.8053224, + "minlon": -74.0009941, + "maxlat": 40.8060064, + "maxlon": -73.9994976 + }, + "nodes": [ + 103870490, + 103870491, + 103870493, + 5465261899, + 5465261892, + 12397839601 + ], + "geometry": [ + { "lat": 40.8053224, "lon": -73.9994976 }, + { "lat": 40.8057457, "lon": -74.0004220 }, + { "lat": 40.8058287, "lon": -74.0006032 }, + { "lat": 40.8058612, "lon": -74.0006741 }, + { "lat": 40.8059075, "lon": -74.0007752 }, + { "lat": 40.8060064, "lon": -74.0009941 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 222857259, + "bounds": { + "minlat": 40.8032093, + "minlon": -73.9964192, + "maxlat": 40.8038468, + "maxlon": -73.9960920 + }, + "nodes": [ + 103861207, + 103870484, + 103870483, + 103870482, + 103869216 + ], + "geometry": [ + { "lat": 40.8038468, "lon": -73.9964192 }, + { "lat": 40.8037615, "lon": -73.9963226 }, + { "lat": 40.8036478, "lon": -73.9962475 }, + { "lat": 40.8034976, "lon": -73.9961563 }, + { "lat": 40.8032093, "lon": -73.9960920 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 222857287, + "bounds": { + "minlat": 40.7675954, + "minlon": -74.0180773, + "maxlat": 40.7692237, + "maxlon": -74.0164120 + }, + "nodes": [ + 12293447514, + 2318033748, + 7907100654, + 7357758958, + 12293747423 + ], + "geometry": [ + { "lat": 40.7675954, "lon": -74.0180773 }, + { "lat": 40.7677068, "lon": -74.0179840 }, + { "lat": 40.7679621, "lon": -74.0177485 }, + { "lat": 40.7691933, "lon": -74.0164418 }, + { "lat": 40.7692237, "lon": -74.0164120 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 222857288, + "bounds": { + "minlat": 40.7826372, + "minlon": -74.0082009, + "maxlat": 40.7830014, + "maxlon": -74.0075041 + }, + "nodes": [ + 4205626689, + 103856500, + 103856498, + 1793478692 + ], + "geometry": [ + { "lat": 40.7830014, "lon": -74.0075041 }, + { "lat": 40.7828648, "lon": -74.0078056 }, + { "lat": 40.7827718, "lon": -74.0079915 }, + { "lat": 40.7826372, "lon": -74.0082009 } + ], + "tags": { + "highway": "primary", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 222857306, + "bounds": { + "minlat": 40.8057483, + "minlon": -74.0004120, + "maxlat": 40.8096967, + "maxlon": -73.9977802 + }, + "nodes": [ + 103869246, + 103869244, + 103863400, + 103869242, + 103869240, + 4640080332, + 103869238, + 103869237, + 103869236, + 103869234, + 302257203, + 103869232, + 103866912, + 103869230, + 8605560841, + 12396862812, + 103869228 + ], + "geometry": [ + { "lat": 40.8096967, "lon": -74.0004120 }, + { "lat": 40.8096158, "lon": -74.0003770 }, + { "lat": 40.8093504, "lon": -74.0002845 }, + { "lat": 40.8089760, "lon": -74.0001750 }, + { "lat": 40.8086270, "lon": -74.0000240 }, + { "lat": 40.8084451, "lon": -73.9999464 }, + { "lat": 40.8083830, "lon": -73.9999200 }, + { "lat": 40.8079638, "lon": -73.9996778 }, + { "lat": 40.8079130, "lon": -73.9996460 }, + { "lat": 40.8075200, "lon": -73.9993340 }, + { "lat": 40.8074492, "lon": -73.9992778 }, + { "lat": 40.8071430, "lon": -73.9990350 }, + { "lat": 40.8071050, "lon": -73.9990010 }, + { "lat": 40.8062910, "lon": -73.9982860 }, + { "lat": 40.8060292, "lon": -73.9980420 }, + { "lat": 40.8058540, "lon": -73.9978787 }, + { "lat": 40.8057483, "lon": -73.9977802 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081243", + "highway": "secondary", + "name": "Woodcliff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Woodcliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223023941, + "bounds": { + "minlat": 40.7214172, + "minlon": -73.9624848, + "maxlat": 40.7228462, + "maxlon": -73.9605177 + }, + "nodes": [ + 42469511, + 9794890504, + 6742881843, + 3649553884, + 3649553878, + 3649553887, + 10045033615, + 3649553905, + 3649553907, + 3301397376, + 2319695136, + 2319695138, + 2319695140, + 3649553886, + 2319695189, + 2319695187, + 3301397400, + 2319695142, + 2319695136 + ], + "geometry": [ + { "lat": 40.7214172, "lon": -73.9605177 }, + { "lat": 40.7214774, "lon": -73.9606120 }, + { "lat": 40.7214942, "lon": -73.9606402 }, + { "lat": 40.7217190, "lon": -73.9610062 }, + { "lat": 40.7217618, "lon": -73.9610755 }, + { "lat": 40.7218254, "lon": -73.9611784 }, + { "lat": 40.7220006, "lon": -73.9614620 }, + { "lat": 40.7220189, "lon": -73.9614916 }, + { "lat": 40.7222257, "lon": -73.9618263 }, + { "lat": 40.7224717, "lon": -73.9622245 }, + { "lat": 40.7225495, "lon": -73.9623504 }, + { "lat": 40.7226186, "lon": -73.9624630 }, + { "lat": 40.7227305, "lon": -73.9624848 }, + { "lat": 40.7227867, "lon": -73.9624833 }, + { "lat": 40.7228462, "lon": -73.9624523 }, + { "lat": 40.7227690, "lon": -73.9623772 }, + { "lat": 40.7226956, "lon": -73.9623420 }, + { "lat": 40.7226796, "lon": -73.9623343 }, + { "lat": 40.7225495, "lon": -73.9623504 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 223482236, + "bounds": { + "minlat": 40.8091026, + "minlon": -73.9271386, + "maxlat": 40.8109714, + "maxlon": -73.9228681 + }, + "nodes": [ + 42761233, + 9908621364, + 9908621362, + 7553907618, + 13809294790, + 5482371886, + 9908621508, + 3638049583, + 9908621507, + 5482372321, + 10079791634, + 7553907595, + 8392333176, + 9163759313, + 9163759314, + 9163759312, + 10033563138, + 11882279874, + 3638058983 + ], + "geometry": [ + { "lat": 40.8091026, "lon": -73.9228681 }, + { "lat": 40.8091702, "lon": -73.9230299 }, + { "lat": 40.8091894, "lon": -73.9230757 }, + { "lat": 40.8093747, "lon": -73.9235191 }, + { "lat": 40.8095162, "lon": -73.9238523 }, + { "lat": 40.8096437, "lon": -73.9241528 }, + { "lat": 40.8100183, "lon": -73.9250322 }, + { "lat": 40.8100655, "lon": -73.9251430 }, + { "lat": 40.8101199, "lon": -73.9252722 }, + { "lat": 40.8103267, "lon": -73.9257636 }, + { "lat": 40.8104724, "lon": -73.9261000 }, + { "lat": 40.8104826, "lon": -73.9261234 }, + { "lat": 40.8107542, "lon": -73.9267953 }, + { "lat": 40.8107880, "lon": -73.9268673 }, + { "lat": 40.8108256, "lon": -73.9269320 }, + { "lat": 40.8108647, "lon": -73.9269919 }, + { "lat": 40.8108739, "lon": -73.9270045 }, + { "lat": 40.8108999, "lon": -73.9270402 }, + { "lat": 40.8109714, "lon": -73.9271386 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 223482244, + "bounds": { + "minlat": 40.8096350, + "minlon": -73.9287765, + "maxlat": 40.8098839, + "maxlon": -73.9281423 + }, + "nodes": [ + 7554088550, + 9163759302, + 7950964477, + 9908636610, + 7553907592 + ], + "geometry": [ + { "lat": 40.8098839, "lon": -73.9287765 }, + { "lat": 40.8098352, "lon": -73.9286241 }, + { "lat": 40.8097104, "lon": -73.9283274 }, + { "lat": 40.8096851, "lon": -73.9282670 }, + { "lat": 40.8096350, "lon": -73.9281423 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 136th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "136th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 223482247, + "bounds": { + "minlat": 40.8109714, + "minlon": -73.9271386, + "maxlat": 40.8110961, + "maxlon": -73.9270557 + }, + "nodes": [ + 3638058983, + 11882279840, + 2826997294 + ], + "geometry": [ + { "lat": 40.8109714, "lon": -73.9271386 }, + { "lat": 40.8110738, "lon": -73.9270717 }, + { "lat": 40.8110961, "lon": -73.9270557 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 223482248, + "bounds": { + "minlat": 40.8100660, + "minlon": -73.9278693, + "maxlat": 40.8106117, + "maxlon": -73.9277723 + }, + "nodes": [ + 2323814568, + 9908636612, + 9908636613, + 9163759309, + 7553826298, + 13041134728, + 9163759308, + 9163759307, + 9163759306, + 9163759305, + 9163759304 + ], + "geometry": [ + { "lat": 40.8106117, "lon": -73.9278337 }, + { "lat": 40.8104846, "lon": -73.9277974 }, + { "lat": 40.8104245, "lon": -73.9277813 }, + { "lat": 40.8103658, "lon": -73.9277723 }, + { "lat": 40.8103186, "lon": -73.9277727 }, + { "lat": 40.8102872, "lon": -73.9277759 }, + { "lat": 40.8102700, "lon": -73.9277776 }, + { "lat": 40.8102071, "lon": -73.9277944 }, + { "lat": 40.8101639, "lon": -73.9278135 }, + { "lat": 40.8101218, "lon": -73.9278341 }, + { "lat": 40.8100660, "lon": -73.9278693 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Lincoln Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 223482251, + "bounds": { + "minlat": 40.8120134, + "minlon": -73.9264845, + "maxlat": 40.8177800, + "maxlon": -73.9225778 + }, + "nodes": [ + 7554858683, + 6881351352, + 5482327052, + 42735676, + 6881351355, + 6881351369, + 6881378592, + 42735679, + 7554760669, + 42733951, + 42735684, + 7249274765, + 6852715619, + 42735687, + 6852715614, + 9903127461, + 42735692, + 9903127462, + 5441161229 + ], + "geometry": [ + { "lat": 40.8120134, "lon": -73.9264845 }, + { "lat": 40.8126565, "lon": -73.9260282 }, + { "lat": 40.8128441, "lon": -73.9258954 }, + { "lat": 40.8129723, "lon": -73.9258032 }, + { "lat": 40.8130708, "lon": -73.9257220 }, + { "lat": 40.8134912, "lon": -73.9254153 }, + { "lat": 40.8141959, "lon": -73.9248818 }, + { "lat": 40.8143800, "lon": -73.9247510 }, + { "lat": 40.8146238, "lon": -73.9245722 }, + { "lat": 40.8150510, "lon": -73.9242590 }, + { "lat": 40.8154390, "lon": -73.9240000 }, + { "lat": 40.8160082, "lon": -73.9235899 }, + { "lat": 40.8163461, "lon": -73.9233465 }, + { "lat": 40.8166980, "lon": -73.9230930 }, + { "lat": 40.8170580, "lon": -73.9229182 }, + { "lat": 40.8172886, "lon": -73.9228119 }, + { "lat": 40.8173962, "lon": -73.9227623 }, + { "lat": 40.8175125, "lon": -73.9227078 }, + { "lat": 40.8177800, "lon": -73.9225778 } + ], + "tags": { + "highway": "residential", + "name": "Morris Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 223482257, + "bounds": { + "minlat": 40.8114982, + "minlon": -73.9267335, + "maxlat": 40.8117373, + "maxlon": -73.9263975 + }, + "nodes": [ + 2826997295, + 11217150137, + 11217150138, + 7554858681, + 7554858679 + ], + "geometry": [ + { "lat": 40.8114982, "lon": -73.9263975 }, + { "lat": 40.8115642, "lon": -73.9264979 }, + { "lat": 40.8116359, "lon": -73.9265935 }, + { "lat": 40.8116811, "lon": -73.9266576 }, + { "lat": 40.8117373, "lon": -73.9267335 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "secondary", + "name": "East 139th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "139th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 223482496, + "bounds": { + "minlat": 40.8172775, + "minlon": -73.9192120, + "maxlat": 40.8179212, + "maxlon": -73.9189199 + }, + "nodes": [ + 8827329064, + 8827329060 + ], + "geometry": [ + { "lat": 40.8172775, "lon": -73.9192120 }, + { "lat": 40.8179212, "lon": -73.9189199 } + ], + "tags": { + "highway": "residential", + "name": "Courtlandt Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Courtland", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 223482497, + "bounds": { + "minlat": 40.8152589, + "minlon": -73.9288020, + "maxlat": 40.8165672, + "maxlon": -73.9282979 + }, + "nodes": [ + 42741440, + 12162704298, + 12162704263 + ], + "geometry": [ + { "lat": 40.8165672, "lon": -73.9282979 }, + { "lat": 40.8164984, "lon": -73.9283248 }, + { "lat": 40.8152589, "lon": -73.9288020 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 223482498, + "bounds": { + "minlat": 40.8185494, + "minlon": -73.9273865, + "maxlat": 40.8185896, + "maxlon": -73.9272357 + }, + "nodes": [ + 42741436, + 2408448905 + ], + "geometry": [ + { "lat": 40.8185896, "lon": -73.9273865 }, + { "lat": 40.8185494, "lon": -73.9272357 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 149th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455" + } +}, +{ + "type": "way", + "id": 223482500, + "bounds": { + "minlat": 40.8129659, + "minlon": -73.9191951, + "maxlat": 40.8141422, + "maxlon": -73.9160931 + }, + "nodes": [ + 42745890, + 9908621412, + 5482371864, + 2912071219, + 9908651005, + 3638040640 + ], + "geometry": [ + { "lat": 40.8141422, "lon": -73.9191951 }, + { "lat": 40.8140944, "lon": -73.9190755 }, + { "lat": 40.8135979, "lon": -73.9179058 }, + { "lat": 40.8134587, "lon": -73.9175804 }, + { "lat": 40.8129992, "lon": -73.9161996 }, + { "lat": 40.8129659, "lon": -73.9160931 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 146th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "146th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 223482501, + "bounds": { + "minlat": 40.8159624, + "minlon": -73.9163366, + "maxlat": 40.8164026, + "maxlon": -73.9157647 + }, + "nodes": [ + 9956030392, + 42746076, + 42746078, + 6415814854, + 42746080 + ], + "geometry": [ + { "lat": 40.8159624, "lon": -73.9163366 }, + { "lat": 40.8160750, "lon": -73.9161660 }, + { "lat": 40.8162721, "lon": -73.9159208 }, + { "lat": 40.8163055, "lon": -73.9158741 }, + { "lat": 40.8164026, "lon": -73.9157647 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Bergen Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bergen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223484144, + "bounds": { + "minlat": 40.8478175, + "minlon": -73.9077695, + "maxlat": 40.8478688, + "maxlon": -73.9075305 + }, + "nodes": [ + 2028383646, + 42741319 + ], + "geometry": [ + { "lat": 40.8478688, "lon": -73.9077695 }, + { "lat": 40.8478175, "lon": -73.9075305 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "East 176th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "176th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 223484150, + "bounds": { + "minlat": 40.8473122, + "minlon": -73.9073365, + "maxlat": 40.8477793, + "maxlon": -73.9037390 + }, + "nodes": [ + 4606046844, + 11492469822, + 11492469805, + 42747312, + 11492469804, + 42745108, + 13038683879, + 42746967, + 13038683883, + 10180921626, + 3639408932, + 42757913 + ], + "geometry": [ + { "lat": 40.8477793, "lon": -73.9073365 }, + { "lat": 40.8477525, "lon": -73.9072021 }, + { "lat": 40.8475996, "lon": -73.9064266 }, + { "lat": 40.8475834, "lon": -73.9063413 }, + { "lat": 40.8475713, "lon": -73.9062539 }, + { "lat": 40.8474880, "lon": -73.9055220 }, + { "lat": 40.8474004, "lon": -73.9046999 }, + { "lat": 40.8473920, "lon": -73.9046210 }, + { "lat": 40.8473840, "lon": -73.9045393 }, + { "lat": 40.8473163, "lon": -73.9038500 }, + { "lat": 40.8473122, "lon": -73.9037946 }, + { "lat": 40.8473280, "lon": -73.9037390 } + ], + "tags": { + "highway": "residential", + "name": "East 176th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "176th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 223485096, + "bounds": { + "minlat": 40.8806863, + "minlon": -73.9103664, + "maxlat": 40.8808667, + "maxlon": -73.9101048 + }, + "nodes": [ + 1544756322, + 8704209040, + 42752143 + ], + "geometry": [ + { "lat": 40.8808667, "lon": -73.9101048 }, + { "lat": 40.8807776, "lon": -73.9102330 }, + { "lat": 40.8806863, "lon": -73.9103664 } + ], + "tags": { + "highway": "secondary", + "name": "Riverdale Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Riverdale", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223485097, + "bounds": { + "minlat": 40.8808759, + "minlon": -73.9098025, + "maxlat": 40.8813503, + "maxlon": -73.9093299 + }, + "nodes": [ + 1544756425, + 1544756343, + 13471735792, + 1544756336, + 10132643270, + 42752145 + ], + "geometry": [ + { "lat": 40.8808759, "lon": -73.9098025 }, + { "lat": 40.8811176, "lon": -73.9095232 }, + { "lat": 40.8812273, "lon": -73.9094169 }, + { "lat": 40.8812583, "lon": -73.9093869 }, + { "lat": 40.8812681, "lon": -73.9093808 }, + { "lat": 40.8813503, "lon": -73.9093299 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Riverdale Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 223485098, + "bounds": { + "minlat": 40.8813503, + "minlon": -73.9093299, + "maxlat": 40.8824000, + "maxlon": -73.9080120 + }, + "nodes": [ + 42752145, + 10132643273, + 1545532956, + 7081562640, + 1544756420, + 13022227443, + 42748798 + ], + "geometry": [ + { "lat": 40.8813503, "lon": -73.9093299 }, + { "lat": 40.8813768, "lon": -73.9092382 }, + { "lat": 40.8813830, "lon": -73.9092169 }, + { "lat": 40.8815575, "lon": -73.9090005 }, + { "lat": 40.8816374, "lon": -73.9089014 }, + { "lat": 40.8823460, "lon": -73.9080755 }, + { "lat": 40.8824000, "lon": -73.9080120 } + ], + "tags": { + "highway": "residential", + "name": "Irwin Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Irwin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 223486853, + "bounds": { + "minlat": 40.8491457, + "minlon": -73.9354726, + "maxlat": 40.8498486, + "maxlon": -73.9349596 + }, + "nodes": [ + 42444069, + 9550791860, + 11595000982, + 11595000983, + 9550791805, + 42428090 + ], + "geometry": [ + { "lat": 40.8498486, "lon": -73.9349596 }, + { "lat": 40.8497629, "lon": -73.9350223 }, + { "lat": 40.8497120, "lon": -73.9350594 }, + { "lat": 40.8492473, "lon": -73.9353984 }, + { "lat": 40.8492026, "lon": -73.9354310 }, + { "lat": 40.8491457, "lon": -73.9354726 } + ], + "tags": { + "highway": "tertiary", + "name": "Wadsworth Avenue", + "name:etymology:wikidata": "Q2339186", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 223486854, + "bounds": { + "minlat": 40.8485206, + "minlon": -73.9370618, + "maxlat": 40.8489521, + "maxlon": -73.9359288 + }, + "nodes": [ + 42449637, + 9550791791, + 11595081922, + 12068929559, + 12068929558, + 9550791772, + 12068944086, + 42429023 + ], + "geometry": [ + { "lat": 40.8485206, "lon": -73.9359288 }, + { "lat": 40.8485656, "lon": -73.9360356 }, + { "lat": 40.8488737, "lon": -73.9367672 }, + { "lat": 40.8488991, "lon": -73.9368305 }, + { "lat": 40.8489092, "lon": -73.9368611 }, + { "lat": 40.8489192, "lon": -73.9368957 }, + { "lat": 40.8489276, "lon": -73.9369327 }, + { "lat": 40.8489521, "lon": -73.9370618 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 179th Street", + "name_1": "West 179 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "179th", + "tiger:name_base_1": "179", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223486855, + "bounds": { + "minlat": 40.8502949, + "minlon": -73.9382840, + "maxlat": 40.8509090, + "maxlon": -73.9360852 + }, + "nodes": [ + 4215760966, + 9550791822, + 42444081, + 9550791824, + 42430951, + 9563821078, + 42427190 + ], + "geometry": [ + { "lat": 40.8502949, "lon": -73.9360852 }, + { "lat": 40.8504375, "lon": -73.9365957 }, + { "lat": 40.8504587, "lon": -73.9366718 }, + { "lat": 40.8504833, "lon": -73.9367598 }, + { "lat": 40.8506515, "lon": -73.9373618 }, + { "lat": 40.8508788, "lon": -73.9381757 }, + { "lat": 40.8509090, "lon": -73.9382840 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 181st Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 223486856, + "bounds": { + "minlat": 40.8493131, + "minlon": -73.9389291, + "maxlat": 40.8499993, + "maxlon": -73.9386521 + }, + "nodes": [ + 60926076, + 12069006602, + 7485731543, + 9563821106, + 42427185 + ], + "geometry": [ + { "lat": 40.8493131, "lon": -73.9389291 }, + { "lat": 40.8493854, "lon": -73.9388994 }, + { "lat": 40.8496208, "lon": -73.9388049 }, + { "lat": 40.8499391, "lon": -73.9386763 }, + { "lat": 40.8499993, "lon": -73.9386521 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 223486857, + "bounds": { + "minlat": 40.8535820, + "minlon": -73.9322280, + "maxlat": 40.8567091, + "maxlon": -73.9284110 + }, + "nodes": [ + 42436293, + 8740550856, + 8740550862, + 42449653, + 8740550860, + 8740550741, + 42449654, + 8740550746, + 9563795473, + 42449656, + 9563795472, + 42437944, + 13011654530, + 704441646, + 13011654531, + 13011654529, + 42427773, + 13011654532, + 771717638, + 13011654533, + 771717643, + 13011654534, + 771717648, + 5403868125, + 42433138 + ], + "geometry": [ + { "lat": 40.8535820, "lon": -73.9322280 }, + { "lat": 40.8536557, "lon": -73.9321765 }, + { "lat": 40.8541564, "lon": -73.9318264 }, + { "lat": 40.8542096, "lon": -73.9317889 }, + { "lat": 40.8542710, "lon": -73.9317427 }, + { "lat": 40.8547772, "lon": -73.9313622 }, + { "lat": 40.8548307, "lon": -73.9313220 }, + { "lat": 40.8548912, "lon": -73.9312764 }, + { "lat": 40.8553674, "lon": -73.9309183 }, + { "lat": 40.8554227, "lon": -73.9308767 }, + { "lat": 40.8554976, "lon": -73.9308229 }, + { "lat": 40.8560770, "lon": -73.9304068 }, + { "lat": 40.8562521, "lon": -73.9302680 }, + { "lat": 40.8564022, "lon": -73.9301210 }, + { "lat": 40.8564650, "lon": -73.9300232 }, + { "lat": 40.8565516, "lon": -73.9298598 }, + { "lat": 40.8566083, "lon": -73.9297266 }, + { "lat": 40.8566612, "lon": -73.9295336 }, + { "lat": 40.8566959, "lon": -73.9293533 }, + { "lat": 40.8567088, "lon": -73.9291848 }, + { "lat": 40.8567091, "lon": -73.9290317 }, + { "lat": 40.8566949, "lon": -73.9288717 }, + { "lat": 40.8566705, "lon": -73.9287210 }, + { "lat": 40.8566361, "lon": -73.9285559 }, + { "lat": 40.8566060, "lon": -73.9284110 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Wadsworth Avenue", + "name:etymology:wikidata": "Q2339186", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 223486858, + "bounds": { + "minlat": 40.8507740, + "minlon": -73.9354260, + "maxlat": 40.8586621, + "maxlon": -73.9316245 + }, + "nodes": [ + 42429032, + 13703331223, + 5549743266, + 9563795507, + 42429035, + 9563795506, + 5549743261, + 11594999854, + 9563795514, + 42429044, + 9563795513, + 9563795528, + 42429058, + 9563795527, + 11596413300, + 5549743258, + 9563795531, + 42429072, + 9563795532, + 10151452108, + 10151452111, + 10151452100, + 9563795476, + 42429083, + 9563795477, + 11594925631, + 9563795380, + 42429094, + 6882325985, + 9608935864, + 9608935865, + 748725093, + 7588472450, + 748725098, + 42429100, + 6882325996, + 42429104, + 6882325995, + 11594925590, + 7395403290, + 42427780, + 7395403287, + 7050793930, + 42429109, + 7050770279, + 7740582994, + 13320061242 + ], + "geometry": [ + { "lat": 40.8507740, "lon": -73.9354260 }, + { "lat": 40.8510034, "lon": -73.9353071 }, + { "lat": 40.8511365, "lon": -73.9352376 }, + { "lat": 40.8513629, "lon": -73.9351199 }, + { "lat": 40.8514340, "lon": -73.9350830 }, + { "lat": 40.8515241, "lon": -73.9350387 }, + { "lat": 40.8516624, "lon": -73.9349706 }, + { "lat": 40.8516783, "lon": -73.9349628 }, + { "lat": 40.8520071, "lon": -73.9348011 }, + { "lat": 40.8520580, "lon": -73.9347760 }, + { "lat": 40.8521305, "lon": -73.9347386 }, + { "lat": 40.8526391, "lon": -73.9344764 }, + { "lat": 40.8527290, "lon": -73.9344300 }, + { "lat": 40.8527948, "lon": -73.9343969 }, + { "lat": 40.8528169, "lon": -73.9343858 }, + { "lat": 40.8528974, "lon": -73.9343453 }, + { "lat": 40.8531446, "lon": -73.9342209 }, + { "lat": 40.8532000, "lon": -73.9341930 }, + { "lat": 40.8532579, "lon": -73.9341636 }, + { "lat": 40.8533423, "lon": -73.9341202 }, + { "lat": 40.8534888, "lon": -73.9340453 }, + { "lat": 40.8536407, "lon": -73.9339676 }, + { "lat": 40.8540943, "lon": -73.9337353 }, + { "lat": 40.8541572, "lon": -73.9337034 }, + { "lat": 40.8542486, "lon": -73.9336732 }, + { "lat": 40.8550859, "lon": -73.9333947 }, + { "lat": 40.8552692, "lon": -73.9333334 }, + { "lat": 40.8553350, "lon": -73.9333120 }, + { "lat": 40.8553997, "lon": -73.9332903 }, + { "lat": 40.8555933, "lon": -73.9332213 }, + { "lat": 40.8557236, "lon": -73.9331646 }, + { "lat": 40.8558601, "lon": -73.9330936 }, + { "lat": 40.8561550, "lon": -73.9329358 }, + { "lat": 40.8564277, "lon": -73.9327965 }, + { "lat": 40.8565030, "lon": -73.9327610 }, + { "lat": 40.8566424, "lon": -73.9326759 }, + { "lat": 40.8567160, "lon": -73.9326310 }, + { "lat": 40.8567859, "lon": -73.9325946 }, + { "lat": 40.8569673, "lon": -73.9324992 }, + { "lat": 40.8577750, "lon": -73.9320746 }, + { "lat": 40.8578410, "lon": -73.9320430 }, + { "lat": 40.8579069, "lon": -73.9320084 }, + { "lat": 40.8582153, "lon": -73.9318471 }, + { "lat": 40.8582710, "lon": -73.9318180 }, + { "lat": 40.8583324, "lon": -73.9317893 }, + { "lat": 40.8585846, "lon": -73.9316576 }, + { "lat": 40.8586621, "lon": -73.9316245 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 223487712, + "bounds": { + "minlat": 40.8444832, + "minlon": -73.9228766, + "maxlat": 40.8451101, + "maxlon": -73.9225844 + }, + "nodes": [ + 12072283182, + 595757814 + ], + "geometry": [ + { "lat": 40.8451101, "lon": -73.9225844 }, + { "lat": 40.8444832, "lon": -73.9228766 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bridge": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 223487713, + "bounds": { + "minlat": 40.8389086, + "minlon": -73.9216852, + "maxlat": 40.8395363, + "maxlon": -73.9214217 + }, + "nodes": [ + 8822253410, + 2912071014, + 12163756867, + 2912071015, + 12163756866, + 12163756865, + 2912071016, + 12163756864, + 2912071017, + 2912071018, + 42745194 + ], + "geometry": [ + { "lat": 40.8395363, "lon": -73.9214217 }, + { "lat": 40.8394715, "lon": -73.9214282 }, + { "lat": 40.8394173, "lon": -73.9214381 }, + { "lat": 40.8393644, "lon": -73.9214501 }, + { "lat": 40.8393101, "lon": -73.9214647 }, + { "lat": 40.8392666, "lon": -73.9214794 }, + { "lat": 40.8392153, "lon": -73.9214991 }, + { "lat": 40.8391625, "lon": -73.9215253 }, + { "lat": 40.8391103, "lon": -73.9215576 }, + { "lat": 40.8390495, "lon": -73.9215948 }, + { "lat": 40.8389086, "lon": -73.9216852 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 223487715, + "bounds": { + "minlat": 40.8443645, + "minlon": -73.9226621, + "maxlat": 40.8444989, + "maxlon": -73.9226089 + }, + "nodes": [ + 60924012, + 595757763 + ], + "geometry": [ + { "lat": 40.8443645, "lon": -73.9226621 }, + { "lat": 40.8444989, "lon": -73.9226089 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "left|none|none|merge_to_left" + } +}, +{ + "type": "way", + "id": 223487716, + "bounds": { + "minlat": 40.8440769, + "minlon": -73.9230676, + "maxlat": 40.8442565, + "maxlon": -73.9229834 + }, + "nodes": [ + 12046762857, + 9910779444, + 60924188 + ], + "geometry": [ + { "lat": 40.8442565, "lon": -73.9229834 }, + { "lat": 40.8442077, "lon": -73.9230061 }, + { "lat": 40.8440769, "lon": -73.9230676 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 223487961, + "bounds": { + "minlat": 40.8558037, + "minlon": -73.9096496, + "maxlat": 40.8574544, + "maxlon": -73.9055814 + }, + "nodes": [ + 42736304, + 9918211885, + 13247486961, + 42745951, + 13247486953, + 13247486950, + 42756811, + 13247486936, + 42720041, + 13327577096, + 42740863, + 11748255126, + 42756817, + 4844775573, + 4844775574, + 13327591710, + 42769898 + ], + "geometry": [ + { "lat": 40.8558037, "lon": -73.9055814 }, + { "lat": 40.8558519, "lon": -73.9057136 }, + { "lat": 40.8560791, "lon": -73.9063729 }, + { "lat": 40.8561060, "lon": -73.9064510 }, + { "lat": 40.8561393, "lon": -73.9065458 }, + { "lat": 40.8563792, "lon": -73.9072286 }, + { "lat": 40.8564040, "lon": -73.9072990 }, + { "lat": 40.8564350, "lon": -73.9073884 }, + { "lat": 40.8566820, "lon": -73.9081020 }, + { "lat": 40.8569706, "lon": -73.9089125 }, + { "lat": 40.8569900, "lon": -73.9089670 }, + { "lat": 40.8570220, "lon": -73.9090467 }, + { "lat": 40.8571355, "lon": -73.9093300 }, + { "lat": 40.8571950, "lon": -73.9094080 }, + { "lat": 40.8572911, "lon": -73.9094977 }, + { "lat": 40.8573308, "lon": -73.9095347 }, + { "lat": 40.8574544, "lon": -73.9096496 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "name": "West 181st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "181st", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 223489090, + "bounds": { + "minlat": 40.8162664, + "minlon": -73.9141940, + "maxlat": 40.8197860, + "maxlon": -73.9121590 + }, + "nodes": [ + 42760889, + 42746090, + 42749770, + 42761071, + 13041711461, + 42760418 + ], + "geometry": [ + { "lat": 40.8197860, "lon": -73.9121590 }, + { "lat": 40.8187320, "lon": -73.9127612 }, + { "lat": 40.8179991, "lon": -73.9131800 }, + { "lat": 40.8165787, "lon": -73.9139915 }, + { "lat": 40.8163776, "lon": -73.9141219 }, + { "lat": 40.8162664, "lon": -73.9141940 } + ], + "tags": { + "highway": "residential", + "name": "Brook Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223489091, + "bounds": { + "minlat": 40.8160422, + "minlon": -73.9176913, + "maxlat": 40.8160969, + "maxlon": -73.9175816 + }, + "nodes": [ + 42761265, + 6415815570 + ], + "geometry": [ + { "lat": 40.8160969, "lon": -73.9175816 }, + { "lat": 40.8160422, "lon": -73.9176913 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "3rd Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 223489092, + "bounds": { + "minlat": 40.8160969, + "minlon": -73.9175816, + "maxlat": 40.8164960, + "maxlon": -73.9168720 + }, + "nodes": [ + 42761265, + 6415815536, + 6415814858, + 6415815555 + ], + "geometry": [ + { "lat": 40.8160969, "lon": -73.9175816 }, + { "lat": 40.8161417, "lon": -73.9174942 }, + { "lat": 40.8164884, "lon": -73.9168855 }, + { "lat": 40.8164960, "lon": -73.9168720 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 223503118, + "bounds": { + "minlat": 40.8292383, + "minlon": -73.9286756, + "maxlat": 40.8292642, + "maxlon": -73.9286366 + }, + "nodes": [ + 595786219, + 2411145317 + ], + "geometry": [ + { "lat": 40.8292642, "lon": -73.9286366 }, + { "lat": 40.8292383, "lon": -73.9286756 } + ], + "tags": { + "bicycle": "designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Macombs Dam Bridge", + "name:etymology:wikidata": "Q6724819", + "oneway": "no", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs Dam", + "tiger:name_type": "Brg" + } +}, +{ + "type": "way", + "id": 223503121, + "bounds": { + "minlat": 40.8281829, + "minlon": -73.9273359, + "maxlat": 40.8283043, + "maxlon": -73.9270358 + }, + "nodes": [ + 42748131, + 9910738423, + 9910738424, + 12163643884, + 2829219659 + ], + "geometry": [ + { "lat": 40.8281829, "lon": -73.9270358 }, + { "lat": 40.8282143, "lon": -73.9271222 }, + { "lat": 40.8282455, "lon": -73.9272003 }, + { "lat": 40.8282762, "lon": -73.9272723 }, + { "lat": 40.8283043, "lon": -73.9273359 } + ], + "tags": { + "busway:left": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes:forward": "through|", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 223503123, + "bounds": { + "minlat": 40.8352739, + "minlon": -73.9438727, + "maxlat": 40.8383851, + "maxlon": -73.9416526 + }, + "nodes": [ + 561035374, + 9935939373, + 5708485235, + 561035375, + 9566927298, + 9935939410, + 561035376, + 9935939409, + 11292676886, + 561035377, + 11292676885, + 11292676881, + 561035378, + 11292676878, + 9935939393, + 13320061256 + ], + "geometry": [ + { "lat": 40.8352739, "lon": -73.9438727 }, + { "lat": 40.8353347, "lon": -73.9438249 }, + { "lat": 40.8358436, "lon": -73.9434610 }, + { "lat": 40.8359013, "lon": -73.9434196 }, + { "lat": 40.8359606, "lon": -73.9433810 }, + { "lat": 40.8364516, "lon": -73.9430120 }, + { "lat": 40.8365195, "lon": -73.9429606 }, + { "lat": 40.8365871, "lon": -73.9429100 }, + { "lat": 40.8370857, "lon": -73.9425504 }, + { "lat": 40.8371502, "lon": -73.9425038 }, + { "lat": 40.8372071, "lon": -73.9424617 }, + { "lat": 40.8377119, "lon": -73.9420880 }, + { "lat": 40.8377650, "lon": -73.9420429 }, + { "lat": 40.8378278, "lon": -73.9420036 }, + { "lat": 40.8383507, "lon": -73.9416773 }, + { "lat": 40.8383851, "lon": -73.9416526 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "cycleway:right": "no", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 223503125, + "bounds": { + "minlat": 40.8328147, + "minlon": -73.9459388, + "maxlat": 40.8334848, + "maxlon": -73.9454338 + }, + "nodes": [ + 42428958, + 9703359674, + 9703359689, + 42428956 + ], + "geometry": [ + { "lat": 40.8334848, "lon": -73.9454338 }, + { "lat": 40.8334335, "lon": -73.9454725 }, + { "lat": 40.8329135, "lon": -73.9458642 }, + { "lat": 40.8328147, "lon": -73.9459388 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "turn:lanes": "left|through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 223503126, + "bounds": { + "minlat": 40.8350252, + "minlon": -73.9467835, + "maxlat": 40.8352106, + "maxlon": -73.9456882 + }, + "nodes": [ + 12998931041, + 9935939401, + 2512378851, + 13460886891, + 12547095006, + 587934268 + ], + "geometry": [ + { "lat": 40.8352106, "lon": -73.9456882 }, + { "lat": 40.8351832, "lon": -73.9458559 }, + { "lat": 40.8351618, "lon": -73.9459943 }, + { "lat": 40.8350593, "lon": -73.9465856 }, + { "lat": 40.8350498, "lon": -73.9466405 }, + { "lat": 40.8350252, "lon": -73.9467835 } + ], + "tags": { + "cycleway": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 223503127, + "bounds": { + "minlat": 40.8245675, + "minlon": -73.9519566, + "maxlat": 40.8264888, + "maxlon": -73.9505640 + }, + "nodes": [ + 42428931, + 9703359670, + 11193596013, + 42428928, + 11193596017, + 2922071090, + 42428926, + 2922071088, + 10743657297, + 42428922 + ], + "geometry": [ + { "lat": 40.8264888, "lon": -73.9505640 }, + { "lat": 40.8263884, "lon": -73.9506359 }, + { "lat": 40.8258703, "lon": -73.9510000 }, + { "lat": 40.8258004, "lon": -73.9510490 }, + { "lat": 40.8257494, "lon": -73.9510871 }, + { "lat": 40.8252517, "lon": -73.9514580 }, + { "lat": 40.8251862, "lon": -73.9515057 }, + { "lat": 40.8251320, "lon": -73.9515457 }, + { "lat": 40.8246280, "lon": -73.9519129 }, + { "lat": 40.8245675, "lon": -73.9519566 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 223503128, + "bounds": { + "minlat": 40.8327323, + "minlon": -73.9457489, + "maxlat": 40.8334033, + "maxlon": -73.9452488 + }, + "nodes": [ + 561035370, + 9703359690, + 9463603355, + 9680957587, + 561035371 + ], + "geometry": [ + { "lat": 40.8327323, "lon": -73.9457489 }, + { "lat": 40.8328359, "lon": -73.9456712 }, + { "lat": 40.8329462, "lon": -73.9455884 }, + { "lat": 40.8333547, "lon": -73.9452822 }, + { "lat": 40.8334033, "lon": -73.9452488 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 223508323, + "bounds": { + "minlat": 40.8742871, + "minlon": -73.9103590, + "maxlat": 40.8746035, + "maxlon": -73.9098910 + }, + "nodes": [ + 10128431625, + 1544782721 + ], + "geometry": [ + { "lat": 40.8746035, "lon": -73.9098910 }, + { "lat": 40.8742871, "lon": -73.9103590 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 223508325, + "bounds": { + "minlat": 40.8392425, + "minlon": -73.9430682, + "maxlat": 40.8401941, + "maxlon": -73.9412769 + }, + "nodes": [ + 42428973, + 9566927285, + 13703300749, + 6840573381, + 6840573384, + 9566927273, + 42427133 + ], + "geometry": [ + { "lat": 40.8392425, "lon": -73.9412769 }, + { "lat": 40.8392808, "lon": -73.9413489 }, + { "lat": 40.8393630, "lon": -73.9415035 }, + { "lat": 40.8399566, "lon": -73.9426210 }, + { "lat": 40.8401012, "lon": -73.9428931 }, + { "lat": 40.8401399, "lon": -73.9429655 }, + { "lat": 40.8401941, "lon": -73.9430682 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "West 165th Street", + "name_1": "West 165 Street", + "rcn_ref": "9", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "165th", + "tiger:name_base_1": "165", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 223508326, + "bounds": { + "minlat": 40.8769548, + "minlon": -73.9080206, + "maxlat": 40.8783047, + "maxlon": -73.9068850 + }, + "nodes": [ + 42746772, + 10868090886, + 1581436691, + 1544782732, + 1581436698, + 10868090883, + 42746768, + 10868090885, + 1544782755 + ], + "geometry": [ + { "lat": 40.8783047, "lon": -73.9080206 }, + { "lat": 40.8782332, "lon": -73.9079403 }, + { "lat": 40.8781338, "lon": -73.9078197 }, + { "lat": 40.8779229, "lon": -73.9075965 }, + { "lat": 40.8777588, "lon": -73.9074465 }, + { "lat": 40.8776004, "lon": -73.9073147 }, + { "lat": 40.8775244, "lon": -73.9072514 }, + { "lat": 40.8774360, "lon": -73.9071947 }, + { "lat": 40.8769548, "lon": -73.9068850 } + ], + "tags": { + "highway": "secondary", + "name": "West 230th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 223508328, + "bounds": { + "minlat": 40.8808190, + "minlon": -73.9083990, + "maxlat": 40.8819807, + "maxlon": -73.9072534 + }, + "nodes": [ + 42757968, + 12991055071, + 7081562642, + 5478818938, + 5478818940, + 1581431079, + 5478818942, + 13068269719, + 42748794 + ], + "geometry": [ + { "lat": 40.8808190, "lon": -73.9083990 }, + { "lat": 40.8808916, "lon": -73.9083294 }, + { "lat": 40.8810788, "lon": -73.9081500 }, + { "lat": 40.8813571, "lon": -73.9078833 }, + { "lat": 40.8814955, "lon": -73.9077506 }, + { "lat": 40.8815902, "lon": -73.9076598 }, + { "lat": 40.8816272, "lon": -73.9076213 }, + { "lat": 40.8819182, "lon": -73.9073184 }, + { "lat": 40.8819807, "lon": -73.9072534 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "foot": "yes", + "hgv": "delivery", + "highway": "residential", + "inline_skates": "yes", + "lcn": "yes", + "name": "Tibbett Avenue", + "name:etymology:wikidata": "Q28186791", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tibbett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 223508330, + "bounds": { + "minlat": 40.8359859, + "minlon": -73.9436263, + "maxlat": 40.8369869, + "maxlon": -73.9428906 + }, + "nodes": [ + 9263230750, + 9935939411, + 42428965, + 9935939412, + 9566927299, + 42428964 + ], + "geometry": [ + { "lat": 40.8369869, "lon": -73.9428906 }, + { "lat": 40.8366700, "lon": -73.9431215 }, + { "lat": 40.8366058, "lon": -73.9431703 }, + { "lat": 40.8365439, "lon": -73.9432186 }, + { "lat": 40.8360454, "lon": -73.9435830 }, + { "lat": 40.8359859, "lon": -73.9436263 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 223508331, + "bounds": { + "minlat": 40.8757242, + "minlon": -73.9083295, + "maxlat": 40.8765175, + "maxlon": -73.9070878 + }, + "nodes": [ + 1544782763, + 5871416385, + 5871416183, + 5871416184, + 10128431587, + 1544782730 + ], + "geometry": [ + { "lat": 40.8765175, "lon": -73.9070878 }, + { "lat": 40.8763870, "lon": -73.9073410 }, + { "lat": 40.8761672, "lon": -73.9077389 }, + { "lat": 40.8759517, "lon": -73.9080407 }, + { "lat": 40.8758289, "lon": -73.9081942 }, + { "lat": 40.8757242, "lon": -73.9083295 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 223508332, + "bounds": { + "minlat": 40.8798080, + "minlon": -73.9093299, + "maxlat": 40.8813503, + "maxlon": -73.9065750 + }, + "nodes": [ + 42748562, + 13068285847, + 13068326705, + 12009981865, + 42735474, + 13068319297, + 7043169394, + 13017858967, + 42757968, + 10132643589, + 13471735793, + 10132643588, + 42752145 + ], + "geometry": [ + { "lat": 40.8798080, "lon": -73.9065750 }, + { "lat": 40.8798614, "lon": -73.9066715 }, + { "lat": 40.8803568, "lon": -73.9075654 }, + { "lat": 40.8803642, "lon": -73.9075788 }, + { "lat": 40.8803970, "lon": -73.9076380 }, + { "lat": 40.8804415, "lon": -73.9077183 }, + { "lat": 40.8806565, "lon": -73.9081060 }, + { "lat": 40.8807778, "lon": -73.9083246 }, + { "lat": 40.8808190, "lon": -73.9083990 }, + { "lat": 40.8808766, "lon": -73.9085011 }, + { "lat": 40.8811842, "lon": -73.9090372 }, + { "lat": 40.8812820, "lon": -73.9092078 }, + { "lat": 40.8813503, "lon": -73.9093299 } + ], + "tags": { + "highway": "residential", + "name": "West 231st Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "231st", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 223508335, + "bounds": { + "minlat": 40.8798080, + "minlon": -73.9065750, + "maxlat": 40.8851091, + "maxlon": -73.9010845 + }, + "nodes": [ + 42748562, + 13068285851, + 13701087843, + 42734330, + 8499608055, + 5478818944, + 8153243816, + 42748566, + 13700873946, + 42748572, + 42739592, + 1544814526, + 5487933909, + 1581399228, + 42720144, + 5487928570, + 5487856815, + 5487924700, + 5487856814, + 11126690600, + 1544651256, + 13146730926, + 1931696823 + ], + "geometry": [ + { "lat": 40.8798080, "lon": -73.9065750 }, + { "lat": 40.8798762, "lon": -73.9065080 }, + { "lat": 40.8799906, "lon": -73.9063959 }, + { "lat": 40.8802710, "lon": -73.9061210 }, + { "lat": 40.8804167, "lon": -73.9059805 }, + { "lat": 40.8804808, "lon": -73.9059187 }, + { "lat": 40.8805340, "lon": -73.9058674 }, + { "lat": 40.8809670, "lon": -73.9054500 }, + { "lat": 40.8810752, "lon": -73.9053511 }, + { "lat": 40.8816010, "lon": -73.9048340 }, + { "lat": 40.8823830, "lon": -73.9040730 }, + { "lat": 40.8833949, "lon": -73.9030880 }, + { "lat": 40.8834652, "lon": -73.9030057 }, + { "lat": 40.8835766, "lon": -73.9028752 }, + { "lat": 40.8838368, "lon": -73.9025714 }, + { "lat": 40.8840846, "lon": -73.9022821 }, + { "lat": 40.8847083, "lon": -73.9015858 }, + { "lat": 40.8847408, "lon": -73.9015476 }, + { "lat": 40.8848444, "lon": -73.9014285 }, + { "lat": 40.8849216, "lon": -73.9013382 }, + { "lat": 40.8850585, "lon": -73.9011781 }, + { "lat": 40.8850754, "lon": -73.9011469 }, + { "lat": 40.8851091, "lon": -73.9010845 } + ], + "tags": { + "highway": "residential", + "name": "Kingsbridge Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Kingsbridge", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 223694140, + "bounds": { + "minlat": 40.8461019, + "minlon": -73.9786782, + "maxlat": 40.8504770, + "maxlon": -73.9771890 + }, + "nodes": [ + 103245978, + 103171562, + 103245976, + 103245974, + 5108604348, + 103245972, + 103230895, + 103232123, + 103245970, + 7366850563, + 7460513507, + 103182296, + 4205772576 + ], + "geometry": [ + { "lat": 40.8504770, "lon": -73.9771890 }, + { "lat": 40.8502307, "lon": -73.9773847 }, + { "lat": 40.8496690, "lon": -73.9778550 }, + { "lat": 40.8494030, "lon": -73.9780740 }, + { "lat": 40.8492451, "lon": -73.9781400 }, + { "lat": 40.8490438, "lon": -73.9781905 }, + { "lat": 40.8481341, "lon": -73.9783967 }, + { "lat": 40.8473540, "lon": -73.9785690 }, + { "lat": 40.8471570, "lon": -73.9786010 }, + { "lat": 40.8470105, "lon": -73.9786120 }, + { "lat": 40.8468011, "lon": -73.9786278 }, + { "lat": 40.8465330, "lon": -73.9786480 }, + { "lat": 40.8461019, "lon": -73.9786782 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "lanes": "2", + "name": "Anderson Avenue", + "oneway": "yes", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 223694144, + "bounds": { + "minlat": 40.8017753, + "minlon": -74.0066100, + "maxlat": 40.8084009, + "maxlon": -74.0019807 + }, + "nodes": [ + 103866684, + 4727867676, + 5481884758, + 13602075848, + 103866682, + 4727867671, + 7610879148, + 5481884765, + 5481884762, + 7475979781, + 103866680, + 103866678, + 103866676, + 103866675, + 103866672, + 7474656149, + 4727867807, + 103866670 + ], + "geometry": [ + { "lat": 40.8084009, "lon": -74.0019807 }, + { "lat": 40.8083573, "lon": -74.0020104 }, + { "lat": 40.8078786, "lon": -74.0023367 }, + { "lat": 40.8075268, "lon": -74.0025753 }, + { "lat": 40.8066433, "lon": -74.0031789 }, + { "lat": 40.8065948, "lon": -74.0032120 }, + { "lat": 40.8064974, "lon": -74.0032799 }, + { "lat": 40.8062362, "lon": -74.0034620 }, + { "lat": 40.8059591, "lon": -74.0036550 }, + { "lat": 40.8052893, "lon": -74.0041201 }, + { "lat": 40.8052328, "lon": -74.0041593 }, + { "lat": 40.8037280, "lon": -74.0051500 }, + { "lat": 40.8030990, "lon": -74.0056050 }, + { "lat": 40.8029490, "lon": -74.0057190 }, + { "lat": 40.8023853, "lon": -74.0061537 }, + { "lat": 40.8023451, "lon": -74.0061841 }, + { "lat": 40.8018586, "lon": -74.0065485 }, + { "lat": 40.8017753, "lon": -74.0066100 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680; Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721; Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093; 07087", + "tiger:zip_right": "07047:07087:07093; 07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 223694171, + "bounds": { + "minlat": 40.7823423, + "minlon": -74.0212812, + "maxlat": 40.7888536, + "maxlon": -74.0163565 + }, + "nodes": [ + 103864124, + 7660979504, + 7660979506, + 103866630, + 7657469054, + 103866628, + 7657469051, + 7657469048, + 103862002, + 7657469045, + 7657469042, + 103866626, + 103866624, + 7657468994, + 7657468996, + 103860943, + 7657468936, + 103866610, + 7657468919, + 103866607, + 103866605, + 7617909901, + 7617909898, + 103865129, + 7617907284, + 7617909889, + 103865104, + 103864302, + 7613768216, + 7472526237, + 103855264, + 103855296, + 7472526174, + 7472526169, + 103866603, + 7472526166, + 7472526163, + 103866601, + 7613768149, + 7472526113, + 103866599, + 7472526116, + 7472526119 + ], + "geometry": [ + { "lat": 40.7888536, "lon": -74.0163565 }, + { "lat": 40.7887524, "lon": -74.0164376 }, + { "lat": 40.7884199, "lon": -74.0166846 }, + { "lat": 40.7883550, "lon": -74.0167334 }, + { "lat": 40.7882626, "lon": -74.0168030 }, + { "lat": 40.7882066, "lon": -74.0168452 }, + { "lat": 40.7881537, "lon": -74.0168850 }, + { "lat": 40.7876676, "lon": -74.0172558 }, + { "lat": 40.7876148, "lon": -74.0172931 }, + { "lat": 40.7875469, "lon": -74.0173448 }, + { "lat": 40.7870271, "lon": -74.0177385 }, + { "lat": 40.7869968, "lon": -74.0177600 }, + { "lat": 40.7869199, "lon": -74.0178190 }, + { "lat": 40.7868630, "lon": -74.0178623 }, + { "lat": 40.7864577, "lon": -74.0181682 }, + { "lat": 40.7863953, "lon": -74.0182168 }, + { "lat": 40.7863307, "lon": -74.0182683 }, + { "lat": 40.7860542, "lon": -74.0184739 }, + { "lat": 40.7857033, "lon": -74.0187379 }, + { "lat": 40.7856339, "lon": -74.0187927 }, + { "lat": 40.7855527, "lon": -74.0188550 }, + { "lat": 40.7854985, "lon": -74.0188971 }, + { "lat": 40.7851687, "lon": -74.0191412 }, + { "lat": 40.7851207, "lon": -74.0191781 }, + { "lat": 40.7850859, "lon": -74.0192037 }, + { "lat": 40.7849843, "lon": -74.0192816 }, + { "lat": 40.7849293, "lon": -74.0193238 }, + { "lat": 40.7846361, "lon": -74.0195469 }, + { "lat": 40.7845626, "lon": -74.0196026 }, + { "lat": 40.7842785, "lon": -74.0198188 }, + { "lat": 40.7842218, "lon": -74.0198614 }, + { "lat": 40.7840382, "lon": -74.0200054 }, + { "lat": 40.7839828, "lon": -74.0200491 }, + { "lat": 40.7835042, "lon": -74.0204145 }, + { "lat": 40.7834503, "lon": -74.0204581 }, + { "lat": 40.7833950, "lon": -74.0205025 }, + { "lat": 40.7832157, "lon": -74.0206357 }, + { "lat": 40.7831514, "lon": -74.0206881 }, + { "lat": 40.7830878, "lon": -74.0207364 }, + { "lat": 40.7829098, "lon": -74.0208666 }, + { "lat": 40.7828527, "lon": -74.0209139 }, + { "lat": 40.7827819, "lon": -74.0209735 }, + { "lat": 40.7823423, "lon": -74.0212812 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680; Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721; Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093; 07087", + "tiger:zip_right": "07047:07087:07093; 07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 223694172, + "bounds": { + "minlat": 40.7997300, + "minlon": -74.0081390, + "maxlat": 40.8003222, + "maxlon": -74.0077154 + }, + "nodes": [ + 103866662, + 7678477572, + 7678477575, + 103866660, + 7678477578, + 7678477580, + 103866658 + ], + "geometry": [ + { "lat": 40.8003222, "lon": -74.0077154 }, + { "lat": 40.8002699, "lon": -74.0077508 }, + { "lat": 40.8000854, "lon": -74.0078756 }, + { "lat": 40.8000420, "lon": -74.0079050 }, + { "lat": 40.7999901, "lon": -74.0079439 }, + { "lat": 40.7997675, "lon": -74.0081108 }, + { "lat": 40.7997300, "lon": -74.0081390 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680; Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721; Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093; 07087", + "tiger:zip_right": "07047:07087:07093; 07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 223694174, + "bounds": { + "minlat": 40.7889250, + "minlon": -74.0162990, + "maxlat": 40.7898880, + "maxlon": -74.0155848 + }, + "nodes": [ + 103866632, + 7660979597, + 7660979599, + 103864128 + ], + "geometry": [ + { "lat": 40.7898880, "lon": -74.0155848 }, + { "lat": 40.7898240, "lon": -74.0156319 }, + { "lat": 40.7889776, "lon": -74.0162659 }, + { "lat": 40.7889250, "lon": -74.0162990 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680; Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721; Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093; 07087", + "tiger:zip_right": "07047:07087:07093; 07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 223694176, + "bounds": { + "minlat": 40.8551733, + "minlon": -73.9681906, + "maxlat": 40.8553476, + "maxlon": -73.9675921 + }, + "nodes": [ + 4207161476, + 752651550, + 4054733409, + 752650952 + ], + "geometry": [ + { "lat": 40.8553476, "lon": -73.9681906 }, + { "lat": 40.8552116, "lon": -73.9678145 }, + { "lat": 40.8552029, "lon": -73.9677641 }, + { "lat": 40.8551733, "lon": -73.9675921 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Bridge Plaza North", + "old_name": "Cross Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 223694179, + "bounds": { + "minlat": 40.8527073, + "minlon": -73.9665579, + "maxlat": 40.8529762, + "maxlon": -73.9653462 + }, + "nodes": [ + 4204773589, + 103126804, + 7930510616, + 103280489, + 7930510630, + 103280488, + 7930510624, + 3257513367, + 3257513366, + 10000920081, + 103280486 + ], + "geometry": [ + { "lat": 40.8529762, "lon": -73.9665579 }, + { "lat": 40.8529234, "lon": -73.9664107 }, + { "lat": 40.8528818, "lon": -73.9662909 }, + { "lat": 40.8528504, "lon": -73.9661941 }, + { "lat": 40.8528214, "lon": -73.9660902 }, + { "lat": 40.8528000, "lon": -73.9659947 }, + { "lat": 40.8527799, "lon": -73.9658868 }, + { "lat": 40.8527637, "lon": -73.9657826 }, + { "lat": 40.8527465, "lon": -73.9656542 }, + { "lat": 40.8527236, "lon": -73.9654741 }, + { "lat": 40.8527073, "lon": -73.9653462 } + ], + "tags": { + "highway": "primary", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 223694181, + "bounds": { + "minlat": 40.8397763, + "minlon": -74.0039030, + "maxlat": 40.8415454, + "maxlon": -74.0024864 + }, + "nodes": [ + 103224073, + 12016147316, + 103222030, + 9884522573, + 9884522564, + 103224075, + 12016147296, + 12016147297, + 103156988 + ], + "geometry": [ + { "lat": 40.8415454, "lon": -74.0024864 }, + { "lat": 40.8415035, "lon": -74.0025205 }, + { "lat": 40.8409575, "lon": -74.0029637 }, + { "lat": 40.8408449, "lon": -74.0030544 }, + { "lat": 40.8405225, "lon": -74.0033193 }, + { "lat": 40.8403737, "lon": -74.0034423 }, + { "lat": 40.8401001, "lon": -74.0036611 }, + { "lat": 40.8399947, "lon": -74.0037488 }, + { "lat": 40.8397763, "lon": -74.0039030 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21:A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 223694185, + "bounds": { + "minlat": 40.8248522, + "minlon": -74.0103674, + "maxlat": 40.8304936, + "maxlon": -74.0090818 + }, + "nodes": [ + 103139525, + 5755158091, + 5751062119, + 13527754332, + 5751062652, + 103224020, + 103224022, + 103116963, + 13527754327, + 103157666, + 13527758314, + 103224024, + 103224025, + 103224027, + 103224029, + 103224031, + 11101387827, + 103224033, + 103224034, + 695054583, + 12016315273, + 12016315272, + 12016315271, + 103224037 + ], + "geometry": [ + { "lat": 40.8248522, "lon": -74.0090818 }, + { "lat": 40.8248769, "lon": -74.0090949 }, + { "lat": 40.8249115, "lon": -74.0091130 }, + { "lat": 40.8249607, "lon": -74.0091397 }, + { "lat": 40.8251501, "lon": -74.0092424 }, + { "lat": 40.8254290, "lon": -74.0093990 }, + { "lat": 40.8258735, "lon": -74.0096054 }, + { "lat": 40.8261349, "lon": -74.0097380 }, + { "lat": 40.8268849, "lon": -74.0100879 }, + { "lat": 40.8269337, "lon": -74.0101106 }, + { "lat": 40.8270004, "lon": -74.0101379 }, + { "lat": 40.8270790, "lon": -74.0101700 }, + { "lat": 40.8272580, "lon": -74.0102350 }, + { "lat": 40.8274390, "lon": -74.0102830 }, + { "lat": 40.8276230, "lon": -74.0103150 }, + { "lat": 40.8278080, "lon": -74.0103290 }, + { "lat": 40.8284184, "lon": -74.0103674 }, + { "lat": 40.8287627, "lon": -74.0103574 }, + { "lat": 40.8294526, "lon": -74.0103375 }, + { "lat": 40.8302739, "lon": -74.0103509 }, + { "lat": 40.8303329, "lon": -74.0103489 }, + { "lat": 40.8303865, "lon": -74.0103469 }, + { "lat": 40.8304380, "lon": -74.0103420 }, + { "lat": 40.8304936, "lon": -74.0103337 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "40 mph", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657" + } +}, +{ + "type": "way", + "id": 223694189, + "bounds": { + "minlat": 40.7793342, + "minlon": -74.0167800, + "maxlat": 40.7957572, + "maxlon": -74.0037735 + }, + "nodes": [ + 103862580, + 7377177622, + 7377177620, + 103862582, + 7613733583, + 103862584, + 7613768088, + 103862586, + 7613768091, + 7613768094, + 103862588, + 7613768097, + 6609911660, + 7613768099, + 103855292, + 7613768244, + 7613768266, + 103862590, + 5702289217, + 7613768270, + 7025877575, + 7613768272, + 103862592, + 7658684706, + 7617909988, + 103862594, + 7617909991, + 7658692353, + 103862596, + 7658684743, + 7617909992, + 103862598, + 7658684755, + 5755469276, + 5755469273, + 7658684758, + 4501150766, + 7658684757, + 7658684781, + 103862600, + 7675458942, + 7675458946, + 103862601, + 7678131005, + 7174014498, + 7174014513, + 7678131009, + 103862602, + 7678131058, + 7678131060, + 103862603, + 7658692265, + 7658692269, + 103862604, + 7658692275, + 7658692277, + 103862605, + 7658692289, + 103862607, + 7658692291, + 103862609, + 7658692299, + 7658692301, + 103862611, + 7658692312, + 103862612, + 7658692314, + 103862613, + 7658692329, + 103862614, + 7658692325, + 103862616, + 7658692343, + 13318530223, + 103855254, + 7653988981, + 7653988983, + 103862620, + 7653988985, + 7678472842, + 103862622, + 7678472841, + 7678472859, + 103862628, + 7678472857, + 6917350540, + 8389212924, + 8389212929, + 7678472853, + 103862630, + 7678472870, + 6917350898 + ], + "geometry": [ + { "lat": 40.7793342, "lon": -74.0167800 }, + { "lat": 40.7794081, "lon": -74.0167180 }, + { "lat": 40.7798614, "lon": -74.0163507 }, + { "lat": 40.7799364, "lon": -74.0162922 }, + { "lat": 40.7800026, "lon": -74.0162415 }, + { "lat": 40.7802410, "lon": -74.0160590 }, + { "lat": 40.7804465, "lon": -74.0158846 }, + { "lat": 40.7805003, "lon": -74.0158390 }, + { "lat": 40.7805670, "lon": -74.0157854 }, + { "lat": 40.7810297, "lon": -74.0154139 }, + { "lat": 40.7810720, "lon": -74.0153800 }, + { "lat": 40.7811539, "lon": -74.0153129 }, + { "lat": 40.7814869, "lon": -74.0150403 }, + { "lat": 40.7816245, "lon": -74.0149368 }, + { "lat": 40.7816761, "lon": -74.0148984 }, + { "lat": 40.7817464, "lon": -74.0148452 }, + { "lat": 40.7822166, "lon": -74.0144720 }, + { "lat": 40.7822745, "lon": -74.0144232 }, + { "lat": 40.7822951, "lon": -74.0144054 }, + { "lat": 40.7823228, "lon": -74.0143821 }, + { "lat": 40.7824114, "lon": -74.0143097 }, + { "lat": 40.7827914, "lon": -74.0140086 }, + { "lat": 40.7828466, "lon": -74.0139605 }, + { "lat": 40.7829056, "lon": -74.0139133 }, + { "lat": 40.7833843, "lon": -74.0135300 }, + { "lat": 40.7834260, "lon": -74.0134967 }, + { "lat": 40.7835029, "lon": -74.0134341 }, + { "lat": 40.7839625, "lon": -74.0130605 }, + { "lat": 40.7839906, "lon": -74.0130376 }, + { "lat": 40.7840800, "lon": -74.0129675 }, + { "lat": 40.7845560, "lon": -74.0125942 }, + { "lat": 40.7845952, "lon": -74.0125635 }, + { "lat": 40.7846666, "lon": -74.0125033 }, + { "lat": 40.7847245, "lon": -74.0124546 }, + { "lat": 40.7850476, "lon": -74.0121994 }, + { "lat": 40.7851481, "lon": -74.0121172 }, + { "lat": 40.7851961, "lon": -74.0120779 }, + { "lat": 40.7852403, "lon": -74.0120069 }, + { "lat": 40.7857156, "lon": -74.0116257 }, + { "lat": 40.7857688, "lon": -74.0115829 }, + { "lat": 40.7858198, "lon": -74.0115400 }, + { "lat": 40.7863033, "lon": -74.0111335 }, + { "lat": 40.7863803, "lon": -74.0110687 }, + { "lat": 40.7864631, "lon": -74.0110006 }, + { "lat": 40.7871717, "lon": -74.0104184 }, + { "lat": 40.7874857, "lon": -74.0101668 }, + { "lat": 40.7876798, "lon": -74.0100113 }, + { "lat": 40.7877450, "lon": -74.0099590 }, + { "lat": 40.7878195, "lon": -74.0098992 }, + { "lat": 40.7886445, "lon": -74.0092375 }, + { "lat": 40.7887100, "lon": -74.0091850 }, + { "lat": 40.7887647, "lon": -74.0091412 }, + { "lat": 40.7892440, "lon": -74.0087570 }, + { "lat": 40.7892890, "lon": -74.0087210 }, + { "lat": 40.7893559, "lon": -74.0086672 }, + { "lat": 40.7898371, "lon": -74.0082808 }, + { "lat": 40.7898830, "lon": -74.0082440 }, + { "lat": 40.7899491, "lon": -74.0081912 }, + { "lat": 40.7901860, "lon": -74.0080020 }, + { "lat": 40.7904174, "lon": -74.0078260 }, + { "lat": 40.7904710, "lon": -74.0077852 }, + { "lat": 40.7905352, "lon": -74.0077359 }, + { "lat": 40.7910156, "lon": -74.0073672 }, + { "lat": 40.7910770, "lon": -74.0073200 }, + { "lat": 40.7911317, "lon": -74.0072780 }, + { "lat": 40.7913270, "lon": -74.0071280 }, + { "lat": 40.7916213, "lon": -74.0069433 }, + { "lat": 40.7916735, "lon": -74.0069105 }, + { "lat": 40.7917378, "lon": -74.0068719 }, + { "lat": 40.7920640, "lon": -74.0066760 }, + { "lat": 40.7922622, "lon": -74.0065764 }, + { "lat": 40.7923144, "lon": -74.0065502 }, + { "lat": 40.7923808, "lon": -74.0065037 }, + { "lat": 40.7929921, "lon": -74.0060094 }, + { "lat": 40.7930461, "lon": -74.0059658 }, + { "lat": 40.7931054, "lon": -74.0059178 }, + { "lat": 40.7935719, "lon": -74.0055406 }, + { "lat": 40.7936296, "lon": -74.0054940 }, + { "lat": 40.7936874, "lon": -74.0054472 }, + { "lat": 40.7941534, "lon": -74.0050704 }, + { "lat": 40.7942181, "lon": -74.0050181 }, + { "lat": 40.7942703, "lon": -74.0049752 }, + { "lat": 40.7947463, "lon": -74.0045910 }, + { "lat": 40.7947971, "lon": -74.0045499 }, + { "lat": 40.7948558, "lon": -74.0045024 }, + { "lat": 40.7951200, "lon": -74.0042888 }, + { "lat": 40.7952320, "lon": -74.0041982 }, + { "lat": 40.7953177, "lon": -74.0041290 }, + { "lat": 40.7953259, "lon": -74.0041223 }, + { "lat": 40.7953855, "lon": -74.0040741 }, + { "lat": 40.7954456, "lon": -74.0040255 }, + { "lat": 40.7957572, "lon": -74.0037735 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081253", + "highway": "tertiary", + "name": "Broadway", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087", + "tiger:zip_right": "07047:07087" + } +}, +{ + "type": "way", + "id": 223694193, + "bounds": { + "minlat": 40.7977242, + "minlon": -74.0021830, + "maxlat": 40.7988982, + "maxlon": -74.0012286 + }, + "nodes": [ + 103862641, + 4727867824, + 7678477428, + 103862639, + 7678477420, + 7678477418, + 103862637 + ], + "geometry": [ + { "lat": 40.7988982, "lon": -74.0012286 }, + { "lat": 40.7988423, "lon": -74.0012753 }, + { "lat": 40.7983695, "lon": -74.0016611 }, + { "lat": 40.7983116, "lon": -74.0017079 }, + { "lat": 40.7982592, "lon": -74.0017503 }, + { "lat": 40.7977787, "lon": -74.0021389 }, + { "lat": 40.7977242, "lon": -74.0021830 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081253", + "highway": "tertiary", + "name": "Broadway", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087", + "tiger:zip_right": "07047:07087" + } +}, +{ + "type": "way", + "id": 223694263, + "bounds": { + "minlat": 40.8025152, + "minlon": -74.0125063, + "maxlat": 40.8081592, + "maxlon": -74.0083664 + }, + "nodes": [ + 4205672691, + 103872910, + 12614912671, + 12614912675, + 12614912679, + 7474656027, + 103868253, + 13620586460, + 103868226, + 5344617802, + 7474656054, + 7474656051, + 103872912, + 7474656061, + 103872914, + 7475979724, + 103872916, + 7475979741, + 7475979743, + 103872919, + 7475993585, + 7475979775, + 103872922, + 7475979778, + 103872923, + 7475993389, + 103867155, + 7475993440, + 103867159, + 4205672693 + ], + "geometry": [ + { "lat": 40.8025152, "lon": -74.0125063 }, + { "lat": 40.8032019, "lon": -74.0119665 }, + { "lat": 40.8033836, "lon": -74.0118201 }, + { "lat": 40.8034346, "lon": -74.0117789 }, + { "lat": 40.8036334, "lon": -74.0116188 }, + { "lat": 40.8036599, "lon": -74.0115974 }, + { "lat": 40.8037070, "lon": -74.0115594 }, + { "lat": 40.8038695, "lon": -74.0114258 }, + { "lat": 40.8038881, "lon": -74.0114126 }, + { "lat": 40.8039745, "lon": -74.0113454 }, + { "lat": 40.8039930, "lon": -74.0113324 }, + { "lat": 40.8042629, "lon": -74.0111430 }, + { "lat": 40.8043027, "lon": -74.0111151 }, + { "lat": 40.8043507, "lon": -74.0110776 }, + { "lat": 40.8045520, "lon": -74.0109210 }, + { "lat": 40.8048353, "lon": -74.0107106 }, + { "lat": 40.8048816, "lon": -74.0106763 }, + { "lat": 40.8049448, "lon": -74.0106304 }, + { "lat": 40.8056332, "lon": -74.0101303 }, + { "lat": 40.8056778, "lon": -74.0100960 }, + { "lat": 40.8057508, "lon": -74.0100423 }, + { "lat": 40.8062052, "lon": -74.0097077 }, + { "lat": 40.8062401, "lon": -74.0096820 }, + { "lat": 40.8063027, "lon": -74.0096355 }, + { "lat": 40.8068238, "lon": -74.0092657 }, + { "lat": 40.8070909, "lon": -74.0090842 }, + { "lat": 40.8071550, "lon": -74.0090406 }, + { "lat": 40.8072538, "lon": -74.0089752 }, + { "lat": 40.8075554, "lon": -74.0087758 }, + { "lat": 40.8081592, "lon": -74.0083664 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 223694264, + "bounds": { + "minlat": 40.8569809, + "minlon": -73.9665055, + "maxlat": 40.8590926, + "maxlon": -73.9653082 + }, + "nodes": [ + 4207161480, + 5449415092, + 12021371947, + 76465591, + 103205077, + 7930671280, + 12021371946, + 103205081, + 12021371955, + 12021371953, + 103205083 + ], + "geometry": [ + { "lat": 40.8569809, "lon": -73.9665055 }, + { "lat": 40.8575039, "lon": -73.9661939 }, + { "lat": 40.8576749, "lon": -73.9660960 }, + { "lat": 40.8577225, "lon": -73.9660687 }, + { "lat": 40.8577872, "lon": -73.9660317 }, + { "lat": 40.8578734, "lon": -73.9659842 }, + { "lat": 40.8578988, "lon": -73.9659701 }, + { "lat": 40.8584362, "lon": -73.9656741 }, + { "lat": 40.8589819, "lon": -73.9653693 }, + { "lat": 40.8590242, "lon": -73.9653469 }, + { "lat": 40.8590926, "lon": -73.9653082 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 223694267, + "bounds": { + "minlat": 40.8522944, + "minlon": -73.9726942, + "maxlat": 40.8523384, + "maxlon": -73.9726264 + }, + "nodes": [ + 4204795089, + 5362322546 + ], + "geometry": [ + { "lat": 40.8522944, "lon": -73.9726264 }, + { "lat": 40.8523384, "lon": -73.9726942 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 223694269, + "bounds": { + "minlat": 40.8577622, + "minlon": -73.9807504, + "maxlat": 40.8582018, + "maxlon": -73.9802208 + }, + "nodes": [ + 103105925, + 103276295, + 12020325918, + 11444811791, + 12020325919, + 12020325920, + 103097567 + ], + "geometry": [ + { "lat": 40.8577622, "lon": -73.9802208 }, + { "lat": 40.8578688, "lon": -73.9803260 }, + { "lat": 40.8579462, "lon": -73.9804133 }, + { "lat": 40.8580234, "lon": -73.9805072 }, + { "lat": 40.8580934, "lon": -73.9805951 }, + { "lat": 40.8581476, "lon": -73.9806699 }, + { "lat": 40.8582018, "lon": -73.9807504 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxheight": "13'2\"", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left|through;slight_right" + } +}, +{ + "type": "way", + "id": 223694271, + "bounds": { + "minlat": 40.8415454, + "minlon": -74.0049169, + "maxlat": 40.8429225, + "maxlon": -74.0024864 + }, + "nodes": [ + 103224073, + 5976777466, + 12016147213, + 5976777459, + 6902436412, + 6902436419, + 12016147215, + 12016147217, + 103241068 + ], + "geometry": [ + { "lat": 40.8415454, "lon": -74.0024864 }, + { "lat": 40.8415983, "lon": -74.0025766 }, + { "lat": 40.8416154, "lon": -74.0026067 }, + { "lat": 40.8425532, "lon": -74.0042470 }, + { "lat": 40.8425960, "lon": -74.0043225 }, + { "lat": 40.8427332, "lon": -74.0045607 }, + { "lat": 40.8428680, "lon": -74.0048011 }, + { "lat": 40.8428791, "lon": -74.0048247 }, + { "lat": 40.8429225, "lon": -74.0049169 } + ], + "tags": { + "Bergen_County_database_ref": "S-31", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000S31", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Maple Avenue", + "ref": "CR S-31", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 223694272, + "bounds": { + "minlat": 40.8548381, + "minlon": -73.9826952, + "maxlat": 40.8569648, + "maxlon": -73.9805836 + }, + "nodes": [ + 103146631, + 103146633, + 103123530, + 103146635, + 103146637 + ], + "geometry": [ + { "lat": 40.8548381, "lon": -73.9826952 }, + { "lat": 40.8554849, "lon": -73.9820554 }, + { "lat": 40.8560040, "lon": -73.9815310 }, + { "lat": 40.8564600, "lon": -73.9810680 }, + { "lat": 40.8569648, "lon": -73.9805836 } + ], + "tags": { + "highway": "residential", + "name": "Maple Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 223694287, + "bounds": { + "minlat": 40.8540490, + "minlon": -73.9842660, + "maxlat": 40.8545369, + "maxlon": -73.9834106 + }, + "nodes": [ + 2325759617, + 5362392142, + 5362357989, + 7428252182, + 5362392175, + 12020325908, + 12020325909, + 299172098 + ], + "geometry": [ + { "lat": 40.8540490, "lon": -73.9834106 }, + { "lat": 40.8541021, "lon": -73.9835028 }, + { "lat": 40.8541806, "lon": -73.9836392 }, + { "lat": 40.8542514, "lon": -73.9837622 }, + { "lat": 40.8544319, "lon": -73.9840758 }, + { "lat": 40.8544553, "lon": -73.9841182 }, + { "lat": 40.8544855, "lon": -73.9841729 }, + { "lat": 40.8545369, "lon": -73.9842660 } + ], + "tags": { + "highway": "residential", + "name": "North Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "North", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 223694298, + "bounds": { + "minlat": 40.7775484, + "minlon": -74.0180568, + "maxlat": 40.7789204, + "maxlon": -74.0158769 + }, + "nodes": [ + 103862576, + 5909817464, + 5909817465, + 440243646, + 7320650719, + 440243645, + 7320650759, + 7320650756, + 440243663 + ], + "geometry": [ + { "lat": 40.7775484, "lon": -74.0180568 }, + { "lat": 40.7776091, "lon": -74.0179542 }, + { "lat": 40.7779661, "lon": -74.0173870 }, + { "lat": 40.7780003, "lon": -74.0173321 }, + { "lat": 40.7784161, "lon": -74.0166772 }, + { "lat": 40.7784555, "lon": -74.0166152 }, + { "lat": 40.7784920, "lon": -74.0165571 }, + { "lat": 40.7788647, "lon": -74.0159648 }, + { "lat": 40.7789204, "lon": -74.0158769 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09101116", + "highway": "secondary", + "name": "Park Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 223694299, + "bounds": { + "minlat": 40.7968141, + "minlon": -74.0002558, + "maxlat": 40.7980350, + "maxlon": -73.9993884 + }, + "nodes": [ + 103883598, + 7468583862, + 7468583864, + 103877626, + 7468583876, + 4727867836, + 103868269 + ], + "geometry": [ + { "lat": 40.7968141, "lon": -74.0002558 }, + { "lat": 40.7968727, "lon": -74.0002152 }, + { "lat": 40.7973784, "lon": -73.9998580 }, + { "lat": 40.7974341, "lon": -73.9998187 }, + { "lat": 40.7974834, "lon": -73.9997836 }, + { "lat": 40.7979886, "lon": -73.9994238 }, + { "lat": 40.7980350, "lon": -73.9993884 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09121044", + "highway": "tertiary", + "name": "Park Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 223694348, + "bounds": { + "minlat": 40.8435983, + "minlon": -74.0046921, + "maxlat": 40.8436138, + "maxlon": -74.0039887 + }, + "nodes": [ + 103203002, + 10943435082, + 103203004 + ], + "geometry": [ + { "lat": 40.8435983, "lon": -74.0039887 }, + { "lat": 40.8436094, "lon": -74.0045795 }, + { "lat": 40.8436138, "lon": -74.0046921 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 223694349, + "bounds": { + "minlat": 40.8414816, + "minlon": -74.0028657, + "maxlat": 40.8434583, + "maxlon": -73.9980340 + }, + "nodes": [ + 10943435092, + 299181608, + 10943435087, + 299181689, + 10943435090, + 299181996, + 10943435098, + 299181611, + 10943435100, + 299181612, + 10943455729, + 299181691, + 10943435088, + 299181692, + 10943435075, + 10943455707, + 299181967, + 10943455722, + 10943455759, + 299181694, + 10943455735, + 299181695, + 10943435069, + 10943435102, + 299181619, + 299181997, + 10943455724, + 10943455725, + 299181621, + 10943435091, + 299181622 + ], + "geometry": [ + { "lat": 40.8434583, "lon": -74.0028657 }, + { "lat": 40.8434218, "lon": -74.0026581 }, + { "lat": 40.8433917, "lon": -74.0025206 }, + { "lat": 40.8433568, "lon": -74.0023886 }, + { "lat": 40.8433166, "lon": -74.0022589 }, + { "lat": 40.8432696, "lon": -74.0021278 }, + { "lat": 40.8432218, "lon": -74.0020068 }, + { "lat": 40.8431652, "lon": -74.0018797 }, + { "lat": 40.8431065, "lon": -74.0017609 }, + { "lat": 40.8430440, "lon": -74.0016481 }, + { "lat": 40.8429806, "lon": -74.0015432 }, + { "lat": 40.8428406, "lon": -74.0013160 }, + { "lat": 40.8422242, "lon": -74.0003196 }, + { "lat": 40.8421558, "lon": -74.0002073 }, + { "lat": 40.8420911, "lon": -74.0000963 }, + { "lat": 40.8420266, "lon": -73.9999785 }, + { "lat": 40.8419663, "lon": -73.9998583 }, + { "lat": 40.8419080, "lon": -73.9997337 }, + { "lat": 40.8418560, "lon": -73.9996119 }, + { "lat": 40.8418059, "lon": -73.9994870 }, + { "lat": 40.8417602, "lon": -73.9993652 }, + { "lat": 40.8417129, "lon": -73.9992228 }, + { "lat": 40.8416738, "lon": -73.9990920 }, + { "lat": 40.8416368, "lon": -73.9989567 }, + { "lat": 40.8416038, "lon": -73.9988222 }, + { "lat": 40.8415742, "lon": -73.9986862 }, + { "lat": 40.8415467, "lon": -73.9985416 }, + { "lat": 40.8415243, "lon": -73.9984028 }, + { "lat": 40.8415052, "lon": -73.9982654 }, + { "lat": 40.8414898, "lon": -73.9981197 }, + { "lat": 40.8414816, "lon": -73.9980340 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "cutting": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 223694353, + "bounds": { + "minlat": 40.8087334, + "minlon": -74.0028262, + "maxlat": 40.8099249, + "maxlon": -74.0020293 + }, + "nodes": [ + 103860896, + 7475993746, + 5481884075, + 5481884079, + 5481884076, + 7475993740, + 103882301 + ], + "geometry": [ + { "lat": 40.8099249, "lon": -74.0020293 }, + { "lat": 40.8098286, "lon": -74.0020922 }, + { "lat": 40.8096376, "lon": -74.0022169 }, + { "lat": 40.8094793, "lon": -74.0023206 }, + { "lat": 40.8093267, "lon": -74.0024204 }, + { "lat": 40.8087901, "lon": -74.0027874 }, + { "lat": 40.8087334, "lon": -74.0028262 } + ], + "tags": { + "highway": "residential", + "name": "1st Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 223694362, + "bounds": { + "minlat": 40.7793342, + "minlon": -74.0206174, + "maxlat": 40.7811124, + "maxlon": -74.0167800 + }, + "nodes": [ + 103862580, + 7387640992, + 8267580249, + 5652754122, + 5652754125, + 8267580223, + 7387641013, + 103855583, + 7387641007, + 7387641018, + 103885033, + 7387641023, + 103877186 + ], + "geometry": [ + { "lat": 40.7793342, "lon": -74.0167800 }, + { "lat": 40.7793782, "lon": -74.0168761 }, + { "lat": 40.7795325, "lon": -74.0172132 }, + { "lat": 40.7795963, "lon": -74.0173527 }, + { "lat": 40.7797605, "lon": -74.0177006 }, + { "lat": 40.7798690, "lon": -74.0179347 }, + { "lat": 40.7799946, "lon": -74.0182057 }, + { "lat": 40.7800360, "lon": -74.0182949 }, + { "lat": 40.7800750, "lon": -74.0183796 }, + { "lat": 40.7807040, "lon": -74.0197444 }, + { "lat": 40.7807449, "lon": -74.0198330 }, + { "lat": 40.7807877, "lon": -74.0199286 }, + { "lat": 40.7811124, "lon": -74.0206174 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09101264", + "highway": "tertiary", + "name": "48th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "48th", + "tiger:name_base_1": "County Road 684", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07087", + "tiger:zip_right": "07087" + } +}, +{ + "type": "way", + "id": 223694363, + "bounds": { + "minlat": 40.7956021, + "minlon": -74.0031322, + "maxlat": 40.7965503, + "maxlon": -74.0011047 + }, + "nodes": [ + 103862633, + 7678477386, + 7678477388, + 103886419 + ], + "geometry": [ + { "lat": 40.7965503, "lon": -74.0031322 }, + { "lat": 40.7964948, "lon": -74.0030133 }, + { "lat": 40.7956405, "lon": -74.0011868 }, + { "lat": 40.7956021, "lon": -74.0011047 } + ], + "tags": { + "highway": "residential", + "name": "75th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "75th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 223694364, + "bounds": { + "minlat": 40.7965503, + "minlon": -74.0048720, + "maxlat": 40.7973700, + "maxlon": -74.0031322 + }, + "nodes": [ + 103855707, + 7678477467, + 7678477465, + 103862633 + ], + "geometry": [ + { "lat": 40.7973700, "lon": -74.0048720 }, + { "lat": 40.7973345, "lon": -74.0047967 }, + { "lat": 40.7965984, "lon": -74.0032337 }, + { "lat": 40.7965503, "lon": -74.0031322 } + ], + "tags": { + "highway": "residential", + "name": "75th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "75th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 223694366, + "bounds": { + "minlat": 40.7988982, + "minlon": -74.0067960, + "maxlat": 40.8015190, + "maxlon": -74.0012286 + }, + "nodes": [ + 103866668, + 3809706352, + 103868274, + 4727867818, + 103855711, + 4727867822, + 103862641 + ], + "geometry": [ + { "lat": 40.8015190, "lon": -74.0067960 }, + { "lat": 40.8014752, "lon": -74.0067005 }, + { "lat": 40.8005510, "lon": -74.0047355 }, + { "lat": 40.7997489, "lon": -74.0030113 }, + { "lat": 40.7997246, "lon": -74.0029657 }, + { "lat": 40.7989453, "lon": -74.0013233 }, + { "lat": 40.7988982, "lon": -74.0012286 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081245", + "highway": "tertiary", + "name": "79th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "79th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 223694367, + "bounds": { + "minlat": 40.8087334, + "minlon": -74.0036304, + "maxlat": 40.8090538, + "maxlon": -74.0028262 + }, + "nodes": [ + 103882301, + 7475993738, + 7475993736, + 103873578 + ], + "geometry": [ + { "lat": 40.8087334, "lon": -74.0028262 }, + { "lat": 40.8087579, "lon": -74.0028989 }, + { "lat": 40.8090246, "lon": -74.0035582 }, + { "lat": 40.8090538, "lon": -74.0036304 } + ], + "tags": { + "highway": "residential", + "name": "90th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "90th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 223868991, + "bounds": { + "minlat": 40.8745523, + "minlon": -73.9096352, + "maxlat": 40.8756380, + "maxlon": -73.9082537 + }, + "nodes": [ + 42427926, + 10128431598, + 7037961247, + 7037961255, + 10128431590, + 42429287 + ], + "geometry": [ + { "lat": 40.8745523, "lon": -73.9096352 }, + { "lat": 40.8746417, "lon": -73.9095215 }, + { "lat": 40.8749137, "lon": -73.9091753 }, + { "lat": 40.8754084, "lon": -73.9085458 }, + { "lat": 40.8755574, "lon": -73.9083562 }, + { "lat": 40.8756380, "lon": -73.9082537 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 223871001, + "bounds": { + "minlat": 40.8804981, + "minlon": -73.9118447, + "maxlat": 40.8856580, + "maxlon": -73.9099820 + }, + "nodes": [ + 42733259, + 42733261, + 10132643251, + 4229250904, + 42733271, + 10132643174, + 1545532979, + 1545532972, + 1545532986, + 42733277, + 1581505543, + 1545535483, + 1581505586, + 1581505514, + 1581505557, + 1581505547, + 1581505590, + 1581505519, + 5487891802, + 10132643332, + 42733281 + ], + "geometry": [ + { "lat": 40.8804981, "lon": -73.9118447 }, + { "lat": 40.8811792, "lon": -73.9114648 }, + { "lat": 40.8813764, "lon": -73.9113676 }, + { "lat": 40.8815346, "lon": -73.9112896 }, + { "lat": 40.8821104, "lon": -73.9110109 }, + { "lat": 40.8823769, "lon": -73.9108933 }, + { "lat": 40.8824131, "lon": -73.9108764 }, + { "lat": 40.8829975, "lon": -73.9106235 }, + { "lat": 40.8832459, "lon": -73.9105171 }, + { "lat": 40.8835094, "lon": -73.9104043 }, + { "lat": 40.8836090, "lon": -73.9103854 }, + { "lat": 40.8836988, "lon": -73.9103867 }, + { "lat": 40.8839035, "lon": -73.9104129 }, + { "lat": 40.8840144, "lon": -73.9104308 }, + { "lat": 40.8841314, "lon": -73.9104391 }, + { "lat": 40.8842578, "lon": -73.9104288 }, + { "lat": 40.8844250, "lon": -73.9103950 }, + { "lat": 40.8845714, "lon": -73.9103538 }, + { "lat": 40.8850312, "lon": -73.9101965 }, + { "lat": 40.8855934, "lon": -73.9100050 }, + { "lat": 40.8856580, "lon": -73.9099820 } + ], + "tags": { + "highway": "tertiary", + "name": "Johnson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Johnson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 223871007, + "bounds": { + "minlat": 40.8804528, + "minlon": -73.9105323, + "maxlat": 40.8806863, + "maxlon": -73.9103664 + }, + "nodes": [ + 42752143, + 5927463175, + 42746781 + ], + "geometry": [ + { "lat": 40.8806863, "lon": -73.9103664 }, + { "lat": 40.8805448, "lon": -73.9104909 }, + { "lat": 40.8804528, "lon": -73.9105323 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Riverdale Avenue", + "oneway": "yes", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Riverdale", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223874076, + "bounds": { + "minlat": 40.8382020, + "minlon": -73.9261910, + "maxlat": 40.8385120, + "maxlon": -73.9237070 + }, + "nodes": [ + 42757307, + 42751983, + 13809338870, + 42734290 + ], + "geometry": [ + { "lat": 40.8382020, "lon": -73.9237070 }, + { "lat": 40.8383500, "lon": -73.9249240 }, + { "lat": 40.8384960, "lon": -73.9260659 }, + { "lat": 40.8385120, "lon": -73.9261910 } + ], + "tags": { + "highway": "residential", + "name": "West 168th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 223874077, + "bounds": { + "minlat": 40.8380022, + "minlon": -73.9121281, + "maxlat": 40.8381791, + "maxlon": -73.9117610 + }, + "nodes": [ + 2408364029, + 2408364038, + 2408364019, + 2408364033 + ], + "geometry": [ + { "lat": 40.8380022, "lon": -73.9117610 }, + { "lat": 40.8380816, "lon": -73.9118958 }, + { "lat": 40.8381266, "lon": -73.9119893 }, + { "lat": 40.8381791, "lon": -73.9121281 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 223874078, + "bounds": { + "minlat": 40.8461578, + "minlon": -73.9363969, + "maxlat": 40.8478794, + "maxlon": -73.9323269 + }, + "nodes": [ + 42449634, + 9550791749, + 5403873772, + 42433062, + 5403873773, + 11595083003, + 8723021918, + 42452147, + 12081927917, + 12081927916, + 42423116 + ], + "geometry": [ + { "lat": 40.8478794, "lon": -73.9363969 }, + { "lat": 40.8478397, "lon": -73.9363040 }, + { "lat": 40.8474113, "lon": -73.9352961 }, + { "lat": 40.8473580, "lon": -73.9351720 }, + { "lat": 40.8473042, "lon": -73.9350460 }, + { "lat": 40.8472081, "lon": -73.9348187 }, + { "lat": 40.8468119, "lon": -73.9338826 }, + { "lat": 40.8467657, "lon": -73.9337745 }, + { "lat": 40.8467282, "lon": -73.9336852 }, + { "lat": 40.8462122, "lon": -73.9324566 }, + { "lat": 40.8461578, "lon": -73.9323269 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 178th Street", + "name_1": "West 178 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 223874080, + "bounds": { + "minlat": 40.8401760, + "minlon": -73.9252680, + "maxlat": 40.8442180, + "maxlon": -73.9236240 + }, + "nodes": [ + 42734314, + 12070855417, + 12045204151, + 12045204145, + 10147967883, + 13703398606, + 42734309, + 7308243664, + 42734305, + 13564503752, + 42734303, + 13564503755, + 2327364568, + 13049469021, + 13049469022, + 13049469023, + 13049469024, + 13703385237, + 13049469025, + 42734299 + ], + "geometry": [ + { "lat": 40.8442180, "lon": -73.9236268 }, + { "lat": 40.8441895, "lon": -73.9236245 }, + { "lat": 40.8441650, "lon": -73.9236240 }, + { "lat": 40.8441403, "lon": -73.9236260 }, + { "lat": 40.8441152, "lon": -73.9236289 }, + { "lat": 40.8432787, "lon": -73.9237555 }, + { "lat": 40.8428860, "lon": -73.9238150 }, + { "lat": 40.8427545, "lon": -73.9239155 }, + { "lat": 40.8424660, "lon": -73.9241360 }, + { "lat": 40.8415553, "lon": -73.9248038 }, + { "lat": 40.8414950, "lon": -73.9248480 }, + { "lat": 40.8414326, "lon": -73.9248983 }, + { "lat": 40.8412115, "lon": -73.9250766 }, + { "lat": 40.8411750, "lon": -73.9250922 }, + { "lat": 40.8411284, "lon": -73.9251056 }, + { "lat": 40.8410477, "lon": -73.9251271 }, + { "lat": 40.8408626, "lon": -73.9251553 }, + { "lat": 40.8407917, "lon": -73.9251673 }, + { "lat": 40.8405087, "lon": -73.9252154 }, + { "lat": 40.8401760, "lon": -73.9252680 } + ], + "tags": { + "highway": "tertiary", + "name": "Ogden Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ogden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 223874082, + "bounds": { + "minlat": 40.8386850, + "minlon": -73.9229770, + "maxlat": 40.8404260, + "maxlon": -73.9223870 + }, + "nodes": [ + 42734992, + 7238252615, + 13249079916, + 42734995, + 13249079918, + 13249072928, + 42735000 + ], + "geometry": [ + { "lat": 40.8386850, "lon": -73.9229770 }, + { "lat": 40.8387508, "lon": -73.9229301 }, + { "lat": 40.8392125, "lon": -73.9226008 }, + { "lat": 40.8392710, "lon": -73.9225590 }, + { "lat": 40.8393364, "lon": -73.9225493 }, + { "lat": 40.8402606, "lon": -73.9224116 }, + { "lat": 40.8404260, "lon": -73.9223870 } + ], + "tags": { + "highway": "residential", + "name": "Shakespeare Avenue", + "name:etymology:wikidata": "Q692", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Shakespeare", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223874083, + "bounds": { + "minlat": 40.8404260, + "minlon": -73.9223870, + "maxlat": 40.8436610, + "maxlon": -73.9200350 + }, + "nodes": [ + 42735000, + 13249072930, + 12163757033, + 2912071063, + 42735003, + 12163757036, + 8348931835, + 42735006, + 7919257006, + 5762103019, + 42735011 + ], + "geometry": [ + { "lat": 40.8404260, "lon": -73.9223870 }, + { "lat": 40.8404956, "lon": -73.9223386 }, + { "lat": 40.8408267, "lon": -73.9221084 }, + { "lat": 40.8409714, "lon": -73.9220077 }, + { "lat": 40.8411030, "lon": -73.9219151 }, + { "lat": 40.8412223, "lon": -73.9218250 }, + { "lat": 40.8422065, "lon": -73.9210820 }, + { "lat": 40.8424340, "lon": -73.9209130 }, + { "lat": 40.8431992, "lon": -73.9203654 }, + { "lat": 40.8436068, "lon": -73.9200738 }, + { "lat": 40.8436610, "lon": -73.9200350 } + ], + "tags": { + "highway": "residential", + "name": "Shakespeare Avenue", + "name:etymology:wikidata": "Q692", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Shakespeare", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223874084, + "bounds": { + "minlat": 40.8401250, + "minlon": -73.9268996, + "maxlat": 40.8402240, + "maxlon": -73.9252680 + }, + "nodes": [ + 42734299, + 42763872, + 8285558504, + 13564503779, + 42763875, + 42763878 + ], + "geometry": [ + { "lat": 40.8401760, "lon": -73.9252680 }, + { "lat": 40.8401250, "lon": -73.9259600 }, + { "lat": 40.8401637, "lon": -73.9263174 }, + { "lat": 40.8401680, "lon": -73.9263570 }, + { "lat": 40.8401790, "lon": -73.9264590 }, + { "lat": 40.8402240, "lon": -73.9268996 } + ], + "tags": { + "highway": "residential", + "name": "West 169th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223874087, + "bounds": { + "minlat": 40.8401040, + "minlon": -73.9252680, + "maxlat": 40.8401760, + "maxlon": -73.9247820 + }, + "nodes": [ + 42734299, + 42763869 + ], + "geometry": [ + { "lat": 40.8401760, "lon": -73.9252680 }, + { "lat": 40.8401040, "lon": -73.9247820 } + ], + "tags": { + "highway": "residential", + "name": "West 169th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223874088, + "bounds": { + "minlat": 40.8404260, + "minlon": -73.9239950, + "maxlat": 40.8411320, + "maxlon": -73.9223870 + }, + "nodes": [ + 42735000, + 13249072931, + 13249072906, + 42751992, + 13249072904, + 13564503767, + 42776417 + ], + "geometry": [ + { "lat": 40.8404260, "lon": -73.9223870 }, + { "lat": 40.8404674, "lon": -73.9224793 }, + { "lat": 40.8407543, "lon": -73.9231208 }, + { "lat": 40.8407880, "lon": -73.9231960 }, + { "lat": 40.8408232, "lon": -73.9232777 }, + { "lat": 40.8411029, "lon": -73.9239274 }, + { "lat": 40.8411320, "lon": -73.9239950 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "name": "West 170th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 223874090, + "bounds": { + "minlat": 40.8385120, + "minlon": -73.9270920, + "maxlat": 40.8386250, + "maxlon": -73.9261910 + }, + "nodes": [ + 42734290, + 13809338868, + 13809338866, + 42769860 + ], + "geometry": [ + { "lat": 40.8385120, "lon": -73.9261910 }, + { "lat": 40.8385259, "lon": -73.9263015 }, + { "lat": 40.8386156, "lon": -73.9270171 }, + { "lat": 40.8386250, "lon": -73.9270920 } + ], + "tags": { + "highway": "residential", + "name": "West 168th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 223874091, + "bounds": { + "minlat": 40.8442770, + "minlon": -73.9229609, + "maxlat": 40.8443645, + "maxlon": -73.9226621 + }, + "nodes": [ + 60921024, + 12045211945, + 12045211946, + 12046762831, + 12045211947, + 12046762832, + 12045211948, + 12046762833, + 12045213829, + 12046762834, + 12046762836, + 12046762837, + 60924012 + ], + "geometry": [ + { "lat": 40.8443052, "lon": -73.9229609 }, + { "lat": 40.8442802, "lon": -73.9228548 }, + { "lat": 40.8442778, "lon": -73.9228378 }, + { "lat": 40.8442770, "lon": -73.9228170 }, + { "lat": 40.8442782, "lon": -73.9227989 }, + { "lat": 40.8442815, "lon": -73.9227816 }, + { "lat": 40.8442869, "lon": -73.9227639 }, + { "lat": 40.8442946, "lon": -73.9227443 }, + { "lat": 40.8443041, "lon": -73.9227254 }, + { "lat": 40.8443149, "lon": -73.9227068 }, + { "lat": 40.8443285, "lon": -73.9226901 }, + { "lat": 40.8443455, "lon": -73.9226753 }, + { "lat": 40.8443645, "lon": -73.9226621 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lcn": "yes", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 223874092, + "bounds": { + "minlat": 40.8449633, + "minlon": -73.9224154, + "maxlat": 40.8451183, + "maxlon": -73.9223509 + }, + "nodes": [ + 60924107, + 12070869606 + ], + "geometry": [ + { "lat": 40.8449633, "lon": -73.9224154 }, + { "lat": 40.8451183, "lon": -73.9223509 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "bridge": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 223876561, + "bounds": { + "minlat": 40.8372861, + "minlon": -73.9078703, + "maxlat": 40.8393461, + "maxlon": -73.9059399 + }, + "nodes": [ + 42739249, + 2327295327, + 13055681153, + 13055681152, + 2327295343, + 10126901716, + 2327295334, + 10126901717, + 2327295325, + 2327295324, + 42746998, + 42747003 + ], + "geometry": [ + { "lat": 40.8372861, "lon": -73.9078703 }, + { "lat": 40.8374562, "lon": -73.9077306 }, + { "lat": 40.8376265, "lon": -73.9075982 }, + { "lat": 40.8377000, "lon": -73.9075331 }, + { "lat": 40.8377575, "lon": -73.9074629 }, + { "lat": 40.8378670, "lon": -73.9073142 }, + { "lat": 40.8379750, "lon": -73.9071392 }, + { "lat": 40.8380687, "lon": -73.9070100 }, + { "lat": 40.8381639, "lon": -73.9068990 }, + { "lat": 40.8383233, "lon": -73.9067287 }, + { "lat": 40.8386781, "lon": -73.9064761 }, + { "lat": 40.8393461, "lon": -73.9059399 } + ], + "tags": { + "highway": "tertiary", + "name": "Clay Avenue", + "name:etymology:wikidata": "Q319630", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Clay", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223879808, + "bounds": { + "minlat": 40.8677070, + "minlon": -73.9212171, + "maxlat": 40.8679012, + "maxlon": -73.9205774 + }, + "nodes": [ + 42429222, + 9561420822, + 5071822866, + 5071822867, + 10127304318 + ], + "geometry": [ + { "lat": 40.8677070, "lon": -73.9212171 }, + { "lat": 40.8677392, "lon": -73.9211172 }, + { "lat": 40.8677714, "lon": -73.9210173 }, + { "lat": 40.8678696, "lon": -73.9206966 }, + { "lat": 40.8679012, "lon": -73.9205774 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 223879811, + "bounds": { + "minlat": 40.8657970, + "minlon": -73.9199960, + "maxlat": 40.8661168, + "maxlon": -73.9191317 + }, + "nodes": [ + 4830733459, + 9561420931, + 42427870 + ], + "geometry": [ + { "lat": 40.8661168, "lon": -73.9191317 }, + { "lat": 40.8658368, "lon": -73.9198883 }, + { "lat": 40.8657970, "lon": -73.9199960 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "4", + "name": "Sherman Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 223879812, + "bounds": { + "minlat": 40.8681187, + "minlon": -73.9203200, + "maxlat": 40.8690010, + "maxlon": -73.9197555 + }, + "nodes": [ + 42429226, + 9561229750, + 8153243806, + 42453354 + ], + "geometry": [ + { "lat": 40.8681187, "lon": -73.9197555 }, + { "lat": 40.8682186, "lon": -73.9198194 }, + { "lat": 40.8687003, "lon": -73.9201276 }, + { "lat": 40.8690010, "lon": -73.9203200 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Isham Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Isham", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 223879813, + "bounds": { + "minlat": 40.8681187, + "minlon": -73.9197555, + "maxlat": 40.8681795, + "maxlon": -73.9195155 + }, + "nodes": [ + 42429226, + 9561229748, + 13320061235 + ], + "geometry": [ + { "lat": 40.8681187, "lon": -73.9197555 }, + { "lat": 40.8681472, "lon": -73.9196431 }, + { "lat": 40.8681795, "lon": -73.9195155 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 223879815, + "bounds": { + "minlat": 40.8663150, + "minlon": -73.9185960, + "maxlat": 40.8664407, + "maxlon": -73.9182448 + }, + "nodes": [ + 42427873, + 9561229761, + 6477406867 + ], + "geometry": [ + { "lat": 40.8663150, "lon": -73.9185960 }, + { "lat": 40.8663477, "lon": -73.9185048 }, + { "lat": 40.8664407, "lon": -73.9182448 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "name": "Sherman Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 223883745, + "bounds": { + "minlat": 40.8278308, + "minlon": -73.9259320, + "maxlat": 40.8279777, + "maxlon": -73.9258471 + }, + "nodes": [ + 42748139, + 2411145323 + ], + "geometry": [ + { "lat": 40.8278308, "lon": -73.9259320 }, + { "lat": 40.8279777, "lon": -73.9258471 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "River Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 223883746, + "bounds": { + "minlat": 40.8411320, + "minlon": -73.9248480, + "maxlat": 40.8414950, + "maxlon": -73.9239950 + }, + "nodes": [ + 42776417, + 13564503761, + 10718451569, + 13564503758, + 42734303 + ], + "geometry": [ + { "lat": 40.8411320, "lon": -73.9239950 }, + { "lat": 40.8411619, "lon": -73.9240652 }, + { "lat": 40.8412356, "lon": -73.9242385 }, + { "lat": 40.8414571, "lon": -73.9247589 }, + { "lat": 40.8414950, "lon": -73.9248480 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "highway": "residential", + "name": "West 170th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 223883748, + "bounds": { + "minlat": 40.8414950, + "minlon": -73.9262310, + "maxlat": 40.8420990, + "maxlon": -73.9248480 + }, + "nodes": [ + 42734303, + 13564503749, + 42765671, + 13564503724, + 42769868 + ], + "geometry": [ + { "lat": 40.8414950, "lon": -73.9248480 }, + { "lat": 40.8415334, "lon": -73.9249369 }, + { "lat": 40.8417710, "lon": -73.9254870 }, + { "lat": 40.8420677, "lon": -73.9261600 }, + { "lat": 40.8420990, "lon": -73.9262310 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "residential", + "name": "West 170th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 223884192, + "bounds": { + "minlat": 40.8192393, + "minlon": -73.9268046, + "maxlat": 40.8194703, + "maxlon": -73.9259459 + }, + "nodes": [ + 42733567, + 12162740212, + 12162740218, + 2408448896 + ], + "geometry": [ + { "lat": 40.8192393, "lon": -73.9259459 }, + { "lat": 40.8194300, "lon": -73.9266530 }, + { "lat": 40.8194461, "lon": -73.9267135 }, + { "lat": 40.8194703, "lon": -73.9268046 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 150th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "150th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 223889612, + "bounds": { + "minlat": 40.8176592, + "minlon": -73.9610181, + "maxlat": 40.8180852, + "maxlon": -73.9605452 + }, + "nodes": [ + 595314028, + 10049953222, + 12522167756, + 12522167757, + 12522167758, + 8736432165, + 10049860704, + 42425088 + ], + "geometry": [ + { "lat": 40.8180852, "lon": -73.9605452 }, + { "lat": 40.8180402, "lon": -73.9605997 }, + { "lat": 40.8179607, "lon": -73.9606977 }, + { "lat": 40.8179142, "lon": -73.9607478 }, + { "lat": 40.8178670, "lon": -73.9607940 }, + { "lat": 40.8177578, "lon": -73.9608942 }, + { "lat": 40.8177048, "lon": -73.9609527 }, + { "lat": 40.8176592, "lon": -73.9610181 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "12th Avenue", + "name_1": "12 Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 223889613, + "bounds": { + "minlat": 40.8129631, + "minlon": -73.9185583, + "maxlat": 40.8147056, + "maxlon": -73.9137171 + }, + "nodes": [ + 42763161, + 9908651012, + 5487854719, + 9908651011, + 42761058, + 42784776, + 42784773, + 9908651010, + 9908651009, + 42784769, + 7555037308 + ], + "geometry": [ + { "lat": 40.8129631, "lon": -73.9137171 }, + { "lat": 40.8129942, "lon": -73.9138155 }, + { "lat": 40.8132208, "lon": -73.9144853 }, + { "lat": 40.8135946, "lon": -73.9156125 }, + { "lat": 40.8136303, "lon": -73.9157226 }, + { "lat": 40.8136639, "lon": -73.9158253 }, + { "lat": 40.8140539, "lon": -73.9169995 }, + { "lat": 40.8140856, "lon": -73.9170929 }, + { "lat": 40.8141150, "lon": -73.9171684 }, + { "lat": 40.8141467, "lon": -73.9172447 }, + { "lat": 40.8147056, "lon": -73.9185583 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 147th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "147th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 223889615, + "bounds": { + "minlat": 40.8068230, + "minlon": -73.9228681, + "maxlat": 40.8091026, + "maxlon": -73.9174790 + }, + "nodes": [ + 42761233, + 9908621365, + 9908621363, + 5309056468, + 9908650960, + 42739608, + 9908650961, + 11196028354, + 42761019, + 9908650969, + 9908650968, + 42763139 + ], + "geometry": [ + { "lat": 40.8091026, "lon": -73.9228681 }, + { "lat": 40.8090557, "lon": -73.9227573 }, + { "lat": 40.8090362, "lon": -73.9227113 }, + { "lat": 40.8079649, "lon": -73.9201767 }, + { "lat": 40.8079466, "lon": -73.9201328 }, + { "lat": 40.8079121, "lon": -73.9200498 }, + { "lat": 40.8078803, "lon": -73.9199755 }, + { "lat": 40.8075996, "lon": -73.9193112 }, + { "lat": 40.8075640, "lon": -73.9192291 }, + { "lat": 40.8075207, "lon": -73.9191266 }, + { "lat": 40.8068701, "lon": -73.9175841 }, + { "lat": 40.8068230, "lon": -73.9174790 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 223889616, + "bounds": { + "minlat": 40.8180852, + "minlon": -73.9610583, + "maxlat": 40.8186803, + "maxlon": -73.9605452 + }, + "nodes": [ + 595314028, + 12009067245, + 10049926002, + 42424703 + ], + "geometry": [ + { "lat": 40.8180852, "lon": -73.9605452 }, + { "lat": 40.8181191, "lon": -73.9605745 }, + { "lat": 40.8186600, "lon": -73.9610407 }, + { "lat": 40.8186803, "lon": -73.9610583 } + ], + "tags": { + "bicycle": "designated", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 223892603, + "bounds": { + "minlat": 40.8045703, + "minlon": -73.9122296, + "maxlat": 40.8046101, + "maxlon": -73.9121361 + }, + "nodes": [ + 588114597, + 10687130505 + ], + "geometry": [ + { "lat": 40.8045703, "lon": -73.9121361 }, + { "lat": 40.8046101, "lon": -73.9122296 } + ], + "tags": { + "cycleway": "track", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 138th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 223892604, + "bounds": { + "minlat": 40.8048440, + "minlon": -73.9174790, + "maxlat": 40.8068230, + "maxlon": -73.9127950 + }, + "nodes": [ + 42763139, + 13809174872, + 8064351045, + 13038754646, + 42743519, + 13038754650, + 13003675178, + 42764615 + ], + "geometry": [ + { "lat": 40.8068230, "lon": -73.9174790 }, + { "lat": 40.8067783, "lon": -73.9173734 }, + { "lat": 40.8061198, "lon": -73.9158164 }, + { "lat": 40.8056089, "lon": -73.9146083 }, + { "lat": 40.8055610, "lon": -73.9144950 }, + { "lat": 40.8055248, "lon": -73.9144093 }, + { "lat": 40.8048799, "lon": -73.9128804 }, + { "lat": 40.8048440, "lon": -73.9127950 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 223892605, + "bounds": { + "minlat": 40.8033810, + "minlon": -73.9197909, + "maxlat": 40.8035651, + "maxlon": -73.9192707 + }, + "nodes": [ + 42753246, + 9908642167, + 471247739, + 9908642168, + 9156970091, + 471247738 + ], + "geometry": [ + { "lat": 40.8035651, "lon": -73.9197909 }, + { "lat": 40.8035296, "lon": -73.9197002 }, + { "lat": 40.8035005, "lon": -73.9196183 }, + { "lat": 40.8034643, "lon": -73.9195088 }, + { "lat": 40.8034263, "lon": -73.9193941 }, + { "lat": 40.8033810, "lon": -73.9192707 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 223892610, + "bounds": { + "minlat": 40.8144662, + "minlon": -73.9149607, + "maxlat": 40.8149410, + "maxlon": -73.9135249 + }, + "nodes": [ + 9903127477, + 5482340604, + 7557474522, + 9917864247, + 9903127474, + 42761063 + ], + "geometry": [ + { "lat": 40.8144662, "lon": -73.9135249 }, + { "lat": 40.8146301, "lon": -73.9140319 }, + { "lat": 40.8147270, "lon": -73.9143252 }, + { "lat": 40.8148929, "lon": -73.9148167 }, + { "lat": 40.8149066, "lon": -73.9148576 }, + { "lat": 40.8149410, "lon": -73.9149607 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223892611, + "bounds": { + "minlat": 40.8161624, + "minlon": -73.9118937, + "maxlat": 40.8224477, + "maxlon": -73.9094593 + }, + "nodes": [ + 42748198, + 13249096570, + 3637945017, + 3637945016, + 42763187, + 42744128, + 8233978561, + 2827501290, + 7668940838, + 42754112, + 12197793918 + ], + "geometry": [ + { "lat": 40.8224477, "lon": -73.9094593 }, + { "lat": 40.8223691, "lon": -73.9094885 }, + { "lat": 40.8212481, "lon": -73.9099045 }, + { "lat": 40.8211912, "lon": -73.9099246 }, + { "lat": 40.8206300, "lon": -73.9101244 }, + { "lat": 40.8199515, "lon": -73.9103555 }, + { "lat": 40.8193036, "lon": -73.9105843 }, + { "lat": 40.8192248, "lon": -73.9106122 }, + { "lat": 40.8185584, "lon": -73.9108912 }, + { "lat": 40.8173685, "lon": -73.9113895 }, + { "lat": 40.8161624, "lon": -73.9118937 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "name": "Saint Ann's Avenue", + "name:etymology:wikidata": "Q7586962", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "St Ann's", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 223892612, + "bounds": { + "minlat": 40.8068230, + "minlon": -73.9174790, + "maxlat": 40.8142783, + "maxlon": -73.9129572 + }, + "nodes": [ + 42763139, + 13809174871, + 10033557506, + 42763143, + 7042980650, + 42763146, + 13809174848, + 42743431, + 13809174849, + 6863247285, + 7564276423, + 5482371854, + 42763151, + 13809174840, + 42733966, + 10127019051, + 1241570590, + 10127019026, + 42763155, + 10127019024, + 13809174833, + 42762558, + 5430145097, + 10127019020, + 42745895, + 10127019018, + 42763161, + 10127019016, + 42763165, + 10127019014, + 1241570601, + 5430145098, + 9903127480, + 2826899798 + ], + "geometry": [ + { "lat": 40.8068230, "lon": -73.9174790 }, + { "lat": 40.8069136, "lon": -73.9174175 }, + { "lat": 40.8069494, "lon": -73.9173932 }, + { "lat": 40.8075060, "lon": -73.9170150 }, + { "lat": 40.8079142, "lon": -73.9167400 }, + { "lat": 40.8081330, "lon": -73.9165890 }, + { "lat": 40.8087179, "lon": -73.9162285 }, + { "lat": 40.8087900, "lon": -73.9161840 }, + { "lat": 40.8088601, "lon": -73.9161414 }, + { "lat": 40.8090176, "lon": -73.9160457 }, + { "lat": 40.8091925, "lon": -73.9159395 }, + { "lat": 40.8092110, "lon": -73.9159282 }, + { "lat": 40.8096970, "lon": -73.9156330 }, + { "lat": 40.8103387, "lon": -73.9152307 }, + { "lat": 40.8104087, "lon": -73.9151868 }, + { "lat": 40.8104891, "lon": -73.9151441 }, + { "lat": 40.8107783, "lon": -73.9149649 }, + { "lat": 40.8109361, "lon": -73.9148781 }, + { "lat": 40.8109940, "lon": -73.9148470 }, + { "lat": 40.8110505, "lon": -73.9148162 }, + { "lat": 40.8112029, "lon": -73.9147293 }, + { "lat": 40.8116510, "lon": -73.9144740 }, + { "lat": 40.8121038, "lon": -73.9142121 }, + { "lat": 40.8122390, "lon": -73.9141341 }, + { "lat": 40.8123010, "lon": -73.9140980 }, + { "lat": 40.8123684, "lon": -73.9140593 }, + { "lat": 40.8129631, "lon": -73.9137171 }, + { "lat": 40.8135453, "lon": -73.9133796 }, + { "lat": 40.8136021, "lon": -73.9133473 }, + { "lat": 40.8136669, "lon": -73.9133082 }, + { "lat": 40.8137985, "lon": -73.9132279 }, + { "lat": 40.8140190, "lon": -73.9131100 }, + { "lat": 40.8141702, "lon": -73.9130206 }, + { "lat": 40.8142783, "lon": -73.9129572 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "Saint Ann's Avenue", + "name:etymology:wikidata": "Q7586962", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "St Ann's", + "tiger:name_type": "Ave", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 223894158, + "bounds": { + "minlat": 40.8490145, + "minlon": -73.9164070, + "maxlat": 40.8496943, + "maxlon": -73.9161214 + }, + "nodes": [ + 2907939235, + 13181365252, + 8647961984, + 9254477533, + 8647961983, + 10765464236, + 8647961982, + 42744753 + ], + "geometry": [ + { "lat": 40.8496943, "lon": -73.9164070 }, + { "lat": 40.8496216, "lon": -73.9163011 }, + { "lat": 40.8495575, "lon": -73.9162078 }, + { "lat": 40.8494934, "lon": -73.9161468 }, + { "lat": 40.8494197, "lon": -73.9161214 }, + { "lat": 40.8493364, "lon": -73.9161234 }, + { "lat": 40.8492188, "lon": -73.9161263 }, + { "lat": 40.8490145, "lon": -73.9161377 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 223894159, + "bounds": { + "minlat": 40.8389820, + "minlon": -73.9185920, + "maxlat": 40.8402250, + "maxlon": -73.9176830 + }, + "nodes": [ + 42736365, + 13036868378, + 13036868380, + 42736368, + 13036942021, + 13036958383, + 42736040 + ], + "geometry": [ + { "lat": 40.8402250, "lon": -73.9176830 }, + { "lat": 40.8401505, "lon": -73.9177377 }, + { "lat": 40.8396635, "lon": -73.9180972 }, + { "lat": 40.8396092, "lon": -73.9181407 }, + { "lat": 40.8395718, "lon": -73.9181669 }, + { "lat": 40.8390334, "lon": -73.9185552 }, + { "lat": 40.8389820, "lon": -73.9185920 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 223894160, + "bounds": { + "minlat": 40.8402250, + "minlon": -73.9176830, + "maxlat": 40.8407660, + "maxlon": -73.9172990 + }, + "nodes": [ + 42736361, + 13247358174, + 13036868379, + 42736365 + ], + "geometry": [ + { "lat": 40.8407660, "lon": -73.9172990 }, + { "lat": 40.8407212, "lon": -73.9173312 }, + { "lat": 40.8403109, "lon": -73.9176220 }, + { "lat": 40.8402250, "lon": -73.9176830 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 223894161, + "bounds": { + "minlat": 40.8530760, + "minlon": -73.9182204, + "maxlat": 40.8532812, + "maxlon": -73.9180158 + }, + "nodes": [ + 4720620196, + 12697058568, + 2384257244, + 42743079 + ], + "geometry": [ + { "lat": 40.8532812, "lon": -73.9180158 }, + { "lat": 40.8531597, "lon": -73.9181327 }, + { "lat": 40.8531146, "lon": -73.9181761 }, + { "lat": 40.8530760, "lon": -73.9182204 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 223894164, + "bounds": { + "minlat": 40.8500160, + "minlon": -73.9159500, + "maxlat": 40.8504430, + "maxlon": -73.9153641 + }, + "nodes": [ + 42769952, + 8463760565, + 12739115603, + 42769956 + ], + "geometry": [ + { "lat": 40.8500160, "lon": -73.9159500 }, + { "lat": 40.8503042, "lon": -73.9155370 }, + { "lat": 40.8503550, "lon": -73.9154737 }, + { "lat": 40.8504430, "lon": -73.9153641 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 223894165, + "bounds": { + "minlat": 40.8402684, + "minlon": -73.9213917, + "maxlat": 40.8408760, + "maxlon": -73.9190110 + }, + "nodes": [ + 42740200, + 13037005874, + 11955331843, + 42776415, + 2327276549, + 2327276551, + 12163756879, + 12163756880, + 2912071066, + 12163756882, + 12163756881, + 12163756886, + 2912071065, + 12163756885, + 12163756887, + 12163756888, + 42745197 + ], + "geometry": [ + { "lat": 40.8406480, "lon": -73.9190110 }, + { "lat": 40.8406728, "lon": -73.9190955 }, + { "lat": 40.8408111, "lon": -73.9195662 }, + { "lat": 40.8408760, "lon": -73.9197830 }, + { "lat": 40.8406023, "lon": -73.9204364 }, + { "lat": 40.8403775, "lon": -73.9208613 }, + { "lat": 40.8403184, "lon": -73.9209846 }, + { "lat": 40.8402989, "lon": -73.9210272 }, + { "lat": 40.8402850, "lon": -73.9210691 }, + { "lat": 40.8402778, "lon": -73.9211019 }, + { "lat": 40.8402725, "lon": -73.9211387 }, + { "lat": 40.8402703, "lon": -73.9211714 }, + { "lat": 40.8402684, "lon": -73.9212039 }, + { "lat": 40.8402688, "lon": -73.9212527 }, + { "lat": 40.8402735, "lon": -73.9212943 }, + { "lat": 40.8402836, "lon": -73.9213385 }, + { "lat": 40.8402940, "lon": -73.9213917 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West 170th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 223894166, + "bounds": { + "minlat": 40.8423829, + "minlon": -73.9274645, + "maxlat": 40.8521292, + "maxlon": -73.9206655 + }, + "nodes": [ + 12050046936, + 12050046957, + 12050046934, + 12050046933, + 6566753764, + 12050068189, + 60920489, + 60920490, + 12050068190, + 12050068191, + 6566753762, + 12050068192, + 8748510696, + 60919657, + 12054403071, + 12054403072, + 60919658, + 60919692, + 12054403073, + 12054403074, + 60919745, + 12054403075, + 42743065, + 12054403076, + 12055955052, + 42743067, + 12055955057, + 12055955058, + 12708570428, + 12055955053, + 12055955054, + 12055955060, + 12055955055, + 12055955061, + 12055955056, + 12055955062, + 12056107823, + 9918264502, + 12056107825, + 9918264503, + 12056107824, + 42732710 + ], + "geometry": [ + { "lat": 40.8423829, "lon": -73.9274645 }, + { "lat": 40.8424115, "lon": -73.9274505 }, + { "lat": 40.8424421, "lon": -73.9274339 }, + { "lat": 40.8424769, "lon": -73.9274133 }, + { "lat": 40.8425359, "lon": -73.9273699 }, + { "lat": 40.8425923, "lon": -73.9273262 }, + { "lat": 40.8426525, "lon": -73.9272784 }, + { "lat": 40.8428998, "lon": -73.9270593 }, + { "lat": 40.8429653, "lon": -73.9270046 }, + { "lat": 40.8430138, "lon": -73.9269668 }, + { "lat": 40.8430669, "lon": -73.9269308 }, + { "lat": 40.8431284, "lon": -73.9268951 }, + { "lat": 40.8439947, "lon": -73.9264368 }, + { "lat": 40.8468740, "lon": -73.9248967 }, + { "lat": 40.8477572, "lon": -73.9244268 }, + { "lat": 40.8478021, "lon": -73.9244004 }, + { "lat": 40.8478413, "lon": -73.9243735 }, + { "lat": 40.8478901, "lon": -73.9243374 }, + { "lat": 40.8490347, "lon": -73.9234747 }, + { "lat": 40.8490879, "lon": -73.9234295 }, + { "lat": 40.8491370, "lon": -73.9233830 }, + { "lat": 40.8499591, "lon": -73.9225852 }, + { "lat": 40.8500668, "lon": -73.9224854 }, + { "lat": 40.8501810, "lon": -73.9223783 }, + { "lat": 40.8502855, "lon": -73.9222885 }, + { "lat": 40.8504893, "lon": -73.9221239 }, + { "lat": 40.8507796, "lon": -73.9218926 }, + { "lat": 40.8509760, "lon": -73.9217329 }, + { "lat": 40.8513453, "lon": -73.9214292 }, + { "lat": 40.8516207, "lon": -73.9212027 }, + { "lat": 40.8517352, "lon": -73.9211042 }, + { "lat": 40.8517917, "lon": -73.9210538 }, + { "lat": 40.8518472, "lon": -73.9210029 }, + { "lat": 40.8518911, "lon": -73.9209585 }, + { "lat": 40.8519378, "lon": -73.9209123 }, + { "lat": 40.8519853, "lon": -73.9208625 }, + { "lat": 40.8520511, "lon": -73.9207891 }, + { "lat": 40.8520737, "lon": -73.9207638 }, + { "lat": 40.8520948, "lon": -73.9207344 }, + { "lat": 40.8521066, "lon": -73.9207127 }, + { "lat": 40.8521178, "lon": -73.9206899 }, + { "lat": 40.8521292, "lon": -73.9206655 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 223894167, + "bounds": { + "minlat": 40.8403620, + "minlon": -73.9180620, + "maxlat": 40.8411613, + "maxlon": -73.9175333 + }, + "nodes": [ + 42736047, + 13037005868, + 9650370425, + 13036868343, + 42736043 + ], + "geometry": [ + { "lat": 40.8411613, "lon": -73.9175333 }, + { "lat": 40.8411038, "lon": -73.9176608 }, + { "lat": 40.8410882, "lon": -73.9177025 }, + { "lat": 40.8404580, "lon": -73.9180145 }, + { "lat": 40.8403620, "lon": -73.9180620 } + ], + "tags": { + "highway": "unclassified", + "name": "Plaza Drive", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223894168, + "bounds": { + "minlat": 40.8504430, + "minlon": -73.9155182, + "maxlat": 40.8505426, + "maxlon": -73.9153641 + }, + "nodes": [ + 42769956, + 9918264461, + 2907939233 + ], + "geometry": [ + { "lat": 40.8504430, "lon": -73.9153641 }, + { "lat": 40.8504928, "lon": -73.9154444 }, + { "lat": 40.8505426, "lon": -73.9155182 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "name": "West Tremont Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 223894169, + "bounds": { + "minlat": 40.8504430, + "minlon": -73.9153641, + "maxlat": 40.8510470, + "maxlon": -73.9148730 + }, + "nodes": [ + 42769956, + 12739101058, + 2907939229, + 2907939231, + 42768178 + ], + "geometry": [ + { "lat": 40.8504430, "lon": -73.9153641 }, + { "lat": 40.8505646, "lon": -73.9152480 }, + { "lat": 40.8505884, "lon": -73.9152253 }, + { "lat": 40.8508952, "lon": -73.9149637 }, + { "lat": 40.8510470, "lon": -73.9148730 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "flex_post", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "oneway:bicycle": "no" + } +}, +{ + "type": "way", + "id": 223902542, + "bounds": { + "minlat": 40.8672750, + "minlon": -73.9192150, + "maxlat": 40.8675840, + "maxlon": -73.9184140 + }, + "nodes": [ + 42437925, + 9561229754, + 1764731577, + 9561229772, + 42437926 + ], + "geometry": [ + { "lat": 40.8672750, "lon": -73.9192150 }, + { "lat": 40.8673118, "lon": -73.9191197 }, + { "lat": 40.8675289, "lon": -73.9185557 }, + { "lat": 40.8675520, "lon": -73.9184969 }, + { "lat": 40.8675840, "lon": -73.9184140 } + ], + "tags": { + "highway": "tertiary", + "name": "Vermilyea Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Vermilyea", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 223902543, + "bounds": { + "minlat": 40.8663150, + "minlon": -73.9197555, + "maxlat": 40.8681187, + "maxlon": -73.9185960 + }, + "nodes": [ + 42429226, + 9561229749, + 9561229757, + 42437925, + 9561229755, + 9561229763, + 42427873 + ], + "geometry": [ + { "lat": 40.8681187, "lon": -73.9197555 }, + { "lat": 40.8680168, "lon": -73.9196902 }, + { "lat": 40.8673598, "lon": -73.9192693 }, + { "lat": 40.8672750, "lon": -73.9192150 }, + { "lat": 40.8672057, "lon": -73.9191703 }, + { "lat": 40.8664241, "lon": -73.9186664 }, + { "lat": 40.8663150, "lon": -73.9185960 } + ], + "tags": { + "highway": "tertiary", + "name": "Isham Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Isham", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 223902549, + "bounds": { + "minlat": 40.8667590, + "minlon": -73.9206120, + "maxlat": 40.8672750, + "maxlon": -73.9192150 + }, + "nodes": [ + 42431242, + 9561420934, + 9561229756, + 42437925 + ], + "geometry": [ + { "lat": 40.8667590, "lon": -73.9206120 }, + { "lat": 40.8667999, "lon": -73.9205014 }, + { "lat": 40.8672368, "lon": -73.9193184 }, + { "lat": 40.8672750, "lon": -73.9192150 } + ], + "tags": { + "highway": "tertiary", + "name": "Vermilyea Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Vermilyea", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 223902550, + "bounds": { + "minlat": 40.8648090, + "minlon": -73.9197976, + "maxlat": 40.8654878, + "maxlon": -73.9193620 + }, + "nodes": [ + 4207641227, + 9561420909, + 42431252 + ], + "geometry": [ + { "lat": 40.8654878, "lon": -73.9197976 }, + { "lat": 40.8648944, "lon": -73.9194168 }, + { "lat": 40.8648090, "lon": -73.9193620 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "West 207th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 223939825, + "bounds": { + "minlat": 40.8240696, + "minlon": -73.9087114, + "maxlat": 40.8244207, + "maxlon": -73.9085377 + }, + "nodes": [ + 471223605, + 13249081776, + 2827501292 + ], + "geometry": [ + { "lat": 40.8244207, "lon": -73.9085377 }, + { "lat": 40.8241813, "lon": -73.9086561 }, + { "lat": 40.8240696, "lon": -73.9087114 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Third Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 224063429, + "bounds": { + "minlat": 40.8653812, + "minlon": -73.9081262, + "maxlat": 40.8657744, + "maxlon": -73.9062923 + }, + "nodes": [ + 2328996525, + 2328996328, + 2328996352, + 7043182803, + 7893366975, + 2328996313, + 4980273881, + 10170163948, + 2328996405 + ], + "geometry": [ + { "lat": 40.8653812, "lon": -73.9062923 }, + { "lat": 40.8654729, "lon": -73.9067673 }, + { "lat": 40.8655743, "lon": -73.9072554 }, + { "lat": 40.8656660, "lon": -73.9074463 }, + { "lat": 40.8657102, "lon": -73.9077111 }, + { "lat": 40.8657100, "lon": -73.9078242 }, + { "lat": 40.8657432, "lon": -73.9080122 }, + { "lat": 40.8657490, "lon": -73.9080333 }, + { "lat": 40.8657744, "lon": -73.9081262 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 224063448, + "bounds": { + "minlat": 40.8660969, + "minlon": -73.9066684, + "maxlat": 40.8663045, + "maxlon": -73.9066519 + }, + "nodes": [ + 2328996527, + 2328996485 + ], + "geometry": [ + { "lat": 40.8660969, "lon": -73.9066684 }, + { "lat": 40.8663045, "lon": -73.9066519 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 224063459, + "bounds": { + "minlat": 40.8657041, + "minlon": -73.9067558, + "maxlat": 40.8661306, + "maxlon": -73.9057321 + }, + "nodes": [ + 2328996368, + 2328996527, + 5487855816, + 2328996474 + ], + "geometry": [ + { "lat": 40.8657041, "lon": -73.9057321 }, + { "lat": 40.8660969, "lon": -73.9066684 }, + { "lat": 40.8661152, "lon": -73.9067158 }, + { "lat": 40.8661306, "lon": -73.9067558 } + ], + "tags": { + "highway": "service", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 224063461, + "bounds": { + "minlat": 40.8655966, + "minlon": -73.9068777, + "maxlat": 40.8661306, + "maxlon": -73.9061264 + }, + "nodes": [ + 2328996474, + 5487855818, + 2328996453, + 2328996470, + 2328996478 + ], + "geometry": [ + { "lat": 40.8661306, "lon": -73.9067558 }, + { "lat": 40.8660778, "lon": -73.9067928 }, + { "lat": 40.8660332, "lon": -73.9068005 }, + { "lat": 40.8659154, "lon": -73.9068777 }, + { "lat": 40.8655966, "lon": -73.9061264 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 224064175, + "bounds": { + "minlat": 40.8462018, + "minlon": -73.9134281, + "maxlat": 40.8476913, + "maxlon": -73.9123659 + }, + "nodes": [ + 42736336, + 7589205543, + 7589205537, + 13701329104, + 7589205538, + 13701117135, + 42736337, + 42736338, + 2408357241 + ], + "geometry": [ + { "lat": 40.8476913, "lon": -73.9123659 }, + { "lat": 40.8475438, "lon": -73.9124710 }, + { "lat": 40.8474583, "lon": -73.9125323 }, + { "lat": 40.8474355, "lon": -73.9125491 }, + { "lat": 40.8474000, "lon": -73.9125736 }, + { "lat": 40.8473441, "lon": -73.9126135 }, + { "lat": 40.8467120, "lon": -73.9130643 }, + { "lat": 40.8465803, "lon": -73.9131581 }, + { "lat": 40.8462018, "lon": -73.9134281 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 224065664, + "bounds": { + "minlat": 40.7990920, + "minlon": -73.9092296, + "maxlat": 40.7995011, + "maxlon": -73.9085300 + }, + "nodes": [ + 9701280029, + 42764978 + ], + "geometry": [ + { "lat": 40.7995011, "lon": -73.9092296 }, + { "lat": 40.7990920, "lon": -73.9085300 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "East 134th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "134th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 224065665, + "bounds": { + "minlat": 40.7995011, + "minlon": -73.9108627, + "maxlat": 40.8004513, + "maxlon": -73.9092296 + }, + "nodes": [ + 42764970, + 5859955131, + 42764974, + 9910669609, + 9701280029 + ], + "geometry": [ + { "lat": 40.8004513, "lon": -73.9108627 }, + { "lat": 40.8003847, "lon": -73.9107500 }, + { "lat": 40.7997683, "lon": -73.9096891 }, + { "lat": 40.7995411, "lon": -73.9092984 }, + { "lat": 40.7995011, "lon": -73.9092296 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 134th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "134th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 224065666, + "bounds": { + "minlat": 40.8021284, + "minlon": -73.9073086, + "maxlat": 40.8039387, + "maxlon": -73.9054777 + }, + "nodes": [ + 42770121, + 42765797, + 7059027255, + 42770128, + 7059027258, + 42743495 + ], + "geometry": [ + { "lat": 40.8021284, "lon": -73.9073086 }, + { "lat": 40.8028051, "lon": -73.9066276 }, + { "lat": 40.8030360, "lon": -73.9063916 }, + { "lat": 40.8033695, "lon": -73.9060575 }, + { "lat": 40.8034025, "lon": -73.9060228 }, + { "lat": 40.8039387, "lon": -73.9054777 } + ], + "tags": { + "highway": "unclassified", + "name": "Locust Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Locust", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 224065667, + "bounds": { + "minlat": 40.8021284, + "minlon": -73.9084888, + "maxlat": 40.8028065, + "maxlon": -73.9073086 + }, + "nodes": [ + 42770121, + 9910669574, + 9910669612, + 9910669575, + 42775297 + ], + "geometry": [ + { "lat": 40.8021284, "lon": -73.9073086 }, + { "lat": 40.8021674, "lon": -73.9073907 }, + { "lat": 40.8021943, "lon": -73.9074370 }, + { "lat": 40.8027691, "lon": -73.9084245 }, + { "lat": 40.8028065, "lon": -73.9084888 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 224065668, + "bounds": { + "minlat": 40.7985820, + "minlon": -73.9108904, + "maxlat": 40.8021284, + "maxlon": -73.9073086 + }, + "nodes": [ + 42770105, + 9910669602, + 9910669601, + 42770110, + 9910669604, + 9910669603, + 42764974, + 9910669606, + 9910669605, + 6106849938, + 42747219, + 42719492, + 7043090359, + 42770121 + ], + "geometry": [ + { "lat": 40.7985820, "lon": -73.9108904 }, + { "lat": 40.7986253, "lon": -73.9108469 }, + { "lat": 40.7986685, "lon": -73.9108033 }, + { "lat": 40.7991742, "lon": -73.9102946 }, + { "lat": 40.7996669, "lon": -73.9097936 }, + { "lat": 40.7997043, "lon": -73.9097555 }, + { "lat": 40.7997683, "lon": -73.9096891 }, + { "lat": 40.7998333, "lon": -73.9096226 }, + { "lat": 40.7998695, "lon": -73.9095854 }, + { "lat": 40.8002549, "lon": -73.9091909 }, + { "lat": 40.8003722, "lon": -73.9090724 }, + { "lat": 40.8009463, "lon": -73.9084923 }, + { "lat": 40.8014869, "lon": -73.9079540 }, + { "lat": 40.8021284, "lon": -73.9073086 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Locust Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Locust", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 224065669, + "bounds": { + "minlat": 40.8004513, + "minlon": -73.9108627, + "maxlat": 40.8028065, + "maxlon": -73.9084888 + }, + "nodes": [ + 42764970, + 5629592174, + 42747216, + 42719489, + 42737596, + 12313043295, + 42775297 + ], + "geometry": [ + { "lat": 40.8004513, "lon": -73.9108627 }, + { "lat": 40.8008881, "lon": -73.9104137 }, + { "lat": 40.8010537, "lon": -73.9102506 }, + { "lat": 40.8016270, "lon": -73.9096720 }, + { "lat": 40.8022011, "lon": -73.9090958 }, + { "lat": 40.8027175, "lon": -73.9085775 }, + { "lat": 40.8028065, "lon": -73.9084888 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "unclassified", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Walnut Avenue", + "name_1": "Rose Feiss Boulevard", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walnut", + "tiger:name_base_1": "Rose Feiss", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 224065672, + "bounds": { + "minlat": 40.8183800, + "minlon": -73.9473494, + "maxlat": 40.8185359, + "maxlon": -73.9469800 + }, + "nodes": [ + 42439598, + 10171324736, + 7784459449, + 42432955 + ], + "geometry": [ + { "lat": 40.8183800, "lon": -73.9469800 }, + { "lat": 40.8184210, "lon": -73.9470771 }, + { "lat": 40.8184810, "lon": -73.9472193 }, + { "lat": 40.8185359, "lon": -73.9473494 } + ], + "tags": { + "highway": "residential", + "name": "West 137th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 224065673, + "bounds": { + "minlat": 40.8171160, + "minlon": -73.9480090, + "maxlat": 40.8174271, + "maxlon": -73.9478646 + }, + "nodes": [ + 42439588, + 7784459434, + 5403823140, + 4205440411 + ], + "geometry": [ + { "lat": 40.8171160, "lon": -73.9480090 }, + { "lat": 40.8172200, "lon": -73.9479608 }, + { "lat": 40.8172716, "lon": -73.9479368 }, + { "lat": 40.8174271, "lon": -73.9478646 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 224065674, + "bounds": { + "minlat": 40.8194689, + "minlon": -73.9469155, + "maxlat": 40.8205827, + "maxlon": -73.9463959 + }, + "nodes": [ + 4205440417, + 4081385769, + 42432957, + 7784459463, + 7784459421, + 42432960 + ], + "geometry": [ + { "lat": 40.8194689, "lon": -73.9469155 }, + { "lat": 40.8198513, "lon": -73.9467383 }, + { "lat": 40.8199030, "lon": -73.9467125 }, + { "lat": 40.8199688, "lon": -73.9466829 }, + { "lat": 40.8205091, "lon": -73.9464302 }, + { "lat": 40.8205827, "lon": -73.9463959 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 224065675, + "bounds": { + "minlat": 40.7980714, + "minlon": -73.9120600, + "maxlat": 40.7992580, + "maxlon": -73.9100073 + }, + "nodes": [ + 42772998, + 1241563587, + 7554016069, + 42770105, + 7554016056 + ], + "geometry": [ + { "lat": 40.7992580, "lon": -73.9120600 }, + { "lat": 40.7988654, "lon": -73.9113807 }, + { "lat": 40.7986180, "lon": -73.9109528 }, + { "lat": 40.7985820, "lon": -73.9108904 }, + { "lat": 40.7980714, "lon": -73.9100073 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 132nd Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "132nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 224065676, + "bounds": { + "minlat": 40.8183800, + "minlon": -73.9469800, + "maxlat": 40.8208736, + "maxlon": -73.9451567 + }, + "nodes": [ + 42439598, + 10171324742, + 10166154761, + 42435981, + 10166154763, + 10171324733, + 42439599, + 10171324729, + 10166154782, + 42433789, + 10166154778, + 10166154730, + 42439601 + ], + "geometry": [ + { "lat": 40.8183800, "lon": -73.9469800 }, + { "lat": 40.8184419, "lon": -73.9469353 }, + { "lat": 40.8189567, "lon": -73.9465581 }, + { "lat": 40.8190060, "lon": -73.9465220 }, + { "lat": 40.8190655, "lon": -73.9464787 }, + { "lat": 40.8195712, "lon": -73.9461067 }, + { "lat": 40.8196280, "lon": -73.9460650 }, + { "lat": 40.8196884, "lon": -73.9460216 }, + { "lat": 40.8202055, "lon": -73.9456487 }, + { "lat": 40.8202550, "lon": -73.9456130 }, + { "lat": 40.8203165, "lon": -73.9455677 }, + { "lat": 40.8208219, "lon": -73.9451950 }, + { "lat": 40.8208736, "lon": -73.9451567 } + ], + "tags": { + "highway": "tertiary", + "name": "Edgecombe Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 224069062, + "bounds": { + "minlat": 40.8318734, + "minlon": -73.9096210, + "maxlat": 40.8322810, + "maxlon": -73.9083528 + }, + "nodes": [ + 42742454, + 12038123105, + 10921009052, + 12038123098, + 42742456, + 12038123096, + 5481921458, + 1657650815 + ], + "geometry": [ + { "lat": 40.8322810, "lon": -73.9096210 }, + { "lat": 40.8322377, "lon": -73.9094834 }, + { "lat": 40.8321535, "lon": -73.9092156 }, + { "lat": 40.8320353, "lon": -73.9088400 }, + { "lat": 40.8320070, "lon": -73.9087500 }, + { "lat": 40.8319857, "lon": -73.9086865 }, + { "lat": 40.8318976, "lon": -73.9084247 }, + { "lat": 40.8318734, "lon": -73.9083528 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "East 168th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 224069067, + "bounds": { + "minlat": 40.8291428, + "minlon": -73.9113991, + "maxlat": 40.8301832, + "maxlon": -73.9108058 + }, + "nodes": [ + 4202385772, + 5482223752, + 13031077590, + 42764732 + ], + "geometry": [ + { "lat": 40.8301832, "lon": -73.9108058 }, + { "lat": 40.8295358, "lon": -73.9111750 }, + { "lat": 40.8292078, "lon": -73.9113620 }, + { "lat": 40.8291428, "lon": -73.9113991 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "Webster Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 224069069, + "bounds": { + "minlat": 40.8321591, + "minlon": -73.9096919, + "maxlat": 40.8322810, + "maxlon": -73.9096210 + }, + "nodes": [ + 42742454, + 12038056031, + 7062529351 + ], + "geometry": [ + { "lat": 40.8322810, "lon": -73.9096210 }, + { "lat": 40.8322131, "lon": -73.9096605 }, + { "lat": 40.8321591, "lon": -73.9096919 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "Webster Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "turn:lanes:backward": "left||", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 224069074, + "bounds": { + "minlat": 40.8303170, + "minlon": -73.9104900, + "maxlat": 40.8307370, + "maxlon": -73.9092430 + }, + "nodes": [ + 42759468, + 5482223743, + 13031288229, + 42759466, + 13031288231, + 13031123966, + 42759462 + ], + "geometry": [ + { "lat": 40.8303170, "lon": -73.9092430 }, + { "lat": 40.8304338, "lon": -73.9096017 }, + { "lat": 40.8304463, "lon": -73.9096403 }, + { "lat": 40.8304700, "lon": -73.9097130 }, + { "lat": 40.8305008, "lon": -73.9098026 }, + { "lat": 40.8306930, "lon": -73.9103620 }, + { "lat": 40.8307370, "lon": -73.9104900 } + ], + "tags": { + "highway": "residential", + "name": "East 167th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 224071327, + "bounds": { + "minlat": 40.8461066, + "minlon": -73.9194527, + "maxlat": 40.8463259, + "maxlon": -73.9191746 + }, + "nodes": [ + 2329087596, + 42734971 + ], + "geometry": [ + { "lat": 40.8463259, "lon": -73.9194527 }, + { "lat": 40.8461066, "lon": -73.9191746 } + ], + "tags": { + "highway": "residential", + "name": "Nelson Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 224071328, + "bounds": { + "minlat": 40.8462784, + "minlon": -73.9207036, + "maxlat": 40.8467968, + "maxlon": -73.9205944 + }, + "nodes": [ + 42737555, + 12046770963, + 12046770964, + 13181365244, + 2329087590, + 12046770965, + 12046770966, + 12046770967, + 12046770968, + 12046845369, + 2329087588, + 12046845370, + 12046845383, + 12046845372, + 42769941 + ], + "geometry": [ + { "lat": 40.8462784, "lon": -73.9205944 }, + { "lat": 40.8463080, "lon": -73.9206190 }, + { "lat": 40.8463342, "lon": -73.9206377 }, + { "lat": 40.8463418, "lon": -73.9206426 }, + { "lat": 40.8463591, "lon": -73.9206536 }, + { "lat": 40.8463848, "lon": -73.9206669 }, + { "lat": 40.8464126, "lon": -73.9206796 }, + { "lat": 40.8464445, "lon": -73.9206921 }, + { "lat": 40.8464735, "lon": -73.9207004 }, + { "lat": 40.8465004, "lon": -73.9207036 }, + { "lat": 40.8465323, "lon": -73.9207029 }, + { "lat": 40.8465722, "lon": -73.9206985 }, + { "lat": 40.8465942, "lon": -73.9206939 }, + { "lat": 40.8466173, "lon": -73.9206871 }, + { "lat": 40.8467968, "lon": -73.9206232 } + ], + "tags": { + "highway": "residential", + "name": "Featherbed Lane", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 224071329, + "bounds": { + "minlat": 40.8461559, + "minlon": -73.9214852, + "maxlat": 40.8462962, + "maxlon": -73.9205944 + }, + "nodes": [ + 11398821130, + 12046838480, + 13181365298, + 12046838479, + 12046838478, + 2329087593, + 12046838477, + 12046838476, + 12046838475, + 12046838474, + 12046838473, + 12046838472, + 12046838471, + 12046838470, + 42737555 + ], + "geometry": [ + { "lat": 40.8461559, "lon": -73.9214852 }, + { "lat": 40.8461900, "lon": -73.9213304 }, + { "lat": 40.8462296, "lon": -73.9212142 }, + { "lat": 40.8462538, "lon": -73.9211432 }, + { "lat": 40.8462670, "lon": -73.9210883 }, + { "lat": 40.8462770, "lon": -73.9210414 }, + { "lat": 40.8462852, "lon": -73.9209926 }, + { "lat": 40.8462909, "lon": -73.9209421 }, + { "lat": 40.8462950, "lon": -73.9208888 }, + { "lat": 40.8462962, "lon": -73.9208329 }, + { "lat": 40.8462955, "lon": -73.9207810 }, + { "lat": 40.8462934, "lon": -73.9207288 }, + { "lat": 40.8462902, "lon": -73.9206833 }, + { "lat": 40.8462845, "lon": -73.9206344 }, + { "lat": 40.8462784, "lon": -73.9205944 } + ], + "tags": { + "highway": "residential", + "name": "Featherbed Lane", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 224084753, + "bounds": { + "minlat": 40.8555126, + "minlon": -73.9164728, + "maxlat": 40.8566144, + "maxlon": -73.9161996 + }, + "nodes": [ + 42743086, + 7476260838, + 8253495160, + 7476260850, + 6738008933 + ], + "geometry": [ + { "lat": 40.8555126, "lon": -73.9164728 }, + { "lat": 40.8556406, "lon": -73.9164401 }, + { "lat": 40.8560266, "lon": -73.9163453 }, + { "lat": 40.8563037, "lon": -73.9162762 }, + { "lat": 40.8566144, "lon": -73.9161996 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 224084757, + "bounds": { + "minlat": 40.8548640, + "minlon": -73.9172176, + "maxlat": 40.8559224, + "maxlon": -73.9167228 + }, + "nodes": [ + 42727425, + 8253495161, + 2778781596, + 7899105489, + 42776747, + 9918291088, + 9918291087, + 2778781595, + 2778781594, + 9918291086, + 9918291085, + 368046423, + 9918291083, + 9918291082, + 9918291081, + 2901711900, + 2778781593, + 2778781592, + 9918291084, + 2808842339, + 42743082 + ], + "geometry": [ + { "lat": 40.8559224, "lon": -73.9172176 }, + { "lat": 40.8558862, "lon": -73.9171457 }, + { "lat": 40.8557700, "lon": -73.9168937 }, + { "lat": 40.8557358, "lon": -73.9168410 }, + { "lat": 40.8557005, "lon": -73.9167942 }, + { "lat": 40.8556635, "lon": -73.9167562 }, + { "lat": 40.8556250, "lon": -73.9167356 }, + { "lat": 40.8555825, "lon": -73.9167230 }, + { "lat": 40.8555501, "lon": -73.9167228 }, + { "lat": 40.8554366, "lon": -73.9167502 }, + { "lat": 40.8553743, "lon": -73.9167727 }, + { "lat": 40.8553280, "lon": -73.9167938 }, + { "lat": 40.8550567, "lon": -73.9169549 }, + { "lat": 40.8550273, "lon": -73.9169667 }, + { "lat": 40.8550040, "lon": -73.9169725 }, + { "lat": 40.8549746, "lon": -73.9169710 }, + { "lat": 40.8549530, "lon": -73.9169573 }, + { "lat": 40.8549371, "lon": -73.9169395 }, + { "lat": 40.8549209, "lon": -73.9169204 }, + { "lat": 40.8549051, "lon": -73.9168916 }, + { "lat": 40.8548640, "lon": -73.9168160 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:advisory": "20 mph", + "name": "West 179th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "179th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 224084761, + "bounds": { + "minlat": 40.8521292, + "minlon": -73.9206655, + "maxlat": 40.8522360, + "maxlon": -73.9203776 + }, + "nodes": [ + 4720620193, + 12056545242, + 9918264501, + 42732710 + ], + "geometry": [ + { "lat": 40.8522360, "lon": -73.9203776 }, + { "lat": 40.8522066, "lon": -73.9204608 }, + { "lat": 40.8521854, "lon": -73.9205187 }, + { "lat": 40.8521292, "lon": -73.9206655 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 224088622, + "bounds": { + "minlat": 40.8290738, + "minlon": -73.9113991, + "maxlat": 40.8291428, + "maxlon": -73.9111912 + }, + "nodes": [ + 42761134, + 13031144551, + 42764732 + ], + "geometry": [ + { "lat": 40.8290738, "lon": -73.9111912 }, + { "lat": 40.8290960, "lon": -73.9112581 }, + { "lat": 40.8291428, "lon": -73.9113991 } + ], + "tags": { + "highway": "residential", + "name": "East 166th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "166th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 224088623, + "bounds": { + "minlat": 40.8277596, + "minlon": -73.9116734, + "maxlat": 40.8281953, + "maxlon": -73.9116628 + }, + "nodes": [ + 7560827238, + 12038440369, + 13550818481, + 42761108 + ], + "geometry": [ + { "lat": 40.8277596, "lon": -73.9116734 }, + { "lat": 40.8278823, "lon": -73.9116628 }, + { "lat": 40.8280623, "lon": -73.9116633 }, + { "lat": 40.8281953, "lon": -73.9116637 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes:bus:forward": "1", + "name": "Brook Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10467", + "tiger:zip_right": "10470" + } +}, +{ + "type": "way", + "id": 224088624, + "bounds": { + "minlat": 40.8158741, + "minlon": -73.9198546, + "maxlat": 40.8165679, + "maxlon": -73.9195490 + }, + "nodes": [ + 9903127466, + 9903127465, + 7695597321, + 42750594 + ], + "geometry": [ + { "lat": 40.8165679, "lon": -73.9195490 }, + { "lat": 40.8164550, "lon": -73.9196005 }, + { "lat": 40.8162000, "lon": -73.9197179 }, + { "lat": 40.8158741, "lon": -73.9198546 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "name": "Courtlandt Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Courtland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 224088628, + "bounds": { + "minlat": 40.8178250, + "minlon": -73.9167900, + "maxlat": 40.8182290, + "maxlon": -73.9152630 + }, + "nodes": [ + 42768531, + 12040128406, + 13703615019, + 5482340538, + 12040128217, + 42776426 + ], + "geometry": [ + { "lat": 40.8178250, "lon": -73.9152630 }, + { "lat": 40.8178594, "lon": -73.9153931 }, + { "lat": 40.8180013, "lon": -73.9159294 }, + { "lat": 40.8180180, "lon": -73.9159925 }, + { "lat": 40.8182026, "lon": -73.9166900 }, + { "lat": 40.8182290, "lon": -73.9167900 } + ], + "tags": { + "highway": "residential", + "name": "East 152nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "152nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 224088631, + "bounds": { + "minlat": 40.8290606, + "minlon": -73.9111912, + "maxlat": 40.8304700, + "maxlon": -73.9097130 + }, + "nodes": [ + 42759466, + 13031288247, + 5482223746, + 5482223749, + 13701139148, + 2329230136, + 13031186630, + 3640160780, + 3640160779, + 3640160781, + 42761134 + ], + "geometry": [ + { "lat": 40.8304700, "lon": -73.9097130 }, + { "lat": 40.8304287, "lon": -73.9097518 }, + { "lat": 40.8298112, "lon": -73.9103312 }, + { "lat": 40.8293723, "lon": -73.9107476 }, + { "lat": 40.8291077, "lon": -73.9109971 }, + { "lat": 40.8290839, "lon": -73.9110195 }, + { "lat": 40.8290712, "lon": -73.9110388 }, + { "lat": 40.8290641, "lon": -73.9110614 }, + { "lat": 40.8290606, "lon": -73.9110986 }, + { "lat": 40.8290626, "lon": -73.9111362 }, + { "lat": 40.8290738, "lon": -73.9111912 } + ], + "tags": { + "highway": "residential", + "name": "Brook Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 224088633, + "bounds": { + "minlat": 40.8155433, + "minlon": -73.9198546, + "maxlat": 40.8158741, + "maxlon": -73.9185885 + }, + "nodes": [ + 42750594, + 12040128309, + 6415815533, + 42768516 + ], + "geometry": [ + { "lat": 40.8158741, "lon": -73.9198546 }, + { "lat": 40.8158532, "lon": -73.9197756 }, + { "lat": 40.8155806, "lon": -73.9187441 }, + { "lat": 40.8155433, "lon": -73.9185885 } + ], + "tags": { + "highway": "residential", + "name": "East 148th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "148th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 224088634, + "bounds": { + "minlat": 40.8175810, + "minlon": -73.9155280, + "maxlat": 40.8178250, + "maxlon": -73.9152630 + }, + "nodes": [ + 42768527, + 12040128452, + 42768531 + ], + "geometry": [ + { "lat": 40.8175810, "lon": -73.9155280 }, + { "lat": 40.8176334, "lon": -73.9154711 }, + { "lat": 40.8178250, "lon": -73.9152630 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 224088635, + "bounds": { + "minlat": 40.8156212, + "minlon": -73.9184606, + "maxlat": 40.8159885, + "maxlon": -73.9177880 + }, + "nodes": [ + 6415815544, + 7564299102 + ], + "geometry": [ + { "lat": 40.8159885, "lon": -73.9177880 }, + { "lat": 40.8156212, "lon": -73.9184606 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 224424139, + "bounds": { + "minlat": 40.7840871, + "minlon": -73.9588732, + "maxlat": 40.7842128, + "maxlon": -73.9585567 + }, + "nodes": [ + 42433933, + 3053662545, + 12346955500, + 5306313713, + 42444809 + ], + "geometry": [ + { "lat": 40.7842128, "lon": -73.9588732 }, + { "lat": 40.7841793, "lon": -73.9587957 }, + { "lat": 40.7841556, "lon": -73.9587388 }, + { "lat": 40.7841303, "lon": -73.9586780 }, + { "lat": 40.7840871, "lon": -73.9585567 } + ], + "tags": { + "bicycle": "destination", + "cycleway": "lane", + "highway": "service", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "East 90th Street", + "name:ru": "Восточная 90-я стрит", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 225231322, + "bounds": { + "minlat": 40.7529239, + "minlon": -73.9066678, + "maxlat": 40.7531933, + "maxlon": -73.9060729 + }, + "nodes": [ + 7758314403, + 11469204793, + 13784327139, + 1414020896, + 11643653188, + 42883034 + ], + "geometry": [ + { "lat": 40.7531933, "lon": -73.9066678 }, + { "lat": 40.7531490, "lon": -73.9065726 }, + { "lat": 40.7531417, "lon": -73.9065570 }, + { "lat": 40.7530414, "lon": -73.9063414 }, + { "lat": 40.7529540, "lon": -73.9061417 }, + { "lat": 40.7529239, "lon": -73.9060729 } + ], + "tags": { + "cycleway": "track", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 225232940, + "bounds": { + "minlat": 40.7535991, + "minlon": -73.9197165, + "maxlat": 40.7540215, + "maxlon": -73.9190672 + }, + "nodes": [ + 42923772, + 9189020431, + 9189020430, + 3569401945, + 9189020428, + 9189020429, + 9189020427, + 5116199185, + 8593804575, + 42900657 + ], + "geometry": [ + { "lat": 40.7535991, "lon": -73.9190672 }, + { "lat": 40.7536469, "lon": -73.9190892 }, + { "lat": 40.7536764, "lon": -73.9191039 }, + { "lat": 40.7537129, "lon": -73.9191316 }, + { "lat": 40.7537524, "lon": -73.9191778 }, + { "lat": 40.7538090, "lon": -73.9192663 }, + { "lat": 40.7538667, "lon": -73.9193661 }, + { "lat": 40.7539128, "lon": -73.9194570 }, + { "lat": 40.7539980, "lon": -73.9196432 }, + { "lat": 40.7540215, "lon": -73.9197165 } + ], + "tags": { + "highway": "tertiary", + "name": "35th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 225232941, + "bounds": { + "minlat": 40.7540712, + "minlon": -73.9152649, + "maxlat": 40.7672340, + "maxlon": -73.9045827 + }, + "nodes": [ + 42824187, + 6450834324, + 8593804544, + 3570249808, + 42883019, + 3570249811, + 4912692288, + 4912692276, + 42904502, + 4912692271, + 13703129912, + 7661226107, + 42856588, + 7661232275, + 42810512, + 12650943485, + 5904706537, + 6453065711, + 42874083, + 6453065712, + 6453088936, + 42833023, + 6453088934, + 13015363212, + 13015363206, + 5904706524, + 10763787850, + 42842500, + 6453075346, + 3570224407, + 8017938291, + 42839040 + ], + "geometry": [ + { "lat": 40.7540712, "lon": -73.9152649 }, + { "lat": 40.7541304, "lon": -73.9152162 }, + { "lat": 40.7552907, "lon": -73.9142777 }, + { "lat": 40.7562805, "lon": -73.9134755 }, + { "lat": 40.7563513, "lon": -73.9134181 }, + { "lat": 40.7564260, "lon": -73.9133576 }, + { "lat": 40.7566588, "lon": -73.9131647 }, + { "lat": 40.7570099, "lon": -73.9128844 }, + { "lat": 40.7570794, "lon": -73.9128280 }, + { "lat": 40.7571434, "lon": -73.9127762 }, + { "lat": 40.7583417, "lon": -73.9118010 }, + { "lat": 40.7586410, "lon": -73.9115574 }, + { "lat": 40.7587007, "lon": -73.9114869 }, + { "lat": 40.7587586, "lon": -73.9114178 }, + { "lat": 40.7602499, "lon": -73.9102280 }, + { "lat": 40.7608190, "lon": -73.9097633 }, + { "lat": 40.7609343, "lon": -73.9096692 }, + { "lat": 40.7611992, "lon": -73.9094479 }, + { "lat": 40.7612670, "lon": -73.9093898 }, + { "lat": 40.7613380, "lon": -73.9093291 }, + { "lat": 40.7628032, "lon": -73.9081648 }, + { "lat": 40.7628675, "lon": -73.9081151 }, + { "lat": 40.7629271, "lon": -73.9080669 }, + { "lat": 40.7636700, "lon": -73.9074717 }, + { "lat": 40.7642076, "lon": -73.9070409 }, + { "lat": 40.7652502, "lon": -73.9062055 }, + { "lat": 40.7652867, "lon": -73.9061759 }, + { "lat": 40.7653446, "lon": -73.9061290 }, + { "lat": 40.7654153, "lon": -73.9060717 }, + { "lat": 40.7671046, "lon": -73.9046928 }, + { "lat": 40.7671634, "lon": -73.9046433 }, + { "lat": 40.7672340, "lon": -73.9045827 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "47th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 225232942, + "bounds": { + "minlat": 40.7568588, + "minlon": -73.9107769, + "maxlat": 40.7579539, + "maxlon": -73.9098884 + }, + "nodes": [ + 2520377419, + 7661206805, + 7660868780, + 7660830676, + 2520377434 + ], + "geometry": [ + { "lat": 40.7579539, "lon": -73.9098884 }, + { "lat": 40.7578850, "lon": -73.9099612 }, + { "lat": 40.7575911, "lon": -73.9101928 }, + { "lat": 40.7569562, "lon": -73.9106997 }, + { "lat": 40.7568588, "lon": -73.9107769 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "49th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 225232943, + "bounds": { + "minlat": 40.7557640, + "minlon": -73.9123966, + "maxlat": 40.7562358, + "maxlon": -73.9121680 + }, + "nodes": [ + 42860069, + 4912692253, + 5867077866, + 3570249803, + 42883022 + ], + "geometry": [ + { "lat": 40.7562358, "lon": -73.9123966 }, + { "lat": 40.7561595, "lon": -73.9123575 }, + { "lat": 40.7561183, "lon": -73.9123390 }, + { "lat": 40.7558892, "lon": -73.9122285 }, + { "lat": 40.7557640, "lon": -73.9121680 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Newtown Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through" + } +}, +{ + "type": "way", + "id": 225232944, + "bounds": { + "minlat": 40.7522866, + "minlon": -73.9321474, + "maxlat": 40.7533800, + "maxlon": -73.9312628 + }, + "nodes": [ + 42892937, + 8593804510, + 13702960673, + 8316237200, + 3569401934, + 42876782 + ], + "geometry": [ + { "lat": 40.7522866, "lon": -73.9321474 }, + { "lat": 40.7523448, "lon": -73.9321017 }, + { "lat": 40.7525429, "lon": -73.9319412 }, + { "lat": 40.7532772, "lon": -73.9313463 }, + { "lat": 40.7533203, "lon": -73.9313112 }, + { "lat": 40.7533800, "lon": -73.9312628 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "name": "32nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 225232945, + "bounds": { + "minlat": 40.7563894, + "minlon": -73.9400400, + "maxlat": 40.7564870, + "maxlon": -73.9398564 + }, + "nodes": [ + 42825876, + 7737868074, + 8393785146 + ], + "geometry": [ + { "lat": 40.7564870, "lon": -73.9400400 }, + { "lat": 40.7564274, "lon": -73.9399279 }, + { "lat": 40.7563894, "lon": -73.9398564 } + ], + "tags": { + "highway": "residential", + "name": "39th Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "39th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 225232946, + "bounds": { + "minlat": 40.7519789, + "minlon": -73.9321474, + "maxlat": 40.7522866, + "maxlon": -73.9319184 + }, + "nodes": [ + 42838389, + 8088590963, + 9189020470, + 9189020469, + 9189020468, + 7758609804, + 9189020467, + 42892937 + ], + "geometry": [ + { "lat": 40.7519789, "lon": -73.9319184 }, + { "lat": 40.7521031, "lon": -73.9319256 }, + { "lat": 40.7521319, "lon": -73.9319366 }, + { "lat": 40.7521582, "lon": -73.9319546 }, + { "lat": 40.7521805, "lon": -73.9319793 }, + { "lat": 40.7522113, "lon": -73.9320202 }, + { "lat": 40.7522443, "lon": -73.9320738 }, + { "lat": 40.7522866, "lon": -73.9321474 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "39th Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 225232947, + "bounds": { + "minlat": 40.7552920, + "minlon": -73.9084650, + "maxlat": 40.7569948, + "maxlon": -73.9078208 + }, + "nodes": [ + 2313537249, + 7661206809, + 10891936635, + 13716404532, + 10891936633, + 6450786702, + 42819566 + ], + "geometry": [ + { "lat": 40.7569948, "lon": -73.9078208 }, + { "lat": 40.7568951, "lon": -73.9078793 }, + { "lat": 40.7567384, "lon": -73.9079366 }, + { "lat": 40.7555979, "lon": -73.9083535 }, + { "lat": 40.7554289, "lon": -73.9084153 }, + { "lat": 40.7554103, "lon": -73.9084221 }, + { "lat": 40.7552920, "lon": -73.9084650 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "51st Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 225232948, + "bounds": { + "minlat": 40.7536576, + "minlon": -73.9146889, + "maxlat": 40.7537807, + "maxlon": -73.9146824 + }, + "nodes": [ + 7622888739, + 9188971710, + 6450837704 + ], + "geometry": [ + { "lat": 40.7536576, "lon": -73.9146838 }, + { "lat": 40.7537539, "lon": -73.9146824 }, + { "lat": 40.7537807, "lon": -73.9146889 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "highway": "residential", + "lit": "yes", + "name": "34th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 225235228, + "bounds": { + "minlat": 40.7354294, + "minlon": -73.9221309, + "maxlat": 40.7355313, + "maxlon": -73.9212005 + }, + "nodes": [ + 42825303, + 11155242437, + 2874974208, + 42825302 + ], + "geometry": [ + { "lat": 40.7354294, "lon": -73.9212005 }, + { "lat": 40.7354584, "lon": -73.9214498 }, + { "lat": 40.7354819, "lon": -73.9216517 }, + { "lat": 40.7355313, "lon": -73.9221309 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Queens-Midtown Expressway", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Laurel Hill", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 225389417, + "bounds": { + "minlat": 40.7420476, + "minlon": -73.9074523, + "maxlat": 40.7453966, + "maxlon": -73.9066344 + }, + "nodes": [ + 42870273, + 5538919088, + 42894995, + 42855897, + 9950268706, + 42818010, + 9950327834, + 42908306, + 5481947968, + 7038557973, + 9192059024, + 9950268705, + 276314183 + ], + "geometry": [ + { "lat": 40.7453966, "lon": -73.9066344 }, + { "lat": 40.7453083, "lon": -73.9066567 }, + { "lat": 40.7446600, "lon": -73.9068173 }, + { "lat": 40.7441294, "lon": -73.9069502 }, + { "lat": 40.7432829, "lon": -73.9071431 }, + { "lat": 40.7432180, "lon": -73.9071590 }, + { "lat": 40.7431607, "lon": -73.9071729 }, + { "lat": 40.7425150, "lon": -73.9073290 }, + { "lat": 40.7423704, "lon": -73.9073693 }, + { "lat": 40.7422937, "lon": -73.9073907 }, + { "lat": 40.7421370, "lon": -73.9074267 }, + { "lat": 40.7421205, "lon": -73.9074314 }, + { "lat": 40.7420476, "lon": -73.9074523 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "name": "58th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 225389419, + "bounds": { + "minlat": 40.7453923, + "minlon": -73.9066344, + "maxlat": 40.7454041, + "maxlon": -73.9055370 + }, + "nodes": [ + 42870273, + 11919139576, + 5538919089, + 5538919090, + 11919132855, + 42827392 + ], + "geometry": [ + { "lat": 40.7453966, "lon": -73.9066344 }, + { "lat": 40.7453940, "lon": -73.9065382 }, + { "lat": 40.7453928, "lon": -73.9064931 }, + { "lat": 40.7453923, "lon": -73.9062564 }, + { "lat": 40.7454017, "lon": -73.9056818 }, + { "lat": 40.7454041, "lon": -73.9055370 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Roosevelt Avenue", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 225523575, + "bounds": { + "minlat": 40.7026314, + "minlon": -73.9880981, + "maxlat": 40.7033230, + "maxlon": -73.9876351 + }, + "nodes": [ + 2342950006, + 11945611240, + 11669846805, + 11669846806, + 11669846807, + 11669846808, + 11669846809, + 2342950021, + 11669846810, + 11669846811, + 10170379787, + 6424524889, + 11945611238, + 2568519476, + 2568519463, + 6917388385, + 11945611239, + 10722370719, + 13352208759, + 10170379786, + 2342950004, + 2342950002, + 2342950003, + 2342950006 + ], + "geometry": [ + { "lat": 40.7028625, "lon": -73.9878463 }, + { "lat": 40.7028524, "lon": -73.9878770 }, + { "lat": 40.7028756, "lon": -73.9878903 }, + { "lat": 40.7030425, "lon": -73.9879844 }, + { "lat": 40.7030510, "lon": -73.9879583 }, + { "lat": 40.7031490, "lon": -73.9880135 }, + { "lat": 40.7031446, "lon": -73.9880270 }, + { "lat": 40.7032066, "lon": -73.9880620 }, + { "lat": 40.7032706, "lon": -73.9880981 }, + { "lat": 40.7032754, "lon": -73.9880832 }, + { "lat": 40.7032956, "lon": -73.9880124 }, + { "lat": 40.7033166, "lon": -73.9879411 }, + { "lat": 40.7033230, "lon": -73.9879174 }, + { "lat": 40.7031999, "lon": -73.9878495 }, + { "lat": 40.7031941, "lon": -73.9876767 }, + { "lat": 40.7031931, "lon": -73.9876517 }, + { "lat": 40.7031911, "lon": -73.9876351 }, + { "lat": 40.7031749, "lon": -73.9876353 }, + { "lat": 40.7031296, "lon": -73.9876378 }, + { "lat": 40.7030887, "lon": -73.9876400 }, + { "lat": 40.7026314, "lon": -73.9876670 }, + { "lat": 40.7026318, "lon": -73.9877023 }, + { "lat": 40.7026326, "lon": -73.9877153 }, + { "lat": 40.7028625, "lon": -73.9878463 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 225870523, + "bounds": { + "minlat": 40.7969199, + "minlon": -73.9235861, + "maxlat": 40.7974408, + "maxlon": -73.9226870 + }, + "nodes": [ + 5482405100, + 3659139066, + 9156860541, + 3659139064 + ], + "geometry": [ + { "lat": 40.7974408, "lon": -73.9235861 }, + { "lat": 40.7973559, "lon": -73.9234771 }, + { "lat": 40.7969951, "lon": -73.9228474 }, + { "lat": 40.7969199, "lon": -73.9226870 } + ], + "tags": { + "access": "private", + "bicycle": "yes", + "highway": "service", + "lanes": "2", + "name": "Bronx Shore Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 225870524, + "bounds": { + "minlat": 40.7861197, + "minlon": -73.9292772, + "maxlat": 40.7893581, + "maxlon": -73.9265558 + }, + "nodes": [ + 277482212, + 9153832686, + 13327650499, + 7820815419, + 1890944402, + 277482217, + 1890944391, + 4461307913, + 13327663620, + 277482218, + 10713117999, + 277482219, + 731930601 + ], + "geometry": [ + { "lat": 40.7893581, "lon": -73.9265558 }, + { "lat": 40.7892154, "lon": -73.9266925 }, + { "lat": 40.7886801, "lon": -73.9271633 }, + { "lat": 40.7878469, "lon": -73.9278973 }, + { "lat": 40.7872238, "lon": -73.9284436 }, + { "lat": 40.7865326, "lon": -73.9290586 }, + { "lat": 40.7864543, "lon": -73.9291174 }, + { "lat": 40.7863792, "lon": -73.9291673 }, + { "lat": 40.7863232, "lon": -73.9291988 }, + { "lat": 40.7863064, "lon": -73.9292082 }, + { "lat": 40.7862427, "lon": -73.9292368 }, + { "lat": 40.7861786, "lon": -73.9292620 }, + { "lat": 40.7861197, "lon": -73.9292772 } + ], + "tags": { + "highway": "tertiary", + "name": "Central Road" + } +}, +{ + "type": "way", + "id": 225870526, + "bounds": { + "minlat": 40.7918731, + "minlon": -73.9250877, + "maxlat": 40.7950961, + "maxlon": -73.9231467 + }, + "nodes": [ + 9153856319, + 3990460049, + 2346816261, + 3040261549, + 8904217215, + 2346816263, + 12212157500, + 2346816277, + 2346816279, + 2346816281, + 2346816283, + 2346816285, + 2346816289 + ], + "geometry": [ + { "lat": 40.7918731, "lon": -73.9250877 }, + { "lat": 40.7920889, "lon": -73.9249094 }, + { "lat": 40.7921879, "lon": -73.9248288 }, + { "lat": 40.7922620, "lon": -73.9247610 }, + { "lat": 40.7922751, "lon": -73.9247490 }, + { "lat": 40.7927062, "lon": -73.9243543 }, + { "lat": 40.7927136, "lon": -73.9243486 }, + { "lat": 40.7931527, "lon": -73.9240058 }, + { "lat": 40.7934350, "lon": -73.9239490 }, + { "lat": 40.7936907, "lon": -73.9237822 }, + { "lat": 40.7943188, "lon": -73.9232603 }, + { "lat": 40.7947421, "lon": -73.9231467 }, + { "lat": 40.7950961, "lon": -73.9232006 } + ], + "tags": { + "bicycle": "designated", + "foot": "yes", + "highway": "service", + "lanes": "2", + "name": "Randalls Island Greenway", + "name:etymology:wikidata": "Q1198892" + } +}, +{ + "type": "way", + "id": 225870534, + "bounds": { + "minlat": 40.7594178, + "minlon": -73.9533338, + "maxlat": 40.7602812, + "maxlon": -73.9522562 + }, + "nodes": [ + 42448079, + 9189040188, + 9913660014, + 9189040189, + 9189040191, + 3552444437, + 9189040193, + 9913660015, + 42450109 + ], + "geometry": [ + { "lat": 40.7594178, "lon": -73.9533338 }, + { "lat": 40.7595221, "lon": -73.9532203 }, + { "lat": 40.7596167, "lon": -73.9531212 }, + { "lat": 40.7597113, "lon": -73.9530094 }, + { "lat": 40.7598165, "lon": -73.9528764 }, + { "lat": 40.7602027, "lon": -73.9524012 }, + { "lat": 40.7602314, "lon": -73.9523581 }, + { "lat": 40.7602583, "lon": -73.9523067 }, + { "lat": 40.7602812, "lon": -73.9522562 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "15 mph", + "name": "West Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 225980769, + "bounds": { + "minlat": 40.8031772, + "minlon": -73.9188969, + "maxlat": 40.8032565, + "maxlon": -73.9172901 + }, + "nodes": [ + 471247737, + 471247736, + 9156970094, + 9156970093, + 471247734, + 42753109 + ], + "geometry": [ + { "lat": 40.8032565, "lon": -73.9188969 }, + { "lat": 40.8032153, "lon": -73.9187129 }, + { "lat": 40.8031992, "lon": -73.9186247 }, + { "lat": 40.8031888, "lon": -73.9185405 }, + { "lat": 40.8031851, "lon": -73.9184579 }, + { "lat": 40.8031772, "lon": -73.9172901 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 225980772, + "bounds": { + "minlat": 40.8308831, + "minlon": -73.9193855, + "maxlat": 40.8328200, + "maxlon": -73.9182405 + }, + "nodes": [ + 42767103, + 7104267529, + 7104267534, + 8187805323, + 13036711390, + 42767109, + 13036711396, + 8187805324, + 8187805285, + 13033269546, + 42747564 + ], + "geometry": [ + { "lat": 40.8308831, "lon": -73.9193855 }, + { "lat": 40.8311348, "lon": -73.9192366 }, + { "lat": 40.8313448, "lon": -73.9191124 }, + { "lat": 40.8315595, "lon": -73.9189854 }, + { "lat": 40.8315786, "lon": -73.9189741 }, + { "lat": 40.8316360, "lon": -73.9189401 }, + { "lat": 40.8317024, "lon": -73.9189007 }, + { "lat": 40.8317457, "lon": -73.9188753 }, + { "lat": 40.8327257, "lon": -73.9182967 }, + { "lat": 40.8327680, "lon": -73.9182717 }, + { "lat": 40.8328200, "lon": -73.9182405 } + ], + "tags": { + "highway": "residential", + "name": "Carroll Place", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Carroll", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 225980775, + "bounds": { + "minlat": 40.8309993, + "minlon": -73.9113797, + "maxlat": 40.8325717, + "maxlon": -73.9105086 + }, + "nodes": [ + 42746986, + 12038379552, + 12038056020, + 42742451 + ], + "geometry": [ + { "lat": 40.8309993, "lon": -73.9113797 }, + { "lat": 40.8311227, "lon": -73.9113113 }, + { "lat": 40.8325067, "lon": -73.9105447 }, + { "lat": 40.8325717, "lon": -73.9105086 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "name": "Clay Avenue", + "name:etymology:wikidata": "Q319630", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Clay", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 225980776, + "bounds": { + "minlat": 40.8325717, + "minlon": -73.9105086, + "maxlat": 40.8341880, + "maxlon": -73.9095740 + }, + "nodes": [ + 42742451, + 10126902008, + 10126902010, + 42746992 + ], + "geometry": [ + { "lat": 40.8325717, "lon": -73.9105086 }, + { "lat": 40.8326513, "lon": -73.9104688 }, + { "lat": 40.8341130, "lon": -73.9096183 }, + { "lat": 40.8341880, "lon": -73.9095740 } + ], + "tags": { + "highway": "residential", + "name": "Clay Avenue", + "name:etymology:wikidata": "Q319630", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Clay", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 225980784, + "bounds": { + "minlat": 40.8003597, + "minlon": -73.9173243, + "maxlat": 40.8016846, + "maxlon": -73.9141778 + }, + "nodes": [ + 42743550, + 595800941, + 42750271 + ], + "geometry": [ + { "lat": 40.8016846, "lon": -73.9173243 }, + { "lat": 40.8014789, "lon": -73.9168342 }, + { "lat": 40.8003597, "lon": -73.9141778 } + ], + "tags": { + "highway": "unclassified", + "name": "East 132nd Street", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "132nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 225980787, + "bounds": { + "minlat": 40.8307370, + "minlon": -73.9113797, + "maxlat": 40.8309993, + "maxlon": -73.9104900 + }, + "nodes": [ + 42746986, + 12038379563, + 10034673439, + 12038379566, + 42759462 + ], + "geometry": [ + { "lat": 40.8309993, "lon": -73.9113797 }, + { "lat": 40.8309971, "lon": -73.9112802 }, + { "lat": 40.8309961, "lon": -73.9112368 }, + { "lat": 40.8307839, "lon": -73.9106253 }, + { "lat": 40.8307370, "lon": -73.9104900 } + ], + "tags": { + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 225980796, + "bounds": { + "minlat": 40.8322810, + "minlon": -73.9105086, + "maxlat": 40.8325717, + "maxlon": -73.9096210 + }, + "nodes": [ + 42742451, + 10126902007, + 7044464260, + 10126902006, + 42742454 + ], + "geometry": [ + { "lat": 40.8325717, "lon": -73.9105086 }, + { "lat": 40.8325366, "lon": -73.9104064 }, + { "lat": 40.8324050, "lon": -73.9100020 }, + { "lat": 40.8323297, "lon": -73.9097706 }, + { "lat": 40.8322810, "lon": -73.9096210 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "East 168th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 225980807, + "bounds": { + "minlat": 40.8224093, + "minlon": -73.9279194, + "maxlat": 40.8226517, + "maxlon": -73.9278055 + }, + "nodes": [ + 1213919118, + 9166351217, + 42734153 + ], + "geometry": [ + { "lat": 40.8224093, "lon": -73.9279194 }, + { "lat": 40.8225293, "lon": -73.9278648 }, + { "lat": 40.8226517, "lon": -73.9278055 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "cycleway:right": "lane", + "highway": "residential", + "layer": "1", + "name": "Gerard Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 225980809, + "bounds": { + "minlat": 40.8354009, + "minlon": -73.9203187, + "maxlat": 40.8367960, + "maxlon": -73.9194800 + }, + "nodes": [ + 42734195, + 5762094234, + 7686390438, + 13703485695, + 3163954897, + 42734199 + ], + "geometry": [ + { "lat": 40.8354009, "lon": -73.9203187 }, + { "lat": 40.8354880, "lon": -73.9202666 }, + { "lat": 40.8357999, "lon": -73.9200823 }, + { "lat": 40.8364513, "lon": -73.9196897 }, + { "lat": 40.8367427, "lon": -73.9195116 }, + { "lat": 40.8367960, "lon": -73.9194800 } + ], + "tags": { + "highway": "residential", + "name": "Gerard Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 225980812, + "bounds": { + "minlat": 40.8361348, + "minlon": -73.9223269, + "maxlat": 40.8364576, + "maxlon": -73.9218408 + }, + "nodes": [ + 42736005, + 12163757023, + 12163757022, + 2912071072 + ], + "geometry": [ + { "lat": 40.8361348, "lon": -73.9223269 }, + { "lat": 40.8362739, "lon": -73.9221173 }, + { "lat": 40.8363102, "lon": -73.9220628 }, + { "lat": 40.8364576, "lon": -73.9218408 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 225980815, + "bounds": { + "minlat": 40.8087869, + "minlon": -73.9287652, + "maxlat": 40.8090530, + "maxlon": -73.9285674 + }, + "nodes": [ + 42747180, + 567820415 + ], + "geometry": [ + { "lat": 40.8090530, "lon": -73.9285674 }, + { "lat": 40.8087869, "lon": -73.9287652 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "name": "Lincoln Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 225980817, + "bounds": { + "minlat": 40.8090530, + "minlon": -73.9285674, + "maxlat": 40.8096350, + "maxlon": -73.9281423 + }, + "nodes": [ + 7553907592, + 7553904079, + 11427300194, + 42747180 + ], + "geometry": [ + { "lat": 40.8096350, "lon": -73.9281423 }, + { "lat": 40.8095107, "lon": -73.9282347 }, + { "lat": 40.8091219, "lon": -73.9285173 }, + { "lat": 40.8090530, "lon": -73.9285674 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Lincoln Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 225980819, + "bounds": { + "minlat": 40.8766068, + "minlon": -73.9094916, + "maxlat": 40.8772238, + "maxlon": -73.9090578 + }, + "nodes": [ + 42443990, + 13068324346, + 1545097182, + 1545097246, + 1545097282, + 10868090807, + 42435567 + ], + "geometry": [ + { "lat": 40.8766068, "lon": -73.9094916 }, + { "lat": 40.8766810, "lon": -73.9094915 }, + { "lat": 40.8767252, "lon": -73.9094915 }, + { "lat": 40.8768243, "lon": -73.9094545 }, + { "lat": 40.8768993, "lon": -73.9093986 }, + { "lat": 40.8771648, "lon": -73.9091197 }, + { "lat": 40.8772238, "lon": -73.9090578 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "foot": "yes", + "highway": "residential", + "inline_skates": "yes", + "lcn": "yes", + "name": "Marble Hill Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Marble Hill", + "tiger:name_type": "Ave", + "tiger:zip_left": "10463" + } +}, +{ + "type": "way", + "id": 225980820, + "bounds": { + "minlat": 40.8182290, + "minlon": -73.9167900, + "maxlat": 40.8254648, + "maxlon": -73.9131794 + }, + "nodes": [ + 42776426, + 12040128421, + 42749754, + 42776431, + 42776237, + 42760879, + 13547352301, + 42744088, + 42776441, + 12040128174, + 42770800, + 10647801854, + 12040069748, + 42776446, + 12040069750, + 13703009843, + 8571918527, + 12038478902, + 42748174, + 12038478903, + 42732948, + 12038455943, + 42739729 + ], + "geometry": [ + { "lat": 40.8182290, "lon": -73.9167900 }, + { "lat": 40.8182861, "lon": -73.9167643 }, + { "lat": 40.8188928, "lon": -73.9164912 }, + { "lat": 40.8195270, "lon": -73.9162010 }, + { "lat": 40.8201750, "lon": -73.9159020 }, + { "lat": 40.8208313, "lon": -73.9156082 }, + { "lat": 40.8208851, "lon": -73.9155808 }, + { "lat": 40.8216700, "lon": -73.9151810 }, + { "lat": 40.8223050, "lon": -73.9148430 }, + { "lat": 40.8228910, "lon": -73.9145329 }, + { "lat": 40.8229446, "lon": -73.9145046 }, + { "lat": 40.8229989, "lon": -73.9144756 }, + { "lat": 40.8235263, "lon": -73.9141937 }, + { "lat": 40.8235780, "lon": -73.9141660 }, + { "lat": 40.8236358, "lon": -73.9141350 }, + { "lat": 40.8239196, "lon": -73.9139828 }, + { "lat": 40.8240667, "lon": -73.9139038 }, + { "lat": 40.8240925, "lon": -73.9138922 }, + { "lat": 40.8241974, "lon": -73.9138450 }, + { "lat": 40.8242973, "lon": -73.9137905 }, + { "lat": 40.8248081, "lon": -73.9135119 }, + { "lat": 40.8254008, "lon": -73.9132118 }, + { "lat": 40.8254648, "lon": -73.9131794 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Melrose Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Melrose", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 225980821, + "bounds": { + "minlat": 40.8167610, + "minlon": -73.9174600, + "maxlat": 40.8175120, + "maxlon": -73.9171190 + }, + "nodes": [ + 42758639, + 12040128322, + 12040128194, + 6415815522, + 42733530 + ], + "geometry": [ + { "lat": 40.8175120, "lon": -73.9171190 }, + { "lat": 40.8174582, "lon": -73.9171434 }, + { "lat": 40.8168561, "lon": -73.9174169 }, + { "lat": 40.8168210, "lon": -73.9174331 }, + { "lat": 40.8167610, "lon": -73.9174600 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Melrose Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Melrose", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 225980822, + "bounds": { + "minlat": 40.8175120, + "minlon": -73.9171190, + "maxlat": 40.8182290, + "maxlon": -73.9167900 + }, + "nodes": [ + 42776426, + 12040128422, + 12040128399, + 42758639 + ], + "geometry": [ + { "lat": 40.8182290, "lon": -73.9167900 }, + { "lat": 40.8181755, "lon": -73.9168146 }, + { "lat": 40.8175646, "lon": -73.9170949 }, + { "lat": 40.8175120, "lon": -73.9171190 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Melrose Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Melrose", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 225980836, + "bounds": { + "minlat": 40.8029288, + "minlon": -73.9202800, + "maxlat": 40.8035651, + "maxlon": -73.9197909 + }, + "nodes": [ + 7553992429, + 11427300005, + 9156970087, + 9156970088, + 9156970089, + 42753246 + ], + "geometry": [ + { "lat": 40.8029288, "lon": -73.9202800 }, + { "lat": 40.8029816, "lon": -73.9202402 }, + { "lat": 40.8032136, "lon": -73.9200653 }, + { "lat": 40.8033342, "lon": -73.9199556 }, + { "lat": 40.8034803, "lon": -73.9198490 }, + { "lat": 40.8035651, "lon": -73.9197909 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Ann's Avenue", + "name:etymology:wikidata": "Q7586962", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "St Ann's", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 225980839, + "bounds": { + "minlat": 40.8224477, + "minlon": -73.9094593, + "maxlat": 40.8228497, + "maxlon": -73.9093332 + }, + "nodes": [ + 42748198, + 13249096563, + 3637985733, + 6395375453 + ], + "geometry": [ + { "lat": 40.8224477, "lon": -73.9094593 }, + { "lat": 40.8227092, "lon": -73.9093541 }, + { "lat": 40.8227612, "lon": -73.9093332 }, + { "lat": 40.8228497, "lon": -73.9094249 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "highway": "residential", + "name": "Saint Ann's Avenue", + "name:etymology:wikidata": "Q7586962", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "St Ann's", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 225980844, + "bounds": { + "minlat": 40.8082178, + "minlon": -73.9078327, + "maxlat": 40.8099370, + "maxlon": -73.9072600 + }, + "nodes": [ + 1931610637, + 42766931, + 13247432507, + 42762533 + ], + "geometry": [ + { "lat": 40.8082178, "lon": -73.9078327 }, + { "lat": 40.8090663, "lon": -73.9075347 }, + { "lat": 40.8098675, "lon": -73.9072819 }, + { "lat": 40.8099370, "lon": -73.9072600 } + ], + "tags": { + "bicycle": "designated", + "highway": "secondary", + "name": "Southern Boulevard", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Southern", + "tiger:name_type": "Blvd", + "tiger:zip_left": "10458", + "tiger:zip_right": "10460", + "wikidata": "Q14707315", + "wikipedia": "en:Southern Boulevard (Bronx)" + } +}, +{ + "type": "way", + "id": 225980852, + "bounds": { + "minlat": 40.8395674, + "minlon": -73.9159531, + "maxlat": 40.8447268, + "maxlon": -73.9122647 + }, + "nodes": [ + 42733795, + 13017674388, + 12737767487, + 42733792, + 2408354097, + 12737767492, + 42733789, + 5481864189, + 42733786, + 13017792658, + 42733782, + 13017792653, + 13017792648, + 42733778, + 13017792643, + 13003536257, + 5762102236, + 42733773 + ], + "geometry": [ + { "lat": 40.8447268, "lon": -73.9122647 }, + { "lat": 40.8446382, "lon": -73.9123280 }, + { "lat": 40.8437568, "lon": -73.9129582 }, + { "lat": 40.8436965, "lon": -73.9130013 }, + { "lat": 40.8435809, "lon": -73.9130839 }, + { "lat": 40.8435227, "lon": -73.9131255 }, + { "lat": 40.8428877, "lon": -73.9135795 }, + { "lat": 40.8427494, "lon": -73.9136800 }, + { "lat": 40.8422545, "lon": -73.9140321 }, + { "lat": 40.8416886, "lon": -73.9144367 }, + { "lat": 40.8416243, "lon": -73.9144826 }, + { "lat": 40.8415709, "lon": -73.9145208 }, + { "lat": 40.8407024, "lon": -73.9151417 }, + { "lat": 40.8406375, "lon": -73.9151881 }, + { "lat": 40.8405828, "lon": -73.9152273 }, + { "lat": 40.8404907, "lon": -73.9152932 }, + { "lat": 40.8396517, "lon": -73.9158938 }, + { "lat": 40.8395674, "lon": -73.9159531 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 225980883, + "bounds": { + "minlat": 40.8084991, + "minlon": -73.9306045, + "maxlat": 40.8093262, + "maxlon": -73.9294982 + }, + "nodes": [ + 567820429, + 13003571875, + 2885577290, + 595801150 + ], + "geometry": [ + { "lat": 40.8093262, "lon": -73.9294982 }, + { "lat": 40.8092722, "lon": -73.9295719 }, + { "lat": 40.8088560, "lon": -73.9301310 }, + { "lat": 40.8084991, "lon": -73.9306045 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Third Avenue Bridge", + "oneway": "yes", + "sidewalk:both": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 226007046, + "bounds": { + "minlat": 40.8347248, + "minlon": -73.9406514, + "maxlat": 40.8358221, + "maxlon": -73.9398835 + }, + "nodes": [ + 42442664, + 9935939405, + 9935939390, + 42442671, + 9935939388, + 8083411263, + 4378236636, + 42433014 + ], + "geometry": [ + { "lat": 40.8347248, "lon": -73.9406514 }, + { "lat": 40.8347872, "lon": -73.9406069 }, + { "lat": 40.8352997, "lon": -73.9402392 }, + { "lat": 40.8353595, "lon": -73.9401964 }, + { "lat": 40.8354151, "lon": -73.9401588 }, + { "lat": 40.8355597, "lon": -73.9400610 }, + { "lat": 40.8357556, "lon": -73.9399288 }, + { "lat": 40.8358221, "lon": -73.9398835 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 226007048, + "bounds": { + "minlat": 40.8533800, + "minlon": -73.9374350, + "maxlat": 40.8551136, + "maxlon": -73.9369042 + }, + "nodes": [ + 42427206, + 9484666551, + 8718862727, + 42427212 + ], + "geometry": [ + { "lat": 40.8533800, "lon": -73.9374350 }, + { "lat": 40.8534414, "lon": -73.9374161 }, + { "lat": 40.8550540, "lon": -73.9369216 }, + { "lat": 40.8551136, "lon": -73.9369042 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 226007049, + "bounds": { + "minlat": 40.8402359, + "minlon": -73.9430518, + "maxlat": 40.8421172, + "maxlon": -73.9423007 + }, + "nodes": [ + 13239244162, + 9566927314, + 13239244161, + 11266904699, + 12547088048, + 11266904709, + 11652898122, + 11652898133, + 9566927274, + 13239244160 + ], + "geometry": [ + { "lat": 40.8421172, "lon": -73.9423007 }, + { "lat": 40.8420820, "lon": -73.9423159 }, + { "lat": 40.8420474, "lon": -73.9423297 }, + { "lat": 40.8416731, "lon": -73.9424788 }, + { "lat": 40.8412499, "lon": -73.9426473 }, + { "lat": 40.8410954, "lon": -73.9427089 }, + { "lat": 40.8407462, "lon": -73.9428480 }, + { "lat": 40.8406001, "lon": -73.9429062 }, + { "lat": 40.8402864, "lon": -73.9430319 }, + { "lat": 40.8402359, "lon": -73.9430518 } + ], + "tags": { + "alt_name": "Irving Cancer Center Way", + "bicycle": "yes", + "cycleway": "shared_lane", + "description": "The Herbert Irving Comprehensive Cancer Center at New York Presbyterian Hospital provides state of the art care for patients with various types of cancer, as well as supporting community programs, such as providing free mammograms for uninsured women. Flo", + "highway": "secondary", + "historic": "memorial", + "lanes": "2", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 226007050, + "bounds": { + "minlat": 40.8551136, + "minlon": -73.9369042, + "maxlat": 40.8571090, + "maxlon": -73.9356020 + }, + "nodes": [ + 42427212, + 8718862726, + 2348610335, + 2348610337, + 2348610339, + 1763602604, + 2348610341, + 8929221220, + 42427216 + ], + "geometry": [ + { "lat": 40.8551136, "lon": -73.9369042 }, + { "lat": 40.8551807, "lon": -73.9368813 }, + { "lat": 40.8552453, "lon": -73.9368581 }, + { "lat": 40.8553877, "lon": -73.9368069 }, + { "lat": 40.8555401, "lon": -73.9367439 }, + { "lat": 40.8556547, "lon": -73.9366861 }, + { "lat": 40.8557709, "lon": -73.9366091 }, + { "lat": 40.8570530, "lon": -73.9356453 }, + { "lat": 40.8571090, "lon": -73.9356020 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 226007051, + "bounds": { + "minlat": 40.8509090, + "minlon": -73.9382840, + "maxlat": 40.8533800, + "maxlon": -73.9374350 + }, + "nodes": [ + 42427190, + 9563821080, + 11595000937, + 9563795434, + 42427196, + 9426376313, + 11596413341, + 765251416, + 11596413340, + 9426376315, + 42427206 + ], + "geometry": [ + { "lat": 40.8509090, "lon": -73.9382840 }, + { "lat": 40.8509905, "lon": -73.9382533 }, + { "lat": 40.8511735, "lon": -73.9381831 }, + { "lat": 40.8520680, "lon": -73.9378419 }, + { "lat": 40.8521285, "lon": -73.9378214 }, + { "lat": 40.8521935, "lon": -73.9377997 }, + { "lat": 40.8528373, "lon": -73.9376088 }, + { "lat": 40.8529028, "lon": -73.9375886 }, + { "lat": 40.8529710, "lon": -73.9375673 }, + { "lat": 40.8533147, "lon": -73.9374561 }, + { "lat": 40.8533800, "lon": -73.9374350 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 226007052, + "bounds": { + "minlat": 40.8440509, + "minlon": -73.9411456, + "maxlat": 40.8453757, + "maxlon": -73.9405244 + }, + "nodes": [ + 42427152, + 7604384350, + 7604384364, + 42427150, + 7604384362, + 9908572581, + 7127352947, + 7127353157, + 7127352921, + 7604384375, + 42427146 + ], + "geometry": [ + { "lat": 40.8453757, "lon": -73.9405244 }, + { "lat": 40.8453153, "lon": -73.9405521 }, + { "lat": 40.8447604, "lon": -73.9407742 }, + { "lat": 40.8446950, "lon": -73.9408022 }, + { "lat": 40.8446295, "lon": -73.9408284 }, + { "lat": 40.8444710, "lon": -73.9408957 }, + { "lat": 40.8444041, "lon": -73.9409266 }, + { "lat": 40.8443454, "lon": -73.9409575 }, + { "lat": 40.8442800, "lon": -73.9409960 }, + { "lat": 40.8441158, "lon": -73.9410998 }, + { "lat": 40.8440509, "lon": -73.9411456 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "rcn_ref": "9", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 226007066, + "bounds": { + "minlat": 40.8653840, + "minlon": -73.9322240, + "maxlat": 40.8656896, + "maxlon": -73.9312514 + }, + "nodes": [ + 42434670, + 42434667, + 42434662, + 42434648, + 42434631, + 42434623, + 42434618, + 10051021923, + 42434617, + 42434615, + 42434611 + ], + "geometry": [ + { "lat": 40.8656302, "lon": -73.9312514 }, + { "lat": 40.8656662, "lon": -73.9313982 }, + { "lat": 40.8656814, "lon": -73.9314884 }, + { "lat": 40.8656896, "lon": -73.9316063 }, + { "lat": 40.8656837, "lon": -73.9317043 }, + { "lat": 40.8656642, "lon": -73.9318018 }, + { "lat": 40.8656373, "lon": -73.9318828 }, + { "lat": 40.8655991, "lon": -73.9319542 }, + { "lat": 40.8655609, "lon": -73.9320165 }, + { "lat": 40.8654610, "lon": -73.9321326 }, + { "lat": 40.8653840, "lon": -73.9322240 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 226007067, + "bounds": { + "minlat": 40.8632904, + "minlon": -73.9325978, + "maxlat": 40.8653840, + "maxlon": -73.9322240 + }, + "nodes": [ + 42434611, + 42434608, + 42434599, + 42434595, + 42434591, + 42434590, + 9496867910, + 1209796112, + 1209796168, + 9496867911, + 42434584, + 42434583, + 3805629838, + 42434572, + 3805629837, + 42434569, + 42434567, + 42434559 + ], + "geometry": [ + { "lat": 40.8653840, "lon": -73.9322240 }, + { "lat": 40.8652271, "lon": -73.9323168 }, + { "lat": 40.8649888, "lon": -73.9324120 }, + { "lat": 40.8648052, "lon": -73.9324791 }, + { "lat": 40.8646460, "lon": -73.9325354 }, + { "lat": 40.8644825, "lon": -73.9325801 }, + { "lat": 40.8644035, "lon": -73.9325978 }, + { "lat": 40.8643314, "lon": -73.9325956 }, + { "lat": 40.8642506, "lon": -73.9325826 }, + { "lat": 40.8641356, "lon": -73.9325581 }, + { "lat": 40.8640136, "lon": -73.9325198 }, + { "lat": 40.8638840, "lon": -73.9324681 }, + { "lat": 40.8637868, "lon": -73.9324364 }, + { "lat": 40.8636970, "lon": -73.9324217 }, + { "lat": 40.8636460, "lon": -73.9324171 }, + { "lat": 40.8635579, "lon": -73.9324221 }, + { "lat": 40.8634742, "lon": -73.9324490 }, + { "lat": 40.8632904, "lon": -73.9325365 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 226007071, + "bounds": { + "minlat": 40.8358221, + "minlon": -73.9401365, + "maxlat": 40.8369673, + "maxlon": -73.9398835 + }, + "nodes": [ + 42433020, + 11292676875, + 5403851253, + 42433017, + 4378236644, + 2075596383, + 42433014 + ], + "geometry": [ + { "lat": 40.8369673, "lon": -73.9401365 }, + { "lat": 40.8368944, "lon": -73.9401287 }, + { "lat": 40.8362906, "lon": -73.9400641 }, + { "lat": 40.8361153, "lon": -73.9400362 }, + { "lat": 40.8358917, "lon": -73.9399863 }, + { "lat": 40.8358785, "lon": -73.9399834 }, + { "lat": 40.8358221, "lon": -73.9398835 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "rcn_ref": "9", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 226007074, + "bounds": { + "minlat": 40.8332231, + "minlon": -73.9493166, + "maxlat": 40.8342798, + "maxlon": -73.9469172 + }, + "nodes": [ + 587934139, + 2348568348, + 2348568351, + 7693632085, + 2348568353, + 2348568355, + 595352907 + ], + "geometry": [ + { "lat": 40.8332352, "lon": -73.9469172 }, + { "lat": 40.8332231, "lon": -73.9470274 }, + { "lat": 40.8338318, "lon": -73.9484774 }, + { "lat": 40.8338656, "lon": -73.9485393 }, + { "lat": 40.8340653, "lon": -73.9489054 }, + { "lat": 40.8342107, "lon": -73.9491945 }, + { "lat": 40.8342798, "lon": -73.9493166 } + ], + "tags": { + "cycleway": "no", + "highway": "residential", + "lanes": "2", + "name": "West 155th Street", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226007076, + "bounds": { + "minlat": 40.8139053, + "minlon": -73.9323062, + "maxlat": 40.8142530, + "maxlon": -73.9313462 + }, + "nodes": [ + 595801192, + 9051549344, + 7085574264, + 7085574269, + 12994213102, + 12994213101, + 12994188100, + 12994188098, + 12994188097, + 595801197 + ], + "geometry": [ + { "lat": 40.8139053, "lon": -73.9313462 }, + { "lat": 40.8139428, "lon": -73.9314372 }, + { "lat": 40.8140357, "lon": -73.9316567 }, + { "lat": 40.8142018, "lon": -73.9320484 }, + { "lat": 40.8142298, "lon": -73.9321175 }, + { "lat": 40.8142490, "lon": -73.9321870 }, + { "lat": 40.8142526, "lon": -73.9322483 }, + { "lat": 40.8142530, "lon": -73.9322948 }, + { "lat": 40.8142504, "lon": -73.9323029 }, + { "lat": 40.8142458, "lon": -73.9323062 } + ], + "tags": { + "highway": "unclassified", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 226007078, + "bounds": { + "minlat": 40.8626109, + "minlon": -73.9202964, + "maxlat": 40.8631688, + "maxlon": -73.9198485 + }, + "nodes": [ + 42455493, + 13347615988, + 9561566534, + 13703152930, + 13703152934, + 1764626359, + 42446797 + ], + "geometry": [ + { "lat": 40.8626109, "lon": -73.9202964 }, + { "lat": 40.8626818, "lon": -73.9202454 }, + { "lat": 40.8627045, "lon": -73.9202291 }, + { "lat": 40.8628332, "lon": -73.9201333 }, + { "lat": 40.8630337, "lon": -73.9199865 }, + { "lat": 40.8631026, "lon": -73.9199358 }, + { "lat": 40.8631688, "lon": -73.9198485 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 226007079, + "bounds": { + "minlat": 40.8643479, + "minlon": -73.9190313, + "maxlat": 40.8644793, + "maxlon": -73.9189398 + }, + "nodes": [ + 42431257, + 9563662424 + ], + "geometry": [ + { "lat": 40.8644793, "lon": -73.9189398 }, + { "lat": 40.8643479, "lon": -73.9190313 } + ], + "tags": { + "bicycle": "designated", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:backward": "|right", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 226007080, + "bounds": { + "minlat": 40.8166513, + "minlon": -73.9348194, + "maxlat": 40.8171783, + "maxlon": -73.9344659 + }, + "nodes": [ + 42424235, + 9557110400, + 9166236589, + 589927996 + ], + "geometry": [ + { "lat": 40.8171783, "lon": -73.9344659 }, + { "lat": 40.8171177, "lon": -73.9345056 }, + { "lat": 40.8167981, "lon": -73.9347359 }, + { "lat": 40.8166513, "lon": -73.9348194 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "secondary", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 226007081, + "bounds": { + "minlat": 40.8064189, + "minlon": -73.9422694, + "maxlat": 40.8108543, + "maxlon": -73.9390289 + }, + "nodes": [ + 42429530, + 10168169645, + 10168169628, + 42438235, + 7004451713, + 10168169611, + 42448141, + 10168169612, + 10171956604, + 42438984, + 10171956603, + 9694730883, + 42448979, + 9694730884, + 10173043169, + 42436724, + 3846051361, + 10171956569, + 42434117, + 10171956570, + 5266458354, + 42444452 + ], + "geometry": [ + { "lat": 40.8108543, "lon": -73.9390289 }, + { "lat": 40.8107773, "lon": -73.9390843 }, + { "lat": 40.8102698, "lon": -73.9394499 }, + { "lat": 40.8102066, "lon": -73.9394953 }, + { "lat": 40.8101552, "lon": -73.9395329 }, + { "lat": 40.8096453, "lon": -73.9399028 }, + { "lat": 40.8095866, "lon": -73.9399455 }, + { "lat": 40.8095368, "lon": -73.9399816 }, + { "lat": 40.8090195, "lon": -73.9403595 }, + { "lat": 40.8089618, "lon": -73.9403996 }, + { "lat": 40.8089057, "lon": -73.9404403 }, + { "lat": 40.8083965, "lon": -73.9408094 }, + { "lat": 40.8083381, "lon": -73.9408517 }, + { "lat": 40.8082838, "lon": -73.9408911 }, + { "lat": 40.8077761, "lon": -73.9412641 }, + { "lat": 40.8077113, "lon": -73.9413121 }, + { "lat": 40.8076574, "lon": -73.9413502 }, + { "lat": 40.8071587, "lon": -73.9417187 }, + { "lat": 40.8070890, "lon": -73.9417696 }, + { "lat": 40.8070313, "lon": -73.9418117 }, + { "lat": 40.8065183, "lon": -73.9421961 }, + { "lat": 40.8064189, "lon": -73.9422694 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 226015228, + "bounds": { + "minlat": 40.7754797, + "minlon": -73.9802121, + "maxlat": 40.7761092, + "maxlon": -73.9797528 + }, + "nodes": [ + 42443332, + 9897874392, + 9902312971, + 42443329 + ], + "geometry": [ + { "lat": 40.7761092, "lon": -73.9797528 }, + { "lat": 40.7760574, "lon": -73.9797906 }, + { "lat": 40.7755429, "lon": -73.9801660 }, + { "lat": 40.7754797, "lon": -73.9802121 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:width": "1.8", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 226015229, + "bounds": { + "minlat": 40.7904714, + "minlon": -73.9692971, + "maxlat": 40.7915736, + "maxlon": -73.9684954 + }, + "nodes": [ + 42436985, + 7792793733, + 3875114027, + 42443366, + 7801775762, + 4215936664 + ], + "geometry": [ + { "lat": 40.7915736, "lon": -73.9684954 }, + { "lat": 40.7915238, "lon": -73.9685314 }, + { "lat": 40.7910074, "lon": -73.9689210 }, + { "lat": 40.7909442, "lon": -73.9689668 }, + { "lat": 40.7908883, "lon": -73.9690074 }, + { "lat": 40.7904714, "lon": -73.9692971 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 226015233, + "bounds": { + "minlat": 40.8005680, + "minlon": -73.9416979, + "maxlat": 40.8011841, + "maxlon": -73.9402084 + }, + "nodes": [ + 42435230, + 9178793214, + 5481978540, + 10127369883, + 42435222 + ], + "geometry": [ + { "lat": 40.8005680, "lon": -73.9402084 }, + { "lat": 40.8006066, "lon": -73.9403017 }, + { "lat": 40.8010024, "lon": -73.9412587 }, + { "lat": 40.8011594, "lon": -73.9416383 }, + { "lat": 40.8011841, "lon": -73.9416979 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "name": "East 119th Street", + "name:ru": "Восточная 119-я стрит", + "name_1": "East 119 Street", + "oneway": "yes", + "route": "bicycle" + } +}, +{ + "type": "way", + "id": 226015234, + "bounds": { + "minlat": 40.8011841, + "minlon": -73.9419552, + "maxlat": 40.8012931, + "maxlon": -73.9416979 + }, + "nodes": [ + 42435222, + 596776624 + ], + "geometry": [ + { "lat": 40.8011841, "lon": -73.9416979 }, + { "lat": 40.8012931, "lon": -73.9419552 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "name": "East 119th Street", + "name:ru": "Восточная 119-я стрит", + "name_1": "East 119 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 226015259, + "bounds": { + "minlat": 40.7969920, + "minlon": -73.9317474, + "maxlat": 40.7976374, + "maxlon": -73.9312818 + }, + "nodes": [ + 42443826, + 7925258531, + 13703387143, + 7925258516, + 42435240 + ], + "geometry": [ + { "lat": 40.7976374, "lon": -73.9312818 }, + { "lat": 40.7975638, "lon": -73.9313352 }, + { "lat": 40.7971298, "lon": -73.9316493 }, + { "lat": 40.7970488, "lon": -73.9317082 }, + { "lat": 40.7969920, "lon": -73.9317474 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Pleasant Avenue", + "old_name:1811-1879": "Avenue A", + "old_name:1954-1957": "Paladino Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q16932984", + "wikipedia": "en:Pleasant Avenue" + } +}, +{ + "type": "way", + "id": 226015266, + "bounds": { + "minlat": 40.7828054, + "minlon": -73.9450456, + "maxlat": 40.7832515, + "maxlon": -73.9447201 + }, + "nodes": [ + 2348688907, + 5482216785, + 6162473810, + 4779073679 + ], + "geometry": [ + { "lat": 40.7828054, "lon": -73.9450456 }, + { "lat": 40.7828729, "lon": -73.9449968 }, + { "lat": 40.7831473, "lon": -73.9447990 }, + { "lat": 40.7832515, "lon": -73.9447201 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 226015267, + "bounds": { + "minlat": 40.7852567, + "minlon": -73.9463750, + "maxlat": 40.7868144, + "maxlon": -73.9452422 + }, + "nodes": [ + 42443061, + 5327918974, + 6181709412, + 42443058, + 6181708466, + 5482216744, + 6245242748, + 5631043586, + 5475082076 + ], + "geometry": [ + { "lat": 40.7868144, "lon": -73.9452422 }, + { "lat": 40.7867705, "lon": -73.9452757 }, + { "lat": 40.7862527, "lon": -73.9456590 }, + { "lat": 40.7861808, "lon": -73.9457073 }, + { "lat": 40.7861182, "lon": -73.9457553 }, + { "lat": 40.7858376, "lon": -73.9459587 }, + { "lat": 40.7856063, "lon": -73.9461256 }, + { "lat": 40.7855372, "lon": -73.9461748 }, + { "lat": 40.7852567, "lon": -73.9463750 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 14:00-19:00)", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 226040985, + "bounds": { + "minlat": 40.7173219, + "minlon": -74.0138194, + "maxlat": 40.7176193, + "maxlon": -74.0131667 + }, + "nodes": [ + 246866828, + 5204194239, + 42431629 + ], + "geometry": [ + { "lat": 40.7173219, "lon": -74.0131667 }, + { "lat": 40.7173490, "lon": -74.0132263 }, + { "lat": 40.7176193, "lon": -74.0138194 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226040986, + "bounds": { + "minlat": 40.7168785, + "minlon": -74.0127568, + "maxlat": 40.7171351, + "maxlon": -74.0121906 + }, + "nodes": [ + 4215665528, + 4872753345, + 42431626 + ], + "geometry": [ + { "lat": 40.7168785, "lon": -74.0121906 }, + { "lat": 40.7170775, "lon": -74.0126316 }, + { "lat": 40.7171351, "lon": -74.0127568 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "|right", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226040987, + "bounds": { + "minlat": 40.7122115, + "minlon": -73.9807115, + "maxlat": 40.7123357, + "maxlon": -73.9789405 + }, + "nodes": [ + 2348991669, + 7499128088, + 8304913646, + 6411124184, + 7476469426 + ], + "geometry": [ + { "lat": 40.7123357, "lon": -73.9789405 }, + { "lat": 40.7122675, "lon": -73.9799454 }, + { "lat": 40.7122229, "lon": -73.9805555 }, + { "lat": 40.7122191, "lon": -73.9806086 }, + { "lat": 40.7122115, "lon": -73.9807115 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Cherry Street", + "name:ko": "체리 스트리트", + "name:ru": "Черри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cherry", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10002", + "tiger:zip_right": "10002", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226040991, + "bounds": { + "minlat": 40.7366125, + "minlon": -73.9840840, + "maxlat": 40.7375568, + "maxlon": -73.9818366 + }, + "nodes": [ + 1692450029, + 10165972527, + 12181309694, + 12181309695, + 4132605214, + 390519635 + ], + "geometry": [ + { "lat": 40.7366125, "lon": -73.9818366 }, + { "lat": 40.7366620, "lon": -73.9819633 }, + { "lat": 40.7374642, "lon": -73.9838742 }, + { "lat": 40.7374787, "lon": -73.9839081 }, + { "lat": 40.7374963, "lon": -73.9839497 }, + { "lat": 40.7375568, "lon": -73.9840840 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 21st Street", + "name:ru": "Восточная 21-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "source:geometry": "Bing aerial imagery", + "surface": "asphalt", + "width": "9" + } +}, +{ + "type": "way", + "id": 226040992, + "bounds": { + "minlat": 40.7446313, + "minlon": -73.9865822, + "maxlat": 40.7451890, + "maxlon": -73.9852432 + }, + "nodes": [ + 42436746, + 10166167625, + 9566279635 + ], + "geometry": [ + { "lat": 40.7446313, "lon": -73.9852432 }, + { "lat": 40.7446732, "lon": -73.9853439 }, + { "lat": 40.7451890, "lon": -73.9865822 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr-Su 17:00-23:00)", + "name": "East 29th Street", + "name:ru": "Восточная 29-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226040993, + "bounds": { + "minlat": 40.7426044, + "minlon": -73.9830904, + "maxlat": 40.7437288, + "maxlon": -73.9804162 + }, + "nodes": [ + 42436753, + 4234425011, + 3832902959, + 3832902958, + 8815548638, + 12181379220, + 4234425021, + 42436751, + 4234425020, + 9647667077 + ], + "geometry": [ + { "lat": 40.7426044, "lon": -73.9804162 }, + { "lat": 40.7426586, "lon": -73.9805483 }, + { "lat": 40.7426949, "lon": -73.9806330 }, + { "lat": 40.7428121, "lon": -73.9809109 }, + { "lat": 40.7430241, "lon": -73.9814160 }, + { "lat": 40.7432104, "lon": -73.9818582 }, + { "lat": 40.7432322, "lon": -73.9819099 }, + { "lat": 40.7432748, "lon": -73.9820126 }, + { "lat": 40.7433187, "lon": -73.9821123 }, + { "lat": 40.7437288, "lon": -73.9830904 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 29th Street", + "name:ru": "Восточная 29-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226040994, + "bounds": { + "minlat": 40.7403440, + "minlon": -73.9753382, + "maxlat": 40.7412737, + "maxlon": -73.9731358 + }, + "nodes": [ + 42445417, + 7761301149, + 5726416552, + 13650297899, + 5131059174, + 9142507283, + 9142507284, + 4274141356 + ], + "geometry": [ + { "lat": 40.7412737, "lon": -73.9753382 }, + { "lat": 40.7412032, "lon": -73.9752138 }, + { "lat": 40.7406073, "lon": -73.9737942 }, + { "lat": 40.7403951, "lon": -73.9732981 }, + { "lat": 40.7403766, "lon": -73.9732547 }, + { "lat": 40.7403639, "lon": -73.9732163 }, + { "lat": 40.7403529, "lon": -73.9731763 }, + { "lat": 40.7403440, "lon": -73.9731358 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 30th Street", + "name:ru": "Восточная 30-я стрит", + "name_1": "East 30 Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226040995, + "bounds": { + "minlat": 40.7425358, + "minlon": -73.9799692, + "maxlat": 40.7432153, + "maxlon": -73.9783500 + }, + "nodes": [ + 42445413, + 4234425014, + 9549750338 + ], + "geometry": [ + { "lat": 40.7432153, "lon": -73.9799692 }, + { "lat": 40.7431512, "lon": -73.9798175 }, + { "lat": 40.7425358, "lon": -73.9783500 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 30th Street", + "name:ru": "Восточная 30-я стрит", + "name_1": "East 30 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226040996, + "bounds": { + "minlat": 40.7445463, + "minlon": -73.9847940, + "maxlat": 40.7452501, + "maxlon": -73.9831186 + }, + "nodes": [ + 42445404, + 10168210223, + 8119462447, + 4597668033, + 42445409 + ], + "geometry": [ + { "lat": 40.7452501, "lon": -73.9847940 }, + { "lat": 40.7452079, "lon": -73.9846939 }, + { "lat": 40.7446253, "lon": -73.9833148 }, + { "lat": 40.7445970, "lon": -73.9832450 }, + { "lat": 40.7445463, "lon": -73.9831186 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "East 30th Street", + "name:ru": "Восточная 30-я стрит", + "name_1": "East 30 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226040997, + "bounds": { + "minlat": 40.7412737, + "minlon": -73.9777196, + "maxlat": 40.7422741, + "maxlon": -73.9753382 + }, + "nodes": [ + 42442902, + 3817760031, + 9150529776, + 1293174689, + 7206738484, + 7206766286, + 42445417 + ], + "geometry": [ + { "lat": 40.7422741, "lon": -73.9777196 }, + { "lat": 40.7422214, "lon": -73.9775812 }, + { "lat": 40.7421784, "lon": -73.9774764 }, + { "lat": 40.7421339, "lon": -73.9773193 }, + { "lat": 40.7415116, "lon": -73.9758475 }, + { "lat": 40.7413461, "lon": -73.9754659 }, + { "lat": 40.7412737, "lon": -73.9753382 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 30th Street", + "name:ru": "Восточная 30-я стрит", + "name_1": "East 30 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226040998, + "bounds": { + "minlat": 40.7432153, + "minlon": -73.9831186, + "maxlat": 40.7445463, + "maxlon": -73.9799692 + }, + "nodes": [ + 42445409, + 8119507321, + 12181379223, + 8133342838, + 8482948064, + 8133342862, + 12183286758, + 4234425032, + 42445413 + ], + "geometry": [ + { "lat": 40.7445463, "lon": -73.9831186 }, + { "lat": 40.7445114, "lon": -73.9830349 }, + { "lat": 40.7439457, "lon": -73.9816991 }, + { "lat": 40.7439317, "lon": -73.9816661 }, + { "lat": 40.7438891, "lon": -73.9815652 }, + { "lat": 40.7438453, "lon": -73.9814616 }, + { "lat": 40.7432907, "lon": -73.9801480 }, + { "lat": 40.7432666, "lon": -73.9800909 }, + { "lat": 40.7432153, "lon": -73.9799692 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "East 30th Street", + "name:ru": "Восточная 30-я стрит", + "name_1": "East 30 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226040999, + "bounds": { + "minlat": 40.7488906, + "minlon": -73.9769822, + "maxlat": 40.7493572, + "maxlon": -73.9758481 + }, + "nodes": [ + 42445661, + 9147322864, + 12187343200, + 9076023712, + 11809757094 + ], + "geometry": [ + { "lat": 40.7488906, "lon": -73.9758481 }, + { "lat": 40.7489384, "lon": -73.9759682 }, + { "lat": 40.7489490, "lon": -73.9759950 }, + { "lat": 40.7490355, "lon": -73.9762098 }, + { "lat": 40.7493572, "lon": -73.9769822 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041000, + "bounds": { + "minlat": 40.7479353, + "minlon": -73.9749721, + "maxlat": 40.7485092, + "maxlon": -73.9735914 + }, + "nodes": [ + 42442933, + 9147322860, + 5240026597, + 5240026599, + 4556157744, + 12187390441, + 9147322859, + 42445664 + ], + "geometry": [ + { "lat": 40.7479353, "lon": -73.9735914 }, + { "lat": 40.7479908, "lon": -73.9737248 }, + { "lat": 40.7480997, "lon": -73.9739870 }, + { "lat": 40.7481579, "lon": -73.9741268 }, + { "lat": 40.7482974, "lon": -73.9744625 }, + { "lat": 40.7484608, "lon": -73.9748557 }, + { "lat": 40.7484818, "lon": -73.9749060 }, + { "lat": 40.7485092, "lon": -73.9749721 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041001, + "bounds": { + "minlat": 40.7509069, + "minlon": -73.9816903, + "maxlat": 40.7513377, + "maxlon": -73.9806768 + }, + "nodes": [ + 42445651, + 3997454667, + 10703807885 + ], + "geometry": [ + { "lat": 40.7509069, "lon": -73.9806768 }, + { "lat": 40.7509437, "lon": -73.9807675 }, + { "lat": 40.7513377, "lon": -73.9816903 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041002, + "bounds": { + "minlat": 40.7503541, + "minlon": -73.9785793, + "maxlat": 40.7508474, + "maxlon": -73.9774266 + }, + "nodes": [ + 561042199, + 42453005, + 8122411173, + 8871600818, + 9625590216 + ], + "geometry": [ + { "lat": 40.7508474, "lon": -73.9785793 }, + { "lat": 40.7508073, "lon": -73.9784855 }, + { "lat": 40.7507764, "lon": -73.9784096 }, + { "lat": 40.7503995, "lon": -73.9775326 }, + { "lat": 40.7503541, "lon": -73.9774266 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 40th Street", + "name:ru": "Восточная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041003, + "bounds": { + "minlat": 40.7475905, + "minlon": -73.9731474, + "maxlat": 40.7485484, + "maxlon": -73.9708704 + }, + "nodes": [ + 42442935, + 3997454657, + 5129051729, + 10170589927, + 42453008, + 10170589925, + 11395572689, + 13000478562, + 3569749102, + 12840833852 + ], + "geometry": [ + { "lat": 40.7485484, "lon": -73.9731474 }, + { "lat": 40.7484890, "lon": -73.9729987 }, + { "lat": 40.7482423, "lon": -73.9724123 }, + { "lat": 40.7482237, "lon": -73.9723683 }, + { "lat": 40.7481912, "lon": -73.9722915 }, + { "lat": 40.7481586, "lon": -73.9722145 }, + { "lat": 40.7478013, "lon": -73.9713675 }, + { "lat": 40.7476349, "lon": -73.9709729 }, + { "lat": 40.7476207, "lon": -73.9709393 }, + { "lat": 40.7475905, "lon": -73.9708704 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 40th Street", + "name:ru": "Восточная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041004, + "bounds": { + "minlat": 40.7509032, + "minlon": -73.9802218, + "maxlat": 40.7515352, + "maxlon": -73.9787069 + }, + "nodes": [ + 42445914, + 3997454670, + 12181374957, + 10171951884, + 561042198 + ], + "geometry": [ + { "lat": 40.7515352, "lon": -73.9802218 }, + { "lat": 40.7515005, "lon": -73.9801408 }, + { "lat": 40.7509637, "lon": -73.9788453 }, + { "lat": 40.7509388, "lon": -73.9787898 }, + { "lat": 40.7509032, "lon": -73.9787069 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 40th Street", + "name:ru": "Восточная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041005, + "bounds": { + "minlat": 40.7485484, + "minlon": -73.9754041, + "maxlat": 40.7494989, + "maxlon": -73.9731474 + }, + "nodes": [ + 11337295601, + 9987259772, + 12187391604, + 9987259773, + 11337295598, + 9987259774, + 12187390448, + 4556126017, + 5333821403, + 5266157319, + 12187390449, + 3997454659, + 42442935 + ], + "geometry": [ + { "lat": 40.7494989, "lon": -73.9754041 }, + { "lat": 40.7494340, "lon": -73.9752505 }, + { "lat": 40.7491763, "lon": -73.9746407 }, + { "lat": 40.7491544, "lon": -73.9745899 }, + { "lat": 40.7491239, "lon": -73.9745202 }, + { "lat": 40.7490939, "lon": -73.9744495 }, + { "lat": 40.7490799, "lon": -73.9744168 }, + { "lat": 40.7489291, "lon": -73.9740590 }, + { "lat": 40.7488810, "lon": -73.9739449 }, + { "lat": 40.7487348, "lon": -73.9735979 }, + { "lat": 40.7486255, "lon": -73.9733386 }, + { "lat": 40.7486022, "lon": -73.9732786 }, + { "lat": 40.7485484, "lon": -73.9731474 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 40th Street", + "name:ru": "Восточная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041006, + "bounds": { + "minlat": 40.7536240, + "minlon": -73.9732669, + "maxlat": 40.7552508, + "maxlon": -73.9694310 + }, + "nodes": [ + 42446987, + 12673751269, + 10125260529, + 42448813, + 10125260530, + 4550867475, + 10166171344, + 42442949 + ], + "geometry": [ + { "lat": 40.7552508, "lon": -73.9732669 }, + { "lat": 40.7552127, "lon": -73.9731796 }, + { "lat": 40.7546314, "lon": -73.9718210 }, + { "lat": 40.7545778, "lon": -73.9716937 }, + { "lat": 40.7545138, "lon": -73.9715419 }, + { "lat": 40.7543102, "lon": -73.9710586 }, + { "lat": 40.7536831, "lon": -73.9695712 }, + { "lat": 40.7536240, "lon": -73.9694310 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 48th Street", + "name:ru": "Восточная 48-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041007, + "bounds": { + "minlat": 40.7559030, + "minlon": -73.9749834, + "maxlat": 40.7559783, + "maxlon": -73.9748081 + }, + "nodes": [ + 596775882, + 42448811 + ], + "geometry": [ + { "lat": 40.7559783, "lon": -73.9749834 }, + { "lat": 40.7559030, "lon": -73.9748081 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "name": "East 48th Street", + "name:ru": "Восточная 48-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041009, + "bounds": { + "minlat": 40.7563888, + "minlon": -73.9667020, + "maxlat": 40.7573810, + "maxlon": -73.9643154 + }, + "nodes": [ + 42442957, + 10168544052, + 10168544080, + 42455963 + ], + "geometry": [ + { "lat": 40.7573810, "lon": -73.9667020 }, + { "lat": 40.7573253, "lon": -73.9665695 }, + { "lat": 40.7564528, "lon": -73.9644695 }, + { "lat": 40.7563888, "lon": -73.9643154 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lit": "yes", + "name": "East 54th Street", + "name:ru": "Восточная 54-я стрит", + "name_1": "East 54 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226041011, + "bounds": { + "minlat": 40.7590024, + "minlon": -73.9722474, + "maxlat": 40.7597298, + "maxlon": -73.9705330 + }, + "nodes": [ + 596775919, + 42456611, + 10125228014, + 10165922667, + 42446998 + ], + "geometry": [ + { "lat": 40.7597298, "lon": -73.9722474 }, + { "lat": 40.7596534, "lon": -73.9720733 }, + { "lat": 40.7596019, "lon": -73.9719514 }, + { "lat": 40.7590505, "lon": -73.9706468 }, + { "lat": 40.7590024, "lon": -73.9705330 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 54th Street", + "name:ru": "Восточная 54-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226041012, + "bounds": { + "minlat": 40.7603618, + "minlon": -73.9749271, + "maxlat": 40.7616758, + "maxlon": -73.9717840 + }, + "nodes": [ + 596775907, + 10125228008, + 7788529756, + 42445941, + 11294629828, + 10610255909, + 42440951 + ], + "geometry": [ + { "lat": 40.7603618, "lon": -73.9717840 }, + { "lat": 40.7604081, "lon": -73.9718941 }, + { "lat": 40.7609576, "lon": -73.9731998 }, + { "lat": 40.7609986, "lon": -73.9733102 }, + { "lat": 40.7610338, "lon": -73.9733942 }, + { "lat": 40.7616211, "lon": -73.9747966 }, + { "lat": 40.7616758, "lon": -73.9749271 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "use_sidepath", + "highway": "unclassified", + "lanes": "1", + "name": "East 55th Street", + "name:ru": "Восточная 55-я стрит", + "name_1": "East 55 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "10", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226041013, + "bounds": { + "minlat": 40.7597974, + "minlon": -73.9714878, + "maxlat": 40.7602364, + "maxlon": -73.9704506 + }, + "nodes": [ + 8254199417, + 12834723235, + 9140924704 + ], + "geometry": [ + { "lat": 40.7597974, "lon": -73.9704506 }, + { "lat": 40.7602151, "lon": -73.9714374 }, + { "lat": 40.7602364, "lon": -73.9714878 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 55th Street", + "name:ru": "Восточная 55-я стрит", + "name_1": "East 55 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226041016, + "bounds": { + "minlat": 40.7176680, + "minlon": -73.9930731, + "maxlat": 40.7179269, + "maxlon": -73.9922172 + }, + "nodes": [ + 42451660, + 6369613057, + 12196062161, + 5043087530, + 42429643 + ], + "geometry": [ + { "lat": 40.7179269, "lon": -73.9930731 }, + { "lat": 40.7179048, "lon": -73.9929985 }, + { "lat": 40.7178894, "lon": -73.9929481 }, + { "lat": 40.7176900, "lon": -73.9922899 }, + { "lat": 40.7176680, "lon": -73.9922172 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226041017, + "bounds": { + "minlat": 40.7163041, + "minlon": -74.0109232, + "maxlat": 40.7169068, + "maxlon": -74.0107660 + }, + "nodes": [ + 5812723036, + 8304497702, + 42431617 + ], + "geometry": [ + { "lat": 40.7169068, "lon": -74.0107660 }, + { "lat": 40.7163690, "lon": -74.0109066 }, + { "lat": 40.7163041, "lon": -74.0109232 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 226041019, + "bounds": { + "minlat": 40.7467961, + "minlon": -73.9896170, + "maxlat": 40.7472770, + "maxlon": -73.9884727 + }, + "nodes": [ + 42430288, + 10168911545, + 10173125251, + 42428227 + ], + "geometry": [ + { "lat": 40.7472770, "lon": -73.9896170 }, + { "lat": 40.7472246, "lon": -73.9894889 }, + { "lat": 40.7468309, "lon": -73.9885556 }, + { "lat": 40.7467961, "lon": -73.9884727 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "local", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041020, + "bounds": { + "minlat": 40.7472770, + "minlon": -73.9924631, + "maxlat": 40.7484690, + "maxlon": -73.9896170 + }, + "nodes": [ + 42435420, + 10168911567, + 4493840515, + 4493840513, + 10168911548, + 42430288 + ], + "geometry": [ + { "lat": 40.7484690, "lon": -73.9924631 }, + { "lat": 40.7484170, "lon": -73.9923388 }, + { "lat": 40.7475276, "lon": -73.9902154 }, + { "lat": 40.7474688, "lon": -73.9900749 }, + { "lat": 40.7473312, "lon": -73.9897463 }, + { "lat": 40.7472770, "lon": -73.9896170 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041021, + "bounds": { + "minlat": 40.7565324, + "minlon": -73.9951376, + "maxlat": 40.7570117, + "maxlon": -73.9940178 + }, + "nodes": [ + 42444985, + 8288270379, + 1727780310, + 12899504198, + 427845251 + ], + "geometry": [ + { "lat": 40.7565324, "lon": -73.9940178 }, + { "lat": 40.7565892, "lon": -73.9941539 }, + { "lat": 40.7568256, "lon": -73.9947011 }, + { "lat": 40.7568798, "lon": -73.9948283 }, + { "lat": 40.7570117, "lon": -73.9951376 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "highway": "residential", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041022, + "bounds": { + "minlat": 40.7522048, + "minlon": -73.9850397, + "maxlat": 40.7535585, + "maxlon": -73.9818235 + }, + "nodes": [ + 42430324, + 10169532590, + 4625652085, + 42446488 + ], + "geometry": [ + { "lat": 40.7535585, "lon": -73.9850397 }, + { "lat": 40.7535033, "lon": -73.9849087 }, + { "lat": 40.7522588, "lon": -73.9819515 }, + { "lat": 40.7522048, "lon": -73.9818235 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lane_markings": "yes", + "lit": "yes", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041023, + "bounds": { + "minlat": 40.7571061, + "minlon": -73.9935785, + "maxlat": 40.7571536, + "maxlon": -73.9934660 + }, + "nodes": [ + 42444991, + 2351532388 + ], + "geometry": [ + { "lat": 40.7571536, "lon": -73.9935785 }, + { "lat": 40.7571061, "lon": -73.9934660 } + ], + "tags": { + "alt_name": "West 40 Street", + "foot": "no", + "highway": "residential", + "lanes": "3", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041024, + "bounds": { + "minlat": 40.7603122, + "minlon": -73.9966945, + "maxlat": 40.7610298, + "maxlon": -73.9949720 + }, + "nodes": [ + 42454433, + 12810580297, + 6928075146 + ], + "geometry": [ + { "lat": 40.7603122, "lon": -73.9949720 }, + { "lat": 40.7603717, "lon": -73.9951149 }, + { "lat": 40.7610298, "lon": -73.9966945 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041025, + "bounds": { + "minlat": 40.7555160, + "minlon": -73.9857810, + "maxlat": 40.7564255, + "maxlon": -73.9836240 + }, + "nodes": [ + 42430338, + 6598535224, + 1752946328, + 8396878498, + 9647769356 + ], + "geometry": [ + { "lat": 40.7555160, "lon": -73.9836240 }, + { "lat": 40.7555725, "lon": -73.9837577 }, + { "lat": 40.7561388, "lon": -73.9851023 }, + { "lat": 40.7562539, "lon": -73.9853748 }, + { "lat": 40.7564255, "lon": -73.9857810 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041026, + "bounds": { + "minlat": 40.7561421, + "minlon": -73.9856903, + "maxlat": 40.7572084, + "maxlon": -73.9831665 + }, + "nodes": [ + 9235539560, + 8396878495, + 3944708047, + 42430342 + ], + "geometry": [ + { "lat": 40.7572084, "lon": -73.9856903 }, + { "lat": 40.7565117, "lon": -73.9840416 }, + { "lat": 40.7561970, "lon": -73.9832969 }, + { "lat": 40.7561421, "lon": -73.9831665 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041027, + "bounds": { + "minlat": 40.7585323, + "minlon": -73.9916836, + "maxlat": 40.7597283, + "maxlon": -73.9888429 + }, + "nodes": [ + 42443561, + 10168047523, + 13701336663, + 13701336659, + 5481887476, + 10168088479, + 42435671 + ], + "geometry": [ + { "lat": 40.7597283, "lon": -73.9916836 }, + { "lat": 40.7596728, "lon": -73.9915517 }, + { "lat": 40.7592840, "lon": -73.9906283 }, + { "lat": 40.7591672, "lon": -73.9903510 }, + { "lat": 40.7587986, "lon": -73.9894755 }, + { "lat": 40.7585937, "lon": -73.9889887 }, + { "lat": 40.7585323, "lon": -73.9888429 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041028, + "bounds": { + "minlat": 40.7601126, + "minlon": -73.9870177, + "maxlat": 40.7610365, + "maxlon": -73.9848196 + }, + "nodes": [ + 42435680, + 10168088498, + 1758380526, + 12989986301, + 2435108436, + 42428305 + ], + "geometry": [ + { "lat": 40.7610365, "lon": -73.9870177 }, + { "lat": 40.7609818, "lon": -73.9868876 }, + { "lat": 40.7603603, "lon": -73.9854112 }, + { "lat": 40.7601818, "lon": -73.9849829 }, + { "lat": 40.7601651, "lon": -73.9849427 }, + { "lat": 40.7601126, "lon": -73.9848196 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 48th Street", + "name:ru": "Западная 48-я стрит", + "name_1": "West 48 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041029, + "bounds": { + "minlat": 40.7572829, + "minlon": -73.9813410, + "maxlat": 40.7586450, + "maxlon": -73.9781109 + }, + "nodes": [ + 42430352, + 3955372903, + 3855009863, + 4549080328, + 3855009861, + 3944708056, + 42443528 + ], + "geometry": [ + { "lat": 40.7586450, "lon": -73.9813410 }, + { "lat": 40.7585881, "lon": -73.9812057 }, + { "lat": 40.7578520, "lon": -73.9794547 }, + { "lat": 40.7578315, "lon": -73.9794065 }, + { "lat": 40.7577692, "lon": -73.9792604 }, + { "lat": 40.7573366, "lon": -73.9782382 }, + { "lat": 40.7572829, "lon": -73.9781109 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "West 48th Street", + "name:ru": "Западная 48-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226041030, + "bounds": { + "minlat": 40.7620858, + "minlon": -73.9856481, + "maxlat": 40.7629156, + "maxlon": -73.9836782 + }, + "nodes": [ + 42428310, + 10173292884, + 3977886865, + 3974095849, + 10168091322, + 42435687 + ], + "geometry": [ + { "lat": 40.7620858, "lon": -73.9836782 }, + { "lat": 40.7621100, "lon": -73.9837355 }, + { "lat": 40.7621200, "lon": -73.9837593 }, + { "lat": 40.7625697, "lon": -73.9848269 }, + { "lat": 40.7628604, "lon": -73.9855171 }, + { "lat": 40.7629156, "lon": -73.9856481 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226041031, + "bounds": { + "minlat": 40.7629156, + "minlon": -73.9857557, + "maxlat": 40.7629609, + "maxlon": -73.9856481 + }, + "nodes": [ + 42435687, + 6210777843 + ], + "geometry": [ + { "lat": 40.7629156, "lon": -73.9856481 }, + { "lat": 40.7629609, "lon": -73.9857557 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226041032, + "bounds": { + "minlat": 40.7623991, + "minlon": -73.9814328, + "maxlat": 40.7635954, + "maxlon": -73.9786085 + }, + "nodes": [ + 42440015, + 3463817009, + 8795161045, + 3932923803, + 1828749425, + 5481907463, + 8096337618, + 3974096359, + 2723627039, + 3971302313, + 42430371 + ], + "geometry": [ + { "lat": 40.7635954, "lon": -73.9814328 }, + { "lat": 40.7635453, "lon": -73.9813129 }, + { "lat": 40.7633444, "lon": -73.9808412 }, + { "lat": 40.7631639, "lon": -73.9804001 }, + { "lat": 40.7631348, "lon": -73.9803285 }, + { "lat": 40.7631002, "lon": -73.9802513 }, + { "lat": 40.7629803, "lon": -73.9799766 }, + { "lat": 40.7628959, "lon": -73.9797833 }, + { "lat": 40.7628583, "lon": -73.9796972 }, + { "lat": 40.7624531, "lon": -73.9787341 }, + { "lat": 40.7623991, "lon": -73.9786085 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "10", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226041033, + "bounds": { + "minlat": 40.7649769, + "minlon": -73.9854965, + "maxlat": 40.7653154, + "maxlon": -73.9846965 + }, + "nodes": [ + 2348991701, + 13780498257, + 3308681111 + ], + "geometry": [ + { "lat": 40.7653154, "lon": -73.9854965 }, + { "lat": 40.7651596, "lon": -73.9851287 }, + { "lat": 40.7649769, "lon": -73.9846965 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "vehicle:lanes": "no|", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226041034, + "bounds": { + "minlat": 40.7615867, + "minlon": -74.0020269, + "maxlat": 40.7620855, + "maxlon": -74.0016347 + }, + "nodes": [ + 247119595, + 247086017 + ], + "geometry": [ + { "lat": 40.7620855, "lon": -74.0016347 }, + { "lat": 40.7615867, "lon": -74.0020269 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 226041041, + "bounds": { + "minlat": 40.7458171, + "minlon": -74.0055340, + "maxlat": 40.7464102, + "maxlon": -74.0050981 + }, + "nodes": [ + 42427390, + 10168486377, + 12181309670, + 10168486350, + 42443676 + ], + "geometry": [ + { "lat": 40.7458171, "lon": -74.0055340 }, + { "lat": 40.7458803, "lon": -74.0054871 }, + { "lat": 40.7463087, "lon": -74.0051703 }, + { "lat": 40.7463464, "lon": -74.0051424 }, + { "lat": 40.7464102, "lon": -74.0050981 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 226041042, + "bounds": { + "minlat": 40.7464102, + "minlon": -74.0050981, + "maxlat": 40.7470230, + "maxlon": -74.0046530 + }, + "nodes": [ + 42443676, + 10168486354, + 10168486324, + 42434285 + ], + "geometry": [ + { "lat": 40.7464102, "lon": -74.0050981 }, + { "lat": 40.7464648, "lon": -74.0050589 }, + { "lat": 40.7469713, "lon": -74.0046905 }, + { "lat": 40.7470230, "lon": -74.0046530 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 226092571, + "bounds": { + "minlat": 40.7576367, + "minlon": -73.9634088, + "maxlat": 40.7578683, + "maxlon": -73.9632467 + }, + "nodes": [ + 42443618, + 10121802243, + 9052542036 + ], + "geometry": [ + { "lat": 40.7576367, "lon": -73.9634088 }, + { "lat": 40.7576976, "lon": -73.9633677 }, + { "lat": 40.7578683, "lon": -73.9632467 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 226092572, + "bounds": { + "minlat": 40.7513685, + "minlon": -73.9679588, + "maxlat": 40.7516611, + "maxlon": -73.9678463 + }, + "nodes": [ + 42434092, + 6271127161, + 9140864948, + 3569749128 + ], + "geometry": [ + { "lat": 40.7513685, "lon": -73.9679588 }, + { "lat": 40.7514396, "lon": -73.9679357 }, + { "lat": 40.7514542, "lon": -73.9679296 }, + { "lat": 40.7516611, "lon": -73.9678463 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 226092573, + "bounds": { + "minlat": 40.7593168, + "minlon": -73.9653081, + "maxlat": 40.7598012, + "maxlon": -73.9649454 + }, + "nodes": [ + 9496052479, + 7946231857, + 42432861 + ], + "geometry": [ + { "lat": 40.7598012, "lon": -73.9649454 }, + { "lat": 40.7594077, "lon": -73.9652400 }, + { "lat": 40.7593168, "lon": -73.9653081 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through|", + "width": "21", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 226119162, + "bounds": { + "minlat": 40.8472612, + "minlon": -73.9661111, + "maxlat": 40.8473108, + "maxlon": -73.9656280 + }, + "nodes": [ + 5106288676, + 5106288682, + 2349755382, + 2349755383, + 2349755385, + 103221335 + ], + "geometry": [ + { "lat": 40.8472719, "lon": -73.9661111 }, + { "lat": 40.8472939, "lon": -73.9659855 }, + { "lat": 40.8473087, "lon": -73.9659052 }, + { "lat": 40.8473108, "lon": -73.9658343 }, + { "lat": 40.8473015, "lon": -73.9657551 }, + { "lat": 40.8472612, "lon": -73.9656280 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 226126658, + "bounds": { + "minlat": 40.8518322, + "minlon": -73.9418422, + "maxlat": 40.8523968, + "maxlon": -73.9412909 + }, + "nodes": [ + 60929278, + 7911469481, + 7911483089, + 7911469472, + 7911469480, + 7911469471, + 12067141190, + 42438160 + ], + "geometry": [ + { "lat": 40.8523968, "lon": -73.9412909 }, + { "lat": 40.8523336, "lon": -73.9413466 }, + { "lat": 40.8522686, "lon": -73.9414057 }, + { "lat": 40.8522059, "lon": -73.9414660 }, + { "lat": 40.8521503, "lon": -73.9415216 }, + { "lat": 40.8518995, "lon": -73.9417785 }, + { "lat": 40.8518682, "lon": -73.9418092 }, + { "lat": 40.8518322, "lon": -73.9418422 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 226126754, + "bounds": { + "minlat": 40.8517167, + "minlon": -73.9419549, + "maxlat": 40.8518322, + "maxlon": -73.9418422 + }, + "nodes": [ + 42438160, + 12068675845, + 60929261 + ], + "geometry": [ + { "lat": 40.8518322, "lon": -73.9418422 }, + { "lat": 40.8517518, "lon": -73.9419190 }, + { "lat": 40.8517167, "lon": -73.9419549 } + ], + "tags": { + "bicycle": "designated", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 226130113, + "bounds": { + "minlat": 40.8509962, + "minlon": -73.9640211, + "maxlat": 40.8526865, + "maxlon": -73.9623767 + }, + "nodes": [ + 4397850723, + 4397850720, + 4397850730, + 4397850724, + 4397850719, + 703506819, + 2712969366, + 2705165993, + 703506821, + 703506822, + 703506823, + 703506824, + 2705165989, + 2349833834, + 12072538040, + 703506825, + 12072538039, + 3046538771, + 12072538038, + 703506826, + 12072538037, + 3046538772, + 12072538036, + 703506827, + 12072538035, + 3046538773, + 703506828, + 703506829, + 12072538033, + 12072538034, + 940926458, + 3046538774, + 2705165996, + 12072538032, + 2705165998, + 940926460, + 3046538775, + 3046538776 + ], + "geometry": [ + { "lat": 40.8526865, "lon": -73.9625806 }, + { "lat": 40.8524451, "lon": -73.9624545 }, + { "lat": 40.8522544, "lon": -73.9623901 }, + { "lat": 40.8520495, "lon": -73.9623767 }, + { "lat": 40.8518101, "lon": -73.9624143 }, + { "lat": 40.8516225, "lon": -73.9624696 }, + { "lat": 40.8514921, "lon": -73.9625717 }, + { "lat": 40.8514279, "lon": -73.9626178 }, + { "lat": 40.8513729, "lon": -73.9626604 }, + { "lat": 40.8512747, "lon": -73.9627539 }, + { "lat": 40.8511903, "lon": -73.9628584 }, + { "lat": 40.8511215, "lon": -73.9629766 }, + { "lat": 40.8510672, "lon": -73.9631233 }, + { "lat": 40.8510089, "lon": -73.9632578 }, + { "lat": 40.8509984, "lon": -73.9633155 }, + { "lat": 40.8509962, "lon": -73.9633749 }, + { "lat": 40.8509999, "lon": -73.9634572 }, + { "lat": 40.8510126, "lon": -73.9635473 }, + { "lat": 40.8510335, "lon": -73.9636207 }, + { "lat": 40.8510582, "lon": -73.9636975 }, + { "lat": 40.8510845, "lon": -73.9637502 }, + { "lat": 40.8511211, "lon": -73.9637994 }, + { "lat": 40.8511555, "lon": -73.9638412 }, + { "lat": 40.8511976, "lon": -73.9638786 }, + { "lat": 40.8512458, "lon": -73.9639054 }, + { "lat": 40.8512986, "lon": -73.9639296 }, + { "lat": 40.8514059, "lon": -73.9639530 }, + { "lat": 40.8516564, "lon": -73.9639946 }, + { "lat": 40.8517794, "lon": -73.9640125 }, + { "lat": 40.8518393, "lon": -73.9640211 }, + { "lat": 40.8518992, "lon": -73.9640211 }, + { "lat": 40.8519830, "lon": -73.9640083 }, + { "lat": 40.8520615, "lon": -73.9639838 }, + { "lat": 40.8521128, "lon": -73.9639581 }, + { "lat": 40.8521629, "lon": -73.9639188 }, + { "lat": 40.8522338, "lon": -73.9638587 }, + { "lat": 40.8523068, "lon": -73.9637981 }, + { "lat": 40.8523420, "lon": -73.9637686 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "name": "Historic Park Road" + } +}, +{ + "type": "way", + "id": 226169866, + "bounds": { + "minlat": 40.8203857, + "minlon": -73.9287579, + "maxlat": 40.8228446, + "maxlon": -73.9269460 + }, + "nodes": [ + 42758654, + 13146557966, + 42734150, + 13330151056, + 42733694, + 10133486218, + 42758665 + ], + "geometry": [ + { "lat": 40.8228446, "lon": -73.9287579 }, + { "lat": 40.8227481, "lon": -73.9286866 }, + { "lat": 40.8219579, "lon": -73.9281025 }, + { "lat": 40.8211891, "lon": -73.9275420 }, + { "lat": 40.8211078, "lon": -73.9274827 }, + { "lat": 40.8210207, "lon": -73.9274251 }, + { "lat": 40.8203857, "lon": -73.9269460 } + ], + "tags": { + "highway": "residential", + "name": "East 151st Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "151st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 226193904, + "bounds": { + "minlat": 40.7100903, + "minlon": -74.0169529, + "maxlat": 40.7102202, + "maxlon": -74.0163736 + }, + "nodes": [ + 42437401, + 5215015524, + 6859615817 + ], + "geometry": [ + { "lat": 40.7100903, "lon": -74.0163736 }, + { "lat": 40.7101215, "lon": -74.0165120 }, + { "lat": 40.7102202, "lon": -74.0169529 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Albany Street", + "name:etymology:wikidata": "Q24861", + "name:ko": "앨버니 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29110247", + "wikipedia": "en:Albany Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226193905, + "bounds": { + "minlat": 40.7098393, + "minlon": -74.0163736, + "maxlat": 40.7100903, + "maxlon": -74.0152086 + }, + "nodes": [ + 246866798, + 11374474066, + 11418201589, + 11418201557, + 11422226426, + 5215013204, + 42437401 + ], + "geometry": [ + { "lat": 40.7098393, "lon": -74.0152086 }, + { "lat": 40.7098495, "lon": -74.0152814 }, + { "lat": 40.7098601, "lon": -74.0153421 }, + { "lat": 40.7099608, "lon": -74.0158031 }, + { "lat": 40.7099647, "lon": -74.0158205 }, + { "lat": 40.7100610, "lon": -74.0162443 }, + { "lat": 40.7100903, "lon": -74.0163736 } + ], + "tags": { + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "yes", + "name": "Albany Street", + "name:etymology:wikidata": "Q24861", + "name:ko": "앨버니 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29110247", + "wikipedia": "en:Albany Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226193928, + "bounds": { + "minlat": 40.7100903, + "minlon": -74.0163736, + "maxlat": 40.7104557, + "maxlon": -74.0162332 + }, + "nodes": [ + 42437401, + 5215013199, + 12133505163, + 7816666405 + ], + "geometry": [ + { "lat": 40.7100903, "lon": -74.0163736 }, + { "lat": 40.7101688, "lon": -74.0163430 }, + { "lat": 40.7102149, "lon": -74.0163260 }, + { "lat": 40.7104557, "lon": -74.0162332 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "highway": "residential", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "South End Avenue", + "name:ko": "사우스 엔드 애비뉴", + "oneway": "no", + "parking:both": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-10:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 226193929, + "bounds": { + "minlat": 40.7052329, + "minlon": -74.0047485, + "maxlat": 40.7062555, + "maxlon": -74.0031168 + }, + "nodes": [ + 42444242, + 8094558976, + 42427256, + 3350483348, + 12303962078, + 8276469219, + 42440356, + 8276469220, + 588455899, + 10311946146, + 42440258 + ], + "geometry": [ + { "lat": 40.7052329, "lon": -74.0047485 }, + { "lat": 40.7052912, "lon": -74.0046527 }, + { "lat": 40.7054080, "lon": -74.0044743 }, + { "lat": 40.7055910, "lon": -74.0041842 }, + { "lat": 40.7056737, "lon": -74.0040565 }, + { "lat": 40.7057584, "lon": -74.0039263 }, + { "lat": 40.7057898, "lon": -74.0038751 }, + { "lat": 40.7058324, "lon": -74.0038024 }, + { "lat": 40.7059358, "lon": -74.0036212 }, + { "lat": 40.7061948, "lon": -74.0032119 }, + { "lat": 40.7062555, "lon": -74.0031168 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "parking:left:restriction": "no_standing", + "parking:left:restriction:conditional": "no_parking @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226193933, + "bounds": { + "minlat": 40.7333916, + "minlon": -74.0085749, + "maxlat": 40.7364393, + "maxlon": -74.0083183 + }, + "nodes": [ + 4741865080, + 8307642142, + 42440943, + 8307642144, + 12162436915, + 8307642150, + 42449089, + 8307642151, + 12162436916, + 8307642159, + 42457426, + 8307642160, + 42442078, + 12162436923, + 8307642129, + 42452610, + 8307642130, + 12162436927, + 8307642121, + 42457735 + ], + "geometry": [ + { "lat": 40.7364393, "lon": -74.0083183 }, + { "lat": 40.7362591, "lon": -74.0083299 }, + { "lat": 40.7362015, "lon": -74.0083335 }, + { "lat": 40.7361425, "lon": -74.0083367 }, + { "lat": 40.7356407, "lon": -74.0083740 }, + { "lat": 40.7355827, "lon": -74.0083784 }, + { "lat": 40.7355127, "lon": -74.0083859 }, + { "lat": 40.7354493, "lon": -74.0083931 }, + { "lat": 40.7349082, "lon": -74.0084388 }, + { "lat": 40.7348627, "lon": -74.0084444 }, + { "lat": 40.7347984, "lon": -74.0084507 }, + { "lat": 40.7347431, "lon": -74.0084555 }, + { "lat": 40.7344793, "lon": -74.0084753 }, + { "lat": 40.7342106, "lon": -74.0085005 }, + { "lat": 40.7341559, "lon": -74.0085033 }, + { "lat": 40.7341015, "lon": -74.0085070 }, + { "lat": 40.7340348, "lon": -74.0085108 }, + { "lat": 40.7335304, "lon": -74.0085564 }, + { "lat": 40.7334735, "lon": -74.0085631 }, + { "lat": 40.7333916, "lon": -74.0085749 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 226193942, + "bounds": { + "minlat": 40.7291478, + "minlon": -74.0111702, + "maxlat": 40.7291697, + "maxlon": -74.0109445 + }, + "nodes": [ + 2562448041, + 12412936714, + 246879394 + ], + "geometry": [ + { "lat": 40.7291697, "lon": -74.0111702 }, + { "lat": 40.7291517, "lon": -74.0109884 }, + { "lat": 40.7291478, "lon": -74.0109445 } + ], + "tags": { + "highway": "service", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "oneway": "no", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 226829043, + "bounds": { + "minlat": 40.7693400, + "minlon": -73.9148573, + "maxlat": 40.7694974, + "maxlon": -73.9138905 + }, + "nodes": [ + 42866647, + 6406731040, + 7746623259 + ], + "geometry": [ + { "lat": 40.7694974, "lon": -73.9148573 }, + { "lat": 40.7694848, "lon": -73.9147715 }, + { "lat": 40.7693400, "lon": -73.9138905 } + ], + "tags": { + "bicycle": "designated", + "cycleway": "no", + "foot": "no", + "hgv": "designated", + "highway": "secondary", + "name": "Astoria Boulevard South", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 226829048, + "bounds": { + "minlat": 40.7442734, + "minlon": -73.9585873, + "maxlat": 40.7449222, + "maxlon": -73.9578086 + }, + "nodes": [ + 42807444, + 276318086, + 11241326019, + 9982771539, + 276318044, + 8018964697, + 4411700985, + 4886088625 + ], + "geometry": [ + { "lat": 40.7449222, "lon": -73.9578086 }, + { "lat": 40.7448287, "lon": -73.9579040 }, + { "lat": 40.7447612, "lon": -73.9579752 }, + { "lat": 40.7446351, "lon": -73.9581217 }, + { "lat": 40.7445507, "lon": -73.9582257 }, + { "lat": 40.7443811, "lon": -73.9584373 }, + { "lat": 40.7443287, "lon": -73.9585095 }, + { "lat": 40.7442734, "lon": -73.9585873 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Center", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 226829069, + "bounds": { + "minlat": 40.7706552, + "minlon": -73.9187365, + "maxlat": 40.7710852, + "maxlon": -73.9180399 + }, + "nodes": [ + 42796436, + 3778245590, + 3778245576, + 588175755 + ], + "geometry": [ + { "lat": 40.7710852, "lon": -73.9187365 }, + { "lat": 40.7710120, "lon": -73.9186239 }, + { "lat": 40.7708049, "lon": -73.9183282 }, + { "lat": 40.7706552, "lon": -73.9180399 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hoyt Avenue South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226829077, + "bounds": { + "minlat": 40.7766485, + "minlon": -73.9279387, + "maxlat": 40.7766992, + "maxlon": -73.9278641 + }, + "nodes": [ + 2415578465, + 7745197930, + 2883532168 + ], + "geometry": [ + { "lat": 40.7766992, "lon": -73.9278641 }, + { "lat": 40.7766899, "lon": -73.9278778 }, + { "lat": 40.7766485, "lon": -73.9279387 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Shore Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Shore", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 226829079, + "bounds": { + "minlat": 40.7524399, + "minlon": -73.9509023, + "maxlat": 40.7545204, + "maxlon": -73.9490952 + }, + "nodes": [ + 4386311900, + 6452722141, + 7594629595, + 2472695933, + 42826837, + 6452722142, + 3618456701, + 2476133307, + 11840964792, + 6452722130, + 42818101, + 2991208451, + 6452717387, + 42826843 + ], + "geometry": [ + { "lat": 40.7545204, "lon": -73.9490952 }, + { "lat": 40.7543566, "lon": -73.9492435 }, + { "lat": 40.7543184, "lon": -73.9492782 }, + { "lat": 40.7542683, "lon": -73.9493191 }, + { "lat": 40.7541784, "lon": -73.9493907 }, + { "lat": 40.7541127, "lon": -73.9494532 }, + { "lat": 40.7537192, "lon": -73.9497969 }, + { "lat": 40.7533334, "lon": -73.9501288 }, + { "lat": 40.7531396, "lon": -73.9502942 }, + { "lat": 40.7530932, "lon": -73.9503350 }, + { "lat": 40.7530182, "lon": -73.9503997 }, + { "lat": 40.7529540, "lon": -73.9504554 }, + { "lat": 40.7525128, "lon": -73.9508358 }, + { "lat": 40.7524399, "lon": -73.9509023 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226829080, + "bounds": { + "minlat": 40.7710290, + "minlon": -73.9342460, + "maxlat": 40.7714419, + "maxlon": -73.9341029 + }, + "nodes": [ + 42810468, + 11308734543, + 5538983380, + 5538983381, + 607955129 + ], + "geometry": [ + { "lat": 40.7710290, "lon": -73.9342460 }, + { "lat": 40.7710931, "lon": -73.9342238 }, + { "lat": 40.7712054, "lon": -73.9341848 }, + { "lat": 40.7714144, "lon": -73.9341124 }, + { "lat": 40.7714419, "lon": -73.9341029 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "name": "Vernon Boulevard" + } +}, +{ + "type": "way", + "id": 226829081, + "bounds": { + "minlat": 40.7565182, + "minlon": -73.9472123, + "maxlat": 40.7571287, + "maxlon": -73.9465611 + }, + "nodes": [ + 607954910, + 6452721221, + 42826825 + ], + "geometry": [ + { "lat": 40.7571287, "lon": -73.9465611 }, + { "lat": 40.7565766, "lon": -73.9471604 }, + { "lat": 40.7565182, "lon": -73.9472123 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Vernon Boulevard" + } +}, +{ + "type": "way", + "id": 226829082, + "bounds": { + "minlat": 40.7419836, + "minlon": -73.9541215, + "maxlat": 40.7424505, + "maxlon": -73.9539828 + }, + "nodes": [ + 42826923, + 10774449942, + 6795905097 + ], + "geometry": [ + { "lat": 40.7419836, "lon": -73.9541215 }, + { "lat": 40.7420741, "lon": -73.9540921 }, + { "lat": 40.7424505, "lon": -73.9539828 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Vernon Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Vernon", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 226829083, + "bounds": { + "minlat": 40.7434296, + "minlon": -73.9538694, + "maxlat": 40.7468835, + "maxlon": -73.9527130 + }, + "nodes": [ + 42826864, + 5034712843, + 5034715346, + 42826868, + 5034715350, + 5034715418, + 42826872, + 5034720922, + 5034724169, + 42826875, + 5034724173, + 5034727228, + 42826878, + 276318087, + 5034727235, + 4675915068, + 6810164255, + 4675915067, + 5034728013, + 42826882 + ], + "geometry": [ + { "lat": 40.7468835, "lon": -73.9527130 }, + { "lat": 40.7468229, "lon": -73.9527360 }, + { "lat": 40.7462547, "lon": -73.9529217 }, + { "lat": 40.7461914, "lon": -73.9529451 }, + { "lat": 40.7461334, "lon": -73.9529645 }, + { "lat": 40.7455616, "lon": -73.9531560 }, + { "lat": 40.7455002, "lon": -73.9531773 }, + { "lat": 40.7454395, "lon": -73.9531967 }, + { "lat": 40.7448712, "lon": -73.9533853 }, + { "lat": 40.7448067, "lon": -73.9534089 }, + { "lat": 40.7447472, "lon": -73.9534310 }, + { "lat": 40.7441777, "lon": -73.9536223 }, + { "lat": 40.7441135, "lon": -73.9536413 }, + { "lat": 40.7440068, "lon": -73.9536756 }, + { "lat": 40.7439403, "lon": -73.9536979 }, + { "lat": 40.7438934, "lon": -73.9537137 }, + { "lat": 40.7437445, "lon": -73.9537637 }, + { "lat": 40.7435280, "lon": -73.9538364 }, + { "lat": 40.7434874, "lon": -73.9538500 }, + { "lat": 40.7434296, "lon": -73.9538694 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Vernon", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 226829103, + "bounds": { + "minlat": 40.7642579, + "minlon": -73.9370141, + "maxlat": 40.7715187, + "maxlon": -73.9312734 + }, + "nodes": [ + 42824085, + 6452522191, + 13703374135, + 2509345590, + 2509345592, + 42807557, + 11649811965, + 7713828604, + 11308745678, + 42881445, + 11308745677, + 7733783915, + 7768514032, + 42882960, + 7733801866, + 6860614023, + 7713828618, + 6456416475, + 42898031, + 6456416477, + 13702906936, + 7661754176, + 42856504, + 7661754179, + 7984260541, + 6456422115, + 42849225, + 6456422116, + 6456425929, + 42810470, + 11308734565, + 7745197948, + 42824405 + ], + "geometry": [ + { "lat": 40.7642579, "lon": -73.9370141 }, + { "lat": 40.7643378, "lon": -73.9369655 }, + { "lat": 40.7650080, "lon": -73.9365588 }, + { "lat": 40.7652671, "lon": -73.9364016 }, + { "lat": 40.7658172, "lon": -73.9360677 }, + { "lat": 40.7659009, "lon": -73.9360169 }, + { "lat": 40.7659551, "lon": -73.9359653 }, + { "lat": 40.7663670, "lon": -73.9355727 }, + { "lat": 40.7663945, "lon": -73.9355465 }, + { "lat": 40.7664370, "lon": -73.9355060 }, + { "lat": 40.7664858, "lon": -73.9354591 }, + { "lat": 40.7669037, "lon": -73.9350575 }, + { "lat": 40.7669544, "lon": -73.9350088 }, + { "lat": 40.7670189, "lon": -73.9349469 }, + { "lat": 40.7670800, "lon": -73.9348723 }, + { "lat": 40.7674112, "lon": -73.9346100 }, + { "lat": 40.7677873, "lon": -73.9342870 }, + { "lat": 40.7678160, "lon": -73.9342652 }, + { "lat": 40.7678550, "lon": -73.9342290 }, + { "lat": 40.7679079, "lon": -73.9341860 }, + { "lat": 40.7684666, "lon": -73.9337310 }, + { "lat": 40.7687568, "lon": -73.9334946 }, + { "lat": 40.7688180, "lon": -73.9334450 }, + { "lat": 40.7688919, "lon": -73.9333899 }, + { "lat": 40.7694162, "lon": -73.9329584 }, + { "lat": 40.7696537, "lon": -73.9327629 }, + { "lat": 40.7696990, "lon": -73.9327260 }, + { "lat": 40.7697596, "lon": -73.9326773 }, + { "lat": 40.7704990, "lon": -73.9320830 }, + { "lat": 40.7705450, "lon": -73.9320460 }, + { "lat": 40.7706087, "lon": -73.9319954 }, + { "lat": 40.7714393, "lon": -73.9313364 }, + { "lat": 40.7715187, "lon": -73.9312734 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226829104, + "bounds": { + "minlat": 40.7721598, + "minlon": -73.9290234, + "maxlat": 40.7733864, + "maxlon": -73.9289332 + }, + "nodes": [ + 42811448, + 6452969525, + 2302460127, + 2886109121, + 2891717710, + 2886109127, + 3570422550, + 42833057 + ], + "geometry": [ + { "lat": 40.7733864, "lon": -73.9289911 }, + { "lat": 40.7733347, "lon": -73.9290186 }, + { "lat": 40.7733141, "lon": -73.9290234 }, + { "lat": 40.7732464, "lon": -73.9290225 }, + { "lat": 40.7730637, "lon": -73.9290201 }, + { "lat": 40.7727684, "lon": -73.9290161 }, + { "lat": 40.7722249, "lon": -73.9290029 }, + { "lat": 40.7721598, "lon": -73.9289332 } + ], + "tags": { + "highway": "residential", + "name": "14th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 226829105, + "bounds": { + "minlat": 40.7739064, + "minlon": -73.9368814, + "maxlat": 40.7744296, + "maxlon": -73.9366105 + }, + "nodes": [ + 42884509, + 42884494, + 42884497, + 42884504, + 2297432726, + 2459371111, + 42884512, + 42884514, + 2461962691 + ], + "geometry": [ + { "lat": 40.7744296, "lon": -73.9367519 }, + { "lat": 40.7742650, "lon": -73.9368370 }, + { "lat": 40.7742080, "lon": -73.9368650 }, + { "lat": 40.7741259, "lon": -73.9368814 }, + { "lat": 40.7740799, "lon": -73.9368696 }, + { "lat": 40.7740442, "lon": -73.9368472 }, + { "lat": 40.7740077, "lon": -73.9368244 }, + { "lat": 40.7739544, "lon": -73.9367461 }, + { "lat": 40.7739064, "lon": -73.9366105 } + ], + "tags": { + "highway": "residential", + "name": "1st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226829106, + "bounds": { + "minlat": 40.7722511, + "minlon": -73.9274430, + "maxlat": 40.7728450, + "maxlon": -73.9259342 + }, + "nodes": [ + 2063038040, + 2457398767, + 7733683720, + 7733683739, + 42811451 + ], + "geometry": [ + { "lat": 40.7722511, "lon": -73.9259342 }, + { "lat": 40.7723383, "lon": -73.9260335 }, + { "lat": 40.7727287, "lon": -73.9271196 }, + { "lat": 40.7728178, "lon": -73.9273672 }, + { "lat": 40.7728450, "lon": -73.9274430 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "27th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226829107, + "bounds": { + "minlat": 40.7502624, + "minlon": -73.9386102, + "maxlat": 40.7607889, + "maxlon": -73.9296584 + }, + "nodes": [ + 42817402, + 6452518621, + 7949838930, + 6452568260, + 42817407, + 6452568261, + 8699111876, + 8699111919, + 8699111826, + 8699111956, + 8699111937, + 8699111900, + 3569402106, + 42817408, + 3569402102, + 3569401973, + 42815805, + 3569401971, + 7791670095, + 7791670103, + 10763718156, + 42817412, + 10763718158, + 10744391811, + 42817415, + 10744391809, + 10744391817, + 42817418, + 10744391819, + 7071449370, + 11699225520, + 42817424, + 11699225521, + 7103675567, + 8315072926, + 42817428 + ], + "geometry": [ + { "lat": 40.7607889, "lon": -73.9296584 }, + { "lat": 40.7607404, "lon": -73.9296976 }, + { "lat": 40.7604623, "lon": -73.9299224 }, + { "lat": 40.7593329, "lon": -73.9308354 }, + { "lat": 40.7592477, "lon": -73.9309043 }, + { "lat": 40.7591840, "lon": -73.9309560 }, + { "lat": 40.7587811, "lon": -73.9312829 }, + { "lat": 40.7584801, "lon": -73.9315272 }, + { "lat": 40.7584252, "lon": -73.9315717 }, + { "lat": 40.7581879, "lon": -73.9317642 }, + { "lat": 40.7581034, "lon": -73.9318328 }, + { "lat": 40.7580338, "lon": -73.9318893 }, + { "lat": 40.7577788, "lon": -73.9320962 }, + { "lat": 40.7577054, "lon": -73.9321558 }, + { "lat": 40.7576484, "lon": -73.9322021 }, + { "lat": 40.7563112, "lon": -73.9332865 }, + { "lat": 40.7562390, "lon": -73.9333450 }, + { "lat": 40.7561800, "lon": -73.9333927 }, + { "lat": 40.7557223, "lon": -73.9337629 }, + { "lat": 40.7551159, "lon": -73.9342534 }, + { "lat": 40.7550804, "lon": -73.9342823 }, + { "lat": 40.7550150, "lon": -73.9343350 }, + { "lat": 40.7549483, "lon": -73.9343917 }, + { "lat": 40.7539931, "lon": -73.9352031 }, + { "lat": 40.7539432, "lon": -73.9352454 }, + { "lat": 40.7538873, "lon": -73.9352961 }, + { "lat": 40.7527277, "lon": -73.9363513 }, + { "lat": 40.7526720, "lon": -73.9364020 }, + { "lat": 40.7526256, "lon": -73.9364447 }, + { "lat": 40.7523036, "lon": -73.9367409 }, + { "lat": 40.7514675, "lon": -73.9375100 }, + { "lat": 40.7514110, "lon": -73.9375620 }, + { "lat": 40.7513600, "lon": -73.9376083 }, + { "lat": 40.7512683, "lon": -73.9376917 }, + { "lat": 40.7503182, "lon": -73.9385557 }, + { "lat": 40.7502624, "lon": -73.9386102 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "28th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226829109, + "bounds": { + "minlat": 40.7540712, + "minlon": -73.9272514, + "maxlat": 40.7596656, + "maxlon": -73.9152649 + }, + "nodes": [ + 42824124, + 4971257832, + 6452514511, + 42824130, + 6452514510, + 6452514509, + 42824136, + 6452514508, + 13879584730, + 42824141, + 3577895809, + 3577895804, + 42824147, + 3577895803, + 3569858165, + 42824149, + 3569858164, + 3569858161, + 42824152, + 3569858160, + 6452514502, + 2402842564, + 6452514503, + 3569858157, + 42824162, + 3569858156, + 3569858153, + 42824167, + 3569858152, + 10774472440, + 3569858149, + 42824169, + 3569858148, + 3569858145, + 42824172, + 3569858143, + 3569858137, + 42824174, + 3569858135, + 3569858129, + 42824176, + 3569858127, + 3569858121, + 42824181, + 3569858120, + 8593804516, + 42824187 + ], + "geometry": [ + { "lat": 40.7596656, "lon": -73.9272514 }, + { "lat": 40.7596105, "lon": -73.9271324 }, + { "lat": 40.7593290, "lon": -73.9265300 }, + { "lat": 40.7592929, "lon": -73.9264530 }, + { "lat": 40.7592634, "lon": -73.9263894 }, + { "lat": 40.7589587, "lon": -73.9257370 }, + { "lat": 40.7589212, "lon": -73.9256566 }, + { "lat": 40.7588866, "lon": -73.9255829 }, + { "lat": 40.7585850, "lon": -73.9249363 }, + { "lat": 40.7585467, "lon": -73.9248542 }, + { "lat": 40.7585170, "lon": -73.9247906 }, + { "lat": 40.7582128, "lon": -73.9241398 }, + { "lat": 40.7581780, "lon": -73.9240642 }, + { "lat": 40.7581439, "lon": -73.9239936 }, + { "lat": 40.7578380, "lon": -73.9233356 }, + { "lat": 40.7578000, "lon": -73.9232542 }, + { "lat": 40.7577749, "lon": -73.9232004 }, + { "lat": 40.7574625, "lon": -73.9225314 }, + { "lat": 40.7574280, "lon": -73.9224573 }, + { "lat": 40.7574013, "lon": -73.9223999 }, + { "lat": 40.7570913, "lon": -73.9217359 }, + { "lat": 40.7570533, "lon": -73.9216545 }, + { "lat": 40.7570259, "lon": -73.9215946 }, + { "lat": 40.7567320, "lon": -73.9209662 }, + { "lat": 40.7566896, "lon": -73.9208753 }, + { "lat": 40.7566376, "lon": -73.9207636 }, + { "lat": 40.7563497, "lon": -73.9201468 }, + { "lat": 40.7563088, "lon": -73.9200593 }, + { "lat": 40.7562778, "lon": -73.9199918 }, + { "lat": 40.7562156, "lon": -73.9198590 }, + { "lat": 40.7559723, "lon": -73.9193385 }, + { "lat": 40.7559360, "lon": -73.9192607 }, + { "lat": 40.7559063, "lon": -73.9191970 }, + { "lat": 40.7555996, "lon": -73.9185399 }, + { "lat": 40.7555621, "lon": -73.9184597 }, + { "lat": 40.7555323, "lon": -73.9183957 }, + { "lat": 40.7552230, "lon": -73.9177344 }, + { "lat": 40.7551902, "lon": -73.9176628 }, + { "lat": 40.7551622, "lon": -73.9176001 }, + { "lat": 40.7548506, "lon": -73.9169406 }, + { "lat": 40.7548199, "lon": -73.9168694 }, + { "lat": 40.7547854, "lon": -73.9167955 }, + { "lat": 40.7544777, "lon": -73.9161363 }, + { "lat": 40.7544476, "lon": -73.9160719 }, + { "lat": 40.7543983, "lon": -73.9159991 }, + { "lat": 40.7540984, "lon": -73.9153521 }, + { "lat": 40.7540712, "lon": -73.9152649 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "tertiary", + "lanes": "2", + "name": "34th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226829110, + "bounds": { + "minlat": 40.7635103, + "minlon": -73.9370141, + "maxlat": 40.7642579, + "maxlon": -73.9354541 + }, + "nodes": [ + 42824085, + 11308745674, + 42824088, + 42824091 + ], + "geometry": [ + { "lat": 40.7642579, "lon": -73.9370141 }, + { "lat": 40.7642082, "lon": -73.9369107 }, + { "lat": 40.7638940, "lon": -73.9362560 }, + { "lat": 40.7635103, "lon": -73.9354541 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "34th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226829111, + "bounds": { + "minlat": 40.7604752, + "minlon": -73.9221955, + "maxlat": 40.7654066, + "maxlon": -73.9181900 + }, + "nodes": [ + 42866657, + 3570249886, + 7949923917, + 7661673742, + 42856544, + 7661673741, + 11780663916, + 6406731492, + 6406731487, + 12253478381, + 5119625234, + 3570249999, + 42866652 + ], + "geometry": [ + { "lat": 40.7604752, "lon": -73.9221955 }, + { "lat": 40.7605524, "lon": -73.9221327 }, + { "lat": 40.7625249, "lon": -73.9205295 }, + { "lat": 40.7627656, "lon": -73.9203309 }, + { "lat": 40.7628239, "lon": -73.9202848 }, + { "lat": 40.7629018, "lon": -73.9202207 }, + { "lat": 40.7633551, "lon": -73.9198535 }, + { "lat": 40.7636335, "lon": -73.9196281 }, + { "lat": 40.7646018, "lon": -73.9188428 }, + { "lat": 40.7648141, "lon": -73.9186707 }, + { "lat": 40.7650918, "lon": -73.9184454 }, + { "lat": 40.7653312, "lon": -73.9182514 }, + { "lat": 40.7654066, "lon": -73.9181900 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "foot": "yes", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "35th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226829112, + "bounds": { + "minlat": 40.7562613, + "minlon": -73.9245059, + "maxlat": 40.7578000, + "maxlon": -73.9232542 + }, + "nodes": [ + 42824149, + 3569858163, + 5488250124, + 3573447554, + 42926395 + ], + "geometry": [ + { "lat": 40.7578000, "lon": -73.9232542 }, + { "lat": 40.7577352, "lon": -73.9233063 }, + { "lat": 40.7572202, "lon": -73.9237259 }, + { "lat": 40.7563282, "lon": -73.9244516 }, + { "lat": 40.7562613, "lon": -73.9245059 } + ], + "tags": { + "access": "no", + "highway": "residential", + "name": "36th Street" + } +}, +{ + "type": "way", + "id": 226829113, + "bounds": { + "minlat": 40.7442885, + "minlon": -73.9137209, + "maxlat": 40.7443853, + "maxlon": -73.9128806 + }, + "nodes": [ + 42817817, + 8251168994, + 6349964613, + 9602404334 + ], + "geometry": [ + { "lat": 40.7443853, "lon": -73.9137209 }, + { "lat": 40.7443729, "lon": -73.9136239 }, + { "lat": 40.7443118, "lon": -73.9130861 }, + { "lat": 40.7442885, "lon": -73.9128806 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 226829114, + "bounds": { + "minlat": 40.7419836, + "minlon": -73.9543437, + "maxlat": 40.7420235, + "maxlon": -73.9541215 + }, + "nodes": [ + 42826923, + 42826890 + ], + "geometry": [ + { "lat": 40.7419836, "lon": -73.9541215 }, + { "lat": 40.7420235, "lon": -73.9543437 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "primary", + "name": "51st Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "51st", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 227064514, + "bounds": { + "minlat": 40.7018774, + "minlon": -73.9440256, + "maxlat": 40.7019743, + "maxlon": -73.9438528 + }, + "nodes": [ + 42505452, + 9752126451, + 42505456 + ], + "geometry": [ + { "lat": 40.7019743, "lon": -73.9440256 }, + { "lat": 40.7019273, "lon": -73.9439416 }, + { "lat": 40.7018774, "lon": -73.9438528 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 227064515, + "bounds": { + "minlat": 40.7014421, + "minlon": -73.9438528, + "maxlat": 40.7018774, + "maxlon": -73.9430887 + }, + "nodes": [ + 42505456, + 9752126452, + 13685892611, + 5673259249, + 42467507 + ], + "geometry": [ + { "lat": 40.7018774, "lon": -73.9438528 }, + { "lat": 40.7018468, "lon": -73.9437983 }, + { "lat": 40.7015254, "lon": -73.9432345 }, + { "lat": 40.7014924, "lon": -73.9431766 }, + { "lat": 40.7014421, "lon": -73.9430887 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 227064526, + "bounds": { + "minlat": 40.7221719, + "minlon": -73.9498712, + "maxlat": 40.7225465, + "maxlon": -73.9490870 + }, + "nodes": [ + 42491222, + 9789356662, + 4915030913, + 11229826573, + 9789356619, + 42509213 + ], + "geometry": [ + { "lat": 40.7225465, "lon": -73.9490870 }, + { "lat": 40.7225229, "lon": -73.9491688 }, + { "lat": 40.7225100, "lon": -73.9491991 }, + { "lat": 40.7223801, "lon": -73.9494602 }, + { "lat": 40.7222130, "lon": -73.9497961 }, + { "lat": 40.7221719, "lon": -73.9498712 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Driggs Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 227064529, + "bounds": { + "minlat": 40.7001135, + "minlon": -73.9472209, + "maxlat": 40.7004050, + "maxlon": -73.9446170 + }, + "nodes": [ + 42467502, + 7691087922, + 42504097, + 9755373182, + 42504093 + ], + "geometry": [ + { "lat": 40.7004050, "lon": -73.9446170 }, + { "lat": 40.7003168, "lon": -73.9454351 }, + { "lat": 40.7002150, "lon": -73.9463160 }, + { "lat": 40.7001251, "lon": -73.9471174 }, + { "lat": 40.7001135, "lon": -73.9472209 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY; Kings, NY", + "tiger:name_base": "Flushing", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378; 11237", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 227064538, + "bounds": { + "minlat": 40.7031065, + "minlon": -73.9866471, + "maxlat": 40.7044194, + "maxlon": -73.9865676 + }, + "nodes": [ + 42469358, + 10722370724, + 10725916732, + 42472725, + 10725916729, + 8164734045, + 9928127502, + 250451189 + ], + "geometry": [ + { "lat": 40.7031065, "lon": -73.9866471 }, + { "lat": 40.7031565, "lon": -73.9866441 }, + { "lat": 40.7037115, "lon": -73.9866105 }, + { "lat": 40.7037568, "lon": -73.9866077 }, + { "lat": 40.7041200, "lon": -73.9865857 }, + { "lat": 40.7043249, "lon": -73.9865733 }, + { "lat": 40.7043629, "lon": -73.9865705 }, + { "lat": 40.7044194, "lon": -73.9865676 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "kerb", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Jay Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Jay", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 227064543, + "bounds": { + "minlat": 40.7029999, + "minlon": -73.9459090, + "maxlat": 40.7034220, + "maxlon": -73.9458579 + }, + "nodes": [ + 42491139, + 8229296002, + 9773739322, + 42491136 + ], + "geometry": [ + { "lat": 40.7034220, "lon": -73.9459090 }, + { "lat": 40.7031638, "lon": -73.9458777 }, + { "lat": 40.7031070, "lon": -73.9458708 }, + { "lat": 40.7029999, "lon": -73.9458579 } + ], + "tags": { + "highway": "residential", + "name": "Leonard Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Leonard", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 227064544, + "bounds": { + "minlat": 40.7032154, + "minlon": -73.9462428, + "maxlat": 40.7034220, + "maxlon": -73.9459090 + }, + "nodes": [ + 42491139, + 9773739320, + 42492008 + ], + "geometry": [ + { "lat": 40.7034220, "lon": -73.9459090 }, + { "lat": 40.7032649, "lon": -73.9461628 }, + { "lat": 40.7032154, "lon": -73.9462428 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Moore Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Moore", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 227064550, + "bounds": { + "minlat": 40.7010910, + "minlon": -73.9462760, + "maxlat": 40.7022200, + "maxlon": -73.9450140 + }, + "nodes": [ + 42499146, + 9752126459, + 9755373172, + 42499144, + 9755373171, + 9755373157, + 42499143 + ], + "geometry": [ + { "lat": 40.7010910, "lon": -73.9450140 }, + { "lat": 40.7011556, "lon": -73.9450862 }, + { "lat": 40.7016116, "lon": -73.9455965 }, + { "lat": 40.7016550, "lon": -73.9456450 }, + { "lat": 40.7017198, "lon": -73.9457174 }, + { "lat": 40.7021750, "lon": -73.9462255 }, + { "lat": 40.7022200, "lon": -73.9462760 } + ], + "tags": { + "highway": "residential", + "name": "Throop Avenue", + "name:etymology:wikidata": "Q881026", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Throop", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11221", + "tiger:zip_right": "11221" + } +}, +{ + "type": "way", + "id": 227064557, + "bounds": { + "minlat": 40.7016338, + "minlon": -73.9896812, + "maxlat": 40.7025230, + "maxlon": -73.9896268 + }, + "nodes": [ + 42500003, + 10726079572, + 2358967548, + 10726048603, + 248607283 + ], + "geometry": [ + { "lat": 40.7025230, "lon": -73.9896268 }, + { "lat": 40.7024696, "lon": -73.9896281 }, + { "lat": 40.7021235, "lon": -73.9896495 }, + { "lat": 40.7016978, "lon": -73.9896769 }, + { "lat": 40.7016338, "lon": -73.9896812 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Washington Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Washington;Cadman;Washington", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "St;Plz;St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 227064558, + "bounds": { + "minlat": 40.7007409, + "minlon": -73.9897318, + "maxlat": 40.7014198, + "maxlon": -73.9896945 + }, + "nodes": [ + 42519812, + 9368823955, + 12048462056, + 11679066071 + ], + "geometry": [ + { "lat": 40.7007409, "lon": -73.9897318 }, + { "lat": 40.7008100, "lon": -73.9897285 }, + { "lat": 40.7012620, "lon": -73.9897033 }, + { "lat": 40.7014198, "lon": -73.9896945 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Washington Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Washington;Cadman;Washington", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "St;Plz;St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 227064559, + "bounds": { + "minlat": 40.7178711, + "minlon": -73.9622061, + "maxlat": 40.7200781, + "maxlon": -73.9598401 + }, + "nodes": [ + 42506310, + 9794844975, + 6245642030, + 42480055, + 6245642028, + 6245642033, + 42506170, + 6245642032, + 11163899182, + 6245642035, + 42506318, + 6245642034, + 9795044526, + 42473950 + ], + "geometry": [ + { "lat": 40.7200781, "lon": -73.9598401 }, + { "lat": 40.7200280, "lon": -73.9598922 }, + { "lat": 40.7195731, "lon": -73.9603783 }, + { "lat": 40.7195210, "lon": -73.9604340 }, + { "lat": 40.7194735, "lon": -73.9604850 }, + { "lat": 40.7190171, "lon": -73.9609756 }, + { "lat": 40.7189680, "lon": -73.9610280 }, + { "lat": 40.7189194, "lon": -73.9610801 }, + { "lat": 40.7187958, "lon": -73.9612141 }, + { "lat": 40.7184761, "lon": -73.9615608 }, + { "lat": 40.7184170, "lon": -73.9616200 }, + { "lat": 40.7183650, "lon": -73.9616756 }, + { "lat": 40.7179142, "lon": -73.9621599 }, + { "lat": 40.7178711, "lon": -73.9622061 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 227064562, + "bounds": { + "minlat": 40.7025143, + "minlon": -73.9643999, + "maxlat": 40.7031324, + "maxlon": -73.9623856 + }, + "nodes": [ + 42506392, + 9776829259, + 9733447016, + 9733464317, + 42506397, + 9733447015, + 42506402, + 3552687152, + 3552687151, + 3552687149, + 9998897936, + 9998897937, + 42488355 + ], + "geometry": [ + { "lat": 40.7031324, "lon": -73.9643999 }, + { "lat": 40.7030721, "lon": -73.9643356 }, + { "lat": 40.7030493, "lon": -73.9643111 }, + { "lat": 40.7030346, "lon": -73.9642935 }, + { "lat": 40.7030242, "lon": -73.9642729 }, + { "lat": 40.7030159, "lon": -73.9642483 }, + { "lat": 40.7028026, "lon": -73.9634105 }, + { "lat": 40.7026736, "lon": -73.9628785 }, + { "lat": 40.7025881, "lon": -73.9625395 }, + { "lat": 40.7025775, "lon": -73.9625077 }, + { "lat": 40.7025599, "lon": -73.9624715 }, + { "lat": 40.7025391, "lon": -73.9624294 }, + { "lat": 40.7025143, "lon": -73.9623856 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 227074777, + "bounds": { + "minlat": 40.7298876, + "minlon": -73.9575954, + "maxlat": 40.7301881, + "maxlon": -73.9544396 + }, + "nodes": [ + 5238706267, + 5238706266, + 11155242479, + 8549558997, + 6235394726, + 42514451 + ], + "geometry": [ + { "lat": 40.7301881, "lon": -73.9544396 }, + { "lat": 40.7301675, "lon": -73.9546640 }, + { "lat": 40.7299383, "lon": -73.9570585 }, + { "lat": 40.7299009, "lon": -73.9574498 }, + { "lat": 40.7298961, "lon": -73.9575027 }, + { "lat": 40.7298876, "lon": -73.9575954 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Greenpoint", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 227074782, + "bounds": { + "minlat": 40.7097744, + "minlon": -73.9570586, + "maxlat": 40.7103528, + "maxlon": -73.9566938 + }, + "nodes": [ + 42463272, + 8842929717, + 9767625317, + 42482424 + ], + "geometry": [ + { "lat": 40.7103528, "lon": -73.9566938 }, + { "lat": 40.7102884, "lon": -73.9567416 }, + { "lat": 40.7098261, "lon": -73.9570248 }, + { "lat": 40.7097744, "lon": -73.9570586 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 227074783, + "bounds": { + "minlat": 40.7375222, + "minlon": -73.9528976, + "maxlat": 40.7382166, + "maxlon": -73.9527565 + }, + "nodes": [ + 42469141, + 9920934997, + 2475239558, + 2475239560, + 9690695004, + 9996409534, + 9996409535, + 9996409536, + 42492099 + ], + "geometry": [ + { "lat": 40.7375222, "lon": -73.9527565 }, + { "lat": 40.7375955, "lon": -73.9527685 }, + { "lat": 40.7376994, "lon": -73.9527849 }, + { "lat": 40.7380674, "lon": -73.9528445 }, + { "lat": 40.7381527, "lon": -73.9528581 }, + { "lat": 40.7381781, "lon": -73.9528650 }, + { "lat": 40.7381964, "lon": -73.9528736 }, + { "lat": 40.7382095, "lon": -73.9528846 }, + { "lat": 40.7382166, "lon": -73.9528976 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Mc Guinness", + "tiger:name_type": "Blvd", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 227074791, + "bounds": { + "minlat": 40.7373671, + "minlon": -73.9527565, + "maxlat": 40.7375222, + "maxlon": -73.9522456 + }, + "nodes": [ + 42469141, + 9996409533, + 8097025084, + 9690650964, + 2475239554 + ], + "geometry": [ + { "lat": 40.7375222, "lon": -73.9527565 }, + { "lat": 40.7375111, "lon": -73.9527163 }, + { "lat": 40.7374955, "lon": -73.9526600 }, + { "lat": 40.7374824, "lon": -73.9526130 }, + { "lat": 40.7373671, "lon": -73.9522456 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Paidge Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 227074792, + "bounds": { + "minlat": 40.7261900, + "minlon": -73.9586456, + "maxlat": 40.7263057, + "maxlon": -73.9573562 + }, + "nodes": [ + 42503841, + 9789402638, + 9789402686, + 9789402683, + 42503839 + ], + "geometry": [ + { "lat": 40.7263057, "lon": -73.9573562 }, + { "lat": 40.7262961, "lon": -73.9574630 }, + { "lat": 40.7262034, "lon": -73.9584965 }, + { "lat": 40.7261967, "lon": -73.9585712 }, + { "lat": 40.7261900, "lon": -73.9586456 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Quay Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Quay", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 227074795, + "bounds": { + "minlat": 40.7128718, + "minlon": -73.9673932, + "maxlat": 40.7132942, + "maxlon": -73.9657688 + }, + "nodes": [ + 42506331, + 5186818317, + 9767625406, + 5186818624, + 42469464 + ], + "geometry": [ + { "lat": 40.7128718, "lon": -73.9657688 }, + { "lat": 40.7128979, "lon": -73.9658709 }, + { "lat": 40.7132615, "lon": -73.9672680 }, + { "lat": 40.7132779, "lon": -73.9673300 }, + { "lat": 40.7132942, "lon": -73.9673932 } + ], + "tags": { + "bicycle": "yes", + "cycleway:lane": "pictogram", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "South 4th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 227074805, + "bounds": { + "minlat": 40.7339880, + "minlon": -73.9601510, + "maxlat": 40.7353990, + "maxlon": -73.9599302 + }, + "nodes": [ + 42486594, + 9920934983, + 10170251996, + 9997952337, + 42531618, + 9121317154, + 10170251950, + 9478443379 + ], + "geometry": [ + { "lat": 40.7339880, "lon": -73.9599302 }, + { "lat": 40.7340533, "lon": -73.9599398 }, + { "lat": 40.7345020, "lon": -73.9600154 }, + { "lat": 40.7346316, "lon": -73.9600373 }, + { "lat": 40.7346892, "lon": -73.9600471 }, + { "lat": 40.7347533, "lon": -73.9600582 }, + { "lat": 40.7353213, "lon": -73.9601436 }, + { "lat": 40.7353990, "lon": -73.9601510 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 228996438, + "bounds": { + "minlat": 40.7652728, + "minlon": -73.9984713, + "maxlat": 40.7653759, + "maxlon": -73.9982592 + }, + "nodes": [ + 701605114, + 4870562427, + 2376384645, + 701606854 + ], + "geometry": [ + { "lat": 40.7652728, "lon": -73.9984713 }, + { "lat": 40.7652929, "lon": -73.9984007 }, + { "lat": 40.7653326, "lon": -73.9983175 }, + { "lat": 40.7653759, "lon": -73.9982592 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 230064837, + "bounds": { + "minlat": 40.8267776, + "minlon": -73.9242228, + "maxlat": 40.8273022, + "maxlon": -73.9224109 + }, + "nodes": [ + 2385899532, + 2385899531 + ], + "geometry": [ + { "lat": 40.8267776, "lon": -73.9224109 }, + { "lat": 40.8273022, "lon": -73.9242228 } + ], + "tags": { + "busway:left": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "tunnel": "yes", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 230064838, + "bounds": { + "minlat": 40.8265242, + "minlon": -73.9224109, + "maxlat": 40.8267776, + "maxlon": -73.9215864 + }, + "nodes": [ + 4635126227, + 2411416835, + 2385899532 + ], + "geometry": [ + { "lat": 40.8265242, "lon": -73.9215864 }, + { "lat": 40.8267561, "lon": -73.9223385 }, + { "lat": 40.8267776, "lon": -73.9224109 } + ], + "tags": { + "busway:left": "opposite_lane", + "cutting": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 230463308, + "bounds": { + "minlat": 40.7765722, + "minlon": -73.9147678, + "maxlat": 40.7785113, + "maxlon": -73.9120121 + }, + "nodes": [ + 2389598792, + 9847967676, + 2389598798, + 9847967550, + 2389598796, + 9847967547, + 2389598801, + 9847967643, + 2389598795, + 9847943992, + 2389598806, + 9847967631, + 2389598794, + 9847967628, + 9845161123, + 7851387310, + 9845158006, + 10030742187, + 2389598793 + ], + "geometry": [ + { "lat": 40.7765722, "lon": -73.9120121 }, + { "lat": 40.7766058, "lon": -73.9120599 }, + { "lat": 40.7768160, "lon": -73.9123586 }, + { "lat": 40.7770148, "lon": -73.9126411 }, + { "lat": 40.7770544, "lon": -73.9126974 }, + { "lat": 40.7770993, "lon": -73.9127611 }, + { "lat": 40.7773012, "lon": -73.9130481 }, + { "lat": 40.7775014, "lon": -73.9133327 }, + { "lat": 40.7775485, "lon": -73.9133996 }, + { "lat": 40.7775812, "lon": -73.9134460 }, + { "lat": 40.7777870, "lon": -73.9137385 }, + { "lat": 40.7779888, "lon": -73.9140252 }, + { "lat": 40.7780258, "lon": -73.9140778 }, + { "lat": 40.7780666, "lon": -73.9141358 }, + { "lat": 40.7781049, "lon": -73.9141903 }, + { "lat": 40.7781820, "lon": -73.9142998 }, + { "lat": 40.7784593, "lon": -73.9146939 }, + { "lat": 40.7784727, "lon": -73.9147130 }, + { "lat": 40.7785113, "lon": -73.9147678 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 230463309, + "bounds": { + "minlat": 40.7761831, + "minlon": -73.9131393, + "maxlat": 40.7768160, + "maxlon": -73.9123586 + }, + "nodes": [ + 2389598797, + 3778716459, + 2389598798 + ], + "geometry": [ + { "lat": 40.7761831, "lon": -73.9131393 }, + { "lat": 40.7762155, "lon": -73.9130994 }, + { "lat": 40.7768160, "lon": -73.9123586 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 230463310, + "bounds": { + "minlat": 40.7761831, + "minlon": -73.9141729, + "maxlat": 40.7769060, + "maxlon": -73.9131393 + }, + "nodes": [ + 2389598812, + 9847967590, + 2389598804, + 2389598808, + 9847967587, + 2389598799, + 9847967687, + 2389598797 + ], + "geometry": [ + { "lat": 40.7769060, "lon": -73.9141729 }, + { "lat": 40.7768660, "lon": -73.9141155 }, + { "lat": 40.7766611, "lon": -73.9138212 }, + { "lat": 40.7764821, "lon": -73.9135752 }, + { "lat": 40.7764614, "lon": -73.9135446 }, + { "lat": 40.7764187, "lon": -73.9134813 }, + { "lat": 40.7763764, "lon": -73.9134199 }, + { "lat": 40.7761831, "lon": -73.9131393 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 230463311, + "bounds": { + "minlat": 40.7765952, + "minlon": -73.9139008, + "maxlat": 40.7773012, + "maxlon": -73.9130481 + }, + "nodes": [ + 2389598801, + 2389598804, + 2389598802 + ], + "geometry": [ + { "lat": 40.7773012, "lon": -73.9130481 }, + { "lat": 40.7766611, "lon": -73.9138212 }, + { "lat": 40.7765952, "lon": -73.9139008 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 230463313, + "bounds": { + "minlat": 40.7769505, + "minlon": -73.9148089, + "maxlat": 40.7774245, + "maxlon": -73.9141192 + }, + "nodes": [ + 2389598803, + 10030742186, + 2389598805, + 9847967541, + 2389598813 + ], + "geometry": [ + { "lat": 40.7774245, "lon": -73.9148089 }, + { "lat": 40.7773881, "lon": -73.9147559 }, + { "lat": 40.7771958, "lon": -73.9144753 }, + { "lat": 40.7769904, "lon": -73.9141771 }, + { "lat": 40.7769505, "lon": -73.9141192 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 230463314, + "bounds": { + "minlat": 40.7771958, + "minlon": -73.9144753, + "maxlat": 40.7777870, + "maxlon": -73.9137385 + }, + "nodes": [ + 2389598805, + 2389598806 + ], + "geometry": [ + { "lat": 40.7771958, "lon": -73.9144753 }, + { "lat": 40.7777870, "lon": -73.9137385 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 231143766, + "bounds": { + "minlat": 40.8535331, + "minlon": -73.9846200, + "maxlat": 40.8537580, + "maxlon": -73.9842041 + }, + "nodes": [ + 299182806, + 10308624550, + 299182807, + 299182808, + 5362398647, + 12692250295, + 12692250296, + 5362398646 + ], + "geometry": [ + { "lat": 40.8535331, "lon": -73.9842041 }, + { "lat": 40.8535835, "lon": -73.9843879 }, + { "lat": 40.8535906, "lon": -73.9844149 }, + { "lat": 40.8536129, "lon": -73.9844922 }, + { "lat": 40.8536387, "lon": -73.9845493 }, + { "lat": 40.8536654, "lon": -73.9845765 }, + { "lat": 40.8536955, "lon": -73.9845944 }, + { "lat": 40.8537580, "lon": -73.9846200 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lanes": "1", + "name": "Lynette Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Belvedere", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 231393429, + "bounds": { + "minlat": 40.7182459, + "minlon": -73.9882439, + "maxlat": 40.7184824, + "maxlon": -73.9874583 + }, + "nodes": [ + 486867513, + 3314293724, + 12195869786, + 8231896483, + 486867534 + ], + "geometry": [ + { "lat": 40.7184824, "lon": -73.9882439 }, + { "lat": 40.7184485, "lon": -73.9881335 }, + { "lat": 40.7182773, "lon": -73.9875638 }, + { "lat": 40.7182634, "lon": -73.9875168 }, + { "lat": 40.7182459, "lon": -73.9874583 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 231393430, + "bounds": { + "minlat": 40.7184824, + "minlon": -73.9882439, + "maxlat": 40.7186305, + "maxlon": -73.9881675 + }, + "nodes": [ + 486867513, + 10931501319, + 42429773 + ], + "geometry": [ + { "lat": 40.7184824, "lon": -73.9882439 }, + { "lat": 40.7185293, "lon": -73.9882197 }, + { "lat": 40.7186305, "lon": -73.9881675 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Essex Street", + "name:etymology:wikidata": "Q23240", + "name:ko": "에식스 스트리트", + "name:ru": "Эссекс-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4532801", + "wikipedia": "en:Essex Street" + } +}, +{ + "type": "way", + "id": 231971613, + "bounds": { + "minlat": 40.7817985, + "minlon": -73.9138210, + "maxlat": 40.7821497, + "maxlon": -73.9133175 + }, + "nodes": [ + 2402924283, + 5785108821, + 2402924284 + ], + "geometry": [ + { "lat": 40.7821497, "lon": -73.9138210 }, + { "lat": 40.7818413, "lon": -73.9133788 }, + { "lat": 40.7817985, "lon": -73.9133175 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 232040785, + "bounds": { + "minlat": 40.7817742, + "minlon": -73.9189390, + "maxlat": 40.7824985, + "maxlon": -73.9175948 + }, + "nodes": [ + 2403864013, + 7803848509, + 2403864014, + 2403864015 + ], + "geometry": [ + { "lat": 40.7820180, "lon": -73.9175948 }, + { "lat": 40.7819688, "lon": -73.9176540 }, + { "lat": 40.7817742, "lon": -73.9178881 }, + { "lat": 40.7824985, "lon": -73.9189390 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 232040807, + "bounds": { + "minlat": 40.7811279, + "minlon": -73.9173018, + "maxlat": 40.7816109, + "maxlon": -73.9169196 + }, + "nodes": [ + 2403864092, + 2403864093, + 7803843779, + 2403864094 + ], + "geometry": [ + { "lat": 40.7811279, "lon": -73.9169196 }, + { "lat": 40.7813947, "lon": -73.9173018 }, + { "lat": 40.7815630, "lon": -73.9170919 }, + { "lat": 40.7816109, "lon": -73.9170322 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 232050131, + "bounds": { + "minlat": 40.7691904, + "minlon": -73.9346472, + "maxlat": 40.7696838, + "maxlon": -73.9341788 + }, + "nodes": [ + 2403963455, + 2403963457, + 7733801876, + 2403963458 + ], + "geometry": [ + { "lat": 40.7696838, "lon": -73.9346472 }, + { "lat": 40.7694941, "lon": -73.9341788 }, + { "lat": 40.7692588, "lon": -73.9343365 }, + { "lat": 40.7691904, "lon": -73.9343823 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 232050810, + "bounds": { + "minlat": 40.7671667, + "minlon": -73.9316433, + "maxlat": 40.7687319, + "maxlon": -73.9281869 + }, + "nodes": [ + 2403968914, + 7748157097, + 6452777080, + 2403968916, + 6452880148, + 6452981342, + 2403968915 + ], + "geometry": [ + { "lat": 40.7687319, "lon": -73.9316433 }, + { "lat": 40.7686952, "lon": -73.9315600 }, + { "lat": 40.7678390, "lon": -73.9296178 }, + { "lat": 40.7677832, "lon": -73.9294913 }, + { "lat": 40.7677269, "lon": -73.9293723 }, + { "lat": 40.7672030, "lon": -73.9282637 }, + { "lat": 40.7671667, "lon": -73.9281869 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 232052938, + "bounds": { + "minlat": 40.7651872, + "minlon": -73.9311721, + "maxlat": 40.7653518, + "maxlon": -73.9310257 + }, + "nodes": [ + 2403986927, + 2403986925 + ], + "geometry": [ + { "lat": 40.7653518, "lon": -73.9310257 }, + { "lat": 40.7651872, "lon": -73.9311721 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 232065100, + "bounds": { + "minlat": 40.7725043, + "minlon": -74.0115179, + "maxlat": 40.7745041, + "maxlon": -74.0102559 + }, + "nodes": [ + 2325759413, + 5964467346, + 2404083337, + 2404083745, + 2404083737, + 2404083352, + 2404083617, + 2404083335, + 5964467349, + 4069497849, + 5964467351, + 5964467355, + 4069497851, + 2837054140, + 5964467353, + 2404083309, + 2404084032, + 2404083053, + 2404083970, + 2404083986, + 2404083990, + 2404083432 + ], + "geometry": [ + { "lat": 40.7745041, "lon": -74.0113679 }, + { "lat": 40.7744606, "lon": -74.0112808 }, + { "lat": 40.7740466, "lon": -74.0103519 }, + { "lat": 40.7740091, "lon": -74.0102932 }, + { "lat": 40.7739627, "lon": -74.0102641 }, + { "lat": 40.7739050, "lon": -74.0102559 }, + { "lat": 40.7738501, "lon": -74.0102836 }, + { "lat": 40.7737677, "lon": -74.0103490 }, + { "lat": 40.7735453, "lon": -74.0105193 }, + { "lat": 40.7734989, "lon": -74.0105561 }, + { "lat": 40.7734482, "lon": -74.0105935 }, + { "lat": 40.7728977, "lon": -74.0110141 }, + { "lat": 40.7728566, "lon": -74.0110455 }, + { "lat": 40.7728470, "lon": -74.0110539 }, + { "lat": 40.7728074, "lon": -74.0110842 }, + { "lat": 40.7727236, "lon": -74.0111483 }, + { "lat": 40.7725997, "lon": -74.0112448 }, + { "lat": 40.7725388, "lon": -74.0113012 }, + { "lat": 40.7725043, "lon": -74.0113548 }, + { "lat": 40.7725043, "lon": -74.0114031 }, + { "lat": 40.7725298, "lon": -74.0114589 }, + { "lat": 40.7725988, "lon": -74.0115179 } + ], + "tags": { + "highway": "service", + "name": "City View Drive" + } +}, +{ + "type": "way", + "id": 232065118, + "bounds": { + "minlat": 40.7727298, + "minlon": -74.0138910, + "maxlat": 40.7732461, + "maxlon": -74.0127390 + }, + "nodes": [ + 2404083336, + 7297023046, + 2325759408 + ], + "geometry": [ + { "lat": 40.7732461, "lon": -74.0138910 }, + { "lat": 40.7731904, "lon": -74.0137619 }, + { "lat": 40.7727298, "lon": -74.0127390 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 232270198, + "bounds": { + "minlat": 40.7013413, + "minlon": -73.9778269, + "maxlat": 40.7021986, + "maxlon": -73.9764850 + }, + "nodes": [ + 42488906, + 9998755680, + 42488908, + 6474916506, + 7707302644, + 7835899118, + 9998755681, + 42488910 + ], + "geometry": [ + { "lat": 40.7013413, "lon": -73.9778269 }, + { "lat": 40.7015266, "lon": -73.9775465 }, + { "lat": 40.7015858, "lon": -73.9774568 }, + { "lat": 40.7018467, "lon": -73.9770508 }, + { "lat": 40.7019359, "lon": -73.9769093 }, + { "lat": 40.7020581, "lon": -73.9767092 }, + { "lat": 40.7020780, "lon": -73.9766770 }, + { "lat": 40.7021986, "lon": -73.9764850 } + ], + "tags": { + "access": "private", + "cycleway": "lane", + "highway": "unclassified", + "name": "2nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "2nd", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 232270199, + "bounds": { + "minlat": 40.6999212, + "minlon": -73.9789481, + "maxlat": 40.7006263, + "maxlon": -73.9781717 + }, + "nodes": [ + 42475992, + 10716575002, + 9998788892, + 10716574981, + 42478040 + ], + "geometry": [ + { "lat": 40.6999212, "lon": -73.9781717 }, + { "lat": 40.6999534, "lon": -73.9782069 }, + { "lat": 40.6999818, "lon": -73.9782380 }, + { "lat": 40.7005959, "lon": -73.9789146 }, + { "lat": 40.7006263, "lon": -73.9789481 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Chauncey Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Chauncey", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 232270200, + "bounds": { + "minlat": 40.6999212, + "minlon": -73.9781717, + "maxlat": 40.7018559, + "maxlon": -73.9759283 + }, + "nodes": [ + 42475992, + 42475993, + 9998755696, + 42475998, + 9998755697, + 10716574984, + 10716574982, + 42476000, + 42476003, + 42476006 + ], + "geometry": [ + { "lat": 40.6999212, "lon": -73.9781717 }, + { "lat": 40.7001395, "lon": -73.9777973 }, + { "lat": 40.7005586, "lon": -73.9771098 }, + { "lat": 40.7006129, "lon": -73.9770321 }, + { "lat": 40.7006520, "lon": -73.9769682 }, + { "lat": 40.7007827, "lon": -73.9767618 }, + { "lat": 40.7008045, "lon": -73.9767274 }, + { "lat": 40.7008522, "lon": -73.9766520 }, + { "lat": 40.7017830, "lon": -73.9759810 }, + { "lat": 40.7018559, "lon": -73.9759283 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "3rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "3rd", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 232473896, + "bounds": { + "minlat": 40.8498372, + "minlon": -73.9525431, + "maxlat": 40.8515613, + "maxlon": -73.9435883 + }, + "nodes": [ + 2408221645, + 12067211111, + 12068564546, + 12067211112, + 12067211114, + 12068669165, + 12067211113, + 595462053 + ], + "geometry": [ + { "lat": 40.8515613, "lon": -73.9525431 }, + { "lat": 40.8503466, "lon": -73.9463624 }, + { "lat": 40.8503220, "lon": -73.9462318 }, + { "lat": 40.8502974, "lon": -73.9460971 }, + { "lat": 40.8500599, "lon": -73.9447530 }, + { "lat": 40.8500403, "lon": -73.9446457 }, + { "lat": 40.8500207, "lon": -73.9445400 }, + { "lat": 40.8498372, "lon": -73.9435883 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "Henry Hudson Parkway;West 178th Street|Henry Hudson Parkway;West 178th Street;none|none", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "name:ru": "Мост Джорджа Вашингтона (нижний уровень)", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "surface": "concrete", + "toll": "yes", + "turn:lanes": "none|through;slight_right|slight_right", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 232475713, + "bounds": { + "minlat": 40.8533173, + "minlon": -73.9617468, + "maxlat": 40.8535590, + "maxlon": -73.9616639 + }, + "nodes": [ + 2408237865, + 13754102638, + 2408237862 + ], + "geometry": [ + { "lat": 40.8533173, "lon": -73.9617468 }, + { "lat": 40.8534960, "lon": -73.9616855 }, + { "lat": 40.8535590, "lon": -73.9616639 } + ], + "tags": { + "access": "no", + "highway": "service", + "layer": "-1", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 232489968, + "bounds": { + "minlat": 40.8468334, + "minlon": -73.9083977, + "maxlat": 40.8469256, + "maxlon": -73.9082763 + }, + "nodes": [ + 12798385421, + 7823245720, + 42734838 + ], + "geometry": [ + { "lat": 40.8469256, "lon": -73.9083977 }, + { "lat": 40.8468760, "lon": -73.9083331 }, + { "lat": 40.8468334, "lon": -73.9082763 } + ], + "tags": { + "highway": "residential", + "name": "East 175th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "175th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 232489971, + "bounds": { + "minlat": 40.8471560, + "minlon": -73.9088421, + "maxlat": 40.8508433, + "maxlon": -73.9076281 + }, + "nodes": [ + 2408348778, + 11056025911, + 42735756, + 13000952101, + 42735759, + 13000952107, + 13037357727, + 42735763, + 13037357726, + 13037331580, + 42735766, + 12832574554, + 5527067365, + 12739101098, + 42735771 + ], + "geometry": [ + { "lat": 40.8471560, "lon": -73.9086571 }, + { "lat": 40.8472089, "lon": -73.9087396 }, + { "lat": 40.8472632, "lon": -73.9088421 }, + { "lat": 40.8479625, "lon": -73.9086081 }, + { "lat": 40.8480275, "lon": -73.9085863 }, + { "lat": 40.8480937, "lon": -73.9085635 }, + { "lat": 40.8487929, "lon": -73.9083229 }, + { "lat": 40.8488480, "lon": -73.9083040 }, + { "lat": 40.8489171, "lon": -73.9082795 }, + { "lat": 40.8496087, "lon": -73.9080344 }, + { "lat": 40.8496690, "lon": -73.9080130 }, + { "lat": 40.8497376, "lon": -73.9079905 }, + { "lat": 40.8503393, "lon": -73.9077933 }, + { "lat": 40.8507405, "lon": -73.9076632 }, + { "lat": 40.8508433, "lon": -73.9076281 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Morris Avenue", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 232489974, + "bounds": { + "minlat": 40.8463751, + "minlon": -73.9096749, + "maxlat": 40.8465755, + "maxlon": -73.9094859 + }, + "nodes": [ + 2408348768, + 12042617237, + 2408348763, + 3639998164 + ], + "geometry": [ + { "lat": 40.8465755, "lon": -73.9096749 }, + { "lat": 40.8465620, "lon": -73.9096580 }, + { "lat": 40.8465470, "lon": -73.9096419 }, + { "lat": 40.8463751, "lon": -73.9094859 } + ], + "tags": { + "highway": "residential", + "layer": "-2", + "name": "East 175th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "175th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 232490245, + "bounds": { + "minlat": 40.8448426, + "minlon": -73.9108953, + "maxlat": 40.8448977, + "maxlon": -73.9093794 + }, + "nodes": [ + 2408350737, + 12044638042, + 12044638043, + 2408350745, + 42735934, + 13040455477, + 12044638038, + 12044638041, + 12089600830, + 42735878 + ], + "geometry": [ + { "lat": 40.8448426, "lon": -73.9108953 }, + { "lat": 40.8448926, "lon": -73.9104370 }, + { "lat": 40.8448966, "lon": -73.9103705 }, + { "lat": 40.8448977, "lon": -73.9103288 }, + { "lat": 40.8448958, "lon": -73.9102744 }, + { "lat": 40.8448938, "lon": -73.9102156 }, + { "lat": 40.8448581, "lon": -73.9095122 }, + { "lat": 40.8448551, "lon": -73.9094726 }, + { "lat": 40.8448503, "lon": -73.9094282 }, + { "lat": 40.8448443, "lon": -73.9093794 } + ], + "tags": { + "highway": "residential", + "name": "East 174th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "174th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 232490246, + "bounds": { + "minlat": 40.8447552, + "minlon": -73.9116970, + "maxlat": 40.8448426, + "maxlon": -73.9108953 + }, + "nodes": [ + 2408350739, + 2408350737 + ], + "geometry": [ + { "lat": 40.8447552, "lon": -73.9116970 }, + { "lat": 40.8448426, "lon": -73.9108953 } + ], + "tags": { + "highway": "residential", + "layer": "-2", + "name": "East 174th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "174th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 232490501, + "bounds": { + "minlat": 40.8435996, + "minlon": -73.9114967, + "maxlat": 40.8438875, + "maxlon": -73.9058658 + }, + "nodes": [ + 2408350738, + 7823245713, + 6223504767, + 13068038759, + 42735931, + 13068038763, + 4951421786, + 13039036368, + 42735877, + 13039036370, + 42734852, + 12737767479, + 42754873, + 42747333, + 8499606013, + 7432208067, + 12737767468, + 42745087 + ], + "geometry": [ + { "lat": 40.8438875, "lon": -73.9114967 }, + { "lat": 40.8438838, "lon": -73.9114138 }, + { "lat": 40.8438802, "lon": -73.9113549 }, + { "lat": 40.8438292, "lon": -73.9104593 }, + { "lat": 40.8438240, "lon": -73.9103670 }, + { "lat": 40.8438200, "lon": -73.9102858 }, + { "lat": 40.8438057, "lon": -73.9099989 }, + { "lat": 40.8437854, "lon": -73.9095905 }, + { "lat": 40.8437796, "lon": -73.9094746 }, + { "lat": 40.8437734, "lon": -73.9093543 }, + { "lat": 40.8437330, "lon": -73.9085660 }, + { "lat": 40.8436915, "lon": -73.9077516 }, + { "lat": 40.8436872, "lon": -73.9076669 }, + { "lat": 40.8436445, "lon": -73.9067669 }, + { "lat": 40.8436323, "lon": -73.9065391 }, + { "lat": 40.8436228, "lon": -73.9063463 }, + { "lat": 40.8436034, "lon": -73.9059455 }, + { "lat": 40.8435996, "lon": -73.9058658 } + ], + "tags": { + "highway": "residential", + "name": "East 173rd Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "173rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 232490502, + "bounds": { + "minlat": 40.8437410, + "minlon": -73.9147517, + "maxlat": 40.8443455, + "maxlon": -73.9132731 + }, + "nodes": [ + 2408354091, + 13068079158, + 42748516, + 13068079168, + 13247540959, + 42736340 + ], + "geometry": [ + { "lat": 40.8437410, "lon": -73.9132731 }, + { "lat": 40.8439495, "lon": -73.9137855 }, + { "lat": 40.8439801, "lon": -73.9138607 }, + { "lat": 40.8440133, "lon": -73.9139416 }, + { "lat": 40.8442907, "lon": -73.9146180 }, + { "lat": 40.8443455, "lon": -73.9147517 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "East Mount Eden Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Eden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 232490503, + "bounds": { + "minlat": 40.8429733, + "minlon": -73.9109662, + "maxlat": 40.8431338, + "maxlon": -73.9077293 + }, + "nodes": [ + 2408354095, + 7605646535, + 7605646536, + 7605646530, + 2408354099, + 2408354100, + 6223504754, + 13067976169, + 2408354083, + 10126919635, + 2408354098 + ], + "geometry": [ + { "lat": 40.8429733, "lon": -73.9077293 }, + { "lat": 40.8429832, "lon": -73.9079283 }, + { "lat": 40.8429888, "lon": -73.9080502 }, + { "lat": 40.8429952, "lon": -73.9081693 }, + { "lat": 40.8430183, "lon": -73.9086302 }, + { "lat": 40.8430704, "lon": -73.9095380 }, + { "lat": 40.8431036, "lon": -73.9102859 }, + { "lat": 40.8431061, "lon": -73.9103413 }, + { "lat": 40.8431102, "lon": -73.9104331 }, + { "lat": 40.8431142, "lon": -73.9105248 }, + { "lat": 40.8431338, "lon": -73.9109662 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Mount Eden Parkway", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 232490504, + "bounds": { + "minlat": 40.8430827, + "minlon": -73.9121538, + "maxlat": 40.8431984, + "maxlon": -73.9119833 + }, + "nodes": [ + 2408354092, + 12044636980, + 12044636981, + 12044636982, + 12044636986, + 2408354088 + ], + "geometry": [ + { "lat": 40.8431984, "lon": -73.9121538 }, + { "lat": 40.8431841, "lon": -73.9121233 }, + { "lat": 40.8431689, "lon": -73.9120950 }, + { "lat": 40.8431523, "lon": -73.9120675 }, + { "lat": 40.8431315, "lon": -73.9120401 }, + { "lat": 40.8430827, "lon": -73.9119833 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Mount Eden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Eden", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 232490650, + "bounds": { + "minlat": 40.8406864, + "minlon": -73.9125048, + "maxlat": 40.8408829, + "maxlon": -73.9118169 + }, + "nodes": [ + 2408355536, + 12529489645, + 10034673502, + 3640062228 + ], + "geometry": [ + { "lat": 40.8408829, "lon": -73.9125048 }, + { "lat": 40.8408606, "lon": -73.9124292 }, + { "lat": 40.8408404, "lon": -73.9123618 }, + { "lat": 40.8406864, "lon": -73.9118169 } + ], + "tags": { + "highway": "residential", + "name": "East 172nd Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "172nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 232490960, + "bounds": { + "minlat": 40.8394023, + "minlon": -73.9121060, + "maxlat": 40.8428236, + "maxlon": -73.9109933 + }, + "nodes": [ + 13036568215, + 42763655, + 13036568221, + 13036981893, + 42748477, + 13036981900, + 2408355561, + 2408355556, + 12737767460, + 42781421 + ], + "geometry": [ + { "lat": 40.8394023, "lon": -73.9121060 }, + { "lat": 40.8394530, "lon": -73.9120790 }, + { "lat": 40.8395144, "lon": -73.9120475 }, + { "lat": 40.8405397, "lon": -73.9115460 }, + { "lat": 40.8406030, "lon": -73.9115150 }, + { "lat": 40.8406668, "lon": -73.9114862 }, + { "lat": 40.8413179, "lon": -73.9111921 }, + { "lat": 40.8416604, "lon": -73.9111032 }, + { "lat": 40.8427694, "lon": -73.9109984 }, + { "lat": 40.8428236, "lon": -73.9109933 } + ], + "tags": { + "highway": "residential", + "name": "Sheridan Avenue", + "name:etymology:wikidata": "Q355452", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sheridan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 232490961, + "bounds": { + "minlat": 40.8391692, + "minlon": -73.9153377, + "maxlat": 40.8393337, + "maxlon": -73.9151570 + }, + "nodes": [ + 2408359283, + 5762102235, + 2327276555 + ], + "geometry": [ + { "lat": 40.8393337, "lon": -73.9153377 }, + { "lat": 40.8392248, "lon": -73.9152201 }, + { "lat": 40.8391692, "lon": -73.9151570 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 232490962, + "bounds": { + "minlat": 40.8376193, + "minlon": -73.9113493, + "maxlat": 40.8379352, + "maxlon": -73.9108771 + }, + "nodes": [ + 2408359285, + 10297698218, + 13000975549, + 2408359297 + ], + "geometry": [ + { "lat": 40.8376193, "lon": -73.9108771 }, + { "lat": 40.8376824, "lon": -73.9109074 }, + { "lat": 40.8378842, "lon": -73.9112597 }, + { "lat": 40.8379352, "lon": -73.9113493 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 232490963, + "bounds": { + "minlat": 40.8378406, + "minlon": -73.9127899, + "maxlat": 40.8382538, + "maxlon": -73.9113940 + }, + "nodes": [ + 3557257813, + 5762102220, + 2408364035, + 2408364020, + 2408359300, + 2327276538, + 10647793403, + 42735861 + ], + "geometry": [ + { "lat": 40.8382538, "lon": -73.9127899 }, + { "lat": 40.8382252, "lon": -73.9127044 }, + { "lat": 40.8382050, "lon": -73.9126439 }, + { "lat": 40.8381326, "lon": -73.9123838 }, + { "lat": 40.8381137, "lon": -73.9123244 }, + { "lat": 40.8378406, "lon": -73.9116054 }, + { "lat": 40.8378452, "lon": -73.9115420 }, + { "lat": 40.8378603, "lon": -73.9113940 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 232491723, + "bounds": { + "minlat": 40.8392427, + "minlon": -73.9153377, + "maxlat": 40.8393337, + "maxlon": -73.9151086 + }, + "nodes": [ + 2408359283, + 5762102232, + 42739226 + ], + "geometry": [ + { "lat": 40.8393337, "lon": -73.9153377 }, + { "lat": 40.8392749, "lon": -73.9151891 }, + { "lat": 40.8392427, "lon": -73.9151086 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232491724, + "bounds": { + "minlat": 40.8390492, + "minlon": -73.9148614, + "maxlat": 40.8391493, + "maxlon": -73.9145183 + }, + "nodes": [ + 2408364022, + 2408364034, + 2408364036, + 2408364031 + ], + "geometry": [ + { "lat": 40.8390492, "lon": -73.9145183 }, + { "lat": 40.8390823, "lon": -73.9146103 }, + { "lat": 40.8391143, "lon": -73.9147274 }, + { "lat": 40.8391493, "lon": -73.9148614 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232491725, + "bounds": { + "minlat": 40.8378603, + "minlon": -73.9117610, + "maxlat": 40.8380022, + "maxlon": -73.9113940 + }, + "nodes": [ + 2408364029, + 13000992555, + 42735861 + ], + "geometry": [ + { "lat": 40.8380022, "lon": -73.9117610 }, + { "lat": 40.8379051, "lon": -73.9115100 }, + { "lat": 40.8378603, "lon": -73.9113940 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232491726, + "bounds": { + "minlat": 40.8389981, + "minlon": -73.9148614, + "maxlat": 40.8391493, + "maxlon": -73.9145555 + }, + "nodes": [ + 2408364031, + 2408364030, + 2408364025, + 2408364015 + ], + "geometry": [ + { "lat": 40.8391493, "lon": -73.9148614 }, + { "lat": 40.8390838, "lon": -73.9147540 }, + { "lat": 40.8390354, "lon": -73.9146554 }, + { "lat": 40.8389981, "lon": -73.9145555 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232491729, + "bounds": { + "minlat": 40.8380022, + "minlon": -73.9121603, + "maxlat": 40.8381296, + "maxlon": -73.9117610 + }, + "nodes": [ + 2408364027, + 2408364023, + 2408364016, + 2408364029 + ], + "geometry": [ + { "lat": 40.8381296, "lon": -73.9121603 }, + { "lat": 40.8380758, "lon": -73.9120195 }, + { "lat": 40.8380382, "lon": -73.9119108 }, + { "lat": 40.8380022, "lon": -73.9117610 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 232491730, + "bounds": { + "minlat": 40.8371232, + "minlon": -73.9106838, + "maxlat": 40.8375421, + "maxlon": -73.9096129 + }, + "nodes": [ + 2408359287, + 42739240, + 13031229904, + 13746493074, + 42739243 + ], + "geometry": [ + { "lat": 40.8375421, "lon": -73.9106838 }, + { "lat": 40.8375030, "lon": -73.9105950 }, + { "lat": 40.8374751, "lon": -73.9105278 }, + { "lat": 40.8371468, "lon": -73.9096798 }, + { "lat": 40.8371232, "lon": -73.9096129 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232491731, + "bounds": { + "minlat": 40.8381296, + "minlon": -73.9145555, + "maxlat": 40.8389981, + "maxlon": -73.9121603 + }, + "nodes": [ + 2408364015, + 3640074924, + 2408364027 + ], + "geometry": [ + { "lat": 40.8389981, "lon": -73.9145555 }, + { "lat": 40.8383477, "lon": -73.9128550 }, + { "lat": 40.8381296, "lon": -73.9121603 } + ], + "tags": { + "highway": "tertiary", + "layer": "-3", + "name": "East 170th Street", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 232491732, + "bounds": { + "minlat": 40.8381791, + "minlon": -73.9145183, + "maxlat": 40.8390492, + "maxlon": -73.9121281 + }, + "nodes": [ + 2408364033, + 3640074923, + 2408364022 + ], + "geometry": [ + { "lat": 40.8381791, "lon": -73.9121281 }, + { "lat": 40.8384035, "lon": -73.9128161 }, + { "lat": 40.8390492, "lon": -73.9145183 } + ], + "tags": { + "highway": "tertiary", + "layer": "-3", + "name": "East 170th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 232492268, + "bounds": { + "minlat": 40.8371134, + "minlon": -73.9145170, + "maxlat": 40.8374174, + "maxlon": -73.9137320 + }, + "nodes": [ + 42781415, + 13036556485, + 13534990451, + 12739350611 + ], + "geometry": [ + { "lat": 40.8371134, "lon": -73.9137320 }, + { "lat": 40.8371459, "lon": -73.9138165 }, + { "lat": 40.8373923, "lon": -73.9144522 }, + { "lat": 40.8374174, "lon": -73.9145170 } + ], + "tags": { + "highway": "residential", + "name": "Marcy Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 232492457, + "bounds": { + "minlat": 40.8394530, + "minlon": -73.9129613, + "maxlat": 40.8397517, + "maxlon": -73.9120790 + }, + "nodes": [ + 2408355559, + 12737767496, + 13535833502, + 13036536889, + 42763655 + ], + "geometry": [ + { "lat": 40.8397517, "lon": -73.9129613 }, + { "lat": 40.8397245, "lon": -73.9128781 }, + { "lat": 40.8397020, "lon": -73.9128091 }, + { "lat": 40.8394781, "lon": -73.9121523 }, + { "lat": 40.8394530, "lon": -73.9120790 } + ], + "tags": { + "highway": "residential", + "name": "East 171st Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "171st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 232493274, + "bounds": { + "minlat": 40.8339223, + "minlon": -73.9164560, + "maxlat": 40.8340892, + "maxlon": -73.9161115 + }, + "nodes": [ + 2408379354, + 2408394491, + 2408379358, + 2408379381, + 2408379350 + ], + "geometry": [ + { "lat": 40.8339223, "lon": -73.9161115 }, + { "lat": 40.8339689, "lon": -73.9162098 }, + { "lat": 40.8340142, "lon": -73.9163100 }, + { "lat": 40.8340496, "lon": -73.9163825 }, + { "lat": 40.8340892, "lon": -73.9164560 } + ], + "tags": { + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232493275, + "bounds": { + "minlat": 40.8340892, + "minlon": -73.9188148, + "maxlat": 40.8349291, + "maxlon": -73.9164560 + }, + "nodes": [ + 2408379350, + 2408379359, + 2408379346, + 2408379349 + ], + "geometry": [ + { "lat": 40.8340892, "lon": -73.9164560 }, + { "lat": 40.8341408, "lon": -73.9165621 }, + { "lat": 40.8341916, "lon": -73.9166800 }, + { "lat": 40.8349291, "lon": -73.9188148 } + ], + "tags": { + "highway": "tertiary", + "layer": "-3", + "name": "East 167th Street", + "oneway": "yes", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 232493276, + "bounds": { + "minlat": 40.8337594, + "minlon": -73.9167205, + "maxlat": 40.8340726, + "maxlon": -73.9159072 + }, + "nodes": [ + 3557257103, + 12697054959, + 2408393024, + 13534990433, + 2408379345, + 13003576382, + 2408379375 + ], + "geometry": [ + { "lat": 40.8340726, "lon": -73.9167205 }, + { "lat": 40.8340183, "lon": -73.9166279 }, + { "lat": 40.8340094, "lon": -73.9166090 }, + { "lat": 40.8339886, "lon": -73.9165637 }, + { "lat": 40.8339660, "lon": -73.9165065 }, + { "lat": 40.8337888, "lon": -73.9159991 }, + { "lat": 40.8337594, "lon": -73.9159072 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 167th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232493277, + "bounds": { + "minlat": 40.8351852, + "minlon": -73.9199110, + "maxlat": 40.8352623, + "maxlon": -73.9193882 + }, + "nodes": [ + 42733747, + 2408393028, + 2408379355 + ], + "geometry": [ + { "lat": 40.8351852, "lon": -73.9193882 }, + { "lat": 40.8352065, "lon": -73.9194942 }, + { "lat": 40.8352623, "lon": -73.9199110 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232493278, + "bounds": { + "minlat": 40.8338418, + "minlon": -73.9161115, + "maxlat": 40.8339223, + "maxlon": -73.9158610 + }, + "nodes": [ + 2408379354, + 2408379363, + 13003576385, + 2408379361 + ], + "geometry": [ + { "lat": 40.8339223, "lon": -73.9161115 }, + { "lat": 40.8338833, "lon": -73.9159935 }, + { "lat": 40.8338686, "lon": -73.9159467 }, + { "lat": 40.8338418, "lon": -73.9158610 } + ], + "tags": { + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232493279, + "bounds": { + "minlat": 40.8349291, + "minlon": -73.9191738, + "maxlat": 40.8350152, + "maxlon": -73.9188148 + }, + "nodes": [ + 2408379349, + 2408393011, + 2408393063, + 2408379367 + ], + "geometry": [ + { "lat": 40.8349291, "lon": -73.9188148 }, + { "lat": 40.8349586, "lon": -73.9189087 }, + { "lat": 40.8349870, "lon": -73.9190204 }, + { "lat": 40.8350152, "lon": -73.9191738 } + ], + "tags": { + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232493280, + "bounds": { + "minlat": 40.8309360, + "minlon": -73.9149802, + "maxlat": 40.8335883, + "maxlon": -73.9113797 + }, + "nodes": [ + 42755581, + 13031082335, + 13031182832, + 42735849, + 5762095680, + 8187805289, + 12038440350, + 42756651, + 12038440349, + 8187805301, + 12038440298, + 42743938, + 12038440296, + 13031211646, + 42759459, + 13031211643, + 12038379559, + 42746986 + ], + "geometry": [ + { "lat": 40.8335883, "lon": -73.9149802 }, + { "lat": 40.8335645, "lon": -73.9149093 }, + { "lat": 40.8333252, "lon": -73.9141960 }, + { "lat": 40.8332860, "lon": -73.9140790 }, + { "lat": 40.8331959, "lon": -73.9140120 }, + { "lat": 40.8331127, "lon": -73.9139664 }, + { "lat": 40.8323639, "lon": -73.9137146 }, + { "lat": 40.8322640, "lon": -73.9136810 }, + { "lat": 40.8321636, "lon": -73.9136435 }, + { "lat": 40.8313522, "lon": -73.9133683 }, + { "lat": 40.8313196, "lon": -73.9133385 }, + { "lat": 40.8312304, "lon": -73.9132570 }, + { "lat": 40.8311910, "lon": -73.9131417 }, + { "lat": 40.8309640, "lon": -73.9124770 }, + { "lat": 40.8309360, "lon": -73.9123950 }, + { "lat": 40.8309419, "lon": -73.9122998 }, + { "lat": 40.8309896, "lon": -73.9115357 }, + { "lat": 40.8309993, "lon": -73.9113797 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "lanes": "2", + "name": "East 167th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232493281, + "bounds": { + "minlat": 40.8339223, + "minlon": -73.9165147, + "maxlat": 40.8340452, + "maxlon": -73.9161115 + }, + "nodes": [ + 2408379344, + 2408379374, + 2408379378, + 2408379336, + 2408379354 + ], + "geometry": [ + { "lat": 40.8340452, "lon": -73.9165147 }, + { "lat": 40.8340161, "lon": -73.9164439 }, + { "lat": 40.8339843, "lon": -73.9163539 }, + { "lat": 40.8339562, "lon": -73.9162559 }, + { "lat": 40.8339223, "lon": -73.9161115 } + ], + "tags": { + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232493282, + "bounds": { + "minlat": 40.8351063, + "minlon": -73.9199110, + "maxlat": 40.8352623, + "maxlon": -73.9194349 + }, + "nodes": [ + 2408379355, + 12998540249, + 2408379376 + ], + "geometry": [ + { "lat": 40.8352623, "lon": -73.9199110 }, + { "lat": 40.8351385, "lon": -73.9195333 }, + { "lat": 40.8351063, "lon": -73.9194349 } + ], + "tags": { + "highway": "tertiary", + "name": "East 167th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232493283, + "bounds": { + "minlat": 40.8340452, + "minlon": -73.9188510, + "maxlat": 40.8348723, + "maxlon": -73.9165147 + }, + "nodes": [ + 2408379365, + 2408379371, + 2408379337, + 2408379344 + ], + "geometry": [ + { "lat": 40.8348723, "lon": -73.9188510 }, + { "lat": 40.8341345, "lon": -73.9167325 }, + { "lat": 40.8340971, "lon": -73.9166398 }, + { "lat": 40.8340452, "lon": -73.9165147 } + ], + "tags": { + "highway": "tertiary", + "layer": "-3", + "name": "East 167th Street", + "oneway": "yes", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 232493285, + "bounds": { + "minlat": 40.8348723, + "minlon": -73.9191738, + "maxlat": 40.8350152, + "maxlon": -73.9188510 + }, + "nodes": [ + 2408379367, + 2408393044, + 2408393022, + 2408379365 + ], + "geometry": [ + { "lat": 40.8350152, "lon": -73.9191738 }, + { "lat": 40.8349432, "lon": -73.9190298 }, + { "lat": 40.8348976, "lon": -73.9189194 }, + { "lat": 40.8348723, "lon": -73.9188510 } + ], + "tags": { + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232493286, + "bounds": { + "minlat": 40.8354120, + "minlon": -73.9162800, + "maxlat": 40.8357164, + "maxlon": -73.9153850 + }, + "nodes": [ + 2408379342, + 12739350613, + 6224283307, + 13038896157, + 42742517 + ], + "geometry": [ + { "lat": 40.8357164, "lon": -73.9162800 }, + { "lat": 40.8356890, "lon": -73.9162007 }, + { "lat": 40.8356656, "lon": -73.9161318 }, + { "lat": 40.8354456, "lon": -73.9154829 }, + { "lat": 40.8354120, "lon": -73.9153850 } + ], + "tags": { + "highway": "residential", + "name": "East 168th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 232493287, + "bounds": { + "minlat": 40.8339107, + "minlon": -73.9174596, + "maxlat": 40.8345112, + "maxlon": -73.9158196 + }, + "nodes": [ + 42731643, + 13003576388, + 2408379360, + 2408379341, + 13534990434, + 2408379340, + 2408379368, + 5762095678, + 3557257104, + 2408393026, + 2408393018, + 10034673506, + 5762095675, + 2408379352 + ], + "geometry": [ + { "lat": 40.8339107, "lon": -73.9158196 }, + { "lat": 40.8339419, "lon": -73.9159043 }, + { "lat": 40.8340347, "lon": -73.9161737 }, + { "lat": 40.8340588, "lon": -73.9162371 }, + { "lat": 40.8340850, "lon": -73.9162957 }, + { "lat": 40.8341159, "lon": -73.9163554 }, + { "lat": 40.8341470, "lon": -73.9164106 }, + { "lat": 40.8341778, "lon": -73.9164736 }, + { "lat": 40.8342147, "lon": -73.9165744 }, + { "lat": 40.8342780, "lon": -73.9167598 }, + { "lat": 40.8344574, "lon": -73.9173078 }, + { "lat": 40.8344682, "lon": -73.9173388 }, + { "lat": 40.8344842, "lon": -73.9173822 }, + { "lat": 40.8345112, "lon": -73.9174596 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 167th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232494724, + "bounds": { + "minlat": 40.8326080, + "minlon": -73.9188418, + "maxlat": 40.8330228, + "maxlon": -73.9176090 + }, + "nodes": [ + 42747568, + 12697054967, + 42747564, + 13534990419, + 12739350614, + 2408393069 + ], + "geometry": [ + { "lat": 40.8326080, "lon": -73.9176090 }, + { "lat": 40.8326348, "lon": -73.9176881 }, + { "lat": 40.8328200, "lon": -73.9182405 }, + { "lat": 40.8329862, "lon": -73.9187294 }, + { "lat": 40.8329986, "lon": -73.9187660 }, + { "lat": 40.8330228, "lon": -73.9188418 } + ], + "tags": { + "highway": "residential", + "name": "McClellan Street", + "name:etymology:wikidata": "Q310192", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mc Clellan", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232498579, + "bounds": { + "minlat": 40.8299800, + "minlon": -73.9196722, + "maxlat": 40.8318835, + "maxlon": -73.9139880 + }, + "nodes": [ + 2408438456, + 12739350615, + 13534990404, + 13036753058, + 42767109, + 13036753055, + 12697054968, + 42768828, + 12697054961, + 5487840273, + 13018326320, + 42731634, + 13018326327, + 13031082355, + 42755574, + 13038939107, + 12038440325, + 42735842, + 12038440135, + 12038478816, + 42756648, + 12038478819, + 12038440249, + 42743936 + ], + "geometry": [ + { "lat": 40.8318835, "lon": -73.9196722 }, + { "lat": 40.8318569, "lon": -73.9195964 }, + { "lat": 40.8318346, "lon": -73.9195300 }, + { "lat": 40.8316590, "lon": -73.9190084 }, + { "lat": 40.8316360, "lon": -73.9189401 }, + { "lat": 40.8316131, "lon": -73.9188718 }, + { "lat": 40.8314518, "lon": -73.9183921 }, + { "lat": 40.8314220, "lon": -73.9183070 }, + { "lat": 40.8313986, "lon": -73.9182414 }, + { "lat": 40.8312613, "lon": -73.9178330 }, + { "lat": 40.8311571, "lon": -73.9175259 }, + { "lat": 40.8311300, "lon": -73.9174460 }, + { "lat": 40.8311065, "lon": -73.9173768 }, + { "lat": 40.8308668, "lon": -73.9166751 }, + { "lat": 40.8308390, "lon": -73.9165910 }, + { "lat": 40.8308167, "lon": -73.9165253 }, + { "lat": 40.8305711, "lon": -73.9158022 }, + { "lat": 40.8305360, "lon": -73.9156990 }, + { "lat": 40.8305024, "lon": -73.9155955 }, + { "lat": 40.8302883, "lon": -73.9149361 }, + { "lat": 40.8302610, "lon": -73.9148520 }, + { "lat": 40.8302364, "lon": -73.9147764 }, + { "lat": 40.8300075, "lon": -73.9140726 }, + { "lat": 40.8299800, "lon": -73.9139880 } + ], + "tags": { + "highway": "residential", + "name": "East 166th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "166th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 232499157, + "bounds": { + "minlat": 40.8291144, + "minlon": -73.9209906, + "maxlat": 40.8295672, + "maxlon": -73.9196425 + }, + "nodes": [ + 2408446176, + 12739350619, + 13534912291, + 10034673417, + 12697054972, + 2829127625 + ], + "geometry": [ + { "lat": 40.8295672, "lon": -73.9209906 }, + { "lat": 40.8295409, "lon": -73.9209119 }, + { "lat": 40.8295134, "lon": -73.9208302 }, + { "lat": 40.8291609, "lon": -73.9197809 }, + { "lat": 40.8291409, "lon": -73.9197212 }, + { "lat": 40.8291144, "lon": -73.9196425 } + ], + "tags": { + "highway": "residential", + "name": "East 164th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "164th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 232499159, + "bounds": { + "minlat": 40.8276672, + "minlon": -73.9222778, + "maxlat": 40.8303891, + "maxlon": -73.9207468 + }, + "nodes": [ + 2408446178, + 2408446198, + 13534912289, + 10126985498, + 10126973901, + 13534912290, + 2408446202, + 2408446196, + 13533563286, + 10126985449, + 10126985437, + 12162740316, + 10126985421, + 10126985424 + ], + "geometry": [ + { "lat": 40.8303891, "lon": -73.9207468 }, + { "lat": 40.8301769, "lon": -73.9209260 }, + { "lat": 40.8297342, "lon": -73.9211699 }, + { "lat": 40.8297080, "lon": -73.9211845 }, + { "lat": 40.8295819, "lon": -73.9212548 }, + { "lat": 40.8290027, "lon": -73.9215777 }, + { "lat": 40.8289093, "lon": -73.9216287 }, + { "lat": 40.8288287, "lon": -73.9216704 }, + { "lat": 40.8287021, "lon": -73.9217360 }, + { "lat": 40.8286712, "lon": -73.9217510 }, + { "lat": 40.8285317, "lon": -73.9218201 }, + { "lat": 40.8278048, "lon": -73.9221789 }, + { "lat": 40.8277765, "lon": -73.9221993 }, + { "lat": 40.8276672, "lon": -73.9222778 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 232499160, + "bounds": { + "minlat": 40.8272501, + "minlon": -73.9215668, + "maxlat": 40.8285430, + "maxlon": -73.9175332 + }, + "nodes": [ + 2408446151, + 12739350622, + 12697054973, + 42739694, + 12697054965, + 12038479044, + 42731625, + 12038479046, + 13033466777, + 42739700, + 13033466783, + 12038479087, + 42735827 + ], + "geometry": [ + { "lat": 40.8285430, "lon": -73.9215668 }, + { "lat": 40.8285150, "lon": -73.9214810 }, + { "lat": 40.8281280, "lon": -73.9202875 }, + { "lat": 40.8281000, "lon": -73.9202010 }, + { "lat": 40.8280720, "lon": -73.9201131 }, + { "lat": 40.8278533, "lon": -73.9194250 }, + { "lat": 40.8278250, "lon": -73.9193360 }, + { "lat": 40.8278012, "lon": -73.9192616 }, + { "lat": 40.8275786, "lon": -73.9185656 }, + { "lat": 40.8275470, "lon": -73.9184680 }, + { "lat": 40.8275227, "lon": -73.9183915 }, + { "lat": 40.8272845, "lon": -73.9176415 }, + { "lat": 40.8272501, "lon": -73.9175332 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 163rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 232499162, + "bounds": { + "minlat": 40.8272110, + "minlon": -73.9220947, + "maxlat": 40.8276798, + "maxlon": -73.9206940 + }, + "nodes": [ + 2408446187, + 12162740314, + 12697054975, + 12697054974, + 42732911 + ], + "geometry": [ + { "lat": 40.8276798, "lon": -73.9220947 }, + { "lat": 40.8276375, "lon": -73.9219637 }, + { "lat": 40.8272530, "lon": -73.9208191 }, + { "lat": 40.8272410, "lon": -73.9207834 }, + { "lat": 40.8272110, "lon": -73.9206940 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 162nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "162nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 232499468, + "bounds": { + "minlat": 40.8267602, + "minlon": -73.9227803, + "maxlat": 40.8269746, + "maxlon": -73.9226586 + }, + "nodes": [ + 2408446206, + 12162740301, + 2408448900 + ], + "geometry": [ + { "lat": 40.8269746, "lon": -73.9226586 }, + { "lat": 40.8268162, "lon": -73.9227485 }, + { "lat": 40.8267602, "lon": -73.9227803 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "through|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 232499470, + "bounds": { + "minlat": 40.8351063, + "minlon": -73.9194349, + "maxlat": 40.8351852, + "maxlon": -73.9193882 + }, + "nodes": [ + 42733747, + 2408379376 + ], + "geometry": [ + { "lat": 40.8351852, "lon": -73.9193882 }, + { "lat": 40.8351063, "lon": -73.9194349 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "name": "Walton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 232499473, + "bounds": { + "minlat": 40.8262423, + "minlon": -73.9212145, + "maxlat": 40.8263248, + "maxlon": -73.9207339 + }, + "nodes": [ + 2408448917, + 5762096233, + 13267216288, + 13267216287, + 13267216289 + ], + "geometry": [ + { "lat": 40.8263245, "lon": -73.9212145 }, + { "lat": 40.8263248, "lon": -73.9211017 }, + { "lat": 40.8263159, "lon": -73.9209972 }, + { "lat": 40.8262915, "lon": -73.9208939 }, + { "lat": 40.8262423, "lon": -73.9207339 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 232499474, + "bounds": { + "minlat": 40.8275127, + "minlon": -73.9249606, + "maxlat": 40.8303497, + "maxlon": -73.9232897 + }, + "nodes": [ + 2411416838, + 2408448909, + 9910729412, + 42732985, + 13039060067, + 42734173 + ], + "geometry": [ + { "lat": 40.8275127, "lon": -73.9249606 }, + { "lat": 40.8276692, "lon": -73.9248693 }, + { "lat": 40.8277391, "lon": -73.9248260 }, + { "lat": 40.8282699, "lon": -73.9245122 }, + { "lat": 40.8302952, "lon": -73.9233217 }, + { "lat": 40.8303497, "lon": -73.9232897 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Gerard Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 232499477, + "bounds": { + "minlat": 40.8207401, + "minlon": -73.9261002, + "maxlat": 40.8211610, + "maxlon": -73.9256737 + }, + "nodes": [ + 12162740238, + 2409018622, + 2409018663, + 2409018624, + 10133486270, + 2408448891 + ], + "geometry": [ + { "lat": 40.8207401, "lon": -73.9261002 }, + { "lat": 40.8207647, "lon": -73.9260754 }, + { "lat": 40.8208076, "lon": -73.9260308 }, + { "lat": 40.8210577, "lon": -73.9257736 }, + { "lat": 40.8210948, "lon": -73.9257367 }, + { "lat": 40.8211610, "lon": -73.9256737 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 232499478, + "bounds": { + "minlat": 40.8202676, + "minlon": -73.9264167, + "maxlat": 40.8206293, + "maxlon": -73.9262011 + }, + "nodes": [ + 2408448923, + 2408448894, + 12162740236, + 2408448892 + ], + "geometry": [ + { "lat": 40.8202676, "lon": -73.9264167 }, + { "lat": 40.8204947, "lon": -73.9262917 }, + { "lat": 40.8205486, "lon": -73.9262579 }, + { "lat": 40.8206293, "lon": -73.9262011 } + ], + "tags": { + "bridge": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 232551789, + "bounds": { + "minlat": 40.8165261, + "minlon": -73.9281396, + "maxlat": 40.8185494, + "maxlon": -73.9272357 + }, + "nodes": [ + 2408448893, + 12162740205, + 2409012290, + 12162740206, + 2409012295, + 12162740208, + 9903127453, + 2408448905 + ], + "geometry": [ + { "lat": 40.8165261, "lon": -73.9281396 }, + { "lat": 40.8165943, "lon": -73.9281138 }, + { "lat": 40.8170207, "lon": -73.9279528 }, + { "lat": 40.8171139, "lon": -73.9279144 }, + { "lat": 40.8172107, "lon": -73.9278709 }, + { "lat": 40.8184061, "lon": -73.9273057 }, + { "lat": 40.8184462, "lon": -73.9272868 }, + { "lat": 40.8185494, "lon": -73.9272357 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 232557102, + "bounds": { + "minlat": 40.8196184, + "minlon": -73.9267336, + "maxlat": 40.8200259, + "maxlon": -73.9265374 + }, + "nodes": [ + 4207892893, + 12162740221, + 12162740229, + 2409018665 + ], + "geometry": [ + { "lat": 40.8196184, "lon": -73.9267336 }, + { "lat": 40.8198832, "lon": -73.9266038 }, + { "lat": 40.8199653, "lon": -73.9265656 }, + { "lat": 40.8200259, "lon": -73.9265374 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 232558389, + "bounds": { + "minlat": 40.8280509, + "minlon": -73.9219245, + "maxlat": 40.8303891, + "maxlon": -73.9207468 + }, + "nodes": [ + 2408446186, + 13533563287, + 10126985436, + 10126985448, + 2408446185, + 2408446166, + 13534912286, + 13534912287, + 10126973900, + 10126985497, + 2408446188, + 2408446178 + ], + "geometry": [ + { "lat": 40.8280509, "lon": -73.9219245 }, + { "lat": 40.8284644, "lon": -73.9217314 }, + { "lat": 40.8284969, "lon": -73.9217164 }, + { "lat": 40.8286374, "lon": -73.9216470 }, + { "lat": 40.8288390, "lon": -73.9215501 }, + { "lat": 40.8289374, "lon": -73.9215002 }, + { "lat": 40.8290653, "lon": -73.9214308 }, + { "lat": 40.8295209, "lon": -73.9211726 }, + { "lat": 40.8295496, "lon": -73.9211567 }, + { "lat": 40.8296756, "lon": -73.9210870 }, + { "lat": 40.8301496, "lon": -73.9208250 }, + { "lat": 40.8303891, "lon": -73.9207468 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 232795311, + "bounds": { + "minlat": 40.8262820, + "minlon": -73.9208707, + "maxlat": 40.8263316, + "maxlon": -73.9207181 + }, + "nodes": [ + 7029503713, + 2408448918 + ], + "geometry": [ + { "lat": 40.8262820, "lon": -73.9207181 }, + { "lat": 40.8263316, "lon": -73.9208707 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 232795312, + "bounds": { + "minlat": 40.8291127, + "minlon": -73.9288861, + "maxlat": 40.8291332, + "maxlon": -73.9288476 + }, + "nodes": [ + 2411145338, + 595776466 + ], + "geometry": [ + { "lat": 40.8291332, "lon": -73.9288476 }, + { "lat": 40.8291127, "lon": -73.9288861 } + ], + "tags": { + "bicycle": "designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Macombs Dam Bridge", + "name:etymology:wikidata": "Q6724819", + "oneway": "no", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs Dam", + "tiger:name_type": "Brg" + } +}, +{ + "type": "way", + "id": 232795315, + "bounds": { + "minlat": 40.8282039, + "minlon": -73.9274890, + "maxlat": 40.8285454, + "maxlon": -73.9265633 + }, + "nodes": [ + 2411145325, + 7620717839, + 7620717836, + 2411416839, + 7620717829, + 12163643882, + 1932829832 + ], + "geometry": [ + { "lat": 40.8282039, "lon": -73.9265633 }, + { "lat": 40.8282765, "lon": -73.9267452 }, + { "lat": 40.8283366, "lon": -73.9269386 }, + { "lat": 40.8284144, "lon": -73.9271926 }, + { "lat": 40.8284303, "lon": -73.9272331 }, + { "lat": 40.8284564, "lon": -73.9272968 }, + { "lat": 40.8285454, "lon": -73.9274890 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 232795316, + "bounds": { + "minlat": 40.8291332, + "minlon": -73.9288476, + "maxlat": 40.8292383, + "maxlon": -73.9286756 + }, + "nodes": [ + 2411145317, + 12163643875, + 2411145338 + ], + "geometry": [ + { "lat": 40.8292383, "lon": -73.9286756 }, + { "lat": 40.8292231, "lon": -73.9287004 }, + { "lat": 40.8291332, "lon": -73.9288476 } + ], + "tags": { + "bicycle": "designated", + "bridge": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "layer": "1", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Macombs Dam Bridge", + "name:etymology:wikidata": "Q6724819", + "oneway": "no", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs Dam", + "tiger:name_type": "Brg" + } +}, +{ + "type": "way", + "id": 232795317, + "bounds": { + "minlat": 40.8283582, + "minlon": -73.9309943, + "maxlat": 40.8290282, + "maxlon": -73.9290332 + }, + "nodes": [ + 9155906290, + 2411145315, + 2609934078, + 2609934074, + 9910738452, + 9166314607, + 3991397145, + 595776468, + 9910738451, + 9166314606, + 9166314605, + 595776469, + 9166314604, + 9910738450, + 8700471202, + 9910769964 + ], + "geometry": [ + { "lat": 40.8290282, "lon": -73.9290332 }, + { "lat": 40.8289085, "lon": -73.9292588 }, + { "lat": 40.8288568, "lon": -73.9293631 }, + { "lat": 40.8288251, "lon": -73.9294328 }, + { "lat": 40.8287907, "lon": -73.9295124 }, + { "lat": 40.8287457, "lon": -73.9296213 }, + { "lat": 40.8287004, "lon": -73.9297322 }, + { "lat": 40.8286553, "lon": -73.9298492 }, + { "lat": 40.8286085, "lon": -73.9299858 }, + { "lat": 40.8285659, "lon": -73.9301161 }, + { "lat": 40.8285235, "lon": -73.9302483 }, + { "lat": 40.8284838, "lon": -73.9303874 }, + { "lat": 40.8284536, "lon": -73.9305111 }, + { "lat": 40.8284281, "lon": -73.9306207 }, + { "lat": 40.8284018, "lon": -73.9307498 }, + { "lat": 40.8283582, "lon": -73.9309943 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "ele": "2", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "layer": "2", + "maxspeed": "25 mph", + "name": "Macombs Dam Bridge", + "name:etymology:wikidata": "Q6724819", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs Dam", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 232796076, + "bounds": { + "minlat": 40.8270302, + "minlon": -73.9239907, + "maxlat": 40.8273868, + "maxlon": -73.9228486 + }, + "nodes": [ + 2408446193, + 5762096226, + 12163704735, + 12163704736, + 2821981624, + 12163704723, + 9910729406, + 2408448898 + ], + "geometry": [ + { "lat": 40.8270302, "lon": -73.9228486 }, + { "lat": 40.8270528, "lon": -73.9229286 }, + { "lat": 40.8270838, "lon": -73.9230323 }, + { "lat": 40.8271212, "lon": -73.9231487 }, + { "lat": 40.8271900, "lon": -73.9233668 }, + { "lat": 40.8273280, "lon": -73.9238043 }, + { "lat": 40.8273497, "lon": -73.9238725 }, + { "lat": 40.8273868, "lon": -73.9239907 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paved", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 232824512, + "bounds": { + "minlat": 40.8276612, + "minlon": -73.9271344, + "maxlat": 40.8280400, + "maxlon": -73.9260307 + }, + "nodes": [ + 2411398992, + 9910738421, + 2411398990, + 9910738419, + 9166334415, + 9910738420, + 2411398989, + 12163643896, + 9910738418, + 2411399009 + ], + "geometry": [ + { "lat": 40.8280400, "lon": -73.9271344 }, + { "lat": 40.8280042, "lon": -73.9270749 }, + { "lat": 40.8279677, "lon": -73.9270101 }, + { "lat": 40.8279435, "lon": -73.9269581 }, + { "lat": 40.8279192, "lon": -73.9268976 }, + { "lat": 40.8279006, "lon": -73.9268426 }, + { "lat": 40.8278820, "lon": -73.9267785 }, + { "lat": 40.8277494, "lon": -73.9263286 }, + { "lat": 40.8277223, "lon": -73.9262366 }, + { "lat": 40.8276612, "lon": -73.9260307 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 232824513, + "bounds": { + "minlat": 40.8280400, + "minlon": -73.9278920, + "maxlat": 40.8284966, + "maxlon": -73.9271344 + }, + "nodes": [ + 12163643874, + 7620717841, + 1932829831, + 2411398992 + ], + "geometry": [ + { "lat": 40.8284966, "lon": -73.9278920 }, + { "lat": 40.8283013, "lon": -73.9275740 }, + { "lat": 40.8282064, "lon": -73.9274193 }, + { "lat": 40.8280400, "lon": -73.9271344 } + ], + "tags": { + "bus:lanes": "designated|", + "cycleway:left": "share_busway", + "highway": "secondary", + "incline": "down", + "lanes": "2", + "lanes:bus": "1", + "lanes:bus:conditional": "Mo-Fr 07:00-20:00", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "none|through" + } +}, +{ + "type": "way", + "id": 232827612, + "bounds": { + "minlat": 40.8275127, + "minlon": -73.9255419, + "maxlat": 40.8277036, + "maxlon": -73.9249606 + }, + "nodes": [ + 2411416838, + 9910729408, + 12163704703, + 8913307799 + ], + "geometry": [ + { "lat": 40.8275127, "lon": -73.9249606 }, + { "lat": 40.8275407, "lon": -73.9250515 }, + { "lat": 40.8275581, "lon": -73.9251169 }, + { "lat": 40.8277036, "lon": -73.9255419 } + ], + "tags": { + "busway:left": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 233561247, + "bounds": { + "minlat": 40.8498785, + "minlon": -73.9449360, + "maxlat": 40.8507151, + "maxlon": -73.9431424 + }, + "nodes": [ + 60916849, + 7908594157, + 7908594163, + 7908594169, + 2419272425, + 2419272421, + 2419272419, + 2419272420, + 7908594147, + 7908594141, + 7908594135, + 2419272429, + 7908594125, + 7908594119, + 746718807, + 7908594130, + 2419272424, + 60928074, + 7044189234, + 60928075, + 2419272423, + 7908594121, + 60928076, + 7908594171, + 13105274171, + 7908594165, + 60928077, + 7908594159, + 60928078, + 7908594153, + 42458670 + ], + "geometry": [ + { "lat": 40.8502609, "lon": -73.9431424 }, + { "lat": 40.8503176, "lon": -73.9431431 }, + { "lat": 40.8503621, "lon": -73.9431478 }, + { "lat": 40.8504087, "lon": -73.9431586 }, + { "lat": 40.8504539, "lon": -73.9431747 }, + { "lat": 40.8504932, "lon": -73.9431931 }, + { "lat": 40.8505308, "lon": -73.9432162 }, + { "lat": 40.8505651, "lon": -73.9432431 }, + { "lat": 40.8505997, "lon": -73.9432762 }, + { "lat": 40.8506278, "lon": -73.9433098 }, + { "lat": 40.8506506, "lon": -73.9433463 }, + { "lat": 40.8506730, "lon": -73.9433890 }, + { "lat": 40.8506967, "lon": -73.9434492 }, + { "lat": 40.8507102, "lon": -73.9435075 }, + { "lat": 40.8507151, "lon": -73.9435668 }, + { "lat": 40.8507124, "lon": -73.9436372 }, + { "lat": 40.8507028, "lon": -73.9437097 }, + { "lat": 40.8506836, "lon": -73.9438038 }, + { "lat": 40.8506620, "lon": -73.9438969 }, + { "lat": 40.8506417, "lon": -73.9439780 }, + { "lat": 40.8506196, "lon": -73.9440527 }, + { "lat": 40.8505905, "lon": -73.9441295 }, + { "lat": 40.8505567, "lon": -73.9442008 }, + { "lat": 40.8505165, "lon": -73.9442718 }, + { "lat": 40.8505070, "lon": -73.9442861 }, + { "lat": 40.8504717, "lon": -73.9443390 }, + { "lat": 40.8504203, "lon": -73.9444080 }, + { "lat": 40.8503592, "lon": -73.9444819 }, + { "lat": 40.8503012, "lon": -73.9445464 }, + { "lat": 40.8502404, "lon": -73.9446063 }, + { "lat": 40.8498785, "lon": -73.9449360 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 233893025, + "bounds": { + "minlat": 40.7608095, + "minlon": -73.9391559, + "maxlat": 40.7642579, + "maxlon": -73.9370141 + }, + "nodes": [ + 42824085, + 6452525958, + 7713828599, + 6452542371, + 42926487, + 6452542372, + 7543443848, + 3569402502, + 42926489 + ], + "geometry": [ + { "lat": 40.7642579, "lon": -73.9370141 }, + { "lat": 40.7641825, "lon": -73.9370604 }, + { "lat": 40.7641110, "lon": -73.9371042 }, + { "lat": 40.7626215, "lon": -73.9380176 }, + { "lat": 40.7625376, "lon": -73.9380691 }, + { "lat": 40.7624601, "lon": -73.9381172 }, + { "lat": 40.7611128, "lon": -73.9389523 }, + { "lat": 40.7608883, "lon": -73.9390997 }, + { "lat": 40.7608095, "lon": -73.9391559 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 234053944, + "bounds": { + "minlat": 40.7996063, + "minlon": -73.9626120, + "maxlat": 40.7999222, + "maxlon": -73.9623828 + }, + "nodes": [ + 42432744, + 10166004042, + 4205830394 + ], + "geometry": [ + { "lat": 40.7999222, "lon": -73.9623828 }, + { "lat": 40.7998673, "lon": -73.9624226 }, + { "lat": 40.7996063, "lon": -73.9626120 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 234241518, + "bounds": { + "minlat": 40.7736274, + "minlon": -73.9710901, + "maxlat": 40.7738653, + "maxlon": -73.9710077 + }, + "nodes": [ + 2425160819, + 2425178168 + ], + "geometry": [ + { "lat": 40.7736274, "lon": -73.9710901 }, + { "lat": 40.7738653, "lon": -73.9710077 } + ], + "tags": { + "highway": "pedestrian", + "layer": "-1", + "lit": "yes", + "name": "Bethesda Arcade", + "name_1": "Literary Walk", + "surface": "paving_stones", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 234489459, + "bounds": { + "minlat": 40.7479993, + "minlon": -74.0078415, + "maxlat": 40.7481917, + "maxlon": -74.0076380 + }, + "nodes": [ + 12161232243, + 246579753 + ], + "geometry": [ + { "lat": 40.7481917, "lon": -74.0076380 }, + { "lat": 40.7479993, "lon": -74.0078415 } + ], + "tags": { + "bicycle": "no", + "change": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk": "no", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 234725483, + "bounds": { + "minlat": 40.8214914, + "minlon": -73.9499097, + "maxlat": 40.8220613, + "maxlon": -73.9485390 + }, + "nodes": [ + 42427735, + 10743755759, + 8835729537, + 42433797 + ], + "geometry": [ + { "lat": 40.8214914, "lon": -73.9485390 }, + { "lat": 40.8215285, "lon": -73.9486294 }, + { "lat": 40.8220141, "lon": -73.9497936 }, + { "lat": 40.8220613, "lon": -73.9499097 } + ], + "tags": { + "highway": "residential", + "name": "West 140th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 234726492, + "bounds": { + "minlat": 40.8226821, + "minlon": -73.9543470, + "maxlat": 40.8247390, + "maxlon": -73.9494564 + }, + "nodes": [ + 42442613, + 10172767661, + 9279073320, + 42447404, + 9279073324, + 10170641713, + 561035357, + 42428919, + 10170703018, + 2504979973, + 10743657289, + 42441951 + ], + "geometry": [ + { "lat": 40.8226821, "lon": -73.9494564 }, + { "lat": 40.8227418, "lon": -73.9495985 }, + { "lat": 40.8230872, "lon": -73.9504200 }, + { "lat": 40.8231195, "lon": -73.9504964 }, + { "lat": 40.8231639, "lon": -73.9506030 }, + { "lat": 40.8238098, "lon": -73.9521206 }, + { "lat": 40.8238532, "lon": -73.9522227 }, + { "lat": 40.8239367, "lon": -73.9524172 }, + { "lat": 40.8239688, "lon": -73.9524945 }, + { "lat": 40.8247045, "lon": -73.9542651 }, + { "lat": 40.8247188, "lon": -73.9542990 }, + { "lat": 40.8247390, "lon": -73.9543470 } + ], + "tags": { + "highway": "residential", + "incline": "down", + "name": "West 141st Street", + "name_1": "West 141 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 234726497, + "bounds": { + "minlat": 40.8212637, + "minlon": -73.9494564, + "maxlat": 40.8226821, + "maxlon": -73.9460787 + }, + "nodes": [ + 42432961, + 7784459413, + 42447389, + 8736432124, + 8835657112, + 42447399, + 10743755834, + 10172767658, + 42442613 + ], + "geometry": [ + { "lat": 40.8212637, "lon": -73.9460787 }, + { "lat": 40.8213224, "lon": -73.9462208 }, + { "lat": 40.8217502, "lon": -73.9472408 }, + { "lat": 40.8218603, "lon": -73.9475026 }, + { "lat": 40.8220688, "lon": -73.9479912 }, + { "lat": 40.8221058, "lon": -73.9480802 }, + { "lat": 40.8221433, "lon": -73.9481698 }, + { "lat": 40.8226299, "lon": -73.9493321 }, + { "lat": 40.8226821, "lon": -73.9494564 } + ], + "tags": { + "highway": "tertiary", + "name": "West 141st Street", + "name_1": "West 141 Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 236798493, + "bounds": { + "minlat": 40.7758327, + "minlon": -73.9102713, + "maxlat": 40.7772315, + "maxlon": -73.9085380 + }, + "nodes": [ + 2447703181, + 5867036822, + 7722294146, + 9776116457, + 42874612 + ], + "geometry": [ + { "lat": 40.7772315, "lon": -73.9085380 }, + { "lat": 40.7770187, "lon": -73.9088017 }, + { "lat": 40.7759364, "lon": -73.9101428 }, + { "lat": 40.7758967, "lon": -73.9101920 }, + { "lat": 40.7758327, "lon": -73.9102713 } + ], + "tags": { + "highway": "residential", + "name": "32nd Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 237845869, + "bounds": { + "minlat": 40.7767417, + "minlon": -73.9250540, + "maxlat": 40.7776189, + "maxlon": -73.9237504 + }, + "nodes": [ + 2302054329, + 2457084044, + 3133611033, + 2302054328, + 3133611032, + 5487961180, + 2457084043, + 2457084041, + 2457084042, + 2302054327, + 2457084046, + 5487961184, + 2302054326, + 2457084050, + 2457084053, + 2302054331, + 2457084049, + 5487961181, + 2457084047, + 5487961179, + 2457084048, + 2457084054, + 2302054330, + 2457084045, + 2457084055, + 2862420475, + 2302054329 + ], + "geometry": [ + { "lat": 40.7769490, "lon": -73.9239530 }, + { "lat": 40.7770526, "lon": -73.9238457 }, + { "lat": 40.7771328, "lon": -73.9237894 }, + { "lat": 40.7772164, "lon": -73.9237504 }, + { "lat": 40.7773065, "lon": -73.9237599 }, + { "lat": 40.7773705, "lon": -73.9237766 }, + { "lat": 40.7773918, "lon": -73.9237822 }, + { "lat": 40.7775009, "lon": -73.9238882 }, + { "lat": 40.7775999, "lon": -73.9240729 }, + { "lat": 40.7776189, "lon": -73.9242523 }, + { "lat": 40.7776051, "lon": -73.9244476 }, + { "lat": 40.7775791, "lon": -73.9245321 }, + { "lat": 40.7775449, "lon": -73.9246430 }, + { "lat": 40.7774331, "lon": -73.9248451 }, + { "lat": 40.7773420, "lon": -73.9249564 }, + { "lat": 40.7771861, "lon": -73.9250352 }, + { "lat": 40.7770754, "lon": -73.9250540 }, + { "lat": 40.7770009, "lon": -73.9250236 }, + { "lat": 40.7769086, "lon": -73.9249859 }, + { "lat": 40.7768591, "lon": -73.9249219 }, + { "lat": 40.7768226, "lon": -73.9248746 }, + { "lat": 40.7767589, "lon": -73.9247066 }, + { "lat": 40.7767417, "lon": -73.9245385 }, + { "lat": 40.7767521, "lon": -73.9243227 }, + { "lat": 40.7767968, "lon": -73.9242001 }, + { "lat": 40.7768855, "lon": -73.9240200 }, + { "lat": 40.7769490, "lon": -73.9239530 } + ], + "tags": { + "highway": "service", + "maxheight": "default", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 237846484, + "bounds": { + "minlat": 40.7746243, + "minlon": -73.9247275, + "maxlat": 40.7750270, + "maxlon": -73.9239852 + }, + "nodes": [ + 42826016, + 2447553713, + 8443800348, + 3778337376 + ], + "geometry": [ + { "lat": 40.7746243, "lon": -73.9239852 }, + { "lat": 40.7746862, "lon": -73.9240994 }, + { "lat": 40.7746997, "lon": -73.9241252 }, + { "lat": 40.7750270, "lon": -73.9247275 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Astoria Park South", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 237856898, + "bounds": { + "minlat": 40.7724133, + "minlon": -73.9358598, + "maxlat": 40.7734760, + "maxlon": -73.9352097 + }, + "nodes": [ + 2457194996, + 2459371109, + 12254790232, + 2457195003, + 2891717733, + 2457194998, + 2457194997 + ], + "geometry": [ + { "lat": 40.7724133, "lon": -73.9358598 }, + { "lat": 40.7726031, "lon": -73.9357607 }, + { "lat": 40.7726542, "lon": -73.9357259 }, + { "lat": 40.7728077, "lon": -73.9356213 }, + { "lat": 40.7730197, "lon": -73.9354865 }, + { "lat": 40.7732234, "lon": -73.9353642 }, + { "lat": 40.7734760, "lon": -73.9352097 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 237856905, + "bounds": { + "minlat": 40.7726031, + "minlon": -73.9364313, + "maxlat": 40.7728133, + "maxlon": -73.9357607 + }, + "nodes": [ + 2459371109, + 2459371107, + 2891717724 + ], + "geometry": [ + { "lat": 40.7726031, "lon": -73.9357607 }, + { "lat": 40.7727586, "lon": -73.9362786 }, + { "lat": 40.7728133, "lon": -73.9364313 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 237871135, + "bounds": { + "minlat": 40.7686541, + "minlon": -73.9237135, + "maxlat": 40.7689103, + "maxlon": -73.9232289 + }, + "nodes": [ + 2457398803, + 2457398801, + 2457398797 + ], + "geometry": [ + { "lat": 40.7689103, "lon": -73.9232289 }, + { "lat": 40.7686541, "lon": -73.9234437 }, + { "lat": 40.7687731, "lon": -73.9237135 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238072571, + "bounds": { + "minlat": 40.7722234, + "minlon": -73.9354246, + "maxlat": 40.7733375, + "maxlon": -73.9347686 + }, + "nodes": [ + 2459371063, + 2457195000, + 2891718007, + 2457195005, + 2457195042, + 2459371065, + 2459371104, + 2459371096 + ], + "geometry": [ + { "lat": 40.7733375, "lon": -73.9347686 }, + { "lat": 40.7730848, "lon": -73.9348864 }, + { "lat": 40.7728006, "lon": -73.9350189 }, + { "lat": 40.7726065, "lon": -73.9351093 }, + { "lat": 40.7724282, "lon": -73.9351925 }, + { "lat": 40.7722453, "lon": -73.9352777 }, + { "lat": 40.7722234, "lon": -73.9353565 }, + { "lat": 40.7722508, "lon": -73.9354246 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 238072583, + "bounds": { + "minlat": 40.7747823, + "minlon": -73.9352961, + "maxlat": 40.7751602, + "maxlon": -73.9347858 + }, + "nodes": [ + 2459371277, + 7756443009, + 2459371212, + 2459371216, + 2459371220, + 2459371222, + 2459371237, + 2459371226, + 2459371233, + 2459371229, + 2459371121 + ], + "geometry": [ + { "lat": 40.7751602, "lon": -73.9347858 }, + { "lat": 40.7750819, "lon": -73.9348285 }, + { "lat": 40.7750536, "lon": -73.9348439 }, + { "lat": 40.7749406, "lon": -73.9349064 }, + { "lat": 40.7749480, "lon": -73.9349839 }, + { "lat": 40.7749382, "lon": -73.9350614 }, + { "lat": 40.7749260, "lon": -73.9351115 }, + { "lat": 40.7749064, "lon": -73.9351632 }, + { "lat": 40.7748758, "lon": -73.9352084 }, + { "lat": 40.7748379, "lon": -73.9352455 }, + { "lat": 40.7747823, "lon": -73.9352961 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 238072584, + "bounds": { + "minlat": 40.7747904, + "minlon": -73.9349064, + "maxlat": 40.7749406, + "maxlon": -73.9346928 + }, + "nodes": [ + 2459371216, + 2459371241, + 2459371269, + 2459371274 + ], + "geometry": [ + { "lat": 40.7749406, "lon": -73.9349064 }, + { "lat": 40.7748795, "lon": -73.9347691 }, + { "lat": 40.7748171, "lon": -73.9347869 }, + { "lat": 40.7747904, "lon": -73.9346928 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238072594, + "bounds": { + "minlat": 40.7726925, + "minlon": -73.9342983, + "maxlat": 40.7730074, + "maxlon": -73.9336387 + }, + "nodes": [ + 2883518402, + 2459371396, + 2459371398, + 2459371401, + 2459371404, + 2459371407, + 4679523589, + 2459371410, + 5813108964, + 2459371413 + ], + "geometry": [ + { "lat": 40.7728001, "lon": -73.9342983 }, + { "lat": 40.7727818, "lon": -73.9342421 }, + { "lat": 40.7727026, "lon": -73.9339690 }, + { "lat": 40.7726925, "lon": -73.9338929 }, + { "lat": 40.7727051, "lon": -73.9338382 }, + { "lat": 40.7727327, "lon": -73.9337985 }, + { "lat": 40.7727435, "lon": -73.9337918 }, + { "lat": 40.7729121, "lon": -73.9336879 }, + { "lat": 40.7729353, "lon": -73.9336754 }, + { "lat": 40.7730074, "lon": -73.9336387 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 238383850, + "bounds": { + "minlat": 40.7514736, + "minlon": -73.9519788, + "maxlat": 40.7515905, + "maxlon": -73.9517311 + }, + "nodes": [ + 2462253812, + 5034184389, + 2462253870 + ], + "geometry": [ + { "lat": 40.7514736, "lon": -73.9517311 }, + { "lat": 40.7515223, "lon": -73.9518344 }, + { "lat": 40.7515905, "lon": -73.9519788 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238383853, + "bounds": { + "minlat": 40.7517633, + "minlon": -73.9523260, + "maxlat": 40.7525258, + "maxlon": -73.9516356 + }, + "nodes": [ + 2462253827, + 2462253829 + ], + "geometry": [ + { "lat": 40.7517633, "lon": -73.9523260 }, + { "lat": 40.7525258, "lon": -73.9516356 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238383854, + "bounds": { + "minlat": 40.7518675, + "minlon": -73.9525274, + "maxlat": 40.7526282, + "maxlon": -73.9518403 + }, + "nodes": [ + 2462253831, + 2462253833 + ], + "geometry": [ + { "lat": 40.7526282, "lon": -73.9518403 }, + { "lat": 40.7518675, "lon": -73.9525274 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238383856, + "bounds": { + "minlat": 40.7519710, + "minlon": -73.9527276, + "maxlat": 40.7527273, + "maxlon": -73.9520386 + }, + "nodes": [ + 2462253839, + 2462253840 + ], + "geometry": [ + { "lat": 40.7519710, "lon": -73.9527276 }, + { "lat": 40.7527273, "lon": -73.9520386 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238383857, + "bounds": { + "minlat": 40.7522628, + "minlon": -73.9532920, + "maxlat": 40.7535901, + "maxlon": -73.9520846 + }, + "nodes": [ + 2462253837, + 7746891100, + 9262951672, + 2462253848 + ], + "geometry": [ + { "lat": 40.7522628, "lon": -73.9532920 }, + { "lat": 40.7528191, "lon": -73.9527919 }, + { "lat": 40.7531125, "lon": -73.9524846 }, + { "lat": 40.7535901, "lon": -73.9520846 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238383858, + "bounds": { + "minlat": 40.7521721, + "minlon": -73.9531165, + "maxlat": 40.7528114, + "maxlon": -73.9525408 + }, + "nodes": [ + 2462253846, + 2462253850 + ], + "geometry": [ + { "lat": 40.7528114, "lon": -73.9525408 }, + { "lat": 40.7521721, "lon": -73.9531165 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238383859, + "bounds": { + "minlat": 40.7520720, + "minlon": -73.9529229, + "maxlat": 40.7527952, + "maxlon": -73.9522675 + }, + "nodes": [ + 2462253852, + 2462253854 + ], + "geometry": [ + { "lat": 40.7520720, "lon": -73.9529229 }, + { "lat": 40.7527952, "lon": -73.9522675 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238383863, + "bounds": { + "minlat": 40.7515905, + "minlon": -73.9519788, + "maxlat": 40.7523165, + "maxlon": -73.9514306 + }, + "nodes": [ + 2462253870, + 2462253872, + 2462253874 + ], + "geometry": [ + { "lat": 40.7515905, "lon": -73.9519788 }, + { "lat": 40.7522256, "lon": -73.9514306 }, + { "lat": 40.7523165, "lon": -73.9516066 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238383864, + "bounds": { + "minlat": 40.7515905, + "minlon": -73.9532920, + "maxlat": 40.7522628, + "maxlon": -73.9519788 + }, + "nodes": [ + 2462253870, + 7746891099, + 7746891095, + 2462253827, + 2462253833, + 2462253839, + 2462253852, + 2462253850, + 2463904878, + 2462253837 + ], + "geometry": [ + { "lat": 40.7515905, "lon": -73.9519788 }, + { "lat": 40.7516623, "lon": -73.9521243 }, + { "lat": 40.7516844, "lon": -73.9521690 }, + { "lat": 40.7517633, "lon": -73.9523260 }, + { "lat": 40.7518675, "lon": -73.9525274 }, + { "lat": 40.7519710, "lon": -73.9527276 }, + { "lat": 40.7520720, "lon": -73.9529229 }, + { "lat": 40.7521721, "lon": -73.9531165 }, + { "lat": 40.7522183, "lon": -73.9532060 }, + { "lat": 40.7522628, "lon": -73.9532920 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238397015, + "bounds": { + "minlat": 40.7504439, + "minlon": -73.9476936, + "maxlat": 40.7507958, + "maxlon": -73.9469226 + }, + "nodes": [ + 2462420461, + 2462420467, + 2462420469, + 2462420460, + 2462420468, + 2462420466, + 2462420462, + 2462420464, + 2462420459, + 2462420465, + 2462420463, + 8334173163, + 2462420458 + ], + "geometry": [ + { "lat": 40.7504439, "lon": -73.9473027 }, + { "lat": 40.7506322, "lon": -73.9476844 }, + { "lat": 40.7506377, "lon": -73.9476914 }, + { "lat": 40.7506456, "lon": -73.9476936 }, + { "lat": 40.7506526, "lon": -73.9476917 }, + { "lat": 40.7506597, "lon": -73.9476851 }, + { "lat": 40.7507815, "lon": -73.9475782 }, + { "lat": 40.7507909, "lon": -73.9475689 }, + { "lat": 40.7507958, "lon": -73.9475562 }, + { "lat": 40.7507958, "lon": -73.9475405 }, + { "lat": 40.7507891, "lon": -73.9475234 }, + { "lat": 40.7505399, "lon": -73.9469960 }, + { "lat": 40.7505052, "lon": -73.9469226 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238568743, + "bounds": { + "minlat": 40.7518406, + "minlon": -73.9535398, + "maxlat": 40.7522183, + "maxlon": -73.9532060 + }, + "nodes": [ + 2463904878, + 2463904879 + ], + "geometry": [ + { "lat": 40.7522183, "lon": -73.9532060 }, + { "lat": 40.7518406, "lon": -73.9535398 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238568744, + "bounds": { + "minlat": 40.7516844, + "minlon": -73.9521690, + "maxlat": 40.7524793, + "maxlon": -73.9514876 + }, + "nodes": [ + 2462253868, + 2462253844, + 2462253874, + 7746891095 + ], + "geometry": [ + { "lat": 40.7524793, "lon": -73.9515425 }, + { "lat": 40.7524518, "lon": -73.9514876 }, + { "lat": 40.7523165, "lon": -73.9516066 }, + { "lat": 40.7516844, "lon": -73.9521690 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238568749, + "bounds": { + "minlat": 40.7649830, + "minlon": -73.9312647, + "maxlat": 40.7656776, + "maxlon": -73.9299634 + }, + "nodes": [ + 2403986930, + 7767820283, + 5487911884, + 7768239056, + 7726598431, + 7767793127, + 7726598427 + ], + "geometry": [ + { "lat": 40.7649830, "lon": -73.9299634 }, + { "lat": 40.7650266, "lon": -73.9300389 }, + { "lat": 40.7651164, "lon": -73.9301962 }, + { "lat": 40.7652286, "lon": -73.9304246 }, + { "lat": 40.7652629, "lon": -73.9304887 }, + { "lat": 40.7656123, "lon": -73.9311429 }, + { "lat": 40.7656776, "lon": -73.9312647 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 238568750, + "bounds": { + "minlat": 40.7651277, + "minlon": -73.9313899, + "maxlat": 40.7655468, + "maxlon": -73.9306071 + }, + "nodes": [ + 2403986922, + 2403986927, + 7767793142, + 7726598430 + ], + "geometry": [ + { "lat": 40.7651277, "lon": -73.9306071 }, + { "lat": 40.7653518, "lon": -73.9310257 }, + { "lat": 40.7654832, "lon": -73.9312729 }, + { "lat": 40.7655468, "lon": -73.9313899 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 238911720, + "bounds": { + "minlat": 40.7478169, + "minlon": -73.9568933, + "maxlat": 40.7485546, + "maxlon": -73.9548933 + }, + "nodes": [ + 1696727885, + 2467193273, + 9982774491, + 9982774490, + 9982774489, + 2467193272, + 9982774488, + 9982774487, + 2467193270, + 2468394364, + 9982774486, + 2467193271, + 9982774485, + 2468394357, + 9982774484, + 2468394359, + 42866831 + ], + "geometry": [ + { "lat": 40.7485250, "lon": -73.9568933 }, + { "lat": 40.7485526, "lon": -73.9566891 }, + { "lat": 40.7485546, "lon": -73.9566563 }, + { "lat": 40.7485537, "lon": -73.9566224 }, + { "lat": 40.7485475, "lon": -73.9565832 }, + { "lat": 40.7485396, "lon": -73.9565454 }, + { "lat": 40.7485276, "lon": -73.9565021 }, + { "lat": 40.7485156, "lon": -73.9564631 }, + { "lat": 40.7484989, "lon": -73.9564138 }, + { "lat": 40.7479231, "lon": -73.9549798 }, + { "lat": 40.7479055, "lon": -73.9549437 }, + { "lat": 40.7478921, "lon": -73.9549248 }, + { "lat": 40.7478766, "lon": -73.9549109 }, + { "lat": 40.7478607, "lon": -73.9549017 }, + { "lat": 40.7478462, "lon": -73.9548958 }, + { "lat": 40.7478310, "lon": -73.9548933 }, + { "lat": 40.7478169, "lon": -73.9548936 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North Basin Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 238974578, + "bounds": { + "minlat": 40.7485785, + "minlon": -73.9572646, + "maxlat": 40.7489289, + "maxlon": -73.9565989 + }, + "nodes": [ + 194082533, + 2991227154, + 2991227153, + 10655539042, + 2991227151, + 2991227150, + 2991227139, + 2467818716, + 2467818718, + 10655539048, + 2467818713, + 2467818719, + 2467818717, + 2991213304, + 2991213303, + 2991213302, + 2991213301, + 2991213297, + 6540816637, + 2991213296, + 194082533 + ], + "geometry": [ + { "lat": 40.7489289, "lon": -73.9570399 }, + { "lat": 40.7487433, "lon": -73.9565989 }, + { "lat": 40.7487247, "lon": -73.9566411 }, + { "lat": 40.7487207, "lon": -73.9566518 }, + { "lat": 40.7486967, "lon": -73.9567163 }, + { "lat": 40.7486818, "lon": -73.9567840 }, + { "lat": 40.7486748, "lon": -73.9568535 }, + { "lat": 40.7486881, "lon": -73.9568535 }, + { "lat": 40.7486857, "lon": -73.9569112 }, + { "lat": 40.7486768, "lon": -73.9569589 }, + { "lat": 40.7486748, "lon": -73.9569699 }, + { "lat": 40.7486576, "lon": -73.9570214 }, + { "lat": 40.7486326, "lon": -73.9570668 }, + { "lat": 40.7486233, "lon": -73.9570565 }, + { "lat": 40.7486073, "lon": -73.9570912 }, + { "lat": 40.7485950, "lon": -73.9571302 }, + { "lat": 40.7485864, "lon": -73.9571637 }, + { "lat": 40.7485785, "lon": -73.9571975 }, + { "lat": 40.7486108, "lon": -73.9572311 }, + { "lat": 40.7486399, "lon": -73.9572646 }, + { "lat": 40.7489289, "lon": -73.9570399 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 239010319, + "bounds": { + "minlat": 40.8647419, + "minlon": -73.9961264, + "maxlat": 40.8649245, + "maxlon": -73.9960277 + }, + "nodes": [ + 2468214118, + 2807153812, + 2807153813, + 2807153802 + ], + "geometry": [ + { "lat": 40.8649245, "lon": -73.9961264 }, + { "lat": 40.8648757, "lon": -73.9960825 }, + { "lat": 40.8648252, "lon": -73.9960442 }, + { "lat": 40.8647419, "lon": -73.9960277 } + ], + "tags": { + "highway": "tertiary", + "name": "Challenger Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 239010320, + "bounds": { + "minlat": 40.8666870, + "minlon": -73.9991178, + "maxlat": 40.8668000, + "maxlon": -73.9988269 + }, + "nodes": [ + 2468165336, + 2468165303 + ], + "geometry": [ + { "lat": 40.8668000, "lon": -73.9991178 }, + { "lat": 40.8666870, "lon": -73.9988269 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "bridge": "yes", + "cycleway:left": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "2", + "layer": "1", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 239010321, + "bounds": { + "minlat": 40.8668000, + "minlon": -74.0000051, + "maxlat": 40.8671462, + "maxlon": -73.9991178 + }, + "nodes": [ + 567269815, + 2468322984, + 2468165336 + ], + "geometry": [ + { "lat": 40.8671462, "lon": -74.0000051 }, + { "lat": 40.8670105, "lon": -73.9996588 }, + { "lat": 40.8668000, "lon": -73.9991178 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:left": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 239011047, + "bounds": { + "minlat": 40.8532263, + "minlon": -74.0118050, + "maxlat": 40.8533018, + "maxlon": -74.0117692 + }, + "nodes": [ + 298559944, + 2468183381 + ], + "geometry": [ + { "lat": 40.8532263, "lon": -74.0118050 }, + { "lat": 40.8533018, "lon": -74.0117692 } + ], + "tags": { + "highway": "tertiary", + "name": "Challenger Road", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 239011048, + "bounds": { + "minlat": 40.8533018, + "minlon": -74.0120920, + "maxlat": 40.8543640, + "maxlon": -74.0115934 + }, + "nodes": [ + 2468183330, + 2468183325, + 2468183433, + 2468183331, + 2468183368, + 2468183334, + 2468183332, + 2468183392, + 2468183321, + 2468183327, + 2468183366, + 2468183385, + 2468183350, + 2468183429, + 2468183328, + 2468183316, + 2468183359, + 2468183381 + ], + "geometry": [ + { "lat": 40.8543640, "lon": -74.0120920 }, + { "lat": 40.8542824, "lon": -74.0119980 }, + { "lat": 40.8542099, "lon": -74.0118925 }, + { "lat": 40.8541665, "lon": -74.0118214 }, + { "lat": 40.8541239, "lon": -74.0117463 }, + { "lat": 40.8540590, "lon": -74.0116658 }, + { "lat": 40.8539941, "lon": -74.0116256 }, + { "lat": 40.8539271, "lon": -74.0115988 }, + { "lat": 40.8538805, "lon": -74.0115934 }, + { "lat": 40.8538156, "lon": -74.0115934 }, + { "lat": 40.8537689, "lon": -74.0115988 }, + { "lat": 40.8537222, "lon": -74.0116176 }, + { "lat": 40.8536817, "lon": -74.0116363 }, + { "lat": 40.8536218, "lon": -74.0116658 }, + { "lat": 40.8535062, "lon": -74.0117195 }, + { "lat": 40.8534677, "lon": -74.0117329 }, + { "lat": 40.8533925, "lon": -74.0117490 }, + { "lat": 40.8533018, "lon": -74.0117692 } + ], + "tags": { + "highway": "tertiary", + "name": "Challenger Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 239011468, + "bounds": { + "minlat": 40.8622921, + "minlon": -74.0063207, + "maxlat": 40.8626624, + "maxlon": -74.0061689 + }, + "nodes": [ + 2468196259, + 2468196233, + 2468196231, + 2468196229, + 2468196248, + 2468196239, + 2468277188, + 2468196287 + ], + "geometry": [ + { "lat": 40.8622921, "lon": -74.0061689 }, + { "lat": 40.8623643, "lon": -74.0062183 }, + { "lat": 40.8624180, "lon": -74.0062558 }, + { "lat": 40.8624637, "lon": -74.0062800 }, + { "lat": 40.8625123, "lon": -74.0062961 }, + { "lat": 40.8625783, "lon": -74.0062987 }, + { "lat": 40.8626044, "lon": -74.0063021 }, + { "lat": 40.8626624, "lon": -74.0063207 } + ], + "tags": { + "highway": "tertiary", + "name": "Challenger Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 239011469, + "bounds": { + "minlat": 40.8622921, + "minlon": -74.0064570, + "maxlat": 40.8623328, + "maxlon": -74.0061689 + }, + "nodes": [ + 2468196259, + 10941394490, + 2468196274, + 10941394488, + 2468196285, + 10941421005, + 2468196276, + 10941394487, + 2468196265, + 10941394477, + 2468196270, + 10941394502, + 2468196272 + ], + "geometry": [ + { "lat": 40.8622921, "lon": -74.0061689 }, + { "lat": 40.8623041, "lon": -74.0061897 }, + { "lat": 40.8623133, "lon": -74.0062099 }, + { "lat": 40.8623212, "lon": -74.0062329 }, + { "lat": 40.8623271, "lon": -74.0062564 }, + { "lat": 40.8623311, "lon": -74.0062824 }, + { "lat": 40.8623328, "lon": -74.0063094 }, + { "lat": 40.8623321, "lon": -74.0063363 }, + { "lat": 40.8623286, "lon": -74.0063642 }, + { "lat": 40.8623225, "lon": -74.0063913 }, + { "lat": 40.8623152, "lon": -74.0064136 }, + { "lat": 40.8623058, "lon": -74.0064356 }, + { "lat": 40.8622938, "lon": -74.0064570 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "name": "Challenger Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 239011470, + "bounds": { + "minlat": 40.8619956, + "minlon": -74.0064731, + "maxlat": 40.8620458, + "maxlon": -74.0061674 + }, + "nodes": [ + 2468165353, + 10941394485, + 2468196263, + 10941394497, + 2468196250, + 10941394486, + 2468196242, + 10941394476, + 2468196268, + 10941394499, + 2468196252, + 10941394495, + 2468196281 + ], + "geometry": [ + { "lat": 40.8620458, "lon": -74.0064731 }, + { "lat": 40.8620314, "lon": -74.0064516 }, + { "lat": 40.8620191, "lon": -74.0064279 }, + { "lat": 40.8620093, "lon": -74.0064025 }, + { "lat": 40.8620021, "lon": -74.0063755 }, + { "lat": 40.8619976, "lon": -74.0063482 }, + { "lat": 40.8619956, "lon": -74.0063165 }, + { "lat": 40.8619969, "lon": -74.0062872 }, + { "lat": 40.8620011, "lon": -74.0062576 }, + { "lat": 40.8620077, "lon": -74.0062314 }, + { "lat": 40.8620158, "lon": -74.0062086 }, + { "lat": 40.8620261, "lon": -74.0061865 }, + { "lat": 40.8620374, "lon": -74.0061674 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "name": "Challenger Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 239011471, + "bounds": { + "minlat": 40.8616742, + "minlon": -74.0064731, + "maxlat": 40.8620458, + "maxlon": -74.0063829 + }, + "nodes": [ + 2468165353, + 2468165360, + 10941394496, + 2468165318, + 2468165389, + 10941394481, + 10941394498, + 2468165369, + 10941394491, + 2468165393 + ], + "geometry": [ + { "lat": 40.8620458, "lon": -74.0064731 }, + { "lat": 40.8619708, "lon": -74.0064399 }, + { "lat": 40.8619471, "lon": -74.0064249 }, + { "lat": 40.8619180, "lon": -74.0064087 }, + { "lat": 40.8618850, "lon": -74.0063953 }, + { "lat": 40.8618570, "lon": -74.0063890 }, + { "lat": 40.8618242, "lon": -74.0063847 }, + { "lat": 40.8617883, "lon": -74.0063831 }, + { "lat": 40.8617443, "lon": -74.0063829 }, + { "lat": 40.8616742, "lon": -74.0063840 } + ], + "tags": { + "highway": "tertiary", + "name": "Challenger Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 239011472, + "bounds": { + "minlat": 40.8622938, + "minlon": -74.0064570, + "maxlat": 40.8626624, + "maxlon": -74.0063207 + }, + "nodes": [ + 2468196287, + 5577214979, + 2468165314, + 2468165313, + 2468196272 + ], + "geometry": [ + { "lat": 40.8626624, "lon": -74.0063207 }, + { "lat": 40.8626030, "lon": -74.0063326 }, + { "lat": 40.8624730, "lon": -74.0063519 }, + { "lat": 40.8623693, "lon": -74.0064060 }, + { "lat": 40.8622938, "lon": -74.0064570 } + ], + "tags": { + "highway": "tertiary", + "name": "Challenger Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 239011473, + "bounds": { + "minlat": 40.8543640, + "minlon": -74.0124330, + "maxlat": 40.8616742, + "maxlon": -74.0063840 + }, + "nodes": [ + 2468165393, + 2468165372, + 2468165377, + 2468165306, + 2468165380, + 2468165328, + 2468165388, + 2468165324, + 2468165320, + 2468165317, + 2468165330, + 2468165323, + 13172389311, + 2468165322, + 4472812867, + 4472813113, + 2468165390, + 2468165348, + 2468165382, + 2468165311, + 2468165386, + 2468183437, + 2468183346, + 2468183360, + 4472812868, + 2468183376, + 2468183324, + 2468183329, + 2468183404, + 2468183379, + 2468183355, + 4472813116, + 2468183308, + 4472814521, + 2468183387, + 2468183342, + 2468183438, + 2468183312, + 2468183363, + 2468183322, + 2468183396, + 2468183374, + 2468183362, + 13173640487, + 2468183370, + 2468183372, + 2468183394, + 2468183400, + 2468183364, + 2468183340, + 2468183348, + 2468183326, + 2468183435, + 2468183425, + 2468183344, + 2468183353, + 2468183338, + 2468183314, + 2468183319, + 2468183317, + 2468183390, + 2468183402, + 2468183377, + 2468183357, + 2468183383, + 2468183406, + 2468183313, + 2468183330 + ], + "geometry": [ + { "lat": 40.8616742, "lon": -74.0063840 }, + { "lat": 40.8615941, "lon": -74.0064130 }, + { "lat": 40.8614311, "lon": -74.0064945 }, + { "lat": 40.8612973, "lon": -74.0065750 }, + { "lat": 40.8611512, "lon": -74.0066823 }, + { "lat": 40.8609970, "lon": -74.0068325 }, + { "lat": 40.8608997, "lon": -74.0069398 }, + { "lat": 40.8607658, "lon": -74.0071222 }, + { "lat": 40.8606562, "lon": -74.0073046 }, + { "lat": 40.8605751, "lon": -74.0074709 }, + { "lat": 40.8604777, "lon": -74.0077284 }, + { "lat": 40.8603803, "lon": -74.0080502 }, + { "lat": 40.8602793, "lon": -74.0084050 }, + { "lat": 40.8602627, "lon": -74.0084633 }, + { "lat": 40.8601800, "lon": -74.0087293 }, + { "lat": 40.8601427, "lon": -74.0088568 }, + { "lat": 40.8601166, "lon": -74.0089461 }, + { "lat": 40.8600355, "lon": -74.0091714 }, + { "lat": 40.8599503, "lon": -74.0093699 }, + { "lat": 40.8598286, "lon": -74.0096166 }, + { "lat": 40.8597515, "lon": -74.0097454 }, + { "lat": 40.8596338, "lon": -74.0099170 }, + { "lat": 40.8595081, "lon": -74.0100780 }, + { "lat": 40.8593904, "lon": -74.0102067 }, + { "lat": 40.8593329, "lon": -74.0102624 }, + { "lat": 40.8592078, "lon": -74.0103837 }, + { "lat": 40.8589806, "lon": -74.0105554 }, + { "lat": 40.8588183, "lon": -74.0106573 }, + { "lat": 40.8585708, "lon": -74.0107753 }, + { "lat": 40.8583761, "lon": -74.0108397 }, + { "lat": 40.8582057, "lon": -74.0108826 }, + { "lat": 40.8580881, "lon": -74.0108963 }, + { "lat": 40.8580677, "lon": -74.0108987 }, + { "lat": 40.8579869, "lon": -74.0109104 }, + { "lat": 40.8578811, "lon": -74.0109229 }, + { "lat": 40.8577756, "lon": -74.0109336 }, + { "lat": 40.8576255, "lon": -74.0109497 }, + { "lat": 40.8574328, "lon": -74.0109685 }, + { "lat": 40.8572928, "lon": -74.0109953 }, + { "lat": 40.8571386, "lon": -74.0110328 }, + { "lat": 40.8570372, "lon": -74.0110650 }, + { "lat": 40.8569438, "lon": -74.0110992 }, + { "lat": 40.8568039, "lon": -74.0111643 }, + { "lat": 40.8567700, "lon": -74.0111828 }, + { "lat": 40.8566862, "lon": -74.0112286 }, + { "lat": 40.8565706, "lon": -74.0113037 }, + { "lat": 40.8564894, "lon": -74.0113574 }, + { "lat": 40.8564123, "lon": -74.0114218 }, + { "lat": 40.8562866, "lon": -74.0115264 }, + { "lat": 40.8561628, "lon": -74.0116390 }, + { "lat": 40.8560309, "lon": -74.0117946 }, + { "lat": 40.8559518, "lon": -74.0118885 }, + { "lat": 40.8558808, "lon": -74.0119877 }, + { "lat": 40.8557936, "lon": -74.0120950 }, + { "lat": 40.8557165, "lon": -74.0121755 }, + { "lat": 40.8556333, "lon": -74.0122452 }, + { "lat": 40.8555197, "lon": -74.0123203 }, + { "lat": 40.8553960, "lon": -74.0123739 }, + { "lat": 40.8553047, "lon": -74.0124061 }, + { "lat": 40.8551971, "lon": -74.0124276 }, + { "lat": 40.8551038, "lon": -74.0124330 }, + { "lat": 40.8549821, "lon": -74.0124276 }, + { "lat": 40.8548624, "lon": -74.0124035 }, + { "lat": 40.8547711, "lon": -74.0123713 }, + { "lat": 40.8546453, "lon": -74.0123123 }, + { "lat": 40.8545682, "lon": -74.0122640 }, + { "lat": 40.8544404, "lon": -74.0121567 }, + { "lat": 40.8543640, "lon": -74.0120920 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "Challenger Road" + } +}, +{ + "type": "way", + "id": 239013123, + "bounds": { + "minlat": 40.8626624, + "minlon": -74.0063363, + "maxlat": 40.8667835, + "maxlon": -74.0000352 + }, + "nodes": [ + 10160745186, + 2468214108, + 2468214077, + 2468165307, + 2468300465, + 2468165296, + 2468165337, + 2468300442, + 2468165325, + 2468165366, + 13172389319, + 2468165305, + 13172389316, + 2468165370, + 2468165379, + 2468165345, + 2468165351, + 2468165309, + 2468165357, + 2468165352, + 2468165346, + 2468165329, + 2468165378, + 2468165334, + 2468165331, + 2468337573, + 2468165367, + 2468337464, + 2468165294, + 2468165315, + 2468165375, + 5577214992, + 2468337390, + 2468165342, + 2468165381, + 2468165310, + 2468165297, + 2468165376, + 2468196287 + ], + "geometry": [ + { "lat": 40.8667607, "lon": -74.0000352 }, + { "lat": 40.8667626, "lon": -74.0001990 }, + { "lat": 40.8667677, "lon": -74.0005572 }, + { "lat": 40.8667694, "lon": -74.0007448 }, + { "lat": 40.8667714, "lon": -74.0009128 }, + { "lat": 40.8667765, "lon": -74.0012874 }, + { "lat": 40.8667835, "lon": -74.0017569 }, + { "lat": 40.8667823, "lon": -74.0018772 }, + { "lat": 40.8667741, "lon": -74.0020582 }, + { "lat": 40.8667619, "lon": -74.0023961 }, + { "lat": 40.8667554, "lon": -74.0025030 }, + { "lat": 40.8667457, "lon": -74.0026643 }, + { "lat": 40.8667345, "lon": -74.0027827 }, + { "lat": 40.8666930, "lon": -74.0032222 }, + { "lat": 40.8666686, "lon": -74.0034583 }, + { "lat": 40.8666321, "lon": -74.0036782 }, + { "lat": 40.8665794, "lon": -74.0038982 }, + { "lat": 40.8665185, "lon": -74.0040859 }, + { "lat": 40.8664384, "lon": -74.0042978 }, + { "lat": 40.8662721, "lon": -74.0046143 }, + { "lat": 40.8661615, "lon": -74.0047779 }, + { "lat": 40.8660317, "lon": -74.0049442 }, + { "lat": 40.8658897, "lon": -74.0050891 }, + { "lat": 40.8657193, "lon": -74.0052446 }, + { "lat": 40.8653420, "lon": -74.0055075 }, + { "lat": 40.8650054, "lon": -74.0057495 }, + { "lat": 40.8649113, "lon": -74.0058154 }, + { "lat": 40.8648432, "lon": -74.0058593 }, + { "lat": 40.8646118, "lon": -74.0060064 }, + { "lat": 40.8643116, "lon": -74.0061459 }, + { "lat": 40.8641696, "lon": -74.0061995 }, + { "lat": 40.8641536, "lon": -74.0062042 }, + { "lat": 40.8640367, "lon": -74.0062388 }, + { "lat": 40.8638978, "lon": -74.0062800 }, + { "lat": 40.8636554, "lon": -74.0063256 }, + { "lat": 40.8634201, "lon": -74.0063363 }, + { "lat": 40.8631645, "lon": -74.0063363 }, + { "lat": 40.8627426, "lon": -74.0063202 }, + { "lat": 40.8626624, "lon": -74.0063207 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "Challenger Road" + } +}, +{ + "type": "way", + "id": 239013127, + "bounds": { + "minlat": 40.8665314, + "minlon": -73.9992902, + "maxlat": 40.8667088, + "maxlon": -73.9988358 + }, + "nodes": [ + 2468214150, + 2468214184 + ], + "geometry": [ + { "lat": 40.8665314, "lon": -73.9988358 }, + { "lat": 40.8667088, "lon": -73.9992902 } + ], + "tags": { + "bridge": "yes", + "bridge:structure": "arch", + "highway": "tertiary", + "layer": "1", + "name": "Challenger Road" + } +}, +{ + "type": "way", + "id": 239013130, + "bounds": { + "minlat": 40.8649649, + "minlon": -73.9956396, + "maxlat": 40.8653872, + "maxlon": -73.9953902 + }, + "nodes": [ + 298782401, + 2468214212, + 5577214986, + 2468214146, + 2468214097, + 2807153826 + ], + "geometry": [ + { "lat": 40.8653872, "lon": -73.9953902 }, + { "lat": 40.8653278, "lon": -73.9954163 }, + { "lat": 40.8652737, "lon": -73.9954461 }, + { "lat": 40.8652412, "lon": -73.9954669 }, + { "lat": 40.8651171, "lon": -73.9955453 }, + { "lat": 40.8649649, "lon": -73.9956396 } + ], + "tags": { + "highway": "tertiary" + } +}, +{ + "type": "way", + "id": 239014938, + "bounds": { + "minlat": 40.8653872, + "minlon": -73.9953902, + "maxlat": 40.8729472, + "maxlon": -73.9896385 + }, + "nodes": [ + 6117378523, + 2468236369, + 2468236518, + 6117378524, + 2468236435, + 5938918293, + 2468236388, + 5577214990, + 2468236488, + 5938918655, + 5938918295, + 2468236474, + 2468236516, + 4472866894, + 2468236483, + 2468236371, + 2468236439, + 5938918286, + 2468236446, + 2468236437, + 5938918289, + 5938918654, + 2468236335, + 2468236350, + 2468236363, + 4472866895, + 2468236479, + 2468236331, + 2468236477, + 2468236455, + 2468236520, + 2468236359, + 2468236514, + 2468236347, + 2468236394, + 2468236452, + 2468236374, + 2468236410, + 9909912467, + 10947526481, + 298782401 + ], + "geometry": [ + { "lat": 40.8729472, "lon": -73.9896385 }, + { "lat": 40.8728224, "lon": -73.9897146 }, + { "lat": 40.8723519, "lon": -73.9900311 }, + { "lat": 40.8723061, "lon": -73.9900611 }, + { "lat": 40.8719665, "lon": -73.9902833 }, + { "lat": 40.8718711, "lon": -73.9903503 }, + { "lat": 40.8717069, "lon": -73.9904657 }, + { "lat": 40.8713456, "lon": -73.9907039 }, + { "lat": 40.8711634, "lon": -73.9908144 }, + { "lat": 40.8709572, "lon": -73.9909521 }, + { "lat": 40.8708295, "lon": -73.9910374 }, + { "lat": 40.8707618, "lon": -73.9910826 }, + { "lat": 40.8704251, "lon": -73.9912971 }, + { "lat": 40.8703476, "lon": -73.9913489 }, + { "lat": 40.8699991, "lon": -73.9915815 }, + { "lat": 40.8696036, "lon": -73.9918635 }, + { "lat": 40.8692446, "lon": -73.9921233 }, + { "lat": 40.8690922, "lon": -73.9922356 }, + { "lat": 40.8689606, "lon": -73.9923271 }, + { "lat": 40.8686889, "lon": -73.9925041 }, + { "lat": 40.8685018, "lon": -73.9926263 }, + { "lat": 40.8683903, "lon": -73.9926991 }, + { "lat": 40.8683603, "lon": -73.9927187 }, + { "lat": 40.8681818, "lon": -73.9928421 }, + { "lat": 40.8679465, "lon": -73.9930191 }, + { "lat": 40.8678447, "lon": -73.9930985 }, + { "lat": 40.8677883, "lon": -73.9931425 }, + { "lat": 40.8676341, "lon": -73.9932713 }, + { "lat": 40.8674881, "lon": -73.9934322 }, + { "lat": 40.8672814, "lon": -73.9936631 }, + { "lat": 40.8670418, "lon": -73.9939203 }, + { "lat": 40.8667944, "lon": -73.9941993 }, + { "lat": 40.8665631, "lon": -73.9944353 }, + { "lat": 40.8663806, "lon": -73.9946177 }, + { "lat": 40.8662021, "lon": -73.9948001 }, + { "lat": 40.8660236, "lon": -73.9949503 }, + { "lat": 40.8656647, "lon": -73.9952265 }, + { "lat": 40.8655965, "lon": -73.9952746 }, + { "lat": 40.8655052, "lon": -73.9953327 }, + { "lat": 40.8654471, "lon": -73.9953634 }, + { "lat": 40.8653872, "lon": -73.9953902 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "15 mph", + "name": "Overpeck Park Driveway", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 239017734, + "bounds": { + "minlat": 40.8666093, + "minlon": -74.0018772, + "maxlat": 40.8667823, + "maxlon": -74.0017544 + }, + "nodes": [ + 2468300442, + 2468300437, + 2468300408, + 2468300415, + 2468300475, + 2468300449 + ], + "geometry": [ + { "lat": 40.8667823, "lon": -74.0018772 }, + { "lat": 40.8667437, "lon": -74.0018758 }, + { "lat": 40.8667102, "lon": -74.0018711 }, + { "lat": 40.8666463, "lon": -74.0018543 }, + { "lat": 40.8666220, "lon": -74.0018195 }, + { "lat": 40.8666093, "lon": -74.0017544 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 239019262, + "bounds": { + "minlat": 40.8670105, + "minlon": -73.9996588, + "maxlat": 40.8694596, + "maxlon": -73.9986357 + }, + "nodes": [ + 2468322981, + 2468322970, + 2468322983, + 2468322980, + 2468322972, + 2468322971, + 2468322985, + 2468322976, + 2468322977, + 2468322974, + 2468322978, + 2468322967, + 10938972875, + 2468322979, + 10938972878, + 2468322969, + 2468322973, + 10938972879, + 2468322975, + 2468322982, + 10938972876, + 2468322968, + 10938972877, + 2468322984 + ], + "geometry": [ + { "lat": 40.8694596, "lon": -73.9991399 }, + { "lat": 40.8693176, "lon": -73.9991721 }, + { "lat": 40.8691635, "lon": -73.9991346 }, + { "lat": 40.8690499, "lon": -73.9990916 }, + { "lat": 40.8689363, "lon": -73.9990112 }, + { "lat": 40.8688227, "lon": -73.9989361 }, + { "lat": 40.8687010, "lon": -73.9988610 }, + { "lat": 40.8685306, "lon": -73.9987644 }, + { "lat": 40.8684171, "lon": -73.9987108 }, + { "lat": 40.8682791, "lon": -73.9986357 }, + { "lat": 40.8681574, "lon": -73.9986357 }, + { "lat": 40.8679586, "lon": -73.9987612 }, + { "lat": 40.8678834, "lon": -73.9988209 }, + { "lat": 40.8678183, "lon": -73.9988789 }, + { "lat": 40.8677401, "lon": -73.9989561 }, + { "lat": 40.8676677, "lon": -73.9990325 }, + { "lat": 40.8675729, "lon": -73.9991374 }, + { "lat": 40.8674541, "lon": -73.9992752 }, + { "lat": 40.8673858, "lon": -73.9993503 }, + { "lat": 40.8673201, "lon": -73.9994184 }, + { "lat": 40.8672555, "lon": -73.9994828 }, + { "lat": 40.8671847, "lon": -73.9995431 }, + { "lat": 40.8671087, "lon": -73.9995957 }, + { "lat": 40.8670105, "lon": -73.9996588 } + ], + "tags": { + "highway": "track" + } +}, +{ + "type": "way", + "id": 239019477, + "bounds": { + "minlat": 40.8572442, + "minlon": -73.9979973, + "maxlat": 40.8578572, + "maxlon": -73.9968177 + }, + "nodes": [ + 2468325005, + 2468325009, + 2468325003, + 2468325034, + 2468325019, + 2468325026, + 2468325004, + 2468325000, + 6117378952, + 5557494249, + 103164809 + ], + "geometry": [ + { "lat": 40.8578572, "lon": -73.9979973 }, + { "lat": 40.8577979, "lon": -73.9979276 }, + { "lat": 40.8577533, "lon": -73.9978578 }, + { "lat": 40.8577391, "lon": -73.9977988 }, + { "lat": 40.8577411, "lon": -73.9977291 }, + { "lat": 40.8577066, "lon": -73.9976567 }, + { "lat": 40.8576616, "lon": -73.9975847 }, + { "lat": 40.8576074, "lon": -73.9974981 }, + { "lat": 40.8575123, "lon": -73.9973330 }, + { "lat": 40.8572826, "lon": -73.9969343 }, + { "lat": 40.8572442, "lon": -73.9968177 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239019481, + "bounds": { + "minlat": 40.8575687, + "minlon": -73.9978364, + "maxlat": 40.8577391, + "maxlon": -73.9975847 + }, + "nodes": [ + 2468325034, + 2468325035, + 2468325037, + 2468325022, + 2468325014, + 2468325031, + 2468325015, + 2468325025, + 2468325016, + 2468325024, + 2468325004 + ], + "geometry": [ + { "lat": 40.8577391, "lon": -73.9977988 }, + { "lat": 40.8576985, "lon": -73.9978256 }, + { "lat": 40.8576600, "lon": -73.9978364 }, + { "lat": 40.8576113, "lon": -73.9978310 }, + { "lat": 40.8575890, "lon": -73.9978122 }, + { "lat": 40.8575748, "lon": -73.9977800 }, + { "lat": 40.8575687, "lon": -73.9977318 }, + { "lat": 40.8575829, "lon": -73.9976862 }, + { "lat": 40.8576032, "lon": -73.9976567 }, + { "lat": 40.8576397, "lon": -73.9976245 }, + { "lat": 40.8576616, "lon": -73.9975847 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239020200, + "bounds": { + "minlat": 40.8640276, + "minlon": -74.0062388, + "maxlat": 40.8649113, + "maxlon": -74.0056765 + }, + "nodes": [ + 2468165367, + 2468337453, + 2468337535, + 2468337469, + 2468337580, + 2468337562, + 2468337358, + 2468337597, + 2468337455, + 2468337422, + 2468337599, + 3664622423, + 2468337479, + 2468337389, + 2468337506, + 2468337601, + 2468337390 + ], + "geometry": [ + { "lat": 40.8649113, "lon": -74.0058154 }, + { "lat": 40.8648766, "lon": -74.0057582 }, + { "lat": 40.8648532, "lon": -74.0057248 }, + { "lat": 40.8648248, "lon": -74.0056979 }, + { "lat": 40.8647863, "lon": -74.0056818 }, + { "lat": 40.8647376, "lon": -74.0056765 }, + { "lat": 40.8647132, "lon": -74.0056845 }, + { "lat": 40.8646977, "lon": -74.0056893 }, + { "lat": 40.8641521, "lon": -74.0059528 }, + { "lat": 40.8641270, "lon": -74.0059661 }, + { "lat": 40.8640986, "lon": -74.0059849 }, + { "lat": 40.8640851, "lon": -74.0060016 }, + { "lat": 40.8640722, "lon": -74.0060171 }, + { "lat": 40.8640540, "lon": -74.0060547 }, + { "lat": 40.8640378, "lon": -74.0061083 }, + { "lat": 40.8640276, "lon": -74.0061485 }, + { "lat": 40.8640367, "lon": -74.0062388 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239020201, + "bounds": { + "minlat": 40.8481958, + "minlon": -74.0091312, + "maxlat": 40.8486098, + "maxlon": -74.0083828 + }, + "nodes": [ + 2468337602, + 2468337495, + 2468337354, + 2468337589, + 2468337463, + 2468337543, + 2468337351, + 2468337461, + 12537543801, + 2468337338 + ], + "geometry": [ + { "lat": 40.8482141, "lon": -74.0085663 }, + { "lat": 40.8481958, "lon": -74.0085069 }, + { "lat": 40.8481997, "lon": -74.0084552 }, + { "lat": 40.8482240, "lon": -74.0084123 }, + { "lat": 40.8482788, "lon": -74.0083828 }, + { "lat": 40.8483377, "lon": -74.0083882 }, + { "lat": 40.8483762, "lon": -74.0084150 }, + { "lat": 40.8484101, "lon": -74.0084877 }, + { "lat": 40.8484727, "lon": -74.0086895 }, + { "lat": 40.8486098, "lon": -74.0091312 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239020207, + "bounds": { + "minlat": 40.8473112, + "minlon": -74.0098607, + "maxlat": 40.8487179, + "maxlon": -74.0085663 + }, + "nodes": [ + 2468337338, + 2468354785, + 2468337587, + 2468337555, + 9913397705, + 9913397704, + 9913397706, + 2468337538, + 2468337476, + 2468337451, + 2468337510, + 2468337400, + 2468337522, + 2468337386, + 2468337394, + 2468337557, + 9913397702, + 4472822647, + 2468337478, + 2468337487, + 4472822650, + 2468337378, + 9913397703, + 2468337518, + 2468337425, + 2468337426, + 2468337458, + 2468337598, + 9913397700, + 9913397699, + 9913397701, + 2468337480, + 2468337382, + 2468337449, + 9913397779, + 2468337473, + 2468337504, + 2468337533, + 2468337602 + ], + "geometry": [ + { "lat": 40.8486098, "lon": -74.0091312 }, + { "lat": 40.8486467, "lon": -74.0092923 }, + { "lat": 40.8486910, "lon": -74.0094863 }, + { "lat": 40.8487159, "lon": -74.0095947 }, + { "lat": 40.8487179, "lon": -74.0096127 }, + { "lat": 40.8487157, "lon": -74.0096301 }, + { "lat": 40.8487086, "lon": -74.0096408 }, + { "lat": 40.8487001, "lon": -74.0096475 }, + { "lat": 40.8484229, "lon": -74.0097776 }, + { "lat": 40.8482971, "lon": -74.0098339 }, + { "lat": 40.8482261, "lon": -74.0098554 }, + { "lat": 40.8481611, "lon": -74.0098607 }, + { "lat": 40.8480658, "lon": -74.0098580 }, + { "lat": 40.8478882, "lon": -74.0098528 }, + { "lat": 40.8477310, "lon": -74.0098339 }, + { "lat": 40.8476766, "lon": -74.0098237 }, + { "lat": 40.8476518, "lon": -74.0098105 }, + { "lat": 40.8476319, "lon": -74.0097897 }, + { "lat": 40.8476117, "lon": -74.0097431 }, + { "lat": 40.8475668, "lon": -74.0095894 }, + { "lat": 40.8475518, "lon": -74.0095404 }, + { "lat": 40.8475354, "lon": -74.0094870 }, + { "lat": 40.8475094, "lon": -74.0094202 }, + { "lat": 40.8474787, "lon": -74.0093533 }, + { "lat": 40.8474258, "lon": -74.0092499 }, + { "lat": 40.8473880, "lon": -74.0091744 }, + { "lat": 40.8473397, "lon": -74.0090889 }, + { "lat": 40.8473158, "lon": -74.0090321 }, + { "lat": 40.8473112, "lon": -74.0090124 }, + { "lat": 40.8473122, "lon": -74.0089983 }, + { "lat": 40.8473185, "lon": -74.0089855 }, + { "lat": 40.8473284, "lon": -74.0089753 }, + { "lat": 40.8473756, "lon": -74.0089470 }, + { "lat": 40.8475565, "lon": -74.0088656 }, + { "lat": 40.8476388, "lon": -74.0088291 }, + { "lat": 40.8478406, "lon": -74.0087396 }, + { "lat": 40.8480252, "lon": -74.0086564 }, + { "lat": 40.8481206, "lon": -74.0086108 }, + { "lat": 40.8482141, "lon": -74.0085663 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 239020219, + "bounds": { + "minlat": 40.8498896, + "minlon": -74.0066047, + "maxlat": 40.8517940, + "maxlon": -74.0056776 + }, + "nodes": [ + 2468337470, + 2468337509, + 4472840389, + 4472836987, + 4472836988, + 2468337553, + 2468337344, + 2468337536, + 2468337399, + 2468337362, + 2468337532 + ], + "geometry": [ + { "lat": 40.8517940, "lon": -74.0056776 }, + { "lat": 40.8517635, "lon": -74.0056985 }, + { "lat": 40.8516904, "lon": -74.0057456 }, + { "lat": 40.8515355, "lon": -74.0058454 }, + { "lat": 40.8513776, "lon": -74.0059471 }, + { "lat": 40.8508778, "lon": -74.0062692 }, + { "lat": 40.8508007, "lon": -74.0062800 }, + { "lat": 40.8507277, "lon": -74.0062531 }, + { "lat": 40.8506547, "lon": -74.0062478 }, + { "lat": 40.8499373, "lon": -74.0065866 }, + { "lat": 40.8498896, "lon": -74.0066047 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239020221, + "bounds": { + "minlat": 40.8486098, + "minlon": -74.0092277, + "maxlat": 40.8489805, + "maxlon": -74.0091312 + }, + "nodes": [ + 2468337338, + 4472822652, + 2468337446, + 2468337550, + 2468337593, + 2468337666 + ], + "geometry": [ + { "lat": 40.8486098, "lon": -74.0091312 }, + { "lat": 40.8486604, "lon": -74.0091655 }, + { "lat": 40.8486968, "lon": -74.0091848 }, + { "lat": 40.8487982, "lon": -74.0092143 }, + { "lat": 40.8488997, "lon": -74.0092277 }, + { "lat": 40.8489805, "lon": -74.0092220 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 239020243, + "bounds": { + "minlat": 40.8489805, + "minlon": -74.0092227, + "maxlat": 40.8521380, + "maxlon": -74.0056776 + }, + "nodes": [ + 2468337666, + 2468337428, + 2468337431, + 2468337566, + 2468337542, + 2468337525, + 2468337490, + 2468337586, + 2468337568, + 2468337367, + 2468337531, + 2468337380, + 2468337492, + 2468337521, + 2468337401, + 4472836986, + 2468337503, + 2468337447, + 2468337403, + 2468337574, + 2468337567, + 2468337517, + 2468337408, + 2468337456, + 2468337546, + 2468337507, + 2468337406, + 2468337381, + 2468337585, + 2468337439, + 2468337470 + ], + "geometry": [ + { "lat": 40.8489805, "lon": -74.0092220 }, + { "lat": 40.8490530, "lon": -74.0092227 }, + { "lat": 40.8491715, "lon": -74.0091741 }, + { "lat": 40.8492994, "lon": -74.0090909 }, + { "lat": 40.8493663, "lon": -74.0090400 }, + { "lat": 40.8495205, "lon": -74.0088951 }, + { "lat": 40.8496727, "lon": -74.0087637 }, + { "lat": 40.8499283, "lon": -74.0085250 }, + { "lat": 40.8500663, "lon": -74.0083989 }, + { "lat": 40.8501738, "lon": -74.0083184 }, + { "lat": 40.8502834, "lon": -74.0082594 }, + { "lat": 40.8506181, "lon": -74.0081066 }, + { "lat": 40.8511314, "lon": -74.0078598 }, + { "lat": 40.8516952, "lon": -74.0076023 }, + { "lat": 40.8518214, "lon": -74.0075409 }, + { "lat": 40.8518647, "lon": -74.0075204 }, + { "lat": 40.8519078, "lon": -74.0075000 }, + { "lat": 40.8519734, "lon": -74.0074601 }, + { "lat": 40.8520294, "lon": -74.0074121 }, + { "lat": 40.8520769, "lon": -74.0073394 }, + { "lat": 40.8521134, "lon": -74.0072482 }, + { "lat": 40.8521317, "lon": -74.0071758 }, + { "lat": 40.8521380, "lon": -74.0071023 }, + { "lat": 40.8521327, "lon": -74.0070260 }, + { "lat": 40.8521074, "lon": -74.0069005 }, + { "lat": 40.8519815, "lon": -74.0062907 }, + { "lat": 40.8519369, "lon": -74.0060654 }, + { "lat": 40.8518882, "lon": -74.0058294 }, + { "lat": 40.8518651, "lon": -74.0057425 }, + { "lat": 40.8518355, "lon": -74.0056947 }, + { "lat": 40.8517940, "lon": -74.0056776 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239020450, + "bounds": { + "minlat": 40.8495845, + "minlon": -74.0066340, + "maxlat": 40.8498896, + "maxlon": -74.0061834 + }, + "nodes": [ + 2468337385, + 2468337512, + 2468337558, + 2468337559, + 2468337530, + 2468337529, + 2468337534, + 2468337532, + 2468339916, + 2468339896, + 2468339919, + 2468339856, + 2468339893, + 4472825389, + 2468337385 + ], + "geometry": [ + { "lat": 40.8495892, "lon": -74.0062238 }, + { "lat": 40.8496686, "lon": -74.0061834 }, + { "lat": 40.8497417, "lon": -74.0061888 }, + { "lat": 40.8497815, "lon": -74.0062192 }, + { "lat": 40.8498011, "lon": -74.0063053 }, + { "lat": 40.8498134, "lon": -74.0064705 }, + { "lat": 40.8498364, "lon": -74.0065313 }, + { "lat": 40.8498896, "lon": -74.0066047 }, + { "lat": 40.8498005, "lon": -74.0066287 }, + { "lat": 40.8497518, "lon": -74.0066340 }, + { "lat": 40.8497153, "lon": -74.0066206 }, + { "lat": 40.8496849, "lon": -74.0065911 }, + { "lat": 40.8496708, "lon": -74.0065648 }, + { "lat": 40.8495845, "lon": -74.0062620 }, + { "lat": 40.8495892, "lon": -74.0062238 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239436978, + "bounds": { + "minlat": 40.7493558, + "minlon": -73.9539866, + "maxlat": 40.7494987, + "maxlon": -73.9539524 + }, + "nodes": [ + 2472137170, + 2472137176 + ], + "geometry": [ + { "lat": 40.7494987, "lon": -73.9539524 }, + { "lat": 40.7493558, "lon": -73.9539866 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239436979, + "bounds": { + "minlat": 40.7494987, + "minlon": -73.9541508, + "maxlat": 40.7502010, + "maxlon": -73.9538007 + }, + "nodes": [ + 2472137170, + 2472137185, + 2472137180, + 2472137177, + 2472137178, + 2472137179, + 2472137180 + ], + "geometry": [ + { "lat": 40.7494987, "lon": -73.9539524 }, + { "lat": 40.7496043, "lon": -73.9539286 }, + { "lat": 40.7497695, "lon": -73.9538913 }, + { "lat": 40.7501709, "lon": -73.9538007 }, + { "lat": 40.7502010, "lon": -73.9539765 }, + { "lat": 40.7498499, "lon": -73.9541508 }, + { "lat": 40.7497695, "lon": -73.9538913 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239436980, + "bounds": { + "minlat": 40.7495330, + "minlon": -73.9545634, + "maxlat": 40.7497070, + "maxlon": -73.9541353 + }, + "nodes": [ + 2472137181, + 2472137182, + 2472137183, + 2472137184 + ], + "geometry": [ + { "lat": 40.7496114, "lon": -73.9545634 }, + { "lat": 40.7495330, "lon": -73.9541693 }, + { "lat": 40.7496394, "lon": -73.9541353 }, + { "lat": 40.7497070, "lon": -73.9544896 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239436981, + "bounds": { + "minlat": 40.7496043, + "minlon": -73.9541353, + "maxlat": 40.7496394, + "maxlon": -73.9539286 + }, + "nodes": [ + 2472137183, + 2472137185 + ], + "geometry": [ + { "lat": 40.7496394, "lon": -73.9541353 }, + { "lat": 40.7496043, "lon": -73.9539286 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239436989, + "bounds": { + "minlat": 40.7486335, + "minlon": -73.9500428, + "maxlat": 40.7487593, + "maxlon": -73.9500012 + }, + "nodes": [ + 2472137214, + 11622964600, + 2472137215 + ], + "geometry": [ + { "lat": 40.7486335, "lon": -73.9500428 }, + { "lat": 40.7487363, "lon": -73.9500088 }, + { "lat": 40.7487593, "lon": -73.9500012 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239436990, + "bounds": { + "minlat": 40.7487593, + "minlon": -73.9500012, + "maxlat": 40.7488389, + "maxlon": -73.9498268 + }, + "nodes": [ + 2472137216, + 2472137217, + 2472137215 + ], + "geometry": [ + { "lat": 40.7488119, "lon": -73.9498268 }, + { "lat": 40.7488389, "lon": -73.9499736 }, + { "lat": 40.7487593, "lon": -73.9500012 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239438092, + "bounds": { + "minlat": 40.7470101, + "minlon": -73.9526398, + "maxlat": 40.7470947, + "maxlon": -73.9522140 + }, + "nodes": [ + 5481866291, + 11622832159, + 2472142378 + ], + "geometry": [ + { "lat": 40.7470101, "lon": -73.9522140 }, + { "lat": 40.7470740, "lon": -73.9525357 }, + { "lat": 40.7470947, "lon": -73.9526398 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239438093, + "bounds": { + "minlat": 40.7472641, + "minlon": -73.9525559, + "maxlat": 40.7473506, + "maxlon": -73.9521230 + }, + "nodes": [ + 5481866289, + 11622964708, + 2472142380 + ], + "geometry": [ + { "lat": 40.7472641, "lon": -73.9521230 }, + { "lat": 40.7473296, "lon": -73.9524510 }, + { "lat": 40.7473506, "lon": -73.9525559 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239438094, + "bounds": { + "minlat": 40.7471285, + "minlon": -73.9525997, + "maxlat": 40.7472144, + "maxlon": -73.9521630 + }, + "nodes": [ + 5481866290, + 11622832160, + 2472142384 + ], + "geometry": [ + { "lat": 40.7471285, "lon": -73.9521630 }, + { "lat": 40.7471940, "lon": -73.9524959 }, + { "lat": 40.7472144, "lon": -73.9525997 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239438255, + "bounds": { + "minlat": 40.7387346, + "minlon": -73.9551440, + "maxlat": 40.7390299, + "maxlon": -73.9550135 + }, + "nodes": [ + 2472143469, + 8097082858, + 2472143471, + 2473602891 + ], + "geometry": [ + { "lat": 40.7390299, "lon": -73.9550135 }, + { "lat": 40.7388105, "lon": -73.9550840 }, + { "lat": 40.7388035, "lon": -73.9550881 }, + { "lat": 40.7387346, "lon": -73.9551440 } + ], + "tags": { + "highway": "pedestrian", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 239492647, + "bounds": { + "minlat": 40.7527820, + "minlon": -73.9485746, + "maxlat": 40.7540775, + "maxlon": -73.9455452 + }, + "nodes": [ + 2472695916, + 2472695935, + 8062562641, + 2472695920, + 2472695922, + 2472695924, + 7746891094 + ], + "geometry": [ + { "lat": 40.7527820, "lon": -73.9455452 }, + { "lat": 40.7529191, "lon": -73.9458631 }, + { "lat": 40.7531564, "lon": -73.9464190 }, + { "lat": 40.7532651, "lon": -73.9466737 }, + { "lat": 40.7536599, "lon": -73.9475836 }, + { "lat": 40.7540114, "lon": -73.9483949 }, + { "lat": 40.7540775, "lon": -73.9485746 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Queens Plaza South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 239584416, + "bounds": { + "minlat": 40.7376199, + "minlon": -73.9554788, + "maxlat": 40.7380005, + "maxlon": -73.9553711 + }, + "nodes": [ + 2473602886, + 10170251942, + 9996409573, + 2473602887 + ], + "geometry": [ + { "lat": 40.7376199, "lon": -73.9554788 }, + { "lat": 40.7378431, "lon": -73.9554263 }, + { "lat": 40.7379278, "lon": -73.9554052 }, + { "lat": 40.7380005, "lon": -73.9553711 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Manhattan", + "tiger:name_type": "Ave", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 239584419, + "bounds": { + "minlat": 40.7380005, + "minlon": -73.9554177, + "maxlat": 40.7387854, + "maxlon": -73.9551440 + }, + "nodes": [ + 2473602887, + 8097025097, + 2473602891, + 2473602890 + ], + "geometry": [ + { "lat": 40.7380005, "lon": -73.9553711 }, + { "lat": 40.7380718, "lon": -73.9553399 }, + { "lat": 40.7387346, "lon": -73.9551440 }, + { "lat": 40.7387854, "lon": -73.9554177 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Manhattan", + "tiger:name_type": "Ave", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 239584449, + "bounds": { + "minlat": 40.7362185, + "minlon": -73.9487085, + "maxlat": 40.7373741, + "maxlon": -73.9473699 + }, + "nodes": [ + 2473603044, + 2473603045, + 2473603046, + 2473603047, + 2473603056, + 2473603054, + 2473603058, + 2473603060, + 2473603062, + 2473603048, + 2473603049, + 2473603050 + ], + "geometry": [ + { "lat": 40.7362842, "lon": -73.9487085 }, + { "lat": 40.7363172, "lon": -73.9484501 }, + { "lat": 40.7363682, "lon": -73.9483508 }, + { "lat": 40.7362185, "lon": -73.9478815 }, + { "lat": 40.7363750, "lon": -73.9477927 }, + { "lat": 40.7365248, "lon": -73.9477077 }, + { "lat": 40.7366751, "lon": -73.9476224 }, + { "lat": 40.7368281, "lon": -73.9475356 }, + { "lat": 40.7369770, "lon": -73.9474511 }, + { "lat": 40.7371201, "lon": -73.9473699 }, + { "lat": 40.7372949, "lon": -73.9478963 }, + { "lat": 40.7373741, "lon": -73.9481336 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239584451, + "bounds": { + "minlat": 40.7363682, + "minlon": -73.9483508, + "maxlat": 40.7372949, + "maxlon": -73.9478963 + }, + "nodes": [ + 2473603046, + 2473603051, + 2473603055, + 2473603052, + 2473603053, + 2473603057, + 2473603059, + 2473603061, + 2473603049 + ], + "geometry": [ + { "lat": 40.7363682, "lon": -73.9483508 }, + { "lat": 40.7364781, "lon": -73.9482868 }, + { "lat": 40.7365361, "lon": -73.9482971 }, + { "lat": 40.7365724, "lon": -73.9482994 }, + { "lat": 40.7366966, "lon": -73.9482301 }, + { "lat": 40.7368467, "lon": -73.9481464 }, + { "lat": 40.7369990, "lon": -73.9480619 }, + { "lat": 40.7371486, "lon": -73.9479782 }, + { "lat": 40.7372949, "lon": -73.9478963 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239584453, + "bounds": { + "minlat": 40.7365248, + "minlon": -73.9482301, + "maxlat": 40.7366966, + "maxlon": -73.9477077 + }, + "nodes": [ + 2473603053, + 2473603054 + ], + "geometry": [ + { "lat": 40.7366966, "lon": -73.9482301 }, + { "lat": 40.7365248, "lon": -73.9477077 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239584455, + "bounds": { + "minlat": 40.7363750, + "minlon": -73.9482971, + "maxlat": 40.7365361, + "maxlon": -73.9477927 + }, + "nodes": [ + 2473603055, + 2473603056 + ], + "geometry": [ + { "lat": 40.7365361, "lon": -73.9482971 }, + { "lat": 40.7363750, "lon": -73.9477927 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239584457, + "bounds": { + "minlat": 40.7366751, + "minlon": -73.9481464, + "maxlat": 40.7368467, + "maxlon": -73.9476224 + }, + "nodes": [ + 2473603057, + 2473603058 + ], + "geometry": [ + { "lat": 40.7368467, "lon": -73.9481464 }, + { "lat": 40.7366751, "lon": -73.9476224 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239584458, + "bounds": { + "minlat": 40.7368281, + "minlon": -73.9480619, + "maxlat": 40.7369990, + "maxlon": -73.9475356 + }, + "nodes": [ + 2473603059, + 2473603060 + ], + "geometry": [ + { "lat": 40.7369990, "lon": -73.9480619 }, + { "lat": 40.7368281, "lon": -73.9475356 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239584461, + "bounds": { + "minlat": 40.7369770, + "minlon": -73.9479782, + "maxlat": 40.7371486, + "maxlon": -73.9474511 + }, + "nodes": [ + 2473603061, + 2473603062 + ], + "geometry": [ + { "lat": 40.7371486, "lon": -73.9479782 }, + { "lat": 40.7369770, "lon": -73.9474511 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239584464, + "bounds": { + "minlat": 40.7370184, + "minlon": -73.9503192, + "maxlat": 40.7379654, + "maxlon": -73.9481336 + }, + "nodes": [ + 2473603050, + 2473603063, + 11187186021 + ], + "geometry": [ + { "lat": 40.7373741, "lon": -73.9481336 }, + { "lat": 40.7379654, "lon": -73.9497804 }, + { "lat": 40.7370184, "lon": -73.9503192 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 239584471, + "bounds": { + "minlat": 40.7357546, + "minlon": -73.9479031, + "maxlat": 40.7369244, + "maxlon": -73.9466196 + }, + "nodes": [ + 2473603078, + 2473603087, + 2473603088, + 2473603077, + 2473603089, + 2473603076, + 2473603093, + 2473603075, + 2473603090, + 2473603095, + 2473603079, + 2473603080, + 2473603092, + 2473603081, + 2473603082 + ], + "geometry": [ + { "lat": 40.7357546, "lon": -73.9471618 }, + { "lat": 40.7363548, "lon": -73.9468472 }, + { "lat": 40.7364350, "lon": -73.9467560 }, + { "lat": 40.7366785, "lon": -73.9466196 }, + { "lat": 40.7367433, "lon": -73.9466370 }, + { "lat": 40.7367929, "lon": -73.9466877 }, + { "lat": 40.7368342, "lon": -73.9468237 }, + { "lat": 40.7369092, "lon": -73.9470630 }, + { "lat": 40.7369244, "lon": -73.9471578 }, + { "lat": 40.7369143, "lon": -73.9472126 }, + { "lat": 40.7368708, "lon": -73.9472593 }, + { "lat": 40.7367625, "lon": -73.9473461 }, + { "lat": 40.7366926, "lon": -73.9473891 }, + { "lat": 40.7365824, "lon": -73.9474570 }, + { "lat": 40.7357758, "lon": -73.9479031 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 239584474, + "bounds": { + "minlat": 40.7355849, + "minlon": -73.9498517, + "maxlat": 40.7358205, + "maxlon": -73.9471618 + }, + "nodes": [ + 3430220681, + 3430220694, + 2473603082, + 13720153235, + 3430220641, + 2473603078 + ], + "geometry": [ + { "lat": 40.7355849, "lon": -73.9498517 }, + { "lat": 40.7357168, "lon": -73.9485053 }, + { "lat": 40.7357758, "lon": -73.9479031 }, + { "lat": 40.7357900, "lon": -73.9477282 }, + { "lat": 40.7358205, "lon": -73.9473540 }, + { "lat": 40.7357546, "lon": -73.9471618 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 239584475, + "bounds": { + "minlat": 40.7366370, + "minlon": -73.9473891, + "maxlat": 40.7369092, + "maxlon": -73.9470630 + }, + "nodes": [ + 2473603075, + 2473603091, + 2473603092 + ], + "geometry": [ + { "lat": 40.7369092, "lon": -73.9470630 }, + { "lat": 40.7366370, "lon": -73.9472073 }, + { "lat": 40.7366926, "lon": -73.9473891 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239584477, + "bounds": { + "minlat": 40.7365642, + "minlon": -73.9472073, + "maxlat": 40.7368342, + "maxlon": -73.9468237 + }, + "nodes": [ + 2473603093, + 2473603094, + 2473603091 + ], + "geometry": [ + { "lat": 40.7368342, "lon": -73.9468237 }, + { "lat": 40.7365642, "lon": -73.9469642 }, + { "lat": 40.7366370, "lon": -73.9472073 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239584839, + "bounds": { + "minlat": 40.7365754, + "minlon": -73.9508332, + "maxlat": 40.7366974, + "maxlon": -73.9506763 + }, + "nodes": [ + 2473605182, + 2473605177, + 2473605178 + ], + "geometry": [ + { "lat": 40.7366690, "lon": -73.9506763 }, + { "lat": 40.7366974, "lon": -73.9507675 }, + { "lat": 40.7365754, "lon": -73.9508332 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 239584841, + "bounds": { + "minlat": 40.7366690, + "minlon": -73.9506763, + "maxlat": 40.7368365, + "maxlon": -73.9505795 + }, + "nodes": [ + 2473605182, + 2473602924, + 8097025101, + 2473605183 + ], + "geometry": [ + { "lat": 40.7366690, "lon": -73.9506763 }, + { "lat": 40.7367444, "lon": -73.9506350 }, + { "lat": 40.7367708, "lon": -73.9506197 }, + { "lat": 40.7368365, "lon": -73.9505795 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 239623558, + "bounds": { + "minlat": 40.7341475, + "minlon": -73.9586354, + "maxlat": 40.7362211, + "maxlon": -73.9582957 + }, + "nodes": [ + 42486597, + 9920934951, + 7008335429, + 42520825, + 7008335430, + 9997952324, + 2629142962, + 7008335437, + 42520827, + 7008335438, + 5801603716, + 8211152863, + 42520831 + ], + "geometry": [ + { "lat": 40.7341475, "lon": -73.9582957 }, + { "lat": 40.7342079, "lon": -73.9583054 }, + { "lat": 40.7347795, "lon": -73.9584003 }, + { "lat": 40.7348415, "lon": -73.9584098 }, + { "lat": 40.7349114, "lon": -73.9584215 }, + { "lat": 40.7349412, "lon": -73.9584260 }, + { "lat": 40.7353796, "lon": -73.9584974 }, + { "lat": 40.7354950, "lon": -73.9585164 }, + { "lat": 40.7355605, "lon": -73.9585271 }, + { "lat": 40.7356215, "lon": -73.9585380 }, + { "lat": 40.7361048, "lon": -73.9586163 }, + { "lat": 40.7361408, "lon": -73.9586201 }, + { "lat": 40.7362211, "lon": -73.9586354 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 239623559, + "bounds": { + "minlat": 40.7486335, + "minlon": -73.9516444, + "maxlat": 40.7489444, + "maxlon": -73.9500428 + }, + "nodes": [ + 2472137214, + 42825539 + ], + "geometry": [ + { "lat": 40.7486335, "lon": -73.9500428 }, + { "lat": 40.7489444, "lon": -73.9516444 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 239623561, + "bounds": { + "minlat": 40.7334328, + "minlon": -73.9581783, + "maxlat": 40.7337436, + "maxlon": -73.9548439 + }, + "nodes": [ + 42516047, + 7008335410, + 5481915309, + 7008335413, + 42516051 + ], + "geometry": [ + { "lat": 40.7334328, "lon": -73.9581783 }, + { "lat": 40.7334422, "lon": -73.9580767 }, + { "lat": 40.7336178, "lon": -73.9561393 }, + { "lat": 40.7337321, "lon": -73.9549583 }, + { "lat": 40.7337436, "lon": -73.9548439 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Green Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Green", + "tiger:name_type": "St", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 239623562, + "bounds": { + "minlat": 40.7224522, + "minlon": -73.9562761, + "maxlat": 40.7233950, + "maxlon": -73.9547639 + }, + "nodes": [ + 42506291, + 9779533049, + 5801598838, + 9789335907, + 42479249 + ], + "geometry": [ + { "lat": 40.7233950, "lon": -73.9562761 }, + { "lat": 40.7233576, "lon": -73.9562168 }, + { "lat": 40.7225331, "lon": -73.9548951 }, + { "lat": 40.7225160, "lon": -73.9548636 }, + { "lat": 40.7224522, "lon": -73.9547639 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North 14th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "14th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 239625022, + "bounds": { + "minlat": 40.7015605, + "minlon": -73.9886274, + "maxlat": 40.7015974, + "maxlon": -73.9876747 + }, + "nodes": [ + 42469205, + 10722370783, + 2358967543, + 10726079527, + 42492404 + ], + "geometry": [ + { "lat": 40.7015605, "lon": -73.9876747 }, + { "lat": 40.7015636, "lon": -73.9877681 }, + { "lat": 40.7015641, "lon": -73.9877843 }, + { "lat": 40.7015947, "lon": -73.9885447 }, + { "lat": 40.7015974, "lon": -73.9886274 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "York Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:name_base": "York", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 239625023, + "bounds": { + "minlat": 40.7006764, + "minlon": -73.9877408, + "maxlat": 40.7011147, + "maxlon": -73.9877136 + }, + "nodes": [ + 11679066076, + 10722387708, + 42469212 + ], + "geometry": [ + { "lat": 40.7011147, "lon": -73.9877136 }, + { "lat": 40.7007281, "lon": -73.9877379 }, + { "lat": 40.7006764, "lon": -73.9877408 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 239626764, + "bounds": { + "minlat": 40.6992430, + "minlon": -73.9755623, + "maxlat": 40.7004608, + "maxlon": -73.9736350 + }, + "nodes": [ + 42496966, + 9998788862, + 7835899114, + 42496969 + ], + "geometry": [ + { "lat": 40.6992430, "lon": -73.9755623 }, + { "lat": 40.6993219, "lon": -73.9754536 }, + { "lat": 40.7003661, "lon": -73.9737765 }, + { "lat": 40.7004608, "lon": -73.9736350 } + ], + "tags": { + "access": "private", + "bus": "yes", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "unclassified", + "name": "5th Street", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 239626770, + "bounds": { + "minlat": 40.7015288, + "minlon": -73.9867452, + "maxlat": 40.7024238, + "maxlon": -73.9866885 + }, + "nodes": [ + 42497721, + 9795347325, + 9805235578, + 42497720 + ], + "geometry": [ + { "lat": 40.7015288, "lon": -73.9867445 }, + { "lat": 40.7015947, "lon": -73.9867452 }, + { "lat": 40.7023638, "lon": -73.9866922 }, + { "lat": 40.7024238, "lon": -73.9866885 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Jay", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 239626771, + "bounds": { + "minlat": 40.7023515, + "minlon": -73.9866885, + "maxlat": 40.7024238, + "maxlon": -73.9847051 + }, + "nodes": [ + 42497720, + 9805235577, + 10722370766, + 10722370765, + 7707712197 + ], + "geometry": [ + { "lat": 40.7024238, "lon": -73.9866885 }, + { "lat": 40.7024204, "lon": -73.9865946 }, + { "lat": 40.7023572, "lon": -73.9848613 }, + { "lat": 40.7023549, "lon": -73.9847993 }, + { "lat": 40.7023515, "lon": -73.9847051 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Front", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 239629071, + "bounds": { + "minlat": 40.7068324, + "minlon": -73.9683562, + "maxlat": 40.7070033, + "maxlon": -73.9672797 + }, + "nodes": [ + 42469447, + 3552666734, + 13164752563, + 6248573342, + 42477968 + ], + "geometry": [ + { "lat": 40.7068489, "lon": -73.9683562 }, + { "lat": 40.7068324, "lon": -73.9682757 }, + { "lat": 40.7069325, "lon": -73.9676988 }, + { "lat": 40.7069824, "lon": -73.9674116 }, + { "lat": 40.7070033, "lon": -73.9672797 } + ], + "tags": { + "highway": "tertiary", + "name": "Division Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Division", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 239629072, + "bounds": { + "minlat": 40.7031324, + "minlon": -73.9663165, + "maxlat": 40.7048381, + "maxlon": -73.9643999 + }, + "nodes": [ + 42506366, + 6248573332, + 42506371, + 42475777, + 9776829257, + 42506392 + ], + "geometry": [ + { "lat": 40.7048381, "lon": -73.9663165 }, + { "lat": 40.7047686, "lon": -73.9662216 }, + { "lat": 40.7042728, "lon": -73.9656651 }, + { "lat": 40.7037186, "lon": -73.9650446 }, + { "lat": 40.7032107, "lon": -73.9644807 }, + { "lat": 40.7031324, "lon": -73.9643999 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 239629073, + "bounds": { + "minlat": 40.7068489, + "minlon": -73.9684536, + "maxlat": 40.7089065, + "maxlon": -73.9683562 + }, + "nodes": [ + 42469447, + 4999422881, + 4999422250, + 4999422900, + 42469449, + 4999422304, + 4456578359, + 6877134706, + 1907729893, + 4207774906 + ], + "geometry": [ + { "lat": 40.7068489, "lon": -73.9683562 }, + { "lat": 40.7069437, "lon": -73.9683690 }, + { "lat": 40.7071132, "lon": -73.9683806 }, + { "lat": 40.7076898, "lon": -73.9683974 }, + { "lat": 40.7077513, "lon": -73.9684018 }, + { "lat": 40.7078291, "lon": -73.9684025 }, + { "lat": 40.7084779, "lon": -73.9684361 }, + { "lat": 40.7085291, "lon": -73.9684387 }, + { "lat": 40.7086422, "lon": -73.9684444 }, + { "lat": 40.7089065, "lon": -73.9684536 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 239629074, + "bounds": { + "minlat": 40.7044291, + "minlon": -73.9669128, + "maxlat": 40.7048381, + "maxlon": -73.9663165 + }, + "nodes": [ + 42506366, + 5849350249, + 9602393170 + ], + "geometry": [ + { "lat": 40.7048381, "lon": -73.9663165 }, + { "lat": 40.7047667, "lon": -73.9664253 }, + { "lat": 40.7044291, "lon": -73.9669128 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "name": "Clymer Street", + "name:etymology:wikidata": "Q708913", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Clymer", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 239629076, + "bounds": { + "minlat": 40.7028673, + "minlon": -73.9705486, + "maxlat": 40.7046683, + "maxlon": -73.9676557 + }, + "nodes": [ + 7711046932, + 9998827365, + 13333654391, + 6863619420, + 42466706 + ], + "geometry": [ + { "lat": 40.7028673, "lon": -73.9676557 }, + { "lat": 40.7029171, "lon": -73.9677386 }, + { "lat": 40.7030623, "lon": -73.9679761 }, + { "lat": 40.7037243, "lon": -73.9690594 }, + { "lat": 40.7046683, "lon": -73.9705486 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Railroad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Railroad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 239629079, + "bounds": { + "minlat": 40.7023557, + "minlon": -73.9703117, + "maxlat": 40.7036695, + "maxlon": -73.9682176 + }, + "nodes": [ + 7711046931, + 9998827362, + 13333654388, + 6863619419, + 8855131442 + ], + "geometry": [ + { "lat": 40.7023557, "lon": -73.9682176 }, + { "lat": 40.7024077, "lon": -73.9682966 }, + { "lat": 40.7026311, "lon": -73.9686538 }, + { "lat": 40.7032148, "lon": -73.9695871 }, + { "lat": 40.7036695, "lon": -73.9703117 } + ], + "tags": { + "access": "private", + "cycleway": "lane", + "highway": "unclassified", + "name": "Gee Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Gee", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 239753701, + "bounds": { + "minlat": 40.7373671, + "minlon": -73.9522456, + "maxlat": 40.7380177, + "maxlon": -73.9519371 + }, + "nodes": [ + 2475239554, + 8097082885, + 2475239555, + 2475239515, + 5481915267, + 5481915268, + 5481915262 + ], + "geometry": [ + { "lat": 40.7373671, "lon": -73.9522456 }, + { "lat": 40.7374339, "lon": -73.9522056 }, + { "lat": 40.7374481, "lon": -73.9521960 }, + { "lat": 40.7374898, "lon": -73.9521727 }, + { "lat": 40.7377126, "lon": -73.9520409 }, + { "lat": 40.7379140, "lon": -73.9519371 }, + { "lat": 40.7380177, "lon": -73.9521544 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239753703, + "bounds": { + "minlat": 40.7370840, + "minlon": -73.9513577, + "maxlat": 40.7373518, + "maxlon": -73.9512116 + }, + "nodes": [ + 2475239514, + 2475239556, + 8097082820, + 2475239557 + ], + "geometry": [ + { "lat": 40.7373518, "lon": -73.9512116 }, + { "lat": 40.7371708, "lon": -73.9513120 }, + { "lat": 40.7371408, "lon": -73.9513276 }, + { "lat": 40.7370840, "lon": -73.9513577 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239753706, + "bounds": { + "minlat": 40.7376610, + "minlon": -73.9527849, + "maxlat": 40.7377149, + "maxlon": -73.9523240 + }, + "nodes": [ + 2475239558, + 8097082945, + 2475239536, + 5481915257, + 5481915256 + ], + "geometry": [ + { "lat": 40.7376994, "lon": -73.9527849 }, + { "lat": 40.7377034, "lon": -73.9527049 }, + { "lat": 40.7377061, "lon": -73.9526367 }, + { "lat": 40.7377149, "lon": -73.9525091 }, + { "lat": 40.7376610, "lon": -73.9523240 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239753708, + "bounds": { + "minlat": 40.7380674, + "minlon": -73.9528445, + "maxlat": 40.7380819, + "maxlon": -73.9526945 + }, + "nodes": [ + 2475239535, + 8097082878, + 2475239560 + ], + "geometry": [ + { "lat": 40.7380819, "lon": -73.9526945 }, + { "lat": 40.7380753, "lon": -73.9527625 }, + { "lat": 40.7380674, "lon": -73.9528445 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239753710, + "bounds": { + "minlat": 40.7372488, + "minlon": -73.9521530, + "maxlat": 40.7373228, + "maxlon": -73.9521071 + }, + "nodes": [ + 2475239576, + 8097082837, + 2475239577 + ], + "geometry": [ + { "lat": 40.7372488, "lon": -73.9521530 }, + { "lat": 40.7372611, "lon": -73.9521452 }, + { "lat": 40.7373228, "lon": -73.9521071 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239753712, + "bounds": { + "minlat": 40.7371564, + "minlon": -73.9518657, + "maxlat": 40.7372265, + "maxlon": -73.9518093 + }, + "nodes": [ + 2475239582, + 8097025065, + 2475239581 + ], + "geometry": [ + { "lat": 40.7372265, "lon": -73.9518093 }, + { "lat": 40.7371686, "lon": -73.9518556 }, + { "lat": 40.7371564, "lon": -73.9518657 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239833167, + "bounds": { + "minlat": 40.7533334, + "minlon": -73.9502407, + "maxlat": 40.7533998, + "maxlon": -73.9501288 + }, + "nodes": [ + 2470426846, + 6452708754, + 2476133307 + ], + "geometry": [ + { "lat": 40.7533998, "lon": -73.9502407 }, + { "lat": 40.7533816, "lon": -73.9502101 }, + { "lat": 40.7533334, "lon": -73.9501288 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 239988110, + "bounds": { + "minlat": 40.7307190, + "minlon": -74.0046246, + "maxlat": 40.7310034, + "maxlon": -74.0044600 + }, + "nodes": [ + 42430782, + 8214320098, + 10170666555, + 42431528 + ], + "geometry": [ + { "lat": 40.7307190, "lon": -74.0044600 }, + { "lat": 40.7308650, "lon": -74.0045445 }, + { "lat": 40.7309715, "lon": -74.0046062 }, + { "lat": 40.7310034, "lon": -74.0046246 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Bedford Street", + "name:etymology:wikidata": "Q64402624", + "name:ko": "배드포드 스트리트", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 240013451, + "bounds": { + "minlat": 40.7420660, + "minlon": -73.9508408, + "maxlat": 40.7420937, + "maxlon": -73.9507008 + }, + "nodes": [ + 42803159, + 5935119763 + ], + "geometry": [ + { "lat": 40.7420660, "lon": -73.9507008 }, + { "lat": 40.7420937, "lon": -73.9508408 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "50th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 240194178, + "bounds": { + "minlat": 40.7494940, + "minlon": -73.9548020, + "maxlat": 40.7503901, + "maxlon": -73.9541886 + }, + "nodes": [ + 2479485255, + 2479485256 + ], + "geometry": [ + { "lat": 40.7503901, "lon": -73.9541886 }, + { "lat": 40.7494940, "lon": -73.9548020 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 240199966, + "bounds": { + "minlat": 40.7330542, + "minlon": -73.9621145, + "maxlat": 40.7332729, + "maxlon": -73.9598151 + }, + "nodes": [ + 7976921925, + 9121317161, + 9121317159, + 7154190651, + 7154190652, + 2479540745, + 7008335422, + 42516043 + ], + "geometry": [ + { "lat": 40.7330542, "lon": -73.9621145 }, + { "lat": 40.7331300, "lon": -73.9613123 }, + { "lat": 40.7331412, "lon": -73.9611934 }, + { "lat": 40.7332230, "lon": -73.9603274 }, + { "lat": 40.7332415, "lon": -73.9601317 }, + { "lat": 40.7332601, "lon": -73.9599344 }, + { "lat": 40.7332628, "lon": -73.9599060 }, + { "lat": 40.7332729, "lon": -73.9598151 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Green Street" + } +}, +{ + "type": "way", + "id": 240592692, + "bounds": { + "minlat": 40.7753210, + "minlon": -73.9352860, + "maxlat": 40.7774959, + "maxlon": -73.9341466 + }, + "nodes": [ + 7745133383, + 8158221255, + 7768475528, + 7745197931, + 7768475542, + 13701510265, + 7700895896, + 2891718113, + 7747684353, + 7756443005, + 42811423 + ], + "geometry": [ + { "lat": 40.7774959, "lon": -73.9341466 }, + { "lat": 40.7768734, "lon": -73.9344745 }, + { "lat": 40.7768324, "lon": -73.9344961 }, + { "lat": 40.7767748, "lon": -73.9345264 }, + { "lat": 40.7767124, "lon": -73.9345595 }, + { "lat": 40.7763683, "lon": -73.9347369 }, + { "lat": 40.7763333, "lon": -73.9347550 }, + { "lat": 40.7756129, "lon": -73.9351329 }, + { "lat": 40.7754443, "lon": -73.9352213 }, + { "lat": 40.7754154, "lon": -73.9352365 }, + { "lat": 40.7753210, "lon": -73.9352860 } + ], + "tags": { + "highway": "residential", + "name": "2nd Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 240592693, + "bounds": { + "minlat": 40.7744296, + "minlon": -73.9367519, + "maxlat": 40.7755939, + "maxlon": -73.9361399 + }, + "nodes": [ + 42811421, + 8194591507, + 7756442991, + 2457195018, + 1891200005, + 8194591502, + 2459371133, + 42884509 + ], + "geometry": [ + { "lat": 40.7755939, "lon": -73.9361399 }, + { "lat": 40.7755732, "lon": -73.9361510 }, + { "lat": 40.7755238, "lon": -73.9361773 }, + { "lat": 40.7750698, "lon": -73.9364199 }, + { "lat": 40.7750385, "lon": -73.9364358 }, + { "lat": 40.7746167, "lon": -73.9366548 }, + { "lat": 40.7745251, "lon": -73.9367023 }, + { "lat": 40.7744296, "lon": -73.9367519 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "name": "1st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 240592694, + "bounds": { + "minlat": 40.7758570, + "minlon": -73.9345264, + "maxlat": 40.7767748, + "maxlon": -73.9316730 + }, + "nodes": [ + 7745197931, + 7768475535, + 7745149786, + 5487886271, + 7768475514, + 42824480, + 7768475521, + 42861342, + 6987137100, + 721845311 + ], + "geometry": [ + { "lat": 40.7767748, "lon": -73.9345264 }, + { "lat": 40.7767487, "lon": -73.9344457 }, + { "lat": 40.7766606, "lon": -73.9341739 }, + { "lat": 40.7765008, "lon": -73.9336804 }, + { "lat": 40.7764711, "lon": -73.9335882 }, + { "lat": 40.7764495, "lon": -73.9335209 }, + { "lat": 40.7764232, "lon": -73.9334397 }, + { "lat": 40.7761594, "lon": -73.9326266 }, + { "lat": 40.7759832, "lon": -73.9320828 }, + { "lat": 40.7758570, "lon": -73.9316730 } + ], + "tags": { + "highway": "residential", + "name": "26th Avenue" + } +}, +{ + "type": "way", + "id": 241051234, + "bounds": { + "minlat": 40.7511335, + "minlon": -73.9595973, + "maxlat": 40.7511776, + "maxlon": -73.9595547 + }, + "nodes": [ + 42422691, + 2487361105 + ], + "geometry": [ + { "lat": 40.7511776, "lon": -73.9595547 }, + { "lat": 40.7511335, "lon": -73.9595973 } + ], + "tags": { + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 241051235, + "bounds": { + "minlat": 40.7514401, + "minlon": -73.9601463, + "maxlat": 40.7514868, + "maxlon": -73.9600967 + }, + "nodes": [ + 593473315, + 2487361107 + ], + "geometry": [ + { "lat": 40.7514868, "lon": -73.9600967 }, + { "lat": 40.7514401, "lon": -73.9601463 } + ], + "tags": { + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 241365520, + "bounds": { + "minlat": 40.7579539, + "minlon": -73.9098884, + "maxlat": 40.7645948, + "maxlon": -73.9045068 + }, + "nodes": [ + 2520377419, + 7661206804, + 5482199727, + 4912921592, + 42807796, + 4912921573, + 5904706528, + 5904706532, + 6453077970, + 4309855025, + 6453077971, + 3570193154, + 7984575184, + 3570193158, + 8718502625, + 3570193163, + 8718502627, + 3570224393, + 42807781 + ], + "geometry": [ + { "lat": 40.7579539, "lon": -73.9098884 }, + { "lat": 40.7580223, "lon": -73.9098161 }, + { "lat": 40.7582634, "lon": -73.9096517 }, + { "lat": 40.7604657, "lon": -73.9078616 }, + { "lat": 40.7605417, "lon": -73.9077999 }, + { "lat": 40.7606074, "lon": -73.9077465 }, + { "lat": 40.7608450, "lon": -73.9075534 }, + { "lat": 40.7617782, "lon": -73.9067948 }, + { "lat": 40.7620578, "lon": -73.9065669 }, + { "lat": 40.7621188, "lon": -73.9065156 }, + { "lat": 40.7621787, "lon": -73.9064652 }, + { "lat": 40.7623878, "lon": -73.9062993 }, + { "lat": 40.7624411, "lon": -73.9062560 }, + { "lat": 40.7626666, "lon": -73.9060727 }, + { "lat": 40.7628742, "lon": -73.9059040 }, + { "lat": 40.7631695, "lon": -73.9056639 }, + { "lat": 40.7634925, "lon": -73.9054013 }, + { "lat": 40.7645234, "lon": -73.9045624 }, + { "lat": 40.7645948, "lon": -73.9045068 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "49th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 242114297, + "bounds": { + "minlat": 40.7121906, + "minlon": -73.9959222, + "maxlat": 40.7129038, + "maxlon": -73.9958141 + }, + "nodes": [ + 2496639020, + 8279851206, + 7715970694, + 7715970695, + 8279851207, + 2496639019 + ], + "geometry": [ + { "lat": 40.7121906, "lon": -73.9958141 }, + { "lat": 40.7122591, "lon": -73.9958246 }, + { "lat": 40.7122784, "lon": -73.9958275 }, + { "lat": 40.7128240, "lon": -73.9959107 }, + { "lat": 40.7128438, "lon": -73.9959137 }, + { "lat": 40.7129038, "lon": -73.9959222 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 242417591, + "bounds": { + "minlat": 40.7473679, + "minlon": -73.9522480, + "maxlat": 40.7482677, + "maxlon": -73.9476083 + }, + "nodes": [ + 42825906, + 8334165780, + 6597314491, + 9982750327, + 42866920, + 11157958406, + 9982771918, + 5714280487, + 9982771917, + 42826857 + ], + "geometry": [ + { "lat": 40.7473679, "lon": -73.9476083 }, + { "lat": 40.7473916, "lon": -73.9477285 }, + { "lat": 40.7476015, "lon": -73.9487899 }, + { "lat": 40.7477749, "lon": -73.9496970 }, + { "lat": 40.7477976, "lon": -73.9498113 }, + { "lat": 40.7478119, "lon": -73.9498872 }, + { "lat": 40.7478336, "lon": -73.9500020 }, + { "lat": 40.7482325, "lon": -73.9520672 }, + { "lat": 40.7482446, "lon": -73.9521314 }, + { "lat": 40.7482677, "lon": -73.9522480 } + ], + "tags": { + "highway": "residential", + "name": "45th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 242417592, + "bounds": { + "minlat": 40.7476037, + "minlon": -73.9412696, + "maxlat": 40.7481346, + "maxlon": -73.9395953 + }, + "nodes": [ + 2971840925, + 2971840924, + 9982698546, + 11520102422, + 9371728442, + 2971841358 + ], + "geometry": [ + { "lat": 40.7481346, "lon": -73.9395953 }, + { "lat": 40.7480951, "lon": -73.9398386 }, + { "lat": 40.7478172, "lon": -73.9406353 }, + { "lat": 40.7476576, "lon": -73.9411167 }, + { "lat": 40.7476475, "lon": -73.9411487 }, + { "lat": 40.7476037, "lon": -73.9412696 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 242514167, + "bounds": { + "minlat": 40.8420945, + "minlon": -73.9392704, + "maxlat": 40.8424468, + "maxlon": -73.9392536 + }, + "nodes": [ + 42428984, + 8746375049, + 9566927255, + 13018438921, + 13320061246 + ], + "geometry": [ + { "lat": 40.8424468, "lon": -73.9392536 }, + { "lat": 40.8423770, "lon": -73.9392576 }, + { "lat": 40.8423390, "lon": -73.9392605 }, + { "lat": 40.8421645, "lon": -73.9392704 }, + { "lat": 40.8420945, "lon": -73.9392623 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "cycleway:right": "lane", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10034", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 242514168, + "bounds": { + "minlat": 40.8417297, + "minlon": -73.9394169, + "maxlat": 40.8420771, + "maxlon": -73.9392635 + }, + "nodes": [ + 2499757469, + 13506442859, + 2603955418, + 2603955416, + 2499757467 + ], + "geometry": [ + { "lat": 40.8420771, "lon": -73.9392635 }, + { "lat": 40.8420471, "lon": -73.9392851 }, + { "lat": 40.8418864, "lon": -73.9393396 }, + { "lat": 40.8417864, "lon": -73.9393855 }, + { "lat": 40.8417297, "lon": -73.9394169 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 242514169, + "bounds": { + "minlat": 40.8424880, + "minlon": -73.9415677, + "maxlat": 40.8434216, + "maxlon": -73.9393514 + }, + "nodes": [ + 13239206676, + 11758679649, + 7604384389, + 13239206675 + ], + "geometry": [ + { "lat": 40.8424880, "lon": -73.9393514 }, + { "lat": 40.8425008, "lon": -73.9393818 }, + { "lat": 40.8434074, "lon": -73.9415353 }, + { "lat": 40.8434216, "lon": -73.9415677 } + ], + "tags": { + "alt_name": "Mary Jane Matos Way", + "bicycle": "use_sidepath", + "description": "Mary Jane Matos volunteered for the deaf and blind in high school and volunteered in the Jr. Red Cross at East 19th Street Hospital. She became an Auxiliary Police Officer in the 34th Precinct for five years. She also worked for the Board of Education and", + "highway": "residential", + "historic": "memorial", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 170th Street", + "name_1": "West 170 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "170th", + "tiger:name_base_1": "170", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 242517194, + "bounds": { + "minlat": 40.8434507, + "minlon": -73.9427146, + "maxlat": 40.8439081, + "maxlon": -73.9416342 + }, + "nodes": [ + 42449801, + 7604384414, + 7604384387, + 42427143 + ], + "geometry": [ + { "lat": 40.8439081, "lon": -73.9427146 }, + { "lat": 40.8438733, "lon": -73.9426212 }, + { "lat": 40.8434949, "lon": -73.9417200 }, + { "lat": 40.8434507, "lon": -73.9416342 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 170th Street", + "name_1": "West 170 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "170th", + "tiger:name_base_1": "170", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 242927914, + "bounds": { + "minlat": 40.7529183, + "minlon": -73.9225705, + "maxlat": 40.7532126, + "maxlon": -73.9221167 + }, + "nodes": [ + 42932888, + 3569401927, + 9189020440, + 6450632104, + 42938567 + ], + "geometry": [ + { "lat": 40.7529183, "lon": -73.9221167 }, + { "lat": 40.7530262, "lon": -73.9221939 }, + { "lat": 40.7530549, "lon": -73.9222318 }, + { "lat": 40.7531798, "lon": -73.9225033 }, + { "lat": 40.7532126, "lon": -73.9225705 } + ], + "tags": { + "highway": "tertiary", + "name": "36th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 242928105, + "bounds": { + "minlat": 40.7597277, + "minlon": -73.9205876, + "maxlat": 40.7646430, + "maxlon": -73.9165887 + }, + "nodes": [ + 42882987, + 3570249865, + 8549133460, + 3807145457, + 8549133458, + 3807145254, + 7661684408, + 42856551, + 7661684407, + 6406731761, + 6406731767, + 3570249983, + 42874060 + ], + "geometry": [ + { "lat": 40.7597277, "lon": -73.9205876 }, + { "lat": 40.7597978, "lon": -73.9205304 }, + { "lat": 40.7604379, "lon": -73.9200087 }, + { "lat": 40.7614713, "lon": -73.9191681 }, + { "lat": 40.7615635, "lon": -73.9190931 }, + { "lat": 40.7616334, "lon": -73.9190362 }, + { "lat": 40.7620022, "lon": -73.9187373 }, + { "lat": 40.7620698, "lon": -73.9186812 }, + { "lat": 40.7621440, "lon": -73.9186200 }, + { "lat": 40.7630483, "lon": -73.9178852 }, + { "lat": 40.7643376, "lon": -73.9168364 }, + { "lat": 40.7645740, "lon": -73.9166434 }, + { "lat": 40.7646430, "lon": -73.9165887 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "37th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 242928107, + "bounds": { + "minlat": 40.7520799, + "minlon": -73.9265506, + "maxlat": 40.7524054, + "maxlon": -73.9259775 + }, + "nodes": [ + 42815840, + 3569401901, + 9189020456, + 9189020460, + 9189020461, + 42815838 + ], + "geometry": [ + { "lat": 40.7520799, "lon": -73.9259775 }, + { "lat": 40.7522028, "lon": -73.9260922 }, + { "lat": 40.7523797, "lon": -73.9263850 }, + { "lat": 40.7523927, "lon": -73.9264245 }, + { "lat": 40.7524000, "lon": -73.9264630 }, + { "lat": 40.7524054, "lon": -73.9265506 } + ], + "tags": { + "highway": "residential", + "name": "37th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 242929233, + "bounds": { + "minlat": 40.7379348, + "minlon": -73.9554940, + "maxlat": 40.7380005, + "maxlon": -73.9553711 + }, + "nodes": [ + 2473602887, + 9996409576, + 9996409572, + 2473602888 + ], + "geometry": [ + { "lat": 40.7380005, "lon": -73.9553711 }, + { "lat": 40.7379904, "lon": -73.9553925 }, + { "lat": 40.7379796, "lon": -73.9554139 }, + { "lat": 40.7379348, "lon": -73.9554940 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Ash Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Ash", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 242929464, + "bounds": { + "minlat": 40.7339880, + "minlon": -73.9599302, + "maxlat": 40.7341475, + "maxlon": -73.9582957 + }, + "nodes": [ + 42486597, + 7008335444, + 9997952327, + 9121317181, + 42486594 + ], + "geometry": [ + { "lat": 40.7341475, "lon": -73.9582957 }, + { "lat": 40.7341373, "lon": -73.9584000 }, + { "lat": 40.7340081, "lon": -73.9597934 }, + { "lat": 40.7340022, "lon": -73.9598563 }, + { "lat": 40.7339880, "lon": -73.9599302 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Freeman Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Freeman", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 243007558, + "bounds": { + "minlat": 40.7643665, + "minlon": -73.9339363, + "maxlat": 40.7653261, + "maxlon": -73.9330182 + }, + "nodes": [ + 2504465129, + 2504465125, + 2504465120, + 2504465122 + ], + "geometry": [ + { "lat": 40.7653261, "lon": -73.9338124 }, + { "lat": 40.7651491, "lon": -73.9339363 }, + { "lat": 40.7646345, "lon": -73.9330182 }, + { "lat": 40.7643665, "lon": -73.9332604 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 243007559, + "bounds": { + "minlat": 40.7613440, + "minlon": -73.9353960, + "maxlat": 40.7628260, + "maxlon": -73.9339810 + }, + "nodes": [ + 42824096, + 4991541893, + 11619819444, + 7710100133, + 4991539811, + 42825865 + ], + "geometry": [ + { "lat": 40.7628260, "lon": -73.9339810 }, + { "lat": 40.7627560, "lon": -73.9340478 }, + { "lat": 40.7625784, "lon": -73.9342174 }, + { "lat": 40.7622792, "lon": -73.9345031 }, + { "lat": 40.7614299, "lon": -73.9353140 }, + { "lat": 40.7613440, "lon": -73.9353960 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 243007560, + "bounds": { + "minlat": 40.7646423, + "minlon": -73.9327384, + "maxlat": 40.7649077, + "maxlon": -73.9322587 + }, + "nodes": [ + 42881454, + 7748157091, + 2504466034, + 8433855055 + ], + "geometry": [ + { "lat": 40.7646423, "lon": -73.9322587 }, + { "lat": 40.7647026, "lon": -73.9323648 }, + { "lat": 40.7647721, "lon": -73.9324914 }, + { "lat": 40.7649077, "lon": -73.9327384 } + ], + "tags": { + "highway": "residential", + "name": "33rd Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 243007561, + "bounds": { + "minlat": 40.7640980, + "minlon": -73.9346158, + "maxlat": 40.7647962, + "maxlon": -73.9330986 + }, + "nodes": [ + 2504465137, + 6455712100, + 5487911897, + 5527162641, + 2504465135 + ], + "geometry": [ + { "lat": 40.7647962, "lon": -73.9346158 }, + { "lat": 40.7647645, "lon": -73.9345472 }, + { "lat": 40.7645094, "lon": -73.9339928 }, + { "lat": 40.7642961, "lon": -73.9335291 }, + { "lat": 40.7640980, "lon": -73.9330986 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 243007678, + "bounds": { + "minlat": 40.7642439, + "minlon": -73.9329974, + "maxlat": 40.7647721, + "maxlon": -73.9324914 + }, + "nodes": [ + 2504466034, + 11649811958, + 11649811955, + 2504466035 + ], + "geometry": [ + { "lat": 40.7647721, "lon": -73.9324914 }, + { "lat": 40.7647168, "lon": -73.9325444 }, + { "lat": 40.7642870, "lon": -73.9329561 }, + { "lat": 40.7642439, "lon": -73.9329974 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 243014058, + "bounds": { + "minlat": 40.7644882, + "minlon": -73.9356863, + "maxlat": 40.7648093, + "maxlon": -73.9348050 + }, + "nodes": [ + 2504565421, + 6455640576, + 2504565425, + 6455711970, + 2504565422 + ], + "geometry": [ + { "lat": 40.7648093, "lon": -73.9356863 }, + { "lat": 40.7647839, "lon": -73.9356166 }, + { "lat": 40.7646599, "lon": -73.9352761 }, + { "lat": 40.7645361, "lon": -73.9349364 }, + { "lat": 40.7644882, "lon": -73.9348050 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 243014059, + "bounds": { + "minlat": 40.7640006, + "minlon": -73.9356874, + "maxlat": 40.7653727, + "maxlon": -73.9348334 + }, + "nodes": [ + 2504565423, + 2504565425, + 6455712116, + 2504565424 + ], + "geometry": [ + { "lat": 40.7653727, "lon": -73.9348334 }, + { "lat": 40.7646599, "lon": -73.9352761 }, + { "lat": 40.7646263, "lon": -73.9352967 }, + { "lat": 40.7640006, "lon": -73.9356874 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 243046572, + "bounds": { + "minlat": 40.8271984, + "minlon": -73.9424324, + "maxlat": 40.8278230, + "maxlon": -73.9419970 + }, + "nodes": [ + 42427881, + 11218752317, + 11218752298, + 42427883 + ], + "geometry": [ + { "lat": 40.8271984, "lon": -73.9424324 }, + { "lat": 40.8272615, "lon": -73.9423907 }, + { "lat": 40.8277597, "lon": -73.9420439 }, + { "lat": 40.8278230, "lon": -73.9419970 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "Saint Nicholas Place", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 243046573, + "bounds": { + "minlat": 40.8232628, + "minlon": -73.9429200, + "maxlat": 40.8297545, + "maxlon": -73.9386411 + }, + "nodes": [ + 42434251, + 7738238839, + 764742010, + 42440056, + 750105292, + 42440059, + 11218357986, + 42439228, + 11218357987, + 42434314, + 750105296, + 42440065, + 11218821629, + 42440069, + 11218821628, + 42440072, + 9153608683, + 9153608684, + 42440075, + 11218835141, + 42438018, + 11218835140, + 2140986519, + 11683939978, + 589927880 + ], + "geometry": [ + { "lat": 40.8232628, "lon": -73.9429200 }, + { "lat": 40.8233543, "lon": -73.9428399 }, + { "lat": 40.8236321, "lon": -73.9426312 }, + { "lat": 40.8239240, "lon": -73.9424165 }, + { "lat": 40.8241866, "lon": -73.9422253 }, + { "lat": 40.8245482, "lon": -73.9419585 }, + { "lat": 40.8251174, "lon": -73.9415405 }, + { "lat": 40.8251715, "lon": -73.9415007 }, + { "lat": 40.8252288, "lon": -73.9414590 }, + { "lat": 40.8257967, "lon": -73.9410462 }, + { "lat": 40.8261185, "lon": -73.9408116 }, + { "lat": 40.8264173, "lon": -73.9405881 }, + { "lat": 40.8269914, "lon": -73.9401746 }, + { "lat": 40.8270356, "lon": -73.9401426 }, + { "lat": 40.8271025, "lon": -73.9400946 }, + { "lat": 40.8276597, "lon": -73.9396880 }, + { "lat": 40.8281611, "lon": -73.9393237 }, + { "lat": 40.8282057, "lon": -73.9392938 }, + { "lat": 40.8282799, "lon": -73.9392533 }, + { "lat": 40.8289277, "lon": -73.9389831 }, + { "lat": 40.8289841, "lon": -73.9389595 }, + { "lat": 40.8290632, "lon": -73.9389275 }, + { "lat": 40.8295865, "lon": -73.9387121 }, + { "lat": 40.8296727, "lon": -73.9386747 }, + { "lat": 40.8297545, "lon": -73.9386411 } + ], + "tags": { + "highway": "tertiary", + "name": "Bradhurst Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bradhurst", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 243046574, + "bounds": { + "minlat": 40.8208736, + "minlon": -73.9451567, + "maxlat": 40.8214604, + "maxlon": -73.9446041 + }, + "nodes": [ + 42439601, + 10166154734, + 10743755863, + 10166154784, + 42438288 + ], + "geometry": [ + { "lat": 40.8208736, "lon": -73.9451567 }, + { "lat": 40.8209344, "lon": -73.9450991 }, + { "lat": 40.8213792, "lon": -73.9446809 }, + { "lat": 40.8214123, "lon": -73.9446498 }, + { "lat": 40.8214604, "lon": -73.9446041 } + ], + "tags": { + "highway": "tertiary", + "name": "Edgecombe Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 243046575, + "bounds": { + "minlat": 40.8197590, + "minlon": -73.9448439, + "maxlat": 40.8215516, + "maxlon": -73.9405581 + }, + "nodes": [ + 42439613, + 2504882500, + 10177600388, + 42438288, + 10166154786, + 8008242695, + 42435861, + 8008242693, + 6892765814, + 9150629554, + 42438281 + ], + "geometry": [ + { "lat": 40.8215516, "lon": -73.9448439 }, + { "lat": 40.8215031, "lon": -73.9447165 }, + { "lat": 40.8214917, "lon": -73.9446865 }, + { "lat": 40.8214604, "lon": -73.9446041 }, + { "lat": 40.8214258, "lon": -73.9445130 }, + { "lat": 40.8209750, "lon": -73.9434585 }, + { "lat": 40.8209170, "lon": -73.9433220 }, + { "lat": 40.8208696, "lon": -73.9432089 }, + { "lat": 40.8203993, "lon": -73.9420894 }, + { "lat": 40.8198075, "lon": -73.9406807 }, + { "lat": 40.8197590, "lon": -73.9405581 } + ], + "tags": { + "highway": "residential", + "name": "West 142nd Street", + "name_1": "West 142 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 243046576, + "bounds": { + "minlat": 40.8283084, + "minlon": -73.9431310, + "maxlat": 40.8287461, + "maxlon": -73.9422240 + }, + "nodes": [ + 2504882506, + 9150598870, + 9150598869, + 9150598868, + 2504882509, + 11221649563, + 11221649581, + 42448674 + ], + "geometry": [ + { "lat": 40.8287360, "lon": -73.9422240 }, + { "lat": 40.8287434, "lon": -73.9423018 }, + { "lat": 40.8287461, "lon": -73.9423483 }, + { "lat": 40.8287411, "lon": -73.9423812 }, + { "lat": 40.8287321, "lon": -73.9424307 }, + { "lat": 40.8287195, "lon": -73.9424515 }, + { "lat": 40.8283551, "lon": -73.9430538 }, + { "lat": 40.8283084, "lon": -73.9431310 } + ], + "tags": { + "highway": "tertiary", + "name": "Convent Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 243046578, + "bounds": { + "minlat": 40.8268210, + "minlon": -73.9424324, + "maxlat": 40.8271984, + "maxlon": -73.9415360 + }, + "nodes": [ + 42427881, + 11218752316, + 2504882497, + 11218748545, + 42439620 + ], + "geometry": [ + { "lat": 40.8271984, "lon": -73.9424324 }, + { "lat": 40.8271564, "lon": -73.9423345 }, + { "lat": 40.8268664, "lon": -73.9416441 }, + { "lat": 40.8268585, "lon": -73.9416251 }, + { "lat": 40.8268210, "lon": -73.9415360 } + ], + "tags": { + "highway": "residential", + "name": "West 150th Street", + "name_1": "West 150 Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "150th", + "tiger:name_base_1": "150", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 243056519, + "bounds": { + "minlat": 40.8221640, + "minlon": -73.9435060, + "maxlat": 40.8226280, + "maxlon": -73.9424110 + }, + "nodes": [ + 42435865, + 8008242711, + 2504979958, + 11218460662, + 42440053 + ], + "geometry": [ + { "lat": 40.8221640, "lon": -73.9424110 }, + { "lat": 40.8222222, "lon": -73.9425483 }, + { "lat": 40.8225731, "lon": -73.9433765 }, + { "lat": 40.8225947, "lon": -73.9434275 }, + { "lat": 40.8226280, "lon": -73.9435060 } + ], + "tags": { + "highway": "residential", + "name": "West 144th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 243056521, + "bounds": { + "minlat": 40.8203089, + "minlon": -73.9440490, + "maxlat": 40.8220520, + "maxlon": -73.9399427 + }, + "nodes": [ + 2141026502, + 42439905, + 9150629555, + 8008242700, + 42435863, + 8008242703, + 7069015237, + 10743755882, + 42440052 + ], + "geometry": [ + { "lat": 40.8203089, "lon": -73.9399427 }, + { "lat": 40.8203792, "lon": -73.9401037 }, + { "lat": 40.8204270, "lon": -73.9402142 }, + { "lat": 40.8214945, "lon": -73.9427525 }, + { "lat": 40.8215420, "lon": -73.9428650 }, + { "lat": 40.8215966, "lon": -73.9429895 }, + { "lat": 40.8219760, "lon": -73.9438726 }, + { "lat": 40.8220170, "lon": -73.9439677 }, + { "lat": 40.8220520, "lon": -73.9440490 } + ], + "tags": { + "highway": "residential", + "name": "West 143rd Street", + "name_1": "West 143 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 243056522, + "bounds": { + "minlat": 40.8177958, + "minlon": -73.9377219, + "maxlat": 40.8185482, + "maxlon": -73.9359497 + }, + "nodes": [ + 42438271, + 9166236604, + 10899250515, + 5522138340, + 12472148957, + 5522138338, + 8229962385, + 5522138336, + 9557086586, + 3099326122, + 42438275 + ], + "geometry": [ + { "lat": 40.8177958, "lon": -73.9359497 }, + { "lat": 40.8178189, "lon": -73.9360309 }, + { "lat": 40.8179572, "lon": -73.9363535 }, + { "lat": 40.8180401, "lon": -73.9365467 }, + { "lat": 40.8180819, "lon": -73.9366443 }, + { "lat": 40.8181298, "lon": -73.9367559 }, + { "lat": 40.8182030, "lon": -73.9369266 }, + { "lat": 40.8182221, "lon": -73.9369712 }, + { "lat": 40.8184406, "lon": -73.9374807 }, + { "lat": 40.8184849, "lon": -73.9375793 }, + { "lat": 40.8185482, "lon": -73.9377219 } + ], + "tags": { + "highway": "residential", + "name": "West 142nd Street", + "name_1": "West 142 Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 243056523, + "bounds": { + "minlat": 40.8153391, + "minlon": -73.9357666, + "maxlat": 40.8166513, + "maxlon": -73.9348194 + }, + "nodes": [ + 589927996, + 9557110432, + 42447346, + 9557110433, + 9902223886, + 9557110372, + 42456831 + ], + "geometry": [ + { "lat": 40.8166513, "lon": -73.9348194 }, + { "lat": 40.8166094, "lon": -73.9348514 }, + { "lat": 40.8165367, "lon": -73.9349057 }, + { "lat": 40.8164729, "lon": -73.9349499 }, + { "lat": 40.8160390, "lon": -73.9352668 }, + { "lat": 40.8154045, "lon": -73.9357204 }, + { "lat": 40.8153391, "lon": -73.9357666 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:advisory": "20 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 243056524, + "bounds": { + "minlat": 40.8239979, + "minlon": -73.9480922, + "maxlat": 40.8245499, + "maxlon": -73.9467623 + }, + "nodes": [ + 13207206239, + 10743755855, + 11200341573, + 42442621 + ], + "geometry": [ + { "lat": 40.8239979, "lon": -73.9467623 }, + { "lat": 40.8240181, "lon": -73.9468110 }, + { "lat": 40.8245003, "lon": -73.9479728 }, + { "lat": 40.8245499, "lon": -73.9480922 } + ], + "tags": { + "highway": "residential", + "name": "West 144th Street", + "name_1": "West 144 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "144th", + "tiger:name_base_1": "144", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 243056525, + "bounds": { + "minlat": 40.8217009, + "minlon": -73.9529081, + "maxlat": 40.8240836, + "maxlon": -73.9488816 + }, + "nodes": [ + 42443659, + 10743755709, + 10617235675, + 42438295, + 10617235676, + 9279073326, + 42447404, + 9279073322, + 9279073334, + 42433800, + 9279073330, + 10172767675, + 42453757, + 10172767676, + 10170703035, + 42435943 + ], + "geometry": [ + { "lat": 40.8240836, "lon": -73.9488816 }, + { "lat": 40.8240434, "lon": -73.9489491 }, + { "lat": 40.8236520, "lon": -73.9496176 }, + { "lat": 40.8236097, "lon": -73.9496898 }, + { "lat": 40.8235687, "lon": -73.9497574 }, + { "lat": 40.8231744, "lon": -73.9504142 }, + { "lat": 40.8231195, "lon": -73.9504964 }, + { "lat": 40.8230837, "lon": -73.9505562 }, + { "lat": 40.8227050, "lon": -73.9512253 }, + { "lat": 40.8226586, "lon": -73.9513037 }, + { "lat": 40.8226185, "lon": -73.9513708 }, + { "lat": 40.8222239, "lon": -73.9520309 }, + { "lat": 40.8221764, "lon": -73.9521084 }, + { "lat": 40.8221369, "lon": -73.9521730 }, + { "lat": 40.8217466, "lon": -73.9528296 }, + { "lat": 40.8217009, "lon": -73.9529081 } + ], + "tags": { + "highway": "residential", + "name": "Hamilton Place", + "name:etymology:wikidata": "Q178903", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 243503933, + "bounds": { + "minlat": 40.6994681, + "minlon": -73.9686881, + "maxlat": 40.7003071, + "maxlon": -73.9685076 + }, + "nodes": [ + 42533186, + 2474111255, + 9998803734, + 4758938136, + 9998803735, + 9998803736, + 2474111253, + 4758938135, + 2474111250, + 9998827356, + 4758938137 + ], + "geometry": [ + { "lat": 40.6994681, "lon": -73.9686881 }, + { "lat": 40.6998824, "lon": -73.9686698 }, + { "lat": 40.6999132, "lon": -73.9686661 }, + { "lat": 40.6999441, "lon": -73.9686620 }, + { "lat": 40.6999745, "lon": -73.9686552 }, + { "lat": 40.7000074, "lon": -73.9686435 }, + { "lat": 40.7000445, "lon": -73.9686278 }, + { "lat": 40.7001742, "lon": -73.9685555 }, + { "lat": 40.7002676, "lon": -73.9685186 }, + { "lat": 40.7002873, "lon": -73.9685124 }, + { "lat": 40.7003071, "lon": -73.9685076 } + ], + "tags": { + "access": "private", + "cycleway": "lane", + "highway": "unclassified", + "name": "Assembly Road", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Market", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 243542734, + "bounds": { + "minlat": 40.7681571, + "minlon": -73.9330516, + "maxlat": 40.7685554, + "maxlon": -73.9327692 + }, + "nodes": [ + 2509332377, + 7733801864, + 2509332379 + ], + "geometry": [ + { "lat": 40.7681571, "lon": -73.9330516 }, + { "lat": 40.7684842, "lon": -73.9328197 }, + { "lat": 40.7685554, "lon": -73.9327692 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 243542739, + "bounds": { + "minlat": 40.7674931, + "minlon": -73.9334985, + "maxlat": 40.7678304, + "maxlon": -73.9332343 + }, + "nodes": [ + 2509332383, + 6456416480, + 2509332384 + ], + "geometry": [ + { "lat": 40.7678304, "lon": -73.9332343 }, + { "lat": 40.7675480, "lon": -73.9334555 }, + { "lat": 40.7674931, "lon": -73.9334985 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 243544149, + "bounds": { + "minlat": 40.7658988, + "minlon": -73.9352729, + "maxlat": 40.7661430, + "maxlon": -73.9351294 + }, + "nodes": [ + 2509345513, + 2509345510 + ], + "geometry": [ + { "lat": 40.7658988, "lon": -73.9352729 }, + { "lat": 40.7661430, "lon": -73.9351294 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 243544150, + "bounds": { + "minlat": 40.7661430, + "minlon": -73.9351294, + "maxlat": 40.7662035, + "maxlon": -73.9350939 + }, + "nodes": [ + 2509345510, + 6455640565, + 2509345514 + ], + "geometry": [ + { "lat": 40.7661430, "lon": -73.9351294 }, + { "lat": 40.7661608, "lon": -73.9351190 }, + { "lat": 40.7662035, "lon": -73.9350939 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 243544157, + "bounds": { + "minlat": 40.7652381, + "minlon": -73.9364016, + "maxlat": 40.7652671, + "maxlon": -73.9363028 + }, + "nodes": [ + 2509345590, + 6455640564, + 2509345516 + ], + "geometry": [ + { "lat": 40.7652671, "lon": -73.9364016 }, + { "lat": 40.7652455, "lon": -73.9363279 }, + { "lat": 40.7652381, "lon": -73.9363028 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 243544159, + "bounds": { + "minlat": 40.7657887, + "minlon": -73.9360677, + "maxlat": 40.7658172, + "maxlon": -73.9359693 + }, + "nodes": [ + 2509345515, + 6455640563, + 2509345592 + ], + "geometry": [ + { "lat": 40.7657887, "lon": -73.9359693 }, + { "lat": 40.7657937, "lon": -73.9359866 }, + { "lat": 40.7658172, "lon": -73.9360677 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 244538375, + "bounds": { + "minlat": 40.8110961, + "minlon": -73.9270557, + "maxlat": 40.8116231, + "maxlon": -73.9266924 + }, + "nodes": [ + 2826997294, + 7554858680 + ], + "geometry": [ + { "lat": 40.8110961, "lon": -73.9270557 }, + { "lat": 40.8116231, "lon": -73.9266924 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Morris Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 244728120, + "bounds": { + "minlat": 40.8792961, + "minlon": -73.9218496, + "maxlat": 40.8797366, + "maxlon": -73.9214691 + }, + "nodes": [ + 1545168021, + 2520127097, + 2520127074, + 2520127073, + 2520127076 + ], + "geometry": [ + { "lat": 40.8792961, "lon": -73.9215144 }, + { "lat": 40.8794016, "lon": -73.9214691 }, + { "lat": 40.8794772, "lon": -73.9214771 }, + { "lat": 40.8796477, "lon": -73.9218172 }, + { "lat": 40.8797366, "lon": -73.9218496 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 244731299, + "bounds": { + "minlat": 40.8787510, + "minlon": -73.9224178, + "maxlat": 40.8793676, + "maxlon": -73.9205621 + }, + "nodes": [ + 1545168015, + 2520140311, + 2520140326, + 2520140323, + 2520140325, + 2520140315, + 2520140337, + 2520140313, + 2520140328, + 2520140318, + 2520140340, + 2520140316 + ], + "geometry": [ + { "lat": 40.8793676, "lon": -73.9224178 }, + { "lat": 40.8793274, "lon": -73.9221879 }, + { "lat": 40.8792560, "lon": -73.9219756 }, + { "lat": 40.8791911, "lon": -73.9218040 }, + { "lat": 40.8790815, "lon": -73.9215867 }, + { "lat": 40.8789822, "lon": -73.9213534 }, + { "lat": 40.8789333, "lon": -73.9212158 }, + { "lat": 40.8788916, "lon": -73.9210386 }, + { "lat": 40.8788703, "lon": -73.9208776 }, + { "lat": 40.8788483, "lon": -73.9207686 }, + { "lat": 40.8788240, "lon": -73.9206828 }, + { "lat": 40.8787510, "lon": -73.9205621 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 244737769, + "bounds": { + "minlat": 40.8796027, + "minlon": -73.9203794, + "maxlat": 40.8801877, + "maxlon": -73.9197885 + }, + "nodes": [ + 1545196670, + 12064370427, + 12064370426, + 10130977069, + 2520194934, + 12064370428, + 12064370429 + ], + "geometry": [ + { "lat": 40.8801877, "lon": -73.9203794 }, + { "lat": 40.8801708, "lon": -73.9203589 }, + { "lat": 40.8801539, "lon": -73.9203416 }, + { "lat": 40.8801341, "lon": -73.9203222 }, + { "lat": 40.8796383, "lon": -73.9199962 }, + { "lat": 40.8796027, "lon": -73.9198948 }, + { "lat": 40.8796626, "lon": -73.9197885 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 244742030, + "bounds": { + "minlat": 40.8820103, + "minlon": -73.9214813, + "maxlat": 40.8822068, + "maxlon": -73.9211339 + }, + "nodes": [ + 1545207061, + 2520207200 + ], + "geometry": [ + { "lat": 40.8820103, "lon": -73.9211339 }, + { "lat": 40.8822068, "lon": -73.9214813 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 244742031, + "bounds": { + "minlat": 40.8822068, + "minlon": -73.9215149, + "maxlat": 40.8823380, + "maxlon": -73.9213362 + }, + "nodes": [ + 2520207200, + 2520207199, + 2592317431, + 2592317439, + 2520207183, + 2520207172, + 2520207248, + 2520207175, + 2520207191, + 2520247751 + ], + "geometry": [ + { "lat": 40.8822068, "lon": -73.9214813 }, + { "lat": 40.8822307, "lon": -73.9215043 }, + { "lat": 40.8822509, "lon": -73.9215139 }, + { "lat": 40.8822656, "lon": -73.9215149 }, + { "lat": 40.8822838, "lon": -73.9215117 }, + { "lat": 40.8822987, "lon": -73.9215024 }, + { "lat": 40.8823211, "lon": -73.9214756 }, + { "lat": 40.8823328, "lon": -73.9214389 }, + { "lat": 40.8823380, "lon": -73.9213908 }, + { "lat": 40.8823232, "lon": -73.9213362 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 244742032, + "bounds": { + "minlat": 40.8820440, + "minlon": -73.9211846, + "maxlat": 40.8822973, + "maxlon": -73.9208357 + }, + "nodes": [ + 2520207198, + 2592317414, + 2520207176, + 2592317417, + 2520207180, + 2592317424, + 2592317427, + 2520207188, + 2592317433, + 2520207184, + 2592317446, + 2520207185, + 2520207181, + 2592317449, + 2592317442, + 2520207174, + 2592317436, + 2520207194 + ], + "geometry": [ + { "lat": 40.8820440, "lon": -73.9210854 }, + { "lat": 40.8821033, "lon": -73.9211546 }, + { "lat": 40.8821217, "lon": -73.9211680 }, + { "lat": 40.8821460, "lon": -73.9211793 }, + { "lat": 40.8821749, "lon": -73.9211846 }, + { "lat": 40.8821954, "lon": -73.9211839 }, + { "lat": 40.8822155, "lon": -73.9211779 }, + { "lat": 40.8822350, "lon": -73.9211683 }, + { "lat": 40.8822600, "lon": -73.9211482 }, + { "lat": 40.8822776, "lon": -73.9211173 }, + { "lat": 40.8822895, "lon": -73.9210868 }, + { "lat": 40.8822957, "lon": -73.9210561 }, + { "lat": 40.8822973, "lon": -73.9210235 }, + { "lat": 40.8822939, "lon": -73.9209927 }, + { "lat": 40.8822878, "lon": -73.9209615 }, + { "lat": 40.8822777, "lon": -73.9209354 }, + { "lat": 40.8822624, "lon": -73.9209073 }, + { "lat": 40.8822106, "lon": -73.9208357 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 244742033, + "bounds": { + "minlat": 40.8816510, + "minlon": -73.9202912, + "maxlat": 40.8818477, + "maxlon": -73.9197405 + }, + "nodes": [ + 2520207197, + 10130977120, + 2520207187, + 2520207179, + 2520207196, + 2520207192, + 2520207178, + 2520207189, + 2520207190, + 2520207193, + 2520207195, + 2520207173, + 2520207177, + 2520207186, + 2520207182, + 10130977119, + 2520207197 + ], + "geometry": [ + { "lat": 40.8817118, "lon": -73.9197405 }, + { "lat": 40.8817315, "lon": -73.9198424 }, + { "lat": 40.8817446, "lon": -73.9199102 }, + { "lat": 40.8818036, "lon": -73.9200203 }, + { "lat": 40.8818421, "lon": -73.9201222 }, + { "lat": 40.8818477, "lon": -73.9201866 }, + { "lat": 40.8818355, "lon": -73.9202322 }, + { "lat": 40.8818031, "lon": -73.9202697 }, + { "lat": 40.8817726, "lon": -73.9202912 }, + { "lat": 40.8817361, "lon": -73.9202912 }, + { "lat": 40.8817017, "lon": -73.9202751 }, + { "lat": 40.8816733, "lon": -73.9202456 }, + { "lat": 40.8816571, "lon": -73.9201812 }, + { "lat": 40.8816510, "lon": -73.9201115 }, + { "lat": 40.8816571, "lon": -73.9200230 }, + { "lat": 40.8816922, "lon": -73.9198417 }, + { "lat": 40.8817118, "lon": -73.9197405 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 244748701, + "bounds": { + "minlat": 40.8821832, + "minlon": -73.9204574, + "maxlat": 40.8823841, + "maxlon": -73.9199672 + }, + "nodes": [ + 2520260839, + 10130977121, + 2520260896, + 2520260838, + 2520260844, + 2520260873, + 2520260881 + ], + "geometry": [ + { "lat": 40.8823841, "lon": -73.9199672 }, + { "lat": 40.8823558, "lon": -73.9200603 }, + { "lat": 40.8823126, "lon": -73.9202027 }, + { "lat": 40.8822781, "lon": -73.9202965 }, + { "lat": 40.8822478, "lon": -73.9203613 }, + { "lat": 40.8822112, "lon": -73.9204172 }, + { "lat": 40.8821832, "lon": -73.9204574 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 244748703, + "bounds": { + "minlat": 40.8822048, + "minlon": -73.9204971, + "maxlat": 40.8824190, + "maxlon": -73.9199887 + }, + "nodes": [ + 2520260863, + 10130977122, + 2520260842, + 2520260855, + 2520260849, + 2520260868, + 2520260879 + ], + "geometry": [ + { "lat": 40.8824190, "lon": -73.9199887 }, + { "lat": 40.8823905, "lon": -73.9200821 }, + { "lat": 40.8823554, "lon": -73.9201975 }, + { "lat": 40.8823246, "lon": -73.9202862 }, + { "lat": 40.8822924, "lon": -73.9203613 }, + { "lat": 40.8822538, "lon": -73.9204279 }, + { "lat": 40.8822048, "lon": -73.9204971 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 244751655, + "bounds": { + "minlat": 40.8806407, + "minlon": -73.9184886, + "maxlat": 40.8809311, + "maxlon": -73.9181168 + }, + "nodes": [ + 374457769, + 10130977098, + 2520287867, + 2520287830, + 2520287762, + 2520287790, + 2520287784, + 2520287911, + 2520287771, + 2520287747, + 2520287792, + 2520287821, + 2520287832, + 10130977147, + 2520287833 + ], + "geometry": [ + { "lat": 40.8806407, "lon": -73.9184301 }, + { "lat": 40.8806734, "lon": -73.9184502 }, + { "lat": 40.8806978, "lon": -73.9184651 }, + { "lat": 40.8807425, "lon": -73.9184832 }, + { "lat": 40.8807831, "lon": -73.9184886 }, + { "lat": 40.8808302, "lon": -73.9184780 }, + { "lat": 40.8808722, "lon": -73.9184508 }, + { "lat": 40.8809073, "lon": -73.9184082 }, + { "lat": 40.8809230, "lon": -73.9183706 }, + { "lat": 40.8809311, "lon": -73.9183223 }, + { "lat": 40.8809311, "lon": -73.9182740 }, + { "lat": 40.8809210, "lon": -73.9182311 }, + { "lat": 40.8808987, "lon": -73.9181801 }, + { "lat": 40.8808863, "lon": -73.9181600 }, + { "lat": 40.8808597, "lon": -73.9181168 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 244751658, + "bounds": { + "minlat": 40.8806886, + "minlon": -73.9193107, + "maxlat": 40.8808487, + "maxlon": -73.9191149 + }, + "nodes": [ + 2520287889, + 8704209041, + 42747780 + ], + "geometry": [ + { "lat": 40.8808487, "lon": -73.9191149 }, + { "lat": 40.8807710, "lon": -73.9192100 }, + { "lat": 40.8806886, "lon": -73.9193107 } + ], + "tags": { + "highway": "tertiary", + "name": "Independence Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Independence", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10471", + "tiger:zip_right": "10471" + } +}, +{ + "type": "way", + "id": 244751659, + "bounds": { + "minlat": 40.8808487, + "minlon": -73.9191149, + "maxlat": 40.8811017, + "maxlon": -73.9186846 + }, + "nodes": [ + 2520287889, + 2520287918, + 2520287897, + 2520287842, + 2520287796 + ], + "geometry": [ + { "lat": 40.8808487, "lon": -73.9191149 }, + { "lat": 40.8808577, "lon": -73.9190415 }, + { "lat": 40.8808768, "lon": -73.9189609 }, + { "lat": 40.8809045, "lon": -73.9189073 }, + { "lat": 40.8811017, "lon": -73.9186846 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 244751661, + "bounds": { + "minlat": 40.8808487, + "minlon": -73.9191149, + "maxlat": 40.8829709, + "maxlon": -73.9172839 + }, + "nodes": [ + 2520287889, + 2520361818, + 7244529482, + 42759298, + 2520294871, + 2520376055, + 42746763 + ], + "geometry": [ + { "lat": 40.8808487, "lon": -73.9191149 }, + { "lat": 40.8808782, "lon": -73.9190785 }, + { "lat": 40.8813370, "lon": -73.9185594 }, + { "lat": 40.8818740, "lon": -73.9179524 }, + { "lat": 40.8819878, "lon": -73.9178282 }, + { "lat": 40.8825780, "lon": -73.9175014 }, + { "lat": 40.8829709, "lon": -73.9172839 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Independence Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Independence", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10471", + "tiger:zip_right": "10471" + } +}, +{ + "type": "way", + "id": 244759397, + "bounds": { + "minlat": 40.8820662, + "minlon": -73.9186695, + "maxlat": 40.8824681, + "maxlon": -73.9181992 + }, + "nodes": [ + 2520341970, + 2520341955, + 2520361811, + 2520361856, + 2520341954, + 2520341951, + 2520341965, + 2520341966, + 2520361782, + 2520341950, + 2520341958, + 2520341977, + 2520341961, + 2520341964, + 2520341974, + 2520361787, + 2520341957, + 2520341960, + 2520341970 + ], + "geometry": [ + { "lat": 40.8821689, "lon": -73.9186641 }, + { "lat": 40.8821456, "lon": -73.9186211 }, + { "lat": 40.8821362, "lon": -73.9186028 }, + { "lat": 40.8820951, "lon": -73.9185262 }, + { "lat": 40.8820885, "lon": -73.9185139 }, + { "lat": 40.8820662, "lon": -73.9184750 }, + { "lat": 40.8820695, "lon": -73.9184511 }, + { "lat": 40.8820809, "lon": -73.9184336 }, + { "lat": 40.8823039, "lon": -73.9182413 }, + { "lat": 40.8823471, "lon": -73.9182041 }, + { "lat": 40.8823653, "lon": -73.9181992 }, + { "lat": 40.8823810, "lon": -73.9182057 }, + { "lat": 40.8824681, "lon": -73.9183777 }, + { "lat": 40.8824679, "lon": -73.9184054 }, + { "lat": 40.8824606, "lon": -73.9184282 }, + { "lat": 40.8824122, "lon": -73.9184723 }, + { "lat": 40.8822001, "lon": -73.9186655 }, + { "lat": 40.8821850, "lon": -73.9186695 }, + { "lat": 40.8821689, "lon": -73.9186641 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 244795633, + "bounds": { + "minlat": 40.7750270, + "minlon": -73.9277972, + "maxlat": 40.7767432, + "maxlon": -73.9247275 + }, + "nodes": [ + 3778337376, + 3778337399, + 13101969434, + 7813968087, + 42842324, + 7813968089, + 2457089499, + 2853076942, + 7745197928 + ], + "geometry": [ + { "lat": 40.7750270, "lon": -73.9247275 }, + { "lat": 40.7751189, "lon": -73.9248111 }, + { "lat": 40.7754618, "lon": -73.9254432 }, + { "lat": 40.7757405, "lon": -73.9259537 }, + { "lat": 40.7757753, "lon": -73.9260180 }, + { "lat": 40.7758232, "lon": -73.9261065 }, + { "lat": 40.7764849, "lon": -73.9273189 }, + { "lat": 40.7767054, "lon": -73.9277305 }, + { "lat": 40.7767432, "lon": -73.9277972 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Astoria Park South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 246085471, + "bounds": { + "minlat": 40.7108984, + "minlon": -74.0124183, + "maxlat": 40.7120732, + "maxlon": -74.0119776 + }, + "nodes": [ + 8213944614, + 10285341226, + 8262936390, + 1431790464 + ], + "geometry": [ + { "lat": 40.7108984, "lon": -74.0124183 }, + { "lat": 40.7109548, "lon": -74.0123977 }, + { "lat": 40.7119958, "lon": -74.0120088 }, + { "lat": 40.7120732, "lon": -74.0119776 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "no", + "foot": "yes", + "highway": "unclassified", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 246964627, + "bounds": { + "minlat": 40.8003937, + "minlon": -73.9635008, + "maxlat": 40.8010150, + "maxlon": -73.9630467 + }, + "nodes": [ + 2539225403, + 10166004044, + 10165989510, + 2539225447 + ], + "geometry": [ + { "lat": 40.8003937, "lon": -73.9635008 }, + { "lat": 40.8004530, "lon": -73.9634575 }, + { "lat": 40.8009727, "lon": -73.9630776 }, + { "lat": 40.8010150, "lon": -73.9630467 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 247047850, + "bounds": { + "minlat": 40.8181613, + "minlon": -73.9565816, + "maxlat": 40.8182287, + "maxlon": -73.9563618 + }, + "nodes": [ + 42428876, + 561035346 + ], + "geometry": [ + { "lat": 40.8182287, "lon": -73.9565816 }, + { "lat": 40.8181613, "lon": -73.9563618 } + ], + "tags": { + "highway": "residential", + "name": "West 132nd Street" + } +}, +{ + "type": "way", + "id": 247137249, + "bounds": { + "minlat": 40.8666010, + "minlon": -74.0010389, + "maxlat": 40.8667714, + "maxlon": -74.0009128 + }, + "nodes": [ + 2468300497, + 2468300448, + 2468300404, + 2468300461, + 2468300477, + 2468300465 + ], + "geometry": [ + { "lat": 40.8666010, "lon": -74.0010389 }, + { "lat": 40.8666013, "lon": -74.0009949 }, + { "lat": 40.8666220, "lon": -74.0009424 }, + { "lat": 40.8666666, "lon": -74.0009209 }, + { "lat": 40.8666950, "lon": -74.0009142 }, + { "lat": 40.8667714, "lon": -74.0009128 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 248878202, + "bounds": { + "minlat": 40.7938903, + "minlon": -73.9413120, + "maxlat": 40.7942290, + "maxlon": -73.9410882 + }, + "nodes": [ + 2555972067, + 7924346919, + 2555971629 + ], + "geometry": [ + { "lat": 40.7942290, "lon": -73.9410882 }, + { "lat": 40.7941753, "lon": -73.9411240 }, + { "lat": 40.7938903, "lon": -73.9413120 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 248878206, + "bounds": { + "minlat": 40.7937908, + "minlon": -73.9416111, + "maxlat": 40.7939984, + "maxlon": -73.9410922 + }, + "nodes": [ + 2555971746, + 2555971629, + 2555971548 + ], + "geometry": [ + { "lat": 40.7939984, "lon": -73.9416111 }, + { "lat": 40.7938903, "lon": -73.9413120 }, + { "lat": 40.7937908, "lon": -73.9410922 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 249375126, + "bounds": { + "minlat": 40.8793628, + "minlon": -73.9235852, + "maxlat": 40.8822590, + "maxlon": -73.9227663 + }, + "nodes": [ + 2559850348, + 2559850349, + 2559850350, + 2559850351, + 2559850352, + 2559850353, + 2559850356, + 2559850359, + 2559850360, + 2559850361, + 2559850362, + 2559850363, + 2559850364, + 2895397495, + 2559850365, + 2559850366, + 2559850367 + ], + "geometry": [ + { "lat": 40.8793628, "lon": -73.9228929 }, + { "lat": 40.8794053, "lon": -73.9230127 }, + { "lat": 40.8794375, "lon": -73.9231076 }, + { "lat": 40.8796023, "lon": -73.9231984 }, + { "lat": 40.8797220, "lon": -73.9232861 }, + { "lat": 40.8799469, "lon": -73.9234718 }, + { "lat": 40.8800448, "lon": -73.9235466 }, + { "lat": 40.8801834, "lon": -73.9235852 }, + { "lat": 40.8803433, "lon": -73.9235273 }, + { "lat": 40.8806265, "lon": -73.9233914 }, + { "lat": 40.8808083, "lon": -73.9233174 }, + { "lat": 40.8809718, "lon": -73.9232644 }, + { "lat": 40.8810204, "lon": -73.9232587 }, + { "lat": 40.8810547, "lon": -73.9232767 }, + { "lat": 40.8811092, "lon": -73.9233054 }, + { "lat": 40.8818295, "lon": -73.9229781 }, + { "lat": 40.8822590, "lon": -73.9227663 } + ], + "tags": { + "access": "private", + "highway": "track" + } +}, +{ + "type": "way", + "id": 249664805, + "bounds": { + "minlat": 40.7286093, + "minlon": -74.0141663, + "maxlat": 40.7305397, + "maxlon": -74.0112963 + }, + "nodes": [ + 246879398, + 5526905144, + 8288262779, + 5526905145, + 8288262778, + 13892459100, + 13892461601, + 5526905146 + ], + "geometry": [ + { "lat": 40.7286093, "lon": -74.0141663 }, + { "lat": 40.7305397, "lon": -74.0139118 }, + { "lat": 40.7305210, "lon": -74.0136861 }, + { "lat": 40.7303222, "lon": -74.0112963 }, + { "lat": 40.7301550, "lon": -74.0113179 }, + { "lat": 40.7298157, "lon": -74.0113643 }, + { "lat": 40.7297307, "lon": -74.0113464 }, + { "lat": 40.7293113, "lon": -74.0113958 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 249664806, + "bounds": { + "minlat": 40.7287813, + "minlon": -74.0120234, + "maxlat": 40.7288548, + "maxlon": -74.0113340 + }, + "nodes": [ + 2562448027, + 13892461761, + 13892461763, + 13892461762, + 2562448028 + ], + "geometry": [ + { "lat": 40.7287813, "lon": -74.0113340 }, + { "lat": 40.7287909, "lon": -74.0114824 }, + { "lat": 40.7288063, "lon": -74.0116354 }, + { "lat": 40.7288408, "lon": -74.0118964 }, + { "lat": 40.7288548, "lon": -74.0120234 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 249664807, + "bounds": { + "minlat": 40.7291697, + "minlon": -74.0111702, + "maxlat": 40.7294403, + "maxlon": -74.0111364 + }, + "nodes": [ + 4379966340, + 12162502097, + 12162502096, + 12162542906, + 4629486883, + 2562448041 + ], + "geometry": [ + { "lat": 40.7294403, "lon": -74.0111364 }, + { "lat": 40.7294249, "lon": -74.0111399 }, + { "lat": 40.7294076, "lon": -74.0111430 }, + { "lat": 40.7292882, "lon": -74.0111572 }, + { "lat": 40.7292694, "lon": -74.0111597 }, + { "lat": 40.7291697, "lon": -74.0111702 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 250005730, + "bounds": { + "minlat": 40.8555778, + "minlon": -73.9669533, + "maxlat": 40.8559709, + "maxlon": -73.9661165 + }, + "nodes": [ + 2565327497, + 2565327499, + 2565327500, + 2565327504, + 2565327506, + 2565327516, + 2919281737, + 2565327515, + 2565327513, + 2565327509, + 2565327507 + ], + "geometry": [ + { "lat": 40.8555778, "lon": -73.9661764 }, + { "lat": 40.8556810, "lon": -73.9661165 }, + { "lat": 40.8557050, "lon": -73.9661264 }, + { "lat": 40.8557896, "lon": -73.9663681 }, + { "lat": 40.8558293, "lon": -73.9663928 }, + { "lat": 40.8559709, "lon": -73.9667820 }, + { "lat": 40.8559707, "lon": -73.9668071 }, + { "lat": 40.8559611, "lon": -73.9668295 }, + { "lat": 40.8559244, "lon": -73.9668682 }, + { "lat": 40.8558870, "lon": -73.9669009 }, + { "lat": 40.8558608, "lon": -73.9669533 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 250005731, + "bounds": { + "minlat": 40.8555193, + "minlon": -73.9669533, + "maxlat": 40.8558608, + "maxlon": -73.9659733 + }, + "nodes": [ + 2565327496, + 9286431079, + 2565327497, + 2565327507 + ], + "geometry": [ + { "lat": 40.8555193, "lon": -73.9659733 }, + { "lat": 40.8555303, "lon": -73.9660465 }, + { "lat": 40.8555778, "lon": -73.9661764 }, + { "lat": 40.8558608, "lon": -73.9669533 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 250005732, + "bounds": { + "minlat": 40.8559085, + "minlon": -73.9665741, + "maxlat": 40.8561769, + "maxlon": -73.9661962 + }, + "nodes": [ + 1951979439, + 12021336924, + 2565327517, + 12021336923, + 12021336922, + 2565327514, + 12021336921, + 12021336920, + 2565327510, + 12021336919, + 12021336918, + 2565327511, + 12021336917, + 2565327518, + 2565327522 + ], + "geometry": [ + { "lat": 40.8560370, "lon": -73.9665460 }, + { "lat": 40.8559891, "lon": -73.9665741 }, + { "lat": 40.8559740, "lon": -73.9665668 }, + { "lat": 40.8559603, "lon": -73.9665560 }, + { "lat": 40.8559457, "lon": -73.9665355 }, + { "lat": 40.8559347, "lon": -73.9665148 }, + { "lat": 40.8559208, "lon": -73.9664753 }, + { "lat": 40.8559136, "lon": -73.9664508 }, + { "lat": 40.8559086, "lon": -73.9664232 }, + { "lat": 40.8559085, "lon": -73.9663986 }, + { "lat": 40.8559123, "lon": -73.9663807 }, + { "lat": 40.8559197, "lon": -73.9663658 }, + { "lat": 40.8559301, "lon": -73.9663521 }, + { "lat": 40.8559427, "lon": -73.9663420 }, + { "lat": 40.8561769, "lon": -73.9661962 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 250049336, + "bounds": { + "minlat": 40.7189393, + "minlon": -74.0116862, + "maxlat": 40.7189673, + "maxlon": -74.0114591 + }, + "nodes": [ + 2565683769, + 2565683767 + ], + "geometry": [ + { "lat": 40.7189673, "lon": -74.0116862 }, + { "lat": 40.7189393, "lon": -74.0114591 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Harrison Street", + "name:ko": "해리슨 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 250049337, + "bounds": { + "minlat": 40.7188209, + "minlon": -74.0113568, + "maxlat": 40.7189270, + "maxlon": -74.0104761 + }, + "nodes": [ + 2565699085, + 11464658056, + 7144807588, + 11463822883 + ], + "geometry": [ + { "lat": 40.7189270, "lon": -74.0113568 }, + { "lat": 40.7189196, "lon": -74.0112979 }, + { "lat": 40.7188998, "lon": -74.0111266 }, + { "lat": 40.7188209, "lon": -74.0104761 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Harrison Street", + "name:ko": "해리슨 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 250049338, + "bounds": { + "minlat": 40.7189673, + "minlon": -74.0121010, + "maxlat": 40.7190196, + "maxlon": -74.0116862 + }, + "nodes": [ + 2565683776, + 2565683769 + ], + "geometry": [ + { "lat": 40.7190196, "lon": -74.0121010 }, + { "lat": 40.7189673, "lon": -74.0116862 } + ], + "tags": { + "covered": "yes", + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Harrison Street", + "name:ko": "해리슨 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 250049339, + "bounds": { + "minlat": 40.7189270, + "minlon": -74.0114591, + "maxlat": 40.7189393, + "maxlon": -74.0113568 + }, + "nodes": [ + 2565683767, + 2565699085 + ], + "geometry": [ + { "lat": 40.7189393, "lon": -74.0114591 }, + { "lat": 40.7189270, "lon": -74.0113568 } + ], + "tags": { + "covered": "yes", + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Harrison Street", + "name:ko": "해리슨 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 250172275, + "bounds": { + "minlat": 40.7369831, + "minlon": -73.9740283, + "maxlat": 40.7371168, + "maxlon": -73.9737037 + }, + "nodes": [ + 1577583880, + 2566668499 + ], + "geometry": [ + { "lat": 40.7371168, "lon": -73.9740283 }, + { "lat": 40.7369831, "lon": -73.9737037 } + ], + "tags": { + "highway": "service", + "maxheight": "12'6\"", + "service": "driveway", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 250172276, + "bounds": { + "minlat": 40.7366572, + "minlon": -73.9737037, + "maxlat": 40.7369831, + "maxlon": -73.9728359 + }, + "nodes": [ + 2566668499, + 9934065150, + 9934065149, + 9934065148, + 9934065147, + 4244374658, + 9934065146 + ], + "geometry": [ + { "lat": 40.7369831, "lon": -73.9737037 }, + { "lat": 40.7369469, "lon": -73.9736184 }, + { "lat": 40.7368916, "lon": -73.9734882 }, + { "lat": 40.7368649, "lon": -73.9734253 }, + { "lat": 40.7368270, "lon": -73.9733363 }, + { "lat": 40.7366720, "lon": -73.9729713 }, + { "lat": 40.7366572, "lon": -73.9728359 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 250267912, + "bounds": { + "minlat": 40.7156185, + "minlon": -73.9942500, + "maxlat": 40.7158403, + "maxlon": -73.9941372 + }, + "nodes": [ + 2567558915, + 4528918668, + 42440798 + ], + "geometry": [ + { "lat": 40.7158403, "lon": -73.9941372 }, + { "lat": 40.7157035, "lon": -73.9942070 }, + { "lat": 40.7156185, "lon": -73.9942500 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Forsyth Street", + "name:etymology:wikidata": "Q4888596", + "name:ko": "포사이스 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5470659", + "wikipedia": "en:Forsyth Street" + } +}, +{ + "type": "way", + "id": 251536260, + "bounds": { + "minlat": 40.7995517, + "minlon": -74.0077676, + "maxlat": 40.8001279, + "maxlon": -74.0073228 + }, + "nodes": [ + 2577450300, + 7678477582, + 7678477581, + 2577450303 + ], + "geometry": [ + { "lat": 40.7995517, "lon": -74.0077676 }, + { "lat": 40.7995871, "lon": -74.0077403 }, + { "lat": 40.8000934, "lon": -74.0073495 }, + { "lat": 40.8001279, "lon": -74.0073228 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 252227354, + "bounds": { + "minlat": 40.7716133, + "minlon": -73.9936483, + "maxlat": 40.7729617, + "maxlon": -73.9904508 + }, + "nodes": [ + 42430749, + 11608958694, + 4682935360, + 7117112644, + 12153915819, + 4872443916, + 247123651, + 7787811323, + 61272887 + ], + "geometry": [ + { "lat": 40.7716133, "lon": -73.9904508 }, + { "lat": 40.7716752, "lon": -73.9905975 }, + { "lat": 40.7721744, "lon": -73.9917513 }, + { "lat": 40.7725169, "lon": -73.9925663 }, + { "lat": 40.7727577, "lon": -73.9931345 }, + { "lat": 40.7727644, "lon": -73.9931505 }, + { "lat": 40.7727862, "lon": -73.9932091 }, + { "lat": 40.7729170, "lon": -73.9935423 }, + { "lat": 40.7729617, "lon": -73.9936483 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 59th Street", + "name:ru": "Западная 59-я стрит", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 252227355, + "bounds": { + "minlat": 40.7751752, + "minlon": -73.9901444, + "maxlat": 40.7755748, + "maxlon": -73.9891964 + }, + "nodes": [ + 595245925, + 10098667655, + 10046485489, + 10046485490, + 595245918 + ], + "geometry": [ + { "lat": 40.7755748, "lon": -73.9901444 }, + { "lat": 40.7755358, "lon": -73.9900520 }, + { "lat": 40.7752384, "lon": -73.9893462 }, + { "lat": 40.7752129, "lon": -73.9892858 }, + { "lat": 40.7751752, "lon": -73.9891964 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 64th Street", + "name:ru": "Западная 64-я стрит", + "name_1": "West 64 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 254594899, + "bounds": { + "minlat": 40.8287535, + "minlon": -73.9443412, + "maxlat": 40.8296262, + "maxlon": -73.9422657 + }, + "nodes": [ + 13239310712, + 11221649598, + 11221649562, + 11218709943, + 13239310711 + ], + "geometry": [ + { "lat": 40.8296262, "lon": -73.9443412 }, + { "lat": 40.8295928, "lon": -73.9442619 }, + { "lat": 40.8288202, "lon": -73.9424243 }, + { "lat": 40.8287947, "lon": -73.9423636 }, + { "lat": 40.8287535, "lon": -73.9422657 } + ], + "tags": { + "alt_name": "West 152 Street", + "alt_name_1": "Dance Theatre of Harlem Way", + "description": "This honorary street name memorializes Dance Theatre of Harlem.", + "highway": "residential", + "name": "West 152nd Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 254594900, + "bounds": { + "minlat": 40.8284470, + "minlon": -73.9422240, + "maxlat": 40.8287360, + "maxlon": -73.9415400 + }, + "nodes": [ + 2504882506, + 11221649559, + 2504882503, + 11218709949, + 42427888 + ], + "geometry": [ + { "lat": 40.8287360, "lon": -73.9422240 }, + { "lat": 40.8286846, "lon": -73.9421024 }, + { "lat": 40.8285283, "lon": -73.9417325 }, + { "lat": 40.8285034, "lon": -73.9416734 }, + { "lat": 40.8284470, "lon": -73.9415400 } + ], + "tags": { + "alt_name": "West 152 Street", + "highway": "residential", + "name": "West 152nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 255289824, + "bounds": { + "minlat": 40.8280975, + "minlon": -73.9284385, + "maxlat": 40.8298094, + "maxlon": -73.9257478 + }, + "nodes": [ + 269458948, + 12163643887, + 2609933848, + 12163643886, + 13158397960, + 4707397309, + 2609933850, + 2609933852, + 2609933853, + 2609933855, + 4707397293, + 7620717834, + 2611640860, + 13158397959, + 2611640863, + 4707397292, + 2609933857, + 2609933859, + 2609933860, + 2609933862, + 2609933864, + 2609933866, + 2609933868, + 2609933869, + 13158397958, + 2609933871, + 2609933873, + 3991397137, + 3991397138, + 3991397136, + 1932720404, + 269458951, + 1932720469, + 1932720402, + 1932720471, + 269458950, + 1368521817, + 1368521802, + 1368521811, + 1932720462, + 1932720444, + 1932720499, + 1932720484, + 1932720406, + 1932720403, + 1368521810, + 1368521816, + 1368521827, + 1368521809, + 269458949, + 1932720465, + 1932720453, + 1932720459, + 1932720472, + 269458948 + ], + "geometry": [ + { "lat": 40.8284260, "lon": -73.9257478 }, + { "lat": 40.8281134, "lon": -73.9259261 }, + { "lat": 40.8280975, "lon": -73.9259351 }, + { "lat": 40.8281126, "lon": -73.9259838 }, + { "lat": 40.8281140, "lon": -73.9259882 }, + { "lat": 40.8281386, "lon": -73.9260675 }, + { "lat": 40.8281508, "lon": -73.9261067 }, + { "lat": 40.8281807, "lon": -73.9260935 }, + { "lat": 40.8283738, "lon": -73.9267050 }, + { "lat": 40.8283539, "lon": -73.9267182 }, + { "lat": 40.8283946, "lon": -73.9268432 }, + { "lat": 40.8284097, "lon": -73.9268897 }, + { "lat": 40.8284244, "lon": -73.9269347 }, + { "lat": 40.8285035, "lon": -73.9271774 }, + { "lat": 40.8285062, "lon": -73.9271858 }, + { "lat": 40.8285192, "lon": -73.9272256 }, + { "lat": 40.8285653, "lon": -73.9273672 }, + { "lat": 40.8286119, "lon": -73.9273848 }, + { "lat": 40.8288216, "lon": -73.9277258 }, + { "lat": 40.8291329, "lon": -73.9282207 }, + { "lat": 40.8291079, "lon": -73.9282493 }, + { "lat": 40.8291911, "lon": -73.9283879 }, + { "lat": 40.8292161, "lon": -73.9284231 }, + { "lat": 40.8292561, "lon": -73.9284385 }, + { "lat": 40.8292733, "lon": -73.9284337 }, + { "lat": 40.8292877, "lon": -73.9284297 }, + { "lat": 40.8293226, "lon": -73.9284033 }, + { "lat": 40.8294362, "lon": -73.9282557 }, + { "lat": 40.8296037, "lon": -73.9280473 }, + { "lat": 40.8298094, "lon": -73.9278269 }, + { "lat": 40.8297015, "lon": -73.9279154 }, + { "lat": 40.8296200, "lon": -73.9279609 }, + { "lat": 40.8295455, "lon": -73.9279875 }, + { "lat": 40.8294754, "lon": -73.9280031 }, + { "lat": 40.8294083, "lon": -73.9280074 }, + { "lat": 40.8293921, "lon": -73.9280848 }, + { "lat": 40.8291699, "lon": -73.9280101 }, + { "lat": 40.8291798, "lon": -73.9279564 }, + { "lat": 40.8291351, "lon": -73.9279297 }, + { "lat": 40.8290688, "lon": -73.9278818 }, + { "lat": 40.8290221, "lon": -73.9278405 }, + { "lat": 40.8289814, "lon": -73.9277968 }, + { "lat": 40.8289384, "lon": -73.9277451 }, + { "lat": 40.8289052, "lon": -73.9276945 }, + { "lat": 40.8288584, "lon": -73.9276156 }, + { "lat": 40.8287705, "lon": -73.9274040 }, + { "lat": 40.8285326, "lon": -73.9267740 }, + { "lat": 40.8284908, "lon": -73.9266336 }, + { "lat": 40.8284557, "lon": -73.9264828 }, + { "lat": 40.8284312, "lon": -73.9263344 }, + { "lat": 40.8283955, "lon": -73.9263405 }, + { "lat": 40.8283767, "lon": -73.9260874 }, + { "lat": 40.8284127, "lon": -73.9260804 }, + { "lat": 40.8284114, "lon": -73.9259517 }, + { "lat": 40.8284260, "lon": -73.9257478 } + ], + "tags": { + "area": "yes", + "foot": "yes", + "highway": "pedestrian", + "name": "Babe Ruth Plaza", + "name:etymology:wikidata": "Q213812", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 255289862, + "bounds": { + "minlat": 40.8304255, + "minlon": -73.9246400, + "maxlat": 40.8305003, + "maxlon": -73.9244178 + }, + "nodes": [ + 2799966759, + 13038737300, + 2609934072 + ], + "geometry": [ + { "lat": 40.8305003, "lon": -73.9246400 }, + { "lat": 40.8304583, "lon": -73.9245151 }, + { "lat": 40.8304255, "lon": -73.9244178 } + ], + "tags": { + "highway": "service", + "layer": "1", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 255289863, + "bounds": { + "minlat": 40.8288251, + "minlon": -73.9294827, + "maxlat": 40.8288924, + "maxlon": -73.9294328 + }, + "nodes": [ + 2609934074, + 2799861141 + ], + "geometry": [ + { "lat": 40.8288251, "lon": -73.9294328 }, + { "lat": 40.8288924, "lon": -73.9294827 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "2", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 255289864, + "bounds": { + "minlat": 40.8284778, + "minlon": -73.9293631, + "maxlat": 40.8288568, + "maxlon": -73.9290494 + }, + "nodes": [ + 2609934078, + 11683939843, + 2609934079 + ], + "geometry": [ + { "lat": 40.8288568, "lon": -73.9293631 }, + { "lat": 40.8288001, "lon": -73.9293162 }, + { "lat": 40.8284778, "lon": -73.9290494 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "2", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 255289866, + "bounds": { + "minlat": 40.8267114, + "minlon": -73.9298577, + "maxlat": 40.8268232, + "maxlon": -73.9297967 + }, + "nodes": [ + 1932768691, + 9910769996, + 13038755627, + 2829219658 + ], + "geometry": [ + { "lat": 40.8267114, "lon": -73.9298577 }, + { "lat": 40.8267673, "lon": -73.9298272 }, + { "lat": 40.8267878, "lon": -73.9298160 }, + { "lat": 40.8268232, "lon": -73.9297967 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 255289867, + "bounds": { + "minlat": 40.8291137, + "minlon": -73.9293166, + "maxlat": 40.8293359, + "maxlon": -73.9290043 + }, + "nodes": [ + 2799382043, + 7560954606, + 11683939890, + 7847656983, + 2609934090 + ], + "geometry": [ + { "lat": 40.8291137, "lon": -73.9293166 }, + { "lat": 40.8291837, "lon": -73.9291504 }, + { "lat": 40.8292760, "lon": -73.9290634 }, + { "lat": 40.8293250, "lon": -73.9290173 }, + { "lat": 40.8293359, "lon": -73.9290043 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255477252, + "bounds": { + "minlat": 40.8264343, + "minlon": -73.9298729, + "maxlat": 40.8264967, + "maxlon": -73.9297031 + }, + "nodes": [ + 2611640879, + 13038755628, + 2611640880 + ], + "geometry": [ + { "lat": 40.8264967, "lon": -73.9297031 }, + { "lat": 40.8264621, "lon": -73.9297972 }, + { "lat": 40.8264343, "lon": -73.9298729 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255477253, + "bounds": { + "minlat": 40.8264343, + "minlon": -73.9304596, + "maxlat": 40.8267642, + "maxlon": -73.9298729 + }, + "nodes": [ + 2611640880, + 2611640881, + 2611640882, + 2611640883 + ], + "geometry": [ + { "lat": 40.8264343, "lon": -73.9298729 }, + { "lat": 40.8265659, "lon": -73.9299656 }, + { "lat": 40.8265905, "lon": -73.9300143 }, + { "lat": 40.8267642, "lon": -73.9304596 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255477254, + "bounds": { + "minlat": 40.8262571, + "minlon": -73.9304688, + "maxlat": 40.8264343, + "maxlon": -73.9298729 + }, + "nodes": [ + 2611640884, + 2611640885, + 2611640886, + 2611640887, + 2611640888, + 2611640889, + 2611640891, + 2611640880 + ], + "geometry": [ + { "lat": 40.8264062, "lon": -73.9304688 }, + { "lat": 40.8263115, "lon": -73.9302509 }, + { "lat": 40.8262711, "lon": -73.9301813 }, + { "lat": 40.8262571, "lon": -73.9301303 }, + { "lat": 40.8262957, "lon": -73.9300213 }, + { "lat": 40.8263624, "lon": -73.9299100 }, + { "lat": 40.8263739, "lon": -73.9299040 }, + { "lat": 40.8264343, "lon": -73.9298729 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255477255, + "bounds": { + "minlat": 40.8263739, + "minlon": -73.9305013, + "maxlat": 40.8265975, + "maxlon": -73.9299040 + }, + "nodes": [ + 2611640890, + 2611640891 + ], + "geometry": [ + { "lat": 40.8265975, "lon": -73.9305013 }, + { "lat": 40.8263739, "lon": -73.9299040 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255477262, + "bounds": { + "minlat": 40.8252386, + "minlon": -73.9319039, + "maxlat": 40.8259698, + "maxlon": -73.9315039 + }, + "nodes": [ + 2611640931, + 13068270870, + 2611640932, + 2611640933, + 2611640939, + 2611640940, + 2611640934, + 2611640935, + 2611640943, + 2611640936, + 13068270870 + ], + "geometry": [ + { "lat": 40.8252565, "lon": -73.9315039 }, + { "lat": 40.8252484, "lon": -73.9316663 }, + { "lat": 40.8252429, "lon": -73.9317765 }, + { "lat": 40.8252386, "lon": -73.9318142 }, + { "lat": 40.8256071, "lon": -73.9318578 }, + { "lat": 40.8257642, "lon": -73.9318784 }, + { "lat": 40.8259588, "lon": -73.9319039 }, + { "lat": 40.8259698, "lon": -73.9317256 }, + { "lat": 40.8256033, "lon": -73.9316918 }, + { "lat": 40.8254164, "lon": -73.9316746 }, + { "lat": 40.8252484, "lon": -73.9316663 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255477263, + "bounds": { + "minlat": 40.8255761, + "minlon": -73.9324606, + "maxlat": 40.8259588, + "maxlon": -73.9318578 + }, + "nodes": [ + 2611640934, + 2611640937, + 2611640941, + 2611640938, + 2611640939 + ], + "geometry": [ + { "lat": 40.8259588, "lon": -73.9319039 }, + { "lat": 40.8259203, "lon": -73.9324606 }, + { "lat": 40.8257268, "lon": -73.9324340 }, + { "lat": 40.8255761, "lon": -73.9324133 }, + { "lat": 40.8256071, "lon": -73.9318578 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255477264, + "bounds": { + "minlat": 40.8257268, + "minlon": -73.9324340, + "maxlat": 40.8257642, + "maxlon": -73.9318784 + }, + "nodes": [ + 2611640940, + 2611640941 + ], + "geometry": [ + { "lat": 40.8257642, "lon": -73.9318784 }, + { "lat": 40.8257268, "lon": -73.9324340 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255477265, + "bounds": { + "minlat": 40.8256033, + "minlon": -73.9316918, + "maxlat": 40.8256176, + "maxlon": -73.9314407 + }, + "nodes": [ + 2611640942, + 2799382018, + 2611640943 + ], + "geometry": [ + { "lat": 40.8256176, "lon": -73.9314407 }, + { "lat": 40.8256139, "lon": -73.9315336 }, + { "lat": 40.8256033, "lon": -73.9316918 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255477268, + "bounds": { + "minlat": 40.8245683, + "minlon": -73.9325856, + "maxlat": 40.8251648, + "maxlon": -73.9314953 + }, + "nodes": [ + 2817964773, + 2611640955, + 4281459773, + 2611640956, + 2611640957, + 4281459786, + 4281459779, + 4281459891, + 2611640958 + ], + "geometry": [ + { "lat": 40.8246051, "lon": -73.9318128 }, + { "lat": 40.8246020, "lon": -73.9318844 }, + { "lat": 40.8245944, "lon": -73.9320336 }, + { "lat": 40.8245683, "lon": -73.9325479 }, + { "lat": 40.8250986, "lon": -73.9325856 }, + { "lat": 40.8251074, "lon": -73.9323861 }, + { "lat": 40.8251222, "lon": -73.9323487 }, + { "lat": 40.8251575, "lon": -73.9316179 }, + { "lat": 40.8251648, "lon": -73.9314953 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 255477269, + "bounds": { + "minlat": 40.8246399, + "minlon": -73.9324861, + "maxlat": 40.8250798, + "maxlon": -73.9314780 + }, + "nodes": [ + 2611640959, + 2611640971, + 2611640963, + 2611640965, + 2611640960, + 2611640961, + 2611640964, + 2611640962, + 2611640963 + ], + "geometry": [ + { "lat": 40.8250798, "lon": -73.9314780 }, + { "lat": 40.8250732, "lon": -73.9315992 }, + { "lat": 40.8250463, "lon": -73.9321630 }, + { "lat": 40.8250384, "lon": -73.9323298 }, + { "lat": 40.8250309, "lon": -73.9324861 }, + { "lat": 40.8246399, "lon": -73.9324642 }, + { "lat": 40.8246465, "lon": -73.9323036 }, + { "lat": 40.8246537, "lon": -73.9321258 }, + { "lat": 40.8250463, "lon": -73.9321630 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255477270, + "bounds": { + "minlat": 40.8246465, + "minlon": -73.9323298, + "maxlat": 40.8250384, + "maxlon": -73.9323036 + }, + "nodes": [ + 2611640964, + 2611640965 + ], + "geometry": [ + { "lat": 40.8246465, "lon": -73.9323036 }, + { "lat": 40.8250384, "lon": -73.9323298 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255477272, + "bounds": { + "minlat": 40.8239069, + "minlon": -73.9289057, + "maxlat": 40.8244848, + "maxlon": -73.9282057 + }, + "nodes": [ + 2611640974, + 2611640975, + 2611640976, + 2611640977, + 2611640978, + 2611640979, + 2611640980, + 2611640981, + 2611640982, + 2611640983, + 2611640975 + ], + "geometry": [ + { "lat": 40.8239569, "lon": -73.9282057 }, + { "lat": 40.8240581, "lon": -73.9283990 }, + { "lat": 40.8243957, "lon": -73.9286345 }, + { "lat": 40.8244713, "lon": -73.9287665 }, + { "lat": 40.8244848, "lon": -73.9288772 }, + { "lat": 40.8244605, "lon": -73.9289057 }, + { "lat": 40.8244227, "lon": -73.9288950 }, + { "lat": 40.8239150, "lon": -73.9285524 }, + { "lat": 40.8239069, "lon": -73.9285132 }, + { "lat": 40.8239420, "lon": -73.9284739 }, + { "lat": 40.8240581, "lon": -73.9283990 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255480851, + "bounds": { + "minlat": 40.8267902, + "minlon": -73.9328035, + "maxlat": 40.8282898, + "maxlon": -73.9317951 + }, + "nodes": [ + 2611678471, + 2611678436, + 2611678437, + 2611678444, + 2611678438, + 2611678439, + 2611678440, + 2611678441, + 2611678442, + 2611678443, + 2611678444 + ], + "geometry": [ + { "lat": 40.8267902, "lon": -73.9317951 }, + { "lat": 40.8268177, "lon": -73.9317974 }, + { "lat": 40.8270791, "lon": -73.9319005 }, + { "lat": 40.8277831, "lon": -73.9323915 }, + { "lat": 40.8282737, "lon": -73.9327338 }, + { "lat": 40.8282898, "lon": -73.9327701 }, + { "lat": 40.8282737, "lon": -73.9328035 }, + { "lat": 40.8279091, "lon": -73.9327368 }, + { "lat": 40.8278358, "lon": -73.9326914 }, + { "lat": 40.8277991, "lon": -73.9326368 }, + { "lat": 40.8277831, "lon": -73.9323915 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255480852, + "bounds": { + "minlat": 40.8270158, + "minlon": -73.9325186, + "maxlat": 40.8277831, + "maxlon": -73.9323205 + }, + "nodes": [ + 2611678444, + 2611678448, + 2611678460, + 2611678445, + 2611678446, + 2611678447 + ], + "geometry": [ + { "lat": 40.8277831, "lon": -73.9323915 }, + { "lat": 40.8275145, "lon": -73.9324376 }, + { "lat": 40.8272388, "lon": -73.9324849 }, + { "lat": 40.8270424, "lon": -73.9325186 }, + { "lat": 40.8270216, "lon": -73.9324883 }, + { "lat": 40.8270158, "lon": -73.9323205 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255480853, + "bounds": { + "minlat": 40.8262009, + "minlon": -73.9324376, + "maxlat": 40.8275145, + "maxlon": -73.9319308 + }, + "nodes": [ + 2611678448, + 2611678449, + 2611678450, + 2611678451 + ], + "geometry": [ + { "lat": 40.8275145, "lon": -73.9324376 }, + { "lat": 40.8270126, "lon": -73.9320853 }, + { "lat": 40.8267925, "lon": -73.9319914 }, + { "lat": 40.8262009, "lon": -73.9319308 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255480854, + "bounds": { + "minlat": 40.8261826, + "minlon": -73.9323793, + "maxlat": 40.8270158, + "maxlon": -73.9317458 + }, + "nodes": [ + 2611678452, + 2611678451, + 2611678458, + 2611678453, + 2611678454, + 2611678455, + 2611678456, + 2611678447 + ], + "geometry": [ + { "lat": 40.8262081, "lon": -73.9317458 }, + { "lat": 40.8262009, "lon": -73.9319308 }, + { "lat": 40.8261905, "lon": -73.9321272 }, + { "lat": 40.8261826, "lon": -73.9322762 }, + { "lat": 40.8261963, "lon": -73.9323156 }, + { "lat": 40.8262353, "lon": -73.9323429 }, + { "lat": 40.8265632, "lon": -73.9323793 }, + { "lat": 40.8270158, "lon": -73.9323205 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255480855, + "bounds": { + "minlat": 40.8261905, + "minlon": -73.9324849, + "maxlat": 40.8272388, + "maxlon": -73.9321272 + }, + "nodes": [ + 2611678458, + 2611678459, + 2611678447, + 2611678460 + ], + "geometry": [ + { "lat": 40.8261905, "lon": -73.9321272 }, + { "lat": 40.8267859, "lon": -73.9321814 }, + { "lat": 40.8270158, "lon": -73.9323205 }, + { "lat": 40.8272388, "lon": -73.9324849 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255480857, + "bounds": { + "minlat": 40.8267902, + "minlon": -73.9317951, + "maxlat": 40.8268011, + "maxlon": -73.9316303 + }, + "nodes": [ + 2611678471, + 2611678472 + ], + "geometry": [ + { "lat": 40.8267902, "lon": -73.9317951 }, + { "lat": 40.8268011, "lon": -73.9316303 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255480860, + "bounds": { + "minlat": 40.8216035, + "minlon": -73.9291648, + "maxlat": 40.8223465, + "maxlon": -73.9283382 + }, + "nodes": [ + 2611678483, + 2611678488, + 2611678490, + 2611678484, + 2611678485, + 2611678489, + 2611678486, + 2611678487, + 2611678488 + ], + "geometry": [ + { "lat": 40.8217711, "lon": -73.9291648 }, + { "lat": 40.8217193, "lon": -73.9289397 }, + { "lat": 40.8216604, "lon": -73.9286955 }, + { "lat": 40.8216035, "lon": -73.9284601 }, + { "lat": 40.8219545, "lon": -73.9283382 }, + { "lat": 40.8221625, "lon": -73.9284981 }, + { "lat": 40.8223465, "lon": -73.9286395 }, + { "lat": 40.8223414, "lon": -73.9287072 }, + { "lat": 40.8217193, "lon": -73.9289397 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255480861, + "bounds": { + "minlat": 40.8216604, + "minlon": -73.9286955, + "maxlat": 40.8221625, + "maxlon": -73.9284981 + }, + "nodes": [ + 2611678489, + 2611678490 + ], + "geometry": [ + { "lat": 40.8221625, "lon": -73.9284981 }, + { "lat": 40.8216604, "lon": -73.9286955 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255480862, + "bounds": { + "minlat": 40.8223235, + "minlon": -73.9285413, + "maxlat": 40.8229614, + "maxlon": -73.9281181 + }, + "nodes": [ + 2611678491, + 2611678492, + 2611678495, + 2611678493, + 2611678494, + 2611678491 + ], + "geometry": [ + { "lat": 40.8228256, "lon": -73.9285413 }, + { "lat": 40.8223235, "lon": -73.9281655 }, + { "lat": 40.8224089, "lon": -73.9281401 }, + { "lat": 40.8224823, "lon": -73.9281181 }, + { "lat": 40.8229614, "lon": -73.9284736 }, + { "lat": 40.8228256, "lon": -73.9285413 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255480863, + "bounds": { + "minlat": 40.8222202, + "minlon": -73.9281401, + "maxlat": 40.8224089, + "maxlon": -73.9279951 + }, + "nodes": [ + 2611678495, + 2611678496 + ], + "geometry": [ + { "lat": 40.8224089, "lon": -73.9281401 }, + { "lat": 40.8222202, "lon": -73.9279951 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 255480867, + "bounds": { + "minlat": 40.8304729, + "minlon": -73.9239496, + "maxlat": 40.8307262, + "maxlon": -73.9232210 + }, + "nodes": [ + 2611678511, + 13039060068, + 7560880440, + 7560880430, + 2611678509 + ], + "geometry": [ + { "lat": 40.8304729, "lon": -73.9232210 }, + { "lat": 40.8304958, "lon": -73.9232862 }, + { "lat": 40.8305776, "lon": -73.9235191 }, + { "lat": 40.8306639, "lon": -73.9237691 }, + { "lat": 40.8307262, "lon": -73.9239496 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 256902825, + "bounds": { + "minlat": 40.7236306, + "minlon": -74.0061125, + "maxlat": 40.7237872, + "maxlon": -74.0047955 + }, + "nodes": [ + 42430143, + 12187433949, + 4890320283, + 12187433950, + 12187433951, + 4890633697, + 42423456 + ], + "geometry": [ + { "lat": 40.7236306, "lon": -74.0047955 }, + { "lat": 40.7236430, "lon": -74.0048655 }, + { "lat": 40.7236561, "lon": -74.0049363 }, + { "lat": 40.7236604, "lon": -74.0049899 }, + { "lat": 40.7237553, "lon": -74.0059092 }, + { "lat": 40.7237633, "lon": -74.0059801 }, + { "lat": 40.7237872, "lon": -74.0061125 } + ], + "tags": { + "bus:lanes": "|||designated", + "cycleway:right": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Watts Street", + "name:etymology:wikidata": "Q1702113", + "name:ko": "와츠 스트리트", + "name:ru": "Уоттс-стрит", + "noref": "yes", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|slight_right|slight_right|" + } +}, +{ + "type": "way", + "id": 256902826, + "bounds": { + "minlat": 40.7236306, + "minlon": -74.0047955, + "maxlat": 40.7241732, + "maxlon": -74.0045754 + }, + "nodes": [ + 42430143, + 4890320280, + 12187433948, + 5216470312, + 42430147 + ], + "geometry": [ + { "lat": 40.7236306, "lon": -74.0047955 }, + { "lat": 40.7237083, "lon": -74.0047644 }, + { "lat": 40.7237483, "lon": -74.0047478 }, + { "lat": 40.7240959, "lon": -74.0046068 }, + { "lat": 40.7241732, "lon": -74.0045754 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 256902827, + "bounds": { + "minlat": 40.7048274, + "minlon": -74.0149470, + "maxlat": 40.7062776, + "maxlon": -74.0142958 + }, + "nodes": [ + 588546798, + 4145586940, + 4145586915, + 4145586934, + 7722035763, + 4145586936, + 42436202 + ], + "geometry": [ + { "lat": 40.7048274, "lon": -74.0149470 }, + { "lat": 40.7048993, "lon": -74.0149180 }, + { "lat": 40.7062168, "lon": -74.0143485 }, + { "lat": 40.7062367, "lon": -74.0143374 }, + { "lat": 40.7062499, "lon": -74.0143266 }, + { "lat": 40.7062644, "lon": -74.0143119 }, + { "lat": 40.7062776, "lon": -74.0142958 } + ], + "tags": { + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:bus:forward": "1", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Greenwich", + "tiger:name_type": "St", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 256902829, + "bounds": { + "minlat": 40.7206168, + "minlon": -74.0066622, + "maxlat": 40.7211171, + "maxlon": -74.0065788 + }, + "nodes": [ + 3567807957, + 11808317373 + ], + "geometry": [ + { "lat": 40.7211171, "lon": -74.0065788 }, + { "lat": 40.7206168, "lon": -74.0066622 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left;through|", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 256902830, + "bounds": { + "minlat": 40.7152360, + "minlon": -74.0054200, + "maxlat": 40.7162939, + "maxlon": -74.0045248 + }, + "nodes": [ + 42428411, + 8307637698, + 4754091357, + 4754091358, + 5161079154, + 8307637664, + 42428408, + 8307637665, + 4754091362, + 8279851419, + 42428405 + ], + "geometry": [ + { "lat": 40.7162939, "lon": -74.0045248 }, + { "lat": 40.7162347, "lon": -74.0045745 }, + { "lat": 40.7161049, "lon": -74.0046842 }, + { "lat": 40.7158635, "lon": -74.0048885 }, + { "lat": 40.7158281, "lon": -74.0049184 }, + { "lat": 40.7157952, "lon": -74.0049441 }, + { "lat": 40.7157586, "lon": -74.0049777 }, + { "lat": 40.7157232, "lon": -74.0050070 }, + { "lat": 40.7154537, "lon": -74.0052355 }, + { "lat": 40.7153008, "lon": -74.0053649 }, + { "lat": 40.7152360, "lon": -74.0054200 } + ], + "tags": { + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-18:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 256902831, + "bounds": { + "minlat": 40.7157901, + "minlon": -74.0045248, + "maxlat": 40.7162939, + "maxlon": -74.0034618 + }, + "nodes": [ + 42428411, + 8307637696, + 9149294706, + 10583167618, + 10583167617, + 10583167615, + 10583167616, + 1253070785 + ], + "geometry": [ + { "lat": 40.7162939, "lon": -74.0045248 }, + { "lat": 40.7162598, "lon": -74.0044347 }, + { "lat": 40.7160364, "lon": -74.0039501 }, + { "lat": 40.7159741, "lon": -74.0038169 }, + { "lat": 40.7159318, "lon": -74.0037334 }, + { "lat": 40.7158934, "lon": -74.0036619 }, + { "lat": 40.7158416, "lon": -74.0035624 }, + { "lat": 40.7157901, "lon": -74.0034618 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Worth Street", + "name:etymology:wikidata": "Q3568734", + "name:ko": "워스 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1318800", + "wikipedia": "en:Worth Street" + } +}, +{ + "type": "way", + "id": 257356093, + "bounds": { + "minlat": 40.7353147, + "minlon": -73.9592488, + "maxlat": 40.7353796, + "maxlon": -73.9584974 + }, + "nodes": [ + 5481915322, + 2629142961, + 8097082840, + 2629142962 + ], + "geometry": [ + { "lat": 40.7353147, "lon": -73.9592488 }, + { "lat": 40.7353685, "lon": -73.9586287 }, + { "lat": 40.7353705, "lon": -73.9586022 }, + { "lat": 40.7353796, "lon": -73.9584974 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 257357924, + "bounds": { + "minlat": 40.7560402, + "minlon": -73.9473115, + "maxlat": 40.7564301, + "maxlon": -73.9464171 + }, + "nodes": [ + 2629162213, + 6452721220, + 5538983359, + 2629162211, + 2629162216, + 2629162214 + ], + "geometry": [ + { "lat": 40.7564301, "lon": -73.9473115 }, + { "lat": 40.7563830, "lon": -73.9472214 }, + { "lat": 40.7563059, "lon": -73.9470736 }, + { "lat": 40.7562653, "lon": -73.9469958 }, + { "lat": 40.7561174, "lon": -73.9466705 }, + { "lat": 40.7560402, "lon": -73.9464171 } + ], + "tags": { + "highway": "residential", + "name": "41st Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 257357926, + "bounds": { + "minlat": 40.7539980, + "minlon": -73.9464171, + "maxlat": 40.7560402, + "maxlon": -73.9424300 + }, + "nodes": [ + 2629162214, + 8219332983, + 42895302, + 8219336827, + 10891946380, + 10891946381, + 5491803942, + 5491803946, + 5491803931, + 10891946382, + 10891946383, + 8219336895, + 42895303, + 8334076717, + 5491803943, + 10891946373, + 10891946384, + 7734653713, + 42825882 + ], + "geometry": [ + { "lat": 40.7560402, "lon": -73.9464171 }, + { "lat": 40.7556920, "lon": -73.9457437 }, + { "lat": 40.7556570, "lon": -73.9456760 }, + { "lat": 40.7556264, "lon": -73.9456161 }, + { "lat": 40.7555831, "lon": -73.9455315 }, + { "lat": 40.7554718, "lon": -73.9453137 }, + { "lat": 40.7554602, "lon": -73.9452910 }, + { "lat": 40.7554583, "lon": -73.9452875 }, + { "lat": 40.7550218, "lon": -73.9444314 }, + { "lat": 40.7549369, "lon": -73.9442644 }, + { "lat": 40.7548657, "lon": -73.9441243 }, + { "lat": 40.7548463, "lon": -73.9440860 }, + { "lat": 40.7548100, "lon": -73.9440190 }, + { "lat": 40.7547745, "lon": -73.9439531 }, + { "lat": 40.7547060, "lon": -73.9438162 }, + { "lat": 40.7542233, "lon": -73.9428711 }, + { "lat": 40.7540816, "lon": -73.9425937 }, + { "lat": 40.7540621, "lon": -73.9425554 }, + { "lat": 40.7539980, "lon": -73.9424300 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "41st Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 257670981, + "bounds": { + "minlat": 40.7759445, + "minlon": -74.0120540, + "maxlat": 40.7759935, + "maxlon": -74.0119455 + }, + "nodes": [ + 1286793918, + 1793478660 + ], + "geometry": [ + { "lat": 40.7759445, "lon": -74.0119455 }, + { "lat": 40.7759935, "lon": -74.0120540 } + ], + "tags": { + "highway": "unclassified", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 257670982, + "bounds": { + "minlat": 40.7786206, + "minlon": -74.0110023, + "maxlat": 40.7791619, + "maxlon": -74.0098264 + }, + "nodes": [ + 2631530266, + 2631530267 + ], + "geometry": [ + { "lat": 40.7791619, "lon": -74.0110023 }, + { "lat": 40.7786206, "lon": -74.0098264 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 258014167, + "bounds": { + "minlat": 40.8798894, + "minlon": -73.9172884, + "maxlat": 40.8801511, + "maxlon": -73.9169656 + }, + "nodes": [ + 2634452687, + 11998094735, + 2634452693, + 2634452696, + 2634452698, + 2634452701, + 2634452714, + 11998094736, + 2634452704 + ], + "geometry": [ + { "lat": 40.8798894, "lon": -73.9169656 }, + { "lat": 40.8799529, "lon": -73.9169728 }, + { "lat": 40.8800145, "lon": -73.9169798 }, + { "lat": 40.8800678, "lon": -73.9169996 }, + { "lat": 40.8801129, "lon": -73.9170340 }, + { "lat": 40.8801402, "lon": -73.9170810 }, + { "lat": 40.8801511, "lon": -73.9171532 }, + { "lat": 40.8801504, "lon": -73.9172162 }, + { "lat": 40.8801495, "lon": -73.9172884 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 258014169, + "bounds": { + "minlat": 40.8785788, + "minlon": -73.9167286, + "maxlat": 40.8791725, + "maxlon": -73.9161840 + }, + "nodes": [ + 1545120654, + 2634452557, + 2634452560, + 2634452570, + 2634452596, + 2634452604, + 11998094747, + 5324454006 + ], + "geometry": [ + { "lat": 40.8785788, "lon": -73.9162138 }, + { "lat": 40.8786463, "lon": -73.9161840 }, + { "lat": 40.8787165, "lon": -73.9161882 }, + { "lat": 40.8788931, "lon": -73.9163371 }, + { "lat": 40.8790401, "lon": -73.9164611 }, + { "lat": 40.8790948, "lon": -73.9165459 }, + { "lat": 40.8791039, "lon": -73.9165802 }, + { "lat": 40.8791725, "lon": -73.9167286 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 263088941, + "bounds": { + "minlat": 40.7130809, + "minlon": -73.9850976, + "maxlat": 40.7132825, + "maxlon": -73.9850618 + }, + "nodes": [ + 12026651155, + 9010266061, + 8310246494, + 42437773 + ], + "geometry": [ + { "lat": 40.7132825, "lon": -73.9850976 }, + { "lat": 40.7132088, "lon": -73.9850869 }, + { "lat": 40.7131603, "lon": -73.9850793 }, + { "lat": 40.7130809, "lon": -73.9850618 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:left:buffer": "yes", + "foot": "use_sidepath", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Montgomery Street", + "name:etymology:wikidata": "Q444947", + "name:ko": "몽고메리 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 263326127, + "bounds": { + "minlat": 40.8039153, + "minlon": -73.9245427, + "maxlat": 40.8064641, + "maxlon": -73.9184375 + }, + "nodes": [ + 595800977, + 9156979769, + 9908650923, + 7369741439, + 42725481, + 9908650932, + 42761006, + 9908650933, + 9908642170, + 42763131, + 9908642171, + 42719445 + ], + "geometry": [ + { "lat": 40.8064641, "lon": -73.9245427 }, + { "lat": 40.8064640, "lon": -73.9245188 }, + { "lat": 40.8064568, "lon": -73.9244842 }, + { "lat": 40.8064453, "lon": -73.9244520 }, + { "lat": 40.8053725, "lon": -73.9218931 }, + { "lat": 40.8050687, "lon": -73.9211844 }, + { "lat": 40.8050269, "lon": -73.9210880 }, + { "lat": 40.8049863, "lon": -73.9209954 }, + { "lat": 40.8043119, "lon": -73.9194045 }, + { "lat": 40.8042596, "lon": -73.9192813 }, + { "lat": 40.8042220, "lon": -73.9191897 }, + { "lat": 40.8039153, "lon": -73.9184375 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 134th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "134th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 263326825, + "bounds": { + "minlat": 40.8248210, + "minlon": -73.9077810, + "maxlat": 40.8252140, + "maxlon": -73.9062410 + }, + "nodes": [ + 42742386, + 13247311042, + 5482222737, + 7557632338, + 8454365546, + 42735053 + ], + "geometry": [ + { "lat": 40.8252140, "lon": -73.9077810 }, + { "lat": 40.8251774, "lon": -73.9076374 }, + { "lat": 40.8251392, "lon": -73.9074878 }, + { "lat": 40.8249217, "lon": -73.9066354 }, + { "lat": 40.8248593, "lon": -73.9063910 }, + { "lat": 40.8248210, "lon": -73.9062410 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "East 164th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "164th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 263563003, + "bounds": { + "minlat": 40.7214979, + "minlon": -74.0078471, + "maxlat": 40.7217241, + "maxlon": -74.0067668 + }, + "nodes": [ + 42424258, + 4136522289, + 4136522290, + 3788379674, + 3788379675, + 1701898666, + 3788379676, + 1701898636, + 1195433577, + 1701898683, + 433301427, + 1701898658, + 42424263, + 1701898703, + 42424273, + 42424276 + ], + "geometry": [ + { "lat": 40.7217241, "lon": -74.0067668 }, + { "lat": 40.7216914, "lon": -74.0068309 }, + { "lat": 40.7216642, "lon": -74.0068965 }, + { "lat": 40.7216444, "lon": -74.0069544 }, + { "lat": 40.7216296, "lon": -74.0070259 }, + { "lat": 40.7216216, "lon": -74.0070953 }, + { "lat": 40.7216172, "lon": -74.0071716 }, + { "lat": 40.7216171, "lon": -74.0073152 }, + { "lat": 40.7216178, "lon": -74.0074637 }, + { "lat": 40.7216126, "lon": -74.0075326 }, + { "lat": 40.7216040, "lon": -74.0075986 }, + { "lat": 40.7215909, "lon": -74.0076552 }, + { "lat": 40.7215742, "lon": -74.0077059 }, + { "lat": 40.7215516, "lon": -74.0077582 }, + { "lat": 40.7215274, "lon": -74.0078026 }, + { "lat": 40.7214979, "lon": -74.0078471 } + ], + "tags": { + "bicycle": "no", + "destination": "Canal Street East;Uptown;Hudson Street;Brooklyn;Downtown", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxaxles": "3", + "maxspeed": "25 mph", + "name": "Holland Tunnel Rotary", + "oneway": "yes", + "ref": "I 78", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "no", + "toll": "yes", + "unsigned_ref": "I 78" + } +}, +{ + "type": "way", + "id": 264211595, + "bounds": { + "minlat": 40.7665660, + "minlon": -73.9846490, + "maxlat": 40.7672587, + "maxlon": -73.9841634 + }, + "nodes": [ + 2698702581, + 10082710024, + 10083933101, + 2698702583 + ], + "geometry": [ + { "lat": 40.7672587, "lon": -73.9841634 }, + { "lat": 40.7671648, "lon": -73.9842292 }, + { "lat": 40.7666389, "lon": -73.9845972 }, + { "lat": 40.7665660, "lon": -73.9846490 } + ], + "tags": { + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 264301521, + "bounds": { + "minlat": 40.7495480, + "minlon": -73.9183730, + "maxlat": 40.7496425, + "maxlon": -73.9179626 + }, + "nodes": [ + 2699913200, + 11467993915, + 9111623471 + ], + "geometry": [ + { "lat": 40.7496425, "lon": -73.9179626 }, + { "lat": 40.7495774, "lon": -73.9182808 }, + { "lat": 40.7495480, "lon": -73.9183730 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Barnett Avenue", + "name_1": "38th Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 264301522, + "bounds": { + "minlat": 40.7494111, + "minlon": -73.9179860, + "maxlat": 40.7496425, + "maxlon": -73.9178847 + }, + "nodes": [ + 2699913202, + 12046272390, + 11467993912, + 7671808576, + 12046272394, + 2699913200 + ], + "geometry": [ + { "lat": 40.7494111, "lon": -73.9178847 }, + { "lat": 40.7494304, "lon": -73.9179507 }, + { "lat": 40.7494535, "lon": -73.9179860 }, + { "lat": 40.7495503, "lon": -73.9179826 }, + { "lat": 40.7495782, "lon": -73.9179765 }, + { "lat": 40.7496425, "lon": -73.9179626 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "39th Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 264546995, + "bounds": { + "minlat": 40.7596231, + "minlon": -73.9619550, + "maxlat": 40.7602510, + "maxlon": -73.9615019 + }, + "nodes": [ + 42448326, + 4918486750, + 4918486772, + 6177439749 + ], + "geometry": [ + { "lat": 40.7596231, "lon": -73.9619550 }, + { "lat": 40.7596890, "lon": -73.9619057 }, + { "lat": 40.7601699, "lon": -73.9615604 }, + { "lat": 40.7602510, "lon": -73.9615019 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:left": "no", + "parking:right": "lane", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 264859135, + "bounds": { + "minlat": 40.8504081, + "minlon": -73.9633450, + "maxlat": 40.8510089, + "maxlon": -73.9632484 + }, + "nodes": [ + 2349833834, + 2705165988, + 4397850726, + 4397850729, + 4397850722, + 4397850725 + ], + "geometry": [ + { "lat": 40.8510089, "lon": -73.9632578 }, + { "lat": 40.8509577, "lon": -73.9632749 }, + { "lat": 40.8507287, "lon": -73.9633289 }, + { "lat": 40.8506212, "lon": -73.9633450 }, + { "lat": 40.8505197, "lon": -73.9633262 }, + { "lat": 40.8504081, "lon": -73.9632484 } + ], + "tags": { + "access": "permissive", + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "horse": "no", + "motor_vehicle": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 264859136, + "bounds": { + "minlat": 40.8510672, + "minlon": -73.9631989, + "maxlat": 40.8514965, + "maxlon": -73.9626178 + }, + "nodes": [ + 2705165989, + 4397861115, + 12072538044, + 12072538042, + 12072538043, + 4397861113, + 4397861116, + 4397861112, + 4397861114, + 12072538041, + 4397861117, + 12072538045, + 4397861118, + 2705165994, + 2705165993 + ], + "geometry": [ + { "lat": 40.8510672, "lon": -73.9631233 }, + { "lat": 40.8512283, "lon": -73.9631976 }, + { "lat": 40.8512479, "lon": -73.9631989 }, + { "lat": 40.8512676, "lon": -73.9631975 }, + { "lat": 40.8512861, "lon": -73.9631907 }, + { "lat": 40.8513074, "lon": -73.9631768 }, + { "lat": 40.8513620, "lon": -73.9631109 }, + { "lat": 40.8514232, "lon": -73.9630274 }, + { "lat": 40.8514696, "lon": -73.9629462 }, + { "lat": 40.8514870, "lon": -73.9628973 }, + { "lat": 40.8514957, "lon": -73.9628407 }, + { "lat": 40.8514965, "lon": -73.9627946 }, + { "lat": 40.8514875, "lon": -73.9627485 }, + { "lat": 40.8514610, "lon": -73.9626755 }, + { "lat": 40.8514279, "lon": -73.9626178 } + ], + "tags": { + "access": "permissive", + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "horse": "no", + "motor_vehicle": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 264999400, + "bounds": { + "minlat": 40.8042657, + "minlon": -73.9637464, + "maxlat": 40.8045237, + "maxlon": -73.9635608 + }, + "nodes": [ + 6910530530, + 6910530531, + 11296195567, + 2706603726, + 2706603727 + ], + "geometry": [ + { "lat": 40.8045237, "lon": -73.9635608 }, + { "lat": 40.8044927, "lon": -73.9635827 }, + { "lat": 40.8044746, "lon": -73.9635956 }, + { "lat": 40.8044483, "lon": -73.9636142 }, + { "lat": 40.8042657, "lon": -73.9637464 } + ], + "tags": { + "access": "private", + "highway": "service", + "motor_vehicle": "private", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 265356028, + "bounds": { + "minlat": 40.7696336, + "minlon": -73.9929594, + "maxlat": 40.7700950, + "maxlon": -73.9918836 + }, + "nodes": [ + 2710239362, + 10083929228, + 9140941089, + 42430742 + ], + "geometry": [ + { "lat": 40.7700950, "lon": -73.9929594 }, + { "lat": 40.7696987, "lon": -73.9920290 }, + { "lat": 40.7696755, "lon": -73.9919747 }, + { "lat": 40.7696336, "lon": -73.9918836 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 56th Street", + "name:ru": "Западная 56-я стрит", + "name_1": "West 56 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 265356029, + "bounds": { + "minlat": 40.7700950, + "minlon": -73.9940662, + "maxlat": 40.7705629, + "maxlon": -73.9929594 + }, + "nodes": [ + 4904792748, + 2710239362 + ], + "geometry": [ + { "lat": 40.7705629, "lon": -73.9940662 }, + { "lat": 40.7700950, "lon": -73.9929594 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 56th Street", + "name:ru": "Западная 56-я стрит", + "name_1": "West 56 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 265357870, + "bounds": { + "minlat": 40.7627274, + "minlon": -74.0015963, + "maxlat": 40.7628017, + "maxlon": -74.0014192 + }, + "nodes": [ + 2710280724, + 2710280727 + ], + "geometry": [ + { "lat": 40.7627274, "lon": -74.0014192 }, + { "lat": 40.7628017, "lon": -74.0015963 } + ], + "tags": { + "highway": "service", + "maxheight": "9'6\"", + "oneway": "no", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 265357871, + "bounds": { + "minlat": 40.7628017, + "minlon": -74.0035160, + "maxlat": 40.7636111, + "maxlon": -74.0015963 + }, + "nodes": [ + 2710280727, + 247118712 + ], + "geometry": [ + { "lat": 40.7628017, "lon": -74.0015963 }, + { "lat": 40.7636111, "lon": -74.0035160 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 266618826, + "bounds": { + "minlat": 40.7721120, + "minlon": -74.0132312, + "maxlat": 40.7736647, + "maxlon": -74.0120158 + }, + "nodes": [ + 2721508544, + 4310009561, + 3611168141, + 2325759408, + 103858326 + ], + "geometry": [ + { "lat": 40.7736647, "lon": -74.0120158 }, + { "lat": 40.7733719, "lon": -74.0122423 }, + { "lat": 40.7731952, "lon": -74.0123790 }, + { "lat": 40.7727298, "lon": -74.0127390 }, + { "lat": 40.7721120, "lon": -74.0132312 } + ], + "tags": { + "highway": "unclassified", + "name": "Avenue at Port Imperial", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 266618828, + "bounds": { + "minlat": 40.7753959, + "minlon": -74.0123848, + "maxlat": 40.7758499, + "maxlon": -74.0120387 + }, + "nodes": [ + 2631530263, + 1793478653, + 2721508555 + ], + "geometry": [ + { "lat": 40.7753959, "lon": -74.0123848 }, + { "lat": 40.7754835, "lon": -74.0123153 }, + { "lat": 40.7758499, "lon": -74.0120387 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|left;through;right" + } +}, +{ + "type": "way", + "id": 266618829, + "bounds": { + "minlat": 40.7743394, + "minlon": -74.0131684, + "maxlat": 40.7745633, + "maxlon": -74.0130151 + }, + "nodes": [ + 4205818430, + 8219391062 + ], + "geometry": [ + { "lat": 40.7743394, "lon": -74.0131684 }, + { "lat": 40.7745633, "lon": -74.0130151 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 268206212, + "bounds": { + "minlat": 40.8003222, + "minlon": -74.0077154, + "maxlat": 40.8015190, + "maxlon": -74.0067960 + }, + "nodes": [ + 103866662, + 7678477584, + 6958763848, + 103866664, + 6958763849, + 4727867810, + 103866668 + ], + "geometry": [ + { "lat": 40.8003222, "lon": -74.0077154 }, + { "lat": 40.8003724, "lon": -74.0076773 }, + { "lat": 40.8009175, "lon": -74.0072642 }, + { "lat": 40.8009683, "lon": -74.0072256 }, + { "lat": 40.8010144, "lon": -74.0071895 }, + { "lat": 40.8014713, "lon": -74.0068318 }, + { "lat": 40.8015190, "lon": -74.0067960 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680; Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721; Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093; 07087", + "tiger:zip_right": "07047:07087:07093; 07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 268206297, + "bounds": { + "minlat": 40.7789204, + "minlon": -74.0158769, + "maxlat": 40.7855429, + "maxlon": -74.0092607 + }, + "nodes": [ + 440243663, + 7377177639, + 5652754111, + 7377177642, + 440243694, + 7468512656, + 6609911667, + 440243609, + 7468512675, + 7468512677, + 440243599, + 7468537416, + 5702289216, + 7468537418, + 103865127, + 7468537436, + 103884740, + 7468537460, + 7468537457, + 6894944703, + 103879237, + 7468537454, + 6894944714, + 103869667, + 7468537451, + 6894944688, + 103861996, + 6894944700, + 7468537448, + 103884678, + 7468537702, + 103864115 + ], + "geometry": [ + { "lat": 40.7789204, "lon": -74.0158769 }, + { "lat": 40.7789736, "lon": -74.0157940 }, + { "lat": 40.7791673, "lon": -74.0154958 }, + { "lat": 40.7793516, "lon": -74.0152120 }, + { "lat": 40.7793998, "lon": -74.0151530 }, + { "lat": 40.7794611, "lon": -74.0150775 }, + { "lat": 40.7797391, "lon": -74.0148173 }, + { "lat": 40.7801285, "lon": -74.0144528 }, + { "lat": 40.7801776, "lon": -74.0144069 }, + { "lat": 40.7806681, "lon": -74.0139485 }, + { "lat": 40.7807205, "lon": -74.0138995 }, + { "lat": 40.7807804, "lon": -74.0138422 }, + { "lat": 40.7816408, "lon": -74.0130203 }, + { "lat": 40.7821276, "lon": -74.0125552 }, + { "lat": 40.7821764, "lon": -74.0125086 }, + { "lat": 40.7822439, "lon": -74.0124421 }, + { "lat": 40.7827305, "lon": -74.0119628 }, + { "lat": 40.7827816, "lon": -74.0119136 }, + { "lat": 40.7832382, "lon": -74.0114738 }, + { "lat": 40.7832652, "lon": -74.0114478 }, + { "lat": 40.7832895, "lon": -74.0114244 }, + { "lat": 40.7833376, "lon": -74.0113783 }, + { "lat": 40.7837863, "lon": -74.0109482 }, + { "lat": 40.7838424, "lon": -74.0108944 }, + { "lat": 40.7839015, "lon": -74.0108365 }, + { "lat": 40.7839549, "lon": -74.0107843 }, + { "lat": 40.7843962, "lon": -74.0103644 }, + { "lat": 40.7844492, "lon": -74.0103147 }, + { "lat": 40.7849097, "lon": -74.0098827 }, + { "lat": 40.7849662, "lon": -74.0098297 }, + { "lat": 40.7854620, "lon": -74.0093406 }, + { "lat": 40.7855429, "lon": -74.0092607 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09101116", + "highway": "secondary", + "name": "Park Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 268206303, + "bounds": { + "minlat": 40.7956021, + "minlon": -74.0011047, + "maxlat": 40.7968141, + "maxlon": -74.0002558 + }, + "nodes": [ + 103886419, + 7468583835, + 7468583838, + 103881371, + 7468583849, + 7468583851, + 103883598 + ], + "geometry": [ + { "lat": 40.7956021, "lon": -74.0011047 }, + { "lat": 40.7956603, "lon": -74.0010635 }, + { "lat": 40.7961526, "lon": -74.0007158 }, + { "lat": 40.7962093, "lon": -74.0006757 }, + { "lat": 40.7962589, "lon": -74.0006412 }, + { "lat": 40.7967643, "lon": -74.0002904 }, + { "lat": 40.7968141, "lon": -74.0002558 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09121044", + "highway": "tertiary", + "name": "Park Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 270271252, + "bounds": { + "minlat": 40.7782199, + "minlon": -73.9210671, + "maxlat": 40.7787165, + "maxlon": -73.9204532 + }, + "nodes": [ + 2753135607, + 6459357294, + 7746651027, + 6459357295, + 2753135608 + ], + "geometry": [ + { "lat": 40.7787165, "lon": -73.9204532 }, + { "lat": 40.7786798, "lon": -73.9204987 }, + { "lat": 40.7784778, "lon": -73.9207483 }, + { "lat": 40.7782613, "lon": -73.9210159 }, + { "lat": 40.7782199, "lon": -73.9210671 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 270271254, + "bounds": { + "minlat": 40.7776707, + "minlon": -73.9209603, + "maxlat": 40.7795546, + "maxlon": -73.9186361 + }, + "nodes": [ + 7746651029, + 7746651030, + 7746651024, + 6952125817, + 7746651028, + 6459357293, + 2753135611, + 6459357300, + 2753135614, + 6450635342, + 2753135612, + 6450635343, + 2753135617, + 7787351823, + 2753135615 + ], + "geometry": [ + { "lat": 40.7776707, "lon": -73.9209603 }, + { "lat": 40.7778895, "lon": -73.9206917 }, + { "lat": 40.7779228, "lon": -73.9206508 }, + { "lat": 40.7779667, "lon": -73.9205968 }, + { "lat": 40.7781859, "lon": -73.9203277 }, + { "lat": 40.7783864, "lon": -73.9200815 }, + { "lat": 40.7784222, "lon": -73.9200375 }, + { "lat": 40.7784611, "lon": -73.9199893 }, + { "lat": 40.7786706, "lon": -73.9197300 }, + { "lat": 40.7789046, "lon": -73.9194405 }, + { "lat": 40.7789591, "lon": -73.9193730 }, + { "lat": 40.7790167, "lon": -73.9193018 }, + { "lat": 40.7792590, "lon": -73.9190019 }, + { "lat": 40.7795172, "lon": -73.9186824 }, + { "lat": 40.7795546, "lon": -73.9186361 } + ], + "tags": { + "access": "private", + "covered": "no", + "highway": "service", + "maxspeed": "5 mph", + "oneway": "no", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 270271255, + "bounds": { + "minlat": 40.7786706, + "minlon": -73.9200981, + "maxlat": 40.7789366, + "maxlon": -73.9197300 + }, + "nodes": [ + 2753135613, + 2753135614 + ], + "geometry": [ + { "lat": 40.7789366, "lon": -73.9200981 }, + { "lat": 40.7786706, "lon": -73.9197300 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 270271257, + "bounds": { + "minlat": 40.7792590, + "minlon": -73.9194362, + "maxlat": 40.7795569, + "maxlon": -73.9190019 + }, + "nodes": [ + 2753135616, + 2753135617 + ], + "geometry": [ + { "lat": 40.7795569, "lon": -73.9194362 }, + { "lat": 40.7792590, "lon": -73.9190019 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 270271258, + "bounds": { + "minlat": 40.7782727, + "minlon": -73.9186340, + "maxlat": 40.7789868, + "maxlon": -73.9176240 + }, + "nodes": [ + 2753135618, + 7787345561, + 11107954511, + 7787351860, + 2753135619 + ], + "geometry": [ + { "lat": 40.7789868, "lon": -73.9186340 }, + { "lat": 40.7789208, "lon": -73.9185407 }, + { "lat": 40.7787200, "lon": -73.9182567 }, + { "lat": 40.7783177, "lon": -73.9176877 }, + { "lat": 40.7782727, "lon": -73.9176240 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 270271259, + "bounds": { + "minlat": 40.7778780, + "minlon": -73.9192653, + "maxlat": 40.7781348, + "maxlon": -73.9189534 + }, + "nodes": [ + 2753135620, + 6459357060, + 2753135621 + ], + "geometry": [ + { "lat": 40.7781348, "lon": -73.9189534 }, + { "lat": 40.7779128, "lon": -73.9192230 }, + { "lat": 40.7778780, "lon": -73.9192653 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 270271260, + "bounds": { + "minlat": 40.7766897, + "minlon": -73.9201977, + "maxlat": 40.7776739, + "maxlon": -73.9189789 + }, + "nodes": [ + 2753135622, + 6459357055, + 6459357056, + 2753135623, + 6459357066, + 6459357065, + 2753135624 + ], + "geometry": [ + { "lat": 40.7766897, "lon": -73.9201977 }, + { "lat": 40.7767355, "lon": -73.9201410 }, + { "lat": 40.7771360, "lon": -73.9196450 }, + { "lat": 40.7771745, "lon": -73.9195973 }, + { "lat": 40.7772139, "lon": -73.9195486 }, + { "lat": 40.7776455, "lon": -73.9190141 }, + { "lat": 40.7776739, "lon": -73.9189789 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 271280625, + "bounds": { + "minlat": 40.7029741, + "minlon": -73.9241255, + "maxlat": 40.7033835, + "maxlon": -73.9235854 + }, + "nodes": [ + 2762368177, + 5169959616, + 6939557923, + 2762368179, + 2762368178, + 6939557912, + 6939557915, + 6939557913, + 6939557914, + 2762368181, + 6939557920, + 2762368183, + 6939557919, + 6939557922, + 6939557918, + 6939557921, + 2762368185, + 2762368186, + 2762368188, + 5169959613, + 6939557917, + 2762368189, + 6939557925, + 5169959611, + 5169959609, + 6939557916, + 2762375786, + 2762368190, + 6939557924, + 5169959612, + 2762368191, + 5169959614, + 2762368177 + ], + "geometry": [ + { "lat": 40.7033235, "lon": -73.9240465 }, + { "lat": 40.7033483, "lon": -73.9240069 }, + { "lat": 40.7033670, "lon": -73.9239619 }, + { "lat": 40.7033789, "lon": -73.9239131 }, + { "lat": 40.7033835, "lon": -73.9238553 }, + { "lat": 40.7033809, "lon": -73.9238110 }, + { "lat": 40.7033710, "lon": -73.9237614 }, + { "lat": 40.7033541, "lon": -73.9237151 }, + { "lat": 40.7033309, "lon": -73.9236740 }, + { "lat": 40.7033022, "lon": -73.9236393 }, + { "lat": 40.7032691, "lon": -73.9236124 }, + { "lat": 40.7032387, "lon": -73.9235968 }, + { "lat": 40.7031944, "lon": -73.9235854 }, + { "lat": 40.7031555, "lon": -73.9235864 }, + { "lat": 40.7031174, "lon": -73.9235970 }, + { "lat": 40.7030816, "lon": -73.9236168 }, + { "lat": 40.7030492, "lon": -73.9236453 }, + { "lat": 40.7030215, "lon": -73.9236813 }, + { "lat": 40.7029995, "lon": -73.9237236 }, + { "lat": 40.7029839, "lon": -73.9237706 }, + { "lat": 40.7029753, "lon": -73.9238206 }, + { "lat": 40.7029741, "lon": -73.9238647 }, + { "lat": 40.7029823, "lon": -73.9239332 }, + { "lat": 40.7030044, "lon": -73.9239853 }, + { "lat": 40.7030325, "lon": -73.9240353 }, + { "lat": 40.7030653, "lon": -73.9240805 }, + { "lat": 40.7031109, "lon": -73.9241097 }, + { "lat": 40.7031449, "lon": -73.9241219 }, + { "lat": 40.7031837, "lon": -73.9241255 }, + { "lat": 40.7032223, "lon": -73.9241194 }, + { "lat": 40.7032594, "lon": -73.9241037 }, + { "lat": 40.7032935, "lon": -73.9240791 }, + { "lat": 40.7033235, "lon": -73.9240465 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 272692064, + "bounds": { + "minlat": 40.8622082, + "minlon": -73.9887377, + "maxlat": 40.8627837, + "maxlon": -73.9883465 + }, + "nodes": [ + 2776249314, + 10259476900, + 6137202420, + 6545391678, + 6545391679 + ], + "geometry": [ + { "lat": 40.8627837, "lon": -73.9883465 }, + { "lat": 40.8627047, "lon": -73.9883996 }, + { "lat": 40.8625277, "lon": -73.9885187 }, + { "lat": 40.8622583, "lon": -73.9887027 }, + { "lat": 40.8622082, "lon": -73.9887377 } + ], + "tags": { + "highway": "residential", + "name": "Andrew Kim Way", + "oneway": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 272730233, + "bounds": { + "minlat": 40.7217392, + "minlon": -73.9083830, + "maxlat": 40.7219000, + "maxlon": -73.9047170 + }, + "nodes": [ + 7963480214, + 11055685901, + 10577439152, + 10577439151, + 7963480202, + 7963480189, + 9696553933, + 11055685920, + 2776603416 + ], + "geometry": [ + { "lat": 40.7217392, "lon": -73.9047170 }, + { "lat": 40.7218124, "lon": -73.9047566 }, + { "lat": 40.7218639, "lon": -73.9047845 }, + { "lat": 40.7218964, "lon": -73.9048429 }, + { "lat": 40.7219000, "lon": -73.9049206 }, + { "lat": 40.7218189, "lon": -73.9070862 }, + { "lat": 40.7217748, "lon": -73.9082564 }, + { "lat": 40.7217730, "lon": -73.9083032 }, + { "lat": 40.7217700, "lon": -73.9083830 } + ], + "tags": { + "highway": "residential", + "name": "57th Drive", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 273019805, + "bounds": { + "minlat": 40.7534567, + "minlon": -73.9987292, + "maxlat": 40.7535471, + "maxlon": -73.9985193 + }, + "nodes": [ + 427845226, + 427845236 + ], + "geometry": [ + { "lat": 40.7534567, "lon": -73.9985193 }, + { "lat": 40.7535471, "lon": -73.9987292 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "name_1": "West 33 Street", + "oneway": "yes", + "parking:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 273019807, + "bounds": { + "minlat": 40.7541530, + "minlon": -73.9984019, + "maxlat": 40.7542744, + "maxlon": -73.9981095 + }, + "nodes": [ + 2779131560, + 2779131559 + ], + "geometry": [ + { "lat": 40.7542744, "lon": -73.9984019 }, + { "lat": 40.7541530, "lon": -73.9981095 } + ], + "tags": { + "access:lanes": "yes|no", + "bridge": "yes", + "bus:lanes": "yes|designated", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 273019810, + "bounds": { + "minlat": 40.7545910, + "minlon": -74.0010421, + "maxlat": 40.7553870, + "maxlon": -73.9991485 + }, + "nodes": [ + 9971314390, + 5851809157, + 3270031002, + 5851809158, + 5165644099, + 42437670 + ], + "geometry": [ + { "lat": 40.7553870, "lon": -74.0010421 }, + { "lat": 40.7551960, "lon": -74.0005902 }, + { "lat": 40.7551660, "lon": -74.0005225 }, + { "lat": 40.7551297, "lon": -74.0004385 }, + { "lat": 40.7546467, "lon": -73.9992796 }, + { "lat": 40.7545910, "lon": -73.9991485 } + ], + "tags": { + "bus:lanes": "yes|designated", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 273019812, + "bounds": { + "minlat": 40.7547329, + "minlon": -73.9977657, + "maxlat": 40.7548795, + "maxlon": -73.9974065 + }, + "nodes": [ + 2779131561, + 2779131562 + ], + "geometry": [ + { "lat": 40.7547329, "lon": -73.9974065 }, + { "lat": 40.7548795, "lon": -73.9977657 } + ], + "tags": { + "bridge": "yes", + "highway": "unclassified", + "lanes": "1", + "layer": "1", + "name": "West 35th Street", + "name:ru": "Западная 35-я стрит", + "name_1": "West 35 Street", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 273019814, + "bounds": { + "minlat": 40.7548795, + "minlon": -73.9999743, + "maxlat": 40.7558116, + "maxlon": -73.9977657 + }, + "nodes": [ + 2779131562, + 8261122923, + 42455735, + 8261122926, + 10691086275, + 3270031028 + ], + "geometry": [ + { "lat": 40.7548795, "lon": -73.9977657 }, + { "lat": 40.7551998, "lon": -73.9985245 }, + { "lat": 40.7552565, "lon": -73.9986588 }, + { "lat": 40.7553132, "lon": -73.9987930 }, + { "lat": 40.7557602, "lon": -73.9998525 }, + { "lat": 40.7558116, "lon": -73.9999743 } + ], + "tags": { + "highway": "unclassified", + "name": "West 35th Street", + "name:ru": "Западная 35-я стрит", + "name_1": "West 35 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 273130074, + "bounds": { + "minlat": 40.8215806, + "minlon": -73.9968413, + "maxlat": 40.8237493, + "maxlon": -73.9949008 + }, + "nodes": [ + 688321086, + 103166213 + ], + "geometry": [ + { "lat": 40.8237493, "lon": -73.9949008 }, + { "lat": 40.8215806, "lon": -73.9968413 } + ], + "tags": { + "highway": "residential", + "name": "9th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "9th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 273130078, + "bounds": { + "minlat": 40.8215806, + "minlon": -73.9986920, + "maxlat": 40.8225092, + "maxlon": -73.9968413 + }, + "nodes": [ + 103166213, + 103227822, + 103147944 + ], + "geometry": [ + { "lat": 40.8215806, "lon": -73.9968413 }, + { "lat": 40.8219815, "lon": -73.9976084 }, + { "lat": 40.8225092, "lon": -73.9986920 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 273130082, + "bounds": { + "minlat": 40.8162277, + "minlon": -74.0017306, + "maxlat": 40.8189159, + "maxlon": -73.9992906 + }, + "nodes": [ + 103166203, + 9950909156, + 103166201, + 103166196, + 13525538797, + 103166194 + ], + "geometry": [ + { "lat": 40.8189159, "lon": -73.9992906 }, + { "lat": 40.8188518, "lon": -73.9993464 }, + { "lat": 40.8182822, "lon": -73.9998427 }, + { "lat": 40.8176557, "lon": -74.0004071 }, + { "lat": 40.8162915, "lon": -74.0016713 }, + { "lat": 40.8162277, "lon": -74.0017306 } + ], + "tags": { + "highway": "residential", + "name": "9th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "9th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 273130086, + "bounds": { + "minlat": 40.8189159, + "minlon": -74.0005679, + "maxlat": 40.8195630, + "maxlon": -73.9992906 + }, + "nodes": [ + 103166203, + 103314374, + 9950909144, + 12537534785, + 103147936 + ], + "geometry": [ + { "lat": 40.8189159, "lon": -73.9992906 }, + { "lat": 40.8192342, "lon": -73.9999151 }, + { "lat": 40.8195244, "lon": -74.0004401 }, + { "lat": 40.8195348, "lon": -74.0004746 }, + { "lat": 40.8195630, "lon": -74.0005679 } + ], + "tags": { + "highway": "tertiary", + "name": "Walker Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Walker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 273130087, + "bounds": { + "minlat": 40.8168673, + "minlon": -73.9989241, + "maxlat": 40.8229336, + "maxlon": -73.9934494 + }, + "nodes": [ + 103204321, + 103239003, + 7647954847, + 103207136, + 103194932, + 103239004, + 103239006, + 688321194 + ], + "geometry": [ + { "lat": 40.8168673, "lon": -73.9989241 }, + { "lat": 40.8181000, "lon": -73.9978070 }, + { "lat": 40.8183787, "lon": -73.9975692 }, + { "lat": 40.8191124, "lon": -73.9969432 }, + { "lat": 40.8196835, "lon": -73.9964178 }, + { "lat": 40.8202328, "lon": -73.9958897 }, + { "lat": 40.8208009, "lon": -73.9953905 }, + { "lat": 40.8229336, "lon": -73.9934494 } + ], + "tags": { + "highway": "residential", + "name": "7th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "7th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 273130090, + "bounds": { + "minlat": 40.8168673, + "minlon": -74.0013869, + "maxlat": 40.8181751, + "maxlon": -73.9989241 + }, + "nodes": [ + 103204321, + 8153831131, + 103204323, + 103166196, + 13526292591, + 103147929 + ], + "geometry": [ + { "lat": 40.8168673, "lon": -73.9989241 }, + { "lat": 40.8170749, "lon": -73.9993215 }, + { "lat": 40.8172642, "lon": -73.9996741 }, + { "lat": 40.8176557, "lon": -74.0004071 }, + { "lat": 40.8181353, "lon": -74.0013118 }, + { "lat": 40.8181751, "lon": -74.0013869 } + ], + "tags": { + "highway": "residential", + "name": "Kamena Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kamena", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 273130354, + "bounds": { + "minlat": 40.7100914, + "minlon": -73.9372252, + "maxlat": 40.7102073, + "maxlon": -73.9372086 + }, + "nodes": [ + 42474048, + 6967834375, + 6967834376 + ], + "geometry": [ + { "lat": 40.7100914, "lon": -73.9372086 }, + { "lat": 40.7101524, "lon": -73.9372091 }, + { "lat": 40.7102073, "lon": -73.9372252 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Waterbury Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 273130355, + "bounds": { + "minlat": 40.7102766, + "minlon": -73.9351773, + "maxlat": 40.7106690, + "maxlon": -73.9336020 + }, + "nodes": [ + 42490327, + 9767625003, + 9755354508, + 6967834378, + 42518750 + ], + "geometry": [ + { "lat": 40.7106690, "lon": -73.9336020 }, + { "lat": 40.7106450, "lon": -73.9336933 }, + { "lat": 40.7102916, "lon": -73.9350370 }, + { "lat": 40.7102766, "lon": -73.9350948 }, + { "lat": 40.7102777, "lon": -73.9351773 } + ], + "tags": { + "highway": "residential", + "name": "Stagg Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 273203086, + "bounds": { + "minlat": 40.8335789, + "minlon": -73.9841311, + "maxlat": 40.8376929, + "maxlon": -73.9823602 + }, + "nodes": [ + 12877160857, + 103245961, + 6964897177, + 6964897181, + 6960272479, + 6964270259, + 6964929489, + 6964270270, + 103125418, + 6964944043, + 6964944056, + 103245962, + 103160730, + 103111281 + ], + "geometry": [ + { "lat": 40.8335789, "lon": -73.9841311 }, + { "lat": 40.8336479, "lon": -73.9841002 }, + { "lat": 40.8337701, "lon": -73.9840515 }, + { "lat": 40.8338932, "lon": -73.9840024 }, + { "lat": 40.8339124, "lon": -73.9839948 }, + { "lat": 40.8340254, "lon": -73.9839459 }, + { "lat": 40.8341185, "lon": -73.9839057 }, + { "lat": 40.8341601, "lon": -73.9838878 }, + { "lat": 40.8346519, "lon": -73.9836752 }, + { "lat": 40.8349486, "lon": -73.9835474 }, + { "lat": 40.8353135, "lon": -73.9833904 }, + { "lat": 40.8360029, "lon": -73.9830932 }, + { "lat": 40.8361979, "lon": -73.9830082 }, + { "lat": 40.8376929, "lon": -73.9823602 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 273203087, + "bounds": { + "minlat": 40.8297379, + "minlon": -73.9915517, + "maxlat": 40.8325890, + "maxlon": -73.9859345 + }, + "nodes": [ + 103237100, + 7539958162, + 7546258477, + 103237101, + 103237102, + 103237103, + 103237104, + 103237105, + 103237106, + 103237107, + 103237108, + 103237109, + 7529710505, + 103237111, + 103237112, + 13527758474, + 103147986 + ], + "geometry": [ + { "lat": 40.8297379, "lon": -73.9859345 }, + { "lat": 40.8299307, "lon": -73.9862880 }, + { "lat": 40.8300095, "lon": -73.9864326 }, + { "lat": 40.8302243, "lon": -73.9868265 }, + { "lat": 40.8306336, "lon": -73.9875478 }, + { "lat": 40.8310547, "lon": -73.9882968 }, + { "lat": 40.8311986, "lon": -73.9885618 }, + { "lat": 40.8314680, "lon": -73.9890364 }, + { "lat": 40.8315923, "lon": -73.9892338 }, + { "lat": 40.8317509, "lon": -73.9895358 }, + { "lat": 40.8318708, "lon": -73.9897711 }, + { "lat": 40.8319561, "lon": -73.9899463 }, + { "lat": 40.8320475, "lon": -73.9901714 }, + { "lat": 40.8321763, "lon": -73.9904985 }, + { "lat": 40.8322838, "lon": -73.9907457 }, + { "lat": 40.8325618, "lon": -73.9914799 }, + { "lat": 40.8325890, "lon": -73.9915517 } + ], + "tags": { + "highway": "residential", + "name": "Lafayette Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lafayette", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 273292971, + "bounds": { + "minlat": 40.7874354, + "minlon": -74.0204480, + "maxlat": 40.7881570, + "maxlon": -74.0188925 + }, + "nodes": [ + 103860931, + 7657468989, + 103869019 + ], + "geometry": [ + { "lat": 40.7881570, "lon": -74.0204480 }, + { "lat": 40.7881346, "lon": -74.0203998 }, + { "lat": 40.7874354, "lon": -74.0188925 } + ], + "tags": { + "highway": "residential", + "name": "57th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "57th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 273292973, + "bounds": { + "minlat": 40.7874354, + "minlon": -74.0188925, + "maxlat": 40.7888420, + "maxlon": -74.0177420 + }, + "nodes": [ + 103869019, + 7657469034, + 7588288489, + 7156033568, + 7588288486, + 7657469030, + 103869021 + ], + "geometry": [ + { "lat": 40.7874354, "lon": -74.0188925 }, + { "lat": 40.7874729, "lon": -74.0188618 }, + { "lat": 40.7877071, "lon": -74.0186703 }, + { "lat": 40.7879344, "lon": -74.0184844 }, + { "lat": 40.7886374, "lon": -74.0179093 }, + { "lat": 40.7887899, "lon": -74.0177846 }, + { "lat": 40.7888420, "lon": -74.0177420 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 273296647, + "bounds": { + "minlat": 40.8028852, + "minlon": -74.0089871, + "maxlat": 40.8034552, + "maxlon": -74.0084919 + }, + "nodes": [ + 103861029, + 2813943235, + 7474656123, + 5344617805 + ], + "geometry": [ + { "lat": 40.8034552, "lon": -74.0084919 }, + { "lat": 40.8034177, "lon": -74.0085714 }, + { "lat": 40.8029266, "lon": -74.0089536 }, + { "lat": 40.8028852, "lon": -74.0089871 } + ], + "tags": { + "highway": "residential", + "name": "3rd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 273296649, + "bounds": { + "minlat": 40.8017753, + "minlon": -74.0114126, + "maxlat": 40.8038881, + "maxlon": -74.0066100 + }, + "nodes": [ + 103868226, + 7474656032, + 7474656068, + 103868230, + 7474656086, + 7474656083, + 103868234, + 7474656110, + 7474656113, + 103868237, + 7474656153, + 103868242, + 103868245, + 5344617808, + 4727867809, + 103866670 + ], + "geometry": [ + { "lat": 40.8038881, "lon": -74.0114126 }, + { "lat": 40.8038361, "lon": -74.0112982 }, + { "lat": 40.8035446, "lon": -74.0106568 }, + { "lat": 40.8035102, "lon": -74.0105811 }, + { "lat": 40.8034831, "lon": -74.0105215 }, + { "lat": 40.8031941, "lon": -74.0098850 }, + { "lat": 40.8031595, "lon": -74.0098089 }, + { "lat": 40.8031282, "lon": -74.0097414 }, + { "lat": 40.8028387, "lon": -74.0091186 }, + { "lat": 40.8028059, "lon": -74.0090481 }, + { "lat": 40.8027778, "lon": -74.0089836 }, + { "lat": 40.8024593, "lon": -74.0082525 }, + { "lat": 40.8021157, "lon": -74.0074924 }, + { "lat": 40.8018210, "lon": -74.0068044 }, + { "lat": 40.8017976, "lon": -74.0067544 }, + { "lat": 40.8017753, "lon": -74.0066100 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081244", + "highway": "tertiary", + "name": "79th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "79th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 273325407, + "bounds": { + "minlat": 40.7309706, + "minlon": -73.9613132, + "maxlat": 40.7311471, + "maxlon": -73.9594665 + }, + "nodes": [ + 42501782, + 9788947582, + 9788947631, + 42501781 + ], + "geometry": [ + { "lat": 40.7311471, "lon": -73.9594665 }, + { "lat": 40.7311382, "lon": -73.9595659 }, + { "lat": 40.7311331, "lon": -73.9596175 }, + { "lat": 40.7309706, "lon": -73.9613132 } + ], + "tags": { + "highway": "unclassified", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Java Street", + "name:etymology:wikidata": "Q3757", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Java", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 273325411, + "bounds": { + "minlat": 40.7318577, + "minlon": -73.9595841, + "maxlat": 40.7325692, + "maxlon": -73.9520892 + }, + "nodes": [ + 42506511, + 7008335421, + 9997952329, + 7285976856, + 42506516, + 7285976857, + 8097159342, + 42506522, + 8097159394, + 5481915300, + 8097159399, + 4660170670 + ], + "geometry": [ + { "lat": 40.7318577, "lon": -73.9595841 }, + { "lat": 40.7318651, "lon": -73.9595072 }, + { "lat": 40.7319982, "lon": -73.9581050 }, + { "lat": 40.7320036, "lon": -73.9580481 }, + { "lat": 40.7320134, "lon": -73.9579446 }, + { "lat": 40.7320231, "lon": -73.9578422 }, + { "lat": 40.7323185, "lon": -73.9547301 }, + { "lat": 40.7323299, "lon": -73.9546103 }, + { "lat": 40.7323405, "lon": -73.9544980 }, + { "lat": 40.7324001, "lon": -73.9538710 }, + { "lat": 40.7325601, "lon": -73.9521846 }, + { "lat": 40.7325692, "lon": -73.9520892 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "India Street", + "name:etymology:wikidata": "Q668", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 273325416, + "bounds": { + "minlat": 40.7323732, + "minlon": -73.9616528, + "maxlat": 40.7325667, + "maxlon": -73.9596984 + }, + "nodes": [ + 42500683, + 5483600238, + 5483600245, + 9478443288, + 10735878471, + 9478443285, + 42500680 + ], + "geometry": [ + { "lat": 40.7325667, "lon": -73.9596984 }, + { "lat": 40.7325575, "lon": -73.9597960 }, + { "lat": 40.7325524, "lon": -73.9598474 }, + { "lat": 40.7323947, "lon": -73.9614364 }, + { "lat": 40.7323906, "lon": -73.9614779 }, + { "lat": 40.7323802, "lon": -73.9615826 }, + { "lat": 40.7323732, "lon": -73.9616528 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Huron Street", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Huron", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 273326371, + "bounds": { + "minlat": 40.7304386, + "minlon": -73.9596984, + "maxlat": 40.7325667, + "maxlon": -73.9593494 + }, + "nodes": [ + 42493348, + 9922459771, + 9997952333, + 9922459776, + 42501782, + 9922459779, + 9997952342, + 9997952341, + 9920934991, + 42506511, + 9920934990, + 9997952340, + 9997952334, + 5483600249, + 42500683 + ], + "geometry": [ + { "lat": 40.7304386, "lon": -73.9593494 }, + { "lat": 40.7305060, "lon": -73.9593592 }, + { "lat": 40.7309930, "lon": -73.9594410 }, + { "lat": 40.7310828, "lon": -73.9594560 }, + { "lat": 40.7311471, "lon": -73.9594665 }, + { "lat": 40.7312129, "lon": -73.9594769 }, + { "lat": 40.7313135, "lon": -73.9594936 }, + { "lat": 40.7316948, "lon": -73.9595567 }, + { "lat": 40.7317954, "lon": -73.9595734 }, + { "lat": 40.7318577, "lon": -73.9595841 }, + { "lat": 40.7319230, "lon": -73.9595947 }, + { "lat": 40.7320138, "lon": -73.9596095 }, + { "lat": 40.7324089, "lon": -73.9596740 }, + { "lat": 40.7325059, "lon": -73.9596888 }, + { "lat": 40.7325667, "lon": -73.9596984 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 273326372, + "bounds": { + "minlat": 40.7291692, + "minlon": -73.9574772, + "maxlat": 40.7295098, + "maxlon": -73.9539583 + }, + "nodes": [ + 42520808, + 8139450618, + 8097189304, + 42535489 + ], + "geometry": [ + { "lat": 40.7291692, "lon": -73.9574772 }, + { "lat": 40.7291786, "lon": -73.9573784 }, + { "lat": 40.7295046, "lon": -73.9540546 }, + { "lat": 40.7295098, "lon": -73.9539583 } + ], + "tags": { + "alt_name": "Christine Zounek Way", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Milton Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Milton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 273326374, + "bounds": { + "minlat": 40.7283150, + "minlon": -73.9589933, + "maxlat": 40.7288245, + "maxlon": -73.9536650 + }, + "nodes": [ + 42498324, + 8097222253, + 42498320, + 8097222221, + 42498317, + 9789402703, + 5481927208, + 9789402710, + 9789402701, + 42498314 + ], + "geometry": [ + { "lat": 40.7288245, "lon": -73.9536650 }, + { "lat": 40.7288134, "lon": -73.9537614 }, + { "lat": 40.7287302, "lon": -73.9546204 }, + { "lat": 40.7284781, "lon": -73.9572630 }, + { "lat": 40.7284668, "lon": -73.9573628 }, + { "lat": 40.7284561, "lon": -73.9574639 }, + { "lat": 40.7283739, "lon": -73.9583380 }, + { "lat": 40.7283261, "lon": -73.9588581 }, + { "lat": 40.7283203, "lon": -73.9589203 }, + { "lat": 40.7283150, "lon": -73.9589933 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Noble Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Noble", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 273326376, + "bounds": { + "minlat": 40.7275959, + "minlon": -73.9588788, + "maxlat": 40.7277591, + "maxlon": -73.9572483 + }, + "nodes": [ + 42484582, + 9789402712, + 5801598832, + 9789402713, + 42484587 + ], + "geometry": [ + { "lat": 40.7275959, "lon": -73.9588788 }, + { "lat": 40.7276149, "lon": -73.9588040 }, + { "lat": 40.7277466, "lon": -73.9574044 }, + { "lat": 40.7277520, "lon": -73.9573436 }, + { "lat": 40.7277591, "lon": -73.9572483 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Oak Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Oak", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 273326377, + "bounds": { + "minlat": 40.7261900, + "minlon": -73.9588788, + "maxlat": 40.7275959, + "maxlon": -73.9586456 + }, + "nodes": [ + 42503839, + 9789402685, + 11292128901, + 42496837, + 11249691302, + 11292128899, + 42484582 + ], + "geometry": [ + { "lat": 40.7261900, "lon": -73.9586456 }, + { "lat": 40.7262470, "lon": -73.9586563 }, + { "lat": 40.7268345, "lon": -73.9587558 }, + { "lat": 40.7268914, "lon": -73.9587654 }, + { "lat": 40.7269586, "lon": -73.9587762 }, + { "lat": 40.7275402, "lon": -73.9588695 }, + { "lat": 40.7275959, "lon": -73.9588788 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 273326378, + "bounds": { + "minlat": 40.7263057, + "minlon": -73.9573562, + "maxlat": 40.7273244, + "maxlon": -73.9571805 + }, + "nodes": [ + 42503841, + 9789402639, + 11163899173, + 11163899172, + 9998478146, + 9121340063, + 42496839, + 9121340064, + 9998478145, + 9121340077, + 9998478144, + 2276312211 + ], + "geometry": [ + { "lat": 40.7263057, "lon": -73.9573562 }, + { "lat": 40.7263646, "lon": -73.9573461 }, + { "lat": 40.7266145, "lon": -73.9573012 }, + { "lat": 40.7267955, "lon": -73.9572687 }, + { "lat": 40.7269431, "lon": -73.9572422 }, + { "lat": 40.7269792, "lon": -73.9572359 }, + { "lat": 40.7270439, "lon": -73.9572233 }, + { "lat": 40.7271080, "lon": -73.9572089 }, + { "lat": 40.7272156, "lon": -73.9571899 }, + { "lat": 40.7272515, "lon": -73.9571844 }, + { "lat": 40.7272854, "lon": -73.9571805 }, + { "lat": 40.7273244, "lon": -73.9571809 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Franklin", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 273326380, + "bounds": { + "minlat": 40.7277591, + "minlon": -73.9572483, + "maxlat": 40.7279980, + "maxlon": -73.9552413 + }, + "nodes": [ + 42484594, + 9998478141, + 9998478140, + 42484590, + 9998478142, + 5801598833, + 9789402850, + 42484587 + ], + "geometry": [ + { "lat": 40.7279980, "lon": -73.9552413 }, + { "lat": 40.7279547, "lon": -73.9554066 }, + { "lat": 40.7279423, "lon": -73.9554674 }, + { "lat": 40.7279334, "lon": -73.9555184 }, + { "lat": 40.7279269, "lon": -73.9555779 }, + { "lat": 40.7277710, "lon": -73.9571050 }, + { "lat": 40.7277664, "lon": -73.9571512 }, + { "lat": 40.7277591, "lon": -73.9572483 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Oak Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Oak", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 273327708, + "bounds": { + "minlat": 40.7273769, + "minlon": -73.9479074, + "maxlat": 40.7309065, + "maxlon": -73.9458951 + }, + "nodes": [ + 42512677, + 9788947220, + 9927158585, + 42516618, + 9927158584, + 8288333629, + 13717879782, + 9788947253, + 42496878, + 9788947251, + 5891904328, + 9788947265, + 3430220601 + ], + "geometry": [ + { "lat": 40.7273769, "lon": -73.9458951 }, + { "lat": 40.7274394, "lon": -73.9459310 }, + { "lat": 40.7289806, "lon": -73.9468112 }, + { "lat": 40.7290310, "lon": -73.9468400 }, + { "lat": 40.7290960, "lon": -73.9468769 }, + { "lat": 40.7295211, "lon": -73.9471185 }, + { "lat": 40.7296417, "lon": -73.9471870 }, + { "lat": 40.7300169, "lon": -73.9474002 }, + { "lat": 40.7300640, "lon": -73.9474270 }, + { "lat": 40.7301281, "lon": -73.9474636 }, + { "lat": 40.7307719, "lon": -73.9478310 }, + { "lat": 40.7308049, "lon": -73.9478498 }, + { "lat": 40.7309065, "lon": -73.9479074 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Moultrie Street", + "name:etymology:wikidata": "Q2580066", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 273328485, + "bounds": { + "minlat": 40.7237720, + "minlon": -73.9507880, + "maxlat": 40.7240560, + "maxlon": -73.9499240 + }, + "nodes": [ + 42479281, + 9789356704, + 9789356689, + 42479283 + ], + "geometry": [ + { "lat": 40.7237720, "lon": -73.9507880 }, + { "lat": 40.7237991, "lon": -73.9507057 }, + { "lat": 40.7240335, "lon": -73.9499936 }, + { "lat": 40.7240560, "lon": -73.9499240 } + ], + "tags": { + "busway:left": "opposite_lane", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Nassau Avenue", + "oneway": "yes", + "oneway:bus": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 273328486, + "bounds": { + "minlat": 40.7237720, + "minlon": -73.9509780, + "maxlat": 40.7240970, + "maxlon": -73.9507880 + }, + "nodes": [ + 42520377, + 9789343606, + 9789356703, + 42479281 + ], + "geometry": [ + { "lat": 40.7240970, "lon": -73.9509780 }, + { "lat": 40.7240318, "lon": -73.9509398 }, + { "lat": 40.7238366, "lon": -73.9508258 }, + { "lat": 40.7237720, "lon": -73.9507880 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 273328948, + "bounds": { + "minlat": 40.7221440, + "minlon": -73.9472340, + "maxlat": 40.7223648, + "maxlon": -73.9449004 + }, + "nodes": [ + 42502926, + 9789356838, + 8610941954, + 9731450862, + 2987758895, + 2987758894, + 9731450863, + 8589617576, + 9731450864, + 42467929 + ], + "geometry": [ + { "lat": 40.7223648, "lon": -73.9449004 }, + { "lat": 40.7223559, "lon": -73.9449937 }, + { "lat": 40.7222370, "lon": -73.9462444 }, + { "lat": 40.7222318, "lon": -73.9462998 }, + { "lat": 40.7222207, "lon": -73.9464164 }, + { "lat": 40.7222056, "lon": -73.9465751 }, + { "lat": 40.7221951, "lon": -73.9466854 }, + { "lat": 40.7221561, "lon": -73.9470962 }, + { "lat": 40.7221522, "lon": -73.9471509 }, + { "lat": 40.7221440, "lon": -73.9472340 } + ], + "tags": { + "highway": "residential", + "name": "Broome Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 273384400, + "bounds": { + "minlat": 40.7433254, + "minlon": -73.9158174, + "maxlat": 40.7462415, + "maxlon": -73.9152334 + }, + "nodes": [ + 5482369532, + 7671808574, + 7671808573, + 7671808571, + 42807841, + 7671808572, + 7671808570, + 7671808569, + 42807836 + ], + "geometry": [ + { "lat": 40.7433254, "lon": -73.9158174 }, + { "lat": 40.7438092, "lon": -73.9157204 }, + { "lat": 40.7444561, "lon": -73.9155870 }, + { "lat": 40.7445021, "lon": -73.9155783 }, + { "lat": 40.7446006, "lon": -73.9155589 }, + { "lat": 40.7446675, "lon": -73.9155457 }, + { "lat": 40.7452834, "lon": -73.9154247 }, + { "lat": 40.7461705, "lon": -73.9152471 }, + { "lat": 40.7462415, "lon": -73.9152334 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "49th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 273385122, + "bounds": { + "minlat": 40.7387854, + "minlon": -73.9554658, + "maxlat": 40.7390519, + "maxlon": -73.9554177 + }, + "nodes": [ + 2473602890, + 2473602893 + ], + "geometry": [ + { "lat": 40.7387854, "lon": -73.9554177 }, + { "lat": 40.7390519, "lon": -73.9554658 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Manhattan", + "tiger:name_type": "Ave", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 273569213, + "bounds": { + "minlat": 40.8109968, + "minlon": -73.9241767, + "maxlat": 40.8113502, + "maxlon": -73.9233429 + }, + "nodes": [ + 42732876, + 9908629917, + 42777962 + ], + "geometry": [ + { "lat": 40.8113502, "lon": -73.9241767 }, + { "lat": 40.8113083, "lon": -73.9240775 }, + { "lat": 40.8109968, "lon": -73.9233429 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 140th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 273569214, + "bounds": { + "minlat": 40.8103981, + "minlon": -73.9168236, + "maxlat": 40.8108756, + "maxlon": -73.9151868 + }, + "nodes": [ + 3637936709, + 8602649356, + 42733966 + ], + "geometry": [ + { "lat": 40.8108756, "lon": -73.9168236 }, + { "lat": 40.8103981, "lon": -73.9153288 }, + { "lat": 40.8104087, "lon": -73.9151868 } + ], + "tags": { + "highway": "residential", + "name": "East 143rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "143rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_left_1": "10454" + } +}, +{ + "type": "way", + "id": 273592555, + "bounds": { + "minlat": 40.8197860, + "minlon": -73.9121590, + "maxlat": 40.8215038, + "maxlon": -73.9111732 + }, + "nodes": [ + 42761088, + 8454351382, + 42761085, + 42761082, + 42736992, + 42744118, + 13547349198, + 42760889 + ], + "geometry": [ + { "lat": 40.8215038, "lon": -73.9111732 }, + { "lat": 40.8213617, "lon": -73.9112575 }, + { "lat": 40.8212630, "lon": -73.9113160 }, + { "lat": 40.8208979, "lon": -73.9115192 }, + { "lat": 40.8206250, "lon": -73.9116800 }, + { "lat": 40.8202621, "lon": -73.9118911 }, + { "lat": 40.8198611, "lon": -73.9121168 }, + { "lat": 40.8197860, "lon": -73.9121590 } + ], + "tags": { + "highway": "residential", + "name": "Brook Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 273592557, + "bounds": { + "minlat": 40.8183972, + "minlon": -73.9182831, + "maxlat": 40.8193625, + "maxlon": -73.9146007 + }, + "nodes": [ + 2912071211, + 13249095730, + 42749757, + 12040128439, + 12040128223, + 42749754, + 12040128221, + 12040128373, + 42749752 + ], + "geometry": [ + { "lat": 40.8183972, "lon": -73.9146007 }, + { "lat": 40.8184409, "lon": -73.9147671 }, + { "lat": 40.8184620, "lon": -73.9148476 }, + { "lat": 40.8184831, "lon": -73.9149283 }, + { "lat": 40.8188659, "lon": -73.9163884 }, + { "lat": 40.8188928, "lon": -73.9164912 }, + { "lat": 40.8189231, "lon": -73.9166067 }, + { "lat": 40.8193382, "lon": -73.9181904 }, + { "lat": 40.8193625, "lon": -73.9182831 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "East 153rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "153rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 273592558, + "bounds": { + "minlat": 40.8179619, + "minlon": -73.9130630, + "maxlat": 40.8201330, + "maxlon": -73.9054600 + }, + "nodes": [ + 42760885, + 42760889, + 42760893, + 5482340590, + 42760900, + 8233978550, + 2827501290, + 42756070, + 42735026, + 5482340572, + 42760909, + 7564286439, + 3629669116, + 42760913, + 42760918, + 13399383272, + 12197822834 + ], + "geometry": [ + { "lat": 40.8201330, "lon": -73.9130630 }, + { "lat": 40.8197860, "lon": -73.9121590 }, + { "lat": 40.8196700, "lon": -73.9118390 }, + { "lat": 40.8196182, "lon": -73.9116884 }, + { "lat": 40.8195790, "lon": -73.9115810 }, + { "lat": 40.8192661, "lon": -73.9107251 }, + { "lat": 40.8192248, "lon": -73.9106122 }, + { "lat": 40.8189950, "lon": -73.9097390 }, + { "lat": 40.8187590, "lon": -73.9087500 }, + { "lat": 40.8185884, "lon": -73.9080343 }, + { "lat": 40.8185380, "lon": -73.9078230 }, + { "lat": 40.8184957, "lon": -73.9076466 }, + { "lat": 40.8184762, "lon": -73.9075650 }, + { "lat": 40.8183400, "lon": -73.9069970 }, + { "lat": 40.8181580, "lon": -73.9062420 }, + { "lat": 40.8179771, "lon": -73.9055207 }, + { "lat": 40.8179619, "lon": -73.9054600 } + ], + "tags": { + "highway": "residential", + "name": "East 156th Street", + "name_1": "Thurman Munson Way", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "156th", + "tiger:name_base_1": "Thurman Munson", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:name_type_1": "Way", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 273592559, + "bounds": { + "minlat": 40.8212630, + "minlon": -73.9121680, + "maxlat": 40.8214860, + "maxlon": -73.9113160 + }, + "nodes": [ + 42768540, + 42783755, + 42761085 + ], + "geometry": [ + { "lat": 40.8214860, "lon": -73.9121680 }, + { "lat": 40.8212920, "lon": -73.9114260 }, + { "lat": 40.8212630, "lon": -73.9113160 } + ], + "tags": { + "highway": "residential", + "name": "East 158th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 273592561, + "bounds": { + "minlat": 40.8263125, + "minlon": -73.9175332, + "maxlat": 40.8272501, + "maxlon": -73.9145842 + }, + "nodes": [ + 42739715, + 12038440158, + 7654847354, + 8187805244, + 12038440178, + 42739709, + 42739705, + 12038479089, + 42735827 + ], + "geometry": [ + { "lat": 40.8263125, "lon": -73.9145842 }, + { "lat": 40.8263387, "lon": -73.9146663 }, + { "lat": 40.8264115, "lon": -73.9148945 }, + { "lat": 40.8265064, "lon": -73.9151920 }, + { "lat": 40.8265220, "lon": -73.9152410 }, + { "lat": 40.8265460, "lon": -73.9153160 }, + { "lat": 40.8268420, "lon": -73.9162350 }, + { "lat": 40.8272187, "lon": -73.9174334 }, + { "lat": 40.8272501, "lon": -73.9175332 } + ], + "tags": { + "highway": "residential", + "name": "East 163rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 273611785, + "bounds": { + "minlat": 40.8335111, + "minlon": -73.9087646, + "maxlat": 40.8339548, + "maxlon": -73.9074076 + }, + "nodes": [ + 9395115892, + 5777474755, + 5481921486, + 5481921454, + 8246868394, + 42764738, + 9832626702 + ], + "geometry": [ + { "lat": 40.8335111, "lon": -73.9074076 }, + { "lat": 40.8335472, "lon": -73.9075102 }, + { "lat": 40.8336172, "lon": -73.9077209 }, + { "lat": 40.8337636, "lon": -73.9081636 }, + { "lat": 40.8338924, "lon": -73.9085532 }, + { "lat": 40.8339241, "lon": -73.9086518 }, + { "lat": 40.8339548, "lon": -73.9087646 } + ], + "tags": { + "highway": "residential", + "name": "East 169th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 273624223, + "bounds": { + "minlat": 40.8436610, + "minlon": -73.9200350, + "maxlat": 40.8441854, + "maxlon": -73.9196970 + }, + "nodes": [ + 42735011, + 5762103017, + 42719078 + ], + "geometry": [ + { "lat": 40.8436610, "lon": -73.9200350 }, + { "lat": 40.8437317, "lon": -73.9199894 }, + { "lat": 40.8441854, "lon": -73.9196970 } + ], + "tags": { + "highway": "residential", + "name": "Shakespeare Avenue", + "name:etymology:wikidata": "Q692", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Shakespeare", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 273792988, + "bounds": { + "minlat": 40.7203652, + "minlon": -73.9632805, + "maxlat": 40.7208551, + "maxlon": -73.9625537 + }, + "nodes": [ + 42506166, + 9794998984, + 1422507550, + 8997196211, + 8997196210, + 8997196212, + 2786085830, + 1422507548 + ], + "geometry": [ + { "lat": 40.7203652, "lon": -73.9632805 }, + { "lat": 40.7204195, "lon": -73.9632233 }, + { "lat": 40.7207035, "lon": -73.9629206 }, + { "lat": 40.7207496, "lon": -73.9628614 }, + { "lat": 40.7207716, "lon": -73.9628029 }, + { "lat": 40.7207901, "lon": -73.9627024 }, + { "lat": 40.7208061, "lon": -73.9626381 }, + { "lat": 40.7208551, "lon": -73.9625537 } + ], + "tags": { + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "name": "North 6th Place", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 273895448, + "bounds": { + "minlat": 40.7587188, + "minlon": -73.9959405, + "maxlat": 40.7589842, + "maxlon": -73.9952654 + }, + "nodes": [ + 4207932664, + 8095866236, + 10169614503, + 5851709098, + 42455751 + ], + "geometry": [ + { "lat": 40.7587188, "lon": -73.9952654 }, + { "lat": 40.7587875, "lon": -73.9954258 }, + { "lat": 40.7589407, "lon": -73.9957898 }, + { "lat": 40.7589450, "lon": -73.9958000 }, + { "lat": 40.7589842, "lon": -73.9959405 } + ], + "tags": { + "change:lanes": "yes|not_right|no|no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "||right|right", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 273895449, + "bounds": { + "minlat": 40.7583714, + "minlon": -73.9943910, + "maxlat": 40.7589778, + "maxlon": -73.9939368 + }, + "nodes": [ + 42434434, + 7903850301, + 10171120539, + 42434439 + ], + "geometry": [ + { "lat": 40.7583714, "lon": -73.9943910 }, + { "lat": 40.7584587, "lon": -73.9943266 }, + { "lat": 40.7588831, "lon": -73.9940079 }, + { "lat": 40.7589778, "lon": -73.9939368 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Dyer Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 273895450, + "bounds": { + "minlat": 40.7575594, + "minlon": -73.9948115, + "maxlat": 40.7576654, + "maxlon": -73.9945564 + }, + "nodes": [ + 42424789, + 11149329214, + 427850895 + ], + "geometry": [ + { "lat": 40.7576654, "lon": -73.9948115 }, + { "lat": 40.7576131, "lon": -73.9946856 }, + { "lat": 40.7575594, "lon": -73.9945564 } + ], + "tags": { + "alt_name": "West 40 Street", + "highway": "residential", + "lanes": "3", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 274045193, + "bounds": { + "minlat": 40.7071522, + "minlon": -73.9314783, + "maxlat": 40.7075770, + "maxlon": -73.9288380 + }, + "nodes": [ + 42487180, + 9767625220, + 8589599903, + 9767625221, + 42487177 + ], + "geometry": [ + { "lat": 40.7075770, "lon": -73.9288380 }, + { "lat": 40.7075623, "lon": -73.9289301 }, + { "lat": 40.7071798, "lon": -73.9313072 }, + { "lat": 40.7071704, "lon": -73.9313657 }, + { "lat": 40.7071522, "lon": -73.9314783 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Ingraham Street", + "name:etymology:wikidata": "Q5314396", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 274045194, + "bounds": { + "minlat": 40.7075770, + "minlon": -73.9288380, + "maxlat": 40.7078420, + "maxlon": -73.9272120 + }, + "nodes": [ + 42487182, + 9767625182, + 9915387868, + 9767625189, + 9767625188, + 42487180 + ], + "geometry": [ + { "lat": 40.7078420, "lon": -73.9272120 }, + { "lat": 40.7078261, "lon": -73.9273097 }, + { "lat": 40.7076835, "lon": -73.9281846 }, + { "lat": 40.7075997, "lon": -73.9286987 }, + { "lat": 40.7075897, "lon": -73.9287602 }, + { "lat": 40.7075770, "lon": -73.9288380 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Ingraham Street", + "name:etymology:wikidata": "Q5314396", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Ingraham", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 274366632, + "bounds": { + "minlat": 40.8341880, + "minlon": -73.9095740, + "maxlat": 40.8369502, + "maxlon": -73.9080460 + }, + "nodes": [ + 42746992, + 10126902012, + 8454214967, + 8454214959, + 2327295349 + ], + "geometry": [ + { "lat": 40.8341880, "lon": -73.9095740 }, + { "lat": 40.8342433, "lon": -73.9095430 }, + { "lat": 40.8351551, "lon": -73.9090326 }, + { "lat": 40.8360991, "lon": -73.9085043 }, + { "lat": 40.8369502, "lon": -73.9080460 } + ], + "tags": { + "highway": "residential", + "name": "Clay Avenue", + "name:etymology:wikidata": "Q319630", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Clay", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 274366634, + "bounds": { + "minlat": 40.8294520, + "minlon": -73.9077220, + "maxlat": 40.8298230, + "maxlon": -73.9065710 + }, + "nodes": [ + 42730097, + 13625142399, + 42759475 + ], + "geometry": [ + { "lat": 40.8298230, "lon": -73.9077220 }, + { "lat": 40.8294914, "lon": -73.9066932 }, + { "lat": 40.8294520, "lon": -73.9065710 } + ], + "tags": { + "highway": "residential", + "name": "East 167th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 274366635, + "bounds": { + "minlat": 40.8289472, + "minlon": -73.9065710, + "maxlat": 40.8294520, + "maxlon": -73.9050333 + }, + "nodes": [ + 42759475, + 5588895236, + 13625142405, + 5482223724, + 9520836587, + 5588895235, + 42759478, + 9520834399, + 13625142391, + 42759482 + ], + "geometry": [ + { "lat": 40.8294520, "lon": -73.9065710 }, + { "lat": 40.8294267, "lon": -73.9064955 }, + { "lat": 40.8294138, "lon": -73.9064570 }, + { "lat": 40.8293226, "lon": -73.9061842 }, + { "lat": 40.8291343, "lon": -73.9056213 }, + { "lat": 40.8291254, "lon": -73.9055948 }, + { "lat": 40.8291040, "lon": -73.9055310 }, + { "lat": 40.8290807, "lon": -73.9054571 }, + { "lat": 40.8289703, "lon": -73.9051065 }, + { "lat": 40.8289472, "lon": -73.9050333 } + ], + "tags": { + "highway": "residential", + "name": "East 167th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 274366638, + "bounds": { + "minlat": 40.8430183, + "minlon": -73.9086302, + "maxlat": 40.8447881, + "maxlon": -73.9084730 + }, + "nodes": [ + 42734860, + 13040487443, + 42734852, + 6223504753, + 12737767482, + 2408354099 + ], + "geometry": [ + { "lat": 40.8447881, "lon": -73.9084730 }, + { "lat": 40.8447152, "lon": -73.9084788 }, + { "lat": 40.8437330, "lon": -73.9085660 }, + { "lat": 40.8431122, "lon": -73.9086218 }, + { "lat": 40.8430812, "lon": -73.9086246 }, + { "lat": 40.8430183, "lon": -73.9086302 } + ], + "tags": { + "highway": "residential", + "name": "Eastburn Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Eastburn", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 274366640, + "bounds": { + "minlat": 40.8374059, + "minlon": -73.9092779, + "maxlat": 40.8399650, + "maxlon": -73.9088780 + }, + "nodes": [ + 486818473, + 8454214960, + 42763639, + 10126901701, + 42784356, + 10126902038, + 10126901702, + 2822108815, + 42748484 + ], + "geometry": [ + { "lat": 40.8374059, "lon": -73.9092779 }, + { "lat": 40.8380642, "lon": -73.9089805 }, + { "lat": 40.8383760, "lon": -73.9089100 }, + { "lat": 40.8386562, "lon": -73.9088780 }, + { "lat": 40.8390636, "lon": -73.9088780 }, + { "lat": 40.8392730, "lon": -73.9089103 }, + { "lat": 40.8393763, "lon": -73.9089263 }, + { "lat": 40.8398254, "lon": -73.9090333 }, + { "lat": 40.8399650, "lon": -73.9090655 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Findlay Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller;Findlay", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457;10456", + "tiger:zip_left_1": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 274366641, + "bounds": { + "minlat": 40.8427974, + "minlon": -73.9104622, + "maxlat": 40.8431102, + "maxlon": -73.9104331 + }, + "nodes": [ + 2408354083, + 12737767462, + 10126919012, + 10126919013, + 12737767474, + 42735929 + ], + "geometry": [ + { "lat": 40.8431102, "lon": -73.9104331 }, + { "lat": 40.8430233, "lon": -73.9104412 }, + { "lat": 40.8429765, "lon": -73.9104455 }, + { "lat": 40.8429089, "lon": -73.9104518 }, + { "lat": 40.8428761, "lon": -73.9104548 }, + { "lat": 40.8427974, "lon": -73.9104622 } + ], + "tags": { + "highway": "residential", + "name": "Selwyn Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Selwyn", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 274366642, + "bounds": { + "minlat": 40.8309360, + "minlon": -73.9123950, + "maxlat": 40.8367704, + "maxlon": -73.9091870 + }, + "nodes": [ + 42759459, + 12038440259, + 7366626474, + 7366626472, + 13746493077, + 5762095686, + 42742448, + 13700880568, + 13746493076, + 13700879820, + 13700879823, + 13700793265, + 12038123092, + 42782633, + 12038123094, + 7043038855, + 486818471, + 5329030886, + 486818472 + ], + "geometry": [ + { "lat": 40.8309360, "lon": -73.9123950 }, + { "lat": 40.8310470, "lon": -73.9123299 }, + { "lat": 40.8320754, "lon": -73.9117269 }, + { "lat": 40.8325057, "lon": -73.9114746 }, + { "lat": 40.8325930, "lon": -73.9114234 }, + { "lat": 40.8327777, "lon": -73.9113151 }, + { "lat": 40.8328290, "lon": -73.9112850 }, + { "lat": 40.8333058, "lon": -73.9110023 }, + { "lat": 40.8334937, "lon": -73.9108913 }, + { "lat": 40.8335523, "lon": -73.9108567 }, + { "lat": 40.8336791, "lon": -73.9107817 }, + { "lat": 40.8339305, "lon": -73.9106347 }, + { "lat": 40.8343630, "lon": -73.9103820 }, + { "lat": 40.8344310, "lon": -73.9103420 }, + { "lat": 40.8345013, "lon": -73.9103008 }, + { "lat": 40.8352772, "lon": -73.9098463 }, + { "lat": 40.8363354, "lon": -73.9092255 }, + { "lat": 40.8364970, "lon": -73.9091947 }, + { "lat": 40.8367704, "lon": -73.9091870 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Teller Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller", + "tiger:name_type": "Ave", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 274458284, + "bounds": { + "minlat": 40.8516590, + "minlon": -73.9156164, + "maxlat": 40.8548708, + "maxlon": -73.9130800 + }, + "nodes": [ + 13727951032, + 13727951033, + 2808821797, + 9918291058, + 9918291057, + 2808821784, + 42743993, + 2808821776, + 2808821678, + 13703191081, + 13703157892, + 13727951034, + 13727951035, + 4721141758 + ], + "geometry": [ + { "lat": 40.8548708, "lon": -73.9130800 }, + { "lat": 40.8546454, "lon": -73.9132691 }, + { "lat": 40.8540083, "lon": -73.9138038 }, + { "lat": 40.8539786, "lon": -73.9138227 }, + { "lat": 40.8539487, "lon": -73.9138337 }, + { "lat": 40.8539108, "lon": -73.9138405 }, + { "lat": 40.8538168, "lon": -73.9138534 }, + { "lat": 40.8537238, "lon": -73.9138670 }, + { "lat": 40.8534091, "lon": -73.9139145 }, + { "lat": 40.8532956, "lon": -73.9140256 }, + { "lat": 40.8529437, "lon": -73.9143671 }, + { "lat": 40.8527738, "lon": -73.9145323 }, + { "lat": 40.8521537, "lon": -73.9151353 }, + { "lat": 40.8516590, "lon": -73.9156164 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "15 mph", + "maxspeed:type": "sign", + "name": "Andrews Avenue South", + "name:etymology:wikidata": "Q56000453", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Andrews", + "tiger:name_direction_suffix": "S", + "tiger:name_type": "Ave", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 274458285, + "bounds": { + "minlat": 40.8519903, + "minlon": -73.9101716, + "maxlat": 40.8561060, + "maxlon": -73.9064510 + }, + "nodes": [ + 42745946, + 12739101055, + 13016926981, + 42743968, + 12748250480, + 42731691, + 8174133688, + 13247486957, + 42745951 + ], + "geometry": [ + { "lat": 40.8519903, "lon": -73.9101716 }, + { "lat": 40.8520778, "lon": -73.9100916 }, + { "lat": 40.8537236, "lon": -73.9085864 }, + { "lat": 40.8538092, "lon": -73.9085097 }, + { "lat": 40.8539114, "lon": -73.9084161 }, + { "lat": 40.8547650, "lon": -73.9076480 }, + { "lat": 40.8560313, "lon": -73.9065177 }, + { "lat": 40.8560477, "lon": -73.9065021 }, + { "lat": 40.8561060, "lon": -73.9064510 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "name": "Davidson Avenue", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Davidson", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 274458289, + "bounds": { + "minlat": 40.8499804, + "minlon": -73.9141481, + "maxlat": 40.8566820, + "maxlon": -73.9081020 + }, + "nodes": [ + 42720029, + 6701092174, + 6701092172, + 6701092173, + 42720032, + 5527087696, + 2791729464, + 5527087699, + 42720035, + 42720037, + 2052618448, + 2978011159, + 2978011158, + 2978011160, + 2899134414, + 42720038, + 2899134415, + 2978011161, + 2978011162, + 13327591725, + 42720039, + 13327591724, + 2978011163, + 8174133645, + 13247503969, + 42720041 + ], + "geometry": [ + { "lat": 40.8499804, "lon": -73.9141481 }, + { "lat": 40.8500819, "lon": -73.9141190 }, + { "lat": 40.8501831, "lon": -73.9140694 }, + { "lat": 40.8503888, "lon": -73.9139611 }, + { "lat": 40.8506110, "lon": -73.9138200 }, + { "lat": 40.8510206, "lon": -73.9135172 }, + { "lat": 40.8512534, "lon": -73.9132890 }, + { "lat": 40.8515725, "lon": -73.9129407 }, + { "lat": 40.8518353, "lon": -73.9125849 }, + { "lat": 40.8527333, "lon": -73.9112896 }, + { "lat": 40.8531915, "lon": -73.9108691 }, + { "lat": 40.8534400, "lon": -73.9106693 }, + { "lat": 40.8537088, "lon": -73.9105164 }, + { "lat": 40.8540416, "lon": -73.9103394 }, + { "lat": 40.8543378, "lon": -73.9101691 }, + { "lat": 40.8544722, "lon": -73.9100862 }, + { "lat": 40.8545569, "lon": -73.9100202 }, + { "lat": 40.8552000, "lon": -73.9094610 }, + { "lat": 40.8554931, "lon": -73.9091941 }, + { "lat": 40.8555026, "lon": -73.9091851 }, + { "lat": 40.8555438, "lon": -73.9091458 }, + { "lat": 40.8555962, "lon": -73.9091005 }, + { "lat": 40.8556027, "lon": -73.9090948 }, + { "lat": 40.8566014, "lon": -73.9081761 }, + { "lat": 40.8566317, "lon": -73.9081473 }, + { "lat": 40.8566820, "lon": -73.9081020 } + ], + "tags": { + "highway": "residential", + "name": "Harrison Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 274458291, + "bounds": { + "minlat": 40.8474255, + "minlon": -73.9222738, + "maxlat": 40.8498076, + "maxlon": -73.9203373 + }, + "nodes": [ + 12055955036, + 12055955032, + 42728196, + 12054513784, + 12054487763 + ], + "geometry": [ + { "lat": 40.8498076, "lon": -73.9203373 }, + { "lat": 40.8486469, "lon": -73.9212809 }, + { "lat": 40.8477055, "lon": -73.9220462 }, + { "lat": 40.8474894, "lon": -73.9222219 }, + { "lat": 40.8474255, "lon": -73.9222738 } + ], + "tags": { + "highway": "residential", + "name": "Popham Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Popham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_left_1": "10453", + "tiger:zip_left_2": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 274458294, + "bounds": { + "minlat": 40.8596048, + "minlon": -73.9109461, + "maxlat": 40.8606330, + "maxlon": -73.9077684 + }, + "nodes": [ + 42743103, + 10135688405, + 2794883584, + 1891639894, + 1891639886, + 1891639888, + 10135688403, + 42747815, + 1891639893, + 1891639898, + 1891639899, + 1891639900, + 1891639901, + 8464077427, + 8464067967, + 1891639892, + 42747812, + 42747810 + ], + "geometry": [ + { "lat": 40.8606330, "lon": -73.9109461 }, + { "lat": 40.8605708, "lon": -73.9108371 }, + { "lat": 40.8604537, "lon": -73.9106320 }, + { "lat": 40.8602172, "lon": -73.9103668 }, + { "lat": 40.8601518, "lon": -73.9102168 }, + { "lat": 40.8601097, "lon": -73.9099900 }, + { "lat": 40.8601077, "lon": -73.9099644 }, + { "lat": 40.8600997, "lon": -73.9098591 }, + { "lat": 40.8601898, "lon": -73.9096962 }, + { "lat": 40.8602612, "lon": -73.9095555 }, + { "lat": 40.8602918, "lon": -73.9094786 }, + { "lat": 40.8603119, "lon": -73.9094504 }, + { "lat": 40.8603181, "lon": -73.9092899 }, + { "lat": 40.8603152, "lon": -73.9091763 }, + { "lat": 40.8602794, "lon": -73.9090724 }, + { "lat": 40.8601091, "lon": -73.9087425 }, + { "lat": 40.8600399, "lon": -73.9086206 }, + { "lat": 40.8596048, "lon": -73.9077684 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lit": "yes", + "name": "West 183rd Street", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "183rd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 274568810, + "bounds": { + "minlat": 40.7964633, + "minlon": -74.0099362, + "maxlat": 40.7973621, + "maxlon": -74.0080668 + }, + "nodes": [ + 103873528, + 7289750279, + 7547453505, + 3809706329, + 103866651 + ], + "geometry": [ + { "lat": 40.7964633, "lon": -74.0080668 }, + { "lat": 40.7964915, "lon": -74.0081263 }, + { "lat": 40.7970352, "lon": -74.0092761 }, + { "lat": 40.7973036, "lon": -74.0098438 }, + { "lat": 40.7973621, "lon": -74.0099362 } + ], + "tags": { + "highway": "residential", + "name": "72nd Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 274568812, + "bounds": { + "minlat": 40.7973621, + "minlon": -74.0112744, + "maxlat": 40.7980034, + "maxlon": -74.0099362 + }, + "nodes": [ + 103866651, + 7653964061, + 103869040, + 103873530 + ], + "geometry": [ + { "lat": 40.7973621, "lon": -74.0099362 }, + { "lat": 40.7974178, "lon": -74.0100547 }, + { "lat": 40.7977258, "lon": -74.0107112 }, + { "lat": 40.7980034, "lon": -74.0112744 } + ], + "tags": { + "highway": "residential", + "name": "72nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "72nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 274572745, + "bounds": { + "minlat": 40.8377247, + "minlon": -74.0000910, + "maxlat": 40.8410120, + "maxlon": -73.9944351 + }, + "nodes": [ + 103179311, + 12016315294, + 5976782395, + 12016315295, + 103179313, + 12016315297, + 12016315299, + 103179315, + 13524430680, + 103179317, + 13524430681, + 103179319 + ], + "geometry": [ + { "lat": 40.8410120, "lon": -74.0000910 }, + { "lat": 40.8405433, "lon": -73.9992458 }, + { "lat": 40.8405296, "lon": -73.9992210 }, + { "lat": 40.8405037, "lon": -73.9991747 }, + { "lat": 40.8404609, "lon": -73.9990982 }, + { "lat": 40.8404114, "lon": -73.9990110 }, + { "lat": 40.8403721, "lon": -73.9989419 }, + { "lat": 40.8399802, "lon": -73.9982527 }, + { "lat": 40.8390382, "lon": -73.9966081 }, + { "lat": 40.8389764, "lon": -73.9965002 }, + { "lat": 40.8389235, "lon": -73.9964129 }, + { "lat": 40.8377247, "lon": -73.9944351 } + ], + "tags": { + "highway": "residential", + "name": "East Harriet Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harriet", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 274750137, + "bounds": { + "minlat": 40.8179991, + "minlon": -73.9136450, + "maxlat": 40.8181680, + "maxlon": -73.9131800 + }, + "nodes": [ + 42746087, + 8454351342, + 13249095756, + 42749770 + ], + "geometry": [ + { "lat": 40.8181680, "lon": -73.9136450 }, + { "lat": 40.8180575, "lon": -73.9133408 }, + { "lat": 40.8180423, "lon": -73.9132990 }, + { "lat": 40.8179991, "lon": -73.9131800 } + ], + "tags": { + "highway": "residential", + "name": "East 153rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "153rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 274799028, + "bounds": { + "minlat": 40.7917360, + "minlon": -74.0014623, + "maxlat": 40.7922072, + "maxlon": -74.0009914 + }, + "nodes": [ + 752619534, + 7468583726, + 7468539747, + 752619789, + 2794665251, + 7468583730, + 103867982 + ], + "geometry": [ + { "lat": 40.7922072, "lon": -74.0009914 }, + { "lat": 40.7921406, "lon": -74.0011236 }, + { "lat": 40.7921336, "lon": -74.0011343 }, + { "lat": 40.7920457, "lon": -74.0012165 }, + { "lat": 40.7918130, "lon": -74.0013941 }, + { "lat": 40.7917877, "lon": -74.0014165 }, + { "lat": 40.7917360, "lon": -74.0014623 } + ], + "tags": { + "highway": "residential", + "name": "Bellevue Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bellevue", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 274820274, + "bounds": { + "minlat": 40.8323550, + "minlon": -73.9210620, + "maxlat": 40.8335430, + "maxlon": -73.9203650 + }, + "nodes": [ + 42733738, + 13033188190, + 42733733 + ], + "geometry": [ + { "lat": 40.8335430, "lon": -73.9203650 }, + { "lat": 40.8334847, "lon": -73.9203992 }, + { "lat": 40.8323550, "lon": -73.9210620 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 274820275, + "bounds": { + "minlat": 40.8300530, + "minlon": -73.9224130, + "maxlat": 40.8313372, + "maxlon": -73.9216609 + }, + "nodes": [ + 42733729, + 10126985480, + 10126985478, + 42733725 + ], + "geometry": [ + { "lat": 40.8313372, "lon": -73.9216609 }, + { "lat": 40.8312124, "lon": -73.9217340 }, + { "lat": 40.8301156, "lon": -73.9223763 }, + { "lat": 40.8300530, "lon": -73.9224130 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "name": "Walton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 274820276, + "bounds": { + "minlat": 40.8313372, + "minlon": -73.9216609, + "maxlat": 40.8323550, + "maxlon": -73.9210620 + }, + "nodes": [ + 42733733, + 13033188198, + 42733729 + ], + "geometry": [ + { "lat": 40.8323550, "lon": -73.9210620 }, + { "lat": 40.8314643, "lon": -73.9215861 }, + { "lat": 40.8313372, "lon": -73.9216609 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 274820277, + "bounds": { + "minlat": 40.8273868, + "minlon": -73.9239907, + "maxlat": 40.8300530, + "maxlon": -73.9224130 + }, + "nodes": [ + 42733725, + 10126973910, + 10034673500, + 2822072797, + 10034673495, + 2821981289, + 10034673480, + 10034673485, + 10126973914, + 2408448898 + ], + "geometry": [ + { "lat": 40.8300530, "lon": -73.9224130 }, + { "lat": 40.8299881, "lon": -73.9224511 }, + { "lat": 40.8295773, "lon": -73.9226924 }, + { "lat": 40.8289993, "lon": -73.9230320 }, + { "lat": 40.8288105, "lon": -73.9231430 }, + { "lat": 40.8282617, "lon": -73.9234654 }, + { "lat": 40.8278829, "lon": -73.9236928 }, + { "lat": 40.8274903, "lon": -73.9239285 }, + { "lat": 40.8274587, "lon": -73.9239475 }, + { "lat": 40.8273868, "lon": -73.9239907 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 274836875, + "bounds": { + "minlat": 40.8500868, + "minlon": -73.9345440, + "maxlat": 40.8504170, + "maxlon": -73.9337651 + }, + "nodes": [ + 13235111894, + 8151650885, + 9550791866, + 42449639 + ], + "geometry": [ + { "lat": 40.8500868, "lon": -73.9337651 }, + { "lat": 40.8501553, "lon": -73.9339254 }, + { "lat": 40.8503798, "lon": -73.9344560 }, + { "lat": 40.8504170, "lon": -73.9345440 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "15 mph", + "name": "West 182nd Street", + "name_1": "West 182 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "182nd", + "tiger:name_base_1": "182", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 274836876, + "bounds": { + "minlat": 40.8504170, + "minlon": -73.9354260, + "maxlat": 40.8507740, + "maxlon": -73.9345440 + }, + "nodes": [ + 42449639, + 9550791869, + 9550791843, + 42429032 + ], + "geometry": [ + { "lat": 40.8504170, "lon": -73.9345440 }, + { "lat": 40.8504551, "lon": -73.9346382 }, + { "lat": 40.8507263, "lon": -73.9353082 }, + { "lat": 40.8507740, "lon": -73.9354260 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "15 mph", + "name": "West 182nd Street", + "name_1": "West 182 Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "182nd", + "tiger:name_base_1": "182", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 274836877, + "bounds": { + "minlat": 40.8493090, + "minlon": -73.9333100, + "maxlat": 40.8498950, + "maxlon": -73.9319170 + }, + "nodes": [ + 42454368, + 9566870001, + 11976751741, + 5403873758, + 42433068 + ], + "geometry": [ + { "lat": 40.8493090, "lon": -73.9319170 }, + { "lat": 40.8493520, "lon": -73.9320193 }, + { "lat": 40.8494827, "lon": -73.9323302 }, + { "lat": 40.8498430, "lon": -73.9331870 }, + { "lat": 40.8498950, "lon": -73.9333100 } + ], + "tags": { + "highway": "residential", + "name": "West 182nd Street", + "name_1": "West 182 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "182nd", + "tiger:name_base_1": "182", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 274838698, + "bounds": { + "minlat": 40.8126037, + "minlon": -73.9232730, + "maxlat": 40.8133225, + "maxlon": -73.9228726 + }, + "nodes": [ + 42733954, + 9908629936, + 9908629935, + 9908629927, + 42732884, + 8571884275, + 9908629925, + 42732882 + ], + "geometry": [ + { "lat": 40.8133225, "lon": -73.9228726 }, + { "lat": 40.8132749, "lon": -73.9229076 }, + { "lat": 40.8132404, "lon": -73.9229240 }, + { "lat": 40.8131780, "lon": -73.9229402 }, + { "lat": 40.8130124, "lon": -73.9230010 }, + { "lat": 40.8127192, "lon": -73.9232118 }, + { "lat": 40.8126738, "lon": -73.9232459 }, + { "lat": 40.8126037, "lon": -73.9232730 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Alexander Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Alexander", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 274838700, + "bounds": { + "minlat": 40.8130124, + "minlon": -73.9230010, + "maxlat": 40.8131346, + "maxlon": -73.9227092 + }, + "nodes": [ + 2795084763, + 9908629930, + 9908629929, + 9908629928, + 9908629926, + 42732884 + ], + "geometry": [ + { "lat": 40.8131346, "lon": -73.9227092 }, + { "lat": 40.8131203, "lon": -73.9227761 }, + { "lat": 40.8130994, "lon": -73.9228298 }, + { "lat": 40.8130869, "lon": -73.9228654 }, + { "lat": 40.8130450, "lon": -73.9229358 }, + { "lat": 40.8130124, "lon": -73.9230010 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Alexander Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Alexander", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 274838701, + "bounds": { + "minlat": 40.8133225, + "minlon": -73.9242590, + "maxlat": 40.8150510, + "maxlon": -73.9228726 + }, + "nodes": [ + 42733954, + 9908629934, + 6881378630, + 6881378609, + 12040837228, + 42733951 + ], + "geometry": [ + { "lat": 40.8133225, "lon": -73.9228726 }, + { "lat": 40.8133999, "lon": -73.9229529 }, + { "lat": 40.8140761, "lon": -73.9234818 }, + { "lat": 40.8144855, "lon": -73.9238082 }, + { "lat": 40.8149683, "lon": -73.9241931 }, + { "lat": 40.8150510, "lon": -73.9242590 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 143rd Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "143rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 274863277, + "bounds": { + "minlat": 40.7426843, + "minlon": -73.9128105, + "maxlat": 40.7441661, + "maxlon": -73.9124839 + }, + "nodes": [ + 42817819, + 9950268702, + 9950327785, + 9950327732, + 276299053 + ], + "geometry": [ + { "lat": 40.7441661, "lon": -73.9124839 }, + { "lat": 40.7440933, "lon": -73.9125005 }, + { "lat": 40.7427747, "lon": -73.9127688 }, + { "lat": 40.7427428, "lon": -73.9127839 }, + { "lat": 40.7426843, "lon": -73.9128105 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "52nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 274867403, + "bounds": { + "minlat": 40.8109940, + "minlon": -73.9168528, + "maxlat": 40.8116620, + "maxlon": -73.9148470 + }, + "nodes": [ + 42761045, + 9908650995, + 7555030372, + 7192655281, + 7555030370, + 10127019027, + 42763155 + ], + "geometry": [ + { "lat": 40.8116620, "lon": -73.9168528 }, + { "lat": 40.8116272, "lon": -73.9167488 }, + { "lat": 40.8112002, "lon": -73.9154718 }, + { "lat": 40.8111449, "lon": -73.9153043 }, + { "lat": 40.8111361, "lon": -73.9152778 }, + { "lat": 40.8110264, "lon": -73.9149450 }, + { "lat": 40.8109940, "lon": -73.9148470 } + ], + "tags": { + "highway": "residential", + "name": "East 144th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "144th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 274867404, + "bounds": { + "minlat": 40.8116620, + "minlon": -73.9201066, + "maxlat": 40.8128956, + "maxlon": -73.9168528 + }, + "nodes": [ + 42761245, + 9908621398, + 9908621399, + 2795358082, + 9908650997, + 9908650998, + 2795358081, + 9908650994, + 42761045 + ], + "geometry": [ + { "lat": 40.8128956, "lon": -73.9201066 }, + { "lat": 40.8128487, "lon": -73.9199948 }, + { "lat": 40.8126110, "lon": -73.9194237 }, + { "lat": 40.8122869, "lon": -73.9186571 }, + { "lat": 40.8122097, "lon": -73.9184586 }, + { "lat": 40.8121487, "lon": -73.9182968 }, + { "lat": 40.8120877, "lon": -73.9181224 }, + { "lat": 40.8116986, "lon": -73.9169643 }, + { "lat": 40.8116620, "lon": -73.9168528 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 144th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "144th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 274870839, + "bounds": { + "minlat": 40.8502245, + "minlon": -74.0207508, + "maxlat": 40.8510875, + "maxlon": -74.0174148 + }, + "nodes": [ + 103214353, + 103298690 + ], + "geometry": [ + { "lat": 40.8510875, "lon": -74.0207508 }, + { "lat": 40.8502245, "lon": -74.0174148 } + ], + "tags": { + "highway": "residential", + "name": "Brinkerhoff Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brinkerhoff", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 274879922, + "bounds": { + "minlat": 40.7092074, + "minlon": -73.9523600, + "maxlat": 40.7097160, + "maxlon": -73.9508279 + }, + "nodes": [ + 42490951, + 9733464326, + 9733464325, + 8232714840, + 7173618562, + 9755373492, + 42491462 + ], + "geometry": [ + { "lat": 40.7092113, "lon": -73.9508279 }, + { "lat": 40.7092074, "lon": -73.9508807 }, + { "lat": 40.7092096, "lon": -73.9509194 }, + { "lat": 40.7092155, "lon": -73.9509535 }, + { "lat": 40.7096800, "lon": -73.9522641 }, + { "lat": 40.7096897, "lon": -73.9522896 }, + { "lat": 40.7097160, "lon": -73.9523600 } + ], + "tags": { + "highway": "residential", + "name": "South 2nd Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 274879923, + "bounds": { + "minlat": 40.7097160, + "minlon": -73.9538560, + "maxlat": 40.7102640, + "maxlon": -73.9523600 + }, + "nodes": [ + 42491462, + 9755372053, + 8617440648, + 9755372048, + 42488298 + ], + "geometry": [ + { "lat": 40.7097160, "lon": -73.9523600 }, + { "lat": 40.7097484, "lon": -73.9524493 }, + { "lat": 40.7102208, "lon": -73.9537382 }, + { "lat": 40.7102409, "lon": -73.9537931 }, + { "lat": 40.7102640, "lon": -73.9538560 } + ], + "tags": { + "highway": "residential", + "name": "South 2nd Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 274888364, + "bounds": { + "minlat": 40.6998820, + "minlon": -73.9082990, + "maxlat": 40.7008040, + "maxlon": -73.9073600 + }, + "nodes": [ + 42848471, + 5328241461, + 9762206705, + 42848475 + ], + "geometry": [ + { "lat": 40.6998820, "lon": -73.9082990 }, + { "lat": 40.6999865, "lon": -73.9081937 }, + { "lat": 40.7007479, "lon": -73.9074171 }, + { "lat": 40.7008040, "lon": -73.9073600 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 274892399, + "bounds": { + "minlat": 40.7434201, + "minlon": -73.9195880, + "maxlat": 40.7450293, + "maxlon": -73.9192737 + }, + "nodes": [ + 2795569886, + 10743714077, + 10774439632, + 10160678890, + 11694597556, + 42817797 + ], + "geometry": [ + { "lat": 40.7434201, "lon": -73.9195880 }, + { "lat": 40.7435287, "lon": -73.9195668 }, + { "lat": 40.7438033, "lon": -73.9195132 }, + { "lat": 40.7442758, "lon": -73.9194209 }, + { "lat": 40.7449322, "lon": -73.9192927 }, + { "lat": 40.7450293, "lon": -73.9192737 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "45th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 274892400, + "bounds": { + "minlat": 40.7431175, + "minlon": -73.9196503, + "maxlat": 40.7434201, + "maxlon": -73.9195880 + }, + "nodes": [ + 42885757, + 3798377304, + 2795569886 + ], + "geometry": [ + { "lat": 40.7431175, "lon": -73.9196503 }, + { "lat": 40.7432787, "lon": -73.9196167 }, + { "lat": 40.7434201, "lon": -73.9195880 } + ], + "tags": { + "highway": "residential", + "name": "45th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 274892402, + "bounds": { + "minlat": 40.7450293, + "minlon": -73.9192737, + "maxlat": 40.7466747, + "maxlon": -73.9189441 + }, + "nodes": [ + 42817797, + 11694597546, + 10774439636, + 10069693832, + 42885753 + ], + "geometry": [ + { "lat": 40.7450293, "lon": -73.9192737 }, + { "lat": 40.7450989, "lon": -73.9192598 }, + { "lat": 40.7455474, "lon": -73.9191699 }, + { "lat": 40.7465982, "lon": -73.9189594 }, + { "lat": 40.7466747, "lon": -73.9189441 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "45th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 274892403, + "bounds": { + "minlat": 40.7466747, + "minlon": -73.9189441, + "maxlat": 40.7495480, + "maxlon": -73.9183730 + }, + "nodes": [ + 42885753, + 10069693833, + 7530789569, + 7530789570, + 7530789533, + 7530789526, + 7530789534, + 7530789531, + 7671808575, + 2699913196, + 12046272431, + 12046272432, + 9111623471 + ], + "geometry": [ + { "lat": 40.7466747, "lon": -73.9189441 }, + { "lat": 40.7467633, "lon": -73.9189259 }, + { "lat": 40.7469590, "lon": -73.9188850 }, + { "lat": 40.7469880, "lon": -73.9188791 }, + { "lat": 40.7476312, "lon": -73.9187495 }, + { "lat": 40.7476959, "lon": -73.9187364 }, + { "lat": 40.7484348, "lon": -73.9185875 }, + { "lat": 40.7485164, "lon": -73.9185711 }, + { "lat": 40.7493933, "lon": -73.9183963 }, + { "lat": 40.7494222, "lon": -73.9183963 }, + { "lat": 40.7494851, "lon": -73.9183847 }, + { "lat": 40.7495000, "lon": -73.9183819 }, + { "lat": 40.7495480, "lon": -73.9183730 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "45th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 274894399, + "bounds": { + "minlat": 40.7419172, + "minlon": -73.9255949, + "maxlat": 40.7437596, + "maxlon": -73.9252212 + }, + "nodes": [ + 42860605, + 10081023605, + 10774439527, + 8549563219, + 10743722637, + 2708237394 + ], + "geometry": [ + { "lat": 40.7419172, "lon": -73.9255949 }, + { "lat": 40.7419993, "lon": -73.9255786 }, + { "lat": 40.7422765, "lon": -73.9255231 }, + { "lat": 40.7428353, "lon": -73.9254112 }, + { "lat": 40.7436735, "lon": -73.9252389 }, + { "lat": 40.7437596, "lon": -73.9252212 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "39th Place", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 274894400, + "bounds": { + "minlat": 40.7440628, + "minlon": -73.9251476, + "maxlat": 40.7456709, + "maxlon": -73.9248433 + }, + "nodes": [ + 2708237395, + 10743722052, + 8316237172, + 10069673345, + 42817773 + ], + "geometry": [ + { "lat": 40.7440628, "lon": -73.9251476 }, + { "lat": 40.7441696, "lon": -73.9251276 }, + { "lat": 40.7455351, "lon": -73.9248714 }, + { "lat": 40.7455755, "lon": -73.9248630 }, + { "lat": 40.7456709, "lon": -73.9248433 } + ], + "tags": { + "highway": "residential", + "name": "39th Place", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 274894401, + "bounds": { + "minlat": 40.7456709, + "minlon": -73.9248433, + "maxlat": 40.7473181, + "maxlon": -73.9245100 + }, + "nodes": [ + 42817773, + 10069673344, + 5867099387, + 10069673339, + 42864393 + ], + "geometry": [ + { "lat": 40.7456709, "lon": -73.9248433 }, + { "lat": 40.7457379, "lon": -73.9248298 }, + { "lat": 40.7472110, "lon": -73.9245320 }, + { "lat": 40.7472457, "lon": -73.9245249 }, + { "lat": 40.7473181, "lon": -73.9245100 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "39th Place", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 274894402, + "bounds": { + "minlat": 40.7437596, + "minlon": -73.9252212, + "maxlat": 40.7440628, + "maxlon": -73.9251476 + }, + "nodes": [ + 2708237394, + 3798377296, + 2708237395 + ], + "geometry": [ + { "lat": 40.7437596, "lon": -73.9252212 }, + { "lat": 40.7439333, "lon": -73.9251776 }, + { "lat": 40.7440628, "lon": -73.9251476 } + ], + "tags": { + "highway": "residential", + "name": "39th Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 275009587, + "bounds": { + "minlat": 40.7676918, + "minlon": -73.9366529, + "maxlat": 40.7681133, + "maxlon": -73.9361838 + }, + "nodes": [ + 2796726960, + 2799390796, + 7733783922, + 2796727177 + ], + "geometry": [ + { "lat": 40.7681133, "lon": -73.9366529 }, + { "lat": 40.7678444, "lon": -73.9363402 }, + { "lat": 40.7677665, "lon": -73.9362553 }, + { "lat": 40.7676918, "lon": -73.9361838 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 275016228, + "bounds": { + "minlat": 40.7131200, + "minlon": -74.0041090, + "maxlat": 40.7131550, + "maxlon": -74.0039898 + }, + "nodes": [ + 9121386334, + 9121386335, + 4878831008 + ], + "geometry": [ + { "lat": 40.7131200, "lon": -74.0039898 }, + { "lat": 40.7131391, "lon": -74.0040549 }, + { "lat": 40.7131550, "lon": -74.0041090 } + ], + "tags": { + "hgv": "destination", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "oneway": "no", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_stopping", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 275070954, + "bounds": { + "minlat": 40.7637352, + "minlon": -73.9421663, + "maxlat": 40.7640138, + "maxlon": -73.9413907 + }, + "nodes": [ + 42826813, + 6450613989, + 2797326738 + ], + "geometry": [ + { "lat": 40.7637352, "lon": -73.9413907 }, + { "lat": 40.7637748, "lon": -73.9415037 }, + { "lat": 40.7640138, "lon": -73.9421663 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 275079975, + "bounds": { + "minlat": 40.7916735, + "minlon": -74.0072944, + "maxlat": 40.7918503, + "maxlon": -74.0069105 + }, + "nodes": [ + 103878361, + 7658692334, + 7658692337, + 103862613 + ], + "geometry": [ + { "lat": 40.7918503, "lon": -74.0072944 }, + { "lat": 40.7918234, "lon": -74.0072359 }, + { "lat": 40.7917145, "lon": -74.0069996 }, + { "lat": 40.7916735, "lon": -74.0069105 } + ], + "tags": { + "highway": "residential", + "name": "67th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "67th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275079976, + "bounds": { + "minlat": 40.7930882, + "minlon": -74.0105512, + "maxlat": 40.7933849, + "maxlon": -74.0099348 + }, + "nodes": [ + 103878363, + 7678242767, + 103878362 + ], + "geometry": [ + { "lat": 40.7933849, "lon": -74.0105512 }, + { "lat": 40.7933580, "lon": -74.0104953 }, + { "lat": 40.7930882, "lon": -74.0099348 } + ], + "tags": { + "highway": "residential", + "name": "67th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "67th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275079977, + "bounds": { + "minlat": 40.7933849, + "minlon": -74.0123260, + "maxlat": 40.7941930, + "maxlon": -74.0105512 + }, + "nodes": [ + 440244399, + 7678242768, + 103878363 + ], + "geometry": [ + { "lat": 40.7941930, "lon": -74.0123260 }, + { "lat": 40.7941457, "lon": -74.0122222 }, + { "lat": 40.7933849, "lon": -74.0105512 } + ], + "tags": { + "highway": "residential", + "name": "67th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "67th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275079978, + "bounds": { + "minlat": 40.7906977, + "minlon": -74.0069105, + "maxlat": 40.7916735, + "maxlon": -74.0047934 + }, + "nodes": [ + 103862613, + 7658692316, + 7658692318, + 103878359 + ], + "geometry": [ + { "lat": 40.7916735, "lon": -74.0069105 }, + { "lat": 40.7916263, "lon": -74.0068081 }, + { "lat": 40.7907431, "lon": -74.0048919 }, + { "lat": 40.7906977, "lon": -74.0047934 } + ], + "tags": { + "highway": "residential", + "name": "67th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "67th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275079979, + "bounds": { + "minlat": 40.7918503, + "minlon": -74.0084063, + "maxlat": 40.7923730, + "maxlon": -74.0072944 + }, + "nodes": [ + 103855615, + 7678242749, + 103878361 + ], + "geometry": [ + { "lat": 40.7923730, "lon": -74.0084063 }, + { "lat": 40.7919232, "lon": -74.0074494 }, + { "lat": 40.7918503, "lon": -74.0072944 } + ], + "tags": { + "highway": "residential", + "name": "67th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "67th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275079980, + "bounds": { + "minlat": 40.7894328, + "minlon": -74.0029806, + "maxlat": 40.7898460, + "maxlon": -74.0021076 + }, + "nodes": [ + 103868355, + 103878357, + 7468537676, + 103876620 + ], + "geometry": [ + { "lat": 40.7898460, "lon": -74.0029806 }, + { "lat": 40.7897250, "lon": -74.0027150 }, + { "lat": 40.7894867, "lon": -74.0022196 }, + { "lat": 40.7894328, "lon": -74.0021076 } + ], + "tags": { + "highway": "residential", + "name": "67th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "67th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275079981, + "bounds": { + "minlat": 40.7898460, + "minlon": -74.0047934, + "maxlat": 40.7906977, + "maxlon": -74.0029806 + }, + "nodes": [ + 103878359, + 7468537673, + 6839986746, + 103878358, + 103868355 + ], + "geometry": [ + { "lat": 40.7906977, "lon": -74.0047934 }, + { "lat": 40.7906488, "lon": -74.0046923 }, + { "lat": 40.7904650, "lon": -74.0043126 }, + { "lat": 40.7902030, "lon": -74.0037520 }, + { "lat": 40.7898460, "lon": -74.0029806 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "67th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "67th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275080194, + "bounds": { + "minlat": 40.7895116, + "minlon": -74.0077852, + "maxlat": 40.7904710, + "maxlon": -74.0057413 + }, + "nodes": [ + 103862609, + 7658692293, + 7588135077, + 7658692287, + 103864413 + ], + "geometry": [ + { "lat": 40.7904710, "lon": -74.0077852 }, + { "lat": 40.7904356, "lon": -74.0077097 }, + { "lat": 40.7903023, "lon": -74.0074258 }, + { "lat": 40.7895611, "lon": -74.0058468 }, + { "lat": 40.7895116, "lon": -74.0057413 } + ], + "tags": { + "highway": "residential", + "name": "65th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "65th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275080197, + "bounds": { + "minlat": 40.7904710, + "minlon": -74.0088552, + "maxlat": 40.7909769, + "maxlon": -74.0077852 + }, + "nodes": [ + 103864414, + 7678131186, + 7678131184, + 103862609 + ], + "geometry": [ + { "lat": 40.7909769, "lon": -74.0088552 }, + { "lat": 40.7909411, "lon": -74.0087795 }, + { "lat": 40.7905223, "lon": -74.0078937 }, + { "lat": 40.7904710, "lon": -74.0077852 } + ], + "tags": { + "highway": "residential", + "name": "65th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "65th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275080200, + "bounds": { + "minlat": 40.7909769, + "minlon": -74.0093347, + "maxlat": 40.7912040, + "maxlon": -74.0088552 + }, + "nodes": [ + 103855613, + 7678131196, + 7678131194, + 103864414 + ], + "geometry": [ + { "lat": 40.7912040, "lon": -74.0093347 }, + { "lat": 40.7911594, "lon": -74.0092405 }, + { "lat": 40.7910250, "lon": -74.0089567 }, + { "lat": 40.7909769, "lon": -74.0088552 } + ], + "tags": { + "highway": "residential", + "name": "65th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "65th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275080205, + "bounds": { + "minlat": 40.7919215, + "minlon": -74.0132125, + "maxlat": 40.7930119, + "maxlon": -74.0108654 + }, + "nodes": [ + 103864416, + 7678131126, + 7678131128, + 103864415 + ], + "geometry": [ + { "lat": 40.7930119, "lon": -74.0132125 }, + { "lat": 40.7929638, "lon": -74.0131092 }, + { "lat": 40.7919653, "lon": -74.0109603 }, + { "lat": 40.7919215, "lon": -74.0108654 } + ], + "tags": { + "highway": "residential", + "name": "65th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "65th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275080208, + "bounds": { + "minlat": 40.7912040, + "minlon": -74.0108654, + "maxlat": 40.7919215, + "maxlon": -74.0093347 + }, + "nodes": [ + 103864415, + 7678131140, + 7678131142, + 103855613 + ], + "geometry": [ + { "lat": 40.7919215, "lon": -74.0108654 }, + { "lat": 40.7918864, "lon": -74.0107906 }, + { "lat": 40.7912452, "lon": -74.0094225 }, + { "lat": 40.7912040, "lon": -74.0093347 } + ], + "tags": { + "highway": "residential", + "name": "65th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "65th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275080211, + "bounds": { + "minlat": 40.7915414, + "minlon": -74.0088653, + "maxlat": 40.7917840, + "maxlon": -74.0082898 + }, + "nodes": [ + 103881737, + 7678242725, + 7678242720, + 103855614 + ], + "geometry": [ + { "lat": 40.7915414, "lon": -74.0082898 }, + { "lat": 40.7915778, "lon": -74.0083762 }, + { "lat": 40.7917392, "lon": -74.0087591 }, + { "lat": 40.7917840, "lon": -74.0088653 } + ], + "tags": { + "highway": "residential", + "name": "66th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "66th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275080214, + "bounds": { + "minlat": 40.7917840, + "minlon": -74.0104060, + "maxlat": 40.7924971, + "maxlon": -74.0088653 + }, + "nodes": [ + 103855614, + 7678242713, + 5474138770, + 5474138768, + 7678242708, + 103884182 + ], + "geometry": [ + { "lat": 40.7917840, "lon": -74.0088653 }, + { "lat": 40.7918220, "lon": -74.0089473 }, + { "lat": 40.7920198, "lon": -74.0093747 }, + { "lat": 40.7921401, "lon": -74.0096347 }, + { "lat": 40.7924622, "lon": -74.0103307 }, + { "lat": 40.7924971, "lon": -74.0104060 } + ], + "tags": { + "highway": "residential", + "name": "66th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "66th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275080217, + "bounds": { + "minlat": 40.7924971, + "minlon": -74.0127676, + "maxlat": 40.7936024, + "maxlon": -74.0104060 + }, + "nodes": [ + 103884182, + 7678242706, + 7678242694, + 103866639 + ], + "geometry": [ + { "lat": 40.7924971, "lon": -74.0104060 }, + { "lat": 40.7925391, "lon": -74.0104958 }, + { "lat": 40.7935574, "lon": -74.0126716 }, + { "lat": 40.7936024, "lon": -74.0127676 } + ], + "tags": { + "highway": "residential", + "name": "66th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "66th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 275113553, + "bounds": { + "minlat": 40.8381137, + "minlon": -73.9123244, + "maxlat": 40.8382791, + "maxlon": -73.9122171 + }, + "nodes": [ + 2408359300, + 2327276567 + ], + "geometry": [ + { "lat": 40.8381137, "lon": -73.9123244 }, + { "lat": 40.8382791, "lon": -73.9122171 } + ], + "tags": { + "highway": "residential", + "name": "Grant Avenue", + "name:etymology:wikidata": "Q34836", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grant", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 275128981, + "bounds": { + "minlat": 40.7526720, + "minlon": -73.9371700, + "maxlat": 40.7530790, + "maxlon": -73.9364020 + }, + "nodes": [ + 42817418, + 10744391818, + 10744391812, + 42872027 + ], + "geometry": [ + { "lat": 40.7526720, "lon": -73.9364020 }, + { "lat": 40.7527096, "lon": -73.9364729 }, + { "lat": 40.7530460, "lon": -73.9371077 }, + { "lat": 40.7530790, "lon": -73.9371700 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "40th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "40th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 275128982, + "bounds": { + "minlat": 40.7547190, + "minlon": -73.9412390, + "maxlat": 40.7552340, + "maxlon": -73.9402500 + }, + "nodes": [ + 42906425, + 8315005326, + 7734652590, + 42825879 + ], + "geometry": [ + { "lat": 40.7547190, "lon": -73.9402500 }, + { "lat": 40.7547624, "lon": -73.9403289 }, + { "lat": 40.7551942, "lon": -73.9411135 }, + { "lat": 40.7552340, "lon": -73.9412390 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "40th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "40th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 275128983, + "bounds": { + "minlat": 40.7542960, + "minlon": -73.9402500, + "maxlat": 40.7547190, + "maxlon": -73.9394560 + }, + "nodes": [ + 42906428, + 8314985397, + 8314985373, + 42906425 + ], + "geometry": [ + { "lat": 40.7542960, "lon": -73.9394560 }, + { "lat": 40.7543444, "lon": -73.9395468 }, + { "lat": 40.7546883, "lon": -73.9401924 }, + { "lat": 40.7547190, "lon": -73.9402500 } + ], + "tags": { + "highway": "residential", + "name": "40th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "40th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 275128984, + "bounds": { + "minlat": 40.7522820, + "minlon": -73.9364020, + "maxlat": 40.7526720, + "maxlon": -73.9356140 + }, + "nodes": [ + 42833349, + 4675931527, + 10744391816, + 42817418 + ], + "geometry": [ + { "lat": 40.7522820, "lon": -73.9356140 }, + { "lat": 40.7523088, "lon": -73.9357041 }, + { "lat": 40.7526365, "lon": -73.9363337 }, + { "lat": 40.7526720, "lon": -73.9364020 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "40th Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "40th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 275128985, + "bounds": { + "minlat": 40.7538980, + "minlon": -73.9394560, + "maxlat": 40.7542960, + "maxlon": -73.9387100 + }, + "nodes": [ + 42861196, + 8314985376, + 8314985365, + 42906428 + ], + "geometry": [ + { "lat": 40.7538980, "lon": -73.9387100 }, + { "lat": 40.7539367, "lon": -73.9387833 }, + { "lat": 40.7542555, "lon": -73.9393801 }, + { "lat": 40.7542960, "lon": -73.9394560 } + ], + "tags": { + "highway": "residential", + "name": "40th Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 275128986, + "bounds": { + "minlat": 40.7530790, + "minlon": -73.9379572, + "maxlat": 40.7535014, + "maxlon": -73.9371700 + }, + "nodes": [ + 42872027, + 10744391814, + 5031422293, + 42818573 + ], + "geometry": [ + { "lat": 40.7530790, "lon": -73.9371700 }, + { "lat": 40.7531188, "lon": -73.9372442 }, + { "lat": 40.7534609, "lon": -73.9378821 }, + { "lat": 40.7535014, "lon": -73.9379572 } + ], + "tags": { + "highway": "residential", + "name": "40th Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "40th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 275129017, + "bounds": { + "minlat": 40.7519655, + "minlon": -73.9356140, + "maxlat": 40.7522820, + "maxlon": -73.9347568 + }, + "nodes": [ + 42906439, + 4675931528, + 42833349 + ], + "geometry": [ + { "lat": 40.7519655, "lon": -73.9347568 }, + { "lat": 40.7522620, "lon": -73.9355446 }, + { "lat": 40.7522820, "lon": -73.9356140 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "40th Avenue", + "oneway": "yes", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 275133137, + "bounds": { + "minlat": 40.7162763, + "minlon": -73.9076840, + "maxlat": 40.7173800, + "maxlon": -73.9074386 + }, + "nodes": [ + 42858148, + 13048049521, + 9759984274, + 42882340 + ], + "geometry": [ + { "lat": 40.7162763, "lon": -73.9074386 }, + { "lat": 40.7163358, "lon": -73.9074509 }, + { "lat": 40.7173287, "lon": -73.9076719 }, + { "lat": 40.7173800, "lon": -73.9076840 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "59th Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275135282, + "bounds": { + "minlat": 40.7434550, + "minlon": -73.9148370, + "maxlat": 40.7444903, + "maxlon": -73.9146334 + }, + "nodes": [ + 42817812, + 10074123178, + 5481946360, + 11539481404, + 5481946355, + 11694654148, + 42870230 + ], + "geometry": [ + { "lat": 40.7444903, "lon": -73.9146334 }, + { "lat": 40.7443937, "lon": -73.9146523 }, + { "lat": 40.7439326, "lon": -73.9147431 }, + { "lat": 40.7437718, "lon": -73.9147753 }, + { "lat": 40.7437548, "lon": -73.9147787 }, + { "lat": 40.7435466, "lon": -73.9148192 }, + { "lat": 40.7434550, "lon": -73.9148370 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "name": "50th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275135284, + "bounds": { + "minlat": 40.7428854, + "minlon": -73.9149503, + "maxlat": 40.7429346, + "maxlon": -73.9149378 + }, + "nodes": [ + 276315676, + 3718570848 + ], + "geometry": [ + { "lat": 40.7429346, "lon": -73.9149378 }, + { "lat": 40.7428854, "lon": -73.9149503 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "residential", + "lit": "yes", + "maxspeed:type": "US:urban", + "name": "50th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275135285, + "bounds": { + "minlat": 40.7429346, + "minlon": -73.9149378, + "maxlat": 40.7434550, + "maxlon": -73.9148370 + }, + "nodes": [ + 42870230, + 9950327740, + 5481947757, + 12954458219, + 7667163198, + 276315676 + ], + "geometry": [ + { "lat": 40.7434550, "lon": -73.9148370 }, + { "lat": 40.7433711, "lon": -73.9148509 }, + { "lat": 40.7432167, "lon": -73.9148764 }, + { "lat": 40.7430485, "lon": -73.9149127 }, + { "lat": 40.7429971, "lon": -73.9149238 }, + { "lat": 40.7429346, "lon": -73.9149378 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lit": "yes", + "maxspeed:type": "US:urban", + "name": "50th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275135286, + "bounds": { + "minlat": 40.7407374, + "minlon": -73.9153854, + "maxlat": 40.7425448, + "maxlon": -73.9150166 + }, + "nodes": [ + 276315696, + 9986789925, + 12954458217, + 8316237151, + 10081025553, + 42860635 + ], + "geometry": [ + { "lat": 40.7425448, "lon": -73.9150166 }, + { "lat": 40.7424881, "lon": -73.9150289 }, + { "lat": 40.7424395, "lon": -73.9150388 }, + { "lat": 40.7408376, "lon": -73.9153653 }, + { "lat": 40.7407926, "lon": -73.9153747 }, + { "lat": 40.7407374, "lon": -73.9153854 } + ], + "tags": { + "bicycle": "designated", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "50th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275135287, + "bounds": { + "minlat": 40.7444903, + "minlon": -73.9146334, + "maxlat": 40.7461294, + "maxlon": -73.9143046 + }, + "nodes": [ + 42919808, + 10074123182, + 10774439456, + 10074123179, + 42817812 + ], + "geometry": [ + { "lat": 40.7461294, "lon": -73.9143046 }, + { "lat": 40.7460679, "lon": -73.9143176 }, + { "lat": 40.7448352, "lon": -73.9145643 }, + { "lat": 40.7445638, "lon": -73.9146186 }, + { "lat": 40.7444903, "lon": -73.9146334 } + ], + "tags": { + "highway": "residential", + "name": "50th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275135288, + "bounds": { + "minlat": 40.7426731, + "minlon": -73.9149933, + "maxlat": 40.7428022, + "maxlon": -73.9149659 + }, + "nodes": [ + 276207581, + 276207729 + ], + "geometry": [ + { "lat": 40.7428022, "lon": -73.9149659 }, + { "lat": 40.7426731, "lon": -73.9149933 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lit": "yes", + "maxspeed:type": "US:urban", + "name": "50th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275135289, + "bounds": { + "minlat": 40.7461294, + "minlon": -73.9143046, + "maxlat": 40.7489398, + "maxlon": -73.9137513 + }, + "nodes": [ + 10971338116, + 42892848, + 7667084779, + 42795181, + 10774439450, + 10774422794, + 10774439448, + 10774439446, + 10774422789, + 10774422798, + 10774422783, + 10074123183, + 42919808 + ], + "geometry": [ + { "lat": 40.7489398, "lon": -73.9137931 }, + { "lat": 40.7488937, "lon": -73.9137513 }, + { "lat": 40.7488689, "lon": -73.9137561 }, + { "lat": 40.7486150, "lon": -73.9138070 }, + { "lat": 40.7485599, "lon": -73.9138180 }, + { "lat": 40.7482887, "lon": -73.9138724 }, + { "lat": 40.7481151, "lon": -73.9139071 }, + { "lat": 40.7476730, "lon": -73.9139956 }, + { "lat": 40.7475412, "lon": -73.9140220 }, + { "lat": 40.7469292, "lon": -73.9141446 }, + { "lat": 40.7465900, "lon": -73.9142125 }, + { "lat": 40.7462305, "lon": -73.9142845 }, + { "lat": 40.7461294, "lon": -73.9143046 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "50th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275135320, + "bounds": { + "minlat": 40.7542960, + "minlon": -73.9394560, + "maxlat": 40.7566100, + "maxlon": -73.9373270 + }, + "nodes": [ + 42906428, + 8314985402, + 7833495847, + 7602240122, + 8354876682, + 42892927, + 8354876674, + 8315005348, + 42876764 + ], + "geometry": [ + { "lat": 40.7542960, "lon": -73.9394560 }, + { "lat": 40.7543495, "lon": -73.9394067 }, + { "lat": 40.7545091, "lon": -73.9392596 }, + { "lat": 40.7545195, "lon": -73.9392500 }, + { "lat": 40.7555100, "lon": -73.9383373 }, + { "lat": 40.7555570, "lon": -73.9382940 }, + { "lat": 40.7556081, "lon": -73.9382471 }, + { "lat": 40.7565502, "lon": -73.9373814 }, + { "lat": 40.7566100, "lon": -73.9373270 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "highway": "residential", + "name": "23rd Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 275135321, + "bounds": { + "minlat": 40.7566100, + "minlon": -73.9373270, + "maxlat": 40.7590637, + "maxlon": -73.9350660 + }, + "nodes": [ + 42876764, + 8314985413, + 3569402104, + 42815785, + 3569402108, + 6452683700, + 42920879 + ], + "geometry": [ + { "lat": 40.7566100, "lon": -73.9373270 }, + { "lat": 40.7566759, "lon": -73.9372662 }, + { "lat": 40.7577498, "lon": -73.9362785 }, + { "lat": 40.7578080, "lon": -73.9362250 }, + { "lat": 40.7578788, "lon": -73.9361596 }, + { "lat": 40.7590014, "lon": -73.9351235 }, + { "lat": 40.7590637, "lon": -73.9350660 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "highway": "residential", + "name": "23rd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275282079, + "bounds": { + "minlat": 40.7001690, + "minlon": -73.9092040, + "maxlat": 40.7012409, + "maxlon": -73.9081041 + }, + "nodes": [ + 42871166, + 9762206691, + 9677213638, + 42871160 + ], + "geometry": [ + { "lat": 40.7012409, "lon": -73.9081041 }, + { "lat": 40.7011889, "lon": -73.9081574 }, + { "lat": 40.7002348, "lon": -73.9091365 }, + { "lat": 40.7001690, "lon": -73.9092040 } + ], + "tags": { + "highway": "residential", + "name": "Woodbine Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Woodbine", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 275282081, + "bounds": { + "minlat": 40.7023710, + "minlon": -73.9069500, + "maxlat": 40.7032770, + "maxlon": -73.9060240 + }, + "nodes": [ + 42827640, + 9762206595, + 9762206608, + 42871170 + ], + "geometry": [ + { "lat": 40.7032770, "lon": -73.9060240 }, + { "lat": 40.7032247, "lon": -73.9060775 }, + { "lat": 40.7024311, "lon": -73.9068886 }, + { "lat": 40.7023710, "lon": -73.9069500 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "Woodbine Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Woodbine", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 275282083, + "bounds": { + "minlat": 40.7012409, + "minlon": -73.9081041, + "maxlat": 40.7023710, + "maxlon": -73.9069500 + }, + "nodes": [ + 42871170, + 9762206609, + 9762206689, + 42871166 + ], + "geometry": [ + { "lat": 40.7023710, "lon": -73.9069500 }, + { "lat": 40.7023131, "lon": -73.9070091 }, + { "lat": 40.7013043, "lon": -73.9080394 }, + { "lat": 40.7012409, "lon": -73.9081041 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "Woodbine Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Woodbine", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 275284411, + "bounds": { + "minlat": 40.7553910, + "minlon": -73.9350400, + "maxlat": 40.7565710, + "maxlon": -73.9339580 + }, + "nodes": [ + 42872034, + 8315005353, + 7791670121, + 3569401974, + 42815802 + ], + "geometry": [ + { "lat": 40.7553910, "lon": -73.9350400 }, + { "lat": 40.7554640, "lon": -73.9349730 }, + { "lat": 40.7564722, "lon": -73.9340486 }, + { "lat": 40.7565125, "lon": -73.9340116 }, + { "lat": 40.7565710, "lon": -73.9339580 } + ], + "tags": { + "highway": "residential", + "name": "27th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "27th", + "tiger:name_type": "St", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 275284412, + "bounds": { + "minlat": 40.7543410, + "minlon": -73.9360090, + "maxlat": 40.7553910, + "maxlon": -73.9350400 + }, + "nodes": [ + 42872030, + 10744391844, + 8699111840, + 8314985372, + 42872034 + ], + "geometry": [ + { "lat": 40.7543410, "lon": -73.9360090 }, + { "lat": 40.7543921, "lon": -73.9359618 }, + { "lat": 40.7552858, "lon": -73.9351372 }, + { "lat": 40.7553280, "lon": -73.9350982 }, + { "lat": 40.7553910, "lon": -73.9350400 } + ], + "tags": { + "highway": "residential", + "name": "27th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "27th", + "tiger:name_type": "St", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 275284413, + "bounds": { + "minlat": 40.7530790, + "minlon": -73.9371700, + "maxlat": 40.7543410, + "maxlon": -73.9360090 + }, + "nodes": [ + 42872027, + 10744391815, + 8084752884, + 8316237190, + 10744391841, + 42872030 + ], + "geometry": [ + { "lat": 40.7530790, "lon": -73.9371700 }, + { "lat": 40.7531346, "lon": -73.9371189 }, + { "lat": 40.7535871, "lon": -73.9367026 }, + { "lat": 40.7542521, "lon": -73.9360908 }, + { "lat": 40.7542936, "lon": -73.9360526 }, + { "lat": 40.7543410, "lon": -73.9360090 } + ], + "tags": { + "highway": "residential", + "name": "27th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "27th", + "tiger:name_type": "St", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 275298521, + "bounds": { + "minlat": 40.8041443, + "minlon": -73.9348832, + "maxlat": 40.8050065, + "maxlon": -73.9328383 + }, + "nodes": [ + 42450089, + 9903045887, + 5482291261, + 13703382975, + 7929465218 + ], + "geometry": [ + { "lat": 40.8050065, "lon": -73.9348832 }, + { "lat": 40.8049470, "lon": -73.9347421 }, + { "lat": 40.8047593, "lon": -73.9342956 }, + { "lat": 40.8046049, "lon": -73.9339298 }, + { "lat": 40.8041443, "lon": -73.9328383 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 127th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275298523, + "bounds": { + "minlat": 40.8034625, + "minlon": -73.9323444, + "maxlat": 40.8039382, + "maxlon": -73.9312143 + }, + "nodes": [ + 42426135, + 9153698196, + 42425747 + ], + "geometry": [ + { "lat": 40.8039382, "lon": -73.9323444 }, + { "lat": 40.8034994, "lon": -73.9313055 }, + { "lat": 40.8034625, "lon": -73.9312143 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 127th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 275298526, + "bounds": { + "minlat": 40.8076564, + "minlon": -73.9387971, + "maxlat": 40.8082841, + "maxlon": -73.9373154 + }, + "nodes": [ + 589928039, + 10169411221, + 10171956593, + 2799368116 + ], + "geometry": [ + { "lat": 40.8076564, "lon": -73.9373154 }, + { "lat": 40.8076871, "lon": -73.9373878 }, + { "lat": 40.8082430, "lon": -73.9387000 }, + { "lat": 40.8082841, "lon": -73.9387971 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 129th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275298528, + "bounds": { + "minlat": 40.8082841, + "minlon": -73.9403996, + "maxlat": 40.8089618, + "maxlon": -73.9387971 + }, + "nodes": [ + 2799368116, + 10171956596, + 10171956602, + 42438984 + ], + "geometry": [ + { "lat": 40.8082841, "lon": -73.9387971 }, + { "lat": 40.8083253, "lon": -73.9388941 }, + { "lat": 40.8089285, "lon": -73.9403208 }, + { "lat": 40.8089618, "lon": -73.9403996 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 129th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275298530, + "bounds": { + "minlat": 40.8075512, + "minlon": -73.9373154, + "maxlat": 40.8076564, + "maxlon": -73.9370575 + }, + "nodes": [ + 589928033, + 589928039 + ], + "geometry": [ + { "lat": 40.8075512, "lon": -73.9370575 }, + { "lat": 40.8076564, "lon": -73.9373154 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 129th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275298533, + "bounds": { + "minlat": 40.7981256, + "minlon": -73.9514840, + "maxlat": 40.7994476, + "maxlon": -73.9483211 + }, + "nodes": [ + 42437204, + 7803473008, + 7732243545, + 6223478818, + 5481882805, + 7802964948, + 42437201 + ], + "geometry": [ + { "lat": 40.7994476, "lon": -73.9514840 }, + { "lat": 40.7994083, "lon": -73.9513849 }, + { "lat": 40.7992467, "lon": -73.9509762 }, + { "lat": 40.7987788, "lon": -73.9498363 }, + { "lat": 40.7987536, "lon": -73.9497731 }, + { "lat": 40.7981843, "lon": -73.9484449 }, + { "lat": 40.7981256, "lon": -73.9483211 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "West 112th Street", + "name:ru": "Западная 112-я стрит", + "name_1": "West 112 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275298535, + "bounds": { + "minlat": 40.8006953, + "minlon": -73.9586898, + "maxlat": 40.8024730, + "maxlon": -73.9544809 + }, + "nodes": [ + 42437218, + 11296200789, + 11296200778, + 42435746, + 11296200775, + 5157044791, + 10171043064, + 42437211 + ], + "geometry": [ + { "lat": 40.8024730, "lon": -73.9586898 }, + { "lat": 40.8024356, "lon": -73.9586017 }, + { "lat": 40.8019140, "lon": -73.9573723 }, + { "lat": 40.8018566, "lon": -73.9572369 }, + { "lat": 40.8018129, "lon": -73.9571329 }, + { "lat": 40.8012874, "lon": -73.9558823 }, + { "lat": 40.8007428, "lon": -73.9545948 }, + { "lat": 40.8006953, "lon": -73.9544809 } + ], + "tags": { + "highway": "residential", + "name": "West 112th Street", + "name:ru": "Западная 112-я стрит", + "name_1": "West 112 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 275298538, + "bounds": { + "minlat": 40.7998583, + "minlon": -73.9543146, + "maxlat": 40.8006259, + "maxlon": -73.9524733 + }, + "nodes": [ + 2141026525, + 9150629531, + 7803460149, + 42433163 + ], + "geometry": [ + { "lat": 40.8006259, "lon": -73.9543146 }, + { "lat": 40.8005818, "lon": -73.9542087 }, + { "lat": 40.7999107, "lon": -73.9525966 }, + { "lat": 40.7998583, "lon": -73.9524733 } + ], + "tags": { + "highway": "residential", + "name": "West 112th Street", + "name:ru": "Западная 112-я стрит", + "name_1": "West 112 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 275298540, + "bounds": { + "minlat": 40.8006259, + "minlon": -73.9544809, + "maxlat": 40.8006953, + "maxlon": -73.9543146 + }, + "nodes": [ + 42437211, + 2141026525 + ], + "geometry": [ + { "lat": 40.8006953, "lon": -73.9544809 }, + { "lat": 40.8006259, "lon": -73.9543146 } + ], + "tags": { + "highway": "residential", + "name": "West 112th Street", + "name:ru": "Западная 112-я стрит", + "name_1": "West 112 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 275298541, + "bounds": { + "minlat": 40.7994476, + "minlon": -73.9524733, + "maxlat": 40.7998583, + "maxlon": -73.9514840 + }, + "nodes": [ + 42433163, + 7803460151, + 7802964955, + 3099327974, + 42437204 + ], + "geometry": [ + { "lat": 40.7998583, "lon": -73.9524733 }, + { "lat": 40.7997986, "lon": -73.9523272 }, + { "lat": 40.7995427, "lon": -73.9517124 }, + { "lat": 40.7995043, "lon": -73.9516201 }, + { "lat": 40.7994476, "lon": -73.9514840 } + ], + "tags": { + "highway": "residential", + "name": "West 112th Street", + "name:ru": "Западная 112-я стрит", + "name_1": "West 112 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275298542, + "bounds": { + "minlat": 40.8115460, + "minlon": -73.9493010, + "maxlat": 40.8127270, + "maxlon": -73.9465492 + }, + "nodes": [ + 42439873, + 9150563668, + 5481907297, + 5481907295, + 10713687271, + 1905863520 + ], + "geometry": [ + { "lat": 40.8115460, "lon": -73.9465492 }, + { "lat": 40.8115920, "lon": -73.9466581 }, + { "lat": 40.8119521, "lon": -73.9475028 }, + { "lat": 40.8124060, "lon": -73.9485562 }, + { "lat": 40.8126752, "lon": -73.9491808 }, + { "lat": 40.8127270, "lon": -73.9493010 } + ], + "tags": { + "highway": "residential", + "name": "West 129th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 275298543, + "bounds": { + "minlat": 40.8114810, + "minlon": -73.9465492, + "maxlat": 40.8115460, + "maxlon": -73.9463951 + }, + "nodes": [ + 2141026508, + 42439873 + ], + "geometry": [ + { "lat": 40.8114810, "lon": -73.9463951 }, + { "lat": 40.8115460, "lon": -73.9465492 } + ], + "tags": { + "highway": "residential", + "name": "West 129th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 275298544, + "bounds": { + "minlat": 40.8103559, + "minlon": -73.9463951, + "maxlat": 40.8114810, + "maxlon": -73.9437153 + }, + "nodes": [ + 3099326127, + 11947052602, + 8758345328, + 2141026508 + ], + "geometry": [ + { "lat": 40.8103559, "lon": -73.9437153 }, + { "lat": 40.8103920, "lon": -73.9438012 }, + { "lat": 40.8114338, "lon": -73.9462832 }, + { "lat": 40.8114810, "lon": -73.9463951 } + ], + "tags": { + "highway": "residential", + "name": "West 129th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 275298545, + "bounds": { + "minlat": 40.8108543, + "minlon": -73.9421726, + "maxlat": 40.8121691, + "maxlon": -73.9390289 + }, + "nodes": [ + 42429532, + 10168169659, + 7448919053, + 7448919081, + 7448919082, + 5481922099, + 5481922083, + 10168169641, + 42429530 + ], + "geometry": [ + { "lat": 40.8121691, "lon": -73.9421726 }, + { "lat": 40.8121344, "lon": -73.9420897 }, + { "lat": 40.8117817, "lon": -73.9412463 }, + { "lat": 40.8117108, "lon": -73.9410768 }, + { "lat": 40.8115026, "lon": -73.9405791 }, + { "lat": 40.8113144, "lon": -73.9401291 }, + { "lat": 40.8111038, "lon": -73.9396255 }, + { "lat": 40.8109074, "lon": -73.9391564 }, + { "lat": 40.8108543, "lon": -73.9390289 } + ], + "tags": { + "highway": "residential", + "name": "West 132nd Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 275298546, + "bounds": { + "minlat": 40.8121691, + "minlon": -73.9450192, + "maxlat": 40.8133573, + "maxlon": -73.9421726 + }, + "nodes": [ + 2141026534, + 8758345326, + 10168169663, + 3099326124, + 42429532 + ], + "geometry": [ + { "lat": 40.8133573, "lon": -73.9450192 }, + { "lat": 40.8133069, "lon": -73.9449030 }, + { "lat": 40.8122772, "lon": -73.9424320 }, + { "lat": 40.8122349, "lon": -73.9423303 }, + { "lat": 40.8121691, "lon": -73.9421726 } + ], + "tags": { + "highway": "residential", + "name": "West 132nd Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 275298547, + "bounds": { + "minlat": 40.8152070, + "minlon": -73.9486770, + "maxlat": 40.8156920, + "maxlon": -73.9474890 + }, + "nodes": [ + 42434113, + 10171603030, + 10171603048, + 42432949 + ], + "geometry": [ + { "lat": 40.8152070, "lon": -73.9474890 }, + { "lat": 40.8152644, "lon": -73.9476293 }, + { "lat": 40.8156492, "lon": -73.9485721 }, + { "lat": 40.8156920, "lon": -73.9486770 } + ], + "tags": { + "highway": "residential", + "name": "West 133rd Street", + "oneway": "yes", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 275298548, + "bounds": { + "minlat": 40.8140459, + "minlon": -73.9474890, + "maxlat": 40.8152070, + "maxlon": -73.9447305 + }, + "nodes": [ + 42434111, + 9150629543, + 11271520105, + 10171603027, + 42434113 + ], + "geometry": [ + { "lat": 40.8140459, "lon": -73.9447305 }, + { "lat": 40.8140930, "lon": -73.9448404 }, + { "lat": 40.8149881, "lon": -73.9469705 }, + { "lat": 40.8151587, "lon": -73.9473765 }, + { "lat": 40.8152070, "lon": -73.9474890 } + ], + "tags": { + "highway": "residential", + "name": "West 133rd Street", + "oneway": "yes", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 275298549, + "bounds": { + "minlat": 40.8139768, + "minlon": -73.9447305, + "maxlat": 40.8140459, + "maxlon": -73.9445691 + }, + "nodes": [ + 2141026515, + 42434111 + ], + "geometry": [ + { "lat": 40.8139768, "lon": -73.9445691 }, + { "lat": 40.8140459, "lon": -73.9447305 } + ], + "tags": { + "highway": "residential", + "name": "West 133rd Street", + "oneway": "yes", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 275298552, + "bounds": { + "minlat": 40.7793715, + "minlon": -73.9802100, + "maxlat": 40.7805610, + "maxlon": -73.9773846 + }, + "nodes": [ + 42443344, + 9677631659, + 9891508838, + 42442451 + ], + "geometry": [ + { "lat": 40.7793715, "lon": -73.9773846 }, + { "lat": 40.7794180, "lon": -73.9774928 }, + { "lat": 40.7805101, "lon": -73.9800883 }, + { "lat": 40.7805610, "lon": -73.9802100 } + ], + "tags": { + "highway": "residential", + "name": "West 75th Street", + "name:ru": "Западная 75-я стрит", + "name_1": "West 75 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275298553, + "bounds": { + "minlat": 40.8040729, + "minlon": -73.9326682, + "maxlat": 40.8045404, + "maxlon": -73.9323176 + }, + "nodes": [ + 42443119, + 5482291262, + 9903045889, + 42443118 + ], + "geometry": [ + { "lat": 40.8045404, "lon": -73.9323176 }, + { "lat": 40.8044078, "lon": -73.9324189 }, + { "lat": 40.8041274, "lon": -73.9326277 }, + { "lat": 40.8040729, "lon": -73.9326682 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 275300278, + "bounds": { + "minlat": 40.7368372, + "minlon": -73.9526416, + "maxlat": 40.7370457, + "maxlon": -73.9512301 + }, + "nodes": [ + 42509176, + 8097025079, + 9996409564, + 9922459786, + 8097082897, + 9996409563, + 9996409562, + 9996409561, + 9996409560, + 42469148 + ], + "geometry": [ + { "lat": 40.7368372, "lon": -73.9526416 }, + { "lat": 40.7368451, "lon": -73.9525517 }, + { "lat": 40.7369600, "lon": -73.9513945 }, + { "lat": 40.7369633, "lon": -73.9513688 }, + { "lat": 40.7369675, "lon": -73.9513432 }, + { "lat": 40.7369760, "lon": -73.9513171 }, + { "lat": 40.7369859, "lon": -73.9512964 }, + { "lat": 40.7370009, "lon": -73.9512770 }, + { "lat": 40.7370171, "lon": -73.9512582 }, + { "lat": 40.7370457, "lon": -73.9512301 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Clay Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275300279, + "bounds": { + "minlat": 40.7367955, + "minlon": -73.9530852, + "maxlat": 40.7368372, + "maxlon": -73.9526416 + }, + "nodes": [ + 42509165, + 42509176 + ], + "geometry": [ + { "lat": 40.7367955, "lon": -73.9530852 }, + { "lat": 40.7368372, "lon": -73.9526416 } + ], + "tags": { + "highway": "residential", + "name": "Clay Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Clay", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 275300280, + "bounds": { + "minlat": 40.7365857, + "minlon": -73.9553081, + "maxlat": 40.7367955, + "maxlon": -73.9530852 + }, + "nodes": [ + 42509161, + 8097025083, + 9920934956, + 8097082839, + 42509165 + ], + "geometry": [ + { "lat": 40.7365857, "lon": -73.9553081 }, + { "lat": 40.7365957, "lon": -73.9551924 }, + { "lat": 40.7367845, "lon": -73.9531941 }, + { "lat": 40.7367862, "lon": -73.9531773 }, + { "lat": 40.7367955, "lon": -73.9530852 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Clay Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Clay", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 275301506, + "bounds": { + "minlat": 40.7036670, + "minlon": -73.9268910, + "maxlat": 40.7052513, + "maxlon": -73.9253384 + }, + "nodes": [ + 42530350, + 9743987267, + 9747567478, + 9744131190, + 42511908 + ], + "geometry": [ + { "lat": 40.7036670, "lon": -73.9268910 }, + { "lat": 40.7037278, "lon": -73.9268313 }, + { "lat": 40.7051526, "lon": -73.9254352 }, + { "lat": 40.7051945, "lon": -73.9253941 }, + { "lat": 40.7052513, "lon": -73.9253384 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Jefferson Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275301507, + "bounds": { + "minlat": 40.7052513, + "minlon": -73.9253384, + "maxlat": 40.7070290, + "maxlon": -73.9235910 + }, + "nodes": [ + 42511908, + 9744131180, + 9744131222, + 42512091 + ], + "geometry": [ + { "lat": 40.7052513, "lon": -73.9253384 }, + { "lat": 40.7053082, "lon": -73.9252825 }, + { "lat": 40.7069726, "lon": -73.9236464 }, + { "lat": 40.7070290, "lon": -73.9235910 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Jefferson Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275301508, + "bounds": { + "minlat": 40.7080601, + "minlon": -73.9225379, + "maxlat": 40.7084840, + "maxlon": -73.9221040 + }, + "nodes": [ + 42530355, + 9744131262, + 9744131283, + 9744131261, + 42474002 + ], + "geometry": [ + { "lat": 40.7080601, "lon": -73.9225379 }, + { "lat": 40.7081205, "lon": -73.9224761 }, + { "lat": 40.7083668, "lon": -73.9222239 }, + { "lat": 40.7084178, "lon": -73.9221718 }, + { "lat": 40.7084840, "lon": -73.9221040 } + ], + "tags": { + "highway": "residential", + "name": "Jefferson Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275301509, + "bounds": { + "minlat": 40.7007180, + "minlon": -73.9297870, + "maxlat": 40.7021920, + "maxlon": -73.9283390 + }, + "nodes": [ + 42486715, + 9705748025, + 4702458480, + 12883509070, + 4702537284, + 42496649 + ], + "geometry": [ + { "lat": 40.7007180, "lon": -73.9297870 }, + { "lat": 40.7007757, "lon": -73.9297303 }, + { "lat": 40.7016969, "lon": -73.9288253 }, + { "lat": 40.7020942, "lon": -73.9284353 }, + { "lat": 40.7021366, "lon": -73.9283937 }, + { "lat": 40.7021920, "lon": -73.9283390 } + ], + "tags": { + "highway": "residential", + "name": "Jefferson Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Jefferson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 275301510, + "bounds": { + "minlat": 40.7070290, + "minlon": -73.9235910, + "maxlat": 40.7080601, + "maxlon": -73.9225379 + }, + "nodes": [ + 42512091, + 9744131223, + 9744131221, + 42530355 + ], + "geometry": [ + { "lat": 40.7070290, "lon": -73.9235910 }, + { "lat": 40.7070874, "lon": -73.9235314 }, + { "lat": 40.7080011, "lon": -73.9225979 }, + { "lat": 40.7080601, "lon": -73.9225379 } + ], + "tags": { + "highway": "residential", + "name": "Jefferson Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275301511, + "bounds": { + "minlat": 40.7084840, + "minlon": -73.9221040, + "maxlat": 40.7091310, + "maxlon": -73.9214401 + }, + "nodes": [ + 42474002, + 9744131285, + 9747567485, + 9744131286, + 597700282 + ], + "geometry": [ + { "lat": 40.7084840, "lon": -73.9221040 }, + { "lat": 40.7085450, "lon": -73.9220415 }, + { "lat": 40.7090333, "lon": -73.9215404 }, + { "lat": 40.7090702, "lon": -73.9215025 }, + { "lat": 40.7091310, "lon": -73.9214401 } + ], + "tags": { + "highway": "residential", + "name": "Jefferson Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275301512, + "bounds": { + "minlat": 40.7021920, + "minlon": -73.9283390, + "maxlat": 40.7036670, + "maxlon": -73.9268910 + }, + "nodes": [ + 42496649, + 4702537282, + 9747567471, + 9743987266, + 42530350 + ], + "geometry": [ + { "lat": 40.7021920, "lon": -73.9283390 }, + { "lat": 40.7022545, "lon": -73.9282768 }, + { "lat": 40.7035673, "lon": -73.9269888 }, + { "lat": 40.7036085, "lon": -73.9269481 }, + { "lat": 40.7036670, "lon": -73.9268910 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Jefferson Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Jefferson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 275304603, + "bounds": { + "minlat": 40.7325667, + "minlon": -73.9596984, + "maxlat": 40.7327225, + "maxlon": -73.9580639 + }, + "nodes": [ + 42500685, + 7008335419, + 5483600246, + 5483600244, + 42500683 + ], + "geometry": [ + { "lat": 40.7327225, "lon": -73.9580639 }, + { "lat": 40.7327140, "lon": -73.9581603 }, + { "lat": 40.7325804, "lon": -73.9595642 }, + { "lat": 40.7325754, "lon": -73.9596176 }, + { "lat": 40.7325667, "lon": -73.9596984 } + ], + "tags": { + "highway": "residential", + "name": "Huron Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Huron", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 275304605, + "bounds": { + "minlat": 40.7330344, + "minlon": -73.9547276, + "maxlat": 40.7335160, + "maxlon": -73.9496921 + }, + "nodes": [ + 42499736, + 8097159327, + 5481915284, + 5481915252, + 8097082888, + 2987758870, + 2987758869, + 8097082827, + 8097159422, + 8097159335, + 42500689 + ], + "geometry": [ + { "lat": 40.7335160, "lon": -73.9496921 }, + { "lat": 40.7335072, "lon": -73.9497847 }, + { "lat": 40.7333977, "lon": -73.9509406 }, + { "lat": 40.7333124, "lon": -73.9518075 }, + { "lat": 40.7332977, "lon": -73.9519651 }, + { "lat": 40.7332869, "lon": -73.9520628 }, + { "lat": 40.7332738, "lon": -73.9522072 }, + { "lat": 40.7332651, "lon": -73.9522984 }, + { "lat": 40.7330496, "lon": -73.9545636 }, + { "lat": 40.7330444, "lon": -73.9546107 }, + { "lat": 40.7330344, "lon": -73.9547276 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Huron Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275304607, + "bounds": { + "minlat": 40.7327225, + "minlon": -73.9580639, + "maxlat": 40.7330344, + "maxlon": -73.9547276 + }, + "nodes": [ + 42500689, + 7008335417, + 7008335418, + 42500685 + ], + "geometry": [ + { "lat": 40.7330344, "lon": -73.9547276 }, + { "lat": 40.7330239, "lon": -73.9548501 }, + { "lat": 40.7327307, "lon": -73.9579648 }, + { "lat": 40.7327225, "lon": -73.9580639 } + ], + "tags": { + "highway": "residential", + "name": "Huron Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Huron", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 275304608, + "bounds": { + "minlat": 40.7026200, + "minlon": -73.9290910, + "maxlat": 40.7040920, + "maxlon": -73.9276440 + }, + "nodes": [ + 42525548, + 9743987275, + 8589606340, + 9743987276, + 42496644 + ], + "geometry": [ + { "lat": 40.7040920, "lon": -73.9276440 }, + { "lat": 40.7040375, "lon": -73.9276976 }, + { "lat": 40.7027204, "lon": -73.9289923 }, + { "lat": 40.7026766, "lon": -73.9290354 }, + { "lat": 40.7026200, "lon": -73.9290910 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Melrose Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Melrose", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 275304609, + "bounds": { + "minlat": 40.7040920, + "minlon": -73.9276440, + "maxlat": 40.7056676, + "maxlon": -73.9261231 + }, + "nodes": [ + 42525548, + 9743987260, + 13701136762, + 9744012781, + 7711304345 + ], + "geometry": [ + { "lat": 40.7040920, "lon": -73.9276440 }, + { "lat": 40.7041582, "lon": -73.9275797 }, + { "lat": 40.7044609, "lon": -73.9272876 }, + { "lat": 40.7055934, "lon": -73.9261948 }, + { "lat": 40.7056676, "lon": -73.9261231 } + ], + "tags": { + "highway": "residential", + "name": "Melrose Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275305127, + "bounds": { + "minlat": 40.7602812, + "minlon": -73.9522562, + "maxlat": 40.7603685, + "maxlon": -73.9517388 + }, + "nodes": [ + 42450109, + 3552444438, + 9189040194, + 3785703001, + 5487049922, + 42448828 + ], + "geometry": [ + { "lat": 40.7602812, "lon": -73.9522562 }, + { "lat": 40.7602972, "lon": -73.9522113 }, + { "lat": 40.7603096, "lon": -73.9521573 }, + { "lat": 40.7603513, "lon": -73.9518413 }, + { "lat": 40.7603583, "lon": -73.9517928 }, + { "lat": 40.7603685, "lon": -73.9517388 } + ], + "tags": { + "highway": "residential", + "maxspeed": "15 mph", + "name": "West Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 275307807, + "bounds": { + "minlat": 40.7429376, + "minlon": -73.9516295, + "maxlat": 40.7430155, + "maxlon": -73.9515227 + }, + "nodes": [ + 11211160094, + 2799469689, + 2799472303, + 11211159637, + 2799472302, + 11211159638, + 2799472301, + 11211139836, + 2799469690, + 11211160093, + 11211160094 + ], + "geometry": [ + { "lat": 40.7429376, "lon": -73.9516020 }, + { "lat": 40.7429525, "lon": -73.9516180 }, + { "lat": 40.7429658, "lon": -73.9516295 }, + { "lat": 40.7429729, "lon": -73.9516292 }, + { "lat": 40.7429779, "lon": -73.9516197 }, + { "lat": 40.7430102, "lon": -73.9515531 }, + { "lat": 40.7430155, "lon": -73.9515421 }, + { "lat": 40.7430147, "lon": -73.9515357 }, + { "lat": 40.7430083, "lon": -73.9515302 }, + { "lat": 40.7429775, "lon": -73.9515227 }, + { "lat": 40.7429376, "lon": -73.9516020 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 275307808, + "bounds": { + "minlat": 40.7429797, + "minlon": -73.9513956, + "maxlat": 40.7431241, + "maxlon": -73.9513419 + }, + "nodes": [ + 2799469697, + 9690694966, + 11211139831, + 2799469698, + 2799472322, + 2799472304, + 2799469699, + 11211139830, + 2799469700, + 2799469697 + ], + "geometry": [ + { "lat": 40.7429797, "lon": -73.9513826 }, + { "lat": 40.7430449, "lon": -73.9513637 }, + { "lat": 40.7430974, "lon": -73.9513484 }, + { "lat": 40.7431199, "lon": -73.9513419 }, + { "lat": 40.7431238, "lon": -73.9513446 }, + { "lat": 40.7431241, "lon": -73.9513503 }, + { "lat": 40.7431059, "lon": -73.9513808 }, + { "lat": 40.7430786, "lon": -73.9513868 }, + { "lat": 40.7430386, "lon": -73.9513956 }, + { "lat": 40.7429797, "lon": -73.9513826 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 275307810, + "bounds": { + "minlat": 40.7429165, + "minlon": -73.9512874, + "maxlat": 40.7432140, + "maxlon": -73.9511551 + }, + "nodes": [ + 2799472305, + 2799472306, + 2799472307, + 2799472316, + 2799472314, + 2799472315, + 2799472308, + 2799472309, + 2799472310, + 2799472320, + 2799472319, + 2799472321, + 2799472311, + 2799472312, + 2799472318, + 2799472317, + 2799472313, + 2799472305 + ], + "geometry": [ + { "lat": 40.7431276, "lon": -73.9512060 }, + { "lat": 40.7430708, "lon": -73.9512569 }, + { "lat": 40.7429286, "lon": -73.9512874 }, + { "lat": 40.7429224, "lon": -73.9512874 }, + { "lat": 40.7429165, "lon": -73.9512821 }, + { "lat": 40.7429165, "lon": -73.9512744 }, + { "lat": 40.7429201, "lon": -73.9512661 }, + { "lat": 40.7429650, "lon": -73.9512310 }, + { "lat": 40.7431963, "lon": -73.9511560 }, + { "lat": 40.7432084, "lon": -73.9511551 }, + { "lat": 40.7432125, "lon": -73.9511592 }, + { "lat": 40.7432140, "lon": -73.9511658 }, + { "lat": 40.7432117, "lon": -73.9511718 }, + { "lat": 40.7431857, "lon": -73.9512217 }, + { "lat": 40.7431812, "lon": -73.9512264 }, + { "lat": 40.7431748, "lon": -73.9512281 }, + { "lat": 40.7431619, "lon": -73.9512245 }, + { "lat": 40.7431276, "lon": -73.9512060 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 275379682, + "bounds": { + "minlat": 40.7051770, + "minlon": -73.9360020, + "maxlat": 40.7053187, + "maxlon": -73.9352516 + }, + "nodes": [ + 42479990, + 7034559380, + 42521993 + ], + "geometry": [ + { "lat": 40.7051770, "lon": -73.9360020 }, + { "lat": 40.7053021, "lon": -73.9353356 }, + { "lat": 40.7053187, "lon": -73.9352516 } + ], + "tags": { + "highway": "residential", + "name": "Seigel Street", + "name:etymology:wikidata": "Q63190", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 275379683, + "bounds": { + "minlat": 40.7048220, + "minlon": -73.9378490, + "maxlat": 40.7051770, + "maxlon": -73.9360020 + }, + "nodes": [ + 42504272, + 10923311498, + 7712601178, + 42479990 + ], + "geometry": [ + { "lat": 40.7048220, "lon": -73.9378490 }, + { "lat": 40.7050179, "lon": -73.9368559 }, + { "lat": 40.7050766, "lon": -73.9365582 }, + { "lat": 40.7051770, "lon": -73.9360020 } + ], + "tags": { + "highway": "residential", + "name": "Seigel Street", + "name:etymology:wikidata": "Q63190", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 275379684, + "bounds": { + "minlat": 40.7053187, + "minlon": -73.9352516, + "maxlat": 40.7056690, + "maxlon": -73.9334000 + }, + "nodes": [ + 42521993, + 7034559372, + 10977791977, + 7274450677, + 8228286023, + 9744012806, + 42518781 + ], + "geometry": [ + { "lat": 40.7053187, "lon": -73.9352516 }, + { "lat": 40.7053342, "lon": -73.9351699 }, + { "lat": 40.7054430, "lon": -73.9345945 }, + { "lat": 40.7054587, "lon": -73.9345116 }, + { "lat": 40.7056429, "lon": -73.9335391 }, + { "lat": 40.7056529, "lon": -73.9334858 }, + { "lat": 40.7056690, "lon": -73.9334000 } + ], + "tags": { + "highway": "residential", + "name": "Seigel Street", + "name:etymology:wikidata": "Q63190", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 275389118, + "bounds": { + "minlat": 40.7255614, + "minlon": -73.9574871, + "maxlat": 40.7271105, + "maxlon": -73.9526928 + }, + "nodes": [ + 42516607, + 11919168010, + 9927158561, + 42516604, + 9789402877, + 9789402841, + 42494582, + 9927158558, + 9927158553, + 42499059, + 9927158552, + 9789402756, + 42488134, + 9789402754, + 42512889, + 5801598836, + 9998478152, + 9998478153, + 9789402648, + 9998478154, + 42516599 + ], + "geometry": [ + { "lat": 40.7271105, "lon": -73.9526928 }, + { "lat": 40.7270809, "lon": -73.9527801 }, + { "lat": 40.7268465, "lon": -73.9534727 }, + { "lat": 40.7268212, "lon": -73.9535492 }, + { "lat": 40.7267956, "lon": -73.9536266 }, + { "lat": 40.7265622, "lon": -73.9543325 }, + { "lat": 40.7265416, "lon": -73.9543948 }, + { "lat": 40.7265188, "lon": -73.9544637 }, + { "lat": 40.7262897, "lon": -73.9551568 }, + { "lat": 40.7262682, "lon": -73.9552217 }, + { "lat": 40.7262461, "lon": -73.9552887 }, + { "lat": 40.7260115, "lon": -73.9559982 }, + { "lat": 40.7259882, "lon": -73.9560686 }, + { "lat": 40.7259532, "lon": -73.9561744 }, + { "lat": 40.7257048, "lon": -73.9569257 }, + { "lat": 40.7255725, "lon": -73.9573258 }, + { "lat": 40.7255682, "lon": -73.9573469 }, + { "lat": 40.7255633, "lon": -73.9573708 }, + { "lat": 40.7255614, "lon": -73.9573919 }, + { "lat": 40.7255632, "lon": -73.9574204 }, + { "lat": 40.7255696, "lon": -73.9574871 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Meserole Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meserole", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 275389122, + "bounds": { + "minlat": 40.7282130, + "minlon": -73.9493210, + "maxlat": 40.7284850, + "maxlon": -73.9484950 + }, + "nodes": [ + 42478907, + 9927158573, + 9927158566, + 42512083 + ], + "geometry": [ + { "lat": 40.7284850, "lon": -73.9484950 }, + { "lat": 40.7284605, "lon": -73.9485695 }, + { "lat": 40.7282347, "lon": -73.9492552 }, + { "lat": 40.7282130, "lon": -73.9493210 } + ], + "tags": { + "highway": "residential", + "name": "Meserole Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meserole", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 275389126, + "bounds": { + "minlat": 40.7287580, + "minlon": -73.9476660, + "maxlat": 40.7290310, + "maxlon": -73.9468400 + }, + "nodes": [ + 42516618, + 9788947132, + 5482002822, + 9927158578, + 42498667 + ], + "geometry": [ + { "lat": 40.7290310, "lon": -73.9468400 }, + { "lat": 40.7290110, "lon": -73.9469004 }, + { "lat": 40.7289050, "lon": -73.9472211 }, + { "lat": 40.7287800, "lon": -73.9475995 }, + { "lat": 40.7287580, "lon": -73.9476660 } + ], + "tags": { + "highway": "residential", + "name": "Meserole Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meserole", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 275389130, + "bounds": { + "minlat": 40.7292575, + "minlon": -73.9460412, + "maxlat": 40.7293490, + "maxlon": -73.9451160 + }, + "nodes": [ + 42472696, + 9788947296, + 9788947309, + 42502935 + ], + "geometry": [ + { "lat": 40.7293490, "lon": -73.9451160 }, + { "lat": 40.7293405, "lon": -73.9452023 }, + { "lat": 40.7292655, "lon": -73.9459607 }, + { "lat": 40.7292575, "lon": -73.9460412 } + ], + "tags": { + "highway": "residential", + "name": "Meserole Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meserole", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 275389134, + "bounds": { + "minlat": 40.7284850, + "minlon": -73.9484950, + "maxlat": 40.7287580, + "maxlon": -73.9476660 + }, + "nodes": [ + 42498667, + 9927158579, + 9927158572, + 42478907 + ], + "geometry": [ + { "lat": 40.7287580, "lon": -73.9476660 }, + { "lat": 40.7287372, "lon": -73.9477289 }, + { "lat": 40.7285071, "lon": -73.9484278 }, + { "lat": 40.7284850, "lon": -73.9484950 } + ], + "tags": { + "highway": "residential", + "name": "Meserole Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meserole", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 275389160, + "bounds": { + "minlat": 40.7271105, + "minlon": -73.9526928, + "maxlat": 40.7273920, + "maxlon": -73.9518273 + }, + "nodes": [ + 42491228, + 11919168000, + 11919168008, + 42516607 + ], + "geometry": [ + { "lat": 40.7273920, "lon": -73.9518273 }, + { "lat": 40.7273662, "lon": -73.9519023 }, + { "lat": 40.7271383, "lon": -73.9526068 }, + { "lat": 40.7271105, "lon": -73.9526928 } + ], + "tags": { + "highway": "residential", + "name": "Meserole Avenue", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 275389163, + "bounds": { + "minlat": 40.7279887, + "minlon": -73.9499997, + "maxlat": 40.7282130, + "maxlon": -73.9493210 + }, + "nodes": [ + 42512083, + 9927158567, + 8097222252, + 2987758883 + ], + "geometry": [ + { "lat": 40.7282130, "lon": -73.9493210 }, + { "lat": 40.7281907, "lon": -73.9493887 }, + { "lat": 40.7280186, "lon": -73.9499102 }, + { "lat": 40.7279887, "lon": -73.9499997 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Meserole Avenue", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meserole", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 275389166, + "bounds": { + "minlat": 40.7290310, + "minlon": -73.9468400, + "maxlat": 40.7292575, + "maxlon": -73.9460412 + }, + "nodes": [ + 42502935, + 9788947311, + 8549559007, + 9788947237, + 42516618 + ], + "geometry": [ + { "lat": 40.7292575, "lon": -73.9460412 }, + { "lat": 40.7292467, "lon": -73.9461417 }, + { "lat": 40.7290667, "lon": -73.9467187 }, + { "lat": 40.7290479, "lon": -73.9467823 }, + { "lat": 40.7290310, "lon": -73.9468400 } + ], + "tags": { + "highway": "residential", + "name": "Meserole Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 275389169, + "bounds": { + "minlat": 40.7273920, + "minlon": -73.9518273, + "maxlat": 40.7276640, + "maxlon": -73.9509780 + }, + "nodes": [ + 42516610, + 9765409734, + 11919168006, + 11919167998, + 42491228 + ], + "geometry": [ + { "lat": 40.7276640, "lon": -73.9509780 }, + { "lat": 40.7276404, "lon": -73.9510491 }, + { "lat": 40.7274329, "lon": -73.9516990 }, + { "lat": 40.7274159, "lon": -73.9517523 }, + { "lat": 40.7273920, "lon": -73.9518273 } + ], + "tags": { + "highway": "residential", + "name": "Meserole Avenue", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 275390343, + "bounds": { + "minlat": 40.7243295, + "minlon": -73.9560686, + "maxlat": 40.7259882, + "maxlon": -73.9551290 + }, + "nodes": [ + 42488122, + 9927158543, + 9789402757, + 42488134 + ], + "geometry": [ + { "lat": 40.7243295, "lon": -73.9551290 }, + { "lat": 40.7244022, "lon": -73.9551702 }, + { "lat": 40.7259265, "lon": -73.9560353 }, + { "lat": 40.7259882, "lon": -73.9560686 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Banker Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Banker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 275390344, + "bounds": { + "minlat": 40.7232250, + "minlon": -73.9551290, + "maxlat": 40.7243295, + "maxlon": -73.9545120 + }, + "nodes": [ + 42488118, + 9789402625, + 42488122 + ], + "geometry": [ + { "lat": 40.7232250, "lon": -73.9545120 }, + { "lat": 40.7242594, "lon": -73.9550909 }, + { "lat": 40.7243295, "lon": -73.9551290 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Banker Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Banker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 275390345, + "bounds": { + "minlat": 40.7259882, + "minlon": -73.9569301, + "maxlat": 40.7270726, + "maxlon": -73.9560686 + }, + "nodes": [ + 42488134, + 9789402755, + 1056087636, + 9998478151, + 9998478150, + 5801598834, + 9789402738, + 42488139 + ], + "geometry": [ + { "lat": 40.7259882, "lon": -73.9560686 }, + { "lat": 40.7260511, "lon": -73.9561032 }, + { "lat": 40.7264602, "lon": -73.9563384 }, + { "lat": 40.7264875, "lon": -73.9563539 }, + { "lat": 40.7265112, "lon": -73.9563721 }, + { "lat": 40.7269701, "lon": -73.9568270 }, + { "lat": 40.7270128, "lon": -73.9568712 }, + { "lat": 40.7270726, "lon": -73.9569301 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Banker Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Banker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 275391270, + "bounds": { + "minlat": 40.7054820, + "minlon": -73.9282540, + "maxlat": 40.7057506, + "maxlon": -73.9266450 + }, + "nodes": [ + 42505684, + 9744012669, + 9355837598, + 9744012670, + 42520112 + ], + "geometry": [ + { "lat": 40.7057506, "lon": -73.9266450 }, + { "lat": 40.7057363, "lon": -73.9267314 }, + { "lat": 40.7055027, "lon": -73.9281297 }, + { "lat": 40.7054946, "lon": -73.9281785 }, + { "lat": 40.7054820, "lon": -73.9282540 } + ], + "tags": { + "highway": "residential", + "name": "Thames Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 275391271, + "bounds": { + "minlat": 40.7047010, + "minlon": -73.9331250, + "maxlat": 40.7049580, + "maxlon": -73.9315070 + }, + "nodes": [ + 42490303, + 9744012758, + 7625582421, + 9747567482, + 9744012700, + 42518773 + ], + "geometry": [ + { "lat": 40.7049580, "lon": -73.9315070 }, + { "lat": 40.7049443, "lon": -73.9315931 }, + { "lat": 40.7049230, "lon": -73.9317272 }, + { "lat": 40.7047212, "lon": -73.9329978 }, + { "lat": 40.7047121, "lon": -73.9330551 }, + { "lat": 40.7047010, "lon": -73.9331250 } + ], + "tags": { + "highway": "residential", + "name": "Thames Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 275391272, + "bounds": { + "minlat": 40.7050970, + "minlon": -73.9306320, + "maxlat": 40.7052495, + "maxlon": -73.9296824 + }, + "nodes": [ + 42520109, + 9744012692, + 42520106 + ], + "geometry": [ + { "lat": 40.7052495, "lon": -73.9296824 }, + { "lat": 40.7052282, "lon": -73.9298092 }, + { "lat": 40.7050970, "lon": -73.9306320 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Thames Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Thames", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11237" + } +}, +{ + "type": "way", + "id": 275391273, + "bounds": { + "minlat": 40.7049580, + "minlon": -73.9315070, + "maxlat": 40.7050970, + "maxlon": -73.9306320 + }, + "nodes": [ + 42520106, + 9744012755, + 42490303 + ], + "geometry": [ + { "lat": 40.7050970, "lon": -73.9306320 }, + { "lat": 40.7049712, "lon": -73.9314245 }, + { "lat": 40.7049580, "lon": -73.9315070 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Thames Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Thames", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11237" + } +}, +{ + "type": "way", + "id": 275391274, + "bounds": { + "minlat": 40.7052495, + "minlon": -73.9296824, + "maxlat": 40.7054820, + "maxlon": -73.9282540 + }, + "nodes": [ + 42520112, + 9744012676, + 9744012675, + 9744012677, + 42520109 + ], + "geometry": [ + { "lat": 40.7054820, "lon": -73.9282540 }, + { "lat": 40.7054664, "lon": -73.9283499 }, + { "lat": 40.7052820, "lon": -73.9294863 }, + { "lat": 40.7052712, "lon": -73.9295533 }, + { "lat": 40.7052495, "lon": -73.9296824 } + ], + "tags": { + "highway": "residential", + "name": "Thames Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 275391275, + "bounds": { + "minlat": 40.7057506, + "minlon": -73.9268240, + "maxlat": 40.7064450, + "maxlon": -73.9266450 + }, + "nodes": [ + 42505684, + 9744131163, + 42490921 + ], + "geometry": [ + { "lat": 40.7057506, "lon": -73.9266450 }, + { "lat": 40.7058212, "lon": -73.9266631 }, + { "lat": 40.7064450, "lon": -73.9268240 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Varick", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 275407914, + "bounds": { + "minlat": 40.7051820, + "minlon": -73.9428500, + "maxlat": 40.7052440, + "maxlon": -73.9421460 + }, + "nodes": [ + 42467820, + 9752594034, + 8229296011, + 42538217 + ], + "geometry": [ + { "lat": 40.7051820, "lon": -73.9428500 }, + { "lat": 40.7051905, "lon": -73.9427527 }, + { "lat": 40.7051945, "lon": -73.9427075 }, + { "lat": 40.7052440, "lon": -73.9421460 } + ], + "tags": { + "highway": "residential", + "name": "McKibbin Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "McKibbin", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 275499399, + "bounds": { + "minlat": 40.8120326, + "minlon": -73.9285360, + "maxlat": 40.8146846, + "maxlon": -73.9265341 + }, + "nodes": [ + 42743504, + 13041150881, + 13040621009, + 42743872, + 13040621010, + 42743869, + 5482271961, + 9163775397, + 11882279834, + 42743865 + ], + "geometry": [ + { "lat": 40.8146846, "lon": -73.9265341 }, + { "lat": 40.8146461, "lon": -73.9265612 }, + { "lat": 40.8136513, "lon": -73.9272610 }, + { "lat": 40.8135925, "lon": -73.9272946 }, + { "lat": 40.8135387, "lon": -73.9273321 }, + { "lat": 40.8123570, "lon": -73.9281430 }, + { "lat": 40.8122952, "lon": -73.9282203 }, + { "lat": 40.8121589, "lon": -73.9284003 }, + { "lat": 40.8121212, "lon": -73.9284408 }, + { "lat": 40.8120326, "lon": -73.9285360 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "name": "Canal Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Canal", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 275607931, + "bounds": { + "minlat": 40.7470427, + "minlon": -73.9535280, + "maxlat": 40.7474015, + "maxlon": -73.9534077 + }, + "nodes": [ + 2802423161, + 11211160240, + 2802423162 + ], + "geometry": [ + { "lat": 40.7474015, "lon": -73.9534077 }, + { "lat": 40.7470991, "lon": -73.9535091 }, + { "lat": 40.7470427, "lon": -73.9535280 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 275632212, + "bounds": { + "minlat": 40.8265285, + "minlon": -73.9188623, + "maxlat": 40.8268221, + "maxlon": -73.9179306 + }, + "nodes": [ + 42732934, + 13033599666, + 42732938 + ], + "geometry": [ + { "lat": 40.8268221, "lon": -73.9188623 }, + { "lat": 40.8265636, "lon": -73.9180420 }, + { "lat": 40.8265285, "lon": -73.9179306 } + ], + "tags": { + "highway": "residential", + "name": "East 162nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "162nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 275632213, + "bounds": { + "minlat": 40.8257710, + "minlon": -73.9179306, + "maxlat": 40.8265285, + "maxlon": -73.9154214 + }, + "nodes": [ + 42732938, + 13033599661, + 7042952020, + 42732941, + 8613852508, + 3640190317 + ], + "geometry": [ + { "lat": 40.8265285, "lon": -73.9179306 }, + { "lat": 40.8264997, "lon": -73.9178382 }, + { "lat": 40.8263857, "lon": -73.9174727 }, + { "lat": 40.8258209, "lon": -73.9157366 }, + { "lat": 40.8257733, "lon": -73.9155574 }, + { "lat": 40.8257710, "lon": -73.9154214 } + ], + "tags": { + "highway": "residential", + "name": "East 162nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "162nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 275870936, + "bounds": { + "minlat": 40.7168093, + "minlon": -73.9380768, + "maxlat": 40.7172108, + "maxlon": -73.9365453 + }, + "nodes": [ + 2805340009, + 9695771696, + 9527358412, + 9527358413, + 9695771711, + 2805340010 + ], + "geometry": [ + { "lat": 40.7168093, "lon": -73.9380768 }, + { "lat": 40.7168458, "lon": -73.9379376 }, + { "lat": 40.7169535, "lon": -73.9375268 }, + { "lat": 40.7170668, "lon": -73.9370945 }, + { "lat": 40.7171790, "lon": -73.9366668 }, + { "lat": 40.7172108, "lon": -73.9365453 } + ], + "tags": { + "access": "permit", + "highway": "service", + "name": "Skillman Avenue", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 276043655, + "bounds": { + "minlat": 40.7265416, + "minlon": -73.9552413, + "maxlat": 40.7279980, + "maxlon": -73.9543948 + }, + "nodes": [ + 42494582, + 9789402842, + 10845913427, + 7040469881, + 9789402853, + 7725544398, + 9789402854, + 42484594 + ], + "geometry": [ + { "lat": 40.7265416, "lon": -73.9543948 }, + { "lat": 40.7266044, "lon": -73.9544313 }, + { "lat": 40.7268446, "lon": -73.9545678 }, + { "lat": 40.7274744, "lon": -73.9549257 }, + { "lat": 40.7275170, "lon": -73.9549512 }, + { "lat": 40.7275710, "lon": -73.9549835 }, + { "lat": 40.7276271, "lon": -73.9550170 }, + { "lat": 40.7279980, "lon": -73.9552413 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Guernsey Street", + "name:etymology:wikidata": "Q18910685", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Guernsey", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 276043656, + "bounds": { + "minlat": 40.7248730, + "minlon": -73.9543948, + "maxlat": 40.7265416, + "maxlon": -73.9534420 + }, + "nodes": [ + 42494578, + 9789402826, + 8549558987, + 9789402840, + 42494582 + ], + "geometry": [ + { "lat": 40.7248730, "lon": -73.9534420 }, + { "lat": 40.7249432, "lon": -73.9534821 }, + { "lat": 40.7264450, "lon": -73.9543400 }, + { "lat": 40.7264814, "lon": -73.9543606 }, + { "lat": 40.7265416, "lon": -73.9543948 } + ], + "tags": { + "highway": "residential", + "name": "Guernsey Street", + "name:etymology:wikidata": "Q18910685", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Guernsey", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 276050425, + "bounds": { + "minlat": 40.7062642, + "minlon": -73.9390451, + "maxlat": 40.7084947, + "maxlon": -73.9385324 + }, + "nodes": [ + 42476805, + 9752593977, + 8229295995, + 9752593976, + 42496367, + 9952734808, + 2997098501, + 2997098283, + 42523550, + 12983923560, + 9755371954, + 9755371955, + 42529171 + ], + "geometry": [ + { "lat": 40.7062642, "lon": -73.9390451 }, + { "lat": 40.7063322, "lon": -73.9390134 }, + { "lat": 40.7068940, "lon": -73.9387515 }, + { "lat": 40.7069467, "lon": -73.9387288 }, + { "lat": 40.7070170, "lon": -73.9386984 }, + { "lat": 40.7070849, "lon": -73.9386691 }, + { "lat": 40.7075992, "lon": -73.9385554 }, + { "lat": 40.7077211, "lon": -73.9385324 }, + { "lat": 40.7077810, "lon": -73.9385382 }, + { "lat": 40.7078509, "lon": -73.9385651 }, + { "lat": 40.7083852, "lon": -73.9388243 }, + { "lat": 40.7084308, "lon": -73.9388420 }, + { "lat": 40.7084947, "lon": -73.9388669 } + ], + "tags": { + "highway": "residential", + "name": "Bushwick Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276050427, + "bounds": { + "minlat": 40.7229758, + "minlon": -73.9465930, + "maxlat": 40.7251597, + "maxlon": -73.9453607 + }, + "nodes": [ + 42478904, + 6732947948, + 10923325013, + 9765742514, + 42478902 + ], + "geometry": [ + { "lat": 40.7251597, "lon": -73.9465930 }, + { "lat": 40.7251032, "lon": -73.9465611 }, + { "lat": 40.7230694, "lon": -73.9454168 }, + { "lat": 40.7230266, "lon": -73.9453927 }, + { "lat": 40.7229758, "lon": -73.9453607 } + ], + "tags": { + "highway": "residential", + "name": "Diamond Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 276050428, + "bounds": { + "minlat": 40.7268220, + "minlon": -73.9484950, + "maxlat": 40.7284850, + "maxlon": -73.9475440 + }, + "nodes": [ + 42478907, + 9788947144, + 9788947152, + 42478906 + ], + "geometry": [ + { "lat": 40.7284850, "lon": -73.9484950 }, + { "lat": 40.7284317, "lon": -73.9484646 }, + { "lat": 40.7268931, "lon": -73.9475844 }, + { "lat": 40.7268220, "lon": -73.9475440 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Diamond Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Diamond", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 276050429, + "bounds": { + "minlat": 40.7251597, + "minlon": -73.9475440, + "maxlat": 40.7268220, + "maxlon": -73.9465930 + }, + "nodes": [ + 42478906, + 9788947150, + 5891916890, + 6732947947, + 42478904 + ], + "geometry": [ + { "lat": 40.7268220, "lon": -73.9475440 }, + { "lat": 40.7267627, "lon": -73.9475099 }, + { "lat": 40.7252697, "lon": -73.9466568 }, + { "lat": 40.7252317, "lon": -73.9466350 }, + { "lat": 40.7251597, "lon": -73.9465930 } + ], + "tags": { + "highway": "residential", + "name": "Diamond Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 276050430, + "bounds": { + "minlat": 40.7297910, + "minlon": -73.9487891, + "maxlat": 40.7307390, + "maxlon": -73.9482550 + }, + "nodes": [ + 42496874, + 9788947245, + 5891904329, + 9788947248, + 3430220599 + ], + "geometry": [ + { "lat": 40.7297910, "lon": -73.9482550 }, + { "lat": 40.7298581, "lon": -73.9482921 }, + { "lat": 40.7306002, "lon": -73.9487219 }, + { "lat": 40.7306381, "lon": -73.9487391 }, + { "lat": 40.7307390, "lon": -73.9487891 } + ], + "tags": { + "highway": "residential", + "name": "Jewel Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 276050431, + "bounds": { + "minlat": 40.7287580, + "minlon": -73.9482550, + "maxlat": 40.7297910, + "maxlon": -73.9476660 + }, + "nodes": [ + 42498667, + 9788947189, + 9788947209, + 9788947186, + 42496874 + ], + "geometry": [ + { "lat": 40.7287580, "lon": -73.9476660 }, + { "lat": 40.7288258, "lon": -73.9477049 }, + { "lat": 40.7296977, "lon": -73.9482018 }, + { "lat": 40.7297390, "lon": -73.9482253 }, + { "lat": 40.7297910, "lon": -73.9482550 } + ], + "tags": { + "highway": "residential", + "name": "Jewel Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Jewel", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 276050432, + "bounds": { + "minlat": 40.7270940, + "minlon": -73.9476660, + "maxlat": 40.7287580, + "maxlon": -73.9467150 + }, + "nodes": [ + 42498664, + 9788947138, + 8549559001, + 9788947135, + 42498667 + ], + "geometry": [ + { "lat": 40.7270940, "lon": -73.9467150 }, + { "lat": 40.7271669, "lon": -73.9467567 }, + { "lat": 40.7286683, "lon": -73.9476147 }, + { "lat": 40.7287133, "lon": -73.9476392 }, + { "lat": 40.7287580, "lon": -73.9476660 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Jewel Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Jewel", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 276050453, + "bounds": { + "minlat": 40.7030530, + "minlon": -73.9424950, + "maxlat": 40.7032149, + "maxlon": -73.9407492 + }, + "nodes": [ + 42467811, + 9752126984, + 9646966165, + 42502943 + ], + "geometry": [ + { "lat": 40.7030530, "lon": -73.9424950 }, + { "lat": 40.7030623, "lon": -73.9423945 }, + { "lat": 40.7032060, "lon": -73.9408453 }, + { "lat": 40.7032149, "lon": -73.9407492 } + ], + "tags": { + "highway": "residential", + "name": "Varet Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Varet", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 276060582, + "bounds": { + "minlat": 40.7100914, + "minlon": -73.9372086, + "maxlat": 40.7102777, + "maxlon": -73.9351773 + }, + "nodes": [ + 42518750, + 6967834377, + 42474048 + ], + "geometry": [ + { "lat": 40.7102777, "lon": -73.9351773 }, + { "lat": 40.7102745, "lon": -73.9352668 }, + { "lat": 40.7100914, "lon": -73.9372086 } + ], + "tags": { + "highway": "residential", + "name": "Stagg Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276067487, + "bounds": { + "minlat": 40.7061090, + "minlon": -73.9544241, + "maxlat": 40.7066761, + "maxlon": -73.9537940 + }, + "nodes": [ + 42491439, + 6245642042, + 9772859298, + 42490962 + ], + "geometry": [ + { "lat": 40.7066761, "lon": -73.9544241 }, + { "lat": 40.7066293, "lon": -73.9543752 }, + { "lat": 40.7061686, "lon": -73.9538606 }, + { "lat": 40.7061090, "lon": -73.9537940 } + ], + "tags": { + "highway": "tertiary", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 276067488, + "bounds": { + "minlat": 40.7027260, + "minlon": -73.9502470, + "maxlat": 40.7029400, + "maxlon": -73.9500130 + }, + "nodes": [ + 42520559, + 9755373302, + 42527626 + ], + "geometry": [ + { "lat": 40.7029400, "lon": -73.9502470 }, + { "lat": 40.7027865, "lon": -73.9500788 }, + { "lat": 40.7027260, "lon": -73.9500130 } + ], + "tags": { + "highway": "residential", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 276067491, + "bounds": { + "minlat": 40.7044180, + "minlon": -73.9525320, + "maxlat": 40.7049830, + "maxlon": -73.9519000 + }, + "nodes": [ + 42531741, + 6245642052, + 6245642053, + 42477584 + ], + "geometry": [ + { "lat": 40.7049830, "lon": -73.9525320 }, + { "lat": 40.7049358, "lon": -73.9524796 }, + { "lat": 40.7044846, "lon": -73.9519744 }, + { "lat": 40.7044180, "lon": -73.9519000 } + ], + "tags": { + "highway": "tertiary", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276067494, + "bounds": { + "minlat": 40.7029400, + "minlon": -73.9506410, + "maxlat": 40.7032870, + "maxlon": -73.9502470 + }, + "nodes": [ + 42519635, + 6245642065, + 9755373289, + 42520559 + ], + "geometry": [ + { "lat": 40.7032870, "lon": -73.9506410 }, + { "lat": 40.7032397, "lon": -73.9505872 }, + { "lat": 40.7030353, "lon": -73.9503552 }, + { "lat": 40.7029400, "lon": -73.9502470 } + ], + "tags": { + "highway": "tertiary", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 276067497, + "bounds": { + "minlat": 40.7001135, + "minlon": -73.9474860, + "maxlat": 40.7004640, + "maxlon": -73.9472136 + }, + "nodes": [ + 42516653, + 9755373186, + 3808846152, + 9755373181, + 42504093 + ], + "geometry": [ + { "lat": 40.7004640, "lon": -73.9474860 }, + { "lat": 40.7004042, "lon": -73.9474263 }, + { "lat": 40.7002046, "lon": -73.9472136 }, + { "lat": 40.7001957, "lon": -73.9472143 }, + { "lat": 40.7001135, "lon": -73.9472209 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 276067500, + "bounds": { + "minlat": 40.7049830, + "minlon": -73.9531630, + "maxlat": 40.7055440, + "maxlon": -73.9525320 + }, + "nodes": [ + 42482044, + 6245642048, + 6245642051, + 42531741 + ], + "geometry": [ + { "lat": 40.7055440, "lon": -73.9531630 }, + { "lat": 40.7055028, "lon": -73.9531167 }, + { "lat": 40.7050457, "lon": -73.9526035 }, + { "lat": 40.7049830, "lon": -73.9525320 } + ], + "tags": { + "highway": "tertiary", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 276067503, + "bounds": { + "minlat": 40.7004640, + "minlon": -73.9481160, + "maxlat": 40.7010290, + "maxlon": -73.9474860 + }, + "nodes": [ + 42526740, + 9755373161, + 10783610355, + 9755373187, + 42516653 + ], + "geometry": [ + { "lat": 40.7010290, "lon": -73.9481160 }, + { "lat": 40.7009840, "lon": -73.9480658 }, + { "lat": 40.7006294, "lon": -73.9476697 }, + { "lat": 40.7005220, "lon": -73.9475511 }, + { "lat": 40.7004640, "lon": -73.9474860 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 276067506, + "bounds": { + "minlat": 40.7055440, + "minlon": -73.9537940, + "maxlat": 40.7061090, + "maxlon": -73.9531630 + }, + "nodes": [ + 42490962, + 9772859296, + 6245642047, + 42482044 + ], + "geometry": [ + { "lat": 40.7061090, "lon": -73.9537940 }, + { "lat": 40.7060717, "lon": -73.9537522 }, + { "lat": 40.7056083, "lon": -73.9532355 }, + { "lat": 40.7055440, "lon": -73.9531630 } + ], + "tags": { + "highway": "tertiary", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 276067509, + "bounds": { + "minlat": 40.7021590, + "minlon": -73.9500130, + "maxlat": 40.7027260, + "maxlon": -73.9493790 + }, + "nodes": [ + 42527626, + 6245642068, + 5481877627, + 9755373127, + 42475328 + ], + "geometry": [ + { "lat": 40.7027260, "lon": -73.9500130 }, + { "lat": 40.7026634, "lon": -73.9499436 }, + { "lat": 40.7023897, "lon": -73.9496370 }, + { "lat": 40.7022302, "lon": -73.9494526 }, + { "lat": 40.7021590, "lon": -73.9493790 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 276067512, + "bounds": { + "minlat": 40.7032870, + "minlon": -73.9519000, + "maxlat": 40.7044180, + "maxlon": -73.9506410 + }, + "nodes": [ + 42477584, + 6245642056, + 6245642057, + 42522399, + 6245642059, + 6245642063, + 42519635 + ], + "geometry": [ + { "lat": 40.7044180, "lon": -73.9519000 }, + { "lat": 40.7043713, "lon": -73.9518480 }, + { "lat": 40.7039077, "lon": -73.9513301 }, + { "lat": 40.7038530, "lon": -73.9512700 }, + { "lat": 40.7038057, "lon": -73.9512174 }, + { "lat": 40.7033459, "lon": -73.9507065 }, + { "lat": 40.7032870, "lon": -73.9506410 } + ], + "tags": { + "highway": "tertiary", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276074143, + "bounds": { + "minlat": 40.7146093, + "minlon": -73.9387513, + "maxlat": 40.7153247, + "maxlon": -73.9386893 + }, + "nodes": [ + 7712114548, + 9695721702, + 7238110480, + 9695771666, + 42494204 + ], + "geometry": [ + { "lat": 40.7146093, "lon": -73.9387513 }, + { "lat": 40.7146739, "lon": -73.9387468 }, + { "lat": 40.7149917, "lon": -73.9387245 }, + { "lat": 40.7152483, "lon": -73.9387052 }, + { "lat": 40.7153247, "lon": -73.9386893 } + ], + "tags": { + "highway": "residential", + "name": "Olive Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 276074144, + "bounds": { + "minlat": 40.7138769, + "minlon": -73.9388049, + "maxlat": 40.7146093, + "maxlon": -73.9387513 + }, + "nodes": [ + 42494201, + 9755789500, + 9695771734, + 42484216, + 7712114548 + ], + "geometry": [ + { "lat": 40.7138769, "lon": -73.9388049 }, + { "lat": 40.7139424, "lon": -73.9388001 }, + { "lat": 40.7145236, "lon": -73.9387574 }, + { "lat": 40.7145929, "lon": -73.9387525 }, + { "lat": 40.7146093, "lon": -73.9387513 } + ], + "tags": { + "highway": "residential", + "name": "Olive Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 276074147, + "bounds": { + "minlat": 40.7132019, + "minlon": -73.9388432, + "maxlat": 40.7135949, + "maxlon": -73.9387934 + }, + "nodes": [ + 42494194, + 42494198, + 9755789502 + ], + "geometry": [ + { "lat": 40.7132019, "lon": -73.9387934 }, + { "lat": 40.7132660, "lon": -73.9388432 }, + { "lat": 40.7135949, "lon": -73.9388210 } + ], + "tags": { + "highway": "residential", + "name": "Olive Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 276074150, + "bounds": { + "minlat": 40.7153247, + "minlon": -73.9390238, + "maxlat": 40.7160668, + "maxlon": -73.9386893 + }, + "nodes": [ + 42494204, + 9527375820, + 1988642432, + 9947391759, + 9527375826, + 42489474 + ], + "geometry": [ + { "lat": 40.7153247, "lon": -73.9386893 }, + { "lat": 40.7154211, "lon": -73.9387328 }, + { "lat": 40.7156132, "lon": -73.9388193 }, + { "lat": 40.7159694, "lon": -73.9389799 }, + { "lat": 40.7160075, "lon": -73.9389971 }, + { "lat": 40.7160668, "lon": -73.9390238 } + ], + "tags": { + "highway": "residential", + "name": "Olive Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 276080900, + "bounds": { + "minlat": 40.7073819, + "minlon": -73.9184815, + "maxlat": 40.7080971, + "maxlon": -73.9177371 + }, + "nodes": [ + 3325564425, + 5429417625, + 10686521699, + 42885320 + ], + "geometry": [ + { "lat": 40.7073819, "lon": -73.9184815 }, + { "lat": 40.7074341, "lon": -73.9184277 }, + { "lat": 40.7074637, "lon": -73.9183969 }, + { "lat": 40.7080971, "lon": -73.9177371 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Suydam Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276080901, + "bounds": { + "minlat": 40.7019598, + "minlon": -73.9238790, + "maxlat": 40.7035371, + "maxlon": -73.9223332 + }, + "nodes": [ + 42506544, + 9704024957, + 9703994309, + 42506548 + ], + "geometry": [ + { "lat": 40.7019598, "lon": -73.9238790 }, + { "lat": 40.7020172, "lon": -73.9238227 }, + { "lat": 40.7034808, "lon": -73.9223884 }, + { "lat": 40.7035371, "lon": -73.9223332 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Suydam Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY;Kings, NY", + "tiger:name_base": "Suydam", + "tiger:name_type": "St", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 276080902, + "bounds": { + "minlat": 40.7035371, + "minlon": -73.9223332, + "maxlat": 40.7052160, + "maxlon": -73.9206840 + }, + "nodes": [ + 42506548, + 9703994314, + 9744131144, + 42506555 + ], + "geometry": [ + { "lat": 40.7035371, "lon": -73.9223332 }, + { "lat": 40.7036013, "lon": -73.9222701 }, + { "lat": 40.7051614, "lon": -73.9207380 }, + { "lat": 40.7052160, "lon": -73.9206840 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Suydam Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276080903, + "bounds": { + "minlat": 40.7063054, + "minlon": -73.9195736, + "maxlat": 40.7073819, + "maxlon": -73.9184815 + }, + "nodes": [ + 42506560, + 9592286279, + 10686521696, + 5429417622, + 3325564425 + ], + "geometry": [ + { "lat": 40.7063054, "lon": -73.9195736 }, + { "lat": 40.7063621, "lon": -73.9195161 }, + { "lat": 40.7072977, "lon": -73.9185669 }, + { "lat": 40.7073305, "lon": -73.9185336 }, + { "lat": 40.7073819, "lon": -73.9184815 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Suydam Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276080904, + "bounds": { + "minlat": 40.7052160, + "minlon": -73.9206840, + "maxlat": 40.7063054, + "maxlon": -73.9195736 + }, + "nodes": [ + 42506555, + 9744131145, + 9592286280, + 42506560 + ], + "geometry": [ + { "lat": 40.7052160, "lon": -73.9206840 }, + { "lat": 40.7052737, "lon": -73.9206251 }, + { "lat": 40.7062506, "lon": -73.9196294 }, + { "lat": 40.7063054, "lon": -73.9195736 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Suydam Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276080905, + "bounds": { + "minlat": 40.7004810, + "minlon": -73.9253290, + "maxlat": 40.7019598, + "maxlon": -73.9238790 + }, + "nodes": [ + 42496660, + 9753035677, + 9704024955, + 42506544 + ], + "geometry": [ + { "lat": 40.7004810, "lon": -73.9253290 }, + { "lat": 40.7005390, "lon": -73.9252721 }, + { "lat": 40.7018963, "lon": -73.9239413 }, + { "lat": 40.7019598, "lon": -73.9238790 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Suydam Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY;Kings, NY", + "tiger:name_base": "Suydam", + "tiger:name_type": "St", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 276080906, + "bounds": { + "minlat": 40.7056700, + "minlon": -73.9214100, + "maxlat": 40.7067442, + "maxlon": -73.9203148 + }, + "nodes": [ + 42492389, + 5423479092, + 9744131172, + 9744131174, + 42492387 + ], + "geometry": [ + { "lat": 40.7067442, "lon": -73.9203148 }, + { "lat": 40.7066962, "lon": -73.9203637 }, + { "lat": 40.7057541, "lon": -73.9213243 }, + { "lat": 40.7057254, "lon": -73.9213535 }, + { "lat": 40.7056700, "lon": -73.9214100 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Willoughby Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276080907, + "bounds": { + "minlat": 40.7039695, + "minlon": -73.9230792, + "maxlat": 40.7056700, + "maxlon": -73.9214100 + }, + "nodes": [ + 42492387, + 9744131173, + 9595986657, + 9704024925, + 42492385 + ], + "geometry": [ + { "lat": 40.7056700, "lon": -73.9214100 }, + { "lat": 40.7056140, "lon": -73.9214650 }, + { "lat": 40.7040654, "lon": -73.9229867 }, + { "lat": 40.7040257, "lon": -73.9230250 }, + { "lat": 40.7039695, "lon": -73.9230792 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Willoughby Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276080908, + "bounds": { + "minlat": 40.7078177, + "minlon": -73.9192201, + "maxlat": 40.7089450, + "maxlon": -73.9180730 + }, + "nodes": [ + 42859103, + 9924772036, + 9747567479, + 9592286286, + 42859100 + ], + "geometry": [ + { "lat": 40.7089450, "lon": -73.9180730 }, + { "lat": 40.7086746, "lon": -73.9183481 }, + { "lat": 40.7079058, "lon": -73.9191305 }, + { "lat": 40.7078696, "lon": -73.9191670 }, + { "lat": 40.7078177, "lon": -73.9192201 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Willoughby Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276080909, + "bounds": { + "minlat": 40.7067442, + "minlon": -73.9203148, + "maxlat": 40.7078177, + "maxlon": -73.9192201 + }, + "nodes": [ + 42859100, + 9592286287, + 7153297691, + 5423479102, + 5423479106, + 42492389 + ], + "geometry": [ + { "lat": 40.7078177, "lon": -73.9192201 }, + { "lat": 40.7077673, "lon": -73.9192715 }, + { "lat": 40.7070458, "lon": -73.9200097 }, + { "lat": 40.7068362, "lon": -73.9202217 }, + { "lat": 40.7068003, "lon": -73.9202581 }, + { "lat": 40.7067442, "lon": -73.9203148 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Willoughby Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276080910, + "bounds": { + "minlat": 40.7089450, + "minlon": -73.9180730, + "maxlat": 40.7098510, + "maxlon": -73.9171420 + }, + "nodes": [ + 42827581, + 9744109089, + 10686537720, + 9924772034, + 42859103 + ], + "geometry": [ + { "lat": 40.7098510, "lon": -73.9171420 }, + { "lat": 40.7097964, "lon": -73.9171981 }, + { "lat": 40.7097691, "lon": -73.9172262 }, + { "lat": 40.7094648, "lon": -73.9175388 }, + { "lat": 40.7089450, "lon": -73.9180730 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Willoughby Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276081955, + "bounds": { + "minlat": 40.8648711, + "minlon": -73.9961264, + "maxlat": 40.8649245, + "maxlon": -73.9958738 + }, + "nodes": [ + 2807153823, + 2807153820, + 2468214118 + ], + "geometry": [ + { "lat": 40.8648711, "lon": -73.9958738 }, + { "lat": 40.8648851, "lon": -73.9960096 }, + { "lat": 40.8649245, "lon": -73.9961264 } + ], + "tags": { + "highway": "tertiary", + "name": "Challenger Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 276081956, + "bounds": { + "minlat": 40.8649245, + "minlon": -73.9988358, + "maxlat": 40.8665314, + "maxlon": -73.9961264 + }, + "nodes": [ + 2468214118, + 2468214215, + 5577214980, + 2468214124, + 2807153817, + 2468214178, + 10940838066, + 10940838056, + 10940838052, + 2468214129, + 10940838060, + 10940838074, + 10940838050, + 2468214213, + 2468214150 + ], + "geometry": [ + { "lat": 40.8649245, "lon": -73.9961264 }, + { "lat": 40.8651194, "lon": -73.9964174 }, + { "lat": 40.8653062, "lon": -73.9966945 }, + { "lat": 40.8655533, "lon": -73.9970599 }, + { "lat": 40.8657623, "lon": -73.9973686 }, + { "lat": 40.8660851, "lon": -73.9978492 }, + { "lat": 40.8661250, "lon": -73.9979078 }, + { "lat": 40.8661598, "lon": -73.9979629 }, + { "lat": 40.8661919, "lon": -73.9980172 }, + { "lat": 40.8662216, "lon": -73.9980704 }, + { "lat": 40.8662465, "lon": -73.9981220 }, + { "lat": 40.8662711, "lon": -73.9981755 }, + { "lat": 40.8662967, "lon": -73.9982358 }, + { "lat": 40.8663209, "lon": -73.9982933 }, + { "lat": 40.8665314, "lon": -73.9988358 } + ], + "tags": { + "highway": "tertiary", + "name": "Challenger Road" + } +}, +{ + "type": "way", + "id": 276081957, + "bounds": { + "minlat": 40.8644148, + "minlon": -73.9957537, + "maxlat": 40.8646026, + "maxlon": -73.9956545 + }, + "nodes": [ + 2807153822, + 2807153824, + 2807153807 + ], + "geometry": [ + { "lat": 40.8644148, "lon": -73.9957537 }, + { "lat": 40.8645338, "lon": -73.9957105 }, + { "lat": 40.8646026, "lon": -73.9956545 } + ], + "tags": { + "highway": "tertiary", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 276081959, + "bounds": { + "minlat": 40.8645496, + "minlon": -73.9959063, + "maxlat": 40.8646026, + "maxlon": -73.9956545 + }, + "nodes": [ + 2807153814, + 10941434052, + 10941434033, + 2807153806, + 10941434036, + 10941434060, + 2807153815, + 10941434051, + 10941434056, + 2807153807 + ], + "geometry": [ + { "lat": 40.8645651, "lon": -73.9959063 }, + { "lat": 40.8645573, "lon": -73.9958797 }, + { "lat": 40.8645517, "lon": -73.9958488 }, + { "lat": 40.8645496, "lon": -73.9958169 }, + { "lat": 40.8645510, "lon": -73.9957861 }, + { "lat": 40.8645561, "lon": -73.9957536 }, + { "lat": 40.8645647, "lon": -73.9957231 }, + { "lat": 40.8645764, "lon": -73.9956953 }, + { "lat": 40.8645888, "lon": -73.9956735 }, + { "lat": 40.8646026, "lon": -73.9956545 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 276081960, + "bounds": { + "minlat": 40.8644148, + "minlon": -73.9959063, + "maxlat": 40.8645651, + "maxlon": -73.9957537 + }, + "nodes": [ + 2807153814, + 2807153821, + 2807153822 + ], + "geometry": [ + { "lat": 40.8645651, "lon": -73.9959063 }, + { "lat": 40.8644929, "lon": -73.9958039 }, + { "lat": 40.8644148, "lon": -73.9957537 } + ], + "tags": { + "highway": "tertiary", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 276081961, + "bounds": { + "minlat": 40.8647833, + "minlon": -73.9956504, + "maxlat": 40.8649649, + "maxlon": -73.9956180 + }, + "nodes": [ + 2807153827, + 10941434035, + 2807153829, + 2807153828, + 2807153826 + ], + "geometry": [ + { "lat": 40.8647833, "lon": -73.9956180 }, + { "lat": 40.8648307, "lon": -73.9956397 }, + { "lat": 40.8648696, "lon": -73.9956472 }, + { "lat": 40.8649161, "lon": -73.9956504 }, + { "lat": 40.8649649, "lon": -73.9956396 } + ], + "tags": { + "highway": "tertiary", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 276081962, + "bounds": { + "minlat": 40.8648754, + "minlon": -73.9958486, + "maxlat": 40.8649649, + "maxlon": -73.9956396 + }, + "nodes": [ + 2807153826, + 10941434061, + 2468214209, + 10941434058, + 2807153825 + ], + "geometry": [ + { "lat": 40.8649649, "lon": -73.9956396 }, + { "lat": 40.8649360, "lon": -73.9956925 }, + { "lat": 40.8649125, "lon": -73.9957438 }, + { "lat": 40.8648909, "lon": -73.9957998 }, + { "lat": 40.8648754, "lon": -73.9958486 } + ], + "tags": { + "highway": "tertiary", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 276083330, + "bounds": { + "minlat": 40.6991090, + "minlon": -73.9347993, + "maxlat": 40.7011002, + "maxlon": -73.9340090 + }, + "nodes": [ + 42500482, + 5713856987, + 9744012818, + 42479505, + 9744012817, + 5713856989, + 1275778373, + 1275778428, + 7044551507, + 9301598167, + 42500477 + ], + "geometry": [ + { "lat": 40.7011002, "lon": -73.9347993 }, + { "lat": 40.7007915, "lon": -73.9346682 }, + { "lat": 40.7005323, "lon": -73.9345530 }, + { "lat": 40.7004670, "lon": -73.9345242 }, + { "lat": 40.7004259, "lon": -73.9345068 }, + { "lat": 40.7001692, "lon": -73.9343987 }, + { "lat": 40.6998328, "lon": -73.9342512 }, + { "lat": 40.6996650, "lon": -73.9341785 }, + { "lat": 40.6995367, "lon": -73.9341394 }, + { "lat": 40.6991774, "lon": -73.9340300 }, + { "lat": 40.6991090, "lon": -73.9340090 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Stanwix Street", + "name:etymology:wikidata": "Q6258878", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Stanwix", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 276090397, + "bounds": { + "minlat": 40.7131741, + "minlon": -73.9373978, + "maxlat": 40.7138277, + "maxlon": -73.9373419 + }, + "nodes": [ + 42464415, + 9947391765, + 42464411 + ], + "geometry": [ + { "lat": 40.7138277, "lon": -73.9373419 }, + { "lat": 40.7137593, "lon": -73.9373477 }, + { "lat": 40.7131741, "lon": -73.9373978 } + ], + "tags": { + "highway": "residential", + "name": "Catherine Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 276090401, + "bounds": { + "minlat": 40.7127944, + "minlon": -73.9373978, + "maxlat": 40.7131741, + "maxlon": -73.9372532 + }, + "nodes": [ + 42464411, + 8842929816, + 42464409 + ], + "geometry": [ + { "lat": 40.7131741, "lon": -73.9373978 }, + { "lat": 40.7128832, "lon": -73.9372869 }, + { "lat": 40.7127944, "lon": -73.9372532 } + ], + "tags": { + "highway": "residential", + "name": "Catherine Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 276105762, + "bounds": { + "minlat": 40.8094954, + "minlon": -74.0020293, + "maxlat": 40.8099249, + "maxlon": -74.0012421 + }, + "nodes": [ + 103866686, + 4727867688, + 5481884746, + 5481884741, + 5481884064, + 103860896 + ], + "geometry": [ + { "lat": 40.8094954, "lon": -74.0012421 }, + { "lat": 40.8095538, "lon": -74.0013473 }, + { "lat": 40.8096486, "lon": -74.0015298 }, + { "lat": 40.8097298, "lon": -74.0016712 }, + { "lat": 40.8098216, "lon": -74.0018446 }, + { "lat": 40.8099249, "lon": -74.0020293 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "name_1": "Kennedy Boulevard", + "sidewalk:both": "separate", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 276131127, + "bounds": { + "minlat": 40.6994390, + "minlon": -73.9275320, + "maxlat": 40.7009100, + "maxlon": -73.9260830 + }, + "nodes": [ + 42492396, + 9753035685, + 12883509018, + 9747567473, + 6252542699, + 42486724 + ], + "geometry": [ + { "lat": 40.7009100, "lon": -73.9260830 }, + { "lat": 40.7008563, "lon": -73.9261359 }, + { "lat": 40.7002881, "lon": -73.9266955 }, + { "lat": 40.6995299, "lon": -73.9274424 }, + { "lat": 40.6994955, "lon": -73.9274763 }, + { "lat": 40.6994390, "lon": -73.9275320 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Willoughby Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Willoughby", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 276143792, + "bounds": { + "minlat": 40.7039833, + "minlon": -73.9385365, + "maxlat": 40.7046226, + "maxlon": -73.9350214 + }, + "nodes": [ + 42528875, + 9744012865, + 4660922284, + 7722378721 + ], + "geometry": [ + { "lat": 40.7046226, "lon": -73.9350214 }, + { "lat": 40.7046063, "lon": -73.9351061 }, + { "lat": 40.7039833, "lon": -73.9383489 }, + { "lat": 40.7039968, "lon": -73.9385365 } + ], + "tags": { + "highway": "residential", + "name": "Moore Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276145112, + "bounds": { + "minlat": 40.7006800, + "minlon": -73.9392440, + "maxlat": 40.7011020, + "maxlon": -73.9384840 + }, + "nodes": [ + 42515613, + 8589617590, + 42529638 + ], + "geometry": [ + { "lat": 40.7011020, "lon": -73.9392440 }, + { "lat": 40.7008460, "lon": -73.9387829 }, + { "lat": 40.7006800, "lon": -73.9384840 } + ], + "tags": { + "highway": "residential", + "name": "Beaver Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Beaver", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 276145113, + "bounds": { + "minlat": 40.7002490, + "minlon": -73.9384840, + "maxlat": 40.7006800, + "maxlon": -73.9377280 + }, + "nodes": [ + 42529638, + 9301423378, + 9301423381, + 42508233 + ], + "geometry": [ + { "lat": 40.7006800, "lon": -73.9384840 }, + { "lat": 40.7006455, "lon": -73.9384234 }, + { "lat": 40.7002917, "lon": -73.9377990 }, + { "lat": 40.7002490, "lon": -73.9377280 } + ], + "tags": { + "highway": "residential", + "name": "Beaver Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Beaver", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 276145114, + "bounds": { + "minlat": 40.6998330, + "minlon": -73.9377280, + "maxlat": 40.7002490, + "maxlon": -73.9369630 + }, + "nodes": [ + 42508233, + 42471953 + ], + "geometry": [ + { "lat": 40.7002490, "lon": -73.9377280 }, + { "lat": 40.6998330, "lon": -73.9369630 } + ], + "tags": { + "highway": "residential", + "name": "Beaver Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Beaver", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 276145172, + "bounds": { + "minlat": 40.7039335, + "minlon": -73.9350214, + "maxlat": 40.7046226, + "maxlon": -73.9347934 + }, + "nodes": [ + 42509037, + 9744012849, + 12977783194, + 9950027960, + 42528875 + ], + "geometry": [ + { "lat": 40.7039335, "lon": -73.9347934 }, + { "lat": 40.7039935, "lon": -73.9348133 }, + { "lat": 40.7045259, "lon": -73.9349894 }, + { "lat": 40.7045647, "lon": -73.9350022 }, + { "lat": 40.7046226, "lon": -73.9350214 } + ], + "tags": { + "highway": "residential", + "name": "White Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276145173, + "bounds": { + "minlat": 40.7060116, + "minlon": -73.9356668, + "maxlat": 40.7065881, + "maxlon": -73.9354769 + }, + "nodes": [ + 42501147, + 9952734768, + 42476811 + ], + "geometry": [ + { "lat": 40.7060116, "lon": -73.9354769 }, + { "lat": 40.7060776, "lon": -73.9354987 }, + { "lat": 40.7065881, "lon": -73.9356668 } + ], + "tags": { + "highway": "residential", + "name": "White Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 276145174, + "bounds": { + "minlat": 40.7065881, + "minlon": -73.9358962, + "maxlat": 40.7072846, + "maxlon": -73.9356668 + }, + "nodes": [ + 42476811, + 9952734797, + 42476825, + 9755371932, + 42496372 + ], + "geometry": [ + { "lat": 40.7065881, "lon": -73.9356668 }, + { "lat": 40.7066504, "lon": -73.9356874 }, + { "lat": 40.7067024, "lon": -73.9357045 }, + { "lat": 40.7072148, "lon": -73.9358741 }, + { "lat": 40.7072846, "lon": -73.9358962 } + ], + "tags": { + "highway": "residential", + "name": "White Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 276145175, + "bounds": { + "minlat": 40.7046226, + "minlon": -73.9352516, + "maxlat": 40.7053187, + "maxlon": -73.9350214 + }, + "nodes": [ + 42528875, + 9950027965, + 9744012838, + 42521993 + ], + "geometry": [ + { "lat": 40.7046226, "lon": -73.9350214 }, + { "lat": 40.7046903, "lon": -73.9350438 }, + { "lat": 40.7052687, "lon": -73.9352351 }, + { "lat": 40.7053187, "lon": -73.9352516 } + ], + "tags": { + "highway": "residential", + "name": "White Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 276145176, + "bounds": { + "minlat": 40.7053187, + "minlon": -73.9354769, + "maxlat": 40.7060116, + "maxlon": -73.9352516 + }, + "nodes": [ + 42521993, + 9744012839, + 7034559395, + 7034559378, + 42501147 + ], + "geometry": [ + { "lat": 40.7053187, "lon": -73.9352516 }, + { "lat": 40.7053882, "lon": -73.9352746 }, + { "lat": 40.7058607, "lon": -73.9354309 }, + { "lat": 40.7059582, "lon": -73.9354601 }, + { "lat": 40.7060116, "lon": -73.9354769 } + ], + "tags": { + "highway": "residential", + "name": "White Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 276145177, + "bounds": { + "minlat": 40.7072751, + "minlon": -73.9360351, + "maxlat": 40.7075293, + "maxlon": -73.9359947 + }, + "nodes": [ + 9952734806, + 9755371962, + 7238110477 + ], + "geometry": [ + { "lat": 40.7072751, "lon": -73.9359947 }, + { "lat": 40.7073486, "lon": -73.9360064 }, + { "lat": 40.7075293, "lon": -73.9360351 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 276146471, + "bounds": { + "minlat": 40.7194569, + "minlon": -73.9375342, + "maxlat": 40.7199041, + "maxlon": -73.9359018 + }, + "nodes": [ + 42490380, + 9695771624, + 7472931766, + 7472931767, + 9937834405, + 42524631 + ], + "geometry": [ + { "lat": 40.7194569, "lon": -73.9375342 }, + { "lat": 40.7194839, "lon": -73.9374351 }, + { "lat": 40.7195788, "lon": -73.9370889 }, + { "lat": 40.7198619, "lon": -73.9360556 }, + { "lat": 40.7198680, "lon": -73.9360335 }, + { "lat": 40.7199041, "lon": -73.9359018 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Frost Street", + "service": "alley" + } +}, +{ + "type": "way", + "id": 276146472, + "bounds": { + "minlat": 40.7190480, + "minlon": -73.9390870, + "maxlat": 40.7194569, + "maxlon": -73.9375342 + }, + "nodes": [ + 42504207, + 2772562148, + 9695771618, + 42490380 + ], + "geometry": [ + { "lat": 40.7190480, "lon": -73.9390870 }, + { "lat": 40.7194132, "lon": -73.9376999 }, + { "lat": 40.7194303, "lon": -73.9376398 }, + { "lat": 40.7194569, "lon": -73.9375342 } + ], + "tags": { + "highway": "residential", + "name": "Frost Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Frost", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 276147610, + "bounds": { + "minlat": 40.7149100, + "minlon": -73.9090700, + "maxlat": 40.7154010, + "maxlon": -73.9085720 + }, + "nodes": [ + 42855316, + 11002490941, + 42881224 + ], + "geometry": [ + { "lat": 40.7149100, "lon": -73.9090700 }, + { "lat": 40.7149643, "lon": -73.9090149 }, + { "lat": 40.7154010, "lon": -73.9085720 } + ], + "tags": { + "highway": "residential", + "name": "Arnold Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Arnold", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 276147611, + "bounds": { + "minlat": 40.7143630, + "minlon": -73.9096140, + "maxlat": 40.7149100, + "maxlon": -73.9090700 + }, + "nodes": [ + 42881219, + 9759984133, + 11002490942, + 42855316 + ], + "geometry": [ + { "lat": 40.7143630, "lon": -73.9096140 }, + { "lat": 40.7144120, "lon": -73.9095653 }, + { "lat": 40.7148598, "lon": -73.9091199 }, + { "lat": 40.7149100, "lon": -73.9090700 } + ], + "tags": { + "highway": "residential", + "name": "Arnold Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Arnold", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 276147612, + "bounds": { + "minlat": 40.7138220, + "minlon": -73.9101580, + "maxlat": 40.7143630, + "maxlon": -73.9096140 + }, + "nodes": [ + 42867257, + 9696553940, + 9759984115, + 42881219 + ], + "geometry": [ + { "lat": 40.7138220, "lon": -73.9101580 }, + { "lat": 40.7142865, "lon": -73.9096909 }, + { "lat": 40.7143198, "lon": -73.9096575 }, + { "lat": 40.7143630, "lon": -73.9096140 } + ], + "tags": { + "highway": "residential", + "name": "Arnold Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Arnold", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 276150928, + "bounds": { + "minlat": 40.7464584, + "minlon": -73.9170838, + "maxlat": 40.7492586, + "maxlon": -73.9165210 + }, + "nodes": [ + 42904454, + 10074123168, + 42797019, + 42797003, + 7530789529, + 42798342, + 42904443, + 3655975943, + 7671808580, + 7671808581, + 42892863 + ], + "geometry": [ + { "lat": 40.7464584, "lon": -73.9170838 }, + { "lat": 40.7465549, "lon": -73.9170643 }, + { "lat": 40.7470396, "lon": -73.9169660 }, + { "lat": 40.7472409, "lon": -73.9169252 }, + { "lat": 40.7477400, "lon": -73.9168250 }, + { "lat": 40.7478533, "lon": -73.9168015 }, + { "lat": 40.7485013, "lon": -73.9166730 }, + { "lat": 40.7485887, "lon": -73.9166548 }, + { "lat": 40.7491381, "lon": -73.9165465 }, + { "lat": 40.7491912, "lon": -73.9165372 }, + { "lat": 40.7492586, "lon": -73.9165210 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "47th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276152016, + "bounds": { + "minlat": 40.7451837, + "minlon": -73.9085789, + "maxlat": 40.7461860, + "maxlon": -73.9081170 + }, + "nodes": [ + 42855336, + 10074125223, + 9950268674, + 42855339 + ], + "geometry": [ + { "lat": 40.7461860, "lon": -73.9081170 }, + { "lat": 40.7461243, "lon": -73.9081544 }, + { "lat": 40.7452954, "lon": -73.9085334 }, + { "lat": 40.7451837, "lon": -73.9085789 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "56th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276152017, + "bounds": { + "minlat": 40.7422520, + "minlon": -73.9092050, + "maxlat": 40.7434700, + "maxlon": -73.9089560 + }, + "nodes": [ + 42818003, + 9950327725, + 9950327970, + 276299050 + ], + "geometry": [ + { "lat": 40.7434700, "lon": -73.9089560 }, + { "lat": 40.7429486, "lon": -73.9090626 }, + { "lat": 40.7423283, "lon": -73.9091894 }, + { "lat": 40.7422520, "lon": -73.9092050 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "56th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "56th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 276152018, + "bounds": { + "minlat": 40.7461860, + "minlon": -73.9081170, + "maxlat": 40.7483580, + "maxlon": -73.9071320 + }, + "nodes": [ + 42855333, + 7667087003, + 8089066805, + 8089088619, + 10762234100, + 42855336 + ], + "geometry": [ + { "lat": 40.7483580, "lon": -73.9071320 }, + { "lat": 40.7483006, "lon": -73.9071594 }, + { "lat": 40.7472112, "lon": -73.9076529 }, + { "lat": 40.7463164, "lon": -73.9080580 }, + { "lat": 40.7462521, "lon": -73.9080866 }, + { "lat": 40.7461860, "lon": -73.9081170 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "56th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276152019, + "bounds": { + "minlat": 40.7434700, + "minlon": -73.9089560, + "maxlat": 40.7450349, + "maxlon": -73.9086343 + }, + "nodes": [ + 5538919095, + 42818003 + ], + "geometry": [ + { "lat": 40.7450349, "lon": -73.9086343 }, + { "lat": 40.7434700, "lon": -73.9089560 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "56th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "56th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 276152020, + "bounds": { + "minlat": 40.7451177, + "minlon": -73.9086072, + "maxlat": 40.7451837, + "maxlon": -73.9085789 + }, + "nodes": [ + 42855339, + 42855342 + ], + "geometry": [ + { "lat": 40.7451837, "lon": -73.9085789 }, + { "lat": 40.7451177, "lon": -73.9086072 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxheight": "12'2\"", + "name": "56th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276152021, + "bounds": { + "minlat": 40.7421279, + "minlon": -73.9092318, + "maxlat": 40.7422520, + "maxlon": -73.9092050 + }, + "nodes": [ + 276299050, + 11694707628, + 2807734606 + ], + "geometry": [ + { "lat": 40.7422520, "lon": -73.9092050 }, + { "lat": 40.7422160, "lon": -73.9092125 }, + { "lat": 40.7421279, "lon": -73.9092318 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "56th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276152178, + "bounds": { + "minlat": 40.7424645, + "minlon": -73.9110095, + "maxlat": 40.7447428, + "maxlon": -73.9105638 + }, + "nodes": [ + 42870238, + 9950268686, + 9950327851, + 276299052 + ], + "geometry": [ + { "lat": 40.7447428, "lon": -73.9105638 }, + { "lat": 40.7446633, "lon": -73.9105793 }, + { "lat": 40.7425395, "lon": -73.9109948 }, + { "lat": 40.7424645, "lon": -73.9110095 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "54th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276246020, + "bounds": { + "minlat": 40.8454311, + "minlon": -73.9165900, + "maxlat": 40.8459883, + "maxlon": -73.9139776 + }, + "nodes": [ + 42736339, + 12089606501, + 42737533, + 42737536, + 2808698667, + 12044585960, + 12044585961, + 12044585962, + 12044585963, + 12044585964, + 2808698684, + 12044585965, + 12044585966, + 12044585967, + 2808698687, + 12044585968, + 12044719669, + 2808698676, + 12044719680, + 12044719679, + 12044719678, + 12044719677, + 2808698658, + 12044719676, + 12044719675, + 12044719674, + 12044719673, + 12044719672, + 12044719671, + 12044719670, + 2808692874, + 12044684926, + 12044684927, + 12044684928, + 2808692857, + 12044684933, + 2808692852 + ], + "geometry": [ + { "lat": 40.8454311, "lon": -73.9139776 }, + { "lat": 40.8454902, "lon": -73.9141193 }, + { "lat": 40.8457813, "lon": -73.9148170 }, + { "lat": 40.8458955, "lon": -73.9150906 }, + { "lat": 40.8459277, "lon": -73.9151705 }, + { "lat": 40.8459427, "lon": -73.9152099 }, + { "lat": 40.8459552, "lon": -73.9152485 }, + { "lat": 40.8459654, "lon": -73.9152840 }, + { "lat": 40.8459739, "lon": -73.9153180 }, + { "lat": 40.8459798, "lon": -73.9153525 }, + { "lat": 40.8459835, "lon": -73.9153880 }, + { "lat": 40.8459866, "lon": -73.9154256 }, + { "lat": 40.8459883, "lon": -73.9154659 }, + { "lat": 40.8459881, "lon": -73.9155087 }, + { "lat": 40.8459856, "lon": -73.9155496 }, + { "lat": 40.8459810, "lon": -73.9155883 }, + { "lat": 40.8459738, "lon": -73.9156310 }, + { "lat": 40.8459652, "lon": -73.9156723 }, + { "lat": 40.8459565, "lon": -73.9157087 }, + { "lat": 40.8459475, "lon": -73.9157402 }, + { "lat": 40.8459342, "lon": -73.9157752 }, + { "lat": 40.8459169, "lon": -73.9158116 }, + { "lat": 40.8458981, "lon": -73.9158454 }, + { "lat": 40.8458789, "lon": -73.9158758 }, + { "lat": 40.8458599, "lon": -73.9159027 }, + { "lat": 40.8458397, "lon": -73.9159285 }, + { "lat": 40.8458137, "lon": -73.9159590 }, + { "lat": 40.8457684, "lon": -73.9160128 }, + { "lat": 40.8457271, "lon": -73.9160642 }, + { "lat": 40.8456862, "lon": -73.9161202 }, + { "lat": 40.8456416, "lon": -73.9161857 }, + { "lat": 40.8456007, "lon": -73.9162521 }, + { "lat": 40.8455610, "lon": -73.9163232 }, + { "lat": 40.8455280, "lon": -73.9163891 }, + { "lat": 40.8454944, "lon": -73.9164608 }, + { "lat": 40.8454662, "lon": -73.9165268 }, + { "lat": 40.8454441, "lon": -73.9165900 } + ], + "tags": { + "highway": "residential", + "name": "Featherbed Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Featherbed", + "tiger:name_type": "Ln" + } +}, +{ + "type": "way", + "id": 276249122, + "bounds": { + "minlat": 40.8454036, + "minlon": -73.9211345, + "maxlat": 40.8462784, + "maxlon": -73.9205944 + }, + "nodes": [ + 2808715499, + 8463760554, + 5762104584, + 42737555 + ], + "geometry": [ + { "lat": 40.8454036, "lon": -73.9211345 }, + { "lat": 40.8461587, "lon": -73.9206683 }, + { "lat": 40.8461956, "lon": -73.9206455 }, + { "lat": 40.8462784, "lon": -73.9205944 } + ], + "tags": { + "highway": "residential", + "name": "Plimpton Avenue", + "name:etymology:wikidata": "Q5536449", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 276277629, + "bounds": { + "minlat": 40.7109600, + "minlon": -73.9080039, + "maxlat": 40.7118491, + "maxlon": -73.9065000 + }, + "nodes": [ + 42888334, + 9747567461, + 10686537709, + 9758185575, + 42814498, + 9758185577, + 10686537707, + 13006303760, + 8626187114, + 9763022232, + 42876068 + ], + "geometry": [ + { "lat": 40.7118491, "lon": -73.9080039 }, + { "lat": 40.7118013, "lon": -73.9079158 }, + { "lat": 40.7114705, "lon": -73.9073656 }, + { "lat": 40.7114414, "lon": -73.9073172 }, + { "lat": 40.7113970, "lon": -73.9072420 }, + { "lat": 40.7113623, "lon": -73.9071832 }, + { "lat": 40.7113321, "lon": -73.9071319 }, + { "lat": 40.7111887, "lon": -73.9068881 }, + { "lat": 40.7110268, "lon": -73.9066127 }, + { "lat": 40.7110007, "lon": -73.9065691 }, + { "lat": 40.7109600, "lon": -73.9065000 } + ], + "tags": { + "highway": "residential", + "name": "Tonsor Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 276327850, + "bounds": { + "minlat": 40.7551600, + "minlon": -73.9375490, + "maxlat": 40.7562120, + "maxlon": -73.9365810 + }, + "nodes": [ + 42861190, + 8253424635, + 8314985367, + 42861193 + ], + "geometry": [ + { "lat": 40.7562120, "lon": -73.9365810 }, + { "lat": 40.7561524, "lon": -73.9366358 }, + { "lat": 40.7552209, "lon": -73.9374929 }, + { "lat": 40.7551600, "lon": -73.9375490 } + ], + "tags": { + "highway": "residential", + "name": "24th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276327851, + "bounds": { + "minlat": 40.7538980, + "minlon": -73.9387100, + "maxlat": 40.7551600, + "maxlon": -73.9375490 + }, + "nodes": [ + 42861193, + 8314985399, + 8032268598, + 8315005328, + 42861196 + ], + "geometry": [ + { "lat": 40.7551600, "lon": -73.9375490 }, + { "lat": 40.7551085, "lon": -73.9375964 }, + { "lat": 40.7540101, "lon": -73.9386069 }, + { "lat": 40.7539516, "lon": -73.9386607 }, + { "lat": 40.7538980, "lon": -73.9387100 } + ], + "tags": { + "highway": "residential", + "name": "24th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276327852, + "bounds": { + "minlat": 40.7526400, + "minlon": -73.9398710, + "maxlat": 40.7538980, + "maxlon": -73.9387100 + }, + "nodes": [ + 42861196, + 8314985371, + 8062562647, + 5493300580, + 42861200 + ], + "geometry": [ + { "lat": 40.7538980, "lon": -73.9387100 }, + { "lat": 40.7538495, "lon": -73.9387550 }, + { "lat": 40.7527396, "lon": -73.9397791 }, + { "lat": 40.7526996, "lon": -73.9398158 }, + { "lat": 40.7526400, "lon": -73.9398710 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "24th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276327853, + "bounds": { + "minlat": 40.7573930, + "minlon": -73.9354650, + "maxlat": 40.7587025, + "maxlon": -73.9342599 + }, + "nodes": [ + 42861185, + 3569402115, + 7791667354, + 3569402099, + 42815790 + ], + "geometry": [ + { "lat": 40.7587025, "lon": -73.9342599 }, + { "lat": 40.7586389, "lon": -73.9343088 }, + { "lat": 40.7574891, "lon": -73.9353627 }, + { "lat": 40.7574514, "lon": -73.9353894 }, + { "lat": 40.7573930, "lon": -73.9354650 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "24th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276327854, + "bounds": { + "minlat": 40.7562120, + "minlon": -73.9365810, + "maxlat": 40.7573930, + "maxlon": -73.9354650 + }, + "nodes": [ + 42815790, + 3569402093, + 8315005350, + 42861190 + ], + "geometry": [ + { "lat": 40.7573930, "lon": -73.9354650 }, + { "lat": 40.7573541, "lon": -73.9355424 }, + { "lat": 40.7562773, "lon": -73.9365183 }, + { "lat": 40.7562120, "lon": -73.9365810 } + ], + "tags": { + "highway": "residential", + "name": "24th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276327855, + "bounds": { + "minlat": 40.7587025, + "minlon": -73.9342599, + "maxlat": 40.7601811, + "maxlon": -73.9329043 + }, + "nodes": [ + 42861179, + 6452553278, + 42801099, + 3569402141, + 3569402122, + 6452683691, + 42861185 + ], + "geometry": [ + { "lat": 40.7601811, "lon": -73.9329043 }, + { "lat": 40.7601214, "lon": -73.9329587 }, + { "lat": 40.7597441, "lon": -73.9333023 }, + { "lat": 40.7596008, "lon": -73.9334468 }, + { "lat": 40.7588205, "lon": -73.9341692 }, + { "lat": 40.7587813, "lon": -73.9341993 }, + { "lat": 40.7587025, "lon": -73.9342599 } + ], + "tags": { + "highway": "residential", + "name": "24th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276327856, + "bounds": { + "minlat": 40.7239950, + "minlon": -73.9107590, + "maxlat": 40.7241370, + "maxlon": -73.9086300 + }, + "nodes": [ + 42825390, + 42900460, + 11055685686, + 11055685687, + 42827444 + ], + "geometry": [ + { "lat": 40.7241370, "lon": -73.9107590 }, + { "lat": 40.7240570, "lon": -73.9095510 }, + { "lat": 40.7240041, "lon": -73.9087658 }, + { "lat": 40.7240010, "lon": -73.9087186 }, + { "lat": 40.7239950, "lon": -73.9086300 } + ], + "tags": { + "highway": "residential", + "name": "56th Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "56th", + "tiger:name_type": "Dr", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 276327857, + "bounds": { + "minlat": 40.7237070, + "minlon": -73.9086300, + "maxlat": 40.7239950, + "maxlon": -73.9044480 + }, + "nodes": [ + 42827444, + 11055685648, + 11055685651, + 42898864, + 11055685649, + 8316873537, + 11055685663, + 42902820, + 11055685673, + 7963480185, + 11055685812, + 42844482 + ], + "geometry": [ + { "lat": 40.7239950, "lon": -73.9086300 }, + { "lat": 40.7239899, "lon": -73.9085561 }, + { "lat": 40.7239277, "lon": -73.9076469 }, + { "lat": 40.7239210, "lon": -73.9075660 }, + { "lat": 40.7239142, "lon": -73.9074884 }, + { "lat": 40.7238467, "lon": -73.9064779 }, + { "lat": 40.7238425, "lon": -73.9064168 }, + { "lat": 40.7238370, "lon": -73.9063360 }, + { "lat": 40.7238324, "lon": -73.9062696 }, + { "lat": 40.7237164, "lon": -73.9045842 }, + { "lat": 40.7237124, "lon": -73.9045305 }, + { "lat": 40.7237070, "lon": -73.9044480 } + ], + "tags": { + "highway": "residential", + "name": "56th Drive", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "56th", + "tiger:name_type": "Dr", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 276370205, + "bounds": { + "minlat": 40.7003665, + "minlon": -73.9066205, + "maxlat": 40.7014930, + "maxlon": -73.9054670 + }, + "nodes": [ + 42853148, + 9762206732, + 8588552922, + 9762206684, + 42853145 + ], + "geometry": [ + { "lat": 40.7014930, "lon": -73.9054670 }, + { "lat": 40.7014375, "lon": -73.9055238 }, + { "lat": 40.7004669, "lon": -73.9065176 }, + { "lat": 40.7004268, "lon": -73.9065587 }, + { "lat": 40.7003665, "lon": -73.9066205 } + ], + "tags": { + "highway": "residential", + "name": "Putnam Avenue", + "name:etymology:wikidata": "Q622130", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY; Kings, NY", + "tiger:name_base": "Putnam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 276412860, + "bounds": { + "minlat": 40.7662643, + "minlon": -73.9200373, + "maxlat": 40.7663695, + "maxlon": -73.9199585 + }, + "nodes": [ + 6406731678, + 7784017586, + 6406731679 + ], + "geometry": [ + { "lat": 40.7662643, "lon": -73.9200373 }, + { "lat": 40.7663364, "lon": -73.9199840 }, + { "lat": 40.7663695, "lon": -73.9199585 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Newtown Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276428319, + "bounds": { + "minlat": 40.7246390, + "minlon": -73.9087670, + "maxlat": 40.7246920, + "maxlon": -73.9079590 + }, + "nodes": [ + 42876139, + 11055685655, + 11055685656, + 42827438 + ], + "geometry": [ + { "lat": 40.7246390, "lon": -73.9079590 }, + { "lat": 40.7246820, "lon": -73.9086205 }, + { "lat": 40.7246864, "lon": -73.9086888 }, + { "lat": 40.7246920, "lon": -73.9087670 } + ], + "tags": { + "highway": "residential", + "name": "56th Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "56th", + "tiger:name_type": "Rd", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 276428320, + "bounds": { + "minlat": 40.7245200, + "minlon": -73.9079590, + "maxlat": 40.7246390, + "maxlon": -73.9062520 + }, + "nodes": [ + 42876145, + 11055685667, + 42876139 + ], + "geometry": [ + { "lat": 40.7245200, "lon": -73.9062520 }, + { "lat": 40.7245259, "lon": -73.9063293 }, + { "lat": 40.7246390, "lon": -73.9079590 } + ], + "tags": { + "highway": "residential", + "name": "56th Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "56th", + "tiger:name_type": "Rd", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 276428428, + "bounds": { + "minlat": 40.8446045, + "minlon": -73.9093794, + "maxlat": 40.8448443, + "maxlon": -73.9048400 + }, + "nodes": [ + 42735878, + 12044638040, + 12089600831, + 12044638039, + 42734860, + 13040501323, + 42757859, + 13040501331, + 13040532870, + 42747336, + 13040532879, + 42745090, + 6223504774, + 13039036394, + 42747032 + ], + "geometry": [ + { "lat": 40.8448443, "lon": -73.9093794 }, + { "lat": 40.8448380, "lon": -73.9093239 }, + { "lat": 40.8448333, "lon": -73.9092802 }, + { "lat": 40.8448299, "lon": -73.9092418 }, + { "lat": 40.8447881, "lon": -73.9084730 }, + { "lat": 40.8447472, "lon": -73.9076628 }, + { "lat": 40.8447427, "lon": -73.9075745 }, + { "lat": 40.8447376, "lon": -73.9074737 }, + { "lat": 40.8447017, "lon": -73.9067636 }, + { "lat": 40.8446972, "lon": -73.9066741 }, + { "lat": 40.8446926, "lon": -73.9065775 }, + { "lat": 40.8446517, "lon": -73.9057748 }, + { "lat": 40.8446132, "lon": -73.9050124 }, + { "lat": 40.8446104, "lon": -73.9049570 }, + { "lat": 40.8446045, "lon": -73.9048400 } + ], + "tags": { + "highway": "residential", + "name": "East 174th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "174th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 276670360, + "bounds": { + "minlat": 40.7275664, + "minlon": -73.9913647, + "maxlat": 40.7277529, + "maxlon": -73.9912289 + }, + "nodes": [ + 1773121034, + 8309479291, + 12179562785, + 12179562786, + 6100764861 + ], + "geometry": [ + { "lat": 40.7277529, "lon": -73.9912289 }, + { "lat": 40.7276858, "lon": -73.9912774 }, + { "lat": 40.7276470, "lon": -73.9913065 }, + { "lat": 40.7275920, "lon": -73.9913477 }, + { "lat": 40.7275664, "lon": -73.9913647 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "24/7", + "maxspeed": "25 mph", + "name": "Cooper Square", + "name:etymology:wikidata": "Q935291", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276785330, + "bounds": { + "minlat": 40.7770437, + "minlon": -74.0194674, + "maxlat": 40.7774170, + "maxlon": -74.0186871 + }, + "nodes": [ + 440243649, + 7293124781, + 8267538507, + 103869773 + ], + "geometry": [ + { "lat": 40.7770437, "lon": -74.0186871 }, + { "lat": 40.7770958, "lon": -74.0187980 }, + { "lat": 40.7772718, "lon": -74.0191648 }, + { "lat": 40.7774170, "lon": -74.0194674 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "45th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "45th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07087", + "tiger:zip_right": "07087" + } +}, +{ + "type": "way", + "id": 276785347, + "bounds": { + "minlat": 40.7774170, + "minlon": -74.0202727, + "maxlat": 40.7778057, + "maxlon": -74.0194674 + }, + "nodes": [ + 103869773, + 8267580234, + 7387619987, + 103855574 + ], + "geometry": [ + { "lat": 40.7774170, "lon": -74.0194674 }, + { "lat": 40.7775678, "lon": -74.0197780 }, + { "lat": 40.7776898, "lon": -74.0200293 }, + { "lat": 40.7778057, "lon": -74.0202727 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "45th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "45th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07087", + "tiger:zip_right": "07087" + } +}, +{ + "type": "way", + "id": 276793238, + "bounds": { + "minlat": 40.7788632, + "minlon": -74.0207310, + "maxlat": 40.7795569, + "maxlon": -74.0192217 + }, + "nodes": [ + 103870267, + 7387632570, + 4514675889, + 7387632568, + 103855580 + ], + "geometry": [ + { "lat": 40.7795569, "lon": -74.0207310 }, + { "lat": 40.7795254, "lon": -74.0206626 }, + { "lat": 40.7791857, "lon": -74.0199274 }, + { "lat": 40.7789040, "lon": -74.0193110 }, + { "lat": 40.7788632, "lon": -74.0192217 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "46th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "46th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07087", + "tiger:zip_right": "07087" + } +}, +{ + "type": "way", + "id": 276814750, + "bounds": { + "minlat": 40.8110872, + "minlon": -74.0045287, + "maxlat": 40.8116710, + "maxlon": -74.0041370 + }, + "nodes": [ + 2813943274, + 2813943275, + 103147899 + ], + "geometry": [ + { "lat": 40.8110872, "lon": -74.0045287 }, + { "lat": 40.8115060, "lon": -74.0041937 }, + { "lat": 40.8116710, "lon": -74.0041370 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63;CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "State Route 63", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047" + } +}, +{ + "type": "way", + "id": 276814751, + "bounds": { + "minlat": 40.8111359, + "minlon": -74.0046182, + "maxlat": 40.8115253, + "maxlon": -74.0043252 + }, + "nodes": [ + 9549128773, + 6896030081, + 103858392 + ], + "geometry": [ + { "lat": 40.8115253, "lon": -74.0043252 }, + { "lat": 40.8114499, "lon": -74.0043819 }, + { "lat": 40.8111359, "lon": -74.0046182 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63;CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "State Route 63", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047", + "turn:lanes": "left|none" + } +}, +{ + "type": "way", + "id": 276814753, + "bounds": { + "minlat": 40.8098006, + "minlon": -74.0071328, + "maxlat": 40.8100671, + "maxlon": -74.0069402 + }, + "nodes": [ + 2813943250, + 103880868, + 7475993567, + 103876912 + ], + "geometry": [ + { "lat": 40.8098006, "lon": -74.0071328 }, + { "lat": 40.8099238, "lon": -74.0070518 }, + { "lat": 40.8100175, "lon": -74.0069788 }, + { "lat": 40.8100671, "lon": -74.0069402 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081270", + "highway": "tertiary", + "name": "Bergenwood Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenwood", + "tiger:name_base_1": "State Route 501", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814754, + "bounds": { + "minlat": 40.8100671, + "minlon": -74.0069402, + "maxlat": 40.8109672, + "maxlon": -74.0060671 + }, + "nodes": [ + 103876912, + 12456262186 + ], + "geometry": [ + { "lat": 40.8100671, "lon": -74.0069402 }, + { "lat": 40.8109672, "lon": -74.0060671 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081270", + "highway": "tertiary", + "name": "Bergenwood Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenwood", + "tiger:name_base_1": "State Route 501", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 276814755, + "bounds": { + "minlat": 40.8102729, + "minlon": -74.0059952, + "maxlat": 40.8106033, + "maxlon": -74.0051509 + }, + "nodes": [ + 103865023, + 2813943257 + ], + "geometry": [ + { "lat": 40.8106033, "lon": -74.0051509 }, + { "lat": 40.8102729, "lon": -74.0059952 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "oneway": "yes", + "ref": "CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814756, + "bounds": { + "minlat": 40.8102148, + "minlon": -74.0059449, + "maxlat": 40.8105475, + "maxlon": -74.0050569 + }, + "nodes": [ + 103872934, + 2813943258 + ], + "geometry": [ + { "lat": 40.8102148, "lon": -74.0059449 }, + { "lat": 40.8105475, "lon": -74.0050569 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "oneway": "yes", + "ref": "CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "turn:lanes": "slight_left;slight_right|slight_right;right" + } +}, +{ + "type": "way", + "id": 276814757, + "bounds": { + "minlat": 40.8098006, + "minlon": -74.0071328, + "maxlat": 40.8102729, + "maxlon": -74.0059952 + }, + "nodes": [ + 2813943257, + 2813943256, + 11250778440, + 2813943253, + 7475993615, + 7475993614, + 2813943250 + ], + "geometry": [ + { "lat": 40.8102729, "lon": -74.0059952 }, + { "lat": 40.8102269, "lon": -74.0061292 }, + { "lat": 40.8102196, "lon": -74.0061497 }, + { "lat": 40.8099772, "lon": -74.0068258 }, + { "lat": 40.8099283, "lon": -74.0069361 }, + { "lat": 40.8098975, "lon": -74.0069995 }, + { "lat": 40.8098006, "lon": -74.0071328 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "oneway": "yes", + "ref": "CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814758, + "bounds": { + "minlat": 40.8099249, + "minlon": -74.0035011, + "maxlat": 40.8106774, + "maxlon": -74.0020293 + }, + "nodes": [ + 103872944, + 5481884070, + 7475993719, + 2325759611, + 5481884073, + 103858382, + 5481884061, + 103860896 + ], + "geometry": [ + { "lat": 40.8106774, "lon": -74.0035011 }, + { "lat": 40.8106514, "lon": -74.0034040 }, + { "lat": 40.8106341, "lon": -74.0033513 }, + { "lat": 40.8106127, "lon": -74.0032855 }, + { "lat": 40.8105927, "lon": -74.0032369 }, + { "lat": 40.8103296, "lon": -74.0027553 }, + { "lat": 40.8100764, "lon": -74.0022976 }, + { "lat": 40.8099249, "lon": -74.0020293 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "name_1": "Kennedy Boulevard", + "sidewalk:both": "separate", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 276814759, + "bounds": { + "minlat": 40.8092144, + "minlon": -74.0075999, + "maxlat": 40.8096265, + "maxlon": -74.0072430 + }, + "nodes": [ + 103872657, + 7475993583, + 2813943236, + 2813943238, + 103872928, + 2325759530, + 103872929, + 103872930 + ], + "geometry": [ + { "lat": 40.8092144, "lon": -74.0075999 }, + { "lat": 40.8092721, "lon": -74.0075345 }, + { "lat": 40.8093400, "lon": -74.0074597 }, + { "lat": 40.8093892, "lon": -74.0074272 }, + { "lat": 40.8094666, "lon": -74.0073653 }, + { "lat": 40.8095489, "lon": -74.0072998 }, + { "lat": 40.8096007, "lon": -74.0072659 }, + { "lat": 40.8096265, "lon": -74.0072430 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "oneway": "yes", + "ref": "CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 276814760, + "bounds": { + "minlat": 40.8092144, + "minlon": -74.0075999, + "maxlat": 40.8098006, + "maxlon": -74.0071328 + }, + "nodes": [ + 2813943250, + 2813943246, + 2813943242, + 2813943241, + 2813943240, + 2813943239, + 2813943237, + 7475993584, + 103872657 + ], + "geometry": [ + { "lat": 40.8098006, "lon": -74.0071328 }, + { "lat": 40.8097128, "lon": -74.0072758 }, + { "lat": 40.8096444, "lon": -74.0073630 }, + { "lat": 40.8096020, "lon": -74.0073940 }, + { "lat": 40.8095239, "lon": -74.0074588 }, + { "lat": 40.8094438, "lon": -74.0075229 }, + { "lat": 40.8093543, "lon": -74.0075787 }, + { "lat": 40.8092866, "lon": -74.0075896 }, + { "lat": 40.8092144, "lon": -74.0075999 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "oneway": "yes", + "ref": "CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814761, + "bounds": { + "minlat": 40.8105475, + "minlon": -74.0050569, + "maxlat": 40.8107413, + "maxlon": -74.0035011 + }, + "nodes": [ + 2813943258, + 7475993657, + 2813943260, + 2813943262, + 2813943266, + 2813943268, + 2813943267, + 2813943264, + 2813943263, + 103872944 + ], + "geometry": [ + { "lat": 40.8105475, "lon": -74.0050569 }, + { "lat": 40.8105837, "lon": -74.0049575 }, + { "lat": 40.8106093, "lon": -74.0048948 }, + { "lat": 40.8106735, "lon": -74.0046708 }, + { "lat": 40.8107263, "lon": -74.0044503 }, + { "lat": 40.8107413, "lon": -74.0042550 }, + { "lat": 40.8107399, "lon": -74.0040947 }, + { "lat": 40.8107130, "lon": -74.0038413 }, + { "lat": 40.8106837, "lon": -74.0036756 }, + { "lat": 40.8106774, "lon": -74.0035011 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "name_1": "Kennedy Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 276814762, + "bounds": { + "minlat": 40.8096949, + "minlon": -74.0067563, + "maxlat": 40.8100874, + "maxlon": -74.0057940 + }, + "nodes": [ + 2813943254, + 7475993617, + 2813943252, + 2813943251, + 2813943249, + 2813943247, + 2813943245, + 2813943243, + 2813943244, + 2813943248, + 7475993618, + 103872932 + ], + "geometry": [ + { "lat": 40.8100874, "lon": -74.0057940 }, + { "lat": 40.8100520, "lon": -74.0058276 }, + { "lat": 40.8098737, "lon": -74.0059971 }, + { "lat": 40.8098168, "lon": -74.0060970 }, + { "lat": 40.8097643, "lon": -74.0062216 }, + { "lat": 40.8097323, "lon": -74.0063003 }, + { "lat": 40.8097047, "lon": -74.0063873 }, + { "lat": 40.8096949, "lon": -74.0065166 }, + { "lat": 40.8097020, "lon": -74.0065906 }, + { "lat": 40.8097572, "lon": -74.0066693 }, + { "lat": 40.8098600, "lon": -74.0067333 }, + { "lat": 40.8098968, "lon": -74.0067563 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 276814763, + "bounds": { + "minlat": 40.8047100, + "minlon": -74.0076050, + "maxlat": 40.8061996, + "maxlon": -74.0066010 + }, + "nodes": [ + 103867149, + 103880566 + ], + "geometry": [ + { "lat": 40.8061996, "lon": -74.0066010 }, + { "lat": 40.8047100, "lon": -74.0076050 } + ], + "tags": { + "highway": "residential", + "name": "3rd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814764, + "bounds": { + "minlat": 40.8093879, + "minlon": -74.0044199, + "maxlat": 40.8099960, + "maxlon": -74.0040020 + }, + "nodes": [ + 103865021, + 7475993636, + 103880573 + ], + "geometry": [ + { "lat": 40.8099960, "lon": -74.0040020 }, + { "lat": 40.8094387, "lon": -74.0043850 }, + { "lat": 40.8093879, "lon": -74.0044199 } + ], + "tags": { + "highway": "residential", + "name": "3rd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814765, + "bounds": { + "minlat": 40.8061996, + "minlon": -74.0066010, + "maxlat": 40.8076084, + "maxlon": -74.0056393 + }, + "nodes": [ + 103880569, + 103867149 + ], + "geometry": [ + { "lat": 40.8076084, "lon": -74.0056393 }, + { "lat": 40.8061996, "lon": -74.0066010 } + ], + "tags": { + "highway": "residential", + "name": "3rd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814766, + "bounds": { + "minlat": 40.8034552, + "minlon": -74.0084919, + "maxlat": 40.8047100, + "maxlon": -74.0076050 + }, + "nodes": [ + 103880566, + 103861029 + ], + "geometry": [ + { "lat": 40.8047100, "lon": -74.0076050 }, + { "lat": 40.8034552, "lon": -74.0084919 } + ], + "tags": { + "highway": "residential", + "name": "3rd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814767, + "bounds": { + "minlat": 40.8088938, + "minlon": -74.0047632, + "maxlat": 40.8093879, + "maxlon": -74.0044199 + }, + "nodes": [ + 103880573, + 103876928 + ], + "geometry": [ + { "lat": 40.8093879, "lon": -74.0044199 }, + { "lat": 40.8088938, "lon": -74.0047632 } + ], + "tags": { + "highway": "residential", + "name": "3rd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814768, + "bounds": { + "minlat": 40.8076084, + "minlon": -74.0056393, + "maxlat": 40.8088938, + "maxlon": -74.0047632 + }, + "nodes": [ + 103876928, + 103880571, + 103880569 + ], + "geometry": [ + { "lat": 40.8088938, "lon": -74.0047632 }, + { "lat": 40.8084900, "lon": -74.0050180 }, + { "lat": 40.8076084, "lon": -74.0056393 } + ], + "tags": { + "highway": "residential", + "name": "3rd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814769, + "bounds": { + "minlat": 40.7999464, + "minlon": -74.0127675, + "maxlat": 40.8002848, + "maxlon": -74.0120501 + }, + "nodes": [ + 103867941, + 7678636819, + 103867943 + ], + "geometry": [ + { "lat": 40.7999464, "lon": -74.0120501 }, + { "lat": 40.8002589, "lon": -74.0127126 }, + { "lat": 40.8002848, "lon": -74.0127675 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09081168", + "highway": "residential", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814770, + "bounds": { + "minlat": 40.7992789, + "minlon": -74.0113246, + "maxlat": 40.7996117, + "maxlon": -74.0105941 + }, + "nodes": [ + 103867938, + 7678636791, + 103867939 + ], + "geometry": [ + { "lat": 40.7992789, "lon": -74.0105941 }, + { "lat": 40.7992980, "lon": -74.0106359 }, + { "lat": 40.7996117, "lon": -74.0113246 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09081168", + "highway": "residential", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814771, + "bounds": { + "minlat": 40.7996117, + "minlon": -74.0120501, + "maxlat": 40.7999464, + "maxlon": -74.0113246 + }, + "nodes": [ + 103867939, + 7678636803, + 103867941 + ], + "geometry": [ + { "lat": 40.7996117, "lon": -74.0113246 }, + { "lat": 40.7996417, "lon": -74.0113896 }, + { "lat": 40.7999464, "lon": -74.0120501 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09081168", + "highway": "residential", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814772, + "bounds": { + "minlat": 40.7989431, + "minlon": -74.0105941, + "maxlat": 40.7992789, + "maxlon": -74.0098598 + }, + "nodes": [ + 103867937, + 103867938 + ], + "geometry": [ + { "lat": 40.7989431, "lon": -74.0098598 }, + { "lat": 40.7992789, "lon": -74.0105941 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09081168", + "highway": "residential", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814773, + "bounds": { + "minlat": 40.8064718, + "minlon": -74.0158302, + "maxlat": 40.8071276, + "maxlon": -74.0140892 + }, + "nodes": [ + 103875666, + 103884872, + 9516003629 + ], + "geometry": [ + { "lat": 40.8064718, "lon": -74.0140892 }, + { "lat": 40.8065100, "lon": -74.0141720 }, + { "lat": 40.8071276, "lon": -74.0158302 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "81st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "81st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814774, + "bounds": { + "minlat": 40.8098884, + "minlon": -74.0057940, + "maxlat": 40.8100874, + "maxlon": -74.0054066 + }, + "nodes": [ + 103882303, + 2813943254 + ], + "geometry": [ + { "lat": 40.8098884, "lon": -74.0054066 }, + { "lat": 40.8100874, "lon": -74.0057940 } + ], + "tags": { + "highway": "residential", + "name": "90th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "90th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814775, + "bounds": { + "minlat": 40.8093879, + "minlon": -74.0054066, + "maxlat": 40.8098884, + "maxlon": -74.0044199 + }, + "nodes": [ + 103880573, + 7475993639, + 103882303 + ], + "geometry": [ + { "lat": 40.8093879, "lon": -74.0044199 }, + { "lat": 40.8094206, "lon": -74.0044843 }, + { "lat": 40.8098884, "lon": -74.0054066 } + ], + "tags": { + "highway": "residential", + "name": "90th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "90th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814776, + "bounds": { + "minlat": 40.8090538, + "minlon": -74.0044199, + "maxlat": 40.8093879, + "maxlon": -74.0036304 + }, + "nodes": [ + 103873578, + 7475993725, + 7475993727, + 103880573 + ], + "geometry": [ + { "lat": 40.8090538, "lon": -74.0036304 }, + { "lat": 40.8090786, "lon": -74.0037050 }, + { "lat": 40.8093583, "lon": -74.0043514 }, + { "lat": 40.8093879, "lon": -74.0044199 } + ], + "tags": { + "highway": "residential", + "name": "90th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "90th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814777, + "bounds": { + "minlat": 40.8100874, + "minlon": -74.0059952, + "maxlat": 40.8102729, + "maxlon": -74.0057940 + }, + "nodes": [ + 2813943254, + 12456261977, + 7475993609, + 103872934, + 2813943257 + ], + "geometry": [ + { "lat": 40.8100874, "lon": -74.0057940 }, + { "lat": 40.8101352, "lon": -74.0058569 }, + { "lat": 40.8101698, "lon": -74.0058930 }, + { "lat": 40.8102148, "lon": -74.0059449 }, + { "lat": 40.8102729, "lon": -74.0059952 } + ], + "tags": { + "highway": "residential", + "name": "90th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "90th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276814778, + "bounds": { + "minlat": 40.8099960, + "minlon": -74.0051509, + "maxlat": 40.8106033, + "maxlon": -74.0040020 + }, + "nodes": [ + 103865023, + 2813943258, + 7475993632, + 12456261917, + 7475993634, + 103865021 + ], + "geometry": [ + { "lat": 40.8106033, "lon": -74.0051509 }, + { "lat": 40.8105475, "lon": -74.0050569 }, + { "lat": 40.8105120, "lon": -74.0049890 }, + { "lat": 40.8100501, "lon": -74.0041050 }, + { "lat": 40.8100376, "lon": -74.0040810 }, + { "lat": 40.8099960, "lon": -74.0040020 } + ], + "tags": { + "highway": "residential", + "name": "91st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "91st", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 276821048, + "bounds": { + "minlat": 40.8006994, + "minlon": -74.0190375, + "maxlat": 40.8009460, + "maxlon": -74.0188350 + }, + "nodes": [ + 103875588, + 103875589 + ], + "geometry": [ + { "lat": 40.8006994, "lon": -74.0190375 }, + { "lat": 40.8009460, "lon": -74.0188350 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821050, + "bounds": { + "minlat": 40.7987034, + "minlon": -74.0180125, + "maxlat": 40.7999910, + "maxlon": -74.0169380 + }, + "nodes": [ + 103868002, + 103873541 + ], + "geometry": [ + { "lat": 40.7987034, "lon": -74.0180125 }, + { "lat": 40.7999910, "lon": -74.0169380 } + ], + "tags": { + "highway": "residential", + "name": "Newkirk Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Newkirk", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821051, + "bounds": { + "minlat": 40.8072720, + "minlon": -74.0048240, + "maxlat": 40.8090538, + "maxlon": -74.0036304 + }, + "nodes": [ + 103873576, + 103873578 + ], + "geometry": [ + { "lat": 40.8072720, "lon": -74.0048240 }, + { "lat": 40.8090538, "lon": -74.0036304 } + ], + "tags": { + "highway": "residential", + "name": "2nd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821052, + "bounds": { + "minlat": 40.8090538, + "minlon": -74.0036304, + "maxlat": 40.8103296, + "maxlon": -74.0027553 + }, + "nodes": [ + 103873578, + 7475993723, + 5481884074, + 7475993721, + 13523977052, + 103858382 + ], + "geometry": [ + { "lat": 40.8090538, "lon": -74.0036304 }, + { "lat": 40.8091075, "lon": -74.0035932 }, + { "lat": 40.8099336, "lon": -74.0030204 }, + { "lat": 40.8102414, "lon": -74.0028144 }, + { "lat": 40.8102517, "lon": -74.0028075 }, + { "lat": 40.8103296, "lon": -74.0027553 } + ], + "tags": { + "highway": "residential", + "name": "2nd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821053, + "bounds": { + "minlat": 40.8058794, + "minlon": -74.0058055, + "maxlat": 40.8072720, + "maxlon": -74.0048240 + }, + "nodes": [ + 103867147, + 103873576 + ], + "geometry": [ + { "lat": 40.8058794, "lon": -74.0058055 }, + { "lat": 40.8072720, "lon": -74.0048240 } + ], + "tags": { + "highway": "residential", + "name": "2nd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821054, + "bounds": { + "minlat": 40.8043890, + "minlon": -74.0067970, + "maxlat": 40.8058794, + "maxlon": -74.0058055 + }, + "nodes": [ + 103873574, + 103867147 + ], + "geometry": [ + { "lat": 40.8043890, "lon": -74.0067970 }, + { "lat": 40.8058794, "lon": -74.0058055 } + ], + "tags": { + "highway": "residential", + "name": "2nd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821055, + "bounds": { + "minlat": 40.8036414, + "minlon": -74.0073051, + "maxlat": 40.8043890, + "maxlon": -74.0067970 + }, + "nodes": [ + 103873572, + 103873574 + ], + "geometry": [ + { "lat": 40.8036414, "lon": -74.0073051 }, + { "lat": 40.8043890, "lon": -74.0067970 } + ], + "tags": { + "highway": "residential", + "name": "2nd Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821061, + "bounds": { + "minlat": 40.8041566, + "minlon": -74.0100522, + "maxlat": 40.8053528, + "maxlon": -74.0092212 + }, + "nodes": [ + 103880597, + 7475979748, + 7475979750, + 103876390 + ], + "geometry": [ + { "lat": 40.8053528, "lon": -74.0092212 }, + { "lat": 40.8053014, "lon": -74.0092569 }, + { "lat": 40.8042126, "lon": -74.0100133 }, + { "lat": 40.8041566, "lon": -74.0100522 } + ], + "tags": { + "highway": "residential", + "name": "5th Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821064, + "bounds": { + "minlat": 40.8053528, + "minlon": -74.0092212, + "maxlat": 40.8068337, + "maxlon": -74.0082024 + }, + "nodes": [ + 103867153, + 7475979783, + 7475993387, + 103880597 + ], + "geometry": [ + { "lat": 40.8068337, "lon": -74.0082024 }, + { "lat": 40.8067670, "lon": -74.0082483 }, + { "lat": 40.8054085, "lon": -74.0091829 }, + { "lat": 40.8053528, "lon": -74.0092212 } + ], + "tags": { + "highway": "residential", + "name": "5th Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821065, + "bounds": { + "minlat": 40.8068337, + "minlon": -74.0082024, + "maxlat": 40.8082350, + "maxlon": -74.0072454 + }, + "nodes": [ + 103880917, + 7475993455, + 7475993453, + 103867153 + ], + "geometry": [ + { "lat": 40.8082350, "lon": -74.0072454 }, + { "lat": 40.8081770, "lon": -74.0072850 }, + { "lat": 40.8068969, "lon": -74.0081592 }, + { "lat": 40.8068337, "lon": -74.0082024 } + ], + "tags": { + "highway": "residential", + "name": "5th Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821066, + "bounds": { + "minlat": 40.8018722, + "minlon": -74.0118922, + "maxlat": 40.8035102, + "maxlon": -74.0105811 + }, + "nodes": [ + 103868230, + 7474656034, + 2813992727, + 7474656036, + 103881365 + ], + "geometry": [ + { "lat": 40.8035102, "lon": -74.0105811 }, + { "lat": 40.8034641, "lon": -74.0106190 }, + { "lat": 40.8027382, "lon": -74.0112160 }, + { "lat": 40.8019305, "lon": -74.0118467 }, + { "lat": 40.8018722, "lon": -74.0118922 } + ], + "tags": { + "highway": "residential", + "name": "5th Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821067, + "bounds": { + "minlat": 40.8035102, + "minlon": -74.0105811, + "maxlat": 40.8041566, + "maxlon": -74.0100522 + }, + "nodes": [ + 103876390, + 7474656063, + 2813992728, + 7474656159, + 5344617803, + 103868230 + ], + "geometry": [ + { "lat": 40.8041566, "lon": -74.0100522 }, + { "lat": 40.8041195, "lon": -74.0100808 }, + { "lat": 40.8037497, "lon": -74.0103657 }, + { "lat": 40.8036209, "lon": -74.0104815 }, + { "lat": 40.8035710, "lon": -74.0105264 }, + { "lat": 40.8035102, "lon": -74.0105811 } + ], + "tags": { + "highway": "residential", + "name": "5th Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821068, + "bounds": { + "minlat": 40.7973700, + "minlon": -74.0066520, + "maxlat": 40.7982060, + "maxlon": -74.0048720 + }, + "nodes": [ + 103885411, + 7678310874, + 7678310877, + 103855707 + ], + "geometry": [ + { "lat": 40.7982060, "lon": -74.0066520 }, + { "lat": 40.7981742, "lon": -74.0065844 }, + { "lat": 40.7974129, "lon": -74.0049634 }, + { "lat": 40.7973700, "lon": -74.0048720 } + ], + "tags": { + "highway": "residential", + "name": "75th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "75th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821069, + "bounds": { + "minlat": 40.7982060, + "minlon": -74.0085980, + "maxlat": 40.7991200, + "maxlon": -74.0066520 + }, + "nodes": [ + 103866656, + 3809706338, + 7289750276, + 103885411 + ], + "geometry": [ + { "lat": 40.7991200, "lon": -74.0085980 }, + { "lat": 40.7990787, "lon": -74.0085101 }, + { "lat": 40.7982329, "lon": -74.0067094 }, + { "lat": 40.7982060, "lon": -74.0066520 } + ], + "tags": { + "highway": "residential", + "name": "75th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "75th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821070, + "bounds": { + "minlat": 40.7987864, + "minlon": -74.0077676, + "maxlat": 40.7995517, + "maxlon": -74.0061728 + }, + "nodes": [ + 2577450300, + 7678477562, + 103881374 + ], + "geometry": [ + { "lat": 40.7995517, "lon": -74.0077676 }, + { "lat": 40.7988203, "lon": -74.0062435 }, + { "lat": 40.7987864, "lon": -74.0061728 } + ], + "tags": { + "highway": "residential", + "name": "76th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821071, + "bounds": { + "minlat": 40.7979580, + "minlon": -74.0061728, + "maxlat": 40.7987864, + "maxlon": -74.0044000 + }, + "nodes": [ + 103881374, + 7678484092, + 7678310883, + 103855708 + ], + "geometry": [ + { "lat": 40.7987864, "lon": -74.0061728 }, + { "lat": 40.7987541, "lon": -74.0061036 }, + { "lat": 40.7979948, "lon": -74.0044788 }, + { "lat": 40.7979580, "lon": -74.0044000 } + ], + "tags": { + "highway": "residential", + "name": "76th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821072, + "bounds": { + "minlat": 40.7952021, + "minlon": -74.0006757, + "maxlat": 40.7962093, + "maxlon": -73.9985156 + }, + "nodes": [ + 103881371, + 7468583840, + 7468583842, + 103870456 + ], + "geometry": [ + { "lat": 40.7962093, "lon": -74.0006757 }, + { "lat": 40.7961493, "lon": -74.0005492 }, + { "lat": 40.7952556, "lon": -73.9986303 }, + { "lat": 40.7952021, "lon": -73.9985156 } + ], + "tags": { + "highway": "residential", + "name": "76th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821073, + "bounds": { + "minlat": 40.7962093, + "minlon": -74.0026578, + "maxlat": 40.7971370, + "maxlon": -74.0006757 + }, + "nodes": [ + 103862635, + 7678477397, + 7678477399, + 103881371 + ], + "geometry": [ + { "lat": 40.7971370, "lon": -74.0026578 }, + { "lat": 40.7970757, "lon": -74.0025265 }, + { "lat": 40.7962521, "lon": -74.0007672 }, + { "lat": 40.7962093, "lon": -74.0006757 } + ], + "tags": { + "highway": "residential", + "name": "76th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821074, + "bounds": { + "minlat": 40.7971370, + "minlon": -74.0044000, + "maxlat": 40.7979580, + "maxlon": -74.0026578 + }, + "nodes": [ + 103855708, + 7678477457, + 7678477459, + 103862635 + ], + "geometry": [ + { "lat": 40.7979580, "lon": -74.0044000 }, + { "lat": 40.7979227, "lon": -74.0043251 }, + { "lat": 40.7971834, "lon": -74.0027557 }, + { "lat": 40.7971370, "lon": -74.0026578 } + ], + "tags": { + "highway": "residential", + "name": "76th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821075, + "bounds": { + "minlat": 40.8038120, + "minlon": -74.0100522, + "maxlat": 40.8041566, + "maxlon": -74.0092768 + }, + "nodes": [ + 103876390, + 103876388 + ], + "geometry": [ + { "lat": 40.8041566, "lon": -74.0100522 }, + { "lat": 40.8038120, "lon": -74.0092768 } + ], + "tags": { + "highway": "residential", + "name": "80th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "80th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821076, + "bounds": { + "minlat": 40.8030964, + "minlon": -74.0084919, + "maxlat": 40.8034552, + "maxlon": -74.0076929 + }, + "nodes": [ + 103861029, + 7474656151, + 103873570 + ], + "geometry": [ + { "lat": 40.8034552, "lon": -74.0084919 }, + { "lat": 40.8034275, "lon": -74.0084301 }, + { "lat": 40.8030964, "lon": -74.0076929 } + ], + "tags": { + "highway": "residential", + "name": "80th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "80th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276821077, + "bounds": { + "minlat": 40.8034552, + "minlon": -74.0092768, + "maxlat": 40.8038120, + "maxlon": -74.0084919 + }, + "nodes": [ + 103876388, + 7474656120, + 103861029 + ], + "geometry": [ + { "lat": 40.8038120, "lon": -74.0092768 }, + { "lat": 40.8034954, "lon": -74.0085804 }, + { "lat": 40.8034552, "lon": -74.0084919 } + ], + "tags": { + "highway": "residential", + "name": "80th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "80th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276827059, + "bounds": { + "minlat": 40.7989431, + "minlon": -74.0098598, + "maxlat": 40.8004130, + "maxlon": -74.0087150 + }, + "nodes": [ + 103881357, + 7678629979, + 7678629981, + 103867937 + ], + "geometry": [ + { "lat": 40.8004130, "lon": -74.0087150 }, + { "lat": 40.8003534, "lon": -74.0087614 }, + { "lat": 40.7989842, "lon": -74.0098278 }, + { "lat": 40.7989431, "lon": -74.0098598 } + ], + "tags": { + "highway": "residential", + "name": "1st Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276882041, + "bounds": { + "minlat": 40.7999910, + "minlon": -74.0179890, + "maxlat": 40.8004939, + "maxlon": -74.0169380 + }, + "nodes": [ + 103873541, + 7474498860, + 103873543 + ], + "geometry": [ + { "lat": 40.7999910, "lon": -74.0169380 }, + { "lat": 40.8004716, "lon": -74.0179425 }, + { "lat": 40.8004939, "lon": -74.0179890 } + ], + "tags": { + "highway": "residential", + "name": "72nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "72nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276882042, + "bounds": { + "minlat": 40.7995472, + "minlon": -74.0162115, + "maxlat": 40.7996517, + "maxlon": -74.0159507 + }, + "nodes": [ + 103873537, + 7474498861, + 103873539 + ], + "geometry": [ + { "lat": 40.7995472, "lon": -74.0159507 }, + { "lat": 40.7995490, "lon": -74.0159756 }, + { "lat": 40.7996517, "lon": -74.0162115 } + ], + "tags": { + "highway": "residential", + "name": "72nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "72nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276882043, + "bounds": { + "minlat": 40.7996517, + "minlon": -74.0169380, + "maxlat": 40.7999910, + "maxlon": -74.0162115 + }, + "nodes": [ + 103873539, + 103873541 + ], + "geometry": [ + { "lat": 40.7996517, "lon": -74.0162115 }, + { "lat": 40.7999910, "lon": -74.0169380 } + ], + "tags": { + "highway": "residential", + "name": "72nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "72nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276882044, + "bounds": { + "minlat": 40.7968141, + "minlon": -74.0021830, + "maxlat": 40.7977242, + "maxlon": -74.0002558 + }, + "nodes": [ + 103883598, + 7678477425, + 7678477410, + 103862637 + ], + "geometry": [ + { "lat": 40.7968141, "lon": -74.0002558 }, + { "lat": 40.7968539, "lon": -74.0003401 }, + { "lat": 40.7976629, "lon": -74.0020527 }, + { "lat": 40.7977242, "lon": -74.0021830 } + ], + "tags": { + "highway": "residential", + "name": "77th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "77th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888668, + "bounds": { + "minlat": 40.7991300, + "minlon": -74.0034600, + "maxlat": 40.7997246, + "maxlon": -74.0029657 + }, + "nodes": [ + 103855710, + 7678477433, + 4727867820, + 103855711 + ], + "geometry": [ + { "lat": 40.7991300, "lon": -74.0034600 }, + { "lat": 40.7991908, "lon": -74.0034100 }, + { "lat": 40.7996706, "lon": -74.0030149 }, + { "lat": 40.7997246, "lon": -74.0029657 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888669, + "bounds": { + "minlat": 40.7985418, + "minlon": -74.0039236, + "maxlat": 40.7991300, + "maxlon": -74.0034600 + }, + "nodes": [ + 103855709, + 7678477449, + 7678484099, + 103855710 + ], + "geometry": [ + { "lat": 40.7985418, "lon": -74.0039236 }, + { "lat": 40.7985990, "lon": -74.0038785 }, + { "lat": 40.7990831, "lon": -74.0034970 }, + { "lat": 40.7991300, "lon": -74.0034600 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888670, + "bounds": { + "minlat": 40.7944485, + "minlon": -74.0072586, + "maxlat": 40.7950337, + "maxlon": -74.0067825 + }, + "nodes": [ + 103855695, + 7653988942, + 7653988940, + 103855697 + ], + "geometry": [ + { "lat": 40.7944485, "lon": -74.0072586 }, + { "lat": 40.7945098, "lon": -74.0072087 }, + { "lat": 40.7949848, "lon": -74.0068222 }, + { "lat": 40.7950337, "lon": -74.0067825 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888671, + "bounds": { + "minlat": 40.7979580, + "minlon": -74.0044000, + "maxlat": 40.7985418, + "maxlon": -74.0039236 + }, + "nodes": [ + 103855708, + 7678477455, + 103855709 + ], + "geometry": [ + { "lat": 40.7979580, "lon": -74.0044000 }, + { "lat": 40.7984877, "lon": -74.0039677 }, + { "lat": 40.7985418, "lon": -74.0039236 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888672, + "bounds": { + "minlat": 40.7938694, + "minlon": -74.0077180, + "maxlat": 40.7944485, + "maxlon": -74.0072586 + }, + "nodes": [ + 103855255, + 7653988955, + 7653988957, + 103855695 + ], + "geometry": [ + { "lat": 40.7938694, "lon": -74.0077180 }, + { "lat": 40.7939222, "lon": -74.0076762 }, + { "lat": 40.7944004, "lon": -74.0072968 }, + { "lat": 40.7944485, "lon": -74.0072586 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888673, + "bounds": { + "minlat": 40.7967845, + "minlon": -74.0053509, + "maxlat": 40.7973700, + "maxlon": -74.0048720 + }, + "nodes": [ + 103855705, + 7678477474, + 103855707 + ], + "geometry": [ + { "lat": 40.7967845, "lon": -74.0053509 }, + { "lat": 40.7968414, "lon": -74.0052949 }, + { "lat": 40.7973700, "lon": -74.0048720 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888674, + "bounds": { + "minlat": 40.7973700, + "minlon": -74.0048720, + "maxlat": 40.7979580, + "maxlon": -74.0044000 + }, + "nodes": [ + 103855707, + 7678477606, + 103855708 + ], + "geometry": [ + { "lat": 40.7973700, "lon": -74.0048720 }, + { "lat": 40.7974266, "lon": -74.0048265 }, + { "lat": 40.7979580, "lon": -74.0044000 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888675, + "bounds": { + "minlat": 40.7962038, + "minlon": -74.0058297, + "maxlat": 40.7967845, + "maxlon": -74.0053509 + }, + "nodes": [ + 103855703, + 7678477487, + 7678477484, + 103855705 + ], + "geometry": [ + { "lat": 40.7962038, "lon": -74.0058297 }, + { "lat": 40.7962590, "lon": -74.0057842 }, + { "lat": 40.7967394, "lon": -74.0053880 }, + { "lat": 40.7967845, "lon": -74.0053509 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888676, + "bounds": { + "minlat": 40.7956188, + "minlon": -74.0063017, + "maxlat": 40.7962038, + "maxlon": -74.0058297 + }, + "nodes": [ + 103855701, + 7678477500, + 7678477498, + 103855703 + ], + "geometry": [ + { "lat": 40.7956188, "lon": -74.0063017 }, + { "lat": 40.7956734, "lon": -74.0062577 }, + { "lat": 40.7961536, "lon": -74.0058702 }, + { "lat": 40.7962038, "lon": -74.0058297 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888677, + "bounds": { + "minlat": 40.7950337, + "minlon": -74.0067825, + "maxlat": 40.7956188, + "maxlon": -74.0063017 + }, + "nodes": [ + 103855697, + 7678477513, + 7678477511, + 103855701 + ], + "geometry": [ + { "lat": 40.7950337, "lon": -74.0067825 }, + { "lat": 40.7950911, "lon": -74.0067354 }, + { "lat": 40.7955749, "lon": -74.0063377 }, + { "lat": 40.7956188, "lon": -74.0063017 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888679, + "bounds": { + "minlat": 40.8004582, + "minlon": -74.0126387, + "maxlat": 40.8011465, + "maxlon": -74.0120870 + }, + "nodes": [ + 103884419, + 103867949 + ], + "geometry": [ + { "lat": 40.8011465, "lon": -74.0120870 }, + { "lat": 40.8004582, "lon": -74.0126387 } + ], + "tags": { + "highway": "residential", + "name": "5th Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888680, + "bounds": { + "minlat": 40.8002848, + "minlon": -74.0127675, + "maxlat": 40.8004582, + "maxlon": -74.0126387 + }, + "nodes": [ + 103867949, + 7474498820, + 103867943 + ], + "geometry": [ + { "lat": 40.8004582, "lon": -74.0126387 }, + { "lat": 40.8003682, "lon": -74.0127009 }, + { "lat": 40.8002848, "lon": -74.0127675 } + ], + "tags": { + "highway": "residential", + "name": "5th Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888681, + "bounds": { + "minlat": 40.7996186, + "minlon": -74.0132984, + "maxlat": 40.8002848, + "maxlon": -74.0127675 + }, + "nodes": [ + 103867943, + 7474498818, + 103876561 + ], + "geometry": [ + { "lat": 40.8002848, "lon": -74.0127675 }, + { "lat": 40.7996764, "lon": -74.0132507 }, + { "lat": 40.7996186, "lon": -74.0132984 } + ], + "tags": { + "highway": "residential", + "name": "5th Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888684, + "bounds": { + "minlat": 40.8011465, + "minlon": -74.0120870, + "maxlat": 40.8017460, + "maxlon": -74.0116190 + }, + "nodes": [ + 103881363, + 7474629783, + 103884419 + ], + "geometry": [ + { "lat": 40.8017460, "lon": -74.0116190 }, + { "lat": 40.8016937, "lon": -74.0116599 }, + { "lat": 40.8011465, "lon": -74.0120870 } + ], + "tags": { + "highway": "residential", + "name": "5th Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888686, + "bounds": { + "minlat": 40.8090243, + "minlon": -74.0125190, + "maxlat": 40.8093822, + "maxlon": -74.0117965 + }, + "nodes": [ + 103867168, + 103867170 + ], + "geometry": [ + { "lat": 40.8090243, "lon": -74.0117965 }, + { "lat": 40.8093822, "lon": -74.0125190 } + ], + "tags": { + "highway": "residential", + "name": "85th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "85th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888687, + "bounds": { + "minlat": 40.8086685, + "minlon": -74.0117965, + "maxlat": 40.8090243, + "maxlon": -74.0110677 + }, + "nodes": [ + 103867166, + 103867168 + ], + "geometry": [ + { "lat": 40.8086685, "lon": -74.0110677 }, + { "lat": 40.8090243, "lon": -74.0117965 } + ], + "tags": { + "highway": "residential", + "name": "85th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "85th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888688, + "bounds": { + "minlat": 40.8084616, + "minlon": -74.0064803, + "maxlat": 40.8086659, + "maxlon": -74.0060642 + }, + "nodes": [ + 103872656, + 7475993539, + 103872655 + ], + "geometry": [ + { "lat": 40.8086659, "lon": -74.0064803 }, + { "lat": 40.8084943, "lon": -74.0061308 }, + { "lat": 40.8084616, "lon": -74.0060642 } + ], + "tags": { + "highway": "residential", + "name": "88th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "88th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888689, + "bounds": { + "minlat": 40.8099050, + "minlon": -74.0091347, + "maxlat": 40.8099769, + "maxlon": -74.0090030 + }, + "nodes": [ + 103872661, + 103872660 + ], + "geometry": [ + { "lat": 40.8099769, "lon": -74.0091347 }, + { "lat": 40.8099050, "lon": -74.0090030 } + ], + "tags": { + "highway": "residential", + "name": "88th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "88th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888691, + "bounds": { + "minlat": 40.8086659, + "minlon": -74.0075999, + "maxlat": 40.8092144, + "maxlon": -74.0064803 + }, + "nodes": [ + 103872657, + 7475993541, + 2325759525, + 103872656 + ], + "geometry": [ + { "lat": 40.8092144, "lon": -74.0075999 }, + { "lat": 40.8091835, "lon": -74.0074928 }, + { "lat": 40.8091706, "lon": -74.0074537 }, + { "lat": 40.8086659, "lon": -74.0064803 } + ], + "tags": { + "highway": "residential", + "name": "88th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "88th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888692, + "bounds": { + "minlat": 40.8099769, + "minlon": -74.0096950, + "maxlat": 40.8102600, + "maxlon": -74.0091347 + }, + "nodes": [ + 103872663, + 103872662, + 103872661 + ], + "geometry": [ + { "lat": 40.8102600, "lon": -74.0096950 }, + { "lat": 40.8101980, "lon": -74.0095620 }, + { "lat": 40.8099769, "lon": -74.0091347 } + ], + "tags": { + "highway": "residential", + "name": "88th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "88th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276888695, + "bounds": { + "minlat": 40.8092144, + "minlon": -74.0090030, + "maxlat": 40.8099050, + "maxlon": -74.0075999 + }, + "nodes": [ + 103872660, + 103872658, + 2325759528, + 103872657 + ], + "geometry": [ + { "lat": 40.8099050, "lon": -74.0090030 }, + { "lat": 40.8095960, "lon": -74.0083865 }, + { "lat": 40.8092551, "lon": -74.0077316 }, + { "lat": 40.8092144, "lon": -74.0075999 } + ], + "tags": { + "highway": "residential", + "name": "88th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "88th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276892637, + "bounds": { + "minlat": 40.7938455, + "minlon": -74.0003310, + "maxlat": 40.7944186, + "maxlon": -73.9985575 + }, + "nodes": [ + 103870452, + 2814557139, + 103870450, + 2902486219, + 103870448, + 103870447, + 103870446, + 103870445, + 103870444, + 103870442, + 103870440, + 2814557129, + 103870439, + 103870438, + 2814557140, + 7468539761, + 103867933 + ], + "geometry": [ + { "lat": 40.7944186, "lon": -73.9985575 }, + { "lat": 40.7943330, "lon": -73.9985987 }, + { "lat": 40.7940714, "lon": -73.9986168 }, + { "lat": 40.7939628, "lon": -73.9986256 }, + { "lat": 40.7939188, "lon": -73.9986458 }, + { "lat": 40.7938831, "lon": -73.9986912 }, + { "lat": 40.7938583, "lon": -73.9987437 }, + { "lat": 40.7938455, "lon": -73.9988034 }, + { "lat": 40.7938464, "lon": -73.9988685 }, + { "lat": 40.7938573, "lon": -73.9989372 }, + { "lat": 40.7938903, "lon": -73.9990220 }, + { "lat": 40.7940212, "lon": -73.9992662 }, + { "lat": 40.7941999, "lon": -73.9996224 }, + { "lat": 40.7943285, "lon": -73.9999213 }, + { "lat": 40.7943497, "lon": -74.0001050 }, + { "lat": 40.7943461, "lon": -74.0002189 }, + { "lat": 40.7943426, "lon": -74.0003310 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "oneway": "yes", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 276892640, + "bounds": { + "minlat": 40.7937528, + "minlon": -74.0002988, + "maxlat": 40.7944186, + "maxlon": -73.9985136 + }, + "nodes": [ + 2814557135, + 7468539760, + 2814557136, + 2814557134, + 2814557131, + 2814557124, + 2814557123, + 2814557121, + 2814557119, + 2814557116, + 2814557117, + 2902437020, + 2814557120, + 2814557122, + 2814557127, + 2814557138, + 103870452 + ], + "geometry": [ + { "lat": 40.7942425, "lon": -74.0002988 }, + { "lat": 40.7942466, "lon": -74.0001998 }, + { "lat": 40.7942503, "lon": -74.0001102 }, + { "lat": 40.7942348, "lon": -73.9999492 }, + { "lat": 40.7941389, "lon": -73.9996711 }, + { "lat": 40.7939627, "lon": -73.9993229 }, + { "lat": 40.7939267, "lon": -73.9992621 }, + { "lat": 40.7938103, "lon": -73.9990136 }, + { "lat": 40.7937654, "lon": -73.9988951 }, + { "lat": 40.7937528, "lon": -73.9988038 }, + { "lat": 40.7937649, "lon": -73.9987224 }, + { "lat": 40.7937851, "lon": -73.9986546 }, + { "lat": 40.7938182, "lon": -73.9986027 }, + { "lat": 40.7938789, "lon": -73.9985526 }, + { "lat": 40.7939433, "lon": -73.9985338 }, + { "lat": 40.7943285, "lon": -73.9985136 }, + { "lat": 40.7944186, "lon": -73.9985575 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "oneway": "yes", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 276892644, + "bounds": { + "minlat": 40.7944186, + "minlon": -73.9985575, + "maxlat": 40.7957495, + "maxlon": -73.9984933 + }, + "nodes": [ + 103870452, + 7468539764, + 103870456, + 7468539767, + 752619601 + ], + "geometry": [ + { "lat": 40.7944186, "lon": -73.9985575 }, + { "lat": 40.7945273, "lon": -73.9985445 }, + { "lat": 40.7952021, "lon": -73.9985156 }, + { "lat": 40.7953132, "lon": -73.9985112 }, + { "lat": 40.7957495, "lon": -73.9984933 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 276892645, + "bounds": { + "minlat": 40.7938573, + "minlon": -74.0008696, + "maxlat": 40.7943426, + "maxlon": -74.0003310 + }, + "nodes": [ + 103867933, + 103870437, + 103870436, + 103870435, + 2814557126, + 7468539757, + 103870434 + ], + "geometry": [ + { "lat": 40.7943426, "lon": -74.0003310 }, + { "lat": 40.7943172, "lon": -74.0004727 }, + { "lat": 40.7942589, "lon": -74.0005791 }, + { "lat": 40.7941340, "lon": -74.0007031 }, + { "lat": 40.7939831, "lon": -74.0008207 }, + { "lat": 40.7939437, "lon": -74.0008360 }, + { "lat": 40.7938573, "lon": -74.0008696 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "oneway": "yes", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 276892649, + "bounds": { + "minlat": 40.7938573, + "minlon": -74.0008696, + "maxlat": 40.7941187, + "maxlon": -74.0005870 + }, + "nodes": [ + 103870434, + 7468539756, + 2814557125, + 2814557128, + 2814557130 + ], + "geometry": [ + { "lat": 40.7938573, "lon": -74.0008696 }, + { "lat": 40.7939210, "lon": -74.0007805 }, + { "lat": 40.7939545, "lon": -74.0007338 }, + { "lat": 40.7939905, "lon": -74.0006916 }, + { "lat": 40.7941187, "lon": -74.0005870 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "oneway": "yes", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 276892652, + "bounds": { + "minlat": 40.7939627, + "minlon": -73.9993229, + "maxlat": 40.7945548, + "maxlon": -73.9988903 + }, + "nodes": [ + 2814557142, + 7468583882, + 2814557137, + 7468583881, + 2814557129, + 2814557124 + ], + "geometry": [ + { "lat": 40.7945548, "lon": -73.9988903 }, + { "lat": 40.7945401, "lon": -73.9988994 }, + { "lat": 40.7942781, "lon": -73.9990622 }, + { "lat": 40.7940738, "lon": -73.9992244 }, + { "lat": 40.7940212, "lon": -73.9992662 }, + { "lat": 40.7939627, "lon": -73.9993229 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 276892653, + "bounds": { + "minlat": 40.7959661, + "minlon": -74.0053509, + "maxlat": 40.7967845, + "maxlon": -74.0036046 + }, + "nodes": [ + 103862632, + 7678477478, + 7678477476, + 103855705 + ], + "geometry": [ + { "lat": 40.7959661, "lon": -74.0036046 }, + { "lat": 40.7960128, "lon": -74.0037040 }, + { "lat": 40.7967577, "lon": -74.0052937 }, + { "lat": 40.7967845, "lon": -74.0053509 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081168", + "highway": "residential", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276892655, + "bounds": { + "minlat": 40.7949926, + "minlon": -74.0033859, + "maxlat": 40.7958674, + "maxlon": -74.0015247 + }, + "nodes": [ + 103867934, + 7678472876, + 12517662665, + 6917350902 + ], + "geometry": [ + { "lat": 40.7949926, "lon": -74.0015247 }, + { "lat": 40.7950332, "lon": -74.0016111 }, + { "lat": 40.7957919, "lon": -74.0032252 }, + { "lat": 40.7958674, "lon": -74.0033859 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081168", + "highway": "tertiary", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276892658, + "bounds": { + "minlat": 40.7967845, + "minlon": -74.0071140, + "maxlat": 40.7976240, + "maxlon": -74.0053509 + }, + "nodes": [ + 103855705, + 7678310868, + 7678310869, + 103867935 + ], + "geometry": [ + { "lat": 40.7967845, "lon": -74.0053509 }, + { "lat": 40.7968261, "lon": -74.0054383 }, + { "lat": 40.7975954, "lon": -74.0070539 }, + { "lat": 40.7976240, "lon": -74.0071140 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081168", + "highway": "residential", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276892661, + "bounds": { + "minlat": 40.7976240, + "minlon": -74.0090433, + "maxlat": 40.7985268, + "maxlon": -74.0071140 + }, + "nodes": [ + 103867935, + 7289750277, + 103867936, + 3809706335, + 103866654 + ], + "geometry": [ + { "lat": 40.7976240, "lon": -74.0071140 }, + { "lat": 40.7976547, "lon": -74.0071773 }, + { "lat": 40.7979830, "lon": -74.0078540 }, + { "lat": 40.7984892, "lon": -74.0089610 }, + { "lat": 40.7985268, "lon": -74.0090433 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081168", + "highway": "residential", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276892665, + "bounds": { + "minlat": 40.8090991, + "minlon": -74.0104072, + "maxlat": 40.8094525, + "maxlon": -74.0096736 + }, + "nodes": [ + 103876829, + 7475993482, + 7475993480, + 103876463 + ], + "geometry": [ + { "lat": 40.8090991, "lon": -74.0096736 }, + { "lat": 40.8091278, "lon": -74.0097334 }, + { "lat": 40.8094217, "lon": -74.0103434 }, + { "lat": 40.8094525, "lon": -74.0104072 } + ], + "tags": { + "highway": "residential", + "name": "86th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "86th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276892670, + "bounds": { + "minlat": 40.8087322, + "minlon": -74.0096736, + "maxlat": 40.8090991, + "maxlon": -74.0089505 + }, + "nodes": [ + 103862798, + 7475993493, + 7475993491, + 103876829 + ], + "geometry": [ + { "lat": 40.8087322, "lon": -74.0089505 }, + { "lat": 40.8087561, "lon": -74.0089993 }, + { "lat": 40.8090704, "lon": -74.0096173 }, + { "lat": 40.8090991, "lon": -74.0096736 } + ], + "tags": { + "highway": "residential", + "name": "86th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "86th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276892672, + "bounds": { + "minlat": 40.8105188, + "minlon": -74.0130648, + "maxlat": 40.8107523, + "maxlon": -74.0125639 + }, + "nodes": [ + 103867273, + 12456262171, + 12456223753, + 103867743 + ], + "geometry": [ + { "lat": 40.8105188, "lon": -74.0125639 }, + { "lat": 40.8106971, "lon": -74.0129462 }, + { "lat": 40.8107124, "lon": -74.0129791 }, + { "lat": 40.8107523, "lon": -74.0130648 } + ], + "tags": { + "highway": "residential", + "name": "86th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "86th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 276892675, + "bounds": { + "minlat": 40.8097990, + "minlon": -74.0118530, + "maxlat": 40.8101540, + "maxlon": -74.0111310 + }, + "nodes": [ + 103875624, + 103881841 + ], + "geometry": [ + { "lat": 40.8097990, "lon": -74.0111310 }, + { "lat": 40.8101540, "lon": -74.0118530 } + ], + "tags": { + "highway": "residential", + "name": "86th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "86th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276892679, + "bounds": { + "minlat": 40.8101540, + "minlon": -74.0125639, + "maxlat": 40.8105188, + "maxlon": -74.0118530 + }, + "nodes": [ + 103881841, + 103867273 + ], + "geometry": [ + { "lat": 40.8101540, "lon": -74.0118530 }, + { "lat": 40.8105188, "lon": -74.0125639 } + ], + "tags": { + "highway": "residential", + "name": "86th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "86th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276892681, + "bounds": { + "minlat": 40.8094525, + "minlon": -74.0111310, + "maxlat": 40.8097990, + "maxlon": -74.0104072 + }, + "nodes": [ + 103876463, + 103875624 + ], + "geometry": [ + { "lat": 40.8094525, "lon": -74.0104072 }, + { "lat": 40.8097990, "lon": -74.0111310 } + ], + "tags": { + "highway": "residential", + "name": "86th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "86th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276892683, + "bounds": { + "minlat": 40.8107523, + "minlon": -74.0140610, + "maxlat": 40.8111944, + "maxlon": -74.0130648 + }, + "nodes": [ + 103867743, + 12456223789, + 103886324, + 10594102864, + 2814557143, + 2814557144 + ], + "geometry": [ + { "lat": 40.8107523, "lon": -74.0130648 }, + { "lat": 40.8107751, "lon": -74.0131685 }, + { "lat": 40.8108811, "lon": -74.0134008 }, + { "lat": 40.8108846, "lon": -74.0134083 }, + { "lat": 40.8110341, "lon": -74.0137332 }, + { "lat": 40.8111944, "lon": -74.0140610 } + ], + "tags": { + "highway": "residential", + "name": "86th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "86th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901099, + "bounds": { + "minlat": 40.8072472, + "minlon": -73.9969054, + "maxlat": 40.8075148, + "maxlon": -73.9964872 + }, + "nodes": [ + 103877246, + 440208033 + ], + "geometry": [ + { "lat": 40.8072472, "lon": -73.9969054 }, + { "lat": 40.8075148, "lon": -73.9964872 } + ], + "tags": { + "highway": "residential", + "name": "New York Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "New York", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901102, + "bounds": { + "minlat": 40.7987864, + "minlon": -74.0061728, + "maxlat": 40.7993715, + "maxlon": -74.0056968 + }, + "nodes": [ + 103883600, + 7678477567, + 7678477564, + 103881374 + ], + "geometry": [ + { "lat": 40.7993715, "lon": -74.0056968 }, + { "lat": 40.7993197, "lon": -74.0057348 }, + { "lat": 40.7988429, "lon": -74.0061264 }, + { "lat": 40.7987864, "lon": -74.0061728 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 276901104, + "bounds": { + "minlat": 40.7946995, + "minlon": -74.0094995, + "maxlat": 40.7952860, + "maxlon": -74.0090245 + }, + "nodes": [ + 103867985, + 7653988923, + 7653988912, + 103855257 + ], + "geometry": [ + { "lat": 40.7952860, "lon": -74.0090245 }, + { "lat": 40.7952359, "lon": -74.0090649 }, + { "lat": 40.7947603, "lon": -74.0094488 }, + { "lat": 40.7946995, "lon": -74.0094995 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 276901106, + "bounds": { + "minlat": 40.7993715, + "minlon": -74.0056968, + "maxlat": 40.7999530, + "maxlon": -74.0052240 + }, + "nodes": [ + 103877627, + 7678477593, + 7678477589, + 103883600 + ], + "geometry": [ + { "lat": 40.7999530, "lon": -74.0052240 }, + { "lat": 40.7999113, "lon": -74.0052579 }, + { "lat": 40.7994227, "lon": -74.0056552 }, + { "lat": 40.7993715, "lon": -74.0056968 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 276901109, + "bounds": { + "minlat": 40.7976240, + "minlon": -74.0071140, + "maxlat": 40.7982060, + "maxlon": -74.0066520 + }, + "nodes": [ + 103885411, + 7678477547, + 7678477537, + 103867935 + ], + "geometry": [ + { "lat": 40.7982060, "lon": -74.0066520 }, + { "lat": 40.7981547, "lon": -74.0066927 }, + { "lat": 40.7976777, "lon": -74.0070714 }, + { "lat": 40.7976240, "lon": -74.0071140 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 276901112, + "bounds": { + "minlat": 40.7970190, + "minlon": -74.0075940, + "maxlat": 40.7976240, + "maxlon": -74.0071140 + }, + "nodes": [ + 103867935, + 7678477534, + 7678477522, + 103876559 + ], + "geometry": [ + { "lat": 40.7976240, "lon": -74.0071140 }, + { "lat": 40.7975648, "lon": -74.0071609 }, + { "lat": 40.7970801, "lon": -74.0075455 }, + { "lat": 40.7970190, "lon": -74.0075940 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 276901114, + "bounds": { + "minlat": 40.7964633, + "minlon": -74.0080668, + "maxlat": 40.7970190, + "maxlon": -74.0075940 + }, + "nodes": [ + 103876559, + 7678477524, + 7678477526, + 103873528 + ], + "geometry": [ + { "lat": 40.7970190, "lon": -74.0075940 }, + { "lat": 40.7969820, "lon": -74.0076255 }, + { "lat": 40.7965084, "lon": -74.0080284 }, + { "lat": 40.7964633, "lon": -74.0080668 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 276901115, + "bounds": { + "minlat": 40.7982060, + "minlon": -74.0066520, + "maxlat": 40.7987864, + "maxlon": -74.0061728 + }, + "nodes": [ + 103881374, + 7678484093, + 7678477550, + 103885411 + ], + "geometry": [ + { "lat": 40.7987864, "lon": -74.0061728 }, + { "lat": 40.7987382, "lon": -74.0062126 }, + { "lat": 40.7982661, "lon": -74.0066023 }, + { "lat": 40.7982060, "lon": -74.0066520 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 276901116, + "bounds": { + "minlat": 40.7939644, + "minlon": -74.0100904, + "maxlat": 40.7946995, + "maxlon": -74.0094995 + }, + "nodes": [ + 103855257, + 7678243103, + 4535665200, + 7678243106, + 103869200 + ], + "geometry": [ + { "lat": 40.7946995, "lon": -74.0094995 }, + { "lat": 40.7946493, "lon": -74.0095396 }, + { "lat": 40.7942966, "lon": -74.0098218 }, + { "lat": 40.7940286, "lon": -74.0100385 }, + { "lat": 40.7939644, "lon": -74.0100904 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 276901119, + "bounds": { + "minlat": 40.7952860, + "minlon": -74.0090245, + "maxlat": 40.7958594, + "maxlon": -74.0085510 + }, + "nodes": [ + 440243584, + 7653988934, + 7653988920, + 103867985 + ], + "geometry": [ + { "lat": 40.7958594, "lon": -74.0085510 }, + { "lat": 40.7958165, "lon": -74.0085856 }, + { "lat": 40.7953383, "lon": -74.0089728 }, + { "lat": 40.7952860, "lon": -74.0090245 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 276901123, + "bounds": { + "minlat": 40.7958594, + "minlon": -74.0085510, + "maxlat": 40.7964633, + "maxlon": -74.0080668 + }, + "nodes": [ + 103873528, + 7678477528, + 440243579, + 7678477531, + 440243584 + ], + "geometry": [ + { "lat": 40.7964633, "lon": -74.0080668 }, + { "lat": 40.7964087, "lon": -74.0081087 }, + { "lat": 40.7961679, "lon": -74.0082936 }, + { "lat": 40.7959171, "lon": -74.0085029 }, + { "lat": 40.7958594, "lon": -74.0085510 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 276901126, + "bounds": { + "minlat": 40.7933849, + "minlon": -74.0105512, + "maxlat": 40.7939644, + "maxlon": -74.0100904 + }, + "nodes": [ + 103869200, + 7678242779, + 440244402, + 7678242781, + 103878363 + ], + "geometry": [ + { "lat": 40.7939644, "lon": -74.0100904 }, + { "lat": 40.7939250, "lon": -74.0101217 }, + { "lat": 40.7936749, "lon": -74.0103202 }, + { "lat": 40.7934471, "lon": -74.0105016 }, + { "lat": 40.7933849, "lon": -74.0105512 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 276901128, + "bounds": { + "minlat": 40.8040780, + "minlon": -74.0060170, + "maxlat": 40.8055603, + "maxlon": -74.0049996 + }, + "nodes": [ + 103867144, + 103880593 + ], + "geometry": [ + { "lat": 40.8055603, "lon": -74.0049996 }, + { "lat": 40.8040780, "lon": -74.0060170 } + ], + "tags": { + "highway": "residential", + "name": "1st Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901136, + "bounds": { + "minlat": 40.7979111, + "minlon": -74.0118320, + "maxlat": 40.7989590, + "maxlon": -74.0095240 + }, + "nodes": [ + 103861912, + 7653964070, + 7207762888, + 7653964065, + 103866652 + ], + "geometry": [ + { "lat": 40.7989590, "lon": -74.0118320 }, + { "lat": 40.7989256, "lon": -74.0117581 }, + { "lat": 40.7982412, "lon": -74.0102511 }, + { "lat": 40.7979620, "lon": -74.0096362 }, + { "lat": 40.7979111, "lon": -74.0095240 } + ], + "tags": { + "highway": "residential", + "name": "73rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "73rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901138, + "bounds": { + "minlat": 40.7989590, + "minlon": -74.0126260, + "maxlat": 40.7993210, + "maxlon": -74.0118320 + }, + "nodes": [ + 103876560, + 103861912 + ], + "geometry": [ + { "lat": 40.7993210, "lon": -74.0126260 }, + { "lat": 40.7989590, "lon": -74.0118320 } + ], + "tags": { + "highway": "residential", + "name": "73rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "73rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901141, + "bounds": { + "minlat": 40.7938573, + "minlon": -74.0019508, + "maxlat": 40.7943755, + "maxlon": -74.0008696 + }, + "nodes": [ + 103876556, + 7468583796, + 7468583786, + 103870434 + ], + "geometry": [ + { "lat": 40.7943755, "lon": -74.0019508 }, + { "lat": 40.7943160, "lon": -74.0018266 }, + { "lat": 40.7939037, "lon": -74.0009665 }, + { "lat": 40.7938573, "lon": -74.0008696 } + ], + "tags": { + "highway": "residential", + "name": "73rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "73rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901143, + "bounds": { + "minlat": 40.7953855, + "minlon": -74.0058297, + "maxlat": 40.7962038, + "maxlon": -74.0040741 + }, + "nodes": [ + 103855703, + 7678477489, + 6917350858, + 6917350874, + 8389212919, + 7678477492, + 103862630 + ], + "geometry": [ + { "lat": 40.7962038, "lon": -74.0058297 }, + { "lat": 40.7961748, "lon": -74.0057699 }, + { "lat": 40.7958860, "lon": -74.0051749 }, + { "lat": 40.7957187, "lon": -74.0048228 }, + { "lat": 40.7955642, "lon": -74.0044759 }, + { "lat": 40.7954301, "lon": -74.0041750 }, + { "lat": 40.7953855, "lon": -74.0040741 } + ], + "tags": { + "highway": "residential", + "name": "73rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "73rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901145, + "bounds": { + "minlat": 40.7970190, + "minlon": -74.0095240, + "maxlat": 40.7979111, + "maxlon": -74.0075940 + }, + "nodes": [ + 103866652, + 3809706332, + 7289750278, + 103876559 + ], + "geometry": [ + { "lat": 40.7979111, "lon": -74.0095240 }, + { "lat": 40.7978774, "lon": -74.0094187 }, + { "lat": 40.7970547, "lon": -74.0076699 }, + { "lat": 40.7970190, "lon": -74.0075940 } + ], + "tags": { + "highway": "residential", + "name": "73rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "73rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901147, + "bounds": { + "minlat": 40.7962038, + "minlon": -74.0075940, + "maxlat": 40.7970190, + "maxlon": -74.0058297 + }, + "nodes": [ + 103876559, + 7678310863, + 6435581238, + 103876557, + 7678310862, + 103855703 + ], + "geometry": [ + { "lat": 40.7970190, "lon": -74.0075940 }, + { "lat": 40.7969955, "lon": -74.0075429 }, + { "lat": 40.7966373, "lon": -74.0067636 }, + { "lat": 40.7965290, "lon": -74.0065280 }, + { "lat": 40.7962405, "lon": -74.0059085 }, + { "lat": 40.7962038, "lon": -74.0058297 } + ], + "tags": { + "highway": "residential", + "name": "73rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "73rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901149, + "bounds": { + "minlat": 40.7943755, + "minlon": -74.0040741, + "maxlat": 40.7953855, + "maxlon": -74.0019508 + }, + "nodes": [ + 103862630, + 7678472855, + 6917350536, + 6917350611, + 6917350609, + 6917350642, + 7678472851, + 103876556 + ], + "geometry": [ + { "lat": 40.7953855, "lon": -74.0040741 }, + { "lat": 40.7953255, "lon": -74.0039479 }, + { "lat": 40.7952123, "lon": -74.0037121 }, + { "lat": 40.7949426, "lon": -74.0031173 }, + { "lat": 40.7948236, "lon": -74.0028705 }, + { "lat": 40.7946119, "lon": -74.0024336 }, + { "lat": 40.7944188, "lon": -74.0020393 }, + { "lat": 40.7943755, "lon": -74.0019508 } + ], + "tags": { + "highway": "residential", + "name": "73rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "73rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901155, + "bounds": { + "minlat": 40.8040780, + "minlon": -74.0067970, + "maxlat": 40.8043890, + "maxlon": -74.0060170 + }, + "nodes": [ + 103880593, + 103873574 + ], + "geometry": [ + { "lat": 40.8040780, "lon": -74.0060170 }, + { "lat": 40.8043890, "lon": -74.0067970 } + ], + "tags": { + "highway": "residential", + "name": "82nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "82nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901157, + "bounds": { + "minlat": 40.8050250, + "minlon": -74.0092212, + "maxlat": 40.8053528, + "maxlon": -74.0083950 + }, + "nodes": [ + 103880595, + 103880597 + ], + "geometry": [ + { "lat": 40.8050250, "lon": -74.0083950 }, + { "lat": 40.8053528, "lon": -74.0092212 } + ], + "tags": { + "highway": "residential", + "name": "82nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "82nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901159, + "bounds": { + "minlat": 40.8047100, + "minlon": -74.0083950, + "maxlat": 40.8050250, + "maxlon": -74.0076050 + }, + "nodes": [ + 103880566, + 103880595 + ], + "geometry": [ + { "lat": 40.8047100, "lon": -74.0076050 }, + { "lat": 40.8050250, "lon": -74.0083950 } + ], + "tags": { + "highway": "residential", + "name": "82nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "82nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901161, + "bounds": { + "minlat": 40.8043890, + "minlon": -74.0076050, + "maxlat": 40.8047100, + "maxlon": -74.0067970 + }, + "nodes": [ + 103873574, + 103880566 + ], + "geometry": [ + { "lat": 40.8043890, "lon": -74.0067970 }, + { "lat": 40.8047100, "lon": -74.0076050 } + ], + "tags": { + "highway": "residential", + "name": "82nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "82nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901162, + "bounds": { + "minlat": 40.8069774, + "minlon": -74.0048240, + "maxlat": 40.8072720, + "maxlon": -74.0040394 + }, + "nodes": [ + 103873576, + 103880915 + ], + "geometry": [ + { "lat": 40.8072720, "lon": -74.0048240 }, + { "lat": 40.8069774, "lon": -74.0040394 } + ], + "tags": { + "highway": "residential", + "name": "87th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "87th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901163, + "bounds": { + "minlat": 40.8079263, + "minlon": -74.0072454, + "maxlat": 40.8082350, + "maxlon": -74.0064448 + }, + "nodes": [ + 103880917, + 7475993533, + 7475993535, + 103880916 + ], + "geometry": [ + { "lat": 40.8082350, "lon": -74.0072454 }, + { "lat": 40.8082053, "lon": -74.0071688 }, + { "lat": 40.8079513, "lon": -74.0065128 }, + { "lat": 40.8079263, "lon": -74.0064448 } + ], + "tags": { + "highway": "residential", + "name": "87th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "87th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901164, + "bounds": { + "minlat": 40.8082350, + "minlon": -74.0080715, + "maxlat": 40.8085783, + "maxlon": -74.0072454 + }, + "nodes": [ + 103872926, + 7475993462, + 7475993457, + 103880917 + ], + "geometry": [ + { "lat": 40.8085783, "lon": -74.0080715 }, + { "lat": 40.8085261, "lon": -74.0079458 }, + { "lat": 40.8082670, "lon": -74.0073224 }, + { "lat": 40.8082350, "lon": -74.0072454 } + ], + "tags": { + "highway": "residential", + "name": "87th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "87th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901165, + "bounds": { + "minlat": 40.8072720, + "minlon": -74.0056393, + "maxlat": 40.8076084, + "maxlon": -74.0048240 + }, + "nodes": [ + 103880569, + 103873576 + ], + "geometry": [ + { "lat": 40.8076084, "lon": -74.0056393 }, + { "lat": 40.8072720, "lon": -74.0048240 } + ], + "tags": { + "highway": "residential", + "name": "87th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "87th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901168, + "bounds": { + "minlat": 40.8076084, + "minlon": -74.0064448, + "maxlat": 40.8079263, + "maxlon": -74.0056393 + }, + "nodes": [ + 103880916, + 103880569 + ], + "geometry": [ + { "lat": 40.8079263, "lon": -74.0064448 }, + { "lat": 40.8076084, "lon": -74.0056393 } + ], + "tags": { + "highway": "residential", + "name": "87th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "87th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 276901771, + "bounds": { + "minlat": 40.8269936, + "minlon": -73.9917194, + "maxlat": 40.8310547, + "maxlon": -73.9882968 + }, + "nodes": [ + 103212135, + 103247476, + 103231464, + 103162257, + 103247477, + 103237103 + ], + "geometry": [ + { "lat": 40.8269936, "lon": -73.9917194 }, + { "lat": 40.8275385, "lon": -73.9911751 }, + { "lat": 40.8280847, "lon": -73.9906296 }, + { "lat": 40.8286384, "lon": -73.9900921 }, + { "lat": 40.8292220, "lon": -73.9895218 }, + { "lat": 40.8310547, "lon": -73.9882968 } + ], + "tags": { + "highway": "residential", + "name": "Grove Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grove", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 276901970, + "bounds": { + "minlat": 40.8269936, + "minlon": -73.9944755, + "maxlat": 40.8285632, + "maxlon": -73.9917194 + }, + "nodes": [ + 103212135, + 7529710512, + 103147971 + ], + "geometry": [ + { "lat": 40.8269936, "lon": -73.9917194 }, + { "lat": 40.8280314, "lon": -73.9935531 }, + { "lat": 40.8285632, "lon": -73.9944755 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 276902048, + "bounds": { + "minlat": 40.8275385, + "minlon": -73.9939975, + "maxlat": 40.8291289, + "maxlon": -73.9911751 + }, + "nodes": [ + 103247476, + 103281225, + 7529710511, + 13527758462, + 103147974 + ], + "geometry": [ + { "lat": 40.8275385, "lon": -73.9911751 }, + { "lat": 40.8285439, "lon": -73.9929604 }, + { "lat": 40.8287262, "lon": -73.9932654 }, + { "lat": 40.8290738, "lon": -73.9938973 }, + { "lat": 40.8291289, "lon": -73.9939975 } + ], + "tags": { + "highway": "residential", + "name": "Washington Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 276902097, + "bounds": { + "minlat": 40.8211899, + "minlon": -73.9856207, + "maxlat": 40.8226514, + "maxlon": -73.9829434 + }, + "nodes": [ + 103150184, + 103150187 + ], + "geometry": [ + { "lat": 40.8211899, "lon": -73.9829434 }, + { "lat": 40.8226514, "lon": -73.9856207 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 276902186, + "bounds": { + "minlat": 40.8251560, + "minlon": -73.9944127, + "maxlat": 40.8258379, + "maxlon": -73.9937559 + }, + "nodes": [ + 103213235, + 475223710, + 103259849 + ], + "geometry": [ + { "lat": 40.8251560, "lon": -73.9944127 }, + { "lat": 40.8254603, "lon": -73.9941164 }, + { "lat": 40.8258379, "lon": -73.9937559 } + ], + "tags": { + "highway": "residential", + "name": "Highridge Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Highridge", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 276902304, + "bounds": { + "minlat": 40.8233747, + "minlon": -73.9808000, + "maxlat": 40.8239357, + "maxlon": -73.9802530 + }, + "nodes": [ + 103195296, + 103162247 + ], + "geometry": [ + { "lat": 40.8239357, "lon": -73.9802530 }, + { "lat": 40.8233747, "lon": -73.9808000 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Hudson Terrace", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 276902639, + "bounds": { + "minlat": 40.8264359, + "minlon": -73.9949615, + "maxlat": 40.8279826, + "maxlon": -73.9922482 + }, + "nodes": [ + 103150110, + 7534353938, + 475223727, + 475223715, + 7529710513, + 103150113, + 103147967 + ], + "geometry": [ + { "lat": 40.8264359, "lon": -73.9922482 }, + { "lat": 40.8265379, "lon": -73.9924190 }, + { "lat": 40.8265598, "lon": -73.9924556 }, + { "lat": 40.8273819, "lon": -73.9939335 }, + { "lat": 40.8274386, "lon": -73.9940324 }, + { "lat": 40.8275695, "lon": -73.9942555 }, + { "lat": 40.8279826, "lon": -73.9949615 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 276906092, + "bounds": { + "minlat": 40.8247176, + "minlon": -73.9856037, + "maxlat": 40.8280482, + "maxlon": -73.9837411 + }, + "nodes": [ + 4695282839, + 12394165164, + 103282019, + 9820271604, + 103162251, + 103282020, + 103282021, + 103238620, + 12394165115 + ], + "geometry": [ + { "lat": 40.8247176, "lon": -73.9856037 }, + { "lat": 40.8248628, "lon": -73.9854878 }, + { "lat": 40.8251256, "lon": -73.9852780 }, + { "lat": 40.8256060, "lon": -73.9848869 }, + { "lat": 40.8256681, "lon": -73.9848507 }, + { "lat": 40.8263109, "lon": -73.9844576 }, + { "lat": 40.8269989, "lon": -73.9841546 }, + { "lat": 40.8276994, "lon": -73.9838692 }, + { "lat": 40.8280482, "lon": -73.9837411 } + ], + "tags": { + "highway": "residential", + "name": "Railroad Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 276906395, + "bounds": { + "minlat": 40.8312052, + "minlon": -73.9825352, + "maxlat": 40.8334030, + "maxlon": -73.9817201 + }, + "nodes": [ + 103307427, + 6964853585, + 660545784, + 103162174, + 103282049, + 103125396 + ], + "geometry": [ + { "lat": 40.8312052, "lon": -73.9825352 }, + { "lat": 40.8318549, "lon": -73.9823433 }, + { "lat": 40.8319389, "lon": -73.9822487 }, + { "lat": 40.8320259, "lon": -73.9821506 }, + { "lat": 40.8329260, "lon": -73.9818530 }, + { "lat": 40.8334030, "lon": -73.9817201 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Abbott Boulevard", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 276906416, + "bounds": { + "minlat": 40.8297060, + "minlon": -73.9825352, + "maxlat": 40.8312052, + "maxlon": -73.9798995 + }, + "nodes": [ + 103307427, + 6895127596, + 7533932719, + 7498899556, + 7533932718, + 7498899549, + 7533932717, + 103235745 + ], + "geometry": [ + { "lat": 40.8312052, "lon": -73.9825352 }, + { "lat": 40.8310764, "lon": -73.9823069 }, + { "lat": 40.8310325, "lon": -73.9822297 }, + { "lat": 40.8310203, "lon": -73.9822083 }, + { "lat": 40.8302754, "lon": -73.9808996 }, + { "lat": 40.8300098, "lon": -73.9804331 }, + { "lat": 40.8299737, "lon": -73.9803698 }, + { "lat": 40.8297060, "lon": -73.9798995 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Warren Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Warren", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 276906417, + "bounds": { + "minlat": 40.8312052, + "minlon": -73.9827035, + "maxlat": 40.8312975, + "maxlon": -73.9825352 + }, + "nodes": [ + 2814617299, + 103307427 + ], + "geometry": [ + { "lat": 40.8312975, "lon": -73.9827035 }, + { "lat": 40.8312052, "lon": -73.9825352 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lanes": "2", + "name": "Warren Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 276906458, + "bounds": { + "minlat": 40.8304978, + "minlon": -73.9837252, + "maxlat": 40.8310648, + "maxlon": -73.9827496 + }, + "nodes": [ + 103282022, + 7538989250, + 103289746, + 103289748 + ], + "geometry": [ + { "lat": 40.8304978, "lon": -73.9827496 }, + { "lat": 40.8306376, "lon": -73.9829907 }, + { "lat": 40.8308360, "lon": -73.9833330 }, + { "lat": 40.8310648, "lon": -73.9837252 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Marion Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Marion", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 276906504, + "bounds": { + "minlat": 40.8298272, + "minlon": -73.9841290, + "maxlat": 40.8304550, + "maxlon": -73.9830291 + }, + "nodes": [ + 103245198, + 103245200, + 103245202 + ], + "geometry": [ + { "lat": 40.8298272, "lon": -73.9830291 }, + { "lat": 40.8301950, "lon": -73.9836740 }, + { "lat": 40.8304550, "lon": -73.9841290 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Wayne Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wayne", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 276906824, + "bounds": { + "minlat": 40.8280847, + "minlon": -73.9935270, + "maxlat": 40.8297260, + "maxlon": -73.9906296 + }, + "nodes": [ + 103231464, + 7529710510, + 10301902651, + 10301902645, + 10301902653, + 13520906004, + 13527758464, + 103147977 + ], + "geometry": [ + { "lat": 40.8280847, "lon": -73.9906296 }, + { "lat": 40.8291644, "lon": -73.9925437 }, + { "lat": 40.8295439, "lon": -73.9932082 }, + { "lat": 40.8296187, "lon": -73.9933392 }, + { "lat": 40.8296353, "lon": -73.9933682 }, + { "lat": 40.8296535, "lon": -73.9934000 }, + { "lat": 40.8296759, "lon": -73.9934392 }, + { "lat": 40.8297260, "lon": -73.9935270 } + ], + "tags": { + "highway": "residential", + "name": "Nelson Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Nelson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 276907452, + "bounds": { + "minlat": 40.8339284, + "minlon": -73.9903850, + "maxlat": 40.8342460, + "maxlon": -73.9895174 + }, + "nodes": [ + 103187741, + 13527755887, + 103148212 + ], + "geometry": [ + { "lat": 40.8339284, "lon": -73.9895174 }, + { "lat": 40.8342287, "lon": -73.9903378 }, + { "lat": 40.8342460, "lon": -73.9903850 } + ], + "tags": { + "highway": "residential", + "name": "Aurora Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Aurora", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 276907622, + "bounds": { + "minlat": 40.8352765, + "minlon": -73.9889083, + "maxlat": 40.8384390, + "maxlon": -73.9873910 + }, + "nodes": [ + 103162205, + 13527755879, + 103242172, + 103242174, + 103242178, + 13527715992, + 103125451, + 13527715990, + 103242180, + 103242182, + 103242183, + 103242185, + 103242187, + 103160748 + ], + "geometry": [ + { "lat": 40.8352765, "lon": -73.9889083 }, + { "lat": 40.8353538, "lon": -73.9888928 }, + { "lat": 40.8353680, "lon": -73.9888900 }, + { "lat": 40.8361560, "lon": -73.9887200 }, + { "lat": 40.8362310, "lon": -73.9886830 }, + { "lat": 40.8366074, "lon": -73.9884484 }, + { "lat": 40.8366450, "lon": -73.9884250 }, + { "lat": 40.8367017, "lon": -73.9883903 }, + { "lat": 40.8371640, "lon": -73.9881070 }, + { "lat": 40.8373100, "lon": -73.9880390 }, + { "lat": 40.8380140, "lon": -73.9877340 }, + { "lat": 40.8381440, "lon": -73.9876560 }, + { "lat": 40.8381720, "lon": -73.9876350 }, + { "lat": 40.8384390, "lon": -73.9873910 } + ], + "tags": { + "highway": "residential", + "name": "Kingsland Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kingsland", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 276907623, + "bounds": { + "minlat": 40.8348499, + "minlon": -73.9888372, + "maxlat": 40.8350795, + "maxlon": -73.9880707 + }, + "nodes": [ + 2814636434, + 5340732825, + 103242169 + ], + "geometry": [ + { "lat": 40.8348499, "lon": -73.9880707 }, + { "lat": 40.8349963, "lon": -73.9885346 }, + { "lat": 40.8350795, "lon": -73.9888372 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 277044928, + "bounds": { + "minlat": 40.8217299, + "minlon": -73.9851541, + "maxlat": 40.8232821, + "maxlon": -73.9824206 + }, + "nodes": [ + 103212495, + 103195293 + ], + "geometry": [ + { "lat": 40.8232821, "lon": -73.9851541 }, + { "lat": 40.8217299, "lon": -73.9824206 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 277045662, + "bounds": { + "minlat": 40.8222726, + "minlon": -73.9846780, + "maxlat": 40.8238555, + "maxlon": -73.9818833 + }, + "nodes": [ + 103195294, + 103235719 + ], + "geometry": [ + { "lat": 40.8222726, "lon": -73.9818833 }, + { "lat": 40.8238555, "lon": -73.9846780 } + ], + "tags": { + "highway": "residential", + "name": "Washington Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 277048328, + "bounds": { + "minlat": 40.8286384, + "minlon": -73.9948130, + "maxlat": 40.8311790, + "maxlon": -73.9900921 + }, + "nodes": [ + 103162257, + 7529710509, + 13527758465, + 103147978, + 13527758466, + 103162259, + 103133191, + 103162260 + ], + "geometry": [ + { "lat": 40.8286384, "lon": -73.9900921 }, + { "lat": 40.8297654, "lon": -73.9920645 }, + { "lat": 40.8302940, "lon": -73.9930130 }, + { "lat": 40.8303466, "lon": -73.9931074 }, + { "lat": 40.8303943, "lon": -73.9932064 }, + { "lat": 40.8305704, "lon": -73.9935720 }, + { "lat": 40.8307779, "lon": -73.9940018 }, + { "lat": 40.8311790, "lon": -73.9948130 } + ], + "tags": { + "highway": "residential", + "name": "Columbia Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 277048331, + "bounds": { + "minlat": 40.8233747, + "minlon": -73.9835454, + "maxlat": 40.8249348, + "maxlon": -73.9808000 + }, + "nodes": [ + 103162247, + 103162249 + ], + "geometry": [ + { "lat": 40.8233747, "lon": -73.9808000 }, + { "lat": 40.8249348, "lon": -73.9835454 } + ], + "tags": { + "highway": "residential", + "name": "Columbia Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 277051075, + "bounds": { + "minlat": 40.8258481, + "minlon": -73.9865071, + "maxlat": 40.8283333, + "maxlon": -73.9821064 + }, + "nodes": [ + 103235733, + 7552638206, + 7553077136, + 103282021, + 7552734530, + 7542551000, + 103299091, + 7542550995, + 7552734525, + 13525882231, + 103245953 + ], + "geometry": [ + { "lat": 40.8258481, "lon": -73.9821064 }, + { "lat": 40.8268399, "lon": -73.9838716 }, + { "lat": 40.8269415, "lon": -73.9840525 }, + { "lat": 40.8269989, "lon": -73.9841546 }, + { "lat": 40.8270551, "lon": -73.9842540 }, + { "lat": 40.8270666, "lon": -73.9842744 }, + { "lat": 40.8277562, "lon": -73.9854940 }, + { "lat": 40.8281206, "lon": -73.9861337 }, + { "lat": 40.8281286, "lon": -73.9861478 }, + { "lat": 40.8282876, "lon": -73.9864269 }, + { "lat": 40.8283333, "lon": -73.9865071 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Grant Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grant", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 277051748, + "bounds": { + "minlat": 40.8247605, + "minlon": -73.9936753, + "maxlat": 40.8254323, + "maxlon": -73.9930312 + }, + "nodes": [ + 103213234, + 103271514 + ], + "geometry": [ + { "lat": 40.8247605, "lon": -73.9936753 }, + { "lat": 40.8254323, "lon": -73.9930312 } + ], + "tags": { + "highway": "residential", + "name": "Longview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Longview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 277054779, + "bounds": { + "minlat": 40.8264795, + "minlon": -73.9862240, + "maxlat": 40.8290160, + "maxlon": -73.9816970 + }, + "nodes": [ + 103238622, + 7542525681, + 7542550998, + 7542525685, + 7542550999, + 103238620, + 7550915563, + 7552638203, + 103235735 + ], + "geometry": [ + { "lat": 40.8290160, "lon": -73.9862240 }, + { "lat": 40.8288749, "lon": -73.9859523 }, + { "lat": 40.8287590, "lon": -73.9857402 }, + { "lat": 40.8280491, "lon": -73.9844979 }, + { "lat": 40.8277748, "lon": -73.9840041 }, + { "lat": 40.8276994, "lon": -73.9838692 }, + { "lat": 40.8274656, "lon": -73.9834601 }, + { "lat": 40.8274420, "lon": -73.9834179 }, + { "lat": 40.8264795, "lon": -73.9816970 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Knox Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Knox", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 277201109, + "bounds": { + "minlat": 40.7029659, + "minlon": -74.0115948, + "maxlat": 40.7034746, + "maxlon": -74.0115133 + }, + "nodes": [ + 42431898, + 7706695210, + 11041048711, + 7706695195, + 42431889 + ], + "geometry": [ + { "lat": 40.7029659, "lon": -74.0115133 }, + { "lat": 40.7030692, "lon": -74.0115398 }, + { "lat": 40.7031456, "lon": -74.0115547 }, + { "lat": 40.7034072, "lon": -74.0115925 }, + { "lat": 40.7034746, "lon": -74.0115948 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broad Street", + "name:ko": "브로드 스트리트", + "name:ru": "Брод-стрит", + "oneway": "no", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broad", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q2613951", + "wikipedia": "en:Broad Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 277201110, + "bounds": { + "minlat": 40.7040261, + "minlon": -74.0115861, + "maxlat": 40.7042465, + "maxlon": -74.0115763 + }, + "nodes": [ + 42431877, + 8276468826, + 42431875 + ], + "geometry": [ + { "lat": 40.7040261, "lon": -74.0115861 }, + { "lat": 40.7040749, "lon": -74.0115841 }, + { "lat": 40.7042465, "lon": -74.0115763 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Broad Street", + "name:ko": "브로드 스트리트", + "name:ru": "Брод-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 06:00-17:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broad", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q2613951", + "wikipedia": "en:Broad Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 277201839, + "bounds": { + "minlat": 40.7304885, + "minlon": -73.9462406, + "maxlat": 40.7306010, + "maxlon": -73.9453190 + }, + "nodes": [ + 7725544396, + 9788947268, + 9788947305, + 9788947293, + 42472698 + ], + "geometry": [ + { "lat": 40.7304885, "lon": -73.9462406 }, + { "lat": 40.7305292, "lon": -73.9461691 }, + { "lat": 40.7305890, "lon": -73.9454674 }, + { "lat": 40.7305937, "lon": -73.9454089 }, + { "lat": 40.7306010, "lon": -73.9453190 } + ], + "tags": { + "highway": "residential", + "name": "Calyer Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 277268740, + "bounds": { + "minlat": 40.8240622, + "minlon": -73.9318184, + "maxlat": 40.8246645, + "maxlon": -73.9317608 + }, + "nodes": [ + 2817964771, + 2817964773, + 2817964772 + ], + "geometry": [ + { "lat": 40.8246645, "lon": -73.9318184 }, + { "lat": 40.8246051, "lon": -73.9318128 }, + { "lat": 40.8240622, "lon": -73.9317608 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277269802, + "bounds": { + "minlat": 40.8237221, + "minlon": -73.9323245, + "maxlat": 40.8238132, + "maxlon": -73.9322253 + }, + "nodes": [ + 2817964870, + 2817964871, + 2817964760, + 2817964759, + 2817964758, + 2817964868, + 2817964869, + 2817964870 + ], + "geometry": [ + { "lat": 40.8238132, "lon": -73.9322743 }, + { "lat": 40.8238066, "lon": -73.9322989 }, + { "lat": 40.8237975, "lon": -73.9323245 }, + { "lat": 40.8237653, "lon": -73.9323045 }, + { "lat": 40.8237221, "lon": -73.9322711 }, + { "lat": 40.8237310, "lon": -73.9322489 }, + { "lat": 40.8237416, "lon": -73.9322253 }, + { "lat": 40.8238132, "lon": -73.9322743 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277269804, + "bounds": { + "minlat": 40.8231991, + "minlon": -73.9323085, + "maxlat": 40.8236789, + "maxlon": -73.9320756 + }, + "nodes": [ + 2817964757, + 2817964889, + 2817964890, + 2817964891, + 2817964892, + 2817964893, + 2817974746, + 2817974747, + 2819423500, + 2817964756, + 2819425201, + 2817964757 + ], + "geometry": [ + { "lat": 40.8236789, "lon": -73.9322394 }, + { "lat": 40.8236694, "lon": -73.9322594 }, + { "lat": 40.8236495, "lon": -73.9323085 }, + { "lat": 40.8233458, "lon": -73.9321666 }, + { "lat": 40.8232138, "lon": -73.9322069 }, + { "lat": 40.8232039, "lon": -73.9321569 }, + { "lat": 40.8231991, "lon": -73.9321290 }, + { "lat": 40.8232141, "lon": -73.9321243 }, + { "lat": 40.8232506, "lon": -73.9321112 }, + { "lat": 40.8233499, "lon": -73.9320756 }, + { "lat": 40.8235034, "lon": -73.9321515 }, + { "lat": 40.8236789, "lon": -73.9322394 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277269806, + "bounds": { + "minlat": 40.8231269, + "minlon": -73.9321542, + "maxlat": 40.8232141, + "maxlon": -73.9320807 + }, + "nodes": [ + 2817964898, + 2817964897, + 2817974747, + 2817974746, + 2817974748, + 2817964900, + 2817964899, + 2817964898 + ], + "geometry": [ + { "lat": 40.8232032, "lon": -73.9320807 }, + { "lat": 40.8232085, "lon": -73.9320991 }, + { "lat": 40.8232141, "lon": -73.9321243 }, + { "lat": 40.8231991, "lon": -73.9321290 }, + { "lat": 40.8231360, "lon": -73.9321542 }, + { "lat": 40.8231316, "lon": -73.9321315 }, + { "lat": 40.8231269, "lon": -73.9321114 }, + { "lat": 40.8232032, "lon": -73.9320807 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277269808, + "bounds": { + "minlat": 40.8225208, + "minlon": -73.9312644, + "maxlat": 40.8225879, + "maxlon": -73.9311851 + }, + "nodes": [ + 2817965401, + 2817965399, + 2817974749, + 2817964738, + 2817974750, + 2817965409, + 2817965400, + 2817965401 + ], + "geometry": [ + { "lat": 40.8225879, "lon": -73.9312175 }, + { "lat": 40.8225824, "lon": -73.9312345 }, + { "lat": 40.8225719, "lon": -73.9312644 }, + { "lat": 40.8225536, "lon": -73.9312507 }, + { "lat": 40.8225208, "lon": -73.9312303 }, + { "lat": 40.8225315, "lon": -73.9311997 }, + { "lat": 40.8225365, "lon": -73.9311851 }, + { "lat": 40.8225879, "lon": -73.9312175 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277456680, + "bounds": { + "minlat": 40.8213671, + "minlon": -73.9315032, + "maxlat": 40.8215027, + "maxlon": -73.9312990 + }, + "nodes": [ + 2817965174, + 2817965162, + 2819423492, + 2819423482, + 2819423494, + 2819423483, + 2819423493, + 2817965177, + 2817965176, + 2817965174 + ], + "geometry": [ + { "lat": 40.8214453, "lon": -73.9315032 }, + { "lat": 40.8214904, "lon": -73.9313403 }, + { "lat": 40.8215027, "lon": -73.9312990 }, + { "lat": 40.8214668, "lon": -73.9313138 }, + { "lat": 40.8214352, "lon": -73.9313244 }, + { "lat": 40.8214019, "lon": -73.9313333 }, + { "lat": 40.8213803, "lon": -73.9313371 }, + { "lat": 40.8213764, "lon": -73.9313665 }, + { "lat": 40.8213671, "lon": -73.9314945 }, + { "lat": 40.8214453, "lon": -73.9315032 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277456681, + "bounds": { + "minlat": 40.8216051, + "minlon": -73.9315291, + "maxlat": 40.8218108, + "maxlon": -73.9314068 + }, + "nodes": [ + 2817964394, + 2817965155, + 2817965160, + 2817965161, + 2817965163, + 2819423495, + 2817964392, + 2817964393, + 2817964394 + ], + "geometry": [ + { "lat": 40.8217711, "lon": -73.9315291 }, + { "lat": 40.8217457, "lon": -73.9315269 }, + { "lat": 40.8216051, "lon": -73.9315146 }, + { "lat": 40.8216184, "lon": -73.9314182 }, + { "lat": 40.8217855, "lon": -73.9314086 }, + { "lat": 40.8218108, "lon": -73.9314068 }, + { "lat": 40.8217964, "lon": -73.9314512 }, + { "lat": 40.8217814, "lon": -73.9314992 }, + { "lat": 40.8217711, "lon": -73.9315291 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277456682, + "bounds": { + "minlat": 40.8217842, + "minlon": -73.9314222, + "maxlat": 40.8221748, + "maxlon": -73.9311176 + }, + "nodes": [ + 2819423495, + 2817965366, + 2817965339, + 2817964724, + 2817964725, + 2817964726, + 2817964727, + 2817964728, + 2817964729, + 2817965403, + 2817965402, + 2817965314, + 2817965315, + 2817965316, + 2817965317, + 2817965318, + 2817965319, + 2817965320, + 2817965321, + 2817965322, + 2817965323, + 2817965324, + 2817965325, + 2817965326, + 2817965327, + 2817965328, + 2817965329, + 2817965330, + 2819423497, + 2819423496, + 2817964391, + 2819423495 + ], + "geometry": [ + { "lat": 40.8218108, "lon": -73.9314068 }, + { "lat": 40.8218397, "lon": -73.9314067 }, + { "lat": 40.8220006, "lon": -73.9314202 }, + { "lat": 40.8220233, "lon": -73.9314222 }, + { "lat": 40.8220240, "lon": -73.9313611 }, + { "lat": 40.8220388, "lon": -73.9313043 }, + { "lat": 40.8220695, "lon": -73.9312604 }, + { "lat": 40.8221051, "lon": -73.9312328 }, + { "lat": 40.8221748, "lon": -73.9311939 }, + { "lat": 40.8221707, "lon": -73.9311567 }, + { "lat": 40.8221670, "lon": -73.9311211 }, + { "lat": 40.8221249, "lon": -73.9311176 }, + { "lat": 40.8220755, "lon": -73.9311694 }, + { "lat": 40.8220162, "lon": -73.9312158 }, + { "lat": 40.8219678, "lon": -73.9312478 }, + { "lat": 40.8219529, "lon": -73.9312468 }, + { "lat": 40.8219435, "lon": -73.9312344 }, + { "lat": 40.8219381, "lon": -73.9312179 }, + { "lat": 40.8219342, "lon": -73.9311962 }, + { "lat": 40.8219115, "lon": -73.9311673 }, + { "lat": 40.8219037, "lon": -73.9311807 }, + { "lat": 40.8219225, "lon": -73.9312055 }, + { "lat": 40.8219271, "lon": -73.9312375 }, + { "lat": 40.8219443, "lon": -73.9312592 }, + { "lat": 40.8219037, "lon": -73.9312767 }, + { "lat": 40.8218686, "lon": -73.9312870 }, + { "lat": 40.8218389, "lon": -73.9312912 }, + { "lat": 40.8218264, "lon": -73.9312912 }, + { "lat": 40.8217842, "lon": -73.9312860 }, + { "lat": 40.8218019, "lon": -73.9313271 }, + { "lat": 40.8218088, "lon": -73.9313606 }, + { "lat": 40.8218108, "lon": -73.9314068 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277456683, + "bounds": { + "minlat": 40.8220233, + "minlon": -73.9315101, + "maxlat": 40.8226869, + "maxlon": -73.9311939 + }, + "nodes": [ + 2817964729, + 2817965384, + 2817965383, + 2817965382, + 2817965381, + 2817965380, + 2817965379, + 2817965378, + 2817965377, + 2817965376, + 2817965375, + 2817965374, + 2817965373, + 2817965372, + 2817965371, + 2817964740, + 2819423499, + 2817964741, + 2817964742, + 2817964743, + 2817964744, + 2817965121, + 2817965124, + 2817964723, + 2817964724, + 2817964725, + 2817964726, + 2817964727, + 2817964728, + 2817964729 + ], + "geometry": [ + { "lat": 40.8221748, "lon": -73.9311939 }, + { "lat": 40.8221810, "lon": -73.9312396 }, + { "lat": 40.8221997, "lon": -73.9313211 }, + { "lat": 40.8223379, "lon": -73.9313304 }, + { "lat": 40.8223442, "lon": -73.9312996 }, + { "lat": 40.8223574, "lon": -73.9312798 }, + { "lat": 40.8223660, "lon": -73.9312592 }, + { "lat": 40.8223762, "lon": -73.9312643 }, + { "lat": 40.8223690, "lon": -73.9312914 }, + { "lat": 40.8223551, "lon": -73.9313087 }, + { "lat": 40.8223508, "lon": -73.9313314 }, + { "lat": 40.8225175, "lon": -73.9313902 }, + { "lat": 40.8225472, "lon": -73.9313944 }, + { "lat": 40.8225730, "lon": -73.9313727 }, + { "lat": 40.8225972, "lon": -73.9313324 }, + { "lat": 40.8226150, "lon": -73.9313008 }, + { "lat": 40.8226348, "lon": -73.9313271 }, + { "lat": 40.8226527, "lon": -73.9313579 }, + { "lat": 40.8226712, "lon": -73.9313987 }, + { "lat": 40.8226869, "lon": -73.9314539 }, + { "lat": 40.8226863, "lon": -73.9315101 }, + { "lat": 40.8226634, "lon": -73.9315085 }, + { "lat": 40.8220547, "lon": -73.9314550 }, + { "lat": 40.8220268, "lon": -73.9314548 }, + { "lat": 40.8220233, "lon": -73.9314222 }, + { "lat": 40.8220240, "lon": -73.9313611 }, + { "lat": 40.8220388, "lon": -73.9313043 }, + { "lat": 40.8220695, "lon": -73.9312604 }, + { "lat": 40.8221051, "lon": -73.9312328 }, + { "lat": 40.8221748, "lon": -73.9311939 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277456684, + "bounds": { + "minlat": 40.8232439, + "minlon": -73.9321515, + "maxlat": 40.8235095, + "maxlon": -73.9320515 + }, + "nodes": [ + 2829219656, + 2817964895, + 2817964896, + 2819423500, + 2817964756, + 2819425201, + 2817964866, + 2817964865, + 2829219656 + ], + "geometry": [ + { "lat": 40.8235077, "lon": -73.9320741 }, + { "lat": 40.8232439, "lon": -73.9320515 }, + { "lat": 40.8232450, "lon": -73.9320868 }, + { "lat": 40.8232506, "lon": -73.9321112 }, + { "lat": 40.8233499, "lon": -73.9320756 }, + { "lat": 40.8235034, "lon": -73.9321515 }, + { "lat": 40.8235095, "lon": -73.9321280 }, + { "lat": 40.8235016, "lon": -73.9321061 }, + { "lat": 40.8235077, "lon": -73.9320741 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277456685, + "bounds": { + "minlat": 40.8240766, + "minlon": -73.9317476, + "maxlat": 40.8246922, + "maxlon": -73.9314374 + }, + "nodes": [ + 2819425202, + 2799382010, + 2799382003, + 2799382004, + 2817965425, + 2817965426, + 2819425203, + 2817964862, + 2817964769, + 2819425204, + 2817965414, + 2817965415, + 2817965416, + 2817965417, + 2817965418, + 2817965419, + 2817965420, + 2817965421, + 2817965422, + 2817965423, + 2819425202 + ], + "geometry": [ + { "lat": 40.8246922, "lon": -73.9316670 }, + { "lat": 40.8246600, "lon": -73.9316644 }, + { "lat": 40.8242125, "lon": -73.9316278 }, + { "lat": 40.8242134, "lon": -73.9316086 }, + { "lat": 40.8242212, "lon": -73.9314429 }, + { "lat": 40.8241155, "lon": -73.9314384 }, + { "lat": 40.8240883, "lon": -73.9314374 }, + { "lat": 40.8240808, "lon": -73.9314702 }, + { "lat": 40.8240786, "lon": -73.9314796 }, + { "lat": 40.8240766, "lon": -73.9315145 }, + { "lat": 40.8241013, "lon": -73.9315106 }, + { "lat": 40.8241803, "lon": -73.9315154 }, + { "lat": 40.8241791, "lon": -73.9316960 }, + { "lat": 40.8244720, "lon": -73.9317073 }, + { "lat": 40.8244726, "lon": -73.9317349 }, + { "lat": 40.8245302, "lon": -73.9317381 }, + { "lat": 40.8245320, "lon": -73.9317073 }, + { "lat": 40.8246260, "lon": -73.9317140 }, + { "lat": 40.8246245, "lon": -73.9317421 }, + { "lat": 40.8246875, "lon": -73.9317476 }, + { "lat": 40.8246922, "lon": -73.9316670 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277710257, + "bounds": { + "minlat": 40.8573757, + "minlon": -73.9692339, + "maxlat": 40.8580185, + "maxlon": -73.9685071 + }, + "nodes": [ + 2821798588, + 5108599657, + 5108599790, + 2821798589, + 2821798590, + 2821798591, + 2821798592 + ], + "geometry": [ + { "lat": 40.8573757, "lon": -73.9692339 }, + { "lat": 40.8574430, "lon": -73.9691515 }, + { "lat": 40.8576055, "lon": -73.9689692 }, + { "lat": 40.8577035, "lon": -73.9688592 }, + { "lat": 40.8578950, "lon": -73.9686419 }, + { "lat": 40.8580101, "lon": -73.9685332 }, + { "lat": 40.8580185, "lon": -73.9685071 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 277711403, + "bounds": { + "minlat": 40.8532357, + "minlon": -73.9705260, + "maxlat": 40.8535034, + "maxlon": -73.9697730 + }, + "nodes": [ + 2821818770, + 4397826847, + 4397826857 + ], + "geometry": [ + { "lat": 40.8535034, "lon": -73.9705260 }, + { "lat": 40.8534358, "lon": -73.9703358 }, + { "lat": 40.8532357, "lon": -73.9697730 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "maxspeed": "5 mph", + "motor_vehicle": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 277736453, + "bounds": { + "minlat": 40.8294732, + "minlon": -73.9221149, + "maxlat": 40.8295895, + "maxlon": -73.9219134 + }, + "nodes": [ + 2821981252, + 2821981697, + 2821981268, + 2821981269, + 2821981270, + 2821981271, + 2821981272, + 2821981273, + 2821981274, + 2821981698, + 2821981275, + 2821981804, + 2821981803, + 2821981279, + 2821981257, + 2821981249, + 2821981250, + 2821981251, + 2821981280, + 2821981252 + ], + "geometry": [ + { "lat": 40.8295376, "lon": -73.9219134 }, + { "lat": 40.8295229, "lon": -73.9219237 }, + { "lat": 40.8294911, "lon": -73.9219460 }, + { "lat": 40.8294761, "lon": -73.9219658 }, + { "lat": 40.8294732, "lon": -73.9219965 }, + { "lat": 40.8294794, "lon": -73.9220294 }, + { "lat": 40.8294919, "lon": -73.9220612 }, + { "lat": 40.8295131, "lon": -73.9220936 }, + { "lat": 40.8295259, "lon": -73.9221089 }, + { "lat": 40.8295403, "lon": -73.9221130 }, + { "lat": 40.8295488, "lon": -73.9221149 }, + { "lat": 40.8295801, "lon": -73.9220928 }, + { "lat": 40.8295895, "lon": -73.9220862 }, + { "lat": 40.8295881, "lon": -73.9220674 }, + { "lat": 40.8295867, "lon": -73.9220369 }, + { "lat": 40.8295812, "lon": -73.9220021 }, + { "lat": 40.8295729, "lon": -73.9219765 }, + { "lat": 40.8295563, "lon": -73.9219436 }, + { "lat": 40.8295445, "lon": -73.9219246 }, + { "lat": 40.8295376, "lon": -73.9219134 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277748746, + "bounds": { + "minlat": 40.8328591, + "minlon": -73.9242631, + "maxlat": 40.8339685, + "maxlon": -73.9234309 + }, + "nodes": [ + 2822090374, + 2822090376, + 2822090377, + 2822090385, + 2822090379, + 2822090384, + 2822090366, + 2822090387, + 2822090370, + 2822090383, + 2822090382, + 2822090409, + 2822090386, + 2822090374 + ], + "geometry": [ + { "lat": 40.8329522, "lon": -73.9242631 }, + { "lat": 40.8329123, "lon": -73.9241439 }, + { "lat": 40.8328591, "lon": -73.9239852 }, + { "lat": 40.8332546, "lon": -73.9237693 }, + { "lat": 40.8333657, "lon": -73.9237086 }, + { "lat": 40.8334860, "lon": -73.9236429 }, + { "lat": 40.8338743, "lon": -73.9234309 }, + { "lat": 40.8339170, "lon": -73.9235603 }, + { "lat": 40.8339685, "lon": -73.9237160 }, + { "lat": 40.8335747, "lon": -73.9239280 }, + { "lat": 40.8334592, "lon": -73.9239902 }, + { "lat": 40.8333656, "lon": -73.9240406 }, + { "lat": 40.8333438, "lon": -73.9240523 }, + { "lat": 40.8329522, "lon": -73.9242631 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277748748, + "bounds": { + "minlat": 40.8334860, + "minlon": -73.9239280, + "maxlat": 40.8335747, + "maxlon": -73.9236429 + }, + "nodes": [ + 2822090383, + 2822090384 + ], + "geometry": [ + { "lat": 40.8335747, "lon": -73.9239280 }, + { "lat": 40.8334860, "lon": -73.9236429 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277748749, + "bounds": { + "minlat": 40.8332546, + "minlon": -73.9240523, + "maxlat": 40.8333438, + "maxlon": -73.9237693 + }, + "nodes": [ + 2822090385, + 2822090386 + ], + "geometry": [ + { "lat": 40.8332546, "lon": -73.9237693 }, + { "lat": 40.8333438, "lon": -73.9240523 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277748783, + "bounds": { + "minlat": 40.8332546, + "minlon": -73.9240523, + "maxlat": 40.8335747, + "maxlon": -73.9236429 + }, + "nodes": [ + 2822090383, + 2822090382, + 2822090409, + 2822090386, + 2822090385, + 2822090379, + 2822090384, + 2822090383 + ], + "geometry": [ + { "lat": 40.8335747, "lon": -73.9239280 }, + { "lat": 40.8334592, "lon": -73.9239902 }, + { "lat": 40.8333656, "lon": -73.9240406 }, + { "lat": 40.8333438, "lon": -73.9240523 }, + { "lat": 40.8332546, "lon": -73.9237693 }, + { "lat": 40.8333657, "lon": -73.9237086 }, + { "lat": 40.8334860, "lon": -73.9236429 }, + { "lat": 40.8335747, "lon": -73.9239280 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277750705, + "bounds": { + "minlat": 40.8429311, + "minlon": -73.9119833, + "maxlat": 40.8430827, + "maxlon": -73.9118215 + }, + "nodes": [ + 2408354088, + 2408350747 + ], + "geometry": [ + { "lat": 40.8430827, "lon": -73.9119833 }, + { "lat": 40.8429311, "lon": -73.9118215 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Mount Eden Parkway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Eden", + "tiger:name_type": "Pky", + "tiger:zip_left": "10457" + } +}, +{ + "type": "way", + "id": 277885771, + "bounds": { + "minlat": 40.7398188, + "minlon": -74.0082919, + "maxlat": 40.7399351, + "maxlon": -74.0081324 + }, + "nodes": [ + 2823299593, + 2823299594, + 2823299595, + 2823299564, + 2921544667, + 2823299557, + 2823299596, + 2823299597, + 2921544680, + 2823299598, + 2823299599, + 2823299600, + 2823300801, + 2823300802, + 2823300803, + 2823300804, + 2823299593 + ], + "geometry": [ + { "lat": 40.7398308, "lon": -74.0081336 }, + { "lat": 40.7398321, "lon": -74.0081633 }, + { "lat": 40.7398188, "lon": -74.0081643 }, + { "lat": 40.7398195, "lon": -74.0081818 }, + { "lat": 40.7398244, "lon": -74.0082777 }, + { "lat": 40.7398251, "lon": -74.0082919 }, + { "lat": 40.7398967, "lon": -74.0082855 }, + { "lat": 40.7399351, "lon": -74.0082491 }, + { "lat": 40.7399344, "lon": -74.0082313 }, + { "lat": 40.7399335, "lon": -74.0082109 }, + { "lat": 40.7398975, "lon": -74.0082135 }, + { "lat": 40.7398966, "lon": -74.0081912 }, + { "lat": 40.7398766, "lon": -74.0081927 }, + { "lat": 40.7398753, "lon": -74.0081606 }, + { "lat": 40.7398486, "lon": -74.0081626 }, + { "lat": 40.7398473, "lon": -74.0081324 }, + { "lat": 40.7398308, "lon": -74.0081336 } + ], + "tags": { + "area": "yes", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "layer": "2" + } +}, +{ + "type": "way", + "id": 277885772, + "bounds": { + "minlat": 40.7401128, + "minlon": -74.0082331, + "maxlat": 40.7401474, + "maxlon": -74.0081722 + }, + "nodes": [ + 2823300805, + 2823300806, + 2823300807, + 2823300808, + 2823300809, + 2823300805 + ], + "geometry": [ + { "lat": 40.7401469, "lon": -74.0081787 }, + { "lat": 40.7401474, "lon": -74.0082325 }, + { "lat": 40.7401135, "lon": -74.0082331 }, + { "lat": 40.7401128, "lon": -74.0081727 }, + { "lat": 40.7401469, "lon": -74.0081722 }, + { "lat": 40.7401469, "lon": -74.0081787 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "foot": "yes", + "highway": "pedestrian", + "layer": "2" + } +}, +{ + "type": "way", + "id": 277885773, + "bounds": { + "minlat": 40.7407308, + "minlon": -74.0081154, + "maxlat": 40.7410092, + "maxlon": -74.0079129 + }, + "nodes": [ + 2823300810, + 2823300821, + 2823300822, + 2823300811, + 2823300812, + 2823300815, + 2823300816, + 2823300817, + 2823300814, + 2823300818, + 2823300820, + 2823300819, + 2823300813, + 2823300810 + ], + "geometry": [ + { "lat": 40.7408822, "lon": -74.0079129 }, + { "lat": 40.7409528, "lon": -74.0080104 }, + { "lat": 40.7409967, "lon": -74.0080710 }, + { "lat": 40.7410092, "lon": -74.0080883 }, + { "lat": 40.7408813, "lon": -74.0081154 }, + { "lat": 40.7408448, "lon": -74.0080681 }, + { "lat": 40.7407929, "lon": -74.0080784 }, + { "lat": 40.7407960, "lon": -74.0080667 }, + { "lat": 40.7408108, "lon": -74.0080217 }, + { "lat": 40.7407750, "lon": -74.0079745 }, + { "lat": 40.7407577, "lon": -74.0079637 }, + { "lat": 40.7407308, "lon": -74.0079469 }, + { "lat": 40.7407507, "lon": -74.0079425 }, + { "lat": 40.7408822, "lon": -74.0079129 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "foot": "yes", + "highway": "pedestrian", + "layer": "2", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 277885774, + "bounds": { + "minlat": 40.7414500, + "minlon": -74.0079662, + "maxlat": 40.7419536, + "maxlon": -74.0077180 + }, + "nodes": [ + 2823300823, + 2823300824, + 2823300831, + 2921544775, + 2845937087, + 2921544783, + 2823300825, + 2823300826, + 2823300827, + 2845937086, + 2823300828, + 2823300829, + 2823300830, + 2823300823 + ], + "geometry": [ + { "lat": 40.7414500, "lon": -74.0078863 }, + { "lat": 40.7415827, "lon": -74.0079662 }, + { "lat": 40.7418352, "lon": -74.0079053 }, + { "lat": 40.7418809, "lon": -74.0078977 }, + { "lat": 40.7419044, "lon": -74.0078938 }, + { "lat": 40.7419144, "lon": -74.0078922 }, + { "lat": 40.7419536, "lon": -74.0078857 }, + { "lat": 40.7419244, "lon": -74.0078518 }, + { "lat": 40.7418667, "lon": -74.0078590 }, + { "lat": 40.7418532, "lon": -74.0077500 }, + { "lat": 40.7418498, "lon": -74.0077207 }, + { "lat": 40.7417612, "lon": -74.0077180 }, + { "lat": 40.7415272, "lon": -74.0077685 }, + { "lat": 40.7414500, "lon": -74.0078863 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "bridge": "yes", + "covered": "building_passage", + "foot": "yes", + "highway": "pedestrian", + "layer": "2" + } +}, +{ + "type": "way", + "id": 277921124, + "bounds": { + "minlat": 40.8566089, + "minlon": -73.9748810, + "maxlat": 40.8569808, + "maxlon": -73.9744460 + }, + "nodes": [ + 5290951504, + 13620890081, + 103140901, + 299178371 + ], + "geometry": [ + { "lat": 40.8566089, "lon": -73.9748810 }, + { "lat": 40.8566548, "lon": -73.9748232 }, + { "lat": 40.8568045, "lon": -73.9746345 }, + { "lat": 40.8569808, "lon": -73.9744460 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Fletcher Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fletcher", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "through|through;right" + } +}, +{ + "type": "way", + "id": 277921126, + "bounds": { + "minlat": 40.8566089, + "minlon": -73.9753459, + "maxlat": 40.8568903, + "maxlon": -73.9748810 + }, + "nodes": [ + 5290951504, + 103131998 + ], + "geometry": [ + { "lat": 40.8566089, "lon": -73.9748810 }, + { "lat": 40.8568903, "lon": -73.9753459 } + ], + "tags": { + "highway": "residential", + "name": "Lewis Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lewis", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 277945779, + "bounds": { + "minlat": 40.7427757, + "minlon": -74.0074258, + "maxlat": 40.7433739, + "maxlon": -74.0069617 + }, + "nodes": [ + 2823833438, + 2823833439, + 8262308743, + 2823833440, + 2923130077, + 2923130071, + 2923130062, + 2923130045, + 2823833466, + 2823833441, + 2823833442, + 2845937089, + 8262308744, + 2823833438 + ], + "geometry": [ + { "lat": 40.7433739, "lon": -74.0070546 }, + { "lat": 40.7433320, "lon": -74.0069617 }, + { "lat": 40.7432915, "lon": -74.0069765 }, + { "lat": 40.7432670, "lon": -74.0069854 }, + { "lat": 40.7431642, "lon": -74.0070603 }, + { "lat": 40.7430649, "lon": -74.0071326 }, + { "lat": 40.7430104, "lon": -74.0071722 }, + { "lat": 40.7429101, "lon": -74.0072452 }, + { "lat": 40.7427757, "lon": -74.0073432 }, + { "lat": 40.7428120, "lon": -74.0074258 }, + { "lat": 40.7432708, "lon": -74.0070904 }, + { "lat": 40.7433088, "lon": -74.0070772 }, + { "lat": 40.7433306, "lon": -74.0070696 }, + { "lat": 40.7433739, "lon": -74.0070546 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "covered": "building_passage", + "foot": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 277945780, + "bounds": { + "minlat": 40.7437606, + "minlon": -74.0069730, + "maxlat": 40.7440005, + "maxlon": -74.0067678 + }, + "nodes": [ + 1272608965, + 430941448, + 2823833464, + 8261123510, + 2823833446, + 2823833447, + 2823833496, + 2840192825, + 8261123509, + 1272608965 + ], + "geometry": [ + { "lat": 40.7439370, "lon": -74.0067678 }, + { "lat": 40.7438228, "lon": -74.0068509 }, + { "lat": 40.7437606, "lon": -74.0069013 }, + { "lat": 40.7438616, "lon": -74.0069551 }, + { "lat": 40.7438843, "lon": -74.0069672 }, + { "lat": 40.7439448, "lon": -74.0069730 }, + { "lat": 40.7439818, "lon": -74.0069657 }, + { "lat": 40.7440005, "lon": -74.0069064 }, + { "lat": 40.7439827, "lon": -74.0068676 }, + { "lat": 40.7439370, "lon": -74.0067678 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "foot": "yes", + "highway": "pedestrian", + "layer": "2", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 277945794, + "bounds": { + "minlat": 40.7439818, + "minlon": -74.0071135, + "maxlat": 40.7446697, + "maxlon": -74.0069064 + }, + "nodes": [ + 2823833491, + 2823833492, + 2823833493, + 2823833494, + 2840192821, + 2823833495, + 2823833496, + 2840192825, + 2840192824, + 2840192823, + 2840192822, + 2823833497, + 2823833498, + 2823833499, + 2823833500, + 2823833501, + 2823833502, + 2823833503, + 2823833504, + 2823833505, + 2823833506, + 430941443, + 2823833507, + 2823833508, + 2823833518, + 2823833509, + 2823833510, + 2823833511, + 2823833512, + 2823833513, + 2823833514, + 2823833515, + 2823833516, + 2823833517, + 1272608967, + 1272608959, + 430941392, + 2823833491 + ], + "geometry": [ + { "lat": 40.7443333, "lon": -74.0070804 }, + { "lat": 40.7443926, "lon": -74.0070371 }, + { "lat": 40.7443731, "lon": -74.0069912 }, + { "lat": 40.7441970, "lon": -74.0069808 }, + { "lat": 40.7441652, "lon": -74.0070138 }, + { "lat": 40.7439889, "lon": -74.0069858 }, + { "lat": 40.7439818, "lon": -74.0069657 }, + { "lat": 40.7440005, "lon": -74.0069064 }, + { "lat": 40.7440163, "lon": -74.0069443 }, + { "lat": 40.7440335, "lon": -74.0069202 }, + { "lat": 40.7440456, "lon": -74.0069456 }, + { "lat": 40.7441409, "lon": -74.0069563 }, + { "lat": 40.7441588, "lon": -74.0069308 }, + { "lat": 40.7442696, "lon": -74.0069416 }, + { "lat": 40.7443699, "lon": -74.0069296 }, + { "lat": 40.7443739, "lon": -74.0069550 }, + { "lat": 40.7444250, "lon": -74.0069534 }, + { "lat": 40.7444342, "lon": -74.0069786 }, + { "lat": 40.7445018, "lon": -74.0069844 }, + { "lat": 40.7445308, "lon": -74.0069678 }, + { "lat": 40.7445251, "lon": -74.0069331 }, + { "lat": 40.7445809, "lon": -74.0069239 }, + { "lat": 40.7445909, "lon": -74.0069736 }, + { "lat": 40.7446496, "lon": -74.0069507 }, + { "lat": 40.7446582, "lon": -74.0069729 }, + { "lat": 40.7446697, "lon": -74.0070025 }, + { "lat": 40.7446503, "lon": -74.0070218 }, + { "lat": 40.7446390, "lon": -74.0069993 }, + { "lat": 40.7445735, "lon": -74.0070453 }, + { "lat": 40.7445619, "lon": -74.0070214 }, + { "lat": 40.7445434, "lon": -74.0070304 }, + { "lat": 40.7445339, "lon": -74.0069894 }, + { "lat": 40.7444615, "lon": -74.0070403 }, + { "lat": 40.7444746, "lon": -74.0070877 }, + { "lat": 40.7444559, "lon": -74.0071015 }, + { "lat": 40.7444337, "lon": -74.0070462 }, + { "lat": 40.7443474, "lon": -74.0071135 }, + { "lat": 40.7443333, "lon": -74.0070804 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "bridge": "viaduct", + "foot": "yes", + "highway": "pedestrian", + "layer": "1", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 277945796, + "bounds": { + "minlat": 40.7471674, + "minlon": -74.0053318, + "maxlat": 40.7474357, + "maxlon": -74.0050463 + }, + "nodes": [ + 2823833521, + 2823833529, + 2823833522, + 1272608972, + 430941432, + 2823833523, + 2823833524, + 2823833531, + 2823833525, + 2823833526, + 2823833535, + 2823833534, + 2823833527, + 2823833528, + 2823833521 + ], + "geometry": [ + { "lat": 40.7474182, "lon": -74.0051155 }, + { "lat": 40.7474221, "lon": -74.0051274 }, + { "lat": 40.7474357, "lon": -74.0051681 }, + { "lat": 40.7472043, "lon": -74.0053318 }, + { "lat": 40.7471905, "lon": -74.0052975 }, + { "lat": 40.7471776, "lon": -74.0052669 }, + { "lat": 40.7471674, "lon": -74.0052421 }, + { "lat": 40.7472670, "lon": -74.0051651 }, + { "lat": 40.7473032, "lon": -74.0051120 }, + { "lat": 40.7473883, "lon": -74.0050463 }, + { "lat": 40.7473935, "lon": -74.0050626 }, + { "lat": 40.7473982, "lon": -74.0050775 }, + { "lat": 40.7473643, "lon": -74.0051358 }, + { "lat": 40.7473701, "lon": -74.0051511 }, + { "lat": 40.7474182, "lon": -74.0051155 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "bridge": "viaduct", + "foot": "yes", + "highway": "pedestrian", + "layer": "2", + "lit": "yes", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 278034015, + "bounds": { + "minlat": 40.8792701, + "minlon": -73.9190879, + "maxlat": 40.8798470, + "maxlon": -73.9183407 + }, + "nodes": [ + 2824627765, + 2824627767, + 2824627770, + 2824627774, + 2824627775, + 2824627777, + 2824627778, + 2824627776, + 2824627772, + 2824627766, + 2824627762, + 2824627758, + 2824627756, + 2824627755, + 2824627754, + 2824627757, + 2824627760, + 2824627764, + 2824627770 + ], + "geometry": [ + { "lat": 40.8794893, "lon": -73.9183407 }, + { "lat": 40.8795394, "lon": -73.9184193 }, + { "lat": 40.8795956, "lon": -73.9184953 }, + { "lat": 40.8796862, "lon": -73.9184885 }, + { "lat": 40.8797653, "lon": -73.9184868 }, + { "lat": 40.8798202, "lon": -73.9185071 }, + { "lat": 40.8798470, "lon": -73.9185729 }, + { "lat": 40.8797896, "lon": -73.9186675 }, + { "lat": 40.8796288, "lon": -73.9187029 }, + { "lat": 40.8795151, "lon": -73.9188346 }, + { "lat": 40.8794526, "lon": -73.9189444 }, + { "lat": 40.8793556, "lon": -73.9190541 }, + { "lat": 40.8793058, "lon": -73.9190879 }, + { "lat": 40.8792701, "lon": -73.9190676 }, + { "lat": 40.8792701, "lon": -73.9190034 }, + { "lat": 40.8793109, "lon": -73.9188954 }, + { "lat": 40.8794105, "lon": -73.9187147 }, + { "lat": 40.8794692, "lon": -73.9186084 }, + { "lat": 40.8795956, "lon": -73.9184953 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 278034016, + "bounds": { + "minlat": 40.8793913, + "minlon": -73.9183349, + "maxlat": 40.8796784, + "maxlon": -73.9180729 + }, + "nodes": [ + 1545167974, + 2824627771, + 10747822420, + 2824627769, + 2824627763, + 2824627759 + ], + "geometry": [ + { "lat": 40.8796784, "lon": -73.9180729 }, + { "lat": 40.8796109, "lon": -73.9181778 }, + { "lat": 40.8795816, "lon": -73.9182082 }, + { "lat": 40.8795473, "lon": -73.9182332 }, + { "lat": 40.8794577, "lon": -73.9182943 }, + { "lat": 40.8793913, "lon": -73.9183349 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 278034017, + "bounds": { + "minlat": 40.8793104, + "minlon": -73.9183450, + "maxlat": 40.8801828, + "maxlon": -73.9182110 + }, + "nodes": [ + 2824627780, + 2824627779, + 2824627773, + 2824627768, + 2824627765, + 5064695872, + 2824627759, + 1545167946 + ], + "geometry": [ + { "lat": 40.8801828, "lon": -73.9182110 }, + { "lat": 40.8799415, "lon": -73.9182521 }, + { "lat": 40.8796722, "lon": -73.9183062 }, + { "lat": 40.8795420, "lon": -73.9183349 }, + { "lat": 40.8794893, "lon": -73.9183407 }, + { "lat": 40.8794513, "lon": -73.9183450 }, + { "lat": 40.8793913, "lon": -73.9183349 }, + { "lat": 40.8793104, "lon": -73.9182832 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 278099585, + "bounds": { + "minlat": 40.8185042, + "minlon": -73.9463959, + "maxlat": 40.8205827, + "maxlon": -73.9414703 + }, + "nodes": [ + 42432960, + 7784459419, + 10166154776, + 42433789, + 10166154780, + 9505962114, + 42433785, + 9505962113, + 8757847597, + 42433781 + ], + "geometry": [ + { "lat": 40.8205827, "lon": -73.9463959 }, + { "lat": 40.8205296, "lon": -73.9462691 }, + { "lat": 40.8202945, "lon": -73.9457073 }, + { "lat": 40.8202550, "lon": -73.9456130 }, + { "lat": 40.8202197, "lon": -73.9455293 }, + { "lat": 40.8197250, "lon": -73.9443568 }, + { "lat": 40.8196740, "lon": -73.9442303 }, + { "lat": 40.8196270, "lon": -73.9441138 }, + { "lat": 40.8185535, "lon": -73.9415843 }, + { "lat": 40.8185042, "lon": -73.9414703 } + ], + "tags": { + "highway": "residential", + "maxspeed:type": "US-NY:urban", + "name": "West 140th Street", + "name_1": "West 140 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 278135785, + "bounds": { + "minlat": 40.6998267, + "minlon": -73.9909773, + "maxlat": 40.7001642, + "maxlon": -73.9908135 + }, + "nodes": [ + 42461394, + 6224369599, + 3026465694, + 248606857 + ], + "geometry": [ + { "lat": 40.6998267, "lon": -73.9909773 }, + { "lat": 40.6998862, "lon": -73.9909479 }, + { "lat": 40.7000395, "lon": -73.9908728 }, + { "lat": 40.7001642, "lon": -73.9908135 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Cadman Plaza West", + "name:etymology:wikidata": "Q5600833", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 278135787, + "bounds": { + "minlat": 40.6998644, + "minlon": -73.9910914, + "maxlat": 40.7008046, + "maxlon": -73.9908714 + }, + "nodes": [ + 5649546987, + 3026465839, + 6224369600, + 2825595301, + 3026465728, + 2825594199, + 3026465715, + 2902542857, + 2825594198, + 2825594197, + 9913458017, + 6224369598, + 2842884234 + ], + "geometry": [ + { "lat": 40.7008046, "lon": -73.9910857 }, + { "lat": 40.7007304, "lon": -73.9910136 }, + { "lat": 40.7006425, "lon": -73.9909508 }, + { "lat": 40.7005844, "lon": -73.9909133 }, + { "lat": 40.7005473, "lon": -73.9908906 }, + { "lat": 40.7005041, "lon": -73.9908756 }, + { "lat": 40.7004277, "lon": -73.9908714 }, + { "lat": 40.7003666, "lon": -73.9908812 }, + { "lat": 40.7002787, "lon": -73.9909074 }, + { "lat": 40.7001301, "lon": -73.9909641 }, + { "lat": 40.6999838, "lon": -73.9910342 }, + { "lat": 40.6999275, "lon": -73.9910608 }, + { "lat": 40.6998644, "lon": -73.9910914 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Cadman Plaza West", + "name:etymology:wikidata": "Q5600833", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 278363053, + "bounds": { + "minlat": 40.7792795, + "minlon": -73.9692305, + "maxlat": 40.7795886, + "maxlon": -73.9688815 + }, + "nodes": [ + 2827451091, + 2827451097, + 2827451088, + 2616742589, + 2827451096, + 2827454504, + 13096523412, + 12188861252, + 13096523411, + 2827454511, + 12188861254, + 2827454517, + 561950672, + 2827454515, + 12188861251, + 2827454522, + 12188861246, + 12188861243, + 12188861263, + 12188861244, + 2827454519, + 2827454518, + 2827454516, + 2827454514, + 2827454513, + 2827454512, + 2827454510, + 2827454509, + 2827454507, + 2827454506, + 2827454501, + 12188861261, + 1170604676, + 12188861262, + 2827451091 + ], + "geometry": [ + { "lat": 40.7792812, "lon": -73.9689090 }, + { "lat": 40.7793220, "lon": -73.9690127 }, + { "lat": 40.7792795, "lon": -73.9690437 }, + { "lat": 40.7792988, "lon": -73.9690887 }, + { "lat": 40.7793169, "lon": -73.9691322 }, + { "lat": 40.7793621, "lon": -73.9690992 }, + { "lat": 40.7793740, "lon": -73.9691275 }, + { "lat": 40.7793934, "lon": -73.9691736 }, + { "lat": 40.7794017, "lon": -73.9691932 }, + { "lat": 40.7794175, "lon": -73.9692305 }, + { "lat": 40.7794532, "lon": -73.9692041 }, + { "lat": 40.7794827, "lon": -73.9691828 }, + { "lat": 40.7794796, "lon": -73.9691750 }, + { "lat": 40.7794711, "lon": -73.9691553 }, + { "lat": 40.7795307, "lon": -73.9691117 }, + { "lat": 40.7795703, "lon": -73.9690830 }, + { "lat": 40.7795809, "lon": -73.9690753 }, + { "lat": 40.7795886, "lon": -73.9690694 }, + { "lat": 40.7795645, "lon": -73.9690081 }, + { "lat": 40.7795438, "lon": -73.9689559 }, + { "lat": 40.7795237, "lon": -73.9689707 }, + { "lat": 40.7794840, "lon": -73.9689995 }, + { "lat": 40.7794767, "lon": -73.9689832 }, + { "lat": 40.7794454, "lon": -73.9690097 }, + { "lat": 40.7794353, "lon": -73.9689927 }, + { "lat": 40.7794259, "lon": -73.9689836 }, + { "lat": 40.7794141, "lon": -73.9689789 }, + { "lat": 40.7794023, "lon": -73.9689798 }, + { "lat": 40.7793901, "lon": -73.9689887 }, + { "lat": 40.7793757, "lon": -73.9689548 }, + { "lat": 40.7793543, "lon": -73.9689707 }, + { "lat": 40.7793462, "lon": -73.9689517 }, + { "lat": 40.7793161, "lon": -73.9688815 }, + { "lat": 40.7792983, "lon": -73.9688958 }, + { "lat": 40.7792812, "lon": -73.9689090 } + ], + "tags": { + "area": "yes", + "height": "7.8", + "highway": "pedestrian", + "lit": "yes", + "noname": "yes", + "nycdoitt:bin": "1083837", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 278496520, + "bounds": { + "minlat": 40.7948030, + "minlon": -74.0122904, + "maxlat": 40.7949988, + "maxlon": -74.0118736 + }, + "nodes": [ + 103866644, + 7653988902, + 6890653280 + ], + "geometry": [ + { "lat": 40.7948030, "lon": -74.0118736 }, + { "lat": 40.7948600, "lon": -74.0119949 }, + { "lat": 40.7949988, "lon": -74.0122904 } + ], + "tags": { + "highway": "residential", + "name": "68th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "68th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 278556452, + "bounds": { + "minlat": 40.8475530, + "minlon": -73.9078505, + "maxlat": 40.8478175, + "maxlon": -73.9075305 + }, + "nodes": [ + 42741319, + 12798385477, + 2408348765 + ], + "geometry": [ + { "lat": 40.8478175, "lon": -73.9075305 }, + { "lat": 40.8477638, "lon": -73.9075955 }, + { "lat": 40.8475530, "lon": -73.9078505 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 278556459, + "bounds": { + "minlat": 40.8308966, + "minlon": -73.9202573, + "maxlat": 40.8345112, + "maxlon": -73.9174596 + }, + "nodes": [ + 2408438450, + 12991217553, + 13534912299, + 2408446168, + 13534912298, + 13036655651, + 2408438456, + 13036655655, + 13534990407, + 2408438462, + 13534990408, + 13534990409, + 2408438460, + 13033202465, + 2408393069, + 13033202463, + 13534990424, + 2408394019, + 13534990425, + 2408394022, + 2408394020, + 2829149693, + 5762095662, + 2408393015, + 2408379352 + ], + "geometry": [ + { "lat": 40.8308966, "lon": -73.9202573 }, + { "lat": 40.8309843, "lon": -73.9202066 }, + { "lat": 40.8314052, "lon": -73.9199617 }, + { "lat": 40.8316020, "lon": -73.9198457 }, + { "lat": 40.8317743, "lon": -73.9197409 }, + { "lat": 40.8318190, "lon": -73.9197128 }, + { "lat": 40.8318835, "lon": -73.9196722 }, + { "lat": 40.8319453, "lon": -73.9196333 }, + { "lat": 40.8322977, "lon": -73.9193958 }, + { "lat": 40.8324831, "lon": -73.9192607 }, + { "lat": 40.8326434, "lon": -73.9191416 }, + { "lat": 40.8327859, "lon": -73.9190329 }, + { "lat": 40.8329268, "lon": -73.9189207 }, + { "lat": 40.8329729, "lon": -73.9188828 }, + { "lat": 40.8330228, "lon": -73.9188418 }, + { "lat": 40.8330719, "lon": -73.9188007 }, + { "lat": 40.8332321, "lon": -73.9186670 }, + { "lat": 40.8334009, "lon": -73.9185176 }, + { "lat": 40.8335642, "lon": -73.9183685 }, + { "lat": 40.8337265, "lon": -73.9182154 }, + { "lat": 40.8339667, "lon": -73.9179808 }, + { "lat": 40.8342899, "lon": -73.9176720 }, + { "lat": 40.8343278, "lon": -73.9176361 }, + { "lat": 40.8343818, "lon": -73.9175837 }, + { "lat": 40.8345112, "lon": -73.9174596 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 278565111, + "bounds": { + "minlat": 40.8345091, + "minlon": -73.9183051, + "maxlat": 40.8346255, + "maxlon": -73.9179639 + }, + "nodes": [ + 2408393013, + 2408393038, + 2408393036, + 13534990430, + 13534990431, + 5762095676, + 2408393054 + ], + "geometry": [ + { "lat": 40.8346255, "lon": -73.9183051 }, + { "lat": 40.8346070, "lon": -73.9182511 }, + { "lat": 40.8345603, "lon": -73.9181152 }, + { "lat": 40.8345565, "lon": -73.9181052 }, + { "lat": 40.8345492, "lon": -73.9180833 }, + { "lat": 40.8345419, "lon": -73.9180613 }, + { "lat": 40.8345091, "lon": -73.9179639 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 167th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 278565112, + "bounds": { + "minlat": 40.8346421, + "minlon": -73.9193882, + "maxlat": 40.8351852, + "maxlon": -73.9178339 + }, + "nodes": [ + 2408379343, + 5762095677, + 2408393067, + 2408393065, + 42719428, + 2408393073, + 2408393040, + 12998477312, + 42733747 + ], + "geometry": [ + { "lat": 40.8346421, "lon": -73.9178339 }, + { "lat": 40.8346735, "lon": -73.9179254 }, + { "lat": 40.8346931, "lon": -73.9179814 }, + { "lat": 40.8347572, "lon": -73.9181645 }, + { "lat": 40.8347750, "lon": -73.9182153 }, + { "lat": 40.8347966, "lon": -73.9182771 }, + { "lat": 40.8349609, "lon": -73.9187465 }, + { "lat": 40.8351637, "lon": -73.9193255 }, + { "lat": 40.8351852, "lon": -73.9193882 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 167th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 278565113, + "bounds": { + "minlat": 40.8350294, + "minlon": -73.9199110, + "maxlat": 40.8352623, + "maxlon": -73.9194803 + }, + "nodes": [ + 2408379355, + 2408393052, + 12998540250, + 2408379338 + ], + "geometry": [ + { "lat": 40.8352623, "lon": -73.9199110 }, + { "lat": 40.8350801, "lon": -73.9195906 }, + { "lat": 40.8350715, "lon": -73.9195718 }, + { "lat": 40.8350294, "lon": -73.9194803 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 278565115, + "bounds": { + "minlat": 40.8284324, + "minlon": -73.9216266, + "maxlat": 40.8308020, + "maxlon": -73.9203119 + }, + "nodes": [ + 13533563288, + 10126985435, + 2408446151, + 10126985447, + 13534912288, + 10126973899, + 2408446176, + 10126985496, + 13534912296, + 8571918551, + 10126985506, + 10126985491 + ], + "geometry": [ + { "lat": 40.8284324, "lon": -73.9216266 }, + { "lat": 40.8284620, "lon": -73.9216105 }, + { "lat": 40.8285430, "lon": -73.9215668 }, + { "lat": 40.8286010, "lon": -73.9215353 }, + { "lat": 40.8294731, "lon": -73.9210417 }, + { "lat": 40.8295057, "lon": -73.9210240 }, + { "lat": 40.8295672, "lon": -73.9209906 }, + { "lat": 40.8296312, "lon": -73.9209558 }, + { "lat": 40.8306816, "lon": -73.9203814 }, + { "lat": 40.8307134, "lon": -73.9203631 }, + { "lat": 40.8307366, "lon": -73.9203497 }, + { "lat": 40.8308020, "lon": -73.9203119 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 278565116, + "bounds": { + "minlat": 40.8310217, + "minlon": -73.9206191, + "maxlat": 40.8345091, + "maxlon": -73.9179639 + }, + "nodes": [ + 2408393054, + 5762095660, + 2408393032, + 13534990428, + 2408393071, + 2408393056, + 13534990426, + 13534990418, + 13033202461, + 2408393062, + 13033202464, + 13534990413, + 2408438452, + 13534990411, + 2408438458, + 13534990410, + 13534990401, + 13036655653, + 2408438451, + 13036655649, + 13533563290, + 13534912300, + 13533563289, + 13534912295, + 8571884288, + 12991217547, + 2408438463 + ], + "geometry": [ + { "lat": 40.8345091, "lon": -73.9179639 }, + { "lat": 40.8344569, "lon": -73.9180149 }, + { "lat": 40.8342790, "lon": -73.9181870 }, + { "lat": 40.8340747, "lon": -73.9183896 }, + { "lat": 40.8338729, "lon": -73.9185843 }, + { "lat": 40.8336393, "lon": -73.9187973 }, + { "lat": 40.8334288, "lon": -73.9189833 }, + { "lat": 40.8332461, "lon": -73.9191397 }, + { "lat": 40.8332048, "lon": -73.9191743 }, + { "lat": 40.8331537, "lon": -73.9192171 }, + { "lat": 40.8330958, "lon": -73.9192655 }, + { "lat": 40.8329867, "lon": -73.9193504 }, + { "lat": 40.8328399, "lon": -73.9194646 }, + { "lat": 40.8327317, "lon": -73.9195453 }, + { "lat": 40.8325470, "lon": -73.9196787 }, + { "lat": 40.8323995, "lon": -73.9197836 }, + { "lat": 40.8321121, "lon": -73.9199770 }, + { "lat": 40.8320675, "lon": -73.9200050 }, + { "lat": 40.8320115, "lon": -73.9200417 }, + { "lat": 40.8319479, "lon": -73.9200827 }, + { "lat": 40.8317307, "lon": -73.9202141 }, + { "lat": 40.8315708, "lon": -73.9203076 }, + { "lat": 40.8314439, "lon": -73.9203811 }, + { "lat": 40.8311631, "lon": -73.9205371 }, + { "lat": 40.8311341, "lon": -73.9205539 }, + { "lat": 40.8311001, "lon": -73.9205733 }, + { "lat": 40.8310217, "lon": -73.9206191 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 278565117, + "bounds": { + "minlat": 40.8344456, + "minlon": -73.9177718, + "maxlat": 40.8345751, + "maxlon": -73.9176461 + }, + "nodes": [ + 2408379347, + 2408379335 + ], + "geometry": [ + { "lat": 40.8345751, "lon": -73.9176461 }, + { "lat": 40.8344456, "lon": -73.9177718 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "sidewalk:both": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 278565119, + "bounds": { + "minlat": 40.8346421, + "minlon": -73.9178339, + "maxlat": 40.8364636, + "maxlon": -73.9160533 + }, + "nodes": [ + 2408369219, + 13038884625, + 2408379357, + 13534990436, + 2408379334, + 13534990435, + 2829149698, + 12739350653, + 2408379343 + ], + "geometry": [ + { "lat": 40.8364636, "lon": -73.9160533 }, + { "lat": 40.8363986, "lon": -73.9161176 }, + { "lat": 40.8358415, "lon": -73.9166607 }, + { "lat": 40.8354450, "lon": -73.9170487 }, + { "lat": 40.8352649, "lon": -73.9172230 }, + { "lat": 40.8350686, "lon": -73.9174131 }, + { "lat": 40.8347341, "lon": -73.9177441 }, + { "lat": 40.8347004, "lon": -73.9177774 }, + { "lat": 40.8346421, "lon": -73.9178339 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 278565120, + "bounds": { + "minlat": 40.8347750, + "minlon": -73.9182153, + "maxlat": 40.8361060, + "maxlon": -73.9174330 + }, + "nodes": [ + 42719428, + 12739350655, + 8575397001, + 6224280783, + 12739350663, + 42719430 + ], + "geometry": [ + { "lat": 40.8347750, "lon": -73.9182153 }, + { "lat": 40.8348366, "lon": -73.9181789 }, + { "lat": 40.8348673, "lon": -73.9181609 }, + { "lat": 40.8360053, "lon": -73.9174916 }, + { "lat": 40.8360555, "lon": -73.9174624 }, + { "lat": 40.8361060, "lon": -73.9174330 } + ], + "tags": { + "highway": "residential", + "name": "Grandview Place", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grandview", + "tiger:name_type": "Pl", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 278568006, + "bounds": { + "minlat": 40.8213359, + "minlon": -73.9257405, + "maxlat": 40.8227933, + "maxlon": -73.9247832 + }, + "nodes": [ + 2409024153, + 2323816434, + 12162740272, + 2409024141, + 2409024146, + 2409024148, + 12162740273, + 2323816433, + 2409024135, + 12162740275, + 4207892894, + 2409024158, + 12162740276, + 2822074822 + ], + "geometry": [ + { "lat": 40.8227933, "lon": -73.9247832 }, + { "lat": 40.8224839, "lon": -73.9249256 }, + { "lat": 40.8223825, "lon": -73.9249778 }, + { "lat": 40.8222609, "lon": -73.9250402 }, + { "lat": 40.8221360, "lon": -73.9251082 }, + { "lat": 40.8220313, "lon": -73.9251712 }, + { "lat": 40.8219246, "lon": -73.9252437 }, + { "lat": 40.8218220, "lon": -73.9253200 }, + { "lat": 40.8216612, "lon": -73.9254491 }, + { "lat": 40.8215742, "lon": -73.9255239 }, + { "lat": 40.8215146, "lon": -73.9255760 }, + { "lat": 40.8214395, "lon": -73.9256447 }, + { "lat": 40.8213865, "lon": -73.9256929 }, + { "lat": 40.8213359, "lon": -73.9257405 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "turn:lanes": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 278572389, + "bounds": { + "minlat": 40.8271341, + "minlon": -73.9241391, + "maxlat": 40.8273868, + "maxlon": -73.9239907 + }, + "nodes": [ + 2408448898, + 2408448901 + ], + "geometry": [ + { "lat": 40.8273868, "lon": -73.9239907 }, + { "lat": 40.8271341, "lon": -73.9241391 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Walton Avenue", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 278618227, + "bounds": { + "minlat": 40.8502920, + "minlon": -73.9446786, + "maxlat": 40.8513425, + "maxlon": -73.9435265 + }, + "nodes": [ + 2829585701, + 374512763, + 7907916448, + 7907916408, + 42458666, + 7907883468, + 374512780, + 7907883464, + 60916563 + ], + "geometry": [ + { "lat": 40.8513425, "lon": -73.9435265 }, + { "lat": 40.8510722, "lon": -73.9438777 }, + { "lat": 40.8509919, "lon": -73.9439813 }, + { "lat": 40.8509139, "lon": -73.9440786 }, + { "lat": 40.8508288, "lon": -73.9441817 }, + { "lat": 40.8507402, "lon": -73.9442798 }, + { "lat": 40.8506462, "lon": -73.9443761 }, + { "lat": 40.8505625, "lon": -73.9444545 }, + { "lat": 40.8502920, "lon": -73.9446786 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 278618232, + "bounds": { + "minlat": 40.8513425, + "minlon": -73.9435265, + "maxlat": 40.8515102, + "maxlon": -73.9433114 + }, + "nodes": [ + 42458663, + 2829585701 + ], + "geometry": [ + { "lat": 40.8515102, "lon": -73.9433114 }, + { "lat": 40.8513425, "lon": -73.9435265 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 278667969, + "bounds": { + "minlat": 40.8408796, + "minlon": -73.9356695, + "maxlat": 40.8413000, + "maxlon": -73.9354807 + }, + "nodes": [ + 9908577524, + 2499802980, + 9908577525, + 2499802964, + 13320083282 + ], + "geometry": [ + { "lat": 40.8408796, "lon": -73.9354807 }, + { "lat": 40.8412231, "lon": -73.9356469 }, + { "lat": 40.8412588, "lon": -73.9356589 }, + { "lat": 40.8412856, "lon": -73.9356657 }, + { "lat": 40.8413000, "lon": -73.9356695 } + ], + "tags": { + "alt_name": "Paul Robeson Boulevard", + "alt_name_2": "Officer Michael Buczek Avenue", + "description": "This honorary street name memorializes Paul Robeson.", + "description_2": "This honorary street name memorializes Officer Michael Buczek.", + "highway": "residential", + "historic": "memorial", + "name": "Edgecombe Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 278667972, + "bounds": { + "minlat": 40.8410549, + "minlon": -73.9388621, + "maxlat": 40.8422438, + "maxlon": -73.9360373 + }, + "nodes": [ + 42433041, + 8150068506, + 6836035746, + 42454622, + 6836035748, + 6836035766, + 42435198 + ], + "geometry": [ + { "lat": 40.8422438, "lon": -73.9388621 }, + { "lat": 40.8422007, "lon": -73.9387616 }, + { "lat": 40.8417073, "lon": -73.9376011 }, + { "lat": 40.8416705, "lon": -73.9375115 }, + { "lat": 40.8416319, "lon": -73.9374118 }, + { "lat": 40.8411108, "lon": -73.9361776 }, + { "lat": 40.8410549, "lon": -73.9360373 } + ], + "tags": { + "bicycle": "use_sidepath", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 170th Street", + "name_1": "West 170 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "170th", + "tiger:name_base_1": "170", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 278707978, + "bounds": { + "minlat": 40.8292915, + "minlon": -73.9519259, + "maxlat": 40.8296741, + "maxlon": -73.9516547 + }, + "nodes": [ + 595338298, + 7907957241, + 2830276528 + ], + "geometry": [ + { "lat": 40.8296741, "lon": -73.9516547 }, + { "lat": 40.8294930, "lon": -73.9517813 }, + { "lat": 40.8292915, "lon": -73.9519259 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 278707979, + "bounds": { + "minlat": 40.8292599, + "minlon": -73.9517862, + "maxlat": 40.8296533, + "maxlon": -73.9515116 + }, + "nodes": [ + 2830276527, + 7907957253, + 42458522 + ], + "geometry": [ + { "lat": 40.8292599, "lon": -73.9517862 }, + { "lat": 40.8294528, "lon": -73.9516481 }, + { "lat": 40.8296533, "lon": -73.9515116 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 278707980, + "bounds": { + "minlat": 40.8287140, + "minlon": -73.9523880, + "maxlat": 40.8292915, + "maxlon": -73.9519259 + }, + "nodes": [ + 2830276528, + 254342116, + 7907957218, + 595338023 + ], + "geometry": [ + { "lat": 40.8292915, "lon": -73.9519259 }, + { "lat": 40.8290818, "lon": -73.9520810 }, + { "lat": 40.8289148, "lon": -73.9522132 }, + { "lat": 40.8287140, "lon": -73.9523880 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 278707981, + "bounds": { + "minlat": 40.8296533, + "minlon": -73.9515116, + "maxlat": 40.8325805, + "maxlon": -73.9502612 + }, + "nodes": [ + 42458522, + 7907957280, + 7907957257, + 7907957233, + 7907957284, + 7907957261, + 7907957237, + 7907988089, + 7907957266, + 254341828, + 7907957270, + 7907957219, + 7907957242, + 587934347 + ], + "geometry": [ + { "lat": 40.8296533, "lon": -73.9515116 }, + { "lat": 40.8298495, "lon": -73.9513850 }, + { "lat": 40.8300527, "lon": -73.9512584 }, + { "lat": 40.8302486, "lon": -73.9511469 }, + { "lat": 40.8304558, "lon": -73.9510380 }, + { "lat": 40.8306548, "lon": -73.9509417 }, + { "lat": 40.8308662, "lon": -73.9508457 }, + { "lat": 40.8310815, "lon": -73.9507569 }, + { "lat": 40.8312952, "lon": -73.9506732 }, + { "lat": 40.8315038, "lon": -73.9505959 }, + { "lat": 40.8317178, "lon": -73.9505206 }, + { "lat": 40.8319311, "lon": -73.9504558 }, + { "lat": 40.8321476, "lon": -73.9503881 }, + { "lat": 40.8325805, "lon": -73.9502612 } + ], + "tags": { + "destination:lanes": "none|none|George Washington Bridge;Cross Bronx Expressway;West 178th Street;West 158th Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "turn:lanes": "none|none|through;slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 278727779, + "bounds": { + "minlat": 40.8263109, + "minlon": -73.9867927, + "maxlat": 40.8276443, + "maxlon": -73.9844576 + }, + "nodes": [ + 103245949, + 13525882226, + 7538917951, + 7552766730, + 7552640082, + 7552734528, + 7542527379, + 7552766737, + 7542550786, + 7552734529, + 7552766735, + 103282020 + ], + "geometry": [ + { "lat": 40.8276443, "lon": -73.9867927 }, + { "lat": 40.8275875, "lon": -73.9866943 }, + { "lat": 40.8274577, "lon": -73.9864653 }, + { "lat": 40.8274160, "lon": -73.9863930 }, + { "lat": 40.8273814, "lon": -73.9863330 }, + { "lat": 40.8273729, "lon": -73.9863183 }, + { "lat": 40.8272428, "lon": -73.9860925 }, + { "lat": 40.8269336, "lon": -73.9855529 }, + { "lat": 40.8269091, "lon": -73.9855101 }, + { "lat": 40.8263734, "lon": -73.9845675 }, + { "lat": 40.8263648, "lon": -73.9845525 }, + { "lat": 40.8263109, "lon": -73.9844576 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Lawton Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lawton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 278727780, + "bounds": { + "minlat": 40.8253305, + "minlon": -73.9844576, + "maxlat": 40.8263109, + "maxlon": -73.9827220 + }, + "nodes": [ + 103282020, + 7553077143, + 7553077144, + 7553077259, + 103235726 + ], + "geometry": [ + { "lat": 40.8263109, "lon": -73.9844576 }, + { "lat": 40.8262528, "lon": -73.9843547 }, + { "lat": 40.8260057, "lon": -73.9839173 }, + { "lat": 40.8255507, "lon": -73.9831119 }, + { "lat": 40.8253305, "lon": -73.9827220 } + ], + "tags": { + "highway": "residential", + "name": "Lawton Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lawton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 278727781, + "bounds": { + "minlat": 40.8305586, + "minlon": -73.9926690, + "maxlat": 40.8309670, + "maxlon": -73.9919054 + }, + "nodes": [ + 103242159, + 13527758467, + 103147981 + ], + "geometry": [ + { "lat": 40.8305586, "lon": -73.9919054 }, + { "lat": 40.8309217, "lon": -73.9925843 }, + { "lat": 40.8309670, "lon": -73.9926690 } + ], + "tags": { + "highway": "residential", + "name": "Lawton Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lawton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 278727782, + "bounds": { + "minlat": 40.8292220, + "minlon": -73.9902681, + "maxlat": 40.8296359, + "maxlon": -73.9895218 + }, + "nodes": [ + 103247477, + 103239277 + ], + "geometry": [ + { "lat": 40.8292220, "lon": -73.9895218 }, + { "lat": 40.8296359, "lon": -73.9902681 } + ], + "tags": { + "highway": "residential", + "name": "Lawton Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lawton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 278727783, + "bounds": { + "minlat": 40.8239357, + "minlon": -73.9827220, + "maxlat": 40.8253305, + "maxlon": -73.9802530 + }, + "nodes": [ + 103235726, + 7591274666, + 103195296 + ], + "geometry": [ + { "lat": 40.8253305, "lon": -73.9827220 }, + { "lat": 40.8251653, "lon": -73.9824296 }, + { "lat": 40.8239357, "lon": -73.9802530 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Lawton Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lawton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 278727784, + "bounds": { + "minlat": 40.8296359, + "minlon": -73.9919054, + "maxlat": 40.8305586, + "maxlon": -73.9902681 + }, + "nodes": [ + 103239277, + 103244282, + 7529710508, + 103242159 + ], + "geometry": [ + { "lat": 40.8296359, "lon": -73.9902681 }, + { "lat": 40.8300507, "lon": -73.9909941 }, + { "lat": 40.8303878, "lon": -73.9916017 }, + { "lat": 40.8305586, "lon": -73.9919054 } + ], + "tags": { + "highway": "residential", + "name": "Lawton Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lawton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 278727785, + "bounds": { + "minlat": 40.8283902, + "minlon": -73.9895218, + "maxlat": 40.8292220, + "maxlon": -73.9880898 + }, + "nodes": [ + 103288783, + 103288785, + 103288788, + 103247477 + ], + "geometry": [ + { "lat": 40.8283902, "lon": -73.9880898 }, + { "lat": 40.8284302, "lon": -73.9881402 }, + { "lat": 40.8288174, "lon": -73.9888030 }, + { "lat": 40.8292220, "lon": -73.9895218 } + ], + "tags": { + "highway": "residential", + "name": "Lawton Avenue", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lawton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 278727786, + "bounds": { + "minlat": 40.8276443, + "minlon": -73.9880898, + "maxlat": 40.8283902, + "maxlon": -73.9867927 + }, + "nodes": [ + 103245949, + 13525882225, + 2795608132, + 7563709590, + 7189854491, + 103288780, + 103288782, + 103288783 + ], + "geometry": [ + { "lat": 40.8276443, "lon": -73.9867927 }, + { "lat": 40.8276988, "lon": -73.9868948 }, + { "lat": 40.8279455, "lon": -73.9873563 }, + { "lat": 40.8280466, "lon": -73.9875376 }, + { "lat": 40.8282300, "lon": -73.9878666 }, + { "lat": 40.8282842, "lon": -73.9879632 }, + { "lat": 40.8283156, "lon": -73.9879938 }, + { "lat": 40.8283902, "lon": -73.9880898 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Lawton Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lawton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 278882487, + "bounds": { + "minlat": 40.8044438, + "minlon": -73.9427583, + "maxlat": 40.8057381, + "maxlon": -73.9396716 + }, + "nodes": [ + 42438702, + 7004436337, + 3023173331, + 4577988774, + 10171231553, + 42438704, + 10171231550, + 11986404588, + 10169411311, + 596776656 + ], + "geometry": [ + { "lat": 40.8057381, "lon": -73.9427583 }, + { "lat": 40.8056863, "lon": -73.9426349 }, + { "lat": 40.8055782, "lon": -73.9423676 }, + { "lat": 40.8053163, "lon": -73.9417413 }, + { "lat": 40.8051272, "lon": -73.9412973 }, + { "lat": 40.8050631, "lon": -73.9411468 }, + { "lat": 40.8050241, "lon": -73.9410540 }, + { "lat": 40.8046192, "lon": -73.9400893 }, + { "lat": 40.8044763, "lon": -73.9397490 }, + { "lat": 40.8044438, "lon": -73.9396716 } + ], + "tags": { + "highway": "residential", + "name": "East 124th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 278882488, + "bounds": { + "minlat": 40.8051222, + "minlon": -73.9396990, + "maxlat": 40.8053372, + "maxlon": -73.9391836 + }, + "nodes": [ + 4212658371, + 10169411298, + 596776654 + ], + "geometry": [ + { "lat": 40.8053372, "lon": -73.9396990 }, + { "lat": 40.8051468, "lon": -73.9392424 }, + { "lat": 40.8051222, "lon": -73.9391836 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "sidewalk:both": "separate", + "turn:lanes:backward": "|merge_to_left", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 278882490, + "bounds": { + "minlat": 40.8050563, + "minlon": -73.9384003, + "maxlat": 40.8056693, + "maxlon": -73.9369374 + }, + "nodes": [ + 42434129, + 11214344806, + 10228306713, + 10169411282, + 589928028 + ], + "geometry": [ + { "lat": 40.8050563, "lon": -73.9369374 }, + { "lat": 40.8050954, "lon": -73.9370307 }, + { "lat": 40.8055986, "lon": -73.9382318 }, + { "lat": 40.8056514, "lon": -73.9383576 }, + { "lat": 40.8056693, "lon": -73.9384003 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "East 126th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 278909806, + "bounds": { + "minlat": 40.7857791, + "minlon": -73.9471547, + "maxlat": 40.7866238, + "maxlon": -73.9467614 + }, + "nodes": [ + 2831988194, + 6181709398, + 2831988186, + 6247953718, + 3519966013, + 6247953686 + ], + "geometry": [ + { "lat": 40.7866238, "lon": -73.9467614 }, + { "lat": 40.7865595, "lon": -73.9468053 }, + { "lat": 40.7863557, "lon": -73.9469612 }, + { "lat": 40.7861204, "lon": -73.9470424 }, + { "lat": 40.7860992, "lon": -73.9470497 }, + { "lat": 40.7857791, "lon": -73.9471547 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 278909807, + "bounds": { + "minlat": 40.7863557, + "minlon": -73.9472054, + "maxlat": 40.7867279, + "maxlon": -73.9469612 + }, + "nodes": [ + 2831988196, + 6181708462, + 2831988193, + 3519957759, + 2831988191, + 3519957758, + 2831988190, + 2831988186 + ], + "geometry": [ + { "lat": 40.7867279, "lon": -73.9470038 }, + { "lat": 40.7866672, "lon": -73.9470615 }, + { "lat": 40.7865535, "lon": -73.9471740 }, + { "lat": 40.7865224, "lon": -73.9471984 }, + { "lat": 40.7864996, "lon": -73.9472054 }, + { "lat": 40.7864745, "lon": -73.9472013 }, + { "lat": 40.7864581, "lon": -73.9471840 }, + { "lat": 40.7863557, "lon": -73.9469612 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 279480826, + "bounds": { + "minlat": 40.7672925, + "minlon": -74.0176442, + "maxlat": 40.7676597, + "maxlon": -74.0167237 + }, + "nodes": [ + 2631530250, + 5964467367, + 2631530251, + 2837053791, + 2631530252 + ], + "geometry": [ + { "lat": 40.7672925, "lon": -74.0167237 }, + { "lat": 40.7673113, "lon": -74.0167674 }, + { "lat": 40.7676110, "lon": -74.0174666 }, + { "lat": 40.7676339, "lon": -74.0175406 }, + { "lat": 40.7676597, "lon": -74.0176442 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Eton Row", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 279480827, + "bounds": { + "minlat": 40.7667999, + "minlon": -74.0172922, + "maxlat": 40.7672925, + "maxlon": -74.0167237 + }, + "nodes": [ + 2631530250, + 5964467366, + 2837053793, + 7283987555, + 2837053794, + 2837053795 + ], + "geometry": [ + { "lat": 40.7672925, "lon": -74.0167237 }, + { "lat": 40.7672423, "lon": -74.0167636 }, + { "lat": 40.7671432, "lon": -74.0168339 }, + { "lat": 40.7668509, "lon": -74.0170565 }, + { "lat": 40.7668163, "lon": -74.0171666 }, + { "lat": 40.7667999, "lon": -74.0172922 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Henley Place", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 279829745, + "bounds": { + "minlat": 40.7479496, + "minlon": -74.0047349, + "maxlat": 40.7480438, + "maxlon": -74.0045918 + }, + "nodes": [ + 2840192826, + 2845975411, + 2840192827, + 2840192828, + 2840192833, + 2840192829, + 2840192830, + 2840192832, + 2845975410, + 2840192831, + 2840192826 + ], + "geometry": [ + { "lat": 40.7480438, "lon": -74.0047015 }, + { "lat": 40.7480248, "lon": -74.0046543 }, + { "lat": 40.7480185, "lon": -74.0046386 }, + { "lat": 40.7480286, "lon": -74.0046333 }, + { "lat": 40.7480224, "lon": -74.0046206 }, + { "lat": 40.7480084, "lon": -74.0045918 }, + { "lat": 40.7479496, "lon": -74.0046333 }, + { "lat": 40.7479572, "lon": -74.0046505 }, + { "lat": 40.7479745, "lon": -74.0046903 }, + { "lat": 40.7479942, "lon": -74.0047349 }, + { "lat": 40.7480438, "lon": -74.0047015 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 280303974, + "bounds": { + "minlat": 40.8147191, + "minlon": -73.9074910, + "maxlat": 40.8149164, + "maxlon": -73.9065802 + }, + "nodes": [ + 42758623, + 13809174745, + 8602649347, + 42755247 + ], + "geometry": [ + { "lat": 40.8147191, "lon": -73.9065802 }, + { "lat": 40.8147382, "lon": -73.9066683 }, + { "lat": 40.8147892, "lon": -73.9069040 }, + { "lat": 40.8149164, "lon": -73.9074910 } + ], + "tags": { + "highway": "residential", + "name": "East 151st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "151st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 280303975, + "bounds": { + "minlat": 40.8145230, + "minlon": -73.9065802, + "maxlat": 40.8147191, + "maxlon": -73.9056740 + }, + "nodes": [ + 42758628, + 13809174743, + 5859955162, + 13809174742, + 42758623 + ], + "geometry": [ + { "lat": 40.8145230, "lon": -73.9056740 }, + { "lat": 40.8145405, "lon": -73.9057548 }, + { "lat": 40.8146911, "lon": -73.9064508 }, + { "lat": 40.8146985, "lon": -73.9064850 }, + { "lat": 40.8147191, "lon": -73.9065802 } + ], + "tags": { + "highway": "residential", + "name": "East 151st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "151st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 280307513, + "bounds": { + "minlat": 40.8253724, + "minlon": -73.9118061, + "maxlat": 40.8264476, + "maxlon": -73.9114566 + }, + "nodes": [ + 5540168254, + 5482222769, + 2827547780 + ], + "geometry": [ + { "lat": 40.8253724, "lon": -73.9114566 }, + { "lat": 40.8261066, "lon": -73.9116931 }, + { "lat": 40.8264476, "lon": -73.9118061 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Brook Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 280307803, + "bounds": { + "minlat": 40.8227635, + "minlon": -73.9141660, + "maxlat": 40.8235780, + "maxlon": -73.9114752 + }, + "nodes": [ + 42776446, + 12040069742, + 8230743784, + 5482222766, + 10647741290, + 8184243051, + 12040069735, + 42780981, + 42730064 + ], + "geometry": [ + { "lat": 40.8235780, "lon": -73.9141660 }, + { "lat": 40.8235465, "lon": -73.9140642 }, + { "lat": 40.8233419, "lon": -73.9134035 }, + { "lat": 40.8232750, "lon": -73.9131872 }, + { "lat": 40.8232374, "lon": -73.9130656 }, + { "lat": 40.8231247, "lon": -73.9127014 }, + { "lat": 40.8230979, "lon": -73.9126148 }, + { "lat": 40.8230750, "lon": -73.9125410 }, + { "lat": 40.8227635, "lon": -73.9114752 } + ], + "tags": { + "highway": "residential", + "name": "East 160th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "160th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 280307805, + "bounds": { + "minlat": 40.8235780, + "minlon": -73.9158849, + "maxlat": 40.8241067, + "maxlon": -73.9141660 + }, + "nodes": [ + 42776446, + 12040069759, + 13702992930, + 5482222783, + 8575373977, + 9917683046, + 42750611 + ], + "geometry": [ + { "lat": 40.8235780, "lon": -73.9141660 }, + { "lat": 40.8236137, "lon": -73.9142821 }, + { "lat": 40.8236897, "lon": -73.9145293 }, + { "lat": 40.8239876, "lon": -73.9154984 }, + { "lat": 40.8240684, "lon": -73.9157613 }, + { "lat": 40.8240832, "lon": -73.9158092 }, + { "lat": 40.8241067, "lon": -73.9158849 } + ], + "tags": { + "highway": "residential", + "name": "East 160th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "160th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 280308177, + "bounds": { + "minlat": 40.8221942, + "minlon": -73.9115714, + "maxlat": 40.8225586, + "maxlon": -73.9113662 + }, + "nodes": [ + 2844501753, + 11629754257, + 2844501752 + ], + "geometry": [ + { "lat": 40.8225586, "lon": -73.9115714 }, + { "lat": 40.8222767, "lon": -73.9114127 }, + { "lat": 40.8221942, "lon": -73.9113662 } + ], + "tags": { + "highway": "residential", + "name": "Washington Avenue", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Washington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 280335619, + "bounds": { + "minlat": 40.8220639, + "minlon": -73.9117795, + "maxlat": 40.8227635, + "maxlon": -73.9114752 + }, + "nodes": [ + 42730064, + 2844501753, + 8454351364, + 42730063 + ], + "geometry": [ + { "lat": 40.8227635, "lon": -73.9114752 }, + { "lat": 40.8225586, "lon": -73.9115714 }, + { "lat": 40.8221818, "lon": -73.9117795 }, + { "lat": 40.8220639, "lon": -73.9117739 } + ], + "tags": { + "highway": "residential", + "name": "Washington Avenue", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Washington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 280372662, + "bounds": { + "minlat": 40.7965621, + "minlon": -74.0116574, + "maxlat": 40.7977258, + "maxlon": -74.0107112 + }, + "nodes": [ + 103867987, + 7653964078, + 440243553, + 103869040 + ], + "geometry": [ + { "lat": 40.7965621, "lon": -74.0116574 }, + { "lat": 40.7966183, "lon": -74.0116112 }, + { "lat": 40.7974290, "lon": -74.0109460 }, + { "lat": 40.7977258, "lon": -74.0107112 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 280373182, + "bounds": { + "minlat": 40.7952126, + "minlon": -74.0127378, + "maxlat": 40.7965621, + "maxlon": -74.0116574 + }, + "nodes": [ + 103869035, + 7653964042, + 7078961207, + 7653964046, + 103867987 + ], + "geometry": [ + { "lat": 40.7952126, "lon": -74.0127378 }, + { "lat": 40.7952718, "lon": -74.0126882 }, + { "lat": 40.7959301, "lon": -74.0121650 }, + { "lat": 40.7965007, "lon": -74.0117066 }, + { "lat": 40.7965621, "lon": -74.0116574 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 280373185, + "bounds": { + "minlat": 40.7965621, + "minlon": -74.0132070, + "maxlat": 40.7972719, + "maxlon": -74.0116574 + }, + "nodes": [ + 103867987, + 7653964044, + 7653964030, + 103867989, + 7653964019, + 7653964017, + 103861908 + ], + "geometry": [ + { "lat": 40.7965621, "lon": -74.0116574 }, + { "lat": 40.7965971, "lon": -74.0117354 }, + { "lat": 40.7968811, "lon": -74.0123681 }, + { "lat": 40.7969077, "lon": -74.0124272 }, + { "lat": 40.7969427, "lon": -74.0125078 }, + { "lat": 40.7972378, "lon": -74.0131348 }, + { "lat": 40.7972719, "lon": -74.0132070 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09031010", + "highway": "tertiary", + "name": "70th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "70th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280374405, + "bounds": { + "minlat": 40.7959272, + "minlon": -74.0142932, + "maxlat": 40.7972719, + "maxlon": -74.0132070 + }, + "nodes": [ + 103861906, + 7653964001, + 7653963999, + 103861908 + ], + "geometry": [ + { "lat": 40.7959272, "lon": -74.0142932 }, + { "lat": 40.7959901, "lon": -74.0142424 }, + { "lat": 40.7972286, "lon": -74.0132420 }, + { "lat": 40.7972719, "lon": -74.0132070 } + ], + "tags": { + "highway": "residential", + "name": "Jackson Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Jackson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280374408, + "bounds": { + "minlat": 40.7972719, + "minlon": -74.0132070, + "maxlat": 40.7989590, + "maxlon": -74.0118320 + }, + "nodes": [ + 103861912, + 7653964009, + 6890764687, + 7653964007, + 103861908 + ], + "geometry": [ + { "lat": 40.7989590, "lon": -74.0118320 }, + { "lat": 40.7988990, "lon": -74.0118809 }, + { "lat": 40.7975767, "lon": -74.0129597 }, + { "lat": 40.7973378, "lon": -74.0131535 }, + { "lat": 40.7972719, "lon": -74.0132070 } + ], + "tags": { + "highway": "residential", + "name": "Jackson Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Jackson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280374923, + "bounds": { + "minlat": 40.7955650, + "minlon": -74.0134970, + "maxlat": 40.7969077, + "maxlon": -74.0124272 + }, + "nodes": [ + 103867989, + 7653964021, + 7653964035, + 103869202 + ], + "geometry": [ + { "lat": 40.7969077, "lon": -74.0124272 }, + { "lat": 40.7968669, "lon": -74.0124597 }, + { "lat": 40.7956226, "lon": -74.0134511 }, + { "lat": 40.7955650, "lon": -74.0134970 } + ], + "tags": { + "highway": "residential", + "name": "Polk Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Polk", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280374924, + "bounds": { + "minlat": 40.7969077, + "minlon": -74.0124272, + "maxlat": 40.7980624, + "maxlon": -74.0112744 + }, + "nodes": [ + 103873530, + 103885246, + 103885245, + 103885243, + 7653964058, + 103867989 + ], + "geometry": [ + { "lat": 40.7980034, "lon": -74.0112744 }, + { "lat": 40.7980579, "lon": -74.0113761 }, + { "lat": 40.7980624, "lon": -74.0114322 }, + { "lat": 40.7980415, "lon": -74.0115246 }, + { "lat": 40.7969716, "lon": -74.0123744 }, + { "lat": 40.7969077, "lon": -74.0124272 } + ], + "tags": { + "highway": "residential", + "name": "Polk Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Polk", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280375390, + "bounds": { + "minlat": 40.7948030, + "minlon": -74.0118736, + "maxlat": 40.7955574, + "maxlon": -74.0113184 + }, + "nodes": [ + 103855259, + 7653988904, + 103866644 + ], + "geometry": [ + { "lat": 40.7955574, "lon": -74.0113184 }, + { "lat": 40.7948704, "lon": -74.0118223 }, + { "lat": 40.7948030, "lon": -74.0118736 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680;Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721;Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093;07087", + "tiger:zip_right": "07047:07087:07093;07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 280375392, + "bounds": { + "minlat": 40.7919820, + "minlon": -74.0113184, + "maxlat": 40.7955574, + "maxlon": -74.0037238 + }, + "nodes": [ + 103855259, + 3809706320, + 103855257, + 7653988951, + 10245969561, + 10245969562, + 7653988953, + 103855255, + 7653988972, + 7653988979, + 103855254, + 7653988997, + 7653988999, + 103855253 + ], + "geometry": [ + { "lat": 40.7955574, "lon": -74.0113184 }, + { "lat": 40.7955031, "lon": -74.0112035 }, + { "lat": 40.7946995, "lon": -74.0094995 }, + { "lat": 40.7946683, "lon": -74.0094325 }, + { "lat": 40.7943399, "lon": -74.0087231 }, + { "lat": 40.7941136, "lon": -74.0082399 }, + { "lat": 40.7939086, "lon": -74.0078022 }, + { "lat": 40.7938694, "lon": -74.0077180 }, + { "lat": 40.7938398, "lon": -74.0076561 }, + { "lat": 40.7930812, "lon": -74.0060446 }, + { "lat": 40.7930461, "lon": -74.0059658 }, + { "lat": 40.7930130, "lon": -74.0058868 }, + { "lat": 40.7920188, "lon": -74.0038012 }, + { "lat": 40.7919820, "lon": -74.0037238 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09031009", + "highway": "residential", + "name": "69th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "69th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280380210, + "bounds": { + "minlat": 40.7913218, + "minlon": -74.0032487, + "maxlat": 40.7925709, + "maxlon": -74.0005673 + }, + "nodes": [ + 103867981, + 7468583716, + 7468583715, + 103867982, + 7468583879, + 7468583740, + 103867983 + ], + "geometry": [ + { "lat": 40.7913218, "lon": -74.0005673 }, + { "lat": 40.7913837, "lon": -74.0006985 }, + { "lat": 40.7917090, "lon": -74.0014040 }, + { "lat": 40.7917360, "lon": -74.0014623 }, + { "lat": 40.7917694, "lon": -74.0015327 }, + { "lat": 40.7925435, "lon": -74.0031623 }, + { "lat": 40.7925709, "lon": -74.0032487 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09031010", + "highway": "tertiary", + "name": "70th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "70th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280387187, + "bounds": { + "minlat": 40.7925709, + "minlon": -74.0108616, + "maxlat": 40.7961717, + "maxlon": -74.0032487 + }, + "nodes": [ + 103867983, + 7653989000, + 6948550063, + 7653988995, + 103862620, + 7653988973, + 7653988965, + 103855695, + 7653988944, + 7653988932, + 103867985, + 7289750281, + 3809706323, + 103866645 + ], + "geometry": [ + { "lat": 40.7925709, "lon": -74.0032487 }, + { "lat": 40.7926069, "lon": -74.0033257 }, + { "lat": 40.7934170, "lon": -74.0050605 }, + { "lat": 40.7935777, "lon": -74.0053873 }, + { "lat": 40.7936296, "lon": -74.0054940 }, + { "lat": 40.7936637, "lon": -74.0055673 }, + { "lat": 40.7944166, "lon": -74.0071898 }, + { "lat": 40.7944485, "lon": -74.0072586 }, + { "lat": 40.7944966, "lon": -74.0073600 }, + { "lat": 40.7952540, "lon": -74.0089576 }, + { "lat": 40.7952860, "lon": -74.0090245 }, + { "lat": 40.7953299, "lon": -74.0091184 }, + { "lat": 40.7960970, "lon": -74.0107606 }, + { "lat": 40.7961717, "lon": -74.0108616 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09031010", + "highway": "residential", + "name": "70th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "70th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280389944, + "bounds": { + "minlat": 40.7961717, + "minlon": -74.0116574, + "maxlat": 40.7965621, + "maxlon": -74.0108616 + }, + "nodes": [ + 103866645, + 7653988888, + 7653988886, + 103867987 + ], + "geometry": [ + { "lat": 40.7961717, "lon": -74.0108616 }, + { "lat": 40.7962340, "lon": -74.0109615 }, + { "lat": 40.7965307, "lon": -74.0115908 }, + { "lat": 40.7965621, "lon": -74.0116574 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09031010", + "highway": "tertiary", + "name": "70th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "70th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280391774, + "bounds": { + "minlat": 40.7942181, + "minlon": -74.0067825, + "maxlat": 40.7950337, + "maxlon": -74.0050181 + }, + "nodes": [ + 103855697, + 7653988977, + 7653988975, + 103862622 + ], + "geometry": [ + { "lat": 40.7950337, "lon": -74.0067825 }, + { "lat": 40.7950022, "lon": -74.0067141 }, + { "lat": 40.7942548, "lon": -74.0050967 }, + { "lat": 40.7942181, "lon": -74.0050181 } + ], + "tags": { + "highway": "residential", + "name": "71st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "71st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 280397589, + "bounds": { + "minlat": 40.7958594, + "minlon": -74.0104157, + "maxlat": 40.7967404, + "maxlon": -74.0085510 + }, + "nodes": [ + 103866650, + 3809706326, + 7289750280, + 440243584 + ], + "geometry": [ + { "lat": 40.7967404, "lon": -74.0104157 }, + { "lat": 40.7966940, "lon": -74.0103133 }, + { "lat": 40.7959075, "lon": -74.0086259 }, + { "lat": 40.7958594, "lon": -74.0085510 } + ], + "tags": { + "highway": "residential", + "name": "71st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "71st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 280397592, + "bounds": { + "minlat": 40.7950337, + "minlon": -74.0085510, + "maxlat": 40.7958594, + "maxlon": -74.0067825 + }, + "nodes": [ + 440243584, + 7653988936, + 7653988938, + 103855697 + ], + "geometry": [ + { "lat": 40.7958594, "lon": -74.0085510 }, + { "lat": 40.7958317, "lon": -74.0084914 }, + { "lat": 40.7950705, "lon": -74.0068579 }, + { "lat": 40.7950337, "lon": -74.0067825 } + ], + "tags": { + "highway": "residential", + "name": "71st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "71st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 280398812, + "bounds": { + "minlat": 40.7947971, + "minlon": -74.0063017, + "maxlat": 40.7956188, + "maxlon": -74.0045499 + }, + "nodes": [ + 103862628, + 7678477504, + 6917350791, + 7678477502, + 103855701 + ], + "geometry": [ + { "lat": 40.7947971, "lon": -74.0045499 }, + { "lat": 40.7948477, "lon": -74.0046595 }, + { "lat": 40.7954640, "lon": -74.0059722 }, + { "lat": 40.7955834, "lon": -74.0062307 }, + { "lat": 40.7956188, "lon": -74.0063017 } + ], + "tags": { + "highway": "residential", + "name": "72nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "72nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 280399745, + "bounds": { + "minlat": 40.7956188, + "minlon": -74.0080668, + "maxlat": 40.7964633, + "maxlon": -74.0063017 + }, + "nodes": [ + 103855701, + 7678310858, + 7678310856, + 103873528 + ], + "geometry": [ + { "lat": 40.7956188, "lon": -74.0063017 }, + { "lat": 40.7956556, "lon": -74.0063786 }, + { "lat": 40.7964358, "lon": -74.0080093 }, + { "lat": 40.7964633, "lon": -74.0080668 } + ], + "tags": { + "highway": "residential", + "name": "72nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "72nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 280401546, + "bounds": { + "minlat": 40.7807449, + "minlon": -74.0198330, + "maxlat": 40.7813429, + "maxlon": -74.0193394 + }, + "nodes": [ + 103880305, + 7377177588, + 7377177590, + 103885033 + ], + "geometry": [ + { "lat": 40.7813429, "lon": -74.0193394 }, + { "lat": 40.7812773, "lon": -74.0193934 }, + { "lat": 40.7808218, "lon": -74.0197696 }, + { "lat": 40.7807449, "lon": -74.0198330 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 280402420, + "bounds": { + "minlat": 40.7860218, + "minlon": -74.0102867, + "maxlat": 40.7883560, + "maxlon": -74.0084234 + }, + "nodes": [ + 103864943, + 7658692248, + 7588135064, + 7588135069, + 7658692246, + 103876897, + 7658692228, + 6889737992, + 103864386, + 7658692217, + 103864117 + ], + "geometry": [ + { "lat": 40.7883560, "lon": -74.0084234 }, + { "lat": 40.7883027, "lon": -74.0084652 }, + { "lat": 40.7879498, "lon": -74.0087420 }, + { "lat": 40.7877199, "lon": -74.0089222 }, + { "lat": 40.7874570, "lon": -74.0091283 }, + { "lat": 40.7873860, "lon": -74.0091840 }, + { "lat": 40.7873176, "lon": -74.0092387 }, + { "lat": 40.7869260, "lon": -74.0095514 }, + { "lat": 40.7865615, "lon": -74.0098426 }, + { "lat": 40.7861063, "lon": -74.0102171 }, + { "lat": 40.7860218, "lon": -74.0102867 } + ], + "tags": { + "highway": "residential", + "name": "Buchanan Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Buchanan", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280403009, + "bounds": { + "minlat": 40.7851961, + "minlon": -74.0135986, + "maxlat": 40.7859077, + "maxlon": -74.0120779 + }, + "nodes": [ + 103855597, + 7658692194, + 7658692196, + 4501150766 + ], + "geometry": [ + { "lat": 40.7859077, "lon": -74.0135986 }, + { "lat": 40.7858629, "lon": -74.0135029 }, + { "lat": 40.7852297, "lon": -74.0121498 }, + { "lat": 40.7851961, "lon": -74.0120779 } + ], + "tags": { + "highway": "residential", + "name": "58th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "58th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280403010, + "bounds": { + "minlat": 40.7859077, + "minlon": -74.0172931, + "maxlat": 40.7876148, + "maxlon": -74.0135986 + }, + "nodes": [ + 103862002, + 7675116937, + 7226569122, + 7675116949, + 103862000, + 7675116945, + 7675116947, + 103855597 + ], + "geometry": [ + { "lat": 40.7876148, "lon": -74.0172931 }, + { "lat": 40.7875653, "lon": -74.0171825 }, + { "lat": 40.7873515, "lon": -74.0167237 }, + { "lat": 40.7866517, "lon": -74.0152179 }, + { "lat": 40.7866156, "lon": -74.0151401 }, + { "lat": 40.7865733, "lon": -74.0150482 }, + { "lat": 40.7859469, "lon": -74.0136841 }, + { "lat": 40.7859077, "lon": -74.0135986 } + ], + "tags": { + "highway": "residential", + "name": "58th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "58th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280404033, + "bounds": { + "minlat": 40.7881010, + "minlon": -74.0107270, + "maxlat": 40.7887570, + "maxlon": -74.0101970 + }, + "nodes": [ + 103855471, + 7678131056, + 103855473 + ], + "geometry": [ + { "lat": 40.7881010, "lon": -74.0107270 }, + { "lat": 40.7881758, "lon": -74.0106666 }, + { "lat": 40.7887570, "lon": -74.0101970 } + ], + "tags": { + "highway": "residential", + "name": "Fillmore Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Fillmore", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280404195, + "bounds": { + "minlat": 40.7771800, + "minlon": -74.0138247, + "maxlat": 40.7774624, + "maxlon": -74.0137822 + }, + "nodes": [ + 103858345, + 103872546 + ], + "geometry": [ + { "lat": 40.7771800, "lon": -74.0138247 }, + { "lat": 40.7774624, "lon": -74.0137822 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 280407762, + "bounds": { + "minlat": 40.7861379, + "minlon": -74.0199955, + "maxlat": 40.7866019, + "maxlon": -74.0196332 + }, + "nodes": [ + 103869013, + 7657468914, + 103869015 + ], + "geometry": [ + { "lat": 40.7861379, "lon": -74.0199955 }, + { "lat": 40.7861939, "lon": -74.0199517 }, + { "lat": 40.7866019, "lon": -74.0196332 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280407763, + "bounds": { + "minlat": 40.7869240, + "minlon": -74.0193941, + "maxlat": 40.7871815, + "maxlon": -74.0191956 + }, + "nodes": [ + 103869017, + 7657468990, + 2781644341 + ], + "geometry": [ + { "lat": 40.7869240, "lon": -74.0193941 }, + { "lat": 40.7869686, "lon": -74.0193597 }, + { "lat": 40.7871815, "lon": -74.0191956 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280407764, + "bounds": { + "minlat": 40.7866019, + "minlon": -74.0196332, + "maxlat": 40.7869240, + "maxlon": -74.0193941 + }, + "nodes": [ + 103869015, + 7657468928, + 103869017 + ], + "geometry": [ + { "lat": 40.7866019, "lon": -74.0196332 }, + { "lat": 40.7868767, "lon": -74.0194292 }, + { "lat": 40.7869240, "lon": -74.0193941 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280408095, + "bounds": { + "minlat": 40.7857688, + "minlon": -74.0131201, + "maxlat": 40.7864780, + "maxlon": -74.0115829 + }, + "nodes": [ + 103862600, + 7675116978, + 7174014492, + 7675116980, + 103855599 + ], + "geometry": [ + { "lat": 40.7857688, "lon": -74.0115829 }, + { "lat": 40.7858059, "lon": -74.0116664 }, + { "lat": 40.7859880, "lon": -74.0120760 }, + { "lat": 40.7864408, "lon": -74.0130409 }, + { "lat": 40.7864780, "lon": -74.0131201 } + ], + "tags": { + "highway": "residential", + "name": "59th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "59th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280408096, + "bounds": { + "minlat": 40.7864780, + "minlon": -74.0168452, + "maxlat": 40.7882066, + "maxlon": -74.0131201 + }, + "nodes": [ + 103855599, + 7675116969, + 7675116967, + 103884680, + 7675116957, + 7675116955, + 103866628 + ], + "geometry": [ + { "lat": 40.7864780, "lon": -74.0131201 }, + { "lat": 40.7865181, "lon": -74.0132076 }, + { "lat": 40.7871477, "lon": -74.0145818 }, + { "lat": 40.7871884, "lon": -74.0146706 }, + { "lat": 40.7872292, "lon": -74.0147595 }, + { "lat": 40.7881523, "lon": -74.0167355 }, + { "lat": 40.7882066, "lon": -74.0168452 } + ], + "tags": { + "highway": "residential", + "name": "59th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "59th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280408433, + "bounds": { + "minlat": 40.7874435, + "minlon": -74.0133715, + "maxlat": 40.7888155, + "maxlon": -74.0122765 + }, + "nodes": [ + 103874051, + 7678103776, + 7678103769, + 103864119 + ], + "geometry": [ + { "lat": 40.7888155, "lon": -74.0122765 }, + { "lat": 40.7887547, "lon": -74.0123250 }, + { "lat": 40.7875306, "lon": -74.0133020 }, + { "lat": 40.7874435, "lon": -74.0133715 } + ], + "tags": { + "highway": "residential", + "name": "Monroe Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Monroe", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280408434, + "bounds": { + "minlat": 40.7888155, + "minlon": -74.0122765, + "maxlat": 40.7897815, + "maxlon": -74.0115045 + }, + "nodes": [ + 103864946, + 7678131035, + 7678131029, + 103874051 + ], + "geometry": [ + { "lat": 40.7897815, "lon": -74.0115045 }, + { "lat": 40.7897394, "lon": -74.0115381 }, + { "lat": 40.7888836, "lon": -74.0122221 }, + { "lat": 40.7888155, "lon": -74.0122765 } + ], + "tags": { + "highway": "residential", + "name": "Monroe Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Monroe", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280408490, + "bounds": { + "minlat": 40.7906102, + "minlon": -74.0113360, + "maxlat": 40.7913331, + "maxlon": -74.0097971 + }, + "nodes": [ + 103855611, + 7678131106, + 7678131108, + 103885498 + ], + "geometry": [ + { "lat": 40.7906102, "lon": -74.0097971 }, + { "lat": 40.7906559, "lon": -74.0098944 }, + { "lat": 40.7913001, "lon": -74.0112657 }, + { "lat": 40.7913331, "lon": -74.0113360 } + ], + "tags": { + "highway": "residential", + "name": "64th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "64th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280408491, + "bounds": { + "minlat": 40.7924108, + "minlon": -74.0144276, + "maxlat": 40.7927580, + "maxlon": -74.0136751 + }, + "nodes": [ + 103869025, + 7668140063, + 7668140061, + 103866635 + ], + "geometry": [ + { "lat": 40.7927580, "lon": -74.0144276 }, + { "lat": 40.7927352, "lon": -74.0143784 }, + { "lat": 40.7924642, "lon": -74.0137933 }, + { "lat": 40.7924108, "lon": -74.0136751 } + ], + "tags": { + "highway": "residential", + "name": "64th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "64th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280408492, + "bounds": { + "minlat": 40.7913331, + "minlon": -74.0136751, + "maxlat": 40.7924108, + "maxlon": -74.0113360 + }, + "nodes": [ + 103885498, + 7678131131, + 103887032, + 7678131119, + 103866635 + ], + "geometry": [ + { "lat": 40.7913331, "lon": -74.0113360 }, + { "lat": 40.7913752, "lon": -74.0114256 }, + { "lat": 40.7918440, "lon": -74.0124240 }, + { "lat": 40.7923631, "lon": -74.0135698 }, + { "lat": 40.7924108, "lon": -74.0136751 } + ], + "tags": { + "highway": "residential", + "name": "64th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "64th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280408720, + "bounds": { + "minlat": 40.7918503, + "minlon": -74.0072944, + "maxlat": 40.7920640, + "maxlon": -74.0066760 + }, + "nodes": [ + 103862614, + 7658692332, + 103878361 + ], + "geometry": [ + { "lat": 40.7920640, "lon": -74.0066760 }, + { "lat": 40.7918837, "lon": -74.0071978 }, + { "lat": 40.7918503, "lon": -74.0072944 } + ], + "tags": { + "highway": "residential", + "name": "Dewey Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Dewey", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280408721, + "bounds": { + "minlat": 40.7927580, + "minlon": -74.0152730, + "maxlat": 40.7931353, + "maxlon": -74.0144276 + }, + "nodes": [ + 103885230, + 7668140034, + 7668140036, + 103869025 + ], + "geometry": [ + { "lat": 40.7931353, "lon": -74.0152730 }, + { "lat": 40.7931173, "lon": -74.0152336 }, + { "lat": 40.7927872, "lon": -74.0145083 }, + { "lat": 40.7927580, "lon": -74.0144276 } + ], + "tags": { + "highway": "residential", + "name": "64th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "64th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 280408722, + "bounds": { + "minlat": 40.7901102, + "minlon": -74.0082898, + "maxlat": 40.7915414, + "maxlon": -74.0052605 + }, + "nodes": [ + 103884180, + 7658692304, + 7658692303, + 103862611, + 7678242733, + 7678242731, + 103881737 + ], + "geometry": [ + { "lat": 40.7901102, "lon": -74.0052605 }, + { "lat": 40.7901554, "lon": -74.0053568 }, + { "lat": 40.7910399, "lon": -74.0072409 }, + { "lat": 40.7910770, "lon": -74.0073200 }, + { "lat": 40.7911330, "lon": -74.0074369 }, + { "lat": 40.7914788, "lon": -74.0081592 }, + { "lat": 40.7915414, "lon": -74.0082898 } + ], + "tags": { + "highway": "residential", + "name": "66th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "66th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 281455419, + "bounds": { + "minlat": 40.7157444, + "minlon": -73.9866936, + "maxlat": 40.7159749, + "maxlon": -73.9859641 + }, + "nodes": [ + 11038072391, + 8960350841, + 42440408 + ], + "geometry": [ + { "lat": 40.7157444, "lon": -73.9859641 }, + { "lat": 40.7159556, "lon": -73.9866325 }, + { "lat": 40.7159749, "lon": -73.9866936 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 282991408, + "bounds": { + "minlat": 40.8404869, + "minlon": -73.9441872, + "maxlat": 40.8406834, + "maxlon": -73.9440176 + }, + "nodes": [ + 2869154556, + 6879407095, + 8725182287, + 2869154557 + ], + "geometry": [ + { "lat": 40.8404869, "lon": -73.9441872 }, + { "lat": 40.8405803, "lon": -73.9441101 }, + { "lat": 40.8406030, "lon": -73.9440781 }, + { "lat": 40.8406834, "lon": -73.9440176 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 282991418, + "bounds": { + "minlat": 40.8413711, + "minlon": -73.9411682, + "maxlat": 40.8416429, + "maxlon": -73.9407870 + }, + "nodes": [ + 2869154600, + 8767474532, + 2869155501, + 2869155502, + 2869155503, + 2869155504, + 2869155505, + 2869155506, + 2869155507, + 2869155508, + 2869155509, + 2869155510, + 2869155511, + 8767474533, + 2869155512 + ], + "geometry": [ + { "lat": 40.8415201, "lon": -73.9407870 }, + { "lat": 40.8414457, "lon": -73.9408381 }, + { "lat": 40.8414005, "lon": -73.9408691 }, + { "lat": 40.8413813, "lon": -73.9408932 }, + { "lat": 40.8413726, "lon": -73.9409154 }, + { "lat": 40.8413711, "lon": -73.9409429 }, + { "lat": 40.8413828, "lon": -73.9409858 }, + { "lat": 40.8414163, "lon": -73.9410756 }, + { "lat": 40.8414487, "lon": -73.9411427 }, + { "lat": 40.8414660, "lon": -73.9411615 }, + { "lat": 40.8414858, "lon": -73.9411682 }, + { "lat": 40.8415035, "lon": -73.9411668 }, + { "lat": 40.8415258, "lon": -73.9411568 }, + { "lat": 40.8415699, "lon": -73.9411264 }, + { "lat": 40.8416429, "lon": -73.9410760 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 283654874, + "bounds": { + "minlat": 40.7356116, + "minlon": -73.9188162, + "maxlat": 40.7373184, + "maxlon": -73.9184844 + }, + "nodes": [ + 2874954763, + 10743722374, + 2874954752 + ], + "geometry": [ + { "lat": 40.7373184, "lon": -73.9184844 }, + { "lat": 40.7372388, "lon": -73.9184999 }, + { "lat": 40.7356116, "lon": -73.9188162 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 283654875, + "bounds": { + "minlat": 40.7353522, + "minlon": -73.9198132, + "maxlat": 40.7374227, + "maxlon": -73.9193901 + }, + "nodes": [ + 2874954750, + 10743722368, + 6887247709, + 2874954761, + 10743722372, + 2874954764 + ], + "geometry": [ + { "lat": 40.7353522, "lon": -73.9198132 }, + { "lat": 40.7354060, "lon": -73.9198029 }, + { "lat": 40.7354210, "lon": -73.9198000 }, + { "lat": 40.7369057, "lon": -73.9194987 }, + { "lat": 40.7373456, "lon": -73.9194063 }, + { "lat": 40.7374227, "lon": -73.9193901 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 283654876, + "bounds": { + "minlat": 40.7353764, + "minlon": -73.9206921, + "maxlat": 40.7370099, + "maxlon": -73.9203713 + }, + "nodes": [ + 2874954751, + 10743722418, + 2874954762 + ], + "geometry": [ + { "lat": 40.7353764, "lon": -73.9206921 }, + { "lat": 40.7354398, "lon": -73.9206797 }, + { "lat": 40.7370099, "lon": -73.9203713 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 283656547, + "bounds": { + "minlat": 40.7355788, + "minlon": -73.9225569, + "maxlat": 40.7362651, + "maxlon": -73.9224135 + }, + "nodes": [ + 2874974209, + 10743722433, + 2874974212 + ], + "geometry": [ + { "lat": 40.7355788, "lon": -73.9225569 }, + { "lat": 40.7356456, "lon": -73.9225429 }, + { "lat": 40.7362651, "lon": -73.9224135 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 283656548, + "bounds": { + "minlat": 40.7354819, + "minlon": -73.9216517, + "maxlat": 40.7364111, + "maxlon": -73.9214669 + }, + "nodes": [ + 2874974208, + 10743722424, + 2874974211, + 2874974214 + ], + "geometry": [ + { "lat": 40.7354819, "lon": -73.9216517 }, + { "lat": 40.7355410, "lon": -73.9216406 }, + { "lat": 40.7360247, "lon": -73.9215497 }, + { "lat": 40.7364111, "lon": -73.9214669 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 283656549, + "bounds": { + "minlat": 40.7363506, + "minlon": -73.9261140, + "maxlat": 40.7373639, + "maxlon": -73.9259135 + }, + "nodes": [ + 2874974213, + 10743722336, + 2874974218 + ], + "geometry": [ + { "lat": 40.7363506, "lon": -73.9261140 }, + { "lat": 40.7364320, "lon": -73.9260979 }, + { "lat": 40.7373639, "lon": -73.9259135 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 283667601, + "bounds": { + "minlat": 40.7408288, + "minlon": -73.9158599, + "maxlat": 40.7422146, + "maxlon": -73.9155702 + }, + "nodes": [ + 42860630, + 10743722544, + 2875093094, + 2875093095, + 2875093096 + ], + "geometry": [ + { "lat": 40.7408288, "lon": -73.9158599 }, + { "lat": 40.7408784, "lon": -73.9158476 }, + { "lat": 40.7411359, "lon": -73.9157838 }, + { "lat": 40.7419811, "lon": -73.9156153 }, + { "lat": 40.7422146, "lon": -73.9155702 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 283674207, + "bounds": { + "minlat": 40.7537204, + "minlon": -73.9067708, + "maxlat": 40.7551610, + "maxlon": -73.9063520 + }, + "nodes": [ + 2875114678, + 9677940592, + 2875114681, + 2875114682, + 2875114683, + 7758314400, + 2875114691 + ], + "geometry": [ + { "lat": 40.7537204, "lon": -73.9067708 }, + { "lat": 40.7537468, "lon": -73.9066859 }, + { "lat": 40.7537830, "lon": -73.9063520 }, + { "lat": 40.7540914, "lon": -73.9064113 }, + { "lat": 40.7544650, "lon": -73.9064779 }, + { "lat": 40.7551194, "lon": -73.9066040 }, + { "lat": 40.7551610, "lon": -73.9066112 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 283674208, + "bounds": { + "minlat": 40.7536978, + "minlon": -73.9072123, + "maxlat": 40.7537204, + "maxlon": -73.9067708 + }, + "nodes": [ + 2875114678, + 8593804578, + 11050336671, + 11050336670, + 11050336672, + 2875114680 + ], + "geometry": [ + { "lat": 40.7537204, "lon": -73.9067708 }, + { "lat": 40.7537132, "lon": -73.9068464 }, + { "lat": 40.7536978, "lon": -73.9071663 }, + { "lat": 40.7536982, "lon": -73.9071840 }, + { "lat": 40.7537035, "lon": -73.9072040 }, + { "lat": 40.7537154, "lon": -73.9072123 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 284615226, + "bounds": { + "minlat": 40.7513736, + "minlon": -73.9131790, + "maxlat": 40.7516261, + "maxlon": -73.9111819 + }, + "nodes": [ + 2883385951, + 6855470183, + 2883385961 + ], + "geometry": [ + { "lat": 40.7513736, "lon": -73.9131790 }, + { "lat": 40.7514001, "lon": -73.9130070 }, + { "lat": 40.7516261, "lon": -73.9111819 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 284615227, + "bounds": { + "minlat": 40.7518164, + "minlon": -73.9137132, + "maxlat": 40.7532216, + "maxlon": -73.9133954 + }, + "nodes": [ + 2883385967, + 3777225754, + 3777225961, + 3777225963, + 3777225966, + 3777225749, + 3777225753, + 6855479987, + 6855479989, + 2883385987 + ], + "geometry": [ + { "lat": 40.7518164, "lon": -73.9137132 }, + { "lat": 40.7519699, "lon": -73.9136610 }, + { "lat": 40.7521322, "lon": -73.9136266 }, + { "lat": 40.7522896, "lon": -73.9135932 }, + { "lat": 40.7524557, "lon": -73.9135579 }, + { "lat": 40.7526221, "lon": -73.9135226 }, + { "lat": 40.7527944, "lon": -73.9134861 }, + { "lat": 40.7529535, "lon": -73.9134523 }, + { "lat": 40.7530907, "lon": -73.9134232 }, + { "lat": 40.7532216, "lon": -73.9133954 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 284615228, + "bounds": { + "minlat": 40.7515906, + "minlon": -73.9141917, + "maxlat": 40.7522327, + "maxlon": -73.9137173 + }, + "nodes": [ + 9851251040, + 2883385973, + 9851251041, + 2883385971, + 2883385970, + 2883385968, + 9851251042, + 9851251043, + 9851251044 + ], + "geometry": [ + { "lat": 40.7522327, "lon": -73.9137545 }, + { "lat": 40.7522059, "lon": -73.9137274 }, + { "lat": 40.7521763, "lon": -73.9137176 }, + { "lat": 40.7521452, "lon": -73.9137173 }, + { "lat": 40.7520119, "lon": -73.9137473 }, + { "lat": 40.7519550, "lon": -73.9137748 }, + { "lat": 40.7519020, "lon": -73.9138149 }, + { "lat": 40.7518289, "lon": -73.9138880 }, + { "lat": 40.7515906, "lon": -73.9141917 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "level": "1" + } +}, +{ + "type": "way", + "id": 284615231, + "bounds": { + "minlat": 40.7514001, + "minlon": -73.9130070, + "maxlat": 40.7528159, + "maxlon": -73.9126144 + }, + "nodes": [ + 2883385981, + 3777225964, + 3777225967, + 3777225973, + 2883385972, + 3777225962, + 3777225968, + 13234010393, + 6855470183 + ], + "geometry": [ + { "lat": 40.7528159, "lon": -73.9126144 }, + { "lat": 40.7526608, "lon": -73.9126579 }, + { "lat": 40.7524916, "lon": -73.9127047 }, + { "lat": 40.7523268, "lon": -73.9127502 }, + { "lat": 40.7521636, "lon": -73.9127953 }, + { "lat": 40.7520074, "lon": -73.9128385 }, + { "lat": 40.7518445, "lon": -73.9128835 }, + { "lat": 40.7516974, "lon": -73.9129313 }, + { "lat": 40.7514001, "lon": -73.9130070 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 284627890, + "bounds": { + "minlat": 40.7628472, + "minlon": -73.9310998, + "maxlat": 40.7635861, + "maxlon": -73.9296382 + }, + "nodes": [ + 2883487949, + 6452907639, + 6799076719, + 2883487948 + ], + "geometry": [ + { "lat": 40.7635861, "lon": -73.9310998 }, + { "lat": 40.7635548, "lon": -73.9310379 }, + { "lat": 40.7631651, "lon": -73.9302669 }, + { "lat": 40.7628472, "lon": -73.9296382 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 284632605, + "bounds": { + "minlat": 40.7695930, + "minlon": -73.9275487, + "maxlat": 40.7702163, + "maxlon": -73.9262129 + }, + "nodes": [ + 2883544415, + 5375687393, + 6452971005, + 2883544412 + ], + "geometry": [ + { "lat": 40.7702163, "lon": -73.9275487 }, + { "lat": 40.7701669, "lon": -73.9274428 }, + { "lat": 40.7696290, "lon": -73.9262900 }, + { "lat": 40.7695930, "lon": -73.9262129 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 284632606, + "bounds": { + "minlat": 40.7727986, + "minlon": -73.9234374, + "maxlat": 40.7730862, + "maxlon": -73.9227689 + }, + "nodes": [ + 2883544423, + 6452901813, + 2883544422 + ], + "geometry": [ + { "lat": 40.7730862, "lon": -73.9234374 }, + { "lat": 40.7730595, "lon": -73.9233752 }, + { "lat": 40.7727986, "lon": -73.9227689 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 284632607, + "bounds": { + "minlat": 40.7697690, + "minlon": -73.9270623, + "maxlat": 40.7708266, + "maxlon": -73.9247686 + }, + "nodes": [ + 2883544421, + 5375687397, + 6452985325, + 2883544414, + 6452985323, + 2883544413 + ], + "geometry": [ + { "lat": 40.7708266, "lon": -73.9270623 }, + { "lat": 40.7707759, "lon": -73.9269523 }, + { "lat": 40.7702432, "lon": -73.9257970 }, + { "lat": 40.7702053, "lon": -73.9257147 }, + { "lat": 40.7701759, "lon": -73.9256511 }, + { "lat": 40.7697690, "lon": -73.9247686 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 284639328, + "bounds": { + "minlat": 40.7707408, + "minlon": -73.9146256, + "maxlat": 40.7712645, + "maxlon": -73.9138585 + }, + "nodes": [ + 2883612554, + 7841135129, + 2883612559, + 7841135119, + 3778729689 + ], + "geometry": [ + { "lat": 40.7707408, "lon": -73.9138585 }, + { "lat": 40.7707708, "lon": -73.9139024 }, + { "lat": 40.7710374, "lon": -73.9142930 }, + { "lat": 40.7712237, "lon": -73.9145658 }, + { "lat": 40.7712645, "lon": -73.9146256 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 284911282, + "bounds": { + "minlat": 40.7727673, + "minlon": -73.9290225, + "maxlat": 40.7732472, + "maxlon": -73.9288845 + }, + "nodes": [ + 2886109121, + 7745153197, + 2886109122, + 2886109140, + 2886109123, + 2886109124, + 2886109125 + ], + "geometry": [ + { "lat": 40.7732464, "lon": -73.9290225 }, + { "lat": 40.7732468, "lon": -73.9289723 }, + { "lat": 40.7732472, "lon": -73.9289144 }, + { "lat": 40.7731505, "lon": -73.9289143 }, + { "lat": 40.7731249, "lon": -73.9289130 }, + { "lat": 40.7730763, "lon": -73.9288880 }, + { "lat": 40.7727673, "lon": -73.9288845 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 284911285, + "bounds": { + "minlat": 40.7727633, + "minlon": -73.9282187, + "maxlat": 40.7731163, + "maxlon": -73.9282174 + }, + "nodes": [ + 2886109129, + 7745153238, + 7745153198 + ], + "geometry": [ + { "lat": 40.7727633, "lon": -73.9282174 }, + { "lat": 40.7730607, "lon": -73.9282185 }, + { "lat": 40.7731163, "lon": -73.9282187 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 284912844, + "bounds": { + "minlat": 40.7716583, + "minlon": -73.9274026, + "maxlat": 40.7717576, + "maxlon": -73.9270635 + }, + "nodes": [ + 13637441792, + 13637441793, + 13637423418, + 13637423417, + 2886112270, + 13637423416 + ], + "geometry": [ + { "lat": 40.7716939, "lon": -73.9274026 }, + { "lat": 40.7717323, "lon": -73.9273663 }, + { "lat": 40.7717491, "lon": -73.9273399 }, + { "lat": 40.7717572, "lon": -73.9273117 }, + { "lat": 40.7717576, "lon": -73.9272744 }, + { "lat": 40.7716583, "lon": -73.9270635 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 285331365, + "bounds": { + "minlat": 40.8478692, + "minlon": -73.9307264, + "maxlat": 40.8480083, + "maxlon": -73.9304216 + }, + "nodes": [ + 2889974138, + 2889974137 + ], + "geometry": [ + { "lat": 40.8480083, "lon": -73.9307264 }, + { "lat": 40.8478692, "lon": -73.9304216 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Washington", + "tiger:name_base_1": "181st", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Brg", + "tiger:name_type_1": "St" + } +}, +{ + "type": "way", + "id": 285331366, + "bounds": { + "minlat": 40.8480083, + "minlon": -73.9308802, + "maxlat": 40.8481359, + "maxlon": -73.9307264 + }, + "nodes": [ + 42442734, + 12076351754, + 12076351753, + 12076351752, + 12076351751, + 12076351750, + 2889974138 + ], + "geometry": [ + { "lat": 40.8481359, "lon": -73.9308802 }, + { "lat": 40.8481070, "lon": -73.9308576 }, + { "lat": 40.8480853, "lon": -73.9308370 }, + { "lat": 40.8480610, "lon": -73.9308114 }, + { "lat": 40.8480393, "lon": -73.9307814 }, + { "lat": 40.8480243, "lon": -73.9307562 }, + { "lat": 40.8480083, "lon": -73.9307264 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Washington", + "tiger:name_base_1": "181st", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Brg", + "tiger:name_type_1": "St" + } +}, +{ + "type": "way", + "id": 285331368, + "bounds": { + "minlat": 40.8474741, + "minlon": -73.9304216, + "maxlat": 40.8478692, + "maxlon": -73.9295566 + }, + "nodes": [ + 2889974137, + 9908501346, + 765357028 + ], + "geometry": [ + { "lat": 40.8478692, "lon": -73.9304216 }, + { "lat": 40.8475127, "lon": -73.9296410 }, + { "lat": 40.8474741, "lon": -73.9295566 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Washington", + "tiger:name_base_1": "181st", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Brg", + "tiger:name_type_1": "St" + } +}, +{ + "type": "way", + "id": 285331372, + "bounds": { + "minlat": 40.8451001, + "minlon": -73.9289678, + "maxlat": 40.8472082, + "maxlon": -73.9243412 + }, + "nodes": [ + 12218176208, + 12045204114, + 12045204118, + 12045204115, + 12045204111, + 12045204112, + 2329087589 + ], + "geometry": [ + { "lat": 40.8472082, "lon": -73.9289678 }, + { "lat": 40.8452292, "lon": -73.9245854 }, + { "lat": 40.8452053, "lon": -73.9245354 }, + { "lat": 40.8451827, "lon": -73.9244885 }, + { "lat": 40.8451544, "lon": -73.9244336 }, + { "lat": 40.8451270, "lon": -73.9243853 }, + { "lat": 40.8451001, "lon": -73.9243412 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "layer": "3", + "maxspeed": "25 mph", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Washington", + "tiger:name_base_1": "181st", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Brg", + "tiger:name_type_1": "St", + "wikidata": "Q2550421", + "wikipedia": "en:Washington Bridge" + } +}, +{ + "type": "way", + "id": 285497387, + "bounds": { + "minlat": 40.7725268, + "minlon": -73.9300636, + "maxlat": 40.7731506, + "maxlon": -73.9295189 + }, + "nodes": [ + 2891717702, + 2891717703, + 6452930140, + 2891717712 + ], + "geometry": [ + { "lat": 40.7731506, "lon": -73.9295189 }, + { "lat": 40.7725268, "lon": -73.9295914 }, + { "lat": 40.7725577, "lon": -73.9299966 }, + { "lat": 40.7725627, "lon": -73.9300636 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 285497399, + "bounds": { + "minlat": 40.7730591, + "minlon": -73.9294171, + "maxlat": 40.7732493, + "maxlon": -73.9294097 + }, + "nodes": [ + 2891717708, + 2891717709 + ], + "geometry": [ + { "lat": 40.7732493, "lon": -73.9294171 }, + { "lat": 40.7730591, "lon": -73.9294097 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 285497414, + "bounds": { + "minlat": 40.7724282, + "minlon": -73.9357607, + "maxlat": 40.7726031, + "maxlon": -73.9351925 + }, + "nodes": [ + 2459371109, + 2457195042 + ], + "geometry": [ + { "lat": 40.7726031, "lon": -73.9357607 }, + { "lat": 40.7724282, "lon": -73.9351925 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 285497427, + "bounds": { + "minlat": 40.7728133, + "minlon": -73.9371064, + "maxlat": 40.7738961, + "maxlon": -73.9364313 + }, + "nodes": [ + 2891717724, + 2459371106, + 2461962686, + 2457195008, + 2457195009, + 2457195010, + 2461962687, + 2457195011, + 2457195012, + 2891717813, + 2457195013, + 2457195014, + 2457195015 + ], + "geometry": [ + { "lat": 40.7728133, "lon": -73.9364313 }, + { "lat": 40.7728760, "lon": -73.9365570 }, + { "lat": 40.7729369, "lon": -73.9366465 }, + { "lat": 40.7729885, "lon": -73.9367222 }, + { "lat": 40.7730927, "lon": -73.9368510 }, + { "lat": 40.7732154, "lon": -73.9369509 }, + { "lat": 40.7732968, "lon": -73.9370050 }, + { "lat": 40.7733546, "lon": -73.9370317 }, + { "lat": 40.7734807, "lon": -73.9370757 }, + { "lat": 40.7735298, "lon": -73.9370825 }, + { "lat": 40.7736111, "lon": -73.9371014 }, + { "lat": 40.7737067, "lon": -73.9371064 }, + { "lat": 40.7738961, "lon": -73.9370797 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 285497445, + "bounds": { + "minlat": 40.7737668, + "minlon": -73.9368862, + "maxlat": 40.7739064, + "maxlon": -73.9366105 + }, + "nodes": [ + 2461962691, + 7756437618, + 2891717754, + 2891717755 + ], + "geometry": [ + { "lat": 40.7739064, "lon": -73.9366105 }, + { "lat": 40.7738484, "lon": -73.9366379 }, + { "lat": 40.7737668, "lon": -73.9366764 }, + { "lat": 40.7738247, "lon": -73.9368862 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 285497448, + "bounds": { + "minlat": 40.7736119, + "minlon": -73.9366764, + "maxlat": 40.7737668, + "maxlon": -73.9366759 + }, + "nodes": [ + 2891717754, + 2891717760 + ], + "geometry": [ + { "lat": 40.7737668, "lon": -73.9366764 }, + { "lat": 40.7736119, "lon": -73.9366759 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 285497456, + "bounds": { + "minlat": 40.7734989, + "minlon": -73.9363617, + "maxlat": 40.7736096, + "maxlon": -73.9360143 + }, + "nodes": [ + 42941801, + 7756437612, + 2891717773, + 2891717774 + ], + "geometry": [ + { "lat": 40.7736096, "lon": -73.9360143 }, + { "lat": 40.7735442, "lon": -73.9361875 }, + { "lat": 40.7734989, "lon": -73.9363073 }, + { "lat": 40.7735870, "lon": -73.9363617 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 285497484, + "bounds": { + "minlat": 40.7727439, + "minlon": -73.9347254, + "maxlat": 40.7730598, + "maxlon": -73.9340385 + }, + "nodes": [ + 2891717842, + 12254790233, + 7756437645, + 2891717843, + 2891717844, + 2891717845 + ], + "geometry": [ + { "lat": 40.7730598, "lon": -73.9340385 }, + { "lat": 40.7730239, "lon": -73.9341526 }, + { "lat": 40.7729896, "lon": -73.9342615 }, + { "lat": 40.7729447, "lon": -73.9343874 }, + { "lat": 40.7727439, "lon": -73.9344892 }, + { "lat": 40.7728096, "lon": -73.9347254 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 285497513, + "bounds": { + "minlat": 40.7751334, + "minlon": -73.9352338, + "maxlat": 40.7752809, + "maxlon": -73.9351614 + }, + "nodes": [ + 2891718064, + 7756437628, + 5515583766 + ], + "geometry": [ + { "lat": 40.7752809, "lon": -73.9351614 }, + { "lat": 40.7752094, "lon": -73.9351965 }, + { "lat": 40.7751334, "lon": -73.9352338 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 285497544, + "bounds": { + "minlat": 40.7754045, + "minlon": -73.9351329, + "maxlat": 40.7756129, + "maxlon": -73.9344857 + }, + "nodes": [ + 2891718113, + 7756442993, + 2891718112, + 2891718110 + ], + "geometry": [ + { "lat": 40.7756129, "lon": -73.9351329 }, + { "lat": 40.7755866, "lon": -73.9350515 }, + { "lat": 40.7754858, "lon": -73.9347391 }, + { "lat": 40.7754045, "lon": -73.9344857 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 285497545, + "bounds": { + "minlat": 40.7754858, + "minlon": -73.9347391, + "maxlat": 40.7756450, + "maxlon": -73.9346476 + }, + "nodes": [ + 2891718111, + 2891718112 + ], + "geometry": [ + { "lat": 40.7756450, "lon": -73.9346476 }, + { "lat": 40.7754858, "lon": -73.9347391 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 285497564, + "bounds": { + "minlat": 40.7722469, + "minlon": -73.9335334, + "maxlat": 40.7724465, + "maxlon": -73.9329401 + }, + "nodes": [ + 7745153204, + 7745153219, + 5813108993, + 7745153200 + ], + "geometry": [ + { "lat": 40.7724465, "lon": -73.9335334 }, + { "lat": 40.7724066, "lon": -73.9334692 }, + { "lat": 40.7722824, "lon": -73.9330576 }, + { "lat": 40.7722469, "lon": -73.9329401 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 285900684, + "bounds": { + "minlat": 40.8617152, + "minlon": -73.9332114, + "maxlat": 40.8619554, + "maxlon": -73.9328550 + }, + "nodes": [ + 2895436473, + 2895436471, + 2895436472, + 2895436474, + 2895436475, + 2895436477, + 2895436478, + 2895436480, + 2895436484, + 2895436486, + 561035397, + 2895436493, + 2895436487, + 2895436488, + 2895436490, + 2895436491, + 2895436492, + 2895436494, + 2895436495, + 2895436499, + 2895439001, + 2895436500, + 2895436498, + 2895436473 + ], + "geometry": [ + { "lat": 40.8617513, "lon": -73.9328897 }, + { "lat": 40.8617152, "lon": -73.9329484 }, + { "lat": 40.8617229, "lon": -73.9330034 }, + { "lat": 40.8617701, "lon": -73.9330463 }, + { "lat": 40.8617931, "lon": -73.9330407 }, + { "lat": 40.8618003, "lon": -73.9330591 }, + { "lat": 40.8618058, "lon": -73.9330667 }, + { "lat": 40.8618128, "lon": -73.9330714 }, + { "lat": 40.8618265, "lon": -73.9330736 }, + { "lat": 40.8618458, "lon": -73.9332114 }, + { "lat": 40.8618599, "lon": -73.9332080 }, + { "lat": 40.8618722, "lon": -73.9332050 }, + { "lat": 40.8618524, "lon": -73.9330634 }, + { "lat": 40.8618562, "lon": -73.9330615 }, + { "lat": 40.8618629, "lon": -73.9330558 }, + { "lat": 40.8618682, "lon": -73.9330478 }, + { "lat": 40.8618701, "lon": -73.9330432 }, + { "lat": 40.8618725, "lon": -73.9330331 }, + { "lat": 40.8618726, "lon": -73.9330225 }, + { "lat": 40.8619351, "lon": -73.9330073 }, + { "lat": 40.8619554, "lon": -73.9329564 }, + { "lat": 40.8619457, "lon": -73.9328865 }, + { "lat": 40.8618939, "lon": -73.9328550 }, + { "lat": 40.8617513, "lon": -73.9328897 } + ], + "tags": { + "addr:housenumber": "4565", + "addr:postcode": "10040", + "addr:street": "Broadway", + "building": "yes", + "height": "4.8", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "nycdoitt:bin": "1087578", + "surface": "asphalt", + "tourism": "viewpoint" + } +}, +{ + "type": "way", + "id": 286271796, + "bounds": { + "minlat": 40.8638397, + "minlon": -73.9090425, + "maxlat": 40.8640526, + "maxlon": -73.9082992 + }, + "nodes": [ + 2899216760, + 9227772208, + 2899216728, + 2899216729, + 7290606906, + 2899216730, + 2899216731, + 2979499121, + 2899216732 + ], + "geometry": [ + { "lat": 40.8638397, "lon": -73.9090425 }, + { "lat": 40.8639041, "lon": -73.9089042 }, + { "lat": 40.8639168, "lon": -73.9088711 }, + { "lat": 40.8639902, "lon": -73.9086876 }, + { "lat": 40.8640132, "lon": -73.9086162 }, + { "lat": 40.8640249, "lon": -73.9085800 }, + { "lat": 40.8640409, "lon": -73.9084776 }, + { "lat": 40.8640430, "lon": -73.9084451 }, + { "lat": 40.8640526, "lon": -73.9082992 } + ], + "tags": { + "access": "destination", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 286271797, + "bounds": { + "minlat": 40.8639687, + "minlon": -73.9082992, + "maxlat": 40.8641458, + "maxlon": -73.9080650 + }, + "nodes": [ + 2899216745, + 2899216746, + 2899216747, + 2899216748, + 2899216749, + 2899216750, + 2899216733, + 2899216734, + 2899216735, + 2899216736, + 2899216742, + 2899216743, + 2899216732, + 2899216744, + 2899216737, + 2899216738, + 2899216739, + 2899216740, + 2899216741, + 2899216745 + ], + "geometry": [ + { "lat": 40.8639939, "lon": -73.9080985 }, + { "lat": 40.8640174, "lon": -73.9080762 }, + { "lat": 40.8640451, "lon": -73.9080650 }, + { "lat": 40.8640740, "lon": -73.9080661 }, + { "lat": 40.8641011, "lon": -73.9080794 }, + { "lat": 40.8641236, "lon": -73.9081035 }, + { "lat": 40.8641390, "lon": -73.9081359 }, + { "lat": 40.8641458, "lon": -73.9081743 }, + { "lat": 40.8641427, "lon": -73.9082135 }, + { "lat": 40.8641299, "lon": -73.9082491 }, + { "lat": 40.8641090, "lon": -73.9082772 }, + { "lat": 40.8640822, "lon": -73.9082945 }, + { "lat": 40.8640526, "lon": -73.9082992 }, + { "lat": 40.8640235, "lon": -73.9082907 }, + { "lat": 40.8639981, "lon": -73.9082700 }, + { "lat": 40.8639798, "lon": -73.9082404 }, + { "lat": 40.8639696, "lon": -73.9082045 }, + { "lat": 40.8639687, "lon": -73.9081663 }, + { "lat": 40.8639771, "lon": -73.9081297 }, + { "lat": 40.8639939, "lon": -73.9080985 } + ], + "tags": { + "access": "destination", + "highway": "service", + "junction": "roundabout" + } +}, +{ + "type": "way", + "id": 286271798, + "bounds": { + "minlat": 40.8635045, + "minlon": -73.9081177, + "maxlat": 40.8639939, + "maxlon": -73.9080382 + }, + "nodes": [ + 2899216745, + 2899216751, + 2899216752, + 2899216753, + 2899216754, + 2979499742, + 2899216755, + 7290606907, + 2899216756, + 2899216757, + 9227772198, + 2899216758, + 2899216759 + ], + "geometry": [ + { "lat": 40.8639939, "lon": -73.9080985 }, + { "lat": 40.8639288, "lon": -73.9080805 }, + { "lat": 40.8638661, "lon": -73.9080558 }, + { "lat": 40.8638194, "lon": -73.9080470 }, + { "lat": 40.8637740, "lon": -73.9080382 }, + { "lat": 40.8637597, "lon": -73.9080382 }, + { "lat": 40.8637260, "lon": -73.9080382 }, + { "lat": 40.8636920, "lon": -73.9080408 }, + { "lat": 40.8636579, "lon": -73.9080435 }, + { "lat": 40.8636138, "lon": -73.9080647 }, + { "lat": 40.8635765, "lon": -73.9080788 }, + { "lat": 40.8635671, "lon": -73.9080823 }, + { "lat": 40.8635045, "lon": -73.9081177 } + ], + "tags": { + "access": "destination", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 286271799, + "bounds": { + "minlat": 40.8640740, + "minlon": -73.9081743, + "maxlat": 40.8650919, + "maxlon": -73.9073308 + }, + "nodes": [ + 2899216734, + 2899216788, + 2899216787, + 2899216786, + 2899216785, + 2899216784, + 2899216783, + 2899216782, + 2899216774, + 2899216773, + 2899216772, + 2899216771, + 2899216770, + 2899216769, + 2899216768, + 2899216767, + 2899216766, + 2899216765, + 2899216764, + 2899216781, + 2899216780, + 2899216779, + 2899216778, + 2899216777, + 2899216776, + 2899216775, + 2899216792, + 2899216791, + 2899216790, + 2899216789, + 2899216763, + 2899216762, + 2899216761, + 2899216748 + ], + "geometry": [ + { "lat": 40.8641458, "lon": -73.9081743 }, + { "lat": 40.8642258, "lon": -73.9081740 }, + { "lat": 40.8642960, "lon": -73.9081513 }, + { "lat": 40.8643692, "lon": -73.9081183 }, + { "lat": 40.8644441, "lon": -73.9080853 }, + { "lat": 40.8645220, "lon": -73.9080359 }, + { "lat": 40.8645937, "lon": -73.9079947 }, + { "lat": 40.8646529, "lon": -73.9079844 }, + { "lat": 40.8646887, "lon": -73.9079912 }, + { "lat": 40.8647529, "lon": -73.9080269 }, + { "lat": 40.8648219, "lon": -73.9080394 }, + { "lat": 40.8648910, "lon": -73.9080281 }, + { "lat": 40.8649556, "lon": -73.9079936 }, + { "lat": 40.8650113, "lon": -73.9079383 }, + { "lat": 40.8650543, "lon": -73.9078659 }, + { "lat": 40.8650818, "lon": -73.9077812 }, + { "lat": 40.8650919, "lon": -73.9076901 }, + { "lat": 40.8650839, "lon": -73.9075986 }, + { "lat": 40.8650583, "lon": -73.9075130 }, + { "lat": 40.8650027, "lon": -73.9074207 }, + { "lat": 40.8649272, "lon": -73.9073576 }, + { "lat": 40.8648402, "lon": -73.9073308 }, + { "lat": 40.8647515, "lon": -73.9073433 }, + { "lat": 40.8646707, "lon": -73.9073936 }, + { "lat": 40.8646069, "lon": -73.9074762 }, + { "lat": 40.8645671, "lon": -73.9075818 }, + { "lat": 40.8645267, "lon": -73.9076525 }, + { "lat": 40.8644643, "lon": -73.9077020 }, + { "lat": 40.8643864, "lon": -73.9077638 }, + { "lat": 40.8643100, "lon": -73.9078277 }, + { "lat": 40.8642651, "lon": -73.9078758 }, + { "lat": 40.8641877, "lon": -73.9079376 }, + { "lat": 40.8641210, "lon": -73.9080029 }, + { "lat": 40.8640740, "lon": -73.9080661 } + ], + "tags": { + "access": "destination", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 286271800, + "bounds": { + "minlat": 40.8635322, + "minlon": -73.9105443, + "maxlat": 40.8639733, + "maxlon": -73.9101588 + }, + "nodes": [ + 2899216793, + 1764748510, + 1764748507 + ], + "geometry": [ + { "lat": 40.8635322, "lon": -73.9105443 }, + { "lat": 40.8635322, "lon": -73.9104927 }, + { "lat": 40.8639733, "lon": -73.9101588 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 286528814, + "bounds": { + "minlat": 40.7418929, + "minlon": -73.9074851, + "maxlat": 40.7419256, + "maxlon": -73.9072043 + }, + "nodes": [ + 4207308760, + 9986759185, + 42908315 + ], + "geometry": [ + { "lat": 40.7418929, "lon": -73.9072043 }, + { "lat": 40.7419123, "lon": -73.9073776 }, + { "lat": 40.7419256, "lon": -73.9074851 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "4", + "maxspeed": "25 mph", + "motor_vehicle": "permissive", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 286528819, + "bounds": { + "minlat": 40.7420399, + "minlon": -73.9110621, + "maxlat": 40.7422133, + "maxlon": -73.9095917 + }, + "nodes": [ + 276299108, + 9986759203, + 4207308761 + ], + "geometry": [ + { "lat": 40.7422133, "lon": -73.9110621 }, + { "lat": 40.7422015, "lon": -73.9109626 }, + { "lat": 40.7420399, "lon": -73.9095917 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 286528820, + "bounds": { + "minlat": 40.7423183, + "minlon": -73.9129918, + "maxlat": 40.7424387, + "maxlon": -73.9129288 + }, + "nodes": [ + 2844418533, + 9986789919, + 276315699 + ], + "geometry": [ + { "lat": 40.7424387, "lon": -73.9129288 }, + { "lat": 40.7423715, "lon": -73.9129619 }, + { "lat": 40.7423183, "lon": -73.9129918 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "52nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 286528821, + "bounds": { + "minlat": 40.7427600, + "minlon": -73.9149659, + "maxlat": 40.7428022, + "maxlon": -73.9146458 + }, + "nodes": [ + 4207308767, + 3785693715, + 9986789924, + 276207581 + ], + "geometry": [ + { "lat": 40.7427600, "lon": -73.9146458 }, + { "lat": 40.7427817, "lon": -73.9148297 }, + { "lat": 40.7427898, "lon": -73.9148837 }, + { "lat": 40.7428022, "lon": -73.9149659 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 286528822, + "bounds": { + "minlat": 40.7424387, + "minlon": -73.9129288, + "maxlat": 40.7425627, + "maxlon": -73.9128690 + }, + "nodes": [ + 2844418535, + 2844418533 + ], + "geometry": [ + { "lat": 40.7425627, "lon": -73.9128690 }, + { "lat": 40.7424387, "lon": -73.9129288 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "52nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 286528823, + "bounds": { + "minlat": 40.7426843, + "minlon": -73.9140317, + "maxlat": 40.7428270, + "maxlon": -73.9128105 + }, + "nodes": [ + 276299053, + 9986759211, + 10927727721, + 276299307 + ], + "geometry": [ + { "lat": 40.7426843, "lon": -73.9128105 }, + { "lat": 40.7426958, "lon": -73.9129128 }, + { "lat": 40.7427186, "lon": -73.9131072 }, + { "lat": 40.7428270, "lon": -73.9140317 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 286528824, + "bounds": { + "minlat": 40.7425627, + "minlon": -73.9128690, + "maxlat": 40.7426843, + "maxlon": -73.9128105 + }, + "nodes": [ + 276299053, + 9192059021, + 2844418535 + ], + "geometry": [ + { "lat": 40.7426843, "lon": -73.9128105 }, + { "lat": 40.7426401, "lon": -73.9128329 }, + { "lat": 40.7425627, "lon": -73.9128690 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "52nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 286528825, + "bounds": { + "minlat": 40.7428299, + "minlon": -73.9158119, + "maxlat": 40.7429776, + "maxlon": -73.9150804 + }, + "nodes": [ + 3718567902, + 9192032667, + 9192032668, + 276315677 + ], + "geometry": [ + { "lat": 40.7428299, "lon": -73.9150804 }, + { "lat": 40.7429262, "lon": -73.9155232 }, + { "lat": 40.7429527, "lon": -73.9156538 }, + { "lat": 40.7429776, "lon": -73.9158119 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 286528826, + "bounds": { + "minlat": 40.7429346, + "minlon": -73.9158742, + "maxlat": 40.7430431, + "maxlon": -73.9149378 + }, + "nodes": [ + 276315676, + 9192032665, + 9192032666, + 4503278357 + ], + "geometry": [ + { "lat": 40.7429346, "lon": -73.9149378 }, + { "lat": 40.7429477, "lon": -73.9150305 }, + { "lat": 40.7430324, "lon": -73.9157828 }, + { "lat": 40.7430431, "lon": -73.9158742 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 286528827, + "bounds": { + "minlat": 40.7423183, + "minlon": -73.9150166, + "maxlat": 40.7425448, + "maxlon": -73.9129918 + }, + "nodes": [ + 276315696, + 9986789922, + 5481955844, + 5481955841, + 10774439642, + 276299246, + 9986759214, + 276315699 + ], + "geometry": [ + { "lat": 40.7425448, "lon": -73.9150166 }, + { "lat": 40.7425385, "lon": -73.9149325 }, + { "lat": 40.7424969, "lon": -73.9145689 }, + { "lat": 40.7424694, "lon": -73.9143285 }, + { "lat": 40.7424237, "lon": -73.9139151 }, + { "lat": 40.7424135, "lon": -73.9138225 }, + { "lat": 40.7423290, "lon": -73.9130969 }, + { "lat": 40.7423183, "lon": -73.9129918 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 286528828, + "bounds": { + "minlat": 40.7424749, + "minlon": -73.9149933, + "maxlat": 40.7426731, + "maxlon": -73.9132255 + }, + "nodes": [ + 276207729, + 9986789923, + 3718567896, + 4207308765 + ], + "geometry": [ + { "lat": 40.7426731, "lon": -73.9149933 }, + { "lat": 40.7426633, "lon": -73.9149073 }, + { "lat": 40.7426547, "lon": -73.9148777 }, + { "lat": 40.7424749, "lon": -73.9132255 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 286637206, + "bounds": { + "minlat": 40.7386048, + "minlon": -73.9074122, + "maxlat": 40.7386090, + "maxlon": -73.9069567 + }, + "nodes": [ + 42880479, + 10203944948, + 8626128215, + 42880484 + ], + "geometry": [ + { "lat": 40.7386090, "lon": -73.9074122 }, + { "lat": 40.7386084, "lon": -73.9073466 }, + { "lat": 40.7386080, "lon": -73.9072968 }, + { "lat": 40.7386048, "lon": -73.9069567 } + ], + "tags": { + "highway": "residential", + "name": "48th Avenue" + } +}, +{ + "type": "way", + "id": 286637207, + "bounds": { + "minlat": 40.7363952, + "minlon": -73.9092686, + "maxlat": 40.7407450, + "maxlon": -73.9077840 + }, + "nodes": [ + 42860670, + 42880475, + 42825371, + 10087484115, + 597294481 + ], + "geometry": [ + { "lat": 40.7407450, "lon": -73.9077840 }, + { "lat": 40.7386310, "lon": -73.9083230 }, + { "lat": 40.7379322, "lon": -73.9085700 }, + { "lat": 40.7365969, "lon": -73.9091865 }, + { "lat": 40.7363952, "lon": -73.9092686 } + ], + "tags": { + "access": "yes", + "bicycle": "yes", + "cycleway": "no", + "foot": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle": "yes", + "name": "58th Street", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "58th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 286996627, + "bounds": { + "minlat": 40.8565295, + "minlon": -73.9155425, + "maxlat": 40.8578560, + "maxlon": -73.9152492 + }, + "nodes": [ + 42731727, + 10135688122, + 2906620161, + 10304074674, + 2906620162, + 2906620163, + 2906620164, + 2906620165, + 2906620166, + 2906620167, + 2906620168, + 2906620169, + 2906620170, + 2906620171, + 2906620172, + 2978124565, + 2906620173 + ], + "geometry": [ + { "lat": 40.8565295, "lon": -73.9154520 }, + { "lat": 40.8565868, "lon": -73.9154300 }, + { "lat": 40.8565966, "lon": -73.9154262 }, + { "lat": 40.8566198, "lon": -73.9154151 }, + { "lat": 40.8566430, "lon": -73.9154040 }, + { "lat": 40.8567560, "lon": -73.9153402 }, + { "lat": 40.8568864, "lon": -73.9152492 }, + { "lat": 40.8569830, "lon": -73.9153619 }, + { "lat": 40.8571093, "lon": -73.9154909 }, + { "lat": 40.8571576, "lon": -73.9155289 }, + { "lat": 40.8572130, "lon": -73.9155425 }, + { "lat": 40.8573096, "lon": -73.9155371 }, + { "lat": 40.8574339, "lon": -73.9155316 }, + { "lat": 40.8575284, "lon": -73.9155384 }, + { "lat": 40.8577081, "lon": -73.9155289 }, + { "lat": 40.8577465, "lon": -73.9155236 }, + { "lat": 40.8578560, "lon": -73.9155085 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996628, + "bounds": { + "minlat": 40.8565714, + "minlon": -73.9152492, + "maxlat": 40.8578447, + "maxlon": -73.9134189 + }, + "nodes": [ + 2906620164, + 2906620174, + 2906620175, + 2906620176, + 2906620177, + 2906620178, + 2906620179, + 2906620180, + 2906620181, + 2906620182, + 2906620183, + 2906620184, + 2906620185, + 8835736183, + 2906620186, + 2906620187, + 2906620188, + 2906620189, + 2906620190, + 2978124563, + 2906620191, + 2906620192, + 2906620244, + 2906620193, + 10135688052, + 2906620194 + ], + "geometry": [ + { "lat": 40.8568864, "lon": -73.9152492 }, + { "lat": 40.8568067, "lon": -73.9151000 }, + { "lat": 40.8566672, "lon": -73.9149390 }, + { "lat": 40.8566238, "lon": -73.9148696 }, + { "lat": 40.8565895, "lon": -73.9148016 }, + { "lat": 40.8565764, "lon": -73.9147469 }, + { "lat": 40.8565714, "lon": -73.9146803 }, + { "lat": 40.8565784, "lon": -73.9146149 }, + { "lat": 40.8565936, "lon": -73.9145509 }, + { "lat": 40.8566218, "lon": -73.9144935 }, + { "lat": 40.8566632, "lon": -73.9144402 }, + { "lat": 40.8567116, "lon": -73.9143909 }, + { "lat": 40.8567560, "lon": -73.9143602 }, + { "lat": 40.8567774, "lon": -73.9143404 }, + { "lat": 40.8567892, "lon": -73.9143295 }, + { "lat": 40.8568256, "lon": -73.9142775 }, + { "lat": 40.8568387, "lon": -73.9142175 }, + { "lat": 40.8568488, "lon": -73.9139867 }, + { "lat": 40.8569597, "lon": -73.9139254 }, + { "lat": 40.8570093, "lon": -73.9139012 }, + { "lat": 40.8571151, "lon": -73.9138494 }, + { "lat": 40.8572805, "lon": -73.9137494 }, + { "lat": 40.8574625, "lon": -73.9136423 }, + { "lat": 40.8575276, "lon": -73.9136040 }, + { "lat": 40.8578099, "lon": -73.9134392 }, + { "lat": 40.8578447, "lon": -73.9134189 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996629, + "bounds": { + "minlat": 40.8561981, + "minlon": -73.9143909, + "maxlat": 40.8571746, + "maxlon": -73.9117995 + }, + "nodes": [ + 2906620184, + 2906620195, + 2906620196, + 2906620197, + 2906620198, + 2978124620, + 2906620236, + 2906620199, + 2906620200, + 2906620201, + 2978124547, + 2906620202, + 2906620203, + 2906620204, + 2906620205, + 2906620206, + 2906620207, + 2906620233, + 2906620234, + 2906620208, + 2906620209, + 2906620210, + 2906620211, + 2906620212, + 2906620213, + 8835736196, + 2906620214, + 2906620215, + 2906620216, + 10135688066, + 2906620217, + 2978124550, + 2906620218, + 2978124552 + ], + "geometry": [ + { "lat": 40.8567116, "lon": -73.9143909 }, + { "lat": 40.8566743, "lon": -73.9143348 }, + { "lat": 40.8566168, "lon": -73.9142401 }, + { "lat": 40.8565875, "lon": -73.9141508 }, + { "lat": 40.8565361, "lon": -73.9139707 }, + { "lat": 40.8565028, "lon": -73.9138720 }, + { "lat": 40.8564529, "lon": -73.9137244 }, + { "lat": 40.8564352, "lon": -73.9136720 }, + { "lat": 40.8563888, "lon": -73.9135080 }, + { "lat": 40.8563696, "lon": -73.9134319 }, + { "lat": 40.8563671, "lon": -73.9134185 }, + { "lat": 40.8563474, "lon": -73.9133146 }, + { "lat": 40.8563484, "lon": -73.9131932 }, + { "lat": 40.8563626, "lon": -73.9130612 }, + { "lat": 40.8563646, "lon": -73.9130132 }, + { "lat": 40.8563394, "lon": -73.9129185 }, + { "lat": 40.8562859, "lon": -73.9127424 }, + { "lat": 40.8562859, "lon": -73.9126517 }, + { "lat": 40.8562879, "lon": -73.9126050 }, + { "lat": 40.8562889, "lon": -73.9125157 }, + { "lat": 40.8562133, "lon": -73.9122983 }, + { "lat": 40.8561981, "lon": -73.9122423 }, + { "lat": 40.8562032, "lon": -73.9122023 }, + { "lat": 40.8562133, "lon": -73.9121823 }, + { "lat": 40.8565825, "lon": -73.9119542 }, + { "lat": 40.8566226, "lon": -73.9119319 }, + { "lat": 40.8568609, "lon": -73.9117995 }, + { "lat": 40.8570102, "lon": -73.9122209 }, + { "lat": 40.8570656, "lon": -73.9122703 }, + { "lat": 40.8571111, "lon": -73.9124105 }, + { "lat": 40.8571746, "lon": -73.9126064 }, + { "lat": 40.8570737, "lon": -73.9126639 }, + { "lat": 40.8570273, "lon": -73.9126904 }, + { "lat": 40.8568676, "lon": -73.9127029 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996632, + "bounds": { + "minlat": 40.8560377, + "minlon": -73.9127424, + "maxlat": 40.8562859, + "maxlon": -73.9122879 + }, + "nodes": [ + 2906620232, + 2906620231, + 2906620230, + 2906620229, + 2906620228, + 10304074675, + 2906620227, + 2906620207 + ], + "geometry": [ + { "lat": 40.8560377, "lon": -73.9122879 }, + { "lat": 40.8560952, "lon": -73.9122983 }, + { "lat": 40.8561336, "lon": -73.9123170 }, + { "lat": 40.8561487, "lon": -73.9123356 }, + { "lat": 40.8561669, "lon": -73.9123943 }, + { "lat": 40.8561814, "lon": -73.9124342 }, + { "lat": 40.8562133, "lon": -73.9125384 }, + { "lat": 40.8562859, "lon": -73.9127424 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996633, + "bounds": { + "minlat": 40.8564529, + "minlon": -73.9137244, + "maxlat": 40.8568841, + "maxlon": -73.9131440 + }, + "nodes": [ + 2978124548, + 2906620235, + 2906620236 + ], + "geometry": [ + { "lat": 40.8567705, "lon": -73.9131440 }, + { "lat": 40.8568841, "lon": -73.9134672 }, + { "lat": 40.8564529, "lon": -73.9137244 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996635, + "bounds": { + "minlat": 40.8574625, + "minlon": -73.9141455, + "maxlat": 40.8580613, + "maxlon": -73.9136423 + }, + "nodes": [ + 2906620250, + 2906620249, + 2906620248, + 2906620247, + 2906620246, + 2906620245, + 2906620240, + 2906620241, + 2906620242, + 2906620243, + 2906620244 + ], + "geometry": [ + { "lat": 40.8580613, "lon": -73.9139587 }, + { "lat": 40.8580017, "lon": -73.9140441 }, + { "lat": 40.8579241, "lon": -73.9141054 }, + { "lat": 40.8578746, "lon": -73.9141321 }, + { "lat": 40.8578343, "lon": -73.9141455 }, + { "lat": 40.8577849, "lon": -73.9141455 }, + { "lat": 40.8577334, "lon": -73.9141188 }, + { "lat": 40.8576366, "lon": -73.9139641 }, + { "lat": 40.8575660, "lon": -73.9138480 }, + { "lat": 40.8575014, "lon": -73.9137373 }, + { "lat": 40.8574625, "lon": -73.9136423 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996636, + "bounds": { + "minlat": 40.8568864, + "minlon": -73.9152492, + "maxlat": 40.8581611, + "maxlon": -73.9134189 + }, + "nodes": [ + 2906620194, + 2906620239, + 10135688051, + 13657058290, + 2906620250, + 2906620251, + 2906620252, + 2906620253, + 2906620254, + 2906620255, + 2906620256, + 2906620257, + 2906620261, + 2906620258, + 2906620259, + 2906620164 + ], + "geometry": [ + { "lat": 40.8578447, "lon": -73.9134189 }, + { "lat": 40.8578870, "lon": -73.9134438 }, + { "lat": 40.8579944, "lon": -73.9137610 }, + { "lat": 40.8580260, "lon": -73.9138543 }, + { "lat": 40.8580613, "lon": -73.9139587 }, + { "lat": 40.8580996, "lon": -73.9141388 }, + { "lat": 40.8581359, "lon": -73.9142908 }, + { "lat": 40.8581611, "lon": -73.9144362 }, + { "lat": 40.8580552, "lon": -73.9145016 }, + { "lat": 40.8576497, "lon": -73.9147429 }, + { "lat": 40.8574651, "lon": -73.9148603 }, + { "lat": 40.8574611, "lon": -73.9149483 }, + { "lat": 40.8573794, "lon": -73.9149977 }, + { "lat": 40.8571958, "lon": -73.9150684 }, + { "lat": 40.8569547, "lon": -73.9151897 }, + { "lat": 40.8568864, "lon": -73.9152492 } + ], + "tags": { + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 286996637, + "bounds": { + "minlat": 40.8574611, + "minlon": -73.9150630, + "maxlat": 40.8578964, + "maxlon": -73.9149451 + }, + "nodes": [ + 2906620257, + 2906620260, + 2978124595 + ], + "geometry": [ + { "lat": 40.8574611, "lon": -73.9149483 }, + { "lat": 40.8577516, "lon": -73.9150630 }, + { "lat": 40.8578964, "lon": -73.9149451 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996638, + "bounds": { + "minlat": 40.8563197, + "minlon": -73.9134189, + "maxlat": 40.8578447, + "maxlon": -73.9108078 + }, + "nodes": [ + 2906620282, + 2906620275, + 8835736200, + 2906620274, + 2906620273, + 2906620272, + 2906620271, + 2978124535, + 2906620270, + 2906620287, + 2978124542, + 2906620269, + 2906620268, + 10135688075, + 2906620262, + 10135688073, + 2906620421, + 10135688070, + 2906620265, + 10135688055, + 2906620263, + 2906620194 + ], + "geometry": [ + { "lat": 40.8563197, "lon": -73.9111662 }, + { "lat": 40.8563457, "lon": -73.9111813 }, + { "lat": 40.8563600, "lon": -73.9111726 }, + { "lat": 40.8566926, "lon": -73.9109698 }, + { "lat": 40.8567352, "lon": -73.9109245 }, + { "lat": 40.8567611, "lon": -73.9108751 }, + { "lat": 40.8567751, "lon": -73.9108276 }, + { "lat": 40.8568040, "lon": -73.9108236 }, + { "lat": 40.8570509, "lon": -73.9108078 }, + { "lat": 40.8570868, "lon": -73.9110209 }, + { "lat": 40.8571252, "lon": -73.9112485 }, + { "lat": 40.8571620, "lon": -73.9114669 }, + { "lat": 40.8572596, "lon": -73.9117841 }, + { "lat": 40.8574167, "lon": -73.9121708 }, + { "lat": 40.8574476, "lon": -73.9122468 }, + { "lat": 40.8574901, "lon": -73.9123696 }, + { "lat": 40.8575368, "lon": -73.9125045 }, + { "lat": 40.8575765, "lon": -73.9126195 }, + { "lat": 40.8576002, "lon": -73.9126879 }, + { "lat": 40.8577084, "lon": -73.9130183 }, + { "lat": 40.8578087, "lon": -73.9133244 }, + { "lat": 40.8578447, "lon": -73.9134189 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996639, + "bounds": { + "minlat": 40.8576002, + "minlon": -73.9126879, + "maxlat": 40.8588025, + "maxlon": -73.9119558 + }, + "nodes": [ + 2906620265, + 8835726311, + 2906620422, + 10135688032, + 2906620437, + 10135688180 + ], + "geometry": [ + { "lat": 40.8576002, "lon": -73.9126879 }, + { "lat": 40.8576404, "lon": -73.9126635 }, + { "lat": 40.8581896, "lon": -73.9123290 }, + { "lat": 40.8586892, "lon": -73.9120248 }, + { "lat": 40.8587310, "lon": -73.9119993 }, + { "lat": 40.8588025, "lon": -73.9119558 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996640, + "bounds": { + "minlat": 40.8561941, + "minlon": -73.9110865, + "maxlat": 40.8563197, + "maxlon": -73.9110330 + }, + "nodes": [ + 2906620277, + 2906620284 + ], + "geometry": [ + { "lat": 40.8563197, "lon": -73.9110330 }, + { "lat": 40.8561941, "lon": -73.9110865 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996641, + "bounds": { + "minlat": 40.8570868, + "minlon": -73.9110209, + "maxlat": 40.8582890, + "maxlon": -73.9102080 + }, + "nodes": [ + 2906620287, + 2906620288, + 2906620289, + 2906620290, + 2906620291, + 2906620292, + 2906620293, + 2906620294, + 2906620295, + 2906620296, + 2978124505, + 2906620297, + 2906620298, + 2906620299, + 2906620300, + 2906620401, + 2906620402, + 2906620403, + 2906620404, + 10304074676, + 2906620405, + 10135688195, + 42742756 + ], + "geometry": [ + { "lat": 40.8570868, "lon": -73.9110209 }, + { "lat": 40.8571329, "lon": -73.9109863 }, + { "lat": 40.8571776, "lon": -73.9109547 }, + { "lat": 40.8572035, "lon": -73.9109259 }, + { "lat": 40.8572253, "lon": -73.9108929 }, + { "lat": 40.8572378, "lon": -73.9108572 }, + { "lat": 40.8572482, "lon": -73.9108133 }, + { "lat": 40.8572606, "lon": -73.9106979 }, + { "lat": 40.8572960, "lon": -73.9103519 }, + { "lat": 40.8574600, "lon": -73.9103149 }, + { "lat": 40.8574831, "lon": -73.9103096 }, + { "lat": 40.8576169, "lon": -73.9102792 }, + { "lat": 40.8576916, "lon": -73.9102970 }, + { "lat": 40.8578069, "lon": -73.9103451 }, + { "lat": 40.8578723, "lon": -73.9103574 }, + { "lat": 40.8579201, "lon": -73.9103451 }, + { "lat": 40.8579741, "lon": -73.9103231 }, + { "lat": 40.8580291, "lon": -73.9103052 }, + { "lat": 40.8581309, "lon": -73.9102970 }, + { "lat": 40.8581741, "lon": -73.9102873 }, + { "lat": 40.8581922, "lon": -73.9102833 }, + { "lat": 40.8582258, "lon": -73.9102623 }, + { "lat": 40.8582890, "lon": -73.9102080 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996642, + "bounds": { + "minlat": 40.8571776, + "minlon": -73.9109713, + "maxlat": 40.8572375, + "maxlon": -73.9109533 + }, + "nodes": [ + 2906620289, + 2906620407, + 3096748747, + 3096748750 + ], + "geometry": [ + { "lat": 40.8571776, "lon": -73.9109547 }, + { "lat": 40.8572046, "lon": -73.9109533 }, + { "lat": 40.8572210, "lon": -73.9109615 }, + { "lat": 40.8572375, "lon": -73.9109713 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996643, + "bounds": { + "minlat": 40.8570322, + "minlon": -73.9108078, + "maxlat": 40.8570509, + "maxlon": -73.9106526 + }, + "nodes": [ + 2906620270, + 2906620409 + ], + "geometry": [ + { "lat": 40.8570509, "lon": -73.9108078 }, + { "lat": 40.8570322, "lon": -73.9106526 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996647, + "bounds": { + "minlat": 40.8571746, + "minlon": -73.9126156, + "maxlat": 40.8575368, + "maxlon": -73.9125045 + }, + "nodes": [ + 2906620217, + 2978124553, + 2906620420, + 10135688068, + 8835736187, + 2906620421 + ], + "geometry": [ + { "lat": 40.8571746, "lon": -73.9126064 }, + { "lat": 40.8572249, "lon": -73.9126156 }, + { "lat": 40.8574146, "lon": -73.9125203 }, + { "lat": 40.8574696, "lon": -73.9125132 }, + { "lat": 40.8574806, "lon": -73.9125118 }, + { "lat": 40.8575368, "lon": -73.9125045 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996652, + "bounds": { + "minlat": 40.8586729, + "minlon": -73.9119993, + "maxlat": 40.8587310, + "maxlon": -73.9118126 + }, + "nodes": [ + 2906620437, + 8835736208, + 2906620438 + ], + "geometry": [ + { "lat": 40.8587310, "lon": -73.9119993 }, + { "lat": 40.8587164, "lon": -73.9119523 }, + { "lat": 40.8586729, "lon": -73.9118126 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 286996653, + "bounds": { + "minlat": 40.8586253, + "minlon": -73.9118126, + "maxlat": 40.8587374, + "maxlon": -73.9113090 + }, + "nodes": [ + 2906620439, + 2906620440, + 2906620441, + 10135688030, + 2906620438 + ], + "geometry": [ + { "lat": 40.8586543, "lon": -73.9113090 }, + { "lat": 40.8587374, "lon": -73.9116220 }, + { "lat": 40.8586253, "lon": -73.9116852 }, + { "lat": 40.8586558, "lon": -73.9117668 }, + { "lat": 40.8586729, "lon": -73.9118126 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 286996654, + "bounds": { + "minlat": 40.8582690, + "minlon": -73.9116852, + "maxlat": 40.8586253, + "maxlon": -73.9115136 + }, + "nodes": [ + 2906620442, + 2906620443, + 2906620441 + ], + "geometry": [ + { "lat": 40.8582690, "lon": -73.9116591 }, + { "lat": 40.8585723, "lon": -73.9115136 }, + { "lat": 40.8586253, "lon": -73.9116852 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 286996656, + "bounds": { + "minlat": 40.8593666, + "minlon": -73.9119165, + "maxlat": 40.8594542, + "maxlon": -73.9116498 + }, + "nodes": [ + 2906620448, + 2906620449, + 2906620450 + ], + "geometry": [ + { "lat": 40.8594542, "lon": -73.9119165 }, + { "lat": 40.8593755, "lon": -73.9117250 }, + { "lat": 40.8593666, "lon": -73.9116498 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 286996657, + "bounds": { + "minlat": 40.8593515, + "minlon": -73.9116498, + "maxlat": 40.8593666, + "maxlon": -73.9115279 + }, + "nodes": [ + 2906620450, + 2906620451 + ], + "geometry": [ + { "lat": 40.8593666, "lon": -73.9116498 }, + { "lat": 40.8593515, "lon": -73.9115279 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 287281108, + "bounds": { + "minlat": 40.7443070, + "minlon": -73.9788091, + "maxlat": 40.7444839, + "maxlon": -73.9784601 + }, + "nodes": [ + 2909027531, + 2909027532, + 2709389497, + 2709389504, + 3841254264, + 2709389484, + 2709389442, + 2909027531 + ], + "geometry": [ + { "lat": 40.7443499, "lon": -73.9784601 }, + { "lat": 40.7443823, "lon": -73.9785369 }, + { "lat": 40.7444621, "lon": -73.9787261 }, + { "lat": 40.7444839, "lon": -73.9787776 }, + { "lat": 40.7444513, "lon": -73.9788015 }, + { "lat": 40.7444409, "lon": -73.9788091 }, + { "lat": 40.7443070, "lon": -73.9784916 }, + { "lat": 40.7443499, "lon": -73.9784601 } + ], + "tags": { + "area": "yes", + "building:colour": "#EAE0C7", + "building:material": "brick", + "building:part": "yes", + "height": "1.5", + "highway": "pedestrian", + "lit": "yes", + "roof:material": "concrete", + "roof:shape": "flat", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 287641396, + "bounds": { + "minlat": 40.8354358, + "minlon": -73.9235889, + "maxlat": 40.8356164, + "maxlon": -73.9233988 + }, + "nodes": [ + 2912071085, + 10133344456, + 2912071079, + 2912071081, + 2912071080 + ], + "geometry": [ + { "lat": 40.8354358, "lon": -73.9233988 }, + { "lat": 40.8355011, "lon": -73.9235110 }, + { "lat": 40.8355124, "lon": -73.9235303 }, + { "lat": 40.8355556, "lon": -73.9235685 }, + { "lat": 40.8356164, "lon": -73.9235889 } + ], + "tags": { + "highway": "residential", + "name": "Shakespeare Avenue", + "name:etymology:wikidata": "Q692", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Shakespeare", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 287641399, + "bounds": { + "minlat": 40.8350475, + "minlon": -73.9239865, + "maxlat": 40.8356164, + "maxlon": -73.9235889 + }, + "nodes": [ + 2912071080, + 10133344455, + 2912071087, + 10133348726, + 10133348725, + 2912071088, + 42734978 + ], + "geometry": [ + { "lat": 40.8356164, "lon": -73.9235889 }, + { "lat": 40.8355728, "lon": -73.9236644 }, + { "lat": 40.8355526, "lon": -73.9236995 }, + { "lat": 40.8352819, "lon": -73.9239006 }, + { "lat": 40.8352389, "lon": -73.9239325 }, + { "lat": 40.8351662, "lon": -73.9239865 }, + { "lat": 40.8350475, "lon": -73.9239831 } + ], + "tags": { + "highway": "residential", + "name": "Shakespeare Avenue", + "name:etymology:wikidata": "Q692", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Shakespeare", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 287641408, + "bounds": { + "minlat": 40.8268221, + "minlon": -73.9188623, + "maxlat": 40.8320260, + "maxlon": -73.9158920 + }, + "nodes": [ + 42732934, + 7042936053, + 7564389621, + 13033466800, + 42739700, + 13033466795, + 12038479063, + 42742395, + 13036779712, + 12038440337, + 42755570, + 12038440095, + 8187805326, + 12038440132, + 42755574, + 13036716113, + 8187805233, + 13031082357, + 42747574 + ], + "geometry": [ + { "lat": 40.8268221, "lon": -73.9188623 }, + { "lat": 40.8269621, "lon": -73.9187861 }, + { "lat": 40.8269776, "lon": -73.9187776 }, + { "lat": 40.8274882, "lon": -73.9185000 }, + { "lat": 40.8275470, "lon": -73.9184680 }, + { "lat": 40.8276174, "lon": -73.9184290 }, + { "lat": 40.8286982, "lon": -73.9178306 }, + { "lat": 40.8287590, "lon": -73.9177970 }, + { "lat": 40.8288294, "lon": -73.9177566 }, + { "lat": 40.8295959, "lon": -73.9173159 }, + { "lat": 40.8296661, "lon": -73.9172755 }, + { "lat": 40.8297169, "lon": -73.9172459 }, + { "lat": 40.8307572, "lon": -73.9166389 }, + { "lat": 40.8307800, "lon": -73.9166258 }, + { "lat": 40.8308390, "lon": -73.9165910 }, + { "lat": 40.8309079, "lon": -73.9165504 }, + { "lat": 40.8319385, "lon": -73.9159435 }, + { "lat": 40.8319712, "lon": -73.9159242 }, + { "lat": 40.8320260, "lon": -73.9158920 } + ], + "tags": { + "highway": "residential", + "name": "Grant Avenue", + "name:etymology:wikidata": "Q34836", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grant", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 287641409, + "bounds": { + "minlat": 40.8193625, + "minlon": -73.9182831, + "maxlat": 40.8228337, + "maxlon": -73.9165732 + }, + "nodes": [ + 42749752, + 7278802717, + 42750602, + 7278802721, + 42750604, + 12040128360, + 9910723125, + 2827514754, + 13547352303, + 9910723126, + 42744086, + 9910723130, + 42750607 + ], + "geometry": [ + { "lat": 40.8193625, "lon": -73.9182831 }, + { "lat": 40.8199222, "lon": -73.9180444 }, + { "lat": 40.8199950, "lon": -73.9180110 }, + { "lat": 40.8201491, "lon": -73.9179441 }, + { "lat": 40.8206470, "lon": -73.9177130 }, + { "lat": 40.8207163, "lon": -73.9176797 }, + { "lat": 40.8212069, "lon": -73.9174440 }, + { "lat": 40.8212879, "lon": -73.9174051 }, + { "lat": 40.8213584, "lon": -73.9173679 }, + { "lat": 40.8221584, "lon": -73.9169461 }, + { "lat": 40.8222108, "lon": -73.9169185 }, + { "lat": 40.8222722, "lon": -73.9168839 }, + { "lat": 40.8228337, "lon": -73.9165732 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Courtlandt Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Courtland", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 287641410, + "bounds": { + "minlat": 40.8182290, + "minlon": -73.9185700, + "maxlat": 40.8186910, + "maxlon": -73.9167900 + }, + "nodes": [ + 42750600, + 12040128215, + 42776426 + ], + "geometry": [ + { "lat": 40.8186910, "lon": -73.9185700 }, + { "lat": 40.8182602, "lon": -73.9169103 }, + { "lat": 40.8182290, "lon": -73.9167900 } + ], + "tags": { + "highway": "residential", + "name": "East 152nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "152nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 289360194, + "bounds": { + "minlat": 40.7497127, + "minlon": -73.9740024, + "maxlat": 40.7503710, + "maxlon": -73.9734902 + }, + "nodes": [ + 2929098299, + 4011390052, + 10171269364, + 2929098298 + ], + "geometry": [ + { "lat": 40.7503710, "lon": -73.9734902 }, + { "lat": 40.7502715, "lon": -73.9735620 }, + { "lat": 40.7497693, "lon": -73.9739606 }, + { "lat": 40.7497127, "lon": -73.9740024 } + ], + "tags": { + "access": "private", + "foot": "permissive", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 291195833, + "bounds": { + "minlat": 40.7535535, + "minlon": -73.9984513, + "maxlat": 40.7545575, + "maxlon": -73.9978498 + }, + "nodes": [ + 4604283240, + 427840991, + 427840990, + 427840989, + 427840988, + 427840987, + 427840986, + 11144700391, + 11144700399, + 427840984 + ], + "geometry": [ + { "lat": 40.7535535, "lon": -73.9984513 }, + { "lat": 40.7537561, "lon": -73.9983707 }, + { "lat": 40.7538806, "lon": -73.9983164 }, + { "lat": 40.7539964, "lon": -73.9982615 }, + { "lat": 40.7541518, "lon": -73.9981786 }, + { "lat": 40.7542609, "lon": -73.9981102 }, + { "lat": 40.7543553, "lon": -73.9980402 }, + { "lat": 40.7544468, "lon": -73.9979609 }, + { "lat": 40.7544995, "lon": -73.9979111 }, + { "lat": 40.7545575, "lon": -73.9978498 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "note": "this is supposed to be a local truck route but signs say no trucks", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 291195834, + "bounds": { + "minlat": 40.7523081, + "minlon": -73.9994189, + "maxlat": 40.7536424, + "maxlon": -73.9986223 + }, + "nodes": [ + 427841057, + 11144700420, + 427841058, + 9423683664, + 427841059, + 12152867566, + 7502121832 + ], + "geometry": [ + { "lat": 40.7536424, "lon": -73.9986250 }, + { "lat": 40.7535918, "lon": -73.9986254 }, + { "lat": 40.7535252, "lon": -73.9986223 }, + { "lat": 40.7534734, "lon": -73.9986241 }, + { "lat": 40.7534036, "lon": -73.9986466 }, + { "lat": 40.7523144, "lon": -73.9994144 }, + { "lat": 40.7523081, "lon": -73.9994189 } + ], + "tags": { + "hgv": "local", + "highway": "motorway", + "lanes": "2", + "layer": "-1", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "toll": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 292644332, + "bounds": { + "minlat": 40.8733780, + "minlon": -73.9509359, + "maxlat": 40.8755188, + "maxlon": -73.9489722 + }, + "nodes": [ + 103318331, + 4072574819, + 2961782530, + 2961782531, + 2961782532, + 2961785333, + 4072577737, + 2961785334, + 2961785335, + 2961785336, + 2961785337, + 2961785338, + 2961785339, + 2961785340, + 4072572062, + 2961785341, + 2961785342, + 2961785343, + 4072572060, + 2961785344, + 9421906466, + 2961785345 + ], + "geometry": [ + { "lat": 40.8733780, "lon": -73.9508918 }, + { "lat": 40.8734406, "lon": -73.9509172 }, + { "lat": 40.8735504, "lon": -73.9509359 }, + { "lat": 40.8737538, "lon": -73.9508616 }, + { "lat": 40.8740723, "lon": -73.9507448 }, + { "lat": 40.8742850, "lon": -73.9506634 }, + { "lat": 40.8743492, "lon": -73.9505676 }, + { "lat": 40.8743879, "lon": -73.9504388 }, + { "lat": 40.8744028, "lon": -73.9502936 }, + { "lat": 40.8744402, "lon": -73.9501361 }, + { "lat": 40.8745419, "lon": -73.9499981 }, + { "lat": 40.8746557, "lon": -73.9499131 }, + { "lat": 40.8748564, "lon": -73.9497715 }, + { "lat": 40.8750223, "lon": -73.9497220 }, + { "lat": 40.8751179, "lon": -73.9497140 }, + { "lat": 40.8751494, "lon": -73.9497114 }, + { "lat": 40.8753675, "lon": -73.9497839 }, + { "lat": 40.8754188, "lon": -73.9497857 }, + { "lat": 40.8754481, "lon": -73.9497499 }, + { "lat": 40.8754826, "lon": -73.9494265 }, + { "lat": 40.8755005, "lon": -73.9491315 }, + { "lat": 40.8755188, "lon": -73.9489722 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 292646064, + "bounds": { + "minlat": 40.8674566, + "minlon": -73.9539716, + "maxlat": 40.8681056, + "maxlon": -73.9538301 + }, + "nodes": [ + 2961794251, + 2961794250, + 2961794249, + 2961794248, + 2961794255, + 114662175 + ], + "geometry": [ + { "lat": 40.8674566, "lon": -73.9539300 }, + { "lat": 40.8675423, "lon": -73.9538301 }, + { "lat": 40.8675818, "lon": -73.9538328 }, + { "lat": 40.8679043, "lon": -73.9538690 }, + { "lat": 40.8679971, "lon": -73.9538823 }, + { "lat": 40.8681056, "lon": -73.9539716 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 293064514, + "bounds": { + "minlat": 40.7434796, + "minlon": -73.9507136, + "maxlat": 40.7435472, + "maxlon": -73.9503824 + }, + "nodes": [ + 42844248, + 11622964710, + 2966132287, + 2966132290 + ], + "geometry": [ + { "lat": 40.7435472, "lon": -73.9507136 }, + { "lat": 40.7435152, "lon": -73.9505441 }, + { "lat": 40.7435068, "lon": -73.9504994 }, + { "lat": 40.7434796, "lon": -73.9503824 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "parking_aisle", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 293064515, + "bounds": { + "minlat": 40.7434796, + "minlon": -73.9503824, + "maxlat": 40.7438896, + "maxlon": -73.9495669 + }, + "nodes": [ + 2966132290, + 2966132293, + 2966132295, + 2966132298, + 2966132297, + 2966132291 + ], + "geometry": [ + { "lat": 40.7434796, "lon": -73.9503824 }, + { "lat": 40.7435942, "lon": -73.9501544 }, + { "lat": 40.7437102, "lon": -73.9499237 }, + { "lat": 40.7437711, "lon": -73.9498025 }, + { "lat": 40.7438225, "lon": -73.9497004 }, + { "lat": 40.7438896, "lon": -73.9495669 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 293064516, + "bounds": { + "minlat": 40.7434968, + "minlon": -73.9501544, + "maxlat": 40.7435942, + "maxlon": -73.9496994 + }, + "nodes": [ + 2966132292, + 2966132293 + ], + "geometry": [ + { "lat": 40.7434968, "lon": -73.9496994 }, + { "lat": 40.7435942, "lon": -73.9501544 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 293064517, + "bounds": { + "minlat": 40.7436525, + "minlon": -73.9499237, + "maxlat": 40.7437102, + "maxlon": -73.9496533 + }, + "nodes": [ + 2966132294, + 2966132295 + ], + "geometry": [ + { "lat": 40.7436525, "lon": -73.9496533 }, + { "lat": 40.7437102, "lon": -73.9499237 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 293064518, + "bounds": { + "minlat": 40.7437820, + "minlon": -73.9497004, + "maxlat": 40.7438225, + "maxlon": -73.9495035 + }, + "nodes": [ + 2966132296, + 2966132297 + ], + "geometry": [ + { "lat": 40.7437820, "lon": -73.9495035 }, + { "lat": 40.7438225, "lon": -73.9497004 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 293064519, + "bounds": { + "minlat": 40.7437711, + "minlon": -73.9499775, + "maxlat": 40.7439373, + "maxlon": -73.9498025 + }, + "nodes": [ + 2966132298, + 2966132300, + 11232397922, + 2966132299 + ], + "geometry": [ + { "lat": 40.7437711, "lon": -73.9498025 }, + { "lat": 40.7438322, "lon": -73.9498668 }, + { "lat": 40.7438542, "lon": -73.9498899 }, + { "lat": 40.7439373, "lon": -73.9499775 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 293064520, + "bounds": { + "minlat": 40.7433542, + "minlon": -73.9503824, + "maxlat": 40.7434796, + "maxlon": -73.9492788 + }, + "nodes": [ + 2966132290, + 2966132288, + 2966132289 + ], + "geometry": [ + { "lat": 40.7434796, "lon": -73.9503824 }, + { "lat": 40.7433542, "lon": -73.9497858 }, + { "lat": 40.7434531, "lon": -73.9492788 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 293571886, + "bounds": { + "minlat": 40.7481346, + "minlon": -73.9395953, + "maxlat": 40.7482804, + "maxlon": -73.9391782 + }, + "nodes": [ + 42844299, + 11211159812, + 2971840925 + ], + "geometry": [ + { "lat": 40.7482804, "lon": -73.9391782 }, + { "lat": 40.7482407, "lon": -73.9392920 }, + { "lat": 40.7481346, "lon": -73.9395953 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Jackson Avenue", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|none" + } +}, +{ + "type": "way", + "id": 293571889, + "bounds": { + "minlat": 40.7458232, + "minlon": -73.9456423, + "maxlat": 40.7469062, + "maxlon": -73.9428154 + }, + "nodes": [ + 42844264, + 6603473448, + 9982745712, + 2971841353, + 8996531606, + 42844271, + 4228583947, + 11520102401, + 4228583934, + 2971841368, + 9982698538, + 4228583938, + 4215808500 + ], + "geometry": [ + { "lat": 40.7458232, "lon": -73.9456423 }, + { "lat": 40.7458446, "lon": -73.9455223 }, + { "lat": 40.7458633, "lon": -73.9454344 }, + { "lat": 40.7460905, "lon": -73.9448564 }, + { "lat": 40.7463968, "lon": -73.9440900 }, + { "lat": 40.7464383, "lon": -73.9439862 }, + { "lat": 40.7464719, "lon": -73.9439020 }, + { "lat": 40.7466896, "lon": -73.9433574 }, + { "lat": 40.7467028, "lon": -73.9433248 }, + { "lat": 40.7467351, "lon": -73.9432435 }, + { "lat": 40.7467699, "lon": -73.9431564 }, + { "lat": 40.7468115, "lon": -73.9430524 }, + { "lat": 40.7469062, "lon": -73.9428154 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 294241329, + "bounds": { + "minlat": 40.8510192, + "minlon": -73.9146416, + "maxlat": 40.8513965, + "maxlon": -73.9141777 + }, + "nodes": [ + 2978063369, + 2978063358, + 2978063354, + 2978011214, + 2978063366, + 2978063367, + 2978063370, + 2978063371, + 2978063372, + 2978063365, + 2978063373, + 2978063374, + 2978063375, + 2978063376, + 2978063360, + 2978063369 + ], + "geometry": [ + { "lat": 40.8513965, "lon": -73.9142943 }, + { "lat": 40.8513884, "lon": -73.9142782 }, + { "lat": 40.8513832, "lon": -73.9142646 }, + { "lat": 40.8513237, "lon": -73.9141910 }, + { "lat": 40.8513127, "lon": -73.9141777 }, + { "lat": 40.8511525, "lon": -73.9144197 }, + { "lat": 40.8511459, "lon": -73.9144324 }, + { "lat": 40.8511003, "lon": -73.9144371 }, + { "lat": 40.8510192, "lon": -73.9145717 }, + { "lat": 40.8510544, "lon": -73.9146416 }, + { "lat": 40.8511617, "lon": -73.9145102 }, + { "lat": 40.8511733, "lon": -73.9144459 }, + { "lat": 40.8512164, "lon": -73.9143848 }, + { "lat": 40.8513189, "lon": -73.9143734 }, + { "lat": 40.8513713, "lon": -73.9143200 }, + { "lat": 40.8513965, "lon": -73.9142943 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 294248632, + "bounds": { + "minlat": 40.8570586, + "minlon": -73.9092105, + "maxlat": 40.8571808, + "maxlon": -73.9089420 + }, + "nodes": [ + 2978124437, + 2978124457, + 2978124490, + 2978124488, + 2978124489, + 2978124485, + 2978124486, + 2978124487, + 2978124458, + 2978124459, + 2978124460, + 2978124443, + 2978124438, + 11748255125, + 2978124430, + 2978124431, + 2978124437 + ], + "geometry": [ + { "lat": 40.8571686, "lon": -73.9091776 }, + { "lat": 40.8571534, "lon": -73.9091682 }, + { "lat": 40.8571646, "lon": -73.9091515 }, + { "lat": 40.8571757, "lon": -73.9091267 }, + { "lat": 40.8571808, "lon": -73.9090985 }, + { "lat": 40.8571763, "lon": -73.9090603 }, + { "lat": 40.8571539, "lon": -73.9090355 }, + { "lat": 40.8571291, "lon": -73.9090248 }, + { "lat": 40.8571012, "lon": -73.9090201 }, + { "lat": 40.8571022, "lon": -73.9090060 }, + { "lat": 40.8571255, "lon": -73.9089872 }, + { "lat": 40.8571184, "lon": -73.9089745 }, + { "lat": 40.8570971, "lon": -73.9089420 }, + { "lat": 40.8570604, "lon": -73.9089803 }, + { "lat": 40.8570586, "lon": -73.9090143 }, + { "lat": 40.8571321, "lon": -73.9092105 }, + { "lat": 40.8571686, "lon": -73.9091776 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 294248635, + "bounds": { + "minlat": 40.8580166, + "minlon": -73.9084789, + "maxlat": 40.8593569, + "maxlon": -73.9072908 + }, + "nodes": [ + 2978124467, + 2978124468, + 2978124469 + ], + "geometry": [ + { "lat": 40.8580166, "lon": -73.9084789 }, + { "lat": 40.8593048, "lon": -73.9073122 }, + { "lat": 40.8593569, "lon": -73.9072908 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 294248637, + "bounds": { + "minlat": 40.8571355, + "minlon": -73.9093300, + "maxlat": 40.8578422, + "maxlon": -73.9086801 + }, + "nodes": [ + 42756817, + 2978124472, + 13247503982, + 10890187246, + 2978124473, + 2978124474 + ], + "geometry": [ + { "lat": 40.8571355, "lon": -73.9093300 }, + { "lat": 40.8571711, "lon": -73.9092953 }, + { "lat": 40.8571800, "lon": -73.9092870 }, + { "lat": 40.8572106, "lon": -73.9092585 }, + { "lat": 40.8575191, "lon": -73.9089716 }, + { "lat": 40.8578422, "lon": -73.9086801 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 294248640, + "bounds": { + "minlat": 40.8569394, + "minlon": -73.9106649, + "maxlat": 40.8570905, + "maxlon": -73.9104664 + }, + "nodes": [ + 2978124494, + 2978124495, + 2978124504, + 2906620413, + 2978124496, + 2906620410, + 2978124497, + 2978124498, + 2978124502, + 2978124499, + 2978124503, + 2978124500, + 2978124501, + 2906620409, + 2978124494 + ], + "geometry": [ + { "lat": 40.8570900, "lon": -73.9106341 }, + { "lat": 40.8570905, "lon": -73.9105536 }, + { "lat": 40.8570799, "lon": -73.9105275 }, + { "lat": 40.8570716, "lon": -73.9104975 }, + { "lat": 40.8570657, "lon": -73.9104664 }, + { "lat": 40.8570104, "lon": -73.9104728 }, + { "lat": 40.8569501, "lon": -73.9104959 }, + { "lat": 40.8569572, "lon": -73.9105429 }, + { "lat": 40.8569430, "lon": -73.9105556 }, + { "lat": 40.8569394, "lon": -73.9105804 }, + { "lat": 40.8569490, "lon": -73.9105979 }, + { "lat": 40.8569653, "lon": -73.9106046 }, + { "lat": 40.8569774, "lon": -73.9106649 }, + { "lat": 40.8570322, "lon": -73.9106526 }, + { "lat": 40.8570900, "lon": -73.9106341 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 294248649, + "bounds": { + "minlat": 40.8562207, + "minlon": -73.9117868, + "maxlat": 40.8571252, + "maxlon": -73.9112485 + }, + "nodes": [ + 2978124541, + 8835736198, + 2978124540, + 2978124542 + ], + "geometry": [ + { "lat": 40.8562207, "lon": -73.9117868 }, + { "lat": 40.8565123, "lon": -73.9116136 }, + { "lat": 40.8569186, "lon": -73.9113724 }, + { "lat": 40.8571252, "lon": -73.9112485 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 294248654, + "bounds": { + "minlat": 40.8569714, + "minlon": -73.9126639, + "maxlat": 40.8570737, + "maxlon": -73.9123487 + }, + "nodes": [ + 2978124549, + 2978124550 + ], + "geometry": [ + { "lat": 40.8569714, "lon": -73.9123487 }, + { "lat": 40.8570737, "lon": -73.9126639 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 294248655, + "bounds": { + "minlat": 40.8567837, + "minlon": -73.9127029, + "maxlat": 40.8568676, + "maxlon": -73.9124291 + }, + "nodes": [ + 2978124551, + 2978124552 + ], + "geometry": [ + { "lat": 40.8567837, "lon": -73.9124291 }, + { "lat": 40.8568676, "lon": -73.9127029 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 294248658, + "bounds": { + "minlat": 40.8570093, + "minlon": -73.9144663, + "maxlat": 40.8571177, + "maxlon": -73.9139012 + }, + "nodes": [ + 2978124563, + 2978124564 + ], + "geometry": [ + { "lat": 40.8570093, "lon": -73.9139012 }, + { "lat": 40.8571177, "lon": -73.9144663 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 294248665, + "bounds": { + "minlat": 40.8573228, + "minlon": -73.9144340, + "maxlat": 40.8574421, + "maxlon": -73.9142765 + }, + "nodes": [ + 2978124611, + 2978124612, + 2978124613, + 2978124614, + 2978124615, + 2978124616, + 2978124617, + 2978124618, + 2978124599, + 2978124602, + 2978124604, + 2978124605, + 2978124606, + 2978124607, + 2978124608, + 2978124609, + 2978124610, + 2978124600, + 2978124603, + 2978124611 + ], + "geometry": [ + { "lat": 40.8573238, "lon": -73.9143385 }, + { "lat": 40.8573310, "lon": -73.9143147 }, + { "lat": 40.8573436, "lon": -73.9142951 }, + { "lat": 40.8573603, "lon": -73.9142820 }, + { "lat": 40.8573792, "lon": -73.9142765 }, + { "lat": 40.8573985, "lon": -73.9142794 }, + { "lat": 40.8574161, "lon": -73.9142903 }, + { "lat": 40.8574301, "lon": -73.9143080 }, + { "lat": 40.8574391, "lon": -73.9143308 }, + { "lat": 40.8574421, "lon": -73.9143569 }, + { "lat": 40.8574384, "lon": -73.9143830 }, + { "lat": 40.8574284, "lon": -73.9144059 }, + { "lat": 40.8574133, "lon": -73.9144232 }, + { "lat": 40.8573946, "lon": -73.9144329 }, + { "lat": 40.8573746, "lon": -73.9144340 }, + { "lat": 40.8573555, "lon": -73.9144263 }, + { "lat": 40.8573393, "lon": -73.9144107 }, + { "lat": 40.8573280, "lon": -73.9143889 }, + { "lat": 40.8573228, "lon": -73.9143641 }, + { "lat": 40.8573238, "lon": -73.9143385 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 294357878, + "bounds": { + "minlat": 40.8622788, + "minlon": -73.9100646, + "maxlat": 40.8628468, + "maxlon": -73.9095442 + }, + "nodes": [ + 2979499052, + 2979499053, + 2979499054, + 2979499055, + 10170163828, + 42731026 + ], + "geometry": [ + { "lat": 40.8628468, "lon": -73.9095442 }, + { "lat": 40.8625710, "lon": -73.9099103 }, + { "lat": 40.8624939, "lon": -73.9100646 }, + { "lat": 40.8624290, "lon": -73.9100163 }, + { "lat": 40.8624119, "lon": -73.9100039 }, + { "lat": 40.8622788, "lon": -73.9099012 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 294616437, + "bounds": { + "minlat": 40.7571008, + "minlon": -73.9489253, + "maxlat": 40.7573078, + "maxlon": -73.9486759 + }, + "nodes": [ + 2982087679, + 2982087671, + 2982087672, + 2982087678, + 2982087673, + 2982087680, + 2982087681, + 2982087707, + 1465494776, + 2982087679 + ], + "geometry": [ + { "lat": 40.7571008, "lon": -73.9487966 }, + { "lat": 40.7571629, "lon": -73.9489253 }, + { "lat": 40.7572086, "lon": -73.9488730 }, + { "lat": 40.7572162, "lon": -73.9488668 }, + { "lat": 40.7572574, "lon": -73.9488328 }, + { "lat": 40.7573078, "lon": -73.9488100 }, + { "lat": 40.7572483, "lon": -73.9486759 }, + { "lat": 40.7572015, "lon": -73.9487335 }, + { "lat": 40.7571497, "lon": -73.9487711 }, + { "lat": 40.7571008, "lon": -73.9487966 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 294616439, + "bounds": { + "minlat": 40.7572158, + "minlon": -73.9491345, + "maxlat": 40.7574149, + "maxlon": -73.9489025 + }, + "nodes": [ + 2982087682, + 2982087683, + 2982087684, + 2982087685, + 2982087686, + 2982087652, + 2982087687, + 2982087688, + 2982087689, + 2982087690, + 2982087682 + ], + "geometry": [ + { "lat": 40.7574149, "lon": -73.9489920 }, + { "lat": 40.7573935, "lon": -73.9489387 }, + { "lat": 40.7573692, "lon": -73.9489106 }, + { "lat": 40.7573275, "lon": -73.9489025 }, + { "lat": 40.7572899, "lon": -73.9489253 }, + { "lat": 40.7572716, "lon": -73.9489361 }, + { "lat": 40.7572259, "lon": -73.9489924 }, + { "lat": 40.7572158, "lon": -73.9490500 }, + { "lat": 40.7572208, "lon": -73.9491050 }, + { "lat": 40.7572381, "lon": -73.9491345 }, + { "lat": 40.7574149, "lon": -73.9489920 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 294992646, + "bounds": { + "minlat": 40.7418871, + "minlon": -73.9509123, + "maxlat": 40.7420937, + "maxlon": -73.9508408 + }, + "nodes": [ + 2986363076, + 5935119763 + ], + "geometry": [ + { "lat": 40.7418871, "lon": -73.9509123 }, + { "lat": 40.7420937, "lon": -73.9508408 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 294992647, + "bounds": { + "minlat": 40.7419262, + "minlon": -73.9503196, + "maxlat": 40.7419869, + "maxlon": -73.9503006 + }, + "nodes": [ + 2986363078, + 2986363079 + ], + "geometry": [ + { "lat": 40.7419262, "lon": -73.9503196 }, + { "lat": 40.7419869, "lon": -73.9503006 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 295106351, + "bounds": { + "minlat": 40.7213329, + "minlon": -73.9458801, + "maxlat": 40.7215801, + "maxlon": -73.9455960 + }, + "nodes": [ + 2987758896, + 6228788709, + 2987758898 + ], + "geometry": [ + { "lat": 40.7215801, "lon": -73.9458801 }, + { "lat": 40.7215248, "lon": -73.9458219 }, + { "lat": 40.7213329, "lon": -73.9455960 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 295106353, + "bounds": { + "minlat": 40.7339983, + "minlon": -73.9522617, + "maxlat": 40.7344002, + "maxlon": -73.9521783 + }, + "nodes": [ + 2987758904, + 8097082923, + 12127623199 + ], + "geometry": [ + { "lat": 40.7339983, "lon": -73.9521783 }, + { "lat": 40.7340628, "lon": -73.9521912 }, + { "lat": 40.7344002, "lon": -73.9522617 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "Jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 295108639, + "bounds": { + "minlat": 40.7434544, + "minlon": -73.9511528, + "maxlat": 40.7435776, + "maxlon": -73.9509503 + }, + "nodes": [ + 2987785550, + 11622964683, + 2987785551, + 2987785560, + 2987785555, + 2987785552, + 2987785553, + 2987785557, + 2987785556, + 2987785558, + 2987785554, + 12382713578, + 11211160082, + 2987785550 + ], + "geometry": [ + { "lat": 40.7435695, "lon": -73.9511151 }, + { "lat": 40.7435597, "lon": -73.9511365 }, + { "lat": 40.7434818, "lon": -73.9511528 }, + { "lat": 40.7434651, "lon": -73.9511481 }, + { "lat": 40.7434552, "lon": -73.9511235 }, + { "lat": 40.7434544, "lon": -73.9510898 }, + { "lat": 40.7435154, "lon": -73.9509637 }, + { "lat": 40.7435255, "lon": -73.9509550 }, + { "lat": 40.7435387, "lon": -73.9509503 }, + { "lat": 40.7435484, "lon": -73.9509603 }, + { "lat": 40.7435550, "lon": -73.9509744 }, + { "lat": 40.7435712, "lon": -73.9510533 }, + { "lat": 40.7435776, "lon": -73.9510844 }, + { "lat": 40.7435695, "lon": -73.9511151 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 295416544, + "bounds": { + "minlat": 40.7452310, + "minlon": -73.9567495, + "maxlat": 40.7454418, + "maxlon": -73.9566747 + }, + "nodes": [ + 2991257464, + 11622832130, + 2991257465 + ], + "geometry": [ + { "lat": 40.7454418, "lon": -73.9566747 }, + { "lat": 40.7453820, "lon": -73.9566959 }, + { "lat": 40.7452310, "lon": -73.9567495 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 295416545, + "bounds": { + "minlat": 40.7450863, + "minlon": -73.9569054, + "maxlat": 40.7452434, + "maxlon": -73.9566991 + }, + "nodes": [ + 2991257477, + 2991257478, + 2991257479, + 2991257480, + 2991257481, + 2991257482, + 2991257483, + 2991257484, + 2991257466, + 2991257465, + 2991257467, + 2991257470, + 2991257471, + 2991257472, + 2991257473, + 2991257474, + 2991257475, + 2991257476, + 2991257468, + 2991257469, + 2991257477 + ], + "geometry": [ + { "lat": 40.7450863, "lon": -73.9568074 }, + { "lat": 40.7450890, "lon": -73.9567752 }, + { "lat": 40.7450992, "lon": -73.9567456 }, + { "lat": 40.7451158, "lon": -73.9567217 }, + { "lat": 40.7451372, "lon": -73.9567056 }, + { "lat": 40.7451613, "lon": -73.9566991 }, + { "lat": 40.7451857, "lon": -73.9567027 }, + { "lat": 40.7452081, "lon": -73.9567162 }, + { "lat": 40.7452263, "lon": -73.9567381 }, + { "lat": 40.7452310, "lon": -73.9567495 }, + { "lat": 40.7452393, "lon": -73.9567697 }, + { "lat": 40.7452434, "lon": -73.9568053 }, + { "lat": 40.7452380, "lon": -73.9568407 }, + { "lat": 40.7452238, "lon": -73.9568714 }, + { "lat": 40.7452024, "lon": -73.9568939 }, + { "lat": 40.7451765, "lon": -73.9569054 }, + { "lat": 40.7451493, "lon": -73.9569045 }, + { "lat": 40.7451238, "lon": -73.9568913 }, + { "lat": 40.7451034, "lon": -73.9568675 }, + { "lat": 40.7450912, "lon": -73.9568392 }, + { "lat": 40.7450863, "lon": -73.9568074 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 295447820, + "bounds": { + "minlat": 40.7379618, + "minlon": -73.9555550, + "maxlat": 40.7380829, + "maxlon": -73.9553793 + }, + "nodes": [ + 2991742223, + 2991742339, + 2991742333, + 2991742224, + 2991742225, + 2991742337, + 2991742232, + 2991742338, + 2991742226, + 2991742227, + 2991742231, + 2991742336, + 9785884635, + 2991742228, + 2991742334, + 2991742230, + 2991742335, + 2991742229, + 2991742223 + ], + "geometry": [ + { "lat": 40.7380563, "lon": -73.9555268 }, + { "lat": 40.7380530, "lon": -73.9555349 }, + { "lat": 40.7380476, "lon": -73.9555382 }, + { "lat": 40.7380370, "lon": -73.9555423 }, + { "lat": 40.7379770, "lon": -73.9555543 }, + { "lat": 40.7379701, "lon": -73.9555550 }, + { "lat": 40.7379648, "lon": -73.9555510 }, + { "lat": 40.7379620, "lon": -73.9555423 }, + { "lat": 40.7379618, "lon": -73.9555302 }, + { "lat": 40.7380344, "lon": -73.9554035 }, + { "lat": 40.7380456, "lon": -73.9553867 }, + { "lat": 40.7380558, "lon": -73.9553823 }, + { "lat": 40.7380620, "lon": -73.9553803 }, + { "lat": 40.7380654, "lon": -73.9553793 }, + { "lat": 40.7380730, "lon": -73.9553820 }, + { "lat": 40.7380807, "lon": -73.9553874 }, + { "lat": 40.7380829, "lon": -73.9553984 }, + { "lat": 40.7380827, "lon": -73.9554082 }, + { "lat": 40.7380563, "lon": -73.9555268 } + ], + "tags": { + "area": "yes", + "barrier": "kerb", + "highway": "pedestrian", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 295447821, + "bounds": { + "minlat": 40.7386345, + "minlon": -73.9553666, + "maxlat": 40.7386797, + "maxlon": -73.9552069 + }, + "nodes": [ + 2991742340, + 2991742341, + 10602887356, + 2991742342, + 10602887357, + 2991742343, + 10602887358, + 2991742344, + 10602887359, + 2991742340 + ], + "geometry": [ + { "lat": 40.7386345, "lon": -73.9553622 }, + { "lat": 40.7386670, "lon": -73.9552120 }, + { "lat": 40.7386713, "lon": -73.9552069 }, + { "lat": 40.7386770, "lon": -73.9552102 }, + { "lat": 40.7386797, "lon": -73.9552545 }, + { "lat": 40.7386740, "lon": -73.9552976 }, + { "lat": 40.7386634, "lon": -73.9553319 }, + { "lat": 40.7386472, "lon": -73.9553588 }, + { "lat": 40.7386408, "lon": -73.9553666 }, + { "lat": 40.7386345, "lon": -73.9553622 } + ], + "tags": { + "area": "yes", + "barrier": "kerb", + "highway": "pedestrian", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 295447826, + "bounds": { + "minlat": 40.7368548, + "minlon": -73.9581807, + "maxlat": 40.7381785, + "maxlon": -73.9574702 + }, + "nodes": [ + 5481915327, + 5481915328, + 5481915329, + 5481915330, + 2991742349, + 8097025071, + 2991742350 + ], + "geometry": [ + { "lat": 40.7381785, "lon": -73.9578935 }, + { "lat": 40.7380230, "lon": -73.9581807 }, + { "lat": 40.7374201, "lon": -73.9576068 }, + { "lat": 40.7372839, "lon": -73.9578753 }, + { "lat": 40.7369381, "lon": -73.9575492 }, + { "lat": 40.7369089, "lon": -73.9575216 }, + { "lat": 40.7368548, "lon": -73.9574702 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 295447827, + "bounds": { + "minlat": 40.7370681, + "minlon": -73.9575144, + "maxlat": 40.7373428, + "maxlon": -73.9570733 + }, + "nodes": [ + 5481915303, + 5481915304, + 5481915305, + 5481915302, + 2991742351, + 8097082907, + 2991742352 + ], + "geometry": [ + { "lat": 40.7371843, "lon": -73.9574538 }, + { "lat": 40.7372458, "lon": -73.9575144 }, + { "lat": 40.7373428, "lon": -73.9573430 }, + { "lat": 40.7372220, "lon": -73.9572238 }, + { "lat": 40.7371455, "lon": -73.9571479 }, + { "lat": 40.7371254, "lon": -73.9571286 }, + { "lat": 40.7370681, "lon": -73.9570733 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 295447849, + "bounds": { + "minlat": 40.7294283, + "minlon": -73.9505869, + "maxlat": 40.7295147, + "maxlon": -73.9503160 + }, + "nodes": [ + 2991742391, + 2991742392 + ], + "geometry": [ + { "lat": 40.7295147, "lon": -73.9503160 }, + { "lat": 40.7294283, "lon": -73.9505869 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 295447853, + "bounds": { + "minlat": 40.7296092, + "minlon": -73.9510343, + "maxlat": 40.7298551, + "maxlon": -73.9506915 + }, + "nodes": [ + 2991742389, + 2991742402, + 8097222284, + 2991742403 + ], + "geometry": [ + { "lat": 40.7296092, "lon": -73.9506915 }, + { "lat": 40.7298551, "lon": -73.9508323 }, + { "lat": 40.7298156, "lon": -73.9509453 }, + { "lat": 40.7297871, "lon": -73.9510343 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 295447857, + "bounds": { + "minlat": 40.7291918, + "minlon": -73.9506915, + "maxlat": 40.7297654, + "maxlon": -73.9502074 + }, + "nodes": [ + 9785883935, + 2991742392, + 2991742389, + 7725555865, + 8097222286, + 2991742390 + ], + "geometry": [ + { "lat": 40.7291918, "lon": -73.9504734 }, + { "lat": 40.7294283, "lon": -73.9505869 }, + { "lat": 40.7296092, "lon": -73.9506915 }, + { "lat": 40.7297366, "lon": -73.9502948 }, + { "lat": 40.7297450, "lon": -73.9502694 }, + { "lat": 40.7297654, "lon": -73.9502074 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 295447860, + "bounds": { + "minlat": 40.7287789, + "minlon": -73.9490916, + "maxlat": 40.7289697, + "maxlon": -73.9487709 + }, + "nodes": [ + 2991742412, + 2991742413, + 2991742414, + 2991742415, + 2991742411, + 9788947206, + 2991742416 + ], + "geometry": [ + { "lat": 40.7288683, "lon": -73.9490916 }, + { "lat": 40.7287789, "lon": -73.9490379 }, + { "lat": 40.7288338, "lon": -73.9488609 }, + { "lat": 40.7289273, "lon": -73.9489118 }, + { "lat": 40.7289426, "lon": -73.9488580 }, + { "lat": 40.7289486, "lon": -73.9488386 }, + { "lat": 40.7289697, "lon": -73.9487709 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 295447864, + "bounds": { + "minlat": 40.7255151, + "minlon": -73.9488678, + "maxlat": 40.7260369, + "maxlon": -73.9484451 + }, + "nodes": [ + 2991742422, + 2991742421, + 2991742425, + 2991742432, + 2991742426, + 2991742433, + 2991742420, + 2991742419, + 2991742434, + 2991742424, + 2991742435, + 2991742423, + 2991742436, + 2991742418, + 9788947095, + 2991742417 + ], + "geometry": [ + { "lat": 40.7259951, "lon": -73.9488678 }, + { "lat": 40.7260196, "lon": -73.9487898 }, + { "lat": 40.7260358, "lon": -73.9487335 }, + { "lat": 40.7260369, "lon": -73.9487093 }, + { "lat": 40.7260330, "lon": -73.9486899 }, + { "lat": 40.7260262, "lon": -73.9486772 }, + { "lat": 40.7260043, "lon": -73.9486611 }, + { "lat": 40.7256293, "lon": -73.9484465 }, + { "lat": 40.7256105, "lon": -73.9484451 }, + { "lat": 40.7255897, "lon": -73.9484492 }, + { "lat": 40.7255759, "lon": -73.9484562 }, + { "lat": 40.7255625, "lon": -73.9484666 }, + { "lat": 40.7255531, "lon": -73.9484860 }, + { "lat": 40.7255439, "lon": -73.9485082 }, + { "lat": 40.7255412, "lon": -73.9485149 }, + { "lat": 40.7255151, "lon": -73.9485988 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 295524685, + "bounds": { + "minlat": 40.7683632, + "minlon": -73.9239970, + "maxlat": 40.7684595, + "maxlon": -73.9237843 + }, + "nodes": [ + 2457398818, + 2992565348 + ], + "geometry": [ + { "lat": 40.7684595, "lon": -73.9239970 }, + { "lat": 40.7683632, "lon": -73.9237843 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 295524693, + "bounds": { + "minlat": 40.7684595, + "minlon": -73.9240675, + "maxlat": 40.7684906, + "maxlon": -73.9239970 + }, + "nodes": [ + 2457398818, + 6452996024, + 2457398820 + ], + "geometry": [ + { "lat": 40.7684595, "lon": -73.9239970 }, + { "lat": 40.7684658, "lon": -73.9240114 }, + { "lat": 40.7684906, "lon": -73.9240675 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 295524696, + "bounds": { + "minlat": 40.7688015, + "minlon": -73.9240773, + "maxlat": 40.7689244, + "maxlon": -73.9238117 + }, + "nodes": [ + 2992565365, + 6452985320, + 2992565366 + ], + "geometry": [ + { "lat": 40.7689244, "lon": -73.9240773 }, + { "lat": 40.7688367, "lon": -73.9238879 }, + { "lat": 40.7688015, "lon": -73.9238117 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 295869423, + "bounds": { + "minlat": 40.7188373, + "minlon": -73.9076240, + "maxlat": 40.7191791, + "maxlon": -73.9070873 + }, + "nodes": [ + 597676800, + 11392563458, + 2996303580 + ], + "geometry": [ + { "lat": 40.7188373, "lon": -73.9076240 }, + { "lat": 40.7190098, "lon": -73.9073191 }, + { "lat": 40.7191791, "lon": -73.9070873 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Flushing Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 295869440, + "bounds": { + "minlat": 40.7151364, + "minlon": -73.9131669, + "maxlat": 40.7153318, + "maxlon": -73.9127850 + }, + "nodes": [ + 9759984045, + 597676729 + ], + "geometry": [ + { "lat": 40.7151364, "lon": -73.9131669 }, + { "lat": 40.7153318, "lon": -73.9127850 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Flushing Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 295869444, + "bounds": { + "minlat": 40.7191791, + "minlon": -73.9070873, + "maxlat": 40.7210300, + "maxlon": -73.9040993 + }, + "nodes": [ + 42844498, + 10653103285, + 10949071787, + 7540154055, + 42881190, + 2089937878, + 2874808975, + 42862084, + 11004089417, + 42788746, + 42881185, + 2996303580 + ], + "geometry": [ + { "lat": 40.7210300, "lon": -73.9040993 }, + { "lat": 40.7209860, "lon": -73.9041698 }, + { "lat": 40.7209228, "lon": -73.9042709 }, + { "lat": 40.7207315, "lon": -73.9045804 }, + { "lat": 40.7206093, "lon": -73.9047779 }, + { "lat": 40.7205232, "lon": -73.9049173 }, + { "lat": 40.7202637, "lon": -73.9053370 }, + { "lat": 40.7201057, "lon": -73.9055924 }, + { "lat": 40.7199138, "lon": -73.9059028 }, + { "lat": 40.7197757, "lon": -73.9061261 }, + { "lat": 40.7193343, "lon": -73.9068377 }, + { "lat": 40.7191791, "lon": -73.9070873 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 295869450, + "bounds": { + "minlat": 40.7164619, + "minlon": -73.9114059, + "maxlat": 40.7184462, + "maxlon": -73.9083288 + }, + "nodes": [ + 11352022279, + 597676971, + 2996303590, + 597676973, + 597676976, + 2996303676, + 2996303773, + 2996303312, + 597676978, + 2996303698, + 2996303645 + ], + "geometry": [ + { "lat": 40.7164619, "lon": -73.9114059 }, + { "lat": 40.7165458, "lon": -73.9113210 }, + { "lat": 40.7167160, "lon": -73.9111385 }, + { "lat": 40.7169063, "lon": -73.9109151 }, + { "lat": 40.7171952, "lon": -73.9105818 }, + { "lat": 40.7172906, "lon": -73.9104633 }, + { "lat": 40.7173719, "lon": -73.9103442 }, + { "lat": 40.7175308, "lon": -73.9100528 }, + { "lat": 40.7178283, "lon": -73.9094742 }, + { "lat": 40.7182930, "lon": -73.9086107 }, + { "lat": 40.7184462, "lon": -73.9083288 } + ], + "tags": { + "cutting": "yes", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Flushing Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 295869453, + "bounds": { + "minlat": 40.7190609, + "minlon": -73.9073672, + "maxlat": 40.7191791, + "maxlon": -73.9070873 + }, + "nodes": [ + 2996303580, + 2996303620 + ], + "geometry": [ + { "lat": 40.7191791, "lon": -73.9070873 }, + { "lat": 40.7190609, "lon": -73.9073672 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Flushing Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 295869459, + "bounds": { + "minlat": 40.7164855, + "minlon": -73.9115058, + "maxlat": 40.7185232, + "maxlon": -73.9084075 + }, + "nodes": [ + 2996303759, + 2996303739, + 2996303549, + 2996303556, + 2996303765, + 2996303760, + 2996303286, + 2996303745, + 2996303276, + 2996303322, + 11352022277 + ], + "geometry": [ + { "lat": 40.7185232, "lon": -73.9084075 }, + { "lat": 40.7184081, "lon": -73.9085967 }, + { "lat": 40.7181682, "lon": -73.9090125 }, + { "lat": 40.7175908, "lon": -73.9100961 }, + { "lat": 40.7174424, "lon": -73.9103670 }, + { "lat": 40.7173550, "lon": -73.9105011 }, + { "lat": 40.7172519, "lon": -73.9106357 }, + { "lat": 40.7169016, "lon": -73.9110429 }, + { "lat": 40.7167166, "lon": -73.9112548 }, + { "lat": 40.7165418, "lon": -73.9114560 }, + { "lat": 40.7164855, "lon": -73.9115058 } + ], + "tags": { + "cutting": "yes", + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Flushing Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 295869460, + "bounds": { + "minlat": 40.7153281, + "minlon": -73.9129768, + "maxlat": 40.7155253, + "maxlon": -73.9125423 + }, + "nodes": [ + 2996303601, + 2996303281, + 2996303547 + ], + "geometry": [ + { "lat": 40.7155253, "lon": -73.9125423 }, + { "lat": 40.7154237, "lon": -73.9127756 }, + { "lat": 40.7153281, "lon": -73.9129768 } + ], + "tags": { + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Flushing Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 295948219, + "bounds": { + "minlat": 40.7076202, + "minlon": -73.9385324, + "maxlat": 40.7080226, + "maxlon": -73.9365391 + }, + "nodes": [ + 2997098283, + 9755371972, + 2997098298, + 13455624709, + 13455624708, + 2997098299, + 2997098223, + 2997098215, + 2997098417, + 2997098183, + 2997098738, + 2997098233, + 2997098776, + 2997098707, + 2997098448, + 2997098708, + 2997098474, + 2997098460, + 2997098784 + ], + "geometry": [ + { "lat": 40.7077211, "lon": -73.9385324 }, + { "lat": 40.7077230, "lon": -73.9384662 }, + { "lat": 40.7077238, "lon": -73.9384416 }, + { "lat": 40.7077247, "lon": -73.9384208 }, + { "lat": 40.7076653, "lon": -73.9383886 }, + { "lat": 40.7076551, "lon": -73.9382497 }, + { "lat": 40.7076607, "lon": -73.9381484 }, + { "lat": 40.7076561, "lon": -73.9380841 }, + { "lat": 40.7076551, "lon": -73.9380311 }, + { "lat": 40.7076506, "lon": -73.9379929 }, + { "lat": 40.7076241, "lon": -73.9379446 }, + { "lat": 40.7076202, "lon": -73.9378781 }, + { "lat": 40.7076526, "lon": -73.9377408 }, + { "lat": 40.7077420, "lon": -73.9373599 }, + { "lat": 40.7078378, "lon": -73.9370564 }, + { "lat": 40.7078762, "lon": -73.9370085 }, + { "lat": 40.7079149, "lon": -73.9369441 }, + { "lat": 40.7079864, "lon": -73.9366752 }, + { "lat": 40.7080226, "lon": -73.9365391 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 295948231, + "bounds": { + "minlat": 40.7080252, + "minlon": -73.9378997, + "maxlat": 40.7080502, + "maxlon": -73.9376878 + }, + "nodes": [ + 2997098731, + 2997098841 + ], + "geometry": [ + { "lat": 40.7080502, "lon": -73.9376878 }, + { "lat": 40.7080252, "lon": -73.9378997 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 295948233, + "bounds": { + "minlat": 40.7072762, + "minlon": -73.9378210, + "maxlat": 40.7078378, + "maxlon": -73.9369978 + }, + "nodes": [ + 2997098814, + 2997098316, + 2997098529, + 2997098588, + 2997098650, + 2997098587, + 2997098859, + 2997098345, + 2997098311, + 2997098598, + 2997098448 + ], + "geometry": [ + { "lat": 40.7072762, "lon": -73.9378210 }, + { "lat": 40.7073252, "lon": -73.9377247 }, + { "lat": 40.7073903, "lon": -73.9374913 }, + { "lat": 40.7074391, "lon": -73.9373116 }, + { "lat": 40.7074818, "lon": -73.9371641 }, + { "lat": 40.7075164, "lon": -73.9371078 }, + { "lat": 40.7075570, "lon": -73.9370622 }, + { "lat": 40.7076282, "lon": -73.9370166 }, + { "lat": 40.7076953, "lon": -73.9369978 }, + { "lat": 40.7077803, "lon": -73.9370201 }, + { "lat": 40.7078378, "lon": -73.9370564 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 295948295, + "bounds": { + "minlat": 40.7071021, + "minlon": -73.9378936, + "maxlat": 40.7083012, + "maxlon": -73.9356808 + }, + "nodes": [ + 2997098647, + 9755371961, + 2997098219, + 2997098814, + 2997098771, + 2997098797, + 2997098351, + 2997098233, + 2997098730, + 2997098860, + 2997098315, + 5174882131, + 2997098858, + 2997098761, + 2997098752, + 2997098265, + 2997098862, + 2997098319, + 2997098188, + 2997098270, + 2997098566, + 2997098208, + 2997098327, + 2997098214, + 2997098704, + 2997098753, + 2997098778, + 2997098609, + 2997098784, + 2997098270 + ], + "geometry": [ + { "lat": 40.7071021, "lon": -73.9377921 }, + { "lat": 40.7071744, "lon": -73.9378041 }, + { "lat": 40.7071873, "lon": -73.9378062 }, + { "lat": 40.7072762, "lon": -73.9378210 }, + { "lat": 40.7073409, "lon": -73.9378340 }, + { "lat": 40.7075023, "lon": -73.9378895 }, + { "lat": 40.7075774, "lon": -73.9378936 }, + { "lat": 40.7076202, "lon": -73.9378781 }, + { "lat": 40.7076587, "lon": -73.9378641 }, + { "lat": 40.7077563, "lon": -73.9377998 }, + { "lat": 40.7078864, "lon": -73.9377086 }, + { "lat": 40.7079255, "lon": -73.9376496 }, + { "lat": 40.7079576, "lon": -73.9376013 }, + { "lat": 40.7079860, "lon": -73.9374484 }, + { "lat": 40.7080003, "lon": -73.9373062 }, + { "lat": 40.7080186, "lon": -73.9371882 }, + { "lat": 40.7080633, "lon": -73.9370166 }, + { "lat": 40.7081202, "lon": -73.9368234 }, + { "lat": 40.7081670, "lon": -73.9366625 }, + { "lat": 40.7081934, "lon": -73.9365928 }, + { "lat": 40.7082199, "lon": -73.9365150 }, + { "lat": 40.7082402, "lon": -73.9364211 }, + { "lat": 40.7082646, "lon": -73.9361690 }, + { "lat": 40.7083012, "lon": -73.9356942 }, + { "lat": 40.7081304, "lon": -73.9356808 }, + { "lat": 40.7080836, "lon": -73.9360456 }, + { "lat": 40.7080633, "lon": -73.9363272 }, + { "lat": 40.7080511, "lon": -73.9364211 }, + { "lat": 40.7080226, "lon": -73.9365391 }, + { "lat": 40.7081934, "lon": -73.9365928 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 295999078, + "bounds": { + "minlat": 40.7972636, + "minlon": -73.9731448, + "maxlat": 40.7985815, + "maxlon": -73.9700162 + }, + "nodes": [ + 42429557, + 10169443475, + 9916138293, + 42431107, + 9916138294, + 10170980703, + 42428725 + ], + "geometry": [ + { "lat": 40.7985815, "lon": -73.9731448 }, + { "lat": 40.7985639, "lon": -73.9731029 }, + { "lat": 40.7978804, "lon": -73.9714739 }, + { "lat": 40.7978263, "lon": -73.9713433 }, + { "lat": 40.7977708, "lon": -73.9712091 }, + { "lat": 40.7973083, "lon": -73.9701215 }, + { "lat": 40.7972636, "lon": -73.9700162 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 100th Street", + "name:ru": "Западная 100-я стрит", + "name_1": "West 100 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 296199836, + "bounds": { + "minlat": 40.7445526, + "minlon": -73.9596623, + "maxlat": 40.7452159, + "maxlon": -73.9586236 + }, + "nodes": [ + 2618764011, + 2408209170, + 2408209168, + 2408209166, + 2408209164, + 2408209162, + 2408209160, + 2408209158, + 277127992, + 277127993, + 2408209156, + 2408209155, + 2408209153, + 2408209151, + 2408209148, + 277127994, + 2618764009, + 277125548, + 2618764012, + 2618764011 + ], + "geometry": [ + { "lat": 40.7445547, "lon": -73.9587788 }, + { "lat": 40.7446347, "lon": -73.9592008 }, + { "lat": 40.7445526, "lon": -73.9592260 }, + { "lat": 40.7445852, "lon": -73.9593922 }, + { "lat": 40.7446111, "lon": -73.9594442 }, + { "lat": 40.7446470, "lon": -73.9594620 }, + { "lat": 40.7447021, "lon": -73.9594397 }, + { "lat": 40.7447145, "lon": -73.9593685 }, + { "lat": 40.7446335, "lon": -73.9588773 }, + { "lat": 40.7449641, "lon": -73.9587823 }, + { "lat": 40.7451428, "lon": -73.9596386 }, + { "lat": 40.7451676, "lon": -73.9596623 }, + { "lat": 40.7452035, "lon": -73.9596490 }, + { "lat": 40.7452159, "lon": -73.9595970 }, + { "lat": 40.7451181, "lon": -73.9590762 }, + { "lat": 40.7451001, "lon": -73.9590762 }, + { "lat": 40.7450203, "lon": -73.9586236 }, + { "lat": 40.7449768, "lon": -73.9586381 }, + { "lat": 40.7445790, "lon": -73.9587707 }, + { "lat": 40.7445547, "lon": -73.9587788 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "man_made": "pier" + } +}, +{ + "type": "way", + "id": 297818458, + "bounds": { + "minlat": 40.7034363, + "minlon": -73.9177411, + "maxlat": 40.7069378, + "maxlon": -73.9118086 + }, + "nodes": [ + 42828281, + 9592286292, + 5429415112, + 8805601716, + 42907463, + 9592286300, + 5429417624, + 7153297694, + 9592286299, + 42907469, + 9592286298, + 13006238214, + 9761722057, + 42907474, + 9761722059, + 9761722071, + 42888324, + 9761722072, + 9761722086, + 42814480, + 9761722088, + 9761722101, + 42876049, + 9761722103, + 9761722140, + 3325564427, + 9761722142, + 9761722155, + 3325564447 + ], + "geometry": [ + { "lat": 40.7069378, "lon": -73.9177411 }, + { "lat": 40.7069016, "lon": -73.9176796 }, + { "lat": 40.7067203, "lon": -73.9173715 }, + { "lat": 40.7065438, "lon": -73.9170734 }, + { "lat": 40.7064992, "lon": -73.9169955 }, + { "lat": 40.7064632, "lon": -73.9169382 }, + { "lat": 40.7062944, "lon": -73.9166475 }, + { "lat": 40.7062742, "lon": -73.9166132 }, + { "lat": 40.7061057, "lon": -73.9163274 }, + { "lat": 40.7060615, "lon": -73.9162516 }, + { "lat": 40.7060316, "lon": -73.9161992 }, + { "lat": 40.7058551, "lon": -73.9159064 }, + { "lat": 40.7056701, "lon": -73.9155798 }, + { "lat": 40.7056314, "lon": -73.9155134 }, + { "lat": 40.7055977, "lon": -73.9154568 }, + { "lat": 40.7052311, "lon": -73.9148417 }, + { "lat": 40.7051871, "lon": -73.9147674 }, + { "lat": 40.7051553, "lon": -73.9147140 }, + { "lat": 40.7047937, "lon": -73.9141062 }, + { "lat": 40.7047557, "lon": -73.9140425 }, + { "lat": 40.7047186, "lon": -73.9139794 }, + { "lat": 40.7043567, "lon": -73.9133649 }, + { "lat": 40.7043207, "lon": -73.9133041 }, + { "lat": 40.7042783, "lon": -73.9132325 }, + { "lat": 40.7039170, "lon": -73.9126223 }, + { "lat": 40.7038774, "lon": -73.9125553 }, + { "lat": 40.7038390, "lon": -73.9124903 }, + { "lat": 40.7034788, "lon": -73.9118805 }, + { "lat": 40.7034363, "lon": -73.9118086 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Cypress Avenue", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 297818459, + "bounds": { + "minlat": 40.7069378, + "minlon": -73.9184815, + "maxlat": 40.7073819, + "maxlon": -73.9177411 + }, + "nodes": [ + 3325564425, + 5429415097, + 10686521698, + 5429415099, + 5429415100, + 9592286293, + 42828281 + ], + "geometry": [ + { "lat": 40.7073819, "lon": -73.9184815 }, + { "lat": 40.7073436, "lon": -73.9184148 }, + { "lat": 40.7073205, "lon": -73.9183747 }, + { "lat": 40.7071595, "lon": -73.9181085 }, + { "lat": 40.7071452, "lon": -73.9180841 }, + { "lat": 40.7069806, "lon": -73.9178119 }, + { "lat": 40.7069378, "lon": -73.9177411 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Cypress Avenue", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 297818460, + "bounds": { + "minlat": 40.7069378, + "minlon": -73.9177411, + "maxlat": 40.7076800, + "maxlon": -73.9169880 + }, + "nodes": [ + 42828281, + 5429415114, + 10693892833, + 42828283 + ], + "geometry": [ + { "lat": 40.7069378, "lon": -73.9177411 }, + { "lat": 40.7069940, "lon": -73.9176835 }, + { "lat": 40.7070265, "lon": -73.9176506 }, + { "lat": 40.7076800, "lon": -73.9169880 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Hart Street", + "name:etymology:wikidata": "Q1367952", + "sidewalk": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 298133562, + "bounds": { + "minlat": 40.7690300, + "minlon": -73.9235183, + "maxlat": 40.7691580, + "maxlon": -73.9232344 + }, + "nodes": [ + 3020369544, + 6452996022, + 3020369545 + ], + "geometry": [ + { "lat": 40.7690300, "lon": -73.9232344 }, + { "lat": 40.7691306, "lon": -73.9234575 }, + { "lat": 40.7691580, "lon": -73.9235183 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 298133564, + "bounds": { + "minlat": 40.7689909, + "minlon": -73.9232344, + "maxlat": 40.7690300, + "maxlon": -73.9231465 + }, + "nodes": [ + 3020369544, + 3020369546 + ], + "geometry": [ + { "lat": 40.7690300, "lon": -73.9232344 }, + { "lat": 40.7689909, "lon": -73.9231465 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 298133572, + "bounds": { + "minlat": 40.7689183, + "minlon": -73.9239807, + "maxlat": 40.7690393, + "maxlon": -73.9237155 + }, + "nodes": [ + 3020369548, + 6452985321, + 3020369549 + ], + "geometry": [ + { "lat": 40.7689183, "lon": -73.9237155 }, + { "lat": 40.7689536, "lon": -73.9237929 }, + { "lat": 40.7690393, "lon": -73.9239807 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 298133574, + "bounds": { + "minlat": 40.7687731, + "minlon": -73.9238011, + "maxlat": 40.7688143, + "maxlon": -73.9237135 + }, + "nodes": [ + 2457398797, + 6452996023, + 2457398799 + ], + "geometry": [ + { "lat": 40.7687731, "lon": -73.9237135 }, + { "lat": 40.7687872, "lon": -73.9237435 }, + { "lat": 40.7688143, "lon": -73.9238011 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 298133578, + "bounds": { + "minlat": 40.7690393, + "minlon": -73.9240330, + "maxlat": 40.7690625, + "maxlon": -73.9239807 + }, + "nodes": [ + 3020369549, + 3020369550 + ], + "geometry": [ + { "lat": 40.7690393, "lon": -73.9239807 }, + { "lat": 40.7690625, "lon": -73.9240330 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 298133582, + "bounds": { + "minlat": 40.7701559, + "minlon": -73.9226861, + "maxlat": 40.7703215, + "maxlon": -73.9224837 + }, + "nodes": [ + 3020369554, + 3020369555 + ], + "geometry": [ + { "lat": 40.7703215, "lon": -73.9224837 }, + { "lat": 40.7701559, "lon": -73.9226861 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 298133584, + "bounds": { + "minlat": 40.7698510, + "minlon": -73.9230305, + "maxlat": 40.7700158, + "maxlon": -73.9228284 + }, + "nodes": [ + 3020369556, + 6452995004, + 3020369557, + 3020369558, + 3020369559, + 3020369560, + 3020369561, + 3020369562, + 6452995005, + 42872073 + ], + "geometry": [ + { "lat": 40.7699206, "lon": -73.9230305 }, + { "lat": 40.7699822, "lon": -73.9229604 }, + { "lat": 40.7700016, "lon": -73.9229383 }, + { "lat": 40.7700158, "lon": -73.9229021 }, + { "lat": 40.7700077, "lon": -73.9228686 }, + { "lat": 40.7699894, "lon": -73.9228431 }, + { "lat": 40.7699731, "lon": -73.9228284 }, + { "lat": 40.7699518, "lon": -73.9228284 }, + { "lat": 40.7699102, "lon": -73.9228778 }, + { "lat": 40.7698510, "lon": -73.9229480 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 298133587, + "bounds": { + "minlat": 40.7700077, + "minlon": -73.9228686, + "maxlat": 40.7700323, + "maxlon": -73.9228373 + }, + "nodes": [ + 2846910333, + 3020369559 + ], + "geometry": [ + { "lat": 40.7700323, "lon": -73.9228373 }, + { "lat": 40.7700077, "lon": -73.9228686 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 298133589, + "bounds": { + "minlat": 40.7700323, + "minlon": -73.9228373, + "maxlat": 40.7701559, + "maxlon": -73.9226861 + }, + "nodes": [ + 2846910333, + 3020369555 + ], + "geometry": [ + { "lat": 40.7700323, "lon": -73.9228373 }, + { "lat": 40.7701559, "lon": -73.9226861 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 298413420, + "bounds": { + "minlat": 40.8034574, + "minlon": -73.9444506, + "maxlat": 40.8035648, + "maxlon": -73.9443085 + }, + "nodes": [ + 3023173452, + 3023173453, + 3023173454, + 3023173455, + 3023173456, + 3023173457, + 3023173433, + 3023173458, + 3023173442, + 3023173443, + 3023173434, + 3023173446, + 3023173447, + 3023173448, + 3023173449, + 3023173450, + 3023173451, + 3023173444, + 3023173445, + 3023173452 + ], + "geometry": [ + { "lat": 40.8034710, "lon": -73.9443317 }, + { "lat": 40.8034841, "lon": -73.9443177 }, + { "lat": 40.8034999, "lon": -73.9443097 }, + { "lat": 40.8035167, "lon": -73.9443085 }, + { "lat": 40.8035331, "lon": -73.9443143 }, + { "lat": 40.8035472, "lon": -73.9443265 }, + { "lat": 40.8035578, "lon": -73.9443438 }, + { "lat": 40.8035639, "lon": -73.9443646 }, + { "lat": 40.8035648, "lon": -73.9443869 }, + { "lat": 40.8035596, "lon": -73.9444107 }, + { "lat": 40.8035492, "lon": -73.9444296 }, + { "lat": 40.8035330, "lon": -73.9444446 }, + { "lat": 40.8035149, "lon": -73.9444506 }, + { "lat": 40.8034962, "lon": -73.9444480 }, + { "lat": 40.8034794, "lon": -73.9444371 }, + { "lat": 40.8034663, "lon": -73.9444193 }, + { "lat": 40.8034587, "lon": -73.9443967 }, + { "lat": 40.8034574, "lon": -73.9443720 }, + { "lat": 40.8034618, "lon": -73.9443504 }, + { "lat": 40.8034710, "lon": -73.9443317 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 298413421, + "bounds": { + "minlat": 40.8035377, + "minlon": -73.9436974, + "maxlat": 40.8037020, + "maxlon": -73.9434494 + }, + "nodes": [ + 3023173470, + 3023173471, + 3023173472, + 3023173473, + 3023173124, + 3023173459, + 3023173460, + 3023173463, + 3023173464, + 3023173465, + 3023173466, + 3023173467, + 3023173468, + 3023173469, + 3023173461, + 3023173125, + 3023173462, + 3023173470 + ], + "geometry": [ + { "lat": 40.8035540, "lon": -73.9436732 }, + { "lat": 40.8035631, "lon": -73.9436974 }, + { "lat": 40.8036951, "lon": -73.9435901 }, + { "lat": 40.8037020, "lon": -73.9435524 }, + { "lat": 40.8037010, "lon": -73.9435243 }, + { "lat": 40.8036932, "lon": -73.9434962 }, + { "lat": 40.8036776, "lon": -73.9434714 }, + { "lat": 40.8036566, "lon": -73.9434552 }, + { "lat": 40.8036325, "lon": -73.9434494 }, + { "lat": 40.8036085, "lon": -73.9434548 }, + { "lat": 40.8035873, "lon": -73.9434708 }, + { "lat": 40.8035715, "lon": -73.9434954 }, + { "lat": 40.8035630, "lon": -73.9435257 }, + { "lat": 40.8035629, "lon": -73.9435579 }, + { "lat": 40.8035711, "lon": -73.9435883 }, + { "lat": 40.8035535, "lon": -73.9436020 }, + { "lat": 40.8035377, "lon": -73.9436142 }, + { "lat": 40.8035540, "lon": -73.9436732 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 298413422, + "bounds": { + "minlat": 40.8035611, + "minlon": -73.9434610, + "maxlat": 40.8036064, + "maxlon": -73.9434023 + }, + "nodes": [ + 3023173474, + 3023173475, + 3023173476, + 3023173477, + 3023173474 + ], + "geometry": [ + { "lat": 40.8036064, "lon": -73.9434288 }, + { "lat": 40.8035875, "lon": -73.9434023 }, + { "lat": 40.8035611, "lon": -73.9434332 }, + { "lat": 40.8035767, "lon": -73.9434610 }, + { "lat": 40.8036064, "lon": -73.9434288 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 298413428, + "bounds": { + "minlat": 40.8042372, + "minlon": -73.9438002, + "maxlat": 40.8045965, + "maxlon": -73.9431997 + }, + "nodes": [ + 3023173499, + 3023173500, + 3023173501, + 3023173502, + 3023173485, + 3023173486, + 3023173488, + 3023173489, + 3023173490, + 3023173491, + 3023173510, + 3023173524, + 3023173523, + 3023173511, + 3023173512, + 3023173492, + 3023173493, + 3023173494, + 3023173495, + 3023173484, + 3023173487, + 3023173496, + 3023173497, + 3023173498, + 3023173503, + 3023173504, + 3023173508, + 3023173507, + 3023173509, + 3023173505, + 3023173506, + 3023173499 + ], + "geometry": [ + { "lat": 40.8045902, "lon": -73.9436042 }, + { "lat": 40.8045958, "lon": -73.9436561 }, + { "lat": 40.8045875, "lon": -73.9437073 }, + { "lat": 40.8045665, "lon": -73.9437518 }, + { "lat": 40.8045352, "lon": -73.9437840 }, + { "lat": 40.8045015, "lon": -73.9437994 }, + { "lat": 40.8044657, "lon": -73.9438002 }, + { "lat": 40.8044316, "lon": -73.9437864 }, + { "lat": 40.8044023, "lon": -73.9437594 }, + { "lat": 40.8043808, "lon": -73.9437217 }, + { "lat": 40.8043549, "lon": -73.9437403 }, + { "lat": 40.8043493, "lon": -73.9437250 }, + { "lat": 40.8042456, "lon": -73.9434624 }, + { "lat": 40.8042372, "lon": -73.9434372 }, + { "lat": 40.8042534, "lon": -73.9434224 }, + { "lat": 40.8042392, "lon": -73.9433753 }, + { "lat": 40.8042386, "lon": -73.9433281 }, + { "lat": 40.8042490, "lon": -73.9432829 }, + { "lat": 40.8042695, "lon": -73.9432443 }, + { "lat": 40.8042980, "lon": -73.9432159 }, + { "lat": 40.8043358, "lon": -73.9431997 }, + { "lat": 40.8043754, "lon": -73.9432015 }, + { "lat": 40.8044122, "lon": -73.9432211 }, + { "lat": 40.8044417, "lon": -73.9432562 }, + { "lat": 40.8044575, "lon": -73.9432977 }, + { "lat": 40.8044839, "lon": -73.9432763 }, + { "lat": 40.8045285, "lon": -73.9433299 }, + { "lat": 40.8045630, "lon": -73.9433956 }, + { "lat": 40.8045844, "lon": -73.9434707 }, + { "lat": 40.8045965, "lon": -73.9435485 }, + { "lat": 40.8045732, "lon": -73.9435700 }, + { "lat": 40.8045902, "lon": -73.9436042 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 298413429, + "bounds": { + "minlat": 40.8038610, + "minlon": -73.9439770, + "maxlat": 40.8043493, + "maxlon": -73.9434624 + }, + "nodes": [ + 3023173524, + 3023173638, + 3023173513, + 3023173514, + 3023173515, + 3023173516, + 3023173517, + 3023173518, + 3023173519, + 3023173520, + 3023173521, + 3023173522, + 3023173637, + 3023173525, + 3023173527, + 3023173530, + 3023173531, + 3023173634, + 3023173635, + 3023173636, + 3023173633, + 3023173532, + 3023173529, + 3023173528, + 3023173526, + 3023173523, + 3023173524 + ], + "geometry": [ + { "lat": 40.8043493, "lon": -73.9437250 }, + { "lat": 40.8040331, "lon": -73.9439430 }, + { "lat": 40.8039838, "lon": -73.9439770 }, + { "lat": 40.8039703, "lon": -73.9439428 }, + { "lat": 40.8039419, "lon": -73.9439624 }, + { "lat": 40.8039333, "lon": -73.9439408 }, + { "lat": 40.8039215, "lon": -73.9439490 }, + { "lat": 40.8038610, "lon": -73.9437955 }, + { "lat": 40.8038726, "lon": -73.9437875 }, + { "lat": 40.8038658, "lon": -73.9437703 }, + { "lat": 40.8038880, "lon": -73.9437550 }, + { "lat": 40.8038819, "lon": -73.9437215 }, + { "lat": 40.8039057, "lon": -73.9437045 }, + { "lat": 40.8040895, "lon": -73.9435732 }, + { "lat": 40.8040862, "lon": -73.9435885 }, + { "lat": 40.8040887, "lon": -73.9436040 }, + { "lat": 40.8040964, "lon": -73.9436162 }, + { "lat": 40.8041075, "lon": -73.9436223 }, + { "lat": 40.8041195, "lon": -73.9436208 }, + { "lat": 40.8041296, "lon": -73.9436122 }, + { "lat": 40.8041355, "lon": -73.9435984 }, + { "lat": 40.8041359, "lon": -73.9435825 }, + { "lat": 40.8041306, "lon": -73.9435683 }, + { "lat": 40.8041209, "lon": -73.9435589 }, + { "lat": 40.8041091, "lon": -73.9435565 }, + { "lat": 40.8042456, "lon": -73.9434624 }, + { "lat": 40.8043493, "lon": -73.9437250 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 298413437, + "bounds": { + "minlat": 40.8035419, + "minlon": -73.9430107, + "maxlat": 40.8044140, + "maxlon": -73.9422082 + }, + "nodes": [ + 3023173664, + 3023173672, + 3023173674, + 3023173270, + 3023173271, + 3023173272, + 3023173273, + 3023173665, + 3023173670, + 3023173671, + 3023173666, + 3023173667, + 3023173668, + 3023173669, + 3023173664 + ], + "geometry": [ + { "lat": 40.8044140, "lon": -73.9424358 }, + { "lat": 40.8042072, "lon": -73.9425876 }, + { "lat": 40.8039431, "lon": -73.9427816 }, + { "lat": 40.8036311, "lon": -73.9430107 }, + { "lat": 40.8036322, "lon": -73.9429383 }, + { "lat": 40.8036157, "lon": -73.9428872 }, + { "lat": 40.8035733, "lon": -73.9428243 }, + { "lat": 40.8035419, "lon": -73.9428015 }, + { "lat": 40.8038526, "lon": -73.9425786 }, + { "lat": 40.8041192, "lon": -73.9423872 }, + { "lat": 40.8043688, "lon": -73.9422082 }, + { "lat": 40.8043661, "lon": -73.9422611 }, + { "lat": 40.8043763, "lon": -73.9423388 }, + { "lat": 40.8043920, "lon": -73.9423926 }, + { "lat": 40.8044140, "lon": -73.9424358 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 298413441, + "bounds": { + "minlat": 40.8050238, + "minlon": -73.9420090, + "maxlat": 40.8052013, + "maxlon": -73.9417733 + }, + "nodes": [ + 3023173686, + 3023173687, + 3023173688, + 3023173689, + 3023173690, + 3023173691, + 3023173692, + 3023173693, + 3023173678, + 3023173676, + 3023173677, + 2328488036, + 3023173681, + 3023173695, + 3023173682, + 3023173683, + 3023173684, + 3023173685, + 3023173679, + 3023173680, + 3023173686 + ], + "geometry": [ + { "lat": 40.8050238, "lon": -73.9418744 }, + { "lat": 40.8050319, "lon": -73.9418389 }, + { "lat": 40.8050479, "lon": -73.9418085 }, + { "lat": 40.8050703, "lon": -73.9417862 }, + { "lat": 40.8050968, "lon": -73.9417740 }, + { "lat": 40.8051248, "lon": -73.9417733 }, + { "lat": 40.8051517, "lon": -73.9417840 }, + { "lat": 40.8051747, "lon": -73.9418052 }, + { "lat": 40.8051916, "lon": -73.9418348 }, + { "lat": 40.8052013, "lon": -73.9418738 }, + { "lat": 40.8052003, "lon": -73.9419150 }, + { "lat": 40.8051887, "lon": -73.9419531 }, + { "lat": 40.8051679, "lon": -73.9419838 }, + { "lat": 40.8051552, "lon": -73.9419927 }, + { "lat": 40.8051405, "lon": -73.9420031 }, + { "lat": 40.8051096, "lon": -73.9420090 }, + { "lat": 40.8050792, "lon": -73.9420005 }, + { "lat": 40.8050527, "lon": -73.9419788 }, + { "lat": 40.8050335, "lon": -73.9419464 }, + { "lat": 40.8050243, "lon": -73.9419114 }, + { "lat": 40.8050238, "lon": -73.9418744 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 298413444, + "bounds": { + "minlat": 40.8053366, + "minlon": -73.9433361, + "maxlat": 40.8057566, + "maxlon": -73.9424823 + }, + "nodes": [ + 3023173332, + 3023173696, + 3023173330, + 3023173697, + 3023173728, + 3023173698, + 3023173699, + 3023173706, + 3023173729, + 3023173705, + 3023173704, + 3023173703, + 3023173702, + 3023173731, + 3023173701, + 3023173700, + 3023173332 + ], + "geometry": [ + { "lat": 40.8054229, "lon": -73.9424823 }, + { "lat": 40.8053730, "lon": -73.9425172 }, + { "lat": 40.8053366, "lon": -73.9425427 }, + { "lat": 40.8056775, "lon": -73.9433361 }, + { "lat": 40.8056998, "lon": -73.9433194 }, + { "lat": 40.8057566, "lon": -73.9432768 }, + { "lat": 40.8056460, "lon": -73.9430170 }, + { "lat": 40.8057301, "lon": -73.9429480 }, + { "lat": 40.8057170, "lon": -73.9429172 }, + { "lat": 40.8056994, "lon": -73.9428757 }, + { "lat": 40.8056683, "lon": -73.9428990 }, + { "lat": 40.8056135, "lon": -73.9427689 }, + { "lat": 40.8056443, "lon": -73.9427457 }, + { "lat": 40.8056285, "lon": -73.9427086 }, + { "lat": 40.8056128, "lon": -73.9426714 }, + { "lat": 40.8055262, "lon": -73.9427354 }, + { "lat": 40.8054229, "lon": -73.9424823 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 298413445, + "bounds": { + "minlat": 40.8058634, + "minlon": -73.9440629, + "maxlat": 40.8060613, + "maxlon": -73.9438003 + }, + "nodes": [ + 3023173718, + 3023173719, + 3023173720, + 3023173721, + 3023173722, + 3023173723, + 3023173724, + 3023173725, + 3023173707, + 3023173708, + 3023173711, + 3023173712, + 3023173713, + 3023173714, + 3023173715, + 3023173716, + 3023173717, + 3023173709, + 3023173710, + 3023173718 + ], + "geometry": [ + { "lat": 40.8058634, "lon": -73.9439119 }, + { "lat": 40.8058727, "lon": -73.9438725 }, + { "lat": 40.8058907, "lon": -73.9438388 }, + { "lat": 40.8059158, "lon": -73.9438141 }, + { "lat": 40.8059454, "lon": -73.9438008 }, + { "lat": 40.8059767, "lon": -73.9438003 }, + { "lat": 40.8060065, "lon": -73.9438126 }, + { "lat": 40.8060320, "lon": -73.9438364 }, + { "lat": 40.8060507, "lon": -73.9438695 }, + { "lat": 40.8060613, "lon": -73.9439132 }, + { "lat": 40.8060599, "lon": -73.9439590 }, + { "lat": 40.8060468, "lon": -73.9440015 }, + { "lat": 40.8060234, "lon": -73.9440354 }, + { "lat": 40.8059927, "lon": -73.9440567 }, + { "lat": 40.8059583, "lon": -73.9440629 }, + { "lat": 40.8059244, "lon": -73.9440531 }, + { "lat": 40.8058950, "lon": -73.9440286 }, + { "lat": 40.8058738, "lon": -73.9439924 }, + { "lat": 40.8058638, "lon": -73.9439532 }, + { "lat": 40.8058634, "lon": -73.9439119 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 298417657, + "bounds": { + "minlat": 40.7710383, + "minlon": -73.9230630, + "maxlat": 40.7710779, + "maxlon": -73.9229588 + }, + "nodes": [ + 3023217479, + 6452905188, + 3023217480 + ], + "geometry": [ + { "lat": 40.7710779, "lon": -73.9230630 }, + { "lat": 40.7710483, "lon": -73.9229851 }, + { "lat": 40.7710383, "lon": -73.9229588 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 298604047, + "bounds": { + "minlat": 40.7716225, + "minlon": -73.9171993, + "maxlat": 40.7719069, + "maxlon": -73.9168238 + }, + "nodes": [ + 3024950349, + 3024950350, + 3024950351, + 3024950352, + 3024950353, + 3024950354, + 3024950355, + 3024950337, + 3024950338, + 3024950341, + 3024950342, + 3024950343, + 3024950344, + 3024950356, + 3024950345, + 3024950346, + 3024950347, + 3024950348, + 3024950339, + 3024950340, + 3024950349 + ], + "geometry": [ + { "lat": 40.7717586, "lon": -73.9168238 }, + { "lat": 40.7718031, "lon": -73.9168305 }, + { "lat": 40.7718438, "lon": -73.9168552 }, + { "lat": 40.7718766, "lon": -73.9168954 }, + { "lat": 40.7718982, "lon": -73.9169464 }, + { "lat": 40.7719069, "lon": -73.9170038 }, + { "lat": 40.7719019, "lon": -73.9170619 }, + { "lat": 40.7718835, "lon": -73.9171151 }, + { "lat": 40.7718536, "lon": -73.9171583 }, + { "lat": 40.7718152, "lon": -73.9171873 }, + { "lat": 40.7717718, "lon": -73.9171993 }, + { "lat": 40.7717278, "lon": -73.9171931 }, + { "lat": 40.7716873, "lon": -73.9171693 }, + { "lat": 40.7716586, "lon": -73.9171379 }, + { "lat": 40.7716319, "lon": -73.9170791 }, + { "lat": 40.7716225, "lon": -73.9170213 }, + { "lat": 40.7716273, "lon": -73.9169625 }, + { "lat": 40.7716456, "lon": -73.9169085 }, + { "lat": 40.7716758, "lon": -73.9168648 }, + { "lat": 40.7717147, "lon": -73.9168356 }, + { "lat": 40.7717586, "lon": -73.9168238 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "noname": "yes" + } +}, +{ + "type": "way", + "id": 298607597, + "bounds": { + "minlat": 40.7708051, + "minlon": -73.9169390, + "maxlat": 40.7710792, + "maxlon": -73.9166157 + }, + "nodes": [ + 3024982387, + 3024982388, + 3024982389, + 7784017500, + 2803634649 + ], + "geometry": [ + { "lat": 40.7708051, "lon": -73.9166587 }, + { "lat": 40.7708426, "lon": -73.9166157 }, + { "lat": 40.7709618, "lon": -73.9167787 }, + { "lat": 40.7709889, "lon": -73.9168163 }, + { "lat": 40.7710792, "lon": -73.9169390 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 298611914, + "bounds": { + "minlat": 40.7713251, + "minlon": -73.9161566, + "maxlat": 40.7716878, + "maxlon": -73.9156314 + }, + "nodes": [ + 3025003082, + 6852698185, + 7784017542, + 3025003083 + ], + "geometry": [ + { "lat": 40.7713251, "lon": -73.9156314 }, + { "lat": 40.7715194, "lon": -73.9159123 }, + { "lat": 40.7716103, "lon": -73.9160436 }, + { "lat": 40.7716878, "lon": -73.9161566 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 298611915, + "bounds": { + "minlat": 40.7707432, + "minlon": -73.9161823, + "maxlat": 40.7711087, + "maxlon": -73.9157306 + }, + "nodes": [ + 3025003084, + 42881052 + ], + "geometry": [ + { "lat": 40.7711087, "lon": -73.9157306 }, + { "lat": 40.7707432, "lon": -73.9161823 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "32nd Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 298611916, + "bounds": { + "minlat": 40.7712748, + "minlon": -73.9155120, + "maxlat": 40.7718676, + "maxlon": -73.9148014 + }, + "nodes": [ + 42818215, + 7784017486, + 5866672577, + 3025003085 + ], + "geometry": [ + { "lat": 40.7718676, "lon": -73.9148014 }, + { "lat": 40.7718138, "lon": -73.9148696 }, + { "lat": 40.7717931, "lon": -73.9148958 }, + { "lat": 40.7712748, "lon": -73.9155120 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "32nd Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 298611917, + "bounds": { + "minlat": 40.7700277, + "minlon": -73.9148014, + "maxlat": 40.7718676, + "maxlon": -73.9121721 + }, + "nodes": [ + 42818215, + 9776116445, + 9776116443, + 42818218, + 9776116444, + 9776116425, + 42818222, + 7659293844, + 7006826104, + 42818224, + 7659298992, + 7006826112, + 6406731385, + 42818227 + ], + "geometry": [ + { "lat": 40.7718676, "lon": -73.9148014 }, + { "lat": 40.7718422, "lon": -73.9147649 }, + { "lat": 40.7715732, "lon": -73.9143783 }, + { "lat": 40.7715230, "lon": -73.9143100 }, + { "lat": 40.7714787, "lon": -73.9142520 }, + { "lat": 40.7710672, "lon": -73.9136560 }, + { "lat": 40.7710278, "lon": -73.9135995 }, + { "lat": 40.7709804, "lon": -73.9135335 }, + { "lat": 40.7705644, "lon": -73.9129540 }, + { "lat": 40.7705210, "lon": -73.9128930 }, + { "lat": 40.7705099, "lon": -73.9128763 }, + { "lat": 40.7704752, "lon": -73.9128242 }, + { "lat": 40.7700709, "lon": -73.9122520 }, + { "lat": 40.7700277, "lon": -73.9121721 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "24th Avenue", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 298611918, + "bounds": { + "minlat": 40.7704363, + "minlon": -73.9165405, + "maxlat": 40.7707432, + "maxlon": -73.9161823 + }, + "nodes": [ + 42881052, + 7732086305, + 42905185 + ], + "geometry": [ + { "lat": 40.7707432, "lon": -73.9161823 }, + { "lat": 40.7705261, "lon": -73.9164414 }, + { "lat": 40.7704363, "lon": -73.9165405 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "32nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 298613444, + "bounds": { + "minlat": 40.7728683, + "minlon": -73.9204271, + "maxlat": 40.7743458, + "maxlon": -73.9185302 + }, + "nodes": [ + 3025036811, + 3025036812, + 7725475544, + 3025036813, + 7787345511, + 3025036815, + 6957887078, + 3025036814 + ], + "geometry": [ + { "lat": 40.7728683, "lon": -73.9198767 }, + { "lat": 40.7739649, "lon": -73.9185302 }, + { "lat": 40.7741225, "lon": -73.9187523 }, + { "lat": 40.7741610, "lon": -73.9188066 }, + { "lat": 40.7741981, "lon": -73.9188599 }, + { "lat": 40.7743458, "lon": -73.9190720 }, + { "lat": 40.7740773, "lon": -73.9194069 }, + { "lat": 40.7732543, "lon": -73.9204271 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 298613446, + "bounds": { + "minlat": 40.7733534, + "minlon": -73.9205683, + "maxlat": 40.7751297, + "maxlon": -73.9192155 + }, + "nodes": [ + 3025036819, + 7787345517, + 3025036823, + 3025036820, + 7787351796, + 3025036816, + 7787345584, + 3025036817, + 3025036818 + ], + "geometry": [ + { "lat": 40.7751297, "lon": -73.9201797 }, + { "lat": 40.7750998, "lon": -73.9201364 }, + { "lat": 40.7749445, "lon": -73.9199115 }, + { "lat": 40.7748436, "lon": -73.9197655 }, + { "lat": 40.7746919, "lon": -73.9195457 }, + { "lat": 40.7746452, "lon": -73.9194781 }, + { "lat": 40.7746168, "lon": -73.9194358 }, + { "lat": 40.7744688, "lon": -73.9192155 }, + { "lat": 40.7733534, "lon": -73.9205683 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 298613447, + "bounds": { + "minlat": 40.7737401, + "minlon": -73.9211171, + "maxlat": 40.7748436, + "maxlon": -73.9197655 + }, + "nodes": [ + 3025036820, + 3025036821 + ], + "geometry": [ + { "lat": 40.7748436, "lon": -73.9197655 }, + { "lat": 40.7737401, "lon": -73.9211171 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 298613448, + "bounds": { + "minlat": 40.7738374, + "minlon": -73.9212545, + "maxlat": 40.7749445, + "maxlon": -73.9199115 + }, + "nodes": [ + 3025036822, + 3025036823 + ], + "geometry": [ + { "lat": 40.7738374, "lon": -73.9212545 }, + { "lat": 40.7749445, "lon": -73.9199115 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 298613450, + "bounds": { + "minlat": 40.7742004, + "minlon": -73.9220100, + "maxlat": 40.7746038, + "maxlon": -73.9215249 + }, + "nodes": [ + 3025036825, + 7714984349, + 7787351790, + 3025036826 + ], + "geometry": [ + { "lat": 40.7746038, "lon": -73.9215249 }, + { "lat": 40.7742826, "lon": -73.9219036 }, + { "lat": 40.7742618, "lon": -73.9219281 }, + { "lat": 40.7742004, "lon": -73.9220100 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 298613451, + "bounds": { + "minlat": 40.7746476, + "minlon": -73.9214965, + "maxlat": 40.7748964, + "maxlon": -73.9211961 + }, + "nodes": [ + 3025036827, + 3025036829, + 3025036828 + ], + "geometry": [ + { "lat": 40.7748964, "lon": -73.9211961 }, + { "lat": 40.7747202, "lon": -73.9214088 }, + { "lat": 40.7746476, "lon": -73.9214965 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 298613452, + "bounds": { + "minlat": 40.7747202, + "minlon": -73.9216972, + "maxlat": 40.7749389, + "maxlon": -73.9214088 + }, + "nodes": [ + 3025036829, + 7726535705, + 3025036830 + ], + "geometry": [ + { "lat": 40.7747202, "lon": -73.9214088 }, + { "lat": 40.7749017, "lon": -73.9216547 }, + { "lat": 40.7749389, "lon": -73.9216972 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 298734351, + "bounds": { + "minlat": 40.7010207, + "minlon": -73.9908509, + "maxlat": 40.7011883, + "maxlon": -73.9906417 + }, + "nodes": [ + 7561173769, + 7561173766 + ], + "geometry": [ + { "lat": 40.7011883, "lon": -73.9908509 }, + { "lat": 40.7010207, "lon": -73.9906417 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "layer": "1", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right|right" + } +}, +{ + "type": "way", + "id": 298734352, + "bounds": { + "minlat": 40.7016011, + "minlon": -73.9912304, + "maxlat": 40.7017539, + "maxlon": -73.9910385 + }, + "nodes": [ + 3026465866, + 7561173773 + ], + "geometry": [ + { "lat": 40.7016011, "lon": -73.9910385 }, + { "lat": 40.7017539, "lon": -73.9912304 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 299598645, + "bounds": { + "minlat": 40.7876320, + "minlon": -73.9329967, + "maxlat": 40.7881714, + "maxlon": -73.9325678 + }, + "nodes": [ + 3036229804, + 3036229805, + 3036229806, + 3036229807, + 7734633940, + 3036229808 + ], + "geometry": [ + { "lat": 40.7881714, "lon": -73.9329793 }, + { "lat": 40.7881044, "lon": -73.9329967 }, + { "lat": 40.7880506, "lon": -73.9329927 }, + { "lat": 40.7879916, "lon": -73.9329806 }, + { "lat": 40.7877385, "lon": -73.9326865 }, + { "lat": 40.7876320, "lon": -73.9325678 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 299598647, + "bounds": { + "minlat": 40.7876850, + "minlon": -73.9319401, + "maxlat": 40.7883023, + "maxlon": -73.9314103 + }, + "nodes": [ + 3036229830, + 3036229427, + 3036229833 + ], + "geometry": [ + { "lat": 40.7876850, "lon": -73.9319401 }, + { "lat": 40.7881465, "lon": -73.9315435 }, + { "lat": 40.7883023, "lon": -73.9314103 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 299598649, + "bounds": { + "minlat": 40.7885247, + "minlon": -73.9315564, + "maxlat": 40.7904418, + "maxlon": -73.9297781 + }, + "nodes": [ + 13880778749, + 3036361238, + 13880778753, + 8745054530, + 3036361143, + 3036361142, + 8745054532, + 3036361140, + 3036361138, + 8745054528, + 3036361226, + 3036361137, + 3036361205, + 7734664104, + 3036229818, + 3036229848, + 3040306717, + 3036229814, + 3036229821, + 3036229820, + 3036229816, + 3036229815, + 3036229836, + 3036361136, + 3036229840, + 3036229841, + 3036229842, + 3036229843, + 3036229844, + 3036229845, + 3036229846, + 3036229847, + 3036229848 + ], + "geometry": [ + { "lat": 40.7904418, "lon": -73.9297781 }, + { "lat": 40.7904174, "lon": -73.9298250 }, + { "lat": 40.7903761, "lon": -73.9299794 }, + { "lat": 40.7903617, "lon": -73.9301781 }, + { "lat": 40.7903487, "lon": -73.9303427 }, + { "lat": 40.7903051, "lon": -73.9305277 }, + { "lat": 40.7902936, "lon": -73.9305557 }, + { "lat": 40.7902000, "lon": -73.9307833 }, + { "lat": 40.7899625, "lon": -73.9310224 }, + { "lat": 40.7898489, "lon": -73.9311082 }, + { "lat": 40.7896438, "lon": -73.9312665 }, + { "lat": 40.7895847, "lon": -73.9313180 }, + { "lat": 40.7893990, "lon": -73.9313807 }, + { "lat": 40.7893923, "lon": -73.9313837 }, + { "lat": 40.7893218, "lon": -73.9314156 }, + { "lat": 40.7892059, "lon": -73.9314573 }, + { "lat": 40.7891128, "lon": -73.9314909 }, + { "lat": 40.7890873, "lon": -73.9315001 }, + { "lat": 40.7890557, "lon": -73.9315072 }, + { "lat": 40.7889451, "lon": -73.9315322 }, + { "lat": 40.7888091, "lon": -73.9315524 }, + { "lat": 40.7885247, "lon": -73.9315564 }, + { "lat": 40.7887197, "lon": -73.9313364 }, + { "lat": 40.7888505, "lon": -73.9310196 }, + { "lat": 40.7889336, "lon": -73.9308184 }, + { "lat": 40.7889289, "lon": -73.9309730 }, + { "lat": 40.7889441, "lon": -73.9310897 }, + { "lat": 40.7889695, "lon": -73.9311876 }, + { "lat": 40.7889959, "lon": -73.9312680 }, + { "lat": 40.7890253, "lon": -73.9313270 }, + { "lat": 40.7890649, "lon": -73.9313807 }, + { "lat": 40.7891309, "lon": -73.9314317 }, + { "lat": 40.7892059, "lon": -73.9314573 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Rivers Edge Road" + } +}, +{ + "type": "way", + "id": 299606231, + "bounds": { + "minlat": 40.7896438, + "minlon": -73.9316097, + "maxlat": 40.7900518, + "maxlon": -73.9312665 + }, + "nodes": [ + 3036361236, + 3036229948, + 3036361235, + 3036361234, + 3036361233, + 3036361232, + 3036361231, + 3036361230, + 3036361229, + 3036361228, + 3036361227, + 3036229942, + 3036361226 + ], + "geometry": [ + { "lat": 40.7900518, "lon": -73.9314890 }, + { "lat": 40.7899620, "lon": -73.9315681 }, + { "lat": 40.7899411, "lon": -73.9315869 }, + { "lat": 40.7899035, "lon": -73.9316057 }, + { "lat": 40.7898751, "lon": -73.9316097 }, + { "lat": 40.7898477, "lon": -73.9316097 }, + { "lat": 40.7898254, "lon": -73.9316004 }, + { "lat": 40.7897919, "lon": -73.9315802 }, + { "lat": 40.7897665, "lon": -73.9315507 }, + { "lat": 40.7897401, "lon": -73.9315092 }, + { "lat": 40.7897167, "lon": -73.9314649 }, + { "lat": 40.7896665, "lon": -73.9313629 }, + { "lat": 40.7896438, "lon": -73.9312665 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 299606240, + "bounds": { + "minlat": 40.7875692, + "minlon": -73.9291260, + "maxlat": 40.7896253, + "maxlon": -73.9275295 + }, + "nodes": [ + 3036361484, + 3036361316, + 3036361399, + 3037067009, + 3037067008, + 7734664091, + 3036361317 + ], + "geometry": [ + { "lat": 40.7896253, "lon": -73.9275295 }, + { "lat": 40.7893248, "lon": -73.9276019 }, + { "lat": 40.7889252, "lon": -73.9279361 }, + { "lat": 40.7883682, "lon": -73.9284249 }, + { "lat": 40.7882094, "lon": -73.9285642 }, + { "lat": 40.7880312, "lon": -73.9287206 }, + { "lat": 40.7875692, "lon": -73.9291260 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Recovery Road" + } +}, +{ + "type": "way", + "id": 299606241, + "bounds": { + "minlat": 40.7875692, + "minlon": -73.9296249, + "maxlat": 40.7878088, + "maxlon": -73.9291260 + }, + "nodes": [ + 3036361317, + 3036361318 + ], + "geometry": [ + { "lat": 40.7875692, "lon": -73.9291260 }, + { "lat": 40.7878088, "lon": -73.9296249 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 299606246, + "bounds": { + "minlat": 40.7882850, + "minlon": -73.9301345, + "maxlat": 40.7886019, + "maxlon": -73.9298667 + }, + "nodes": [ + 7734664090, + 3036229377, + 9939158161, + 3036361335 + ], + "geometry": [ + { "lat": 40.7886019, "lon": -73.9298667 }, + { "lat": 40.7885127, "lon": -73.9299421 }, + { "lat": 40.7884382, "lon": -73.9300050 }, + { "lat": 40.7882850, "lon": -73.9301345 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 299606253, + "bounds": { + "minlat": 40.7889252, + "minlon": -73.9287854, + "maxlat": 40.7893461, + "maxlon": -73.9279361 + }, + "nodes": [ + 3036361399, + 5690608442, + 3037022164, + 3036361402 + ], + "geometry": [ + { "lat": 40.7889252, "lon": -73.9279361 }, + { "lat": 40.7889711, "lon": -73.9280286 }, + { "lat": 40.7893227, "lon": -73.9287383 }, + { "lat": 40.7893461, "lon": -73.9287854 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 299606285, + "bounds": { + "minlat": 40.7906985, + "minlon": -73.9296218, + "maxlat": 40.7909130, + "maxlon": -73.9291092 + }, + "nodes": [ + 3036361569, + 3036361570 + ], + "geometry": [ + { "lat": 40.7909130, "lon": -73.9296218 }, + { "lat": 40.7906985, "lon": -73.9291092 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 299606288, + "bounds": { + "minlat": 40.7906610, + "minlon": -73.9297251, + "maxlat": 40.7907887, + "maxlon": -73.9294365 + }, + "nodes": [ + 3036361568, + 3036361567 + ], + "geometry": [ + { "lat": 40.7906610, "lon": -73.9294365 }, + { "lat": 40.7907887, "lon": -73.9297251 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 299606289, + "bounds": { + "minlat": 40.7900917, + "minlon": -73.9296725, + "maxlat": 40.7901462, + "maxlon": -73.9292768 + }, + "nodes": [ + 7734664093, + 13247295923, + 3036361573 + ], + "geometry": [ + { "lat": 40.7900917, "lon": -73.9296725 }, + { "lat": 40.7901048, "lon": -73.9295776 }, + { "lat": 40.7901462, "lon": -73.9292768 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 299666253, + "bounds": { + "minlat": 40.7904017, + "minlon": -73.9294106, + "maxlat": 40.7906410, + "maxlon": -73.9288041 + }, + "nodes": [ + 3036361561, + 13880778758, + 3037017859, + 3037066978, + 3036361553, + 3036361512 + ], + "geometry": [ + { "lat": 40.7905676, "lon": -73.9294106 }, + { "lat": 40.7904805, "lon": -73.9294044 }, + { "lat": 40.7904061, "lon": -73.9293238 }, + { "lat": 40.7904017, "lon": -73.9292522 }, + { "lat": 40.7905400, "lon": -73.9290257 }, + { "lat": 40.7906410, "lon": -73.9288041 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 299666259, + "bounds": { + "minlat": 40.7895965, + "minlon": -73.9298133, + "maxlat": 40.7898763, + "maxlon": -73.9292022 + }, + "nodes": [ + 3036361599, + 3036361600, + 2885720351, + 2885720361, + 2885720373, + 3037022151, + 3037022141, + 3037022153, + 3037022152, + 3037022142, + 3037022143, + 3037022144, + 3037022145, + 3037022146, + 3037022147, + 3037022148, + 3037022149, + 3037022150, + 3036361599 + ], + "geometry": [ + { "lat": 40.7897147, "lon": -73.9298133 }, + { "lat": 40.7895969, "lon": -73.9295545 }, + { "lat": 40.7895965, "lon": -73.9294372 }, + { "lat": 40.7896159, "lon": -73.9294201 }, + { "lat": 40.7896369, "lon": -73.9294015 }, + { "lat": 40.7896053, "lon": -73.9293396 }, + { "lat": 40.7897609, "lon": -73.9292022 }, + { "lat": 40.7897914, "lon": -73.9292640 }, + { "lat": 40.7897098, "lon": -73.9293337 }, + { "lat": 40.7898113, "lon": -73.9295429 }, + { "lat": 40.7898326, "lon": -73.9295308 }, + { "lat": 40.7898763, "lon": -73.9296422 }, + { "lat": 40.7898479, "lon": -73.9296690 }, + { "lat": 40.7897910, "lon": -73.9296582 }, + { "lat": 40.7897707, "lon": -73.9296797 }, + { "lat": 40.7897819, "lon": -73.9297052 }, + { "lat": 40.7897149, "lon": -73.9297615 }, + { "lat": 40.7897285, "lon": -73.9298041 }, + { "lat": 40.7897147, "lon": -73.9298133 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 299669487, + "bounds": { + "minlat": 40.7893581, + "minlon": -73.9268961, + "maxlat": 40.7895183, + "maxlon": -73.9265558 + }, + "nodes": [ + 277482212, + 8573169820, + 13327706975 + ], + "geometry": [ + { "lat": 40.7893581, "lon": -73.9265558 }, + { "lat": 40.7894032, "lon": -73.9266416 }, + { "lat": 40.7895183, "lon": -73.9268961 } + ], + "tags": { + "highway": "unclassified", + "name": "Rivers Edge Road", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 299669492, + "bounds": { + "minlat": 40.7866098, + "minlon": -73.9304445, + "maxlat": 40.7867073, + "maxlon": -73.9303672 + }, + "nodes": [ + 3037067136, + 13773047395, + 3037017911 + ], + "geometry": [ + { "lat": 40.7866098, "lon": -73.9304445 }, + { "lat": 40.7866603, "lon": -73.9304044 }, + { "lat": 40.7867073, "lon": -73.9303672 } + ], + "tags": { + "disused:highway": "service", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 299674942, + "bounds": { + "minlat": 40.7877152, + "minlon": -73.9335929, + "maxlat": 40.7879009, + "maxlon": -73.9331480 + }, + "nodes": [ + 5610577642, + 3037150116 + ], + "geometry": [ + { "lat": 40.7877152, "lon": -73.9331480 }, + { "lat": 40.7879009, "lon": -73.9335929 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 299854157, + "bounds": { + "minlat": 40.7975703, + "minlon": -73.9195523, + "maxlat": 40.7977207, + "maxlon": -73.9194490 + }, + "nodes": [ + 277482070, + 3039386430 + ], + "geometry": [ + { "lat": 40.7975703, "lon": -73.9195523 }, + { "lat": 40.7977207, "lon": -73.9194490 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 299854179, + "bounds": { + "minlat": 40.7930965, + "minlon": -73.9189876, + "maxlat": 40.7936402, + "maxlon": -73.9182557 + }, + "nodes": [ + 3039386968, + 3039386969, + 3039386970, + 3039386971, + 3039386972, + 3039386973, + 3039386974, + 3039386981, + 3039386975, + 3039386976, + 1243166078, + 3039386977, + 3039386978, + 2109102038, + 3039386979, + 3039865347, + 3039386725, + 3039386980, + 3039386671, + 3039386670, + 3039386669, + 3039386668, + 3039386667, + 3039386666, + 3039386968 + ], + "geometry": [ + { "lat": 40.7933987, "lon": -73.9183988 }, + { "lat": 40.7933729, "lon": -73.9183737 }, + { "lat": 40.7933353, "lon": -73.9183509 }, + { "lat": 40.7932947, "lon": -73.9183322 }, + { "lat": 40.7932592, "lon": -73.9183161 }, + { "lat": 40.7932155, "lon": -73.9182893 }, + { "lat": 40.7931556, "lon": -73.9182557 }, + { "lat": 40.7931588, "lon": -73.9182721 }, + { "lat": 40.7931952, "lon": -73.9184609 }, + { "lat": 40.7930965, "lon": -73.9185018 }, + { "lat": 40.7931766, "lon": -73.9186755 }, + { "lat": 40.7931871, "lon": -73.9186983 }, + { "lat": 40.7933465, "lon": -73.9185722 }, + { "lat": 40.7934376, "lon": -73.9187664 }, + { "lat": 40.7935339, "lon": -73.9189876 }, + { "lat": 40.7935424, "lon": -73.9189801 }, + { "lat": 40.7936274, "lon": -73.9189054 }, + { "lat": 40.7936402, "lon": -73.9188942 }, + { "lat": 40.7936257, "lon": -73.9188284 }, + { "lat": 40.7935790, "lon": -73.9187130 }, + { "lat": 40.7935211, "lon": -73.9186031 }, + { "lat": 40.7934531, "lon": -73.9185119 }, + { "lat": 40.7933922, "lon": -73.9184596 }, + { "lat": 40.7933516, "lon": -73.9184301 }, + { "lat": 40.7933987, "lon": -73.9183988 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 299854196, + "bounds": { + "minlat": 40.7914611, + "minlon": -73.9166951, + "maxlat": 40.7915504, + "maxlon": -73.9165847 + }, + "nodes": [ + 3039387336, + 3039387337, + 3039387338, + 3039387339, + 2054405580, + 3039387340, + 3039387341, + 3039387342, + 3039387336 + ], + "geometry": [ + { "lat": 40.7915504, "lon": -73.9165847 }, + { "lat": 40.7914783, "lon": -73.9165874 }, + { "lat": 40.7914793, "lon": -73.9166330 }, + { "lat": 40.7914611, "lon": -73.9166782 }, + { "lat": 40.7914791, "lon": -73.9166951 }, + { "lat": 40.7914976, "lon": -73.9166477 }, + { "lat": 40.7915159, "lon": -73.9166571 }, + { "lat": 40.7915504, "lon": -73.9166558 }, + { "lat": 40.7915504, "lon": -73.9165847 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 299906160, + "bounds": { + "minlat": 40.7871114, + "minlon": -73.9334545, + "maxlat": 40.7872040, + "maxlon": -73.9332423 + }, + "nodes": [ + 3037017930, + 3039863349 + ], + "geometry": [ + { "lat": 40.7871114, "lon": -73.9332423 }, + { "lat": 40.7872040, "lon": -73.9334545 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 299906188, + "bounds": { + "minlat": 40.7920537, + "minlon": -73.9187050, + "maxlat": 40.7923343, + "maxlon": -73.9182838 + }, + "nodes": [ + 3039865139, + 3039865142, + 3039865148, + 3039865143, + 3039865189, + 3039865140, + 3039865144, + 3039865232, + 3039865333, + 3039865147, + 3039865145, + 3039865146, + 3039865139 + ], + "geometry": [ + { "lat": 40.7921968, "lon": -73.9186754 }, + { "lat": 40.7922131, "lon": -73.9187050 }, + { "lat": 40.7923153, "lon": -73.9186203 }, + { "lat": 40.7923343, "lon": -73.9186039 }, + { "lat": 40.7922054, "lon": -73.9183179 }, + { "lat": 40.7921988, "lon": -73.9183005 }, + { "lat": 40.7921918, "lon": -73.9182838 }, + { "lat": 40.7920537, "lon": -73.9184019 }, + { "lat": 40.7920831, "lon": -73.9184636 }, + { "lat": 40.7920963, "lon": -73.9184542 }, + { "lat": 40.7921999, "lon": -73.9183724 }, + { "lat": 40.7923004, "lon": -73.9185910 }, + { "lat": 40.7921968, "lon": -73.9186754 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 299906190, + "bounds": { + "minlat": 40.7924222, + "minlon": -73.9196511, + "maxlat": 40.7928527, + "maxlon": -73.9190335 + }, + "nodes": [ + 3039865150, + 3039865183, + 3039865152, + 3039865154, + 3039865155, + 3039865156, + 3039865157, + 3039865158, + 3039865159, + 3039865160, + 3039865161, + 3039865162, + 3039865163, + 3039865164, + 3039865165, + 3039865166, + 3039865167, + 3039865168, + 3039865169, + 3039865170, + 3039865171, + 3039865172, + 3039865173, + 3039865174, + 3039865175, + 3039865176, + 3039865177, + 2885720857, + 2885720859, + 2885720865, + 3039865178, + 3039865224, + 2885720871, + 2885720873, + 3039865179, + 3039865180, + 3039865181, + 3039865182, + 3039865150 + ], + "geometry": [ + { "lat": 40.7928141, "lon": -73.9195612 }, + { "lat": 40.7928527, "lon": -73.9196511 }, + { "lat": 40.7927806, "lon": -73.9195512 }, + { "lat": 40.7927461, "lon": -73.9195780 }, + { "lat": 40.7927344, "lon": -73.9195747 }, + { "lat": 40.7927278, "lon": -73.9195552 }, + { "lat": 40.7927273, "lon": -73.9195351 }, + { "lat": 40.7927365, "lon": -73.9195197 }, + { "lat": 40.7927634, "lon": -73.9194908 }, + { "lat": 40.7927817, "lon": -73.9194533 }, + { "lat": 40.7927918, "lon": -73.9194010 }, + { "lat": 40.7927989, "lon": -73.9193540 }, + { "lat": 40.7927928, "lon": -73.9193152 }, + { "lat": 40.7927776, "lon": -73.9192722 }, + { "lat": 40.7927512, "lon": -73.9192333 }, + { "lat": 40.7927126, "lon": -73.9191985 }, + { "lat": 40.7926730, "lon": -73.9191877 }, + { "lat": 40.7926253, "lon": -73.9191931 }, + { "lat": 40.7925969, "lon": -73.9192038 }, + { "lat": 40.7925715, "lon": -73.9192253 }, + { "lat": 40.7925532, "lon": -73.9192508 }, + { "lat": 40.7925349, "lon": -73.9192883 }, + { "lat": 40.7925238, "lon": -73.9193380 }, + { "lat": 40.7924222, "lon": -73.9191810 }, + { "lat": 40.7924689, "lon": -73.9191207 }, + { "lat": 40.7924588, "lon": -73.9191006 }, + { "lat": 40.7924953, "lon": -73.9190711 }, + { "lat": 40.7925085, "lon": -73.9191024 }, + { "lat": 40.7925400, "lon": -73.9191679 }, + { "lat": 40.7925748, "lon": -73.9191375 }, + { "lat": 40.7927096, "lon": -73.9190335 }, + { "lat": 40.7927160, "lon": -73.9190504 }, + { "lat": 40.7927394, "lon": -73.9191122 }, + { "lat": 40.7928280, "lon": -73.9192617 }, + { "lat": 40.7928446, "lon": -73.9192980 }, + { "lat": 40.7928121, "lon": -73.9193219 }, + { "lat": 40.7928141, "lon": -73.9194439 }, + { "lat": 40.7928081, "lon": -73.9194412 }, + { "lat": 40.7928141, "lon": -73.9195612 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 299944932, + "bounds": { + "minlat": 40.7864046, + "minlon": -73.9284991, + "maxlat": 40.7864747, + "maxlon": -73.9283351 + }, + "nodes": [ + 3040261614, + 3040261615, + 1890944389 + ], + "geometry": [ + { "lat": 40.7864046, "lon": -73.9284991 }, + { "lat": 40.7864516, "lon": -73.9283913 }, + { "lat": 40.7864747, "lon": -73.9283351 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 299944934, + "bounds": { + "minlat": 40.7857659, + "minlon": -73.9262633, + "maxlat": 40.7857713, + "maxlon": -73.9261407 + }, + "nodes": [ + 3040261624, + 3040261623 + ], + "geometry": [ + { "lat": 40.7857713, "lon": -73.9261407 }, + { "lat": 40.7857659, "lon": -73.9262633 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 299944935, + "bounds": { + "minlat": 40.7853529, + "minlon": -73.9285197, + "maxlat": 40.7855795, + "maxlon": -73.9279578 + }, + "nodes": [ + 3040261629, + 3040261631, + 5610570619 + ], + "geometry": [ + { "lat": 40.7853529, "lon": -73.9279578 }, + { "lat": 40.7855255, "lon": -73.9283859 }, + { "lat": 40.7855795, "lon": -73.9285197 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 299944937, + "bounds": { + "minlat": 40.7854839, + "minlon": -73.9275147, + "maxlat": 40.7855757, + "maxlon": -73.9274501 + }, + "nodes": [ + 3040262637, + 3040262638 + ], + "geometry": [ + { "lat": 40.7854839, "lon": -73.9274501 }, + { "lat": 40.7855757, "lon": -73.9275147 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 299944938, + "bounds": { + "minlat": 40.7852371, + "minlon": -73.9276252, + "maxlat": 40.7855306, + "maxlon": -73.9275971 + }, + "nodes": [ + 3040261626, + 3040262639 + ], + "geometry": [ + { "lat": 40.7855306, "lon": -73.9276252 }, + { "lat": 40.7852371, "lon": -73.9275971 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 299950346, + "bounds": { + "minlat": 40.7864382, + "minlon": -73.9330047, + "maxlat": 40.7867923, + "maxlon": -73.9325325 + }, + "nodes": [ + 3040306421, + 3040306401, + 3040306422, + 3040306405, + 3040306423, + 3040306420, + 3040306424, + 3040306421 + ], + "geometry": [ + { "lat": 40.7867923, "lon": -73.9328371 }, + { "lat": 40.7867852, "lon": -73.9328465 }, + { "lat": 40.7865673, "lon": -73.9330047 }, + { "lat": 40.7865292, "lon": -73.9329131 }, + { "lat": 40.7864382, "lon": -73.9327004 }, + { "lat": 40.7865925, "lon": -73.9325853 }, + { "lat": 40.7866648, "lon": -73.9325325 }, + { "lat": 40.7867923, "lon": -73.9328371 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 299950351, + "bounds": { + "minlat": 40.7843756, + "minlon": -73.9311419, + "maxlat": 40.7849133, + "maxlon": -73.9306062 + }, + "nodes": [ + 3039863365, + 8315031210, + 3040306615, + 3040306539, + 3040306614, + 3040306540 + ], + "geometry": [ + { "lat": 40.7849133, "lon": -73.9306062 }, + { "lat": 40.7846761, "lon": -73.9307576 }, + { "lat": 40.7844426, "lon": -73.9309285 }, + { "lat": 40.7843837, "lon": -73.9309716 }, + { "lat": 40.7843819, "lon": -73.9310081 }, + { "lat": 40.7843756, "lon": -73.9311419 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 299950352, + "bounds": { + "minlat": 40.7843756, + "minlon": -73.9316153, + "maxlat": 40.7849808, + "maxlon": -73.9311352 + }, + "nodes": [ + 3040306540, + 3040306602, + 3040306544, + 3040306541, + 3040306542, + 3040306543, + 3040306603, + 3040306544 + ], + "geometry": [ + { "lat": 40.7843756, "lon": -73.9311419 }, + { "lat": 40.7844680, "lon": -73.9311400 }, + { "lat": 40.7846538, "lon": -73.9311362 }, + { "lat": 40.7848183, "lon": -73.9311352 }, + { "lat": 40.7849808, "lon": -73.9315201 }, + { "lat": 40.7848396, "lon": -73.9316153 }, + { "lat": 40.7846812, "lon": -73.9312104 }, + { "lat": 40.7846538, "lon": -73.9311362 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 299950353, + "bounds": { + "minlat": 40.7836779, + "minlon": -73.9315939, + "maxlat": 40.7843756, + "maxlon": -73.9311419 + }, + "nodes": [ + 3040306540, + 3040306619, + 3040306545, + 3040306546, + 3040306547, + 3040306548, + 3040306549, + 3040306550, + 3040306551 + ], + "geometry": [ + { "lat": 40.7843756, "lon": -73.9311419 }, + { "lat": 40.7841024, "lon": -73.9311486 }, + { "lat": 40.7840476, "lon": -73.9311647 }, + { "lat": 40.7839582, "lon": -73.9312076 }, + { "lat": 40.7839013, "lon": -73.9312425 }, + { "lat": 40.7838221, "lon": -73.9313069 }, + { "lat": 40.7837592, "lon": -73.9314182 }, + { "lat": 40.7837104, "lon": -73.9315121 }, + { "lat": 40.7836779, "lon": -73.9315939 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 299950354, + "bounds": { + "minlat": 40.7836546, + "minlon": -73.9329792, + "maxlat": 40.7845827, + "maxlon": -73.9315939 + }, + "nodes": [ + 1242159752, + 3040306582, + 13455410082, + 3040306552, + 3040306553, + 3040306554, + 3040306575, + 3040306555, + 3040306556, + 3040306557, + 3040306558, + 3040306559, + 3040306560, + 3040306561, + 3040306562, + 3040306563, + 3040306564, + 3040306565, + 3040306566, + 3040306567, + 3040306551 + ], + "geometry": [ + { "lat": 40.7845827, "lon": -73.9329792 }, + { "lat": 40.7844556, "lon": -73.9329153 }, + { "lat": 40.7842301, "lon": -73.9323256 }, + { "lat": 40.7842029, "lon": -73.9322966 }, + { "lat": 40.7841796, "lon": -73.9322336 }, + { "lat": 40.7841572, "lon": -73.9321840 }, + { "lat": 40.7841469, "lon": -73.9321667 }, + { "lat": 40.7841258, "lon": -73.9321316 }, + { "lat": 40.7840851, "lon": -73.9321156 }, + { "lat": 40.7840232, "lon": -73.9321048 }, + { "lat": 40.7839298, "lon": -73.9320941 }, + { "lat": 40.7838628, "lon": -73.9320834 }, + { "lat": 40.7838018, "lon": -73.9320740 }, + { "lat": 40.7837541, "lon": -73.9320472 }, + { "lat": 40.7837155, "lon": -73.9319922 }, + { "lat": 40.7836881, "lon": -73.9319439 }, + { "lat": 40.7836658, "lon": -73.9318822 }, + { "lat": 40.7836546, "lon": -73.9318044 }, + { "lat": 40.7836546, "lon": -73.9317307 }, + { "lat": 40.7836586, "lon": -73.9316824 }, + { "lat": 40.7836779, "lon": -73.9315939 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 299950359, + "bounds": { + "minlat": 40.7839257, + "minlon": -73.9320941, + "maxlat": 40.7839298, + "maxlon": -73.9317468 + }, + "nodes": [ + 3040306558, + 3040306580 + ], + "geometry": [ + { "lat": 40.7839298, "lon": -73.9320941 }, + { "lat": 40.7839257, "lon": -73.9317468 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 299950361, + "bounds": { + "minlat": 40.7857970, + "minlon": -73.9320421, + "maxlat": 40.7869316, + "maxlon": -73.9312194 + }, + "nodes": [ + 1242159704, + 3040306382, + 3040306426, + 3040306650, + 3040306383, + 3040306397, + 3040306386, + 3040306387, + 3040306396, + 3040306390, + 3040306394, + 3040306393, + 3040306430 + ], + "geometry": [ + { "lat": 40.7857970, "lon": -73.9320421 }, + { "lat": 40.7859890, "lon": -73.9319029 }, + { "lat": 40.7861227, "lon": -73.9318059 }, + { "lat": 40.7861363, "lon": -73.9317961 }, + { "lat": 40.7861862, "lon": -73.9317599 }, + { "lat": 40.7862263, "lon": -73.9317309 }, + { "lat": 40.7862513, "lon": -73.9317127 }, + { "lat": 40.7862934, "lon": -73.9316821 }, + { "lat": 40.7863753, "lon": -73.9316228 }, + { "lat": 40.7864293, "lon": -73.9315836 }, + { "lat": 40.7864772, "lon": -73.9315489 }, + { "lat": 40.7867353, "lon": -73.9313618 }, + { "lat": 40.7869316, "lon": -73.9312194 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "10 mph", + "name": "Sunken Garden Loop", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 299950375, + "bounds": { + "minlat": 40.7861363, + "minlon": -73.9322188, + "maxlat": 40.7863161, + "maxlon": -73.9317961 + }, + "nodes": [ + 3040306650, + 3040306651, + 3040306652 + ], + "geometry": [ + { "lat": 40.7861363, "lon": -73.9317961 }, + { "lat": 40.7861985, "lon": -73.9319440 }, + { "lat": 40.7863161, "lon": -73.9322188 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 299950376, + "bounds": { + "minlat": 40.7872170, + "minlon": -73.9325696, + "maxlat": 40.7874156, + "maxlon": -73.9324238 + }, + "nodes": [ + 3040306653, + 3040306654, + 3040306655 + ], + "geometry": [ + { "lat": 40.7874156, "lon": -73.9324238 }, + { "lat": 40.7872658, "lon": -73.9325327 }, + { "lat": 40.7872170, "lon": -73.9325696 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 299950380, + "bounds": { + "minlat": 40.7891128, + "minlon": -73.9317307, + "maxlat": 40.7891374, + "maxlon": -73.9314909 + }, + "nodes": [ + 3040306717, + 3040306771, + 3040306718 + ], + "geometry": [ + { "lat": 40.7891128, "lon": -73.9314909 }, + { "lat": 40.7891264, "lon": -73.9316214 }, + { "lat": 40.7891374, "lon": -73.9317307 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300089501, + "bounds": { + "minlat": 40.7883948, + "minlon": -73.9253095, + "maxlat": 40.7886163, + "maxlon": -73.9249770 + }, + "nodes": [ + 3041966775, + 10713117974, + 3041966763, + 10713117985 + ], + "geometry": [ + { "lat": 40.7883948, "lon": -73.9249770 }, + { "lat": 40.7884795, "lon": -73.9251021 }, + { "lat": 40.7885278, "lon": -73.9251733 }, + { "lat": 40.7886163, "lon": -73.9253095 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "2", + "name": "C Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089503, + "bounds": { + "minlat": 40.7882138, + "minlon": -73.9250147, + "maxlat": 40.7884271, + "maxlon": -73.9247311 + }, + "nodes": [ + 3041966783, + 3041966815, + 3041966784, + 3041966785, + 3041966786, + 3041966787, + 3041966788, + 3041966789, + 3041966771, + 3041966772, + 3041966775, + 3041966776, + 3041966777, + 3041966778, + 3041966779, + 3041966780, + 3041966781, + 3041966782, + 3041966773, + 3041966774, + 3041966783 + ], + "geometry": [ + { "lat": 40.7882522, "lon": -73.9247635 }, + { "lat": 40.7882691, "lon": -73.9247510 }, + { "lat": 40.7882849, "lon": -73.9247392 }, + { "lat": 40.7883218, "lon": -73.9247311 }, + { "lat": 40.7883586, "lon": -73.9247402 }, + { "lat": 40.7883908, "lon": -73.9247654 }, + { "lat": 40.7884146, "lon": -73.9248036 }, + { "lat": 40.7884271, "lon": -73.9248502 }, + { "lat": 40.7884267, "lon": -73.9248997 }, + { "lat": 40.7884154, "lon": -73.9249416 }, + { "lat": 40.7883948, "lon": -73.9249770 }, + { "lat": 40.7883670, "lon": -73.9250021 }, + { "lat": 40.7883346, "lon": -73.9250147 }, + { "lat": 40.7883009, "lon": -73.9250135 }, + { "lat": 40.7882691, "lon": -73.9249986 }, + { "lat": 40.7882424, "lon": -73.9249714 }, + { "lat": 40.7882233, "lon": -73.9249346 }, + { "lat": 40.7882138, "lon": -73.9248919 }, + { "lat": 40.7882147, "lon": -73.9248474 }, + { "lat": 40.7882279, "lon": -73.9248011 }, + { "lat": 40.7882522, "lon": -73.9247635 } + ], + "tags": { + "access": "private", + "highway": "service", + "junction": "roundabout", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089506, + "bounds": { + "minlat": 40.7850215, + "minlon": -73.9249848, + "maxlat": 40.7858519, + "maxlon": -73.9231282 + }, + "nodes": [ + 3041966810, + 3041966808, + 3041970056, + 3041966809 + ], + "geometry": [ + { "lat": 40.7858519, "lon": -73.9249848 }, + { "lat": 40.7857750, "lon": -73.9248394 }, + { "lat": 40.7850674, "lon": -73.9232286 }, + { "lat": 40.7850215, "lon": -73.9231282 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "A Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089510, + "bounds": { + "minlat": 40.7858519, + "minlon": -73.9249848, + "maxlat": 40.7912282, + "maxlon": -73.9209309 + }, + "nodes": [ + 3041969939, + 5482408598, + 7738509286, + 3041966811, + 7911648047, + 3041969996, + 3041969948, + 10713117976, + 10713117978, + 3041966827, + 3041969974, + 3041966812, + 3041966810 + ], + "geometry": [ + { "lat": 40.7912282, "lon": -73.9209309 }, + { "lat": 40.7909367, "lon": -73.9211328 }, + { "lat": 40.7908975, "lon": -73.9211600 }, + { "lat": 40.7907443, "lon": -73.9211487 }, + { "lat": 40.7903809, "lon": -73.9214322 }, + { "lat": 40.7902462, "lon": -73.9215373 }, + { "lat": 40.7898429, "lon": -73.9218519 }, + { "lat": 40.7889266, "lon": -73.9225666 }, + { "lat": 40.7888486, "lon": -73.9226275 }, + { "lat": 40.7878488, "lon": -73.9234074 }, + { "lat": 40.7868469, "lon": -73.9241985 }, + { "lat": 40.7867609, "lon": -73.9242665 }, + { "lat": 40.7858519, "lon": -73.9249848 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "4th Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089512, + "bounds": { + "minlat": 40.7867609, + "minlon": -73.9254376, + "maxlat": 40.7872859, + "maxlon": -73.9242665 + }, + "nodes": [ + 3041966812, + 3041970108, + 3041970104, + 3041966822, + 3041966813, + 7738570127, + 3041966797 + ], + "geometry": [ + { "lat": 40.7867609, "lon": -73.9242665 }, + { "lat": 40.7868367, "lon": -73.9244395 }, + { "lat": 40.7869344, "lon": -73.9246577 }, + { "lat": 40.7870232, "lon": -73.9248517 }, + { "lat": 40.7871056, "lon": -73.9250354 }, + { "lat": 40.7871130, "lon": -73.9250520 }, + { "lat": 40.7872859, "lon": -73.9254376 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "B Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089518, + "bounds": { + "minlat": 40.7870232, + "minlon": -73.9248517, + "maxlat": 40.7901371, + "maxlon": -73.9225086 + }, + "nodes": [ + 3041966822, + 3041966829, + 3041966828, + 3041966824, + 3041966831, + 3041966823, + 3041969979, + 3044456391, + 3041969941 + ], + "geometry": [ + { "lat": 40.7870232, "lon": -73.9248517 }, + { "lat": 40.7878240, "lon": -73.9242258 }, + { "lat": 40.7881171, "lon": -73.9239968 }, + { "lat": 40.7884155, "lon": -73.9237580 }, + { "lat": 40.7891910, "lon": -73.9231553 }, + { "lat": 40.7897899, "lon": -73.9226856 }, + { "lat": 40.7899525, "lon": -73.9226027 }, + { "lat": 40.7900236, "lon": -73.9225665 }, + { "lat": 40.7901371, "lon": -73.9225086 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "3rd Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089519, + "bounds": { + "minlat": 40.7870008, + "minlon": -73.9241799, + "maxlat": 40.7882005, + "maxlon": -73.9215305 + }, + "nodes": [ + 3041966825, + 3041966828, + 3041966827, + 3041966826 + ], + "geometry": [ + { "lat": 40.7882005, "lon": -73.9241799 }, + { "lat": 40.7881171, "lon": -73.9239968 }, + { "lat": 40.7878488, "lon": -73.9234074 }, + { "lat": 40.7870008, "lon": -73.9215305 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "D Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089520, + "bounds": { + "minlat": 40.7878240, + "minlon": -73.9244402, + "maxlat": 40.7879178, + "maxlon": -73.9242258 + }, + "nodes": [ + 3041966829, + 3041966830 + ], + "geometry": [ + { "lat": 40.7878240, "lon": -73.9242258 }, + { "lat": 40.7879178, "lon": -73.9244402 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300089521, + "bounds": { + "minlat": 40.7892111, + "minlon": -73.9248126, + "maxlat": 40.7920335, + "maxlon": -73.9226191 + }, + "nodes": [ + 3041969976, + 3041969933, + 3041969934, + 3041969935, + 3041969944, + 3041969936, + 3041969983 + ], + "geometry": [ + { "lat": 40.7892111, "lon": -73.9248126 }, + { "lat": 40.7895990, "lon": -73.9245390 }, + { "lat": 40.7897553, "lon": -73.9244585 }, + { "lat": 40.7909169, "lon": -73.9235412 }, + { "lat": 40.7909881, "lon": -73.9234830 }, + { "lat": 40.7919404, "lon": -73.9227044 }, + { "lat": 40.7920335, "lon": -73.9226191 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "1st Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089522, + "bounds": { + "minlat": 40.7887215, + "minlon": -73.9225086, + "maxlat": 40.7901371, + "maxlon": -73.9192704 + }, + "nodes": [ + 3041970048, + 3041970039, + 3041969940, + 7738509291, + 3041969948, + 3044456392, + 3041969941 + ], + "geometry": [ + { "lat": 40.7887215, "lon": -73.9192704 }, + { "lat": 40.7889008, "lon": -73.9196150 }, + { "lat": 40.7889296, "lon": -73.9198218 }, + { "lat": 40.7889959, "lon": -73.9199697 }, + { "lat": 40.7898429, "lon": -73.9218519 }, + { "lat": 40.7899273, "lon": -73.9220402 }, + { "lat": 40.7901371, "lon": -73.9225086 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "H Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089523, + "bounds": { + "minlat": 40.7850215, + "minlon": -73.9231282, + "maxlat": 40.7889959, + "maxlon": -73.9199697 + }, + "nodes": [ + 3041966809, + 3041969950, + 3041969954, + 3041969952, + 3041969953, + 3041969951, + 3041966826, + 3041969963, + 7738509291 + ], + "geometry": [ + { "lat": 40.7850215, "lon": -73.9231282 }, + { "lat": 40.7858055, "lon": -73.9224979 }, + { "lat": 40.7858948, "lon": -73.9224362 }, + { "lat": 40.7860431, "lon": -73.9223986 }, + { "lat": 40.7861141, "lon": -73.9222779 }, + { "lat": 40.7861974, "lon": -73.9221894 }, + { "lat": 40.7870008, "lon": -73.9215305 }, + { "lat": 40.7878376, "lon": -73.9208748 }, + { "lat": 40.7889959, "lon": -73.9199697 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "6th Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089530, + "bounds": { + "minlat": 40.7865447, + "minlon": -73.9241985, + "maxlat": 40.7868469, + "maxlon": -73.9235117 + }, + "nodes": [ + 3041969973, + 3041969974 + ], + "geometry": [ + { "lat": 40.7865447, "lon": -73.9235117 }, + { "lat": 40.7868469, "lon": -73.9241985 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "B Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089531, + "bounds": { + "minlat": 40.7884146, + "minlon": -73.9248036, + "maxlat": 40.7893714, + "maxlon": -73.9240178 + }, + "nodes": [ + 3041966788, + 3041969975, + 3044455893, + 3044455892 + ], + "geometry": [ + { "lat": 40.7884146, "lon": -73.9248036 }, + { "lat": 40.7890162, "lon": -73.9243566 }, + { "lat": 40.7891566, "lon": -73.9241884 }, + { "lat": 40.7893714, "lon": -73.9240178 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "2nd Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089532, + "bounds": { + "minlat": 40.7891808, + "minlon": -73.9232809, + "maxlat": 40.7899525, + "maxlon": -73.9226027 + }, + "nodes": [ + 3041969977, + 3041969978, + 3041969979 + ], + "geometry": [ + { "lat": 40.7891808, "lon": -73.9232809 }, + { "lat": 40.7898813, "lon": -73.9227258 }, + { "lat": 40.7899525, "lon": -73.9226027 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 300089535, + "bounds": { + "minlat": 40.7899986, + "minlon": -73.9215373, + "maxlat": 40.7902462, + "maxlon": -73.9209804 + }, + "nodes": [ + 3041969996, + 3041970020 + ], + "geometry": [ + { "lat": 40.7902462, "lon": -73.9215373 }, + { "lat": 40.7899986, "lon": -73.9209804 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300089539, + "bounds": { + "minlat": 40.7897431, + "minlon": -73.9205463, + "maxlat": 40.7902245, + "maxlon": -73.9200168 + }, + "nodes": [ + 3041970028, + 3041970029, + 3041970030 + ], + "geometry": [ + { "lat": 40.7902245, "lon": -73.9200168 }, + { "lat": 40.7897431, "lon": -73.9203849 }, + { "lat": 40.7898122, "lon": -73.9205463 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "5th Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089540, + "bounds": { + "minlat": 40.7901798, + "minlon": -73.9199143, + "maxlat": 40.7907819, + "maxlon": -73.9194629 + }, + "nodes": [ + 3041970031, + 3041970037 + ], + "geometry": [ + { "lat": 40.7901798, "lon": -73.9199143 }, + { "lat": 40.7907819, "lon": -73.9194629 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "5th Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089541, + "bounds": { + "minlat": 40.7906400, + "minlon": -73.9209206, + "maxlat": 40.7908127, + "maxlon": -73.9207850 + }, + "nodes": [ + 3041970038, + 3041970023 + ], + "geometry": [ + { "lat": 40.7908127, "lon": -73.9207850 }, + { "lat": 40.7906400, "lon": -73.9209206 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 300089542, + "bounds": { + "minlat": 40.7897485, + "minlon": -73.9211487, + "maxlat": 40.7907443, + "maxlon": -73.9189711 + }, + "nodes": [ + 3041970040, + 3041970031, + 3041970028, + 3041970023, + 3041966811 + ], + "geometry": [ + { "lat": 40.7897485, "lon": -73.9189711 }, + { "lat": 40.7901798, "lon": -73.9199143 }, + { "lat": 40.7902245, "lon": -73.9200168 }, + { "lat": 40.7906400, "lon": -73.9209206 }, + { "lat": 40.7907443, "lon": -73.9211487 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "J Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089543, + "bounds": { + "minlat": 40.7889008, + "minlon": -73.9196150, + "maxlat": 40.7897485, + "maxlon": -73.9189711 + }, + "nodes": [ + 3041970039, + 3041970040 + ], + "geometry": [ + { "lat": 40.7889008, "lon": -73.9196150 }, + { "lat": 40.7897485, "lon": -73.9189711 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "7th Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089544, + "bounds": { + "minlat": 40.7875749, + "minlon": -73.9208748, + "maxlat": 40.7878376, + "maxlon": -73.9203078 + }, + "nodes": [ + 3041970042, + 3041969963 + ], + "geometry": [ + { "lat": 40.7875749, "lon": -73.9203078 }, + { "lat": 40.7878376, "lon": -73.9208748 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "G Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089547, + "bounds": { + "minlat": 40.7850215, + "minlon": -73.9231282, + "maxlat": 40.7893304, + "maxlon": -73.9187167 + }, + "nodes": [ + 3041966809, + 3041969949, + 3041970054, + 3041970042, + 7918865237, + 3041970048, + 3041970049 + ], + "geometry": [ + { "lat": 40.7850215, "lon": -73.9231282 }, + { "lat": 40.7853059, "lon": -73.9226400 }, + { "lat": 40.7858913, "lon": -73.9218424 }, + { "lat": 40.7875749, "lon": -73.9203078 }, + { "lat": 40.7883003, "lon": -73.9196515 }, + { "lat": 40.7887215, "lon": -73.9192704 }, + { "lat": 40.7893304, "lon": -73.9187167 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "8th Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089556, + "bounds": { + "minlat": 40.7848229, + "minlon": -73.9233870, + "maxlat": 40.7850674, + "maxlon": -73.9232286 + }, + "nodes": [ + 3041970055, + 3041970056 + ], + "geometry": [ + { "lat": 40.7848229, "lon": -73.9233870 }, + { "lat": 40.7850674, "lon": -73.9232286 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089564, + "bounds": { + "minlat": 40.7866053, + "minlon": -73.9248066, + "maxlat": 40.7869344, + "maxlon": -73.9244395 + }, + "nodes": [ + 3041970104, + 3041970105, + 13250025676, + 3041970119, + 13250025675, + 7738570125, + 13250025672, + 13250025674, + 13250025673, + 7738570124, + 3041970108 + ], + "geometry": [ + { "lat": 40.7869344, "lon": -73.9246577 }, + { "lat": 40.7867619, "lon": -73.9247941 }, + { "lat": 40.7867246, "lon": -73.9248066 }, + { "lat": 40.7866871, "lon": -73.9248045 }, + { "lat": 40.7866479, "lon": -73.9247885 }, + { "lat": 40.7866190, "lon": -73.9247499 }, + { "lat": 40.7866053, "lon": -73.9246999 }, + { "lat": 40.7866127, "lon": -73.9246510 }, + { "lat": 40.7866367, "lon": -73.9246027 }, + { "lat": 40.7866663, "lon": -73.9245688 }, + { "lat": 40.7868367, "lon": -73.9244395 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "LaGuardia Circle", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300089566, + "bounds": { + "minlat": 40.7866813, + "minlon": -73.9249551, + "maxlat": 40.7866871, + "maxlon": -73.9248045 + }, + "nodes": [ + 3041970118, + 3041970119 + ], + "geometry": [ + { "lat": 40.7866813, "lon": -73.9249551 }, + { "lat": 40.7866871, "lon": -73.9248045 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300338876, + "bounds": { + "minlat": 40.7009788, + "minlon": -73.9430887, + "maxlat": 40.7014421, + "maxlon": -73.9423470 + }, + "nodes": [ + 42467507, + 5673259235, + 9752127035 + ], + "geometry": [ + { "lat": 40.7014421, "lon": -73.9430887 }, + { "lat": 40.7014181, "lon": -73.9430452 }, + { "lat": 40.7009788, "lon": -73.9423470 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 300338877, + "bounds": { + "minlat": 40.7015656, + "minlon": -73.9429929, + "maxlat": 40.7016390, + "maxlon": -73.9422576 + }, + "nodes": [ + 42467803, + 9752127011, + 2307731133 + ], + "geometry": [ + { "lat": 40.7016390, "lon": -73.9422576 }, + { "lat": 40.7016272, "lon": -73.9423758 }, + { "lat": 40.7015656, "lon": -73.9429929 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Debevoise Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Debevoise", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 300357345, + "bounds": { + "minlat": 40.7829384, + "minlon": -73.9308896, + "maxlat": 40.7831659, + "maxlon": -73.9306200 + }, + "nodes": [ + 3044449411, + 3044449412, + 3044449413, + 3037153883, + 3044449414, + 3044449411 + ], + "geometry": [ + { "lat": 40.7831659, "lon": -73.9307327 }, + { "lat": 40.7830024, "lon": -73.9306200 }, + { "lat": 40.7829384, "lon": -73.9307749 }, + { "lat": 40.7829835, "lon": -73.9308060 }, + { "lat": 40.7831049, "lon": -73.9308896 }, + { "lat": 40.7831659, "lon": -73.9307327 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300357349, + "bounds": { + "minlat": 40.7836505, + "minlon": -73.9263040, + "maxlat": 40.7837967, + "maxlon": -73.9261082 + }, + "nodes": [ + 3044449427, + 3044449428, + 2885717472, + 2885717473, + 3044455838, + 2885717471, + 2885717470, + 2885717469, + 3044449429, + 3044449430, + 3044449431, + 3044449432, + 3044455833, + 3044455834, + 3044455835, + 3044455836, + 3037154326, + 3044449427 + ], + "geometry": [ + { "lat": 40.7837967, "lon": -73.9262410 }, + { "lat": 40.7837388, "lon": -73.9263040 }, + { "lat": 40.7837179, "lon": -73.9262812 }, + { "lat": 40.7837604, "lon": -73.9262304 }, + { "lat": 40.7837506, "lon": -73.9262162 }, + { "lat": 40.7837104, "lon": -73.9261579 }, + { "lat": 40.7836720, "lon": -73.9262037 }, + { "lat": 40.7836678, "lon": -73.9262086 }, + { "lat": 40.7836505, "lon": -73.9261900 }, + { "lat": 40.7836992, "lon": -73.9261391 }, + { "lat": 40.7836881, "lon": -73.9261297 }, + { "lat": 40.7837043, "lon": -73.9261082 }, + { "lat": 40.7837155, "lon": -73.9261230 }, + { "lat": 40.7837266, "lon": -73.9261096 }, + { "lat": 40.7837409, "lon": -73.9261243 }, + { "lat": 40.7837317, "lon": -73.9261418 }, + { "lat": 40.7837637, "lon": -73.9261906 }, + { "lat": 40.7837967, "lon": -73.9262410 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "noname": "yes" + } +}, +{ + "type": "way", + "id": 300357351, + "bounds": { + "minlat": 40.7912282, + "minlon": -73.9231490, + "maxlat": 40.7923601, + "maxlon": -73.9209309 + }, + "nodes": [ + 3044455864, + 7738506176, + 10713117973, + 10713117972, + 10713117971, + 3041969983, + 7911648044, + 7738506178, + 3041969938, + 3041969939 + ], + "geometry": [ + { "lat": 40.7923601, "lon": -73.9231490 }, + { "lat": 40.7923080, "lon": -73.9230723 }, + { "lat": 40.7922529, "lon": -73.9229931 }, + { "lat": 40.7922001, "lon": -73.9229209 }, + { "lat": 40.7921556, "lon": -73.9228441 }, + { "lat": 40.7920335, "lon": -73.9226191 }, + { "lat": 40.7919142, "lon": -73.9223539 }, + { "lat": 40.7918163, "lon": -73.9221364 }, + { "lat": 40.7916947, "lon": -73.9219855 }, + { "lat": 40.7912282, "lon": -73.9209309 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "K Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300357356, + "bounds": { + "minlat": 40.7884086, + "minlon": -73.9251801, + "maxlat": 40.7891139, + "maxlon": -73.9249770 + }, + "nodes": [ + 13327501646, + 10713117974, + 13327501647, + 3044455882, + 3044455883, + 3044455884, + 3044455885, + 3044455886, + 3044455887, + 3044455890, + 3044455891 + ], + "geometry": [ + { "lat": 40.7884086, "lon": -73.9251556 }, + { "lat": 40.7884795, "lon": -73.9251021 }, + { "lat": 40.7885473, "lon": -73.9250722 }, + { "lat": 40.7886409, "lon": -73.9251630 }, + { "lat": 40.7887017, "lon": -73.9251782 }, + { "lat": 40.7887854, "lon": -73.9251801 }, + { "lat": 40.7888581, "lon": -73.9251058 }, + { "lat": 40.7889190, "lon": -73.9250843 }, + { "lat": 40.7890043, "lon": -73.9250441 }, + { "lat": 40.7890693, "lon": -73.9250146 }, + { "lat": 40.7891139, "lon": -73.9249770 } + ], + "tags": { + "access": "private", + "highway": "track" + } +}, +{ + "type": "way", + "id": 300357357, + "bounds": { + "minlat": 40.7890043, + "minlon": -73.9250441, + "maxlat": 40.7890205, + "maxlon": -73.9249958 + }, + "nodes": [ + 3044455888, + 3044455887 + ], + "geometry": [ + { "lat": 40.7890205, "lon": -73.9249958 }, + { "lat": 40.7890043, "lon": -73.9250441 } + ], + "tags": { + "access": "private", + "highway": "track" + } +}, +{ + "type": "way", + "id": 300357375, + "bounds": { + "minlat": 40.7899883, + "minlon": -73.9225665, + "maxlat": 40.7900236, + "maxlon": -73.9224806 + }, + "nodes": [ + 3044456391, + 3044456390 + ], + "geometry": [ + { "lat": 40.7900236, "lon": -73.9225665 }, + { "lat": 40.7899883, "lon": -73.9224806 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 300357376, + "bounds": { + "minlat": 40.7899024, + "minlon": -73.9220641, + "maxlat": 40.7899273, + "maxlon": -73.9220402 + }, + "nodes": [ + 3044456392, + 3044456389 + ], + "geometry": [ + { "lat": 40.7899273, "lon": -73.9220402 }, + { "lat": 40.7899024, "lon": -73.9220641 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 300357397, + "bounds": { + "minlat": 40.7922491, + "minlon": -73.9203462, + "maxlat": 40.7926359, + "maxlon": -73.9195157 + }, + "nodes": [ + 2885720866, + 2885720855, + 3044457236, + 3044456756, + 3044456757, + 3044457547, + 3044457548, + 3044457549, + 2885720850, + 2885720849, + 2885720847, + 2885720843, + 2885720848, + 2885720846, + 3044456827, + 3044456828, + 3044457543, + 3044457546, + 3044456829, + 2885720841, + 3044456786, + 3044456787, + 3044457253, + 3044456755, + 3044457237, + 2885720867, + 2885720866 + ], + "geometry": [ + { "lat": 40.7925913, "lon": -73.9200196 }, + { "lat": 40.7924829, "lon": -73.9200693 }, + { "lat": 40.7924633, "lon": -73.9200753 }, + { "lat": 40.7925019, "lon": -73.9202469 }, + { "lat": 40.7924780, "lon": -73.9202577 }, + { "lat": 40.7923996, "lon": -73.9199224 }, + { "lat": 40.7924321, "lon": -73.9199023 }, + { "lat": 40.7923752, "lon": -73.9196515 }, + { "lat": 40.7924454, "lon": -73.9196147 }, + { "lat": 40.7924381, "lon": -73.9195881 }, + { "lat": 40.7924241, "lon": -73.9195947 }, + { "lat": 40.7924075, "lon": -73.9195342 }, + { "lat": 40.7924263, "lon": -73.9195253 }, + { "lat": 40.7924236, "lon": -73.9195157 }, + { "lat": 40.7923202, "lon": -73.9195630 }, + { "lat": 40.7923273, "lon": -73.9195952 }, + { "lat": 40.7922736, "lon": -73.9196163 }, + { "lat": 40.7922600, "lon": -73.9196217 }, + { "lat": 40.7922491, "lon": -73.9196260 }, + { "lat": 40.7924008, "lon": -73.9202277 }, + { "lat": 40.7923380, "lon": -73.9202551 }, + { "lat": 40.7923567, "lon": -73.9203462 }, + { "lat": 40.7925809, "lon": -73.9202475 }, + { "lat": 40.7925740, "lon": -73.9202174 }, + { "lat": 40.7926359, "lon": -73.9201920 }, + { "lat": 40.7926298, "lon": -73.9201651 }, + { "lat": 40.7925913, "lon": -73.9200196 } + ], + "tags": { + "access": "private", + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 300357400, + "bounds": { + "minlat": 40.7912001, + "minlon": -73.9224852, + "maxlat": 40.7926014, + "maxlon": -73.9175411 + }, + "nodes": [ + 3044777616, + 3044774788, + 3044774775, + 3044774791, + 3044457246, + 3044774786, + 3044774784, + 3044457239, + 3044774800, + 3044777587, + 3044777584, + 3044457273, + 3044457288, + 3044457286, + 3044457284, + 3044457240 + ], + "geometry": [ + { "lat": 40.7912001, "lon": -73.9175411 }, + { "lat": 40.7913226, "lon": -73.9180570 }, + { "lat": 40.7913911, "lon": -73.9183444 }, + { "lat": 40.7914119, "lon": -73.9184317 }, + { "lat": 40.7914434, "lon": -73.9185639 }, + { "lat": 40.7915441, "lon": -73.9187852 }, + { "lat": 40.7916923, "lon": -73.9191111 }, + { "lat": 40.7918435, "lon": -73.9194436 }, + { "lat": 40.7919317, "lon": -73.9197974 }, + { "lat": 40.7919628, "lon": -73.9199222 }, + { "lat": 40.7920702, "lon": -73.9203533 }, + { "lat": 40.7921387, "lon": -73.9206281 }, + { "lat": 40.7922293, "lon": -73.9209919 }, + { "lat": 40.7922933, "lon": -73.9212489 }, + { "lat": 40.7923538, "lon": -73.9214915 }, + { "lat": 40.7926014, "lon": -73.9224852 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Reilly Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300357408, + "bounds": { + "minlat": 40.7921387, + "minlon": -73.9207664, + "maxlat": 40.7926056, + "maxlon": -73.9203272 + }, + "nodes": [ + 3044457275, + 13096904706, + 3044457280, + 3044457279, + 3044457278, + 3044457277, + 3044457275, + 13096904675, + 3044457273 + ], + "geometry": [ + { "lat": 40.7923872, "lon": -73.9205159 }, + { "lat": 40.7923657, "lon": -73.9204278 }, + { "lat": 40.7923842, "lon": -73.9203823 }, + { "lat": 40.7925164, "lon": -73.9203272 }, + { "lat": 40.7926056, "lon": -73.9207000 }, + { "lat": 40.7924474, "lon": -73.9207664 }, + { "lat": 40.7923872, "lon": -73.9205159 }, + { "lat": 40.7921817, "lon": -73.9206087 }, + { "lat": 40.7921387, "lon": -73.9206281 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 300357410, + "bounds": { + "minlat": 40.7920168, + "minlon": -73.9218616, + "maxlat": 40.7923538, + "maxlon": -73.9214915 + }, + "nodes": [ + 3044457284, + 3044457285 + ], + "geometry": [ + { "lat": 40.7923538, "lon": -73.9214915 }, + { "lat": 40.7920168, "lon": -73.9218616 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300357411, + "bounds": { + "minlat": 40.7919326, + "minlon": -73.9216564, + "maxlat": 40.7922933, + "maxlon": -73.9212489 + }, + "nodes": [ + 3044457286, + 3044457287 + ], + "geometry": [ + { "lat": 40.7922933, "lon": -73.9212489 }, + { "lat": 40.7919326, "lon": -73.9216564 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300357412, + "bounds": { + "minlat": 40.7918463, + "minlon": -73.9214660, + "maxlat": 40.7922293, + "maxlon": -73.9209919 + }, + "nodes": [ + 3044457288, + 3044457289 + ], + "geometry": [ + { "lat": 40.7922293, "lon": -73.9209919 }, + { "lat": 40.7918463, "lon": -73.9214660 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300357413, + "bounds": { + "minlat": 40.7916828, + "minlon": -73.9218616, + "maxlat": 40.7920430, + "maxlon": -73.9206278 + }, + "nodes": [ + 3044457285, + 3044457287, + 3044457289, + 3044457293, + 3044457290, + 3044457291 + ], + "geometry": [ + { "lat": 40.7920168, "lon": -73.9218616 }, + { "lat": 40.7919326, "lon": -73.9216564 }, + { "lat": 40.7918463, "lon": -73.9214660 }, + { "lat": 40.7917671, "lon": -73.9212809 }, + { "lat": 40.7916828, "lon": -73.9210824 }, + { "lat": 40.7920430, "lon": -73.9206278 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300357415, + "bounds": { + "minlat": 40.7917671, + "minlon": -73.9212809, + "maxlat": 40.7921102, + "maxlon": -73.9208518 + }, + "nodes": [ + 3044457292, + 3044457293 + ], + "geometry": [ + { "lat": 40.7921102, "lon": -73.9208518 }, + { "lat": 40.7917671, "lon": -73.9212809 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300357427, + "bounds": { + "minlat": 40.7921596, + "minlon": -73.9196217, + "maxlat": 40.7923902, + "maxlon": -73.9192599 + }, + "nodes": [ + 3044456797, + 2885720835, + 2885720834, + 2885720833, + 3044456830, + 3044457235, + 3044457234, + 3044457233, + 3044457541, + 3044457542, + 3044457543, + 3044457546, + 3044457545, + 3044457544, + 3044457555, + 3044457554, + 3044457557, + 3044457556, + 3044457563, + 3044457539, + 3044457553, + 3044457552, + 3044457538, + 3044456801, + 3044457551, + 3044457550, + 3044457564, + 3044456800, + 3044456799, + 3044456798, + 3044456797 + ], + "geometry": [ + { "lat": 40.7923902, "lon": -73.9194436 }, + { "lat": 40.7923320, "lon": -73.9194444 }, + { "lat": 40.7923135, "lon": -73.9194524 }, + { "lat": 40.7923108, "lon": -73.9194417 }, + { "lat": 40.7922961, "lon": -73.9194481 }, + { "lat": 40.7922992, "lon": -73.9194606 }, + { "lat": 40.7922819, "lon": -73.9194681 }, + { "lat": 40.7922932, "lon": -73.9195136 }, + { "lat": 40.7923011, "lon": -73.9195657 }, + { "lat": 40.7922656, "lon": -73.9195871 }, + { "lat": 40.7922736, "lon": -73.9196163 }, + { "lat": 40.7922600, "lon": -73.9196217 }, + { "lat": 40.7922321, "lon": -73.9195160 }, + { "lat": 40.7922227, "lon": -73.9195211 }, + { "lat": 40.7922118, "lon": -73.9194780 }, + { "lat": 40.7922209, "lon": -73.9194745 }, + { "lat": 40.7921833, "lon": -73.9193202 }, + { "lat": 40.7921733, "lon": -73.9193251 }, + { "lat": 40.7921596, "lon": -73.9192708 }, + { "lat": 40.7921742, "lon": -73.9192653 }, + { "lat": 40.7921915, "lon": -73.9192599 }, + { "lat": 40.7922087, "lon": -73.9192599 }, + { "lat": 40.7922209, "lon": -73.9192813 }, + { "lat": 40.7922341, "lon": -73.9193350 }, + { "lat": 40.7922554, "lon": -73.9193310 }, + { "lat": 40.7922717, "lon": -73.9193417 }, + { "lat": 40.7922935, "lon": -73.9193601 }, + { "lat": 40.7923049, "lon": -73.9193699 }, + { "lat": 40.7923323, "lon": -73.9193846 }, + { "lat": 40.7923791, "lon": -73.9194114 }, + { "lat": 40.7923902, "lon": -73.9194436 } + ], + "tags": { + "access": "private", + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 300357432, + "bounds": { + "minlat": 40.7916229, + "minlon": -73.9191405, + "maxlat": 40.7920521, + "maxlon": -73.9186551 + }, + "nodes": [ + 2885720813, + 2885720812, + 3044457248, + 13096904673, + 3044457590, + 3044457591, + 3044457592, + 3044457593, + 3044457594, + 2885720819, + 3044457595, + 2885720815, + 2885720816, + 2885720792, + 2885720798, + 2885720799, + 2885720801, + 2885720804, + 2885720805, + 2885720811, + 2885720813 + ], + "geometry": [ + { "lat": 40.7918892, "lon": -73.9190801 }, + { "lat": 40.7918768, "lon": -73.9190855 }, + { "lat": 40.7918087, "lon": -73.9191137 }, + { "lat": 40.7917986, "lon": -73.9191187 }, + { "lat": 40.7917549, "lon": -73.9191405 }, + { "lat": 40.7917346, "lon": -73.9191244 }, + { "lat": 40.7916229, "lon": -73.9188750 }, + { "lat": 40.7916269, "lon": -73.9188441 }, + { "lat": 40.7920476, "lon": -73.9186551 }, + { "lat": 40.7920514, "lon": -73.9186634 }, + { "lat": 40.7920521, "lon": -73.9186821 }, + { "lat": 40.7919473, "lon": -73.9187279 }, + { "lat": 40.7919534, "lon": -73.9187520 }, + { "lat": 40.7917284, "lon": -73.9188502 }, + { "lat": 40.7917582, "lon": -73.9189685 }, + { "lat": 40.7917653, "lon": -73.9189654 }, + { "lat": 40.7917746, "lon": -73.9190020 }, + { "lat": 40.7917999, "lon": -73.9189909 }, + { "lat": 40.7918112, "lon": -73.9190359 }, + { "lat": 40.7918714, "lon": -73.9190096 }, + { "lat": 40.7918892, "lon": -73.9190801 } + ], + "tags": { + "access": "private", + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 300396688, + "bounds": { + "minlat": 40.7905929, + "minlon": -73.9188897, + "maxlat": 40.7908649, + "maxlon": -73.9183300 + }, + "nodes": [ + 10713117967, + 3044774768, + 3044774776 + ], + "geometry": [ + { "lat": 40.7907287, "lon": -73.9183300 }, + { "lat": 40.7905929, "lon": -73.9185047 }, + { "lat": 40.7908649, "lon": -73.9188897 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Anya Place", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300396689, + "bounds": { + "minlat": 40.7906410, + "minlon": -73.9187161, + "maxlat": 40.7910016, + "maxlon": -73.9182059 + }, + "nodes": [ + 10713117966, + 10713117967, + 3044774771 + ], + "geometry": [ + { "lat": 40.7906410, "lon": -73.9182059 }, + { "lat": 40.7907287, "lon": -73.9183300 }, + { "lat": 40.7910016, "lon": -73.9187161 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Allen Drive", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300396690, + "bounds": { + "minlat": 40.7907441, + "minlon": -73.9190319, + "maxlat": 40.7908649, + "maxlon": -73.9188897 + }, + "nodes": [ + 3044774772, + 3044777627, + 3044774776 + ], + "geometry": [ + { "lat": 40.7907441, "lon": -73.9190319 }, + { "lat": 40.7908232, "lon": -73.9189355 }, + { "lat": 40.7908649, "lon": -73.9188897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300396691, + "bounds": { + "minlat": 40.7908649, + "minlon": -73.9188897, + "maxlat": 40.7913911, + "maxlon": -73.9183444 + }, + "nodes": [ + 3044774776, + 3044774771, + 3044774773, + 3044774774, + 3044774799, + 3044774775 + ], + "geometry": [ + { "lat": 40.7908649, "lon": -73.9188897 }, + { "lat": 40.7910016, "lon": -73.9187161 }, + { "lat": 40.7910771, "lon": -73.9186202 }, + { "lat": 40.7911787, "lon": -73.9186081 }, + { "lat": 40.7912118, "lon": -73.9185670 }, + { "lat": 40.7913911, "lon": -73.9183444 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Kelly Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300396692, + "bounds": { + "minlat": 40.7908649, + "minlon": -73.9195478, + "maxlat": 40.7913349, + "maxlon": -73.9188897 + }, + "nodes": [ + 3044774776, + 3044774769 + ], + "geometry": [ + { "lat": 40.7908649, "lon": -73.9188897 }, + { "lat": 40.7913349, "lon": -73.9195478 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Higgins Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300396694, + "bounds": { + "minlat": 40.7912467, + "minlon": -73.9196555, + "maxlat": 40.7916923, + "maxlon": -73.9191111 + }, + "nodes": [ + 3044774783, + 3044774769, + 3044774798, + 3044774784 + ], + "geometry": [ + { "lat": 40.7912467, "lon": -73.9196555 }, + { "lat": 40.7913349, "lon": -73.9195478 }, + { "lat": 40.7916252, "lon": -73.9191931 }, + { "lat": 40.7916923, "lon": -73.9191111 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Sears Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300396695, + "bounds": { + "minlat": 40.7915441, + "minlon": -73.9187852, + "maxlat": 40.7919767, + "maxlon": -73.9185893 + }, + "nodes": [ + 3044774785, + 3044774786 + ], + "geometry": [ + { "lat": 40.7919767, "lon": -73.9185893 }, + { "lat": 40.7915441, "lon": -73.9187852 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300396696, + "bounds": { + "minlat": 40.7913226, + "minlon": -73.9184217, + "maxlat": 40.7919717, + "maxlon": -73.9178906 + }, + "nodes": [ + 3044774789, + 3044774790, + 3044774787, + 3044774797, + 3044774788 + ], + "geometry": [ + { "lat": 40.7919717, "lon": -73.9184217 }, + { "lat": 40.7918838, "lon": -73.9182287 }, + { "lat": 40.7917300, "lon": -73.9178906 }, + { "lat": 40.7916775, "lon": -73.9179121 }, + { "lat": 40.7913226, "lon": -73.9180570 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 300396698, + "bounds": { + "minlat": 40.7914119, + "minlon": -73.9184317, + "maxlat": 40.7915204, + "maxlon": -73.9183850 + }, + "nodes": [ + 3044774794, + 3044774791 + ], + "geometry": [ + { "lat": 40.7915204, "lon": -73.9183850 }, + { "lat": 40.7914119, "lon": -73.9184317 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300396700, + "bounds": { + "minlat": 40.7912118, + "minlon": -73.9191931, + "maxlat": 40.7916252, + "maxlon": -73.9185670 + }, + "nodes": [ + 3044774798, + 3044774799 + ], + "geometry": [ + { "lat": 40.7916252, "lon": -73.9191931 }, + { "lat": 40.7912118, "lon": -73.9185670 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Finley Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300396701, + "bounds": { + "minlat": 40.7915554, + "minlon": -73.9199877, + "maxlat": 40.7917704, + "maxlon": -73.9196850 + }, + "nodes": [ + 3044777579, + 3044774802 + ], + "geometry": [ + { "lat": 40.7917704, "lon": -73.9199877 }, + { "lat": 40.7915554, "lon": -73.9196850 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "D'Auria Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300398883, + "bounds": { + "minlat": 40.7910771, + "minlon": -73.9186202, + "maxlat": 40.7913911, + "maxlon": -73.9183237 + }, + "nodes": [ + 3044774773, + 3044777577, + 3044777578, + 3044774775 + ], + "geometry": [ + { "lat": 40.7910771, "lon": -73.9186202 }, + { "lat": 40.7910874, "lon": -73.9185579 }, + { "lat": 40.7912746, "lon": -73.9183237 }, + { "lat": 40.7913911, "lon": -73.9183444 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 300398886, + "bounds": { + "minlat": 40.7916992, + "minlon": -73.9208166, + "maxlat": 40.7920702, + "maxlon": -73.9203533 + }, + "nodes": [ + 3044777584, + 3044777589, + 7745092460 + ], + "geometry": [ + { "lat": 40.7920702, "lon": -73.9203533 }, + { "lat": 40.7919761, "lon": -73.9204708 }, + { "lat": 40.7916992, "lon": -73.9208166 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Priore Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300398888, + "bounds": { + "minlat": 40.7917702, + "minlon": -73.9204708, + "maxlat": 40.7919761, + "maxlon": -73.9201540 + }, + "nodes": [ + 3044777588, + 3044777589 + ], + "geometry": [ + { "lat": 40.7917702, "lon": -73.9201540 }, + { "lat": 40.7919761, "lon": -73.9204708 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Tepper Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300398889, + "bounds": { + "minlat": 40.7913279, + "minlon": -73.9203563, + "maxlat": 40.7916019, + "maxlon": -73.9199599 + }, + "nodes": [ + 3044774803, + 3044774801, + 3044777590 + ], + "geometry": [ + { "lat": 40.7913279, "lon": -73.9199599 }, + { "lat": 40.7915381, "lon": -73.9202617 }, + { "lat": 40.7916019, "lon": -73.9203563 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Rodriguez Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300398895, + "bounds": { + "minlat": 40.7902570, + "minlon": -73.9192072, + "maxlat": 40.7907572, + "maxlon": -73.9178298 + }, + "nodes": [ + 3044777623, + 3044777622, + 3044777610, + 3044777613 + ], + "geometry": [ + { "lat": 40.7905057, "lon": -73.9192072 }, + { "lat": 40.7902570, "lon": -73.9187129 }, + { "lat": 40.7903173, "lon": -73.9183501 }, + { "lat": 40.7907572, "lon": -73.9178298 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Kaminsky Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300398903, + "bounds": { + "minlat": 40.7904612, + "minlon": -73.9169055, + "maxlat": 40.7910339, + "maxlon": -73.9163225 + }, + "nodes": [ + 10713117968, + 3044777629, + 3044777631, + 3044780333, + 3044777632 + ], + "geometry": [ + { "lat": 40.7910339, "lon": -73.9163225 }, + { "lat": 40.7908910, "lon": -73.9164680 }, + { "lat": 40.7908629, "lon": -73.9164966 }, + { "lat": 40.7906855, "lon": -73.9166772 }, + { "lat": 40.7904612, "lon": -73.9169055 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "McCarron Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300580501, + "bounds": { + "minlat": 40.8523420, + "minlon": -73.9640714, + "maxlat": 40.8525885, + "maxlon": -73.9637137 + }, + "nodes": [ + 3046538776, + 12072538022, + 8167752139, + 12072538020, + 3046538786, + 12072538019, + 3046538777, + 12072538021, + 940926468, + 940926470, + 8167752140, + 3046538779, + 10000901891, + 5103396772 + ], + "geometry": [ + { "lat": 40.8523420, "lon": -73.9637686 }, + { "lat": 40.8523797, "lon": -73.9637332 }, + { "lat": 40.8524060, "lon": -73.9637190 }, + { "lat": 40.8524402, "lon": -73.9637137 }, + { "lat": 40.8524698, "lon": -73.9637195 }, + { "lat": 40.8524970, "lon": -73.9637299 }, + { "lat": 40.8525251, "lon": -73.9637525 }, + { "lat": 40.8525445, "lon": -73.9637774 }, + { "lat": 40.8525596, "lon": -73.9638090 }, + { "lat": 40.8525706, "lon": -73.9638609 }, + { "lat": 40.8525798, "lon": -73.9639335 }, + { "lat": 40.8525885, "lon": -73.9640017 }, + { "lat": 40.8525743, "lon": -73.9640394 }, + { "lat": 40.8525622, "lon": -73.9640714 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "name": "Historic Park Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 300580502, + "bounds": { + "minlat": 40.8523420, + "minlon": -73.9640714, + "maxlat": 40.8525622, + "maxlon": -73.9637686 + }, + "nodes": [ + 5103396772, + 10000901890, + 3046538785, + 3046538784, + 3046538783, + 3046538782, + 3046538781, + 940926466, + 8167752138, + 12072538023, + 3046538776 + ], + "geometry": [ + { "lat": 40.8525622, "lon": -73.9640714 }, + { "lat": 40.8525430, "lon": -73.9640425 }, + { "lat": 40.8525255, "lon": -73.9640164 }, + { "lat": 40.8525154, "lon": -73.9639532 }, + { "lat": 40.8525083, "lon": -73.9638984 }, + { "lat": 40.8524962, "lon": -73.9638567 }, + { "lat": 40.8524810, "lon": -73.9638298 }, + { "lat": 40.8524541, "lon": -73.9638088 }, + { "lat": 40.8524334, "lon": -73.9637960 }, + { "lat": 40.8523887, "lon": -73.9637776 }, + { "lat": 40.8523420, "lon": -73.9637686 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "name": "Historic Park Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 300580503, + "bounds": { + "minlat": 40.8525622, + "minlon": -73.9642015, + "maxlat": 40.8525710, + "maxlon": -73.9640714 + }, + "nodes": [ + 5103396772, + 103195198 + ], + "geometry": [ + { "lat": 40.8525622, "lon": -73.9640714 }, + { "lat": 40.8525710, "lon": -73.9642015 } + ], + "tags": { + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "name": "Historic Park Road" + } +}, +{ + "type": "way", + "id": 300894089, + "bounds": { + "minlat": 40.7459296, + "minlon": -73.9397876, + "maxlat": 40.7464234, + "maxlon": -73.9394831 + }, + "nodes": [ + 2971759033, + 2292637623 + ], + "geometry": [ + { "lat": 40.7459296, "lon": -73.9394831 }, + { "lat": 40.7464234, "lon": -73.9397876 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 300894090, + "bounds": { + "minlat": 40.7457495, + "minlon": -73.9400436, + "maxlat": 40.7460238, + "maxlon": -73.9399335 + }, + "nodes": [ + 3049953953, + 3785649115, + 276035449 + ], + "geometry": [ + { "lat": 40.7460238, "lon": -73.9400436 }, + { "lat": 40.7458498, "lon": -73.9399763 }, + { "lat": 40.7457495, "lon": -73.9399335 } + ], + "tags": { + "access:conditional": "no @ (Mo-Fr 06:00-09:30); yes @ (Mo-Fr 06:00-09:30 AND occupants>1)", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "oneway": "reversible", + "oneway:conditional": "yes @ (Mo-Fr 00:00-06:00,09:30-24:00; Sa-Su); -1 @ (Mo-Fr 06:00-09:30)" + } +}, +{ + "type": "way", + "id": 300894091, + "bounds": { + "minlat": 40.7457670, + "minlon": -73.9396100, + "maxlat": 40.7459296, + "maxlon": -73.9394831 + }, + "nodes": [ + 3049953948, + 3785649288, + 3785649289, + 3785649290, + 3049953950, + 2971759033 + ], + "geometry": [ + { "lat": 40.7457670, "lon": -73.9396100 }, + { "lat": 40.7457896, "lon": -73.9395772 }, + { "lat": 40.7458136, "lon": -73.9395505 }, + { "lat": 40.7458397, "lon": -73.9395272 }, + { "lat": 40.7458699, "lon": -73.9395093 }, + { "lat": 40.7459296, "lon": -73.9394831 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "hgv": "no", + "highway": "service", + "lanes": "1", + "layer": "1", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 305323021, + "bounds": { + "minlat": 40.8166504, + "minlon": -73.9390685, + "maxlat": 40.8166971, + "maxlon": -73.9389307 + }, + "nodes": [ + 42440376, + 3099327930 + ], + "geometry": [ + { "lat": 40.8166971, "lon": -73.9390685 }, + { "lat": 40.8166504, "lon": -73.9389307 } + ], + "tags": { + "highway": "residential", + "name": "West 139th Street" + } +}, +{ + "type": "way", + "id": 305323022, + "bounds": { + "minlat": 40.8160584, + "minlon": -73.9395348, + "maxlat": 40.8166971, + "maxlon": -73.9390685 + }, + "nodes": [ + 42440376, + 9557110328, + 9557110356, + 3099327976 + ], + "geometry": [ + { "lat": 40.8166971, "lon": -73.9390685 }, + { "lat": 40.8166296, "lon": -73.9391177 }, + { "lat": 40.8161204, "lon": -73.9394896 }, + { "lat": 40.8160584, "lon": -73.9395348 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 305323023, + "bounds": { + "minlat": 40.8159970, + "minlon": -73.9395348, + "maxlat": 40.8160584, + "maxlon": -73.9393897 + }, + "nodes": [ + 3099327976, + 42435957 + ], + "geometry": [ + { "lat": 40.8160584, "lon": -73.9395348 }, + { "lat": 40.8159970, "lon": -73.9393897 } + ], + "tags": { + "highway": "residential", + "name": "West 138th Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 305323024, + "bounds": { + "minlat": 40.8102846, + "minlon": -73.9435449, + "maxlat": 40.8125338, + "maxlon": -73.9419161 + }, + "nodes": [ + 42451564, + 11947052606, + 10172833420, + 42453253, + 10172833417, + 10172819010, + 42438236, + 10172819007, + 10168169661, + 42429532, + 10168169658, + 4207724583 + ], + "geometry": [ + { "lat": 40.8102846, "lon": -73.9435449 }, + { "lat": 40.8103444, "lon": -73.9435014 }, + { "lat": 40.8108573, "lon": -73.9431279 }, + { "lat": 40.8109081, "lon": -73.9430908 }, + { "lat": 40.8109666, "lon": -73.9430482 }, + { "lat": 40.8114792, "lon": -73.9426749 }, + { "lat": 40.8115326, "lon": -73.9426361 }, + { "lat": 40.8115934, "lon": -73.9425920 }, + { "lat": 40.8121039, "lon": -73.9422200 }, + { "lat": 40.8121691, "lon": -73.9421726 }, + { "lat": 40.8122271, "lon": -73.9421319 }, + { "lat": 40.8125338, "lon": -73.9419161 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 305323025, + "bounds": { + "minlat": 40.7979808, + "minlon": -73.9531111, + "maxlat": 40.7982188, + "maxlon": -73.9523960 + }, + "nodes": [ + 2058919983, + 12815989246, + 2562438648, + 2058919974, + 2562438649, + 2058919978, + 2562438650, + 2058919991, + 410233263, + 12815989283, + 2058919995, + 2562438652, + 7123873149, + 42426374 + ], + "geometry": [ + { "lat": 40.7980453, "lon": -73.9531111 }, + { "lat": 40.7980159, "lon": -73.9530488 }, + { "lat": 40.7979935, "lon": -73.9529756 }, + { "lat": 40.7979826, "lon": -73.9528953 }, + { "lat": 40.7979808, "lon": -73.9528105 }, + { "lat": 40.7979883, "lon": -73.9527462 }, + { "lat": 40.7980001, "lon": -73.9526814 }, + { "lat": 40.7980196, "lon": -73.9526168 }, + { "lat": 40.7980410, "lon": -73.9525710 }, + { "lat": 40.7980577, "lon": -73.9525499 }, + { "lat": 40.7980663, "lon": -73.9525382 }, + { "lat": 40.7980962, "lon": -73.9525069 }, + { "lat": 40.7981310, "lon": -73.9524752 }, + { "lat": 40.7982188, "lon": -73.9523960 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "hgv": "no", + "highway": "service", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Lenox Avenue Approach", + "network": "lcn", + "oneway": "yes", + "oneway:bicycle": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 305323026, + "bounds": { + "minlat": 40.8191141, + "minlon": -73.9372632, + "maxlat": 40.8191777, + "maxlon": -73.9371126 + }, + "nodes": [ + 3099327965, + 42440385 + ], + "geometry": [ + { "lat": 40.8191141, "lon": -73.9371126 }, + { "lat": 40.8191777, "lon": -73.9372632 } + ], + "tags": { + "highway": "residential", + "name": "West 143rd Street", + "name_1": "West 143 Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 305323027, + "bounds": { + "minlat": 40.7980453, + "minlon": -73.9536660, + "maxlat": 40.7982220, + "maxlon": -73.9531111 + }, + "nodes": [ + 2058919983, + 2058919993, + 2058920017, + 9178942112, + 2562438661, + 9908383425, + 9908390655 + ], + "geometry": [ + { "lat": 40.7980453, "lon": -73.9531111 }, + { "lat": 40.7980728, "lon": -73.9531969 }, + { "lat": 40.7981642, "lon": -73.9534422 }, + { "lat": 40.7981881, "lon": -73.9535120 }, + { "lat": 40.7982087, "lon": -73.9535859 }, + { "lat": 40.7982175, "lon": -73.9536292 }, + { "lat": 40.7982220, "lon": -73.9536660 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "hgv": "no", + "highway": "service", + "lanes": "4", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Lenox Avenue Approach", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 305323028, + "bounds": { + "minlat": 40.8020733, + "minlon": -73.9524444, + "maxlat": 40.8031843, + "maxlon": -73.9497548 + }, + "nodes": [ + 3099327952, + 10170875048, + 5266449888, + 5481882788, + 8758345339, + 2141026506 + ], + "geometry": [ + { "lat": 40.8020733, "lon": -73.9497548 }, + { "lat": 40.8021165, "lon": -73.9498595 }, + { "lat": 40.8021852, "lon": -73.9500257 }, + { "lat": 40.8027982, "lon": -73.9515109 }, + { "lat": 40.8031371, "lon": -73.9523332 }, + { "lat": 40.8031843, "lon": -73.9524444 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "name_1": "West 116 Street", + "sidewalk:both": "separate", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 305323029, + "bounds": { + "minlat": 40.8200092, + "minlon": -73.9364574, + "maxlat": 40.8204475, + "maxlon": -73.9362503 + }, + "nodes": [ + 4207863944, + 4207863946, + 9166288594, + 42432659 + ], + "geometry": [ + { "lat": 40.8200092, "lon": -73.9364574 }, + { "lat": 40.8202990, "lon": -73.9362687 }, + { "lat": 40.8203304, "lon": -73.9362650 }, + { "lat": 40.8204475, "lon": -73.9362503 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "sidewalk": "separate", + "turn:lanes": "left|through|right", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 305323030, + "bounds": { + "minlat": 40.8077463, + "minlon": -73.9455708, + "maxlat": 40.8078108, + "maxlon": -73.9454127 + }, + "nodes": [ + 42453246, + 3099326120 + ], + "geometry": [ + { "lat": 40.8077463, "lon": -73.9454127 }, + { "lat": 40.8078108, "lon": -73.9455708 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 305323031, + "bounds": { + "minlat": 40.7997859, + "minlon": -73.9514175, + "maxlat": 40.8020733, + "maxlon": -73.9497548 + }, + "nodes": [ + 3099327952, + 10170875047, + 8807524521, + 3099327937, + 8807524516, + 8807524523, + 3099326121, + 8807524512, + 8807524489, + 3099326117, + 8807524544, + 4207724566 + ], + "geometry": [ + { "lat": 40.8020733, "lon": -73.9497548 }, + { "lat": 40.8019813, "lon": -73.9498211 }, + { "lat": 40.8014402, "lon": -73.9502107 }, + { "lat": 40.8013803, "lon": -73.9502539 }, + { "lat": 40.8013306, "lon": -73.9502911 }, + { "lat": 40.8008154, "lon": -73.9506735 }, + { "lat": 40.8007573, "lon": -73.9507166 }, + { "lat": 40.8007082, "lon": -73.9507527 }, + { "lat": 40.8001891, "lon": -73.9511341 }, + { "lat": 40.8001332, "lon": -73.9511752 }, + { "lat": 40.8000808, "lon": -73.9512117 }, + { "lat": 40.7997859, "lon": -73.9514175 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 305323032, + "bounds": { + "minlat": 40.8070675, + "minlon": -73.9460569, + "maxlat": 40.8071315, + "maxlon": -73.9459054 + }, + "nodes": [ + 3099326118, + 42453241 + ], + "geometry": [ + { "lat": 40.8071315, "lon": -73.9460569 }, + { "lat": 40.8070675, "lon": -73.9459054 } + ], + "tags": { + "highway": "residential", + "name": "West 124th Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 305323033, + "bounds": { + "minlat": 40.8191141, + "minlon": -73.9371126, + "maxlat": 40.8197420, + "maxlon": -73.9366464 + }, + "nodes": [ + 3099327965, + 9557086591, + 9557086552, + 3099326126 + ], + "geometry": [ + { "lat": 40.8191141, "lon": -73.9371126 }, + { "lat": 40.8191819, "lon": -73.9370643 }, + { "lat": 40.8196864, "lon": -73.9366873 }, + { "lat": 40.8197420, "lon": -73.9366464 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "sidewalk": "separate", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 305323034, + "bounds": { + "minlat": 40.8166504, + "minlon": -73.9389307, + "maxlat": 40.8172567, + "maxlon": -73.9384793 + }, + "nodes": [ + 3099327930, + 8212384286, + 8212384287, + 3099327948 + ], + "geometry": [ + { "lat": 40.8166504, "lon": -73.9389307 }, + { "lat": 40.8167250, "lon": -73.9388752 }, + { "lat": 40.8172006, "lon": -73.9385207 }, + { "lat": 40.8172567, "lon": -73.9384793 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 305323035, + "bounds": { + "minlat": 40.8078108, + "minlon": -73.9476915, + "maxlat": 40.8087056, + "maxlon": -73.9455708 + }, + "nodes": [ + 3099326120, + 10170875037, + 5266458359, + 5266458357, + 5266458358, + 12231213548 + ], + "geometry": [ + { "lat": 40.8078108, "lon": -73.9455708 }, + { "lat": 40.8078526, "lon": -73.9456699 }, + { "lat": 40.8083549, "lon": -73.9468614 }, + { "lat": 40.8083765, "lon": -73.9469126 }, + { "lat": 40.8083953, "lon": -73.9469573 }, + { "lat": 40.8087056, "lon": -73.9476915 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 305323036, + "bounds": { + "minlat": 40.8074784, + "minlon": -73.9458086, + "maxlat": 40.8078108, + "maxlon": -73.9455708 + }, + "nodes": [ + 3099326120, + 10170875036, + 9055306042 + ], + "geometry": [ + { "lat": 40.8078108, "lon": -73.9455708 }, + { "lat": 40.8077152, "lon": -73.9456391 }, + { "lat": 40.8074784, "lon": -73.9458086 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 306512597, + "bounds": { + "minlat": 40.7499494, + "minlon": -73.9367394, + "maxlat": 40.7511975, + "maxlon": -73.9365909 + }, + "nodes": [ + 3114612553, + 2963821755, + 5493300585, + 8062562639, + 8315072937, + 592643532 + ], + "geometry": [ + { "lat": 40.7499494, "lon": -73.9367394 }, + { "lat": 40.7500038, "lon": -73.9367135 }, + { "lat": 40.7508494, "lon": -73.9366251 }, + { "lat": 40.7510383, "lon": -73.9366065 }, + { "lat": 40.7511228, "lon": -73.9365965 }, + { "lat": 40.7511975, "lon": -73.9365909 } + ], + "tags": { + "highway": "residential", + "name": "41st Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 306512601, + "bounds": { + "minlat": 40.7499279, + "minlon": -73.9402810, + "maxlat": 40.7509864, + "maxlon": -73.9378516 + }, + "nodes": [ + 12849687311, + 2963821772, + 4960280547, + 6813394090, + 42817428, + 6813394097, + 4457118203, + 42872016, + 4457118198, + 4457126154, + 2468400258, + 42808195 + ], + "geometry": [ + { "lat": 40.7499279, "lon": -73.9378516 }, + { "lat": 40.7499427, "lon": -73.9378863 }, + { "lat": 40.7500144, "lon": -73.9380468 }, + { "lat": 40.7502300, "lon": -73.9385356 }, + { "lat": 40.7502624, "lon": -73.9386102 }, + { "lat": 40.7502992, "lon": -73.9386927 }, + { "lat": 40.7506012, "lon": -73.9393794 }, + { "lat": 40.7506253, "lon": -73.9394341 }, + { "lat": 40.7506604, "lon": -73.9395168 }, + { "lat": 40.7507544, "lon": -73.9397386 }, + { "lat": 40.7509455, "lon": -73.9401877 }, + { "lat": 40.7509864, "lon": -73.9402810 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "name": "Queens Plaza North", + "name_1": "Bridge Plaza North", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 306526976, + "bounds": { + "minlat": 40.7402571, + "minlon": -73.9593763, + "maxlat": 40.7408018, + "maxlon": -73.9548495 + }, + "nodes": [ + 42786626, + 6644311076, + 11196970684, + 5481857841, + 11203867452, + 42786628, + 3656009587, + 6594493306, + 42786631, + 12125828325, + 12125828324, + 12125828323, + 12125828322, + 11429212255, + 42786594 + ], + "geometry": [ + { "lat": 40.7408018, "lon": -73.9593763 }, + { "lat": 40.7407865, "lon": -73.9592959 }, + { "lat": 40.7407764, "lon": -73.9592464 }, + { "lat": 40.7405901, "lon": -73.9582850 }, + { "lat": 40.7404564, "lon": -73.9575831 }, + { "lat": 40.7404310, "lon": -73.9574540 }, + { "lat": 40.7404088, "lon": -73.9573397 }, + { "lat": 40.7403320, "lon": -73.9569455 }, + { "lat": 40.7402942, "lon": -73.9567420 }, + { "lat": 40.7402849, "lon": -73.9566847 }, + { "lat": 40.7402757, "lon": -73.9566188 }, + { "lat": 40.7402705, "lon": -73.9565500 }, + { "lat": 40.7402690, "lon": -73.9564892 }, + { "lat": 40.7402586, "lon": -73.9550438 }, + { "lat": 40.7402571, "lon": -73.9548495 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "54th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "54th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 306526978, + "bounds": { + "minlat": 40.7408018, + "minlon": -73.9608097, + "maxlat": 40.7410690, + "maxlon": -73.9593763 + }, + "nodes": [ + 42786626, + 11196971013, + 11202602818, + 11191862291, + 8018964707 + ], + "geometry": [ + { "lat": 40.7408018, "lon": -73.9593763 }, + { "lat": 40.7408202, "lon": -73.9594756 }, + { "lat": 40.7410384, "lon": -73.9606426 }, + { "lat": 40.7410487, "lon": -73.9606962 }, + { "lat": 40.7410690, "lon": -73.9608097 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "54th Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "54th", + "tiger:name_type": "Ave", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 306526979, + "bounds": { + "minlat": 40.7423951, + "minlon": -73.9599679, + "maxlat": 40.7427597, + "maxlon": -73.9598983 + }, + "nodes": [ + 2297172756, + 9982771553, + 3567864518, + 6644096957, + 11889239946, + 2297172752 + ], + "geometry": [ + { "lat": 40.7427597, "lon": -73.9598983 }, + { "lat": 40.7426711, "lon": -73.9599218 }, + { "lat": 40.7425806, "lon": -73.9599393 }, + { "lat": 40.7425078, "lon": -73.9599512 }, + { "lat": 40.7424684, "lon": -73.9599570 }, + { "lat": 40.7423951, "lon": -73.9599679 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "surface": "asphalt", + "turn:lanes:forward": "left" + } +}, +{ + "type": "way", + "id": 307958482, + "bounds": { + "minlat": 40.7794805, + "minlon": -73.9125649, + "maxlat": 40.7796499, + "maxlon": -73.9123324 + }, + "nodes": [ + 3132177403, + 2300199444, + 2300199437, + 2633057556, + 3132177404, + 3132177403 + ], + "geometry": [ + { "lat": 40.7794805, "lon": -73.9124125 }, + { "lat": 40.7796001, "lon": -73.9125649 }, + { "lat": 40.7796256, "lon": -73.9125121 }, + { "lat": 40.7796499, "lon": -73.9124952 }, + { "lat": 40.7795456, "lon": -73.9123324 }, + { "lat": 40.7794805, "lon": -73.9124125 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "noname": "yes" + } +}, +{ + "type": "way", + "id": 307963791, + "bounds": { + "minlat": 40.8578328, + "minlon": -73.9741986, + "maxlat": 40.8593054, + "maxlon": -73.9734357 + }, + "nodes": [ + 299386721, + 13765164908, + 13765164907, + 299386722, + 7921808841, + 13765116193, + 13765164906, + 7921808826, + 13765116192, + 7921816999, + 13765116194, + 76464201, + 13765116195, + 7921817006, + 13765116196, + 7921808833, + 13765116199, + 7921808848, + 13765116197, + 13765116190, + 13765116198, + 13754077747, + 13765116191, + 76464202 + ], + "geometry": [ + { "lat": 40.8578328, "lon": -73.9734357 }, + { "lat": 40.8579664, "lon": -73.9735285 }, + { "lat": 40.8580502, "lon": -73.9735848 }, + { "lat": 40.8580973, "lon": -73.9736160 }, + { "lat": 40.8581678, "lon": -73.9736611 }, + { "lat": 40.8582227, "lon": -73.9736939 }, + { "lat": 40.8582598, "lon": -73.9737156 }, + { "lat": 40.8582869, "lon": -73.9737314 }, + { "lat": 40.8583540, "lon": -73.9737695 }, + { "lat": 40.8584239, "lon": -73.9738059 }, + { "lat": 40.8584858, "lon": -73.9738368 }, + { "lat": 40.8585488, "lon": -73.9738682 }, + { "lat": 40.8586139, "lon": -73.9738994 }, + { "lat": 40.8586724, "lon": -73.9739275 }, + { "lat": 40.8587314, "lon": -73.9739551 }, + { "lat": 40.8588016, "lon": -73.9739881 }, + { "lat": 40.8588669, "lon": -73.9740171 }, + { "lat": 40.8589183, "lon": -73.9740399 }, + { "lat": 40.8589648, "lon": -73.9740603 }, + { "lat": 40.8590260, "lon": -73.9740867 }, + { "lat": 40.8590852, "lon": -73.9741116 }, + { "lat": 40.8591492, "lon": -73.9741373 }, + { "lat": 40.8592323, "lon": -73.9741700 }, + { "lat": 40.8593054, "lon": -73.9741986 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "Paterson;Hackensack|Hackensack", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "toll": "no", + "turn:lanes": "slight_left;through|none" + } +}, +{ + "type": "way", + "id": 308090225, + "bounds": { + "minlat": 40.7757001, + "minlon": -73.9233844, + "maxlat": 40.7763937, + "maxlon": -73.9226642 + }, + "nodes": [ + 3133710393, + 3133710394, + 3133710395, + 3133710396, + 3133710397, + 3133710398, + 3133710399, + 3133710400, + 3133710393 + ], + "geometry": [ + { "lat": 40.7758286, "lon": -73.9230829 }, + { "lat": 40.7758433, "lon": -73.9230532 }, + { "lat": 40.7757001, "lon": -73.9229700 }, + { "lat": 40.7759307, "lon": -73.9226642 }, + { "lat": 40.7763937, "lon": -73.9233200 }, + { "lat": 40.7763917, "lon": -73.9233844 }, + { "lat": 40.7763074, "lon": -73.9233294 }, + { "lat": 40.7762998, "lon": -73.9233577 }, + { "lat": 40.7758286, "lon": -73.9230829 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "noname": "yes" + } +}, +{ + "type": "way", + "id": 308322431, + "bounds": { + "minlat": 40.7431307, + "minlon": -74.0087459, + "maxlat": 40.7441160, + "maxlon": -74.0085554 + }, + "nodes": [ + 8288270047, + 10220180386, + 11272689115, + 11027912161 + ], + "geometry": [ + { "lat": 40.7441160, "lon": -74.0085554 }, + { "lat": 40.7434737, "lon": -74.0086773 }, + { "lat": 40.7434191, "lon": -74.0086879 }, + { "lat": 40.7431307, "lon": -74.0087459 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 308322446, + "bounds": { + "minlat": 40.7671354, + "minlon": -73.9823637, + "maxlat": 40.7673998, + "maxlon": -73.9817493 + }, + "nodes": [ + 42435716, + 7597291078, + 10036563042, + 42428332 + ], + "geometry": [ + { "lat": 40.7673998, "lon": -73.9823637 }, + { "lat": 40.7673432, "lon": -73.9822495 }, + { "lat": 40.7671783, "lon": -73.9818442 }, + { "lat": 40.7671354, "lon": -73.9817493 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "name": "West 58th Street", + "name:ru": "Западная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 308322447, + "bounds": { + "minlat": 40.7639136, + "minlon": -73.9795321, + "maxlat": 40.7662134, + "maxlon": -73.9741072 + }, + "nodes": [ + 42440025, + 10170842514, + 10171655565, + 42430390, + 10171655562, + 4347534777, + 42427764 + ], + "geometry": [ + { "lat": 40.7662134, "lon": -73.9795321 }, + { "lat": 40.7661607, "lon": -73.9794089 }, + { "lat": 40.7650598, "lon": -73.9768355 }, + { "lat": 40.7650041, "lon": -73.9767052 }, + { "lat": 40.7649489, "lon": -73.9765741 }, + { "lat": 40.7639694, "lon": -73.9742394 }, + { "lat": 40.7639136, "lon": -73.9741072 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 58th Street", + "name:ru": "Западная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "10.5" + } +}, +{ + "type": "way", + "id": 308322448, + "bounds": { + "minlat": 40.7666902, + "minlon": -73.9818244, + "maxlat": 40.7671354, + "maxlon": -73.9817493 + }, + "nodes": [ + 42428332, + 10036563041, + 10862166674 + ], + "geometry": [ + { "lat": 40.7671354, "lon": -73.9817493 }, + { "lat": 40.7670520, "lon": -73.9817626 }, + { "lat": 40.7666902, "lon": -73.9818244 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 308329351, + "bounds": { + "minlat": 40.8631202, + "minlon": -73.9206580, + "maxlat": 40.8631903, + "maxlon": -73.9206133 + }, + "nodes": [ + 1764405361, + 42452495 + ], + "geometry": [ + { "lat": 40.8631903, "lon": -73.9206580 }, + { "lat": 40.8631202, "lon": -73.9206133 } + ], + "tags": { + "highway": "tertiary", + "name": "West 204th Street", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "204th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 308329352, + "bounds": { + "minlat": 40.8657937, + "minlon": -73.9265267, + "maxlat": 40.8677070, + "maxlon": -73.9212171 + }, + "nodes": [ + 42429222, + 9561420824, + 9561399411, + 42429220, + 8952453922, + 9561420860, + 42429217, + 9561420861, + 9561420856, + 42429216, + 9561420857, + 11591951234, + 11787450970 + ], + "geometry": [ + { "lat": 40.8677070, "lon": -73.9212171 }, + { "lat": 40.8676676, "lon": -73.9213249 }, + { "lat": 40.8670533, "lon": -73.9230078 }, + { "lat": 40.8670160, "lon": -73.9231100 }, + { "lat": 40.8669792, "lon": -73.9232126 }, + { "lat": 40.8663711, "lon": -73.9249072 }, + { "lat": 40.8663360, "lon": -73.9250050 }, + { "lat": 40.8662959, "lon": -73.9251166 }, + { "lat": 40.8660514, "lon": -73.9257983 }, + { "lat": 40.8660250, "lon": -73.9258720 }, + { "lat": 40.8659914, "lon": -73.9259670 }, + { "lat": 40.8658667, "lon": -73.9263199 }, + { "lat": 40.8657937, "lon": -73.9265267 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10034", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 308329353, + "bounds": { + "minlat": 40.8631202, + "minlon": -73.9206133, + "maxlat": 40.8634843, + "maxlon": -73.9197437 + }, + "nodes": [ + 42452495, + 9561566538, + 13703152927, + 13703152931, + 1764626362, + 1763748995 + ], + "geometry": [ + { "lat": 40.8631202, "lon": -73.9206133 }, + { "lat": 40.8631631, "lon": -73.9205064 }, + { "lat": 40.8631955, "lon": -73.9204256 }, + { "lat": 40.8632728, "lon": -73.9202329 }, + { "lat": 40.8633778, "lon": -73.9199712 }, + { "lat": 40.8634843, "lon": -73.9197437 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Nagle Avenue", + "parking:lane:both": "parallel", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 308337556, + "bounds": { + "minlat": 40.7475022, + "minlon": -73.9412696, + "maxlat": 40.7476037, + "maxlon": -73.9412109 + }, + "nodes": [ + 2971841358, + 2971841362 + ], + "geometry": [ + { "lat": 40.7476037, "lon": -73.9412696 }, + { "lat": 40.7475022, "lon": -73.9412109 } + ], + "tags": { + "highway": "primary", + "name": "43rd Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 308337557, + "bounds": { + "minlat": 40.7475022, + "minlon": -73.9412109, + "maxlat": 40.7481346, + "maxlon": -73.9395953 + }, + "nodes": [ + 2971841362, + 9371728441, + 6643455983, + 11565738782, + 6766576560, + 9982698543, + 42844297, + 2971840925 + ], + "geometry": [ + { "lat": 40.7475022, "lon": -73.9412109 }, + { "lat": 40.7475476, "lon": -73.9410834 }, + { "lat": 40.7477306, "lon": -73.9405840 }, + { "lat": 40.7478395, "lon": -73.9402709 }, + { "lat": 40.7479424, "lon": -73.9399820 }, + { "lat": 40.7480080, "lon": -73.9397894 }, + { "lat": 40.7480340, "lon": -73.9397488 }, + { "lat": 40.7481346, "lon": -73.9395953 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 308337558, + "bounds": { + "minlat": 40.7458232, + "minlon": -73.9456423, + "maxlat": 40.7466130, + "maxlon": -73.9438229 + }, + "nodes": [ + 2971841370, + 4228583946, + 8996531605, + 6603473446, + 9982745713, + 6603473443, + 42844264 + ], + "geometry": [ + { "lat": 40.7466130, "lon": -73.9438229 }, + { "lat": 40.7465516, "lon": -73.9439634 }, + { "lat": 40.7464750, "lon": -73.9441425 }, + { "lat": 40.7462071, "lon": -73.9448070 }, + { "lat": 40.7459586, "lon": -73.9454341 }, + { "lat": 40.7459200, "lon": -73.9454985 }, + { "lat": 40.7458232, "lon": -73.9456423 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 309136121, + "bounds": { + "minlat": 40.7782921, + "minlon": -73.9085582, + "maxlat": 40.7786480, + "maxlon": -73.9080511 + }, + "nodes": [ + 3778353163, + 7806681617, + 10845792251, + 3144540461 + ], + "geometry": [ + { "lat": 40.7782921, "lon": -73.9080511 }, + { "lat": 40.7783760, "lon": -73.9081721 }, + { "lat": 40.7783890, "lon": -73.9081905 }, + { "lat": 40.7786480, "lon": -73.9085582 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 309138548, + "bounds": { + "minlat": 40.7739492, + "minlon": -73.9071398, + "maxlat": 40.7750826, + "maxlon": -73.9053556 + }, + "nodes": [ + 3144560089, + 9776150548, + 3144560092, + 3144560090, + 13017171989, + 3144560091 + ], + "geometry": [ + { "lat": 40.7741539, "lon": -73.9071398 }, + { "lat": 40.7741137, "lon": -73.9070796 }, + { "lat": 40.7739492, "lon": -73.9068335 }, + { "lat": 40.7739776, "lon": -73.9067195 }, + { "lat": 40.7745554, "lon": -73.9060064 }, + { "lat": 40.7750826, "lon": -73.9053556 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 309148657, + "bounds": { + "minlat": 40.7147296, + "minlon": -73.9957337, + "maxlat": 40.7155795, + "maxlon": -73.9949325 + }, + "nodes": [ + 588455736, + 588455866, + 4160352407, + 588455867, + 4160352399, + 4160368843, + 4160368850, + 588455868, + 4160368844, + 588455869, + 4160368853, + 4160368835, + 541467269, + 4160368848 + ], + "geometry": [ + { "lat": 40.7155795, "lon": -73.9957337 }, + { "lat": 40.7154348, "lon": -73.9956230 }, + { "lat": 40.7153864, "lon": -73.9955764 }, + { "lat": 40.7153327, "lon": -73.9955182 }, + { "lat": 40.7152809, "lon": -73.9954569 }, + { "lat": 40.7151609, "lon": -73.9953069 }, + { "lat": 40.7151141, "lon": -73.9952535 }, + { "lat": 40.7150676, "lon": -73.9952032 }, + { "lat": 40.7150219, "lon": -73.9951532 }, + { "lat": 40.7149751, "lon": -73.9951072 }, + { "lat": 40.7149236, "lon": -73.9950602 }, + { "lat": 40.7148665, "lon": -73.9950162 }, + { "lat": 40.7147982, "lon": -73.9949714 }, + { "lat": 40.7147296, "lon": -73.9949325 } + ], + "tags": { + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "35 mph", + "moped": "no", + "name": "Canal Street", + "oneway": "yes", + "parking:both:restriction": "no_stopping" + } +}, +{ + "type": "way", + "id": 309956783, + "bounds": { + "minlat": 40.8100023, + "minlon": -73.9616769, + "maxlat": 40.8112551, + "maxlon": -73.9587270 + }, + "nodes": [ + 3579432161, + 7004347456, + 9517167694, + 561035338, + 2541754772, + 42428844 + ], + "geometry": [ + { "lat": 40.8100023, "lon": -73.9587270 }, + { "lat": 40.8100600, "lon": -73.9588689 }, + { "lat": 40.8111279, "lon": -73.9613804 }, + { "lat": 40.8111729, "lon": -73.9614867 }, + { "lat": 40.8112090, "lon": -73.9615698 }, + { "lat": 40.8112551, "lon": -73.9616769 } + ], + "tags": { + "alt_name": "George Carlin Way", + "cycleway:both": "no", + "highway": "residential", + "name": "West 121st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 309956784, + "bounds": { + "minlat": 40.8106334, + "minlon": -73.9582686, + "maxlat": 40.8127712, + "maxlon": -73.9567152 + }, + "nodes": [ + 3579432162, + 6791440546, + 6886295088, + 42438928, + 7198971072, + 3579426492, + 7087063689, + 7087041442, + 7598973478, + 10055027280, + 42421852, + 6993051360, + 12753597182 + ], + "geometry": [ + { "lat": 40.8106334, "lon": -73.9582686 }, + { "lat": 40.8107103, "lon": -73.9582130 }, + { "lat": 40.8112080, "lon": -73.9578513 }, + { "lat": 40.8112717, "lon": -73.9578050 }, + { "lat": 40.8113250, "lon": -73.9577662 }, + { "lat": 40.8118527, "lon": -73.9573827 }, + { "lat": 40.8119026, "lon": -73.9573464 }, + { "lat": 40.8119433, "lon": -73.9573168 }, + { "lat": 40.8122535, "lon": -73.9570913 }, + { "lat": 40.8125675, "lon": -73.9568629 }, + { "lat": 40.8126219, "lon": -73.9568234 }, + { "lat": 40.8126893, "lon": -73.9567750 }, + { "lat": 40.8127712, "lon": -73.9567152 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lit": "yes", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 311764601, + "bounds": { + "minlat": 40.7028288, + "minlon": -73.9947825, + "maxlat": 40.7029148, + "maxlon": -73.9944211 + }, + "nodes": [ + 2340051732, + 11674209503, + 6720137604, + 11674209502, + 11674209501, + 6720137603, + 3174844138, + 3174844141 + ], + "geometry": [ + { "lat": 40.7028794, "lon": -73.9947825 }, + { "lat": 40.7028977, "lon": -73.9947568 }, + { "lat": 40.7029101, "lon": -73.9947301 }, + { "lat": 40.7029148, "lon": -73.9946979 }, + { "lat": 40.7029112, "lon": -73.9946567 }, + { "lat": 40.7029001, "lon": -73.9946142 }, + { "lat": 40.7028747, "lon": -73.9945433 }, + { "lat": 40.7028288, "lon": -73.9944211 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 311764602, + "bounds": { + "minlat": 40.7012292, + "minlon": -73.9920917, + "maxlat": 40.7016164, + "maxlon": -73.9916089 + }, + "nodes": [ + 11673036953, + 465132522, + 7014570048 + ], + "geometry": [ + { "lat": 40.7016164, "lon": -73.9920917 }, + { "lat": 40.7015534, "lon": -73.9920109 }, + { "lat": 40.7012292, "lon": -73.9916089 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 313639560, + "bounds": { + "minlat": 40.7222964, + "minlon": -74.0122613, + "maxlat": 40.7224521, + "maxlon": -74.0120435 + }, + "nodes": [ + 3196459858, + 3196459866, + 11490138315, + 3196459865, + 3196459859, + 3196459860, + 3196459861, + 3196459858 + ], + "geometry": [ + { "lat": 40.7224521, "lon": -74.0122359 }, + { "lat": 40.7224362, "lon": -74.0122394 }, + { "lat": 40.7223888, "lon": -74.0122488 }, + { "lat": 40.7223406, "lon": -74.0122584 }, + { "lat": 40.7223257, "lon": -74.0122613 }, + { "lat": 40.7222964, "lon": -74.0120738 }, + { "lat": 40.7224417, "lon": -74.0120435 }, + { "lat": 40.7224521, "lon": -74.0122359 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "fine_gravel" + } +}, +{ + "type": "way", + "id": 313865826, + "bounds": { + "minlat": 40.7520489, + "minlon": -73.9279004, + "maxlat": 40.7562613, + "maxlon": -73.9245059 + }, + "nodes": [ + 42926395, + 3573447550, + 10670430928, + 10670430931, + 3569858128, + 42926398, + 3569858123, + 3569401924, + 42815834, + 3569401918, + 3569401897, + 42926409 + ], + "geometry": [ + { "lat": 40.7562613, "lon": -73.9245059 }, + { "lat": 40.7561948, "lon": -73.9245600 }, + { "lat": 40.7557222, "lon": -73.9249444 }, + { "lat": 40.7556389, "lon": -73.9250122 }, + { "lat": 40.7547820, "lon": -73.9257099 }, + { "lat": 40.7547200, "lon": -73.9257596 }, + { "lat": 40.7546530, "lon": -73.9258139 }, + { "lat": 40.7529096, "lon": -73.9272194 }, + { "lat": 40.7528468, "lon": -73.9272710 }, + { "lat": 40.7527853, "lon": -73.9273215 }, + { "lat": 40.7521725, "lon": -73.9278085 }, + { "lat": 40.7520489, "lon": -73.9279004 } + ], + "tags": { + "highway": "residential", + "name": "36th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 315174425, + "bounds": { + "minlat": 40.7178944, + "minlon": -73.9907100, + "maxlat": 40.7182673, + "maxlon": -73.9894779 + }, + "nodes": [ + 42432105, + 4300912709, + 13033656106, + 42432103, + 13033656109, + 8520814883, + 8231909757, + 42432102 + ], + "geometry": [ + { "lat": 40.7182673, "lon": -73.9907100 }, + { "lat": 40.7182440, "lon": -73.9906330 }, + { "lat": 40.7181439, "lon": -73.9902993 }, + { "lat": 40.7181237, "lon": -73.9902319 }, + { "lat": 40.7181070, "lon": -73.9901768 }, + { "lat": 40.7179291, "lon": -73.9895919 }, + { "lat": 40.7179157, "lon": -73.9895479 }, + { "lat": 40.7178944, "lon": -73.9894779 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (Su-We 12:00-21:00; Th-Sa 12:00-23:00)", + "motor_vehicle:conditional": "destination @ (Su-We 12:00-21:00; Th-Sa 12:00-23:00)", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 317167966, + "bounds": { + "minlat": 40.7143906, + "minlon": -73.9863539, + "maxlat": 40.7150720, + "maxlon": -73.9859904 + }, + "nodes": [ + 5481948058, + 5481948059, + 5481948057, + 3234087900, + 8310246522, + 3234087898 + ], + "geometry": [ + { "lat": 40.7150720, "lon": -73.9859904 }, + { "lat": 40.7148697, "lon": -73.9863539 }, + { "lat": 40.7147424, "lon": -73.9863370 }, + { "lat": 40.7144976, "lon": -73.9863071 }, + { "lat": 40.7144712, "lon": -73.9863033 }, + { "lat": 40.7143906, "lon": -73.9862926 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 317349868, + "bounds": { + "minlat": 40.7110436, + "minlon": -73.9866727, + "maxlat": 40.7111099, + "maxlon": -73.9860214 + }, + "nodes": [ + 479847982, + 8310246575, + 3235958215 + ], + "geometry": [ + { "lat": 40.7110436, "lon": -73.9866727 }, + { "lat": 40.7110573, "lon": -73.9865391 }, + { "lat": 40.7111099, "lon": -73.9860214 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 317378542, + "bounds": { + "minlat": 40.7428292, + "minlon": -74.0056997, + "maxlat": 40.7429677, + "maxlon": -74.0055970 + }, + "nodes": [ + 3236324368, + 8310246356, + 3236324371 + ], + "geometry": [ + { "lat": 40.7428292, "lon": -74.0056997 }, + { "lat": 40.7428885, "lon": -74.0056557 }, + { "lat": 40.7429677, "lon": -74.0055970 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 317378545, + "bounds": { + "minlat": 40.7425849, + "minlon": -74.0055970, + "maxlat": 40.7429677, + "maxlon": -74.0050276 + }, + "nodes": [ + 3236324371, + 4555575481, + 3236324365, + 4555575480, + 8310246355, + 3236324362 + ], + "geometry": [ + { "lat": 40.7429677, "lon": -74.0055970 }, + { "lat": 40.7429258, "lon": -74.0054984 }, + { "lat": 40.7427255, "lon": -74.0050276 }, + { "lat": 40.7426781, "lon": -74.0050628 }, + { "lat": 40.7426468, "lon": -74.0050860 }, + { "lat": 40.7425849, "lon": -74.0051318 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 317400960, + "bounds": { + "minlat": 40.7274304, + "minlon": -73.9972893, + "maxlat": 40.7275630, + "maxlon": -73.9971775 + }, + "nodes": [ + 1692433923, + 3236571729 + ], + "geometry": [ + { "lat": 40.7275630, "lon": -73.9971775 }, + { "lat": 40.7274304, "lon": -73.9972893 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 317400961, + "bounds": { + "minlat": 40.7272964, + "minlon": -73.9974022, + "maxlat": 40.7274304, + "maxlon": -73.9972893 + }, + "nodes": [ + 3236571729, + 8309478916, + 3236571730 + ], + "geometry": [ + { "lat": 40.7274304, "lon": -73.9972893 }, + { "lat": 40.7273585, "lon": -73.9973499 }, + { "lat": 40.7272964, "lon": -73.9974022 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 317400962, + "bounds": { + "minlat": 40.7269662, + "minlon": -73.9987723, + "maxlat": 40.7276837, + "maxlon": -73.9981746 + }, + "nodes": [ + 4745829026, + 5481866326, + 5481866323, + 8309479000, + 1692433924 + ], + "geometry": [ + { "lat": 40.7269662, "lon": -73.9987723 }, + { "lat": 40.7270319, "lon": -73.9987176 }, + { "lat": 40.7273031, "lon": -73.9984916 }, + { "lat": 40.7276289, "lon": -73.9982202 }, + { "lat": 40.7276837, "lon": -73.9981746 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Wooster Street", + "name:etymology:wikidata": "Q4993246", + "name:ko": "우스터 스트리트", + "surface": "sett", + "wikidata": "Q19582621", + "wikipedia": "en:Wooster Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 318470913, + "bounds": { + "minlat": 40.7818281, + "minlon": -73.9733091, + "maxlat": 40.7826188, + "maxlon": -73.9721341 + }, + "nodes": [ + 3248774451, + 8318995250, + 3248774452, + 10172954613, + 10172954614, + 3248774453, + 3248774416, + 3248774454, + 10172954615, + 10172954617, + 10172954616, + 3248774455, + 10172955275, + 10172955274, + 3248774456, + 3248774458, + 3248774459, + 10172955575, + 10172955574, + 10172955573, + 3248774460, + 3248774661, + 3248774662, + 3248774663, + 3248774422, + 8318995249, + 3248774664 + ], + "geometry": [ + { "lat": 40.7826188, "lon": -73.9730915 }, + { "lat": 40.7825208, "lon": -73.9731653 }, + { "lat": 40.7824525, "lon": -73.9732159 }, + { "lat": 40.7823749, "lon": -73.9732723 }, + { "lat": 40.7823338, "lon": -73.9732934 }, + { "lat": 40.7822906, "lon": -73.9733064 }, + { "lat": 40.7822610, "lon": -73.9733079 }, + { "lat": 40.7822349, "lon": -73.9733091 }, + { "lat": 40.7821894, "lon": -73.9733013 }, + { "lat": 40.7821336, "lon": -73.9732786 }, + { "lat": 40.7820923, "lon": -73.9732505 }, + { "lat": 40.7820541, "lon": -73.9732189 }, + { "lat": 40.7820231, "lon": -73.9731809 }, + { "lat": 40.7819929, "lon": -73.9731287 }, + { "lat": 40.7819637, "lon": -73.9730648 }, + { "lat": 40.7818758, "lon": -73.9728530 }, + { "lat": 40.7818396, "lon": -73.9727587 }, + { "lat": 40.7818281, "lon": -73.9726947 }, + { "lat": 40.7818287, "lon": -73.9725974 }, + { "lat": 40.7818441, "lon": -73.9725104 }, + { "lat": 40.7818665, "lon": -73.9724481 }, + { "lat": 40.7818911, "lon": -73.9723953 }, + { "lat": 40.7819295, "lon": -73.9723457 }, + { "lat": 40.7819810, "lon": -73.9722982 }, + { "lat": 40.7820304, "lon": -73.9722623 }, + { "lat": 40.7821122, "lon": -73.9722015 }, + { "lat": 40.7822135, "lon": -73.9721341 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 318474882, + "bounds": { + "minlat": 40.7699024, + "minlon": -73.9771742, + "maxlat": 40.7713853, + "maxlon": -73.9747411 + }, + "nodes": [ + 3248816568, + 9908336688, + 9170842303, + 9170842300, + 9170842301, + 5307238001, + 9170842302, + 9170842304 + ], + "geometry": [ + { "lat": 40.7713853, "lon": -73.9771742 }, + { "lat": 40.7712729, "lon": -73.9769862 }, + { "lat": 40.7711719, "lon": -73.9768108 }, + { "lat": 40.7707855, "lon": -73.9761290 }, + { "lat": 40.7706836, "lon": -73.9759518 }, + { "lat": 40.7705810, "lon": -73.9757765 }, + { "lat": 40.7704772, "lon": -73.9756095 }, + { "lat": 40.7699024, "lon": -73.9747411 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 318476041, + "bounds": { + "minlat": 40.7786911, + "minlon": -73.9724391, + "maxlat": 40.7806594, + "maxlon": -73.9699943 + }, + "nodes": [ + 9908460424, + 247224534, + 3377460320, + 3248816517, + 9908460425, + 42427919, + 9908460426, + 4332562540, + 4332562523, + 5300342121, + 247224535, + 4332562528, + 4332562561, + 5300342123, + 42431404, + 5300342125, + 5300342122, + 247224536, + 6463087961 + ], + "geometry": [ + { "lat": 40.7806594, "lon": -73.9699943 }, + { "lat": 40.7806041, "lon": -73.9700783 }, + { "lat": 40.7804557, "lon": -73.9703134 }, + { "lat": 40.7800712, "lon": -73.9708897 }, + { "lat": 40.7799405, "lon": -73.9710685 }, + { "lat": 40.7798356, "lon": -73.9712047 }, + { "lat": 40.7797477, "lon": -73.9713080 }, + { "lat": 40.7797072, "lon": -73.9713525 }, + { "lat": 40.7796601, "lon": -73.9714044 }, + { "lat": 40.7795649, "lon": -73.9715028 }, + { "lat": 40.7794685, "lon": -73.9715962 }, + { "lat": 40.7793598, "lon": -73.9716951 }, + { "lat": 40.7791426, "lon": -73.9718929 }, + { "lat": 40.7790559, "lon": -73.9719791 }, + { "lat": 40.7789730, "lon": -73.9720669 }, + { "lat": 40.7788859, "lon": -73.9721633 }, + { "lat": 40.7788042, "lon": -73.9722666 }, + { "lat": 40.7787330, "lon": -73.9723697 }, + { "lat": 40.7786911, "lon": -73.9724391 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 318476060, + "bounds": { + "minlat": 40.7697266, + "minlon": -73.9746052, + "maxlat": 40.7697952, + "maxlon": -73.9744923 + }, + "nodes": [ + 1420632765, + 9906929096, + 595703385 + ], + "geometry": [ + { "lat": 40.7697266, "lon": -73.9746052 }, + { "lat": 40.7697610, "lon": -73.9745518 }, + { "lat": 40.7697952, "lon": -73.9744923 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "bridge": "yes", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 318476063, + "bounds": { + "minlat": 40.7730736, + "minlon": -73.9764777, + "maxlat": 40.7738371, + "maxlon": -73.9760520 + }, + "nodes": [ + 3377460323, + 9906929028, + 9178914789, + 9178914790, + 9906929030, + 9906929029, + 4332562577 + ], + "geometry": [ + { "lat": 40.7738371, "lon": -73.9760520 }, + { "lat": 40.7737738, "lon": -73.9761005 }, + { "lat": 40.7736954, "lon": -73.9761539 }, + { "lat": 40.7735776, "lon": -73.9762226 }, + { "lat": 40.7734106, "lon": -73.9763091 }, + { "lat": 40.7732385, "lon": -73.9763948 }, + { "lat": 40.7730736, "lon": -73.9764777 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 319793821, + "bounds": { + "minlat": 40.7713160, + "minlon": -73.9834011, + "maxlat": 40.7719030, + "maxlon": -73.9831747 + }, + "nodes": [ + 3262539788, + 7449171491, + 3262539787, + 9915469772, + 9915469773, + 3262539786, + 5118031093, + 3262539785 + ], + "geometry": [ + { "lat": 40.7719030, "lon": -73.9831747 }, + { "lat": 40.7714561, "lon": -73.9833897 }, + { "lat": 40.7714305, "lon": -73.9833999 }, + { "lat": 40.7714151, "lon": -73.9834011 }, + { "lat": 40.7713968, "lon": -73.9834011 }, + { "lat": 40.7713840, "lon": -73.9833918 }, + { "lat": 40.7713743, "lon": -73.9833725 }, + { "lat": 40.7713160, "lon": -73.9832518 } + ], + "tags": { + "access": "no", + "alt_name": "Lincoln Center Drop-Off", + "covered": "no", + "cutting": "yes", + "highway": "service", + "maxheight": "9'", + "name": "Jaffe Drive", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 319793822, + "bounds": { + "minlat": 40.7719030, + "minlon": -73.9831747, + "maxlat": 40.7723876, + "maxlon": -73.9828152 + }, + "nodes": [ + 3262539789, + 3262539788 + ], + "geometry": [ + { "lat": 40.7723876, "lon": -73.9828152 }, + { "lat": 40.7719030, "lon": -73.9831747 } + ], + "tags": { + "access": "no", + "alt_name": "Lincoln Center Drop-Off", + "covered": "yes", + "highway": "service", + "layer": "-1", + "level": "-1", + "maxheight": "9'", + "name": "Jaffe Drive", + "oneway": "yes", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 319793823, + "bounds": { + "minlat": 40.7723876, + "minlon": -73.9828152, + "maxlat": 40.7728645, + "maxlon": -73.9823021 + }, + "nodes": [ + 3262539793, + 5117972563, + 3262539791, + 3262539790, + 3262539789 + ], + "geometry": [ + { "lat": 40.7728645, "lon": -73.9823021 }, + { "lat": 40.7727815, "lon": -73.9824387 }, + { "lat": 40.7727226, "lon": -73.9825130 }, + { "lat": 40.7725919, "lon": -73.9826368 }, + { "lat": 40.7723876, "lon": -73.9828152 } + ], + "tags": { + "access": "no", + "alt_name": "Lincoln Center Drop-Off", + "covered": "no", + "cutting": "yes", + "highway": "service", + "maxheight": "9'", + "name": "Jaffe Drive", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 319793824, + "bounds": { + "minlat": 40.7950274, + "minlon": -73.9671987, + "maxlat": 40.7951036, + "maxlon": -73.9670122 + }, + "nodes": [ + 3262539809, + 6899463974, + 3262539810 + ], + "geometry": [ + { "lat": 40.7951036, "lon": -73.9671987 }, + { "lat": 40.7950811, "lon": -73.9671438 }, + { "lat": 40.7950274, "lon": -73.9670122 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 319793825, + "bounds": { + "minlat": 40.7952794, + "minlon": -73.9675836, + "maxlat": 40.7954926, + "maxlon": -73.9670673 + }, + "nodes": [ + 3262539814, + 3262539815 + ], + "geometry": [ + { "lat": 40.7952794, "lon": -73.9670673 }, + { "lat": 40.7954926, "lon": -73.9675836 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 319793826, + "bounds": { + "minlat": 40.7946547, + "minlon": -73.9675350, + "maxlat": 40.7958950, + "maxlon": -73.9666064 + }, + "nodes": [ + 3262539813, + 11296201259, + 6859714455, + 3262539814, + 3262539809, + 3262539812, + 1852323307 + ], + "geometry": [ + { "lat": 40.7958950, "lon": -73.9666064 }, + { "lat": 40.7957937, "lon": -73.9666822 }, + { "lat": 40.7953661, "lon": -73.9670024 }, + { "lat": 40.7952794, "lon": -73.9670673 }, + { "lat": 40.7951036, "lon": -73.9671987 }, + { "lat": 40.7947843, "lon": -73.9674380 }, + { "lat": 40.7946547, "lon": -73.9675350 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 319797236, + "bounds": { + "minlat": 40.7692884, + "minlon": -73.9435732, + "maxlat": 40.7695181, + "maxlon": -73.9431460 + }, + "nodes": [ + 3262581661, + 8265114859, + 3262581662 + ], + "geometry": [ + { "lat": 40.7692884, "lon": -73.9435732 }, + { "lat": 40.7693319, "lon": -73.9435071 }, + { "lat": 40.7695181, "lon": -73.9431460 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 320463993, + "bounds": { + "minlat": 40.7765596, + "minlon": -73.9767653, + "maxlat": 40.7769333, + "maxlon": -73.9764967 + }, + "nodes": [ + 3269834161, + 8319193841, + 6909727944 + ], + "geometry": [ + { "lat": 40.7765596, "lon": -73.9767653 }, + { "lat": 40.7766494, "lon": -73.9767009 }, + { "lat": 40.7769333, "lon": -73.9764967 } + ], + "tags": { + "foot": "permissive", + "highway": "service", + "incline": "down", + "maxspeed": "5 mph", + "service": "parking", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 320464096, + "bounds": { + "minlat": 40.7888916, + "minlon": -73.9778597, + "maxlat": 40.7892539, + "maxlon": -73.9775934 + }, + "nodes": [ + 42431037, + 9492556545, + 7818397397 + ], + "geometry": [ + { "lat": 40.7888916, "lon": -73.9778597 }, + { "lat": 40.7889828, "lon": -73.9777934 }, + { "lat": 40.7892539, "lon": -73.9775934 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 320464097, + "bounds": { + "minlat": 40.7888916, + "minlon": -73.9803596, + "maxlat": 40.7899463, + "maxlon": -73.9778597 + }, + "nodes": [ + 42431037, + 9492556533, + 10039645587, + 42441564 + ], + "geometry": [ + { "lat": 40.7888916, "lon": -73.9778597 }, + { "lat": 40.7889441, "lon": -73.9779857 }, + { "lat": 40.7899025, "lon": -73.9802558 }, + { "lat": 40.7899463, "lon": -73.9803596 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 86th Street", + "name:ru": "Западная 86-я стрит", + "name_1": "West 86 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 320480539, + "bounds": { + "minlat": 40.7567051, + "minlon": -73.9998204, + "maxlat": 40.7571762, + "maxlon": -73.9993866 + }, + "nodes": [ + 9421943093, + 9421943105, + 11153451619 + ], + "geometry": [ + { "lat": 40.7571762, "lon": -73.9993866 }, + { "lat": 40.7571237, "lon": -73.9994349 }, + { "lat": 40.7567051, "lon": -73.9998204 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Hudson Boulevard West", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q16980469", + "wikipedia": "en:Hudson Park and Boulevard" + } +}, +{ + "type": "way", + "id": 320516786, + "bounds": { + "minlat": 40.7882886, + "minlon": -73.9764311, + "maxlat": 40.7889354, + "maxlon": -73.9758801 + }, + "nodes": [ + 1061531603, + 10039783368, + 8699239270, + 1061531637 + ], + "geometry": [ + { "lat": 40.7882886, "lon": -73.9764311 }, + { "lat": 40.7883839, "lon": -73.9763516 }, + { "lat": 40.7888850, "lon": -73.9759235 }, + { "lat": 40.7889354, "lon": -73.9758801 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 320516787, + "bounds": { + "minlat": 40.7882886, + "minlon": -73.9766064, + "maxlat": 40.7883617, + "maxlon": -73.9764311 + }, + "nodes": [ + 1061531603, + 42428674 + ], + "geometry": [ + { "lat": 40.7882886, "lon": -73.9764311 }, + { "lat": 40.7883617, "lon": -73.9766064 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "West 86th Street", + "name:ru": "Западная 86-я стрит", + "name_1": "West 86 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 320516789, + "bounds": { + "minlat": 40.7889354, + "minlon": -73.9758801, + "maxlat": 40.7920649, + "maxlon": -73.9735644 + }, + "nodes": [ + 1061531637, + 8699239267, + 8699239300, + 1061531810, + 8699239297, + 8699249529, + 1061531768, + 8699249526, + 8699249553, + 1061531682, + 8699249556, + 8687853808, + 1061531731, + 8687853806, + 8687882621, + 1061531736 + ], + "geometry": [ + { "lat": 40.7889354, "lon": -73.9758801 }, + { "lat": 40.7889976, "lon": -73.9758341 }, + { "lat": 40.7895076, "lon": -73.9754568 }, + { "lat": 40.7895628, "lon": -73.9754158 }, + { "lat": 40.7896221, "lon": -73.9753720 }, + { "lat": 40.7901367, "lon": -73.9749912 }, + { "lat": 40.7901845, "lon": -73.9749558 }, + { "lat": 40.7902408, "lon": -73.9749142 }, + { "lat": 40.7907607, "lon": -73.9745295 }, + { "lat": 40.7908085, "lon": -73.9744941 }, + { "lat": 40.7908740, "lon": -73.9744456 }, + { "lat": 40.7913848, "lon": -73.9740676 }, + { "lat": 40.7914466, "lon": -73.9740219 }, + { "lat": 40.7914985, "lon": -73.9739835 }, + { "lat": 40.7920072, "lon": -73.9736071 }, + { "lat": 40.7920649, "lon": -73.9735644 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 320516790, + "bounds": { + "minlat": 40.7895635, + "minlon": -73.9773679, + "maxlat": 40.7901949, + "maxlon": -73.9769096 + }, + "nodes": [ + 42431039, + 11670601660, + 11670622969, + 42431044 + ], + "geometry": [ + { "lat": 40.7895635, "lon": -73.9773679 }, + { "lat": 40.7896217, "lon": -73.9773258 }, + { "lat": 40.7901349, "lon": -73.9769532 }, + { "lat": 40.7901949, "lon": -73.9769096 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "postal_code": "10024", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 320584278, + "bounds": { + "minlat": 40.7690777, + "minlon": -73.9675292, + "maxlat": 40.7717837, + "maxlon": -73.9611072 + }, + "nodes": [ + 42445236, + 10122943667, + 10122943668, + 42445232, + 10125139620, + 10122943671, + 42445230, + 596776021, + 10122943672, + 10122943680, + 42445227, + 10122943681, + 7797650086, + 42445225 + ], + "geometry": [ + { "lat": 40.7690777, "lon": -73.9611072 }, + { "lat": 40.7691343, "lon": -73.9612405 }, + { "lat": 40.7697052, "lon": -73.9625959 }, + { "lat": 40.7697511, "lon": -73.9627039 }, + { "lat": 40.7697948, "lon": -73.9628075 }, + { "lat": 40.7703514, "lon": -73.9641237 }, + { "lat": 40.7703870, "lon": -73.9642066 }, + { "lat": 40.7704726, "lon": -73.9644127 }, + { "lat": 40.7705199, "lon": -73.9645255 }, + { "lat": 40.7710627, "lon": -73.9658254 }, + { "lat": 40.7711054, "lon": -73.9659285 }, + { "lat": 40.7711526, "lon": -73.9660428 }, + { "lat": 40.7717430, "lon": -73.9674320 }, + { "lat": 40.7717837, "lon": -73.9675292 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 71st Street", + "name:ru": "Восточная 71-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 320663777, + "bounds": { + "minlat": 40.7664484, + "minlon": -74.0227082, + "maxlat": 40.7673027, + "maxlon": -74.0196392 + }, + "nodes": [ + 60007414, + 3275488134, + 3275488125, + 3275488151, + 3275488106, + 3275488117, + 3275488157, + 3275488126, + 3275488141, + 3275488120, + 3275488140, + 3275488160, + 3275488107, + 3275488138, + 3275488102, + 60007418 + ], + "geometry": [ + { "lat": 40.7664484, "lon": -74.0227082 }, + { "lat": 40.7666002, "lon": -74.0225703 }, + { "lat": 40.7667350, "lon": -74.0224194 }, + { "lat": 40.7668575, "lon": -74.0222524 }, + { "lat": 40.7669672, "lon": -74.0220701 }, + { "lat": 40.7670627, "lon": -74.0218745 }, + { "lat": 40.7671433, "lon": -74.0216676 }, + { "lat": 40.7672084, "lon": -74.0214502 }, + { "lat": 40.7672567, "lon": -74.0212268 }, + { "lat": 40.7672882, "lon": -74.0209979 }, + { "lat": 40.7673027, "lon": -74.0207661 }, + { "lat": 40.7672998, "lon": -74.0205331 }, + { "lat": 40.7672797, "lon": -74.0203022 }, + { "lat": 40.7672425, "lon": -74.0200747 }, + { "lat": 40.7671886, "lon": -74.0198531 }, + { "lat": 40.7671184, "lon": -74.0196392 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "-2", + "lit": "yes", + "maxspeed": "35 mph", + "motor_vehicle": "permissive", + "name": "Lincoln Tunnel", + "name:etymology:wikidata": "Q91", + "note": "Reversible lane", + "oneway": "reversible", + "psv": "designated", + "source": "usgs", + "tiger:cfcc": "A63", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "toll:backward": "no", + "toll:forward": "yes", + "tunnel": "yes", + "wikidata": "Q125805", + "wikipedia": "en:Lincoln Tunnel" + } +}, +{ + "type": "way", + "id": 320731188, + "bounds": { + "minlat": 40.8301535, + "minlon": -73.9517760, + "maxlat": 40.8302708, + "maxlon": -73.9516952 + }, + "nodes": [ + 3273684048, + 3273684042, + 3273684049 + ], + "geometry": [ + { "lat": 40.8301535, "lon": -73.9517760 }, + { "lat": 40.8302340, "lon": -73.9517206 }, + { "lat": 40.8302708, "lon": -73.9516952 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 320731190, + "bounds": { + "minlat": 40.8302237, + "minlon": -73.9524090, + "maxlat": 40.8304823, + "maxlon": -73.9522314 + }, + "nodes": [ + 3273684052, + 3273684047, + 3273684050 + ], + "geometry": [ + { "lat": 40.8302237, "lon": -73.9524090 }, + { "lat": 40.8303650, "lon": -73.9523122 }, + { "lat": 40.8304823, "lon": -73.9522314 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 320731193, + "bounds": { + "minlat": 40.8311038, + "minlon": -73.9517738, + "maxlat": 40.8314315, + "maxlon": -73.9514335 + }, + "nodes": [ + 3273685371, + 3273685370, + 3273685369, + 3273685368 + ], + "geometry": [ + { "lat": 40.8311672, "lon": -73.9517738 }, + { "lat": 40.8314315, "lon": -73.9515994 }, + { "lat": 40.8313688, "lon": -73.9514335 }, + { "lat": 40.8311038, "lon": -73.9516084 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 320783775, + "bounds": { + "minlat": 40.7020682, + "minlon": -74.0138015, + "maxlat": 40.7021680, + "maxlon": -74.0137247 + }, + "nodes": [ + 6133359419, + 11691170380, + 11014607113, + 11014607114, + 3274291207 + ], + "geometry": [ + { "lat": 40.7020682, "lon": -74.0137247 }, + { "lat": 40.7020858, "lon": -74.0137429 }, + { "lat": 40.7020975, "lon": -74.0137550 }, + { "lat": 40.7021299, "lon": -74.0137812 }, + { "lat": 40.7021680, "lon": -74.0138015 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "note": "NYCT bus only", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 320888283, + "bounds": { + "minlat": 40.7575640, + "minlon": -74.0096744, + "maxlat": 40.7629248, + "maxlon": -73.9967634 + }, + "nodes": [ + 3276524464, + 3275488116, + 593920082, + 3275488130, + 6150826393, + 13048849851, + 593920089, + 593920099, + 593920100, + 3275488127, + 593920101, + 427841011 + ], + "geometry": [ + { "lat": 40.7629248, "lon": -74.0096744 }, + { "lat": 40.7588352, "lon": -73.9999574 }, + { "lat": 40.7587551, "lon": -73.9997242 }, + { "lat": 40.7586998, "lon": -73.9995187 }, + { "lat": 40.7586499, "lon": -73.9992061 }, + { "lat": 40.7586240, "lon": -73.9990678 }, + { "lat": 40.7585827, "lon": -73.9989314 }, + { "lat": 40.7578911, "lon": -73.9972646 }, + { "lat": 40.7578244, "lon": -73.9971237 }, + { "lat": 40.7577410, "lon": -73.9969854 }, + { "lat": 40.7576472, "lon": -73.9968521 }, + { "lat": 40.7575640, "lon": -73.9967634 } + ], + "tags": { + "bicycle": "no", + "cycleway:both": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "-2", + "lit": "24/7", + "maxheight": "13'0\"", + "maxspeed": "35 mph", + "maxwidth": "8'6\"", + "motor_vehicle": "permissive", + "name": "Lincoln Tunnel", + "name:etymology:wikidata": "Q91", + "note": "Reversible lane", + "old_ref": "I 495", + "oneway": "reversible", + "psv": "designated", + "ref": "NY 495", + "source": "usgs", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "no", + "toll:backward": "no", + "toll:forward": "yes", + "tunnel": "yes", + "wikidata": "Q125805", + "wikipedia": "en:Lincoln Tunnel" + } +}, +{ + "type": "way", + "id": 320888292, + "bounds": { + "minlat": 40.7588687, + "minlon": -74.0095468, + "maxlat": 40.7631084, + "maxlon": -73.9992001 + }, + "nodes": [ + 42423847, + 3275488154, + 593920030, + 3275488123, + 3276524465 + ], + "geometry": [ + { "lat": 40.7588687, "lon": -73.9992001 }, + { "lat": 40.7589156, "lon": -73.9994415 }, + { "lat": 40.7589676, "lon": -73.9996525 }, + { "lat": 40.7590343, "lon": -73.9998669 }, + { "lat": 40.7631084, "lon": -74.0095468 } + ], + "tags": { + "bicycle": "no", + "cycleway:right": "no", + "foot": "no", + "hazmat": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "-2", + "lit": "24/7", + "maxheight": "13'0\"", + "maxspeed": "35 mph", + "maxwidth": "8'6\"", + "name": "Lincoln Tunnel", + "name:etymology:wikidata": "Q91", + "note": "signed as I-495 in New York all the way into the tunnel", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "source": "usgs", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:name_base": "Lincoln", + "tiger:name_base_1": "I-495", + "tiger:name_type": "Tunl", + "tiger:reviewed": "no", + "toll": "no", + "tunnel": "yes", + "wikidata": "Q125805", + "wikipedia": "en:Lincoln Tunnel" + } +}, +{ + "type": "way", + "id": 321166656, + "bounds": { + "minlat": 40.7679584, + "minlon": -73.9631182, + "maxlat": 40.7682774, + "maxlon": -73.9624852 + }, + "nodes": [ + 3278932321, + 10171234755, + 3278932322, + 3278932323, + 3278932324, + 3278932325, + 3278932326, + 3278932327, + 3278932328, + 3278932329 + ], + "geometry": [ + { "lat": 40.7682774, "lon": -73.9631182 }, + { "lat": 40.7682056, "lon": -73.9631125 }, + { "lat": 40.7681909, "lon": -73.9631123 }, + { "lat": 40.7681266, "lon": -73.9630895 }, + { "lat": 40.7680660, "lon": -73.9630258 }, + { "lat": 40.7680042, "lon": -73.9629229 }, + { "lat": 40.7679609, "lon": -73.9627776 }, + { "lat": 40.7679584, "lon": -73.9626698 }, + { "lat": 40.7679722, "lon": -73.9625695 }, + { "lat": 40.7680106, "lon": -73.9624852 } + ], + "tags": { + "access": "destination", + "foot": "yes", + "highway": "service", + "service": "driveway", + "sidewalk": "right" + } +}, +{ + "type": "way", + "id": 321993367, + "bounds": { + "minlat": 40.7257774, + "minlon": -74.0031066, + "maxlat": 40.7268704, + "maxlon": -74.0009057 + }, + "nodes": [ + 42454423, + 8231934408, + 8231934401, + 42436784, + 8231934404, + 8231934397, + 42439530, + 8231934400, + 8231934395, + 42439335 + ], + "geometry": [ + { "lat": 40.7257774, "lon": -74.0009057 }, + { "lat": 40.7258159, "lon": -74.0009831 }, + { "lat": 40.7260955, "lon": -74.0015461 }, + { "lat": 40.7261202, "lon": -74.0015958 }, + { "lat": 40.7261508, "lon": -74.0016576 }, + { "lat": 40.7264663, "lon": -74.0022929 }, + { "lat": 40.7264953, "lon": -74.0023512 }, + { "lat": 40.7265259, "lon": -74.0024129 }, + { "lat": 40.7268396, "lon": -74.0030445 }, + { "lat": 40.7268704, "lon": -74.0031066 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Prince Street", + "name:ko": "프린스 스트리트", + "name:ru": "Принс-стрит", + "oneway": "yes", + "parking:lane:right": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 322401499, + "bounds": { + "minlat": 40.8257771, + "minlon": -73.9130145, + "maxlat": 40.8274597, + "maxlon": -73.9121468 + }, + "nodes": [ + 471222806, + 7560827239 + ], + "geometry": [ + { "lat": 40.8257771, "lon": -73.9130145 }, + { "lat": 40.8274597, "lon": -73.9121468 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "cycleway": "lane", + "cycleway:both:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Melrose Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Melrose", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 322428254, + "bounds": { + "minlat": 40.7235064, + "minlon": -73.9872124, + "maxlat": 40.7238926, + "maxlon": -73.9861037 + }, + "nodes": [ + 3291987532, + 8309479307, + 3291987533, + 6781574663, + 4505948474, + 4505948473 + ], + "geometry": [ + { "lat": 40.7236239, "lon": -73.9872124 }, + { "lat": 40.7237243, "lon": -73.9871361 }, + { "lat": 40.7237447, "lon": -73.9871198 }, + { "lat": 40.7237651, "lon": -73.9871050 }, + { "lat": 40.7238926, "lon": -73.9870130 }, + { "lat": 40.7235064, "lon": -73.9861037 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 323351801, + "bounds": { + "minlat": 40.8686965, + "minlon": -73.9687133, + "maxlat": 40.8688582, + "maxlon": -73.9680846 + }, + "nodes": [ + 3301540364, + 3301540370, + 3301540369, + 3301540368, + 3301540366, + 3301540365, + 3301540367 + ], + "geometry": [ + { "lat": 40.8686965, "lon": -73.9680846 }, + { "lat": 40.8688530, "lon": -73.9683662 }, + { "lat": 40.8688582, "lon": -73.9684212 }, + { "lat": 40.8688203, "lon": -73.9685061 }, + { "lat": 40.8687719, "lon": -73.9685717 }, + { "lat": 40.8687639, "lon": -73.9686305 }, + { "lat": 40.8687759, "lon": -73.9687133 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Hidden Ledge Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hidden Ledge", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 324118553, + "bounds": { + "minlat": 40.7637690, + "minlon": -73.9820084, + "maxlat": 40.7638361, + "maxlon": -73.9818463 + }, + "nodes": [ + 3308681106, + 3308681105 + ], + "geometry": [ + { "lat": 40.7638361, "lon": -73.9820084 }, + { "lat": 40.7637690, "lon": -73.9818463 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "vehicle:lanes": "|no|", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 324118554, + "bounds": { + "minlat": 40.7638361, + "minlon": -73.9825176, + "maxlat": 40.7640580, + "maxlon": -73.9820084 + }, + "nodes": [ + 42428315, + 4322008112, + 3308681107, + 3308681106 + ], + "geometry": [ + { "lat": 40.7640580, "lon": -73.9825176 }, + { "lat": 40.7640099, "lon": -73.9824153 }, + { "lat": 40.7639864, "lon": -73.9823611 }, + { "lat": 40.7638361, "lon": -73.9820084 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 324118555, + "bounds": { + "minlat": 40.7635954, + "minlon": -73.9818463, + "maxlat": 40.7637690, + "maxlon": -73.9814328 + }, + "nodes": [ + 3308681105, + 3308681104, + 42440015 + ], + "geometry": [ + { "lat": 40.7637690, "lon": -73.9818463 }, + { "lat": 40.7636529, "lon": -73.9815660 }, + { "lat": 40.7635954, "lon": -73.9814328 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "vehicle:lanes": "|no|", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 324118556, + "bounds": { + "minlat": 40.7647981, + "minlon": -73.9846965, + "maxlat": 40.7649769, + "maxlon": -73.9842688 + }, + "nodes": [ + 3308681111, + 3308681110, + 6210777841, + 42435707 + ], + "geometry": [ + { "lat": 40.7649769, "lon": -73.9846965 }, + { "lat": 40.7648606, "lon": -73.9844123 }, + { "lat": 40.7648458, "lon": -73.9843782 }, + { "lat": 40.7647981, "lon": -73.9842688 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|none", + "vehicle:lanes": "no|", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 324118557, + "bounds": { + "minlat": 40.7653154, + "minlon": -73.9871254, + "maxlat": 40.7659937, + "maxlon": -73.9854965 + }, + "nodes": [ + 42445033, + 3308681112, + 10085024681, + 3874596369, + 2348991701 + ], + "geometry": [ + { "lat": 40.7659937, "lon": -73.9871254 }, + { "lat": 40.7659483, "lon": -73.9870175 }, + { "lat": 40.7659377, "lon": -73.9869922 }, + { "lat": 40.7659231, "lon": -73.9869572 }, + { "lat": 40.7653154, "lon": -73.9854965 } + ], + "tags": { + "bicycle": "yes", + "bicycle:lanes": "designated|", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "motor_vehicle:lanes": "no|", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 324118558, + "bounds": { + "minlat": 40.7640580, + "minlon": -73.9842688, + "maxlat": 40.7647981, + "maxlon": -73.9825176 + }, + "nodes": [ + 42435707, + 10085059406, + 3308681109, + 3308681108, + 42428315 + ], + "geometry": [ + { "lat": 40.7647981, "lon": -73.9842688 }, + { "lat": 40.7647443, "lon": -73.9841453 }, + { "lat": 40.7647390, "lon": -73.9841332 }, + { "lat": 40.7640902, "lon": -73.9826024 }, + { "lat": 40.7640580, "lon": -73.9825176 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 324750258, + "bounds": { + "minlat": 40.7223671, + "minlon": -73.9895765, + "maxlat": 40.7225541, + "maxlon": -73.9889868 + }, + "nodes": [ + 3314285364, + 3314285367, + 11383370024, + 5854381584, + 3314285365 + ], + "geometry": [ + { "lat": 40.7225541, "lon": -73.9895765 }, + { "lat": 40.7225139, "lon": -73.9894502 }, + { "lat": 40.7224094, "lon": -73.9891281 }, + { "lat": 40.7224002, "lon": -73.9890996 }, + { "lat": 40.7223671, "lon": -73.9889868 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 324750259, + "bounds": { + "minlat": 40.7225139, + "minlon": -73.9894502, + "maxlat": 40.7226517, + "maxlon": -73.9893780 + }, + "nodes": [ + 3314285366, + 3314285367 + ], + "geometry": [ + { "lat": 40.7226517, "lon": -73.9893780 }, + { "lat": 40.7225139, "lon": -73.9894502 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 324970100, + "bounds": { + "minlat": 40.7242787, + "minlon": -73.9867786, + "maxlat": 40.7247854, + "maxlon": -73.9864130 + }, + "nodes": [ + 3316523996, + 9047347176, + 9047347177 + ], + "geometry": [ + { "lat": 40.7247854, "lon": -73.9864130 }, + { "lat": 40.7243323, "lon": -73.9867400 }, + { "lat": 40.7242787, "lon": -73.9867786 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 324970104, + "bounds": { + "minlat": 40.7251480, + "minlon": -73.9849148, + "maxlat": 40.7257039, + "maxlon": -73.9845051 + }, + "nodes": [ + 3316524005, + 7120757709, + 3316524006 + ], + "geometry": [ + { "lat": 40.7257039, "lon": -73.9845051 }, + { "lat": 40.7256469, "lon": -73.9845471 }, + { "lat": 40.7251480, "lon": -73.9849148 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 324970107, + "bounds": { + "minlat": 40.7249370, + "minlon": -73.9847445, + "maxlat": 40.7251084, + "maxlon": -73.9843424 + }, + "nodes": [ + 3316524007, + 6886133514, + 9166033060, + 3316524008 + ], + "geometry": [ + { "lat": 40.7251084, "lon": -73.9847445 }, + { "lat": 40.7249983, "lon": -73.9844803 }, + { "lat": 40.7249861, "lon": -73.9844529 }, + { "lat": 40.7249370, "lon": -73.9843424 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 324975283, + "bounds": { + "minlat": 40.7183320, + "minlon": -73.9996593, + "maxlat": 40.7185241, + "maxlon": -73.9992405 + }, + "nodes": [ + 3316533507, + 8307641560, + 3316533508, + 3316533509, + 3316533510, + 3316533511 + ], + "geometry": [ + { "lat": 40.7183861, "lon": -73.9996593 }, + { "lat": 40.7183614, "lon": -73.9995717 }, + { "lat": 40.7183320, "lon": -73.9994671 }, + { "lat": 40.7183351, "lon": -73.9993920 }, + { "lat": 40.7183625, "lon": -73.9993437 }, + { "lat": 40.7185241, "lon": -73.9992405 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 324991429, + "bounds": { + "minlat": 40.8154979, + "minlon": -73.9462417, + "maxlat": 40.8157596, + "maxlon": -73.9460495 + }, + "nodes": [ + 3316662357, + 10170605770, + 3316662358 + ], + "geometry": [ + { "lat": 40.8157596, "lon": -73.9460495 }, + { "lat": 40.8155479, "lon": -73.9462050 }, + { "lat": 40.8154979, "lon": -73.9462417 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 325008927, + "bounds": { + "minlat": 40.7118292, + "minlon": -73.9930486, + "maxlat": 40.7121232, + "maxlon": -73.9928934 + }, + "nodes": [ + 3316834248, + 7480301992 + ], + "geometry": [ + { "lat": 40.7118292, "lon": -73.9928934 }, + { "lat": 40.7121232, "lon": -73.9930486 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 325008932, + "bounds": { + "minlat": 40.7097442, + "minlon": -73.9948986, + "maxlat": 40.7098733, + "maxlon": -73.9940738 + }, + "nodes": [ + 3316837973, + 11535089660, + 7830788128, + 6872093110, + 3316837974 + ], + "geometry": [ + { "lat": 40.7098733, "lon": -73.9940738 }, + { "lat": 40.7098559, "lon": -73.9941847 }, + { "lat": 40.7098504, "lon": -73.9942199 }, + { "lat": 40.7098453, "lon": -73.9942525 }, + { "lat": 40.7097442, "lon": -73.9948986 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 325122640, + "bounds": { + "minlat": 40.7608476, + "minlon": -74.0206648, + "maxlat": 40.7619397, + "maxlon": -74.0183508 + }, + "nodes": [ + 3317899943, + 3317899942, + 3317899941, + 3317899944, + 3317899945, + 3317899946 + ], + "geometry": [ + { "lat": 40.7618227, "lon": -74.0206648 }, + { "lat": 40.7617738, "lon": -74.0205516 }, + { "lat": 40.7608476, "lon": -74.0184505 }, + { "lat": 40.7609601, "lon": -74.0183508 }, + { "lat": 40.7618903, "lon": -74.0204611 }, + { "lat": 40.7619397, "lon": -74.0205764 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 325122680, + "bounds": { + "minlat": 40.7788546, + "minlon": -74.0096755, + "maxlat": 40.7789733, + "maxlon": -74.0091790 + }, + "nodes": [ + 308678157, + 3317900277 + ], + "geometry": [ + { "lat": 40.7788546, "lon": -74.0096755 }, + { "lat": 40.7789733, "lon": -74.0091790 } + ], + "tags": { + "highway": "residential", + "name": "Avenue at Port Imperial", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 326119844, + "bounds": { + "minlat": 40.8660425, + "minlon": -73.9178070, + "maxlat": 40.8695510, + "maxlon": -73.9151830 + }, + "nodes": [ + 3327370783, + 6477406868, + 9561209106, + 42427877, + 42445773, + 9561208949, + 42449593, + 42439432, + 42429960, + 9563662425, + 42454553 + ], + "geometry": [ + { "lat": 40.8660425, "lon": -73.9178070 }, + { "lat": 40.8662769, "lon": -73.9176241 }, + { "lat": 40.8665034, "lon": -73.9174471 }, + { "lat": 40.8668130, "lon": -73.9172050 }, + { "lat": 40.8670260, "lon": -73.9170440 }, + { "lat": 40.8670740, "lon": -73.9170079 }, + { "lat": 40.8676330, "lon": -73.9165880 }, + { "lat": 40.8682510, "lon": -73.9161390 }, + { "lat": 40.8688890, "lon": -73.9156810 }, + { "lat": 40.8694420, "lon": -73.9152650 }, + { "lat": 40.8695510, "lon": -73.9151830 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 327917960, + "bounds": { + "minlat": 40.8084697, + "minlon": -73.9598596, + "maxlat": 40.8089273, + "maxlon": -73.9595211 + }, + "nodes": [ + 13768627563, + 8376039722, + 42442578, + 7004347453, + 13819573954 + ], + "geometry": [ + { "lat": 40.8084697, "lon": -73.9598596 }, + { "lat": 40.8086878, "lon": -73.9597001 }, + { "lat": 40.8087553, "lon": -73.9596506 }, + { "lat": 40.8088146, "lon": -73.9596046 }, + { "lat": 40.8089273, "lon": -73.9595211 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 328902690, + "bounds": { + "minlat": 40.7958840, + "minlon": -73.9932406, + "maxlat": 40.7960262, + "maxlon": -73.9930536 + }, + "nodes": [ + 3357247600, + 3357247597, + 3357247594, + 3357247602, + 9246211756, + 3357247598, + 3357247621, + 9246211751, + 9246211752, + 3357247595, + 3357247615, + 3357247616, + 3357247604, + 3357247606, + 9246211745, + 9246211746, + 9246211748, + 9246211749, + 9246211750, + 9246211747, + 3357247600 + ], + "geometry": [ + { "lat": 40.7959422, "lon": -73.9930540 }, + { "lat": 40.7959661, "lon": -73.9930536 }, + { "lat": 40.7959888, "lon": -73.9930636 }, + { "lat": 40.7960076, "lon": -73.9930830 }, + { "lat": 40.7960142, "lon": -73.9930964 }, + { "lat": 40.7960206, "lon": -73.9931096 }, + { "lat": 40.7960262, "lon": -73.9931403 }, + { "lat": 40.7960237, "lon": -73.9931717 }, + { "lat": 40.7960136, "lon": -73.9932003 }, + { "lat": 40.7959968, "lon": -73.9932228 }, + { "lat": 40.7959762, "lon": -73.9932364 }, + { "lat": 40.7959534, "lon": -73.9932406 }, + { "lat": 40.7959307, "lon": -73.9932350 }, + { "lat": 40.7959106, "lon": -73.9932201 }, + { "lat": 40.7958952, "lon": -73.9931975 }, + { "lat": 40.7958860, "lon": -73.9931696 }, + { "lat": 40.7958840, "lon": -73.9931392 }, + { "lat": 40.7958895, "lon": -73.9931097 }, + { "lat": 40.7959019, "lon": -73.9930839 }, + { "lat": 40.7959198, "lon": -73.9930648 }, + { "lat": 40.7959422, "lon": -73.9930540 } + ], + "tags": { + "highway": "residential", + "junction": "roundabout", + "name": "Riverview Circle", + "name_1": "River View Circle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 329059461, + "bounds": { + "minlat": 40.7238220, + "minlon": -73.9373564, + "maxlat": 40.7240442, + "maxlon": -73.9360548 + }, + "nodes": [ + 5186081982, + 9194920838, + 42505315 + ], + "geometry": [ + { "lat": 40.7238220, "lon": -73.9373564 }, + { "lat": 40.7240187, "lon": -73.9361824 }, + { "lat": 40.7240442, "lon": -73.9360548 } + ], + "tags": { + "highway": "secondary", + "name": "Cherry Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 329988122, + "bounds": { + "minlat": 40.7671448, + "minlon": -73.9816903, + "maxlat": 40.7676413, + "maxlon": -73.9815526 + }, + "nodes": [ + 6632233659, + 10183983983, + 10183983968, + 3369517465, + 3369517466, + 3369517467, + 3369517468, + 3369517469, + 10183983970, + 3369517470, + 6632233660, + 10183983964, + 10183983965, + 10183983966, + 10183983967, + 6632233661, + 6632233662, + 10036563054, + 10183983982, + 6632233659 + ], + "geometry": [ + { "lat": 40.7671665, "lon": -73.9816873 }, + { "lat": 40.7671557, "lon": -73.9816634 }, + { "lat": 40.7671448, "lon": -73.9816392 }, + { "lat": 40.7671457, "lon": -73.9816338 }, + { "lat": 40.7671522, "lon": -73.9816319 }, + { "lat": 40.7674626, "lon": -73.9815840 }, + { "lat": 40.7674954, "lon": -73.9815787 }, + { "lat": 40.7675371, "lon": -73.9815694 }, + { "lat": 40.7675784, "lon": -73.9815627 }, + { "lat": 40.7676413, "lon": -73.9815526 }, + { "lat": 40.7676171, "lon": -73.9816844 }, + { "lat": 40.7675921, "lon": -73.9816802 }, + { "lat": 40.7675585, "lon": -73.9816548 }, + { "lat": 40.7675382, "lon": -73.9816438 }, + { "lat": 40.7675083, "lon": -73.9816375 }, + { "lat": 40.7674461, "lon": -73.9816382 }, + { "lat": 40.7673892, "lon": -73.9816464 }, + { "lat": 40.7671752, "lon": -73.9816885 }, + { "lat": 40.7671703, "lon": -73.9816903 }, + { "lat": 40.7671665, "lon": -73.9816873 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 329988123, + "bounds": { + "minlat": 40.7663587, + "minlon": -73.9818064, + "maxlat": 40.7670570, + "maxlon": -73.9816524 + }, + "nodes": [ + 3369517473, + 10183983985, + 6632233658, + 10036563046, + 6632233657, + 3369517475, + 10036563056, + 3369517476, + 3369517477, + 10036563055, + 3369517478, + 3369517479, + 10036563047, + 3369517473 + ], + "geometry": [ + { "lat": 40.7670326, "lon": -73.9816524 }, + { "lat": 40.7670438, "lon": -73.9816836 }, + { "lat": 40.7670570, "lon": -73.9817201 }, + { "lat": 40.7670371, "lon": -73.9817234 }, + { "lat": 40.7667393, "lon": -73.9817729 }, + { "lat": 40.7666191, "lon": -73.9817644 }, + { "lat": 40.7664047, "lon": -73.9818008 }, + { "lat": 40.7663776, "lon": -73.9818064 }, + { "lat": 40.7663587, "lon": -73.9817675 }, + { "lat": 40.7663880, "lon": -73.9817615 }, + { "lat": 40.7667345, "lon": -73.9817038 }, + { "lat": 40.7669207, "lon": -73.9816789 }, + { "lat": 40.7670145, "lon": -73.9816567 }, + { "lat": 40.7670326, "lon": -73.9816524 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 329995853, + "bounds": { + "minlat": 40.7712041, + "minlon": -73.9844521, + "maxlat": 40.7719381, + "maxlon": -73.9832099 + }, + "nodes": [ + 3369582841, + 3369582842, + 3369582882, + 7447580913, + 3369582881, + 7447580918, + 3369582880, + 3369582843, + 3369582879, + 7447580925, + 3369582845, + 3369582846, + 3369582847, + 5118031094, + 3369582848, + 9904385869, + 1000793272, + 10061928494, + 12852416773, + 3369582876, + 5118031095, + 3369597724, + 6463515530, + 3369582877, + 12852416771, + 2710204269, + 7449171497, + 7449171496, + 7449171493, + 7449171498, + 7449171494, + 7449171495, + 10211295980, + 10211295978, + 7447580944, + 10211295977, + 10211295979, + 3369582796, + 3369582841 + ], + "geometry": [ + { "lat": 40.7719177, "lon": -73.9832099 }, + { "lat": 40.7718173, "lon": -73.9832647 }, + { "lat": 40.7717199, "lon": -73.9833121 }, + { "lat": 40.7716783, "lon": -73.9833325 }, + { "lat": 40.7716375, "lon": -73.9833523 }, + { "lat": 40.7715741, "lon": -73.9833832 }, + { "lat": 40.7715401, "lon": -73.9833998 }, + { "lat": 40.7715286, "lon": -73.9834054 }, + { "lat": 40.7714971, "lon": -73.9834179 }, + { "lat": 40.7714705, "lon": -73.9834284 }, + { "lat": 40.7714278, "lon": -73.9834412 }, + { "lat": 40.7713736, "lon": -73.9834310 }, + { "lat": 40.7713445, "lon": -73.9834156 }, + { "lat": 40.7713381, "lon": -73.9833982 }, + { "lat": 40.7713264, "lon": -73.9833693 }, + { "lat": 40.7712231, "lon": -73.9834450 }, + { "lat": 40.7712041, "lon": -73.9834582 }, + { "lat": 40.7712182, "lon": -73.9834906 }, + { "lat": 40.7715602, "lon": -73.9843004 }, + { "lat": 40.7716248, "lon": -73.9844521 }, + { "lat": 40.7716433, "lon": -73.9844388 }, + { "lat": 40.7716592, "lon": -73.9844270 }, + { "lat": 40.7716357, "lon": -73.9843693 }, + { "lat": 40.7716086, "lon": -73.9843027 }, + { "lat": 40.7715968, "lon": -73.9842752 }, + { "lat": 40.7713507, "lon": -73.9836896 }, + { "lat": 40.7713805, "lon": -73.9836678 }, + { "lat": 40.7713769, "lon": -73.9836600 }, + { "lat": 40.7713712, "lon": -73.9836475 }, + { "lat": 40.7714344, "lon": -73.9836003 }, + { "lat": 40.7714709, "lon": -73.9835732 }, + { "lat": 40.7714800, "lon": -73.9835949 }, + { "lat": 40.7715431, "lon": -73.9835491 }, + { "lat": 40.7715260, "lon": -73.9835090 }, + { "lat": 40.7715827, "lon": -73.9834690 }, + { "lat": 40.7716359, "lon": -73.9834315 }, + { "lat": 40.7716510, "lon": -73.9834696 }, + { "lat": 40.7719381, "lon": -73.9832591 }, + { "lat": 40.7719177, "lon": -73.9832099 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes" + } +}, +{ + "type": "way", + "id": 330157985, + "bounds": { + "minlat": 40.7716307, + "minlon": -73.9846794, + "maxlat": 40.7718025, + "maxlon": -73.9845590 + }, + "nodes": [ + 6463515517, + 5118031092, + 1241760168 + ], + "geometry": [ + { "lat": 40.7718025, "lon": -73.9845590 }, + { "lat": 40.7717189, "lon": -73.9846180 }, + { "lat": 40.7716307, "lon": -73.9846794 } + ], + "tags": { + "highway": "service", + "incline": "up", + "oneway": "yes", + "service": "driveway", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 330157986, + "bounds": { + "minlat": 40.7717617, + "minlon": -73.9844576, + "maxlat": 40.7719643, + "maxlon": -73.9843153 + }, + "nodes": [ + 6463515516, + 1241760158 + ], + "geometry": [ + { "lat": 40.7717617, "lon": -73.9844576 }, + { "lat": 40.7719643, "lon": -73.9843153 } + ], + "tags": { + "highway": "service", + "incline": "down", + "layer": "-1", + "oneway": "yes", + "service": "driveway", + "sidewalk": "right", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 330177547, + "bounds": { + "minlat": 40.7586450, + "minlon": -73.9822842, + "maxlat": 40.7598101, + "maxlon": -73.9808828 + }, + "nodes": [ + 530697967, + 10254591062, + 3971196620, + 3971196619, + 42430352, + 10172901896, + 3971196622, + 42430356, + 3971196623, + 4782506031, + 3971196624, + 10236589211, + 1593915820, + 1593915819, + 530697970, + 530697965, + 1593915814, + 530697967 + ], + "geometry": [ + { "lat": 40.7590587, "lon": -73.9820665 }, + { "lat": 40.7590398, "lon": -73.9820833 }, + { "lat": 40.7589801, "lon": -73.9821356 }, + { "lat": 40.7587072, "lon": -73.9814844 }, + { "lat": 40.7586450, "lon": -73.9813410 }, + { "lat": 40.7587066, "lon": -73.9812962 }, + { "lat": 40.7592178, "lon": -73.9809237 }, + { "lat": 40.7592744, "lon": -73.9808828 }, + { "lat": 40.7593366, "lon": -73.9810306 }, + { "lat": 40.7594743, "lon": -73.9813574 }, + { "lat": 40.7598101, "lon": -73.9821549 }, + { "lat": 40.7597532, "lon": -73.9821943 }, + { "lat": 40.7597290, "lon": -73.9822111 }, + { "lat": 40.7596278, "lon": -73.9822842 }, + { "lat": 40.7593042, "lon": -73.9815056 }, + { "lat": 40.7590303, "lon": -73.9817040 }, + { "lat": 40.7591515, "lon": -73.9819955 }, + { "lat": 40.7590587, "lon": -73.9820665 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 330177550, + "bounds": { + "minlat": 40.7599106, + "minlon": -73.9818069, + "maxlat": 40.7608605, + "maxlon": -73.9799722 + }, + "nodes": [ + 42430358, + 3971196627, + 3971196629, + 11304895432, + 2717546444, + 1593295528, + 1751570231, + 3371304302, + 3371304303, + 3371304304, + 3371304305, + 1251540931, + 3977886252, + 11198923668, + 3971196631, + 11299050770, + 42430361, + 11299050769, + 3971196628, + 42430358 + ], + "geometry": [ + { "lat": 40.7599106, "lon": -73.9804176 }, + { "lat": 40.7599678, "lon": -73.9805536 }, + { "lat": 40.7604917, "lon": -73.9818069 }, + { "lat": 40.7605433, "lon": -73.9817681 }, + { "lat": 40.7605464, "lon": -73.9817658 }, + { "lat": 40.7606123, "lon": -73.9817147 }, + { "lat": 40.7601458, "lon": -73.9806062 }, + { "lat": 40.7604094, "lon": -73.9804117 }, + { "lat": 40.7604538, "lon": -73.9805155 }, + { "lat": 40.7604860, "lon": -73.9804921 }, + { "lat": 40.7603959, "lon": -73.9802773 }, + { "lat": 40.7605171, "lon": -73.9801887 }, + { "lat": 40.7607829, "lon": -73.9808225 }, + { "lat": 40.7608010, "lon": -73.9808092 }, + { "lat": 40.7608605, "lon": -73.9807655 }, + { "lat": 40.7605819, "lon": -73.9801060 }, + { "lat": 40.7605248, "lon": -73.9799722 }, + { "lat": 40.7604688, "lon": -73.9800130 }, + { "lat": 40.7600983, "lon": -73.9802825 }, + { "lat": 40.7599106, "lon": -73.9804176 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 330177554, + "bounds": { + "minlat": 40.7758845, + "minlon": -73.9869081, + "maxlat": 40.7763085, + "maxlon": -73.9866030 + }, + "nodes": [ + 3371304325, + 3377383083, + 3371304326 + ], + "geometry": [ + { "lat": 40.7758845, "lon": -73.9869081 }, + { "lat": 40.7759593, "lon": -73.9868496 }, + { "lat": 40.7763085, "lon": -73.9866030 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 330177556, + "bounds": { + "minlat": 40.7761952, + "minlon": -73.9863364, + "maxlat": 40.7764631, + "maxlon": -73.9861457 + }, + "nodes": [ + 3371304329, + 3377387910, + 3371304330 + ], + "geometry": [ + { "lat": 40.7761952, "lon": -73.9863364 }, + { "lat": 40.7762438, "lon": -73.9863023 }, + { "lat": 40.7764631, "lon": -73.9861457 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 330177557, + "bounds": { + "minlat": 40.7766459, + "minlon": -73.9863228, + "maxlat": 40.7770020, + "maxlon": -73.9854410 + }, + "nodes": [ + 3371304333, + 3371304331, + 3371304341, + 3371304340, + 3371304339, + 3371304338, + 3371304337, + 3371304336, + 3371304335, + 3371304334, + 3371304333 + ], + "geometry": [ + { "lat": 40.7769492, "lon": -73.9863228 }, + { "lat": 40.7766656, "lon": -73.9856641 }, + { "lat": 40.7766533, "lon": -73.9856220 }, + { "lat": 40.7766459, "lon": -73.9855571 }, + { "lat": 40.7766557, "lon": -73.9854923 }, + { "lat": 40.7766869, "lon": -73.9854497 }, + { "lat": 40.7767328, "lon": -73.9854410 }, + { "lat": 40.7767712, "lon": -73.9854728 }, + { "lat": 40.7767982, "lon": -73.9855085 }, + { "lat": 40.7770020, "lon": -73.9859950 }, + { "lat": 40.7769492, "lon": -73.9863228 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 330177558, + "bounds": { + "minlat": 40.7769245, + "minlon": -73.9862982, + "maxlat": 40.7774768, + "maxlon": -73.9852355 + }, + "nodes": [ + 3371304342, + 3377383087, + 3371304343, + 3377387914, + 3371304344, + 3371304345, + 3371304346, + 3371304347, + 3371304348, + 3371304349, + 3371304350, + 6841543645 + ], + "geometry": [ + { "lat": 40.7773094, "lon": -73.9862982 }, + { "lat": 40.7772536, "lon": -73.9861687 }, + { "lat": 40.7769245, "lon": -73.9853805 }, + { "lat": 40.7769250, "lon": -73.9853696 }, + { "lat": 40.7769278, "lon": -73.9853091 }, + { "lat": 40.7769540, "lon": -73.9852636 }, + { "lat": 40.7769933, "lon": -73.9852377 }, + { "lat": 40.7770293, "lon": -73.9852355 }, + { "lat": 40.7770621, "lon": -73.9852528 }, + { "lat": 40.7771014, "lon": -73.9852982 }, + { "lat": 40.7774221, "lon": -73.9860455 }, + { "lat": 40.7774768, "lon": -73.9861776 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 330177559, + "bounds": { + "minlat": 40.7756027, + "minlon": -73.9851990, + "maxlat": 40.7759691, + "maxlon": -73.9847526 + }, + "nodes": [ + 3371304352, + 3377383040, + 3371304353, + 3371304354, + 7050687006, + 3371304355 + ], + "geometry": [ + { "lat": 40.7756027, "lon": -73.9851990 }, + { "lat": 40.7756284, "lon": -73.9851302 }, + { "lat": 40.7756645, "lon": -73.9850391 }, + { "lat": 40.7757252, "lon": -73.9849312 }, + { "lat": 40.7757368, "lon": -73.9849227 }, + { "lat": 40.7759691, "lon": -73.9847526 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 330177561, + "bounds": { + "minlat": 40.7768661, + "minlon": -73.9836560, + "maxlat": 40.7771721, + "maxlon": -73.9834263 + }, + "nodes": [ + 3371304364, + 3371304365 + ], + "geometry": [ + { "lat": 40.7768661, "lon": -73.9836560 }, + { "lat": 40.7771721, "lon": -73.9834263 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 330177562, + "bounds": { + "minlat": 40.7719720, + "minlon": -73.9889002, + "maxlat": 40.7729446, + "maxlon": -73.9871650 + }, + "nodes": [ + 3371304370, + 10098701325, + 3371304371, + 3371304372, + 10098701326, + 3371304373 + ], + "geometry": [ + { "lat": 40.7719720, "lon": -73.9874241 }, + { "lat": 40.7720340, "lon": -73.9873798 }, + { "lat": 40.7723331, "lon": -73.9871650 }, + { "lat": 40.7729446, "lon": -73.9886457 }, + { "lat": 40.7726601, "lon": -73.9888546 }, + { "lat": 40.7725980, "lon": -73.9889002 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 330741664, + "bounds": { + "minlat": 40.7754027, + "minlon": -73.9859481, + "maxlat": 40.7756731, + "maxlon": -73.9856960 + }, + "nodes": [ + 3377383092, + 3884632724, + 3377387893, + 3377387894, + 3377387895, + 8637876185 + ], + "geometry": [ + { "lat": 40.7754027, "lon": -73.9857646 }, + { "lat": 40.7754813, "lon": -73.9857081 }, + { "lat": 40.7754971, "lon": -73.9856960 }, + { "lat": 40.7755431, "lon": -73.9856960 }, + { "lat": 40.7755775, "lon": -73.9857220 }, + { "lat": 40.7756731, "lon": -73.9859481 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "parking:lane:right": "parallel", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 330741670, + "bounds": { + "minlat": 40.7766335, + "minlon": -73.9871639, + "maxlat": 40.7767867, + "maxlon": -73.9867936 + }, + "nodes": [ + 3377387917, + 3884632725, + 10742000942, + 10742000937 + ], + "geometry": [ + { "lat": 40.7766335, "lon": -73.9867936 }, + { "lat": 40.7766920, "lon": -73.9869356 }, + { "lat": 40.7767051, "lon": -73.9869672 }, + { "lat": 40.7767867, "lon": -73.9871639 } + ], + "tags": { + "cutting": "both", + "highway": "service", + "maxheight": "7'", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 330741671, + "bounds": { + "minlat": 40.7768258, + "minlon": -73.9868425, + "maxlat": 40.7777336, + "maxlon": -73.9860440 + }, + "nodes": [ + 3377387929, + 8250895293, + 3377387928, + 3377387927, + 3377387926, + 3377387925, + 3377387924, + 8636941244, + 3377387923, + 3377387922, + 3377387921, + 8250895291, + 3377387920 + ], + "geometry": [ + { "lat": 40.7776592, "lon": -73.9860440 }, + { "lat": 40.7777210, "lon": -73.9861945 }, + { "lat": 40.7777336, "lon": -73.9862274 }, + { "lat": 40.7777253, "lon": -73.9862717 }, + { "lat": 40.7777029, "lon": -73.9863087 }, + { "lat": 40.7776581, "lon": -73.9863475 }, + { "lat": 40.7774539, "lon": -73.9864971 }, + { "lat": 40.7771195, "lon": -73.9867532 }, + { "lat": 40.7770342, "lon": -73.9868185 }, + { "lat": 40.7769685, "lon": -73.9868425 }, + { "lat": 40.7768999, "lon": -73.9868167 }, + { "lat": 40.7768890, "lon": -73.9867937 }, + { "lat": 40.7768258, "lon": -73.9866513 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "driveway", + "sidewalk:left": "no", + "sidewalk:right": "yes", + "sidewalk:right:surface": "concrete" + } +}, +{ + "type": "way", + "id": 330741679, + "bounds": { + "minlat": 40.7761861, + "minlon": -73.9880119, + "maxlat": 40.7764787, + "maxlon": -73.9876006 + }, + "nodes": [ + 10742000967, + 3377387954, + 3377387953, + 10742000966, + 3377387952, + 3377387951, + 10742000968 + ], + "geometry": [ + { "lat": 40.7761861, "lon": -73.9876234 }, + { "lat": 40.7762817, "lon": -73.9876140 }, + { "lat": 40.7763926, "lon": -73.9876006 }, + { "lat": 40.7764367, "lon": -73.9877044 }, + { "lat": 40.7764787, "lon": -73.9878030 }, + { "lat": 40.7764087, "lon": -73.9879122 }, + { "lat": 40.7763499, "lon": -73.9880119 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "sidewalk:left": "no", + "sidewalk:right": "yes", + "sidewalk:right:surface": "concrete" + } +}, +{ + "type": "way", + "id": 330748455, + "bounds": { + "minlat": 40.7804557, + "minlon": -73.9707388, + "maxlat": 40.7805537, + "maxlon": -73.9703134 + }, + "nodes": [ + 4269952109, + 3377460319, + 4269952107, + 3377460320 + ], + "geometry": [ + { "lat": 40.7805537, "lon": -73.9707388 }, + { "lat": 40.7805307, "lon": -73.9706036 }, + { "lat": 40.7804965, "lon": -73.9704875 }, + { "lat": 40.7804557, "lon": -73.9703134 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 330748465, + "bounds": { + "minlat": 40.7708124, + "minlon": -73.9784708, + "maxlat": 40.7727230, + "maxlon": -73.9766253 + }, + "nodes": [ + 3377460331, + 4332562558, + 4332562575, + 9906929032, + 4332563033, + 9178914796, + 9906929033, + 4332562555, + 9178914797, + 247224174, + 561950077, + 4332563030, + 9906929034, + 561950065, + 561950063, + 9906929035, + 4332563032, + 9906929036, + 2059303810, + 247221963 + ], + "geometry": [ + { "lat": 40.7727230, "lon": -73.9766253 }, + { "lat": 40.7725571, "lon": -73.9766830 }, + { "lat": 40.7725013, "lon": -73.9767019 }, + { "lat": 40.7724343, "lon": -73.9767328 }, + { "lat": 40.7723881, "lon": -73.9767538 }, + { "lat": 40.7722820, "lon": -73.9768072 }, + { "lat": 40.7721982, "lon": -73.9768555 }, + { "lat": 40.7721004, "lon": -73.9769180 }, + { "lat": 40.7720148, "lon": -73.9769730 }, + { "lat": 40.7719177, "lon": -73.9770455 }, + { "lat": 40.7718265, "lon": -73.9771163 }, + { "lat": 40.7717452, "lon": -73.9771871 }, + { "lat": 40.7716700, "lon": -73.9772623 }, + { "lat": 40.7715916, "lon": -73.9773467 }, + { "lat": 40.7714930, "lon": -73.9774634 }, + { "lat": 40.7714300, "lon": -73.9775474 }, + { "lat": 40.7713706, "lon": -73.9776401 }, + { "lat": 40.7710732, "lon": -73.9781104 }, + { "lat": 40.7709764, "lon": -73.9782512 }, + { "lat": 40.7708124, "lon": -73.9784708 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 332054904, + "bounds": { + "minlat": 40.7614503, + "minlon": -73.9852787, + "maxlat": 40.7625697, + "maxlon": -73.9836782 + }, + "nodes": [ + 1511873348, + 3391627298, + 3391627300, + 3391627299, + 3391627297, + 11296253741, + 3974095846, + 2435108462, + 42428308, + 2435108453, + 10594155705, + 3977886863, + 42428310, + 10173292884, + 3977886865, + 3974095849, + 10254591065, + 1511879371, + 2717323978, + 2717323977, + 1511873347, + 1511873346, + 1511873348 + ], + "geometry": [ + { "lat": 40.7617196, "lon": -73.9844098 }, + { "lat": 40.7620411, "lon": -73.9851769 }, + { "lat": 40.7620517, "lon": -73.9851692 }, + { "lat": 40.7620631, "lon": -73.9851966 }, + { "lat": 40.7620156, "lon": -73.9852309 }, + { "lat": 40.7620092, "lon": -73.9852354 }, + { "lat": 40.7619480, "lon": -73.9852787 }, + { "lat": 40.7614838, "lon": -73.9841757 }, + { "lat": 40.7614503, "lon": -73.9840983 }, + { "lat": 40.7615078, "lon": -73.9840613 }, + { "lat": 40.7617781, "lon": -73.9838813 }, + { "lat": 40.7620141, "lon": -73.9837244 }, + { "lat": 40.7620858, "lon": -73.9836782 }, + { "lat": 40.7621100, "lon": -73.9837355 }, + { "lat": 40.7621200, "lon": -73.9837593 }, + { "lat": 40.7625697, "lon": -73.9848269 }, + { "lat": 40.7625129, "lon": -73.9848683 }, + { "lat": 40.7624964, "lon": -73.9848804 }, + { "lat": 40.7624449, "lon": -73.9849176 }, + { "lat": 40.7624340, "lon": -73.9848914 }, + { "lat": 40.7624449, "lon": -73.9848834 }, + { "lat": 40.7621229, "lon": -73.9841152 }, + { "lat": 40.7617196, "lon": -73.9844098 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 332388684, + "bounds": { + "minlat": 40.8074916, + "minlon": -73.9454127, + "maxlat": 40.8077463, + "maxlon": -73.9448096 + }, + "nodes": [ + 3395083621, + 10170875032, + 42453246 + ], + "geometry": [ + { "lat": 40.8074916, "lon": -73.9448096 }, + { "lat": 40.8077115, "lon": -73.9453322 }, + { "lat": 40.8077463, "lon": -73.9454127 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "change:lanes:backward": "not_left|yes", + "change:lanes:forward": "no", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "none|merge_to_left", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 332388685, + "bounds": { + "minlat": 40.8072559, + "minlon": -73.9448096, + "maxlat": 40.8074916, + "maxlon": -73.9442512 + }, + "nodes": [ + 3395083620, + 3395083621 + ], + "geometry": [ + { "lat": 40.8072559, "lon": -73.9442512 }, + { "lat": 40.8074916, "lon": -73.9448096 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 335920879, + "bounds": { + "minlat": 40.7335469, + "minlon": -73.9469738, + "maxlat": 40.7337868, + "maxlon": -73.9458000 + }, + "nodes": [ + 3430220633, + 13451870132, + 13451870133 + ], + "geometry": [ + { "lat": 40.7335469, "lon": -73.9469738 }, + { "lat": 40.7336576, "lon": -73.9458000 }, + { "lat": 40.7337868, "lon": -73.9458153 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 335920881, + "bounds": { + "minlat": 40.7336773, + "minlon": -73.9469954, + "maxlat": 40.7338728, + "maxlon": -73.9448882 + }, + "nodes": [ + 3430220639, + 13451870133, + 3430220629, + 3430220632, + 3430220640 + ], + "geometry": [ + { "lat": 40.7336773, "lon": -73.9469954 }, + { "lat": 40.7337868, "lon": -73.9458153 }, + { "lat": 40.7337926, "lon": -73.9457227 }, + { "lat": 40.7338456, "lon": -73.9451674 }, + { "lat": 40.7338728, "lon": -73.9448882 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 335920882, + "bounds": { + "minlat": 40.7318799, + "minlon": -73.9473540, + "maxlat": 40.7358205, + "maxlon": -73.9465830 + }, + "nodes": [ + 3430220641, + 3430724990, + 3430220639, + 3430220633, + 3430220676, + 3430220673, + 3430220642, + 3430220643, + 3430733300, + 3430220730, + 3430220731, + 3430220644 + ], + "geometry": [ + { "lat": 40.7358205, "lon": -73.9473540 }, + { "lat": 40.7343308, "lon": -73.9471140 }, + { "lat": 40.7336773, "lon": -73.9469954 }, + { "lat": 40.7335469, "lon": -73.9469738 }, + { "lat": 40.7329285, "lon": -73.9468714 }, + { "lat": 40.7327882, "lon": -73.9468482 }, + { "lat": 40.7326364, "lon": -73.9468230 }, + { "lat": 40.7325146, "lon": -73.9466850 }, + { "lat": 40.7322990, "lon": -73.9466516 }, + { "lat": 40.7320854, "lon": -73.9466140 }, + { "lat": 40.7320596, "lon": -73.9466101 }, + { "lat": 40.7318799, "lon": -73.9465830 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 335920883, + "bounds": { + "minlat": 40.7343308, + "minlon": -73.9471140, + "maxlat": 40.7346855, + "maxlon": -73.9448359 + }, + "nodes": [ + 42495840, + 9295062249, + 12381737086, + 10717835524, + 3430724990 + ], + "geometry": [ + { "lat": 40.7346855, "lon": -73.9448359 }, + { "lat": 40.7345465, "lon": -73.9449647 }, + { "lat": 40.7345401, "lon": -73.9450291 }, + { "lat": 40.7345336, "lon": -73.9450935 }, + { "lat": 40.7343308, "lon": -73.9471140 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 335920885, + "bounds": { + "minlat": 40.7339239, + "minlon": -73.9448970, + "maxlat": 40.7341224, + "maxlon": -73.9443430 + }, + "nodes": [ + 3430220657, + 3430220658, + 3430220662 + ], + "geometry": [ + { "lat": 40.7339239, "lon": -73.9448970 }, + { "lat": 40.7339697, "lon": -73.9443769 }, + { "lat": 40.7341224, "lon": -73.9443430 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 335920886, + "bounds": { + "minlat": 40.7330531, + "minlon": -73.9449735, + "maxlat": 40.7343833, + "maxlon": -73.9432262 + }, + "nodes": [ + 3430220663, + 3430220659, + 3430220662, + 3430220660, + 3430220661 + ], + "geometry": [ + { "lat": 40.7343678, "lon": -73.9449735 }, + { "lat": 40.7343833, "lon": -73.9447832 }, + { "lat": 40.7341224, "lon": -73.9443430 }, + { "lat": 40.7335094, "lon": -73.9433040 }, + { "lat": 40.7330531, "lon": -73.9432262 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 335920887, + "bounds": { + "minlat": 40.7330373, + "minlon": -73.9450367, + "maxlat": 40.7336147, + "maxlon": -73.9448437 + }, + "nodes": [ + 3430220666, + 3430220667, + 3430220669, + 3430220664, + 3430220670, + 3430220668, + 3430220665 + ], + "geometry": [ + { "lat": 40.7336147, "lon": -73.9448437 }, + { "lat": 40.7336029, "lon": -73.9449589 }, + { "lat": 40.7335948, "lon": -73.9450032 }, + { "lat": 40.7335815, "lon": -73.9450286 }, + { "lat": 40.7335602, "lon": -73.9450367 }, + { "lat": 40.7335317, "lon": -73.9450340 }, + { "lat": 40.7330373, "lon": -73.9449515 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 335920888, + "bounds": { + "minlat": 40.7327882, + "minlon": -73.9468482, + "maxlat": 40.7330588, + "maxlon": -73.9447480 + }, + "nodes": [ + 3430220673, + 3430220674, + 3430220672, + 3430220665, + 3430220671 + ], + "geometry": [ + { "lat": 40.7327882, "lon": -73.9468482 }, + { "lat": 40.7328732, "lon": -73.9459540 }, + { "lat": 40.7329464, "lon": -73.9458132 }, + { "lat": 40.7330373, "lon": -73.9449515 }, + { "lat": 40.7330588, "lon": -73.9447480 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 335920889, + "bounds": { + "minlat": 40.7328326, + "minlon": -73.9479065, + "maxlat": 40.7329285, + "maxlon": -73.9468714 + }, + "nodes": [ + 5481917651, + 3430220680, + 3430220679, + 3430220676 + ], + "geometry": [ + { "lat": 40.7328326, "lon": -73.9479065 }, + { "lat": 40.7328600, "lon": -73.9476151 }, + { "lat": 40.7328766, "lon": -73.9474341 }, + { "lat": 40.7329285, "lon": -73.9468714 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 335920891, + "bounds": { + "minlat": 40.7312493, + "minlon": -73.9498517, + "maxlat": 40.7355849, + "maxlon": -73.9464955 + }, + "nodes": [ + 3430220681, + 3430724991, + 3430220675, + 3430220682, + 3430220692, + 3430220690, + 3430220691, + 3430220683, + 3430220684, + 3430220685 + ], + "geometry": [ + { "lat": 40.7355849, "lon": -73.9498517 }, + { "lat": 40.7340887, "lon": -73.9496098 }, + { "lat": 40.7326862, "lon": -73.9493845 }, + { "lat": 40.7313174, "lon": -73.9491579 }, + { "lat": 40.7312899, "lon": -73.9491445 }, + { "lat": 40.7312665, "lon": -73.9491123 }, + { "lat": 40.7312533, "lon": -73.9490654 }, + { "lat": 40.7312493, "lon": -73.9490131 }, + { "lat": 40.7314373, "lon": -73.9469612 }, + { "lat": 40.7315907, "lon": -73.9464955 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 335920893, + "bounds": { + "minlat": 40.7355849, + "minlon": -73.9498994, + "maxlat": 40.7359940, + "maxlon": -73.9485053 + }, + "nodes": [ + 3430220681, + 3430220696, + 3430220695, + 3430220699, + 3430220697, + 3430220698, + 3430220693, + 3430220694 + ], + "geometry": [ + { "lat": 40.7355849, "lon": -73.9498517 }, + { "lat": 40.7358802, "lon": -73.9498994 }, + { "lat": 40.7359910, "lon": -73.9487234 }, + { "lat": 40.7359940, "lon": -73.9486697 }, + { "lat": 40.7359930, "lon": -73.9486201 }, + { "lat": 40.7359737, "lon": -73.9485718 }, + { "lat": 40.7359330, "lon": -73.9485410 }, + { "lat": 40.7357168, "lon": -73.9485053 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 335920895, + "bounds": { + "minlat": 40.7316990, + "minlon": -73.9465830, + "maxlat": 40.7318799, + "maxlon": -73.9465119 + }, + "nodes": [ + 3430220724, + 3430220719, + 3430220720, + 3430220644 + ], + "geometry": [ + { "lat": 40.7316990, "lon": -73.9465562 }, + { "lat": 40.7317406, "lon": -73.9465119 }, + { "lat": 40.7318423, "lon": -73.9465280 }, + { "lat": 40.7318799, "lon": -73.9465830 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 335920896, + "bounds": { + "minlat": 40.7316990, + "minlon": -73.9466259, + "maxlat": 40.7318799, + "maxlon": -73.9465562 + }, + "nodes": [ + 3430220644, + 3430220721, + 3430220722, + 3430220724 + ], + "geometry": [ + { "lat": 40.7318799, "lon": -73.9465830 }, + { "lat": 40.7318372, "lon": -73.9466259 }, + { "lat": 40.7317315, "lon": -73.9466085 }, + { "lat": 40.7316990, "lon": -73.9465562 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 335920897, + "bounds": { + "minlat": 40.7314406, + "minlon": -73.9465562, + "maxlat": 40.7316990, + "maxlon": -73.9464124 + }, + "nodes": [ + 2422186264, + 8097082904, + 3430220723, + 3430220685, + 3430220724 + ], + "geometry": [ + { "lat": 40.7314406, "lon": -73.9464124 }, + { "lat": 40.7315112, "lon": -73.9464505 }, + { "lat": 40.7315309, "lon": -73.9464620 }, + { "lat": 40.7315907, "lon": -73.9464955 }, + { "lat": 40.7316990, "lon": -73.9465562 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 335935797, + "bounds": { + "minlat": 40.7375593, + "minlon": -73.9788226, + "maxlat": 40.7378834, + "maxlon": -73.9780485 + }, + "nodes": [ + 3430331122, + 8127675279, + 42436598 + ], + "geometry": [ + { "lat": 40.7378834, "lon": -73.9788226 }, + { "lat": 40.7376196, "lon": -73.9781925 }, + { "lat": 40.7375593, "lon": -73.9780485 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 24th Street", + "name:ru": "Восточная 24-я стрит", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 335935798, + "bounds": { + "minlat": 40.7381901, + "minlon": -73.9804284, + "maxlat": 40.7385557, + "maxlon": -73.9795551 + }, + "nodes": [ + 42436590, + 8119193332, + 3430331121 + ], + "geometry": [ + { "lat": 40.7385557, "lon": -73.9804284 }, + { "lat": 40.7384938, "lon": -73.9802805 }, + { "lat": 40.7381901, "lon": -73.9795551 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 24th Street", + "name:ru": "Восточная 24-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 335935799, + "bounds": { + "minlat": 40.7378893, + "minlon": -73.9809116, + "maxlat": 40.7382830, + "maxlon": -73.9806305 + }, + "nodes": [ + 4207683796, + 3686062432, + 42442889 + ], + "geometry": [ + { "lat": 40.7382830, "lon": -73.9806305 }, + { "lat": 40.7379902, "lon": -73.9808395 }, + { "lat": 40.7378893, "lon": -73.9809116 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 335987151, + "bounds": { + "minlat": 40.7340887, + "minlon": -73.9496098, + "maxlat": 40.7343308, + "maxlon": -73.9471140 + }, + "nodes": [ + 3430724991, + 3430724986, + 3430724987, + 3430724988, + 3430724989, + 3430724990 + ], + "geometry": [ + { "lat": 40.7340887, "lon": -73.9496098 }, + { "lat": 40.7342190, "lon": -73.9482874 }, + { "lat": 40.7341987, "lon": -73.9482485 }, + { "lat": 40.7342271, "lon": -73.9479173 }, + { "lat": 40.7342622, "lon": -73.9478529 }, + { "lat": 40.7343308, "lon": -73.9471140 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 335987199, + "bounds": { + "minlat": 40.7322800, + "minlon": -73.9424585, + "maxlat": 40.7327560, + "maxlon": -73.9407020 + }, + "nodes": [ + 3430733407, + 7838488165, + 7838488166, + 7838488167, + 7838488168, + 7838488172, + 9785281037 + ], + "geometry": [ + { "lat": 40.7322800, "lon": -73.9423632 }, + { "lat": 40.7324478, "lon": -73.9424585 }, + { "lat": 40.7325182, "lon": -73.9422708 }, + { "lat": 40.7327289, "lon": -73.9411581 }, + { "lat": 40.7327560, "lon": -73.9409271 }, + { "lat": 40.7324311, "lon": -73.9407785 }, + { "lat": 40.7322808, "lon": -73.9407020 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 336534267, + "bounds": { + "minlat": 40.7604789, + "minlon": -73.9572928, + "maxlat": 40.7606729, + "maxlon": -73.9570242 + }, + "nodes": [ + 406010307, + 9142584937, + 3785578844, + 371190626 + ], + "geometry": [ + { "lat": 40.7606729, "lon": -73.9570242 }, + { "lat": 40.7606564, "lon": -73.9570394 }, + { "lat": 40.7606398, "lon": -73.9570582 }, + { "lat": 40.7604789, "lon": -73.9572928 } + ], + "tags": { + "hgv:lanes": "no|", + "highway": "tertiary", + "lanes": "1", + "layer": "-1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 336534277, + "bounds": { + "minlat": 40.7596406, + "minlon": -73.9581690, + "maxlat": 40.7602322, + "maxlon": -73.9576236 + }, + "nodes": [ + 42451332, + 4918486962, + 371190623, + 9142584939, + 3785575794, + 8586594922, + 371190621, + 9142584940, + 3785575837, + 3785575833 + ], + "geometry": [ + { "lat": 40.7602322, "lon": -73.9576236 }, + { "lat": 40.7601777, "lon": -73.9576896 }, + { "lat": 40.7601120, "lon": -73.9577621 }, + { "lat": 40.7600520, "lon": -73.9578251 }, + { "lat": 40.7599879, "lon": -73.9578872 }, + { "lat": 40.7599078, "lon": -73.9579608 }, + { "lat": 40.7598463, "lon": -73.9580160 }, + { "lat": 40.7597752, "lon": -73.9580758 }, + { "lat": 40.7597122, "lon": -73.9581231 }, + { "lat": 40.7596406, "lon": -73.9581690 } + ], + "tags": { + "destination": "East 61st Street and York Avenue", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 336872312, + "bounds": { + "minlat": 40.7954937, + "minlon": -73.9760092, + "maxlat": 40.7959475, + "maxlon": -73.9751800 + }, + "nodes": [ + 42425348, + 3917296974, + 9168918356, + 595314114 + ], + "geometry": [ + { "lat": 40.7954937, "lon": -73.9760092 }, + { "lat": 40.7955830, "lon": -73.9758285 }, + { "lat": 40.7958477, "lon": -73.9753546 }, + { "lat": 40.7959475, "lon": -73.9751800 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 336872313, + "bounds": { + "minlat": 40.7583806, + "minlon": -74.0040809, + "maxlat": 40.7591299, + "maxlon": -74.0035376 + }, + "nodes": [ + 247081705, + 12154605956 + ], + "geometry": [ + { "lat": 40.7591299, "lon": -74.0035376 }, + { "lat": 40.7583806, "lon": -74.0040809 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 336872314, + "bounds": { + "minlat": 40.7592370, + "minlon": -74.0034288, + "maxlat": 40.7592811, + "maxlon": -74.0031619 + }, + "nodes": [ + 12154605947, + 247084435, + 1760567561, + 1760567564, + 1760567562, + 247084436 + ], + "geometry": [ + { "lat": 40.7592811, "lon": -74.0034288 }, + { "lat": 40.7592538, "lon": -74.0033472 }, + { "lat": 40.7592412, "lon": -74.0033050 }, + { "lat": 40.7592370, "lon": -74.0032577 }, + { "lat": 40.7592389, "lon": -74.0032153 }, + { "lat": 40.7592486, "lon": -74.0031619 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 336930595, + "bounds": { + "minlat": 40.7293498, + "minlon": -73.9307675, + "maxlat": 40.7322029, + "maxlon": -73.9303270 + }, + "nodes": [ + 3440153591, + 3440153337, + 761583795, + 3440153336, + 761583794, + 3440153335, + 761583792, + 3440153334, + 3440153332, + 3440153333, + 761583791, + 3440153331, + 761583740, + 3440153511, + 10861954617, + 3440153512, + 11211159651, + 279156222 + ], + "geometry": [ + { "lat": 40.7322029, "lon": -73.9307675 }, + { "lat": 40.7320677, "lon": -73.9307648 }, + { "lat": 40.7318470, "lon": -73.9306790 }, + { "lat": 40.7316894, "lon": -73.9306589 }, + { "lat": 40.7315360, "lon": -73.9306454 }, + { "lat": 40.7313774, "lon": -73.9306200 }, + { "lat": 40.7312179, "lon": -73.9305811 }, + { "lat": 40.7309821, "lon": -73.9305475 }, + { "lat": 40.7307474, "lon": -73.9305234 }, + { "lat": 40.7305106, "lon": -73.9305006 }, + { "lat": 40.7302768, "lon": -73.9304671 }, + { "lat": 40.7300156, "lon": -73.9304014 }, + { "lat": 40.7297775, "lon": -73.9303270 }, + { "lat": 40.7296109, "lon": -73.9303978 }, + { "lat": 40.7295209, "lon": -73.9304657 }, + { "lat": 40.7294309, "lon": -73.9305336 }, + { "lat": 40.7294245, "lon": -73.9305347 }, + { "lat": 40.7293498, "lon": -73.9305207 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Locust Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 336930600, + "bounds": { + "minlat": 40.7311877, + "minlon": -73.9333353, + "maxlat": 40.7325435, + "maxlon": -73.9323479 + }, + "nodes": [ + 761583759, + 3440153618, + 3440153374, + 10088187223, + 10088187224, + 3440153372, + 10088187242, + 3440153377, + 3440153514, + 10088187222, + 10088187221, + 10088187218, + 10088187220, + 10088187219, + 3440153373, + 761583570, + 3440153589, + 761583317 + ], + "geometry": [ + { "lat": 40.7311877, "lon": -73.9333353 }, + { "lat": 40.7313118, "lon": -73.9332538 }, + { "lat": 40.7315067, "lon": -73.9331451 }, + { "lat": 40.7316211, "lon": -73.9330808 }, + { "lat": 40.7316715, "lon": -73.9330543 }, + { "lat": 40.7317239, "lon": -73.9330324 }, + { "lat": 40.7317936, "lon": -73.9330078 }, + { "lat": 40.7318704, "lon": -73.9329836 }, + { "lat": 40.7319404, "lon": -73.9329638 }, + { "lat": 40.7321764, "lon": -73.9328880 }, + { "lat": 40.7322260, "lon": -73.9328679 }, + { "lat": 40.7322698, "lon": -73.9328434 }, + { "lat": 40.7323054, "lon": -73.9328187 }, + { "lat": 40.7323297, "lon": -73.9327964 }, + { "lat": 40.7323435, "lon": -73.9327816 }, + { "lat": 40.7323584, "lon": -73.9327493 }, + { "lat": 40.7324244, "lon": -73.9325979 }, + { "lat": 40.7325435, "lon": -73.9323479 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Calixtus Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 337064754, + "bounds": { + "minlat": 40.8221845, + "minlon": -73.9759834, + "maxlat": 40.8222487, + "maxlon": -73.9758701 + }, + "nodes": [ + 3441621782, + 3441621786 + ], + "geometry": [ + { "lat": 40.8221845, "lon": -73.9758701 }, + { "lat": 40.8222487, "lon": -73.9759834 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Portside Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 337067071, + "bounds": { + "minlat": 40.8212781, + "minlon": -73.9758177, + "maxlat": 40.8213323, + "maxlon": -73.9754569 + }, + "nodes": [ + 3441639761, + 3441639758, + 3441639756, + 3441639759, + 3441639763, + 3441639765, + 3441639767 + ], + "geometry": [ + { "lat": 40.8212975, "lon": -73.9754569 }, + { "lat": 40.8212873, "lon": -73.9754933 }, + { "lat": 40.8212781, "lon": -73.9755554 }, + { "lat": 40.8212873, "lon": -73.9756229 }, + { "lat": 40.8213098, "lon": -73.9757013 }, + { "lat": 40.8213323, "lon": -73.9757647 }, + { "lat": 40.8213314, "lon": -73.9758177 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Binghamton Way" + } +}, +{ + "type": "way", + "id": 337067072, + "bounds": { + "minlat": 40.8212975, + "minlon": -73.9758701, + "maxlat": 40.8221845, + "maxlon": -73.9751314 + }, + "nodes": [ + 3441621782, + 3489087902, + 3441639781, + 3441639780, + 3441639779, + 3441639778, + 3441639777, + 3441639776, + 3441639775, + 3441639761 + ], + "geometry": [ + { "lat": 40.8221845, "lon": -73.9758701 }, + { "lat": 40.8220794, "lon": -73.9755959 }, + { "lat": 40.8220306, "lon": -73.9754686 }, + { "lat": 40.8219423, "lon": -73.9752408 }, + { "lat": 40.8219209, "lon": -73.9751935 }, + { "lat": 40.8218820, "lon": -73.9751530 }, + { "lat": 40.8218391, "lon": -73.9751314 }, + { "lat": 40.8217962, "lon": -73.9751341 }, + { "lat": 40.8217574, "lon": -73.9751557 }, + { "lat": 40.8212975, "lon": -73.9754569 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Portside Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 337067073, + "bounds": { + "minlat": 40.8211902, + "minlon": -73.9754569, + "maxlat": 40.8217574, + "maxlon": -73.9748370 + }, + "nodes": [ + 3441639761, + 3441639752, + 3441639753, + 3441639754, + 3441639764, + 3441639768, + 3441639769, + 3441639771, + 3441639772, + 3441639773, + 3441639774, + 3441639775 + ], + "geometry": [ + { "lat": 40.8212975, "lon": -73.9754569 }, + { "lat": 40.8211902, "lon": -73.9751949 }, + { "lat": 40.8211913, "lon": -73.9751287 }, + { "lat": 40.8212188, "lon": -73.9750869 }, + { "lat": 40.8213118, "lon": -73.9750193 }, + { "lat": 40.8215448, "lon": -73.9748613 }, + { "lat": 40.8215857, "lon": -73.9748370 }, + { "lat": 40.8216215, "lon": -73.9748384 }, + { "lat": 40.8216511, "lon": -73.9748721 }, + { "lat": 40.8216756, "lon": -73.9749343 }, + { "lat": 40.8217257, "lon": -73.9750679 }, + { "lat": 40.8217574, "lon": -73.9751557 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 337071960, + "bounds": { + "minlat": 40.8212616, + "minlon": -73.9767633, + "maxlat": 40.8215950, + "maxlon": -73.9759517 + }, + "nodes": [ + 3441639755, + 3441639760, + 3441639770 + ], + "geometry": [ + { "lat": 40.8212616, "lon": -73.9759517 }, + { "lat": 40.8212914, "lon": -73.9760659 }, + { "lat": 40.8215950, "lon": -73.9767633 } + ], + "tags": { + "highway": "residential", + "name": "Binghamton Way", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 337071961, + "bounds": { + "minlat": 40.8212616, + "minlon": -73.9759517, + "maxlat": 40.8213314, + "maxlon": -73.9758177 + }, + "nodes": [ + 3441639755, + 3441681444, + 3441681445, + 3441639767 + ], + "geometry": [ + { "lat": 40.8212616, "lon": -73.9759517 }, + { "lat": 40.8212728, "lon": -73.9758881 }, + { "lat": 40.8212964, "lon": -73.9758503 }, + { "lat": 40.8213314, "lon": -73.9758177 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Binghamton Way", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 337071962, + "bounds": { + "minlat": 40.8212616, + "minlon": -73.9759517, + "maxlat": 40.8213314, + "maxlon": -73.9758177 + }, + "nodes": [ + 3441639767, + 3441639766, + 3441639762, + 3441639755 + ], + "geometry": [ + { "lat": 40.8213314, "lon": -73.9758177 }, + { "lat": 40.8213263, "lon": -73.9758659 }, + { "lat": 40.8213044, "lon": -73.9759032 }, + { "lat": 40.8212616, "lon": -73.9759517 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Binghamton Way", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 337072335, + "bounds": { + "minlat": 40.8209305, + "minlon": -73.9759480, + "maxlat": 40.8212105, + "maxlon": -73.9751317 + }, + "nodes": [ + 3441694197, + 3441694200, + 3441694205, + 3441694206, + 5362503901, + 3441694207 + ], + "geometry": [ + { "lat": 40.8209305, "lon": -73.9751317 }, + { "lat": 40.8210549, "lon": -73.9754294 }, + { "lat": 40.8211735, "lon": -73.9757371 }, + { "lat": 40.8211792, "lon": -73.9758057 }, + { "lat": 40.8211871, "lon": -73.9758418 }, + { "lat": 40.8212105, "lon": -73.9759480 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 337073009, + "bounds": { + "minlat": 40.8189444, + "minlon": -73.9782808, + "maxlat": 40.8194263, + "maxlon": -73.9778879 + }, + "nodes": [ + 5362526577, + 3441696442, + 3441696445, + 3441696447 + ], + "geometry": [ + { "lat": 40.8189444, "lon": -73.9782808 }, + { "lat": 40.8190465, "lon": -73.9782115 }, + { "lat": 40.8193548, "lon": -73.9780006 }, + { "lat": 40.8194263, "lon": -73.9778879 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 337073010, + "bounds": { + "minlat": 40.8188958, + "minlon": -73.9782115, + "maxlat": 40.8190465, + "maxlon": -73.9778292 + }, + "nodes": [ + 3441696439, + 3441696441, + 3441696442 + ], + "geometry": [ + { "lat": 40.8188958, "lon": -73.9778292 }, + { "lat": 40.8189714, "lon": -73.9780220 }, + { "lat": 40.8190465, "lon": -73.9782115 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 337073011, + "bounds": { + "minlat": 40.8187490, + "minlon": -73.9779289, + "maxlat": 40.8193001, + "maxlon": -73.9775672 + }, + "nodes": [ + 5362514435, + 3441696439, + 3441696444 + ], + "geometry": [ + { "lat": 40.8187490, "lon": -73.9779289 }, + { "lat": 40.8188958, "lon": -73.9778292 }, + { "lat": 40.8193001, "lon": -73.9775672 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 337073103, + "bounds": { + "minlat": 40.8186238, + "minlon": -73.9776244, + "maxlat": 40.8191789, + "maxlon": -73.9772572 + }, + "nodes": [ + 5362514144, + 3441699705 + ], + "geometry": [ + { "lat": 40.8186238, "lon": -73.9776244 }, + { "lat": 40.8191789, "lon": -73.9772572 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 337073140, + "bounds": { + "minlat": 40.8191361, + "minlon": -73.9771477, + "maxlat": 40.8207540, + "maxlon": -73.9760608 + }, + "nodes": [ + 5362514140, + 3441700282, + 5362514145, + 3441705297 + ], + "geometry": [ + { "lat": 40.8191361, "lon": -73.9771477 }, + { "lat": 40.8196005, "lon": -73.9768413 }, + { "lat": 40.8201630, "lon": -73.9764601 }, + { "lat": 40.8207540, "lon": -73.9760608 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 337073143, + "bounds": { + "minlat": 40.8190248, + "minlon": -73.9778879, + "maxlat": 40.8194263, + "maxlon": -73.9768707 + }, + "nodes": [ + 3441696447, + 3441696446, + 3441696444, + 7672312085, + 3441706594, + 3441699705, + 5362514140, + 3441699703, + 5362514137, + 3441690509 + ], + "geometry": [ + { "lat": 40.8194263, "lon": -73.9778879 }, + { "lat": 40.8193766, "lon": -73.9777579 }, + { "lat": 40.8193001, "lon": -73.9775672 }, + { "lat": 40.8192564, "lon": -73.9774560 }, + { "lat": 40.8192355, "lon": -73.9774016 }, + { "lat": 40.8191789, "lon": -73.9772572 }, + { "lat": 40.8191361, "lon": -73.9771477 }, + { "lat": 40.8191019, "lon": -73.9770612 }, + { "lat": 40.8190513, "lon": -73.9769335 }, + { "lat": 40.8190248, "lon": -73.9768707 } + ], + "tags": { + "highway": "service", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 337073987, + "bounds": { + "minlat": 40.8200121, + "minlon": -73.9766182, + "maxlat": 40.8208081, + "maxlon": -73.9756380 + }, + "nodes": [ + 3441689788, + 3441705297, + 3441705295, + 3441705545, + 3441705544, + 3441705542, + 3441704579, + 5362513013, + 5362514145, + 3441711148 + ], + "geometry": [ + { "lat": 40.8208081, "lon": -73.9762039 }, + { "lat": 40.8207540, "lon": -73.9760608 }, + { "lat": 40.8206650, "lon": -73.9758402 }, + { "lat": 40.8205852, "lon": -73.9756380 }, + { "lat": 40.8202514, "lon": -73.9758759 }, + { "lat": 40.8200417, "lon": -73.9760356 }, + { "lat": 40.8200121, "lon": -73.9760692 }, + { "lat": 40.8200754, "lon": -73.9762434 }, + { "lat": 40.8201630, "lon": -73.9764601 }, + { "lat": 40.8202287, "lon": -73.9766182 } + ], + "tags": { + "highway": "service", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 337073991, + "bounds": { + "minlat": 40.8207339, + "minlon": -73.9761211, + "maxlat": 40.8209302, + "maxlon": -73.9756246 + }, + "nodes": [ + 3441705043, + 5362503900, + 3441705044 + ], + "geometry": [ + { "lat": 40.8207339, "lon": -73.9756246 }, + { "lat": 40.8208968, "lon": -73.9760367 }, + { "lat": 40.8209302, "lon": -73.9761211 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 337075242, + "bounds": { + "minlat": 40.8202287, + "minlon": -73.9766182, + "maxlat": 40.8212616, + "maxlon": -73.9759480 + }, + "nodes": [ + 3441639755, + 3441694207, + 3441705044, + 3441689788, + 3441711148 + ], + "geometry": [ + { "lat": 40.8212616, "lon": -73.9759517 }, + { "lat": 40.8212105, "lon": -73.9759480 }, + { "lat": 40.8209302, "lon": -73.9761211 }, + { "lat": 40.8208081, "lon": -73.9762039 }, + { "lat": 40.8202287, "lon": -73.9766182 } + ], + "tags": { + "highway": "service", + "name": "Buckingham Way", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 337075276, + "bounds": { + "minlat": 40.8186810, + "minlon": -73.9777695, + "maxlat": 40.8202287, + "maxlon": -73.9766182 + }, + "nodes": [ + 3441711148, + 7672312102, + 3441706868, + 3441706867, + 3441706594, + 3441706865 + ], + "geometry": [ + { "lat": 40.8202287, "lon": -73.9766182 }, + { "lat": 40.8199192, "lon": -73.9768133 }, + { "lat": 40.8196582, "lon": -73.9769778 }, + { "lat": 40.8193776, "lon": -73.9773076 }, + { "lat": 40.8192355, "lon": -73.9774016 }, + { "lat": 40.8186810, "lon": -73.9777695 } + ], + "tags": { + "highway": "service", + "name": "Buckingham Way", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 338043682, + "bounds": { + "minlat": 40.7776488, + "minlon": -73.9551898, + "maxlat": 40.7777918, + "maxlon": -73.9549924 + }, + "nodes": [ + 3451036864, + 3451036865, + 3451036866, + 3451036867, + 3451036864 + ], + "geometry": [ + { "lat": 40.7777918, "lon": -73.9551254 }, + { "lat": 40.7777062, "lon": -73.9551898 }, + { "lat": 40.7776488, "lon": -73.9550569 }, + { "lat": 40.7777344, "lon": -73.9549924 }, + { "lat": 40.7777918, "lon": -73.9551254 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 338629495, + "bounds": { + "minlat": 40.8462068, + "minlon": -73.9230085, + "maxlat": 40.8474255, + "maxlon": -73.9218191 + }, + "nodes": [ + 12054487763, + 12054513789, + 12054513788, + 12054513787, + 12054513786, + 12054487765, + 12054513785, + 12054513781, + 12054513780, + 12054513779, + 3457354819, + 12054513778, + 12054513777, + 12054513776, + 3457354818, + 12054513775, + 3457354817, + 12054513774, + 3457354816, + 3457354810, + 3457354809, + 12054513773, + 12054513772, + 3457354806, + 12054487768, + 12054492676, + 3457354804, + 3457354803, + 12054492675, + 3457354801, + 3457354800, + 12054492674, + 3457354799, + 12054492673, + 12054492672, + 3457354802, + 3457354805, + 12054492671, + 12054492670, + 3457354808, + 12054492669, + 12054465368, + 3457354812, + 12054465367, + 12054465366, + 3457354814, + 12054465365, + 3457354815, + 12054513782, + 12054487761 + ], + "geometry": [ + { "lat": 40.8474255, "lon": -73.9222738 }, + { "lat": 40.8474123, "lon": -73.9222943 }, + { "lat": 40.8474000, "lon": -73.9223101 }, + { "lat": 40.8473840, "lon": -73.9223259 }, + { "lat": 40.8473671, "lon": -73.9223402 }, + { "lat": 40.8473468, "lon": -73.9223556 }, + { "lat": 40.8473266, "lon": -73.9223718 }, + { "lat": 40.8473066, "lon": -73.9223920 }, + { "lat": 40.8472911, "lon": -73.9224099 }, + { "lat": 40.8472741, "lon": -73.9224342 }, + { "lat": 40.8472601, "lon": -73.9224620 }, + { "lat": 40.8472164, "lon": -73.9225764 }, + { "lat": 40.8472017, "lon": -73.9226056 }, + { "lat": 40.8471878, "lon": -73.9226304 }, + { "lat": 40.8471717, "lon": -73.9226529 }, + { "lat": 40.8471534, "lon": -73.9226745 }, + { "lat": 40.8471347, "lon": -73.9226907 }, + { "lat": 40.8471141, "lon": -73.9227026 }, + { "lat": 40.8470915, "lon": -73.9227141 }, + { "lat": 40.8464152, "lon": -73.9230011 }, + { "lat": 40.8463942, "lon": -73.9230070 }, + { "lat": 40.8463740, "lon": -73.9230085 }, + { "lat": 40.8463505, "lon": -73.9230059 }, + { "lat": 40.8463275, "lon": -73.9229998 }, + { "lat": 40.8463079, "lon": -73.9229902 }, + { "lat": 40.8462847, "lon": -73.9229745 }, + { "lat": 40.8462626, "lon": -73.9229539 }, + { "lat": 40.8462451, "lon": -73.9229291 }, + { "lat": 40.8462318, "lon": -73.9229016 }, + { "lat": 40.8462209, "lon": -73.9228700 }, + { "lat": 40.8462110, "lon": -73.9228314 }, + { "lat": 40.8462068, "lon": -73.9227966 }, + { "lat": 40.8462077, "lon": -73.9227591 }, + { "lat": 40.8462116, "lon": -73.9227277 }, + { "lat": 40.8462211, "lon": -73.9226915 }, + { "lat": 40.8462380, "lon": -73.9226475 }, + { "lat": 40.8462708, "lon": -73.9225781 }, + { "lat": 40.8463053, "lon": -73.9225118 }, + { "lat": 40.8463388, "lon": -73.9224522 }, + { "lat": 40.8463754, "lon": -73.9223934 }, + { "lat": 40.8464116, "lon": -73.9223428 }, + { "lat": 40.8464499, "lon": -73.9222969 }, + { "lat": 40.8464906, "lon": -73.9222523 }, + { "lat": 40.8465320, "lon": -73.9222104 }, + { "lat": 40.8465810, "lon": -73.9221632 }, + { "lat": 40.8466232, "lon": -73.9221313 }, + { "lat": 40.8466635, "lon": -73.9221053 }, + { "lat": 40.8467031, "lon": -73.9220839 }, + { "lat": 40.8472032, "lon": -73.9218658 }, + { "lat": 40.8473103, "lon": -73.9218191 } + ], + "tags": { + "highway": "residential", + "noname": "yes", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 340532680, + "bounds": { + "minlat": 40.8064468, + "minlon": -73.9900264, + "maxlat": 40.8065350, + "maxlon": -73.9899813 + }, + "nodes": [ + 3477651022, + 3477651024, + 3477651030, + 3477651032 + ], + "geometry": [ + { "lat": 40.8064468, "lon": -73.9900264 }, + { "lat": 40.8064794, "lon": -73.9899959 }, + { "lat": 40.8065127, "lon": -73.9899813 }, + { "lat": 40.8065350, "lon": -73.9900166 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 340532681, + "bounds": { + "minlat": 40.8071451, + "minlon": -73.9903449, + "maxlat": 40.8072877, + "maxlon": -73.9901565 + }, + "nodes": [ + 3477651062, + 3477651060, + 3477651059, + 3477651061, + 3477651063, + 3477651065, + 3477651067, + 3477651069, + 3477651071, + 3477651073, + 3477651074, + 3477651072, + 3477651070, + 3477651068, + 3477651066, + 3477651064, + 3477651062 + ], + "geometry": [ + { "lat": 40.8071599, "lon": -73.9903093 }, + { "lat": 40.8071472, "lon": -73.9902762 }, + { "lat": 40.8071451, "lon": -73.9902393 }, + { "lat": 40.8071538, "lon": -73.9902041 }, + { "lat": 40.8071721, "lon": -73.9901760 }, + { "lat": 40.8071971, "lon": -73.9901593 }, + { "lat": 40.8072250, "lon": -73.9901565 }, + { "lat": 40.8072517, "lon": -73.9901680 }, + { "lat": 40.8072729, "lon": -73.9901921 }, + { "lat": 40.8072856, "lon": -73.9902252 }, + { "lat": 40.8072877, "lon": -73.9902621 }, + { "lat": 40.8072790, "lon": -73.9902973 }, + { "lat": 40.8072607, "lon": -73.9903254 }, + { "lat": 40.8072357, "lon": -73.9903421 }, + { "lat": 40.8072078, "lon": -73.9903449 }, + { "lat": 40.8071811, "lon": -73.9903334 }, + { "lat": 40.8071599, "lon": -73.9903093 } + ], + "tags": { + "highway": "residential", + "junction": "roundabout" + } +}, +{ + "type": "way", + "id": 340532682, + "bounds": { + "minlat": 40.8072729, + "minlon": -73.9901921, + "maxlat": 40.8077100, + "maxlon": -73.9898886 + }, + "nodes": [ + 3477651075, + 7672312271, + 7672269036, + 3477651071 + ], + "geometry": [ + { "lat": 40.8077100, "lon": -73.9898886 }, + { "lat": 40.8076420, "lon": -73.9899358 }, + { "lat": 40.8073410, "lon": -73.9901448 }, + { "lat": 40.8072729, "lon": -73.9901921 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 340532683, + "bounds": { + "minlat": 40.8063630, + "minlon": -73.9906138, + "maxlat": 40.8071599, + "maxlon": -73.9897894 + }, + "nodes": [ + 3477651062, + 3477651053, + 3477651049, + 3477651045, + 3477651035, + 3477651031, + 3477651025, + 3477651022, + 3477651017 + ], + "geometry": [ + { "lat": 40.8071599, "lon": -73.9903093 }, + { "lat": 40.8067809, "lon": -73.9905962 }, + { "lat": 40.8067255, "lon": -73.9906138 }, + { "lat": 40.8066834, "lon": -73.9905845 }, + { "lat": 40.8065405, "lon": -73.9902434 }, + { "lat": 40.8065165, "lon": -73.9901880 }, + { "lat": 40.8064839, "lon": -73.9901131 }, + { "lat": 40.8064468, "lon": -73.9900264 }, + { "lat": 40.8063630, "lon": -73.9897894 } + ], + "tags": { + "highway": "residential", + "name": "City Place" + } +}, +{ + "type": "way", + "id": 340773142, + "bounds": { + "minlat": 40.8061468, + "minlon": -73.9877476, + "maxlat": 40.8062894, + "maxlon": -73.9875592 + }, + "nodes": [ + 3480327297, + 3480327295, + 3480327294, + 3480327296, + 9861373207, + 9861373208, + 1256269850, + 3480327299, + 3480327301, + 3480327303, + 3480327305, + 3480327307, + 3480327308, + 3480327306, + 9861373205, + 3480327304, + 3480327302, + 3480327300, + 9861373206, + 3480327298, + 3480327297 + ], + "geometry": [ + { "lat": 40.8061654, "lon": -73.9877178 }, + { "lat": 40.8061532, "lon": -73.9876943 }, + { "lat": 40.8061468, "lon": -73.9876670 }, + { "lat": 40.8061469, "lon": -73.9876385 }, + { "lat": 40.8061533, "lon": -73.9876113 }, + { "lat": 40.8061657, "lon": -73.9875878 }, + { "lat": 40.8061827, "lon": -73.9875702 }, + { "lat": 40.8062050, "lon": -73.9875596 }, + { "lat": 40.8062288, "lon": -73.9875592 }, + { "lat": 40.8062513, "lon": -73.9875690 }, + { "lat": 40.8062702, "lon": -73.9875880 }, + { "lat": 40.8062834, "lon": -73.9876141 }, + { "lat": 40.8062894, "lon": -73.9876445 }, + { "lat": 40.8062875, "lon": -73.9876758 }, + { "lat": 40.8062781, "lon": -73.9877045 }, + { "lat": 40.8062621, "lon": -73.9877277 }, + { "lat": 40.8062437, "lon": -73.9877415 }, + { "lat": 40.8062232, "lon": -73.9877476 }, + { "lat": 40.8062021, "lon": -73.9877455 }, + { "lat": 40.8061824, "lon": -73.9877355 }, + { "lat": 40.8061654, "lon": -73.9877178 } + ], + "tags": { + "highway": "residential", + "junction": "roundabout" + } +}, +{ + "type": "way", + "id": 340773235, + "bounds": { + "minlat": 40.8068063, + "minlon": -73.9901565, + "maxlat": 40.8072250, + "maxlon": -73.9891100 + }, + "nodes": [ + 3480323785, + 3477651067 + ], + "geometry": [ + { "lat": 40.8068063, "lon": -73.9891100 }, + { "lat": 40.8072250, "lon": -73.9901565 } + ], + "tags": { + "highway": "residential", + "name": "The Promenade", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 340773236, + "bounds": { + "minlat": 40.8067351, + "minlon": -73.9902041, + "maxlat": 40.8071538, + "maxlon": -73.9891576 + }, + "nodes": [ + 3477651061, + 3480330000, + 3480323779 + ], + "geometry": [ + { "lat": 40.8071538, "lon": -73.9902041 }, + { "lat": 40.8071183, "lon": -73.9901292 }, + { "lat": 40.8067351, "lon": -73.9891576 } + ], + "tags": { + "highway": "residential", + "name": "The Promenade", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 340773237, + "bounds": { + "minlat": 40.8066724, + "minlon": -73.9891576, + "maxlat": 40.8068150, + "maxlon": -73.9889692 + }, + "nodes": [ + 1239453887, + 3480323774, + 3480323773, + 3480323775, + 3480323776, + 3480323778, + 3480323780, + 3480323782, + 3480323784, + 3480323786, + 3480323787, + 3480323785, + 3480323783, + 3480323781, + 3480323779, + 3480323777, + 3480351547, + 1239453887 + ], + "geometry": [ + { "lat": 40.8066872, "lon": -73.9891220 }, + { "lat": 40.8066745, "lon": -73.9890889 }, + { "lat": 40.8066724, "lon": -73.9890520 }, + { "lat": 40.8066811, "lon": -73.9890168 }, + { "lat": 40.8066994, "lon": -73.9889887 }, + { "lat": 40.8067244, "lon": -73.9889720 }, + { "lat": 40.8067523, "lon": -73.9889692 }, + { "lat": 40.8067790, "lon": -73.9889807 }, + { "lat": 40.8068002, "lon": -73.9890048 }, + { "lat": 40.8068129, "lon": -73.9890379 }, + { "lat": 40.8068150, "lon": -73.9890748 }, + { "lat": 40.8068063, "lon": -73.9891100 }, + { "lat": 40.8067880, "lon": -73.9891381 }, + { "lat": 40.8067630, "lon": -73.9891548 }, + { "lat": 40.8067351, "lon": -73.9891576 }, + { "lat": 40.8067084, "lon": -73.9891461 }, + { "lat": 40.8066985, "lon": -73.9891347 }, + { "lat": 40.8066872, "lon": -73.9891220 } + ], + "tags": { + "highway": "residential", + "junction": "roundabout" + } +}, +{ + "type": "way", + "id": 340773295, + "bounds": { + "minlat": 40.8062621, + "minlon": -73.9889692, + "maxlat": 40.8067523, + "maxlon": -73.9877277 + }, + "nodes": [ + 3480327304, + 3480329999, + 3480323780 + ], + "geometry": [ + { "lat": 40.8062621, "lon": -73.9877277 }, + { "lat": 40.8067171, "lon": -73.9888818 }, + { "lat": 40.8067523, "lon": -73.9889692 } + ], + "tags": { + "highway": "residential", + "name": "The Promenade", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 340773296, + "bounds": { + "minlat": 40.8061824, + "minlon": -73.9890168, + "maxlat": 40.8066811, + "maxlon": -73.9877355 + }, + "nodes": [ + 3480323775, + 3480329998, + 3480329997, + 3480327298 + ], + "geometry": [ + { "lat": 40.8066811, "lon": -73.9890168 }, + { "lat": 40.8066484, "lon": -73.9889638 }, + { "lat": 40.8061941, "lon": -73.9878013 }, + { "lat": 40.8061824, "lon": -73.9877355 } + ], + "tags": { + "highway": "residential", + "name": "The Promenade", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 340773465, + "bounds": { + "minlat": 40.8064045, + "minlon": -73.9911655, + "maxlat": 40.8065520, + "maxlon": -73.9908409 + }, + "nodes": [ + 103137025, + 7672268997, + 3480342140, + 1256269852 + ], + "geometry": [ + { "lat": 40.8065520, "lon": -73.9911655 }, + { "lat": 40.8064843, "lon": -73.9910801 }, + { "lat": 40.8064673, "lon": -73.9910587 }, + { "lat": 40.8064045, "lon": -73.9908409 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "City Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 340773659, + "bounds": { + "minlat": 40.8065350, + "minlon": -73.9901005, + "maxlat": 40.8065666, + "maxlon": -73.9900166 + }, + "nodes": [ + 3477651032, + 3477651037 + ], + "geometry": [ + { "lat": 40.8065350, "lon": -73.9900166 }, + { "lat": 40.8065666, "lon": -73.9901005 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 340773660, + "bounds": { + "minlat": 40.8064223, + "minlon": -73.9904064, + "maxlat": 40.8065725, + "maxlon": -73.9901005 + }, + "nodes": [ + 3477651037, + 3477651038, + 3477651031, + 3477651023, + 7672269027, + 3477651021, + 3477651020 + ], + "geometry": [ + { "lat": 40.8065666, "lon": -73.9901005 }, + { "lat": 40.8065725, "lon": -73.9901482 }, + { "lat": 40.8065165, "lon": -73.9901880 }, + { "lat": 40.8064684, "lon": -73.9901980 }, + { "lat": 40.8064592, "lon": -73.9902177 }, + { "lat": 40.8064329, "lon": -73.9902741 }, + { "lat": 40.8064223, "lon": -73.9904064 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 340773713, + "bounds": { + "minlat": 40.8062308, + "minlon": -73.9904064, + "maxlat": 40.8064223, + "maxlon": -73.9897604 + }, + "nodes": [ + 1239453889, + 3480333152, + 3480333153, + 3480333154, + 3477651020 + ], + "geometry": [ + { "lat": 40.8062308, "lon": -73.9897604 }, + { "lat": 40.8062746, "lon": -73.9898317 }, + { "lat": 40.8063702, "lon": -73.9900595 }, + { "lat": 40.8063984, "lon": -73.9902210 }, + { "lat": 40.8064223, "lon": -73.9904064 } + ], + "tags": { + "highway": "residential", + "name": "City Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 340773747, + "bounds": { + "minlat": 40.8054825, + "minlon": -73.9904477, + "maxlat": 40.8063148, + "maxlon": -73.9886302 + }, + "nodes": [ + 3480327310, + 3480329082, + 3480329081, + 3480329080, + 7222357756, + 3480329079, + 7222357757, + 3480329078, + 3480329076, + 7222357758, + 7222357761, + 7222357759, + 3480329075 + ], + "geometry": [ + { "lat": 40.8063148, "lon": -73.9904477 }, + { "lat": 40.8062688, "lon": -73.9902600 }, + { "lat": 40.8062323, "lon": -73.9900201 }, + { "lat": 40.8062077, "lon": -73.9899285 }, + { "lat": 40.8061656, "lon": -73.9898278 }, + { "lat": 40.8061381, "lon": -73.9898089 }, + { "lat": 40.8060695, "lon": -73.9898024 }, + { "lat": 40.8060512, "lon": -73.9897891 }, + { "lat": 40.8056913, "lon": -73.9889097 }, + { "lat": 40.8056639, "lon": -73.9888691 }, + { "lat": 40.8055303, "lon": -73.9887579 }, + { "lat": 40.8055051, "lon": -73.9887076 }, + { "lat": 40.8054825, "lon": -73.9886302 } + ], + "tags": { + "highway": "service", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340774350, + "bounds": { + "minlat": 40.8061780, + "minlon": -73.9897894, + "maxlat": 40.8063630, + "maxlon": -73.9893341 + }, + "nodes": [ + 3477651017, + 3480338247 + ], + "geometry": [ + { "lat": 40.8063630, "lon": -73.9897894 }, + { "lat": 40.8061780, "lon": -73.9893341 } + ], + "tags": { + "highway": "residential", + "layer": "-1", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 340774351, + "bounds": { + "minlat": 40.8054794, + "minlon": -73.9886302, + "maxlat": 40.8058864, + "maxlon": -73.9878875 + }, + "nodes": [ + 3480338239, + 3483176874, + 3483176873, + 3483176872, + 3480338238, + 7222357760, + 3480338237, + 3480329075 + ], + "geometry": [ + { "lat": 40.8058864, "lon": -73.9878875 }, + { "lat": 40.8057800, "lon": -73.9879555 }, + { "lat": 40.8056035, "lon": -73.9881351 }, + { "lat": 40.8055444, "lon": -73.9882411 }, + { "lat": 40.8055069, "lon": -73.9883437 }, + { "lat": 40.8054861, "lon": -73.9884379 }, + { "lat": 40.8054794, "lon": -73.9885321 }, + { "lat": 40.8054825, "lon": -73.9886302 } + ], + "tags": { + "highway": "residential", + "name": "City Place" + } +}, +{ + "type": "way", + "id": 340774686, + "bounds": { + "minlat": 40.8058818, + "minlon": -73.9925164, + "maxlat": 40.8065356, + "maxlon": -73.9919902 + }, + "nodes": [ + 4215808352, + 3480340628, + 3480340629, + 3480340630, + 3480340631, + 3480340632, + 3480340633, + 3480340635, + 3480340636, + 3480340638, + 3480340637, + 3480340634 + ], + "geometry": [ + { "lat": 40.8058818, "lon": -73.9919902 }, + { "lat": 40.8059482, "lon": -73.9921050 }, + { "lat": 40.8059815, "lon": -73.9921547 }, + { "lat": 40.8060868, "lon": -73.9922294 }, + { "lat": 40.8061632, "lon": -73.9922763 }, + { "lat": 40.8062940, "lon": -73.9922645 }, + { "lat": 40.8063694, "lon": -73.9922763 }, + { "lat": 40.8064724, "lon": -73.9922499 }, + { "lat": 40.8064846, "lon": -73.9922601 }, + { "lat": 40.8065356, "lon": -73.9924183 }, + { "lat": 40.8065245, "lon": -73.9924578 }, + { "lat": 40.8063727, "lon": -73.9925164 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340774687, + "bounds": { + "minlat": 40.8065356, + "minlon": -73.9924417, + "maxlat": 40.8065589, + "maxlon": -73.9924183 + }, + "nodes": [ + 3480340638, + 3480340639 + ], + "geometry": [ + { "lat": 40.8065356, "lon": -73.9924183 }, + { "lat": 40.8065589, "lon": -73.9924417 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340774688, + "bounds": { + "minlat": 40.8069013, + "minlon": -73.9926488, + "maxlat": 40.8069447, + "maxlon": -73.9924929 + }, + "nodes": [ + 3480340645, + 3480340642 + ], + "geometry": [ + { "lat": 40.8069447, "lon": -73.9926488 }, + { "lat": 40.8069013, "lon": -73.9924929 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340774689, + "bounds": { + "minlat": 40.8065589, + "minlon": -73.9926423, + "maxlat": 40.8069445, + "maxlon": -73.9922645 + }, + "nodes": [ + 3480340642, + 3480340640, + 3480340639, + 3480340641, + 3480340643, + 3480340644, + 3480340642 + ], + "geometry": [ + { "lat": 40.8069013, "lon": -73.9924929 }, + { "lat": 40.8066187, "lon": -73.9926423 }, + { "lat": 40.8065589, "lon": -73.9924417 }, + { "lat": 40.8068669, "lon": -73.9922645 }, + { "lat": 40.8069157, "lon": -73.9923495 }, + { "lat": 40.8069445, "lon": -73.9924285 }, + { "lat": 40.8069013, "lon": -73.9924929 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340775675, + "bounds": { + "minlat": 40.8062380, + "minlon": -73.9893373, + "maxlat": 40.8062551, + "maxlon": -73.9892953 + }, + "nodes": [ + 3480342491, + 3480342490 + ], + "geometry": [ + { "lat": 40.8062551, "lon": -73.9893373 }, + { "lat": 40.8062380, "lon": -73.9892953 } + ], + "tags": { + "covered": "no", + "highway": "service", + "name": "City Place", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 340775710, + "bounds": { + "minlat": 40.8061700, + "minlon": -73.9895930, + "maxlat": 40.8066985, + "maxlon": -73.9891347 + }, + "nodes": [ + 3480351547, + 3480351545, + 3480351544, + 3480351543 + ], + "geometry": [ + { "lat": 40.8066985, "lon": -73.9891347 }, + { "lat": 40.8061913, "lon": -73.9895064 }, + { "lat": 40.8061725, "lon": -73.9895395 }, + { "lat": 40.8061700, "lon": -73.9895930 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "City Place", + "oneway": "yes", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 340775711, + "bounds": { + "minlat": 40.8061264, + "minlon": -73.9895930, + "maxlat": 40.8066724, + "maxlon": -73.9890520 + }, + "nodes": [ + 3480351543, + 1239453900, + 3480351542, + 3480342491, + 3480351546, + 3480323773 + ], + "geometry": [ + { "lat": 40.8061700, "lon": -73.9895930 }, + { "lat": 40.8061314, "lon": -73.9894867 }, + { "lat": 40.8061264, "lon": -73.9894384 }, + { "lat": 40.8062551, "lon": -73.9893373 }, + { "lat": 40.8065925, "lon": -73.9891047 }, + { "lat": 40.8066724, "lon": -73.9890520 } + ], + "tags": { + "highway": "residential", + "name": "City Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 340777617, + "bounds": { + "minlat": 40.8058394, + "minlon": -73.9865772, + "maxlat": 40.8060973, + "maxlon": -73.9862347 + }, + "nodes": [ + 3480362195, + 3480362091, + 3480362089, + 3480362088, + 3480362087, + 3480362090, + 3480362193, + 3480362197, + 3480362200, + 3480362201, + 3480362203, + 3480362205, + 3480362204, + 3480362202, + 1256269855, + 3480362199, + 3480362195 + ], + "geometry": [ + { "lat": 40.8059209, "lon": -73.9865657 }, + { "lat": 40.8058827, "lon": -73.9865353 }, + { "lat": 40.8058545, "lon": -73.9864897 }, + { "lat": 40.8058395, "lon": -73.9864342 }, + { "lat": 40.8058394, "lon": -73.9863752 }, + { "lat": 40.8058581, "lon": -73.9863114 }, + { "lat": 40.8058941, "lon": -73.9862621 }, + { "lat": 40.8059418, "lon": -73.9862351 }, + { "lat": 40.8059936, "lon": -73.9862347 }, + { "lat": 40.8060415, "lon": -73.9862608 }, + { "lat": 40.8060780, "lon": -73.9863095 }, + { "lat": 40.8060973, "lon": -73.9863730 }, + { "lat": 40.8060965, "lon": -73.9864415 }, + { "lat": 40.8060730, "lon": -73.9865088 }, + { "lat": 40.8060304, "lon": -73.9865570 }, + { "lat": 40.8059764, "lon": -73.9865772 }, + { "lat": 40.8059209, "lon": -73.9865657 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 340777618, + "bounds": { + "minlat": 40.8058581, + "minlon": -73.9863114, + "maxlat": 40.8058960, + "maxlon": -73.9861474 + }, + "nodes": [ + 3480362090, + 3480362194 + ], + "geometry": [ + { "lat": 40.8058581, "lon": -73.9863114 }, + { "lat": 40.8058960, "lon": -73.9861474 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 340777619, + "bounds": { + "minlat": 40.8058871, + "minlon": -73.9862347, + "maxlat": 40.8061428, + "maxlon": -73.9857507 + }, + "nodes": [ + 3480362206, + 3480362198, + 3480362196, + 3480362092, + 3480362194, + 3480362200 + ], + "geometry": [ + { "lat": 40.8061428, "lon": -73.9857507 }, + { "lat": 40.8059758, "lon": -73.9858633 }, + { "lat": 40.8059281, "lon": -73.9859215 }, + { "lat": 40.8058871, "lon": -73.9860332 }, + { "lat": 40.8058960, "lon": -73.9861474 }, + { "lat": 40.8059936, "lon": -73.9862347 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 340777865, + "bounds": { + "minlat": 40.8066539, + "minlon": -73.9872438, + "maxlat": 40.8067892, + "maxlon": -73.9871473 + }, + "nodes": [ + 1256269849, + 3480364009 + ], + "geometry": [ + { "lat": 40.8066539, "lon": -73.9872438 }, + { "lat": 40.8067892, "lon": -73.9871473 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778257, + "bounds": { + "minlat": 40.8067892, + "minlon": -73.9893298, + "maxlat": 40.8091073, + "maxlon": -73.9863544 + }, + "nodes": [ + 3480364009, + 3501773184, + 3480364163, + 3480371632, + 3480371633, + 5482328532, + 3480364173, + 3480364175, + 3480364174, + 3480364172, + 3480364169, + 3480364167, + 3480364166, + 3480364164, + 3480364157, + 3480364155, + 3480364156, + 3480371630, + 3480371631, + 3480364158, + 3480364160, + 3480369180, + 3480369181, + 3480369182, + 3480364168, + 3480368884, + 3480368885, + 3480368887, + 3480364171, + 3480364172 + ], + "geometry": [ + { "lat": 40.8067892, "lon": -73.9871473 }, + { "lat": 40.8069082, "lon": -73.9870664 }, + { "lat": 40.8079554, "lon": -73.9863544 }, + { "lat": 40.8080380, "lon": -73.9865628 }, + { "lat": 40.8081111, "lon": -73.9867473 }, + { "lat": 40.8081947, "lon": -73.9869583 }, + { "lat": 40.8088299, "lon": -73.9885617 }, + { "lat": 40.8091073, "lon": -73.9892698 }, + { "lat": 40.8089443, "lon": -73.9893298 }, + { "lat": 40.8086795, "lon": -73.9886569 }, + { "lat": 40.8080604, "lon": -73.9871164 }, + { "lat": 40.8080291, "lon": -73.9870812 }, + { "lat": 40.8079993, "lon": -73.9870812 }, + { "lat": 40.8079633, "lon": -73.9870916 }, + { "lat": 40.8074586, "lon": -73.9874394 }, + { "lat": 40.8074304, "lon": -73.9874808 }, + { "lat": 40.8074335, "lon": -73.9875409 }, + { "lat": 40.8074990, "lon": -73.9877110 }, + { "lat": 40.8075695, "lon": -73.9878943 }, + { "lat": 40.8076418, "lon": -73.9880800 }, + { "lat": 40.8076950, "lon": -73.9882931 }, + { "lat": 40.8077801, "lon": -73.9884754 }, + { "lat": 40.8078656, "lon": -73.9886718 }, + { "lat": 40.8079483, "lon": -73.9888620 }, + { "lat": 40.8080510, "lon": -73.9890979 }, + { "lat": 40.8080934, "lon": -73.9890692 }, + { "lat": 40.8082437, "lon": -73.9889674 }, + { "lat": 40.8083859, "lon": -73.9888710 }, + { "lat": 40.8085369, "lon": -73.9887687 }, + { "lat": 40.8086795, "lon": -73.9886569 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778258, + "bounds": { + "minlat": 40.8076576, + "minlon": -73.9898309, + "maxlat": 40.8089443, + "maxlon": -73.9890979 + }, + "nodes": [ + 3480364174, + 3480369228, + 3480368889, + 3480368888, + 3480368886, + 3480364170, + 3480364165, + 3480364162, + 3480364161, + 3480364159, + 3480363992, + 3480368883, + 3480364168 + ], + "geometry": [ + { "lat": 40.8089443, "lon": -73.9893298 }, + { "lat": 40.8087886, "lon": -73.9893937 }, + { "lat": 40.8086315, "lon": -73.9894582 }, + { "lat": 40.8084734, "lon": -73.9895231 }, + { "lat": 40.8083076, "lon": -73.9895911 }, + { "lat": 40.8081419, "lon": -73.9896591 }, + { "lat": 40.8079977, "lon": -73.9897460 }, + { "lat": 40.8078739, "lon": -73.9898309 }, + { "lat": 40.8078410, "lon": -73.9898268 }, + { "lat": 40.8076576, "lon": -73.9893692 }, + { "lat": 40.8078062, "lon": -73.9892668 }, + { "lat": 40.8079541, "lon": -73.9891647 }, + { "lat": 40.8080510, "lon": -73.9890979 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778261, + "bounds": { + "minlat": 40.8078062, + "minlon": -73.9897460, + "maxlat": 40.8079977, + "maxlon": -73.9892668 + }, + "nodes": [ + 3480364165, + 3480363992 + ], + "geometry": [ + { "lat": 40.8079977, "lon": -73.9897460 }, + { "lat": 40.8078062, "lon": -73.9892668 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778313, + "bounds": { + "minlat": 40.8083859, + "minlon": -73.9894582, + "maxlat": 40.8086315, + "maxlon": -73.9888710 + }, + "nodes": [ + 3480368889, + 3480368887 + ], + "geometry": [ + { "lat": 40.8086315, "lon": -73.9894582 }, + { "lat": 40.8083859, "lon": -73.9888710 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778314, + "bounds": { + "minlat": 40.8080934, + "minlon": -73.9895911, + "maxlat": 40.8083076, + "maxlon": -73.9890692 + }, + "nodes": [ + 3480368886, + 3480368884 + ], + "geometry": [ + { "lat": 40.8083076, "lon": -73.9895911 }, + { "lat": 40.8080934, "lon": -73.9890692 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778315, + "bounds": { + "minlat": 40.8082437, + "minlon": -73.9895231, + "maxlat": 40.8084734, + "maxlon": -73.9889674 + }, + "nodes": [ + 3480368888, + 3480368885 + ], + "geometry": [ + { "lat": 40.8084734, "lon": -73.9895231 }, + { "lat": 40.8082437, "lon": -73.9889674 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778316, + "bounds": { + "minlat": 40.8079541, + "minlon": -73.9896591, + "maxlat": 40.8081419, + "maxlon": -73.9891647 + }, + "nodes": [ + 3480364170, + 3480368883 + ], + "geometry": [ + { "lat": 40.8081419, "lon": -73.9896591 }, + { "lat": 40.8079541, "lon": -73.9891647 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778322, + "bounds": { + "minlat": 40.8085369, + "minlon": -73.9893937, + "maxlat": 40.8087886, + "maxlon": -73.9887687 + }, + "nodes": [ + 3480369228, + 3480364171 + ], + "geometry": [ + { "lat": 40.8087886, "lon": -73.9893937 }, + { "lat": 40.8085369, "lon": -73.9887687 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778347, + "bounds": { + "minlat": 40.8073577, + "minlon": -73.9890062, + "maxlat": 40.8078656, + "maxlon": -73.9886718 + }, + "nodes": [ + 3480369181, + 3480369177 + ], + "geometry": [ + { "lat": 40.8078656, "lon": -73.9886718 }, + { "lat": 40.8073577, "lon": -73.9890062 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778348, + "bounds": { + "minlat": 40.8072856, + "minlon": -73.9888257, + "maxlat": 40.8077801, + "maxlon": -73.9884754 + }, + "nodes": [ + 3480369180, + 3480369176 + ], + "geometry": [ + { "lat": 40.8077801, "lon": -73.9884754 }, + { "lat": 40.8072856, "lon": -73.9888257 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778349, + "bounds": { + "minlat": 40.8075349, + "minlon": -73.9894500, + "maxlat": 40.8076576, + "maxlon": -73.9893692 + }, + "nodes": [ + 3480364159, + 3480369179 + ], + "geometry": [ + { "lat": 40.8076576, "lon": -73.9893692 }, + { "lat": 40.8075349, "lon": -73.9894500 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778350, + "bounds": { + "minlat": 40.8074410, + "minlon": -73.9892149, + "maxlat": 40.8079483, + "maxlon": -73.9888620 + }, + "nodes": [ + 3480369182, + 3480369178 + ], + "geometry": [ + { "lat": 40.8079483, "lon": -73.9888620 }, + { "lat": 40.8074410, "lon": -73.9892149 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778452, + "bounds": { + "minlat": 40.8070575, + "minlon": -73.9882545, + "maxlat": 40.8075695, + "maxlon": -73.9878943 + }, + "nodes": [ + 3480371631, + 3480371627 + ], + "geometry": [ + { "lat": 40.8075695, "lon": -73.9878943 }, + { "lat": 40.8070575, "lon": -73.9882545 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778453, + "bounds": { + "minlat": 40.8069770, + "minlon": -73.9880528, + "maxlat": 40.8074990, + "maxlon": -73.9877110 + }, + "nodes": [ + 3480371630, + 3480371626 + ], + "geometry": [ + { "lat": 40.8074990, "lon": -73.9877110 }, + { "lat": 40.8069770, "lon": -73.9880528 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778454, + "bounds": { + "minlat": 40.8071297, + "minlon": -73.9884353, + "maxlat": 40.8076418, + "maxlon": -73.9880800 + }, + "nodes": [ + 3480364158, + 3480371628 + ], + "geometry": [ + { "lat": 40.8076418, "lon": -73.9880800 }, + { "lat": 40.8071297, "lon": -73.9884353 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778455, + "bounds": { + "minlat": 40.8072065, + "minlon": -73.9886276, + "maxlat": 40.8076950, + "maxlon": -73.9882931 + }, + "nodes": [ + 3480364160, + 3480371629 + ], + "geometry": [ + { "lat": 40.8076950, "lon": -73.9882931 }, + { "lat": 40.8072065, "lon": -73.9886276 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778456, + "bounds": { + "minlat": 40.8068105, + "minlon": -73.9876359, + "maxlat": 40.8081111, + "maxlon": -73.9867473 + }, + "nodes": [ + 3480371633, + 3480371624 + ], + "geometry": [ + { "lat": 40.8081111, "lon": -73.9867473 }, + { "lat": 40.8068105, "lon": -73.9876359 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778457, + "bounds": { + "minlat": 40.8067365, + "minlon": -73.9874505, + "maxlat": 40.8080380, + "maxlon": -73.9865628 + }, + "nodes": [ + 3480371632, + 3480371623 + ], + "geometry": [ + { "lat": 40.8080380, "lon": -73.9865628 }, + { "lat": 40.8067365, "lon": -73.9874505 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778458, + "bounds": { + "minlat": 40.8068900, + "minlon": -73.9878351, + "maxlat": 40.8074304, + "maxlon": -73.9874808 + }, + "nodes": [ + 3480364155, + 3480371625 + ], + "geometry": [ + { "lat": 40.8074304, "lon": -73.9874808 }, + { "lat": 40.8068900, "lon": -73.9878351 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 340778844, + "bounds": { + "minlat": 40.8082950, + "minlon": -73.9851208, + "maxlat": 40.8084831, + "maxlon": -73.9848722 + }, + "nodes": [ + 3480372953, + 3480372952, + 3480372951, + 3480372954, + 3480372956, + 3480372958, + 3480372960, + 3480372962, + 3480372963, + 3480372964, + 3480372965, + 103220237, + 3480372961, + 3480372959, + 3480372957, + 3480372955, + 3480372953 + ], + "geometry": [ + { "lat": 40.8083092, "lon": -73.9850667 }, + { "lat": 40.8082950, "lon": -73.9850211 }, + { "lat": 40.8082950, "lon": -73.9849716 }, + { "lat": 40.8083093, "lon": -73.9849260 }, + { "lat": 40.8083358, "lon": -73.9848911 }, + { "lat": 40.8083704, "lon": -73.9848722 }, + { "lat": 40.8084078, "lon": -73.9848722 }, + { "lat": 40.8084424, "lon": -73.9848912 }, + { "lat": 40.8084688, "lon": -73.9849262 }, + { "lat": 40.8084831, "lon": -73.9849719 }, + { "lat": 40.8084831, "lon": -73.9850213 }, + { "lat": 40.8084687, "lon": -73.9850670 }, + { "lat": 40.8084422, "lon": -73.9851019 }, + { "lat": 40.8084076, "lon": -73.9851208 }, + { "lat": 40.8083702, "lon": -73.9851207 }, + { "lat": 40.8083357, "lon": -73.9851017 }, + { "lat": 40.8083092, "lon": -73.9850667 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Independence Way" + } +}, +{ + "type": "way", + "id": 340825593, + "bounds": { + "minlat": 40.7816278, + "minlon": -73.9867312, + "maxlat": 40.7835314, + "maxlon": -73.9853322 + }, + "nodes": [ + 61269797, + 3480733606, + 9201381562, + 42423070 + ], + "geometry": [ + { "lat": 40.7816278, "lon": -73.9867312 }, + { "lat": 40.7817226, "lon": -73.9866534 }, + { "lat": 40.7818151, "lon": -73.9865816 }, + { "lat": 40.7835314, "lon": -73.9853322 } + ], + "tags": { + "destination:lanes": "none|none|none;West 79 Street;Metropolitan Museum of Art;American Museum of Natural History;Children's Museum Of Manhattan;JCC In Manhattan;Lincoln Center;New York Historical Society;New York Institute of Technology", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 341273967, + "bounds": { + "minlat": 40.8196249, + "minlon": -74.0153704, + "maxlat": 40.8205911, + "maxlon": -74.0113682 + }, + "nodes": [ + 3484769372, + 3484769377, + 103886532, + 103880411, + 7127355663, + 103886534, + 103875814, + 103886538, + 11925070552, + 13528850837 + ], + "geometry": [ + { "lat": 40.8196249, "lon": -74.0153704 }, + { "lat": 40.8197933, "lon": -74.0149118 }, + { "lat": 40.8198432, "lon": -74.0148664 }, + { "lat": 40.8199571, "lon": -74.0145312 }, + { "lat": 40.8200044, "lon": -74.0144009 }, + { "lat": 40.8204052, "lon": -74.0132960 }, + { "lat": 40.8204765, "lon": -74.0130976 }, + { "lat": 40.8205056, "lon": -74.0125301 }, + { "lat": 40.8205312, "lon": -74.0121594 }, + { "lat": 40.8205911, "lon": -74.0113682 } + ], + "tags": { + "highway": "residential", + "name": "Railroad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Railroad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 341999365, + "bounds": { + "minlat": 40.8219423, + "minlon": -73.9752408, + "maxlat": 40.8223654, + "maxlon": -73.9749645 + }, + "nodes": [ + 3441639780, + 3493491607, + 3493491608, + 3490532970 + ], + "geometry": [ + { "lat": 40.8219423, "lon": -73.9752408 }, + { "lat": 40.8221089, "lon": -73.9751320 }, + { "lat": 40.8222622, "lon": -73.9750319 }, + { "lat": 40.8223654, "lon": -73.9749645 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Portside Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 342340399, + "bounds": { + "minlat": 40.8222487, + "minlon": -73.9759834, + "maxlat": 40.8226905, + "maxlon": -73.9756906 + }, + "nodes": [ + 3493496035, + 3493492204, + 3493492203, + 3441621786 + ], + "geometry": [ + { "lat": 40.8226905, "lon": -73.9756906 }, + { "lat": 40.8226390, "lon": -73.9757242 }, + { "lat": 40.8224064, "lon": -73.9758767 }, + { "lat": 40.8222487, "lon": -73.9759834 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 342785522, + "bounds": { + "minlat": 40.7211171, + "minlon": -74.0065788, + "maxlat": 40.7218075, + "maxlon": -74.0064418 + }, + "nodes": [ + 4778174564, + 11311088140, + 7201248045, + 11311088138, + 3567807957 + ], + "geometry": [ + { "lat": 40.7218075, "lon": -74.0064418 }, + { "lat": 40.7217269, "lon": -74.0064674 }, + { "lat": 40.7216918, "lon": -74.0064760 }, + { "lat": 40.7216672, "lon": -74.0064814 }, + { "lat": 40.7211171, "lon": -74.0065788 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 343314228, + "bounds": { + "minlat": 40.8067208, + "minlon": -73.9871473, + "maxlat": 40.8067892, + "maxlon": -73.9869737 + }, + "nodes": [ + 3480364009, + 876663611, + 3480364008 + ], + "geometry": [ + { "lat": 40.8067892, "lon": -73.9871473 }, + { "lat": 40.8067632, "lon": -73.9870813 }, + { "lat": 40.8067208, "lon": -73.9869737 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 343988664, + "bounds": { + "minlat": 40.7408615, + "minlon": -73.9163202, + "maxlat": 40.7426906, + "maxlon": -73.9159517 + }, + "nodes": [ + 42807852, + 10743722541, + 10774439645, + 8233070268, + 10081025550, + 42807854 + ], + "geometry": [ + { "lat": 40.7426906, "lon": -73.9159517 }, + { "lat": 40.7425990, "lon": -73.9159657 }, + { "lat": 40.7423309, "lon": -73.9160203 }, + { "lat": 40.7409672, "lon": -73.9162982 }, + { "lat": 40.7409312, "lon": -73.9163051 }, + { "lat": 40.7408615, "lon": -73.9163202 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "49th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 343988669, + "bounds": { + "minlat": 40.7407374, + "minlon": -73.9163202, + "maxlat": 40.7408709, + "maxlon": -73.9153854 + }, + "nodes": [ + 42807854, + 11379589263, + 3507660817, + 10081025552, + 42860630, + 42860635 + ], + "geometry": [ + { "lat": 40.7408615, "lon": -73.9163202 }, + { "lat": 40.7408685, "lon": -73.9162372 }, + { "lat": 40.7408709, "lon": -73.9162092 }, + { "lat": 40.7408603, "lon": -73.9160982 }, + { "lat": 40.7408288, "lon": -73.9158599 }, + { "lat": 40.7407374, "lon": -73.9153854 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "maxspeed": "20 mph", + "name": "47th Avenue", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "surface": "asphalt", + "type": "route" + } +}, +{ + "type": "way", + "id": 343992818, + "bounds": { + "minlat": 40.8097190, + "minlon": -73.9072600, + "maxlat": 40.8099370, + "maxlon": -73.9062520 + }, + "nodes": [ + 42762533, + 13247432506, + 8575187636, + 13247400890, + 42762541 + ], + "geometry": [ + { "lat": 40.8099370, "lon": -73.9072600 }, + { "lat": 40.8098985, "lon": -73.9070821 }, + { "lat": 40.8097723, "lon": -73.9064985 }, + { "lat": 40.8097441, "lon": -73.9063681 }, + { "lat": 40.8097190, "lon": -73.9062520 } + ], + "tags": { + "highway": "residential", + "name": "East 145th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "145th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 343992819, + "bounds": { + "minlat": 40.8105249, + "minlon": -73.9100462, + "maxlat": 40.8117861, + "maxlon": -73.9095984 + }, + "nodes": [ + 42764633, + 10127018977, + 10033563136, + 7691374331, + 10127019098, + 42762525 + ], + "geometry": [ + { "lat": 40.8117861, "lon": -73.9095984 }, + { "lat": 40.8117144, "lon": -73.9096238 }, + { "lat": 40.8110722, "lon": -73.9098519 }, + { "lat": 40.8106820, "lon": -73.9099904 }, + { "lat": 40.8105801, "lon": -73.9100266 }, + { "lat": 40.8105249, "lon": -73.9100462 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "residential", + "name": "Jackson Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jackson", + "tiger:name_type": "Ave", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 344719117, + "bounds": { + "minlat": 40.7908446, + "minlon": -73.9390334, + "maxlat": 40.7913953, + "maxlon": -73.9382065 + }, + "nodes": [ + 3514651030, + 7777426405, + 8886870151, + 3514651022, + 3514651020, + 3514651019, + 3514651021, + 3514651023, + 3514651024, + 3514651025, + 3514651026, + 3514651027, + 3514651028, + 3514651029, + 3514651031, + 3514651032, + 3514651033, + 3514651034, + 3514651035, + 3514651036, + 3514651037, + 8886870152, + 7777426441, + 3514651038 + ], + "geometry": [ + { "lat": 40.7910383, "lon": -73.9390334 }, + { "lat": 40.7909899, "lon": -73.9389068 }, + { "lat": 40.7909635, "lon": -73.9388388 }, + { "lat": 40.7908538, "lon": -73.9385605 }, + { "lat": 40.7908463, "lon": -73.9385154 }, + { "lat": 40.7908446, "lon": -73.9384691 }, + { "lat": 40.7908489, "lon": -73.9384232 }, + { "lat": 40.7908590, "lon": -73.9383789 }, + { "lat": 40.7908746, "lon": -73.9383375 }, + { "lat": 40.7908953, "lon": -73.9383001 }, + { "lat": 40.7909204, "lon": -73.9382680 }, + { "lat": 40.7909494, "lon": -73.9382418 }, + { "lat": 40.7909812, "lon": -73.9382226 }, + { "lat": 40.7910151, "lon": -73.9382107 }, + { "lat": 40.7910499, "lon": -73.9382065 }, + { "lat": 40.7910849, "lon": -73.9382102 }, + { "lat": 40.7911188, "lon": -73.9382216 }, + { "lat": 40.7911508, "lon": -73.9382405 }, + { "lat": 40.7911799, "lon": -73.9382662 }, + { "lat": 40.7912053, "lon": -73.9382980 }, + { "lat": 40.7912263, "lon": -73.9383351 }, + { "lat": 40.7913230, "lon": -73.9385846 }, + { "lat": 40.7913467, "lon": -73.9386458 }, + { "lat": 40.7913953, "lon": -73.9387693 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 345304870, + "bounds": { + "minlat": 40.7877496, + "minlon": -73.9396357, + "maxlat": 40.7883627, + "maxlon": -73.9391395 + }, + "nodes": [ + 3519902039, + 6216541804, + 3519902036 + ], + "geometry": [ + { "lat": 40.7883627, "lon": -73.9391395 }, + { "lat": 40.7883041, "lon": -73.9391870 }, + { "lat": 40.7877496, "lon": -73.9396357 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 345304871, + "bounds": { + "minlat": 40.7875680, + "minlon": -73.9413083, + "maxlat": 40.7879238, + "maxlon": -73.9403791 + }, + "nodes": [ + 3519902038, + 6191027370, + 3519902034 + ], + "geometry": [ + { "lat": 40.7879238, "lon": -73.9413083 }, + { "lat": 40.7878719, "lon": -73.9411752 }, + { "lat": 40.7875680, "lon": -73.9403791 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 346063735, + "bounds": { + "minlat": 40.8736002, + "minlon": -73.9592931, + "maxlat": 40.8741828, + "maxlon": -73.9588436 + }, + "nodes": [ + 103288285, + 3526754649 + ], + "geometry": [ + { "lat": 40.8736002, "lon": -73.9592931 }, + { "lat": 40.8741828, "lon": -73.9588436 } + ], + "tags": { + "highway": "residential", + "name": "Sara Hill Lane" + } +}, +{ + "type": "way", + "id": 346405348, + "bounds": { + "minlat": 40.8058221, + "minlon": -73.9250646, + "maxlat": 40.8064641, + "maxlon": -73.9245427 + }, + "nodes": [ + 7553992430, + 9908650922, + 9156979766, + 9156979767, + 9156979768, + 595800977 + ], + "geometry": [ + { "lat": 40.8058221, "lon": -73.9250646 }, + { "lat": 40.8059249, "lon": -73.9249884 }, + { "lat": 40.8064323, "lon": -73.9246268 }, + { "lat": 40.8064530, "lon": -73.9246003 }, + { "lat": 40.8064593, "lon": -73.9245828 }, + { "lat": 40.8064641, "lon": -73.9245427 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 346405397, + "bounds": { + "minlat": 40.8052567, + "minlon": -73.9279760, + "maxlat": 40.8061942, + "maxlon": -73.9257450 + }, + "nodes": [ + 5370086778, + 42732838 + ], + "geometry": [ + { "lat": 40.8052567, "lon": -73.9257450 }, + { "lat": 40.8061942, "lon": -73.9279760 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 132nd Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 346592668, + "bounds": { + "minlat": 40.8654184, + "minlon": -73.9720275, + "maxlat": 40.8662373, + "maxlon": -73.9712077 + }, + "nodes": [ + 7373684625, + 7373684624, + 7373684623, + 7373684622, + 7373684621, + 7373684620, + 7373684619, + 7373684618, + 7373684617, + 7373684616, + 3531038485, + 3531038475, + 3531038473, + 3531038472, + 6895517072, + 3531038470, + 3531038469 + ], + "geometry": [ + { "lat": 40.8659221, "lon": -73.9712358 }, + { "lat": 40.8661648, "lon": -73.9712077 }, + { "lat": 40.8661780, "lon": -73.9712102 }, + { "lat": 40.8661874, "lon": -73.9712264 }, + { "lat": 40.8661912, "lon": -73.9712450 }, + { "lat": 40.8662373, "lon": -73.9718956 }, + { "lat": 40.8662354, "lon": -73.9719155 }, + { "lat": 40.8662260, "lon": -73.9719341 }, + { "lat": 40.8662147, "lon": -73.9719428 }, + { "lat": 40.8661940, "lon": -73.9719466 }, + { "lat": 40.8660867, "lon": -73.9719595 }, + { "lat": 40.8655332, "lon": -73.9720275 }, + { "lat": 40.8654991, "lon": -73.9720225 }, + { "lat": 40.8654601, "lon": -73.9719989 }, + { "lat": 40.8654524, "lon": -73.9719819 }, + { "lat": 40.8654352, "lon": -73.9719444 }, + { "lat": 40.8654184, "lon": -73.9716754 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Crest Lane" + } +}, +{ + "type": "way", + "id": 346592669, + "bounds": { + "minlat": 40.8629241, + "minlon": -73.9722473, + "maxlat": 40.8643531, + "maxlon": -73.9715320 + }, + "nodes": [ + 3531038435, + 3531038436, + 3531038438, + 3531038439, + 7373684660, + 3531038446, + 3531038445, + 6320468126, + 6320468125 + ], + "geometry": [ + { "lat": 40.8629241, "lon": -73.9721173 }, + { "lat": 40.8630149, "lon": -73.9722256 }, + { "lat": 40.8630766, "lon": -73.9722442 }, + { "lat": 40.8631066, "lon": -73.9722473 }, + { "lat": 40.8637441, "lon": -73.9721782 }, + { "lat": 40.8641542, "lon": -73.9721337 }, + { "lat": 40.8641389, "lon": -73.9718552 }, + { "lat": 40.8641239, "lon": -73.9716500 }, + { "lat": 40.8643531, "lon": -73.9715320 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 346592670, + "bounds": { + "minlat": 40.8652855, + "minlon": -73.9711185, + "maxlat": 40.8656453, + "maxlon": -73.9707336 + }, + "nodes": [ + 3531038463, + 3531038461, + 3531038462, + 3531038465, + 3531038467, + 3531038471, + 3531038478, + 3531038480, + 3531038482, + 3531038481, + 3531038479, + 3531038477, + 3531038464, + 3531038463 + ], + "geometry": [ + { "lat": 40.8653052, "lon": -73.9710985 }, + { "lat": 40.8652855, "lon": -73.9710677 }, + { "lat": 40.8652873, "lon": -73.9710147 }, + { "lat": 40.8653678, "lon": -73.9707730 }, + { "lat": 40.8653995, "lon": -73.9707336 }, + { "lat": 40.8654398, "lon": -73.9707350 }, + { "lat": 40.8656221, "lon": -73.9708550 }, + { "lat": 40.8656345, "lon": -73.9708861 }, + { "lat": 40.8656453, "lon": -73.9709499 }, + { "lat": 40.8656410, "lon": -73.9710376 }, + { "lat": 40.8656223, "lon": -73.9710813 }, + { "lat": 40.8655877, "lon": -73.9711003 }, + { "lat": 40.8653326, "lon": -73.9711185 }, + { "lat": 40.8653052, "lon": -73.9710985 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Hilltop Court" + } +}, +{ + "type": "way", + "id": 346592671, + "bounds": { + "minlat": 40.8652063, + "minlon": -73.9712214, + "maxlat": 40.8653052, + "maxlon": -73.9710985 + }, + "nodes": [ + 3531038457, + 3531038463 + ], + "geometry": [ + { "lat": 40.8652063, "lon": -73.9712214 }, + { "lat": 40.8653052, "lon": -73.9710985 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Hilltop Court" + } +}, +{ + "type": "way", + "id": 346592672, + "bounds": { + "minlat": 40.8645184, + "minlon": -73.9722834, + "maxlat": 40.8646967, + "maxlon": -73.9716740 + }, + "nodes": [ + 3531038449, + 8289448143, + 3531038447, + 8289448142, + 3531038448, + 3531038450, + 7373684628, + 3531038451 + ], + "geometry": [ + { "lat": 40.8645372, "lon": -73.9722834 }, + { "lat": 40.8645223, "lon": -73.9720094 }, + { "lat": 40.8645184, "lon": -73.9719376 }, + { "lat": 40.8645198, "lon": -73.9719006 }, + { "lat": 40.8645222, "lon": -73.9718404 }, + { "lat": 40.8645536, "lon": -73.9717543 }, + { "lat": 40.8646264, "lon": -73.9716946 }, + { "lat": 40.8646967, "lon": -73.9716740 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Hilltop Court", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 346592673, + "bounds": { + "minlat": 40.8640295, + "minlon": -73.9710335, + "maxlat": 40.8652445, + "maxlon": -73.9690906 + }, + "nodes": [ + 3531038444, + 103107675, + 103107676, + 3531038452, + 3531038459, + 3531038460, + 3531038453 + ], + "geometry": [ + { "lat": 40.8640295, "lon": -73.9710335 }, + { "lat": 40.8642399, "lon": -73.9709334 }, + { "lat": 40.8648606, "lon": -73.9706014 }, + { "lat": 40.8649262, "lon": -73.9705299 }, + { "lat": 40.8652174, "lon": -73.9698010 }, + { "lat": 40.8652445, "lon": -73.9696184 }, + { "lat": 40.8649401, "lon": -73.9690906 } + ], + "tags": { + "highway": "residential", + "name": "Ridge Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 346592674, + "bounds": { + "minlat": 40.8649506, + "minlon": -73.9716754, + "maxlat": 40.8654184, + "maxlon": -73.9708497 + }, + "nodes": [ + 3531038469, + 3531038457, + 3531038454 + ], + "geometry": [ + { "lat": 40.8654184, "lon": -73.9716754 }, + { "lat": 40.8652063, "lon": -73.9712214 }, + { "lat": 40.8649506, "lon": -73.9708497 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Skiline Drive" + } +}, +{ + "type": "way", + "id": 346592675, + "bounds": { + "minlat": 40.8655316, + "minlon": -73.9716621, + "maxlat": 40.8655457, + "maxlon": -73.9714336 + }, + "nodes": [ + 3531038476, + 3531038474 + ], + "geometry": [ + { "lat": 40.8655457, "lon": -73.9716621 }, + { "lat": 40.8655316, "lon": -73.9714336 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 346592676, + "bounds": { + "minlat": 40.8654184, + "minlon": -73.9716754, + "maxlat": 40.8659281, + "maxlon": -73.9716222 + }, + "nodes": [ + 3531038483, + 3531038476, + 3531038469 + ], + "geometry": [ + { "lat": 40.8659281, "lon": -73.9716222 }, + { "lat": 40.8655457, "lon": -73.9716621 }, + { "lat": 40.8654184, "lon": -73.9716754 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 346592677, + "bounds": { + "minlat": 40.8654157, + "minlon": -73.9714460, + "maxlat": 40.8659329, + "maxlon": -73.9713909 + }, + "nodes": [ + 3531038484, + 3531038474, + 3531038468 + ], + "geometry": [ + { "lat": 40.8659329, "lon": -73.9713909 }, + { "lat": 40.8655316, "lon": -73.9714336 }, + { "lat": 40.8654157, "lon": -73.9714460 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 346613529, + "bounds": { + "minlat": 40.7738424, + "minlon": -73.9821241, + "maxlat": 40.7778592, + "maxlon": -73.9819708 + }, + "nodes": [ + 1061531707, + 7515300914, + 8780665885, + 1061531527, + 8780665881, + 8780665904, + 1061531787, + 8780665900, + 8780665915, + 1061531608, + 8780668418, + 5115916407, + 1061531597, + 5115916402, + 5708001204, + 1996323622 + ], + "geometry": [ + { "lat": 40.7738424, "lon": -73.9821234 }, + { "lat": 40.7739081, "lon": -73.9821241 }, + { "lat": 40.7745746, "lon": -73.9821042 }, + { "lat": 40.7746399, "lon": -73.9821073 }, + { "lat": 40.7747212, "lon": -73.9821034 }, + { "lat": 40.7753736, "lon": -73.9820715 }, + { "lat": 40.7754477, "lon": -73.9820690 }, + { "lat": 40.7755235, "lon": -73.9820639 }, + { "lat": 40.7761812, "lon": -73.9820416 }, + { "lat": 40.7762516, "lon": -73.9820341 }, + { "lat": 40.7763345, "lon": -73.9820291 }, + { "lat": 40.7769843, "lon": -73.9820035 }, + { "lat": 40.7770521, "lon": -73.9820009 }, + { "lat": 40.7771366, "lon": -73.9820000 }, + { "lat": 40.7777896, "lon": -73.9819731 }, + { "lat": 40.7778592, "lon": -73.9819708 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 346951422, + "bounds": { + "minlat": 40.7733062, + "minlon": -73.9905614, + "maxlat": 40.7739898, + "maxlon": -73.9902550 + }, + "nodes": [ + 3533937800, + 8575682945, + 3533937801, + 4682935369, + 9170766734, + 3533937802, + 9170766735, + 3533937803, + 9170766736, + 7333509717, + 1672106385 + ], + "geometry": [ + { "lat": 40.7733062, "lon": -73.9905614 }, + { "lat": 40.7733725, "lon": -73.9905102 }, + { "lat": 40.7735089, "lon": -73.9904109 }, + { "lat": 40.7735560, "lon": -73.9903815 }, + { "lat": 40.7735999, "lon": -73.9903639 }, + { "lat": 40.7736524, "lon": -73.9903478 }, + { "lat": 40.7737061, "lon": -73.9903381 }, + { "lat": 40.7738448, "lon": -73.9903157 }, + { "lat": 40.7738868, "lon": -73.9903032 }, + { "lat": 40.7739415, "lon": -73.9902808 }, + { "lat": 40.7739898, "lon": -73.9902550 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "name": "Freedom Place South", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 347306313, + "bounds": { + "minlat": 40.7380440, + "minlon": -73.9991824, + "maxlat": 40.7392462, + "maxlon": -73.9963370 + }, + "nodes": [ + 42430255, + 5350434145, + 8429213019, + 8310246388, + 42439826 + ], + "geometry": [ + { "lat": 40.7380440, "lon": -73.9963370 }, + { "lat": 40.7380782, "lon": -73.9964183 }, + { "lat": 40.7381007, "lon": -73.9964716 }, + { "lat": 40.7391929, "lon": -73.9990577 }, + { "lat": 40.7392462, "lon": -73.9991824 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 15th Street", + "name:ru": "Западная 15-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 347311224, + "bounds": { + "minlat": 40.7159749, + "minlon": -73.9866936, + "maxlat": 40.7160381, + "maxlon": -73.9866326 + }, + "nodes": [ + 42440408, + 11038072540, + 11038072396 + ], + "geometry": [ + { "lat": 40.7159749, "lon": -73.9866936 }, + { "lat": 40.7160022, "lon": -73.9866659 }, + { "lat": 40.7160381, "lon": -73.9866326 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Clinton Street", + "name:etymology:wikidata": "Q201646", + "name:ko": "클린턴 스트리트", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 347717106, + "bounds": { + "minlat": 40.7041390, + "minlon": -73.9388457, + "maxlat": 40.7042048, + "maxlon": -73.9387545 + }, + "nodes": [ + 4660922280, + 6907298757 + ], + "geometry": [ + { "lat": 40.7042048, "lon": -73.9387545 }, + { "lat": 40.7041390, "lon": -73.9388457 } + ], + "tags": { + "highway": "residential", + "name": "Moore Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 348459892, + "bounds": { + "minlat": 40.7428208, + "minlon": -73.9521355, + "maxlat": 40.7429810, + "maxlon": -73.9518215 + }, + "nodes": [ + 12044653394, + 11890110207, + 42832453 + ], + "geometry": [ + { "lat": 40.7428208, "lon": -73.9521355 }, + { "lat": 40.7429076, "lon": -73.9519653 }, + { "lat": 40.7429810, "lon": -73.9518215 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "structure", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Jackson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 348459902, + "bounds": { + "minlat": 40.7417019, + "minlon": -73.9519975, + "maxlat": 40.7422928, + "maxlon": -73.9518110 + }, + "nodes": [ + 42806188, + 9179073034, + 9983412366, + 9983412367, + 42806193 + ], + "geometry": [ + { "lat": 40.7422928, "lon": -73.9518110 }, + { "lat": 40.7422226, "lon": -73.9518255 }, + { "lat": 40.7417756, "lon": -73.9519746 }, + { "lat": 40.7417536, "lon": -73.9519813 }, + { "lat": 40.7417019, "lon": -73.9519975 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 348476838, + "bounds": { + "minlat": 40.7449859, + "minlon": -73.9259692, + "maxlat": 40.7474330, + "maxlon": -73.9254850 + }, + "nodes": [ + 42932839, + 10069673332, + 10069673334, + 13437416442, + 10762202951, + 5538983341, + 42817771, + 5538983343, + 10088753846, + 10088753849, + 10069673337 + ], + "geometry": [ + { "lat": 40.7474330, "lon": -73.9254850 }, + { "lat": 40.7473512, "lon": -73.9254936 }, + { "lat": 40.7473230, "lon": -73.9254991 }, + { "lat": 40.7469440, "lon": -73.9255715 }, + { "lat": 40.7458947, "lon": -73.9257857 }, + { "lat": 40.7458583, "lon": -73.9257931 }, + { "lat": 40.7457824, "lon": -73.9258079 }, + { "lat": 40.7456850, "lon": -73.9258301 }, + { "lat": 40.7454586, "lon": -73.9258744 }, + { "lat": 40.7452755, "lon": -73.9259107 }, + { "lat": 40.7449859, "lon": -73.9259692 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "39th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 348477347, + "bounds": { + "minlat": 40.7439370, + "minlon": -74.0083937, + "maxlat": 40.7439767, + "maxlon": -74.0082989 + }, + "nodes": [ + 246580982, + 3874653357 + ], + "geometry": [ + { "lat": 40.7439767, "lon": -74.0083937 }, + { "lat": 40.7439370, "lon": -74.0082989 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 16th Street", + "name:ru": "Западная 16-я стрит", + "name_1": "West 16 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 348477348, + "bounds": { + "minlat": 40.7410800, + "minlon": -74.0068872, + "maxlat": 40.7433226, + "maxlon": -74.0015550 + }, + "nodes": [ + 2671667948, + 3236324368, + 3236324362, + 8310246353, + 42444909, + 11246850700, + 12357848370, + 12357848372, + 12357848368, + 12357848376, + 8262308796, + 6211484431, + 42435599 + ], + "geometry": [ + { "lat": 40.7433226, "lon": -74.0068872 }, + { "lat": 40.7428292, "lon": -74.0056997 }, + { "lat": 40.7425849, "lon": -74.0051318 }, + { "lat": 40.7423320, "lon": -74.0045351 }, + { "lat": 40.7422885, "lon": -74.0044325 }, + { "lat": 40.7422304, "lon": -74.0042940 }, + { "lat": 40.7421112, "lon": -74.0040207 }, + { "lat": 40.7420595, "lon": -74.0038967 }, + { "lat": 40.7413313, "lon": -74.0021482 }, + { "lat": 40.7412618, "lon": -74.0019813 }, + { "lat": 40.7411412, "lon": -74.0016961 }, + { "lat": 40.7411287, "lon": -74.0016663 }, + { "lat": 40.7410800, "lon": -74.0015550 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 16th Street", + "name:ru": "Западная 16-я стрит", + "name_1": "West 16 Street", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 348477349, + "bounds": { + "minlat": 40.7373314, + "minlon": -73.9958740, + "maxlat": 40.7386860, + "maxlon": -73.9926537 + }, + "nodes": [ + 42430257, + 9507816968, + 8429175905, + 42449333 + ], + "geometry": [ + { "lat": 40.7386860, "lon": -73.9958740 }, + { "lat": 40.7386308, "lon": -73.9957428 }, + { "lat": 40.7373810, "lon": -73.9927770 }, + { "lat": 40.7373314, "lon": -73.9926537 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 16th Street", + "name:ru": "Западная 16-я стрит", + "name_1": "West 16 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 348488662, + "bounds": { + "minlat": 40.7233168, + "minlon": -74.0036454, + "maxlat": 40.7236874, + "maxlon": -74.0029951 + }, + "nodes": [ + 42432142, + 8231885412, + 3546151525, + 8231885416, + 42432135 + ], + "geometry": [ + { "lat": 40.7233168, "lon": -74.0029951 }, + { "lat": 40.7233837, "lon": -74.0030603 }, + { "lat": 40.7233966, "lon": -74.0030760 }, + { "lat": 40.7236497, "lon": -74.0035716 }, + { "lat": 40.7236874, "lon": -74.0036454 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 348488665, + "bounds": { + "minlat": 40.7241732, + "minlon": -74.0059462, + "maxlat": 40.7244077, + "maxlon": -74.0045754 + }, + "nodes": [ + 42430147, + 4890320319, + 42430108, + 3546151527, + 3546151526, + 4890333652, + 42424864 + ], + "geometry": [ + { "lat": 40.7241732, "lon": -74.0045754 }, + { "lat": 40.7242410, "lon": -74.0046910 }, + { "lat": 40.7242643, "lon": -74.0047442 }, + { "lat": 40.7242890, "lon": -74.0048216 }, + { "lat": 40.7243133, "lon": -74.0049570 }, + { "lat": 40.7243977, "lon": -74.0058634 }, + { "lat": 40.7244077, "lon": -74.0059462 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 348839037, + "bounds": { + "minlat": 40.7992128, + "minlon": -73.9242300, + "maxlat": 40.7999827, + "maxlon": -73.9236490 + }, + "nodes": [ + 3549074022, + 7734748120, + 3549074021, + 11415234465, + 5105109961 + ], + "geometry": [ + { "lat": 40.7999827, "lon": -73.9236490 }, + { "lat": 40.7996274, "lon": -73.9239202 }, + { "lat": 40.7996113, "lon": -73.9239320 }, + { "lat": 40.7992379, "lon": -73.9242113 }, + { "lat": 40.7992128, "lon": -73.9242300 } + ], + "tags": { + "bicycle": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 349272149, + "bounds": { + "minlat": 40.8135001, + "minlon": -73.9531087, + "maxlat": 40.8143012, + "maxlon": -73.9530769 + }, + "nodes": [ + 42448607, + 10171865596, + 10171069499, + 42448605 + ], + "geometry": [ + { "lat": 40.8143012, "lon": -73.9530769 }, + { "lat": 40.8142437, "lon": -73.9530792 }, + { "lat": 40.8135488, "lon": -73.9531065 }, + { "lat": 40.8135001, "lon": -73.9531087 } + ], + "tags": { + "highway": "tertiary", + "name": "Convent Avenue" + } +}, +{ + "type": "way", + "id": 349272151, + "bounds": { + "minlat": 40.8136722, + "minlon": -73.9554444, + "maxlat": 40.8144827, + "maxlon": -73.9535288 + }, + "nodes": [ + 3551738975, + 5481863746, + 10173362953, + 42442589 + ], + "geometry": [ + { "lat": 40.8136722, "lon": -73.9535288 }, + { "lat": 40.8136824, "lon": -73.9535529 }, + { "lat": 40.8144360, "lon": -73.9553340 }, + { "lat": 40.8144827, "lon": -73.9554444 } + ], + "tags": { + "highway": "residential", + "name": "West 128th Street", + "name_1": "West 128 Street" + } +}, +{ + "type": "way", + "id": 349365815, + "bounds": { + "minlat": 40.7005618, + "minlon": -73.9632071, + "maxlat": 40.7010134, + "maxlon": -73.9626470 + }, + "nodes": [ + 3552687146, + 6248573338, + 5487808164, + 5487808162, + 4207774903 + ], + "geometry": [ + { "lat": 40.7010134, "lon": -73.9632071 }, + { "lat": 40.7009407, "lon": -73.9631170 }, + { "lat": 40.7008493, "lon": -73.9630036 }, + { "lat": 40.7006955, "lon": -73.9628129 }, + { "lat": 40.7005618, "lon": -73.9626470 } + ], + "tags": { + "bicycle": "use_sidepath", + "cycleway:right": "separate", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 349368177, + "bounds": { + "minlat": 40.7862189, + "minlon": -73.9419364, + "maxlat": 40.7870603, + "maxlon": -73.9399322 + }, + "nodes": [ + 42430488, + 3901501657, + 7080329522, + 7080329528, + 3552713327 + ], + "geometry": [ + { "lat": 40.7870603, "lon": -73.9419364 }, + { "lat": 40.7870075, "lon": -73.9418084 }, + { "lat": 40.7862649, "lon": -73.9400433 }, + { "lat": 40.7862430, "lon": -73.9399925 }, + { "lat": 40.7862189, "lon": -73.9399322 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 102nd Street", + "name:ru": "Восточная 102-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 349369193, + "bounds": { + "minlat": 40.7024544, + "minlon": -73.9937699, + "maxlat": 40.7026579, + "maxlon": -73.9932640 + }, + "nodes": [ + 42499982, + 42523694 + ], + "geometry": [ + { "lat": 40.7024544, "lon": -73.9932640 }, + { "lat": 40.7026579, "lon": -73.9937699 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz" + } +}, +{ + "type": "way", + "id": 349873701, + "bounds": { + "minlat": 40.7247564, + "minlon": -73.9904752, + "maxlat": 40.7249299, + "maxlon": -73.9903454 + }, + "nodes": [ + 42442843, + 7977873337, + 4202957549 + ], + "geometry": [ + { "lat": 40.7249299, "lon": -73.9903454 }, + { "lat": 40.7248773, "lon": -73.9903851 }, + { "lat": 40.7247564, "lon": -73.9904752 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 349873702, + "bounds": { + "minlat": 40.7249108, + "minlon": -73.9923990, + "maxlat": 40.7252555, + "maxlon": -73.9922705 + }, + "nodes": [ + 1692433907, + 8309479090, + 12187431493, + 12187431496, + 8309479083, + 42437613 + ], + "geometry": [ + { "lat": 40.7252555, "lon": -73.9922705 }, + { "lat": 40.7251922, "lon": -73.9922989 }, + { "lat": 40.7251785, "lon": -73.9923051 }, + { "lat": 40.7250124, "lon": -73.9923639 }, + { "lat": 40.7249566, "lon": -73.9923836 }, + { "lat": 40.7249108, "lon": -73.9923990 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 349941432, + "bounds": { + "minlat": 40.8343818, + "minlon": -73.9179639, + "maxlat": 40.8345091, + "maxlon": -73.9175837 + }, + "nodes": [ + 2408393054, + 2408379335, + 2408393015 + ], + "geometry": [ + { "lat": 40.8345091, "lon": -73.9179639 }, + { "lat": 40.8344456, "lon": -73.9177718 }, + { "lat": 40.8343818, "lon": -73.9175837 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 167th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 349941433, + "bounds": { + "minlat": 40.8340726, + "minlon": -73.9167205, + "maxlat": 40.8342147, + "maxlon": -73.9165744 + }, + "nodes": [ + 3557257103, + 8187805232, + 3557257104 + ], + "geometry": [ + { "lat": 40.8340726, "lon": -73.9167205 }, + { "lat": 40.8341834, "lon": -73.9166067 }, + { "lat": 40.8342147, "lon": -73.9165744 } + ], + "tags": { + "highway": "residential", + "name": "Sheridan Avenue", + "name:etymology:wikidata": "Q355452", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sheridan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 349941434, + "bounds": { + "minlat": 40.8337033, + "minlon": -73.9158196, + "maxlat": 40.8339107, + "maxlon": -73.9153487 + }, + "nodes": [ + 2408379348, + 11793812220, + 13003568314, + 2408379351, + 42731643 + ], + "geometry": [ + { "lat": 40.8337033, "lon": -73.9153487 }, + { "lat": 40.8337936, "lon": -73.9154800 }, + { "lat": 40.8338823, "lon": -73.9157381 }, + { "lat": 40.8338895, "lon": -73.9157596 }, + { "lat": 40.8339107, "lon": -73.9158196 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 349941435, + "bounds": { + "minlat": 40.8354120, + "minlon": -73.9153850, + "maxlat": 40.8382538, + "maxlon": -73.9127899 + }, + "nodes": [ + 42742517, + 13038896152, + 13037130949, + 42781412, + 13037130953, + 13036594601, + 42781415, + 13036556497, + 2408359301, + 2408359291, + 2829090597, + 13036536877, + 3557257813 + ], + "geometry": [ + { "lat": 40.8354120, "lon": -73.9153850 }, + { "lat": 40.8354792, "lon": -73.9153190 }, + { "lat": 40.8359264, "lon": -73.9148795 }, + { "lat": 40.8359900, "lon": -73.9148170 }, + { "lat": 40.8360647, "lon": -73.9147448 }, + { "lat": 40.8370493, "lon": -73.9137939 }, + { "lat": 40.8371134, "lon": -73.9137320 }, + { "lat": 40.8371678, "lon": -73.9136822 }, + { "lat": 40.8375260, "lon": -73.9133543 }, + { "lat": 40.8378316, "lon": -73.9131024 }, + { "lat": 40.8381911, "lon": -73.9128346 }, + { "lat": 40.8382066, "lon": -73.9128236 }, + { "lat": 40.8382538, "lon": -73.9127899 } + ], + "tags": { + "highway": "residential", + "name": "Sheridan Avenue", + "name:etymology:wikidata": "Q355452", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sheridan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 350628384, + "bounds": { + "minlat": 40.8094889, + "minlon": -73.9843145, + "maxlat": 40.8097055, + "maxlon": -73.9840264 + }, + "nodes": [ + 3563767825, + 3563767824, + 3563767826, + 3563767828, + 3563767830, + 3563767832, + 3563767834, + 3563767836, + 3563767838, + 3563767839, + 3563767837, + 3563767835, + 3563767833, + 103220243, + 3563767831, + 3563767829, + 3563767827, + 3563767825 + ], + "geometry": [ + { "lat": 40.8094921, "lon": -73.9842083 }, + { "lat": 40.8094889, "lon": -73.9841522 }, + { "lat": 40.8095021, "lon": -73.9840988 }, + { "lat": 40.8095299, "lon": -73.9840561 }, + { "lat": 40.8095678, "lon": -73.9840306 }, + { "lat": 40.8096103, "lon": -73.9840264 }, + { "lat": 40.8096507, "lon": -73.9840438 }, + { "lat": 40.8096830, "lon": -73.9840805 }, + { "lat": 40.8097023, "lon": -73.9841306 }, + { "lat": 40.8097055, "lon": -73.9841867 }, + { "lat": 40.8096923, "lon": -73.9842402 }, + { "lat": 40.8096646, "lon": -73.9842829 }, + { "lat": 40.8096266, "lon": -73.9843083 }, + { "lat": 40.8096075, "lon": -73.9843145 }, + { "lat": 40.8095842, "lon": -73.9843126 }, + { "lat": 40.8095437, "lon": -73.9842951 }, + { "lat": 40.8095114, "lon": -73.9842585 }, + { "lat": 40.8094921, "lon": -73.9842083 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Independence Way" + } +}, +{ + "type": "way", + "id": 350726028, + "bounds": { + "minlat": 40.7475359, + "minlon": -74.0006047, + "maxlat": 40.7484299, + "maxlon": -73.9999571 + }, + "nodes": [ + 42444933, + 10171484159, + 10171484147, + 42444928, + 10171484148, + 9469550701 + ], + "geometry": [ + { "lat": 40.7484299, "lon": -73.9999571 }, + { "lat": 40.7483551, "lon": -74.0000131 }, + { "lat": 40.7478582, "lon": -74.0003735 }, + { "lat": 40.7477909, "lon": -74.0004216 }, + { "lat": 40.7477346, "lon": -74.0004629 }, + { "lat": 40.7475359, "lon": -74.0006047 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 350726030, + "bounds": { + "minlat": 40.7515074, + "minlon": -73.9977245, + "maxlat": 40.7527418, + "maxlon": -73.9968169 + }, + "nodes": [ + 42444954, + 8262309052, + 11510245636, + 10995379664, + 8262309043, + 4557517549 + ], + "geometry": [ + { "lat": 40.7527418, "lon": -73.9968169 }, + { "lat": 40.7526825, "lon": -73.9968719 }, + { "lat": 40.7522130, "lon": -73.9972121 }, + { "lat": 40.7521279, "lon": -73.9972743 }, + { "lat": 40.7515706, "lon": -73.9976838 }, + { "lat": 40.7515074, "lon": -73.9977245 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 350726031, + "bounds": { + "minlat": 40.7413187, + "minlon": -74.0050382, + "maxlat": 40.7416415, + "maxlon": -74.0048213 + }, + "nodes": [ + 387180916, + 8262308748, + 3564892567, + 3564892566 + ], + "geometry": [ + { "lat": 40.7416415, "lon": -74.0048213 }, + { "lat": 40.7415763, "lon": -74.0048668 }, + { "lat": 40.7415276, "lon": -74.0049008 }, + { "lat": 40.7413187, "lon": -74.0050382 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 350910822, + "bounds": { + "minlat": 40.8105298, + "minlon": -73.9858034, + "maxlat": 40.8112790, + "maxlon": -73.9852866 + }, + "nodes": [ + 3566318103, + 3566318118 + ], + "geometry": [ + { "lat": 40.8105298, "lon": -73.9858034 }, + { "lat": 40.8112790, "lon": -73.9852866 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Castle Cove" + } +}, +{ + "type": "way", + "id": 350910827, + "bounds": { + "minlat": 40.8112198, + "minlon": -73.9875224, + "maxlat": 40.8118866, + "maxlon": -73.9868914 + }, + "nodes": [ + 3566318126, + 3566318125, + 3566318116 + ], + "geometry": [ + { "lat": 40.8118866, "lon": -73.9868914 }, + { "lat": 40.8118690, "lon": -73.9870004 }, + { "lat": 40.8112198, "lon": -73.9875224 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Harborview Terrace" + } +}, +{ + "type": "way", + "id": 350910830, + "bounds": { + "minlat": 40.8104252, + "minlon": -73.9868914, + "maxlat": 40.8118866, + "maxlon": -73.9833989 + }, + "nodes": [ + 3566318101, + 3566318102, + 3566318110, + 10248258215, + 3566318113, + 10248258216, + 3566318118, + 10248258220, + 3566318121, + 10248163700, + 3566318122, + 10248163708, + 10248258236, + 3566318126 + ], + "geometry": [ + { "lat": 40.8104252, "lon": -73.9833989 }, + { "lat": 40.8104923, "lon": -73.9834526 }, + { "lat": 40.8110333, "lon": -73.9848328 }, + { "lat": 40.8110908, "lon": -73.9848809 }, + { "lat": 40.8111323, "lon": -73.9849156 }, + { "lat": 40.8111891, "lon": -73.9850591 }, + { "lat": 40.8112790, "lon": -73.9852866 }, + { "lat": 40.8113756, "lon": -73.9855220 }, + { "lat": 40.8114105, "lon": -73.9856071 }, + { "lat": 40.8114353, "lon": -73.9857111 }, + { "lat": 40.8114424, "lon": -73.9857408 }, + { "lat": 40.8117815, "lon": -73.9866192 }, + { "lat": 40.8118421, "lon": -73.9867761 }, + { "lat": 40.8118866, "lon": -73.9868914 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Harborview Terrace" + } +}, +{ + "type": "way", + "id": 350910834, + "bounds": { + "minlat": 40.8099282, + "minlon": -73.9842967, + "maxlat": 40.8104252, + "maxlon": -73.9833989 + }, + "nodes": [ + 3566318094, + 3566318093, + 3566318095, + 10259283600, + 3566318096, + 3566318097, + 3566318098, + 3566318099, + 3566318100, + 10248258210, + 3566318101 + ], + "geometry": [ + { "lat": 40.8099436, "lon": -73.9842967 }, + { "lat": 40.8099282, "lon": -73.9841979 }, + { "lat": 40.8099733, "lon": -73.9841165 }, + { "lat": 40.8100517, "lon": -73.9840533 }, + { "lat": 40.8101679, "lon": -73.9839596 }, + { "lat": 40.8102108, "lon": -73.9838652 }, + { "lat": 40.8102240, "lon": -73.9837708 }, + { "lat": 40.8102284, "lon": -73.9835848 }, + { "lat": 40.8102636, "lon": -73.9835136 }, + { "lat": 40.8103189, "lon": -73.9834744 }, + { "lat": 40.8104252, "lon": -73.9833989 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Harborview Terrace" + } +}, +{ + "type": "way", + "id": 350910841, + "bounds": { + "minlat": 40.8099436, + "minlon": -73.9870382, + "maxlat": 40.8110102, + "maxlon": -73.9842967 + }, + "nodes": [ + 3566318108, + 10248258224, + 10248258223, + 3566318103, + 10248258219, + 10259283594, + 3566318094 + ], + "geometry": [ + { "lat": 40.8110102, "lon": -73.9870382 }, + { "lat": 40.8107079, "lon": -73.9862611 }, + { "lat": 40.8106393, "lon": -73.9860849 }, + { "lat": 40.8105298, "lon": -73.9858034 }, + { "lat": 40.8104336, "lon": -73.9855561 }, + { "lat": 40.8103589, "lon": -73.9853642 }, + { "lat": 40.8099436, "lon": -73.9842967 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Lighthouse Terrace" + } +}, +{ + "type": "way", + "id": 350910843, + "bounds": { + "minlat": 40.8110102, + "minlon": -73.9877648, + "maxlat": 40.8113166, + "maxlon": -73.9870382 + }, + "nodes": [ + 3566318108, + 3566318111, + 10248258231, + 3566318112, + 10248258233, + 3566318116, + 7050983420, + 7672269077, + 3566318119 + ], + "geometry": [ + { "lat": 40.8110102, "lon": -73.9870382 }, + { "lat": 40.8110716, "lon": -73.9871263 }, + { "lat": 40.8110758, "lon": -73.9871476 }, + { "lat": 40.8110969, "lon": -73.9872547 }, + { "lat": 40.8111232, "lon": -73.9873120 }, + { "lat": 40.8112198, "lon": -73.9875224 }, + { "lat": 40.8112369, "lon": -73.9875645 }, + { "lat": 40.8112607, "lon": -73.9876243 }, + { "lat": 40.8113166, "lon": -73.9877648 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Lighthouse Terrace", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 350910846, + "bounds": { + "minlat": 40.8109993, + "minlon": -73.9878288, + "maxlat": 40.8112390, + "maxlon": -73.9870382 + }, + "nodes": [ + 3566318117, + 7672269078, + 3566318114, + 7050983421, + 10248258232, + 3566318109, + 3566318107, + 3566318108 + ], + "geometry": [ + { "lat": 40.8112390, "lon": -73.9878288 }, + { "lat": 40.8111827, "lon": -73.9876903 }, + { "lat": 40.8111340, "lon": -73.9875705 }, + { "lat": 40.8110726, "lon": -73.9874131 }, + { "lat": 40.8110503, "lon": -73.9873559 }, + { "lat": 40.8110323, "lon": -73.9873097 }, + { "lat": 40.8109993, "lon": -73.9871568 }, + { "lat": 40.8110102, "lon": -73.9870382 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Lighthouse Terrace", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 350910849, + "bounds": { + "minlat": 40.8118557, + "minlon": -73.9873377, + "maxlat": 40.8120844, + "maxlon": -73.9866577 + }, + "nodes": [ + 103137052, + 3566318129, + 3566318132, + 3566318133, + 3566318130, + 3566318128 + ], + "geometry": [ + { "lat": 40.8118557, "lon": -73.9873377 }, + { "lat": 40.8120109, "lon": -73.9870980 }, + { "lat": 40.8120788, "lon": -73.9869696 }, + { "lat": 40.8120844, "lon": -73.9868465 }, + { "lat": 40.8120451, "lon": -73.9867151 }, + { "lat": 40.8120398, "lon": -73.9866577 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 350910852, + "bounds": { + "minlat": 40.8120398, + "minlon": -73.9868234, + "maxlat": 40.8125997, + "maxlon": -73.9866577 + }, + "nodes": [ + 3566318128, + 3566318131, + 3566318134, + 3566318135, + 3566318136, + 3566318137, + 103137057 + ], + "geometry": [ + { "lat": 40.8120398, "lon": -73.9866577 }, + { "lat": 40.8120643, "lon": -73.9866759 }, + { "lat": 40.8121182, "lon": -73.9867471 }, + { "lat": 40.8121962, "lon": -73.9868096 }, + { "lat": 40.8122776, "lon": -73.9868234 }, + { "lat": 40.8123557, "lon": -73.9867930 }, + { "lat": 40.8125997, "lon": -73.9866979 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 350910855, + "bounds": { + "minlat": 40.8106095, + "minlon": -73.9866577, + "maxlat": 40.8120398, + "maxlon": -73.9828906 + }, + "nodes": [ + 3566318104, + 3566318105, + 3566318106, + 3566318115, + 3566318120, + 3566318123, + 3566318124, + 3566318127, + 7672311987, + 3566318128 + ], + "geometry": [ + { "lat": 40.8106095, "lon": -73.9828906 }, + { "lat": 40.8109691, "lon": -73.9838023 }, + { "lat": 40.8109834, "lon": -73.9840311 }, + { "lat": 40.8111846, "lon": -73.9845417 }, + { "lat": 40.8113661, "lon": -73.9848744 }, + { "lat": 40.8116954, "lon": -73.9857163 }, + { "lat": 40.8116954, "lon": -73.9857774 }, + { "lat": 40.8119406, "lon": -73.9864172 }, + { "lat": 40.8120310, "lon": -73.9866363 }, + { "lat": 40.8120398, "lon": -73.9866577 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 351062995, + "bounds": { + "minlat": 40.7345565, + "minlon": -73.9374463, + "maxlat": 40.7348199, + "maxlon": -73.9367761 + }, + "nodes": [ + 597294498, + 9192032648, + 9982697962, + 9192032645, + 12234932568 + ], + "geometry": [ + { "lat": 40.7345565, "lon": -73.9374463 }, + { "lat": 40.7345835, "lon": -73.9373904 }, + { "lat": 40.7346071, "lon": -73.9373405 }, + { "lat": 40.7346294, "lon": -73.9372887 }, + { "lat": 40.7348199, "lon": -73.9367761 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 351201886, + "bounds": { + "minlat": 40.7594029, + "minlon": -73.9372498, + "maxlat": 40.7596052, + "maxlon": -73.9370559 + }, + "nodes": [ + 3569402143, + 3569402133 + ], + "geometry": [ + { "lat": 40.7596052, "lon": -73.9370559 }, + { "lat": 40.7594029, "lon": -73.9372498 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 351201887, + "bounds": { + "minlat": 40.7575028, + "minlon": -73.9390967, + "maxlat": 40.7580065, + "maxlon": -73.9386001 + }, + "nodes": [ + 42825874, + 11520416987, + 2302476358 + ], + "geometry": [ + { "lat": 40.7580065, "lon": -73.9386001 }, + { "lat": 40.7575728, "lon": -73.9390277 }, + { "lat": 40.7575028, "lon": -73.9390967 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 351201889, + "bounds": { + "minlat": 40.7598888, + "minlon": -73.9370036, + "maxlat": 40.7599949, + "maxlon": -73.9367867 + }, + "nodes": [ + 3569402168, + 3569402164, + 42825868 + ], + "geometry": [ + { "lat": 40.7599949, "lon": -73.9370036 }, + { "lat": 40.7599471, "lon": -73.9369104 }, + { "lat": 40.7598888, "lon": -73.9367867 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "name": "36th Avenue" + } +}, +{ + "type": "way", + "id": 351201897, + "bounds": { + "minlat": 40.7599949, + "minlon": -73.9379036, + "maxlat": 40.7603551, + "maxlon": -73.9370036 + }, + "nodes": [ + 3569402179, + 6452688259, + 42843373, + 6452688261, + 3569402168 + ], + "geometry": [ + { "lat": 40.7603551, "lon": -73.9379036 }, + { "lat": 40.7602446, "lon": -73.9376058 }, + { "lat": 40.7602020, "lon": -73.9374890 }, + { "lat": 40.7601640, "lon": -73.9374088 }, + { "lat": 40.7599949, "lon": -73.9370036 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "name": "36th Avenue" + } +}, +{ + "type": "way", + "id": 351201909, + "bounds": { + "minlat": 40.7532126, + "minlon": -73.9289584, + "maxlat": 40.7562130, + "maxlon": -73.9225705 + }, + "nodes": [ + 42905205, + 6450679285, + 3569401967, + 42932488, + 3569401965, + 3569858142, + 42908503, + 3569858140, + 3569858134, + 42866667, + 3569858132, + 3569858125, + 42926398, + 3569858124, + 6450635765, + 42888668, + 6450635764, + 3569858117, + 42841773, + 3569858115, + 5488325083, + 3569401941, + 42917869, + 3569401939, + 8593804583, + 42938567 + ], + "geometry": [ + { "lat": 40.7562130, "lon": -73.9289584 }, + { "lat": 40.7561771, "lon": -73.9288851 }, + { "lat": 40.7558808, "lon": -73.9282466 }, + { "lat": 40.7558413, "lon": -73.9281620 }, + { "lat": 40.7557998, "lon": -73.9280730 }, + { "lat": 40.7554974, "lon": -73.9274252 }, + { "lat": 40.7554668, "lon": -73.9273596 }, + { "lat": 40.7554356, "lon": -73.9272927 }, + { "lat": 40.7551256, "lon": -73.9266288 }, + { "lat": 40.7550980, "lon": -73.9265696 }, + { "lat": 40.7550601, "lon": -73.9264884 }, + { "lat": 40.7547479, "lon": -73.9258203 }, + { "lat": 40.7547200, "lon": -73.9257596 }, + { "lat": 40.7546902, "lon": -73.9256970 }, + { "lat": 40.7543756, "lon": -73.9250219 }, + { "lat": 40.7543480, "lon": -73.9249627 }, + { "lat": 40.7543170, "lon": -73.9248962 }, + { "lat": 40.7540092, "lon": -73.9242368 }, + { "lat": 40.7539733, "lon": -73.9241599 }, + { "lat": 40.7539404, "lon": -73.9240893 }, + { "lat": 40.7538503, "lon": -73.9238962 }, + { "lat": 40.7536517, "lon": -73.9234709 }, + { "lat": 40.7536075, "lon": -73.9233766 }, + { "lat": 40.7535526, "lon": -73.9232778 }, + { "lat": 40.7532561, "lon": -73.9226597 }, + { "lat": 40.7532126, "lon": -73.9225705 } + ], + "tags": { + "highway": "tertiary", + "lit": "yes", + "name": "36th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 351201921, + "bounds": { + "minlat": 40.7631222, + "minlon": -73.9464964, + "maxlat": 40.7638183, + "maxlon": -73.9451550 + }, + "nodes": [ + 3569402533, + 42448305 + ], + "geometry": [ + { "lat": 40.7638183, "lon": -73.9464964 }, + { "lat": 40.7631222, "lon": -73.9451550 } + ], + "tags": { + "bicycle": "yes", + "bridge": "movable", + "bridge:movable": "lift", + "bridge:name": "Roosevelt Island Bridge", + "cycleway": "track", + "foot": "no", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "maxweight": "36", + "name": "Roosevelt Island Bridge", + "old_name": "Welfare Island Bridge", + "operator": "New York City Department of Transportation", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "start_date": "1955", + "surface": "metal_grid", + "toll": "no", + "wikidata": "Q282921", + "wikipedia": "en:Roosevelt Island Bridge" + } +}, +{ + "type": "way", + "id": 351201922, + "bounds": { + "minlat": 40.7625924, + "minlon": -73.9451550, + "maxlat": 40.7631222, + "maxlon": -73.9440984 + }, + "nodes": [ + 42448305, + 3569402530, + 3785702978, + 7612920646, + 3785702976, + 3785702977, + 42938502 + ], + "geometry": [ + { "lat": 40.7631222, "lon": -73.9451550 }, + { "lat": 40.7630188, "lon": -73.9449597 }, + { "lat": 40.7628731, "lon": -73.9446808 }, + { "lat": 40.7628291, "lon": -73.9445950 }, + { "lat": 40.7627735, "lon": -73.9444869 }, + { "lat": 40.7626843, "lon": -73.9443052 }, + { "lat": 40.7625924, "lon": -73.9440984 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "bridge:name": "Roosevelt Island Bridge", + "cycleway": "lane", + "foot": "no", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "maxweight": "36", + "name": "Roosevelt Island Bridge", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q282921", + "wikipedia": "en:Roosevelt Island Bridge" + } +}, +{ + "type": "way", + "id": 351201930, + "bounds": { + "minlat": 40.7592752, + "minlon": -73.9354836, + "maxlat": 40.7597381, + "maxlon": -73.9350567 + }, + "nodes": [ + 3569402130, + 6452683695, + 3569402153 + ], + "geometry": [ + { "lat": 40.7592752, "lon": -73.9354836 }, + { "lat": 40.7593550, "lon": -73.9354074 }, + { "lat": 40.7597381, "lon": -73.9350567 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 351201931, + "bounds": { + "minlat": 40.7594029, + "minlon": -73.9376778, + "maxlat": 40.7596238, + "maxlon": -73.9372498 + }, + "nodes": [ + 3569402133, + 6452752269, + 13442681581, + 13442681580 + ], + "geometry": [ + { "lat": 40.7594029, "lon": -73.9372498 }, + { "lat": 40.7594625, "lon": -73.9373671 }, + { "lat": 40.7595017, "lon": -73.9374444 }, + { "lat": 40.7596238, "lon": -73.9376778 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 351201933, + "bounds": { + "minlat": 40.7601273, + "minlon": -73.9337075, + "maxlat": 40.7604299, + "maxlon": -73.9334374 + }, + "nodes": [ + 3569402173, + 6452553273, + 3569402181 + ], + "geometry": [ + { "lat": 40.7601273, "lon": -73.9337075 }, + { "lat": 40.7603771, "lon": -73.9334846 }, + { "lat": 40.7604299, "lon": -73.9334374 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 351201934, + "bounds": { + "minlat": 40.7602704, + "minlon": -73.9361829, + "maxlat": 40.7605190, + "maxlon": -73.9357237 + }, + "nodes": [ + 3569402185, + 6452880156, + 3569402178 + ], + "geometry": [ + { "lat": 40.7605190, "lon": -73.9361829 }, + { "lat": 40.7604588, "lon": -73.9360716 }, + { "lat": 40.7602704, "lon": -73.9357237 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 351201935, + "bounds": { + "minlat": 40.7618347, + "minlon": -73.9512077, + "maxlat": 40.7620805, + "maxlon": -73.9507231 + }, + "nodes": [ + 3569402525, + 3569402522 + ], + "geometry": [ + { "lat": 40.7620805, "lon": -73.9512077 }, + { "lat": 40.7618347, "lon": -73.9507231 } + ], + "tags": { + "highway": "service", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 351201938, + "bounds": { + "minlat": 40.7603551, + "minlon": -73.9379036, + "maxlat": 40.7607563, + "maxlon": -73.9375984 + }, + "nodes": [ + 3569402179, + 6452688253, + 3569402493 + ], + "geometry": [ + { "lat": 40.7603551, "lon": -73.9379036 }, + { "lat": 40.7604345, "lon": -73.9378432 }, + { "lat": 40.7607563, "lon": -73.9375984 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 351201939, + "bounds": { + "minlat": 40.7634635, + "minlon": -73.9491939, + "maxlat": 40.7640510, + "maxlon": -73.9484168 + }, + "nodes": [ + 3569402535, + 5212861669, + 3569402531 + ], + "geometry": [ + { "lat": 40.7640510, "lon": -73.9491939 }, + { "lat": 40.7635253, "lon": -73.9484930 }, + { "lat": 40.7634635, "lon": -73.9484168 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 351201941, + "bounds": { + "minlat": 40.7618505, + "minlon": -73.9376496, + "maxlat": 40.7622849, + "maxlon": -73.9373717 + }, + "nodes": [ + 2302476368, + 6452553266, + 3569402528, + 3569402519 + ], + "geometry": [ + { "lat": 40.7622849, "lon": -73.9373717 }, + { "lat": 40.7622196, "lon": -73.9374333 }, + { "lat": 40.7622088, "lon": -73.9374434 }, + { "lat": 40.7618505, "lon": -73.9376496 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 351201942, + "bounds": { + "minlat": 40.7597185, + "minlon": -73.9372602, + "maxlat": 40.7599949, + "maxlon": -73.9370036 + }, + "nodes": [ + 3569402168, + 6452688255, + 7237653201, + 3569402152 + ], + "geometry": [ + { "lat": 40.7599949, "lon": -73.9370036 }, + { "lat": 40.7599199, "lon": -73.9370694 }, + { "lat": 40.7597839, "lon": -73.9371983 }, + { "lat": 40.7597185, "lon": -73.9372602 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 351224632, + "bounds": { + "minlat": 40.7488839, + "minlon": -73.9699706, + "maxlat": 40.7494064, + "maxlon": -73.9693844 + }, + "nodes": [ + 42455929, + 1701844777, + 9140864940, + 6162215867, + 9140864942, + 8224676524, + 9140864943, + 6162215868, + 9140864944, + 11003445418, + 11002617663, + 595105472 + ], + "geometry": [ + { "lat": 40.7488839, "lon": -73.9699706 }, + { "lat": 40.7489714, "lon": -73.9698497 }, + { "lat": 40.7490247, "lon": -73.9697852 }, + { "lat": 40.7491060, "lon": -73.9696993 }, + { "lat": 40.7491532, "lon": -73.9696488 }, + { "lat": 40.7492013, "lon": -73.9696014 }, + { "lat": 40.7492386, "lon": -73.9695691 }, + { "lat": 40.7492847, "lon": -73.9695296 }, + { "lat": 40.7493369, "lon": -73.9694874 }, + { "lat": 40.7493564, "lon": -73.9694675 }, + { "lat": 40.7493745, "lon": -73.9694440 }, + { "lat": 40.7494064, "lon": -73.9693844 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 351233495, + "bounds": { + "minlat": 40.7190197, + "minlon": -73.9781201, + "maxlat": 40.7193529, + "maxlon": -73.9773349 + }, + "nodes": [ + 3569852193, + 4300992075, + 3569852194 + ], + "geometry": [ + { "lat": 40.7190197, "lon": -73.9773349 }, + { "lat": 40.7190516, "lon": -73.9774038 }, + { "lat": 40.7193529, "lon": -73.9781201 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 351234145, + "bounds": { + "minlat": 40.7536694, + "minlon": -73.9187549, + "maxlat": 40.7537960, + "maxlon": -73.9181050 + }, + "nodes": [ + 3569858112, + 6450834350, + 5357878518, + 9189020423, + 2503683549, + 9189020422 + ], + "geometry": [ + { "lat": 40.7536694, "lon": -73.9187549 }, + { "lat": 40.7537035, "lon": -73.9186011 }, + { "lat": 40.7537195, "lon": -73.9185270 }, + { "lat": 40.7537481, "lon": -73.9183793 }, + { "lat": 40.7537739, "lon": -73.9182417 }, + { "lat": 40.7537960, "lon": -73.9181050 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 351259040, + "bounds": { + "minlat": 40.7533800, + "minlon": -73.9312628, + "maxlat": 40.7615965, + "maxlon": -73.9245807 + }, + "nodes": [ + 42882974, + 3570249905, + 5488250139, + 12039846457, + 6450563909, + 42824130, + 6450510447, + 3574982358, + 42905203, + 3574982355, + 8626128117, + 3569401972, + 42905205, + 3569401970, + 3573487202, + 3573487201, + 42815816, + 3573487200, + 3573487196, + 3569401936, + 42876782 + ], + "geometry": [ + { "lat": 40.7615965, "lon": -73.9245807 }, + { "lat": 40.7615255, "lon": -73.9246353 }, + { "lat": 40.7612265, "lon": -73.9248802 }, + { "lat": 40.7597973, "lon": -73.9260429 }, + { "lat": 40.7593662, "lon": -73.9263936 }, + { "lat": 40.7592929, "lon": -73.9264530 }, + { "lat": 40.7592256, "lon": -73.9265056 }, + { "lat": 40.7578248, "lon": -73.9276473 }, + { "lat": 40.7577543, "lon": -73.9277046 }, + { "lat": 40.7576953, "lon": -73.9277560 }, + { "lat": 40.7563189, "lon": -73.9288724 }, + { "lat": 40.7562821, "lon": -73.9289022 }, + { "lat": 40.7562130, "lon": -73.9289584 }, + { "lat": 40.7561502, "lon": -73.9290121 }, + { "lat": 40.7546578, "lon": -73.9302234 }, + { "lat": 40.7546218, "lon": -73.9302524 }, + { "lat": 40.7545526, "lon": -73.9303090 }, + { "lat": 40.7544893, "lon": -73.9303607 }, + { "lat": 40.7534819, "lon": -73.9311799 }, + { "lat": 40.7534479, "lon": -73.9312074 }, + { "lat": 40.7533800, "lon": -73.9312628 } + ], + "tags": { + "highway": "residential", + "name": "32nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 351259042, + "bounds": { + "minlat": 40.7547368, + "minlon": -73.9229783, + "maxlat": 40.7551559, + "maxlon": -73.9226383 + }, + "nodes": [ + 3570193138, + 3570193144 + ], + "geometry": [ + { "lat": 40.7547368, "lon": -73.9229783 }, + { "lat": 40.7551559, "lon": -73.9226383 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 351259043, + "bounds": { + "minlat": 40.7545664, + "minlon": -73.9227246, + "maxlat": 40.7546197, + "maxlon": -73.9226055 + }, + "nodes": [ + 3570193133, + 6958876540, + 6450454270, + 3570193134 + ], + "geometry": [ + { "lat": 40.7545664, "lon": -73.9226055 }, + { "lat": 40.7545938, "lon": -73.9226667 }, + { "lat": 40.7546039, "lon": -73.9226893 }, + { "lat": 40.7546197, "lon": -73.9227246 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 351259045, + "bounds": { + "minlat": 40.7546197, + "minlon": -73.9228091, + "maxlat": 40.7546587, + "maxlon": -73.9227246 + }, + "nodes": [ + 3570193135, + 3570193134 + ], + "geometry": [ + { "lat": 40.7546587, "lon": -73.9228091 }, + { "lat": 40.7546197, "lon": -73.9227246 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 351259047, + "bounds": { + "minlat": 40.7623878, + "minlon": -73.9067638, + "maxlat": 40.7625999, + "maxlon": -73.9062993 + }, + "nodes": [ + 3570193154, + 6453075326, + 3570193157 + ], + "geometry": [ + { "lat": 40.7623878, "lon": -73.9062993 }, + { "lat": 40.7624168, "lon": -73.9063629 }, + { "lat": 40.7625999, "lon": -73.9067638 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 351259049, + "bounds": { + "minlat": 40.7546587, + "minlon": -73.9231914, + "maxlat": 40.7552567, + "maxlon": -73.9224645 + }, + "nodes": [ + 3570193135, + 3570193143, + 3570193144, + 3570193145, + 3570193141, + 3570193138, + 3570193135 + ], + "geometry": [ + { "lat": 40.7546587, "lon": -73.9228091 }, + { "lat": 40.7550718, "lon": -73.9224645 }, + { "lat": 40.7551559, "lon": -73.9226383 }, + { "lat": 40.7552567, "lon": -73.9228467 }, + { "lat": 40.7548351, "lon": -73.9231914 }, + { "lat": 40.7547368, "lon": -73.9229783 }, + { "lat": 40.7546587, "lon": -73.9228091 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 351264927, + "bounds": { + "minlat": 40.7656930, + "minlon": -73.9141462, + "maxlat": 40.7662326, + "maxlon": -73.9137029 + }, + "nodes": [ + 3570250007, + 6453034939, + 3570250021 + ], + "geometry": [ + { "lat": 40.7656930, "lon": -73.9141462 }, + { "lat": 40.7657614, "lon": -73.9140900 }, + { "lat": 40.7662326, "lon": -73.9137029 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 351276051, + "bounds": { + "minlat": 40.7728450, + "minlon": -73.9274470, + "maxlat": 40.7731161, + "maxlon": -73.9274147 + }, + "nodes": [ + 42811451, + 6452959171, + 42866523, + 42866521, + 42866520 + ], + "geometry": [ + { "lat": 40.7728450, "lon": -73.9274430 }, + { "lat": 40.7729243, "lon": -73.9274466 }, + { "lat": 40.7729340, "lon": -73.9274470 }, + { "lat": 40.7730310, "lon": -73.9274350 }, + { "lat": 40.7731161, "lon": -73.9274147 } + ], + "tags": { + "highway": "residential", + "name": "18th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "18th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11102", + "tiger:zip_right": "11102" + } +}, +{ + "type": "way", + "id": 351276052, + "bounds": { + "minlat": 40.7728450, + "minlon": -73.9289911, + "maxlat": 40.7733864, + "maxlon": -73.9274430 + }, + "nodes": [ + 42811451, + 6452962544, + 11221760294, + 2886109131, + 7745153198, + 7748145780, + 6452969526, + 42811448 + ], + "geometry": [ + { "lat": 40.7728450, "lon": -73.9274430 }, + { "lat": 40.7728903, "lon": -73.9275455 }, + { "lat": 40.7730562, "lon": -73.9280451 }, + { "lat": 40.7731029, "lon": -73.9281804 }, + { "lat": 40.7731163, "lon": -73.9282187 }, + { "lat": 40.7731338, "lon": -73.9282687 }, + { "lat": 40.7733639, "lon": -73.9289267 }, + { "lat": 40.7733864, "lon": -73.9289911 } + ], + "tags": { + "highway": "tertiary", + "name": "27th Avenue" + } +}, +{ + "type": "way", + "id": 351476443, + "bounds": { + "minlat": 40.8476477, + "minlon": -73.9820199, + "maxlat": 40.8485490, + "maxlon": -73.9811180 + }, + "nodes": [ + 103227498, + 3572608013 + ], + "geometry": [ + { "lat": 40.8485490, "lon": -73.9811180 }, + { "lat": 40.8476477, "lon": -73.9820199 } + ], + "tags": { + "highway": "residential", + "name": "12th Street" + } +}, +{ + "type": "way", + "id": 351540625, + "bounds": { + "minlat": 40.7199234, + "minlon": -74.0025960, + "maxlat": 40.7212520, + "maxlon": -74.0014470 + }, + "nodes": [ + 42449570, + 8231922371, + 42439583, + 8307641831, + 42440820 + ], + "geometry": [ + { "lat": 40.7212520, "lon": -74.0014470 }, + { "lat": 40.7212078, "lon": -74.0014845 }, + { "lat": 40.7203410, "lon": -74.0022210 }, + { "lat": 40.7200038, "lon": -74.0025215 }, + { "lat": 40.7199234, "lon": -74.0025960 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Mercer Street", + "name:etymology:wikidata": "Q3030909", + "name:ko": "머서 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q3306319", + "wikipedia": "en:Mercer Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 351541062, + "bounds": { + "minlat": 40.7515694, + "minlon": -73.9337792, + "maxlat": 40.7516996, + "maxlon": -73.9334262 + }, + "nodes": [ + 42849753, + 8088590923, + 3573447508 + ], + "geometry": [ + { "lat": 40.7515694, "lon": -73.9337792 }, + { "lat": 40.7516564, "lon": -73.9335460 }, + { "lat": 40.7516996, "lon": -73.9334262 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 351638330, + "bounds": { + "minlat": 40.7103444, + "minlon": -74.0177124, + "maxlat": 40.7104768, + "maxlon": -74.0175374 + }, + "nodes": [ + 889585074, + 42437410, + 3574506098, + 3574506097, + 3574506096, + 3574506095, + 889585051, + 889585096, + 889584978, + 889584998, + 3574506094, + 3574506093, + 889585211, + 889585266, + 889585115, + 3574506101, + 3574506100, + 3574506099, + 889585228, + 889585074 + ], + "geometry": [ + { "lat": 40.7103512, "lon": -74.0175842 }, + { "lat": 40.7103644, "lon": -74.0175611 }, + { "lat": 40.7103826, "lon": -74.0175449 }, + { "lat": 40.7104037, "lon": -74.0175374 }, + { "lat": 40.7104256, "lon": -74.0175393 }, + { "lat": 40.7104458, "lon": -74.0175505 }, + { "lat": 40.7104621, "lon": -74.0175697 }, + { "lat": 40.7104729, "lon": -74.0175949 }, + { "lat": 40.7104768, "lon": -74.0176234 }, + { "lat": 40.7104735, "lon": -74.0176519 }, + { "lat": 40.7104634, "lon": -74.0176776 }, + { "lat": 40.7104475, "lon": -74.0176975 }, + { "lat": 40.7104276, "lon": -74.0177095 }, + { "lat": 40.7104058, "lon": -74.0177124 }, + { "lat": 40.7103845, "lon": -74.0177057 }, + { "lat": 40.7103660, "lon": -74.0176903 }, + { "lat": 40.7103522, "lon": -74.0176678 }, + { "lat": 40.7103448, "lon": -74.0176406 }, + { "lat": 40.7103444, "lon": -74.0176117 }, + { "lat": 40.7103512, "lon": -74.0175842 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Albany Street", + "name:etymology:wikidata": "Q24861", + "name:ko": "앨버니 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "paving_stones", + "wikidata": "Q29110247", + "wikipedia": "en:Albany Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 351683289, + "bounds": { + "minlat": 40.8258802, + "minlon": -73.9723445, + "maxlat": 40.8270543, + "maxlon": -73.9716360 + }, + "nodes": [ + 3574998434, + 3574998433, + 5362479158, + 6765201053, + 5362479189, + 3574998430 + ], + "geometry": [ + { "lat": 40.8270543, "lon": -73.9716360 }, + { "lat": 40.8268155, "lon": -73.9717803 }, + { "lat": 40.8265037, "lon": -73.9719687 }, + { "lat": 40.8264633, "lon": -73.9719931 }, + { "lat": 40.8264344, "lon": -73.9720106 }, + { "lat": 40.8258802, "lon": -73.9723445 } + ], + "tags": { + "highway": "residential", + "name": "Mariners Cove" + } +}, +{ + "type": "way", + "id": 351686235, + "bounds": { + "minlat": 40.7404918, + "minlon": -73.9448390, + "maxlat": 40.7409296, + "maxlon": -73.9425270 + }, + "nodes": [ + 42808179, + 8926818342, + 10762203026, + 8926818335, + 42872060 + ], + "geometry": [ + { "lat": 40.7409296, "lon": -73.9448390 }, + { "lat": 40.7409175, "lon": -73.9447634 }, + { "lat": 40.7405182, "lon": -73.9426653 }, + { "lat": 40.7405087, "lon": -73.9426151 }, + { "lat": 40.7404918, "lon": -73.9425270 } + ], + "tags": { + "highway": "unclassified", + "name": "50th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 351686252, + "bounds": { + "minlat": 40.7418108, + "minlon": -73.9568901, + "maxlat": 40.7431966, + "maxlon": -73.9564373 + }, + "nodes": [ + 42866850, + 9179070561, + 9982774469, + 11211160259, + 42836084, + 11211160262, + 5033504574, + 12343655446, + 11211160263, + 276318040 + ], + "geometry": [ + { "lat": 40.7431966, "lon": -73.9564373 }, + { "lat": 40.7431226, "lon": -73.9564563 }, + { "lat": 40.7430958, "lon": -73.9564654 }, + { "lat": 40.7425574, "lon": -73.9566455 }, + { "lat": 40.7424777, "lon": -73.9566721 }, + { "lat": 40.7424322, "lon": -73.9566873 }, + { "lat": 40.7421854, "lon": -73.9567695 }, + { "lat": 40.7419552, "lon": -73.9568433 }, + { "lat": 40.7419227, "lon": -73.9568531 }, + { "lat": 40.7418108, "lon": -73.9568901 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "5th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 351686259, + "bounds": { + "minlat": 40.7434296, + "minlon": -73.9562086, + "maxlat": 40.7438786, + "maxlon": -73.9538694 + }, + "nodes": [ + 42832449, + 9982774473, + 13701199245, + 5034728019, + 42826882 + ], + "geometry": [ + { "lat": 40.7438786, "lon": -73.9562086 }, + { "lat": 40.7438627, "lon": -73.9561256 }, + { "lat": 40.7435866, "lon": -73.9546876 }, + { "lat": 40.7434512, "lon": -73.9539821 }, + { "lat": 40.7434296, "lon": -73.9538694 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "49th Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "49th", + "tiger:name_base_1": "Hunters Point", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 351686270, + "bounds": { + "minlat": 40.7418660, + "minlon": -73.9579265, + "maxlat": 40.7421263, + "maxlon": -73.9578355 + }, + "nodes": [ + 3575033037, + 4675915059, + 3575033029 + ], + "geometry": [ + { "lat": 40.7421263, "lon": -73.9578355 }, + { "lat": 40.7419090, "lon": -73.9579056 }, + { "lat": 40.7418660, "lon": -73.9579265 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 351686908, + "bounds": { + "minlat": 40.7476217, + "minlon": -73.9569473, + "maxlat": 40.7477061, + "maxlon": -73.9565026 + }, + "nodes": [ + 11484410420, + 9982771523, + 2387504625 + ], + "geometry": [ + { "lat": 40.7477061, "lon": -73.9569473 }, + { "lat": 40.7476561, "lon": -73.9566840 }, + { "lat": 40.7476217, "lon": -73.9565026 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "46th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 351703012, + "bounds": { + "minlat": 40.8035083, + "minlon": -73.9930491, + "maxlat": 40.8044725, + "maxlon": -73.9909675 + }, + "nodes": [ + 3575303898, + 5555494165, + 5342516905, + 3575303897, + 5481963187, + 5482410787, + 3575303896, + 5156502404, + 3575303895 + ], + "geometry": [ + { "lat": 40.8044725, "lon": -73.9930491 }, + { "lat": 40.8043955, "lon": -73.9929125 }, + { "lat": 40.8043701, "lon": -73.9928676 }, + { "lat": 40.8041722, "lon": -73.9924573 }, + { "lat": 40.8040744, "lon": -73.9922308 }, + { "lat": 40.8040180, "lon": -73.9921002 }, + { "lat": 40.8038567, "lon": -73.9917271 }, + { "lat": 40.8037220, "lon": -73.9914335 }, + { "lat": 40.8035083, "lon": -73.9909675 } + ], + "tags": { + "highway": "residential", + "name": "Main Street" + } +}, +{ + "type": "way", + "id": 351703103, + "bounds": { + "minlat": 40.8021536, + "minlon": -73.9950499, + "maxlat": 40.8030455, + "maxlon": -73.9949198 + }, + "nodes": [ + 3575305198, + 3575305199, + 3575305201, + 3575305203, + 3575305205, + 3575305208 + ], + "geometry": [ + { "lat": 40.8021536, "lon": -73.9950499 }, + { "lat": 40.8024483, "lon": -73.9949522 }, + { "lat": 40.8025082, "lon": -73.9949666 }, + { "lat": 40.8025680, "lon": -73.9950010 }, + { "lat": 40.8026553, "lon": -73.9950326 }, + { "lat": 40.8030455, "lon": -73.9949198 } + ], + "tags": { + "highway": "residential", + "name": "Bergen Ridge Road" + } +}, +{ + "type": "way", + "id": 351703104, + "bounds": { + "minlat": 40.8037673, + "minlon": -73.9957808, + "maxlat": 40.8044530, + "maxlon": -73.9952372 + }, + "nodes": [ + 103881116, + 3575305218, + 3575305216, + 3575305212, + 3575305210, + 3575305209, + 3575305211, + 3575305214, + 3575305215, + 3575305217, + 3575305219 + ], + "geometry": [ + { "lat": 40.8044530, "lon": -73.9956245 }, + { "lat": 40.8043415, "lon": -73.9954340 }, + { "lat": 40.8042534, "lon": -73.9953564 }, + { "lat": 40.8038097, "lon": -73.9952372 }, + { "lat": 40.8037815, "lon": -73.9952616 }, + { "lat": 40.8037673, "lon": -73.9953363 }, + { "lat": 40.8037858, "lon": -73.9953895 }, + { "lat": 40.8041556, "lon": -73.9954900 }, + { "lat": 40.8042089, "lon": -73.9955202 }, + { "lat": 40.8042611, "lon": -73.9956007 }, + { "lat": 40.8043459, "lon": -73.9957808 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 351703105, + "bounds": { + "minlat": 40.8025644, + "minlon": -73.9957373, + "maxlat": 40.8026553, + "maxlon": -73.9950326 + }, + "nodes": [ + 3575305202, + 3575305205 + ], + "geometry": [ + { "lat": 40.8025644, "lon": -73.9957373 }, + { "lat": 40.8026553, "lon": -73.9950326 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 351703106, + "bounds": { + "minlat": 40.8019672, + "minlon": -73.9962776, + "maxlat": 40.8027535, + "maxlon": -73.9957296 + }, + "nodes": [ + 3575305195, + 3575305194, + 3575305196, + 3575305197, + 3575305200, + 3575305202, + 3575305204, + 3575305206, + 3575305207 + ], + "geometry": [ + { "lat": 40.8020008, "lon": -73.9962776 }, + { "lat": 40.8019672, "lon": -73.9960528 }, + { "lat": 40.8020226, "lon": -73.9959092 }, + { "lat": 40.8020846, "lon": -73.9958402 }, + { "lat": 40.8024685, "lon": -73.9957468 }, + { "lat": 40.8025644, "lon": -73.9957373 }, + { "lat": 40.8026414, "lon": -73.9957296 }, + { "lat": 40.8027317, "lon": -73.9958560 }, + { "lat": 40.8027535, "lon": -73.9961393 } + ], + "tags": { + "highway": "residential", + "name": "Boulevard East", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 351824069, + "bounds": { + "minlat": 40.7596818, + "minlon": -73.9276456, + "maxlat": 40.7597169, + "maxlon": -73.9276176 + }, + "nodes": [ + 3576314063, + 3584145090 + ], + "geometry": [ + { "lat": 40.7596818, "lon": -73.9276456 }, + { "lat": 40.7597169, "lon": -73.9276176 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 351824070, + "bounds": { + "minlat": 40.7596561, + "minlon": -73.9276456, + "maxlat": 40.7596818, + "maxlon": -73.9275880 + }, + "nodes": [ + 3576314063, + 3584145091 + ], + "geometry": [ + { "lat": 40.7596818, "lon": -73.9276456 }, + { "lat": 40.7596561, "lon": -73.9275880 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 351870578, + "bounds": { + "minlat": 40.7044090, + "minlon": -73.9122961, + "maxlat": 40.7087874, + "maxlon": -73.9048650 + }, + "nodes": [ + 4655051006, + 9763022501, + 11037790084, + 42809970, + 11037790085, + 10686537741, + 9763022485, + 42809969, + 9763022483, + 10686537740, + 9763022461, + 42809965, + 9763022460, + 10686537773, + 9763022445, + 42809962, + 9763022444, + 10686537750, + 9763022344, + 42809958, + 9763022346, + 11037795907, + 42809955, + 11037795908, + 9761709247, + 42809954, + 9761709249, + 10693892832, + 9761709276, + 42809951, + 9761709277, + 10686521695, + 9761709265, + 42809946, + 9761709263, + 9755788814, + 42809943 + ], + "geometry": [ + { "lat": 40.7044090, "lon": -73.9048650 }, + { "lat": 40.7044524, "lon": -73.9049383 }, + { "lat": 40.7048162, "lon": -73.9055536 }, + { "lat": 40.7048490, "lon": -73.9056090 }, + { "lat": 40.7048928, "lon": -73.9056836 }, + { "lat": 40.7052267, "lon": -73.9062527 }, + { "lat": 40.7052513, "lon": -73.9062946 }, + { "lat": 40.7052912, "lon": -73.9063601 }, + { "lat": 40.7053247, "lon": -73.9064199 }, + { "lat": 40.7056649, "lon": -73.9069962 }, + { "lat": 40.7056906, "lon": -73.9070397 }, + { "lat": 40.7057220, "lon": -73.9070930 }, + { "lat": 40.7057650, "lon": -73.9071659 }, + { "lat": 40.7061000, "lon": -73.9077341 }, + { "lat": 40.7061278, "lon": -73.9077813 }, + { "lat": 40.7061600, "lon": -73.9078360 }, + { "lat": 40.7062022, "lon": -73.9079076 }, + { "lat": 40.7065301, "lon": -73.9084642 }, + { "lat": 40.7065642, "lon": -73.9085217 }, + { "lat": 40.7065980, "lon": -73.9085790 }, + { "lat": 40.7066339, "lon": -73.9086414 }, + { "lat": 40.7070025, "lon": -73.9092669 }, + { "lat": 40.7070350, "lon": -73.9093220 }, + { "lat": 40.7070726, "lon": -73.9093858 }, + { "lat": 40.7074374, "lon": -73.9100053 }, + { "lat": 40.7074720, "lon": -73.9100640 }, + { "lat": 40.7075135, "lon": -73.9101346 }, + { "lat": 40.7078489, "lon": -73.9107046 }, + { "lat": 40.7078761, "lon": -73.9107508 }, + { "lat": 40.7079080, "lon": -73.9108050 }, + { "lat": 40.7079472, "lon": -73.9108721 }, + { "lat": 40.7082813, "lon": -73.9114382 }, + { "lat": 40.7083133, "lon": -73.9114925 }, + { "lat": 40.7083460, "lon": -73.9115480 }, + { "lat": 40.7083834, "lon": -73.9116122 }, + { "lat": 40.7087420, "lon": -73.9122155 }, + { "lat": 40.7087874, "lon": -73.9122961 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Woodward Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 352399735, + "bounds": { + "minlat": 40.8437010, + "minlon": -73.9859520, + "maxlat": 40.8451063, + "maxlon": -73.9845415 + }, + "nodes": [ + 103227491, + 5965025995, + 5978949666, + 8375051245, + 5975035485, + 3581839099 + ], + "geometry": [ + { "lat": 40.8437010, "lon": -73.9859520 }, + { "lat": 40.8441273, "lon": -73.9855242 }, + { "lat": 40.8441671, "lon": -73.9854842 }, + { "lat": 40.8442830, "lon": -73.9853679 }, + { "lat": 40.8445634, "lon": -73.9850864 }, + { "lat": 40.8451063, "lon": -73.9845415 } + ], + "tags": { + "highway": "residential", + "name": "12th Street" + } +}, +{ + "type": "way", + "id": 352429770, + "bounds": { + "minlat": 40.7344650, + "minlon": -73.9554272, + "maxlat": 40.7372958, + "maxlon": -73.9549621 + }, + "nodes": [ + 42486600, + 8097082824, + 8097025114, + 42535632, + 8097082941, + 11229826568, + 8097082871, + 42535635, + 8097082944, + 11229826566, + 8097082922, + 42509161, + 8097082852, + 9996409582, + 11229826567, + 8097025063, + 42472255 + ], + "geometry": [ + { "lat": 40.7344650, "lon": -73.9549621 }, + { "lat": 40.7345168, "lon": -73.9549701 }, + { "lat": 40.7351025, "lon": -73.9550647 }, + { "lat": 40.7351597, "lon": -73.9550740 }, + { "lat": 40.7352248, "lon": -73.9550845 }, + { "lat": 40.7354396, "lon": -73.9551203 }, + { "lat": 40.7358085, "lon": -73.9551817 }, + { "lat": 40.7358732, "lon": -73.9551909 }, + { "lat": 40.7359361, "lon": -73.9552014 }, + { "lat": 40.7362831, "lon": -73.9552584 }, + { "lat": 40.7365239, "lon": -73.9552980 }, + { "lat": 40.7365857, "lon": -73.9553081 }, + { "lat": 40.7366437, "lon": -73.9553171 }, + { "lat": 40.7366783, "lon": -73.9553236 }, + { "lat": 40.7368886, "lon": -73.9553582 }, + { "lat": 40.7372184, "lon": -73.9554125 }, + { "lat": 40.7372958, "lon": -73.9554272 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Manhattan", + "tiger:name_type": "Ave", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 352438092, + "bounds": { + "minlat": 40.7100930, + "minlon": -73.9152640, + "maxlat": 40.7105290, + "maxlon": -73.9145160 + }, + "nodes": [ + 42809936, + 7882516215, + 42809932 + ], + "geometry": [ + { "lat": 40.7100930, "lon": -73.9145160 }, + { "lat": 40.7103113, "lon": -73.9148905 }, + { "lat": 40.7105290, "lon": -73.9152640 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Woodward Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Woodward", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 352438095, + "bounds": { + "minlat": 40.7105290, + "minlon": -73.9167480, + "maxlat": 40.7114020, + "maxlon": -73.9152640 + }, + "nodes": [ + 42809932, + 7882516209, + 42809929, + 7882516207, + 9744131360, + 42809927 + ], + "geometry": [ + { "lat": 40.7105290, "lon": -73.9152640 }, + { "lat": 40.7107569, "lon": -73.9156481 }, + { "lat": 40.7109670, "lon": -73.9160020 }, + { "lat": 40.7111225, "lon": -73.9162687 }, + { "lat": 40.7113706, "lon": -73.9166941 }, + { "lat": 40.7114020, "lon": -73.9167480 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Woodward Avenue", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Woodward", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 352649743, + "bounds": { + "minlat": 40.8422201, + "minlon": -73.9689005, + "maxlat": 40.8423196, + "maxlon": -73.9679180 + }, + "nodes": [ + 3584033960, + 3584033959, + 3584033956, + 7111500475, + 3584033957, + 3584033958, + 3584033961, + 3584033962 + ], + "geometry": [ + { "lat": 40.8422955, "lon": -73.9679180 }, + { "lat": 40.8422636, "lon": -73.9681089 }, + { "lat": 40.8422201, "lon": -73.9682762 }, + { "lat": 40.8422268, "lon": -73.9683796 }, + { "lat": 40.8422303, "lon": -73.9684334 }, + { "lat": 40.8422342, "lon": -73.9684739 }, + { "lat": 40.8423022, "lon": -73.9688587 }, + { "lat": 40.8423196, "lon": -73.9689005 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Plaza", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Plz", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 352657873, + "bounds": { + "minlat": 40.7597169, + "minlon": -73.9276176, + "maxlat": 40.7598041, + "maxlon": -73.9275482 + }, + "nodes": [ + 3584145090, + 6452518599, + 3576314064 + ], + "geometry": [ + { "lat": 40.7597169, "lon": -73.9276176 }, + { "lat": 40.7597452, "lon": -73.9275951 }, + { "lat": 40.7598041, "lon": -73.9275482 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 352657874, + "bounds": { + "minlat": 40.7595483, + "minlon": -73.9275880, + "maxlat": 40.7596561, + "maxlon": -73.9273468 + }, + "nodes": [ + 3584145091, + 8334076718, + 3576314065 + ], + "geometry": [ + { "lat": 40.7596561, "lon": -73.9275880 }, + { "lat": 40.7596062, "lon": -73.9274765 }, + { "lat": 40.7595483, "lon": -73.9273468 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 352688891, + "bounds": { + "minlat": 40.7235364, + "minlon": -73.9201636, + "maxlat": 40.7240217, + "maxlon": -73.9174290 + }, + "nodes": [ + 3584456551, + 8662465570, + 8662465572, + 3584456550, + 3584456549, + 7644827951, + 8662465571, + 3584456548 + ], + "geometry": [ + { "lat": 40.7240217, "lon": -73.9201636 }, + { "lat": 40.7240028, "lon": -73.9200760 }, + { "lat": 40.7239738, "lon": -73.9199413 }, + { "lat": 40.7236761, "lon": -73.9185591 }, + { "lat": 40.7237040, "lon": -73.9181844 }, + { "lat": 40.7236312, "lon": -73.9178562 }, + { "lat": 40.7235600, "lon": -73.9175354 }, + { "lat": 40.7235364, "lon": -73.9174290 } + ], + "tags": { + "access": "no", + "highway": "service", + "name": "Galasso Place", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 352705236, + "bounds": { + "minlat": 40.7307210, + "minlon": -73.9968302, + "maxlat": 40.7313454, + "maxlon": -73.9955665 + }, + "nodes": [ + 11436610909, + 12012813803, + 3584752291, + 42433298 + ], + "geometry": [ + { "lat": 40.7313454, "lon": -73.9968302 }, + { "lat": 40.7310629, "lon": -73.9962598 }, + { "lat": 40.7307561, "lon": -73.9956403 }, + { "lat": 40.7307210, "lon": -73.9955665 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Washington Square North", + "name:etymology:wikidata": "Q23", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4993391", + "wikipedia": "en:Waverly Place" + } +}, +{ + "type": "way", + "id": 352705238, + "bounds": { + "minlat": 40.7284130, + "minlon": -73.9965070, + "maxlat": 40.7295314, + "maxlon": -73.9942520 + }, + "nodes": [ + 3584752195, + 4745686172, + 8309478896, + 42456205, + 4745686174, + 3957463103, + 8309478904, + 4117109190, + 42449580, + 8309478902, + 8309479129, + 42428460 + ], + "geometry": [ + { "lat": 40.7295314, "lon": -73.9965070 }, + { "lat": 40.7292305, "lon": -73.9959055 }, + { "lat": 40.7292198, "lon": -73.9958846 }, + { "lat": 40.7291865, "lon": -73.9958200 }, + { "lat": 40.7291577, "lon": -73.9957621 }, + { "lat": 40.7290097, "lon": -73.9954637 }, + { "lat": 40.7288437, "lon": -73.9951294 }, + { "lat": 40.7288393, "lon": -73.9951205 }, + { "lat": 40.7288100, "lon": -73.9950610 }, + { "lat": 40.7287789, "lon": -73.9949978 }, + { "lat": 40.7284557, "lon": -73.9943408 }, + { "lat": 40.7284130, "lon": -73.9942520 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 4th Street", + "name:ru": "Западная 4-я стрит", + "name_1": "West 4 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 352858052, + "bounds": { + "minlat": 40.7926891, + "minlon": -73.9730999, + "maxlat": 40.7943346, + "maxlon": -73.9718639 + }, + "nodes": [ + 1061531790, + 10061553269, + 10061699533, + 1061531847, + 10061800635, + 8687882719, + 1061531593, + 8687882731, + 4205805395 + ], + "geometry": [ + { "lat": 40.7926891, "lon": -73.9730999 }, + { "lat": 40.7927441, "lon": -73.9730561 }, + { "lat": 40.7932596, "lon": -73.9726799 }, + { "lat": 40.7933157, "lon": -73.9726391 }, + { "lat": 40.7933717, "lon": -73.9725951 }, + { "lat": 40.7938792, "lon": -73.9721982 }, + { "lat": 40.7939310, "lon": -73.9721589 }, + { "lat": 40.7939917, "lon": -73.9721128 }, + { "lat": 40.7943346, "lon": -73.9718639 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 352858056, + "bounds": { + "minlat": 40.7933852, + "minlon": -73.9721589, + "maxlat": 40.7939310, + "maxlon": -73.9708683 + }, + "nodes": [ + 1061531593, + 7004379679, + 8687882703, + 42442528 + ], + "geometry": [ + { "lat": 40.7939310, "lon": -73.9721589 }, + { "lat": 40.7938972, "lon": -73.9720779 }, + { "lat": 40.7934372, "lon": -73.9709910 }, + { "lat": 40.7933852, "lon": -73.9708683 } + ], + "tags": { + "alt_name": "West 95 Street", + "cycleway:right": "no", + "highway": "residential", + "name": "West 95th Street", + "name:ru": "Западная 95-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4646040", + "wikipedia": "en:95th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 352858405, + "bounds": { + "minlat": 40.7806784, + "minlon": -73.9869955, + "maxlat": 40.7807207, + "maxlon": -73.9865628 + }, + "nodes": [ + 42425223, + 9168918160, + 4906056157, + 9168918159, + 595254587, + 9168918158, + 4906056151, + 595245843 + ], + "geometry": [ + { "lat": 40.7806784, "lon": -73.9865628 }, + { "lat": 40.7806978, "lon": -73.9866368 }, + { "lat": 40.7807105, "lon": -73.9866930 }, + { "lat": 40.7807163, "lon": -73.9867392 }, + { "lat": 40.7807202, "lon": -73.9867982 }, + { "lat": 40.7807207, "lon": -73.9868623 }, + { "lat": 40.7807181, "lon": -73.9869329 }, + { "lat": 40.7807084, "lon": -73.9869955 } + ], + "tags": { + "bridge": "yes", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "oneway": "no", + "surface": "concrete", + "turn:lanes:forward": "through|right", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 353054956, + "bounds": { + "minlat": 40.8362677, + "minlon": -73.9702890, + "maxlat": 40.8366324, + "maxlon": -73.9690351 + }, + "nodes": [ + 3588356665, + 3588356664, + 3588356662, + 3588356661 + ], + "geometry": [ + { "lat": 40.8366324, "lon": -73.9702890 }, + { "lat": 40.8365732, "lon": -73.9700922 }, + { "lat": 40.8363526, "lon": -73.9693368 }, + { "lat": 40.8362677, "lon": -73.9690351 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Cove" + } +}, +{ + "type": "way", + "id": 353054957, + "bounds": { + "minlat": 40.8357788, + "minlon": -73.9704277, + "maxlat": 40.8358778, + "maxlon": -73.9700821 + }, + "nodes": [ + 5720061664, + 3588356658, + 3588356659 + ], + "geometry": [ + { "lat": 40.8357788, "lon": -73.9700821 }, + { "lat": 40.8357998, "lon": -73.9701553 }, + { "lat": 40.8358778, "lon": -73.9704277 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Cove", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 353054958, + "bounds": { + "minlat": 40.8356638, + "minlon": -73.9696802, + "maxlat": 40.8363526, + "maxlon": -73.9693368 + }, + "nodes": [ + 3588356657, + 3588356662 + ], + "geometry": [ + { "lat": 40.8356638, "lon": -73.9696802 }, + { "lat": 40.8363526, "lon": -73.9693368 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Cove" + } +}, +{ + "type": "way", + "id": 353054959, + "bounds": { + "minlat": 40.8358778, + "minlon": -73.9704277, + "maxlat": 40.8365732, + "maxlon": -73.9700922 + }, + "nodes": [ + 3588356659, + 3588356664 + ], + "geometry": [ + { "lat": 40.8358778, "lon": -73.9704277 }, + { "lat": 40.8365732, "lon": -73.9700922 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Cove" + } +}, +{ + "type": "way", + "id": 353069285, + "bounds": { + "minlat": 40.7145039, + "minlon": -74.0149945, + "maxlat": 40.7153146, + "maxlon": -74.0146751 + }, + "nodes": [ + 11439633274, + 11439633270, + 3588508438, + 11439633271, + 11439633273 + ], + "geometry": [ + { "lat": 40.7153146, "lon": -74.0146751 }, + { "lat": 40.7147556, "lon": -74.0148190 }, + { "lat": 40.7147317, "lon": -74.0148277 }, + { "lat": 40.7147129, "lon": -74.0148389 }, + { "lat": 40.7145039, "lon": -74.0149945 } + ], + "tags": { + "covered": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "North End Way", + "oneway": "no", + "source": "Bing Sat Images", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 353133686, + "bounds": { + "minlat": 40.7865093, + "minlon": -73.9524444, + "maxlat": 40.7871732, + "maxlon": -73.9519286 + }, + "nodes": [ + 42457660, + 6254816609, + 3589024670, + 6254816634, + 42449005 + ], + "geometry": [ + { "lat": 40.7865093, "lon": -73.9524444 }, + { "lat": 40.7866062, "lon": -73.9523691 }, + { "lat": 40.7868417, "lon": -73.9521862 }, + { "lat": 40.7871165, "lon": -73.9519726 }, + { "lat": 40.7871732, "lon": -73.9519286 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 353134392, + "bounds": { + "minlat": 40.7866587, + "minlon": -73.9521862, + "maxlat": 40.7868417, + "maxlon": -73.9517607 + }, + "nodes": [ + 3589024670, + 6254816602, + 3589024669 + ], + "geometry": [ + { "lat": 40.7868417, "lon": -73.9521862 }, + { "lat": 40.7868072, "lon": -73.9521000 }, + { "lat": 40.7866587, "lon": -73.9517607 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 353135767, + "bounds": { + "minlat": 40.7866031, + "minlon": -73.9526692, + "maxlat": 40.7869667, + "maxlon": -73.9524074 + }, + "nodes": [ + 9178805726, + 6254816620, + 596776260 + ], + "geometry": [ + { "lat": 40.7869667, "lon": -73.9524074 }, + { "lat": 40.7867031, "lon": -73.9525979 }, + { "lat": 40.7866031, "lon": -73.9526692 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 353135768, + "bounds": { + "minlat": 40.7869667, + "minlon": -73.9524074, + "maxlat": 40.7879084, + "maxlon": -73.9517278 + }, + "nodes": [ + 596776166, + 6254816650, + 596776165, + 6254816642, + 9178805726 + ], + "geometry": [ + { "lat": 40.7879084, "lon": -73.9517278 }, + { "lat": 40.7873344, "lon": -73.9521469 }, + { "lat": 40.7872803, "lon": -73.9521844 }, + { "lat": 40.7872235, "lon": -73.9522274 }, + { "lat": 40.7869667, "lon": -73.9524074 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 353220071, + "bounds": { + "minlat": 40.7845271, + "minlon": -73.9514317, + "maxlat": 40.7851972, + "maxlon": -73.9498372 + }, + "nodes": [ + 42434172, + 6181479989, + 3589888044, + 6221717931, + 42434169 + ], + "geometry": [ + { "lat": 40.7845271, "lon": -73.9498372 }, + { "lat": 40.7845812, "lon": -73.9499678 }, + { "lat": 40.7849079, "lon": -73.9507545 }, + { "lat": 40.7851549, "lon": -73.9513303 }, + { "lat": 40.7851972, "lon": -73.9514317 } + ], + "tags": { + "alt_name": "East 95 Street", + "highway": "residential", + "lanes": "1", + "name": "East 95th Street", + "name:ru": "Восточная 95-я стрит", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4646040", + "wikipedia": "en:95th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 353220074, + "bounds": { + "minlat": 40.7851972, + "minlon": -73.9562599, + "maxlat": 40.7872265, + "maxlon": -73.9514317 + }, + "nodes": [ + 42434169, + 6221717895, + 7093620700, + 42434168, + 596776167, + 7093532779, + 6270666542, + 6270666556, + 42434166, + 6270666552, + 11670994526, + 42434165 + ], + "geometry": [ + { "lat": 40.7851972, "lon": -73.9514317 }, + { "lat": 40.7852386, "lon": -73.9515309 }, + { "lat": 40.7857999, "lon": -73.9528489 }, + { "lat": 40.7858454, "lon": -73.9529602 }, + { "lat": 40.7859221, "lon": -73.9531410 }, + { "lat": 40.7859671, "lon": -73.9532500 }, + { "lat": 40.7861999, "lon": -73.9538223 }, + { "lat": 40.7865101, "lon": -73.9545515 }, + { "lat": 40.7865547, "lon": -73.9546527 }, + { "lat": 40.7866008, "lon": -73.9547636 }, + { "lat": 40.7871919, "lon": -73.9561511 }, + { "lat": 40.7872265, "lon": -73.9562599 } + ], + "tags": { + "highway": "residential", + "name": "East 95th Street", + "name:ru": "Восточная 95-я стрит", + "name_1": "East 95 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4646040", + "wikipedia": "en:95th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 353220077, + "bounds": { + "minlat": 40.7842494, + "minlon": -73.9493302, + "maxlat": 40.7851967, + "maxlon": -73.9470901 + }, + "nodes": [ + 42443054, + 6070360948, + 7066686012, + 7058672151, + 7066686014, + 6181480024, + 42450044 + ], + "geometry": [ + { "lat": 40.7842494, "lon": -73.9470901 }, + { "lat": 40.7843075, "lon": -73.9472194 }, + { "lat": 40.7843443, "lon": -73.9473111 }, + { "lat": 40.7844014, "lon": -73.9474467 }, + { "lat": 40.7850653, "lon": -73.9490172 }, + { "lat": 40.7851429, "lon": -73.9492009 }, + { "lat": 40.7851967, "lon": -73.9493302 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 353220112, + "bounds": { + "minlat": 40.7858747, + "minlon": -73.9509302, + "maxlat": 40.7865479, + "maxlon": -73.9504365 + }, + "nodes": [ + 42447169, + 6070217077, + 6221717924, + 42447166 + ], + "geometry": [ + { "lat": 40.7865479, "lon": -73.9504365 }, + { "lat": 40.7864951, "lon": -73.9504741 }, + { "lat": 40.7859669, "lon": -73.9508584 }, + { "lat": 40.7858747, "lon": -73.9509302 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 353220115, + "bounds": { + "minlat": 40.7798836, + "minlon": -73.9553083, + "maxlat": 40.7858747, + "maxlon": -73.9509302 + }, + "nodes": [ + 42447166, + 6221717898, + 9726158602, + 6221717903, + 42434169, + 6221717899, + 7093532780, + 42444495, + 7093620728, + 7158799081, + 4163883691, + 7158854713, + 7158854698, + 42447149, + 7158854706, + 7158854732, + 42447144, + 7158854747, + 7158854745, + 42444814, + 7158854693, + 7160238593, + 42436544, + 7160238595, + 5402547524, + 7924099704, + 42445738, + 7924094022, + 7041713705, + 7924099753, + 42447136, + 7924099801, + 9682829121 + ], + "geometry": [ + { "lat": 40.7858747, "lon": -73.9509302 }, + { "lat": 40.7857709, "lon": -73.9510088 }, + { "lat": 40.7854452, "lon": -73.9512469 }, + { "lat": 40.7852553, "lon": -73.9513872 }, + { "lat": 40.7851972, "lon": -73.9514317 }, + { "lat": 40.7851448, "lon": -73.9514709 }, + { "lat": 40.7846289, "lon": -73.9518478 }, + { "lat": 40.7845692, "lon": -73.9518920 }, + { "lat": 40.7845134, "lon": -73.9519302 }, + { "lat": 40.7840012, "lon": -73.9523051 }, + { "lat": 40.7839392, "lon": -73.9523473 }, + { "lat": 40.7838875, "lon": -73.9523841 }, + { "lat": 40.7833716, "lon": -73.9527633 }, + { "lat": 40.7833098, "lon": -73.9528082 }, + { "lat": 40.7832613, "lon": -73.9528442 }, + { "lat": 40.7827481, "lon": -73.9532179 }, + { "lat": 40.7826939, "lon": -73.9532560 }, + { "lat": 40.7826318, "lon": -73.9533012 }, + { "lat": 40.7821200, "lon": -73.9536779 }, + { "lat": 40.7820567, "lon": -73.9537232 }, + { "lat": 40.7820043, "lon": -73.9537613 }, + { "lat": 40.7814898, "lon": -73.9541390 }, + { "lat": 40.7814307, "lon": -73.9541807 }, + { "lat": 40.7813774, "lon": -73.9542190 }, + { "lat": 40.7812250, "lon": -73.9543308 }, + { "lat": 40.7808625, "lon": -73.9545924 }, + { "lat": 40.7808061, "lon": -73.9546344 }, + { "lat": 40.7807493, "lon": -73.9546760 }, + { "lat": 40.7805204, "lon": -73.9548431 }, + { "lat": 40.7802367, "lon": -73.9550498 }, + { "lat": 40.7801748, "lon": -73.9550942 }, + { "lat": 40.7801196, "lon": -73.9551355 }, + { "lat": 40.7798836, "lon": -73.9553083 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 353220118, + "bounds": { + "minlat": 40.7849079, + "minlon": -73.9507545, + "maxlat": 40.7851739, + "maxlon": -73.9504499 + }, + "nodes": [ + 3589888044, + 6221717770, + 6221717893, + 3589888053 + ], + "geometry": [ + { "lat": 40.7849079, "lon": -73.9507545 }, + { "lat": 40.7849698, "lon": -73.9507090 }, + { "lat": 40.7851739, "lon": -73.9505589 }, + { "lat": 40.7851320, "lon": -73.9504499 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 353285033, + "bounds": { + "minlat": 40.7843093, + "minlon": -73.9493179, + "maxlat": 40.7845331, + "maxlon": -73.9491309 + }, + "nodes": [ + 3590689290, + 6243559677, + 3590689291, + 3590689292 + ], + "geometry": [ + { "lat": 40.7843093, "lon": -73.9493179 }, + { "lat": 40.7843649, "lon": -73.9492782 }, + { "lat": 40.7844707, "lon": -73.9491962 }, + { "lat": 40.7845331, "lon": -73.9491309 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 353285034, + "bounds": { + "minlat": 40.7841131, + "minlon": -73.9491962, + "maxlat": 40.7844707, + "maxlon": -73.9482371 + }, + "nodes": [ + 3590689291, + 3590689287, + 6244763302, + 6244763305, + 3590689285, + 3590689286, + 6244763303, + 6244763307, + 3590689288, + 6244763306, + 3590689289, + 3590689287 + ], + "geometry": [ + { "lat": 40.7844707, "lon": -73.9491962 }, + { "lat": 40.7841968, "lon": -73.9485233 }, + { "lat": 40.7841172, "lon": -73.9483257 }, + { "lat": 40.7841131, "lon": -73.9482864 }, + { "lat": 40.7841271, "lon": -73.9482611 }, + { "lat": 40.7841620, "lon": -73.9482371 }, + { "lat": 40.7841875, "lon": -73.9482408 }, + { "lat": 40.7842105, "lon": -73.9482637 }, + { "lat": 40.7842663, "lon": -73.9484099 }, + { "lat": 40.7842640, "lon": -73.9484548 }, + { "lat": 40.7842468, "lon": -73.9484882 }, + { "lat": 40.7841968, "lon": -73.9485233 } + ], + "tags": { + "highway": "service", + "level": "1", + "maxspeed": "5 mph", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 353655412, + "bounds": { + "minlat": 40.7352039, + "minlon": -73.9917243, + "maxlat": 40.7359141, + "maxlon": -73.9912118 + }, + "nodes": [ + 42431491, + 8569048133, + 12072440228, + 3670742486, + 12072440221, + 42438784 + ], + "geometry": [ + { "lat": 40.7359141, "lon": -73.9912118 }, + { "lat": 40.7358518, "lon": -73.9912608 }, + { "lat": 40.7353187, "lon": -73.9916489 }, + { "lat": 40.7353125, "lon": -73.9916534 }, + { "lat": 40.7352421, "lon": -73.9916994 }, + { "lat": 40.7352039, "lon": -73.9917243 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:surface": "asphalt", + "emergency": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Union Square West", + "note": "Motor vehicles banned as of summer 2019", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 353672570, + "bounds": { + "minlat": 40.7142409, + "minlon": -74.0139335, + "maxlat": 40.7149598, + "maxlon": -74.0137081 + }, + "nodes": [ + 11439633207, + 11439633206, + 3594896444, + 7838207513, + 13019379932, + 13019379931, + 3594896440, + 11439633202, + 11439633203, + 11439633204 + ], + "geometry": [ + { "lat": 40.7149598, "lon": -74.0137081 }, + { "lat": 40.7149250, "lon": -74.0137573 }, + { "lat": 40.7149036, "lon": -74.0137773 }, + { "lat": 40.7148828, "lon": -74.0137869 }, + { "lat": 40.7147955, "lon": -74.0138101 }, + { "lat": 40.7144200, "lon": -74.0139100 }, + { "lat": 40.7143316, "lon": -74.0139335 }, + { "lat": 40.7143084, "lon": -74.0139319 }, + { "lat": 40.7142810, "lon": -74.0139223 }, + { "lat": 40.7142409, "lon": -74.0138939 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 354393802, + "bounds": { + "minlat": 40.7363647, + "minlon": -73.9743495, + "maxlat": 40.7366301, + "maxlon": -73.9739592 + }, + "nodes": [ + 3686034882, + 1728266928, + 1728266922, + 3686034885, + 1728266910, + 1728266923, + 1728266928 + ], + "geometry": [ + { "lat": 40.7366301, "lon": -73.9743478 }, + { "lat": 40.7366019, "lon": -73.9742981 }, + { "lat": 40.7364630, "lon": -73.9739812 }, + { "lat": 40.7364257, "lon": -73.9739592 }, + { "lat": 40.7363647, "lon": -73.9740046 }, + { "lat": 40.7365064, "lon": -73.9743495 }, + { "lat": 40.7366019, "lon": -73.9742981 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 354393808, + "bounds": { + "minlat": 40.7361488, + "minlon": -73.9788523, + "maxlat": 40.7366696, + "maxlon": -73.9784557 + }, + "nodes": [ + 3601295727, + 3686061878, + 3601295740, + 9141016337, + 9913605329, + 3601295754 + ], + "geometry": [ + { "lat": 40.7361488, "lon": -73.9788523 }, + { "lat": 40.7362111, "lon": -73.9788083 }, + { "lat": 40.7366211, "lon": -73.9785086 }, + { "lat": 40.7366486, "lon": -73.9784870 }, + { "lat": 40.7366599, "lon": -73.9784742 }, + { "lat": 40.7366696, "lon": -73.9784557 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 354586346, + "bounds": { + "minlat": 40.7785293, + "minlon": -73.9681010, + "maxlat": 40.7786974, + "maxlon": -73.9679871 + }, + "nodes": [ + 3602649920, + 7103884595, + 5533581866, + 3602649921 + ], + "geometry": [ + { "lat": 40.7786974, "lon": -73.9679871 }, + { "lat": 40.7786614, "lon": -73.9680126 }, + { "lat": 40.7785911, "lon": -73.9680598 }, + { "lat": 40.7785293, "lon": -73.9681010 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 354586348, + "bounds": { + "minlat": 40.7805004, + "minlon": -73.9712463, + "maxlat": 40.7805537, + "maxlon": -73.9707388 + }, + "nodes": [ + 4269952109, + 3602649929, + 3602649932, + 3602649930 + ], + "geometry": [ + { "lat": 40.7805537, "lon": -73.9707388 }, + { "lat": 40.7805111, "lon": -73.9709412 }, + { "lat": 40.7805032, "lon": -73.9711665 }, + { "lat": 40.7805004, "lon": -73.9712463 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 354586349, + "bounds": { + "minlat": 40.7803526, + "minlon": -73.9711665, + "maxlat": 40.7805032, + "maxlon": -73.9711564 + }, + "nodes": [ + 3602649931, + 3602649932 + ], + "geometry": [ + { "lat": 40.7803526, "lon": -73.9711564 }, + { "lat": 40.7805032, "lon": -73.9711665 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 354586624, + "bounds": { + "minlat": 40.7805307, + "minlon": -73.9711249, + "maxlat": 40.7811978, + "maxlon": -73.9705261 + }, + "nodes": [ + 3377460319, + 4269952112, + 3602653010, + 3602653029, + 3602653011, + 3602653027, + 3602653012, + 3602653028, + 3602653013, + 3602653026, + 4269952144, + 3602653014, + 3602653025, + 3602653015, + 3602653024, + 3602653016, + 3602653023, + 3602653017, + 3602653018, + 3602653019 + ], + "geometry": [ + { "lat": 40.7805307, "lon": -73.9706036 }, + { "lat": 40.7806082, "lon": -73.9706454 }, + { "lat": 40.7806240, "lon": -73.9706455 }, + { "lat": 40.7806840, "lon": -73.9705878 }, + { "lat": 40.7807479, "lon": -73.9705568 }, + { "lat": 40.7808301, "lon": -73.9705314 }, + { "lat": 40.7808749, "lon": -73.9705261 }, + { "lat": 40.7809430, "lon": -73.9705328 }, + { "lat": 40.7810070, "lon": -73.9705462 }, + { "lat": 40.7810568, "lon": -73.9705678 }, + { "lat": 40.7810975, "lon": -73.9705942 }, + { "lat": 40.7811267, "lon": -73.9706307 }, + { "lat": 40.7811653, "lon": -73.9707004 }, + { "lat": 40.7811866, "lon": -73.9707729 }, + { "lat": 40.7811978, "lon": -73.9708372 }, + { "lat": 40.7811948, "lon": -73.9709003 }, + { "lat": 40.7811805, "lon": -73.9709646 }, + { "lat": 40.7811521, "lon": -73.9710330 }, + { "lat": 40.7810872, "lon": -73.9711042 }, + { "lat": 40.7810629, "lon": -73.9711249 } + ], + "tags": { + "access": "private", + "highway": "service", + "lit": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 354586628, + "bounds": { + "minlat": 40.7810213, + "minlon": -73.9711605, + "maxlat": 40.7810629, + "maxlon": -73.9711249 + }, + "nodes": [ + 3602653019, + 3602653022 + ], + "geometry": [ + { "lat": 40.7810629, "lon": -73.9711249 }, + { "lat": 40.7810213, "lon": -73.9711605 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 354588342, + "bounds": { + "minlat": 40.7931355, + "minlon": -73.9646892, + "maxlat": 40.7934605, + "maxlon": -73.9639152 + }, + "nodes": [ + 3602667597, + 3602667598 + ], + "geometry": [ + { "lat": 40.7934605, "lon": -73.9646892 }, + { "lat": 40.7931355, "lon": -73.9639152 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 354588343, + "bounds": { + "minlat": 40.7933073, + "minlon": -73.9645687, + "maxlat": 40.7936306, + "maxlon": -73.9637897 + }, + "nodes": [ + 3602667599, + 3602667600 + ], + "geometry": [ + { "lat": 40.7936306, "lon": -73.9645687 }, + { "lat": 40.7933073, "lon": -73.9637897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 354588344, + "bounds": { + "minlat": 40.7934760, + "minlon": -73.9644502, + "maxlat": 40.7937978, + "maxlon": -73.9636682 + }, + "nodes": [ + 3602667601, + 3602667602 + ], + "geometry": [ + { "lat": 40.7937978, "lon": -73.9644502 }, + { "lat": 40.7934760, "lon": -73.9636682 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 354588345, + "bounds": { + "minlat": 40.7936002, + "minlon": -73.9643371, + "maxlat": 40.7939575, + "maxlon": -73.9632881 + }, + "nodes": [ + 7779666009, + 7779666004, + 3602667603, + 3602667604 + ], + "geometry": [ + { "lat": 40.7936002, "lon": -73.9632881 }, + { "lat": 40.7936211, "lon": -73.9634344 }, + { "lat": 40.7936354, "lon": -73.9635479 }, + { "lat": 40.7939575, "lon": -73.9643371 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 354588346, + "bounds": { + "minlat": 40.7938376, + "minlon": -73.9657415, + "maxlat": 40.7941301, + "maxlon": -73.9650126 + }, + "nodes": [ + 3602667605, + 3602667606 + ], + "geometry": [ + { "lat": 40.7938376, "lon": -73.9650126 }, + { "lat": 40.7941301, "lon": -73.9657415 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 354588348, + "bounds": { + "minlat": 40.7936539, + "minlon": -73.9658690, + "maxlat": 40.7939495, + "maxlon": -73.9651410 + }, + "nodes": [ + 3602667607, + 3602667608 + ], + "geometry": [ + { "lat": 40.7936539, "lon": -73.9651410 }, + { "lat": 40.7939495, "lon": -73.9658690 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 354588349, + "bounds": { + "minlat": 40.7938539, + "minlon": -73.9661904, + "maxlat": 40.7939495, + "maxlon": -73.9658690 + }, + "nodes": [ + 3602667608, + 12919480300, + 12919500801, + 7573471887, + 3874617032, + 12919480298, + 12919480299, + 3602667614 + ], + "geometry": [ + { "lat": 40.7939495, "lon": -73.9658690 }, + { "lat": 40.7939200, "lon": -73.9658981 }, + { "lat": 40.7939082, "lon": -73.9659323 }, + { "lat": 40.7939018, "lon": -73.9659813 }, + { "lat": 40.7938910, "lon": -73.9660672 }, + { "lat": 40.7938786, "lon": -73.9661366 }, + { "lat": 40.7938681, "lon": -73.9661681 }, + { "lat": 40.7938539, "lon": -73.9661904 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 354588354, + "bounds": { + "minlat": 40.7939923, + "minlon": -73.9656295, + "maxlat": 40.7942887, + "maxlon": -73.9648931 + }, + "nodes": [ + 3602667635, + 3602667636 + ], + "geometry": [ + { "lat": 40.7942887, "lon": -73.9656295 }, + { "lat": 40.7939923, "lon": -73.9648931 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 354589015, + "bounds": { + "minlat": 40.7945103, + "minlon": -73.9655579, + "maxlat": 40.7947323, + "maxlon": -73.9654847 + }, + "nodes": [ + 7571414441, + 12919500803, + 7571414439, + 7571414440, + 12919500804, + 3602672706 + ], + "geometry": [ + { "lat": 40.7945103, "lon": -73.9654847 }, + { "lat": 40.7945373, "lon": -73.9654888 }, + { "lat": 40.7946237, "lon": -73.9655379 }, + { "lat": 40.7946621, "lon": -73.9655535 }, + { "lat": 40.7946953, "lon": -73.9655579 }, + { "lat": 40.7947323, "lon": -73.9655516 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 354589955, + "bounds": { + "minlat": 40.7975712, + "minlon": -73.9607590, + "maxlat": 40.7976942, + "maxlon": -73.9605967 + }, + "nodes": [ + 3602679376, + 6935388003, + 6935388029, + 6935388051, + 3602679377, + 6935388001, + 6935388027, + 6935388049, + 3602679378, + 6935388025, + 6935388022, + 6935387997, + 3602679379, + 6935388045, + 6935388019, + 6935387994, + 3602679380, + 6935388042, + 6935388016, + 3602679381, + 6935388039, + 6935388013, + 6935388060, + 3602679382, + 6935388036, + 6935388010, + 6935388057, + 3602679364, + 6935388032, + 6935388006, + 6935388054, + 3602679365, + 6935388004, + 6935388030, + 6935388052, + 3602679368, + 6935388002, + 6935388028, + 6935388050, + 3602679369, + 6935388000, + 6935388026, + 6935388048, + 3602679370, + 6935388024, + 6935387999, + 6935388047, + 3602679371, + 3602679384, + 6935388021, + 6935387996, + 3602679372, + 6935388018, + 6935388044, + 6935388061, + 6935387993, + 3602679373, + 6935388015, + 6935388041, + 6935388062, + 3602679374, + 6935388012, + 6935388038, + 6935388059, + 3602679375, + 6935388009, + 6935388035, + 6935388056, + 3602679366, + 6935388007, + 6935388033, + 6935388055, + 3602679367, + 6935388031, + 6935388005, + 6935388053, + 3602679376 + ], + "geometry": [ + { "lat": 40.7976923, "lon": -73.9606978 }, + { "lat": 40.7976934, "lon": -73.9606910 }, + { "lat": 40.7976940, "lon": -73.9606840 }, + { "lat": 40.7976942, "lon": -73.9606771 }, + { "lat": 40.7976939, "lon": -73.9606701 }, + { "lat": 40.7976932, "lon": -73.9606632 }, + { "lat": 40.7976920, "lon": -73.9606564 }, + { "lat": 40.7976904, "lon": -73.9606497 }, + { "lat": 40.7976884, "lon": -73.9606433 }, + { "lat": 40.7976859, "lon": -73.9606371 }, + { "lat": 40.7976831, "lon": -73.9606312 }, + { "lat": 40.7976798, "lon": -73.9606257 }, + { "lat": 40.7976763, "lon": -73.9606206 }, + { "lat": 40.7976724, "lon": -73.9606158 }, + { "lat": 40.7976682, "lon": -73.9606116 }, + { "lat": 40.7976638, "lon": -73.9606078 }, + { "lat": 40.7976591, "lon": -73.9606045 }, + { "lat": 40.7976543, "lon": -73.9606018 }, + { "lat": 40.7976492, "lon": -73.9605996 }, + { "lat": 40.7976441, "lon": -73.9605981 }, + { "lat": 40.7976389, "lon": -73.9605971 }, + { "lat": 40.7976336, "lon": -73.9605967 }, + { "lat": 40.7976283, "lon": -73.9605969 }, + { "lat": 40.7976231, "lon": -73.9605977 }, + { "lat": 40.7976179, "lon": -73.9605991 }, + { "lat": 40.7976128, "lon": -73.9606010 }, + { "lat": 40.7976079, "lon": -73.9606036 }, + { "lat": 40.7976032, "lon": -73.9606066 }, + { "lat": 40.7975991, "lon": -73.9606098 }, + { "lat": 40.7975953, "lon": -73.9606135 }, + { "lat": 40.7975916, "lon": -73.9606174 }, + { "lat": 40.7975883, "lon": -73.9606218 }, + { "lat": 40.7975851, "lon": -73.9606265 }, + { "lat": 40.7975823, "lon": -73.9606314 }, + { "lat": 40.7975797, "lon": -73.9606367 }, + { "lat": 40.7975775, "lon": -73.9606422 }, + { "lat": 40.7975756, "lon": -73.9606479 }, + { "lat": 40.7975740, "lon": -73.9606537 }, + { "lat": 40.7975728, "lon": -73.9606598 }, + { "lat": 40.7975719, "lon": -73.9606659 }, + { "lat": 40.7975714, "lon": -73.9606721 }, + { "lat": 40.7975712, "lon": -73.9606783 }, + { "lat": 40.7975714, "lon": -73.9606846 }, + { "lat": 40.7975720, "lon": -73.9606907 }, + { "lat": 40.7975729, "lon": -73.9606969 }, + { "lat": 40.7975742, "lon": -73.9607029 }, + { "lat": 40.7975758, "lon": -73.9607087 }, + { "lat": 40.7975778, "lon": -73.9607144 }, + { "lat": 40.7975801, "lon": -73.9607199 }, + { "lat": 40.7975827, "lon": -73.9607251 }, + { "lat": 40.7975856, "lon": -73.9607300 }, + { "lat": 40.7975887, "lon": -73.9607346 }, + { "lat": 40.7975922, "lon": -73.9607389 }, + { "lat": 40.7975958, "lon": -73.9607428 }, + { "lat": 40.7975997, "lon": -73.9607464 }, + { "lat": 40.7976043, "lon": -73.9607499 }, + { "lat": 40.7976091, "lon": -73.9607528 }, + { "lat": 40.7976140, "lon": -73.9607552 }, + { "lat": 40.7976191, "lon": -73.9607571 }, + { "lat": 40.7976243, "lon": -73.9607583 }, + { "lat": 40.7976296, "lon": -73.9607590 }, + { "lat": 40.7976348, "lon": -73.9607590 }, + { "lat": 40.7976401, "lon": -73.9607585 }, + { "lat": 40.7976453, "lon": -73.9607574 }, + { "lat": 40.7976504, "lon": -73.9607557 }, + { "lat": 40.7976554, "lon": -73.9607534 }, + { "lat": 40.7976602, "lon": -73.9607505 }, + { "lat": 40.7976649, "lon": -73.9607471 }, + { "lat": 40.7976692, "lon": -73.9607432 }, + { "lat": 40.7976733, "lon": -73.9607388 }, + { "lat": 40.7976772, "lon": -73.9607340 }, + { "lat": 40.7976806, "lon": -73.9607288 }, + { "lat": 40.7976838, "lon": -73.9607231 }, + { "lat": 40.7976865, "lon": -73.9607172 }, + { "lat": 40.7976889, "lon": -73.9607110 }, + { "lat": 40.7976908, "lon": -73.9607045 }, + { "lat": 40.7976923, "lon": -73.9606978 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 354589956, + "bounds": { + "minlat": 40.7975294, + "minlon": -73.9606066, + "maxlat": 40.7976032, + "maxlon": -73.9604229 + }, + "nodes": [ + 3602679364, + 12036477424, + 3602679383 + ], + "geometry": [ + { "lat": 40.7976032, "lon": -73.9606066 }, + { "lat": 40.7975764, "lon": -73.9605399 }, + { "lat": 40.7975294, "lon": -73.9604229 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 354590212, + "bounds": { + "minlat": 40.7983289, + "minlon": -73.9607088, + "maxlat": 40.7986765, + "maxlon": -73.9604638 + }, + "nodes": [ + 3602678205, + 10171363576, + 3602678206 + ], + "geometry": [ + { "lat": 40.7983289, "lon": -73.9607088 }, + { "lat": 40.7984363, "lon": -73.9606331 }, + { "lat": 40.7986765, "lon": -73.9604638 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 354638345, + "bounds": { + "minlat": 40.8820879, + "minlon": -73.9888911, + "maxlat": 40.8825493, + "maxlon": -73.9884101 + }, + "nodes": [ + 3603219698, + 7070944238 + ], + "geometry": [ + { "lat": 40.8820879, "lon": -73.9888911 }, + { "lat": 40.8825493, "lon": -73.9884101 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Sterling Boulevard", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 354638346, + "bounds": { + "minlat": 40.8800530, + "minlon": -73.9891816, + "maxlat": 40.8813438, + "maxlon": -73.9878810 + }, + "nodes": [ + 3603219491, + 7199429709, + 8414810107, + 12022129435, + 12022129436 + ], + "geometry": [ + { "lat": 40.8813438, "lon": -73.9878810 }, + { "lat": 40.8809015, "lon": -73.9883484 }, + { "lat": 40.8803770, "lon": -73.9888633 }, + { "lat": 40.8803085, "lon": -73.9889290 }, + { "lat": 40.8800530, "lon": -73.9891816 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Sterling Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 354638348, + "bounds": { + "minlat": 40.8793776, + "minlon": -73.9924649, + "maxlat": 40.8830325, + "maxlon": -73.9894625 + }, + "nodes": [ + 3603219477, + 12022129493, + 12022129488, + 12022129483, + 12022129479, + 3603219715, + 12022129472 + ], + "geometry": [ + { "lat": 40.8793776, "lon": -73.9924649 }, + { "lat": 40.8805151, "lon": -73.9915297 }, + { "lat": 40.8815272, "lon": -73.9906975 }, + { "lat": 40.8819248, "lon": -73.9903706 }, + { "lat": 40.8829323, "lon": -73.9895422 }, + { "lat": 40.8829954, "lon": -73.9894895 }, + { "lat": 40.8830325, "lon": -73.9894625 } + ], + "tags": { + "highway": "residential", + "maxspeed": "15 mph", + "name": "Windsor Park Court", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 354638349, + "bounds": { + "minlat": 40.8810238, + "minlon": -73.9902387, + "maxlat": 40.8812433, + "maxlon": -73.9898567 + }, + "nodes": [ + 3603219490, + 3603219489, + 3603219488 + ], + "geometry": [ + { "lat": 40.8812433, "lon": -73.9902387 }, + { "lat": 40.8811551, "lon": -73.9900663 }, + { "lat": 40.8810238, "lon": -73.9898567 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 354638352, + "bounds": { + "minlat": 40.8803624, + "minlon": -73.9910588, + "maxlat": 40.8822787, + "maxlon": -73.9889847 + }, + "nodes": [ + 103173699, + 12022129405, + 12022129404, + 3603219484, + 12022129403, + 3603219485, + 12022129402, + 3603219486, + 12022129401, + 12022129400, + 3603219487, + 12022129398, + 12022129399, + 12022129397, + 3603219490, + 3603219700, + 12022129391, + 12022129390, + 12022129393, + 3603219702, + 12022129396, + 12022129388, + 12022129389, + 12022129387, + 3603219701, + 12022129386, + 12022129385, + 3603219699 + ], + "geometry": [ + { "lat": 40.8803624, "lon": -73.9910588 }, + { "lat": 40.8803997, "lon": -73.9910436 }, + { "lat": 40.8804304, "lon": -73.9910255 }, + { "lat": 40.8804492, "lon": -73.9910109 }, + { "lat": 40.8805414, "lon": -73.9909336 }, + { "lat": 40.8806336, "lon": -73.9908563 }, + { "lat": 40.8806570, "lon": -73.9908328 }, + { "lat": 40.8806727, "lon": -73.9908124 }, + { "lat": 40.8806875, "lon": -73.9907868 }, + { "lat": 40.8806975, "lon": -73.9907641 }, + { "lat": 40.8807265, "lon": -73.9906877 }, + { "lat": 40.8807365, "lon": -73.9906685 }, + { "lat": 40.8807512, "lon": -73.9906476 }, + { "lat": 40.8807665, "lon": -73.9906314 }, + { "lat": 40.8812433, "lon": -73.9902387 }, + { "lat": 40.8822373, "lon": -73.9894155 }, + { "lat": 40.8822525, "lon": -73.9893981 }, + { "lat": 40.8822658, "lon": -73.9893804 }, + { "lat": 40.8822736, "lon": -73.9893633 }, + { "lat": 40.8822779, "lon": -73.9893482 }, + { "lat": 40.8822787, "lon": -73.9893301 }, + { "lat": 40.8822783, "lon": -73.9893132 }, + { "lat": 40.8822748, "lon": -73.9892968 }, + { "lat": 40.8822687, "lon": -73.9892775 }, + { "lat": 40.8822615, "lon": -73.9892587 }, + { "lat": 40.8821770, "lon": -73.9890804 }, + { "lat": 40.8821666, "lon": -73.9890585 }, + { "lat": 40.8821317, "lon": -73.9889847 } + ], + "tags": { + "highway": "residential", + "name": "Riverview Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 354638353, + "bounds": { + "minlat": 40.8793776, + "minlon": -73.9925840, + "maxlat": 40.8796983, + "maxlon": -73.9924649 + }, + "nodes": [ + 3603219483, + 12022129500, + 12022129478, + 12022129477, + 3603219482, + 12022129476, + 12022129475, + 3603219480, + 12022129474, + 3603219479, + 12022129473, + 3603219478, + 3603219477 + ], + "geometry": [ + { "lat": 40.8796983, "lon": -73.9925089 }, + { "lat": 40.8796770, "lon": -73.9925256 }, + { "lat": 40.8796580, "lon": -73.9925388 }, + { "lat": 40.8796267, "lon": -73.9925565 }, + { "lat": 40.8795946, "lon": -73.9925699 }, + { "lat": 40.8795678, "lon": -73.9925770 }, + { "lat": 40.8795374, "lon": -73.9925820 }, + { "lat": 40.8795040, "lon": -73.9925840 }, + { "lat": 40.8794734, "lon": -73.9925807 }, + { "lat": 40.8794492, "lon": -73.9925676 }, + { "lat": 40.8794254, "lon": -73.9925447 }, + { "lat": 40.8794051, "lon": -73.9925154 }, + { "lat": 40.8793776, "lon": -73.9924649 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 355190650, + "bounds": { + "minlat": 40.7983463, + "minlon": -73.9215621, + "maxlat": 40.7987505, + "maxlon": -73.9212861 + }, + "nodes": [ + 3607948344, + 3607948343, + 3607948341 + ], + "geometry": [ + { "lat": 40.7987505, "lon": -73.9212861 }, + { "lat": 40.7986114, "lon": -73.9214156 }, + { "lat": 40.7983463, "lon": -73.9215621 } + ], + "tags": { + "highway": "service", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 355190651, + "bounds": { + "minlat": 40.7979377, + "minlon": -73.9215701, + "maxlat": 40.7980274, + "maxlon": -73.9213035 + }, + "nodes": [ + 3607948328, + 3607948329 + ], + "geometry": [ + { "lat": 40.7979377, "lon": -73.9213035 }, + { "lat": 40.7980274, "lon": -73.9215701 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 355190652, + "bounds": { + "minlat": 40.7981527, + "minlon": -73.9207017, + "maxlat": 40.7982533, + "maxlon": -73.9205773 + }, + "nodes": [ + 3607948339, + 3607948335 + ], + "geometry": [ + { "lat": 40.7982533, "lon": -73.9205773 }, + { "lat": 40.7981527, "lon": -73.9207017 } + ], + "tags": { + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 355190653, + "bounds": { + "minlat": 40.7979052, + "minlon": -73.9214146, + "maxlat": 40.7982275, + "maxlon": -73.9210098 + }, + "nodes": [ + 3607948336, + 3640160598, + 3607948334, + 3607948332, + 3640160599, + 3640160597, + 3607948327, + 3607948328, + 3607948334 + ], + "geometry": [ + { "lat": 40.7982275, "lon": -73.9214146 }, + { "lat": 40.7981834, "lon": -73.9213089 }, + { "lat": 40.7981346, "lon": -73.9211667 }, + { "lat": 40.7981021, "lon": -73.9210393 }, + { "lat": 40.7980869, "lon": -73.9210151 }, + { "lat": 40.7980666, "lon": -73.9210098 }, + { "lat": 40.7979052, "lon": -73.9210849 }, + { "lat": 40.7979377, "lon": -73.9213035 }, + { "lat": 40.7981346, "lon": -73.9211667 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 355192293, + "bounds": { + "minlat": 40.7890856, + "minlon": -73.9400642, + "maxlat": 40.7896284, + "maxlon": -73.9387678 + }, + "nodes": [ + 42450468, + 6216541801, + 7078449363, + 5481998057, + 5481998054 + ], + "geometry": [ + { "lat": 40.7896284, "lon": -73.9400642 }, + { "lat": 40.7895719, "lon": -73.9399294 }, + { "lat": 40.7894853, "lon": -73.9397224 }, + { "lat": 40.7893920, "lon": -73.9394996 }, + { "lat": 40.7890856, "lon": -73.9387678 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "network": "lcn", + "parking:lane:width": "13'", + "route": "bicycle", + "sidewalk": "both" + } +}, +{ + "type": "way", + "id": 355524812, + "bounds": { + "minlat": 40.7719885, + "minlon": -74.0132312, + "maxlat": 40.7721284, + "maxlon": -74.0127787 + }, + "nodes": [ + 103858326, + 3611168122, + 3611168123 + ], + "geometry": [ + { "lat": 40.7721120, "lon": -74.0132312 }, + { "lat": 40.7719885, "lon": -74.0129276 }, + { "lat": 40.7721284, "lon": -74.0127787 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 356140737, + "bounds": { + "minlat": 40.7127537, + "minlon": -74.0045249, + "maxlat": 40.7131550, + "maxlon": -74.0041090 + }, + "nodes": [ + 4878831008, + 3942249550, + 9603866900 + ], + "geometry": [ + { "lat": 40.7131550, "lon": -74.0041090 }, + { "lat": 40.7130878, "lon": -74.0042170 }, + { "lat": 40.7127537, "lon": -74.0045249 } + ], + "tags": { + "cycleway:left": "separate", + "expressway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 356140743, + "bounds": { + "minlat": 40.7128973, + "minlon": -74.0042063, + "maxlat": 40.7131200, + "maxlon": -74.0039898 + }, + "nodes": [ + 1272562792, + 4878838744, + 9121386334 + ], + "geometry": [ + { "lat": 40.7128973, "lon": -74.0042063 }, + { "lat": 40.7130199, "lon": -74.0040871 }, + { "lat": 40.7131200, "lon": -74.0039898 } + ], + "tags": { + "change": "no", + "cycleway:left": "separate", + "expressway": "yes", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 356144508, + "bounds": { + "minlat": 40.7878281, + "minlon": -73.9674683, + "maxlat": 40.7878926, + "maxlon": -73.9670316 + }, + "nodes": [ + 822671139, + 822671141, + 9908460369, + 1997760553, + 9908460370, + 9908460371, + 10059318934, + 42431447 + ], + "geometry": [ + { "lat": 40.7878926, "lon": -73.9670316 }, + { "lat": 40.7878374, "lon": -73.9671750 }, + { "lat": 40.7878311, "lon": -73.9671999 }, + { "lat": 40.7878282, "lon": -73.9672260 }, + { "lat": 40.7878281, "lon": -73.9672501 }, + { "lat": 40.7878324, "lon": -73.9672819 }, + { "lat": 40.7878397, "lon": -73.9673150 }, + { "lat": 40.7878716, "lon": -73.9674683 } + ], + "tags": { + "bicycle": "yes", + "hgv": "no", + "highway": "service", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "West 90th Street", + "name:ru": "Западная 90-я стрит", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 356144509, + "bounds": { + "minlat": 40.7877372, + "minlon": -73.9670316, + "maxlat": 40.7878926, + "maxlon": -73.9668660 + }, + "nodes": [ + 822671139, + 7155273350, + 9908460366, + 3616582590, + 7155273353, + 3616582589, + 3616582588, + 3616582587 + ], + "geometry": [ + { "lat": 40.7878926, "lon": -73.9670316 }, + { "lat": 40.7878910, "lon": -73.9669658 }, + { "lat": 40.7878865, "lon": -73.9669359 }, + { "lat": 40.7878765, "lon": -73.9669096 }, + { "lat": 40.7878627, "lon": -73.9668911 }, + { "lat": 40.7878444, "lon": -73.9668785 }, + { "lat": 40.7877782, "lon": -73.9668660 }, + { "lat": 40.7877372, "lon": -73.9668688 } + ], + "tags": { + "bicycle": "designated", + "hgv": "no", + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "West 90th Street", + "name:ru": "Западная 90-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 356381572, + "bounds": { + "minlat": 40.7516240, + "minlon": -73.9515238, + "maxlat": 40.7517153, + "maxlon": -73.9513256 + }, + "nodes": [ + 3618437572, + 6452716583, + 3618437573 + ], + "geometry": [ + { "lat": 40.7516240, "lon": -73.9513256 }, + { "lat": 40.7516784, "lon": -73.9514437 }, + { "lat": 40.7517153, "lon": -73.9515238 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 356381582, + "bounds": { + "minlat": 40.7534333, + "minlon": -73.9497969, + "maxlat": 40.7537192, + "maxlon": -73.9492272 + }, + "nodes": [ + 3618456701, + 6452722136, + 3618456704 + ], + "geometry": [ + { "lat": 40.7537192, "lon": -73.9497969 }, + { "lat": 40.7536736, "lon": -73.9497075 }, + { "lat": 40.7534333, "lon": -73.9492272 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 357266128, + "bounds": { + "minlat": 40.8197890, + "minlon": -73.9791553, + "maxlat": 40.8209145, + "maxlon": -73.9782164 + }, + "nodes": [ + 3625859823, + 9748349223, + 9748349219, + 9748349220, + 9748349221, + 9748349222 + ], + "geometry": [ + { "lat": 40.8209145, "lon": -73.9782164 }, + { "lat": 40.8201114, "lon": -73.9789509 }, + { "lat": 40.8199153, "lon": -73.9791427 }, + { "lat": 40.8198801, "lon": -73.9791553 }, + { "lat": 40.8198497, "lon": -73.9791347 }, + { "lat": 40.8197890, "lon": -73.9790273 } + ], + "tags": { + "highway": "residential", + "name": "River Mews Lane" + } +}, +{ + "type": "way", + "id": 357814388, + "bounds": { + "minlat": 40.8399995, + "minlon": -73.9683322, + "maxlat": 40.8401278, + "maxlon": -73.9681627 + }, + "nodes": [ + 3629342169, + 3629342167, + 3629342166, + 3629342168, + 3629342170, + 3629342173, + 3629342176, + 3629342178, + 3629342179, + 3629342177, + 3629342175, + 3629342172, + 3629342169 + ], + "geometry": [ + { "lat": 40.8400255, "lon": -73.9683163 }, + { "lat": 40.8400046, "lon": -73.9682818 }, + { "lat": 40.8399995, "lon": -73.9682382 }, + { "lat": 40.8400116, "lon": -73.9681971 }, + { "lat": 40.8400376, "lon": -73.9681694 }, + { "lat": 40.8400706, "lon": -73.9681627 }, + { "lat": 40.8401018, "lon": -73.9681786 }, + { "lat": 40.8401227, "lon": -73.9682130 }, + { "lat": 40.8401278, "lon": -73.9682567 }, + { "lat": 40.8401157, "lon": -73.9682978 }, + { "lat": 40.8400897, "lon": -73.9683255 }, + { "lat": 40.8400567, "lon": -73.9683322 }, + { "lat": 40.8400255, "lon": -73.9683163 } + ], + "tags": { + "highway": "residential", + "name": "Vela Way", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 357814389, + "bounds": { + "minlat": 40.8400512, + "minlon": -73.9696344, + "maxlat": 40.8403336, + "maxlon": -73.9683322 + }, + "nodes": [ + 12921090959, + 3629342181, + 3629342180, + 3629342174, + 3629342171, + 3629342172 + ], + "geometry": [ + { "lat": 40.8403336, "lon": -73.9696344 }, + { "lat": 40.8402763, "lon": -73.9692142 }, + { "lat": 40.8401754, "lon": -73.9689685 }, + { "lat": 40.8400978, "lon": -73.9687118 }, + { "lat": 40.8400512, "lon": -73.9684798 }, + { "lat": 40.8400567, "lon": -73.9683322 } + ], + "tags": { + "highway": "residential", + "name": "Vela Way" + } +}, +{ + "type": "way", + "id": 357946354, + "bounds": { + "minlat": 40.7179286, + "minlon": -73.9856543, + "maxlat": 40.7214151, + "maxlon": -73.9838696 + }, + "nodes": [ + 3630219668, + 8310245540, + 8310245530, + 42437074, + 8310245529, + 8310220498, + 42432075, + 8310220497, + 3783144656, + 1919595921 + ], + "geometry": [ + { "lat": 40.7179286, "lon": -73.9856543 }, + { "lat": 40.7179800, "lon": -73.9856425 }, + { "lat": 40.7190403, "lon": -73.9850967 }, + { "lat": 40.7190825, "lon": -73.9850756 }, + { "lat": 40.7191300, "lon": -73.9850507 }, + { "lat": 40.7201895, "lon": -73.9844948 }, + { "lat": 40.7202373, "lon": -73.9844697 }, + { "lat": 40.7202817, "lon": -73.9844471 }, + { "lat": 40.7213422, "lon": -73.9839083 }, + { "lat": 40.7214151, "lon": -73.9838696 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clinton Street", + "name:etymology:wikidata": "Q201646", + "name:ko": "클린턴 스트리트", + "oneway": "yes", + "parking:lane:right": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 357948788, + "bounds": { + "minlat": 40.7103357, + "minlon": -73.9568334, + "maxlat": 40.7103528, + "maxlon": -73.9566938 + }, + "nodes": [ + 3630238013, + 8842929718, + 42463272 + ], + "geometry": [ + { "lat": 40.7103357, "lon": -73.9568334 }, + { "lat": 40.7103442, "lon": -73.9567787 }, + { "lat": 40.7103528, "lon": -73.9566938 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 357948789, + "bounds": { + "minlat": 40.7103528, + "minlon": -73.9566938, + "maxlat": 40.7103746, + "maxlon": -73.9565269 + }, + "nodes": [ + 42463272, + 4593135559 + ], + "geometry": [ + { "lat": 40.7103528, "lon": -73.9566938 }, + { "lat": 40.7103746, "lon": -73.9565269 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 358225714, + "bounds": { + "minlat": 40.8820422, + "minlon": -73.9847159, + "maxlat": 40.8836619, + "maxlon": -73.9835982 + }, + "nodes": [ + 3631828076, + 12022105703, + 12022105702, + 3631828082, + 3631828088, + 3631828091, + 3631833598, + 3631833599 + ], + "geometry": [ + { "lat": 40.8820422, "lon": -73.9847159 }, + { "lat": 40.8821153, "lon": -73.9846661 }, + { "lat": 40.8821290, "lon": -73.9846567 }, + { "lat": 40.8828049, "lon": -73.9841963 }, + { "lat": 40.8829176, "lon": -73.9841191 }, + { "lat": 40.8829408, "lon": -73.9841040 }, + { "lat": 40.8836227, "lon": -73.9836610 }, + { "lat": 40.8836619, "lon": -73.9835982 } + ], + "tags": { + "highway": "residential", + "name": "Brownstone Way", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 358225715, + "bounds": { + "minlat": 40.8764364, + "minlon": -73.9872743, + "maxlat": 40.8810980, + "maxlon": -73.9841496 + }, + "nodes": [ + 7183509535, + 5735550972, + 103177520, + 8171514857, + 103161312, + 5780574884, + 103242072 + ], + "geometry": [ + { "lat": 40.8810980, "lon": -73.9841496 }, + { "lat": 40.8798242, "lon": -73.9849857 }, + { "lat": 40.8785885, "lon": -73.9858101 }, + { "lat": 40.8784126, "lon": -73.9859305 }, + { "lat": 40.8777298, "lon": -73.9863978 }, + { "lat": 40.8774989, "lon": -73.9865543 }, + { "lat": 40.8764364, "lon": -73.9872743 } + ], + "tags": { + "highway": "unclassified", + "maxheight:signed": "no", + "name": "Nordhoff Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Nordhoff", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 358225717, + "bounds": { + "minlat": 40.8816655, + "minlon": -73.9859867, + "maxlat": 40.8828668, + "maxlon": -73.9837740 + }, + "nodes": [ + 3631828085, + 12022105707, + 12022105706, + 3631828079, + 12022105687, + 6605469540, + 12022105688, + 12022105689, + 3631828078, + 3631828077, + 12022105690, + 12022105691, + 12022105692, + 12022105694, + 3631828076, + 12022105695, + 12022105693, + 12022105696, + 7183509543, + 12022105697, + 12022105698, + 3631828074 + ], + "geometry": [ + { "lat": 40.8828668, "lon": -73.9859867 }, + { "lat": 40.8828136, "lon": -73.9858961 }, + { "lat": 40.8828023, "lon": -73.9858769 }, + { "lat": 40.8826222, "lon": -73.9855701 }, + { "lat": 40.8825614, "lon": -73.9854642 }, + { "lat": 40.8824999, "lon": -73.9853659 }, + { "lat": 40.8824447, "lon": -73.9852786 }, + { "lat": 40.8823750, "lon": -73.9851862 }, + { "lat": 40.8823073, "lon": -73.9851017 }, + { "lat": 40.8822436, "lon": -73.9850170 }, + { "lat": 40.8821882, "lon": -73.9849440 }, + { "lat": 40.8821283, "lon": -73.9848594 }, + { "lat": 40.8820925, "lon": -73.9848050 }, + { "lat": 40.8820674, "lon": -73.9847604 }, + { "lat": 40.8820422, "lon": -73.9847159 }, + { "lat": 40.8820195, "lon": -73.9846684 }, + { "lat": 40.8819953, "lon": -73.9846163 }, + { "lat": 40.8819753, "lon": -73.9845708 }, + { "lat": 40.8818744, "lon": -73.9843090 }, + { "lat": 40.8817092, "lon": -73.9838905 }, + { "lat": 40.8816900, "lon": -73.9838416 }, + { "lat": 40.8816655, "lon": -73.9837740 } + ], + "tags": { + "highway": "residential", + "name": "Nordhoff Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 358225718, + "bounds": { + "minlat": 40.8816655, + "minlon": -73.9841477, + "maxlat": 40.8849770, + "maxlon": -73.9824202 + }, + "nodes": [ + 12023838863, + 12023838862, + 12023838861, + 3631833606, + 12023838860, + 3631833605, + 3631833604, + 12023838859, + 12023838858, + 12023838857, + 3631833603, + 12023838856, + 12023838855, + 12023838854, + 3631833602, + 12023838853, + 12023838852, + 3631833601, + 12023838851, + 12023838850, + 3631833600, + 12023838849, + 3631833594, + 3631828081, + 3631828080, + 3631828074 + ], + "geometry": [ + { "lat": 40.8849770, "lon": -73.9841477 }, + { "lat": 40.8848533, "lon": -73.9838151 }, + { "lat": 40.8848110, "lon": -73.9837122 }, + { "lat": 40.8847685, "lon": -73.9836182 }, + { "lat": 40.8847262, "lon": -73.9835319 }, + { "lat": 40.8846867, "lon": -73.9834508 }, + { "lat": 40.8843224, "lon": -73.9828096 }, + { "lat": 40.8842847, "lon": -73.9827440 }, + { "lat": 40.8842483, "lon": -73.9826904 }, + { "lat": 40.8842066, "lon": -73.9826359 }, + { "lat": 40.8841632, "lon": -73.9825872 }, + { "lat": 40.8841226, "lon": -73.9825442 }, + { "lat": 40.8840841, "lon": -73.9825123 }, + { "lat": 40.8840361, "lon": -73.9824768 }, + { "lat": 40.8839848, "lon": -73.9824532 }, + { "lat": 40.8839337, "lon": -73.9824389 }, + { "lat": 40.8838782, "lon": -73.9824271 }, + { "lat": 40.8838243, "lon": -73.9824202 }, + { "lat": 40.8837704, "lon": -73.9824232 }, + { "lat": 40.8837133, "lon": -73.9824337 }, + { "lat": 40.8836612, "lon": -73.9824493 }, + { "lat": 40.8836146, "lon": -73.9824674 }, + { "lat": 40.8835608, "lon": -73.9824988 }, + { "lat": 40.8827645, "lon": -73.9830322 }, + { "lat": 40.8827062, "lon": -73.9830716 }, + { "lat": 40.8816655, "lon": -73.9837740 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Nordhoff Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 358225721, + "bounds": { + "minlat": 40.8823073, + "minlon": -73.9851017, + "maxlat": 40.8829569, + "maxlon": -73.9841963 + }, + "nodes": [ + 3631828078, + 3631828090, + 3631828092, + 3631833593, + 3631828082 + ], + "geometry": [ + { "lat": 40.8823073, "lon": -73.9851017 }, + { "lat": 40.8829342, "lon": -73.9846844 }, + { "lat": 40.8829549, "lon": -73.9846407 }, + { "lat": 40.8829569, "lon": -73.9845671 }, + { "lat": 40.8828049, "lon": -73.9841963 } + ], + "tags": { + "highway": "residential", + "name": "Brownstone Way" + } +}, +{ + "type": "way", + "id": 358290454, + "bounds": { + "minlat": 40.7603611, + "minlon": -73.9645392, + "maxlat": 40.7606212, + "maxlon": -73.9643559 + }, + "nodes": [ + 42424089, + 4918486789, + 7641360304 + ], + "geometry": [ + { "lat": 40.7606212, "lon": -73.9643559 }, + { "lat": 40.7605600, "lon": -73.9643979 }, + { "lat": 40.7603611, "lon": -73.9645392 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "separate", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|through", + "width": "21", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 358359374, + "bounds": { + "minlat": 40.7839947, + "minlon": -74.0149997, + "maxlat": 40.7841396, + "maxlon": -74.0146833 + }, + "nodes": [ + 103855593, + 7617909967, + 3632909735 + ], + "geometry": [ + { "lat": 40.7841396, "lon": -74.0149997 }, + { "lat": 40.7841088, "lon": -74.0149324 }, + { "lat": 40.7839947, "lon": -74.0146833 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 358375570, + "bounds": { + "minlat": 40.8268170, + "minlon": -73.9988000, + "maxlat": 40.8274063, + "maxlon": -73.9985452 + }, + "nodes": [ + 103209160, + 3633035276, + 6471088131, + 6471088128, + 3633035277, + 6471088125, + 3633035278, + 6471088127, + 6471088126, + 6471088129, + 6471088130, + 3633035279, + 3633035280 + ], + "geometry": [ + { "lat": 40.8268170, "lon": -73.9985650 }, + { "lat": 40.8268771, "lon": -73.9987319 }, + { "lat": 40.8268989, "lon": -73.9987651 }, + { "lat": 40.8269308, "lon": -73.9987893 }, + { "lat": 40.8269535, "lon": -73.9987996 }, + { "lat": 40.8270110, "lon": -73.9988000 }, + { "lat": 40.8273482, "lon": -73.9987580 }, + { "lat": 40.8273639, "lon": -73.9987514 }, + { "lat": 40.8273781, "lon": -73.9987420 }, + { "lat": 40.8273880, "lon": -73.9987313 }, + { "lat": 40.8273994, "lon": -73.9987101 }, + { "lat": 40.8274058, "lon": -73.9986820 }, + { "lat": 40.8274063, "lon": -73.9985452 } + ], + "tags": { + "highway": "service", + "name": "Kathleen Court", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 358975881, + "bounds": { + "minlat": 40.8223259, + "minlon": -73.9107011, + "maxlat": 40.8231928, + "maxlon": -73.9104637 + }, + "nodes": [ + 42761092, + 471222405, + 3637977870, + 471222406, + 3637977871, + 471222408, + 13249105778, + 42748183 + ], + "geometry": [ + { "lat": 40.8223259, "lon": -73.9107011 }, + { "lat": 40.8226364, "lon": -73.9105241 }, + { "lat": 40.8226922, "lon": -73.9104999 }, + { "lat": 40.8227511, "lon": -73.9104798 }, + { "lat": 40.8228110, "lon": -73.9104691 }, + { "lat": 40.8228709, "lon": -73.9104637 }, + { "lat": 40.8231131, "lon": -73.9104879 }, + { "lat": 40.8231928, "lon": -73.9104940 } + ], + "tags": { + "highway": "residential", + "name": "Brook Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 358978233, + "bounds": { + "minlat": 40.8181680, + "minlon": -73.9136450, + "maxlat": 40.8187691, + "maxlon": -73.9127612 + }, + "nodes": [ + 42746087, + 13249095755, + 10121168841, + 3638017326, + 3638017329, + 3638017328, + 3638017330, + 3638017327, + 42746090 + ], + "geometry": [ + { "lat": 40.8181680, "lon": -73.9136450 }, + { "lat": 40.8182105, "lon": -73.9135971 }, + { "lat": 40.8182642, "lon": -73.9135366 }, + { "lat": 40.8187529, "lon": -73.9129855 }, + { "lat": 40.8187640, "lon": -73.9129600 }, + { "lat": 40.8187686, "lon": -73.9129335 }, + { "lat": 40.8187691, "lon": -73.9129060 }, + { "lat": 40.8187661, "lon": -73.9128795 }, + { "lat": 40.8187320, "lon": -73.9127612 } + ], + "tags": { + "highway": "residential", + "name": "Bergen Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bergen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 358981319, + "bounds": { + "minlat": 40.8123010, + "minlon": -73.9146924, + "maxlat": 40.8124986, + "maxlon": -73.9140980 + }, + "nodes": [ + 3638040639, + 7694113165, + 10127019021, + 42745895 + ], + "geometry": [ + { "lat": 40.8124986, "lon": -73.9146924 }, + { "lat": 40.8124680, "lon": -73.9146022 }, + { "lat": 40.8123355, "lon": -73.9142021 }, + { "lat": 40.8123010, "lon": -73.9140980 } + ], + "tags": { + "highway": "residential", + "name": "East 146th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "146th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 359144475, + "bounds": { + "minlat": 40.8012749, + "minlon": -74.0177164, + "maxlat": 40.8021294, + "maxlon": -74.0168518 + }, + "nodes": [ + 3639121328, + 3639121329, + 3639121330, + 3639121331, + 3639121333, + 3639121334, + 3639121335, + 3639121336, + 3639121332 + ], + "geometry": [ + { "lat": 40.8012749, "lon": -74.0174112 }, + { "lat": 40.8013817, "lon": -74.0176751 }, + { "lat": 40.8014161, "lon": -74.0177164 }, + { "lat": 40.8014634, "lon": -74.0177122 }, + { "lat": 40.8020725, "lon": -74.0172844 }, + { "lat": 40.8021134, "lon": -74.0172114 }, + { "lat": 40.8021262, "lon": -74.0171521 }, + { "lat": 40.8021294, "lon": -74.0171066 }, + { "lat": 40.8020249, "lon": -74.0168518 } + ], + "tags": { + "highway": "residential", + "name": "Dane Court", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 359180981, + "bounds": { + "minlat": 40.7545580, + "minlon": -73.9757284, + "maxlat": 40.7546355, + "maxlon": -73.9757004 + }, + "nodes": [ + 11509720072, + 11509720078, + 11509720079, + 100522741 + ], + "geometry": [ + { "lat": 40.7545580, "lon": -73.9757284 }, + { "lat": 40.7545749, "lon": -73.9757188 }, + { "lat": 40.7546041, "lon": -73.9757058 }, + { "lat": 40.7546355, "lon": -73.9757004 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 359180982, + "bounds": { + "minlat": 40.7524505, + "minlon": -73.9780415, + "maxlat": 40.7543632, + "maxlon": -73.9767624 + }, + "nodes": [ + 3639381190, + 11507279895, + 11507279894, + 11507279856, + 9673654626, + 100521730, + 9140654130, + 1690448972, + 42459083, + 9140654131, + 1690448973, + 9140654132, + 100521728, + 9140654133, + 100521835 + ], + "geometry": [ + { "lat": 40.7543632, "lon": -73.9767624 }, + { "lat": 40.7543526, "lon": -73.9767787 }, + { "lat": 40.7543375, "lon": -73.9767961 }, + { "lat": 40.7543194, "lon": -73.9768115 }, + { "lat": 40.7533682, "lon": -73.9775045 }, + { "lat": 40.7526708, "lon": -73.9780174 }, + { "lat": 40.7526512, "lon": -73.9780273 }, + { "lat": 40.7526247, "lon": -73.9780390 }, + { "lat": 40.7525968, "lon": -73.9780415 }, + { "lat": 40.7525698, "lon": -73.9780384 }, + { "lat": 40.7525394, "lon": -73.9780245 }, + { "lat": 40.7525179, "lon": -73.9780059 }, + { "lat": 40.7524934, "lon": -73.9779721 }, + { "lat": 40.7524772, "lon": -73.9779455 }, + { "lat": 40.7524505, "lon": -73.9778871 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "primary", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q7137641", + "wikipedia": "en:Park Avenue Viaduct" + } +}, +{ + "type": "way", + "id": 359197608, + "bounds": { + "minlat": 40.8489471, + "minlon": -73.9740052, + "maxlat": 40.8496278, + "maxlon": -73.9735089 + }, + "nodes": [ + 5108615741, + 3639521298, + 5108615742, + 3639521297 + ], + "geometry": [ + { "lat": 40.8496278, "lon": -73.9735089 }, + { "lat": 40.8494920, "lon": -73.9736334 }, + { "lat": 40.8493414, "lon": -73.9737362 }, + { "lat": 40.8489471, "lon": -73.9740052 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 359243368, + "bounds": { + "minlat": 40.8461578, + "minlon": -73.9094859, + "maxlat": 40.8463751, + "maxlon": -73.9092964 + }, + "nodes": [ + 3639998164, + 2329022427 + ], + "geometry": [ + { "lat": 40.8463751, "lon": -73.9094859 }, + { "lat": 40.8461578, "lon": -73.9092964 } + ], + "tags": { + "highway": "residential", + "layer": "-2", + "name": "Morris Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 359244313, + "bounds": { + "minlat": 40.8462155, + "minlon": -73.9122687, + "maxlat": 40.8484427, + "maxlon": -73.9106815 + }, + "nodes": [ + 42748532, + 42740516, + 8571799215, + 13038921083, + 42748535 + ], + "geometry": [ + { "lat": 40.8462155, "lon": -73.9122687 }, + { "lat": 40.8473237, "lon": -73.9114808 }, + { "lat": 40.8483421, "lon": -73.9107534 }, + { "lat": 40.8483797, "lon": -73.9107265 }, + { "lat": 40.8484427, "lon": -73.9106815 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Townsend Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Townsend", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 359248799, + "bounds": { + "minlat": 40.8401970, + "minlon": -73.9115150, + "maxlat": 40.8406030, + "maxlon": -73.9100940 + }, + "nodes": [ + 42748477, + 13036981884, + 10034673475, + 5481864216, + 5481864322, + 13036982519, + 13036982529, + 42735867 + ], + "geometry": [ + { "lat": 40.8406030, "lon": -73.9115150 }, + { "lat": 40.8405836, "lon": -73.9114470 }, + { "lat": 40.8405669, "lon": -73.9113888 }, + { "lat": 40.8404900, "lon": -73.9111195 }, + { "lat": 40.8403184, "lon": -73.9105191 }, + { "lat": 40.8402462, "lon": -73.9102663 }, + { "lat": 40.8402045, "lon": -73.9101202 }, + { "lat": 40.8401970, "lon": -73.9100940 } + ], + "tags": { + "highway": "residential", + "name": "East 172nd Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "172nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 359257456, + "bounds": { + "minlat": 40.8387420, + "minlon": -73.9135335, + "maxlat": 40.8392443, + "maxlon": -73.9132198 + }, + "nodes": [ + 2408355551, + 5543337903, + 2408359295, + 13535816393, + 13535816394, + 2408355548 + ], + "geometry": [ + { "lat": 40.8387420, "lon": -73.9135335 }, + { "lat": 40.8387864, "lon": -73.9135031 }, + { "lat": 40.8389199, "lon": -73.9134138 }, + { "lat": 40.8390381, "lon": -73.9133403 }, + { "lat": 40.8391454, "lon": -73.9132765 }, + { "lat": 40.8392443, "lon": -73.9132198 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 359257457, + "bounds": { + "minlat": 40.8388105, + "minlon": -73.9137108, + "maxlat": 40.8392677, + "maxlon": -73.9134216 + }, + "nodes": [ + 2408357251, + 13535816397, + 13535816396, + 13535816382, + 5543337902, + 2327276587 + ], + "geometry": [ + { "lat": 40.8392677, "lon": -73.9134216 }, + { "lat": 40.8391339, "lon": -73.9135012 }, + { "lat": 40.8390106, "lon": -73.9135787 }, + { "lat": 40.8388937, "lon": -73.9136526 }, + { "lat": 40.8388529, "lon": -73.9136812 }, + { "lat": 40.8388105, "lon": -73.9137108 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 359257458, + "bounds": { + "minlat": 40.8376557, + "minlon": -73.9146443, + "maxlat": 40.8381062, + "maxlon": -73.9142394 + }, + "nodes": [ + 42741362, + 2408369223, + 13534990459, + 13534990458, + 2408369222 + ], + "geometry": [ + { "lat": 40.8381062, "lon": -73.9142394 }, + { "lat": 40.8380118, "lon": -73.9143198 }, + { "lat": 40.8379096, "lon": -73.9144087 }, + { "lat": 40.8378017, "lon": -73.9145067 }, + { "lat": 40.8376557, "lon": -73.9146443 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 359257459, + "bounds": { + "minlat": 40.8388783, + "minlon": -73.9138902, + "maxlat": 40.8394041, + "maxlon": -73.9135621 + }, + "nodes": [ + 2408355545, + 13535816389, + 13535816388, + 2408359284, + 13535816387, + 3640137902, + 5543337901, + 2408355539 + ], + "geometry": [ + { "lat": 40.8394041, "lon": -73.9135621 }, + { "lat": 40.8393057, "lon": -73.9136181 }, + { "lat": 40.8392116, "lon": -73.9136741 }, + { "lat": 40.8391368, "lon": -73.9137200 }, + { "lat": 40.8390504, "lon": -73.9137744 }, + { "lat": 40.8389627, "lon": -73.9138313 }, + { "lat": 40.8389202, "lon": -73.9138610 }, + { "lat": 40.8388783, "lon": -73.9138902 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "through|right", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 359259237, + "bounds": { + "minlat": 40.8317283, + "minlon": -73.9176090, + "maxlat": 40.8326080, + "maxlon": -73.9150066 + }, + "nodes": [ + 42747568, + 12697054960, + 13018326335, + 42731640, + 13018326348, + 13031082353, + 42747574, + 13031082331, + 7988362529, + 13031182829, + 42735846 + ], + "geometry": [ + { "lat": 40.8326080, "lon": -73.9176090 }, + { "lat": 40.8325795, "lon": -73.9175236 }, + { "lat": 40.8323537, "lon": -73.9168469 }, + { "lat": 40.8323220, "lon": -73.9167520 }, + { "lat": 40.8322974, "lon": -73.9166806 }, + { "lat": 40.8320592, "lon": -73.9159884 }, + { "lat": 40.8320260, "lon": -73.9158920 }, + { "lat": 40.8320031, "lon": -73.9158258 }, + { "lat": 40.8318898, "lon": -73.9154871 }, + { "lat": 40.8317658, "lon": -73.9151181 }, + { "lat": 40.8317283, "lon": -73.9150066 } + ], + "tags": { + "highway": "residential", + "name": "McClellan Street", + "name:etymology:wikidata": "Q310192", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mc Clellan", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 359260547, + "bounds": { + "minlat": 40.8002321, + "minlon": -73.9260947, + "maxlat": 40.8004138, + "maxlon": -73.9256711 + }, + "nodes": [ + 7734748107, + 3640160573, + 3640160570 + ], + "geometry": [ + { "lat": 40.8004138, "lon": -73.9260947 }, + { "lat": 40.8002998, "lon": -73.9258285 }, + { "lat": 40.8002321, "lon": -73.9256711 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 359260550, + "bounds": { + "minlat": 40.8000236, + "minlon": -73.9239823, + "maxlat": 40.8001625, + "maxlon": -73.9239269 + }, + "nodes": [ + 13364017907, + 13155132641, + 13155132643, + 13155132644, + 13155132640, + 9153856274 + ], + "geometry": [ + { "lat": 40.8000236, "lon": -73.9239707 }, + { "lat": 40.8000526, "lon": -73.9239397 }, + { "lat": 40.8000827, "lon": -73.9239269 }, + { "lat": 40.8001094, "lon": -73.9239294 }, + { "lat": 40.8001368, "lon": -73.9239458 }, + { "lat": 40.8001625, "lon": -73.9239823 } + ], + "tags": { + "highway": "unclassified", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 359260551, + "bounds": { + "minlat": 40.7981271, + "minlon": -73.9218506, + "maxlat": 40.7983551, + "maxlon": -73.9215621 + }, + "nodes": [ + 3607948341, + 3640160600, + 3607948340, + 3607948333, + 3640160582, + 3640160583, + 3640160584, + 3640160585, + 7937558699 + ], + "geometry": [ + { "lat": 40.7983463, "lon": -73.9215621 }, + { "lat": 40.7983551, "lon": -73.9216039 }, + { "lat": 40.7983528, "lon": -73.9216747 }, + { "lat": 40.7983337, "lon": -73.9217408 }, + { "lat": 40.7982998, "lon": -73.9217956 }, + { "lat": 40.7982545, "lon": -73.9218335 }, + { "lat": 40.7982025, "lon": -73.9218506 }, + { "lat": 40.7981491, "lon": -73.9218451 }, + { "lat": 40.7981271, "lon": -73.9218329 } + ], + "tags": { + "highway": "service", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 359264593, + "bounds": { + "minlat": 40.8252132, + "minlon": -73.9154214, + "maxlat": 40.8257710, + "maxlon": -73.9147486 + }, + "nodes": [ + 3640190317, + 8571884285, + 9917683051, + 9917683052, + 42732945 + ], + "geometry": [ + { "lat": 40.8257710, "lon": -73.9154214 }, + { "lat": 40.8252763, "lon": -73.9148643 }, + { "lat": 40.8252468, "lon": -73.9148164 }, + { "lat": 40.8252315, "lon": -73.9147888 }, + { "lat": 40.8252132, "lon": -73.9147486 } + ], + "tags": { + "highway": "residential", + "name": "East 162nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "162nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 359426527, + "bounds": { + "minlat": 40.8080250, + "minlon": -73.9923535, + "maxlat": 40.8094673, + "maxlon": -73.9912507 + }, + "nodes": [ + 3641508250, + 3641508251, + 3641508252, + 3641508253, + 3641508254, + 8817529234, + 3641508255, + 3641508256, + 3641508258, + 3641508257 + ], + "geometry": [ + { "lat": 40.8080250, "lon": -73.9923535 }, + { "lat": 40.8083288, "lon": -73.9921198 }, + { "lat": 40.8086982, "lon": -73.9918878 }, + { "lat": 40.8088815, "lon": -73.9917983 }, + { "lat": 40.8092142, "lon": -73.9917049 }, + { "lat": 40.8093045, "lon": -73.9916463 }, + { "lat": 40.8093432, "lon": -73.9916212 }, + { "lat": 40.8094163, "lon": -73.9915465 }, + { "lat": 40.8094673, "lon": -73.9914004 }, + { "lat": 40.8094589, "lon": -73.9912507 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Legend Hills Drive", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 359601580, + "bounds": { + "minlat": 40.7953639, + "minlon": -73.9968687, + "maxlat": 40.7956006, + "maxlon": -73.9955804 + }, + "nodes": [ + 3642793668, + 10020765328, + 5482013568, + 5482013574, + 5482013569, + 6888029205, + 5482013237, + 5482013573, + 3642793667 + ], + "geometry": [ + { "lat": 40.7956006, "lon": -73.9968687 }, + { "lat": 40.7955867, "lon": -73.9967931 }, + { "lat": 40.7955674, "lon": -73.9966877 }, + { "lat": 40.7954876, "lon": -73.9962538 }, + { "lat": 40.7954676, "lon": -73.9961430 }, + { "lat": 40.7954524, "lon": -73.9960601 }, + { "lat": 40.7954320, "lon": -73.9959493 }, + { "lat": 40.7953843, "lon": -73.9956904 }, + { "lat": 40.7953639, "lon": -73.9955804 } + ], + "tags": { + "highway": "residential", + "name": "Marine Road" + } +}, +{ + "type": "way", + "id": 359863728, + "bounds": { + "minlat": 40.7978001, + "minlon": -73.9208560, + "maxlat": 40.7978533, + "maxlon": -73.9202825 + }, + "nodes": [ + 3644949923, + 3644949930 + ], + "geometry": [ + { "lat": 40.7978533, "lon": -73.9208560 }, + { "lat": 40.7978001, "lon": -73.9202825 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 360115142, + "bounds": { + "minlat": 40.8110067, + "minlon": -73.9095984, + "maxlat": 40.8117861, + "maxlon": -73.9058538 + }, + "nodes": [ + 6979668991, + 9917835150, + 13247374548, + 42763797, + 13247374550, + 5487854714, + 5859955156, + 13247374534, + 42768284, + 13247374532, + 8575397004, + 42755235, + 10033557446, + 42764633 + ], + "geometry": [ + { "lat": 40.8110067, "lon": -73.9058538 }, + { "lat": 40.8110418, "lon": -73.9060352 }, + { "lat": 40.8111933, "lon": -73.9067537 }, + { "lat": 40.8112143, "lon": -73.9068554 }, + { "lat": 40.8112317, "lon": -73.9069409 }, + { "lat": 40.8113035, "lon": -73.9072943 }, + { "lat": 40.8113803, "lon": -73.9076718 }, + { "lat": 40.8113813, "lon": -73.9076768 }, + { "lat": 40.8113990, "lon": -73.9077640 }, + { "lat": 40.8114192, "lon": -73.9078584 }, + { "lat": 40.8115738, "lon": -73.9085819 }, + { "lat": 40.8115951, "lon": -73.9086817 }, + { "lat": 40.8117610, "lon": -73.9094778 }, + { "lat": 40.8117861, "lon": -73.9095984 } + ], + "tags": { + "highway": "residential", + "name": "East 147th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "147th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 360115143, + "bounds": { + "minlat": 40.8132432, + "minlon": -73.9090809, + "maxlat": 40.8160301, + "maxlon": -73.9080787 + }, + "nodes": [ + 42764638, + 9917835171, + 7669422140, + 11807677217, + 13809174739, + 42764641, + 5482340557, + 13809174737, + 42758618, + 13809174735, + 11807677218, + 12537097666, + 42764645 + ], + "geometry": [ + { "lat": 40.8132432, "lon": -73.9090809 }, + { "lat": 40.8133523, "lon": -73.9090404 }, + { "lat": 40.8134902, "lon": -73.9089891 }, + { "lat": 40.8142776, "lon": -73.9087100 }, + { "lat": 40.8145585, "lon": -73.9086105 }, + { "lat": 40.8146445, "lon": -73.9085800 }, + { "lat": 40.8146987, "lon": -73.9085593 }, + { "lat": 40.8150324, "lon": -73.9084315 }, + { "lat": 40.8151104, "lon": -73.9084017 }, + { "lat": 40.8151459, "lon": -73.9083892 }, + { "lat": 40.8153991, "lon": -73.9083003 }, + { "lat": 40.8159624, "lon": -73.9081025 }, + { "lat": 40.8160301, "lon": -73.9080787 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "residential", + "name": "Jackson Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jackson", + "tiger:name_type": "Ave", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 360122490, + "bounds": { + "minlat": 40.8102636, + "minlon": -73.9071719, + "maxlat": 40.8103840, + "maxlon": -73.9069621 + }, + "nodes": [ + 3647228876, + 13247432516, + 3647228877 + ], + "geometry": [ + { "lat": 40.8103840, "lon": -73.9071719 }, + { "lat": 40.8103232, "lon": -73.9070660 }, + { "lat": 40.8102636, "lon": -73.9069621 } + ], + "tags": { + "highway": "residential", + "name": "Tinton Avenue", + "name:etymology:wikidata": "Q2243491", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tinton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 360122491, + "bounds": { + "minlat": 40.8102636, + "minlon": -73.9069621, + "maxlat": 40.8110067, + "maxlon": -73.9058538 + }, + "nodes": [ + 3647228877, + 3647228871, + 7370993952, + 13247374565, + 42766934, + 13774637987, + 6979668991 + ], + "geometry": [ + { "lat": 40.8102636, "lon": -73.9069621 }, + { "lat": 40.8102947, "lon": -73.9069171 }, + { "lat": 40.8105258, "lon": -73.9065595 }, + { "lat": 40.8107215, "lon": -73.9062572 }, + { "lat": 40.8107598, "lon": -73.9061981 }, + { "lat": 40.8108560, "lon": -73.9060639 }, + { "lat": 40.8110067, "lon": -73.9058538 } + ], + "tags": { + "bicycle": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Southern Boulevard", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Southern", + "tiger:name_type": "Blvd", + "tiger:zip_left": "10458", + "tiger:zip_right": "10460", + "wikidata": "Q14707315", + "wikipedia": "en:Southern Boulevard (Bronx)" + } +}, +{ + "type": "way", + "id": 360122492, + "bounds": { + "minlat": 40.8099370, + "minlon": -73.9072600, + "maxlat": 40.8102636, + "maxlon": -73.9069621 + }, + "nodes": [ + 42762533, + 13247432504, + 3647228874, + 3647228872, + 3647228873, + 3647228877 + ], + "geometry": [ + { "lat": 40.8099370, "lon": -73.9072600 }, + { "lat": 40.8099975, "lon": -73.9072184 }, + { "lat": 40.8100592, "lon": -73.9071760 }, + { "lat": 40.8101526, "lon": -73.9070982 }, + { "lat": 40.8102307, "lon": -73.9070097 }, + { "lat": 40.8102636, "lon": -73.9069621 } + ], + "tags": { + "bicycle": "designated", + "highway": "secondary", + "name": "Southern Boulevard", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Southern", + "tiger:name_type": "Blvd", + "tiger:zip_left": "10458", + "tiger:zip_right": "10460", + "wikidata": "Q14707315", + "wikipedia": "en:Southern Boulevard (Bronx)" + } +}, +{ + "type": "way", + "id": 360142250, + "bounds": { + "minlat": 40.8133438, + "minlon": -73.9267219, + "maxlat": 40.8157174, + "maxlon": -73.9250775 + }, + "nodes": [ + 42775133, + 13040633209, + 42743507, + 8374719095, + 42775135, + 8571918537, + 42733948 + ], + "geometry": [ + { "lat": 40.8133438, "lon": -73.9267219 }, + { "lat": 40.8134021, "lon": -73.9266833 }, + { "lat": 40.8144390, "lon": -73.9259548 }, + { "lat": 40.8144473, "lon": -73.9259490 }, + { "lat": 40.8151495, "lon": -73.9254639 }, + { "lat": 40.8156096, "lon": -73.9251508 }, + { "lat": 40.8157174, "lon": -73.9250775 } + ], + "tags": { + "highway": "residential", + "name": "Rider Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Rider", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 360142251, + "bounds": { + "minlat": 40.8130396, + "minlon": -73.9299839, + "maxlat": 40.8131443, + "maxlon": -73.9298854 + }, + "nodes": [ + 42741467, + 9903106234, + 13005731175, + 5214547507 + ], + "geometry": [ + { "lat": 40.8130396, "lon": -73.9298854 }, + { "lat": 40.8130912, "lon": -73.9299350 }, + { "lat": 40.8131129, "lon": -73.9299550 }, + { "lat": 40.8131443, "lon": -73.9299839 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 360142417, + "bounds": { + "minlat": 40.8158334, + "minlon": -73.9255266, + "maxlat": 40.8165065, + "maxlon": -73.9252185 + }, + "nodes": [ + 3647451368, + 42743884 + ], + "geometry": [ + { "lat": 40.8158334, "lon": -73.9255266 }, + { "lat": 40.8165065, "lon": -73.9252185 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Canal Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Canal", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 360142844, + "bounds": { + "minlat": 40.8150510, + "minlon": -73.9247752, + "maxlat": 40.8156393, + "maxlon": -73.9242590 + }, + "nodes": [ + 2795084767, + 12040837247, + 42733951 + ], + "geometry": [ + { "lat": 40.8156393, "lon": -73.9247752 }, + { "lat": 40.8151530, "lon": -73.9243485 }, + { "lat": 40.8150510, "lon": -73.9242590 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 143rd Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "143rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 360408840, + "bounds": { + "minlat": 40.7217185, + "minlon": -73.9607440, + "maxlat": 40.7218842, + "maxlon": -73.9605308 + }, + "nodes": [ + 3649553893, + 3649553916, + 3649553848, + 3649553908, + 3649553904, + 3649553897, + 3649553920, + 3649553906, + 3649553918, + 3649553909, + 3649553872, + 3649553893 + ], + "geometry": [ + { "lat": 40.7218842, "lon": -73.9605925 }, + { "lat": 40.7217429, "lon": -73.9607440 }, + { "lat": 40.7217277, "lon": -73.9607185 }, + { "lat": 40.7217185, "lon": -73.9606703 }, + { "lat": 40.7217195, "lon": -73.9606139 }, + { "lat": 40.7217338, "lon": -73.9605764 }, + { "lat": 40.7217592, "lon": -73.9605415 }, + { "lat": 40.7218039, "lon": -73.9605308 }, + { "lat": 40.7218456, "lon": -73.9605496 }, + { "lat": 40.7218608, "lon": -73.9605657 }, + { "lat": 40.7218717, "lon": -73.9605798 }, + { "lat": 40.7218842, "lon": -73.9605925 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 360408853, + "bounds": { + "minlat": 40.7226796, + "minlon": -73.9624848, + "maxlat": 40.7227305, + "maxlon": -73.9623343 + }, + "nodes": [ + 2319695140, + 2319695142 + ], + "geometry": [ + { "lat": 40.7227305, "lon": -73.9624848 }, + { "lat": 40.7226796, "lon": -73.9623343 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 360576762, + "bounds": { + "minlat": 40.8256998, + "minlon": -73.9139702, + "maxlat": 40.8260375, + "maxlon": -73.9134466 + }, + "nodes": [ + 42739726, + 42750614 + ], + "geometry": [ + { "lat": 40.8256998, "lon": -73.9139702 }, + { "lat": 40.8260375, "lon": -73.9134466 } + ], + "tags": { + "highway": "residential", + "name": "Courtlandt Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Courtland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 360948644, + "bounds": { + "minlat": 40.8620884, + "minlon": -74.0079650, + "maxlat": 40.8622845, + "maxlon": -74.0079005 + }, + "nodes": [ + 3654867020, + 3654867013 + ], + "geometry": [ + { "lat": 40.8622845, "lon": -74.0079650 }, + { "lat": 40.8620884, "lon": -74.0079005 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 360948645, + "bounds": { + "minlat": 40.8617425, + "minlon": -74.0090335, + "maxlat": 40.8621618, + "maxlon": -74.0065264 + }, + "nodes": [ + 3654867008, + 3654867006, + 3654867005, + 13167768988, + 3654867002, + 3654867001, + 3654867003, + 10294311035, + 10294311034, + 10294311033, + 10294311032, + 10294311031, + 10294311030, + 13167768996, + 10294311029, + 3654867013, + 10294311018, + 13167768997, + 10294311028, + 10294311027, + 10294311026, + 10294311025, + 10294311024, + 10294311023, + 10294311022, + 10294311021, + 10294311020, + 10294311019 + ], + "geometry": [ + { "lat": 40.8619217, "lon": -74.0090108 }, + { "lat": 40.8618890, "lon": -74.0090335 }, + { "lat": 40.8618630, "lon": -74.0090321 }, + { "lat": 40.8618131, "lon": -74.0089816 }, + { "lat": 40.8617478, "lon": -74.0089155 }, + { "lat": 40.8617425, "lon": -74.0088818 }, + { "lat": 40.8617489, "lon": -74.0088566 }, + { "lat": 40.8618053, "lon": -74.0087496 }, + { "lat": 40.8618601, "lon": -74.0086343 }, + { "lat": 40.8619047, "lon": -74.0085277 }, + { "lat": 40.8619509, "lon": -74.0083956 }, + { "lat": 40.8620051, "lon": -74.0082259 }, + { "lat": 40.8620493, "lon": -74.0080677 }, + { "lat": 40.8620763, "lon": -74.0079605 }, + { "lat": 40.8620827, "lon": -74.0079349 }, + { "lat": 40.8620884, "lon": -74.0079005 }, + { "lat": 40.8620950, "lon": -74.0078671 }, + { "lat": 40.8621027, "lon": -74.0078283 }, + { "lat": 40.8621096, "lon": -74.0077566 }, + { "lat": 40.8621263, "lon": -74.0075748 }, + { "lat": 40.8621395, "lon": -74.0073435 }, + { "lat": 40.8621324, "lon": -74.0069928 }, + { "lat": 40.8621294, "lon": -74.0068238 }, + { "lat": 40.8621370, "lon": -74.0067615 }, + { "lat": 40.8621578, "lon": -74.0066998 }, + { "lat": 40.8621618, "lon": -74.0066267 }, + { "lat": 40.8621334, "lon": -74.0065590 }, + { "lat": 40.8621122, "lon": -74.0065264 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 360971115, + "bounds": { + "minlat": 40.8670601, + "minlon": -73.9735574, + "maxlat": 40.8672733, + "maxlon": -73.9731151 + }, + "nodes": [ + 7373684555, + 7373684560 + ], + "geometry": [ + { "lat": 40.8672733, "lon": -73.9735574 }, + { "lat": 40.8670601, "lon": -73.9731151 } + ], + "tags": { + "highway": "service", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 360971116, + "bounds": { + "minlat": 40.8677000, + "minlon": -73.9734042, + "maxlat": 40.8681446, + "maxlon": -73.9730788 + }, + "nodes": [ + 3655086525, + 3655086215, + 3655086547, + 3655086530, + 3655086210, + 3655086532 + ], + "geometry": [ + { "lat": 40.8681446, "lon": -73.9732447 }, + { "lat": 40.8680446, "lon": -73.9730879 }, + { "lat": 40.8679627, "lon": -73.9730788 }, + { "lat": 40.8678174, "lon": -73.9731362 }, + { "lat": 40.8677477, "lon": -73.9732505 }, + { "lat": 40.8677000, "lon": -73.9734042 } + ], + "tags": { + "highway": "service", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 360971117, + "bounds": { + "minlat": 40.8555007, + "minlon": -73.9835651, + "maxlat": 40.8570038, + "maxlon": -73.9820383 + }, + "nodes": [ + 299171734, + 8668349679, + 299171735, + 299171742, + 299171744 + ], + "geometry": [ + { "lat": 40.8570038, "lon": -73.9820383 }, + { "lat": 40.8567122, "lon": -73.9823345 }, + { "lat": 40.8565610, "lon": -73.9824880 }, + { "lat": 40.8560557, "lon": -73.9830014 }, + { "lat": 40.8555007, "lon": -73.9835651 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 360971118, + "bounds": { + "minlat": 40.8572496, + "minlon": -73.9816100, + "maxlat": 40.8578810, + "maxlon": -73.9805046 + }, + "nodes": [ + 299172195, + 7921587253, + 299172114, + 7921587246, + 7921587277, + 11224443187, + 299172182, + 7921587271, + 299121016, + 7921587264, + 7921587257, + 299120871 + ], + "geometry": [ + { "lat": 40.8572496, "lon": -73.9816100 }, + { "lat": 40.8573271, "lon": -73.9815039 }, + { "lat": 40.8574008, "lon": -73.9813972 }, + { "lat": 40.8574721, "lon": -73.9812884 }, + { "lat": 40.8575424, "lon": -73.9811751 }, + { "lat": 40.8575563, "lon": -73.9811512 }, + { "lat": 40.8576096, "lon": -73.9810594 }, + { "lat": 40.8576728, "lon": -73.9809451 }, + { "lat": 40.8577329, "lon": -73.9808294 }, + { "lat": 40.8577936, "lon": -73.9807035 }, + { "lat": 40.8578490, "lon": -73.9805822 }, + { "lat": 40.8578810, "lon": -73.9805046 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "United States Highway 1", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 360971119, + "bounds": { + "minlat": 40.8678834, + "minlon": -73.9736445, + "maxlat": 40.8684500, + "maxlon": -73.9732638 + }, + "nodes": [ + 1760541819, + 1760541820, + 1760541822, + 1760541823 + ], + "geometry": [ + { "lat": 40.8678834, "lon": -73.9734658 }, + { "lat": 40.8680770, "lon": -73.9736445 }, + { "lat": 40.8684065, "lon": -73.9735149 }, + { "lat": 40.8684500, "lon": -73.9732638 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 360971120, + "bounds": { + "minlat": 40.8673159, + "minlon": -73.9735423, + "maxlat": 40.8673883, + "maxlon": -73.9732754 + }, + "nodes": [ + 7373684554, + 3655086541, + 3655086556, + 11070959251 + ], + "geometry": [ + { "lat": 40.8673159, "lon": -73.9735423 }, + { "lat": 40.8673186, "lon": -73.9734445 }, + { "lat": 40.8673429, "lon": -73.9733372 }, + { "lat": 40.8673883, "lon": -73.9732754 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 361065284, + "bounds": { + "minlat": 40.8187458, + "minlon": -73.9973980, + "maxlat": 40.8210510, + "maxlon": -73.9930440 + }, + "nodes": [ + 103166211, + 103239004, + 13524700352, + 440208163 + ], + "geometry": [ + { "lat": 40.8210510, "lon": -73.9973980 }, + { "lat": 40.8202328, "lon": -73.9958897 }, + { "lat": 40.8187854, "lon": -73.9931199 }, + { "lat": 40.8187458, "lon": -73.9930440 } + ], + "tags": { + "highway": "residential", + "name": "Morningside Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morningside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 361075845, + "bounds": { + "minlat": 40.7192695, + "minlon": -73.9778939, + "maxlat": 40.7203586, + "maxlon": -73.9764889 + }, + "nodes": [ + 3884582044, + 3998741456, + 4301308525, + 3998741455, + 3783088913, + 4219827527, + 3655974176 + ], + "geometry": [ + { "lat": 40.7198218, "lon": -73.9778939 }, + { "lat": 40.7203586, "lon": -73.9774751 }, + { "lat": 40.7203050, "lon": -73.9773472 }, + { "lat": 40.7199454, "lon": -73.9764889 }, + { "lat": 40.7193676, "lon": -73.9767035 }, + { "lat": 40.7193224, "lon": -73.9767181 }, + { "lat": 40.7192695, "lon": -73.9767345 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Lillian Wald Drive", + "name:etymology:wikidata": "Q515387", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 361075988, + "bounds": { + "minlat": 40.7484820, + "minlon": -73.9166548, + "maxlat": 40.7485887, + "maxlon": -73.9157322 + }, + "nodes": [ + 3655975943, + 10762233989, + 7530789559, + 10762233991, + 3655975942 + ], + "geometry": [ + { "lat": 40.7485887, "lon": -73.9166548 }, + { "lat": 40.7485801, "lon": -73.9165806 }, + { "lat": 40.7485385, "lon": -73.9162201 }, + { "lat": 40.7484939, "lon": -73.9158354 }, + { "lat": 40.7484820, "lon": -73.9157322 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 361076034, + "bounds": { + "minlat": 40.7347825, + "minlon": -73.9392227, + "maxlat": 40.7351019, + "maxlon": -73.9390101 + }, + "nodes": [ + 3655976264, + 3655976263 + ], + "geometry": [ + { "lat": 40.7351019, "lon": -73.9392227 }, + { "lat": 40.7347825, "lon": -73.9390101 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 361076036, + "bounds": { + "minlat": 40.7346948, + "minlon": -73.9392650, + "maxlat": 40.7349656, + "maxlon": -73.9385695 + }, + "nodes": [ + 3655976262, + 3655976263, + 11211159758, + 42856255 + ], + "geometry": [ + { "lat": 40.7346948, "lon": -73.9392650 }, + { "lat": 40.7347825, "lon": -73.9390101 }, + { "lat": 40.7349352, "lon": -73.9386428 }, + { "lat": 40.7349656, "lon": -73.9385695 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 361076114, + "bounds": { + "minlat": 40.8110394, + "minlon": -73.9906374, + "maxlat": 40.8112831, + "maxlon": -73.9903154 + }, + "nodes": [ + 3655976703, + 3655976705, + 3655976707, + 3655976709, + 3655976711, + 3655976713, + 3655976715, + 3655976717, + 3655976716, + 3655976714, + 3655976712, + 3655976710, + 3655976708, + 10821057038, + 3655976706, + 3655976704, + 3655976702, + 3655976703 + ], + "geometry": [ + { "lat": 40.8110467, "lon": -73.9904210 }, + { "lat": 40.8110715, "lon": -73.9903673 }, + { "lat": 40.8111100, "lon": -73.9903302 }, + { "lat": 40.8111562, "lon": -73.9903154 }, + { "lat": 40.8112032, "lon": -73.9903251 }, + { "lat": 40.8112439, "lon": -73.9903578 }, + { "lat": 40.8112719, "lon": -73.9904086 }, + { "lat": 40.8112831, "lon": -73.9904697 }, + { "lat": 40.8112758, "lon": -73.9905319 }, + { "lat": 40.8112510, "lon": -73.9905856 }, + { "lat": 40.8112126, "lon": -73.9906226 }, + { "lat": 40.8111663, "lon": -73.9906374 }, + { "lat": 40.8111193, "lon": -73.9906277 }, + { "lat": 40.8111080, "lon": -73.9906186 }, + { "lat": 40.8110787, "lon": -73.9905950 }, + { "lat": 40.8110506, "lon": -73.9905442 }, + { "lat": 40.8110394, "lon": -73.9904831 }, + { "lat": 40.8110467, "lon": -73.9904210 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 361076115, + "bounds": { + "minlat": 40.8116285, + "minlon": -73.9906383, + "maxlat": 40.8117176, + "maxlon": -73.9903738 + }, + "nodes": [ + 3655976720, + 3655976719 + ], + "geometry": [ + { "lat": 40.8117176, "lon": -73.9906383 }, + { "lat": 40.8116285, "lon": -73.9903738 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 361076116, + "bounds": { + "minlat": 40.8116285, + "minlon": -73.9905478, + "maxlat": 40.8118526, + "maxlon": -73.9903217 + }, + "nodes": [ + 3655976719, + 3655976721, + 3655976722, + 3655976723 + ], + "geometry": [ + { "lat": 40.8116285, "lon": -73.9903738 }, + { "lat": 40.8117231, "lon": -73.9903217 }, + { "lat": 40.8118020, "lon": -73.9903847 }, + { "lat": 40.8118526, "lon": -73.9905478 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 361078731, + "bounds": { + "minlat": 40.7004884, + "minlon": -73.9762418, + "maxlat": 40.7015548, + "maxlon": -73.9755024 + }, + "nodes": [ + 3656001501, + 3656001503 + ], + "geometry": [ + { "lat": 40.7004884, "lon": -73.9762418 }, + { "lat": 40.7015548, "lon": -73.9755024 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "4th Street" + } +}, +{ + "type": "way", + "id": 361084613, + "bounds": { + "minlat": 40.7644094, + "minlon": -74.0199584, + "maxlat": 40.7646183, + "maxlon": -74.0190796 + }, + "nodes": [ + 307870581, + 10795374672, + 10795374671, + 307870582, + 10795374670, + 10795374666, + 10795374667, + 10795374668, + 10795374669, + 10795374664, + 10795374663, + 12320029181, + 7297001520 + ], + "geometry": [ + { "lat": 40.7644996, "lon": -74.0190796 }, + { "lat": 40.7644727, "lon": -74.0191271 }, + { "lat": 40.7644458, "lon": -74.0191814 }, + { "lat": 40.7644279, "lon": -74.0192356 }, + { "lat": 40.7644165, "lon": -74.0192992 }, + { "lat": 40.7644101, "lon": -74.0193592 }, + { "lat": 40.7644094, "lon": -74.0194176 }, + { "lat": 40.7644145, "lon": -74.0194545 }, + { "lat": 40.7644262, "lon": -74.0194993 }, + { "lat": 40.7644390, "lon": -74.0195315 }, + { "lat": 40.7646035, "lon": -74.0199277 }, + { "lat": 40.7646108, "lon": -74.0199429 }, + { "lat": 40.7646183, "lon": -74.0199584 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "name": "Waterfront Park Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 361084923, + "bounds": { + "minlat": 40.7462902, + "minlon": -73.9123419, + "maxlat": 40.7464199, + "maxlon": -73.9112140 + }, + "nodes": [ + 3656047343, + 10762233909, + 3656047344 + ], + "geometry": [ + { "lat": 40.7462902, "lon": -73.9112140 }, + { "lat": 40.7464117, "lon": -73.9122709 }, + { "lat": 40.7464199, "lon": -73.9123419 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 361084924, + "bounds": { + "minlat": 40.7465850, + "minlon": -73.9115942, + "maxlat": 40.7472275, + "maxlon": -73.9114731 + }, + "nodes": [ + 3656047345, + 10762233911, + 3656047346 + ], + "geometry": [ + { "lat": 40.7465850, "lon": -73.9115942 }, + { "lat": 40.7471498, "lon": -73.9114877 }, + { "lat": 40.7472275, "lon": -73.9114731 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 361091317, + "bounds": { + "minlat": 40.8338931, + "minlon": -73.9716865, + "maxlat": 40.8344414, + "maxlon": -73.9710858 + }, + "nodes": [ + 3656109229, + 3656109227, + 5362445787, + 5362445792, + 5362445786, + 5362445785, + 5362445790, + 3656109230 + ], + "geometry": [ + { "lat": 40.8340027, "lon": -73.9716865 }, + { "lat": 40.8343964, "lon": -73.9714505 }, + { "lat": 40.8344314, "lon": -73.9713788 }, + { "lat": 40.8344414, "lon": -73.9713071 }, + { "lat": 40.8343826, "lon": -73.9710858 }, + { "lat": 40.8343004, "lon": -73.9711153 }, + { "lat": 40.8342263, "lon": -73.9711555 }, + { "lat": 40.8338931, "lon": -73.9713405 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 361091318, + "bounds": { + "minlat": 40.8338931, + "minlon": -73.9716865, + "maxlat": 40.8340027, + "maxlon": -73.9713405 + }, + "nodes": [ + 3656109229, + 3656109230 + ], + "geometry": [ + { "lat": 40.8340027, "lon": -73.9716865 }, + { "lat": 40.8338931, "lon": -73.9713405 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 361091319, + "bounds": { + "minlat": 40.8337868, + "minlon": -73.9713935, + "maxlat": 40.8338931, + "maxlon": -73.9713405 + }, + "nodes": [ + 3656109230, + 3656109225 + ], + "geometry": [ + { "lat": 40.8338931, "lon": -73.9713405 }, + { "lat": 40.8337868, "lon": -73.9713935 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 361091320, + "bounds": { + "minlat": 40.8339057, + "minlon": -73.9719667, + "maxlat": 40.8339969, + "maxlon": -73.9717188 + }, + "nodes": [ + 5362445789, + 5362445788, + 3656109226 + ], + "geometry": [ + { "lat": 40.8339969, "lon": -73.9719667 }, + { "lat": 40.8339796, "lon": -73.9719239 }, + { "lat": 40.8339057, "lon": -73.9717188 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 361091321, + "bounds": { + "minlat": 40.8335258, + "minlon": -73.9717188, + "maxlat": 40.8343355, + "maxlon": -73.9702086 + }, + "nodes": [ + 3656109226, + 3656109225, + 6765224395, + 3656109228, + 3656108624 + ], + "geometry": [ + { "lat": 40.8339057, "lon": -73.9717188 }, + { "lat": 40.8337868, "lon": -73.9713935 }, + { "lat": 40.8335437, "lon": -73.9707046 }, + { "lat": 40.8335258, "lon": -73.9706539 }, + { "lat": 40.8343355, "lon": -73.9702086 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 361091322, + "bounds": { + "minlat": 40.8343355, + "minlon": -73.9714594, + "maxlat": 40.8347418, + "maxlon": -73.9701613 + }, + "nodes": [ + 3656108624, + 3656109232, + 3656108623, + 5720061661, + 7672312200, + 2349731173, + 103093404 + ], + "geometry": [ + { "lat": 40.8343355, "lon": -73.9702086 }, + { "lat": 40.8344171, "lon": -73.9701613 }, + { "lat": 40.8346322, "lon": -73.9708854 }, + { "lat": 40.8346496, "lon": -73.9709451 }, + { "lat": 40.8346570, "lon": -73.9709810 }, + { "lat": 40.8347360, "lon": -73.9713629 }, + { "lat": 40.8347418, "lon": -73.9714594 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 361091333, + "bounds": { + "minlat": 40.8334799, + "minlon": -73.9706539, + "maxlat": 40.8335258, + "maxlon": -73.9704147 + }, + "nodes": [ + 3656109228, + 6765224451, + 3656108882 + ], + "geometry": [ + { "lat": 40.8335258, "lon": -73.9706539 }, + { "lat": 40.8334799, "lon": -73.9704861 }, + { "lat": 40.8335089, "lon": -73.9704147 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 361091334, + "bounds": { + "minlat": 40.8335089, + "minlon": -73.9704147, + "maxlat": 40.8344171, + "maxlon": -73.9699679 + }, + "nodes": [ + 3656108882, + 6765224450, + 3656108883, + 3656109232 + ], + "geometry": [ + { "lat": 40.8335089, "lon": -73.9704147 }, + { "lat": 40.8343205, "lon": -73.9699679 }, + { "lat": 40.8343628, "lon": -73.9699900 }, + { "lat": 40.8344171, "lon": -73.9701613 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 361091603, + "bounds": { + "minlat": 40.8324409, + "minlon": -73.9722112, + "maxlat": 40.8336637, + "maxlon": -73.9718167 + }, + "nodes": [ + 10752210028, + 3656112555, + 3656112557, + 6765201740 + ], + "geometry": [ + { "lat": 40.8324409, "lon": -73.9722112 }, + { "lat": 40.8326933, "lon": -73.9721871 }, + { "lat": 40.8330908, "lon": -73.9720767 }, + { "lat": 40.8336637, "lon": -73.9718167 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 361401709, + "bounds": { + "minlat": 40.7108209, + "minlon": -74.0077638, + "maxlat": 40.7115115, + "maxlon": -74.0067715 + }, + "nodes": [ + 3658821413, + 8262936600, + 12304045195, + 8281922071, + 3658821414 + ], + "geometry": [ + { "lat": 40.7108209, "lon": -74.0077638 }, + { "lat": 40.7108470, "lon": -74.0077261 }, + { "lat": 40.7114558, "lon": -74.0068529 }, + { "lat": 40.7114691, "lon": -74.0068338 }, + { "lat": 40.7115115, "lon": -74.0067715 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Theatre Alley", + "name:etymology:wikidata": "Q7138090", + "name:ko": "시어터 앨리", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "service": "alley", + "surface": "asphalt", + "wikidata": "Q43082456", + "wikipedia": "en:Theatre Alley" + } +}, +{ + "type": "way", + "id": 361458097, + "bounds": { + "minlat": 40.7834656, + "minlon": -74.0038389, + "maxlat": 40.7852852, + "maxlon": -74.0021202 + }, + "nodes": [ + 3659304021, + 1793478693, + 1793478694, + 7081594134, + 308679541, + 308627956, + 1793478695, + 3659305511, + 4068469828, + 5555494179, + 5555494197, + 308650399 + ], + "geometry": [ + { "lat": 40.7834656, "lon": -74.0038389 }, + { "lat": 40.7835406, "lon": -74.0037725 }, + { "lat": 40.7836405, "lon": -74.0036630 }, + { "lat": 40.7837327, "lon": -74.0035157 }, + { "lat": 40.7839312, "lon": -74.0032180 }, + { "lat": 40.7839709, "lon": -74.0031416 }, + { "lat": 40.7842797, "lon": -74.0028549 }, + { "lat": 40.7846697, "lon": -74.0025533 }, + { "lat": 40.7850291, "lon": -74.0023004 }, + { "lat": 40.7850653, "lon": -74.0022749 }, + { "lat": 40.7851821, "lon": -74.0021927 }, + { "lat": 40.7852852, "lon": -74.0021202 } + ], + "tags": { + "highway": "residential", + "name": "Avenue at Port Imperial", + "source:name": "TIGER" + } +}, +{ + "type": "way", + "id": 361458098, + "bounds": { + "minlat": 40.7820623, + "minlon": -74.0057279, + "maxlat": 40.7837218, + "maxlon": -74.0045525 + }, + "nodes": [ + 308679581, + 6634996964, + 308679580, + 3659304013 + ], + "geometry": [ + { "lat": 40.7837218, "lon": -74.0057279 }, + { "lat": 40.7836200, "lon": -74.0056563 }, + { "lat": 40.7826311, "lon": -74.0049604 }, + { "lat": 40.7820623, "lon": -74.0045525 } + ], + "tags": { + "highway": "residential", + "name": "Riverwalk Place" + } +}, +{ + "type": "way", + "id": 361458174, + "bounds": { + "minlat": 40.7846697, + "minlon": -74.0028141, + "maxlat": 40.7848333, + "maxlon": -74.0025533 + }, + "nodes": [ + 3659305512, + 3659305511 + ], + "geometry": [ + { "lat": 40.7848333, "lon": -74.0028141 }, + { "lat": 40.7846697, "lon": -74.0025533 } + ], + "tags": { + "highway": "residential", + "name": "Kinston Court" + } +}, +{ + "type": "way", + "id": 361458175, + "bounds": { + "minlat": 40.7843659, + "minlon": -74.0025533, + "maxlat": 40.7846697, + "maxlon": -74.0020800 + }, + "nodes": [ + 3659305511, + 3659305509 + ], + "geometry": [ + { "lat": 40.7846697, "lon": -74.0025533 }, + { "lat": 40.7843659, "lon": -74.0020800 } + ], + "tags": { + "highway": "residential", + "name": "Newburgh Court" + } +}, +{ + "type": "way", + "id": 361458176, + "bounds": { + "minlat": 40.7842797, + "minlon": -74.0032037, + "maxlat": 40.7844766, + "maxlon": -74.0028549 + }, + "nodes": [ + 1793478695, + 3659305510 + ], + "geometry": [ + { "lat": 40.7842797, "lon": -74.0028549 }, + { "lat": 40.7844766, "lon": -74.0032037 } + ], + "tags": { + "highway": "residential", + "name": "North Park Court" + } +}, +{ + "type": "way", + "id": 361459444, + "bounds": { + "minlat": 40.8253341, + "minlon": -73.9979048, + "maxlat": 40.8259343, + "maxlon": -73.9971306 + }, + "nodes": [ + 3659315911, + 3659315912, + 3659315914, + 3659315916, + 3659315918, + 3659315919, + 3659315920, + 3659315921, + 3659315922, + 3659315924, + 3659316226, + 3659316227, + 3659316225, + 3659315923, + 3659315917, + 6964814872, + 3659315915, + 3659315913 + ], + "geometry": [ + { "lat": 40.8253341, "lon": -73.9976838 }, + { "lat": 40.8254104, "lon": -73.9976206 }, + { "lat": 40.8254620, "lon": -73.9975323 }, + { "lat": 40.8255530, "lon": -73.9973602 }, + { "lat": 40.8256095, "lon": -73.9972882 }, + { "lat": 40.8256776, "lon": -73.9972360 }, + { "lat": 40.8257894, "lon": -73.9971484 }, + { "lat": 40.8258337, "lon": -73.9971306 }, + { "lat": 40.8258718, "lon": -73.9971363 }, + { "lat": 40.8259091, "lon": -73.9971758 }, + { "lat": 40.8259306, "lon": -73.9972270 }, + { "lat": 40.8259343, "lon": -73.9972738 }, + { "lat": 40.8259261, "lon": -73.9973145 }, + { "lat": 40.8258935, "lon": -73.9973526 }, + { "lat": 40.8255973, "lon": -73.9976240 }, + { "lat": 40.8255125, "lon": -73.9977068 }, + { "lat": 40.8254785, "lon": -73.9977736 }, + { "lat": 40.8254619, "lon": -73.9979048 } + ], + "tags": { + "highway": "service", + "name": "Grand Ridge Drive", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 361462468, + "bounds": { + "minlat": 40.8398710, + "minlon": -73.9760360, + "maxlat": 40.8403739, + "maxlon": -73.9751436 + }, + "nodes": [ + 7292367113, + 5449336808, + 5449336807, + 3659337273, + 3659337272, + 7292367110, + 103235765 + ], + "geometry": [ + { "lat": 40.8403739, "lon": -73.9751689 }, + { "lat": 40.8403609, "lon": -73.9751436 }, + { "lat": 40.8402947, "lon": -73.9751673 }, + { "lat": 40.8400132, "lon": -73.9753881 }, + { "lat": 40.8398710, "lon": -73.9755639 }, + { "lat": 40.8401058, "lon": -73.9759515 }, + { "lat": 40.8401570, "lon": -73.9760360 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 362157043, + "bounds": { + "minlat": 40.7717299, + "minlon": -73.9860689, + "maxlat": 40.7740591, + "maxlon": -73.9823924 + }, + "nodes": [ + 3369597112, + 10211295976, + 10211295961, + 10211295962, + 9902106771, + 3369582818, + 7246154632, + 3369597097, + 10211295997, + 3369597101, + 10211295964, + 8657435432, + 10221824867, + 10211295965, + 10221824864, + 10221824870, + 10221824865, + 3369597102, + 10211295966, + 10211295993, + 10211296000, + 10211295994, + 10211295998, + 10211295995, + 10211295996, + 5117972567, + 3369597104, + 5117963650, + 10211295963, + 5117963658, + 10211295956, + 10211295975, + 3369597111, + 3369597115, + 10075060214, + 3369597118, + 10075060215, + 3369597116, + 7564652635, + 8908553042, + 7564652636, + 10046543182, + 12852256586, + 3369597723, + 3369597711, + 3369597714, + 3369597715, + 3369597716, + 3369597719, + 3369597722, + 5118031091, + 3369597710, + 6456605727, + 6463515509, + 7449177975, + 7449177974, + 6463515508, + 6463515512, + 6463515507, + 6463515506, + 6463515511, + 6463515505, + 7449177971, + 7449177970, + 6463515504, + 6463515510, + 6463515503, + 7449171578, + 7449171579, + 6458963418, + 9441125203, + 9441125200, + 3369597713, + 12852256582, + 12852256585, + 12852256580, + 6463515501, + 3369597712, + 3369597128, + 3369597129, + 3369597126, + 3369597123, + 3369597122, + 6791514085, + 3369597114, + 2710204442, + 10211295953, + 2710204440, + 3369597112 + ], + "geometry": [ + { "lat": 40.7735863, "lon": -73.9838487 }, + { "lat": 40.7735503, "lon": -73.9837566 }, + { "lat": 40.7735437, "lon": -73.9837393 }, + { "lat": 40.7733508, "lon": -73.9832781 }, + { "lat": 40.7733011, "lon": -73.9831775 }, + { "lat": 40.7732613, "lon": -73.9830969 }, + { "lat": 40.7732440, "lon": -73.9830558 }, + { "lat": 40.7730024, "lon": -73.9824810 }, + { "lat": 40.7728923, "lon": -73.9825616 }, + { "lat": 40.7728199, "lon": -73.9826145 }, + { "lat": 40.7728028, "lon": -73.9825724 }, + { "lat": 40.7727592, "lon": -73.9826041 }, + { "lat": 40.7727256, "lon": -73.9826286 }, + { "lat": 40.7727062, "lon": -73.9826427 }, + { "lat": 40.7726335, "lon": -73.9827271 }, + { "lat": 40.7726372, "lon": -73.9827374 }, + { "lat": 40.7726403, "lon": -73.9827460 }, + { "lat": 40.7724259, "lon": -73.9829029 }, + { "lat": 40.7724093, "lon": -73.9828601 }, + { "lat": 40.7727693, "lon": -73.9825240 }, + { "lat": 40.7728081, "lon": -73.9825252 }, + { "lat": 40.7728750, "lon": -73.9825274 }, + { "lat": 40.7728753, "lon": -73.9825135 }, + { "lat": 40.7728763, "lon": -73.9824766 }, + { "lat": 40.7728100, "lon": -73.9824735 }, + { "lat": 40.7728296, "lon": -73.9824425 }, + { "lat": 40.7728618, "lon": -73.9823924 }, + { "lat": 40.7730230, "lon": -73.9823991 }, + { "lat": 40.7730456, "lon": -73.9824031 }, + { "lat": 40.7730716, "lon": -73.9824473 }, + { "lat": 40.7735030, "lon": -73.9834667 }, + { "lat": 40.7736083, "lon": -73.9837155 }, + { "lat": 40.7737528, "lon": -73.9840571 }, + { "lat": 40.7740541, "lon": -73.9847596 }, + { "lat": 40.7740591, "lon": -73.9847770 }, + { "lat": 40.7740576, "lon": -73.9848076 }, + { "lat": 40.7740422, "lon": -73.9848249 }, + { "lat": 40.7740211, "lon": -73.9848395 }, + { "lat": 40.7735848, "lon": -73.9851600 }, + { "lat": 40.7735144, "lon": -73.9852087 }, + { "lat": 40.7734453, "lon": -73.9852599 }, + { "lat": 40.7728842, "lon": -73.9856695 }, + { "lat": 40.7728246, "lon": -73.9857130 }, + { "lat": 40.7723506, "lon": -73.9860590 }, + { "lat": 40.7723320, "lon": -73.9860689 }, + { "lat": 40.7723182, "lon": -73.9860653 }, + { "lat": 40.7723044, "lon": -73.9860568 }, + { "lat": 40.7722941, "lon": -73.9860304 }, + { "lat": 40.7720023, "lon": -73.9853451 }, + { "lat": 40.7717299, "lon": -73.9846954 }, + { "lat": 40.7717463, "lon": -73.9846829 }, + { "lat": 40.7717649, "lon": -73.9846688 }, + { "lat": 40.7718000, "lon": -73.9847523 }, + { "lat": 40.7718108, "lon": -73.9847773 }, + { "lat": 40.7718236, "lon": -73.9848071 }, + { "lat": 40.7718443, "lon": -73.9848571 }, + { "lat": 40.7718537, "lon": -73.9848798 }, + { "lat": 40.7718591, "lon": -73.9848926 }, + { "lat": 40.7718655, "lon": -73.9849082 }, + { "lat": 40.7718870, "lon": -73.9849587 }, + { "lat": 40.7718936, "lon": -73.9849744 }, + { "lat": 40.7718992, "lon": -73.9849879 }, + { "lat": 40.7719058, "lon": -73.9850037 }, + { "lat": 40.7719267, "lon": -73.9850520 }, + { "lat": 40.7719345, "lon": -73.9850706 }, + { "lat": 40.7719399, "lon": -73.9850840 }, + { "lat": 40.7719456, "lon": -73.9850980 }, + { "lat": 40.7719501, "lon": -73.9851087 }, + { "lat": 40.7722761, "lon": -73.9858829 }, + { "lat": 40.7722856, "lon": -73.9859056 }, + { "lat": 40.7722949, "lon": -73.9859274 }, + { "lat": 40.7723047, "lon": -73.9859504 }, + { "lat": 40.7723298, "lon": -73.9860090 }, + { "lat": 40.7727709, "lon": -73.9856868 }, + { "lat": 40.7728040, "lon": -73.9856627 }, + { "lat": 40.7728312, "lon": -73.9856428 }, + { "lat": 40.7728682, "lon": -73.9856158 }, + { "lat": 40.7728769, "lon": -73.9856094 }, + { "lat": 40.7728364, "lon": -73.9855111 }, + { "lat": 40.7729046, "lon": -73.9854646 }, + { "lat": 40.7729418, "lon": -73.9855572 }, + { "lat": 40.7733609, "lon": -73.9852553 }, + { "lat": 40.7735055, "lon": -73.9851490 }, + { "lat": 40.7737179, "lon": -73.9849929 }, + { "lat": 40.7739878, "lon": -73.9847967 }, + { "lat": 40.7736778, "lon": -73.9840742 }, + { "lat": 40.7736668, "lon": -73.9840485 }, + { "lat": 40.7736562, "lon": -73.9840234 }, + { "lat": 40.7735863, "lon": -73.9838487 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "level": "0", + "lit": "no" + } +}, +{ + "type": "way", + "id": 362204965, + "bounds": { + "minlat": 40.7081496, + "minlon": -73.9141252, + "maxlat": 40.7091716, + "maxlon": -73.9130794 + }, + "nodes": [ + 9755788828, + 10287737731, + 9590434391 + ], + "geometry": [ + { "lat": 40.7091716, "lon": -73.9130794 }, + { "lat": 40.7081828, "lon": -73.9140913 }, + { "lat": 40.7081496, "lon": -73.9141252 } + ], + "tags": { + "alt_name": "Pauline DeBlonde Way", + "highway": "residential", + "lane_markings": "no", + "name": "Stockholm Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 362811088, + "bounds": { + "minlat": 40.7199847, + "minlon": -73.9836452, + "maxlat": 40.7211632, + "maxlon": -73.9830269 + }, + "nodes": [ + 3670609093, + 8310245662, + 3783144655, + 1919595912 + ], + "geometry": [ + { "lat": 40.7199847, "lon": -73.9836452 }, + { "lat": 40.7200226, "lon": -73.9836233 }, + { "lat": 40.7210880, "lon": -73.9830663 }, + { "lat": 40.7211632, "lon": -73.9830269 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Attorney Street", + "name:ko": "어터니 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 364026607, + "bounds": { + "minlat": 40.8154373, + "minlon": -73.9469800, + "maxlat": 40.8183800, + "maxlon": -73.9399886 + }, + "nodes": [ + 3099327951, + 9559408278, + 8758345321, + 2141026540, + 42439894, + 9150629547, + 5378419181, + 10170605803, + 42435852, + 10170605807, + 7069015231, + 10171324740, + 42439598 + ], + "geometry": [ + { "lat": 40.8154373, "lon": -73.9399886 }, + { "lat": 40.8154808, "lon": -73.9400927 }, + { "lat": 40.8165116, "lon": -73.9425579 }, + { "lat": 40.8165600, "lon": -73.9426760 }, + { "lat": 40.8166299, "lon": -73.9428389 }, + { "lat": 40.8166801, "lon": -73.9429572 }, + { "lat": 40.8176132, "lon": -73.9451574 }, + { "lat": 40.8177486, "lon": -73.9454768 }, + { "lat": 40.8178000, "lon": -73.9455980 }, + { "lat": 40.8178580, "lon": -73.9457342 }, + { "lat": 40.8179704, "lon": -73.9460091 }, + { "lat": 40.8183462, "lon": -73.9468986 }, + { "lat": 40.8183800, "lon": -73.9469800 } + ], + "tags": { + "highway": "residential", + "name": "West 137th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 364026608, + "bounds": { + "minlat": 40.8126288, + "minlon": -73.9420440, + "maxlat": 40.8131474, + "maxlon": -73.9416670 + }, + "nodes": [ + 7132743059, + 10168169649, + 3099327931, + 10168169652, + 9531614982 + ], + "geometry": [ + { "lat": 40.8131474, "lon": -73.9416670 }, + { "lat": 40.8129151, "lon": -73.9418358 }, + { "lat": 40.8128495, "lon": -73.9418835 }, + { "lat": 40.8127910, "lon": -73.9419260 }, + { "lat": 40.8126288, "lon": -73.9420440 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 364026609, + "bounds": { + "minlat": 40.8153746, + "minlon": -73.9399886, + "maxlat": 40.8154373, + "maxlon": -73.9398384 + }, + "nodes": [ + 42445587, + 3099327951 + ], + "geometry": [ + { "lat": 40.8153746, "lon": -73.9398384 }, + { "lat": 40.8154373, "lon": -73.9399886 } + ], + "tags": { + "highway": "residential", + "name": "West 137th Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 364026610, + "bounds": { + "minlat": 40.8153746, + "minlon": -73.9398384, + "maxlat": 40.8156982, + "maxlon": -73.9396028 + }, + "nodes": [ + 42445587, + 9557110351, + 42440371 + ], + "geometry": [ + { "lat": 40.8153746, "lon": -73.9398384 }, + { "lat": 40.8154325, "lon": -73.9397963 }, + { "lat": 40.8156982, "lon": -73.9396028 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 364262732, + "bounds": { + "minlat": 40.7097287, + "minlon": -73.9882774, + "maxlat": 40.7105766, + "maxlon": -73.9857824 + }, + "nodes": [ + 3683163348, + 5515623980, + 11037590271, + 11037590276, + 3683163347, + 3683163346, + 11037590274, + 3683163345, + 11037590275, + 3683163344, + 5458548435, + 3683163343, + 11037590294, + 11037590293, + 3683163342, + 11037590295, + 11037590243, + 11037590240 + ], + "geometry": [ + { "lat": 40.7105766, "lon": -73.9858517 }, + { "lat": 40.7105154, "lon": -73.9858414 }, + { "lat": 40.7105000, "lon": -73.9858384 }, + { "lat": 40.7102552, "lon": -73.9857901 }, + { "lat": 40.7102159, "lon": -73.9857824 }, + { "lat": 40.7101183, "lon": -73.9857838 }, + { "lat": 40.7100611, "lon": -73.9858024 }, + { "lat": 40.7100166, "lon": -73.9858349 }, + { "lat": 40.7099788, "lon": -73.9858832 }, + { "lat": 40.7099562, "lon": -73.9859531 }, + { "lat": 40.7097983, "lon": -73.9874618 }, + { "lat": 40.7097287, "lon": -73.9881088 }, + { "lat": 40.7097385, "lon": -73.9881439 }, + { "lat": 40.7097707, "lon": -73.9881668 }, + { "lat": 40.7100526, "lon": -73.9882257 }, + { "lat": 40.7102185, "lon": -73.9882599 }, + { "lat": 40.7102388, "lon": -73.9882641 }, + { "lat": 40.7103031, "lon": -73.9882774 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 365518743, + "bounds": { + "minlat": 40.8209374, + "minlon": -73.9240563, + "maxlat": 40.8214024, + "maxlon": -73.9229312 + }, + "nodes": [ + 3695220270, + 3695220279, + 3695220281, + 3695220268, + 7557500163, + 13185824064 + ], + "geometry": [ + { "lat": 40.8214024, "lon": -73.9240563 }, + { "lat": 40.8211937, "lon": -73.9234287 }, + { "lat": 40.8211424, "lon": -73.9232744 }, + { "lat": 40.8211096, "lon": -73.9231756 }, + { "lat": 40.8210482, "lon": -73.9230832 }, + { "lat": 40.8209374, "lon": -73.9229312 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 365518768, + "bounds": { + "minlat": 40.8221559, + "minlon": -73.9228319, + "maxlat": 40.8222038, + "maxlon": -73.9227825 + }, + "nodes": [ + 3695221048, + 3695221065, + 3695221049, + 3695221047, + 3695221068, + 3695221051, + 3695221052, + 3695221066, + 3695221053, + 3695221048 + ], + "geometry": [ + { "lat": 40.8222038, "lon": -73.9228156 }, + { "lat": 40.8221934, "lon": -73.9228221 }, + { "lat": 40.8221813, "lon": -73.9228275 }, + { "lat": 40.8221798, "lon": -73.9228227 }, + { "lat": 40.8221736, "lon": -73.9228268 }, + { "lat": 40.8221655, "lon": -73.9228319 }, + { "lat": 40.8221559, "lon": -73.9228051 }, + { "lat": 40.8221741, "lon": -73.9227937 }, + { "lat": 40.8221920, "lon": -73.9227825 }, + { "lat": 40.8222038, "lon": -73.9228156 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 365518772, + "bounds": { + "minlat": 40.8221986, + "minlon": -73.9228859, + "maxlat": 40.8222229, + "maxlon": -73.9228605 + }, + "nodes": [ + 4765368087, + 3695221063, + 3695221056, + 3695221057, + 3695221064, + 4765368090, + 4765368087 + ], + "geometry": [ + { "lat": 40.8222229, "lon": -73.9228734 }, + { "lat": 40.8222137, "lon": -73.9228793 }, + { "lat": 40.8222032, "lon": -73.9228859 }, + { "lat": 40.8221986, "lon": -73.9228730 }, + { "lat": 40.8222086, "lon": -73.9228668 }, + { "lat": 40.8222187, "lon": -73.9228605 }, + { "lat": 40.8222229, "lon": -73.9228734 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 365518774, + "bounds": { + "minlat": 40.8221079, + "minlon": -73.9232073, + "maxlat": 40.8223867, + "maxlon": -73.9223450 + }, + "nodes": [ + 3695221044, + 4765368095, + 3695221059, + 3695221096, + 8547129902, + 3695221092, + 3695221094, + 3695221095, + 3695221093, + 3695221060, + 4765368088, + 4765368094, + 3695221062, + 3695221061, + 3695221044 + ], + "geometry": [ + { "lat": 40.8222279, "lon": -73.9229532 }, + { "lat": 40.8222461, "lon": -73.9229429 }, + { "lat": 40.8223314, "lon": -73.9232073 }, + { "lat": 40.8223867, "lon": -73.9231660 }, + { "lat": 40.8223487, "lon": -73.9230451 }, + { "lat": 40.8221676, "lon": -73.9224905 }, + { "lat": 40.8222630, "lon": -73.9224279 }, + { "lat": 40.8222498, "lon": -73.9223820 }, + { "lat": 40.8222402, "lon": -73.9223450 }, + { "lat": 40.8221079, "lon": -73.9225302 }, + { "lat": 40.8222258, "lon": -73.9228718 }, + { "lat": 40.8222413, "lon": -73.9229171 }, + { "lat": 40.8222298, "lon": -73.9229237 }, + { "lat": 40.8222202, "lon": -73.9229289 }, + { "lat": 40.8222279, "lon": -73.9229532 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 365518789, + "bounds": { + "minlat": 40.8214874, + "minlon": -73.9237848, + "maxlat": 40.8219838, + "maxlon": -73.9233345 + }, + "nodes": [ + 3695221072, + 3695221084, + 3695221070, + 3695221075, + 3695221074, + 3695221098, + 3695221097, + 3695221099, + 3695221100, + 8547129915, + 3695221101, + 3695221073, + 3695220318, + 3695220317, + 3695221072 + ], + "geometry": [ + { "lat": 40.8216615, "lon": -73.9234494 }, + { "lat": 40.8216687, "lon": -73.9234713 }, + { "lat": 40.8216742, "lon": -73.9234881 }, + { "lat": 40.8217070, "lon": -73.9234690 }, + { "lat": 40.8217176, "lon": -73.9234629 }, + { "lat": 40.8219383, "lon": -73.9233345 }, + { "lat": 40.8219838, "lon": -73.9234146 }, + { "lat": 40.8215650, "lon": -73.9236650 }, + { "lat": 40.8215922, "lon": -73.9237552 }, + { "lat": 40.8215696, "lon": -73.9237689 }, + { "lat": 40.8215443, "lon": -73.9237848 }, + { "lat": 40.8214874, "lon": -73.9236072 }, + { "lat": 40.8216580, "lon": -73.9235085 }, + { "lat": 40.8216421, "lon": -73.9234600 }, + { "lat": 40.8216615, "lon": -73.9234494 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "2" + } +}, +{ + "type": "way", + "id": 365518791, + "bounds": { + "minlat": 40.8216937, + "minlon": -73.9234690, + "maxlat": 40.8217176, + "maxlon": -73.9234257 + }, + "nodes": [ + 3695221075, + 3695221085, + 3695221076, + 3695221077, + 3695221086, + 3695221074, + 3695221075 + ], + "geometry": [ + { "lat": 40.8217070, "lon": -73.9234690 }, + { "lat": 40.8217009, "lon": -73.9234518 }, + { "lat": 40.8216937, "lon": -73.9234317 }, + { "lat": 40.8217047, "lon": -73.9234257 }, + { "lat": 40.8217118, "lon": -73.9234461 }, + { "lat": 40.8217176, "lon": -73.9234629 }, + { "lat": 40.8217070, "lon": -73.9234690 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 365518793, + "bounds": { + "minlat": 40.8217327, + "minlon": -73.9234431, + "maxlat": 40.8217818, + "maxlon": -73.9233539 + }, + "nodes": [ + 3695221078, + 3695221087, + 3695221079, + 3695221071, + 3695221090, + 3695221081, + 3695221082, + 3695221088, + 3695221083, + 3695221078 + ], + "geometry": [ + { "lat": 40.8217510, "lon": -73.9234431 }, + { "lat": 40.8217452, "lon": -73.9234266 }, + { "lat": 40.8217385, "lon": -73.9234072 }, + { "lat": 40.8217433, "lon": -73.9234044 }, + { "lat": 40.8217385, "lon": -73.9233906 }, + { "lat": 40.8217327, "lon": -73.9233737 }, + { "lat": 40.8217526, "lon": -73.9233539 }, + { "lat": 40.8217694, "lon": -73.9233944 }, + { "lat": 40.8217818, "lon": -73.9234244 }, + { "lat": 40.8217510, "lon": -73.9234431 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 368938760, + "bounds": { + "minlat": 40.7457863, + "minlon": -73.9733985, + "maxlat": 40.7462201, + "maxlon": -73.9723585 + }, + "nodes": [ + 9147343630, + 1577321470, + 4207683808, + 9987259760 + ], + "geometry": [ + { "lat": 40.7457863, "lon": -73.9723585 }, + { "lat": 40.7459109, "lon": -73.9726572 }, + { "lat": 40.7460254, "lon": -73.9729287 }, + { "lat": 40.7462201, "lon": -73.9733985 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left;through||" + } +}, +{ + "type": "way", + "id": 368938761, + "bounds": { + "minlat": 40.7462999, + "minlon": -73.9716752, + "maxlat": 40.7465280, + "maxlon": -73.9715090 + }, + "nodes": [ + 42454010, + 3569749094, + 4917679392 + ], + "geometry": [ + { "lat": 40.7462999, "lon": -73.9716752 }, + { "lat": 40.7463644, "lon": -73.9716292 }, + { "lat": 40.7465280, "lon": -73.9715090 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 368938762, + "bounds": { + "minlat": 40.7456883, + "minlon": -73.9721236, + "maxlat": 40.7460717, + "maxlon": -73.9718419 + }, + "nodes": [ + 42422899, + 10170620780, + 8840916184 + ], + "geometry": [ + { "lat": 40.7456883, "lon": -73.9721236 }, + { "lat": 40.7457486, "lon": -73.9720780 }, + { "lat": 40.7460717, "lon": -73.9718419 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 370169932, + "bounds": { + "minlat": 40.7073945, + "minlon": -74.0054889, + "maxlat": 40.7078360, + "maxlon": -74.0043276 + }, + "nodes": [ + 4015192929, + 8262936334, + 4015192928, + 8262936325, + 42440347 + ], + "geometry": [ + { "lat": 40.7078360, "lon": -74.0043276 }, + { "lat": 40.7077980, "lon": -74.0044222 }, + { "lat": 40.7075353, "lon": -74.0051170 }, + { "lat": 40.7074253, "lon": -74.0054095 }, + { "lat": 40.7073945, "lon": -74.0054889 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 370372778, + "bounds": { + "minlat": 40.8111538, + "minlon": -74.0206149, + "maxlat": 40.8129580, + "maxlon": -74.0194900 + }, + "nodes": [ + 103858994, + 8375133332, + 103858996, + 8375133325, + 6995212620, + 103858998 + ], + "geometry": [ + { "lat": 40.8129580, "lon": -74.0194900 }, + { "lat": 40.8128849, "lon": -74.0195324 }, + { "lat": 40.8124150, "lon": -74.0198050 }, + { "lat": 40.8117562, "lon": -74.0202281 }, + { "lat": 40.8116224, "lon": -74.0203140 }, + { "lat": 40.8111538, "lon": -74.0206149 } + ], + "tags": { + "HFCS": "Urban Major Collector", + "NJDOT_SRI": "09081122", + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 370372820, + "bounds": { + "minlat": 40.8147068, + "minlon": -74.0187726, + "maxlat": 40.8210485, + "maxlon": -74.0140148 + }, + "nodes": [ + 3740793567, + 3740793579, + 3740793571, + 3740793577, + 13388097663, + 13388097665, + 3740793570, + 3740793575, + 13388097672, + 3740793578, + 13388097674, + 13388097657, + 3740793569, + 3740793576, + 13388097660, + 13388097673, + 13388097662, + 3740793580, + 7138798276, + 3740793573 + ], + "geometry": [ + { "lat": 40.8210485, "lon": -74.0187726 }, + { "lat": 40.8201270, "lon": -74.0171687 }, + { "lat": 40.8195952, "lon": -74.0162889 }, + { "lat": 40.8194328, "lon": -74.0164552 }, + { "lat": 40.8189286, "lon": -74.0155300 }, + { "lat": 40.8183801, "lon": -74.0145236 }, + { "lat": 40.8182731, "lon": -74.0143273 }, + { "lat": 40.8180772, "lon": -74.0140937 }, + { "lat": 40.8179289, "lon": -74.0140220 }, + { "lat": 40.8177916, "lon": -74.0140148 }, + { "lat": 40.8177041, "lon": -74.0140324 }, + { "lat": 40.8176117, "lon": -74.0141034 }, + { "lat": 40.8175543, "lon": -74.0140672 }, + { "lat": 40.8172243, "lon": -74.0143148 }, + { "lat": 40.8171121, "lon": -74.0144034 }, + { "lat": 40.8170738, "lon": -74.0144336 }, + { "lat": 40.8163463, "lon": -74.0150083 }, + { "lat": 40.8161241, "lon": -74.0151838 }, + { "lat": 40.8159618, "lon": -74.0153046 }, + { "lat": 40.8147068, "lon": -74.0162277 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 370372827, + "bounds": { + "minlat": 40.8136254, + "minlon": -74.0148201, + "maxlat": 40.8159270, + "maxlon": -74.0104647 + }, + "nodes": [ + 103865040, + 5813807498, + 5707102089, + 7612325113, + 12497765509, + 103865038, + 11252634061, + 7612325120, + 12456261975, + 103865036 + ], + "geometry": [ + { "lat": 40.8159270, "lon": -74.0148201 }, + { "lat": 40.8158399, "lon": -74.0146586 }, + { "lat": 40.8153761, "lon": -74.0137643 }, + { "lat": 40.8152254, "lon": -74.0134929 }, + { "lat": 40.8144702, "lon": -74.0120809 }, + { "lat": 40.8142063, "lon": -74.0115840 }, + { "lat": 40.8138301, "lon": -74.0109268 }, + { "lat": 40.8137574, "lon": -74.0107999 }, + { "lat": 40.8136927, "lon": -74.0106355 }, + { "lat": 40.8136254, "lon": -74.0104647 } + ], + "tags": { + "highway": "residential", + "name": "91st Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "91st", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 370603874, + "bounds": { + "minlat": 40.8666010, + "minlon": -74.0017544, + "maxlat": 40.8666093, + "maxlon": -74.0010389 + }, + "nodes": [ + 2468300449, + 2468300497 + ], + "geometry": [ + { "lat": 40.8666093, "lon": -74.0017544 }, + { "lat": 40.8666010, "lon": -74.0010389 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 370609984, + "bounds": { + "minlat": 40.8738212, + "minlon": -74.0117061, + "maxlat": 40.8739003, + "maxlon": -74.0115023 + }, + "nodes": [ + 2003013244, + 2003013246 + ], + "geometry": [ + { "lat": 40.8739003, "lon": -74.0117061 }, + { "lat": 40.8738212, "lon": -74.0115023 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 370609985, + "bounds": { + "minlat": 40.8738212, + "minlon": -74.0115023, + "maxlat": 40.8742836, + "maxlon": -74.0111831 + }, + "nodes": [ + 2003013246, + 2003013248, + 2003013236 + ], + "geometry": [ + { "lat": 40.8738212, "lon": -74.0115023 }, + { "lat": 40.8739451, "lon": -74.0114168 }, + { "lat": 40.8742836, "lon": -74.0111831 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 370609986, + "bounds": { + "minlat": 40.8739003, + "minlon": -74.0117061, + "maxlat": 40.8743663, + "maxlon": -74.0113986 + }, + "nodes": [ + 2003013250, + 2003013244 + ], + "geometry": [ + { "lat": 40.8743663, "lon": -74.0113986 }, + { "lat": 40.8739003, "lon": -74.0117061 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 370609987, + "bounds": { + "minlat": 40.8742836, + "minlon": -74.0113986, + "maxlat": 40.8743663, + "maxlon": -74.0111831 + }, + "nodes": [ + 2003013236, + 2003013250 + ], + "geometry": [ + { "lat": 40.8742836, "lon": -74.0111831 }, + { "lat": 40.8743663, "lon": -74.0113986 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 370611722, + "bounds": { + "minlat": 40.8632062, + "minlon": -73.9972628, + "maxlat": 40.8638463, + "maxlon": -73.9963446 + }, + "nodes": [ + 3743113590, + 3743113597, + 3743113588, + 3743113593, + 8061475572, + 3743113587 + ], + "geometry": [ + { "lat": 40.8632062, "lon": -73.9963446 }, + { "lat": 40.8633817, "lon": -73.9967093 }, + { "lat": 40.8634487, "lon": -73.9968273 }, + { "lat": 40.8636637, "lon": -73.9970687 }, + { "lat": 40.8637463, "lon": -73.9971565 }, + { "lat": 40.8638463, "lon": -73.9972628 } + ], + "tags": { + "highway": "tertiary" + } +}, +{ + "type": "way", + "id": 370611723, + "bounds": { + "minlat": 40.8633428, + "minlon": -73.9967093, + "maxlat": 40.8634307, + "maxlon": -73.9961774 + }, + "nodes": [ + 3743113594, + 3743113600, + 3743113591, + 3743113597 + ], + "geometry": [ + { "lat": 40.8634307, "lon": -73.9961774 }, + { "lat": 40.8633614, "lon": -73.9963472 }, + { "lat": 40.8633428, "lon": -73.9965126 }, + { "lat": 40.8633817, "lon": -73.9967093 } + ], + "tags": { + "highway": "tertiary", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 370611863, + "bounds": { + "minlat": 40.8638463, + "minlon": -73.9980540, + "maxlat": 40.8646605, + "maxlon": -73.9972628 + }, + "nodes": [ + 3743113587, + 4472848989, + 8061475577, + 3743054649, + 4472813095, + 4472813102 + ], + "geometry": [ + { "lat": 40.8638463, "lon": -73.9972628 }, + { "lat": 40.8638650, "lon": -73.9972858 }, + { "lat": 40.8638886, "lon": -73.9973107 }, + { "lat": 40.8644539, "lon": -73.9979061 }, + { "lat": 40.8646136, "lon": -73.9980540 }, + { "lat": 40.8646605, "lon": -73.9980338 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 370615834, + "bounds": { + "minlat": 40.8780614, + "minlon": -73.9967481, + "maxlat": 40.8809475, + "maxlon": -73.9927951 + }, + "nodes": [ + 3743158462, + 3743158461, + 3743158466, + 8986327422, + 6873602622, + 3743158458, + 6873602513, + 6873602514, + 6873602633, + 6873602515, + 8986300012, + 6873602516, + 6873602517 + ], + "geometry": [ + { "lat": 40.8809475, "lon": -73.9967481 }, + { "lat": 40.8805484, "lon": -73.9955170 }, + { "lat": 40.8802564, "lon": -73.9947016 }, + { "lat": 40.8801512, "lon": -73.9944845 }, + { "lat": 40.8800653, "lon": -73.9943074 }, + { "lat": 40.8798143, "lon": -73.9937896 }, + { "lat": 40.8794891, "lon": -73.9932372 }, + { "lat": 40.8790182, "lon": -73.9927951 }, + { "lat": 40.8789041, "lon": -73.9929427 }, + { "lat": 40.8787217, "lon": -73.9931788 }, + { "lat": 40.8786288, "lon": -73.9932387 }, + { "lat": 40.8784757, "lon": -73.9933374 }, + { "lat": 40.8780614, "lon": -73.9935571 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 371765884, + "bounds": { + "minlat": 40.7474113, + "minlon": -73.9437238, + "maxlat": 40.7477084, + "maxlon": -73.9432473 + }, + "nodes": [ + 42818606, + 9982745655, + 9982745656, + 4228583961, + 4228583959, + 9982745657, + 9982745658, + 42825551 + ], + "geometry": [ + { "lat": 40.7477084, "lon": -73.9432473 }, + { "lat": 40.7475375, "lon": -73.9435997 }, + { "lat": 40.7475195, "lon": -73.9436360 }, + { "lat": 40.7475029, "lon": -73.9436624 }, + { "lat": 40.7474818, "lon": -73.9436857 }, + { "lat": 40.7474614, "lon": -73.9437029 }, + { "lat": 40.7474383, "lon": -73.9437156 }, + { "lat": 40.7474113, "lon": -73.9437238 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Hunter Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 371765885, + "bounds": { + "minlat": 40.7477083, + "minlon": -73.9432473, + "maxlat": 40.7479638, + "maxlon": -73.9425060 + }, + "nodes": [ + 42830910, + 11748559708, + 11748559673, + 11748559677, + 11748559733, + 11748559730, + 11748559674, + 11748559700, + 42818606 + ], + "geometry": [ + { "lat": 40.7479638, "lon": -73.9425060 }, + { "lat": 40.7479511, "lon": -73.9425216 }, + { "lat": 40.7479181, "lon": -73.9425621 }, + { "lat": 40.7477553, "lon": -73.9430296 }, + { "lat": 40.7477442, "lon": -73.9430614 }, + { "lat": 40.7477207, "lon": -73.9431290 }, + { "lat": 40.7477083, "lon": -73.9431644 }, + { "lat": 40.7477084, "lon": -73.9432134 }, + { "lat": 40.7477084, "lon": -73.9432473 } + ], + "tags": { + "bicycle": "designated", + "foot": "designated", + "highway": "living_street", + "maxspeed:advisory": "5 mph", + "name": "Hunter Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 371929850, + "bounds": { + "minlat": 40.7333837, + "minlon": -73.9400626, + "maxlat": 40.7338313, + "maxlon": -73.9390103 + }, + "nodes": [ + 7477262852, + 490155443, + 5481983906, + 9982697968, + 490155941, + 490155449, + 8410004505 + ], + "geometry": [ + { "lat": 40.7333837, "lon": -73.9400626 }, + { "lat": 40.7335188, "lon": -73.9396911 }, + { "lat": 40.7335684, "lon": -73.9395644 }, + { "lat": 40.7336201, "lon": -73.9394401 }, + { "lat": 40.7336770, "lon": -73.9393198 }, + { "lat": 40.7337377, "lon": -73.9391960 }, + { "lat": 40.7338313, "lon": -73.9390103 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Greenpoint Avenue Bridge", + "cycleway": "lane", + "cycleway:both:buffer": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "surface": "concrete", + "wikidata": "Q1028093", + "wikipedia": "en:Greenpoint Avenue Bridge" + } +}, +{ + "type": "way", + "id": 373454755, + "bounds": { + "minlat": 40.7300602, + "minlon": -73.9258636, + "maxlat": 40.7304801, + "maxlon": -73.9239158 + }, + "nodes": [ + 5177091566, + 7984020250, + 10087637138, + 8097303875, + 10087637147, + 42823457, + 10087637136, + 5177091567 + ], + "geometry": [ + { "lat": 40.7300602, "lon": -73.9239158 }, + { "lat": 40.7302171, "lon": -73.9245985 }, + { "lat": 40.7303477, "lon": -73.9252279 }, + { "lat": 40.7303566, "lon": -73.9252704 }, + { "lat": 40.7303690, "lon": -73.9253263 }, + { "lat": 40.7303765, "lon": -73.9254043 }, + { "lat": 40.7304053, "lon": -73.9255022 }, + { "lat": 40.7304801, "lon": -73.9258636 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "55th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 373454756, + "bounds": { + "minlat": 40.7301927, + "minlon": -73.9237103, + "maxlat": 40.7306097, + "maxlon": -73.9217937 + }, + "nodes": [ + 42848960, + 10087637175, + 10087637176, + 8549559000, + 10087637132, + 42833525, + 10087637133, + 8549559006, + 3659249779 + ], + "geometry": [ + { "lat": 40.7306097, "lon": -73.9237103 }, + { "lat": 40.7305933, "lon": -73.9236356 }, + { "lat": 40.7305838, "lon": -73.9235918 }, + { "lat": 40.7303299, "lon": -73.9224296 }, + { "lat": 40.7303200, "lon": -73.9223841 }, + { "lat": 40.7303026, "lon": -73.9223036 }, + { "lat": 40.7302826, "lon": -73.9222117 }, + { "lat": 40.7302700, "lon": -73.9221535 }, + { "lat": 40.7301927, "lon": -73.9217937 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "54th Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 373857803, + "bounds": { + "minlat": 40.7090829, + "minlon": -74.0140498, + "maxlat": 40.7095053, + "maxlon": -74.0138882 + }, + "nodes": [ + 3772840882, + 4143824665, + 4143824662, + 8262936705, + 42452310 + ], + "geometry": [ + { "lat": 40.7095053, "lon": -74.0138882 }, + { "lat": 40.7094507, "lon": -74.0139103 }, + { "lat": 40.7091325, "lon": -74.0140315 }, + { "lat": 40.7091158, "lon": -74.0140377 }, + { "lat": 40.7090829, "lon": -74.0140498 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 374084941, + "bounds": { + "minlat": 40.7459357, + "minlon": -73.9070209, + "maxlat": 40.7461964, + "maxlon": -73.9069063 + }, + "nodes": [ + 3774933363, + 3774933376 + ], + "geometry": [ + { "lat": 40.7461964, "lon": -73.9069063 }, + { "lat": 40.7459357, "lon": -73.9070209 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 374084942, + "bounds": { + "minlat": 40.7461617, + "minlon": -73.9071003, + "maxlat": 40.7462423, + "maxlon": -73.9067597 + }, + "nodes": [ + 3774933365, + 11643646144, + 3774933363, + 3774933369 + ], + "geometry": [ + { "lat": 40.7462423, "lon": -73.9071003 }, + { "lat": 40.7462253, "lon": -73.9070283 }, + { "lat": 40.7461964, "lon": -73.9069063 }, + { "lat": 40.7461617, "lon": -73.9067597 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 374084943, + "bounds": { + "minlat": 40.7460414, + "minlon": -73.9068130, + "maxlat": 40.7461958, + "maxlon": -73.9067446 + }, + "nodes": [ + 3774933371, + 3774933369, + 3774933367 + ], + "geometry": [ + { "lat": 40.7461958, "lon": -73.9067446 }, + { "lat": 40.7461617, "lon": -73.9067597 }, + { "lat": 40.7460414, "lon": -73.9068130 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 374346580, + "bounds": { + "minlat": 40.7521636, + "minlon": -73.9135932, + "maxlat": 40.7522896, + "maxlon": -73.9127953 + }, + "nodes": [ + 3777225963, + 2883385972 + ], + "geometry": [ + { "lat": 40.7522896, "lon": -73.9135932 }, + { "lat": 40.7521636, "lon": -73.9127953 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374346581, + "bounds": { + "minlat": 40.7524916, + "minlon": -73.9135226, + "maxlat": 40.7526221, + "maxlon": -73.9127047 + }, + "nodes": [ + 3777225749, + 3777225967 + ], + "geometry": [ + { "lat": 40.7526221, "lon": -73.9135226 }, + { "lat": 40.7524916, "lon": -73.9127047 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374346583, + "bounds": { + "minlat": 40.7518445, + "minlon": -73.9136610, + "maxlat": 40.7519699, + "maxlon": -73.9128835 + }, + "nodes": [ + 3777225754, + 3777225968 + ], + "geometry": [ + { "lat": 40.7519699, "lon": -73.9136610 }, + { "lat": 40.7518445, "lon": -73.9128835 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374346584, + "bounds": { + "minlat": 40.7520074, + "minlon": -73.9136266, + "maxlat": 40.7521322, + "maxlon": -73.9128385 + }, + "nodes": [ + 3777225961, + 3777225962 + ], + "geometry": [ + { "lat": 40.7521322, "lon": -73.9136266 }, + { "lat": 40.7520074, "lon": -73.9128385 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374346587, + "bounds": { + "minlat": 40.7526608, + "minlon": -73.9134861, + "maxlat": 40.7527944, + "maxlon": -73.9126579 + }, + "nodes": [ + 3777225753, + 3777225964 + ], + "geometry": [ + { "lat": 40.7527944, "lon": -73.9134861 }, + { "lat": 40.7526608, "lon": -73.9126579 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374346588, + "bounds": { + "minlat": 40.7523268, + "minlon": -73.9135579, + "maxlat": 40.7524557, + "maxlon": -73.9127502 + }, + "nodes": [ + 3777225966, + 3777225973 + ], + "geometry": [ + { "lat": 40.7524557, "lon": -73.9135579 }, + { "lat": 40.7523268, "lon": -73.9127502 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374418752, + "bounds": { + "minlat": 40.7524287, + "minlon": -73.9099641, + "maxlat": 40.7524744, + "maxlon": -73.9095480 + }, + "nodes": [ + 3778080982, + 3778080981 + ], + "geometry": [ + { "lat": 40.7524287, "lon": -73.9099641 }, + { "lat": 40.7524744, "lon": -73.9095480 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 374418753, + "bounds": { + "minlat": 40.7525872, + "minlon": -73.9100337, + "maxlat": 40.7526319, + "maxlon": -73.9095786 + }, + "nodes": [ + 3778080978, + 3778080987 + ], + "geometry": [ + { "lat": 40.7525872, "lon": -73.9100337 }, + { "lat": 40.7526319, "lon": -73.9095786 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 374418755, + "bounds": { + "minlat": 40.7521017, + "minlon": -73.9100627, + "maxlat": 40.7527932, + "maxlon": -73.9095021 + }, + "nodes": [ + 3778080993, + 3778080987, + 3778080981, + 3778080986, + 3778080995, + 3778080989, + 3778080977, + 8593804590, + 3778080990 + ], + "geometry": [ + { "lat": 40.7527932, "lon": -73.9096099 }, + { "lat": 40.7526319, "lon": -73.9095786 }, + { "lat": 40.7524744, "lon": -73.9095480 }, + { "lat": 40.7523156, "lon": -73.9095171 }, + { "lat": 40.7522386, "lon": -73.9095021 }, + { "lat": 40.7521502, "lon": -73.9095423 }, + { "lat": 40.7521225, "lon": -73.9098295 }, + { "lat": 40.7521102, "lon": -73.9099713 }, + { "lat": 40.7521017, "lon": -73.9100627 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374418756, + "bounds": { + "minlat": 40.7521225, + "minlon": -73.9100573, + "maxlat": 40.7527932, + "maxlon": -73.9096099 + }, + "nodes": [ + 3778080993, + 3778080994, + 3778080984, + 3778080978, + 3778080982, + 3778080988, + 3778080977 + ], + "geometry": [ + { "lat": 40.7527932, "lon": -73.9096099 }, + { "lat": 40.7527537, "lon": -73.9100104 }, + { "lat": 40.7526409, "lon": -73.9100573 }, + { "lat": 40.7525872, "lon": -73.9100337 }, + { "lat": 40.7524287, "lon": -73.9099641 }, + { "lat": 40.7522766, "lon": -73.9098972 }, + { "lat": 40.7521225, "lon": -73.9098295 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 374418757, + "bounds": { + "minlat": 40.7522766, + "minlon": -73.9098972, + "maxlat": 40.7523156, + "maxlon": -73.9095171 + }, + "nodes": [ + 3778080988, + 3778080986 + ], + "geometry": [ + { "lat": 40.7522766, "lon": -73.9098972 }, + { "lat": 40.7523156, "lon": -73.9095171 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 374421069, + "bounds": { + "minlat": 40.7100289, + "minlon": -74.0143514, + "maxlat": 40.7103670, + "maxlon": -74.0136883 + }, + "nodes": [ + 6417761630, + 6417761629, + 6417761628, + 6417761627, + 6417764328, + 10288473209, + 11415663135 + ], + "geometry": [ + { "lat": 40.7100289, "lon": -74.0136883 }, + { "lat": 40.7100533, "lon": -74.0136950 }, + { "lat": 40.7100787, "lon": -74.0137164 }, + { "lat": 40.7101041, "lon": -74.0137540 }, + { "lat": 40.7101285, "lon": -74.0138096 }, + { "lat": 40.7103511, "lon": -74.0143175 }, + { "lat": 40.7103670, "lon": -74.0143514 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cedar Street", + "name:etymology:wikidata": "Q128550", + "name:ko": "시더 스트리트", + "name:ru": "Сидар-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q13933858" + } +}, +{ + "type": "way", + "id": 374424027, + "bounds": { + "minlat": 40.7544563, + "minlon": -73.9121696, + "maxlat": 40.7548090, + "maxlon": -73.9118865 + }, + "nodes": [ + 3778141150, + 3778141131 + ], + "geometry": [ + { "lat": 40.7548090, "lon": -73.9118865 }, + { "lat": 40.7544563, "lon": -73.9121696 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374424030, + "bounds": { + "minlat": 40.7539717, + "minlon": -73.9130596, + "maxlat": 40.7540555, + "maxlon": -73.9128758 + }, + "nodes": [ + 3778141134, + 6450816283, + 8593804459, + 3778141102 + ], + "geometry": [ + { "lat": 40.7540555, "lon": -73.9130596 }, + { "lat": 40.7540302, "lon": -73.9130049 }, + { "lat": 40.7540272, "lon": -73.9129983 }, + { "lat": 40.7539717, "lon": -73.9128758 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374424031, + "bounds": { + "minlat": 40.7540027, + "minlon": -73.9122106, + "maxlat": 40.7540932, + "maxlon": -73.9120118 + }, + "nodes": [ + 3778141103, + 8593804470, + 3778141112 + ], + "geometry": [ + { "lat": 40.7540932, "lon": -73.9122106 }, + { "lat": 40.7540355, "lon": -73.9120839 }, + { "lat": 40.7540027, "lon": -73.9120118 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 374424033, + "bounds": { + "minlat": 40.7523937, + "minlon": -73.9158127, + "maxlat": 40.7528510, + "maxlon": -73.9157164 + }, + "nodes": [ + 3778141144, + 3778141100, + 3778141138, + 3778141121 + ], + "geometry": [ + { "lat": 40.7528510, "lon": -73.9157164 }, + { "lat": 40.7527411, "lon": -73.9157417 }, + { "lat": 40.7525571, "lon": -73.9157780 }, + { "lat": 40.7523937, "lon": -73.9158127 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374433288, + "bounds": { + "minlat": 40.7726525, + "minlon": -73.9209031, + "maxlat": 40.7729418, + "maxlon": -73.9204677 + }, + "nodes": [ + 3778245570, + 11685092476 + ], + "geometry": [ + { "lat": 40.7729418, "lon": -73.9209031 }, + { "lat": 40.7726525, "lon": -73.9204677 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Grand Central Parkway", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278;GCP", + "surface": "asphalt", + "toll": "no", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 374435095, + "bounds": { + "minlat": 40.7724775, + "minlon": -73.9195788, + "maxlat": 40.7778084, + "maxlon": -73.9130771 + }, + "nodes": [ + 42871997, + 9847943996, + 2389598795, + 2389598813, + 2389598812, + 3778263935, + 42871994, + 13204445326, + 6450635303, + 42871990, + 6450635304, + 8288329064, + 13149325721, + 8288329067, + 6450583529, + 42818203, + 6450583530, + 7714984332, + 42802627 + ], + "geometry": [ + { "lat": 40.7778084, "lon": -73.9130771 }, + { "lat": 40.7777540, "lon": -73.9131426 }, + { "lat": 40.7775485, "lon": -73.9133996 }, + { "lat": 40.7769505, "lon": -73.9141192 }, + { "lat": 40.7769060, "lon": -73.9141729 }, + { "lat": 40.7768064, "lon": -73.9142927 }, + { "lat": 40.7766638, "lon": -73.9144608 }, + { "lat": 40.7763121, "lon": -73.9148961 }, + { "lat": 40.7760962, "lon": -73.9151634 }, + { "lat": 40.7760390, "lon": -73.9152342 }, + { "lat": 40.7759794, "lon": -73.9153066 }, + { "lat": 40.7751377, "lon": -73.9163301 }, + { "lat": 40.7742415, "lon": -73.9174197 }, + { "lat": 40.7741500, "lon": -73.9175310 }, + { "lat": 40.7740280, "lon": -73.9176793 }, + { "lat": 40.7739600, "lon": -73.9177620 }, + { "lat": 40.7739048, "lon": -73.9178284 }, + { "lat": 40.7725507, "lon": -73.9194880 }, + { "lat": 40.7724775, "lon": -73.9195788 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "27th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374435100, + "bounds": { + "minlat": 40.7704396, + "minlon": -73.9177431, + "maxlat": 40.7706731, + "maxlon": -73.9174015 + }, + "nodes": [ + 3778263932, + 2447553719 + ], + "geometry": [ + { "lat": 40.7706731, "lon": -73.9177431 }, + { "lat": 40.7704396, "lon": -73.9174015 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxheight": "12'6\"", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "I 278;GCP", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 374435104, + "bounds": { + "minlat": 40.7694493, + "minlon": -73.9174015, + "maxlat": 40.7704396, + "maxlon": -73.9129693 + }, + "nodes": [ + 2447553719, + 9179198035, + 106138638, + 2447553718, + 9179198036, + 106138640, + 2447553720, + 9179198037, + 106138641, + 9179198038, + 42866689, + 276209383 + ], + "geometry": [ + { "lat": 40.7704396, "lon": -73.9174015 }, + { "lat": 40.7703628, "lon": -73.9172800 }, + { "lat": 40.7702964, "lon": -73.9171640 }, + { "lat": 40.7702316, "lon": -73.9170375 }, + { "lat": 40.7701719, "lon": -73.9169114 }, + { "lat": 40.7701203, "lon": -73.9167793 }, + { "lat": 40.7700618, "lon": -73.9166077 }, + { "lat": 40.7700200, "lon": -73.9164565 }, + { "lat": 40.7699846, "lon": -73.9162968 }, + { "lat": 40.7699540, "lon": -73.9161390 }, + { "lat": 40.7699265, "lon": -73.9159761 }, + { "lat": 40.7694493, "lon": -73.9129693 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "I 278;GCP", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 374435107, + "bounds": { + "minlat": 40.7709646, + "minlon": -73.9214212, + "maxlat": 40.7721490, + "maxlon": -73.9199812 + }, + "nodes": [ + 1398606012, + 42800613, + 6453007741, + 42828367, + 6452994999, + 42872042 + ], + "geometry": [ + { "lat": 40.7721490, "lon": -73.9199812 }, + { "lat": 40.7720618, "lon": -73.9200858 }, + { "lat": 40.7719971, "lon": -73.9201645 }, + { "lat": 40.7714880, "lon": -73.9207850 }, + { "lat": 40.7710340, "lon": -73.9213359 }, + { "lat": 40.7709646, "lon": -73.9214212 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "27th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374435110, + "bounds": { + "minlat": 40.7721490, + "minlon": -73.9199812, + "maxlat": 40.7723848, + "maxlon": -73.9196895 + }, + "nodes": [ + 1398606016, + 1398606012 + ], + "geometry": [ + { "lat": 40.7723848, "lon": -73.9196895 }, + { "lat": 40.7721490, "lon": -73.9199812 } + ], + "tags": { + "highway": "tertiary", + "maxheight": "10'3\"", + "maxspeed": "25 mph", + "name": "27th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374439729, + "bounds": { + "minlat": 40.7767857, + "minlon": -73.9277416, + "maxlat": 40.7825543, + "maxlon": -73.9197261 + }, + "nodes": [ + 2298768513, + 4564220323, + 42849831, + 3778324859, + 7768474038, + 7768474034, + 6423642189, + 6423642187, + 6423642186, + 3778324860, + 2862420460, + 7768474053, + 42849836, + 3778314551, + 2295070146, + 3778314555, + 170417648, + 2295070142, + 2295070145, + 3778314554, + 170417650, + 3778324857, + 3778324862, + 2302054341, + 170417652, + 7768474050, + 2302054340, + 7768474047, + 6423642185, + 593411298, + 2302054339 + ], + "geometry": [ + { "lat": 40.7825543, "lon": -73.9197261 }, + { "lat": 40.7824735, "lon": -73.9198124 }, + { "lat": 40.7820167, "lon": -73.9203605 }, + { "lat": 40.7818107, "lon": -73.9206620 }, + { "lat": 40.7815303, "lon": -73.9210047 }, + { "lat": 40.7814339, "lon": -73.9210893 }, + { "lat": 40.7809431, "lon": -73.9216750 }, + { "lat": 40.7806177, "lon": -73.9220757 }, + { "lat": 40.7800004, "lon": -73.9228329 }, + { "lat": 40.7796899, "lon": -73.9232085 }, + { "lat": 40.7792519, "lon": -73.9237347 }, + { "lat": 40.7790034, "lon": -73.9240439 }, + { "lat": 40.7788482, "lon": -73.9242371 }, + { "lat": 40.7787324, "lon": -73.9244076 }, + { "lat": 40.7786613, "lon": -73.9245399 }, + { "lat": 40.7785885, "lon": -73.9246627 }, + { "lat": 40.7785138, "lon": -73.9248729 }, + { "lat": 40.7784668, "lon": -73.9250691 }, + { "lat": 40.7783885, "lon": -73.9254326 }, + { "lat": 40.7782703, "lon": -73.9258255 }, + { "lat": 40.7782203, "lon": -73.9260257 }, + { "lat": 40.7782083, "lon": -73.9260811 }, + { "lat": 40.7781768, "lon": -73.9261559 }, + { "lat": 40.7781395, "lon": -73.9262255 }, + { "lat": 40.7780318, "lon": -73.9263703 }, + { "lat": 40.7778964, "lon": -73.9265306 }, + { "lat": 40.7775283, "lon": -73.9269668 }, + { "lat": 40.7773501, "lon": -73.9271797 }, + { "lat": 40.7771940, "lon": -73.9273664 }, + { "lat": 40.7770197, "lon": -73.9275363 }, + { "lat": 40.7767857, "lon": -73.9277416 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "Shore Boulevard", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Shore", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 374441771, + "bounds": { + "minlat": 40.7765869, + "minlon": -73.9244318, + "maxlat": 40.7767063, + "maxlon": -73.9239661 + }, + "nodes": [ + 2862420457, + 10176191510, + 11500492592 + ], + "geometry": [ + { "lat": 40.7765869, "lon": -73.9244318 }, + { "lat": 40.7766095, "lon": -73.9242272 }, + { "lat": 40.7767063, "lon": -73.9239661 } + ], + "tags": { + "highway": "pedestrian", + "maxheight": "default", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374441786, + "bounds": { + "minlat": 40.7766191, + "minlon": -73.9215156, + "maxlat": 40.7804580, + "maxlon": -73.9168213 + }, + "nodes": [ + 42825975, + 7803848568, + 10763811187, + 11595847749, + 42810907, + 42825980, + 3778337383, + 42825985, + 11595847717, + 2753135618, + 11595847743, + 6450635338, + 42825989, + 6450635337, + 42825992, + 42820704, + 42825994, + 11420421070, + 11420397867, + 6450583549, + 42818182 + ], + "geometry": [ + { "lat": 40.7804580, "lon": -73.9168213 }, + { "lat": 40.7804022, "lon": -73.9168910 }, + { "lat": 40.7803780, "lon": -73.9169213 }, + { "lat": 40.7803436, "lon": -73.9169643 }, + { "lat": 40.7799380, "lon": -73.9174715 }, + { "lat": 40.7796033, "lon": -73.9178812 }, + { "lat": 40.7794583, "lon": -73.9180537 }, + { "lat": 40.7792910, "lon": -73.9182618 }, + { "lat": 40.7791164, "lon": -73.9184755 }, + { "lat": 40.7789868, "lon": -73.9186340 }, + { "lat": 40.7788855, "lon": -73.9187572 }, + { "lat": 40.7787485, "lon": -73.9189238 }, + { "lat": 40.7786913, "lon": -73.9189934 }, + { "lat": 40.7786368, "lon": -73.9190600 }, + { "lat": 40.7781512, "lon": -73.9196542 }, + { "lat": 40.7776460, "lon": -73.9202630 }, + { "lat": 40.7771568, "lon": -73.9208671 }, + { "lat": 40.7768037, "lon": -73.9212930 }, + { "lat": 40.7767128, "lon": -73.9214025 }, + { "lat": 40.7766789, "lon": -73.9214434 }, + { "lat": 40.7766191, "lon": -73.9215156 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "21st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11106", + "tiger:zip_right": "11106" + } +}, +{ + "type": "way", + "id": 374441790, + "bounds": { + "minlat": 40.7804580, + "minlon": -73.9179676, + "maxlat": 40.7812661, + "maxlon": -73.9168213 + }, + "nodes": [ + 42812019, + 7803848541, + 13701530981, + 10763811185, + 7803843778, + 42825975 + ], + "geometry": [ + { "lat": 40.7812661, "lon": -73.9179676 }, + { "lat": 40.7812245, "lon": -73.9179087 }, + { "lat": 40.7807334, "lon": -73.9172121 }, + { "lat": 40.7805553, "lon": -73.9169595 }, + { "lat": 40.7805335, "lon": -73.9169285 }, + { "lat": 40.7804580, "lon": -73.9168213 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Ditmars Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Ditmars", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "11370", + "tiger:zip_right": "11370", + "wikidata": "Q5283685", + "wikipedia": "en:Ditmars Boulevard" + } +}, +{ + "type": "way", + "id": 374443110, + "bounds": { + "minlat": 40.7773244, + "minlon": -73.9123890, + "maxlat": 40.7809214, + "maxlon": -73.9080089 + }, + "nodes": [ + 42817450, + 9847967593, + 2307002108, + 13458141005, + 2307002111, + 9776116502, + 42817446, + 8500089225, + 5127233089, + 7776768885, + 7779193111, + 42817443 + ], + "geometry": [ + { "lat": 40.7773244, "lon": -73.9123890 }, + { "lat": 40.7773821, "lon": -73.9123183 }, + { "lat": 40.7775840, "lon": -73.9120662 }, + { "lat": 40.7776248, "lon": -73.9120162 }, + { "lat": 40.7788802, "lon": -73.9104773 }, + { "lat": 40.7790989, "lon": -73.9102095 }, + { "lat": 40.7791500, "lon": -73.9101470 }, + { "lat": 40.7792059, "lon": -73.9100752 }, + { "lat": 40.7796224, "lon": -73.9095703 }, + { "lat": 40.7808222, "lon": -73.9081283 }, + { "lat": 40.7808634, "lon": -73.9080787 }, + { "lat": 40.7809214, "lon": -73.9080089 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "28th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "28th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11102", + "tiger:zip_right": "11102" + } +}, +{ + "type": "way", + "id": 374443112, + "bounds": { + "minlat": 40.7719916, + "minlon": -73.9188911, + "maxlat": 40.7773244, + "maxlon": -73.9123890 + }, + "nodes": [ + 42817462, + 7714984371, + 6450635166, + 42817460, + 6450635167, + 8288329068, + 8288329062, + 6450635294, + 42817456, + 6450635295, + 3778345282, + 42817454, + 2389598799, + 2389598796, + 9847967678, + 42817450 + ], + "geometry": [ + { "lat": 40.7719916, "lon": -73.9188911 }, + { "lat": 40.7720594, "lon": -73.9188082 }, + { "lat": 40.7734212, "lon": -73.9171427 }, + { "lat": 40.7734750, "lon": -73.9170770 }, + { "lat": 40.7735393, "lon": -73.9169986 }, + { "lat": 40.7736520, "lon": -73.9168611 }, + { "lat": 40.7746525, "lon": -73.9156405 }, + { "lat": 40.7754939, "lon": -73.9146141 }, + { "lat": 40.7755481, "lon": -73.9145478 }, + { "lat": 40.7756105, "lon": -73.9144714 }, + { "lat": 40.7761148, "lon": -73.9138528 }, + { "lat": 40.7762418, "lon": -73.9136970 }, + { "lat": 40.7764187, "lon": -73.9134813 }, + { "lat": 40.7770544, "lon": -73.9126974 }, + { "lat": 40.7772714, "lon": -73.9124504 }, + { "lat": 40.7773244, "lon": -73.9123890 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "28th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374443311, + "bounds": { + "minlat": 40.7793515, + "minlon": -73.9067461, + "maxlat": 40.7797666, + "maxlon": -73.9063717 + }, + "nodes": [ + 3778345281, + 7779193120, + 2295056673 + ], + "geometry": [ + { "lat": 40.7797666, "lon": -73.9063717 }, + { "lat": 40.7797024, "lon": -73.9064300 }, + { "lat": 40.7793515, "lon": -73.9067461 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "31st Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "31st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 374445761, + "bounds": { + "minlat": 40.7710594, + "minlon": -73.9096155, + "maxlat": 40.7769699, + "maxlon": -73.9023866 + }, + "nodes": [ + 42841783, + 7780992270, + 8500089226, + 42841785, + 11947925566, + 9847944002, + 42841786, + 9847944011, + 10744397952, + 3778409970, + 8626106371, + 9776150542, + 42841790, + 9776150546, + 8626128156, + 5867036839, + 5867036836, + 9776150535, + 42841795, + 9776150531, + 3778733315 + ], + "geometry": [ + { "lat": 40.7769699, "lon": -73.9023866 }, + { "lat": 40.7769041, "lon": -73.9024668 }, + { "lat": 40.7758752, "lon": -73.9037217 }, + { "lat": 40.7758331, "lon": -73.9037724 }, + { "lat": 40.7757888, "lon": -73.9038277 }, + { "lat": 40.7752696, "lon": -73.9044761 }, + { "lat": 40.7752064, "lon": -73.9045553 }, + { "lat": 40.7751450, "lon": -73.9046292 }, + { "lat": 40.7748156, "lon": -73.9050304 }, + { "lat": 40.7743085, "lon": -73.9056480 }, + { "lat": 40.7740436, "lon": -73.9059703 }, + { "lat": 40.7734316, "lon": -73.9067150 }, + { "lat": 40.7733709, "lon": -73.9067888 }, + { "lat": 40.7733150, "lon": -73.9068598 }, + { "lat": 40.7728312, "lon": -73.9074490 }, + { "lat": 40.7727526, "lon": -73.9075451 }, + { "lat": 40.7726715, "lon": -73.9076443 }, + { "lat": 40.7716611, "lon": -73.9088803 }, + { "lat": 40.7716023, "lon": -73.9089522 }, + { "lat": 40.7715467, "lon": -73.9090201 }, + { "lat": 40.7710594, "lon": -73.9096155 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "38th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374480767, + "bounds": { + "minlat": 40.7759678, + "minlon": -73.9130994, + "maxlat": 40.7762155, + "maxlon": -73.9127494 + }, + "nodes": [ + 3778716459, + 9847967545, + 2389598800 + ], + "geometry": [ + { "lat": 40.7762155, "lon": -73.9130994 }, + { "lat": 40.7760118, "lon": -73.9128116 }, + { "lat": 40.7759678, "lon": -73.9127494 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 374480772, + "bounds": { + "minlat": 40.7734519, + "minlon": -73.9209533, + "maxlat": 40.7823649, + "maxlon": -73.9100552 + }, + "nodes": [ + 42818466, + 7779193103, + 5127233080, + 5042113319, + 7829717826, + 5042113320, + 7829717829, + 2307002080, + 5042114423, + 42818468, + 5042114426, + 2307002104, + 2300199442, + 5042114428, + 2300199432, + 2300199427, + 5042114431, + 2307002107, + 2307002114, + 5042114434, + 42818471, + 5042114437, + 2389598793, + 11107965051, + 11107965048, + 11107965045, + 5042135664, + 3778716462, + 3778716461, + 5042135668, + 13006259002, + 6450635314, + 42818480, + 5042135671, + 11107973921, + 8288329076, + 8288329089, + 5042135676, + 5042135678, + 8288329082, + 6908562533, + 5042135684, + 42818193, + 5042135686, + 3025036816, + 13071777728, + 13071777727, + 7746651021, + 3025036810, + 7787345524, + 42808162 + ], + "geometry": [ + { "lat": 40.7823649, "lon": -73.9100552 }, + { "lat": 40.7823056, "lon": -73.9101291 }, + { "lat": 40.7821943, "lon": -73.9102679 }, + { "lat": 40.7819906, "lon": -73.9105168 }, + { "lat": 40.7817427, "lon": -73.9108198 }, + { "lat": 40.7813133, "lon": -73.9113446 }, + { "lat": 40.7810793, "lon": -73.9116306 }, + { "lat": 40.7808840, "lon": -73.9118693 }, + { "lat": 40.7806647, "lon": -73.9121385 }, + { "lat": 40.7806060, "lon": -73.9122110 }, + { "lat": 40.7805522, "lon": -73.9122770 }, + { "lat": 40.7803370, "lon": -73.9125495 }, + { "lat": 40.7801353, "lon": -73.9127986 }, + { "lat": 40.7800958, "lon": -73.9128453 }, + { "lat": 40.7797888, "lon": -73.9132080 }, + { "lat": 40.7794704, "lon": -73.9135957 }, + { "lat": 40.7792153, "lon": -73.9139121 }, + { "lat": 40.7790690, "lon": -73.9140874 }, + { "lat": 40.7790319, "lon": -73.9141326 }, + { "lat": 40.7788398, "lon": -73.9143661 }, + { "lat": 40.7787772, "lon": -73.9144422 }, + { "lat": 40.7787182, "lon": -73.9145144 }, + { "lat": 40.7785113, "lon": -73.9147678 }, + { "lat": 40.7783965, "lon": -73.9149080 }, + { "lat": 40.7782942, "lon": -73.9150330 }, + { "lat": 40.7781925, "lon": -73.9151573 }, + { "lat": 40.7781440, "lon": -73.9152165 }, + { "lat": 40.7778585, "lon": -73.9155654 }, + { "lat": 40.7777186, "lon": -73.9157363 }, + { "lat": 40.7774857, "lon": -73.9160301 }, + { "lat": 40.7772874, "lon": -73.9162668 }, + { "lat": 40.7770626, "lon": -73.9165435 }, + { "lat": 40.7770103, "lon": -73.9166078 }, + { "lat": 40.7769540, "lon": -73.9166764 }, + { "lat": 40.7767308, "lon": -73.9169486 }, + { "lat": 40.7763510, "lon": -73.9174118 }, + { "lat": 40.7762868, "lon": -73.9174901 }, + { "lat": 40.7762251, "lon": -73.9175653 }, + { "lat": 40.7756703, "lon": -73.9182418 }, + { "lat": 40.7753025, "lon": -73.9186902 }, + { "lat": 40.7751747, "lon": -73.9188460 }, + { "lat": 40.7749945, "lon": -73.9190656 }, + { "lat": 40.7749330, "lon": -73.9191410 }, + { "lat": 40.7748777, "lon": -73.9192092 }, + { "lat": 40.7746452, "lon": -73.9194781 }, + { "lat": 40.7744682, "lon": -73.9196968 }, + { "lat": 40.7739394, "lon": -73.9203501 }, + { "lat": 40.7735435, "lon": -73.9208393 }, + { "lat": 40.7735399, "lon": -73.9208438 }, + { "lat": 40.7735116, "lon": -73.9208777 }, + { "lat": 40.7734519, "lon": -73.9209533 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxheight:signed": "no", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Crescent Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374480776, + "bounds": { + "minlat": 40.7797480, + "minlon": -73.9168213, + "maxlat": 40.7804580, + "maxlon": -73.9158200 + }, + "nodes": [ + 42874596, + 7803828543, + 7803848515, + 42825975 + ], + "geometry": [ + { "lat": 40.7797480, "lon": -73.9158200 }, + { "lat": 40.7797950, "lon": -73.9158862 }, + { "lat": 40.7803919, "lon": -73.9167281 }, + { "lat": 40.7804580, "lon": -73.9168213 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Ditmars Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Ditmars", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "11370", + "tiger:zip_right": "11370", + "wikidata": "Q5283685", + "wikipedia": "en:Ditmars Boulevard" + } +}, +{ + "type": "way", + "id": 374480786, + "bounds": { + "minlat": 40.7750620, + "minlon": -73.9138570, + "maxlat": 40.7786682, + "maxlon": -73.9094555 + }, + "nodes": [ + 42833257, + 9776116491, + 2307002123, + 11107965038, + 11107965035, + 13504533411, + 2307002121, + 5616281066, + 42833259, + 5616281068, + 2389598792, + 5482160084, + 2389598800, + 11107965027, + 42833262, + 3778716458, + 6450635286, + 42833266 + ], + "geometry": [ + { "lat": 40.7786682, "lon": -73.9094555 }, + { "lat": 40.7786155, "lon": -73.9095214 }, + { "lat": 40.7783900, "lon": -73.9097983 }, + { "lat": 40.7782768, "lon": -73.9099331 }, + { "lat": 40.7779788, "lon": -73.9103004 }, + { "lat": 40.7771329, "lon": -73.9113366 }, + { "lat": 40.7771047, "lon": -73.9113711 }, + { "lat": 40.7769057, "lon": -73.9116152 }, + { "lat": 40.7768399, "lon": -73.9116959 }, + { "lat": 40.7767762, "lon": -73.9117711 }, + { "lat": 40.7765722, "lon": -73.9120121 }, + { "lat": 40.7763485, "lon": -73.9122850 }, + { "lat": 40.7759678, "lon": -73.9127494 }, + { "lat": 40.7758805, "lon": -73.9128596 }, + { "lat": 40.7756862, "lon": -73.9131049 }, + { "lat": 40.7755397, "lon": -73.9132814 }, + { "lat": 40.7751264, "lon": -73.9137794 }, + { "lat": 40.7750620, "lon": -73.9138570 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "29th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374482039, + "bounds": { + "minlat": 40.7698831, + "minlon": -73.9134445, + "maxlat": 40.7723224, + "maxlon": -73.9106910 + }, + "nodes": [ + 42926432, + 8528733404, + 5324931121, + 5324930912, + 5324930911, + 6406731072, + 42818224, + 6406731076, + 7006826108, + 7841135132, + 7659362778 + ], + "geometry": [ + { "lat": 40.7723224, "lon": -73.9106910 }, + { "lat": 40.7720540, "lon": -73.9110190 }, + { "lat": 40.7719507, "lon": -73.9111453 }, + { "lat": 40.7708053, "lon": -73.9125444 }, + { "lat": 40.7707917, "lon": -73.9125628 }, + { "lat": 40.7705860, "lon": -73.9128138 }, + { "lat": 40.7705210, "lon": -73.9128930 }, + { "lat": 40.7704571, "lon": -73.9129476 }, + { "lat": 40.7699939, "lon": -73.9133476 }, + { "lat": 40.7699644, "lon": -73.9133718 }, + { "lat": 40.7698831, "lon": -73.9134445 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "36th Street", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374482042, + "bounds": { + "minlat": 40.7703277, + "minlon": -73.9154846, + "maxlat": 40.7710374, + "maxlon": -73.9142930 + }, + "nodes": [ + 2883612559, + 2883612555, + 2883612553, + 7841135117, + 5324931555 + ], + "geometry": [ + { "lat": 40.7710374, "lon": -73.9142930 }, + { "lat": 40.7707364, "lon": -73.9146505 }, + { "lat": 40.7703277, "lon": -73.9151556 }, + { "lat": 40.7705144, "lon": -73.9154186 }, + { "lat": 40.7705612, "lon": -73.9154846 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 374482045, + "bounds": { + "minlat": 40.7727696, + "minlon": -73.9115713, + "maxlat": 40.7734517, + "maxlon": -73.9106012 + }, + "nodes": [ + 3778729682, + 3778729690, + 7813969140, + 3778729670, + 7813969136, + 3778729687, + 3778729691 + ], + "geometry": [ + { "lat": 40.7727696, "lon": -73.9106012 }, + { "lat": 40.7729130, "lon": -73.9107366 }, + { "lat": 40.7730838, "lon": -73.9109570 }, + { "lat": 40.7731348, "lon": -73.9110300 }, + { "lat": 40.7731759, "lon": -73.9110888 }, + { "lat": 40.7733020, "lon": -73.9112847 }, + { "lat": 40.7734517, "lon": -73.9115713 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "23rd Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374482048, + "bounds": { + "minlat": 40.7753655, + "minlon": -73.9096169, + "maxlat": 40.7771970, + "maxlon": -73.9073800 + }, + "nodes": [ + 42908896, + 9242368812, + 5482160079, + 7746695007, + 9242380419, + 42874618 + ], + "geometry": [ + { "lat": 40.7771970, "lon": -73.9073800 }, + { "lat": 40.7771417, "lon": -73.9074466 }, + { "lat": 40.7759426, "lon": -73.9089121 }, + { "lat": 40.7757724, "lon": -73.9091199 }, + { "lat": 40.7754277, "lon": -73.9095409 }, + { "lat": 40.7753655, "lon": -73.9096169 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "33rd Street", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374482050, + "bounds": { + "minlat": 40.7727696, + "minlon": -73.9115713, + "maxlat": 40.7734517, + "maxlon": -73.9106012 + }, + "nodes": [ + 3778729691, + 9799588598, + 7813969117, + 3778729677, + 7813969135, + 9799588599, + 3778729682 + ], + "geometry": [ + { "lat": 40.7734517, "lon": -73.9115713 }, + { "lat": 40.7732351, "lon": -73.9113239 }, + { "lat": 40.7731215, "lon": -73.9111578 }, + { "lat": 40.7730790, "lon": -73.9110982 }, + { "lat": 40.7730259, "lon": -73.9110239 }, + { "lat": 40.7728654, "lon": -73.9107958 }, + { "lat": 40.7727696, "lon": -73.9106012 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "23rd Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374482051, + "bounds": { + "minlat": 40.7734517, + "minlon": -73.9201270, + "maxlat": 40.7794890, + "maxlon": -73.9115713 + }, + "nodes": [ + 3778729691, + 9776150529, + 42877845, + 9776150527, + 42877842, + 7784017592, + 42849669, + 6450635181, + 6450635288, + 42833266, + 6450635289, + 6450635296, + 42817456, + 6450635297, + 6450635301, + 42871990, + 6450635302, + 6450635307, + 42877830, + 6450635308, + 5042135672, + 42818480, + 5042135669, + 6450635322, + 42861232, + 6450635321, + 6450635329, + 42877816, + 6450635330, + 6450635335, + 42825989, + 6450635336, + 2753135612, + 6450635341, + 42812029 + ], + "geometry": [ + { "lat": 40.7734517, "lon": -73.9115713 }, + { "lat": 40.7735502, "lon": -73.9117114 }, + { "lat": 40.7735973, "lon": -73.9117766 }, + { "lat": 40.7736530, "lon": -73.9118563 }, + { "lat": 40.7739486, "lon": -73.9122791 }, + { "lat": 40.7742927, "lon": -73.9127633 }, + { "lat": 40.7743600, "lon": -73.9128580 }, + { "lat": 40.7744425, "lon": -73.9129754 }, + { "lat": 40.7750215, "lon": -73.9137993 }, + { "lat": 40.7750620, "lon": -73.9138570 }, + { "lat": 40.7751086, "lon": -73.9139232 }, + { "lat": 40.7755056, "lon": -73.9144880 }, + { "lat": 40.7755481, "lon": -73.9145478 }, + { "lat": 40.7755925, "lon": -73.9146104 }, + { "lat": 40.7759958, "lon": -73.9151738 }, + { "lat": 40.7760390, "lon": -73.9152342 }, + { "lat": 40.7760838, "lon": -73.9152977 }, + { "lat": 40.7764825, "lon": -73.9158637 }, + { "lat": 40.7765242, "lon": -73.9159229 }, + { "lat": 40.7765671, "lon": -73.9159834 }, + { "lat": 40.7769719, "lon": -73.9165537 }, + { "lat": 40.7770103, "lon": -73.9166078 }, + { "lat": 40.7770565, "lon": -73.9166734 }, + { "lat": 40.7774550, "lon": -73.9172391 }, + { "lat": 40.7774940, "lon": -73.9172945 }, + { "lat": 40.7775385, "lon": -73.9173580 }, + { "lat": 40.7779387, "lon": -73.9179290 }, + { "lat": 40.7779780, "lon": -73.9179850 }, + { "lat": 40.7780241, "lon": -73.9180502 }, + { "lat": 40.7786288, "lon": -73.9189050 }, + { "lat": 40.7786913, "lon": -73.9189934 }, + { "lat": 40.7787564, "lon": -73.9190856 }, + { "lat": 40.7789591, "lon": -73.9193730 }, + { "lat": 40.7794501, "lon": -73.9200716 }, + { "lat": 40.7794890, "lon": -73.9201270 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "23rd Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374482053, + "bounds": { + "minlat": 40.7723224, + "minlon": -73.9106910, + "maxlat": 40.7724774, + "maxlon": -73.9105065 + }, + "nodes": [ + 3778729688, + 42926432 + ], + "geometry": [ + { "lat": 40.7724774, "lon": -73.9105065 }, + { "lat": 40.7723224, "lon": -73.9106910 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "36th Street", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374482054, + "bounds": { + "minlat": 40.7700472, + "minlon": -73.9144077, + "maxlat": 40.7776139, + "maxlon": -73.9055885 + }, + "nodes": [ + 42866632, + 7841135103, + 13718182501, + 13718136998, + 13718136995, + 13718136992, + 13718151040, + 13718136989, + 13718136983, + 13718136986, + 13718136980, + 2883612554, + 7841135133, + 42818222, + 9776116423, + 2883612563, + 7659298991, + 5324928519, + 11619734112, + 3778729673, + 7659298989, + 11304595235, + 11304595231, + 7813969139, + 3778729677, + 3778729670, + 9242368779, + 8089085865, + 11304608229, + 9242368798, + 42866625, + 9242368796, + 9242368814, + 42866622, + 9242380417, + 4941253856, + 10160685641, + 10160685645, + 42866618 + ], + "geometry": [ + { "lat": 40.7700472, "lon": -73.9144077 }, + { "lat": 40.7701201, "lon": -73.9143516 }, + { "lat": 40.7701315, "lon": -73.9143425 }, + { "lat": 40.7702483, "lon": -73.9142465 }, + { "lat": 40.7703404, "lon": -73.9141742 }, + { "lat": 40.7703693, "lon": -73.9141514 }, + { "lat": 40.7704516, "lon": -73.9140871 }, + { "lat": 40.7704913, "lon": -73.9140564 }, + { "lat": 40.7705679, "lon": -73.9139956 }, + { "lat": 40.7706090, "lon": -73.9139630 }, + { "lat": 40.7706868, "lon": -73.9139013 }, + { "lat": 40.7707408, "lon": -73.9138585 }, + { "lat": 40.7709593, "lon": -73.9136625 }, + { "lat": 40.7710278, "lon": -73.9135995 }, + { "lat": 40.7710857, "lon": -73.9135301 }, + { "lat": 40.7713007, "lon": -73.9132728 }, + { "lat": 40.7713140, "lon": -73.9132566 }, + { "lat": 40.7717365, "lon": -73.9127410 }, + { "lat": 40.7722428, "lon": -73.9121220 }, + { "lat": 40.7725586, "lon": -73.9117358 }, + { "lat": 40.7725641, "lon": -73.9117290 }, + { "lat": 40.7726618, "lon": -73.9116081 }, + { "lat": 40.7727667, "lon": -73.9114790 }, + { "lat": 40.7730415, "lon": -73.9111440 }, + { "lat": 40.7730790, "lon": -73.9110982 }, + { "lat": 40.7731348, "lon": -73.9110300 }, + { "lat": 40.7731564, "lon": -73.9110039 }, + { "lat": 40.7735394, "lon": -73.9105371 }, + { "lat": 40.7745966, "lon": -73.9092450 }, + { "lat": 40.7748123, "lon": -73.9089816 }, + { "lat": 40.7748712, "lon": -73.9089097 }, + { "lat": 40.7749314, "lon": -73.9088358 }, + { "lat": 40.7766529, "lon": -73.9067484 }, + { "lat": 40.7767079, "lon": -73.9066817 }, + { "lat": 40.7767634, "lon": -73.9066144 }, + { "lat": 40.7769721, "lon": -73.9063613 }, + { "lat": 40.7775576, "lon": -73.9056563 }, + { "lat": 40.7775608, "lon": -73.9056524 }, + { "lat": 40.7776139, "lon": -73.9055885 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "name": "35th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374482055, + "bounds": { + "minlat": 40.7743639, + "minlon": -73.9081920, + "maxlat": 40.7761956, + "maxlon": -73.9059595 + }, + "nodes": [ + 42908901, + 10744397945, + 9694280292, + 42874622 + ], + "geometry": [ + { "lat": 40.7761956, "lon": -73.9059595 }, + { "lat": 40.7761416, "lon": -73.9060254 }, + { "lat": 40.7744170, "lon": -73.9081273 }, + { "lat": 40.7743639, "lon": -73.9081920 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "36th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374482056, + "bounds": { + "minlat": 40.7717656, + "minlon": -73.9100545, + "maxlat": 40.7763630, + "maxlon": -73.9044469 + }, + "nodes": [ + 3778729681, + 9242368811, + 42877851, + 9242368807, + 13144318019, + 9776150557, + 42874625, + 9776150554, + 3144560089, + 10744397956, + 42888633, + 10744397942, + 7776763777, + 10744397955, + 42888629 + ], + "geometry": [ + { "lat": 40.7717656, "lon": -73.9100545 }, + { "lat": 40.7720367, "lon": -73.9097214 }, + { "lat": 40.7720942, "lon": -73.9096507 }, + { "lat": 40.7721526, "lon": -73.9095795 }, + { "lat": 40.7735873, "lon": -73.9078316 }, + { "lat": 40.7738107, "lon": -73.9075595 }, + { "lat": 40.7738673, "lon": -73.9074884 }, + { "lat": 40.7739276, "lon": -73.9074150 }, + { "lat": 40.7741539, "lon": -73.9071398 }, + { "lat": 40.7756425, "lon": -73.9053214 }, + { "lat": 40.7756990, "lon": -73.9052527 }, + { "lat": 40.7757599, "lon": -73.9051777 }, + { "lat": 40.7762691, "lon": -73.9045608 }, + { "lat": 40.7763089, "lon": -73.9045076 }, + { "lat": 40.7763630, "lon": -73.9044469 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "37th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374482057, + "bounds": { + "minlat": 40.7716096, + "minlon": -73.9102440, + "maxlat": 40.7717656, + "maxlon": -73.9100545 + }, + "nodes": [ + 3778729671, + 3778729681 + ], + "geometry": [ + { "lat": 40.7716096, "lon": -73.9102440 }, + { "lat": 40.7717656, "lon": -73.9100545 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "37th Street", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374482648, + "bounds": { + "minlat": 40.7709006, + "minlon": -73.9098041, + "maxlat": 40.7710594, + "maxlon": -73.9096155 + }, + "nodes": [ + 3778733315, + 3778733316 + ], + "geometry": [ + { "lat": 40.7710594, "lon": -73.9096155 }, + { "lat": 40.7709006, "lon": -73.9098041 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "38th Street", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374482656, + "bounds": { + "minlat": 40.7695825, + "minlon": -73.9113885, + "maxlat": 40.7709006, + "maxlon": -73.9098041 + }, + "nodes": [ + 3778733316, + 5866672687, + 6406731409, + 42841803 + ], + "geometry": [ + { "lat": 40.7709006, "lon": -73.9098041 }, + { "lat": 40.7697166, "lon": -73.9112340 }, + { "lat": 40.7696787, "lon": -73.9112807 }, + { "lat": 40.7695825, "lon": -73.9113885 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "38th Street", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374483407, + "bounds": { + "minlat": 40.7705720, + "minlon": -73.9074940, + "maxlat": 40.7741762, + "maxlon": -73.9030981 + }, + "nodes": [ + 42877859, + 9776150568, + 3144563430, + 9847967594, + 42874631, + 9847967557, + 8500089275, + 10744397967, + 42908916 + ], + "geometry": [ + { "lat": 40.7705720, "lon": -73.9074940 }, + { "lat": 40.7706340, "lon": -73.9074180 }, + { "lat": 40.7710905, "lon": -73.9068553 }, + { "lat": 40.7722844, "lon": -73.9054059 }, + { "lat": 40.7723439, "lon": -73.9053335 }, + { "lat": 40.7724007, "lon": -73.9052642 }, + { "lat": 40.7740920, "lon": -73.9032008 }, + { "lat": 40.7741197, "lon": -73.9031671 }, + { "lat": 40.7741762, "lon": -73.9030981 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "41st Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374483779, + "bounds": { + "minlat": 40.7700635, + "minlon": -73.9106012, + "maxlat": 40.7727696, + "maxlon": -73.9067729 + }, + "nodes": [ + 7829710749, + 9776150587, + 9776150578, + 42877859, + 9776150579, + 9236643611, + 42877856, + 9236657435, + 9776150533, + 42841795, + 9776150537, + 9242368809, + 42877851, + 9242368806, + 11619602892, + 9242368762, + 7659222884, + 42877849, + 9242368766, + 3778729682 + ], + "geometry": [ + { "lat": 40.7700635, "lon": -73.9067729 }, + { "lat": 40.7701177, "lon": -73.9068510 }, + { "lat": 40.7705267, "lon": -73.9074297 }, + { "lat": 40.7705720, "lon": -73.9074940 }, + { "lat": 40.7706213, "lon": -73.9075635 }, + { "lat": 40.7710356, "lon": -73.9081471 }, + { "lat": 40.7710893, "lon": -73.9082227 }, + { "lat": 40.7711444, "lon": -73.9083010 }, + { "lat": 40.7715525, "lon": -73.9088816 }, + { "lat": 40.7716023, "lon": -73.9089522 }, + { "lat": 40.7716537, "lon": -73.9090252 }, + { "lat": 40.7720531, "lon": -73.9095923 }, + { "lat": 40.7720942, "lon": -73.9096507 }, + { "lat": 40.7721396, "lon": -73.9097146 }, + { "lat": 40.7725234, "lon": -73.9102551 }, + { "lat": 40.7725446, "lon": -73.9102849 }, + { "lat": 40.7725767, "lon": -73.9103301 }, + { "lat": 40.7725925, "lon": -73.9103523 }, + { "lat": 40.7726441, "lon": -73.9104249 }, + { "lat": 40.7727696, "lon": -73.9106012 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "23rd Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374923077, + "bounds": { + "minlat": 40.7198427, + "minlon": -73.9786789, + "maxlat": 40.7199081, + "maxlon": -73.9785608 + }, + "nodes": [ + 3783073264, + 3783088926, + 3783073158, + 5798966626, + 5798966630, + 5798966631, + 3783073255, + 3783088924, + 3783071238, + 3783073264 + ], + "geometry": [ + { "lat": 40.7198427, "lon": -73.9785791 }, + { "lat": 40.7198722, "lon": -73.9786505 }, + { "lat": 40.7198780, "lon": -73.9786639 }, + { "lat": 40.7198887, "lon": -73.9786789 }, + { "lat": 40.7199008, "lon": -73.9786776 }, + { "lat": 40.7199081, "lon": -73.9786653 }, + { "lat": 40.7199035, "lon": -73.9786462 }, + { "lat": 40.7198981, "lon": -73.9786339 }, + { "lat": 40.7198679, "lon": -73.9785608 }, + { "lat": 40.7198427, "lon": -73.9785791 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 374923972, + "bounds": { + "minlat": 40.7211632, + "minlon": -73.9830269, + "maxlat": 40.7212780, + "maxlon": -73.9829678 + }, + "nodes": [ + 1919595912, + 3783071109 + ], + "geometry": [ + { "lat": 40.7211632, "lon": -73.9830269 }, + { "lat": 40.7212780, "lon": -73.9829678 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Attorney Street", + "name:ko": "어터니 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374923973, + "bounds": { + "minlat": 40.7199701, + "minlon": -73.9789334, + "maxlat": 40.7200249, + "maxlon": -73.9788293 + }, + "nodes": [ + 3783071108, + 3783088895, + 3783071234, + 3783071250, + 3783073176, + 3783073286, + 3783073292, + 3783073175, + 3783088879, + 3783071104, + 3783071108 + ], + "geometry": [ + { "lat": 40.7200249, "lon": -73.9789158 }, + { "lat": 40.7200035, "lon": -73.9788495 }, + { "lat": 40.7200000, "lon": -73.9788383 }, + { "lat": 40.7199949, "lon": -73.9788313 }, + { "lat": 40.7199864, "lon": -73.9788293 }, + { "lat": 40.7199711, "lon": -73.9788388 }, + { "lat": 40.7199701, "lon": -73.9788492 }, + { "lat": 40.7199720, "lon": -73.9788593 }, + { "lat": 40.7199730, "lon": -73.9788688 }, + { "lat": 40.7199916, "lon": -73.9789334 }, + { "lat": 40.7200249, "lon": -73.9789158 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 374923974, + "bounds": { + "minlat": 40.7209056, + "minlon": -73.9821814, + "maxlat": 40.7210194, + "maxlon": -73.9821197 + }, + "nodes": [ + 3783071112, + 1919595923 + ], + "geometry": [ + { "lat": 40.7210194, "lon": -73.9821197 }, + { "lat": 40.7209056, "lon": -73.9821814 } + ], + "tags": { + "foot": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Ridge Street", + "name:ko": "리지 스트리트", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374923975, + "bounds": { + "minlat": 40.7206366, + "minlon": -73.9812830, + "maxlat": 40.7207253, + "maxlon": -73.9811281 + }, + "nodes": [ + 3783071098, + 3783146169, + 3783071106, + 3783071090, + 5648878921, + 3783071093, + 3783071094, + 3783071100, + 3783071095, + 3783071103, + 3783071096, + 3783071098 + ], + "geometry": [ + { "lat": 40.7206638, "lon": -73.9812486 }, + { "lat": 40.7206596, "lon": -73.9812342 }, + { "lat": 40.7206370, "lon": -73.9811606 }, + { "lat": 40.7206983, "lon": -73.9811281 }, + { "lat": 40.7207165, "lon": -73.9811883 }, + { "lat": 40.7207251, "lon": -73.9812161 }, + { "lat": 40.7207253, "lon": -73.9812320 }, + { "lat": 40.7207203, "lon": -73.9812490 }, + { "lat": 40.7207064, "lon": -73.9812635 }, + { "lat": 40.7206880, "lon": -73.9812671 }, + { "lat": 40.7206366, "lon": -73.9812830 }, + { "lat": 40.7206638, "lon": -73.9812486 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 374925013, + "bounds": { + "minlat": 40.7191279, + "minlon": -73.9765360, + "maxlat": 40.7192034, + "maxlon": -73.9764026 + }, + "nodes": [ + 3783088933, + 3783088921, + 5690462871, + 3783088943, + 3783088917, + 3783088941, + 3783088927, + 3783088930, + 3783088934, + 3783088889, + 3783088914, + 3783073258, + 5690462870, + 3783088909, + 3783088911, + 3783088920, + 3783088915, + 3783088902, + 3783088901, + 3783088933 + ], + "geometry": [ + { "lat": 40.7191812, "lon": -73.9764113 }, + { "lat": 40.7191852, "lon": -73.9764197 }, + { "lat": 40.7191908, "lon": -73.9764468 }, + { "lat": 40.7191946, "lon": -73.9764649 }, + { "lat": 40.7192034, "lon": -73.9765075 }, + { "lat": 40.7191953, "lon": -73.9765020 }, + { "lat": 40.7191839, "lon": -73.9764997 }, + { "lat": 40.7191705, "lon": -73.9765019 }, + { "lat": 40.7191570, "lon": -73.9765104 }, + { "lat": 40.7191494, "lon": -73.9765222 }, + { "lat": 40.7191472, "lon": -73.9765360 }, + { "lat": 40.7191419, "lon": -73.9765113 }, + { "lat": 40.7191334, "lon": -73.9764701 }, + { "lat": 40.7191287, "lon": -73.9764469 }, + { "lat": 40.7191279, "lon": -73.9764345 }, + { "lat": 40.7191316, "lon": -73.9764241 }, + { "lat": 40.7191389, "lon": -73.9764154 }, + { "lat": 40.7191649, "lon": -73.9764026 }, + { "lat": 40.7191739, "lon": -73.9764045 }, + { "lat": 40.7191812, "lon": -73.9764113 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 374925024, + "bounds": { + "minlat": 40.7193019, + "minlon": -73.9773646, + "maxlat": 40.7193844, + "maxlon": -73.9772349 + }, + "nodes": [ + 3783088905, + 3783088894, + 3783073230, + 3783073203, + 3783088906, + 3783073223, + 3783088905 + ], + "geometry": [ + { "lat": 40.7193494, "lon": -73.9772349 }, + { "lat": 40.7193626, "lon": -73.9772821 }, + { "lat": 40.7193844, "lon": -73.9773327 }, + { "lat": 40.7193366, "lon": -73.9773646 }, + { "lat": 40.7193188, "lon": -73.9773132 }, + { "lat": 40.7193019, "lon": -73.9772662 }, + { "lat": 40.7193494, "lon": -73.9772349 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 374925029, + "bounds": { + "minlat": 40.7192622, + "minlon": -73.9771867, + "maxlat": 40.7193359, + "maxlon": -73.9770739 + }, + "nodes": [ + 3783088912, + 3783088896, + 3783088929, + 3783088918, + 3783088903, + 3783088875, + 3783088912 + ], + "geometry": [ + { "lat": 40.7193359, "lon": -73.9771677 }, + { "lat": 40.7192819, "lon": -73.9771867 }, + { "lat": 40.7192736, "lon": -73.9771461 }, + { "lat": 40.7192622, "lon": -73.9770918 }, + { "lat": 40.7193171, "lon": -73.9770739 }, + { "lat": 40.7193271, "lon": -73.9771244 }, + { "lat": 40.7193359, "lon": -73.9771677 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 375129182, + "bounds": { + "minlat": 40.7520260, + "minlon": -73.9110509, + "maxlat": 40.7525658, + "maxlon": -73.9102712 + }, + "nodes": [ + 3785177681, + 6450796176, + 3785177663, + 3785177673 + ], + "geometry": [ + { "lat": 40.7525658, "lon": -73.9102712 }, + { "lat": 40.7525535, "lon": -73.9103611 }, + { "lat": 40.7524588, "lon": -73.9110053 }, + { "lat": 40.7520260, "lon": -73.9110509 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 375129183, + "bounds": { + "minlat": 40.7518815, + "minlon": -73.9102840, + "maxlat": 40.7519201, + "maxlon": -73.9099809 + }, + "nodes": [ + 3785177675, + 6450796177, + 3785177662 + ], + "geometry": [ + { "lat": 40.7519201, "lon": -73.9099809 }, + { "lat": 40.7519097, "lon": -73.9100626 }, + { "lat": 40.7518815, "lon": -73.9102840 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375160033, + "bounds": { + "minlat": 40.7969764, + "minlon": -73.9216636, + "maxlat": 40.7992407, + "maxlon": -73.9185887 + }, + "nodes": [ + 3039386415, + 277482106, + 9153856248, + 3039386414, + 9153856249, + 277482107, + 9153856250, + 3039386412, + 9153856251, + 3039386430, + 595806636, + 12715806360, + 7734773025, + 9153856256, + 277482109, + 3607948339, + 277482110, + 3640160329, + 3640160328, + 3640160566, + 10224131396, + 2054405689, + 12998425187, + 9153856257, + 3640160565, + 9153856258, + 277482035, + 7937558690 + ], + "geometry": [ + { "lat": 40.7969764, "lon": -73.9185887 }, + { "lat": 40.7971264, "lon": -73.9186353 }, + { "lat": 40.7972029, "lon": -73.9186886 }, + { "lat": 40.7972675, "lon": -73.9187412 }, + { "lat": 40.7973216, "lon": -73.9187966 }, + { "lat": 40.7973782, "lon": -73.9188659 }, + { "lat": 40.7974384, "lon": -73.9189565 }, + { "lat": 40.7975188, "lon": -73.9190836 }, + { "lat": 40.7976137, "lon": -73.9192496 }, + { "lat": 40.7977207, "lon": -73.9194490 }, + { "lat": 40.7978698, "lon": -73.9197578 }, + { "lat": 40.7978933, "lon": -73.9198145 }, + { "lat": 40.7979742, "lon": -73.9200098 }, + { "lat": 40.7980563, "lon": -73.9201944 }, + { "lat": 40.7981384, "lon": -73.9203716 }, + { "lat": 40.7982533, "lon": -73.9205773 }, + { "lat": 40.7984050, "lon": -73.9207897 }, + { "lat": 40.7985062, "lon": -73.9209116 }, + { "lat": 40.7986152, "lon": -73.9210251 }, + { "lat": 40.7987273, "lon": -73.9211310 }, + { "lat": 40.7987685, "lon": -73.9211668 }, + { "lat": 40.7988273, "lon": -73.9212178 }, + { "lat": 40.7988687, "lon": -73.9212573 }, + { "lat": 40.7989122, "lon": -73.9213022 }, + { "lat": 40.7990032, "lon": -73.9213916 }, + { "lat": 40.7990864, "lon": -73.9214824 }, + { "lat": 40.7991637, "lon": -73.9215674 }, + { "lat": 40.7992407, "lon": -73.9216636 } + ], + "tags": { + "highway": "unclassified", + "name": "Bronx Shore Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 375163547, + "bounds": { + "minlat": 40.7595052, + "minlon": -73.9579979, + "maxlat": 40.7608900, + "maxlon": -73.9561742 + }, + "nodes": [ + 371188752, + 9142584950, + 9142744770, + 371188754, + 9142744771, + 3785575830, + 371188755, + 3785575819, + 371188756 + ], + "geometry": [ + { "lat": 40.7595052, "lon": -73.9579979 }, + { "lat": 40.7596368, "lon": -73.9578591 }, + { "lat": 40.7597171, "lon": -73.9577721 }, + { "lat": 40.7598015, "lon": -73.9576761 }, + { "lat": 40.7598763, "lon": -73.9575787 }, + { "lat": 40.7599538, "lon": -73.9574724 }, + { "lat": 40.7601008, "lon": -73.9572641 }, + { "lat": 40.7607278, "lon": -73.9563584 }, + { "lat": 40.7608900, "lon": -73.9561742 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 375164212, + "bounds": { + "minlat": 40.7596426, + "minlon": -73.9646643, + "maxlat": 40.7599331, + "maxlon": -73.9640002 + }, + "nodes": [ + 3785586743, + 3785586744, + 3785586745, + 42423565 + ], + "geometry": [ + { "lat": 40.7599331, "lon": -73.9646643 }, + { "lat": 40.7598584, "lon": -73.9645205 }, + { "lat": 40.7596822, "lon": -73.9641086 }, + { "lat": 40.7596426, "lon": -73.9640002 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375165500, + "bounds": { + "minlat": 40.7599331, + "minlon": -73.9670376, + "maxlat": 40.7609399, + "maxlon": -73.9646643 + }, + "nodes": [ + 42449971, + 8133385390, + 6188803956, + 42442961, + 3785586743 + ], + "geometry": [ + { "lat": 40.7609399, "lon": -73.9670376 }, + { "lat": 40.7608801, "lon": -73.9669001 }, + { "lat": 40.7600474, "lon": -73.9649346 }, + { "lat": 40.7599916, "lon": -73.9648028 }, + { "lat": 40.7599331, "lon": -73.9646643 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375165501, + "bounds": { + "minlat": 40.7609399, + "minlon": -73.9670376, + "maxlat": 40.7615618, + "maxlon": -73.9665890 + }, + "nodes": [ + 42449971, + 9649576883, + 12559421110, + 4918486104, + 4288677093 + ], + "geometry": [ + { "lat": 40.7609399, "lon": -73.9670376 }, + { "lat": 40.7609909, "lon": -73.9670019 }, + { "lat": 40.7613030, "lon": -73.9667743 }, + { "lat": 40.7615003, "lon": -73.9666304 }, + { "lat": 40.7615618, "lon": -73.9665890 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|||right|right", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 375165664, + "bounds": { + "minlat": 40.7602748, + "minlon": -73.9675757, + "maxlat": 40.7604309, + "maxlon": -73.9674577 + }, + "nodes": [ + 42432856, + 8133385387, + 8133385388 + ], + "geometry": [ + { "lat": 40.7602748, "lon": -73.9675757 }, + { "lat": 40.7603724, "lon": -73.9674998 }, + { "lat": 40.7604309, "lon": -73.9674577 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 375165665, + "bounds": { + "minlat": 40.7602235, + "minlon": -73.9675757, + "maxlat": 40.7602748, + "maxlon": -73.9674539 + }, + "nodes": [ + 42432856, + 6680686985 + ], + "geometry": [ + { "lat": 40.7602748, "lon": -73.9675757 }, + { "lat": 40.7602235, "lon": -73.9674539 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 375165666, + "bounds": { + "minlat": 40.7621951, + "minlon": -73.9661278, + "maxlat": 40.7623849, + "maxlon": -73.9659866 + }, + "nodes": [ + 6177439759, + 11336621691, + 8906253690 + ], + "geometry": [ + { "lat": 40.7621951, "lon": -73.9661278 }, + { "lat": 40.7622426, "lon": -73.9660926 }, + { "lat": 40.7623849, "lon": -73.9659866 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 375172503, + "bounds": { + "minlat": 40.7462474, + "minlon": -73.9403370, + "maxlat": 40.7467796, + "maxlon": -73.9401305 + }, + "nodes": [ + 2971758032, + 276035447 + ], + "geometry": [ + { "lat": 40.7467796, "lon": -73.9403370 }, + { "lat": 40.7462474, "lon": -73.9401305 } + ], + "tags": { + "access:conditional": "no @ (Mo-Fr 06:00-09:30); yes @ (Mo-Fr 06:00-09:30 AND occupants>1)", + "bicycle": "no", + "bridge": "viaduct", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "oneway": "reversible", + "oneway:conditional": "yes @ (Mo-Fr 00:00-06:00,09:30-24:00; Sa-Su); -1 @ (Mo-Fr 06:00-09:30)", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375186396, + "bounds": { + "minlat": 40.7428022, + "minlon": -73.9149659, + "maxlat": 40.7428854, + "maxlon": -73.9149503 + }, + "nodes": [ + 3718570848, + 276207581 + ], + "geometry": [ + { "lat": 40.7428854, "lon": -73.9149503 }, + { "lat": 40.7428022, "lon": -73.9149659 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lit": "yes", + "maxspeed:type": "US:urban", + "name": "50th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375186397, + "bounds": { + "minlat": 40.7425448, + "minlon": -73.9150166, + "maxlat": 40.7426731, + "maxlon": -73.9149933 + }, + "nodes": [ + 276207729, + 9986789933, + 276315696 + ], + "geometry": [ + { "lat": 40.7426731, "lon": -73.9149933 }, + { "lat": 40.7426063, "lon": -73.9150052 }, + { "lat": 40.7425448, "lon": -73.9150166 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lit": "yes", + "maxspeed:type": "US:urban", + "name": "50th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375186398, + "bounds": { + "minlat": 40.7419256, + "minlon": -73.9074851, + "maxlat": 40.7420476, + "maxlon": -73.9074523 + }, + "nodes": [ + 276314183, + 10203936762, + 42908315 + ], + "geometry": [ + { "lat": 40.7420476, "lon": -73.9074523 }, + { "lat": 40.7420136, "lon": -73.9074615 }, + { "lat": 40.7419256, "lon": -73.9074851 } + ], + "tags": { + "access": "yes", + "bicycle": "yes", + "cycleway": "no", + "foot": "yes", + "hgv": "local", + "highway": "secondary", + "maxspeed": "30 mph", + "motor_vehicle": "yes", + "name": "58th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375186402, + "bounds": { + "minlat": 40.7418160, + "minlon": -73.9071219, + "maxlat": 40.7420093, + "maxlon": -73.9054693 + }, + "nodes": [ + 276299163, + 597414711, + 5481947966 + ], + "geometry": [ + { "lat": 40.7418160, "lon": -73.9054693 }, + { "lat": 40.7418648, "lon": -73.9058953 }, + { "lat": 40.7420093, "lon": -73.9071219 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 375186404, + "bounds": { + "minlat": 40.7372094, + "minlon": -73.9065381, + "maxlat": 40.7415276, + "maxlon": -73.9063440 + }, + "nodes": [ + 276299039, + 10203936724, + 11694707665, + 5481949667, + 12908215061, + 42827525, + 12908215048, + 13703038176, + 10203222026, + 42827533, + 10203222046, + 8626128173, + 10087484111, + 42825315 + ], + "geometry": [ + { "lat": 40.7415276, "lon": -73.9063440 }, + { "lat": 40.7414785, "lon": -73.9063471 }, + { "lat": 40.7414296, "lon": -73.9063509 }, + { "lat": 40.7413808, "lon": -73.9063546 }, + { "lat": 40.7404837, "lon": -73.9063885 }, + { "lat": 40.7404090, "lon": -73.9063920 }, + { "lat": 40.7403496, "lon": -73.9064024 }, + { "lat": 40.7394241, "lon": -73.9064374 }, + { "lat": 40.7386542, "lon": -73.9064665 }, + { "lat": 40.7385843, "lon": -73.9064695 }, + { "lat": 40.7385361, "lon": -73.9064719 }, + { "lat": 40.7373605, "lon": -73.9065292 }, + { "lat": 40.7373121, "lon": -73.9065320 }, + { "lat": 40.7372094, "lon": -73.9065381 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "59th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375186405, + "bounds": { + "minlat": 40.7421457, + "minlon": -73.9082829, + "maxlat": 40.7453074, + "maxlon": -73.9075784 + }, + "nodes": [ + 276299049, + 9950327957, + 5481947776, + 9950327878, + 9950327850, + 42818006, + 9986780743, + 9986780745, + 42870250 + ], + "geometry": [ + { "lat": 40.7421457, "lon": -73.9082829 }, + { "lat": 40.7422201, "lon": -73.9082682 }, + { "lat": 40.7423777, "lon": -73.9082372 }, + { "lat": 40.7432426, "lon": -73.9080612 }, + { "lat": 40.7432876, "lon": -73.9080520 }, + { "lat": 40.7433377, "lon": -73.9080418 }, + { "lat": 40.7434074, "lon": -73.9080276 }, + { "lat": 40.7452073, "lon": -73.9076690 }, + { "lat": 40.7453074, "lon": -73.9075784 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "57th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375186406, + "bounds": { + "minlat": 40.7421457, + "minlon": -73.9092050, + "maxlat": 40.7422520, + "maxlon": -73.9082829 + }, + "nodes": [ + 276299049, + 5481947774, + 11694707627, + 276299050 + ], + "geometry": [ + { "lat": 40.7421457, "lon": -73.9082829 }, + { "lat": 40.7422209, "lon": -73.9089226 }, + { "lat": 40.7422410, "lon": -73.9091049 }, + { "lat": 40.7422520, "lon": -73.9092050 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 375186407, + "bounds": { + "minlat": 40.7423611, + "minlon": -73.9101229, + "maxlat": 40.7454285, + "maxlon": -73.9094772 + }, + "nodes": [ + 276299051, + 9950327905, + 9950327947, + 42870244, + 10762234107, + 5867099386, + 10074125220, + 42900269 + ], + "geometry": [ + { "lat": 40.7423611, "lon": -73.9101229 }, + { "lat": 40.7424309, "lon": -73.9101084 }, + { "lat": 40.7448709, "lon": -73.9095983 }, + { "lat": 40.7449410, "lon": -73.9095870 }, + { "lat": 40.7450307, "lon": -73.9095643 }, + { "lat": 40.7453299, "lon": -73.9095015 }, + { "lat": 40.7453636, "lon": -73.9094940 }, + { "lat": 40.7454285, "lon": -73.9094772 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "55th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375186408, + "bounds": { + "minlat": 40.7423611, + "minlon": -73.9110095, + "maxlat": 40.7424645, + "maxlon": -73.9101229 + }, + "nodes": [ + 276299051, + 10927727719, + 9986759201, + 276299052 + ], + "geometry": [ + { "lat": 40.7423611, "lon": -73.9101229 }, + { "lat": 40.7424102, "lon": -73.9105436 }, + { "lat": 40.7424539, "lon": -73.9109180 }, + { "lat": 40.7424645, "lon": -73.9110095 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 375186409, + "bounds": { + "minlat": 40.7425810, + "minlon": -73.9119032, + "maxlat": 40.7444710, + "maxlon": -73.9115090 + }, + "nodes": [ + 276299054, + 9950327872, + 5481947752, + 9950327739, + 42870235 + ], + "geometry": [ + { "lat": 40.7425810, "lon": -73.9119032 }, + { "lat": 40.7426420, "lon": -73.9118901 }, + { "lat": 40.7428662, "lon": -73.9118427 }, + { "lat": 40.7443776, "lon": -73.9115284 }, + { "lat": 40.7444710, "lon": -73.9115090 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "53rd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375186410, + "bounds": { + "minlat": 40.7425810, + "minlon": -73.9128105, + "maxlat": 40.7426843, + "maxlon": -73.9119032 + }, + "nodes": [ + 276299054, + 9986759208, + 276299053 + ], + "geometry": [ + { "lat": 40.7425810, "lon": -73.9119032 }, + { "lat": 40.7426710, "lon": -73.9126934 }, + { "lat": 40.7426843, "lon": -73.9128105 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 375186411, + "bounds": { + "minlat": 40.7428270, + "minlon": -73.9149378, + "maxlat": 40.7429346, + "maxlon": -73.9140317 + }, + "nodes": [ + 276299307, + 6349964619, + 12954458218, + 12046272434, + 7667163199, + 276315676 + ], + "geometry": [ + { "lat": 40.7428270, "lon": -73.9140317 }, + { "lat": 40.7428877, "lon": -73.9145790 }, + { "lat": 40.7429148, "lon": -73.9147882 }, + { "lat": 40.7429213, "lon": -73.9148383 }, + { "lat": 40.7429249, "lon": -73.9148614 }, + { "lat": 40.7429346, "lon": -73.9149378 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 375218638, + "bounds": { + "minlat": 40.7531194, + "minlon": -73.9086346, + "maxlat": 40.7535869, + "maxlon": -73.9085507 + }, + "nodes": [ + 3786044399, + 6450796167, + 8088605712 + ], + "geometry": [ + { "lat": 40.7535869, "lon": -73.9086346 }, + { "lat": 40.7532411, "lon": -73.9085735 }, + { "lat": 40.7531194, "lon": -73.9085507 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375218642, + "bounds": { + "minlat": 40.7536029, + "minlon": -73.9085953, + "maxlat": 40.7539454, + "maxlon": -73.9083015 + }, + "nodes": [ + 3786044413, + 8593804480, + 7661121866, + 7661121871, + 3786044395 + ], + "geometry": [ + { "lat": 40.7539454, "lon": -73.9083015 }, + { "lat": 40.7538818, "lon": -73.9083518 }, + { "lat": 40.7538276, "lon": -73.9083948 }, + { "lat": 40.7536247, "lon": -73.9085551 }, + { "lat": 40.7536029, "lon": -73.9085953 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375218644, + "bounds": { + "minlat": 40.7535582, + "minlon": -73.9089598, + "maxlat": 40.7536029, + "maxlon": -73.9085953 + }, + "nodes": [ + 3786044395, + 3786044399, + 7661121867, + 3786044398 + ], + "geometry": [ + { "lat": 40.7536029, "lon": -73.9085953 }, + { "lat": 40.7535869, "lon": -73.9086346 }, + { "lat": 40.7535742, "lon": -73.9087791 }, + { "lat": 40.7535582, "lon": -73.9089598 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375292435, + "bounds": { + "minlat": 40.8034258, + "minlon": -73.9327086, + "maxlat": 40.8039382, + "maxlon": -73.9323444 + }, + "nodes": [ + 3786758432, + 42426135 + ], + "geometry": [ + { "lat": 40.8034258, "lon": -73.9327086 }, + { "lat": 40.8039382, "lon": -73.9323444 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375312362, + "bounds": { + "minlat": 40.7610958, + "minlon": -73.9561062, + "maxlat": 40.7612292, + "maxlon": -73.9559451 + }, + "nodes": [ + 3785575783, + 371188320 + ], + "geometry": [ + { "lat": 40.7612292, "lon": -73.9559451 }, + { "lat": 40.7610958, "lon": -73.9561062 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "none|none|East 53rd Street;East 63rd Street;Ed Koch;Queensboro Bridge", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "turn:lanes": "none|none|through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 375313958, + "bounds": { + "minlat": 40.7635193, + "minlon": -73.9542116, + "maxlat": 40.7638580, + "maxlon": -73.9536403 + }, + "nodes": [ + 3786876206, + 3786876205, + 3786876204, + 3786876203, + 3786876202, + 3786876201, + 3786876200, + 3786876199, + 1733612450 + ], + "geometry": [ + { "lat": 40.7635193, "lon": -73.9536403 }, + { "lat": 40.7636637, "lon": -73.9539857 }, + { "lat": 40.7636836, "lon": -73.9540280 }, + { "lat": 40.7637024, "lon": -73.9540644 }, + { "lat": 40.7637233, "lon": -73.9540965 }, + { "lat": 40.7637498, "lon": -73.9541271 }, + { "lat": 40.7637829, "lon": -73.9541591 }, + { "lat": 40.7638183, "lon": -73.9541839 }, + { "lat": 40.7638580, "lon": -73.9542116 } + ], + "tags": { + "highway": "service", + "name": "East 68th Street", + "name:ru": "Восточная 68-я стрит", + "oneway": "yes", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 375313959, + "bounds": { + "minlat": 40.7649057, + "minlon": -73.9531890, + "maxlat": 40.7649788, + "maxlon": -73.9531344 + }, + "nodes": [ + 3786876211, + 10165922631, + 3786876212 + ], + "geometry": [ + { "lat": 40.7649057, "lon": -73.9531890 }, + { "lat": 40.7649659, "lon": -73.9531438 }, + { "lat": 40.7649788, "lon": -73.9531344 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "name": "Special Surgery Drive", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 375313960, + "bounds": { + "minlat": 40.7654571, + "minlon": -73.9527790, + "maxlat": 40.7655318, + "maxlon": -73.9527274 + }, + "nodes": [ + 3786876213, + 9142744769, + 3786876210 + ], + "geometry": [ + { "lat": 40.7654571, "lon": -73.9527790 }, + { "lat": 40.7654810, "lon": -73.9527619 }, + { "lat": 40.7655318, "lon": -73.9527274 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "name": "Special Surgery Drive", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 375313961, + "bounds": { + "minlat": 40.7649788, + "minlon": -73.9531344, + "maxlat": 40.7654571, + "maxlon": -73.9527790 + }, + "nodes": [ + 3786876212, + 3786876213 + ], + "geometry": [ + { "lat": 40.7649788, "lon": -73.9531344 }, + { "lat": 40.7654571, "lon": -73.9527790 } + ], + "tags": { + "bicycle": "dismount", + "highway": "service", + "lit": "yes", + "maxheight": "13'", + "name": "Special Surgery Drive", + "oneway": "yes", + "service": "driveway", + "sidewalk": "both", + "surface": "paving_stones", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 375314249, + "bounds": { + "minlat": 40.7688841, + "minlon": -73.9503462, + "maxlat": 40.7694673, + "maxlon": -73.9499394 + }, + "nodes": [ + 42430959, + 7137586321, + 3786873829 + ], + "geometry": [ + { "lat": 40.7694673, "lon": -73.9499394 }, + { "lat": 40.7694068, "lon": -73.9499775 }, + { "lat": 40.7688841, "lon": -73.9503462 } + ], + "tags": { + "highway": "pedestrian", + "name": "Cherokee Place", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 375316041, + "bounds": { + "minlat": 40.7604092, + "minlon": -73.9571258, + "maxlat": 40.7605963, + "maxlon": -73.9568408 + }, + "nodes": [ + 371189410, + 589298725 + ], + "geometry": [ + { "lat": 40.7605963, "lon": -73.9568408 }, + { "lat": 40.7604092, "lon": -73.9571258 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "tunnel": "building_passage", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 375316256, + "bounds": { + "minlat": 40.7554632, + "minlon": -73.9643154, + "maxlat": 40.7563888, + "maxlon": -73.9621088 + }, + "nodes": [ + 42455963, + 10168544064, + 11586092960, + 10992750784, + 6747002249, + 42440565 + ], + "geometry": [ + { "lat": 40.7563888, "lon": -73.9643154 }, + { "lat": 40.7563360, "lon": -73.9641897 }, + { "lat": 40.7559330, "lon": -73.9632295 }, + { "lat": 40.7555653, "lon": -73.9623536 }, + { "lat": 40.7555020, "lon": -73.9622028 }, + { "lat": 40.7554632, "lon": -73.9621088 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 54th Street", + "name:ru": "Восточная 54-я стрит", + "name_1": "East 54 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 375316257, + "bounds": { + "minlat": 40.7566809, + "minlon": -73.9641021, + "maxlat": 40.7570205, + "maxlon": -73.9638565 + }, + "nodes": [ + 9490559520, + 10121802246, + 42448390 + ], + "geometry": [ + { "lat": 40.7566809, "lon": -73.9641021 }, + { "lat": 40.7569518, "lon": -73.9639069 }, + { "lat": 40.7570205, "lon": -73.9638565 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 375471550, + "bounds": { + "minlat": 40.7522731, + "minlon": -73.9993388, + "maxlat": 40.7535535, + "maxlon": -73.9984513 + }, + "nodes": [ + 7502121831, + 427840994, + 4604283240 + ], + "geometry": [ + { "lat": 40.7522731, "lon": -73.9993388 }, + { "lat": 40.7533746, "lon": -73.9985462 }, + { "lat": 40.7535535, "lon": -73.9984513 } + ], + "tags": { + "destination": "Lincoln Tunnel", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "-1", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "note": "this is supposed to be a local truck route but signs say no trucks", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "toll": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 375554825, + "bounds": { + "minlat": 40.7262560, + "minlon": -73.9325128, + "maxlat": 40.7279096, + "maxlon": -73.9317781 + }, + "nodes": [ + 42509715, + 11026254017, + 5482263313, + 7833503764, + 7833503766, + 42476687 + ], + "geometry": [ + { "lat": 40.7262560, "lon": -73.9317781 }, + { "lat": 40.7263468, "lon": -73.9318201 }, + { "lat": 40.7268550, "lon": -73.9320552 }, + { "lat": 40.7270676, "lon": -73.9321469 }, + { "lat": 40.7275135, "lon": -73.9323444 }, + { "lat": 40.7279096, "lon": -73.9325128 } + ], + "tags": { + "highway": "unclassified", + "name": "Gardner Avenue", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375554827, + "bounds": { + "minlat": 40.7258260, + "minlon": -73.9341460, + "maxlat": 40.7268262, + "maxlon": -73.9333440 + }, + "nodes": [ + 42516108, + 8896031642, + 8896031640, + 9927149396, + 8896031641 + ], + "geometry": [ + { "lat": 40.7258260, "lon": -73.9333440 }, + { "lat": 40.7264645, "lon": -73.9336523 }, + { "lat": 40.7267874, "lon": -73.9340165 }, + { "lat": 40.7268009, "lon": -73.9340616 }, + { "lat": 40.7268262, "lon": -73.9341460 } + ], + "tags": { + "highway": "unclassified", + "name": "Stewart Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375554829, + "bounds": { + "minlat": 40.7266101, + "minlon": -73.9303959, + "maxlat": 40.7269875, + "maxlon": -73.9302165 + }, + "nodes": [ + 42530438, + 8370235788, + 9194902796 + ], + "geometry": [ + { "lat": 40.7266101, "lon": -73.9302165 }, + { "lat": 40.7266493, "lon": -73.9302352 }, + { "lat": 40.7269875, "lon": -73.9303959 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Scott Avenue" + } +}, +{ + "type": "way", + "id": 375554830, + "bounds": { + "minlat": 40.7253136, + "minlon": -73.9317781, + "maxlat": 40.7262560, + "maxlon": -73.9313569 + }, + "nodes": [ + 4022525304, + 13247193377, + 6760897313, + 12122899543, + 9765120315, + 9765199846, + 42509715 + ], + "geometry": [ + { "lat": 40.7253136, "lon": -73.9313569 }, + { "lat": 40.7254961, "lon": -73.9314388 }, + { "lat": 40.7255801, "lon": -73.9314765 }, + { "lat": 40.7257666, "lon": -73.9315619 }, + { "lat": 40.7260136, "lon": -73.9316750 }, + { "lat": 40.7261867, "lon": -73.9317454 }, + { "lat": 40.7262560, "lon": -73.9317781 } + ], + "tags": { + "highway": "unclassified", + "name": "Gardner Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 375600323, + "bounds": { + "minlat": 40.7442046, + "minlon": -73.9803931, + "maxlat": 40.7442828, + "maxlon": -73.9803353 + }, + "nodes": [ + 3793071955, + 8133342860, + 3789563970 + ], + "geometry": [ + { "lat": 40.7442828, "lon": -73.9803353 }, + { "lat": 40.7442604, "lon": -73.9803516 }, + { "lat": 40.7442046, "lon": -73.9803931 } + ], + "tags": { + "highway": "service", + "name": "Windsor Court", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 375603428, + "bounds": { + "minlat": 40.7447368, + "minlon": -73.9756309, + "maxlat": 40.7451041, + "maxlon": -73.9752253 + }, + "nodes": [ + 2827105723, + 3789572638, + 3789567227, + 3789572645, + 3789572642, + 3789572641, + 3789572646, + 3789572640, + 2827105766, + 2827105765, + 2827105763, + 3789563794, + 2827105754, + 2827105756, + 2827105753, + 2827105723 + ], + "geometry": [ + { "lat": 40.7447368, "lon": -73.9754026 }, + { "lat": 40.7447737, "lon": -73.9754857 }, + { "lat": 40.7447836, "lon": -73.9755080 }, + { "lat": 40.7447955, "lon": -73.9755355 }, + { "lat": 40.7448368, "lon": -73.9756309 }, + { "lat": 40.7449597, "lon": -73.9755409 }, + { "lat": 40.7449769, "lon": -73.9755283 }, + { "lat": 40.7449942, "lon": -73.9755156 }, + { "lat": 40.7451041, "lon": -73.9754351 }, + { "lat": 40.7450788, "lon": -73.9753753 }, + { "lat": 40.7450481, "lon": -73.9753979 }, + { "lat": 40.7450209, "lon": -73.9753336 }, + { "lat": 40.7449882, "lon": -73.9752563 }, + { "lat": 40.7449949, "lon": -73.9752513 }, + { "lat": 40.7449840, "lon": -73.9752253 }, + { "lat": 40.7447368, "lon": -73.9754026 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 375673048, + "bounds": { + "minlat": 40.7573632, + "minlon": -73.9733276, + "maxlat": 40.7583301, + "maxlon": -73.9722395 + }, + "nodes": [ + 1512024577, + 10254591063, + 12809825450, + 12809825454, + 12809825451, + 10165922698, + 12809825452, + 12809825449, + 10168547815, + 3790180109, + 11296575612, + 1512024585, + 1512024589, + 1290043830, + 1512024578, + 1512024584, + 1512024577 + ], + "geometry": [ + { "lat": 40.7582207, "lon": -73.9728012 }, + { "lat": 40.7582464, "lon": -73.9727825 }, + { "lat": 40.7582651, "lon": -73.9727689 }, + { "lat": 40.7583147, "lon": -73.9728877 }, + { "lat": 40.7583301, "lon": -73.9729244 }, + { "lat": 40.7583129, "lon": -73.9729369 }, + { "lat": 40.7577969, "lon": -73.9733129 }, + { "lat": 40.7577768, "lon": -73.9733276 }, + { "lat": 40.7577585, "lon": -73.9732839 }, + { "lat": 40.7573632, "lon": -73.9723383 }, + { "lat": 40.7573766, "lon": -73.9723285 }, + { "lat": 40.7573895, "lon": -73.9723191 }, + { "lat": 40.7574988, "lon": -73.9722395 }, + { "lat": 40.7577741, "lon": -73.9728980 }, + { "lat": 40.7579668, "lon": -73.9727576 }, + { "lat": 40.7580400, "lon": -73.9729328 }, + { "lat": 40.7582207, "lon": -73.9728012 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 375972517, + "bounds": { + "minlat": 40.7442764, + "minlon": -73.9803828, + "maxlat": 40.7444050, + "maxlon": -73.9802131 + }, + "nodes": [ + 3793071945, + 6936298725, + 3793071951, + 6936298722, + 3793071942, + 6936298720, + 3793071946, + 6936298739, + 3793071953, + 6936298737, + 3793071952, + 6936298735, + 3793071956, + 6936298733, + 3793071944, + 6936298730, + 3793071955, + 6936298729, + 3793071947, + 6936298726, + 3793071950, + 6936298723, + 3793071949, + 6936298721, + 3793098357, + 6936298740, + 3793071943, + 6936298738, + 3793098359, + 6936298736, + 3793071948, + 6936298734, + 3793098360, + 6936298732, + 3793098361, + 6936298728, + 3793071945 + ], + "geometry": [ + { "lat": 40.7444046, "lon": -73.9802877 }, + { "lat": 40.7444050, "lon": -73.9803033 }, + { "lat": 40.7444034, "lon": -73.9803173 }, + { "lat": 40.7443997, "lon": -73.9803322 }, + { "lat": 40.7443946, "lon": -73.9803446 }, + { "lat": 40.7443864, "lon": -73.9803578 }, + { "lat": 40.7443791, "lon": -73.9803662 }, + { "lat": 40.7443715, "lon": -73.9803726 }, + { "lat": 40.7443590, "lon": -73.9803795 }, + { "lat": 40.7443480, "lon": -73.9803825 }, + { "lat": 40.7443366, "lon": -73.9803828 }, + { "lat": 40.7443254, "lon": -73.9803806 }, + { "lat": 40.7443147, "lon": -73.9803758 }, + { "lat": 40.7443053, "lon": -73.9803690 }, + { "lat": 40.7442961, "lon": -73.9803593 }, + { "lat": 40.7442888, "lon": -73.9803484 }, + { "lat": 40.7442828, "lon": -73.9803353 }, + { "lat": 40.7442786, "lon": -73.9803205 }, + { "lat": 40.7442766, "lon": -73.9803070 }, + { "lat": 40.7442764, "lon": -73.9802922 }, + { "lat": 40.7442781, "lon": -73.9802779 }, + { "lat": 40.7442812, "lon": -73.9802654 }, + { "lat": 40.7442870, "lon": -73.9802510 }, + { "lat": 40.7442934, "lon": -73.9802402 }, + { "lat": 40.7443024, "lon": -73.9802297 }, + { "lat": 40.7443113, "lon": -73.9802224 }, + { "lat": 40.7443222, "lon": -73.9802165 }, + { "lat": 40.7443328, "lon": -73.9802136 }, + { "lat": 40.7443444, "lon": -73.9802131 }, + { "lat": 40.7443568, "lon": -73.9802157 }, + { "lat": 40.7443660, "lon": -73.9802198 }, + { "lat": 40.7443760, "lon": -73.9802269 }, + { "lat": 40.7443846, "lon": -73.9802358 }, + { "lat": 40.7443913, "lon": -73.9802454 }, + { "lat": 40.7443980, "lon": -73.9802592 }, + { "lat": 40.7444021, "lon": -73.9802722 }, + { "lat": 40.7444046, "lon": -73.9802877 } + ], + "tags": { + "highway": "service", + "name": "Windsor Court", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 376131195, + "bounds": { + "minlat": 40.8538291, + "minlon": -73.9204286, + "maxlat": 40.8540266, + "maxlon": -73.9203216 + }, + "nodes": [ + 3795459768, + 12058107128, + 3795459770, + 12058107127, + 3795459773, + 12058107126, + 12058107125, + 3795459771, + 3795459772, + 12058107124, + 12058107123 + ], + "geometry": [ + { "lat": 40.8540266, "lon": -73.9204286 }, + { "lat": 40.8539726, "lon": -73.9203568 }, + { "lat": 40.8539582, "lon": -73.9203428 }, + { "lat": 40.8539414, "lon": -73.9203321 }, + { "lat": 40.8539248, "lon": -73.9203248 }, + { "lat": 40.8539095, "lon": -73.9203216 }, + { "lat": 40.8538926, "lon": -73.9203220 }, + { "lat": 40.8538744, "lon": -73.9203255 }, + { "lat": 40.8538591, "lon": -73.9203313 }, + { "lat": 40.8538457, "lon": -73.9203390 }, + { "lat": 40.8538291, "lon": -73.9203503 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 376131196, + "bounds": { + "minlat": 40.8540184, + "minlon": -73.9204286, + "maxlat": 40.8540489, + "maxlon": -73.9202489 + }, + "nodes": [ + 3795459768, + 3795459775, + 3795459776, + 3795459787, + 3795459774 + ], + "geometry": [ + { "lat": 40.8540266, "lon": -73.9204286 }, + { "lat": 40.8540184, "lon": -73.9203817 }, + { "lat": 40.8540184, "lon": -73.9203307 }, + { "lat": 40.8540286, "lon": -73.9202851 }, + { "lat": 40.8540489, "lon": -73.9202489 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 376131197, + "bounds": { + "minlat": 40.8540266, + "minlon": -73.9205198, + "maxlat": 40.8546626, + "maxlon": -73.9198077 + }, + "nodes": [ + 3795459790, + 3795459793, + 3795459789, + 3795459795, + 3795459792, + 3795459796, + 3795459791, + 3795459794, + 3795459788, + 3795459777, + 3795459783, + 3795459779, + 3795459782, + 3795459778, + 3795459781, + 3795459780, + 3795459768 + ], + "geometry": [ + { "lat": 40.8545987, "lon": -73.9198077 }, + { "lat": 40.8546271, "lon": -73.9198627 }, + { "lat": 40.8546504, "lon": -73.9199217 }, + { "lat": 40.8546595, "lon": -73.9199619 }, + { "lat": 40.8546626, "lon": -73.9200115 }, + { "lat": 40.8546565, "lon": -73.9200491 }, + { "lat": 40.8546484, "lon": -73.9200853 }, + { "lat": 40.8546190, "lon": -73.9201416 }, + { "lat": 40.8545814, "lon": -73.9201912 }, + { "lat": 40.8542822, "lon": -73.9204715 }, + { "lat": 40.8542497, "lon": -73.9204943 }, + { "lat": 40.8542142, "lon": -73.9205131 }, + { "lat": 40.8541828, "lon": -73.9205198 }, + { "lat": 40.8541463, "lon": -73.9205171 }, + { "lat": 40.8541158, "lon": -73.9205077 }, + { "lat": 40.8540793, "lon": -73.9204889 }, + { "lat": 40.8540266, "lon": -73.9204286 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 376131198, + "bounds": { + "minlat": 40.8538291, + "minlon": -73.9203503, + "maxlat": 40.8540489, + "maxlon": -73.9202458 + }, + "nodes": [ + 12058107123, + 12058062020, + 3795459785, + 3795459784, + 12058062021, + 3795459786, + 3795459774 + ], + "geometry": [ + { "lat": 40.8538291, "lon": -73.9203503 }, + { "lat": 40.8539031, "lon": -73.9202801 }, + { "lat": 40.8539135, "lon": -73.9202719 }, + { "lat": 40.8539244, "lon": -73.9202656 }, + { "lat": 40.8539352, "lon": -73.9202612 }, + { "lat": 40.8539805, "lon": -73.9202458 }, + { "lat": 40.8540489, "lon": -73.9202489 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 376131199, + "bounds": { + "minlat": 40.8540489, + "minlon": -73.9202489, + "maxlat": 40.8545987, + "maxlon": -73.9197943 + }, + "nodes": [ + 3795459774, + 3795459797, + 3795459799, + 3795459798, + 3795459800, + 3795459790 + ], + "geometry": [ + { "lat": 40.8540489, "lon": -73.9202489 }, + { "lat": 40.8544790, "lon": -73.9198278 }, + { "lat": 40.8545094, "lon": -73.9198050 }, + { "lat": 40.8545378, "lon": -73.9197956 }, + { "lat": 40.8545682, "lon": -73.9197943 }, + { "lat": 40.8545987, "lon": -73.9198077 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 376131200, + "bounds": { + "minlat": 40.8545946, + "minlon": -73.9198077, + "maxlat": 40.8546352, + "maxlon": -73.9196709 + }, + "nodes": [ + 3795459801, + 3795459806, + 3795459804, + 3795459805, + 3795459790 + ], + "geometry": [ + { "lat": 40.8546352, "lon": -73.9196709 }, + { "lat": 40.8546342, "lon": -73.9196749 }, + { "lat": 40.8546068, "lon": -73.9197165 }, + { "lat": 40.8545946, "lon": -73.9197688 }, + { "lat": 40.8545987, "lon": -73.9198077 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 376131201, + "bounds": { + "minlat": 40.8546352, + "minlon": -73.9196709, + "maxlat": 40.8556565, + "maxlon": -73.9190249 + }, + "nodes": [ + 3795459801, + 3795459802, + 3795459803, + 3798801742, + 3798801737, + 3798801736 + ], + "geometry": [ + { "lat": 40.8546352, "lon": -73.9196709 }, + { "lat": 40.8550491, "lon": -73.9192927 }, + { "lat": 40.8553128, "lon": -73.9192243 }, + { "lat": 40.8554517, "lon": -73.9191233 }, + { "lat": 40.8555870, "lon": -73.9190249 }, + { "lat": 40.8556565, "lon": -73.9192509 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 376131202, + "bounds": { + "minlat": 40.8544790, + "minlon": -73.9198278, + "maxlat": 40.8546352, + "maxlon": -73.9196709 + }, + "nodes": [ + 3795459797, + 3795459801 + ], + "geometry": [ + { "lat": 40.8544790, "lon": -73.9198278 }, + { "lat": 40.8546352, "lon": -73.9196709 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 376134943, + "bounds": { + "minlat": 40.7366110, + "minlon": -73.9308371, + "maxlat": 40.7371642, + "maxlon": -73.9277687 + }, + "nodes": [ + 42901459, + 42836398, + 9179114961, + 42896796 + ], + "geometry": [ + { "lat": 40.7366110, "lon": -73.9277687 }, + { "lat": 40.7367000, "lon": -73.9284977 }, + { "lat": 40.7371308, "lon": -73.9306808 }, + { "lat": 40.7371642, "lon": -73.9308371 } + ], + "tags": { + "foot": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 376366580, + "bounds": { + "minlat": 40.7383134, + "minlon": -73.9232931, + "maxlat": 40.7383790, + "maxlon": -73.9227183 + }, + "nodes": [ + 3798032447, + 3798032442 + ], + "geometry": [ + { "lat": 40.7383134, "lon": -73.9227183 }, + { "lat": 40.7383790, "lon": -73.9232931 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 376366581, + "bounds": { + "minlat": 40.7380057, + "minlon": -73.9233544, + "maxlat": 40.7386210, + "maxlon": -73.9226571 + }, + "nodes": [ + 3798032438, + 3798032439, + 3798032447, + 3798032440, + 3798032444, + 3798032441 + ], + "geometry": [ + { "lat": 40.7386210, "lon": -73.9226571 }, + { "lat": 40.7384672, "lon": -73.9226877 }, + { "lat": 40.7383134, "lon": -73.9227183 }, + { "lat": 40.7381595, "lon": -73.9227490 }, + { "lat": 40.7380057, "lon": -73.9227796 }, + { "lat": 40.7380714, "lon": -73.9233544 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 376366582, + "bounds": { + "minlat": 40.7384672, + "minlon": -73.9232625, + "maxlat": 40.7385329, + "maxlon": -73.9226877 + }, + "nodes": [ + 3798032439, + 3798032437 + ], + "geometry": [ + { "lat": 40.7384672, "lon": -73.9226877 }, + { "lat": 40.7385329, "lon": -73.9232625 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 376366584, + "bounds": { + "minlat": 40.7381595, + "minlon": -73.9233237, + "maxlat": 40.7382252, + "maxlon": -73.9227490 + }, + "nodes": [ + 3798032440, + 3798032443 + ], + "geometry": [ + { "lat": 40.7381595, "lon": -73.9227490 }, + { "lat": 40.7382252, "lon": -73.9233237 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 376403762, + "bounds": { + "minlat": 40.7437218, + "minlon": -73.9243604, + "maxlat": 40.7439112, + "maxlon": -73.9241611 + }, + "nodes": [ + 3798377317, + 7576390390, + 3798377283, + 7576390389, + 3798377299, + 10743722028, + 4636542646, + 10743722026, + 3798377338, + 7576390392, + 3798377327, + 7576390391, + 3798377322, + 10743722025, + 4636542645, + 10762234109, + 3798377317 + ], + "geometry": [ + { "lat": 40.7439112, "lon": -73.9243278 }, + { "lat": 40.7438904, "lon": -73.9243318 }, + { "lat": 40.7438312, "lon": -73.9243431 }, + { "lat": 40.7437626, "lon": -73.9243561 }, + { "lat": 40.7437400, "lon": -73.9243604 }, + { "lat": 40.7437387, "lon": -73.9243484 }, + { "lat": 40.7437312, "lon": -73.9242793 }, + { "lat": 40.7437253, "lon": -73.9242252 }, + { "lat": 40.7437218, "lon": -73.9241937 }, + { "lat": 40.7437423, "lon": -73.9241898 }, + { "lat": 40.7438066, "lon": -73.9241775 }, + { "lat": 40.7438702, "lon": -73.9241654 }, + { "lat": 40.7438929, "lon": -73.9241611 }, + { "lat": 40.7438953, "lon": -73.9241827 }, + { "lat": 40.7439019, "lon": -73.9242429 }, + { "lat": 40.7439092, "lon": -73.9243093 }, + { "lat": 40.7439112, "lon": -73.9243278 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 376403765, + "bounds": { + "minlat": 40.7429776, + "minlon": -73.9168213, + "maxlat": 40.7430994, + "maxlon": -73.9168046 + }, + "nodes": [ + 276207582, + 3798377326 + ], + "geometry": [ + { "lat": 40.7430994, "lon": -73.9168046 }, + { "lat": 40.7429776, "lon": -73.9168213 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "service" + } +}, +{ + "type": "way", + "id": 376403766, + "bounds": { + "minlat": 40.7422023, + "minlon": -73.9188878, + "maxlat": 40.7430112, + "maxlon": -73.9187293 + }, + "nodes": [ + 2844853151, + 10743722575, + 10743722509, + 42833574 + ], + "geometry": [ + { "lat": 40.7430112, "lon": -73.9187293 }, + { "lat": 40.7429168, "lon": -73.9187477 }, + { "lat": 40.7422892, "lon": -73.9188739 }, + { "lat": 40.7422023, "lon": -73.9188878 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed:conditional": "5 mph @ (8:00-20:00)", + "motor_vehicle:conditional": "destination @ (8:00-20:00)", + "name": "46th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 376403767, + "bounds": { + "minlat": 40.7435190, + "minlon": -73.9241775, + "maxlat": 40.7438066, + "maxlon": -73.9216175 + }, + "nodes": [ + 3798377308, + 10762221346, + 3798377342, + 10762221345, + 10762221347, + 3798377339, + 10762221348, + 3798377327 + ], + "geometry": [ + { "lat": 40.7435190, "lon": -73.9216175 }, + { "lat": 40.7436002, "lon": -73.9223282 }, + { "lat": 40.7436106, "lon": -73.9224141 }, + { "lat": 40.7436193, "lon": -73.9224927 }, + { "lat": 40.7437102, "lon": -73.9232528 }, + { "lat": 40.7437197, "lon": -73.9233321 }, + { "lat": 40.7437273, "lon": -73.9234096 }, + { "lat": 40.7438066, "lon": -73.9241775 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 376403769, + "bounds": { + "minlat": 40.7430049, + "minlon": -73.9186096, + "maxlat": 40.7431579, + "maxlon": -73.9172414 + }, + "nodes": [ + 3798377315, + 10762282889, + 3798377337, + 10762282890, + 3798377310 + ], + "geometry": [ + { "lat": 40.7431579, "lon": -73.9186096 }, + { "lat": 40.7430706, "lon": -73.9178366 }, + { "lat": 40.7430621, "lon": -73.9177616 }, + { "lat": 40.7430551, "lon": -73.9176978 }, + { "lat": 40.7430049, "lon": -73.9172414 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 376403770, + "bounds": { + "minlat": 40.7438312, + "minlon": -73.9251776, + "maxlat": 40.7439333, + "maxlon": -73.9243431 + }, + "nodes": [ + 3798377296, + 10774405535, + 3798377283 + ], + "geometry": [ + { "lat": 40.7439333, "lon": -73.9251776 }, + { "lat": 40.7439252, "lon": -73.9251109 }, + { "lat": 40.7438312, "lon": -73.9243431 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 376403771, + "bounds": { + "minlat": 40.7395317, + "minlon": -73.9251161, + "maxlat": 40.7436545, + "maxlon": -73.9243034 + }, + "nodes": [ + 2844853159, + 10743722625, + 10743722630, + 10081023609, + 42860609, + 10081023611, + 10743722119, + 13701225514, + 10081023610, + 42880313, + 10083107655, + 10084797157, + 42896819 + ], + "geometry": [ + { "lat": 40.7436545, "lon": -73.9243034 }, + { "lat": 40.7435645, "lon": -73.9243211 }, + { "lat": 40.7426608, "lon": -73.9244990 }, + { "lat": 40.7418899, "lon": -73.9246507 }, + { "lat": 40.7418093, "lon": -73.9246667 }, + { "lat": 40.7417273, "lon": -73.9246839 }, + { "lat": 40.7408435, "lon": -73.9248635 }, + { "lat": 40.7406539, "lon": -73.9249020 }, + { "lat": 40.7400476, "lon": -73.9250253 }, + { "lat": 40.7399626, "lon": -73.9250345 }, + { "lat": 40.7398798, "lon": -73.9250439 }, + { "lat": 40.7396259, "lon": -73.9250925 }, + { "lat": 40.7395317, "lon": -73.9251161 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "40th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 376403772, + "bounds": { + "minlat": 40.7431765, + "minlon": -73.9213311, + "maxlat": 40.7434850, + "maxlon": -73.9187743 + }, + "nodes": [ + 3798377312, + 10762282652, + 3798377295, + 10762282651, + 10762282650, + 3798377304, + 10762282649, + 3798377321 + ], + "geometry": [ + { "lat": 40.7434850, "lon": -73.9213311 }, + { "lat": 40.7434017, "lon": -73.9206339 }, + { "lat": 40.7433917, "lon": -73.9205507 }, + { "lat": 40.7433825, "lon": -73.9204748 }, + { "lat": 40.7432893, "lon": -73.9197045 }, + { "lat": 40.7432787, "lon": -73.9196167 }, + { "lat": 40.7432702, "lon": -73.9195463 }, + { "lat": 40.7431765, "lon": -73.9187743 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 376403774, + "bounds": { + "minlat": 40.7430850, + "minlon": -73.9187886, + "maxlat": 40.7432563, + "maxlon": -73.9185938 + }, + "nodes": [ + 3798377332, + 7576390393, + 3798377321, + 7576390398, + 3798377285, + 4636542656, + 4636542658, + 4636542653, + 3798377286, + 7576390397, + 3798377315, + 7576390394, + 3798377345, + 4636542652, + 4636542657, + 4636542651, + 3798377332 + ], + "geometry": [ + { "lat": 40.7432563, "lon": -73.9187528 }, + { "lat": 40.7432439, "lon": -73.9187611 }, + { "lat": 40.7431765, "lon": -73.9187743 }, + { "lat": 40.7431225, "lon": -73.9187849 }, + { "lat": 40.7431035, "lon": -73.9187886 }, + { "lat": 40.7431008, "lon": -73.9187689 }, + { "lat": 40.7430941, "lon": -73.9187108 }, + { "lat": 40.7430876, "lon": -73.9186470 }, + { "lat": 40.7430850, "lon": -73.9186239 }, + { "lat": 40.7431041, "lon": -73.9186201 }, + { "lat": 40.7431579, "lon": -73.9186096 }, + { "lat": 40.7432253, "lon": -73.9185963 }, + { "lat": 40.7432383, "lon": -73.9185938 }, + { "lat": 40.7432409, "lon": -73.9186158 }, + { "lat": 40.7432497, "lon": -73.9186812 }, + { "lat": 40.7432548, "lon": -73.9187397 }, + { "lat": 40.7432563, "lon": -73.9187528 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 376406580, + "bounds": { + "minlat": 40.7446899, + "minlon": -73.9326137, + "maxlat": 40.7447821, + "maxlon": -73.9317850 + }, + "nodes": [ + 3798410807, + 10762203042, + 3798410792 + ], + "geometry": [ + { "lat": 40.7447821, "lon": -73.9326137 }, + { "lat": 40.7447731, "lon": -73.9325328 }, + { "lat": 40.7446899, "lon": -73.9317850 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 376406586, + "bounds": { + "minlat": 40.7445801, + "minlon": -73.9315985, + "maxlat": 40.7446680, + "maxlon": -73.9307528 + }, + "nodes": [ + 3798410774, + 10762203044, + 3798410791 + ], + "geometry": [ + { "lat": 40.7445801, "lon": -73.9307528 }, + { "lat": 40.7445892, "lon": -73.9308400 }, + { "lat": 40.7446680, "lon": -73.9315985 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 376406587, + "bounds": { + "minlat": 40.7448198, + "minlon": -73.9316555, + "maxlat": 40.7464300, + "maxlon": -73.9313344 + }, + "nodes": [ + 597294548, + 10743714093, + 8316237146, + 10069673260, + 42817753 + ], + "geometry": [ + { "lat": 40.7448198, "lon": -73.9316555 }, + { "lat": 40.7449270, "lon": -73.9316342 }, + { "lat": 40.7462824, "lon": -73.9313646 }, + { "lat": 40.7463274, "lon": -73.9313556 }, + { "lat": 40.7464300, "lon": -73.9313344 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "33rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 376406589, + "bounds": { + "minlat": 40.7440062, + "minlon": -73.9298199, + "maxlat": 40.7444746, + "maxlon": -73.9257823 + }, + "nodes": [ + 3798410784, + 10762203046, + 3798410773, + 10762203047, + 10762203048, + 3798410797, + 10762203049, + 10762203050, + 3798410769, + 10762203051, + 10762203052, + 3798410796, + 10762203053, + 10762203045, + 3798410772 + ], + "geometry": [ + { "lat": 40.7440062, "lon": -73.9257823 }, + { "lat": 40.7440358, "lon": -73.9260468 }, + { "lat": 40.7440468, "lon": -73.9261448 }, + { "lat": 40.7440603, "lon": -73.9262607 }, + { "lat": 40.7441417, "lon": -73.9269596 }, + { "lat": 40.7441516, "lon": -73.9270446 }, + { "lat": 40.7441616, "lon": -73.9271316 }, + { "lat": 40.7442491, "lon": -73.9278888 }, + { "lat": 40.7442579, "lon": -73.9279653 }, + { "lat": 40.7442680, "lon": -73.9280531 }, + { "lat": 40.7443562, "lon": -73.9288159 }, + { "lat": 40.7443655, "lon": -73.9288959 }, + { "lat": 40.7443772, "lon": -73.9289954 }, + { "lat": 40.7444665, "lon": -73.9297458 }, + { "lat": 40.7444746, "lon": -73.9298199 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 376406590, + "bounds": { + "minlat": 40.7445779, + "minlon": -73.9318034, + "maxlat": 40.7447783, + "maxlon": -73.9315804 + }, + "nodes": [ + 3798410775, + 7576331283, + 3798410791, + 7576390386, + 3798410778, + 10743714098, + 4636542644, + 10743714101, + 3798410795, + 7576390385, + 10762203043, + 3798410792, + 7576331284, + 3798410802, + 10743714097, + 4636542643, + 10743714096, + 3798410775 + ], + "geometry": [ + { "lat": 40.7447565, "lon": -73.9315804 }, + { "lat": 40.7447290, "lon": -73.9315860 }, + { "lat": 40.7446680, "lon": -73.9315985 }, + { "lat": 40.7445978, "lon": -73.9316128 }, + { "lat": 40.7445779, "lon": -73.9316168 }, + { "lat": 40.7445818, "lon": -73.9316396 }, + { "lat": 40.7445876, "lon": -73.9316999 }, + { "lat": 40.7445969, "lon": -73.9317799 }, + { "lat": 40.7445997, "lon": -73.9318034 }, + { "lat": 40.7446192, "lon": -73.9317995 }, + { "lat": 40.7446228, "lon": -73.9317988 }, + { "lat": 40.7446899, "lon": -73.9317850 }, + { "lat": 40.7447483, "lon": -73.9317731 }, + { "lat": 40.7447783, "lon": -73.9317670 }, + { "lat": 40.7447753, "lon": -73.9317417 }, + { "lat": 40.7447660, "lon": -73.9316618 }, + { "lat": 40.7447594, "lon": -73.9316054 }, + { "lat": 40.7447565, "lon": -73.9315804 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 376469095, + "bounds": { + "minlat": 40.8555870, + "minlon": -73.9190249, + "maxlat": 40.8558115, + "maxlon": -73.9188405 + }, + "nodes": [ + 3798801737, + 3798801776 + ], + "geometry": [ + { "lat": 40.8555870, "lon": -73.9190249 }, + { "lat": 40.8558115, "lon": -73.9188405 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 376545878, + "bounds": { + "minlat": 40.7503748, + "minlon": -73.9925198, + "maxlat": 40.7508315, + "maxlon": -73.9922566 + }, + "nodes": [ + 3799572065, + 11512945750, + 11512945753, + 11512945751, + 11512945752, + 9413881758, + 9413881764, + 9419131123, + 4599496692 + ], + "geometry": [ + { "lat": 40.7508315, "lon": -73.9923103 }, + { "lat": 40.7508117, "lon": -73.9922772 }, + { "lat": 40.7507900, "lon": -73.9922604 }, + { "lat": 40.7507677, "lon": -73.9922566 }, + { "lat": 40.7507424, "lon": -73.9922615 }, + { "lat": 40.7507146, "lon": -73.9922783 }, + { "lat": 40.7506839, "lon": -73.9923002 }, + { "lat": 40.7506682, "lon": -73.9923114 }, + { "lat": 40.7503748, "lon": -73.9925198 } + ], + "tags": { + "access": "no", + "highway": "service", + "maxspeed": "5 mph", + "name": "Pennsylvania Plaza" + } +}, +{ + "type": "way", + "id": 377184103, + "bounds": { + "minlat": 40.8653465, + "minlon": -73.9303839, + "maxlat": 40.8654845, + "maxlon": -73.9302028 + }, + "nodes": [ + 3805630279, + 3805630289, + 3805630291, + 3805630280, + 3805630288, + 3805630287, + 3805630286, + 3805630285, + 3805630281, + 3805630284, + 3805630283, + 3805630282, + 3805630279 + ], + "geometry": [ + { "lat": 40.8654845, "lon": -73.9303839 }, + { "lat": 40.8654708, "lon": -73.9303788 }, + { "lat": 40.8653688, "lon": -73.9303415 }, + { "lat": 40.8653506, "lon": -73.9303342 }, + { "lat": 40.8653516, "lon": -73.9302927 }, + { "lat": 40.8653465, "lon": -73.9302524 }, + { "lat": 40.8653577, "lon": -73.9302176 }, + { "lat": 40.8653830, "lon": -73.9302028 }, + { "lat": 40.8654124, "lon": -73.9302055 }, + { "lat": 40.8654449, "lon": -73.9302270 }, + { "lat": 40.8654662, "lon": -73.9302645 }, + { "lat": 40.8654774, "lon": -73.9303235 }, + { "lat": 40.8654845, "lon": -73.9303839 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 377337400, + "bounds": { + "minlat": 40.7603781, + "minlon": -73.9182355, + "maxlat": 40.7606893, + "maxlon": -73.9177499 + }, + "nodes": [ + 3807145255, + 6406789584, + 3807145463, + 3807145253, + 6406791485, + 3807145460 + ], + "geometry": [ + { "lat": 40.7605248, "lon": -73.9177499 }, + { "lat": 40.7605620, "lon": -73.9178337 }, + { "lat": 40.7606893, "lon": -73.9181201 }, + { "lat": 40.7605409, "lon": -73.9182355 }, + { "lat": 40.7604172, "lon": -73.9179573 }, + { "lat": 40.7603781, "lon": -73.9178694 } + ], + "tags": { + "highway": "service", + "parking:right": "separate", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 377339424, + "bounds": { + "minlat": 40.7636998, + "minlon": -73.9166256, + "maxlat": 40.7640340, + "maxlon": -73.9161153 + }, + "nodes": [ + 3807166512, + 6406731512, + 3807166505, + 3807166498, + 3807166492, + 3807166506, + 6406731511, + 3807166490 + ], + "geometry": [ + { "lat": 40.7638624, "lon": -73.9161153 }, + { "lat": 40.7638978, "lon": -73.9162006 }, + { "lat": 40.7640340, "lon": -73.9165336 }, + { "lat": 40.7639340, "lon": -73.9166256 }, + { "lat": 40.7638260, "lon": -73.9164027 }, + { "lat": 40.7637630, "lon": -73.9163866 }, + { "lat": 40.7637379, "lon": -73.9163311 }, + { "lat": 40.7636998, "lon": -73.9162476 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 377339425, + "bounds": { + "minlat": 40.7639174, + "minlon": -73.9158046, + "maxlat": 40.7641810, + "maxlon": -73.9155956 + }, + "nodes": [ + 3807166495, + 6450520201, + 3807166494 + ], + "geometry": [ + { "lat": 40.7641810, "lon": -73.9155956 }, + { "lat": 40.7641076, "lon": -73.9156538 }, + { "lat": 40.7639174, "lon": -73.9158046 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 377339426, + "bounds": { + "minlat": 40.7634611, + "minlon": -73.9161694, + "maxlat": 40.7639174, + "maxlon": -73.9157375 + }, + "nodes": [ + 3807166494, + 3807166497, + 3807166507, + 3807166496, + 3807166511, + 3807166494 + ], + "geometry": [ + { "lat": 40.7639174, "lon": -73.9158046 }, + { "lat": 40.7639053, "lon": -73.9158636 }, + { "lat": 40.7635294, "lon": -73.9161694 }, + { "lat": 40.7634611, "lon": -73.9160268 }, + { "lat": 40.7638159, "lon": -73.9157375 }, + { "lat": 40.7639174, "lon": -73.9158046 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 377339428, + "bounds": { + "minlat": 40.7635294, + "minlon": -73.9163274, + "maxlat": 40.7636017, + "maxlon": -73.9161694 + }, + "nodes": [ + 3807166507, + 6406731504, + 3807166501 + ], + "geometry": [ + { "lat": 40.7635294, "lon": -73.9161694 }, + { "lat": 40.7635714, "lon": -73.9162615 }, + { "lat": 40.7636017, "lon": -73.9163274 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 377472336, + "bounds": { + "minlat": 40.8610436, + "minlon": -73.9324498, + "maxlat": 40.8613086, + "maxlon": -73.9324380 + }, + "nodes": [ + 42434519, + 42434517, + 3808464456 + ], + "geometry": [ + { "lat": 40.8613086, "lon": -73.9324380 }, + { "lat": 40.8611752, "lon": -73.9324402 }, + { "lat": 40.8610436, "lon": -73.9324498 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "lanes": "2", + "layer": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "maxweight:signed": "no", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 377472343, + "bounds": { + "minlat": 40.8600594, + "minlon": -73.9349099, + "maxlat": 40.8604747, + "maxlon": -73.9347531 + }, + "nodes": [ + 3808466489, + 3808466490, + 3808466536, + 3808466491, + 3808466503, + 3808466492, + 3808466493, + 3808466495, + 3808466496, + 3808466501, + 3808466497, + 3808466535, + 3808466489 + ], + "geometry": [ + { "lat": 40.8604747, "lon": -73.9348449 }, + { "lat": 40.8600666, "lon": -73.9349099 }, + { "lat": 40.8600631, "lon": -73.9348706 }, + { "lat": 40.8600594, "lon": -73.9348309 }, + { "lat": 40.8600721, "lon": -73.9348289 }, + { "lat": 40.8600869, "lon": -73.9348265 }, + { "lat": 40.8600908, "lon": -73.9348692 }, + { "lat": 40.8604400, "lon": -73.9348138 }, + { "lat": 40.8604349, "lon": -73.9347581 }, + { "lat": 40.8604492, "lon": -73.9347559 }, + { "lat": 40.8604663, "lon": -73.9347531 }, + { "lat": 40.8604709, "lon": -73.9348039 }, + { "lat": 40.8604747, "lon": -73.9348449 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "no", + "name": "Billings Terrace", + "note": "ruins of entrance gate to Billings mansion that burned in 1925", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 377632690, + "bounds": { + "minlat": 40.7524811, + "minlon": -73.9211209, + "maxlat": 40.7529320, + "maxlon": -73.9210329 + }, + "nodes": [ + 3810161547, + 3810161523 + ], + "geometry": [ + { "lat": 40.7529320, "lon": -73.9210329 }, + { "lat": 40.7524811, "lon": -73.9211209 } + ], + "tags": { + "highway": "service", + "lit": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 377970577, + "bounds": { + "minlat": 40.7509510, + "minlon": -73.9195187, + "maxlat": 40.7509794, + "maxlon": -73.9191271 + }, + "nodes": [ + 3813776465, + 3813776473, + 3813776469 + ], + "geometry": [ + { "lat": 40.7509794, "lon": -73.9195187 }, + { "lat": 40.7509651, "lon": -73.9193206 }, + { "lat": 40.7509510, "lon": -73.9191271 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 377970578, + "bounds": { + "minlat": 40.7507317, + "minlon": -73.9190503, + "maxlat": 40.7508112, + "maxlon": -73.9190317 + }, + "nodes": [ + 3813776494, + 11104563767 + ], + "geometry": [ + { "lat": 40.7507317, "lon": -73.9190503 }, + { "lat": 40.7508112, "lon": -73.9190317 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 377970579, + "bounds": { + "minlat": 40.7509794, + "minlon": -73.9196812, + "maxlat": 40.7509922, + "maxlon": -73.9195187 + }, + "nodes": [ + 3813776465, + 3813776353 + ], + "geometry": [ + { "lat": 40.7509794, "lon": -73.9195187 }, + { "lat": 40.7509922, "lon": -73.9196812 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 377970581, + "bounds": { + "minlat": 40.7508048, + "minlon": -73.9197171, + "maxlat": 40.7509922, + "maxlon": -73.9196812 + }, + "nodes": [ + 3813776353, + 3813776491 + ], + "geometry": [ + { "lat": 40.7509922, "lon": -73.9196812 }, + { "lat": 40.7508048, "lon": -73.9197171 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 377970582, + "bounds": { + "minlat": 40.7513110, + "minlon": -73.9189248, + "maxlat": 40.7515248, + "maxlon": -73.9188721 + }, + "nodes": [ + 3813776457, + 3813776350, + 3813776468 + ], + "geometry": [ + { "lat": 40.7513110, "lon": -73.9189248 }, + { "lat": 40.7513627, "lon": -73.9189121 }, + { "lat": 40.7515248, "lon": -73.9188721 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 377970584, + "bounds": { + "minlat": 40.7512924, + "minlon": -73.9189121, + "maxlat": 40.7514608, + "maxlon": -73.9182936 + }, + "nodes": [ + 3813776350, + 3813776351, + 3813776461 + ], + "geometry": [ + { "lat": 40.7513627, "lon": -73.9189121 }, + { "lat": 40.7512924, "lon": -73.9183331 }, + { "lat": 40.7514608, "lon": -73.9182936 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 377970586, + "bounds": { + "minlat": 40.7509794, + "minlon": -73.9195187, + "maxlat": 40.7515990, + "maxlon": -73.9194067 + }, + "nodes": [ + 3813776349, + 3813776465 + ], + "geometry": [ + { "lat": 40.7515990, "lon": -73.9194067 }, + { "lat": 40.7509794, "lon": -73.9195187 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 377970587, + "bounds": { + "minlat": 40.7509510, + "minlon": -73.9191271, + "maxlat": 40.7515888, + "maxlon": -73.9190043 + }, + "nodes": [ + 3813776469, + 3813776346 + ], + "geometry": [ + { "lat": 40.7509510, "lon": -73.9191271 }, + { "lat": 40.7515888, "lon": -73.9190043 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 377970589, + "bounds": { + "minlat": 40.7512355, + "minlon": -73.9188721, + "maxlat": 40.7515248, + "maxlon": -73.9180548 + }, + "nodes": [ + 3813776468, + 3813776461, + 3813776340, + 3813776490 + ], + "geometry": [ + { "lat": 40.7515248, "lon": -73.9188721 }, + { "lat": 40.7514608, "lon": -73.9182936 }, + { "lat": 40.7514385, "lon": -73.9180548 }, + { "lat": 40.7512355, "lon": -73.9181025 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 377970591, + "bounds": { + "minlat": 40.7506069, + "minlon": -73.9181965, + "maxlat": 40.7512355, + "maxlon": -73.9180629 + }, + "nodes": [ + 3813776490, + 3813776474, + 3813776496, + 3813776483, + 8593852964, + 3813776459 + ], + "geometry": [ + { "lat": 40.7512355, "lon": -73.9181025 }, + { "lat": 40.7511479, "lon": -73.9180629 }, + { "lat": 40.7510038, "lon": -73.9180890 }, + { "lat": 40.7508840, "lon": -73.9181373 }, + { "lat": 40.7506675, "lon": -73.9181836 }, + { "lat": 40.7506069, "lon": -73.9181965 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 377970592, + "bounds": { + "minlat": 40.7504355, + "minlon": -73.9191085, + "maxlat": 40.7507317, + "maxlon": -73.9190503 + }, + "nodes": [ + 3813776492, + 8593852973, + 3813776494 + ], + "geometry": [ + { "lat": 40.7504355, "lon": -73.9191085 }, + { "lat": 40.7505056, "lon": -73.9190956 }, + { "lat": 40.7507317, "lon": -73.9190503 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 377970593, + "bounds": { + "minlat": 40.7515888, + "minlon": -73.9194067, + "maxlat": 40.7515990, + "maxlon": -73.9190043 + }, + "nodes": [ + 3813776346, + 3813776463, + 3813776349 + ], + "geometry": [ + { "lat": 40.7515888, "lon": -73.9190043 }, + { "lat": 40.7515938, "lon": -73.9192025 }, + { "lat": 40.7515990, "lon": -73.9194067 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 377970594, + "bounds": { + "minlat": 40.7504210, + "minlon": -73.9195488, + "maxlat": 40.7509794, + "maxlon": -73.9191856 + }, + "nodes": [ + 3813776477, + 8593852980, + 3813776356, + 3813776343, + 3813776466, + 3813776465 + ], + "geometry": [ + { "lat": 40.7504210, "lon": -73.9191856 }, + { "lat": 40.7504835, "lon": -73.9192062 }, + { "lat": 40.7506927, "lon": -73.9192752 }, + { "lat": 40.7507235, "lon": -73.9194892 }, + { "lat": 40.7507964, "lon": -73.9195488 }, + { "lat": 40.7509794, "lon": -73.9195187 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 377970595, + "bounds": { + "minlat": 40.7515990, + "minlon": -73.9195922, + "maxlat": 40.7516107, + "maxlon": -73.9194067 + }, + "nodes": [ + 3813776345, + 3813776349 + ], + "geometry": [ + { "lat": 40.7516107, "lon": -73.9195922 }, + { "lat": 40.7515990, "lon": -73.9194067 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 377970596, + "bounds": { + "minlat": 40.7509922, + "minlon": -73.9196812, + "maxlat": 40.7516107, + "maxlon": -73.9195922 + }, + "nodes": [ + 3813776353, + 3813776481, + 3813776487, + 3813776345 + ], + "geometry": [ + { "lat": 40.7509922, "lon": -73.9196812 }, + { "lat": 40.7511141, "lon": -73.9196498 }, + { "lat": 40.7512112, "lon": -73.9196666 }, + { "lat": 40.7516107, "lon": -73.9195922 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 377970598, + "bounds": { + "minlat": 40.7509651, + "minlon": -73.9193206, + "maxlat": 40.7515938, + "maxlon": -73.9192025 + }, + "nodes": [ + 3813776473, + 3813776463 + ], + "geometry": [ + { "lat": 40.7509651, "lon": -73.9193206 }, + { "lat": 40.7515938, "lon": -73.9192025 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 377994199, + "bounds": { + "minlat": 40.7519386, + "minlon": -73.9207274, + "maxlat": 40.7528956, + "maxlon": -73.9196621 + }, + "nodes": [ + 3814089996, + 8593852976, + 3814089994, + 3814089995, + 13521540863, + 13385673846 + ], + "geometry": [ + { "lat": 40.7520524, "lon": -73.9207274 }, + { "lat": 40.7520389, "lon": -73.9206219 }, + { "lat": 40.7519386, "lon": -73.9198353 }, + { "lat": 40.7527105, "lon": -73.9196851 }, + { "lat": 40.7528509, "lon": -73.9196621 }, + { "lat": 40.7528956, "lon": -73.9198552 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 378032831, + "bounds": { + "minlat": 40.7529662, + "minlon": -73.9662536, + "maxlat": 40.7530717, + "maxlon": -73.9661765 + }, + "nodes": [ + 3814476695, + 10994926349, + 3814476691 + ], + "geometry": [ + { "lat": 40.7529662, "lon": -73.9662536 }, + { "lat": 40.7530089, "lon": -73.9662224 }, + { "lat": 40.7530717, "lon": -73.9661765 } + ], + "tags": { + "access": "permissive", + "highway": "service" + } +}, +{ + "type": "way", + "id": 378032832, + "bounds": { + "minlat": 40.7527303, + "minlon": -73.9668167, + "maxlat": 40.7530387, + "maxlon": -73.9662536 + }, + "nodes": [ + 3814476692, + 3814476696, + 3814476694, + 3814476681, + 3814476678, + 3814476677, + 3814476695 + ], + "geometry": [ + { "lat": 40.7527303, "lon": -73.9668167 }, + { "lat": 40.7528426, "lon": -73.9666718 }, + { "lat": 40.7529911, "lon": -73.9665632 }, + { "lat": 40.7530264, "lon": -73.9665235 }, + { "lat": 40.7530387, "lon": -73.9664827 }, + { "lat": 40.7530337, "lon": -73.9664169 }, + { "lat": 40.7529662, "lon": -73.9662536 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "lit": "yes", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 378032834, + "bounds": { + "minlat": 40.7524802, + "minlon": -73.9652582, + "maxlat": 40.7526344, + "maxlon": -73.9651396 + }, + "nodes": [ + 3814476676, + 3814476690, + 3883528533, + 3814476679 + ], + "geometry": [ + { "lat": 40.7524802, "lon": -73.9652582 }, + { "lat": 40.7525326, "lon": -73.9652167 }, + { "lat": 40.7525779, "lon": -73.9651809 }, + { "lat": 40.7526344, "lon": -73.9651396 } + ], + "tags": { + "access": "permissive", + "highway": "service" + } +}, +{ + "type": "way", + "id": 378181845, + "bounds": { + "minlat": 40.7502577, + "minlon": -73.9702915, + "maxlat": 40.7505482, + "maxlon": -73.9699714 + }, + "nodes": [ + 2711693133, + 2711693125, + 2711693113, + 3815994291, + 3815994326, + 2711693118, + 4022447734, + 3815994470, + 4481642368, + 2711693133 + ], + "geometry": [ + { "lat": 40.7505482, "lon": -73.9701287 }, + { "lat": 40.7504988, "lon": -73.9701647 }, + { "lat": 40.7503523, "lon": -73.9702718 }, + { "lat": 40.7503253, "lon": -73.9702915 }, + { "lat": 40.7502577, "lon": -73.9701341 }, + { "lat": 40.7504322, "lon": -73.9700070 }, + { "lat": 40.7504584, "lon": -73.9699882 }, + { "lat": 40.7504817, "lon": -73.9699714 }, + { "lat": 40.7505130, "lon": -73.9700454 }, + { "lat": 40.7505482, "lon": -73.9701287 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 378359375, + "bounds": { + "minlat": 40.7404701, + "minlon": -73.9784755, + "maxlat": 40.7409659, + "maxlon": -73.9772893 + }, + "nodes": [ + 42446291, + 8127675291, + 8127675295, + 7640871312 + ], + "geometry": [ + { "lat": 40.7404701, "lon": -73.9772893 }, + { "lat": 40.7405003, "lon": -73.9773616 }, + { "lat": 40.7406978, "lon": -73.9778341 }, + { "lat": 40.7409659, "lon": -73.9784755 } + ], + "tags": { + "bicycle": "permissive", + "highway": "pedestrian", + "lit": "yes", + "name": "East 28th Street", + "name:ru": "Восточная 28-я стрит", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 378359711, + "bounds": { + "minlat": 40.7378834, + "minlon": -73.9795551, + "maxlat": 40.7381901, + "maxlon": -73.9788226 + }, + "nodes": [ + 3430331122, + 10589487710, + 7647574672, + 2384399605, + 3430331121 + ], + "geometry": [ + { "lat": 40.7378834, "lon": -73.9788226 }, + { "lat": 40.7379284, "lon": -73.9789301 }, + { "lat": 40.7380028, "lon": -73.9791078 }, + { "lat": 40.7381521, "lon": -73.9794644 }, + { "lat": 40.7381901, "lon": -73.9795551 } + ], + "tags": { + "highway": "pedestrian", + "name": "East 24th Street", + "name:ru": "Восточная 24-я стрит", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 378363223, + "bounds": { + "minlat": 40.7344830, + "minlon": -73.9833869, + "maxlat": 40.7348478, + "maxlon": -73.9831211 + }, + "nodes": [ + 13205862054, + 4129804729, + 10911736945, + 4205565497 + ], + "geometry": [ + { "lat": 40.7348478, "lon": -73.9831211 }, + { "lat": 40.7347919, "lon": -73.9831615 }, + { "lat": 40.7345795, "lon": -73.9833165 }, + { "lat": 40.7344830, "lon": -73.9833869 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 378384814, + "bounds": { + "minlat": 40.8013515, + "minlon": -73.9480668, + "maxlat": 40.8020253, + "maxlon": -73.9475911 + }, + "nodes": [ + 3817980392, + 10170875039, + 6845584287, + 10168729751, + 3817980397 + ], + "geometry": [ + { "lat": 40.8013515, "lon": -73.9480668 }, + { "lat": 40.8014495, "lon": -73.9479976 }, + { "lat": 40.8019478, "lon": -73.9476458 }, + { "lat": 40.8019759, "lon": -73.9476260 }, + { "lat": 40.8020253, "lon": -73.9475911 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 378384821, + "bounds": { + "minlat": 40.8139380, + "minlon": -73.9492779, + "maxlat": 40.8142438, + "maxlon": -73.9484190 + }, + "nodes": [ + 5402045444, + 3817980415, + 10647902174, + 42435825 + ], + "geometry": [ + { "lat": 40.8142438, "lon": -73.9492779 }, + { "lat": 40.8139682, "lon": -73.9486396 }, + { "lat": 40.8139399, "lon": -73.9485791 }, + { "lat": 40.8139380, "lon": -73.9484190 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 379393542, + "bounds": { + "minlat": 40.7440198, + "minlon": -73.9799133, + "maxlat": 40.7441869, + "maxlon": -73.9796680 + }, + "nodes": [ + 3827019680, + 3827036658, + 3827008467, + 3827036657, + 3827008469, + 2549942474, + 3827019680 + ], + "geometry": [ + { "lat": 40.7441119, "lon": -73.9796680 }, + { "lat": 40.7440877, "lon": -73.9796857 }, + { "lat": 40.7440198, "lon": -73.9797358 }, + { "lat": 40.7440608, "lon": -73.9798327 }, + { "lat": 40.7440948, "lon": -73.9799133 }, + { "lat": 40.7441869, "lon": -73.9798455 }, + { "lat": 40.7441119, "lon": -73.9796680 } + ], + "tags": { + "access": "permissive", + "area": "yes", + "highway": "pedestrian", + "name": "Windsor Court POPS" + } +}, +{ + "type": "way", + "id": 379434408, + "bounds": { + "minlat": 40.7494592, + "minlon": -73.9693240, + "maxlat": 40.7494908, + "maxlon": -73.9691146 + }, + "nodes": [ + 3827336862, + 3827336864, + 11002617505, + 11000991285, + 42455931 + ], + "geometry": [ + { "lat": 40.7494592, "lon": -73.9691146 }, + { "lat": 40.7494756, "lon": -73.9691577 }, + { "lat": 40.7494827, "lon": -73.9691912 }, + { "lat": 40.7494880, "lon": -73.9692282 }, + { "lat": 40.7494908, "lon": -73.9693240 } + ], + "tags": { + "access": "no", + "highway": "service", + "name": "East 43rd Street", + "name:ru": "Восточная 43-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 379434422, + "bounds": { + "minlat": 40.7494277, + "minlon": -73.9691146, + "maxlat": 40.7494592, + "maxlon": -73.9688622 + }, + "nodes": [ + 1357949828, + 11002617482, + 11000991284, + 5759126963, + 3827336862 + ], + "geometry": [ + { "lat": 40.7494336, "lon": -73.9688622 }, + { "lat": 40.7494277, "lon": -73.9689315 }, + { "lat": 40.7494314, "lon": -73.9690008 }, + { "lat": 40.7494439, "lon": -73.9690708 }, + { "lat": 40.7494592, "lon": -73.9691146 } + ], + "tags": { + "access": "no", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 379435776, + "bounds": { + "minlat": 40.7516341, + "minlon": -73.9673117, + "maxlat": 40.7517174, + "maxlon": -73.9671234 + }, + "nodes": [ + 3827336883, + 3827342878 + ], + "geometry": [ + { "lat": 40.7517174, "lon": -73.9673117 }, + { "lat": 40.7516341, "lon": -73.9671234 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 379435777, + "bounds": { + "minlat": 40.7517786, + "minlon": -73.9674542, + "maxlat": 40.7518449, + "maxlon": -73.9673876 + }, + "nodes": [ + 595105581, + 4249006833 + ], + "geometry": [ + { "lat": 40.7518449, "lon": -73.9674542 }, + { "lat": 40.7517786, "lon": -73.9673876 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 379435778, + "bounds": { + "minlat": 40.7517192, + "minlon": -73.9672419, + "maxlat": 40.7517977, + "maxlon": -73.9670634 + }, + "nodes": [ + 5759126964, + 11000990955, + 3827336868 + ], + "geometry": [ + { "lat": 40.7517192, "lon": -73.9670634 }, + { "lat": 40.7517495, "lon": -73.9671324 }, + { "lat": 40.7517977, "lon": -73.9672419 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 379634126, + "bounds": { + "minlat": 40.7477154, + "minlon": -73.9686476, + "maxlat": 40.7480990, + "maxlon": -73.9682669 + }, + "nodes": [ + 7094687064, + 7094702346, + 3829625866, + 3829625867, + 370915530 + ], + "geometry": [ + { "lat": 40.7480990, "lon": -73.9682669 }, + { "lat": 40.7480478, "lon": -73.9683096 }, + { "lat": 40.7479920, "lon": -73.9683596 }, + { "lat": 40.7478805, "lon": -73.9684767 }, + { "lat": 40.7477154, "lon": -73.9686476 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 379634130, + "bounds": { + "minlat": 40.7481871, + "minlon": -73.9695959, + "maxlat": 40.7486422, + "maxlon": -73.9683432 + }, + "nodes": [ + 9140864935, + 11002617613, + 9140864934, + 9140864933, + 9140864932, + 11002617617, + 7094702343, + 3829625861, + 3829625862, + 3829625870 + ], + "geometry": [ + { "lat": 40.7486413, "lon": -73.9695959 }, + { "lat": 40.7486422, "lon": -73.9695014 }, + { "lat": 40.7486323, "lon": -73.9694518 }, + { "lat": 40.7486123, "lon": -73.9694052 }, + { "lat": 40.7484144, "lon": -73.9689477 }, + { "lat": 40.7482894, "lon": -73.9686640 }, + { "lat": 40.7482181, "lon": -73.9685194 }, + { "lat": 40.7481957, "lon": -73.9684622 }, + { "lat": 40.7481880, "lon": -73.9684137 }, + { "lat": 40.7481871, "lon": -73.9683432 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 379641300, + "bounds": { + "minlat": 40.7447245, + "minlon": -73.9717404, + "maxlat": 40.7453403, + "maxlon": -73.9712874 + }, + "nodes": [ + 3829688391, + 11592552189, + 3948578145, + 13651101017, + 3829688390 + ], + "geometry": [ + { "lat": 40.7447245, "lon": -73.9717404 }, + { "lat": 40.7447815, "lon": -73.9716985 }, + { "lat": 40.7450722, "lon": -73.9714848 }, + { "lat": 40.7452785, "lon": -73.9713329 }, + { "lat": 40.7453403, "lon": -73.9712874 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 379748676, + "bounds": { + "minlat": 40.7522513, + "minlon": -73.9681679, + "maxlat": 40.7529019, + "maxlon": -73.9676991 + }, + "nodes": [ + 3830783520, + 10166171334, + 3830783519, + 10168666960, + 3830783523 + ], + "geometry": [ + { "lat": 40.7529019, "lon": -73.9676991 }, + { "lat": 40.7528305, "lon": -73.9677521 }, + { "lat": 40.7527994, "lon": -73.9677748 }, + { "lat": 40.7523137, "lon": -73.9681238 }, + { "lat": 40.7522513, "lon": -73.9681679 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 379748679, + "bounds": { + "minlat": 40.7527994, + "minlon": -73.9678775, + "maxlat": 40.7528417, + "maxlon": -73.9677748 + }, + "nodes": [ + 3830783519, + 3830783516 + ], + "geometry": [ + { "lat": 40.7527994, "lon": -73.9677748 }, + { "lat": 40.7528417, "lon": -73.9678775 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 379749110, + "bounds": { + "minlat": 40.7533962, + "minlon": -73.9708526, + "maxlat": 40.7536149, + "maxlon": -73.9706979 + }, + "nodes": [ + 3830786441, + 10168666939, + 3830786443 + ], + "geometry": [ + { "lat": 40.7533962, "lon": -73.9708526 }, + { "lat": 40.7534630, "lon": -73.9708056 }, + { "lat": 40.7536149, "lon": -73.9706979 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 379804464, + "bounds": { + "minlat": 40.7761204, + "minlon": -73.9918607, + "maxlat": 40.7763737, + "maxlon": -73.9913196 + }, + "nodes": [ + 3831471781, + 3831471783, + 3831471786, + 3831471788, + 3831471792, + 3831471793, + 3831471794, + 3831471795, + 3831471791, + 3831471790, + 3831471789, + 3831471787, + 3831471784, + 3831471782, + 3831471781 + ], + "geometry": [ + { "lat": 40.7761204, "lon": -73.9914854 }, + { "lat": 40.7761464, "lon": -73.9915497 }, + { "lat": 40.7762434, "lon": -73.9917893 }, + { "lat": 40.7762723, "lon": -73.9918607 }, + { "lat": 40.7763657, "lon": -73.9917931 }, + { "lat": 40.7763674, "lon": -73.9916935 }, + { "lat": 40.7763710, "lon": -73.9914768 }, + { "lat": 40.7763737, "lon": -73.9913196 }, + { "lat": 40.7763577, "lon": -73.9913224 }, + { "lat": 40.7763417, "lon": -73.9913252 }, + { "lat": 40.7763332, "lon": -73.9916597 }, + { "lat": 40.7762651, "lon": -73.9917075 }, + { "lat": 40.7761587, "lon": -73.9914545 }, + { "lat": 40.7761388, "lon": -73.9914706 }, + { "lat": 40.7761204, "lon": -73.9914854 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 379804516, + "bounds": { + "minlat": 40.7687036, + "minlon": -73.9958389, + "maxlat": 40.7692842, + "maxlon": -73.9954188 + }, + "nodes": [ + 6852401935, + 701607113, + 10864757222 + ], + "geometry": [ + { "lat": 40.7692842, "lon": -73.9954188 }, + { "lat": 40.7687953, "lon": -73.9957660 }, + { "lat": 40.7687036, "lon": -73.9958389 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "lanes": "2", + "layer": "1", + "oneway": "yes", + "turn:lanes": "through|through;slight_right" + } +}, +{ + "type": "way", + "id": 379804538, + "bounds": { + "minlat": 40.7669203, + "minlon": -73.9971047, + "maxlat": 40.7695034, + "maxlon": -73.9952663 + }, + "nodes": [ + 2376384661, + 4872564988, + 12152905197, + 3831470668, + 12152905198, + 12152905199, + 12152905200, + 7573345225, + 7573345227, + 7844803425, + 11017186432, + 4872564991, + 4872564990 + ], + "geometry": [ + { "lat": 40.7695034, "lon": -73.9952663 }, + { "lat": 40.7694373, "lon": -73.9953991 }, + { "lat": 40.7694170, "lon": -73.9954301 }, + { "lat": 40.7693928, "lon": -73.9954559 }, + { "lat": 40.7693716, "lon": -73.9954805 }, + { "lat": 40.7693433, "lon": -73.9955055 }, + { "lat": 40.7693134, "lon": -73.9955300 }, + { "lat": 40.7690089, "lon": -73.9957496 }, + { "lat": 40.7687214, "lon": -73.9959607 }, + { "lat": 40.7686587, "lon": -73.9960097 }, + { "lat": 40.7685482, "lon": -73.9960793 }, + { "lat": 40.7681774, "lon": -73.9961783 }, + { "lat": 40.7669203, "lon": -73.9971047 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 379843699, + "bounds": { + "minlat": 40.7479910, + "minlon": -73.9703956, + "maxlat": 40.7486877, + "maxlon": -73.9698813 + }, + "nodes": [ + 1701844698, + 9140864923, + 3831856768 + ], + "geometry": [ + { "lat": 40.7479910, "lon": -73.9703956 }, + { "lat": 40.7481442, "lon": -73.9702798 }, + { "lat": 40.7486877, "lon": -73.9698813 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxheight": "13'2\"", + "maxspeed": "25 mph", + "name": "1st Avenue Tunnel", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 379843702, + "bounds": { + "minlat": 40.7532346, + "minlon": -73.9665625, + "maxlat": 40.7533202, + "maxlon": -73.9665034 + }, + "nodes": [ + 595105499, + 5993830851, + 5993830853 + ], + "geometry": [ + { "lat": 40.7532346, "lon": -73.9665625 }, + { "lat": 40.7532912, "lon": -73.9665232 }, + { "lat": 40.7533202, "lon": -73.9665034 } + ], + "tags": { + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 379843704, + "bounds": { + "minlat": 40.7519925, + "minlon": -73.9674723, + "maxlat": 40.7520804, + "maxlon": -73.9674096 + }, + "nodes": [ + 3831856767, + 6133327722 + ], + "geometry": [ + { "lat": 40.7519925, "lon": -73.9674723 }, + { "lat": 40.7520804, "lon": -73.9674096 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "highway": "primary", + "lanes": "2", + "name": "1st Avenue Tunnel", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 379843705, + "bounds": { + "minlat": 40.7486877, + "minlon": -73.9698813, + "maxlat": 40.7519925, + "maxlon": -73.9674723 + }, + "nodes": [ + 3831856768, + 3831856767 + ], + "geometry": [ + { "lat": 40.7486877, "lon": -73.9698813 }, + { "lat": 40.7519925, "lon": -73.9674723 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "highway": "primary", + "lanes": "2", + "layer": "-1", + "maxheight": "13'2\"", + "maxspeed": "25 mph", + "name": "1st Avenue Tunnel", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 379944845, + "bounds": { + "minlat": 40.7426949, + "minlon": -73.9809109, + "maxlat": 40.7429015, + "maxlon": -73.9805831 + }, + "nodes": [ + 3832902959, + 10172784875, + 3832902962, + 3832902957, + 3832902963, + 3832902960, + 3832902961, + 3832899556, + 10172784876, + 3832902958 + ], + "geometry": [ + { "lat": 40.7426949, "lon": -73.9806330 }, + { "lat": 40.7427468, "lon": -73.9805979 }, + { "lat": 40.7427701, "lon": -73.9805831 }, + { "lat": 40.7427974, "lon": -73.9805857 }, + { "lat": 40.7428260, "lon": -73.9806100 }, + { "lat": 40.7428940, "lon": -73.9807803 }, + { "lat": 40.7429015, "lon": -73.9808295 }, + { "lat": 40.7428880, "lon": -73.9808581 }, + { "lat": 40.7428626, "lon": -73.9808754 }, + { "lat": 40.7428121, "lon": -73.9809109 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 379961828, + "bounds": { + "minlat": 40.7479834, + "minlon": -73.9734978, + "maxlat": 40.7480643, + "maxlon": -73.9731801 + }, + "nodes": [ + 3833109164, + 10227868645, + 3833109158, + 3833109157, + 3833106453, + 3833106455 + ], + "geometry": [ + { "lat": 40.7480643, "lon": -73.9734978 }, + { "lat": 40.7480049, "lon": -73.9733564 }, + { "lat": 40.7479882, "lon": -73.9733166 }, + { "lat": 40.7479834, "lon": -73.9732633 }, + { "lat": 40.7479983, "lon": -73.9732147 }, + { "lat": 40.7480243, "lon": -73.9731801 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "driveway", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 379961829, + "bounds": { + "minlat": 40.7482158, + "minlon": -73.9732509, + "maxlat": 40.7484055, + "maxlon": -73.9730313 + }, + "nodes": [ + 3833109161, + 3833109162, + 3833109163, + 3833109160, + 3833106454, + 10227868644, + 3833109159 + ], + "geometry": [ + { "lat": 40.7482158, "lon": -73.9730417 }, + { "lat": 40.7482486, "lon": -73.9730313 }, + { "lat": 40.7482781, "lon": -73.9730367 }, + { "lat": 40.7483126, "lon": -73.9730488 }, + { "lat": 40.7483350, "lon": -73.9730836 }, + { "lat": 40.7483456, "lon": -73.9731089 }, + { "lat": 40.7484055, "lon": -73.9732509 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "driveway", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 379961830, + "bounds": { + "minlat": 40.7480243, + "minlon": -73.9731801, + "maxlat": 40.7482158, + "maxlon": -73.9730417 + }, + "nodes": [ + 3833106455, + 3833109161 + ], + "geometry": [ + { "lat": 40.7480243, "lon": -73.9731801 }, + { "lat": 40.7482158, "lon": -73.9730417 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "driveway", + "source": "Bing", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 380093631, + "bounds": { + "minlat": 40.7377888, + "minlon": -73.9752084, + "maxlat": 40.7391743, + "maxlon": -73.9734840 + }, + "nodes": [ + 42422872, + 1632878962, + 1632878947, + 1632878933, + 11543660408, + 1632878885, + 11543660407, + 7239676092, + 7239653283, + 42422851, + 7239676099, + 1632878874, + 7239676091, + 7239653282, + 1632878870, + 42422845, + 7239676098, + 7239676090, + 42422842, + 7060180745, + 7239653281, + 42422840, + 42422838, + 11543660452, + 11543660451, + 42422830 + ], + "geometry": [ + { "lat": 40.7391743, "lon": -73.9734840 }, + { "lat": 40.7390301, "lon": -73.9735586 }, + { "lat": 40.7389371, "lon": -73.9736083 }, + { "lat": 40.7387649, "lon": -73.9737209 }, + { "lat": 40.7382672, "lon": -73.9740869 }, + { "lat": 40.7382062, "lon": -73.9741317 }, + { "lat": 40.7381738, "lon": -73.9741520 }, + { "lat": 40.7381124, "lon": -73.9741607 }, + { "lat": 40.7380543, "lon": -73.9741824 }, + { "lat": 40.7380063, "lon": -73.9742046 }, + { "lat": 40.7379623, "lon": -73.9742383 }, + { "lat": 40.7379223, "lon": -73.9742777 }, + { "lat": 40.7378818, "lon": -73.9743280 }, + { "lat": 40.7378610, "lon": -73.9743671 }, + { "lat": 40.7378392, "lon": -73.9744134 }, + { "lat": 40.7378202, "lon": -73.9744581 }, + { "lat": 40.7378039, "lon": -73.9745115 }, + { "lat": 40.7377948, "lon": -73.9745613 }, + { "lat": 40.7377888, "lon": -73.9746043 }, + { "lat": 40.7377899, "lon": -73.9746643 }, + { "lat": 40.7377978, "lon": -73.9747159 }, + { "lat": 40.7378116, "lon": -73.9747669 }, + { "lat": 40.7378316, "lon": -73.9748231 }, + { "lat": 40.7379009, "lon": -73.9749757 }, + { "lat": 40.7379089, "lon": -73.9749944 }, + { "lat": 40.7380018, "lon": -73.9752084 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 380093632, + "bounds": { + "minlat": 40.7391743, + "minlon": -73.9734840, + "maxlat": 40.7398163, + "maxlon": -73.9732831 + }, + "nodes": [ + 1739872172, + 42422878, + 11543660380, + 42422875, + 11543660381, + 42422872 + ], + "geometry": [ + { "lat": 40.7398163, "lon": -73.9732831 }, + { "lat": 40.7396306, "lon": -73.9733242 }, + { "lat": 40.7394900, "lon": -73.9733619 }, + { "lat": 40.7394091, "lon": -73.9733871 }, + { "lat": 40.7392947, "lon": -73.9734287 }, + { "lat": 40.7391743, "lon": -73.9734840 } + ], + "tags": { + "covered": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 380096992, + "bounds": { + "minlat": 40.7395518, + "minlon": -73.9795312, + "maxlat": 40.7397948, + "maxlon": -73.9789499 + }, + "nodes": [ + 42429900, + 7640871287, + 5278266721 + ], + "geometry": [ + { "lat": 40.7397948, "lon": -73.9795312 }, + { "lat": 40.7397346, "lon": -73.9793852 }, + { "lat": 40.7395518, "lon": -73.9789499 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 26th Street", + "name:ru": "Восточная 26-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 380098431, + "bounds": { + "minlat": 40.7481470, + "minlon": -73.9705017, + "maxlat": 40.7486584, + "maxlon": -73.9701484 + }, + "nodes": [ + 1701844679, + 1701844687, + 12582413054 + ], + "geometry": [ + { "lat": 40.7481470, "lon": -73.9705017 }, + { "lat": 40.7483026, "lon": -73.9704093 }, + { "lat": 40.7486584, "lon": -73.9701484 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 380098432, + "bounds": { + "minlat": 40.7239400, + "minlon": -73.9879681, + "maxlat": 40.7243978, + "maxlon": -73.9876372 + }, + "nodes": [ + 42453601, + 7977832436, + 6133355298 + ], + "geometry": [ + { "lat": 40.7239400, "lon": -73.9879681 }, + { "lat": 40.7240134, "lon": -73.9879152 }, + { "lat": 40.7243978, "lon": -73.9876372 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 380145816, + "bounds": { + "minlat": 40.7520288, + "minlon": -73.9676741, + "maxlat": 40.7527726, + "maxlon": -73.9671150 + }, + "nodes": [ + 42455932, + 3569749133, + 9140864979, + 10998208708, + 595105496 + ], + "geometry": [ + { "lat": 40.7520288, "lon": -73.9676741 }, + { "lat": 40.7520653, "lon": -73.9676481 }, + { "lat": 40.7527078, "lon": -73.9671812 }, + { "lat": 40.7527364, "lon": -73.9671558 }, + { "lat": 40.7527726, "lon": -73.9671150 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "street_side", + "parking:left:restriction": "no_standing", + "parking:right": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 380147339, + "bounds": { + "minlat": 40.7474210, + "minlon": -73.9767589, + "maxlat": 40.7476401, + "maxlon": -73.9762306 + }, + "nodes": [ + 1701844605, + 11043182116, + 12187343193, + 10125260559, + 42449685 + ], + "geometry": [ + { "lat": 40.7474210, "lon": -73.9762306 }, + { "lat": 40.7475225, "lon": -73.9764755 }, + { "lat": 40.7475540, "lon": -73.9765514 }, + { "lat": 40.7475737, "lon": -73.9765989 }, + { "lat": 40.7476401, "lon": -73.9767589 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|right|right" + } +}, +{ + "type": "way", + "id": 380364099, + "bounds": { + "minlat": 40.7589579, + "minlon": -73.9682743, + "maxlat": 40.7594490, + "maxlon": -73.9671253 + }, + "nodes": [ + 4616503099, + 2711232807, + 2711232798, + 2711232808, + 2711232803, + 2711232799, + 2711232797, + 2711232802, + 2711232795, + 7040861830, + 4616503099 + ], + "geometry": [ + { "lat": 40.7594490, "lon": -73.9679166 }, + { "lat": 40.7591016, "lon": -73.9671253 }, + { "lat": 40.7589994, "lon": -73.9671995 }, + { "lat": 40.7592975, "lon": -73.9679100 }, + { "lat": 40.7590262, "lon": -73.9681084 }, + { "lat": 40.7590162, "lon": -73.9680845 }, + { "lat": 40.7589739, "lon": -73.9681150 }, + { "lat": 40.7590193, "lon": -73.9682243 }, + { "lat": 40.7589579, "lon": -73.9682685 }, + { "lat": 40.7589688, "lon": -73.9682743 }, + { "lat": 40.7594490, "lon": -73.9679166 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 380471661, + "bounds": { + "minlat": 40.7639641, + "minlon": -73.9468104, + "maxlat": 40.7642973, + "maxlon": -73.9467434 + }, + "nodes": [ + 1241986499, + 9915286717, + 9915286718, + 3569402534, + 8105546809, + 9915286720, + 9915286721, + 9915286722, + 9915286723, + 3569402539, + 9915286719 + ], + "geometry": [ + { "lat": 40.7639641, "lon": -73.9467820 }, + { "lat": 40.7639785, "lon": -73.9467732 }, + { "lat": 40.7640008, "lon": -73.9467666 }, + { "lat": 40.7640216, "lon": -73.9467661 }, + { "lat": 40.7641506, "lon": -73.9468021 }, + { "lat": 40.7641761, "lon": -73.9468087 }, + { "lat": 40.7641952, "lon": -73.9468104 }, + { "lat": 40.7642139, "lon": -73.9468082 }, + { "lat": 40.7642326, "lon": -73.9468005 }, + { "lat": 40.7642533, "lon": -73.9467843 }, + { "lat": 40.7642973, "lon": -73.9467434 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "lanes": "1", + "layer": "1", + "maxspeed": "10 mph", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 380471662, + "bounds": { + "minlat": 40.7640684, + "minlon": -73.9475295, + "maxlat": 40.7641383, + "maxlon": -73.9474612 + }, + "nodes": [ + 5212739095, + 3569402536 + ], + "geometry": [ + { "lat": 40.7641383, "lon": -73.9474612 }, + { "lat": 40.7640684, "lon": -73.9475295 } + ], + "tags": { + "bridge": "yes", + "destination": "Exit to Queens", + "highway": "service", + "lanes": "1", + "layer": "1", + "maxspeed": "10 mph", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 380471663, + "bounds": { + "minlat": 40.7635710, + "minlon": -73.9476218, + "maxlat": 40.7640008, + "maxlon": -73.9470762 + }, + "nodes": [ + 3580758396, + 3785702991, + 9915286727, + 1241986709, + 3785702990, + 3785702989, + 1241986485, + 3785702988, + 1241986740, + 9915286726, + 3785702987, + 2300353496, + 3785702986, + 1241986651, + 3785702985, + 2300353495, + 9915286725, + 3785702984, + 1241986641, + 3785702983, + 2300353494, + 3785702982, + 9915286724, + 1241986530, + 1241986470, + 3838008669, + 5212739096 + ], + "geometry": [ + { "lat": 40.7637645, "lon": -73.9470762 }, + { "lat": 40.7636763, "lon": -73.9471540 }, + { "lat": 40.7636538, "lon": -73.9471752 }, + { "lat": 40.7636323, "lon": -73.9471978 }, + { "lat": 40.7636146, "lon": -73.9472240 }, + { "lat": 40.7635984, "lon": -73.9472525 }, + { "lat": 40.7635857, "lon": -73.9472814 }, + { "lat": 40.7635756, "lon": -73.9473154 }, + { "lat": 40.7635710, "lon": -73.9473556 }, + { "lat": 40.7635720, "lon": -73.9473962 }, + { "lat": 40.7635765, "lon": -73.9474345 }, + { "lat": 40.7635844, "lon": -73.9474694 }, + { "lat": 40.7635948, "lon": -73.9475010 }, + { "lat": 40.7636090, "lon": -73.9475313 }, + { "lat": 40.7636238, "lon": -73.9475547 }, + { "lat": 40.7636456, "lon": -73.9475789 }, + { "lat": 40.7636682, "lon": -73.9475963 }, + { "lat": 40.7636943, "lon": -73.9476098 }, + { "lat": 40.7637207, "lon": -73.9476180 }, + { "lat": 40.7637476, "lon": -73.9476218 }, + { "lat": 40.7637707, "lon": -73.9476207 }, + { "lat": 40.7637975, "lon": -73.9476144 }, + { "lat": 40.7638221, "lon": -73.9476053 }, + { "lat": 40.7638451, "lon": -73.9475912 }, + { "lat": 40.7638693, "lon": -73.9475725 }, + { "lat": 40.7639711, "lon": -73.9474848 }, + { "lat": 40.7640008, "lon": -73.9474560 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed": "10 mph", + "name": "Roosevelt Island Bridge", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 380471665, + "bounds": { + "minlat": 40.7637282, + "minlon": -73.9469736, + "maxlat": 40.7639641, + "maxlon": -73.9467820 + }, + "nodes": [ + 1241986446, + 9915261992, + 1241986499 + ], + "geometry": [ + { "lat": 40.7637282, "lon": -73.9469736 }, + { "lat": 40.7638907, "lon": -73.9468452 }, + { "lat": 40.7639641, "lon": -73.9467820 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "lanes": "1", + "layer": "1", + "maxspeed": "10 mph", + "oneway": "yes", + "surface": "concrete", + "turn:lanes": "left;through;right" + } +}, +{ + "type": "way", + "id": 380656890, + "bounds": { + "minlat": 40.7440306, + "minlon": -73.9790776, + "maxlat": 40.7442774, + "maxlon": -73.9787325 + }, + "nodes": [ + 3839835328, + 3839835894, + 8119507317, + 8119462514, + 8119462484, + 3839835895, + 3839835896, + 8119462498, + 8119462493, + 8119462446, + 3839835326, + 8119462438, + 2549942438, + 2549942439, + 2549942447, + 2549941948, + 3839835328 + ], + "geometry": [ + { "lat": 40.7440306, "lon": -73.9788531 }, + { "lat": 40.7442048, "lon": -73.9787325 }, + { "lat": 40.7442096, "lon": -73.9787437 }, + { "lat": 40.7442458, "lon": -73.9788286 }, + { "lat": 40.7442708, "lon": -73.9788872 }, + { "lat": 40.7442774, "lon": -73.9789253 }, + { "lat": 40.7442669, "lon": -73.9789530 }, + { "lat": 40.7442157, "lon": -73.9789894 }, + { "lat": 40.7441737, "lon": -73.9790194 }, + { "lat": 40.7441307, "lon": -73.9790500 }, + { "lat": 40.7441150, "lon": -73.9790611 }, + { "lat": 40.7440920, "lon": -73.9790776 }, + { "lat": 40.7440589, "lon": -73.9789944 }, + { "lat": 40.7440603, "lon": -73.9789835 }, + { "lat": 40.7440705, "lon": -73.9789761 }, + { "lat": 40.7440740, "lon": -73.9789564 }, + { "lat": 40.7440306, "lon": -73.9788531 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "leisure": "outdoor_seating", + "source": "Bing", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 380817543, + "bounds": { + "minlat": 40.7440251, + "minlon": -73.9788400, + "maxlat": 40.7442837, + "maxlon": -73.9786597 + }, + "nodes": [ + 3841254274, + 8119462497, + 3841254263 + ], + "geometry": [ + { "lat": 40.7440251, "lon": -73.9788400 }, + { "lat": 40.7442201, "lon": -73.9787028 }, + { "lat": 40.7442837, "lon": -73.9786597 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 380817545, + "bounds": { + "minlat": 40.7444621, + "minlon": -73.9787966, + "maxlat": 40.7448574, + "maxlon": -73.9784575 + }, + "nodes": [ + 2709389504, + 3841254266, + 3841254273, + 3841254268, + 3841253772, + 3841254272, + 3841254275, + 2709389755, + 2709389497, + 2709389504 + ], + "geometry": [ + { "lat": 40.7444839, "lon": -73.9787776 }, + { "lat": 40.7444876, "lon": -73.9787865 }, + { "lat": 40.7444919, "lon": -73.9787966 }, + { "lat": 40.7445397, "lon": -73.9787615 }, + { "lat": 40.7447372, "lon": -73.9786164 }, + { "lat": 40.7447964, "lon": -73.9785728 }, + { "lat": 40.7448574, "lon": -73.9785280 }, + { "lat": 40.7448276, "lon": -73.9784575 }, + { "lat": 40.7444621, "lon": -73.9787261 }, + { "lat": 40.7444839, "lon": -73.9787776 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "noname": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 380817816, + "bounds": { + "minlat": 40.7446670, + "minlon": -73.9786497, + "maxlat": 40.7447372, + "maxlon": -73.9786041 + }, + "nodes": [ + 3841253772, + 3841253773, + 3841253774 + ], + "geometry": [ + { "lat": 40.7447372, "lon": -73.9786164 }, + { "lat": 40.7447320, "lon": -73.9786041 }, + { "lat": 40.7446670, "lon": -73.9786497 } + ], + "tags": { + "highway": "service", + "ramp:wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 380823793, + "bounds": { + "minlat": 40.7447351, + "minlon": -73.9781873, + "maxlat": 40.7448475, + "maxlon": -73.9781038 + }, + "nodes": [ + 3841324403, + 8119462492, + 3841324404 + ], + "geometry": [ + { "lat": 40.7447351, "lon": -73.9781873 }, + { "lat": 40.7447956, "lon": -73.9781430 }, + { "lat": 40.7448475, "lon": -73.9781038 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 380991634, + "bounds": { + "minlat": 40.7522770, + "minlon": -73.9767842, + "maxlat": 40.7528180, + "maxlon": -73.9763930 + }, + "nodes": [ + 7520841184, + 3842775633, + 3842775641, + 3842775640 + ], + "geometry": [ + { "lat": 40.7528180, "lon": -73.9763930 }, + { "lat": 40.7526031, "lon": -73.9765515 }, + { "lat": 40.7525369, "lon": -73.9765988 }, + { "lat": 40.7522770, "lon": -73.9767842 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "goods": "yes", + "highway": "service", + "layer": "1", + "name": "Depew Place", + "name:etymology:wikidata": "Q5088222" + } +}, +{ + "type": "way", + "id": 380991635, + "bounds": { + "minlat": 40.7521643, + "minlon": -73.9769219, + "maxlat": 40.7522770, + "maxlon": -73.9767842 + }, + "nodes": [ + 3842775636, + 11506958668, + 3842775634, + 3842775640 + ], + "geometry": [ + { "lat": 40.7521643, "lon": -73.9769219 }, + { "lat": 40.7521741, "lon": -73.9768883 }, + { "lat": 40.7521862, "lon": -73.9768676 }, + { "lat": 40.7522770, "lon": -73.9767842 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "goods": "yes", + "highway": "service", + "layer": "1", + "name": "Depew Place", + "name:etymology:wikidata": "Q5088222", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 380991638, + "bounds": { + "minlat": 40.7524674, + "minlon": -73.9765988, + "maxlat": 40.7525369, + "maxlon": -73.9764252 + }, + "nodes": [ + 3842775641, + 3842775631 + ], + "geometry": [ + { "lat": 40.7525369, "lon": -73.9765988 }, + { "lat": 40.7524674, "lon": -73.9764252 } + ], + "tags": { + "access": "no", + "goods": "yes", + "highway": "service", + "service": "driveway", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 381474197, + "bounds": { + "minlat": 40.7416552, + "minlon": -73.9781701, + "maxlat": 40.7422741, + "maxlon": -73.9777196 + }, + "nodes": [ + 42442902, + 3928841144, + 7640871303, + 42436754 + ], + "geometry": [ + { "lat": 40.7422741, "lon": -73.9777196 }, + { "lat": 40.7422121, "lon": -73.9777641 }, + { "lat": 40.7417077, "lon": -73.9781315 }, + { "lat": 40.7416552, "lon": -73.9781701 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 381477004, + "bounds": { + "minlat": 40.7463256, + "minlon": -73.9736516, + "maxlat": 40.7469395, + "maxlon": -73.9732058 + }, + "nodes": [ + 42454006, + 9987259759, + 13511688889, + 9987259762, + 4699874257, + 42449689 + ], + "geometry": [ + { "lat": 40.7469395, "lon": -73.9732058 }, + { "lat": 40.7468860, "lon": -73.9732446 }, + { "lat": 40.7467317, "lon": -73.9733626 }, + { "lat": 40.7465778, "lon": -73.9734687 }, + { "lat": 40.7463912, "lon": -73.9736044 }, + { "lat": 40.7463256, "lon": -73.9736516 } + ], + "tags": { + "destination:lanes:forward": "Queens Midtown Tunnel|Queens Midtown Tunnel", + "highway": "unclassified", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Tunnel Approach Street", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Tunnel Entrance", + "tiger:name_type": "St", + "tiger:reviewed": "aerial", + "turn:lanes:backward": "right;through", + "turn:lanes:forward": "through|through" + } +}, +{ + "type": "way", + "id": 381477008, + "bounds": { + "minlat": 40.7466849, + "minlon": -73.9754887, + "maxlat": 40.7471196, + "maxlon": -73.9744963 + }, + "nodes": [ + 42442918, + 7640871316, + 9987259779, + 6166333257 + ], + "geometry": [ + { "lat": 40.7466849, "lon": -73.9744963 }, + { "lat": 40.7467451, "lon": -73.9746343 }, + { "lat": 40.7470746, "lon": -73.9754046 }, + { "lat": 40.7471196, "lon": -73.9754887 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "note": "two way traffic between Sep 2016 and circa Dec 2016", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "right" + } +}, +{ + "type": "way", + "id": 381480256, + "bounds": { + "minlat": 40.7445132, + "minlon": -73.9741124, + "maxlat": 40.7457049, + "maxlon": -73.9712406 + }, + "nodes": [ + 3846857066, + 5130933118, + 42455915, + 3946500932, + 3948577929, + 3829688391, + 12427653343, + 11592552186, + 589099881 + ], + "geometry": [ + { "lat": 40.7457049, "lon": -73.9741124 }, + { "lat": 40.7451301, "lon": -73.9727204 }, + { "lat": 40.7450699, "lon": -73.9725748 }, + { "lat": 40.7450152, "lon": -73.9724421 }, + { "lat": 40.7448343, "lon": -73.9720038 }, + { "lat": 40.7447245, "lon": -73.9717404 }, + { "lat": 40.7445971, "lon": -73.9714390 }, + { "lat": 40.7445730, "lon": -73.9713820 }, + { "lat": 40.7445132, "lon": -73.9712406 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 36th Street", + "name:ru": "Восточная 36-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 381480876, + "bounds": { + "minlat": 40.7486685, + "minlon": -73.9697866, + "maxlat": 40.7487771, + "maxlon": -73.9697356 + }, + "nodes": [ + 3569749103, + 11003445512, + 248708582 + ], + "geometry": [ + { "lat": 40.7486685, "lon": -73.9697866 }, + { "lat": 40.7487179, "lon": -73.9697611 }, + { "lat": 40.7487771, "lon": -73.9697356 } + ], + "tags": { + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 381500063, + "bounds": { + "minlat": 40.7459437, + "minlon": -73.9809319, + "maxlat": 40.7460230, + "maxlon": -73.9808740 + }, + "nodes": [ + 3847026390, + 8133342843, + 3847026393 + ], + "geometry": [ + { "lat": 40.7459437, "lon": -73.9809319 }, + { "lat": 40.7459671, "lon": -73.9809149 }, + { "lat": 40.7460230, "lon": -73.9808740 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 381500065, + "bounds": { + "minlat": 40.7454707, + "minlon": -73.9812762, + "maxlat": 40.7459437, + "maxlon": -73.9809319 + }, + "nodes": [ + 3847026392, + 3847026390 + ], + "geometry": [ + { "lat": 40.7454707, "lon": -73.9812762 }, + { "lat": 40.7459437, "lon": -73.9809319 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "maxspeed": "5 mph", + "motor_vehicle": "private", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 381500066, + "bounds": { + "minlat": 40.7454035, + "minlon": -73.9813247, + "maxlat": 40.7454707, + "maxlon": -73.9812762 + }, + "nodes": [ + 3847026391, + 9512549129, + 3847026392 + ], + "geometry": [ + { "lat": 40.7454035, "lon": -73.9813247 }, + { "lat": 40.7454565, "lon": -73.9812862 }, + { "lat": 40.7454707, "lon": -73.9812762 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 381565176, + "bounds": { + "minlat": 40.7514645, + "minlon": -73.9779934, + "maxlat": 40.7519790, + "maxlon": -73.9776140 + }, + "nodes": [ + 11506834559, + 10170668444 + ], + "geometry": [ + { "lat": 40.7514645, "lon": -73.9779934 }, + { "lat": 40.7519790, "lon": -73.9776140 } + ], + "tags": { + "alt_name": "Pershing Square East Plaza", + "highway": "pedestrian", + "lit": "yes", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "paving_stones", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 381565180, + "bounds": { + "minlat": 40.7509032, + "minlon": -73.9787069, + "maxlat": 40.7515134, + "maxlon": -73.9782694 + }, + "nodes": [ + 561042200, + 10172788542, + 3786901749, + 11506834429, + 561042198 + ], + "geometry": [ + { "lat": 40.7515134, "lon": -73.9782694 }, + { "lat": 40.7514520, "lon": -73.9783145 }, + { "lat": 40.7509966, "lon": -73.9786490 }, + { "lat": 40.7509525, "lon": -73.9786800 }, + { "lat": 40.7509032, "lon": -73.9787069 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 382740985, + "bounds": { + "minlat": 40.7623476, + "minlon": -73.9823472, + "maxlat": 40.7635954, + "maxlon": -73.9814328 + }, + "nodes": [ + 42440015, + 3463817008, + 3977886878, + 42440012, + 3977886876, + 4784141039, + 4784141040, + 3977886870, + 42440009 + ], + "geometry": [ + { "lat": 40.7635954, "lon": -73.9814328 }, + { "lat": 40.7635337, "lon": -73.9814783 }, + { "lat": 40.7630337, "lon": -73.9818465 }, + { "lat": 40.7629646, "lon": -73.9818975 }, + { "lat": 40.7629057, "lon": -73.9819404 }, + { "lat": 40.7627304, "lon": -73.9820684 }, + { "lat": 40.7624482, "lon": -73.9822743 }, + { "lat": 40.7624084, "lon": -73.9823034 }, + { "lat": 40.7623476, "lon": -73.9823472 } + ], + "tags": { + "cycleway:left": "track", + "foot": "use_sidepath", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 383230222, + "bounds": { + "minlat": 40.7573016, + "minlon": -73.9303614, + "maxlat": 40.7575523, + "maxlon": -73.9301043 + }, + "nodes": [ + 3864470913, + 3864470916, + 6455626670, + 3864470915, + 3864470914, + 3864470912, + 3864470910, + 3864470909, + 3864470908, + 3864470907, + 3864470906, + 6455626671, + 3864470905, + 3864470904 + ], + "geometry": [ + { "lat": 40.7575372, "lon": -73.9301043 }, + { "lat": 40.7575523, "lon": -73.9301580 }, + { "lat": 40.7575510, "lon": -73.9301767 }, + { "lat": 40.7575487, "lon": -73.9302092 }, + { "lat": 40.7575388, "lon": -73.9302437 }, + { "lat": 40.7575216, "lon": -73.9302805 }, + { "lat": 40.7574820, "lon": -73.9303162 }, + { "lat": 40.7574486, "lon": -73.9303448 }, + { "lat": 40.7574117, "lon": -73.9303614 }, + { "lat": 40.7573874, "lon": -73.9303614 }, + { "lat": 40.7573513, "lon": -73.9303567 }, + { "lat": 40.7573397, "lon": -73.9303460 }, + { "lat": 40.7573333, "lon": -73.9303400 }, + { "lat": 40.7573016, "lon": -73.9302976 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 383230372, + "bounds": { + "minlat": 40.7693634, + "minlon": -73.9099392, + "maxlat": 40.7695630, + "maxlon": -73.9098792 + }, + "nodes": [ + 3864473664, + 6406731406, + 3864473658 + ], + "geometry": [ + { "lat": 40.7695630, "lon": -73.9098792 }, + { "lat": 40.7694512, "lon": -73.9099125 }, + { "lat": 40.7693634, "lon": -73.9099392 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 383230373, + "bounds": { + "minlat": 40.7693220, + "minlon": -73.9099869, + "maxlat": 40.7696402, + "maxlon": -73.9096262 + }, + "nodes": [ + 3864473665, + 6406731419, + 3864473664, + 3864473662, + 6406731405, + 3864473657 + ], + "geometry": [ + { "lat": 40.7696402, "lon": -73.9099869 }, + { "lat": 40.7695911, "lon": -73.9099167 }, + { "lat": 40.7695630, "lon": -73.9098792 }, + { "lat": 40.7695227, "lon": -73.9096262 }, + { "lat": 40.7694104, "lon": -73.9096563 }, + { "lat": 40.7693220, "lon": -73.9096814 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 383790595, + "bounds": { + "minlat": 40.7427277, + "minlon": -73.9744396, + "maxlat": 40.7427929, + "maxlon": -73.9742810 + }, + "nodes": [ + 3871072002, + 3871072000, + 6716668056, + 3871072001 + ], + "geometry": [ + { "lat": 40.7427277, "lon": -73.9742810 }, + { "lat": 40.7427682, "lon": -73.9743816 }, + { "lat": 40.7427857, "lon": -73.9744227 }, + { "lat": 40.7427929, "lon": -73.9744396 } + ], + "tags": { + "highway": "service", + "incline": "down", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 384178812, + "bounds": { + "minlat": 40.7453054, + "minlon": -74.0013497, + "maxlat": 40.7465212, + "maxlon": -73.9984720 + }, + "nodes": [ + 42435624, + 4205565536, + 4890040965, + 8239225259, + 42437909 + ], + "geometry": [ + { "lat": 40.7453054, "lon": -73.9984720 }, + { "lat": 40.7453669, "lon": -73.9986178 }, + { "lat": 40.7457871, "lon": -73.9996118 }, + { "lat": 40.7464508, "lon": -74.0011823 }, + { "lat": 40.7465212, "lon": -74.0013497 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:backward": "1", + "maxspeed": "25 mph", + "name": "West 23rd Street", + "name:ru": "Западная 23-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 384178813, + "bounds": { + "minlat": 40.7462289, + "minlon": -74.0015737, + "maxlat": 40.7465212, + "maxlon": -74.0013497 + }, + "nodes": [ + 42437909, + 8239225256, + 8913023103 + ], + "geometry": [ + { "lat": 40.7465212, "lon": -74.0013497 }, + { "lat": 40.7464340, "lon": -74.0014246 }, + { "lat": 40.7462289, "lon": -74.0015737 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 384178814, + "bounds": { + "minlat": 40.7470461, + "minlon": -73.9814539, + "maxlat": 40.7471247, + "maxlon": -73.9812660 + }, + "nodes": [ + 3786901743, + 561042190 + ], + "geometry": [ + { "lat": 40.7470461, "lon": -73.9812660 }, + { "lat": 40.7471247, "lon": -73.9814539 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 384178816, + "bounds": { + "minlat": 40.7566594, + "minlon": -73.9785571, + "maxlat": 40.7579096, + "maxlon": -73.9776624 + }, + "nodes": [ + 42432580, + 3955372899, + 13706267973, + 3944708057, + 42443528, + 9965135055, + 9965135054, + 42452353 + ], + "geometry": [ + { "lat": 40.7579096, "lon": -73.9776624 }, + { "lat": 40.7578499, "lon": -73.9777052 }, + { "lat": 40.7574013, "lon": -73.9780262 }, + { "lat": 40.7573422, "lon": -73.9780685 }, + { "lat": 40.7572829, "lon": -73.9781109 }, + { "lat": 40.7572262, "lon": -73.9781515 }, + { "lat": 40.7567141, "lon": -73.9785180 }, + { "lat": 40.7566594, "lon": -73.9785571 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 384178817, + "bounds": { + "minlat": 40.7049269, + "minlon": -74.0077600, + "maxlat": 40.7051798, + "maxlon": -74.0074068 + }, + "nodes": [ + 42453902, + 7139624482, + 6139477279, + 10707585709 + ], + "geometry": [ + { "lat": 40.7051798, "lon": -74.0074068 }, + { "lat": 40.7051361, "lon": -74.0074688 }, + { "lat": 40.7049653, "lon": -74.0077048 }, + { "lat": 40.7049269, "lon": -74.0077600 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 384385229, + "bounds": { + "minlat": 40.8671451, + "minlon": -74.0051925, + "maxlat": 40.8672486, + "maxlon": -74.0050527 + }, + "nodes": [ + 3876862735, + 298606136 + ], + "geometry": [ + { "lat": 40.8672486, "lon": -74.0050527 }, + { "lat": 40.8671451, "lon": -74.0051925 } + ], + "tags": { + "bridge": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "ref": "I 80", + "toll": "no" + } +}, +{ + "type": "way", + "id": 384385231, + "bounds": { + "minlat": 40.8668015, + "minlon": -74.0059858, + "maxlat": 40.8672222, + "maxlon": -74.0052911 + }, + "nodes": [ + 298562126, + 10938777599, + 10938891814, + 298562127, + 10938777596, + 298562128 + ], + "geometry": [ + { "lat": 40.8672222, "lon": -74.0052911 }, + { "lat": 40.8671440, "lon": -74.0054088 }, + { "lat": 40.8670531, "lon": -74.0055531 }, + { "lat": 40.8669673, "lon": -74.0056930 }, + { "lat": 40.8668828, "lon": -74.0058381 }, + { "lat": 40.8668015, "lon": -74.0059858 } + ], + "tags": { + "bicycle": "no", + "destination": "Newark", + "destination:ref": "I 95 South;NJTP South", + "destination:ref:to": "US 46", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "toll": "no" + } +}, +{ + "type": "way", + "id": 384385237, + "bounds": { + "minlat": 40.8673537, + "minlon": -74.0046623, + "maxlat": 40.8744269, + "maxlon": -73.9941637 + }, + "nodes": [ + 298607231, + 13164331398, + 13164331397, + 13164331399, + 13758734035, + 298607233, + 13758734042, + 13758734043, + 13758734044, + 13758734045, + 13758734046, + 10940617437, + 13758734047, + 10940617433, + 13758734048, + 298607245, + 298607035, + 13758734049, + 10940617424, + 13758734050, + 298607246, + 13758734051, + 298607027, + 13758734052, + 10940617407, + 13758734053, + 298607028, + 13758734054, + 10940617425, + 13758734055, + 298607029, + 298607030, + 298607031, + 298605045, + 298607037, + 10940617416, + 298605047, + 298604702, + 10940617429, + 298607038, + 298604704, + 298604706, + 10940617427, + 10940617423, + 13758734058, + 298775634, + 13758734057, + 10940617435, + 13758734056, + 13758734059, + 298775638 + ], + "geometry": [ + { "lat": 40.8673537, "lon": -74.0046623 }, + { "lat": 40.8674502, "lon": -74.0045493 }, + { "lat": 40.8675484, "lon": -74.0044355 }, + { "lat": 40.8676479, "lon": -74.0043201 }, + { "lat": 40.8687406, "lon": -74.0030523 }, + { "lat": 40.8691473, "lon": -74.0025804 }, + { "lat": 40.8694608, "lon": -74.0022185 }, + { "lat": 40.8695653, "lon": -74.0020983 }, + { "lat": 40.8696695, "lon": -74.0019788 }, + { "lat": 40.8697644, "lon": -74.0018689 }, + { "lat": 40.8698726, "lon": -74.0017434 }, + { "lat": 40.8699668, "lon": -74.0016344 }, + { "lat": 40.8700748, "lon": -74.0015082 }, + { "lat": 40.8701817, "lon": -74.0013831 }, + { "lat": 40.8702822, "lon": -74.0012656 }, + { "lat": 40.8703843, "lon": -74.0011438 }, + { "lat": 40.8705846, "lon": -74.0009061 }, + { "lat": 40.8706895, "lon": -74.0007807 }, + { "lat": 40.8707909, "lon": -74.0006577 }, + { "lat": 40.8708924, "lon": -74.0005324 }, + { "lat": 40.8709903, "lon": -74.0004094 }, + { "lat": 40.8710920, "lon": -74.0002794 }, + { "lat": 40.8711921, "lon": -74.0001513 }, + { "lat": 40.8712870, "lon": -74.0000274 }, + { "lat": 40.8713835, "lon": -73.9998973 }, + { "lat": 40.8714825, "lon": -73.9997627 }, + { "lat": 40.8715768, "lon": -73.9996317 }, + { "lat": 40.8716694, "lon": -73.9994995 }, + { "lat": 40.8717621, "lon": -73.9993650 }, + { "lat": 40.8718543, "lon": -73.9992292 }, + { "lat": 40.8719418, "lon": -73.9991005 }, + { "lat": 40.8721168, "lon": -73.9988306 }, + { "lat": 40.8722906, "lon": -73.9985587 }, + { "lat": 40.8724632, "lon": -73.9982791 }, + { "lat": 40.8726336, "lon": -73.9979897 }, + { "lat": 40.8727973, "lon": -73.9977040 }, + { "lat": 40.8729671, "lon": -73.9973943 }, + { "lat": 40.8731158, "lon": -73.9971191 }, + { "lat": 40.8732685, "lon": -73.9968239 }, + { "lat": 40.8734179, "lon": -73.9965215 }, + { "lat": 40.8735672, "lon": -73.9962068 }, + { "lat": 40.8737102, "lon": -73.9958976 }, + { "lat": 40.8738455, "lon": -73.9955931 }, + { "lat": 40.8739839, "lon": -73.9952718 }, + { "lat": 40.8740627, "lon": -73.9950871 }, + { "lat": 40.8741281, "lon": -73.9949303 }, + { "lat": 40.8741927, "lon": -73.9947672 }, + { "lat": 40.8742568, "lon": -73.9946051 }, + { "lat": 40.8743201, "lon": -73.9944425 }, + { "lat": 40.8743802, "lon": -73.9942848 }, + { "lat": 40.8744269, "lon": -73.9941637 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 384385247, + "bounds": { + "minlat": 40.8669309, + "minlon": -74.0049325, + "maxlat": 40.8670487, + "maxlon": -74.0047919 + }, + "nodes": [ + 3876862742, + 3876862744 + ], + "geometry": [ + { "lat": 40.8669309, "lon": -74.0049325 }, + { "lat": 40.8670487, "lon": -74.0047919 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "placement": "transition", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 384385249, + "bounds": { + "minlat": 40.8726429, + "minlon": -73.9976442, + "maxlat": 40.8742732, + "maxlon": -73.9941448 + }, + "nodes": [ + 298605051, + 13762277569, + 298604726, + 13762277570, + 10940498997, + 13762277571, + 13762277572, + 298607165, + 298604728, + 13762277573, + 13762277574, + 298604729, + 13762277575, + 298604730, + 13762277576, + 10940498993, + 13762277577, + 298775908, + 13762277578, + 298775934, + 13762277579, + 10940617413, + 298777605 + ], + "geometry": [ + { "lat": 40.8726429, "lon": -73.9976442 }, + { "lat": 40.8727261, "lon": -73.9974940 }, + { "lat": 40.8728052, "lon": -73.9973510 }, + { "lat": 40.8728844, "lon": -73.9972054 }, + { "lat": 40.8729663, "lon": -73.9970546 }, + { "lat": 40.8730439, "lon": -73.9969047 }, + { "lat": 40.8731181, "lon": -73.9967594 }, + { "lat": 40.8731952, "lon": -73.9966062 }, + { "lat": 40.8732706, "lon": -73.9964537 }, + { "lat": 40.8733456, "lon": -73.9963007 }, + { "lat": 40.8734193, "lon": -73.9961452 }, + { "lat": 40.8734937, "lon": -73.9959872 }, + { "lat": 40.8735637, "lon": -73.9958380 }, + { "lat": 40.8736338, "lon": -73.9956826 }, + { "lat": 40.8737037, "lon": -73.9955239 }, + { "lat": 40.8737716, "lon": -73.9953711 }, + { "lat": 40.8738363, "lon": -73.9952179 }, + { "lat": 40.8739058, "lon": -73.9950528 }, + { "lat": 40.8739706, "lon": -73.9948960 }, + { "lat": 40.8740365, "lon": -73.9947340 }, + { "lat": 40.8741032, "lon": -73.9945721 }, + { "lat": 40.8741639, "lon": -73.9944204 }, + { "lat": 40.8742732, "lon": -73.9941448 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 384385250, + "bounds": { + "minlat": 40.8673270, + "minlon": -74.0054252, + "maxlat": 40.8674248, + "maxlon": -74.0052781 + }, + "nodes": [ + 3876862740, + 3876862734 + ], + "geometry": [ + { "lat": 40.8674248, "lon": -74.0052781 }, + { "lat": 40.8673270, "lon": -74.0054252 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 384385251, + "bounds": { + "minlat": 40.8672222, + "minlon": -74.0052911, + "maxlat": 40.8673215, + "maxlon": -74.0051460 + }, + "nodes": [ + 3876862743, + 298562126 + ], + "geometry": [ + { "lat": 40.8673215, "lon": -74.0051460 }, + { "lat": 40.8672222, "lon": -74.0052911 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination": "Newark", + "destination:ref": "I 95 South;NJTP South", + "destination:ref:to": "US 46", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "toll": "no" + } +}, +{ + "type": "way", + "id": 384385252, + "bounds": { + "minlat": 40.8654440, + "minlon": -74.0179942, + "maxlat": 40.8674081, + "maxlon": -74.0055290 + }, + "nodes": [ + 298605486, + 10938852670, + 10938852668, + 298289167, + 10938852659, + 10938852671, + 298289151, + 10938852656, + 10938852655, + 298289152, + 10938852664, + 298289168, + 10938852672, + 10938852662, + 298289154, + 10938852665, + 10938852661, + 298289169, + 10938852657, + 10938852663, + 298289156, + 10938852667, + 10938852654, + 298289170, + 10938852660, + 298289158, + 10938852673, + 10938852658, + 298289171, + 10938852666, + 10938852669, + 10938852653, + 10938681473, + 298289160, + 10938681465, + 298289130, + 10938681463, + 298289161, + 298289172, + 10938681466, + 298289163, + 10938681462, + 10938681470, + 298289173, + 10938681469, + 13788369150, + 298289165, + 10938681467, + 10938681468, + 298289136, + 298289137, + 10938681472, + 10938663146, + 10938681471, + 298289138, + 10938681464, + 298289139, + 10938663148, + 298289140, + 10938663151, + 13753819020, + 298288914 + ], + "geometry": [ + { "lat": 40.8674081, "lon": -74.0055290 }, + { "lat": 40.8673779, "lon": -74.0055760 }, + { "lat": 40.8673093, "lon": -74.0056930 }, + { "lat": 40.8672230, "lon": -74.0058452 }, + { "lat": 40.8671477, "lon": -74.0059831 }, + { "lat": 40.8670740, "lon": -74.0061220 }, + { "lat": 40.8669993, "lon": -74.0062683 }, + { "lat": 40.8669250, "lon": -74.0064164 }, + { "lat": 40.8668508, "lon": -74.0065719 }, + { "lat": 40.8667786, "lon": -74.0067269 }, + { "lat": 40.8667091, "lon": -74.0068830 }, + { "lat": 40.8666416, "lon": -74.0070406 }, + { "lat": 40.8665766, "lon": -74.0071998 }, + { "lat": 40.8665120, "lon": -74.0073602 }, + { "lat": 40.8664511, "lon": -74.0075199 }, + { "lat": 40.8663903, "lon": -74.0076869 }, + { "lat": 40.8663331, "lon": -74.0078511 }, + { "lat": 40.8662781, "lon": -74.0080157 }, + { "lat": 40.8662248, "lon": -74.0081827 }, + { "lat": 40.8661733, "lon": -74.0083520 }, + { "lat": 40.8661230, "lon": -74.0085243 }, + { "lat": 40.8660764, "lon": -74.0086921 }, + { "lat": 40.8660321, "lon": -74.0088621 }, + { "lat": 40.8659893, "lon": -74.0090339 }, + { "lat": 40.8659483, "lon": -74.0092071 }, + { "lat": 40.8659103, "lon": -74.0093821 }, + { "lat": 40.8658748, "lon": -74.0095565 }, + { "lat": 40.8658414, "lon": -74.0097299 }, + { "lat": 40.8658096, "lon": -74.0099088 }, + { "lat": 40.8657787, "lon": -74.0100867 }, + { "lat": 40.8657501, "lon": -74.0102617 }, + { "lat": 40.8657223, "lon": -74.0104408 }, + { "lat": 40.8656960, "lon": -74.0106203 }, + { "lat": 40.8656704, "lon": -74.0108000 }, + { "lat": 40.8656440, "lon": -74.0109931 }, + { "lat": 40.8656186, "lon": -74.0111982 }, + { "lat": 40.8655884, "lon": -74.0114573 }, + { "lat": 40.8655635, "lon": -74.0117039 }, + { "lat": 40.8655379, "lon": -74.0119732 }, + { "lat": 40.8655142, "lon": -74.0122424 }, + { "lat": 40.8654965, "lon": -74.0125004 }, + { "lat": 40.8654845, "lon": -74.0127027 }, + { "lat": 40.8654734, "lon": -74.0129029 }, + { "lat": 40.8654618, "lon": -74.0131673 }, + { "lat": 40.8654529, "lon": -74.0134295 }, + { "lat": 40.8654495, "lon": -74.0135684 }, + { "lat": 40.8654465, "lon": -74.0136919 }, + { "lat": 40.8654440, "lon": -74.0139593 }, + { "lat": 40.8654441, "lon": -74.0142159 }, + { "lat": 40.8654466, "lon": -74.0145092 }, + { "lat": 40.8654515, "lon": -74.0148102 }, + { "lat": 40.8654571, "lon": -74.0149583 }, + { "lat": 40.8654630, "lon": -74.0151128 }, + { "lat": 40.8654696, "lon": -74.0152578 }, + { "lat": 40.8654768, "lon": -74.0154094 }, + { "lat": 40.8654849, "lon": -74.0155542 }, + { "lat": 40.8654933, "lon": -74.0157044 }, + { "lat": 40.8655139, "lon": -74.0160029 }, + { "lat": 40.8655397, "lon": -74.0163022 }, + { "lat": 40.8655710, "lon": -74.0166461 }, + { "lat": 40.8656142, "lon": -74.0170797 }, + { "lat": 40.8657118, "lon": -74.0179942 } + ], + "tags": { + "highway": "motorway", + "lanes": "2", + "maxheight": "14'3\"", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "ref": "I 80" + } +}, +{ + "type": "way", + "id": 384385253, + "bounds": { + "minlat": 40.8658982, + "minlon": -74.0085255, + "maxlat": 40.8673270, + "maxlon": -74.0054252 + }, + "nodes": [ + 3876862734, + 10938777601, + 10938891809, + 10938777602, + 298605776, + 10938891806, + 298605777, + 10938777604, + 298605778, + 10938777600, + 10938891805, + 298605833, + 10938891813, + 298605834, + 10938891808, + 298605835, + 10938891811, + 10938777597, + 10936420190, + 298562950 + ], + "geometry": [ + { "lat": 40.8673270, "lon": -74.0054252 }, + { "lat": 40.8672924, "lon": -74.0054768 }, + { "lat": 40.8672103, "lon": -74.0056015 }, + { "lat": 40.8671187, "lon": -74.0057465 }, + { "lat": 40.8670308, "lon": -74.0058896 }, + { "lat": 40.8669472, "lon": -74.0060289 }, + { "lat": 40.8668619, "lon": -74.0061739 }, + { "lat": 40.8667794, "lon": -74.0063220 }, + { "lat": 40.8667001, "lon": -74.0064723 }, + { "lat": 40.8666233, "lon": -74.0066246 }, + { "lat": 40.8665489, "lon": -74.0067803 }, + { "lat": 40.8664792, "lon": -74.0069346 }, + { "lat": 40.8664115, "lon": -74.0070927 }, + { "lat": 40.8663460, "lon": -74.0072540 }, + { "lat": 40.8662828, "lon": -74.0074161 }, + { "lat": 40.8662222, "lon": -74.0075811 }, + { "lat": 40.8661665, "lon": -74.0077471 }, + { "lat": 40.8661135, "lon": -74.0079125 }, + { "lat": 40.8660455, "lon": -74.0081278 }, + { "lat": 40.8658982, "lon": -74.0085255 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 384385254, + "bounds": { + "minlat": 40.8674081, + "minlon": -74.0055290, + "maxlat": 40.8675024, + "maxlon": -74.0053775 + }, + "nodes": [ + 3876862741, + 298605486 + ], + "geometry": [ + { "lat": 40.8675024, "lon": -74.0053775 }, + { "lat": 40.8674081, "lon": -74.0055290 } + ], + "tags": { + "bridge": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "ref": "I 80" + } +}, +{ + "type": "way", + "id": 384385255, + "bounds": { + "minlat": 40.8649021, + "minlon": -74.0173184, + "maxlat": 40.8671451, + "maxlon": -74.0051925 + }, + "nodes": [ + 298606136, + 10938884013, + 10938860347, + 298606106, + 10938860403, + 10938860365, + 298606107, + 10938860393, + 10938860359, + 298606108, + 10938860351, + 10938860371, + 298606169, + 10938860345, + 10938860378, + 298606110, + 10938860370, + 10938860382, + 298606111, + 10938860397, + 10938860396, + 10938884006, + 298606138, + 10938884005, + 10938860368, + 298606113, + 10938860363, + 10938860390, + 298606114, + 10938860366, + 10938860352, + 298606139, + 10938860355, + 10938860377, + 298606116, + 10938884008, + 298606258, + 10938860404, + 298288968, + 10938860391, + 10938860358, + 298288974, + 10938860341, + 10938860402, + 298288970, + 10938860357, + 10938860373, + 298288975, + 10938860386, + 298288972, + 10938860400, + 10938860389, + 298289396, + 10938860394, + 10938672467, + 298288962, + 10938672412, + 298288963, + 10938672420, + 10938653989, + 298288964, + 10938663453, + 298288965, + 10938653986, + 10938663458, + 298286161 + ], + "geometry": [ + { "lat": 40.8671451, "lon": -74.0051925 }, + { "lat": 40.8670945, "lon": -74.0052634 }, + { "lat": 40.8670003, "lon": -74.0054031 }, + { "lat": 40.8669128, "lon": -74.0055348 }, + { "lat": 40.8668245, "lon": -74.0056705 }, + { "lat": 40.8667386, "lon": -74.0058076 }, + { "lat": 40.8666531, "lon": -74.0059464 }, + { "lat": 40.8665716, "lon": -74.0060816 }, + { "lat": 40.8664892, "lon": -74.0062266 }, + { "lat": 40.8664062, "lon": -74.0063755 }, + { "lat": 40.8663292, "lon": -74.0065209 }, + { "lat": 40.8662547, "lon": -74.0066680 }, + { "lat": 40.8661813, "lon": -74.0068184 }, + { "lat": 40.8661077, "lon": -74.0069765 }, + { "lat": 40.8660398, "lon": -74.0071259 }, + { "lat": 40.8659712, "lon": -74.0072830 }, + { "lat": 40.8659052, "lon": -74.0074398 }, + { "lat": 40.8658410, "lon": -74.0075994 }, + { "lat": 40.8657817, "lon": -74.0077521 }, + { "lat": 40.8657210, "lon": -74.0079137 }, + { "lat": 40.8656626, "lon": -74.0080757 }, + { "lat": 40.8656061, "lon": -74.0082387 }, + { "lat": 40.8655518, "lon": -74.0084039 }, + { "lat": 40.8655009, "lon": -74.0085648 }, + { "lat": 40.8654510, "lon": -74.0087319 }, + { "lat": 40.8654021, "lon": -74.0089036 }, + { "lat": 40.8653556, "lon": -74.0090741 }, + { "lat": 40.8653105, "lon": -74.0092481 }, + { "lat": 40.8652694, "lon": -74.0094191 }, + { "lat": 40.8652294, "lon": -74.0095947 }, + { "lat": 40.8651913, "lon": -74.0097694 }, + { "lat": 40.8651557, "lon": -74.0099470 }, + { "lat": 40.8651239, "lon": -74.0101214 }, + { "lat": 40.8650939, "lon": -74.0102991 }, + { "lat": 40.8650657, "lon": -74.0104779 }, + { "lat": 40.8650400, "lon": -74.0106621 }, + { "lat": 40.8650138, "lon": -74.0108564 }, + { "lat": 40.8649935, "lon": -74.0110153 }, + { "lat": 40.8649742, "lon": -74.0111955 }, + { "lat": 40.8649570, "lon": -74.0113755 }, + { "lat": 40.8649432, "lon": -74.0115366 }, + { "lat": 40.8649322, "lon": -74.0116914 }, + { "lat": 40.8649232, "lon": -74.0118340 }, + { "lat": 40.8649152, "lon": -74.0120056 }, + { "lat": 40.8649091, "lon": -74.0121720 }, + { "lat": 40.8649047, "lon": -74.0123414 }, + { "lat": 40.8649028, "lon": -74.0125137 }, + { "lat": 40.8649021, "lon": -74.0126744 }, + { "lat": 40.8649039, "lon": -74.0128495 }, + { "lat": 40.8649081, "lon": -74.0130268 }, + { "lat": 40.8649133, "lon": -74.0131935 }, + { "lat": 40.8649215, "lon": -74.0133586 }, + { "lat": 40.8649320, "lon": -74.0135320 }, + { "lat": 40.8649442, "lon": -74.0136996 }, + { "lat": 40.8649584, "lon": -74.0138686 }, + { "lat": 40.8649754, "lon": -74.0140374 }, + { "lat": 40.8649934, "lon": -74.0142049 }, + { "lat": 40.8650134, "lon": -74.0143753 }, + { "lat": 40.8650349, "lon": -74.0145402 }, + { "lat": 40.8650573, "lon": -74.0147058 }, + { "lat": 40.8651052, "lon": -74.0150406 }, + { "lat": 40.8651534, "lon": -74.0153717 }, + { "lat": 40.8652085, "lon": -74.0157749 }, + { "lat": 40.8652675, "lon": -74.0161998 }, + { "lat": 40.8653282, "lon": -74.0166373 }, + { "lat": 40.8654240, "lon": -74.0173184 } + ], + "tags": { + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "ref": "I 80", + "toll": "no" + } +}, +{ + "type": "way", + "id": 384649120, + "bounds": { + "minlat": 40.7507992, + "minlon": -73.9870370, + "maxlat": 40.7535585, + "maxlon": -73.9850397 + }, + "nodes": [ + 5607992553, + 9856196752, + 42430311, + 9856196750, + 10169532557, + 42430314, + 10169532558, + 10169532600, + 42430317, + 10169532599, + 10166333099, + 42430320, + 10166333098, + 10169532592, + 42430324 + ], + "geometry": [ + { "lat": 40.7507992, "lon": -73.9870370 }, + { "lat": 40.7510279, "lon": -73.9868682 }, + { "lat": 40.7510824, "lon": -73.9868280 }, + { "lat": 40.7511305, "lon": -73.9867943 }, + { "lat": 40.7516472, "lon": -73.9864356 }, + { "lat": 40.7517000, "lon": -73.9863990 }, + { "lat": 40.7517646, "lon": -73.9863517 }, + { "lat": 40.7522588, "lon": -73.9859895 }, + { "lat": 40.7523170, "lon": -73.9859470 }, + { "lat": 40.7523729, "lon": -73.9859053 }, + { "lat": 40.7528774, "lon": -73.9855301 }, + { "lat": 40.7529437, "lon": -73.9854836 }, + { "lat": 40.7529929, "lon": -73.9854463 }, + { "lat": 40.7535003, "lon": -73.9850816 }, + { "lat": 40.7535585, "lon": -73.9850397 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 384649121, + "bounds": { + "minlat": 40.7498011, + "minlon": -73.9906121, + "maxlat": 40.7510092, + "maxlon": -73.9877463 + }, + "nodes": [ + 42437654, + 9413881840, + 8567060233, + 9698661088, + 8567060240, + 4770628023, + 6224278787, + 4886228959, + 6224277845, + 42430304 + ], + "geometry": [ + { "lat": 40.7510092, "lon": -73.9906121 }, + { "lat": 40.7509614, "lon": -73.9904978 }, + { "lat": 40.7504561, "lon": -73.9892997 }, + { "lat": 40.7504240, "lon": -73.9892236 }, + { "lat": 40.7503935, "lon": -73.9891511 }, + { "lat": 40.7500289, "lon": -73.9882862 }, + { "lat": 40.7499341, "lon": -73.9880602 }, + { "lat": 40.7498635, "lon": -73.9878920 }, + { "lat": 40.7498458, "lon": -73.9878518 }, + { "lat": 40.7498011, "lon": -73.9877463 } + ], + "tags": { + "access:lanes": "yes|no", + "bus:lanes": "yes|designated", + "foot": "designated", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 384826723, + "bounds": { + "minlat": 40.7498334, + "minlon": -73.9730335, + "maxlat": 40.7501798, + "maxlon": -73.9721997 + }, + "nodes": [ + 9140884594, + 11440124182, + 4136179170, + 42442937 + ], + "geometry": [ + { "lat": 40.7501798, "lon": -73.9730335 }, + { "lat": 40.7499239, "lon": -73.9724098 }, + { "lat": 40.7498967, "lon": -73.9723474 }, + { "lat": 40.7498334, "lon": -73.9721997 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated|yes", + "busway": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|right", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 384879728, + "bounds": { + "minlat": 40.8586462, + "minlon": -73.9634987, + "maxlat": 40.8591170, + "maxlon": -73.9631107 + }, + "nodes": [ + 3882345148, + 3882345176, + 103154337, + 103154339, + 12021336951, + 103154341, + 12021336950, + 12021336949, + 11170439766, + 11170439768, + 12021336948, + 103154343, + 12021336947, + 3882345177, + 12021336946, + 12021336945, + 3882345173, + 12021336944, + 12021336943, + 3882345159, + 12021336942, + 3882345118, + 12021336941, + 3882345143, + 12021336940, + 11170439767, + 12021336939, + 12021336938, + 3882345172, + 12021336937, + 3882345158, + 3882345169, + 3882345131, + 3882345147, + 12021336936, + 3882345152, + 12021336935, + 3882345148 + ], + "geometry": [ + { "lat": 40.8586462, "lon": -73.9631233 }, + { "lat": 40.8586812, "lon": -73.9631169 }, + { "lat": 40.8587423, "lon": -73.9631107 }, + { "lat": 40.8588884, "lon": -73.9631227 }, + { "lat": 40.8589793, "lon": -73.9631374 }, + { "lat": 40.8590016, "lon": -73.9631438 }, + { "lat": 40.8590234, "lon": -73.9631492 }, + { "lat": 40.8590397, "lon": -73.9631561 }, + { "lat": 40.8590571, "lon": -73.9631656 }, + { "lat": 40.8590736, "lon": -73.9631802 }, + { "lat": 40.8590889, "lon": -73.9632007 }, + { "lat": 40.8591023, "lon": -73.9632260 }, + { "lat": 40.8591111, "lon": -73.9632538 }, + { "lat": 40.8591156, "lon": -73.9632837 }, + { "lat": 40.8591170, "lon": -73.9633120 }, + { "lat": 40.8591157, "lon": -73.9633442 }, + { "lat": 40.8591117, "lon": -73.9633729 }, + { "lat": 40.8591040, "lon": -73.9633989 }, + { "lat": 40.8590951, "lon": -73.9634209 }, + { "lat": 40.8590824, "lon": -73.9634451 }, + { "lat": 40.8590683, "lon": -73.9634625 }, + { "lat": 40.8590521, "lon": -73.9634795 }, + { "lat": 40.8590321, "lon": -73.9634899 }, + { "lat": 40.8590138, "lon": -73.9634957 }, + { "lat": 40.8589962, "lon": -73.9634987 }, + { "lat": 40.8589751, "lon": -73.9634973 }, + { "lat": 40.8589563, "lon": -73.9634924 }, + { "lat": 40.8589338, "lon": -73.9634826 }, + { "lat": 40.8589155, "lon": -73.9634702 }, + { "lat": 40.8588959, "lon": -73.9634532 }, + { "lat": 40.8588773, "lon": -73.9634286 }, + { "lat": 40.8588589, "lon": -73.9634014 }, + { "lat": 40.8587422, "lon": -73.9632131 }, + { "lat": 40.8587275, "lon": -73.9631938 }, + { "lat": 40.8587110, "lon": -73.9631740 }, + { "lat": 40.8586910, "lon": -73.9631532 }, + { "lat": 40.8586708, "lon": -73.9631382 }, + { "lat": 40.8586462, "lon": -73.9631233 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Central Road", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 384879731, + "bounds": { + "minlat": 40.8582945, + "minlon": -73.9624102, + "maxlat": 40.8588240, + "maxlon": -73.9619418 + }, + "nodes": [ + 3882345108, + 3882345104, + 3882345168, + 3882345119, + 11170439799, + 3882345156, + 11170439820, + 11170439819, + 3882345101, + 3882345138, + 11170439772, + 3882345153, + 3882345142, + 3882345126, + 11170439773, + 11170439827, + 3882345175, + 3882345164, + 3882345170, + 11170439822, + 3882345106, + 11170439821, + 3882345108 + ], + "geometry": [ + { "lat": 40.8588108, "lon": -73.9622101 }, + { "lat": 40.8588240, "lon": -73.9621505 }, + { "lat": 40.8587762, "lon": -73.9619418 }, + { "lat": 40.8585676, "lon": -73.9619542 }, + { "lat": 40.8585129, "lon": -73.9619617 }, + { "lat": 40.8584550, "lon": -73.9619838 }, + { "lat": 40.8584025, "lon": -73.9620128 }, + { "lat": 40.8583640, "lon": -73.9620547 }, + { "lat": 40.8583348, "lon": -73.9620944 }, + { "lat": 40.8583024, "lon": -73.9621594 }, + { "lat": 40.8582945, "lon": -73.9622184 }, + { "lat": 40.8582993, "lon": -73.9622654 }, + { "lat": 40.8583181, "lon": -73.9623163 }, + { "lat": 40.8583454, "lon": -73.9623566 }, + { "lat": 40.8583854, "lon": -73.9623838 }, + { "lat": 40.8584064, "lon": -73.9624007 }, + { "lat": 40.8584459, "lon": -73.9624102 }, + { "lat": 40.8585205, "lon": -73.9624062 }, + { "lat": 40.8585417, "lon": -73.9623951 }, + { "lat": 40.8585900, "lon": -73.9623743 }, + { "lat": 40.8586528, "lon": -73.9623351 }, + { "lat": 40.8587815, "lon": -73.9622487 }, + { "lat": 40.8588108, "lon": -73.9622101 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 384880899, + "bounds": { + "minlat": 40.7070110, + "minlon": -73.9499240, + "maxlat": 40.7240560, + "maxlon": -73.9465230 + }, + "nodes": [ + 42479283, + 9789356690, + 9789356661, + 42491222, + 9789356663, + 7611228951, + 6228788696, + 42466376, + 6228788697, + 2548053396, + 9789393743, + 42491220, + 9939430902, + 8576802822, + 9789424648, + 42491217, + 9789424650, + 5673291185, + 42476625, + 12247713628, + 8702221554, + 42476514, + 9795355929, + 9942799054, + 42491205, + 9942799055, + 9945679638, + 42491203, + 9945679637, + 9945679632, + 42491195, + 9945679631, + 9795355971, + 42491188, + 9795355969, + 9795356124, + 42484205, + 9795356127, + 9957055605, + 42491183, + 9957055606, + 9955210366, + 42491180, + 9955210367, + 9955210372, + 42491177, + 9955210373, + 8842929782, + 42491173, + 8842929781, + 9752590873, + 42491169, + 9752590874, + 9955210393, + 42489757, + 9955210389, + 9955210382, + 42491164, + 9955210381, + 10693921326, + 8617784309, + 9752593890, + 42491159, + 8617784302, + 10693921321, + 10693921319, + 8589617599, + 9752593953, + 42491152, + 9752593952, + 8617429487, + 42491149 + ], + "geometry": [ + { "lat": 40.7240560, "lon": -73.9499240 }, + { "lat": 40.7240062, "lon": -73.9498954 }, + { "lat": 40.7226129, "lon": -73.9491090 }, + { "lat": 40.7225465, "lon": -73.9490870 }, + { "lat": 40.7224878, "lon": -73.9490672 }, + { "lat": 40.7216564, "lon": -73.9489338 }, + { "lat": 40.7214542, "lon": -73.9488992 }, + { "lat": 40.7212920, "lon": -73.9488750 }, + { "lat": 40.7211525, "lon": -73.9488607 }, + { "lat": 40.7208110, "lon": -73.9487973 }, + { "lat": 40.7192347, "lon": -73.9485428 }, + { "lat": 40.7191680, "lon": -73.9485320 }, + { "lat": 40.7191057, "lon": -73.9485218 }, + { "lat": 40.7185725, "lon": -73.9484347 }, + { "lat": 40.7185269, "lon": -73.9484274 }, + { "lat": 40.7184550, "lon": -73.9484160 }, + { "lat": 40.7183957, "lon": -73.9484072 }, + { "lat": 40.7179475, "lon": -73.9483431 }, + { "lat": 40.7178728, "lon": -73.9483301 }, + { "lat": 40.7176578, "lon": -73.9482970 }, + { "lat": 40.7175029, "lon": -73.9482732 }, + { "lat": 40.7174432, "lon": -73.9482647 }, + { "lat": 40.7173667, "lon": -73.9482506 }, + { "lat": 40.7171091, "lon": -73.9481996 }, + { "lat": 40.7170339, "lon": -73.9481847 }, + { "lat": 40.7169811, "lon": -73.9481759 }, + { "lat": 40.7164024, "lon": -73.9480790 }, + { "lat": 40.7163310, "lon": -73.9480670 }, + { "lat": 40.7162729, "lon": -73.9480578 }, + { "lat": 40.7156862, "lon": -73.9479649 }, + { "lat": 40.7156170, "lon": -73.9479540 }, + { "lat": 40.7155668, "lon": -73.9479454 }, + { "lat": 40.7149851, "lon": -73.9478454 }, + { "lat": 40.7149140, "lon": -73.9478330 }, + { "lat": 40.7148559, "lon": -73.9478234 }, + { "lat": 40.7143054, "lon": -73.9477336 }, + { "lat": 40.7142160, "lon": -73.9477190 }, + { "lat": 40.7141411, "lon": -73.9477066 }, + { "lat": 40.7135450, "lon": -73.9476082 }, + { "lat": 40.7134770, "lon": -73.9475970 }, + { "lat": 40.7134249, "lon": -73.9475885 }, + { "lat": 40.7128382, "lon": -73.9474931 }, + { "lat": 40.7127700, "lon": -73.9474820 }, + { "lat": 40.7127138, "lon": -73.9474728 }, + { "lat": 40.7121299, "lon": -73.9473773 }, + { "lat": 40.7120610, "lon": -73.9473660 }, + { "lat": 40.7120052, "lon": -73.9473568 }, + { "lat": 40.7114113, "lon": -73.9472593 }, + { "lat": 40.7113240, "lon": -73.9472450 }, + { "lat": 40.7112424, "lon": -73.9472294 }, + { "lat": 40.7106655, "lon": -73.9471186 }, + { "lat": 40.7105880, "lon": -73.9471040 }, + { "lat": 40.7105273, "lon": -73.9470926 }, + { "lat": 40.7099509, "lon": -73.9469837 }, + { "lat": 40.7098940, "lon": -73.9469730 }, + { "lat": 40.7098325, "lon": -73.9469627 }, + { "lat": 40.7092474, "lon": -73.9468646 }, + { "lat": 40.7091780, "lon": -73.9468530 }, + { "lat": 40.7091231, "lon": -73.9468426 }, + { "lat": 40.7089201, "lon": -73.9468041 }, + { "lat": 40.7085763, "lon": -73.9467388 }, + { "lat": 40.7085477, "lon": -73.9467446 }, + { "lat": 40.7084660, "lon": -73.9467560 }, + { "lat": 40.7084115, "lon": -73.9467667 }, + { "lat": 40.7082948, "lon": -73.9467460 }, + { "lat": 40.7080642, "lon": -73.9467062 }, + { "lat": 40.7078558, "lon": -73.9466703 }, + { "lat": 40.7078204, "lon": -73.9466650 }, + { "lat": 40.7077540, "lon": -73.9466560 }, + { "lat": 40.7076945, "lon": -73.9466473 }, + { "lat": 40.7071004, "lon": -73.9465614 }, + { "lat": 40.7070110, "lon": -73.9465230 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Leonard Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 384880900, + "bounds": { + "minlat": 40.7240560, + "minlon": -73.9499240, + "maxlat": 40.7243360, + "maxlon": -73.9490830 + }, + "nodes": [ + 42479283, + 9789356688, + 9789356762, + 42479286 + ], + "geometry": [ + { "lat": 40.7240560, "lon": -73.9499240 }, + { "lat": 40.7240809, "lon": -73.9498493 }, + { "lat": 40.7243146, "lon": -73.9491471 }, + { "lat": 40.7243360, "lon": -73.9490830 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "Nassau Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 384884312, + "bounds": { + "minlat": 40.8390253, + "minlon": -73.9699159, + "maxlat": 40.8394004, + "maxlon": -73.9685424 + }, + "nodes": [ + 3882399225, + 10181926267, + 3882398347, + 3882399196, + 3882399171, + 3882399167, + 3882399199, + 3882399174, + 3882399166, + 3882399163, + 3882399176, + 3882398351, + 3882399215 + ], + "geometry": [ + { "lat": 40.8392901, "lon": -73.9699159 }, + { "lat": 40.8393185, "lon": -73.9698369 }, + { "lat": 40.8393326, "lon": -73.9697979 }, + { "lat": 40.8393760, "lon": -73.9697098 }, + { "lat": 40.8394004, "lon": -73.9696039 }, + { "lat": 40.8393894, "lon": -73.9694988 }, + { "lat": 40.8393559, "lon": -73.9694264 }, + { "lat": 40.8393143, "lon": -73.9693727 }, + { "lat": 40.8392869, "lon": -73.9693499 }, + { "lat": 40.8392523, "lon": -73.9693169 }, + { "lat": 40.8392088, "lon": -73.9692051 }, + { "lat": 40.8390322, "lon": -73.9686485 }, + { "lat": 40.8390253, "lon": -73.9685424 } + ], + "tags": { + "highway": "residential", + "name": "Moorings Lane" + } +}, +{ + "type": "way", + "id": 384884313, + "bounds": { + "minlat": 40.8391604, + "minlon": -73.9702148, + "maxlat": 40.8392901, + "maxlon": -73.9699159 + }, + "nodes": [ + 3882414957, + 3882399213, + 3882399222, + 3882399220, + 3882399225 + ], + "geometry": [ + { "lat": 40.8391604, "lon": -73.9702148 }, + { "lat": 40.8392161, "lon": -73.9701336 }, + { "lat": 40.8392433, "lon": -73.9700728 }, + { "lat": 40.8392638, "lon": -73.9700024 }, + { "lat": 40.8392901, "lon": -73.9699159 } + ], + "tags": { + "highway": "residential", + "name": "Moorings Lane", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 384887044, + "bounds": { + "minlat": 40.8437348, + "minlon": -73.9682783, + "maxlat": 40.8442949, + "maxlon": -73.9674798 + }, + "nodes": [ + 3882426687, + 3882426685, + 3882426686, + 3882426678, + 3882426677, + 3882426675, + 3882426679, + 7292367287, + 3882426682 + ], + "geometry": [ + { "lat": 40.8442949, "lon": -73.9682783 }, + { "lat": 40.8442036, "lon": -73.9681818 }, + { "lat": 40.8441244, "lon": -73.9680611 }, + { "lat": 40.8440717, "lon": -73.9679994 }, + { "lat": 40.8439558, "lon": -73.9678578 }, + { "lat": 40.8438647, "lon": -73.9677097 }, + { "lat": 40.8437775, "lon": -73.9675649 }, + { "lat": 40.8437595, "lon": -73.9675345 }, + { "lat": 40.8437348, "lon": -73.9674798 } + ], + "tags": { + "highway": "residential", + "name": "Hill Top Lane" + } +}, +{ + "type": "way", + "id": 384898122, + "bounds": { + "minlat": 40.7194474, + "minlon": -73.9895551, + "maxlat": 40.7203066, + "maxlon": -73.9891119 + }, + "nodes": [ + 4886282364, + 8231901009, + 42437106 + ], + "geometry": [ + { "lat": 40.7194474, "lon": -73.9895551 }, + { "lat": 40.7202620, "lon": -73.9891349 }, + { "lat": 40.7203066, "lon": -73.9891119 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 385101423, + "bounds": { + "minlat": 40.7101191, + "minlon": -73.9972136, + "maxlat": 40.7102077, + "maxlon": -73.9965045 + }, + "nodes": [ + 4121409402, + 11538324054, + 11538324053, + 5708198393, + 11538324052, + 7483737463, + 3884569928 + ], + "geometry": [ + { "lat": 40.7102075, "lon": -73.9965045 }, + { "lat": 40.7102052, "lon": -73.9965369 }, + { "lat": 40.7102061, "lon": -73.9965708 }, + { "lat": 40.7102077, "lon": -73.9966079 }, + { "lat": 40.7102065, "lon": -73.9966328 }, + { "lat": 40.7102041, "lon": -73.9966623 }, + { "lat": 40.7101191, "lon": -73.9972136 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 385102416, + "bounds": { + "minlat": 40.7206496, + "minlon": -73.9818534, + "maxlat": 40.7208080, + "maxlon": -73.9813453 + }, + "nodes": [ + 5798966625, + 12312329352, + 3783146160, + 42427358 + ], + "geometry": [ + { "lat": 40.7208080, "lon": -73.9818534 }, + { "lat": 40.7206995, "lon": -73.9815089 }, + { "lat": 40.7206811, "lon": -73.9814500 }, + { "lat": 40.7206496, "lon": -73.9813453 } + ], + "tags": { + "change:lanes": "no|no|no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 385446617, + "bounds": { + "minlat": 40.7693518, + "minlon": -73.9798807, + "maxlat": 40.7706569, + "maxlon": -73.9786675 + }, + "nodes": [ + 3377460352, + 2059303808, + 9906929037, + 1420631978, + 42431280, + 3377460351, + 9906929038, + 3377460350, + 247221965, + 9906929039, + 2216963613, + 9906929040, + 3887931468 + ], + "geometry": [ + { "lat": 40.7706569, "lon": -73.9786675 }, + { "lat": 40.7705839, "lon": -73.9787604 }, + { "lat": 40.7704807, "lon": -73.9788820 }, + { "lat": 40.7703969, "lon": -73.9789817 }, + { "lat": 40.7702731, "lon": -73.9791204 }, + { "lat": 40.7701446, "lon": -73.9792529 }, + { "lat": 40.7699871, "lon": -73.9794124 }, + { "lat": 40.7698750, "lon": -73.9795189 }, + { "lat": 40.7697239, "lon": -73.9796435 }, + { "lat": 40.7696220, "lon": -73.9797213 }, + { "lat": 40.7695197, "lon": -73.9797907 }, + { "lat": 40.7694343, "lon": -73.9798395 }, + { "lat": 40.7693518, "lon": -73.9798807 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 385667445, + "bounds": { + "minlat": 40.7778592, + "minlon": -73.9819708, + "maxlat": 40.7781876, + "maxlon": -73.9818922 + }, + "nodes": [ + 1996323622, + 5708001203, + 9177424863, + 9177424864, + 9177424865, + 9177424866, + 1061531491 + ], + "geometry": [ + { "lat": 40.7778592, "lon": -73.9819708 }, + { "lat": 40.7779616, "lon": -73.9819607 }, + { "lat": 40.7780274, "lon": -73.9819493 }, + { "lat": 40.7780645, "lon": -73.9819406 }, + { "lat": 40.7781017, "lon": -73.9819286 }, + { "lat": 40.7781424, "lon": -73.9819137 }, + { "lat": 40.7781876, "lon": -73.9818922 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 385668565, + "bounds": { + "minlat": 40.7435047, + "minlon": -73.9790654, + "maxlat": 40.7444537, + "maxlon": -73.9768235 + }, + "nodes": [ + 42449314, + 4234425047, + 3841254263, + 12183286763, + 5227014112, + 7964920719, + 42442910 + ], + "geometry": [ + { "lat": 40.7444537, "lon": -73.9790654 }, + { "lat": 40.7443902, "lon": -73.9789133 }, + { "lat": 40.7442837, "lon": -73.9786597 }, + { "lat": 40.7439171, "lon": -73.9777885 }, + { "lat": 40.7436918, "lon": -73.9772568 }, + { "lat": 40.7435591, "lon": -73.9769483 }, + { "lat": 40.7435047, "lon": -73.9768235 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 32nd Street", + "name:ru": "Восточная 32-я стрит", + "name_1": "East 32 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 385883144, + "bounds": { + "minlat": 40.7192001, + "minlon": -73.9527379, + "maxlat": 40.7204444, + "maxlon": -73.9524440 + }, + "nodes": [ + 9794890606, + 9939430890, + 9939430888, + 370212366, + 370212359, + 9794890653, + 42509221 + ], + "geometry": [ + { "lat": 40.7192001, "lon": -73.9524440 }, + { "lat": 40.7192974, "lon": -73.9525051 }, + { "lat": 40.7194068, "lon": -73.9525266 }, + { "lat": 40.7197494, "lon": -73.9525701 }, + { "lat": 40.7199717, "lon": -73.9526011 }, + { "lat": 40.7203890, "lon": -73.9526828 }, + { "lat": 40.7204444, "lon": -73.9527379 } + ], + "tags": { + "highway": "pedestrian", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Union", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 386103991, + "bounds": { + "minlat": 40.8127769, + "minlon": -73.9507276, + "maxlat": 40.8163740, + "maxlon": -73.9483560 + }, + "nodes": [ + 4207743630, + 10171865574, + 42432936, + 10171865573, + 5403823137, + 12535417965, + 5420927291, + 42432938, + 12535417968, + 42432939, + 4078840307, + 3817980414, + 42432940, + 42432942, + 6427120824, + 42432943, + 42432945, + 5403823138, + 3579426938, + 5403823139, + 42432947, + 42432949, + 10171603049, + 10171603056, + 42432950 + ], + "geometry": [ + { "lat": 40.8127769, "lon": -73.9507276 }, + { "lat": 40.8131250, "lon": -73.9503836 }, + { "lat": 40.8131590, "lon": -73.9503500 }, + { "lat": 40.8132206, "lon": -73.9503030 }, + { "lat": 40.8133492, "lon": -73.9502049 }, + { "lat": 40.8137171, "lon": -73.9499243 }, + { "lat": 40.8137724, "lon": -73.9498821 }, + { "lat": 40.8138000, "lon": -73.9498610 }, + { "lat": 40.8138272, "lon": -73.9498397 }, + { "lat": 40.8141040, "lon": -73.9496230 }, + { "lat": 40.8142042, "lon": -73.9495495 }, + { "lat": 40.8143308, "lon": -73.9494606 }, + { "lat": 40.8144210, "lon": -73.9493960 }, + { "lat": 40.8147370, "lon": -73.9491890 }, + { "lat": 40.8149408, "lon": -73.9490692 }, + { "lat": 40.8150210, "lon": -73.9490200 }, + { "lat": 40.8153240, "lon": -73.9488550 }, + { "lat": 40.8153695, "lon": -73.9488327 }, + { "lat": 40.8155075, "lon": -73.9487652 }, + { "lat": 40.8155985, "lon": -73.9487207 }, + { "lat": 40.8156485, "lon": -73.9486963 }, + { "lat": 40.8156920, "lon": -73.9486770 }, + { "lat": 40.8157596, "lon": -73.9486452 }, + { "lat": 40.8163292, "lon": -73.9483771 }, + { "lat": 40.8163740, "lon": -73.9483560 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 386103993, + "bounds": { + "minlat": 40.8123183, + "minlon": -73.9522263, + "maxlat": 40.8129400, + "maxlon": -73.9517700 + }, + "nodes": [ + 42427523, + 7594173331, + 8151881632, + 10171865605, + 42427519 + ], + "geometry": [ + { "lat": 40.8129400, "lon": -73.9517700 }, + { "lat": 40.8128726, "lon": -73.9518195 }, + { "lat": 40.8124087, "lon": -73.9521600 }, + { "lat": 40.8123727, "lon": -73.9521864 }, + { "lat": 40.8123183, "lon": -73.9522263 } + ], + "tags": { + "highway": "residential", + "name": "Saint Nicholas Terrace", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 386103994, + "bounds": { + "minlat": 40.8129400, + "minlon": -73.9531087, + "maxlat": 40.8135001, + "maxlon": -73.9517700 + }, + "nodes": [ + 42448605, + 10171069497, + 8151881621, + 10171508887, + 42427523 + ], + "geometry": [ + { "lat": 40.8135001, "lon": -73.9531087 }, + { "lat": 40.8134569, "lon": -73.9530055 }, + { "lat": 40.8130012, "lon": -73.9519177 }, + { "lat": 40.8129743, "lon": -73.9518528 }, + { "lat": 40.8129400, "lon": -73.9517700 } + ], + "tags": { + "highway": "residential", + "name": "West 128th Street", + "name_1": "West 128 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 386114717, + "bounds": { + "minlat": 40.8327428, + "minlon": -73.9093618, + "maxlat": 40.8339241, + "maxlon": -73.9086518 + }, + "nodes": [ + 4202402636, + 9832626699, + 12038123089, + 8454214945, + 10126901995, + 42764738 + ], + "geometry": [ + { "lat": 40.8327428, "lon": -73.9093618 }, + { "lat": 40.8328763, "lon": -73.9092528 }, + { "lat": 40.8329837, "lon": -73.9091973 }, + { "lat": 40.8330399, "lon": -73.9091682 }, + { "lat": 40.8338544, "lon": -73.9086886 }, + { "lat": 40.8339241, "lon": -73.9086518 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "Webster Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 386211349, + "bounds": { + "minlat": 40.7296860, + "minlon": -73.9986042, + "maxlat": 40.7302937, + "maxlon": -73.9980762 + }, + "nodes": [ + 42436796, + 3584752228, + 8309478975, + 42436793 + ], + "geometry": [ + { "lat": 40.7302937, "lon": -73.9980762 }, + { "lat": 40.7302436, "lon": -73.9981197 }, + { "lat": 40.7297339, "lon": -73.9985626 }, + { "lat": 40.7296860, "lon": -73.9986042 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Thompson Street", + "name:etymology:wikidata": "Q3568998", + "name:ko": "톰슨 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12070954", + "wikipedia": "en:Thompson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 386227016, + "bounds": { + "minlat": 40.8570623, + "minlon": -73.9643198, + "maxlat": 40.8582365, + "maxlon": -73.9635525 + }, + "nodes": [ + 3895526496, + 3895526487, + 3895526491, + 3895526492, + 3895526493, + 3895526494, + 3895526486, + 3895526495 + ], + "geometry": [ + { "lat": 40.8582365, "lon": -73.9640584 }, + { "lat": 40.8574920, "lon": -73.9642837 }, + { "lat": 40.8573689, "lon": -73.9643198 }, + { "lat": 40.8573013, "lon": -73.9642113 }, + { "lat": 40.8572364, "lon": -73.9640933 }, + { "lat": 40.8571741, "lon": -73.9637973 }, + { "lat": 40.8570872, "lon": -73.9636996 }, + { "lat": 40.8570623, "lon": -73.9635525 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 386227017, + "bounds": { + "minlat": 40.8561334, + "minlon": -73.9646226, + "maxlat": 40.8573034, + "maxlon": -73.9635888 + }, + "nodes": [ + 103154331, + 3895526503, + 3895526502, + 3895526501, + 3895526500, + 3895526497, + 3895526498, + 3895526499 + ], + "geometry": [ + { "lat": 40.8569353, "lon": -73.9635888 }, + { "lat": 40.8569611, "lon": -73.9636999 }, + { "lat": 40.8572938, "lon": -73.9643115 }, + { "lat": 40.8573034, "lon": -73.9643696 }, + { "lat": 40.8572898, "lon": -73.9644107 }, + { "lat": 40.8565351, "lon": -73.9646226 }, + { "lat": 40.8561760, "lon": -73.9639633 }, + { "lat": 40.8561334, "lon": -73.9638415 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 386227018, + "bounds": { + "minlat": 40.8567731, + "minlon": -73.9655908, + "maxlat": 40.8569623, + "maxlon": -73.9651368 + }, + "nodes": [ + 3895526504, + 3895526505, + 3895526506, + 103126813 + ], + "geometry": [ + { "lat": 40.8569623, "lon": -73.9655908 }, + { "lat": 40.8569172, "lon": -73.9654638 }, + { "lat": 40.8568653, "lon": -73.9653419 }, + { "lat": 40.8567731, "lon": -73.9651368 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 386465168, + "bounds": { + "minlat": 40.7683576, + "minlon": -73.9757560, + "maxlat": 40.7686366, + "maxlon": -73.9755808 + }, + "nodes": [ + 3898029174, + 3898029175 + ], + "geometry": [ + { "lat": 40.7683576, "lon": -73.9757560 }, + { "lat": 40.7686366, "lon": -73.9755808 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "bridge": "yes", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Center Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 386503669, + "bounds": { + "minlat": 40.8175270, + "minlon": -73.9510088, + "maxlat": 40.8183502, + "maxlon": -73.9507717 + }, + "nodes": [ + 3898480791, + 3898480790, + 10183024493, + 3898480788, + 3898480785, + 3898480783, + 3898480778, + 3898480769, + 3898480764 + ], + "geometry": [ + { "lat": 40.8183502, "lon": -73.9507717 }, + { "lat": 40.8182974, "lon": -73.9508067 }, + { "lat": 40.8182540, "lon": -73.9508082 }, + { "lat": 40.8182105, "lon": -73.9508097 }, + { "lat": 40.8180847, "lon": -73.9508261 }, + { "lat": 40.8179526, "lon": -73.9508466 }, + { "lat": 40.8178097, "lon": -73.9508756 }, + { "lat": 40.8176882, "lon": -73.9509011 }, + { "lat": 40.8175270, "lon": -73.9510088 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 386740988, + "bounds": { + "minlat": 40.8484330, + "minlon": -73.9161377, + "maxlat": 40.8490145, + "maxlon": -73.9129780 + }, + "nodes": [ + 42744747, + 8285583701, + 42744749, + 8392852828, + 42720026, + 13181365286, + 13181365288, + 42744753 + ], + "geometry": [ + { "lat": 40.8484330, "lon": -73.9129780 }, + { "lat": 40.8484681, "lon": -73.9131754 }, + { "lat": 40.8486108, "lon": -73.9139724 }, + { "lat": 40.8487037, "lon": -73.9144597 }, + { "lat": 40.8487960, "lon": -73.9149390 }, + { "lat": 40.8488897, "lon": -73.9154531 }, + { "lat": 40.8489871, "lon": -73.9159876 }, + { "lat": 40.8490145, "lon": -73.9161377 } + ], + "tags": { + "highway": "residential", + "name": "West 176th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "176th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 386740989, + "bounds": { + "minlat": 40.8484330, + "minlon": -73.9129780, + "maxlat": 40.8501483, + "maxlon": -73.9115972 + }, + "nodes": [ + 42744747, + 8285583676, + 5527067352, + 42745939 + ], + "geometry": [ + { "lat": 40.8484330, "lon": -73.9129780 }, + { "lat": 40.8490898, "lon": -73.9125264 }, + { "lat": 40.8496631, "lon": -73.9121321 }, + { "lat": 40.8501483, "lon": -73.9115972 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Davidson Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Davidson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 386746494, + "bounds": { + "minlat": 40.7787775, + "minlon": -73.9447790, + "maxlat": 40.7791490, + "maxlon": -73.9434716 + }, + "nodes": [ + 42428049, + 5904383032, + 9906868464, + 9906868463, + 9906868465, + 9906868442, + 3900961213, + 9906868443, + 3900961214, + 9906868444, + 3900961215, + 9906868445, + 3900961220, + 3900961221, + 3900961216, + 9906868446, + 3900961217 + ], + "geometry": [ + { "lat": 40.7791490, "lon": -73.9447790 }, + { "lat": 40.7791387, "lon": -73.9446467 }, + { "lat": 40.7790812, "lon": -73.9445086 }, + { "lat": 40.7790505, "lon": -73.9444349 }, + { "lat": 40.7790149, "lon": -73.9443495 }, + { "lat": 40.7788961, "lon": -73.9440645 }, + { "lat": 40.7788102, "lon": -73.9438660 }, + { "lat": 40.7788005, "lon": -73.9438388 }, + { "lat": 40.7787921, "lon": -73.9438090 }, + { "lat": 40.7787847, "lon": -73.9437741 }, + { "lat": 40.7787794, "lon": -73.9437392 }, + { "lat": 40.7787775, "lon": -73.9437029 }, + { "lat": 40.7787786, "lon": -73.9436646 }, + { "lat": 40.7787813, "lon": -73.9436275 }, + { "lat": 40.7787862, "lon": -73.9435893 }, + { "lat": 40.7787919, "lon": -73.9435550 }, + { "lat": 40.7788108, "lon": -73.9434716 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "2", + "maxspeed": "5 mph", + "name": "East 91st Street", + "name:ru": "Восточная 91-я стрит" + } +}, +{ + "type": "way", + "id": 386746497, + "bounds": { + "minlat": 40.7788108, + "minlon": -73.9434716, + "maxlat": 40.7789223, + "maxlon": -73.9430565 + }, + "nodes": [ + 3900961217, + 9906868452 + ], + "geometry": [ + { "lat": 40.7788108, "lon": -73.9434716 }, + { "lat": 40.7789223, "lon": -73.9430565 } + ], + "tags": { + "access": "private", + "bridge": "yes", + "highway": "service", + "lanes": "2", + "layer": "1", + "maxspeed": "5 mph", + "name": "East 91st Street", + "name:ru": "Восточная 91-я стрит", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 386746508, + "bounds": { + "minlat": 40.7838309, + "minlon": -73.9436375, + "maxlat": 40.7842871, + "maxlon": -73.9431975 + }, + "nodes": [ + 3900961230, + 3900961231, + 3900961236, + 3900961234, + 11222397103 + ], + "geometry": [ + { "lat": 40.7838309, "lon": -73.9435339 }, + { "lat": 40.7841023, "lon": -73.9431975 }, + { "lat": 40.7841969, "lon": -73.9434192 }, + { "lat": 40.7842784, "lon": -73.9436170 }, + { "lat": 40.7842871, "lon": -73.9436375 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 386746510, + "bounds": { + "minlat": 40.7838309, + "minlon": -73.9438481, + "maxlat": 40.7842784, + "maxlon": -73.9435339 + }, + "nodes": [ + 3900961230, + 3900961235, + 3900961233, + 3900961234 + ], + "geometry": [ + { "lat": 40.7838309, "lon": -73.9435339 }, + { "lat": 40.7838855, "lon": -73.9436630 }, + { "lat": 40.7839626, "lon": -73.9438481 }, + { "lat": 40.7842784, "lon": -73.9436170 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 386746513, + "bounds": { + "minlat": 40.7838855, + "minlon": -73.9436630, + "maxlat": 40.7841969, + "maxlon": -73.9434192 + }, + "nodes": [ + 3900961235, + 3900961236 + ], + "geometry": [ + { "lat": 40.7838855, "lon": -73.9436630 }, + { "lat": 40.7841969, "lon": -73.9434192 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 386746515, + "bounds": { + "minlat": 40.7844993, + "minlon": -73.9458678, + "maxlat": 40.7848054, + "maxlon": -73.9451278 + }, + "nodes": [ + 3900964268, + 3900961238, + 6221959124 + ], + "geometry": [ + { "lat": 40.7848054, "lon": -73.9458678 }, + { "lat": 40.7846961, "lon": -73.9456088 }, + { "lat": 40.7844993, "lon": -73.9451278 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 386746518, + "bounds": { + "minlat": 40.7851662, + "minlon": -73.9441519, + "maxlat": 40.7853913, + "maxlon": -73.9440233 + }, + "nodes": [ + 3900961244, + 12096719628, + 3900964258 + ], + "geometry": [ + { "lat": 40.7851662, "lon": -73.9441519 }, + { "lat": 40.7853224, "lon": -73.9440609 }, + { "lat": 40.7853913, "lon": -73.9440233 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 386746520, + "bounds": { + "minlat": 40.7850008, + "minlon": -73.9439795, + "maxlat": 40.7852261, + "maxlon": -73.9436208 + }, + "nodes": [ + 3900961250, + 3900961251, + 3900961252, + 3900961253 + ], + "geometry": [ + { "lat": 40.7851010, "lon": -73.9439795 }, + { "lat": 40.7850008, "lon": -73.9437049 }, + { "lat": 40.7851125, "lon": -73.9436208 }, + { "lat": 40.7852261, "lon": -73.9438917 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 386746523, + "bounds": { + "minlat": 40.7853224, + "minlon": -73.9448338, + "maxlat": 40.7856526, + "maxlon": -73.9440609 + }, + "nodes": [ + 3900961254, + 3900961255, + 3900961256, + 12096719628 + ], + "geometry": [ + { "lat": 40.7856526, "lon": -73.9448338 }, + { "lat": 40.7854412, "lon": -73.9443356 }, + { "lat": 40.7853965, "lon": -73.9442243 }, + { "lat": 40.7853224, "lon": -73.9440609 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 386746525, + "bounds": { + "minlat": 40.7847862, + "minlon": -73.9458678, + "maxlat": 40.7850579, + "maxlon": -73.9450079 + }, + "nodes": [ + 3900964268, + 8266104436, + 3900964269, + 3900964270 + ], + "geometry": [ + { "lat": 40.7848054, "lon": -73.9458678 }, + { "lat": 40.7849662, "lon": -73.9457214 }, + { "lat": 40.7850579, "lon": -73.9456414 }, + { "lat": 40.7847862, "lon": -73.9450079 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 386951769, + "bounds": { + "minlat": 40.7409695, + "minlon": -73.9822862, + "maxlat": 40.7415765, + "maxlon": -73.9818234 + }, + "nodes": [ + 3903014639, + 10172784869, + 3903014643, + 3903014641, + 10167162576, + 42454333 + ], + "geometry": [ + { "lat": 40.7409695, "lon": -73.9822862 }, + { "lat": 40.7410170, "lon": -73.9822507 }, + { "lat": 40.7410413, "lon": -73.9822321 }, + { "lat": 40.7414759, "lon": -73.9818987 }, + { "lat": 40.7415175, "lon": -73.9818668 }, + { "lat": 40.7415765, "lon": -73.9818234 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "motor_vehicle": "no", + "name": "Broadway Alley", + "service": "alley", + "surface": "dirt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 386972970, + "bounds": { + "minlat": 40.7508474, + "minlon": -73.9785793, + "maxlat": 40.7509396, + "maxlon": -73.9785441 + }, + "nodes": [ + 561042199, + 11506834427, + 100522479 + ], + "geometry": [ + { "lat": 40.7508474, "lon": -73.9785793 }, + { "lat": 40.7509002, "lon": -73.9785568 }, + { "lat": 40.7509396, "lon": -73.9785441 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "no", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q7137641", + "wikipedia": "en:Park Avenue Viaduct" + } +}, +{ + "type": "way", + "id": 387038051, + "bounds": { + "minlat": 40.7535014, + "minlon": -73.9379572, + "maxlat": 40.7558105, + "maxlon": -73.9358181 + }, + "nodes": [ + 42818567, + 5031422308, + 8699111879, + 42818570, + 8699111844, + 7071449374, + 5031422292, + 42818573 + ], + "geometry": [ + { "lat": 40.7558105, "lon": -73.9358181 }, + { "lat": 40.7557474, "lon": -73.9358823 }, + { "lat": 40.7548108, "lon": -73.9367449 }, + { "lat": 40.7547625, "lon": -73.9367890 }, + { "lat": 40.7547053, "lon": -73.9368404 }, + { "lat": 40.7539607, "lon": -73.9375316 }, + { "lat": 40.7535523, "lon": -73.9379046 }, + { "lat": 40.7535014, "lon": -73.9379572 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 387038052, + "bounds": { + "minlat": 40.7713596, + "minlon": -73.9228535, + "maxlat": 40.7734519, + "maxlon": -73.9209533 + }, + "nodes": [ + 42808162, + 7787345556, + 6452901810, + 2447553700, + 42808170, + 5042143140, + 2447553699, + 6908562509, + 5042143143, + 7180375843, + 5044706872, + 42818487 + ], + "geometry": [ + { "lat": 40.7734519, "lon": -73.9209533 }, + { "lat": 40.7733677, "lon": -73.9210522 }, + { "lat": 40.7731178, "lon": -73.9213599 }, + { "lat": 40.7730976, "lon": -73.9213848 }, + { "lat": 40.7730491, "lon": -73.9214828 }, + { "lat": 40.7729958, "lon": -73.9215780 }, + { "lat": 40.7729838, "lon": -73.9215994 }, + { "lat": 40.7725939, "lon": -73.9219019 }, + { "lat": 40.7720780, "lon": -73.9223013 }, + { "lat": 40.7719903, "lon": -73.9223702 }, + { "lat": 40.7714366, "lon": -73.9227998 }, + { "lat": 40.7713596, "lon": -73.9228535 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Crescent Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 387038333, + "bounds": { + "minlat": 40.7729880, + "minlon": -73.9215156, + "maxlat": 40.7766191, + "maxlon": -73.9163880 + }, + "nodes": [ + 42818182, + 6450583547, + 6450635155, + 42818186, + 6450635156, + 6450583535, + 42818188, + 6450583536, + 5042135685, + 42818193, + 5042135683, + 6450583518, + 42818198, + 6450583520, + 6450583527, + 42818203, + 6450583528, + 6450635164, + 42817460, + 6450635165, + 6450635172, + 42818207 + ], + "geometry": [ + { "lat": 40.7766191, "lon": -73.9215156 }, + { "lat": 40.7765574, "lon": -73.9214296 }, + { "lat": 40.7759501, "lon": -73.9205823 }, + { "lat": 40.7759040, "lon": -73.9205180 }, + { "lat": 40.7758581, "lon": -73.9204530 }, + { "lat": 40.7754630, "lon": -73.9198936 }, + { "lat": 40.7754160, "lon": -73.9198270 }, + { "lat": 40.7753773, "lon": -73.9197722 }, + { "lat": 40.7749789, "lon": -73.9192071 }, + { "lat": 40.7749330, "lon": -73.9191410 }, + { "lat": 40.7748923, "lon": -73.9190823 }, + { "lat": 40.7744957, "lon": -73.9185210 }, + { "lat": 40.7744490, "lon": -73.9184550 }, + { "lat": 40.7744093, "lon": -73.9183988 }, + { "lat": 40.7740088, "lon": -73.9178312 }, + { "lat": 40.7739600, "lon": -73.9177620 }, + { "lat": 40.7739210, "lon": -73.9177069 }, + { "lat": 40.7735216, "lon": -73.9171429 }, + { "lat": 40.7734750, "lon": -73.9170770 }, + { "lat": 40.7734366, "lon": -73.9170227 }, + { "lat": 40.7730358, "lon": -73.9164556 }, + { "lat": 40.7729880, "lon": -73.9163880 } + ], + "tags": { + "hgv": "designated", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "24th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 387038662, + "bounds": { + "minlat": 40.7598474, + "minlon": -73.9149982, + "maxlat": 40.7639012, + "maxlon": -73.9063123 + }, + "nodes": [ + 42874062, + 3570249964, + 4942206603, + 42874065, + 3570249956, + 42874069, + 3570249952, + 10891908695, + 3570249947, + 42874072, + 3570249944, + 3570249939, + 42874074, + 3570249936, + 4971251566, + 3570249931, + 42874076, + 3570249928, + 10891908696, + 3570249923, + 42874078, + 3570249919, + 10891936639, + 10891908697, + 3570249913, + 42833494, + 3570249908, + 6453065714, + 42874083, + 6453065713, + 10891936638, + 6453065719, + 42860063, + 6453065720, + 7259995704, + 10891908698, + 4912921590, + 42807796, + 4912921587, + 7814200390, + 42874087, + 7814200407, + 7814200402, + 42873480 + ], + "geometry": [ + { "lat": 40.7639012, "lon": -73.9149982 }, + { "lat": 40.7638550, "lon": -73.9148983 }, + { "lat": 40.7638242, "lon": -73.9148330 }, + { "lat": 40.7637990, "lon": -73.9147791 }, + { "lat": 40.7635571, "lon": -73.9142610 }, + { "lat": 40.7635239, "lon": -73.9141899 }, + { "lat": 40.7634945, "lon": -73.9141266 }, + { "lat": 40.7632776, "lon": -73.9136620 }, + { "lat": 40.7631843, "lon": -73.9134622 }, + { "lat": 40.7631512, "lon": -73.9133913 }, + { "lat": 40.7631155, "lon": -73.9133147 }, + { "lat": 40.7628110, "lon": -73.9126623 }, + { "lat": 40.7627774, "lon": -73.9125902 }, + { "lat": 40.7627479, "lon": -73.9125265 }, + { "lat": 40.7626635, "lon": -73.9123462 }, + { "lat": 40.7624374, "lon": -73.9118619 }, + { "lat": 40.7624055, "lon": -73.9117934 }, + { "lat": 40.7623683, "lon": -73.9117156 }, + { "lat": 40.7623392, "lon": -73.9116555 }, + { "lat": 40.7620534, "lon": -73.9110645 }, + { "lat": 40.7620219, "lon": -73.9109909 }, + { "lat": 40.7619874, "lon": -73.9109179 }, + { "lat": 40.7618985, "lon": -73.9107291 }, + { "lat": 40.7617586, "lon": -73.9104321 }, + { "lat": 40.7616793, "lon": -73.9102639 }, + { "lat": 40.7616473, "lon": -73.9101989 }, + { "lat": 40.7616109, "lon": -73.9101206 }, + { "lat": 40.7613016, "lon": -73.9094639 }, + { "lat": 40.7612670, "lon": -73.9093898 }, + { "lat": 40.7612330, "lon": -73.9093170 }, + { "lat": 40.7611511, "lon": -73.9091399 }, + { "lat": 40.7609323, "lon": -73.9086670 }, + { "lat": 40.7608999, "lon": -73.9085969 }, + { "lat": 40.7608637, "lon": -73.9085164 }, + { "lat": 40.7607234, "lon": -73.9082052 }, + { "lat": 40.7606624, "lon": -73.9080692 }, + { "lat": 40.7605699, "lon": -73.9078629 }, + { "lat": 40.7605417, "lon": -73.9077999 }, + { "lat": 40.7605031, "lon": -73.9077070 }, + { "lat": 40.7601928, "lon": -73.9070513 }, + { "lat": 40.7601604, "lon": -73.9069829 }, + { "lat": 40.7601319, "lon": -73.9069218 }, + { "lat": 40.7598737, "lon": -73.9064113 }, + { "lat": 40.7598474, "lon": -73.9063123 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "30th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 387040313, + "bounds": { + "minlat": 40.7508071, + "minlon": -73.9433960, + "maxlat": 40.7512912, + "maxlon": -73.9429365 + }, + "nodes": [ + 593215914, + 276036211 + ], + "geometry": [ + { "lat": 40.7512912, "lon": -73.9429365 }, + { "lat": 40.7508071, "lon": -73.9433960 } + ], + "tags": { + "access:conditional": "no @ (Mo-Fr 06:00-09:30); yes @ (Mo-Fr 06:00-09:30 AND occupants>1)", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "layer": "1", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "note": "Upper level", + "oneway": "reversible", + "oneway:conditional": "yes @ (Mo-Fr 00:00-06:00,09:30-24:00; Sa-Su); -1 @ (Mo-Fr 06:00-09:30)", + "turn:lanes": "slight_left|slight_left|slight_right" + } +}, +{ + "type": "way", + "id": 387128266, + "bounds": { + "minlat": 40.7778838, + "minlon": -73.9539771, + "maxlat": 40.7788275, + "maxlon": -73.9517401 + }, + "nodes": [ + 42429338, + 7924094055, + 7834030835, + 42429340 + ], + "geometry": [ + { "lat": 40.7788275, "lon": -73.9539771 }, + { "lat": 40.7787728, "lon": -73.9538467 }, + { "lat": 40.7779409, "lon": -73.9518781 }, + { "lat": 40.7778838, "lon": -73.9517401 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 387128267, + "bounds": { + "minlat": 40.7708305, + "minlon": -73.9619153, + "maxlat": 40.7749669, + "maxlon": -73.9588958 + }, + "nodes": [ + 42447105, + 10122937127, + 5402545375, + 10122937126, + 42436917, + 10173250684, + 10122937123, + 10122937128, + 42446466, + 10122937129, + 5402539614, + 10122937131, + 42447084, + 10122937132, + 10125087306, + 42430060, + 10125087310, + 10125087309, + 42439559, + 10125087312, + 10125087311, + 42438798, + 11206693780, + 10125139619 + ], + "geometry": [ + { "lat": 40.7749669, "lon": -73.9588958 }, + { "lat": 40.7748747, "lon": -73.9589636 }, + { "lat": 40.7745711, "lon": -73.9591849 }, + { "lat": 40.7743372, "lon": -73.9593534 }, + { "lat": 40.7742796, "lon": -73.9593972 }, + { "lat": 40.7742364, "lon": -73.9594287 }, + { "lat": 40.7742267, "lon": -73.9594357 }, + { "lat": 40.7737037, "lon": -73.9598201 }, + { "lat": 40.7736555, "lon": -73.9598542 }, + { "lat": 40.7735934, "lon": -73.9598979 }, + { "lat": 40.7733107, "lon": -73.9601035 }, + { "lat": 40.7730652, "lon": -73.9602839 }, + { "lat": 40.7730155, "lon": -73.9603206 }, + { "lat": 40.7729512, "lon": -73.9603657 }, + { "lat": 40.7724307, "lon": -73.9607427 }, + { "lat": 40.7723765, "lon": -73.9607791 }, + { "lat": 40.7723248, "lon": -73.9608205 }, + { "lat": 40.7717981, "lon": -73.9612101 }, + { "lat": 40.7717414, "lon": -73.9612509 }, + { "lat": 40.7716884, "lon": -73.9612894 }, + { "lat": 40.7711695, "lon": -73.9616676 }, + { "lat": 40.7711121, "lon": -73.9617094 }, + { "lat": 40.7710555, "lon": -73.9617508 }, + { "lat": 40.7708305, "lon": -73.9619153 } + ], + "tags": { + "alt_name:el": "Λέξιγκτων", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:el": "Λεξιγκτώνος", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 387380393, + "bounds": { + "minlat": 40.7964911, + "minlon": -73.9529243, + "maxlat": 40.7965905, + "maxlon": -73.9527775 + }, + "nodes": [ + 600524322, + 4302966414, + 4302966426, + 4302966436, + 4302966450, + 600524328, + 600524329, + 600524330, + 4302966485, + 600524335, + 12815110839, + 12815110840, + 12815110841, + 12815110842, + 12815110834, + 12815110835, + 12815110836, + 12815110837, + 12815110838, + 12815110833, + 4302966455, + 600524339, + 600524340, + 600524341, + 4302966418, + 4302966413, + 600524323, + 4302966398, + 600524324, + 4302966396, + 4302966394, + 4302966395, + 600524325, + 600524326, + 600524322 + ], + "geometry": [ + { "lat": 40.7965096, "lon": -73.9529084 }, + { "lat": 40.7965210, "lon": -73.9529162 }, + { "lat": 40.7965332, "lon": -73.9529223 }, + { "lat": 40.7965423, "lon": -73.9529243 }, + { "lat": 40.7965530, "lon": -73.9529241 }, + { "lat": 40.7965626, "lon": -73.9529216 }, + { "lat": 40.7965706, "lon": -73.9529176 }, + { "lat": 40.7965794, "lon": -73.9529108 }, + { "lat": 40.7965905, "lon": -73.9528967 }, + { "lat": 40.7965696, "lon": -73.9529017 }, + { "lat": 40.7965480, "lon": -73.9528997 }, + { "lat": 40.7965422, "lon": -73.9528900 }, + { "lat": 40.7965439, "lon": -73.9528811 }, + { "lat": 40.7965524, "lon": -73.9528712 }, + { "lat": 40.7965537, "lon": -73.9528601 }, + { "lat": 40.7965427, "lon": -73.9528498 }, + { "lat": 40.7965367, "lon": -73.9528292 }, + { "lat": 40.7965337, "lon": -73.9528142 }, + { "lat": 40.7965388, "lon": -73.9528020 }, + { "lat": 40.7965470, "lon": -73.9527925 }, + { "lat": 40.7965569, "lon": -73.9527838 }, + { "lat": 40.7965568, "lon": -73.9527785 }, + { "lat": 40.7965437, "lon": -73.9527775 }, + { "lat": 40.7965328, "lon": -73.9527797 }, + { "lat": 40.7965246, "lon": -73.9527834 }, + { "lat": 40.7965180, "lon": -73.9527880 }, + { "lat": 40.7965088, "lon": -73.9527971 }, + { "lat": 40.7965022, "lon": -73.9528070 }, + { "lat": 40.7964967, "lon": -73.9528188 }, + { "lat": 40.7964929, "lon": -73.9528326 }, + { "lat": 40.7964911, "lon": -73.9528487 }, + { "lat": 40.7964920, "lon": -73.9528640 }, + { "lat": 40.7964951, "lon": -73.9528782 }, + { "lat": 40.7965034, "lon": -73.9528972 }, + { "lat": 40.7965096, "lon": -73.9529084 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "historic": "memorial", + "memorial:conflict": "War_of_1812", + "name": "Nutter's Battery", + "name:be": "Батарэя Наттэра", + "name:en": "Nutter's Battery", + "name:pl": "Bateria Nuttera", + "name:ru": "Батарея Наттера", + "start_date": "1812..1815", + "tourism": "attraction", + "war_memorial": "yes", + "website": "https://www.centralparknyc.org/locations/nutters-battery", + "wikidata": "Q7070572", + "wikipedia": "en:Nutter's Battery" + } +}, +{ + "type": "way", + "id": 388125300, + "bounds": { + "minlat": 40.8801086, + "minlon": -73.9452946, + "maxlat": 40.8804609, + "maxlon": -73.9450149 + }, + "nodes": [ + 3913281915, + 3913281916, + 3913281914 + ], + "geometry": [ + { "lat": 40.8804609, "lon": -73.9452946 }, + { "lat": 40.8804086, "lon": -73.9450695 }, + { "lat": 40.8801086, "lon": -73.9450149 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 388167518, + "bounds": { + "minlat": 40.7099123, + "minlon": -74.0060881, + "maxlat": 40.7104144, + "maxlon": -74.0056176 + }, + "nodes": [ + 1538237248, + 8281922107, + 8281922081, + 42448593 + ], + "geometry": [ + { "lat": 40.7099123, "lon": -74.0060881 }, + { "lat": 40.7099398, "lon": -74.0060600 }, + { "lat": 40.7103704, "lon": -74.0056584 }, + { "lat": 40.7104144, "lon": -74.0056176 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "William Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "윌리엄 스트리트", + "name:ru": "Уильям-стрит", + "oneway": "yes", + "parking:left": "no", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 388167519, + "bounds": { + "minlat": 40.7094179, + "minlon": -74.0060881, + "maxlat": 40.7099123, + "maxlon": -74.0051228 + }, + "nodes": [ + 1538237248, + 8281922106, + 3809553311, + 11347777599, + 1538237377, + 42430848 + ], + "geometry": [ + { "lat": 40.7099123, "lon": -74.0060881 }, + { "lat": 40.7098932, "lon": -74.0060546 }, + { "lat": 40.7098595, "lon": -74.0059937 }, + { "lat": 40.7094946, "lon": -74.0052616 }, + { "lat": 40.7094665, "lon": -74.0052064 }, + { "lat": 40.7094179, "lon": -74.0051228 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Ann Street", + "name:ko": "앤 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4766689", + "wikipedia": "en:Ann Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 388240124, + "bounds": { + "minlat": 40.7419813, + "minlon": -73.9808707, + "maxlat": 40.7450650, + "maxlon": -73.9786187 + }, + "nodes": [ + 42446275, + 4234425042, + 12183286753, + 4234425053, + 42436753, + 4234425041, + 12183286755, + 4234425017, + 42445413, + 4234425054, + 12183286757, + 4234425052, + 42449926, + 4234425027, + 12183286759, + 4234425024, + 42449314, + 4234425022, + 12183286761, + 4234425036, + 42449928 + ], + "geometry": [ + { "lat": 40.7419813, "lon": -73.9808707 }, + { "lat": 40.7420386, "lon": -73.9808291 }, + { "lat": 40.7424940, "lon": -73.9804975 }, + { "lat": 40.7425421, "lon": -73.9804623 }, + { "lat": 40.7426044, "lon": -73.9804162 }, + { "lat": 40.7426557, "lon": -73.9803788 }, + { "lat": 40.7431105, "lon": -73.9800449 }, + { "lat": 40.7431536, "lon": -73.9800135 }, + { "lat": 40.7432153, "lon": -73.9799692 }, + { "lat": 40.7432730, "lon": -73.9799266 }, + { "lat": 40.7437338, "lon": -73.9795915 }, + { "lat": 40.7437724, "lon": -73.9795632 }, + { "lat": 40.7438323, "lon": -73.9795193 }, + { "lat": 40.7438902, "lon": -73.9794772 }, + { "lat": 40.7443584, "lon": -73.9791352 }, + { "lat": 40.7443934, "lon": -73.9791094 }, + { "lat": 40.7444537, "lon": -73.9790654 }, + { "lat": 40.7445100, "lon": -73.9790241 }, + { "lat": 40.7449725, "lon": -73.9786857 }, + { "lat": 40.7450141, "lon": -73.9786556 }, + { "lat": 40.7450650, "lon": -73.9786187 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 388281629, + "bounds": { + "minlat": 40.7051688, + "minlon": -74.0099816, + "maxlat": 40.7052888, + "maxlon": -74.0092279 + }, + "nodes": [ + 42437536, + 8276468874, + 11042989793, + 11053183445, + 12299494538 + ], + "geometry": [ + { "lat": 40.7051688, "lon": -74.0099816 }, + { "lat": 40.7051812, "lon": -74.0099059 }, + { "lat": 40.7052229, "lon": -74.0096597 }, + { "lat": 40.7052781, "lon": -74.0092990 }, + { "lat": 40.7052888, "lon": -74.0092279 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Beaver Street", + "name:etymology:wikidata": "Q47542", + "name:ko": "비버 스트리트", + "name:ru": "Бивер-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:both:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Beaver", + "tiger:name_type": "St", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "wikidata": "Q13463781", + "wikipedia": "en:Beaver Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 388281630, + "bounds": { + "minlat": 40.7048531, + "minlon": -74.0090373, + "maxlat": 40.7053168, + "maxlon": -74.0089138 + }, + "nodes": [ + 42429504, + 11042989791, + 2824829415, + 10344043189, + 1251958125, + 10344043191, + 10344043186, + 10344043187, + 10344043188, + 1251958257 + ], + "geometry": [ + { "lat": 40.7053168, "lon": -74.0090373 }, + { "lat": 40.7052731, "lon": -74.0090272 }, + { "lat": 40.7052349, "lon": -74.0090158 }, + { "lat": 40.7050238, "lon": -74.0089426 }, + { "lat": 40.7049682, "lon": -74.0089232 }, + { "lat": 40.7049481, "lon": -74.0089164 }, + { "lat": 40.7049300, "lon": -74.0089138 }, + { "lat": 40.7048968, "lon": -74.0089142 }, + { "lat": 40.7048731, "lon": -74.0089183 }, + { "lat": 40.7048531, "lon": -74.0089272 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Hanover Street", + "name:etymology:wikidata": "Q157217", + "name:ko": "해노버 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Hanover", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 388281631, + "bounds": { + "minlat": 40.7051688, + "minlon": -74.0099912, + "maxlat": 40.7058008, + "maxlon": -74.0098642 + }, + "nodes": [ + 42437536, + 8276468876, + 11042989766, + 42448576, + 11051827265, + 11042989765, + 10593159466, + 10593159468, + 42432679 + ], + "geometry": [ + { "lat": 40.7051688, "lon": -74.0099816 }, + { "lat": 40.7052361, "lon": -74.0099868 }, + { "lat": 40.7052726, "lon": -74.0099894 }, + { "lat": 40.7053248, "lon": -74.0099912 }, + { "lat": 40.7053500, "lon": -74.0099885 }, + { "lat": 40.7053752, "lon": -74.0099828 }, + { "lat": 40.7057144, "lon": -74.0098889 }, + { "lat": 40.7057662, "lon": -74.0098763 }, + { "lat": 40.7058008, "lon": -74.0098642 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "William Street", + "name:ko": "윌리엄 스트리트", + "name:ru": "Уильям-стрит", + "oneway": "yes", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "William", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 388281632, + "bounds": { + "minlat": 40.7049939, + "minlon": -74.0115415, + "maxlat": 40.7051688, + "maxlon": -74.0099816 + }, + "nodes": [ + 42431868, + 8276468871, + 11050101256, + 8276468867, + 11050101254, + 11050101253, + 3738776599, + 2186614249, + 7217916614, + 11042989740, + 42437536 + ], + "geometry": [ + { "lat": 40.7049939, "lon": -74.0115415 }, + { "lat": 40.7049968, "lon": -74.0115319 }, + { "lat": 40.7050055, "lon": -74.0115004 }, + { "lat": 40.7050172, "lon": -74.0114661 }, + { "lat": 40.7050249, "lon": -74.0114415 }, + { "lat": 40.7050326, "lon": -74.0114124 }, + { "lat": 40.7050403, "lon": -74.0113678 }, + { "lat": 40.7050832, "lon": -74.0107655 }, + { "lat": 40.7050978, "lon": -74.0105887 }, + { "lat": 40.7051505, "lon": -74.0101059 }, + { "lat": 40.7051688, "lon": -74.0099816 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Beaver Street", + "name:etymology:wikidata": "Q47542", + "name:ko": "비버 스트리트", + "name:ru": "Бивер-стрит", + "oneway": "yes", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Beaver", + "tiger:name_type": "St", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "wikidata": "Q13463781", + "wikipedia": "en:Beaver Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 388281633, + "bounds": { + "minlat": 40.7049679, + "minlon": -74.0126119, + "maxlat": 40.7050096, + "maxlon": -74.0115415 + }, + "nodes": [ + 42431868, + 11050101257, + 8276468870, + 11050101246, + 3738776598, + 12296379689, + 11050101339, + 42442088 + ], + "geometry": [ + { "lat": 40.7049939, "lon": -74.0115415 }, + { "lat": 40.7049828, "lon": -74.0115843 }, + { "lat": 40.7049744, "lon": -74.0116262 }, + { "lat": 40.7049695, "lon": -74.0116597 }, + { "lat": 40.7049679, "lon": -74.0117090 }, + { "lat": 40.7050038, "lon": -74.0124860 }, + { "lat": 40.7050057, "lon": -74.0125263 }, + { "lat": 40.7050096, "lon": -74.0126119 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Beaver Street", + "name:etymology:wikidata": "Q47542", + "name:ko": "비버 스트리트", + "name:ru": "Бивер-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Beaver", + "tiger:name_type": "St", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "wikidata": "Q13463781", + "wikipedia": "en:Beaver Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 388284037, + "bounds": { + "minlat": 40.7072195, + "minlon": -74.0033244, + "maxlat": 40.7079632, + "maxlon": -74.0027472 + }, + "nodes": [ + 42452620, + 8279851775, + 8279851769, + 42457292, + 8279851770, + 11375807963 + ], + "geometry": [ + { "lat": 40.7072195, "lon": -74.0027472 }, + { "lat": 40.7072712, "lon": -74.0027879 }, + { "lat": 40.7076290, "lon": -74.0030746 }, + { "lat": 40.7076706, "lon": -74.0031101 }, + { "lat": 40.7077273, "lon": -74.0031508 }, + { "lat": 40.7079632, "lon": -74.0033244 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Beekman Street", + "name:ko": "비크먼 스트리트", + "name:ru": "Бикман-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 388292602, + "bounds": { + "minlat": 40.7725783, + "minlon": -73.9781940, + "maxlat": 40.7727548, + "maxlon": -73.9772677 + }, + "nodes": [ + 247222929, + 8881619456, + 3915047716, + 3915047672 + ], + "geometry": [ + { "lat": 40.7726720, "lon": -73.9772677 }, + { "lat": 40.7726080, "lon": -73.9775411 }, + { "lat": 40.7725783, "lon": -73.9776469 }, + { "lat": 40.7727548, "lon": -73.9781940 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "customers", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 388292608, + "bounds": { + "minlat": 40.7723633, + "minlon": -73.9787167, + "maxlat": 40.7724524, + "maxlon": -73.9780558 + }, + "nodes": [ + 7802856370, + 3915047694, + 3915047708, + 3915047707, + 3915047699, + 5307240780, + 5307240790 + ], + "geometry": [ + { "lat": 40.7724524, "lon": -73.9787167 }, + { "lat": 40.7724252, "lon": -73.9785549 }, + { "lat": 40.7724173, "lon": -73.9784711 }, + { "lat": 40.7724173, "lon": -73.9783718 }, + { "lat": 40.7724417, "lon": -73.9782109 }, + { "lat": 40.7724256, "lon": -73.9781412 }, + { "lat": 40.7723633, "lon": -73.9780558 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 388310488, + "bounds": { + "minlat": 40.7829498, + "minlon": -73.9702554, + "maxlat": 40.7831953, + "maxlon": -73.9697337 + }, + "nodes": [ + 3915228831, + 3915228853, + 9634645807, + 3915228803, + 3915229457, + 3915228843, + 3915228821, + 3915228806, + 3915228849, + 3915228822, + 3915228831 + ], + "geometry": [ + { "lat": 40.7831953, "lon": -73.9697616 }, + { "lat": 40.7830199, "lon": -73.9702554 }, + { "lat": 40.7830063, "lon": -73.9702350 }, + { "lat": 40.7829691, "lon": -73.9701789 }, + { "lat": 40.7829549, "lon": -73.9700435 }, + { "lat": 40.7829498, "lon": -73.9699871 }, + { "lat": 40.7829792, "lon": -73.9698758 }, + { "lat": 40.7830188, "lon": -73.9698007 }, + { "lat": 40.7830747, "lon": -73.9697471 }, + { "lat": 40.7831265, "lon": -73.9697337 }, + { "lat": 40.7831953, "lon": -73.9697616 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 388316170, + "bounds": { + "minlat": 40.7035808, + "minlon": -74.0115941, + "maxlat": 40.7040261, + "maxlon": -74.0115861 + }, + "nodes": [ + 11002109566, + 8276468753, + 11050101028, + 8276468827, + 42431877 + ], + "geometry": [ + { "lat": 40.7035808, "lon": -74.0115938 }, + { "lat": 40.7036158, "lon": -74.0115941 }, + { "lat": 40.7039190, "lon": -74.0115896 }, + { "lat": 40.7039804, "lon": -74.0115880 }, + { "lat": 40.7040261, "lon": -74.0115861 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Broad Street", + "name:ko": "브로드 스트리트", + "name:ru": "Брод-стрит", + "oneway": "no", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broad", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q2613951", + "wikipedia": "en:Broad Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 388318981, + "bounds": { + "minlat": 40.7115948, + "minlon": -74.0084808, + "maxlat": 40.7119884, + "maxlon": -74.0081342 + }, + "nodes": [ + 272195270, + 4742692787, + 4742692793, + 8262936580 + ], + "geometry": [ + { "lat": 40.7119884, "lon": -74.0081342 }, + { "lat": 40.7119260, "lon": -74.0081901 }, + { "lat": 40.7118453, "lon": -74.0082630 }, + { "lat": 40.7115948, "lon": -74.0084808 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|yes|yes|designated", + "busway:right": "lane", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-18:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|slight_left|through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 388436806, + "bounds": { + "minlat": 40.7801899, + "minlon": -73.9752452, + "maxlat": 40.7805640, + "maxlon": -73.9747493 + }, + "nodes": [ + 10172954150, + 10172953647, + 10172954185, + 3916369295, + 10172953646, + 3916369331, + 10172953645, + 3916369343, + 8318991978, + 3916376281 + ], + "geometry": [ + { "lat": 40.7805464, "lon": -73.9747493 }, + { "lat": 40.7805523, "lon": -73.9747628 }, + { "lat": 40.7805599, "lon": -73.9747896 }, + { "lat": 40.7805640, "lon": -73.9748227 }, + { "lat": 40.7805609, "lon": -73.9748729 }, + { "lat": 40.7805521, "lon": -73.9749180 }, + { "lat": 40.7805247, "lon": -73.9749746 }, + { "lat": 40.7804886, "lon": -73.9750196 }, + { "lat": 40.7802876, "lon": -73.9751694 }, + { "lat": 40.7801899, "lon": -73.9752452 } + ], + "tags": { + "access": "private", + "foot": "yes", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 388451930, + "bounds": { + "minlat": 40.7240708, + "minlon": -73.9344680, + "maxlat": 40.7244078, + "maxlon": -73.9343180 + }, + "nodes": [ + 42505677, + 9937797964, + 42505318 + ], + "geometry": [ + { "lat": 40.7240708, "lon": -73.9343180 }, + { "lat": 40.7243488, "lon": -73.9344418 }, + { "lat": 40.7244078, "lon": -73.9344680 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 388451931, + "bounds": { + "minlat": 40.7232815, + "minlon": -73.9373962, + "maxlat": 40.7240708, + "maxlon": -73.9343180 + }, + "nodes": [ + 42522703, + 9937834375, + 8465212334, + 3358859708, + 9937834361, + 42522710, + 9937834358, + 9937797946, + 42505677 + ], + "geometry": [ + { "lat": 40.7232815, "lon": -73.9373962 }, + { "lat": 40.7233248, "lon": -73.9372300 }, + { "lat": 40.7233415, "lon": -73.9371658 }, + { "lat": 40.7234494, "lon": -73.9367389 }, + { "lat": 40.7236480, "lon": -73.9359740 }, + { "lat": 40.7236720, "lon": -73.9358898 }, + { "lat": 40.7236964, "lon": -73.9358041 }, + { "lat": 40.7240362, "lon": -73.9344570 }, + { "lat": 40.7240708, "lon": -73.9343180 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Anthony Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 388451932, + "bounds": { + "minlat": 40.7254760, + "minlon": -73.9353980, + "maxlat": 40.7259070, + "maxlon": -73.9349100 + }, + "nodes": [ + 42505679, + 9789356919, + 42476680 + ], + "geometry": [ + { "lat": 40.7254760, "lon": -73.9349100 }, + { "lat": 40.7258568, "lon": -73.9353412 }, + { "lat": 40.7259070, "lon": -73.9353980 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 388538405, + "bounds": { + "minlat": 40.7969242, + "minlon": -73.9761226, + "maxlat": 40.7986274, + "maxlon": -73.9758215 + }, + "nodes": [ + 2029349956, + 3917283370, + 3917283369, + 3917283365, + 10055220990, + 3917283361, + 3917283364, + 3917286380 + ], + "geometry": [ + { "lat": 40.7986274, "lon": -73.9758215 }, + { "lat": 40.7984103, "lon": -73.9759532 }, + { "lat": 40.7981866, "lon": -73.9760734 }, + { "lat": 40.7979060, "lon": -73.9761215 }, + { "lat": 40.7975732, "lon": -73.9761225 }, + { "lat": 40.7975507, "lon": -73.9761226 }, + { "lat": 40.7972593, "lon": -73.9760801 }, + { "lat": 40.7969242, "lon": -73.9760626 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 388695705, + "bounds": { + "minlat": 40.7168306, + "minlon": -73.9985901, + "maxlat": 40.7171177, + "maxlon": -73.9977656 + }, + "nodes": [ + 42432246, + 8307641549, + 7641859745, + 42435451 + ], + "geometry": [ + { "lat": 40.7168306, "lon": -73.9977656 }, + { "lat": 40.7168496, "lon": -73.9978215 }, + { "lat": 40.7170982, "lon": -73.9985335 }, + { "lat": 40.7171177, "lon": -73.9985901 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 388696206, + "bounds": { + "minlat": 40.7616520, + "minlon": -73.9723653, + "maxlat": 40.7622945, + "maxlon": -73.9708483 + }, + "nodes": [ + 42432825, + 10173152535, + 11043182105, + 12834723228, + 10125227998, + 596775935 + ], + "geometry": [ + { "lat": 40.7622945, "lon": -73.9723653 }, + { "lat": 40.7622470, "lon": -73.9722532 }, + { "lat": 40.7617431, "lon": -73.9710634 }, + { "lat": 40.7617225, "lon": -73.9710148 }, + { "lat": 40.7616983, "lon": -73.9709577 }, + { "lat": 40.7616520, "lon": -73.9708483 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 388696207, + "bounds": { + "minlat": 40.7622945, + "minlon": -73.9723653, + "maxlat": 40.7635873, + "maxlon": -73.9714224 + }, + "nodes": [ + 42432825, + 10173152536, + 4960527243, + 6188877020, + 42445947, + 6188877010, + 6188877011, + 42445950 + ], + "geometry": [ + { "lat": 40.7622945, "lon": -73.9723653 }, + { "lat": 40.7623960, "lon": -73.9722897 }, + { "lat": 40.7628610, "lon": -73.9719430 }, + { "lat": 40.7629083, "lon": -73.9719100 }, + { "lat": 40.7629713, "lon": -73.9718668 }, + { "lat": 40.7630304, "lon": -73.9718275 }, + { "lat": 40.7635394, "lon": -73.9714542 }, + { "lat": 40.7635873, "lon": -73.9714224 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 389737133, + "bounds": { + "minlat": 40.7440997, + "minlon": -73.9761015, + "maxlat": 40.7444124, + "maxlon": -73.9757950 + }, + "nodes": [ + 7824099670, + 7824146792, + 7824146793, + 7824146794, + 7824146791, + 7824099659, + 7824099684, + 7824146785, + 7824146786, + 7824146787, + 7824146788, + 7824146789, + 7824146790, + 7824099656, + 7824099677, + 7824099678, + 7824099679, + 7824099680, + 7824099681, + 7824099682, + 7824099683, + 7824099654, + 7824099671, + 7824099672, + 7824099673, + 7824099674, + 7824099675, + 7824099676, + 3929041613, + 7824099658, + 7824099668, + 7824099665, + 2827089730, + 2827089733, + 2827089732, + 7824099669, + 7824099664, + 7824099670 + ], + "geometry": [ + { "lat": 40.7441350, "lon": -73.9760845 }, + { "lat": 40.7441444, "lon": -73.9760797 }, + { "lat": 40.7441555, "lon": -73.9760813 }, + { "lat": 40.7441648, "lon": -73.9760894 }, + { "lat": 40.7441698, "lon": -73.9761015 }, + { "lat": 40.7441911, "lon": -73.9760858 }, + { "lat": 40.7442124, "lon": -73.9760701 }, + { "lat": 40.7442095, "lon": -73.9760576 }, + { "lat": 40.7442118, "lon": -73.9760464 }, + { "lat": 40.7442180, "lon": -73.9760381 }, + { "lat": 40.7442265, "lon": -73.9760351 }, + { "lat": 40.7442350, "lon": -73.9760381 }, + { "lat": 40.7442420, "lon": -73.9760483 }, + { "lat": 40.7442560, "lon": -73.9760380 }, + { "lat": 40.7442700, "lon": -73.9760276 }, + { "lat": 40.7442672, "lon": -73.9760151 }, + { "lat": 40.7442694, "lon": -73.9760039 }, + { "lat": 40.7442756, "lon": -73.9759956 }, + { "lat": 40.7442841, "lon": -73.9759926 }, + { "lat": 40.7442926, "lon": -73.9759956 }, + { "lat": 40.7442997, "lon": -73.9760058 }, + { "lat": 40.7443133, "lon": -73.9759957 }, + { "lat": 40.7443270, "lon": -73.9759857 }, + { "lat": 40.7443241, "lon": -73.9759731 }, + { "lat": 40.7443264, "lon": -73.9759619 }, + { "lat": 40.7443326, "lon": -73.9759537 }, + { "lat": 40.7443411, "lon": -73.9759507 }, + { "lat": 40.7443496, "lon": -73.9759536 }, + { "lat": 40.7443566, "lon": -73.9759638 }, + { "lat": 40.7443844, "lon": -73.9759434 }, + { "lat": 40.7444124, "lon": -73.9759234 }, + { "lat": 40.7443816, "lon": -73.9758506 }, + { "lat": 40.7443677, "lon": -73.9758178 }, + { "lat": 40.7443808, "lon": -73.9758082 }, + { "lat": 40.7443750, "lon": -73.9757950 }, + { "lat": 40.7440997, "lon": -73.9759973 }, + { "lat": 40.7441188, "lon": -73.9760444 }, + { "lat": 40.7441350, "lon": -73.9760845 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "level": "-0.5", + "lit": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 389994972, + "bounds": { + "minlat": 40.7998190, + "minlon": -73.9354670, + "maxlat": 40.8018840, + "maxlon": -73.9339793 + }, + "nodes": [ + 3931524260, + 13239438859, + 7925258768, + 7925143983, + 4980851558, + 7927319030, + 3931534871, + 7927319002, + 13239438857, + 7927319032, + 3931534870, + 7927319027, + 3931524258 + ], + "geometry": [ + { "lat": 40.8018840, "lon": -73.9339793 }, + { "lat": 40.8014725, "lon": -73.9342645 }, + { "lat": 40.8014277, "lon": -73.9342955 }, + { "lat": 40.8013714, "lon": -73.9343366 }, + { "lat": 40.8013031, "lon": -73.9343885 }, + { "lat": 40.8008022, "lon": -73.9347510 }, + { "lat": 40.8007405, "lon": -73.9347941 }, + { "lat": 40.8006699, "lon": -73.9348434 }, + { "lat": 40.8002198, "lon": -73.9351754 }, + { "lat": 40.8001759, "lon": -73.9352078 }, + { "lat": 40.8001169, "lon": -73.9352513 }, + { "lat": 40.8000542, "lon": -73.9352980 }, + { "lat": 40.7998190, "lon": -73.9354670 } + ], + "tags": { + "alt_name:ko": "2번가", + "highway": "residential", + "name": "2nd Avenue", + "name:ko": "세컨드 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 390310751, + "bounds": { + "minlat": 40.7457398, + "minlon": -73.9793824, + "maxlat": 40.7459583, + "maxlon": -73.9790692 + }, + "nodes": [ + 11398564048, + 11398564032, + 11398564046, + 11398564045, + 11398564044, + 11398564031, + 11398564035, + 11398564033, + 11398564034, + 11398564038, + 11398564036, + 11398564037, + 11398564025, + 11398564043, + 11398564049, + 11398564026, + 11398564040, + 11398564041, + 11398564039, + 11398564042, + 2709347518, + 11398564047, + 11398564048 + ], + "geometry": [ + { "lat": 40.7457877, "lon": -73.9793824 }, + { "lat": 40.7457743, "lon": -73.9793506 }, + { "lat": 40.7457905, "lon": -73.9793389 }, + { "lat": 40.7458035, "lon": -73.9792792 }, + { "lat": 40.7457807, "lon": -73.9792248 }, + { "lat": 40.7457398, "lon": -73.9792092 }, + { "lat": 40.7457767, "lon": -73.9791822 }, + { "lat": 40.7458039, "lon": -73.9791926 }, + { "lat": 40.7458074, "lon": -73.9791598 }, + { "lat": 40.7458237, "lon": -73.9791480 }, + { "lat": 40.7458509, "lon": -73.9791584 }, + { "lat": 40.7458544, "lon": -73.9791255 }, + { "lat": 40.7458666, "lon": -73.9791166 }, + { "lat": 40.7458949, "lon": -73.9790960 }, + { "lat": 40.7459316, "lon": -73.9790692 }, + { "lat": 40.7459569, "lon": -73.9791297 }, + { "lat": 40.7459583, "lon": -73.9791331 }, + { "lat": 40.7459546, "lon": -73.9791480 }, + { "lat": 40.7459577, "lon": -73.9791554 }, + { "lat": 40.7459286, "lon": -73.9791766 }, + { "lat": 40.7458291, "lon": -73.9792492 }, + { "lat": 40.7458622, "lon": -73.9793281 }, + { "lat": 40.7457877, "lon": -73.9793824 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 390723004, + "bounds": { + "minlat": 40.7529814, + "minlon": -73.9111133, + "maxlat": 40.7537363, + "maxlon": -73.9106080 + }, + "nodes": [ + 3938728149, + 8088629373, + 9188971684, + 11643674654, + 9188971685, + 2520377379 + ], + "geometry": [ + { "lat": 40.7529814, "lon": -73.9106080 }, + { "lat": 40.7531236, "lon": -73.9106988 }, + { "lat": 40.7533487, "lon": -73.9108204 }, + { "lat": 40.7535362, "lon": -73.9109570 }, + { "lat": 40.7536178, "lon": -73.9110129 }, + { "lat": 40.7537363, "lon": -73.9111133 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Newtown Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 391062195, + "bounds": { + "minlat": 40.7122331, + "minlon": -74.0065826, + "maxlat": 40.7126648, + "maxlon": -74.0057398 + }, + "nodes": [ + 3942249545, + 9364517395, + 9364517396, + 2821289716, + 9368527056, + 9364519632, + 9337872352 + ], + "geometry": [ + { "lat": 40.7122331, "lon": -74.0057398 }, + { "lat": 40.7122489, "lon": -74.0057503 }, + { "lat": 40.7122663, "lon": -74.0057710 }, + { "lat": 40.7122868, "lon": -74.0058055 }, + { "lat": 40.7124263, "lon": -74.0060965 }, + { "lat": 40.7125532, "lon": -74.0063467 }, + { "lat": 40.7126648, "lon": -74.0065826 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Steve Flanders Square", + "service": "driveway", + "surface": "cobblestone" + } +}, +{ + "type": "way", + "id": 391634320, + "bounds": { + "minlat": 40.7450722, + "minlon": -73.9715741, + "maxlat": 40.7451091, + "maxlon": -73.9714848 + }, + "nodes": [ + 3948578145, + 3948578146, + 3948578147 + ], + "geometry": [ + { "lat": 40.7450722, "lon": -73.9714848 }, + { "lat": 40.7450906, "lon": -73.9715293 }, + { "lat": 40.7451091, "lon": -73.9715741 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 391864585, + "bounds": { + "minlat": 40.7776805, + "minlon": -73.9517401, + "maxlat": 40.7778838, + "maxlon": -73.9512609 + }, + "nodes": [ + 42429340, + 7834025539, + 3119952619 + ], + "geometry": [ + { "lat": 40.7778838, "lon": -73.9517401 }, + { "lat": 40.7778292, "lon": -73.9516146 }, + { "lat": 40.7776805, "lon": -73.9512609 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 391864586, + "bounds": { + "minlat": 40.7681385, + "minlon": -73.9588757, + "maxlat": 40.7688122, + "maxlon": -73.9583845 + }, + "nodes": [ + 42436489, + 3562587902, + 7946184228, + 8855629722, + 42443009 + ], + "geometry": [ + { "lat": 40.7688122, "lon": -73.9583845 }, + { "lat": 40.7687265, "lon": -73.9584447 }, + { "lat": 40.7684933, "lon": -73.9586180 }, + { "lat": 40.7681853, "lon": -73.9588423 }, + { "lat": 40.7681385, "lon": -73.9588757 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 392494865, + "bounds": { + "minlat": 40.7415595, + "minlon": -73.9765973, + "maxlat": 40.7421563, + "maxlon": -73.9754034 + }, + "nodes": [ + 3957124182, + 3957124180, + 3957124187, + 3957124184, + 3957125181, + 3957124188, + 3957124183, + 3957124185, + 3957124186 + ], + "geometry": [ + { "lat": 40.7417643, "lon": -73.9762172 }, + { "lat": 40.7418318, "lon": -73.9761688 }, + { "lat": 40.7420158, "lon": -73.9765973 }, + { "lat": 40.7421563, "lon": -73.9764979 }, + { "lat": 40.7419249, "lon": -73.9759495 }, + { "lat": 40.7416944, "lon": -73.9754034 }, + { "lat": 40.7415595, "lon": -73.9755043 }, + { "lat": 40.7417319, "lon": -73.9759204 }, + { "lat": 40.7416613, "lon": -73.9759723 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 394093564, + "bounds": { + "minlat": 40.7605248, + "minlon": -73.9807655, + "maxlat": 40.7615860, + "maxlon": -73.9795126 + }, + "nodes": [ + 1593295570, + 1332501227, + 3974095845, + 10173210353, + 9140940672, + 3971196633, + 10172941224, + 42430363, + 9140940649, + 3974095843, + 13518638881, + 11299027268, + 42430361, + 11299050770, + 3971196631, + 11198923673, + 1332501220, + 1593295562, + 1593295560, + 1593295557, + 1593295553, + 1593295564, + 1593295571, + 1593295568, + 1593295570 + ], + "geometry": [ + { "lat": 40.7613253, "lon": -73.9804319 }, + { "lat": 40.7613924, "lon": -73.9803836 }, + { "lat": 40.7614883, "lon": -73.9806099 }, + { "lat": 40.7615213, "lon": -73.9805845 }, + { "lat": 40.7615477, "lon": -73.9805642 }, + { "lat": 40.7615860, "lon": -73.9805346 }, + { "lat": 40.7612132, "lon": -73.9796473 }, + { "lat": 40.7611565, "lon": -73.9795126 }, + { "lat": 40.7611195, "lon": -73.9795395 }, + { "lat": 40.7610886, "lon": -73.9795620 }, + { "lat": 40.7606526, "lon": -73.9798793 }, + { "lat": 40.7605904, "lon": -73.9799246 }, + { "lat": 40.7605248, "lon": -73.9799722 }, + { "lat": 40.7605819, "lon": -73.9801060 }, + { "lat": 40.7608605, "lon": -73.9807655 }, + { "lat": 40.7609388, "lon": -73.9807093 }, + { "lat": 40.7609534, "lon": -73.9806988 }, + { "lat": 40.7610201, "lon": -73.9806508 }, + { "lat": 40.7609988, "lon": -73.9805990 }, + { "lat": 40.7609719, "lon": -73.9806184 }, + { "lat": 40.7607478, "lon": -73.9800760 }, + { "lat": 40.7611076, "lon": -73.9798170 }, + { "lat": 40.7613318, "lon": -73.9803597 }, + { "lat": 40.7613039, "lon": -73.9803799 }, + { "lat": 40.7613253, "lon": -73.9804319 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 394715085, + "bounds": { + "minlat": 40.7537090, + "minlon": -73.9732829, + "maxlat": 40.7537377, + "maxlon": -73.9732633 + }, + "nodes": [ + 3976829279, + 3976829276 + ], + "geometry": [ + { "lat": 40.7537090, "lon": -73.9732829 }, + { "lat": 40.7537377, "lon": -73.9732633 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 394715087, + "bounds": { + "minlat": 40.7536373, + "minlon": -73.9733359, + "maxlat": 40.7537090, + "maxlon": -73.9732829 + }, + "nodes": [ + 3976829278, + 12463303143, + 3976829279 + ], + "geometry": [ + { "lat": 40.7536373, "lon": -73.9733359 }, + { "lat": 40.7536963, "lon": -73.9732924 }, + { "lat": 40.7537090, "lon": -73.9732829 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 395037175, + "bounds": { + "minlat": 40.7745560, + "minlon": -73.9907549, + "maxlat": 40.7750338, + "maxlon": -73.9896514 + }, + "nodes": [ + 595245920, + 10098692830, + 9170766738, + 1672106382 + ], + "geometry": [ + { "lat": 40.7745560, "lon": -73.9896514 }, + { "lat": 40.7745963, "lon": -73.9897468 }, + { "lat": 40.7749874, "lon": -73.9906709 }, + { "lat": 40.7750338, "lon": -73.9907549 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 63rd Street", + "name:ru": "Западная 63-я стрит", + "name_2": "Thelonius Monk Circle", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 396444293, + "bounds": { + "minlat": 40.7489740, + "minlon": -74.0032360, + "maxlat": 40.7502291, + "maxlon": -74.0023139 + }, + "nodes": [ + 42453630, + 10172817655, + 12152909707, + 11034943442, + 42445310, + 11034943441, + 13701192384, + 8262308989, + 42434821 + ], + "geometry": [ + { "lat": 40.7489740, "lon": -74.0032360 }, + { "lat": 40.7490436, "lon": -74.0031852 }, + { "lat": 40.7494988, "lon": -74.0028590 }, + { "lat": 40.7495329, "lon": -74.0028332 }, + { "lat": 40.7496114, "lon": -74.0027747 }, + { "lat": 40.7496568, "lon": -74.0027412 }, + { "lat": 40.7497442, "lon": -74.0026780 }, + { "lat": 40.7501549, "lon": -74.0023685 }, + { "lat": 40.7502291, "lon": -74.0023139 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:left": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "width": "69.5 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 396444294, + "bounds": { + "minlat": 40.7424535, + "minlon": -74.0009822, + "maxlat": 40.7472251, + "maxlon": -73.9896577 + }, + "nodes": [ + 8239225234, + 12152905396, + 42427477, + 12152905395, + 12152905394, + 5545401590, + 5852207699, + 5263790012, + 12152905393, + 5852207693, + 5852207686, + 6069996234, + 12152905392, + 12152905391, + 5772387834, + 12152905390, + 7681358003, + 5852207688, + 5852207692, + 5852207701, + 12152905389, + 5852207703, + 5263790013, + 5852207698, + 12152905388, + 5852207702, + 12152905387, + 5852207689, + 8615466790, + 5263790014, + 5263790015, + 5852207690, + 5852207705, + 12152905386, + 5263790017, + 12152905385, + 5852207700, + 12152905384, + 5852207691, + 12152905383, + 5852207697, + 12152905382, + 12152905381, + 8386198045, + 12152905380, + 5852207704, + 12152905379, + 5263790016, + 5852207695, + 5852207696, + 12152905373, + 5852207694, + 5852207834, + 12152905378, + 12152905377, + 42427427, + 10171509224, + 12152905376, + 10171337687, + 42427426, + 10171337690, + 5481850674, + 5481850672, + 10171337651, + 42427423, + 10171337655, + 13701187250, + 9913562560 + ], + "geometry": [ + { "lat": 40.7472251, "lon": -74.0009822 }, + { "lat": 40.7471974, "lon": -74.0009232 }, + { "lat": 40.7471710, "lon": -74.0008681 }, + { "lat": 40.7471499, "lon": -74.0008280 }, + { "lat": 40.7471244, "lon": -74.0007788 }, + { "lat": 40.7471066, "lon": -74.0007475 }, + { "lat": 40.7470866, "lon": -74.0007179 }, + { "lat": 40.7470457, "lon": -74.0006557 }, + { "lat": 40.7470172, "lon": -74.0006163 }, + { "lat": 40.7469855, "lon": -74.0005772 }, + { "lat": 40.7469567, "lon": -74.0005455 }, + { "lat": 40.7469210, "lon": -74.0005104 }, + { "lat": 40.7468886, "lon": -74.0004831 }, + { "lat": 40.7468512, "lon": -74.0004543 }, + { "lat": 40.7468165, "lon": -74.0004297 }, + { "lat": 40.7467608, "lon": -74.0003958 }, + { "lat": 40.7467253, "lon": -74.0003742 }, + { "lat": 40.7466902, "lon": -74.0003491 }, + { "lat": 40.7466561, "lon": -74.0003195 }, + { "lat": 40.7466204, "lon": -74.0002863 }, + { "lat": 40.7465882, "lon": -74.0002511 }, + { "lat": 40.7465554, "lon": -74.0002130 }, + { "lat": 40.7465271, "lon": -74.0001747 }, + { "lat": 40.7464984, "lon": -74.0001323 }, + { "lat": 40.7464717, "lon": -74.0000878 }, + { "lat": 40.7464507, "lon": -74.0000472 }, + { "lat": 40.7464290, "lon": -74.0000030 }, + { "lat": 40.7464066, "lon": -73.9999522 }, + { "lat": 40.7462307, "lon": -73.9995340 }, + { "lat": 40.7462050, "lon": -73.9994736 }, + { "lat": 40.7461516, "lon": -73.9993444 }, + { "lat": 40.7461230, "lon": -73.9992721 }, + { "lat": 40.7461044, "lon": -73.9992191 }, + { "lat": 40.7460856, "lon": -73.9991604 }, + { "lat": 40.7460726, "lon": -73.9991153 }, + { "lat": 40.7460617, "lon": -73.9990671 }, + { "lat": 40.7460525, "lon": -73.9990132 }, + { "lat": 40.7460465, "lon": -73.9989584 }, + { "lat": 40.7460411, "lon": -73.9988987 }, + { "lat": 40.7460393, "lon": -73.9988427 }, + { "lat": 40.7460399, "lon": -73.9987855 }, + { "lat": 40.7460417, "lon": -73.9987326 }, + { "lat": 40.7460473, "lon": -73.9986794 }, + { "lat": 40.7460537, "lon": -73.9986293 }, + { "lat": 40.7460563, "lon": -73.9985807 }, + { "lat": 40.7460575, "lon": -73.9985228 }, + { "lat": 40.7460569, "lon": -73.9984646 }, + { "lat": 40.7460536, "lon": -73.9984158 }, + { "lat": 40.7460480, "lon": -73.9983589 }, + { "lat": 40.7460405, "lon": -73.9983068 }, + { "lat": 40.7460246, "lon": -73.9982188 }, + { "lat": 40.7460122, "lon": -73.9981536 }, + { "lat": 40.7460029, "lon": -73.9981141 }, + { "lat": 40.7459924, "lon": -73.9980729 }, + { "lat": 40.7459809, "lon": -73.9980346 }, + { "lat": 40.7459651, "lon": -73.9979896 }, + { "lat": 40.7459199, "lon": -73.9978679 }, + { "lat": 40.7453428, "lon": -73.9965149 }, + { "lat": 40.7448227, "lon": -73.9952964 }, + { "lat": 40.7447650, "lon": -73.9951595 }, + { "lat": 40.7447112, "lon": -73.9950317 }, + { "lat": 40.7445537, "lon": -73.9946578 }, + { "lat": 40.7445242, "lon": -73.9945877 }, + { "lat": 40.7436284, "lon": -73.9924610 }, + { "lat": 40.7435682, "lon": -73.9923179 }, + { "lat": 40.7435182, "lon": -73.9921985 }, + { "lat": 40.7434441, "lon": -73.9920217 }, + { "lat": 40.7424535, "lon": -73.9896577 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 24th Street", + "name:ru": "Западная 24-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 396444295, + "bounds": { + "minlat": 40.7508280, + "minlon": -74.0018820, + "maxlat": 40.7514585, + "maxlon": -74.0014183 + }, + "nodes": [ + 42438674, + 8262308992, + 12152879559, + 8261122858, + 42427821 + ], + "geometry": [ + { "lat": 40.7508280, "lon": -74.0018820 }, + { "lat": 40.7508860, "lon": -74.0018387 }, + { "lat": 40.7513488, "lon": -74.0014957 }, + { "lat": 40.7513830, "lon": -74.0014725 }, + { "lat": 40.7514585, "lon": -74.0014183 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 397044787, + "bounds": { + "minlat": 40.7196870, + "minlon": -73.9779980, + "maxlat": 40.7198218, + "maxlon": -73.9778939 + }, + "nodes": [ + 3655974177, + 4219836761, + 3884582044 + ], + "geometry": [ + { "lat": 40.7196870, "lon": -73.9779980 }, + { "lat": 40.7197728, "lon": -73.9779294 }, + { "lat": 40.7198218, "lon": -73.9778939 } + ], + "tags": { + "highway": "service", + "name": "Lillian Wald Drive", + "name:etymology:wikidata": "Q515387", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 397795463, + "bounds": { + "minlat": 40.7583669, + "minlon": -73.9852442, + "maxlat": 40.7585968, + "maxlon": -73.9850795 + }, + "nodes": [ + 42439990, + 6598535188, + 5475605303 + ], + "geometry": [ + { "lat": 40.7585968, "lon": -73.9850795 }, + { "lat": 40.7585239, "lon": -73.9851316 }, + { "lat": 40.7583669, "lon": -73.9852442 } + ], + "tags": { + "cycleway:left": "track", + "foot": "designated", + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|right", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 397795464, + "bounds": { + "minlat": 40.7567100, + "minlon": -73.9864580, + "maxlat": 40.7573424, + "maxlon": -73.9860116 + }, + "nodes": [ + 42439984, + 3974095826, + 12055680089, + 3974095825, + 42439981 + ], + "geometry": [ + { "lat": 40.7573424, "lon": -73.9860116 }, + { "lat": 40.7572793, "lon": -73.9860561 }, + { "lat": 40.7568450, "lon": -73.9863628 }, + { "lat": 40.7567954, "lon": -73.9863978 }, + { "lat": 40.7567100, "lon": -73.9864580 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "designated", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|right", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 397839400, + "bounds": { + "minlat": 40.7199869, + "minlon": -73.9787229, + "maxlat": 40.7212770, + "maxlon": -73.9777880 + }, + "nodes": [ + 42453613, + 3783073288, + 3783071223, + 8309479316, + 4301308520, + 42437354, + 8309479315, + 4301308490, + 4301308542, + 42455396 + ], + "geometry": [ + { "lat": 40.7199869, "lon": -73.9787229 }, + { "lat": 40.7200764, "lon": -73.9786630 }, + { "lat": 40.7201093, "lon": -73.9786410 }, + { "lat": 40.7206190, "lon": -73.9782710 }, + { "lat": 40.7206274, "lon": -73.9782649 }, + { "lat": 40.7206740, "lon": -73.9782310 }, + { "lat": 40.7207287, "lon": -73.9781908 }, + { "lat": 40.7207388, "lon": -73.9781834 }, + { "lat": 40.7212262, "lon": -73.9778251 }, + { "lat": 40.7212770, "lon": -73.9777880 } + ], + "tags": { + "alt_name:ko": "애비뉴 디", + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue D", + "name:ko": "애비뉴 D", + "name:ru": "Авеню D", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2873601", + "wikipedia": "en:Avenue D (Manhattan)" + } +}, +{ + "type": "way", + "id": 398375603, + "bounds": { + "minlat": 40.7503585, + "minlon": -73.9738672, + "maxlat": 40.7505215, + "maxlon": -73.9738584 + }, + "nodes": [ + 4011390051, + 10171269371, + 4556147512 + ], + "geometry": [ + { "lat": 40.7505215, "lon": -73.9738584 }, + { "lat": 40.7503990, "lon": -73.9738672 }, + { "lat": 40.7503585, "lon": -73.9738669 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "name": "The Westin", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 398741107, + "bounds": { + "minlat": 40.7490860, + "minlon": -73.9099067, + "maxlat": 40.7497560, + "maxlon": -73.9097177 + }, + "nodes": [ + 42815123, + 6450796488, + 7671862987, + 7667084772, + 42893076 + ], + "geometry": [ + { "lat": 40.7497560, "lon": -73.9097177 }, + { "lat": 40.7496979, "lon": -73.9097333 }, + { "lat": 40.7491732, "lon": -73.9098820 }, + { "lat": 40.7491175, "lon": -73.9098978 }, + { "lat": 40.7490860, "lon": -73.9099067 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Woodside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 400334766, + "bounds": { + "minlat": 40.7852901, + "minlon": -73.9840936, + "maxlat": 40.7856022, + "maxlon": -73.9833865 + }, + "nodes": [ + 42425188, + 42422366, + 4205820213 + ], + "geometry": [ + { "lat": 40.7856022, "lon": -73.9840936 }, + { "lat": 40.7853718, "lon": -73.9835715 }, + { "lat": 40.7852901, "lon": -73.9833865 } + ], + "tags": { + "bicycle": "no", + "fixme": "bicycle=no and oneway=yes are temporary during construction; restore oneway=no and cycleway tags after survey once construction is complete", + "hgv": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 79th Street", + "name:ru": "Западная 79-я стрит", + "name_1": "West 79 Street", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 400340010, + "bounds": { + "minlat": 40.8596048, + "minlon": -73.9077684, + "maxlat": 40.8619892, + "maxlon": -73.9056189 + }, + "nodes": [ + 42747810, + 11794372943 + ], + "geometry": [ + { "lat": 40.8596048, "lon": -73.9077684 }, + { "lat": 40.8619892, "lon": -73.9056189 } + ], + "tags": { + "busway:both": "lane", + "cycleway": "no", + "hgv": "local", + "highway": "tertiary", + "lanes": "4", + "lanes:bus": "2", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "name_1": "University Avenue", + "oneway": "no", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 400456494, + "bounds": { + "minlat": 40.8427338, + "minlon": -73.9430475, + "maxlat": 40.8431837, + "maxlon": -73.9429553 + }, + "nodes": [ + 13319858601, + 9908572560, + 42456266, + 9908572562, + 9908572561, + 42456263, + 6512341611 + ], + "geometry": [ + { "lat": 40.8431837, "lon": -73.9429553 }, + { "lat": 40.8430886, "lon": -73.9429706 }, + { "lat": 40.8429037, "lon": -73.9430331 }, + { "lat": 40.8428664, "lon": -73.9430422 }, + { "lat": 40.8428321, "lon": -73.9430456 }, + { "lat": 40.8427779, "lon": -73.9430475 }, + { "lat": 40.8427338, "lon": -73.9430422 } + ], + "tags": { + "alt_name": "Joe Hintersteiner Place", + "description": "This honorary street name memorializes Joe Hintersteiner.", + "highway": "living_street", + "historic": "memorial", + "maxspeed:advisory": "5 mph", + "name": "Haven Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 402097156, + "bounds": { + "minlat": 40.8079870, + "minlon": -73.9638012, + "maxlat": 40.8092888, + "maxlon": -73.9628599 + }, + "nodes": [ + 1506445762, + 3907629301, + 11851500967, + 2340960670, + 10169289747, + 6223571524 + ], + "geometry": [ + { "lat": 40.8079870, "lon": -73.9638012 }, + { "lat": 40.8080808, "lon": -73.9637334 }, + { "lat": 40.8087760, "lon": -73.9632307 }, + { "lat": 40.8088135, "lon": -73.9632037 }, + { "lat": 40.8092253, "lon": -73.9629058 }, + { "lat": 40.8092888, "lon": -73.9628599 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 402097157, + "bounds": { + "minlat": 40.8073865, + "minlon": -73.9644893, + "maxlat": 40.8078270, + "maxlon": -73.9641703 + }, + "nodes": [ + 9452317499, + 7004416673, + 42428833 + ], + "geometry": [ + { "lat": 40.8078270, "lon": -73.9641703 }, + { "lat": 40.8074394, "lon": -73.9644543 }, + { "lat": 40.8073865, "lon": -73.9644893 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 402097158, + "bounds": { + "minlat": 40.8080645, + "minlon": -73.9648621, + "maxlat": 40.8084658, + "maxlon": -73.9639884 + }, + "nodes": [ + 470209120, + 7004416693, + 10169289723, + 3579426871 + ], + "geometry": [ + { "lat": 40.8080645, "lon": -73.9639884 }, + { "lat": 40.8081317, "lon": -73.9640769 }, + { "lat": 40.8084321, "lon": -73.9647834 }, + { "lat": 40.8084658, "lon": -73.9648621 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "1", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "name_1": "West 116 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 403102389, + "bounds": { + "minlat": 40.8554682, + "minlon": -73.9657993, + "maxlat": 40.8558679, + "maxlon": -73.9655585 + }, + "nodes": [ + 4054801529, + 4054801533 + ], + "geometry": [ + { "lat": 40.8554682, "lon": -73.9657993 }, + { "lat": 40.8558679, "lon": -73.9655585 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 403102390, + "bounds": { + "minlat": 40.8553184, + "minlon": -73.9659733, + "maxlat": 40.8555193, + "maxlon": -73.9653683 + }, + "nodes": [ + 4054801526, + 4054801528, + 4054801529, + 9286431078, + 2565327496 + ], + "geometry": [ + { "lat": 40.8553184, "lon": -73.9653683 }, + { "lat": 40.8553982, "lon": -73.9655980 }, + { "lat": 40.8554682, "lon": -73.9657993 }, + { "lat": 40.8555032, "lon": -73.9659000 }, + { "lat": 40.8555193, "lon": -73.9659733 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 403102391, + "bounds": { + "minlat": 40.8552755, + "minlon": -73.9673928, + "maxlat": 40.8555068, + "maxlon": -73.9667174 + }, + "nodes": [ + 4054801530, + 4054801523 + ], + "geometry": [ + { "lat": 40.8555068, "lon": -73.9673928 }, + { "lat": 40.8552755, "lon": -73.9667174 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 403102392, + "bounds": { + "minlat": 40.8551235, + "minlon": -73.9654856, + "maxlat": 40.8555212, + "maxlon": -73.9652462 + }, + "nodes": [ + 4054801531, + 4054801526, + 4054801514 + ], + "geometry": [ + { "lat": 40.8555212, "lon": -73.9652462 }, + { "lat": 40.8553184, "lon": -73.9653683 }, + { "lat": 40.8551235, "lon": -73.9654856 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 403102393, + "bounds": { + "minlat": 40.8553982, + "minlon": -73.9655980, + "maxlat": 40.8557981, + "maxlon": -73.9653594 + }, + "nodes": [ + 4054801532, + 4054801528 + ], + "geometry": [ + { "lat": 40.8557981, "lon": -73.9653594 }, + { "lat": 40.8553982, "lon": -73.9655980 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 403405990, + "bounds": { + "minlat": 40.7176762, + "minlon": -74.0088803, + "maxlat": 40.7182739, + "maxlon": -74.0075505 + }, + "nodes": [ + 42452816, + 8312361695, + 8304498523, + 42436327 + ], + "geometry": [ + { "lat": 40.7176762, "lon": -74.0075505 }, + { "lat": 40.7177163, "lon": -74.0076408 }, + { "lat": 40.7182262, "lon": -74.0087742 }, + { "lat": 40.7182739, "lon": -74.0088803 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Worth Street", + "name:etymology:wikidata": "Q3568734", + "name:ko": "워스 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1318800", + "wikipedia": "en:Worth Street" + } +}, +{ + "type": "way", + "id": 403726491, + "bounds": { + "minlat": 40.8482778, + "minlon": -74.0135631, + "maxlat": 40.8496631, + "maxlon": -74.0131199 + }, + "nodes": [ + 5674744901, + 10936388926, + 10936388947, + 10936388945, + 10936388948, + 103161062, + 10936388932, + 103161061, + 10936388934, + 103161060, + 10936388943, + 6616684035, + 103161058, + 103161056, + 103161054, + 10936336952, + 4207205274 + ], + "geometry": [ + { "lat": 40.8496631, "lon": -74.0131199 }, + { "lat": 40.8495479, "lon": -74.0131222 }, + { "lat": 40.8494679, "lon": -74.0131252 }, + { "lat": 40.8493964, "lon": -74.0131302 }, + { "lat": 40.8493244, "lon": -74.0131376 }, + { "lat": 40.8492593, "lon": -74.0131469 }, + { "lat": 40.8491822, "lon": -74.0131611 }, + { "lat": 40.8491077, "lon": -74.0131787 }, + { "lat": 40.8490269, "lon": -74.0131999 }, + { "lat": 40.8489512, "lon": -74.0132234 }, + { "lat": 40.8488746, "lon": -74.0132500 }, + { "lat": 40.8487928, "lon": -74.0132813 }, + { "lat": 40.8487293, "lon": -74.0133088 }, + { "lat": 40.8486628, "lon": -74.0133403 }, + { "lat": 40.8485834, "lon": -74.0133812 }, + { "lat": 40.8485033, "lon": -74.0134273 }, + { "lat": 40.8482778, "lon": -74.0135631 } + ], + "tags": { + "Bergen_County_database_ref": "S-39", + "HFCS": "Urban Local", + "NJDOT_SRI": "020000333", + "highway": "secondary", + "name": "Challenger Road", + "ref": "CR S-39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Challenger", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 403726495, + "bounds": { + "minlat": 40.8585491, + "minlon": -74.0122586, + "maxlat": 40.8637347, + "maxlon": -74.0118648 + }, + "nodes": [ + 298562923, + 298562952, + 298562925, + 8955209271, + 298562926, + 10936420181, + 298562936, + 10936420188, + 298562953, + 10936420172, + 298562929, + 10936420169, + 298563969, + 10936420178, + 10936420187, + 10936420176, + 298563971, + 10936420179, + 10936420182, + 298563972, + 10936420175, + 298563973, + 10936420193, + 10936420194, + 10936420192, + 10936420185, + 10936420173, + 13753819025, + 10936420170, + 298563976, + 298563977, + 298563978, + 298563974 + ], + "geometry": [ + { "lat": 40.8637347, "lon": -74.0118648 }, + { "lat": 40.8635984, "lon": -74.0119158 }, + { "lat": 40.8634696, "lon": -74.0119547 }, + { "lat": 40.8633307, "lon": -74.0119839 }, + { "lat": 40.8631975, "lon": -74.0120045 }, + { "lat": 40.8630664, "lon": -74.0120150 }, + { "lat": 40.8629345, "lon": -74.0120201 }, + { "lat": 40.8628010, "lon": -74.0120210 }, + { "lat": 40.8626461, "lon": -74.0120185 }, + { "lat": 40.8625083, "lon": -74.0120132 }, + { "lat": 40.8623748, "lon": -74.0120058 }, + { "lat": 40.8622329, "lon": -74.0119961 }, + { "lat": 40.8618237, "lon": -74.0119641 }, + { "lat": 40.8612694, "lon": -74.0119159 }, + { "lat": 40.8611229, "lon": -74.0119046 }, + { "lat": 40.8609889, "lon": -74.0118951 }, + { "lat": 40.8608500, "lon": -74.0118874 }, + { "lat": 40.8607078, "lon": -74.0118801 }, + { "lat": 40.8605693, "lon": -74.0118771 }, + { "lat": 40.8604337, "lon": -74.0118765 }, + { "lat": 40.8602944, "lon": -74.0118778 }, + { "lat": 40.8601560, "lon": -74.0118846 }, + { "lat": 40.8600187, "lon": -74.0118976 }, + { "lat": 40.8598781, "lon": -74.0119129 }, + { "lat": 40.8597404, "lon": -74.0119311 }, + { "lat": 40.8596137, "lon": -74.0119519 }, + { "lat": 40.8594863, "lon": -74.0119783 }, + { "lat": 40.8593534, "lon": -74.0120077 }, + { "lat": 40.8592206, "lon": -74.0120417 }, + { "lat": 40.8590896, "lon": -74.0120795 }, + { "lat": 40.8589570, "lon": -74.0121206 }, + { "lat": 40.8587029, "lon": -74.0122035 }, + { "lat": 40.8585491, "lon": -74.0122586 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "Newark|Newark|Newark;The Ridgefields", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A11:A15:A19:A63", + "tiger:county": "Bergen, NJ:Hudson, NJ:Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:New Jersey", + "tiger:name_base_1": "I-95:New Jersey", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 403726503, + "bounds": { + "minlat": 40.8517689, + "minlon": -74.0150456, + "maxlat": 40.8528532, + "maxlon": -74.0145120 + }, + "nodes": [ + 298562327, + 298562323 + ], + "geometry": [ + { "lat": 40.8517689, "lon": -74.0150456 }, + { "lat": 40.8528532, "lon": -74.0145120 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "none|none|none|Leonia;Teaneck;Challenger Road", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no", + "turn:lanes": "none|none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 403726510, + "bounds": { + "minlat": 40.8489131, + "minlon": -74.0193099, + "maxlat": 40.8490674, + "maxlon": -74.0190428 + }, + "nodes": [ + 611476519, + 766751391 + ], + "geometry": [ + { "lat": 40.8489131, "lon": -74.0193099 }, + { "lat": 40.8490674, "lon": -74.0190428 } + ], + "tags": { + "highway": "secondary", + "name": "East Winant Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 403726512, + "bounds": { + "minlat": 40.8487654, + "minlon": -74.0198778, + "maxlat": 40.8489131, + "maxlon": -74.0193099 + }, + "nodes": [ + 299383737, + 10936283610, + 6801941571, + 10936283647, + 299380607, + 10936283605, + 10936265598, + 299383736, + 10936265604, + 299383735, + 10936283655, + 611476519 + ], + "geometry": [ + { "lat": 40.8487711, "lon": -74.0198778 }, + { "lat": 40.8487674, "lon": -74.0198415 }, + { "lat": 40.8487655, "lon": -74.0198015 }, + { "lat": 40.8487654, "lon": -74.0197607 }, + { "lat": 40.8487674, "lon": -74.0197148 }, + { "lat": 40.8487738, "lon": -74.0196558 }, + { "lat": 40.8487832, "lon": -74.0195986 }, + { "lat": 40.8487978, "lon": -74.0195439 }, + { "lat": 40.8488163, "lon": -74.0194921 }, + { "lat": 40.8488400, "lon": -74.0194378 }, + { "lat": 40.8488674, "lon": -74.0193859 }, + { "lat": 40.8489131, "lon": -74.0193099 } + ], + "tags": { + "highway": "secondary", + "name": "East Winant Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 404253364, + "bounds": { + "minlat": 40.7838930, + "minlon": -73.9800838, + "maxlat": 40.7927728, + "maxlon": -73.9733006 + }, + "nodes": [ + 42428705, + 10061230054, + 8687882618, + 42428701, + 8687882623, + 8687853804, + 42428695, + 8687853810, + 10060611745, + 42428689, + 8699249551, + 8699249524, + 42422006, + 8699249531, + 8699239295, + 42428682, + 8699239302, + 8699239265, + 42428678, + 8699239272, + 8699239246, + 42428674, + 10039783371, + 8699239233, + 42428670, + 8699239241, + 7182103216, + 42421809, + 7182103213, + 7182045960, + 42428663, + 7182045958, + 8709397322, + 42428661, + 8709397330, + 5533554871, + 8709392104, + 42428657, + 8709392112, + 8709392088, + 42421775, + 8709392096, + 8709392068, + 42428653 + ], + "geometry": [ + { "lat": 40.7927728, "lon": -73.9733006 }, + { "lat": 40.7927167, "lon": -73.9733404 }, + { "lat": 40.7921973, "lon": -73.9737054 }, + { "lat": 40.7921405, "lon": -73.9737451 }, + { "lat": 40.7920838, "lon": -73.9737894 }, + { "lat": 40.7915731, "lon": -73.9741670 }, + { "lat": 40.7915225, "lon": -73.9742027 }, + { "lat": 40.7914604, "lon": -73.9742489 }, + { "lat": 40.7909484, "lon": -73.9746251 }, + { "lat": 40.7908834, "lon": -73.9746726 }, + { "lat": 40.7908357, "lon": -73.9747078 }, + { "lat": 40.7903192, "lon": -73.9750853 }, + { "lat": 40.7902583, "lon": -73.9751294 }, + { "lat": 40.7902073, "lon": -73.9751671 }, + { "lat": 40.7896948, "lon": -73.9755427 }, + { "lat": 40.7896363, "lon": -73.9755873 }, + { "lat": 40.7895794, "lon": -73.9756276 }, + { "lat": 40.7890686, "lon": -73.9760068 }, + { "lat": 40.7890078, "lon": -73.9760520 }, + { "lat": 40.7889548, "lon": -73.9760952 }, + { "lat": 40.7884608, "lon": -73.9765217 }, + { "lat": 40.7883617, "lon": -73.9766064 }, + { "lat": 40.7882693, "lon": -73.9766834 }, + { "lat": 40.7877619, "lon": -73.9771219 }, + { "lat": 40.7877015, "lon": -73.9771707 }, + { "lat": 40.7876542, "lon": -73.9772110 }, + { "lat": 40.7871552, "lon": -73.9776371 }, + { "lat": 40.7870876, "lon": -73.9776916 }, + { "lat": 40.7870401, "lon": -73.9777297 }, + { "lat": 40.7865226, "lon": -73.9781277 }, + { "lat": 40.7864652, "lon": -73.9781723 }, + { "lat": 40.7864084, "lon": -73.9782121 }, + { "lat": 40.7858956, "lon": -73.9785926 }, + { "lat": 40.7858381, "lon": -73.9786335 }, + { "lat": 40.7857815, "lon": -73.9786777 }, + { "lat": 40.7856230, "lon": -73.9787992 }, + { "lat": 40.7852671, "lon": -73.9790719 }, + { "lat": 40.7852101, "lon": -73.9791163 }, + { "lat": 40.7851451, "lon": -73.9791635 }, + { "lat": 40.7846357, "lon": -73.9795342 }, + { "lat": 40.7845691, "lon": -73.9795827 }, + { "lat": 40.7845198, "lon": -73.9796193 }, + { "lat": 40.7839918, "lon": -73.9800106 }, + { "lat": 40.7838930, "lon": -73.9800838 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 404253730, + "bounds": { + "minlat": 40.7786634, + "minlon": -73.9820522, + "maxlat": 40.7787867, + "maxlon": -73.9817596 + }, + "nodes": [ + 3235708624, + 3235708625, + 42428634 + ], + "geometry": [ + { "lat": 40.7786634, "lon": -73.9817596 }, + { "lat": 40.7787510, "lon": -73.9819687 }, + { "lat": 40.7787867, "lon": -73.9820522 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "name_1": "West 72 Street", + "surface": "asphalt", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 404676777, + "bounds": { + "minlat": 40.7734989, + "minlon": -74.0117386, + "maxlat": 40.7740238, + "maxlon": -74.0105561 + }, + "nodes": [ + 4069497848, + 7300730990, + 7300717264, + 7300717266, + 5964467352, + 4069497849 + ], + "geometry": [ + { "lat": 40.7740238, "lon": -74.0117386 }, + { "lat": 40.7739850, "lon": -74.0116518 }, + { "lat": 40.7738939, "lon": -74.0114483 }, + { "lat": 40.7737095, "lon": -74.0110361 }, + { "lat": 40.7735225, "lon": -74.0106121 }, + { "lat": 40.7734989, "lon": -74.0105561 } + ], + "tags": { + "highway": "residential", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 404676778, + "bounds": { + "minlat": 40.7728566, + "minlon": -74.0134687, + "maxlat": 40.7739006, + "maxlon": -74.0110455 + }, + "nodes": [ + 4069497850, + 4310009561, + 7300730992, + 7300730996, + 4069497851 + ], + "geometry": [ + { "lat": 40.7739006, "lon": -74.0134687 }, + { "lat": 40.7733719, "lon": -74.0122423 }, + { "lat": 40.7733368, "lon": -74.0121608 }, + { "lat": 40.7728855, "lon": -74.0111126 }, + { "lat": 40.7728566, "lon": -74.0110455 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 405029717, + "bounds": { + "minlat": 40.8754826, + "minlon": -73.9494265, + "maxlat": 40.8758217, + "maxlon": -73.9492672 + }, + "nodes": [ + 2961785344, + 4072572064, + 4072572059 + ], + "geometry": [ + { "lat": 40.8754826, "lon": -73.9494265 }, + { "lat": 40.8756334, "lon": -73.9494146 }, + { "lat": 40.8758217, "lon": -73.9492672 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 405029719, + "bounds": { + "minlat": 40.8754188, + "minlon": -73.9500146, + "maxlat": 40.8755953, + "maxlon": -73.9497857 + }, + "nodes": [ + 2961785343, + 4072572053, + 4072572056, + 4072572065 + ], + "geometry": [ + { "lat": 40.8754188, "lon": -73.9497857 }, + { "lat": 40.8755175, "lon": -73.9498310 }, + { "lat": 40.8755634, "lon": -73.9499054 }, + { "lat": 40.8755953, "lon": -73.9500146 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 405029721, + "bounds": { + "minlat": 40.8733780, + "minlon": -73.9508918, + "maxlat": 40.8745123, + "maxlon": -73.9495010 + }, + "nodes": [ + 103318331, + 103318333, + 103318334, + 103318335, + 103318337, + 4072572058, + 4072572063, + 4072572067, + 4072577739, + 4072572051, + 4072582516 + ], + "geometry": [ + { "lat": 40.8733780, "lon": -73.9508918 }, + { "lat": 40.8734660, "lon": -73.9507494 }, + { "lat": 40.8735111, "lon": -73.9506407 }, + { "lat": 40.8735476, "lon": -73.9505200 }, + { "lat": 40.8735572, "lon": -73.9503559 }, + { "lat": 40.8736104, "lon": -73.9502247 }, + { "lat": 40.8736983, "lon": -73.9501201 }, + { "lat": 40.8740404, "lon": -73.9498385 }, + { "lat": 40.8741201, "lon": -73.9497847 }, + { "lat": 40.8742392, "lon": -73.9497044 }, + { "lat": 40.8745123, "lon": -73.9495010 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 405029723, + "bounds": { + "minlat": 40.8752663, + "minlon": -73.9489722, + "maxlat": 40.8755188, + "maxlon": -73.9484616 + }, + "nodes": [ + 2961785345, + 2961785346, + 4072572057, + 2961785347, + 2961785348, + 2961785349 + ], + "geometry": [ + { "lat": 40.8755188, "lon": -73.9489722 }, + { "lat": 40.8755188, "lon": -73.9489236 }, + { "lat": 40.8754711, "lon": -73.9487681 }, + { "lat": 40.8754204, "lon": -73.9486259 }, + { "lat": 40.8753231, "lon": -73.9485274 }, + { "lat": 40.8752663, "lon": -73.9484616 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 405029726, + "bounds": { + "minlat": 40.8755953, + "minlon": -73.9500146, + "maxlat": 40.8758818, + "maxlon": -73.9498813 + }, + "nodes": [ + 4072572065, + 4072572069 + ], + "geometry": [ + { "lat": 40.8755953, "lon": -73.9500146 }, + { "lat": 40.8758818, "lon": -73.9498813 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 405029727, + "bounds": { + "minlat": 40.8755175, + "minlon": -73.9498310, + "maxlat": 40.8758359, + "maxlon": -73.9496883 + }, + "nodes": [ + 4072572053, + 4072572061 + ], + "geometry": [ + { "lat": 40.8755175, "lon": -73.9498310 }, + { "lat": 40.8758359, "lon": -73.9496883 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 405030501, + "bounds": { + "minlat": 40.8730483, + "minlon": -73.9510836, + "maxlat": 40.8733780, + "maxlon": -73.9508918 + }, + "nodes": [ + 103318319, + 103318331 + ], + "geometry": [ + { "lat": 40.8730483, "lon": -73.9510836 }, + { "lat": 40.8733780, "lon": -73.9508918 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 405030606, + "bounds": { + "minlat": 40.8741201, + "minlon": -73.9505676, + "maxlat": 40.8743492, + "maxlon": -73.9497847 + }, + "nodes": [ + 4072577739, + 4072577736, + 4072577741, + 4072577738, + 4072577734, + 4072577733, + 4072577740, + 4072577735, + 4072577737 + ], + "geometry": [ + { "lat": 40.8741201, "lon": -73.9497847 }, + { "lat": 40.8741762, "lon": -73.9498384 }, + { "lat": 40.8742269, "lon": -73.9499027 }, + { "lat": 40.8742743, "lon": -73.9500075 }, + { "lat": 40.8743019, "lon": -73.9500825 }, + { "lat": 40.8743108, "lon": -73.9501818 }, + { "lat": 40.8743121, "lon": -73.9503426 }, + { "lat": 40.8743324, "lon": -73.9504687 }, + { "lat": 40.8743492, "lon": -73.9505676 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 405031049, + "bounds": { + "minlat": 40.8745123, + "minlon": -73.9495010, + "maxlat": 40.8745472, + "maxlon": -73.9494757 + }, + "nodes": [ + 4072582516, + 4072582515 + ], + "geometry": [ + { "lat": 40.8745123, "lon": -73.9495010 }, + { "lat": 40.8745472, "lon": -73.9494757 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 405031050, + "bounds": { + "minlat": 40.8745472, + "minlon": -73.9497140, + "maxlat": 40.8751179, + "maxlon": -73.9492645 + }, + "nodes": [ + 4072582515, + 4072572054, + 4072572055, + 4072572052, + 4072572066, + 4072572062 + ], + "geometry": [ + { "lat": 40.8745472, "lon": -73.9494757 }, + { "lat": 40.8748273, "lon": -73.9492645 }, + { "lat": 40.8749395, "lon": -73.9493155 }, + { "lat": 40.8750098, "lon": -73.9494119 }, + { "lat": 40.8750652, "lon": -73.9495488 }, + { "lat": 40.8751179, "lon": -73.9497140 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 405509685, + "bounds": { + "minlat": 40.8723062, + "minlon": -74.0130614, + "maxlat": 40.8724162, + "maxlon": -74.0130131 + }, + "nodes": [ + 103214404, + 103214403 + ], + "geometry": [ + { "lat": 40.8724162, "lon": -74.0130131 }, + { "lat": 40.8723062, "lon": -74.0130614 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 406322409, + "bounds": { + "minlat": 40.8693350, + "minlon": -74.0056538, + "maxlat": 40.8708287, + "maxlon": -74.0034788 + }, + "nodes": [ + 567269903, + 567269905, + 567269906, + 567269909 + ], + "geometry": [ + { "lat": 40.8708287, "lon": -74.0056538 }, + { "lat": 40.8704240, "lon": -74.0050363 }, + { "lat": 40.8703332, "lon": -74.0048989 }, + { "lat": 40.8693350, "lon": -74.0034788 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "2", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 407529264, + "bounds": { + "minlat": 40.7030390, + "minlon": -73.9885691, + "maxlat": 40.7032066, + "maxlon": -73.9880620 + }, + "nodes": [ + 10170379775, + 2342950021 + ], + "geometry": [ + { "lat": 40.7030390, "lon": -73.9885691 }, + { "lat": 40.7032066, "lon": -73.9880620 } + ], + "tags": { + "covered": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Dumbo Archway", + "name:zh": "灯波拱廊", + "name:zh-Hans": "灯波拱廊", + "name:zh-Hant": "燈波拱廊", + "oneway": "no", + "surface": "sett", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 407580298, + "bounds": { + "minlat": 40.8134253, + "minlon": -73.9391380, + "maxlat": 40.8142699, + "maxlon": -73.9371434 + }, + "nodes": [ + 1795811317, + 9559408286, + 42427834 + ], + "geometry": [ + { "lat": 40.8142699, "lon": -73.9391380 }, + { "lat": 40.8134863, "lon": -73.9372831 }, + { "lat": 40.8134253, "lon": -73.9371434 } + ], + "tags": { + "bicycle": "no", + "highway": "service", + "horse": "no", + "motor_vehicle": "private", + "name": "West 136th Street", + "note": "Access restricted to hospital related vehicles and personnel.", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 409716177, + "bounds": { + "minlat": 40.7408008, + "minlon": -73.9853699, + "maxlat": 40.7414523, + "maxlon": -73.9838155 + }, + "nodes": [ + 2302133933, + 10166167584, + 12181339178, + 10166167562, + 42456555 + ], + "geometry": [ + { "lat": 40.7408008, "lon": -73.9838155 }, + { "lat": 40.7408438, "lon": -73.9839173 }, + { "lat": 40.7413984, "lon": -73.9852418 }, + { "lat": 40.7414210, "lon": -73.9852958 }, + { "lat": 40.7414523, "lon": -73.9853699 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 25th Street", + "name:ru": "Восточная 25-я стрит", + "name_1": "East 25 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 410303469, + "bounds": { + "minlat": 40.7115917, + "minlon": -74.0028070, + "maxlat": 40.7121480, + "maxlon": -74.0024375 + }, + "nodes": [ + 1251908563, + 9369042155, + 9369042156, + 7477074113, + 4121348968, + 8262309649, + 278639868 + ], + "geometry": [ + { "lat": 40.7121480, "lon": -74.0027684 }, + { "lat": 40.7121329, "lon": -74.0027928 }, + { "lat": 40.7121102, "lon": -74.0028070 }, + { "lat": 40.7120866, "lon": -74.0028037 }, + { "lat": 40.7117641, "lon": -74.0025587 }, + { "lat": 40.7116666, "lon": -74.0024894 }, + { "lat": 40.7115917, "lon": -74.0024375 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "25 mph", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 412115641, + "bounds": { + "minlat": 40.7221537, + "minlon": -74.0114317, + "maxlat": 40.7222991, + "maxlon": -74.0099059 + }, + "nodes": [ + 11492226807, + 8310246734, + 42440916, + 8310246737, + 11492226809 + ], + "geometry": [ + { "lat": 40.7221537, "lon": -74.0099059 }, + { "lat": 40.7222089, "lon": -74.0104849 }, + { "lat": 40.7222159, "lon": -74.0105584 }, + { "lat": 40.7222236, "lon": -74.0106399 }, + { "lat": 40.7222991, "lon": -74.0114317 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Laight Street", + "name:ko": "레이트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 412117872, + "bounds": { + "minlat": 40.7246766, + "minlon": -74.0093172, + "maxlat": 40.7247682, + "maxlon": -74.0092999 + }, + "nodes": [ + 4142105812, + 5706569125, + 42436083 + ], + "geometry": [ + { "lat": 40.7246766, "lon": -74.0093172 }, + { "lat": 40.7247243, "lon": -74.0093084 }, + { "lat": 40.7247682, "lon": -74.0092999 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 412174929, + "bounds": { + "minlat": 40.7203358, + "minlon": -74.0064614, + "maxlat": 40.7204280, + "maxlon": -74.0054889 + }, + "nodes": [ + 42434842, + 42434839, + 11493357439, + 2155551107, + 3788379709, + 3788379710, + 42434837 + ], + "geometry": [ + { "lat": 40.7204280, "lon": -74.0064614 }, + { "lat": 40.7203849, "lon": -74.0060136 }, + { "lat": 40.7203456, "lon": -74.0056415 }, + { "lat": 40.7203395, "lon": -74.0055817 }, + { "lat": 40.7203358, "lon": -74.0055406 }, + { "lat": 40.7203365, "lon": -74.0055144 }, + { "lat": 40.7203422, "lon": -74.0054889 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Beach Street", + "name:ko": "비치 스트리트", + "noref": "yes", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 412180553, + "bounds": { + "minlat": 40.7200757, + "minlon": -74.0064614, + "maxlat": 40.7204280, + "maxlon": -74.0056628 + }, + "nodes": [ + 42434842, + 11493402705, + 11493402704, + 11493357450, + 4890599945, + 42434855 + ], + "geometry": [ + { "lat": 40.7204280, "lon": -74.0064614 }, + { "lat": 40.7203520, "lon": -74.0062624 }, + { "lat": 40.7203067, "lon": -74.0061623 }, + { "lat": 40.7201458, "lon": -74.0058124 }, + { "lat": 40.7201179, "lon": -74.0057515 }, + { "lat": 40.7200757, "lon": -74.0056628 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Walker Street", + "name:etymology:wikidata": "Q1446684", + "name:ko": "워커 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 412471474, + "bounds": { + "minlat": 40.7401252, + "minlon": -73.9838155, + "maxlat": 40.7408008, + "maxlon": -73.9822169 + }, + "nodes": [ + 4138911201, + 8835579636, + 8835579628, + 2302133933 + ], + "geometry": [ + { "lat": 40.7401252, "lon": -73.9822169 }, + { "lat": 40.7401769, "lon": -73.9823435 }, + { "lat": 40.7407588, "lon": -73.9837183 }, + { "lat": 40.7408008, "lon": -73.9838155 } + ], + "tags": { + "alt_name": "Clivner-Field Plaza", + "bicycle": "dismount", + "highway": "pedestrian", + "lit": "yes", + "name": "East 25th Street", + "name:ru": "Восточная 25-я стрит", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 412549267, + "bounds": { + "minlat": 40.7238031, + "minlon": -74.0070994, + "maxlat": 40.7244054, + "maxlon": -74.0065244 + }, + "nodes": [ + 42424630, + 4139510044, + 4139510031, + 4139510036, + 4139510029, + 4139510030, + 4139510034, + 4139510028, + 4139510032, + 4139510038, + 4139510039, + 4139510043, + 4139510042, + 4139510040, + 4139510035, + 4139510033, + 4139510041 + ], + "geometry": [ + { "lat": 40.7244054, "lon": -74.0070994 }, + { "lat": 40.7243277, "lon": -74.0070528 }, + { "lat": 40.7242885, "lon": -74.0070258 }, + { "lat": 40.7242198, "lon": -74.0069705 }, + { "lat": 40.7241643, "lon": -74.0069201 }, + { "lat": 40.7241112, "lon": -74.0068724 }, + { "lat": 40.7240670, "lon": -74.0068238 }, + { "lat": 40.7240186, "lon": -74.0067656 }, + { "lat": 40.7239815, "lon": -74.0067132 }, + { "lat": 40.7239491, "lon": -74.0066593 }, + { "lat": 40.7239176, "lon": -74.0066101 }, + { "lat": 40.7238896, "lon": -74.0065684 }, + { "lat": 40.7238765, "lon": -74.0065506 }, + { "lat": 40.7238595, "lon": -74.0065363 }, + { "lat": 40.7238453, "lon": -74.0065290 }, + { "lat": 40.7238250, "lon": -74.0065244 }, + { "lat": 40.7238031, "lon": -74.0065261 } + ], + "tags": { + "access": "no", + "highway": "service", + "maxspeed": "25 mph", + "oneway": "no", + "service": "emergency_access", + "sidewalk:both": "no", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 412875705, + "bounds": { + "minlat": 40.7203434, + "minlon": -74.0122789, + "maxlat": 40.7223439, + "maxlon": -74.0118571 + }, + "nodes": [ + 12410398108, + 246882230, + 246858445, + 246891302, + 12410398107 + ], + "geometry": [ + { "lat": 40.7223439, "lon": -74.0118571 }, + { "lat": 40.7222501, "lon": -74.0118749 }, + { "lat": 40.7205093, "lon": -74.0122424 }, + { "lat": 40.7204590, "lon": -74.0122530 }, + { "lat": 40.7203434, "lon": -74.0122789 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 412876925, + "bounds": { + "minlat": 40.7231886, + "minlon": -74.0076357, + "maxlat": 40.7235592, + "maxlon": -74.0072170 + }, + "nodes": [ + 4142105813, + 4215665530, + 42424619, + 4602429325, + 3788364714 + ], + "geometry": [ + { "lat": 40.7231886, "lon": -74.0072170 }, + { "lat": 40.7232802, "lon": -74.0072355 }, + { "lat": 40.7235010, "lon": -74.0075525 }, + { "lat": 40.7235375, "lon": -74.0076050 }, + { "lat": 40.7235592, "lon": -74.0076357 } + ], + "tags": { + "bicycle": "yes", + "change": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|right|right", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 413045201, + "bounds": { + "minlat": 40.7154325, + "minlon": -74.0091888, + "maxlat": 40.7161881, + "maxlon": -74.0075330 + }, + "nodes": [ + 42445356, + 11515468989, + 8312361682, + 7410938066, + 42445357, + 7410938069, + 8304497535, + 42436322 + ], + "geometry": [ + { "lat": 40.7154325, "lon": -74.0075330 }, + { "lat": 40.7154766, "lon": -74.0076303 }, + { "lat": 40.7154894, "lon": -74.0076585 }, + { "lat": 40.7159819, "lon": -74.0087393 }, + { "lat": 40.7160290, "lon": -74.0088423 }, + { "lat": 40.7160662, "lon": -74.0089241 }, + { "lat": 40.7161589, "lon": -74.0091272 }, + { "lat": 40.7161881, "lon": -74.0091888 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Reade Street", + "name:etymology:wikidata": "Q38099995", + "name:ko": "리드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 413045202, + "bounds": { + "minlat": 40.7161881, + "minlon": -74.0107660, + "maxlat": 40.7169068, + "maxlon": -74.0091888 + }, + "nodes": [ + 42436322, + 8304497537, + 10290705665, + 8304878676, + 8304497531, + 5812723036 + ], + "geometry": [ + { "lat": 40.7161881, "lon": -74.0091888 }, + { "lat": 40.7162401, "lon": -74.0092979 }, + { "lat": 40.7163550, "lon": -74.0095516 }, + { "lat": 40.7168396, "lon": -74.0106185 }, + { "lat": 40.7168718, "lon": -74.0106879 }, + { "lat": 40.7169068, "lon": -74.0107660 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Reade Street", + "name:etymology:wikidata": "Q38099995", + "name:ko": "리드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "30'8\"" + } +}, +{ + "type": "way", + "id": 413050334, + "bounds": { + "minlat": 40.7223187, + "minlon": -74.0116409, + "maxlat": 40.7229787, + "maxlon": -74.0115025 + }, + "nodes": [ + 42440918, + 246882204, + 246882134, + 4207143421 + ], + "geometry": [ + { "lat": 40.7223187, "lon": -74.0116409 }, + { "lat": 40.7224097, "lon": -74.0116210 }, + { "lat": 40.7228732, "lon": -74.0115239 }, + { "lat": 40.7229787, "lon": -74.0115025 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "asphalt", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 413050335, + "bounds": { + "minlat": 40.7143576, + "minlon": -74.0127968, + "maxlat": 40.7163698, + "maxlon": -74.0083780 + }, + "nodes": [ + 4143812552, + 11463714760, + 8304497548, + 5812723033, + 8304497545, + 7536025166, + 7410938048, + 42449600, + 7410938045, + 8279851438, + 42449597 + ], + "geometry": [ + { "lat": 40.7163698, "lon": -74.0127968 }, + { "lat": 40.7162581, "lon": -74.0125498 }, + { "lat": 40.7156497, "lon": -74.0112056 }, + { "lat": 40.7156024, "lon": -74.0111062 }, + { "lat": 40.7155685, "lon": -74.0110326 }, + { "lat": 40.7150491, "lon": -74.0098959 }, + { "lat": 40.7150045, "lon": -74.0097967 }, + { "lat": 40.7149648, "lon": -74.0097093 }, + { "lat": 40.7149004, "lon": -74.0095684 }, + { "lat": 40.7144201, "lon": -74.0085142 }, + { "lat": 40.7143576, "lon": -74.0083780 } + ], + "tags": { + "bicycle": "yes", + "construction": "minor", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Warren Street", + "name:etymology:wikidata": "Q3376953", + "name:ko": "워렌 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 413051876, + "bounds": { + "minlat": 40.7095053, + "minlon": -74.0145388, + "maxlat": 40.7097848, + "maxlon": -74.0138882 + }, + "nodes": [ + 11413101832, + 11415663098, + 8262936698, + 3772840882 + ], + "geometry": [ + { "lat": 40.7097848, "lon": -74.0145388 }, + { "lat": 40.7095514, "lon": -74.0139954 }, + { "lat": 40.7095357, "lon": -74.0139595 }, + { "lat": 40.7095053, "lon": -74.0138882 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Albany Street", + "name:etymology:wikidata": "Q24861", + "name:ko": "앨버니 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 08:00-16:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29110247", + "wikipedia": "en:Albany Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 413052676, + "bounds": { + "minlat": 40.7098267, + "minlon": -74.0147403, + "maxlat": 40.7099712, + "maxlon": -74.0146879 + }, + "nodes": [ + 12413032498, + 11374474063, + 11413750595 + ], + "geometry": [ + { "lat": 40.7098267, "lon": -74.0147403 }, + { "lat": 40.7099206, "lon": -74.0147031 }, + { "lat": 40.7099712, "lon": -74.0146879 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 413052855, + "bounds": { + "minlat": 40.7143048, + "minlon": -74.0127348, + "maxlat": 40.7151116, + "maxlon": -74.0125320 + }, + "nodes": [ + 4143838198, + 11460898464, + 8214302527, + 11460898465, + 4143838196, + 4573041274, + 10282972352 + ], + "geometry": [ + { "lat": 40.7151116, "lon": -74.0125320 }, + { "lat": 40.7150407, "lon": -74.0125492 }, + { "lat": 40.7150150, "lon": -74.0125555 }, + { "lat": 40.7149586, "lon": -74.0125694 }, + { "lat": 40.7147763, "lon": -74.0126143 }, + { "lat": 40.7147228, "lon": -74.0126274 }, + { "lat": 40.7143048, "lon": -74.0127348 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 413054285, + "bounds": { + "minlat": 40.7131883, + "minlon": -74.0125748, + "maxlat": 40.7139387, + "maxlon": -74.0123263 + }, + "nodes": [ + 42459493, + 8279851505, + 10282960505, + 10282960506, + 11301575793, + 8279851516, + 11301575794, + 6865282549 + ], + "geometry": [ + { "lat": 40.7139387, "lon": -74.0123263 }, + { "lat": 40.7138745, "lon": -74.0123586 }, + { "lat": 40.7137638, "lon": -74.0123889 }, + { "lat": 40.7133657, "lon": -74.0124950 }, + { "lat": 40.7133070, "lon": -74.0125142 }, + { "lat": 40.7132622, "lon": -74.0125310 }, + { "lat": 40.7132233, "lon": -74.0125500 }, + { "lat": 40.7131883, "lon": -74.0125748 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "yes", + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 413054286, + "bounds": { + "minlat": 40.7149277, + "minlon": -74.0079320, + "maxlat": 40.7151635, + "maxlon": -74.0077456 + }, + "nodes": [ + 42431611, + 7439027753, + 5135853008 + ], + "geometry": [ + { "lat": 40.7149277, "lon": -74.0079320 }, + { "lat": 40.7149891, "lon": -74.0078834 }, + { "lat": 40.7151635, "lon": -74.0077456 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 413054850, + "bounds": { + "minlat": 40.7191530, + "minlon": -74.0039146, + "maxlat": 40.7200394, + "maxlon": -74.0020910 + }, + "nodes": [ + 42447246, + 8307641814, + 4143859872, + 4754110659, + 42428431 + ], + "geometry": [ + { "lat": 40.7200394, "lon": -74.0039146 }, + { "lat": 40.7199896, "lon": -74.0038067 }, + { "lat": 40.7195528, "lon": -74.0028589 }, + { "lat": 40.7192062, "lon": -74.0021933 }, + { "lat": 40.7191530, "lon": -74.0020910 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Lispenard Street", + "name:ko": "리스페너드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 413054857, + "bounds": { + "minlat": 40.7169298, + "minlon": -74.0048363, + "maxlat": 40.7188572, + "maxlon": -74.0008126 + }, + "nodes": [ + 42427307, + 7132560112, + 12197904844, + 8307641736, + 12198027560, + 42445481, + 8307641739, + 42432627, + 591566825, + 8307641762, + 42428425, + 8307641765, + 42448147, + 8304498286, + 42453777 + ], + "geometry": [ + { "lat": 40.7169298, "lon": -74.0008126 }, + { "lat": 40.7169760, "lon": -74.0009058 }, + { "lat": 40.7172341, "lon": -74.0014208 }, + { "lat": 40.7172591, "lon": -74.0014696 }, + { "lat": 40.7172790, "lon": -74.0015083 }, + { "lat": 40.7173175, "lon": -74.0015833 }, + { "lat": 40.7173598, "lon": -74.0016656 }, + { "lat": 40.7176898, "lon": -74.0023502 }, + { "lat": 40.7177308, "lon": -74.0024327 }, + { "lat": 40.7179916, "lon": -74.0029510 }, + { "lat": 40.7180338, "lon": -74.0030430 }, + { "lat": 40.7180752, "lon": -74.0031329 }, + { "lat": 40.7183233, "lon": -74.0036727 }, + { "lat": 40.7188089, "lon": -74.0047299 }, + { "lat": 40.7188572, "lon": -74.0048363 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "White Street", + "name:ko": "화이트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 413056164, + "bounds": { + "minlat": 40.7116733, + "minlon": -74.0075513, + "maxlat": 40.7117945, + "maxlon": -74.0070680 + }, + "nodes": [ + 2821304143, + 9364517376, + 272195275, + 2821304142 + ], + "geometry": [ + { "lat": 40.7117945, "lon": -74.0070680 }, + { "lat": 40.7117611, "lon": -74.0071947 }, + { "lat": 40.7116844, "lon": -74.0074911 }, + { "lat": 40.7116733, "lon": -74.0075513 } + ], + "tags": { + "cycleway:right": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 413202967, + "bounds": { + "minlat": 40.7011525, + "minlon": -74.0167905, + "maxlat": 40.7051000, + "maxlon": -74.0119384 + }, + "nodes": [ + 246899801, + 4145432034, + 4145432032, + 4145432048, + 4145432049, + 4145432044, + 4145432043, + 4149739458, + 4149739401, + 4149739413, + 4149739412, + 4149739469, + 4149739448, + 4149739421, + 4149739427, + 4149739452, + 4149739415, + 4149739447, + 4149739467, + 4149739473, + 4149739463, + 4149739468, + 4149739408, + 42451397, + 4149739406, + 4149739407, + 4149739409, + 4149739431, + 4149739429, + 4149739390, + 4149739422, + 4149739470, + 4149739400, + 4149739411, + 4149739430, + 4149739397, + 4149739423, + 4149739425, + 4149739439, + 4149739391, + 246896915, + 4149739442, + 4149739434, + 4149739414, + 4149739451, + 42451402 + ], + "geometry": [ + { "lat": 40.7051000, "lon": -74.0166823 }, + { "lat": 40.7049537, "lon": -74.0167445 }, + { "lat": 40.7049023, "lon": -74.0167617 }, + { "lat": 40.7048377, "lon": -74.0167766 }, + { "lat": 40.7047638, "lon": -74.0167850 }, + { "lat": 40.7046579, "lon": -74.0167891 }, + { "lat": 40.7046202, "lon": -74.0167895 }, + { "lat": 40.7045317, "lon": -74.0167905 }, + { "lat": 40.7044177, "lon": -74.0167808 }, + { "lat": 40.7042700, "lon": -74.0167536 }, + { "lat": 40.7041042, "lon": -74.0167169 }, + { "lat": 40.7038294, "lon": -74.0166314 }, + { "lat": 40.7035508, "lon": -74.0165089 }, + { "lat": 40.7033147, "lon": -74.0164193 }, + { "lat": 40.7029660, "lon": -74.0162852 }, + { "lat": 40.7025852, "lon": -74.0161415 }, + { "lat": 40.7023414, "lon": -74.0160384 }, + { "lat": 40.7022370, "lon": -74.0159780 }, + { "lat": 40.7020863, "lon": -74.0158587 }, + { "lat": 40.7018875, "lon": -74.0156848 }, + { "lat": 40.7017617, "lon": -74.0155518 }, + { "lat": 40.7016422, "lon": -74.0154066 }, + { "lat": 40.7014785, "lon": -74.0151400 }, + { "lat": 40.7013830, "lon": -74.0149580 }, + { "lat": 40.7013641, "lon": -74.0149156 }, + { "lat": 40.7013315, "lon": -74.0148441 }, + { "lat": 40.7013034, "lon": -74.0147604 }, + { "lat": 40.7012760, "lon": -74.0146745 }, + { "lat": 40.7012509, "lon": -74.0145650 }, + { "lat": 40.7012317, "lon": -74.0144714 }, + { "lat": 40.7012158, "lon": -74.0143853 }, + { "lat": 40.7011953, "lon": -74.0142696 }, + { "lat": 40.7011776, "lon": -74.0141485 }, + { "lat": 40.7011592, "lon": -74.0140155 }, + { "lat": 40.7011532, "lon": -74.0138954 }, + { "lat": 40.7011529, "lon": -74.0137874 }, + { "lat": 40.7011525, "lon": -74.0136547 }, + { "lat": 40.7011583, "lon": -74.0135486 }, + { "lat": 40.7011697, "lon": -74.0133956 }, + { "lat": 40.7011980, "lon": -74.0132192 }, + { "lat": 40.7012158, "lon": -74.0130970 }, + { "lat": 40.7012372, "lon": -74.0129529 }, + { "lat": 40.7012576, "lon": -74.0128157 }, + { "lat": 40.7012856, "lon": -74.0126682 }, + { "lat": 40.7013103, "lon": -74.0125444 }, + { "lat": 40.7014429, "lon": -74.0119384 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxspeed": "30 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "note": "this is supposed to be a local truck route but signs say no trucks", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tunnel": "yes", + "tunnel:name": "Battery Park Underpass", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 413203693, + "bounds": { + "minlat": 40.7048802, + "minlon": -74.0164194, + "maxlat": 40.7049720, + "maxlon": -74.0164104 + }, + "nodes": [ + 246923513, + 11416159789, + 13018669861, + 11416159790, + 4145432042 + ], + "geometry": [ + { "lat": 40.7048802, "lon": -74.0164104 }, + { "lat": 40.7049182, "lon": -74.0164113 }, + { "lat": 40.7049279, "lon": -74.0164116 }, + { "lat": 40.7049467, "lon": -74.0164122 }, + { "lat": 40.7049720, "lon": -74.0164194 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 413212450, + "bounds": { + "minlat": 40.7026854, + "minlon": -74.0144385, + "maxlat": 40.7031643, + "maxlon": -74.0141521 + }, + "nodes": [ + 2034011052, + 279151951, + 2034011056, + 2034011059, + 279151950, + 2034011063, + 7686972446, + 11382519404, + 42444353 + ], + "geometry": [ + { "lat": 40.7026854, "lon": -74.0141521 }, + { "lat": 40.7027486, "lon": -74.0142134 }, + { "lat": 40.7028353, "lon": -74.0142838 }, + { "lat": 40.7029113, "lon": -74.0143332 }, + { "lat": 40.7029784, "lon": -74.0143675 }, + { "lat": 40.7030658, "lon": -74.0144067 }, + { "lat": 40.7031005, "lon": -74.0144186 }, + { "lat": 40.7031279, "lon": -74.0144286 }, + { "lat": 40.7031643, "lon": -74.0144385 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "State Street", + "name:etymology:wikidata": "Q1384", + "name:ko": "스테이트 스트리트", + "name:ru": "Стейт-стрит", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "State", + "tiger:name_type": "St", + "wikidata": "Q13461917", + "wikipedia": "en:State Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 413217632, + "bounds": { + "minlat": 40.7034754, + "minlon": -74.0089696, + "maxlat": 40.7041084, + "maxlon": -74.0082883 + }, + "nodes": [ + 42421960, + 10435219303, + 7139608183, + 1251958196, + 10457330708, + 10457330709, + 8629148771 + ], + "geometry": [ + { "lat": 40.7041084, "lon": -74.0089696 }, + { "lat": 40.7040512, "lon": -74.0089227 }, + { "lat": 40.7040189, "lon": -74.0088901 }, + { "lat": 40.7037212, "lon": -74.0085638 }, + { "lat": 40.7036887, "lon": -74.0085260 }, + { "lat": 40.7036523, "lon": -74.0084836 }, + { "lat": 40.7034754, "lon": -74.0082883 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxlength": "45 ft", + "maxspeed": "20 mph", + "name": "Old Slip", + "name:ko": "올드 슬립", + "name:ru": "Олд-Слип", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Old Slip", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "wikidata": "Q13859648" + } +}, +{ + "type": "way", + "id": 413702744, + "bounds": { + "minlat": 40.7012230, + "minlon": -74.0166720, + "maxlat": 40.7050763, + "maxlon": -74.0119682 + }, + "nodes": [ + 4149739462, + 4149739455, + 4149739389, + 4149739472, + 4149739449, + 4149739398, + 4149739435, + 4149739402, + 4149739424, + 4149739453, + 4149739419, + 4149739460, + 4149739410, + 4149739465, + 4149739459, + 4149739395, + 4149739443, + 4149739454, + 4149739396, + 4149739457, + 4149739418, + 4149739456, + 4149739433, + 4149739432, + 4149739450, + 4149739393, + 4149739405, + 4149739464, + 4149739404, + 4149739441, + 4149739426, + 4149739420, + 4149739445, + 4149739392, + 4149739416, + 4149739438, + 4149739394, + 4149739440, + 4149739399, + 4149739461, + 4149739403, + 4149739417, + 4149739466, + 4149739428, + 246900041 + ], + "geometry": [ + { "lat": 40.7015123, "lon": -74.0119682 }, + { "lat": 40.7013782, "lon": -74.0125692 }, + { "lat": 40.7013541, "lon": -74.0126902 }, + { "lat": 40.7013264, "lon": -74.0128353 }, + { "lat": 40.7013063, "lon": -74.0129707 }, + { "lat": 40.7012850, "lon": -74.0131147 }, + { "lat": 40.7012673, "lon": -74.0132355 }, + { "lat": 40.7012395, "lon": -74.0134084 }, + { "lat": 40.7012285, "lon": -74.0135568 }, + { "lat": 40.7012230, "lon": -74.0136581 }, + { "lat": 40.7012234, "lon": -74.0137903 }, + { "lat": 40.7012236, "lon": -74.0138927 }, + { "lat": 40.7012295, "lon": -74.0140090 }, + { "lat": 40.7012469, "lon": -74.0141319 }, + { "lat": 40.7012643, "lon": -74.0142502 }, + { "lat": 40.7012840, "lon": -74.0143621 }, + { "lat": 40.7013049, "lon": -74.0144592 }, + { "lat": 40.7013293, "lon": -74.0145495 }, + { "lat": 40.7013673, "lon": -74.0146690 }, + { "lat": 40.7014174, "lon": -74.0147961 }, + { "lat": 40.7014433, "lon": -74.0148596 }, + { "lat": 40.7014588, "lon": -74.0148942 }, + { "lat": 40.7015504, "lon": -74.0150689 }, + { "lat": 40.7017079, "lon": -74.0153253 }, + { "lat": 40.7018203, "lon": -74.0154618 }, + { "lat": 40.7019405, "lon": -74.0155890 }, + { "lat": 40.7021342, "lon": -74.0157584 }, + { "lat": 40.7022783, "lon": -74.0158725 }, + { "lat": 40.7023732, "lon": -74.0159274 }, + { "lat": 40.7026113, "lon": -74.0160281 }, + { "lat": 40.7029910, "lon": -74.0161714 }, + { "lat": 40.7033397, "lon": -74.0163055 }, + { "lat": 40.7035774, "lon": -74.0163957 }, + { "lat": 40.7038539, "lon": -74.0165173 }, + { "lat": 40.7041220, "lon": -74.0166007 }, + { "lat": 40.7042836, "lon": -74.0166365 }, + { "lat": 40.7044268, "lon": -74.0166629 }, + { "lat": 40.7045343, "lon": -74.0166720 }, + { "lat": 40.7046159, "lon": -74.0166711 }, + { "lat": 40.7046562, "lon": -74.0166707 }, + { "lat": 40.7047586, "lon": -74.0166667 }, + { "lat": 40.7048261, "lon": -74.0166590 }, + { "lat": 40.7048835, "lon": -74.0166458 }, + { "lat": 40.7049302, "lon": -74.0166301 }, + { "lat": 40.7050763, "lon": -74.0165774 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxspeed": "30 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "note": "this is supposed to be a local truck route but signs say no trucks", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tunnel": "yes", + "tunnel:name": "Battery Park Underpass", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 413704324, + "bounds": { + "minlat": 40.7074280, + "minlon": -74.0146924, + "maxlat": 40.7074917, + "maxlon": -74.0146677 + }, + "nodes": [ + 4149750390, + 42438030 + ], + "geometry": [ + { "lat": 40.7074917, "lon": -74.0146677 }, + { "lat": 40.7074280, "lon": -74.0146924 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "oneway": "yes", + "tunnel": "building_passage", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 413704325, + "bounds": { + "minlat": 40.7076042, + "minlon": -74.0155198, + "maxlat": 40.7076904, + "maxlon": -74.0152562 + }, + "nodes": [ + 4149750389, + 11413750709, + 11374474024, + 9181525951 + ], + "geometry": [ + { "lat": 40.7076042, "lon": -74.0152562 }, + { "lat": 40.7076276, "lon": -74.0153314 }, + { "lat": 40.7076430, "lon": -74.0153831 }, + { "lat": 40.7076904, "lon": -74.0155198 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Joseph P. Ward Street", + "name:ko": "조셉 P. 워드 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 413727896, + "bounds": { + "minlat": 40.7071527, + "minlon": -74.0140577, + "maxlat": 40.7071915, + "maxlon": -74.0139431 + }, + "nodes": [ + 4149936245, + 11385958487, + 4206997159, + 4149936244 + ], + "geometry": [ + { "lat": 40.7071527, "lon": -74.0139431 }, + { "lat": 40.7071730, "lon": -74.0140029 }, + { "lat": 40.7071829, "lon": -74.0140323 }, + { "lat": 40.7071915, "lon": -74.0140577 } + ], + "tags": { + "destination": "Battery Parking Garage", + "highway": "service", + "lanes": "2", + "maxspeed": "25 mph", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 413727897, + "bounds": { + "minlat": 40.7069507, + "minlon": -74.0139431, + "maxlat": 40.7071527, + "maxlon": -74.0135153 + }, + "nodes": [ + 4149936235, + 10315971167, + 10315971165, + 4206997145, + 5889527555, + 4206997153, + 4149936245 + ], + "geometry": [ + { "lat": 40.7069507, "lon": -74.0135153 }, + { "lat": 40.7069758, "lon": -74.0135343 }, + { "lat": 40.7069969, "lon": -74.0135619 }, + { "lat": 40.7070148, "lon": -74.0135918 }, + { "lat": 40.7071167, "lon": -74.0138514 }, + { "lat": 40.7071266, "lon": -74.0138759 }, + { "lat": 40.7071527, "lon": -74.0139431 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Edgar Street", + "name:ko": "에드거 스트리트", + "name:ru": "Эдгар-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 413727898, + "bounds": { + "minlat": 40.7070893, + "minlon": -74.0140836, + "maxlat": 40.7071315, + "maxlon": -74.0139691 + }, + "nodes": [ + 4149936248, + 4206997154, + 11385958486, + 42436178 + ], + "geometry": [ + { "lat": 40.7071315, "lon": -74.0140836 }, + { "lat": 40.7071223, "lon": -74.0140599 }, + { "lat": 40.7071113, "lon": -74.0140298 }, + { "lat": 40.7070893, "lon": -74.0139691 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "maxspeed": "25 mph", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 413749473, + "bounds": { + "minlat": 40.6818746, + "minlon": -74.0156298, + "maxlat": 40.7052453, + "maxlon": -74.0055164 + }, + "nodes": [ + 373864855, + 4150144208, + 4150144213, + 4150144250, + 4150144205, + 4150144223, + 4150144254, + 4150144203, + 4150144227, + 4150144225, + 4150144261, + 4150144241, + 4150144248, + 4150144211, + 4150144215, + 4150144204, + 4150144214, + 4150144224, + 4150144217, + 4150144235, + 4150144249, + 4150144246, + 4150144226, + 4150144245, + 4150144244, + 4150144216, + 4150144237, + 4150144262, + 4150144219, + 4150144230, + 4150144229, + 4150144228, + 4150144240, + 4150144252, + 4150144207, + 4150144253, + 9647382368, + 9647382369, + 4150144212, + 9647382363, + 4150144257, + 370880731 + ], + "geometry": [ + { "lat": 40.6818746, "lon": -74.0055164 }, + { "lat": 40.6819641, "lon": -74.0055712 }, + { "lat": 40.6820444, "lon": -74.0056184 }, + { "lat": 40.6821326, "lon": -74.0056673 }, + { "lat": 40.6822196, "lon": -74.0057099 }, + { "lat": 40.6822818, "lon": -74.0057399 }, + { "lat": 40.6827906, "lon": -74.0059533 }, + { "lat": 40.6828932, "lon": -74.0059983 }, + { "lat": 40.6829998, "lon": -74.0060516 }, + { "lat": 40.6830901, "lon": -74.0060965 }, + { "lat": 40.6831819, "lon": -74.0061454 }, + { "lat": 40.6832561, "lon": -74.0061876 }, + { "lat": 40.6833244, "lon": -74.0062289 }, + { "lat": 40.6834085, "lon": -74.0062803 }, + { "lat": 40.6834876, "lon": -74.0063300 }, + { "lat": 40.6835735, "lon": -74.0063865 }, + { "lat": 40.6899815, "lon": -74.0109505 }, + { "lat": 40.6902176, "lon": -74.0111111 }, + { "lat": 40.6904359, "lon": -74.0112463 }, + { "lat": 40.6906863, "lon": -74.0113820 }, + { "lat": 40.6909255, "lon": -74.0114941 }, + { "lat": 40.6911896, "lon": -74.0115945 }, + { "lat": 40.7006229, "lon": -74.0152448 }, + { "lat": 40.7009525, "lon": -74.0153451 }, + { "lat": 40.7014424, "lon": -74.0154134 }, + { "lat": 40.7018303, "lon": -74.0154900 }, + { "lat": 40.7020114, "lon": -74.0155247 }, + { "lat": 40.7023994, "lon": -74.0155875 }, + { "lat": 40.7025350, "lon": -74.0156073 }, + { "lat": 40.7026727, "lon": -74.0156179 }, + { "lat": 40.7028552, "lon": -74.0156272 }, + { "lat": 40.7030017, "lon": -74.0156298 }, + { "lat": 40.7032069, "lon": -74.0156165 }, + { "lat": 40.7033855, "lon": -74.0156045 }, + { "lat": 40.7035622, "lon": -74.0155834 }, + { "lat": 40.7037154, "lon": -74.0155594 }, + { "lat": 40.7039683, "lon": -74.0155180 }, + { "lat": 40.7042719, "lon": -74.0154489 }, + { "lat": 40.7044193, "lon": -74.0154121 }, + { "lat": 40.7045757, "lon": -74.0153560 }, + { "lat": 40.7048677, "lon": -74.0152420 }, + { "lat": 40.7052453, "lon": -74.0150558 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "-2", + "lit": "24/7", + "maxheight": "12'1\"", + "maxspeed": "40 mph", + "maxwidth": "8'6\"", + "name": "Brooklyn-Battery Tunnel", + "official_name": "Hugh L. Carey Tunnel", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "short_name": "Battery Tunnel", + "surface": "asphalt", + "toll": "yes", + "tunnel": "yes", + "unsigned_ref": "I 478", + "wikidata": "Q125635", + "wikipedia": "en:Brooklyn–Battery Tunnel" + } +}, +{ + "type": "way", + "id": 414669905, + "bounds": { + "minlat": 40.7070267, + "minlon": -74.0016215, + "maxlat": 40.7080872, + "maxlon": -73.9995644 + }, + "nodes": [ + 4157854441, + 205019738, + 4157854445, + 4157854444, + 205019739, + 9907745099, + 4145704191, + 4158725697, + 205019740 + ], + "geometry": [ + { "lat": 40.7080872, "lon": -73.9995644 }, + { "lat": 40.7079733, "lon": -73.9997720 }, + { "lat": 40.7078762, "lon": -73.9999460 }, + { "lat": 40.7077913, "lon": -74.0001075 }, + { "lat": 40.7076632, "lon": -74.0003616 }, + { "lat": 40.7075088, "lon": -74.0006737 }, + { "lat": 40.7073568, "lon": -74.0009807 }, + { "lat": 40.7072039, "lon": -74.0012739 }, + { "lat": 40.7070267, "lon": -74.0016215 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "lanes:bus": "1", + "lanes:bus:conditional": "Mo-Fri 14:00-20:00", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 414743429, + "bounds": { + "minlat": 40.7105184, + "minlon": -74.0036162, + "maxlat": 40.7109603, + "maxlon": -74.0029673 + }, + "nodes": [ + 4158673495, + 4158673494, + 4158677008, + 4158676993, + 4158676994, + 11349528718, + 5708185440, + 4158677009, + 11349528719, + 42448469 + ], + "geometry": [ + { "lat": 40.7105184, "lon": -74.0029673 }, + { "lat": 40.7106629, "lon": -74.0030742 }, + { "lat": 40.7107254, "lon": -74.0031367 }, + { "lat": 40.7107868, "lon": -74.0032173 }, + { "lat": 40.7109451, "lon": -74.0034618 }, + { "lat": 40.7109540, "lon": -74.0034904 }, + { "lat": 40.7109603, "lon": -74.0035213 }, + { "lat": 40.7109595, "lon": -74.0035430 }, + { "lat": 40.7109555, "lon": -74.0035813 }, + { "lat": 40.7109496, "lon": -74.0036162 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Frankfort Street", + "name:etymology:wikidata": "Q1794", + "name:ko": "프랭크포트 스트리트", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 414743582, + "bounds": { + "minlat": 40.7099073, + "minlon": -74.0029673, + "maxlat": 40.7105184, + "maxlon": -74.0021938 + }, + "nodes": [ + 4158673495, + 11345710770, + 479847979, + 12299575296 + ], + "geometry": [ + { "lat": 40.7105184, "lon": -74.0029673 }, + { "lat": 40.7101038, "lon": -74.0024423 }, + { "lat": 40.7100525, "lon": -74.0023784 }, + { "lat": 40.7099073, "lon": -74.0021938 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Frankfort Street", + "name:etymology:wikidata": "Q1794", + "name:ko": "프랭크포트 스트리트", + "parking:right:restriction": "no_stopping", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 414744167, + "bounds": { + "minlat": 40.7095707, + "minlon": -73.9984138, + "maxlat": 40.7113738, + "maxlon": -73.9963909 + }, + "nodes": [ + 5639814879, + 4158680468, + 3884569922, + 9740229432, + 3884569920, + 4158680469, + 42433322, + 42433321, + 42433320, + 42433318, + 42433315, + 42433313, + 1754823367, + 3884569923, + 588455870, + 1754823256, + 1754823328, + 42433309, + 42433308, + 42433306, + 11543763285, + 42433305, + 11543763286, + 42433303, + 1541937926, + 42433302 + ], + "geometry": [ + { "lat": 40.7097895, "lon": -73.9963909 }, + { "lat": 40.7097720, "lon": -73.9965010 }, + { "lat": 40.7096795, "lon": -73.9970892 }, + { "lat": 40.7096379, "lon": -73.9973530 }, + { "lat": 40.7096183, "lon": -73.9974760 }, + { "lat": 40.7095732, "lon": -73.9977674 }, + { "lat": 40.7095707, "lon": -73.9978428 }, + { "lat": 40.7095787, "lon": -73.9978977 }, + { "lat": 40.7096038, "lon": -73.9979636 }, + { "lat": 40.7096347, "lon": -73.9980076 }, + { "lat": 40.7096735, "lon": -73.9980370 }, + { "lat": 40.7097049, "lon": -73.9980505 }, + { "lat": 40.7098838, "lon": -73.9980997 }, + { "lat": 40.7099563, "lon": -73.9981211 }, + { "lat": 40.7100348, "lon": -73.9981439 }, + { "lat": 40.7104570, "lon": -73.9982673 }, + { "lat": 40.7109469, "lon": -73.9984100 }, + { "lat": 40.7109727, "lon": -73.9984138 }, + { "lat": 40.7110084, "lon": -73.9984131 }, + { "lat": 40.7110438, "lon": -73.9984045 }, + { "lat": 40.7110777, "lon": -73.9983894 }, + { "lat": 40.7111031, "lon": -73.9983678 }, + { "lat": 40.7111242, "lon": -73.9983303 }, + { "lat": 40.7111359, "lon": -73.9982889 }, + { "lat": 40.7113543, "lon": -73.9969086 }, + { "lat": 40.7113738, "lon": -73.9967842 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Slip", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 슬립", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 414744944, + "bounds": { + "minlat": 40.7097331, + "minlon": -74.0014490, + "maxlat": 40.7100562, + "maxlon": -74.0012106 + }, + "nodes": [ + 3884569924, + 4158707246, + 4158707243, + 5706568672 + ], + "geometry": [ + { "lat": 40.7100562, "lon": -74.0012106 }, + { "lat": 40.7100053, "lon": -74.0012473 }, + { "lat": 40.7099517, "lon": -74.0012870 }, + { "lat": 40.7097331, "lon": -74.0014490 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxheight": "12'7\"", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 414747619, + "bounds": { + "minlat": 40.7132065, + "minlon": -74.0026013, + "maxlat": 40.7142947, + "maxlon": -74.0008469 + }, + "nodes": [ + 7498248235, + 9369042166, + 9390090741, + 9390090740, + 42444305, + 9390090737, + 7476968850, + 9390090723, + 11393290113, + 4625583801, + 4878852021, + 42427290 + ], + "geometry": [ + { "lat": 40.7132065, "lon": -74.0008469 }, + { "lat": 40.7132489, "lon": -74.0008822 }, + { "lat": 40.7132886, "lon": -74.0009183 }, + { "lat": 40.7133278, "lon": -74.0009717 }, + { "lat": 40.7135180, "lon": -74.0012870 }, + { "lat": 40.7135543, "lon": -74.0013495 }, + { "lat": 40.7136115, "lon": -74.0014438 }, + { "lat": 40.7139118, "lon": -74.0019418 }, + { "lat": 40.7140348, "lon": -74.0021493 }, + { "lat": 40.7142139, "lon": -74.0024512 }, + { "lat": 40.7142560, "lon": -74.0025257 }, + { "lat": 40.7142947, "lon": -74.0026013 } + ], + "tags": { + "access": "no", + "bicycle": "dismount", + "foot": "yes", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "yes", + "surface": "paved", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 414749641, + "bounds": { + "minlat": 40.7126327, + "minlon": -74.0024501, + "maxlat": 40.7130104, + "maxlon": -74.0008309 + }, + "nodes": [ + 1773055862, + 4158789490, + 4158789497, + 1773055861, + 4158789499, + 4158789501, + 4158789494, + 588751599, + 4158786456, + 7476968854 + ], + "geometry": [ + { "lat": 40.7126327, "lon": -74.0024501 }, + { "lat": 40.7126451, "lon": -74.0024206 }, + { "lat": 40.7126625, "lon": -74.0023712 }, + { "lat": 40.7126847, "lon": -74.0023026 }, + { "lat": 40.7127041, "lon": -74.0022378 }, + { "lat": 40.7127232, "lon": -74.0021641 }, + { "lat": 40.7127422, "lon": -74.0020864 }, + { "lat": 40.7127640, "lon": -74.0019910 }, + { "lat": 40.7129959, "lon": -74.0009419 }, + { "lat": 40.7130104, "lon": -74.0008309 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "cycleway": "no", + "cycleway:right:oneway": "no", + "emergency": "designated", + "foot": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "10 mph", + "motor_vehicle": "private", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "old_name": "Chatham Street", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 414749642, + "bounds": { + "minlat": 40.7118493, + "minlon": -74.0009443, + "maxlat": 40.7130530, + "maxlon": -74.0009170 + }, + "nodes": [ + 4158786461, + 4158786456, + 11394594214, + 11394592648, + 4158786437, + 11396764747, + 4158786454 + ], + "geometry": [ + { "lat": 40.7130530, "lon": -74.0009443 }, + { "lat": 40.7129959, "lon": -74.0009419 }, + { "lat": 40.7129510, "lon": -74.0009431 }, + { "lat": 40.7128655, "lon": -74.0009395 }, + { "lat": 40.7127795, "lon": -74.0009379 }, + { "lat": 40.7122467, "lon": -74.0009259 }, + { "lat": 40.7118493, "lon": -74.0009170 } + ], + "tags": { + "access": "no", + "highway": "service", + "maxspeed": "25 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "service": "driveway", + "source": "Bing", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 414750042, + "bounds": { + "minlat": 40.7115917, + "minlon": -74.0024375, + "maxlat": 40.7117169, + "maxlon": -74.0008524 + }, + "nodes": [ + 278639868, + 4885904500, + 4158760595, + 11396764639, + 9369042224, + 4680481152, + 11396764684, + 4158760605, + 7477036740, + 7477036738 + ], + "geometry": [ + { "lat": 40.7115917, "lon": -74.0024375 }, + { "lat": 40.7116035, "lon": -74.0023610 }, + { "lat": 40.7116212, "lon": -74.0022505 }, + { "lat": 40.7116297, "lon": -74.0021676 }, + { "lat": 40.7116358, "lon": -74.0020831 }, + { "lat": 40.7116802, "lon": -74.0014272 }, + { "lat": 40.7117011, "lon": -74.0011154 }, + { "lat": 40.7117050, "lon": -74.0010578 }, + { "lat": 40.7117085, "lon": -74.0010071 }, + { "lat": 40.7117169, "lon": -74.0008524 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 414751458, + "bounds": { + "minlat": 40.7132575, + "minlon": -73.9984987, + "maxlat": 40.7134490, + "maxlon": -73.9982206 + }, + "nodes": [ + 4158807592, + 8827539964, + 11153640062, + 11504053990, + 588455743 + ], + "geometry": [ + { "lat": 40.7132575, "lon": -73.9982206 }, + { "lat": 40.7133669, "lon": -73.9983739 }, + { "lat": 40.7133875, "lon": -73.9984028 }, + { "lat": 40.7134189, "lon": -73.9984485 }, + { "lat": 40.7134490, "lon": -73.9984987 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Oliver Street", + "name:etymology:wikidata": "Q7087491", + "name:ko": "올리버 스트리트", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|right" + } +}, +{ + "type": "way", + "id": 414751576, + "bounds": { + "minlat": 40.7143955, + "minlon": -74.0021038, + "maxlat": 40.7151561, + "maxlon": -74.0005026 + }, + "nodes": [ + 42425955, + 6678001125, + 10583167613, + 12198027580, + 12198027581, + 4878851617, + 42427300 + ], + "geometry": [ + { "lat": 40.7143955, "lon": -74.0005026 }, + { "lat": 40.7144420, "lon": -74.0005958 }, + { "lat": 40.7147059, "lon": -74.0011476 }, + { "lat": 40.7150873, "lon": -74.0019583 }, + { "lat": 40.7151004, "lon": -74.0019865 }, + { "lat": 40.7151118, "lon": -74.0020108 }, + { "lat": 40.7151561, "lon": -74.0021038 } + ], + "tags": { + "alt_name": "Avenue of the Strongest", + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Worth Street", + "name:etymology:wikidata": "Q3568734", + "name:ko": "워스 스트리트", + "old_name": "Anthony Street", + "oneway": "no", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1318800", + "wikipedia": "en:Worth Street" + } +}, +{ + "type": "way", + "id": 414893144, + "bounds": { + "minlat": 40.7150640, + "minlon": -73.9968672, + "maxlat": 40.7155822, + "maxlon": -73.9965488 + }, + "nodes": [ + 12337075802, + 12196074927, + 4160352406, + 1773063789 + ], + "geometry": [ + { "lat": 40.7155822, "lon": -73.9965488 }, + { "lat": 40.7151512, "lon": -73.9968102 }, + { "lat": 40.7151162, "lon": -73.9968331 }, + { "lat": 40.7150640, "lon": -73.9968672 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 414894542, + "bounds": { + "minlat": 40.7141484, + "minlon": -73.9960850, + "maxlat": 40.7142307, + "maxlon": -73.9948397 + }, + "nodes": [ + 42453691, + 11496497638, + 5799599841, + 11496497636, + 11496497635, + 9910698777 + ], + "geometry": [ + { "lat": 40.7142285, "lon": -73.9948397 }, + { "lat": 40.7142293, "lon": -73.9949005 }, + { "lat": 40.7142302, "lon": -73.9949718 }, + { "lat": 40.7142307, "lon": -73.9950112 }, + { "lat": 40.7142263, "lon": -73.9950688 }, + { "lat": 40.7141484, "lon": -73.9960850 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxheight": "default", + "maxspeed": "20 mph", + "name": "Division Street", + "name:ko": "디비전 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "street_side", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 415619451, + "bounds": { + "minlat": 40.7445609, + "minlon": -73.9796825, + "maxlat": 40.7446775, + "maxlon": -73.9795955 + }, + "nodes": [ + 4166338961, + 8119462469, + 4166338962 + ], + "geometry": [ + { "lat": 40.7445609, "lon": -73.9796825 }, + { "lat": 40.7446167, "lon": -73.9796429 }, + { "lat": 40.7446775, "lon": -73.9795955 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 415849235, + "bounds": { + "minlat": 40.7471520, + "minlon": -73.9881935, + "maxlat": 40.7483045, + "maxlon": -73.9854903 + }, + "nodes": [ + 6223969260, + 6223969240, + 6223969262, + 9150486271, + 10173045237, + 42443680 + ], + "geometry": [ + { "lat": 40.7483045, "lon": -73.9881935 }, + { "lat": 40.7482551, "lon": -73.9880788 }, + { "lat": 40.7479942, "lon": -73.9874817 }, + { "lat": 40.7472342, "lon": -73.9856866 }, + { "lat": 40.7472091, "lon": -73.9856271 }, + { "lat": 40.7471520, "lon": -73.9854903 } + ], + "tags": { + "alt_name": "Korea Way", + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "West 32nd Street", + "name:ru": "Западная 32-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 415882710, + "bounds": { + "minlat": 40.7233722, + "minlon": -74.0213470, + "maxlat": 40.7274823, + "maxlon": -74.0077737 + }, + "nodes": [ + 4168253342, + 4168253339, + 4168253311, + 4168253348, + 4168253336, + 4168253318, + 4168253293, + 4168253330, + 4168253333, + 4168253345, + 4168253290, + 4168253347, + 4168253314, + 4168253310, + 4168253313, + 4168253322, + 4168253317, + 4168253312, + 596747502, + 4139489636, + 4139489638, + 4139489640, + 4139489639, + 4139489635, + 4139489637, + 246885877 + ], + "geometry": [ + { "lat": 40.7274823, "lon": -74.0213470 }, + { "lat": 40.7265353, "lon": -74.0157601 }, + { "lat": 40.7265066, "lon": -74.0155830 }, + { "lat": 40.7264836, "lon": -74.0154142 }, + { "lat": 40.7264672, "lon": -74.0152730 }, + { "lat": 40.7262502, "lon": -74.0128314 }, + { "lat": 40.7262085, "lon": -74.0125110 }, + { "lat": 40.7261769, "lon": -74.0123079 }, + { "lat": 40.7261264, "lon": -74.0120648 }, + { "lat": 40.7260582, "lon": -74.0117924 }, + { "lat": 40.7259919, "lon": -74.0115603 }, + { "lat": 40.7259423, "lon": -74.0113855 }, + { "lat": 40.7258765, "lon": -74.0112006 }, + { "lat": 40.7258216, "lon": -74.0110357 }, + { "lat": 40.7257373, "lon": -74.0108452 }, + { "lat": 40.7256244, "lon": -74.0106577 }, + { "lat": 40.7255298, "lon": -74.0105239 }, + { "lat": 40.7254018, "lon": -74.0103461 }, + { "lat": 40.7237331, "lon": -74.0081238 }, + { "lat": 40.7236915, "lon": -74.0080731 }, + { "lat": 40.7236424, "lon": -74.0080234 }, + { "lat": 40.7235912, "lon": -74.0079814 }, + { "lat": 40.7235089, "lon": -74.0079164 }, + { "lat": 40.7234560, "lon": -74.0078699 }, + { "lat": 40.7234116, "lon": -74.0078215 }, + { "lat": 40.7233722, "lon": -74.0077737 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hazmat": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "-1", + "lit": "24/7", + "maxaxles": "3", + "maxheight": "12'6\"", + "maxspeed": "35 mph", + "maxwidth": "8'", + "name": "Holland Tunnel", + "name:etymology:wikidata": "Q5133008", + "name:ko": "홀랜드 터널", + "old_name": "Hudson River Vehicular Tunnel", + "oneway": "yes", + "operator": "Port Authority of New York and New Jersey", + "ref": "I 78", + "sidewalk": "no", + "toll": "yes", + "tunnel": "yes", + "unsigned_ref": "I 78", + "wikidata": "Q125753", + "wikipedia": "en:Holland Tunnel" + } +}, +{ + "type": "way", + "id": 416618175, + "bounds": { + "minlat": 40.8465308, + "minlon": -73.9400565, + "maxlat": 40.8478420, + "maxlon": -73.9395229 + }, + "nodes": [ + 42427168, + 9566938943, + 11596488714, + 9566938954, + 42427164, + 9566938953, + 7604384330, + 42427159 + ], + "geometry": [ + { "lat": 40.8478420, "lon": -73.9395229 }, + { "lat": 40.8477831, "lon": -73.9395471 }, + { "lat": 40.8477519, "lon": -73.9395598 }, + { "lat": 40.8472743, "lon": -73.9397543 }, + { "lat": 40.8472122, "lon": -73.9397798 }, + { "lat": 40.8471511, "lon": -73.9398030 }, + { "lat": 40.8465923, "lon": -73.9400311 }, + { "lat": 40.8465308, "lon": -73.9400565 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 416618178, + "bounds": { + "minlat": 40.8789527, + "minlon": -73.9487968, + "maxlat": 40.8791186, + "maxlon": -73.9484618 + }, + "nodes": [ + 103105054, + 103106482 + ], + "geometry": [ + { "lat": 40.8791186, "lon": -73.9487968 }, + { "lat": 40.8789527, "lon": -73.9484618 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Palisade Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 418255420, + "bounds": { + "minlat": 40.7984774, + "minlon": -73.9194953, + "maxlat": 40.7987520, + "maxlon": -73.9188105 + }, + "nodes": [ + 4186937125, + 4186937126 + ], + "geometry": [ + { "lat": 40.7984774, "lon": -73.9188105 }, + { "lat": 40.7987520, "lon": -73.9194953 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "foot": "no", + "highway": "track", + "smoothness": "bad", + "surface": "mulch", + "tracktype": "grade4", + "width": "2" + } +}, +{ + "type": "way", + "id": 418256375, + "bounds": { + "minlat": 40.7963147, + "minlon": -73.9180395, + "maxlat": 40.7966003, + "maxlon": -73.9175193 + }, + "nodes": [ + 2054405680, + 9156856683, + 9156856682, + 9156856684, + 3843180751 + ], + "geometry": [ + { "lat": 40.7963147, "lon": -73.9175193 }, + { "lat": 40.7963505, "lon": -73.9175986 }, + { "lat": 40.7963863, "lon": -73.9176621 }, + { "lat": 40.7965523, "lon": -73.9179424 }, + { "lat": 40.7966003, "lon": -73.9180395 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "name": "Sunken Meadow Loop", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 418371676, + "bounds": { + "minlat": 40.8017886, + "minlon": -73.9610669, + "maxlat": 40.8106334, + "maxlon": -73.9571171 + }, + "nodes": [ + 42435359, + 7372610423, + 8379839211, + 4786589551, + 6990036159, + 11815639922, + 7202234794, + 11998058279, + 7099250754, + 11952891943, + 42431186, + 11986195412, + 6804416804, + 11952891933, + 42435360, + 11952891928, + 42435362, + 6804416829, + 6804416802, + 6804416801, + 6804416803, + 4941616074, + 6993998848, + 6781692068, + 1506445821, + 8379840021, + 7794274913, + 7794274912, + 7004422485, + 3579432159, + 7004321555, + 7794274914, + 11741886392, + 1506445789, + 11741886390, + 6907095262, + 6791440531, + 6907095259, + 8376008907, + 3579432160, + 7001614545, + 4188035934, + 6864814368, + 42435380, + 6791440543, + 1669455267, + 6250061772, + 6250061757, + 6250061759, + 6250061765, + 6250061754, + 6250061761, + 7794251548, + 7794251546, + 7794251547, + 6250061770, + 6791440561, + 3579432162 + ], + "geometry": [ + { "lat": 40.8017886, "lon": -73.9610669 }, + { "lat": 40.8018965, "lon": -73.9610370 }, + { "lat": 40.8021234, "lon": -73.9609597 }, + { "lat": 40.8022934, "lon": -73.9608983 }, + { "lat": 40.8024467, "lon": -73.9608500 }, + { "lat": 40.8028955, "lon": -73.9607030 }, + { "lat": 40.8031255, "lon": -73.9606276 }, + { "lat": 40.8035680, "lon": -73.9604732 }, + { "lat": 40.8036763, "lon": -73.9604371 }, + { "lat": 40.8039240, "lon": -73.9603470 }, + { "lat": 40.8039853, "lon": -73.9603251 }, + { "lat": 40.8040882, "lon": -73.9602908 }, + { "lat": 40.8043144, "lon": -73.9602153 }, + { "lat": 40.8046569, "lon": -73.9600964 }, + { "lat": 40.8047082, "lon": -73.9600770 }, + { "lat": 40.8047888, "lon": -73.9600489 }, + { "lat": 40.8054325, "lon": -73.9598246 }, + { "lat": 40.8055128, "lon": -73.9597984 }, + { "lat": 40.8055613, "lon": -73.9597701 }, + { "lat": 40.8056186, "lon": -73.9597281 }, + { "lat": 40.8057239, "lon": -73.9596480 }, + { "lat": 40.8058883, "lon": -73.9595285 }, + { "lat": 40.8060312, "lon": -73.9594185 }, + { "lat": 40.8060778, "lon": -73.9593850 }, + { "lat": 40.8061125, "lon": -73.9593600 }, + { "lat": 40.8061917, "lon": -73.9593036 }, + { "lat": 40.8064255, "lon": -73.9591348 }, + { "lat": 40.8067415, "lon": -73.9589049 }, + { "lat": 40.8073540, "lon": -73.9584545 }, + { "lat": 40.8074173, "lon": -73.9584103 }, + { "lat": 40.8074675, "lon": -73.9583722 }, + { "lat": 40.8077625, "lon": -73.9581612 }, + { "lat": 40.8079932, "lon": -73.9579855 }, + { "lat": 40.8080286, "lon": -73.9579584 }, + { "lat": 40.8081061, "lon": -73.9579096 }, + { "lat": 40.8081605, "lon": -73.9578753 }, + { "lat": 40.8082719, "lon": -73.9578159 }, + { "lat": 40.8084327, "lon": -73.9577375 }, + { "lat": 40.8085613, "lon": -73.9576706 }, + { "lat": 40.8086658, "lon": -73.9576175 }, + { "lat": 40.8087490, "lon": -73.9575727 }, + { "lat": 40.8090581, "lon": -73.9574185 }, + { "lat": 40.8093447, "lon": -73.9572755 }, + { "lat": 40.8093981, "lon": -73.9572467 }, + { "lat": 40.8094516, "lon": -73.9572178 }, + { "lat": 40.8095061, "lon": -73.9571916 }, + { "lat": 40.8095879, "lon": -73.9571535 }, + { "lat": 40.8096669, "lon": -73.9571279 }, + { "lat": 40.8097726, "lon": -73.9571171 }, + { "lat": 40.8098839, "lon": -73.9571264 }, + { "lat": 40.8099792, "lon": -73.9571574 }, + { "lat": 40.8101116, "lon": -73.9572426 }, + { "lat": 40.8101589, "lon": -73.9572895 }, + { "lat": 40.8102093, "lon": -73.9573444 }, + { "lat": 40.8102566, "lon": -73.9574094 }, + { "lat": 40.8102912, "lon": -73.9574838 }, + { "lat": 40.8105786, "lon": -73.9581429 }, + { "lat": 40.8106334, "lon": -73.9582686 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Morningside Drive", + "name:ru": "Морнингсайд-драйв", + "old_name": "Morningside Park West", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q6912985", + "wikipedia": "en:Morningside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 419922376, + "bounds": { + "minlat": 40.7606499, + "minlon": -73.9631052, + "maxlat": 40.7607632, + "maxlon": -73.9629008 + }, + "nodes": [ + 3785582163, + 4199108058, + 12899701018, + 4199098159 + ], + "geometry": [ + { "lat": 40.7606499, "lon": -73.9629008 }, + { "lat": 40.7606900, "lon": -73.9630009 }, + { "lat": 40.7607163, "lon": -73.9630492 }, + { "lat": 40.7607632, "lon": -73.9631052 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420276995, + "bounds": { + "minlat": 40.7705246, + "minlon": -73.9820496, + "maxlat": 40.7713507, + "maxlon": -73.9820391 + }, + "nodes": [ + 1061531509, + 7515977399, + 11306331975, + 1061531447 + ], + "geometry": [ + { "lat": 40.7705246, "lon": -73.9820391 }, + { "lat": 40.7706027, "lon": -73.9820452 }, + { "lat": 40.7712704, "lon": -73.9820487 }, + { "lat": 40.7713507, "lon": -73.9820496 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 420276996, + "bounds": { + "minlat": 40.7699178, + "minlon": -73.9820391, + "maxlat": 40.7705246, + "maxlon": -73.9805837 + }, + "nodes": [ + 5706568625, + 7837165549, + 10581453366, + 7630577059, + 7630577052, + 7515977395, + 1061531509 + ], + "geometry": [ + { "lat": 40.7699178, "lon": -73.9805837 }, + { "lat": 40.7699606, "lon": -73.9806859 }, + { "lat": 40.7702258, "lon": -73.9813224 }, + { "lat": 40.7703123, "lon": -73.9815300 }, + { "lat": 40.7704021, "lon": -73.9817452 }, + { "lat": 40.7704725, "lon": -73.9819130 }, + { "lat": 40.7705246, "lon": -73.9820391 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 62nd Street", + "name:ru": "Западная 62-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 420281338, + "bounds": { + "minlat": 40.7597325, + "minlon": -73.9758441, + "maxlat": 40.7604084, + "maxlon": -73.9742310 + }, + "nodes": [ + 42436701, + 10170605882, + 3977886248, + 42436700 + ], + "geometry": [ + { "lat": 40.7597325, "lon": -73.9742310 }, + { "lat": 40.7597783, "lon": -73.9743408 }, + { "lat": 40.7603581, "lon": -73.9757267 }, + { "lat": 40.7604084, "lon": -73.9758441 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "East 53rd Street", + "name:ru": "Восточная 53-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420281339, + "bounds": { + "minlat": 40.7597325, + "minlon": -73.9742310, + "maxlat": 40.7603711, + "maxlon": -73.9737664 + }, + "nodes": [ + 42436701, + 3977886242, + 13707001848, + 3977886246, + 42445936 + ], + "geometry": [ + { "lat": 40.7597325, "lon": -73.9742310 }, + { "lat": 40.7597990, "lon": -73.9741842 }, + { "lat": 40.7600877, "lon": -73.9739733 }, + { "lat": 40.7603118, "lon": -73.9738095 }, + { "lat": 40.7603711, "lon": -73.9737664 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete", + "surface": "asphalt", + "turn:lanes": "|through||", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 420300348, + "bounds": { + "minlat": 40.8301832, + "minlon": -73.9108058, + "maxlat": 40.8307370, + "maxlon": -73.9104900 + }, + "nodes": [ + 42759462, + 13031144549, + 4202385772 + ], + "geometry": [ + { "lat": 40.8307370, "lon": -73.9104900 }, + { "lat": 40.8306655, "lon": -73.9105308 }, + { "lat": 40.8301832, "lon": -73.9108058 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "Webster Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "turn:lanes:backward": "left||", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 420302270, + "bounds": { + "minlat": 40.7529697, + "minlon": -73.9106080, + "maxlat": 40.7529814, + "maxlon": -73.9102410 + }, + "nodes": [ + 3938728149, + 9188971690, + 8088629343, + 1904847201 + ], + "geometry": [ + { "lat": 40.7529814, "lon": -73.9106080 }, + { "lat": 40.7529758, "lon": -73.9105127 }, + { "lat": 40.7529714, "lon": -73.9103768 }, + { "lat": 40.7529697, "lon": -73.9102410 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "flex_post", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420302273, + "bounds": { + "minlat": 40.7529697, + "minlon": -73.9102410, + "maxlat": 40.7529918, + "maxlon": -73.9097693 + }, + "nodes": [ + 1904847201, + 8088629342, + 9188971683, + 5357878515, + 7762260246 + ], + "geometry": [ + { "lat": 40.7529697, "lon": -73.9102410 }, + { "lat": 40.7529739, "lon": -73.9100521 }, + { "lat": 40.7529758, "lon": -73.9099968 }, + { "lat": 40.7529828, "lon": -73.9098798 }, + { "lat": 40.7529918, "lon": -73.9097693 } + ], + "tags": { + "cycleway": "lane", + "hgv": "designated", + "highway": "primary", + "lanes:backward": "3", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420302286, + "bounds": { + "minlat": 40.8307370, + "minlon": -73.9104900, + "maxlat": 40.8319569, + "maxlon": -73.9098034 + }, + "nodes": [ + 4202402635, + 7044464264, + 13729917794, + 13729917785, + 13031288244, + 42759462 + ], + "geometry": [ + { "lat": 40.8319569, "lon": -73.9098034 }, + { "lat": 40.8318507, "lon": -73.9098631 }, + { "lat": 40.8317535, "lon": -73.9099178 }, + { "lat": 40.8315484, "lon": -73.9100333 }, + { "lat": 40.8308201, "lon": -73.9104432 }, + { "lat": 40.8307370, "lon": -73.9104900 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "Webster Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 420302287, + "bounds": { + "minlat": 40.8362675, + "minlon": -73.9074050, + "maxlat": 40.8366945, + "maxlon": -73.9071281 + }, + "nodes": [ + 4202402637, + 10126902018, + 42739165 + ], + "geometry": [ + { "lat": 40.8366945, "lon": -73.9071281 }, + { "lat": 40.8363238, "lon": -73.9073669 }, + { "lat": 40.8362675, "lon": -73.9074050 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "Webster Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "turn:lanes:forward": "left||", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 420302295, + "bounds": { + "minlat": 40.8322810, + "minlon": -73.9096210, + "maxlat": 40.8327428, + "maxlon": -73.9093618 + }, + "nodes": [ + 4202402636, + 10126902004, + 42742454 + ], + "geometry": [ + { "lat": 40.8327428, "lon": -73.9093618 }, + { "lat": 40.8323692, "lon": -73.9095715 }, + { "lat": 40.8322810, "lon": -73.9096210 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "Webster Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "turn:lanes:forward": "left||", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 420302303, + "bounds": { + "minlat": 40.8372180, + "minlon": -73.9068033, + "maxlat": 40.8385050, + "maxlon": -73.9059710 + }, + "nodes": [ + 10126902031, + 12038123081, + 7300870344, + 10126902016, + 42763602 + ], + "geometry": [ + { "lat": 40.8372180, "lon": -73.9068033 }, + { "lat": 40.8373025, "lon": -73.9067133 }, + { "lat": 40.8373597, "lon": -73.9066524 }, + { "lat": 40.8383913, "lon": -73.9059710 }, + { "lat": 40.8385050, "lon": -73.9059790 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "Webster Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 420302305, + "bounds": { + "minlat": 40.8351889, + "minlon": -73.9079570, + "maxlat": 40.8362675, + "maxlon": -73.9073958 + }, + "nodes": [ + 7168210396, + 8711959826, + 10126902020, + 9832626700, + 42739165 + ], + "geometry": [ + { "lat": 40.8351889, "lon": -73.9079570 }, + { "lat": 40.8354767, "lon": -73.9077987 }, + { "lat": 40.8361537, "lon": -73.9073996 }, + { "lat": 40.8361601, "lon": -73.9073958 }, + { "lat": 40.8362675, "lon": -73.9074050 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "Webster Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 420304312, + "bounds": { + "minlat": 40.7558105, + "minlon": -73.9358181, + "maxlat": 40.7612202, + "maxlon": -73.9305723 + }, + "nodes": [ + 42818542, + 6452521769, + 13701510903, + 6452554390, + 42818549, + 6452554391, + 8699111824, + 8699111935, + 42818555, + 8699111911, + 42818558, + 8699111835, + 6452683685, + 42818563, + 6452683686, + 3569401987, + 42815799, + 11699225535, + 5487928036, + 5031422309, + 42818567 + ], + "geometry": [ + { "lat": 40.7612202, "lon": -73.9305723 }, + { "lat": 40.7611597, "lon": -73.9306244 }, + { "lat": 40.7604319, "lon": -73.9313242 }, + { "lat": 40.7598312, "lon": -73.9319017 }, + { "lat": 40.7597514, "lon": -73.9319785 }, + { "lat": 40.7596909, "lon": -73.9320391 }, + { "lat": 40.7592628, "lon": -73.9324470 }, + { "lat": 40.7591447, "lon": -73.9325581 }, + { "lat": 40.7590324, "lon": -73.9326639 }, + { "lat": 40.7589260, "lon": -73.9327687 }, + { "lat": 40.7588109, "lon": -73.9328810 }, + { "lat": 40.7587008, "lon": -73.9329860 }, + { "lat": 40.7583616, "lon": -73.9333146 }, + { "lat": 40.7582926, "lon": -73.9333798 }, + { "lat": 40.7582333, "lon": -73.9334330 }, + { "lat": 40.7570165, "lon": -73.9345983 }, + { "lat": 40.7569568, "lon": -73.9346560 }, + { "lat": 40.7568970, "lon": -73.9347122 }, + { "lat": 40.7562018, "lon": -73.9354192 }, + { "lat": 40.7558705, "lon": -73.9357537 }, + { "lat": 40.7558105, "lon": -73.9358181 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420304313, + "bounds": { + "minlat": 40.7612202, + "minlon": -73.9305723, + "maxlat": 40.7615598, + "maxlon": -73.9302574 + }, + "nodes": [ + 4202420427, + 7380188035, + 6452521766, + 42818542 + ], + "geometry": [ + { "lat": 40.7615598, "lon": -73.9302574 }, + { "lat": 40.7613954, "lon": -73.9304146 }, + { "lat": 40.7613085, "lon": -73.9304970 }, + { "lat": 40.7612202, "lon": -73.9305723 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 420305543, + "bounds": { + "minlat": 40.8363937, + "minlon": -73.9158711, + "maxlat": 40.8368965, + "maxlon": -73.9153826 + }, + "nodes": [ + 4202444589, + 13534990444, + 13038884611, + 42741378 + ], + "geometry": [ + { "lat": 40.8368965, "lon": -73.9153826 }, + { "lat": 40.8365039, "lon": -73.9157647 }, + { "lat": 40.8364604, "lon": -73.9158065 }, + { "lat": 40.8363937, "lon": -73.9158711 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420305544, + "bounds": { + "minlat": 40.8356057, + "minlon": -73.9166403, + "maxlat": 40.8358757, + "maxlon": -73.9163728 + }, + "nodes": [ + 4207900887, + 13534990438 + ], + "geometry": [ + { "lat": 40.8358757, "lon": -73.9163728 }, + { "lat": 40.8356057, "lon": -73.9166403 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420306125, + "bounds": { + "minlat": 40.7497139, + "minlon": -73.9250271, + "maxlat": 40.7516392, + "maxlon": -73.9246403 + }, + "nodes": [ + 4202449333, + 277032734 + ], + "geometry": [ + { "lat": 40.7516392, "lon": -73.9246403 }, + { "lat": 40.7497139, "lon": -73.9250271 } + ], + "tags": { + "bridge": "yes", + "cycleway": "lane", + "cycleway:left:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:forward": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "39th Street", + "parking:lane:both": "no_parking", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 420306126, + "bounds": { + "minlat": 40.7476694, + "minlon": -73.9254373, + "maxlat": 40.7480861, + "maxlon": -73.9253533 + }, + "nodes": [ + 4202449332, + 42932836 + ], + "geometry": [ + { "lat": 40.7480861, "lon": -73.9253533 }, + { "lat": 40.7476694, "lon": -73.9254373 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "39th Street", + "parking:lane:both": "no_parking", + "surface": "asphalt", + "turn:lanes:forward": "through|right" + } +}, +{ + "type": "way", + "id": 420306201, + "bounds": { + "minlat": 40.8419287, + "minlon": -73.9123653, + "maxlat": 40.8423207, + "maxlon": -73.9122334 + }, + "nodes": [ + 4202450568, + 2408355552 + ], + "geometry": [ + { "lat": 40.8423207, "lon": -73.9122334 }, + { "lat": 40.8419287, "lon": -73.9123653 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420306202, + "bounds": { + "minlat": 40.8432632, + "minlon": -73.9119223, + "maxlat": 40.8437884, + "maxlon": -73.9117415 + }, + "nodes": [ + 4202450569, + 7823245732, + 42741344 + ], + "geometry": [ + { "lat": 40.8437884, "lon": -73.9117415 }, + { "lat": 40.8433364, "lon": -73.9118960 }, + { "lat": 40.8432632, "lon": -73.9119223 } + ], + "tags": { + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420306203, + "bounds": { + "minlat": 40.8423207, + "minlon": -73.9122334, + "maxlat": 40.8430827, + "maxlon": -73.9119833 + }, + "nodes": [ + 2408354088, + 12739871615, + 4202450568 + ], + "geometry": [ + { "lat": 40.8430827, "lon": -73.9119833 }, + { "lat": 40.8430018, "lon": -73.9120099 }, + { "lat": 40.8423207, "lon": -73.9122334 } + ], + "tags": { + "destination:lanes:backward": "Deegan Expressway;Cross Bronx Expressway;George Washington Bridge|none|none", + "destination:ref:lanes:backward": "I 87;I 95|none|none", + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420306204, + "bounds": { + "minlat": 40.8430827, + "minlon": -73.9119833, + "maxlat": 40.8432632, + "maxlon": -73.9119223 + }, + "nodes": [ + 42741344, + 2408354088 + ], + "geometry": [ + { "lat": 40.8432632, "lon": -73.9119223 }, + { "lat": 40.8430827, "lon": -73.9119833 } + ], + "tags": { + "foot": "no", + "hgv": "destination", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420307437, + "bounds": { + "minlat": 40.7667528, + "minlon": -73.9259732, + "maxlat": 40.7670685, + "maxlon": -73.9258260 + }, + "nodes": [ + 4202470458, + 6452892495, + 42818511 + ], + "geometry": [ + { "lat": 40.7670685, "lon": -73.9258260 }, + { "lat": 40.7668106, "lon": -73.9259473 }, + { "lat": 40.7667528, "lon": -73.9259732 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "fixme": "investigate turn:lanes following construction of bike path and reduction in car lanes", + "highway": "tertiary", + "lanes": "1", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420307439, + "bounds": { + "minlat": 40.7670685, + "minlon": -73.9258260, + "maxlat": 40.7686366, + "maxlon": -73.9250866 + }, + "nodes": [ + 42818504, + 6452895154, + 8586220435, + 42810491, + 8586220437, + 42810482, + 6908633269, + 4202470458 + ], + "geometry": [ + { "lat": 40.7686366, "lon": -73.9250866 }, + { "lat": 40.7685636, "lon": -73.9251286 }, + { "lat": 40.7680176, "lon": -73.9253807 }, + { "lat": 40.7679066, "lon": -73.9254285 }, + { "lat": 40.7678461, "lon": -73.9254573 }, + { "lat": 40.7676894, "lon": -73.9255366 }, + { "lat": 40.7673337, "lon": -73.9257018 }, + { "lat": 40.7670685, "lon": -73.9258260 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420307979, + "bounds": { + "minlat": 40.7744328, + "minlon": -73.9230165, + "maxlat": 40.7753908, + "maxlon": -73.9223173 + }, + "nodes": [ + 42897243, + 6452989063, + 5104280925, + 2447553708, + 7714984375, + 42826008 + ], + "geometry": [ + { "lat": 40.7744328, "lon": -73.9223173 }, + { "lat": 40.7745033, "lon": -73.9223639 }, + { "lat": 40.7747542, "lon": -73.9225508 }, + { "lat": 40.7752374, "lon": -73.9229256 }, + { "lat": 40.7752926, "lon": -73.9229626 }, + { "lat": 40.7753908, "lon": -73.9230165 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "left|left|through;right" + } +}, +{ + "type": "way", + "id": 420308723, + "bounds": { + "minlat": 40.7722511, + "minlon": -73.9263614, + "maxlat": 40.7723022, + "maxlon": -73.9259342 + }, + "nodes": [ + 2297358950, + 5104280929, + 3570422551, + 2063038040 + ], + "geometry": [ + { "lat": 40.7723022, "lon": -73.9263614 }, + { "lat": 40.7722823, "lon": -73.9261951 }, + { "lat": 40.7722692, "lon": -73.9260858 }, + { "lat": 40.7722511, "lon": -73.9259342 } + ], + "tags": { + "alt_name": "Astoria Boulevard South", + "hgv": "local", + "highway": "secondary", + "name": "Astoria Boulevard", + "oneway": "no", + "turn:lanes:forward": "left|", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 420311019, + "bounds": { + "minlat": 40.8237152, + "minlon": -73.9122075, + "maxlat": 40.8239297, + "maxlon": -73.9114585 + }, + "nodes": [ + 42748177, + 9917683072, + 471221452, + 9917683071, + 9917683070, + 9917683069, + 9917683068, + 471221394, + 4202516474 + ], + "geometry": [ + { "lat": 40.8237172, "lon": -73.9122075 }, + { "lat": 40.8237152, "lon": -73.9121526 }, + { "lat": 40.8237174, "lon": -73.9120908 }, + { "lat": 40.8237250, "lon": -73.9120313 }, + { "lat": 40.8237356, "lon": -73.9119716 }, + { "lat": 40.8237495, "lon": -73.9119160 }, + { "lat": 40.8237669, "lon": -73.9118588 }, + { "lat": 40.8237830, "lon": -73.9118117 }, + { "lat": 40.8239297, "lon": -73.9114585 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Elton Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Elton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through|" + } +}, +{ + "type": "way", + "id": 420311021, + "bounds": { + "minlat": 40.8288733, + "minlon": -73.9115553, + "maxlat": 40.8291428, + "maxlon": -73.9113991 + }, + "nodes": [ + 42764732, + 13031077592, + 42764695 + ], + "geometry": [ + { "lat": 40.8291428, "lon": -73.9113991 }, + { "lat": 40.8290847, "lon": -73.9114328 }, + { "lat": 40.8288733, "lon": -73.9115553 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "3", + "lanes:bus:backward": "1", + "name": "Webster Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "turn:lanes:backward": "left||", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 420314400, + "bounds": { + "minlat": 40.8506445, + "minlon": -73.9153894, + "maxlat": 40.8510470, + "maxlon": -73.9148730 + }, + "nodes": [ + 42768178, + 4202525794, + 11794372940, + 12697058594 + ], + "geometry": [ + { "lat": 40.8510470, "lon": -73.9148730 }, + { "lat": 40.8508640, "lon": -73.9151117 }, + { "lat": 40.8507670, "lon": -73.9152344 }, + { "lat": 40.8506445, "lon": -73.9153894 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420314403, + "bounds": { + "minlat": 40.8510470, + "minlon": -73.9148730, + "maxlat": 40.8537388, + "maxlon": -73.9122914 + }, + "nodes": [ + 42743990, + 2808821754, + 2323868485, + 2323868473, + 2323868469, + 42768178 + ], + "geometry": [ + { "lat": 40.8537388, "lon": -73.9122914 }, + { "lat": 40.8536367, "lon": -73.9123481 }, + { "lat": 40.8534182, "lon": -73.9124822 }, + { "lat": 40.8531426, "lon": -73.9127078 }, + { "lat": 40.8515872, "lon": -73.9143704 }, + { "lat": 40.8510470, "lon": -73.9148730 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "cycleway:left:width": "6'", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "name_1": "University Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420317458, + "bounds": { + "minlat": 40.8478175, + "minlon": -73.9075305, + "maxlat": 40.8482163, + "maxlon": -73.9071104 + }, + "nodes": [ + 4202561247, + 12798385475, + 42741319 + ], + "geometry": [ + { "lat": 40.8482163, "lon": -73.9071104 }, + { "lat": 40.8478816, "lon": -73.9074631 }, + { "lat": 40.8478175, "lon": -73.9075305 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420317498, + "bounds": { + "minlat": 40.8482163, + "minlon": -73.9071104, + "maxlat": 40.8489050, + "maxlon": -73.9064762 + }, + "nodes": [ + 4202561248, + 2028383640, + 12798385413, + 42741316, + 12798385410, + 13038757919, + 4202561247 + ], + "geometry": [ + { "lat": 40.8489050, "lon": -73.9064762 }, + { "lat": 40.8488345, "lon": -73.9065352 }, + { "lat": 40.8486050, "lon": -73.9067264 }, + { "lat": 40.8485504, "lon": -73.9067769 }, + { "lat": 40.8484987, "lon": -73.9068272 }, + { "lat": 40.8484614, "lon": -73.9068612 }, + { "lat": 40.8482163, "lon": -73.9071104 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420317591, + "bounds": { + "minlat": 40.7272103, + "minlon": -73.9079110, + "maxlat": 40.7275108, + "maxlon": -73.9074125 + }, + "nodes": [ + 4202569191, + 11925728879, + 42901476 + ], + "geometry": [ + { "lat": 40.7275108, "lon": -73.9079110 }, + { "lat": 40.7272706, "lon": -73.9075125 }, + { "lat": 40.7272103, "lon": -73.9074125 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "left;through|through|right" + } +}, +{ + "type": "way", + "id": 420317593, + "bounds": { + "minlat": 40.7274057, + "minlon": -73.9067300, + "maxlat": 40.7277330, + "maxlon": -73.9060969 + }, + "nodes": [ + 4202569190, + 10693980325, + 42801650 + ], + "geometry": [ + { "lat": 40.7274057, "lon": -73.9060969 }, + { "lat": 40.7276896, "lon": -73.9066420 }, + { "lat": 40.7277330, "lon": -73.9067300 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Queens-Midtown Expressway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A64", + "tiger:county": "Queens, NY", + "tiger:name_base": "Long Island Exwy Service Road", + "tiger:reviewed": "no", + "turn:lanes": "left|through|through|right" + } +}, +{ + "type": "way", + "id": 420318607, + "bounds": { + "minlat": 40.7226210, + "minlon": -73.9133210, + "maxlat": 40.7230820, + "maxlon": -73.9131700 + }, + "nodes": [ + 4396956982, + 9696553959, + 11055680677, + 42854204 + ], + "geometry": [ + { "lat": 40.7226210, "lon": -73.9133210 }, + { "lat": 40.7229471, "lon": -73.9132125 }, + { "lat": 40.7229934, "lon": -73.9131979 }, + { "lat": 40.7230820, "lon": -73.9131700 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "57th Place", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "57th", + "tiger:name_type": "Pl", + "tiger:reviewed": "name", + "turn:lanes:forward": "right" + } +}, +{ + "type": "way", + "id": 420318608, + "bounds": { + "minlat": 40.7242570, + "minlon": -73.9125050, + "maxlat": 40.7246625, + "maxlon": -73.9124376 + }, + "nodes": [ + 4202566038, + 11406248217, + 42902805 + ], + "geometry": [ + { "lat": 40.7246625, "lon": -73.9124376 }, + { "lat": 40.7243158, "lon": -73.9124952 }, + { "lat": 40.7242570, "lon": -73.9125050 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "58th Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 420318609, + "bounds": { + "minlat": 40.7232341, + "minlon": -73.9126835, + "maxlat": 40.7235467, + "maxlon": -73.9126330 + }, + "nodes": [ + 2776604937, + 7963468583, + 7963480195, + 42854207 + ], + "geometry": [ + { "lat": 40.7235467, "lon": -73.9126330 }, + { "lat": 40.7233724, "lon": -73.9126835 }, + { "lat": 40.7232978, "lon": -73.9126710 }, + { "lat": 40.7232341, "lon": -73.9126493 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "58th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 420318611, + "bounds": { + "minlat": 40.7246625, + "minlon": -73.9124376, + "maxlat": 40.7263260, + "maxlon": -73.9121610 + }, + "nodes": [ + 42908364, + 5481967486, + 7134903130, + 7134903127, + 8509344394, + 8509344400, + 4202566038 + ], + "geometry": [ + { "lat": 40.7263260, "lon": -73.9121610 }, + { "lat": 40.7257183, "lon": -73.9122620 }, + { "lat": 40.7254117, "lon": -73.9123130 }, + { "lat": 40.7253313, "lon": -73.9123264 }, + { "lat": 40.7248391, "lon": -73.9124082 }, + { "lat": 40.7246727, "lon": -73.9124359 }, + { "lat": 40.7246625, "lon": -73.9124376 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "58th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420318612, + "bounds": { + "minlat": 40.7230820, + "minlon": -73.9131700, + "maxlat": 40.7232341, + "maxlon": -73.9126493 + }, + "nodes": [ + 42854204, + 42854207 + ], + "geometry": [ + { "lat": 40.7230820, "lon": -73.9131700 }, + { "lat": 40.7232341, "lon": -73.9126493 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Maspeth Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Maspeth", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378", + "turn:lanes:forward": "through;right" + } +}, +{ + "type": "way", + "id": 420319041, + "bounds": { + "minlat": 40.7186871, + "minlon": -73.9078926, + "maxlat": 40.7188373, + "maxlon": -73.9076240 + }, + "nodes": [ + 4202574178, + 597676800 + ], + "geometry": [ + { "lat": 40.7186871, "lon": -73.9078926 }, + { "lat": 40.7188373, "lon": -73.9076240 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Flushing Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 420319042, + "bounds": { + "minlat": 40.7184462, + "minlon": -73.9083288, + "maxlat": 40.7186871, + "maxlon": -73.9078926 + }, + "nodes": [ + 2996303645, + 4202574178 + ], + "geometry": [ + { "lat": 40.7184462, "lon": -73.9083288 }, + { "lat": 40.7186871, "lon": -73.9078926 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Flushing Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 420319043, + "bounds": { + "minlat": 40.7145056, + "minlon": -73.9140988, + "maxlat": 40.7150716, + "maxlon": -73.9132554 + }, + "nodes": [ + 4202574177, + 9759984070, + 42881149, + 9598979210, + 42881151 + ], + "geometry": [ + { "lat": 40.7145056, "lon": -73.9140988 }, + { "lat": 40.7148537, "lon": -73.9135548 }, + { "lat": 40.7148839, "lon": -73.9135133 }, + { "lat": 40.7149115, "lon": -73.9134755 }, + { "lat": 40.7150716, "lon": -73.9132554 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "turn:lanes:forward": "left|", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 420319044, + "bounds": { + "minlat": 40.7196241, + "minlon": -73.9113211, + "maxlat": 40.7197698, + "maxlon": -73.9107974 + }, + "nodes": [ + 42871307, + 9759975638, + 11003420585, + 11003420599, + 4202574179 + ], + "geometry": [ + { "lat": 40.7196241, "lon": -73.9113211 }, + { "lat": 40.7196453, "lon": -73.9112426 }, + { "lat": 40.7196608, "lon": -73.9111889 }, + { "lat": 40.7197434, "lon": -73.9108923 }, + { "lat": 40.7197698, "lon": -73.9107974 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Grand Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "turn:lanes:backward": "left|", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 420319045, + "bounds": { + "minlat": 40.7193480, + "minlon": -73.9123210, + "maxlat": 40.7196241, + "maxlon": -73.9113211 + }, + "nodes": [ + 42871299, + 9759966677, + 5176490253, + 9759984242, + 42871307 + ], + "geometry": [ + { "lat": 40.7193480, "lon": -73.9123210 }, + { "lat": 40.7193740, "lon": -73.9122269 }, + { "lat": 40.7195899, "lon": -73.9114444 }, + { "lat": 40.7195968, "lon": -73.9114182 }, + { "lat": 40.7196241, "lon": -73.9113211 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Grand Avenue", + "oneway": "no", + "turn:lanes:backward": "left|", + "turn:lanes:forward": "left|", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 420322351, + "bounds": { + "minlat": 40.7106191, + "minlon": -73.9550673, + "maxlat": 40.7106705, + "maxlon": -73.9544783 + }, + "nodes": [ + 8842568890, + 4202609196, + 8842929728, + 4209420712 + ], + "geometry": [ + { "lat": 40.7106705, "lon": -73.9544783 }, + { "lat": 40.7106593, "lon": -73.9546370 }, + { "lat": 40.7106254, "lon": -73.9549915 }, + { "lat": 40.7106191, "lon": -73.9550673 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base_1": "Borinquen", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 420322356, + "bounds": { + "minlat": 40.7104253, + "minlon": -73.9561284, + "maxlat": 40.7104805, + "maxlon": -73.9556377 + }, + "nodes": [ + 4202609195, + 479847986 + ], + "geometry": [ + { "lat": 40.7104253, "lon": -73.9561284 }, + { "lat": 40.7104805, "lon": -73.9556377 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 420351718, + "bounds": { + "minlat": 40.7216715, + "minlon": -73.9855447, + "maxlat": 40.7219214, + "maxlon": -73.9847057 + }, + "nodes": [ + 1919595924, + 8307642248, + 4202899500, + 8821475426, + 3783146179, + 1919595910 + ], + "geometry": [ + { "lat": 40.7219214, "lon": -73.9855447 }, + { "lat": 40.7218975, "lon": -73.9854684 }, + { "lat": 40.7217682, "lon": -73.9850356 }, + { "lat": 40.7217103, "lon": -73.9848389 }, + { "lat": 40.7216951, "lon": -73.9847880 }, + { "lat": 40.7216715, "lon": -73.9847057 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420351719, + "bounds": { + "minlat": 40.7209451, + "minlon": -73.9821197, + "maxlat": 40.7210194, + "maxlon": -73.9818702 + }, + "nodes": [ + 4202899497, + 3783071112 + ], + "geometry": [ + { "lat": 40.7209451, "lon": -73.9818702 }, + { "lat": 40.7210194, "lon": -73.9821197 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420351720, + "bounds": { + "minlat": 40.7214151, + "minlon": -73.9844204, + "maxlat": 40.7215866, + "maxlon": -73.9838696 + }, + "nodes": [ + 4202899498, + 3783146165, + 1919595921 + ], + "geometry": [ + { "lat": 40.7215866, "lon": -73.9844204 }, + { "lat": 40.7214460, "lon": -73.9839649 }, + { "lat": 40.7214151, "lon": -73.9838696 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420351721, + "bounds": { + "minlat": 40.7217853, + "minlon": -73.9851667, + "maxlat": 40.7219426, + "maxlon": -73.9846444 + }, + "nodes": [ + 42447435, + 3783146171, + 9181587098 + ], + "geometry": [ + { "lat": 40.7217853, "lon": -73.9846444 }, + { "lat": 40.7218113, "lon": -73.9847289 }, + { "lat": 40.7219426, "lon": -73.9851667 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420351722, + "bounds": { + "minlat": 40.7215866, + "minlon": -73.9847057, + "maxlat": 40.7216715, + "maxlon": -73.9844204 + }, + "nodes": [ + 1919595910, + 3783146178, + 4202899498 + ], + "geometry": [ + { "lat": 40.7216715, "lon": -73.9847057 }, + { "lat": 40.7216437, "lon": -73.9846126 }, + { "lat": 40.7215866, "lon": -73.9844204 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420351724, + "bounds": { + "minlat": 40.7216780, + "minlon": -73.9846444, + "maxlat": 40.7217853, + "maxlon": -73.9842958 + }, + "nodes": [ + 4202899499, + 8821475427, + 12539320491, + 3783146173, + 42447435 + ], + "geometry": [ + { "lat": 40.7216780, "lon": -73.9842958 }, + { "lat": 40.7217342, "lon": -73.9844751 }, + { "lat": 40.7217508, "lon": -73.9845281 }, + { "lat": 40.7217568, "lon": -73.9845472 }, + { "lat": 40.7217853, "lon": -73.9846444 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420351725, + "bounds": { + "minlat": 40.7207645, + "minlon": -73.9818702, + "maxlat": 40.7209451, + "maxlon": -73.9812727 + }, + "nodes": [ + 1919595922, + 3783146174, + 4202899497 + ], + "geometry": [ + { "lat": 40.7207645, "lon": -73.9812727 }, + { "lat": 40.7207971, "lon": -73.9813770 }, + { "lat": 40.7209451, "lon": -73.9818702 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "kerb", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420352240, + "bounds": { + "minlat": 40.7229037, + "minlon": -73.9890373, + "maxlat": 40.7229857, + "maxlon": -73.9887754 + }, + "nodes": [ + 4202908168, + 8821475419, + 9010154527, + 4241743156, + 7480301864 + ], + "geometry": [ + { "lat": 40.7229857, "lon": -73.9890373 }, + { "lat": 40.7229581, "lon": -73.9889493 }, + { "lat": 40.7229486, "lon": -73.9889188 }, + { "lat": 40.7229373, "lon": -73.9888832 }, + { "lat": 40.7229037, "lon": -73.9887754 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420352241, + "bounds": { + "minlat": 40.7240936, + "minlon": -73.9931340, + "maxlat": 40.7242438, + "maxlon": -73.9926973 + }, + "nodes": [ + 4202908169, + 8821494824, + 5829779511, + 1918039864 + ], + "geometry": [ + { "lat": 40.7242438, "lon": -73.9931340 }, + { "lat": 40.7241474, "lon": -73.9928634 }, + { "lat": 40.7241301, "lon": -73.9928078 }, + { "lat": 40.7240936, "lon": -73.9926973 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420352242, + "bounds": { + "minlat": 40.7228469, + "minlon": -73.9886268, + "maxlat": 40.7229840, + "maxlon": -73.9881591 + }, + "nodes": [ + 4202899501, + 8821475418, + 9010154536, + 4241743152, + 5798966629 + ], + "geometry": [ + { "lat": 40.7228469, "lon": -73.9881591 }, + { "lat": 40.7229055, "lon": -73.9883572 }, + { "lat": 40.7229189, "lon": -73.9884037 }, + { "lat": 40.7229294, "lon": -73.9884402 }, + { "lat": 40.7229840, "lon": -73.9886268 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420352243, + "bounds": { + "minlat": 40.7250344, + "minlon": -73.9958189, + "maxlat": 40.7251474, + "maxlon": -73.9953692 + }, + "nodes": [ + 4202908170, + 5829927768, + 5829927770, + 1918039897 + ], + "geometry": [ + { "lat": 40.7251474, "lon": -73.9958189 }, + { "lat": 40.7251452, "lon": -73.9958083 }, + { "lat": 40.7250701, "lon": -73.9954894 }, + { "lat": 40.7250344, "lon": -73.9953692 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420352244, + "bounds": { + "minlat": 40.7253562, + "minlon": -73.9967146, + "maxlat": 40.7255012, + "maxlon": -73.9961141 + }, + "nodes": [ + 4202908171, + 5829927767, + 42428447 + ], + "geometry": [ + { "lat": 40.7253562, "lon": -73.9961141 }, + { "lat": 40.7254756, "lon": -73.9966034 }, + { "lat": 40.7255012, "lon": -73.9967146 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420352245, + "bounds": { + "minlat": 40.7240553, + "minlon": -73.9926973, + "maxlat": 40.7240936, + "maxlon": -73.9925739 + }, + "nodes": [ + 1918039864, + 1918039904 + ], + "geometry": [ + { "lat": 40.7240936, "lon": -73.9926973 }, + { "lat": 40.7240553, "lon": -73.9925739 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420352246, + "bounds": { + "minlat": 40.7251622, + "minlon": -73.9968134, + "maxlat": 40.7253844, + "maxlon": -73.9958807 + }, + "nodes": [ + 1919595915, + 5829927764, + 4755898715, + 5829927762, + 1918039880 + ], + "geometry": [ + { "lat": 40.7253844, "lon": -73.9968134 }, + { "lat": 40.7253584, "lon": -73.9967033 }, + { "lat": 40.7252582, "lon": -73.9962837 }, + { "lat": 40.7251826, "lon": -73.9959676 }, + { "lat": 40.7251622, "lon": -73.9958807 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420352247, + "bounds": { + "minlat": 40.7267939, + "minlon": -73.9998695, + "maxlat": 40.7270026, + "maxlon": -73.9994460 + }, + "nodes": [ + 4202908173, + 5829907369, + 42448558 + ], + "geometry": [ + { "lat": 40.7267939, "lon": -73.9994460 }, + { "lat": 40.7269580, "lon": -73.9997790 }, + { "lat": 40.7270026, "lon": -73.9998695 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420352248, + "bounds": { + "minlat": 40.7257096, + "minlon": -73.9975736, + "maxlat": 40.7258712, + "maxlon": -73.9972458 + }, + "nodes": [ + 4202908172, + 5829907371, + 42448552 + ], + "geometry": [ + { "lat": 40.7257096, "lon": -73.9972458 }, + { "lat": 40.7258299, "lon": -73.9974897 }, + { "lat": 40.7258712, "lon": -73.9975736 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420352249, + "bounds": { + "minlat": 40.7255012, + "minlon": -73.9969929, + "maxlat": 40.7255850, + "maxlon": -73.9967146 + }, + "nodes": [ + 42428447, + 5829927772, + 3594715134 + ], + "geometry": [ + { "lat": 40.7255012, "lon": -73.9967146 }, + { "lat": 40.7255345, "lon": -73.9968366 }, + { "lat": 40.7255850, "lon": -73.9969929 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420352250, + "bounds": { + "minlat": 40.7258712, + "minlon": -73.9983091, + "maxlat": 40.7262337, + "maxlon": -73.9975736 + }, + "nodes": [ + 42448552, + 5829907372, + 5829907363, + 5799117244 + ], + "geometry": [ + { "lat": 40.7258712, "lon": -73.9975736 }, + { "lat": 40.7259051, "lon": -73.9976424 }, + { "lat": 40.7262004, "lon": -73.9982416 }, + { "lat": 40.7262337, "lon": -73.9983091 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420352251, + "bounds": { + "minlat": 40.7282339, + "minlon": -74.0028488, + "maxlat": 40.7283741, + "maxlon": -74.0023601 + }, + "nodes": [ + 4202908174, + 8821481436, + 3573482131, + 4321748238 + ], + "geometry": [ + { "lat": 40.7282339, "lon": -74.0023601 }, + { "lat": 40.7283153, "lon": -74.0026057 }, + { "lat": 40.7283536, "lon": -74.0027215 }, + { "lat": 40.7283741, "lon": -74.0028488 } + ], + "tags": { + "destination:lanes": "West Houston Street|West Houston Street", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420354140, + "bounds": { + "minlat": 40.7198217, + "minlon": -73.9928771, + "maxlat": 40.7200534, + "maxlon": -73.9921037 + }, + "nodes": [ + 42429756, + 6330061745, + 12196062115, + 4539951623, + 486869282 + ], + "geometry": [ + { "lat": 40.7198217, "lon": -73.9921037 }, + { "lat": 40.7198533, "lon": -73.9922076 }, + { "lat": 40.7199918, "lon": -73.9926639 }, + { "lat": 40.7200093, "lon": -73.9927251 }, + { "lat": 40.7200534, "lon": -73.9928771 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through||through;right", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 420354141, + "bounds": { + "minlat": 40.7200534, + "minlon": -73.9939937, + "maxlat": 40.7203185, + "maxlon": -73.9928771 + }, + "nodes": [ + 486869282, + 8231896496, + 12196062138, + 13033174918, + 12196062141, + 486869287, + 9925383728, + 1773076511 + ], + "geometry": [ + { "lat": 40.7200534, "lon": -73.9928771 }, + { "lat": 40.7200904, "lon": -73.9930049 }, + { "lat": 40.7200981, "lon": -73.9930317 }, + { "lat": 40.7202786, "lon": -73.9936163 }, + { "lat": 40.7203185, "lon": -73.9937455 }, + { "lat": 40.7203155, "lon": -73.9937952 }, + { "lat": 40.7203097, "lon": -73.9938765 }, + { "lat": 40.7203018, "lon": -73.9939937 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|right", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 420354145, + "bounds": { + "minlat": 40.7183916, + "minlon": -73.9881675, + "maxlat": 40.7186305, + "maxlon": -73.9873785 + }, + "nodes": [ + 42429782, + 8231896482, + 12195869788, + 3314293722, + 42429773 + ], + "geometry": [ + { "lat": 40.7183916, "lon": -73.9873785 }, + { "lat": 40.7184107, "lon": -73.9874424 }, + { "lat": 40.7185791, "lon": -73.9879972 }, + { "lat": 40.7185974, "lon": -73.9880573 }, + { "lat": 40.7186305, "lon": -73.9881675 } + ], + "tags": { + "bus:lanes": "||designated|designated", + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through||", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 420354146, + "bounds": { + "minlat": 40.7178259, + "minlon": -73.9865259, + "maxlat": 40.7181153, + "maxlon": -73.9857233 + }, + "nodes": [ + 486869939, + 8310245541, + 12195869760, + 12195869761, + 12195869762, + 7476387561, + 486868138 + ], + "geometry": [ + { "lat": 40.7178259, "lon": -73.9857233 }, + { "lat": 40.7178521, "lon": -73.9858027 }, + { "lat": 40.7178809, "lon": -73.9858838 }, + { "lat": 40.7179242, "lon": -73.9860036 }, + { "lat": 40.7180669, "lon": -73.9863940 }, + { "lat": 40.7180918, "lon": -73.9864610 }, + { "lat": 40.7181153, "lon": -73.9865259 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "foot": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "moped": "no", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 420354362, + "bounds": { + "minlat": 40.7164549, + "minlon": -73.9890408, + "maxlat": 40.7166726, + "maxlon": -73.9883771 + }, + "nodes": [ + 5041369237, + 11040080979, + 5804835280, + 42451593 + ], + "geometry": [ + { "lat": 40.7166726, "lon": -73.9890408 }, + { "lat": 40.7165516, "lon": -73.9886758 }, + { "lat": 40.7164768, "lon": -73.9884501 }, + { "lat": 40.7164549, "lon": -73.9883771 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420355076, + "bounds": { + "minlat": 40.7240936, + "minlon": -73.9926973, + "maxlat": 40.7249108, + "maxlon": -73.9923990 + }, + "nodes": [ + 42437613, + 8309479084, + 8821494823, + 5829779531, + 42437612, + 1918039864 + ], + "geometry": [ + { "lat": 40.7249108, "lon": -73.9923990 }, + { "lat": 40.7248646, "lon": -73.9924161 }, + { "lat": 40.7243728, "lon": -73.9925944 }, + { "lat": 40.7243192, "lon": -73.9926122 }, + { "lat": 40.7242341, "lon": -73.9926455 }, + { "lat": 40.7240936, "lon": -73.9926973 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through;right", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 420355077, + "bounds": { + "minlat": 40.7198220, + "minlon": -73.9942459, + "maxlat": 40.7203425, + "maxlon": -73.9941129 + }, + "nodes": [ + 42429752, + 4956305806, + 6902711854, + 1773076513 + ], + "geometry": [ + { "lat": 40.7203425, "lon": -73.9941129 }, + { "lat": 40.7202542, "lon": -73.9941484 }, + { "lat": 40.7200789, "lon": -73.9942177 }, + { "lat": 40.7198220, "lon": -73.9942459 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 420355078, + "bounds": { + "minlat": 40.7203425, + "minlon": -73.9941129, + "maxlat": 40.7208073, + "maxlon": -73.9939324 + }, + "nodes": [ + 4202950102, + 8821681995, + 5296795595, + 42429752 + ], + "geometry": [ + { "lat": 40.7208073, "lon": -73.9939324 }, + { "lat": 40.7205223, "lon": -73.9940419 }, + { "lat": 40.7204653, "lon": -73.9940646 }, + { "lat": 40.7203425, "lon": -73.9941129 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 420355079, + "bounds": { + "minlat": 40.7240553, + "minlon": -73.9925739, + "maxlat": 40.7241972, + "maxlon": -73.9925309 + }, + "nodes": [ + 1918039904, + 1773082410 + ], + "geometry": [ + { "lat": 40.7240553, "lon": -73.9925739 }, + { "lat": 40.7241972, "lon": -73.9925309 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 420355081, + "bounds": { + "minlat": 40.7166082, + "minlon": -73.9958489, + "maxlat": 40.7172902, + "maxlon": -73.9954393 + }, + "nodes": [ + 42437580, + 4202950101, + 12195871663, + 10606723134, + 5161246301, + 11496014189 + ], + "geometry": [ + { "lat": 40.7172902, "lon": -73.9954393 }, + { "lat": 40.7172302, "lon": -73.9954752 }, + { "lat": 40.7171883, "lon": -73.9955002 }, + { "lat": 40.7166913, "lon": -73.9957977 }, + { "lat": 40.7166309, "lon": -73.9958338 }, + { "lat": 40.7166082, "lon": -73.9958489 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|left;through|", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 420355082, + "bounds": { + "minlat": 40.7140701, + "minlon": -73.9975839, + "maxlat": 40.7144271, + "maxlon": -73.9973275 + }, + "nodes": [ + 4202950099, + 1773060097, + 4160342480, + 12374690314 + ], + "geometry": [ + { "lat": 40.7144271, "lon": -73.9973275 }, + { "lat": 40.7141502, "lon": -73.9975248 }, + { "lat": 40.7141036, "lon": -73.9975574 }, + { "lat": 40.7140701, "lon": -73.9975839 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 420355083, + "bounds": { + "minlat": 40.7154852, + "minlon": -73.9964822, + "maxlat": 40.7161492, + "maxlon": -73.9961338 + }, + "nodes": [ + 541467364, + 12196074923, + 4160368840, + 5161246307 + ], + "geometry": [ + { "lat": 40.7154852, "lon": -73.9964822 }, + { "lat": 40.7159776, "lon": -73.9961878 }, + { "lat": 40.7160255, "lon": -73.9961600 }, + { "lat": 40.7161492, "lon": -73.9961338 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 420356168, + "bounds": { + "minlat": 40.7507733, + "minlon": -73.9760552, + "maxlat": 40.7514392, + "maxlon": -73.9744736 + }, + "nodes": [ + 11337295608, + 10168825861, + 11337295609, + 11337295607, + 10168841830, + 11337295604 + ], + "geometry": [ + { "lat": 40.7507733, "lon": -73.9744736 }, + { "lat": 40.7508210, "lon": -73.9745910 }, + { "lat": 40.7508454, "lon": -73.9746468 }, + { "lat": 40.7513724, "lon": -73.9758983 }, + { "lat": 40.7513935, "lon": -73.9759478 }, + { "lat": 40.7514392, "lon": -73.9760552 } + ], + "tags": { + "bus:lanes:backward": "yes|yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420356169, + "bounds": { + "minlat": 40.7504178, + "minlon": -73.9744736, + "maxlat": 40.7507733, + "maxlon": -73.9736027 + }, + "nodes": [ + 11337295608, + 10168825864, + 11337295611, + 4011390051, + 4202958489 + ], + "geometry": [ + { "lat": 40.7507733, "lon": -73.9744736 }, + { "lat": 40.7507061, "lon": -73.9743131 }, + { "lat": 40.7506934, "lon": -73.9742819 }, + { "lat": 40.7505215, "lon": -73.9738584 }, + { "lat": 40.7504178, "lon": -73.9736027 } + ], + "tags": { + "bus:lanes:backward": "yes|designated|yes", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|through|right", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420356171, + "bounds": { + "minlat": 40.7511220, + "minlon": -73.9751020, + "maxlat": 40.7527410, + "maxlon": -73.9712630 + }, + "nodes": [ + 42446977, + 10168841842, + 10125260536, + 12463559806, + 10125260537, + 5107733973, + 13052507044, + 12673774519, + 42442943 + ], + "geometry": [ + { "lat": 40.7527410, "lon": -73.9751020 }, + { "lat": 40.7527043, "lon": -73.9750143 }, + { "lat": 40.7521253, "lon": -73.9736415 }, + { "lat": 40.7520749, "lon": -73.9735225 }, + { "lat": 40.7520133, "lon": -73.9733768 }, + { "lat": 40.7518156, "lon": -73.9729119 }, + { "lat": 40.7515585, "lon": -73.9723006 }, + { "lat": 40.7511798, "lon": -73.9714004 }, + { "lat": 40.7511220, "lon": -73.9712630 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 44th Street", + "name:ru": "Восточная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420356172, + "bounds": { + "minlat": 40.7559868, + "minlon": -73.9769642, + "maxlat": 40.7566036, + "maxlon": -73.9765120 + }, + "nodes": [ + 42445924, + 10165986976, + 10166333038, + 42445926 + ], + "geometry": [ + { "lat": 40.7559868, "lon": -73.9769642 }, + { "lat": 40.7560340, "lon": -73.9769296 }, + { "lat": 40.7565392, "lon": -73.9765592 }, + { "lat": 40.7566036, "lon": -73.9765120 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 420356173, + "bounds": { + "minlat": 40.7544719, + "minlon": -73.9780563, + "maxlat": 40.7547351, + "maxlon": -73.9778672 + }, + "nodes": [ + 4202958491, + 3944708035, + 42444043 + ], + "geometry": [ + { "lat": 40.7544719, "lon": -73.9780563 }, + { "lat": 40.7546727, "lon": -73.9779121 }, + { "lat": 40.7547351, "lon": -73.9778672 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 420356798, + "bounds": { + "minlat": 40.7242862, + "minlon": -73.9908290, + "maxlat": 40.7247564, + "maxlon": -73.9904752 + }, + "nodes": [ + 4202957549, + 7977873325, + 42442842 + ], + "geometry": [ + { "lat": 40.7247564, "lon": -73.9904752 }, + { "lat": 40.7243418, "lon": -73.9907873 }, + { "lat": 40.7242862, "lon": -73.9908290 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through;right", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420357249, + "bounds": { + "minlat": 40.7594990, + "minlon": -73.9615019, + "maxlat": 40.7602510, + "maxlon": -73.9597424 + }, + "nodes": [ + 6177439749, + 6177439755, + 4202960389 + ], + "geometry": [ + { "lat": 40.7602510, "lon": -73.9615019 }, + { "lat": 40.7601955, "lon": -73.9613673 }, + { "lat": 40.7594990, "lon": -73.9597424 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "name_1": "East 60 Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420357268, + "bounds": { + "minlat": 40.7138465, + "minlon": -73.9927984, + "maxlat": 40.7142842, + "maxlon": -73.9927579 + }, + "nodes": [ + 9505971549, + 9525441199, + 8307641621, + 42457821 + ], + "geometry": [ + { "lat": 40.7142842, "lon": -73.9927984 }, + { "lat": 40.7139892, "lon": -73.9927735 }, + { "lat": 40.7139339, "lon": -73.9927701 }, + { "lat": 40.7138465, "lon": -73.9927579 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 420357620, + "bounds": { + "minlat": 40.7620172, + "minlon": -73.9430801, + "maxlat": 40.7621895, + "maxlon": -73.9426019 + }, + "nodes": [ + 3785702961, + 6452697943 + ], + "geometry": [ + { "lat": 40.7621895, "lon": -73.9430801 }, + { "lat": 40.7620172, "lon": -73.9426019 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "maxspeed": "25 mph", + "name": "Roosevelt Island Bridge", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 420357621, + "bounds": { + "minlat": 40.7599137, + "minlon": -73.9588108, + "maxlat": 40.7605391, + "maxlon": -73.9583585 + }, + "nodes": [ + 42427965, + 4918486958, + 8586594919, + 4918486965, + 42427968 + ], + "geometry": [ + { "lat": 40.7599137, "lon": -73.9588108 }, + { "lat": 40.7599754, "lon": -73.9587662 }, + { "lat": 40.7600618, "lon": -73.9587037 }, + { "lat": 40.7604809, "lon": -73.9584006 }, + { "lat": 40.7605391, "lon": -73.9583585 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "network": "lcn", + "old_name:1811-1928": "Avenue A", + "parking:both": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|through;right|right", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 420357622, + "bounds": { + "minlat": 40.7605391, + "minlon": -73.9583585, + "maxlat": 40.7611816, + "maxlon": -73.9579018 + }, + "nodes": [ + 42427968, + 4918486970, + 42427970 + ], + "geometry": [ + { "lat": 40.7605391, "lon": -73.9583585 }, + { "lat": 40.7606047, "lon": -73.9583119 }, + { "lat": 40.7611816, "lon": -73.9579018 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "network": "lcn", + "old_name:1811-1928": "Avenue A", + "parking:both": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 420357623, + "bounds": { + "minlat": 40.7611816, + "minlon": -73.9579018, + "maxlat": 40.7612604, + "maxlon": -73.9578486 + }, + "nodes": [ + 42427970, + 4378236618 + ], + "geometry": [ + { "lat": 40.7611816, "lon": -73.9579018 }, + { "lat": 40.7612604, "lon": -73.9578486 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "network": "lcn", + "route": "bicycle", + "surface": "asphalt", + "turn:lanes:backward": "left;through|through", + "turn:lanes:forward": "through|", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 420358705, + "bounds": { + "minlat": 40.7132978, + "minlon": -73.9162122, + "maxlat": 40.7133230, + "maxlon": -73.9161372 + }, + "nodes": [ + 4202978775, + 7711279832 + ], + "geometry": [ + { "lat": 40.7132978, "lon": -73.9162122 }, + { "lat": 40.7133230, "lon": -73.9161372 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 420358886, + "bounds": { + "minlat": 40.7161492, + "minlon": -73.9966190, + "maxlat": 40.7163682, + "maxlon": -73.9961338 + }, + "nodes": [ + 11777832490, + 12196074924, + 4625620215, + 11496014205, + 11496014206, + 5161246307 + ], + "geometry": [ + { "lat": 40.7163682, "lon": -73.9966190 }, + { "lat": 40.7162627, "lon": -73.9963343 }, + { "lat": 40.7162398, "lon": -73.9962727 }, + { "lat": 40.7162164, "lon": -73.9962228 }, + { "lat": 40.7161839, "lon": -73.9961708 }, + { "lat": 40.7161492, "lon": -73.9961338 } + ], + "tags": { + "bicycle": "yes", + "expressway": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes:forward": "slight_right|slight_right|right" + } +}, +{ + "type": "way", + "id": 420358887, + "bounds": { + "minlat": 40.7165497, + "minlon": -73.9973905, + "maxlat": 40.7166956, + "maxlon": -73.9969875 + }, + "nodes": [ + 12192359907, + 8307641530, + 42440804 + ], + "geometry": [ + { "lat": 40.7166956, "lon": -73.9973905 }, + { "lat": 40.7165704, "lon": -73.9970433 }, + { "lat": 40.7165497, "lon": -73.9969875 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "turn:lanes:forward": "left||", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420358889, + "bounds": { + "minlat": 40.7241831, + "minlon": -73.9960528, + "maxlat": 40.7244010, + "maxlon": -73.9958770 + }, + "nodes": [ + 4202984494, + 42445505 + ], + "geometry": [ + { "lat": 40.7241831, "lon": -73.9960528 }, + { "lat": 40.7244010, "lon": -73.9958770 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:ar": "شارع لافايات", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 420358890, + "bounds": { + "minlat": 40.7222994, + "minlon": -73.9971193, + "maxlat": 40.7236896, + "maxlon": -73.9964625 + }, + "nodes": [ + 42442247, + 8231877114, + 10770328379, + 10770328374, + 12187436341, + 12187436340, + 42445494, + 12187436339, + 12187436338, + 12187436337, + 8231877105, + 42445498 + ], + "geometry": [ + { "lat": 40.7222994, "lon": -73.9971193 }, + { "lat": 40.7223606, "lon": -73.9970985 }, + { "lat": 40.7232336, "lon": -73.9967461 }, + { "lat": 40.7234117, "lon": -73.9966751 }, + { "lat": 40.7234321, "lon": -73.9966674 }, + { "lat": 40.7234501, "lon": -73.9966576 }, + { "lat": 40.7234659, "lon": -73.9966479 }, + { "lat": 40.7234796, "lon": -73.9966375 }, + { "lat": 40.7234961, "lon": -73.9966240 }, + { "lat": 40.7235969, "lon": -73.9965407 }, + { "lat": 40.7236402, "lon": -73.9965042 }, + { "lat": 40.7236896, "lon": -73.9964625 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:ar": "شارع لافايات", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 420358891, + "bounds": { + "minlat": 40.7244010, + "minlon": -73.9958770, + "maxlat": 40.7247672, + "maxlon": -73.9955827 + }, + "nodes": [ + 42445505, + 4202984495 + ], + "geometry": [ + { "lat": 40.7244010, "lon": -73.9958770 }, + { "lat": 40.7247672, "lon": -73.9955827 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:ar": "شارع لافايات", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 420358892, + "bounds": { + "minlat": 40.7270220, + "minlon": -73.9938364, + "maxlat": 40.7272894, + "maxlon": -73.9936231 + }, + "nodes": [ + 4202984496, + 12187431477, + 8309479052, + 42431165 + ], + "geometry": [ + { "lat": 40.7270220, "lon": -73.9938364 }, + { "lat": 40.7271812, "lon": -73.9937161 }, + { "lat": 40.7272212, "lon": -73.9936817 }, + { "lat": 40.7272894, "lon": -73.9936231 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 420358894, + "bounds": { + "minlat": 40.7247672, + "minlon": -73.9955827, + "maxlat": 40.7250344, + "maxlon": -73.9953692 + }, + "nodes": [ + 4202984495, + 12187436333, + 5829753046, + 1918039897 + ], + "geometry": [ + { "lat": 40.7247672, "lon": -73.9955827 }, + { "lat": 40.7249048, "lon": -73.9954730 }, + { "lat": 40.7249598, "lon": -73.9954293 }, + { "lat": 40.7250344, "lon": -73.9953692 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:ar": "شارع لافايات", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through;right", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 420358895, + "bounds": { + "minlat": 40.7236896, + "minlon": -73.9964625, + "maxlat": 40.7241831, + "maxlon": -73.9960528 + }, + "nodes": [ + 42445498, + 8231877104, + 4202984494 + ], + "geometry": [ + { "lat": 40.7236896, "lon": -73.9964625 }, + { "lat": 40.7237289, "lon": -73.9964293 }, + { "lat": 40.7241831, "lon": -73.9960528 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:ar": "شارع لافايات", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 420358896, + "bounds": { + "minlat": 40.7274405, + "minlon": -73.9934931, + "maxlat": 40.7278531, + "maxlon": -73.9931425 + }, + "nodes": [ + 5481937335, + 12187431458, + 8309479120, + 42445534 + ], + "geometry": [ + { "lat": 40.7274405, "lon": -73.9934931 }, + { "lat": 40.7277720, "lon": -73.9932126 }, + { "lat": 40.7278155, "lon": -73.9931751 }, + { "lat": 40.7278531, "lon": -73.9931425 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 420358897, + "bounds": { + "minlat": 40.7296573, + "minlon": -73.9916165, + "maxlat": 40.7298564, + "maxlon": -73.9913946 + }, + "nodes": [ + 4202984497, + 12179562750, + 12179562752, + 12179562753, + 3919350763, + 12179562754, + 12179562755, + 42439236 + ], + "geometry": [ + { "lat": 40.7296573, "lon": -73.9916165 }, + { "lat": 40.7297344, "lon": -73.9915516 }, + { "lat": 40.7297498, "lon": -73.9915361 }, + { "lat": 40.7297690, "lon": -73.9915144 }, + { "lat": 40.7297882, "lon": -73.9914907 }, + { "lat": 40.7298080, "lon": -73.9914664 }, + { "lat": 40.7298322, "lon": -73.9914312 }, + { "lat": 40.7298564, "lon": -73.9913946 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|through", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 420358898, + "bounds": { + "minlat": 40.7251518, + "minlon": -73.9952749, + "maxlat": 40.7262619, + "maxlon": -73.9943951 + }, + "nodes": [ + 42445511, + 5829753047, + 12187431482, + 8309479016, + 1692433916, + 8309479015, + 12187431483, + 42421927 + ], + "geometry": [ + { "lat": 40.7251518, "lon": -73.9952749 }, + { "lat": 40.7252258, "lon": -73.9952158 }, + { "lat": 40.7258344, "lon": -73.9947188 }, + { "lat": 40.7258774, "lon": -73.9946853 }, + { "lat": 40.7259268, "lon": -73.9946467 }, + { "lat": 40.7259914, "lon": -73.9945964 }, + { "lat": 40.7260126, "lon": -73.9945798 }, + { "lat": 40.7262619, "lon": -73.9943951 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:ar": "شارع لافايات", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 420363114, + "bounds": { + "minlat": 40.7456135, + "minlon": -73.9461769, + "maxlat": 40.7458232, + "maxlon": -73.9456423 + }, + "nodes": [ + 42843268, + 8996215478, + 42844264 + ], + "geometry": [ + { "lat": 40.7456135, "lon": -73.9461769 }, + { "lat": 40.7457814, "lon": -73.9457460 }, + { "lat": 40.7458232, "lon": -73.9456423 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420363118, + "bounds": { + "minlat": 40.7468246, + "minlon": -73.9433013, + "maxlat": 40.7469797, + "maxlon": -73.9429442 + }, + "nodes": [ + 4203034931, + 13018661403, + 4228583939, + 9982698537, + 2971841366 + ], + "geometry": [ + { "lat": 40.7469797, "lon": -73.9429442 }, + { "lat": 40.7469582, "lon": -73.9429984 }, + { "lat": 40.7469112, "lon": -73.9431165 }, + { "lat": 40.7468625, "lon": -73.9432186 }, + { "lat": 40.7468246, "lon": -73.9433013 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420363121, + "bounds": { + "minlat": 40.7447002, + "minlon": -73.9485012, + "maxlat": 40.7448673, + "maxlon": -73.9480850 + }, + "nodes": [ + 2034007426, + 5602882302, + 42819655, + 4203034929 + ], + "geometry": [ + { "lat": 40.7447002, "lon": -73.9485012 }, + { "lat": 40.7447621, "lon": -73.9483577 }, + { "lat": 40.7448206, "lon": -73.9482040 }, + { "lat": 40.7448673, "lon": -73.9480850 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "smoothness": "intermediate", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420363124, + "bounds": { + "minlat": 40.7445092, + "minlon": -73.9488860, + "maxlat": 40.7447002, + "maxlon": -73.9485012 + }, + "nodes": [ + 2034007426, + 5602882303, + 2034007416, + 4203034928 + ], + "geometry": [ + { "lat": 40.7447002, "lon": -73.9485012 }, + { "lat": 40.7446352, "lon": -73.9486506 }, + { "lat": 40.7446222, "lon": -73.9486711 }, + { "lat": 40.7445092, "lon": -73.9488860 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Jackson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420363126, + "bounds": { + "minlat": 40.7473413, + "minlon": -73.9419853, + "maxlat": 40.7476037, + "maxlon": -73.9412696 + }, + "nodes": [ + 2971841358, + 2971841360, + 2971840926, + 4215808501 + ], + "geometry": [ + { "lat": 40.7476037, "lon": -73.9412696 }, + { "lat": 40.7475207, "lon": -73.9414960 }, + { "lat": 40.7474892, "lon": -73.9415820 }, + { "lat": 40.7473413, "lon": -73.9419853 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420366747, + "bounds": { + "minlat": 40.7443441, + "minlon": -73.9486231, + "maxlat": 40.7447002, + "maxlon": -73.9485012 + }, + "nodes": [ + 2034007426, + 5602882299, + 4203039769 + ], + "geometry": [ + { "lat": 40.7447002, "lon": -73.9485012 }, + { "lat": 40.7445329, "lon": -73.9485537 }, + { "lat": 40.7443441, "lon": -73.9486231 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "21st Street", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "smoothness": "intermediate", + "surface": "asphalt", + "turn:lanes:backward": "left;through|through" + } +}, +{ + "type": "way", + "id": 420366752, + "bounds": { + "minlat": 40.7447002, + "minlon": -73.9485012, + "maxlat": 40.7450343, + "maxlon": -73.9483880 + }, + "nodes": [ + 4203039770, + 5602882300, + 2034007426 + ], + "geometry": [ + { "lat": 40.7450343, "lon": -73.9483880 }, + { "lat": 40.7448418, "lon": -73.9484506 }, + { "lat": 40.7447002, "lon": -73.9485012 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "smoothness": "excellent", + "surface": "asphalt", + "turn:lanes:forward": "left;through|through" + } +}, +{ + "type": "way", + "id": 420366757, + "bounds": { + "minlat": 40.7411143, + "minlon": -73.9539755, + "maxlat": 40.7412245, + "maxlon": -73.9533578 + }, + "nodes": [ + 3205305426, + 13018432746, + 4203039768 + ], + "geometry": [ + { "lat": 40.7412245, "lon": -73.9539755 }, + { "lat": 40.7411891, "lon": -73.9537769 }, + { "lat": 40.7411143, "lon": -73.9533578 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101", + "turn:lanes:backward": "through|right" + } +}, +{ + "type": "way", + "id": 420366763, + "bounds": { + "minlat": 40.7408803, + "minlon": -73.9533578, + "maxlat": 40.7411143, + "maxlon": -73.9521338 + }, + "nodes": [ + 4203039768, + 13018432747, + 9179070580, + 588178801 + ], + "geometry": [ + { "lat": 40.7411143, "lon": -73.9533578 }, + { "lat": 40.7410980, "lon": -73.9532729 }, + { "lat": 40.7409061, "lon": -73.9522718 }, + { "lat": 40.7408803, "lon": -73.9521338 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxheight": "default", + "name": "Borden Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420367849, + "bounds": { + "minlat": 40.7339848, + "minlon": -73.9525122, + "maxlat": 40.7346894, + "maxlon": -73.9523243 + }, + "nodes": [ + 598391465, + 12047823464, + 8097082859, + 4660170671 + ], + "geometry": [ + { "lat": 40.7346894, "lon": -73.9525122 }, + { "lat": 40.7346282, "lon": -73.9524994 }, + { "lat": 40.7340489, "lon": -73.9523363 }, + { "lat": 40.7339848, "lon": -73.9523243 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "no", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420367851, + "bounds": { + "minlat": 40.7314509, + "minlon": -73.9518301, + "maxlat": 40.7318727, + "maxlon": -73.9517598 + }, + "nodes": [ + 4203066843, + 8097159407, + 2987758873 + ], + "geometry": [ + { "lat": 40.7314509, "lon": -73.9517598 }, + { "lat": 40.7318119, "lon": -73.9518204 }, + { "lat": 40.7318727, "lon": -73.9518301 } + ], + "tags": { + "bicycle:lanes": "|no|no|designated", + "cycleway:lanes": "no|no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420367852, + "bounds": { + "minlat": 40.7311535, + "minlon": -73.9519247, + "maxlat": 40.7315886, + "maxlon": -73.9518504 + }, + "nodes": [ + 4203066842, + 8097159403, + 2987758875 + ], + "geometry": [ + { "lat": 40.7315886, "lon": -73.9519247 }, + { "lat": 40.7312115, "lon": -73.9518615 }, + { "lat": 40.7311535, "lon": -73.9518504 } + ], + "tags": { + "bicycle:lanes": "|no|no|designated", + "cycleway:lanes": "no|no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420367853, + "bounds": { + "minlat": 40.7328292, + "minlon": -73.9520628, + "maxlat": 40.7332869, + "maxlon": -73.9519871 + }, + "nodes": [ + 12042056975, + 8962361295, + 4203066845, + 8097082822, + 2987758870 + ], + "geometry": [ + { "lat": 40.7328292, "lon": -73.9519871 }, + { "lat": 40.7328635, "lon": -73.9519924 }, + { "lat": 40.7330448, "lon": -73.9520223 }, + { "lat": 40.7332305, "lon": -73.9520535 }, + { "lat": 40.7332869, "lon": -73.9520628 } + ], + "tags": { + "bicycle:lanes": "|no|no|designated", + "cycleway:lanes": "no|no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420367854, + "bounds": { + "minlat": 40.7325692, + "minlon": -73.9521643, + "maxlat": 40.7330231, + "maxlon": -73.9520892 + }, + "nodes": [ + 4203066844, + 8097159338, + 4660170670 + ], + "geometry": [ + { "lat": 40.7330231, "lon": -73.9521643 }, + { "lat": 40.7326290, "lon": -73.9520979 }, + { "lat": 40.7325692, "lon": -73.9520892 } + ], + "tags": { + "bicycle:lanes": "|no|no|designated", + "cycleway:lanes": "no|no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post;jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420367855, + "bounds": { + "minlat": 40.7321085, + "minlon": -73.9520892, + "maxlat": 40.7325692, + "maxlon": -73.9520112 + }, + "nodes": [ + 4660170670, + 8097159436, + 12042056996 + ], + "geometry": [ + { "lat": 40.7325692, "lon": -73.9520892 }, + { "lat": 40.7325084, "lon": -73.9520780 }, + { "lat": 40.7321085, "lon": -73.9520112 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post;jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420367856, + "bounds": { + "minlat": 40.7330231, + "minlon": -73.9522072, + "maxlat": 40.7332738, + "maxlon": -73.9521643 + }, + "nodes": [ + 2987758869, + 8097082894, + 4203066844 + ], + "geometry": [ + { "lat": 40.7332738, "lon": -73.9522072 }, + { "lat": 40.7332169, "lon": -73.9521978 }, + { "lat": 40.7330231, "lon": -73.9521643 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420367857, + "bounds": { + "minlat": 40.7332869, + "minlon": -73.9521316, + "maxlat": 40.7337101, + "maxlon": -73.9520628 + }, + "nodes": [ + 2987758870, + 8097082946, + 5481915250 + ], + "geometry": [ + { "lat": 40.7332869, "lon": -73.9520628 }, + { "lat": 40.7333571, "lon": -73.9520743 }, + { "lat": 40.7337101, "lon": -73.9521316 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420367858, + "bounds": { + "minlat": 40.7309635, + "minlon": -73.9518504, + "maxlat": 40.7311535, + "maxlon": -73.9518121 + }, + "nodes": [ + 2987758875, + 8097159413, + 2987758096, + 12042056998, + 2987758097 + ], + "geometry": [ + { "lat": 40.7311535, "lon": -73.9518504 }, + { "lat": 40.7310881, "lon": -73.9518387 }, + { "lat": 40.7310267, "lon": -73.9518265 }, + { "lat": 40.7310053, "lon": -73.9518216 }, + { "lat": 40.7309635, "lon": -73.9518121 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420367859, + "bounds": { + "minlat": 40.7320837, + "minlon": -73.9519140, + "maxlat": 40.7323783, + "maxlon": -73.9518653 + }, + "nodes": [ + 12042056970, + 12042056972 + ], + "geometry": [ + { "lat": 40.7320837, "lon": -73.9518653 }, + { "lat": 40.7323783, "lon": -73.9519140 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420367860, + "bounds": { + "minlat": 40.7306837, + "minlon": -73.9518121, + "maxlat": 40.7309635, + "maxlon": -73.9517023 + }, + "nodes": [ + 2987758097, + 12042056997, + 4203066841, + 9996409556 + ], + "geometry": [ + { "lat": 40.7309635, "lon": -73.9518121 }, + { "lat": 40.7308791, "lon": -73.9517854 }, + { "lat": 40.7307712, "lon": -73.9517436 }, + { "lat": 40.7306837, "lon": -73.9517023 } + ], + "tags": { + "bicycle:lanes": "|no|no|designated", + "cycleway:lanes": "no|no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420370535, + "bounds": { + "minlat": 40.7355684, + "minlon": -73.9230607, + "maxlat": 40.7356383, + "maxlon": -73.9224632 + }, + "nodes": [ + 4203113822, + 2874974209, + 42825301 + ], + "geometry": [ + { "lat": 40.7355684, "lon": -73.9224632 }, + { "lat": 40.7355788, "lon": -73.9225569 }, + { "lat": 40.7356383, "lon": -73.9230607 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Laurel Hill", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes": "left|left;through|through|right" + } +}, +{ + "type": "way", + "id": 420370536, + "bounds": { + "minlat": 40.7451821, + "minlon": -73.9376818, + "maxlat": 40.7452429, + "maxlon": -73.9372630 + }, + "nodes": [ + 42938169, + 9981973381, + 9179115056, + 42935231 + ], + "geometry": [ + { "lat": 40.7452429, "lon": -73.9376818 }, + { "lat": 40.7452251, "lon": -73.9375856 }, + { "lat": 40.7452086, "lon": -73.9374838 }, + { "lat": 40.7451821, "lon": -73.9372630 } + ], + "tags": { + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "lanes:backward": "3", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left;through|through|through", + "turn:lanes:forward": "through|through|through;right" + } +}, +{ + "type": "way", + "id": 420370537, + "bounds": { + "minlat": 40.7451397, + "minlon": -73.9372630, + "maxlat": 40.7451821, + "maxlon": -73.9368967 + }, + "nodes": [ + 42935231, + 4636542633, + 11180927136, + 4203113823 + ], + "geometry": [ + { "lat": 40.7451821, "lon": -73.9372630 }, + { "lat": 40.7451676, "lon": -73.9371448 }, + { "lat": 40.7451514, "lon": -73.9370001 }, + { "lat": 40.7451397, "lon": -73.9368967 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "lanes:backward": "3", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|through|through" + } +}, +{ + "type": "way", + "id": 420370538, + "bounds": { + "minlat": 40.7452429, + "minlon": -73.9378334, + "maxlat": 40.7452742, + "maxlon": -73.9376818 + }, + "nodes": [ + 42941870, + 42938169 + ], + "geometry": [ + { "lat": 40.7452742, "lon": -73.9378334 }, + { "lat": 40.7452429, "lon": -73.9376818 } + ], + "tags": { + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "lanes:backward": "3", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420372644, + "bounds": { + "minlat": 40.7343656, + "minlon": -73.9380656, + "maxlat": 40.7347776, + "maxlon": -73.9376923 + }, + "nodes": [ + 4203135149, + 13505886472, + 4203135148, + 9982697964, + 1056072092 + ], + "geometry": [ + { "lat": 40.7347776, "lon": -73.9376923 }, + { "lat": 40.7346661, "lon": -73.9377996 }, + { "lat": 40.7345117, "lon": -73.9379482 }, + { "lat": 40.7344765, "lon": -73.9379776 }, + { "lat": 40.7343656, "lon": -73.9380656 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Van Dam Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "left;through|through|through;right" + } +}, +{ + "type": "way", + "id": 420494981, + "bounds": { + "minlat": 40.7575793, + "minlon": -73.9850795, + "maxlat": 40.7585968, + "maxlon": -73.9827028 + }, + "nodes": [ + 42439990, + 2435108452, + 8250908767, + 8318633104 + ], + "geometry": [ + { "lat": 40.7585968, "lon": -73.9850795 }, + { "lat": 40.7585496, "lon": -73.9849674 }, + { "lat": 40.7582569, "lon": -73.9842778 }, + { "lat": 40.7575793, "lon": -73.9827028 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420495320, + "bounds": { + "minlat": 40.8805244, + "minlon": -73.9521095, + "maxlat": 40.8810149, + "maxlon": -73.9512583 + }, + "nodes": [ + 103235604, + 6869076030, + 6869076037, + 12367941762, + 9239519756, + 103215751 + ], + "geometry": [ + { "lat": 40.8810149, "lon": -73.9521095 }, + { "lat": 40.8809260, "lon": -73.9519595 }, + { "lat": 40.8808091, "lon": -73.9517556 }, + { "lat": 40.8806294, "lon": -73.9514338 }, + { "lat": 40.8805961, "lon": -73.9513742 }, + { "lat": 40.8805244, "lon": -73.9512583 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East Palisade Avenue", + "old_ref": "CR 66", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 420495388, + "bounds": { + "minlat": 40.8805244, + "minlon": -73.9512583, + "maxlat": 40.8814600, + "maxlon": -73.9509502 + }, + "nodes": [ + 103215751, + 9239519757, + 6869076043 + ], + "geometry": [ + { "lat": 40.8805244, "lon": -73.9512583 }, + { "lat": 40.8807743, "lon": -73.9511750 }, + { "lat": 40.8814600, "lon": -73.9509502 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Sylvan Avenue", + "rcn_ref": "9", + "ref": "US 9W", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420496090, + "bounds": { + "minlat": 40.7536373, + "minlon": -73.9741902, + "maxlat": 40.7539937, + "maxlon": -73.9733359 + }, + "nodes": [ + 42434085, + 10165986958, + 3976829278 + ], + "geometry": [ + { "lat": 40.7539937, "lon": -73.9741902 }, + { "lat": 40.7539543, "lon": -73.9740959 }, + { "lat": 40.7536373, "lon": -73.9733359 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "East 46th Street", + "name:ru": "Восточная 46-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9.2" + } +}, +{ + "type": "way", + "id": 420496091, + "bounds": { + "minlat": 40.7632426, + "minlon": -73.9674482, + "maxlat": 40.7647390, + "maxlon": -73.9663609 + }, + "nodes": [ + 42429976, + 10125147530, + 10125147529, + 42447030, + 10125147534, + 10125147533, + 42436516, + 10166509686, + 10125147538 + ], + "geometry": [ + { "lat": 40.7647390, "lon": -73.9663609 }, + { "lat": 40.7646818, "lon": -73.9664025 }, + { "lat": 40.7641675, "lon": -73.9667775 }, + { "lat": 40.7641121, "lon": -73.9668167 }, + { "lat": 40.7640543, "lon": -73.9668589 }, + { "lat": 40.7635412, "lon": -73.9672338 }, + { "lat": 40.7634846, "lon": -73.9672732 }, + { "lat": 40.7634215, "lon": -73.9673172 }, + { "lat": 40.7632426, "lon": -73.9674482 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 420496529, + "bounds": { + "minlat": 40.7497277, + "minlon": -73.9836173, + "maxlat": 40.7503415, + "maxlon": -73.9831749 + }, + "nodes": [ + 42443950, + 9965135077, + 9965135066, + 42452973 + ], + "geometry": [ + { "lat": 40.7503415, "lon": -73.9831749 }, + { "lat": 40.7502701, "lon": -73.9832263 }, + { "lat": 40.7497863, "lon": -73.9835751 }, + { "lat": 40.7497277, "lon": -73.9836173 } + ], + "tags": { + "access:lanes": "yes|yes|yes|no|no", + "bus:lanes": "yes|yes|yes|designated|designated", + "hgv": "no", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 420497424, + "bounds": { + "minlat": 40.8816147, + "minlon": -73.9508985, + "maxlat": 40.8817271, + "maxlon": -73.9508570 + }, + "nodes": [ + 4204301394, + 4204322156 + ], + "geometry": [ + { "lat": 40.8816147, "lon": -73.9508985 }, + { "lat": 40.8817271, "lon": -73.9508570 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "4", + "name": "Sylvan Avenue", + "rcn_ref": "9", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 420499931, + "bounds": { + "minlat": 40.7496645, + "minlon": -73.9831749, + "maxlat": 40.7503415, + "maxlon": -73.9815704 + }, + "nodes": [ + 42445909, + 4903169923, + 9965135080, + 42443950 + ], + "geometry": [ + { "lat": 40.7496645, "lon": -73.9815704 }, + { "lat": 40.7497086, "lon": -73.9816748 }, + { "lat": 40.7502938, "lon": -73.9830618 }, + { "lat": 40.7503415, "lon": -73.9831749 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420499932, + "bounds": { + "minlat": 40.7464825, + "minlon": -73.9838914, + "maxlat": 40.7477705, + "maxlon": -73.9829612 + }, + "nodes": [ + 42445899, + 3252586224, + 4960503206, + 11043321022, + 10168210241, + 42445903, + 10168210237, + 7782216992, + 42445365 + ], + "geometry": [ + { "lat": 40.7464825, "lon": -73.9838914 }, + { "lat": 40.7465343, "lon": -73.9838534 }, + { "lat": 40.7466727, "lon": -73.9837557 }, + { "lat": 40.7470175, "lon": -73.9835021 }, + { "lat": 40.7470358, "lon": -73.9834886 }, + { "lat": 40.7471011, "lon": -73.9834426 }, + { "lat": 40.7471569, "lon": -73.9834020 }, + { "lat": 40.7476939, "lon": -73.9830185 }, + { "lat": 40.7477705, "lon": -73.9829612 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 420509471, + "bounds": { + "minlat": 40.7521986, + "minlon": -73.9963175, + "maxlat": 40.7534078, + "maxlon": -73.9934580 + }, + "nodes": [ + 42437663, + 5851792230, + 9971314387, + 5481859182, + 9971314386, + 9971314384, + 9971314385, + 5851792228, + 2649092010, + 10691086268, + 10691086265, + 8660596958, + 42435644 + ], + "geometry": [ + { "lat": 40.7534078, "lon": -73.9963175 }, + { "lat": 40.7533444, "lon": -73.9961585 }, + { "lat": 40.7531922, "lon": -73.9957964 }, + { "lat": 40.7531612, "lon": -73.9957238 }, + { "lat": 40.7531256, "lon": -73.9956407 }, + { "lat": 40.7529645, "lon": -73.9952991 }, + { "lat": 40.7529316, "lon": -73.9952288 }, + { "lat": 40.7528987, "lon": -73.9951546 }, + { "lat": 40.7527002, "lon": -73.9946820 }, + { "lat": 40.7526665, "lon": -73.9946004 }, + { "lat": 40.7526343, "lon": -73.9945223 }, + { "lat": 40.7522570, "lon": -73.9936074 }, + { "lat": 40.7521986, "lon": -73.9934580 } + ], + "tags": { + "access:lanes": "yes|no", + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420512231, + "bounds": { + "minlat": 40.7466180, + "minlon": -73.9938130, + "maxlat": 40.7472363, + "maxlon": -73.9933621 + }, + "nodes": [ + 42438547, + 10168911604, + 6899374967, + 11147382164, + 42434807 + ], + "geometry": [ + { "lat": 40.7472363, "lon": -73.9933621 }, + { "lat": 40.7471805, "lon": -73.9934027 }, + { "lat": 40.7468804, "lon": -73.9936216 }, + { "lat": 40.7466885, "lon": -73.9937616 }, + { "lat": 40.7466180, "lon": -73.9938130 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420512232, + "bounds": { + "minlat": 40.7466180, + "minlon": -73.9939658, + "maxlat": 40.7466835, + "maxlon": -73.9938130 + }, + "nodes": [ + 42434807, + 11147382166, + 2703104396 + ], + "geometry": [ + { "lat": 40.7466180, "lon": -73.9938130 }, + { "lat": 40.7466697, "lon": -73.9939337 }, + { "lat": 40.7466835, "lon": -73.9939658 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 27th Street", + "name:ru": "Западная 27-я стрит", + "name_1": "West 27 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420514148, + "bounds": { + "minlat": 40.7439299, + "minlon": -73.9852432, + "maxlat": 40.7446313, + "maxlon": -73.9835670 + }, + "nodes": [ + 42436748, + 4597668043, + 10166167635, + 12181339197, + 12181374901, + 12181374902, + 12181339200, + 12181339199, + 12181339198, + 12181374904, + 12181374903, + 12181374905, + 12181374906, + 12181339196, + 10166167622, + 42436746 + ], + "geometry": [ + { "lat": 40.7439299, "lon": -73.9835670 }, + { "lat": 40.7439834, "lon": -73.9836934 }, + { "lat": 40.7440132, "lon": -73.9837631 }, + { "lat": 40.7441016, "lon": -73.9839709 }, + { "lat": 40.7441160, "lon": -73.9839995 }, + { "lat": 40.7441318, "lon": -73.9840188 }, + { "lat": 40.7441482, "lon": -73.9840414 }, + { "lat": 40.7441608, "lon": -73.9840651 }, + { "lat": 40.7442618, "lon": -73.9843047 }, + { "lat": 40.7442783, "lon": -73.9843429 }, + { "lat": 40.7442887, "lon": -73.9843751 }, + { "lat": 40.7443061, "lon": -73.9844423 }, + { "lat": 40.7443169, "lon": -73.9844787 }, + { "lat": 40.7443278, "lon": -73.9845105 }, + { "lat": 40.7445945, "lon": -73.9851487 }, + { "lat": 40.7446313, "lon": -73.9852432 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 29th Street", + "name:ru": "Восточная 29-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420514149, + "bounds": { + "minlat": 40.7439299, + "minlon": -73.9835670, + "maxlat": 40.7451567, + "maxlon": -73.9826736 + }, + "nodes": [ + 42436748, + 10166167631, + 12181374910, + 8119462490, + 42445409, + 8119462481, + 12181374912, + 8119462463, + 42456568 + ], + "geometry": [ + { "lat": 40.7439299, "lon": -73.9835670 }, + { "lat": 40.7439801, "lon": -73.9835297 }, + { "lat": 40.7444499, "lon": -73.9831886 }, + { "lat": 40.7444848, "lon": -73.9831632 }, + { "lat": 40.7445463, "lon": -73.9831186 }, + { "lat": 40.7445920, "lon": -73.9830853 }, + { "lat": 40.7450705, "lon": -73.9827371 }, + { "lat": 40.7451080, "lon": -73.9827095 }, + { "lat": 40.7451567, "lon": -73.9826736 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 420519634, + "bounds": { + "minlat": 40.7390514, + "minlon": -73.9843835, + "maxlat": 40.7393571, + "maxlon": -73.9836528 + }, + "nodes": [ + 9971262460, + 9971262462 + ], + "geometry": [ + { "lat": 40.7390514, "lon": -73.9836528 }, + { "lat": 40.7393571, "lon": -73.9843835 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420519635, + "bounds": { + "minlat": 40.7401693, + "minlon": -73.9863033, + "maxlat": 40.7408256, + "maxlon": -73.9858267 + }, + "nodes": [ + 42448693, + 10166167539, + 5266429281, + 12181339177, + 10166167524, + 42436578 + ], + "geometry": [ + { "lat": 40.7401693, "lon": -73.9863033 }, + { "lat": 40.7402603, "lon": -73.9862363 }, + { "lat": 40.7404175, "lon": -73.9861211 }, + { "lat": 40.7407400, "lon": -73.9858902 }, + { "lat": 40.7407776, "lon": -73.9858619 }, + { "lat": 40.7408256, "lon": -73.9858267 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 420520112, + "bounds": { + "minlat": 40.7377527, + "minlon": -73.9899534, + "maxlat": 40.7384929, + "maxlon": -73.9882046 + }, + "nodes": [ + 4597668038, + 10172843106, + 8569045595, + 42428179 + ], + "geometry": [ + { "lat": 40.7377527, "lon": -73.9882046 }, + { "lat": 40.7377911, "lon": -73.9882957 }, + { "lat": 40.7384501, "lon": -73.9898575 }, + { "lat": 40.7384929, "lon": -73.9899534 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 19th Street", + "name:ru": "Восточная 19-я стрит", + "name_1": "East 19 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420520113, + "bounds": { + "minlat": 40.7365407, + "minlon": -73.9889803, + "maxlat": 40.7374857, + "maxlon": -73.9882908 + }, + "nodes": [ + 42437021, + 3252590544, + 5266429282, + 12183283831, + 9679181039, + 42437280, + 9679181075, + 4205565503 + ], + "geometry": [ + { "lat": 40.7365407, "lon": -73.9889803 }, + { "lat": 40.7366037, "lon": -73.9889319 }, + { "lat": 40.7370153, "lon": -73.9886292 }, + { "lat": 40.7370400, "lon": -73.9886110 }, + { "lat": 40.7370813, "lon": -73.9885819 }, + { "lat": 40.7371364, "lon": -73.9885416 }, + { "lat": 40.7371910, "lon": -73.9885012 }, + { "lat": 40.7374857, "lon": -73.9882908 } + ], + "tags": { + "cycleway:right": "no", + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lane_markings": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 420522049, + "bounds": { + "minlat": 40.7375670, + "minlon": -74.0099368, + "maxlat": 40.7387804, + "maxlon": -74.0098067 + }, + "nodes": [ + 42439099, + 593816490, + 12161966159, + 12161966158, + 12161966157, + 246647917, + 12161966119, + 246861652, + 12161966118, + 12161966117, + 12161966116, + 246649429 + ], + "geometry": [ + { "lat": 40.7375670, "lon": -74.0098067 }, + { "lat": 40.7376541, "lon": -74.0098119 }, + { "lat": 40.7377396, "lon": -74.0098185 }, + { "lat": 40.7378250, "lon": -74.0098246 }, + { "lat": 40.7379359, "lon": -74.0098359 }, + { "lat": 40.7380417, "lon": -74.0098496 }, + { "lat": 40.7384818, "lon": -74.0099110 }, + { "lat": 40.7385359, "lon": -74.0099169 }, + { "lat": 40.7385908, "lon": -74.0099251 }, + { "lat": 40.7386540, "lon": -74.0099309 }, + { "lat": 40.7387136, "lon": -74.0099340 }, + { "lat": 40.7387804, "lon": -74.0099368 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420522050, + "bounds": { + "minlat": 40.7393421, + "minlon": -74.0100400, + "maxlat": 40.7404761, + "maxlon": -74.0094006 + }, + "nodes": [ + 246647955, + 12161932084, + 12161932085, + 8862521332, + 246647956, + 246647957, + 8862521326, + 8862521345, + 246647958, + 2376384365, + 8862521343, + 246648627 + ], + "geometry": [ + { "lat": 40.7404761, "lon": -74.0094006 }, + { "lat": 40.7404267, "lon": -74.0094297 }, + { "lat": 40.7403355, "lon": -74.0094840 }, + { "lat": 40.7402628, "lon": -74.0095291 }, + { "lat": 40.7397954, "lon": -74.0098194 }, + { "lat": 40.7396925, "lon": -74.0098802 }, + { "lat": 40.7396226, "lon": -74.0099198 }, + { "lat": 40.7395441, "lon": -74.0099583 }, + { "lat": 40.7394680, "lon": -74.0099924 }, + { "lat": 40.7394132, "lon": -74.0100148 }, + { "lat": 40.7393712, "lon": -74.0100303 }, + { "lat": 40.7393421, "lon": -74.0100400 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420522443, + "bounds": { + "minlat": 40.7346949, + "minlon": -74.0007220, + "maxlat": 40.7359260, + "maxlon": -73.9999737 + }, + "nodes": [ + 42432194, + 8307642050, + 12010304135, + 12179564383, + 8307642056, + 42432199, + 8307642059, + 42432201 + ], + "geometry": [ + { "lat": 40.7346949, "lon": -73.9999737 }, + { "lat": 40.7347436, "lon": -74.0000037 }, + { "lat": 40.7347784, "lon": -74.0000276 }, + { "lat": 40.7348036, "lon": -74.0000427 }, + { "lat": 40.7352788, "lon": -74.0003292 }, + { "lat": 40.7353213, "lon": -74.0003548 }, + { "lat": 40.7353713, "lon": -74.0003852 }, + { "lat": 40.7359260, "lon": -74.0007220 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Greenwich Avenue", + "name:etymology:wikidata": "Q205380", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5604832", + "wikipedia": "en:Greenwich Avenue" + } +}, +{ + "type": "way", + "id": 420522444, + "bounds": { + "minlat": 40.7340457, + "minlon": -73.9982740, + "maxlat": 40.7353910, + "maxlon": -73.9950635 + }, + "nodes": [ + 42449067, + 8309479764, + 8309479737, + 42430247 + ], + "geometry": [ + { "lat": 40.7340457, "lon": -73.9950635 }, + { "lat": 40.7340864, "lon": -73.9951575 }, + { "lat": 40.7353375, "lon": -73.9981465 }, + { "lat": 40.7353910, "lon": -73.9982740 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 11th Street", + "name:ru": "Западная 11-я стрит", + "name_1": "West 11 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420522695, + "bounds": { + "minlat": 40.7344282, + "minlon": -73.9907407, + "maxlat": 40.7347875, + "maxlon": -73.9898898 + }, + "nodes": [ + 42428493, + 3670742435, + 12179582182, + 3670742477, + 42440721 + ], + "geometry": [ + { "lat": 40.7347875, "lon": -73.9907407 }, + { "lat": 40.7347422, "lon": -73.9906318 }, + { "lat": 40.7347220, "lon": -73.9905842 }, + { "lat": 40.7344814, "lon": -73.9900184 }, + { "lat": 40.7344282, "lon": -73.9898898 } + ], + "tags": { + "bus": "yes", + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (06:00-22:00)", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420526338, + "bounds": { + "minlat": 40.7298564, + "minlon": -73.9928410, + "maxlat": 40.7300800, + "maxlon": -73.9913946 + }, + "nodes": [ + 42428471, + 8309479157, + 12179562751, + 3919350758, + 42439236 + ], + "geometry": [ + { "lat": 40.7300800, "lon": -73.9928410 }, + { "lat": 40.7300641, "lon": -73.9927436 }, + { "lat": 40.7298986, "lon": -73.9916650 }, + { "lat": 40.7298803, "lon": -73.9915432 }, + { "lat": 40.7298564, "lon": -73.9913946 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Astor Place", + "name:etymology:wikidata": "Q57423", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592990", + "wikipedia": "en:Astor Place" + } +}, +{ + "type": "way", + "id": 420530113, + "bounds": { + "minlat": 40.7303210, + "minlon": -74.0046880, + "maxlat": 40.7307190, + "maxlon": -74.0044600 + }, + "nodes": [ + 42430782, + 8214320103, + 9627010520, + 42430770 + ], + "geometry": [ + { "lat": 40.7307190, "lon": -74.0044600 }, + { "lat": 40.7306711, "lon": -74.0044874 }, + { "lat": 40.7303881, "lon": -74.0046496 }, + { "lat": 40.7303210, "lon": -74.0046880 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420530114, + "bounds": { + "minlat": 40.7287130, + "minlon": -74.0044600, + "maxlat": 40.7307190, + "maxlon": -74.0032970 + }, + "nodes": [ + 42431515, + 13036556276, + 42431517, + 13036556275, + 13036556285, + 42431519, + 8309469092, + 5866337890, + 8214331037, + 42431524, + 9627010521, + 8214320106, + 42430782 + ], + "geometry": [ + { "lat": 40.7287130, "lon": -74.0032970 }, + { "lat": 40.7293116, "lon": -74.0036386 }, + { "lat": 40.7293440, "lon": -74.0036570 }, + { "lat": 40.7293903, "lon": -74.0036838 }, + { "lat": 40.7298005, "lon": -74.0039209 }, + { "lat": 40.7298634, "lon": -74.0039573 }, + { "lat": 40.7299293, "lon": -74.0039963 }, + { "lat": 40.7303743, "lon": -74.0042600 }, + { "lat": 40.7304112, "lon": -74.0042823 }, + { "lat": 40.7304470, "lon": -74.0043030 }, + { "lat": 40.7304915, "lon": -74.0043327 }, + { "lat": 40.7305821, "lon": -74.0043810 }, + { "lat": 40.7307190, "lon": -74.0044600 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Bedford Street", + "name:etymology:wikidata": "Q64402624", + "name:ko": "배드포드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420532226, + "bounds": { + "minlat": 40.8799196, + "minlon": -73.9802968, + "maxlat": 40.8800501, + "maxlon": -73.9800594 + }, + "nodes": [ + 4204720489, + 12023838845 + ], + "geometry": [ + { "lat": 40.8800501, "lon": -73.9802968 }, + { "lat": 40.8799196, "lon": -73.9800594 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Van Nostrand Avenue", + "oneway": "yes", + "ref": "CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631", + "turn:lanes:forward": "left|left|through|right" + } +}, +{ + "type": "way", + "id": 420533025, + "bounds": { + "minlat": 40.8801183, + "minlon": -73.9513984, + "maxlat": 40.8805244, + "maxlon": -73.9512583 + }, + "nodes": [ + 4204730328, + 12367941761, + 7930376709, + 103215751 + ], + "geometry": [ + { "lat": 40.8801183, "lon": -73.9513984 }, + { "lat": 40.8803417, "lon": -73.9513193 }, + { "lat": 40.8804063, "lon": -73.9512965 }, + { "lat": 40.8805244, "lon": -73.9512583 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420533059, + "bounds": { + "minlat": 40.8786571, + "minlon": -73.9519019, + "maxlat": 40.8791261, + "maxlon": -73.9517806 + }, + "nodes": [ + 103180324, + 7930376710, + 4204731989 + ], + "geometry": [ + { "lat": 40.8786571, "lon": -73.9519019 }, + { "lat": 40.8788704, "lon": -73.9518522 }, + { "lat": 40.8791261, "lon": -73.9517806 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420533060, + "bounds": { + "minlat": 40.8791261, + "minlon": -73.9517806, + "maxlat": 40.8801183, + "maxlon": -73.9513984 + }, + "nodes": [ + 4204731989, + 103215744, + 103150964, + 103215746, + 4204730328 + ], + "geometry": [ + { "lat": 40.8791261, "lon": -73.9517806 }, + { "lat": 40.8795765, "lon": -73.9516114 }, + { "lat": 40.8796788, "lon": -73.9515695 }, + { "lat": 40.8799527, "lon": -73.9514608 }, + { "lat": 40.8801183, "lon": -73.9513984 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "4", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 420533098, + "bounds": { + "minlat": 40.8782597, + "minlon": -73.9519577, + "maxlat": 40.8786571, + "maxlon": -73.9519019 + }, + "nodes": [ + 103215739, + 7930376702, + 7930376708, + 7930376715, + 103180324 + ], + "geometry": [ + { "lat": 40.8782597, "lon": -73.9519577 }, + { "lat": 40.8783500, "lon": -73.9519476 }, + { "lat": 40.8784601, "lon": -73.9519326 }, + { "lat": 40.8785620, "lon": -73.9519185 }, + { "lat": 40.8786571, "lon": -73.9519019 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420533157, + "bounds": { + "minlat": 40.8733980, + "minlon": -73.9532631, + "maxlat": 40.8782597, + "maxlon": -73.9519577 + }, + "nodes": [ + 4204733889, + 8219460640, + 7930268873, + 8219460641, + 5721918260, + 5901981558, + 5721918267, + 5721918276, + 8219460647, + 6605713602, + 8374335788, + 103215730, + 7930295791, + 103215731, + 6362121933, + 7930268871, + 103215732, + 7930268880, + 7930295789, + 6362121924, + 7930268869, + 6903047157, + 7930268878, + 7930295787, + 103215736, + 103215737, + 103215738, + 7930376717, + 7933211854, + 103215739 + ], + "geometry": [ + { "lat": 40.8733980, "lon": -73.9532631 }, + { "lat": 40.8734788, "lon": -73.9532231 }, + { "lat": 40.8734878, "lon": -73.9532186 }, + { "lat": 40.8738471, "lon": -73.9530621 }, + { "lat": 40.8739684, "lon": -73.9530111 }, + { "lat": 40.8739933, "lon": -73.9530007 }, + { "lat": 40.8742434, "lon": -73.9528957 }, + { "lat": 40.8747780, "lon": -73.9526715 }, + { "lat": 40.8749556, "lon": -73.9525981 }, + { "lat": 40.8751107, "lon": -73.9525340 }, + { "lat": 40.8751765, "lon": -73.9525067 }, + { "lat": 40.8756084, "lon": -73.9523278 }, + { "lat": 40.8757099, "lon": -73.9522891 }, + { "lat": 40.8758179, "lon": -73.9522511 }, + { "lat": 40.8758508, "lon": -73.9522399 }, + { "lat": 40.8759254, "lon": -73.9522162 }, + { "lat": 40.8760329, "lon": -73.9521842 }, + { "lat": 40.8761404, "lon": -73.9521565 }, + { "lat": 40.8762522, "lon": -73.9521312 }, + { "lat": 40.8763621, "lon": -73.9521086 }, + { "lat": 40.8764744, "lon": -73.9520884 }, + { "lat": 40.8765895, "lon": -73.9520719 }, + { "lat": 40.8767002, "lon": -73.9520584 }, + { "lat": 40.8768076, "lon": -73.9520497 }, + { "lat": 40.8769164, "lon": -73.9520416 }, + { "lat": 40.8770273, "lon": -73.9520343 }, + { "lat": 40.8778147, "lon": -73.9519874 }, + { "lat": 40.8781075, "lon": -73.9519697 }, + { "lat": 40.8781593, "lon": -73.9519656 }, + { "lat": 40.8782597, "lon": -73.9519577 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "4", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 420533158, + "bounds": { + "minlat": 40.8730860, + "minlon": -73.9534358, + "maxlat": 40.8733980, + "maxlon": -73.9532631 + }, + "nodes": [ + 103215727, + 7930295793, + 103215728, + 4204733889 + ], + "geometry": [ + { "lat": 40.8730860, "lon": -73.9534358 }, + { "lat": 40.8732019, "lon": -73.9533675 }, + { "lat": 40.8733030, "lon": -73.9533128 }, + { "lat": 40.8733980, "lon": -73.9532631 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420533164, + "bounds": { + "minlat": 40.8727480, + "minlon": -73.9536596, + "maxlat": 40.8730860, + "maxlon": -73.9534358 + }, + "nodes": [ + 103215723, + 7930268884, + 103215725, + 103215727 + ], + "geometry": [ + { "lat": 40.8727480, "lon": -73.9536596 }, + { "lat": 40.8728562, "lon": -73.9535847 }, + { "lat": 40.8729604, "lon": -73.9535160 }, + { "lat": 40.8730860, "lon": -73.9534358 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420533227, + "bounds": { + "minlat": 40.8694706, + "minlon": -73.9569648, + "maxlat": 40.8697591, + "maxlon": -73.9566790 + }, + "nodes": [ + 4204734690, + 103213791 + ], + "geometry": [ + { "lat": 40.8694706, "lon": -73.9569648 }, + { "lat": 40.8697591, "lon": -73.9566790 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420533228, + "bounds": { + "minlat": 40.8652508, + "minlon": -73.9609977, + "maxlat": 40.8678759, + "maxlon": -73.9585289 + }, + "nodes": [ + 103215711, + 7930268867, + 7790548814, + 7930268876, + 7652321331, + 5707417263, + 5707417260, + 103215713, + 7930295792, + 7930268872, + 7930268881, + 7930295790, + 103117840, + 5108581304, + 103215715 + ], + "geometry": [ + { "lat": 40.8652508, "lon": -73.9609977 }, + { "lat": 40.8653138, "lon": -73.9609375 }, + { "lat": 40.8654242, "lon": -73.9608334 }, + { "lat": 40.8655555, "lon": -73.9607116 }, + { "lat": 40.8657835, "lon": -73.9605060 }, + { "lat": 40.8658385, "lon": -73.9604559 }, + { "lat": 40.8659494, "lon": -73.9603531 }, + { "lat": 40.8663386, "lon": -73.9600014 }, + { "lat": 40.8665604, "lon": -73.9598002 }, + { "lat": 40.8667358, "lon": -73.9596393 }, + { "lat": 40.8669173, "lon": -73.9594666 }, + { "lat": 40.8670863, "lon": -73.9593022 }, + { "lat": 40.8671704, "lon": -73.9592205 }, + { "lat": 40.8675514, "lon": -73.9588470 }, + { "lat": 40.8678759, "lon": -73.9585289 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "4", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 420533254, + "bounds": { + "minlat": 40.8683111, + "minlon": -73.9580990, + "maxlat": 40.8685732, + "maxlon": -73.9578434 + }, + "nodes": [ + 4204737889, + 8601159330, + 4204737890 + ], + "geometry": [ + { "lat": 40.8683111, "lon": -73.9580990 }, + { "lat": 40.8684618, "lon": -73.9579521 }, + { "lat": 40.8685732, "lon": -73.9578434 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420533255, + "bounds": { + "minlat": 40.8685732, + "minlon": -73.9578434, + "maxlat": 40.8694706, + "maxlon": -73.9569648 + }, + "nodes": [ + 4204737890, + 6339876889, + 6339876886, + 6616072819, + 4204734690 + ], + "geometry": [ + { "lat": 40.8685732, "lon": -73.9578434 }, + { "lat": 40.8687697, "lon": -73.9576523 }, + { "lat": 40.8690412, "lon": -73.9573861 }, + { "lat": 40.8691869, "lon": -73.9572430 }, + { "lat": 40.8694706, "lon": -73.9569648 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "4", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 420533272, + "bounds": { + "minlat": 40.8681630, + "minlon": -73.9582447, + "maxlat": 40.8683111, + "maxlon": -73.9580990 + }, + "nodes": [ + 4204740790, + 4204737889 + ], + "geometry": [ + { "lat": 40.8681630, "lon": -73.9582447 }, + { "lat": 40.8683111, "lon": -73.9580990 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420533273, + "bounds": { + "minlat": 40.8678759, + "minlon": -73.9585289, + "maxlat": 40.8680179, + "maxlon": -73.9583879 + }, + "nodes": [ + 103215715, + 4204740789 + ], + "geometry": [ + { "lat": 40.8678759, "lon": -73.9585289 }, + { "lat": 40.8680179, "lon": -73.9583879 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420533274, + "bounds": { + "minlat": 40.8680179, + "minlon": -73.9583879, + "maxlat": 40.8681630, + "maxlon": -73.9582447 + }, + "nodes": [ + 4204740789, + 4204740790 + ], + "geometry": [ + { "lat": 40.8680179, "lon": -73.9583879 }, + { "lat": 40.8681630, "lon": -73.9582447 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "4", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 420534024, + "bounds": { + "minlat": 40.8789869, + "minlon": -73.9498952, + "maxlat": 40.8795337, + "maxlon": -73.9495382 + }, + "nodes": [ + 8374457911, + 8374457912, + 9239455212, + 4053345989, + 9239455213, + 103195292 + ], + "geometry": [ + { "lat": 40.8789869, "lon": -73.9498952 }, + { "lat": 40.8791639, "lon": -73.9497930 }, + { "lat": 40.8793077, "lon": -73.9497001 }, + { "lat": 40.8794498, "lon": -73.9496054 }, + { "lat": 40.8794882, "lon": -73.9495765 }, + { "lat": 40.8795337, "lon": -73.9495382 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "40 mph", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "turn:lanes:forward": "left|right" + } +}, +{ + "type": "way", + "id": 420535370, + "bounds": { + "minlat": 40.8525710, + "minlon": -73.9642015, + "maxlat": 40.8527137, + "maxlon": -73.9641712 + }, + "nodes": [ + 103195198, + 7930462134, + 5103417725, + 6851079673 + ], + "geometry": [ + { "lat": 40.8525710, "lon": -73.9642015 }, + { "lat": 40.8526306, "lon": -73.9641898 }, + { "lat": 40.8526856, "lon": -73.9641779 }, + { "lat": 40.8527137, "lon": -73.9641712 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420535381, + "bounds": { + "minlat": 40.8526089, + "minlon": -73.9649511, + "maxlat": 40.8526582, + "maxlon": -73.9645551 + }, + "nodes": [ + 4204767289, + 9551976629 + ], + "geometry": [ + { "lat": 40.8526089, "lon": -73.9645551 }, + { "lat": 40.8526582, "lon": -73.9649511 } + ], + "tags": { + "highway": "primary", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420535609, + "bounds": { + "minlat": 40.8519445, + "minlon": -73.9643020, + "maxlat": 40.8525710, + "maxlon": -73.9642015 + }, + "nodes": [ + 4204770489, + 7930462141, + 103195198 + ], + "geometry": [ + { "lat": 40.8519445, "lon": -73.9643020 }, + { "lat": 40.8524543, "lon": -73.9642212 }, + { "lat": 40.8525710, "lon": -73.9642015 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "oneway": "no", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420535923, + "bounds": { + "minlat": 40.8529762, + "minlon": -73.9670687, + "maxlat": 40.8531570, + "maxlon": -73.9665579 + }, + "nodes": [ + 298806591, + 10000920096, + 7930510632, + 4204773589 + ], + "geometry": [ + { "lat": 40.8531570, "lon": -73.9670687 }, + { "lat": 40.8531117, "lon": -73.9669411 }, + { "lat": 40.8531005, "lon": -73.9669095 }, + { "lat": 40.8529762, "lon": -73.9665579 } + ], + "tags": { + "highway": "primary", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left;through|right" + } +}, +{ + "type": "way", + "id": 420536007, + "bounds": { + "minlat": 40.8534890, + "minlon": -73.9682895, + "maxlat": 40.8535986, + "maxlon": -73.9680031 + }, + "nodes": [ + 4204785600, + 4204777289 + ], + "geometry": [ + { "lat": 40.8535986, "lon": -73.9682895 }, + { "lat": 40.8534890, "lon": -73.9680031 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "name": "Bridge Plaza South", + "name_1": "Kelby Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 420536008, + "bounds": { + "minlat": 40.8531570, + "minlon": -73.9672490, + "maxlat": 40.8532212, + "maxlon": -73.9670687 + }, + "nodes": [ + 298809690, + 298806591 + ], + "geometry": [ + { "lat": 40.8532212, "lon": -73.9672490 }, + { "lat": 40.8531570, "lon": -73.9670687 } + ], + "tags": { + "alt_name": "Bridge Plaza South", + "highway": "primary", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 420536961, + "bounds": { + "minlat": 40.8535986, + "minlon": -73.9685159, + "maxlat": 40.8536766, + "maxlon": -73.9682895 + }, + "nodes": [ + 103205070, + 12824924112, + 4204785600 + ], + "geometry": [ + { "lat": 40.8536766, "lon": -73.9685159 }, + { "lat": 40.8536197, "lon": -73.9683508 }, + { "lat": 40.8535986, "lon": -73.9682895 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Bridge Plaza South", + "name_1": "Kelby Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left|", + "turn:lanes:forward": "through" + } +}, +{ + "type": "way", + "id": 420536962, + "bounds": { + "minlat": 40.8534183, + "minlon": -73.9686768, + "maxlat": 40.8536766, + "maxlon": -73.9685159 + }, + "nodes": [ + 103205070, + 12824924110, + 4204785599 + ], + "geometry": [ + { "lat": 40.8536766, "lon": -73.9685159 }, + { "lat": 40.8536003, "lon": -73.9685634 }, + { "lat": 40.8534183, "lon": -73.9686768 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left||", + "turn:lanes:forward": "through|through" + } +}, +{ + "type": "way", + "id": 420537330, + "bounds": { + "minlat": 40.8536766, + "minlon": -73.9690149, + "maxlat": 40.8538565, + "maxlon": -73.9685159 + }, + "nodes": [ + 4204781080, + 103280491, + 12824924113, + 103205070 + ], + "geometry": [ + { "lat": 40.8538565, "lon": -73.9690149 }, + { "lat": 40.8537385, "lon": -73.9686963 }, + { "lat": 40.8537280, "lon": -73.9686657 }, + { "lat": 40.8536766, "lon": -73.9685159 } + ], + "tags": { + "highway": "primary", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "||right" + } +}, +{ + "type": "way", + "id": 420537526, + "bounds": { + "minlat": 40.8508180, + "minlon": -73.9698960, + "maxlat": 40.8511290, + "maxlon": -73.9697550 + }, + "nodes": [ + 4204789605, + 103254094 + ], + "geometry": [ + { "lat": 40.8508180, "lon": -73.9698960 }, + { "lat": 40.8511290, "lon": -73.9697550 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "3", + "name": "Schlosser Street", + "oneway": "yes", + "ref": "NJ 67", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Schlosser", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420537528, + "bounds": { + "minlat": 40.8496213, + "minlon": -73.9703707, + "maxlat": 40.8506730, + "maxlon": -73.9699617 + }, + "nodes": [ + 103205050, + 12401386046, + 12401386047, + 12401386044, + 5449315446, + 630656244, + 5330468372, + 6896079418, + 9570301922 + ], + "geometry": [ + { "lat": 40.8496213, "lon": -73.9703707 }, + { "lat": 40.8496725, "lon": -73.9703256 }, + { "lat": 40.8497712, "lon": -73.9703241 }, + { "lat": 40.8498818, "lon": -73.9703043 }, + { "lat": 40.8499934, "lon": -73.9702693 }, + { "lat": 40.8501245, "lon": -73.9702135 }, + { "lat": 40.8504429, "lon": -73.9700661 }, + { "lat": 40.8505011, "lon": -73.9700397 }, + { "lat": 40.8506730, "lon": -73.9699617 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "2", + "name": "Schlosser Street", + "oneway": "yes", + "ref": "NJ 67", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Schlosser", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 420537615, + "bounds": { + "minlat": 40.8511850, + "minlon": -73.9701630, + "maxlat": 40.8514268, + "maxlon": -73.9700171 + }, + "nodes": [ + 4204792289, + 103205062 + ], + "geometry": [ + { "lat": 40.8514268, "lon": -73.9700171 }, + { "lat": 40.8511850, "lon": -73.9701630 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "3", + "name": "Lemoine Avenue", + "oneway": "yes", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left|none|none" + } +}, +{ + "type": "way", + "id": 420537616, + "bounds": { + "minlat": 40.8518971, + "minlon": -73.9696532, + "maxlat": 40.8519801, + "maxlon": -73.9695600 + }, + "nodes": [ + 103205068, + 6964853610 + ], + "geometry": [ + { "lat": 40.8519801, "lon": -73.9695600 }, + { "lat": 40.8518971, "lon": -73.9696532 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "2", + "name": "Lemoine Avenue", + "oneway": "yes", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 420537793, + "bounds": { + "minlat": 40.8521006, + "minlon": -73.9726264, + "maxlat": 40.8522944, + "maxlon": -73.9723130 + }, + "nodes": [ + 103174599, + 4204795089 + ], + "geometry": [ + { "lat": 40.8521006, "lon": -73.9723130 }, + { "lat": 40.8522944, "lon": -73.9726264 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left|through" + } +}, +{ + "type": "way", + "id": 420538097, + "bounds": { + "minlat": 40.8538476, + "minlon": -73.9750124, + "maxlat": 40.8544723, + "maxlon": -73.9743728 + }, + "nodes": [ + 4204798789, + 7407669620, + 7407669618, + 7407669616, + 5108603017, + 7407669614, + 7407669612, + 103132820 + ], + "geometry": [ + { "lat": 40.8544723, "lon": -73.9743728 }, + { "lat": 40.8544252, "lon": -73.9744215 }, + { "lat": 40.8543094, "lon": -73.9745415 }, + { "lat": 40.8541987, "lon": -73.9746562 }, + { "lat": 40.8541889, "lon": -73.9746663 }, + { "lat": 40.8540870, "lon": -73.9747696 }, + { "lat": 40.8539343, "lon": -73.9749244 }, + { "lat": 40.8538476, "lon": -73.9750124 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "lanes": "2", + "name": "Linwood Avenue", + "oneway": "yes", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 420538307, + "bounds": { + "minlat": 40.8538476, + "minlon": -73.9753004, + "maxlat": 40.8540192, + "maxlon": -73.9750124 + }, + "nodes": [ + 4204802389, + 7442511350, + 103132820 + ], + "geometry": [ + { "lat": 40.8540192, "lon": -73.9753004 }, + { "lat": 40.8539929, "lon": -73.9752562 }, + { "lat": 40.8538476, "lon": -73.9750124 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 420538634, + "bounds": { + "minlat": 40.8608435, + "minlon": -73.9693030, + "maxlat": 40.8609982, + "maxlon": -73.9687634 + }, + "nodes": [ + 7301162504, + 1952055209, + 76463552, + 4204815757, + 7301162514 + ], + "geometry": [ + { "lat": 40.8608435, "lon": -73.9693030 }, + { "lat": 40.8608853, "lon": -73.9691720 }, + { "lat": 40.8609242, "lon": -73.9690417 }, + { "lat": 40.8609621, "lon": -73.9689003 }, + { "lat": 40.8609982, "lon": -73.9687634 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420538784, + "bounds": { + "minlat": 40.8602084, + "minlon": -73.9708066, + "maxlat": 40.8605965, + "maxlon": -73.9700735 + }, + "nodes": [ + 1952055197, + 7921644081, + 7921644069, + 76463556, + 7921644064, + 76463555, + 4204820389 + ], + "geometry": [ + { "lat": 40.8602084, "lon": -73.9708066 }, + { "lat": 40.8602795, "lon": -73.9706900 }, + { "lat": 40.8603385, "lon": -73.9705868 }, + { "lat": 40.8604058, "lon": -73.9704644 }, + { "lat": 40.8604653, "lon": -73.9703490 }, + { "lat": 40.8605247, "lon": -73.9702259 }, + { "lat": 40.8605965, "lon": -73.9700735 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "ref": "US 9W", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420538785, + "bounds": { + "minlat": 40.8605965, + "minlon": -73.9700735, + "maxlat": 40.8608435, + "maxlon": -73.9693030 + }, + "nodes": [ + 4204820389, + 6926319202, + 76463554, + 7921644076, + 76463553, + 7921644080, + 7301162504 + ], + "geometry": [ + { "lat": 40.8605965, "lon": -73.9700735 }, + { "lat": 40.8606265, "lon": -73.9699471 }, + { "lat": 40.8606543, "lon": -73.9698243 }, + { "lat": 40.8607050, "lon": -73.9696978 }, + { "lat": 40.8607529, "lon": -73.9695663 }, + { "lat": 40.8607986, "lon": -73.9694361 }, + { "lat": 40.8608435, "lon": -73.9693030 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420538847, + "bounds": { + "minlat": 40.8600068, + "minlon": -73.9711229, + "maxlat": 40.8602084, + "maxlon": -73.9708066 + }, + "nodes": [ + 76463558, + 7921644077, + 7921644073, + 1952055197 + ], + "geometry": [ + { "lat": 40.8600068, "lon": -73.9711229 }, + { "lat": 40.8600705, "lon": -73.9710237 }, + { "lat": 40.8601477, "lon": -73.9709039 }, + { "lat": 40.8602084, "lon": -73.9708066 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "ref": "US 9W", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 420539856, + "bounds": { + "minlat": 40.8553260, + "minlon": -73.9773380, + "maxlat": 40.8556387, + "maxlon": -73.9771357 + }, + "nodes": [ + 4204827689, + 6964853616, + 103276287 + ], + "geometry": [ + { "lat": 40.8556387, "lon": -73.9771357 }, + { "lat": 40.8554149, "lon": -73.9773107 }, + { "lat": 40.8553260, "lon": -73.9773380 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Edwin Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edwin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left|through;right" + } +}, +{ + "type": "way", + "id": 420540179, + "bounds": { + "minlat": 40.8510346, + "minlon": -73.9690713, + "maxlat": 40.8510502, + "maxlon": -73.9689074 + }, + "nodes": [ + 4204832189, + 4204832190 + ], + "geometry": [ + { "lat": 40.8510346, "lon": -73.9689074 }, + { "lat": 40.8510502, "lon": -73.9690713 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "||right" + } +}, +{ + "type": "way", + "id": 420540181, + "bounds": { + "minlat": 40.8509760, + "minlon": -73.9689074, + "maxlat": 40.8510346, + "maxlon": -73.9683598 + }, + "nodes": [ + 103235788, + 10002778623, + 103209941, + 4204832189 + ], + "geometry": [ + { "lat": 40.8509760, "lon": -73.9683598 }, + { "lat": 40.8509965, "lon": -73.9685429 }, + { "lat": 40.8510169, "lon": -73.9687248 }, + { "lat": 40.8510346, "lon": -73.9689074 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left|through|right" + } +}, +{ + "type": "way", + "id": 420540186, + "bounds": { + "minlat": 40.8508998, + "minlon": -73.9677962, + "maxlat": 40.8509166, + "maxlon": -73.9676437 + }, + "nodes": [ + 103126803, + 4204834689 + ], + "geometry": [ + { "lat": 40.8508998, "lon": -73.9676437 }, + { "lat": 40.8509166, "lon": -73.9677962 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 420540301, + "bounds": { + "minlat": 40.8509166, + "minlon": -73.9683598, + "maxlat": 40.8509760, + "maxlon": -73.9677962 + }, + "nodes": [ + 4204834689, + 10002778618, + 103235788 + ], + "geometry": [ + { "lat": 40.8509166, "lon": -73.9677962 }, + { "lat": 40.8509535, "lon": -73.9681460 }, + { "lat": 40.8509760, "lon": -73.9683598 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left|through|right" + } +}, +{ + "type": "way", + "id": 420540972, + "bounds": { + "minlat": 40.8508325, + "minlon": -73.9674882, + "maxlat": 40.8508791, + "maxlon": -73.9671300 + }, + "nodes": [ + 103276277, + 103134231 + ], + "geometry": [ + { "lat": 40.8508325, "lon": -73.9671300 }, + { "lat": 40.8508791, "lon": -73.9674882 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420540973, + "bounds": { + "minlat": 40.8506647, + "minlon": -73.9658430, + "maxlat": 40.8507039, + "maxlon": -73.9653917 + }, + "nodes": [ + 103154290, + 4204850489, + 103276274, + 6111906770, + 103191202 + ], + "geometry": [ + { "lat": 40.8507039, "lon": -73.9658430 }, + { "lat": 40.8506979, "lon": -73.9656729 }, + { "lat": 40.8506848, "lon": -73.9654990 }, + { "lat": 40.8506747, "lon": -73.9654274 }, + { "lat": 40.8506647, "lon": -73.9653917 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420541047, + "bounds": { + "minlat": 40.8507445, + "minlon": -73.9668772, + "maxlat": 40.8508026, + "maxlon": -73.9663847 + }, + "nodes": [ + 4204844589, + 7111637711, + 10002778583, + 7111637699 + ], + "geometry": [ + { "lat": 40.8507445, "lon": -73.9663847 }, + { "lat": 40.8507649, "lon": -73.9665573 }, + { "lat": 40.8507824, "lon": -73.9667055 }, + { "lat": 40.8508026, "lon": -73.9668772 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 420541048, + "bounds": { + "minlat": 40.8507039, + "minlon": -73.9663847, + "maxlat": 40.8507445, + "maxlon": -73.9658430 + }, + "nodes": [ + 103154290, + 5449368212, + 7111637710, + 5106307799, + 4204844589 + ], + "geometry": [ + { "lat": 40.8507039, "lon": -73.9658430 }, + { "lat": 40.8507098, "lon": -73.9660124 }, + { "lat": 40.8507142, "lon": -73.9660658 }, + { "lat": 40.8507226, "lon": -73.9661671 }, + { "lat": 40.8507445, "lon": -73.9663847 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left|through" + } +}, +{ + "type": "way", + "id": 420541283, + "bounds": { + "minlat": 40.8507039, + "minlon": -73.9659556, + "maxlat": 40.8511796, + "maxlon": -73.9658430 + }, + "nodes": [ + 103154291, + 5106302144, + 103154290 + ], + "geometry": [ + { "lat": 40.8511796, "lon": -73.9659556 }, + { "lat": 40.8511595, "lon": -73.9659514 }, + { "lat": 40.8507039, "lon": -73.9658430 } + ], + "tags": { + "highway": "secondary", + "name": "Central Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left|right" + } +}, +{ + "type": "way", + "id": 420541638, + "bounds": { + "minlat": 40.8544127, + "minlon": -73.9707653, + "maxlat": 40.8546866, + "maxlon": -73.9703151 + }, + "nodes": [ + 103096338, + 13620890069, + 103280496 + ], + "geometry": [ + { "lat": 40.8546866, "lon": -73.9707653 }, + { "lat": 40.8546297, "lon": -73.9706718 }, + { "lat": 40.8544127, "lon": -73.9703151 } + ], + "tags": { + "highway": "primary", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "right" + } +}, +{ + "type": "way", + "id": 420570973, + "bounds": { + "minlat": 40.7242699, + "minlon": -73.9576918, + "maxlat": 40.7246224, + "maxlon": -73.9576364 + }, + "nodes": [ + 42469534, + 42520793, + 4205219015 + ], + "geometry": [ + { "lat": 40.7242699, "lon": -73.9576918 }, + { "lat": 40.7243884, "lon": -73.9576803 }, + { "lat": 40.7246224, "lon": -73.9576364 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Franklin", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "turn:lanes:backward": "left" + } +}, +{ + "type": "way", + "id": 420570974, + "bounds": { + "minlat": 40.7225202, + "minlon": -73.9593279, + "maxlat": 40.7228180, + "maxlon": -73.9590111 + }, + "nodes": [ + 42469520, + 9942834425, + 9998760561, + 4205219014 + ], + "geometry": [ + { "lat": 40.7225202, "lon": -73.9593279 }, + { "lat": 40.7225722, "lon": -73.9592735 }, + { "lat": 40.7226951, "lon": -73.9591423 }, + { "lat": 40.7228180, "lon": -73.9590111 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420570975, + "bounds": { + "minlat": 40.7222664, + "minlon": -73.9595978, + "maxlat": 40.7225202, + "maxlon": -73.9593279 + }, + "nodes": [ + 4205219012, + 9998760564, + 9942834426, + 42469520 + ], + "geometry": [ + { "lat": 40.7222664, "lon": -73.9595978 }, + { "lat": 40.7223614, "lon": -73.9594971 }, + { "lat": 40.7224764, "lon": -73.9593751 }, + { "lat": 40.7225202, "lon": -73.9593279 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 420570976, + "bounds": { + "minlat": 40.7228180, + "minlon": -73.9590111, + "maxlat": 40.7230751, + "maxlon": -73.9587393 + }, + "nodes": [ + 4205219014, + 9998760560, + 9942834431, + 42469528 + ], + "geometry": [ + { "lat": 40.7228180, "lon": -73.9590111 }, + { "lat": 40.7229170, "lon": -73.9589079 }, + { "lat": 40.7230305, "lon": -73.9587896 }, + { "lat": 40.7230751, "lon": -73.9587393 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 420570977, + "bounds": { + "minlat": 40.7230751, + "minlon": -73.9587393, + "maxlat": 40.7239215, + "maxlon": -73.9578326 + }, + "nodes": [ + 42469528, + 9942834432, + 9998760557, + 11163899175, + 9998760558, + 42469531, + 2357946660 + ], + "geometry": [ + { "lat": 40.7230751, "lon": -73.9587393 }, + { "lat": 40.7231296, "lon": -73.9586790 }, + { "lat": 40.7232664, "lon": -73.9585320 }, + { "lat": 40.7233547, "lon": -73.9584371 }, + { "lat": 40.7234818, "lon": -73.9583005 }, + { "lat": 40.7236316, "lon": -73.9581394 }, + { "lat": 40.7239215, "lon": -73.9578326 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420570978, + "bounds": { + "minlat": 40.7220304, + "minlon": -73.9464164, + "maxlat": 40.7222207, + "maxlon": -73.9462055 + }, + "nodes": [ + 4205219011, + 2987758895 + ], + "geometry": [ + { "lat": 40.7220304, "lon": -73.9462055 }, + { "lat": 40.7222207, "lon": -73.9464164 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570979, + "bounds": { + "minlat": 40.7215801, + "minlon": -73.9462536, + "maxlat": 40.7219151, + "maxlon": -73.9458801 + }, + "nodes": [ + 8842132409, + 9789356802, + 2987758896 + ], + "geometry": [ + { "lat": 40.7219151, "lon": -73.9462536 }, + { "lat": 40.7216447, "lon": -73.9459545 }, + { "lat": 40.7215801, "lon": -73.9458801 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570980, + "bounds": { + "minlat": 40.7222207, + "minlon": -73.9470065, + "maxlat": 40.7227831, + "maxlon": -73.9464164 + }, + "nodes": [ + 2987758895, + 9937288015, + 4205219013, + 2987758833, + 6228788702, + 2987758893 + ], + "geometry": [ + { "lat": 40.7222207, "lon": -73.9464164 }, + { "lat": 40.7222797, "lon": -73.9464818 }, + { "lat": 40.7225269, "lon": -73.9467557 }, + { "lat": 40.7226515, "lon": -73.9468911 }, + { "lat": 40.7227286, "lon": -73.9469624 }, + { "lat": 40.7227831, "lon": -73.9470065 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570982, + "bounds": { + "minlat": 40.7202425, + "minlon": -73.9448270, + "maxlat": 40.7206218, + "maxlon": -73.9443942 + }, + "nodes": [ + 2987758902, + 2987758864, + 2987758865, + 2987758866, + 9937288001, + 42502920 + ], + "geometry": [ + { "lat": 40.7206218, "lon": -73.9448270 }, + { "lat": 40.7205435, "lon": -73.9447279 }, + { "lat": 40.7204194, "lon": -73.9446059 }, + { "lat": 40.7203381, "lon": -73.9445415 }, + { "lat": 40.7203236, "lon": -73.9445212 }, + { "lat": 40.7202425, "lon": -73.9443942 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570983, + "bounds": { + "minlat": 40.7219151, + "minlon": -73.9471520, + "maxlat": 40.7227664, + "maxlon": -73.9462536 + }, + "nodes": [ + 2987758892, + 6228788700, + 2987758856, + 2987758857, + 9937288016, + 2987758894, + 8842132409 + ], + "geometry": [ + { "lat": 40.7227664, "lon": -73.9471520 }, + { "lat": 40.7227140, "lon": -73.9471144 }, + { "lat": 40.7226911, "lon": -73.9470949 }, + { "lat": 40.7225000, "lon": -73.9469005 }, + { "lat": 40.7222675, "lon": -73.9466445 }, + { "lat": 40.7222056, "lon": -73.9465751 }, + { "lat": 40.7219151, "lon": -73.9462536 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570984, + "bounds": { + "minlat": 40.7279887, + "minlon": -73.9505853, + "maxlat": 40.7290212, + "maxlon": -73.9499997 + }, + "nodes": [ + 2987758883, + 8097222226, + 8097222234, + 7725544400 + ], + "geometry": [ + { "lat": 40.7279887, "lon": -73.9499997 }, + { "lat": 40.7280516, "lon": -73.9500354 }, + { "lat": 40.7289661, "lon": -73.9505539 }, + { "lat": 40.7290212, "lon": -73.9505853 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570985, + "bounds": { + "minlat": 40.7262788, + "minlon": -73.9494198, + "maxlat": 40.7266930, + "maxlon": -73.9491851 + }, + "nodes": [ + 4205219018, + 2987758850, + 9765409789, + 5051959088 + ], + "geometry": [ + { "lat": 40.7266930, "lon": -73.9494198 }, + { "lat": 40.7263866, "lon": -73.9492447 }, + { "lat": 40.7263514, "lon": -73.9492252 }, + { "lat": 40.7262788, "lon": -73.9491851 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left|", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570986, + "bounds": { + "minlat": 40.7289764, + "minlon": -73.9510967, + "maxlat": 40.7296241, + "maxlon": -73.9507224 + }, + "nodes": [ + 8841416874, + 4205219020, + 2987758846, + 8097222257, + 7725544404 + ], + "geometry": [ + { "lat": 40.7296241, "lon": -73.9510967 }, + { "lat": 40.7293679, "lon": -73.9509481 }, + { "lat": 40.7290809, "lon": -73.9507816 }, + { "lat": 40.7290382, "lon": -73.9507574 }, + { "lat": 40.7289764, "lon": -73.9507224 } + ], + "tags": { + "bicycle:lanes": "|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570987, + "bounds": { + "minlat": 40.7296937, + "minlon": -73.9512445, + "maxlat": 40.7301565, + "maxlon": -73.9509801 + }, + "nodes": [ + 9158185344, + 2991742403, + 2987758111, + 4205219021, + 12042028859 + ], + "geometry": [ + { "lat": 40.7296937, "lon": -73.9509801 }, + { "lat": 40.7297871, "lon": -73.9510343 }, + { "lat": 40.7298146, "lon": -73.9510485 }, + { "lat": 40.7299196, "lon": -73.9511092 }, + { "lat": 40.7301565, "lon": -73.9512445 } + ], + "tags": { + "bicycle:lanes": "|no|no|designated", + "cycleway:lanes": "no|no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570988, + "bounds": { + "minlat": 40.7227831, + "minlon": -73.9481125, + "maxlat": 40.7246580, + "maxlon": -73.9470065 + }, + "nodes": [ + 2987758893, + 2987758132, + 6228788704, + 2987758131, + 2987758130, + 2987758129, + 6348469400, + 5051959089 + ], + "geometry": [ + { "lat": 40.7227831, "lon": -73.9470065 }, + { "lat": 40.7228304, "lon": -73.9470480 }, + { "lat": 40.7228561, "lon": -73.9470640 }, + { "lat": 40.7231759, "lon": -73.9472599 }, + { "lat": 40.7235845, "lon": -73.9474946 }, + { "lat": 40.7238600, "lon": -73.9476488 }, + { "lat": 40.7245966, "lon": -73.9480797 }, + { "lat": 40.7246580, "lon": -73.9481125 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570990, + "bounds": { + "minlat": 40.7246177, + "minlon": -73.9491851, + "maxlat": 40.7262788, + "maxlon": -73.9482326 + }, + "nodes": [ + 5051959088, + 9765409790, + 2987758851, + 2987758852, + 4205219016, + 2987758853, + 6348469397, + 2987758886 + ], + "geometry": [ + { "lat": 40.7262788, "lon": -73.9491851 }, + { "lat": 40.7262190, "lon": -73.9491524 }, + { "lat": 40.7261880, "lon": -73.9491354 }, + { "lat": 40.7254485, "lon": -73.9487123 }, + { "lat": 40.7250504, "lon": -73.9484839 }, + { "lat": 40.7247239, "lon": -73.9482966 }, + { "lat": 40.7246897, "lon": -73.9482760 }, + { "lat": 40.7246177, "lon": -73.9482326 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570991, + "bounds": { + "minlat": 40.7256587, + "minlon": -73.9490536, + "maxlat": 40.7263206, + "maxlon": -73.9486804 + }, + "nodes": [ + 8962720921, + 4205219017, + 2987758122, + 2991742422, + 4396126231, + 9765409788, + 5051959086 + ], + "geometry": [ + { "lat": 40.7256587, "lon": -73.9486804 }, + { "lat": 40.7258778, "lon": -73.9488020 }, + { "lat": 40.7259699, "lon": -73.9488531 }, + { "lat": 40.7259951, "lon": -73.9488678 }, + { "lat": 40.7262268, "lon": -73.9490003 }, + { "lat": 40.7262637, "lon": -73.9490213 }, + { "lat": 40.7263206, "lon": -73.9490536 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left|", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570997, + "bounds": { + "minlat": 40.7296241, + "minlon": -73.9512346, + "maxlat": 40.7298675, + "maxlon": -73.9510967 + }, + "nodes": [ + 13295904804, + 2987758845, + 8841416874 + ], + "geometry": [ + { "lat": 40.7298675, "lon": -73.9512346 }, + { "lat": 40.7297516, "lon": -73.9511706 }, + { "lat": 40.7296241, "lon": -73.9510967 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570998, + "bounds": { + "minlat": 40.7263206, + "minlon": -73.9497311, + "maxlat": 40.7275152, + "maxlon": -73.9490536 + }, + "nodes": [ + 5051959086, + 9765409786, + 8856921980 + ], + "geometry": [ + { "lat": 40.7263206, "lon": -73.9490536 }, + { "lat": 40.7263960, "lon": -73.9490964 }, + { "lat": 40.7275152, "lon": -73.9497311 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420570999, + "bounds": { + "minlat": 40.7269627, + "minlon": -73.9501326, + "maxlat": 40.7279440, + "maxlon": -73.9495740 + }, + "nodes": [ + 42513154, + 8097222249, + 2987758848, + 2987758849, + 8841792883 + ], + "geometry": [ + { "lat": 40.7279440, "lon": -73.9501326 }, + { "lat": 40.7278889, "lon": -73.9500987 }, + { "lat": 40.7276601, "lon": -73.9499595 }, + { "lat": 40.7270930, "lon": -73.9496484 }, + { "lat": 40.7269627, "lon": -73.9495740 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420571000, + "bounds": { + "minlat": 40.7246580, + "minlon": -73.9486804, + "maxlat": 40.7256587, + "maxlon": -73.9481125 + }, + "nodes": [ + 5051959089, + 6348469398, + 2987758126, + 2987758125, + 2987758124, + 2991742417, + 2987758123, + 8962720921 + ], + "geometry": [ + { "lat": 40.7246580, "lon": -73.9481125 }, + { "lat": 40.7247313, "lon": -73.9481517 }, + { "lat": 40.7247483, "lon": -73.9481611 }, + { "lat": 40.7249343, "lon": -73.9482657 }, + { "lat": 40.7252605, "lon": -73.9484535 }, + { "lat": 40.7255151, "lon": -73.9485988 }, + { "lat": 40.7256366, "lon": -73.9486681 }, + { "lat": 40.7256587, "lon": -73.9486804 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420571001, + "bounds": { + "minlat": 40.7313190, + "minlon": -73.9517598, + "maxlat": 40.7314509, + "maxlon": -73.9517365 + }, + "nodes": [ + 12042028867, + 4203066843 + ], + "geometry": [ + { "lat": 40.7313190, "lon": -73.9517365 }, + { "lat": 40.7314509, "lon": -73.9517598 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 420589988, + "bounds": { + "minlat": 40.8162227, + "minlon": -73.9429276, + "maxlat": 40.8165600, + "maxlon": -73.9426760 + }, + "nodes": [ + 4205440405, + 9559408290, + 2141026540 + ], + "geometry": [ + { "lat": 40.8162227, "lon": -73.9429276 }, + { "lat": 40.8165142, "lon": -73.9427102 }, + { "lat": 40.8165600, "lon": -73.9426760 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "US-NY:urban", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420589989, + "bounds": { + "minlat": 40.8160117, + "minlon": -73.9432878, + "maxlat": 40.8163661, + "maxlon": -73.9430295 + }, + "nodes": [ + 4205440407, + 10170605794, + 42439891 + ], + "geometry": [ + { "lat": 40.8163661, "lon": -73.9430295 }, + { "lat": 40.8160707, "lon": -73.9432448 }, + { "lat": 40.8160117, "lon": -73.9432878 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420589990, + "bounds": { + "minlat": 40.8157378, + "minlon": -73.9434861, + "maxlat": 40.8160117, + "maxlon": -73.9432878 + }, + "nodes": [ + 42439891, + 10170605797, + 4205440404 + ], + "geometry": [ + { "lat": 40.8160117, "lon": -73.9432878 }, + { "lat": 40.8159606, "lon": -73.9433256 }, + { "lat": 40.8157378, "lon": -73.9434861 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420589991, + "bounds": { + "minlat": 40.8212231, + "minlon": -73.9392778, + "maxlat": 40.8216091, + "maxlon": -73.9389915 + }, + "nodes": [ + 4205440420, + 9557088471, + 2141026518 + ], + "geometry": [ + { "lat": 40.8212231, "lon": -73.9392778 }, + { "lat": 40.8215109, "lon": -73.9390644 }, + { "lat": 40.8216091, "lon": -73.9389915 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420589993, + "bounds": { + "minlat": 40.8146691, + "minlon": -73.9442672, + "maxlat": 40.8150204, + "maxlon": -73.9440141 + }, + "nodes": [ + 4205440401, + 10170605763, + 42436003 + ], + "geometry": [ + { "lat": 40.8150204, "lon": -73.9440141 }, + { "lat": 40.8147291, "lon": -73.9442240 }, + { "lat": 40.8146691, "lon": -73.9442672 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420589994, + "bounds": { + "minlat": 40.8225547, + "minlon": -73.9383022, + "maxlat": 40.8228991, + "maxlon": -73.9380514 + }, + "nodes": [ + 4205440423, + 9557088478, + 2141026495 + ], + "geometry": [ + { "lat": 40.8225547, "lon": -73.9383022 }, + { "lat": 40.8228484, "lon": -73.9380883 }, + { "lat": 40.8228991, "lon": -73.9380514 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420589995, + "bounds": { + "minlat": 40.8187097, + "minlon": -73.9411108, + "maxlat": 40.8190607, + "maxlon": -73.9408456 + }, + "nodes": [ + 4205440416, + 9557104487, + 2141026514 + ], + "geometry": [ + { "lat": 40.8187097, "lon": -73.9411108 }, + { "lat": 40.8190097, "lon": -73.9408841 }, + { "lat": 40.8190607, "lon": -73.9408456 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420589997, + "bounds": { + "minlat": 40.8148735, + "minlon": -73.9439145, + "maxlat": 40.8152726, + "maxlon": -73.9436204 + }, + "nodes": [ + 4205440400, + 10171603041, + 2141026532 + ], + "geometry": [ + { "lat": 40.8148735, "lon": -73.9439145 }, + { "lat": 40.8151877, "lon": -73.9436829 }, + { "lat": 40.8152726, "lon": -73.9436204 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420589999, + "bounds": { + "minlat": 40.8135069, + "minlon": -73.9449091, + "maxlat": 40.8139768, + "maxlon": -73.9445691 + }, + "nodes": [ + 4205440397, + 10170797786, + 2141026515 + ], + "geometry": [ + { "lat": 40.8135069, "lon": -73.9449091 }, + { "lat": 40.8139278, "lon": -73.9446046 }, + { "lat": 40.8139768, "lon": -73.9445691 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590000, + "bounds": { + "minlat": 40.8174894, + "minlon": -73.9420021, + "maxlat": 40.8178179, + "maxlon": -73.9417633 + }, + "nodes": [ + 4205440412, + 9557110318, + 2141026505 + ], + "geometry": [ + { "lat": 40.8174894, "lon": -73.9420021 }, + { "lat": 40.8177631, "lon": -73.9418031 }, + { "lat": 40.8178179, "lon": -73.9417633 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lit": "no", + "maxspeed": "25 mph", + "maxspeed:type": "US-NY:urban", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590001, + "bounds": { + "minlat": 40.8153400, + "minlon": -73.9437801, + "maxlat": 40.8157378, + "maxlon": -73.9434861 + }, + "nodes": [ + 4205440404, + 10171603042, + 42439887 + ], + "geometry": [ + { "lat": 40.8157378, "lon": -73.9434861 }, + { "lat": 40.8154251, "lon": -73.9437172 }, + { "lat": 40.8153400, "lon": -73.9437801 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590003, + "bounds": { + "minlat": 40.8178179, + "minlon": -73.9417633, + "maxlat": 40.8187097, + "maxlon": -73.9411108 + }, + "nodes": [ + 2141026505, + 9557110321, + 6908683481, + 6908723691, + 9557104497, + 2141026520, + 9557104493, + 4205440416 + ], + "geometry": [ + { "lat": 40.8178179, "lon": -73.9417633 }, + { "lat": 40.8178754, "lon": -73.9417212 }, + { "lat": 40.8179560, "lon": -73.9416622 }, + { "lat": 40.8180902, "lon": -73.9415641 }, + { "lat": 40.8183895, "lon": -73.9413451 }, + { "lat": 40.8184380, "lon": -73.9413096 }, + { "lat": 40.8185006, "lon": -73.9412638 }, + { "lat": 40.8187097, "lon": -73.9411108 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590005, + "bounds": { + "minlat": 40.8152726, + "minlon": -73.9436204, + "maxlat": 40.8162227, + "maxlon": -73.9429276 + }, + "nodes": [ + 2141026532, + 10171603040, + 10170605798, + 2141026507, + 10170605795, + 4205440405 + ], + "geometry": [ + { "lat": 40.8152726, "lon": -73.9436204 }, + { "lat": 40.8153595, "lon": -73.9435570 }, + { "lat": 40.8158933, "lon": -73.9431678 }, + { "lat": 40.8159452, "lon": -73.9431299 }, + { "lat": 40.8160053, "lon": -73.9430861 }, + { "lat": 40.8162227, "lon": -73.9429276 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590007, + "bounds": { + "minlat": 40.8139768, + "minlon": -73.9445691, + "maxlat": 40.8146014, + "maxlon": -73.9441122 + }, + "nodes": [ + 2141026515, + 10170797781, + 10170605760, + 2141026494 + ], + "geometry": [ + { "lat": 40.8139768, "lon": -73.9445691 }, + { "lat": 40.8140394, "lon": -73.9445233 }, + { "lat": 40.8145501, "lon": -73.9441497 }, + { "lat": 40.8146014, "lon": -73.9441122 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590014, + "bounds": { + "minlat": 40.8165600, + "minlon": -73.9426760, + "maxlat": 40.8174894, + "maxlon": -73.9420021 + }, + "nodes": [ + 2141026540, + 9557110360, + 9557110363, + 2141026542, + 9557110366, + 4205440412 + ], + "geometry": [ + { "lat": 40.8165600, "lon": -73.9426760 }, + { "lat": 40.8166235, "lon": -73.9426300 }, + { "lat": 40.8171388, "lon": -73.9422563 }, + { "lat": 40.8171915, "lon": -73.9422181 }, + { "lat": 40.8172480, "lon": -73.9421772 }, + { "lat": 40.8174894, "lon": -73.9420021 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "US-NY:urban", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590021, + "bounds": { + "minlat": 40.8203089, + "minlon": -73.9399427, + "maxlat": 40.8212231, + "maxlon": -73.9392778 + }, + "nodes": [ + 2141026502, + 9557086584, + 9557086572, + 2141026496, + 9557086575, + 4205440420 + ], + "geometry": [ + { "lat": 40.8203089, "lon": -73.9399427 }, + { "lat": 40.8203689, "lon": -73.9398991 }, + { "lat": 40.8208841, "lon": -73.9395253 }, + { "lat": 40.8209346, "lon": -73.9394886 }, + { "lat": 40.8209938, "lon": -73.9394454 }, + { "lat": 40.8212231, "lon": -73.9392778 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590024, + "bounds": { + "minlat": 40.8141450, + "minlon": -73.9409348, + "maxlat": 40.8145169, + "maxlon": -73.9406612 + }, + "nodes": [ + 4205440399, + 9559408307, + 3099327955 + ], + "geometry": [ + { "lat": 40.8145169, "lon": -73.9406612 }, + { "lat": 40.8142404, "lon": -73.9408644 }, + { "lat": 40.8141450, "lon": -73.9409348 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420590028, + "bounds": { + "minlat": 40.8175623, + "minlon": -73.9382554, + "maxlat": 40.8178749, + "maxlon": -73.9380263 + }, + "nodes": [ + 4205440414, + 9557104508, + 3099327935 + ], + "geometry": [ + { "lat": 40.8175623, "lon": -73.9382554 }, + { "lat": 40.8178284, "lon": -73.9380604 }, + { "lat": 40.8178749, "lon": -73.9380263 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420590032, + "bounds": { + "minlat": 40.8137701, + "minlon": -73.9410068, + "maxlat": 40.8140809, + "maxlon": -73.9407812 + }, + "nodes": [ + 4205440398, + 8753427898, + 9559444359, + 42453258 + ], + "geometry": [ + { "lat": 40.8137701, "lon": -73.9410068 }, + { "lat": 40.8138992, "lon": -73.9409128 }, + { "lat": 40.8139859, "lon": -73.9408498 }, + { "lat": 40.8140809, "lon": -73.9407812 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420590033, + "bounds": { + "minlat": 40.8178749, + "minlon": -73.9380263, + "maxlat": 40.8184849, + "maxlon": -73.9375793 + }, + "nodes": [ + 3099327935, + 9557104507, + 8212384292, + 3099326122 + ], + "geometry": [ + { "lat": 40.8178749, "lon": -73.9380263 }, + { "lat": 40.8179281, "lon": -73.9379873 }, + { "lat": 40.8184008, "lon": -73.9376406 }, + { "lat": 40.8184849, "lon": -73.9375793 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420590034, + "bounds": { + "minlat": 40.8163607, + "minlon": -73.9391303, + "maxlat": 40.8166504, + "maxlon": -73.9389307 + }, + "nodes": [ + 4205440406, + 9557110326, + 3099327930 + ], + "geometry": [ + { "lat": 40.8163607, "lon": -73.9391303 }, + { "lat": 40.8165741, "lon": -73.9389833 }, + { "lat": 40.8166504, "lon": -73.9389307 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420590035, + "bounds": { + "minlat": 40.8151602, + "minlon": -73.9399945, + "maxlat": 40.8153746, + "maxlon": -73.9398384 + }, + "nodes": [ + 4205440402, + 9559408276, + 42445587 + ], + "geometry": [ + { "lat": 40.8151602, "lon": -73.9399945 }, + { "lat": 40.8153222, "lon": -73.9398766 }, + { "lat": 40.8153746, "lon": -73.9398384 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420590036, + "bounds": { + "minlat": 40.8140809, + "minlon": -73.9407812, + "maxlat": 40.8147543, + "maxlon": -73.9402901 + }, + "nodes": [ + 42453258, + 9559408306, + 9559408302, + 42434361 + ], + "geometry": [ + { "lat": 40.8140809, "lon": -73.9407812 }, + { "lat": 40.8141745, "lon": -73.9407133 }, + { "lat": 40.8146980, "lon": -73.9403311 }, + { "lat": 40.8147543, "lon": -73.9402901 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420590037, + "bounds": { + "minlat": 40.8154373, + "minlon": -73.9399886, + "maxlat": 40.8157123, + "maxlon": -73.9397877 + }, + "nodes": [ + 4205440403, + 9557110352, + 3099327951 + ], + "geometry": [ + { "lat": 40.8157123, "lon": -73.9397877 }, + { "lat": 40.8154972, "lon": -73.9399448 }, + { "lat": 40.8154373, "lon": -73.9399886 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420590038, + "bounds": { + "minlat": 40.8145169, + "minlon": -73.9406612, + "maxlat": 40.8150686, + "maxlon": -73.9402581 + }, + "nodes": [ + 9449106388, + 9559408303, + 3099327961, + 9559408304, + 4205440399 + ], + "geometry": [ + { "lat": 40.8150686, "lon": -73.9402581 }, + { "lat": 40.8148730, "lon": -73.9404010 }, + { "lat": 40.8148176, "lon": -73.9404415 }, + { "lat": 40.8147640, "lon": -73.9404807 }, + { "lat": 40.8145169, "lon": -73.9406612 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420590039, + "bounds": { + "minlat": 40.8166971, + "minlon": -73.9390685, + "maxlat": 40.8169809, + "maxlon": -73.9388638 + }, + "nodes": [ + 4205440410, + 9557110327, + 42440376 + ], + "geometry": [ + { "lat": 40.8169809, "lon": -73.9388638 }, + { "lat": 40.8167572, "lon": -73.9390252 }, + { "lat": 40.8166971, "lon": -73.9390685 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420590040, + "bounds": { + "minlat": 40.8291930, + "minlon": -73.9420399, + "maxlat": 40.8294451, + "maxlon": -73.9419432 + }, + "nodes": [ + 4205440431, + 5403824757, + 11218670336, + 42432980 + ], + "geometry": [ + { "lat": 40.8291930, "lon": -73.9420399 }, + { "lat": 40.8292591, "lon": -73.9420124 }, + { "lat": 40.8293829, "lon": -73.9419663 }, + { "lat": 40.8294451, "lon": -73.9419432 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590041, + "bounds": { + "minlat": 40.8280452, + "minlon": -73.9425031, + "maxlat": 40.8287360, + "maxlon": -73.9422240 + }, + "nodes": [ + 4205440429, + 11221649586, + 11221649561, + 2504882506 + ], + "geometry": [ + { "lat": 40.8280452, "lon": -73.9425031 }, + { "lat": 40.8281091, "lon": -73.9424773 }, + { "lat": 40.8286455, "lon": -73.9422606 }, + { "lat": 40.8287360, "lon": -73.9422240 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "turn:lanes:forward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590042, + "bounds": { + "minlat": 40.8287360, + "minlon": -73.9422240, + "maxlat": 40.8290059, + "maxlon": -73.9421149 + }, + "nodes": [ + 2504882506, + 11221649560, + 4205440430 + ], + "geometry": [ + { "lat": 40.8287360, "lon": -73.9422240 }, + { "lat": 40.8288050, "lon": -73.9421961 }, + { "lat": 40.8290059, "lon": -73.9421149 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "turn:lanes:backward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590043, + "bounds": { + "minlat": 40.8240402, + "minlon": -73.9447637, + "maxlat": 40.8243333, + "maxlon": -73.9445457 + }, + "nodes": [ + 42432963, + 9903127417, + 4205440425 + ], + "geometry": [ + { "lat": 40.8240402, "lon": -73.9447637 }, + { "lat": 40.8241441, "lon": -73.9446879 }, + { "lat": 40.8243333, "lon": -73.9445457 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:backward": "left|", + "width": "18", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590044, + "bounds": { + "minlat": 40.8212637, + "minlon": -73.9460787, + "maxlat": 40.8215357, + "maxlon": -73.9459527 + }, + "nodes": [ + 42432961, + 7784459411, + 4205440422 + ], + "geometry": [ + { "lat": 40.8212637, "lon": -73.9460787 }, + { "lat": 40.8213333, "lon": -73.9460458 }, + { "lat": 40.8215357, "lon": -73.9459527 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "turn:lanes:backward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590045, + "bounds": { + "minlat": 40.8178547, + "minlon": -73.9476667, + "maxlat": 40.8181273, + "maxlon": -73.9475395 + }, + "nodes": [ + 42432954, + 7784459443, + 4205440415 + ], + "geometry": [ + { "lat": 40.8178547, "lon": -73.9476667 }, + { "lat": 40.8179229, "lon": -73.9476349 }, + { "lat": 40.8181273, "lon": -73.9475395 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590046, + "bounds": { + "minlat": 40.8247050, + "minlon": -73.9442680, + "maxlat": 40.8250545, + "maxlon": -73.9440139 + }, + "nodes": [ + 4205440426, + 11221649623, + 10005912258 + ], + "geometry": [ + { "lat": 40.8247050, "lon": -73.9442680 }, + { "lat": 40.8247537, "lon": -73.9442326 }, + { "lat": 40.8250545, "lon": -73.9440139 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "width": "18", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590047, + "bounds": { + "minlat": 40.8215357, + "minlon": -73.9459527, + "maxlat": 40.8237625, + "maxlon": -73.9449209 + }, + "nodes": [ + 4205440422, + 5403823146, + 5403823147, + 4205440424 + ], + "geometry": [ + { "lat": 40.8215357, "lon": -73.9459527 }, + { "lat": 40.8232734, "lon": -73.9451475 }, + { "lat": 40.8237293, "lon": -73.9449363 }, + { "lat": 40.8237625, "lon": -73.9449209 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "width": "18", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590048, + "bounds": { + "minlat": 40.8205827, + "minlon": -73.9463959, + "maxlat": 40.8208331, + "maxlon": -73.9462806 + }, + "nodes": [ + 42432960, + 7784459420, + 4205440418 + ], + "geometry": [ + { "lat": 40.8205827, "lon": -73.9463959 }, + { "lat": 40.8206336, "lon": -73.9463722 }, + { "lat": 40.8208331, "lon": -73.9462806 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "turn:lanes:backward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590049, + "bounds": { + "minlat": 40.8181273, + "minlon": -73.9475395, + "maxlat": 40.8185359, + "maxlon": -73.9473494 + }, + "nodes": [ + 4205440415, + 7784459451, + 42432955 + ], + "geometry": [ + { "lat": 40.8181273, "lon": -73.9475395 }, + { "lat": 40.8184710, "lon": -73.9473796 }, + { "lat": 40.8185359, "lon": -73.9473494 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590050, + "bounds": { + "minlat": 40.8163740, + "minlon": -73.9483560, + "maxlat": 40.8166564, + "maxlon": -73.9482239 + }, + "nodes": [ + 42432950, + 10171603055, + 4205440409 + ], + "geometry": [ + { "lat": 40.8163740, "lon": -73.9483560 }, + { "lat": 40.8164419, "lon": -73.9483242 }, + { "lat": 40.8166564, "lon": -73.9482239 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590052, + "bounds": { + "minlat": 40.8210308, + "minlon": -73.9461879, + "maxlat": 40.8212637, + "maxlon": -73.9460787 + }, + "nodes": [ + 4205440419, + 5403823145, + 7784459412, + 42432961 + ], + "geometry": [ + { "lat": 40.8210308, "lon": -73.9461879 }, + { "lat": 40.8211665, "lon": -73.9461243 }, + { "lat": 40.8212076, "lon": -73.9461050 }, + { "lat": 40.8212637, "lon": -73.9460787 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "turn:lanes:forward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590053, + "bounds": { + "minlat": 40.8290059, + "minlon": -73.9421149, + "maxlat": 40.8291930, + "maxlon": -73.9420399 + }, + "nodes": [ + 4205440430, + 4205440431 + ], + "geometry": [ + { "lat": 40.8290059, "lon": -73.9421149 }, + { "lat": 40.8291930, "lon": -73.9420399 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590054, + "bounds": { + "minlat": 40.8185359, + "minlon": -73.9473494, + "maxlat": 40.8192188, + "maxlon": -73.9470312 + }, + "nodes": [ + 42432955, + 7784459450, + 5403823143, + 7784459458, + 42432956 + ], + "geometry": [ + { "lat": 40.8185359, "lon": -73.9473494 }, + { "lat": 40.8185915, "lon": -73.9473235 }, + { "lat": 40.8190304, "lon": -73.9471192 }, + { "lat": 40.8191486, "lon": -73.9470640 }, + { "lat": 40.8192188, "lon": -73.9470312 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590055, + "bounds": { + "minlat": 40.8192188, + "minlon": -73.9470312, + "maxlat": 40.8194689, + "maxlon": -73.9469155 + }, + "nodes": [ + 42432956, + 7784459457, + 4205440417 + ], + "geometry": [ + { "lat": 40.8192188, "lon": -73.9470312 }, + { "lat": 40.8192829, "lon": -73.9470016 }, + { "lat": 40.8194689, "lon": -73.9469155 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590056, + "bounds": { + "minlat": 40.8166564, + "minlon": -73.9482239, + "maxlat": 40.8171160, + "maxlon": -73.9480090 + }, + "nodes": [ + 4205440409, + 7784459435, + 42439588 + ], + "geometry": [ + { "lat": 40.8166564, "lon": -73.9482239 }, + { "lat": 40.8170231, "lon": -73.9480524 }, + { "lat": 40.8171160, "lon": -73.9480090 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590057, + "bounds": { + "minlat": 40.8278211, + "minlon": -73.9425935, + "maxlat": 40.8280452, + "maxlon": -73.9425031 + }, + "nodes": [ + 4205440428, + 8746225218, + 11221649585, + 4205440429 + ], + "geometry": [ + { "lat": 40.8278211, "lon": -73.9425935 }, + { "lat": 40.8279494, "lon": -73.9425429 }, + { "lat": 40.8279768, "lon": -73.9425315 }, + { "lat": 40.8280452, "lon": -73.9425031 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590059, + "bounds": { + "minlat": 40.8264027, + "minlon": -73.9431638, + "maxlat": 40.8266537, + "maxlon": -73.9430556 + }, + "nodes": [ + 4205440427, + 11221649574, + 42431643 + ], + "geometry": [ + { "lat": 40.8264027, "lon": -73.9431638 }, + { "lat": 40.8265901, "lon": -73.9430834 }, + { "lat": 40.8266537, "lon": -73.9430556 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:left": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590060, + "bounds": { + "minlat": 40.8174271, + "minlon": -73.9478646, + "maxlat": 40.8178547, + "maxlon": -73.9476667 + }, + "nodes": [ + 4205440411, + 7784459444, + 42432954 + ], + "geometry": [ + { "lat": 40.8174271, "lon": -73.9478646 }, + { "lat": 40.8177976, "lon": -73.9476931 }, + { "lat": 40.8178547, "lon": -73.9476667 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590061, + "bounds": { + "minlat": 40.8253320, + "minlon": -73.9438130, + "maxlat": 40.8259560, + "maxlon": -73.9433570 + }, + "nodes": [ + 42432967, + 11221649568, + 5403823151, + 5403823153, + 5403823152, + 11221649572, + 42432970 + ], + "geometry": [ + { "lat": 40.8253320, "lon": -73.9438130 }, + { "lat": 40.8253854, "lon": -73.9437740 }, + { "lat": 40.8256064, "lon": -73.9436124 }, + { "lat": 40.8256906, "lon": -73.9435510 }, + { "lat": 40.8256953, "lon": -73.9435475 }, + { "lat": 40.8259021, "lon": -73.9433964 }, + { "lat": 40.8259560, "lon": -73.9433570 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "width": "18", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590063, + "bounds": { + "minlat": 40.8266537, + "minlon": -73.9430556, + "maxlat": 40.8278211, + "maxlon": -73.9425935 + }, + "nodes": [ + 42431643, + 11221649573, + 11221649565, + 42432974, + 11221649566, + 5403824756, + 4205440428 + ], + "geometry": [ + { "lat": 40.8266537, "lon": -73.9430556 }, + { "lat": 40.8267144, "lon": -73.9430315 }, + { "lat": 40.8272872, "lon": -73.9428043 }, + { "lat": 40.8273441, "lon": -73.9427817 }, + { "lat": 40.8274129, "lon": -73.9427560 }, + { "lat": 40.8274463, "lon": -73.9427414 }, + { "lat": 40.8278211, "lon": -73.9425935 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590064, + "bounds": { + "minlat": 40.8294775, + "minlon": -73.9419307, + "maxlat": 40.8305684, + "maxlon": -73.9415000 + }, + "nodes": [ + 13300406392, + 11218835146, + 5403824758, + 11218835150, + 42432983, + 11218835149, + 5475725290 + ], + "geometry": [ + { "lat": 40.8294775, "lon": -73.9419307 }, + { "lat": 40.8295002, "lon": -73.9419219 }, + { "lat": 40.8296773, "lon": -73.9418535 }, + { "lat": 40.8300879, "lon": -73.9416948 }, + { "lat": 40.8301600, "lon": -73.9416670 }, + { "lat": 40.8302031, "lon": -73.9416494 }, + { "lat": 40.8305684, "lon": -73.9415000 } + ], + "tags": { + "alt_name": "Willie Mays Place", + "bicycle": "yes", + "cycleway": "lane", + "description": "This honorary intersection name memorializes Willie Mays", + "hgv": "destination", + "highway": "secondary", + "historic": "memorial", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590065, + "bounds": { + "minlat": 40.8243333, + "minlon": -73.9445457, + "maxlat": 40.8247050, + "maxlon": -73.9442680 + }, + "nodes": [ + 4205440425, + 5403823150, + 11221649621, + 4205440426 + ], + "geometry": [ + { "lat": 40.8243333, "lon": -73.9445457 }, + { "lat": 40.8243708, "lon": -73.9445177 }, + { "lat": 40.8246655, "lon": -73.9442975 }, + { "lat": 40.8247050, "lon": -73.9442680 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "width": "18", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590066, + "bounds": { + "minlat": 40.8208331, + "minlon": -73.9462806, + "maxlat": 40.8210308, + "maxlon": -73.9461879 + }, + "nodes": [ + 4205440418, + 5403823144, + 4081385766, + 4205440419 + ], + "geometry": [ + { "lat": 40.8208331, "lon": -73.9462806 }, + { "lat": 40.8209230, "lon": -73.9462384 }, + { "lat": 40.8209869, "lon": -73.9462085 }, + { "lat": 40.8210308, "lon": -73.9461879 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590067, + "bounds": { + "minlat": 40.8237625, + "minlon": -73.9449209, + "maxlat": 40.8240402, + "maxlon": -73.9447637 + }, + "nodes": [ + 4205440424, + 2562438696, + 9903106015, + 2562438699, + 42432963 + ], + "geometry": [ + { "lat": 40.8237625, "lon": -73.9449209 }, + { "lat": 40.8239008, "lon": -73.9448568 }, + { "lat": 40.8239423, "lon": -73.9448313 }, + { "lat": 40.8239748, "lon": -73.9448113 }, + { "lat": 40.8240402, "lon": -73.9447637 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:forward": "left|", + "width": "18", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420590068, + "bounds": { + "minlat": 40.8151611, + "minlon": -73.9582064, + "maxlat": 40.8156143, + "maxlon": -73.9578259 + }, + "nodes": [ + 42453717, + 8795723384, + 10049830845, + 561035343 + ], + "geometry": [ + { "lat": 40.8151611, "lon": -73.9578259 }, + { "lat": 40.8152195, "lon": -73.9578749 }, + { "lat": 40.8155421, "lon": -73.9581453 }, + { "lat": 40.8156143, "lon": -73.9582064 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "left||", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590069, + "bounds": { + "minlat": 40.8133809, + "minlon": -73.9568234, + "maxlat": 40.8140151, + "maxlon": -73.9562717 + }, + "nodes": [ + 42442584, + 10050045627, + 4207752456 + ], + "geometry": [ + { "lat": 40.8133809, "lon": -73.9562717 }, + { "lat": 40.8134849, "lon": -73.9563622 }, + { "lat": 40.8140151, "lon": -73.9568234 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590070, + "bounds": { + "minlat": 40.8158098, + "minlon": -73.9586824, + "maxlat": 40.8161248, + "maxlon": -73.9583906 + }, + "nodes": [ + 42428863, + 10049830849, + 5266458381, + 5266458373 + ], + "geometry": [ + { "lat": 40.8158098, "lon": -73.9583906 }, + { "lat": 40.8158660, "lon": -73.9584403 }, + { "lat": 40.8159755, "lon": -73.9585453 }, + { "lat": 40.8161248, "lon": -73.9586824 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left||right", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590072, + "bounds": { + "minlat": 40.8211989, + "minlon": -73.9389915, + "maxlat": 40.8216091, + "maxlon": -73.9380183 + }, + "nodes": [ + 9903127424, + 4205440421, + 8758299311, + 2141026518 + ], + "geometry": [ + { "lat": 40.8211989, "lon": -73.9380183 }, + { "lat": 40.8212718, "lon": -73.9381912 }, + { "lat": 40.8215600, "lon": -73.9388751 }, + { "lat": 40.8216091, "lon": -73.9389915 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 145th Street", + "oneway": "no", + "sidewalk": "separate", + "turn:lanes:forward": "left|", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590073, + "bounds": { + "minlat": 40.8216091, + "minlon": -73.9391536, + "maxlat": 40.8216757, + "maxlon": -73.9389915 + }, + "nodes": [ + 2141026518, + 42434246 + ], + "geometry": [ + { "lat": 40.8216091, "lon": -73.9389915 }, + { "lat": 40.8216757, "lon": -73.9391536 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "West 145th Street", + "oneway": "no", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420590075, + "bounds": { + "minlat": 40.8228991, + "minlon": -73.9382108, + "maxlat": 40.8229671, + "maxlon": -73.9380514 + }, + "nodes": [ + 2141026495, + 42439924 + ], + "geometry": [ + { "lat": 40.8228991, "lon": -73.9380514 }, + { "lat": 40.8229671, "lon": -73.9382108 } + ], + "tags": { + "highway": "residential", + "name": "West 147th Street", + "name_1": "West 147 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "147th", + "tiger:name_base_1": "147", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039" + } +}, +{ + "type": "way", + "id": 420598230, + "bounds": { + "minlat": 40.7332587, + "minlon": -73.9811531, + "maxlat": 40.7335959, + "maxlon": -73.9809058 + }, + "nodes": [ + 42446889, + 4298757073, + 4298757029 + ], + "geometry": [ + { "lat": 40.7332587, "lon": -73.9811531 }, + { "lat": 40.7333096, "lon": -73.9811157 }, + { "lat": 40.7335959, "lon": -73.9809058 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420598232, + "bounds": { + "minlat": 40.7310012, + "minlon": -73.9828173, + "maxlat": 40.7313525, + "maxlon": -73.9825607 + }, + "nodes": [ + 4205565489, + 4161568338, + 42440743 + ], + "geometry": [ + { "lat": 40.7310012, "lon": -73.9828173 }, + { "lat": 40.7312699, "lon": -73.9826267 }, + { "lat": 40.7313525, "lon": -73.9825607 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420598234, + "bounds": { + "minlat": 40.7336766, + "minlon": -73.9839748, + "maxlat": 40.7339031, + "maxlon": -73.9838090 + }, + "nodes": [ + 4205565496, + 10606695718, + 1251612266 + ], + "geometry": [ + { "lat": 40.7339031, "lon": -73.9838090 }, + { "lat": 40.7337486, "lon": -73.9839219 }, + { "lat": 40.7336766, "lon": -73.9839748 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598236, + "bounds": { + "minlat": 40.7350789, + "minlon": -73.9829520, + "maxlat": 40.7354311, + "maxlon": -73.9826949 + }, + "nodes": [ + 13205862052, + 10165972518, + 4205565499 + ], + "geometry": [ + { "lat": 40.7354311, "lon": -73.9826949 }, + { "lat": 40.7353762, "lon": -73.9827350 }, + { "lat": 40.7350789, "lon": -73.9829520 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus:forward": "1", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598238, + "bounds": { + "minlat": 40.7333606, + "minlon": -73.9842031, + "maxlat": 40.7336766, + "maxlon": -73.9839748 + }, + "nodes": [ + 1251612266, + 4205565495 + ], + "geometry": [ + { "lat": 40.7336766, "lon": -73.9839748 }, + { "lat": 40.7333606, "lon": -73.9842031 } + ], + "tags": { + "alt_name": "2 Avenue", + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598241, + "bounds": { + "minlat": 40.7356745, + "minlon": -73.9825181, + "maxlat": 40.7360238, + "maxlon": -73.9822654 + }, + "nodes": [ + 42439178, + 10166118082, + 4205565501 + ], + "geometry": [ + { "lat": 40.7360238, "lon": -73.9822654 }, + { "lat": 40.7359633, "lon": -73.9823081 }, + { "lat": 40.7356745, "lon": -73.9825181 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598248, + "bounds": { + "minlat": 40.7312647, + "minlon": -73.9857302, + "maxlat": 40.7316674, + "maxlon": -73.9854374 + }, + "nodes": [ + 13205862062, + 8309479675, + 4205565490 + ], + "geometry": [ + { "lat": 40.7316674, "lon": -73.9854374 }, + { "lat": 40.7316046, "lon": -73.9854829 }, + { "lat": 40.7312647, "lon": -73.9857302 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598252, + "bounds": { + "minlat": 40.7310190, + "minlon": -73.9859090, + "maxlat": 40.7312647, + "maxlon": -73.9857302 + }, + "nodes": [ + 4205565490, + 42442870, + 8309479599, + 13205862064 + ], + "geometry": [ + { "lat": 40.7312647, "lon": -73.9857302 }, + { "lat": 40.7311186, "lon": -73.9858365 }, + { "lat": 40.7310704, "lon": -73.9858715 }, + { "lat": 40.7310190, "lon": -73.9859090 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598256, + "bounds": { + "minlat": 40.7328068, + "minlon": -73.9846016, + "maxlat": 40.7330330, + "maxlon": -73.9844410 + }, + "nodes": [ + 13205862058, + 8310246167, + 4205565492 + ], + "geometry": [ + { "lat": 40.7330330, "lon": -73.9844410 }, + { "lat": 40.7329799, "lon": -73.9844796 }, + { "lat": 40.7328068, "lon": -73.9846016 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598262, + "bounds": { + "minlat": 40.7318840, + "minlon": -73.9852790, + "maxlat": 40.7323530, + "maxlon": -73.9849374 + }, + "nodes": [ + 13205862060, + 8309479683, + 4205565491 + ], + "geometry": [ + { "lat": 40.7323530, "lon": -73.9849374 }, + { "lat": 40.7322589, "lon": -73.9850055 }, + { "lat": 40.7318840, "lon": -73.9852790 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598266, + "bounds": { + "minlat": 40.7362668, + "minlon": -73.9820877, + "maxlat": 40.7366125, + "maxlon": -73.9818366 + }, + "nodes": [ + 1692450029, + 10165972529, + 4205565502 + ], + "geometry": [ + { "lat": 40.7366125, "lon": -73.9818366 }, + { "lat": 40.7365447, "lon": -73.9818858 }, + { "lat": 40.7362668, "lon": -73.9820877 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598270, + "bounds": { + "minlat": 40.7323530, + "minlon": -73.9849374, + "maxlat": 40.7328068, + "maxlon": -73.9846016 + }, + "nodes": [ + 4205565492, + 42440737, + 8309479681, + 13205862060 + ], + "geometry": [ + { "lat": 40.7328068, "lon": -73.9846016 }, + { "lat": 40.7324967, "lon": -73.9848313 }, + { "lat": 40.7324335, "lon": -73.9848781 }, + { "lat": 40.7323530, "lon": -73.9849374 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598275, + "bounds": { + "minlat": 40.7360238, + "minlon": -73.9822654, + "maxlat": 40.7362668, + "maxlon": -73.9820877 + }, + "nodes": [ + 4205565502, + 12181309639, + 10166118081, + 42439178 + ], + "geometry": [ + { "lat": 40.7362668, "lon": -73.9820877 }, + { "lat": 40.7361257, "lon": -73.9821902 }, + { "lat": 40.7360767, "lon": -73.9822257 }, + { "lat": 40.7360238, "lon": -73.9822654 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598281, + "bounds": { + "minlat": 40.7354311, + "minlon": -73.9826949, + "maxlat": 40.7356745, + "maxlon": -73.9825181 + }, + "nodes": [ + 4205565501, + 42442881, + 10165972521, + 13205862052 + ], + "geometry": [ + { "lat": 40.7356745, "lon": -73.9825181 }, + { "lat": 40.7355365, "lon": -73.9826183 }, + { "lat": 40.7354859, "lon": -73.9826551 }, + { "lat": 40.7354311, "lon": -73.9826949 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus:forward": "1", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through||", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598286, + "bounds": { + "minlat": 40.7316674, + "minlon": -73.9854374, + "maxlat": 40.7318840, + "maxlon": -73.9852790 + }, + "nodes": [ + 4205565491, + 6139477287, + 13205862063, + 8309479673, + 13205862062 + ], + "geometry": [ + { "lat": 40.7318840, "lon": -73.9852790 }, + { "lat": 40.7318238, "lon": -73.9853229 }, + { "lat": 40.7317601, "lon": -73.9853695 }, + { "lat": 40.7317136, "lon": -73.9854034 }, + { "lat": 40.7316674, "lon": -73.9854374 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598289, + "bounds": { + "minlat": 40.7342630, + "minlon": -73.9835476, + "maxlat": 40.7344830, + "maxlon": -73.9833869 + }, + "nodes": [ + 4205565497, + 42442877, + 4129804713, + 13205862056 + ], + "geometry": [ + { "lat": 40.7344830, "lon": -73.9833869 }, + { "lat": 40.7343709, "lon": -73.9834688 }, + { "lat": 40.7343230, "lon": -73.9835037 }, + { "lat": 40.7342630, "lon": -73.9835476 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598294, + "bounds": { + "minlat": 40.7339031, + "minlon": -73.9838090, + "maxlat": 40.7342630, + "maxlon": -73.9835476 + }, + "nodes": [ + 13205862056, + 4129804701, + 4205565496 + ], + "geometry": [ + { "lat": 40.7342630, "lon": -73.9835476 }, + { "lat": 40.7342087, "lon": -73.9835871 }, + { "lat": 40.7339031, "lon": -73.9838090 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598299, + "bounds": { + "minlat": 40.7348478, + "minlon": -73.9831211, + "maxlat": 40.7350789, + "maxlon": -73.9829520 + }, + "nodes": [ + 4205565499, + 42437287, + 4129804732, + 13205862054 + ], + "geometry": [ + { "lat": 40.7350789, "lon": -73.9829520 }, + { "lat": 40.7349493, "lon": -73.9830465 }, + { "lat": 40.7348997, "lon": -73.9830827 }, + { "lat": 40.7348478, "lon": -73.9831211 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598304, + "bounds": { + "minlat": 40.7330330, + "minlon": -73.9844410, + "maxlat": 40.7333606, + "maxlon": -73.9842031 + }, + "nodes": [ + 4205565495, + 42431464, + 4191922371, + 13205862058 + ], + "geometry": [ + { "lat": 40.7333606, "lon": -73.9842031 }, + { "lat": 40.7331424, "lon": -73.9843615 }, + { "lat": 40.7330958, "lon": -73.9843953 }, + { "lat": 40.7330330, "lon": -73.9844410 } + ], + "tags": { + "alt_name": "2 Avenue", + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598310, + "bounds": { + "minlat": 40.7344282, + "minlon": -73.9899591, + "maxlat": 40.7349161, + "maxlon": -73.9898898 + }, + "nodes": [ + 42440721, + 3670742481, + 4205565498 + ], + "geometry": [ + { "lat": 40.7344282, "lon": -73.9898898 }, + { "lat": 40.7345441, "lon": -73.9899120 }, + { "lat": 40.7349161, "lon": -73.9899591 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Union Square East", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420598323, + "bounds": { + "minlat": 40.7332265, + "minlon": -74.0030292, + "maxlat": 40.7336094, + "maxlon": -74.0028114 + }, + "nodes": [ + 42430805, + 4320028818, + 4320028807, + 42430803 + ], + "geometry": [ + { "lat": 40.7336094, "lon": -74.0028114 }, + { "lat": 40.7335060, "lon": -74.0028702 }, + { "lat": 40.7332992, "lon": -74.0029838 }, + { "lat": 40.7332265, "lon": -74.0030292 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "kerb", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420598327, + "bounds": { + "minlat": 40.7441065, + "minlon": -73.9956382, + "maxlat": 40.7446201, + "maxlon": -73.9952652 + }, + "nodes": [ + 9418022243, + 4205565532, + 10171337698, + 42437890 + ], + "geometry": [ + { "lat": 40.7446201, "lon": -73.9952652 }, + { "lat": 40.7444330, "lon": -73.9954016 }, + { "lat": 40.7442028, "lon": -73.9955684 }, + { "lat": 40.7441065, "lon": -73.9956382 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "oneway:bicycle": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598330, + "bounds": { + "minlat": 40.7462049, + "minlon": -73.9941150, + "maxlat": 40.7466180, + "maxlon": -73.9938130 + }, + "nodes": [ + 42434807, + 11147382165, + 9119739665 + ], + "geometry": [ + { "lat": 40.7466180, "lon": -73.9938130 }, + { "lat": 40.7465616, "lon": -73.9938542 }, + { "lat": 40.7462049, "lon": -73.9941150 } + ], + "tags": { + "alt_name": "7 Avenue", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598332, + "bounds": { + "minlat": 40.7463062, + "minlon": -73.9977458, + "maxlat": 40.7465800, + "maxlon": -73.9975495 + }, + "nodes": [ + 9754548550, + 11147382154, + 42435629 + ], + "geometry": [ + { "lat": 40.7463062, "lon": -73.9977458 }, + { "lat": 40.7465251, "lon": -73.9975889 }, + { "lat": 40.7465800, "lon": -73.9975495 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598333, + "bounds": { + "minlat": 40.7436469, + "minlon": -73.9996879, + "maxlat": 40.7440255, + "maxlon": -73.9994132 + }, + "nodes": [ + 4205565523, + 12181309675, + 10171509280, + 5849918502 + ], + "geometry": [ + { "lat": 40.7436469, "lon": -73.9996879 }, + { "lat": 40.7439220, "lon": -73.9994889 }, + { "lat": 40.7439498, "lon": -73.9994688 }, + { "lat": 40.7440255, "lon": -73.9994132 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598335, + "bounds": { + "minlat": 40.7424635, + "minlon": -74.0005490, + "maxlat": 40.7428467, + "maxlon": -74.0002679 + }, + "nodes": [ + 4205565518, + 9097335851, + 10171509289, + 42435610 + ], + "geometry": [ + { "lat": 40.7424635, "lon": -74.0005490 }, + { "lat": 40.7425620, "lon": -74.0004774 }, + { "lat": 40.7427904, "lon": -74.0003095 }, + { "lat": 40.7428467, "lon": -74.0002679 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598337, + "bounds": { + "minlat": 40.7413136, + "minlon": -74.0013891, + "maxlat": 40.7416736, + "maxlon": -74.0011226 + }, + "nodes": [ + 4205565514, + 8262308803, + 42435603 + ], + "geometry": [ + { "lat": 40.7413136, "lon": -74.0013891 }, + { "lat": 40.7416174, "lon": -74.0011637 }, + { "lat": 40.7416736, "lon": -74.0011226 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598339, + "bounds": { + "minlat": 40.7449004, + "minlon": -73.9987752, + "maxlat": 40.7453054, + "maxlon": -73.9984720 + }, + "nodes": [ + 4205565533, + 10171509266, + 42435624 + ], + "geometry": [ + { "lat": 40.7449004, "lon": -73.9987752 }, + { "lat": 40.7452035, "lon": -73.9985464 }, + { "lat": 40.7453054, "lon": -73.9984720 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598345, + "bounds": { + "minlat": 40.7404441, + "minlon": -74.0019879, + "maxlat": 40.7410800, + "maxlon": -74.0015550 + }, + "nodes": [ + 42435598, + 8262308758, + 8262308794, + 42435599 + ], + "geometry": [ + { "lat": 40.7404441, "lon": -74.0019879 }, + { "lat": 40.7404995, "lon": -74.0019502 }, + { "lat": 40.7410256, "lon": -74.0015920 }, + { "lat": 40.7410800, "lon": -74.0015550 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598349, + "bounds": { + "minlat": 40.7428467, + "minlon": -74.0002679, + "maxlat": 40.7434291, + "maxlon": -73.9998503 + }, + "nodes": [ + 42435610, + 10171509292, + 12181309661, + 10171337723, + 42427381 + ], + "geometry": [ + { "lat": 40.7428467, "lon": -74.0002679 }, + { "lat": 40.7428950, "lon": -74.0002332 }, + { "lat": 40.7433355, "lon": -73.9999170 }, + { "lat": 40.7433748, "lon": -73.9998888 }, + { "lat": 40.7434291, "lon": -73.9998503 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598356, + "bounds": { + "minlat": 40.7416736, + "minlon": -74.0011226, + "maxlat": 40.7422581, + "maxlon": -74.0006951 + }, + "nodes": [ + 42435603, + 8262308802, + 10172816365, + 42429662 + ], + "geometry": [ + { "lat": 40.7416736, "lon": -74.0011226 }, + { "lat": 40.7417303, "lon": -74.0010806 }, + { "lat": 40.7421974, "lon": -74.0007394 }, + { "lat": 40.7422581, "lon": -74.0006951 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598366, + "bounds": { + "minlat": 40.7453054, + "minlon": -73.9984720, + "maxlat": 40.7461987, + "maxlon": -73.9978228 + }, + "nodes": [ + 42435624, + 10171509268, + 12152905374, + 8356688617, + 42427427, + 10171509226, + 4205565537 + ], + "geometry": [ + { "lat": 40.7453054, "lon": -73.9984720 }, + { "lat": 40.7453871, "lon": -73.9984092 }, + { "lat": 40.7458595, "lon": -73.9980681 }, + { "lat": 40.7459015, "lon": -73.9980369 }, + { "lat": 40.7459651, "lon": -73.9979896 }, + { "lat": 40.7460254, "lon": -73.9979448 }, + { "lat": 40.7461987, "lon": -73.9978228 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598373, + "bounds": { + "minlat": 40.7402148, + "minlon": -73.9869534, + "maxlat": 40.7404442, + "maxlon": -73.9864100 + }, + "nodes": [ + 4205565512, + 13707001854, + 12181339173, + 10166167537, + 4597668041 + ], + "geometry": [ + { "lat": 40.7404442, "lon": -73.9869534 }, + { "lat": 40.7404080, "lon": -73.9868678 }, + { "lat": 40.7402814, "lon": -73.9865678 }, + { "lat": 40.7402547, "lon": -73.9865041 }, + { "lat": 40.7402148, "lon": -73.9864100 } + ], + "tags": { + "alt_name": "East 23 Street", + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated|yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through||right", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598391, + "bounds": { + "minlat": 40.7374857, + "minlon": -73.9882908, + "maxlat": 40.7377164, + "maxlon": -73.9881184 + }, + "nodes": [ + 4205565503, + 12181339164, + 10172843113, + 42456543 + ], + "geometry": [ + { "lat": 40.7374857, "lon": -73.9882908 }, + { "lat": 40.7376274, "lon": -73.9881832 }, + { "lat": 40.7376681, "lon": -73.9881523 }, + { "lat": 40.7377164, "lon": -73.9881184 } + ], + "tags": { + "cycleway:right": "no", + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 420598398, + "bounds": { + "minlat": 40.7458300, + "minlon": -73.9823372, + "maxlat": 40.7460367, + "maxlon": -73.9821813 + }, + "nodes": [ + 3786901729, + 12181374916, + 12181374918, + 8119462436, + 4597668020 + ], + "geometry": [ + { "lat": 40.7460367, "lon": -73.9821813 }, + { "lat": 40.7459435, "lon": -73.9822438 }, + { "lat": 40.7459018, "lon": -73.9822744 }, + { "lat": 40.7458843, "lon": -73.9822896 }, + { "lat": 40.7458300, "lon": -73.9823372 } + ], + "tags": { + "cycleway:right": "no", + "foot": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 420598402, + "bounds": { + "minlat": 40.7351693, + "minlon": -73.9901419, + "maxlat": 40.7353592, + "maxlon": -73.9899720 + }, + "nodes": [ + 4597668035, + 3670742453, + 8569048141, + 12179582176, + 8569045598, + 4205565500 + ], + "geometry": [ + { "lat": 40.7353592, "lon": -73.9899720 }, + { "lat": 40.7353120, "lon": -73.9900068 }, + { "lat": 40.7352605, "lon": -73.9900508 }, + { "lat": 40.7352278, "lon": -73.9900791 }, + { "lat": 40.7351971, "lon": -73.9901103 }, + { "lat": 40.7351693, "lon": -73.9901419 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "bump;flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Union Square East", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420598407, + "bounds": { + "minlat": 40.7441065, + "minlon": -73.9984720, + "maxlat": 40.7453054, + "maxlon": -73.9956382 + }, + "nodes": [ + 42435624, + 9971262478, + 4205565530, + 42437890 + ], + "geometry": [ + { "lat": 40.7453054, "lon": -73.9984720 }, + { "lat": 40.7452505, "lon": -73.9983423 }, + { "lat": 40.7441628, "lon": -73.9957714 }, + { "lat": 40.7441065, "lon": -73.9956382 } + ], + "tags": { + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 23rd Street", + "name:ru": "Западная 23-я стрит", + "sidewalk:left": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420598415, + "bounds": { + "minlat": 40.7430966, + "minlon": -73.9952122, + "maxlat": 40.7439222, + "maxlon": -73.9932219 + }, + "nodes": [ + 4205565526, + 9971262476, + 9971262473, + 9971262475, + 9971262474, + 9971262472 + ], + "geometry": [ + { "lat": 40.7439222, "lon": -73.9952122 }, + { "lat": 40.7432010, "lon": -73.9934984 }, + { "lat": 40.7431756, "lon": -73.9934349 }, + { "lat": 40.7431503, "lon": -73.9933662 }, + { "lat": 40.7431250, "lon": -73.9932943 }, + { "lat": 40.7430966, "lon": -73.9932219 } + ], + "tags": { + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "West 23rd Street", + "name:ru": "Западная 23-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420601566, + "bounds": { + "minlat": 40.8286654, + "minlon": -73.9863694, + "maxlat": 40.8297379, + "maxlon": -73.9859345 + }, + "nodes": [ + 7111640160, + 103238622, + 103245955, + 103237100 + ], + "geometry": [ + { "lat": 40.8286654, "lon": -73.9863694 }, + { "lat": 40.8290160, "lon": -73.9862240 }, + { "lat": 40.8293150, "lon": -73.9861050 }, + { "lat": 40.8297379, "lon": -73.9859345 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "2", + "name": "Anderson Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 420601567, + "bounds": { + "minlat": 40.8209766, + "minlon": -73.9912483, + "maxlat": 40.8211445, + "maxlon": -73.9911183 + }, + "nodes": [ + 4205589212, + 4205589214 + ], + "geometry": [ + { "lat": 40.8209766, "lon": -73.9912483 }, + { "lat": 40.8211445, "lon": -73.9911183 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 420601568, + "bounds": { + "minlat": 40.8214915, + "minlon": -73.9908158, + "maxlat": 40.8218132, + "maxlon": -73.9905149 + }, + "nodes": [ + 440208183, + 7578880234, + 4205589216 + ], + "geometry": [ + { "lat": 40.8214915, "lon": -73.9908158 }, + { "lat": 40.8216334, "lon": -73.9906831 }, + { "lat": 40.8218132, "lon": -73.9905149 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601569, + "bounds": { + "minlat": 40.8205689, + "minlon": -73.9915971, + "maxlat": 40.8207913, + "maxlon": -73.9914094 + }, + "nodes": [ + 4205589209, + 7607890614 + ], + "geometry": [ + { "lat": 40.8205689, "lon": -73.9915971 }, + { "lat": 40.8207913, "lon": -73.9914094 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601570, + "bounds": { + "minlat": 40.8211445, + "minlon": -73.9911183, + "maxlat": 40.8214915, + "maxlon": -73.9908158 + }, + "nodes": [ + 4205589214, + 7607890794, + 7771759681, + 440208186, + 13524700363, + 440208183 + ], + "geometry": [ + { "lat": 40.8211445, "lon": -73.9911183 }, + { "lat": 40.8212176, "lon": -73.9910611 }, + { "lat": 40.8213472, "lon": -73.9909596 }, + { "lat": 40.8214034, "lon": -73.9909156 }, + { "lat": 40.8214256, "lon": -73.9908904 }, + { "lat": 40.8214915, "lon": -73.9908158 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601571, + "bounds": { + "minlat": 40.8249858, + "minlon": -73.9970929, + "maxlat": 40.8253303, + "maxlon": -73.9968706 + }, + "nodes": [ + 103147955, + 10688080992, + 4205589224 + ], + "geometry": [ + { "lat": 40.8249858, "lon": -73.9970929 }, + { "lat": 40.8252383, "lon": -73.9969300 }, + { "lat": 40.8253303, "lon": -73.9968706 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601572, + "bounds": { + "minlat": 40.8243720, + "minlon": -73.9974940, + "maxlat": 40.8245751, + "maxlon": -73.9973624 + }, + "nodes": [ + 103147954, + 4205589222 + ], + "geometry": [ + { "lat": 40.8243720, "lon": -73.9974940 }, + { "lat": 40.8245751, "lon": -73.9973624 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601573, + "bounds": { + "minlat": 40.8163300, + "minlon": -74.0022117, + "maxlat": 40.8165858, + "maxlon": -74.0021218 + }, + "nodes": [ + 103147924, + 13525538785, + 4205589202 + ], + "geometry": [ + { "lat": 40.8163300, "lon": -74.0022117 }, + { "lat": 40.8163971, "lon": -74.0021881 }, + { "lat": 40.8165858, "lon": -74.0021218 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601575, + "bounds": { + "minlat": 40.8276321, + "minlon": -73.9952221, + "maxlat": 40.8279826, + "maxlon": -73.9949615 + }, + "nodes": [ + 4205589228, + 103147967 + ], + "geometry": [ + { "lat": 40.8276321, "lon": -73.9952221 }, + { "lat": 40.8279826, "lon": -73.9949615 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601578, + "bounds": { + "minlat": 40.8215323, + "minlon": -73.9993129, + "maxlat": 40.8219190, + "maxlon": -73.9990795 + }, + "nodes": [ + 4205589215, + 103147942 + ], + "geometry": [ + { "lat": 40.8215323, "lon": -73.9993129 }, + { "lat": 40.8219190, "lon": -73.9990795 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601581, + "bounds": { + "minlat": 40.8220819, + "minlon": -73.9989639, + "maxlat": 40.8222910, + "maxlon": -73.9988309 + }, + "nodes": [ + 4205589217, + 4205589218 + ], + "geometry": [ + { "lat": 40.8220819, "lon": -73.9989639 }, + { "lat": 40.8222910, "lon": -73.9988309 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601584, + "bounds": { + "minlat": 40.8200043, + "minlon": -74.0002985, + "maxlat": 40.8203711, + "maxlon": -74.0000653 + }, + "nodes": [ + 4205589207, + 12468673280, + 4205589208 + ], + "geometry": [ + { "lat": 40.8200043, "lon": -74.0002985 }, + { "lat": 40.8201805, "lon": -74.0001887 }, + { "lat": 40.8203711, "lon": -74.0000653 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601589, + "bounds": { + "minlat": 40.8279826, + "minlon": -73.9949615, + "maxlat": 40.8281781, + "maxlon": -73.9948043 + }, + "nodes": [ + 103147967, + 103147968 + ], + "geometry": [ + { "lat": 40.8279826, "lon": -73.9949615 }, + { "lat": 40.8281781, "lon": -73.9948043 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601593, + "bounds": { + "minlat": 40.8291289, + "minlon": -73.9939975, + "maxlat": 40.8294421, + "maxlon": -73.9937327 + }, + "nodes": [ + 103147974, + 8219393786, + 13527758461, + 4205589229 + ], + "geometry": [ + { "lat": 40.8291289, "lon": -73.9939975 }, + { "lat": 40.8291736, "lon": -73.9939600 }, + { "lat": 40.8291865, "lon": -73.9939491 }, + { "lat": 40.8294421, "lon": -73.9937327 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk": "both", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601596, + "bounds": { + "minlat": 40.8165858, + "minlon": -74.0021218, + "maxlat": 40.8167313, + "maxlon": -74.0020676 + }, + "nodes": [ + 4205589202, + 4205589203 + ], + "geometry": [ + { "lat": 40.8165858, "lon": -74.0021218 }, + { "lat": 40.8167313, "lon": -74.0020676 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601597, + "bounds": { + "minlat": 40.8303466, + "minlon": -73.9931074, + "maxlat": 40.8306118, + "maxlon": -73.9929152 + }, + "nodes": [ + 103147978, + 4205589232 + ], + "geometry": [ + { "lat": 40.8303466, "lon": -73.9931074 }, + { "lat": 40.8306118, "lon": -73.9929152 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk": "both", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601598, + "bounds": { + "minlat": 40.8133316, + "minlon": -74.0033087, + "maxlat": 40.8138645, + "maxlon": -74.0030781 + }, + "nodes": [ + 103142146, + 12535377611, + 103147915 + ], + "geometry": [ + { "lat": 40.8133316, "lon": -74.0033087 }, + { "lat": 40.8135934, "lon": -74.0031873 }, + { "lat": 40.8138645, "lon": -74.0030781 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601599, + "bounds": { + "minlat": 40.8195630, + "minlon": -74.0005679, + "maxlat": 40.8200043, + "maxlon": -74.0002985 + }, + "nodes": [ + 103147936, + 12537534786, + 8603362508, + 8603362502, + 13731881280, + 4205589207 + ], + "geometry": [ + { "lat": 40.8195630, "lon": -74.0005679 }, + { "lat": 40.8196273, "lon": -74.0005245 }, + { "lat": 40.8197266, "lon": -74.0004642 }, + { "lat": 40.8198063, "lon": -74.0004180 }, + { "lat": 40.8198920, "lon": -74.0003641 }, + { "lat": 40.8200043, "lon": -74.0002985 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601600, + "bounds": { + "minlat": 40.8231160, + "minlon": -73.9983050, + "maxlat": 40.8234427, + "maxlon": -73.9980942 + }, + "nodes": [ + 103147951, + 4205589220 + ], + "geometry": [ + { "lat": 40.8231160, "lon": -73.9983050 }, + { "lat": 40.8234427, "lon": -73.9980942 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601601, + "bounds": { + "minlat": 40.8222910, + "minlon": -73.9988309, + "maxlat": 40.8225092, + "maxlon": -73.9986920 + }, + "nodes": [ + 4205589218, + 103147944 + ], + "geometry": [ + { "lat": 40.8222910, "lon": -73.9988309 }, + { "lat": 40.8225092, "lon": -73.9986920 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601603, + "bounds": { + "minlat": 40.8297260, + "minlon": -73.9935270, + "maxlat": 40.8299369, + "maxlon": -73.9933836 + }, + "nodes": [ + 103147977, + 10301902657, + 4205589230 + ], + "geometry": [ + { "lat": 40.8297260, "lon": -73.9935270 }, + { "lat": 40.8298876, "lon": -73.9934171 }, + { "lat": 40.8299369, "lon": -73.9933836 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk": "both", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601605, + "bounds": { + "minlat": 40.8211289, + "minlon": -73.9995678, + "maxlat": 40.8212690, + "maxlon": -73.9994800 + }, + "nodes": [ + 4205589213, + 103147940 + ], + "geometry": [ + { "lat": 40.8211289, "lon": -73.9995678 }, + { "lat": 40.8212690, "lon": -73.9994800 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601606, + "bounds": { + "minlat": 40.8259458, + "minlon": -73.9964877, + "maxlat": 40.8262168, + "maxlon": -73.9963230 + }, + "nodes": [ + 4205589225, + 103147960 + ], + "geometry": [ + { "lat": 40.8259458, "lon": -73.9964877 }, + { "lat": 40.8262168, "lon": -73.9963230 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601607, + "bounds": { + "minlat": 40.8240393, + "minlon": -73.9977090, + "maxlat": 40.8243720, + "maxlon": -73.9974940 + }, + "nodes": [ + 4205589221, + 103147954 + ], + "geometry": [ + { "lat": 40.8240393, "lon": -73.9977090 }, + { "lat": 40.8243720, "lon": -73.9974940 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601608, + "bounds": { + "minlat": 40.8209076, + "minlon": -73.9997097, + "maxlat": 40.8211289, + "maxlon": -73.9995678 + }, + "nodes": [ + 4205589211, + 4205589213 + ], + "geometry": [ + { "lat": 40.8209076, "lon": -73.9997097 }, + { "lat": 40.8211289, "lon": -73.9995678 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601610, + "bounds": { + "minlat": 40.8212690, + "minlon": -73.9994800, + "maxlat": 40.8215323, + "maxlon": -73.9993129 + }, + "nodes": [ + 103147940, + 7150378844, + 4205589215 + ], + "geometry": [ + { "lat": 40.8212690, "lon": -73.9994800 }, + { "lat": 40.8214215, "lon": -73.9993832 }, + { "lat": 40.8215323, "lon": -73.9993129 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601611, + "bounds": { + "minlat": 40.8186945, + "minlon": -74.0010908, + "maxlat": 40.8188495, + "maxlon": -74.0010022 + }, + "nodes": [ + 4205589205, + 103147934 + ], + "geometry": [ + { "lat": 40.8186945, "lon": -74.0010908 }, + { "lat": 40.8188495, "lon": -74.0010022 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601616, + "bounds": { + "minlat": 40.8245751, + "minlon": -73.9973624, + "maxlat": 40.8246617, + "maxlon": -73.9973062 + }, + "nodes": [ + 4205589222, + 4205589223 + ], + "geometry": [ + { "lat": 40.8245751, "lon": -73.9973624 }, + { "lat": 40.8246617, "lon": -73.9973062 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601618, + "bounds": { + "minlat": 40.8301010, + "minlon": -73.9932696, + "maxlat": 40.8303466, + "maxlon": -73.9931074 + }, + "nodes": [ + 4205589231, + 103147978 + ], + "geometry": [ + { "lat": 40.8301010, "lon": -73.9932696 }, + { "lat": 40.8303466, "lon": -73.9931074 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk": "both", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601619, + "bounds": { + "minlat": 40.8175635, + "minlon": -74.0016991, + "maxlat": 40.8178346, + "maxlon": -74.0015602 + }, + "nodes": [ + 4205589204, + 103147927 + ], + "geometry": [ + { "lat": 40.8175635, "lon": -74.0016991 }, + { "lat": 40.8178346, "lon": -74.0015602 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601620, + "bounds": { + "minlat": 40.8234427, + "minlon": -73.9980942, + "maxlat": 40.8237360, + "maxlon": -73.9979050 + }, + "nodes": [ + 4205589220, + 103147953 + ], + "geometry": [ + { "lat": 40.8234427, "lon": -73.9980942 }, + { "lat": 40.8237360, "lon": -73.9979050 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601621, + "bounds": { + "minlat": 40.8237360, + "minlon": -73.9979050, + "maxlat": 40.8240393, + "maxlon": -73.9977090 + }, + "nodes": [ + 103147953, + 4205589221 + ], + "geometry": [ + { "lat": 40.8237360, "lon": -73.9979050 }, + { "lat": 40.8240393, "lon": -73.9977090 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601622, + "bounds": { + "minlat": 40.8262168, + "minlon": -73.9963230, + "maxlat": 40.8263408, + "maxlon": -73.9962216 + }, + "nodes": [ + 103147960, + 103147962 + ], + "geometry": [ + { "lat": 40.8262168, "lon": -73.9963230 }, + { "lat": 40.8263408, "lon": -73.9962216 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601627, + "bounds": { + "minlat": 40.8299369, + "minlon": -73.9933836, + "maxlat": 40.8301010, + "maxlon": -73.9932696 + }, + "nodes": [ + 4205589230, + 4205589231 + ], + "geometry": [ + { "lat": 40.8299369, "lon": -73.9933836 }, + { "lat": 40.8301010, "lon": -73.9932696 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk": "both", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601635, + "bounds": { + "minlat": 40.8160219, + "minlon": -74.0023253, + "maxlat": 40.8163300, + "maxlon": -74.0022117 + }, + "nodes": [ + 4205589201, + 13525538789, + 103147924 + ], + "geometry": [ + { "lat": 40.8160219, "lon": -74.0023253 }, + { "lat": 40.8162637, "lon": -74.0022362 }, + { "lat": 40.8163300, "lon": -74.0022117 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601652, + "bounds": { + "minlat": 40.8167313, + "minlon": -74.0020676, + "maxlat": 40.8169491, + "maxlon": -74.0019772 + }, + "nodes": [ + 4205589203, + 103133837 + ], + "geometry": [ + { "lat": 40.8167313, "lon": -74.0020676 }, + { "lat": 40.8169491, "lon": -74.0019772 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601655, + "bounds": { + "minlat": 40.8263408, + "minlon": -73.9962216, + "maxlat": 40.8265332, + "maxlon": -73.9960554 + }, + "nodes": [ + 103147962, + 4205589226 + ], + "geometry": [ + { "lat": 40.8263408, "lon": -73.9962216 }, + { "lat": 40.8265332, "lon": -73.9960554 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601656, + "bounds": { + "minlat": 40.8246617, + "minlon": -73.9973062, + "maxlat": 40.8249858, + "maxlon": -73.9970929 + }, + "nodes": [ + 4205589223, + 103147955 + ], + "geometry": [ + { "lat": 40.8246617, "lon": -73.9973062 }, + { "lat": 40.8249858, "lon": -73.9970929 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601657, + "bounds": { + "minlat": 40.8225092, + "minlon": -73.9986920, + "maxlat": 40.8227712, + "maxlon": -73.9985270 + }, + "nodes": [ + 103147944, + 4205589219 + ], + "geometry": [ + { "lat": 40.8225092, "lon": -73.9986920 }, + { "lat": 40.8227712, "lon": -73.9985270 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601659, + "bounds": { + "minlat": 40.8206586, + "minlon": -73.9998827, + "maxlat": 40.8209076, + "maxlon": -73.9997097 + }, + "nodes": [ + 103147937, + 4205589211 + ], + "geometry": [ + { "lat": 40.8206586, "lon": -73.9998827 }, + { "lat": 40.8209076, "lon": -73.9997097 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601661, + "bounds": { + "minlat": 40.8219190, + "minlon": -73.9990795, + "maxlat": 40.8220819, + "maxlon": -73.9989639 + }, + "nodes": [ + 103147942, + 4205589217 + ], + "geometry": [ + { "lat": 40.8219190, "lon": -73.9990795 }, + { "lat": 40.8220819, "lon": -73.9989639 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601664, + "bounds": { + "minlat": 40.8143118, + "minlon": -74.0029177, + "maxlat": 40.8160219, + "maxlon": -74.0023253 + }, + "nodes": [ + 688325018, + 912452519, + 7591277324, + 7591277328, + 7591277331, + 4205589201 + ], + "geometry": [ + { "lat": 40.8143118, "lon": -74.0029177 }, + { "lat": 40.8146031, "lon": -74.0028244 }, + { "lat": 40.8151210, "lon": -74.0026372 }, + { "lat": 40.8153625, "lon": -74.0025525 }, + { "lat": 40.8156970, "lon": -74.0024372 }, + { "lat": 40.8160219, "lon": -74.0023253 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601668, + "bounds": { + "minlat": 40.8265332, + "minlon": -73.9960554, + "maxlat": 40.8271722, + "maxlon": -73.9955840 + }, + "nodes": [ + 4205589226, + 103147963, + 4205589227 + ], + "geometry": [ + { "lat": 40.8265332, "lon": -73.9960554 }, + { "lat": 40.8268820, "lon": -73.9958040 }, + { "lat": 40.8271722, "lon": -73.9955840 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601670, + "bounds": { + "minlat": 40.8294421, + "minlon": -73.9937327, + "maxlat": 40.8297260, + "maxlon": -73.9935270 + }, + "nodes": [ + 4205589229, + 103147975, + 8219393785, + 103147977 + ], + "geometry": [ + { "lat": 40.8294421, "lon": -73.9937327 }, + { "lat": 40.8294830, "lon": -73.9936990 }, + { "lat": 40.8296603, "lon": -73.9935735 }, + { "lat": 40.8297260, "lon": -73.9935270 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk": "both", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601673, + "bounds": { + "minlat": 40.8203711, + "minlon": -74.0000653, + "maxlat": 40.8206586, + "maxlon": -73.9998827 + }, + "nodes": [ + 4205589208, + 103147937 + ], + "geometry": [ + { "lat": 40.8203711, "lon": -74.0000653 }, + { "lat": 40.8206586, "lon": -73.9998827 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601676, + "bounds": { + "minlat": 40.8169491, + "minlon": -74.0019772, + "maxlat": 40.8175635, + "maxlon": -74.0016991 + }, + "nodes": [ + 103133837, + 7931282116, + 4205589204 + ], + "geometry": [ + { "lat": 40.8169491, "lon": -74.0019772 }, + { "lat": 40.8174209, "lon": -74.0017703 }, + { "lat": 40.8175635, "lon": -74.0016991 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601678, + "bounds": { + "minlat": 40.8253303, + "minlon": -73.9968706, + "maxlat": 40.8259458, + "maxlon": -73.9964877 + }, + "nodes": [ + 4205589224, + 10688080982, + 10688080995, + 103147957, + 4205589225 + ], + "geometry": [ + { "lat": 40.8253303, "lon": -73.9968706 }, + { "lat": 40.8255366, "lon": -73.9967412 }, + { "lat": 40.8256559, "lon": -73.9966681 }, + { "lat": 40.8257854, "lon": -73.9965900 }, + { "lat": 40.8259458, "lon": -73.9964877 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601680, + "bounds": { + "minlat": 40.8274256, + "minlon": -73.9953865, + "maxlat": 40.8276321, + "maxlon": -73.9952221 + }, + "nodes": [ + 103135098, + 103147966, + 4205589228 + ], + "geometry": [ + { "lat": 40.8274256, "lon": -73.9953865 }, + { "lat": 40.8276140, "lon": -73.9952370 }, + { "lat": 40.8276321, "lon": -73.9952221 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601681, + "bounds": { + "minlat": 40.8188495, + "minlon": -74.0010022, + "maxlat": 40.8191869, + "maxlon": -74.0007938 + }, + "nodes": [ + 103147934, + 5727986082 + ], + "geometry": [ + { "lat": 40.8188495, "lon": -74.0010022 }, + { "lat": 40.8191869, "lon": -74.0007938 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601682, + "bounds": { + "minlat": 40.8271722, + "minlon": -73.9955840, + "maxlat": 40.8274256, + "maxlon": -73.9953865 + }, + "nodes": [ + 4205589227, + 103147965, + 103135098 + ], + "geometry": [ + { "lat": 40.8271722, "lon": -73.9955840 }, + { "lat": 40.8272500, "lon": -73.9955250 }, + { "lat": 40.8274256, "lon": -73.9953865 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601683, + "bounds": { + "minlat": 40.8281781, + "minlon": -73.9948043, + "maxlat": 40.8291289, + "maxlon": -73.9939975 + }, + "nodes": [ + 103147968, + 103147971, + 103147973, + 103147974 + ], + "geometry": [ + { "lat": 40.8281781, "lon": -73.9948043 }, + { "lat": 40.8285632, "lon": -73.9944755 }, + { "lat": 40.8287397, "lon": -73.9943306 }, + { "lat": 40.8291289, "lon": -73.9939975 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601684, + "bounds": { + "minlat": 40.8227712, + "minlon": -73.9985270, + "maxlat": 40.8231160, + "maxlon": -73.9983050 + }, + "nodes": [ + 4205589219, + 103147947, + 440208213, + 103147951 + ], + "geometry": [ + { "lat": 40.8227712, "lon": -73.9985270 }, + { "lat": 40.8227950, "lon": -73.9985120 }, + { "lat": 40.8228150, "lon": -73.9984990 }, + { "lat": 40.8231160, "lon": -73.9983050 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601685, + "bounds": { + "minlat": 40.8180212, + "minlon": -74.0014646, + "maxlat": 40.8186945, + "maxlon": -74.0010908 + }, + "nodes": [ + 12376162443, + 103147929, + 103147931, + 4205589205 + ], + "geometry": [ + { "lat": 40.8180212, "lon": -74.0014646 }, + { "lat": 40.8181751, "lon": -74.0013869 }, + { "lat": 40.8184756, "lon": -74.0012180 }, + { "lat": 40.8186945, "lon": -74.0010908 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601686, + "bounds": { + "minlat": 40.8218437, + "minlon": -73.9878306, + "maxlat": 40.8256397, + "maxlon": -73.9874017 + }, + "nodes": [ + 103175945, + 103207076, + 7570838119, + 7570838122, + 13525873331, + 103150196, + 103207075, + 7557491409, + 103207074, + 7557491410, + 7557491413, + 4695282823, + 7578396567, + 103207073, + 7578422369, + 5341032740 + ], + "geometry": [ + { "lat": 40.8256397, "lon": -73.9874017 }, + { "lat": 40.8249395, "lon": -73.9874776 }, + { "lat": 40.8246610, "lon": -73.9875095 }, + { "lat": 40.8245115, "lon": -73.9875266 }, + { "lat": 40.8242274, "lon": -73.9875592 }, + { "lat": 40.8241620, "lon": -73.9875667 }, + { "lat": 40.8238294, "lon": -73.9876036 }, + { "lat": 40.8235767, "lon": -73.9876291 }, + { "lat": 40.8232810, "lon": -73.9876590 }, + { "lat": 40.8231712, "lon": -73.9876721 }, + { "lat": 40.8225510, "lon": -73.9877462 }, + { "lat": 40.8224927, "lon": -73.9877532 }, + { "lat": 40.8224612, "lon": -73.9877570 }, + { "lat": 40.8223690, "lon": -73.9877680 }, + { "lat": 40.8220963, "lon": -73.9878005 }, + { "lat": 40.8218437, "lon": -73.9878306 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 420601687, + "bounds": { + "minlat": 40.8141879, + "minlon": -73.9900507, + "maxlat": 40.8193334, + "maxlon": -73.9882794 + }, + "nodes": [ + 4205589206, + 7604260404, + 103207064, + 103207063, + 103207060, + 103207058, + 103207055, + 103207051, + 103207049, + 7613378267, + 6902796084, + 103207048, + 103194948, + 103207047, + 103207046, + 7588192464, + 7596426706, + 103207045, + 7614292234, + 103207044, + 103207043, + 103207041, + 103207039 + ], + "geometry": [ + { "lat": 40.8193334, "lon": -73.9882794 }, + { "lat": 40.8187011, "lon": -73.9884780 }, + { "lat": 40.8184186, "lon": -73.9885667 }, + { "lat": 40.8183942, "lon": -73.9885762 }, + { "lat": 40.8179275, "lon": -73.9887455 }, + { "lat": 40.8177670, "lon": -73.9888060 }, + { "lat": 40.8176092, "lon": -73.9888520 }, + { "lat": 40.8173500, "lon": -73.9889140 }, + { "lat": 40.8168730, "lon": -73.9890170 }, + { "lat": 40.8167025, "lon": -73.9890501 }, + { "lat": 40.8166787, "lon": -73.9890547 }, + { "lat": 40.8162860, "lon": -73.9891310 }, + { "lat": 40.8160672, "lon": -73.9891826 }, + { "lat": 40.8157743, "lon": -73.9892944 }, + { "lat": 40.8155910, "lon": -73.9893799 }, + { "lat": 40.8154335, "lon": -73.9894512 }, + { "lat": 40.8153445, "lon": -73.9894978 }, + { "lat": 40.8153035, "lon": -73.9895201 }, + { "lat": 40.8151364, "lon": -73.9896055 }, + { "lat": 40.8150421, "lon": -73.9896537 }, + { "lat": 40.8146763, "lon": -73.9898248 }, + { "lat": 40.8143943, "lon": -73.9899594 }, + { "lat": 40.8141879, "lon": -73.9900507 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 420601688, + "bounds": { + "minlat": 40.8139128, + "minlon": -73.9901431, + "maxlat": 40.8141879, + "maxlon": -73.9900507 + }, + "nodes": [ + 103207039, + 7497403080, + 4205589196 + ], + "geometry": [ + { "lat": 40.8141879, "lon": -73.9900507 }, + { "lat": 40.8140451, "lon": -73.9900987 }, + { "lat": 40.8139128, "lon": -73.9901431 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601689, + "bounds": { + "minlat": 40.8193334, + "minlon": -73.9882794, + "maxlat": 40.8199676, + "maxlon": -73.9880837 + }, + "nodes": [ + 103201208, + 7485850873, + 4205589206 + ], + "geometry": [ + { "lat": 40.8199676, "lon": -73.9880837 }, + { "lat": 40.8196569, "lon": -73.9881836 }, + { "lat": 40.8193334, "lon": -73.9882794 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420601690, + "bounds": { + "minlat": 40.8199676, + "minlon": -73.9880837, + "maxlat": 40.8206793, + "maxlon": -73.9879653 + }, + "nodes": [ + 4205589210, + 103207069, + 103207067, + 7542575520, + 7542575472, + 103201208 + ], + "geometry": [ + { "lat": 40.8206793, "lon": -73.9879653 }, + { "lat": 40.8205240, "lon": -73.9879830 }, + { "lat": 40.8202290, "lon": -73.9880320 }, + { "lat": 40.8201757, "lon": -73.9880425 }, + { "lat": 40.8200870, "lon": -73.9880601 }, + { "lat": 40.8199676, "lon": -73.9880837 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420601691, + "bounds": { + "minlat": 40.8071358, + "minlon": -73.9957098, + "maxlat": 40.8165619, + "maxlon": -73.9903640 + }, + "nodes": [ + 103235642, + 103235643, + 103111330, + 103112575, + 103112577, + 103112761, + 103159360, + 7627281626, + 103234097, + 103202145, + 103162783, + 103235676, + 103235677, + 5342516873, + 103215584, + 13318551941, + 7618565483, + 103117987, + 7620500354, + 6763640463, + 103112566, + 103112564, + 7618565293, + 7618565477, + 103235924, + 103235926, + 7614292418, + 7229404566, + 103112569, + 7614292248, + 103235636, + 7616856215, + 103207125, + 103194942 + ], + "geometry": [ + { "lat": 40.8071358, "lon": -73.9957098 }, + { "lat": 40.8071680, "lon": -73.9956910 }, + { "lat": 40.8076600, "lon": -73.9953730 }, + { "lat": 40.8082450, "lon": -73.9949940 }, + { "lat": 40.8083080, "lon": -73.9949530 }, + { "lat": 40.8089580, "lon": -73.9945330 }, + { "lat": 40.8098272, "lon": -73.9939742 }, + { "lat": 40.8103833, "lon": -73.9935923 }, + { "lat": 40.8109050, "lon": -73.9932340 }, + { "lat": 40.8111558, "lon": -73.9930429 }, + { "lat": 40.8113855, "lon": -73.9928751 }, + { "lat": 40.8115551, "lon": -73.9927840 }, + { "lat": 40.8116697, "lon": -73.9927306 }, + { "lat": 40.8117574, "lon": -73.9926927 }, + { "lat": 40.8117991, "lon": -73.9926732 }, + { "lat": 40.8118841, "lon": -73.9926366 }, + { "lat": 40.8121858, "lon": -73.9925067 }, + { "lat": 40.8124868, "lon": -73.9923641 }, + { "lat": 40.8126687, "lon": -73.9922768 }, + { "lat": 40.8129107, "lon": -73.9921606 }, + { "lat": 40.8131680, "lon": -73.9920380 }, + { "lat": 40.8132190, "lon": -73.9920140 }, + { "lat": 40.8135285, "lon": -73.9918667 }, + { "lat": 40.8137439, "lon": -73.9917642 }, + { "lat": 40.8137590, "lon": -73.9917570 }, + { "lat": 40.8139380, "lon": -73.9916837 }, + { "lat": 40.8143271, "lon": -73.9914938 }, + { "lat": 40.8144110, "lon": -73.9914553 }, + { "lat": 40.8145881, "lon": -73.9913718 }, + { "lat": 40.8147611, "lon": -73.9912840 }, + { "lat": 40.8151022, "lon": -73.9911111 }, + { "lat": 40.8153727, "lon": -73.9909789 }, + { "lat": 40.8159014, "lon": -73.9907206 }, + { "lat": 40.8165619, "lon": -73.9903640 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "highway": "secondary", + "name": "Palisade Avenue", + "ref": "CR 27", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 420601692, + "bounds": { + "minlat": 40.8213780, + "minlon": -73.9878860, + "maxlat": 40.8220277, + "maxlon": -73.9868318 + }, + "nodes": [ + 103207071, + 7542575473, + 103235689, + 5341032744, + 103235690, + 103235692, + 103235694, + 103235696, + 103235697 + ], + "geometry": [ + { "lat": 40.8213780, "lon": -73.9878860 }, + { "lat": 40.8215125, "lon": -73.9877321 }, + { "lat": 40.8215520, "lon": -73.9876870 }, + { "lat": 40.8217973, "lon": -73.9874275 }, + { "lat": 40.8218603, "lon": -73.9873295 }, + { "lat": 40.8219173, "lon": -73.9872275 }, + { "lat": 40.8219552, "lon": -73.9871376 }, + { "lat": 40.8220055, "lon": -73.9870176 }, + { "lat": 40.8220277, "lon": -73.9868318 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "highway": "secondary", + "name": "Palisade Avenue", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "turn:lanes:backward": "left|", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 420601693, + "bounds": { + "minlat": 40.8202875, + "minlon": -73.9886294, + "maxlat": 40.8213780, + "maxlon": -73.9878860 + }, + "nodes": [ + 103201209, + 7542568750, + 103235683, + 103235684, + 103235685, + 7238422511, + 103235686, + 13318551945, + 103235688, + 103207071 + ], + "geometry": [ + { "lat": 40.8202875, "lon": -73.9886294 }, + { "lat": 40.8204042, "lon": -73.9885794 }, + { "lat": 40.8205570, "lon": -73.9885140 }, + { "lat": 40.8207350, "lon": -73.9884170 }, + { "lat": 40.8209070, "lon": -73.9883040 }, + { "lat": 40.8209617, "lon": -73.9882619 }, + { "lat": 40.8210730, "lon": -73.9881760 }, + { "lat": 40.8212178, "lon": -73.9880461 }, + { "lat": 40.8212280, "lon": -73.9880370 }, + { "lat": 40.8213780, "lon": -73.9878860 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "highway": "secondary", + "name": "Palisade Avenue", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "turn:lanes:backward": "|right", + "turn:lanes:forward": "left|through", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 420601694, + "bounds": { + "minlat": 40.8155145, + "minlon": -73.9821922, + "maxlat": 40.8159492, + "maxlon": -73.9817196 + }, + "nodes": [ + 4205589200, + 5362533101 + ], + "geometry": [ + { "lat": 40.8155145, "lon": -73.9821922 }, + { "lat": 40.8159492, "lon": -73.9817196 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420601695, + "bounds": { + "minlat": 40.8153101, + "minlon": -73.9824141, + "maxlat": 40.8155145, + "maxlon": -73.9821922 + }, + "nodes": [ + 4205589199, + 4205589200 + ], + "geometry": [ + { "lat": 40.8153101, "lon": -73.9824141 }, + { "lat": 40.8155145, "lon": -73.9821922 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420601696, + "bounds": { + "minlat": 40.8133546, + "minlon": -73.9852620, + "maxlat": 40.8134041, + "maxlon": -73.9851348 + }, + "nodes": [ + 4205758298, + 103137067 + ], + "geometry": [ + { "lat": 40.8134041, "lon": -73.9851348 }, + { "lat": 40.8133546, "lon": -73.9852620 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601698, + "bounds": { + "minlat": 40.8144648, + "minlon": -73.9833532, + "maxlat": 40.8148790, + "maxlon": -73.9828827 + }, + "nodes": [ + 4205589198, + 752618871, + 7679292218 + ], + "geometry": [ + { "lat": 40.8144648, "lon": -73.9833532 }, + { "lat": 40.8145788, "lon": -73.9832089 }, + { "lat": 40.8148790, "lon": -73.9828827 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420601699, + "bounds": { + "minlat": 40.8138216, + "minlon": -73.9841731, + "maxlat": 40.8139459, + "maxlon": -73.9839778 + }, + "nodes": [ + 103137078, + 103137075, + 5482328566 + ], + "geometry": [ + { "lat": 40.8139459, "lon": -73.9839778 }, + { "lat": 40.8138578, "lon": -73.9841082 }, + { "lat": 40.8138216, "lon": -73.9841731 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 420604606, + "bounds": { + "minlat": 40.8395337, + "minlon": -73.9815324, + "maxlat": 40.8446767, + "maxlon": -73.9787422 + }, + "nodes": [ + 4215730277, + 103166394, + 7469385882, + 7460714656, + 103149542, + 7460714869, + 7460714868, + 103245964, + 103230928, + 7460714698, + 6380115421, + 1749228805, + 103245965, + 6902148574, + 7469386220, + 1749228829, + 7455134399, + 7455134437, + 103245966, + 7455134401, + 7455134440, + 103143813, + 7455134307, + 7455134319, + 103245968, + 103174576 + ], + "geometry": [ + { "lat": 40.8395337, "lon": -73.9815324 }, + { "lat": 40.8397970, "lon": -73.9813920 }, + { "lat": 40.8399810, "lon": -73.9812930 }, + { "lat": 40.8403615, "lon": -73.9810884 }, + { "lat": 40.8404440, "lon": -73.9810440 }, + { "lat": 40.8408796, "lon": -73.9808007 }, + { "lat": 40.8409478, "lon": -73.9807627 }, + { "lat": 40.8410170, "lon": -73.9807240 }, + { "lat": 40.8411110, "lon": -73.9806650 }, + { "lat": 40.8412270, "lon": -73.9805945 }, + { "lat": 40.8414797, "lon": -73.9804410 }, + { "lat": 40.8416579, "lon": -73.9803289 }, + { "lat": 40.8417420, "lon": -73.9802760 }, + { "lat": 40.8418881, "lon": -73.9801840 }, + { "lat": 40.8420698, "lon": -73.9800695 }, + { "lat": 40.8423814, "lon": -73.9798732 }, + { "lat": 40.8426222, "lon": -73.9797215 }, + { "lat": 40.8428195, "lon": -73.9795971 }, + { "lat": 40.8429880, "lon": -73.9794910 }, + { "lat": 40.8431007, "lon": -73.9794424 }, + { "lat": 40.8431912, "lon": -73.9794034 }, + { "lat": 40.8432850, "lon": -73.9793630 }, + { "lat": 40.8435756, "lon": -73.9792350 }, + { "lat": 40.8438506, "lon": -73.9791139 }, + { "lat": 40.8443765, "lon": -73.9788822 }, + { "lat": 40.8446767, "lon": -73.9787422 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 420604607, + "bounds": { + "minlat": 40.8386513, + "minlon": -73.9819613, + "maxlat": 40.8387767, + "maxlon": -73.9819174 + }, + "nodes": [ + 4205620794, + 7469386089, + 4205620795 + ], + "geometry": [ + { "lat": 40.8386513, "lon": -73.9819613 }, + { "lat": 40.8386727, "lon": -73.9819538 }, + { "lat": 40.8387767, "lon": -73.9819174 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "name": "Anderson Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420604608, + "bounds": { + "minlat": 40.8387767, + "minlon": -73.9819174, + "maxlat": 40.8391051, + "maxlon": -73.9817560 + }, + "nodes": [ + 4205620795, + 7469386098, + 13525434319, + 103174033 + ], + "geometry": [ + { "lat": 40.8387767, "lon": -73.9819174 }, + { "lat": 40.8388890, "lon": -73.9818622 }, + { "lat": 40.8390088, "lon": -73.9818033 }, + { "lat": 40.8391051, "lon": -73.9817560 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "name": "Anderson Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:forward": "left||right" + } +}, +{ + "type": "way", + "id": 420604609, + "bounds": { + "minlat": 40.8328882, + "minlon": -73.9913728, + "maxlat": 40.8330785, + "maxlon": -73.9912481 + }, + "nodes": [ + 4205620791, + 7247225806, + 4205620792 + ], + "geometry": [ + { "lat": 40.8328882, "lon": -73.9913728 }, + { "lat": 40.8329481, "lon": -73.9913336 }, + { "lat": 40.8330785, "lon": -73.9912481 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420604610, + "bounds": { + "minlat": 40.8330785, + "minlon": -73.9912481, + "maxlat": 40.8332909, + "maxlon": -73.9911084 + }, + "nodes": [ + 4205620792, + 103147991 + ], + "geometry": [ + { "lat": 40.8330785, "lon": -73.9912481 }, + { "lat": 40.8332909, "lon": -73.9911084 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420604611, + "bounds": { + "minlat": 40.8317006, + "minlon": -73.9921908, + "maxlat": 40.8319041, + "maxlon": -73.9920301 + }, + "nodes": [ + 4205620789, + 103147985 + ], + "geometry": [ + { "lat": 40.8317006, "lon": -73.9921908 }, + { "lat": 40.8319041, "lon": -73.9920301 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk": "both", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420604612, + "bounds": { + "minlat": 40.8406541, + "minlon": -73.9888153, + "maxlat": 40.8411890, + "maxlon": -73.9884827 + }, + "nodes": [ + 4205620798, + 103148029 + ], + "geometry": [ + { "lat": 40.8406541, "lon": -73.9888153 }, + { "lat": 40.8411890, "lon": -73.9884827 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420604613, + "bounds": { + "minlat": 40.8421464, + "minlon": -73.9878792, + "maxlat": 40.8424975, + "maxlon": -73.9876545 + }, + "nodes": [ + 4205620803, + 5978949661, + 12815741347, + 12815741348, + 103148030 + ], + "geometry": [ + { "lat": 40.8421464, "lon": -73.9878792 }, + { "lat": 40.8421665, "lon": -73.9878663 }, + { "lat": 40.8423036, "lon": -73.9877791 }, + { "lat": 40.8423975, "lon": -73.9877216 }, + { "lat": 40.8424975, "lon": -73.9876545 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420604614, + "bounds": { + "minlat": 40.8415715, + "minlon": -73.9882412, + "maxlat": 40.8421464, + "maxlon": -73.9878792 + }, + "nodes": [ + 4205620799, + 5978949657, + 4205620803 + ], + "geometry": [ + { "lat": 40.8415715, "lon": -73.9882412 }, + { "lat": 40.8417319, "lon": -73.9881402 }, + { "lat": 40.8421464, "lon": -73.9878792 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420604615, + "bounds": { + "minlat": 40.8322921, + "minlon": -73.9917947, + "maxlat": 40.8325890, + "maxlon": -73.9915517 + }, + "nodes": [ + 4205620790, + 6964929529, + 13527758476, + 103147986 + ], + "geometry": [ + { "lat": 40.8322921, "lon": -73.9917947 }, + { "lat": 40.8324740, "lon": -73.9916789 }, + { "lat": 40.8325493, "lon": -73.9915956 }, + { "lat": 40.8325890, "lon": -73.9915517 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk": "both", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420604616, + "bounds": { + "minlat": 40.8424975, + "minlon": -73.9876545, + "maxlat": 40.8429769, + "maxlon": -73.9873588 + }, + "nodes": [ + 103148030, + 5978949670, + 4205620805 + ], + "geometry": [ + { "lat": 40.8424975, "lon": -73.9876545 }, + { "lat": 40.8428608, "lon": -73.9874304 }, + { "lat": 40.8429769, "lon": -73.9873588 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420604617, + "bounds": { + "minlat": 40.8411890, + "minlon": -73.9884827, + "maxlat": 40.8415715, + "maxlon": -73.9882412 + }, + "nodes": [ + 103148029, + 4205620799 + ], + "geometry": [ + { "lat": 40.8411890, "lon": -73.9884827 }, + { "lat": 40.8415715, "lon": -73.9882412 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420604618, + "bounds": { + "minlat": 40.8319041, + "minlon": -73.9920301, + "maxlat": 40.8322921, + "maxlon": -73.9917947 + }, + "nodes": [ + 103147985, + 4205620790 + ], + "geometry": [ + { "lat": 40.8319041, "lon": -73.9920301 }, + { "lat": 40.8322921, "lon": -73.9917947 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk": "both", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420604619, + "bounds": { + "minlat": 40.8325890, + "minlon": -73.9915517, + "maxlat": 40.8328882, + "maxlon": -73.9913728 + }, + "nodes": [ + 103147986, + 13527758475, + 4205620791 + ], + "geometry": [ + { "lat": 40.8325890, "lon": -73.9915517 }, + { "lat": 40.8326384, "lon": -73.9915222 }, + { "lat": 40.8328882, "lon": -73.9913728 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420604620, + "bounds": { + "minlat": 40.8349487, + "minlon": -73.9906130, + "maxlat": 40.8353229, + "maxlon": -73.9906080 + }, + "nodes": [ + 4205620793, + 103148002, + 103148004, + 440208245 + ], + "geometry": [ + { "lat": 40.8349487, "lon": -73.9906105 }, + { "lat": 40.8350250, "lon": -73.9906080 }, + { "lat": 40.8352490, "lon": -73.9906130 }, + { "lat": 40.8353229, "lon": -73.9906127 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420604621, + "bounds": { + "minlat": 40.8343530, + "minlon": -73.9906540, + "maxlat": 40.8346688, + "maxlon": -73.9906202 + }, + "nodes": [ + 103147997, + 13527758499, + 660545485 + ], + "geometry": [ + { "lat": 40.8343530, "lon": -73.9906540 }, + { "lat": 40.8344976, "lon": -73.9906385 }, + { "lat": 40.8346688, "lon": -73.9906202 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420604623, + "bounds": { + "minlat": 40.8352691, + "minlon": -73.9897761, + "maxlat": 40.8355010, + "maxlon": -73.9897260 + }, + "nodes": [ + 103148219, + 103148221, + 103148223, + 13527755877, + 103148225 + ], + "geometry": [ + { "lat": 40.8352691, "lon": -73.9897761 }, + { "lat": 40.8353040, "lon": -73.9897550 }, + { "lat": 40.8353940, "lon": -73.9897340 }, + { "lat": 40.8354236, "lon": -73.9897318 }, + { "lat": 40.8355010, "lon": -73.9897260 } + ], + "tags": { + "highway": "primary", + "name": "Bergen Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left;through|right" + } +}, +{ + "type": "way", + "id": 420604624, + "bounds": { + "minlat": 40.8333769, + "minlon": -73.9910423, + "maxlat": 40.8343530, + "maxlon": -73.9906540 + }, + "nodes": [ + 103147993, + 103147994, + 103147995, + 103147996, + 103147997 + ], + "geometry": [ + { "lat": 40.8333769, "lon": -73.9910423 }, + { "lat": 40.8338108, "lon": -73.9908156 }, + { "lat": 40.8339795, "lon": -73.9907476 }, + { "lat": 40.8341520, "lon": -73.9906920 }, + { "lat": 40.8343530, "lon": -73.9906540 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420604625, + "bounds": { + "minlat": 40.8391051, + "minlon": -73.9821984, + "maxlat": 40.8393520, + "maxlon": -73.9817560 + }, + "nodes": [ + 103174033, + 13525434316, + 103174034 + ], + "geometry": [ + { "lat": 40.8391051, "lon": -73.9817560 }, + { "lat": 40.8391507, "lon": -73.9818377 }, + { "lat": 40.8393520, "lon": -73.9821984 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "cycleway:both": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Central Boulevard", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left|", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420604627, + "bounds": { + "minlat": 40.8393520, + "minlon": -73.9826160, + "maxlat": 40.8395910, + "maxlon": -73.9821984 + }, + "nodes": [ + 103174034, + 7460714924, + 4205620797 + ], + "geometry": [ + { "lat": 40.8393520, "lon": -73.9821984 }, + { "lat": 40.8394174, "lon": -73.9823132 }, + { "lat": 40.8395910, "lon": -73.9826160 } + ], + "tags": { + "Bergen_County_database_ref": "54", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000054", + "cycleway:both": "no", + "highway": "secondary", + "name": "Central Boulevard", + "ref": "CR 54", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420604633, + "bounds": { + "minlat": 40.8406132, + "minlon": -73.9995220, + "maxlat": 40.8416003, + "maxlon": -73.9978923 + }, + "nodes": [ + 103134625, + 7259873835, + 5978850768, + 7130110345, + 7130110352, + 103190899 + ], + "geometry": [ + { "lat": 40.8416003, "lon": -73.9995220 }, + { "lat": 40.8414567, "lon": -73.9993136 }, + { "lat": 40.8411615, "lon": -73.9988206 }, + { "lat": 40.8408974, "lon": -73.9983795 }, + { "lat": 40.8408263, "lon": -73.9982608 }, + { "lat": 40.8406132, "lon": -73.9978923 } + ], + "tags": { + "highway": "primary", + "name": "East Columbia Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 420604634, + "bounds": { + "minlat": 40.8423232, + "minlon": -73.9948578, + "maxlat": 40.8427322, + "maxlon": -73.9941359 + }, + "nodes": [ + 103255677, + 12020325889, + 103100650 + ], + "geometry": [ + { "lat": 40.8423232, "lon": -73.9941359 }, + { "lat": 40.8426789, "lon": -73.9947636 }, + { "lat": 40.8427322, "lon": -73.9948578 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "maxheight": "13'8\"", + "name": "East Homestead Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Homestead", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 420604635, + "bounds": { + "minlat": 40.8390316, + "minlon": -73.9828135, + "maxlat": 40.8393520, + "maxlon": -73.9821984 + }, + "nodes": [ + 103174034, + 5340742202, + 5340742201, + 7428336480, + 4205620796 + ], + "geometry": [ + { "lat": 40.8393520, "lon": -73.9821984 }, + { "lat": 40.8392713, "lon": -73.9823373 }, + { "lat": 40.8391783, "lon": -73.9825974 }, + { "lat": 40.8390982, "lon": -73.9827372 }, + { "lat": 40.8390316, "lon": -73.9828135 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "cycleway:both": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Glen Road", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glen", + "tiger:name_base_1": "State Route 5", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "right" + } +}, +{ + "type": "way", + "id": 420604637, + "bounds": { + "minlat": 40.8428580, + "minlon": -74.0013526, + "maxlat": 40.8430663, + "maxlon": -74.0010183 + }, + "nodes": [ + 4205620804, + 8265319320, + 308363346 + ], + "geometry": [ + { "lat": 40.8428580, "lon": -74.0010183 }, + { "lat": 40.8429820, "lon": -74.0012179 }, + { "lat": 40.8430663, "lon": -74.0013526 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "frontage_road": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "name": "West Columbia Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk": "right", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "turn:lanes": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 420604647, + "bounds": { + "minlat": 40.8418864, + "minlon": -74.0010183, + "maxlat": 40.8428580, + "maxlon": -73.9992332 + }, + "nodes": [ + 308363480, + 10943492064, + 308363478, + 308363473, + 10943492037, + 10943492020, + 10943482384, + 10943492073, + 308363472, + 10943492012, + 5976411309, + 4205620804 + ], + "geometry": [ + { "lat": 40.8418864, "lon": -73.9992332 }, + { "lat": 40.8419242, "lon": -73.9993358 }, + { "lat": 40.8419753, "lon": -73.9994652 }, + { "lat": 40.8420283, "lon": -73.9995914 }, + { "lat": 40.8420835, "lon": -73.9997124 }, + { "lat": 40.8421423, "lon": -73.9998324 }, + { "lat": 40.8422056, "lon": -73.9999510 }, + { "lat": 40.8422692, "lon": -74.0000621 }, + { "lat": 40.8423376, "lon": -74.0001761 }, + { "lat": 40.8424052, "lon": -74.0002861 }, + { "lat": 40.8427002, "lon": -74.0007608 }, + { "lat": 40.8428580, "lon": -74.0010183 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "frontage_road": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "name": "West Columbia Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420604754, + "bounds": { + "minlat": 40.7848532, + "minlon": -74.0088362, + "maxlat": 40.7851858, + "maxlon": -74.0085053 + }, + "nodes": [ + 4205626691, + 5474265143, + 103861638 + ], + "geometry": [ + { "lat": 40.7848532, "lon": -74.0088362 }, + { "lat": 40.7851190, "lon": -74.0085851 }, + { "lat": 40.7851858, "lon": -74.0085053 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "turn:lanes:forward": "left|through|right", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 420604756, + "bounds": { + "minlat": 40.7851858, + "minlon": -74.0085053, + "maxlat": 40.7854962, + "maxlon": -74.0082410 + }, + "nodes": [ + 4205626692, + 7468537482, + 103861638 + ], + "geometry": [ + { "lat": 40.7854962, "lon": -74.0082410 }, + { "lat": 40.7852682, "lon": -74.0084351 }, + { "lat": 40.7851858, "lon": -74.0085053 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "turn:lanes:forward": "left|", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 420604757, + "bounds": { + "minlat": 40.7831880, + "minlon": -74.0070254, + "maxlat": 40.7832340, + "maxlon": -74.0068861 + }, + "nodes": [ + 308678961, + 308678964 + ], + "geometry": [ + { "lat": 40.7832340, "lon": -74.0068861 }, + { "lat": 40.7831880, "lon": -74.0070254 } + ], + "tags": { + "highway": "primary", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420604759, + "bounds": { + "minlat": 40.7830014, + "minlon": -74.0075041, + "maxlat": 40.7831880, + "maxlon": -74.0070254 + }, + "nodes": [ + 308678964, + 7300731032, + 4205626689 + ], + "geometry": [ + { "lat": 40.7831880, "lon": -74.0070254 }, + { "lat": 40.7831435, "lon": -74.0071443 }, + { "lat": 40.7830014, "lon": -74.0075041 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:backward": "through|through;right" + } +}, +{ + "type": "way", + "id": 420604761, + "bounds": { + "minlat": 40.7832340, + "minlon": -74.0068861, + "maxlat": 40.7834033, + "maxlon": -74.0064790 + }, + "nodes": [ + 4205626690, + 103856502, + 308678961 + ], + "geometry": [ + { "lat": 40.7834033, "lon": -74.0064790 }, + { "lat": 40.7833116, "lon": -74.0066957 }, + { "lat": 40.7832340, "lon": -74.0068861 } + ], + "tags": { + "highway": "primary", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:forward": "through|through" + } +}, +{ + "type": "way", + "id": 420604763, + "bounds": { + "minlat": 40.7837218, + "minlon": -74.0057279, + "maxlat": 40.7845018, + "maxlon": -74.0041422 + }, + "nodes": [ + 308679536, + 103856511, + 7149310928, + 103856510, + 4068469821, + 103856508, + 308679581 + ], + "geometry": [ + { "lat": 40.7845018, "lon": -74.0041422 }, + { "lat": 40.7842499, "lon": -74.0045499 }, + { "lat": 40.7840741, "lon": -74.0049111 }, + { "lat": 40.7840306, "lon": -74.0050005 }, + { "lat": 40.7840067, "lon": -74.0050570 }, + { "lat": 40.7839534, "lon": -74.0051829 }, + { "lat": 40.7837218, "lon": -74.0057279 } + ], + "tags": { + "highway": "primary", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420606766, + "bounds": { + "minlat": 40.8029092, + "minlon": -74.0199352, + "maxlat": 40.8030475, + "maxlon": -74.0198126 + }, + "nodes": [ + 103867728, + 103867729 + ], + "geometry": [ + { "lat": 40.8029092, "lon": -74.0199352 }, + { "lat": 40.8030475, "lon": -74.0198126 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 420606767, + "bounds": { + "minlat": 40.8136254, + "minlon": -74.0104647, + "maxlat": 40.8138939, + "maxlon": -74.0102037 + }, + "nodes": [ + 103865036, + 4205657200 + ], + "geometry": [ + { "lat": 40.8136254, "lon": -74.0104647 }, + { "lat": 40.8138939, "lon": -74.0102037 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "cycleway:both": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420606768, + "bounds": { + "minlat": 40.8072816, + "minlon": -74.0162439, + "maxlat": 40.8078459, + "maxlon": -74.0157231 + }, + "nodes": [ + 103860883, + 4205657197, + 5680919472, + 103860068 + ], + "geometry": [ + { "lat": 40.8072816, "lon": -74.0162439 }, + { "lat": 40.8075938, "lon": -74.0159558 }, + { "lat": 40.8076976, "lon": -74.0158600 }, + { "lat": 40.8078459, "lon": -74.0157231 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:backward": "||right" + } +}, +{ + "type": "way", + "id": 420606769, + "bounds": { + "minlat": 40.8056342, + "minlon": -74.0176047, + "maxlat": 40.8061514, + "maxlon": -74.0172231 + }, + "nodes": [ + 103867737, + 11124378077, + 4205657194, + 103867738 + ], + "geometry": [ + { "lat": 40.8056342, "lon": -74.0176047 }, + { "lat": 40.8058961, "lon": -74.0173801 }, + { "lat": 40.8060296, "lon": -74.0172656 }, + { "lat": 40.8061514, "lon": -74.0172231 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420606770, + "bounds": { + "minlat": 40.8041197, + "minlon": -74.0189178, + "maxlat": 40.8044920, + "maxlon": -74.0185851 + }, + "nodes": [ + 4205657192, + 11499470065, + 13525592759, + 103867731 + ], + "geometry": [ + { "lat": 40.8041197, "lon": -74.0189178 }, + { "lat": 40.8042154, "lon": -74.0188323 }, + { "lat": 40.8044221, "lon": -74.0186476 }, + { "lat": 40.8044920, "lon": -74.0185851 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420606771, + "bounds": { + "minlat": 40.8030475, + "minlon": -74.0198126, + "maxlat": 40.8032925, + "maxlon": -74.0196137 + }, + "nodes": [ + 103867729, + 13525592732, + 4205657191 + ], + "geometry": [ + { "lat": 40.8030475, "lon": -74.0198126 }, + { "lat": 40.8030908, "lon": -74.0197774 }, + { "lat": 40.8032925, "lon": -74.0196137 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 420606772, + "bounds": { + "minlat": 40.8132039, + "minlon": -74.0108314, + "maxlat": 40.8136254, + "maxlon": -74.0104647 + }, + "nodes": [ + 4205657199, + 7612325127, + 7612325126, + 12456262108, + 103865036 + ], + "geometry": [ + { "lat": 40.8132039, "lon": -74.0108314 }, + { "lat": 40.8132830, "lon": -74.0107614 }, + { "lat": 40.8133759, "lon": -74.0106793 }, + { "lat": 40.8135384, "lon": -74.0105395 }, + { "lat": 40.8136254, "lon": -74.0104647 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "cycleway:both": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420606774, + "bounds": { + "minlat": 40.8044920, + "minlon": -74.0185851, + "maxlat": 40.8056342, + "maxlon": -74.0176047 + }, + "nodes": [ + 103867731, + 13525592751, + 103867733, + 103867737 + ], + "geometry": [ + { "lat": 40.8044920, "lon": -74.0185851 }, + { "lat": 40.8045544, "lon": -74.0185314 }, + { "lat": 40.8050750, "lon": -74.0180831 }, + { "lat": 40.8056342, "lon": -74.0176047 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 420606775, + "bounds": { + "minlat": 40.8069653, + "minlon": -74.0165120, + "maxlat": 40.8072816, + "maxlon": -74.0162439 + }, + "nodes": [ + 4205657196, + 103860883 + ], + "geometry": [ + { "lat": 40.8069653, "lon": -74.0165120 }, + { "lat": 40.8072816, "lon": -74.0162439 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420606776, + "bounds": { + "minlat": 40.8138939, + "minlon": -74.0102037, + "maxlat": 40.8145966, + "maxlon": -74.0095902 + }, + "nodes": [ + 4205657200, + 8219059982, + 8219059972, + 8219059981, + 440208135 + ], + "geometry": [ + { "lat": 40.8138939, "lon": -74.0102037 }, + { "lat": 40.8141010, "lon": -74.0100244 }, + { "lat": 40.8141724, "lon": -74.0099675 }, + { "lat": 40.8144896, "lon": -74.0096961 }, + { "lat": 40.8145966, "lon": -74.0095902 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "cycleway:both": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420606777, + "bounds": { + "minlat": 40.8084123, + "minlon": -74.0152155, + "maxlat": 40.8089591, + "maxlon": -74.0146945 + }, + "nodes": [ + 103867741, + 103860891 + ], + "geometry": [ + { "lat": 40.8084123, "lon": -74.0152155 }, + { "lat": 40.8089591, "lon": -74.0146945 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "||right" + } +}, +{ + "type": "way", + "id": 420606778, + "bounds": { + "minlat": 40.8061514, + "minlon": -74.0172231, + "maxlat": 40.8064202, + "maxlon": -74.0169876 + }, + "nodes": [ + 103867738, + 4205657195 + ], + "geometry": [ + { "lat": 40.8061514, "lon": -74.0172231 }, + { "lat": 40.8064202, "lon": -74.0169876 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "6", + "lanes:backward": "4", + "lanes:forward": "2", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:backward": "left|||right" + } +}, +{ + "type": "way", + "id": 420606781, + "bounds": { + "minlat": 40.8064202, + "minlon": -74.0169876, + "maxlat": 40.8067166, + "maxlon": -74.0167301 + }, + "nodes": [ + 4205657195, + 103867739 + ], + "geometry": [ + { "lat": 40.8064202, "lon": -74.0169876 }, + { "lat": 40.8067166, "lon": -74.0167301 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 420606783, + "bounds": { + "minlat": 40.8032925, + "minlon": -74.0196137, + "maxlat": 40.8038513, + "maxlon": -74.0191495 + }, + "nodes": [ + 4205657191, + 10079118572, + 10079118570, + 8926730999 + ], + "geometry": [ + { "lat": 40.8032925, "lon": -74.0196137 }, + { "lat": 40.8034608, "lon": -74.0194739 }, + { "lat": 40.8036072, "lon": -74.0193522 }, + { "lat": 40.8038513, "lon": -74.0191495 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 420607351, + "bounds": { + "minlat": 40.7974240, + "minlon": -74.0153290, + "maxlat": 40.7976537, + "maxlon": -74.0152663 + }, + "nodes": [ + 440243574, + 7474498770, + 7155610008 + ], + "geometry": [ + { "lat": 40.7974240, "lon": -74.0153290 }, + { "lat": 40.7975352, "lon": -74.0152986 }, + { "lat": 40.7976537, "lon": -74.0152663 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 420607353, + "bounds": { + "minlat": 40.7924810, + "minlon": -74.0212070, + "maxlat": 40.7971850, + "maxlon": -74.0153941 + }, + "nodes": [ + 103872878, + 7473610326, + 103872879, + 7473610334, + 103864965, + 7473610340, + 103872301, + 103872880, + 7473610371, + 103872881, + 103858373, + 7473610405, + 440244356, + 7474498687, + 103872883, + 7686381521, + 7474498685, + 103872884, + 7474498732, + 103872888, + 440243586, + 440243573, + 4205672689 + ], + "geometry": [ + { "lat": 40.7924810, "lon": -74.0212070 }, + { "lat": 40.7925433, "lon": -74.0211119 }, + { "lat": 40.7928650, "lon": -74.0206210 }, + { "lat": 40.7934196, "lon": -74.0197349 }, + { "lat": 40.7935190, "lon": -74.0195760 }, + { "lat": 40.7935899, "lon": -74.0194654 }, + { "lat": 40.7937503, "lon": -74.0192152 }, + { "lat": 40.7943590, "lon": -74.0182330 }, + { "lat": 40.7944250, "lon": -74.0181271 }, + { "lat": 40.7944400, "lon": -74.0181030 }, + { "lat": 40.7945120, "lon": -74.0179880 }, + { "lat": 40.7945883, "lon": -74.0178634 }, + { "lat": 40.7947410, "lon": -74.0176140 }, + { "lat": 40.7952020, "lon": -74.0169418 }, + { "lat": 40.7952393, "lon": -74.0168905 }, + { "lat": 40.7954922, "lon": -74.0166545 }, + { "lat": 40.7957385, "lon": -74.0164450 }, + { "lat": 40.7957972, "lon": -74.0163899 }, + { "lat": 40.7958453, "lon": -74.0163449 }, + { "lat": 40.7965182, "lon": -74.0157149 }, + { "lat": 40.7965842, "lon": -74.0156534 }, + { "lat": 40.7967890, "lon": -74.0155020 }, + { "lat": 40.7971850, "lon": -74.0153941 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 420607354, + "bounds": { + "minlat": 40.7971850, + "minlon": -74.0153941, + "maxlat": 40.7974240, + "maxlon": -74.0153290 + }, + "nodes": [ + 4205672689, + 13830089497, + 13622219948, + 440243574 + ], + "geometry": [ + { "lat": 40.7971850, "lon": -74.0153941 }, + { "lat": 40.7972849, "lon": -74.0153669 }, + { "lat": 40.7973434, "lon": -74.0153509 }, + { "lat": 40.7974240, "lon": -74.0153290 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420607355, + "bounds": { + "minlat": 40.8022557, + "minlon": -74.0127270, + "maxlat": 40.8025152, + "maxlon": -74.0125063 + }, + "nodes": [ + 103872909, + 7474655988, + 13545168249, + 4205672691 + ], + "geometry": [ + { "lat": 40.8022557, "lon": -74.0127270 }, + { "lat": 40.8023213, "lon": -74.0126709 }, + { "lat": 40.8023836, "lon": -74.0126158 }, + { "lat": 40.8025152, "lon": -74.0125063 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420607356, + "bounds": { + "minlat": 40.8019902, + "minlon": -74.0129544, + "maxlat": 40.8022557, + "maxlon": -74.0127270 + }, + "nodes": [ + 4205672690, + 7474498904, + 103872909 + ], + "geometry": [ + { "lat": 40.8019902, "lon": -74.0129544 }, + { "lat": 40.8021742, "lon": -74.0127965 }, + { "lat": 40.8022557, "lon": -74.0127270 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420607357, + "bounds": { + "minlat": 40.8081592, + "minlon": -74.0083664, + "maxlat": 40.8083837, + "maxlon": -74.0082120 + }, + "nodes": [ + 4205672693, + 7475993461, + 103872924 + ], + "geometry": [ + { "lat": 40.8081592, "lon": -74.0083664 }, + { "lat": 40.8083415, "lon": -74.0082410 }, + { "lat": 40.8083837, "lon": -74.0082120 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 420607358, + "bounds": { + "minlat": 40.8083837, + "minlon": -74.0082120, + "maxlat": 40.8092144, + "maxlon": -74.0075999 + }, + "nodes": [ + 103872924, + 103872926, + 7475993514, + 7475993542, + 103872657 + ], + "geometry": [ + { "lat": 40.8083837, "lon": -74.0082120 }, + { "lat": 40.8085783, "lon": -74.0080715 }, + { "lat": 40.8086510, "lon": -74.0080176 }, + { "lat": 40.8091603, "lon": -74.0076409 }, + { "lat": 40.8092144, "lon": -74.0075999 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 420608606, + "bounds": { + "minlat": 40.8101501, + "minlon": -74.0011824, + "maxlat": 40.8106464, + "maxlon": -74.0008342 + }, + "nodes": [ + 103232623, + 4727867797, + 103232624, + 5481884053, + 4205709190 + ], + "geometry": [ + { "lat": 40.8101501, "lon": -74.0008342 }, + { "lat": 40.8102769, "lon": -74.0009209 }, + { "lat": 40.8103763, "lon": -74.0009951 }, + { "lat": 40.8105235, "lon": -74.0010960 }, + { "lat": 40.8106464, "lon": -74.0011824 } + ], + "tags": { + "Bergen_County_database_ref": "48", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000048", + "highway": "secondary", + "name": "Fairview Avenue", + "old_ref": "CR 16", + "ref": "CR 48", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420608607, + "bounds": { + "minlat": 40.8097974, + "minlon": -74.0008342, + "maxlat": 40.8101501, + "maxlon": -74.0004821 + }, + "nodes": [ + 103232623, + 103232622, + 5342516913, + 440208141 + ], + "geometry": [ + { "lat": 40.8101501, "lon": -74.0008342 }, + { "lat": 40.8100757, "lon": -74.0007605 }, + { "lat": 40.8099259, "lon": -74.0006086 }, + { "lat": 40.8097974, "lon": -74.0004821 } + ], + "tags": { + "Bergen_County_database_ref": "48", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000048", + "highway": "secondary", + "name": "Fairview Avenue", + "old_ref": "CR 16", + "ref": "CR 48", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 420608608, + "bounds": { + "minlat": 40.8040486, + "minlon": -73.9983835, + "maxlat": 40.8048121, + "maxlon": -73.9967978 + }, + "nodes": [ + 103870489, + 5512683284, + 103870487, + 4205709189 + ], + "geometry": [ + { "lat": 40.8048121, "lon": -73.9983835 }, + { "lat": 40.8047225, "lon": -73.9981879 }, + { "lat": 40.8041780, "lon": -73.9970510 }, + { "lat": 40.8040486, "lon": -73.9967978 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 420608609, + "bounds": { + "minlat": 40.8038468, + "minlon": -73.9967978, + "maxlat": 40.8040486, + "maxlon": -73.9964192 + }, + "nodes": [ + 4205709189, + 103870485, + 5465261905, + 103861207 + ], + "geometry": [ + { "lat": 40.8040486, "lon": -73.9967978 }, + { "lat": 40.8039690, "lon": -73.9966420 }, + { "lat": 40.8038961, "lon": -73.9965091 }, + { "lat": 40.8038468, "lon": -73.9964192 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "turn:lanes:forward": "left|", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 420614337, + "bounds": { + "minlat": 40.8100539, + "minlon": -74.0008886, + "maxlat": 40.8101501, + "maxlon": -74.0008342 + }, + "nodes": [ + 440208138, + 103232623 + ], + "geometry": [ + { "lat": 40.8100539, "lon": -74.0008886 }, + { "lat": 40.8101501, "lon": -74.0008342 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420614342, + "bounds": { + "minlat": 40.8127777, + "minlon": -74.0035830, + "maxlat": 40.8133316, + "maxlon": -74.0033087 + }, + "nodes": [ + 4205741395, + 103147913, + 103142146 + ], + "geometry": [ + { "lat": 40.8127777, "lon": -74.0035830 }, + { "lat": 40.8130126, "lon": -74.0034656 }, + { "lat": 40.8133316, "lon": -74.0033087 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420614348, + "bounds": { + "minlat": 40.8125067, + "minlon": -74.0037203, + "maxlat": 40.8127777, + "maxlon": -74.0035830 + }, + "nodes": [ + 103147906, + 4205741395 + ], + "geometry": [ + { "lat": 40.8125067, "lon": -74.0037203 }, + { "lat": 40.8127777, "lon": -74.0035830 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420614354, + "bounds": { + "minlat": 40.8096565, + "minlon": -74.0011477, + "maxlat": 40.8098208, + "maxlon": -74.0010407 + }, + "nodes": [ + 4205741393, + 4215808380 + ], + "geometry": [ + { "lat": 40.8096565, "lon": -74.0011477 }, + { "lat": 40.8098208, "lon": -74.0010407 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000063", + "highway": "secondary", + "name": "Bergenline Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline", + "tiger:name_base_1": "County Road 721", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:forward": "|right", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 420614359, + "bounds": { + "minlat": 40.8068121, + "minlon": -73.9921953, + "maxlat": 40.8070433, + "maxlon": -73.9919788 + }, + "nodes": [ + 4205741392, + 103196675, + 103207082 + ], + "geometry": [ + { "lat": 40.8070433, "lon": -73.9921953 }, + { "lat": 40.8069434, "lon": -73.9921223 }, + { "lat": 40.8068121, "lon": -73.9919788 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "3", + "name": "Gorge Road", + "oneway": "yes", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes": "left|through|right" + } +}, +{ + "type": "way", + "id": 420617408, + "bounds": { + "minlat": 40.8076635, + "minlon": -73.9920986, + "maxlat": 40.8092435, + "maxlon": -73.9912773 + }, + "nodes": [ + 4205744819, + 103207005, + 2274578314, + 103207004, + 103207002, + 4205744818, + 752618764, + 3480338645 + ], + "geometry": [ + { "lat": 40.8092435, "lon": -73.9912773 }, + { "lat": 40.8091320, "lon": -73.9912990 }, + { "lat": 40.8089713, "lon": -73.9913488 }, + { "lat": 40.8089610, "lon": -73.9913520 }, + { "lat": 40.8087940, "lon": -73.9914240 }, + { "lat": 40.8084444, "lon": -73.9915930 }, + { "lat": 40.8078455, "lon": -73.9919658 }, + { "lat": 40.8076635, "lon": -73.9920986 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "2", + "name": "Gorge Road", + "ref": "CR S-25", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 420617410, + "bounds": { + "minlat": 40.8094589, + "minlon": -73.9912507, + "maxlat": 40.8097946, + "maxlon": -73.9912127 + }, + "nodes": [ + 4205744820, + 7618565485, + 13527737524, + 3641508257 + ], + "geometry": [ + { "lat": 40.8097946, "lon": -73.9912127 }, + { "lat": 40.8095506, "lon": -73.9912403 }, + { "lat": 40.8095116, "lon": -73.9912447 }, + { "lat": 40.8094589, "lon": -73.9912507 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "2", + "name": "Gorge Road", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 420617413, + "bounds": { + "minlat": 40.8132060, + "minlon": -73.9903323, + "maxlat": 40.8134313, + "maxlon": -73.9902908 + }, + "nodes": [ + 103207031, + 4205744824 + ], + "geometry": [ + { "lat": 40.8134313, "lon": -73.9902908 }, + { "lat": 40.8132060, "lon": -73.9903323 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420617415, + "bounds": { + "minlat": 40.8122850, + "minlon": -73.9904060, + "maxlat": 40.8125190, + "maxlon": -73.9903884 + }, + "nodes": [ + 4205744822, + 103207027 + ], + "geometry": [ + { "lat": 40.8125190, "lon": -73.9903884 }, + { "lat": 40.8122850, "lon": -73.9904060 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "2", + "name": "Gorge Road", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 420617417, + "bounds": { + "minlat": 40.8129301, + "minlon": -73.9903662, + "maxlat": 40.8132060, + "maxlon": -73.9903323 + }, + "nodes": [ + 4205744824, + 103162788 + ], + "geometry": [ + { "lat": 40.8132060, "lon": -73.9903323 }, + { "lat": 40.8129301, "lon": -73.9903662 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 420617419, + "bounds": { + "minlat": 40.8125190, + "minlon": -73.9903884, + "maxlat": 40.8129301, + "maxlon": -73.9903662 + }, + "nodes": [ + 103162788, + 4205744822 + ], + "geometry": [ + { "lat": 40.8129301, "lon": -73.9903662 }, + { "lat": 40.8125190, "lon": -73.9903884 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420617421, + "bounds": { + "minlat": 40.8092435, + "minlon": -73.9912773, + "maxlat": 40.8094589, + "maxlon": -73.9912507 + }, + "nodes": [ + 3641508257, + 103207007, + 4205744819 + ], + "geometry": [ + { "lat": 40.8094589, "lon": -73.9912507 }, + { "lat": 40.8092710, "lon": -73.9912720 }, + { "lat": 40.8092435, "lon": -73.9912773 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "2", + "name": "Gorge Road", + "ref": "CR S-25", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420617423, + "bounds": { + "minlat": 40.8111739, + "minlon": -73.9909389, + "maxlat": 40.8117176, + "maxlon": -73.9906383 + }, + "nodes": [ + 3655976720, + 103207016, + 103207015, + 103207014, + 4205744821 + ], + "geometry": [ + { "lat": 40.8117176, "lon": -73.9906383 }, + { "lat": 40.8115590, "lon": -73.9907470 }, + { "lat": 40.8113900, "lon": -73.9908430 }, + { "lat": 40.8112150, "lon": -73.9909240 }, + { "lat": 40.8111739, "lon": -73.9909389 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "2", + "name": "Gorge Road", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes:backward": "|right" + } +}, +{ + "type": "way", + "id": 420617425, + "bounds": { + "minlat": 40.8097946, + "minlon": -73.9912127, + "maxlat": 40.8111739, + "maxlon": -73.9909389 + }, + "nodes": [ + 4205744821, + 103207012, + 7111396887, + 7111396893, + 103207010, + 103207009, + 103207008, + 4205744820 + ], + "geometry": [ + { "lat": 40.8111739, "lon": -73.9909389 }, + { "lat": 40.8110380, "lon": -73.9909880 }, + { "lat": 40.8109291, "lon": -73.9910175 }, + { "lat": 40.8107867, "lon": -73.9910561 }, + { "lat": 40.8107540, "lon": -73.9910650 }, + { "lat": 40.8103990, "lon": -73.9911370 }, + { "lat": 40.8101180, "lon": -73.9911760 }, + { "lat": 40.8097946, "lon": -73.9912127 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "2", + "name": "Gorge Road", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 420617429, + "bounds": { + "minlat": 40.8117176, + "minlon": -73.9906383, + "maxlat": 40.8122850, + "maxlon": -73.9904060 + }, + "nodes": [ + 103207027, + 7599417018, + 103207023, + 7588192458, + 103207021, + 477419441, + 103207019, + 3655976723, + 103207017, + 3655976720 + ], + "geometry": [ + { "lat": 40.8122850, "lon": -73.9904060 }, + { "lat": 40.8121886, "lon": -73.9904200 }, + { "lat": 40.8121580, "lon": -73.9904240 }, + { "lat": 40.8120682, "lon": -73.9904508 }, + { "lat": 40.8120340, "lon": -73.9904610 }, + { "lat": 40.8120006, "lon": -73.9904744 }, + { "lat": 40.8119220, "lon": -73.9905060 }, + { "lat": 40.8118526, "lon": -73.9905478 }, + { "lat": 40.8118290, "lon": -73.9905620 }, + { "lat": 40.8117176, "lon": -73.9906383 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "2", + "name": "Gorge Road", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420617882, + "bounds": { + "minlat": 40.8028932, + "minlon": -73.9936985, + "maxlat": 40.8039787, + "maxlon": -73.9934005 + }, + "nodes": [ + 103137010, + 103137012, + 103137014, + 5481963174, + 103136350, + 5481963177, + 103137016, + 6878261992 + ], + "geometry": [ + { "lat": 40.8028932, "lon": -73.9936985 }, + { "lat": 40.8031526, "lon": -73.9936851 }, + { "lat": 40.8032726, "lon": -73.9936655 }, + { "lat": 40.8036535, "lon": -73.9935490 }, + { "lat": 40.8037640, "lon": -73.9935153 }, + { "lat": 40.8038070, "lon": -73.9934932 }, + { "lat": 40.8039224, "lon": -73.9934349 }, + { "lat": 40.8039787, "lon": -73.9934005 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420617883, + "bounds": { + "minlat": 40.8044725, + "minlon": -73.9930491, + "maxlat": 40.8055217, + "maxlon": -73.9920345 + }, + "nodes": [ + 3575303898, + 4215808347, + 4205751593, + 103137023, + 4205751594, + 103137024, + 4205751595, + 4205751596 + ], + "geometry": [ + { "lat": 40.8044725, "lon": -73.9930491 }, + { "lat": 40.8045845, "lon": -73.9928610 }, + { "lat": 40.8046710, "lon": -73.9927815 }, + { "lat": 40.8047502, "lon": -73.9927158 }, + { "lat": 40.8050780, "lon": -73.9924060 }, + { "lat": 40.8052517, "lon": -73.9922424 }, + { "lat": 40.8053846, "lon": -73.9921418 }, + { "lat": 40.8055217, "lon": -73.9920345 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420617884, + "bounds": { + "minlat": 40.8040659, + "minlon": -73.9933451, + "maxlat": 40.8041402, + "maxlon": -73.9932982 + }, + "nodes": [ + 4205751592, + 5481963178 + ], + "geometry": [ + { "lat": 40.8040659, "lon": -73.9933451 }, + { "lat": 40.8041402, "lon": -73.9932982 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "6", + "lanes:backward": "2", + "lanes:forward": "4", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|slight_left|through|through;right" + } +}, +{ + "type": "way", + "id": 420617885, + "bounds": { + "minlat": 40.8042691, + "minlon": -73.9932167, + "maxlat": 40.8044725, + "maxlon": -73.9930491 + }, + "nodes": [ + 308698267, + 3575303898 + ], + "geometry": [ + { "lat": 40.8042691, "lon": -73.9932167 }, + { "lat": 40.8044725, "lon": -73.9930491 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "6", + "lanes:backward": "2", + "lanes:forward": "4", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|slight_left|through|through;right" + } +}, +{ + "type": "way", + "id": 420617887, + "bounds": { + "minlat": 40.7975845, + "minlon": -73.9958248, + "maxlat": 40.7979598, + "maxlon": -73.9955564 + }, + "nodes": [ + 103861714, + 5481963204, + 4205751589 + ], + "geometry": [ + { "lat": 40.7975845, "lon": -73.9958248 }, + { "lat": 40.7976989, "lon": -73.9957430 }, + { "lat": 40.7979598, "lon": -73.9955564 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|none|none" + } +}, +{ + "type": "way", + "id": 420617890, + "bounds": { + "minlat": 40.8000870, + "minlon": -73.9942447, + "maxlat": 40.8005733, + "maxlon": -73.9940169 + }, + "nodes": [ + 4205751590, + 5481963196, + 103861721 + ], + "geometry": [ + { "lat": 40.8000870, "lon": -73.9942447 }, + { "lat": 40.8003021, "lon": -73.9941439 }, + { "lat": 40.8005733, "lon": -73.9940169 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420617894, + "bounds": { + "minlat": 40.8065520, + "minlon": -73.9911655, + "maxlat": 40.8089776, + "maxlon": -73.9895548 + }, + "nodes": [ + 103137025, + 7672269001, + 5342516896, + 103137027, + 103137028, + 103137029, + 103137031, + 103137033, + 103137035, + 103137036, + 4215808377, + 4205758293 + ], + "geometry": [ + { "lat": 40.8065520, "lon": -73.9911655 }, + { "lat": 40.8066487, "lon": -73.9910803 }, + { "lat": 40.8069540, "lon": -73.9908112 }, + { "lat": 40.8071707, "lon": -73.9906203 }, + { "lat": 40.8074752, "lon": -73.9903709 }, + { "lat": 40.8076509, "lon": -73.9902160 }, + { "lat": 40.8078062, "lon": -73.9901033 }, + { "lat": 40.8081198, "lon": -73.9899022 }, + { "lat": 40.8083249, "lon": -73.9898110 }, + { "lat": 40.8085837, "lon": -73.9896956 }, + { "lat": 40.8088202, "lon": -73.9896112 }, + { "lat": 40.8089776, "lon": -73.9895548 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420617895, + "bounds": { + "minlat": 40.7979598, + "minlon": -73.9955564, + "maxlat": 40.8000870, + "maxlon": -73.9942447 + }, + "nodes": [ + 4205751589, + 5481963159, + 103861715, + 5481963133, + 103861717, + 11255071783, + 4205751590 + ], + "geometry": [ + { "lat": 40.7979598, "lon": -73.9955564 }, + { "lat": 40.7982631, "lon": -73.9953498 }, + { "lat": 40.7988837, "lon": -73.9949270 }, + { "lat": 40.7990670, "lon": -73.9948141 }, + { "lat": 40.7995415, "lon": -73.9945219 }, + { "lat": 40.7997505, "lon": -73.9944157 }, + { "lat": 40.8000870, "lon": -73.9942447 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420617896, + "bounds": { + "minlat": 40.8005733, + "minlon": -73.9940169, + "maxlat": 40.8014921, + "maxlon": -73.9936776 + }, + "nodes": [ + 103861721, + 13886906604, + 103861723, + 103861725, + 5560289563 + ], + "geometry": [ + { "lat": 40.8005733, "lon": -73.9940169 }, + { "lat": 40.8006835, "lon": -73.9939600 }, + { "lat": 40.8010501, "lon": -73.9937709 }, + { "lat": 40.8013181, "lon": -73.9937012 }, + { "lat": 40.8014921, "lon": -73.9936776 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420619046, + "bounds": { + "minlat": 40.8113166, + "minlon": -73.9877648, + "maxlat": 40.8115981, + "maxlon": -73.9875429 + }, + "nodes": [ + 3566318119, + 4205758294 + ], + "geometry": [ + { "lat": 40.8113166, "lon": -73.9877648 }, + { "lat": 40.8115981, "lon": -73.9875429 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420619047, + "bounds": { + "minlat": 40.8115981, + "minlon": -73.9875429, + "maxlat": 40.8117414, + "maxlon": -73.9874288 + }, + "nodes": [ + 4205758294, + 4205758295 + ], + "geometry": [ + { "lat": 40.8115981, "lon": -73.9875429 }, + { "lat": 40.8117414, "lon": -73.9874288 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420619049, + "bounds": { + "minlat": 40.8089776, + "minlon": -73.9895548, + "maxlat": 40.8094749, + "maxlon": -73.9893899 + }, + "nodes": [ + 4205758293, + 4215808378, + 7672269050, + 103137037 + ], + "geometry": [ + { "lat": 40.8089776, "lon": -73.9895548 }, + { "lat": 40.8093582, "lon": -73.9893899 }, + { "lat": 40.8093903, "lon": -73.9893991 }, + { "lat": 40.8094749, "lon": -73.9894234 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 420619050, + "bounds": { + "minlat": 40.8105503, + "minlon": -73.9884619, + "maxlat": 40.8108010, + "maxlon": -73.9882331 + }, + "nodes": [ + 103137045, + 103137047 + ], + "geometry": [ + { "lat": 40.8105503, "lon": -73.9884619 }, + { "lat": 40.8108010, "lon": -73.9882331 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420619051, + "bounds": { + "minlat": 40.8099710, + "minlon": -73.9890340, + "maxlat": 40.8105503, + "maxlon": -73.9884619 + }, + "nodes": [ + 103137042, + 103137043, + 103137045 + ], + "geometry": [ + { "lat": 40.8099710, "lon": -73.9890340 }, + { "lat": 40.8101160, "lon": -73.9889000 }, + { "lat": 40.8105503, "lon": -73.9884619 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420619052, + "bounds": { + "minlat": 40.8094749, + "minlon": -73.9894234, + "maxlat": 40.8099710, + "maxlon": -73.9890340 + }, + "nodes": [ + 103137037, + 7672269053, + 103137039, + 103137041, + 103137042 + ], + "geometry": [ + { "lat": 40.8094749, "lon": -73.9894234 }, + { "lat": 40.8095701, "lon": -73.9893557 }, + { "lat": 40.8096479, "lon": -73.9893003 }, + { "lat": 40.8097926, "lon": -73.9891935 }, + { "lat": 40.8099710, "lon": -73.9890340 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420619053, + "bounds": { + "minlat": 40.8122667, + "minlon": -73.9870183, + "maxlat": 40.8125253, + "maxlon": -73.9867723 + }, + "nodes": [ + 4205758296, + 103137055, + 103137056, + 4205758297 + ], + "geometry": [ + { "lat": 40.8122667, "lon": -73.9870183 }, + { "lat": 40.8123566, "lon": -73.9869365 }, + { "lat": 40.8125016, "lon": -73.9867960 }, + { "lat": 40.8125253, "lon": -73.9867723 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420619054, + "bounds": { + "minlat": 40.8117414, + "minlon": -73.9874288, + "maxlat": 40.8118557, + "maxlon": -73.9873377 + }, + "nodes": [ + 4205758295, + 103137052 + ], + "geometry": [ + { "lat": 40.8117414, "lon": -73.9874288 }, + { "lat": 40.8118557, "lon": -73.9873377 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "||right" + } +}, +{ + "type": "way", + "id": 420619055, + "bounds": { + "minlat": 40.8134041, + "minlon": -73.9851348, + "maxlat": 40.8136809, + "maxlon": -73.9844354 + }, + "nodes": [ + 1751405011, + 103137071, + 103137069, + 4205758298 + ], + "geometry": [ + { "lat": 40.8136809, "lon": -73.9844354 }, + { "lat": 40.8136191, "lon": -73.9845766 }, + { "lat": 40.8135775, "lon": -73.9846892 }, + { "lat": 40.8134041, "lon": -73.9851348 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420619056, + "bounds": { + "minlat": 40.8108010, + "minlon": -73.9882331, + "maxlat": 40.8113166, + "maxlon": -73.9877648 + }, + "nodes": [ + 103137047, + 10135191717, + 103137049, + 103137050, + 3566318117, + 3566318119 + ], + "geometry": [ + { "lat": 40.8108010, "lon": -73.9882331 }, + { "lat": 40.8109217, "lon": -73.9881083 }, + { "lat": 40.8109990, "lon": -73.9880429 }, + { "lat": 40.8111498, "lon": -73.9878998 }, + { "lat": 40.8112390, "lon": -73.9878288 }, + { "lat": 40.8113166, "lon": -73.9877648 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420619949, + "bounds": { + "minlat": 40.8456954, + "minlon": -73.9787049, + "maxlat": 40.8461019, + "maxlon": -73.9786782 + }, + "nodes": [ + 4205772576, + 103186452 + ], + "geometry": [ + { "lat": 40.8461019, "lon": -73.9786782 }, + { "lat": 40.8456954, "lon": -73.9787049 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "lanes": "3", + "name": "Anderson Avenue", + "oneway": "yes", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420619950, + "bounds": { + "minlat": 40.8446767, + "minlon": -73.9787422, + "maxlat": 40.8454999, + "maxlon": -73.9787131 + }, + "nodes": [ + 9753804641, + 12394165123, + 103219161, + 7455134464, + 103174576 + ], + "geometry": [ + { "lat": 40.8454999, "lon": -73.9787131 }, + { "lat": 40.8452297, "lon": -73.9787279 }, + { "lat": 40.8452070, "lon": -73.9787290 }, + { "lat": 40.8451808, "lon": -73.9787297 }, + { "lat": 40.8446767, "lon": -73.9787422 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "lanes": "1", + "name": "Anderson Avenue", + "oneway": "yes", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 420619951, + "bounds": { + "minlat": 40.8387905, + "minlon": -73.9817560, + "maxlat": 40.8391051, + "maxlon": -73.9812412 + }, + "nodes": [ + 4205772575, + 2395474001, + 7469386096, + 6964853607, + 13525434311, + 103174033 + ], + "geometry": [ + { "lat": 40.8387905, "lon": -73.9812412 }, + { "lat": 40.8388839, "lon": -73.9814112 }, + { "lat": 40.8389371, "lon": -73.9815078 }, + { "lat": 40.8389948, "lon": -73.9816127 }, + { "lat": 40.8390169, "lon": -73.9816509 }, + { "lat": 40.8391051, "lon": -73.9817560 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Central Boulevard", + "ref": "NJ 5", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420619953, + "bounds": { + "minlat": 40.8310848, + "minlon": -73.9791374, + "maxlat": 40.8316769, + "maxlon": -73.9789077 + }, + "nodes": [ + 103162155, + 6964853591, + 7508496619, + 103191038 + ], + "geometry": [ + { "lat": 40.8310848, "lon": -73.9791374 }, + { "lat": 40.8314645, "lon": -73.9789908 }, + { "lat": 40.8315673, "lon": -73.9789505 }, + { "lat": 40.8316769, "lon": -73.9789077 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "6", + "name": "Palisade Avenue", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "turn:lanes:backward": "left||", + "turn:lanes:forward": "||right", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 420619954, + "bounds": { + "minlat": 40.8321405, + "minlon": -73.9787352, + "maxlat": 40.8323320, + "maxlon": -73.9786620 + }, + "nodes": [ + 103190983, + 5772822709 + ], + "geometry": [ + { "lat": 40.8323320, "lon": -73.9786620 }, + { "lat": 40.8321405, "lon": -73.9787352 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "cycleway:both": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Palisade Avenue", + "ref": "NJ 5", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 420619955, + "bounds": { + "minlat": 40.8305654, + "minlon": -73.9794126, + "maxlat": 40.8310848, + "maxlon": -73.9791374 + }, + "nodes": [ + 4205772569, + 103235748, + 103162133, + 103162155 + ], + "geometry": [ + { "lat": 40.8305654, "lon": -73.9794126 }, + { "lat": 40.8306299, "lon": -73.9793723 }, + { "lat": 40.8309523, "lon": -73.9792090 }, + { "lat": 40.8310848, "lon": -73.9791374 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "6", + "lanes:backward": "2", + "lanes:forward": "4", + "name": "Palisade Avenue", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "turn:lanes:forward": "left|||right", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 420619956, + "bounds": { + "minlat": 40.8360091, + "minlon": -73.9708860, + "maxlat": 40.8363168, + "maxlon": -73.9707853 + }, + "nodes": [ + 3588356660, + 4205772574 + ], + "geometry": [ + { "lat": 40.8360091, "lon": -73.9708860 }, + { "lat": 40.8363168, "lon": -73.9707853 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420619957, + "bounds": { + "minlat": 40.8300738, + "minlon": -73.9720065, + "maxlat": 40.8301433, + "maxlon": -73.9719764 + }, + "nodes": [ + 4205789012, + 5362451435 + ], + "geometry": [ + { "lat": 40.8300738, "lon": -73.9719764 }, + { "lat": 40.8301433, "lon": -73.9720065 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420619958, + "bounds": { + "minlat": 40.8356336, + "minlon": -73.9710018, + "maxlat": 40.8360091, + "maxlon": -73.9708860 + }, + "nodes": [ + 7271518636, + 5720061682, + 3588356660 + ], + "geometry": [ + { "lat": 40.8356336, "lon": -73.9710018 }, + { "lat": 40.8359372, "lon": -73.9709082 }, + { "lat": 40.8360091, "lon": -73.9708860 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420621076, + "bounds": { + "minlat": 40.8207203, + "minlon": -74.0074097, + "maxlat": 40.8207327, + "maxlon": -74.0072992 + }, + "nodes": [ + 103203993, + 4205784189 + ], + "geometry": [ + { "lat": 40.8207203, "lon": -74.0072992 }, + { "lat": 40.8207327, "lon": -74.0074097 } + ], + "tags": { + "Bergen_County_database_ref": "48", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000048", + "highway": "secondary", + "name": "Fairview Avenue", + "old_ref": "CR 16", + "ref": "CR 48", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 420621078, + "bounds": { + "minlat": 40.8207697, + "minlon": -74.0088261, + "maxlat": 40.8207761, + "maxlon": -74.0087484 + }, + "nodes": [ + 103094954, + 5837332134 + ], + "geometry": [ + { "lat": 40.8207697, "lon": -74.0088261 }, + { "lat": 40.8207761, "lon": -74.0087484 } + ], + "tags": { + "highway": "secondary", + "name": "Fairview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 420621079, + "bounds": { + "minlat": 40.8207327, + "minlon": -74.0081377, + "maxlat": 40.8208337, + "maxlon": -74.0074097 + }, + "nodes": [ + 4205784189, + 7933006730, + 10654412834, + 2424503650, + 13525555874, + 103223998 + ], + "geometry": [ + { "lat": 40.8207327, "lon": -74.0074097 }, + { "lat": 40.8207652, "lon": -74.0076009 }, + { "lat": 40.8207836, "lon": -74.0077096 }, + { "lat": 40.8208337, "lon": -74.0080045 }, + { "lat": 40.8208331, "lon": -74.0080292 }, + { "lat": 40.8208305, "lon": -74.0081377 } + ], + "tags": { + "Bergen_County_database_ref": "48", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000048", + "highway": "secondary", + "name": "Fairview Avenue", + "old_ref": "CR 16", + "ref": "CR 48", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 420621251, + "bounds": { + "minlat": 40.8192959, + "minlon": -73.9783835, + "maxlat": 40.8199505, + "maxlon": -73.9777530 + }, + "nodes": [ + 4205794189, + 103137100, + 103137101, + 4205789002 + ], + "geometry": [ + { "lat": 40.8192959, "lon": -73.9783835 }, + { "lat": 40.8197630, "lon": -73.9779122 }, + { "lat": 40.8198800, "lon": -73.9778104 }, + { "lat": 40.8199505, "lon": -73.9777530 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420621252, + "bounds": { + "minlat": 40.8165157, + "minlon": -73.9811622, + "maxlat": 40.8168969, + "maxlon": -73.9807917 + }, + "nodes": [ + 4205788998, + 7672312054, + 103137081 + ], + "geometry": [ + { "lat": 40.8165157, "lon": -73.9811622 }, + { "lat": 40.8168268, "lon": -73.9808599 }, + { "lat": 40.8168969, "lon": -73.9807917 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420621253, + "bounds": { + "minlat": 40.8264231, + "minlon": -73.9737712, + "maxlat": 40.8268224, + "maxlon": -73.9735436 + }, + "nodes": [ + 4205789005, + 4205789006 + ], + "geometry": [ + { "lat": 40.8264231, "lon": -73.9737712 }, + { "lat": 40.8268224, "lon": -73.9735436 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420621254, + "bounds": { + "minlat": 40.8215950, + "minlon": -73.9767633, + "maxlat": 40.8216451, + "maxlon": -73.9767217 + }, + "nodes": [ + 3441639770, + 5362545955 + ], + "geometry": [ + { "lat": 40.8215950, "lon": -73.9767633 }, + { "lat": 40.8216451, "lon": -73.9767217 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420621255, + "bounds": { + "minlat": 40.8186438, + "minlon": -73.9790543, + "maxlat": 40.8189570, + "maxlon": -73.9787316 + }, + "nodes": [ + 4205789000, + 4205789001 + ], + "geometry": [ + { "lat": 40.8186438, "lon": -73.9790543 }, + { "lat": 40.8189570, "lon": -73.9787316 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420621256, + "bounds": { + "minlat": 40.8255083, + "minlon": -73.9742955, + "maxlat": 40.8255535, + "maxlon": -73.9742694 + }, + "nodes": [ + 4205789004, + 7510674627 + ], + "geometry": [ + { "lat": 40.8255083, "lon": -73.9742955 }, + { "lat": 40.8255535, "lon": -73.9742694 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420621260, + "bounds": { + "minlat": 40.8161808, + "minlon": -73.9814852, + "maxlat": 40.8163425, + "maxlon": -73.9813292 + }, + "nodes": [ + 5753156005, + 5753155996 + ], + "geometry": [ + { "lat": 40.8161808, "lon": -73.9814852 }, + { "lat": 40.8163425, "lon": -73.9813292 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420621264, + "bounds": { + "minlat": 40.8287944, + "minlon": -73.9723131, + "maxlat": 40.8289564, + "maxlon": -73.9721956 + }, + "nodes": [ + 103137137, + 7672312226, + 1691389661 + ], + "geometry": [ + { "lat": 40.8287944, "lon": -73.9723131 }, + { "lat": 40.8288678, "lon": -73.9722598 }, + { "lat": 40.8289564, "lon": -73.9721956 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 420621268, + "bounds": { + "minlat": 40.8270976, + "minlon": -73.9733867, + "maxlat": 40.8274243, + "maxlon": -73.9732110 + }, + "nodes": [ + 103137133, + 4205789007 + ], + "geometry": [ + { "lat": 40.8270976, "lon": -73.9733867 }, + { "lat": 40.8274243, "lon": -73.9732110 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420621273, + "bounds": { + "minlat": 40.8260002, + "minlon": -73.9740122, + "maxlat": 40.8264231, + "maxlon": -73.9737712 + }, + "nodes": [ + 103137132, + 5362537288, + 4205789005 + ], + "geometry": [ + { "lat": 40.8260002, "lon": -73.9740122 }, + { "lat": 40.8261945, "lon": -73.9739015 }, + { "lat": 40.8264231, "lon": -73.9737712 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420621277, + "bounds": { + "minlat": 40.8235898, + "minlon": -73.9755333, + "maxlat": 40.8237107, + "maxlon": -73.9754783 + }, + "nodes": [ + 103137121, + 5688937320 + ], + "geometry": [ + { "lat": 40.8235898, "lon": -73.9755333 }, + { "lat": 40.8237107, "lon": -73.9754783 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420621280, + "bounds": { + "minlat": 40.8268224, + "minlon": -73.9735436, + "maxlat": 40.8270976, + "maxlon": -73.9733867 + }, + "nodes": [ + 4205789006, + 103137133 + ], + "geometry": [ + { "lat": 40.8268224, "lon": -73.9735436 }, + { "lat": 40.8270976, "lon": -73.9733867 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420621285, + "bounds": { + "minlat": 40.8199505, + "minlon": -73.9777530, + "maxlat": 40.8205130, + "maxlon": -73.9773989 + }, + "nodes": [ + 4205789002, + 103137102, + 5688937927, + 7672312098, + 103137103 + ], + "geometry": [ + { "lat": 40.8199505, "lon": -73.9777530 }, + { "lat": 40.8201090, "lon": -73.9776389 }, + { "lat": 40.8202773, "lon": -73.9775185 }, + { "lat": 40.8204064, "lon": -73.9774530 }, + { "lat": 40.8205130, "lon": -73.9773989 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420621295, + "bounds": { + "minlat": 40.8299216, + "minlon": -73.9719764, + "maxlat": 40.8300738, + "maxlon": -73.9719227 + }, + "nodes": [ + 4205789011, + 5315234562, + 103137145, + 4205789012 + ], + "geometry": [ + { "lat": 40.8299216, "lon": -73.9719227 }, + { "lat": 40.8299817, "lon": -73.9719428 }, + { "lat": 40.8300459, "lon": -73.9719643 }, + { "lat": 40.8300738, "lon": -73.9719764 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420621309, + "bounds": { + "minlat": 40.8285412, + "minlon": -73.9724885, + "maxlat": 40.8285935, + "maxlon": -73.9724470 + }, + "nodes": [ + 4205789009, + 13070806261 + ], + "geometry": [ + { "lat": 40.8285412, "lon": -73.9724885 }, + { "lat": 40.8285935, "lon": -73.9724470 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "through|through;right" + } +}, +{ + "type": "way", + "id": 420621318, + "bounds": { + "minlat": 40.8274243, + "minlon": -73.9732110, + "maxlat": 40.8276415, + "maxlon": -73.9730686 + }, + "nodes": [ + 4205789007, + 7030913399, + 7030913390, + 4205789008 + ], + "geometry": [ + { "lat": 40.8274243, "lon": -73.9732110 }, + { "lat": 40.8274379, "lon": -73.9732037 }, + { "lat": 40.8276086, "lon": -73.9730926 }, + { "lat": 40.8276415, "lon": -73.9730686 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420621323, + "bounds": { + "minlat": 40.8168969, + "minlon": -73.9807917, + "maxlat": 40.8173520, + "maxlon": -73.9803570 + }, + "nodes": [ + 103137081, + 7672312061, + 10175772765, + 4205788999, + 5362534446, + 103137082 + ], + "geometry": [ + { "lat": 40.8168969, "lon": -73.9807917 }, + { "lat": 40.8169717, "lon": -73.9807203 }, + { "lat": 40.8172253, "lon": -73.9804786 }, + { "lat": 40.8172470, "lon": -73.9804579 }, + { "lat": 40.8172980, "lon": -73.9804089 }, + { "lat": 40.8173520, "lon": -73.9803570 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420621330, + "bounds": { + "minlat": 40.8159492, + "minlon": -73.9817196, + "maxlat": 40.8160059, + "maxlon": -73.9816580 + }, + "nodes": [ + 5362533101, + 1750475770 + ], + "geometry": [ + { "lat": 40.8159492, "lon": -73.9817196 }, + { "lat": 40.8160059, "lon": -73.9816580 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420621336, + "bounds": { + "minlat": 40.8276415, + "minlon": -73.9730686, + "maxlat": 40.8280605, + "maxlon": -73.9728115 + }, + "nodes": [ + 4205789008, + 103108089 + ], + "geometry": [ + { "lat": 40.8276415, "lon": -73.9730686 }, + { "lat": 40.8280605, "lon": -73.9728115 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420621342, + "bounds": { + "minlat": 40.8205130, + "minlon": -73.9773989, + "maxlat": 40.8215950, + "maxlon": -73.9767633 + }, + "nodes": [ + 103137103, + 103137105, + 103137107, + 3441639770 + ], + "geometry": [ + { "lat": 40.8205130, "lon": -73.9773989 }, + { "lat": 40.8211980, "lon": -73.9770694 }, + { "lat": 40.8213655, "lon": -73.9769502 }, + { "lat": 40.8215950, "lon": -73.9767633 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420621347, + "bounds": { + "minlat": 40.8173520, + "minlon": -73.9803570, + "maxlat": 40.8186438, + "maxlon": -73.9790543 + }, + "nodes": [ + 103137082, + 103137087, + 4205789000 + ], + "geometry": [ + { "lat": 40.8173520, "lon": -73.9803570 }, + { "lat": 40.8184976, "lon": -73.9792008 }, + { "lat": 40.8186438, "lon": -73.9790543 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420621349, + "bounds": { + "minlat": 40.8289564, + "minlon": -73.9721956, + "maxlat": 40.8293372, + "maxlon": -73.9719444 + }, + "nodes": [ + 1691389661, + 1752676694, + 7672312225, + 103137138, + 103137139, + 103137140, + 4205789010 + ], + "geometry": [ + { "lat": 40.8289564, "lon": -73.9721956 }, + { "lat": 40.8290123, "lon": -73.9721485 }, + { "lat": 40.8290493, "lon": -73.9721154 }, + { "lat": 40.8290982, "lon": -73.9720716 }, + { "lat": 40.8291479, "lon": -73.9720415 }, + { "lat": 40.8292721, "lon": -73.9719749 }, + { "lat": 40.8293372, "lon": -73.9719444 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420621350, + "bounds": { + "minlat": 40.8293372, + "minlon": -73.9719444, + "maxlat": 40.8298033, + "maxlon": -73.9718699 + }, + "nodes": [ + 4205789010, + 103137141, + 5362460567, + 103137142, + 11035015948, + 103137143, + 103137144, + 5362451467 + ], + "geometry": [ + { "lat": 40.8293372, "lon": -73.9719444 }, + { "lat": 40.8293602, "lon": -73.9719336 }, + { "lat": 40.8294226, "lon": -73.9719115 }, + { "lat": 40.8294776, "lon": -73.9718874 }, + { "lat": 40.8295615, "lon": -73.9718772 }, + { "lat": 40.8296653, "lon": -73.9718699 }, + { "lat": 40.8297718, "lon": -73.9718791 }, + { "lat": 40.8298033, "lon": -73.9718830 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420621351, + "bounds": { + "minlat": 40.8219806, + "minlon": -73.9764427, + "maxlat": 40.8221887, + "maxlon": -73.9762905 + }, + "nodes": [ + 4205789003, + 3441621783 + ], + "geometry": [ + { "lat": 40.8219806, "lon": -73.9764427 }, + { "lat": 40.8221887, "lon": -73.9762905 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420621352, + "bounds": { + "minlat": 40.8238451, + "minlon": -73.9754172, + "maxlat": 40.8240286, + "maxlon": -73.9753205 + }, + "nodes": [ + 103137122, + 103137123 + ], + "geometry": [ + { "lat": 40.8238451, "lon": -73.9754172 }, + { "lat": 40.8240286, "lon": -73.9753205 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420621610, + "bounds": { + "minlat": 40.8297060, + "minlon": -73.9798995, + "maxlat": 40.8299308, + "maxlon": -73.9797749 + }, + "nodes": [ + 4205794190, + 103235745 + ], + "geometry": [ + { "lat": 40.8299308, "lon": -73.9797749 }, + { "lat": 40.8297060, "lon": -73.9798995 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "3", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "turn:lanes": "left||", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 420621611, + "bounds": { + "minlat": 40.8299308, + "minlon": -73.9797749, + "maxlat": 40.8303780, + "maxlon": -73.9795033 + }, + "nodes": [ + 103235747, + 5340819452, + 7495121661, + 4205794190 + ], + "geometry": [ + { "lat": 40.8303780, "lon": -73.9795033 }, + { "lat": 40.8303598, "lon": -73.9795558 }, + { "lat": 40.8301585, "lon": -73.9796691 }, + { "lat": 40.8299308, "lon": -73.9797749 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "2", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 420621612, + "bounds": { + "minlat": 40.8294579, + "minlon": -73.9800415, + "maxlat": 40.8296122, + "maxlon": -73.9799514 + }, + "nodes": [ + 103235743, + 12798011752, + 7081878840 + ], + "geometry": [ + { "lat": 40.8296122, "lon": -73.9799514 }, + { "lat": 40.8295683, "lon": -73.9799771 }, + { "lat": 40.8294579, "lon": -73.9800415 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "3", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "turn:lanes": "left||", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 420621613, + "bounds": { + "minlat": 40.8189570, + "minlon": -73.9787316, + "maxlat": 40.8190316, + "maxlon": -73.9786535 + }, + "nodes": [ + 4205789001, + 3441706866 + ], + "geometry": [ + { "lat": 40.8189570, "lon": -73.9787316 }, + { "lat": 40.8190316, "lon": -73.9786535 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420621614, + "bounds": { + "minlat": 40.8190316, + "minlon": -73.9786535, + "maxlat": 40.8191768, + "maxlon": -73.9785086 + }, + "nodes": [ + 3441706866, + 5362517642 + ], + "geometry": [ + { "lat": 40.8190316, "lon": -73.9786535 }, + { "lat": 40.8191768, "lon": -73.9785086 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420622922, + "bounds": { + "minlat": 40.7767821, + "minlon": -74.0189069, + "maxlat": 40.7770437, + "maxlon": -74.0186871 + }, + "nodes": [ + 4205799648, + 7293195895, + 440243649 + ], + "geometry": [ + { "lat": 40.7767821, "lon": -74.0189069 }, + { "lat": 40.7769733, "lon": -74.0187495 }, + { "lat": 40.7770437, "lon": -74.0186871 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09101116", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Park Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420622924, + "bounds": { + "minlat": 40.7755516, + "minlon": -74.0198554, + "maxlat": 40.7758223, + "maxlon": -74.0196410 + }, + "nodes": [ + 4205799646, + 5909817459, + 103882084 + ], + "geometry": [ + { "lat": 40.7755516, "lon": -74.0198554 }, + { "lat": 40.7757639, "lon": -74.0196827 }, + { "lat": 40.7758223, "lon": -74.0196410 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09101116", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Park Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420622931, + "bounds": { + "minlat": 40.7758223, + "minlon": -74.0196410, + "maxlat": 40.7760942, + "maxlon": -74.0194361 + }, + "nodes": [ + 103882084, + 5909817460, + 4205799647 + ], + "geometry": [ + { "lat": 40.7758223, "lon": -74.0196410 }, + { "lat": 40.7758976, "lon": -74.0195886 }, + { "lat": 40.7760942, "lon": -74.0194361 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09101116", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Park Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420622935, + "bounds": { + "minlat": 40.7770437, + "minlon": -74.0186871, + "maxlat": 40.7774036, + "maxlon": -74.0182703 + }, + "nodes": [ + 440243649, + 7293195888, + 2325759514, + 7701663797, + 12777801709 + ], + "geometry": [ + { "lat": 40.7770437, "lon": -74.0186871 }, + { "lat": 40.7771103, "lon": -74.0186334 }, + { "lat": 40.7772467, "lon": -74.0185019 }, + { "lat": 40.7773633, "lon": -74.0183298 }, + { "lat": 40.7774036, "lon": -74.0182703 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09101116", + "highway": "secondary", + "name": "Park Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 420622937, + "bounds": { + "minlat": 40.7746503, + "minlon": -74.0205383, + "maxlat": 40.7755516, + "maxlon": -74.0198554 + }, + "nodes": [ + 440243679, + 5909817454, + 8920038394, + 440243698, + 7293124757, + 768711557, + 7293124749, + 4205799646 + ], + "geometry": [ + { "lat": 40.7746503, "lon": -74.0205383 }, + { "lat": 40.7747103, "lon": -74.0204946 }, + { "lat": 40.7748222, "lon": -74.0204131 }, + { "lat": 40.7748320, "lon": -74.0204060 }, + { "lat": 40.7751492, "lon": -74.0201616 }, + { "lat": 40.7751938, "lon": -74.0201270 }, + { "lat": 40.7752433, "lon": -74.0200874 }, + { "lat": 40.7755516, "lon": -74.0198554 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09101116", + "highway": "secondary", + "name": "Park Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 420622939, + "bounds": { + "minlat": 40.7637944, + "minlon": -74.0213840, + "maxlat": 40.7654884, + "maxlon": -74.0196190 + }, + "nodes": [ + 2404083070, + 4205799624, + 10795374656, + 10795374655, + 4205799629, + 10795374636, + 10795374637, + 4205799631, + 10795374638, + 10795374639, + 10795374640, + 4205799633, + 7748277756 + ], + "geometry": [ + { "lat": 40.7637944, "lon": -74.0213840 }, + { "lat": 40.7639283, "lon": -74.0211120 }, + { "lat": 40.7645428, "lon": -74.0203315 }, + { "lat": 40.7646300, "lon": -74.0202315 }, + { "lat": 40.7647091, "lon": -74.0201506 }, + { "lat": 40.7647562, "lon": -74.0201036 }, + { "lat": 40.7648128, "lon": -74.0200518 }, + { "lat": 40.7649065, "lon": -74.0199664 }, + { "lat": 40.7649981, "lon": -74.0198959 }, + { "lat": 40.7650920, "lon": -74.0198285 }, + { "lat": 40.7651814, "lon": -74.0197692 }, + { "lat": 40.7652488, "lon": -74.0197251 }, + { "lat": 40.7654884, "lon": -74.0196190 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Port Imperial Boulevard", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420623112, + "bounds": { + "minlat": 40.7943346, + "minlon": -73.9718639, + "maxlat": 40.7946143, + "maxlon": -73.9716646 + }, + "nodes": [ + 4205805395, + 8687882789, + 1061531807 + ], + "geometry": [ + { "lat": 40.7943346, "lon": -73.9718639 }, + { "lat": 40.7945265, "lon": -73.9717277 }, + { "lat": 40.7946143, "lon": -73.9716646 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623113, + "bounds": { + "minlat": 40.7947149, + "minlon": -73.9718975, + "maxlat": 40.7951149, + "maxlon": -73.9716113 + }, + "nodes": [ + 4205805401, + 8687882776, + 42428714 + ], + "geometry": [ + { "lat": 40.7951149, "lon": -73.9716113 }, + { "lat": 40.7948024, "lon": -73.9718287 }, + { "lat": 40.7947149, "lon": -73.9718975 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623114, + "bounds": { + "minlat": 40.7940312, + "minlon": -73.9723990, + "maxlat": 40.7943331, + "maxlon": -73.9721783 + }, + "nodes": [ + 4205805394, + 8687882734, + 42428711 + ], + "geometry": [ + { "lat": 40.7943331, "lon": -73.9721783 }, + { "lat": 40.7940914, "lon": -73.9723555 }, + { "lat": 40.7940312, "lon": -73.9723990 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623115, + "bounds": { + "minlat": 40.7950660, + "minlon": -73.9713740, + "maxlat": 40.7953010, + "maxlon": -73.9712080 + }, + "nodes": [ + 4205805399, + 9177516872, + 11803957860, + 1061531504 + ], + "geometry": [ + { "lat": 40.7950660, "lon": -73.9713740 }, + { "lat": 40.7952015, "lon": -73.9712831 }, + { "lat": 40.7952483, "lon": -73.9712478 }, + { "lat": 40.7953010, "lon": -73.9712080 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623116, + "bounds": { + "minlat": 40.7943331, + "minlon": -73.9721783, + "maxlat": 40.7947149, + "maxlon": -73.9718975 + }, + "nodes": [ + 42428714, + 8687882790, + 4205805394 + ], + "geometry": [ + { "lat": 40.7947149, "lon": -73.9718975 }, + { "lat": 40.7946318, "lon": -73.9719625 }, + { "lat": 40.7943331, "lon": -73.9721783 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623117, + "bounds": { + "minlat": 40.7928760, + "minlon": -73.9675451, + "maxlat": 40.7931731, + "maxlon": -73.9673196 + }, + "nodes": [ + 4205805393, + 3875114024, + 42443381 + ], + "geometry": [ + { "lat": 40.7931731, "lon": -73.9673196 }, + { "lat": 40.7929761, "lon": -73.9674691 }, + { "lat": 40.7928760, "lon": -73.9675451 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623118, + "bounds": { + "minlat": 40.7835117, + "minlon": -73.9773536, + "maxlat": 40.7844692, + "maxlon": -73.9751019 + }, + "nodes": [ + 42442469, + 9193943841, + 9906904519, + 4205805391 + ], + "geometry": [ + { "lat": 40.7844692, "lon": -73.9773536 }, + { "lat": 40.7844208, "lon": -73.9772404 }, + { "lat": 40.7835942, "lon": -73.9752785 }, + { "lat": 40.7835117, "lon": -73.9751019 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 81st Street", + "name:ru": "Западная 81-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420623119, + "bounds": { + "minlat": 40.7826188, + "minlon": -73.9739751, + "maxlat": 40.7829894, + "maxlon": -73.9730915 + }, + "nodes": [ + 4205805390, + 3248774451 + ], + "geometry": [ + { "lat": 40.7829894, "lon": -73.9739751 }, + { "lat": 40.7826188, "lon": -73.9730915 } + ], + "tags": { + "alt_name": "West 81 Street", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West 81st Street", + "name:ru": "Западная 81-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420623120, + "bounds": { + "minlat": 40.7820388, + "minlon": -73.9722580, + "maxlat": 40.7822663, + "maxlon": -73.9717224 + }, + "nodes": [ + 9906904518, + 3248774664, + 3392519879, + 9906904517, + 42427915 + ], + "geometry": [ + { "lat": 40.7822663, "lon": -73.9722580 }, + { "lat": 40.7822135, "lon": -73.9721341 }, + { "lat": 40.7820923, "lon": -73.9718489 }, + { "lat": 40.7820651, "lon": -73.9717817 }, + { "lat": 40.7820388, "lon": -73.9717224 } + ], + "tags": { + "alt_name": "West 81 Street", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West 81st Street", + "name:ru": "Западная 81-я стрит", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes:forward": "left|through|" + } +}, +{ + "type": "way", + "id": 420623121, + "bounds": { + "minlat": 40.7852965, + "minlon": -73.9698584, + "maxlat": 40.7855212, + "maxlon": -73.9693444 + }, + "nodes": [ + 7106818626, + 7106818630, + 4205805392 + ], + "geometry": [ + { "lat": 40.7852965, "lon": -73.9693444 }, + { "lat": 40.7853509, "lon": -73.9694605 }, + { "lat": 40.7855212, "lon": -73.9698584 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West 86th Street", + "name:ru": "Западная 86-я стрит", + "name_1": "West 86 Street", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left;through|through|right", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623122, + "bounds": { + "minlat": 40.7950316, + "minlon": -73.9728005, + "maxlat": 40.7950859, + "maxlon": -73.9726685 + }, + "nodes": [ + 4205805400, + 7065533341 + ], + "geometry": [ + { "lat": 40.7950859, "lon": -73.9728005 }, + { "lat": 40.7950316, "lon": -73.9726685 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "West 96th Street", + "name:ru": "Западная 96-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623123, + "bounds": { + "minlat": 40.7950859, + "minlon": -73.9732163, + "maxlat": 40.7952567, + "maxlon": -73.9728005 + }, + "nodes": [ + 42431099, + 8687882768, + 4205805400 + ], + "geometry": [ + { "lat": 40.7952567, "lon": -73.9732163 }, + { "lat": 40.7952011, "lon": -73.9730811 }, + { "lat": 40.7950859, "lon": -73.9728005 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "West 96th Street", + "name:ru": "Западная 96-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "||right", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623124, + "bounds": { + "minlat": 40.7944280, + "minlon": -73.9716646, + "maxlat": 40.7946143, + "maxlon": -73.9712252 + }, + "nodes": [ + 4205805396, + 7061276938, + 7004379678, + 1061531807 + ], + "geometry": [ + { "lat": 40.7944280, "lon": -73.9712252 }, + { "lat": 40.7945383, "lon": -73.9714854 }, + { "lat": 40.7945760, "lon": -73.9715742 }, + { "lat": 40.7946143, "lon": -73.9716646 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 96th Street", + "name:ru": "Западная 96-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|through;right", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623125, + "bounds": { + "minlat": 40.7946143, + "minlon": -73.9718975, + "maxlat": 40.7947149, + "maxlon": -73.9716646 + }, + "nodes": [ + 42428714, + 2542108150, + 1061531807 + ], + "geometry": [ + { "lat": 40.7947149, "lon": -73.9718975 }, + { "lat": 40.7946714, "lon": -73.9717969 }, + { "lat": 40.7946143, "lon": -73.9716646 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "name": "West 96th Street", + "name:ru": "Западная 96-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623126, + "bounds": { + "minlat": 40.7945890, + "minlon": -73.9737051, + "maxlat": 40.7949203, + "maxlon": -73.9734602 + }, + "nodes": [ + 42431096, + 9492542188, + 4205805397 + ], + "geometry": [ + { "lat": 40.7945890, "lon": -73.9737051 }, + { "lat": 40.7946468, "lon": -73.9736631 }, + { "lat": 40.7949203, "lon": -73.9734602 } + ], + "tags": { + "cycleway:both": "no", + "goods": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623127, + "bounds": { + "minlat": 40.7949203, + "minlon": -73.9734602, + "maxlat": 40.7952567, + "maxlon": -73.9732163 + }, + "nodes": [ + 4205805397, + 8687882791, + 42431099 + ], + "geometry": [ + { "lat": 40.7949203, "lon": -73.9734602 }, + { "lat": 40.7951625, "lon": -73.9732863 }, + { "lat": 40.7952567, "lon": -73.9732163 } + ], + "tags": { + "cycleway:both": "no", + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "postal_code": "10025", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623128, + "bounds": { + "minlat": 40.7955769, + "minlon": -73.9729864, + "maxlat": 40.7959381, + "maxlon": -73.9727170 + }, + "nodes": [ + 42431102, + 7801775761, + 4205805402 + ], + "geometry": [ + { "lat": 40.7959381, "lon": -73.9727170 }, + { "lat": 40.7958791, "lon": -73.9727627 }, + { "lat": 40.7955769, "lon": -73.9729864 } + ], + "tags": { + "hgv": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420623947, + "bounds": { + "minlat": 40.7941187, + "minlon": -74.0005870, + "maxlat": 40.7942425, + "maxlon": -74.0002988 + }, + "nodes": [ + 2814557130, + 2814557132, + 2814557133, + 2814557135 + ], + "geometry": [ + { "lat": 40.7941187, "lon": -74.0005870 }, + { "lat": 40.7941796, "lon": -74.0004984 }, + { "lat": 40.7942233, "lon": -74.0004187 }, + { "lat": 40.7942425, "lon": -74.0002988 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "lanes": "2", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "oneway": "yes", + "turn:lanes": "left|", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 420623949, + "bounds": { + "minlat": 40.7854530, + "minlon": -74.0031481, + "maxlat": 40.7856583, + "maxlon": -74.0029637 + }, + "nodes": [ + 103859910, + 4205813737 + ], + "geometry": [ + { "lat": 40.7856583, "lon": -74.0029637 }, + { "lat": 40.7854530, "lon": -74.0031481 } + ], + "tags": { + "highway": "primary", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:backward": "through|through;right" + } +}, +{ + "type": "way", + "id": 420623950, + "bounds": { + "minlat": 40.7856583, + "minlon": -74.0029637, + "maxlat": 40.7865006, + "maxlon": -74.0022770 + }, + "nodes": [ + 4205813738, + 11676020978, + 103859910 + ], + "geometry": [ + { "lat": 40.7865006, "lon": -74.0022770 }, + { "lat": 40.7857325, "lon": -74.0029051 }, + { "lat": 40.7856583, "lon": -74.0029637 } + ], + "tags": { + "highway": "primary", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:forward": "left;through|through" + } +}, +{ + "type": "way", + "id": 420623951, + "bounds": { + "minlat": 40.7845018, + "minlon": -74.0041422, + "maxlat": 40.7854530, + "maxlon": -74.0031481 + }, + "nodes": [ + 4205813737, + 103856513, + 308679536 + ], + "geometry": [ + { "lat": 40.7854530, "lon": -74.0031481 }, + { "lat": 40.7852898, "lon": -74.0033108 }, + { "lat": 40.7845018, "lon": -74.0041422 } + ], + "tags": { + "highway": "primary", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420623952, + "bounds": { + "minlat": 40.7894137, + "minlon": -73.9998992, + "maxlat": 40.7895036, + "maxlon": -73.9998307 + }, + "nodes": [ + 4205813739, + 103861689 + ], + "geometry": [ + { "lat": 40.7894137, "lon": -73.9998992 }, + { "lat": 40.7895036, "lon": -73.9998307 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420623953, + "bounds": { + "minlat": 40.7954116, + "minlon": -73.9969198, + "maxlat": 40.7956006, + "maxlon": -73.9968687 + }, + "nodes": [ + 4205813744, + 3642793668 + ], + "geometry": [ + { "lat": 40.7954116, "lon": -73.9969198 }, + { "lat": 40.7956006, "lon": -73.9968687 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420623954, + "bounds": { + "minlat": 40.7890978, + "minlon": -74.0001469, + "maxlat": 40.7894137, + "maxlon": -73.9998992 + }, + "nodes": [ + 103861686, + 4205813739 + ], + "geometry": [ + { "lat": 40.7890978, "lon": -74.0001469 }, + { "lat": 40.7894137, "lon": -73.9998992 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "||right" + } +}, +{ + "type": "way", + "id": 420623955, + "bounds": { + "minlat": 40.7895036, + "minlon": -73.9998307, + "maxlat": 40.7898881, + "maxlon": -73.9995713 + }, + "nodes": [ + 103861689, + 6488930414, + 4205813740 + ], + "geometry": [ + { "lat": 40.7895036, "lon": -73.9998307 }, + { "lat": 40.7896675, "lon": -73.9997025 }, + { "lat": 40.7898881, "lon": -73.9995713 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "||right" + } +}, +{ + "type": "way", + "id": 420623956, + "bounds": { + "minlat": 40.7930074, + "minlon": -73.9977992, + "maxlat": 40.7934047, + "maxlon": -73.9975551 + }, + "nodes": [ + 4205813742, + 103861701 + ], + "geometry": [ + { "lat": 40.7930074, "lon": -73.9977992 }, + { "lat": 40.7934047, "lon": -73.9975551 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "shared_lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|||right" + } +}, +{ + "type": "way", + "id": 420623957, + "bounds": { + "minlat": 40.7956006, + "minlon": -73.9968687, + "maxlat": 40.7958166, + "maxlon": -73.9968107 + }, + "nodes": [ + 3642793668, + 4205813745 + ], + "geometry": [ + { "lat": 40.7956006, "lon": -73.9968687 }, + { "lat": 40.7958166, "lon": -73.9968107 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420623958, + "bounds": { + "minlat": 40.7934047, + "minlon": -73.9975551, + "maxlat": 40.7937294, + "maxlon": -73.9973879 + }, + "nodes": [ + 103861701, + 103861703, + 4205813743 + ], + "geometry": [ + { "lat": 40.7934047, "lon": -73.9975551 }, + { "lat": 40.7935241, "lon": -73.9974825 }, + { "lat": 40.7937294, "lon": -73.9973879 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420623959, + "bounds": { + "minlat": 40.7908646, + "minlon": -73.9990701, + "maxlat": 40.7911286, + "maxlon": -73.9989127 + }, + "nodes": [ + 1691389651, + 4205813741 + ], + "geometry": [ + { "lat": 40.7908646, "lon": -73.9990701 }, + { "lat": 40.7911286, "lon": -73.9989127 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "shared_lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420623960, + "bounds": { + "minlat": 40.7937294, + "minlon": -73.9973879, + "maxlat": 40.7946124, + "maxlon": -73.9971493 + }, + "nodes": [ + 4205813743, + 103861704, + 5482013552, + 3633386746 + ], + "geometry": [ + { "lat": 40.7937294, "lon": -73.9973879 }, + { "lat": 40.7938833, "lon": -73.9973415 }, + { "lat": 40.7940303, "lon": -73.9973028 }, + { "lat": 40.7946124, "lon": -73.9971493 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420623961, + "bounds": { + "minlat": 40.7898881, + "minlon": -73.9995713, + "maxlat": 40.7907315, + "maxlon": -73.9991539 + }, + "nodes": [ + 4205813740, + 103861695, + 103861696 + ], + "geometry": [ + { "lat": 40.7898881, "lon": -73.9995713 }, + { "lat": 40.7901927, "lon": -73.9994273 }, + { "lat": 40.7907315, "lon": -73.9991539 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420623962, + "bounds": { + "minlat": 40.7958166, + "minlon": -73.9968107, + "maxlat": 40.7975845, + "maxlon": -73.9958248 + }, + "nodes": [ + 4205813745, + 6765879176, + 103861706, + 103861708, + 103861710, + 103861712, + 5481963161, + 103861713, + 103861714 + ], + "geometry": [ + { "lat": 40.7958166, "lon": -73.9968107 }, + { "lat": 40.7959041, "lon": -73.9967864 }, + { "lat": 40.7960377, "lon": -73.9967494 }, + { "lat": 40.7962407, "lon": -73.9966822 }, + { "lat": 40.7964257, "lon": -73.9965934 }, + { "lat": 40.7966158, "lon": -73.9964834 }, + { "lat": 40.7967895, "lon": -73.9963613 }, + { "lat": 40.7970176, "lon": -73.9962010 }, + { "lat": 40.7975845, "lon": -73.9958248 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420624363, + "bounds": { + "minlat": 40.7711763, + "minlon": -74.0199868, + "maxlat": 40.7714190, + "maxlon": -74.0192526 + }, + "nodes": [ + 4205818425, + 4999662208, + 7366578085, + 103868669 + ], + "geometry": [ + { "lat": 40.7711763, "lon": -74.0199868 }, + { "lat": 40.7713534, "lon": -74.0195955 }, + { "lat": 40.7713933, "lon": -74.0194379 }, + { "lat": 40.7714190, "lon": -74.0192526 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09111121", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "source": "bing", + "surface": "asphalt", + "turn:lanes:forward": "left|none", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 420624369, + "bounds": { + "minlat": 40.7774624, + "minlon": -74.0137822, + "maxlat": 40.7775193, + "maxlon": -74.0137618 + }, + "nodes": [ + 103872546, + 7174430725 + ], + "geometry": [ + { "lat": 40.7774624, "lon": -74.0137822 }, + { "lat": 40.7775193, "lon": -74.0137618 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 420624376, + "bounds": { + "minlat": 40.7775966, + "minlon": -74.0137340, + "maxlat": 40.7776490, + "maxlon": -74.0137152 + }, + "nodes": [ + 4205818431, + 4205818433 + ], + "geometry": [ + { "lat": 40.7775966, "lon": -74.0137340 }, + { "lat": 40.7776490, "lon": -74.0137152 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "turn:lanes:forward": "left|", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 420624382, + "bounds": { + "minlat": 40.7776490, + "minlon": -74.0137152, + "maxlat": 40.7778751, + "maxlon": -74.0136262 + }, + "nodes": [ + 4205818433, + 6886303410, + 5909784334, + 103872547 + ], + "geometry": [ + { "lat": 40.7776490, "lon": -74.0137152 }, + { "lat": 40.7777202, "lon": -74.0136897 }, + { "lat": 40.7778153, "lon": -74.0136559 }, + { "lat": 40.7778751, "lon": -74.0136262 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 420624383, + "bounds": { + "minlat": 40.7707696, + "minlon": -74.0152822, + "maxlat": 40.7719851, + "maxlon": -74.0146642 + }, + "nodes": [ + 307870549, + 12966011027 + ], + "geometry": [ + { "lat": 40.7719851, "lon": -74.0146642 }, + { "lat": 40.7707696, "lon": -74.0152822 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420624387, + "bounds": { + "minlat": 40.7662670, + "minlon": -74.0190766, + "maxlat": 40.7666902, + "maxlon": -74.0187731 + }, + "nodes": [ + 4205818421, + 307870577 + ], + "geometry": [ + { "lat": 40.7666902, "lon": -74.0187731 }, + { "lat": 40.7662670, "lon": -74.0190766 } + ], + "tags": { + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Port Imperial Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through" + } +}, +{ + "type": "way", + "id": 420624390, + "bounds": { + "minlat": 40.7796311, + "minlon": -74.0106493, + "maxlat": 40.7797189, + "maxlon": -74.0105890 + }, + "nodes": [ + 4205818437, + 4205818436 + ], + "geometry": [ + { "lat": 40.7797189, "lon": -74.0105890 }, + { "lat": 40.7796311, "lon": -74.0106493 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420624391, + "bounds": { + "minlat": 40.7797189, + "minlon": -74.0105890, + "maxlat": 40.7800137, + "maxlon": -74.0103742 + }, + "nodes": [ + 308679535, + 4205818437 + ], + "geometry": [ + { "lat": 40.7800137, "lon": -74.0103742 }, + { "lat": 40.7797189, "lon": -74.0105890 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:backward": "through|through;right" + } +}, +{ + "type": "way", + "id": 420624392, + "bounds": { + "minlat": 40.7800137, + "minlon": -74.0103742, + "maxlat": 40.7806180, + "maxlon": -74.0099070 + }, + "nodes": [ + 4205818438, + 308679535 + ], + "geometry": [ + { "lat": 40.7806180, "lon": -74.0099070 }, + { "lat": 40.7800137, "lon": -74.0103742 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:backward": "through|through", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 420624394, + "bounds": { + "minlat": 40.7781062, + "minlon": -74.0119149, + "maxlat": 40.7787095, + "maxlon": -74.0114111 + }, + "nodes": [ + 4205818435, + 4205818434, + 2837060025, + 308693079 + ], + "geometry": [ + { "lat": 40.7787095, "lon": -74.0114111 }, + { "lat": 40.7786119, "lon": -74.0115068 }, + { "lat": 40.7782346, "lon": -74.0118331 }, + { "lat": 40.7781062, "lon": -74.0119149 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:backward": "through|through", + "turn:lanes:forward": "through|through" + } +}, +{ + "type": "way", + "id": 420624396, + "bounds": { + "minlat": 40.7759935, + "minlon": -74.0121718, + "maxlat": 40.7765782, + "maxlon": -74.0120540 + }, + "nodes": [ + 103869875, + 7907171751, + 1793478660 + ], + "geometry": [ + { "lat": 40.7765782, "lon": -74.0121718 }, + { "lat": 40.7761056, "lon": -74.0120822 }, + { "lat": 40.7759935, "lon": -74.0120540 } + ], + "tags": { + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|right|right" + } +}, +{ + "type": "way", + "id": 420624400, + "bounds": { + "minlat": 40.7732461, + "minlon": -74.0138910, + "maxlat": 40.7739006, + "maxlon": -74.0134687 + }, + "nodes": [ + 4069497850, + 2404083336 + ], + "geometry": [ + { "lat": 40.7739006, "lon": -74.0134687 }, + { "lat": 40.7732461, "lon": -74.0138910 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420624402, + "bounds": { + "minlat": 40.7758499, + "minlon": -74.0120540, + "maxlat": 40.7759935, + "maxlon": -74.0120387 + }, + "nodes": [ + 1793478660, + 2721508555 + ], + "geometry": [ + { "lat": 40.7759935, "lon": -74.0120540 }, + { "lat": 40.7758499, "lon": -74.0120387 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420624403, + "bounds": { + "minlat": 40.7791619, + "minlon": -74.0110023, + "maxlat": 40.7796311, + "maxlon": -74.0106493 + }, + "nodes": [ + 4205818436, + 103856485, + 2631530266 + ], + "geometry": [ + { "lat": 40.7796311, "lon": -74.0106493 }, + { "lat": 40.7794044, "lon": -74.0108055 }, + { "lat": 40.7791619, "lon": -74.0110023 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:forward": "left;through|through" + } +}, +{ + "type": "way", + "id": 420624406, + "bounds": { + "minlat": 40.7774345, + "minlon": -74.0122062, + "maxlat": 40.7781062, + "maxlon": -74.0119149 + }, + "nodes": [ + 308693079, + 2837060023, + 4205818432, + 2325759516, + 2837060024 + ], + "geometry": [ + { "lat": 40.7781062, "lon": -74.0119149 }, + { "lat": 40.7779319, "lon": -74.0120129 }, + { "lat": 40.7776492, "lon": -74.0121489 }, + { "lat": 40.7775490, "lon": -74.0121813 }, + { "lat": 40.7774345, "lon": -74.0122062 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:backward": "through|through", + "turn:lanes:forward": "through|through" + } +}, +{ + "type": "way", + "id": 420624663, + "bounds": { + "minlat": 40.7805446, + "minlon": -73.9865628, + "maxlat": 40.7806784, + "maxlon": -73.9862482 + }, + "nodes": [ + 4205820212, + 42425223 + ], + "geometry": [ + { "lat": 40.7805446, "lon": -73.9862482 }, + { "lat": 40.7806784, "lon": -73.9865628 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "name_1": "West 72 Street", + "surface": "asphalt", + "turn:lanes:forward": "through|right", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420625559, + "bounds": { + "minlat": 40.8007770, + "minlon": -73.9617602, + "maxlat": 40.8011797, + "maxlon": -73.9614635 + }, + "nodes": [ + 42443426, + 10171363569, + 4205830396 + ], + "geometry": [ + { "lat": 40.8011797, "lon": -73.9614635 }, + { "lat": 40.8011246, "lon": -73.9615041 }, + { "lat": 40.8007770, "lon": -73.9617602 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420625560, + "bounds": { + "minlat": 40.7979207, + "minlon": -73.9638432, + "maxlat": 40.7981034, + "maxlon": -73.9637083 + }, + "nodes": [ + 4205830389, + 10166004094, + 42443406 + ], + "geometry": [ + { "lat": 40.7981034, "lon": -73.9637083 }, + { "lat": 40.7979984, "lon": -73.9637859 }, + { "lat": 40.7979207, "lon": -73.9638432 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420625561, + "bounds": { + "minlat": 40.8001125, + "minlon": -73.9622446, + "maxlat": 40.8005466, + "maxlon": -73.9619296 + }, + "nodes": [ + 42443413, + 10166004018, + 13776983473 + ], + "geometry": [ + { "lat": 40.8005466, "lon": -73.9619296 }, + { "lat": 40.8004957, "lon": -73.9619665 }, + { "lat": 40.8001125, "lon": -73.9622446 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420625562, + "bounds": { + "minlat": 40.7992437, + "minlon": -73.9628734, + "maxlat": 40.7994417, + "maxlon": -73.9627266 + }, + "nodes": [ + 9658346967, + 10171363584, + 42421737 + ], + "geometry": [ + { "lat": 40.7994417, "lon": -73.9627266 }, + { "lat": 40.7993438, "lon": -73.9627992 }, + { "lat": 40.7992437, "lon": -73.9628734 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420625563, + "bounds": { + "minlat": 40.7982503, + "minlon": -73.9636015, + "maxlat": 40.7992437, + "maxlon": -73.9628734 + }, + "nodes": [ + 42421737, + 10171363585, + 10166004032, + 42437917, + 10166004033, + 13777220339 + ], + "geometry": [ + { "lat": 40.7992437, "lon": -73.9628734 }, + { "lat": 40.7991518, "lon": -73.9629411 }, + { "lat": 40.7986290, "lon": -73.9633253 }, + { "lat": 40.7985681, "lon": -73.9633705 }, + { "lat": 40.7985151, "lon": -73.9634089 }, + { "lat": 40.7982503, "lon": -73.9636015 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420625564, + "bounds": { + "minlat": 40.8011177, + "minlon": -73.9677649, + "maxlat": 40.8013033, + "maxlon": -73.9673199 + }, + "nodes": [ + 4205830397, + 8831843014, + 7004436786, + 1061531654 + ], + "geometry": [ + { "lat": 40.8011177, "lon": -73.9673199 }, + { "lat": 40.8012339, "lon": -73.9675993 }, + { "lat": 40.8012546, "lon": -73.9676493 }, + { "lat": 40.8013033, "lon": -73.9677649 } + ], + "tags": { + "alt_name": "Duke Ellington Boulevard", + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420625565, + "bounds": { + "minlat": 40.7984943, + "minlon": -73.9614745, + "maxlat": 40.7986542, + "maxlon": -73.9611061 + }, + "nodes": [ + 4205830391, + 10171363559, + 42421731 + ], + "geometry": [ + { "lat": 40.7984943, "lon": -73.9611061 }, + { "lat": 40.7986175, "lon": -73.9613898 }, + { "lat": 40.7986542, "lon": -73.9614745 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420625567, + "bounds": { + "minlat": 40.7992437, + "minlon": -73.9656909, + "maxlat": 40.8004295, + "maxlon": -73.9628734 + }, + "nodes": [ + 42421741, + 10166004077, + 11905306939, + 9150552657, + 10171363586, + 42421737 + ], + "geometry": [ + { "lat": 40.8004295, "lon": -73.9656909 }, + { "lat": 40.8003886, "lon": -73.9655938 }, + { "lat": 40.7998905, "lon": -73.9644097 }, + { "lat": 40.7993056, "lon": -73.9630191 }, + { "lat": 40.7992988, "lon": -73.9630030 }, + { "lat": 40.7992437, "lon": -73.9628734 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420625568, + "bounds": { + "minlat": 40.8014390, + "minlon": -73.9685741, + "maxlat": 40.8016452, + "maxlon": -73.9680981 + }, + "nodes": [ + 42421749, + 6900903307, + 9496980742, + 6900903299 + ], + "geometry": [ + { "lat": 40.8016452, "lon": -73.9685741 }, + { "lat": 40.8015851, "lon": -73.9684328 }, + { "lat": 40.8015708, "lon": -73.9683989 }, + { "lat": 40.8014390, "lon": -73.9680981 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "no", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "4", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420625569, + "bounds": { + "minlat": 40.8006204, + "minlon": -73.9673199, + "maxlat": 40.8011177, + "maxlon": -73.9661491 + }, + "nodes": [ + 4205830395, + 4205830397 + ], + "geometry": [ + { "lat": 40.8006204, "lon": -73.9661491 }, + { "lat": 40.8011177, "lon": -73.9673199 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420625570, + "bounds": { + "minlat": 40.7986542, + "minlon": -73.9621333, + "maxlat": 40.7989327, + "maxlon": -73.9614745 + }, + "nodes": [ + 42421731, + 10171363562, + 4205830392 + ], + "geometry": [ + { "lat": 40.7986542, "lon": -73.9614745 }, + { "lat": 40.7986988, "lon": -73.9615798 }, + { "lat": 40.7989327, "lon": -73.9621333 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lit": "yes", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420625573, + "bounds": { + "minlat": 40.7980478, + "minlon": -73.9604229, + "maxlat": 40.7982075, + "maxlon": -73.9600437 + }, + "nodes": [ + 42421728, + 7784826658, + 8768040148, + 4205830390 + ], + "geometry": [ + { "lat": 40.7980478, "lon": -73.9600437 }, + { "lat": 40.7980991, "lon": -73.9601660 }, + { "lat": 40.7981088, "lon": -73.9601892 }, + { "lat": 40.7982075, "lon": -73.9604229 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|right" + } +}, +{ + "type": "way", + "id": 420625575, + "bounds": { + "minlat": 40.7993567, + "minlon": -73.9619296, + "maxlat": 40.8005466, + "maxlon": -73.9590861 + }, + "nodes": [ + 42443413, + 10165989516, + 10171241056, + 42447295, + 10171241053, + 9796881841, + 42435341 + ], + "geometry": [ + { "lat": 40.8005466, "lon": -73.9619296 }, + { "lat": 40.8004869, "lon": -73.9617865 }, + { "lat": 40.8000054, "lon": -73.9606327 }, + { "lat": 40.7999592, "lon": -73.9605219 }, + { "lat": 40.7999177, "lon": -73.9604230 }, + { "lat": 40.7994078, "lon": -73.9592080 }, + { "lat": 40.7993567, "lon": -73.9590861 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 108th Street", + "name:ru": "Западная 108-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420626378, + "bounds": { + "minlat": 40.7799106, + "minlon": -73.9471466, + "maxlat": 40.7800714, + "maxlon": -73.9470292 + }, + "nodes": [ + 4205865492, + 6214889052, + 42456076 + ], + "geometry": [ + { "lat": 40.7799106, "lon": -73.9471466 }, + { "lat": 40.7800064, "lon": -73.9470778 }, + { "lat": 40.7800714, "lon": -73.9470292 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420626386, + "bounds": { + "minlat": 40.7765492, + "minlon": -73.9496157, + "maxlat": 40.7768880, + "maxlon": -73.9493698 + }, + "nodes": [ + 4205865489, + 7834025568, + 42429342 + ], + "geometry": [ + { "lat": 40.7765492, "lon": -73.9496157 }, + { "lat": 40.7767895, "lon": -73.9494413 }, + { "lat": 40.7768880, "lon": -73.9493698 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through||", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420626388, + "bounds": { + "minlat": 40.7786540, + "minlon": -73.9480700, + "maxlat": 40.7788150, + "maxlon": -73.9479508 + }, + "nodes": [ + 4205865491, + 7140667649, + 42436551 + ], + "geometry": [ + { "lat": 40.7786540, "lon": -73.9480700 }, + { "lat": 40.7787489, "lon": -73.9480010 }, + { "lat": 40.7788150, "lon": -73.9479508 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420626393, + "bounds": { + "minlat": 40.7768880, + "minlon": -73.9493698, + "maxlat": 40.7773936, + "maxlon": -73.9489949 + }, + "nodes": [ + 42429342, + 7834025550, + 4205865490 + ], + "geometry": [ + { "lat": 40.7768880, "lon": -73.9493698 }, + { "lat": 40.7769833, "lon": -73.9492996 }, + { "lat": 40.7773936, "lon": -73.9489949 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420626395, + "bounds": { + "minlat": 40.7773936, + "minlon": -73.9489949, + "maxlat": 40.7775516, + "maxlon": -73.9488810 + }, + "nodes": [ + 4205865490, + 6133359414, + 7834030823, + 42454196 + ], + "geometry": [ + { "lat": 40.7773936, "lon": -73.9489949 }, + { "lat": 40.7774193, "lon": -73.9489784 }, + { "lat": 40.7774986, "lon": -73.9489201 }, + { "lat": 40.7775516, "lon": -73.9488810 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420626396, + "bounds": { + "minlat": 40.7788150, + "minlon": -73.9479508, + "maxlat": 40.7794315, + "maxlon": -73.9474999 + }, + "nodes": [ + 42436551, + 7140667644, + 7140667646, + 42444820 + ], + "geometry": [ + { "lat": 40.7788150, "lon": -73.9479508 }, + { "lat": 40.7788704, "lon": -73.9479102 }, + { "lat": 40.7793812, "lon": -73.9475374 }, + { "lat": 40.7794315, "lon": -73.9474999 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420626397, + "bounds": { + "minlat": 40.7775516, + "minlon": -73.9488810, + "maxlat": 40.7786540, + "maxlon": -73.9480700 + }, + "nodes": [ + 42454196, + 7834025533, + 7834025538, + 42445748, + 7834025546, + 4205865491 + ], + "geometry": [ + { "lat": 40.7775516, "lon": -73.9488810 }, + { "lat": 40.7776174, "lon": -73.9488332 }, + { "lat": 40.7781264, "lon": -73.9484625 }, + { "lat": 40.7781772, "lon": -73.9484255 }, + { "lat": 40.7782433, "lon": -73.9483772 }, + { "lat": 40.7786540, "lon": -73.9480700 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420626627, + "bounds": { + "minlat": 40.8723062, + "minlon": -74.0134885, + "maxlat": 40.8724304, + "maxlon": -74.0130614 + }, + "nodes": [ + 4205863451, + 13527753037, + 103214403 + ], + "geometry": [ + { "lat": 40.8724304, "lon": -74.0134885 }, + { "lat": 40.8723565, "lon": -74.0132345 }, + { "lat": 40.8723062, "lon": -74.0130614 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "lanes": "3", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420626628, + "bounds": { + "minlat": 40.8721632, + "minlon": -74.0123002, + "maxlat": 40.8722550, + "maxlon": -74.0117201 + }, + "nodes": [ + 103247056, + 10947500745, + 6592337687, + 6592337672, + 103247060 + ], + "geometry": [ + { "lat": 40.8721632, "lon": -74.0117201 }, + { "lat": 40.8721816, "lon": -74.0118503 }, + { "lat": 40.8722026, "lon": -74.0119940 }, + { "lat": 40.8722293, "lon": -74.0121610 }, + { "lat": 40.8722550, "lon": -74.0123002 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "4", + "maxspeed": "45 mph", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes": "left|||right" + } +}, +{ + "type": "way", + "id": 420626630, + "bounds": { + "minlat": 40.8708287, + "minlon": -74.0061589, + "maxlat": 40.8711339, + "maxlon": -74.0056538 + }, + "nodes": [ + 4205863448, + 10940833272, + 4472892622, + 567269903 + ], + "geometry": [ + { "lat": 40.8711339, "lon": -74.0061589 }, + { "lat": 40.8710696, "lon": -74.0060388 }, + { "lat": 40.8709465, "lon": -74.0058449 }, + { "lat": 40.8708287, "lon": -74.0056538 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "3", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes": "through|through|slight_right" + } +}, +{ + "type": "way", + "id": 420626631, + "bounds": { + "minlat": 40.8711339, + "minlon": -74.0069796, + "maxlat": 40.8714853, + "maxlon": -74.0061589 + }, + "nodes": [ + 567269855, + 10940833242, + 10940833218, + 567269900, + 10940833221, + 4469437987, + 567269901, + 4205863448 + ], + "geometry": [ + { "lat": 40.8714853, "lon": -74.0069796 }, + { "lat": 40.8714475, "lon": -74.0068763 }, + { "lat": 40.8714060, "lon": -74.0067670 }, + { "lat": 40.8713558, "lon": -74.0066420 }, + { "lat": 40.8712980, "lon": -74.0065078 }, + { "lat": 40.8712484, "lon": -74.0063946 }, + { "lat": 40.8711924, "lon": -74.0062753 }, + { "lat": 40.8711339, "lon": -74.0061589 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "3", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 420626632, + "bounds": { + "minlat": 40.8714853, + "minlon": -74.0075722, + "maxlat": 40.8716701, + "maxlon": -74.0069796 + }, + "nodes": [ + 9691712169, + 12323099076, + 12323099086, + 10940833234, + 12323099085, + 567269899, + 4472892623, + 13527741658, + 10940833273, + 567269855 + ], + "geometry": [ + { "lat": 40.8716701, "lon": -74.0075722 }, + { "lat": 40.8716519, "lon": -74.0075060 }, + { "lat": 40.8716458, "lon": -74.0074838 }, + { "lat": 40.8716337, "lon": -74.0074398 }, + { "lat": 40.8716186, "lon": -74.0073887 }, + { "lat": 40.8715964, "lon": -74.0073136 }, + { "lat": 40.8715544, "lon": -74.0071805 }, + { "lat": 40.8715425, "lon": -74.0071457 }, + { "lat": 40.8715204, "lon": -74.0070807 }, + { "lat": 40.8714853, "lon": -74.0069796 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "5", + "maxspeed": "45 mph", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes": "left|left|||" + } +}, +{ + "type": "way", + "id": 420626633, + "bounds": { + "minlat": 40.8718115, + "minlon": -74.0089435, + "maxlat": 40.8719018, + "maxlon": -74.0082208 + }, + "nodes": [ + 4205863450, + 10940833250, + 4472892619, + 10940833269, + 567269895, + 12323099081, + 567269897 + ], + "geometry": [ + { "lat": 40.8719018, "lon": -74.0089435 }, + { "lat": 40.8718895, "lon": -74.0088032 }, + { "lat": 40.8718745, "lon": -74.0086629 }, + { "lat": 40.8718575, "lon": -74.0085248 }, + { "lat": 40.8718378, "lon": -74.0083860 }, + { "lat": 40.8718207, "lon": -74.0082788 }, + { "lat": 40.8718115, "lon": -74.0082208 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "4", + "maxspeed": "45 mph", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes": "left|||" + } +}, +{ + "type": "way", + "id": 420626634, + "bounds": { + "minlat": 40.8706937, + "minlon": -74.0040997, + "maxlat": 40.8711182, + "maxlon": -74.0037938 + }, + "nodes": [ + 4205863447, + 10940833262, + 298782914, + 4469429068, + 103093310 + ], + "geometry": [ + { "lat": 40.8706937, "lon": -74.0040997 }, + { "lat": 40.8707744, "lon": -74.0040329 }, + { "lat": 40.8708774, "lon": -74.0039522 }, + { "lat": 40.8709742, "lon": -74.0038821 }, + { "lat": 40.8711182, "lon": -74.0037938 } + ], + "tags": { + "cycleway:right": "no", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Glenwood Avenue", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glenwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420626635, + "bounds": { + "minlat": 40.8724162, + "minlon": -74.0130131, + "maxlat": 40.8727529, + "maxlon": -74.0128778 + }, + "nodes": [ + 103214406, + 6634228366, + 13527753043, + 103214404 + ], + "geometry": [ + { "lat": 40.8727529, "lon": -74.0128778 }, + { "lat": 40.8726990, "lon": -74.0128994 }, + { "lat": 40.8725007, "lon": -74.0129791 }, + { "lat": 40.8724162, "lon": -74.0130131 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes:forward": "left|left|" + } +}, +{ + "type": "way", + "id": 420626636, + "bounds": { + "minlat": 40.8732034, + "minlon": -74.0127110, + "maxlat": 40.8732666, + "maxlon": -74.0126932 + }, + "nodes": [ + 4205863453, + 6592337663 + ], + "geometry": [ + { "lat": 40.8732034, "lon": -74.0127110 }, + { "lat": 40.8732666, "lon": -74.0126932 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 420626637, + "bounds": { + "minlat": 40.8727529, + "minlon": -74.0128778, + "maxlat": 40.8731559, + "maxlon": -74.0127286 + }, + "nodes": [ + 103214406, + 6592337702 + ], + "geometry": [ + { "lat": 40.8727529, "lon": -74.0128778 }, + { "lat": 40.8731559, "lon": -74.0127286 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes:backward": "left|left|" + } +}, +{ + "type": "way", + "id": 420627056, + "bounds": { + "minlat": 40.7658836, + "minlon": -73.9542439, + "maxlat": 40.7661832, + "maxlon": -73.9535379 + }, + "nodes": [ + 4205892229, + 6670244837, + 42428005 + ], + "geometry": [ + { "lat": 40.7658836, "lon": -73.9535379 }, + { "lat": 40.7661254, "lon": -73.9541117 }, + { "lat": 40.7661832, "lon": -73.9542439 } + ], + "tags": { + "cycleway:right": "shared_lane", + "hgv:backward": "delivery", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lanes:hgv:backward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 71st Street", + "name:ru": "Восточная 71-я стрит", + "oneway": "yes", + "oneway:hgv": "no", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "right", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 420627486, + "bounds": { + "minlat": 40.7141041, + "minlon": -73.9281437, + "maxlat": 40.7141361, + "maxlon": -73.9277814 + }, + "nodes": [ + 42484144, + 5375818018, + 4205919100 + ], + "geometry": [ + { "lat": 40.7141361, "lon": -73.9281437 }, + { "lat": 40.7141229, "lon": -73.9280101 }, + { "lat": 40.7141041, "lon": -73.9277814 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 420627487, + "bounds": { + "minlat": 40.7141361, + "minlon": -73.9287499, + "maxlat": 40.7142089, + "maxlon": -73.9281437 + }, + "nodes": [ + 4205919101, + 5375818523, + 42484144 + ], + "geometry": [ + { "lat": 40.7142089, "lon": -73.9287499 }, + { "lat": 40.7141469, "lon": -73.9282453 }, + { "lat": 40.7141361, "lon": -73.9281437 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 420627488, + "bounds": { + "minlat": 40.7144014, + "minlon": -73.9305759, + "maxlat": 40.7144822, + "maxlon": -73.9294703 + }, + "nodes": [ + 5330321642, + 8842579366, + 8842579374, + 8842579373, + 5330321644 + ], + "geometry": [ + { "lat": 40.7144014, "lon": -73.9294703 }, + { "lat": 40.7144751, "lon": -73.9302403 }, + { "lat": 40.7144822, "lon": -73.9303454 }, + { "lat": 40.7144753, "lon": -73.9304506 }, + { "lat": 40.7144439, "lon": -73.9305759 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Metropolitan Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 420627489, + "bounds": { + "minlat": 40.7142918, + "minlon": -73.9287384, + "maxlat": 40.7143420, + "maxlon": -73.9282073 + }, + "nodes": [ + 1275778384, + 5375818536, + 1275778473 + ], + "geometry": [ + { "lat": 40.7142918, "lon": -73.9282073 }, + { "lat": 40.7143025, "lon": -73.9283207 }, + { "lat": 40.7143420, "lon": -73.9287384 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 420627490, + "bounds": { + "minlat": 40.7142259, + "minlon": -73.9282073, + "maxlat": 40.7142918, + "maxlon": -73.9275097 + }, + "nodes": [ + 4205919102, + 5375818525, + 1275778384 + ], + "geometry": [ + { "lat": 40.7142259, "lon": -73.9275097 }, + { "lat": 40.7142805, "lon": -73.9280874 }, + { "lat": 40.7142918, "lon": -73.9282073 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 420627491, + "bounds": { + "minlat": 40.7139782, + "minlon": -73.9271656, + "maxlat": 40.7140515, + "maxlon": -73.9263023 + }, + "nodes": [ + 9733391628, + 5423609576, + 42484146 + ], + "geometry": [ + { "lat": 40.7140515, "lon": -73.9271656 }, + { "lat": 40.7139876, "lon": -73.9264248 }, + { "lat": 40.7139782, "lon": -73.9263023 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left||", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 420627492, + "bounds": { + "minlat": 40.7139621, + "minlon": -73.9263023, + "maxlat": 40.7139782, + "maxlon": -73.9245207 + }, + "nodes": [ + 42484146, + 5423609578, + 8452108001, + 5515218189, + 12847161673, + 9325509481, + 42474031 + ], + "geometry": [ + { "lat": 40.7139782, "lon": -73.9263023 }, + { "lat": 40.7139767, "lon": -73.9261920 }, + { "lat": 40.7139763, "lon": -73.9260943 }, + { "lat": 40.7139740, "lon": -73.9258418 }, + { "lat": 40.7139707, "lon": -73.9254792 }, + { "lat": 40.7139699, "lon": -73.9253909 }, + { "lat": 40.7139621, "lon": -73.9245207 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 420629927, + "bounds": { + "minlat": 40.7198093, + "minlon": -73.9785586, + "maxlat": 40.7199240, + "maxlon": -73.9782869 + }, + "nodes": [ + 4205946597, + 4205946598 + ], + "geometry": [ + { "lat": 40.7198093, "lon": -73.9782869 }, + { "lat": 40.7199240, "lon": -73.9785586 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through;right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420629930, + "bounds": { + "minlat": 40.7200569, + "minlon": -73.9813453, + "maxlat": 40.7206496, + "maxlon": -73.9793658 + }, + "nodes": [ + 42427358, + 3783146162, + 7115850098, + 4205946599 + ], + "geometry": [ + { "lat": 40.7206496, "lon": -73.9813453 }, + { "lat": 40.7206219, "lon": -73.9812541 }, + { "lat": 40.7201467, "lon": -73.9796718 }, + { "lat": 40.7200569, "lon": -73.9793658 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420629936, + "bounds": { + "minlat": 40.7199240, + "minlon": -73.9787229, + "maxlat": 40.7199869, + "maxlon": -73.9785586 + }, + "nodes": [ + 4205946598, + 5798967015, + 42453613 + ], + "geometry": [ + { "lat": 40.7199240, "lon": -73.9785586 }, + { "lat": 40.7199433, "lon": -73.9786047 }, + { "lat": 40.7199869, "lon": -73.9787229 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through;right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420629940, + "bounds": { + "minlat": 40.7191104, + "minlon": -73.9763322, + "maxlat": 40.7191873, + "maxlon": -73.9759525 + }, + "nodes": [ + 4205946595, + 3783073250, + 3783073218, + 370893396 + ], + "geometry": [ + { "lat": 40.7191104, "lon": -73.9759525 }, + { "lat": 40.7191561, "lon": -73.9761731 }, + { "lat": 40.7191659, "lon": -73.9762207 }, + { "lat": 40.7191873, "lon": -73.9763322 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420629945, + "bounds": { + "minlat": 40.7188470, + "minlon": -73.9750822, + "maxlat": 40.7189791, + "maxlon": -73.9748036 + }, + "nodes": [ + 42423051, + 9181587073, + 370901762, + 9181587074, + 370901760, + 9907942872, + 9181587075, + 9906966841, + 42454391 + ], + "geometry": [ + { "lat": 40.7188470, "lon": -73.9748036 }, + { "lat": 40.7188784, "lon": -73.9748233 }, + { "lat": 40.7189030, "lon": -73.9748426 }, + { "lat": 40.7189271, "lon": -73.9748736 }, + { "lat": 40.7189459, "lon": -73.9749074 }, + { "lat": 40.7189595, "lon": -73.9749419 }, + { "lat": 40.7189708, "lon": -73.9749850 }, + { "lat": 40.7189757, "lon": -73.9750178 }, + { "lat": 40.7189791, "lon": -73.9750822 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 420629950, + "bounds": { + "minlat": 40.7180582, + "minlon": -73.9641115, + "maxlat": 40.7184116, + "maxlon": -73.9637259 + }, + "nodes": [ + 42469492, + 9948156222, + 4205946593 + ], + "geometry": [ + { "lat": 40.7180582, "lon": -73.9641115 }, + { "lat": 40.7181055, "lon": -73.9640599 }, + { "lat": 40.7184116, "lon": -73.9637259 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420629955, + "bounds": { + "minlat": 40.7178025, + "minlon": -73.9643900, + "maxlat": 40.7180582, + "maxlon": -73.9641115 + }, + "nodes": [ + 4205946592, + 9948156223, + 42469492 + ], + "geometry": [ + { "lat": 40.7178025, "lon": -73.9643900 }, + { "lat": 40.7180135, "lon": -73.9641602 }, + { "lat": 40.7180582, "lon": -73.9641115 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420629957, + "bounds": { + "minlat": 40.7190058, + "minlon": -73.9631021, + "maxlat": 40.7192023, + "maxlon": -73.9628939 + }, + "nodes": [ + 4205946594, + 9795044535, + 42469496 + ], + "geometry": [ + { "lat": 40.7190058, "lon": -73.9631021 }, + { "lat": 40.7191535, "lon": -73.9629456 }, + { "lat": 40.7192023, "lon": -73.9628939 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 420629959, + "bounds": { + "minlat": 40.7167389, + "minlon": -73.9655295, + "maxlat": 40.7170107, + "maxlon": -73.9652370 + }, + "nodes": [ + 4205946590, + 9949556535, + 42469485 + ], + "geometry": [ + { "lat": 40.7167389, "lon": -73.9655295 }, + { "lat": 40.7169678, "lon": -73.9652823 }, + { "lat": 40.7170107, "lon": -73.9652370 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420629961, + "bounds": { + "minlat": 40.7170107, + "minlon": -73.9652370, + "maxlat": 40.7172195, + "maxlon": -73.9650196 + }, + "nodes": [ + 42469485, + 9949556534, + 4205946591 + ], + "geometry": [ + { "lat": 40.7170107, "lon": -73.9652370 }, + { "lat": 40.7170603, "lon": -73.9651846 }, + { "lat": 40.7172195, "lon": -73.9650196 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420629963, + "bounds": { + "minlat": 40.7195510, + "minlon": -73.9625160, + "maxlat": 40.7197594, + "maxlon": -73.9622901 + }, + "nodes": [ + 4205946596, + 11163899184, + 6248588429, + 42469499 + ], + "geometry": [ + { "lat": 40.7195510, "lon": -73.9625160 }, + { "lat": 40.7196774, "lon": -73.9623785 }, + { "lat": 40.7197049, "lon": -73.9623486 }, + { "lat": 40.7197594, "lon": -73.9622901 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 420629965, + "bounds": { + "minlat": 40.7175079, + "minlon": -73.9647139, + "maxlat": 40.7178025, + "maxlon": -73.9643900 + }, + "nodes": [ + 42469489, + 9779538079, + 11163899185, + 4205946592 + ], + "geometry": [ + { "lat": 40.7175079, "lon": -73.9647139 }, + { "lat": 40.7175740, "lon": -73.9646411 }, + { "lat": 40.7177451, "lon": -73.9644531 }, + { "lat": 40.7178025, "lon": -73.9643900 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420629967, + "bounds": { + "minlat": 40.7201009, + "minlon": -73.9619282, + "maxlat": 40.7203169, + "maxlon": -73.9616983 + }, + "nodes": [ + 4205946600, + 9794844989, + 42469503 + ], + "geometry": [ + { "lat": 40.7201009, "lon": -73.9619282 }, + { "lat": 40.7202643, "lon": -73.9617542 }, + { "lat": 40.7203169, "lon": -73.9616983 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 420629968, + "bounds": { + "minlat": 40.7186525, + "minlon": -73.9634800, + "maxlat": 40.7190058, + "maxlon": -73.9631021 + }, + "nodes": [ + 42469494, + 9794890512, + 4205946594 + ], + "geometry": [ + { "lat": 40.7186525, "lon": -73.9634800 }, + { "lat": 40.7187039, "lon": -73.9634250 }, + { "lat": 40.7190058, "lon": -73.9631021 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420629973, + "bounds": { + "minlat": 40.7162014, + "minlon": -73.9660716, + "maxlat": 40.7167389, + "maxlon": -73.9655295 + }, + "nodes": [ + 42469478, + 9949550291, + 8997196208, + 4205946590 + ], + "geometry": [ + { "lat": 40.7162014, "lon": -73.9660716 }, + { "lat": 40.7162719, "lon": -73.9660278 }, + { "lat": 40.7163163, "lon": -73.9659842 }, + { "lat": 40.7167389, "lon": -73.9655295 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420629979, + "bounds": { + "minlat": 40.7192023, + "minlon": -73.9628939, + "maxlat": 40.7195510, + "maxlon": -73.9625160 + }, + "nodes": [ + 42469496, + 9795044537, + 4205946596 + ], + "geometry": [ + { "lat": 40.7192023, "lon": -73.9628939 }, + { "lat": 40.7192634, "lon": -73.9628276 }, + { "lat": 40.7195510, "lon": -73.9625160 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420629984, + "bounds": { + "minlat": 40.7184116, + "minlon": -73.9637259, + "maxlat": 40.7186525, + "maxlon": -73.9634800 + }, + "nodes": [ + 4205946593, + 9794890514, + 42469494 + ], + "geometry": [ + { "lat": 40.7184116, "lon": -73.9637259 }, + { "lat": 40.7186049, "lon": -73.9635286 }, + { "lat": 40.7186525, "lon": -73.9634800 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 420629990, + "bounds": { + "minlat": 40.7197594, + "minlon": -73.9622901, + "maxlat": 40.7201009, + "maxlon": -73.9619282 + }, + "nodes": [ + 42469499, + 6248588432, + 4205946600 + ], + "geometry": [ + { "lat": 40.7197594, "lon": -73.9622901 }, + { "lat": 40.7198095, "lon": -73.9622338 }, + { "lat": 40.7201009, "lon": -73.9619282 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420629995, + "bounds": { + "minlat": 40.7172195, + "minlon": -73.9650196, + "maxlat": 40.7175079, + "maxlon": -73.9647139 + }, + "nodes": [ + 4205946591, + 9779538081, + 42469489 + ], + "geometry": [ + { "lat": 40.7172195, "lon": -73.9650196 }, + { "lat": 40.7174466, "lon": -73.9647789 }, + { "lat": 40.7175079, "lon": -73.9647139 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420759711, + "bounds": { + "minlat": 40.7596052, + "minlon": -73.9370559, + "maxlat": 40.7598888, + "maxlon": -73.9367867 + }, + "nodes": [ + 42825868, + 3569402159, + 3569402143 + ], + "geometry": [ + { "lat": 40.7598888, "lon": -73.9367867 }, + { "lat": 40.7598175, "lon": -73.9368540 }, + { "lat": 40.7596052, "lon": -73.9370559 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420772653, + "bounds": { + "minlat": 40.7171351, + "minlon": -74.0130166, + "maxlat": 40.7172557, + "maxlon": -74.0127568 + }, + "nodes": [ + 42431626, + 246858448 + ], + "geometry": [ + { "lat": 40.7171351, "lon": -74.0127568 }, + { "lat": 40.7172557, "lon": -74.0130166 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420772654, + "bounds": { + "minlat": 40.7170322, + "minlon": -74.0130705, + "maxlat": 40.7172557, + "maxlon": -74.0130166 + }, + "nodes": [ + 246858448, + 5813259909, + 9053623216 + ], + "geometry": [ + { "lat": 40.7172557, "lon": -74.0130166 }, + { "lat": 40.7171473, "lon": -74.0130436 }, + { "lat": 40.7170322, "lon": -74.0130705 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420788272, + "bounds": { + "minlat": 40.7064654, + "minlon": -74.0151189, + "maxlat": 40.7067230, + "maxlon": -74.0150797 + }, + "nodes": [ + 42452994, + 4207000220, + 7725157380, + 7725157379, + 4207000226, + 5209084627 + ], + "geometry": [ + { "lat": 40.7064654, "lon": -74.0151189 }, + { "lat": 40.7065358, "lon": -74.0150946 }, + { "lat": 40.7066146, "lon": -74.0150810 }, + { "lat": 40.7066547, "lon": -74.0150797 }, + { "lat": 40.7066882, "lon": -74.0150892 }, + { "lat": 40.7067230, "lon": -74.0151119 } + ], + "tags": { + "destination": "Battery Parking Garage", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 420802027, + "bounds": { + "minlat": 40.7516611, + "minlon": -73.9678463, + "maxlat": 40.7520288, + "maxlon": -73.9676741 + }, + "nodes": [ + 3569749128, + 3569749130, + 10998208705, + 42455932 + ], + "geometry": [ + { "lat": 40.7516611, "lon": -73.9678463 }, + { "lat": 40.7518247, "lon": -73.9677736 }, + { "lat": 40.7519556, "lon": -73.9677167 }, + { "lat": 40.7520288, "lon": -73.9676741 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "no", + "parking:left:restriction": "no_standing", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420802028, + "bounds": { + "minlat": 40.7529937, + "minlon": -73.9661765, + "maxlat": 40.7530717, + "maxlon": -73.9659899 + }, + "nodes": [ + 6090927937, + 3814476691 + ], + "geometry": [ + { "lat": 40.7529937, "lon": -73.9659899 }, + { "lat": 40.7530717, "lon": -73.9661765 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "oneway": "yes", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 420806145, + "bounds": { + "minlat": 40.7615618, + "minlon": -73.9665890, + "maxlat": 40.7621951, + "maxlon": -73.9661278 + }, + "nodes": [ + 4288677093, + 4918486100, + 11336621692, + 6177439759 + ], + "geometry": [ + { "lat": 40.7615618, "lon": -73.9665890 }, + { "lat": 40.7616202, "lon": -73.9665469 }, + { "lat": 40.7621313, "lon": -73.9661743 }, + { "lat": 40.7621951, "lon": -73.9661278 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 420806146, + "bounds": { + "minlat": 40.7575488, + "minlon": -73.9694066, + "maxlat": 40.7577077, + "maxlon": -73.9690254 + }, + "nodes": [ + 4207124945, + 10125255956, + 42436707 + ], + "geometry": [ + { "lat": 40.7575488, "lon": -73.9690254 }, + { "lat": 40.7576503, "lon": -73.9692699 }, + { "lat": 40.7577077, "lon": -73.9694066 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 53rd Street", + "name:ru": "Восточная 53-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420807885, + "bounds": { + "minlat": 40.8516697, + "minlon": -73.9643449, + "maxlat": 40.8519445, + "maxlon": -73.9643020 + }, + "nodes": [ + 1519930694, + 10000920044, + 4204770489 + ], + "geometry": [ + { "lat": 40.8516697, "lon": -73.9643449 }, + { "lat": 40.8517747, "lon": -73.9643285 }, + { "lat": 40.8519445, "lon": -73.9643020 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "oneway": "no", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 420807895, + "bounds": { + "minlat": 40.8511177, + "minlon": -73.9644339, + "maxlat": 40.8516697, + "maxlon": -73.9643449 + }, + "nodes": [ + 4207132435, + 10000920047, + 1519930694 + ], + "geometry": [ + { "lat": 40.8511177, "lon": -73.9644339 }, + { "lat": 40.8516120, "lon": -73.9643542 }, + { "lat": 40.8516697, "lon": -73.9643449 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "oneway": "no", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420809408, + "bounds": { + "minlat": 40.7251101, + "minlon": -74.0100977, + "maxlat": 40.7252865, + "maxlon": -74.0098087 + }, + "nodes": [ + 4207143427, + 12162542944, + 4629486881, + 42440850 + ], + "geometry": [ + { "lat": 40.7251101, "lon": -74.0098087 }, + { "lat": 40.7251926, "lon": -74.0099398 }, + { "lat": 40.7252243, "lon": -74.0099942 }, + { "lat": 40.7252865, "lon": -74.0100977 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "expressway": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420809409, + "bounds": { + "minlat": 40.7245185, + "minlon": -74.0092999, + "maxlat": 40.7247682, + "maxlon": -74.0089482 + }, + "nodes": [ + 4207143426, + 4892579968, + 42436083 + ], + "geometry": [ + { "lat": 40.7245185, "lon": -74.0089482 }, + { "lat": 40.7247095, "lon": -74.0092173 }, + { "lat": 40.7247682, "lon": -74.0092999 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "parking:lane:right": "parallel", + "parking:right": "lane", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420809410, + "bounds": { + "minlat": 40.7251409, + "minlon": -74.0110523, + "maxlat": 40.7251803, + "maxlon": -74.0107032 + }, + "nodes": [ + 9611529611, + 3874650183, + 11659112637 + ], + "geometry": [ + { "lat": 40.7251803, "lon": -74.0110523 }, + { "lat": 40.7251640, "lon": -74.0109085 }, + { "lat": 40.7251409, "lon": -74.0107032 } + ], + "tags": { + "bicycle": "yes", + "change": "yes", + "cycleway:right": "no", + "destination": "Holland Tunnel", + "destination:ref": "I 78", + "destination:street": "Canal Street", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "noref": "yes", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete", + "turn:lanes": "through|through|through", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420809411, + "bounds": { + "minlat": 40.7236607, + "minlon": -74.0084450, + "maxlat": 40.7240259, + "maxlon": -74.0079501 + }, + "nodes": [ + 4142105811, + 4602429333, + 4142105822 + ], + "geometry": [ + { "lat": 40.7240259, "lon": -74.0084450 }, + { "lat": 40.7237248, "lon": -74.0080465 }, + { "lat": 40.7236607, "lon": -74.0079501 } + ], + "tags": { + "bicycle": "yes", + "change": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "noref": "yes", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420809412, + "bounds": { + "minlat": 40.7252865, + "minlon": -74.0104988, + "maxlat": 40.7255591, + "maxlon": -74.0100977 + }, + "nodes": [ + 42440850, + 12162542959, + 4207143432 + ], + "geometry": [ + { "lat": 40.7252865, "lon": -74.0100977 }, + { "lat": 40.7253464, "lon": -74.0101904 }, + { "lat": 40.7255591, "lon": -74.0104988 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420809413, + "bounds": { + "minlat": 40.7247682, + "minlon": -74.0098087, + "maxlat": 40.7251101, + "maxlon": -74.0092999 + }, + "nodes": [ + 42436083, + 4872871132, + 12162542958, + 4142105802, + 4207143427 + ], + "geometry": [ + { "lat": 40.7247682, "lon": -74.0092999 }, + { "lat": 40.7248349, "lon": -74.0093977 }, + { "lat": 40.7250124, "lon": -74.0096559 }, + { "lat": 40.7250610, "lon": -74.0097305 }, + { "lat": 40.7251101, "lon": -74.0098087 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "expressway": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "parking:lane:right": "parallel", + "parking:right": "lane", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420809414, + "bounds": { + "minlat": 40.7234955, + "minlon": -74.0079501, + "maxlat": 40.7236607, + "maxlon": -74.0077224 + }, + "nodes": [ + 4142105822, + 4602429320, + 4629486879 + ], + "geometry": [ + { "lat": 40.7236607, "lon": -74.0079501 }, + { "lat": 40.7235590, "lon": -74.0078126 }, + { "lat": 40.7234955, "lon": -74.0077224 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420809415, + "bounds": { + "minlat": 40.7250648, + "minlon": -74.0104187, + "maxlat": 40.7251105, + "maxlon": -74.0100706 + }, + "nodes": [ + 12461786797, + 12162542951, + 3316533531, + 12162542953, + 42440873 + ], + "geometry": [ + { "lat": 40.7251105, "lon": -74.0104187 }, + { "lat": 40.7250914, "lon": -74.0102397 }, + { "lat": 40.7250811, "lon": -74.0101603 }, + { "lat": 40.7250747, "lon": -74.0101189 }, + { "lat": 40.7250648, "lon": -74.0100706 } + ], + "tags": { + "bicycle": "yes", + "change": "no", + "cycleway:right": "no", + "destination": "Holland Tunnel", + "destination:ref": "I 78", + "destination:street": "Canal Street", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "noref": "yes", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420809416, + "bounds": { + "minlat": 40.7258067, + "minlon": -74.0111865, + "maxlat": 40.7258331, + "maxlon": -74.0109300 + }, + "nodes": [ + 42440854, + 4142073861 + ], + "geometry": [ + { "lat": 40.7258067, "lon": -74.0109300 }, + { "lat": 40.7258331, "lon": -74.0111865 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420809417, + "bounds": { + "minlat": 40.7237633, + "minlon": -74.0089482, + "maxlat": 40.7245185, + "maxlon": -74.0079290 + }, + "nodes": [ + 12417264049, + 4602429322, + 4142105806, + 4142105823, + 42440847, + 4142105815, + 4142105800, + 4207143426 + ], + "geometry": [ + { "lat": 40.7237633, "lon": -74.0079290 }, + { "lat": 40.7238451, "lon": -74.0080333 }, + { "lat": 40.7241793, "lon": -74.0084801 }, + { "lat": 40.7242262, "lon": -74.0085440 }, + { "lat": 40.7243158, "lon": -74.0086711 }, + { "lat": 40.7244196, "lon": -74.0088134 }, + { "lat": 40.7244717, "lon": -74.0088835 }, + { "lat": 40.7245185, "lon": -74.0089482 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "parking:lane:right": "parallel", + "parking:right": "lane", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420809419, + "bounds": { + "minlat": 40.7259079, + "minlon": -74.0075452, + "maxlat": 40.7285996, + "maxlon": -74.0071019 + }, + "nodes": [ + 8429031603, + 8429031602, + 42436359, + 8429031601, + 8429031599, + 42436364, + 8429031600, + 8429031595, + 42436369, + 8429031594, + 11808021331 + ], + "geometry": [ + { "lat": 40.7259079, "lon": -74.0075452 }, + { "lat": 40.7265509, "lon": -74.0074393 }, + { "lat": 40.7266017, "lon": -74.0074309 }, + { "lat": 40.7266720, "lon": -74.0074194 }, + { "lat": 40.7272638, "lon": -74.0073220 }, + { "lat": 40.7273286, "lon": -74.0073112 }, + { "lat": 40.7274038, "lon": -74.0072984 }, + { "lat": 40.7279904, "lon": -74.0072023 }, + { "lat": 40.7280490, "lon": -74.0071926 }, + { "lat": 40.7281228, "lon": -74.0071805 }, + { "lat": 40.7285996, "lon": -74.0071019 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420809420, + "bounds": { + "minlat": 40.7305673, + "minlon": -74.0104166, + "maxlat": 40.7324206, + "maxlon": -74.0102359 + }, + "nodes": [ + 42453442, + 12161966232, + 246877762, + 591454081, + 246876730, + 42452008, + 12161966211, + 5708228060, + 12288258531, + 42436903 + ], + "geometry": [ + { "lat": 40.7305673, "lon": -74.0104166 }, + { "lat": 40.7311500, "lon": -74.0103605 }, + { "lat": 40.7311999, "lon": -74.0103567 }, + { "lat": 40.7312977, "lon": -74.0103462 }, + { "lat": 40.7313804, "lon": -74.0103396 }, + { "lat": 40.7320194, "lon": -74.0102770 }, + { "lat": 40.7322544, "lon": -74.0102518 }, + { "lat": 40.7322995, "lon": -74.0102474 }, + { "lat": 40.7323546, "lon": -74.0102422 }, + { "lat": 40.7324206, "lon": -74.0102359 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "yes", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420809421, + "bounds": { + "minlat": 40.7172557, + "minlon": -74.0130166, + "maxlat": 40.7180101, + "maxlon": -74.0128290 + }, + "nodes": [ + 4207143417, + 246858448 + ], + "geometry": [ + { "lat": 40.7180101, "lon": -74.0128290 }, + { "lat": 40.7172557, "lon": -74.0130166 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "6", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left|left|through|through|through|right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420809425, + "bounds": { + "minlat": 40.7152775, + "minlon": -74.0135224, + "maxlat": 40.7158330, + "maxlon": -74.0133803 + }, + "nodes": [ + 4207143416, + 11292548522, + 246858435 + ], + "geometry": [ + { "lat": 40.7158330, "lon": -74.0133803 }, + { "lat": 40.7153925, "lon": -74.0134919 }, + { "lat": 40.7152775, "lon": -74.0135224 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "6", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left|left|through|through|through|right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420809434, + "bounds": { + "minlat": 40.7298538, + "minlon": -74.0107062, + "maxlat": 40.7305151, + "maxlon": -74.0106424 + }, + "nodes": [ + 4207143439, + 10911890469, + 12161966239, + 246890579 + ], + "geometry": [ + { "lat": 40.7305151, "lon": -74.0106424 }, + { "lat": 40.7304219, "lon": -74.0106507 }, + { "lat": 40.7299599, "lon": -74.0106962 }, + { "lat": 40.7298538, "lon": -74.0107062 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete", + "turn:lanes": "left|||", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420809438, + "bounds": { + "minlat": 40.7291289, + "minlon": -74.0107774, + "maxlat": 40.7294307, + "maxlon": -74.0107499 + }, + "nodes": [ + 4207143437, + 4629486886, + 12162542907 + ], + "geometry": [ + { "lat": 40.7294307, "lon": -74.0107499 }, + { "lat": 40.7292413, "lon": -74.0107669 }, + { "lat": 40.7291289, "lon": -74.0107774 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "turn:lanes": "none|none|none|right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420809439, + "bounds": { + "minlat": 40.7252073, + "minlon": -74.0112903, + "maxlat": 40.7258331, + "maxlon": -74.0111865 + }, + "nodes": [ + 4142073861, + 12162542950, + 246889572 + ], + "geometry": [ + { "lat": 40.7258331, "lon": -74.0111865 }, + { "lat": 40.7254277, "lon": -74.0112530 }, + { "lat": 40.7252073, "lon": -74.0112903 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete", + "turn:lanes": "left|left|||", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420809440, + "bounds": { + "minlat": 40.7147252, + "minlon": -74.0133348, + "maxlat": 40.7152226, + "maxlon": -74.0132124 + }, + "nodes": [ + 4207143415, + 4573041278, + 11292548510, + 42429570 + ], + "geometry": [ + { "lat": 40.7147252, "lon": -74.0133348 }, + { "lat": 40.7149577, "lon": -74.0132777 }, + { "lat": 40.7151101, "lon": -74.0132405 }, + { "lat": 40.7152226, "lon": -74.0132124 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "6", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left|left|through|through|through|through;right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420809441, + "bounds": { + "minlat": 40.7283922, + "minlon": -74.0106251, + "maxlat": 40.7291043, + "maxlon": -74.0105601 + }, + "nodes": [ + 4207143436, + 12162502083 + ], + "geometry": [ + { "lat": 40.7283922, "lon": -74.0106251 }, + { "lat": 40.7291043, "lon": -74.0105601 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left||||", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420809442, + "bounds": { + "minlat": 40.7230061, + "minlon": -74.0117198, + "maxlat": 40.7235721, + "maxlon": -74.0116039 + }, + "nodes": [ + 4207143422, + 246890279 + ], + "geometry": [ + { "lat": 40.7235721, "lon": -74.0116039 }, + { "lat": 40.7230061, "lon": -74.0117198 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420809443, + "bounds": { + "minlat": 40.7258331, + "minlon": -74.0111865, + "maxlat": 40.7265899, + "maxlon": -74.0110728 + }, + "nodes": [ + 4207143435, + 246889362, + 9611529609, + 4142073861 + ], + "geometry": [ + { "lat": 40.7265899, "lon": -74.0110728 }, + { "lat": 40.7259836, "lon": -74.0111617 }, + { "lat": 40.7259023, "lon": -74.0111744 }, + { "lat": 40.7258331, "lon": -74.0111865 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "yes", + "surface": "concrete", + "turn:lanes": "left|left|through|through|through", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420809445, + "bounds": { + "minlat": 40.7297437, + "minlon": -74.0107166, + "maxlat": 40.7298538, + "maxlon": -74.0107062 + }, + "nodes": [ + 246890579, + 12288251772, + 246878875 + ], + "geometry": [ + { "lat": 40.7298538, "lon": -74.0107062 }, + { "lat": 40.7297703, "lon": -74.0107141 }, + { "lat": 40.7297437, "lon": -74.0107166 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420809446, + "bounds": { + "minlat": 40.7235721, + "minlon": -74.0116039, + "maxlat": 40.7252073, + "maxlon": -74.0112903 + }, + "nodes": [ + 246889572, + 246881639, + 9611529612, + 246881975, + 246882084, + 4207143422 + ], + "geometry": [ + { "lat": 40.7252073, "lon": -74.0112903 }, + { "lat": 40.7250996, "lon": -74.0113069 }, + { "lat": 40.7244341, "lon": -74.0114334 }, + { "lat": 40.7244002, "lon": -74.0114399 }, + { "lat": 40.7242113, "lon": -74.0114759 }, + { "lat": 40.7235721, "lon": -74.0116039 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420809448, + "bounds": { + "minlat": 40.7272392, + "minlon": -74.0109844, + "maxlat": 40.7291289, + "maxlon": -74.0107774 + }, + "nodes": [ + 12162542907, + 12162542912, + 12162542928, + 4141593653 + ], + "geometry": [ + { "lat": 40.7291289, "lon": -74.0107774 }, + { "lat": 40.7280465, "lon": -74.0108856 }, + { "lat": 40.7279943, "lon": -74.0108919 }, + { "lat": 40.7272392, "lon": -74.0109844 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "yes", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420810619, + "bounds": { + "minlat": 40.7141733, + "minlon": -74.0063041, + "maxlat": 40.7145386, + "maxlon": -74.0060039 + }, + "nodes": [ + 4207150077, + 5083818852, + 272195271 + ], + "geometry": [ + { "lat": 40.7145386, "lon": -74.0060039 }, + { "lat": 40.7142425, "lon": -74.0062473 }, + { "lat": 40.7141733, "lon": -74.0063041 } + ], + "tags": { + "bus:lanes": "yes|yes|designated", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-18:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left;through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 420810620, + "bounds": { + "minlat": 40.7162939, + "minlon": -74.0045248, + "maxlat": 40.7167984, + "maxlon": -74.0040877 + }, + "nodes": [ + 4207150078, + 42428414, + 8307637697, + 42428411 + ], + "geometry": [ + { "lat": 40.7167984, "lon": -74.0040877 }, + { "lat": 40.7166598, "lon": -74.0042041 }, + { "lat": 40.7163450, "lon": -74.0044795 }, + { "lat": 40.7162939, "lon": -74.0045248 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes:bus:forward": "1", + "maxspeed": "20 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 420810621, + "bounds": { + "minlat": 40.7182780, + "minlon": -74.0070925, + "maxlat": 40.7190677, + "maxlon": -74.0069661 + }, + "nodes": [ + 42453038, + 8312361625, + 42458878, + 8312361644, + 11308790068, + 42448162 + ], + "geometry": [ + { "lat": 40.7190677, "lon": -74.0069661 }, + { "lat": 40.7190008, "lon": -74.0069796 }, + { "lat": 40.7184036, "lon": -74.0070862 }, + { "lat": 40.7183480, "lon": -74.0070925 }, + { "lat": 40.7183070, "lon": -74.0070892 }, + { "lat": 40.7182780, "lon": -74.0070866 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 420810622, + "bounds": { + "minlat": 40.7197847, + "minlon": -74.0068153, + "maxlat": 40.7204530, + "maxlon": -74.0066917 + }, + "nodes": [ + 42434845, + 8304498188, + 8312344402, + 42445702 + ], + "geometry": [ + { "lat": 40.7204530, "lon": -74.0066917 }, + { "lat": 40.7203716, "lon": -74.0067074 }, + { "lat": 40.7198500, "lon": -74.0068009 }, + { "lat": 40.7197847, "lon": -74.0068153 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 420812546, + "bounds": { + "minlat": 40.8550917, + "minlon": -73.9675921, + "maxlat": 40.8551733, + "maxlon": -73.9671501 + }, + "nodes": [ + 4207161475, + 752651544, + 4395042568, + 752650952 + ], + "geometry": [ + { "lat": 40.8550917, "lon": -73.9671501 }, + { "lat": 40.8551284, "lon": -73.9673309 }, + { "lat": 40.8551478, "lon": -73.9674436 }, + { "lat": 40.8551733, "lon": -73.9675921 } + ], + "tags": { + "highway": "unclassified", + "name": "Bridge Plaza North", + "name_1": "Cross Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge", + "tiger:name_base_1": "Cross", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Plz", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420812547, + "bounds": { + "minlat": 40.8553476, + "minlon": -73.9696790, + "maxlat": 40.8560340, + "maxlon": -73.9681906 + }, + "nodes": [ + 103115840, + 11170628877, + 12020552490, + 12020552489, + 12020552488, + 12020552487, + 103115838, + 12020552486, + 4395041123, + 5108595013, + 5108596248, + 5108596244, + 530475529, + 12020552485, + 12020552484, + 4207161476 + ], + "geometry": [ + { "lat": 40.8560340, "lon": -73.9696790 }, + { "lat": 40.8559816, "lon": -73.9695934 }, + { "lat": 40.8559643, "lon": -73.9695624 }, + { "lat": 40.8558630, "lon": -73.9693949 }, + { "lat": 40.8558320, "lon": -73.9693399 }, + { "lat": 40.8558028, "lon": -73.9692860 }, + { "lat": 40.8557723, "lon": -73.9692238 }, + { "lat": 40.8557483, "lon": -73.9691711 }, + { "lat": 40.8557217, "lon": -73.9691119 }, + { "lat": 40.8556576, "lon": -73.9689609 }, + { "lat": 40.8555843, "lon": -73.9687851 }, + { "lat": 40.8555552, "lon": -73.9687132 }, + { "lat": 40.8554635, "lon": -73.9684831 }, + { "lat": 40.8554221, "lon": -73.9683796 }, + { "lat": 40.8553801, "lon": -73.9682754 }, + { "lat": 40.8553476, "lon": -73.9681906 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Bridge Plaza North", + "old_name": "Cross Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 420812548, + "bounds": { + "minlat": 40.8584700, + "minlon": -73.9720947, + "maxlat": 40.8586345, + "maxlon": -73.9720583 + }, + "nodes": [ + 76465373, + 76465374 + ], + "geometry": [ + { "lat": 40.8584700, "lon": -73.9720583 }, + { "lat": 40.8586345, "lon": -73.9720947 } + ], + "tags": { + "alt_name": "Cross Street", + "destination:ref:lanes": "NJ 4 West|NJ 4 West;US 9W North", + "highway": "primary", + "lanes": "2", + "name": "Bridge Plaza North", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cross", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 420812549, + "bounds": { + "minlat": 40.8586345, + "minlon": -73.9723219, + "maxlat": 40.8589045, + "maxlon": -73.9720947 + }, + "nodes": [ + 76465374, + 7925022019, + 7925022046, + 7925022026, + 76465375, + 7925022071, + 12020552506, + 299386523, + 7925022065, + 7298101920 + ], + "geometry": [ + { "lat": 40.8586345, "lon": -73.9720947 }, + { "lat": 40.8586740, "lon": -73.9721084 }, + { "lat": 40.8587144, "lon": -73.9721275 }, + { "lat": 40.8587512, "lon": -73.9721493 }, + { "lat": 40.8587864, "lon": -73.9721761 }, + { "lat": 40.8588116, "lon": -73.9722011 }, + { "lat": 40.8588320, "lon": -73.9722237 }, + { "lat": 40.8588515, "lon": -73.9722465 }, + { "lat": 40.8588780, "lon": -73.9722825 }, + { "lat": 40.8589045, "lon": -73.9723219 } + ], + "tags": { + "alt_name": "Cross Street", + "destination:ref": "NJ 4 West", + "highway": "primary", + "lanes": "2", + "name": "Bridge Plaza North", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cross", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes": "left;through|through" + } +}, +{ + "type": "way", + "id": 420812550, + "bounds": { + "minlat": 40.8565550, + "minlon": -73.9667644, + "maxlat": 40.8567113, + "maxlon": -73.9666694 + }, + "nodes": [ + 7403573336, + 12021371943, + 5449420318, + 5449420320, + 1952059776 + ], + "geometry": [ + { "lat": 40.8565550, "lon": -73.9667644 }, + { "lat": 40.8565755, "lon": -73.9667520 }, + { "lat": 40.8566147, "lon": -73.9667281 }, + { "lat": 40.8566675, "lon": -73.9666960 }, + { "lat": 40.8567113, "lon": -73.9666694 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420812551, + "bounds": { + "minlat": 40.8567113, + "minlon": -73.9666694, + "maxlat": 40.8569809, + "maxlon": -73.9665055 + }, + "nodes": [ + 1952059776, + 12021371942, + 12021371940, + 5108585689, + 5449415085, + 4207161480 + ], + "geometry": [ + { "lat": 40.8567113, "lon": -73.9666694 }, + { "lat": 40.8567987, "lon": -73.9666163 }, + { "lat": 40.8568278, "lon": -73.9665986 }, + { "lat": 40.8568604, "lon": -73.9665788 }, + { "lat": 40.8569262, "lon": -73.9665388 }, + { "lat": 40.8569809, "lon": -73.9665055 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420812552, + "bounds": { + "minlat": 40.8557111, + "minlon": -73.9672749, + "maxlat": 40.8559287, + "maxlon": -73.9671434 + }, + "nodes": [ + 4207161477, + 2565327512 + ], + "geometry": [ + { "lat": 40.8557111, "lon": -73.9672749 }, + { "lat": 40.8559287, "lon": -73.9671434 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 420812553, + "bounds": { + "minlat": 40.8551733, + "minlon": -73.9675921, + "maxlat": 40.8555068, + "maxlon": -73.9673928 + }, + "nodes": [ + 752650952, + 11170628917, + 12020552483, + 4054801530 + ], + "geometry": [ + { "lat": 40.8551733, "lon": -73.9675921 }, + { "lat": 40.8552839, "lon": -73.9675272 }, + { "lat": 40.8553069, "lon": -73.9675145 }, + { "lat": 40.8555068, "lon": -73.9673928 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420812555, + "bounds": { + "minlat": 40.8571100, + "minlon": -73.9743148, + "maxlat": 40.8573087, + "maxlon": -73.9741064 + }, + "nodes": [ + 530754315, + 4207161481 + ], + "geometry": [ + { "lat": 40.8571100, "lon": -73.9743148 }, + { "lat": 40.8573087, "lon": -73.9741064 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "bridge": "yes", + "highway": "trunk", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "layer": "1", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "ref": "US 9W", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420812556, + "bounds": { + "minlat": 40.8573087, + "minlon": -73.9741064, + "maxlat": 40.8575787, + "maxlon": -73.9738230 + }, + "nodes": [ + 4207161481, + 4207161482 + ], + "geometry": [ + { "lat": 40.8573087, "lon": -73.9741064 }, + { "lat": 40.8575787, "lon": -73.9738230 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "bridge": "yes", + "highway": "trunk", + "lanes": "4", + "layer": "1", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "ref": "US 9W", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420812557, + "bounds": { + "minlat": 40.8580759, + "minlon": -73.9733902, + "maxlat": 40.8581898, + "maxlon": -73.9732718 + }, + "nodes": [ + 4207161483, + 13754077742, + 7298101929 + ], + "geometry": [ + { "lat": 40.8581898, "lon": -73.9732718 }, + { "lat": 40.8581429, "lon": -73.9733205 }, + { "lat": 40.8580759, "lon": -73.9733902 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 420812559, + "bounds": { + "minlat": 40.8581898, + "minlon": -73.9732718, + "maxlat": 40.8589837, + "maxlon": -73.9724460 + }, + "nodes": [ + 76463562, + 5740630022, + 5740629813, + 4207161483 + ], + "geometry": [ + { "lat": 40.8589837, "lon": -73.9724460 }, + { "lat": 40.8587682, "lon": -73.9726701 }, + { "lat": 40.8583370, "lon": -73.9731186 }, + { "lat": 40.8581898, "lon": -73.9732718 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420812561, + "bounds": { + "minlat": 40.8598510, + "minlon": -73.9714030, + "maxlat": 40.8599139, + "maxlon": -73.9712620 + }, + "nodes": [ + 6895002520, + 6895002526 + ], + "geometry": [ + { "lat": 40.8599139, "lon": -73.9712620 }, + { "lat": 40.8598510, "lon": -73.9714030 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420814211, + "bounds": { + "minlat": 40.8548197, + "minlon": -73.9678068, + "maxlat": 40.8550957, + "maxlon": -73.9676406 + }, + "nodes": [ + 76465501, + 12020552482, + 4207174912 + ], + "geometry": [ + { "lat": 40.8550957, "lon": -73.9676406 }, + { "lat": 40.8550657, "lon": -73.9676587 }, + { "lat": 40.8548197, "lon": -73.9678068 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "bridge": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "layer": "1", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420814212, + "bounds": { + "minlat": 40.8509760, + "minlon": -73.9683598, + "maxlat": 40.8512550, + "maxlon": -73.9682107 + }, + "nodes": [ + 4207174911, + 10002778616, + 103235788 + ], + "geometry": [ + { "lat": 40.8512550, "lon": -73.9682107 }, + { "lat": 40.8510589, "lon": -73.9683155 }, + { "lat": 40.8509760, "lon": -73.9683598 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Park Avenue", + "oneway": "yes", + "turn:lanes": "left|through;right", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 420814213, + "bounds": { + "minlat": 40.8527247, + "minlon": -73.9671414, + "maxlat": 40.8531570, + "maxlon": -73.9670687 + }, + "nodes": [ + 298809217, + 298809218, + 298806591 + ], + "geometry": [ + { "lat": 40.8527247, "lon": -73.9671414 }, + { "lat": 40.8529760, "lon": -73.9670755 }, + { "lat": 40.8531570, "lon": -73.9670687 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "name": "Park Avenue", + "oneway": "yes", + "turn:lanes": "left;through|through|through;right", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 420815407, + "bounds": { + "minlat": 40.8614518, + "minlon": -73.9879510, + "maxlat": 40.8617390, + "maxlon": -73.9874633 + }, + "nodes": [ + 103224113, + 8073350912, + 4207180640 + ], + "geometry": [ + { "lat": 40.8617390, "lon": -73.9879510 }, + { "lat": 40.8616803, "lon": -73.9878513 }, + { "lat": 40.8614518, "lon": -73.9874633 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "lanes:backward": "2", + "name": "Fort Lee Road", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 420815408, + "bounds": { + "minlat": 40.8617390, + "minlon": -73.9882684, + "maxlat": 40.8619285, + "maxlon": -73.9879510 + }, + "nodes": [ + 4207180641, + 103224113 + ], + "geometry": [ + { "lat": 40.8619285, "lon": -73.9882684 }, + { "lat": 40.8617390, "lon": -73.9879510 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "lanes:forward": "2", + "name": "Fort Lee Road", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 420815409, + "bounds": { + "minlat": 40.8619285, + "minlon": -73.9923040, + "maxlat": 40.8641930, + "maxlon": -73.9882684 + }, + "nodes": [ + 103282420, + 6124217246, + 5721683931, + 103256836, + 8219511351, + 10117799066, + 103141304, + 6106259285, + 6106255881, + 103282424, + 3001698951, + 6545391679, + 3001698950, + 6126762883, + 6126762863, + 6137202418, + 4207180641 + ], + "geometry": [ + { "lat": 40.8641930, "lon": -73.9923040 }, + { "lat": 40.8639843, "lon": -73.9918290 }, + { "lat": 40.8638872, "lon": -73.9916009 }, + { "lat": 40.8638533, "lon": -73.9915326 }, + { "lat": 40.8636028, "lon": -73.9910864 }, + { "lat": 40.8632354, "lon": -73.9904711 }, + { "lat": 40.8632066, "lon": -73.9904175 }, + { "lat": 40.8630518, "lon": -73.9901361 }, + { "lat": 40.8628832, "lon": -73.9898511 }, + { "lat": 40.8626794, "lon": -73.9895107 }, + { "lat": 40.8625877, "lon": -73.9893460 }, + { "lat": 40.8622082, "lon": -73.9887377 }, + { "lat": 40.8621776, "lon": -73.9886847 }, + { "lat": 40.8620469, "lon": -73.9884668 }, + { "lat": 40.8620102, "lon": -73.9884058 }, + { "lat": 40.8619822, "lon": -73.9883583 }, + { "lat": 40.8619285, "lon": -73.9882684 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Fort Lee Road", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 420815410, + "bounds": { + "minlat": 40.8504903, + "minlon": -74.0014106, + "maxlat": 40.8508174, + "maxlon": -74.0012305 + }, + "nodes": [ + 103296613, + 5960556949, + 103119435 + ], + "geometry": [ + { "lat": 40.8508174, "lon": -74.0012305 }, + { "lat": 40.8507300, "lon": -74.0012786 }, + { "lat": 40.8504903, "lon": -74.0014106 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 420815411, + "bounds": { + "minlat": 40.8502167, + "minlon": -74.0015677, + "maxlat": 40.8504903, + "maxlon": -74.0014106 + }, + "nodes": [ + 103119435, + 103296615 + ], + "geometry": [ + { "lat": 40.8504903, "lon": -74.0014106 }, + { "lat": 40.8502167, "lon": -74.0015677 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 420815969, + "bounds": { + "minlat": 40.8503336, + "minlon": -74.0014106, + "maxlat": 40.8504903, + "maxlon": -74.0011451 + }, + "nodes": [ + 4207183403, + 103119435 + ], + "geometry": [ + { "lat": 40.8503336, "lon": -74.0011451 }, + { "lat": 40.8504903, "lon": -74.0014106 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "name": "West Central Boulevard", + "old_ref": "CR 54", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 420817628, + "bounds": { + "minlat": 40.8652480, + "minlon": -73.9953902, + "maxlat": 40.8653872, + "maxlon": -73.9949923 + }, + "nodes": [ + 298782401, + 4207193768 + ], + "geometry": [ + { "lat": 40.8653872, "lon": -73.9953902 }, + { "lat": 40.8652480, "lon": -73.9949923 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "secondary", + "name": "Fort Lee Road", + "old_ref": "CR 12", + "ref": "CR 56", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 420817629, + "bounds": { + "minlat": 40.8653872, + "minlon": -73.9960311, + "maxlat": 40.8656161, + "maxlon": -73.9953902 + }, + "nodes": [ + 4207193769, + 4472851361, + 298782401 + ], + "geometry": [ + { "lat": 40.8656161, "lon": -73.9960311 }, + { "lat": 40.8654301, "lon": -73.9955095 }, + { "lat": 40.8653872, "lon": -73.9953902 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Fort Lee Road", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420817630, + "bounds": { + "minlat": 40.8656161, + "minlon": -73.9980398, + "maxlat": 40.8663983, + "maxlon": -73.9960311 + }, + "nodes": [ + 103282409, + 10940838069, + 10940838048, + 103282411, + 10940838072, + 10940838076, + 10940838075, + 10940838055, + 4207193769 + ], + "geometry": [ + { "lat": 40.8663983, "lon": -73.9980398 }, + { "lat": 40.8661432, "lon": -73.9973760 }, + { "lat": 40.8660404, "lon": -73.9971172 }, + { "lat": 40.8659378, "lon": -73.9968595 }, + { "lat": 40.8658363, "lon": -73.9966037 }, + { "lat": 40.8657363, "lon": -73.9963512 }, + { "lat": 40.8656849, "lon": -73.9962196 }, + { "lat": 40.8656494, "lon": -73.9961227 }, + { "lat": 40.8656161, "lon": -73.9960311 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Fort Lee Road", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 420817631, + "bounds": { + "minlat": 40.8637996, + "minlon": -73.9926641, + "maxlat": 40.8641930, + "maxlon": -73.9923040 + }, + "nodes": [ + 103282420, + 6126762885, + 4207193766 + ], + "geometry": [ + { "lat": 40.8641930, "lon": -73.9923040 }, + { "lat": 40.8639062, "lon": -73.9925665 }, + { "lat": 40.8637996, "lon": -73.9926641 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 420817632, + "bounds": { + "minlat": 40.8641930, + "minlon": -73.9923040, + "maxlat": 40.8647263, + "maxlon": -73.9918226 + }, + "nodes": [ + 4207193767, + 5721683930, + 6124217248, + 6124217482, + 103282420 + ], + "geometry": [ + { "lat": 40.8647263, "lon": -73.9918226 }, + { "lat": 40.8645968, "lon": -73.9919395 }, + { "lat": 40.8645493, "lon": -73.9919823 }, + { "lat": 40.8644444, "lon": -73.9920770 }, + { "lat": 40.8641930, "lon": -73.9923040 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 420817633, + "bounds": { + "minlat": 40.8628261, + "minlon": -73.9935546, + "maxlat": 40.8637996, + "maxlon": -73.9926641 + }, + "nodes": [ + 4207193766, + 6126762886, + 103235801, + 103296576 + ], + "geometry": [ + { "lat": 40.8637996, "lon": -73.9926641 }, + { "lat": 40.8637149, "lon": -73.9927416 }, + { "lat": 40.8635070, "lon": -73.9929320 }, + { "lat": 40.8628261, "lon": -73.9935546 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 420819362, + "bounds": { + "minlat": 40.8479430, + "minlon": -74.0137609, + "maxlat": 40.8482778, + "maxlon": -74.0135631 + }, + "nodes": [ + 4207205274, + 294998195, + 103161052 + ], + "geometry": [ + { "lat": 40.8482778, "lon": -74.0135631 }, + { "lat": 40.8480715, "lon": -74.0136866 }, + { "lat": 40.8479430, "lon": -74.0137609 } + ], + "tags": { + "Bergen_County_database_ref": "S-39", + "HFCS": "Urban Local", + "NJDOT_SRI": "020000333", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Challenger Road", + "ref": "CR S-39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Challenger", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 420822177, + "bounds": { + "minlat": 40.8331454, + "minlon": -74.0111652, + "maxlat": 40.8332429, + "maxlon": -74.0106950 + }, + "nodes": [ + 4207232346, + 12016315230, + 12016315231, + 12016315232, + 695054580 + ], + "geometry": [ + { "lat": 40.8331454, "lon": -74.0106950 }, + { "lat": 40.8331797, "lon": -74.0108317 }, + { "lat": 40.8332053, "lon": -74.0109481 }, + { "lat": 40.8332241, "lon": -74.0110503 }, + { "lat": 40.8332429, "lon": -74.0111652 } + ], + "tags": { + "Bergen_County_database_ref": "17", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020001241", + "highway": "secondary", + "name": "Hendricks Causeway", + "old_ref": "CR 17", + "ref": "CR 124", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hendricks", + "tiger:name_type": "Cswy", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 420822178, + "bounds": { + "minlat": 40.8330546, + "minlon": -74.0103307, + "maxlat": 40.8330602, + "maxlon": -74.0101635 + }, + "nodes": [ + 695054577, + 12016315238, + 695054578 + ], + "geometry": [ + { "lat": 40.8330546, "lon": -74.0101635 }, + { "lat": 40.8330577, "lon": -74.0102983 }, + { "lat": 40.8330602, "lon": -74.0103307 } + ], + "tags": { + "Bergen_County_database_ref": "17", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020001241", + "highway": "secondary", + "name": "Hendricks Causeway", + "old_ref": "CR 17", + "ref": "CR 124", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hendricks", + "tiger:name_type": "Cswy", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 420822179, + "bounds": { + "minlat": 40.8340757, + "minlon": -74.0094786, + "maxlat": 40.8343919, + "maxlon": -74.0091689 + }, + "nodes": [ + 9694666246, + 7931085802, + 695054599 + ], + "geometry": [ + { "lat": 40.8340757, "lon": -74.0094786 }, + { "lat": 40.8341666, "lon": -74.0093895 }, + { "lat": 40.8343919, "lon": -74.0091689 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "maxspeed": "40 mph", + "name": "South Broad Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_base_3": "Broad", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Ave", + "tiger:name_type_3": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657", + "turn:lanes": "through|left;through|through" + } +}, +{ + "type": "way", + "id": 420822180, + "bounds": { + "minlat": 40.8335019, + "minlon": -74.0100438, + "maxlat": 40.8340757, + "maxlon": -74.0094786 + }, + "nodes": [ + 103209178, + 12016315221, + 12016147273, + 12016315222, + 9694666246 + ], + "geometry": [ + { "lat": 40.8335019, "lon": -74.0100438 }, + { "lat": 40.8335285, "lon": -74.0100231 }, + { "lat": 40.8335593, "lon": -74.0099966 }, + { "lat": 40.8335817, "lon": -74.0099771 }, + { "lat": 40.8340757, "lon": -74.0094786 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "40 mph", + "name": "South Broad Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_base_3": "Broad", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Ave", + "tiger:name_type_3": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 420822181, + "bounds": { + "minlat": 40.8320466, + "minlon": -74.0101635, + "maxlat": 40.8330546, + "maxlon": -74.0100826 + }, + "nodes": [ + 4207232345, + 8414839549, + 11462946783, + 12016315235, + 9909584478, + 695054577 + ], + "geometry": [ + { "lat": 40.8320466, "lon": -74.0100826 }, + { "lat": 40.8321544, "lon": -74.0100907 }, + { "lat": 40.8325256, "lon": -74.0101187 }, + { "lat": 40.8329071, "lon": -74.0101497 }, + { "lat": 40.8329485, "lon": -74.0101531 }, + { "lat": 40.8330546, "lon": -74.0101635 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "maxspeed": "40 mph", + "name": "South Broad Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_base_3": "Broad", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Ave", + "tiger:name_type_3": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420822182, + "bounds": { + "minlat": 40.8320383, + "minlon": -74.0102882, + "maxlat": 40.8323176, + "maxlon": -74.0102645 + }, + "nodes": [ + 695054697, + 752204775 + ], + "geometry": [ + { "lat": 40.8323176, "lon": -74.0102882 }, + { "lat": 40.8320383, "lon": -74.0102645 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "maxspeed": "40 mph", + "name": "South Broad Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_base_3": "Broad", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Ave", + "tiger:name_type_3": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420822183, + "bounds": { + "minlat": 40.8323176, + "minlon": -74.0103307, + "maxlat": 40.8330602, + "maxlon": -74.0102882 + }, + "nodes": [ + 695054578, + 9909584479, + 752204776, + 695054697 + ], + "geometry": [ + { "lat": 40.8330602, "lon": -74.0103307 }, + { "lat": 40.8329546, "lon": -74.0103305 }, + { "lat": 40.8327045, "lon": -74.0103111 }, + { "lat": 40.8323176, "lon": -74.0102882 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "South Broad Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_base_3": "Broad", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Ave", + "tiger:name_type_3": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420822184, + "bounds": { + "minlat": 40.8330546, + "minlon": -74.0101665, + "maxlat": 40.8335019, + "maxlon": -74.0100438 + }, + "nodes": [ + 695054577, + 12016315226, + 695054692, + 12016315225, + 12016315224, + 12016315223, + 695054693, + 12016315218, + 12016315219, + 12016315220, + 103209178 + ], + "geometry": [ + { "lat": 40.8330546, "lon": -74.0101635 }, + { "lat": 40.8331329, "lon": -74.0101665 }, + { "lat": 40.8331833, "lon": -74.0101661 }, + { "lat": 40.8332191, "lon": -74.0101642 }, + { "lat": 40.8332592, "lon": -74.0101585 }, + { "lat": 40.8333005, "lon": -74.0101491 }, + { "lat": 40.8333460, "lon": -74.0101368 }, + { "lat": 40.8333876, "lon": -74.0101182 }, + { "lat": 40.8334239, "lon": -74.0100977 }, + { "lat": 40.8334611, "lon": -74.0100732 }, + { "lat": 40.8335019, "lon": -74.0100438 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "maxspeed": "40 mph", + "name": "South Broad Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_base_3": "Broad", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Ave", + "tiger:name_type_3": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420822676, + "bounds": { + "minlat": 40.8388706, + "minlon": -74.0047012, + "maxlat": 40.8397763, + "maxlon": -74.0039030 + }, + "nodes": [ + 103156988, + 12016147290, + 12016147291, + 12016147289, + 103206976, + 12016147288, + 103206966, + 12016147284, + 12016147283, + 12016147282, + 4207235375 + ], + "geometry": [ + { "lat": 40.8397763, "lon": -74.0039030 }, + { "lat": 40.8397200, "lon": -74.0039462 }, + { "lat": 40.8396905, "lon": -74.0039701 }, + { "lat": 40.8393278, "lon": -74.0042643 }, + { "lat": 40.8392751, "lon": -74.0043102 }, + { "lat": 40.8392319, "lon": -74.0043489 }, + { "lat": 40.8391930, "lon": -74.0043840 }, + { "lat": 40.8391706, "lon": -74.0044047 }, + { "lat": 40.8391362, "lon": -74.0044368 }, + { "lat": 40.8390819, "lon": -74.0044890 }, + { "lat": 40.8388706, "lon": -74.0047012 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "destination:ref:lanes:backward": "|NJ 5", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "35 mph", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21:A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657", + "turn:lanes:backward": "|slight_right;right" + } +}, +{ + "type": "way", + "id": 420822690, + "bounds": { + "minlat": 40.8371183, + "minlon": -74.0064640, + "maxlat": 40.8388706, + "maxlon": -74.0047012 + }, + "nodes": [ + 4207235375, + 103224079, + 12016147279, + 7094787516, + 7651977478, + 7094787515, + 7094787505 + ], + "geometry": [ + { "lat": 40.8388706, "lon": -74.0047012 }, + { "lat": 40.8386435, "lon": -74.0049305 }, + { "lat": 40.8385949, "lon": -74.0049790 }, + { "lat": 40.8384308, "lon": -74.0051430 }, + { "lat": 40.8382693, "lon": -74.0053047 }, + { "lat": 40.8381132, "lon": -74.0054633 }, + { "lat": 40.8371183, "lon": -74.0064640 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "35 mph", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21:A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 420834168, + "bounds": { + "minlat": 40.7428022, + "minlon": -73.9150804, + "maxlat": 40.7428299, + "maxlon": -73.9149659 + }, + "nodes": [ + 276207581, + 9986789928, + 3718567902 + ], + "geometry": [ + { "lat": 40.7428022, "lon": -73.9149659 }, + { "lat": 40.7428243, "lon": -73.9150544 }, + { "lat": 40.7428299, "lon": -73.9150804 } + ], + "tags": { + "access": "permissive", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle": "permissive", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834170, + "bounds": { + "minlat": 40.7424387, + "minlon": -73.9132255, + "maxlat": 40.7424749, + "maxlon": -73.9129288 + }, + "nodes": [ + 4207308765, + 9986759212, + 2844418533 + ], + "geometry": [ + { "lat": 40.7424749, "lon": -73.9132255 }, + { "lat": 40.7424520, "lon": -73.9130390 }, + { "lat": 40.7424387, "lon": -73.9129288 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834172, + "bounds": { + "minlat": 40.7419256, + "minlon": -73.9088749, + "maxlat": 40.7420871, + "maxlon": -73.9074851 + }, + "nodes": [ + 42908315, + 9986759190, + 4207308762 + ], + "geometry": [ + { "lat": 40.7419256, "lon": -73.9074851 }, + { "lat": 40.7419408, "lon": -73.9076131 }, + { "lat": 40.7420871, "lon": -73.9088749 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834174, + "bounds": { + "minlat": 40.7417622, + "minlon": -73.9072043, + "maxlat": 40.7418929, + "maxlon": -73.9061001 + }, + "nodes": [ + 4207308758, + 4207308760 + ], + "geometry": [ + { "lat": 40.7417622, "lon": -73.9061001 }, + { "lat": 40.7418929, "lon": -73.9072043 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834176, + "bounds": { + "minlat": 40.7422533, + "minlon": -73.9129288, + "maxlat": 40.7424387, + "maxlon": -73.9114029 + }, + "nodes": [ + 2844418533, + 9986759210, + 4207308763 + ], + "geometry": [ + { "lat": 40.7424387, "lon": -73.9129288 }, + { "lat": 40.7424167, "lon": -73.9127431 }, + { "lat": 40.7422533, "lon": -73.9114029 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834179, + "bounds": { + "minlat": 40.7425627, + "minlon": -73.9146458, + "maxlat": 40.7427600, + "maxlon": -73.9128690 + }, + "nodes": [ + 2844418535, + 9986759213, + 4207308767 + ], + "geometry": [ + { "lat": 40.7425627, "lon": -73.9128690 }, + { "lat": 40.7425744, "lon": -73.9129775 }, + { "lat": 40.7427600, "lon": -73.9146458 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834186, + "bounds": { + "minlat": 40.7417979, + "minlon": -73.9080971, + "maxlat": 40.7418639, + "maxlon": -73.9075226 + }, + "nodes": [ + 4207308759, + 9986759189, + 597414826 + ], + "geometry": [ + { "lat": 40.7418639, "lon": -73.9080971 }, + { "lat": 40.7418118, "lon": -73.9076421 }, + { "lat": 40.7417979, "lon": -73.9075226 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834203, + "bounds": { + "minlat": 40.7418639, + "minlon": -73.9092590, + "maxlat": 40.7420010, + "maxlon": -73.9080971 + }, + "nodes": [ + 2807734605, + 11694707632, + 4207308759 + ], + "geometry": [ + { "lat": 40.7420010, "lon": -73.9092590 }, + { "lat": 40.7419874, "lon": -73.9091441 }, + { "lat": 40.7418639, "lon": -73.9080971 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834205, + "bounds": { + "minlat": 40.7425076, + "minlon": -73.9128690, + "maxlat": 40.7425627, + "maxlon": -73.9123946 + }, + "nodes": [ + 4207308766, + 9986759207, + 2844418535 + ], + "geometry": [ + { "lat": 40.7425076, "lon": -73.9123946 }, + { "lat": 40.7425463, "lon": -73.9127172 }, + { "lat": 40.7425627, "lon": -73.9128690 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834209, + "bounds": { + "minlat": 40.7423401, + "minlon": -73.9123946, + "maxlat": 40.7425076, + "maxlon": -73.9110353 + }, + "nodes": [ + 2807735984, + 9986759195, + 4207308766 + ], + "geometry": [ + { "lat": 40.7423401, "lon": -73.9110353 }, + { "lat": 40.7423535, "lon": -73.9111529 }, + { "lat": 40.7425076, "lon": -73.9123946 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834217, + "bounds": { + "minlat": 40.7420871, + "minlon": -73.9092318, + "maxlat": 40.7421279, + "maxlon": -73.9088749 + }, + "nodes": [ + 4207308762, + 11694707630, + 2807734606 + ], + "geometry": [ + { "lat": 40.7420871, "lon": -73.9088749 }, + { "lat": 40.7421143, "lon": -73.9091131 }, + { "lat": 40.7421279, "lon": -73.9092318 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834219, + "bounds": { + "minlat": 40.7420010, + "minlon": -73.9095917, + "maxlat": 40.7420399, + "maxlon": -73.9092590 + }, + "nodes": [ + 4207308761, + 11694707631, + 2807734605 + ], + "geometry": [ + { "lat": 40.7420399, "lon": -73.9095917 }, + { "lat": 40.7420135, "lon": -73.9093662 }, + { "lat": 40.7420010, "lon": -73.9092590 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834221, + "bounds": { + "minlat": 40.7422990, + "minlon": -73.9110353, + "maxlat": 40.7423401, + "maxlon": -73.9106868 + }, + "nodes": [ + 7739331836, + 9986759200, + 2807735984 + ], + "geometry": [ + { "lat": 40.7422990, "lon": -73.9106868 }, + { "lat": 40.7423288, "lon": -73.9109401 }, + { "lat": 40.7423401, "lon": -73.9110353 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834225, + "bounds": { + "minlat": 40.7421279, + "minlon": -73.9106868, + "maxlat": 40.7422990, + "maxlon": -73.9092318 + }, + "nodes": [ + 2807734606, + 11694707629, + 7739331836 + ], + "geometry": [ + { "lat": 40.7421279, "lon": -73.9092318 }, + { "lat": 40.7421402, "lon": -73.9093364 }, + { "lat": 40.7422990, "lon": -73.9106868 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834231, + "bounds": { + "minlat": 40.7422133, + "minlon": -73.9114029, + "maxlat": 40.7422533, + "maxlon": -73.9110621 + }, + "nodes": [ + 4207308763, + 9986759194, + 276299108 + ], + "geometry": [ + { "lat": 40.7422533, "lon": -73.9114029 }, + { "lat": 40.7422256, "lon": -73.9111749 }, + { "lat": 40.7422133, "lon": -73.9110621 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420834255, + "bounds": { + "minlat": 40.7414547, + "minlon": -73.9075226, + "maxlat": 40.7417979, + "maxlon": -73.9046084 + }, + "nodes": [ + 597414826, + 9986759184, + 597414712, + 9986759175, + 597414825 + ], + "geometry": [ + { "lat": 40.7417979, "lon": -73.9075226 }, + { "lat": 40.7417850, "lon": -73.9074147 }, + { "lat": 40.7416806, "lon": -73.9065313 }, + { "lat": 40.7414683, "lon": -73.9047384 }, + { "lat": 40.7414547, "lon": -73.9046084 } + ], + "tags": { + "bicycle": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 420863269, + "bounds": { + "minlat": 40.8668062, + "minlon": -73.9309850, + "maxlat": 40.8668739, + "maxlon": -73.9309132 + }, + "nodes": [ + 1763787328, + 42425780 + ], + "geometry": [ + { "lat": 40.8668062, "lon": -73.9309132 }, + { "lat": 40.8668739, "lon": -73.9309850 } + ], + "tags": { + "destination": "Henry Hudson Bridge;Bronx", + "destination:ref": "NY 9A North", + "hgv": "destination", + "highway": "primary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420863270, + "bounds": { + "minlat": 40.8666798, + "minlon": -73.9309132, + "maxlat": 40.8668062, + "maxlon": -73.9307312 + }, + "nodes": [ + 4207641230, + 374466911, + 1763787328 + ], + "geometry": [ + { "lat": 40.8666798, "lon": -73.9307312 }, + { "lat": 40.8667247, "lon": -73.9307902 }, + { "lat": 40.8668062, "lon": -73.9309132 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "turn:lanes": "left|through;right" + } +}, +{ + "type": "way", + "id": 420863271, + "bounds": { + "minlat": 40.8664448, + "minlon": -73.9206120, + "maxlat": 40.8667590, + "maxlon": -73.9204108 + }, + "nodes": [ + 4207641229, + 8701943622, + 9561420935, + 42431242 + ], + "geometry": [ + { "lat": 40.8664448, "lon": -73.9204108 }, + { "lat": 40.8665723, "lon": -73.9204924 }, + { "lat": 40.8666878, "lon": -73.9205663 }, + { "lat": 40.8667590, "lon": -73.9206120 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "name": "West 207th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420863272, + "bounds": { + "minlat": 40.8661311, + "minlon": -73.9204108, + "maxlat": 40.8664448, + "maxlon": -73.9202099 + }, + "nodes": [ + 4207641228, + 4207641229 + ], + "geometry": [ + { "lat": 40.8661311, "lon": -73.9202099 }, + { "lat": 40.8664448, "lon": -73.9204108 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "name": "West 207th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420863273, + "bounds": { + "minlat": 40.8657970, + "minlon": -73.9202099, + "maxlat": 40.8661311, + "maxlon": -73.9199960 + }, + "nodes": [ + 42427870, + 9561420933, + 4207641228 + ], + "geometry": [ + { "lat": 40.8657970, "lon": -73.9199960 }, + { "lat": 40.8659033, "lon": -73.9200640 }, + { "lat": 40.8661311, "lon": -73.9202099 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "name": "West 207th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420863274, + "bounds": { + "minlat": 40.8667590, + "minlon": -73.9208274, + "maxlat": 40.8670932, + "maxlon": -73.9206120 + }, + "nodes": [ + 42431242, + 9561420937, + 4207641231 + ], + "geometry": [ + { "lat": 40.8667590, "lon": -73.9206120 }, + { "lat": 40.8668436, "lon": -73.9206665 }, + { "lat": 40.8670932, "lon": -73.9208274 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "name": "West 207th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420863275, + "bounds": { + "minlat": 40.8654878, + "minlon": -73.9199960, + "maxlat": 40.8657970, + "maxlon": -73.9197976 + }, + "nodes": [ + 42427870, + 9561420930, + 4207641227 + ], + "geometry": [ + { "lat": 40.8657970, "lon": -73.9199960 }, + { "lat": 40.8657043, "lon": -73.9199365 }, + { "lat": 40.8654878, "lon": -73.9197976 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "name": "West 207th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 420871053, + "bounds": { + "minlat": 40.7966814, + "minlon": -73.9349120, + "maxlat": 40.7971446, + "maxlon": -73.9345760 + }, + "nodes": [ + 42449843, + 4980851582, + 9372214665, + 9372214668, + 5748388923, + 4207953793 + ], + "geometry": [ + { "lat": 40.7966814, "lon": -73.9349120 }, + { "lat": 40.7967414, "lon": -73.9348685 }, + { "lat": 40.7968018, "lon": -73.9348246 }, + { "lat": 40.7968968, "lon": -73.9347567 }, + { "lat": 40.7969940, "lon": -73.9346852 }, + { "lat": 40.7971446, "lon": -73.9345760 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420871055, + "bounds": { + "minlat": 40.7995598, + "minlon": -73.9359116, + "maxlat": 40.7997499, + "maxlon": -73.9357695 + }, + "nodes": [ + 4207669597, + 7927319034, + 42443092 + ], + "geometry": [ + { "lat": 40.7997499, "lon": -73.9357695 }, + { "lat": 40.7996399, "lon": -73.9358521 }, + { "lat": 40.7995598, "lon": -73.9359116 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|through||", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420871058, + "bounds": { + "minlat": 40.7983076, + "minlon": -73.9368206, + "maxlat": 40.7985458, + "maxlon": -73.9366495 + }, + "nodes": [ + 4207669596, + 5482291280, + 10166326177, + 42439497 + ], + "geometry": [ + { "lat": 40.7985458, "lon": -73.9366495 }, + { "lat": 40.7985168, "lon": -73.9366702 }, + { "lat": 40.7983682, "lon": -73.9367771 }, + { "lat": 40.7983076, "lon": -73.9368206 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420871059, + "bounds": { + "minlat": 40.7970162, + "minlon": -73.9377697, + "maxlat": 40.7974567, + "maxlon": -73.9374499 + }, + "nodes": [ + 4207669594, + 8750047671, + 10170834268, + 42443085 + ], + "geometry": [ + { "lat": 40.7974567, "lon": -73.9374499 }, + { "lat": 40.7971939, "lon": -73.9376370 }, + { "lat": 40.7971077, "lon": -73.9377012 }, + { "lat": 40.7970162, "lon": -73.9377697 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420871062, + "bounds": { + "minlat": 40.7989421, + "minlon": -73.9363574, + "maxlat": 40.7995598, + "maxlon": -73.9359116 + }, + "nodes": [ + 42443092, + 7927319024, + 8796934784, + 42435234 + ], + "geometry": [ + { "lat": 40.7995598, "lon": -73.9359116 }, + { "lat": 40.7995140, "lon": -73.9359431 }, + { "lat": 40.7989984, "lon": -73.9363162 }, + { "lat": 40.7989421, "lon": -73.9363574 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "turn:lanes": "through|through||", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420871065, + "bounds": { + "minlat": 40.7976795, + "minlon": -73.9372797, + "maxlat": 40.7983076, + "maxlon": -73.9368206 + }, + "nodes": [ + 42439497, + 10166326173, + 10170834278, + 42443088 + ], + "geometry": [ + { "lat": 40.7983076, "lon": -73.9368206 }, + { "lat": 40.7982540, "lon": -73.9368570 }, + { "lat": 40.7977422, "lon": -73.9372335 }, + { "lat": 40.7976795, "lon": -73.9372797 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "through|through|none|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420871070, + "bounds": { + "minlat": 40.8020916, + "minlon": -73.9340754, + "maxlat": 40.8027638, + "maxlon": -73.9335768 + }, + "nodes": [ + 42443116, + 4980799122, + 6139477281, + 7925258574, + 3786728678 + ], + "geometry": [ + { "lat": 40.8027638, "lon": -73.9335768 }, + { "lat": 40.8026677, "lon": -73.9336481 }, + { "lat": 40.8024592, "lon": -73.9338027 }, + { "lat": 40.8021728, "lon": -73.9340151 }, + { "lat": 40.8020916, "lon": -73.9340754 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872176, + "bounds": { + "minlat": 40.7330678, + "minlon": -73.9812979, + "maxlat": 40.7332587, + "maxlon": -73.9811531 + }, + "nodes": [ + 4207683792, + 4298757081, + 42446889 + ], + "geometry": [ + { "lat": 40.7330678, "lon": -73.9812979 }, + { "lat": 40.7331981, "lon": -73.9811985 }, + { "lat": 40.7332587, "lon": -73.9811531 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420872177, + "bounds": { + "minlat": 40.7454815, + "minlon": -73.9722711, + "maxlat": 40.7456883, + "maxlon": -73.9721236 + }, + "nodes": [ + 3948577931, + 8838680408, + 10170620785, + 42422899 + ], + "geometry": [ + { "lat": 40.7454815, "lon": -73.9722711 }, + { "lat": 40.7454993, "lon": -73.9722576 }, + { "lat": 40.7456251, "lon": -73.9721672 }, + { "lat": 40.7456883, "lon": -73.9721236 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420872179, + "bounds": { + "minlat": 40.7363833, + "minlon": -73.9789173, + "maxlat": 40.7368956, + "maxlon": -73.9785412 + }, + "nodes": [ + 4207683794, + 3601295745, + 42448707 + ], + "geometry": [ + { "lat": 40.7363833, "lon": -73.9789173 }, + { "lat": 40.7367975, "lon": -73.9786108 }, + { "lat": 40.7368956, "lon": -73.9785412 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420872180, + "bounds": { + "minlat": 40.7313525, + "minlon": -73.9825607, + "maxlat": 40.7318467, + "maxlon": -73.9821960 + }, + "nodes": [ + 42440743, + 4161568334, + 8838881844 + ], + "geometry": [ + { "lat": 40.7313525, "lon": -73.9825607 }, + { "lat": 40.7314191, "lon": -73.9825075 }, + { "lat": 40.7318467, "lon": -73.9821960 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420872181, + "bounds": { + "minlat": 40.7382830, + "minlon": -73.9806305, + "maxlat": 40.7385557, + "maxlon": -73.9804284 + }, + "nodes": [ + 42436590, + 8119192810, + 13520762293, + 4207683796 + ], + "geometry": [ + { "lat": 40.7385557, "lon": -73.9804284 }, + { "lat": 40.7384958, "lon": -73.9804727 }, + { "lat": 40.7383521, "lon": -73.9805793 }, + { "lat": 40.7382830, "lon": -73.9806305 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872183, + "bounds": { + "minlat": 40.7454554, + "minlon": -73.9753989, + "maxlat": 40.7456459, + "maxlon": -73.9752586 + }, + "nodes": [ + 4207683806, + 4259278555, + 42434965 + ], + "geometry": [ + { "lat": 40.7456459, "lon": -73.9752586 }, + { "lat": 40.7455221, "lon": -73.9753497 }, + { "lat": 40.7454554, "lon": -73.9753989 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872184, + "bounds": { + "minlat": 40.7410430, + "minlon": -73.9786424, + "maxlat": 40.7412397, + "maxlon": -73.9784982 + }, + "nodes": [ + 4207683799, + 6162115861, + 7640856864, + 42442898 + ], + "geometry": [ + { "lat": 40.7412397, "lon": -73.9784982 }, + { "lat": 40.7411415, "lon": -73.9785705 }, + { "lat": 40.7411000, "lon": -73.9786010 }, + { "lat": 40.7410430, "lon": -73.9786424 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through||", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872186, + "bounds": { + "minlat": 40.7385557, + "minlon": -73.9804284, + "maxlat": 40.7388954, + "maxlon": -73.9801856 + }, + "nodes": [ + 5277845114, + 8119192807, + 42436590 + ], + "geometry": [ + { "lat": 40.7388954, "lon": -73.9801856 }, + { "lat": 40.7386165, "lon": -73.9803849 }, + { "lat": 40.7385557, "lon": -73.9804284 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through||", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872188, + "bounds": { + "minlat": 40.7451669, + "minlon": -73.9756113, + "maxlat": 40.7454554, + "maxlon": -73.9753989 + }, + "nodes": [ + 42434965, + 7640871290, + 4207683804 + ], + "geometry": [ + { "lat": 40.7454554, "lon": -73.9753989 }, + { "lat": 40.7453895, "lon": -73.9754474 }, + { "lat": 40.7451669, "lon": -73.9756113 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left||||", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872190, + "bounds": { + "minlat": 40.7412397, + "minlon": -73.9784982, + "maxlat": 40.7416552, + "maxlon": -73.9781701 + }, + "nodes": [ + 42436754, + 7640856883, + 4207683799 + ], + "geometry": [ + { "lat": 40.7416552, "lon": -73.9781701 }, + { "lat": 40.7415821, "lon": -73.9782248 }, + { "lat": 40.7412397, "lon": -73.9784982 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872191, + "bounds": { + "minlat": 40.7397948, + "minlon": -73.9795312, + "maxlat": 40.7401352, + "maxlon": -73.9792901 + }, + "nodes": [ + 4207683798, + 7640871323, + 42429900 + ], + "geometry": [ + { "lat": 40.7401352, "lon": -73.9792901 }, + { "lat": 40.7398568, "lon": -73.9794871 }, + { "lat": 40.7397948, "lon": -73.9795312 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|||", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872193, + "bounds": { + "minlat": 40.7388954, + "minlon": -73.9801856, + "maxlat": 40.7397948, + "maxlon": -73.9795312 + }, + "nodes": [ + 42429900, + 7640856878, + 8119192793, + 42442891, + 8119193319, + 13519574912, + 5277845114 + ], + "geometry": [ + { "lat": 40.7397948, "lon": -73.9795312 }, + { "lat": 40.7397391, "lon": -73.9795721 }, + { "lat": 40.7392377, "lon": -73.9799347 }, + { "lat": 40.7391809, "lon": -73.9799749 }, + { "lat": 40.7391200, "lon": -73.9800199 }, + { "lat": 40.7390096, "lon": -73.9801013 }, + { "lat": 40.7388954, "lon": -73.9801856 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|||", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872194, + "bounds": { + "minlat": 40.7422741, + "minlon": -73.9777196, + "maxlat": 40.7427556, + "maxlon": -73.9773736 + }, + "nodes": [ + 4207683800, + 8119193323, + 13650297889, + 42442902 + ], + "geometry": [ + { "lat": 40.7427556, "lon": -73.9773736 }, + { "lat": 40.7424265, "lon": -73.9776101 }, + { "lat": 40.7423610, "lon": -73.9776585 }, + { "lat": 40.7422741, "lon": -73.9777196 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872195, + "bounds": { + "minlat": 40.7447916, + "minlon": -73.9758876, + "maxlat": 40.7451669, + "maxlon": -73.9756113 + }, + "nodes": [ + 4207683804, + 7640871296, + 5131026388 + ], + "geometry": [ + { "lat": 40.7451669, "lon": -73.9756113 }, + { "lat": 40.7448809, "lon": -73.9758219 }, + { "lat": 40.7447916, "lon": -73.9758876 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872197, + "bounds": { + "minlat": 40.7366994, + "minlon": -73.9785412, + "maxlat": 40.7368956, + "maxlon": -73.9780827 + }, + "nodes": [ + 42448707, + 3601295764, + 4207683795 + ], + "geometry": [ + { "lat": 40.7368956, "lon": -73.9785412 }, + { "lat": 40.7368363, "lon": -73.9784053 }, + { "lat": 40.7366994, "lon": -73.9780827 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "name_1": "East 23 Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|through|right", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872199, + "bounds": { + "minlat": 40.7354563, + "minlon": -73.9755877, + "maxlat": 40.7356514, + "maxlon": -73.9751359 + }, + "nodes": [ + 4207683793, + 3601295737, + 42448714 + ], + "geometry": [ + { "lat": 40.7356514, "lon": -73.9755877 }, + { "lat": 40.7355029, "lon": -73.9752401 }, + { "lat": 40.7354563, "lon": -73.9751359 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "name_1": "East 23 Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|through;right", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872201, + "bounds": { + "minlat": 40.7368956, + "minlon": -73.9789653, + "maxlat": 40.7370748, + "maxlon": -73.9785412 + }, + "nodes": [ + 4015192894, + 9971262480, + 4296697329, + 42448707 + ], + "geometry": [ + { "lat": 40.7370748, "lon": -73.9789653 }, + { "lat": 40.7370136, "lon": -73.9788204 }, + { "lat": 40.7369551, "lon": -73.9786820 }, + { "lat": 40.7368956, "lon": -73.9785412 } + ], + "tags": { + "alt_name": "East 23 Street", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "|merge_to_left", + "turn:lanes:forward": "left|through|", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872204, + "bounds": { + "minlat": 40.7445022, + "minlon": -73.9758876, + "maxlat": 40.7447916, + "maxlon": -73.9752025 + }, + "nodes": [ + 5131026388, + 4207683803, + 4207683802, + 42445387 + ], + "geometry": [ + { "lat": 40.7447916, "lon": -73.9758876 }, + { "lat": 40.7447333, "lon": -73.9757497 }, + { "lat": 40.7445340, "lon": -73.9752803 }, + { "lat": 40.7445022, "lon": -73.9752025 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|yes|designated", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872205, + "bounds": { + "minlat": 40.7431778, + "minlon": -73.9725464, + "maxlat": 40.7433795, + "maxlon": -73.9720697 + }, + "nodes": [ + 42445392, + 4290981311, + 6298391908 + ], + "geometry": [ + { "lat": 40.7431778, "lon": -73.9720697 }, + { "lat": 40.7432556, "lon": -73.9722603 }, + { "lat": 40.7433795, "lon": -73.9725464 } + ], + "tags": { + "bus:lanes:forward": "yes|designated", + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|left;right|right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420872209, + "bounds": { + "minlat": 40.7456175, + "minlon": -73.9767875, + "maxlat": 40.7460385, + "maxlon": -73.9757809 + }, + "nodes": [ + 4207683805, + 12187390427, + 42434962 + ], + "geometry": [ + { "lat": 40.7456175, "lon": -73.9757809 }, + { "lat": 40.7460010, "lon": -73.9766900 }, + { "lat": 40.7460385, "lon": -73.9767875 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 35th Street", + "name:ru": "Восточная 35-я стрит", + "short_name": "East 35 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420872212, + "bounds": { + "minlat": 40.7454012, + "minlon": -73.9773346, + "maxlat": 40.7460385, + "maxlon": -73.9767875 + }, + "nodes": [ + 42434962, + 9987340021, + 9987340027, + 9987340024, + 12187390425, + 9987340025, + 9987340026, + 12187390424, + 3932847295, + 42445382 + ], + "geometry": [ + { "lat": 40.7460385, "lon": -73.9767875 }, + { "lat": 40.7459786, "lon": -73.9768434 }, + { "lat": 40.7458675, "lon": -73.9769511 }, + { "lat": 40.7457780, "lon": -73.9770340 }, + { "lat": 40.7457189, "lon": -73.9770861 }, + { "lat": 40.7456625, "lon": -73.9771325 }, + { "lat": 40.7455839, "lon": -73.9771970 }, + { "lat": 40.7455472, "lon": -73.9772257 }, + { "lat": 40.7454953, "lon": -73.9772644 }, + { "lat": 40.7454012, "lon": -73.9773346 } + ], + "tags": { + "destination:street:to": "34th Street", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Tunnel Exit Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|left;right|right" + } +}, +{ + "type": "way", + "id": 420873317, + "bounds": { + "minlat": 40.8815069, + "minlon": -73.9827768, + "maxlat": 40.8818305, + "maxlon": -73.9825990 + }, + "nodes": [ + 4207692889, + 9239580236, + 9239580235, + 9239580234, + 103134440 + ], + "geometry": [ + { "lat": 40.8818305, "lon": -73.9825990 }, + { "lat": 40.8816373, "lon": -73.9827246 }, + { "lat": 40.8815879, "lon": -73.9827533 }, + { "lat": 40.8815466, "lon": -73.9827726 }, + { "lat": 40.8815069, "lon": -73.9827768 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "South Dean Street", + "oneway": "yes", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dean", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631", + "turn:lanes": "left|left" + } +}, +{ + "type": "way", + "id": 420873726, + "bounds": { + "minlat": 40.8043912, + "minlon": -73.9353330, + "maxlat": 40.8050065, + "maxlon": -73.9348832 + }, + "nodes": [ + 42434131, + 11214344802, + 4207700490, + 10166326194, + 42450089 + ], + "geometry": [ + { "lat": 40.8043912, "lon": -73.9353330 }, + { "lat": 40.8044385, "lon": -73.9352980 }, + { "lat": 40.8045628, "lon": -73.9352060 }, + { "lat": 40.8049497, "lon": -73.9349246 }, + { "lat": 40.8050065, "lon": -73.9348832 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|right", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 420873727, + "bounds": { + "minlat": 40.8075081, + "minlon": -73.9295356, + "maxlat": 40.8077491, + "maxlon": -73.9289619 + }, + "nodes": [ + 4207700491, + 9908642160, + 42749813 + ], + "geometry": [ + { "lat": 40.8075081, "lon": -73.9289619 }, + { "lat": 40.8076912, "lon": -73.9293854 }, + { "lat": 40.8077491, "lon": -73.9295356 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 420873728, + "bounds": { + "minlat": 40.8094099, + "minlon": -73.9300905, + "maxlat": 40.8097611, + "maxlon": -73.9296227 + }, + "nodes": [ + 4207700493, + 9163759297, + 11882279788, + 595801158 + ], + "geometry": [ + { "lat": 40.8097611, "lon": -73.9300905 }, + { "lat": 40.8094770, "lon": -73.9297163 }, + { "lat": 40.8094556, "lon": -73.9296881 }, + { "lat": 40.8094099, "lon": -73.9296227 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "New York State Office of Cyber Security (OCS) StreetSegmentPublic Dataset (http://gis.ny.gov/gisdata/inventories/details.cfm?DSID=932)", + "surface": "concrete", + "turn:lanes": "through;right|right" + } +}, +{ + "type": "way", + "id": 420873729, + "bounds": { + "minlat": 40.8087308, + "minlon": -73.9285674, + "maxlat": 40.8090530, + "maxlon": -73.9278700 + }, + "nodes": [ + 4207700492, + 7553904081, + 9163759288, + 9908636609, + 9163759290, + 42747180 + ], + "geometry": [ + { "lat": 40.8087308, "lon": -73.9278700 }, + { "lat": 40.8088373, "lon": -73.9281227 }, + { "lat": 40.8089485, "lon": -73.9283907 }, + { "lat": 40.8089787, "lon": -73.9284483 }, + { "lat": 40.8089973, "lon": -73.9284811 }, + { "lat": 40.8090530, "lon": -73.9285674 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "left|||" + } +}, +{ + "type": "way", + "id": 420873731, + "bounds": { + "minlat": 40.8090530, + "minlon": -73.9291406, + "maxlat": 40.8094888, + "maxlon": -73.9285674 + }, + "nodes": [ + 42747180, + 9163759291, + 9163759289, + 9908650946, + 7554088552 + ], + "geometry": [ + { "lat": 40.8090530, "lon": -73.9285674 }, + { "lat": 40.8090981, "lon": -73.9286278 }, + { "lat": 40.8091403, "lon": -73.9286830 }, + { "lat": 40.8094405, "lon": -73.9290835 }, + { "lat": 40.8094888, "lon": -73.9291406 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "left|left|none" + } +}, +{ + "type": "way", + "id": 420874479, + "bounds": { + "minlat": 40.8511930, + "minlon": -73.9286543, + "maxlat": 40.8515220, + "maxlon": -73.9284108 + }, + "nodes": [ + 42442755, + 9421763704, + 12310128877 + ], + "geometry": [ + { "lat": 40.8511930, "lon": -73.9286543 }, + { "lat": 40.8512435, "lon": -73.9286168 }, + { "lat": 40.8515220, "lon": -73.9284108 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420874480, + "bounds": { + "minlat": 40.8487998, + "minlon": -73.9303946, + "maxlat": 40.8493157, + "maxlon": -73.9300173 + }, + "nodes": [ + 4207702049, + 7581538677, + 9566869986, + 11976751698, + 42438186 + ], + "geometry": [ + { "lat": 40.8487998, "lon": -73.9303946 }, + { "lat": 40.8489209, "lon": -73.9303061 }, + { "lat": 40.8492258, "lon": -73.9300830 }, + { "lat": 40.8492897, "lon": -73.9300363 }, + { "lat": 40.8493157, "lon": -73.9300173 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420874482, + "bounds": { + "minlat": 40.8478163, + "minlon": -73.9311139, + "maxlat": 40.8481359, + "maxlon": -73.9308802 + }, + "nodes": [ + 4207702046, + 9566914919, + 42442734 + ], + "geometry": [ + { "lat": 40.8478163, "lon": -73.9311139 }, + { "lat": 40.8480302, "lon": -73.9309575 }, + { "lat": 40.8481359, "lon": -73.9308802 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:forward": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes": "through|right|right", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420874483, + "bounds": { + "minlat": 40.8493157, + "minlon": -73.9300173, + "maxlat": 40.8499179, + "maxlon": -73.9296368 + }, + "nodes": [ + 42438186, + 9566869985, + 6363741214, + 12077223052, + 12077223053, + 42442745 + ], + "geometry": [ + { "lat": 40.8493157, "lon": -73.9300173 }, + { "lat": 40.8493922, "lon": -73.9299613 }, + { "lat": 40.8496624, "lon": -73.9297637 }, + { "lat": 40.8497050, "lon": -73.9297353 }, + { "lat": 40.8497492, "lon": -73.9297108 }, + { "lat": 40.8499179, "lon": -73.9296368 } + ], + "tags": { + "bus": "yes", + "cycleway": "shared_lane", + "highway": "secondary", + "lanes": "2", + "motor_vehicle:forward:conditional": "delivery @ 08:00-23:00", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420874485, + "bounds": { + "minlat": 40.8481359, + "minlon": -73.9308802, + "maxlat": 40.8484968, + "maxlon": -73.9306162 + }, + "nodes": [ + 42442734, + 9566914918, + 11595019807, + 11595019808, + 42442738 + ], + "geometry": [ + { "lat": 40.8481359, "lon": -73.9308802 }, + { "lat": 40.8482208, "lon": -73.9308181 }, + { "lat": 40.8482533, "lon": -73.9307943 }, + { "lat": 40.8483851, "lon": -73.9306979 }, + { "lat": 40.8484968, "lon": -73.9306162 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "secondary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420874486, + "bounds": { + "minlat": 40.8594690, + "minlon": -73.9243436, + "maxlat": 40.8609738, + "maxlon": -73.9233773 + }, + "nodes": [ + 4207702054, + 589927883 + ], + "geometry": [ + { "lat": 40.8609738, "lon": -73.9243436 }, + { "lat": 40.8594690, "lon": -73.9233773 } + ], + "tags": { + "alt_name": "West 200th Street", + "bicycle": "yes", + "cycleway": "track", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "name": "Dyckman Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:alt_name_base": "W 200th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 420874488, + "bounds": { + "minlat": 40.8568009, + "minlon": -73.9282928, + "maxlat": 40.8571635, + "maxlon": -73.9282354 + }, + "nodes": [ + 42433151, + 1762221468, + 42453586 + ], + "geometry": [ + { "lat": 40.8568009, "lon": -73.9282660 }, + { "lat": 40.8569070, "lon": -73.9282928 }, + { "lat": 40.8571635, "lon": -73.9282354 } + ], + "tags": { + "highway": "secondary", + "name": "Fort George Hill", + "name:etymology:wikidata": "Q1438535", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort George Hill", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:backward": "through|through", + "turn:lanes:forward": "left" + } +}, +{ + "type": "way", + "id": 420874490, + "bounds": { + "minlat": 40.8475473, + "minlon": -73.9303616, + "maxlat": 40.8479448, + "maxlon": -73.9294983 + }, + "nodes": [ + 60924412, + 595484165 + ], + "geometry": [ + { "lat": 40.8475473, "lon": -73.9294983 }, + { "lat": 40.8479448, "lon": -73.9303616 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "name_1": "West 181st Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Washington", + "tiger:name_base_1": "181st", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Brg", + "tiger:name_type_1": "St", + "turn:lanes": "left|left|through;right" + } +}, +{ + "type": "way", + "id": 420874492, + "bounds": { + "minlat": 40.8481798, + "minlon": -73.9312957, + "maxlat": 40.8483096, + "maxlon": -73.9309857 + }, + "nodes": [ + 13320096547, + 9566914920, + 11595019809, + 13320096548 + ], + "geometry": [ + { "lat": 40.8481798, "lon": -73.9309857 }, + { "lat": 40.8481918, "lon": -73.9310146 }, + { "lat": 40.8482296, "lon": -73.9311056 }, + { "lat": 40.8483096, "lon": -73.9312957 } + ], + "tags": { + "alt_name": "Manolo Tavarez Justo Way", + "bus": "yes", + "busway:both": "lane", + "description": "This honorary street name meorializes Manolo Tavarez Justo.", + "hgv": "local", + "highway": "tertiary", + "historic": "memorial", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "motor_vehicle:conditional": "destination @ (Mo-Su 06:00-20:00)", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033", + "turn:lanes:backward": "through|" + } +}, +{ + "type": "way", + "id": 420875944, + "bounds": { + "minlat": 40.8138123, + "minlon": -73.9194295, + "maxlat": 40.8141422, + "maxlon": -73.9191951 + }, + "nodes": [ + 9908621406, + 9908621411, + 42745890 + ], + "geometry": [ + { "lat": 40.8138123, "lon": -73.9194295 }, + { "lat": 40.8140812, "lon": -73.9192348 }, + { "lat": 40.8141422, "lon": -73.9191951 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 420875945, + "bounds": { + "minlat": 40.8132263, + "minlon": -73.9198630, + "maxlat": 40.8135171, + "maxlon": -73.9196479 + }, + "nodes": [ + 4207707364, + 9908621402, + 42761249 + ], + "geometry": [ + { "lat": 40.8132263, "lon": -73.9198630 }, + { "lat": 40.8134531, "lon": -73.9196952 }, + { "lat": 40.8135171, "lon": -73.9196479 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "name": "Willis Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420877066, + "bounds": { + "minlat": 40.8035150, + "minlon": -73.9522039, + "maxlat": 40.8038654, + "maxlon": -73.9519490 + }, + "nodes": [ + 4207716483, + 10172883040, + 2141026498 + ], + "geometry": [ + { "lat": 40.8035150, "lon": -73.9522039 }, + { "lat": 40.8038140, "lon": -73.9519864 }, + { "lat": 40.8038654, "lon": -73.9519490 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "rcn_ref": "9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877067, + "bounds": { + "minlat": 40.8085556, + "minlon": -73.9485282, + "maxlat": 40.8089395, + "maxlon": -73.9482476 + }, + "nodes": [ + 4207716491, + 5266458365, + 2141026503 + ], + "geometry": [ + { "lat": 40.8085556, "lon": -73.9485282 }, + { "lat": 40.8088426, "lon": -73.9483197 }, + { "lat": 40.8089395, "lon": -73.9482476 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877070, + "bounds": { + "minlat": 40.8032537, + "minlon": -73.9526080, + "maxlat": 40.8036804, + "maxlon": -73.9522965 + }, + "nodes": [ + 4207716484, + 10171493829, + 42432889 + ], + "geometry": [ + { "lat": 40.8036804, "lon": -73.9522965 }, + { "lat": 40.8033600, "lon": -73.9525302 }, + { "lat": 40.8032537, "lon": -73.9526080 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "rcn_ref": "9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877071, + "bounds": { + "minlat": 40.8111306, + "minlon": -73.9466491, + "maxlat": 40.8114810, + "maxlon": -73.9463951 + }, + "nodes": [ + 4207716496, + 10177607122, + 2141026508 + ], + "geometry": [ + { "lat": 40.8111306, "lon": -73.9466491 }, + { "lat": 40.8114299, "lon": -73.9464321 }, + { "lat": 40.8114810, "lon": -73.9463951 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877072, + "bounds": { + "minlat": 40.8089395, + "minlon": -73.9482476, + "maxlat": 40.8092489, + "maxlon": -73.9480289 + }, + "nodes": [ + 2141026503, + 5266458363, + 4207716493 + ], + "geometry": [ + { "lat": 40.8089395, "lon": -73.9482476 }, + { "lat": 40.8090367, "lon": -73.9481755 }, + { "lat": 40.8092489, "lon": -73.9480289 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877073, + "bounds": { + "minlat": 40.8047927, + "minlon": -73.9512678, + "maxlat": 40.8051196, + "maxlon": -73.9510272 + }, + "nodes": [ + 4207716485, + 10127369904, + 2141026504 + ], + "geometry": [ + { "lat": 40.8047927, "lon": -73.9512678 }, + { "lat": 40.8050726, "lon": -73.9510620 }, + { "lat": 40.8051196, "lon": -73.9510272 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877074, + "bounds": { + "minlat": 40.8045644, + "minlon": -73.9516496, + "maxlat": 40.8049429, + "maxlon": -73.9513729 + }, + "nodes": [ + 4207716486, + 10172883038, + 42439851 + ], + "geometry": [ + { "lat": 40.8049429, "lon": -73.9513729 }, + { "lat": 40.8046256, "lon": -73.9516049 }, + { "lat": 40.8045644, "lon": -73.9516496 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877076, + "bounds": { + "minlat": 40.8009307, + "minlon": -73.9540849, + "maxlat": 40.8012531, + "maxlon": -73.9538486 + }, + "nodes": [ + 4207716481, + 10170606881, + 2141026544 + ], + "geometry": [ + { "lat": 40.8009307, "lon": -73.9540849 }, + { "lat": 40.8012023, "lon": -73.9538859 }, + { "lat": 40.8012531, "lon": -73.9538486 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877077, + "bounds": { + "minlat": 40.8121726, + "minlon": -73.9460975, + "maxlat": 40.8125360, + "maxlon": -73.9458355 + }, + "nodes": [ + 4207716498, + 10170874394, + 42439878 + ], + "geometry": [ + { "lat": 40.8125360, "lon": -73.9458355 }, + { "lat": 40.8122292, "lon": -73.9460567 }, + { "lat": 40.8121726, "lon": -73.9460975 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877078, + "bounds": { + "minlat": 40.8083293, + "minlon": -73.9488993, + "maxlat": 40.8087046, + "maxlon": -73.9486225 + }, + "nodes": [ + 4207716492, + 10177600409, + 42439860 + ], + "geometry": [ + { "lat": 40.8087046, "lon": -73.9486225 }, + { "lat": 40.8083878, "lon": -73.9488561 }, + { "lat": 40.8083293, "lon": -73.9488993 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877079, + "bounds": { + "minlat": 40.8060422, + "minlon": -73.9503622, + "maxlat": 40.8063799, + "maxlon": -73.9501152 + }, + "nodes": [ + 4207716487, + 10171219272, + 2141026510 + ], + "geometry": [ + { "lat": 40.8060422, "lon": -73.9503622 }, + { "lat": 40.8063344, "lon": -73.9501485 }, + { "lat": 40.8063799, "lon": -73.9501152 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877081, + "bounds": { + "minlat": 40.8098754, + "minlon": -73.9475614, + "maxlat": 40.8102335, + "maxlon": -73.9472988 + }, + "nodes": [ + 4207716495, + 10177607120, + 2141026493 + ], + "geometry": [ + { "lat": 40.8098754, "lon": -73.9475614 }, + { "lat": 40.8101792, "lon": -73.9473386 }, + { "lat": 40.8102335, "lon": -73.9472988 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877082, + "bounds": { + "minlat": 40.8087046, + "minlon": -73.9486225, + "maxlat": 40.8090058, + "maxlon": -73.9484034 + }, + "nodes": [ + 42439861, + 5266458364, + 4207716492 + ], + "geometry": [ + { "lat": 40.8090058, "lon": -73.9484034 }, + { "lat": 40.8089107, "lon": -73.9484726 }, + { "lat": 40.8087046, "lon": -73.9486225 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877083, + "bounds": { + "minlat": 40.8070737, + "minlon": -73.9498145, + "maxlat": 40.8074302, + "maxlon": -73.9495525 + }, + "nodes": [ + 4207716490, + 7004376629, + 42439858 + ], + "geometry": [ + { "lat": 40.8074302, "lon": -73.9495525 }, + { "lat": 40.8071352, "lon": -73.9497693 }, + { "lat": 40.8070737, "lon": -73.9498145 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877085, + "bounds": { + "minlat": 40.8123558, + "minlon": -73.9457513, + "maxlat": 40.8127308, + "maxlon": -73.9454761 + }, + "nodes": [ + 4207716497, + 8319433976, + 2141026551 + ], + "geometry": [ + { "lat": 40.8123558, "lon": -73.9457513 }, + { "lat": 40.8126629, "lon": -73.9455265 }, + { "lat": 40.8127308, "lon": -73.9454761 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877087, + "bounds": { + "minlat": 40.8058118, + "minlon": -73.9507375, + "maxlat": 40.8061587, + "maxlon": -73.9504852 + }, + "nodes": [ + 4207716488, + 10171219253, + 4163940359 + ], + "geometry": [ + { "lat": 40.8061587, "lon": -73.9504852 }, + { "lat": 40.8058770, "lon": -73.9506900 }, + { "lat": 40.8058118, "lon": -73.9507375 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877089, + "bounds": { + "minlat": 40.8049429, + "minlon": -73.9513729, + "maxlat": 40.8058118, + "maxlon": -73.9507375 + }, + "nodes": [ + 4163940359, + 10171219257, + 10127369903, + 42439852, + 10127369905, + 4207716486 + ], + "geometry": [ + { "lat": 40.8058118, "lon": -73.9507375 }, + { "lat": 40.8057615, "lon": -73.9507744 }, + { "lat": 40.8052541, "lon": -73.9511453 }, + { "lat": 40.8051892, "lon": -73.9511928 }, + { "lat": 40.8051392, "lon": -73.9512293 }, + { "lat": 40.8049429, "lon": -73.9513729 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877090, + "bounds": { + "minlat": 40.8090058, + "minlon": -73.9484034, + "maxlat": 40.8093953, + "maxlon": -73.9481239 + }, + "nodes": [ + 4207716494, + 5266458362, + 42439861 + ], + "geometry": [ + { "lat": 40.8093953, "lon": -73.9481239 }, + { "lat": 40.8091040, "lon": -73.9483330 }, + { "lat": 40.8090058, "lon": -73.9484034 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877091, + "bounds": { + "minlat": 40.8072992, + "minlon": -73.9494429, + "maxlat": 40.8076346, + "maxlon": -73.9491964 + }, + "nodes": [ + 4207716489, + 10171219280, + 2141026538 + ], + "geometry": [ + { "lat": 40.8072992, "lon": -73.9494429 }, + { "lat": 40.8075863, "lon": -73.9492319 }, + { "lat": 40.8076346, "lon": -73.9491964 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877093, + "bounds": { + "minlat": 40.8092489, + "minlon": -73.9480289, + "maxlat": 40.8096148, + "maxlon": -73.9477655 + }, + "nodes": [ + 4207716493, + 11875873075, + 2141026501 + ], + "geometry": [ + { "lat": 40.8092489, "lon": -73.9480289 }, + { "lat": 40.8095481, "lon": -73.9478135 }, + { "lat": 40.8096148, "lon": -73.9477655 } + ], + "tags": { + "alt_name": "7th Ave", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name1": "7th Ave", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877094, + "bounds": { + "minlat": 40.8051196, + "minlon": -73.9510272, + "maxlat": 40.8058923, + "maxlon": -73.9504693 + }, + "nodes": [ + 2141026504, + 10127369902, + 10171219256, + 2141026497, + 10171219252, + 9585469564 + ], + "geometry": [ + { "lat": 40.8051196, "lon": -73.9510272 }, + { "lat": 40.8051870, "lon": -73.9509785 }, + { "lat": 40.8056974, "lon": -73.9506100 }, + { "lat": 40.8057431, "lon": -73.9505770 }, + { "lat": 40.8058104, "lon": -73.9505284 }, + { "lat": 40.8058923, "lon": -73.9504693 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877096, + "bounds": { + "minlat": 40.8102335, + "minlon": -73.9472988, + "maxlat": 40.8111306, + "maxlon": -73.9466491 + }, + "nodes": [ + 2141026493, + 10177607117, + 10170874369, + 2141026524, + 10170874373, + 4207716496 + ], + "geometry": [ + { "lat": 40.8102335, "lon": -73.9472988 }, + { "lat": 40.8102983, "lon": -73.9472520 }, + { "lat": 40.8108094, "lon": -73.9468837 }, + { "lat": 40.8108572, "lon": -73.9468491 }, + { "lat": 40.8109224, "lon": -73.9468007 }, + { "lat": 40.8111306, "lon": -73.9466491 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877098, + "bounds": { + "minlat": 40.8063272, + "minlon": -73.9503603, + "maxlat": 40.8070737, + "maxlon": -73.9498145 + }, + "nodes": [ + 42439858, + 7004376627, + 10171219270, + 42439855, + 10171219273, + 9757416137 + ], + "geometry": [ + { "lat": 40.8070737, "lon": -73.9498145 }, + { "lat": 40.8070180, "lon": -73.9498552 }, + { "lat": 40.8065043, "lon": -73.9502308 }, + { "lat": 40.8064478, "lon": -73.9502721 }, + { "lat": 40.8063987, "lon": -73.9503080 }, + { "lat": 40.8063272, "lon": -73.9503603 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877099, + "bounds": { + "minlat": 40.8066607, + "minlon": -73.9499106, + "maxlat": 40.8072992, + "maxlon": -73.9494429 + }, + "nodes": [ + 9055916302, + 7004376626, + 2141026491, + 7004376628, + 4207716489 + ], + "geometry": [ + { "lat": 40.8066607, "lon": -73.9499106 }, + { "lat": 40.8069516, "lon": -73.9496975 }, + { "lat": 40.8070090, "lon": -73.9496555 }, + { "lat": 40.8070685, "lon": -73.9496119 }, + { "lat": 40.8072992, "lon": -73.9494429 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877100, + "bounds": { + "minlat": 40.8028342, + "minlon": -73.9527034, + "maxlat": 40.8031843, + "maxlon": -73.9524444 + }, + "nodes": [ + 4207716482, + 1705982030, + 10171493832, + 2141026506 + ], + "geometry": [ + { "lat": 40.8028342, "lon": -73.9527034 }, + { "lat": 40.8028555, "lon": -73.9526870 }, + { "lat": 40.8030999, "lon": -73.9525071 }, + { "lat": 40.8031843, "lon": -73.9524444 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877102, + "bounds": { + "minlat": 40.8114810, + "minlon": -73.9463951, + "maxlat": 40.8123558, + "maxlon": -73.9457513 + }, + "nodes": [ + 2141026508, + 10177607125, + 10170874389, + 2141026513, + 10170874393, + 4207716497 + ], + "geometry": [ + { "lat": 40.8114810, "lon": -73.9463951 }, + { "lat": 40.8115460, "lon": -73.9463473 }, + { "lat": 40.8120549, "lon": -73.9459728 }, + { "lat": 40.8121043, "lon": -73.9459364 }, + { "lat": 40.8121632, "lon": -73.9458930 }, + { "lat": 40.8123558, "lon": -73.9457513 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877103, + "bounds": { + "minlat": 40.8077005, + "minlon": -73.9493541, + "maxlat": 40.8083293, + "maxlon": -73.9488993 + }, + "nodes": [ + 42439860, + 10177600407, + 10171219278, + 42438913 + ], + "geometry": [ + { "lat": 40.8083293, "lon": -73.9488993 }, + { "lat": 40.8082786, "lon": -73.9489360 }, + { "lat": 40.8077609, "lon": -73.9493104 }, + { "lat": 40.8077005, "lon": -73.9493541 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877104, + "bounds": { + "minlat": 40.8076346, + "minlon": -73.9491964, + "maxlat": 40.8083860, + "maxlon": -73.9486513 + }, + "nodes": [ + 2141026538, + 10171219277, + 10177600406, + 2141026511, + 10177600408, + 9682934117 + ], + "geometry": [ + { "lat": 40.8076346, "lon": -73.9491964 }, + { "lat": 40.8076945, "lon": -73.9491530 }, + { "lat": 40.8082086, "lon": -73.9487800 }, + { "lat": 40.8082629, "lon": -73.9487406 }, + { "lat": 40.8083193, "lon": -73.9486997 }, + { "lat": 40.8083860, "lon": -73.9486513 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877106, + "bounds": { + "minlat": 40.8000053, + "minlon": -73.9547684, + "maxlat": 40.8009307, + "maxlon": -73.9540849 + }, + "nodes": [ + 2141026500, + 10177600396, + 10171043061, + 2141026525, + 10171043062, + 4207716481 + ], + "geometry": [ + { "lat": 40.8000053, "lon": -73.9547684 }, + { "lat": 40.8000627, "lon": -73.9547264 }, + { "lat": 40.8005799, "lon": -73.9543483 }, + { "lat": 40.8006259, "lon": -73.9543146 }, + { "lat": 40.8006821, "lon": -73.9542724 }, + { "lat": 40.8009307, "lon": -73.9540849 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420877107, + "bounds": { + "minlat": 40.8125360, + "minlon": -73.9458355, + "maxlat": 40.8134231, + "maxlon": -73.9451787 + }, + "nodes": [ + 42429536, + 10171603033, + 8319433977, + 42438240, + 8319433978, + 4207716498 + ], + "geometry": [ + { "lat": 40.8134231, "lon": -73.9451787 }, + { "lat": 40.8133731, "lon": -73.9452157 }, + { "lat": 40.8128556, "lon": -73.9455989 }, + { "lat": 40.8127932, "lon": -73.9456451 }, + { "lat": 40.8127098, "lon": -73.9457069 }, + { "lat": 40.8125360, "lon": -73.9458355 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420878075, + "bounds": { + "minlat": 40.8013237, + "minlon": -73.9501099, + "maxlat": 40.8016902, + "maxlon": -73.9498324 + }, + "nodes": [ + 42446772, + 8807524551, + 4207724568 + ], + "geometry": [ + { "lat": 40.8013237, "lon": -73.9501099 }, + { "lat": 40.8013790, "lon": -73.9500642 }, + { "lat": 40.8016902, "lon": -73.9498324 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878076, + "bounds": { + "minlat": 40.7988778, + "minlon": -73.9520835, + "maxlat": 40.7995043, + "maxlon": -73.9516201 + }, + "nodes": [ + 3099327974, + 7802964908, + 7802964965, + 3099326116 + ], + "geometry": [ + { "lat": 40.7995043, "lon": -73.9516201 }, + { "lat": 40.7994447, "lon": -73.9516642 }, + { "lat": 40.7989299, "lon": -73.9520450 }, + { "lat": 40.7988778, "lon": -73.9520835 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878077, + "bounds": { + "minlat": 40.8097268, + "minlon": -73.9441642, + "maxlat": 40.8099970, + "maxlon": -73.9439714 + }, + "nodes": [ + 4207724579, + 10170874382, + 3099327970 + ], + "geometry": [ + { "lat": 40.8099970, "lon": -73.9439714 }, + { "lat": 40.8097916, "lon": -73.9441182 }, + { "lat": 40.8097268, "lon": -73.9441642 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "left|none|none", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878078, + "bounds": { + "minlat": 40.8033718, + "minlon": -73.9488235, + "maxlat": 40.8036541, + "maxlon": -73.9486101 + }, + "nodes": [ + 4207724571, + 9559461850, + 3099327966 + ], + "geometry": [ + { "lat": 40.8036541, "lon": -73.9486101 }, + { "lat": 40.8034316, "lon": -73.9487781 }, + { "lat": 40.8033718, "lon": -73.9488235 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "left|||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878079, + "bounds": { + "minlat": 40.7985496, + "minlon": -73.9521456, + "maxlat": 40.7988147, + "maxlon": -73.9519336 + }, + "nodes": [ + 4207724564, + 7802964918, + 42446723 + ], + "geometry": [ + { "lat": 40.7985496, "lon": -73.9521456 }, + { "lat": 40.7987551, "lon": -73.9519816 }, + { "lat": 40.7988147, "lon": -73.9519336 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878080, + "bounds": { + "minlat": 40.8046223, + "minlon": -73.9478956, + "maxlat": 40.8048609, + "maxlon": -73.9477222 + }, + "nodes": [ + 4207724573, + 10170875088, + 3099327962 + ], + "geometry": [ + { "lat": 40.8048609, "lon": -73.9477222 }, + { "lat": 40.8046755, "lon": -73.9478570 }, + { "lat": 40.8046223, "lon": -73.9478956 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878081, + "bounds": { + "minlat": 40.7995043, + "minlon": -73.9516201, + "maxlat": 40.7997859, + "maxlon": -73.9514175 + }, + "nodes": [ + 4207724566, + 7802964958, + 3099327974 + ], + "geometry": [ + { "lat": 40.7997859, "lon": -73.9514175 }, + { "lat": 40.7995580, "lon": -73.9515814 }, + { "lat": 40.7995043, "lon": -73.9516201 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878082, + "bounds": { + "minlat": 40.8010634, + "minlon": -73.9503147, + "maxlat": 40.8013237, + "maxlon": -73.9501099 + }, + "nodes": [ + 4207724567, + 8807524513, + 42446772 + ], + "geometry": [ + { "lat": 40.8010634, "lon": -73.9503147 }, + { "lat": 40.8012726, "lon": -73.9501522 }, + { "lat": 40.8013237, "lon": -73.9501099 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878083, + "bounds": { + "minlat": 40.8058736, + "minlon": -73.9469805, + "maxlat": 40.8060630, + "maxlon": -73.9468445 + }, + "nodes": [ + 4207724575, + 10170875074, + 3099327968 + ], + "geometry": [ + { "lat": 40.8060630, "lon": -73.9468445 }, + { "lat": 40.8059456, "lon": -73.9469290 }, + { "lat": 40.8058736, "lon": -73.9469805 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878084, + "bounds": { + "minlat": 40.8016902, + "minlon": -73.9498324, + "maxlat": 40.8020112, + "maxlon": -73.9496071 + }, + "nodes": [ + 4207724568, + 10170875045, + 42437177 + ], + "geometry": [ + { "lat": 40.8016902, "lon": -73.9498324 }, + { "lat": 40.8019164, "lon": -73.9496736 }, + { "lat": 40.8020112, "lon": -73.9496071 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878085, + "bounds": { + "minlat": 40.8024961, + "minlon": -73.9492572, + "maxlat": 40.8026735, + "maxlon": -73.9491230 + }, + "nodes": [ + 4207724570, + 10168729755, + 42453220 + ], + "geometry": [ + { "lat": 40.8024961, "lon": -73.9492572 }, + { "lat": 40.8026185, "lon": -73.9491647 }, + { "lat": 40.8026735, "lon": -73.9491230 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878086, + "bounds": { + "minlat": 40.8037616, + "minlon": -73.9483310, + "maxlat": 40.8039340, + "maxlon": -73.9482051 + }, + "nodes": [ + 4207724572, + 10127369901, + 42453226 + ], + "geometry": [ + { "lat": 40.8037616, "lon": -73.9483310 }, + { "lat": 40.8038742, "lon": -73.9482495 }, + { "lat": 40.8039340, "lon": -73.9482051 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878087, + "bounds": { + "minlat": 40.8020112, + "minlon": -73.9496071, + "maxlat": 40.8024961, + "maxlon": -73.9492572 + }, + "nodes": [ + 42437177, + 10170875044, + 5266449889, + 4207724570 + ], + "geometry": [ + { "lat": 40.8020112, "lon": -73.9496071 }, + { "lat": 40.8020944, "lon": -73.9495471 }, + { "lat": 40.8023238, "lon": -73.9493815 }, + { "lat": 40.8024961, "lon": -73.9492572 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878088, + "bounds": { + "minlat": 40.8062283, + "minlon": -73.9465190, + "maxlat": 40.8064396, + "maxlon": -73.9463669 + }, + "nodes": [ + 4207724576, + 10170875065, + 42438908 + ], + "geometry": [ + { "lat": 40.8062283, "lon": -73.9465190 }, + { "lat": 40.8063836, "lon": -73.9464072 }, + { "lat": 40.8064396, "lon": -73.9463669 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878089, + "bounds": { + "minlat": 40.8020733, + "minlon": -73.9497548, + "maxlat": 40.8023755, + "maxlon": -73.9495364 + }, + "nodes": [ + 4207724569, + 10170875046, + 3099327952 + ], + "geometry": [ + { "lat": 40.8023755, "lon": -73.9495364 }, + { "lat": 40.8021586, "lon": -73.9496930 }, + { "lat": 40.8020733, "lon": -73.9497548 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878090, + "bounds": { + "minlat": 40.8125338, + "minlon": -73.9419161, + "maxlat": 40.8127869, + "maxlon": -73.9417352 + }, + "nodes": [ + 4207724583, + 10168169653, + 42434110 + ], + "geometry": [ + { "lat": 40.8125338, "lon": -73.9419161 }, + { "lat": 40.8127318, "lon": -73.9417746 }, + { "lat": 40.8127869, "lon": -73.9417352 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878091, + "bounds": { + "minlat": 40.8078108, + "minlon": -73.9455708, + "maxlat": 40.8082312, + "maxlon": -73.9452612 + }, + "nodes": [ + 4207724577, + 10170875035, + 3099326120 + ], + "geometry": [ + { "lat": 40.8082312, "lon": -73.9452612 }, + { "lat": 40.8079222, "lon": -73.9454888 }, + { "lat": 40.8078108, "lon": -73.9455708 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "through|", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878093, + "bounds": { + "minlat": 40.8077463, + "minlon": -73.9454127, + "maxlat": 40.8082456, + "maxlon": -73.9450493 + }, + "nodes": [ + 42453246, + 10170875033, + 4207724578 + ], + "geometry": [ + { "lat": 40.8077463, "lon": -73.9454127 }, + { "lat": 40.8078552, "lon": -73.9453335 }, + { "lat": 40.8082456, "lon": -73.9450493 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878094, + "bounds": { + "minlat": 40.8082456, + "minlon": -73.9450493, + "maxlat": 40.8084187, + "maxlon": -73.9449268 + }, + "nodes": [ + 4207724578, + 10171038456, + 42446203 + ], + "geometry": [ + { "lat": 40.8082456, "lon": -73.9450493 }, + { "lat": 40.8083659, "lon": -73.9449640 }, + { "lat": 40.8084187, "lon": -73.9449268 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878095, + "bounds": { + "minlat": 40.8099781, + "minlon": -73.9437659, + "maxlat": 40.8102846, + "maxlon": -73.9435449 + }, + "nodes": [ + 4207724580, + 11947052603, + 42451564 + ], + "geometry": [ + { "lat": 40.8099781, "lon": -73.9437659 }, + { "lat": 40.8102403, "lon": -73.9435769 }, + { "lat": 40.8102846, "lon": -73.9435449 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878096, + "bounds": { + "minlat": 40.8049721, + "minlon": -73.9474352, + "maxlat": 40.8051841, + "maxlon": -73.9472816 + }, + "nodes": [ + 4207724574, + 10171554202, + 42445215 + ], + "geometry": [ + { "lat": 40.8049721, "lon": -73.9474352 }, + { "lat": 40.8051349, "lon": -73.9473172 }, + { "lat": 40.8051841, "lon": -73.9472816 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878097, + "bounds": { + "minlat": 40.8122349, + "minlon": -73.9423303, + "maxlat": 40.8125091, + "maxlon": -73.9421310 + }, + "nodes": [ + 4207724582, + 10168169657, + 3099326124 + ], + "geometry": [ + { "lat": 40.8125091, "lon": -73.9421310 }, + { "lat": 40.8122868, "lon": -73.9422926 }, + { "lat": 40.8122349, "lon": -73.9423303 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878098, + "bounds": { + "minlat": 40.8109749, + "minlon": -73.9432528, + "maxlat": 40.8111838, + "maxlon": -73.9431018 + }, + "nodes": [ + 4207724581, + 10172819016, + 3099327945 + ], + "geometry": [ + { "lat": 40.8111838, "lon": -73.9431018 }, + { "lat": 40.8110328, "lon": -73.9432110 }, + { "lat": 40.8109749, "lon": -73.9432528 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "left|none|none", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878099, + "bounds": { + "minlat": 40.7982188, + "minlon": -73.9523960, + "maxlat": 40.7985496, + "maxlon": -73.9521456 + }, + "nodes": [ + 42426374, + 7784826668, + 4207724564 + ], + "geometry": [ + { "lat": 40.7982188, "lon": -73.9523960 }, + { "lat": 40.7982928, "lon": -73.9523318 }, + { "lat": 40.7985496, "lon": -73.9521456 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878102, + "bounds": { + "minlat": 40.7988147, + "minlon": -73.9519336, + "maxlat": 40.7998953, + "maxlon": -73.9511661 + }, + "nodes": [ + 42446723, + 7802964915, + 7802964947, + 42437204, + 6784911808, + 2339621211 + ], + "geometry": [ + { "lat": 40.7988147, "lon": -73.9519336 }, + { "lat": 40.7988694, "lon": -73.9518948 }, + { "lat": 40.7993864, "lon": -73.9515275 }, + { "lat": 40.7994476, "lon": -73.9514840 }, + { "lat": 40.7995039, "lon": -73.9514441 }, + { "lat": 40.7998953, "lon": -73.9511661 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878104, + "bounds": { + "minlat": 40.8103559, + "minlon": -73.9437153, + "maxlat": 40.8109749, + "maxlon": -73.9432528 + }, + "nodes": [ + 3099327945, + 10172833421, + 11947052607, + 3099326127 + ], + "geometry": [ + { "lat": 40.8109749, "lon": -73.9432528 }, + { "lat": 40.8109237, "lon": -73.9432913 }, + { "lat": 40.8104141, "lon": -73.9436718 }, + { "lat": 40.8103559, "lon": -73.9437153 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878106, + "bounds": { + "minlat": 40.8111838, + "minlon": -73.9431018, + "maxlat": 40.8122349, + "maxlon": -73.9423303 + }, + "nodes": [ + 3099326124, + 10168169662, + 10172819006, + 3099327944, + 10172819011, + 4207724581 + ], + "geometry": [ + { "lat": 40.8122349, "lon": -73.9423303 }, + { "lat": 40.8121693, "lon": -73.9423789 }, + { "lat": 40.8116631, "lon": -73.9427541 }, + { "lat": 40.8116007, "lon": -73.9428003 }, + { "lat": 40.8115492, "lon": -73.9428376 }, + { "lat": 40.8111838, "lon": -73.9431018 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878107, + "bounds": { + "minlat": 40.8056052, + "minlon": -73.9471780, + "maxlat": 40.8058736, + "maxlon": -73.9469805 + }, + "nodes": [ + 3099327968, + 7004411793, + 9053638140 + ], + "geometry": [ + { "lat": 40.8058736, "lon": -73.9469805 }, + { "lat": 40.8058231, "lon": -73.9470176 }, + { "lat": 40.8056052, "lon": -73.9471780 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878110, + "bounds": { + "minlat": 40.8039962, + "minlon": -73.9483526, + "maxlat": 40.8046223, + "maxlon": -73.9478956 + }, + "nodes": [ + 3099327962, + 10170875087, + 10127369898, + 3099326128 + ], + "geometry": [ + { "lat": 40.8046223, "lon": -73.9478956 }, + { "lat": 40.8045663, "lon": -73.9479364 }, + { "lat": 40.8040527, "lon": -73.9483105 }, + { "lat": 40.8039962, "lon": -73.9483526 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878111, + "bounds": { + "minlat": 40.8051841, + "minlon": -73.9472816, + "maxlat": 40.8062283, + "maxlon": -73.9465190 + }, + "nodes": [ + 42445215, + 7004418420, + 7004411792, + 42453236, + 10170875073, + 4207724576 + ], + "geometry": [ + { "lat": 40.8051841, "lon": -73.9472816 }, + { "lat": 40.8052453, "lon": -73.9472363 }, + { "lat": 40.8057566, "lon": -73.9468596 }, + { "lat": 40.8058089, "lon": -73.9468210 }, + { "lat": 40.8058745, "lon": -73.9467744 }, + { "lat": 40.8062283, "lon": -73.9465190 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878112, + "bounds": { + "minlat": 40.8039340, + "minlon": -73.9482051, + "maxlat": 40.8047992, + "maxlon": -73.9475605 + }, + "nodes": [ + 42453226, + 10127369897, + 10170875086, + 42429727, + 10170875085, + 9531712058 + ], + "geometry": [ + { "lat": 40.8039340, "lon": -73.9482051 }, + { "lat": 40.8039889, "lon": -73.9481645 }, + { "lat": 40.8044997, "lon": -73.9477791 }, + { "lat": 40.8045555, "lon": -73.9477370 }, + { "lat": 40.8046085, "lon": -73.9476987 }, + { "lat": 40.8047992, "lon": -73.9475605 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878113, + "bounds": { + "minlat": 40.7998953, + "minlon": -73.9511661, + "maxlat": 40.8000730, + "maxlon": -73.9510373 + }, + "nodes": [ + 2339621211, + 7640495256, + 8807524453, + 42431200 + ], + "geometry": [ + { "lat": 40.7998953, "lon": -73.9511661 }, + { "lat": 40.7999742, "lon": -73.9511089 }, + { "lat": 40.8000282, "lon": -73.9510698 }, + { "lat": 40.8000730, "lon": -73.9510373 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878114, + "bounds": { + "minlat": 40.8127869, + "minlon": -73.9417352, + "maxlat": 40.8129498, + "maxlon": -73.9416137 + }, + "nodes": [ + 42434110, + 10168169650, + 5481922072 + ], + "geometry": [ + { "lat": 40.8127869, "lon": -73.9417352 }, + { "lat": 40.8128556, "lon": -73.9416840 }, + { "lat": 40.8129498, "lon": -73.9416137 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878115, + "bounds": { + "minlat": 40.8026735, + "minlon": -73.9491230, + "maxlat": 40.8037616, + "maxlon": -73.9483310 + }, + "nodes": [ + 42453220, + 7004411491, + 7004372908, + 42452564, + 9559461851, + 4207724572 + ], + "geometry": [ + { "lat": 40.8026735, "lon": -73.9491230 }, + { "lat": 40.8027386, "lon": -73.9490756 }, + { "lat": 40.8032476, "lon": -73.9487060 }, + { "lat": 40.8033044, "lon": -73.9486636 }, + { "lat": 40.8033656, "lon": -73.9486190 }, + { "lat": 40.8037616, "lon": -73.9483310 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878116, + "bounds": { + "minlat": 40.8023755, + "minlon": -73.9495364, + "maxlat": 40.8033718, + "maxlon": -73.9488235 + }, + "nodes": [ + 3099327966, + 7004372909, + 7004411492, + 3099327950, + 10168729754, + 4207724569 + ], + "geometry": [ + { "lat": 40.8033718, "lon": -73.9488235 }, + { "lat": 40.8033136, "lon": -73.9488649 }, + { "lat": 40.8028035, "lon": -73.9492278 }, + { "lat": 40.8027375, "lon": -73.9492747 }, + { "lat": 40.8026823, "lon": -73.9493145 }, + { "lat": 40.8023755, "lon": -73.9495364 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878117, + "bounds": { + "minlat": 40.8091051, + "minlon": -73.9446164, + "maxlat": 40.8097268, + "maxlon": -73.9441642 + }, + "nodes": [ + 3099327970, + 10170874383, + 10171038447, + 3099327975 + ], + "geometry": [ + { "lat": 40.8097268, "lon": -73.9441642 }, + { "lat": 40.8096749, "lon": -73.9442020 }, + { "lat": 40.8091648, "lon": -73.9445730 }, + { "lat": 40.8091051, "lon": -73.9446164 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878118, + "bounds": { + "minlat": 40.8090395, + "minlon": -73.9444657, + "maxlat": 40.8099781, + "maxlon": -73.9437659 + }, + "nodes": [ + 42436726, + 10171038446, + 10170874380, + 42453251, + 10170874381, + 4207724580 + ], + "geometry": [ + { "lat": 40.8090395, "lon": -73.9444657 }, + { "lat": 40.8091019, "lon": -73.9444189 }, + { "lat": 40.8096072, "lon": -73.9440391 }, + { "lat": 40.8096586, "lon": -73.9440006 }, + { "lat": 40.8097196, "lon": -73.9439557 }, + { "lat": 40.8099781, "lon": -73.9437659 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878119, + "bounds": { + "minlat": 40.7982754, + "minlon": -73.9525303, + "maxlat": 40.7988778, + "maxlon": -73.9520835 + }, + "nodes": [ + 3099326116, + 7802964909, + 7784826669, + 3099327964 + ], + "geometry": [ + { "lat": 40.7988778, "lon": -73.9520835 }, + { "lat": 40.7988185, "lon": -73.9521274 }, + { "lat": 40.7983483, "lon": -73.9524762 }, + { "lat": 40.7982754, "lon": -73.9525303 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420878810, + "bounds": { + "minlat": 40.8360717, + "minlon": -73.9397127, + "maxlat": 40.8362759, + "maxlon": -73.9395605 + }, + "nodes": [ + 4207731296, + 6363741213 + ], + "geometry": [ + { "lat": 40.8360717, "lon": -73.9397127 }, + { "lat": 40.8362759, "lon": -73.9395605 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420878812, + "bounds": { + "minlat": 40.8365752, + "minlon": -73.9393372, + "maxlat": 40.8372351, + "maxlon": -73.9388597 + }, + "nodes": [ + 42442684, + 9569882300, + 9569882310, + 42442697 + ], + "geometry": [ + { "lat": 40.8365752, "lon": -73.9393372 }, + { "lat": 40.8366392, "lon": -73.9392922 }, + { "lat": 40.8371876, "lon": -73.9388941 }, + { "lat": 40.8372351, "lon": -73.9388597 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420878815, + "bounds": { + "minlat": 40.8410453, + "minlon": -73.9396840, + "maxlat": 40.8414250, + "maxlon": -73.9394464 + }, + "nodes": [ + 561035382, + 9421812818, + 7132814246 + ], + "geometry": [ + { "lat": 40.8410453, "lon": -73.9396840 }, + { "lat": 40.8411188, "lon": -73.9396311 }, + { "lat": 40.8414250, "lon": -73.9394464 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 420878817, + "bounds": { + "minlat": 40.8342881, + "minlon": -73.9454542, + "maxlat": 40.8346333, + "maxlon": -73.9453866 + }, + "nodes": [ + 4207731295, + 9703359681, + 42452130 + ], + "geometry": [ + { "lat": 40.8346333, "lon": -73.9454542 }, + { "lat": 40.8343663, "lon": -73.9454075 }, + { "lat": 40.8342881, "lon": -73.9453866 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Edward M. Morgan Place", + "name:etymology:wikidata": "Q5344283", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edward M Morgan", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "turn:lanes:forward": "through|right" + } +}, +{ + "type": "way", + "id": 420878818, + "bounds": { + "minlat": 40.8364690, + "minlon": -73.9388597, + "maxlat": 40.8372351, + "maxlon": -73.9370230 + }, + "nodes": [ + 42442697, + 9569882308, + 2075595691, + 8725182239, + 42439728 + ], + "geometry": [ + { "lat": 40.8372351, "lon": -73.9388597 }, + { "lat": 40.8371788, "lon": -73.9387240 }, + { "lat": 40.8365362, "lon": -73.9371768 }, + { "lat": 40.8365166, "lon": -73.9371309 }, + { "lat": 40.8364690, "lon": -73.9370230 } + ], + "tags": { + "highway": "residential", + "name": "West 164th Street", + "name_1": "West 164 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "164th", + "tiger:name_base_1": "164", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 420880131, + "bounds": { + "minlat": 40.8071509, + "minlon": -73.9082144, + "maxlat": 40.8082178, + "maxlon": -73.9078327 + }, + "nodes": [ + 42766929, + 7042943583, + 1931610637 + ], + "geometry": [ + { "lat": 40.8071509, "lon": -73.9082144 }, + { "lat": 40.8077917, "lon": -73.9079823 }, + { "lat": 40.8082178, "lon": -73.9078327 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Southern Boulevard", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Southern", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10458", + "tiger:zip_right": "10460", + "turn:lanes:forward": "left|none", + "wikidata": "Q14707315", + "wikipedia": "en:Southern Boulevard (Bronx)" + } +}, +{ + "type": "way", + "id": 420881453, + "bounds": { + "minlat": 40.8058851, + "minlon": -73.9418331, + "maxlat": 40.8062358, + "maxlon": -73.9409986 + }, + "nodes": [ + 4207752450, + 4207752449 + ], + "geometry": [ + { "lat": 40.8062358, "lon": -73.9418331 }, + { "lat": 40.8058851, "lon": -73.9409986 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420881454, + "bounds": { + "minlat": 40.8043802, + "minlon": -73.9385825, + "maxlat": 40.8048667, + "maxlon": -73.9374253 + }, + "nodes": [ + 4207752448, + 11255243810, + 4980798206, + 42444457 + ], + "geometry": [ + { "lat": 40.8048667, "lon": -73.9385825 }, + { "lat": 40.8045690, "lon": -73.9378762 }, + { "lat": 40.8044241, "lon": -73.9375325 }, + { "lat": 40.8043802, "lon": -73.9374253 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420881455, + "bounds": { + "minlat": 40.8062358, + "minlon": -73.9422694, + "maxlat": 40.8064189, + "maxlon": -73.9418331 + }, + "nodes": [ + 42444452, + 5266458353, + 11255278313, + 4207752450 + ], + "geometry": [ + { "lat": 40.8064189, "lon": -73.9422694 }, + { "lat": 40.8063765, "lon": -73.9421677 }, + { "lat": 40.8062669, "lon": -73.9419071 }, + { "lat": 40.8062358, "lon": -73.9418331 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "turn:lanes:backward": "through|", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420881456, + "bounds": { + "minlat": 40.8048667, + "minlon": -73.9388881, + "maxlat": 40.8049979, + "maxlon": -73.9385825 + }, + "nodes": [ + 42444456, + 10169411293, + 4207752448 + ], + "geometry": [ + { "lat": 40.8049979, "lon": -73.9388881 }, + { "lat": 40.8049797, "lon": -73.9388457 }, + { "lat": 40.8048667, "lon": -73.9385825 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "sidewalk:both": "separate", + "turn:lanes:backward": "|through;right", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420881457, + "bounds": { + "minlat": 40.8057387, + "minlon": -73.9409986, + "maxlat": 40.8058851, + "maxlon": -73.9406432 + }, + "nodes": [ + 4207752449, + 10170762177, + 42444453 + ], + "geometry": [ + { "lat": 40.8058851, "lon": -73.9409986 }, + { "lat": 40.8057883, "lon": -73.9407610 }, + { "lat": 40.8057387, "lon": -73.9406432 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "left|through", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420881459, + "bounds": { + "minlat": 40.8065955, + "minlon": -73.9442512, + "maxlat": 40.8072559, + "maxlon": -73.9426871 + }, + "nodes": [ + 4207752451, + 5266458351, + 5266458350, + 5266458352, + 3395083620 + ], + "geometry": [ + { "lat": 40.8065955, "lon": -73.9426871 }, + { "lat": 40.8070562, "lon": -73.9437782 }, + { "lat": 40.8070787, "lon": -73.9438314 }, + { "lat": 40.8071040, "lon": -73.9438914 }, + { "lat": 40.8072559, "lon": -73.9442512 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420881461, + "bounds": { + "minlat": 40.8116565, + "minlon": -73.9548259, + "maxlat": 40.8117315, + "maxlon": -73.9546926 + }, + "nodes": [ + 6824030325, + 6824030292, + 6823995460, + 42429827 + ], + "geometry": [ + { "lat": 40.8116565, "lon": -73.9546926 }, + { "lat": 40.8116824, "lon": -73.9547504 }, + { "lat": 40.8117072, "lon": -73.9547947 }, + { "lat": 40.8117315, "lon": -73.9548259 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420881462, + "bounds": { + "minlat": 40.8127637, + "minlon": -73.9562717, + "maxlat": 40.8133809, + "maxlon": -73.9557376 + }, + "nodes": [ + 4207752455, + 10050045625, + 42442584 + ], + "geometry": [ + { "lat": 40.8127637, "lon": -73.9557376 }, + { "lat": 40.8132760, "lon": -73.9561810 }, + { "lat": 40.8133809, "lon": -73.9562717 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420881463, + "bounds": { + "minlat": 40.8140151, + "minlon": -73.9578259, + "maxlat": 40.8151611, + "maxlon": -73.9568234 + }, + "nodes": [ + 4207752456, + 8795723382, + 42453717 + ], + "geometry": [ + { "lat": 40.8140151, "lon": -73.9568234 }, + { "lat": 40.8151035, "lon": -73.9577756 }, + { "lat": 40.8151611, "lon": -73.9578259 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420881464, + "bounds": { + "minlat": 40.8122310, + "minlon": -73.9557376, + "maxlat": 40.8127637, + "maxlon": -73.9552747 + }, + "nodes": [ + 4207752454, + 4207752455 + ], + "geometry": [ + { "lat": 40.8122310, "lon": -73.9552747 }, + { "lat": 40.8127637, "lon": -73.9557376 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420882490, + "bounds": { + "minlat": 40.8070133, + "minlon": -73.9528867, + "maxlat": 40.8072406, + "maxlon": -73.9528740 + }, + "nodes": [ + 4207743628, + 4207743629 + ], + "geometry": [ + { "lat": 40.8070133, "lon": -73.9528740 }, + { "lat": 40.8072406, "lon": -73.9528867 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "sidewalk:both": "separate", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420882491, + "bounds": { + "minlat": 40.8072406, + "minlon": -73.9529047, + "maxlat": 40.8075507, + "maxlon": -73.9528867 + }, + "nodes": [ + 4207743629, + 9150525173, + 10168029050, + 42432905 + ], + "geometry": [ + { "lat": 40.8072406, "lon": -73.9528867 }, + { "lat": 40.8073842, "lon": -73.9528943 }, + { "lat": 40.8074369, "lon": -73.9528982 }, + { "lat": 40.8075507, "lon": -73.9529047 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "sidewalk:both": "separate", + "turn:lanes:forward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420882492, + "bounds": { + "minlat": 40.8125750, + "minlon": -73.9509270, + "maxlat": 40.8127769, + "maxlon": -73.9507276 + }, + "nodes": [ + 42432933, + 10171865566, + 4207743630 + ], + "geometry": [ + { "lat": 40.8125750, "lon": -73.9509270 }, + { "lat": 40.8126371, "lon": -73.9508656 }, + { "lat": 40.8127769, "lon": -73.9507276 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "turn:lanes:backward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420882493, + "bounds": { + "minlat": 40.8067090, + "minlon": -73.9528740, + "maxlat": 40.8070133, + "maxlon": -73.9528570 + }, + "nodes": [ + 42429735, + 11840444663, + 4207743628 + ], + "geometry": [ + { "lat": 40.8067090, "lon": -73.9528570 }, + { "lat": 40.8067909, "lon": -73.9528616 }, + { "lat": 40.8070133, "lon": -73.9528740 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "sidewalk:both": "separate", + "turn:lanes:backward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420882494, + "bounds": { + "minlat": 40.8045323, + "minlon": -73.9527655, + "maxlat": 40.8050309, + "maxlon": -73.9527475 + }, + "nodes": [ + 4207743627, + 9178231196, + 11840449873, + 42432897 + ], + "geometry": [ + { "lat": 40.8045323, "lon": -73.9527475 }, + { "lat": 40.8048958, "lon": -73.9527651 }, + { "lat": 40.8049647, "lon": -73.9527653 }, + { "lat": 40.8050309, "lon": -73.9527655 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "sidewalk:both": "separate", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420882495, + "bounds": { + "minlat": 40.8077750, + "minlon": -73.9529558, + "maxlat": 40.8083967, + "maxlon": -73.9529182 + }, + "nodes": [ + 6431058183, + 11298919657, + 7004398488, + 42432917 + ], + "geometry": [ + { "lat": 40.8077750, "lon": -73.9529182 }, + { "lat": 40.8079461, "lon": -73.9529286 }, + { "lat": 40.8083206, "lon": -73.9529510 }, + { "lat": 40.8083967, "lon": -73.9529558 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "sidewalk:both": "separate", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 420883170, + "bounds": { + "minlat": 40.8057381, + "minlon": -73.9427583, + "maxlat": 40.8060692, + "maxlon": -73.9425206 + }, + "nodes": [ + 4207764479, + 10171231558, + 42438702 + ], + "geometry": [ + { "lat": 40.8060692, "lon": -73.9425206 }, + { "lat": 40.8058068, "lon": -73.9427089 }, + { "lat": 40.8057381, "lon": -73.9427583 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "turn:lanes": "left|right", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 420883172, + "bounds": { + "minlat": 40.8022308, + "minlon": -73.9432068, + "maxlat": 40.8025484, + "maxlon": -73.9429883 + }, + "nodes": [ + 4207764474, + 9177554442, + 11295744907, + 42443817 + ], + "geometry": [ + { "lat": 40.8022308, "lon": -73.9432068 }, + { "lat": 40.8024430, "lon": -73.9430534 }, + { "lat": 40.8024927, "lon": -73.9430227 }, + { "lat": 40.8025484, "lon": -73.9429883 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "turn:lanes": "||right", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 420883173, + "bounds": { + "minlat": 40.8025484, + "minlon": -73.9429883, + "maxlat": 40.8050631, + "maxlon": -73.9411468 + }, + "nodes": [ + 42443817, + 11295744906, + 9177554443, + 10170762192, + 42446169, + 10170762191, + 3023173316, + 42445183, + 3023173318, + 10170656865, + 42446171, + 10170656861, + 9177554444, + 10171231552, + 42438704 + ], + "geometry": [ + { "lat": 40.8025484, "lon": -73.9429883 }, + { "lat": 40.8026263, "lon": -73.9429452 }, + { "lat": 40.8026408, "lon": -73.9429372 }, + { "lat": 40.8031278, "lon": -73.9425780 }, + { "lat": 40.8031793, "lon": -73.9425400 }, + { "lat": 40.8032392, "lon": -73.9424960 }, + { "lat": 40.8037557, "lon": -73.9421165 }, + { "lat": 40.8038123, "lon": -73.9420768 }, + { "lat": 40.8038572, "lon": -73.9420437 }, + { "lat": 40.8043873, "lon": -73.9416577 }, + { "lat": 40.8044390, "lon": -73.9416200 }, + { "lat": 40.8045049, "lon": -73.9415713 }, + { "lat": 40.8049660, "lon": -73.9412306 }, + { "lat": 40.8050148, "lon": -73.9411884 }, + { "lat": 40.8050631, "lon": -73.9411468 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "network": "lcn", + "oneway": "yes", + "parking:lane:width": "13'", + "route": "bicycle", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 420883174, + "bounds": { + "minlat": 40.8057381, + "minlon": -73.9429725, + "maxlat": 40.8058244, + "maxlon": -73.9427583 + }, + "nodes": [ + 42438702, + 7004436335, + 4207764478 + ], + "geometry": [ + { "lat": 40.8057381, "lon": -73.9427583 }, + { "lat": 40.8057975, "lon": -73.9429057 }, + { "lat": 40.8058244, "lon": -73.9429725 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "name": "West 124th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 420884507, + "bounds": { + "minlat": 40.7116264, + "minlon": -73.9681510, + "maxlat": 40.7119171, + "maxlon": -73.9680168 + }, + "nodes": [ + 4207774909, + 9990599417, + 42468731 + ], + "geometry": [ + { "lat": 40.7116264, "lon": -73.9681510 }, + { "lat": 40.7118601, "lon": -73.9680431 }, + { "lat": 40.7119171, "lon": -73.9680168 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420884508, + "bounds": { + "minlat": 40.7001140, + "minlon": -73.9621464, + "maxlat": 40.7002740, + "maxlon": -73.9618893 + }, + "nodes": [ + 4207774901, + 42469400 + ], + "geometry": [ + { "lat": 40.7001140, "lon": -73.9618893 }, + { "lat": 40.7002740, "lon": -73.9621464 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left;through|through" + } +}, +{ + "type": "way", + "id": 420884510, + "bounds": { + "minlat": 40.6999197, + "minlon": -73.9618893, + "maxlat": 40.7001140, + "maxlon": -73.9616086 + }, + "nodes": [ + 42469395, + 4207774901 + ], + "geometry": [ + { "lat": 40.6999197, "lon": -73.9616086 }, + { "lat": 40.7001140, "lon": -73.9618893 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 420884511, + "bounds": { + "minlat": 40.7119171, + "minlon": -73.9680168, + "maxlat": 40.7124122, + "maxlon": -73.9677929 + }, + "nodes": [ + 42468731, + 9990583016, + 11163899197, + 4207774910 + ], + "geometry": [ + { "lat": 40.7119171, "lon": -73.9680168 }, + { "lat": 40.7119834, "lon": -73.9679868 }, + { "lat": 40.7121214, "lon": -73.9679244 }, + { "lat": 40.7124122, "lon": -73.9677929 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420884513, + "bounds": { + "minlat": 40.7107396, + "minlon": -73.9685180, + "maxlat": 40.7108555, + "maxlon": -73.9684877 + }, + "nodes": [ + 5496591144, + 9450686171, + 42469454 + ], + "geometry": [ + { "lat": 40.7107396, "lon": -73.9685180 }, + { "lat": 40.7107933, "lon": -73.9685064 }, + { "lat": 40.7108555, "lon": -73.9684877 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420884514, + "bounds": { + "minlat": 40.7089065, + "minlon": -73.9684687, + "maxlat": 40.7092186, + "maxlon": -73.9684536 + }, + "nodes": [ + 4207774906, + 9785653055, + 4207774907 + ], + "geometry": [ + { "lat": 40.7089065, "lon": -73.9684536 }, + { "lat": 40.7091572, "lon": -73.9684622 }, + { "lat": 40.7092186, "lon": -73.9684687 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420884515, + "bounds": { + "minlat": 40.7057397, + "minlon": -73.9681983, + "maxlat": 40.7063730, + "maxlon": -73.9679262 + }, + "nodes": [ + 42469443, + 9979204926, + 4207774905 + ], + "geometry": [ + { "lat": 40.7057397, "lon": -73.9679262 }, + { "lat": 40.7059669, "lon": -73.9680238 }, + { "lat": 40.7063730, "lon": -73.9681983 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420884516, + "bounds": { + "minlat": 40.7108555, + "minlon": -73.9684877, + "maxlat": 40.7116264, + "maxlon": -73.9681510 + }, + "nodes": [ + 42469454, + 9968370317, + 9968339316, + 9968339315, + 10074624147, + 4207774909 + ], + "geometry": [ + { "lat": 40.7108555, "lon": -73.9684877 }, + { "lat": 40.7108957, "lon": -73.9684750 }, + { "lat": 40.7109343, "lon": -73.9684585 }, + { "lat": 40.7109714, "lon": -73.9684433 }, + { "lat": 40.7115331, "lon": -73.9681926 }, + { "lat": 40.7116264, "lon": -73.9681510 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420884518, + "bounds": { + "minlat": 40.7124122, + "minlon": -73.9677929, + "maxlat": 40.7126029, + "maxlon": -73.9677048 + }, + "nodes": [ + 4207774910, + 9990599540, + 42469461 + ], + "geometry": [ + { "lat": 40.7124122, "lon": -73.9677929 }, + { "lat": 40.7125396, "lon": -73.9677340 }, + { "lat": 40.7126029, "lon": -73.9677048 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420884519, + "bounds": { + "minlat": 40.7004205, + "minlon": -73.9626470, + "maxlat": 40.7005618, + "maxlon": -73.9625055 + }, + "nodes": [ + 4207774903, + 9998897918, + 9998897919, + 9998897920, + 3552687139 + ], + "geometry": [ + { "lat": 40.7005618, "lon": -73.9626470 }, + { "lat": 40.7005325, "lon": -73.9626114 }, + { "lat": 40.7004942, "lon": -73.9625697 }, + { "lat": 40.7004600, "lon": -73.9625376 }, + { "lat": 40.7004205, "lon": -73.9625055 } + ], + "tags": { + "bicycle": "use_sidepath", + "cycleway:right": "separate", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 420884520, + "bounds": { + "minlat": 40.7039036, + "minlon": -73.9671611, + "maxlat": 40.7042648, + "maxlon": -73.9667512 + }, + "nodes": [ + 5104592947, + 9246837703, + 42469437 + ], + "geometry": [ + { "lat": 40.7039036, "lon": -73.9667512 }, + { "lat": 40.7041636, "lon": -73.9670630 }, + { "lat": 40.7042648, "lon": -73.9671611 } + ], + "tags": { + "bicycle": "use_sidepath", + "cycleway:left": "separate", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 420884521, + "bounds": { + "minlat": 40.7092186, + "minlon": -73.9685252, + "maxlat": 40.7104398, + "maxlon": -73.9684687 + }, + "nodes": [ + 4207774907, + 9785653057, + 10053847490, + 42469451, + 10053847494, + 4207774908 + ], + "geometry": [ + { "lat": 40.7092186, "lon": -73.9684687 }, + { "lat": 40.7092729, "lon": -73.9684714 }, + { "lat": 40.7099897, "lon": -73.9684997 }, + { "lat": 40.7100398, "lon": -73.9685018 }, + { "lat": 40.7101134, "lon": -73.9685062 }, + { "lat": 40.7104398, "lon": -73.9685252 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420884522, + "bounds": { + "minlat": 40.7104398, + "minlon": -73.9685357, + "maxlat": 40.7107396, + "maxlon": -73.9685180 + }, + "nodes": [ + 4207774908, + 9968370326, + 3552666735, + 9968370325, + 5496591144 + ], + "geometry": [ + { "lat": 40.7104398, "lon": -73.9685252 }, + { "lat": 40.7106015, "lon": -73.9685357 }, + { "lat": 40.7106453, "lon": -73.9685315 }, + { "lat": 40.7106832, "lon": -73.9685256 }, + { "lat": 40.7107396, "lon": -73.9685180 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 420884523, + "bounds": { + "minlat": 40.7001835, + "minlon": -73.9625055, + "maxlat": 40.7004205, + "maxlon": -73.9621854 + }, + "nodes": [ + 3552687139, + 9998897917, + 3552687138, + 6245943462, + 10142828160 + ], + "geometry": [ + { "lat": 40.7004205, "lon": -73.9625055 }, + { "lat": 40.7003215, "lon": -73.9624098 }, + { "lat": 40.7002496, "lon": -73.9623041 }, + { "lat": 40.7002318, "lon": -73.9622714 }, + { "lat": 40.7001835, "lon": -73.9621854 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 420885231, + "bounds": { + "minlat": 40.7896284, + "minlon": -73.9400642, + "maxlat": 40.7902846, + "maxlon": -73.9395853 + }, + "nodes": [ + 42450468, + 6216541807, + 6133359395, + 6216541845, + 7474626847 + ], + "geometry": [ + { "lat": 40.7896284, "lon": -73.9400642 }, + { "lat": 40.7897232, "lon": -73.9399951 }, + { "lat": 40.7901095, "lon": -73.9397132 }, + { "lat": 40.7902626, "lon": -73.9396014 }, + { "lat": 40.7902846, "lon": -73.9395853 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420885234, + "bounds": { + "minlat": 40.7911013, + "minlon": -73.9389920, + "maxlat": 40.7915669, + "maxlon": -73.9386452 + }, + "nodes": [ + 4207779532, + 3514651038, + 7777426433, + 42456107 + ], + "geometry": [ + { "lat": 40.7911013, "lon": -73.9389920 }, + { "lat": 40.7913953, "lon": -73.9387693 }, + { "lat": 40.7915081, "lon": -73.9386872 }, + { "lat": 40.7915669, "lon": -73.9386452 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420885235, + "bounds": { + "minlat": 40.7919080, + "minlon": -73.9415030, + "maxlat": 40.7922238, + "maxlon": -73.9412646 + }, + "nodes": [ + 4207779533, + 7587374458, + 7777321759, + 42436651 + ], + "geometry": [ + { "lat": 40.7922238, "lon": -73.9412646 }, + { "lat": 40.7921841, "lon": -73.9412937 }, + { "lat": 40.7919947, "lon": -73.9414372 }, + { "lat": 40.7919080, "lon": -73.9415030 } + ], + "tags": { + "alt_name:ko": "2번가", + "construction": "minor", + "cycleway:left": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:right": "parallel", + "sidewalk": "both", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420885236, + "bounds": { + "minlat": 40.7947878, + "minlon": -73.9393960, + "maxlat": 40.7950753, + "maxlon": -73.9391857 + }, + "nodes": [ + 42443081, + 7924346753, + 4207779535 + ], + "geometry": [ + { "lat": 40.7950753, "lon": -73.9391857 }, + { "lat": 40.7950150, "lon": -73.9392296 }, + { "lat": 40.7947878, "lon": -73.9393960 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420885237, + "bounds": { + "minlat": 40.7950753, + "minlon": -73.9391857, + "maxlat": 40.7952457, + "maxlon": -73.9390579 + }, + "nodes": [ + 4207779536, + 7924346815, + 42443081 + ], + "geometry": [ + { "lat": 40.7952457, "lon": -73.9390579 }, + { "lat": 40.7951362, "lon": -73.9391408 }, + { "lat": 40.7950753, "lon": -73.9391857 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:right": "parallel", + "sidewalk:both": "separate", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420885238, + "bounds": { + "minlat": 40.7931803, + "minlon": -73.9405687, + "maxlat": 40.7933479, + "maxlon": -73.9404516 + }, + "nodes": [ + 4207779534, + 7924346748, + 42434386 + ], + "geometry": [ + { "lat": 40.7933479, "lon": -73.9404516 }, + { "lat": 40.7932480, "lon": -73.9405197 }, + { "lat": 40.7931803, "lon": -73.9405687 } + ], + "tags": { + "alt_name:ko": "2번가", + "construction": "minor", + "cycleway:left": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420885239, + "bounds": { + "minlat": 40.7944609, + "minlon": -73.9396345, + "maxlat": 40.7947878, + "maxlon": -73.9393960 + }, + "nodes": [ + 4207779535, + 7924346780, + 42443078 + ], + "geometry": [ + { "lat": 40.7947878, "lon": -73.9393960 }, + { "lat": 40.7945557, "lon": -73.9395657 }, + { "lat": 40.7944609, "lon": -73.9396345 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:right": "parallel", + "sidewalk": "both", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420885240, + "bounds": { + "minlat": 40.7906269, + "minlon": -73.9424329, + "maxlat": 40.7910887, + "maxlon": -73.9420962 + }, + "nodes": [ + 4207779531, + 6139477298, + 6216541842, + 42443068 + ], + "geometry": [ + { "lat": 40.7910887, "lon": -73.9420962 }, + { "lat": 40.7908101, "lon": -73.9423000 }, + { "lat": 40.7907212, "lon": -73.9423645 }, + { "lat": 40.7906269, "lon": -73.9424329 } + ], + "tags": { + "alt_name:ko": "2번가", + "construction": "minor", + "cycleway:left": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420885241, + "bounds": { + "minlat": 40.7910887, + "minlon": -73.9420962, + "maxlat": 40.7919080, + "maxlon": -73.9415030 + }, + "nodes": [ + 42436651, + 7777321766, + 5481998032, + 5481998042, + 7787545804, + 5649441899, + 4207779531 + ], + "geometry": [ + { "lat": 40.7919080, "lon": -73.9415030 }, + { "lat": 40.7918332, "lon": -73.9415574 }, + { "lat": 40.7917909, "lon": -73.9415880 }, + { "lat": 40.7917145, "lon": -73.9416435 }, + { "lat": 40.7915482, "lon": -73.9417642 }, + { "lat": 40.7912325, "lon": -73.9419933 }, + { "lat": 40.7910887, "lon": -73.9420962 } + ], + "tags": { + "alt_name:ko": "2번가", + "construction": "minor", + "cycleway:left": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420885242, + "bounds": { + "minlat": 40.7963136, + "minlon": -73.9382919, + "maxlat": 40.7970162, + "maxlon": -73.9377697 + }, + "nodes": [ + 42443085, + 10170834272, + 6162524941, + 7924346897, + 4207962275 + ], + "geometry": [ + { "lat": 40.7970162, "lon": -73.9377697 }, + { "lat": 40.7969176, "lon": -73.9378432 }, + { "lat": 40.7965970, "lon": -73.9380782 }, + { "lat": 40.7963881, "lon": -73.9382356 }, + { "lat": 40.7963136, "lon": -73.9382919 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420885243, + "bounds": { + "minlat": 40.7933479, + "minlon": -73.9404516, + "maxlat": 40.7944609, + "maxlon": -73.9396345 + }, + "nodes": [ + 42443078, + 7924346644, + 7924346746, + 42443077, + 7924346603, + 7787545813, + 4207779534 + ], + "geometry": [ + { "lat": 40.7944609, "lon": -73.9396345 }, + { "lat": 40.7943970, "lon": -73.9396814 }, + { "lat": 40.7938765, "lon": -73.9400634 }, + { "lat": 40.7938155, "lon": -73.9401082 }, + { "lat": 40.7937633, "lon": -73.9401461 }, + { "lat": 40.7935679, "lon": -73.9402877 }, + { "lat": 40.7933479, "lon": -73.9404516 } + ], + "tags": { + "alt_name:ko": "2번가", + "construction": "minor", + "cycleway:left": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420885244, + "bounds": { + "minlat": 40.7899429, + "minlon": -73.9429284, + "maxlat": 40.7906269, + "maxlon": -73.9424329 + }, + "nodes": [ + 42443068, + 6216541823, + 6216628260, + 6216628261, + 42443066 + ], + "geometry": [ + { "lat": 40.7906269, "lon": -73.9424329 }, + { "lat": 40.7905284, "lon": -73.9425043 }, + { "lat": 40.7902311, "lon": -73.9427196 }, + { "lat": 40.7900077, "lon": -73.9428815 }, + { "lat": 40.7899429, "lon": -73.9429284 } + ], + "tags": { + "alt_name:ko": "2번가", + "construction": "minor", + "cycleway:left": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420886241, + "bounds": { + "minlat": 40.7850062, + "minlon": -73.9434364, + "maxlat": 40.7851720, + "maxlon": -73.9433191 + }, + "nodes": [ + 4207786971, + 4980915602, + 42445263 + ], + "geometry": [ + { "lat": 40.7850062, "lon": -73.9434364 }, + { "lat": 40.7851129, "lon": -73.9433625 }, + { "lat": 40.7851720, "lon": -73.9433191 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886244, + "bounds": { + "minlat": 40.7880971, + "minlon": -73.9411815, + "maxlat": 40.7883247, + "maxlon": -73.9410152 + }, + "nodes": [ + 4207786976, + 6191027358, + 42436630 + ], + "geometry": [ + { "lat": 40.7880971, "lon": -73.9411815 }, + { "lat": 40.7882721, "lon": -73.9410532 }, + { "lat": 40.7883247, "lon": -73.9410152 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886246, + "bounds": { + "minlat": 40.7864380, + "minlon": -73.9423950, + "maxlat": 40.7868609, + "maxlon": -73.9420879 + }, + "nodes": [ + 42438973, + 6190264186, + 4207786974 + ], + "geometry": [ + { "lat": 40.7864380, "lon": -73.9423950 }, + { "lat": 40.7865046, "lon": -73.9423465 }, + { "lat": 40.7868609, "lon": -73.9420879 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886247, + "bounds": { + "minlat": 40.7823508, + "minlon": -73.9453785, + "maxlat": 40.7825675, + "maxlon": -73.9452196 + }, + "nodes": [ + 4207786968, + 6181480002, + 42434179 + ], + "geometry": [ + { "lat": 40.7823508, "lon": -73.9453785 }, + { "lat": 40.7825197, "lon": -73.9452548 }, + { "lat": 40.7825675, "lon": -73.9452196 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886249, + "bounds": { + "minlat": 40.7837737, + "minlon": -73.9443440, + "maxlat": 40.7839383, + "maxlon": -73.9442196 + }, + "nodes": [ + 4207786970, + 4980915605, + 42449010 + ], + "geometry": [ + { "lat": 40.7837737, "lon": -73.9443440 }, + { "lat": 40.7838768, "lon": -73.9442667 }, + { "lat": 40.7839383, "lon": -73.9442196 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886250, + "bounds": { + "minlat": 40.7851720, + "minlon": -73.9433191, + "maxlat": 40.7862952, + "maxlon": -73.9425036 + }, + "nodes": [ + 42445263, + 4980915600, + 5482216750, + 4980852221, + 42456091, + 4980852222, + 4207786973 + ], + "geometry": [ + { "lat": 40.7851720, "lon": -73.9433191 }, + { "lat": 40.7852420, "lon": -73.9432671 }, + { "lat": 40.7855315, "lon": -73.9430555 }, + { "lat": 40.7857585, "lon": -73.9428888 }, + { "lat": 40.7858143, "lon": -73.9428466 }, + { "lat": 40.7858692, "lon": -73.9428035 }, + { "lat": 40.7862952, "lon": -73.9425036 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886251, + "bounds": { + "minlat": 40.7891834, + "minlon": -73.9403834, + "maxlat": 40.7896284, + "maxlon": -73.9400642 + }, + "nodes": [ + 4207786978, + 5481998050, + 6216541833, + 42450468 + ], + "geometry": [ + { "lat": 40.7891834, "lon": -73.9403834 }, + { "lat": 40.7894353, "lon": -73.9402030 }, + { "lat": 40.7895303, "lon": -73.9401347 }, + { "lat": 40.7896284, "lon": -73.9400642 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886252, + "bounds": { + "minlat": 40.7875249, + "minlon": -73.9415975, + "maxlat": 40.7876920, + "maxlon": -73.9414780 + }, + "nodes": [ + 4207786975, + 6191027369, + 42434910 + ], + "geometry": [ + { "lat": 40.7875249, "lon": -73.9415975 }, + { "lat": 40.7876323, "lon": -73.9415207 }, + { "lat": 40.7876920, "lon": -73.9414780 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886254, + "bounds": { + "minlat": 40.7883247, + "minlon": -73.9410152, + "maxlat": 40.7884576, + "maxlon": -73.9409170 + }, + "nodes": [ + 42436630, + 6191027327, + 4207786977 + ], + "geometry": [ + { "lat": 40.7883247, "lon": -73.9410152 }, + { "lat": 40.7883771, "lon": -73.9409760 }, + { "lat": 40.7884576, "lon": -73.9409170 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886255, + "bounds": { + "minlat": 40.7884576, + "minlon": -73.9409170, + "maxlat": 40.7889397, + "maxlon": -73.9405592 + }, + "nodes": [ + 4207786977, + 6191027298, + 42456101 + ], + "geometry": [ + { "lat": 40.7884576, "lon": -73.9409170 }, + { "lat": 40.7888945, "lon": -73.9405926 }, + { "lat": 40.7889397, "lon": -73.9405592 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886256, + "bounds": { + "minlat": 40.7813177, + "minlon": -73.9461351, + "maxlat": 40.7823508, + "maxlon": -73.9453785 + }, + "nodes": [ + 42452814, + 6181709396, + 6181480023, + 42444506, + 6181478355, + 5482216792, + 4207786968 + ], + "geometry": [ + { "lat": 40.7813177, "lon": -73.9461351 }, + { "lat": 40.7813778, "lon": -73.9460910 }, + { "lat": 40.7818925, "lon": -73.9457103 }, + { "lat": 40.7819470, "lon": -73.9456700 }, + { "lat": 40.7820060, "lon": -73.9456275 }, + { "lat": 40.7820331, "lon": -73.9456081 }, + { "lat": 40.7823508, "lon": -73.9453785 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886259, + "bounds": { + "minlat": 40.7862952, + "minlon": -73.9425036, + "maxlat": 40.7864380, + "maxlon": -73.9423950 + }, + "nodes": [ + 4207786973, + 6190263577, + 42438973 + ], + "geometry": [ + { "lat": 40.7862952, "lon": -73.9425036 }, + { "lat": 40.7863870, "lon": -73.9424316 }, + { "lat": 40.7864380, "lon": -73.9423950 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886260, + "bounds": { + "minlat": 40.7868609, + "minlon": -73.9420879, + "maxlat": 40.7870603, + "maxlon": -73.9419364 + }, + "nodes": [ + 4207786974, + 3007111767, + 42430488 + ], + "geometry": [ + { "lat": 40.7868609, "lon": -73.9420879 }, + { "lat": 40.7870075, "lon": -73.9419753 }, + { "lat": 40.7870603, "lon": -73.9419364 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886261, + "bounds": { + "minlat": 40.7876920, + "minlon": -73.9414780, + "maxlat": 40.7880971, + "maxlon": -73.9411815 + }, + "nodes": [ + 42434910, + 6191027326, + 3519902038, + 4207786976 + ], + "geometry": [ + { "lat": 40.7876920, "lon": -73.9414780 }, + { "lat": 40.7877532, "lon": -73.9414332 }, + { "lat": 40.7879238, "lon": -73.9413083 }, + { "lat": 40.7880971, "lon": -73.9411815 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886262, + "bounds": { + "minlat": 40.7870603, + "minlon": -73.9419364, + "maxlat": 40.7875249, + "maxlon": -73.9415975 + }, + "nodes": [ + 42430488, + 3007111769, + 4207786975 + ], + "geometry": [ + { "lat": 40.7870603, "lon": -73.9419364 }, + { "lat": 40.7871278, "lon": -73.9418884 }, + { "lat": 40.7875249, "lon": -73.9415975 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420886395, + "bounds": { + "minlat": 40.7104554, + "minlon": -73.9660624, + "maxlat": 40.7105206, + "maxlon": -73.9654967 + }, + "nodes": [ + 4207788764, + 8468050561, + 9779538169, + 42505380 + ], + "geometry": [ + { "lat": 40.7105206, "lon": -73.9660624 }, + { "lat": 40.7104727, "lon": -73.9656468 }, + { "lat": 40.7104671, "lon": -73.9655979 }, + { "lat": 40.7104554, "lon": -73.9654967 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Broadway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "turn:lanes": "left|", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 420886396, + "bounds": { + "minlat": 40.7106085, + "minlon": -73.9667521, + "maxlat": 40.7106663, + "maxlon": -73.9662060 + }, + "nodes": [ + 4207788766, + 8468050574, + 9785653024, + 4207788767 + ], + "geometry": [ + { "lat": 40.7106085, "lon": -73.9662060 }, + { "lat": 40.7106537, "lon": -73.9666326 }, + { "lat": 40.7106596, "lon": -73.9666889 }, + { "lat": 40.7106663, "lon": -73.9667521 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Broadway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "turn:lanes": "left|", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 420886397, + "bounds": { + "minlat": 40.7105206, + "minlon": -73.9667821, + "maxlat": 40.7106006, + "maxlon": -73.9660624 + }, + "nodes": [ + 42505376, + 9785653023, + 11163899199, + 4207788764 + ], + "geometry": [ + { "lat": 40.7106006, "lon": -73.9667821 }, + { "lat": 40.7105931, "lon": -73.9667146 }, + { "lat": 40.7105389, "lon": -73.9662267 }, + { "lat": 40.7105206, "lon": -73.9660624 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 420886399, + "bounds": { + "minlat": 40.7106663, + "minlon": -73.9684877, + "maxlat": 40.7108555, + "maxlon": -73.9667521 + }, + "nodes": [ + 4207788767, + 9785653022, + 11163899198, + 4207788769, + 8468050584, + 9968370323, + 42469454 + ], + "geometry": [ + { "lat": 40.7106663, "lon": -73.9667521 }, + { "lat": 40.7106780, "lon": -73.9668606 }, + { "lat": 40.7107046, "lon": -73.9671059 }, + { "lat": 40.7107634, "lon": -73.9676475 }, + { "lat": 40.7108423, "lon": -73.9683696 }, + { "lat": 40.7108471, "lon": -73.9684100 }, + { "lat": 40.7108555, "lon": -73.9684877 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 420886402, + "bounds": { + "minlat": 40.7102412, + "minlon": -73.9638637, + "maxlat": 40.7103485, + "maxlon": -73.9633041 + }, + "nodes": [ + 42505383, + 9990599500, + 9990599495 + ], + "geometry": [ + { "lat": 40.7102412, "lon": -73.9633041 }, + { "lat": 40.7103400, "lon": -73.9637804 }, + { "lat": 40.7103485, "lon": -73.9638637 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "turn:lanes": "through|right", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 420886628, + "bounds": { + "minlat": 40.7837503, + "minlon": -73.9470901, + "maxlat": 40.7842494, + "maxlon": -73.9459059 + }, + "nodes": [ + 42443054, + 7649571481, + 5653832464 + ], + "geometry": [ + { "lat": 40.7842494, "lon": -73.9470901 }, + { "lat": 40.7841966, "lon": -73.9469689 }, + { "lat": 40.7837503, "lon": -73.9459059 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:backward": "left|through|through", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420888140, + "bounds": { + "minlat": 40.7047291, + "minlon": -74.0153824, + "maxlat": 40.7048054, + "maxlon": -74.0149870 + }, + "nodes": [ + 2889562918, + 9371204346, + 1772136805, + 3914862593 + ], + "geometry": [ + { "lat": 40.7048054, "lon": -74.0153824 }, + { "lat": 40.7047616, "lon": -74.0151437 }, + { "lat": 40.7047482, "lon": -74.0150830 }, + { "lat": 40.7047291, "lon": -74.0149870 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Battery", + "tiger:name_type": "Pl", + "turn:lanes": "left||", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 420888143, + "bounds": { + "minlat": 40.7047980, + "minlon": -74.0167012, + "maxlat": 40.7048188, + "maxlon": -74.0164093 + }, + "nodes": [ + 4207802391, + 9371204343, + 11416159787, + 4145439094, + 1772136801 + ], + "geometry": [ + { "lat": 40.7048188, "lon": -74.0167012 }, + { "lat": 40.7048091, "lon": -74.0166451 }, + { "lat": 40.7048003, "lon": -74.0165734 }, + { "lat": 40.7047980, "lon": -74.0165258 }, + { "lat": 40.7048009, "lon": -74.0164093 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Battery", + "tiger:name_type": "Pl", + "turn:lanes": "left;through|through", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 420888144, + "bounds": { + "minlat": 40.7048802, + "minlon": -74.0164104, + "maxlat": 40.7049430, + "maxlon": -74.0156386 + }, + "nodes": [ + 588546882, + 4145439101, + 4145439092, + 1772136808, + 4207802392, + 13370139580, + 2034011088, + 11416159788, + 246923513 + ], + "geometry": [ + { "lat": 40.7049418, "lon": -74.0156386 }, + { "lat": 40.7049430, "lon": -74.0157616 }, + { "lat": 40.7049401, "lon": -74.0158201 }, + { "lat": 40.7049338, "lon": -74.0159380 }, + { "lat": 40.7049227, "lon": -74.0160524 }, + { "lat": 40.7049087, "lon": -74.0162164 }, + { "lat": 40.7049025, "lon": -74.0162893 }, + { "lat": 40.7048933, "lon": -74.0163476 }, + { "lat": 40.7048802, "lon": -74.0164104 } + ], + "tags": { + "bus:lanes": "yes|yes|designated", + "busway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "name_1": "Battery Place", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bowling Grn", + "tiger:name_base_1": "Battery", + "tiger:name_type": "Pl", + "tiger:name_type_1": "Pl", + "tiger:zip_left": "10280", + "tiger:zip_right": "10280", + "turn:lanes": "through;right|right|", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 420888146, + "bounds": { + "minlat": 40.7045416, + "minlon": -74.0149870, + "maxlat": 40.7047291, + "maxlon": -74.0142564 + }, + "nodes": [ + 3914862593, + 4145586922, + 9898775057, + 9371204482, + 4145586937, + 4145586929, + 4145586942, + 2012177085, + 9371204507, + 10316226200, + 9898775056, + 588546891 + ], + "geometry": [ + { "lat": 40.7047291, "lon": -74.0149870 }, + { "lat": 40.7047069, "lon": -74.0148870 }, + { "lat": 40.7047018, "lon": -74.0148632 }, + { "lat": 40.7046889, "lon": -74.0148028 }, + { "lat": 40.7046622, "lon": -74.0146898 }, + { "lat": 40.7046323, "lon": -74.0145697 }, + { "lat": 40.7046009, "lon": -74.0144688 }, + { "lat": 40.7045754, "lon": -74.0144028 }, + { "lat": 40.7045548, "lon": -74.0143377 }, + { "lat": 40.7045473, "lon": -74.0143056 }, + { "lat": 40.7045431, "lon": -74.0142759 }, + { "lat": 40.7045416, "lon": -74.0142564 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Battery", + "tiger:name_type": "Pl", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 420888147, + "bounds": { + "minlat": 40.7120310, + "minlon": -74.0061073, + "maxlat": 40.7121302, + "maxlon": -74.0056926 + }, + "nodes": [ + 2821304146, + 4207802394, + 6990788776, + 2821304145 + ], + "geometry": [ + { "lat": 40.7121302, "lon": -74.0056926 }, + { "lat": 40.7121132, "lon": -74.0057576 }, + { "lat": 40.7120467, "lon": -74.0060334 }, + { "lat": 40.7120310, "lon": -74.0061073 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 420888150, + "bounds": { + "minlat": 40.7118341, + "minlon": -74.0051846, + "maxlat": 40.7121568, + "maxlon": -74.0038751 + }, + "nodes": [ + 4143876126, + 12196111473, + 4143876127, + 12196111472, + 4143876129, + 12196111471, + 4143876134, + 4143876132, + 278640455, + 12196111470, + 278640456, + 12196111469, + 1272562691, + 12196111468, + 1272562693, + 1272562815, + 278640085, + 4143885429, + 4143885422, + 1272562937, + 12196111467, + 1272562766, + 1272562764 + ], + "geometry": [ + { "lat": 40.7119017, "lon": -74.0038751 }, + { "lat": 40.7118670, "lon": -74.0040248 }, + { "lat": 40.7118567, "lon": -74.0040734 }, + { "lat": 40.7118481, "lon": -74.0041127 }, + { "lat": 40.7118413, "lon": -74.0041514 }, + { "lat": 40.7118363, "lon": -74.0041974 }, + { "lat": 40.7118341, "lon": -74.0042395 }, + { "lat": 40.7118342, "lon": -74.0042846 }, + { "lat": 40.7118389, "lon": -74.0043413 }, + { "lat": 40.7118454, "lon": -74.0043862 }, + { "lat": 40.7118535, "lon": -74.0044285 }, + { "lat": 40.7118652, "lon": -74.0044756 }, + { "lat": 40.7118802, "lon": -74.0045257 }, + { "lat": 40.7118957, "lon": -74.0045687 }, + { "lat": 40.7119119, "lon": -74.0046085 }, + { "lat": 40.7119298, "lon": -74.0046458 }, + { "lat": 40.7120666, "lon": -74.0048931 }, + { "lat": 40.7120858, "lon": -74.0049337 }, + { "lat": 40.7121040, "lon": -74.0049835 }, + { "lat": 40.7121219, "lon": -74.0050343 }, + { "lat": 40.7121373, "lon": -74.0050884 }, + { "lat": 40.7121494, "lon": -74.0051394 }, + { "lat": 40.7121568, "lon": -74.0051846 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420888151, + "bounds": { + "minlat": 40.7068404, + "minlon": -74.0158656, + "maxlat": 40.7070752, + "maxlon": -74.0157726 + }, + "nodes": [ + 4207802393, + 8821317921, + 246911576 + ], + "geometry": [ + { "lat": 40.7068404, "lon": -74.0158656 }, + { "lat": 40.7069934, "lon": -74.0158027 }, + { "lat": 40.7070752, "lon": -74.0157726 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "destination:lanes": "|||Hugh L Carey Tunnel;Brooklyn|Hugh L Carey Tunnel;Brooklyn", + "expressway": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "through|through|through|right|right", + "unsigned_ref": "NY 907L", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420888152, + "bounds": { + "minlat": 40.7066739, + "minlon": -74.0159381, + "maxlat": 40.7068404, + "maxlon": -74.0158656 + }, + "nodes": [ + 42451370, + 4207802393 + ], + "geometry": [ + { "lat": 40.7066739, "lon": -74.0159381 }, + { "lat": 40.7068404, "lon": -74.0158656 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "expressway": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "|||right|right", + "unsigned_ref": "NY 907L", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 420890022, + "bounds": { + "minlat": 40.7671259, + "minlon": -73.9825662, + "maxlat": 40.7673998, + "maxlon": -73.9823637 + }, + "nodes": [ + 4207815982, + 7597291081, + 42435716 + ], + "geometry": [ + { "lat": 40.7671259, "lon": -73.9825662 }, + { "lat": 40.7673308, "lon": -73.9824132 }, + { "lat": 40.7673998, "lon": -73.9823637 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420890023, + "bounds": { + "minlat": 40.7673998, + "minlon": -73.9823637, + "maxlat": 40.7677052, + "maxlon": -73.9820870 + }, + "nodes": [ + 42435716, + 7597291080, + 8821677083, + 1792549689, + 13051842068, + 13051842074, + 13051842073, + 13051842072, + 13051842071, + 1825841704 + ], + "geometry": [ + { "lat": 40.7673998, "lon": -73.9823637 }, + { "lat": 40.7674722, "lon": -73.9823072 }, + { "lat": 40.7675366, "lon": -73.9822644 }, + { "lat": 40.7675928, "lon": -73.9822248 }, + { "lat": 40.7676098, "lon": -73.9822130 }, + { "lat": 40.7676356, "lon": -73.9821925 }, + { "lat": 40.7676610, "lon": -73.9821674 }, + { "lat": 40.7676821, "lon": -73.9821395 }, + { "lat": 40.7676919, "lon": -73.9821211 }, + { "lat": 40.7677052, "lon": -73.9820870 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right|right|right|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420890024, + "bounds": { + "minlat": 40.7645718, + "minlon": -73.9844363, + "maxlat": 40.7647981, + "maxlon": -73.9842688 + }, + "nodes": [ + 4207815980, + 10085059405, + 42435707 + ], + "geometry": [ + { "lat": 40.7645718, "lon": -73.9844363 }, + { "lat": 40.7647415, "lon": -73.9843107 }, + { "lat": 40.7647981, "lon": -73.9842688 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420890025, + "bounds": { + "minlat": 40.7647981, + "minlon": -73.9842688, + "maxlat": 40.7652778, + "maxlon": -73.9839323 + }, + "nodes": [ + 42435707, + 10085059404, + 4207815981 + ], + "geometry": [ + { "lat": 40.7647981, "lon": -73.9842688 }, + { "lat": 40.7648556, "lon": -73.9842285 }, + { "lat": 40.7652778, "lon": -73.9839323 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420890026, + "bounds": { + "minlat": 40.7640077, + "minlon": -73.9848520, + "maxlat": 40.7641596, + "maxlon": -73.9847413 + }, + "nodes": [ + 4207815979, + 10087052496, + 42435705 + ], + "geometry": [ + { "lat": 40.7640077, "lon": -73.9848520 }, + { "lat": 40.7641116, "lon": -73.9847762 }, + { "lat": 40.7641596, "lon": -73.9847413 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|through|through|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420890027, + "bounds": { + "minlat": 40.7652778, + "minlon": -73.9839323, + "maxlat": 40.7654396, + "maxlon": -73.9838209 + }, + "nodes": [ + 4207815981, + 10085037830, + 9140929840, + 42435710 + ], + "geometry": [ + { "lat": 40.7652778, "lon": -73.9839323 }, + { "lat": 40.7653707, "lon": -73.9838700 }, + { "lat": 40.7653917, "lon": -73.9838559 }, + { "lat": 40.7654396, "lon": -73.9838209 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|through|through|through|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420890028, + "bounds": { + "minlat": 40.7641596, + "minlon": -73.9847413, + "maxlat": 40.7645718, + "maxlon": -73.9844363 + }, + "nodes": [ + 42435705, + 10087063266, + 4207815980 + ], + "geometry": [ + { "lat": 40.7641596, "lon": -73.9847413 }, + { "lat": 40.7642325, "lon": -73.9846873 }, + { "lat": 40.7645718, "lon": -73.9844363 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420890029, + "bounds": { + "minlat": 40.7654396, + "minlon": -73.9838209, + "maxlat": 40.7660319, + "maxlon": -73.9833766 + }, + "nodes": [ + 42435710, + 10085019655, + 10084864187, + 42431556 + ], + "geometry": [ + { "lat": 40.7654396, "lon": -73.9838209 }, + { "lat": 40.7654863, "lon": -73.9837859 }, + { "lat": 40.7659917, "lon": -73.9834067 }, + { "lat": 40.7660319, "lon": -73.9833766 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420890069, + "bounds": { + "minlat": 40.7090266, + "minlon": -73.9968491, + "maxlat": 40.7093261, + "maxlon": -73.9947074 + }, + "nodes": [ + 205024443, + 205024444 + ], + "geometry": [ + { "lat": 40.7093261, "lon": -73.9947074 }, + { "lat": 40.7090266, "lon": -73.9968491 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "turn:lanes": "|right|right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 420890074, + "bounds": { + "minlat": 40.7101928, + "minlon": -74.0011123, + "maxlat": 40.7105451, + "maxlon": -74.0008579 + }, + "nodes": [ + 3884569931, + 5708198394, + 4207806921 + ], + "geometry": [ + { "lat": 40.7101928, "lon": -74.0011123 }, + { "lat": 40.7102903, "lon": -74.0010455 }, + { "lat": 40.7105451, "lon": -74.0008579 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 08:00-18:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left;through|", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420890077, + "bounds": { + "minlat": 40.7105451, + "minlon": -74.0008579, + "maxlat": 40.7109994, + "maxlon": -74.0004898 + }, + "nodes": [ + 4207806921, + 1541937887, + 5708198395, + 42444277 + ], + "geometry": [ + { "lat": 40.7105451, "lon": -74.0008579 }, + { "lat": 40.7108282, "lon": -74.0006530 }, + { "lat": 40.7108966, "lon": -74.0005970 }, + { "lat": 40.7109994, "lon": -74.0004898 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 08:00-18:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420890080, + "bounds": { + "minlat": 40.7098281, + "minlon": -73.9918918, + "maxlat": 40.7105113, + "maxlon": -73.9917770 + }, + "nodes": [ + 42444129, + 7787627748, + 7787627732 + ], + "geometry": [ + { "lat": 40.7098281, "lon": -73.9917770 }, + { "lat": 40.7099255, "lon": -73.9917925 }, + { "lat": 40.7105113, "lon": -73.9918918 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Pike Slip", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 슬립", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420890085, + "bounds": { + "minlat": 40.7097965, + "minlon": -73.9922162, + "maxlat": 40.7109120, + "maxlon": -73.9919815 + }, + "nodes": [ + 4207806923, + 7787627741, + 11631728266, + 11631728265, + 7480515818, + 3212472602, + 42444123 + ], + "geometry": [ + { "lat": 40.7109120, "lon": -73.9922162 }, + { "lat": 40.7108321, "lon": -73.9921787 }, + { "lat": 40.7107915, "lon": -73.9921624 }, + { "lat": 40.7107423, "lon": -73.9921459 }, + { "lat": 40.7106582, "lon": -73.9921264 }, + { "lat": 40.7098945, "lon": -73.9919996 }, + { "lat": 40.7097965, "lon": -73.9919815 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Pike Slip", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 슬립", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 420892262, + "bounds": { + "minlat": 40.7682703, + "minlon": -73.9854592, + "maxlat": 40.7685979, + "maxlon": -73.9852202 + }, + "nodes": [ + 42445039, + 10082615957, + 4207837427 + ], + "geometry": [ + { "lat": 40.7685979, "lon": -73.9852202 }, + { "lat": 40.7685368, "lon": -73.9852647 }, + { "lat": 40.7682703, "lon": -73.9854592 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420892263, + "bounds": { + "minlat": 40.7674343, + "minlon": -73.9860654, + "maxlat": 40.7679160, + "maxlon": -73.9857183 + }, + "nodes": [ + 42445037, + 10082707744, + 4207837426 + ], + "geometry": [ + { "lat": 40.7679160, "lon": -73.9857183 }, + { "lat": 40.7678233, "lon": -73.9857850 }, + { "lat": 40.7674343, "lon": -73.9860654 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420892264, + "bounds": { + "minlat": 40.7672471, + "minlon": -73.9862074, + "maxlat": 40.7674343, + "maxlon": -73.9860654 + }, + "nodes": [ + 4207837426, + 10084204946, + 42431560 + ], + "geometry": [ + { "lat": 40.7674343, "lon": -73.9860654 }, + { "lat": 40.7673077, "lon": -73.9861614 }, + { "lat": 40.7672471, "lon": -73.9862074 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420892265, + "bounds": { + "minlat": 40.7666367, + "minlon": -73.9866680, + "maxlat": 40.7668725, + "maxlon": -73.9864901 + }, + "nodes": [ + 4207837425, + 10085021937, + 42440960 + ], + "geometry": [ + { "lat": 40.7668725, "lon": -73.9864901 }, + { "lat": 40.7666826, "lon": -73.9866333 }, + { "lat": 40.7666367, "lon": -73.9866680 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420892266, + "bounds": { + "minlat": 40.7679160, + "minlon": -73.9857183, + "maxlat": 40.7682703, + "maxlon": -73.9854592 + }, + "nodes": [ + 4207837427, + 10082657990, + 42445037 + ], + "geometry": [ + { "lat": 40.7682703, "lon": -73.9854592 }, + { "lat": 40.7680178, "lon": -73.9856413 }, + { "lat": 40.7679160, "lon": -73.9857183 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420892267, + "bounds": { + "minlat": 40.7685979, + "minlon": -73.9852202, + "maxlat": 40.7689144, + "maxlon": -73.9849943 + }, + "nodes": [ + 9457138082, + 10233493587, + 42445039 + ], + "geometry": [ + { "lat": 40.7689144, "lon": -73.9849943 }, + { "lat": 40.7686769, "lon": -73.9851638 }, + { "lat": 40.7685979, "lon": -73.9852202 } + ], + "tags": { + "covered": "no", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420892269, + "bounds": { + "minlat": 40.7662035, + "minlon": -73.9869801, + "maxlat": 40.7666367, + "maxlon": -73.9866680 + }, + "nodes": [ + 42440960, + 9140929827, + 10085021938, + 4207837424 + ], + "geometry": [ + { "lat": 40.7666367, "lon": -73.9866680 }, + { "lat": 40.7665903, "lon": -73.9866999 }, + { "lat": 40.7665704, "lon": -73.9867143 }, + { "lat": 40.7662035, "lon": -73.9869801 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420892270, + "bounds": { + "minlat": 40.7647531, + "minlon": -73.9880232, + "maxlat": 40.7649263, + "maxlon": -73.9878964 + }, + "nodes": [ + 4207837422, + 10073946217, + 42445027 + ], + "geometry": [ + { "lat": 40.7649263, "lon": -73.9878964 }, + { "lat": 40.7647956, "lon": -73.9879921 }, + { "lat": 40.7647531, "lon": -73.9880232 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420892271, + "bounds": { + "minlat": 40.7649263, + "minlon": -73.9878964, + "maxlat": 40.7653658, + "maxlon": -73.9875752 + }, + "nodes": [ + 1815133244, + 3463810248, + 4207837422 + ], + "geometry": [ + { "lat": 40.7653658, "lon": -73.9875752 }, + { "lat": 40.7653121, "lon": -73.9876156 }, + { "lat": 40.7649263, "lon": -73.9878964 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420892272, + "bounds": { + "minlat": 40.7655829, + "minlon": -73.9874205, + "maxlat": 40.7659937, + "maxlon": -73.9871254 + }, + "nodes": [ + 42445033, + 3463810251, + 4207837423 + ], + "geometry": [ + { "lat": 40.7659937, "lon": -73.9871254 }, + { "lat": 40.7659392, "lon": -73.9871652 }, + { "lat": 40.7655829, "lon": -73.9874205 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420892273, + "bounds": { + "minlat": 40.7653658, + "minlon": -73.9875752, + "maxlat": 40.7655829, + "maxlon": -73.9874205 + }, + "nodes": [ + 4207837423, + 3463810250, + 1815133244 + ], + "geometry": [ + { "lat": 40.7655829, "lon": -73.9874205 }, + { "lat": 40.7654264, "lon": -73.9875328 }, + { "lat": 40.7653658, "lon": -73.9875752 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420892274, + "bounds": { + "minlat": 40.7659937, + "minlon": -73.9871254, + "maxlat": 40.7662035, + "maxlon": -73.9869801 + }, + "nodes": [ + 4207837424, + 3463810252, + 42445033 + ], + "geometry": [ + { "lat": 40.7662035, "lon": -73.9869801 }, + { "lat": 40.7660519, "lon": -73.9870824 }, + { "lat": 40.7659937, "lon": -73.9871254 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|none|none", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420892275, + "bounds": { + "minlat": 40.7668725, + "minlon": -73.9864901, + "maxlat": 40.7672471, + "maxlon": -73.9862074 + }, + "nodes": [ + 42431560, + 10084910130, + 4207837425 + ], + "geometry": [ + { "lat": 40.7672471, "lon": -73.9862074 }, + { "lat": 40.7671884, "lon": -73.9862517 }, + { "lat": 40.7668725, "lon": -73.9864901 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894338, + "bounds": { + "minlat": 40.7683700, + "minlon": -73.9927860, + "maxlat": 40.7690170, + "maxlon": -73.9923216 + }, + "nodes": [ + 42430739, + 9140929822, + 10084943015, + 8307463093, + 42430736 + ], + "geometry": [ + { "lat": 40.7690170, "lon": -73.9923216 }, + { "lat": 40.7689717, "lon": -73.9923540 }, + { "lat": 40.7689532, "lon": -73.9923672 }, + { "lat": 40.7684430, "lon": -73.9927315 }, + { "lat": 40.7683700, "lon": -73.9927860 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894342, + "bounds": { + "minlat": 40.7703169, + "minlon": -73.9913932, + "maxlat": 40.7706271, + "maxlon": -73.9911705 + }, + "nodes": [ + 4207854754, + 7595748183, + 42430745 + ], + "geometry": [ + { "lat": 40.7706271, "lon": -73.9911705 }, + { "lat": 40.7704103, "lon": -73.9913261 }, + { "lat": 40.7703169, "lon": -73.9913932 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "1", + "lanes:forward": "4", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "sidewalk:both": "separate", + "turn:lanes:forward": "left|||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894352, + "bounds": { + "minlat": 40.7664978, + "minlon": -73.9941564, + "maxlat": 40.7671310, + "maxlon": -73.9936874 + }, + "nodes": [ + 42430713, + 8307463085, + 9900802716, + 42430707 + ], + "geometry": [ + { "lat": 40.7671310, "lon": -73.9936874 }, + { "lat": 40.7670708, "lon": -73.9937318 }, + { "lat": 40.7665607, "lon": -73.9941097 }, + { "lat": 40.7664978, "lon": -73.9941564 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|through|through;right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894362, + "bounds": { + "minlat": 40.7734893, + "minlon": -73.9890814, + "maxlat": 40.7738570, + "maxlon": -73.9888142 + }, + "nodes": [ + 42430981, + 7595748176, + 4207854757 + ], + "geometry": [ + { "lat": 40.7734893, "lon": -73.9890814 }, + { "lat": 40.7735521, "lon": -73.9890353 }, + { "lat": 40.7738570, "lon": -73.9888142 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894363, + "bounds": { + "minlat": 40.7731755, + "minlon": -73.9893106, + "maxlat": 40.7734893, + "maxlon": -73.9890814 + }, + "nodes": [ + 3956129964, + 7595763586, + 42430981 + ], + "geometry": [ + { "lat": 40.7731755, "lon": -73.9893106 }, + { "lat": 40.7734370, "lon": -73.9891197 }, + { "lat": 40.7734893, "lon": -73.9890814 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "turn:lanes:forward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894365, + "bounds": { + "minlat": 40.7741192, + "minlon": -73.9886248, + "maxlat": 40.7744271, + "maxlon": -73.9884009 + }, + "nodes": [ + 42430983, + 7595748175, + 7640353301 + ], + "geometry": [ + { "lat": 40.7741192, "lon": -73.9886248 }, + { "lat": 40.7741841, "lon": -73.9885751 }, + { "lat": 40.7744271, "lon": -73.9884009 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894366, + "bounds": { + "minlat": 40.7738570, + "minlon": -73.9888142, + "maxlat": 40.7741192, + "maxlon": -73.9886248 + }, + "nodes": [ + 4207854757, + 7595763590, + 42430983 + ], + "geometry": [ + { "lat": 40.7738570, "lon": -73.9888142 }, + { "lat": 40.7740586, "lon": -73.9886694 }, + { "lat": 40.7741192, "lon": -73.9886248 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "turn:lanes:forward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894367, + "bounds": { + "minlat": 40.7747427, + "minlon": -73.9881703, + "maxlat": 40.7750699, + "maxlon": -73.9879311 + }, + "nodes": [ + 42430984, + 9900687739, + 4207854760 + ], + "geometry": [ + { "lat": 40.7747427, "lon": -73.9881703 }, + { "lat": 40.7748081, "lon": -73.9881228 }, + { "lat": 40.7750699, "lon": -73.9879311 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894368, + "bounds": { + "minlat": 40.7728633, + "minlon": -73.9895402, + "maxlat": 40.7731755, + "maxlon": -73.9893106 + }, + "nodes": [ + 3956129964, + 7591060178, + 42421985 + ], + "geometry": [ + { "lat": 40.7731755, "lon": -73.9893106 }, + { "lat": 40.7729292, "lon": -73.9894890 }, + { "lat": 40.7728633, "lon": -73.9895402 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "turn:lanes:forward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894370, + "bounds": { + "minlat": 40.7757052, + "minlon": -73.9874708, + "maxlat": 40.7760235, + "maxlon": -73.9872396 + }, + "nodes": [ + 42430989, + 7050687037, + 4207854762 + ], + "geometry": [ + { "lat": 40.7760235, "lon": -73.9872396 }, + { "lat": 40.7759417, "lon": -73.9872986 }, + { "lat": 40.7757052, "lon": -73.9874708 } + ], + "tags": { + "cycleway:both": "no", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894373, + "bounds": { + "minlat": 40.7750699, + "minlon": -73.9879311, + "maxlat": 40.7753734, + "maxlon": -73.9877140 + }, + "nodes": [ + 4207854760, + 7595748184, + 42430985 + ], + "geometry": [ + { "lat": 40.7750699, "lon": -73.9879311 }, + { "lat": 40.7753081, "lon": -73.9877600 }, + { "lat": 40.7753734, "lon": -73.9877140 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894374, + "bounds": { + "minlat": 40.7724878, + "minlon": -73.9898127, + "maxlat": 40.7728633, + "maxlon": -73.9895402 + }, + "nodes": [ + 4207854755, + 12214804051, + 7591060177, + 42421985 + ], + "geometry": [ + { "lat": 40.7724878, "lon": -73.9898127 }, + { "lat": 40.7727671, "lon": -73.9896106 }, + { "lat": 40.7728031, "lon": -73.9895845 }, + { "lat": 40.7728633, "lon": -73.9895402 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894375, + "bounds": { + "minlat": 40.7794312, + "minlon": -73.9847552, + "maxlat": 40.7798127, + "maxlon": -73.9844806 + }, + "nodes": [ + 4207854764, + 9492556568, + 42431004 + ], + "geometry": [ + { "lat": 40.7794312, "lon": -73.9847552 }, + { "lat": 40.7797148, "lon": -73.9845490 }, + { "lat": 40.7798127, "lon": -73.9844806 } + ], + "tags": { + "cycleway:both": "no", + "goods": "no", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420894376, + "bounds": { + "minlat": 40.7722404, + "minlon": -73.9899959, + "maxlat": 40.7724878, + "maxlon": -73.9898127 + }, + "nodes": [ + 2061592973, + 7591060181, + 4207854755 + ], + "geometry": [ + { "lat": 40.7722404, "lon": -73.9899959 }, + { "lat": 40.7723029, "lon": -73.9899484 }, + { "lat": 40.7724878, "lon": -73.9898127 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420895276, + "bounds": { + "minlat": 40.7441160, + "minlon": -74.0085554, + "maxlat": 40.7443329, + "maxlon": -74.0085161 + }, + "nodes": [ + 8288270009, + 12161232341, + 8288270047 + ], + "geometry": [ + { "lat": 40.7443329, "lon": -74.0085161 }, + { "lat": 40.7441269, "lon": -74.0085534 }, + { "lat": 40.7441160, "lon": -74.0085554 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "no|not_left|yes|not_right|no|no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420895277, + "bounds": { + "minlat": 40.7447576, + "minlon": -74.0084387, + "maxlat": 40.7450299, + "maxlon": -74.0083895 + }, + "nodes": [ + 12098102323, + 246580346, + 11049420899 + ], + "geometry": [ + { "lat": 40.7450299, "lon": -74.0083895 }, + { "lat": 40.7448849, "lon": -74.0084157 }, + { "lat": 40.7447576, "lon": -74.0084387 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420895278, + "bounds": { + "minlat": 40.7328740, + "minlon": -74.0064136, + "maxlat": 40.7330707, + "maxlon": -74.0063829 + }, + "nodes": [ + 4207862996, + 11609529470, + 42436393 + ], + "geometry": [ + { "lat": 40.7328740, "lon": -74.0064136 }, + { "lat": 40.7330158, "lon": -74.0063915 }, + { "lat": 40.7330707, "lon": -74.0063829 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420895282, + "bounds": { + "minlat": 40.7302239, + "minlon": -74.0068382, + "maxlat": 40.7313315, + "maxlon": -74.0066591 + }, + "nodes": [ + 42436377, + 8214331018, + 8214320113, + 42436381, + 8214320112, + 4207862995 + ], + "geometry": [ + { "lat": 40.7302239, "lon": -74.0068382 }, + { "lat": 40.7302914, "lon": -74.0068272 }, + { "lat": 40.7308788, "lon": -74.0067316 }, + { "lat": 40.7309445, "lon": -74.0067210 }, + { "lat": 40.7310193, "lon": -74.0067090 }, + { "lat": 40.7313315, "lon": -74.0066591 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420895286, + "bounds": { + "minlat": 40.7431307, + "minlon": -74.0087459, + "maxlat": 40.7431598, + "maxlon": -74.0085446 + }, + "nodes": [ + 42445769, + 12161932051, + 12161932052, + 12161932053, + 12161932054, + 12161932055, + 12161932056, + 11027912161 + ], + "geometry": [ + { "lat": 40.7431598, "lon": -74.0085446 }, + { "lat": 40.7431593, "lon": -74.0085816 }, + { "lat": 40.7431579, "lon": -74.0086147 }, + { "lat": 40.7431553, "lon": -74.0086454 }, + { "lat": 40.7431515, "lon": -74.0086737 }, + { "lat": 40.7431473, "lon": -74.0086989 }, + { "lat": 40.7431397, "lon": -74.0087238 }, + { "lat": 40.7431307, "lon": -74.0087459 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 15th Street", + "name:ru": "Западная 15-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 420895408, + "bounds": { + "minlat": 40.8255672, + "minlon": -73.9361135, + "maxlat": 40.8259331, + "maxlon": -73.9358068 + }, + "nodes": [ + 2141026516, + 9150629569, + 12739219130, + 2141002595 + ], + "geometry": [ + { "lat": 40.8255672, "lon": -73.9361135 }, + { "lat": 40.8257045, "lon": -73.9359838 }, + { "lat": 40.8258906, "lon": -73.9358397 }, + { "lat": 40.8259331, "lon": -73.9358068 } + ], + "tags": { + "alt_name": "7th Ave", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name1": "7th Ave", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes": "through|", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420895412, + "bounds": { + "minlat": 40.8263479, + "minlon": -73.9354818, + "maxlat": 40.8266348, + "maxlon": -73.9352723 + }, + "nodes": [ + 4207863950, + 11218641141, + 371337227 + ], + "geometry": [ + { "lat": 40.8263479, "lon": -73.9354818 }, + { "lat": 40.8265824, "lon": -73.9353106 }, + { "lat": 40.8266348, "lon": -73.9352723 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes": "left;through|through", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420895416, + "bounds": { + "minlat": 40.8238216, + "minlon": -73.9373780, + "maxlat": 40.8241529, + "maxlon": -73.9371350 + }, + "nodes": [ + 4207863948, + 6975790928, + 10177607144, + 2141026509 + ], + "geometry": [ + { "lat": 40.8238216, "lon": -73.9373780 }, + { "lat": 40.8240028, "lon": -73.9372451 }, + { "lat": 40.8241056, "lon": -73.9371697 }, + { "lat": 40.8241529, "lon": -73.9371350 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420895421, + "bounds": { + "minlat": 40.8251560, + "minlon": -73.9364105, + "maxlat": 40.8255672, + "maxlon": -73.9361135 + }, + "nodes": [ + 4207863949, + 10177607156, + 9150629570, + 9150629571, + 2141026516 + ], + "geometry": [ + { "lat": 40.8251560, "lon": -73.9364105 }, + { "lat": 40.8253519, "lon": -73.9362690 }, + { "lat": 40.8253970, "lon": -73.9362364 }, + { "lat": 40.8254521, "lon": -73.9361966 }, + { "lat": 40.8255672, "lon": -73.9361135 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes": "left;through|through|", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420895425, + "bounds": { + "minlat": 40.8228991, + "minlon": -73.9380514, + "maxlat": 40.8238216, + "maxlon": -73.9373780 + }, + "nodes": [ + 2141026495, + 9557088482, + 10177607137, + 2141026548, + 10177607140, + 4207863948 + ], + "geometry": [ + { "lat": 40.8228991, "lon": -73.9380514 }, + { "lat": 40.8229661, "lon": -73.9380025 }, + { "lat": 40.8234773, "lon": -73.9376294 }, + { "lat": 40.8235315, "lon": -73.9375898 }, + { "lat": 40.8235881, "lon": -73.9375484 }, + { "lat": 40.8238216, "lon": -73.9373780 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420895434, + "bounds": { + "minlat": 40.8164449, + "minlon": -73.9195490, + "maxlat": 40.8165679, + "maxlon": -73.9190792 + }, + "nodes": [ + 9903127466, + 9903127468, + 42750596 + ], + "geometry": [ + { "lat": 40.8165679, "lon": -73.9195490 }, + { "lat": 40.8165453, "lon": -73.9194621 }, + { "lat": 40.8164449, "lon": -73.9190792 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "turn:lanes:backward": "left|through|right" + } +}, +{ + "type": "way", + "id": 420895440, + "bounds": { + "minlat": 40.8173962, + "minlon": -73.9232741, + "maxlat": 40.8175275, + "maxlon": -73.9227623 + }, + "nodes": [ + 4207863936, + 9903127460, + 42735692 + ], + "geometry": [ + { "lat": 40.8175275, "lon": -73.9232741 }, + { "lat": 40.8174271, "lon": -73.9228795 }, + { "lat": 40.8173962, "lon": -73.9227623 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 149th Street", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 420895448, + "bounds": { + "minlat": 40.8167696, + "minlon": -73.9218354, + "maxlat": 40.8171579, + "maxlon": -73.9203181 + }, + "nodes": [ + 42778551, + 4207863935 + ], + "geometry": [ + { "lat": 40.8171579, "lon": -73.9218354 }, + { "lat": 40.8167696, "lon": -73.9203181 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 149th Street", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 420895449, + "bounds": { + "minlat": 40.8161478, + "minlon": -73.9190792, + "maxlat": 40.8164449, + "maxlon": -73.9177346 + }, + "nodes": [ + 42761259, + 9903127467, + 42750596 + ], + "geometry": [ + { "lat": 40.8161478, "lon": -73.9177346 }, + { "lat": 40.8164208, "lon": -73.9188117 }, + { "lat": 40.8164449, "lon": -73.9190792 } + ], + "tags": { + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 420895450, + "bounds": { + "minlat": 40.8171579, + "minlon": -73.9227623, + "maxlat": 40.8173962, + "maxlon": -73.9218354 + }, + "nodes": [ + 42735692, + 9903127459, + 42778551 + ], + "geometry": [ + { "lat": 40.8173962, "lon": -73.9227623 }, + { "lat": 40.8173694, "lon": -73.9226586 }, + { "lat": 40.8171579, "lon": -73.9218354 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 149th Street", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "turn:lanes:backward": "left|through|" + } +}, +{ + "type": "way", + "id": 420895451, + "bounds": { + "minlat": 40.8193150, + "minlon": -73.9310840, + "maxlat": 40.8193917, + "maxlon": -73.9303313 + }, + "nodes": [ + 9166288605, + 11570004642, + 13246259562 + ], + "geometry": [ + { "lat": 40.8193917, "lon": -73.9310840 }, + { "lat": 40.8193316, "lon": -73.9304819 }, + { "lat": 40.8193150, "lon": -73.9303313 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "145th Street Bridge", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455", + "turn:lanes:forward": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 420895453, + "bounds": { + "minlat": 40.8283043, + "minlon": -73.9277579, + "maxlat": 40.8285627, + "maxlon": -73.9273359 + }, + "nodes": [ + 4207863955, + 7620717840, + 2829219659 + ], + "geometry": [ + { "lat": 40.8285627, "lon": -73.9277579 }, + { "lat": 40.8283904, "lon": -73.9274806 }, + { "lat": 40.8283043, "lon": -73.9273359 } + ], + "tags": { + "busway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes:forward": "|slight_right", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 420895454, + "bounds": { + "minlat": 40.8279732, + "minlon": -73.9268730, + "maxlat": 40.8281256, + "maxlon": -73.9263878 + }, + "nodes": [ + 4207863953, + 9910738422, + 7620717837, + 9166334413 + ], + "geometry": [ + { "lat": 40.8279732, "lon": -73.9263878 }, + { "lat": 40.8280869, "lon": -73.9267587 }, + { "lat": 40.8281138, "lon": -73.9268390 }, + { "lat": 40.8281256, "lon": -73.9268730 } + ], + "tags": { + "busway:left": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes:forward": "through|", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 420895456, + "bounds": { + "minlat": 40.8198648, + "minlon": -73.9306958, + "maxlat": 40.8205212, + "maxlon": -73.9305413 + }, + "nodes": [ + 11570004639, + 12123720020, + 42733542 + ], + "geometry": [ + { "lat": 40.8198648, "lon": -73.9305484 }, + { "lat": 40.8199996, "lon": -73.9305413 }, + { "lat": 40.8205212, "lon": -73.9306958 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 420895460, + "bounds": { + "minlat": 40.8184849, + "minlon": -73.9375793, + "maxlat": 40.8189083, + "maxlon": -73.9372652 + }, + "nodes": [ + 3099326122, + 9557086587, + 4207863939 + ], + "geometry": [ + { "lat": 40.8184849, "lon": -73.9375793 }, + { "lat": 40.8185560, "lon": -73.9375265 }, + { "lat": 40.8189083, "lon": -73.9372652 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "sidewalk": "separate", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420895461, + "bounds": { + "minlat": 40.8191777, + "minlon": -73.9372632, + "maxlat": 40.8194553, + "maxlon": -73.9370590 + }, + "nodes": [ + 4207863941, + 9557086592, + 42440385 + ], + "geometry": [ + { "lat": 40.8194553, "lon": -73.9370590 }, + { "lat": 40.8192452, "lon": -73.9372135 }, + { "lat": 40.8191777, "lon": -73.9372632 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "sidewalk": "separate", + "turn:lanes": "left|none|none|none", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420895462, + "bounds": { + "minlat": 40.8185482, + "minlon": -73.9377219, + "maxlat": 40.8187898, + "maxlon": -73.9375458 + }, + "nodes": [ + 4207863938, + 9557086588, + 42438275 + ], + "geometry": [ + { "lat": 40.8187898, "lon": -73.9375458 }, + { "lat": 40.8186202, "lon": -73.9376694 }, + { "lat": 40.8185482, "lon": -73.9377219 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "sidewalk": "separate", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420895463, + "bounds": { + "minlat": 40.8197420, + "minlon": -73.9366464, + "maxlat": 40.8200092, + "maxlon": -73.9364574 + }, + "nodes": [ + 3099326126, + 9557086551, + 4207863944 + ], + "geometry": [ + { "lat": 40.8197420, "lon": -73.9366464 }, + { "lat": 40.8197984, "lon": -73.9366065 }, + { "lat": 40.8200092, "lon": -73.9364574 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|right", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420895464, + "bounds": { + "minlat": 40.8189083, + "minlon": -73.9372652, + "maxlat": 40.8191141, + "maxlon": -73.9371126 + }, + "nodes": [ + 4207863939, + 9557086590, + 3099327965 + ], + "geometry": [ + { "lat": 40.8189083, "lon": -73.9372652 }, + { "lat": 40.8190676, "lon": -73.9371471 }, + { "lat": 40.8191141, "lon": -73.9371126 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "sidewalk": "separate", + "source": "Bing", + "turn:lanes": "left||", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420895465, + "bounds": { + "minlat": 40.8187898, + "minlon": -73.9375458, + "maxlat": 40.8191777, + "maxlon": -73.9372632 + }, + "nodes": [ + 42440385, + 9557086593, + 4207863938 + ], + "geometry": [ + { "lat": 40.8191777, "lon": -73.9372632 }, + { "lat": 40.8191313, "lon": -73.9372971 }, + { "lat": 40.8187898, "lon": -73.9375458 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "sidewalk": "separate", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420895466, + "bounds": { + "minlat": 40.8198059, + "minlon": -73.9367953, + "maxlat": 40.8204475, + "maxlon": -73.9362503 + }, + "nodes": [ + 42432659, + 9557088453, + 4207863947, + 8746052752, + 9557086554, + 4207863943 + ], + "geometry": [ + { "lat": 40.8204475, "lon": -73.9362503 }, + { "lat": 40.8203726, "lon": -73.9363652 }, + { "lat": 40.8203542, "lon": -73.9363913 }, + { "lat": 40.8202968, "lon": -73.9364339 }, + { "lat": 40.8198625, "lon": -73.9367561 }, + { "lat": 40.8198059, "lon": -73.9367953 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "sidewalk": "separate", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420895467, + "bounds": { + "minlat": 40.8173165, + "minlon": -73.9386193, + "maxlat": 40.8185482, + "maxlon": -73.9377219 + }, + "nodes": [ + 42438275, + 9557104475, + 9557104509, + 42440381, + 9557104510, + 9557104513, + 42433779 + ], + "geometry": [ + { "lat": 40.8185482, "lon": -73.9377219 }, + { "lat": 40.8184773, "lon": -73.9377754 }, + { "lat": 40.8179972, "lon": -73.9381233 }, + { "lat": 40.8179369, "lon": -73.9381673 }, + { "lat": 40.8178851, "lon": -73.9382050 }, + { "lat": 40.8173692, "lon": -73.9385809 }, + { "lat": 40.8173165, "lon": -73.9386193 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 420895468, + "bounds": { + "minlat": 40.8204475, + "minlon": -73.9380183, + "maxlat": 40.8211989, + "maxlon": -73.9362503 + }, + "nodes": [ + 42432659, + 9557088454, + 7662671172, + 7662671164, + 7662671181, + 9903127424 + ], + "geometry": [ + { "lat": 40.8204475, "lon": -73.9362503 }, + { "lat": 40.8205215, "lon": -73.9364112 }, + { "lat": 40.8209216, "lon": -73.9373605 }, + { "lat": 40.8210804, "lon": -73.9377371 }, + { "lat": 40.8211261, "lon": -73.9378456 }, + { "lat": 40.8211989, "lon": -73.9380183 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 145th Street", + "oneway": "no", + "sidewalk": "separate", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420895470, + "bounds": { + "minlat": 40.8291103, + "minlon": -73.9394610, + "maxlat": 40.8300931, + "maxlon": -73.9371436 + }, + "nodes": [ + 13333996914, + 13333996913, + 589927915 + ], + "geometry": [ + { "lat": 40.8291103, "lon": -73.9371436 }, + { "lat": 40.8292348, "lon": -73.9374259 }, + { "lat": 40.8300931, "lon": -73.9394610 } + ], + "tags": { + "alt_name": "Charles Hamilton Houston Boulevard", + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "description": "This honorary street name memorializes Charles Hamilton Houston.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "layer": "2", + "name": "West 155th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 420895471, + "bounds": { + "minlat": 40.8282585, + "minlon": -73.9371436, + "maxlat": 40.8291103, + "maxlon": -73.9351367 + }, + "nodes": [ + 13320112970, + 13333996914 + ], + "geometry": [ + { "lat": 40.8282585, "lon": -73.9351367 }, + { "lat": 40.8291103, "lon": -73.9371436 } + ], + "tags": { + "alt_name": "Charles Hamilton Houston Boulevard", + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "description": "This honorary street name memorializes Charles Hamilton Houston.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "layer": "2", + "name": "West 155th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "turn:lanes:backward": "through|through;right", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 420895732, + "bounds": { + "minlat": 40.7706042, + "minlon": -73.9932531, + "maxlat": 40.7710944, + "maxlon": -73.9920789 + }, + "nodes": [ + 4207865789, + 4870256103, + 7443617343 + ], + "geometry": [ + { "lat": 40.7706042, "lon": -73.9920789 }, + { "lat": 40.7707515, "lon": -73.9924314 }, + { "lat": 40.7710944, "lon": -73.9932531 } + ], + "tags": { + "access": "designated", + "foot": "designated", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "name_1": "West 57 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420895733, + "bounds": { + "minlat": 40.7800179, + "minlon": -73.9856862, + "maxlat": 40.7803110, + "maxlon": -73.9849613 + }, + "nodes": [ + 4207865790, + 9899952551, + 42424032 + ], + "geometry": [ + { "lat": 40.7800179, "lon": -73.9849613 }, + { "lat": 40.7802698, "lon": -73.9855826 }, + { "lat": 40.7803110, "lon": -73.9856862 } + ], + "tags": { + "alt_name": "West 72 Street", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|right", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420897710, + "bounds": { + "minlat": 40.8234557, + "minlon": -73.9243938, + "maxlat": 40.8250735, + "maxlon": -73.9235849 + }, + "nodes": [ + 2408448920, + 10133486224, + 12162740280, + 2408448902, + 2409030667, + 12162740281, + 2409030656, + 12162740282, + 12162740283, + 2408448906, + 9910729404 + ], + "geometry": [ + { "lat": 40.8234557, "lon": -73.9243938 }, + { "lat": 40.8235205, "lon": -73.9243758 }, + { "lat": 40.8235892, "lon": -73.9243550 }, + { "lat": 40.8236695, "lon": -73.9243341 }, + { "lat": 40.8238080, "lon": -73.9243009 }, + { "lat": 40.8238652, "lon": -73.9242830 }, + { "lat": 40.8239208, "lon": -73.9242620 }, + { "lat": 40.8239763, "lon": -73.9242382 }, + { "lat": 40.8240221, "lon": -73.9242157 }, + { "lat": 40.8240765, "lon": -73.9241845 }, + { "lat": 40.8250735, "lon": -73.9235849 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420897711, + "bounds": { + "minlat": 40.8230695, + "minlon": -73.9245265, + "maxlat": 40.8234557, + "maxlon": -73.9243938 + }, + "nodes": [ + 2409024137, + 12162740259, + 12162740260, + 10133486228, + 2408448920 + ], + "geometry": [ + { "lat": 40.8230695, "lon": -73.9245265 }, + { "lat": 40.8232321, "lon": -73.9244700 }, + { "lat": 40.8233453, "lon": -73.9244294 }, + { "lat": 40.8233909, "lon": -73.9244129 }, + { "lat": 40.8234557, "lon": -73.9243938 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420897712, + "bounds": { + "minlat": 40.8261392, + "minlon": -73.9229539, + "maxlat": 40.8267262, + "maxlon": -73.9226022 + }, + "nodes": [ + 4207879606, + 12162740299, + 5762096228, + 2408448907 + ], + "geometry": [ + { "lat": 40.8261392, "lon": -73.9229539 }, + { "lat": 40.8265893, "lon": -73.9226794 }, + { "lat": 40.8266263, "lon": -73.9226585 }, + { "lat": 40.8267262, "lon": -73.9226022 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "turn:lanes": "left|through|through;right", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420897713, + "bounds": { + "minlat": 40.8254456, + "minlon": -73.9235456, + "maxlat": 40.8267602, + "maxlon": -73.9227803 + }, + "nodes": [ + 2408448900, + 2409034837, + 9910729396, + 2409034836, + 2409034835, + 12162740295, + 9910729397, + 42741414, + 10635449515, + 12162740289, + 9910729399, + 42741417 + ], + "geometry": [ + { "lat": 40.8267602, "lon": -73.9227803 }, + { "lat": 40.8266629, "lon": -73.9228355 }, + { "lat": 40.8265284, "lon": -73.9229078 }, + { "lat": 40.8264262, "lon": -73.9229577 }, + { "lat": 40.8263239, "lon": -73.9230140 }, + { "lat": 40.8262262, "lon": -73.9230728 }, + { "lat": 40.8261833, "lon": -73.9230972 }, + { "lat": 40.8261253, "lon": -73.9231314 }, + { "lat": 40.8260694, "lon": -73.9231641 }, + { "lat": 40.8255952, "lon": -73.9234421 }, + { "lat": 40.8255471, "lon": -73.9234716 }, + { "lat": 40.8254456, "lon": -73.9235456 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420897715, + "bounds": { + "minlat": 40.8267262, + "minlon": -73.9226022, + "maxlat": 40.8269250, + "maxlon": -73.9224902 + }, + "nodes": [ + 2408448907, + 12162740302, + 2408446154 + ], + "geometry": [ + { "lat": 40.8267262, "lon": -73.9226022 }, + { "lat": 40.8268739, "lon": -73.9225190 }, + { "lat": 40.8269250, "lon": -73.9224902 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "turn:lanes": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420897716, + "bounds": { + "minlat": 40.8235044, + "minlon": -73.9245299, + "maxlat": 40.8254456, + "maxlon": -73.9235456 + }, + "nodes": [ + 42741417, + 9910729400, + 13533563283, + 13533563284, + 2323816435, + 2409030684, + 12162740284, + 2409030653, + 2323816431, + 2409030670, + 10133486225, + 42741420 + ], + "geometry": [ + { "lat": 40.8254456, "lon": -73.9235456 }, + { "lat": 40.8253485, "lon": -73.9236091 }, + { "lat": 40.8243579, "lon": -73.9241838 }, + { "lat": 40.8242654, "lon": -73.9242317 }, + { "lat": 40.8241785, "lon": -73.9242774 }, + { "lat": 40.8240212, "lon": -73.9243545 }, + { "lat": 40.8239680, "lon": -73.9243817 }, + { "lat": 40.8239077, "lon": -73.9244056 }, + { "lat": 40.8238466, "lon": -73.9244276 }, + { "lat": 40.8236164, "lon": -73.9244892 }, + { "lat": 40.8235678, "lon": -73.9245075 }, + { "lat": 40.8235044, "lon": -73.9245299 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420897874, + "bounds": { + "minlat": 40.7699178, + "minlon": -73.9805837, + "maxlat": 40.7701961, + "maxlon": -73.9803719 + }, + "nodes": [ + 5706568625, + 7837165554, + 4207881093 + ], + "geometry": [ + { "lat": 40.7699178, "lon": -73.9805837 }, + { "lat": 40.7699771, "lon": -73.9805436 }, + { "lat": 40.7701961, "lon": -73.9803719 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:condition:right": "no_parking", + "parking:condition:right:default": "free", + "parking:condition:right:time_interval": "Tu, Fr 08:00-09:30", + "parking:lane:left": "no_stopping", + "parking:lane:right": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420897875, + "bounds": { + "minlat": 40.7801617, + "minlon": -73.9767955, + "maxlat": 40.7806719, + "maxlon": -73.9764438 + }, + "nodes": [ + 42438859, + 11609159429, + 12565590590, + 4207881094 + ], + "geometry": [ + { "lat": 40.7806719, "lon": -73.9764438 }, + { "lat": 40.7805930, "lon": -73.9764982 }, + { "lat": 40.7803620, "lon": -73.9766574 }, + { "lat": 40.7801617, "lon": -73.9767955 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420897876, + "bounds": { + "minlat": 40.7799947, + "minlon": -73.9769106, + "maxlat": 40.7801617, + "maxlon": -73.9767955 + }, + "nodes": [ + 4207881094, + 3875114041, + 42443346 + ], + "geometry": [ + { "lat": 40.7801617, "lon": -73.9767955 }, + { "lat": 40.7800597, "lon": -73.9768658 }, + { "lat": 40.7799947, "lon": -73.9769106 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420898202, + "bounds": { + "minlat": 40.7774164, + "minlon": -73.9787995, + "maxlat": 40.7777507, + "maxlon": -73.9785585 + }, + "nodes": [ + 4207884930, + 9001506900, + 42443336 + ], + "geometry": [ + { "lat": 40.7777507, "lon": -73.9785585 }, + { "lat": 40.7775097, "lon": -73.9787301 }, + { "lat": 40.7774164, "lon": -73.9787995 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420898204, + "bounds": { + "minlat": 40.7787449, + "minlon": -73.9778503, + "maxlat": 40.7788979, + "maxlon": -73.9777379 + }, + "nodes": [ + 4207884931, + 3341849125, + 42443341 + ], + "geometry": [ + { "lat": 40.7788979, "lon": -73.9777379 }, + { "lat": 40.7788008, "lon": -73.9778092 }, + { "lat": 40.7787449, "lon": -73.9778503 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420898206, + "bounds": { + "minlat": 40.7777507, + "minlon": -73.9785585, + "maxlat": 40.7787449, + "maxlon": -73.9778503 + }, + "nodes": [ + 42443341, + 3341849126, + 9001506901, + 42432558, + 6909727956, + 4207884930 + ], + "geometry": [ + { "lat": 40.7787449, "lon": -73.9778503 }, + { "lat": 40.7786845, "lon": -73.9778947 }, + { "lat": 40.7781598, "lon": -73.9782693 }, + { "lat": 40.7781042, "lon": -73.9783086 }, + { "lat": 40.7780424, "lon": -73.9783523 }, + { "lat": 40.7777507, "lon": -73.9785585 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420898207, + "bounds": { + "minlat": 40.7788979, + "minlon": -73.9777379, + "maxlat": 40.7799947, + "maxlon": -73.9769106 + }, + "nodes": [ + 42443346, + 9001506902, + 3875114042, + 42443344, + 3341849127, + 4207884931 + ], + "geometry": [ + { "lat": 40.7799947, "lon": -73.9769106 }, + { "lat": 40.7799478, "lon": -73.9769463 }, + { "lat": 40.7794268, "lon": -73.9773461 }, + { "lat": 40.7793715, "lon": -73.9773846 }, + { "lat": 40.7793232, "lon": -73.9774236 }, + { "lat": 40.7788979, "lon": -73.9777379 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420898705, + "bounds": { + "minlat": 40.7762266, + "minlon": -73.9763302, + "maxlat": 40.7763764, + "maxlon": -73.9759630 + }, + "nodes": [ + 42435275, + 7106318837, + 4207887847 + ], + "geometry": [ + { "lat": 40.7762266, "lon": -73.9759630 }, + { "lat": 40.7762751, "lon": -73.9760823 }, + { "lat": 40.7763764, "lon": -73.9763302 } + ], + "tags": { + "alt_name": "West 72 Street", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "3", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "surface": "asphalt", + "turn:lanes:backward": "left;through|right|", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420899356, + "bounds": { + "minlat": 40.8158964, + "minlon": -73.9175816, + "maxlat": 40.8160969, + "maxlon": -73.9172191 + }, + "nodes": [ + 9917864248, + 9903127470, + 6415815563, + 42761265 + ], + "geometry": [ + { "lat": 40.8158964, "lon": -73.9172191 }, + { "lat": 40.8160261, "lon": -73.9174136 }, + { "lat": 40.8160552, "lon": -73.9174811 }, + { "lat": 40.8160969, "lon": -73.9175816 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes": "through|none" + } +}, +{ + "type": "way", + "id": 420899360, + "bounds": { + "minlat": 40.8194703, + "minlon": -73.9268046, + "maxlat": 40.8196184, + "maxlon": -73.9267336 + }, + "nodes": [ + 2408448896, + 12162740220, + 4207892893 + ], + "geometry": [ + { "lat": 40.8194703, "lon": -73.9268046 }, + { "lat": 40.8195276, "lon": -73.9267771 }, + { "lat": 40.8196184, "lon": -73.9267336 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420899362, + "bounds": { + "minlat": 40.8185494, + "minlon": -73.9272357, + "maxlat": 40.8191260, + "maxlon": -73.9269669 + }, + "nodes": [ + 2408448905, + 8697762793, + 4207892892 + ], + "geometry": [ + { "lat": 40.8185494, "lon": -73.9272357 }, + { "lat": 40.8186555, "lon": -73.9271841 }, + { "lat": 40.8191260, "lon": -73.9269669 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420899364, + "bounds": { + "minlat": 40.8191260, + "minlon": -73.9269669, + "maxlat": 40.8194703, + "maxlon": -73.9268046 + }, + "nodes": [ + 4207892892, + 12162740215, + 12162740217, + 12541039610, + 2408448896 + ], + "geometry": [ + { "lat": 40.8191260, "lon": -73.9269669 }, + { "lat": 40.8193637, "lon": -73.9268554 }, + { "lat": 40.8194100, "lon": -73.9268333 }, + { "lat": 40.8194302, "lon": -73.9268237 }, + { "lat": 40.8194703, "lon": -73.9268046 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "left|through|none", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420899365, + "bounds": { + "minlat": 40.8201459, + "minlon": -73.9264800, + "maxlat": 40.8202676, + "maxlon": -73.9264167 + }, + "nodes": [ + 12162740232, + 2408448923 + ], + "geometry": [ + { "lat": 40.8201459, "lon": -73.9264800 }, + { "lat": 40.8202676, "lon": -73.9264167 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420899368, + "bounds": { + "minlat": 40.8208580, + "minlon": -73.9262203, + "maxlat": 40.8212251, + "maxlon": -73.9258484 + }, + "nodes": [ + 42741423, + 10133486271, + 2822077915, + 2409018642, + 2409018724, + 2409018637 + ], + "geometry": [ + { "lat": 40.8212251, "lon": -73.9258484 }, + { "lat": 40.8211590, "lon": -73.9259099 }, + { "lat": 40.8210606, "lon": -73.9260145 }, + { "lat": 40.8209911, "lon": -73.9260912 }, + { "lat": 40.8208977, "lon": -73.9261918 }, + { "lat": 40.8208580, "lon": -73.9262203 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420899371, + "bounds": { + "minlat": 40.7659093, + "minlon": -73.9770984, + "maxlat": 40.7660406, + "maxlon": -73.9767876 + }, + "nodes": [ + 4207892895, + 4207892896 + ], + "geometry": [ + { "lat": 40.7659093, "lon": -73.9767876 }, + { "lat": 40.7660406, "lon": -73.9770984 } + ], + "tags": { + "alt_name": "West 59th Street", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "name": "Central Park South", + "name_1": "West 59 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420899372, + "bounds": { + "minlat": 40.7656797, + "minlon": -73.9767876, + "maxlat": 40.7659093, + "maxlon": -73.9762440 + }, + "nodes": [ + 42430394, + 7830685371, + 4796245033, + 4796245036, + 4207892895 + ], + "geometry": [ + { "lat": 40.7656797, "lon": -73.9762440 }, + { "lat": 40.7657350, "lon": -73.9763749 }, + { "lat": 40.7657545, "lon": -73.9764211 }, + { "lat": 40.7658807, "lon": -73.9767198 }, + { "lat": 40.7659093, "lon": -73.9767876 } + ], + "tags": { + "alt_name": "West 59th Street", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "name": "Central Park South", + "name_1": "West 59 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420899373, + "bounds": { + "minlat": 40.7670983, + "minlon": -73.9807850, + "maxlat": 40.7675992, + "maxlon": -73.9796013 + }, + "nodes": [ + 4347550074, + 4207892897 + ], + "geometry": [ + { "lat": 40.7675992, "lon": -73.9807850 }, + { "lat": 40.7670983, "lon": -73.9796013 } + ], + "tags": { + "alt_name": "West 59th Street", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "name": "Central Park South", + "name_1": "West 59 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420900189, + "bounds": { + "minlat": 40.8192272, + "minlon": -73.9300243, + "maxlat": 40.8193162, + "maxlon": -73.9296267 + }, + "nodes": [ + 9903127434, + 9903127441, + 9903127435, + 7599113211, + 9903127432 + ], + "geometry": [ + { "lat": 40.8192272, "lon": -73.9296267 }, + { "lat": 40.8192501, "lon": -73.9297179 }, + { "lat": 40.8192649, "lon": -73.9297770 }, + { "lat": 40.8193027, "lon": -73.9299335 }, + { "lat": 40.8193162, "lon": -73.9300243 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455" + } +}, +{ + "type": "way", + "id": 420900190, + "bounds": { + "minlat": 40.8186979, + "minlon": -73.9282567, + "maxlat": 40.8188561, + "maxlon": -73.9276391 + }, + "nodes": [ + 11570087957, + 9917864250, + 8859016388 + ], + "geometry": [ + { "lat": 40.8186979, "lon": -73.9276391 }, + { "lat": 40.8188370, "lon": -73.9281754 }, + { "lat": 40.8188561, "lon": -73.9282567 } + ], + "tags": { + "busway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420900448, + "bounds": { + "minlat": 40.8345751, + "minlon": -73.9178339, + "maxlat": 40.8346421, + "maxlon": -73.9176461 + }, + "nodes": [ + 2408379347, + 2408379343 + ], + "geometry": [ + { "lat": 40.8345751, "lon": -73.9176461 }, + { "lat": 40.8346421, "lon": -73.9178339 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 167th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 420900449, + "bounds": { + "minlat": 40.8426790, + "minlon": -73.9229816, + "maxlat": 40.8430426, + "maxlon": -73.9228523 + }, + "nodes": [ + 60921020, + 2912067298, + 12163757055, + 12163757052, + 2912067295, + 3001741334 + ], + "geometry": [ + { "lat": 40.8430426, "lon": -73.9229816 }, + { "lat": 40.8429767, "lon": -73.9229648 }, + { "lat": 40.8429110, "lon": -73.9229428 }, + { "lat": 40.8428534, "lon": -73.9229207 }, + { "lat": 40.8428003, "lon": -73.9228996 }, + { "lat": 40.8426790, "lon": -73.9228523 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 420900451, + "bounds": { + "minlat": 40.8439807, + "minlon": -73.9227939, + "maxlat": 40.8443645, + "maxlon": -73.9226621 + }, + "nodes": [ + 4207902995, + 12046777282, + 12046762865, + 9910779443, + 12046762856, + 60924012 + ], + "geometry": [ + { "lat": 40.8439807, "lon": -73.9227939 }, + { "lat": 40.8440498, "lon": -73.9227733 }, + { "lat": 40.8441036, "lon": -73.9227562 }, + { "lat": 40.8441463, "lon": -73.9227405 }, + { "lat": 40.8441936, "lon": -73.9227236 }, + { "lat": 40.8443645, "lon": -73.9226621 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 420900452, + "bounds": { + "minlat": 40.8402940, + "minlon": -73.9219151, + "maxlat": 40.8411030, + "maxlon": -73.9213917 + }, + "nodes": [ + 42745197, + 42745200, + 12163757031, + 4207902991, + 42735003 + ], + "geometry": [ + { "lat": 40.8402940, "lon": -73.9213917 }, + { "lat": 40.8404944, "lon": -73.9214845 }, + { "lat": 40.8409970, "lon": -73.9217959 }, + { "lat": 40.8410512, "lon": -73.9218303 }, + { "lat": 40.8411030, "lon": -73.9219151 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 420900453, + "bounds": { + "minlat": 40.8403185, + "minlon": -73.9219050, + "maxlat": 40.8408132, + "maxlon": -73.9215909 + }, + "nodes": [ + 2912071007, + 12163756891, + 2912071008, + 2912071067 + ], + "geometry": [ + { "lat": 40.8408132, "lon": -73.9219050 }, + { "lat": 40.8404678, "lon": -73.9216931 }, + { "lat": 40.8404325, "lon": -73.9216720 }, + { "lat": 40.8403185, "lon": -73.9215909 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "|designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 420900454, + "bounds": { + "minlat": 40.8408132, + "minlon": -73.9220077, + "maxlat": 40.8409714, + "maxlon": -73.9219050 + }, + "nodes": [ + 2912071063, + 11042991208, + 2912071007 + ], + "geometry": [ + { "lat": 40.8409714, "lon": -73.9220077 }, + { "lat": 40.8408908, "lon": -73.9219531 }, + { "lat": 40.8408132, "lon": -73.9219050 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 420900455, + "bounds": { + "minlat": 40.8409714, + "minlon": -73.9223667, + "maxlat": 40.8415527, + "maxlon": -73.9220077 + }, + "nodes": [ + 8918794300, + 2912071006, + 12163757034, + 2912071063 + ], + "geometry": [ + { "lat": 40.8415527, "lon": -73.9223667 }, + { "lat": 40.8410897, "lon": -73.9220810 }, + { "lat": 40.8410429, "lon": -73.9220520 }, + { "lat": 40.8409714, "lon": -73.9220077 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "|designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "turn:lanes": "left|none|through" + } +}, +{ + "type": "way", + "id": 420900456, + "bounds": { + "minlat": 40.8417455, + "minlon": -73.9225953, + "maxlat": 40.8420472, + "maxlon": -73.9224734 + }, + "nodes": [ + 4207902993, + 2912071003, + 12163757040, + 42745204 + ], + "geometry": [ + { "lat": 40.8420472, "lon": -73.9225953 }, + { "lat": 40.8419129, "lon": -73.9225418 }, + { "lat": 40.8418438, "lon": -73.9225133 }, + { "lat": 40.8417455, "lon": -73.9224734 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 420900457, + "bounds": { + "minlat": 40.8425720, + "minlon": -73.9227699, + "maxlat": 40.8428336, + "maxlon": -73.9226695 + }, + "nodes": [ + 4207902994, + 12163757043, + 12163757041, + 2907939269 + ], + "geometry": [ + { "lat": 40.8425720, "lon": -73.9226695 }, + { "lat": 40.8426557, "lon": -73.9227034 }, + { "lat": 40.8427222, "lon": -73.9227304 }, + { "lat": 40.8428336, "lon": -73.9227699 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "turn:lanes": "through|through;right" + } +}, +{ + "type": "way", + "id": 420900458, + "bounds": { + "minlat": 40.8415527, + "minlon": -73.9224734, + "maxlat": 40.8417455, + "maxlon": -73.9223667 + }, + "nodes": [ + 42745204, + 2912071004, + 8918794300 + ], + "geometry": [ + { "lat": 40.8417455, "lon": -73.9224734 }, + { "lat": 40.8416624, "lon": -73.9224380 }, + { "lat": 40.8415527, "lon": -73.9223667 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 420900459, + "bounds": { + "minlat": 40.8398996, + "minlon": -73.9213917, + "maxlat": 40.8402940, + "maxlon": -73.9212505 + }, + "nodes": [ + 3809988762, + 12163756857, + 12163756858, + 12163756859, + 2912071040, + 12163756861, + 12163756860, + 11042965104, + 42745197 + ], + "geometry": [ + { "lat": 40.8398996, "lon": -73.9212505 }, + { "lat": 40.8399546, "lon": -73.9212533 }, + { "lat": 40.8399958, "lon": -73.9212574 }, + { "lat": 40.8400335, "lon": -73.9212649 }, + { "lat": 40.8400663, "lon": -73.9212746 }, + { "lat": 40.8401061, "lon": -73.9212909 }, + { "lat": 40.8401488, "lon": -73.9213111 }, + { "lat": 40.8402067, "lon": -73.9213411 }, + { "lat": 40.8402940, "lon": -73.9213917 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "|designated|", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "turn:lanes": "left||through" + } +}, +{ + "type": "way", + "id": 420900462, + "bounds": { + "minlat": 40.8411030, + "minlon": -73.9223851, + "maxlat": 40.8418789, + "maxlon": -73.9219151 + }, + "nodes": [ + 42735003, + 12163757035, + 2912071034, + 12163757037, + 2912071062 + ], + "geometry": [ + { "lat": 40.8411030, "lon": -73.9219151 }, + { "lat": 40.8411656, "lon": -73.9219537 }, + { "lat": 40.8417417, "lon": -73.9223085 }, + { "lat": 40.8417933, "lon": -73.9223411 }, + { "lat": 40.8418789, "lon": -73.9223851 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 420900463, + "bounds": { + "minlat": 40.8428336, + "minlon": -73.9228515, + "maxlat": 40.8439807, + "maxlon": -73.9227699 + }, + "nodes": [ + 2907939269, + 12163757054, + 12163757047, + 60921065, + 12163757048, + 12163757049, + 2912067300, + 12046793195, + 12046793194, + 60921064, + 12046777284, + 11042951985, + 12046777281, + 12046777283, + 60921063, + 4207902995 + ], + "geometry": [ + { "lat": 40.8428336, "lon": -73.9227699 }, + { "lat": 40.8429693, "lon": -73.9227900 }, + { "lat": 40.8430725, "lon": -73.9228020 }, + { "lat": 40.8431927, "lon": -73.9228187 }, + { "lat": 40.8433126, "lon": -73.9228314 }, + { "lat": 40.8434215, "lon": -73.9228397 }, + { "lat": 40.8434935, "lon": -73.9228458 }, + { "lat": 40.8435686, "lon": -73.9228499 }, + { "lat": 40.8436202, "lon": -73.9228515 }, + { "lat": 40.8436779, "lon": -73.9228506 }, + { "lat": 40.8437216, "lon": -73.9228475 }, + { "lat": 40.8437746, "lon": -73.9228417 }, + { "lat": 40.8438122, "lon": -73.9228347 }, + { "lat": 40.8438745, "lon": -73.9228231 }, + { "lat": 40.8439327, "lon": -73.9228075 }, + { "lat": 40.8439807, "lon": -73.9227939 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 420900464, + "bounds": { + "minlat": 40.8345751, + "minlon": -73.9176461, + "maxlat": 40.8350267, + "maxlon": -73.9172056 + }, + "nodes": [ + 4207900886, + 2829149697, + 12739350652, + 2408379347 + ], + "geometry": [ + { "lat": 40.8350267, "lon": -73.9172056 }, + { "lat": 40.8346685, "lon": -73.9175555 }, + { "lat": 40.8346334, "lon": -73.9175895 }, + { "lat": 40.8345751, "lon": -73.9176461 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "sidewalk:both": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420900466, + "bounds": { + "minlat": 40.8308659, + "minlon": -73.9204811, + "maxlat": 40.8309567, + "maxlon": -73.9204305 + }, + "nodes": [ + 42741401, + 10126985490 + ], + "geometry": [ + { "lat": 40.8309567, "lon": -73.9204305 }, + { "lat": 40.8308659, "lon": -73.9204811 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420900467, + "bounds": { + "minlat": 40.8358757, + "minlon": -73.9163728, + "maxlat": 40.8363937, + "maxlon": -73.9158711 + }, + "nodes": [ + 42741378, + 13038884622, + 13534990439, + 4207900887 + ], + "geometry": [ + { "lat": 40.8363937, "lon": -73.9158711 }, + { "lat": 40.8363262, "lon": -73.9159350 }, + { "lat": 40.8362836, "lon": -73.9159759 }, + { "lat": 40.8358757, "lon": -73.9163728 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420900469, + "bounds": { + "minlat": 40.8309567, + "minlon": -73.9204305, + "maxlat": 40.8315313, + "maxlon": -73.9201091 + }, + "nodes": [ + 4207900885, + 13534912293, + 12991217550, + 42741401 + ], + "geometry": [ + { "lat": 40.8315313, "lon": -73.9201091 }, + { "lat": 40.8310844, "lon": -73.9203594 }, + { "lat": 40.8310403, "lon": -73.9203839 }, + { "lat": 40.8309567, "lon": -73.9204305 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 420900470, + "bounds": { + "minlat": 40.8461559, + "minlon": -73.9214852, + "maxlat": 40.8467968, + "maxlon": -73.9206232 + }, + "nodes": [ + 11398821130, + 12046838481, + 42769941 + ], + "geometry": [ + { "lat": 40.8461559, "lon": -73.9214852 }, + { "lat": 40.8462255, "lon": -73.9213912 }, + { "lat": 40.8467968, "lon": -73.9206232 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "left|through|" + } +}, +{ + "type": "way", + "id": 420900471, + "bounds": { + "minlat": 40.8476181, + "minlon": -73.9192853, + "maxlat": 40.8482702, + "maxlon": -73.9183700 + }, + "nodes": [ + 42761300, + 13181365292, + 12055955045, + 12055955046, + 2907939244, + 2907939240 + ], + "geometry": [ + { "lat": 40.8476181, "lon": -73.9192853 }, + { "lat": 40.8476767, "lon": -73.9191893 }, + { "lat": 40.8477502, "lon": -73.9190689 }, + { "lat": 40.8478304, "lon": -73.9189411 }, + { "lat": 40.8479272, "lon": -73.9188024 }, + { "lat": 40.8482702, "lon": -73.9183700 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 420900705, + "bounds": { + "minlat": 40.7722790, + "minlon": -73.9670325, + "maxlat": 40.7724555, + "maxlon": -73.9666195 + }, + "nodes": [ + 4207903863, + 3278932289, + 42436475 + ], + "geometry": [ + { "lat": 40.7722790, "lon": -73.9666195 }, + { "lat": 40.7724158, "lon": -73.9669424 }, + { "lat": 40.7724555, "lon": -73.9670325 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 72nd Street", + "name:ru": "Восточная 72-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|left", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901673, + "bounds": { + "minlat": 40.7487598, + "minlon": -73.9729945, + "maxlat": 40.7491639, + "maxlon": -73.9727006 + }, + "nodes": [ + 42432464, + 9509176092, + 9496199168 + ], + "geometry": [ + { "lat": 40.7491639, "lon": -73.9727006 }, + { "lat": 40.7491024, "lon": -73.9727464 }, + { "lat": 40.7487598, "lon": -73.9729945 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901677, + "bounds": { + "minlat": 40.7498334, + "minlon": -73.9721997, + "maxlat": 40.7502096, + "maxlon": -73.9719229 + }, + "nodes": [ + 4207912629, + 11440124183, + 7964920722, + 42442937 + ], + "geometry": [ + { "lat": 40.7502096, "lon": -73.9719229 }, + { "lat": 40.7499724, "lon": -73.9720976 }, + { "lat": 40.7499266, "lon": -73.9721313 }, + { "lat": 40.7498334, "lon": -73.9721997 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901679, + "bounds": { + "minlat": 40.7475868, + "minlon": -73.9738435, + "maxlat": 40.7479353, + "maxlon": -73.9735914 + }, + "nodes": [ + 42442933, + 3997451355, + 4207912625 + ], + "geometry": [ + { "lat": 40.7479353, "lon": -73.9735914 }, + { "lat": 40.7478654, "lon": -73.9736418 }, + { "lat": 40.7475868, "lon": -73.9738435 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901681, + "bounds": { + "minlat": 40.7523790, + "minlon": -73.9703410, + "maxlat": 40.7536240, + "maxlon": -73.9694310 + }, + "nodes": [ + 42442949, + 10166171343, + 10168666951, + 42442948, + 10168666954, + 9496073804, + 7946231855, + 10168666984, + 42434090 + ], + "geometry": [ + { "lat": 40.7536240, "lon": -73.9694310 }, + { "lat": 40.7535685, "lon": -73.9694717 }, + { "lat": 40.7530564, "lon": -73.9698476 }, + { "lat": 40.7529887, "lon": -73.9698972 }, + { "lat": 40.7529428, "lon": -73.9699307 }, + { "lat": 40.7525687, "lon": -73.9702037 }, + { "lat": 40.7524957, "lon": -73.9702562 }, + { "lat": 40.7524347, "lon": -73.9703004 }, + { "lat": 40.7523790, "lon": -73.9703410 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901682, + "bounds": { + "minlat": 40.7502096, + "minlon": -73.9719229, + "maxlat": 40.7505017, + "maxlon": -73.9717073 + }, + "nodes": [ + 42442939, + 3569749114, + 4207912629 + ], + "geometry": [ + { "lat": 40.7505017, "lon": -73.9717073 }, + { "lat": 40.7504414, "lon": -73.9717513 }, + { "lat": 40.7502096, "lon": -73.9719229 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901683, + "bounds": { + "minlat": 40.7466849, + "minlon": -73.9744963, + "maxlat": 40.7472945, + "maxlon": -73.9740550 + }, + "nodes": [ + 42442931, + 7640871319, + 4259278551, + 42442918 + ], + "geometry": [ + { "lat": 40.7472945, "lon": -73.9740550 }, + { "lat": 40.7472474, "lon": -73.9740891 }, + { "lat": 40.7467531, "lon": -73.9744467 }, + { "lat": 40.7466849, "lon": -73.9744963 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through|through|none|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901690, + "bounds": { + "minlat": 40.7479353, + "minlon": -73.9735914, + "maxlat": 40.7480643, + "maxlon": -73.9734978 + }, + "nodes": [ + 3833109164, + 3997451356, + 42442933 + ], + "geometry": [ + { "lat": 40.7480643, "lon": -73.9734978 }, + { "lat": 40.7479856, "lon": -73.9735548 }, + { "lat": 40.7479353, "lon": -73.9735914 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901917, + "bounds": { + "minlat": 40.7540713, + "minlon": -73.9958428, + "maxlat": 40.7542465, + "maxlon": -73.9957123 + }, + "nodes": [ + 4207913308, + 8660596974, + 42444960 + ], + "geometry": [ + { "lat": 40.7542465, "lon": -73.9957123 }, + { "lat": 40.7541338, "lon": -73.9957963 }, + { "lat": 40.7540713, "lon": -73.9958428 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901919, + "bounds": { + "minlat": 40.7548814, + "minlon": -73.9952392, + "maxlat": 40.7552967, + "maxlon": -73.9949298 + }, + "nodes": [ + 4491359481, + 8288270360, + 9137045217 + ], + "geometry": [ + { "lat": 40.7552967, "lon": -73.9949298 }, + { "lat": 40.7552435, "lon": -73.9949691 }, + { "lat": 40.7548814, "lon": -73.9952392 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901920, + "bounds": { + "minlat": 40.7542465, + "minlon": -73.9957123, + "maxlat": 40.7546861, + "maxlon": -73.9953826 + }, + "nodes": [ + 42444964, + 8288270454, + 5481856939, + 5481856935, + 4207913308 + ], + "geometry": [ + { "lat": 40.7546861, "lon": -73.9953826 }, + { "lat": 40.7546275, "lon": -73.9954281 }, + { "lat": 40.7543103, "lon": -73.9956652 }, + { "lat": 40.7542754, "lon": -73.9956903 }, + { "lat": 40.7542465, "lon": -73.9957123 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901921, + "bounds": { + "minlat": 40.7537049, + "minlon": -73.9961030, + "maxlat": 40.7540713, + "maxlon": -73.9958428 + }, + "nodes": [ + 42444960, + 8660596984, + 4207913307 + ], + "geometry": [ + { "lat": 40.7540713, "lon": -73.9958428 }, + { "lat": 40.7540102, "lon": -73.9958874 }, + { "lat": 40.7537049, "lon": -73.9961030 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901922, + "bounds": { + "minlat": 40.7534078, + "minlon": -73.9963175, + "maxlat": 40.7537049, + "maxlon": -73.9961030 + }, + "nodes": [ + 4207913307, + 8660596930, + 42437663 + ], + "geometry": [ + { "lat": 40.7537049, "lon": -73.9961030 }, + { "lat": 40.7534948, "lon": -73.9962562 }, + { "lat": 40.7534078, "lon": -73.9963175 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901923, + "bounds": { + "minlat": 40.7552967, + "minlon": -73.9949298, + "maxlat": 40.7554715, + "maxlon": -73.9947995 + }, + "nodes": [ + 4207913309, + 8288270359, + 4491359481 + ], + "geometry": [ + { "lat": 40.7554715, "lon": -73.9947995 }, + { "lat": 40.7553685, "lon": -73.9948753 }, + { "lat": 40.7552967, "lon": -73.9949298 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901924, + "bounds": { + "minlat": 40.7527418, + "minlon": -73.9968169, + "maxlat": 40.7528997, + "maxlon": -73.9966917 + }, + "nodes": [ + 4207913306, + 8262309051, + 42444954 + ], + "geometry": [ + { "lat": 40.7528997, "lon": -73.9966917 }, + { "lat": 40.7527949, "lon": -73.9967686 }, + { "lat": 40.7527418, "lon": -73.9968169 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420901925, + "bounds": { + "minlat": 40.7511635, + "minlon": -73.9989993, + "maxlat": 40.7512711, + "maxlon": -73.9987610 + }, + "nodes": [ + 42434465, + 4207913305 + ], + "geometry": [ + { "lat": 40.7512711, "lon": -73.9989993 }, + { "lat": 40.7511635, "lon": -73.9987610 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420902584, + "bounds": { + "minlat": 40.7552202, + "minlon": -73.9971480, + "maxlat": 40.7554289, + "maxlon": -73.9966484 + }, + "nodes": [ + 4207921706, + 4601240938, + 8261123410, + 42434429 + ], + "geometry": [ + { "lat": 40.7554289, "lon": -73.9971480 }, + { "lat": 40.7553815, "lon": -73.9970345 }, + { "lat": 40.7553072, "lon": -73.9968566 }, + { "lat": 40.7552202, "lon": -73.9966484 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 36th Street", + "name:ru": "Западная 36-я стрит", + "name_1": "West 36 Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through;right" + } +}, +{ + "type": "way", + "id": 420902874, + "bounds": { + "minlat": 40.7525411, + "minlon": -73.9730626, + "maxlat": 40.7527044, + "maxlon": -73.9726808 + }, + "nodes": [ + 4207915681, + 10125260525, + 42444051 + ], + "geometry": [ + { "lat": 40.7525411, "lon": -73.9726808 }, + { "lat": 40.7526409, "lon": -73.9729120 }, + { "lat": 40.7527044, "lon": -73.9730626 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 45th Street", + "name:ru": "Восточная 45-я стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right", + "width": "9.2" + } +}, +{ + "type": "way", + "id": 420902878, + "bounds": { + "minlat": 40.7547324, + "minlon": -73.9762853, + "maxlat": 40.7548884, + "maxlon": -73.9759246 + }, + "nodes": [ + 4207915682, + 12834723267, + 420591229, + 596775840 + ], + "geometry": [ + { "lat": 40.7548884, "lon": -73.9762853 }, + { "lat": 40.7547915, "lon": -73.9760609 }, + { "lat": 40.7547710, "lon": -73.9760135 }, + { "lat": 40.7547324, "lon": -73.9759246 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "East 46th Street", + "name:ru": "Восточная 46-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|right" + } +}, +{ + "type": "way", + "id": 420902883, + "bounds": { + "minlat": 40.7546355, + "minlon": -73.9759246, + "maxlat": 40.7547324, + "maxlon": -73.9757004 + }, + "nodes": [ + 596775840, + 100522741 + ], + "geometry": [ + { "lat": 40.7547324, "lon": -73.9759246 }, + { "lat": 40.7546355, "lon": -73.9757004 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "East 46th Street", + "name:ru": "Восточная 46-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420903239, + "bounds": { + "minlat": 40.7589139, + "minlon": -73.9996835, + "maxlat": 40.7595749, + "maxlon": -73.9992852 + }, + "nodes": [ + 42430664, + 8288270554, + 9140954085, + 9144983241, + 593839894 + ], + "geometry": [ + { "lat": 40.7595749, "lon": -73.9992852 }, + { "lat": 40.7594688, "lon": -73.9993653 }, + { "lat": 40.7590806, "lon": -73.9996392 }, + { "lat": 40.7589913, "lon": -73.9996605 }, + { "lat": 40.7589139, "lon": -73.9996835 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "jersey_barrier", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420903240, + "bounds": { + "minlat": 40.7595749, + "minlon": -73.9992852, + "maxlat": 40.7601736, + "maxlon": -73.9988397 + }, + "nodes": [ + 42430669, + 10168212481, + 8261122955, + 42430664 + ], + "geometry": [ + { "lat": 40.7601736, "lon": -73.9988397 }, + { "lat": 40.7601147, "lon": -73.9988834 }, + { "lat": 40.7596243, "lon": -73.9992457 }, + { "lat": 40.7595749, "lon": -73.9992852 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn": "through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420904615, + "bounds": { + "minlat": 40.7589842, + "minlon": -73.9968491, + "maxlat": 40.7593452, + "maxlon": -73.9959405 + }, + "nodes": [ + 42455751, + 5851709100, + 10169614506, + 8095866234, + 593920893 + ], + "geometry": [ + { "lat": 40.7589842, "lon": -73.9959405 }, + { "lat": 40.7590267, "lon": -73.9960916 }, + { "lat": 40.7590292, "lon": -73.9960973 }, + { "lat": 40.7592764, "lon": -73.9966839 }, + { "lat": 40.7593452, "lon": -73.9968491 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 420904617, + "bounds": { + "minlat": 40.7583714, + "minlon": -73.9949905, + "maxlat": 40.7586019, + "maxlon": -73.9943910 + }, + "nodes": [ + 42434434, + 11149329278, + 5851709099, + 12599731786 + ], + "geometry": [ + { "lat": 40.7583714, "lon": -73.9943910 }, + { "lat": 40.7583810, "lon": -73.9944508 }, + { "lat": 40.7584017, "lon": -73.9945194 }, + { "lat": 40.7586019, "lon": -73.9949905 } + ], + "tags": { + "change": "yes", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "4", + "lit": "yes", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 420904618, + "bounds": { + "minlat": 40.7589778, + "minlon": -73.9954726, + "maxlat": 40.7596264, + "maxlon": -73.9939368 + }, + "nodes": [ + 42437371, + 10168212452, + 8393241417, + 10171120543, + 42434439 + ], + "geometry": [ + { "lat": 40.7596264, "lon": -73.9954726 }, + { "lat": 40.7595711, "lon": -73.9953417 }, + { "lat": 40.7590390, "lon": -73.9940817 }, + { "lat": 40.7590159, "lon": -73.9940270 }, + { "lat": 40.7589778, "lon": -73.9939368 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lit": "yes", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420904620, + "bounds": { + "minlat": 40.7608084, + "minlon": -73.9983473, + "maxlat": 40.7608557, + "maxlon": -73.9982421 + }, + "nodes": [ + 42430673, + 9019680388 + ], + "geometry": [ + { "lat": 40.7608557, "lon": -73.9983473 }, + { "lat": 40.7608084, "lon": -73.9982421 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:backward": "left|left;through|", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420904621, + "bounds": { + "minlat": 40.7610857, + "minlon": -74.0003663, + "maxlat": 40.7616989, + "maxlon": -73.9989027 + }, + "nodes": [ + 4500916751, + 1993431127, + 13516165062, + 6293725833 + ], + "geometry": [ + { "lat": 40.7616989, "lon": -74.0003663 }, + { "lat": 40.7614590, "lon": -73.9997871 }, + { "lat": 40.7611935, "lon": -73.9991580 }, + { "lat": 40.7610857, "lon": -73.9989027 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420904657, + "bounds": { + "minlat": 40.7506820, + "minlon": -73.9877857, + "maxlat": 40.7514446, + "maxlon": -73.9876865 + }, + "nodes": [ + 42428258, + 10169532583, + 4207937590, + 3857366817, + 42428253 + ], + "geometry": [ + { "lat": 40.7514446, "lon": -73.9876865 }, + { "lat": 40.7513717, "lon": -73.9876954 }, + { "lat": 40.7511053, "lon": -73.9877280 }, + { "lat": 40.7507448, "lon": -73.9877771 }, + { "lat": 40.7506820, "lon": -73.9877857 } + ], + "tags": { + "bicycle": "designated", + "cycleway:left": "track", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 420904658, + "bounds": { + "minlat": 40.7471247, + "minlon": -73.9829612, + "maxlat": 40.7477705, + "maxlon": -73.9814539 + }, + "nodes": [ + 561042190, + 8119462464, + 12181374925, + 11043134798, + 11813261922, + 11813261923, + 8133342857, + 42445365 + ], + "geometry": [ + { "lat": 40.7471247, "lon": -73.9814539 }, + { "lat": 40.7471572, "lon": -73.9815317 }, + { "lat": 40.7471935, "lon": -73.9816186 }, + { "lat": 40.7472614, "lon": -73.9817821 }, + { "lat": 40.7475178, "lon": -73.9823858 }, + { "lat": 40.7476728, "lon": -73.9827239 }, + { "lat": 40.7477326, "lon": -73.9828727 }, + { "lat": 40.7477705, "lon": -73.9829612 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420904659, + "bounds": { + "minlat": 40.7479728, + "minlon": -73.9845455, + "maxlat": 40.7484537, + "maxlon": -73.9834428 + }, + "nodes": [ + 4207937589, + 11813261924, + 8133342849, + 42437644 + ], + "geometry": [ + { "lat": 40.7479728, "lon": -73.9834428 }, + { "lat": 40.7481167, "lon": -73.9837483 }, + { "lat": 40.7484061, "lon": -73.9844327 }, + { "lat": 40.7484537, "lon": -73.9845455 } + ], + "tags": { + "access:lanes:backward": "yes|no", + "access:lanes:forward": "yes|no", + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420904660, + "bounds": { + "minlat": 40.7503415, + "minlon": -73.9856437, + "maxlat": 40.7513757, + "maxlon": -73.9831749 + }, + "nodes": [ + 42443950, + 9965135078, + 9551028264 + ], + "geometry": [ + { "lat": 40.7503415, "lon": -73.9831749 }, + { "lat": 40.7503950, "lon": -73.9833027 }, + { "lat": 40.7513757, "lon": -73.9856437 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420904838, + "bounds": { + "minlat": 40.7621394, + "minlon": -74.0008545, + "maxlat": 40.7625524, + "maxlon": -74.0002895 + }, + "nodes": [ + 4207940408, + 12154605909, + 62915525 + ], + "geometry": [ + { "lat": 40.7621394, "lon": -74.0008545 }, + { "lat": 40.7624904, "lon": -74.0003759 }, + { "lat": 40.7625524, "lon": -74.0002895 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 420905128, + "bounds": { + "minlat": 40.7616163, + "minlon": -73.9790635, + "maxlat": 40.7617737, + "maxlon": -73.9786703 + }, + "nodes": [ + 4207938835, + 3971302309, + 42430367 + ], + "geometry": [ + { "lat": 40.7616163, "lon": -73.9786703 }, + { "lat": 40.7617165, "lon": -73.9789271 }, + { "lat": 40.7617737, "lon": -73.9790635 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 53rd Street", + "name:ru": "Западная 53-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420905129, + "bounds": { + "minlat": 40.7628128, + "minlon": -73.9818975, + "maxlat": 40.7629646, + "maxlon": -73.9815365 + }, + "nodes": [ + 4207938836, + 3383400749, + 3977886875, + 42440012 + ], + "geometry": [ + { "lat": 40.7628128, "lon": -73.9815365 }, + { "lat": 40.7628407, "lon": -73.9816028 }, + { "lat": 40.7629143, "lon": -73.9817780 }, + { "lat": 40.7629646, "lon": -73.9818975 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 53rd Street", + "name:ru": "Западная 53-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420905130, + "bounds": { + "minlat": 40.7617737, + "minlon": -73.9815365, + "maxlat": 40.7628128, + "maxlon": -73.9790635 + }, + "nodes": [ + 42430367, + 3971302310, + 4016646235, + 3971196635, + 9696772607, + 9696772609, + 3932923801, + 1828749427, + 8939922347, + 4207938836 + ], + "geometry": [ + { "lat": 40.7617737, "lon": -73.9790635 }, + { "lat": 40.7618315, "lon": -73.9792010 }, + { "lat": 40.7619710, "lon": -73.9795330 }, + { "lat": 40.7622003, "lon": -73.9800788 }, + { "lat": 40.7622984, "lon": -73.9803141 }, + { "lat": 40.7623121, "lon": -73.9803470 }, + { "lat": 40.7624338, "lon": -73.9806387 }, + { "lat": 40.7624810, "lon": -73.9807493 }, + { "lat": 40.7626839, "lon": -73.9812302 }, + { "lat": 40.7628128, "lon": -73.9815365 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 53rd Street", + "name:ru": "Западная 53-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420905641, + "bounds": { + "minlat": 40.7698453, + "minlon": -73.9134445, + "maxlat": 40.7698831, + "maxlon": -73.9132002 + }, + "nodes": [ + 4207946246, + 7659362778 + ], + "geometry": [ + { "lat": 40.7698453, "lon": -73.9132002 }, + { "lat": 40.7698831, "lon": -73.9134445 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "name": "Astoria Boulevard North", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 420905715, + "bounds": { + "minlat": 40.7931529, + "minlon": -73.9374757, + "maxlat": 40.7934601, + "maxlon": -73.9372637 + }, + "nodes": [ + 4207945900, + 4980851595, + 42449427 + ], + "geometry": [ + { "lat": 40.7931529, "lon": -73.9374757 }, + { "lat": 40.7933948, "lon": -73.9373088 }, + { "lat": 40.7934601, "lon": -73.9372637 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420905716, + "bounds": { + "minlat": 40.7923340, + "minlon": -73.9380804, + "maxlat": 40.7928134, + "maxlon": -73.9377232 + }, + "nodes": [ + 4207945899, + 4980851598, + 42456110 + ], + "geometry": [ + { "lat": 40.7923340, "lon": -73.9380804 }, + { "lat": 40.7927471, "lon": -73.9377727 }, + { "lat": 40.7928134, "lon": -73.9377232 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420905717, + "bounds": { + "minlat": 40.7928134, + "minlon": -73.9377232, + "maxlat": 40.7931529, + "maxlon": -73.9374757 + }, + "nodes": [ + 42456110, + 7924346655, + 4207945900 + ], + "geometry": [ + { "lat": 40.7928134, "lon": -73.9377232 }, + { "lat": 40.7928784, "lon": -73.9376742 }, + { "lat": 40.7931529, "lon": -73.9374757 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420905718, + "bounds": { + "minlat": 40.7915669, + "minlon": -73.9386452, + "maxlat": 40.7921784, + "maxlon": -73.9382001 + }, + "nodes": [ + 42456107, + 7777426450, + 7924346793, + 42434389 + ], + "geometry": [ + { "lat": 40.7915669, "lon": -73.9386452 }, + { "lat": 40.7916168, "lon": -73.9386084 }, + { "lat": 40.7921328, "lon": -73.9382332 }, + { "lat": 40.7921784, "lon": -73.9382001 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420905928, + "bounds": { + "minlat": 40.7934601, + "minlon": -73.9372637, + "maxlat": 40.7940080, + "maxlon": -73.9368669 + }, + "nodes": [ + 42449427, + 4980851594, + 4207948393 + ], + "geometry": [ + { "lat": 40.7934601, "lon": -73.9372637 }, + { "lat": 40.7935417, "lon": -73.9372045 }, + { "lat": 40.7940080, "lon": -73.9368669 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420905929, + "bounds": { + "minlat": 40.7945006, + "minlon": -73.9365075, + "maxlat": 40.7947105, + "maxlon": -73.9363530 + }, + "nodes": [ + 4207948395, + 4980851592, + 42445426 + ], + "geometry": [ + { "lat": 40.7945006, "lon": -73.9365075 }, + { "lat": 40.7946255, "lon": -73.9364171 }, + { "lat": 40.7947105, "lon": -73.9363530 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420905930, + "bounds": { + "minlat": 40.7953208, + "minlon": -73.9359028, + "maxlat": 40.7956808, + "maxlon": -73.9356435 + }, + "nodes": [ + 42435400, + 4980851588, + 4207951247 + ], + "geometry": [ + { "lat": 40.7953208, "lon": -73.9359028 }, + { "lat": 40.7953890, "lon": -73.9358527 }, + { "lat": 40.7956808, "lon": -73.9356435 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420905931, + "bounds": { + "minlat": 40.7947105, + "minlon": -73.9363530, + "maxlat": 40.7948596, + "maxlon": -73.9362457 + }, + "nodes": [ + 42445426, + 4980851591, + 4207948396 + ], + "geometry": [ + { "lat": 40.7947105, "lon": -73.9363530 }, + { "lat": 40.7947647, "lon": -73.9363127 }, + { "lat": 40.7948596, "lon": -73.9362457 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420905932, + "bounds": { + "minlat": 40.7940080, + "minlon": -73.9368669, + "maxlat": 40.7941273, + "maxlon": -73.9367761 + }, + "nodes": [ + 4207948393, + 7320943372, + 4207948394 + ], + "geometry": [ + { "lat": 40.7940080, "lon": -73.9368669 }, + { "lat": 40.7940624, "lon": -73.9368257 }, + { "lat": 40.7941273, "lon": -73.9367761 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420905933, + "bounds": { + "minlat": 40.7941273, + "minlon": -73.9367761, + "maxlat": 40.7945006, + "maxlon": -73.9365075 + }, + "nodes": [ + 4207948394, + 4207948395 + ], + "geometry": [ + { "lat": 40.7941273, "lon": -73.9367761 }, + { "lat": 40.7945006, "lon": -73.9365075 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420906650, + "bounds": { + "minlat": 40.7964912, + "minlon": -73.9350488, + "maxlat": 40.7966814, + "maxlon": -73.9349120 + }, + "nodes": [ + 4207951248, + 6133388357, + 4980851583, + 42449843 + ], + "geometry": [ + { "lat": 40.7964912, "lon": -73.9350488 }, + { "lat": 40.7965465, "lon": -73.9350109 }, + { "lat": 40.7966254, "lon": -73.9349530 }, + { "lat": 40.7966814, "lon": -73.9349120 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "turn:lanes": "left;through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420906656, + "bounds": { + "minlat": 40.7956808, + "minlon": -73.9356435, + "maxlat": 40.7960087, + "maxlon": -73.9354016 + }, + "nodes": [ + 4207951247, + 4980851586, + 42456115 + ], + "geometry": [ + { "lat": 40.7956808, "lon": -73.9356435 }, + { "lat": 40.7959118, "lon": -73.9354753 }, + { "lat": 40.7960087, "lon": -73.9354016 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420906662, + "bounds": { + "minlat": 40.7960087, + "minlon": -73.9354016, + "maxlat": 40.7964912, + "maxlon": -73.9350488 + }, + "nodes": [ + 42456115, + 4980851587, + 4207951248 + ], + "geometry": [ + { "lat": 40.7960087, "lon": -73.9354016 }, + { "lat": 40.7961102, "lon": -73.9353315 }, + { "lat": 40.7964912, "lon": -73.9350488 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420906743, + "bounds": { + "minlat": 40.7557190, + "minlon": -73.9771571, + "maxlat": 40.7559868, + "maxlon": -73.9769642 + }, + "nodes": [ + 4207952790, + 10165986977, + 42445924 + ], + "geometry": [ + { "lat": 40.7557190, "lon": -73.9771571 }, + { "lat": 40.7559314, "lon": -73.9770046 }, + { "lat": 40.7559868, "lon": -73.9769642 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 420906748, + "bounds": { + "minlat": 40.7596367, + "minlon": -73.9742994, + "maxlat": 40.7597325, + "maxlon": -73.9742310 + }, + "nodes": [ + 4960516277, + 3977886239, + 42436701 + ], + "geometry": [ + { "lat": 40.7596367, "lon": -73.9742994 }, + { "lat": 40.7596754, "lon": -73.9742712 }, + { "lat": 40.7597325, "lon": -73.9742310 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 420906750, + "bounds": { + "minlat": 40.7609344, + "minlon": -73.9733573, + "maxlat": 40.7609986, + "maxlon": -73.9733102 + }, + "nodes": [ + 3977886253, + 42445941 + ], + "geometry": [ + { "lat": 40.7609344, "lon": -73.9733573 }, + { "lat": 40.7609986, "lon": -73.9733102 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 420906752, + "bounds": { + "minlat": 40.7609986, + "minlon": -73.9733102, + "maxlat": 40.7615131, + "maxlon": -73.9729336 + }, + "nodes": [ + 42445941, + 3977886857, + 4960527241 + ], + "geometry": [ + { "lat": 40.7609986, "lon": -73.9733102 }, + { "lat": 40.7610601, "lon": -73.9732695 }, + { "lat": 40.7615131, "lon": -73.9729336 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 420906753, + "bounds": { + "minlat": 40.7584878, + "minlon": -73.9751336, + "maxlat": 40.7591136, + "maxlon": -73.9746825 + }, + "nodes": [ + 42440453, + 10165986929, + 3977886229, + 42445930 + ], + "geometry": [ + { "lat": 40.7584878, "lon": -73.9751336 }, + { "lat": 40.7585412, "lon": -73.9750950 }, + { "lat": 40.7590537, "lon": -73.9747259 }, + { "lat": 40.7591136, "lon": -73.9746825 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 420906755, + "bounds": { + "minlat": 40.7547351, + "minlon": -73.9778672, + "maxlat": 40.7553621, + "maxlon": -73.9774077 + }, + "nodes": [ + 42444043, + 3944708037, + 4960516273, + 3944708038, + 42434074 + ], + "geometry": [ + { "lat": 40.7547351, "lon": -73.9778672 }, + { "lat": 40.7547949, "lon": -73.9778241 }, + { "lat": 40.7552511, "lon": -73.9774891 }, + { "lat": 40.7553041, "lon": -73.9774517 }, + { "lat": 40.7553621, "lon": -73.9774077 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 420906779, + "bounds": { + "minlat": 40.7971446, + "minlon": -73.9345760, + "maxlat": 40.7973103, + "maxlon": -73.9344558 + }, + "nodes": [ + 4207953793, + 4980851581, + 42439498 + ], + "geometry": [ + { "lat": 40.7971446, "lon": -73.9345760 }, + { "lat": 40.7972538, "lon": -73.9344968 }, + { "lat": 40.7973103, "lon": -73.9344558 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420906780, + "bounds": { + "minlat": 40.7973103, + "minlon": -73.9344558, + "maxlat": 40.7976445, + "maxlon": -73.9342081 + }, + "nodes": [ + 42439498, + 4980851580, + 8838304300 + ], + "geometry": [ + { "lat": 40.7973103, "lon": -73.9344558 }, + { "lat": 40.7973686, "lon": -73.9344119 }, + { "lat": 40.7976445, "lon": -73.9342081 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 420907046, + "bounds": { + "minlat": 40.7952457, + "minlon": -73.9390579, + "maxlat": 40.7957596, + "maxlon": -73.9386877 + }, + "nodes": [ + 4207962274, + 7658692107, + 7046306580, + 4207779536 + ], + "geometry": [ + { "lat": 40.7957596, "lon": -73.9386877 }, + { "lat": 40.7956866, "lon": -73.9387382 }, + { "lat": 40.7955408, "lon": -73.9388443 }, + { "lat": 40.7952457, "lon": -73.9390579 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420907047, + "bounds": { + "minlat": 40.7957596, + "minlon": -73.9386877, + "maxlat": 40.7963136, + "maxlon": -73.9382919 + }, + "nodes": [ + 4207962275, + 7924346872, + 6139477277, + 4207962274 + ], + "geometry": [ + { "lat": 40.7963136, "lon": -73.9382919 }, + { "lat": 40.7962266, "lon": -73.9383532 }, + { "lat": 40.7960778, "lon": -73.9384581 }, + { "lat": 40.7957596, "lon": -73.9386877 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420907902, + "bounds": { + "minlat": 40.7568684, + "minlon": -73.9900569, + "maxlat": 40.7572335, + "maxlon": -73.9897914 + }, + "nodes": [ + 4207957613, + 9235539542, + 42435663 + ], + "geometry": [ + { "lat": 40.7568684, "lon": -73.9900569 }, + { "lat": 40.7571437, "lon": -73.9898567 }, + { "lat": 40.7572335, "lon": -73.9897914 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420907903, + "bounds": { + "minlat": 40.7613013, + "minlon": -73.9868339, + "maxlat": 40.7616677, + "maxlon": -73.9865661 + }, + "nodes": [ + 9648221827, + 10168088512, + 42432589 + ], + "geometry": [ + { "lat": 40.7613013, "lon": -73.9868339 }, + { "lat": 40.7616121, "lon": -73.9866037 }, + { "lat": 40.7616677, "lon": -73.9865661 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete", + "surface": "asphalt", + "turn:lanes": "right|||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420907906, + "bounds": { + "minlat": 40.7616677, + "minlon": -73.9865661, + "maxlat": 40.7622941, + "maxlon": -73.9861011 + }, + "nodes": [ + 42432589, + 10168088511, + 10168091318, + 42435684 + ], + "geometry": [ + { "lat": 40.7616677, "lon": -73.9865661 }, + { "lat": 40.7617233, "lon": -73.9865251 }, + { "lat": 40.7622321, "lon": -73.9861471 }, + { "lat": 40.7622941, "lon": -73.9861011 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420907907, + "bounds": { + "minlat": 40.7609866, + "minlon": -73.9907670, + "maxlat": 40.7611718, + "maxlon": -73.9906333 + }, + "nodes": [ + 4207957614, + 10168047566, + 42445018 + ], + "geometry": [ + { "lat": 40.7611718, "lon": -73.9906333 }, + { "lat": 40.7610370, "lon": -73.9907305 }, + { "lat": 40.7609866, "lon": -73.9907670 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420907908, + "bounds": { + "minlat": 40.7603553, + "minlon": -73.9912267, + "maxlat": 40.7609866, + "maxlon": -73.9907670 + }, + "nodes": [ + 42445018, + 10168047570, + 10168047574, + 42432703 + ], + "geometry": [ + { "lat": 40.7609866, "lon": -73.9907670 }, + { "lat": 40.7609380, "lon": -73.9908024 }, + { "lat": 40.7604145, "lon": -73.9911836 }, + { "lat": 40.7603553, "lon": -73.9912267 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420908127, + "bounds": { + "minlat": 40.7488909, + "minlon": -74.0070027, + "maxlat": 40.7492384, + "maxlon": -74.0067703 + }, + "nodes": [ + 4207978494, + 12161232224, + 3914863399, + 12161232227, + 12161232226, + 42430589 + ], + "geometry": [ + { "lat": 40.7492384, "lon": -74.0067703 }, + { "lat": 40.7490425, "lon": -74.0069111 }, + { "lat": 40.7489911, "lon": -74.0069466 }, + { "lat": 40.7489608, "lon": -74.0069669 }, + { "lat": 40.7489407, "lon": -74.0069785 }, + { "lat": 40.7488909, "lon": -74.0070027 } + ], + "tags": { + "change:backward": "yes", + "change:lanes:forward": "no|no|not_left|yes", + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "lanes:backward": "2", + "lanes:forward": "4", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|left", + "turn:lanes:forward": "left|left|through|through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 420908129, + "bounds": { + "minlat": 40.7570691, + "minlon": -74.0050368, + "maxlat": 40.7573785, + "maxlon": -74.0048127 + }, + "nodes": [ + 10858288589, + 247081122, + 10858288590 + ], + "geometry": [ + { "lat": 40.7573785, "lon": -74.0048127 }, + { "lat": 40.7572156, "lon": -74.0049303 }, + { "lat": 40.7570691, "lon": -74.0050368 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|left|through|through|through" + } +}, +{ + "type": "way", + "id": 420908130, + "bounds": { + "minlat": 40.7518159, + "minlon": -74.0080267, + "maxlat": 40.7523482, + "maxlon": -74.0078241 + }, + "nodes": [ + 4207978499, + 12161224646 + ], + "geometry": [ + { "lat": 40.7523482, "lon": -74.0078241 }, + { "lat": 40.7518159, "lon": -74.0080267 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete", + "turn:lanes": "left|||" + } +}, +{ + "type": "way", + "id": 420908131, + "bounds": { + "minlat": 40.7545608, + "minlon": -74.0068630, + "maxlat": 40.7551052, + "maxlon": -74.0064648 + }, + "nodes": [ + 4207978500, + 12154605980, + 246650510 + ], + "geometry": [ + { "lat": 40.7551052, "lon": -74.0064648 }, + { "lat": 40.7546780, "lon": -74.0067775 }, + { "lat": 40.7545608, "lon": -74.0068630 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|through|through|through" + } +}, +{ + "type": "way", + "id": 420908132, + "bounds": { + "minlat": 40.7551052, + "minlon": -74.0064648, + "maxlat": 40.7570691, + "maxlon": -74.0050368 + }, + "nodes": [ + 10858288590, + 247079887, + 4207978500 + ], + "geometry": [ + { "lat": 40.7570691, "lon": -74.0050368 }, + { "lat": 40.7569571, "lon": -74.0051181 }, + { "lat": 40.7551052, "lon": -74.0064648 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 420908133, + "bounds": { + "minlat": 40.7509336, + "minlon": -74.0083635, + "maxlat": 40.7516791, + "maxlon": -74.0080780 + }, + "nodes": [ + 5690949869, + 247072736, + 4207978498 + ], + "geometry": [ + { "lat": 40.7516791, "lon": -74.0080780 }, + { "lat": 40.7516524, "lon": -74.0080888 }, + { "lat": 40.7509336, "lon": -74.0083635 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420908134, + "bounds": { + "minlat": 40.7504355, + "minlon": -74.0084864, + "maxlat": 40.7509336, + "maxlon": -74.0083635 + }, + "nodes": [ + 4207978498, + 2376384612, + 246579744, + 9143569889, + 2376384602, + 12161224660, + 9143569898 + ], + "geometry": [ + { "lat": 40.7509336, "lon": -74.0083635 }, + { "lat": 40.7507456, "lon": -74.0084284 }, + { "lat": 40.7506937, "lon": -74.0084413 }, + { "lat": 40.7506145, "lon": -74.0084614 }, + { "lat": 40.7505362, "lon": -74.0084756 }, + { "lat": 40.7504632, "lon": -74.0084829 }, + { "lat": 40.7504355, "lon": -74.0084864 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|||" + } +}, +{ + "type": "way", + "id": 420908135, + "bounds": { + "minlat": 40.7497278, + "minlon": -74.0077471, + "maxlat": 40.7500308, + "maxlon": -74.0070273 + }, + "nodes": [ + 11813245501, + 4872498376 + ], + "geometry": [ + { "lat": 40.7497278, "lon": -74.0070273 }, + { "lat": 40.7500308, "lon": -74.0077471 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 24th Street", + "name:ru": "Западная 24-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 420908136, + "bounds": { + "minlat": 40.7500308, + "minlon": -74.0081705, + "maxlat": 40.7502088, + "maxlon": -74.0077471 + }, + "nodes": [ + 4872498376, + 11813245502, + 3874681611 + ], + "geometry": [ + { "lat": 40.7500308, "lon": -74.0077471 }, + { "lat": 40.7500631, "lon": -74.0078236 }, + { "lat": 40.7502088, "lon": -74.0081705 } + ], + "tags": { + "alt_name": "11 Avenue", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "West 24th Street", + "name:ru": "Западная 24-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|left;right|right" + } +}, +{ + "type": "way", + "id": 420908137, + "bounds": { + "minlat": 40.7610948, + "minlon": -73.9836865, + "maxlat": 40.7612779, + "maxlon": -73.9832504 + }, + "nodes": [ + 4207978589, + 4782363329, + 2782279879, + 42440001 + ], + "geometry": [ + { "lat": 40.7612779, "lon": -73.9836865 }, + { "lat": 40.7611786, "lon": -73.9834491 }, + { "lat": 40.7611560, "lon": -73.9833952 }, + { "lat": 40.7610948, "lon": -73.9832504 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 50th Street", + "name:ru": "Западная 50-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 420908138, + "bounds": { + "minlat": 40.7599106, + "minlon": -73.9832504, + "maxlat": 40.7610948, + "maxlon": -73.9804176 + }, + "nodes": [ + 42440001, + 2782279859, + 1745991214, + 3971196629, + 3971196627, + 42430358 + ], + "geometry": [ + { "lat": 40.7610948, "lon": -73.9832504 }, + { "lat": 40.7610473, "lon": -73.9831377 }, + { "lat": 40.7606769, "lon": -73.9822497 }, + { "lat": 40.7604917, "lon": -73.9818069 }, + { "lat": 40.7599678, "lon": -73.9805536 }, + { "lat": 40.7599106, "lon": -73.9804176 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "West 50th Street", + "name:ru": "Западная 50-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421123043, + "bounds": { + "minlat": 40.7106885, + "minlon": -73.9536005, + "maxlat": 40.7107735, + "maxlon": -73.9528032 + }, + "nodes": [ + 42488301, + 8842929755, + 4202609197, + 4202609198 + ], + "geometry": [ + { "lat": 40.7106885, "lon": -73.9536005 }, + { "lat": 40.7106995, "lon": -73.9535018 }, + { "lat": 40.7107423, "lon": -73.9530882 }, + { "lat": 40.7107735, "lon": -73.9528032 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base_1": "Borinquen", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 421123044, + "bounds": { + "minlat": 40.7106705, + "minlon": -73.9544783, + "maxlat": 40.7109363, + "maxlon": -73.9513980 + }, + "nodes": [ + 9967927280, + 9967927276, + 8842579327, + 9967927272, + 9967927271, + 9967927270, + 9207315800, + 9967927275, + 8842568892, + 9955210450, + 8842568890 + ], + "geometry": [ + { "lat": 40.7109363, "lon": -73.9513980 }, + { "lat": 40.7109341, "lon": -73.9516692 }, + { "lat": 40.7108988, "lon": -73.9520722 }, + { "lat": 40.7108469, "lon": -73.9525936 }, + { "lat": 40.7108289, "lon": -73.9527817 }, + { "lat": 40.7107869, "lon": -73.9532221 }, + { "lat": 40.7107652, "lon": -73.9534723 }, + { "lat": 40.7107563, "lon": -73.9535620 }, + { "lat": 40.7107451, "lon": -73.9536615 }, + { "lat": 40.7106763, "lon": -73.9543943 }, + { "lat": 40.7106705, "lon": -73.9544783 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 421319980, + "bounds": { + "minlat": 40.7291069, + "minlon": -73.9311134, + "maxlat": 40.7293684, + "maxlon": -73.9291300 + }, + "nodes": [ + 42825195, + 12965937344, + 12965937345, + 9982697999, + 9194902827, + 9194902828, + 11740134687, + 9982698000, + 9194902829, + 279156222, + 9194902830, + 9982698001, + 9194902831, + 9194902832, + 7712008328, + 7712008320, + 7678967236 + ], + "geometry": [ + { "lat": 40.7291088, "lon": -73.9311134 }, + { "lat": 40.7291069, "lon": -73.9310849 }, + { "lat": 40.7291105, "lon": -73.9310534 }, + { "lat": 40.7291617, "lon": -73.9309395 }, + { "lat": 40.7292677, "lon": -73.9307692 }, + { "lat": 40.7292937, "lon": -73.9307152 }, + { "lat": 40.7292970, "lon": -73.9307057 }, + { "lat": 40.7293156, "lon": -73.9306521 }, + { "lat": 40.7293336, "lon": -73.9305908 }, + { "lat": 40.7293498, "lon": -73.9305207 }, + { "lat": 40.7293610, "lon": -73.9304432 }, + { "lat": 40.7293664, "lon": -73.9303675 }, + { "lat": 40.7293684, "lon": -73.9302857 }, + { "lat": 40.7293677, "lon": -73.9301972 }, + { "lat": 40.7293556, "lon": -73.9299623 }, + { "lat": 40.7293340, "lon": -73.9295111 }, + { "lat": 40.7293180, "lon": -73.9291300 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Laurel Hill Boulevard", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 421326209, + "bounds": { + "minlat": 40.7257310, + "minlon": -73.9093303, + "maxlat": 40.7260700, + "maxlon": -73.9088908 + }, + "nodes": [ + 4211041540, + 5481966156, + 13247301437, + 42827429 + ], + "geometry": [ + { "lat": 40.7257310, "lon": -73.9093303 }, + { "lat": 40.7257803, "lon": -73.9092662 }, + { "lat": 40.7259342, "lon": -73.9090673 }, + { "lat": 40.7260700, "lon": -73.9088908 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Maurice Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 421505920, + "bounds": { + "minlat": 40.8133809, + "minlon": -73.9562717, + "maxlat": 40.8136168, + "maxlon": -73.9560947 + }, + "nodes": [ + 42442584, + 10050045626, + 13899248716 + ], + "geometry": [ + { "lat": 40.8133809, "lon": -73.9562717 }, + { "lat": 40.8135024, "lon": -73.9561805 }, + { "lat": 40.8136168, "lon": -73.9560947 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421506977, + "bounds": { + "minlat": 40.8049979, + "minlon": -73.9391836, + "maxlat": 40.8051222, + "maxlon": -73.9388881 + }, + "nodes": [ + 596776654, + 12098986002, + 42444456 + ], + "geometry": [ + { "lat": 40.8051222, "lon": -73.9391836 }, + { "lat": 40.8050631, "lon": -73.9390431 }, + { "lat": 40.8049979, "lon": -73.9388881 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421506978, + "bounds": { + "minlat": 40.8053372, + "minlon": -73.9401283, + "maxlat": 40.8055184, + "maxlon": -73.9396990 + }, + "nodes": [ + 4212658372, + 4212658371 + ], + "geometry": [ + { "lat": 40.8055184, "lon": -73.9401283 }, + { "lat": 40.8053372, "lon": -73.9396990 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421506979, + "bounds": { + "minlat": 40.8055184, + "minlon": -73.9406432, + "maxlat": 40.8057387, + "maxlon": -73.9401283 + }, + "nodes": [ + 42444453, + 10170762174, + 11255278312, + 4212658372 + ], + "geometry": [ + { "lat": 40.8057387, "lon": -73.9406432 }, + { "lat": 40.8056993, "lon": -73.9405489 }, + { "lat": 40.8055783, "lon": -73.9402677 }, + { "lat": 40.8055184, "lon": -73.9401283 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "|merge_to_left|", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421506980, + "bounds": { + "minlat": 40.8074052, + "minlon": -73.9456603, + "maxlat": 40.8077463, + "maxlon": -73.9454127 + }, + "nodes": [ + 4212658373, + 10170875034, + 42453246 + ], + "geometry": [ + { "lat": 40.8074052, "lon": -73.9456603 }, + { "lat": 40.8076486, "lon": -73.9454836 }, + { "lat": 40.8077463, "lon": -73.9454127 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "turn:lanes": "through|", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 421508925, + "bounds": { + "minlat": 40.7847313, + "minlon": -74.0085053, + "maxlat": 40.7851858, + "maxlon": -74.0075576 + }, + "nodes": [ + 103861638, + 5474265142, + 103861639, + 4212678505 + ], + "geometry": [ + { "lat": 40.7851858, "lon": -74.0085053 }, + { "lat": 40.7851371, "lon": -74.0084084 }, + { "lat": 40.7849940, "lon": -74.0081240 }, + { "lat": 40.7847313, "lon": -74.0075576 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hillside Road", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hillside", + "tiger:name_base_1": "River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|left;through;right" + } +}, +{ + "type": "way", + "id": 421508926, + "bounds": { + "minlat": 40.7806180, + "minlon": -74.0099070, + "maxlat": 40.7807898, + "maxlon": -74.0097664 + }, + "nodes": [ + 308693081, + 4205818438 + ], + "geometry": [ + { "lat": 40.7807898, "lon": -74.0097664 }, + { "lat": 40.7806180, "lon": -74.0099070 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 421508927, + "bounds": { + "minlat": 40.7807898, + "minlon": -74.0097664, + "maxlat": 40.7811350, + "maxlon": -74.0095046 + }, + "nodes": [ + 4212678504, + 308693081 + ], + "geometry": [ + { "lat": 40.7811350, "lon": -74.0095046 }, + { "lat": 40.7807898, "lon": -74.0097664 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:forward": "|through" + } +}, +{ + "type": "way", + "id": 421745235, + "bounds": { + "minlat": 40.7323849, + "minlon": -73.9437496, + "maxlat": 40.7325213, + "maxlon": -73.9433733 + }, + "nodes": [ + 12231513801, + 13515590835, + 13515590836, + 9788947426, + 622232007 + ], + "geometry": [ + { "lat": 40.7325213, "lon": -73.9433733 }, + { "lat": 40.7324917, "lon": -73.9434609 }, + { "lat": 40.7324617, "lon": -73.9435462 }, + { "lat": 40.7324170, "lon": -73.9436631 }, + { "lat": 40.7323849, "lon": -73.9437496 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "sidewalk:both": "separate", + "turn:lanes:forward": "left;through|through", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 421746240, + "bounds": { + "minlat": 40.7217289, + "minlon": -73.9593279, + "maxlat": 40.7225202, + "maxlon": -73.9580613 + }, + "nodes": [ + 42469520, + 9794890484, + 9998760563, + 9794890570, + 42506305 + ], + "geometry": [ + { "lat": 40.7225202, "lon": -73.9593279 }, + { "lat": 40.7224868, "lon": -73.9592743 }, + { "lat": 40.7217959, "lon": -73.9581697 }, + { "lat": 40.7217719, "lon": -73.9581313 }, + { "lat": 40.7217289, "lon": -73.9580613 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North 11th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "11th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 421746241, + "bounds": { + "minlat": 40.7217289, + "minlon": -73.9580613, + "maxlat": 40.7233950, + "maxlon": -73.9562761 + }, + "nodes": [ + 42506291, + 9779533048, + 5435946593, + 42488163, + 5435946586, + 6245642021, + 42506300, + 6245642020, + 11163899177, + 6245642019, + 42506305 + ], + "geometry": [ + { "lat": 40.7233950, "lon": -73.9562761 }, + { "lat": 40.7233391, "lon": -73.9563327 }, + { "lat": 40.7228930, "lon": -73.9568106 }, + { "lat": 40.7228378, "lon": -73.9568682 }, + { "lat": 40.7227887, "lon": -73.9569208 }, + { "lat": 40.7223345, "lon": -73.9574094 }, + { "lat": 40.7222828, "lon": -73.9574639 }, + { "lat": 40.7222367, "lon": -73.9575127 }, + { "lat": 40.7221031, "lon": -73.9576568 }, + { "lat": 40.7217826, "lon": -73.9580023 }, + { "lat": 40.7217289, "lon": -73.9580613 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 421750613, + "bounds": { + "minlat": 40.7032259, + "minlon": -73.9667512, + "maxlat": 40.7039036, + "maxlon": -73.9658584 + }, + "nodes": [ + 42469430, + 9776829180, + 5861248519, + 42469435, + 5104592947 + ], + "geometry": [ + { "lat": 40.7032259, "lon": -73.9658584 }, + { "lat": 40.7032648, "lon": -73.9659071 }, + { "lat": 40.7035169, "lon": -73.9662149 }, + { "lat": 40.7037407, "lon": -73.9664902 }, + { "lat": 40.7039036, "lon": -73.9667512 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 421750614, + "bounds": { + "minlat": 40.7032259, + "minlon": -73.9658584, + "maxlat": 40.7037186, + "maxlon": -73.9650446 + }, + "nodes": [ + 42475777, + 9776829164, + 9776829178, + 42469430 + ], + "geometry": [ + { "lat": 40.7037186, "lon": -73.9650446 }, + { "lat": 40.7036425, "lon": -73.9651694 }, + { "lat": 40.7032391, "lon": -73.9657601 }, + { "lat": 40.7032259, "lon": -73.9658584 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Wilson Street", + "name:etymology:wikidata": "Q365181", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wilson", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 421752002, + "bounds": { + "minlat": 40.7010134, + "minlon": -73.9632071, + "maxlat": 40.7010533, + "maxlon": -73.9631504 + }, + "nodes": [ + 42469409, + 3552687146 + ], + "geometry": [ + { "lat": 40.7010533, "lon": -73.9631504 }, + { "lat": 40.7010134, "lon": -73.9632071 } + ], + "tags": { + "highway": "residential", + "name": "Hooper Street", + "name:etymology:wikidata": "Q1345669", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hooper", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 421752003, + "bounds": { + "minlat": 40.7010533, + "minlon": -73.9631504, + "maxlat": 40.7019633, + "maxlon": -73.9617496 + }, + "nodes": [ + 42491495, + 6245943466, + 6245943465, + 42469409 + ], + "geometry": [ + { "lat": 40.7019633, "lon": -73.9617496 }, + { "lat": 40.7018938, "lon": -73.9618631 }, + { "lat": 40.7010946, "lon": -73.9630893 }, + { "lat": 40.7010533, "lon": -73.9631504 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Hooper Street", + "name:etymology:wikidata": "Q1345669", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hooper", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 421752004, + "bounds": { + "minlat": 40.7015540, + "minlon": -73.9638766, + "maxlat": 40.7015901, + "maxlon": -73.9638198 + }, + "nodes": [ + 3552687147, + 42469414 + ], + "geometry": [ + { "lat": 40.7015540, "lon": -73.9638766 }, + { "lat": 40.7015901, "lon": -73.9638198 } + ], + "tags": { + "highway": "residential", + "name": "Keap Street", + "name:etymology:wikidata": "Q1345669", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Keap", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 421752005, + "bounds": { + "minlat": 40.7015901, + "minlon": -73.9638198, + "maxlat": 40.7025143, + "maxlon": -73.9623856 + }, + "nodes": [ + 42469414, + 4999422739, + 6248573328, + 42488355 + ], + "geometry": [ + { "lat": 40.7015901, "lon": -73.9638198 }, + { "lat": 40.7016295, "lon": -73.9637617 }, + { "lat": 40.7024393, "lon": -73.9625042 }, + { "lat": 40.7025143, "lon": -73.9623856 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Keap Street", + "name:etymology:wikidata": "Q880686", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Keap", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 421752006, + "bounds": { + "minlat": 40.7010533, + "minlon": -73.9638198, + "maxlat": 40.7015901, + "maxlon": -73.9631504 + }, + "nodes": [ + 42469409, + 6248573340, + 9246837706, + 42469414 + ], + "geometry": [ + { "lat": 40.7010533, "lon": -73.9631504 }, + { "lat": 40.7011004, "lon": -73.9632104 }, + { "lat": 40.7014869, "lon": -73.9636963 }, + { "lat": 40.7015901, "lon": -73.9638198 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 421752007, + "bounds": { + "minlat": 40.7010134, + "minlon": -73.9638766, + "maxlat": 40.7015540, + "maxlon": -73.9632071 + }, + "nodes": [ + 3552687147, + 9246837705, + 8280978682, + 6248573339, + 3552687146 + ], + "geometry": [ + { "lat": 40.7015540, "lon": -73.9638766 }, + { "lat": 40.7014454, "lon": -73.9637421 }, + { "lat": 40.7011962, "lon": -73.9634335 }, + { "lat": 40.7010597, "lon": -73.9632644 }, + { "lat": 40.7010134, "lon": -73.9632071 } + ], + "tags": { + "bicycle": "use_sidepath", + "cycleway:right": "separate", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 421816854, + "bounds": { + "minlat": 40.8717493, + "minlon": -74.0078448, + "maxlat": 40.8719751, + "maxlon": -74.0070454 + }, + "nodes": [ + 567269831, + 10940833240, + 10940833257, + 10940833223, + 103247034, + 10940833224, + 103247038 + ], + "geometry": [ + { "lat": 40.8717493, "lon": -74.0070454 }, + { "lat": 40.8717927, "lon": -74.0071709 }, + { "lat": 40.8718349, "lon": -74.0073040 }, + { "lat": 40.8718729, "lon": -74.0074339 }, + { "lat": 40.8719085, "lon": -74.0075676 }, + { "lat": 40.8719426, "lon": -74.0077012 }, + { "lat": 40.8719751, "lon": -74.0078448 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "3", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 421816857, + "bounds": { + "minlat": 40.8714853, + "minlon": -74.0069796, + "maxlat": 40.8716993, + "maxlon": -74.0069071 + }, + "nodes": [ + 567269853, + 10940833283, + 10940833277, + 567269855 + ], + "geometry": [ + { "lat": 40.8716993, "lon": -74.0069071 }, + { "lat": 40.8716270, "lon": -74.0069395 }, + { "lat": 40.8715558, "lon": -74.0069638 }, + { "lat": 40.8714853, "lon": -74.0069796 } + ], + "tags": { + "highway": "residential", + "name": "Frank W Burr Boulevard", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 421816858, + "bounds": { + "minlat": 40.8719940, + "minlon": -74.0067954, + "maxlat": 40.8721450, + "maxlon": -74.0067816 + }, + "nodes": [ + 567269846, + 10940833216, + 4775749266, + 10940833253, + 567269849 + ], + "geometry": [ + { "lat": 40.8721450, "lon": -74.0067954 }, + { "lat": 40.8721113, "lon": -74.0067888 }, + { "lat": 40.8720728, "lon": -74.0067835 }, + { "lat": 40.8720364, "lon": -74.0067816 }, + { "lat": 40.8719940, "lon": -74.0067827 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Frank W Burr Boulevard", + "oneway": "yes", + "turn:lanes": "left|left" + } +}, +{ + "type": "way", + "id": 421821522, + "bounds": { + "minlat": 40.7022637, + "minlon": -73.9932640, + "maxlat": 40.7024544, + "maxlon": -73.9928485 + }, + "nodes": [ + 598054722, + 11674209306, + 10739408474, + 42499982 + ], + "geometry": [ + { "lat": 40.7022637, "lon": -73.9928485 }, + { "lat": 40.7023116, "lon": -73.9929583 }, + { "lat": 40.7024043, "lon": -73.9931559 }, + { "lat": 40.7024544, "lon": -73.9932640 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 421821527, + "bounds": { + "minlat": 40.7007775, + "minlon": -73.9916191, + "maxlat": 40.7013993, + "maxlon": -73.9908805 + }, + "nodes": [ + 42519809, + 5649546986, + 11158142750, + 5649546988, + 3174844148 + ], + "geometry": [ + { "lat": 40.7007775, "lon": -73.9908805 }, + { "lat": 40.7008947, "lon": -73.9909981 }, + { "lat": 40.7009601, "lon": -73.9910761 }, + { "lat": 40.7010844, "lon": -73.9912244 }, + { "lat": 40.7013993, "lon": -73.9916191 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz" + } +}, +{ + "type": "way", + "id": 421821533, + "bounds": { + "minlat": 40.7021315, + "minlon": -73.9928176, + "maxlat": 40.7022490, + "maxlon": -73.9925813 + }, + "nodes": [ + 42483438, + 10739408487, + 8733935957, + 4625676872 + ], + "geometry": [ + { "lat": 40.7021315, "lon": -73.9925813 }, + { "lat": 40.7021689, "lon": -73.9926542 }, + { "lat": 40.7021906, "lon": -73.9926962 }, + { "lat": 40.7022490, "lon": -73.9928176 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 421821752, + "bounds": { + "minlat": 40.8799808, + "minlon": -73.9833847, + "maxlat": 40.8802523, + "maxlon": -73.9829040 + }, + "nodes": [ + 298940039, + 4215546706 + ], + "geometry": [ + { "lat": 40.8802523, "lon": -73.9833847 }, + { "lat": 40.8799808, "lon": -73.9829040 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 421821928, + "bounds": { + "minlat": 40.7000949, + "minlon": -73.9877775, + "maxlat": 40.7000976, + "maxlon": -73.9872976 + }, + "nodes": [ + 4215548892, + 10722387735, + 370870738 + ], + "geometry": [ + { "lat": 40.7000949, "lon": -73.9872976 }, + { "lat": 40.7000976, "lon": -73.9876620 }, + { "lat": 40.7000967, "lon": -73.9877775 } + ], + "tags": { + "destination": "Brooklyn Bridge;Pearl Street", + "foot": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Sands Street", + "name:etymology:wikidata": "Q1708602", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 421824309, + "bounds": { + "minlat": 40.7135026, + "minlon": -73.9979810, + "maxlat": 40.7136728, + "maxlon": -73.9977832 + }, + "nodes": [ + 4158810011, + 8827539969, + 8996353561, + 3898690235, + 588455742 + ], + "geometry": [ + { "lat": 40.7135026, "lon": -73.9977832 }, + { "lat": 40.7135502, "lon": -73.9978406 }, + { "lat": 40.7135760, "lon": -73.9978717 }, + { "lat": 40.7136069, "lon": -73.9979081 }, + { "lat": 40.7136728, "lon": -73.9979810 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 421825692, + "bounds": { + "minlat": 40.7321691, + "minlon": -73.9913538, + "maxlat": 40.7347875, + "maxlon": -73.9907407 + }, + "nodes": [ + 42428493, + 12179582183, + 12179582184, + 12179582185, + 3670742436, + 12179582186, + 4762558055, + 4762558057, + 8310246292, + 42428491, + 8309479794, + 8309479701, + 42428489, + 8309479702, + 11381232564, + 8309479710, + 42428483, + 8309479711, + 4684550288 + ], + "geometry": [ + { "lat": 40.7347875, "lon": -73.9907407 }, + { "lat": 40.7347688, "lon": -73.9907604 }, + { "lat": 40.7347474, "lon": -73.9907774 }, + { "lat": 40.7347280, "lon": -73.9907909 }, + { "lat": 40.7347037, "lon": -73.9908005 }, + { "lat": 40.7346741, "lon": -73.9908092 }, + { "lat": 40.7346018, "lon": -73.9908261 }, + { "lat": 40.7344410, "lon": -73.9908589 }, + { "lat": 40.7340505, "lon": -73.9909487 }, + { "lat": 40.7339814, "lon": -73.9909530 }, + { "lat": 40.7339163, "lon": -73.9909586 }, + { "lat": 40.7332727, "lon": -73.9910986 }, + { "lat": 40.7332140, "lon": -73.9911140 }, + { "lat": 40.7331515, "lon": -73.9911283 }, + { "lat": 40.7329714, "lon": -73.9911695 }, + { "lat": 40.7325184, "lon": -73.9912731 }, + { "lat": 40.7324490, "lon": -73.9912890 }, + { "lat": 40.7323976, "lon": -73.9913004 }, + { "lat": 40.7321691, "lon": -73.9913538 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 421825693, + "bounds": { + "minlat": 40.7255012, + "minlon": -73.9967146, + "maxlat": 40.7259076, + "maxlon": -73.9963711 + }, + "nodes": [ + 4215580881, + 5829827207, + 42428447 + ], + "geometry": [ + { "lat": 40.7259076, "lon": -73.9963711 }, + { "lat": 40.7255709, "lon": -73.9966549 }, + { "lat": 40.7255012, "lon": -73.9967146 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 421825694, + "bounds": { + "minlat": 40.7147793, + "minlon": -74.0023169, + "maxlat": 40.7151561, + "maxlon": -74.0021038 + }, + "nodes": [ + 4215580879, + 11507343853, + 4878851615, + 42427300 + ], + "geometry": [ + { "lat": 40.7147793, "lon": -74.0023169 }, + { "lat": 40.7150092, "lon": -74.0021932 }, + { "lat": 40.7150728, "lon": -74.0021547 }, + { "lat": 40.7151561, "lon": -74.0021038 } + ], + "tags": { + "alt_name": "Foley Square", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|right", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421825695, + "bounds": { + "minlat": 40.7214368, + "minlon": -73.9837985, + "maxlat": 40.7215294, + "maxlon": -73.9834869 + }, + "nodes": [ + 4215580880, + 3783146163, + 42440401 + ], + "geometry": [ + { "lat": 40.7214368, "lon": -73.9834869 }, + { "lat": 40.7215004, "lon": -73.9837008 }, + { "lat": 40.7215294, "lon": -73.9837985 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 421825696, + "bounds": { + "minlat": 40.7210194, + "minlon": -73.9827157, + "maxlat": 40.7212016, + "maxlon": -73.9821197 + }, + "nodes": [ + 3783071112, + 9181587097 + ], + "geometry": [ + { "lat": 40.7210194, "lon": -73.9821197 }, + { "lat": 40.7212016, "lon": -73.9827157 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 421826773, + "bounds": { + "minlat": 40.7187810, + "minlon": -73.9880900, + "maxlat": 40.7190347, + "maxlon": -73.9879587 + }, + "nodes": [ + 12195869791, + 4215596089 + ], + "geometry": [ + { "lat": 40.7187810, "lon": -73.9880900 }, + { "lat": 40.7190347, "lon": -73.9879587 } + ], + "tags": { + "bus:lanes:backward": "|designated", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Essex Street", + "name:etymology:wikidata": "Q23240", + "name:ko": "에식스 스트리트", + "name:ru": "Эссекс-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|", + "wikidata": "Q4532801", + "wikipedia": "en:Essex Street" + } +}, +{ + "type": "way", + "id": 421826774, + "bounds": { + "minlat": 40.7153933, + "minlon": -73.9948751, + "maxlat": 40.7158245, + "maxlon": -73.9948562 + }, + "nodes": [ + 588455863, + 4215595387, + 4477147269 + ], + "geometry": [ + { "lat": 40.7153933, "lon": -73.9948562 }, + { "lat": 40.7156035, "lon": -73.9948654 }, + { "lat": 40.7158245, "lon": -73.9948751 } + ], + "tags": { + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:conditional": "no @ (Mo-Fr 05:00-15:00)", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "35 mph", + "moped": "no", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 421827957, + "bounds": { + "minlat": 40.7199105, + "minlon": -73.9935494, + "maxlat": 40.7200997, + "maxlon": -73.9929475 + }, + "nodes": [ + 4215624277, + 13033174919, + 12196062139, + 8231896497, + 42429754 + ], + "geometry": [ + { "lat": 40.7200997, "lon": -73.9935494 }, + { "lat": 40.7200749, "lon": -73.9934713 }, + { "lat": 40.7199654, "lon": -73.9931259 }, + { "lat": 40.7199498, "lon": -73.9930772 }, + { "lat": 40.7199105, "lon": -73.9929475 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "name:zh": "地蘭西街", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 421827958, + "bounds": { + "minlat": 40.7191808, + "minlon": -73.9913219, + "maxlat": 40.7194191, + "maxlon": -73.9905372 + }, + "nodes": [ + 486867405, + 5296795758, + 8821681986, + 5296795755, + 3212472843 + ], + "geometry": [ + { "lat": 40.7194191, "lon": -73.9913219 }, + { "lat": 40.7194003, "lon": -73.9912608 }, + { "lat": 40.7192223, "lon": -73.9906713 }, + { "lat": 40.7192072, "lon": -73.9906219 }, + { "lat": 40.7191808, "lon": -73.9905372 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "name:zh": "地蘭西街", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|none|none", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 421827960, + "bounds": { + "minlat": 40.7184824, + "minlon": -73.9890537, + "maxlat": 40.7187289, + "maxlon": -73.9882439 + }, + "nodes": [ + 486867459, + 3314293719, + 11163941274, + 12195869789, + 3314293723, + 486867513 + ], + "geometry": [ + { "lat": 40.7187289, "lon": -73.9890537 }, + { "lat": 40.7187098, "lon": -73.9889910 }, + { "lat": 40.7185566, "lon": -73.9884877 }, + { "lat": 40.7185306, "lon": -73.9884024 }, + { "lat": 40.7185184, "lon": -73.9883622 }, + { "lat": 40.7184824, "lon": -73.9882439 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 421827961, + "bounds": { + "minlat": 40.7187289, + "minlon": -73.9898116, + "maxlat": 40.7189582, + "maxlon": -73.9890537 + }, + "nodes": [ + 486867490, + 5296792749, + 12195880604, + 3314293718, + 486867459 + ], + "geometry": [ + { "lat": 40.7189582, "lon": -73.9898116 }, + { "lat": 40.7189382, "lon": -73.9897451 }, + { "lat": 40.7187614, "lon": -73.9891605 }, + { "lat": 40.7187488, "lon": -73.9891190 }, + { "lat": 40.7187289, "lon": -73.9890537 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 421827963, + "bounds": { + "minlat": 40.7200997, + "minlon": -73.9939937, + "maxlat": 40.7203018, + "maxlon": -73.9935494 + }, + "nodes": [ + 1773076511, + 9925383727, + 12196062140, + 4215624277 + ], + "geometry": [ + { "lat": 40.7203018, "lon": -73.9939937 }, + { "lat": 40.7202450, "lon": -73.9939038 }, + { "lat": 40.7201807, "lon": -73.9938018 }, + { "lat": 40.7200997, "lon": -73.9935494 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "name:zh": "地蘭西街", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 421830413, + "bounds": { + "minlat": 40.7188180, + "minlon": -73.9754842, + "maxlat": 40.7188934, + "maxlon": -73.9752409 + }, + "nodes": [ + 42446398, + 9181587084, + 4492779804 + ], + "geometry": [ + { "lat": 40.7188934, "lon": -73.9754842 }, + { "lat": 40.7188683, "lon": -73.9753992 }, + { "lat": 40.7188180, "lon": -73.9752409 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 421830414, + "bounds": { + "minlat": 40.7187862, + "minlon": -73.9751131, + "maxlat": 40.7188470, + "maxlon": -73.9748036 + }, + "nodes": [ + 42457401, + 9181587076, + 370901764, + 9907942874, + 6336679785, + 370901766, + 9181587077, + 9907942875, + 42423051 + ], + "geometry": [ + { "lat": 40.7187961, "lon": -73.9751131 }, + { "lat": 40.7187894, "lon": -73.9750547 }, + { "lat": 40.7187868, "lon": -73.9750189 }, + { "lat": 40.7187862, "lon": -73.9749720 }, + { "lat": 40.7187892, "lon": -73.9749316 }, + { "lat": 40.7187961, "lon": -73.9748980 }, + { "lat": 40.7188137, "lon": -73.9748574 }, + { "lat": 40.7188299, "lon": -73.9748297 }, + { "lat": 40.7188470, "lon": -73.9748036 } + ], + "tags": { + "destination": "FDR Drive North", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 421831216, + "bounds": { + "minlat": 40.7024066, + "minlon": -74.0141521, + "maxlat": 40.7026854, + "maxlon": -74.0137834 + }, + "nodes": [ + 279151954, + 1772096965, + 3754543920, + 279151952, + 2034011052 + ], + "geometry": [ + { "lat": 40.7024066, "lon": -74.0137834 }, + { "lat": 40.7024510, "lon": -74.0138706 }, + { "lat": 40.7025343, "lon": -74.0139849 }, + { "lat": 40.7025912, "lon": -74.0140500 }, + { "lat": 40.7026854, "lon": -74.0141521 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "State Street", + "name:etymology:wikidata": "Q1384", + "name:ko": "스테이트 스트리트", + "name:ru": "Стейт-стрит", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "State", + "tiger:name_type": "St", + "turn:lanes:backward": "through|right", + "wikidata": "Q13461917", + "wikipedia": "en:State Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421832641, + "bounds": { + "minlat": 40.7235592, + "minlon": -74.0079290, + "maxlat": 40.7237633, + "maxlon": -74.0076357 + }, + "nodes": [ + 3788364714, + 4602429327, + 12417264049 + ], + "geometry": [ + { "lat": 40.7235592, "lon": -74.0076357 }, + { "lat": 40.7236243, "lon": -74.0077370 }, + { "lat": 40.7237633, "lon": -74.0079290 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "|designated", + "change": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421832642, + "bounds": { + "minlat": 40.7163041, + "minlon": -74.0121906, + "maxlat": 40.7168785, + "maxlon": -74.0109232 + }, + "nodes": [ + 4215665528, + 11460524961, + 8304497235, + 42431617 + ], + "geometry": [ + { "lat": 40.7168785, "lon": -74.0121906 }, + { "lat": 40.7166825, "lon": -74.0117591 }, + { "lat": 40.7163509, "lon": -74.0110308 }, + { "lat": 40.7163041, "lon": -74.0109232 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421832643, + "bounds": { + "minlat": 40.7225692, + "minlon": -74.0063170, + "maxlat": 40.7229860, + "maxlon": -74.0062383 + }, + "nodes": [ + 4215665529, + 4778174561, + 42440838 + ], + "geometry": [ + { "lat": 40.7229860, "lon": -74.0062383 }, + { "lat": 40.7226999, "lon": -74.0062965 }, + { "lat": 40.7225692, "lon": -74.0063170 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "old_ref": "NY 1A", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|||right", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 421832644, + "bounds": { + "minlat": 40.7237152, + "minlon": -74.0061244, + "maxlat": 40.7237872, + "maxlon": -74.0061125 + }, + "nodes": [ + 42423456, + 4602414021, + 4890633690 + ], + "geometry": [ + { "lat": 40.7237872, "lon": -74.0061125 }, + { "lat": 40.7237608, "lon": -74.0061172 }, + { "lat": 40.7237152, "lon": -74.0061244 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "old_ref": "NY 1A", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 421832645, + "bounds": { + "minlat": 40.7159660, + "minlon": -74.0130407, + "maxlat": 40.7164234, + "maxlon": -74.0129331 + }, + "nodes": [ + 4215665527, + 4872879381, + 42449613 + ], + "geometry": [ + { "lat": 40.7159660, "lon": -74.0130407 }, + { "lat": 40.7163227, "lon": -74.0129560 }, + { "lat": 40.7164234, "lon": -74.0129331 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|through|through|through|through;right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 421833863, + "bounds": { + "minlat": 40.8620224, + "minlon": -73.9134747, + "maxlat": 40.8621855, + "maxlon": -73.9129928 + }, + "nodes": [ + 595749104, + 12058432166, + 12058432167, + 12058432168, + 12058477469, + 42731051 + ], + "geometry": [ + { "lat": 40.8620224, "lon": -73.9129928 }, + { "lat": 40.8620717, "lon": -73.9131251 }, + { "lat": 40.8621023, "lon": -73.9132119 }, + { "lat": 40.8621318, "lon": -73.9133000 }, + { "lat": 40.8621582, "lon": -73.9133830 }, + { "lat": 40.8621855, "lon": -73.9134747 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 421833864, + "bounds": { + "minlat": 40.8617879, + "minlon": -73.9129782, + "maxlat": 40.8618562, + "maxlon": -73.9125853 + }, + "nodes": [ + 12058469336, + 12074547759, + 9903143734, + 2024058882, + 1764747380, + 12058469337, + 12058459527, + 12074332268 + ], + "geometry": [ + { "lat": 40.8618562, "lon": -73.9129782 }, + { "lat": 40.8618485, "lon": -73.9129525 }, + { "lat": 40.8618398, "lon": -73.9129182 }, + { "lat": 40.8618303, "lon": -73.9128785 }, + { "lat": 40.8618217, "lon": -73.9128365 }, + { "lat": 40.8618163, "lon": -73.9128030 }, + { "lat": 40.8617919, "lon": -73.9126160 }, + { "lat": 40.8617879, "lon": -73.9125853 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "layer": "1", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 421837206, + "bounds": { + "minlat": 40.8391051, + "minlon": -73.9817560, + "maxlat": 40.8395337, + "maxlon": -73.9815324 + }, + "nodes": [ + 103174033, + 13525434312, + 2395474002, + 103245963, + 4215730277 + ], + "geometry": [ + { "lat": 40.8391051, "lon": -73.9817560 }, + { "lat": 40.8391904, "lon": -73.9817030 }, + { "lat": 40.8392368, "lon": -73.9816742 }, + { "lat": 40.8394610, "lon": -73.9815710 }, + { "lat": 40.8395337, "lon": -73.9815324 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "2", + "name": "Anderson Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 421838875, + "bounds": { + "minlat": 40.8498912, + "minlon": -73.9357231, + "maxlat": 40.8501764, + "maxlon": -73.9350587 + }, + "nodes": [ + 42429029, + 9550791838, + 11595000910, + 13809335947 + ], + "geometry": [ + { "lat": 40.8501764, "lon": -73.9357231 }, + { "lat": 40.8501265, "lon": -73.9356068 }, + { "lat": 40.8499261, "lon": -73.9351402 }, + { "lat": 40.8498912, "lon": -73.9350587 } + ], + "tags": { + "alt_name": "Manolo Tavarez Justo Way", + "bus": "yes", + "busway:right": "lane", + "description": "This honorary street name memorializes Manolo Tavarez Justo.", + "hgv": "local", + "highway": "tertiary", + "historic": "memorial", + "motor_vehicle:backward:conditional": "destination @ (Mo-Su 06:00-20:00)", + "motor_vehicle:forward": "no", + "motor_vehicle:forward:conditional": "yes @ (20:00-06:00)", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 421838878, + "bounds": { + "minlat": 40.8501764, + "minlon": -73.9360852, + "maxlat": 40.8502949, + "maxlon": -73.9357231 + }, + "nodes": [ + 42429029, + 9550791841, + 4215760966 + ], + "geometry": [ + { "lat": 40.8501764, "lon": -73.9357231 }, + { "lat": 40.8502323, "lon": -73.9358662 }, + { "lat": 40.8502949, "lon": -73.9360852 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 421840992, + "bounds": { + "minlat": 40.8622993, + "minlon": -73.9205169, + "maxlat": 40.8626109, + "maxlon": -73.9202964 + }, + "nodes": [ + 4215780093, + 9561566535, + 42455493 + ], + "geometry": [ + { "lat": 40.8622993, "lon": -73.9205169 }, + { "lat": 40.8625376, "lon": -73.9203483 }, + { "lat": 40.8626109, "lon": -73.9202964 } + ], + "tags": { + "bicycle": "designated", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:forward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421840993, + "bounds": { + "minlat": 40.8561820, + "minlon": -73.9287160, + "maxlat": 40.8564757, + "maxlon": -73.9285047 + }, + "nodes": [ + 4215780092, + 8395209017, + 5403868127, + 5403868131, + 42427769 + ], + "geometry": [ + { "lat": 40.8564757, "lon": -73.9285047 }, + { "lat": 40.8564383, "lon": -73.9285316 }, + { "lat": 40.8563130, "lon": -73.9286218 }, + { "lat": 40.8562410, "lon": -73.9286736 }, + { "lat": 40.8561820, "lon": -73.9287160 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 421840994, + "bounds": { + "minlat": 40.8483116, + "minlon": -73.9322468, + "maxlat": 40.8487040, + "maxlon": -73.9313029 + }, + "nodes": [ + 4207702048, + 11595019810, + 9550791854 + ], + "geometry": [ + { "lat": 40.8483116, "lon": -73.9313029 }, + { "lat": 40.8483627, "lon": -73.9314257 }, + { "lat": 40.8487040, "lon": -73.9322468 } + ], + "tags": { + "alt_name": "Manolo Tavarez Justo Way", + "bus": "yes", + "busway:both": "lane", + "description": "This honorary street name memorializes Manolo Tavarez Justo.", + "hgv": "local", + "highway": "tertiary", + "historic": "memorial", + "motor_vehicle:conditional": "destination @ (Mo-Su 06:00-20:00)", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 421840995, + "bounds": { + "minlat": 40.8487040, + "minlon": -73.9323334, + "maxlat": 40.8487400, + "maxlon": -73.9322468 + }, + "nodes": [ + 9550791854, + 42444060 + ], + "geometry": [ + { "lat": 40.8487040, "lon": -73.9322468 }, + { "lat": 40.8487400, "lon": -73.9323334 } + ], + "tags": { + "alt_name": "Manolo Tavarez Justo Way", + "bus": "yes", + "busway:both": "lane", + "description": "This honorary street name memorializes Manolo Tavarez Justo.", + "hgv": "local", + "highway": "tertiary", + "historic": "memorial", + "motor_vehicle:conditional": "destination @ (Mo-Su 06:00-20:00)", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 421840997, + "bounds": { + "minlat": 40.8487400, + "minlon": -73.9324343, + "maxlat": 40.8487821, + "maxlon": -73.9323334 + }, + "nodes": [ + 42444060, + 9550791857 + ], + "geometry": [ + { "lat": 40.8487400, "lon": -73.9323334 }, + { "lat": 40.8487821, "lon": -73.9324343 } + ], + "tags": { + "bus": "yes", + "busway:both": "lane", + "hgv": "local", + "highway": "tertiary", + "motor_vehicle:conditional": "destination @ (Mo-Su 06:00-20:00)", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033", + "turn:lanes:backward": "|right" + } +}, +{ + "type": "way", + "id": 421842666, + "bounds": { + "minlat": 40.8361348, + "minlon": -73.9223269, + "maxlat": 40.8363108, + "maxlon": -73.9222910 + }, + "nodes": [ + 42736005, + 2912071061 + ], + "geometry": [ + { "lat": 40.8361348, "lon": -73.9223269 }, + { "lat": 40.8363108, "lon": -73.9222910 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 421842669, + "bounds": { + "minlat": 40.8361348, + "minlon": -73.9224099, + "maxlat": 40.8368246, + "maxlon": -73.9223269 + }, + "nodes": [ + 4215795997, + 12163757021, + 8575396949, + 12163757020, + 2912071030, + 12163757019, + 12163757018, + 42736005 + ], + "geometry": [ + { "lat": 40.8368246, "lon": -73.9223829 }, + { "lat": 40.8362876, "lon": -73.9224076 }, + { "lat": 40.8362608, "lon": -73.9224088 }, + { "lat": 40.8362446, "lon": -73.9224099 }, + { "lat": 40.8362411, "lon": -73.9224092 }, + { "lat": 40.8362043, "lon": -73.9223892 }, + { "lat": 40.8361869, "lon": -73.9223760 }, + { "lat": 40.8361348, "lon": -73.9223269 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "turn:lanes": "left;through|right" + } +}, +{ + "type": "way", + "id": 421842670, + "bounds": { + "minlat": 40.8418789, + "minlon": -73.9226695, + "maxlat": 40.8425720, + "maxlon": -73.9223851 + }, + "nodes": [ + 2912071062, + 2912071033, + 2912071032, + 4207902994 + ], + "geometry": [ + { "lat": 40.8418789, "lon": -73.9223851 }, + { "lat": 40.8419693, "lon": -73.9224297 }, + { "lat": 40.8424077, "lon": -73.9226053 }, + { "lat": 40.8425720, "lon": -73.9226695 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 421842671, + "bounds": { + "minlat": 40.8458562, + "minlon": -73.9220327, + "maxlat": 40.8469048, + "maxlon": -73.9206609 + }, + "nodes": [ + 2907939255, + 2907939253, + 4215795999, + 11398821129, + 12046813025, + 12045150823, + 60921028 + ], + "geometry": [ + { "lat": 40.8469048, "lon": -73.9206609 }, + { "lat": 40.8465625, "lon": -73.9211153 }, + { "lat": 40.8463854, "lon": -73.9213541 }, + { "lat": 40.8463386, "lon": -73.9214162 }, + { "lat": 40.8462797, "lon": -73.9214975 }, + { "lat": 40.8461082, "lon": -73.9217346 }, + { "lat": 40.8458562, "lon": -73.9220327 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 421842673, + "bounds": { + "minlat": 40.8460074, + "minlon": -73.9216716, + "maxlat": 40.8461559, + "maxlon": -73.9214852 + }, + "nodes": [ + 60921060, + 2329087597, + 11398821130 + ], + "geometry": [ + { "lat": 40.8460074, "lon": -73.9216716 }, + { "lat": 40.8460800, "lon": -73.9215807 }, + { "lat": 40.8461559, "lon": -73.9214852 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "|||right" + } +}, +{ + "type": "way", + "id": 421843871, + "bounds": { + "minlat": 40.7472830, + "minlon": -73.9418129, + "maxlat": 40.7475022, + "maxlon": -73.9412109 + }, + "nodes": [ + 4215808502, + 9371728444, + 42821393, + 2971841362 + ], + "geometry": [ + { "lat": 40.7472830, "lon": -73.9418129 }, + { "lat": 40.7473891, "lon": -73.9415215 }, + { "lat": 40.7474202, "lon": -73.9414362 }, + { "lat": 40.7475022, "lon": -73.9412109 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 421843872, + "bounds": { + "minlat": 40.7469797, + "minlon": -73.9429442, + "maxlat": 40.7471469, + "maxlon": -73.9425182 + }, + "nodes": [ + 2971841380, + 4228583949, + 4203034931 + ], + "geometry": [ + { "lat": 40.7471469, "lon": -73.9425182 }, + { "lat": 40.7470800, "lon": -73.9426974 }, + { "lat": 40.7469797, "lon": -73.9429442 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 421843873, + "bounds": { + "minlat": 40.7469062, + "minlon": -73.9428154, + "maxlat": 40.7470835, + "maxlon": -73.9423781 + }, + "nodes": [ + 4215808500, + 4228583950, + 2971841379 + ], + "geometry": [ + { "lat": 40.7469062, "lon": -73.9428154 }, + { "lat": 40.7470225, "lon": -73.9425354 }, + { "lat": 40.7470835, "lon": -73.9423781 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 421843875, + "bounds": { + "minlat": 40.7470835, + "minlon": -73.9423781, + "maxlat": 40.7472830, + "maxlon": -73.9418129 + }, + "nodes": [ + 2971841379, + 4228583954, + 4215808502 + ], + "geometry": [ + { "lat": 40.7470835, "lon": -73.9423781 }, + { "lat": 40.7471318, "lon": -73.9422256 }, + { "lat": 40.7472830, "lon": -73.9418129 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 421843876, + "bounds": { + "minlat": 40.7471469, + "minlon": -73.9425182, + "maxlat": 40.7473413, + "maxlon": -73.9419853 + }, + "nodes": [ + 4215808501, + 4228583955, + 2971841380 + ], + "geometry": [ + { "lat": 40.7473413, "lon": -73.9419853 }, + { "lat": 40.7472182, "lon": -73.9423325 }, + { "lat": 40.7471469, "lon": -73.9425182 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 421843878, + "bounds": { + "minlat": 40.7459480, + "minlon": -73.9411800, + "maxlat": 40.7460248, + "maxlon": -73.9408345 + }, + "nodes": [ + 4215808499, + 42800084 + ], + "geometry": [ + { "lat": 40.7460248, "lon": -73.9411800 }, + { "lat": 40.7459480, "lon": -73.9408345 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 421843880, + "bounds": { + "minlat": 40.7454863, + "minlon": -73.9392655, + "maxlat": 40.7456005, + "maxlon": -73.9387572 + }, + "nodes": [ + 42802543, + 4215808497 + ], + "geometry": [ + { "lat": 40.7456005, "lon": -73.9392655 }, + { "lat": 40.7454863, "lon": -73.9387572 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "lanes:backward": "3", + "lanes:forward": "3", + "layer": "1", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "concrete", + "turn:lanes:backward": "through|through;right|right" + } +}, +{ + "type": "way", + "id": 421843881, + "bounds": { + "minlat": 40.7453533, + "minlon": -73.9387572, + "maxlat": 40.7454863, + "maxlon": -73.9381777 + }, + "nodes": [ + 4215808497, + 9987580022 + ], + "geometry": [ + { "lat": 40.7454863, "lon": -73.9387572 }, + { "lat": 40.7453533, "lon": -73.9381777 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "lanes:backward": "3", + "lanes:forward": "3", + "layer": "1", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 421843882, + "bounds": { + "minlat": 40.8098208, + "minlon": -74.0010407, + "maxlat": 40.8099298, + "maxlon": -74.0009675 + }, + "nodes": [ + 4215808380, + 5342516917, + 5481884735, + 4215808381 + ], + "geometry": [ + { "lat": 40.8098208, "lon": -74.0010407 }, + { "lat": 40.8098541, "lon": -74.0010184 }, + { "lat": 40.8098961, "lon": -74.0009902 }, + { "lat": 40.8099298, "lon": -74.0009675 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000063", + "highway": "secondary", + "name": "Bergenline Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline", + "tiger:name_base_1": "County Road 721", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:forward": "left||right", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 421843883, + "bounds": { + "minlat": 40.8099298, + "minlon": -74.0009675, + "maxlat": 40.8100539, + "maxlon": -74.0008886 + }, + "nodes": [ + 4215808381, + 5481884724, + 4727867801, + 440208138 + ], + "geometry": [ + { "lat": 40.8099298, "lon": -74.0009675 }, + { "lat": 40.8099620, "lon": -74.0009470 }, + { "lat": 40.8100393, "lon": -74.0008980 }, + { "lat": 40.8100539, "lon": -74.0008886 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000063", + "highway": "secondary", + "name": "Bergenline Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline", + "tiger:name_base_1": "County Road 721", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:forward": "left|", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 421843884, + "bounds": { + "minlat": 40.8066000, + "minlon": -73.9918453, + "maxlat": 40.8067224, + "maxlon": -73.9913801 + }, + "nodes": [ + 103207089, + 4215808364, + 752618767, + 7672269012, + 4215808362 + ], + "geometry": [ + { "lat": 40.8067224, "lon": -73.9918453 }, + { "lat": 40.8066721, "lon": -73.9917281 }, + { "lat": 40.8066000, "lon": -73.9915173 }, + { "lat": 40.8066008, "lon": -73.9915005 }, + { "lat": 40.8066068, "lon": -73.9913801 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "2", + "name": "Gorge Road", + "oneway": "yes", + "ref": "CR S-25", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 421843885, + "bounds": { + "minlat": 40.7997900, + "minlon": -73.9968430, + "maxlat": 40.8000560, + "maxlon": -73.9968400 + }, + "nodes": [ + 4215808346, + 11250613223, + 103858840 + ], + "geometry": [ + { "lat": 40.7997900, "lon": -73.9968400 }, + { "lat": 40.7999181, "lon": -73.9968414 }, + { "lat": 40.8000560, "lon": -73.9968430 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 421843886, + "bounds": { + "minlat": 40.7993780, + "minlon": -73.9968385, + "maxlat": 40.7996787, + "maxlon": -73.9968330 + }, + "nodes": [ + 103864243, + 103870475, + 6894972441 + ], + "geometry": [ + { "lat": 40.7993780, "lon": -73.9968360 }, + { "lat": 40.7995200, "lon": -73.9968330 }, + { "lat": 40.7996787, "lon": -73.9968385 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "turn:lanes:backward": "left|", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 421843887, + "bounds": { + "minlat": 40.8125253, + "minlon": -73.9867723, + "maxlat": 40.8125997, + "maxlon": -73.9866979 + }, + "nodes": [ + 4205758297, + 103137057 + ], + "geometry": [ + { "lat": 40.8125253, "lon": -73.9867723 }, + { "lat": 40.8125997, "lon": -73.9866979 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 421843888, + "bounds": { + "minlat": 40.8125997, + "minlon": -73.9866979, + "maxlat": 40.8127581, + "maxlon": -73.9865057 + }, + "nodes": [ + 103137057, + 103137059 + ], + "geometry": [ + { "lat": 40.8125997, "lon": -73.9866979 }, + { "lat": 40.8127581, "lon": -73.9865057 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "||right" + } +}, +{ + "type": "way", + "id": 421843889, + "bounds": { + "minlat": 40.8044725, + "minlon": -73.9930491, + "maxlat": 40.8053887, + "maxlon": -73.9923819 + }, + "nodes": [ + 4215808349, + 5481963168, + 4215808348, + 8260679166, + 3575303898 + ], + "geometry": [ + { "lat": 40.8053887, "lon": -73.9923819 }, + { "lat": 40.8049486, "lon": -73.9927475 }, + { "lat": 40.8046720, "lon": -73.9929773 }, + { "lat": 40.8046417, "lon": -73.9929882 }, + { "lat": 40.8044725, "lon": -73.9930491 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 421843891, + "bounds": { + "minlat": 40.8083198, + "minlon": -73.9899759, + "maxlat": 40.8094749, + "maxlon": -73.9894234 + }, + "nodes": [ + 103137037, + 7672269051, + 4215808379, + 4215808376, + 4215808375 + ], + "geometry": [ + { "lat": 40.8094749, "lon": -73.9894234 }, + { "lat": 40.8094141, "lon": -73.9894954 }, + { "lat": 40.8094069, "lon": -73.9895039 }, + { "lat": 40.8085522, "lon": -73.9898432 }, + { "lat": 40.8083198, "lon": -73.9899759 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 421843893, + "bounds": { + "minlat": 40.8061745, + "minlon": -73.9917421, + "maxlat": 40.8066068, + "maxlon": -73.9913801 + }, + "nodes": [ + 4215808362, + 4215808360, + 5482328533 + ], + "geometry": [ + { "lat": 40.8066068, "lon": -73.9913801 }, + { "lat": 40.8065125, "lon": -73.9914556 }, + { "lat": 40.8061745, "lon": -73.9917421 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 421843894, + "bounds": { + "minlat": 40.8055217, + "minlon": -73.9920345, + "maxlat": 40.8062870, + "maxlon": -73.9913707 + }, + "nodes": [ + 4205751596, + 5482410809, + 4215808353, + 8836062328 + ], + "geometry": [ + { "lat": 40.8055217, "lon": -73.9920345 }, + { "lat": 40.8056804, "lon": -73.9918560 }, + { "lat": 40.8060749, "lon": -73.9915350 }, + { "lat": 40.8062870, "lon": -73.9913707 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 421844225, + "bounds": { + "minlat": 40.8037065, + "minlon": -73.9362991, + "maxlat": 40.8039049, + "maxlon": -73.9358291 + }, + "nodes": [ + 42444458, + 4980798212, + 4215812465 + ], + "geometry": [ + { "lat": 40.8037065, "lon": -73.9358291 }, + { "lat": 40.8037611, "lon": -73.9359584 }, + { "lat": 40.8039049, "lon": -73.9362991 } + ], + "tags": { + "alt": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lit": "yes", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "sidewalk:both": "separate", + "turn:lanes:backward": "left|", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421844226, + "bounds": { + "minlat": 40.8039049, + "minlon": -73.9367288, + "maxlat": 40.8040862, + "maxlon": -73.9362991 + }, + "nodes": [ + 4215812465, + 11255243804, + 4215812466 + ], + "geometry": [ + { "lat": 40.8039049, "lon": -73.9362991 }, + { "lat": 40.8039995, "lon": -73.9365233 }, + { "lat": 40.8040862, "lon": -73.9367288 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lit": "yes", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421844229, + "bounds": { + "minlat": 40.8050861, + "minlon": -73.9342141, + "maxlat": 40.8055718, + "maxlon": -73.9330483 + }, + "nodes": [ + 3702296508, + 5482291276, + 4215812467 + ], + "geometry": [ + { "lat": 40.8055718, "lon": -73.9342141 }, + { "lat": 40.8051587, "lon": -73.9332200 }, + { "lat": 40.8050861, "lon": -73.9330483 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 128th Street", + "oneway": "yes", + "proposed:cycleway:left": "track", + "proposed:cycleway:left:oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 421844230, + "bounds": { + "minlat": 40.8135876, + "minlon": -73.9349950, + "maxlat": 40.8138841, + "maxlon": -73.9347739 + }, + "nodes": [ + 4215812470, + 373850911 + ], + "geometry": [ + { "lat": 40.8138841, "lon": -73.9347739 }, + { "lat": 40.8135876, "lon": -73.9349950 } + ], + "tags": { + "bridge": "yes", + "highway": "secondary", + "lanes": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "turn:lanes": "merge_to_right|", + "wikidata": "Q3751430", + "wikipedia": "en:Madison Avenue Bridge" + } +}, +{ + "type": "way", + "id": 421844231, + "bounds": { + "minlat": 40.8133978, + "minlon": -73.9351378, + "maxlat": 40.8135876, + "maxlon": -73.9349950 + }, + "nodes": [ + 373850911, + 4215812469 + ], + "geometry": [ + { "lat": 40.8135876, "lon": -73.9349950 }, + { "lat": 40.8133978, "lon": -73.9351378 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "turn:lanes": "merge_to_right|", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 421844232, + "bounds": { + "minlat": 40.8066930, + "minlon": -73.9245664, + "maxlat": 40.8069757, + "maxlon": -73.9243563 + }, + "nodes": [ + 4215812468, + 7369741432 + ], + "geometry": [ + { "lat": 40.8066930, "lon": -73.9245664 }, + { "lat": 40.8069757, "lon": -73.9243563 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "30 mph", + "name": "Willis Avenue Bridge", + "oneway": "yes", + "sidewalk": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 421844265, + "bounds": { + "minlat": 40.7922072, + "minlon": -74.0011216, + "maxlat": 40.7924074, + "maxlon": -74.0009914 + }, + "nodes": [ + 752619534, + 7468539746, + 752619860, + 752619861 + ], + "geometry": [ + { "lat": 40.7922072, "lon": -74.0009914 }, + { "lat": 40.7922963, "lon": -74.0010336 }, + { "lat": 40.7923344, "lon": -74.0010612 }, + { "lat": 40.7924074, "lon": -74.0011216 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "turn:lanes:backward": "left|", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 421845655, + "bounds": { + "minlat": 40.7705376, + "minlon": -73.9172400, + "maxlat": 40.7708318, + "maxlon": -73.9167553 + }, + "nodes": [ + 276209330, + 9179198067, + 9179198060, + 276209329, + 13399317582, + 42849703 + ], + "geometry": [ + { "lat": 40.7705376, "lon": -73.9167553 }, + { "lat": 40.7705943, "lon": -73.9168538 }, + { "lat": 40.7706509, "lon": -73.9169510 }, + { "lat": 40.7707120, "lon": -73.9170464 }, + { "lat": 40.7707422, "lon": -73.9170952 }, + { "lat": 40.7708318, "lon": -73.9172400 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "Astoria Boulevard North", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 421845656, + "bounds": { + "minlat": 40.7713145, + "minlon": -73.9182483, + "maxlat": 40.7714694, + "maxlon": -73.9180103 + }, + "nodes": [ + 4215833540, + 42833276 + ], + "geometry": [ + { "lat": 40.7713145, "lon": -73.9180103 }, + { "lat": 40.7714694, "lon": -73.9182483 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "name_1": "Hoyt Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "slight_left|slight_left|through|through|through" + } +}, +{ + "type": "way", + "id": 421845992, + "bounds": { + "minlat": 40.7441445, + "minlon": -73.9336647, + "maxlat": 40.7447251, + "maxlon": -73.9335542 + }, + "nodes": [ + 42866365, + 10743722739, + 4215833978 + ], + "geometry": [ + { "lat": 40.7447251, "lon": -73.9335542 }, + { "lat": 40.7446321, "lon": -73.9335719 }, + { "lat": 40.7441445, "lon": -73.9336647 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Van Dam Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 421845993, + "bounds": { + "minlat": 40.7372257, + "minlon": -73.9352998, + "maxlat": 40.7374945, + "maxlon": -73.9350527 + }, + "nodes": [ + 277385050, + 9982697937, + 9179114942, + 9179114936, + 4215833977 + ], + "geometry": [ + { "lat": 40.7374945, "lon": -73.9350527 }, + { "lat": 40.7374693, "lon": -73.9350666 }, + { "lat": 40.7374444, "lon": -73.9350820 }, + { "lat": 40.7374315, "lon": -73.9350953 }, + { "lat": 40.7372257, "lon": -73.9352998 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Van Dam Street", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes:backward": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 421845996, + "bounds": { + "minlat": 40.7357486, + "minlon": -73.9367642, + "maxlat": 40.7372257, + "maxlon": -73.9352998 + }, + "nodes": [ + 4215833977, + 9982697933, + 42866377, + 9982697932, + 9179114938, + 9982697929, + 42866381 + ], + "geometry": [ + { "lat": 40.7372257, "lon": -73.9352998 }, + { "lat": 40.7369628, "lon": -73.9355854 }, + { "lat": 40.7368893, "lon": -73.9356502 }, + { "lat": 40.7368248, "lon": -73.9357139 }, + { "lat": 40.7366879, "lon": -73.9358500 }, + { "lat": 40.7358138, "lon": -73.9367000 }, + { "lat": 40.7357486, "lon": -73.9367642 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Van Dam Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 421850511, + "bounds": { + "minlat": 40.7368368, + "minlon": -73.9315914, + "maxlat": 40.7368727, + "maxlon": -73.9315091 + }, + "nodes": [ + 42801787, + 597294552 + ], + "geometry": [ + { "lat": 40.7368368, "lon": -73.9315914 }, + { "lat": 40.7368727, "lon": -73.9315091 } + ], + "tags": { + "cycleway": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "3", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "turn:lanes:backward": "left|left|through", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 421850829, + "bounds": { + "minlat": 40.7616156, + "minlon": -73.9728581, + "maxlat": 40.7622945, + "maxlon": -73.9723653 + }, + "nodes": [ + 42443612, + 11294629838, + 10173152537, + 42432825 + ], + "geometry": [ + { "lat": 40.7616156, "lon": -73.9728581 }, + { "lat": 40.7616776, "lon": -73.9728131 }, + { "lat": 40.7622046, "lon": -73.9724306 }, + { "lat": 40.7622945, "lon": -73.9723653 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "yes", + "sidewalk:right:surface": "concrete", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 421850830, + "bounds": { + "minlat": 40.7615131, + "minlon": -73.9729336, + "maxlat": 40.7616156, + "maxlon": -73.9728581 + }, + "nodes": [ + 4960527241, + 11294629839, + 42443612 + ], + "geometry": [ + { "lat": 40.7615131, "lon": -73.9729336 }, + { "lat": 40.7615585, "lon": -73.9729002 }, + { "lat": 40.7616156, "lon": -73.9728581 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "||through||", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 421851200, + "bounds": { + "minlat": 40.7583127, + "minlon": -73.9645095, + "maxlat": 40.7589831, + "maxlon": -73.9629223 + }, + "nodes": [ + 42423564, + 10121802235, + 10170862025, + 2711029280 + ], + "geometry": [ + { "lat": 40.7589831, "lon": -73.9645095 }, + { "lat": 40.7589403, "lon": -73.9644084 }, + { "lat": 40.7583688, "lon": -73.9630553 }, + { "lat": 40.7583127, "lon": -73.9629223 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421851201, + "bounds": { + "minlat": 40.7589831, + "minlon": -73.9648774, + "maxlat": 40.7591380, + "maxlon": -73.9645095 + }, + "nodes": [ + 4215909068, + 10836437297, + 10170751095, + 42423564 + ], + "geometry": [ + { "lat": 40.7591380, "lon": -73.9648774 }, + { "lat": 40.7590531, "lon": -73.9646776 }, + { "lat": 40.7590056, "lon": -73.9645660 }, + { "lat": 40.7589831, "lon": -73.9645095 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:backward": "3", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|left|through", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421852029, + "bounds": { + "minlat": 40.7655784, + "minlon": -73.9978029, + "maxlat": 40.7657731, + "maxlon": -73.9976603 + }, + "nodes": [ + 12413782997, + 12154598280 + ], + "geometry": [ + { "lat": 40.7657731, "lon": -73.9976603 }, + { "lat": 40.7655784, "lon": -73.9978029 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lane_markings": "yes", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 421852030, + "bounds": { + "minlat": 40.7643299, + "minlon": -73.9987098, + "maxlat": 40.7650658, + "maxlon": -73.9981795 + }, + "nodes": [ + 4215913808, + 12154598284, + 42453555 + ], + "geometry": [ + { "lat": 40.7650658, "lon": -73.9981795 }, + { "lat": 40.7644069, "lon": -73.9986525 }, + { "lat": 40.7643299, "lon": -73.9987098 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left|through|through|through|through" + } +}, +{ + "type": "way", + "id": 421852031, + "bounds": { + "minlat": 40.7659623, + "minlon": -73.9975214, + "maxlat": 40.7662059, + "maxlon": -73.9973446 + }, + "nodes": [ + 11017187935, + 4215913810 + ], + "geometry": [ + { "lat": 40.7662059, "lon": -73.9973446 }, + { "lat": 40.7659623, "lon": -73.9975214 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lane_markings": "yes", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 421852033, + "bounds": { + "minlat": 40.7669960, + "minlon": -73.9967689, + "maxlat": 40.7672140, + "maxlon": -73.9966101 + }, + "nodes": [ + 4215913811, + 11017186438 + ], + "geometry": [ + { "lat": 40.7672140, "lon": -73.9966101 }, + { "lat": 40.7669960, "lon": -73.9967689 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "no|not_left|yes|yes|yes", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 421852034, + "bounds": { + "minlat": 40.7692588, + "minlon": -73.9948504, + "maxlat": 40.7694919, + "maxlon": -73.9947132 + }, + "nodes": [ + 9140954071, + 247120300, + 4215913813 + ], + "geometry": [ + { "lat": 40.7692588, "lon": -73.9948504 }, + { "lat": 40.7693898, "lon": -73.9947670 }, + { "lat": 40.7694919, "lon": -73.9947132 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "destination": "Ship Terminal;Henry Hudson Parkway;Bronx", + "destination:lanes": "Ship Terminal|Henry Hudson Parkway|Henry Hudson Parkway|Henry Hudson Parkway;West 56th Street;West 57th Street", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "note": "this is supposed to be a local truck route but signs say no trucks", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "slight_left|slight_left|slight_left|slight_left;slight_right" + } +}, +{ + "type": "way", + "id": 421852035, + "bounds": { + "minlat": 40.7686356, + "minlon": -73.9955749, + "maxlat": 40.7690831, + "maxlon": -73.9952614 + }, + "nodes": [ + 12413770652, + 4215913812 + ], + "geometry": [ + { "lat": 40.7690831, "lon": -73.9952614 }, + { "lat": 40.7686356, "lon": -73.9955749 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 421852037, + "bounds": { + "minlat": 40.7682628, + "minlon": -73.9958486, + "maxlat": 40.7686356, + "maxlon": -73.9955749 + }, + "nodes": [ + 4215913812, + 11017186434 + ], + "geometry": [ + { "lat": 40.7686356, "lon": -73.9955749 }, + { "lat": 40.7682628, "lon": -73.9958486 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "no|not_left|yes|yes|yes", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 421852039, + "bounds": { + "minlat": 40.7662059, + "minlon": -73.9973446, + "maxlat": 40.7668330, + "maxlon": -73.9968877 + }, + "nodes": [ + 12153915859, + 247122968, + 42432605, + 11017187935 + ], + "geometry": [ + { "lat": 40.7668330, "lon": -73.9968877 }, + { "lat": 40.7667562, "lon": -73.9969437 }, + { "lat": 40.7662908, "lon": -73.9972828 }, + { "lat": 40.7662059, "lon": -73.9973446 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 421852040, + "bounds": { + "minlat": 40.7654276, + "minlon": -73.9979118, + "maxlat": 40.7655784, + "maxlon": -73.9978029 + }, + "nodes": [ + 12154598280, + 247120149, + 593854257 + ], + "geometry": [ + { "lat": 40.7655784, "lon": -73.9978029 }, + { "lat": 40.7654954, "lon": -73.9978620 }, + { "lat": 40.7654276, "lon": -73.9979118 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 421852041, + "bounds": { + "minlat": 40.7654973, + "minlon": -73.9975936, + "maxlat": 40.7661220, + "maxlon": -73.9971388 + }, + "nodes": [ + 11017187936, + 4782404432, + 62915536 + ], + "geometry": [ + { "lat": 40.7654973, "lon": -73.9975936 }, + { "lat": 40.7656717, "lon": -73.9974664 }, + { "lat": 40.7661220, "lon": -73.9971388 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 421852042, + "bounds": { + "minlat": 40.7700557, + "minlon": -73.9913932, + "maxlat": 40.7703169, + "maxlon": -73.9907805 + }, + "nodes": [ + 4215913814, + 7595763591, + 42430745 + ], + "geometry": [ + { "lat": 40.7700557, "lon": -73.9907805 }, + { "lat": 40.7702607, "lon": -73.9912635 }, + { "lat": 40.7703169, "lon": -73.9913932 } + ], + "tags": { + "addr:city": "New York", + "addr:state": "NY", + "addr:street": "West 57th Street", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "name_1": "West 57 Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421852618, + "bounds": { + "minlat": 40.7458075, + "minlon": -73.9751397, + "maxlat": 40.7460796, + "maxlon": -73.9749393 + }, + "nodes": [ + 42423020, + 4259278553, + 9415339771 + ], + "geometry": [ + { "lat": 40.7460796, "lon": -73.9749393 }, + { "lat": 40.7460070, "lon": -73.9749927 }, + { "lat": 40.7458075, "lon": -73.9751397 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421852619, + "bounds": { + "minlat": 40.7460796, + "minlon": -73.9757655, + "maxlat": 40.7464170, + "maxlon": -73.9749393 + }, + "nodes": [ + 4215926836, + 5721677302, + 12187390428, + 4259278554, + 42423020 + ], + "geometry": [ + { "lat": 40.7464170, "lon": -73.9757655 }, + { "lat": 40.7463114, "lon": -73.9755165 }, + { "lat": 40.7461563, "lon": -73.9751506 }, + { "lat": 40.7461268, "lon": -73.9750812 }, + { "lat": 40.7460796, "lon": -73.9749393 } + ], + "tags": { + "destination:lanes": "Tunnel|||", + "hgv:lanes": "no|no|", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 36th Street", + "name:ru": "Восточная 36-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left|||" + } +}, +{ + "type": "way", + "id": 421853581, + "bounds": { + "minlat": 40.7809988, + "minlon": -73.9715943, + "maxlat": 40.7817352, + "maxlon": -73.9713926 + }, + "nodes": [ + 1946814074, + 6946139600, + 1989096609, + 6946139594, + 6946139609, + 9906879211, + 9906879212, + 9906879213, + 9906879214, + 248709622 + ], + "geometry": [ + { "lat": 40.7809988, "lon": -73.9715943 }, + { "lat": 40.7814036, "lon": -73.9714362 }, + { "lat": 40.7814437, "lon": -73.9714218 }, + { "lat": 40.7814837, "lon": -73.9714110 }, + { "lat": 40.7815226, "lon": -73.9714025 }, + { "lat": 40.7815659, "lon": -73.9713949 }, + { "lat": 40.7816048, "lon": -73.9713926 }, + { "lat": 40.7816563, "lon": -73.9713938 }, + { "lat": 40.7816931, "lon": -73.9713995 }, + { "lat": 40.7817352, "lon": -73.9714120 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "lit": "yes", + "maxheight": "10'2\"", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "maxspeed:advisory:backward": "20 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853599, + "bounds": { + "minlat": 40.7936803, + "minlon": -73.9726493, + "maxlat": 40.7940312, + "maxlon": -73.9723990 + }, + "nodes": [ + 42428711, + 8687882725, + 4215936667 + ], + "geometry": [ + { "lat": 40.7940312, "lon": -73.9723990 }, + { "lat": 40.7939775, "lon": -73.9724360 }, + { "lat": 40.7936803, "lon": -73.9726493 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853609, + "bounds": { + "minlat": 40.7927728, + "minlon": -73.9733006, + "maxlat": 40.7930115, + "maxlon": -73.9731283 + }, + "nodes": [ + 4215936666, + 10061553270, + 42428705 + ], + "geometry": [ + { "lat": 40.7930115, "lon": -73.9731283 }, + { "lat": 40.7928264, "lon": -73.9732627 }, + { "lat": 40.7927728, "lon": -73.9733006 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853618, + "bounds": { + "minlat": 40.7930115, + "minlon": -73.9731283, + "maxlat": 40.7933995, + "maxlon": -73.9728390 + }, + "nodes": [ + 42428709, + 10061699583, + 4215936666 + ], + "geometry": [ + { "lat": 40.7933995, "lon": -73.9728390 }, + { "lat": 40.7933423, "lon": -73.9728795 }, + { "lat": 40.7930115, "lon": -73.9731283 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853621, + "bounds": { + "minlat": 40.7933995, + "minlon": -73.9728390, + "maxlat": 40.7936803, + "maxlon": -73.9726493 + }, + "nodes": [ + 4215936667, + 1989076880, + 10061800636, + 42428709 + ], + "geometry": [ + { "lat": 40.7936803, "lon": -73.9726493 }, + { "lat": 40.7935938, "lon": -73.9727056 }, + { "lat": 40.7934574, "lon": -73.9727993 }, + { "lat": 40.7933995, "lon": -73.9728390 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853622, + "bounds": { + "minlat": 40.7877988, + "minlon": -73.9712361, + "maxlat": 40.7879568, + "maxlon": -73.9711238 + }, + "nodes": [ + 4215936662, + 3875114032, + 42438043 + ], + "geometry": [ + { "lat": 40.7879568, "lon": -73.9711238 }, + { "lat": 40.7878588, "lon": -73.9711941 }, + { "lat": 40.7877988, "lon": -73.9712361 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853623, + "bounds": { + "minlat": 40.7890588, + "minlon": -73.9703363, + "maxlat": 40.7892194, + "maxlon": -73.9702217 + }, + "nodes": [ + 4215936663, + 3875114030, + 42437050 + ], + "geometry": [ + { "lat": 40.7892194, "lon": -73.9702217 }, + { "lat": 40.7891238, "lon": -73.9702899 }, + { "lat": 40.7890588, "lon": -73.9703363 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853624, + "bounds": { + "minlat": 40.7915736, + "minlon": -73.9684954, + "maxlat": 40.7917243, + "maxlon": -73.9683836 + }, + "nodes": [ + 4215936665, + 3875114026, + 42436985 + ], + "geometry": [ + { "lat": 40.7917243, "lon": -73.9683836 }, + { "lat": 40.7916211, "lon": -73.9684593 }, + { "lat": 40.7915736, "lon": -73.9684954 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853625, + "bounds": { + "minlat": 40.7839166, + "minlon": -73.9740729, + "maxlat": 40.7840694, + "maxlon": -73.9739570 + }, + "nodes": [ + 4215936658, + 3875114038, + 42433565 + ], + "geometry": [ + { "lat": 40.7840694, "lon": -73.9739570 }, + { "lat": 40.7839712, "lon": -73.9740327 }, + { "lat": 40.7839166, "lon": -73.9740729 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853626, + "bounds": { + "minlat": 40.7954860, + "minlon": -73.9656255, + "maxlat": 40.7956510, + "maxlon": -73.9655023 + }, + "nodes": [ + 9675339212, + 11296201250, + 42443403 + ], + "geometry": [ + { "lat": 40.7956510, "lon": -73.9655023 }, + { "lat": 40.7955392, "lon": -73.9655852 }, + { "lat": 40.7954860, "lon": -73.9656255 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853627, + "bounds": { + "minlat": 40.7851818, + "minlon": -73.9731496, + "maxlat": 40.7853440, + "maxlon": -73.9730286 + }, + "nodes": [ + 4215936659, + 3875114036, + 42421803 + ], + "geometry": [ + { "lat": 40.7853440, "lon": -73.9730286 }, + { "lat": 40.7852422, "lon": -73.9731047 }, + { "lat": 40.7851818, "lon": -73.9731496 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853628, + "bounds": { + "minlat": 40.7832589, + "minlon": -73.9745499, + "maxlat": 40.7836462, + "maxlon": -73.9742691 + }, + "nodes": [ + 4215936657, + 4689234440, + 42443280 + ], + "geometry": [ + { "lat": 40.7836462, "lon": -73.9742691 }, + { "lat": 40.7833386, "lon": -73.9744924 }, + { "lat": 40.7832589, "lon": -73.9745499 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853630, + "bounds": { + "minlat": 40.7836462, + "minlon": -73.9742691, + "maxlat": 40.7839166, + "maxlon": -73.9740729 + }, + "nodes": [ + 42433565, + 10039972338, + 4215936657 + ], + "geometry": [ + { "lat": 40.7839166, "lon": -73.9740729 }, + { "lat": 40.7838570, "lon": -73.9741162 }, + { "lat": 40.7836462, "lon": -73.9742691 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853632, + "bounds": { + "minlat": 40.7903176, + "minlon": -73.9694076, + "maxlat": 40.7904714, + "maxlon": -73.9692971 + }, + "nodes": [ + 4215936664, + 3875114028, + 42443363 + ], + "geometry": [ + { "lat": 40.7904714, "lon": -73.9692971 }, + { "lat": 40.7903732, "lon": -73.9693665 }, + { "lat": 40.7903176, "lon": -73.9694076 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853633, + "bounds": { + "minlat": 40.7806719, + "minlon": -73.9764438, + "maxlat": 40.7810636, + "maxlon": -73.9761556 + }, + "nodes": [ + 9675339211, + 11609159428, + 42438859 + ], + "geometry": [ + { "lat": 40.7810636, "lon": -73.9761556 }, + { "lat": 40.7807311, "lon": -73.9764003 }, + { "lat": 40.7806719, "lon": -73.9764438 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853634, + "bounds": { + "minlat": 40.7864968, + "minlon": -73.9721811, + "maxlat": 40.7868277, + "maxlon": -73.9719492 + }, + "nodes": [ + 4215936661, + 3875114034, + 42443353 + ], + "geometry": [ + { "lat": 40.7868277, "lon": -73.9719492 }, + { "lat": 40.7865986, "lon": -73.9721065 }, + { "lat": 40.7864968, "lon": -73.9721811 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853635, + "bounds": { + "minlat": 40.7892194, + "minlon": -73.9702217, + "maxlat": 40.7903176, + "maxlon": -73.9694076 + }, + "nodes": [ + 42443363, + 7801775754, + 3875114029, + 4016646206, + 10060864079, + 4215936663 + ], + "geometry": [ + { "lat": 40.7903176, "lon": -73.9694076 }, + { "lat": 40.7902549, "lon": -73.9694538 }, + { "lat": 40.7897459, "lon": -73.9698296 }, + { "lat": 40.7896980, "lon": -73.9698629 }, + { "lat": 40.7896233, "lon": -73.9699200 }, + { "lat": 40.7892194, "lon": -73.9702217 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853636, + "bounds": { + "minlat": 40.7871744, + "minlon": -73.9716995, + "maxlat": 40.7877988, + "maxlon": -73.9712361 + }, + "nodes": [ + 42438043, + 10058512388, + 3875114033, + 42434158 + ], + "geometry": [ + { "lat": 40.7877988, "lon": -73.9712361 }, + { "lat": 40.7877476, "lon": -73.9712741 }, + { "lat": 40.7872366, "lon": -73.9716534 }, + { "lat": 40.7871744, "lon": -73.9716995 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853637, + "bounds": { + "minlat": 40.7956510, + "minlon": -73.9655023, + "maxlat": 40.7979207, + "maxlon": -73.9638432 + }, + "nodes": [ + 42443406, + 10166004095, + 7571274546, + 11741902119, + 4420411217, + 7571274550, + 7571274578, + 4578008683, + 7571410113, + 9675339213, + 9675339212 + ], + "geometry": [ + { "lat": 40.7979207, "lon": -73.9638432 }, + { "lat": 40.7978373, "lon": -73.9639045 }, + { "lat": 40.7972294, "lon": -73.9643510 }, + { "lat": 40.7967928, "lon": -73.9646676 }, + { "lat": 40.7967148, "lon": -73.9647223 }, + { "lat": 40.7965871, "lon": -73.9648182 }, + { "lat": 40.7961203, "lon": -73.9651589 }, + { "lat": 40.7960686, "lon": -73.9651974 }, + { "lat": 40.7957780, "lon": -73.9654076 }, + { "lat": 40.7956922, "lon": -73.9654716 }, + { "lat": 40.7956510, "lon": -73.9655023 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853638, + "bounds": { + "minlat": 40.7917243, + "minlon": -73.9683836, + "maxlat": 40.7928760, + "maxlon": -73.9675451 + }, + "nodes": [ + 42443381, + 8687882784, + 3875114025, + 42443373, + 7792793731, + 4215936665 + ], + "geometry": [ + { "lat": 40.7928760, "lon": -73.9675451 }, + { "lat": 40.7927797, "lon": -73.9676156 }, + { "lat": 40.7922574, "lon": -73.9679962 }, + { "lat": 40.7921969, "lon": -73.9680402 }, + { "lat": 40.7921407, "lon": -73.9680812 }, + { "lat": 40.7917243, "lon": -73.9683836 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853639, + "bounds": { + "minlat": 40.7840694, + "minlon": -73.9739570, + "maxlat": 40.7851818, + "maxlon": -73.9731496 + }, + "nodes": [ + 42421803, + 10042554910, + 3875114037, + 42437300, + 10039972347, + 4215936658 + ], + "geometry": [ + { "lat": 40.7851818, "lon": -73.9731496 }, + { "lat": 40.7851208, "lon": -73.9731940 }, + { "lat": 40.7846096, "lon": -73.9735658 }, + { "lat": 40.7845451, "lon": -73.9736127 }, + { "lat": 40.7844878, "lon": -73.9736541 }, + { "lat": 40.7840694, "lon": -73.9739570 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853640, + "bounds": { + "minlat": 40.7879568, + "minlon": -73.9711238, + "maxlat": 40.7890588, + "maxlon": -73.9703363 + }, + "nodes": [ + 42437050, + 10060572009, + 3875114031, + 42421996, + 9576549164, + 4215936662 + ], + "geometry": [ + { "lat": 40.7890588, "lon": -73.9703363 }, + { "lat": 40.7890051, "lon": -73.9703749 }, + { "lat": 40.7884955, "lon": -73.9707411 }, + { "lat": 40.7884325, "lon": -73.9707862 }, + { "lat": 40.7883747, "lon": -73.9708277 }, + { "lat": 40.7879568, "lon": -73.9711238 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853641, + "bounds": { + "minlat": 40.7853440, + "minlon": -73.9730286, + "maxlat": 40.7864968, + "maxlon": -73.9721811 + }, + "nodes": [ + 42443353, + 10042613692, + 11657455864, + 42443349, + 11657455863, + 4215936659 + ], + "geometry": [ + { "lat": 40.7864968, "lon": -73.9721811 }, + { "lat": 40.7864034, "lon": -73.9722521 }, + { "lat": 40.7858736, "lon": -73.9726417 }, + { "lat": 40.7858123, "lon": -73.9726868 }, + { "lat": 40.7857597, "lon": -73.9727252 }, + { "lat": 40.7853440, "lon": -73.9730286 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853642, + "bounds": { + "minlat": 40.7857827, + "minlon": -73.9714151, + "maxlat": 40.7861726, + "maxlon": -73.9704795 + }, + "nodes": [ + 9906904528, + 4215936660 + ], + "geometry": [ + { "lat": 40.7857827, "lon": -73.9704795 }, + { "lat": 40.7861726, "lon": -73.9714151 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 86th Street", + "name:ru": "Западная 86-я стрит", + "name_1": "West 86 Street", + "sidewalk:both": "separate", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853643, + "bounds": { + "minlat": 40.7864968, + "minlon": -73.9750103, + "maxlat": 40.7876861, + "maxlon": -73.9721811 + }, + "nodes": [ + 42443353, + 9906904530, + 9547662378, + 42442480 + ], + "geometry": [ + { "lat": 40.7864968, "lon": -73.9721811 }, + { "lat": 40.7865479, "lon": -73.9723031 }, + { "lat": 40.7876371, "lon": -73.9748909 }, + { "lat": 40.7876861, "lon": -73.9750103 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 86th Street", + "name:ru": "Западная 86-я стрит", + "name_1": "West 86 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 421853646, + "bounds": { + "minlat": 40.7613078, + "minlon": -74.0019520, + "maxlat": 40.7614566, + "maxlon": -74.0018370 + }, + "nodes": [ + 247080924, + 247085867 + ], + "geometry": [ + { "lat": 40.7614566, "lon": -74.0018370 }, + { "lat": 40.7613078, "lon": -74.0019520 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "yes", + "sidewalk:right": "no", + "surface": "concrete", + "turn:lanes": "|||right" + } +}, +{ + "type": "way", + "id": 421853647, + "bounds": { + "minlat": 40.7601045, + "minlon": -74.0025334, + "maxlat": 40.7604432, + "maxlon": -74.0022903 + }, + "nodes": [ + 42453541, + 12154605932 + ], + "geometry": [ + { "lat": 40.7601045, "lon": -74.0025334 }, + { "lat": 40.7604432, "lon": -74.0022903 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|through|through|through|through;right" + } +}, +{ + "type": "way", + "id": 421853648, + "bounds": { + "minlat": 40.7606551, + "minlon": -74.0024285, + "maxlat": 40.7611120, + "maxlon": -74.0020955 + }, + "nodes": [ + 4215936934, + 8666573689, + 4870298759, + 247084442 + ], + "geometry": [ + { "lat": 40.7611120, "lon": -74.0020955 }, + { "lat": 40.7608259, "lon": -74.0023081 }, + { "lat": 40.7607780, "lon": -74.0023402 }, + { "lat": 40.7606551, "lon": -74.0024285 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "yes", + "sidewalk:right": "no", + "surface": "concrete", + "turn:lanes": "through|through|through|right" + } +}, +{ + "type": "way", + "id": 421853810, + "bounds": { + "minlat": 40.7569758, + "minlon": -74.0048129, + "maxlat": 40.7571381, + "maxlon": -74.0046930 + }, + "nodes": [ + 42437678, + 593840108 + ], + "geometry": [ + { "lat": 40.7569758, "lon": -74.0048129 }, + { "lat": 40.7571381, "lon": -74.0046930 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 421853949, + "bounds": { + "minlat": 40.7684851, + "minlon": -73.9555018, + "maxlat": 40.7689433, + "maxlon": -73.9551673 + }, + "nodes": [ + 42438805, + 7136790827, + 4215940678 + ], + "geometry": [ + { "lat": 40.7684851, "lon": -73.9555018 }, + { "lat": 40.7685484, "lon": -73.9554556 }, + { "lat": 40.7689433, "lon": -73.9551673 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853952, + "bounds": { + "minlat": 40.7697673, + "minlon": -73.9545657, + "maxlat": 40.7701493, + "maxlon": -73.9542869 + }, + "nodes": [ + 42430075, + 6689909675, + 4215940680 + ], + "geometry": [ + { "lat": 40.7697673, "lon": -73.9545657 }, + { "lat": 40.7698184, "lon": -73.9545285 }, + { "lat": 40.7701493, "lon": -73.9542869 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853953, + "bounds": { + "minlat": 40.7761941, + "minlon": -73.9498734, + "maxlat": 40.7764305, + "maxlon": -73.9497018 + }, + "nodes": [ + 42456066, + 7834030830, + 8838184086 + ], + "geometry": [ + { "lat": 40.7761941, "lon": -73.9498734 }, + { "lat": 40.7762548, "lon": -73.9498293 }, + { "lat": 40.7764305, "lon": -73.9497018 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853954, + "bounds": { + "minlat": 40.7689433, + "minlon": -73.9551673, + "maxlat": 40.7691198, + "maxlon": -73.9550385 + }, + "nodes": [ + 4215940678, + 6689909680, + 42439567 + ], + "geometry": [ + { "lat": 40.7689433, "lon": -73.9551673 }, + { "lat": 40.7690639, "lon": -73.9550793 }, + { "lat": 40.7691198, "lon": -73.9550385 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|through;right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853956, + "bounds": { + "minlat": 40.7695971, + "minlon": -73.9546900, + "maxlat": 40.7697673, + "maxlon": -73.9545657 + }, + "nodes": [ + 4215940679, + 6689909673, + 42430075 + ], + "geometry": [ + { "lat": 40.7695971, "lon": -73.9546900 }, + { "lat": 40.7697016, "lon": -73.9546137 }, + { "lat": 40.7697673, "lon": -73.9545657 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853959, + "bounds": { + "minlat": 40.7701493, + "minlon": -73.9542869, + "maxlat": 40.7703906, + "maxlon": -73.9541098 + }, + "nodes": [ + 4215940680, + 6689909672, + 42454701 + ], + "geometry": [ + { "lat": 40.7701493, "lon": -73.9542869 }, + { "lat": 40.7703379, "lon": -73.9541493 }, + { "lat": 40.7703906, "lon": -73.9541098 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853960, + "bounds": { + "minlat": 40.7708738, + "minlon": -73.9537498, + "maxlat": 40.7710306, + "maxlon": -73.9536338 + }, + "nodes": [ + 4215940681, + 11206693781, + 42446478 + ], + "geometry": [ + { "lat": 40.7708738, "lon": -73.9537498 }, + { "lat": 40.7709687, "lon": -73.9536796 }, + { "lat": 40.7710306, "lon": -73.9536338 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through|through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853961, + "bounds": { + "minlat": 40.7703906, + "minlon": -73.9541098, + "maxlat": 40.7708738, + "maxlon": -73.9537498 + }, + "nodes": [ + 42454701, + 6689909670, + 4215940681 + ], + "geometry": [ + { "lat": 40.7703906, "lon": -73.9541098 }, + { "lat": 40.7704468, "lon": -73.9540701 }, + { "lat": 40.7708738, "lon": -73.9537498 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853963, + "bounds": { + "minlat": 40.7735035, + "minlon": -73.9518338, + "maxlat": 40.7736593, + "maxlon": -73.9517225 + }, + "nodes": [ + 4215940685, + 6691104512, + 42452956 + ], + "geometry": [ + { "lat": 40.7735035, "lon": -73.9518338 }, + { "lat": 40.7736092, "lon": -73.9517583 }, + { "lat": 40.7736593, "lon": -73.9517225 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853964, + "bounds": { + "minlat": 40.7716529, + "minlon": -73.9531803, + "maxlat": 40.7718882, + "maxlon": -73.9530102 + }, + "nodes": [ + 42436922, + 6689909663, + 4215940683 + ], + "geometry": [ + { "lat": 40.7716529, "lon": -73.9531803 }, + { "lat": 40.7717165, "lon": -73.9531328 }, + { "lat": 40.7718882, "lon": -73.9530102 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853965, + "bounds": { + "minlat": 40.7669703, + "minlon": -73.9565979, + "maxlat": 40.7671313, + "maxlon": -73.9564821 + }, + "nodes": [ + 4215940675, + 9030210817, + 42445247 + ], + "geometry": [ + { "lat": 40.7669703, "lon": -73.9565979 }, + { "lat": 40.7670679, "lon": -73.9565275 }, + { "lat": 40.7671313, "lon": -73.9564821 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853968, + "bounds": { + "minlat": 40.7671313, + "minlon": -73.9564821, + "maxlat": 40.7674122, + "maxlon": -73.9562854 + }, + "nodes": [ + 42445247, + 9030177781, + 8767790754 + ], + "geometry": [ + { "lat": 40.7671313, "lon": -73.9564821 }, + { "lat": 40.7671810, "lon": -73.9564458 }, + { "lat": 40.7674122, "lon": -73.9562854 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853969, + "bounds": { + "minlat": 40.7714793, + "minlon": -73.9533097, + "maxlat": 40.7716529, + "maxlon": -73.9531803 + }, + "nodes": [ + 4215940682, + 6689909661, + 42436922 + ], + "geometry": [ + { "lat": 40.7714793, "lon": -73.9533097 }, + { "lat": 40.7716023, "lon": -73.9532195 }, + { "lat": 40.7716529, "lon": -73.9531803 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853972, + "bounds": { + "minlat": 40.7710306, + "minlon": -73.9536338, + "maxlat": 40.7714793, + "maxlon": -73.9533097 + }, + "nodes": [ + 42446478, + 6689909665, + 4215940682 + ], + "geometry": [ + { "lat": 40.7710306, "lon": -73.9536338 }, + { "lat": 40.7710837, "lon": -73.9535948 }, + { "lat": 40.7714793, "lon": -73.9533097 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853975, + "bounds": { + "minlat": 40.7749252, + "minlon": -73.9507993, + "maxlat": 40.7760359, + "maxlon": -73.9499861 + }, + "nodes": [ + 42448254, + 6691104506, + 7834025547, + 42435518, + 7834025571, + 4215941089 + ], + "geometry": [ + { "lat": 40.7749252, "lon": -73.9507993 }, + { "lat": 40.7749859, "lon": -73.9507546 }, + { "lat": 40.7755084, "lon": -73.9503697 }, + { "lat": 40.7755591, "lon": -73.9503323 }, + { "lat": 40.7756278, "lon": -73.9502825 }, + { "lat": 40.7760359, "lon": -73.9499861 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421853993, + "bounds": { + "minlat": 40.7683261, + "minlon": -73.9556179, + "maxlat": 40.7684851, + "maxlon": -73.9555018 + }, + "nodes": [ + 4215940677, + 7136790818, + 42438805 + ], + "geometry": [ + { "lat": 40.7683261, "lon": -73.9556179 }, + { "lat": 40.7684308, "lon": -73.9555414 }, + { "lat": 40.7684851, "lon": -73.9555018 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through|through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421854000, + "bounds": { + "minlat": 40.7736593, + "minlon": -73.9517225, + "maxlat": 40.7747826, + "maxlon": -73.9509024 + }, + "nodes": [ + 42452956, + 6691104514, + 6691104509, + 42439409, + 6691104510, + 4215940687 + ], + "geometry": [ + { "lat": 40.7736593, "lon": -73.9517225 }, + { "lat": 40.7737152, "lon": -73.9516809 }, + { "lat": 40.7742407, "lon": -73.9512983 }, + { "lat": 40.7742922, "lon": -73.9512608 }, + { "lat": 40.7743522, "lon": -73.9512169 }, + { "lat": 40.7747826, "lon": -73.9509024 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421854001, + "bounds": { + "minlat": 40.7723435, + "minlon": -73.9526796, + "maxlat": 40.7735035, + "maxlon": -73.9518338 + }, + "nodes": [ + 42456060, + 6691104525, + 6133388351, + 6691104518, + 42438509, + 6691104516, + 4215940685 + ], + "geometry": [ + { "lat": 40.7723435, "lon": -73.9526796 }, + { "lat": 40.7724319, "lon": -73.9526153 }, + { "lat": 40.7728875, "lon": -73.9522824 }, + { "lat": 40.7729668, "lon": -73.9522247 }, + { "lat": 40.7730268, "lon": -73.9521805 }, + { "lat": 40.7730831, "lon": -73.9521402 }, + { "lat": 40.7735035, "lon": -73.9518338 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421854002, + "bounds": { + "minlat": 40.7691198, + "minlon": -73.9550385, + "maxlat": 40.7695971, + "maxlon": -73.9546900 + }, + "nodes": [ + 42439567, + 6689909678, + 4215940679 + ], + "geometry": [ + { "lat": 40.7691198, "lon": -73.9550385 }, + { "lat": 40.7691866, "lon": -73.9549897 }, + { "lat": 40.7695971, "lon": -73.9546900 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421854004, + "bounds": { + "minlat": 40.7718882, + "minlon": -73.9530102, + "maxlat": 40.7723435, + "maxlon": -73.9526796 + }, + "nodes": [ + 4215940683, + 6691104527, + 42456060 + ], + "geometry": [ + { "lat": 40.7718882, "lon": -73.9530102 }, + { "lat": 40.7722494, "lon": -73.9527492 }, + { "lat": 40.7723435, "lon": -73.9526796 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through||", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421854005, + "bounds": { + "minlat": 40.7747826, + "minlon": -73.9509024, + "maxlat": 40.7749252, + "maxlon": -73.9507993 + }, + "nodes": [ + 4215940687, + 6691104504, + 42448254 + ], + "geometry": [ + { "lat": 40.7747826, "lon": -73.9509024 }, + { "lat": 40.7748709, "lon": -73.9508387 }, + { "lat": 40.7749252, "lon": -73.9507993 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 421854006, + "bounds": { + "minlat": 40.7678043, + "minlon": -73.9559988, + "maxlat": 40.7683261, + "maxlon": -73.9556179 + }, + "nodes": [ + 42436492, + 3562587908, + 9712628468, + 10991141055, + 4215940677 + ], + "geometry": [ + { "lat": 40.7678043, "lon": -73.9559988 }, + { "lat": 40.7679045, "lon": -73.9559256 }, + { "lat": 40.7681455, "lon": -73.9557497 }, + { "lat": 40.7681544, "lon": -73.9557432 }, + { "lat": 40.7683261, "lon": -73.9556179 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 422069852, + "bounds": { + "minlat": 40.8513140, + "minlon": -73.9172750, + "maxlat": 40.8519111, + "maxlon": -73.9164575 + }, + "nodes": [ + 42731822, + 13036604039, + 9918264478, + 9918264479, + 42731827 + ], + "geometry": [ + { "lat": 40.8513140, "lon": -73.9172750 }, + { "lat": 40.8513386, "lon": -73.9172410 }, + { "lat": 40.8518350, "lon": -73.9165582 }, + { "lat": 40.8518702, "lon": -73.9165009 }, + { "lat": 40.8519111, "lon": -73.9164575 } + ], + "tags": { + "highway": "residential", + "name": "Montgomery Avenue", + "name:etymology:wikidata": "Q444947", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Montgomery", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 422249519, + "bounds": { + "minlat": 40.7228548, + "minlon": -73.9391490, + "maxlat": 40.7230861, + "maxlon": -73.9390337 + }, + "nodes": [ + 42490479, + 9929558946, + 42476545 + ], + "geometry": [ + { "lat": 40.7228548, "lon": -73.9390337 }, + { "lat": 40.7230074, "lon": -73.9391064 }, + { "lat": 40.7230861, "lon": -73.9391490 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "name": "Morgan Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 422249520, + "bounds": { + "minlat": 40.7237771, + "minlon": -73.9376210, + "maxlat": 40.7242061, + "maxlon": -73.9375167 + }, + "nodes": [ + 42464200, + 42473313 + ], + "geometry": [ + { "lat": 40.7242061, "lon": -73.9376210 }, + { "lat": 40.7237771, "lon": -73.9375167 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Vandervoort Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 422298615, + "bounds": { + "minlat": 40.7629723, + "minlon": -73.9739744, + "maxlat": 40.7636536, + "maxlon": -73.9734832 + }, + "nodes": [ + 42427762, + 3976008171, + 10709945197, + 9971383725, + 42432818 + ], + "geometry": [ + { "lat": 40.7636536, "lon": -73.9734832 }, + { "lat": 40.7635879, "lon": -73.9735309 }, + { "lat": 40.7635302, "lon": -73.9735724 }, + { "lat": 40.7630768, "lon": -73.9738985 }, + { "lat": 40.7629723, "lon": -73.9739744 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through|through;right", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 423680529, + "bounds": { + "minlat": 40.7414884, + "minlon": -73.9218924, + "maxlat": 40.7433325, + "maxlon": -73.9215157 + }, + "nodes": [ + 42860617, + 10081025523, + 10774439503, + 10774439502, + 10774439495, + 10774439500, + 10774439471, + 10774439485, + 5370619776, + 2844853154 + ], + "geometry": [ + { "lat": 40.7414884, "lon": -73.9218924 }, + { "lat": 40.7415731, "lon": -73.9218757 }, + { "lat": 40.7418502, "lon": -73.9218203 }, + { "lat": 40.7420728, "lon": -73.9217758 }, + { "lat": 40.7423385, "lon": -73.9217226 }, + { "lat": 40.7424073, "lon": -73.9217089 }, + { "lat": 40.7429656, "lon": -73.9215972 }, + { "lat": 40.7430992, "lon": -73.9215705 }, + { "lat": 40.7432378, "lon": -73.9215428 }, + { "lat": 40.7433325, "lon": -73.9215157 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 423680530, + "bounds": { + "minlat": 40.7377956, + "minlon": -73.9226223, + "maxlat": 40.7408895, + "maxlon": -73.9220036 + }, + "nodes": [ + 42900636, + 10083107672, + 6878961960, + 8316237204, + 10083107670, + 42880327, + 10083107669, + 8316786999, + 10743722472, + 42896831 + ], + "geometry": [ + { "lat": 40.7377956, "lon": -73.9226223 }, + { "lat": 40.7378692, "lon": -73.9226076 }, + { "lat": 40.7384449, "lon": -73.9224924 }, + { "lat": 40.7387922, "lon": -73.9224228 }, + { "lat": 40.7395615, "lon": -73.9222689 }, + { "lat": 40.7396422, "lon": -73.9222527 }, + { "lat": 40.7397192, "lon": -73.9222373 }, + { "lat": 40.7402404, "lon": -73.9221330 }, + { "lat": 40.7408102, "lon": -73.9220190 }, + { "lat": 40.7408895, "lon": -73.9220036 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 423680531, + "bounds": { + "minlat": 40.7433325, + "minlon": -73.9224454, + "maxlat": 40.7434403, + "maxlon": -73.9215157 + }, + "nodes": [ + 2844853155, + 10743722038, + 5482367284, + 5482367281, + 5370619772, + 2844853154 + ], + "geometry": [ + { "lat": 40.7434403, "lon": -73.9224454 }, + { "lat": 40.7434292, "lon": -73.9223634 }, + { "lat": 40.7434158, "lon": -73.9222464 }, + { "lat": 40.7433852, "lon": -73.9219790 }, + { "lat": 40.7433450, "lon": -73.9216258 }, + { "lat": 40.7433325, "lon": -73.9215157 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 423680532, + "bounds": { + "minlat": 40.7429064, + "minlon": -73.9215157, + "maxlat": 40.7433325, + "maxlon": -73.9177903 + }, + "nodes": [ + 2844853154, + 5370619786, + 5482367279, + 10743722595, + 2844853152, + 10743722593, + 10927727726, + 4404640086, + 4404640081, + 10743722599, + 42885757, + 10743722601, + 10743714064, + 2844853151, + 10743714063, + 10927727724, + 10743722572, + 2844853150 + ], + "geometry": [ + { "lat": 40.7433325, "lon": -73.9215157 }, + { "lat": 40.7433193, "lon": -73.9214008 }, + { "lat": 40.7432886, "lon": -73.9211462 }, + { "lat": 40.7432340, "lon": -73.9206716 }, + { "lat": 40.7432240, "lon": -73.9205850 }, + { "lat": 40.7432152, "lon": -73.9205076 }, + { "lat": 40.7431817, "lon": -73.9202111 }, + { "lat": 40.7431594, "lon": -73.9200144 }, + { "lat": 40.7431531, "lon": -73.9199606 }, + { "lat": 40.7431275, "lon": -73.9197372 }, + { "lat": 40.7431175, "lon": -73.9196503 }, + { "lat": 40.7431093, "lon": -73.9195791 }, + { "lat": 40.7430193, "lon": -73.9187999 }, + { "lat": 40.7430112, "lon": -73.9187293 }, + { "lat": 40.7430035, "lon": -73.9186601 }, + { "lat": 40.7429639, "lon": -73.9183053 }, + { "lat": 40.7429156, "lon": -73.9178724 }, + { "lat": 40.7429064, "lon": -73.9177903 } + ], + "tags": { + "bus": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "Queens Boulevard", + "oneway": "yes", + "public_transport": "stop_position", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 424094336, + "bounds": { + "minlat": 40.7298259, + "minlon": -73.9886967, + "maxlat": 40.7299406, + "maxlon": -73.9886035 + }, + "nodes": [ + 4235734223, + 4235734224, + 4235734225 + ], + "geometry": [ + { "lat": 40.7298259, "lon": -73.9886967 }, + { "lat": 40.7298654, "lon": -73.9886645 }, + { "lat": 40.7299406, "lon": -73.9886035 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Stuyvesant Street", + "oneway": "yes", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "17'8\"" + } +}, +{ + "type": "way", + "id": 424137951, + "bounds": { + "minlat": 40.7292208, + "minlon": -73.9913712, + "maxlat": 40.7294182, + "maxlon": -73.9909672 + }, + "nodes": [ + 42434194, + 5784518541, + 4236128018 + ], + "geometry": [ + { "lat": 40.7292208, "lon": -73.9909672 }, + { "lat": 40.7292518, "lon": -73.9910278 }, + { "lat": 40.7294182, "lon": -73.9913712 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 425335557, + "bounds": { + "minlat": 40.7688965, + "minlon": -73.9822001, + "maxlat": 40.7689504, + "maxlon": -73.9819959 + }, + "nodes": [ + 1061531429, + 9170766765, + 9170766764, + 42428570 + ], + "geometry": [ + { "lat": 40.7688965, "lon": -73.9819959 }, + { "lat": 40.7689084, "lon": -73.9820607 }, + { "lat": 40.7689279, "lon": -73.9821337 }, + { "lat": 40.7689504, "lon": -73.9822001 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "name": "West 60th Street", + "name:ru": "Западная 60-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 425335581, + "bounds": { + "minlat": 40.7737905, + "minlon": -73.9668197, + "maxlat": 40.7742378, + "maxlon": -73.9663924 + }, + "nodes": [ + 4246710791, + 4246678987, + 4246601676, + 4246678751, + 4246601485, + 4246657047, + 4246605263, + 4246605264, + 4246601677, + 4246601678, + 4246601679, + 4246601960, + 4246678752, + 4246708811, + 4246678988, + 4246601961, + 4246703619, + 4246606264, + 4246708812, + 4246708813, + 4246601486, + 4246602168, + 4246708814, + 4246657466, + 4246708815, + 4246708816, + 4246606265, + 4246710792, + 4246657230, + 4246606266, + 4246710290, + 4246710291, + 4246602169, + 4246601962, + 2827406338, + 2827406341, + 4246601963, + 4246601964, + 4246708817, + 4246601965, + 4246601966, + 4246601967, + 4246711389, + 4246657231, + 4246702236, + 4246710292, + 4246710793, + 4246710293, + 4246711390, + 4246601680, + 4246601681, + 4246606267, + 4246708818, + 4246710294, + 4246602170, + 4246605265, + 4246602171, + 4246602172, + 4246708819, + 4246703620, + 4246710794, + 4246601682, + 4246601968, + 4246708820, + 4246657467, + 2827406332, + 4246711391, + 4246601969, + 4246602173, + 4246710795, + 4246710796, + 4246657232, + 4246708821, + 4246601970, + 4246605266, + 4246710797, + 4246678944, + 4246711392, + 4246708822, + 4246710295, + 4246602174, + 4246605267, + 4246657447, + 4246657468, + 4246601971, + 4246657469, + 4246606268, + 4246678753, + 4246710791 + ], + "geometry": [ + { "lat": 40.7739693, "lon": -73.9667441 }, + { "lat": 40.7739855, "lon": -73.9667348 }, + { "lat": 40.7739970, "lon": -73.9667282 }, + { "lat": 40.7740121, "lon": -73.9667194 }, + { "lat": 40.7740283, "lon": -73.9667096 }, + { "lat": 40.7740431, "lon": -73.9667003 }, + { "lat": 40.7740524, "lon": -73.9666929 }, + { "lat": 40.7740698, "lon": -73.9666784 }, + { "lat": 40.7740868, "lon": -73.9666635 }, + { "lat": 40.7741055, "lon": -73.9666462 }, + { "lat": 40.7741242, "lon": -73.9666290 }, + { "lat": 40.7741430, "lon": -73.9666117 }, + { "lat": 40.7741624, "lon": -73.9665942 }, + { "lat": 40.7741818, "lon": -73.9665766 }, + { "lat": 40.7741939, "lon": -73.9665652 }, + { "lat": 40.7742060, "lon": -73.9665538 }, + { "lat": 40.7742219, "lon": -73.9665399 }, + { "lat": 40.7742378, "lon": -73.9665259 }, + { "lat": 40.7742253, "lon": -73.9665039 }, + { "lat": 40.7742129, "lon": -73.9664819 }, + { "lat": 40.7742005, "lon": -73.9664599 }, + { "lat": 40.7741881, "lon": -73.9664379 }, + { "lat": 40.7741678, "lon": -73.9664530 }, + { "lat": 40.7741476, "lon": -73.9664680 }, + { "lat": 40.7741274, "lon": -73.9664830 }, + { "lat": 40.7741141, "lon": -73.9664593 }, + { "lat": 40.7741008, "lon": -73.9664356 }, + { "lat": 40.7740878, "lon": -73.9664140 }, + { "lat": 40.7740748, "lon": -73.9663924 }, + { "lat": 40.7740618, "lon": -73.9664025 }, + { "lat": 40.7740488, "lon": -73.9664125 }, + { "lat": 40.7740277, "lon": -73.9664278 }, + { "lat": 40.7740066, "lon": -73.9664431 }, + { "lat": 40.7740126, "lon": -73.9664575 }, + { "lat": 40.7740077, "lon": -73.9664682 }, + { "lat": 40.7740593, "lon": -73.9664315 }, + { "lat": 40.7740783, "lon": -73.9664575 }, + { "lat": 40.7740881, "lon": -73.9664821 }, + { "lat": 40.7740980, "lon": -73.9664856 }, + { "lat": 40.7741082, "lon": -73.9664981 }, + { "lat": 40.7741121, "lon": -73.9665120 }, + { "lat": 40.7741105, "lon": -73.9665244 }, + { "lat": 40.7741012, "lon": -73.9665275 }, + { "lat": 40.7740915, "lon": -73.9665174 }, + { "lat": 40.7740768, "lon": -73.9665275 }, + { "lat": 40.7740621, "lon": -73.9665377 }, + { "lat": 40.7740584, "lon": -73.9665527 }, + { "lat": 40.7740504, "lon": -73.9665708 }, + { "lat": 40.7740335, "lon": -73.9665865 }, + { "lat": 40.7740211, "lon": -73.9665890 }, + { "lat": 40.7740137, "lon": -73.9665798 }, + { "lat": 40.7739963, "lon": -73.9665924 }, + { "lat": 40.7739788, "lon": -73.9666050 }, + { "lat": 40.7739852, "lon": -73.9666206 }, + { "lat": 40.7739714, "lon": -73.9666302 }, + { "lat": 40.7739576, "lon": -73.9666398 }, + { "lat": 40.7739618, "lon": -73.9666506 }, + { "lat": 40.7739648, "lon": -73.9666614 }, + { "lat": 40.7739633, "lon": -73.9666707 }, + { "lat": 40.7739560, "lon": -73.9666817 }, + { "lat": 40.7739433, "lon": -73.9666840 }, + { "lat": 40.7739287, "lon": -73.9666700 }, + { "lat": 40.7739063, "lon": -73.9666864 }, + { "lat": 40.7738901, "lon": -73.9666855 }, + { "lat": 40.7738807, "lon": -73.9666630 }, + { "lat": 40.7738842, "lon": -73.9666514 }, + { "lat": 40.7738621, "lon": -73.9665975 }, + { "lat": 40.7738493, "lon": -73.9666066 }, + { "lat": 40.7738593, "lon": -73.9666387 }, + { "lat": 40.7738364, "lon": -73.9666547 }, + { "lat": 40.7738135, "lon": -73.9666708 }, + { "lat": 40.7737905, "lon": -73.9666869 }, + { "lat": 40.7737995, "lon": -73.9667152 }, + { "lat": 40.7738084, "lon": -73.9667434 }, + { "lat": 40.7738157, "lon": -73.9667663 }, + { "lat": 40.7738231, "lon": -73.9667892 }, + { "lat": 40.7738262, "lon": -73.9668055 }, + { "lat": 40.7738304, "lon": -73.9668197 }, + { "lat": 40.7738412, "lon": -73.9668143 }, + { "lat": 40.7738517, "lon": -73.9668090 }, + { "lat": 40.7738622, "lon": -73.9668037 }, + { "lat": 40.7738728, "lon": -73.9667985 }, + { "lat": 40.7738818, "lon": -73.9667933 }, + { "lat": 40.7738945, "lon": -73.9667859 }, + { "lat": 40.7739081, "lon": -73.9667781 }, + { "lat": 40.7739221, "lon": -73.9667703 }, + { "lat": 40.7739361, "lon": -73.9667625 }, + { "lat": 40.7739492, "lon": -73.9667553 }, + { "lat": 40.7739693, "lon": -73.9667441 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Kerb's Boathouse Terrace", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 425619488, + "bounds": { + "minlat": 40.7513069, + "minlon": -73.9679588, + "maxlat": 40.7519194, + "maxlon": -73.9673480 + }, + "nodes": [ + 42434092, + 5115428164, + 10606540038, + 5115428160, + 11000990915, + 10606540039, + 4249006827, + 10998208760, + 4249006825, + 4249006833, + 4249006828, + 10998208759, + 4012935769 + ], + "geometry": [ + { "lat": 40.7513685, "lon": -73.9679588 }, + { "lat": 40.7513187, "lon": -73.9678481 }, + { "lat": 40.7513087, "lon": -73.9678076 }, + { "lat": 40.7513069, "lon": -73.9677759 }, + { "lat": 40.7513122, "lon": -73.9677500 }, + { "lat": 40.7513266, "lon": -73.9677198 }, + { "lat": 40.7513445, "lon": -73.9676982 }, + { "lat": 40.7515742, "lon": -73.9675274 }, + { "lat": 40.7516121, "lon": -73.9675007 }, + { "lat": 40.7517786, "lon": -73.9673876 }, + { "lat": 40.7518298, "lon": -73.9673633 }, + { "lat": 40.7518715, "lon": -73.9673539 }, + { "lat": 40.7519194, "lon": -73.9673480 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "parking:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 426140801, + "bounds": { + "minlat": 40.7776221, + "minlon": -73.9675304, + "maxlat": 40.7779091, + "maxlon": -73.9672281 + }, + "nodes": [ + 4254493651, + 4254510104, + 4254510105, + 4254510791, + 4254510106, + 4254509511, + 4254509407, + 4254502085 + ], + "geometry": [ + { "lat": 40.7778504, "lon": -73.9672281 }, + { "lat": 40.7778901, "lon": -73.9672915 }, + { "lat": 40.7779091, "lon": -73.9673760 }, + { "lat": 40.7778936, "lon": -73.9674363 }, + { "lat": 40.7778438, "lon": -73.9674725 }, + { "lat": 40.7777838, "lon": -73.9674842 }, + { "lat": 40.7776467, "lon": -73.9675286 }, + { "lat": 40.7776221, "lon": -73.9675304 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 426140811, + "bounds": { + "minlat": 40.7778199, + "minlon": -73.9672281, + "maxlat": 40.7778682, + "maxlon": -73.9666780 + }, + "nodes": [ + 4254502087, + 4331388781, + 4254509411, + 4254509412, + 4254509413, + 4254504677, + 4254508537, + 4254509414, + 4254498517, + 4254503858, + 4254493651 + ], + "geometry": [ + { "lat": 40.7778199, "lon": -73.9666780 }, + { "lat": 40.7778432, "lon": -73.9667530 }, + { "lat": 40.7778550, "lon": -73.9668009 }, + { "lat": 40.7778666, "lon": -73.9668516 }, + { "lat": 40.7778682, "lon": -73.9668911 }, + { "lat": 40.7778585, "lon": -73.9669533 }, + { "lat": 40.7778430, "lon": -73.9670060 }, + { "lat": 40.7778290, "lon": -73.9670663 }, + { "lat": 40.7778264, "lon": -73.9671190 }, + { "lat": 40.7778410, "lon": -73.9671941 }, + { "lat": 40.7778504, "lon": -73.9672281 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 426140950, + "bounds": { + "minlat": 40.7774801, + "minlon": -73.9675367, + "maxlat": 40.7776221, + "maxlon": -73.9673687 + }, + "nodes": [ + 4254502085, + 4254508857, + 4254512900, + 4254503885, + 4254512901, + 4254502020 + ], + "geometry": [ + { "lat": 40.7776221, "lon": -73.9675304 }, + { "lat": 40.7775605, "lon": -73.9675367 }, + { "lat": 40.7775330, "lon": -73.9675260 }, + { "lat": 40.7775115, "lon": -73.9675027 }, + { "lat": 40.7774994, "lon": -73.9674698 }, + { "lat": 40.7774801, "lon": -73.9673687 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 426140951, + "bounds": { + "minlat": 40.7773558, + "minlon": -73.9673687, + "maxlat": 40.7774801, + "maxlon": -73.9668927 + }, + "nodes": [ + 4254502020, + 4254508858, + 4254512902, + 4254503886, + 4254510131, + 4254509535, + 4331388748, + 4254508563 + ], + "geometry": [ + { "lat": 40.7774801, "lon": -73.9673687 }, + { "lat": 40.7774616, "lon": -73.9672727 }, + { "lat": 40.7774409, "lon": -73.9671851 }, + { "lat": 40.7774228, "lon": -73.9671319 }, + { "lat": 40.7773891, "lon": -73.9670648 }, + { "lat": 40.7773663, "lon": -73.9670242 }, + { "lat": 40.7773625, "lon": -73.9669639 }, + { "lat": 40.7773558, "lon": -73.9668927 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 426140961, + "bounds": { + "minlat": 40.7755788, + "minlon": -73.9684207, + "maxlat": 40.7757759, + "maxlon": -73.9675899 + }, + "nodes": [ + 4254513925, + 4254509464, + 4254509958, + 4254513242, + 4254513926, + 4254510833, + 4254509559, + 4254493572, + 4254513927, + 4254509959, + 4254509960, + 4254513162, + 4254514106, + 4254515200, + 4254514107, + 4254515495, + 4254513163, + 4254513243, + 4254512934, + 4254515497, + 4254514505, + 4254513925 + ], + "geometry": [ + { "lat": 40.7757334, "lon": -73.9676209 }, + { "lat": 40.7757554, "lon": -73.9677508 }, + { "lat": 40.7757703, "lon": -73.9678808 }, + { "lat": 40.7757759, "lon": -73.9680484 }, + { "lat": 40.7757706, "lon": -73.9681974 }, + { "lat": 40.7757569, "lon": -73.9683322 }, + { "lat": 40.7757370, "lon": -73.9684014 }, + { "lat": 40.7757144, "lon": -73.9684156 }, + { "lat": 40.7756906, "lon": -73.9684190 }, + { "lat": 40.7756644, "lon": -73.9684207 }, + { "lat": 40.7756346, "lon": -73.9684131 }, + { "lat": 40.7756071, "lon": -73.9683946 }, + { "lat": 40.7755855, "lon": -73.9683634 }, + { "lat": 40.7755792, "lon": -73.9682992 }, + { "lat": 40.7755788, "lon": -73.9682067 }, + { "lat": 40.7755816, "lon": -73.9680453 }, + { "lat": 40.7755867, "lon": -73.9678556 }, + { "lat": 40.7755884, "lon": -73.9677083 }, + { "lat": 40.7756060, "lon": -73.9676423 }, + { "lat": 40.7756487, "lon": -73.9675981 }, + { "lat": 40.7756951, "lon": -73.9675899 }, + { "lat": 40.7757334, "lon": -73.9676209 } + ], + "tags": { + "highway": "service", + "lit": "no", + "motor_vehicle": "private", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 426140962, + "bounds": { + "minlat": 40.7753471, + "minlon": -73.9677083, + "maxlat": 40.7755884, + "maxlon": -73.9675684 + }, + "nodes": [ + 4254509560, + 3391966123, + 9178914808, + 9178914809, + 4254509561, + 9178914810, + 4254513243 + ], + "geometry": [ + { "lat": 40.7753471, "lon": -73.9675684 }, + { "lat": 40.7754011, "lon": -73.9675887 }, + { "lat": 40.7754752, "lon": -73.9676205 }, + { "lat": 40.7755100, "lon": -73.9676352 }, + { "lat": 40.7755372, "lon": -73.9676523 }, + { "lat": 40.7755586, "lon": -73.9676719 }, + { "lat": 40.7755884, "lon": -73.9677083 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "private" + } +}, +{ + "type": "way", + "id": 426140963, + "bounds": { + "minlat": 40.7756951, + "minlon": -73.9675899, + "maxlat": 40.7758053, + "maxlon": -73.9672534 + }, + "nodes": [ + 4254514505, + 4254515201, + 4254510835, + 4254510836, + 4331388778, + 4254514506 + ], + "geometry": [ + { "lat": 40.7756951, "lon": -73.9675899 }, + { "lat": 40.7757472, "lon": -73.9675205 }, + { "lat": 40.7757778, "lon": -73.9674466 }, + { "lat": 40.7757907, "lon": -73.9673932 }, + { "lat": 40.7758028, "lon": -73.9673263 }, + { "lat": 40.7758053, "lon": -73.9672534 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "private" + } +}, +{ + "type": "way", + "id": 426502656, + "bounds": { + "minlat": 40.7733709, + "minlon": -73.9754343, + "maxlat": 40.7735273, + "maxlon": -73.9751595 + }, + "nodes": [ + 4257949329, + 4257949328, + 4257949324, + 4257949319, + 4257949317, + 4257949316, + 4257949318, + 4257949326, + 4257949336, + 4257949349, + 4257949354, + 4257949360, + 4257949329 + ], + "geometry": [ + { "lat": 40.7733886, "lon": -73.9754343 }, + { "lat": 40.7733831, "lon": -73.9754295 }, + { "lat": 40.7733762, "lon": -73.9754219 }, + { "lat": 40.7733727, "lon": -73.9754118 }, + { "lat": 40.7733709, "lon": -73.9754033 }, + { "lat": 40.7733709, "lon": -73.9753916 }, + { "lat": 40.7733715, "lon": -73.9753800 }, + { "lat": 40.7733774, "lon": -73.9753629 }, + { "lat": 40.7733968, "lon": -73.9753187 }, + { "lat": 40.7734585, "lon": -73.9751921 }, + { "lat": 40.7734774, "lon": -73.9751595 }, + { "lat": 40.7735273, "lon": -73.9752069 }, + { "lat": 40.7733886, "lon": -73.9754343 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 426502658, + "bounds": { + "minlat": 40.7736774, + "minlon": -73.9713204, + "maxlat": 40.7738950, + "maxlon": -73.9707603 + }, + "nodes": [ + 4257949437, + 4257949430, + 4257949419, + 4257949414, + 4257949383, + 4257949374, + 4257949388, + 4257949405, + 4257949409, + 4257949416, + 4257949411, + 4257949413, + 2425178167, + 2425178168, + 2425178195, + 4257949428, + 4257949429, + 4257949431, + 4257949434, + 4257949437 + ], + "geometry": [ + { "lat": 40.7738808, "lon": -73.9712872 }, + { "lat": 40.7738394, "lon": -73.9713034 }, + { "lat": 40.7737957, "lon": -73.9713204 }, + { "lat": 40.7737813, "lon": -73.9712558 }, + { "lat": 40.7736909, "lon": -73.9708513 }, + { "lat": 40.7736774, "lon": -73.9707909 }, + { "lat": 40.7737157, "lon": -73.9707760 }, + { "lat": 40.7737559, "lon": -73.9707603 }, + { "lat": 40.7737703, "lon": -73.9708249 }, + { "lat": 40.7737837, "lon": -73.9708847 }, + { "lat": 40.7737763, "lon": -73.9708876 }, + { "lat": 40.7737805, "lon": -73.9709063 }, + { "lat": 40.7738374, "lon": -73.9708838 }, + { "lat": 40.7738653, "lon": -73.9710077 }, + { "lat": 40.7738950, "lon": -73.9711397 }, + { "lat": 40.7738436, "lon": -73.9711600 }, + { "lat": 40.7738479, "lon": -73.9711795 }, + { "lat": 40.7738560, "lon": -73.9711763 }, + { "lat": 40.7738670, "lon": -73.9712255 }, + { "lat": 40.7738808, "lon": -73.9712872 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 426502690, + "bounds": { + "minlat": 40.7736773, + "minlon": -73.9713009, + "maxlat": 40.7738670, + "maxlon": -73.9712255 + }, + "nodes": [ + 4257949375, + 2059303843, + 4257949414, + 4257949425, + 4257949434 + ], + "geometry": [ + { "lat": 40.7736773, "lon": -73.9713009 }, + { "lat": 40.7737354, "lon": -73.9712771 }, + { "lat": 40.7737813, "lon": -73.9712558 }, + { "lat": 40.7738243, "lon": -73.9712391 }, + { "lat": 40.7738670, "lon": -73.9712255 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "noname": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 426502691, + "bounds": { + "minlat": 40.7735855, + "minlon": -73.9708925, + "maxlat": 40.7737703, + "maxlon": -73.9708249 + }, + "nodes": [ + 4257949366, + 561950491, + 4257949383, + 4257949394, + 4257949409 + ], + "geometry": [ + { "lat": 40.7735855, "lon": -73.9708925 }, + { "lat": 40.7736439, "lon": -73.9708689 }, + { "lat": 40.7736909, "lon": -73.9708513 }, + { "lat": 40.7737298, "lon": -73.9708361 }, + { "lat": 40.7737703, "lon": -73.9708249 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "noname": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 428569356, + "bounds": { + "minlat": 40.7404442, + "minlon": -73.9879853, + "maxlat": 40.7408812, + "maxlon": -73.9869534 + }, + "nodes": [ + 42445867, + 4276517126, + 4205565512 + ], + "geometry": [ + { "lat": 40.7408812, "lon": -73.9879853 }, + { "lat": 40.7408378, "lon": -73.9878828 }, + { "lat": 40.7404442, "lon": -73.9869534 } + ], + "tags": { + "alt_name": "East 23 Street", + "bus:lanes": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 428569470, + "bounds": { + "minlat": 40.7407511, + "minlon": -73.9833669, + "maxlat": 40.7414165, + "maxlon": -73.9817646 + }, + "nodes": [ + 42429890, + 4234425056, + 3903014639, + 12183286749, + 4122576552, + 42429896 + ], + "geometry": [ + { "lat": 40.7414165, "lon": -73.9833669 }, + { "lat": 40.7413797, "lon": -73.9832591 }, + { "lat": 40.7409695, "lon": -73.9822862 }, + { "lat": 40.7408299, "lon": -73.9819476 }, + { "lat": 40.7408057, "lon": -73.9818887 }, + { "lat": 40.7407511, "lon": -73.9817646 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 26th Street", + "name:ru": "Восточная 26-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 429041291, + "bounds": { + "minlat": 40.7107458, + "minlon": -74.0174255, + "maxlat": 40.7114924, + "maxlon": -74.0166351 + }, + "nodes": [ + 5490801912, + 4281671255, + 11424681278, + 8281922481, + 8281922482, + 8281922483, + 11424681244, + 4281671254, + 11424681248, + 4281671259, + 4281671260, + 11424681291, + 11424681241, + 8281922479, + 11424681240, + 4281671262, + 4281671264, + 11424681242, + 8281922480, + 4281671263, + 4281671261, + 11424681243, + 5490801911 + ], + "geometry": [ + { "lat": 40.7111089, "lon": -74.0173321 }, + { "lat": 40.7108547, "lon": -74.0174255 }, + { "lat": 40.7108007, "lon": -74.0171879 }, + { "lat": 40.7107498, "lon": -74.0169638 }, + { "lat": 40.7107458, "lon": -74.0169156 }, + { "lat": 40.7107524, "lon": -74.0168740 }, + { "lat": 40.7107736, "lon": -74.0168458 }, + { "lat": 40.7108006, "lon": -74.0168283 }, + { "lat": 40.7111799, "lon": -74.0166857 }, + { "lat": 40.7112347, "lon": -74.0166645 }, + { "lat": 40.7112988, "lon": -74.0166402 }, + { "lat": 40.7113194, "lon": -74.0166368 }, + { "lat": 40.7113299, "lon": -74.0166351 }, + { "lat": 40.7113628, "lon": -74.0166465 }, + { "lat": 40.7113891, "lon": -74.0166713 }, + { "lat": 40.7114063, "lon": -74.0167014 }, + { "lat": 40.7114914, "lon": -74.0170767 }, + { "lat": 40.7114924, "lon": -74.0171189 }, + { "lat": 40.7114835, "lon": -74.0171586 }, + { "lat": 40.7114650, "lon": -74.0171876 }, + { "lat": 40.7114329, "lon": -74.0172089 }, + { "lat": 40.7113580, "lon": -74.0172383 }, + { "lat": 40.7112928, "lon": -74.0172639 } + ], + "tags": { + "access": "private", + "foot": "yes", + "highway": "service", + "maxspeed": "5 mph", + "motor_vehicle": "private", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 429887462, + "bounds": { + "minlat": 40.7788587, + "minlon": -73.9667713, + "maxlat": 40.7789907, + "maxlon": -73.9665854 + }, + "nodes": [ + 4290878253, + 4290878227, + 4290878217, + 4290878219, + 4290878239, + 4290878253 + ], + "geometry": [ + { "lat": 40.7789907, "lon": -73.9667149 }, + { "lat": 40.7789378, "lon": -73.9665854 }, + { "lat": 40.7788587, "lon": -73.9666418 }, + { "lat": 40.7789116, "lon": -73.9667713 }, + { "lat": 40.7789566, "lon": -73.9667393 }, + { "lat": 40.7789907, "lon": -73.9667149 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 429887465, + "bounds": { + "minlat": 40.7789294, + "minlon": -73.9669946, + "maxlat": 40.7791054, + "maxlon": -73.9667924 + }, + "nodes": [ + 4290878295, + 4290878300, + 4290878303, + 4290878309, + 4290878308, + 4290878307, + 4290878301, + 4290878299, + 4290878294, + 4290878287, + 4290878277, + 4290878266, + 4290878265, + 4290878262, + 4290878260, + 4290878256, + 4290878251, + 4290878247, + 4290878243, + 4290878237, + 4290878232, + 4290878236, + 4290878231, + 4290878228, + 4290878226, + 4290878224, + 4290878222, + 4290878220, + 4290878221, + 4290878223, + 4290878225, + 4290878229, + 4290878230, + 4290878233, + 4290878238, + 4290878242, + 4290878244, + 4290878246, + 4290878248, + 4290878249, + 4290878250, + 4290878254, + 4290878255, + 4290878258, + 13096505052, + 4290878264, + 4290878267, + 4290878271, + 4290878273, + 4290878278, + 4290878285, + 4290878288, + 4290878291, + 4290878293, + 4290878295 + ], + "geometry": [ + { "lat": 40.7790854, "lon": -73.9669384 }, + { "lat": 40.7790956, "lon": -73.9669185 }, + { "lat": 40.7791028, "lon": -73.9668973 }, + { "lat": 40.7791054, "lon": -73.9668791 }, + { "lat": 40.7791054, "lon": -73.9668622 }, + { "lat": 40.7791041, "lon": -73.9668518 }, + { "lat": 40.7790990, "lon": -73.9668375 }, + { "lat": 40.7790910, "lon": -73.9668224 }, + { "lat": 40.7790815, "lon": -73.9668133 }, + { "lat": 40.7790674, "lon": -73.9668037 }, + { "lat": 40.7790539, "lon": -73.9667994 }, + { "lat": 40.7790267, "lon": -73.9667998 }, + { "lat": 40.7790266, "lon": -73.9667924 }, + { "lat": 40.7790186, "lon": -73.9667925 }, + { "lat": 40.7790112, "lon": -73.9667950 }, + { "lat": 40.7790009, "lon": -73.9668000 }, + { "lat": 40.7789866, "lon": -73.9668077 }, + { "lat": 40.7789728, "lon": -73.9668188 }, + { "lat": 40.7789617, "lon": -73.9668279 }, + { "lat": 40.7789532, "lon": -73.9668379 }, + { "lat": 40.7789441, "lon": -73.9668504 }, + { "lat": 40.7789500, "lon": -73.9668556 }, + { "lat": 40.7789438, "lon": -73.9668673 }, + { "lat": 40.7789394, "lon": -73.9668783 }, + { "lat": 40.7789354, "lon": -73.9668887 }, + { "lat": 40.7789327, "lon": -73.9668994 }, + { "lat": 40.7789309, "lon": -73.9669056 }, + { "lat": 40.7789294, "lon": -73.9669102 }, + { "lat": 40.7789299, "lon": -73.9669405 }, + { "lat": 40.7789318, "lon": -73.9669490 }, + { "lat": 40.7789350, "lon": -73.9669557 }, + { "lat": 40.7789397, "lon": -73.9669635 }, + { "lat": 40.7789432, "lon": -73.9669691 }, + { "lat": 40.7789486, "lon": -73.9669756 }, + { "lat": 40.7789551, "lon": -73.9669825 }, + { "lat": 40.7789609, "lon": -73.9669871 }, + { "lat": 40.7789655, "lon": -73.9669907 }, + { "lat": 40.7789702, "lon": -73.9669920 }, + { "lat": 40.7789743, "lon": -73.9669929 }, + { "lat": 40.7789787, "lon": -73.9669936 }, + { "lat": 40.7789855, "lon": -73.9669944 }, + { "lat": 40.7789907, "lon": -73.9669946 }, + { "lat": 40.7789960, "lon": -73.9669942 }, + { "lat": 40.7790078, "lon": -73.9669940 }, + { "lat": 40.7790168, "lon": -73.9669919 }, + { "lat": 40.7790207, "lon": -73.9669910 }, + { "lat": 40.7790289, "lon": -73.9669877 }, + { "lat": 40.7790383, "lon": -73.9669832 }, + { "lat": 40.7790455, "lon": -73.9669786 }, + { "lat": 40.7790539, "lon": -73.9669717 }, + { "lat": 40.7790630, "lon": -73.9669632 }, + { "lat": 40.7790675, "lon": -73.9669591 }, + { "lat": 40.7790725, "lon": -73.9669533 }, + { "lat": 40.7790788, "lon": -73.9669464 }, + { "lat": 40.7790854, "lon": -73.9669384 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 430251941, + "bounds": { + "minlat": 40.7978183, + "minlon": -73.9599934, + "maxlat": 40.7981441, + "maxlon": -73.9596395 + }, + "nodes": [ + 4295266925, + 12036477426, + 1203883966, + 12036477427, + 4295266907, + 7784826652, + 4295266904, + 1203883928, + 4295266925 + ], + "geometry": [ + { "lat": 40.7981441, "lon": -73.9597537 }, + { "lat": 40.7980464, "lon": -73.9597174 }, + { "lat": 40.7980154, "lon": -73.9596395 }, + { "lat": 40.7979479, "lon": -73.9596808 }, + { "lat": 40.7978911, "lon": -73.9596597 }, + { "lat": 40.7978315, "lon": -73.9599363 }, + { "lat": 40.7978183, "lon": -73.9599934 }, + { "lat": 40.7979707, "lon": -73.9598813 }, + { "lat": 40.7981441, "lon": -73.9597537 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 430380405, + "bounds": { + "minlat": 40.7354913, + "minlon": -73.9784557, + "maxlat": 40.7366742, + "maxlon": -73.9755954 + }, + "nodes": [ + 3601295754, + 9141016336, + 9141016335, + 9913605330, + 3601295734, + 5007848095, + 5633188740, + 9913605331, + 3601295744, + 3601295755, + 9913605332 + ], + "geometry": [ + { "lat": 40.7366696, "lon": -73.9784557 }, + { "lat": 40.7366732, "lon": -73.9784426 }, + { "lat": 40.7366742, "lon": -73.9784195 }, + { "lat": 40.7366692, "lon": -73.9783963 }, + { "lat": 40.7366611, "lon": -73.9783731 }, + { "lat": 40.7364933, "lon": -73.9779699 }, + { "lat": 40.7360471, "lon": -73.9769112 }, + { "lat": 40.7358962, "lon": -73.9765687 }, + { "lat": 40.7358713, "lon": -73.9765077 }, + { "lat": 40.7357929, "lon": -73.9763204 }, + { "lat": 40.7354913, "lon": -73.9755954 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 430408061, + "bounds": { + "minlat": 40.7042223, + "minlon": -74.0108704, + "maxlat": 40.7044574, + "maxlon": -74.0107232 + }, + "nodes": [ + 4296895459, + 8276468738, + 8957635276, + 4296895460 + ], + "geometry": [ + { "lat": 40.7044574, "lon": -74.0108704 }, + { "lat": 40.7044261, "lon": -74.0108505 }, + { "lat": 40.7044162, "lon": -74.0108446 }, + { "lat": 40.7042223, "lon": -74.0107232 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "20 mph", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 430430033, + "bounds": { + "minlat": 40.7775792, + "minlon": -73.9512609, + "maxlat": 40.7778658, + "maxlon": -73.9509043 + }, + "nodes": [ + 3119952619, + 7834030812, + 3119952621, + 3119952613, + 3119952617, + 3119952614, + 3119952606, + 3119952616, + 3119952608, + 7834025524, + 3119952610 + ], + "geometry": [ + { "lat": 40.7776805, "lon": -73.9512609 }, + { "lat": 40.7777593, "lon": -73.9512032 }, + { "lat": 40.7778290, "lon": -73.9511533 }, + { "lat": 40.7778579, "lon": -73.9510966 }, + { "lat": 40.7778658, "lon": -73.9510435 }, + { "lat": 40.7778505, "lon": -73.9509783 }, + { "lat": 40.7778208, "lon": -73.9509308 }, + { "lat": 40.7777796, "lon": -73.9509043 }, + { "lat": 40.7777379, "lon": -73.9509043 }, + { "lat": 40.7776606, "lon": -73.9509602 }, + { "lat": 40.7775792, "lon": -73.9510183 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 430610046, + "bounds": { + "minlat": 40.7333400, + "minlon": -73.9809058, + "maxlat": 40.7335959, + "maxlon": -73.9808912 + }, + "nodes": [ + 4298757015, + 9913605323, + 4298757029 + ], + "geometry": [ + { "lat": 40.7333400, "lon": -73.9808912 }, + { "lat": 40.7334780, "lon": -73.9808991 }, + { "lat": 40.7335959, "lon": -73.9809058 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 430610061, + "bounds": { + "minlat": 40.7328512, + "minlon": -73.9814608, + "maxlat": 40.7329830, + "maxlon": -73.9811598 + }, + "nodes": [ + 4298757018, + 9913595415, + 4298757012 + ], + "geometry": [ + { "lat": 40.7328512, "lon": -73.9814608 }, + { "lat": 40.7329564, "lon": -73.9812221 }, + { "lat": 40.7329830, "lon": -73.9811598 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 430610882, + "bounds": { + "minlat": 40.7342836, + "minlon": -73.9785193, + "maxlat": 40.7343019, + "maxlon": -73.9782500 + }, + "nodes": [ + 4298764911, + 4298773008, + 4298764915 + ], + "geometry": [ + { "lat": 40.7342836, "lon": -73.9785193 }, + { "lat": 40.7342915, "lon": -73.9784222 }, + { "lat": 40.7343019, "lon": -73.9782500 } + ], + "tags": { + "foot": "no", + "highway": "service", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 430610885, + "bounds": { + "minlat": 40.7333271, + "minlon": -73.9762598, + "maxlat": 40.7333370, + "maxlon": -73.9759559 + }, + "nodes": [ + 4298764929, + 4298773010, + 4298764922 + ], + "geometry": [ + { "lat": 40.7333271, "lon": -73.9762598 }, + { "lat": 40.7333312, "lon": -73.9761347 }, + { "lat": 40.7333370, "lon": -73.9759559 } + ], + "tags": { + "highway": "service", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 430610888, + "bounds": { + "minlat": 40.7337629, + "minlon": -73.9773908, + "maxlat": 40.7339397, + "maxlon": -73.9772831 + }, + "nodes": [ + 4298764923, + 4298773009, + 4298764927 + ], + "geometry": [ + { "lat": 40.7339397, "lon": -73.9773908 }, + { "lat": 40.7338294, "lon": -73.9773241 }, + { "lat": 40.7337629, "lon": -73.9772831 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 430610890, + "bounds": { + "minlat": 40.7346552, + "minlon": -73.9794676, + "maxlat": 40.7348280, + "maxlon": -73.9794045 + }, + "nodes": [ + 5286408259, + 7144879480, + 4298764910 + ], + "geometry": [ + { "lat": 40.7348280, "lon": -73.9794676 }, + { "lat": 40.7347219, "lon": -73.9794289 }, + { "lat": 40.7346552, "lon": -73.9794045 } + ], + "tags": { + "foot": "no", + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 430820840, + "bounds": { + "minlat": 40.7167392, + "minlon": -73.9944635, + "maxlat": 40.7169812, + "maxlon": -73.9936732 + }, + "nodes": [ + 42445627, + 10647611704, + 6330061760, + 6330518857, + 6330518823, + 6330061757, + 6330518819, + 10647611703, + 6369613019, + 42445603 + ], + "geometry": [ + { "lat": 40.7167392, "lon": -73.9936732 }, + { "lat": 40.7167731, "lon": -73.9937727 }, + { "lat": 40.7167890, "lon": -73.9938425 }, + { "lat": 40.7168488, "lon": -73.9940401 }, + { "lat": 40.7168936, "lon": -73.9941883 }, + { "lat": 40.7169138, "lon": -73.9942552 }, + { "lat": 40.7169188, "lon": -73.9942717 }, + { "lat": 40.7169309, "lon": -73.9943140 }, + { "lat": 40.7169384, "lon": -73.9943365 }, + { "lat": 40.7169812, "lon": -73.9944635 } + ], + "tags": { + "highway": "pedestrian", + "name": "Hester Street", + "name:ru": "Хестер-стрит", + "wikidata": "Q5746336", + "wikipedia": "en:Hester Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 430822974, + "bounds": { + "minlat": 40.7157649, + "minlon": -73.9764846, + "maxlat": 40.7162673, + "maxlon": -73.9760067 + }, + "nodes": [ + 4300940097, + 4300994861, + 4300940096, + 4300940095, + 12774934277, + 12774934273, + 12774934276, + 12774934272, + 12774934275, + 12774934274, + 4300940099 + ], + "geometry": [ + { "lat": 40.7157649, "lon": -73.9762355 }, + { "lat": 40.7157839, "lon": -73.9762956 }, + { "lat": 40.7158015, "lon": -73.9763596 }, + { "lat": 40.7158384, "lon": -73.9764062 }, + { "lat": 40.7159259, "lon": -73.9764519 }, + { "lat": 40.7160070, "lon": -73.9764846 }, + { "lat": 40.7160861, "lon": -73.9764714 }, + { "lat": 40.7161584, "lon": -73.9764342 }, + { "lat": 40.7162014, "lon": -73.9763097 }, + { "lat": 40.7162447, "lon": -73.9761032 }, + { "lat": 40.7162673, "lon": -73.9760067 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 430823735, + "bounds": { + "minlat": 40.7172709, + "minlon": -73.9780554, + "maxlat": 40.7177473, + "maxlon": -73.9774566 + }, + "nodes": [ + 4300945442, + 4300994863, + 4300945404, + 4300945438 + ], + "geometry": [ + { "lat": 40.7177473, "lon": -73.9780554 }, + { "lat": 40.7177219, "lon": -73.9779892 }, + { "lat": 40.7175179, "lon": -73.9774566 }, + { "lat": 40.7172709, "lon": -73.9775840 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 430823736, + "bounds": { + "minlat": 40.7166711, + "minlon": -73.9780350, + "maxlat": 40.7167921, + "maxlon": -73.9771522 + }, + "nodes": [ + 42458185, + 4300992086, + 4300945434, + 4300945408, + 4300945432, + 4300945429, + 4300945433, + 4300945422 + ], + "geometry": [ + { "lat": 40.7166940, "lon": -73.9780350 }, + { "lat": 40.7167294, "lon": -73.9779603 }, + { "lat": 40.7167392, "lon": -73.9779394 }, + { "lat": 40.7167830, "lon": -73.9777570 }, + { "lat": 40.7167921, "lon": -73.9776309 }, + { "lat": 40.7167886, "lon": -73.9775896 }, + { "lat": 40.7167840, "lon": -73.9775344 }, + { "lat": 40.7166711, "lon": -73.9771522 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 430823738, + "bounds": { + "minlat": 40.7157116, + "minlon": -73.9777658, + "maxlat": 40.7159415, + "maxlon": -73.9770194 + }, + "nodes": [ + 4300945441, + 4300994834, + 4300945424 + ], + "geometry": [ + { "lat": 40.7159415, "lon": -73.9777658 }, + { "lat": 40.7159162, "lon": -73.9776836 }, + { "lat": 40.7157116, "lon": -73.9770194 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 430829640, + "bounds": { + "minlat": 40.7183825, + "minlon": -73.9794407, + "maxlat": 40.7186121, + "maxlon": -73.9786420 + }, + "nodes": [ + 4300994818, + 4300994845, + 4300994839 + ], + "geometry": [ + { "lat": 40.7186121, "lon": -73.9794407 }, + { "lat": 40.7185800, "lon": -73.9793292 }, + { "lat": 40.7183825, "lon": -73.9786420 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 430829648, + "bounds": { + "minlat": 40.7173234, + "minlon": -73.9756870, + "maxlat": 40.7176829, + "maxlon": -73.9753723 + }, + "nodes": [ + 4300994888, + 4300994842, + 4300994790, + 4300992068, + 10617892231, + 10617892232 + ], + "geometry": [ + { "lat": 40.7173234, "lon": -73.9755266 }, + { "lat": 40.7173481, "lon": -73.9755925 }, + { "lat": 40.7174919, "lon": -73.9756870 }, + { "lat": 40.7176461, "lon": -73.9756069 }, + { "lat": 40.7176829, "lon": -73.9754641 }, + { "lat": 40.7176776, "lon": -73.9753723 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 430829693, + "bounds": { + "minlat": 40.7182619, + "minlon": -73.9775918, + "maxlat": 40.7184158, + "maxlon": -73.9770207 + }, + "nodes": [ + 4300994847, + 4300994891, + 4300994883 + ], + "geometry": [ + { "lat": 40.7184158, "lon": -73.9775918 }, + { "lat": 40.7183940, "lon": -73.9775108 }, + { "lat": 40.7182619, "lon": -73.9770207 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 430840793, + "bounds": { + "minlat": 40.7248074, + "minlon": -73.9746209, + "maxlat": 40.7254405, + "maxlon": -73.9731226 + }, + "nodes": [ + 4931387078, + 4301088396, + 4301088391, + 4301088419 + ], + "geometry": [ + { "lat": 40.7254405, "lon": -73.9746209 }, + { "lat": 40.7252209, "lon": -73.9741005 }, + { "lat": 40.7250415, "lon": -73.9736763 }, + { "lat": 40.7248074, "lon": -73.9731226 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "East 11th Street", + "name:ru": "Восточная 11-я стрит", + "short_name": "E 11 ST", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 430840799, + "bounds": { + "minlat": 40.7258282, + "minlon": -73.9741270, + "maxlat": 40.7263032, + "maxlon": -73.9730728 + }, + "nodes": [ + 4301088465, + 4301308537, + 4301088429, + 4301088433, + 4301088438 + ], + "geometry": [ + { "lat": 40.7263032, "lon": -73.9741270 }, + { "lat": 40.7262603, "lon": -73.9740223 }, + { "lat": 40.7259848, "lon": -73.9733499 }, + { "lat": 40.7258983, "lon": -73.9732337 }, + { "lat": 40.7258282, "lon": -73.9730728 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 430868628, + "bounds": { + "minlat": 40.7216026, + "minlon": -73.9773460, + "maxlat": 40.7218850, + "maxlon": -73.9766338 + }, + "nodes": [ + 42453160, + 4301308529, + 5481979121, + 4301308531 + ], + "geometry": [ + { "lat": 40.7218850, "lon": -73.9773460 }, + { "lat": 40.7218421, "lon": -73.9772428 }, + { "lat": 40.7216754, "lon": -73.9768413 }, + { "lat": 40.7216026, "lon": -73.9766338 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 5th Street", + "name:ru": "Восточная 5-я стрит", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 430868634, + "bounds": { + "minlat": 40.7212854, + "minlon": -73.9755315, + "maxlat": 40.7217866, + "maxlon": -73.9751747 + }, + "nodes": [ + 4301308523, + 4301308522, + 4301308506 + ], + "geometry": [ + { "lat": 40.7217866, "lon": -73.9751747 }, + { "lat": 40.7217003, "lon": -73.9752350 }, + { "lat": 40.7212854, "lon": -73.9755315 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 431047088, + "bounds": { + "minlat": 40.7968962, + "minlon": -73.9513604, + "maxlat": 40.7971534, + "maxlon": -73.9509448 + }, + "nodes": [ + 2827466079, + 2827466077, + 4302966769, + 4302966760, + 4302966754, + 4302966744, + 4302966732, + 4302966715, + 4302966698, + 4302966697, + 4302966680, + 4302966675, + 4302966731, + 4302966730, + 4302966734, + 4302966739, + 4302966742, + 4302966745, + 4302966748, + 4302966753, + 4302966759, + 4302966765, + 4302966773, + 4302966776, + 4302966789, + 7325349524, + 4302966816, + 4302966808, + 4302966810, + 4302966812, + 4302966813, + 4302966811, + 4302966806, + 4302966805, + 4302966801, + 4302966797, + 4302966795, + 4302966792, + 4302966799, + 4302966814, + 4302966817, + 4302966852, + 7325349523, + 4302966859, + 4302966825, + 2827466079 + ], + "geometry": [ + { "lat": 40.7971026, "lon": -73.9513376 }, + { "lat": 40.7970226, "lon": -73.9513604 }, + { "lat": 40.7970081, "lon": -73.9512839 }, + { "lat": 40.7969968, "lon": -73.9512397 }, + { "lat": 40.7969837, "lon": -73.9512382 }, + { "lat": 40.7969695, "lon": -73.9512322 }, + { "lat": 40.7969582, "lon": -73.9512262 }, + { "lat": 40.7969417, "lon": -73.9512134 }, + { "lat": 40.7969173, "lon": -73.9511796 }, + { "lat": 40.7969124, "lon": -73.9511678 }, + { "lat": 40.7969008, "lon": -73.9511399 }, + { "lat": 40.7968962, "lon": -73.9511174 }, + { "lat": 40.7969576, "lon": -73.9510874 }, + { "lat": 40.7969576, "lon": -73.9510731 }, + { "lat": 40.7969587, "lon": -73.9510603 }, + { "lat": 40.7969633, "lon": -73.9510468 }, + { "lat": 40.7969661, "lon": -73.9510363 }, + { "lat": 40.7969712, "lon": -73.9510273 }, + { "lat": 40.7969769, "lon": -73.9510183 }, + { "lat": 40.7969837, "lon": -73.9510101 }, + { "lat": 40.7969928, "lon": -73.9510048 }, + { "lat": 40.7970008, "lon": -73.9510026 }, + { "lat": 40.7970121, "lon": -73.9510003 }, + { "lat": 40.7970150, "lon": -73.9509538 }, + { "lat": 40.7970405, "lon": -73.9509448 }, + { "lat": 40.7970628, "lon": -73.9509997 }, + { "lat": 40.7970825, "lon": -73.9510431 }, + { "lat": 40.7970752, "lon": -73.9510506 }, + { "lat": 40.7970757, "lon": -73.9510656 }, + { "lat": 40.7970769, "lon": -73.9510754 }, + { "lat": 40.7970769, "lon": -73.9510881 }, + { "lat": 40.7970763, "lon": -73.9510971 }, + { "lat": 40.7970735, "lon": -73.9511076 }, + { "lat": 40.7970689, "lon": -73.9511189 }, + { "lat": 40.7970627, "lon": -73.9511301 }, + { "lat": 40.7970564, "lon": -73.9511384 }, + { "lat": 40.7970490, "lon": -73.9511474 }, + { "lat": 40.7970458, "lon": -73.9511483 }, + { "lat": 40.7970590, "lon": -73.9512254 }, + { "lat": 40.7970797, "lon": -73.9512235 }, + { "lat": 40.7970835, "lon": -73.9512438 }, + { "lat": 40.7971435, "lon": -73.9512262 }, + { "lat": 40.7971482, "lon": -73.9512516 }, + { "lat": 40.7971534, "lon": -73.9512828 }, + { "lat": 40.7970975, "lon": -73.9512986 }, + { "lat": 40.7971026, "lon": -73.9513376 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes" + } +}, +{ + "type": "way", + "id": 431763098, + "bounds": { + "minlat": 40.8270028, + "minlon": -73.9116734, + "maxlat": 40.8277596, + "maxlon": -73.9092906 + }, + "nodes": [ + 7560827238, + 12038440400, + 9990169409, + 5482223740, + 12038478845, + 42730085 + ], + "geometry": [ + { "lat": 40.8277596, "lon": -73.9116734 }, + { "lat": 40.8277251, "lon": -73.9115638 }, + { "lat": 40.8276352, "lon": -73.9112774 }, + { "lat": 40.8271981, "lon": -73.9098839 }, + { "lat": 40.8270337, "lon": -73.9093844 }, + { "lat": 40.8270028, "lon": -73.9092906 } + ], + "tags": { + "highway": "residential", + "name": "East 165th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 432550168, + "bounds": { + "minlat": 40.7210870, + "minlon": -73.9747151, + "maxlat": 40.7277134, + "maxlon": -73.9718545 + }, + "nodes": [ + 42431487, + 9907937394, + 42439577, + 9907937393, + 370895458, + 9907937392, + 370895457, + 9907937391, + 9907937389, + 9907937390, + 4913187804, + 4913187806, + 9907937388, + 370895451, + 9907937387, + 9907937386, + 370895450, + 9907937385, + 9907937384, + 9907937383, + 42424476, + 42450855, + 9907937373, + 4913187811, + 9907937372, + 274342043, + 9907937371, + 4913187810, + 9907937370, + 42450854, + 9907937369, + 9907937367, + 9907937368, + 42423903, + 9907937366, + 42423549 + ], + "geometry": [ + { "lat": 40.7277134, "lon": -73.9718545 }, + { "lat": 40.7270770, "lon": -73.9719439 }, + { "lat": 40.7269701, "lon": -73.9719579 }, + { "lat": 40.7268528, "lon": -73.9719771 }, + { "lat": 40.7267256, "lon": -73.9720044 }, + { "lat": 40.7266420, "lon": -73.9720270 }, + { "lat": 40.7265476, "lon": -73.9720543 }, + { "lat": 40.7264435, "lon": -73.9720894 }, + { "lat": 40.7263340, "lon": -73.9721300 }, + { "lat": 40.7262410, "lon": -73.9721697 }, + { "lat": 40.7261423, "lon": -73.9722158 }, + { "lat": 40.7259370, "lon": -73.9723182 }, + { "lat": 40.7257391, "lon": -73.9724211 }, + { "lat": 40.7255344, "lon": -73.9725359 }, + { "lat": 40.7253396, "lon": -73.9726509 }, + { "lat": 40.7251471, "lon": -73.9727718 }, + { "lat": 40.7249460, "lon": -73.9728978 }, + { "lat": 40.7247561, "lon": -73.9730185 }, + { "lat": 40.7245593, "lon": -73.9731422 }, + { "lat": 40.7243583, "lon": -73.9732686 }, + { "lat": 40.7241646, "lon": -73.9733889 }, + { "lat": 40.7229910, "lon": -73.9741273 }, + { "lat": 40.7228957, "lon": -73.9741911 }, + { "lat": 40.7227918, "lon": -73.9742522 }, + { "lat": 40.7226944, "lon": -73.9743063 }, + { "lat": 40.7225865, "lon": -73.9743603 }, + { "lat": 40.7224900, "lon": -73.9744048 }, + { "lat": 40.7223851, "lon": -73.9744485 }, + { "lat": 40.7222820, "lon": -73.9744896 }, + { "lat": 40.7221687, "lon": -73.9745308 }, + { "lat": 40.7220640, "lon": -73.9745613 }, + { "lat": 40.7219614, "lon": -73.9745864 }, + { "lat": 40.7218499, "lon": -73.9746142 }, + { "lat": 40.7217417, "lon": -73.9746320 }, + { "lat": 40.7215276, "lon": -73.9746621 }, + { "lat": 40.7210870, "lon": -73.9747151 } + ], + "tags": { + "alt_name": "East River Drive", + "destination:lanes": "none|none|Grand Street;East Houston Street;Williamsburg Bridge", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 432550169, + "bounds": { + "minlat": 40.7190695, + "minlon": -73.9749610, + "maxlat": 40.7210870, + "maxlon": -73.9747151 + }, + "nodes": [ + 42423549, + 42423053 + ], + "geometry": [ + { "lat": 40.7210870, "lon": -73.9747151 }, + { "lat": 40.7190695, "lon": -73.9749610 } + ], + "tags": { + "alt_name": "East River Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 432550255, + "bounds": { + "minlat": 40.7023210, + "minlon": -74.0005853, + "maxlat": 40.7091794, + "maxlon": -73.9919670 + }, + "nodes": [ + 4158751332, + 8866501400, + 4158752891 + ], + "geometry": [ + { "lat": 40.7023210, "lon": -73.9919670 }, + { "lat": 40.7030828, "lon": -73.9929257 }, + { "lat": 40.7091794, "lon": -74.0005853 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "lit": "yes", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:both": "no", + "surface": "asphalt", + "wikidata": "Q125006", + "wikipedia": "en:Brooklyn Bridge" + } +}, +{ + "type": "way", + "id": 432550256, + "bounds": { + "minlat": 40.7017684, + "minlon": -73.9921091, + "maxlat": 40.7022184, + "maxlon": -73.9915600 + }, + "nodes": [ + 4158751333, + 7561173774 + ], + "geometry": [ + { "lat": 40.7022184, "lon": -73.9921091 }, + { "lat": 40.7017684, "lon": -73.9915600 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "embankment": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "maxspeed": "25 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 432550257, + "bounds": { + "minlat": 40.7093054, + "minlon": -74.0037138, + "maxlat": 40.7114480, + "maxlon": -74.0010181 + }, + "nodes": [ + 486819531, + 7561173749 + ], + "geometry": [ + { "lat": 40.7114480, "lon": -74.0037138 }, + { "lat": 40.7093054, "lon": -74.0010181 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "layer": "3", + "lit": "yes", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 432550259, + "bounds": { + "minlat": 40.7094096, + "minlon": -74.0017161, + "maxlat": 40.7100781, + "maxlon": -74.0008738 + }, + "nodes": [ + 7561173748, + 588719108 + ], + "geometry": [ + { "lat": 40.7094096, "lon": -74.0008738 }, + { "lat": 40.7100781, "lon": -74.0017161 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "lit": "yes", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 433124968, + "bounds": { + "minlat": 40.7297532, + "minlon": -74.0021622, + "maxlat": 40.7332372, + "maxlon": -73.9998383 + }, + "nodes": [ + 42430187, + 3891960758, + 3891969468, + 42430205, + 5151719389, + 5155816418, + 5151711951, + 42430217, + 5151711953, + 4016646252, + 4375703337, + 42430231, + 4375703342, + 2580430244, + 8309478821, + 42430233, + 8309478820, + 8231954052, + 42430235, + 8231954051, + 5155816417, + 13082559908 + ], + "geometry": [ + { "lat": 40.7297532, "lon": -74.0021622 }, + { "lat": 40.7298736, "lon": -74.0021074 }, + { "lat": 40.7304675, "lon": -74.0017529 }, + { "lat": 40.7305503, "lon": -74.0017000 }, + { "lat": 40.7305891, "lon": -74.0016793 }, + { "lat": 40.7308272, "lon": -74.0015461 }, + { "lat": 40.7310119, "lon": -74.0014427 }, + { "lat": 40.7310625, "lon": -74.0014113 }, + { "lat": 40.7311300, "lon": -74.0013653 }, + { "lat": 40.7313397, "lon": -74.0012163 }, + { "lat": 40.7316452, "lon": -74.0009967 }, + { "lat": 40.7317060, "lon": -74.0009540 }, + { "lat": 40.7317685, "lon": -74.0009086 }, + { "lat": 40.7318551, "lon": -74.0008455 }, + { "lat": 40.7322651, "lon": -74.0005473 }, + { "lat": 40.7323150, "lon": -74.0005110 }, + { "lat": 40.7323731, "lon": -74.0004689 }, + { "lat": 40.7328759, "lon": -74.0001045 }, + { "lat": 40.7329290, "lon": -74.0000660 }, + { "lat": 40.7329891, "lon": -74.0000216 }, + { "lat": 40.7331688, "lon": -73.9998888 }, + { "lat": 40.7332372, "lon": -73.9998383 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 433124996, + "bounds": { + "minlat": 40.7297532, + "minlon": -74.0024762, + "maxlat": 40.7303374, + "maxlon": -74.0021622 + }, + "nodes": [ + 42431773, + 3891969470, + 12273503029, + 3891960760, + 5854302552, + 42430187 + ], + "geometry": [ + { "lat": 40.7303374, "lon": -74.0024762 }, + { "lat": 40.7302679, "lon": -74.0024367 }, + { "lat": 40.7299624, "lon": -74.0022653 }, + { "lat": 40.7298974, "lon": -74.0022293 }, + { "lat": 40.7298561, "lon": -74.0022057 }, + { "lat": 40.7297532, "lon": -74.0021622 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bleecker Street", + "name:etymology:wikidata": "Q4772124", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 433394647, + "bounds": { + "minlat": 40.7281435, + "minlon": -74.0029583, + "maxlat": 40.7283741, + "maxlon": -74.0028488 + }, + "nodes": [ + 3891963915, + 8821481438, + 12282551598, + 5866337888, + 4321748238 + ], + "geometry": [ + { "lat": 40.7281435, "lon": -74.0029583 }, + { "lat": 40.7282268, "lon": -74.0029187 }, + { "lat": 40.7282642, "lon": -74.0029007 }, + { "lat": 40.7283029, "lon": -74.0028825 }, + { "lat": 40.7283741, "lon": -74.0028488 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:right": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 433398367, + "bounds": { + "minlat": 40.7281021, + "minlon": -74.0023601, + "maxlat": 40.7282339, + "maxlon": -74.0021007 + }, + "nodes": [ + 42448549, + 5829880522, + 4202908174 + ], + "geometry": [ + { "lat": 40.7281021, "lon": -74.0021007 }, + { "lat": 40.7281312, "lon": -74.0021598 }, + { "lat": 40.7282339, "lon": -74.0023601 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through;right|right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 433442259, + "bounds": { + "minlat": 40.7278068, + "minlon": -74.0030955, + "maxlat": 40.7281435, + "maxlon": -74.0029583 + }, + "nodes": [ + 13082559909, + 3891963915 + ], + "geometry": [ + { "lat": 40.7278068, "lon": -74.0030955 }, + { "lat": 40.7281435, "lon": -74.0029583 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|right", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 433442263, + "bounds": { + "minlat": 40.7208080, + "minlon": -73.9821814, + "maxlat": 40.7209056, + "maxlon": -73.9818534 + }, + "nodes": [ + 1919595923, + 5798966625 + ], + "geometry": [ + { "lat": 40.7209056, "lon": -73.9821814 }, + { "lat": 40.7208080, "lon": -73.9818534 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 435188578, + "bounds": { + "minlat": 40.7726288, + "minlon": -73.9703755, + "maxlat": 40.7735720, + "maxlon": -73.9693261 + }, + "nodes": [ + 1490116218, + 1490116215, + 4257949345, + 1210383434, + 4257949331, + 1210383486, + 1210383423, + 1210383484, + 1210383520, + 13718295127, + 1210383451, + 1210383537, + 1210383516, + 4254513120, + 4254513121, + 1210383532, + 4254512903, + 4254508564, + 1210383447, + 4254510132 + ], + "geometry": [ + { "lat": 40.7735720, "lon": -73.9702863 }, + { "lat": 40.7734893, "lon": -73.9703320 }, + { "lat": 40.7734356, "lon": -73.9703603 }, + { "lat": 40.7734193, "lon": -73.9703679 }, + { "lat": 40.7733918, "lon": -73.9703755 }, + { "lat": 40.7733360, "lon": -73.9703746 }, + { "lat": 40.7732440, "lon": -73.9703474 }, + { "lat": 40.7731572, "lon": -73.9703030 }, + { "lat": 40.7730402, "lon": -73.9702347 }, + { "lat": 40.7730308, "lon": -73.9701580 }, + { "lat": 40.7729657, "lon": -73.9698154 }, + { "lat": 40.7729133, "lon": -73.9696033 }, + { "lat": 40.7728841, "lon": -73.9694946 }, + { "lat": 40.7728647, "lon": -73.9694462 }, + { "lat": 40.7728290, "lon": -73.9693818 }, + { "lat": 40.7728063, "lon": -73.9693503 }, + { "lat": 40.7727705, "lon": -73.9693261 }, + { "lat": 40.7727432, "lon": -73.9693287 }, + { "lat": 40.7727090, "lon": -73.9693539 }, + { "lat": 40.7726288, "lon": -73.9694371 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 435331242, + "bounds": { + "minlat": 40.7723881, + "minlon": -73.9770187, + "maxlat": 40.7726131, + "maxlon": -73.9767538 + }, + "nodes": [ + 247227451, + 4332563035, + 9908399122, + 4332563036, + 9908399121, + 9178914792, + 4332563031, + 4332563033 + ], + "geometry": [ + { "lat": 40.7726131, "lon": -73.9770187 }, + { "lat": 40.7725782, "lon": -73.9769033 }, + { "lat": 40.7725673, "lon": -73.9768783 }, + { "lat": 40.7725528, "lon": -73.9768533 }, + { "lat": 40.7725353, "lon": -73.9768313 }, + { "lat": 40.7725099, "lon": -73.9768077 }, + { "lat": 40.7724937, "lon": -73.9767990 }, + { "lat": 40.7723881, "lon": -73.9767538 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "West 67th Street", + "bicycle": "designated", + "foot": "permissive", + "hgv": "no", + "highway": "service", + "motor_vehicle": "private", + "name": "Warner LeRoy Place", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 438362422, + "bounds": { + "minlat": 40.7064673, + "minlon": -74.0162777, + "maxlat": 40.7071606, + "maxlon": -74.0160093 + }, + "nodes": [ + 246909454, + 11413750746, + 11413750745, + 11413750744, + 11413750743, + 11413750742, + 10660708381, + 588593353 + ], + "geometry": [ + { "lat": 40.7071606, "lon": -74.0160093 }, + { "lat": 40.7071007, "lon": -74.0160376 }, + { "lat": 40.7070039, "lon": -74.0160815 }, + { "lat": 40.7068948, "lon": -74.0161273 }, + { "lat": 40.7067269, "lon": -74.0161932 }, + { "lat": 40.7066205, "lon": -74.0162328 }, + { "lat": 40.7065038, "lon": -74.0162663 }, + { "lat": 40.7064673, "lon": -74.0162777 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "unsigned_ref": "NY 907L", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 438362423, + "bounds": { + "minlat": 40.7073089, + "minlon": -74.0156861, + "maxlat": 40.7076106, + "maxlon": -74.0155543 + }, + "nodes": [ + 588593059, + 8821317922, + 11374474020, + 4149748671 + ], + "geometry": [ + { "lat": 40.7073089, "lon": -74.0156861 }, + { "lat": 40.7074742, "lon": -74.0156134 }, + { "lat": 40.7075181, "lon": -74.0155953 }, + { "lat": 40.7076106, "lon": -74.0155543 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 438363728, + "bounds": { + "minlat": 40.7098267, + "minlon": -74.0150379, + "maxlat": 40.7098348, + "maxlon": -74.0147403 + }, + "nodes": [ + 246858431, + 11413750528, + 12413032498 + ], + "geometry": [ + { "lat": 40.7098348, "lon": -74.0150379 }, + { "lat": 40.7098283, "lon": -74.0147914 }, + { "lat": 40.7098267, "lon": -74.0147403 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Albany Street", + "name:etymology:wikidata": "Q24861", + "name:ko": "앨버니 스트리트", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q29110247", + "wikipedia": "en:Albany Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 438363729, + "bounds": { + "minlat": 40.7084917, + "minlon": -74.0152017, + "maxlat": 40.7094404, + "maxlon": -74.0148836 + }, + "nodes": [ + 42446640, + 11413750587, + 11413750588, + 11413750589, + 11413750751, + 11413750591, + 11413750590, + 42452314 + ], + "geometry": [ + { "lat": 40.7084917, "lon": -74.0152017 }, + { "lat": 40.7088289, "lon": -74.0150662 }, + { "lat": 40.7089605, "lon": -74.0150201 }, + { "lat": 40.7090886, "lon": -74.0149843 }, + { "lat": 40.7091651, "lon": -74.0149662 }, + { "lat": 40.7092416, "lon": -74.0149480 }, + { "lat": 40.7093653, "lon": -74.0149097 }, + { "lat": 40.7094404, "lon": -74.0148836 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 438366913, + "bounds": { + "minlat": 40.7081968, + "minlon": -74.0032934, + "maxlat": 40.7085564, + "maxlon": -74.0028563 + }, + "nodes": [ + 12339501825, + 5446626916, + 12339501824 + ], + "geometry": [ + { "lat": 40.7085564, "lon": -74.0028563 }, + { "lat": 40.7085166, "lon": -74.0029043 }, + { "lat": 40.7081968, "lon": -74.0032934 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 438367285, + "bounds": { + "minlat": 40.7203190, + "minlon": -74.0122789, + "maxlat": 40.7203434, + "maxlon": -74.0120514 + }, + "nodes": [ + 4207143418, + 12410398107 + ], + "geometry": [ + { "lat": 40.7203190, "lon": -74.0120514 }, + { "lat": 40.7203434, "lon": -74.0122789 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "North Moore Street", + "name:etymology:wikidata": "Q16203667", + "name:ko": "노스 무어 스트리트", + "name:ru": "Норт-Мур-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q7056143", + "wikipedia": "en:North Moore Street" + } +}, +{ + "type": "way", + "id": 438367286, + "bounds": { + "minlat": 40.7185464, + "minlon": -74.0126980, + "maxlat": 40.7203434, + "maxlon": -74.0122789 + }, + "nodes": [ + 12410398107, + 246891414, + 373882872, + 373882982, + 10185281699 + ], + "geometry": [ + { "lat": 40.7203434, "lon": -74.0122789 }, + { "lat": 40.7202263, "lon": -74.0123056 }, + { "lat": 40.7191940, "lon": -74.0125457 }, + { "lat": 40.7189633, "lon": -74.0125988 }, + { "lat": 40.7185464, "lon": -74.0126980 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 438370108, + "bounds": { + "minlat": 40.7261761, + "minlon": -74.0108723, + "maxlat": 40.7283922, + "maxlon": -74.0106251 + }, + "nodes": [ + 42442294, + 12162542934, + 4141586737, + 4141586733, + 4141586735, + 12162542924, + 12162542927, + 4207143436 + ], + "geometry": [ + { "lat": 40.7261761, "lon": -74.0108723 }, + { "lat": 40.7266411, "lon": -74.0108016 }, + { "lat": 40.7267742, "lon": -74.0107840 }, + { "lat": 40.7268827, "lon": -74.0107716 }, + { "lat": 40.7269928, "lon": -74.0107609 }, + { "lat": 40.7279304, "lon": -74.0106744 }, + { "lat": 40.7279813, "lon": -74.0106688 }, + { "lat": 40.7283922, "lon": -74.0106251 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 438375431, + "bounds": { + "minlat": 40.7206496, + "minlon": -73.9813453, + "maxlat": 40.7207645, + "maxlon": -73.9812727 + }, + "nodes": [ + 42427358, + 1919595922 + ], + "geometry": [ + { "lat": 40.7206496, "lon": -73.9813453 }, + { "lat": 40.7207645, "lon": -73.9812727 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway": "shared_lane;lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 438381568, + "bounds": { + "minlat": 40.7288087, + "minlon": -73.9754271, + "maxlat": 40.7295900, + "maxlon": -73.9748590 + }, + "nodes": [ + 1989931109, + 4161568803, + 42431482, + 4161568807, + 1989931117 + ], + "geometry": [ + { "lat": 40.7288087, "lon": -73.9754271 }, + { "lat": 40.7290769, "lon": -73.9752321 }, + { "lat": 40.7291391, "lon": -73.9751868 }, + { "lat": 40.7291974, "lon": -73.9751445 }, + { "lat": 40.7295900, "lon": -73.9748590 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 438383442, + "bounds": { + "minlat": 40.8153400, + "minlon": -73.9480090, + "maxlat": 40.8171160, + "maxlon": -73.9437801 + }, + "nodes": [ + 42439887, + 9150629545, + 10743755873, + 5378420471, + 10187641084, + 42435844, + 10187641087, + 5403823141, + 7784459432, + 42439588 + ], + "geometry": [ + { "lat": 40.8153400, "lon": -73.9437801 }, + { "lat": 40.8153911, "lon": -73.9439031 }, + { "lat": 40.8159428, "lon": -73.9452087 }, + { "lat": 40.8163414, "lon": -73.9461518 }, + { "lat": 40.8164528, "lon": -73.9464155 }, + { "lat": 40.8165065, "lon": -73.9465427 }, + { "lat": 40.8165641, "lon": -73.9466750 }, + { "lat": 40.8170252, "lon": -73.9477748 }, + { "lat": 40.8170517, "lon": -73.9478362 }, + { "lat": 40.8171160, "lon": -73.9480090 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 135th Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 438383443, + "bounds": { + "minlat": 40.8127563, + "minlon": -73.9407812, + "maxlat": 40.8140809, + "maxlon": -73.9376408 + }, + "nodes": [ + 7541804761, + 9559433255, + 2328595430, + 9559444353, + 42437801, + 9559444355, + 5481922120, + 9559444358, + 42453258 + ], + "geometry": [ + { "lat": 40.8127563, "lon": -73.9376408 }, + { "lat": 40.8128121, "lon": -73.9377718 }, + { "lat": 40.8129898, "lon": -73.9381956 }, + { "lat": 40.8134145, "lon": -73.9391995 }, + { "lat": 40.8134646, "lon": -73.9393193 }, + { "lat": 40.8135113, "lon": -73.9394326 }, + { "lat": 40.8135808, "lon": -73.9395952 }, + { "lat": 40.8140486, "lon": -73.9407037 }, + { "lat": 40.8140809, "lon": -73.9407812 } + ], + "tags": { + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 135th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 438384692, + "bounds": { + "minlat": 40.7528125, + "minlon": -73.9803326, + "maxlat": 40.7532568, + "maxlon": -73.9792873 + }, + "nodes": [ + 42445916, + 3955360023, + 11817409618 + ], + "geometry": [ + { "lat": 40.7528125, "lon": -73.9792873 }, + { "lat": 40.7528560, "lon": -73.9793857 }, + { "lat": 40.7532568, "lon": -73.9803326 } + ], + "tags": { + "bus:lanes:backward": "designated|yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 438384693, + "bounds": { + "minlat": 40.7534863, + "minlon": -73.9787764, + "maxlat": 40.7544719, + "maxlon": -73.9780563 + }, + "nodes": [ + 42445917, + 3944708031, + 3944708032, + 42445920, + 3944708034, + 4202958491 + ], + "geometry": [ + { "lat": 40.7534863, "lon": -73.9787764 }, + { "lat": 40.7535448, "lon": -73.9787320 }, + { "lat": 40.7540438, "lon": -73.9783708 }, + { "lat": 40.7540990, "lon": -73.9783295 }, + { "lat": 40.7541661, "lon": -73.9782804 }, + { "lat": 40.7544719, "lon": -73.9780563 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 438384743, + "bounds": { + "minlat": 40.7401752, + "minlon": -73.9761435, + "maxlat": 40.7404533, + "maxlon": -73.9759372 + }, + "nodes": [ + 1632878994, + 9017126040 + ], + "geometry": [ + { "lat": 40.7401752, "lon": -73.9761435 }, + { "lat": 40.7404533, "lon": -73.9759372 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 438385431, + "bounds": { + "minlat": 40.7503415, + "minlon": -73.9831749, + "maxlat": 40.7528159, + "maxlon": -73.9813803 + }, + "nodes": [ + 42432436, + 4625652083, + 4625653591, + 42446488, + 9965135058, + 13706281951, + 10166333070, + 42445649, + 10166333071, + 10166333031, + 42433604, + 9965135081, + 9965135079, + 42443950 + ], + "geometry": [ + { "lat": 40.7528159, "lon": -73.9813803 }, + { "lat": 40.7527646, "lon": -73.9814175 }, + { "lat": 40.7522691, "lon": -73.9817769 }, + { "lat": 40.7522048, "lon": -73.9818235 }, + { "lat": 40.7521432, "lon": -73.9818682 }, + { "lat": 40.7516933, "lon": -73.9821945 }, + { "lat": 40.7516492, "lon": -73.9822265 }, + { "lat": 40.7515813, "lon": -73.9822757 }, + { "lat": 40.7515263, "lon": -73.9823156 }, + { "lat": 40.7510322, "lon": -73.9826740 }, + { "lat": 40.7509597, "lon": -73.9827265 }, + { "lat": 40.7508949, "lon": -73.9827735 }, + { "lat": 40.7504137, "lon": -73.9831226 }, + { "lat": 40.7503415, "lon": -73.9831749 } + ], + "tags": { + "access:lanes": "yes|yes|yes|no|no", + "bus:lanes": "yes|yes|yes|designated|designated", + "hgv": "no", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 438388090, + "bounds": { + "minlat": 40.7315864, + "minlon": -73.9849374, + "maxlat": 40.7323530, + "maxlon": -73.9831254 + }, + "nodes": [ + 13205862060, + 8309479680, + 13205862061, + 11040080989, + 9907956909, + 9907956908, + 9907956907, + 9907956906, + 9907956905, + 9907956904, + 9907956903, + 9907956902 + ], + "geometry": [ + { "lat": 40.7323530, "lon": -73.9849374 }, + { "lat": 40.7323086, "lon": -73.9848111 }, + { "lat": 40.7322832, "lon": -73.9847490 }, + { "lat": 40.7322036, "lon": -73.9845543 }, + { "lat": 40.7321356, "lon": -73.9843881 }, + { "lat": 40.7321007, "lon": -73.9843103 }, + { "lat": 40.7320690, "lon": -73.9842541 }, + { "lat": 40.7320081, "lon": -73.9841397 }, + { "lat": 40.7319731, "lon": -73.9840703 }, + { "lat": 40.7319448, "lon": -73.9840083 }, + { "lat": 40.7316792, "lon": -73.9833716 }, + { "lat": 40.7315864, "lon": -73.9831254 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 438389785, + "bounds": { + "minlat": 40.7295679, + "minlon": -73.9899050, + "maxlat": 40.7298613, + "maxlon": -73.9896920 + }, + "nodes": [ + 42434140, + 3919359291, + 12179562774, + 42443296 + ], + "geometry": [ + { "lat": 40.7295679, "lon": -73.9899050 }, + { "lat": 40.7296369, "lon": -73.9898544 }, + { "lat": 40.7296828, "lon": -73.9898204 }, + { "lat": 40.7298613, "lon": -73.9896920 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "no", + "parking:left": "lane", + "parking:right": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 438389786, + "bounds": { + "minlat": 40.7329347, + "minlon": -73.9871866, + "maxlat": 40.7332979, + "maxlon": -73.9863189 + }, + "nodes": [ + 42440729, + 3985008870, + 12183286716, + 11040080990, + 9907956912 + ], + "geometry": [ + { "lat": 40.7332979, "lon": -73.9871866 }, + { "lat": 40.7332421, "lon": -73.9870475 }, + { "lat": 40.7331991, "lon": -73.9869418 }, + { "lat": 40.7330811, "lon": -73.9866660 }, + { "lat": 40.7329347, "lon": -73.9863189 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||right", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 438390724, + "bounds": { + "minlat": 40.7397109, + "minlon": -73.9859003, + "maxlat": 40.7399969, + "maxlon": -73.9852227 + }, + "nodes": [ + 9971262463, + 5266429280, + 9971262464 + ], + "geometry": [ + { "lat": 40.7397109, "lon": -73.9852227 }, + { "lat": 40.7398895, "lon": -73.9856459 }, + { "lat": 40.7399969, "lon": -73.9859003 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 438397345, + "bounds": { + "minlat": 40.7547828, + "minlon": -73.9799429, + "maxlat": 40.7554134, + "maxlon": -73.9794895 + }, + "nodes": [ + 42432693, + 3942050709, + 9965135056, + 42443556 + ], + "geometry": [ + { "lat": 40.7554134, "lon": -73.9794895 }, + { "lat": 40.7553528, "lon": -73.9795331 }, + { "lat": 40.7548500, "lon": -73.9798946 }, + { "lat": 40.7547828, "lon": -73.9799429 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 438899450, + "bounds": { + "minlat": 40.7110047, + "minlon": -74.0146587, + "maxlat": 40.7111162, + "maxlon": -74.0143969 + }, + "nodes": [ + 246858433, + 11413750530, + 42422028 + ], + "geometry": [ + { "lat": 40.7111162, "lon": -74.0146587 }, + { "lat": 40.7110601, "lon": -74.0145243 }, + { "lat": 40.7110047, "lon": -74.0143969 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 438900013, + "bounds": { + "minlat": 40.7136952, + "minlon": -74.0137098, + "maxlat": 40.7144270, + "maxlon": -74.0134218 + }, + "nodes": [ + 42453395, + 5813280738, + 4143838199, + 42453398 + ], + "geometry": [ + { "lat": 40.7136952, "lon": -74.0137098 }, + { "lat": 40.7138046, "lon": -74.0136648 }, + { "lat": 40.7143067, "lon": -74.0134664 }, + { "lat": 40.7144270, "lon": -74.0134218 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 438901171, + "bounds": { + "minlat": 40.7171177, + "minlon": -73.9989003, + "maxlat": 40.7172605, + "maxlon": -73.9985901 + }, + "nodes": [ + 42435451, + 7641859734, + 11514578307, + 2572245386, + 2572245390, + 11514578317, + 2572245396 + ], + "geometry": [ + { "lat": 40.7171177, "lon": -73.9985901 }, + { "lat": 40.7171379, "lon": -73.9986442 }, + { "lat": 40.7171622, "lon": -73.9987106 }, + { "lat": 40.7171973, "lon": -73.9987924 }, + { "lat": 40.7172188, "lon": -73.9988358 }, + { "lat": 40.7172450, "lon": -73.9988785 }, + { "lat": 40.7172605, "lon": -73.9989003 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 438901427, + "bounds": { + "minlat": 40.7218819, + "minlon": -74.0063170, + "maxlat": 40.7225692, + "maxlon": -74.0053547 + }, + "nodes": [ + 3788379733, + 2151385506, + 13082559910, + 42439550, + 4778174560, + 42440838 + ], + "geometry": [ + { "lat": 40.7218819, "lon": -74.0053547 }, + { "lat": 40.7219973, "lon": -74.0055222 }, + { "lat": 40.7220323, "lon": -74.0055704 }, + { "lat": 40.7222714, "lon": -74.0058990 }, + { "lat": 40.7224876, "lon": -74.0062050 }, + { "lat": 40.7225692, "lon": -74.0063170 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 438901945, + "bounds": { + "minlat": 40.7134490, + "minlon": -73.9986438, + "maxlat": 40.7135233, + "maxlon": -73.9984987 + }, + "nodes": [ + 588455743, + 1773055865 + ], + "geometry": [ + { "lat": 40.7134490, "lon": -73.9984987 }, + { "lat": 40.7135233, "lon": -73.9986438 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "maxspeed": "20 mph", + "name": "Oliver Street", + "name:etymology:wikidata": "Q7087491", + "name:ko": "올리버 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 439768850, + "bounds": { + "minlat": 40.7559783, + "minlon": -73.9765120, + "maxlat": 40.7566036, + "maxlon": -73.9749834 + }, + "nodes": [ + 42445926, + 10166333036, + 12834723261, + 10125233045, + 596775882 + ], + "geometry": [ + { "lat": 40.7566036, "lon": -73.9765120 }, + { "lat": 40.7565584, "lon": -73.9764014 }, + { "lat": 40.7560302, "lon": -73.9751104 }, + { "lat": 40.7560221, "lon": -73.9750905 }, + { "lat": 40.7559783, "lon": -73.9749834 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "East 48th Street", + "name:ru": "Восточная 48-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 439801896, + "bounds": { + "minlat": 40.8007934, + "minlon": -73.9580118, + "maxlat": 40.8012375, + "maxlon": -73.9576916 + }, + "nodes": [ + 42435743, + 10171241032, + 7024230446, + 9796881843, + 42435736 + ], + "geometry": [ + { "lat": 40.8012375, "lon": -73.9576916 }, + { "lat": 40.8011847, "lon": -73.9577304 }, + { "lat": 40.8009879, "lon": -73.9578742 }, + { "lat": 40.8008736, "lon": -73.9579551 }, + { "lat": 40.8007934, "lon": -73.9580118 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "maxspeed": "25 mph", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "sidewalk:both": "separate", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 439801897, + "bounds": { + "minlat": 40.8047230, + "minlon": -73.9681787, + "maxlat": 40.8057185, + "maxlon": -73.9679224 + }, + "nodes": [ + 42441926, + 6914116755, + 11378511124, + 42452223, + 11378511128, + 6914116733, + 42452225, + 6914116742, + 42452229, + 42452233, + 42452237, + 6815909903, + 9177516868, + 6815909897, + 6815909900, + 42452251, + 42452257, + 42452262, + 42452264, + 42452268, + 42452272, + 9177516869, + 42452276 + ], + "geometry": [ + { "lat": 40.8047230, "lon": -73.9680127 }, + { "lat": 40.8047579, "lon": -73.9680672 }, + { "lat": 40.8047739, "lon": -73.9680874 }, + { "lat": 40.8047991, "lon": -73.9681192 }, + { "lat": 40.8048156, "lon": -73.9681326 }, + { "lat": 40.8048303, "lon": -73.9681445 }, + { "lat": 40.8048659, "lon": -73.9681610 }, + { "lat": 40.8049032, "lon": -73.9681734 }, + { "lat": 40.8049436, "lon": -73.9681787 }, + { "lat": 40.8049899, "lon": -73.9681728 }, + { "lat": 40.8050446, "lon": -73.9681607 }, + { "lat": 40.8051048, "lon": -73.9681439 }, + { "lat": 40.8051702, "lon": -73.9681198 }, + { "lat": 40.8052292, "lon": -73.9680925 }, + { "lat": 40.8054872, "lon": -73.9679496 }, + { "lat": 40.8055258, "lon": -73.9679313 }, + { "lat": 40.8055615, "lon": -73.9679224 }, + { "lat": 40.8055920, "lon": -73.9679249 }, + { "lat": 40.8056176, "lon": -73.9679340 }, + { "lat": 40.8056443, "lon": -73.9679547 }, + { "lat": 40.8056683, "lon": -73.9679825 }, + { "lat": 40.8056968, "lon": -73.9680187 }, + { "lat": 40.8057185, "lon": -73.9680554 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 439801898, + "bounds": { + "minlat": 40.8001174, + "minlon": -73.9585194, + "maxlat": 40.8003679, + "maxlon": -73.9583313 + }, + "nodes": [ + 9150529698, + 3248816551, + 42435346 + ], + "geometry": [ + { "lat": 40.8001174, "lon": -73.9585194 }, + { "lat": 40.8002998, "lon": -73.9583833 }, + { "lat": 40.8003679, "lon": -73.9583313 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lit": "yes", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 439801899, + "bounds": { + "minlat": 40.7736120, + "minlon": -73.9815824, + "maxlat": 40.7740084, + "maxlon": -73.9812940 + }, + "nodes": [ + 11503371248, + 9902164235, + 3718672443 + ], + "geometry": [ + { "lat": 40.7740084, "lon": -73.9812940 }, + { "lat": 40.7736677, "lon": -73.9815401 }, + { "lat": 40.7736120, "lon": -73.9815824 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 439801900, + "bounds": { + "minlat": 40.7729730, + "minlon": -73.9820473, + "maxlat": 40.7736120, + "maxlon": -73.9815824 + }, + "nodes": [ + 3718672443, + 5117991226, + 13208007104, + 5117963647, + 9170816532 + ], + "geometry": [ + { "lat": 40.7736120, "lon": -73.9815824 }, + { "lat": 40.7735503, "lon": -73.9816254 }, + { "lat": 40.7731362, "lon": -73.9819276 }, + { "lat": 40.7730715, "lon": -73.9819748 }, + { "lat": 40.7729730, "lon": -73.9820473 } + ], + "tags": { + "access:lanes": "yes|no|yes|yes|yes", + "bicycle:lanes": "yes|designated|no|no|no", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 439801901, + "bounds": { + "minlat": 40.7676843, + "minlon": -73.9817558, + "maxlat": 40.7678493, + "maxlon": -73.9814690 + }, + "nodes": [ + 1825841693, + 9170790602, + 9170790601, + 1825841680, + 1825841678, + 8821677085, + 1825841688 + ], + "geometry": [ + { "lat": 40.7676843, "lon": -73.9817558 }, + { "lat": 40.7677146, "lon": -73.9816667 }, + { "lat": 40.7677376, "lon": -73.9816140 }, + { "lat": 40.7677613, "lon": -73.9815719 }, + { "lat": 40.7677878, "lon": -73.9815337 }, + { "lat": 40.7678207, "lon": -73.9814959 }, + { "lat": 40.7678493, "lon": -73.9814690 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "junction": "circular", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Circle", + "name:etymology:wikidata": "Q7322", + "name:ja": "コロンバスサークル", + "name:ko": "콜럼버스 서클", + "name:ru": "Коламбус-сёркл", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q109968" + } +}, +{ + "type": "way", + "id": 439801902, + "bounds": { + "minlat": 40.7676746, + "minlon": -73.9820870, + "maxlat": 40.7677052, + "maxlon": -73.9818824 + }, + "nodes": [ + 1825841704, + 13051842070, + 6622850416, + 1825841721, + 1825841743 + ], + "geometry": [ + { "lat": 40.7677052, "lon": -73.9820870 }, + { "lat": 40.7676958, "lon": -73.9820529 }, + { "lat": 40.7676869, "lon": -73.9820156 }, + { "lat": 40.7676805, "lon": -73.9819778 }, + { "lat": 40.7676746, "lon": -73.9818824 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "junction": "circular", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Circle", + "name:etymology:wikidata": "Q7322", + "name:ja": "コロンバスサークル", + "name:ko": "콜럼버스 서클", + "name:ru": "Коламбус-сёркл", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through;right|right", + "wikidata": "Q109968" + } +}, +{ + "type": "way", + "id": 439801903, + "bounds": { + "minlat": 40.7681044, + "minlon": -73.9814740, + "maxlat": 40.7682630, + "maxlon": -73.9813948 + }, + "nodes": [ + 4347550071, + 9969200089, + 1825841654, + 9969200090, + 1825841748, + 1825841647, + 4347550065 + ], + "geometry": [ + { "lat": 40.7681044, "lon": -73.9813948 }, + { "lat": 40.7681258, "lon": -73.9813995 }, + { "lat": 40.7681502, "lon": -73.9814069 }, + { "lat": 40.7681680, "lon": -73.9814138 }, + { "lat": 40.7681866, "lon": -73.9814223 }, + { "lat": 40.7682247, "lon": -73.9814445 }, + { "lat": 40.7682630, "lon": -73.9814740 } + ], + "tags": { + "cycleway:both": "lane", + "cycleway:both:oneway": "yes", + "cycleway:left:buffer": "yes", + "hgv": "local", + "highway": "primary", + "junction": "circular", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Circle", + "name:etymology:wikidata": "Q7322", + "name:ja": "コロンバスサークル", + "name:ko": "콜럼버스 서클", + "name:ru": "Коламбус-сёркл", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|right|right", + "wikidata": "Q109968" + } +}, +{ + "type": "way", + "id": 439801904, + "bounds": { + "minlat": 40.8003376, + "minlon": -73.9583313, + "maxlat": 40.8005207, + "maxlon": -73.9578670 + }, + "nodes": [ + 42435346, + 1778676705, + 1778676720, + 4295266964, + 1778676707, + 1778676721, + 12534148902, + 825345575, + 42424460, + 1778676715, + 825345583, + 1778676710, + 2091642195, + 825345579, + 4016646214 + ], + "geometry": [ + { "lat": 40.8003679, "lon": -73.9583313 }, + { "lat": 40.8003550, "lon": -73.9582977 }, + { "lat": 40.8003455, "lon": -73.9582620 }, + { "lat": 40.8003401, "lon": -73.9582265 }, + { "lat": 40.8003376, "lon": -73.9581827 }, + { "lat": 40.8003406, "lon": -73.9581365 }, + { "lat": 40.8003425, "lon": -73.9581177 }, + { "lat": 40.8003438, "lon": -73.9581045 }, + { "lat": 40.8003561, "lon": -73.9580529 }, + { "lat": 40.8003745, "lon": -73.9580086 }, + { "lat": 40.8003940, "lon": -73.9579755 }, + { "lat": 40.8004183, "lon": -73.9579410 }, + { "lat": 40.8004503, "lon": -73.9579061 }, + { "lat": 40.8004838, "lon": -73.9578830 }, + { "lat": 40.8005207, "lon": -73.9578670 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "junction": "roundabout", + "lanes": "3", + "lit": "yes", + "name": "Frederick Douglass Circle", + "name:etymology:wikidata": "Q215562", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "sidewalk": "both", + "sidewalk:both:surface": "paving_stones", + "surface": "concrete", + "turn:lanes": "none|none|right", + "wikidata": "Q5497668" + } +}, +{ + "type": "way", + "id": 439801905, + "bounds": { + "minlat": 40.8106928, + "minlon": -73.9545043, + "maxlat": 40.8113669, + "maxlon": -73.9540099 + }, + "nodes": [ + 42440138, + 10171087505, + 7598970689, + 6823995447, + 42429825, + 10171087503, + 10171087497, + 42440144 + ], + "geometry": [ + { "lat": 40.8106928, "lon": -73.9545043 }, + { "lat": 40.8107556, "lon": -73.9544593 }, + { "lat": 40.8108033, "lon": -73.9544251 }, + { "lat": 40.8109338, "lon": -73.9543303 }, + { "lat": 40.8110093, "lon": -73.9542758 }, + { "lat": 40.8111097, "lon": -73.9542017 }, + { "lat": 40.8112769, "lon": -73.9540768 }, + { "lat": 40.8113669, "lon": -73.9540099 } + ], + "tags": { + "highway": "residential", + "name": "Morningside Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 439801906, + "bounds": { + "minlat": 40.8031025, + "minlon": -73.9582399, + "maxlat": 40.8038773, + "maxlon": -73.9581997 + }, + "nodes": [ + 42440104, + 10165997002, + 9150563653, + 9150563652, + 11296200795, + 42431210 + ], + "geometry": [ + { "lat": 40.8038773, "lon": -73.9582040 }, + { "lat": 40.8038107, "lon": -73.9582031 }, + { "lat": 40.8037649, "lon": -73.9581997 }, + { "lat": 40.8032764, "lon": -73.9582399 }, + { "lat": 40.8031826, "lon": -73.9582366 }, + { "lat": 40.8031025, "lon": -73.9582337 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "Morningside Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 439801907, + "bounds": { + "minlat": 40.7803110, + "minlon": -73.9856862, + "maxlat": 40.7837916, + "maxlon": -73.9838929 + }, + "nodes": [ + 42438867, + 9177505601, + 9168918190, + 2346800742, + 2346800741, + 42441668, + 9168918189, + 2346800740, + 42441670, + 9895633503, + 42441654, + 9895633504, + 5115922042, + 42432572, + 5115922047, + 1329122504, + 42424032 + ], + "geometry": [ + { "lat": 40.7837916, "lon": -73.9838929 }, + { "lat": 40.7834305, "lon": -73.9842545 }, + { "lat": 40.7833511, "lon": -73.9843321 }, + { "lat": 40.7832948, "lon": -73.9843830 }, + { "lat": 40.7832443, "lon": -73.9844242 }, + { "lat": 40.7831868, "lon": -73.9844643 }, + { "lat": 40.7831257, "lon": -73.9844988 }, + { "lat": 40.7830724, "lon": -73.9845256 }, + { "lat": 40.7824893, "lon": -73.9847754 }, + { "lat": 40.7818454, "lon": -73.9850490 }, + { "lat": 40.7817710, "lon": -73.9850810 }, + { "lat": 40.7817126, "lon": -73.9851056 }, + { "lat": 40.7811415, "lon": -73.9853425 }, + { "lat": 40.7810707, "lon": -73.9853731 }, + { "lat": 40.7809994, "lon": -73.9854032 }, + { "lat": 40.7804438, "lon": -73.9856318 }, + { "lat": 40.7803110, "lon": -73.9856862 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:both": "separate", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 439801908, + "bounds": { + "minlat": 40.7843551, + "minlon": -73.9832997, + "maxlat": 40.7849764, + "maxlon": -73.9826519 + }, + "nodes": [ + 42422592, + 10039612941, + 4906056162, + 10160791137, + 42428072 + ], + "geometry": [ + { "lat": 40.7849764, "lon": -73.9826519 }, + { "lat": 40.7848842, "lon": -73.9827468 }, + { "lat": 40.7848744, "lon": -73.9827575 }, + { "lat": 40.7844184, "lon": -73.9832342 }, + { "lat": 40.7843551, "lon": -73.9832997 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 439801910, + "bounds": { + "minlat": 40.7861437, + "minlon": -73.9845042, + "maxlat": 40.7861831, + "maxlon": -73.9842044 + }, + "nodes": [ + 1584183270, + 1584183272, + 10160790231, + 10160790233, + 10160790232, + 1584183271 + ], + "geometry": [ + { "lat": 40.7861437, "lon": -73.9842044 }, + { "lat": 40.7861668, "lon": -73.9842617 }, + { "lat": 40.7861792, "lon": -73.9843158 }, + { "lat": 40.7861831, "lon": -73.9843772 }, + { "lat": 40.7861787, "lon": -73.9844407 }, + { "lat": 40.7861660, "lon": -73.9845042 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "no", + "highway": "service", + "motor_vehicle": "permit", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 439805285, + "bounds": { + "minlat": 40.7940644, + "minlon": -73.9703681, + "maxlat": 40.7945859, + "maxlon": -73.9699879 + }, + "nodes": [ + 42442534, + 8687882779, + 9457151139 + ], + "geometry": [ + { "lat": 40.7940644, "lon": -73.9703681 }, + { "lat": 40.7941535, "lon": -73.9703031 }, + { "lat": 40.7945859, "lon": -73.9699879 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 439824227, + "bounds": { + "minlat": 40.8190591, + "minlon": -73.9615124, + "maxlat": 40.8199545, + "maxlon": -73.9604069 + }, + "nodes": [ + 2043220869, + 12107073475, + 12107073476, + 12107073477, + 4375003606, + 4375003607, + 4375003622, + 4375003623, + 122003177, + 4375003609, + 4375003610, + 4375003620, + 2043220869 + ], + "geometry": [ + { "lat": 40.8190591, "lon": -73.9611880 }, + { "lat": 40.8192847, "lon": -73.9613935 }, + { "lat": 40.8192495, "lon": -73.9614548 }, + { "lat": 40.8193064, "lon": -73.9615124 }, + { "lat": 40.8199545, "lon": -73.9604312 }, + { "lat": 40.8199354, "lon": -73.9604069 }, + { "lat": 40.8198862, "lon": -73.9604502 }, + { "lat": 40.8198637, "lon": -73.9604700 }, + { "lat": 40.8198029, "lon": -73.9605236 }, + { "lat": 40.8193074, "lon": -73.9613595 }, + { "lat": 40.8190851, "lon": -73.9611551 }, + { "lat": 40.8190724, "lon": -73.9611707 }, + { "lat": 40.8190591, "lon": -73.9611880 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "man_made": "pier" + } +}, +{ + "type": "way", + "id": 439824228, + "bounds": { + "minlat": 40.8186124, + "minlon": -73.9625123, + "maxlat": 40.8192500, + "maxlon": -73.9615417 + }, + "nodes": [ + 2041876762, + 764744762, + 122003198, + 12107073478, + 12107073479, + 12107073480, + 12107073481, + 12107073482, + 11779245037, + 11779245036, + 11779245038, + 12107073483, + 12107073484, + 12107073485, + 12107073486, + 12107073487, + 12107073488, + 12107073489, + 12107073490, + 2041876762 + ], + "geometry": [ + { "lat": 40.8186124, "lon": -73.9615715 }, + { "lat": 40.8186304, "lon": -73.9615556 }, + { "lat": 40.8186479, "lon": -73.9615417 }, + { "lat": 40.8188340, "lon": -73.9619544 }, + { "lat": 40.8188961, "lon": -73.9620196 }, + { "lat": 40.8189199, "lon": -73.9619713 }, + { "lat": 40.8189915, "lon": -73.9620430 }, + { "lat": 40.8189707, "lon": -73.9620830 }, + { "lat": 40.8190277, "lon": -73.9621379 }, + { "lat": 40.8190888, "lon": -73.9620846 }, + { "lat": 40.8192500, "lon": -73.9624075 }, + { "lat": 40.8192447, "lon": -73.9624259 }, + { "lat": 40.8191828, "lon": -73.9624823 }, + { "lat": 40.8191738, "lon": -73.9624813 }, + { "lat": 40.8190172, "lon": -73.9621728 }, + { "lat": 40.8189558, "lon": -73.9621112 }, + { "lat": 40.8187184, "lon": -73.9625123 }, + { "lat": 40.8186436, "lon": -73.9624319 }, + { "lat": 40.8188387, "lon": -73.9620974 }, + { "lat": 40.8186124, "lon": -73.9615715 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "man_made": "pier" + } +}, +{ + "type": "way", + "id": 439824233, + "bounds": { + "minlat": 40.8191695, + "minlon": -73.9608006, + "maxlat": 40.8201025, + "maxlon": -73.9599139 + }, + "nodes": [ + 4375003624, + 4375003625, + 4375003599, + 4375003600, + 4375003626, + 3874689575, + 3874689572, + 4375003624 + ], + "geometry": [ + { "lat": 40.8201025, "lon": -73.9599139 }, + { "lat": 40.8198704, "lon": -73.9604111 }, + { "lat": 40.8198482, "lon": -73.9604456 }, + { "lat": 40.8191798, "lon": -73.9608006 }, + { "lat": 40.8191695, "lon": -73.9607773 }, + { "lat": 40.8197093, "lon": -73.9602638 }, + { "lat": 40.8198275, "lon": -73.9601558 }, + { "lat": 40.8201025, "lon": -73.9599139 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 439842751, + "bounds": { + "minlat": 40.7228061, + "minlon": -73.9930344, + "maxlat": 40.7233543, + "maxlon": -73.9928257 + }, + "nodes": [ + 1773082408, + 11676490353 + ], + "geometry": [ + { "lat": 40.7228061, "lon": -73.9930344 }, + { "lat": 40.7233543, "lon": -73.9928257 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 439842754, + "bounds": { + "minlat": 40.7209449, + "minlon": -73.9937437, + "maxlat": 40.7216253, + "maxlon": -73.9934835 + }, + "nodes": [ + 1773076509, + 8231909722, + 12196062136, + 12196062130, + 8231909717, + 1773076778 + ], + "geometry": [ + { "lat": 40.7209449, "lon": -73.9937437 }, + { "lat": 40.7209965, "lon": -73.9937282 }, + { "lat": 40.7210155, "lon": -73.9937217 }, + { "lat": 40.7215314, "lon": -73.9935180 }, + { "lat": 40.7215747, "lon": -73.9935021 }, + { "lat": 40.7216253, "lon": -73.9934835 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 439842757, + "bounds": { + "minlat": 40.7252265, + "minlon": -73.9921682, + "maxlat": 40.7256286, + "maxlon": -73.9920249 + }, + "nodes": [ + 1773084391, + 8309479087, + 5243701467, + 9543294811, + 8309479094, + 1773084407 + ], + "geometry": [ + { "lat": 40.7252265, "lon": -73.9921682 }, + { "lat": 40.7252915, "lon": -73.9921428 }, + { "lat": 40.7254797, "lon": -73.9920778 }, + { "lat": 40.7255121, "lon": -73.9920662 }, + { "lat": 40.7255622, "lon": -73.9920481 }, + { "lat": 40.7256286, "lon": -73.9920249 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 439842761, + "bounds": { + "minlat": 40.7241972, + "minlon": -73.9925309, + "maxlat": 40.7248855, + "maxlon": -73.9922896 + }, + "nodes": [ + 1773082410, + 5829779518, + 12187431902, + 12187431494, + 8309479082, + 1773084410 + ], + "geometry": [ + { "lat": 40.7241972, "lon": -73.9925309 }, + { "lat": 40.7242816, "lon": -73.9925020 }, + { "lat": 40.7243077, "lon": -73.9924948 }, + { "lat": 40.7247750, "lon": -73.9923294 }, + { "lat": 40.7248245, "lon": -73.9923109 }, + { "lat": 40.7248855, "lon": -73.9922896 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 439842799, + "bounds": { + "minlat": 40.7326608, + "minlon": -74.0086473, + "maxlat": 40.7328774, + "maxlon": -74.0075136 + }, + "nodes": [ + 42436129, + 8307641997, + 4578212490, + 12162494522, + 12162494520, + 12162494521, + 12162494519, + 12162436933, + 12162436934, + 8307641996, + 42436894 + ], + "geometry": [ + { "lat": 40.7328774, "lon": -74.0075136 }, + { "lat": 40.7328380, "lon": -74.0076303 }, + { "lat": 40.7328138, "lon": -74.0077049 }, + { "lat": 40.7327970, "lon": -74.0077733 }, + { "lat": 40.7327829, "lon": -74.0078390 }, + { "lat": 40.7327718, "lon": -74.0079011 }, + { "lat": 40.7327606, "lon": -74.0079694 }, + { "lat": 40.7326882, "lon": -74.0084426 }, + { "lat": 40.7326819, "lon": -74.0084893 }, + { "lat": 40.7326758, "lon": -74.0085369 }, + { "lat": 40.7326608, "lon": -74.0086473 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Christopher Street", + "name:ru": "Кристофер-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1086990", + "wikipedia": "en:Christopher Street" + } +}, +{ + "type": "way", + "id": 439842805, + "bounds": { + "minlat": 40.7146584, + "minlon": -73.9775558, + "maxlat": 40.7148947, + "maxlon": -73.9768194 + }, + "nodes": [ + 42435556, + 8438554388, + 5173624711, + 42424641 + ], + "geometry": [ + { "lat": 40.7148947, "lon": -73.9775558 }, + { "lat": 40.7148303, "lon": -73.9774229 }, + { "lat": 40.7146763, "lon": -73.9768646 }, + { "lat": 40.7146584, "lon": -73.9768194 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "parking:lane:right": "no_stopping", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 439842812, + "bounds": { + "minlat": 40.7256286, + "minlon": -73.9921182, + "maxlat": 40.7256649, + "maxlon": -73.9920249 + }, + "nodes": [ + 42437618, + 1773084407 + ], + "geometry": [ + { "lat": 40.7256649, "lon": -73.9921182 }, + { "lat": 40.7256286, "lon": -73.9920249 } + ], + "tags": { + "alt_name:ko": "이스트 2번가", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 16:30-23:00; Sa 10:00-23:00; Su 11:30-23:00)", + "name": "East 2nd Street", + "name:ko": "이스트 2nd 스트리트", + "name:ru": "Восточная 2-я стрит", + "name_1": "East 2 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 439842817, + "bounds": { + "minlat": 40.7189791, + "minlon": -73.9752365, + "maxlat": 40.7189897, + "maxlon": -73.9750822 + }, + "nodes": [ + 42454391, + 1775270666 + ], + "geometry": [ + { "lat": 40.7189791, "lon": -73.9750822 }, + { "lat": 40.7189897, "lon": -73.9752365 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 439842823, + "bounds": { + "minlat": 40.7195928, + "minlon": -73.9985146, + "maxlat": 40.7197918, + "maxlon": -73.9980860 + }, + "nodes": [ + 42427324, + 8307641672, + 12187436367, + 8307641661, + 42439207 + ], + "geometry": [ + { "lat": 40.7197918, "lon": -73.9985146 }, + { "lat": 40.7197537, "lon": -73.9984348 }, + { "lat": 40.7196513, "lon": -73.9982207 }, + { "lat": 40.7196233, "lon": -73.9981621 }, + { "lat": 40.7195928, "lon": -73.9980860 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 439842831, + "bounds": { + "minlat": 40.7187939, + "minlon": -73.9980860, + "maxlat": 40.7195928, + "maxlon": -73.9956895 + }, + "nodes": [ + 42439207, + 8307641659, + 8307641655, + 42435470, + 7641718016, + 9939353598, + 42432282, + 7641718005, + 12195871657, + 7641718010, + 42452056 + ], + "geometry": [ + { "lat": 40.7195928, "lon": -73.9980860 }, + { "lat": 40.7195615, "lon": -73.9980078 }, + { "lat": 40.7193549, "lon": -73.9973729 }, + { "lat": 40.7193317, "lon": -73.9973015 }, + { "lat": 40.7193122, "lon": -73.9972417 }, + { "lat": 40.7190858, "lon": -73.9965460 }, + { "lat": 40.7190617, "lon": -73.9964718 }, + { "lat": 40.7190453, "lon": -73.9964214 }, + { "lat": 40.7188396, "lon": -73.9958197 }, + { "lat": 40.7188198, "lon": -73.9957635 }, + { "lat": 40.7187939, "lon": -73.9956895 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 439842834, + "bounds": { + "minlat": 40.7216253, + "minlon": -73.9935947, + "maxlat": 40.7216557, + "maxlon": -73.9934835 + }, + "nodes": [ + 1773076778, + 42437114 + ], + "geometry": [ + { "lat": 40.7216253, "lon": -73.9934835 }, + { "lat": 40.7216557, "lon": -73.9935947 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "name:ko": "리빙턴 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 439842835, + "bounds": { + "minlat": 40.7222994, + "minlon": -73.9979746, + "maxlat": 40.7226691, + "maxlon": -73.9971193 + }, + "nodes": [ + 42442255, + 8231906915, + 12187436345, + 8231877115, + 42442247 + ], + "geometry": [ + { "lat": 40.7226691, "lon": -73.9979746 }, + { "lat": 40.7226474, "lon": -73.9979247 }, + { "lat": 40.7223826, "lon": -73.9973116 }, + { "lat": 40.7223548, "lon": -73.9972458 }, + { "lat": 40.7222994, "lon": -73.9971193 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 439842836, + "bounds": { + "minlat": 40.7230210, + "minlon": -74.0011270, + "maxlat": 40.7241660, + "maxlon": -73.9988120 + }, + "nodes": [ + 42433577, + 8231885404, + 8231885403, + 42442273, + 8231885400, + 8231885399, + 42442269, + 8231885396, + 3573482111, + 42428441 + ], + "geometry": [ + { "lat": 40.7241660, "lon": -74.0011270 }, + { "lat": 40.7241423, "lon": -74.0010785 }, + { "lat": 40.7238294, "lon": -74.0004374 }, + { "lat": 40.7237950, "lon": -74.0003670 }, + { "lat": 40.7237708, "lon": -74.0003176 }, + { "lat": 40.7234565, "lon": -73.9996773 }, + { "lat": 40.7234230, "lon": -73.9996090 }, + { "lat": 40.7233974, "lon": -73.9995584 }, + { "lat": 40.7230721, "lon": -73.9989134 }, + { "lat": 40.7230210, "lon": -73.9988120 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 439842837, + "bounds": { + "minlat": 40.7248800, + "minlon": -74.0033760, + "maxlat": 40.7252520, + "maxlon": -74.0026190 + }, + "nodes": [ + 42439527, + 8231934384, + 8231934383, + 42436779 + ], + "geometry": [ + { "lat": 40.7252520, "lon": -74.0033760 }, + { "lat": 40.7252277, "lon": -74.0033249 }, + { "lat": 40.7249123, "lon": -74.0026845 }, + { "lat": 40.7248800, "lon": -74.0026190 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 439842838, + "bounds": { + "minlat": 40.7216851, + "minlon": -73.9900420, + "maxlat": 40.7219217, + "maxlon": -73.9892792 + }, + "nodes": [ + 42429647, + 8307642263, + 3314293704, + 42432057 + ], + "geometry": [ + { "lat": 40.7219217, "lon": -73.9900420 }, + { "lat": 40.7218964, "lon": -73.9899713 }, + { "lat": 40.7217102, "lon": -73.9893649 }, + { "lat": 40.7216851, "lon": -73.9892792 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Stanton Street", + "name:ko": "스탠턴 스트리트", + "name:ru": "Стэнтон-стрит", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7600270", + "wikipedia": "en:Stanton Street" + } +}, +{ + "type": "way", + "id": 439842840, + "bounds": { + "minlat": 40.7137911, + "minlon": -74.0140984, + "maxlat": 40.7138581, + "maxlon": -74.0139410 + }, + "nodes": [ + 246866806, + 373880031 + ], + "geometry": [ + { "lat": 40.7138581, "lon": -74.0140984 }, + { "lat": 40.7137911, "lon": -74.0139410 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Vesey Street", + "name:etymology:wikidata": "Q8019717", + "name:etymology:wikipedia": "en:William Vessey", + "name:ko": "비지 스트리트", + "name:ru": "Визи-стрит", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt", + "turn:lanes:forward": "left|right", + "wikidata": "Q1592975", + "wikipedia": "en:Vesey Street" + } +}, +{ + "type": "way", + "id": 439933928, + "bounds": { + "minlat": 40.7310098, + "minlon": -73.9904506, + "maxlat": 40.7319680, + "maxlon": -73.9902172 + }, + "nodes": [ + 595407648, + 12179524690, + 8309479624, + 42430872, + 8309479623, + 12179524693, + 8309479651, + 42453104 + ], + "geometry": [ + { "lat": 40.7310098, "lon": -73.9904506 }, + { "lat": 40.7311761, "lon": -73.9904127 }, + { "lat": 40.7312228, "lon": -73.9904017 }, + { "lat": 40.7312878, "lon": -73.9903880 }, + { "lat": 40.7313669, "lon": -73.9903724 }, + { "lat": 40.7318604, "lon": -73.9902448 }, + { "lat": 40.7319002, "lon": -73.9902352 }, + { "lat": 40.7319680, "lon": -73.9902172 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "4th Avenue", + "name:ru": "4-я Авеню", + "name_1": "4 Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 439933929, + "bounds": { + "minlat": 40.7318643, + "minlon": -73.9966562, + "maxlat": 40.7322611, + "maxlon": -73.9963683 + }, + "nodes": [ + 42437949, + 8309478852, + 12992009474, + 42433354 + ], + "geometry": [ + { "lat": 40.7322611, "lon": -73.9963683 }, + { "lat": 40.7322044, "lon": -73.9964172 }, + { "lat": 40.7320189, "lon": -73.9965503 }, + { "lat": 40.7318643, "lon": -73.9966562 } + ], + "tags": { + "bus": "no", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 439933931, + "bounds": { + "minlat": 40.7200506, + "minlon": -74.0052237, + "maxlat": 40.7206562, + "maxlon": -74.0051738 + }, + "nodes": [ + 12015224191, + 11493402739, + 12015224192, + 2155551108, + 11493402740, + 11492801295, + 42430126 + ], + "geometry": [ + { "lat": 40.7200506, "lon": -74.0051738 }, + { "lat": 40.7203871, "lon": -74.0051807 }, + { "lat": 40.7204084, "lon": -74.0051833 }, + { "lat": 40.7204680, "lon": -74.0051906 }, + { "lat": 40.7205977, "lon": -74.0052117 }, + { "lat": 40.7206378, "lon": -74.0052212 }, + { "lat": 40.7206562, "lon": -74.0052237 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "lane", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 439933932, + "bounds": { + "minlat": 40.7491217, + "minlon": -73.9882353, + "maxlat": 40.7495629, + "maxlon": -73.9879131 + }, + "nodes": [ + 42430298, + 42428244, + 4886228960 + ], + "geometry": [ + { "lat": 40.7491217, "lon": -73.9882353 }, + { "lat": 40.7491755, "lon": -73.9881960 }, + { "lat": 40.7495629, "lon": -73.9879131 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 439933933, + "bounds": { + "minlat": 40.7660319, + "minlon": -73.9833766, + "maxlat": 40.7665920, + "maxlon": -73.9829638 + }, + "nodes": [ + 42431556, + 10084790531, + 6210777831 + ], + "geometry": [ + { "lat": 40.7660319, "lon": -73.9833766 }, + { "lat": 40.7661077, "lon": -73.9833207 }, + { "lat": 40.7665920, "lon": -73.9829638 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 439933934, + "bounds": { + "minlat": 40.7387661, + "minlon": -74.0034031, + "maxlat": 40.7390953, + "maxlon": -74.0030301 + }, + "nodes": [ + 42431497, + 6213315380, + 13247221992, + 42429388 + ], + "geometry": [ + { "lat": 40.7387661, "lon": -74.0034031 }, + { "lat": 40.7388221, "lon": -74.0033378 }, + { "lat": 40.7390099, "lon": -74.0031238 }, + { "lat": 40.7390953, "lon": -74.0030301 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 439933935, + "bounds": { + "minlat": 40.7375508, + "minlon": -74.0047770, + "maxlat": 40.7377954, + "maxlon": -74.0045029 + }, + "nodes": [ + 42435578, + 8307463727, + 5331842131 + ], + "geometry": [ + { "lat": 40.7375508, "lon": -74.0047770 }, + { "lat": 40.7376187, "lon": -74.0047009 }, + { "lat": 40.7377954, "lon": -74.0045029 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 439933945, + "bounds": { + "minlat": 40.7287662, + "minlon": -74.0070745, + "maxlat": 40.7300324, + "maxlon": -74.0068726 + }, + "nodes": [ + 42436371, + 8429031596, + 8214320085, + 42436374, + 8214320084, + 6210448866 + ], + "geometry": [ + { "lat": 40.7287662, "lon": -74.0070745 }, + { "lat": 40.7288354, "lon": -74.0070629 }, + { "lat": 40.7294235, "lon": -74.0069642 }, + { "lat": 40.7294927, "lon": -74.0069526 }, + { "lat": 40.7295612, "lon": -74.0069419 }, + { "lat": 40.7300324, "lon": -74.0068726 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 439933946, + "bounds": { + "minlat": 40.7306873, + "minlon": -73.9905955, + "maxlat": 40.7310098, + "maxlon": -73.9904506 + }, + "nodes": [ + 4234425009, + 12179565610, + 12179565611, + 12179565612, + 12179565613, + 595407648 + ], + "geometry": [ + { "lat": 40.7306873, "lon": -73.9905955 }, + { "lat": 40.7307113, "lon": -73.9905790 }, + { "lat": 40.7307443, "lon": -73.9905589 }, + { "lat": 40.7307746, "lon": -73.9905429 }, + { "lat": 40.7308164, "lon": -73.9905231 }, + { "lat": 40.7310098, "lon": -73.9904506 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 439933947, + "bounds": { + "minlat": 40.7266425, + "minlon": -73.9941184, + "maxlat": 40.7270220, + "maxlon": -73.9938364 + }, + "nodes": [ + 42445520, + 8309479057, + 12187431471, + 4202984496 + ], + "geometry": [ + { "lat": 40.7266425, "lon": -73.9941184 }, + { "lat": 40.7267084, "lon": -73.9940712 }, + { "lat": 40.7267262, "lon": -73.9940584 }, + { "lat": 40.7270220, "lon": -73.9938364 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:ar": "شارع لافايات", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 439933948, + "bounds": { + "minlat": 40.7268704, + "minlon": -74.0031066, + "maxlat": 40.7291698, + "maxlon": -74.0011880 + }, + "nodes": [ + 1692433938, + 8309478940, + 5829827216, + 42448549, + 1919595928, + 5829844674, + 8307641958, + 42450325, + 8176816199, + 8231934396, + 42439335 + ], + "geometry": [ + { "lat": 40.7291698, "lon": -74.0011880 }, + { "lat": 40.7291184, "lon": -74.0012315 }, + { "lat": 40.7281768, "lon": -74.0020371 }, + { "lat": 40.7281021, "lon": -74.0021007 }, + { "lat": 40.7279861, "lon": -74.0021905 }, + { "lat": 40.7279201, "lon": -74.0022431 }, + { "lat": 40.7276494, "lon": -74.0024702 }, + { "lat": 40.7276010, "lon": -74.0025130 }, + { "lat": 40.7269687, "lon": -74.0030148 }, + { "lat": 40.7269273, "lon": -74.0030494 }, + { "lat": 40.7268704, "lon": -74.0031066 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "MacDougal Street", + "name:etymology:wikidata": "Q659951", + "name:ko": "맥두걸 스트리트", + "name:ru": "Макдугал-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6721850", + "wikipedia": "en:MacDougal Street" + } +}, +{ + "type": "way", + "id": 439933951, + "bounds": { + "minlat": 40.7149648, + "minlon": -74.0097093, + "maxlat": 40.7155294, + "maxlon": -74.0092468 + }, + "nodes": [ + 42431614, + 11517225740, + 7410938055, + 11517225743, + 7410938046, + 42449600 + ], + "geometry": [ + { "lat": 40.7155294, "lon": -74.0092468 }, + { "lat": 40.7155060, "lon": -74.0092713 }, + { "lat": 40.7154780, "lon": -74.0092991 }, + { "lat": 40.7154465, "lon": -74.0093271 }, + { "lat": 40.7150303, "lon": -74.0096564 }, + { "lat": 40.7149648, "lon": -74.0097093 } + ], + "tags": { + "construction": "minor", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "yes", + "parking:left": "street_side", + "parking:left:orientation": "parallel", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 439935985, + "bounds": { + "minlat": 40.7769375, + "minlon": -73.9354094, + "maxlat": 40.7774073, + "maxlon": -73.9345256 + }, + "nodes": [ + 4376163207, + 4376163208, + 1891177023, + 1891177022, + 6517207640, + 4376163206, + 4376163209, + 4376163210, + 4376163211, + 4376163212, + 4376163213, + 4376163214, + 4376163215, + 4376163216, + 4376163217, + 4376163219, + 4376163220, + 4376163222, + 4376163223, + 4376163221, + 4376163218, + 4376163207 + ], + "geometry": [ + { "lat": 40.7772481, "lon": -73.9345256 }, + { "lat": 40.7772626, "lon": -73.9345558 }, + { "lat": 40.7771294, "lon": -73.9346685 }, + { "lat": 40.7771236, "lon": -73.9347635 }, + { "lat": 40.7773448, "lon": -73.9352191 }, + { "lat": 40.7774073, "lon": -73.9353479 }, + { "lat": 40.7773324, "lon": -73.9354094 }, + { "lat": 40.7772684, "lon": -73.9352740 }, + { "lat": 40.7773111, "lon": -73.9352391 }, + { "lat": 40.7772837, "lon": -73.9351774 }, + { "lat": 40.7771128, "lon": -73.9353088 }, + { "lat": 40.7771003, "lon": -73.9352697 }, + { "lat": 40.7772694, "lon": -73.9351466 }, + { "lat": 40.7772380, "lon": -73.9350755 }, + { "lat": 40.7772034, "lon": -73.9351050 }, + { "lat": 40.7770407, "lon": -73.9347690 }, + { "lat": 40.7769851, "lon": -73.9347937 }, + { "lat": 40.7770065, "lon": -73.9348578 }, + { "lat": 40.7769750, "lon": -73.9348767 }, + { "lat": 40.7769375, "lon": -73.9347591 }, + { "lat": 40.7770196, "lon": -73.9347255 }, + { "lat": 40.7772481, "lon": -73.9345256 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 440122865, + "bounds": { + "minlat": 40.7840871, + "minlon": -73.9585567, + "maxlat": 40.7847313, + "maxlon": -73.9580844 + }, + "nodes": [ + 42456575, + 5306313703, + 5306313711, + 42444809 + ], + "geometry": [ + { "lat": 40.7847313, "lon": -73.9580844 }, + { "lat": 40.7846666, "lon": -73.9581319 }, + { "lat": 40.7841677, "lon": -73.9584976 }, + { "lat": 40.7840871, "lon": -73.9585567 } + ], + "tags": { + "alt_name": "Museum Mile", + "bicycle": "designated", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 440122867, + "bounds": { + "minlat": 40.7822111, + "minlon": -73.9599188, + "maxlat": 40.7840871, + "maxlon": -73.9585567 + }, + "nodes": [ + 42444809, + 5306313715, + 5306314444, + 42436537, + 5306314442, + 5306314449, + 42445731, + 5306314437, + 7093980568, + 42454189 + ], + "geometry": [ + { "lat": 40.7840871, "lon": -73.9585567 }, + { "lat": 40.7840229, "lon": -73.9586030 }, + { "lat": 40.7835157, "lon": -73.9589613 }, + { "lat": 40.7834629, "lon": -73.9589963 }, + { "lat": 40.7834103, "lon": -73.9590353 }, + { "lat": 40.7828971, "lon": -73.9594135 }, + { "lat": 40.7828325, "lon": -73.9594602 }, + { "lat": 40.7827859, "lon": -73.9594954 }, + { "lat": 40.7822699, "lon": -73.9598778 }, + { "lat": 40.7822111, "lon": -73.9599188 } + ], + "tags": { + "alt_name": "Museum Mile", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 440122868, + "bounds": { + "minlat": 40.7536909, + "minlon": -73.9849447, + "maxlat": 40.7541770, + "maxlon": -73.9845960 + }, + "nodes": [ + 9417469211, + 10169532643, + 42430329 + ], + "geometry": [ + { "lat": 40.7536909, "lon": -73.9849447 }, + { "lat": 40.7541194, "lon": -73.9846374 }, + { "lat": 40.7541770, "lon": -73.9845960 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "intermediate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 440122875, + "bounds": { + "minlat": 40.8249149, + "minlon": -73.9365846, + "maxlat": 40.8251560, + "maxlon": -73.9364105 + }, + "nodes": [ + 8695926123, + 4207863949 + ], + "geometry": [ + { "lat": 40.8249149, "lon": -73.9365846 }, + { "lat": 40.8251560, "lon": -73.9364105 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 440122876, + "bounds": { + "minlat": 40.8239648, + "minlon": -73.9374863, + "maxlat": 40.8248415, + "maxlon": -73.9368478 + }, + "nodes": [ + 42439927, + 8247830988, + 8247830996, + 42434306, + 10177607145, + 9077012505 + ], + "geometry": [ + { "lat": 40.8248415, "lon": -73.9368478 }, + { "lat": 40.8247986, "lon": -73.9368790 }, + { "lat": 40.8242769, "lon": -73.9372588 }, + { "lat": 40.8242206, "lon": -73.9373000 }, + { "lat": 40.8241700, "lon": -73.9373369 }, + { "lat": 40.8239648, "lon": -73.9374863 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 440122878, + "bounds": { + "minlat": 40.8537179, + "minlon": -73.9268061, + "maxlat": 40.8563688, + "maxlon": -73.9248625 + }, + "nodes": [ + 42442770, + 9566892701, + 9566892682, + 9566892683, + 42442773 + ], + "geometry": [ + { "lat": 40.8537179, "lon": -73.9268061 }, + { "lat": 40.8537969, "lon": -73.9267478 }, + { "lat": 40.8549367, "lon": -73.9259054 }, + { "lat": 40.8559729, "lon": -73.9251361 }, + { "lat": 40.8563688, "lon": -73.9248625 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "highway": "secondary", + "lanes": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "parking:both": "lane", + "parking:left:orientation": "diagonal", + "parking:right:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 440122879, + "bounds": { + "minlat": 40.8435820, + "minlon": -73.9342105, + "maxlat": 40.8461578, + "maxlon": -73.9323269 + }, + "nodes": [ + 42442723, + 8723021864, + 8341674803, + 8723021841, + 42423101, + 8723021839, + 8723021843, + 42436806, + 8723021845, + 8723021897, + 8722881554, + 42442728, + 8723021852, + 12081927914, + 42423116 + ], + "geometry": [ + { "lat": 40.8435820, "lon": -73.9342105 }, + { "lat": 40.8436461, "lon": -73.9341637 }, + { "lat": 40.8438925, "lon": -73.9339837 }, + { "lat": 40.8441438, "lon": -73.9337999 }, + { "lat": 40.8442481, "lon": -73.9337236 }, + { "lat": 40.8443450, "lon": -73.9336527 }, + { "lat": 40.8448569, "lon": -73.9332784 }, + { "lat": 40.8449121, "lon": -73.9332380 }, + { "lat": 40.8449603, "lon": -73.9332027 }, + { "lat": 40.8454548, "lon": -73.9328410 }, + { "lat": 40.8454762, "lon": -73.9328254 }, + { "lat": 40.8455443, "lon": -73.9327756 }, + { "lat": 40.8455868, "lon": -73.9327445 }, + { "lat": 40.8460855, "lon": -73.9323798 }, + { "lat": 40.8461578, "lon": -73.9323269 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 440122880, + "bounds": { + "minlat": 40.8477110, + "minlon": -73.9379750, + "maxlat": 40.8483863, + "maxlon": -73.9376884 + }, + "nodes": [ + 42429013, + 9550791718, + 9550791742, + 12065640522, + 12065640523, + 42429017 + ], + "geometry": [ + { "lat": 40.8477110, "lon": -73.9379750 }, + { "lat": 40.8477662, "lon": -73.9379517 }, + { "lat": 40.8483169, "lon": -73.9377257 }, + { "lat": 40.8483391, "lon": -73.9377150 }, + { "lat": 40.8483622, "lon": -73.9377025 }, + { "lat": 40.8483863, "lon": -73.9376884 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 440122881, + "bounds": { + "minlat": 40.8475489, + "minlon": -73.9380371, + "maxlat": 40.8477110, + "maxlon": -73.9379750 + }, + "nodes": [ + 42429011, + 9550791717, + 42429013 + ], + "geometry": [ + { "lat": 40.8475489, "lon": -73.9380371 }, + { "lat": 40.8476201, "lon": -73.9380112 }, + { "lat": 40.8477110, "lon": -73.9379750 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "cycleway:left": "shared_lane", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 440122882, + "bounds": { + "minlat": 40.8346452, + "minlon": -73.9443287, + "maxlat": 40.8352739, + "maxlon": -73.9438727 + }, + "nodes": [ + 561035373, + 9703359687, + 9935939375, + 561035374 + ], + "geometry": [ + { "lat": 40.8346452, "lon": -73.9443287 }, + { "lat": 40.8347184, "lon": -73.9442724 }, + { "lat": 40.8352138, "lon": -73.9439145 }, + { "lat": 40.8352739, "lon": -73.9438727 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 440122883, + "bounds": { + "minlat": 40.8347297, + "minlon": -73.9445301, + "maxlat": 40.8353625, + "maxlon": -73.9440835 + }, + "nodes": [ + 42427086, + 9935939379, + 9703359688, + 42428962 + ], + "geometry": [ + { "lat": 40.8353625, "lon": -73.9440835 }, + { "lat": 40.8352937, "lon": -73.9441278 }, + { "lat": 40.8348078, "lon": -73.9444783 }, + { "lat": 40.8347297, "lon": -73.9445301 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 440122884, + "bounds": { + "minlat": 40.8340255, + "minlon": -73.9447869, + "maxlat": 40.8346452, + "maxlon": -73.9443287 + }, + "nodes": [ + 561035372, + 9703359678, + 9703359685, + 561035373 + ], + "geometry": [ + { "lat": 40.8340255, "lon": -73.9447869 }, + { "lat": 40.8340869, "lon": -73.9447375 }, + { "lat": 40.8345938, "lon": -73.9443720 }, + { "lat": 40.8346452, "lon": -73.9443287 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "turn:lanes": "through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 440122886, + "bounds": { + "minlat": 40.8489694, + "minlon": -73.9411501, + "maxlat": 40.8490251, + "maxlon": -73.9411309 + }, + "nodes": [ + 4378236668, + 60925991 + ], + "geometry": [ + { "lat": 40.8489694, "lon": -73.9411501 }, + { "lat": 40.8490251, "lon": -73.9411309 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "name": "Cabrini Boulevard", + "name:etymology:wikidata": "Q238983", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cabrini", + "tiger:name_type": "Blvd", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5015842", + "wikipedia": "en:Cabrini Boulevard" + } +}, +{ + "type": "way", + "id": 440122887, + "bounds": { + "minlat": 40.8482164, + "minlon": -73.9414100, + "maxlat": 40.8489694, + "maxlon": -73.9411501 + }, + "nodes": [ + 42428114, + 9566938940, + 8071755696, + 4378236668 + ], + "geometry": [ + { "lat": 40.8482164, "lon": -73.9414100 }, + { "lat": 40.8482841, "lon": -73.9413866 }, + { "lat": 40.8489373, "lon": -73.9411611 }, + { "lat": 40.8489694, "lon": -73.9411501 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "Cabrini Boulevard", + "name:etymology:wikidata": "Q238983", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cabrini", + "tiger:name_type": "Blvd", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5015842", + "wikipedia": "en:Cabrini Boulevard" + } +}, +{ + "type": "way", + "id": 440122889, + "bounds": { + "minlat": 40.7102152, + "minlon": -73.9865861, + "maxlat": 40.7104945, + "maxlon": -73.9865335 + }, + "nodes": [ + 5496610252, + 11037590249, + 436764938, + 42440449 + ], + "geometry": [ + { "lat": 40.7102152, "lon": -73.9865335 }, + { "lat": 40.7104201, "lon": -73.9865725 }, + { "lat": 40.7104295, "lon": -73.9865743 }, + { "lat": 40.7104945, "lon": -73.9865861 } + ], + "tags": { + "access": "private", + "foot": "no", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440122890, + "bounds": { + "minlat": 40.8687597, + "minlon": -73.9312243, + "maxlat": 40.8688490, + "maxlon": -73.9311686 + }, + "nodes": [ + 4515465265, + 8097194250, + 4515465266 + ], + "geometry": [ + { "lat": 40.8687597, "lon": -73.9311686 }, + { "lat": 40.8688272, "lon": -73.9312014 }, + { "lat": 40.8688490, "lon": -73.9312243 } + ], + "tags": { + "bicycle": "designated", + "highway": "unclassified", + "lcn": "yes", + "name": "Dyckman Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 440122891, + "bounds": { + "minlat": 40.8661784, + "minlon": -73.9287220, + "maxlat": 40.8667430, + "maxlon": -73.9280465 + }, + "nodes": [ + 42432802, + 9561561628, + 5490791423, + 5490791421, + 9561395269, + 42432799 + ], + "geometry": [ + { "lat": 40.8667430, "lon": -73.9287220 }, + { "lat": 40.8667035, "lon": -73.9286747 }, + { "lat": 40.8666000, "lon": -73.9285509 }, + { "lat": 40.8663296, "lon": -73.9282274 }, + { "lat": 40.8662486, "lon": -73.9281331 }, + { "lat": 40.8661784, "lon": -73.9280465 } + ], + "tags": { + "alt_name": "West 200th Street", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "inline_skates": "yes", + "maxspeed": "20 mph", + "name": "Dyckman Street", + "surface": "asphalt", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 440122892, + "bounds": { + "minlat": 40.7860712, + "minlon": -73.9399322, + "maxlat": 40.7862189, + "maxlon": -73.9396745 + }, + "nodes": [ + 3552713327, + 7080329535, + 3901501658, + 7080329527, + 42430491 + ], + "geometry": [ + { "lat": 40.7862189, "lon": -73.9399322 }, + { "lat": 40.7861236, "lon": -73.9397053 }, + { "lat": 40.7861095, "lon": -73.9396840 }, + { "lat": 40.7860919, "lon": -73.9396745 }, + { "lat": 40.7860712, "lon": -73.9396756 } + ], + "tags": { + "hgv": "no", + "highway": "residential", + "lanes": "1", + "name": "East 102nd Street", + "name:ru": "Восточная 102-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 440122893, + "bounds": { + "minlat": 40.7976374, + "minlon": -73.9335312, + "maxlat": 40.7985686, + "maxlon": -73.9312818 + }, + "nodes": [ + 42443824, + 7926756703, + 7927125637, + 13703389528, + 7473604337, + 9153742606, + 42443826 + ], + "geometry": [ + { "lat": 40.7985686, "lon": -73.9335312 }, + { "lat": 40.7985219, "lon": -73.9333975 }, + { "lat": 40.7980486, "lon": -73.9322703 }, + { "lat": 40.7979415, "lon": -73.9320151 }, + { "lat": 40.7976846, "lon": -73.9314064 }, + { "lat": 40.7976573, "lon": -73.9313394 }, + { "lat": 40.7976374, "lon": -73.9312818 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 120th Street", + "name:ru": "Восточная 120-я стрит", + "name_1": "East 120 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 440122894, + "bounds": { + "minlat": 40.7768958, + "minlon": -73.9433989, + "maxlat": 40.7775510, + "maxlon": -73.9430031 + }, + "nodes": [ + 4378236625, + 10121819482, + 4378236624, + 10121819483, + 10121819484, + 4813662472, + 4378236623, + 4813662466, + 5163273899, + 42436556 + ], + "geometry": [ + { "lat": 40.7775510, "lon": -73.9430379 }, + { "lat": 40.7775376, "lon": -73.9430173 }, + { "lat": 40.7775229, "lon": -73.9430074 }, + { "lat": 40.7775031, "lon": -73.9430031 }, + { "lat": 40.7774807, "lon": -73.9430038 }, + { "lat": 40.7774566, "lon": -73.9430106 }, + { "lat": 40.7774252, "lon": -73.9430289 }, + { "lat": 40.7769992, "lon": -73.9433310 }, + { "lat": 40.7769550, "lon": -73.9433611 }, + { "lat": 40.7768958, "lon": -73.9433989 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East End Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4122377", + "wikipedia": "en:East End Avenue" + } +}, +{ + "type": "way", + "id": 440122896, + "bounds": { + "minlat": 40.8499993, + "minlon": -73.9386521, + "maxlat": 40.8509090, + "maxlon": -73.9382840 + }, + "nodes": [ + 42427185, + 9563821105, + 8752238549, + 9563821079, + 42427190 + ], + "geometry": [ + { "lat": 40.8499993, "lon": -73.9386521 }, + { "lat": 40.8500578, "lon": -73.9386270 }, + { "lat": 40.8502304, "lon": -73.9385576 }, + { "lat": 40.8508331, "lon": -73.9383147 }, + { "lat": 40.8509090, "lon": -73.9382840 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 440122898, + "bounds": { + "minlat": 40.8432059, + "minlon": -73.9429517, + "maxlat": 40.8446105, + "maxlon": -73.9424729 + }, + "nodes": [ + 42435002, + 11652912831, + 42449801, + 9908572559, + 9550769897, + 42447419 + ], + "geometry": [ + { "lat": 40.8446105, "lon": -73.9424729 }, + { "lat": 40.8442931, "lon": -73.9425829 }, + { "lat": 40.8439081, "lon": -73.9427146 }, + { "lat": 40.8433026, "lon": -73.9429212 }, + { "lat": 40.8432591, "lon": -73.9429360 }, + { "lat": 40.8432059, "lon": -73.9429517 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Haven Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 440122904, + "bounds": { + "minlat": 40.8709736, + "minlon": -73.9192577, + "maxlat": 40.8714790, + "maxlon": -73.9185640 + }, + "nodes": [ + 42429946, + 9561209104, + 42454538 + ], + "geometry": [ + { "lat": 40.8709736, "lon": -73.9192577 }, + { "lat": 40.8714402, "lon": -73.9186173 }, + { "lat": 40.8714790, "lon": -73.9185640 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "foot": "yes", + "highway": "tertiary", + "inline_skates": "yes", + "maxspeed": "20 mph", + "name": "Seaman Avenue", + "segregated": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Seaman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 440122907, + "bounds": { + "minlat": 40.8038654, + "minlon": -73.9521121, + "maxlat": 40.8039345, + "maxlon": -73.9519490 + }, + "nodes": [ + 2141026498, + 9153603253, + 42439849 + ], + "geometry": [ + { "lat": 40.8038654, "lon": -73.9519490 }, + { "lat": 40.8038977, "lon": -73.9520252 }, + { "lat": 40.8039345, "lon": -73.9521121 } + ], + "tags": { + "highway": "secondary", + "name": "West 117th Street", + "name:ru": "Западная 117-я стрит", + "oneway": "yes", + "route": "bicycle" + } +}, +{ + "type": "way", + "id": 440122908, + "bounds": { + "minlat": 40.8044957, + "minlon": -73.9516496, + "maxlat": 40.8045644, + "maxlon": -73.9514846 + }, + "nodes": [ + 42439851, + 2141026492 + ], + "geometry": [ + { "lat": 40.8045644, "lon": -73.9516496 }, + { "lat": 40.8044957, "lon": -73.9514846 } + ], + "tags": { + "highway": "residential", + "name": "West 118th Street", + "name:ru": "Западная 118-я стрит", + "name_1": "West 118 Street", + "network": "lcn", + "oneway": "yes", + "route": "bicycle" + } +}, +{ + "type": "way", + "id": 440122909, + "bounds": { + "minlat": 40.8278230, + "minlon": -73.9425031, + "maxlat": 40.8280452, + "maxlon": -73.9419970 + }, + "nodes": [ + 42427883, + 11218752300, + 11221649584, + 4205440429 + ], + "geometry": [ + { "lat": 40.8278230, "lon": -73.9419970 }, + { "lat": 40.8278781, "lon": -73.9421226 }, + { "lat": 40.8279900, "lon": -73.9423774 }, + { "lat": 40.8280452, "lon": -73.9425031 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "name": "West 151st Street", + "name_1": "West 151 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "151st", + "tiger:name_base_1": "151", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 440122910, + "bounds": { + "minlat": 40.8347297, + "minlon": -73.9453463, + "maxlat": 40.8350565, + "maxlon": -73.9445301 + }, + "nodes": [ + 42428962, + 9703359683, + 13460886889, + 9935939397 + ], + "geometry": [ + { "lat": 40.8347297, "lon": -73.9445301 }, + { "lat": 40.8347694, "lon": -73.9446290 }, + { "lat": 40.8350306, "lon": -73.9452816 }, + { "lat": 40.8350565, "lon": -73.9453463 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 158th Street", + "name_1": "West 158 Street", + "oneway": "no", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "158th", + "tiger:name_base_1": "158", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 440122912, + "bounds": { + "minlat": 40.7612604, + "minlon": -73.9578486, + "maxlat": 40.7617963, + "maxlon": -73.9574532 + }, + "nodes": [ + 4378236618, + 4918486929, + 42427972 + ], + "geometry": [ + { "lat": 40.7612604, "lon": -73.9578486 }, + { "lat": 40.7617402, "lon": -73.9574946 }, + { "lat": 40.7617963, "lon": -73.9574532 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "parking:both": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left;through|through", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 440268556, + "bounds": { + "minlat": 40.7545608, + "minlon": -74.0069754, + "maxlat": 40.7546144, + "maxlon": -74.0068630 + }, + "nodes": [ + 246650546, + 246650510 + ], + "geometry": [ + { "lat": 40.7546144, "lon": -74.0069754 }, + { "lat": 40.7545608, "lon": -74.0068630 } + ], + "tags": { + "access": "customers", + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "service", + "name_1": "West 30 Street", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 440268560, + "bounds": { + "minlat": 40.7294403, + "minlon": -74.0111364, + "maxlat": 40.7297318, + "maxlon": -74.0109800 + }, + "nodes": [ + 4379966340, + 4379966343, + 4379966345, + 12162502098, + 4379966346, + 12162502099, + 4379966347, + 12162502100, + 4379966349, + 12162542901, + 4379966351, + 12162542902, + 12162542904, + 4379966352, + 12162542905, + 4379966348, + 12162542903, + 4379966340 + ], + "geometry": [ + { "lat": 40.7294403, "lon": -74.0111364 }, + { "lat": 40.7295052, "lon": -74.0110530 }, + { "lat": 40.7295366, "lon": -74.0110205 }, + { "lat": 40.7295580, "lon": -74.0110041 }, + { "lat": 40.7295756, "lon": -74.0109939 }, + { "lat": 40.7295963, "lon": -74.0109872 }, + { "lat": 40.7296771, "lon": -74.0109800 }, + { "lat": 40.7296916, "lon": -74.0109841 }, + { "lat": 40.7297041, "lon": -74.0109922 }, + { "lat": 40.7297141, "lon": -74.0110040 }, + { "lat": 40.7297224, "lon": -74.0110216 }, + { "lat": 40.7297278, "lon": -74.0110381 }, + { "lat": 40.7297318, "lon": -74.0110586 }, + { "lat": 40.7297317, "lon": -74.0110796 }, + { "lat": 40.7297278, "lon": -74.0111001 }, + { "lat": 40.7297224, "lon": -74.0111171 }, + { "lat": 40.7295490, "lon": -74.0111362 }, + { "lat": 40.7294403, "lon": -74.0111364 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440268561, + "bounds": { + "minlat": 40.8738932, + "minlon": -73.9294820, + "maxlat": 40.8739490, + "maxlon": -73.9294487 + }, + "nodes": [ + 374449929, + 374449937 + ], + "geometry": [ + { "lat": 40.8738932, "lon": -73.9294820 }, + { "lat": 40.8739490, "lon": -73.9294487 } + ], + "tags": { + "highway": "track", + "surface": "paved", + "tracktype": "grade1" + } +}, +{ + "type": "way", + "id": 440268568, + "bounds": { + "minlat": 40.8737755, + "minlon": -73.9296758, + "maxlat": 40.8744599, + "maxlon": -73.9294031 + }, + "nodes": [ + 374449305, + 374449314, + 374449322, + 2560788290, + 374449338, + 374449346, + 374449351 + ], + "geometry": [ + { "lat": 40.8737755, "lon": -73.9295870 }, + { "lat": 40.8738354, "lon": -73.9296104 }, + { "lat": 40.8738938, "lon": -73.9296447 }, + { "lat": 40.8739398, "lon": -73.9296730 }, + { "lat": 40.8739715, "lon": -73.9296758 }, + { "lat": 40.8740583, "lon": -73.9296300 }, + { "lat": 40.8744599, "lon": -73.9294031 } + ], + "tags": { + "bicycle": "yes", + "highway": "track", + "surface": "paved", + "tracktype": "grade1" + } +}, +{ + "type": "way", + "id": 440542775, + "bounds": { + "minlat": 40.7032048, + "minlon": -74.0079952, + "maxlat": 40.7033264, + "maxlon": -74.0077746 + }, + "nodes": [ + 42421951, + 10457330750, + 9181607982, + 42421965 + ], + "geometry": [ + { "lat": 40.7033264, "lon": -74.0077746 }, + { "lat": 40.7033118, "lon": -74.0078120 }, + { "lat": 40.7032940, "lon": -74.0078494 }, + { "lat": 40.7032048, "lon": -74.0079952 } + ], + "tags": { + "cycleway:left": "separate", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "turn:lanes": "through", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 440633370, + "bounds": { + "minlat": 40.7002484, + "minlon": -73.9887051, + "maxlat": 40.7007079, + "maxlon": -73.9886844 + }, + "nodes": [ + 3413665530, + 6324352261, + 11678137814, + 4803978162, + 7647648806, + 42492409 + ], + "geometry": [ + { "lat": 40.7002484, "lon": -73.9886844 }, + { "lat": 40.7002652, "lon": -73.9886997 }, + { "lat": 40.7002864, "lon": -73.9887051 }, + { "lat": 40.7003118, "lon": -73.9887051 }, + { "lat": 40.7006408, "lon": -73.9886922 }, + { "lat": 40.7007079, "lon": -73.9886901 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "unclassified", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Adams Street", + "name:etymology:wikidata": "Q11806", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Adams", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 440633409, + "bounds": { + "minlat": 40.7011734, + "minlon": -73.9867540, + "maxlat": 40.7015288, + "maxlon": -73.9867421 + }, + "nodes": [ + 4384069443, + 11708944189, + 9795347329, + 42497721 + ], + "geometry": [ + { "lat": 40.7011734, "lon": -73.9867540 }, + { "lat": 40.7014258, "lon": -73.9867421 }, + { "lat": 40.7014775, "lon": -73.9867432 }, + { "lat": 40.7015288, "lon": -73.9867445 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Jay", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 440633414, + "bounds": { + "minlat": 40.7002118, + "minlon": -73.9866358, + "maxlat": 40.7006328, + "maxlon": -73.9863910 + }, + "nodes": [ + 42497724, + 10722387800, + 7909208015, + 494509169 + ], + "geometry": [ + { "lat": 40.7006328, "lon": -73.9866358 }, + { "lat": 40.7005727, "lon": -73.9866006 }, + { "lat": 40.7002807, "lon": -73.9864340 }, + { "lat": 40.7002118, "lon": -73.9863910 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Jay", + "tiger:name_type": "St", + "turn:lanes": "left|left" + } +}, +{ + "type": "way", + "id": 440633419, + "bounds": { + "minlat": 40.7044194, + "minlon": -73.9875126, + "maxlat": 40.7044557, + "maxlon": -73.9865676 + }, + "nodes": [ + 250451189, + 6575780371, + 42469180 + ], + "geometry": [ + { "lat": 40.7044194, "lon": -73.9865676 }, + { "lat": 40.7044250, "lon": -73.9866502 }, + { "lat": 40.7044557, "lon": -73.9875126 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "lcn": "yes", + "lit": "yes", + "maxspeed": "20 mph", + "name": "John Street", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "John", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 440633423, + "bounds": { + "minlat": 40.7043450, + "minlon": -73.9865676, + "maxlat": 40.7044194, + "maxlon": -73.9845830 + }, + "nodes": [ + 42479465, + 9928127501, + 250451189 + ], + "geometry": [ + { "lat": 40.7043450, "lon": -73.9845830 }, + { "lat": 40.7044130, "lon": -73.9864817 }, + { "lat": 40.7044194, "lon": -73.9865676 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "John Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "John", + "tiger:name_type": "St", + "tiger:reviewed": "aerial" + } +}, +{ + "type": "way", + "id": 440633432, + "bounds": { + "minlat": 40.7020151, + "minlon": -73.9932989, + "maxlat": 40.7024148, + "maxlon": -73.9926239 + }, + "nodes": [ + 3174844145, + 5180979264, + 11674209536, + 11158142751, + 10245966655, + 598054754 + ], + "geometry": [ + { "lat": 40.7024148, "lon": -73.9932989 }, + { "lat": 40.7023601, "lon": -73.9931965 }, + { "lat": 40.7020950, "lon": -73.9927552 }, + { "lat": 40.7020783, "lon": -73.9927274 }, + { "lat": 40.7020617, "lon": -73.9927000 }, + { "lat": 40.7020151, "lon": -73.9926239 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440633435, + "bounds": { + "minlat": 40.7024148, + "minlon": -73.9938376, + "maxlat": 40.7026193, + "maxlon": -73.9932989 + }, + "nodes": [ + 3174844149, + 3174844142, + 11674209493, + 11674209495, + 5180979263, + 11674209494, + 3174844145 + ], + "geometry": [ + { "lat": 40.7026193, "lon": -73.9938376 }, + { "lat": 40.7025647, "lon": -73.9936829 }, + { "lat": 40.7025121, "lon": -73.9935394 }, + { "lat": 40.7024725, "lon": -73.9934356 }, + { "lat": 40.7024609, "lon": -73.9934051 }, + { "lat": 40.7024514, "lon": -73.9933823 }, + { "lat": 40.7024148, "lon": -73.9932989 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440633442, + "bounds": { + "minlat": 40.7006930, + "minlon": -73.9897318, + "maxlat": 40.7007409, + "maxlon": -73.9882204 + }, + "nodes": [ + 42519812, + 9368823952, + 10722370801, + 42492409, + 10722370803, + 10172645857 + ], + "geometry": [ + { "lat": 40.7007409, "lon": -73.9897318 }, + { "lat": 40.7007379, "lon": -73.9896385 }, + { "lat": 40.7007106, "lon": -73.9887774 }, + { "lat": 40.7007079, "lon": -73.9886901 }, + { "lat": 40.7007052, "lon": -73.9886083 }, + { "lat": 40.7006930, "lon": -73.9882204 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Prospect", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 440681436, + "bounds": { + "minlat": 40.7277504, + "minlon": -73.9761698, + "maxlat": 40.7280258, + "maxlon": -73.9759721 + }, + "nodes": [ + 42436957, + 8309479569, + 5147744247 + ], + "geometry": [ + { "lat": 40.7277504, "lon": -73.9761698 }, + { "lat": 40.7278078, "lon": -73.9761286 }, + { "lat": 40.7280258, "lon": -73.9759721 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 440681437, + "bounds": { + "minlat": 40.7207645, + "minlon": -73.9812727, + "maxlat": 40.7210233, + "maxlon": -73.9810829 + }, + "nodes": [ + 1919595922, + 3783144654, + 4219836765, + 42453610 + ], + "geometry": [ + { "lat": 40.7207645, "lon": -73.9812727 }, + { "lat": 40.7208509, "lon": -73.9812086 }, + { "lat": 40.7209686, "lon": -73.9811229 }, + { "lat": 40.7210233, "lon": -73.9810829 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 440696469, + "bounds": { + "minlat": 40.7070033, + "minlon": -73.9672797, + "maxlat": 40.7074502, + "maxlon": -73.9648800 + }, + "nodes": [ + 42477968, + 6248573343, + 8348154025, + 42477970, + 42477972 + ], + "geometry": [ + { "lat": 40.7070033, "lon": -73.9672797 }, + { "lat": 40.7070218, "lon": -73.9671797 }, + { "lat": 40.7071488, "lon": -73.9664937 }, + { "lat": 40.7072520, "lon": -73.9659362 }, + { "lat": 40.7074502, "lon": -73.9648800 } + ], + "tags": { + "bicycle": "designated", + "highway": "tertiary", + "name": "Division Avenue", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Division", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 440696473, + "bounds": { + "minlat": 40.7114560, + "minlon": -73.9198600, + "maxlat": 40.7124530, + "maxlon": -73.9185347 + }, + "nodes": [ + 42827564, + 9744131333, + 551614627, + 1275778390, + 42866199, + 10287737760, + 9744131370, + 42809921 + ], + "geometry": [ + { "lat": 40.7114560, "lon": -73.9198600 }, + { "lat": 40.7115254, "lon": -73.9198131 }, + { "lat": 40.7117436, "lon": -73.9196223 }, + { "lat": 40.7118347, "lon": -73.9195138 }, + { "lat": 40.7120094, "lon": -73.9192648 }, + { "lat": 40.7123922, "lon": -73.9186380 }, + { "lat": 40.7124143, "lon": -73.9186023 }, + { "lat": 40.7124530, "lon": -73.9185347 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "primary", + "lcn": "yes", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 440696474, + "bounds": { + "minlat": 40.7124530, + "minlon": -73.9185347, + "maxlat": 40.7132978, + "maxlon": -73.9162122 + }, + "nodes": [ + 42809921, + 9744131373, + 1275778400, + 1275778458, + 551614632, + 1275778460, + 9814611721, + 13018287432, + 4202978775 + ], + "geometry": [ + { "lat": 40.7124530, "lon": -73.9185347 }, + { "lat": 40.7124963, "lon": -73.9184568 }, + { "lat": 40.7125267, "lon": -73.9184062 }, + { "lat": 40.7126857, "lon": -73.9181215 }, + { "lat": 40.7127569, "lon": -73.9179881 }, + { "lat": 40.7128083, "lon": -73.9178309 }, + { "lat": 40.7132337, "lon": -73.9164325 }, + { "lat": 40.7132756, "lon": -73.9162884 }, + { "lat": 40.7132978, "lon": -73.9162122 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 440861385, + "bounds": { + "minlat": 40.7482677, + "minlon": -73.9522480, + "maxlat": 40.7489444, + "maxlon": -73.9516444 + }, + "nodes": [ + 42826857, + 9982771927, + 4675915069, + 8894674484, + 5034761646, + 42825539 + ], + "geometry": [ + { "lat": 40.7482677, "lon": -73.9522480 }, + { "lat": 40.7483688, "lon": -73.9521421 }, + { "lat": 40.7485421, "lon": -73.9519906 }, + { "lat": 40.7488209, "lon": -73.9517494 }, + { "lat": 40.7488546, "lon": -73.9517209 }, + { "lat": 40.7489444, "lon": -73.9516444 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "10th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440861398, + "bounds": { + "minlat": 40.7739765, + "minlon": -73.9318213, + "maxlat": 40.7742208, + "maxlon": -73.9310519 + }, + "nodes": [ + 42811435, + 6452930145, + 5863686049, + 5487886280, + 5487886272, + 42811439 + ], + "geometry": [ + { "lat": 40.7742208, "lon": -73.9318213 }, + { "lat": 40.7742050, "lon": -73.9317579 }, + { "lat": 40.7741995, "lon": -73.9317361 }, + { "lat": 40.7741480, "lon": -73.9315780 }, + { "lat": 40.7739957, "lon": -73.9311108 }, + { "lat": 40.7739765, "lon": -73.9310519 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "lcn": "yes", + "name": "27th Avenue" + } +}, +{ + "type": "way", + "id": 440861399, + "bounds": { + "minlat": 40.7465536, + "minlon": -73.9294298, + "maxlat": 40.7470500, + "maxlon": -73.9293295 + }, + "nodes": [ + 10069673249, + 7095826102, + 7095808408, + 10069673245, + 10069673250, + 7667163645 + ], + "geometry": [ + { "lat": 40.7465536, "lon": -73.9294298 }, + { "lat": 40.7467647, "lon": -73.9293871 }, + { "lat": 40.7468190, "lon": -73.9293762 }, + { "lat": 40.7469095, "lon": -73.9293579 }, + { "lat": 40.7469889, "lon": -73.9293419 }, + { "lat": 40.7470500, "lon": -73.9293295 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "35th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440861401, + "bounds": { + "minlat": 40.7447072, + "minlon": -73.9164852, + "maxlat": 40.7463540, + "maxlon": -73.9161557 + }, + "nodes": [ + 42859957, + 10074123172, + 10074123194, + 10074123193, + 42817805 + ], + "geometry": [ + { "lat": 40.7463540, "lon": -73.9161557 }, + { "lat": 40.7462781, "lon": -73.9161710 }, + { "lat": 40.7448171, "lon": -73.9164632 }, + { "lat": 40.7447755, "lon": -73.9164716 }, + { "lat": 40.7447072, "lon": -73.9164852 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxheight": "11'5\"", + "maxspeed": "20 mph", + "name": "48th Street", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440861402, + "bounds": { + "minlat": 40.7419830, + "minlon": -73.9469035, + "maxlat": 40.7420838, + "maxlon": -73.9463933 + }, + "nodes": [ + 277046476, + 8549589541, + 42832467 + ], + "geometry": [ + { "lat": 40.7420838, "lon": -73.9469035 }, + { "lat": 40.7420285, "lon": -73.9466099 }, + { "lat": 40.7419830, "lon": -73.9463933 } + ], + "tags": { + "cycleway": "lane", + "highway": "unclassified", + "lanes": "2", + "name": "49th Avenue", + "name_1": "Hunters Point Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440861404, + "bounds": { + "minlat": 40.7430431, + "minlon": -73.9158742, + "maxlat": 40.7431379, + "maxlon": -73.9158551 + }, + "nodes": [ + 4503278357, + 9986789936, + 42807843 + ], + "geometry": [ + { "lat": 40.7430431, "lon": -73.9158742 }, + { "lat": 40.7430593, "lon": -73.9158709 }, + { "lat": 40.7431379, "lon": -73.9158551 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "49th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440861405, + "bounds": { + "minlat": 40.7437717, + "minlon": -73.9138353, + "maxlat": 40.7443853, + "maxlon": -73.9137209 + }, + "nodes": [ + 42817817, + 5538983339, + 6349964621, + 10762233963, + 42819599 + ], + "geometry": [ + { "lat": 40.7443853, "lon": -73.9137209 }, + { "lat": 40.7442911, "lon": -73.9137401 }, + { "lat": 40.7442068, "lon": -73.9137556 }, + { "lat": 40.7438564, "lon": -73.9138198 }, + { "lat": 40.7437717, "lon": -73.9138353 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "51st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440861406, + "bounds": { + "minlat": 40.7428270, + "minlon": -73.9140317, + "maxlat": 40.7437717, + "maxlon": -73.9138353 + }, + "nodes": [ + 276299307, + 9950268694, + 10774439466, + 9950327781, + 42819599 + ], + "geometry": [ + { "lat": 40.7428270, "lon": -73.9140317 }, + { "lat": 40.7428928, "lon": -73.9140173 }, + { "lat": 40.7432092, "lon": -73.9139511 }, + { "lat": 40.7436808, "lon": -73.9138523 }, + { "lat": 40.7437717, "lon": -73.9138353 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "51st Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440861407, + "bounds": { + "minlat": 40.7443853, + "minlon": -73.9137209, + "maxlat": 40.7460238, + "maxlon": -73.9133802 + }, + "nodes": [ + 42817817, + 10074123186, + 42796343, + 10774439463, + 10956028583, + 8089088639, + 10774439412, + 10074123200, + 10074123199, + 42819589 + ], + "geometry": [ + { "lat": 40.7443853, "lon": -73.9137209 }, + { "lat": 40.7444576, "lon": -73.9137074 }, + { "lat": 40.7448386, "lon": -73.9136272 }, + { "lat": 40.7450335, "lon": -73.9135830 }, + { "lat": 40.7451627, "lon": -73.9135537 }, + { "lat": 40.7452269, "lon": -73.9135391 }, + { "lat": 40.7456390, "lon": -73.9134577 }, + { "lat": 40.7459171, "lon": -73.9134027 }, + { "lat": 40.7459541, "lon": -73.9133954 }, + { "lat": 40.7460238, "lon": -73.9133802 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "51st Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440861416, + "bounds": { + "minlat": 40.7365507, + "minlon": -73.9322348, + "maxlat": 40.7368368, + "maxlon": -73.9315914 + }, + "nodes": [ + 9981925177, + 9192032642, + 42801787 + ], + "geometry": [ + { "lat": 40.7365507, "lon": -73.9322348 }, + { "lat": 40.7367831, "lon": -73.9317122 }, + { "lat": 40.7368368, "lon": -73.9315914 } + ], + "tags": { + "cycleway": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "through|right", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 440861427, + "bounds": { + "minlat": 40.7547004, + "minlon": -73.9489518, + "maxlat": 40.7550500, + "maxlon": -73.9486512 + }, + "nodes": [ + 13080929985, + 13080929984, + 13080929983, + 13080929982, + 6859408311 + ], + "geometry": [ + { "lat": 40.7547004, "lon": -73.9489518 }, + { "lat": 40.7547603, "lon": -73.9488583 }, + { "lat": 40.7548771, "lon": -73.9487567 }, + { "lat": 40.7549823, "lon": -73.9486662 }, + { "lat": 40.7550500, "lon": -73.9486512 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "track", + "cycleway:right:oneway": "-1", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Vernon Boulevard", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440887346, + "bounds": { + "minlat": 40.7992580, + "minlon": -73.9131540, + "maxlat": 40.7999189, + "maxlon": -73.9120600 + }, + "nodes": [ + 42772993, + 6288655642, + 8929677627, + 42772998 + ], + "geometry": [ + { "lat": 40.7999189, "lon": -73.9131540 }, + { "lat": 40.7998287, "lon": -73.9130076 }, + { "lat": 40.7993826, "lon": -73.9122715 }, + { "lat": 40.7992580, "lon": -73.9120600 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "unclassified", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "East 132nd Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "132nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 440887348, + "bounds": { + "minlat": 40.8279143, + "minlon": -73.9177049, + "maxlat": 40.8298559, + "maxlon": -73.9121734 + }, + "nodes": [ + 11118481024, + 42755570, + 12038440330, + 42735836, + 12038440140, + 42756645, + 12038440239, + 42743934, + 12038440237, + 5482223760, + 5482222789, + 12038440289, + 42782478, + 12038440287, + 5482222786, + 12038478804, + 42746977, + 12038478806, + 12038440073, + 2827547781 + ], + "geometry": [ + { "lat": 40.8298559, "lon": -73.9177049 }, + { "lat": 40.8296661, "lon": -73.9172755 }, + { "lat": 40.8293369, "lon": -73.9165139 }, + { "lat": 40.8292923, "lon": -73.9164107 }, + { "lat": 40.8292562, "lon": -73.9163034 }, + { "lat": 40.8290063, "lon": -73.9155611 }, + { "lat": 40.8287634, "lon": -73.9148007 }, + { "lat": 40.8287381, "lon": -73.9147216 }, + { "lat": 40.8287152, "lon": -73.9146452 }, + { "lat": 40.8286380, "lon": -73.9143875 }, + { "lat": 40.8285541, "lon": -73.9141334 }, + { "lat": 40.8284936, "lon": -73.9139580 }, + { "lat": 40.8284651, "lon": -73.9138754 }, + { "lat": 40.8284381, "lon": -73.9137896 }, + { "lat": 40.8283064, "lon": -73.9133695 }, + { "lat": 40.8282013, "lon": -73.9130423 }, + { "lat": 40.8281720, "lon": -73.9129513 }, + { "lat": 40.8281495, "lon": -73.9128795 }, + { "lat": 40.8279483, "lon": -73.9122370 }, + { "lat": 40.8279143, "lon": -73.9121734 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "East 165th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 440887350, + "bounds": { + "minlat": 40.8319730, + "minlon": -73.9253720, + "maxlat": 40.8326303, + "maxlon": -73.9234880 + }, + "nodes": [ + 5116063237, + 10133344482, + 2822090449, + 10133344493, + 42771315 + ], + "geometry": [ + { "lat": 40.8326303, "lon": -73.9253720 }, + { "lat": 40.8325769, "lon": -73.9252277 }, + { "lat": 40.8323245, "lon": -73.9244980 }, + { "lat": 40.8320170, "lon": -73.9236144 }, + { "lat": 40.8319730, "lon": -73.9234880 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "name": "East 165th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 440887352, + "bounds": { + "minlat": 40.8336957, + "minlon": -73.9159072, + "maxlat": 40.8337594, + "maxlon": -73.9153487 + }, + "nodes": [ + 2408379375, + 13003568312, + 11793812219, + 2408379348 + ], + "geometry": [ + { "lat": 40.8337594, "lon": -73.9159072 }, + { "lat": 40.8337410, "lon": -73.9158293 }, + { "lat": 40.8336957, "lon": -73.9155247 }, + { "lat": 40.8337033, "lon": -73.9153487 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 440887356, + "bounds": { + "minlat": 40.8269250, + "minlon": -73.9224902, + "maxlat": 40.8276798, + "maxlon": -73.9220947 + }, + "nodes": [ + 2408446154, + 5762096231, + 12162740309, + 12162740311, + 12162740315, + 10126985423, + 2408446187 + ], + "geometry": [ + { "lat": 40.8269250, "lon": -73.9224902 }, + { "lat": 40.8269955, "lon": -73.9224505 }, + { "lat": 40.8273297, "lon": -73.9222632 }, + { "lat": 40.8274402, "lon": -73.9222062 }, + { "lat": 40.8275879, "lon": -73.9221350 }, + { "lat": 40.8276180, "lon": -73.9221227 }, + { "lat": 40.8276798, "lon": -73.9220947 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 440887362, + "bounds": { + "minlat": 40.8290282, + "minlon": -73.9290332, + "maxlat": 40.8291127, + "maxlon": -73.9288861 + }, + "nodes": [ + 595776466, + 9155906290 + ], + "geometry": [ + { "lat": 40.8291127, "lon": -73.9288861 }, + { "lat": 40.8290282, "lon": -73.9290332 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Macombs Dam Bridge", + "name:etymology:wikidata": "Q6724819", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs Dam", + "tiger:name_type": "Brg", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 440887364, + "bounds": { + "minlat": 40.8035651, + "minlon": -73.9197909, + "maxlat": 40.8036336, + "maxlon": -73.9197388 + }, + "nodes": [ + 42753246, + 10702583014 + ], + "geometry": [ + { "lat": 40.8035651, "lon": -73.9197909 }, + { "lat": 40.8036336, "lon": -73.9197388 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Ann's Avenue", + "name:etymology:wikidata": "Q7586962", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "St Ann's", + "tiger:name_type": "Ave", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 440887367, + "bounds": { + "minlat": 40.8377210, + "minlon": -73.9276190, + "maxlat": 40.8386250, + "maxlon": -73.9270920 + }, + "nodes": [ + 42736651, + 13809338856, + 13809338865, + 42769860 + ], + "geometry": [ + { "lat": 40.8377210, "lon": -73.9276190 }, + { "lat": 40.8377981, "lon": -73.9275740 }, + { "lat": 40.8385605, "lon": -73.9271296 }, + { "lat": 40.8386250, "lon": -73.9270920 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "highway": "residential", + "name": "University Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Dr Martin Luther King Jr", + "tiger:name_base_1": "University", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 440887368, + "bounds": { + "minlat": 40.8420990, + "minlon": -73.9262310, + "maxlat": 40.8424922, + "maxlon": -73.9258921 + }, + "nodes": [ + 42769868, + 13564503721, + 3809984320 + ], + "geometry": [ + { "lat": 40.8420990, "lon": -73.9262310 }, + { "lat": 40.8421648, "lon": -73.9261743 }, + { "lat": 40.8424922, "lon": -73.9258921 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "University Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Dr Martin Luther King Jr", + "tiger:name_base_1": "University", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 440887369, + "bounds": { + "minlat": 40.8440769, + "minlon": -73.9236268, + "maxlat": 40.8442344, + "maxlon": -73.9230676 + }, + "nodes": [ + 42734314, + 12045204147, + 9910779429, + 12045204148, + 60924189, + 9910779431, + 12045204146, + 9910779432, + 9910779430, + 12046770886, + 60924188 + ], + "geometry": [ + { "lat": 40.8442180, "lon": -73.9236268 }, + { "lat": 40.8442261, "lon": -73.9235834 }, + { "lat": 40.8442319, "lon": -73.9235405 }, + { "lat": 40.8442344, "lon": -73.9235149 }, + { "lat": 40.8442342, "lon": -73.9234904 }, + { "lat": 40.8442308, "lon": -73.9234600 }, + { "lat": 40.8442239, "lon": -73.9234297 }, + { "lat": 40.8442135, "lon": -73.9233978 }, + { "lat": 40.8442003, "lon": -73.9233620 }, + { "lat": 40.8441155, "lon": -73.9231598 }, + { "lat": 40.8440769, "lon": -73.9230676 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway": "lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "University Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Dr Martin Luther King Jr", + "tiger:name_base_1": "University", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 440887370, + "bounds": { + "minlat": 40.8028065, + "minlon": -73.9084888, + "maxlat": 40.8040521, + "maxlon": -73.9072369 + }, + "nodes": [ + 42775297, + 9910669576, + 13039015382, + 42765793, + 13039015379, + 13040880825, + 42775302 + ], + "geometry": [ + { "lat": 40.8028065, "lon": -73.9084888 }, + { "lat": 40.8029119, "lon": -73.9083814 }, + { "lat": 40.8034300, "lon": -73.9078615 }, + { "lat": 40.8034868, "lon": -73.9078044 }, + { "lat": 40.8035280, "lon": -73.9077630 }, + { "lat": 40.8039920, "lon": -73.9072972 }, + { "lat": 40.8040521, "lon": -73.9072369 } + ], + "tags": { + "highway": "unclassified", + "name": "Walnut Avenue", + "name_1": "Rose Feiss Boulevard", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walnut", + "tiger:name_base_1": "Rose Feiss", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 440887371, + "bounds": { + "minlat": 40.8303442, + "minlon": -73.9401371, + "maxlat": 40.8303722, + "maxlon": -73.9400704 + }, + "nodes": [ + 764738949, + 4515465264 + ], + "geometry": [ + { "lat": 40.8303442, "lon": -73.9400704 }, + { "lat": 40.8303722, "lon": -73.9401371 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "turn:lanes:forward": "through|through;right", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 440887372, + "bounds": { + "minlat": 40.8387710, + "minlon": -73.9285158, + "maxlat": 40.8395479, + "maxlon": -73.9281390 + }, + "nodes": [ + 42736655, + 13533533182 + ], + "geometry": [ + { "lat": 40.8387710, "lon": -73.9281390 }, + { "lat": 40.8395479, "lon": -73.9285158 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "West 167th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 440887373, + "bounds": { + "minlat": 40.8386250, + "minlon": -73.9281390, + "maxlat": 40.8387710, + "maxlon": -73.9270920 + }, + "nodes": [ + 42769860, + 13809338873, + 13564503782, + 42736655 + ], + "geometry": [ + { "lat": 40.8386250, "lon": -73.9270920 }, + { "lat": 40.8386393, "lon": -73.9271943 }, + { "lat": 40.8387584, "lon": -73.9280483 }, + { "lat": 40.8387710, "lon": -73.9281390 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lcn": "yes", + "name": "West 168th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 440887374, + "bounds": { + "minlat": 40.8403185, + "minlon": -73.9223870, + "maxlat": 40.8404260, + "maxlon": -73.9215909 + }, + "nodes": [ + 2912071067, + 12163756890, + 2327276559, + 12163756883, + 2912071064, + 2327276588, + 13249072929, + 42735000 + ], + "geometry": [ + { "lat": 40.8403185, "lon": -73.9215909 }, + { "lat": 40.8403247, "lon": -73.9216733 }, + { "lat": 40.8403295, "lon": -73.9217448 }, + { "lat": 40.8403311, "lon": -73.9218082 }, + { "lat": 40.8403401, "lon": -73.9220902 }, + { "lat": 40.8403513, "lon": -73.9222635 }, + { "lat": 40.8403759, "lon": -73.9223032 }, + { "lat": 40.8404260, "lon": -73.9223870 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West 170th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 440887377, + "bounds": { + "minlat": 40.8153616, + "minlon": -73.9181500, + "maxlat": 40.8158883, + "maxlon": -73.9177531 + }, + "nodes": [ + 11217140011, + 6415815491, + 6415815485, + 6415814866, + 6415815567 + ], + "geometry": [ + { "lat": 40.8153616, "lon": -73.9181500 }, + { "lat": 40.8153997, "lon": -73.9181213 }, + { "lat": 40.8154398, "lon": -73.9180911 }, + { "lat": 40.8157524, "lon": -73.9178555 }, + { "lat": 40.8158883, "lon": -73.9177531 } + ], + "tags": { + "highway": "pedestrian", + "name": "Willis Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 440887381, + "bounds": { + "minlat": 40.7988273, + "minlon": -73.9212178, + "maxlat": 40.7989163, + "maxlon": -73.9211435 + }, + "nodes": [ + 1242838963, + 2054405689 + ], + "geometry": [ + { "lat": 40.7989163, "lon": -73.9211435 }, + { "lat": 40.7988273, "lon": -73.9212178 } + ], + "tags": { + "bicycle": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 440947097, + "bounds": { + "minlat": 40.7728645, + "minlon": -73.9823112, + "maxlat": 40.7730852, + "maxlon": -73.9823021 + }, + "nodes": [ + 9915469771, + 5117963649, + 3262539793 + ], + "geometry": [ + { "lat": 40.7730852, "lon": -73.9823112 }, + { "lat": 40.7729906, "lon": -73.9823065 }, + { "lat": 40.7728645, "lon": -73.9823021 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:lane:right": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 440947098, + "bounds": { + "minlat": 40.7729979, + "minlon": -73.9823112, + "maxlat": 40.7730852, + "maxlon": -73.9821059 + }, + "nodes": [ + 9915469771, + 6469210551, + 6173564360 + ], + "geometry": [ + { "lat": 40.7730852, "lon": -73.9823112 }, + { "lat": 40.7730195, "lon": -73.9821568 }, + { "lat": 40.7729979, "lon": -73.9821059 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "West 65th Street", + "name:ru": "Западная 65-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 440965614, + "bounds": { + "minlat": 40.7281000, + "minlon": -73.9381890, + "maxlat": 40.7292460, + "maxlon": -73.9373630 + }, + "nodes": [ + 42466856, + 9789356949, + 5891914559, + 42466860 + ], + "geometry": [ + { "lat": 40.7281000, "lon": -73.9381890 }, + { "lat": 40.7281686, "lon": -73.9381596 }, + { "lat": 40.7282107, "lon": -73.9381416 }, + { "lat": 40.7292460, "lon": -73.9373630 } + ], + "tags": { + "highway": "residential", + "name": "Apollo Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 441167004, + "bounds": { + "minlat": 40.7371980, + "minlon": -73.9741001, + "maxlat": 40.7380663, + "maxlon": -73.9734702 + }, + "nodes": [ + 4389441145, + 4389441146, + 4389441147 + ], + "geometry": [ + { "lat": 40.7371980, "lon": -73.9741001 }, + { "lat": 40.7378624, "lon": -73.9736180 }, + { "lat": 40.7380663, "lon": -73.9734702 } + ], + "tags": { + "highway": "service", + "name": "Waterside Plaza", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 441167005, + "bounds": { + "minlat": 40.7378339, + "minlon": -73.9736180, + "maxlat": 40.7378624, + "maxlon": -73.9735451 + }, + "nodes": [ + 4389441146, + 4906174403, + 4389441148 + ], + "geometry": [ + { "lat": 40.7378624, "lon": -73.9736180 }, + { "lat": 40.7378440, "lon": -73.9735719 }, + { "lat": 40.7378339, "lon": -73.9735451 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 441393113, + "bounds": { + "minlat": 40.7969827, + "minlon": -73.9741541, + "maxlat": 40.8004750, + "maxlon": -73.9717928 + }, + "nodes": [ + 42441310, + 42441316, + 42441319, + 9168918369, + 42441322, + 9168918368, + 42441325, + 9168918367, + 42441329, + 9168918366, + 6912871504, + 9177516860, + 9177516861, + 2997576815, + 9168918365, + 42441348, + 42441350, + 9168918364, + 42441352, + 9168918363, + 9168918362, + 42441357, + 42441359, + 2329798629, + 42441361, + 2029349953, + 2029349951, + 42441363, + 9168918361, + 9168918360, + 42441367, + 42441372, + 2029349946, + 2029349945, + 6996574387 + ], + "geometry": [ + { "lat": 40.8004750, "lon": -73.9717928 }, + { "lat": 40.8003419, "lon": -73.9719918 }, + { "lat": 40.8002373, "lon": -73.9721483 }, + { "lat": 40.8001607, "lon": -73.9722597 }, + { "lat": 40.8000912, "lon": -73.9723514 }, + { "lat": 40.8000005, "lon": -73.9724661 }, + { "lat": 40.7999167, "lon": -73.9725674 }, + { "lat": 40.7998347, "lon": -73.9726589 }, + { "lat": 40.7997552, "lon": -73.9727447 }, + { "lat": 40.7996914, "lon": -73.9728076 }, + { "lat": 40.7995331, "lon": -73.9729549 }, + { "lat": 40.7989279, "lon": -73.9734824 }, + { "lat": 40.7988497, "lon": -73.9735484 }, + { "lat": 40.7987755, "lon": -73.9736086 }, + { "lat": 40.7986456, "lon": -73.9737112 }, + { "lat": 40.7985680, "lon": -73.9737663 }, + { "lat": 40.7984753, "lon": -73.9738348 }, + { "lat": 40.7983861, "lon": -73.9738919 }, + { "lat": 40.7983055, "lon": -73.9739408 }, + { "lat": 40.7982288, "lon": -73.9739844 }, + { "lat": 40.7981533, "lon": -73.9740219 }, + { "lat": 40.7980734, "lon": -73.9740534 }, + { "lat": 40.7979622, "lon": -73.9740917 }, + { "lat": 40.7979009, "lon": -73.9741126 }, + { "lat": 40.7978590, "lon": -73.9741238 }, + { "lat": 40.7977976, "lon": -73.9741360 }, + { "lat": 40.7977330, "lon": -73.9741466 }, + { "lat": 40.7976574, "lon": -73.9741533 }, + { "lat": 40.7975827, "lon": -73.9741541 }, + { "lat": 40.7975112, "lon": -73.9741520 }, + { "lat": 40.7974479, "lon": -73.9741490 }, + { "lat": 40.7971196, "lon": -73.9741038 }, + { "lat": 40.7970748, "lon": -73.9740997 }, + { "lat": 40.7970239, "lon": -73.9740990 }, + { "lat": 40.7969827, "lon": -73.9741018 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive West", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 441405435, + "bounds": { + "minlat": 40.7578582, + "minlon": -73.9755930, + "maxlat": 40.7583152, + "maxlon": -73.9752603 + }, + "nodes": [ + 42445928, + 3977886221, + 9436315334 + ], + "geometry": [ + { "lat": 40.7578582, "lon": -73.9755930 }, + { "lat": 40.7579171, "lon": -73.9755513 }, + { "lat": 40.7583152, "lon": -73.9752603 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 441405436, + "bounds": { + "minlat": 40.7572198, + "minlon": -73.9755930, + "maxlat": 40.7578582, + "maxlon": -73.9740765 + }, + "nodes": [ + 42445928, + 3977886218, + 4782442663, + 11380320193, + 8404061461, + 12834723255, + 3977886200, + 596775870 + ], + "geometry": [ + { "lat": 40.7578582, "lon": -73.9755930 }, + { "lat": 40.7578145, "lon": -73.9754852 }, + { "lat": 40.7576887, "lon": -73.9751868 }, + { "lat": 40.7575808, "lon": -73.9749324 }, + { "lat": 40.7575625, "lon": -73.9748893 }, + { "lat": 40.7572772, "lon": -73.9742161 }, + { "lat": 40.7572636, "lon": -73.9741841 }, + { "lat": 40.7572198, "lon": -73.9740765 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "East 50th Street", + "name:ru": "Восточная 50-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 441637777, + "bounds": { + "minlat": 40.8418306, + "minlon": -73.9392469, + "maxlat": 40.8419188, + "maxlon": -73.9391004 + }, + "nodes": [ + 2541754688, + 12639566897, + 7985644730, + 7985644735 + ], + "geometry": [ + { "lat": 40.8418306, "lon": -73.9392469 }, + { "lat": 40.8418721, "lon": -73.9391604 }, + { "lat": 40.8418872, "lon": -73.9391289 }, + { "lat": 40.8419188, "lon": -73.9391004 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 441904430, + "bounds": { + "minlat": 40.7191680, + "minlon": -73.9485320, + "maxlat": 40.7207864, + "maxlon": -73.9450077 + }, + "nodes": [ + 2987758900, + 12398479541, + 9789393779, + 8589617600, + 9937288009, + 42467912, + 10923325012, + 10164025275, + 9795356021, + 42512070, + 9789393759, + 42512064, + 9939430905, + 9789393761, + 42491220 + ], + "geometry": [ + { "lat": 40.7207864, "lon": -73.9450077 }, + { "lat": 40.7207588, "lon": -73.9450590 }, + { "lat": 40.7207315, "lon": -73.9451095 }, + { "lat": 40.7202196, "lon": -73.9459374 }, + { "lat": 40.7201982, "lon": -73.9459740 }, + { "lat": 40.7201590, "lon": -73.9460410 }, + { "lat": 40.7201122, "lon": -73.9461181 }, + { "lat": 40.7196468, "lon": -73.9468853 }, + { "lat": 40.7196249, "lon": -73.9469215 }, + { "lat": 40.7195840, "lon": -73.9469890 }, + { "lat": 40.7195424, "lon": -73.9470577 }, + { "lat": 40.7192670, "lon": -73.9475160 }, + { "lat": 40.7191812, "lon": -73.9483957 }, + { "lat": 40.7191755, "lon": -73.9484548 }, + { "lat": 40.7191680, "lon": -73.9485320 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Bayard Street", + "name:etymology:wikidata": "Q508327", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 441918283, + "bounds": { + "minlat": 40.7140639, + "minlon": -73.9528538, + "maxlat": 40.7140670, + "maxlon": -73.9516294 + }, + "nodes": [ + 42476485, + 6235394648, + 5515218176, + 5515218177, + 8117195697, + 42484200 + ], + "geometry": [ + { "lat": 40.7140639, "lon": -73.9528538 }, + { "lat": 40.7140642, "lon": -73.9527514 }, + { "lat": 40.7140647, "lon": -73.9525630 }, + { "lat": 40.7140659, "lon": -73.9521449 }, + { "lat": 40.7140670, "lon": -73.9517391 }, + { "lat": 40.7140670, "lon": -73.9516294 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 441922925, + "bounds": { + "minlat": 40.7325826, + "minlon": -73.9519578, + "maxlat": 40.7326411, + "maxlon": -73.9519481 + }, + "nodes": [ + 2987758871, + 8097159386 + ], + "geometry": [ + { "lat": 40.7325826, "lon": -73.9519481 }, + { "lat": 40.7326411, "lon": -73.9519578 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 441999611, + "bounds": { + "minlat": 40.7253870, + "minlon": -73.9088908, + "maxlat": 40.7260700, + "maxlon": -73.9088280 + }, + "nodes": [ + 42827429, + 13247301433, + 13247299347, + 42827432 + ], + "geometry": [ + { "lat": 40.7260700, "lon": -73.9088908 }, + { "lat": 40.7259616, "lon": -73.9088779 }, + { "lat": 40.7254523, "lon": -73.9088339 }, + { "lat": 40.7253870, "lon": -73.9088280 } + ], + "tags": { + "highway": "residential", + "name": "59th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "59th", + "tiger:name_type": "St", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 441999612, + "bounds": { + "minlat": 40.7231702, + "minlon": -73.9088280, + "maxlat": 40.7253870, + "maxlon": -73.9084750 + }, + "nodes": [ + 42827451, + 11055680623, + 42827444, + 42827438, + 13247299338, + 42827432 + ], + "geometry": [ + { "lat": 40.7231702, "lon": -73.9084750 }, + { "lat": 40.7232368, "lon": -73.9084875 }, + { "lat": 40.7239950, "lon": -73.9086300 }, + { "lat": 40.7246920, "lon": -73.9087670 }, + { "lat": 40.7253253, "lon": -73.9088230 }, + { "lat": 40.7253870, "lon": -73.9088280 } + ], + "tags": { + "highway": "tertiary", + "name": "59th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "59th", + "tiger:name_type": "St", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 442000024, + "bounds": { + "minlat": 40.7229705, + "minlon": -73.9101187, + "maxlat": 40.7231993, + "maxlon": -73.9045503 + }, + "nodes": [ + 42844485, + 11055680612, + 5481973625, + 8316873541, + 12889513521, + 42854228, + 12889513520, + 42854226, + 11055680622, + 42827451, + 11055680620, + 4396951667, + 42854220, + 4396951668 + ], + "geometry": [ + { "lat": 40.7230105, "lon": -73.9045503 }, + { "lat": 40.7230151, "lon": -73.9046513 }, + { "lat": 40.7230844, "lon": -73.9055383 }, + { "lat": 40.7231039, "lon": -73.9058042 }, + { "lat": 40.7231466, "lon": -73.9063583 }, + { "lat": 40.7231512, "lon": -73.9064187 }, + { "lat": 40.7231561, "lon": -73.9064954 }, + { "lat": 40.7231993, "lon": -73.9071764 }, + { "lat": 40.7231722, "lon": -73.9083938 }, + { "lat": 40.7231702, "lon": -73.9084750 }, + { "lat": 40.7231643, "lon": -73.9085630 }, + { "lat": 40.7231399, "lon": -73.9089274 }, + { "lat": 40.7230933, "lon": -73.9093690 }, + { "lat": 40.7229705, "lon": -73.9101187 } + ], + "tags": { + "highway": "tertiary", + "name": "Maspeth Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 442000554, + "bounds": { + "minlat": 40.7233199, + "minlon": -73.9142521, + "maxlat": 40.7238543, + "maxlon": -73.9128345 + }, + "nodes": [ + 2776604935, + 11055685726, + 42855845 + ], + "geometry": [ + { "lat": 40.7233199, "lon": -73.9128345 }, + { "lat": 40.7233491, "lon": -73.9129119 }, + { "lat": 40.7238543, "lon": -73.9142521 } + ], + "tags": { + "highway": "residential", + "name": "56th Terrace", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 442000555, + "bounds": { + "minlat": 40.7221183, + "minlon": -73.9133287, + "maxlat": 40.7226210, + "maxlon": -73.9133210 + }, + "nodes": [ + 4396956978, + 4396956977, + 13185727191, + 4396956982 + ], + "geometry": [ + { "lat": 40.7221183, "lon": -73.9133287 }, + { "lat": 40.7223508, "lon": -73.9133217 }, + { "lat": 40.7224979, "lon": -73.9133213 }, + { "lat": 40.7226210, "lon": -73.9133210 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "name": "57th Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 442092968, + "bounds": { + "minlat": 40.8533483, + "minlon": -73.9702450, + "maxlat": 40.8535808, + "maxlon": -73.9695918 + }, + "nodes": [ + 4397826827, + 4397826828 + ], + "geometry": [ + { "lat": 40.8535808, "lon": -73.9702450 }, + { "lat": 40.8533483, "lon": -73.9695918 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 442092971, + "bounds": { + "minlat": 40.8515304, + "minlon": -73.9705569, + "maxlat": 40.8517497, + "maxlon": -73.9699546 + }, + "nodes": [ + 4397826872, + 4397826873, + 4397826856, + 4397826865, + 4397826874, + 4397826863, + 7442921451, + 4397826859, + 4397826835, + 4397826838, + 4397826862, + 4397826870 + ], + "geometry": [ + { "lat": 40.8515304, "lon": -73.9699546 }, + { "lat": 40.8515453, "lon": -73.9700071 }, + { "lat": 40.8515516, "lon": -73.9700751 }, + { "lat": 40.8515595, "lon": -73.9701573 }, + { "lat": 40.8515767, "lon": -73.9702767 }, + { "lat": 40.8515970, "lon": -73.9703531 }, + { "lat": 40.8516119, "lon": -73.9703964 }, + { "lat": 40.8516214, "lon": -73.9704242 }, + { "lat": 40.8516488, "lon": -73.9704846 }, + { "lat": 40.8516812, "lon": -73.9705315 }, + { "lat": 40.8517188, "lon": -73.9705530 }, + { "lat": 40.8517497, "lon": -73.9705569 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 442096023, + "bounds": { + "minlat": 40.8579693, + "minlon": -73.9631608, + "maxlat": 40.8583753, + "maxlon": -73.9623472 + }, + "nodes": [ + 4397856445, + 4397856443, + 4397856446, + 4397856442, + 5362430598, + 4397856447 + ], + "geometry": [ + { "lat": 40.8583753, "lon": -73.9631608 }, + { "lat": 40.8583638, "lon": -73.9630743 }, + { "lat": 40.8583486, "lon": -73.9630012 }, + { "lat": 40.8583263, "lon": -73.9629490 }, + { "lat": 40.8579931, "lon": -73.9623874 }, + { "lat": 40.8579693, "lon": -73.9623472 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 442096024, + "bounds": { + "minlat": 40.8569812, + "minlon": -73.9635525, + "maxlat": 40.8570623, + "maxlon": -73.9631643 + }, + "nodes": [ + 3895526495, + 4397856441, + 4397856438, + 11170439737, + 4397856440 + ], + "geometry": [ + { "lat": 40.8570623, "lon": -73.9635525 }, + { "lat": 40.8570523, "lon": -73.9634613 }, + { "lat": 40.8570482, "lon": -73.9634076 }, + { "lat": 40.8570463, "lon": -73.9633694 }, + { "lat": 40.8569812, "lon": -73.9631643 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 442666177, + "bounds": { + "minlat": 40.8221845, + "minlon": -73.9762905, + "maxlat": 40.8222212, + "maxlon": -73.9758701 + }, + "nodes": [ + 3441621783, + 3441621785, + 3441630128, + 3441621784, + 3441621782 + ], + "geometry": [ + { "lat": 40.8221887, "lon": -73.9762905 }, + { "lat": 40.8222152, "lon": -73.9762023 }, + { "lat": 40.8222212, "lon": -73.9760911 }, + { "lat": 40.8222111, "lon": -73.9759998 }, + { "lat": 40.8221845, "lon": -73.9758701 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Portside Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 442808477, + "bounds": { + "minlat": 40.7426031, + "minlon": -73.9201587, + "maxlat": 40.7431594, + "maxlon": -73.9199253 + }, + "nodes": [ + 4404640086, + 10743722610, + 4404640087, + 4404640085, + 4404640088, + 4404640070, + 4404640084, + 4404640083, + 4404640493, + 4404640490, + 4404640065, + 10743722611, + 4404640081 + ], + "geometry": [ + { "lat": 40.7431594, "lon": -73.9200144 }, + { "lat": 40.7430742, "lon": -73.9200355 }, + { "lat": 40.7430500, "lon": -73.9200415 }, + { "lat": 40.7429978, "lon": -73.9200998 }, + { "lat": 40.7426925, "lon": -73.9201587 }, + { "lat": 40.7426438, "lon": -73.9201560 }, + { "lat": 40.7426072, "lon": -73.9201158 }, + { "lat": 40.7426031, "lon": -73.9200594 }, + { "lat": 40.7426417, "lon": -73.9199951 }, + { "lat": 40.7429730, "lon": -73.9199253 }, + { "lat": 40.7430425, "lon": -73.9199841 }, + { "lat": 40.7430698, "lon": -73.9199783 }, + { "lat": 40.7431531, "lon": -73.9199606 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 442808478, + "bounds": { + "minlat": 40.7425628, + "minlon": -73.9202117, + "maxlat": 40.7429978, + "maxlon": -73.9198931 + }, + "nodes": [ + 4404640085, + 4404640069, + 4404640079, + 4404640489, + 10082859994, + 4404640490 + ], + "geometry": [ + { "lat": 40.7429978, "lon": -73.9200998 }, + { "lat": 40.7429547, "lon": -73.9201480 }, + { "lat": 40.7425913, "lon": -73.9202117 }, + { "lat": 40.7425628, "lon": -73.9199608 }, + { "lat": 40.7429466, "lon": -73.9198931 }, + { "lat": 40.7429730, "lon": -73.9199253 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 443086900, + "bounds": { + "minlat": 40.8539279, + "minlon": -73.9624921, + "maxlat": 40.8543114, + "maxlon": -73.9616450 + }, + "nodes": [ + 4407232585, + 582987564, + 582987565, + 582987566, + 8167708099, + 582987567, + 582987568, + 4407232584 + ], + "geometry": [ + { "lat": 40.8541257, "lon": -73.9624921 }, + { "lat": 40.8540872, "lon": -73.9624498 }, + { "lat": 40.8540243, "lon": -73.9623667 }, + { "lat": 40.8539351, "lon": -73.9620850 }, + { "lat": 40.8539279, "lon": -73.9620114 }, + { "lat": 40.8539828, "lon": -73.9619094 }, + { "lat": 40.8540128, "lon": -73.9618935 }, + { "lat": 40.8543114, "lon": -73.9616450 } + ], + "tags": { + "bicycle": "no", + "highway": "track", + "surface": "dirt" + } +}, +{ + "type": "way", + "id": 443649237, + "bounds": { + "minlat": 40.7407963, + "minlon": -73.9724042, + "maxlat": 40.7430523, + "maxlon": -73.9719393 + }, + "nodes": [ + 1478572211, + 1478572215, + 1478572227, + 4401235712, + 607932379, + 4412035599, + 4412035602, + 4412035600, + 4412035598, + 4412035601 + ], + "geometry": [ + { "lat": 40.7407963, "lon": -73.9724042 }, + { "lat": 40.7416270, "lon": -73.9722368 }, + { "lat": 40.7418174, "lon": -73.9722577 }, + { "lat": 40.7418861, "lon": -73.9722911 }, + { "lat": 40.7419540, "lon": -73.9723307 }, + { "lat": 40.7420517, "lon": -73.9723353 }, + { "lat": 40.7424582, "lon": -73.9722428 }, + { "lat": 40.7427457, "lon": -73.9721449 }, + { "lat": 40.7430383, "lon": -73.9719393 }, + { "lat": 40.7430523, "lon": -73.9719754 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 444907552, + "bounds": { + "minlat": 40.8103730, + "minlon": -73.9634770, + "maxlat": 40.8155364, + "maxlon": -73.9597119 + }, + "nodes": [ + 3579426874, + 12015534430, + 3271250957, + 11953254610, + 12015534431, + 9518300227, + 470209122, + 9518300229, + 10054949345, + 10050039073, + 1332860731, + 10050039072, + 10054949347, + 6223571509, + 1506616203, + 6868145377, + 6223571510, + 10050024778, + 42421865, + 10050024777, + 4013803653, + 6223571512, + 4013803650, + 10049835182, + 42443181 + ], + "geometry": [ + { "lat": 40.8103730, "lon": -73.9634770 }, + { "lat": 40.8104013, "lon": -73.9634563 }, + { "lat": 40.8104095, "lon": -73.9634503 }, + { "lat": 40.8104294, "lon": -73.9634358 }, + { "lat": 40.8104990, "lon": -73.9633852 }, + { "lat": 40.8108545, "lon": -73.9631268 }, + { "lat": 40.8109520, "lon": -73.9630559 }, + { "lat": 40.8110528, "lon": -73.9629822 }, + { "lat": 40.8121371, "lon": -73.9621899 }, + { "lat": 40.8121858, "lon": -73.9621543 }, + { "lat": 40.8122569, "lon": -73.9621024 }, + { "lat": 40.8123293, "lon": -73.9620494 }, + { "lat": 40.8123796, "lon": -73.9620126 }, + { "lat": 40.8129110, "lon": -73.9616239 }, + { "lat": 40.8130674, "lon": -73.9615093 }, + { "lat": 40.8134480, "lon": -73.9612310 }, + { "lat": 40.8138365, "lon": -73.9609470 }, + { "lat": 40.8141248, "lon": -73.9607362 }, + { "lat": 40.8141840, "lon": -73.9606929 }, + { "lat": 40.8142617, "lon": -73.9606367 }, + { "lat": 40.8144540, "lon": -73.9604969 }, + { "lat": 40.8148528, "lon": -73.9602075 }, + { "lat": 40.8150688, "lon": -73.9600507 }, + { "lat": 40.8154498, "lon": -73.9597743 }, + { "lat": 40.8155364, "lon": -73.9597119 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "name": "Claremont Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5126299", + "wikipedia": "en:Claremont Avenue" + } +}, +{ + "type": "way", + "id": 446193620, + "bounds": { + "minlat": 40.7527418, + "minlon": -73.9981406, + "maxlat": 40.7533011, + "maxlon": -73.9968169 + }, + "nodes": [ + 42444954, + 8262309053, + 7396482976, + 427845235 + ], + "geometry": [ + { "lat": 40.7527418, "lon": -73.9968169 }, + { "lat": 40.7527878, "lon": -73.9969300 }, + { "lat": 40.7529847, "lon": -73.9973944 }, + { "lat": 40.7533011, "lon": -73.9981406 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "yes", + "parking:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 446864089, + "bounds": { + "minlat": 40.7189582, + "minlon": -73.9898116, + "maxlat": 40.7191062, + "maxlon": -73.9897345 + }, + "nodes": [ + 486867490, + 12195880613, + 42429766 + ], + "geometry": [ + { "lat": 40.7189582, "lon": -73.9898116 }, + { "lat": 40.7190024, "lon": -73.9897886 }, + { "lat": 40.7191062, "lon": -73.9897345 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 446864090, + "bounds": { + "minlat": 40.7188741, + "minlon": -73.9897345, + "maxlat": 40.7191062, + "maxlon": -73.9889795 + }, + "nodes": [ + 42429769, + 3314293716, + 12195880612, + 5296792747, + 42429766 + ], + "geometry": [ + { "lat": 40.7188741, "lon": -73.9889795 }, + { "lat": 40.7188945, "lon": -73.9890444 }, + { "lat": 40.7190724, "lon": -73.9896283 }, + { "lat": 40.7190859, "lon": -73.9896698 }, + { "lat": 40.7191062, "lon": -73.9897345 } + ], + "tags": { + "bus:lanes": "||designated|", + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "parking:lane:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|none|none|through;right", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 446864091, + "bounds": { + "minlat": 40.7146759, + "minlon": -73.9911284, + "maxlat": 40.7188741, + "maxlon": -73.9889795 + }, + "nodes": [ + 42429769, + 12195880606, + 486867459, + 3314293720, + 8231896470, + 42432102, + 8231896471, + 5041370333, + 42440686, + 5041370329, + 13191032160, + 8231942795, + 42440682, + 8231942796, + 8309738046, + 8231954826, + 42440679 + ], + "geometry": [ + { "lat": 40.7188741, "lon": -73.9889795 }, + { "lat": 40.7187742, "lon": -73.9890306 }, + { "lat": 40.7187289, "lon": -73.9890537 }, + { "lat": 40.7186389, "lon": -73.9890995 }, + { "lat": 40.7179538, "lon": -73.9894475 }, + { "lat": 40.7178944, "lon": -73.9894779 }, + { "lat": 40.7178439, "lon": -73.9895037 }, + { "lat": 40.7170510, "lon": -73.9899097 }, + { "lat": 40.7169795, "lon": -73.9899465 }, + { "lat": 40.7169046, "lon": -73.9899850 }, + { "lat": 40.7163488, "lon": -73.9902751 }, + { "lat": 40.7158495, "lon": -73.9905357 }, + { "lat": 40.7158050, "lon": -73.9905591 }, + { "lat": 40.7157542, "lon": -73.9905845 }, + { "lat": 40.7147984, "lon": -73.9910666 }, + { "lat": 40.7147437, "lon": -73.9910942 }, + { "lat": 40.7146759, "lon": -73.9911284 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Ludlow Street", + "name:etymology:wikidata": "Q4821485", + "name:ko": "러들로 스트리트", + "name:ru": "Ладлоу-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3935980", + "wikipedia": "en:Ludlow Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 447001270, + "bounds": { + "minlat": 40.7451567, + "minlon": -73.9826736, + "maxlat": 40.7457792, + "maxlon": -73.9822176 + }, + "nodes": [ + 42456568, + 8119507320, + 12181374919, + 8119462485, + 42449308 + ], + "geometry": [ + { "lat": 40.7451567, "lon": -73.9826736 }, + { "lat": 40.7452159, "lon": -73.9826302 }, + { "lat": 40.7456822, "lon": -73.9822900 }, + { "lat": 40.7457219, "lon": -73.9822604 }, + { "lat": 40.7457792, "lon": -73.9822176 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 447001271, + "bounds": { + "minlat": 40.7451567, + "minlon": -73.9859434, + "maxlat": 40.7465313, + "maxlon": -73.9826736 + }, + "nodes": [ + 42456568, + 4597668044, + 8119462507, + 10168260257, + 42445896, + 10168260254, + 10168260246, + 42451674 + ], + "geometry": [ + { "lat": 40.7451567, "lon": -73.9826736 }, + { "lat": 40.7452094, "lon": -73.9827991 }, + { "lat": 40.7452378, "lon": -73.9828667 }, + { "lat": 40.7458184, "lon": -73.9842495 }, + { "lat": 40.7458588, "lon": -73.9843457 }, + { "lat": 40.7459038, "lon": -73.9844525 }, + { "lat": 40.7464815, "lon": -73.9858250 }, + { "lat": 40.7465313, "lon": -73.9859434 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 31st Street", + "name:ru": "Восточная 31-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 447001272, + "bounds": { + "minlat": 40.7446313, + "minlon": -73.9852432, + "maxlat": 40.7464825, + "maxlon": -73.9838914 + }, + "nodes": [ + 42436746, + 10166167623, + 10168210225, + 42445404, + 10168210221, + 4714254173, + 10168260259, + 42445896, + 10168260255, + 10169157394, + 42445899 + ], + "geometry": [ + { "lat": 40.7446313, "lon": -73.9852432 }, + { "lat": 40.7446853, "lon": -73.9852040 }, + { "lat": 40.7451899, "lon": -73.9848377 }, + { "lat": 40.7452501, "lon": -73.9847940 }, + { "lat": 40.7452976, "lon": -73.9847583 }, + { "lat": 40.7454616, "lon": -73.9846353 }, + { "lat": 40.7458044, "lon": -73.9843853 }, + { "lat": 40.7458588, "lon": -73.9843457 }, + { "lat": 40.7459255, "lon": -73.9842973 }, + { "lat": 40.7464175, "lon": -73.9839398 }, + { "lat": 40.7464825, "lon": -73.9838914 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 447018423, + "bounds": { + "minlat": 40.7051798, + "minlon": -74.0094998, + "maxlat": 40.7063780, + "maxlon": -74.0074068 + }, + "nodes": [ + 42448578, + 7097820971, + 2824895141, + 8276468666, + 42444414, + 7139624476, + 10556966542, + 7139624399, + 10435754997, + 10556966543, + 42453902 + ], + "geometry": [ + { "lat": 40.7063780, "lon": -74.0094998 }, + { "lat": 40.7063487, "lon": -74.0094493 }, + { "lat": 40.7059917, "lon": -74.0087767 }, + { "lat": 40.7055752, "lon": -74.0079954 }, + { "lat": 40.7055443, "lon": -74.0079409 }, + { "lat": 40.7055113, "lon": -74.0078811 }, + { "lat": 40.7052925, "lon": -74.0075339 }, + { "lat": 40.7052646, "lon": -74.0074944 }, + { "lat": 40.7052428, "lon": -74.0074673 }, + { "lat": 40.7052087, "lon": -74.0074334 }, + { "lat": 40.7051798, "lon": -74.0074068 } + ], + "tags": { + "access": "yes", + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Wall Street", + "name:en": "Wall Street", + "name:etymology:wikidata": "Q106706881", + "name:ja": "ウォールストリート", + "name:ko": "월 스트리트", + "name:ru": "Уолл-стрит", + "name:zh": "华尔街", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wall", + "tiger:name_type": "St", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "width": "21'4\"", + "wikidata": "Q11690", + "wikipedia": "en:Wall Street" + } +}, +{ + "type": "way", + "id": 447202510, + "bounds": { + "minlat": 40.7948649, + "minlon": -73.9323226, + "maxlat": 40.7953448, + "maxlon": -73.9319681 + }, + "nodes": [ + 4443803075, + 4443803076 + ], + "geometry": [ + { "lat": 40.7948649, "lon": -73.9323226 }, + { "lat": 40.7953448, "lon": -73.9319681 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 447202511, + "bounds": { + "minlat": 40.7953448, + "minlon": -73.9319681, + "maxlat": 40.7954151, + "maxlon": -73.9319171 + }, + "nodes": [ + 4443803076, + 6216836435, + 4443803074 + ], + "geometry": [ + { "lat": 40.7953448, "lon": -73.9319681 }, + { "lat": 40.7953561, "lon": -73.9319595 }, + { "lat": 40.7954151, "lon": -73.9319171 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "yes", + "turn:lanes": "left|left" + } +}, +{ + "type": "way", + "id": 448657729, + "bounds": { + "minlat": 40.7127020, + "minlon": -73.9523190, + "maxlat": 40.7138240, + "maxlon": -73.9515907 + }, + "nodes": [ + 42488313, + 13040549766, + 10713579355, + 9768177766, + 42488310 + ], + "geometry": [ + { "lat": 40.7138240, "lon": -73.9515907 }, + { "lat": 40.7136315, "lon": -73.9517220 }, + { "lat": 40.7134735, "lon": -73.9518297 }, + { "lat": 40.7127640, "lon": -73.9522781 }, + { "lat": 40.7127020, "lon": -73.9523190 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Keap Street", + "name:etymology:wikidata": "Q880686", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 448686048, + "bounds": { + "minlat": 40.7544067, + "minlon": -73.9844321, + "maxlat": 40.7548420, + "maxlon": -73.9841180 + }, + "nodes": [ + 9417458967, + 8375523268, + 42430333 + ], + "geometry": [ + { "lat": 40.7544067, "lon": -73.9844321 }, + { "lat": 40.7547574, "lon": -73.9841787 }, + { "lat": 40.7548420, "lon": -73.9841180 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "intermediate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 450025331, + "bounds": { + "minlat": 40.8712904, + "minlon": -74.0044382, + "maxlat": 40.8713823, + "maxlon": -74.0043717 + }, + "nodes": [ + 4469429015, + 4469429038 + ], + "geometry": [ + { "lat": 40.8712904, "lon": -74.0043717 }, + { "lat": 40.8713823, "lon": -74.0044382 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 450025332, + "bounds": { + "minlat": 40.8713464, + "minlon": -74.0040412, + "maxlat": 40.8714603, + "maxlon": -74.0040270 + }, + "nodes": [ + 103288369, + 4469429042, + 4469429054 + ], + "geometry": [ + { "lat": 40.8714603, "lon": -74.0040270 }, + { "lat": 40.8713746, "lon": -74.0040412 }, + { "lat": 40.8713464, "lon": -74.0040353 } + ], + "tags": { + "highway": "residential", + "name": "Frank W Burr Boulevard", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Frank W Burr", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 450025333, + "bounds": { + "minlat": 40.8709889, + "minlon": -74.0051775, + "maxlat": 40.8713797, + "maxlon": -74.0040353 + }, + "nodes": [ + 4469429020, + 4469429050, + 4469429015, + 4469429012, + 4469429079, + 4469429054 + ], + "geometry": [ + { "lat": 40.8709889, "lon": -74.0051775 }, + { "lat": 40.8710683, "lon": -74.0049652 }, + { "lat": 40.8712904, "lon": -74.0043717 }, + { "lat": 40.8713692, "lon": -74.0041611 }, + { "lat": 40.8713797, "lon": -74.0040922 }, + { "lat": 40.8713464, "lon": -74.0040353 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 450025334, + "bounds": { + "minlat": 40.8727973, + "minlon": -74.0066579, + "maxlat": 40.8728567, + "maxlon": -74.0064849 + }, + "nodes": [ + 4469429074, + 4469429052 + ], + "geometry": [ + { "lat": 40.8727973, "lon": -74.0066579 }, + { "lat": 40.8728567, "lon": -74.0064849 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 450025335, + "bounds": { + "minlat": 40.8714278, + "minlon": -74.0058041, + "maxlat": 40.8716087, + "maxlon": -74.0053090 + }, + "nodes": [ + 4469429056, + 4469429023 + ], + "geometry": [ + { "lat": 40.8714278, "lon": -74.0058041 }, + { "lat": 40.8716087, "lon": -74.0053090 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450025336, + "bounds": { + "minlat": 40.8705863, + "minlon": -74.0065155, + "maxlat": 40.8724147, + "maxlon": -74.0041088 + }, + "nodes": [ + 4469429039, + 4469429078, + 4469429062, + 4469429030, + 4469433718, + 4469432925, + 4469429073, + 4469429031, + 4469432924, + 4469429072, + 4469435388, + 4469429013, + 4469429056, + 4469429049, + 4469429011, + 4469429024, + 4469429043, + 4469429020, + 4469429014, + 4469429046, + 4469440000, + 4469429022, + 4469429048, + 4469429027, + 4469429021, + 4469429075, + 4469429063, + 4469429069, + 4469439999, + 4469429057, + 4469429046 + ], + "geometry": [ + { "lat": 40.8724147, "lon": -74.0062200 }, + { "lat": 40.8723143, "lon": -74.0064892 }, + { "lat": 40.8722984, "lon": -74.0065088 }, + { "lat": 40.8722731, "lon": -74.0065155 }, + { "lat": 40.8721328, "lon": -74.0064636 }, + { "lat": 40.8719714, "lon": -74.0064039 }, + { "lat": 40.8718887, "lon": -74.0063734 }, + { "lat": 40.8718309, "lon": -74.0063479 }, + { "lat": 40.8718060, "lon": -74.0063230 }, + { "lat": 40.8717616, "lon": -74.0062787 }, + { "lat": 40.8716782, "lon": -74.0061595 }, + { "lat": 40.8715589, "lon": -74.0059888 }, + { "lat": 40.8714278, "lon": -74.0058041 }, + { "lat": 40.8713073, "lon": -74.0056349 }, + { "lat": 40.8711897, "lon": -74.0054698 }, + { "lat": 40.8711484, "lon": -74.0054118 }, + { "lat": 40.8710879, "lon": -74.0053229 }, + { "lat": 40.8709889, "lon": -74.0051775 }, + { "lat": 40.8709635, "lon": -74.0051401 }, + { "lat": 40.8708991, "lon": -74.0050536 }, + { "lat": 40.8707718, "lon": -74.0048825 }, + { "lat": 40.8707110, "lon": -74.0048008 }, + { "lat": 40.8706055, "lon": -74.0046479 }, + { "lat": 40.8705893, "lon": -74.0046130 }, + { "lat": 40.8705863, "lon": -74.0045701 }, + { "lat": 40.8709392, "lon": -74.0041450 }, + { "lat": 40.8709740, "lon": -74.0041123 }, + { "lat": 40.8710091, "lon": -74.0041088 }, + { "lat": 40.8710475, "lon": -74.0041351 }, + { "lat": 40.8712022, "lon": -74.0042410 }, + { "lat": 40.8708991, "lon": -74.0050536 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450025337, + "bounds": { + "minlat": 40.8715589, + "minlon": -74.0059888, + "maxlat": 40.8717656, + "maxlon": -74.0054089 + }, + "nodes": [ + 4469429013, + 4469429047, + 4469429040 + ], + "geometry": [ + { "lat": 40.8715589, "lon": -74.0059888 }, + { "lat": 40.8716480, "lon": -74.0057355 }, + { "lat": 40.8717656, "lon": -74.0054089 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450025338, + "bounds": { + "minlat": 40.8711897, + "minlon": -74.0054698, + "maxlat": 40.8713155, + "maxlon": -74.0051216 + }, + "nodes": [ + 4469429011, + 4469429025 + ], + "geometry": [ + { "lat": 40.8711897, "lon": -74.0054698 }, + { "lat": 40.8713155, "lon": -74.0051216 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450025339, + "bounds": { + "minlat": 40.8738346, + "minlon": -74.0064305, + "maxlat": 40.8738803, + "maxlon": -74.0062831 + }, + "nodes": [ + 4469429061, + 4469429051 + ], + "geometry": [ + { "lat": 40.8738803, "lon": -74.0064305 }, + { "lat": 40.8738346, "lon": -74.0062831 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 450025340, + "bounds": { + "minlat": 40.8713073, + "minlon": -74.0056349, + "maxlat": 40.8714600, + "maxlon": -74.0052140 + }, + "nodes": [ + 4469429049, + 4469429067 + ], + "geometry": [ + { "lat": 40.8713073, "lon": -74.0056349 }, + { "lat": 40.8714600, "lon": -74.0052140 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450025341, + "bounds": { + "minlat": 40.8711875, + "minlon": -74.0066523, + "maxlat": 40.8742465, + "maxlon": -74.0050461 + }, + "nodes": [ + 4469429059, + 4469429025, + 4469429067, + 4469429023, + 4469440005, + 1158148650, + 4469429040, + 4469437689, + 4469440004, + 4469432923, + 1158148654, + 4469432927, + 4469432922, + 4469433719, + 1158148656, + 4469429037, + 4469429055, + 4469429039, + 1158148620, + 4469429052, + 1158148658, + 4469429051, + 1158148662, + 1158148664, + 4469429058, + 4469429041 + ], + "geometry": [ + { "lat": 40.8711875, "lon": -74.0050461 }, + { "lat": 40.8713155, "lon": -74.0051216 }, + { "lat": 40.8714600, "lon": -74.0052140 }, + { "lat": 40.8716087, "lon": -74.0053090 }, + { "lat": 40.8716593, "lon": -74.0053414 }, + { "lat": 40.8716881, "lon": -74.0053598 }, + { "lat": 40.8717656, "lon": -74.0054089 }, + { "lat": 40.8719217, "lon": -74.0055046 }, + { "lat": 40.8720191, "lon": -74.0055644 }, + { "lat": 40.8720698, "lon": -74.0055955 }, + { "lat": 40.8721491, "lon": -74.0056442 }, + { "lat": 40.8721812, "lon": -74.0056933 }, + { "lat": 40.8722044, "lon": -74.0057863 }, + { "lat": 40.8722759, "lon": -74.0060722 }, + { "lat": 40.8722829, "lon": -74.0061002 }, + { "lat": 40.8723043, "lon": -74.0061398 }, + { "lat": 40.8723426, "lon": -74.0061730 }, + { "lat": 40.8724147, "lon": -74.0062200 }, + { "lat": 40.8725548, "lon": -74.0063056 }, + { "lat": 40.8728567, "lon": -74.0064849 }, + { "lat": 40.8731465, "lon": -74.0066523 }, + { "lat": 40.8738346, "lon": -74.0062831 }, + { "lat": 40.8740240, "lon": -74.0061815 }, + { "lat": 40.8740695, "lon": -74.0061334 }, + { "lat": 40.8741001, "lon": -74.0060748 }, + { "lat": 40.8742465, "lon": -74.0056481 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 450025342, + "bounds": { + "minlat": 40.8726074, + "minlon": -74.0068307, + "maxlat": 40.8744327, + "maxlon": -74.0058455 + }, + "nodes": [ + 4469429029, + 4469429028, + 4469429026, + 4469429070, + 4469429033, + 4469429032, + 4469429029, + 4469429061, + 4469429018, + 4469429036, + 4469429035, + 4469429066, + 4469429074, + 4469429034 + ], + "geometry": [ + { "lat": 40.8741928, "lon": -74.0062528 }, + { "lat": 40.8743282, "lon": -74.0058576 }, + { "lat": 40.8743505, "lon": -74.0058455 }, + { "lat": 40.8744327, "lon": -74.0059005 }, + { "lat": 40.8744306, "lon": -74.0059384 }, + { "lat": 40.8743532, "lon": -74.0061616 }, + { "lat": 40.8741928, "lon": -74.0062528 }, + { "lat": 40.8738803, "lon": -74.0064305 }, + { "lat": 40.8733470, "lon": -74.0067328 }, + { "lat": 40.8732030, "lon": -74.0068106 }, + { "lat": 40.8731472, "lon": -74.0068307 }, + { "lat": 40.8730992, "lon": -74.0068299 }, + { "lat": 40.8727973, "lon": -74.0066579 }, + { "lat": 40.8726074, "lon": -74.0065496 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450025343, + "bounds": { + "minlat": 40.8711182, + "minlon": -74.0040270, + "maxlat": 40.8714603, + "maxlon": -74.0037938 + }, + "nodes": [ + 103093310, + 103288362, + 103288364, + 103288366, + 103288369 + ], + "geometry": [ + { "lat": 40.8711182, "lon": -74.0037938 }, + { "lat": 40.8712147, "lon": -74.0038503 }, + { "lat": 40.8712755, "lon": -74.0039045 }, + { "lat": 40.8713679, "lon": -74.0039662 }, + { "lat": 40.8714603, "lon": -74.0040270 } + ], + "tags": { + "highway": "residential", + "name": "Frank W Burr Boulevard", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Frank W Burr", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 450025395, + "bounds": { + "minlat": 40.8718060, + "minlon": -74.0063230, + "maxlat": 40.8720698, + "maxlon": -74.0055955 + }, + "nodes": [ + 4469432924, + 4469432923 + ], + "geometry": [ + { "lat": 40.8718060, "lon": -74.0063230 }, + { "lat": 40.8720698, "lon": -74.0055955 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450025396, + "bounds": { + "minlat": 40.8719714, + "minlon": -74.0064039, + "maxlat": 40.8722044, + "maxlon": -74.0057863 + }, + "nodes": [ + 4469432925, + 4469432926, + 4469432922 + ], + "geometry": [ + { "lat": 40.8719714, "lon": -74.0064039 }, + { "lat": 40.8721262, "lon": -74.0059674 }, + { "lat": 40.8722044, "lon": -74.0057863 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450025406, + "bounds": { + "minlat": 40.8721328, + "minlon": -74.0064636, + "maxlat": 40.8722759, + "maxlon": -74.0060722 + }, + "nodes": [ + 4469433718, + 4469433719 + ], + "geometry": [ + { "lat": 40.8721328, "lon": -74.0064636 }, + { "lat": 40.8722759, "lon": -74.0060722 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450025639, + "bounds": { + "minlat": 40.8747005, + "minlon": -74.0073207, + "maxlat": 40.8775901, + "maxlon": -74.0064136 + }, + "nodes": [ + 4469436715, + 4469437988, + 4469436692, + 4469436719, + 4469436700, + 4469436733, + 4469436701, + 4469436722, + 4469436725, + 4469436696, + 4469436735, + 4469436732, + 4469436707, + 4469436727, + 4469436710, + 6536062052, + 4469436702, + 4469436729, + 4469436690, + 4469436713, + 4469436712, + 4469436726, + 4469436703, + 4469436723, + 4469436711, + 4469436730, + 9803099414 + ], + "geometry": [ + { "lat": 40.8775808, "lon": -74.0070957 }, + { "lat": 40.8775901, "lon": -74.0072211 }, + { "lat": 40.8775732, "lon": -74.0072912 }, + { "lat": 40.8775164, "lon": -74.0073127 }, + { "lat": 40.8774677, "lon": -74.0073207 }, + { "lat": 40.8773217, "lon": -74.0072778 }, + { "lat": 40.8771250, "lon": -74.0071866 }, + { "lat": 40.8770155, "lon": -74.0071678 }, + { "lat": 40.8768451, "lon": -74.0071705 }, + { "lat": 40.8767255, "lon": -74.0071652 }, + { "lat": 40.8766261, "lon": -74.0071410 }, + { "lat": 40.8765754, "lon": -74.0071142 }, + { "lat": 40.8764882, "lon": -74.0070981 }, + { "lat": 40.8763989, "lon": -74.0070740 }, + { "lat": 40.8763178, "lon": -74.0070659 }, + { "lat": 40.8762557, "lon": -74.0070859 }, + { "lat": 40.8761570, "lon": -74.0071177 }, + { "lat": 40.8759223, "lon": -74.0071652 }, + { "lat": 40.8758041, "lon": -74.0071794 }, + { "lat": 40.8757347, "lon": -74.0071752 }, + { "lat": 40.8756891, "lon": -74.0071196 }, + { "lat": 40.8755654, "lon": -74.0069560 }, + { "lat": 40.8754315, "lon": -74.0068058 }, + { "lat": 40.8752166, "lon": -74.0066368 }, + { "lat": 40.8750056, "lon": -74.0065268 }, + { "lat": 40.8747562, "lon": -74.0064356 }, + { "lat": 40.8747005, "lon": -74.0064136 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 450025640, + "bounds": { + "minlat": 40.8721383, + "minlon": -74.0059055, + "maxlat": 40.8746730, + "maxlon": -74.0034128 + }, + "nodes": [ + 4469436714, + 4469436691, + 4469436706, + 4469436697, + 4469436704, + 4469436698, + 4469436734, + 4469436716, + 4469436731, + 4469436695, + 4469436699, + 4469436708, + 4469436709, + 4469436705, + 4469436720, + 4469436718, + 4469436721, + 4469436693, + 4469436728, + 4469436724 + ], + "geometry": [ + { "lat": 40.8745953, "lon": -74.0059055 }, + { "lat": 40.8746487, "lon": -74.0057624 }, + { "lat": 40.8746730, "lon": -74.0056175 }, + { "lat": 40.8746527, "lon": -74.0054807 }, + { "lat": 40.8746041, "lon": -74.0052849 }, + { "lat": 40.8744114, "lon": -74.0047378 }, + { "lat": 40.8742735, "lon": -74.0043032 }, + { "lat": 40.8741863, "lon": -74.0039921 }, + { "lat": 40.8741112, "lon": -74.0038151 }, + { "lat": 40.8740240, "lon": -74.0036381 }, + { "lat": 40.8739267, "lon": -74.0035388 }, + { "lat": 40.8738192, "lon": -74.0034664 }, + { "lat": 40.8737172, "lon": -74.0034189 }, + { "lat": 40.8736204, "lon": -74.0034128 }, + { "lat": 40.8734034, "lon": -74.0035093 }, + { "lat": 40.8728762, "lon": -74.0038097 }, + { "lat": 40.8726348, "lon": -74.0039385 }, + { "lat": 40.8723793, "lon": -74.0041021 }, + { "lat": 40.8722308, "lon": -74.0041787 }, + { "lat": 40.8721383, "lon": -74.0043093 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 450025698, + "bounds": { + "minlat": 40.8754445, + "minlon": -74.0061159, + "maxlat": 40.8758189, + "maxlon": -74.0059448 + }, + "nodes": [ + 4469435378, + 4469435368, + 4469435371 + ], + "geometry": [ + { "lat": 40.8758189, "lon": -74.0059448 }, + { "lat": 40.8755242, "lon": -74.0061159 }, + { "lat": 40.8754445, "lon": -74.0060396 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450025715, + "bounds": { + "minlat": 40.8716782, + "minlon": -74.0061595, + "maxlat": 40.8719217, + "maxlon": -74.0055046 + }, + "nodes": [ + 4469435388, + 4469437689 + ], + "geometry": [ + { "lat": 40.8716782, "lon": -74.0061595 }, + { "lat": 40.8719217, "lon": -74.0055046 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450025902, + "bounds": { + "minlat": 40.8792783, + "minlon": -74.0081816, + "maxlat": 40.8799257, + "maxlon": -74.0078097 + }, + "nodes": [ + 4469438828, + 4469438836, + 4469438835, + 6592348887, + 4469438832, + 4469438830, + 4469438829, + 4469438834, + 4469438831, + 4469438827, + 4469438828 + ], + "geometry": [ + { "lat": 40.8792783, "lon": -74.0080868 }, + { "lat": 40.8797533, "lon": -74.0078277 }, + { "lat": 40.8798500, "lon": -74.0078097 }, + { "lat": 40.8798965, "lon": -74.0078313 }, + { "lat": 40.8799176, "lon": -74.0078411 }, + { "lat": 40.8799257, "lon": -74.0078920 }, + { "lat": 40.8799216, "lon": -74.0079430 }, + { "lat": 40.8794998, "lon": -74.0081682 }, + { "lat": 40.8794572, "lon": -74.0081816 }, + { "lat": 40.8793680, "lon": -74.0081387 }, + { "lat": 40.8792783, "lon": -74.0080868 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 450025903, + "bounds": { + "minlat": 40.8790686, + "minlon": -74.0081903, + "maxlat": 40.8792783, + "maxlon": -74.0080868 + }, + "nodes": [ + 6592348882, + 4469438826, + 4469438828 + ], + "geometry": [ + { "lat": 40.8790686, "lon": -74.0081903 }, + { "lat": 40.8791355, "lon": -74.0081525 }, + { "lat": 40.8792783, "lon": -74.0080868 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 450025957, + "bounds": { + "minlat": 40.8707718, + "minlon": -74.0048825, + "maxlat": 40.8710475, + "maxlon": -74.0041351 + }, + "nodes": [ + 4469440000, + 4469439999 + ], + "geometry": [ + { "lat": 40.8707718, "lon": -74.0048825 }, + { "lat": 40.8710475, "lon": -74.0041351 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450025966, + "bounds": { + "minlat": 40.8719205, + "minlon": -74.0055644, + "maxlat": 40.8720191, + "maxlon": -74.0053540 + }, + "nodes": [ + 4469440004, + 4469440002, + 4469440003, + 4469440006, + 6902585214 + ], + "geometry": [ + { "lat": 40.8720191, "lon": -74.0055644 }, + { "lat": 40.8719994, "lon": -74.0054868 }, + { "lat": 40.8719871, "lon": -74.0054319 }, + { "lat": 40.8719547, "lon": -74.0053743 }, + { "lat": 40.8719205, "lon": -74.0053540 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 450026728, + "bounds": { + "minlat": 40.8748718, + "minlon": -74.0042643, + "maxlat": 40.8749538, + "maxlon": -74.0042308 + }, + "nodes": [ + 103199392, + 103199393 + ], + "geometry": [ + { "lat": 40.8748718, "lon": -74.0042643 }, + { "lat": 40.8749538, "lon": -74.0042308 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Alcott Court", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Alcott", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 450361780, + "bounds": { + "minlat": 40.8580416, + "minlon": -74.0108963, + "maxlat": 40.8580881, + "maxlon": -74.0101355 + }, + "nodes": [ + 4472813137, + 4472813110, + 4472812876, + 4472812885, + 13173640484, + 4472813116 + ], + "geometry": [ + { "lat": 40.8580416, "lon": -74.0101355 }, + { "lat": 40.8580585, "lon": -74.0104019 }, + { "lat": 40.8580729, "lon": -74.0106300 }, + { "lat": 40.8580756, "lon": -74.0106769 }, + { "lat": 40.8580826, "lon": -74.0107935 }, + { "lat": 40.8580881, "lon": -74.0108963 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 450361782, + "bounds": { + "minlat": 40.8580416, + "minlon": -74.0101355, + "maxlat": 40.8596400, + "maxlon": -74.0086103 + }, + "nodes": [ + 4472813101, + 4472812872, + 4472813125, + 4472812874, + 4472813106, + 4472813090, + 4472813097, + 4472813093, + 4472812881, + 4472812877, + 4472812864, + 4472812883, + 4472813105, + 4472813096, + 4472813140, + 4472813137 + ], + "geometry": [ + { "lat": 40.8596400, "lon": -74.0086103 }, + { "lat": 40.8596076, "lon": -74.0086291 }, + { "lat": 40.8595802, "lon": -74.0087189 }, + { "lat": 40.8595071, "lon": -74.0089134 }, + { "lat": 40.8594067, "lon": -74.0091078 }, + { "lat": 40.8592657, "lon": -74.0093305 }, + { "lat": 40.8591217, "lon": -74.0095102 }, + { "lat": 40.8590091, "lon": -74.0096429 }, + { "lat": 40.8589941, "lon": -74.0096575 }, + { "lat": 40.8588418, "lon": -74.0098052 }, + { "lat": 40.8586673, "lon": -74.0099152 }, + { "lat": 40.8585020, "lon": -74.0100024 }, + { "lat": 40.8583630, "lon": -74.0100547 }, + { "lat": 40.8582088, "lon": -74.0101056 }, + { "lat": 40.8580841, "lon": -74.0101284 }, + { "lat": 40.8580416, "lon": -74.0101355 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450361783, + "bounds": { + "minlat": 40.8589941, + "minlon": -74.0102624, + "maxlat": 40.8593329, + "maxlon": -74.0096575 + }, + "nodes": [ + 4472812868, + 13173640483, + 4472812888, + 4472812862, + 4472812881 + ], + "geometry": [ + { "lat": 40.8593329, "lon": -74.0102624 }, + { "lat": 40.8592879, "lon": -74.0101793 }, + { "lat": 40.8592326, "lon": -74.0100856 }, + { "lat": 40.8591120, "lon": -74.0098712 }, + { "lat": 40.8589941, "lon": -74.0096575 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 450361785, + "bounds": { + "minlat": 40.8646605, + "minlon": -73.9982690, + "maxlat": 40.8649466, + "maxlon": -73.9979560 + }, + "nodes": [ + 4472813102, + 4472813135, + 9909912634, + 4472813094, + 4472812875, + 9909912633, + 4472813128, + 9909912632, + 4472812886, + 9909912631, + 4472813126, + 9909912630, + 4472813107, + 9909912629, + 4472812882, + 4472812884, + 9909912628, + 4472813130, + 4472813118, + 4472813102 + ], + "geometry": [ + { "lat": 40.8646605, "lon": -73.9980338 }, + { "lat": 40.8646900, "lon": -73.9979855 }, + { "lat": 40.8647042, "lon": -73.9979710 }, + { "lat": 40.8647197, "lon": -73.9979609 }, + { "lat": 40.8647374, "lon": -73.9979560 }, + { "lat": 40.8647562, "lon": -73.9979625 }, + { "lat": 40.8649143, "lon": -73.9981060 }, + { "lat": 40.8649277, "lon": -73.9981214 }, + { "lat": 40.8649405, "lon": -73.9981430 }, + { "lat": 40.8649456, "lon": -73.9981624 }, + { "lat": 40.8649466, "lon": -73.9981872 }, + { "lat": 40.8649447, "lon": -73.9982049 }, + { "lat": 40.8649402, "lon": -73.9982234 }, + { "lat": 40.8649293, "lon": -73.9982481 }, + { "lat": 40.8649118, "lon": -73.9982649 }, + { "lat": 40.8648925, "lon": -73.9982690 }, + { "lat": 40.8648765, "lon": -73.9982676 }, + { "lat": 40.8648588, "lon": -73.9982592 }, + { "lat": 40.8646843, "lon": -73.9980920 }, + { "lat": 40.8646605, "lon": -73.9980338 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450361787, + "bounds": { + "minlat": 40.8580585, + "minlon": -74.0104019, + "maxlat": 40.8598029, + "maxlon": -74.0086841 + }, + "nodes": [ + 4472813110, + 4472813131, + 4472813112, + 4472813092, + 4472813122, + 4472813138, + 4472813091, + 4472812862, + 4472812880, + 4472813134, + 4472813098, + 4472812870, + 4472813108, + 4472813129, + 4472813123 + ], + "geometry": [ + { "lat": 40.8580585, "lon": -74.0104019 }, + { "lat": 40.8581277, "lon": -74.0103966 }, + { "lat": 40.8582666, "lon": -74.0103631 }, + { "lat": 40.8584330, "lon": -74.0103122 }, + { "lat": 40.8586947, "lon": -74.0101968 }, + { "lat": 40.8588529, "lon": -74.0100895 }, + { "lat": 40.8589868, "lon": -74.0099809 }, + { "lat": 40.8591120, "lon": -74.0098712 }, + { "lat": 40.8591704, "lon": -74.0098200 }, + { "lat": 40.8593124, "lon": -74.0096577 }, + { "lat": 40.8594219, "lon": -74.0095035 }, + { "lat": 40.8595641, "lon": -74.0092680 }, + { "lat": 40.8596664, "lon": -74.0090663 }, + { "lat": 40.8597343, "lon": -74.0088919 }, + { "lat": 40.8598029, "lon": -74.0086841 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450361789, + "bounds": { + "minlat": 40.8580756, + "minlon": -74.0106769, + "maxlat": 40.8599981, + "maxlon": -74.0087822 + }, + "nodes": [ + 4472812885, + 4472812887, + 4472813089, + 4472812871, + 4472813104, + 4472812869, + 4472813132, + 4472812888, + 13173640482, + 4472813114, + 4472813103, + 4472812863, + 4472813133, + 4472813100, + 4472813120, + 4472813115, + 4472812861 + ], + "geometry": [ + { "lat": 40.8580756, "lon": -74.0106769 }, + { "lat": 40.8581845, "lon": -74.0106568 }, + { "lat": 40.8583082, "lon": -74.0106287 }, + { "lat": 40.8585557, "lon": -74.0105415 }, + { "lat": 40.8587758, "lon": -74.0104329 }, + { "lat": 40.8589503, "lon": -74.0103283 }, + { "lat": 40.8591856, "lon": -74.0101311 }, + { "lat": 40.8592326, "lon": -74.0100856 }, + { "lat": 40.8592929, "lon": -74.0100270 }, + { "lat": 40.8593570, "lon": -74.0099648 }, + { "lat": 40.8594909, "lon": -74.0097985 }, + { "lat": 40.8596248, "lon": -74.0096027 }, + { "lat": 40.8596999, "lon": -74.0094767 }, + { "lat": 40.8597780, "lon": -74.0093291 }, + { "lat": 40.8598429, "lon": -74.0091910 }, + { "lat": 40.8599230, "lon": -74.0089979 }, + { "lat": 40.8599981, "lon": -74.0087822 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450363398, + "bounds": { + "minlat": 40.8478882, + "minlon": -74.0098528, + "maxlat": 40.8486910, + "maxlon": -74.0094863 + }, + "nodes": [ + 2468337587, + 2468337386 + ], + "geometry": [ + { "lat": 40.8486910, "lon": -74.0094863 }, + { "lat": 40.8478882, "lon": -74.0098528 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450363399, + "bounds": { + "minlat": 40.8482141, + "minlon": -74.0091312, + "maxlat": 40.8486098, + "maxlon": -74.0085663 + }, + "nodes": [ + 2468337602, + 2468337513, + 2468337499, + 2468337355, + 4472822655, + 2468337551, + 2468337560, + 2468337338 + ], + "geometry": [ + { "lat": 40.8482141, "lon": -74.0085663 }, + { "lat": 40.8482627, "lon": -74.0086514 }, + { "lat": 40.8483179, "lon": -74.0087517 }, + { "lat": 40.8483924, "lon": -74.0088871 }, + { "lat": 40.8484259, "lon": -74.0089414 }, + { "lat": 40.8484817, "lon": -74.0090319 }, + { "lat": 40.8485378, "lon": -74.0090873 }, + { "lat": 40.8486098, "lon": -74.0091312 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 450363400, + "bounds": { + "minlat": 40.8475518, + "minlon": -74.0095404, + "maxlat": 40.8485378, + "maxlon": -74.0090873 + }, + "nodes": [ + 4472822650, + 9913397782, + 2468337560 + ], + "geometry": [ + { "lat": 40.8475518, "lon": -74.0095404 }, + { "lat": 40.8477936, "lon": -74.0094293 }, + { "lat": 40.8485378, "lon": -74.0090873 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450363401, + "bounds": { + "minlat": 40.8476117, + "minlon": -74.0097431, + "maxlat": 40.8486467, + "maxlon": -74.0092923 + }, + "nodes": [ + 2468337478, + 9913397778, + 2468354785 + ], + "geometry": [ + { "lat": 40.8476117, "lon": -74.0097431 }, + { "lat": 40.8478479, "lon": -74.0096402 }, + { "lat": 40.8486467, "lon": -74.0092923 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450363403, + "bounds": { + "minlat": 40.8474787, + "minlon": -74.0093533, + "maxlat": 40.8484259, + "maxlon": -74.0089414 + }, + "nodes": [ + 4472822655, + 9913397781, + 2468337518 + ], + "geometry": [ + { "lat": 40.8484259, "lon": -74.0089414 }, + { "lat": 40.8477442, "lon": -74.0092379 }, + { "lat": 40.8474787, "lon": -74.0093533 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450363404, + "bounds": { + "minlat": 40.8473880, + "minlon": -74.0091744, + "maxlat": 40.8483179, + "maxlon": -74.0087517 + }, + "nodes": [ + 2468337426, + 9913397780, + 4472822653, + 2468337499 + ], + "geometry": [ + { "lat": 40.8473880, "lon": -74.0091744 }, + { "lat": 40.8476923, "lon": -74.0090366 }, + { "lat": 40.8480415, "lon": -74.0088785 }, + { "lat": 40.8483179, "lon": -74.0087517 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450364029, + "bounds": { + "minlat": 40.8513776, + "minlon": -74.0076023, + "maxlat": 40.8516952, + "maxlon": -74.0059471 + }, + "nodes": [ + 2468337521, + 4472836988 + ], + "geometry": [ + { "lat": 40.8516952, "lon": -74.0076023 }, + { "lat": 40.8513776, "lon": -74.0059471 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450364030, + "bounds": { + "minlat": 40.8515355, + "minlon": -74.0075204, + "maxlat": 40.8518647, + "maxlon": -74.0058454 + }, + "nodes": [ + 4472836987, + 4472836986 + ], + "geometry": [ + { "lat": 40.8515355, "lon": -74.0058454 }, + { "lat": 40.8518647, "lon": -74.0075204 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450364031, + "bounds": { + "minlat": 40.8516904, + "minlon": -74.0074121, + "maxlat": 40.8520294, + "maxlon": -74.0057456 + }, + "nodes": [ + 2468337403, + 4472840389 + ], + "geometry": [ + { "lat": 40.8520294, "lon": -74.0074121 }, + { "lat": 40.8516904, "lon": -74.0057456 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450365293, + "bounds": { + "minlat": 40.8627244, + "minlon": -73.9997912, + "maxlat": 40.8635074, + "maxlon": -73.9985155 + }, + "nodes": [ + 4472847142, + 4472847137, + 4472847139, + 6117378941, + 4472847138, + 4472847140, + 6117378909, + 4472847141, + 6117378854, + 2468214206 + ], + "geometry": [ + { "lat": 40.8635074, "lon": -73.9997912 }, + { "lat": 40.8634324, "lon": -73.9997429 }, + { "lat": 40.8633695, "lon": -73.9997241 }, + { "lat": 40.8627683, "lon": -73.9994238 }, + { "lat": 40.8627467, "lon": -73.9994130 }, + { "lat": 40.8627244, "lon": -73.9993620 }, + { "lat": 40.8627277, "lon": -73.9993191 }, + { "lat": 40.8627327, "lon": -73.9992529 }, + { "lat": 40.8628437, "lon": -73.9989263 }, + { "lat": 40.8629834, "lon": -73.9985155 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 450365309, + "bounds": { + "minlat": 40.8636928, + "minlon": -73.9982174, + "maxlat": 40.8638650, + "maxlon": -73.9972858 + }, + "nodes": [ + 4472848989, + 3743113592, + 3743113596, + 3743110741, + 4472848687 + ], + "geometry": [ + { "lat": 40.8638650, "lon": -73.9972858 }, + { "lat": 40.8638605, "lon": -73.9973423 }, + { "lat": 40.8638239, "lon": -73.9976641 }, + { "lat": 40.8637397, "lon": -73.9981000 }, + { "lat": 40.8636928, "lon": -73.9982174 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 450365310, + "bounds": { + "minlat": 40.8633025, + "minlon": -73.9985332, + "maxlat": 40.8638259, + "maxlon": -73.9980115 + }, + "nodes": [ + 4472848991, + 4472848687, + 4472848993, + 4472848990, + 6117378942, + 6117378951, + 4472848688, + 4472848992, + 4472848991 + ], + "geometry": [ + { "lat": 40.8633900, "lon": -73.9980115 }, + { "lat": 40.8636928, "lon": -73.9982174 }, + { "lat": 40.8638259, "lon": -73.9983079 }, + { "lat": 40.8637427, "lon": -73.9985332 }, + { "lat": 40.8637305, "lon": -73.9985251 }, + { "lat": 40.8636508, "lon": -73.9984727 }, + { "lat": 40.8633862, "lon": -73.9982986 }, + { "lat": 40.8633025, "lon": -73.9982436 }, + { "lat": 40.8633900, "lon": -73.9980115 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 450369204, + "bounds": { + "minlat": 40.8708663, + "minlon": -74.0058956, + "maxlat": 40.8711735, + "maxlon": -74.0054607 + }, + "nodes": [ + 9692248037, + 10940833284, + 103247019 + ], + "geometry": [ + { "lat": 40.8708663, "lon": -74.0054607 }, + { "lat": 40.8711028, "lon": -74.0057932 }, + { "lat": 40.8711735, "lon": -74.0058956 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "4", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes": "none|none|none|through;right" + } +}, +{ + "type": "way", + "id": 450369207, + "bounds": { + "minlat": 40.8721334, + "minlon": -74.0117201, + "maxlat": 40.8721632, + "maxlon": -74.0114800 + }, + "nodes": [ + 103247054, + 10947500741, + 103247056 + ], + "geometry": [ + { "lat": 40.8721334, "lon": -74.0114800 }, + { "lat": 40.8721414, "lon": -74.0115617 }, + { "lat": 40.8721632, "lon": -74.0117201 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "4", + "maxspeed": "45 mph", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 450807242, + "bounds": { + "minlat": 40.7159035, + "minlon": -73.9954504, + "maxlat": 40.7160156, + "maxlon": -73.9950346 + }, + "nodes": [ + 4477147270, + 11495928472, + 11495928471, + 5159737091, + 11495928473, + 11495928474, + 4506716195 + ], + "geometry": [ + { "lat": 40.7159115, "lon": -73.9950346 }, + { "lat": 40.7159049, "lon": -73.9950597 }, + { "lat": 40.7159035, "lon": -73.9950961 }, + { "lat": 40.7159074, "lon": -73.9951265 }, + { "lat": 40.7159711, "lon": -73.9953325 }, + { "lat": 40.7159921, "lon": -73.9953948 }, + { "lat": 40.7160156, "lon": -73.9954504 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 450896752, + "bounds": { + "minlat": 40.7136336, + "minlon": -73.9871695, + "maxlat": 40.7143170, + "maxlon": -73.9870806 + }, + "nodes": [ + 42435928, + 8231945169, + 6214824221, + 4540239966, + 8231954817, + 42433551 + ], + "geometry": [ + { "lat": 40.7136336, "lon": -73.9870806 }, + { "lat": 40.7137089, "lon": -73.9870927 }, + { "lat": 40.7140881, "lon": -73.9871537 }, + { "lat": 40.7141686, "lon": -73.9871670 }, + { "lat": 40.7142340, "lon": -73.9871690 }, + { "lat": 40.7143170, "lon": -73.9871695 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clinton Street", + "name:etymology:wikidata": "Q201646", + "name:ko": "클린턴 스트리트", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 451647449, + "bounds": { + "minlat": 40.8507976, + "minlon": -73.9232720, + "maxlat": 40.8511821, + "maxlon": -73.9229666 + }, + "nodes": [ + 12056242290, + 4484724012, + 6723864728, + 12056545241, + 4484724011 + ], + "geometry": [ + { "lat": 40.8511821, "lon": -73.9230654 }, + { "lat": 40.8511293, "lon": -73.9229666 }, + { "lat": 40.8510231, "lon": -73.9230644 }, + { "lat": 40.8509138, "lon": -73.9231651 }, + { "lat": 40.8507976, "lon": -73.9232720 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 451808492, + "bounds": { + "minlat": 40.7339818, + "minlon": -73.9898706, + "maxlat": 40.7353170, + "maxlon": -73.9866911 + }, + "nodes": [ + 42431459, + 3985008878, + 5481911751, + 12183283841, + 8569048134, + 42431453, + 8569048139, + 12179582167, + 12179582169, + 3670742442, + 42431452 + ], + "geometry": [ + { "lat": 40.7339818, "lon": -73.9866911 }, + { "lat": 40.7340365, "lon": -73.9868305 }, + { "lat": 40.7341439, "lon": -73.9870865 }, + { "lat": 40.7345896, "lon": -73.9881448 }, + { "lat": 40.7346165, "lon": -73.9882076 }, + { "lat": 40.7346528, "lon": -73.9882945 }, + { "lat": 40.7346873, "lon": -73.9883757 }, + { "lat": 40.7352507, "lon": -73.9897130 }, + { "lat": 40.7352664, "lon": -73.9897496 }, + { "lat": 40.7352820, "lon": -73.9897861 }, + { "lat": 40.7353170, "lon": -73.9898706 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 15th Street", + "name:ru": "Восточная 15-я стрит", + "name_1": "Lee Strasberg Way", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 451808493, + "bounds": { + "minlat": 40.7330002, + "minlon": -73.9866911, + "maxlat": 40.7339818, + "maxlon": -73.9843628 + }, + "nodes": [ + 4376122113, + 13205862058, + 4191922367, + 42431461, + 8310246171, + 12183286720, + 12183286721, + 3985008876, + 42431459 + ], + "geometry": [ + { "lat": 40.7330002, "lon": -73.9843628 }, + { "lat": 40.7330330, "lon": -73.9844410 }, + { "lat": 40.7330844, "lon": -73.9845626 }, + { "lat": 40.7333720, "lon": -73.9852420 }, + { "lat": 40.7334040, "lon": -73.9853057 }, + { "lat": 40.7336320, "lon": -73.9858475 }, + { "lat": 40.7339050, "lon": -73.9864961 }, + { "lat": 40.7339279, "lon": -73.9865505 }, + { "lat": 40.7339818, "lon": -73.9866911 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 15th Street", + "name:ru": "Восточная 15-я стрит", + "name_1": "Lee Strasberg Way", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 451808494, + "bounds": { + "minlat": 40.7320287, + "minlon": -73.9843628, + "maxlat": 40.7330002, + "maxlon": -73.9820610 + }, + "nodes": [ + 42431470, + 4298757059, + 8310246163, + 42431467, + 8310246164, + 13205862059, + 4191926877, + 4376122113 + ], + "geometry": [ + { "lat": 40.7320287, "lon": -73.9820610 }, + { "lat": 40.7320930, "lon": -73.9822129 }, + { "lat": 40.7326744, "lon": -73.9835879 }, + { "lat": 40.7326990, "lon": -73.9836460 }, + { "lat": 40.7327276, "lon": -73.9837141 }, + { "lat": 40.7329588, "lon": -73.9842644 }, + { "lat": 40.7329842, "lon": -73.9843249 }, + { "lat": 40.7330002, "lon": -73.9843628 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 15th Street", + "name:ru": "Восточная 15-я стрит", + "name_1": "Lee Strasberg Way", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 451854726, + "bounds": { + "minlat": 40.7507270, + "minlon": -73.9783187, + "maxlat": 40.7510650, + "maxlon": -73.9779251 + }, + "nodes": [ + 12502907283, + 12502907298, + 12502907278, + 5526995343, + 5526995342, + 5526995341, + 5526995340, + 5526995339, + 5526995355, + 5526995354, + 5526995352, + 5526995353, + 12502907219, + 12502907212, + 12502907220, + 12502907218, + 12502907223, + 12502907222, + 12502907221, + 12502907281, + 12502907285, + 12502907286, + 12502907284, + 12502907283 + ], + "geometry": [ + { "lat": 40.7507662, "lon": -73.9781928 }, + { "lat": 40.7507660, "lon": -73.9781777 }, + { "lat": 40.7507678, "lon": -73.9781610 }, + { "lat": 40.7507407, "lon": -73.9780955 }, + { "lat": 40.7507546, "lon": -73.9780920 }, + { "lat": 40.7507665, "lon": -73.9780818 }, + { "lat": 40.7507745, "lon": -73.9780663 }, + { "lat": 40.7507774, "lon": -73.9780479 }, + { "lat": 40.7507747, "lon": -73.9780295 }, + { "lat": 40.7507670, "lon": -73.9780138 }, + { "lat": 40.7507552, "lon": -73.9780032 }, + { "lat": 40.7507353, "lon": -73.9779553 }, + { "lat": 40.7507270, "lon": -73.9779353 }, + { "lat": 40.7507336, "lon": -73.9779306 }, + { "lat": 40.7507412, "lon": -73.9779251 }, + { "lat": 40.7508659, "lon": -73.9779725 }, + { "lat": 40.7509909, "lon": -73.9780201 }, + { "lat": 40.7510261, "lon": -73.9779952 }, + { "lat": 40.7510650, "lon": -73.9780888 }, + { "lat": 40.7510225, "lon": -73.9781196 }, + { "lat": 40.7510084, "lon": -73.9781388 }, + { "lat": 40.7510208, "lon": -73.9781723 }, + { "lat": 40.7508185, "lon": -73.9783187 }, + { "lat": 40.7507662, "lon": -73.9781928 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 451904646, + "bounds": { + "minlat": 40.7298936, + "minlon": -73.9911109, + "maxlat": 40.7300458, + "maxlon": -73.9907402 + }, + "nodes": [ + 42445543, + 3919350764, + 12179562749, + 3919350754, + 42439249 + ], + "geometry": [ + { "lat": 40.7300458, "lon": -73.9911109 }, + { "lat": 40.7300131, "lon": -73.9910318 }, + { "lat": 40.7299451, "lon": -73.9908659 }, + { "lat": 40.7299242, "lon": -73.9908149 }, + { "lat": 40.7298936, "lon": -73.9907402 } + ], + "tags": { + "alt_name": "East 8th Street", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Astor Place", + "name:etymology:wikidata": "Q57423", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592990", + "wikipedia": "en:Astor Place" + } +}, +{ + "type": "way", + "id": 451905565, + "bounds": { + "minlat": 40.7341463, + "minlon": -73.9991816, + "maxlat": 40.7353910, + "maxlon": -73.9982740 + }, + "nodes": [ + 42421889, + 4320194262, + 8309479735, + 42430241, + 8309479734, + 5155816415, + 9090318786, + 8309479739, + 42430247 + ], + "geometry": [ + { "lat": 40.7341463, "lon": -73.9991816 }, + { "lat": 40.7342185, "lon": -73.9991288 }, + { "lat": 40.7347164, "lon": -73.9987633 }, + { "lat": 40.7347874, "lon": -73.9987127 }, + { "lat": 40.7348519, "lon": -73.9986659 }, + { "lat": 40.7349892, "lon": -73.9985687 }, + { "lat": 40.7351071, "lon": -73.9984830 }, + { "lat": 40.7353401, "lon": -73.9983114 }, + { "lat": 40.7353910, "lon": -73.9982740 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 451934642, + "bounds": { + "minlat": 40.7001896, + "minlon": -73.9869304, + "maxlat": 40.7002043, + "maxlon": -73.9865221 + }, + "nodes": [ + 2357946612, + 3625891834, + 42497727 + ], + "geometry": [ + { "lat": 40.7002043, "lon": -73.9865221 }, + { "lat": 40.7001919, "lon": -73.9868562 }, + { "lat": 40.7001896, "lon": -73.9869304 } + ], + "tags": { + "covered": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "destination": "Adams Street", + "foot": "use_sidepath", + "hgv": "local", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Sands Street", + "name:etymology:wikidata": "Q1708602", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Sands", + "tiger:name_type": "St", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 451954038, + "bounds": { + "minlat": 40.7112524, + "minlon": -73.9898655, + "maxlat": 40.7126663, + "maxlon": -73.9896443 + }, + "nodes": [ + 4487582555, + 8310246626, + 6330018927, + 4487582557, + 6330018963, + 6330018929, + 8310246636, + 4487582556 + ], + "geometry": [ + { "lat": 40.7112524, "lon": -73.9896443 }, + { "lat": 40.7113487, "lon": -73.9896594 }, + { "lat": 40.7118732, "lon": -73.9897414 }, + { "lat": 40.7119812, "lon": -73.9897583 }, + { "lat": 40.7119975, "lon": -73.9897608 }, + { "lat": 40.7121010, "lon": -73.9897770 }, + { "lat": 40.7125704, "lon": -73.9898505 }, + { "lat": 40.7126663, "lon": -73.9898655 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Rutgers Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "러트거스 스트리트", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 451954039, + "bounds": { + "minlat": 40.7126663, + "minlon": -73.9898655, + "maxlat": 40.7129093, + "maxlon": -73.9869665 + }, + "nodes": [ + 4487582556, + 6330018925, + 6330018967, + 6330018935, + 8231945186, + 42437768, + 8231945184, + 6330018933, + 8231945180, + 10931516193, + 6214824200, + 42437770 + ], + "geometry": [ + { "lat": 40.7126663, "lon": -73.9898655 }, + { "lat": 40.7127256, "lon": -73.9891607 }, + { "lat": 40.7127392, "lon": -73.9889981 }, + { "lat": 40.7127511, "lon": -73.9888567 }, + { "lat": 40.7127742, "lon": -73.9885813 }, + { "lat": 40.7127817, "lon": -73.9884924 }, + { "lat": 40.7127898, "lon": -73.9883975 }, + { "lat": 40.7128464, "lon": -73.9877237 }, + { "lat": 40.7129032, "lon": -73.9870474 }, + { "lat": 40.7129068, "lon": -73.9870051 }, + { "lat": 40.7129075, "lon": -73.9869964 }, + { "lat": 40.7129093, "lon": -73.9869665 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 451954041, + "bounds": { + "minlat": 40.7126536, + "minlon": -73.9902180, + "maxlat": 40.7140532, + "maxlon": -73.9900158 + }, + "nodes": [ + 42437763, + 8310246639, + 8310246644, + 42435923, + 8310246645, + 8231942804, + 7480301986 + ], + "geometry": [ + { "lat": 40.7126536, "lon": -73.9900158 }, + { "lat": 40.7127376, "lon": -73.9900284 }, + { "lat": 40.7133221, "lon": -73.9901160 }, + { "lat": 40.7133803, "lon": -73.9901247 }, + { "lat": 40.7134547, "lon": -73.9901350 }, + { "lat": 40.7139649, "lon": -73.9902058 }, + { "lat": 40.7140532, "lon": -73.9902180 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Rutgers Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "러트거스 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 451954042, + "bounds": { + "minlat": 40.7126536, + "minlon": -73.9900158, + "maxlat": 40.7126663, + "maxlon": -73.9898655 + }, + "nodes": [ + 42437763, + 8310246637, + 4487582556 + ], + "geometry": [ + { "lat": 40.7126536, "lon": -73.9900158 }, + { "lat": 40.7126601, "lon": -73.9899390 }, + { "lat": 40.7126663, "lon": -73.9898655 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "maxspeed": "2 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 451954043, + "bounds": { + "minlat": 40.7119696, + "minlon": -73.9899105, + "maxlat": 40.7119812, + "maxlon": -73.9897583 + }, + "nodes": [ + 482807376, + 5787552383, + 4487582557 + ], + "geometry": [ + { "lat": 40.7119696, "lon": -73.9899105 }, + { "lat": 40.7119741, "lon": -73.9898454 }, + { "lat": 40.7119812, "lon": -73.9897583 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "noname": "yes" + } +}, +{ + "type": "way", + "id": 451954060, + "bounds": { + "minlat": 40.7189582, + "minlon": -73.9902811, + "maxlat": 40.7191029, + "maxlon": -73.9898116 + }, + "nodes": [ + 42429762, + 5296795757, + 13033174922, + 12195880611, + 8231896490, + 486867490 + ], + "geometry": [ + { "lat": 40.7191029, "lon": -73.9902811 }, + { "lat": 40.7190791, "lon": -73.9902049 }, + { "lat": 40.7190599, "lon": -73.9901429 }, + { "lat": 40.7189902, "lon": -73.9899183 }, + { "lat": 40.7189783, "lon": -73.9898787 }, + { "lat": 40.7189582, "lon": -73.9898116 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|none|none", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 451954843, + "bounds": { + "minlat": 40.7154997, + "minlon": -73.9779170, + "maxlat": 40.7156490, + "maxlon": -73.9772223 + }, + "nodes": [ + 42446424, + 4487598489, + 42425100 + ], + "geometry": [ + { "lat": 40.7154997, "lon": -73.9772223 }, + { "lat": 40.7155415, "lon": -73.9775408 }, + { "lat": 40.7156490, "lon": -73.9779170 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 452059591, + "bounds": { + "minlat": 40.7473921, + "minlon": -73.9882508, + "maxlat": 40.7482170, + "maxlon": -73.9875296 + }, + "nodes": [ + 6223969263, + 10263178515, + 6006916325, + 11772049069, + 10263178510, + 10263178512, + 11771951867, + 11771951868, + 10263178513, + 10263178511, + 6223969241, + 11771951866, + 11771951865, + 6223969258, + 6223969248, + 6223969244, + 11771951863, + 11772049079, + 4488597393, + 11771951864, + 2709307224, + 1719560856, + 1719560859, + 1719560862, + 1719560861, + 1719560864, + 1719560863, + 6223969263 + ], + "geometry": [ + { "lat": 40.7478884, "lon": -73.9875852 }, + { "lat": 40.7479529, "lon": -73.9875373 }, + { "lat": 40.7479633, "lon": -73.9875296 }, + { "lat": 40.7481638, "lon": -73.9880002 }, + { "lat": 40.7481901, "lon": -73.9880619 }, + { "lat": 40.7482030, "lon": -73.9880942 }, + { "lat": 40.7482170, "lon": -73.9881249 }, + { "lat": 40.7482152, "lon": -73.9881332 }, + { "lat": 40.7482020, "lon": -73.9881352 }, + { "lat": 40.7481702, "lon": -73.9881407 }, + { "lat": 40.7480203, "lon": -73.9881883 }, + { "lat": 40.7477653, "lon": -73.9882352 }, + { "lat": 40.7476754, "lon": -73.9882329 }, + { "lat": 40.7475937, "lon": -73.9882508 }, + { "lat": 40.7475630, "lon": -73.9882476 }, + { "lat": 40.7475533, "lon": -73.9882327 }, + { "lat": 40.7475373, "lon": -73.9881966 }, + { "lat": 40.7475049, "lon": -73.9881076 }, + { "lat": 40.7473921, "lon": -73.9877980 }, + { "lat": 40.7473996, "lon": -73.9877926 }, + { "lat": 40.7474079, "lon": -73.9877867 }, + { "lat": 40.7474447, "lon": -73.9877596 }, + { "lat": 40.7476009, "lon": -73.9881250 }, + { "lat": 40.7479117, "lon": -73.9880678 }, + { "lat": 40.7479079, "lon": -73.9880142 }, + { "lat": 40.7479732, "lon": -73.9880021 }, + { "lat": 40.7479374, "lon": -73.9876963 }, + { "lat": 40.7478884, "lon": -73.9875852 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 452098020, + "bounds": { + "minlat": 40.7101204, + "minlon": -73.9899392, + "maxlat": 40.7112188, + "maxlon": -73.9897857 + }, + "nodes": [ + 42443928, + 8310246657, + 9010266058, + 42436562, + 11282966019, + 8372982779, + 42436563 + ], + "geometry": [ + { "lat": 40.7101204, "lon": -73.9897857 }, + { "lat": 40.7101941, "lon": -73.9897973 }, + { "lat": 40.7106607, "lon": -73.9898632 }, + { "lat": 40.7107600, "lon": -73.9898780 }, + { "lat": 40.7109033, "lon": -73.9898974 }, + { "lat": 40.7111287, "lon": -73.9899272 }, + { "lat": 40.7112188, "lon": -73.9899392 } + ], + "tags": { + "alt_name": "Frank T. Modica Way", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Rutgers Slip", + "name:etymology:wikidata": "Q12094720", + "name:ko": "러트거스 슬립", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 452319915, + "bounds": { + "minlat": 40.7552967, + "minlon": -73.9949943, + "maxlat": 40.7553245, + "maxlon": -73.9949298 + }, + "nodes": [ + 4491359481, + 9807801426 + ], + "geometry": [ + { "lat": 40.7552967, "lon": -73.9949298 }, + { "lat": 40.7553245, "lon": -73.9949943 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 452322366, + "bounds": { + "minlat": 40.7711608, + "minlon": -73.9820764, + "maxlat": 40.7721684, + "maxlon": -73.9796589 + }, + "nodes": [ + 1061531685, + 5117963656, + 11578617191, + 8110535998, + 7837178993, + 42435257 + ], + "geometry": [ + { "lat": 40.7721684, "lon": -73.9820764 }, + { "lat": 40.7721183, "lon": -73.9819474 }, + { "lat": 40.7716384, "lon": -73.9808021 }, + { "lat": 40.7716085, "lon": -73.9807306 }, + { "lat": 40.7712081, "lon": -73.9797719 }, + { "lat": 40.7711608, "lon": -73.9796589 } + ], + "tags": { + "highway": "residential", + "name": "West 64th Street", + "name:ru": "Западная 64-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 452322756, + "bounds": { + "minlat": 40.7594380, + "minlon": -73.9903162, + "maxlat": 40.7616052, + "maxlon": -73.9851371 + }, + "nodes": [ + 42428303, + 10228962357, + 10228962330, + 8250892563, + 10168088490, + 42435677, + 6210777836, + 10168088493, + 8646554909, + 42445020 + ], + "geometry": [ + { "lat": 40.7594380, "lon": -73.9851371 }, + { "lat": 40.7594657, "lon": -73.9852067 }, + { "lat": 40.7595217, "lon": -73.9853457 }, + { "lat": 40.7602340, "lon": -73.9870605 }, + { "lat": 40.7603544, "lon": -73.9873463 }, + { "lat": 40.7604088, "lon": -73.9874753 }, + { "lat": 40.7604550, "lon": -73.9875851 }, + { "lat": 40.7604685, "lon": -73.9876173 }, + { "lat": 40.7615468, "lon": -73.9901804 }, + { "lat": 40.7616052, "lon": -73.9903162 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 47th Street", + "name:ru": "Западная 47-я стрит", + "name_1": "West 47 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4638574", + "wikipedia": "en:47th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 452322757, + "bounds": { + "minlat": 40.7592226, + "minlon": -73.9851371, + "maxlat": 40.7594380, + "maxlon": -73.9846194 + }, + "nodes": [ + 42439994, + 10228962331, + 2435108448, + 12989986305, + 42428303 + ], + "geometry": [ + { "lat": 40.7592226, "lon": -73.9846194 }, + { "lat": 40.7592729, "lon": -73.9847402 }, + { "lat": 40.7593682, "lon": -73.9849694 }, + { "lat": 40.7593906, "lon": -73.9850231 }, + { "lat": 40.7594380, "lon": -73.9851371 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 47th Street", + "name:ru": "Западная 47-я стрит", + "name_1": "West 47 Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q4638574", + "wikipedia": "en:47th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 452339695, + "bounds": { + "minlat": 40.7138283, + "minlon": -73.9929765, + "maxlat": 40.7138465, + "maxlon": -73.9927579 + }, + "nodes": [ + 42457821, + 8307641631, + 8996353564, + 42433543 + ], + "geometry": [ + { "lat": 40.7138465, "lon": -73.9927579 }, + { "lat": 40.7138382, "lon": -73.9928571 }, + { "lat": 40.7138344, "lon": -73.9929032 }, + { "lat": 40.7138283, "lon": -73.9929765 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 452339696, + "bounds": { + "minlat": 40.7143535, + "minlon": -73.9930343, + "maxlat": 40.7143695, + "maxlon": -73.9928102 + }, + "nodes": [ + 7480301987, + 42437988 + ], + "geometry": [ + { "lat": 40.7143695, "lon": -73.9928102 }, + { "lat": 40.7143535, "lon": -73.9930343 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "Division Street", + "name:ko": "디비전 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 452339697, + "bounds": { + "minlat": 40.7133804, + "minlon": -73.9852139, + "maxlat": 40.7137264, + "maxlon": -73.9851117 + }, + "nodes": [ + 4491534951, + 6411125213, + 11038072189, + 11038072190, + 588455701 + ], + "geometry": [ + { "lat": 40.7137264, "lon": -73.9852139 }, + { "lat": 40.7135138, "lon": -73.9851842 }, + { "lat": 40.7134682, "lon": -73.9851689 }, + { "lat": 40.7134065, "lon": -73.9851363 }, + { "lat": 40.7133804, "lon": -73.9851117 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Montgomery Street", + "name:etymology:wikidata": "Q444947", + "name:ko": "몽고메리 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 452339698, + "bounds": { + "minlat": 40.7137882, + "minlon": -73.9852253, + "maxlat": 40.7138032, + "maxlon": -73.9850499 + }, + "nodes": [ + 588455700, + 11038072242, + 42435931 + ], + "geometry": [ + { "lat": 40.7137882, "lon": -73.9852253 }, + { "lat": 40.7137974, "lon": -73.9851306 }, + { "lat": 40.7138032, "lon": -73.9850499 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Henry Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "헨리 스트리트", + "name:ru": "Хенри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5728794", + "wikipedia": "en:Henry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 452339699, + "bounds": { + "minlat": 40.7286951, + "minlon": -74.0026905, + "maxlat": 40.7296952, + "maxlon": -74.0021934 + }, + "nodes": [ + 5155816419, + 2477560572, + 12273503028, + 3891960759, + 5854302557 + ], + "geometry": [ + { "lat": 40.7286951, "lon": -74.0026905 }, + { "lat": 40.7289129, "lon": -74.0025832 }, + { "lat": 40.7295630, "lon": -74.0022628 }, + { "lat": 40.7296055, "lon": -74.0022413 }, + { "lat": 40.7296952, "lon": -74.0021934 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 452487048, + "bounds": { + "minlat": 40.7189897, + "minlon": -73.9754312, + "maxlat": 40.7190131, + "maxlon": -73.9752365 + }, + "nodes": [ + 1775270666, + 9181587083, + 370893397 + ], + "geometry": [ + { "lat": 40.7189897, "lon": -73.9752365 }, + { "lat": 40.7189983, "lon": -73.9753178 }, + { "lat": 40.7190131, "lon": -73.9754312 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 452487050, + "bounds": { + "minlat": 40.7187961, + "minlon": -73.9752409, + "maxlat": 40.7188180, + "maxlon": -73.9751131 + }, + "nodes": [ + 4492779804, + 9907942873, + 42457401 + ], + "geometry": [ + { "lat": 40.7188180, "lon": -73.9752409 }, + { "lat": 40.7188070, "lon": -73.9751790 }, + { "lat": 40.7187961, "lon": -73.9751131 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 452492203, + "bounds": { + "minlat": 40.7384641, + "minlon": -74.0037634, + "maxlat": 40.7387661, + "maxlon": -74.0034031 + }, + "nodes": [ + 4492821528, + 6211332476, + 42431497 + ], + "geometry": [ + { "lat": 40.7384641, "lon": -74.0037634 }, + { "lat": 40.7387090, "lon": -74.0034703 }, + { "lat": 40.7387661, "lon": -74.0034031 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|none", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 452493797, + "bounds": { + "minlat": 40.8001234, + "minlon": -73.9314544, + "maxlat": 40.8004726, + "maxlon": -73.9306326 + }, + "nodes": [ + 42438090, + 7472058110, + 42438095 + ], + "geometry": [ + { "lat": 40.8004726, "lon": -73.9314544 }, + { "lat": 40.8004419, "lon": -73.9313837 }, + { "lat": 40.8001234, "lon": -73.9306326 } + ], + "tags": { + "highway": "residential", + "name": "Paladino Avenue", + "name_1": "Pleasant Avenue", + "old_name:1811-1879": "Avenue A", + "old_name:1879-1954": "Pleasant Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 452493798, + "bounds": { + "minlat": 40.8002752, + "minlon": -73.9322842, + "maxlat": 40.8006925, + "maxlon": -73.9319786 + }, + "nodes": [ + 42438084, + 42438153 + ], + "geometry": [ + { "lat": 40.8002752, "lon": -73.9322842 }, + { "lat": 40.8006925, "lon": -73.9319786 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 452512076, + "bounds": { + "minlat": 40.8014525, + "minlon": -73.9398600, + "maxlat": 40.8037010, + "maxlon": -73.9345304 + }, + "nodes": [ + 42443105, + 4980851556, + 7081737067, + 11273617102, + 42450083, + 11273617105, + 5482291259, + 11343336389, + 10122952972, + 42447207, + 10122952973, + 4980798182, + 42452330 + ], + "geometry": [ + { "lat": 40.8014525, "lon": -73.9345304 }, + { "lat": 40.8015071, "lon": -73.9346584 }, + { "lat": 40.8019441, "lon": -73.9356931 }, + { "lat": 40.8023410, "lon": -73.9366367 }, + { "lat": 40.8023970, "lon": -73.9367700 }, + { "lat": 40.8024554, "lon": -73.9369088 }, + { "lat": 40.8027226, "lon": -73.9375435 }, + { "lat": 40.8029639, "lon": -73.9381116 }, + { "lat": 40.8030393, "lon": -73.9382892 }, + { "lat": 40.8030771, "lon": -73.9383782 }, + { "lat": 40.8031171, "lon": -73.9384732 }, + { "lat": 40.8036722, "lon": -73.9397957 }, + { "lat": 40.8037010, "lon": -73.9398600 } + ], + "tags": { + "highway": "residential", + "name": "East 123rd Street", + "name_1": "East 123 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 452617300, + "bounds": { + "minlat": 40.7482991, + "minlon": -73.9903525, + "maxlat": 40.7483764, + "maxlon": -73.9902930 + }, + "nodes": [ + 4493840518, + 10168911578, + 4493840519 + ], + "geometry": [ + { "lat": 40.7482991, "lon": -73.9903525 }, + { "lat": 40.7483246, "lon": -73.9903328 }, + { "lat": 40.7483764, "lon": -73.9902930 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 452617301, + "bounds": { + "minlat": 40.7472701, + "minlon": -73.9846400, + "maxlat": 40.7475283, + "maxlon": -73.9844555 + }, + "nodes": [ + 4493840510, + 10169157383, + 4493840514 + ], + "geometry": [ + { "lat": 40.7472701, "lon": -73.9846400 }, + { "lat": 40.7474678, "lon": -73.9844985 }, + { "lat": 40.7475283, "lon": -73.9844555 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 452617303, + "bounds": { + "minlat": 40.7469638, + "minlon": -73.9907735, + "maxlat": 40.7470300, + "maxlon": -73.9907251 + }, + "nodes": [ + 4493840503, + 10168911561, + 4493840505 + ], + "geometry": [ + { "lat": 40.7469638, "lon": -73.9907735 }, + { "lat": 40.7470181, "lon": -73.9907340 }, + { "lat": 40.7470300, "lon": -73.9907251 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 453143511, + "bounds": { + "minlat": 40.7132641, + "minlon": -73.9992205, + "maxlat": 40.7134490, + "maxlon": -73.9984987 + }, + "nodes": [ + 530286753, + 1773047070, + 11394592601, + 4158796735, + 4158796733, + 4158796734, + 1773047068, + 4158810017, + 8827539959, + 11153640063, + 588455743 + ], + "geometry": [ + { "lat": 40.7132641, "lon": -73.9992205 }, + { "lat": 40.7132745, "lon": -73.9991434 }, + { "lat": 40.7132762, "lon": -73.9991326 }, + { "lat": 40.7132851, "lon": -73.9990758 }, + { "lat": 40.7132969, "lon": -73.9990083 }, + { "lat": 40.7133097, "lon": -73.9989451 }, + { "lat": 40.7133244, "lon": -73.9988789 }, + { "lat": 40.7133409, "lon": -73.9988181 }, + { "lat": 40.7133670, "lon": -73.9987363 }, + { "lat": 40.7133945, "lon": -73.9986612 }, + { "lat": 40.7134490, "lon": -73.9984987 } + ], + "tags": { + "bicycle": "yes", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "emergency": "designated", + "foot": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle": "private", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "old_name": "Chatham Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 453189431, + "bounds": { + "minlat": 40.7822745, + "minlon": -74.0195469, + "maxlat": 40.7846361, + "maxlon": -74.0144232 + }, + "nodes": [ + 103864302, + 7613768218, + 6885754301, + 7613768220, + 103864300, + 7613768230, + 7229534509, + 7613768236, + 103855590, + 7613768242, + 7613768268, + 103862590 + ], + "geometry": [ + { "lat": 40.7846361, "lon": -74.0195469 }, + { "lat": 40.7845803, "lon": -74.0194345 }, + { "lat": 40.7840907, "lon": -74.0183727 }, + { "lat": 40.7837233, "lon": -74.0175699 }, + { "lat": 40.7836803, "lon": -74.0174759 }, + { "lat": 40.7836440, "lon": -74.0173982 }, + { "lat": 40.7834715, "lon": -74.0170284 }, + { "lat": 40.7830019, "lon": -74.0160297 }, + { "lat": 40.7829602, "lon": -74.0159411 }, + { "lat": 40.7829214, "lon": -74.0158553 }, + { "lat": 40.7823196, "lon": -74.0145282 }, + { "lat": 40.7822745, "lon": -74.0144232 } + ], + "tags": { + "highway": "residential", + "name": "53rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "53rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 453239582, + "bounds": { + "minlat": 40.7367007, + "minlon": -73.9938962, + "maxlat": 40.7369452, + "maxlon": -73.9937245 + }, + "nodes": [ + 4500012798, + 8310246310, + 4500012797 + ], + "geometry": [ + { "lat": 40.7369452, "lon": -73.9937245 }, + { "lat": 40.7368949, "lon": -73.9937598 }, + { "lat": 40.7367007, "lon": -73.9938962 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 453239584, + "bounds": { + "minlat": 40.7316740, + "minlon": -73.9935898, + "maxlat": 40.7318322, + "maxlon": -73.9934705 + }, + "nodes": [ + 4500010382, + 8309478877, + 4500010373 + ], + "geometry": [ + { "lat": 40.7318322, "lon": -73.9934705 }, + { "lat": 40.7317667, "lon": -73.9935202 }, + { "lat": 40.7316740, "lon": -73.9935898 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 453242694, + "bounds": { + "minlat": 40.7313092, + "minlon": -73.9911661, + "maxlat": 40.7315866, + "maxlon": -73.9907476 + }, + "nodes": [ + 4500033344, + 8309479629, + 4500033342, + 4500033339, + 4500033337, + 4500033335, + 4500033336, + 4500033338, + 4500033340, + 4500033341, + 4500033343, + 4500033345, + 4500033346, + 4500033347, + 4500033348 + ], + "geometry": [ + { "lat": 40.7314421, "lon": -73.9907476 }, + { "lat": 40.7313874, "lon": -73.9907903 }, + { "lat": 40.7313777, "lon": -73.9907978 }, + { "lat": 40.7313408, "lon": -73.9908312 }, + { "lat": 40.7313199, "lon": -73.9908819 }, + { "lat": 40.7313092, "lon": -73.9909347 }, + { "lat": 40.7313103, "lon": -73.9909816 }, + { "lat": 40.7313234, "lon": -73.9910166 }, + { "lat": 40.7313575, "lon": -73.9910957 }, + { "lat": 40.7313742, "lon": -73.9911279 }, + { "lat": 40.7314047, "lon": -73.9911520 }, + { "lat": 40.7314448, "lon": -73.9911655 }, + { "lat": 40.7314885, "lon": -73.9911661 }, + { "lat": 40.7315333, "lon": -73.9911362 }, + { "lat": 40.7315866, "lon": -73.9910925 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 453323025, + "bounds": { + "minlat": 40.7159014, + "minlon": -73.9948818, + "maxlat": 40.7164189, + "maxlon": -73.9947504 + }, + "nodes": [ + 588455694, + 9505936176, + 11495928611, + 12196062150, + 11495928615, + 6336172697, + 11495928614, + 1775260897 + ], + "geometry": [ + { "lat": 40.7159014, "lon": -73.9948810 }, + { "lat": 40.7159397, "lon": -73.9948818 }, + { "lat": 40.7159809, "lon": -73.9948780 }, + { "lat": 40.7160473, "lon": -73.9948632 }, + { "lat": 40.7161081, "lon": -73.9948484 }, + { "lat": 40.7161818, "lon": -73.9948282 }, + { "lat": 40.7162471, "lon": -73.9948091 }, + { "lat": 40.7164189, "lon": -73.9947504 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 453367786, + "bounds": { + "minlat": 40.7467884, + "minlon": -73.9740550, + "maxlat": 40.7472945, + "maxlon": -73.9728441 + }, + "nodes": [ + 42442931, + 7640871320, + 9987259789, + 42454006, + 9987259788, + 5129153006, + 5129150834 + ], + "geometry": [ + { "lat": 40.7472945, "lon": -73.9740550 }, + { "lat": 40.7472362, "lon": -73.9739159 }, + { "lat": 40.7469738, "lon": -73.9732877 }, + { "lat": 40.7469395, "lon": -73.9732058 }, + { "lat": 40.7469112, "lon": -73.9731372 }, + { "lat": 40.7468771, "lon": -73.9730564 }, + { "lat": 40.7467884, "lon": -73.9728441 } + ], + "tags": { + "alt_name": "E 38th st", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 38th Street", + "name:ru": "Восточная 38-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 453456963, + "bounds": { + "minlat": 40.7159654, + "minlon": -74.0064080, + "maxlat": 40.7160078, + "maxlon": -74.0063175 + }, + "nodes": [ + 11506537135, + 9823867219, + 11506618905, + 4501889852 + ], + "geometry": [ + { "lat": 40.7159654, "lon": -74.0063175 }, + { "lat": 40.7159855, "lon": -74.0063604 }, + { "lat": 40.7159928, "lon": -74.0063759 }, + { "lat": 40.7160078, "lon": -74.0064080 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 453456967, + "bounds": { + "minlat": 40.7159975, + "minlon": -74.0054873, + "maxlat": 40.7165477, + "maxlon": -74.0050927 + }, + "nodes": [ + 4501889865, + 12353652567, + 8307637677, + 4501889862, + 4501889859, + 4501889857, + 4501889851, + 8307637680, + 12353652544, + 4501889846 + ], + "geometry": [ + { "lat": 40.7165477, "lon": -74.0050927 }, + { "lat": 40.7165060, "lon": -74.0051234 }, + { "lat": 40.7164975, "lon": -74.0051296 }, + { "lat": 40.7164270, "lon": -74.0051814 }, + { "lat": 40.7162494, "lon": -74.0053265 }, + { "lat": 40.7161915, "lon": -74.0053319 }, + { "lat": 40.7160486, "lon": -74.0054451 }, + { "lat": 40.7160303, "lon": -74.0054602 }, + { "lat": 40.7160233, "lon": -74.0054660 }, + { "lat": 40.7159975, "lon": -74.0054873 } + ], + "tags": { + "bicycle": "no", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 453527688, + "bounds": { + "minlat": 40.7279059, + "minlon": -73.9784120, + "maxlat": 40.7281078, + "maxlon": -73.9780535 + }, + "nodes": [ + 4502505663, + 5178498526, + 4502505660, + 4502505665 + ], + "geometry": [ + { "lat": 40.7279945, "lon": -73.9784120 }, + { "lat": 40.7279526, "lon": -73.9783120 }, + { "lat": 40.7279059, "lon": -73.9782007 }, + { "lat": 40.7281078, "lon": -73.9780535 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 453527689, + "bounds": { + "minlat": 40.7279658, + "minlon": -73.9784328, + "maxlat": 40.7282712, + "maxlon": -73.9782115 + }, + "nodes": [ + 5178498525, + 4502505663, + 4502505662 + ], + "geometry": [ + { "lat": 40.7282712, "lon": -73.9782115 }, + { "lat": 40.7279945, "lon": -73.9784120 }, + { "lat": 40.7279658, "lon": -73.9784328 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 453615006, + "bounds": { + "minlat": 40.7420853, + "minlon": -73.9110896, + "maxlat": 40.7422133, + "maxlon": -73.9110621 + }, + "nodes": [ + 276299108, + 11694707598, + 276315698 + ], + "geometry": [ + { "lat": 40.7422133, "lon": -73.9110621 }, + { "lat": 40.7421541, "lon": -73.9110748 }, + { "lat": 40.7420853, "lon": -73.9110896 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "54th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 453615007, + "bounds": { + "minlat": 40.7422133, + "minlon": -73.9110621, + "maxlat": 40.7423401, + "maxlon": -73.9110353 + }, + "nodes": [ + 2807735984, + 276299108 + ], + "geometry": [ + { "lat": 40.7423401, "lon": -73.9110353 }, + { "lat": 40.7422133, "lon": -73.9110621 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "54th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 453615008, + "bounds": { + "minlat": 40.7424645, + "minlon": -73.9119032, + "maxlat": 40.7425810, + "maxlon": -73.9110095 + }, + "nodes": [ + 276299052, + 9986759196, + 276299054 + ], + "geometry": [ + { "lat": 40.7424645, "lon": -73.9110095 }, + { "lat": 40.7424777, "lon": -73.9111052 }, + { "lat": 40.7425810, "lon": -73.9119032 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 453615009, + "bounds": { + "minlat": 40.7423401, + "minlon": -73.9110353, + "maxlat": 40.7424645, + "maxlon": -73.9110095 + }, + "nodes": [ + 276299052, + 11694707597, + 2807735984 + ], + "geometry": [ + { "lat": 40.7424645, "lon": -73.9110095 }, + { "lat": 40.7424287, "lon": -73.9110165 }, + { "lat": 40.7423401, "lon": -73.9110353 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "54th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 453615010, + "bounds": { + "minlat": 40.7420010, + "minlon": -73.9092590, + "maxlat": 40.7421279, + "maxlon": -73.9092318 + }, + "nodes": [ + 2807734606, + 2807734605 + ], + "geometry": [ + { "lat": 40.7421279, "lon": -73.9092318 }, + { "lat": 40.7420010, "lon": -73.9092590 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "56th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 453615011, + "bounds": { + "minlat": 40.7422520, + "minlon": -73.9101229, + "maxlat": 40.7423611, + "maxlon": -73.9092050 + }, + "nodes": [ + 276299050, + 11694707626, + 276299051 + ], + "geometry": [ + { "lat": 40.7422520, "lon": -73.9092050 }, + { "lat": 40.7422632, "lon": -73.9092991 }, + { "lat": 40.7423611, "lon": -73.9101229 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 453615013, + "bounds": { + "minlat": 40.7415276, + "minlon": -73.9075595, + "maxlat": 40.7416725, + "maxlon": -73.9063440 + }, + "nodes": [ + 597414803, + 9986759187, + 10927727716, + 5481949665, + 276299039 + ], + "geometry": [ + { "lat": 40.7416725, "lon": -73.9075595 }, + { "lat": 40.7416582, "lon": -73.9074531 }, + { "lat": 40.7416385, "lon": -73.9072677 }, + { "lat": 40.7415998, "lon": -73.9069356 }, + { "lat": 40.7415276, "lon": -73.9063440 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 453615016, + "bounds": { + "minlat": 40.7420476, + "minlon": -73.9082829, + "maxlat": 40.7421457, + "maxlon": -73.9074523 + }, + "nodes": [ + 276314183, + 9986759191, + 7038557964, + 10927727717, + 9950327868, + 276299049 + ], + "geometry": [ + { "lat": 40.7420476, "lon": -73.9074523 }, + { "lat": 40.7420660, "lon": -73.9075664 }, + { "lat": 40.7420714, "lon": -73.9076538 }, + { "lat": 40.7420918, "lon": -73.9078263 }, + { "lat": 40.7421037, "lon": -73.9079270 }, + { "lat": 40.7421457, "lon": -73.9082829 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 453713921, + "bounds": { + "minlat": 40.7462774, + "minlon": -73.9332677, + "maxlat": 40.7464862, + "maxlon": -73.9322774 + }, + "nodes": [ + 42817750, + 42866361 + ], + "geometry": [ + { "lat": 40.7464862, "lon": -73.9322774 }, + { "lat": 40.7462774, "lon": -73.9332677 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 453937514, + "bounds": { + "minlat": 40.7227578, + "minlon": -73.9869627, + "maxlat": 40.7233374, + "maxlon": -73.9865325 + }, + "nodes": [ + 4505948472, + 7120719170, + 4505948470, + 4505948465 + ], + "geometry": [ + { "lat": 40.7233374, "lon": -73.9865325 }, + { "lat": 40.7232753, "lon": -73.9865785 }, + { "lat": 40.7232576, "lon": -73.9865917 }, + { "lat": 40.7227578, "lon": -73.9869627 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 454031476, + "bounds": { + "minlat": 40.7181637, + "minlon": -73.9938390, + "maxlat": 40.7186246, + "maxlon": -73.9936048 + }, + "nodes": [ + 42452067, + 6369613050, + 12196062124, + 12196062123 + ], + "geometry": [ + { "lat": 40.7181637, "lon": -73.9938390 }, + { "lat": 40.7182350, "lon": -73.9938036 }, + { "lat": 40.7182797, "lon": -73.9937800 }, + { "lat": 40.7186246, "lon": -73.9936048 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 454901174, + "bounds": { + "minlat": 40.7955829, + "minlon": -73.9195887, + "maxlat": 40.7969764, + "maxlon": -73.9185380 + }, + "nodes": [ + 277482339, + 277482103, + 9153856239, + 3039386641, + 9153856238, + 277482104, + 9153856237, + 3039386640, + 9153856240, + 277482105, + 9153856241, + 5906371182, + 3039386415 + ], + "geometry": [ + { "lat": 40.7955829, "lon": -73.9195887 }, + { "lat": 40.7962976, "lon": -73.9187326 }, + { "lat": 40.7963403, "lon": -73.9186893 }, + { "lat": 40.7963928, "lon": -73.9186460 }, + { "lat": 40.7964337, "lon": -73.9186210 }, + { "lat": 40.7964900, "lon": -73.9185945 }, + { "lat": 40.7965467, "lon": -73.9185707 }, + { "lat": 40.7966180, "lon": -73.9185487 }, + { "lat": 40.7966848, "lon": -73.9185421 }, + { "lat": 40.7967373, "lon": -73.9185380 }, + { "lat": 40.7968234, "lon": -73.9185509 }, + { "lat": 40.7968869, "lon": -73.9185637 }, + { "lat": 40.7969764, "lon": -73.9185887 } + ], + "tags": { + "highway": "tertiary", + "name": "Central Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 454901179, + "bounds": { + "minlat": 40.7925576, + "minlon": -73.9235694, + "maxlat": 40.7928528, + "maxlon": -73.9226229 + }, + "nodes": [ + 277482205, + 9156860580, + 9156860578, + 9156860579, + 9153832708, + 8677803010, + 7734748094, + 9153832709, + 9153832710, + 13327578018, + 8603460188, + 7738506172 + ], + "geometry": [ + { "lat": 40.7925576, "lon": -73.9235694 }, + { "lat": 40.7926576, "lon": -73.9234402 }, + { "lat": 40.7926856, "lon": -73.9234092 }, + { "lat": 40.7927134, "lon": -73.9233615 }, + { "lat": 40.7927463, "lon": -73.9233011 }, + { "lat": 40.7927827, "lon": -73.9232158 }, + { "lat": 40.7928095, "lon": -73.9231294 }, + { "lat": 40.7928288, "lon": -73.9230405 }, + { "lat": 40.7928470, "lon": -73.9229442 }, + { "lat": 40.7928462, "lon": -73.9228053 }, + { "lat": 40.7928461, "lon": -73.9227827 }, + { "lat": 40.7928528, "lon": -73.9226229 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "lcn": "yes", + "name": "Central Road", + "oneway": "yes", + "parking:both": "no", + "parking:right:restriction": "no_parking" + } +}, +{ + "type": "way", + "id": 454963832, + "bounds": { + "minlat": 40.7224213, + "minlon": -73.9916699, + "maxlat": 40.7231295, + "maxlon": -73.9913065 + }, + "nodes": [ + 42432083, + 8231896512, + 12195915000, + 6906849816, + 10596183146 + ], + "geometry": [ + { "lat": 40.7224213, "lon": -73.9916699 }, + { "lat": 40.7224713, "lon": -73.9916446 }, + { "lat": 40.7225172, "lon": -73.9916219 }, + { "lat": 40.7226820, "lon": -73.9915373 }, + { "lat": 40.7231295, "lon": -73.9913065 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 455077116, + "bounds": { + "minlat": 40.7080704, + "minlon": -73.9433216, + "maxlat": 40.7084947, + "maxlon": -73.9388669 + }, + "nodes": [ + 42529171, + 6943637616, + 42513654, + 6943637619, + 6943637608, + 42502957, + 6943637611, + 6943611984, + 42467831 + ], + "geometry": [ + { "lat": 40.7084947, "lon": -73.9388669 }, + { "lat": 40.7084006, "lon": -73.9398450 }, + { "lat": 40.7083900, "lon": -73.9399580 }, + { "lat": 40.7083795, "lon": -73.9400681 }, + { "lat": 40.7082382, "lon": -73.9415543 }, + { "lat": 40.7082300, "lon": -73.9416400 }, + { "lat": 40.7082215, "lon": -73.9417294 }, + { "lat": 40.7080800, "lon": -73.9432235 }, + { "lat": 40.7080704, "lon": -73.9433216 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Meserole Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 455098896, + "bounds": { + "minlat": 40.8259560, + "minlon": -73.9433570, + "maxlat": 40.8264027, + "maxlon": -73.9431638 + }, + "nodes": [ + 42432970, + 11218357993, + 4205440427 + ], + "geometry": [ + { "lat": 40.8259560, "lon": -73.9433570 }, + { "lat": 40.8260229, "lon": -73.9433352 }, + { "lat": 40.8264027, "lon": -73.9431638 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:left": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 455098897, + "bounds": { + "minlat": 40.8278230, + "minlon": -73.9419970, + "maxlat": 40.8301929, + "maxlon": -73.9402680 + }, + "nodes": [ + 42427883, + 11218752299, + 11218709948, + 42427888, + 11218709957, + 11218718849, + 42427891, + 11218718848, + 10079540194, + 10079540192 + ], + "geometry": [ + { "lat": 40.8278230, "lon": -73.9419970 }, + { "lat": 40.8278843, "lon": -73.9419521 }, + { "lat": 40.8283936, "lon": -73.9415791 }, + { "lat": 40.8284470, "lon": -73.9415400 }, + { "lat": 40.8285086, "lon": -73.9414951 }, + { "lat": 40.8290149, "lon": -73.9411274 }, + { "lat": 40.8290830, "lon": -73.9410780 }, + { "lat": 40.8291378, "lon": -73.9410381 }, + { "lat": 40.8300532, "lon": -73.9403700 }, + { "lat": 40.8301929, "lon": -73.9402680 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "Saint Nicholas Place", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 455098899, + "bounds": { + "minlat": 40.8688490, + "minlon": -73.9315115, + "maxlat": 40.8690931, + "maxlon": -73.9312243 + }, + "nodes": [ + 4515465266, + 5608275788, + 42425959 + ], + "geometry": [ + { "lat": 40.8688490, "lon": -73.9312243 }, + { "lat": 40.8690685, "lon": -73.9314826 }, + { "lat": 40.8690931, "lon": -73.9315115 } + ], + "tags": { + "bicycle": "designated", + "highway": "unclassified", + "name": "Dyckman Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 455122830, + "bounds": { + "minlat": 40.7580289, + "minlon": -73.9684914, + "maxlat": 40.7589600, + "maxlon": -73.9662476 + }, + "nodes": [ + 42442959, + 10168544047, + 10006361877, + 10006361871, + 10006361878, + 9075938182, + 11336621689, + 42448379 + ], + "geometry": [ + { "lat": 40.7580289, "lon": -73.9662476 }, + { "lat": 40.7580824, "lon": -73.9663765 }, + { "lat": 40.7583910, "lon": -73.9671202 }, + { "lat": 40.7584415, "lon": -73.9672420 }, + { "lat": 40.7584759, "lon": -73.9673247 }, + { "lat": 40.7586489, "lon": -73.9677418 }, + { "lat": 40.7588976, "lon": -73.9683412 }, + { "lat": 40.7589600, "lon": -73.9684914 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 55th Street", + "name:ru": "Восточная 55-я стрит", + "name_1": "East 55 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "10", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 455125048, + "bounds": { + "minlat": 40.7580289, + "minlon": -73.9662476, + "maxlat": 40.7586470, + "maxlon": -73.9657958 + }, + "nodes": [ + 42442960, + 9216586544, + 10168544045, + 42442959 + ], + "geometry": [ + { "lat": 40.7586470, "lon": -73.9657958 }, + { "lat": 40.7585825, "lon": -73.9658435 }, + { "lat": 40.7580771, "lon": -73.9662124 }, + { "lat": 40.7580289, "lon": -73.9662476 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "||||right", + "width": "21", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 455501315, + "bounds": { + "minlat": 40.7117008, + "minlon": -74.0070680, + "maxlat": 40.7117945, + "maxlon": -74.0069661 + }, + "nodes": [ + 42443844, + 2821304143 + ], + "geometry": [ + { "lat": 40.7117008, "lon": -74.0069661 }, + { "lat": 40.7117945, "lon": -74.0070680 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Beekman Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "비크먼 스트리트", + "name:ru": "Бикман-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 455501322, + "bounds": { + "minlat": 40.7114635, + "minlon": -74.0079458, + "maxlat": 40.7117008, + "maxlon": -74.0069661 + }, + "nodes": [ + 588545728, + 9364517375, + 42443844 + ], + "geometry": [ + { "lat": 40.7114635, "lon": -74.0079458 }, + { "lat": 40.7116677, "lon": -74.0070999 }, + { "lat": 40.7117008, "lon": -74.0069661 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 455501328, + "bounds": { + "minlat": 40.7117945, + "minlon": -74.0070680, + "maxlat": 40.7120310, + "maxlon": -74.0061073 + }, + "nodes": [ + 2821304145, + 10297381569, + 3942249552, + 2821304144, + 2821304143 + ], + "geometry": [ + { "lat": 40.7120310, "lon": -74.0061073 }, + { "lat": 40.7120237, "lon": -74.0061426 }, + { "lat": 40.7120142, "lon": -74.0061897 }, + { "lat": 40.7118202, "lon": -74.0069624 }, + { "lat": 40.7117945, "lon": -74.0070680 } + ], + "tags": { + "cycleway:right": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 455674352, + "bounds": { + "minlat": 40.8041328, + "minlon": -73.9667983, + "maxlat": 40.8042152, + "maxlon": -73.9666013 + }, + "nodes": [ + 42428782, + 3579432156 + ], + "geometry": [ + { "lat": 40.8042152, "lon": -73.9667983 }, + { "lat": 40.8041328, "lon": -73.9666013 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 455675302, + "bounds": { + "minlat": 40.8104994, + "minlon": -73.9621587, + "maxlat": 40.8105801, + "maxlon": -73.9619636 + }, + "nodes": [ + 1504153604, + 1506591536 + ], + "geometry": [ + { "lat": 40.8104994, "lon": -73.9619636 }, + { "lat": 40.8105801, "lon": -73.9621587 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 120th Street", + "name:ru": "Западная 120-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 455675581, + "bounds": { + "minlat": 40.7939310, + "minlon": -73.9723990, + "maxlat": 40.7940312, + "maxlon": -73.9721589 + }, + "nodes": [ + 42428711, + 8687882721, + 8687882720, + 1061531593 + ], + "geometry": [ + { "lat": 40.7940312, "lon": -73.9723990 }, + { "lat": 40.7940091, "lon": -73.9723461 }, + { "lat": 40.7939585, "lon": -73.9722249 }, + { "lat": 40.7939310, "lon": -73.9721589 } + ], + "tags": { + "alt_name": "West 95 Street", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "3", + "name": "West 95th Street", + "name:ru": "Западная 95-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4646040", + "wikipedia": "en:95th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 455678353, + "bounds": { + "minlat": 40.7608441, + "minlon": -73.9665890, + "maxlat": 40.7615618, + "maxlon": -73.9648675 + }, + "nodes": [ + 4288677093, + 8133385394, + 6186989597, + 6488698202 + ], + "geometry": [ + { "lat": 40.7615618, "lon": -73.9665890 }, + { "lat": 40.7615046, "lon": -73.9664519 }, + { "lat": 40.7614116, "lon": -73.9662288 }, + { "lat": 40.7608441, "lon": -73.9648675 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 455684726, + "bounds": { + "minlat": 40.8315650, + "minlon": -73.9465803, + "maxlat": 40.8327323, + "maxlon": -73.9457489 + }, + "nodes": [ + 9682921006, + 11191773496, + 561035370 + ], + "geometry": [ + { "lat": 40.8315650, "lon": -73.9465803 }, + { "lat": 40.8326437, "lon": -73.9458120 }, + { "lat": 40.8327323, "lon": -73.9457489 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "turn:lanes": "through||", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 455684727, + "bounds": { + "minlat": 40.8296605, + "minlon": -73.9470934, + "maxlat": 40.8307872, + "maxlon": -73.9444226 + }, + "nodes": [ + 13239330544, + 11191773446, + 11221649601, + 13239330545 + ], + "geometry": [ + { "lat": 40.8307872, "lon": -73.9470934 }, + { "lat": 40.8307673, "lon": -73.9470462 }, + { "lat": 40.8297000, "lon": -73.9445164 }, + { "lat": 40.8296605, "lon": -73.9444226 } + ], + "tags": { + "alt_name": "Mildred Sutherland Way", + "description": "This honorary street name memorializes Mildred Sutherland.", + "highway": "residential", + "name": "West 152nd Street", + "name_1": "West 152 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "152nd", + "tiger:name_base_1": "152", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 455684728, + "bounds": { + "minlat": 40.8308954, + "minlon": -73.9492560, + "maxlat": 40.8316950, + "maxlon": -73.9473375 + }, + "nodes": [ + 42441777, + 11191809980, + 11191773451, + 42428951 + ], + "geometry": [ + { "lat": 40.8316950, "lon": -73.9492560 }, + { "lat": 40.8316733, "lon": -73.9492012 }, + { "lat": 40.8309349, "lon": -73.9474322 }, + { "lat": 40.8308954, "lon": -73.9473375 } + ], + "tags": { + "highway": "residential", + "name": "West 152nd Street", + "name_1": "West 152 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "152nd", + "tiger:name_base_1": "152", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 455684729, + "bounds": { + "minlat": 40.8315206, + "minlon": -73.9468720, + "maxlat": 40.8325065, + "maxlon": -73.9461559 + }, + "nodes": [ + 9263279180, + 11191773478, + 42428953 + ], + "geometry": [ + { "lat": 40.8325065, "lon": -73.9461559 }, + { "lat": 40.8315743, "lon": -73.9468330 }, + { "lat": 40.8315206, "lon": -73.9468720 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 455685737, + "bounds": { + "minlat": 40.8315742, + "minlon": -73.9452527, + "maxlat": 40.8325242, + "maxlon": -73.9429722 + }, + "nodes": [ + 42442651, + 11193685099, + 12234234283 + ], + "geometry": [ + { "lat": 40.8315742, "lon": -73.9429722 }, + { "lat": 40.8316294, "lon": -73.9431101 }, + { "lat": 40.8325242, "lon": -73.9452527 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 455687907, + "bounds": { + "minlat": 40.8189320, + "minlon": -73.9522115, + "maxlat": 40.8245499, + "maxlon": -73.9480922 + }, + "nodes": [ + 42438836, + 7260975610, + 8835729527, + 10170977577, + 42442604, + 10170977575, + 11221649620, + 10170703041, + 42435940, + 10170703044, + 10181632173, + 42442609, + 10181632172, + 10181632166, + 42433797, + 10181632167, + 10172767660, + 42442613, + 10172767659, + 11221649615, + 42438292, + 11221649616, + 10743755749, + 42442618, + 10743755751, + 11200341572, + 42442621 + ], + "geometry": [ + { "lat": 40.8189320, "lon": -73.9522115 }, + { "lat": 40.8189892, "lon": -73.9521696 }, + { "lat": 40.8190089, "lon": -73.9521547 }, + { "lat": 40.8195067, "lon": -73.9517776 }, + { "lat": 40.8195669, "lon": -73.9517315 }, + { "lat": 40.8196367, "lon": -73.9516800 }, + { "lat": 40.8201559, "lon": -73.9512998 }, + { "lat": 40.8207488, "lon": -73.9508687 }, + { "lat": 40.8208228, "lon": -73.9508143 }, + { "lat": 40.8208732, "lon": -73.9507774 }, + { "lat": 40.8213889, "lon": -73.9504003 }, + { "lat": 40.8214397, "lon": -73.9503643 }, + { "lat": 40.8215052, "lon": -73.9503180 }, + { "lat": 40.8220091, "lon": -73.9499478 }, + { "lat": 40.8220613, "lon": -73.9499097 }, + { "lat": 40.8221270, "lon": -73.9498612 }, + { "lat": 40.8226298, "lon": -73.9494945 }, + { "lat": 40.8226821, "lon": -73.9494564 }, + { "lat": 40.8227501, "lon": -73.9494066 }, + { "lat": 40.8232597, "lon": -73.9490345 }, + { "lat": 40.8233158, "lon": -73.9489935 }, + { "lat": 40.8233703, "lon": -73.9489542 }, + { "lat": 40.8238857, "lon": -73.9485820 }, + { "lat": 40.8239409, "lon": -73.9485422 }, + { "lat": 40.8239928, "lon": -73.9485039 }, + { "lat": 40.8245080, "lon": -73.9481231 }, + { "lat": 40.8245499, "lon": -73.9480922 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 455688156, + "bounds": { + "minlat": 40.8201617, + "minlon": -73.9574917, + "maxlat": 40.8211600, + "maxlon": -73.9551864 + }, + "nodes": [ + 42428892, + 10168100426, + 7230014862, + 10055013017, + 7620631148 + ], + "geometry": [ + { "lat": 40.8201617, "lon": -73.9551864 }, + { "lat": 40.8201933, "lon": -73.9552628 }, + { "lat": 40.8202623, "lon": -73.9554295 }, + { "lat": 40.8210856, "lon": -73.9573977 }, + { "lat": 40.8211600, "lon": -73.9574917 } + ], + "tags": { + "highway": "tertiary", + "name": "West 135th Street", + "name_1": "West 135 Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 455688829, + "bounds": { + "minlat": 40.7651059, + "minlon": -73.9519986, + "maxlat": 40.7652163, + "maxlon": -73.9518996 + }, + "nodes": [ + 371196888, + 13149429670 + ], + "geometry": [ + { "lat": 40.7651059, "lon": -73.9519986 }, + { "lat": 40.7652163, "lon": -73.9518996 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 455688830, + "bounds": { + "minlat": 40.7655796, + "minlon": -73.9517249, + "maxlat": 40.7664274, + "maxlon": -73.9509726 + }, + "nodes": [ + 3785451338, + 42451313, + 13149429669 + ], + "geometry": [ + { "lat": 40.7664274, "lon": -73.9509726 }, + { "lat": 40.7658490, "lon": -73.9514797 }, + { "lat": 40.7655796, "lon": -73.9517249 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 455688831, + "bounds": { + "minlat": 40.7686593, + "minlon": -73.9490212, + "maxlat": 40.7699455, + "maxlon": -73.9478368 + }, + "nodes": [ + 371198305, + 9906953432, + 3785454974, + 3785454977, + 3785454978, + 3785454979 + ], + "geometry": [ + { "lat": 40.7686593, "lon": -73.9490212 }, + { "lat": 40.7687446, "lon": -73.9489437 }, + { "lat": 40.7688298, "lon": -73.9488661 }, + { "lat": 40.7695183, "lon": -73.9482310 }, + { "lat": 40.7697767, "lon": -73.9479981 }, + { "lat": 40.7699455, "lon": -73.9478368 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxheight": "12'0\"", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 455688832, + "bounds": { + "minlat": 40.7687032, + "minlon": -73.9491341, + "maxlat": 40.7695256, + "maxlon": -73.9483847 + }, + "nodes": [ + 42451295, + 3785451352, + 9142744764, + 3785451351, + 42424145 + ], + "geometry": [ + { "lat": 40.7695256, "lon": -73.9483847 }, + { "lat": 40.7693370, "lon": -73.9485548 }, + { "lat": 40.7691539, "lon": -73.9487240 }, + { "lat": 40.7689735, "lon": -73.9488869 }, + { "lat": 40.7687032, "lon": -73.9491341 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 455688835, + "bounds": { + "minlat": 40.7699455, + "minlon": -73.9478368, + "maxlat": 40.7718282, + "maxlon": -73.9458966 + }, + "nodes": [ + 3785454979, + 371198306, + 371198308, + 371198309, + 371198310, + 371198311, + 3785454981, + 3785454982, + 371198785 + ], + "geometry": [ + { "lat": 40.7699455, "lon": -73.9478368 }, + { "lat": 40.7701043, "lon": -73.9476640 }, + { "lat": 40.7702700, "lon": -73.9474968 }, + { "lat": 40.7710408, "lon": -73.9467906 }, + { "lat": 40.7712124, "lon": -73.9466289 }, + { "lat": 40.7713699, "lon": -73.9464602 }, + { "lat": 40.7715242, "lon": -73.9462682 }, + { "lat": 40.7716825, "lon": -73.9460715 }, + { "lat": 40.7718282, "lon": -73.9458966 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxheight": "11'11\"", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 455688838, + "bounds": { + "minlat": 40.7695256, + "minlon": -73.9483847, + "maxlat": 40.7714919, + "maxlon": -73.9464933 + }, + "nodes": [ + 42451280, + 3785454963, + 3785454962, + 3785454961, + 9142744761, + 9142744762, + 9142744763, + 42451287, + 3785454959, + 42451295 + ], + "geometry": [ + { "lat": 40.7714919, "lon": -73.9464933 }, + { "lat": 40.7714092, "lon": -73.9465915 }, + { "lat": 40.7713205, "lon": -73.9466871 }, + { "lat": 40.7712336, "lon": -73.9467727 }, + { "lat": 40.7705978, "lon": -73.9473580 }, + { "lat": 40.7704181, "lon": -73.9475237 }, + { "lat": 40.7702415, "lon": -73.9476879 }, + { "lat": 40.7700663, "lon": -73.9478736 }, + { "lat": 40.7698893, "lon": -73.9480504 }, + { "lat": 40.7695256, "lon": -73.9483847 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxheight": "12'2\"", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 455689184, + "bounds": { + "minlat": 40.8100023, + "minlon": -73.9587270, + "maxlat": 40.8103676, + "maxlon": -73.9584627 + }, + "nodes": [ + 3579432161, + 7004347455, + 13819634934 + ], + "geometry": [ + { "lat": 40.8100023, "lon": -73.9587270 }, + { "lat": 40.8100677, "lon": -73.9586791 }, + { "lat": 40.8103676, "lon": -73.9584627 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 455689187, + "bounds": { + "minlat": 40.8364636, + "minlon": -73.9192020, + "maxlat": 40.8376690, + "maxlon": -73.9160533 + }, + "nodes": [ + 42726506, + 13018351076, + 42733755, + 13018351078, + 8285614934, + 13534990441, + 12739283299, + 13534990445, + 2408369219 + ], + "geometry": [ + { "lat": 40.8376690, "lon": -73.9192020 }, + { "lat": 40.8371885, "lon": -73.9179337 }, + { "lat": 40.8371560, "lon": -73.9178480 }, + { "lat": 40.8371296, "lon": -73.9177797 }, + { "lat": 40.8367836, "lon": -73.9168830 }, + { "lat": 40.8365272, "lon": -73.9162188 }, + { "lat": 40.8365009, "lon": -73.9161502 }, + { "lat": 40.8364754, "lon": -73.9160839 }, + { "lat": 40.8364636, "lon": -73.9160533 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "horse": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 169th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 456244377, + "bounds": { + "minlat": 40.6995973, + "minlon": -73.9736350, + "maxlat": 40.7004608, + "maxlon": -73.9726444 + }, + "nodes": [ + 42530006, + 9998803719, + 9977620208, + 9678649975, + 9678649929, + 9998788864, + 42496969 + ], + "geometry": [ + { "lat": 40.6995973, "lon": -73.9726444 }, + { "lat": 40.6996818, "lon": -73.9727398 }, + { "lat": 40.7000237, "lon": -73.9731260 }, + { "lat": 40.7002007, "lon": -73.9733326 }, + { "lat": 40.7003356, "lon": -73.9734966 }, + { "lat": 40.7003885, "lon": -73.9735566 }, + { "lat": 40.7004608, "lon": -73.9736350 } + ], + "tags": { + "access": "private", + "bus": "yes", + "cycleway": "shared_lane", + "highway": "unclassified", + "lanes": "2", + "name": "Market Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Market", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 456308943, + "bounds": { + "minlat": 40.7395079, + "minlon": -73.9894421, + "maxlat": 40.7406193, + "maxlon": -73.9868123 + }, + "nodes": [ + 42428198, + 3857400409, + 10177726903, + 13650254897, + 10166167550, + 4597668040, + 42440323 + ], + "geometry": [ + { "lat": 40.7406193, "lon": -73.9894421 }, + { "lat": 40.7405438, "lon": -73.9892636 }, + { "lat": 40.7404033, "lon": -73.9889309 }, + { "lat": 40.7396007, "lon": -73.9870320 }, + { "lat": 40.7395850, "lon": -73.9869948 }, + { "lat": 40.7395448, "lon": -73.9868997 }, + { "lat": 40.7395079, "lon": -73.9868123 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 22nd Street", + "name:ru": "Восточная 22-я стрит", + "name_1": "East 22 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 456308944, + "bounds": { + "minlat": 40.7391622, + "minlon": -73.9870659, + "maxlat": 40.7395079, + "maxlon": -73.9868123 + }, + "nodes": [ + 5307048043, + 12181339167, + 10166167546, + 42440323 + ], + "geometry": [ + { "lat": 40.7391622, "lon": -73.9870659 }, + { "lat": 40.7394151, "lon": -73.9868812 }, + { "lat": 40.7394571, "lon": -73.9868506 }, + { "lat": 40.7395079, "lon": -73.9868123 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 456308945, + "bounds": { + "minlat": 40.7395079, + "minlon": -73.9868123, + "maxlat": 40.7399107, + "maxlon": -73.9865065 + }, + "nodes": [ + 42440323, + 10166167548, + 12181339170, + 12181339172 + ], + "geometry": [ + { "lat": 40.7395079, "lon": -73.9868123 }, + { "lat": 40.7395647, "lon": -73.9867700 }, + { "lat": 40.7398265, "lon": -73.9865786 }, + { "lat": 40.7399107, "lon": -73.9865065 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through||", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 456313635, + "bounds": { + "minlat": 40.7212780, + "minlon": -73.9834869, + "maxlat": 40.7214368, + "maxlon": -73.9829678 + }, + "nodes": [ + 3783071109, + 4215580880 + ], + "geometry": [ + { "lat": 40.7212780, "lon": -73.9829678 }, + { "lat": 40.7214368, "lon": -73.9834869 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 456313638, + "bounds": { + "minlat": 40.7209056, + "minlon": -73.9830269, + "maxlat": 40.7211632, + "maxlon": -73.9821814 + }, + "nodes": [ + 1919595912, + 3783146159, + 1919595923 + ], + "geometry": [ + { "lat": 40.7211632, "lon": -73.9830269 }, + { "lat": 40.7211373, "lon": -73.9829394 }, + { "lat": 40.7209056, "lon": -73.9821814 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 456315007, + "bounds": { + "minlat": 40.7221638, + "minlon": -73.9863339, + "maxlat": 40.7222849, + "maxlon": -73.9862671 + }, + "nodes": [ + 9166033062, + 9166033061 + ], + "geometry": [ + { "lat": 40.7222849, "lon": -73.9862671 }, + { "lat": 40.7221638, "lon": -73.9863339 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Essex Street", + "name:etymology:wikidata": "Q23240", + "name:ko": "에식스 스트리트", + "name:ru": "Эссекс-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4532801", + "wikipedia": "en:Essex Street" + } +}, +{ + "type": "way", + "id": 456409016, + "bounds": { + "minlat": 40.7567628, + "minlon": -73.9690254, + "maxlat": 40.7575488, + "maxlon": -73.9671663 + }, + "nodes": [ + 42436710, + 10168544040, + 7852760827, + 4207124945 + ], + "geometry": [ + { "lat": 40.7567628, "lon": -73.9671663 }, + { "lat": 40.7568217, "lon": -73.9672879 }, + { "lat": 40.7572985, "lon": -73.9684265 }, + { "lat": 40.7575488, "lon": -73.9690254 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 53rd Street", + "name:ru": "Восточная 53-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 456409017, + "bounds": { + "minlat": 40.7548770, + "minlon": -73.9685200, + "maxlat": 40.7561457, + "maxlon": -73.9676181 + }, + "nodes": [ + 42442955, + 10168544022, + 6746980153, + 42440465, + 6746980152, + 10593756781, + 9496073806, + 10168544028, + 42442952 + ], + "geometry": [ + { "lat": 40.7561457, "lon": -73.9676181 }, + { "lat": 40.7560820, "lon": -73.9676625 }, + { "lat": 40.7555658, "lon": -73.9680200 }, + { "lat": 40.7555038, "lon": -73.9680652 }, + { "lat": 40.7554476, "lon": -73.9681061 }, + { "lat": 40.7552491, "lon": -73.9682501 }, + { "lat": 40.7550648, "lon": -73.9683837 }, + { "lat": 40.7549346, "lon": -73.9684792 }, + { "lat": 40.7548770, "lon": -73.9685200 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 456447349, + "bounds": { + "minlat": 40.7535471, + "minlon": -73.9994891, + "maxlat": 40.7538677, + "maxlon": -73.9987292 + }, + "nodes": [ + 427845236, + 8261122521 + ], + "geometry": [ + { "lat": 40.7535471, "lon": -73.9987292 }, + { "lat": 40.7538677, "lon": -73.9994891 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 457415003, + "bounds": { + "minlat": 40.7939811, + "minlon": -74.0098218, + "maxlat": 40.7942966, + "maxlon": -74.0091461 + }, + "nodes": [ + 4535665199, + 7678243104, + 4535665200 + ], + "geometry": [ + { "lat": 40.7939811, "lon": -74.0091461 }, + { "lat": 40.7942750, "lon": -74.0097755 }, + { "lat": 40.7942966, "lon": -74.0098218 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 457937084, + "bounds": { + "minlat": 40.7233719, + "minlon": -73.9910751, + "maxlat": 40.7236015, + "maxlon": -73.9902968 + }, + "nodes": [ + 1918039877, + 5798966627, + 8821475421, + 5783028385, + 1918039896 + ], + "geometry": [ + { "lat": 40.7236015, "lon": -73.9910751 }, + { "lat": 40.7235595, "lon": -73.9909195 }, + { "lat": 40.7234251, "lon": -73.9904797 }, + { "lat": 40.7234085, "lon": -73.9904238 }, + { "lat": 40.7233719, "lon": -73.9902968 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 457937088, + "bounds": { + "minlat": 40.7190456, + "minlon": -73.9933726, + "maxlat": 40.7190796, + "maxlon": -73.9932612 + }, + "nodes": [ + 42432085, + 13031223579, + 4539951607 + ], + "geometry": [ + { "lat": 40.7190796, "lon": -73.9933726 }, + { "lat": 40.7190490, "lon": -73.9932722 }, + { "lat": 40.7190456, "lon": -73.9932612 } + ], + "tags": { + "bicycle": "yes", + "highway": "pedestrian", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ru": "Брум-стрит", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 457948936, + "bounds": { + "minlat": 40.7466071, + "minlon": -73.9745526, + "maxlat": 40.7466849, + "maxlon": -73.9744963 + }, + "nodes": [ + 42442918, + 4540059459, + 11956649238 + ], + "geometry": [ + { "lat": 40.7466849, "lon": -73.9744963 }, + { "lat": 40.7466220, "lon": -73.9745426 }, + { "lat": 40.7466071, "lon": -73.9745526 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "change:lanes": "no|no|not_left|yes|yes|yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 458071363, + "bounds": { + "minlat": 40.7362087, + "minlon": -73.9352012, + "maxlat": 40.7369967, + "maxlon": -73.9330679 + }, + "nodes": [ + 42866699, + 9982697948, + 7725555873, + 8097303868, + 9982697949, + 42866705 + ], + "geometry": [ + { "lat": 40.7369967, "lon": -73.9330679 }, + { "lat": 40.7369663, "lon": -73.9331517 }, + { "lat": 40.7365614, "lon": -73.9342620 }, + { "lat": 40.7362583, "lon": -73.9350671 }, + { "lat": 40.7362368, "lon": -73.9351226 }, + { "lat": 40.7362087, "lon": -73.9352012 } + ], + "tags": { + "highway": "residential", + "name": "35th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 458106344, + "bounds": { + "minlat": 40.7440255, + "minlon": -74.0022968, + "maxlat": 40.7452350, + "maxlon": -73.9994132 + }, + "nodes": [ + 5849918502, + 10171509278, + 12181309671, + 10168486343, + 42443674 + ], + "geometry": [ + { "lat": 40.7440255, "lon": -73.9994132 }, + { "lat": 40.7440827, "lon": -73.9995538 }, + { "lat": 40.7451408, "lon": -74.0020736 }, + { "lat": 40.7451632, "lon": -74.0021260 }, + { "lat": 40.7452350, "lon": -74.0022968 } + ], + "tags": { + "alt_name": "West 21 Street", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (Mo-Fr 08:00-12:00)", + "name": "West 21st Street", + "name:ru": "Западная 21-я стрит", + "oneway": "yes", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 458106345, + "bounds": { + "minlat": 40.7428467, + "minlon": -74.0059600, + "maxlat": 40.7452310, + "maxlon": -74.0002679 + }, + "nodes": [ + 42435610, + 10171509287, + 10168486404, + 42444916, + 10168486407, + 4555501893, + 4555501898, + 4555542101, + 4555501902, + 10168486367, + 42454381 + ], + "geometry": [ + { "lat": 40.7428467, "lon": -74.0002679 }, + { "lat": 40.7429039, "lon": -74.0004045 }, + { "lat": 40.7439807, "lon": -74.0029750 }, + { "lat": 40.7440561, "lon": -74.0031552 }, + { "lat": 40.7440929, "lon": -74.0032430 }, + { "lat": 40.7443296, "lon": -74.0038081 }, + { "lat": 40.7444225, "lon": -74.0040299 }, + { "lat": 40.7445390, "lon": -74.0043080 }, + { "lat": 40.7445598, "lon": -74.0043576 }, + { "lat": 40.7451783, "lon": -74.0058341 }, + { "lat": 40.7452310, "lon": -74.0059600 } + ], + "tags": { + "alt_name": "West 19 Street", + "cycleway:right": "no", + "hgv": "delivery", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 19th Street", + "name:ru": "Западная 19-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 458106346, + "bounds": { + "minlat": 40.7416736, + "minlon": -74.0068110, + "maxlat": 40.7440610, + "maxlon": -74.0011226 + }, + "nodes": [ + 42435603, + 9774113889, + 4205565517, + 8262308805, + 11986125264, + 8262308811, + 4601466496, + 42439280, + 8262308816, + 4555581039, + 4555581040, + 4555581043, + 4555581045, + 5103334974, + 8261123438, + 42439286 + ], + "geometry": [ + { "lat": 40.7416736, "lon": -74.0011226 }, + { "lat": 40.7417075, "lon": -74.0012002 }, + { "lat": 40.7417223, "lon": -74.0012340 }, + { "lat": 40.7417316, "lon": -74.0012561 }, + { "lat": 40.7423383, "lon": -74.0027023 }, + { "lat": 40.7428126, "lon": -74.0038329 }, + { "lat": 40.7428306, "lon": -74.0038757 }, + { "lat": 40.7428829, "lon": -74.0039992 }, + { "lat": 40.7429294, "lon": -74.0041101 }, + { "lat": 40.7431274, "lon": -74.0045827 }, + { "lat": 40.7431561, "lon": -74.0046512 }, + { "lat": 40.7432519, "lon": -74.0048798 }, + { "lat": 40.7433415, "lon": -74.0050937 }, + { "lat": 40.7436413, "lon": -74.0058093 }, + { "lat": 40.7440112, "lon": -74.0066921 }, + { "lat": 40.7440610, "lon": -74.0068110 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 17th Street", + "name:ru": "Западная 17-я стрит", + "name_1": "West 17 Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 458106347, + "bounds": { + "minlat": 40.7404441, + "minlon": -74.0048213, + "maxlat": 40.7416415, + "maxlon": -74.0019879 + }, + "nodes": [ + 42435598, + 4205565513, + 8262308761, + 8262308746, + 3874589908, + 387180916 + ], + "geometry": [ + { "lat": 40.7404441, "lon": -74.0019879 }, + { "lat": 40.7405031, "lon": -74.0021253 }, + { "lat": 40.7405145, "lon": -74.0021523 }, + { "lat": 40.7415989, "lon": -74.0047205 }, + { "lat": 40.7416247, "lon": -74.0047815 }, + { "lat": 40.7416415, "lon": -74.0048213 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 15th Street", + "name:ru": "Западная 15-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 458106348, + "bounds": { + "minlat": 40.7397428, + "minlon": -74.0051364, + "maxlat": 40.7408488, + "maxlon": -74.0024948 + }, + "nodes": [ + 42435596, + 8310246336, + 11040029963, + 8431296950, + 12162436965, + 4634753634, + 42436439 + ], + "geometry": [ + { "lat": 40.7397428, "lon": -74.0024948 }, + { "lat": 40.7398087, "lon": -74.0026637 }, + { "lat": 40.7399404, "lon": -74.0029836 }, + { "lat": 40.7399972, "lon": -74.0031216 }, + { "lat": 40.7407786, "lon": -74.0049754 }, + { "lat": 40.7408070, "lon": -74.0050428 }, + { "lat": 40.7408488, "lon": -74.0051364 } + ], + "tags": { + "bus": "yes", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:backward:conditional": "destination @ (06:00-22:00)", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 458166892, + "bounds": { + "minlat": 40.7484537, + "minlon": -73.9845455, + "maxlat": 40.7497277, + "maxlon": -73.9836173 + }, + "nodes": [ + 42452973, + 9856196746, + 9965135062, + 42434946, + 9965135064, + 8133342837, + 42437644 + ], + "geometry": [ + { "lat": 40.7497277, "lon": -73.9836173 }, + { "lat": 40.7496616, "lon": -73.9836653 }, + { "lat": 40.7491628, "lon": -73.9840280 }, + { "lat": 40.7491045, "lon": -73.9840705 }, + { "lat": 40.7490528, "lon": -73.9841077 }, + { "lat": 40.7485303, "lon": -73.9844880 }, + { "lat": 40.7484537, "lon": -73.9845455 } + ], + "tags": { + "access:lanes": "yes|yes|yes|no|no", + "bus:lanes": "yes|yes|yes|designated|designated", + "hgv": "no", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 458166893, + "bounds": { + "minlat": 40.7479133, + "minlon": -73.9820225, + "maxlat": 40.7490548, + "maxlon": -73.9793171 + }, + "nodes": [ + 42445908, + 11336685988, + 12181374932, + 11273068449, + 561042193, + 12181374934, + 42458333, + 11273068444, + 12181374933, + 5057315765 + ], + "geometry": [ + { "lat": 40.7490548, "lon": -73.9820225 }, + { "lat": 40.7490128, "lon": -73.9819229 }, + { "lat": 40.7484784, "lon": -73.9806564 }, + { "lat": 40.7484521, "lon": -73.9805939 }, + { "lat": 40.7484136, "lon": -73.9805029 }, + { "lat": 40.7483578, "lon": -73.9803705 }, + { "lat": 40.7483359, "lon": -73.9803186 }, + { "lat": 40.7482954, "lon": -73.9802227 }, + { "lat": 40.7482781, "lon": -73.9801817 }, + { "lat": 40.7479133, "lon": -73.9793171 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 36th Street", + "name:ru": "Восточная 36-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 458166894, + "bounds": { + "minlat": 40.7490548, + "minlon": -73.9820225, + "maxlat": 40.7496645, + "maxlon": -73.9815704 + }, + "nodes": [ + 42445908, + 11336685989, + 4903169922, + 42445909 + ], + "geometry": [ + { "lat": 40.7490548, "lon": -73.9820225 }, + { "lat": 40.7491107, "lon": -73.9819800 }, + { "lat": 40.7496100, "lon": -73.9816113 }, + { "lat": 40.7496645, "lon": -73.9815704 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 458166895, + "bounds": { + "minlat": 40.7470130, + "minlon": -73.9788036, + "maxlat": 40.7476966, + "maxlon": -73.9771862 + }, + "nodes": [ + 42446941, + 11273068440, + 42445855, + 12187343190, + 11273068439, + 42449932 + ], + "geometry": [ + { "lat": 40.7476966, "lon": -73.9788036 }, + { "lat": 40.7476454, "lon": -73.9786821 }, + { "lat": 40.7472801, "lon": -73.9778160 }, + { "lat": 40.7470954, "lon": -73.9773780 }, + { "lat": 40.7470708, "lon": -73.9773197 }, + { "lat": 40.7470130, "lon": -73.9771862 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 36th Street", + "name:ru": "Восточная 36-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 458166896, + "bounds": { + "minlat": 40.7445045, + "minlon": -73.9811202, + "maxlat": 40.7464063, + "maxlon": -73.9797439 + }, + "nodes": [ + 42445374, + 8119462506, + 8996587919, + 12183285328, + 8133342846, + 42446935, + 8133342867, + 12183285325, + 8119462480, + 42446934, + 8119462472, + 12183285323, + 8119462458, + 42446933 + ], + "geometry": [ + { "lat": 40.7464063, "lon": -73.9797439 }, + { "lat": 40.7463241, "lon": -73.9798046 }, + { "lat": 40.7460156, "lon": -73.9800291 }, + { "lat": 40.7458479, "lon": -73.9801523 }, + { "lat": 40.7458020, "lon": -73.9801844 }, + { "lat": 40.7457461, "lon": -73.9802235 }, + { "lat": 40.7456917, "lon": -73.9802616 }, + { "lat": 40.7452262, "lon": -73.9805983 }, + { "lat": 40.7451848, "lon": -73.9806282 }, + { "lat": 40.7451276, "lon": -73.9806695 }, + { "lat": 40.7450669, "lon": -73.9807135 }, + { "lat": 40.7446040, "lon": -73.9810482 }, + { "lat": 40.7445583, "lon": -73.9810813 }, + { "lat": 40.7445045, "lon": -73.9811202 } + ], + "tags": { + "bus:lanes": "|||designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 458166897, + "bounds": { + "minlat": 40.7564579, + "minlon": -73.9703198, + "maxlat": 40.7589600, + "maxlon": -73.9684914 + }, + "nodes": [ + 42440463, + 3977886192, + 10125255962, + 42449961, + 10125255961, + 10125255958, + 42436707, + 10125255957, + 10125255954, + 42449963, + 10125255951, + 9140929852, + 42448379 + ], + "geometry": [ + { "lat": 40.7564579, "lon": -73.9703198 }, + { "lat": 40.7566391, "lon": -73.9701874 }, + { "lat": 40.7570281, "lon": -73.9699032 }, + { "lat": 40.7570985, "lon": -73.9698517 }, + { "lat": 40.7571422, "lon": -73.9698198 }, + { "lat": 40.7576508, "lon": -73.9694481 }, + { "lat": 40.7577077, "lon": -73.9694066 }, + { "lat": 40.7577689, "lon": -73.9693618 }, + { "lat": 40.7582707, "lon": -73.9689951 }, + { "lat": 40.7583399, "lon": -73.9689446 }, + { "lat": 40.7583947, "lon": -73.9689045 }, + { "lat": 40.7588940, "lon": -73.9685396 }, + { "lat": 40.7589600, "lon": -73.9684914 } + ], + "tags": { + "bus:lanes": "|||designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "21.3", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 458177128, + "bounds": { + "minlat": 40.7483124, + "minlon": -73.9815704, + "maxlat": 40.7496645, + "maxlon": -73.9783419 + }, + "nodes": [ + 42446942, + 10170983213, + 12181374937, + 10169157361, + 42449683, + 12181374941, + 561042192, + 10169157357, + 12181374938, + 4903169925, + 42445909 + ], + "geometry": [ + { "lat": 40.7483124, "lon": -73.9783419 }, + { "lat": 40.7483542, "lon": -73.9784429 }, + { "lat": 40.7488925, "lon": -73.9797214 }, + { "lat": 40.7489132, "lon": -73.9797698 }, + { "lat": 40.7489553, "lon": -73.9798682 }, + { "lat": 40.7490061, "lon": -73.9799873 }, + { "lat": 40.7490334, "lon": -73.9800510 }, + { "lat": 40.7490729, "lon": -73.9801435 }, + { "lat": 40.7490899, "lon": -73.9801834 }, + { "lat": 40.7496274, "lon": -73.9814820 }, + { "lat": 40.7496645, "lon": -73.9815704 } + ], + "tags": { + "alt_name": "Jan Karski Corner", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 458177129, + "bounds": { + "minlat": 40.7478815, + "minlon": -73.9786706, + "maxlat": 40.7483124, + "maxlon": -73.9783419 + }, + "nodes": [ + 42446942, + 10170983212, + 8842216739 + ], + "geometry": [ + { "lat": 40.7483124, "lon": -73.9783419 }, + { "lat": 40.7482611, "lon": -73.9783941 }, + { "lat": 40.7478815, "lon": -73.9786706 } + ], + "tags": { + "bus:lanes": "|||designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 458177130, + "bounds": { + "minlat": 40.7547351, + "minlon": -73.9794895, + "maxlat": 40.7554134, + "maxlon": -73.9778672 + }, + "nodes": [ + 42444043, + 3944708036, + 3942050710, + 42432693 + ], + "geometry": [ + { "lat": 40.7547351, "lon": -73.9778672 }, + { "lat": 40.7547867, "lon": -73.9779845 }, + { "lat": 40.7553600, "lon": -73.9793656 }, + { "lat": 40.7554134, "lon": -73.9794895 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "East 45th Street", + "name:ru": "Восточная 45-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 458177131, + "bounds": { + "minlat": 40.7533670, + "minlon": -73.9757211, + "maxlat": 40.7538223, + "maxlon": -73.9746480 + }, + "nodes": [ + 42444049, + 10168841853, + 42444047, + 6819525295 + ], + "geometry": [ + { "lat": 40.7533670, "lon": -73.9746480 }, + { "lat": 40.7534075, "lon": -73.9747437 }, + { "lat": 40.7538000, "lon": -73.9756686 }, + { "lat": 40.7538223, "lon": -73.9757211 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "East 45th Street", + "name:ru": "Восточная 45-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 458177133, + "bounds": { + "minlat": 40.7483124, + "minlon": -73.9783419, + "maxlat": 40.7501697, + "maxlon": -73.9769912 + }, + "nodes": [ + 42446949, + 10168825907, + 12183285343, + 10170983194, + 42445656, + 10170983195, + 12183285342, + 10170983202, + 42446945, + 10170983203, + 12183285337, + 10170983211, + 42446942 + ], + "geometry": [ + { "lat": 40.7501697, "lon": -73.9769912 }, + { "lat": 40.7501095, "lon": -73.9770349 }, + { "lat": 40.7496491, "lon": -73.9773698 }, + { "lat": 40.7496051, "lon": -73.9774018 }, + { "lat": 40.7495536, "lon": -73.9774393 }, + { "lat": 40.7494927, "lon": -73.9774837 }, + { "lat": 40.7490306, "lon": -73.9778196 }, + { "lat": 40.7489855, "lon": -73.9778524 }, + { "lat": 40.7489187, "lon": -73.9779010 }, + { "lat": 40.7488783, "lon": -73.9779295 }, + { "lat": 40.7484087, "lon": -73.9782719 }, + { "lat": 40.7483651, "lon": -73.9783036 }, + { "lat": 40.7483124, "lon": -73.9783419 } + ], + "tags": { + "bus:lanes": "|||designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 458180181, + "bounds": { + "minlat": 40.7549885, + "minlon": -73.9769598, + "maxlat": 40.7551748, + "maxlon": -73.9765138 + }, + "nodes": [ + 8536656980, + 10165986936, + 42434077 + ], + "geometry": [ + { "lat": 40.7551748, "lon": -73.9769598 }, + { "lat": 40.7550216, "lon": -73.9765934 }, + { "lat": 40.7549885, "lon": -73.9765138 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 46th Street", + "name:ru": "Восточная 46-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 458180182, + "bounds": { + "minlat": 40.7553621, + "minlon": -73.9774077, + "maxlat": 40.7557190, + "maxlon": -73.9771571 + }, + "nodes": [ + 42434074, + 3944708041, + 4207952790 + ], + "geometry": [ + { "lat": 40.7553621, "lon": -73.9774077 }, + { "lat": 40.7554066, "lon": -73.9773756 }, + { "lat": 40.7557190, "lon": -73.9771571 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 458180183, + "bounds": { + "minlat": 40.7554134, + "minlon": -73.9794895, + "maxlat": 40.7560373, + "maxlon": -73.9790227 + }, + "nodes": [ + 42434072, + 3944708042, + 3942050712, + 42432693 + ], + "geometry": [ + { "lat": 40.7560373, "lon": -73.9790227 }, + { "lat": 40.7559734, "lon": -73.9790705 }, + { "lat": 40.7554672, "lon": -73.9794511 }, + { "lat": 40.7554134, "lon": -73.9794895 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 458180184, + "bounds": { + "minlat": 40.7574489, + "minlon": -73.9776624, + "maxlat": 40.7579096, + "maxlon": -73.9765587 + }, + "nodes": [ + 4737669349, + 3955372900, + 42432580 + ], + "geometry": [ + { "lat": 40.7574489, "lon": -73.9765587 }, + { "lat": 40.7578596, "lon": -73.9775426 }, + { "lat": 40.7579096, "lon": -73.9776624 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete", + "surface": "asphalt", + "turn:lanes": "left|through|none" + } +}, +{ + "type": "way", + "id": 458180185, + "bounds": { + "minlat": 40.7572359, + "minlon": -73.9760484, + "maxlat": 40.7578582, + "maxlon": -73.9755930 + }, + "nodes": [ + 42438881, + 7788529741, + 4960516275, + 3977886217, + 42445928 + ], + "geometry": [ + { "lat": 40.7572359, "lon": -73.9760484 }, + { "lat": 40.7572951, "lon": -73.9760046 }, + { "lat": 40.7577152, "lon": -73.9756931 }, + { "lat": 40.7577997, "lon": -73.9756360 }, + { "lat": 40.7578582, "lon": -73.9755930 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through||", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 458180186, + "bounds": { + "minlat": 40.7558700, + "minlon": -73.9760484, + "maxlat": 40.7572359, + "maxlon": -73.9728200 + }, + "nodes": [ + 42438889, + 10165986986, + 4782506037, + 1745991209, + 12834723259, + 10165922714, + 42438886, + 596775867, + 10165986917, + 7788529751, + 42438881 + ], + "geometry": [ + { "lat": 40.7558700, "lon": -73.9728200 }, + { "lat": 40.7559133, "lon": -73.9729223 }, + { "lat": 40.7559994, "lon": -73.9731260 }, + { "lat": 40.7562256, "lon": -73.9736605 }, + { "lat": 40.7564532, "lon": -73.9741876 }, + { "lat": 40.7564789, "lon": -73.9742471 }, + { "lat": 40.7565260, "lon": -73.9743560 }, + { "lat": 40.7565994, "lon": -73.9745281 }, + { "lat": 40.7566464, "lon": -73.9746404 }, + { "lat": 40.7571905, "lon": -73.9759411 }, + { "lat": 40.7572359, "lon": -73.9760484 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 458180187, + "bounds": { + "minlat": 40.7539937, + "minlon": -73.9741902, + "maxlat": 40.7558700, + "maxlon": -73.9728200 + }, + "nodes": [ + 42438889, + 10165986985, + 12673751272, + 42446987, + 12673751271, + 10165986967, + 42446986, + 10165986968, + 10165986959, + 42434085 + ], + "geometry": [ + { "lat": 40.7558700, "lon": -73.9728200 }, + { "lat": 40.7558203, "lon": -73.9728551 }, + { "lat": 40.7553059, "lon": -73.9732270 }, + { "lat": 40.7552508, "lon": -73.9732669 }, + { "lat": 40.7551913, "lon": -73.9733104 }, + { "lat": 40.7546776, "lon": -73.9736856 }, + { "lat": 40.7546132, "lon": -73.9737339 }, + { "lat": 40.7545669, "lon": -73.9737684 }, + { "lat": 40.7540529, "lon": -73.9741468 }, + { "lat": 40.7539937, "lon": -73.9741902 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 458180188, + "bounds": { + "minlat": 40.7558333, + "minlon": -73.9723620, + "maxlat": 40.7564980, + "maxlon": -73.9707763 + }, + "nodes": [ + 42446991, + 3977886188, + 4782442661, + 4550867480, + 10125255965, + 42449956 + ], + "geometry": [ + { "lat": 40.7564980, "lon": -73.9723620 }, + { "lat": 40.7564568, "lon": -73.9722640 }, + { "lat": 40.7563757, "lon": -73.9720699 }, + { "lat": 40.7560253, "lon": -73.9712321 }, + { "lat": 40.7558863, "lon": -73.9709021 }, + { "lat": 40.7558333, "lon": -73.9707763 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 50th Street", + "name:ru": "Восточная 50-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 458180189, + "bounds": { + "minlat": 40.7558700, + "minlon": -73.9728200, + "maxlat": 40.7564980, + "maxlon": -73.9723620 + }, + "nodes": [ + 42446991, + 3977886187, + 10165986984, + 42438889 + ], + "geometry": [ + { "lat": 40.7564980, "lon": -73.9723620 }, + { "lat": 40.7564428, "lon": -73.9724023 }, + { "lat": 40.7559297, "lon": -73.9727764 }, + { "lat": 40.7558700, "lon": -73.9728200 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 458180190, + "bounds": { + "minlat": 40.7579096, + "minlon": -73.9776624, + "maxlat": 40.7585437, + "maxlon": -73.9772064 + }, + "nodes": [ + 42440153, + 3977886222, + 3955372902, + 42432580 + ], + "geometry": [ + { "lat": 40.7585437, "lon": -73.9772064 }, + { "lat": 40.7584895, "lon": -73.9772475 }, + { "lat": 40.7579784, "lon": -73.9776129 }, + { "lat": 40.7579096, "lon": -73.9776624 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 458180191, + "bounds": { + "minlat": 40.7591757, + "minlon": -73.9767414, + "maxlat": 40.7604084, + "maxlon": -73.9758441 + }, + "nodes": [ + 42436700, + 3977886247, + 3977886244, + 42446353, + 9140940646, + 3977886238, + 42440452 + ], + "geometry": [ + { "lat": 40.7604084, "lon": -73.9758441 }, + { "lat": 40.7603712, "lon": -73.9758662 }, + { "lat": 40.7598552, "lon": -73.9762498 }, + { "lat": 40.7597993, "lon": -73.9762894 }, + { "lat": 40.7597379, "lon": -73.9763323 }, + { "lat": 40.7592274, "lon": -73.9767048 }, + { "lat": 40.7591757, "lon": -73.9767414 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 458180192, + "bounds": { + "minlat": 40.7590978, + "minlon": -73.9742310, + "maxlat": 40.7597325, + "maxlon": -73.9727039 + }, + "nodes": [ + 596775900, + 10125228016, + 10170605878, + 42436701 + ], + "geometry": [ + { "lat": 40.7590978, "lon": -73.9727039 }, + { "lat": 40.7591449, "lon": -73.9728171 }, + { "lat": 40.7596860, "lon": -73.9741190 }, + { "lat": 40.7597325, "lon": -73.9742310 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 53rd Street", + "name:ru": "Восточная 53-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 458180193, + "bounds": { + "minlat": 40.7564980, + "minlon": -73.9723620, + "maxlat": 40.7583781, + "maxlon": -73.9709896 + }, + "nodes": [ + 42436705, + 4019254385, + 11070055770, + 42446994, + 3977886214, + 3977886198, + 42440459, + 3977886193, + 3977886191, + 42446991 + ], + "geometry": [ + { "lat": 40.7583781, "lon": -73.9709896 }, + { "lat": 40.7583195, "lon": -73.9710331 }, + { "lat": 40.7578131, "lon": -73.9714024 }, + { "lat": 40.7577574, "lon": -73.9714431 }, + { "lat": 40.7576927, "lon": -73.9714922 }, + { "lat": 40.7571771, "lon": -73.9718690 }, + { "lat": 40.7571285, "lon": -73.9719044 }, + { "lat": 40.7570710, "lon": -73.9719432 }, + { "lat": 40.7565603, "lon": -73.9723168 }, + { "lat": 40.7564980, "lon": -73.9723620 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "lit": "yes", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 458180194, + "bounds": { + "minlat": 40.7583399, + "minlon": -73.9705330, + "maxlat": 40.7590024, + "maxlon": -73.9689446 + }, + "nodes": [ + 42446998, + 10165922664, + 13718252569, + 10125255952, + 42449963 + ], + "geometry": [ + { "lat": 40.7590024, "lon": -73.9705330 }, + { "lat": 40.7589602, "lon": -73.9704318 }, + { "lat": 40.7587001, "lon": -73.9698082 }, + { "lat": 40.7583891, "lon": -73.9690625 }, + { "lat": 40.7583399, "lon": -73.9689446 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 54th Street", + "name:ru": "Восточная 54-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 458180195, + "bounds": { + "minlat": 40.7583781, + "minlon": -73.9709896, + "maxlat": 40.7590024, + "maxlon": -73.9705330 + }, + "nodes": [ + 42446998, + 10165922666, + 4019254386, + 42436705 + ], + "geometry": [ + { "lat": 40.7590024, "lon": -73.9705330 }, + { "lat": 40.7589406, "lon": -73.9705780 }, + { "lat": 40.7584459, "lon": -73.9709394 }, + { "lat": 40.7583781, "lon": -73.9709896 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 458180196, + "bounds": { + "minlat": 40.7603711, + "minlon": -73.9737664, + "maxlat": 40.7609344, + "maxlon": -73.9733573 + }, + "nodes": [ + 42445936, + 3977886249, + 11043321016, + 11043134791, + 3977886253 + ], + "geometry": [ + { "lat": 40.7603711, "lon": -73.9737664 }, + { "lat": 40.7604237, "lon": -73.9737299 }, + { "lat": 40.7606102, "lon": -73.9735935 }, + { "lat": 40.7606549, "lon": -73.9735608 }, + { "lat": 40.7609344, "lon": -73.9733573 } + ], + "tags": { + "bus:lanes": "2", + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 458180197, + "bounds": { + "minlat": 40.7604084, + "minlon": -73.9758441, + "maxlat": 40.7610471, + "maxlon": -73.9753806 + }, + "nodes": [ + 42450426, + 3977886254, + 3977886251, + 42436700 + ], + "geometry": [ + { "lat": 40.7610471, "lon": -73.9753806 }, + { "lat": 40.7609923, "lon": -73.9754197 }, + { "lat": 40.7604742, "lon": -73.9757940 }, + { "lat": 40.7604084, "lon": -73.9758441 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 458180198, + "bounds": { + "minlat": 40.7642357, + "minlon": -73.9720675, + "maxlat": 40.7647032, + "maxlon": -73.9709527 + }, + "nodes": [ + 42445953, + 10125174402, + 4796291645, + 8254176965 + ], + "geometry": [ + { "lat": 40.7642357, "lon": -73.9709527 }, + { "lat": 40.7642840, "lon": -73.9710645 }, + { "lat": 40.7643555, "lon": -73.9712315 }, + { "lat": 40.7647032, "lon": -73.9720675 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 458180199, + "bounds": { + "minlat": 40.7642357, + "minlon": -73.9709527, + "maxlat": 40.7673574, + "maxlon": -73.9686619 + }, + "nodes": [ + 42445953, + 10125174400, + 10171007675, + 42436511, + 2792781447, + 2792781461, + 10171134783, + 42445961, + 10171134782, + 2792781454, + 42429971, + 2792781459, + 2792783182, + 10171134791, + 42431650, + 2792783180, + 2792783184, + 42445972 + ], + "geometry": [ + { "lat": 40.7642357, "lon": -73.9709527 }, + { "lat": 40.7642829, "lon": -73.9709171 }, + { "lat": 40.7647898, "lon": -73.9705362 }, + { "lat": 40.7648423, "lon": -73.9704968 }, + { "lat": 40.7649059, "lon": -73.9704505 }, + { "lat": 40.7654092, "lon": -73.9700841 }, + { "lat": 40.7654158, "lon": -73.9700793 }, + { "lat": 40.7654664, "lon": -73.9700424 }, + { "lat": 40.7655267, "lon": -73.9699982 }, + { "lat": 40.7660396, "lon": -73.9696225 }, + { "lat": 40.7660912, "lon": -73.9695848 }, + { "lat": 40.7661501, "lon": -73.9695418 }, + { "lat": 40.7666573, "lon": -73.9691718 }, + { "lat": 40.7666708, "lon": -73.9691620 }, + { "lat": 40.7667187, "lon": -73.9691270 }, + { "lat": 40.7667779, "lon": -73.9690837 }, + { "lat": 40.7672914, "lon": -73.9687089 }, + { "lat": 40.7673574, "lon": -73.9686619 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 458180200, + "bounds": { + "minlat": 40.7625556, + "minlon": -73.9679575, + "maxlat": 40.7628736, + "maxlon": -73.9677191 + }, + "nodes": [ + 42447020, + 9178272152, + 5475605296 + ], + "geometry": [ + { "lat": 40.7628736, "lon": -73.9677191 }, + { "lat": 40.7628033, "lon": -73.9677726 }, + { "lat": 40.7625556, "lon": -73.9679575 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 458295371, + "bounds": { + "minlat": 40.7700277, + "minlon": -73.9121721, + "maxlat": 40.7716096, + "maxlon": -73.9102440 + }, + "nodes": [ + 42818227, + 6406731081, + 3778729671 + ], + "geometry": [ + { "lat": 40.7700277, "lon": -73.9121721 }, + { "lat": 40.7700818, "lon": -73.9121047 }, + { "lat": 40.7716096, "lon": -73.9102440 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "37th Street", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 458452177, + "bounds": { + "minlat": 40.7643469, + "minlon": -73.9796200, + "maxlat": 40.7646852, + "maxlon": -73.9791828 + }, + "nodes": [ + 4544486783, + 11296226831, + 4544486782, + 3932923804, + 1814471103, + 4544486781, + 11296226829, + 2708090844, + 2708090880, + 3932923798, + 1814471171, + 2708090937, + 4544486783 + ], + "geometry": [ + { "lat": 40.7646852, "lon": -73.9794599 }, + { "lat": 40.7645206, "lon": -73.9795781 }, + { "lat": 40.7644623, "lon": -73.9796200 }, + { "lat": 40.7644138, "lon": -73.9795044 }, + { "lat": 40.7643818, "lon": -73.9794282 }, + { "lat": 40.7643469, "lon": -73.9793456 }, + { "lat": 40.7644059, "lon": -73.9793022 }, + { "lat": 40.7644257, "lon": -73.9792877 }, + { "lat": 40.7645685, "lon": -73.9791828 }, + { "lat": 40.7646063, "lon": -73.9792724 }, + { "lat": 40.7646135, "lon": -73.9792896 }, + { "lat": 40.7646603, "lon": -73.9794006 }, + { "lat": 40.7646852, "lon": -73.9794599 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 458452178, + "bounds": { + "minlat": 40.7621082, + "minlon": -73.9782867, + "maxlat": 40.7622285, + "maxlon": -73.9782022 + }, + "nodes": [ + 4544486779, + 10173210343, + 4544486780 + ], + "geometry": [ + { "lat": 40.7621082, "lon": -73.9782867 }, + { "lat": 40.7621732, "lon": -73.9782410 }, + { "lat": 40.7622285, "lon": -73.9782022 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 458511171, + "bounds": { + "minlat": 40.7600926, + "minlon": -73.9827477, + "maxlat": 40.7606339, + "maxlon": -73.9820496 + }, + "nodes": [ + 2717546466, + 2717546460, + 2717546457, + 2717546406, + 2717546409, + 2717546378, + 2717546381, + 2717546365, + 4545006872, + 2717546353, + 2717546387, + 1593328953, + 1593328960, + 4545006873, + 4545006874, + 2717546466 + ], + "geometry": [ + { "lat": 40.7606339, "lon": -73.9824107 }, + { "lat": 40.7605937, "lon": -73.9824399 }, + { "lat": 40.7605821, "lon": -73.9824121 }, + { "lat": 40.7603852, "lon": -73.9825551 }, + { "lat": 40.7603929, "lon": -73.9825734 }, + { "lat": 40.7602030, "lon": -73.9827113 }, + { "lat": 40.7602064, "lon": -73.9827194 }, + { "lat": 40.7601674, "lon": -73.9827477 }, + { "lat": 40.7601231, "lon": -73.9826461 }, + { "lat": 40.7600926, "lon": -73.9825761 }, + { "lat": 40.7603189, "lon": -73.9824107 }, + { "lat": 40.7602407, "lon": -73.9822244 }, + { "lat": 40.7604677, "lon": -73.9820585 }, + { "lat": 40.7604822, "lon": -73.9820496 }, + { "lat": 40.7605918, "lon": -73.9823106 }, + { "lat": 40.7606339, "lon": -73.9824107 } + ], + "tags": { + "access": "yes", + "highway": "pedestrian", + "leisure": "park", + "name": "745 Plaza" + } +}, +{ + "type": "way", + "id": 458642436, + "bounds": { + "minlat": 40.7648085, + "minlon": -73.9829189, + "maxlat": 40.7650054, + "maxlon": -73.9827727 + }, + "nodes": [ + 4546109658, + 10084998612, + 9140929831, + 4546109662 + ], + "geometry": [ + { "lat": 40.7648085, "lon": -73.9829189 }, + { "lat": 40.7649228, "lon": -73.9828340 }, + { "lat": 40.7649507, "lon": -73.9828133 }, + { "lat": 40.7650054, "lon": -73.9827727 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 458672836, + "bounds": { + "minlat": 40.7669507, + "minlon": -73.9838062, + "maxlat": 40.7670708, + "maxlon": -73.9837188 + }, + "nodes": [ + 4546351677, + 10082710023, + 4546351682 + ], + "geometry": [ + { "lat": 40.7669507, "lon": -73.9838062 }, + { "lat": 40.7669780, "lon": -73.9837864 }, + { "lat": 40.7670708, "lon": -73.9837188 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 458784333, + "bounds": { + "minlat": 40.8355580, + "minlon": -73.9397882, + "maxlat": 40.8356697, + "maxlon": -73.9395780 + }, + "nodes": [ + 2075596384, + 2603955391, + 2603955392, + 2075596385, + 9569882299, + 13317820334 + ], + "geometry": [ + { "lat": 40.8355580, "lon": -73.9397882 }, + { "lat": 40.8355796, "lon": -73.9397861 }, + { "lat": 40.8356016, "lon": -73.9397775 }, + { "lat": 40.8356196, "lon": -73.9397539 }, + { "lat": 40.8356298, "lon": -73.9397277 }, + { "lat": 40.8356697, "lon": -73.9395780 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "residential", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 458983756, + "bounds": { + "minlat": 40.7591384, + "minlon": -73.9784357, + "maxlat": 40.7597079, + "maxlon": -73.9780043 + }, + "nodes": [ + 4549080330, + 4799735123, + 11299050772, + 4799735127, + 11299027262 + ], + "geometry": [ + { "lat": 40.7597079, "lon": -73.9780043 }, + { "lat": 40.7596587, "lon": -73.9780443 }, + { "lat": 40.7596390, "lon": -73.9780591 }, + { "lat": 40.7591509, "lon": -73.9784267 }, + { "lat": 40.7591384, "lon": -73.9784357 } + ], + "tags": { + "highway": "pedestrian", + "smoothness": "good", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 459175383, + "bounds": { + "minlat": 40.7547083, + "minlon": -73.9720873, + "maxlat": 40.7553148, + "maxlon": -73.9714485 + }, + "nodes": [ + 2714921375, + 2714921376, + 2714921374, + 2714921373, + 9863930396, + 2714921368, + 4550867476, + 4550867478, + 3060726143, + 9868958116, + 2714921393, + 2714921385, + 2714921369, + 2714921375 + ], + "geometry": [ + { "lat": 40.7549296, "lon": -73.9720210 }, + { "lat": 40.7549312, "lon": -73.9720246 }, + { "lat": 40.7549066, "lon": -73.9720426 }, + { "lat": 40.7549051, "lon": -73.9720391 }, + { "lat": 40.7548848, "lon": -73.9720540 }, + { "lat": 40.7548393, "lon": -73.9720873 }, + { "lat": 40.7547083, "lon": -73.9717764 }, + { "lat": 40.7551865, "lon": -73.9714485 }, + { "lat": 40.7553148, "lon": -73.9717356 }, + { "lat": 40.7552716, "lon": -73.9717679 }, + { "lat": 40.7552258, "lon": -73.9718022 }, + { "lat": 40.7551363, "lon": -73.9715905 }, + { "lat": 40.7548394, "lon": -73.9718075 }, + { "lat": 40.7549296, "lon": -73.9720210 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 459397149, + "bounds": { + "minlat": 40.7202770, + "minlon": -73.9426780, + "maxlat": 40.7204600, + "maxlon": -73.9407940 + }, + "nodes": [ + 42495871, + 9937287939, + 5135455930, + 9935590147, + 42503833, + 9935590145, + 9935590194, + 9935590174, + 42503829 + ], + "geometry": [ + { "lat": 40.7204600, "lon": -73.9407940 }, + { "lat": 40.7204498, "lon": -73.9408929 }, + { "lat": 40.7204235, "lon": -73.9411465 }, + { "lat": 40.7203737, "lon": -73.9416661 }, + { "lat": 40.7203660, "lon": -73.9417470 }, + { "lat": 40.7203578, "lon": -73.9418325 }, + { "lat": 40.7202905, "lon": -73.9425366 }, + { "lat": 40.7202847, "lon": -73.9425978 }, + { "lat": 40.7202770, "lon": -73.9426780 } + ], + "tags": { + "highway": "residential", + "name": "Herbert Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Herbert", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 459810322, + "bounds": { + "minlat": 40.7437702, + "minlon": -74.0045341, + "maxlat": 40.7440622, + "maxlon": -74.0041841 + }, + "nodes": [ + 4555500080, + 4555500076, + 4555500075, + 11299025935, + 4555500073 + ], + "geometry": [ + { "lat": 40.7440622, "lon": -74.0045341 }, + { "lat": 40.7439154, "lon": -74.0041841 }, + { "lat": 40.7438370, "lon": -74.0042389 }, + { "lat": 40.7438271, "lon": -74.0042458 }, + { "lat": 40.7437702, "lon": -74.0042856 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 459815269, + "bounds": { + "minlat": 40.7446147, + "minlon": -74.0043151, + "maxlat": 40.7447514, + "maxlon": -74.0039765 + }, + "nodes": [ + 4555542106, + 4555542104, + 4555542103 + ], + "geometry": [ + { "lat": 40.7447514, "lon": -74.0043151 }, + { "lat": 40.7446996, "lon": -74.0041868 }, + { "lat": 40.7446147, "lon": -74.0039765 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 459815270, + "bounds": { + "minlat": 40.7438380, + "minlon": -74.0049587, + "maxlat": 40.7440004, + "maxlon": -74.0048374 + }, + "nodes": [ + 4555542099, + 8310246368, + 4555542097, + 4555542094 + ], + "geometry": [ + { "lat": 40.7440004, "lon": -74.0048374 }, + { "lat": 40.7439410, "lon": -74.0048818 }, + { "lat": 40.7439245, "lon": -74.0048941 }, + { "lat": 40.7438380, "lon": -74.0049587 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 459815271, + "bounds": { + "minlat": 40.7445390, + "minlon": -74.0043080, + "maxlat": 40.7446996, + "maxlon": -74.0041868 + }, + "nodes": [ + 4555542101, + 10168486411, + 4555542102, + 4555542104 + ], + "geometry": [ + { "lat": 40.7445390, "lon": -74.0043080 }, + { "lat": 40.7445926, "lon": -74.0042682 }, + { "lat": 40.7446086, "lon": -74.0042554 }, + { "lat": 40.7446996, "lon": -74.0041868 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 459815272, + "bounds": { + "minlat": 40.7436143, + "minlon": -74.0048219, + "maxlat": 40.7439569, + "maxlon": -74.0042042 + }, + "nodes": [ + 4555542098, + 8310246367, + 4555542096, + 4555542093, + 4555542089, + 4555542091, + 8310246365, + 4555542092 + ], + "geometry": [ + { "lat": 40.7439569, "lon": -74.0047332 }, + { "lat": 40.7438968, "lon": -74.0047769 }, + { "lat": 40.7438805, "lon": -74.0047888 }, + { "lat": 40.7438350, "lon": -74.0048219 }, + { "lat": 40.7436143, "lon": -74.0042929 }, + { "lat": 40.7436594, "lon": -74.0042601 }, + { "lat": 40.7436745, "lon": -74.0042491 }, + { "lat": 40.7437363, "lon": -74.0042042 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 459853438, + "bounds": { + "minlat": 40.7518919, + "minlon": -73.9749124, + "maxlat": 40.7521711, + "maxlon": -73.9745947 + }, + "nodes": [ + 2666720477, + 4555838816, + 4555838659, + 2714805481, + 2714805487, + 2666720482, + 2666720481, + 2928887946, + 2666720477 + ], + "geometry": [ + { "lat": 40.7519538, "lon": -73.9749124 }, + { "lat": 40.7519300, "lon": -73.9748535 }, + { "lat": 40.7518919, "lon": -73.9747594 }, + { "lat": 40.7521178, "lon": -73.9745947 }, + { "lat": 40.7521711, "lon": -73.9747219 }, + { "lat": 40.7520394, "lon": -73.9748156 }, + { "lat": 40.7520302, "lon": -73.9748546 }, + { "lat": 40.7519798, "lon": -73.9748936 }, + { "lat": 40.7519538, "lon": -73.9749124 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 459865906, + "bounds": { + "minlat": 40.7000949, + "minlon": -73.9872976, + "maxlat": 40.7001014, + "maxlon": -73.9868886 + }, + "nodes": [ + 370870741, + 6224335505, + 4215548892 + ], + "geometry": [ + { "lat": 40.7001014, "lon": -73.9868886 }, + { "lat": 40.7000972, "lon": -73.9870204 }, + { "lat": 40.7000949, "lon": -73.9872976 } + ], + "tags": { + "destination": "Brooklyn Bridge;Pearl Street", + "foot": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Sands Street", + "name:etymology:wikidata": "Q1708602", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 459887200, + "bounds": { + "minlat": 40.7492126, + "minlon": -73.9733298, + "maxlat": 40.7493808, + "maxlon": -73.9732087 + }, + "nodes": [ + 4556120771, + 10171269366, + 4556120770 + ], + "geometry": [ + { "lat": 40.7493808, "lon": -73.9732087 }, + { "lat": 40.7493159, "lon": -73.9732557 }, + { "lat": 40.7492126, "lon": -73.9733298 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 459887201, + "bounds": { + "minlat": 40.7492675, + "minlon": -73.9731873, + "maxlat": 40.7493471, + "maxlon": -73.9731280 + }, + "nodes": [ + 4556120772, + 10171269367, + 4556120773 + ], + "geometry": [ + { "lat": 40.7493471, "lon": -73.9731280 }, + { "lat": 40.7492824, "lon": -73.9731761 }, + { "lat": 40.7492675, "lon": -73.9731873 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 459887831, + "bounds": { + "minlat": 40.7489291, + "minlon": -73.9740590, + "maxlat": 40.7492713, + "maxlon": -73.9738173 + }, + "nodes": [ + 4556126017, + 10171269351, + 4556126018 + ], + "geometry": [ + { "lat": 40.7489291, "lon": -73.9740590 }, + { "lat": 40.7489844, "lon": -73.9740199 }, + { "lat": 40.7492713, "lon": -73.9738173 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 459890316, + "bounds": { + "minlat": 40.7502475, + "minlon": -73.9738684, + "maxlat": 40.7503585, + "maxlon": -73.9736609 + }, + "nodes": [ + 4556147512, + 4011390050, + 4011390053, + 4556147511 + ], + "geometry": [ + { "lat": 40.7503585, "lon": -73.9738669 }, + { "lat": 40.7503181, "lon": -73.9738684 }, + { "lat": 40.7502475, "lon": -73.9737014 }, + { "lat": 40.7502582, "lon": -73.9736609 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "name": "The Westin", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 459890317, + "bounds": { + "minlat": 40.7502582, + "minlon": -73.9736609, + "maxlat": 40.7502715, + "maxlon": -73.9735620 + }, + "nodes": [ + 4556147511, + 4011390052 + ], + "geometry": [ + { "lat": 40.7502582, "lon": -73.9736609 }, + { "lat": 40.7502715, "lon": -73.9735620 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "name": "The Westin", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 459890406, + "bounds": { + "minlat": 40.7494095, + "minlon": -73.9737199, + "maxlat": 40.7495507, + "maxlon": -73.9736159 + }, + "nodes": [ + 4556126019, + 10171269365, + 4556126016 + ], + "geometry": [ + { "lat": 40.7494095, "lon": -73.9737199 }, + { "lat": 40.7494872, "lon": -73.9736627 }, + { "lat": 40.7495507, "lon": -73.9736159 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 459890407, + "bounds": { + "minlat": 40.7492713, + "minlon": -73.9738173, + "maxlat": 40.7494095, + "maxlon": -73.9737199 + }, + "nodes": [ + 4556126018, + 4556126019 + ], + "geometry": [ + { "lat": 40.7492713, "lon": -73.9738173 }, + { "lat": 40.7494095, "lon": -73.9737199 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 459891137, + "bounds": { + "minlat": 40.7480375, + "minlon": -73.9742889, + "maxlat": 40.7481579, + "maxlon": -73.9741268 + }, + "nodes": [ + 5240026599, + 10166084896, + 5240026596, + 5240026594, + 5240026602, + 5240026603 + ], + "geometry": [ + { "lat": 40.7481579, "lon": -73.9741268 }, + { "lat": 40.7480931, "lon": -73.9741811 }, + { "lat": 40.7480868, "lon": -73.9741867 }, + { "lat": 40.7480508, "lon": -73.9742294 }, + { "lat": 40.7480375, "lon": -73.9742692 }, + { "lat": 40.7480397, "lon": -73.9742889 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 459891138, + "bounds": { + "minlat": 40.7481368, + "minlon": -73.9745454, + "maxlat": 40.7482974, + "maxlon": -73.9744625 + }, + "nodes": [ + 5240026600, + 5240026595, + 5240026598, + 4556157748, + 10166084895, + 4556157744 + ], + "geometry": [ + { "lat": 40.7481368, "lon": -73.9745186 }, + { "lat": 40.7481520, "lon": -73.9745357 }, + { "lat": 40.7481692, "lon": -73.9745454 }, + { "lat": 40.7481872, "lon": -73.9745443 }, + { "lat": 40.7482336, "lon": -73.9745109 }, + { "lat": 40.7482974, "lon": -73.9744625 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 459891139, + "bounds": { + "minlat": 40.7480397, + "minlon": -73.9745186, + "maxlat": 40.7481368, + "maxlon": -73.9742889 + }, + "nodes": [ + 5240026603, + 5240026600 + ], + "geometry": [ + { "lat": 40.7480397, "lon": -73.9742889 }, + { "lat": 40.7481368, "lon": -73.9745186 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 460065820, + "bounds": { + "minlat": 40.7676746, + "minlon": -73.9818824, + "maxlat": 40.7676843, + "maxlon": -73.9817558 + }, + "nodes": [ + 1825841743, + 1825841729, + 1825841693 + ], + "geometry": [ + { "lat": 40.7676746, "lon": -73.9818824 }, + { "lat": 40.7676779, "lon": -73.9818246 }, + { "lat": 40.7676843, "lon": -73.9817558 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "junction": "circular", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Circle", + "name:etymology:wikidata": "Q7322", + "name:ja": "コロンバスサークル", + "name:ko": "콜럼버스 서클", + "name:ru": "Коламбус-сёркл", + "oneway": "yes", + "parking:lane:left": "no_parking", + "route": "bicycle", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through;right", + "wikidata": "Q109968" + } +}, +{ + "type": "way", + "id": 460065821, + "bounds": { + "minlat": 40.7683054, + "minlon": -73.9822632, + "maxlat": 40.7684164, + "maxlon": -73.9816789 + }, + "nodes": [ + 1825841742, + 10183978872, + 9969200093, + 9969200094, + 1825841694, + 8821677087, + 42449707, + 1825841715, + 1825841697, + 1825841746, + 1825841732, + 10183978913, + 1825841655 + ], + "geometry": [ + { "lat": 40.7683994, "lon": -73.9816789 }, + { "lat": 40.7684085, "lon": -73.9817252 }, + { "lat": 40.7684131, "lon": -73.9817772 }, + { "lat": 40.7684156, "lon": -73.9818361 }, + { "lat": 40.7684164, "lon": -73.9818850 }, + { "lat": 40.7684160, "lon": -73.9819384 }, + { "lat": 40.7684122, "lon": -73.9819793 }, + { "lat": 40.7684053, "lon": -73.9820158 }, + { "lat": 40.7683932, "lon": -73.9820657 }, + { "lat": 40.7683751, "lon": -73.9821195 }, + { "lat": 40.7683471, "lon": -73.9821863 }, + { "lat": 40.7683291, "lon": -73.9822260 }, + { "lat": 40.7683054, "lon": -73.9822632 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "junction": "circular", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Circle", + "name:etymology:wikidata": "Q7322", + "name:ja": "コロンバスサークル", + "name:ko": "콜럼버스 서클", + "name:ru": "Коламбус-сёркл", + "oneway": "yes", + "parking:lane:left": "no_parking", + "surface": "asphalt", + "wikidata": "Q109968" + } +}, +{ + "type": "way", + "id": 460065822, + "bounds": { + "minlat": 40.7677052, + "minlon": -73.9823900, + "maxlat": 40.7681017, + "maxlon": -73.9820870 + }, + "nodes": [ + 9446375827, + 1825841751, + 1825841649, + 1825841722, + 1825841650, + 9170790587, + 1825841679, + 4347733129, + 1825841681, + 9170790588, + 13051842069, + 1825841704 + ], + "geometry": [ + { "lat": 40.7681017, "lon": -73.9823861 }, + { "lat": 40.7680652, "lon": -73.9823900 }, + { "lat": 40.7680280, "lon": -73.9823891 }, + { "lat": 40.7679795, "lon": -73.9823806 }, + { "lat": 40.7679336, "lon": -73.9823646 }, + { "lat": 40.7678926, "lon": -73.9823430 }, + { "lat": 40.7678487, "lon": -73.9823110 }, + { "lat": 40.7678051, "lon": -73.9822692 }, + { "lat": 40.7677704, "lon": -73.9822226 }, + { "lat": 40.7677475, "lon": -73.9821852 }, + { "lat": 40.7677278, "lon": -73.9821447 }, + { "lat": 40.7677052, "lon": -73.9820870 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "junction": "circular", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Circle", + "name:etymology:wikidata": "Q7322", + "name:ja": "コロンバスサークル", + "name:ko": "콜럼버스 서클", + "name:ru": "Коламбус-сёркл", + "oneway": "yes", + "parking:lane:left": "no_parking", + "ref": "8", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109968" + } +}, +{ + "type": "way", + "id": 460067515, + "bounds": { + "minlat": 40.7692310, + "minlon": -73.9847685, + "maxlat": 40.7698546, + "maxlon": -73.9843169 + }, + "nodes": [ + 1241742627, + 10046254761, + 7515977393, + 42440934 + ], + "geometry": [ + { "lat": 40.7698546, "lon": -73.9843169 }, + { "lat": 40.7697634, "lon": -73.9843823 }, + { "lat": 40.7692851, "lon": -73.9847286 }, + { "lat": 40.7692310, "lon": -73.9847685 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "none|none|none|right", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 460069727, + "bounds": { + "minlat": 40.7515074, + "minlon": -73.9984053, + "maxlat": 40.7517968, + "maxlon": -73.9977245 + }, + "nodes": [ + 4557517549, + 8262309046, + 593973909 + ], + "geometry": [ + { "lat": 40.7515074, "lon": -73.9977245 }, + { "lat": 40.7515520, "lon": -73.9978245 }, + { "lat": 40.7517968, "lon": -73.9984053 } + ], + "tags": { + "alt_name": "West 31 Street", + "hgv": "local", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 31st Street", + "name:ru": "Западная 31-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 460534165, + "bounds": { + "minlat": 40.7200510, + "minlon": -73.9821733, + "maxlat": 40.7201915, + "maxlon": -73.9816516 + }, + "nodes": [ + 4561702113, + 4561702111, + 8310245652, + 4561702109 + ], + "geometry": [ + { "lat": 40.7201915, "lon": -73.9821733 }, + { "lat": 40.7200751, "lon": -73.9817504 }, + { "lat": 40.7200714, "lon": -73.9817354 }, + { "lat": 40.7200510, "lon": -73.9816516 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 460585328, + "bounds": { + "minlat": 40.7609247, + "minlon": -73.9945259, + "maxlat": 40.7634928, + "maxlon": -73.9926517 + }, + "nodes": [ + 42443563, + 10168047539, + 10168047552, + 42432706, + 10168047548, + 10168047554, + 42455761, + 10168047558, + 8646577748, + 42452365, + 10168029010, + 10168029007, + 42443534, + 10168029003 + ], + "geometry": [ + { "lat": 40.7609247, "lon": -73.9945259 }, + { "lat": 40.7609948, "lon": -73.9944749 }, + { "lat": 40.7614958, "lon": -73.9941092 }, + { "lat": 40.7615516, "lon": -73.9940688 }, + { "lat": 40.7616101, "lon": -73.9940260 }, + { "lat": 40.7621242, "lon": -73.9936512 }, + { "lat": 40.7621850, "lon": -73.9936069 }, + { "lat": 40.7622392, "lon": -73.9935673 }, + { "lat": 40.7627523, "lon": -73.9931931 }, + { "lat": 40.7628026, "lon": -73.9931565 }, + { "lat": 40.7628668, "lon": -73.9931097 }, + { "lat": 40.7633709, "lon": -73.9927426 }, + { "lat": 40.7634277, "lon": -73.9927007 }, + { "lat": 40.7634928, "lon": -73.9926517 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "69'6\"", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 460585329, + "bounds": { + "minlat": 40.7539186, + "minlon": -74.0008476, + "maxlat": 40.7544279, + "maxlon": -73.9996344 + }, + "nodes": [ + 42446668, + 5165666209, + 6339939229 + ], + "geometry": [ + { "lat": 40.7539186, "lon": -73.9996344 }, + { "lat": 40.7539782, "lon": -73.9997806 }, + { "lat": 40.7544279, "lon": -74.0008476 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 460589632, + "bounds": { + "minlat": 40.7574514, + "minlon": -74.0007462, + "maxlat": 40.7576744, + "maxlon": -74.0005846 + }, + "nodes": [ + 42430646, + 8261122904, + 593915255 + ], + "geometry": [ + { "lat": 40.7576744, "lon": -74.0005846 }, + { "lat": 40.7576180, "lon": -74.0006257 }, + { "lat": 40.7574514, "lon": -74.0007462 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 460596360, + "bounds": { + "minlat": 40.8038773, + "minlon": -73.9582880, + "maxlat": 40.8056136, + "maxlon": -73.9581910 + }, + "nodes": [ + 42440104, + 10165996999, + 1774036559, + 7732243546, + 7169900970, + 1775693291, + 7169900959, + 1775693266, + 1775693137, + 1775693483, + 42437196 + ], + "geometry": [ + { "lat": 40.8038773, "lon": -73.9582040 }, + { "lat": 40.8039619, "lon": -73.9582079 }, + { "lat": 40.8041210, "lon": -73.9582158 }, + { "lat": 40.8047385, "lon": -73.9582498 }, + { "lat": 40.8052423, "lon": -73.9582880 }, + { "lat": 40.8053068, "lon": -73.9582856 }, + { "lat": 40.8053600, "lon": -73.9582811 }, + { "lat": 40.8054123, "lon": -73.9582719 }, + { "lat": 40.8054616, "lon": -73.9582602 }, + { "lat": 40.8055156, "lon": -73.9582431 }, + { "lat": 40.8056136, "lon": -73.9581910 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "name": "Morningside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 460604907, + "bounds": { + "minlat": 40.7533140, + "minlon": -73.9648110, + "maxlat": 40.7539350, + "maxlon": -73.9643470 + }, + "nodes": [ + 42453087, + 6672749653, + 6672749650, + 6672749649, + 42440472 + ], + "geometry": [ + { "lat": 40.7533140, "lon": -73.9648110 }, + { "lat": 40.7533711, "lon": -73.9647683 }, + { "lat": 40.7538481, "lon": -73.9644119 }, + { "lat": 40.7538860, "lon": -73.9643836 }, + { "lat": 40.7539350, "lon": -73.9643470 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Beekman Place", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 460606347, + "bounds": { + "minlat": 40.7485081, + "minlon": -73.9886948, + "maxlat": 40.7491217, + "maxlon": -73.9882353 + }, + "nodes": [ + 42430295, + 3833309813, + 10261412966, + 42430298 + ], + "geometry": [ + { "lat": 40.7485081, "lon": -73.9886948 }, + { "lat": 40.7485602, "lon": -73.9886558 }, + { "lat": 40.7490629, "lon": -73.9882789 }, + { "lat": 40.7491217, "lon": -73.9882353 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 460606348, + "bounds": { + "minlat": 40.7483789, + "minlon": -73.9886948, + "maxlat": 40.7485081, + "maxlon": -73.9883715 + }, + "nodes": [ + 42430295, + 3833309820, + 4769084859 + ], + "geometry": [ + { "lat": 40.7485081, "lon": -73.9886948 }, + { "lat": 40.7484675, "lon": -73.9885867 }, + { "lat": 40.7483789, "lon": -73.9883715 } + ], + "tags": { + "cycleway:both": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "-1", + "cycleway:right:oneway": "yes", + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 32nd Street", + "name:ru": "Западная 32-я стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 460624363, + "bounds": { + "minlat": 40.7091731, + "minlon": -74.0115886, + "maxlat": 40.7096349, + "maxlon": -74.0105706 + }, + "nodes": [ + 10299850024, + 5083818849, + 42422042 + ], + "geometry": [ + { "lat": 40.7096349, "lon": -74.0115886 }, + { "lat": 40.7092023, "lon": -74.0106482 }, + { "lat": 40.7091731, "lon": -74.0105706 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 460624365, + "bounds": { + "minlat": 40.7098636, + "minlon": -74.0115309, + "maxlat": 40.7103692, + "maxlon": -74.0112079 + }, + "nodes": [ + 9674242346, + 10288802580, + 4741335331, + 4741335330, + 10299849935, + 8262936497, + 42438155 + ], + "geometry": [ + { "lat": 40.7098636, "lon": -74.0115309 }, + { "lat": 40.7099101, "lon": -74.0115086 }, + { "lat": 40.7099523, "lon": -74.0114818 }, + { "lat": 40.7101198, "lon": -74.0113731 }, + { "lat": 40.7102648, "lon": -74.0112785 }, + { "lat": 40.7103165, "lon": -74.0112429 }, + { "lat": 40.7103692, "lon": -74.0112079 } + ], + "tags": { + "bus:lanes": "yes|yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 460657164, + "bounds": { + "minlat": 40.7720762, + "minlon": -73.9499354, + "maxlat": 40.7759320, + "maxlon": -73.9471206 + }, + "nodes": [ + 42428022, + 6691104519, + 7834024299, + 42428024, + 7834024288, + 7834024290, + 42428027, + 7834024334, + 7834024318, + 42428029, + 7834024305, + 7834030796, + 42428032, + 7834025580, + 7834025515, + 42428034, + 7834025525, + 7834025567, + 42428037 + ], + "geometry": [ + { "lat": 40.7720762, "lon": -73.9499354 }, + { "lat": 40.7721405, "lon": -73.9498885 }, + { "lat": 40.7726578, "lon": -73.9495109 }, + { "lat": 40.7727093, "lon": -73.9494733 }, + { "lat": 40.7727679, "lon": -73.9494305 }, + { "lat": 40.7732916, "lon": -73.9490482 }, + { "lat": 40.7733435, "lon": -73.9490103 }, + { "lat": 40.7734011, "lon": -73.9489683 }, + { "lat": 40.7739279, "lon": -73.9485836 }, + { "lat": 40.7739755, "lon": -73.9485489 }, + { "lat": 40.7740347, "lon": -73.9485057 }, + { "lat": 40.7745585, "lon": -73.9481233 }, + { "lat": 40.7746144, "lon": -73.9480825 }, + { "lat": 40.7746746, "lon": -73.9480386 }, + { "lat": 40.7751939, "lon": -73.9476594 }, + { "lat": 40.7752450, "lon": -73.9476222 }, + { "lat": 40.7753078, "lon": -73.9475763 }, + { "lat": 40.7758381, "lon": -73.9471892 }, + { "lat": 40.7759320, "lon": -73.9471206 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 460657165, + "bounds": { + "minlat": 40.7700880, + "minlon": -73.9514050, + "maxlat": 40.7707171, + "maxlon": -73.9509410 + }, + "nodes": [ + 42428015, + 6689923794, + 6217656996, + 6689923793, + 42428016 + ], + "geometry": [ + { "lat": 40.7700880, "lon": -73.9514050 }, + { "lat": 40.7701417, "lon": -73.9513654 }, + { "lat": 40.7701703, "lon": -73.9513444 }, + { "lat": 40.7706613, "lon": -73.9509822 }, + { "lat": 40.7707171, "lon": -73.9509410 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 460657166, + "bounds": { + "minlat": 40.7700936, + "minlon": -73.9509410, + "maxlat": 40.7707171, + "maxlon": -73.9494513 + }, + "nodes": [ + 4562863353, + 9906887420, + 6689923790, + 42428016 + ], + "geometry": [ + { "lat": 40.7700936, "lon": -73.9494513 }, + { "lat": 40.7705115, "lon": -73.9504469 }, + { "lat": 40.7706622, "lon": -73.9508013 }, + { "lat": 40.7707171, "lon": -73.9509410 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 78th Street", + "name:ru": "Восточная 78-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 460660844, + "bounds": { + "minlat": 40.7654155, + "minlon": -73.9530789, + "maxlat": 40.7656887, + "maxlon": -73.9524669 + }, + "nodes": [ + 4562897759, + 4633483774, + 4633483775, + 3786876210, + 9906953431 + ], + "geometry": [ + { "lat": 40.7654155, "lon": -73.9524669 }, + { "lat": 40.7654883, "lon": -73.9526301 }, + { "lat": 40.7655126, "lon": -73.9526844 }, + { "lat": 40.7655318, "lon": -73.9527274 }, + { "lat": 40.7656887, "lon": -73.9530789 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 71st Street", + "name:ru": "Восточная 71-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 460779249, + "bounds": { + "minlat": 40.7045260, + "minlon": -73.9287380, + "maxlat": 40.7047170, + "maxlon": -73.9283950 + }, + "nodes": [ + 42484352, + 13701110579, + 9744012792, + 42504145 + ], + "geometry": [ + { "lat": 40.7045260, "lon": -73.9283950 }, + { "lat": 40.7046224, "lon": -73.9285732 }, + { "lat": 40.7046612, "lon": -73.9286448 }, + { "lat": 40.7047170, "lon": -73.9287380 } + ], + "tags": { + "bicycle:lanes": "no|designated|no|designated", + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|no|yes|no", + "name": "Knickerbocker Avenue", + "name:etymology:wikidata": "Q55609555", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Knickerbocker", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11207", + "tiger:zip_right": "11207", + "turn:lanes": "left|left|through;right|through;right" + } +}, +{ + "type": "way", + "id": 460820907, + "bounds": { + "minlat": 40.7825543, + "minlon": -73.9197261, + "maxlat": 40.7860598, + "maxlon": -73.9152890 + }, + "nodes": [ + 1243057050, + 2295039220, + 7689056856, + 2295053594, + 2451166055, + 7833268212, + 42849809, + 7833268189, + 2295053593, + 3778313810, + 3778281534, + 7756484796, + 2295053592, + 7756484791, + 2295039214, + 7415981671, + 3778313799, + 2300336201, + 2295053591, + 3778313821, + 2302449644, + 2295053590, + 3778313814, + 42849818, + 3778313809, + 3778313777, + 3778313781, + 2295053589, + 7803848561, + 7833241029, + 42849823, + 7833241046, + 3778313780, + 7833241045, + 2298768513 + ], + "geometry": [ + { "lat": 40.7860598, "lon": -73.9152890 }, + { "lat": 40.7859743, "lon": -73.9153639 }, + { "lat": 40.7851496, "lon": -73.9161162 }, + { "lat": 40.7850871, "lon": -73.9161733 }, + { "lat": 40.7847187, "lon": -73.9164158 }, + { "lat": 40.7846934, "lon": -73.9164317 }, + { "lat": 40.7846260, "lon": -73.9164740 }, + { "lat": 40.7845744, "lon": -73.9165074 }, + { "lat": 40.7844541, "lon": -73.9165853 }, + { "lat": 40.7844271, "lon": -73.9166038 }, + { "lat": 40.7843953, "lon": -73.9166387 }, + { "lat": 40.7843330, "lon": -73.9167235 }, + { "lat": 40.7842819, "lon": -73.9167932 }, + { "lat": 40.7841152, "lon": -73.9170246 }, + { "lat": 40.7840609, "lon": -73.9170997 }, + { "lat": 40.7840037, "lon": -73.9171833 }, + { "lat": 40.7837979, "lon": -73.9174843 }, + { "lat": 40.7837673, "lon": -73.9175370 }, + { "lat": 40.7837414, "lon": -73.9175945 }, + { "lat": 40.7836786, "lon": -73.9177628 }, + { "lat": 40.7836566, "lon": -73.9178564 }, + { "lat": 40.7836368, "lon": -73.9179519 }, + { "lat": 40.7836065, "lon": -73.9181414 }, + { "lat": 40.7835835, "lon": -73.9182690 }, + { "lat": 40.7835644, "lon": -73.9183577 }, + { "lat": 40.7835520, "lon": -73.9184048 }, + { "lat": 40.7835145, "lon": -73.9184878 }, + { "lat": 40.7834878, "lon": -73.9185340 }, + { "lat": 40.7833596, "lon": -73.9187039 }, + { "lat": 40.7831175, "lon": -73.9190245 }, + { "lat": 40.7830722, "lon": -73.9190845 }, + { "lat": 40.7830289, "lon": -73.9191403 }, + { "lat": 40.7826110, "lon": -73.9196793 }, + { "lat": 40.7825934, "lon": -73.9196938 }, + { "lat": 40.7825543, "lon": -73.9197261 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "separate", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "maxspeed:type": "sign", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Shore Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Shore", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 460995221, + "bounds": { + "minlat": 40.7350064, + "minlon": -73.9527220, + "maxlat": 40.7351299, + "maxlon": -73.9525740 + }, + "nodes": [ + 597261862, + 597261861 + ], + "geometry": [ + { "lat": 40.7351299, "lon": -73.9527220 }, + { "lat": 40.7350064, "lon": -73.9525740 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt", + "tiger:cfcc": "A49", + "tiger:county": "Kings, NY", + "tiger:name_base": "Mc Guinness", + "tiger:name_base_1": "Pulaski", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Brg", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 461075404, + "bounds": { + "minlat": 40.7124723, + "minlon": -73.9222082, + "maxlat": 40.7128398, + "maxlon": -73.9215856 + }, + "nodes": [ + 42477659, + 597676768 + ], + "geometry": [ + { "lat": 40.7128398, "lon": -73.9222082 }, + { "lat": 40.7124723, "lon": -73.9215856 } + ], + "tags": { + "highway": "residential", + "name": "Onderdonk Avenue" + } +}, +{ + "type": "way", + "id": 461075405, + "bounds": { + "minlat": 40.7105435, + "minlon": -73.9207414, + "maxlat": 40.7114560, + "maxlon": -73.9198600 + }, + "nodes": [ + 42881140, + 8096728324, + 9744131332, + 42827564 + ], + "geometry": [ + { "lat": 40.7105435, "lon": -73.9207414 }, + { "lat": 40.7108721, "lon": -73.9204240 }, + { "lat": 40.7114045, "lon": -73.9199091 }, + { "lat": 40.7114560, "lon": -73.9198600 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 461075406, + "bounds": { + "minlat": 40.7094021, + "minlon": -73.9218981, + "maxlat": 40.7105435, + "maxlon": -73.9207414 + }, + "nodes": [ + 3325564426, + 9744131301, + 42881138, + 42881140 + ], + "geometry": [ + { "lat": 40.7094021, "lon": -73.9218981 }, + { "lat": 40.7094665, "lon": -73.9218323 }, + { "lat": 40.7096858, "lon": -73.9216077 }, + { "lat": 40.7105435, "lon": -73.9207414 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 461075407, + "bounds": { + "minlat": 40.7016747, + "minlon": -73.9118086, + "maxlat": 40.7034363, + "maxlon": -73.9088428 + }, + "nodes": [ + 3325564447, + 9761722153, + 9761722168, + 42907489, + 9761722166, + 9761722182, + 42907493, + 9761722181, + 9761722197, + 42907497, + 9761722195, + 9762206657, + 42870693 + ], + "geometry": [ + { "lat": 40.7034363, "lon": -73.9118086 }, + { "lat": 40.7034030, "lon": -73.9117525 }, + { "lat": 40.7030369, "lon": -73.9111374 }, + { "lat": 40.7029962, "lon": -73.9110688 }, + { "lat": 40.7029622, "lon": -73.9110115 }, + { "lat": 40.7025988, "lon": -73.9103993 }, + { "lat": 40.7025567, "lon": -73.9103284 }, + { "lat": 40.7025216, "lon": -73.9102694 }, + { "lat": 40.7021589, "lon": -73.9096585 }, + { "lat": 40.7021186, "lon": -73.9095906 }, + { "lat": 40.7020845, "lon": -73.9095331 }, + { "lat": 40.7017310, "lon": -73.9089376 }, + { "lat": 40.7016747, "lon": -73.9088428 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Cypress Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 461075408, + "bounds": { + "minlat": 40.7023672, + "minlon": -73.9128975, + "maxlat": 40.7034363, + "maxlon": -73.9118086 + }, + "nodes": [ + 3325564446, + 9668564756, + 9761722154, + 3325564447 + ], + "geometry": [ + { "lat": 40.7023672, "lon": -73.9128975 }, + { "lat": 40.7024186, "lon": -73.9128434 }, + { "lat": 40.7033804, "lon": -73.9118654 }, + { "lat": 40.7034363, "lon": -73.9118086 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Menahan Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY; Kings, NY", + "tiger:name_base": "Menahan", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11385; 11237", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 461075409, + "bounds": { + "minlat": 40.6922130, + "minlon": -73.9229190, + "maxlat": 40.7023672, + "maxlon": -73.9128975 + }, + "nodes": [ + 42477541, + 5713857031, + 9758644592, + 42477542, + 9758644590, + 9799250761, + 42477543, + 9799250763, + 9083990480, + 9799250651, + 42477544, + 9799250653, + 3146594315, + 8288673238, + 9799250905, + 5435873481, + 10087025168, + 9799250929, + 42477549, + 9799250931, + 9083990493, + 9761722271, + 42477552, + 9761722268, + 9755789402, + 42477555, + 9755789401, + 9668564755, + 3325564446 + ], + "geometry": [ + { "lat": 40.6922130, "lon": -73.9229190 }, + { "lat": 40.6922815, "lon": -73.9228511 }, + { "lat": 40.6930940, "lon": -73.9220437 }, + { "lat": 40.6931440, "lon": -73.9219940 }, + { "lat": 40.6932030, "lon": -73.9219359 }, + { "lat": 40.6951028, "lon": -73.9200644 }, + { "lat": 40.6951570, "lon": -73.9200110 }, + { "lat": 40.6952175, "lon": -73.9199516 }, + { "lat": 40.6961732, "lon": -73.9190127 }, + { "lat": 40.6965717, "lon": -73.9186212 }, + { "lat": 40.6966300, "lon": -73.9185640 }, + { "lat": 40.6966894, "lon": -73.9185060 }, + { "lat": 40.6973827, "lon": -73.9178299 }, + { "lat": 40.6976653, "lon": -73.9175532 }, + { "lat": 40.6980554, "lon": -73.9171714 }, + { "lat": 40.6981100, "lon": -73.9171180 }, + { "lat": 40.6981701, "lon": -73.9170597 }, + { "lat": 40.6989593, "lon": -73.9162931 }, + { "lat": 40.6990320, "lon": -73.9162195 }, + { "lat": 40.6991135, "lon": -73.9161347 }, + { "lat": 40.6995981, "lon": -73.9156589 }, + { "lat": 40.6996401, "lon": -73.9156173 }, + { "lat": 40.6996960, "lon": -73.9155620 }, + { "lat": 40.6997530, "lon": -73.9155061 }, + { "lat": 40.7011428, "lon": -73.9141422 }, + { "lat": 40.7011980, "lon": -73.9140880 }, + { "lat": 40.7012525, "lon": -73.9140325 }, + { "lat": 40.7023059, "lon": -73.9129598 }, + { "lat": 40.7023672, "lon": -73.9128975 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Menahan Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY; Kings, NY", + "tiger:name_base": "Menahan", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11385; 11237", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 461075410, + "bounds": { + "minlat": 40.7010490, + "minlon": -73.9128975, + "maxlat": 40.7023672, + "maxlon": -73.9106813 + }, + "nodes": [ + 3325564446, + 9668564757, + 9668687805, + 42524976, + 9668687812, + 10686537735, + 9668725429, + 597700290, + 9668725435, + 10686537736, + 8281025690, + 9668690919, + 3325564445 + ], + "geometry": [ + { "lat": 40.7023672, "lon": -73.9128975 }, + { "lat": 40.7023339, "lon": -73.9128400 }, + { "lat": 40.7019804, "lon": -73.9122304 }, + { "lat": 40.7019442, "lon": -73.9121679 }, + { "lat": 40.7019004, "lon": -73.9120929 }, + { "lat": 40.7015615, "lon": -73.9115429 }, + { "lat": 40.7015326, "lon": -73.9114934 }, + { "lat": 40.7014910, "lon": -73.9114224 }, + { "lat": 40.7014535, "lon": -73.9113620 }, + { "lat": 40.7014233, "lon": -73.9113133 }, + { "lat": 40.7012665, "lon": -73.9110310 }, + { "lat": 40.7010920, "lon": -73.9107511 }, + { "lat": 40.7010490, "lon": -73.9106813 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY;Queens, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 461593093, + "bounds": { + "minlat": 40.7668715, + "minlon": -73.9597829, + "maxlat": 40.7675009, + "maxlon": -73.9593404 + }, + "nodes": [ + 42429693, + 8851347589, + 7946184225, + 8855629731, + 42443000 + ], + "geometry": [ + { "lat": 40.7675009, "lon": -73.9593404 }, + { "lat": 40.7674511, "lon": -73.9593754 }, + { "lat": 40.7672901, "lon": -73.9594886 }, + { "lat": 40.7669312, "lon": -73.9597410 }, + { "lat": 40.7668715, "lon": -73.9597829 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 461593095, + "bounds": { + "minlat": 40.7664053, + "minlon": -73.9601107, + "maxlat": 40.7668715, + "maxlon": -73.9597829 + }, + "nodes": [ + 42443000, + 8855629728, + 9496052475 + ], + "geometry": [ + { "lat": 40.7668715, "lon": -73.9597829 }, + { "lat": 40.7668156, "lon": -73.9598222 }, + { "lat": 40.7664053, "lon": -73.9601107 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 461593096, + "bounds": { + "minlat": 40.7649919, + "minlon": -73.9611441, + "maxlat": 40.7662419, + "maxlon": -73.9602285 + }, + "nodes": [ + 42431681, + 6670244880, + 6139477285, + 9772198972, + 42437445, + 9772198969, + 5542680292, + 42442983 + ], + "geometry": [ + { "lat": 40.7662419, "lon": -73.9602285 }, + { "lat": 40.7661861, "lon": -73.9602697 }, + { "lat": 40.7658539, "lon": -73.9605149 }, + { "lat": 40.7656778, "lon": -73.9606435 }, + { "lat": 40.7656160, "lon": -73.9606894 }, + { "lat": 40.7655615, "lon": -73.9607284 }, + { "lat": 40.7650491, "lon": -73.9611026 }, + { "lat": 40.7649919, "lon": -73.9611441 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 461751471, + "bounds": { + "minlat": 40.7643507, + "minlon": -73.9264504, + "maxlat": 40.7657446, + "maxlon": -73.9234566 + }, + "nodes": [ + 42849727, + 7668020440, + 7668020439, + 42856521, + 7668020438, + 7668020436, + 42833316, + 7668020437, + 5780075955, + 8575778421, + 2457398824, + 42818515 + ], + "geometry": [ + { "lat": 40.7643507, "lon": -73.9234566 }, + { "lat": 40.7644132, "lon": -73.9235871 }, + { "lat": 40.7646956, "lon": -73.9241908 }, + { "lat": 40.7647274, "lon": -73.9242587 }, + { "lat": 40.7647622, "lon": -73.9243337 }, + { "lat": 40.7650751, "lon": -73.9249914 }, + { "lat": 40.7651045, "lon": -73.9250575 }, + { "lat": 40.7651371, "lon": -73.9251310 }, + { "lat": 40.7654102, "lon": -73.9257080 }, + { "lat": 40.7656928, "lon": -73.9263042 }, + { "lat": 40.7657146, "lon": -73.9263474 }, + { "lat": 40.7657446, "lon": -73.9264504 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "name": "31st Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 461751472, + "bounds": { + "minlat": 40.7639664, + "minlon": -73.9232433, + "maxlat": 40.7642487, + "maxlon": -73.9226715 + }, + "nodes": [ + 12851670171, + 3570249971, + 42856527 + ], + "geometry": [ + { "lat": 40.7642487, "lon": -73.9232433 }, + { "lat": 40.7640074, "lon": -73.9227381 }, + { "lat": 40.7639664, "lon": -73.9226715 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "31st Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 461922878, + "bounds": { + "minlat": 40.7733864, + "minlon": -73.9299114, + "maxlat": 40.7736047, + "maxlon": -73.9289911 + }, + "nodes": [ + 7745197943, + 7745197950, + 7733683713, + 6452969523, + 42811448 + ], + "geometry": [ + { "lat": 40.7736047, "lon": -73.9299114 }, + { "lat": 40.7735989, "lon": -73.9298869 }, + { "lat": 40.7735841, "lon": -73.9298305 }, + { "lat": 40.7734081, "lon": -73.9290827 }, + { "lat": 40.7733864, "lon": -73.9289911 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "highway": "tertiary", + "name": "27th Avenue" + } +}, +{ + "type": "way", + "id": 461925994, + "bounds": { + "minlat": 40.7655268, + "minlon": -73.9402806, + "maxlat": 40.7666471, + "maxlon": -73.9390842 + }, + "nodes": [ + 12855645335, + 2799400614, + 9915145359, + 9915145360, + 42826807, + 9915145361, + 2716110923, + 9915145362, + 2402842577, + 2402842576, + 5538983371, + 2459401787, + 6450607582, + 2402842573 + ], + "geometry": [ + { "lat": 40.7666471, "lon": -73.9390842 }, + { "lat": 40.7665503, "lon": -73.9393542 }, + { "lat": 40.7664517, "lon": -73.9396242 }, + { "lat": 40.7664401, "lon": -73.9396565 }, + { "lat": 40.7664278, "lon": -73.9396855 }, + { "lat": 40.7664148, "lon": -73.9397116 }, + { "lat": 40.7664003, "lon": -73.9397305 }, + { "lat": 40.7663796, "lon": -73.9397523 }, + { "lat": 40.7663572, "lon": -73.9397694 }, + { "lat": 40.7663377, "lon": -73.9397825 }, + { "lat": 40.7657821, "lon": -73.9401266 }, + { "lat": 40.7656614, "lon": -73.9402012 }, + { "lat": 40.7656093, "lon": -73.9402333 }, + { "lat": 40.7655268, "lon": -73.9402806 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 461925995, + "bounds": { + "minlat": 40.7668152, + "minlon": -73.9386192, + "maxlat": 40.7673348, + "maxlon": -73.9371757 + }, + "nodes": [ + 42826801, + 5538983374, + 7733783920, + 5538983373, + 13701347734, + 42826802, + 4573599938 + ], + "geometry": [ + { "lat": 40.7673348, "lon": -73.9371757 }, + { "lat": 40.7673157, "lon": -73.9372279 }, + { "lat": 40.7672712, "lon": -73.9373500 }, + { "lat": 40.7670127, "lon": -73.9380621 }, + { "lat": 40.7669747, "lon": -73.9381679 }, + { "lat": 40.7669013, "lon": -73.9383723 }, + { "lat": 40.7668152, "lon": -73.9386192 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "shoulder": "left", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 461925996, + "bounds": { + "minlat": 40.7695260, + "minlon": -73.9352270, + "maxlat": 40.7710290, + "maxlon": -73.9342460 + }, + "nodes": [ + 42826940, + 7733783545, + 42826944, + 5538983379, + 42826948, + 2886162054, + 42826950, + 42826954, + 42826957, + 11308734542, + 42810468 + ], + "geometry": [ + { "lat": 40.7695260, "lon": -73.9352270 }, + { "lat": 40.7696020, "lon": -73.9351367 }, + { "lat": 40.7697010, "lon": -73.9350190 }, + { "lat": 40.7697855, "lon": -73.9349358 }, + { "lat": 40.7698910, "lon": -73.9348320 }, + { "lat": 40.7700293, "lon": -73.9347191 }, + { "lat": 40.7700650, "lon": -73.9346900 }, + { "lat": 40.7701950, "lon": -73.9345990 }, + { "lat": 40.7704120, "lon": -73.9344740 }, + { "lat": 40.7709931, "lon": -73.9342593 }, + { "lat": 40.7710290, "lon": -73.9342460 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "name": "Vernon Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Vernon", + "tiger:name_type": "Blvd", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 462104944, + "bounds": { + "minlat": 40.8342707, + "minlon": -74.0119943, + "maxlat": 40.8355967, + "maxlon": -74.0115100 + }, + "nodes": [ + 103174107, + 7655813553, + 103174108, + 103125756 + ], + "geometry": [ + { "lat": 40.8342707, "lon": -74.0119943 }, + { "lat": 40.8345504, "lon": -74.0118966 }, + { "lat": 40.8353622, "lon": -74.0116131 }, + { "lat": 40.8355967, "lon": -74.0115100 } + ], + "tags": { + "highway": "residential", + "name": "Church Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Church", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 462421592, + "bounds": { + "minlat": 40.7129432, + "minlon": -74.0117560, + "maxlat": 40.7136173, + "maxlon": -74.0116038 + }, + "nodes": [ + 272194254, + 10282960474, + 10282960475, + 10282960476, + 8262936488, + 4143765783 + ], + "geometry": [ + { "lat": 40.7136173, "lon": -74.0116170 }, + { "lat": 40.7135915, "lon": -74.0116080 }, + { "lat": 40.7135696, "lon": -74.0116038 }, + { "lat": 40.7135465, "lon": -74.0116054 }, + { "lat": 40.7135278, "lon": -74.0116097 }, + { "lat": 40.7129432, "lon": -74.0117560 } + ], + "tags": { + "highway": "unclassified", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 462947795, + "bounds": { + "minlat": 40.7605652, + "minlon": -73.9725292, + "maxlat": 40.7608675, + "maxlon": -73.9719980 + }, + "nodes": [ + 4960544842, + 4960544843, + 2718023189, + 2718023195, + 4960544842 + ], + "geometry": [ + { "lat": 40.7607535, "lon": -73.9725292 }, + { "lat": 40.7605652, "lon": -73.9720807 }, + { "lat": 40.7606795, "lon": -73.9719980 }, + { "lat": 40.7608675, "lon": -73.9724467 }, + { "lat": 40.7607535, "lon": -73.9725292 } + ], + "tags": { + "area": "yes", + "area:highway": "pedestrian", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 463033873, + "bounds": { + "minlat": 40.7705629, + "minlon": -73.9942294, + "maxlat": 40.7706262, + "maxlon": -73.9940662 + }, + "nodes": [ + 247123612, + 2710239365, + 4904792748 + ], + "geometry": [ + { "lat": 40.7706262, "lon": -73.9942294 }, + { "lat": 40.7705878, "lon": -73.9941343 }, + { "lat": 40.7705629, "lon": -73.9940662 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "West 56th Street", + "name:ru": "Западная 56-я стрит", + "name_1": "West 56 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 463033874, + "bounds": { + "minlat": 40.7706262, + "minlon": -73.9942294, + "maxlat": 40.7712976, + "maxlon": -73.9935659 + }, + "nodes": [ + 247123612, + 247123613, + 9143011002, + 247123614, + 9143011003, + 5838459476, + 4599130023, + 4872443906, + 9143011004, + 4954189030, + 4954189029, + 9143010993, + 9143011005, + 9143010992, + 7443621689 + ], + "geometry": [ + { "lat": 40.7706262, "lon": -73.9942294 }, + { "lat": 40.7708893, "lon": -73.9941961 }, + { "lat": 40.7709387, "lon": -73.9941852 }, + { "lat": 40.7709981, "lon": -73.9941663 }, + { "lat": 40.7710497, "lon": -73.9941411 }, + { "lat": 40.7711012, "lon": -73.9941069 }, + { "lat": 40.7712034, "lon": -73.9940181 }, + { "lat": 40.7712530, "lon": -73.9939786 }, + { "lat": 40.7712699, "lon": -73.9939628 }, + { "lat": 40.7712865, "lon": -73.9939356 }, + { "lat": 40.7712956, "lon": -73.9938976 }, + { "lat": 40.7712976, "lon": -73.9938616 }, + { "lat": 40.7712898, "lon": -73.9938190 }, + { "lat": 40.7712793, "lon": -73.9937800 }, + { "lat": 40.7712271, "lon": -73.9935659 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 463034243, + "bounds": { + "minlat": 40.7525400, + "minlon": -73.9658594, + "maxlat": 40.7529386, + "maxlon": -73.9649161 + }, + "nodes": [ + 42438898, + 3814476679, + 9732870948 + ], + "geometry": [ + { "lat": 40.7525400, "lon": -73.9649161 }, + { "lat": 40.7526344, "lon": -73.9651396 }, + { "lat": 40.7529386, "lon": -73.9658594 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 463035843, + "bounds": { + "minlat": 40.7181153, + "minlon": -73.9873785, + "maxlat": 40.7183916, + "maxlon": -73.9865259 + }, + "nodes": [ + 486868138, + 5296792755, + 12195869763, + 12195869764, + 13033174920, + 12195869765, + 42429782 + ], + "geometry": [ + { "lat": 40.7181153, "lon": -73.9865259 }, + { "lat": 40.7181440, "lon": -73.9866077 }, + { "lat": 40.7181675, "lon": -73.9866802 }, + { "lat": 40.7181948, "lon": -73.9867684 }, + { "lat": 40.7183007, "lon": -73.9870949 }, + { "lat": 40.7183623, "lon": -73.9872850 }, + { "lat": 40.7183916, "lon": -73.9873785 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|none|right", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 463238700, + "bounds": { + "minlat": 40.7963222, + "minlon": -73.9391265, + "maxlat": 40.7965815, + "maxlon": -73.9389384 + }, + "nodes": [ + 4585289964, + 7924346596, + 4585289965 + ], + "geometry": [ + { "lat": 40.7963222, "lon": -73.9391265 }, + { "lat": 40.7965007, "lon": -73.9389971 }, + { "lat": 40.7965815, "lon": -73.9389384 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 463506906, + "bounds": { + "minlat": 40.8643376, + "minlon": -73.9166074, + "maxlat": 40.8645259, + "maxlon": -73.9150984 + }, + "nodes": [ + 3718637426, + 3718637428, + 3588534035, + 3718637430, + 3718637429, + 3718637427, + 3588534036, + 3588534037 + ], + "geometry": [ + { "lat": 40.8643376, "lon": -73.9166074 }, + { "lat": 40.8643648, "lon": -73.9165859 }, + { "lat": 40.8643858, "lon": -73.9165655 }, + { "lat": 40.8643943, "lon": -73.9165496 }, + { "lat": 40.8643998, "lon": -73.9165334 }, + { "lat": 40.8644039, "lon": -73.9164945 }, + { "lat": 40.8644598, "lon": -73.9157815 }, + { "lat": 40.8645259, "lon": -73.9150984 } + ], + "tags": { + "access": "no", + "highway": "service", + "tiger:county": "New York, NY" + } +}, +{ + "type": "way", + "id": 464169409, + "bounds": { + "minlat": 40.7103746, + "minlon": -73.9565269, + "maxlat": 40.7104010, + "maxlon": -73.9563526 + }, + "nodes": [ + 4593135559, + 480212188 + ], + "geometry": [ + { "lat": 40.7103746, "lon": -73.9565269 }, + { "lat": 40.7104010, "lon": -73.9563526 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 464169410, + "bounds": { + "minlat": 40.7108962, + "minlon": -73.9546188, + "maxlat": 40.7113219, + "maxlon": -73.9534784 + }, + "nodes": [ + 42504290, + 9755372002, + 8232714858, + 8842929750, + 42488303 + ], + "geometry": [ + { "lat": 40.7113219, "lon": -73.9546188 }, + { "lat": 40.7112996, "lon": -73.9545611 }, + { "lat": 40.7109365, "lon": -73.9535884 }, + { "lat": 40.7109183, "lon": -73.9535367 }, + { "lat": 40.7108962, "lon": -73.9534784 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "South 1st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "1st", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 464169412, + "bounds": { + "minlat": 40.7101720, + "minlon": -73.9515160, + "maxlat": 40.7102210, + "maxlon": -73.9509940 + }, + "nodes": [ + 42504294, + 8232714847, + 9755373502, + 42520577 + ], + "geometry": [ + { "lat": 40.7101720, "lon": -73.9515160 }, + { "lat": 40.7102051, "lon": -73.9511649 }, + { "lat": 40.7102099, "lon": -73.9511128 }, + { "lat": 40.7102210, "lon": -73.9509940 } + ], + "tags": { + "highway": "residential", + "name": "Maujer Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Maujer", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 464169417, + "bounds": { + "minlat": 40.7103461, + "minlon": -73.9583486, + "maxlat": 40.7104981, + "maxlon": -73.9570508 + }, + "nodes": [ + 479847987, + 1893285377, + 9768177712, + 1893285374 + ], + "geometry": [ + { "lat": 40.7104981, "lon": -73.9570508 }, + { "lat": 40.7104537, "lon": -73.9572863 }, + { "lat": 40.7103498, "lon": -73.9582506 }, + { "lat": 40.7103461, "lon": -73.9583486 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base_1": "Borinquen", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 464169419, + "bounds": { + "minlat": 40.7103528, + "minlon": -73.9566938, + "maxlat": 40.7106047, + "maxlon": -73.9565249 + }, + "nodes": [ + 4463110026, + 8821588893, + 42463272 + ], + "geometry": [ + { "lat": 40.7106047, "lon": -73.9565249 }, + { "lat": 40.7104106, "lon": -73.9566550 }, + { "lat": 40.7103528, "lon": -73.9566938 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 464169421, + "bounds": { + "minlat": 40.7240970, + "minlon": -73.9542532, + "maxlat": 40.7302057, + "maxlon": -73.9509780 + }, + "nodes": [ + 42520377, + 9789343599, + 5238711301, + 9788947079, + 42527806, + 9788947081, + 5238711299, + 5238711297, + 11919168009, + 42516607, + 11919168007, + 5238711295, + 5238706270, + 9785884657, + 7725544399, + 8097222250, + 5238706268, + 42498324, + 8097222269, + 42535489, + 8097222235, + 5238702453, + 6235394718, + 42514448 + ], + "geometry": [ + { "lat": 40.7240970, "lon": -73.9509780 }, + { "lat": 40.7241714, "lon": -73.9510201 }, + { "lat": 40.7251666, "lon": -73.9515835 }, + { "lat": 40.7253766, "lon": -73.9517026 }, + { "lat": 40.7254360, "lon": -73.9517360 }, + { "lat": 40.7255090, "lon": -73.9517777 }, + { "lat": 40.7256989, "lon": -73.9518861 }, + { "lat": 40.7268168, "lon": -73.9525244 }, + { "lat": 40.7270435, "lon": -73.9526544 }, + { "lat": 40.7271105, "lon": -73.9526928 }, + { "lat": 40.7271660, "lon": -73.9527242 }, + { "lat": 40.7273680, "lon": -73.9528385 }, + { "lat": 40.7278707, "lon": -73.9531265 }, + { "lat": 40.7280803, "lon": -73.9532444 }, + { "lat": 40.7281381, "lon": -73.9532771 }, + { "lat": 40.7281957, "lon": -73.9533105 }, + { "lat": 40.7283913, "lon": -73.9534207 }, + { "lat": 40.7288245, "lon": -73.9536650 }, + { "lat": 40.7294557, "lon": -73.9539313 }, + { "lat": 40.7295098, "lon": -73.9539583 }, + { "lat": 40.7295619, "lon": -73.9539803 }, + { "lat": 40.7298765, "lon": -73.9541226 }, + { "lat": 40.7301274, "lon": -73.9542282 }, + { "lat": 40.7302057, "lon": -73.9542532 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 464169428, + "bounds": { + "minlat": 40.7172800, + "minlon": -73.9583190, + "maxlat": 40.7234878, + "maxlon": -73.9516433 + }, + "nodes": [ + 42506177, + 9795044639, + 9795044650, + 42480066, + 9795044651, + 9794844939, + 42518976, + 9794844940, + 9794890333, + 42492544, + 9794890335, + 9794890433, + 42482465, + 9794890435, + 9794890537, + 42520383, + 9794890539, + 9794890691, + 42514554, + 3865279498, + 4593135579, + 3865279499, + 12096346224, + 4593135578, + 9789402807, + 42479277 + ], + "geometry": [ + { "lat": 40.7172800, "lon": -73.9583190 }, + { "lat": 40.7173304, "lon": -73.9582650 }, + { "lat": 40.7177948, "lon": -73.9577689 }, + { "lat": 40.7178350, "lon": -73.9577250 }, + { "lat": 40.7178848, "lon": -73.9576714 }, + { "lat": 40.7183417, "lon": -73.9571807 }, + { "lat": 40.7183880, "lon": -73.9571310 }, + { "lat": 40.7184392, "lon": -73.9570758 }, + { "lat": 40.7188941, "lon": -73.9565855 }, + { "lat": 40.7189410, "lon": -73.9565350 }, + { "lat": 40.7189896, "lon": -73.9564828 }, + { "lat": 40.7194461, "lon": -73.9559924 }, + { "lat": 40.7194930, "lon": -73.9559420 }, + { "lat": 40.7195459, "lon": -73.9558855 }, + { "lat": 40.7199978, "lon": -73.9554027 }, + { "lat": 40.7200490, "lon": -73.9553480 }, + { "lat": 40.7200999, "lon": -73.9552933 }, + { "lat": 40.7205545, "lon": -73.9548040 }, + { "lat": 40.7206010, "lon": -73.9547540 }, + { "lat": 40.7206547, "lon": -73.9546963 }, + { "lat": 40.7216655, "lon": -73.9536101 }, + { "lat": 40.7217189, "lon": -73.9535517 }, + { "lat": 40.7220538, "lon": -73.9532029 }, + { "lat": 40.7233471, "lon": -73.9517912 }, + { "lat": 40.7234171, "lon": -73.9517157 }, + { "lat": 40.7234878, "lon": -73.9516433 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "name": "Bedford Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 464191019, + "bounds": { + "minlat": 40.8364440, + "minlon": -74.0145224, + "maxlat": 40.8371624, + "maxlon": -74.0129750 + }, + "nodes": [ + 4593318821, + 4593318820, + 8218954503, + 5727153478, + 103125774 + ], + "geometry": [ + { "lat": 40.8371624, "lon": -74.0145224 }, + { "lat": 40.8370467, "lon": -74.0143553 }, + { "lat": 40.8366815, "lon": -74.0135146 }, + { "lat": 40.8365409, "lon": -74.0131909 }, + { "lat": 40.8364440, "lon": -74.0129750 } + ], + "tags": { + "highway": "residential", + "lit": "no", + "name": "River Street", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 464515259, + "bounds": { + "minlat": 40.7478958, + "minlon": -73.9948451, + "maxlat": 40.7502936, + "maxlon": -73.9891568 + }, + "nodes": [ + 42430292, + 10168911584, + 8567327073, + 4493840519, + 8130211161, + 9414480636, + 42435422, + 9414480628, + 7590955910, + 7590955908, + 3799572066, + 8567304864, + 9414461045, + 8567304866, + 7699762580, + 4443775465 + ], + "geometry": [ + { "lat": 40.7478958, "lon": -73.9891568 }, + { "lat": 40.7479662, "lon": -73.9893168 }, + { "lat": 40.7481142, "lon": -73.9896732 }, + { "lat": 40.7483764, "lon": -73.9902930 }, + { "lat": 40.7489208, "lon": -73.9915799 }, + { "lat": 40.7490496, "lon": -73.9918838 }, + { "lat": 40.7491010, "lon": -73.9920060 }, + { "lat": 40.7491518, "lon": -73.9921274 }, + { "lat": 40.7492996, "lon": -73.9924792 }, + { "lat": 40.7494640, "lon": -73.9928711 }, + { "lat": 40.7495618, "lon": -73.9931031 }, + { "lat": 40.7496133, "lon": -73.9932256 }, + { "lat": 40.7496378, "lon": -73.9932838 }, + { "lat": 40.7496599, "lon": -73.9933365 }, + { "lat": 40.7502418, "lon": -73.9947167 }, + { "lat": 40.7502936, "lon": -73.9948451 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 31st Street", + "name:ru": "Западная 31-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 464515614, + "bounds": { + "minlat": 40.7440672, + "minlon": -73.9877451, + "maxlat": 40.7465313, + "maxlon": -73.9859434 + }, + "nodes": [ + 42451674, + 10168260252, + 13706281949, + 10167162611, + 42437686, + 10167162612, + 4714254170, + 10167162604, + 42427786, + 9143542455, + 9910668354, + 10167162598, + 42438544, + 10167162597, + 10167162582, + 42434800 + ], + "geometry": [ + { "lat": 40.7465313, "lon": -73.9859434 }, + { "lat": 40.7464768, "lon": -73.9859835 }, + { "lat": 40.7460395, "lon": -73.9863051 }, + { "lat": 40.7459734, "lon": -73.9863538 }, + { "lat": 40.7459215, "lon": -73.9863915 }, + { "lat": 40.7458613, "lon": -73.9864357 }, + { "lat": 40.7456573, "lon": -73.9865857 }, + { "lat": 40.7453583, "lon": -73.9868041 }, + { "lat": 40.7453010, "lon": -73.9868460 }, + { "lat": 40.7452637, "lon": -73.9868732 }, + { "lat": 40.7452435, "lon": -73.9868879 }, + { "lat": 40.7447424, "lon": -73.9872539 }, + { "lat": 40.7446783, "lon": -73.9873007 }, + { "lat": 40.7446297, "lon": -73.9873362 }, + { "lat": 40.7441213, "lon": -73.9877065 }, + { "lat": 40.7440672, "lon": -73.9877451 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 464515890, + "bounds": { + "minlat": 40.7550013, + "minlon": -73.9831665, + "maxlat": 40.7561421, + "maxlon": -73.9804576 + }, + "nodes": [ + 42430342, + 3944708045, + 9666047678 + ], + "geometry": [ + { "lat": 40.7561421, "lon": -73.9831665 }, + { "lat": 40.7560874, "lon": -73.9830373 }, + { "lat": 40.7550013, "lon": -73.9804576 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "loc_name": "Clubhouse Row", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 464515891, + "bounds": { + "minlat": 40.7541655, + "minlon": -73.9803921, + "maxlat": 40.7547828, + "maxlon": -73.9799429 + }, + "nodes": [ + 42443556, + 3942050706, + 11043134802, + 3942050705, + 42454428 + ], + "geometry": [ + { "lat": 40.7547828, "lon": -73.9799429 }, + { "lat": 40.7547273, "lon": -73.9799828 }, + { "lat": 40.7545290, "lon": -73.9801272 }, + { "lat": 40.7542210, "lon": -73.9803515 }, + { "lat": 40.7541655, "lon": -73.9803921 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 464516471, + "bounds": { + "minlat": 40.7561421, + "minlon": -73.9831665, + "maxlat": 40.7599106, + "maxlon": -73.9804176 + }, + "nodes": [ + 42430342, + 10173121975, + 10164937730, + 42430344, + 10164937728, + 10166333059, + 42430347, + 10166333058, + 10166333086, + 42430350, + 10166333087, + 3971196607, + 3971196618, + 42430352, + 10172901896, + 3971196622, + 42430356, + 9674241493, + 3971196625, + 42430358 + ], + "geometry": [ + { "lat": 40.7561421, "lon": -73.9831665 }, + { "lat": 40.7562045, "lon": -73.9831216 }, + { "lat": 40.7567133, "lon": -73.9827538 }, + { "lat": 40.7567712, "lon": -73.9827118 }, + { "lat": 40.7568323, "lon": -73.9826670 }, + { "lat": 40.7573223, "lon": -73.9823040 }, + { "lat": 40.7573902, "lon": -73.9822537 }, + { "lat": 40.7574544, "lon": -73.9822069 }, + { "lat": 40.7579632, "lon": -73.9818362 }, + { "lat": 40.7580163, "lon": -73.9817975 }, + { "lat": 40.7580795, "lon": -73.9817517 }, + { "lat": 40.7582175, "lon": -73.9816514 }, + { "lat": 40.7585861, "lon": -73.9813835 }, + { "lat": 40.7586450, "lon": -73.9813410 }, + { "lat": 40.7587066, "lon": -73.9812962 }, + { "lat": 40.7592178, "lon": -73.9809237 }, + { "lat": 40.7592744, "lon": -73.9808828 }, + { "lat": 40.7595223, "lon": -73.9807016 }, + { "lat": 40.7598441, "lon": -73.9804662 }, + { "lat": 40.7599106, "lon": -73.9804176 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "concrete", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 464522037, + "bounds": { + "minlat": 40.7272120, + "minlon": -73.9952700, + "maxlat": 40.7284691, + "maxlon": -73.9942044 + }, + "nodes": [ + 8309479127, + 42428460, + 8309479128, + 8786833785, + 8309479040, + 42428458, + 8309479041, + 4755898710, + 8309479032, + 42428454 + ], + "geometry": [ + { "lat": 40.7284691, "lon": -73.9942044 }, + { "lat": 40.7284130, "lon": -73.9942520 }, + { "lat": 40.7283664, "lon": -73.9942916 }, + { "lat": 40.7279096, "lon": -73.9946799 }, + { "lat": 40.7278761, "lon": -73.9947084 }, + { "lat": 40.7278276, "lon": -73.9947496 }, + { "lat": 40.7277659, "lon": -73.9948020 }, + { "lat": 40.7274327, "lon": -73.9950852 }, + { "lat": 40.7272711, "lon": -73.9952205 }, + { "lat": 40.7272120, "lon": -73.9952700 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 464540545, + "bounds": { + "minlat": 40.7537363, + "minlon": -73.9119739, + "maxlat": 40.7553917, + "maxlon": -73.9111133 + }, + "nodes": [ + 7726598424, + 8593793982, + 8501001451, + 42919826, + 11643674655, + 2520377379 + ], + "geometry": [ + { "lat": 40.7553917, "lon": -73.9119739 }, + { "lat": 40.7553141, "lon": -73.9119325 }, + { "lat": 40.7552626, "lon": -73.9119051 }, + { "lat": 40.7545916, "lon": -73.9115261 }, + { "lat": 40.7539408, "lon": -73.9112011 }, + { "lat": 40.7537363, "lon": -73.9111133 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Newtown Road", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 464540546, + "bounds": { + "minlat": 40.7534588, + "minlon": -73.9134813, + "maxlat": 40.7553917, + "maxlon": -73.9119739 + }, + "nodes": [ + 7726598424, + 8593793997, + 7660889411, + 7660889407, + 3778141134, + 5116199203, + 9188971705, + 7762275877, + 9188971706, + 7762273788 + ], + "geometry": [ + { "lat": 40.7553917, "lon": -73.9119739 }, + { "lat": 40.7553156, "lon": -73.9120357 }, + { "lat": 40.7545497, "lon": -73.9126581 }, + { "lat": 40.7541452, "lon": -73.9129867 }, + { "lat": 40.7540555, "lon": -73.9130596 }, + { "lat": 40.7538010, "lon": -73.9132663 }, + { "lat": 40.7536086, "lon": -73.9134252 }, + { "lat": 40.7535749, "lon": -73.9134459 }, + { "lat": 40.7535318, "lon": -73.9134620 }, + { "lat": 40.7534588, "lon": -73.9134813 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "49th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 464543614, + "bounds": { + "minlat": 40.7528950, + "minlon": -73.9915935, + "maxlat": 40.7538863, + "maxlon": -73.9892430 + }, + "nodes": [ + 42439960, + 10169532518, + 10308251046 + ], + "geometry": [ + { "lat": 40.7528950, "lon": -73.9892430 }, + { "lat": 40.7529481, "lon": -73.9893687 }, + { "lat": 40.7538863, "lon": -73.9915935 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 464543615, + "bounds": { + "minlat": 40.7516588, + "minlon": -73.9901341, + "maxlat": 40.7522886, + "maxlon": -73.9896878 + }, + "nodes": [ + 42439955, + 10169532574, + 10169532547, + 42439952 + ], + "geometry": [ + { "lat": 40.7522886, "lon": -73.9896878 }, + { "lat": 40.7522244, "lon": -73.9897332 }, + { "lat": 40.7517210, "lon": -73.9900901 }, + { "lat": 40.7516588, "lon": -73.9901341 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 464683313, + "bounds": { + "minlat": 40.7401693, + "minlon": -73.9864100, + "maxlat": 40.7402148, + "maxlon": -73.9863033 + }, + "nodes": [ + 42448693, + 4597668041 + ], + "geometry": [ + { "lat": 40.7401693, "lon": -73.9863033 }, + { "lat": 40.7402148, "lon": -73.9864100 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 464683316, + "bounds": { + "minlat": 40.7374111, + "minlon": -73.9918061, + "maxlat": 40.7385111, + "maxlon": -73.9892013 + }, + "nodes": [ + 42429657, + 7761301139, + 8569045607, + 42428174, + 8569045569, + 9625662426 + ], + "geometry": [ + { "lat": 40.7385111, "lon": -73.9918061 }, + { "lat": 40.7384583, "lon": -73.9916814 }, + { "lat": 40.7378413, "lon": -73.9902254 }, + { "lat": 40.7378047, "lon": -73.9901393 }, + { "lat": 40.7377602, "lon": -73.9900295 }, + { "lat": 40.7374111, "lon": -73.9892013 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 18th Street", + "name:ru": "Восточная 18-я стрит", + "name_1": "East 18 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 464683317, + "bounds": { + "minlat": 40.7365722, + "minlon": -73.9890653, + "maxlat": 40.7371730, + "maxlon": -73.9886277 + }, + "nodes": [ + 4597668026, + 9679181063, + 12181339161, + 4597668027, + 4597668036 + ], + "geometry": [ + { "lat": 40.7371730, "lon": -73.9886277 }, + { "lat": 40.7371174, "lon": -73.9886674 }, + { "lat": 40.7366772, "lon": -73.9889882 }, + { "lat": 40.7366388, "lon": -73.9890162 }, + { "lat": 40.7365722, "lon": -73.9890653 } + ], + "tags": { + "cycleway:right": "no", + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 464683318, + "bounds": { + "minlat": 40.7414523, + "minlon": -73.9853699, + "maxlat": 40.7420713, + "maxlon": -73.9849181 + }, + "nodes": [ + 42456555, + 10166167563, + 12181339180, + 10166167574, + 42429888 + ], + "geometry": [ + { "lat": 40.7414523, "lon": -73.9853699 }, + { "lat": 40.7415098, "lon": -73.9853268 }, + { "lat": 40.7419752, "lon": -73.9849882 }, + { "lat": 40.7420116, "lon": -73.9849616 }, + { "lat": 40.7420713, "lon": -73.9849181 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 464683319, + "bounds": { + "minlat": 40.7415054, + "minlon": -73.9854972, + "maxlat": 40.7421242, + "maxlon": -73.9850460 + }, + "nodes": [ + 4597668032, + 10166167576, + 10166167565, + 4597668042 + ], + "geometry": [ + { "lat": 40.7421242, "lon": -73.9850460 }, + { "lat": 40.7420656, "lon": -73.9850876 }, + { "lat": 40.7415644, "lon": -73.9854546 }, + { "lat": 40.7415054, "lon": -73.9854972 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 464683320, + "bounds": { + "minlat": 40.7420713, + "minlon": -73.9850460, + "maxlat": 40.7421242, + "maxlon": -73.9849181 + }, + "nodes": [ + 4597668032, + 42429888 + ], + "geometry": [ + { "lat": 40.7421242, "lon": -73.9850460 }, + { "lat": 40.7420713, "lon": -73.9849181 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 26th Street", + "name:ru": "Восточная 26-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 464683321, + "bounds": { + "minlat": 40.7421242, + "minlon": -73.9865977, + "maxlat": 40.7427711, + "maxlon": -73.9850460 + }, + "nodes": [ + 42429876, + 10168260239, + 12181339181, + 10166167577, + 4597668032 + ], + "geometry": [ + { "lat": 40.7427711, "lon": -73.9865977 }, + { "lat": 40.7427295, "lon": -73.9864999 }, + { "lat": 40.7421802, "lon": -73.9851813 }, + { "lat": 40.7421560, "lon": -73.9851228 }, + { "lat": 40.7421242, "lon": -73.9850460 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 26th Street", + "name:ru": "Восточная 26-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 464683323, + "bounds": { + "minlat": 40.7365722, + "minlon": -73.9903374, + "maxlat": 40.7371273, + "maxlon": -73.9890653 + }, + "nodes": [ + 4597668036, + 3252590543, + 6528583471, + 12179582150, + 12179582149, + 12179582148, + 3875000763, + 42428170 + ], + "geometry": [ + { "lat": 40.7365722, "lon": -73.9890653 }, + { "lat": 40.7366141, "lon": -73.9891726 }, + { "lat": 40.7369354, "lon": -73.9899405 }, + { "lat": 40.7369609, "lon": -73.9899976 }, + { "lat": 40.7369864, "lon": -73.9900508 }, + { "lat": 40.7370373, "lon": -73.9901572 }, + { "lat": 40.7370686, "lon": -73.9902235 }, + { "lat": 40.7371273, "lon": -73.9903374 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 17th Street", + "name:ru": "Восточная 17-я стрит", + "name_1": "East 17 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 464683327, + "bounds": { + "minlat": 40.7363976, + "minlon": -73.9892055, + "maxlat": 40.7365722, + "maxlon": -73.9890653 + }, + "nodes": [ + 4597668036, + 4597668025, + 595403438 + ], + "geometry": [ + { "lat": 40.7365722, "lon": -73.9890653 }, + { "lat": 40.7365301, "lon": -73.9890963 }, + { "lat": 40.7363976, "lon": -73.9892055 } + ], + "tags": { + "cycleway:right": "no", + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Union Square East", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 464683328, + "bounds": { + "minlat": 40.7371730, + "minlon": -73.9886277, + "maxlat": 40.7377527, + "maxlon": -73.9882046 + }, + "nodes": [ + 4597668038, + 10172843114, + 12181339162, + 9679181078, + 4597668026 + ], + "geometry": [ + { "lat": 40.7377527, "lon": -73.9882046 }, + { "lat": 40.7377049, "lon": -73.9882415 }, + { "lat": 40.7372694, "lon": -73.9885568 }, + { "lat": 40.7372273, "lon": -73.9885873 }, + { "lat": 40.7371730, "lon": -73.9886277 } + ], + "tags": { + "cycleway:right": "no", + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 464683329, + "bounds": { + "minlat": 40.7389341, + "minlon": -73.9873431, + "maxlat": 40.7402148, + "maxlon": -73.9864100 + }, + "nodes": [ + 4597668041, + 10166167542, + 12181339168, + 10166167549, + 4597668040, + 10166167545, + 12181339169, + 12181309685, + 10172843076, + 4597668039 + ], + "geometry": [ + { "lat": 40.7402148, "lon": -73.9864100 }, + { "lat": 40.7401169, "lon": -73.9864846 }, + { "lat": 40.7396391, "lon": -73.9868333 }, + { "lat": 40.7396026, "lon": -73.9868589 }, + { "lat": 40.7395448, "lon": -73.9868997 }, + { "lat": 40.7394929, "lon": -73.9869364 }, + { "lat": 40.7394781, "lon": -73.9869473 }, + { "lat": 40.7390263, "lon": -73.9872765 }, + { "lat": 40.7389840, "lon": -73.9873073 }, + { "lat": 40.7389341, "lon": -73.9873431 } + ], + "tags": { + "cycleway:right": "no", + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "width": "10", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 464683336, + "bounds": { + "minlat": 40.7408738, + "minlon": -73.9859403, + "maxlat": 40.7415054, + "maxlon": -73.9854972 + }, + "nodes": [ + 4597668042, + 10166167566, + 12181339176, + 10166167527, + 4597668029 + ], + "geometry": [ + { "lat": 40.7415054, "lon": -73.9854972 }, + { "lat": 40.7414486, "lon": -73.9855375 }, + { "lat": 40.7409852, "lon": -73.9858752 }, + { "lat": 40.7409450, "lon": -73.9858985 }, + { "lat": 40.7408738, "lon": -73.9859403 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 464683339, + "bounds": { + "minlat": 40.7421242, + "minlon": -73.9850460, + "maxlat": 40.7439834, + "maxlon": -73.9836934 + }, + "nodes": [ + 4597668043, + 10166167634, + 12181339191, + 10167162566, + 4597668030, + 10167162567, + 12181339192, + 12181339188, + 10166167616, + 4597668031, + 10166167617, + 12181339189, + 12181339182, + 10166167575, + 4597668032 + ], + "geometry": [ + { "lat": 40.7439834, "lon": -73.9836934 }, + { "lat": 40.7439196, "lon": -73.9837393 }, + { "lat": 40.7434578, "lon": -73.9840740 }, + { "lat": 40.7434144, "lon": -73.9841061 }, + { "lat": 40.7433626, "lon": -73.9841444 }, + { "lat": 40.7433038, "lon": -73.9841877 }, + { "lat": 40.7432880, "lon": -73.9841994 }, + { "lat": 40.7428404, "lon": -73.9845239 }, + { "lat": 40.7427984, "lon": -73.9845548 }, + { "lat": 40.7427430, "lon": -73.9845957 }, + { "lat": 40.7426832, "lon": -73.9846399 }, + { "lat": 40.7426689, "lon": -73.9846504 }, + { "lat": 40.7422196, "lon": -73.9849785 }, + { "lat": 40.7421844, "lon": -73.9850035 }, + { "lat": 40.7421242, "lon": -73.9850460 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 464683341, + "bounds": { + "minlat": 40.7439834, + "minlon": -73.9836934, + "maxlat": 40.7458300, + "maxlon": -73.9823372 + }, + "nodes": [ + 4597668020, + 8119462511, + 12181374917, + 12181374911, + 8119462516, + 4597668044, + 8119462435, + 12181374909, + 8119462467, + 4597668033, + 8119462459, + 12181374908, + 10166167633, + 4597668043 + ], + "geometry": [ + { "lat": 40.7458300, "lon": -73.9823372 }, + { "lat": 40.7457741, "lon": -73.9823854 }, + { "lat": 40.7457601, "lon": -73.9823975 }, + { "lat": 40.7453111, "lon": -73.9827265 }, + { "lat": 40.7452709, "lon": -73.9827553 }, + { "lat": 40.7452094, "lon": -73.9827991 }, + { "lat": 40.7451584, "lon": -73.9828358 }, + { "lat": 40.7446918, "lon": -73.9831759 }, + { "lat": 40.7446435, "lon": -73.9832111 }, + { "lat": 40.7445970, "lon": -73.9832450 }, + { "lat": 40.7445382, "lon": -73.9832879 }, + { "lat": 40.7440763, "lon": -73.9836265 }, + { "lat": 40.7440340, "lon": -73.9836570 }, + { "lat": 40.7439834, "lon": -73.9836934 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 464791313, + "bounds": { + "minlat": 40.8607457, + "minlon": -73.9725456, + "maxlat": 40.8617874, + "maxlon": -73.9719204 + }, + "nodes": [ + 4598640248, + 4598640247, + 4598640246, + 4598640245, + 4598640244, + 4598640243 + ], + "geometry": [ + { "lat": 40.8607457, "lon": -73.9719204 }, + { "lat": 40.8610936, "lon": -73.9725348 }, + { "lat": 40.8611119, "lon": -73.9725456 }, + { "lat": 40.8611261, "lon": -73.9725442 }, + { "lat": 40.8614537, "lon": -73.9724517 }, + { "lat": 40.8617874, "lon": -73.9724047 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 464847780, + "bounds": { + "minlat": 40.7479591, + "minlon": -74.0076699, + "maxlat": 40.7481917, + "maxlon": -74.0076380 + }, + "nodes": [ + 246579597, + 12161232243 + ], + "geometry": [ + { "lat": 40.7479591, "lon": -74.0076699 }, + { "lat": 40.7481917, "lon": -74.0076380 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 464847783, + "bounds": { + "minlat": 40.7630722, + "minlon": -73.9997719, + "maxlat": 40.7631598, + "maxlon": -73.9995988 + }, + "nodes": [ + 42443570, + 9143503686, + 9143503685, + 62915509 + ], + "geometry": [ + { "lat": 40.7631598, "lon": -73.9997719 }, + { "lat": 40.7631222, "lon": -73.9997056 }, + { "lat": 40.7630927, "lon": -73.9996447 }, + { "lat": 40.7630722, "lon": -73.9995988 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 464847784, + "bounds": { + "minlat": 40.7654973, + "minlon": -73.9978029, + "maxlat": 40.7655784, + "maxlon": -73.9975936 + }, + "nodes": [ + 12154598280, + 11017187936 + ], + "geometry": [ + { "lat": 40.7655784, "lon": -73.9978029 }, + { "lat": 40.7654973, "lon": -73.9975936 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 48th Street", + "name:ru": "Западная 48-я стрит", + "name_1": "West 48 Street", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 464902520, + "bounds": { + "minlat": 40.7499884, + "minlon": -73.9927978, + "maxlat": 40.7503748, + "maxlon": -73.9925198 + }, + "nodes": [ + 4599496692, + 4599495884 + ], + "geometry": [ + { "lat": 40.7503748, "lon": -73.9925198 }, + { "lat": 40.7499884, "lon": -73.9927978 } + ], + "tags": { + "access": "no", + "highway": "service", + "name": "Pennsylvania Plaza", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 464902521, + "bounds": { + "minlat": 40.7495618, + "minlon": -73.9931031, + "maxlat": 40.7499884, + "maxlon": -73.9927978 + }, + "nodes": [ + 4599495884, + 9414461037, + 9414461035, + 9414461034, + 3799572066 + ], + "geometry": [ + { "lat": 40.7499884, "lon": -73.9927978 }, + { "lat": 40.7497169, "lon": -73.9929921 }, + { "lat": 40.7496964, "lon": -73.9930068 }, + { "lat": 40.7496400, "lon": -73.9930471 }, + { "lat": 40.7495618, "lon": -73.9931031 } + ], + "tags": { + "access": "no", + "highway": "service", + "name": "Pennsylvania Plaza" + } +}, +{ + "type": "way", + "id": 464902522, + "bounds": { + "minlat": 40.7512058, + "minlon": -73.9931823, + "maxlat": 40.7514135, + "maxlon": -73.9930318 + }, + "nodes": [ + 4599496700, + 11513000654, + 3799564971 + ], + "geometry": [ + { "lat": 40.7514135, "lon": -73.9930318 }, + { "lat": 40.7512637, "lon": -73.9931404 }, + { "lat": 40.7512058, "lon": -73.9931823 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 464902523, + "bounds": { + "minlat": 40.7516064, + "minlon": -73.9928867, + "maxlat": 40.7518840, + "maxlon": -73.9926856 + }, + "nodes": [ + 3799564975, + 9413881883, + 4599496701 + ], + "geometry": [ + { "lat": 40.7518840, "lon": -73.9926856 }, + { "lat": 40.7517872, "lon": -73.9927557 }, + { "lat": 40.7516064, "lon": -73.9928867 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 464960357, + "bounds": { + "minlat": 40.7400823, + "minlon": -73.9789301, + "maxlat": 40.7403514, + "maxlon": -73.9782988 + }, + "nodes": [ + 4298953152, + 8127675293, + 3817756011 + ], + "geometry": [ + { "lat": 40.7400823, "lon": -73.9782988 }, + { "lat": 40.7400876, "lon": -73.9783112 }, + { "lat": 40.7403514, "lon": -73.9789301 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "East 27th Street", + "name:ru": "Восточная 27-я стрит", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 464964299, + "bounds": { + "minlat": 40.7169812, + "minlon": -73.9944635, + "maxlat": 40.7177762, + "maxlon": -73.9940617 + }, + "nodes": [ + 42445603, + 6369613318, + 12196062145, + 12196062144 + ], + "geometry": [ + { "lat": 40.7169812, "lon": -73.9944635 }, + { "lat": 40.7170462, "lon": -73.9944299 }, + { "lat": 40.7170913, "lon": -73.9944058 }, + { "lat": 40.7177762, "lon": -73.9940617 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 464988509, + "bounds": { + "minlat": 40.7779466, + "minlon": -73.9820717, + "maxlat": 40.7781876, + "maxlon": -73.9818922 + }, + "nodes": [ + 5708001199, + 5708001202, + 1061531491 + ], + "geometry": [ + { "lat": 40.7779466, "lon": -73.9820717 }, + { "lat": 40.7780052, "lon": -73.9820291 }, + { "lat": 40.7781876, "lon": -73.9818922 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 464988510, + "bounds": { + "minlat": 40.7778592, + "minlon": -73.9820960, + "maxlat": 40.7779122, + "maxlon": -73.9819708 + }, + "nodes": [ + 1996323622, + 5708001198, + 9177424868 + ], + "geometry": [ + { "lat": 40.7778592, "lon": -73.9819708 }, + { "lat": 40.7778947, "lon": -73.9820610 }, + { "lat": 40.7779122, "lon": -73.9820960 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "West 71st Street", + "name:ru": "Западная 71-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 465000799, + "bounds": { + "minlat": 40.7596014, + "minlon": -73.9680635, + "maxlat": 40.7602748, + "maxlon": -73.9675757 + }, + "nodes": [ + 42443615, + 9140903901, + 13859238031, + 10125255941, + 42432856 + ], + "geometry": [ + { "lat": 40.7596014, "lon": -73.9680635 }, + { "lat": 40.7596611, "lon": -73.9680194 }, + { "lat": 40.7600501, "lon": -73.9677382 }, + { "lat": 40.7601763, "lon": -73.9676470 }, + { "lat": 40.7602748, "lon": -73.9675757 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 465063250, + "bounds": { + "minlat": 40.7570487, + "minlon": -73.9931412, + "maxlat": 40.7576127, + "maxlon": -73.9927303 + }, + "nodes": [ + 9538820171, + 10686429935, + 10686429934, + 593972687 + ], + "geometry": [ + { "lat": 40.7570487, "lon": -73.9931412 }, + { "lat": 40.7571384, "lon": -73.9930759 }, + { "lat": 40.7574336, "lon": -73.9928608 }, + { "lat": 40.7576127, "lon": -73.9927303 } + ], + "tags": { + "access": "no", + "highway": "service", + "motor_vehicle": "no", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 465066386, + "bounds": { + "minlat": 40.7520303, + "minlon": -73.9675604, + "maxlat": 40.7522470, + "maxlon": -73.9673956 + }, + "nodes": [ + 595105571, + 6133333100 + ], + "geometry": [ + { "lat": 40.7520303, "lon": -73.9675604 }, + { "lat": 40.7522470, "lon": -73.9673956 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "1st Avenue Tunnel", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "merge_to_right|through" + } +}, +{ + "type": "way", + "id": 465067248, + "bounds": { + "minlat": 40.8048633, + "minlon": -73.9677213, + "maxlat": 40.8054609, + "maxlon": -73.9663136 + }, + "nodes": [ + 42428790, + 11375951796, + 7785880653, + 7785782284 + ], + "geometry": [ + { "lat": 40.8048633, "lon": -73.9663136 }, + { "lat": 40.8049141, "lon": -73.9664335 }, + { "lat": 40.8054400, "lon": -73.9676703 }, + { "lat": 40.8054609, "lon": -73.9677213 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "1", + "name": "West 111th Street", + "name:ru": "Западная 111-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 465067249, + "bounds": { + "minlat": 40.8047230, + "minlon": -73.9680127, + "maxlat": 40.8075991, + "maxlon": -73.9669163 + }, + "nodes": [ + 42441926, + 6914116736, + 42441932, + 42441934, + 42441936, + 42441937, + 6914116747, + 6914116753, + 42441939, + 6914116763, + 42441941, + 7785782284, + 7785929603, + 4643146619, + 4643146617, + 8831843005, + 42437223, + 10168673735, + 4643146616, + 7785881422, + 42431193, + 7785881436, + 1506445794, + 4643146618, + 7785881385, + 5004570630 + ], + "geometry": [ + { "lat": 40.8047230, "lon": -73.9680127 }, + { "lat": 40.8047664, "lon": -73.9679625 }, + { "lat": 40.8047982, "lon": -73.9679433 }, + { "lat": 40.8048639, "lon": -73.9679173 }, + { "lat": 40.8049299, "lon": -73.9679025 }, + { "lat": 40.8051740, "lon": -73.9678730 }, + { "lat": 40.8052238, "lon": -73.9678603 }, + { "lat": 40.8052570, "lon": -73.9678478 }, + { "lat": 40.8052836, "lon": -73.9678367 }, + { "lat": 40.8053385, "lon": -73.9678054 }, + { "lat": 40.8054072, "lon": -73.9677623 }, + { "lat": 40.8054609, "lon": -73.9677213 }, + { "lat": 40.8055229, "lon": -73.9676812 }, + { "lat": 40.8057091, "lon": -73.9675624 }, + { "lat": 40.8059537, "lon": -73.9674484 }, + { "lat": 40.8060349, "lon": -73.9674131 }, + { "lat": 40.8061270, "lon": -73.9673730 }, + { "lat": 40.8061620, "lon": -73.9673604 }, + { "lat": 40.8065679, "lon": -73.9672351 }, + { "lat": 40.8067806, "lon": -73.9671590 }, + { "lat": 40.8068579, "lon": -73.9671331 }, + { "lat": 40.8069294, "lon": -73.9671074 }, + { "lat": 40.8072457, "lon": -73.9670042 }, + { "lat": 40.8073712, "lon": -73.9669598 }, + { "lat": 40.8075059, "lon": -73.9669163 }, + { "lat": 40.8075991, "lon": -73.9669620 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 465098271, + "bounds": { + "minlat": 40.7422581, + "minlon": -74.0006951, + "maxlat": 40.7424635, + "maxlon": -74.0005490 + }, + "nodes": [ + 42429662, + 10172816363, + 4205565518 + ], + "geometry": [ + { "lat": 40.7422581, "lon": -74.0006951 }, + { "lat": 40.7423175, "lon": -74.0006529 }, + { "lat": 40.7424635, "lon": -74.0005490 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 465098276, + "bounds": { + "minlat": 40.7410800, + "minlon": -74.0015550, + "maxlat": 40.7413136, + "maxlon": -74.0013891 + }, + "nodes": [ + 42435599, + 8262308793, + 4205565514 + ], + "geometry": [ + { "lat": 40.7410800, "lon": -74.0015550 }, + { "lat": 40.7411490, "lon": -74.0015050 }, + { "lat": 40.7413136, "lon": -74.0013891 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 465098285, + "bounds": { + "minlat": 40.7434291, + "minlon": -73.9998503, + "maxlat": 40.7436469, + "maxlon": -73.9996879 + }, + "nodes": [ + 42427381, + 10171337727, + 4205565523 + ], + "geometry": [ + { "lat": 40.7434291, "lon": -73.9998503 }, + { "lat": 40.7434894, "lon": -73.9998057 }, + { "lat": 40.7436469, "lon": -73.9996879 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 465098290, + "bounds": { + "minlat": 40.7446300, + "minlon": -73.9989693, + "maxlat": 40.7449004, + "maxlon": -73.9987752 + }, + "nodes": [ + 42434271, + 10171509275, + 4205565533 + ], + "geometry": [ + { "lat": 40.7446300, "lon": -73.9989693 }, + { "lat": 40.7446901, "lon": -73.9989243 }, + { "lat": 40.7449004, "lon": -73.9987752 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 465098295, + "bounds": { + "minlat": 40.7393750, + "minlon": -74.0027775, + "maxlat": 40.7397428, + "maxlon": -74.0024948 + }, + "nodes": [ + 42432214, + 8310246334, + 42435596 + ], + "geometry": [ + { "lat": 40.7393750, "lon": -74.0027775 }, + { "lat": 40.7396601, "lon": -74.0025563 }, + { "lat": 40.7397428, "lon": -74.0024948 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 465101198, + "bounds": { + "minlat": 40.7418601, + "minlon": -73.9923036, + "maxlat": 40.7426974, + "maxlon": -73.9903271 + }, + "nodes": [ + 9971262471, + 3859048179, + 9971262468 + ], + "geometry": [ + { "lat": 40.7426974, "lon": -73.9923036 }, + { "lat": 40.7423368, "lon": -73.9914501 }, + { "lat": 40.7418601, "lon": -73.9903271 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "West 23rd Street", + "name:ru": "Западная 23-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:backward": "through|through", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 465123936, + "bounds": { + "minlat": 40.7553815, + "minlon": -73.9970345, + "maxlat": 40.7559876, + "maxlon": -73.9965926 + }, + "nodes": [ + 4601240939, + 5889481210, + 5889481215, + 4601240938 + ], + "geometry": [ + { "lat": 40.7559876, "lon": -73.9965926 }, + { "lat": 40.7559347, "lon": -73.9966311 }, + { "lat": 40.7554391, "lon": -73.9969919 }, + { "lat": 40.7553815, "lon": -73.9970345 } + ], + "tags": { + "access": "private", + "highway": "service", + "motor_vehicle": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 465250328, + "bounds": { + "minlat": 40.7239735, + "minlon": -74.0071901, + "maxlat": 40.7240080, + "maxlon": -74.0069607 + }, + "nodes": [ + 11322971538, + 11322971539, + 4602410643, + 4602410645, + 11322971537, + 11322971540, + 11322971536 + ], + "geometry": [ + { "lat": 40.7239995, "lon": -74.0071901 }, + { "lat": 40.7240058, "lon": -74.0071786 }, + { "lat": 40.7240080, "lon": -74.0071606 }, + { "lat": 40.7239929, "lon": -74.0070097 }, + { "lat": 40.7239866, "lon": -74.0069811 }, + { "lat": 40.7239765, "lon": -74.0069654 }, + { "lat": 40.7239735, "lon": -74.0069607 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "25 mph", + "oneway": "no", + "service": "parking_aisle", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 465255350, + "bounds": { + "minlat": 40.7209099, + "minlon": -74.0079995, + "maxlat": 40.7211998, + "maxlon": -74.0078146 + }, + "nodes": [ + 42424334, + 4136926834, + 4136926831, + 3788379691, + 4136926827, + 4136926835, + 3788379692, + 4136926833, + 42424347 + ], + "geometry": [ + { "lat": 40.7211998, "lon": -74.0079995 }, + { "lat": 40.7211577, "lon": -74.0079922 }, + { "lat": 40.7211232, "lon": -74.0079848 }, + { "lat": 40.7210870, "lon": -74.0079728 }, + { "lat": 40.7210523, "lon": -74.0079546 }, + { "lat": 40.7210184, "lon": -74.0079314 }, + { "lat": 40.7209892, "lon": -74.0079070 }, + { "lat": 40.7209496, "lon": -74.0078662 }, + { "lat": 40.7209099, "lon": -74.0078146 } + ], + "tags": { + "bicycle": "no", + "destination": "Canal Street East;Downtown;Brooklyn", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxaxles": "3", + "maxspeed": "25 mph", + "name": "Holland Tunnel Rotary", + "oneway": "yes", + "ref": "I 78", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "no", + "toll": "yes", + "turn:lanes": "none|through;slight_right", + "unsigned_ref": "I 78" + } +}, +{ + "type": "way", + "id": 465256868, + "bounds": { + "minlat": 40.7543851, + "minlon": -73.9982439, + "maxlat": 40.7546452, + "maxlon": -73.9979154 + }, + "nodes": [ + 427841050, + 11144700393, + 11144700396, + 427841051, + 427841052 + ], + "geometry": [ + { "lat": 40.7546452, "lon": -73.9979154 }, + { "lat": 40.7545830, "lon": -73.9980128 }, + { "lat": 40.7545267, "lon": -73.9980811 }, + { "lat": 40.7544639, "lon": -73.9981479 }, + { "lat": 40.7543851, "lon": -73.9982439 } + ], + "tags": { + "destination": "9th Avenue;West 30th Street", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 465256869, + "bounds": { + "minlat": 40.7552846, + "minlon": -73.9963440, + "maxlat": 40.7559056, + "maxlon": -73.9953727 + }, + "nodes": [ + 427841034, + 427841036, + 427841037, + 427841038, + 427842125 + ], + "geometry": [ + { "lat": 40.7559056, "lon": -73.9953727 }, + { "lat": 40.7557578, "lon": -73.9955774 }, + { "lat": 40.7555185, "lon": -73.9959456 }, + { "lat": 40.7553928, "lon": -73.9961479 }, + { "lat": 40.7552846, "lon": -73.9963440 } + ], + "tags": { + "destination": "30th Street;33rd Street", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 465321984, + "bounds": { + "minlat": 40.7999189, + "minlon": -73.9141778, + "maxlat": 40.8003597, + "maxlon": -73.9131540 + }, + "nodes": [ + 42750271, + 9908642213, + 5370086794, + 9910669598, + 42772991, + 4159724347, + 42772993 + ], + "geometry": [ + { "lat": 40.8003597, "lon": -73.9141778 }, + { "lat": 40.8003327, "lon": -73.9141136 }, + { "lat": 40.8001672, "lon": -73.9137193 }, + { "lat": 40.8000839, "lon": -73.9135195 }, + { "lat": 40.8000108, "lon": -73.9133602 }, + { "lat": 40.7999460, "lon": -73.9132136 }, + { "lat": 40.7999189, "lon": -73.9131540 } + ], + "tags": { + "highway": "unclassified", + "name": "East 132nd Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "132nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 465463918, + "bounds": { + "minlat": 40.7960809, + "minlon": -73.9670200, + "maxlat": 40.7965341, + "maxlon": -73.9667106 + }, + "nodes": [ + 4604258204, + 11296201254, + 7571410114, + 4604258205 + ], + "geometry": [ + { "lat": 40.7960809, "lon": -73.9670200 }, + { "lat": 40.7961778, "lon": -73.9669594 }, + { "lat": 40.7963703, "lon": -73.9668250 }, + { "lat": 40.7965341, "lon": -73.9667106 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 465470342, + "bounds": { + "minlat": 40.8213985, + "minlon": -73.9199613, + "maxlat": 40.8218872, + "maxlon": -73.9197445 + }, + "nodes": [ + 4604302411, + 13547349177, + 10878107222, + 4604302410 + ], + "geometry": [ + { "lat": 40.8218872, "lon": -73.9197445 }, + { "lat": 40.8217866, "lon": -73.9197891 }, + { "lat": 40.8217652, "lon": -73.9197986 }, + { "lat": 40.8213985, "lon": -73.9199613 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 465485734, + "bounds": { + "minlat": 40.7640650, + "minlon": -73.9487319, + "maxlat": 40.7645591, + "maxlon": -73.9477523 + }, + "nodes": [ + 4604406921, + 5212861665, + 4604406922 + ], + "geometry": [ + { "lat": 40.7640650, "lon": -73.9477523 }, + { "lat": 40.7641156, "lon": -73.9478519 }, + { "lat": 40.7645591, "lon": -73.9487319 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 465672990, + "bounds": { + "minlat": 40.8172600, + "minlon": -74.0112179, + "maxlat": 40.8189817, + "maxlon": -74.0080600 + }, + "nodes": [ + 4606021656, + 7612325101, + 7612325105, + 10135064448, + 8187030550, + 9884516162, + 8187030553, + 4606021655 + ], + "geometry": [ + { "lat": 40.8172600, "lon": -74.0080600 }, + { "lat": 40.8179057, "lon": -74.0092336 }, + { "lat": 40.8180522, "lon": -74.0095038 }, + { "lat": 40.8180847, "lon": -74.0095637 }, + { "lat": 40.8183297, "lon": -74.0100155 }, + { "lat": 40.8185056, "lon": -74.0103398 }, + { "lat": 40.8189661, "lon": -74.0111891 }, + { "lat": 40.8189817, "lon": -74.0112179 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 465675808, + "bounds": { + "minlat": 40.8321296, + "minlon": -73.9197378, + "maxlat": 40.8328967, + "maxlon": -73.9191831 + }, + "nodes": [ + 2408438449, + 2408438459, + 13534990415, + 2408438461, + 13534990414, + 6750387038 + ], + "geometry": [ + { "lat": 40.8328967, "lon": -73.9191831 }, + { "lat": 40.8327427, "lon": -73.9193012 }, + { "lat": 40.8325754, "lon": -73.9194271 }, + { "lat": 40.8323916, "lon": -73.9195597 }, + { "lat": 40.8322528, "lon": -73.9196549 }, + { "lat": 40.8321296, "lon": -73.9197378 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675813, + "bounds": { + "minlat": 40.8350267, + "minlon": -73.9172056, + "maxlat": 40.8355353, + "maxlon": -73.9167063 + }, + "nodes": [ + 2408379339, + 4207900886 + ], + "geometry": [ + { "lat": 40.8355353, "lon": -73.9167063 }, + { "lat": 40.8350267, "lon": -73.9172056 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675815, + "bounds": { + "minlat": 40.8261786, + "minlon": -73.9211006, + "maxlat": 40.8264819, + "maxlon": -73.9202471 + }, + "nodes": [ + 42731617, + 7029503722, + 7029503712, + 12163704739, + 5762096235, + 2408448899 + ], + "geometry": [ + { "lat": 40.8261786, "lon": -73.9202471 }, + { "lat": 40.8262377, "lon": -73.9203202 }, + { "lat": 40.8262730, "lon": -73.9204238 }, + { "lat": 40.8264447, "lon": -73.9209662 }, + { "lat": 40.8264601, "lon": -73.9210148 }, + { "lat": 40.8264819, "lon": -73.9211006 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 465675817, + "bounds": { + "minlat": 40.8308966, + "minlon": -73.9204305, + "maxlat": 40.8309567, + "maxlon": -73.9202573 + }, + "nodes": [ + 2408438450, + 42741401 + ], + "geometry": [ + { "lat": 40.8308966, "lon": -73.9202573 }, + { "lat": 40.8309567, "lon": -73.9204305 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "name": "East 165th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 465675821, + "bounds": { + "minlat": 40.8307262, + "minlon": -73.9202573, + "maxlat": 40.8308966, + "maxlon": -73.9197865 + }, + "nodes": [ + 11118481023, + 10126985487, + 10034673451, + 12739350617, + 2408438450 + ], + "geometry": [ + { "lat": 40.8307262, "lon": -73.9197865 }, + { "lat": 40.8307956, "lon": -73.9199664 }, + { "lat": 40.8308351, "lon": -73.9200802 }, + { "lat": 40.8308657, "lon": -73.9201680 }, + { "lat": 40.8308966, "lon": -73.9202573 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "name": "East 165th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 465675824, + "bounds": { + "minlat": 40.8277260, + "minlon": -73.9224630, + "maxlat": 40.8285068, + "maxlon": -73.9220236 + }, + "nodes": [ + 2408446156, + 2822072798, + 12162740318, + 10126985422, + 2821981636 + ], + "geometry": [ + { "lat": 40.8285068, "lon": -73.9220236 }, + { "lat": 40.8282868, "lon": -73.9221472 }, + { "lat": 40.8278813, "lon": -73.9223740 }, + { "lat": 40.8278400, "lon": -73.9223976 }, + { "lat": 40.8277260, "lon": -73.9224630 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675826, + "bounds": { + "minlat": 40.8309567, + "minlon": -73.9206191, + "maxlat": 40.8310217, + "maxlon": -73.9204305 + }, + "nodes": [ + 42741401, + 2408438463 + ], + "geometry": [ + { "lat": 40.8309567, "lon": -73.9204305 }, + { "lat": 40.8310217, "lon": -73.9206191 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "name": "East 165th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 465675828, + "bounds": { + "minlat": 40.8328967, + "minlon": -73.9191831, + "maxlat": 40.8344456, + "maxlon": -73.9177718 + }, + "nodes": [ + 2408379335, + 5762095661, + 13534990429, + 13534990423, + 2408394023, + 13534990422, + 42741392, + 13534990421, + 2408394018, + 13534990420, + 13534990417, + 13033202462, + 42741395, + 13534990416, + 2408438449 + ], + "geometry": [ + { "lat": 40.8344456, "lon": -73.9177718 }, + { "lat": 40.8343928, "lon": -73.9178231 }, + { "lat": 40.8343574, "lon": -73.9178575 }, + { "lat": 40.8343233, "lon": -73.9178908 }, + { "lat": 40.8340997, "lon": -73.9181096 }, + { "lat": 40.8339396, "lon": -73.9182649 }, + { "lat": 40.8337784, "lon": -73.9184187 }, + { "lat": 40.8336262, "lon": -73.9185616 }, + { "lat": 40.8334769, "lon": -73.9186962 }, + { "lat": 40.8333287, "lon": -73.9188266 }, + { "lat": 40.8331759, "lon": -73.9189564 }, + { "lat": 40.8331359, "lon": -73.9189893 }, + { "lat": 40.8330345, "lon": -73.9190725 }, + { "lat": 40.8329894, "lon": -73.9191096 }, + { "lat": 40.8328967, "lon": -73.9191831 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "sidewalk:both": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675836, + "bounds": { + "minlat": 40.8345091, + "minlon": -73.9179639, + "maxlat": 40.8346421, + "maxlon": -73.9178339 + }, + "nodes": [ + 2408379343, + 2408393054 + ], + "geometry": [ + { "lat": 40.8346421, "lon": -73.9178339 }, + { "lat": 40.8345091, "lon": -73.9179639 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675839, + "bounds": { + "minlat": 40.8363236, + "minlon": -73.9158711, + "maxlat": 40.8363937, + "maxlon": -73.9156889 + }, + "nodes": [ + 42741378, + 2408369217 + ], + "geometry": [ + { "lat": 40.8363937, "lon": -73.9158711 }, + { "lat": 40.8363236, "lon": -73.9156889 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "horse": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle": "yes", + "name": "East 169th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 465675843, + "bounds": { + "minlat": 40.8363937, + "minlon": -73.9160533, + "maxlat": 40.8364636, + "maxlon": -73.9158711 + }, + "nodes": [ + 2408369219, + 42741378 + ], + "geometry": [ + { "lat": 40.8364636, "lon": -73.9160533 }, + { "lat": 40.8363937, "lon": -73.9158711 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "horse": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 169th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 465675845, + "bounds": { + "minlat": 40.8363236, + "minlon": -73.9156889, + "maxlat": 40.8385722, + "maxlon": -73.9136495 + }, + "nodes": [ + 2408369217, + 13038884608, + 13534990447, + 13038397196, + 13055590399, + 13038484894, + 13534990452, + 13534990453, + 2408369218, + 13534990463, + 2408369220, + 13534990464, + 13535816384, + 5543337906, + 2327276578 + ], + "geometry": [ + { "lat": 40.8363236, "lon": -73.9156889 }, + { "lat": 40.8363874, "lon": -73.9156262 }, + { "lat": 40.8373492, "lon": -73.9146823 }, + { "lat": 40.8373992, "lon": -73.9146354 }, + { "lat": 40.8374450, "lon": -73.9145910 }, + { "lat": 40.8374978, "lon": -73.9145424 }, + { "lat": 40.8376624, "lon": -73.9143881 }, + { "lat": 40.8377942, "lon": -73.9142700 }, + { "lat": 40.8379519, "lon": -73.9141354 }, + { "lat": 40.8381007, "lon": -73.9140105 }, + { "lat": 40.8382370, "lon": -73.9139020 }, + { "lat": 40.8383646, "lon": -73.9138040 }, + { "lat": 40.8384804, "lon": -73.9137122 }, + { "lat": 40.8385292, "lon": -73.9136789 }, + { "lat": 40.8385722, "lon": -73.9136495 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675847, + "bounds": { + "minlat": 40.8356000, + "minlon": -73.9156889, + "maxlat": 40.8363236, + "maxlon": -73.9137930 + }, + "nodes": [ + 2408369217, + 12739350612, + 13534990442, + 13037130942, + 42781412, + 13037130945, + 13031082329, + 42755588 + ], + "geometry": [ + { "lat": 40.8363236, "lon": -73.9156889 }, + { "lat": 40.8362933, "lon": -73.9156099 }, + { "lat": 40.8362706, "lon": -73.9155508 }, + { "lat": 40.8360252, "lon": -73.9149090 }, + { "lat": 40.8359900, "lon": -73.9148170 }, + { "lat": 40.8359604, "lon": -73.9147393 }, + { "lat": 40.8356323, "lon": -73.9138776 }, + { "lat": 40.8356000, "lon": -73.9137930 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "horse": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle": "yes", + "name": "East 169th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 465675850, + "bounds": { + "minlat": 40.8368965, + "minlon": -73.9153826, + "maxlat": 40.8376557, + "maxlon": -73.9146443 + }, + "nodes": [ + 2408369222, + 13534990448, + 13038484898, + 13534990449, + 13038582004, + 13534990446, + 4202444589 + ], + "geometry": [ + { "lat": 40.8376557, "lon": -73.9146443 }, + { "lat": 40.8376093, "lon": -73.9146880 }, + { "lat": 40.8375661, "lon": -73.9147289 }, + { "lat": 40.8375182, "lon": -73.9147744 }, + { "lat": 40.8374684, "lon": -73.9148211 }, + { "lat": 40.8374206, "lon": -73.9148669 }, + { "lat": 40.8368965, "lon": -73.9153826 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675852, + "bounds": { + "minlat": 40.8364636, + "minlon": -73.9160533, + "maxlat": 40.8387091, + "maxlon": -73.9140083 + }, + "nodes": [ + 2327276565, + 5543337900, + 13534990465, + 13534990457, + 13534990456, + 4606046834, + 13534990454, + 2408369227, + 13534990450, + 2408369228, + 13086709882, + 13038397189, + 2408369221, + 13534990443, + 13038884614, + 2408369219 + ], + "geometry": [ + { "lat": 40.8387091, "lon": -73.9140083 }, + { "lat": 40.8386653, "lon": -73.9140388 }, + { "lat": 40.8384457, "lon": -73.9142011 }, + { "lat": 40.8383541, "lon": -73.9142698 }, + { "lat": 40.8382516, "lon": -73.9143506 }, + { "lat": 40.8381723, "lon": -73.9144165 }, + { "lat": 40.8380891, "lon": -73.9144863 }, + { "lat": 40.8379472, "lon": -73.9146108 }, + { "lat": 40.8376745, "lon": -73.9148744 }, + { "lat": 40.8376371, "lon": -73.9149094 }, + { "lat": 40.8375839, "lon": -73.9149588 }, + { "lat": 40.8375370, "lon": -73.9150014 }, + { "lat": 40.8370170, "lon": -73.9155133 }, + { "lat": 40.8365770, "lon": -73.9159399 }, + { "lat": 40.8365359, "lon": -73.9159809 }, + { "lat": 40.8364636, "lon": -73.9160533 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675854, + "bounds": { + "minlat": 40.8386397, + "minlon": -73.9140083, + "maxlat": 40.8387091, + "maxlon": -73.9138303 + }, + "nodes": [ + 2327276565, + 2408359299 + ], + "geometry": [ + { "lat": 40.8387091, "lon": -73.9140083 }, + { "lat": 40.8386397, "lon": -73.9138303 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 465675857, + "bounds": { + "minlat": 40.8387420, + "minlon": -73.9137108, + "maxlat": 40.8388105, + "maxlon": -73.9135335 + }, + "nodes": [ + 2408355551, + 2327276587 + ], + "geometry": [ + { "lat": 40.8387420, "lon": -73.9135335 }, + { "lat": 40.8388105, "lon": -73.9137108 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 465675859, + "bounds": { + "minlat": 40.8381062, + "minlon": -73.9142394, + "maxlat": 40.8386397, + "maxlon": -73.9138303 + }, + "nodes": [ + 2408359299, + 5543337907, + 13535816383, + 13534990462, + 13534990461, + 13534990460, + 42741362 + ], + "geometry": [ + { "lat": 40.8386397, "lon": -73.9138303 }, + { "lat": 40.8385981, "lon": -73.9138594 }, + { "lat": 40.8385514, "lon": -73.9138921 }, + { "lat": 40.8384983, "lon": -73.9139315 }, + { "lat": 40.8383979, "lon": -73.9140072 }, + { "lat": 40.8382645, "lon": -73.9141118 }, + { "lat": 40.8381062, "lon": -73.9142394 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675860, + "bounds": { + "minlat": 40.8385722, + "minlon": -73.9138303, + "maxlat": 40.8386397, + "maxlon": -73.9136495 + }, + "nodes": [ + 2408359299, + 2327276578 + ], + "geometry": [ + { "lat": 40.8386397, "lon": -73.9138303 }, + { "lat": 40.8385722, "lon": -73.9136495 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 465675862, + "bounds": { + "minlat": 40.8386397, + "minlon": -73.9138303, + "maxlat": 40.8388105, + "maxlon": -73.9137108 + }, + "nodes": [ + 2327276587, + 2408359299 + ], + "geometry": [ + { "lat": 40.8388105, "lon": -73.9137108 }, + { "lat": 40.8386397, "lon": -73.9138303 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675864, + "bounds": { + "minlat": 40.8388105, + "minlon": -73.9138902, + "maxlat": 40.8388783, + "maxlon": -73.9137108 + }, + "nodes": [ + 2327276587, + 2408355539 + ], + "geometry": [ + { "lat": 40.8388105, "lon": -73.9137108 }, + { "lat": 40.8388783, "lon": -73.9138902 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 465675865, + "bounds": { + "minlat": 40.8392677, + "minlon": -73.9134216, + "maxlat": 40.8406491, + "maxlon": -73.9127936 + }, + "nodes": [ + 2408355537, + 2408355549, + 13535833516, + 13535833515, + 2408355541, + 13535833514, + 13535833506, + 13038509608, + 13535833505, + 13038509604, + 13535816400, + 13535816399, + 2408357239, + 13535816398, + 2408357251 + ], + "geometry": [ + { "lat": 40.8406491, "lon": -73.9127936 }, + { "lat": 40.8404827, "lon": -73.9128528 }, + { "lat": 40.8403510, "lon": -73.9129019 }, + { "lat": 40.8402443, "lon": -73.9129435 }, + { "lat": 40.8401380, "lon": -73.9129870 }, + { "lat": 40.8400338, "lon": -73.9130321 }, + { "lat": 40.8399147, "lon": -73.9130865 }, + { "lat": 40.8398661, "lon": -73.9131081 }, + { "lat": 40.8398068, "lon": -73.9131349 }, + { "lat": 40.8397497, "lon": -73.9131617 }, + { "lat": 40.8396991, "lon": -73.9131897 }, + { "lat": 40.8396159, "lon": -73.9132327 }, + { "lat": 40.8394936, "lon": -73.9132970 }, + { "lat": 40.8393882, "lon": -73.9133533 }, + { "lat": 40.8392677, "lon": -73.9134216 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675867, + "bounds": { + "minlat": 40.8406491, + "minlon": -73.9127936, + "maxlat": 40.8415707, + "maxlon": -73.9124870 + }, + "nodes": [ + 42739626, + 13535833517, + 10034673443, + 12529489652, + 13535833513, + 11905245421, + 10034673425, + 2408355537 + ], + "geometry": [ + { "lat": 40.8415707, "lon": -73.9124870 }, + { "lat": 40.8415437, "lon": -73.9124964 }, + { "lat": 40.8410432, "lon": -73.9126615 }, + { "lat": 40.8409959, "lon": -73.9126772 }, + { "lat": 40.8409244, "lon": -73.9127010 }, + { "lat": 40.8408530, "lon": -73.9127248 }, + { "lat": 40.8408039, "lon": -73.9127411 }, + { "lat": 40.8406491, "lon": -73.9127936 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675869, + "bounds": { + "minlat": 40.8415707, + "minlon": -73.9124870, + "maxlat": 40.8419287, + "maxlon": -73.9123653 + }, + "nodes": [ + 2408355552, + 10034673453, + 11905245419, + 13535833520, + 13535833518, + 13535833519, + 42739626 + ], + "geometry": [ + { "lat": 40.8419287, "lon": -73.9123653 }, + { "lat": 40.8417987, "lon": -73.9124070 }, + { "lat": 40.8417517, "lon": -73.9124241 }, + { "lat": 40.8416714, "lon": -73.9124520 }, + { "lat": 40.8415911, "lon": -73.9124798 }, + { "lat": 40.8415803, "lon": -73.9124836 }, + { "lat": 40.8415707, "lon": -73.9124870 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675871, + "bounds": { + "minlat": 40.8398712, + "minlon": -73.9133212, + "maxlat": 40.8431984, + "maxlon": -73.9121538 + }, + "nodes": [ + 2408354092, + 12739871612, + 2408355550, + 10034673499, + 10034673472, + 2408355566, + 10034673433, + 2408355557, + 10034673452, + 12529489653, + 2408355562, + 12044636978, + 13535833512, + 12044636976, + 12044636973, + 12044636974, + 12044636975, + 2408355543, + 13535833503, + 13038442690, + 2408355535 + ], + "geometry": [ + { "lat": 40.8431984, "lon": -73.9121538 }, + { "lat": 40.8431170, "lon": -73.9121813 }, + { "lat": 40.8424092, "lon": -73.9124205 }, + { "lat": 40.8418338, "lon": -73.9126116 }, + { "lat": 40.8417901, "lon": -73.9126265 }, + { "lat": 40.8416864, "lon": -73.9126619 }, + { "lat": 40.8416329, "lon": -73.9126801 }, + { "lat": 40.8411831, "lon": -73.9128266 }, + { "lat": 40.8410971, "lon": -73.9128541 }, + { "lat": 40.8410551, "lon": -73.9128695 }, + { "lat": 40.8409807, "lon": -73.9128957 }, + { "lat": 40.8409122, "lon": -73.9129202 }, + { "lat": 40.8407156, "lon": -73.9129867 }, + { "lat": 40.8406216, "lon": -73.9130201 }, + { "lat": 40.8404934, "lon": -73.9130664 }, + { "lat": 40.8403659, "lon": -73.9131124 }, + { "lat": 40.8402280, "lon": -73.9131682 }, + { "lat": 40.8400981, "lon": -73.9132232 }, + { "lat": 40.8399835, "lon": -73.9132723 }, + { "lat": 40.8399348, "lon": -73.9132945 }, + { "lat": 40.8398712, "lon": -73.9133212 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675873, + "bounds": { + "minlat": 40.8431984, + "minlon": -73.9130839, + "maxlat": 40.8435809, + "maxlon": -73.9121538 + }, + "nodes": [ + 2408354097, + 13017732162, + 7823245737, + 2408354092 + ], + "geometry": [ + { "lat": 40.8435809, "lon": -73.9130839 }, + { "lat": 40.8435535, "lon": -73.9130176 }, + { "lat": 40.8432305, "lon": -73.9122298 }, + { "lat": 40.8431984, "lon": -73.9121538 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "East Mount Eden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Eden", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 465675875, + "bounds": { + "minlat": 40.8432022, + "minlon": -73.9117338, + "maxlat": 40.8468718, + "maxlon": -73.9084724 + }, + "nodes": [ + 2408354081, + 12044615791, + 2408350738, + 2408350736, + 12044615780, + 12044594164, + 2408350746, + 12044615779, + 2408350752, + 12044594165, + 2408350756, + 12044594166, + 12044615778, + 2408348775, + 12044575967, + 2408348786, + 12044575968, + 12044615769, + 12044615770, + 2408348787, + 2408348769, + 12044615771, + 2408348784, + 12798385422, + 2408348788 + ], + "geometry": [ + { "lat": 40.8432022, "lon": -73.9117338 }, + { "lat": 40.8432659, "lon": -73.9117119 }, + { "lat": 40.8438875, "lon": -73.9114967 }, + { "lat": 40.8441720, "lon": -73.9114006 }, + { "lat": 40.8442491, "lon": -73.9113718 }, + { "lat": 40.8443051, "lon": -73.9113496 }, + { "lat": 40.8443711, "lon": -73.9113206 }, + { "lat": 40.8444472, "lon": -73.9112851 }, + { "lat": 40.8445163, "lon": -73.9112495 }, + { "lat": 40.8445929, "lon": -73.9112060 }, + { "lat": 40.8446608, "lon": -73.9111640 }, + { "lat": 40.8447502, "lon": -73.9111053 }, + { "lat": 40.8448329, "lon": -73.9110495 }, + { "lat": 40.8448870, "lon": -73.9110108 }, + { "lat": 40.8449469, "lon": -73.9109653 }, + { "lat": 40.8450398, "lon": -73.9108902 }, + { "lat": 40.8451350, "lon": -73.9108069 }, + { "lat": 40.8452287, "lon": -73.9107184 }, + { "lat": 40.8453213, "lon": -73.9106235 }, + { "lat": 40.8454192, "lon": -73.9105109 }, + { "lat": 40.8455075, "lon": -73.9104005 }, + { "lat": 40.8455720, "lon": -73.9103155 }, + { "lat": 40.8466691, "lon": -73.9087590 }, + { "lat": 40.8468421, "lon": -73.9085143 }, + { "lat": 40.8468718, "lon": -73.9084724 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "foot": "no", + "highway": "tertiary", + "lanes": "1", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675877, + "bounds": { + "minlat": 40.8432022, + "minlon": -73.9119223, + "maxlat": 40.8432632, + "maxlon": -73.9117338 + }, + "nodes": [ + 2408354081, + 12044615783, + 12044615782, + 12044615781, + 12044636979, + 42741344 + ], + "geometry": [ + { "lat": 40.8432022, "lon": -73.9117338 }, + { "lat": 40.8432185, "lon": -73.9117902 }, + { "lat": 40.8432318, "lon": -73.9118359 }, + { "lat": 40.8432474, "lon": -73.9118819 }, + { "lat": 40.8432489, "lon": -73.9118860 }, + { "lat": 40.8432632, "lon": -73.9119223 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "name": "Mount Eden Parkway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 465675879, + "bounds": { + "minlat": 40.8437884, + "minlon": -73.9117415, + "maxlat": 40.8441290, + "maxlon": -73.9116275 + }, + "nodes": [ + 2408350757, + 4202450569 + ], + "geometry": [ + { "lat": 40.8441290, "lon": -73.9116275 }, + { "lat": 40.8437884, "lon": -73.9117415 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "name": "Grand Concourse", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675881, + "bounds": { + "minlat": 40.8441290, + "minlon": -73.9116275, + "maxlat": 40.8447532, + "maxlon": -73.9113360 + }, + "nodes": [ + 42741332, + 12044602140, + 12044602141, + 2408350748, + 12044602142, + 12044602143, + 12044602144, + 2408350753, + 12044619768, + 12044619767, + 2408350757 + ], + "geometry": [ + { "lat": 40.8447532, "lon": -73.9113360 }, + { "lat": 40.8447042, "lon": -73.9113669 }, + { "lat": 40.8446538, "lon": -73.9113970 }, + { "lat": 40.8446037, "lon": -73.9114262 }, + { "lat": 40.8445520, "lon": -73.9114544 }, + { "lat": 40.8444993, "lon": -73.9114812 }, + { "lat": 40.8444490, "lon": -73.9115048 }, + { "lat": 40.8443972, "lon": -73.9115280 }, + { "lat": 40.8443431, "lon": -73.9115506 }, + { "lat": 40.8442907, "lon": -73.9115710 }, + { "lat": 40.8441290, "lon": -73.9116275 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "name": "Grand Concourse", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675884, + "bounds": { + "minlat": 40.8457686, + "minlon": -73.9103450, + "maxlat": 40.8464132, + "maxlon": -73.9094278 + }, + "nodes": [ + 12044652540, + 2408348762 + ], + "geometry": [ + { "lat": 40.8464132, "lon": -73.9094278 }, + { "lat": 40.8457686, "lon": -73.9103450 } + ], + "tags": { + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675887, + "bounds": { + "minlat": 40.8452241, + "minlon": -73.9084400, + "maxlat": 40.8468334, + "maxlon": -73.9082763 + }, + "nodes": [ + 42734838, + 13001029306, + 7740581871, + 13039036400, + 42734836 + ], + "geometry": [ + { "lat": 40.8468334, "lon": -73.9082763 }, + { "lat": 40.8467652, "lon": -73.9082937 }, + { "lat": 40.8456075, "lon": -73.9083986 }, + { "lat": 40.8452818, "lon": -73.9084337 }, + { "lat": 40.8452241, "lon": -73.9084400 } + ], + "tags": { + "highway": "residential", + "name": "Eastburn Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Eastburn", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 465675889, + "bounds": { + "minlat": 40.8465255, + "minlon": -73.9092662, + "maxlat": 40.8475530, + "maxlon": -73.9078505 + }, + "nodes": [ + 2408348765, + 42734841, + 13040574741, + 12798385418, + 12798385420, + 13040574739, + 42740530, + 13040574740, + 12044652539 + ], + "geometry": [ + { "lat": 40.8475530, "lon": -73.9078505 }, + { "lat": 40.8473422, "lon": -73.9081215 }, + { "lat": 40.8471326, "lon": -73.9084190 }, + { "lat": 40.8471021, "lon": -73.9084618 }, + { "lat": 40.8470499, "lon": -73.9085355 }, + { "lat": 40.8470199, "lon": -73.9085783 }, + { "lat": 40.8469909, "lon": -73.9086202 }, + { "lat": 40.8469686, "lon": -73.9086531 }, + { "lat": 40.8465255, "lon": -73.9092662 } + ], + "tags": { + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675892, + "bounds": { + "minlat": 40.8477793, + "minlon": -73.9075305, + "maxlat": 40.8478175, + "maxlon": -73.9073365 + }, + "nodes": [ + 42741319, + 4606046844 + ], + "geometry": [ + { "lat": 40.8478175, "lon": -73.9075305 }, + { "lat": 40.8477793, "lon": -73.9073365 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 176th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "176th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 465675894, + "bounds": { + "minlat": 40.8470936, + "minlon": -73.9087473, + "maxlat": 40.8478688, + "maxlon": -73.9077695 + }, + "nodes": [ + 2028383646, + 12798385478, + 12798385423, + 12798385419, + 2408348778, + 2408348783 + ], + "geometry": [ + { "lat": 40.8478688, "lon": -73.9077695 }, + { "lat": 40.8478064, "lon": -73.9078459 }, + { "lat": 40.8472356, "lon": -73.9085515 }, + { "lat": 40.8472091, "lon": -73.9085912 }, + { "lat": 40.8471560, "lon": -73.9086571 }, + { "lat": 40.8470936, "lon": -73.9087473 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 465675899, + "bounds": { + "minlat": 40.8477793, + "minlon": -73.9073365, + "maxlat": 40.8492339, + "maxlon": -73.9059641 + }, + "nodes": [ + 4606046844, + 12798385474, + 12089694341, + 12798385409, + 12089694342, + 2028383638, + 12798385412, + 2028383624, + 2028383620, + 12739101094, + 2028328038 + ], + "geometry": [ + { "lat": 40.8477793, "lon": -73.9073365 }, + { "lat": 40.8478454, "lon": -73.9072669 }, + { "lat": 40.8484153, "lon": -73.9066799 }, + { "lat": 40.8484551, "lon": -73.9066406 }, + { "lat": 40.8484622, "lon": -73.9066340 }, + { "lat": 40.8485139, "lon": -73.9065867 }, + { "lat": 40.8485749, "lon": -73.9065351 }, + { "lat": 40.8487732, "lon": -73.9063650 }, + { "lat": 40.8490052, "lon": -73.9061576 }, + { "lat": 40.8491682, "lon": -73.9060094 }, + { "lat": 40.8492339, "lon": -73.9059641 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "lanes": "1", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 466458773, + "bounds": { + "minlat": 40.8298635, + "minlon": -73.9218618, + "maxlat": 40.8305376, + "maxlon": -73.9214854 + }, + "nodes": [ + 4612528312, + 10126985482, + 10911704683, + 7104267528, + 7560827244 + ], + "geometry": [ + { "lat": 40.8298635, "lon": -73.9218618 }, + { "lat": 40.8299203, "lon": -73.9218281 }, + { "lat": 40.8299474, "lon": -73.9218121 }, + { "lat": 40.8302762, "lon": -73.9216172 }, + { "lat": 40.8305376, "lon": -73.9214854 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Butternut Street", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 466735705, + "bounds": { + "minlat": 40.8424922, + "minlon": -73.9258921, + "maxlat": 40.8434530, + "maxlon": -73.9246940 + }, + "nodes": [ + 3809984320, + 7694727330, + 8285558495, + 13564503733, + 42741652 + ], + "geometry": [ + { "lat": 40.8424922, "lon": -73.9258921 }, + { "lat": 40.8429375, "lon": -73.9253368 }, + { "lat": 40.8432928, "lon": -73.9248938 }, + { "lat": 40.8433247, "lon": -73.9248541 }, + { "lat": 40.8434530, "lon": -73.9246940 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "shared_lane", + "highway": "residential", + "name": "University Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Dr Martin Luther King Jr", + "tiger:name_base_1": "University", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 466757253, + "bounds": { + "minlat": 40.7468463, + "minlon": -73.9160364, + "maxlat": 40.7469614, + "maxlon": -73.9151108 + }, + "nodes": [ + 4614980641, + 7667163185, + 10762221370, + 7667101154, + 4614980640 + ], + "geometry": [ + { "lat": 40.7468463, "lon": -73.9151108 }, + { "lat": 40.7468554, "lon": -73.9151795 }, + { "lat": 40.7469501, "lon": -73.9159432 }, + { "lat": 40.7469563, "lon": -73.9159936 }, + { "lat": 40.7469614, "lon": -73.9160364 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 466956271, + "bounds": { + "minlat": 40.7256907, + "minlon": -74.0058541, + "maxlat": 40.7264350, + "maxlon": -74.0056580 + }, + "nodes": [ + 42445574, + 8307641851, + 4616536350, + 8231935496, + 4616536351 + ], + "geometry": [ + { "lat": 40.7264350, "lon": -74.0056580 }, + { "lat": 40.7263747, "lon": -74.0057121 }, + { "lat": 40.7263219, "lon": -74.0057596 }, + { "lat": 40.7257509, "lon": -74.0058451 }, + { "lat": 40.7256907, "lon": -74.0058541 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|none", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 466956272, + "bounds": { + "minlat": 40.7237872, + "minlon": -74.0061261, + "maxlat": 40.7244198, + "maxlon": -74.0060367 + }, + "nodes": [ + 4616536348, + 4616536353, + 13846767381, + 4890333635, + 13846767405, + 13846767406, + 5708233911, + 4616536354, + 42423456 + ], + "geometry": [ + { "lat": 40.7244198, "lon": -74.0060539 }, + { "lat": 40.7243533, "lon": -74.0060381 }, + { "lat": 40.7243279, "lon": -74.0060367 }, + { "lat": 40.7243032, "lon": -74.0060392 }, + { "lat": 40.7239467, "lon": -74.0061175 }, + { "lat": 40.7239079, "lon": -74.0061242 }, + { "lat": 40.7238749, "lon": -74.0061261 }, + { "lat": 40.7238499, "lon": -74.0061235 }, + { "lat": 40.7237872, "lon": -74.0061125 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 466956273, + "bounds": { + "minlat": 40.7244198, + "minlon": -74.0068741, + "maxlat": 40.7244891, + "maxlon": -74.0060539 + }, + "nodes": [ + 4616536348, + 4890333647, + 13846765397 + ], + "geometry": [ + { "lat": 40.7244198, "lon": -74.0060539 }, + { "lat": 40.7244291, "lon": -74.0061514 }, + { "lat": 40.7244891, "lon": -74.0068741 } + ], + "tags": { + "foot": "yes", + "highway": "unclassified", + "maxspeed": "20 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 466956274, + "bounds": { + "minlat": 40.7250366, + "minlon": -74.0076538, + "maxlat": 40.7251935, + "maxlon": -74.0059578 + }, + "nodes": [ + 4616536352, + 4890333638, + 7079923153, + 8304498434, + 42436353 + ], + "geometry": [ + { "lat": 40.7250366, "lon": -74.0059578 }, + { "lat": 40.7250416, "lon": -74.0060126 }, + { "lat": 40.7251093, "lon": -74.0067581 }, + { "lat": 40.7251812, "lon": -74.0075490 }, + { "lat": 40.7251935, "lon": -74.0076538 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Dominick Street", + "name:ko": "도미닉 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 466956276, + "bounds": { + "minlat": 40.7250366, + "minlon": -74.0059578, + "maxlat": 40.7256907, + "maxlon": -74.0058541 + }, + "nodes": [ + 4616536351, + 5173374390, + 4890333632, + 4616536352 + ], + "geometry": [ + { "lat": 40.7256907, "lon": -74.0058541 }, + { "lat": 40.7256150, "lon": -74.0058662 }, + { "lat": 40.7250866, "lon": -74.0059499 }, + { "lat": 40.7250366, "lon": -74.0059578 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 466956278, + "bounds": { + "minlat": 40.7255633, + "minlon": -74.0057082, + "maxlat": 40.7256753, + "maxlon": -74.0045513 + }, + "nodes": [ + 42442286, + 5173374392, + 4890320296, + 42430102 + ], + "geometry": [ + { "lat": 40.7256753, "lon": -74.0057082 }, + { "lat": 40.7256694, "lon": -74.0056454 }, + { "lat": 40.7255712, "lon": -74.0046328 }, + { "lat": 40.7255633, "lon": -74.0045513 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 466956279, + "bounds": { + "minlat": 40.7190914, + "minlon": -74.0067920, + "maxlat": 40.7191172, + "maxlon": -74.0065576 + }, + "nodes": [ + 8312361621, + 8312361620 + ], + "geometry": [ + { "lat": 40.7191172, "lon": -74.0067920 }, + { "lat": 40.7190914, "lon": -74.0065576 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 467222812, + "bounds": { + "minlat": 40.7303374, + "minlon": -74.0035825, + "maxlat": 40.7322539, + "maxlon": -74.0024762 + }, + "nodes": [ + 5837088105, + 4618691808, + 5690453353, + 42431789, + 8429015942, + 8429015943, + 42431785, + 8429015939, + 42429701, + 10172977547, + 42431777, + 8309469102, + 8309469096, + 42431773 + ], + "geometry": [ + { "lat": 40.7322539, "lon": -74.0035825 }, + { "lat": 40.7321786, "lon": -74.0035391 }, + { "lat": 40.7321213, "lon": -74.0035058 }, + { "lat": 40.7317466, "lon": -74.0032895 }, + { "lat": 40.7317048, "lon": -74.0032654 }, + { "lat": 40.7315094, "lon": -74.0031526 }, + { "lat": 40.7314683, "lon": -74.0031289 }, + { "lat": 40.7311801, "lon": -74.0029626 }, + { "lat": 40.7311376, "lon": -74.0029381 }, + { "lat": 40.7311016, "lon": -74.0029194 }, + { "lat": 40.7309220, "lon": -74.0028182 }, + { "lat": 40.7308829, "lon": -74.0027953 }, + { "lat": 40.7303992, "lon": -74.0025138 }, + { "lat": 40.7303374, "lon": -74.0024762 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bleecker Street", + "name:etymology:wikidata": "Q4772124", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "parking:left": "no", + "parking:left:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 467222828, + "bounds": { + "minlat": 40.7333991, + "minlon": -74.0042514, + "maxlat": 40.7336094, + "maxlon": -74.0028114 + }, + "nodes": [ + 42430805, + 4320028836, + 11609529488, + 42431802 + ], + "geometry": [ + { "lat": 40.7336094, "lon": -74.0028114 }, + { "lat": 40.7335882, "lon": -74.0029674 }, + { "lat": 40.7334104, "lon": -74.0041750 }, + { "lat": 40.7333991, "lon": -74.0042514 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Christopher Street", + "name:ru": "Кристофер-стрит", + "oneway": "yes", + "parking:right": "no", + "parking:right:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1086990", + "wikipedia": "en:Christopher Street" + } +}, +{ + "type": "way", + "id": 467222856, + "bounds": { + "minlat": 40.7194015, + "minlon": -74.0025960, + "maxlat": 40.7199234, + "maxlon": -74.0018814 + }, + "nodes": [ + 42428433, + 8307641805, + 8307641832, + 42440820 + ], + "geometry": [ + { "lat": 40.7194015, "lon": -74.0018814 }, + { "lat": 40.7194629, "lon": -74.0019672 }, + { "lat": 40.7198870, "lon": -74.0025498 }, + { "lat": 40.7199234, "lon": -74.0025960 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "no", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 467266968, + "bounds": { + "minlat": 40.8196133, + "minlon": -73.9227824, + "maxlat": 40.8198755, + "maxlon": -73.9217448 + }, + "nodes": [ + 4619139021, + 8250477915, + 7553148233, + 4619139020 + ], + "geometry": [ + { "lat": 40.8196133, "lon": -73.9217448 }, + { "lat": 40.8196420, "lon": -73.9218585 }, + { "lat": 40.8196496, "lon": -73.9218884 }, + { "lat": 40.8198755, "lon": -73.9227824 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 467500535, + "bounds": { + "minlat": 40.7483418, + "minlon": -73.9128879, + "maxlat": 40.7484666, + "maxlon": -73.9118210 + }, + "nodes": [ + 4621136457, + 10762221383, + 10762221387, + 4621136456 + ], + "geometry": [ + { "lat": 40.7484666, "lon": -73.9128879 }, + { "lat": 40.7484578, "lon": -73.9128126 }, + { "lat": 40.7483497, "lon": -73.9118887 }, + { "lat": 40.7483418, "lon": -73.9118210 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 467508405, + "bounds": { + "minlat": 40.8548201, + "minlon": -73.9739250, + "maxlat": 40.8549046, + "maxlon": -73.9737703 + }, + "nodes": [ + 4621211712, + 4621211715 + ], + "geometry": [ + { "lat": 40.8549046, "lon": -73.9739250 }, + { "lat": 40.8548201, "lon": -73.9737703 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 467508406, + "bounds": { + "minlat": 40.8545957, + "minlon": -73.9738062, + "maxlat": 40.8548758, + "maxlon": -73.9734380 + }, + "nodes": [ + 4621211728, + 5290952140, + 4621211726, + 5290952137, + 4621211725, + 4621211724, + 5290952138, + 4621211723, + 4621211722, + 5108603561, + 4621211721, + 4621211720, + 4621211727, + 5108603013, + 4621211719, + 4621211718, + 4621211717, + 5108603129, + 4621211716, + 4621211715, + 4621211714, + 5290952139, + 4621211713, + 4621211728 + ], + "geometry": [ + { "lat": 40.8546812, "lon": -73.9737929 }, + { "lat": 40.8546496, "lon": -73.9737684 }, + { "lat": 40.8546240, "lon": -73.9737340 }, + { "lat": 40.8546097, "lon": -73.9737030 }, + { "lat": 40.8546002, "lon": -73.9736689 }, + { "lat": 40.8545957, "lon": -73.9736210 }, + { "lat": 40.8546008, "lon": -73.9735731 }, + { "lat": 40.8546150, "lon": -73.9735286 }, + { "lat": 40.8546455, "lon": -73.9734809 }, + { "lat": 40.8546862, "lon": -73.9734493 }, + { "lat": 40.8547232, "lon": -73.9734380 }, + { "lat": 40.8547613, "lon": -73.9734404 }, + { "lat": 40.8547974, "lon": -73.9734562 }, + { "lat": 40.8548290, "lon": -73.9734842 }, + { "lat": 40.8548546, "lon": -73.9735244 }, + { "lat": 40.8548706, "lon": -73.9735725 }, + { "lat": 40.8548758, "lon": -73.9736246 }, + { "lat": 40.8548697, "lon": -73.9736766 }, + { "lat": 40.8548505, "lon": -73.9737286 }, + { "lat": 40.8548201, "lon": -73.9737703 }, + { "lat": 40.8547883, "lon": -73.9737941 }, + { "lat": 40.8547529, "lon": -73.9738062 }, + { "lat": 40.8547164, "lon": -73.9738058 }, + { "lat": 40.8546812, "lon": -73.9737929 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 467519142, + "bounds": { + "minlat": 40.8057722, + "minlon": -73.9957098, + "maxlat": 40.8071358, + "maxlon": -73.9945310 + }, + "nodes": [ + 4621300457, + 4621300456, + 4621300455, + 4621300454, + 4621300453, + 4621300452, + 4621300451, + 4621300450, + 103235642 + ], + "geometry": [ + { "lat": 40.8057722, "lon": -73.9949105 }, + { "lat": 40.8064178, "lon": -73.9945310 }, + { "lat": 40.8064990, "lon": -73.9945591 }, + { "lat": 40.8065406, "lon": -73.9945940 }, + { "lat": 40.8067368, "lon": -73.9949950 }, + { "lat": 40.8067541, "lon": -73.9950848 }, + { "lat": 40.8068992, "lon": -73.9953732 }, + { "lat": 40.8069733, "lon": -73.9954081 }, + { "lat": 40.8071358, "lon": -73.9957098 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 467523297, + "bounds": { + "minlat": 40.7278215, + "minlon": -73.9913677, + "maxlat": 40.7284980, + "maxlon": -73.9911980 + }, + "nodes": [ + 5784518517, + 4621333640, + 4621333641, + 4621333642 + ], + "geometry": [ + { "lat": 40.7284980, "lon": -73.9911980 }, + { "lat": 40.7279594, "lon": -73.9913474 }, + { "lat": 40.7278739, "lon": -73.9913677 }, + { "lat": 40.7278215, "lon": -73.9913614 } + ], + "tags": { + "bicycle": "no", + "highway": "pedestrian", + "lit": "yes", + "name": "Cooper Square", + "name:etymology:wikidata": "Q935291", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 467523298, + "bounds": { + "minlat": 40.7283561, + "minlon": -73.9911373, + "maxlat": 40.7286454, + "maxlon": -73.9907884 + }, + "nodes": [ + 4015190382, + 5784518525, + 12179562772, + 12179562771, + 12179562770, + 4621333639, + 12179562769, + 12179562768, + 5784518512, + 12179562767, + 12179562766, + 595407624 + ], + "geometry": [ + { "lat": 40.7283561, "lon": -73.9907884 }, + { "lat": 40.7284062, "lon": -73.9909140 }, + { "lat": 40.7284337, "lon": -73.9909796 }, + { "lat": 40.7284516, "lon": -73.9910172 }, + { "lat": 40.7284700, "lon": -73.9910463 }, + { "lat": 40.7284886, "lon": -73.9910677 }, + { "lat": 40.7285127, "lon": -73.9910892 }, + { "lat": 40.7285381, "lon": -73.9911048 }, + { "lat": 40.7285626, "lon": -73.9911173 }, + { "lat": 40.7285888, "lon": -73.9911264 }, + { "lat": 40.7286150, "lon": -73.9911334 }, + { "lat": 40.7286454, "lon": -73.9911373 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Cooper Square", + "name:etymology:wikidata": "Q935291", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 468016990, + "bounds": { + "minlat": 40.7035783, + "minlon": -73.9826479, + "maxlat": 40.7036277, + "maxlon": -73.9811448 + }, + "nodes": [ + 598050834, + 10725896504, + 4625701490, + 10725896485, + 9800433526 + ], + "geometry": [ + { "lat": 40.7036277, "lon": -73.9826479 }, + { "lat": 40.7036250, "lon": -73.9825652 }, + { "lat": 40.7035794, "lon": -73.9811814 }, + { "lat": 40.7035785, "lon": -73.9811529 }, + { "lat": 40.7035783, "lon": -73.9811448 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 468016991, + "bounds": { + "minlat": 40.7035493, + "minlon": -73.9810717, + "maxlat": 40.7035762, + "maxlon": -73.9799867 + }, + "nodes": [ + 42472734, + 10554499066, + 42472736 + ], + "geometry": [ + { "lat": 40.7035762, "lon": -73.9810717 }, + { "lat": 40.7035745, "lon": -73.9810029 }, + { "lat": 40.7035493, "lon": -73.9799867 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 468016992, + "bounds": { + "minlat": 40.7036277, + "minlon": -73.9847918, + "maxlat": 40.7037022, + "maxlon": -73.9826479 + }, + "nodes": [ + 2358967531, + 10725916737, + 7707712196, + 10725916736, + 4625701489, + 10725916705, + 598050834 + ], + "geometry": [ + { "lat": 40.7037022, "lon": -73.9847918 }, + { "lat": 40.7036995, "lon": -73.9847152 }, + { "lat": 40.7036962, "lon": -73.9846227 }, + { "lat": 40.7036934, "lon": -73.9845432 }, + { "lat": 40.7036324, "lon": -73.9828098 }, + { "lat": 40.7036307, "lon": -73.9827515 }, + { "lat": 40.7036277, "lon": -73.9826479 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 468016993, + "bounds": { + "minlat": 40.7037022, + "minlon": -73.9866077, + "maxlat": 40.7037568, + "maxlon": -73.9847918 + }, + "nodes": [ + 42472725, + 3000082229, + 3000084335, + 7707712199, + 10725896470, + 7707712198, + 2358967531 + ], + "geometry": [ + { "lat": 40.7037568, "lon": -73.9866077 }, + { "lat": 40.7037547, "lon": -73.9865400 }, + { "lat": 40.7037512, "lon": -73.9864235 }, + { "lat": 40.7037432, "lon": -73.9861570 }, + { "lat": 40.7037367, "lon": -73.9859403 }, + { "lat": 40.7037334, "lon": -73.9858294 }, + { "lat": 40.7037022, "lon": -73.9847918 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 468278456, + "bounds": { + "minlat": 40.7375049, + "minlon": -73.9532044, + "maxlat": 40.7375241, + "maxlon": -73.9529508 + }, + "nodes": [ + 42472259, + 9920935005, + 2358056459 + ], + "geometry": [ + { "lat": 40.7375049, "lon": -73.9532044 }, + { "lat": 40.7375107, "lon": -73.9531278 }, + { "lat": 40.7375241, "lon": -73.9529508 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Box Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Box", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 468414626, + "bounds": { + "minlat": 40.7214100, + "minlon": -74.0091780, + "maxlat": 40.7220680, + "maxlon": -74.0090561 + }, + "nodes": [ + 42436309, + 8310246698, + 4629486874, + 8310246700, + 42440913 + ], + "geometry": [ + { "lat": 40.7214100, "lon": -74.0091780 }, + { "lat": 40.7214613, "lon": -74.0091684 }, + { "lat": 40.7219743, "lon": -74.0090734 }, + { "lat": 40.7220004, "lon": -74.0090686 }, + { "lat": 40.7220680, "lon": -74.0090561 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "name": "Collister Street", + "name:ko": "콜리스터 스트리트", + "oneway": "yes", + "service": "alley", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 468414627, + "bounds": { + "minlat": 40.7213430, + "minlon": -74.0097693, + "maxlat": 40.7214670, + "maxlon": -74.0084841 + }, + "nodes": [ + 11489120591, + 42436309, + 11490035759 + ], + "geometry": [ + { "lat": 40.7214670, "lon": -74.0097693 }, + { "lat": 40.7214100, "lon": -74.0091780 }, + { "lat": 40.7213430, "lon": -74.0084841 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Hubert Street", + "name:ko": "휴버트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 468414632, + "bounds": { + "minlat": 40.7297212, + "minlon": -74.0103484, + "maxlat": 40.7298199, + "maxlon": -74.0093046 + }, + "nodes": [ + 3874650186, + 12162502077, + 8214320074 + ], + "geometry": [ + { "lat": 40.7298199, "lon": -74.0103484 }, + { "lat": 40.7297242, "lon": -74.0093366 }, + { "lat": 40.7297212, "lon": -74.0093046 } + ], + "tags": { + "bicycle": "designated", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clarkson Street", + "name:etymology:wikidata": "Q6790308", + "name:ko": "클락슨 스트리트", + "name:ru": "Кларксон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 468414633, + "bounds": { + "minlat": 40.7311696, + "minlon": -74.0102108, + "maxlat": 40.7312875, + "maxlon": -74.0090203 + }, + "nodes": [ + 4629488490, + 12162494535, + 8214320054 + ], + "geometry": [ + { "lat": 40.7312875, "lon": -74.0102108 }, + { "lat": 40.7311728, "lon": -74.0090518 }, + { "lat": 40.7311696, "lon": -74.0090203 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Morton Street", + "name:etymology:wikidata": "Q6119027", + "name:ru": "Мортон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 468414634, + "bounds": { + "minlat": 40.7309445, + "minlon": -74.0090203, + "maxlat": 40.7311696, + "maxlon": -74.0067210 + }, + "nodes": [ + 8214320054, + 42454642, + 8214320051, + 12162494536, + 8214320060, + 42436122, + 8214320057, + 8214320116, + 42436381 + ], + "geometry": [ + { "lat": 40.7311696, "lon": -74.0090203 }, + { "lat": 40.7311635, "lon": -74.0089430 }, + { "lat": 40.7311558, "lon": -74.0088337 }, + { "lat": 40.7310949, "lon": -74.0081715 }, + { "lat": 40.7310889, "lon": -74.0081075 }, + { "lat": 40.7310785, "lon": -74.0080005 }, + { "lat": 40.7310683, "lon": -74.0079009 }, + { "lat": 40.7309699, "lon": -74.0068776 }, + { "lat": 40.7309445, "lon": -74.0067210 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Morton Street", + "name:etymology:wikidata": "Q6119027", + "name:ru": "Мортон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 468556822, + "bounds": { + "minlat": 40.8243055, + "minlon": -73.9737314, + "maxlat": 40.8256149, + "maxlon": -73.9729984 + }, + "nodes": [ + 5362481481, + 5362484710, + 4630812615, + 5362537291, + 5362537278, + 5362538485, + 5362537282, + 5362537292, + 5362537279, + 5362537276, + 5362537297, + 5362537280, + 4630812616, + 5362484698 + ], + "geometry": [ + { "lat": 40.8256149, "lon": -73.9729984 }, + { "lat": 40.8255634, "lon": -73.9730170 }, + { "lat": 40.8254826, "lon": -73.9730621 }, + { "lat": 40.8254530, "lon": -73.9730788 }, + { "lat": 40.8253672, "lon": -73.9731272 }, + { "lat": 40.8253018, "lon": -73.9731640 }, + { "lat": 40.8252784, "lon": -73.9731772 }, + { "lat": 40.8251270, "lon": -73.9732625 }, + { "lat": 40.8249732, "lon": -73.9733492 }, + { "lat": 40.8248259, "lon": -73.9734322 }, + { "lat": 40.8246767, "lon": -73.9735163 }, + { "lat": 40.8245247, "lon": -73.9736019 }, + { "lat": 40.8243708, "lon": -73.9736887 }, + { "lat": 40.8243055, "lon": -73.9737314 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 469064328, + "bounds": { + "minlat": 40.7409603, + "minlon": -74.0054333, + "maxlat": 40.7416100, + "maxlon": -74.0049280 + }, + "nodes": [ + 5257636101, + 5257636103, + 8262308701, + 5257636104, + 5257636100, + 5257636102, + 8262308707, + 5257636101 + ], + "geometry": [ + { "lat": 40.7416100, "lon": -74.0050457 }, + { "lat": 40.7410818, "lon": -74.0054333 }, + { "lat": 40.7409772, "lon": -74.0051941 }, + { "lat": 40.7409603, "lon": -74.0051543 }, + { "lat": 40.7413204, "lon": -74.0050996 }, + { "lat": 40.7415608, "lon": -74.0049280 }, + { "lat": 40.7415648, "lon": -74.0049380 }, + { "lat": 40.7416100, "lon": -74.0050457 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 469111997, + "bounds": { + "minlat": 40.8273022, + "minlon": -73.9247082, + "maxlat": 40.8274426, + "maxlon": -73.9242228 + }, + "nodes": [ + 2385899531, + 4635126223 + ], + "geometry": [ + { "lat": 40.8273022, "lon": -73.9242228 }, + { "lat": 40.8274426, "lon": -73.9247082 } + ], + "tags": { + "busway:left": "opposite_lane", + "cutting": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 469112000, + "bounds": { + "minlat": 40.8264029, + "minlon": -73.9215864, + "maxlat": 40.8265242, + "maxlon": -73.9211560 + }, + "nodes": [ + 42748152, + 9910729390, + 9910729391, + 2411416840, + 2408448921, + 12163704740, + 4635126227 + ], + "geometry": [ + { "lat": 40.8264029, "lon": -73.9211560 }, + { "lat": 40.8264070, "lon": -73.9211916 }, + { "lat": 40.8264127, "lon": -73.9212252 }, + { "lat": 40.8264214, "lon": -73.9212556 }, + { "lat": 40.8264304, "lon": -73.9212860 }, + { "lat": 40.8264408, "lon": -73.9213193 }, + { "lat": 40.8265242, "lon": -73.9215864 } + ], + "tags": { + "busway:left": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 469112002, + "bounds": { + "minlat": 40.8265194, + "minlon": -73.9226022, + "maxlat": 40.8267262, + "maxlon": -73.9219112 + }, + "nodes": [ + 2408448907, + 5762096229, + 8913552936 + ], + "geometry": [ + { "lat": 40.8267262, "lon": -73.9226022 }, + { "lat": 40.8267013, "lon": -73.9224928 }, + { "lat": 40.8265194, "lon": -73.9219112 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 469112003, + "bounds": { + "minlat": 40.8263245, + "minlon": -73.9212145, + "maxlat": 40.8264029, + "maxlon": -73.9211560 + }, + "nodes": [ + 2408448917, + 42748152 + ], + "geometry": [ + { "lat": 40.8263245, "lon": -73.9212145 }, + { "lat": 40.8264029, "lon": -73.9211560 } + ], + "tags": { + "highway": "residential", + "lane_markings": "yes", + "lanes": "1", + "name": "Concourse Village West", + "name:etymology:wikidata": "Q122566725", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concourse Village", + "tiger:name_direction_suffix": "W", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 469112004, + "bounds": { + "minlat": 40.8263316, + "minlon": -73.9211560, + "maxlat": 40.8264029, + "maxlon": -73.9208707 + }, + "nodes": [ + 2408448918, + 12163704741, + 5762096234, + 9910729388, + 9910729389, + 42748152 + ], + "geometry": [ + { "lat": 40.8263316, "lon": -73.9208707 }, + { "lat": 40.8263785, "lon": -73.9210258 }, + { "lat": 40.8263888, "lon": -73.9210596 }, + { "lat": 40.8263961, "lon": -73.9210887 }, + { "lat": 40.8264008, "lon": -73.9211286 }, + { "lat": 40.8264029, "lon": -73.9211560 } + ], + "tags": { + "busway:left": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 469112005, + "bounds": { + "minlat": 40.8274426, + "minlon": -73.9249606, + "maxlat": 40.8275127, + "maxlon": -73.9247082 + }, + "nodes": [ + 4635126223, + 12163704705, + 2411418430, + 2411416838 + ], + "geometry": [ + { "lat": 40.8274426, "lon": -73.9247082 }, + { "lat": 40.8274749, "lon": -73.9248190 }, + { "lat": 40.8274854, "lon": -73.9248581 }, + { "lat": 40.8275127, "lon": -73.9249606 } + ], + "tags": { + "busway:left": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 469113059, + "bounds": { + "minlat": 40.8496262, + "minlon": -73.9066977, + "maxlat": 40.8500703, + "maxlon": -73.9062624 + }, + "nodes": [ + 4635132294, + 42763028 + ], + "geometry": [ + { "lat": 40.8500703, "lon": -73.9066977 }, + { "lat": 40.8496262, "lon": -73.9062624 } + ], + "tags": { + "cutting": "yes", + "foot": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 469113060, + "bounds": { + "minlat": 40.8501001, + "minlon": -73.9069824, + "maxlat": 40.8504067, + "maxlon": -73.9066435 + }, + "nodes": [ + 4635132293, + 2028328034, + 2028361285 + ], + "geometry": [ + { "lat": 40.8501001, "lon": -73.9066435 }, + { "lat": 40.8503794, "lon": -73.9069388 }, + { "lat": 40.8504067, "lon": -73.9069824 } + ], + "tags": { + "foot": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 469118564, + "bounds": { + "minlat": 40.8452186, + "minlon": -73.9132290, + "maxlat": 40.8452481, + "maxlon": -73.9115732 + }, + "nodes": [ + 4635180144, + 12042629465, + 4635180145, + 103070846, + 12042673976, + 12042673977, + 12089606495 + ], + "geometry": [ + { "lat": 40.8452186, "lon": -73.9115732 }, + { "lat": 40.8452249, "lon": -73.9118241 }, + { "lat": 40.8452294, "lon": -73.9120797 }, + { "lat": 40.8452340, "lon": -73.9123723 }, + { "lat": 40.8452402, "lon": -73.9126552 }, + { "lat": 40.8452447, "lon": -73.9129481 }, + { "lat": 40.8452481, "lon": -73.9132290 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "tiger:cfcc": "A13", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cross Bronx", + "tiger:name_type": "Expy" + } +}, +{ + "type": "way", + "id": 469118567, + "bounds": { + "minlat": 40.8449603, + "minlon": -73.9104738, + "maxlat": 40.8451772, + "maxlon": -73.9061500 + }, + "nodes": [ + 10308312155, + 12041846711, + 12041846712, + 12041846713, + 12117669046, + 12042629430, + 103070844 + ], + "geometry": [ + { "lat": 40.8449603, "lon": -73.9061500 }, + { "lat": 40.8449773, "lon": -73.9064404 }, + { "lat": 40.8449954, "lon": -73.9067313 }, + { "lat": 40.8450098, "lon": -73.9070181 }, + { "lat": 40.8451111, "lon": -73.9090612 }, + { "lat": 40.8451669, "lon": -73.9101875 }, + { "lat": 40.8451772, "lon": -73.9104738 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "tiger:cfcc": "A13", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cross Bronx", + "tiger:name_type": "Expy" + } +}, +{ + "type": "way", + "id": 469118574, + "bounds": { + "minlat": 40.8447825, + "minlon": -73.9069466, + "maxlat": 40.8448875, + "maxlon": -73.9052520 + }, + "nodes": [ + 4635180152, + 12041905367, + 103076775, + 12041905366, + 12041905365, + 573401827 + ], + "geometry": [ + { "lat": 40.8448875, "lon": -73.9069466 }, + { "lat": 40.8448726, "lon": -73.9066487 }, + { "lat": 40.8448560, "lon": -73.9063710 }, + { "lat": 40.8448392, "lon": -73.9060861 }, + { "lat": 40.8448198, "lon": -73.9057923 }, + { "lat": 40.8447825, "lon": -73.9052520 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "destination:lanes": "New Haven|New Haven|New Haven;Webster Avenue", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 469292194, + "bounds": { + "minlat": 40.7452429, + "minlon": -73.9376818, + "maxlat": 40.7453846, + "maxlon": -73.9370888 + }, + "nodes": [ + 42938169, + 4636542634, + 9981973378 + ], + "geometry": [ + { "lat": 40.7452429, "lon": -73.9376818 }, + { "lat": 40.7453108, "lon": -73.9373953 }, + { "lat": 40.7453846, "lon": -73.9370888 } + ], + "tags": { + "cycleway": "shared_lane", + "foot": "no", + "highway": "residential", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|right" + } +}, +{ + "type": "way", + "id": 469292198, + "bounds": { + "minlat": 40.7451805, + "minlon": -73.9379634, + "maxlat": 40.7452429, + "maxlon": -73.9376818 + }, + "nodes": [ + 4636542638, + 42938169 + ], + "geometry": [ + { "lat": 40.7451805, "lon": -73.9379634 }, + { "lat": 40.7452429, "lon": -73.9376818 } + ], + "tags": { + "cycleway": "shared_lane", + "foot": "no", + "highway": "residential", + "lanes": "2", + "name": "Skillman Avenue" + } +}, +{ + "type": "way", + "id": 469292199, + "bounds": { + "minlat": 40.7453846, + "minlon": -73.9370888, + "maxlat": 40.7458436, + "maxlon": -73.9351814 + }, + "nodes": [ + 9981973378, + 5867108745, + 9179115055, + 13701254385, + 9179115054 + ], + "geometry": [ + { "lat": 40.7453846, "lon": -73.9370888 }, + { "lat": 40.7454658, "lon": -73.9367527 }, + { "lat": 40.7457775, "lon": -73.9354647 }, + { "lat": 40.7458324, "lon": -73.9352294 }, + { "lat": 40.7458436, "lon": -73.9351814 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 469292201, + "bounds": { + "minlat": 40.7456057, + "minlon": -73.9344235, + "maxlat": 40.7460292, + "maxlon": -73.9339889 + }, + "nodes": [ + 42911782, + 12855862340, + 10927727735, + 10927727734, + 12299669168 + ], + "geometry": [ + { "lat": 40.7460292, "lon": -73.9344235 }, + { "lat": 40.7459868, "lon": -73.9343800 }, + { "lat": 40.7459225, "lon": -73.9343140 }, + { "lat": 40.7457024, "lon": -73.9340881 }, + { "lat": 40.7456057, "lon": -73.9339889 } + ], + "tags": { + "cycleway:left": "separate", + "hgv": "designated", + "highway": "primary", + "name": "Queens Boulevard", + "oneway": "no", + "ref": "NY 25", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 469292206, + "bounds": { + "minlat": 40.7447251, + "minlon": -73.9335542, + "maxlat": 40.7449382, + "maxlon": -73.9332749 + }, + "nodes": [ + 593300815, + 9179115046, + 3785676231, + 9179115053, + 9179115041, + 10743722741, + 42866365 + ], + "geometry": [ + { "lat": 40.7449382, "lon": -73.9332749 }, + { "lat": 40.7449200, "lon": -73.9333307 }, + { "lat": 40.7448997, "lon": -73.9333787 }, + { "lat": 40.7448882, "lon": -73.9333982 }, + { "lat": 40.7448703, "lon": -73.9334287 }, + { "lat": 40.7448354, "lon": -73.9334581 }, + { "lat": 40.7447251, "lon": -73.9335542 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Van Dam Street", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no" + } +}, +{ + "type": "way", + "id": 469292207, + "bounds": { + "minlat": 40.7446215, + "minlon": -73.9332749, + "maxlat": 40.7449382, + "maxlon": -73.9326468 + }, + "nodes": [ + 593300815, + 9179115050, + 10761870672, + 3785676238, + 3785676239, + 3785676240, + 9179115047, + 9179115049, + 9179115048, + 10743722726, + 42820836 + ], + "geometry": [ + { "lat": 40.7449382, "lon": -73.9332749 }, + { "lat": 40.7448886, "lon": -73.9332338 }, + { "lat": 40.7448580, "lon": -73.9331953 }, + { "lat": 40.7448485, "lon": -73.9331857 }, + { "lat": 40.7448103, "lon": -73.9331292 }, + { "lat": 40.7447787, "lon": -73.9330718 }, + { "lat": 40.7447406, "lon": -73.9329820 }, + { "lat": 40.7447067, "lon": -73.9328879 }, + { "lat": 40.7446726, "lon": -73.9327787 }, + { "lat": 40.7446493, "lon": -73.9327216 }, + { "lat": 40.7446215, "lon": -73.9326468 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 469292208, + "bounds": { + "minlat": 40.7450474, + "minlon": -73.9335163, + "maxlat": 40.7451604, + "maxlon": -73.9333550 + }, + "nodes": [ + 42866362, + 9179115043, + 5978492512 + ], + "geometry": [ + { "lat": 40.7451604, "lon": -73.9335163 }, + { "lat": 40.7450871, "lon": -73.9334134 }, + { "lat": 40.7450474, "lon": -73.9333550 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Queens Boulevard", + "ref": "NY 25", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 469292209, + "bounds": { + "minlat": 40.7392959, + "minlon": -73.9337105, + "maxlat": 40.7427745, + "maxlon": -73.9330136 + }, + "nodes": [ + 42820840, + 9981973357, + 5482217746, + 10083107623, + 42820842, + 10083107625, + 8097303872, + 9981925196, + 42820844 + ], + "geometry": [ + { "lat": 40.7427745, "lon": -73.9330136 }, + { "lat": 40.7426899, "lon": -73.9330302 }, + { "lat": 40.7418799, "lon": -73.9331890 }, + { "lat": 40.7410121, "lon": -73.9333683 }, + { "lat": 40.7409291, "lon": -73.9333855 }, + { "lat": 40.7408432, "lon": -73.9334027 }, + { "lat": 40.7393869, "lon": -73.9336927 }, + { "lat": 40.7393474, "lon": -73.9337056 }, + { "lat": 40.7392959, "lon": -73.9337105 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "32nd Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 470714273, + "bounds": { + "minlat": 40.7626477, + "minlon": -73.9565342, + "maxlat": 40.7630517, + "maxlon": -73.9555811 + }, + "nodes": [ + 42427979, + 4999169393, + 4999169398, + 4649001166, + 4648943764 + ], + "geometry": [ + { "lat": 40.7630517, "lon": -73.9565342 }, + { "lat": 40.7629998, "lon": -73.9564120 }, + { "lat": 40.7629269, "lon": -73.9562385 }, + { "lat": 40.7628263, "lon": -73.9560003 }, + { "lat": 40.7626477, "lon": -73.9555811 } + ], + "tags": { + "foot": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 470714718, + "bounds": { + "minlat": 40.7627178, + "minlon": -73.9552870, + "maxlat": 40.7628480, + "maxlon": -73.9551184 + }, + "nodes": [ + 4648949463, + 5120338165, + 4999169402, + 4648954026, + 4999169403, + 4648954027, + 4999169404, + 4648954028, + 4648954029, + 4648954030, + 4648954031, + 4648949458, + 4648949459, + 4648949460, + 7837088633, + 4648949461, + 4648949462, + 4648949463 + ], + "geometry": [ + { "lat": 40.7628422, "lon": -73.9551687 }, + { "lat": 40.7628385, "lon": -73.9551612 }, + { "lat": 40.7628312, "lon": -73.9551463 }, + { "lat": 40.7628154, "lon": -73.9551295 }, + { "lat": 40.7627965, "lon": -73.9551199 }, + { "lat": 40.7627763, "lon": -73.9551184 }, + { "lat": 40.7627567, "lon": -73.9551253 }, + { "lat": 40.7627397, "lon": -73.9551397 }, + { "lat": 40.7627240, "lon": -73.9551672 }, + { "lat": 40.7627178, "lon": -73.9552006 }, + { "lat": 40.7627220, "lon": -73.9552345 }, + { "lat": 40.7627360, "lon": -73.9552636 }, + { "lat": 40.7627654, "lon": -73.9552867 }, + { "lat": 40.7627996, "lon": -73.9552870 }, + { "lat": 40.7628292, "lon": -73.9552644 }, + { "lat": 40.7628412, "lon": -73.9552353 }, + { "lat": 40.7628480, "lon": -73.9552021 }, + { "lat": 40.7628422, "lon": -73.9551687 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 470715200, + "bounds": { + "minlat": 40.7623098, + "minlon": -73.9555487, + "maxlat": 40.7627360, + "maxlon": -73.9552636 + }, + "nodes": [ + 4648949458, + 4648949457, + 4648938081 + ], + "geometry": [ + { "lat": 40.7627360, "lon": -73.9552636 }, + { "lat": 40.7625555, "lon": -73.9553878 }, + { "lat": 40.7623098, "lon": -73.9555487 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 470715500, + "bounds": { + "minlat": 40.7621776, + "minlon": -73.9556229, + "maxlat": 40.7623098, + "maxlon": -73.9554475 + }, + "nodes": [ + 4648938081, + 4999169396, + 4999169397, + 4999169395, + 4648938072, + 4648938073, + 4648938074, + 4648938075, + 4648938076, + 4648938077, + 4648938078, + 4648938079, + 4648938080, + 4648938081 + ], + "geometry": [ + { "lat": 40.7623098, "lon": -73.9555487 }, + { "lat": 40.7622989, "lon": -73.9555845 }, + { "lat": 40.7622776, "lon": -73.9556109 }, + { "lat": 40.7622498, "lon": -73.9556229 }, + { "lat": 40.7622208, "lon": -73.9556182 }, + { "lat": 40.7621929, "lon": -73.9555934 }, + { "lat": 40.7621776, "lon": -73.9555539 }, + { "lat": 40.7621785, "lon": -73.9555096 }, + { "lat": 40.7621956, "lon": -73.9554714 }, + { "lat": 40.7622245, "lon": -73.9554488 }, + { "lat": 40.7622581, "lon": -73.9554475 }, + { "lat": 40.7622880, "lon": -73.9554677 }, + { "lat": 40.7623068, "lon": -73.9555045 }, + { "lat": 40.7623098, "lon": -73.9555487 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 471865412, + "bounds": { + "minlat": 40.7339848, + "minlon": -73.9523243, + "maxlat": 40.7339983, + "maxlon": -73.9521783 + }, + "nodes": [ + 4660170671, + 2987758904 + ], + "geometry": [ + { "lat": 40.7339848, "lon": -73.9523243 }, + { "lat": 40.7339983, "lon": -73.9521783 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Green Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 471943022, + "bounds": { + "minlat": 40.7046153, + "minlon": -73.9393937, + "maxlat": 40.7050947, + "maxlon": -73.9391440 + }, + "nodes": [ + 8229295990, + 9214830623, + 7722378732, + 4660922274, + 4660922266, + 4660922267, + 4660922268, + 4660922275, + 4660922270, + 8229296009, + 8229295990 + ], + "geometry": [ + { "lat": 40.7050892, "lon": -73.9393937 }, + { "lat": 40.7048747, "lon": -73.9393576 }, + { "lat": 40.7047665, "lon": -73.9393184 }, + { "lat": 40.7046275, "lon": -73.9392118 }, + { "lat": 40.7046153, "lon": -73.9391959 }, + { "lat": 40.7046237, "lon": -73.9391493 }, + { "lat": 40.7046338, "lon": -73.9391440 }, + { "lat": 40.7046448, "lon": -73.9391503 }, + { "lat": 40.7048936, "lon": -73.9392783 }, + { "lat": 40.7050947, "lon": -73.9393822 }, + { "lat": 40.7050892, "lon": -73.9393937 } + ], + "tags": { + "area:highway": "traffic_island", + "highway": "pedestrian", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 473485780, + "bounds": { + "minlat": 40.7431966, + "minlon": -73.9583690, + "maxlat": 40.7435655, + "maxlon": -73.9564373 + }, + "nodes": [ + 3567881531, + 9982774470, + 9982774471, + 42866850 + ], + "geometry": [ + { "lat": 40.7435655, "lon": -73.9583690 }, + { "lat": 40.7432226, "lon": -73.9565795 }, + { "lat": 40.7432123, "lon": -73.9565229 }, + { "lat": 40.7431966, "lon": -73.9564373 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "50th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "50th", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 473488748, + "bounds": { + "minlat": 40.7496075, + "minlon": -73.9380918, + "maxlat": 40.7498394, + "maxlon": -73.9379097 + }, + "nodes": [ + 592643538, + 3785669472 + ], + "geometry": [ + { "lat": 40.7496075, "lon": -73.9379097 }, + { "lat": 40.7498394, "lon": -73.9380918 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "name": "Queensboro Plaza", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 473565703, + "bounds": { + "minlat": 40.7229325, + "minlon": -74.0034221, + "maxlat": 40.7229828, + "maxlon": -74.0033212 + }, + "nodes": [ + 4676469048, + 8891717496, + 4676469047 + ], + "geometry": [ + { "lat": 40.7229828, "lon": -74.0034221 }, + { "lat": 40.7229720, "lon": -74.0034001 }, + { "lat": 40.7229325, "lon": -74.0033212 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 473884145, + "bounds": { + "minlat": 40.7387804, + "minlon": -74.0099368, + "maxlat": 40.7393107, + "maxlon": -74.0098697 + }, + "nodes": [ + 246649429, + 12161966114, + 12161966113, + 373895089, + 12161966112, + 12161932096, + 11310311809, + 246647920 + ], + "geometry": [ + { "lat": 40.7387804, "lon": -74.0099368 }, + { "lat": 40.7388742, "lon": -74.0099344 }, + { "lat": 40.7389415, "lon": -74.0099322 }, + { "lat": 40.7390213, "lon": -74.0099256 }, + { "lat": 40.7390995, "lon": -74.0099146 }, + { "lat": 40.7391919, "lon": -74.0098976 }, + { "lat": 40.7392466, "lon": -74.0098862 }, + { "lat": 40.7393107, "lon": -74.0098697 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 473884146, + "bounds": { + "minlat": 40.7385265, + "minlon": -74.0101203, + "maxlat": 40.7387804, + "maxlon": -74.0099368 + }, + "nodes": [ + 246649429, + 3884622508, + 12161966115, + 246649427 + ], + "geometry": [ + { "lat": 40.7387804, "lon": -74.0099368 }, + { "lat": 40.7387573, "lon": -74.0099597 }, + { "lat": 40.7387181, "lon": -74.0099886 }, + { "lat": 40.7385265, "lon": -74.0101203 } + ], + "tags": { + "bicycle": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 474024817, + "bounds": { + "minlat": 40.7116802, + "minlon": -74.0014320, + "maxlat": 40.7119152, + "maxlon": -74.0013408 + }, + "nodes": [ + 4680481148, + 4680481149, + 9369042284, + 4680481150, + 4680481151, + 4680481152 + ], + "geometry": [ + { "lat": 40.7119152, "lon": -74.0013408 }, + { "lat": 40.7118454, "lon": -74.0013970 }, + { "lat": 40.7118230, "lon": -74.0014146 }, + { "lat": 40.7117929, "lon": -74.0014279 }, + { "lat": 40.7117641, "lon": -74.0014320 }, + { "lat": 40.7116802, "lon": -74.0014272 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "25 mph", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 474054794, + "bounds": { + "minlat": 40.7224734, + "minlon": -73.9879176, + "maxlat": 40.7226441, + "maxlon": -73.9873603 + }, + "nodes": [ + 1919595914, + 4598752841, + 9181587103 + ], + "geometry": [ + { "lat": 40.7226441, "lon": -73.9879176 }, + { "lat": 40.7226219, "lon": -73.9878449 }, + { "lat": 40.7224734, "lon": -73.9873603 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 474054795, + "bounds": { + "minlat": 40.7226441, + "minlon": -73.9879176, + "maxlat": 40.7227585, + "maxlon": -73.9878608 + }, + "nodes": [ + 1919595914, + 4332491210 + ], + "geometry": [ + { "lat": 40.7226441, "lon": -73.9879176 }, + { "lat": 40.7227585, "lon": -73.9878608 } + ], + "tags": { + "bicycle:conditional": "no @ (Su 08:00 - 18:00)", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "motor_vehicle:conditional": "no @ (Su 08:00 - 18:00)", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 474168734, + "bounds": { + "minlat": 40.8650192, + "minlon": -73.9322052, + "maxlat": 40.8653047, + "maxlon": -73.9318662 + }, + "nodes": [ + 2895439047, + 2895439048, + 2895439049, + 2895439050, + 8180550907, + 8180550906, + 8180550905, + 2895439052, + 8180550904, + 8180550903, + 8180550902, + 8180550901, + 8180550900, + 8180550899, + 8180550898, + 8180550897, + 8180550896, + 2895439054, + 8180550895, + 8180550894, + 8180550893, + 8180550892, + 8180550891, + 8180550890, + 8180550889, + 8180550888, + 8180550887, + 2895439055, + 8180550886, + 8180550885, + 8180550595, + 8180550884, + 8180550883, + 8180550882, + 8180550881, + 2895439057, + 8180550880, + 8180550879, + 8180550878, + 8180550877, + 8180550876, + 8180550875, + 2895439059, + 8180550874, + 8180550873, + 8180550872, + 8180550871, + 8180550870, + 8180550869, + 8180550868, + 8180550867, + 8180550866, + 2895439062, + 8180550865, + 8180550864, + 8180550863, + 8180550862, + 2895439064, + 8180550861, + 8180550860, + 8180550859, + 8180550858, + 8180550857, + 8180550856, + 8180550855, + 8180550854, + 8180550853, + 8180550852, + 2895439065, + 8180550851, + 2895439067, + 2895439068, + 8180550850, + 8180550849, + 8180550848, + 8180550847, + 8180550846, + 8180550845, + 8180550844, + 8180550843, + 8180550842, + 8180550841, + 8180550840, + 8180550839, + 8180550838, + 8180550837, + 2895439066, + 8180550835, + 8180550834, + 8180550833, + 8180550832, + 8180550831, + 8180550830, + 8180550829, + 8180550828, + 8180550827, + 8180550826, + 8180550825, + 8180550824, + 8180550823, + 8180550836, + 2895439058, + 8180550596, + 8180550600, + 8180550605, + 8180550609, + 8180550614, + 8180550619, + 8180550622, + 8180550630, + 8180550631, + 8180550626, + 8180550636, + 8180550633, + 2895439086, + 3273685819, + 8180550772, + 3273685774, + 8180550767, + 8180550768, + 8180550764, + 8180550769, + 8180550761, + 8180550757, + 8180550770, + 8180550750, + 8180550748, + 8180550752, + 8180550753, + 8180550743, + 8180550746, + 8180550747, + 8180550742, + 3273685784, + 8180550739, + 8180550734, + 8180550736, + 3273685783, + 8180550732, + 8180550733, + 8180550728, + 8180550730, + 3273685782, + 8180550726, + 8180550727, + 8180550725, + 8180550724, + 3273685781, + 8180550720, + 8180550722, + 8180550721, + 8180550723, + 8180550718, + 8180550719, + 8180550909, + 8180550717, + 3273685780, + 8180550716, + 8180550715, + 8180550713, + 8180550712, + 8180550710, + 8180550709, + 8180550708, + 8180550707, + 8180550705, + 8180550704, + 3273685778, + 8180550702, + 8180550701, + 8180550699, + 8180550698, + 8180550697, + 3273685777, + 8180550696, + 8180550694, + 8180550693, + 8180550691, + 8180550690, + 3273685776, + 8180550688, + 8180550686, + 8180550685, + 3273685775, + 8180550682, + 8180550681, + 8180550679, + 8180550677, + 8180550910, + 8180550674, + 8180550672, + 8180550670, + 8180550669, + 8180550911, + 8180550665, + 8180550663, + 8180550912, + 8180550660, + 8180550658, + 8180550654, + 8180550913, + 8180550650, + 8180550648, + 8180550645, + 3273685785, + 3273685786, + 3273685790, + 3273685789, + 3273685788, + 3273685787, + 3273685791, + 3273685792, + 3273685793, + 3273685794, + 3273685795, + 3273685796, + 3273685797, + 2895439047 + ], + "geometry": [ + { "lat": 40.8650493, "lon": -73.9320763 }, + { "lat": 40.8650522, "lon": -73.9320882 }, + { "lat": 40.8650531, "lon": -73.9320911 }, + { "lat": 40.8650536, "lon": -73.9320925 }, + { "lat": 40.8650541, "lon": -73.9320939 }, + { "lat": 40.8650547, "lon": -73.9320952 }, + { "lat": 40.8650553, "lon": -73.9320965 }, + { "lat": 40.8650559, "lon": -73.9320978 }, + { "lat": 40.8650565, "lon": -73.9320991 }, + { "lat": 40.8650572, "lon": -73.9321003 }, + { "lat": 40.8650579, "lon": -73.9321015 }, + { "lat": 40.8650586, "lon": -73.9321026 }, + { "lat": 40.8650594, "lon": -73.9321037 }, + { "lat": 40.8650601, "lon": -73.9321048 }, + { "lat": 40.8650609, "lon": -73.9321059 }, + { "lat": 40.8650617, "lon": -73.9321069 }, + { "lat": 40.8650626, "lon": -73.9321079 }, + { "lat": 40.8650634, "lon": -73.9321088 }, + { "lat": 40.8650643, "lon": -73.9321097 }, + { "lat": 40.8650652, "lon": -73.9321106 }, + { "lat": 40.8650661, "lon": -73.9321114 }, + { "lat": 40.8650671, "lon": -73.9321122 }, + { "lat": 40.8650680, "lon": -73.9321130 }, + { "lat": 40.8650690, "lon": -73.9321137 }, + { "lat": 40.8650700, "lon": -73.9321143 }, + { "lat": 40.8650710, "lon": -73.9321150 }, + { "lat": 40.8650720, "lon": -73.9321156 }, + { "lat": 40.8650730, "lon": -73.9321161 }, + { "lat": 40.8650741, "lon": -73.9321166 }, + { "lat": 40.8650751, "lon": -73.9321171 }, + { "lat": 40.8650757, "lon": -73.9321173 }, + { "lat": 40.8650762, "lon": -73.9321175 }, + { "lat": 40.8650773, "lon": -73.9321179 }, + { "lat": 40.8650784, "lon": -73.9321183 }, + { "lat": 40.8650795, "lon": -73.9321186 }, + { "lat": 40.8650806, "lon": -73.9321188 }, + { "lat": 40.8650817, "lon": -73.9321190 }, + { "lat": 40.8650828, "lon": -73.9321192 }, + { "lat": 40.8650839, "lon": -73.9321193 }, + { "lat": 40.8650850, "lon": -73.9321194 }, + { "lat": 40.8650862, "lon": -73.9321194 }, + { "lat": 40.8650873, "lon": -73.9321194 }, + { "lat": 40.8650884, "lon": -73.9321193 }, + { "lat": 40.8650896, "lon": -73.9321192 }, + { "lat": 40.8650907, "lon": -73.9321190 }, + { "lat": 40.8650919, "lon": -73.9321188 }, + { "lat": 40.8650930, "lon": -73.9321186 }, + { "lat": 40.8650941, "lon": -73.9321183 }, + { "lat": 40.8650953, "lon": -73.9321179 }, + { "lat": 40.8650964, "lon": -73.9321175 }, + { "lat": 40.8650975, "lon": -73.9321170 }, + { "lat": 40.8650987, "lon": -73.9321165 }, + { "lat": 40.8651009, "lon": -73.9321153 }, + { "lat": 40.8651019, "lon": -73.9321147 }, + { "lat": 40.8651030, "lon": -73.9321140 }, + { "lat": 40.8651040, "lon": -73.9321132 }, + { "lat": 40.8651050, "lon": -73.9321125 }, + { "lat": 40.8651060, "lon": -73.9321117 }, + { "lat": 40.8651069, "lon": -73.9321108 }, + { "lat": 40.8651079, "lon": -73.9321099 }, + { "lat": 40.8651088, "lon": -73.9321090 }, + { "lat": 40.8651096, "lon": -73.9321081 }, + { "lat": 40.8651105, "lon": -73.9321071 }, + { "lat": 40.8651113, "lon": -73.9321061 }, + { "lat": 40.8651121, "lon": -73.9321050 }, + { "lat": 40.8651129, "lon": -73.9321039 }, + { "lat": 40.8651136, "lon": -73.9321028 }, + { "lat": 40.8651143, "lon": -73.9321017 }, + { "lat": 40.8651150, "lon": -73.9321005 }, + { "lat": 40.8651157, "lon": -73.9320994 }, + { "lat": 40.8651163, "lon": -73.9320981 }, + { "lat": 40.8651169, "lon": -73.9320969 }, + { "lat": 40.8651175, "lon": -73.9320956 }, + { "lat": 40.8651180, "lon": -73.9320944 }, + { "lat": 40.8651186, "lon": -73.9320931 }, + { "lat": 40.8651190, "lon": -73.9320917 }, + { "lat": 40.8651195, "lon": -73.9320904 }, + { "lat": 40.8651199, "lon": -73.9320890 }, + { "lat": 40.8651203, "lon": -73.9320877 }, + { "lat": 40.8651207, "lon": -73.9320863 }, + { "lat": 40.8651210, "lon": -73.9320849 }, + { "lat": 40.8651213, "lon": -73.9320835 }, + { "lat": 40.8651215, "lon": -73.9320820 }, + { "lat": 40.8651218, "lon": -73.9320806 }, + { "lat": 40.8651220, "lon": -73.9320791 }, + { "lat": 40.8651221, "lon": -73.9320777 }, + { "lat": 40.8651223, "lon": -73.9320762 }, + { "lat": 40.8651223, "lon": -73.9320747 }, + { "lat": 40.8651224, "lon": -73.9320732 }, + { "lat": 40.8651224, "lon": -73.9320718 }, + { "lat": 40.8651224, "lon": -73.9320703 }, + { "lat": 40.8651224, "lon": -73.9320688 }, + { "lat": 40.8651223, "lon": -73.9320673 }, + { "lat": 40.8651221, "lon": -73.9320658 }, + { "lat": 40.8651220, "lon": -73.9320643 }, + { "lat": 40.8651218, "lon": -73.9320627 }, + { "lat": 40.8651215, "lon": -73.9320612 }, + { "lat": 40.8651213, "lon": -73.9320598 }, + { "lat": 40.8651209, "lon": -73.9320583 }, + { "lat": 40.8651206, "lon": -73.9320568 }, + { "lat": 40.8651202, "lon": -73.9320553 }, + { "lat": 40.8650977, "lon": -73.9319746 }, + { "lat": 40.8650992, "lon": -73.9319729 }, + { "lat": 40.8651009, "lon": -73.9319706 }, + { "lat": 40.8651021, "lon": -73.9319686 }, + { "lat": 40.8651035, "lon": -73.9319661 }, + { "lat": 40.8651046, "lon": -73.9319633 }, + { "lat": 40.8651054, "lon": -73.9319610 }, + { "lat": 40.8651062, "lon": -73.9319582 }, + { "lat": 40.8651066, "lon": -73.9319567 }, + { "lat": 40.8651068, "lon": -73.9319551 }, + { "lat": 40.8651073, "lon": -73.9319509 }, + { "lat": 40.8651074, "lon": -73.9319496 }, + { "lat": 40.8651074, "lon": -73.9319477 }, + { "lat": 40.8652358, "lon": -73.9318852 }, + { "lat": 40.8652748, "lon": -73.9318662 }, + { "lat": 40.8652779, "lon": -73.9318779 }, + { "lat": 40.8652813, "lon": -73.9318890 }, + { "lat": 40.8652825, "lon": -73.9318893 }, + { "lat": 40.8652836, "lon": -73.9318897 }, + { "lat": 40.8652848, "lon": -73.9318902 }, + { "lat": 40.8652860, "lon": -73.9318908 }, + { "lat": 40.8652873, "lon": -73.9318915 }, + { "lat": 40.8652882, "lon": -73.9318921 }, + { "lat": 40.8652894, "lon": -73.9318928 }, + { "lat": 40.8652904, "lon": -73.9318936 }, + { "lat": 40.8652916, "lon": -73.9318946 }, + { "lat": 40.8652924, "lon": -73.9318953 }, + { "lat": 40.8652935, "lon": -73.9318964 }, + { "lat": 40.8652946, "lon": -73.9318974 }, + { "lat": 40.8652954, "lon": -73.9318986 }, + { "lat": 40.8652963, "lon": -73.9318997 }, + { "lat": 40.8652971, "lon": -73.9319008 }, + { "lat": 40.8652982, "lon": -73.9319025 }, + { "lat": 40.8652988, "lon": -73.9319035 }, + { "lat": 40.8652994, "lon": -73.9319045 }, + { "lat": 40.8652999, "lon": -73.9319055 }, + { "lat": 40.8653005, "lon": -73.9319068 }, + { "lat": 40.8653013, "lon": -73.9319086 }, + { "lat": 40.8653017, "lon": -73.9319096 }, + { "lat": 40.8653020, "lon": -73.9319108 }, + { "lat": 40.8653024, "lon": -73.9319119 }, + { "lat": 40.8653029, "lon": -73.9319134 }, + { "lat": 40.8653032, "lon": -73.9319146 }, + { "lat": 40.8653035, "lon": -73.9319158 }, + { "lat": 40.8653037, "lon": -73.9319170 }, + { "lat": 40.8653040, "lon": -73.9319182 }, + { "lat": 40.8653042, "lon": -73.9319194 }, + { "lat": 40.8653043, "lon": -73.9319206 }, + { "lat": 40.8653044, "lon": -73.9319219 }, + { "lat": 40.8653046, "lon": -73.9319231 }, + { "lat": 40.8653046, "lon": -73.9319243 }, + { "lat": 40.8653047, "lon": -73.9319255 }, + { "lat": 40.8653047, "lon": -73.9319267 }, + { "lat": 40.8653047, "lon": -73.9319279 }, + { "lat": 40.8653046, "lon": -73.9319291 }, + { "lat": 40.8653046, "lon": -73.9319303 }, + { "lat": 40.8653044, "lon": -73.9319315 }, + { "lat": 40.8653042, "lon": -73.9319333 }, + { "lat": 40.8653040, "lon": -73.9319350 }, + { "lat": 40.8653037, "lon": -73.9319368 }, + { "lat": 40.8653033, "lon": -73.9319385 }, + { "lat": 40.8653029, "lon": -73.9319402 }, + { "lat": 40.8653023, "lon": -73.9319418 }, + { "lat": 40.8653018, "lon": -73.9319434 }, + { "lat": 40.8653012, "lon": -73.9319450 }, + { "lat": 40.8653005, "lon": -73.9319465 }, + { "lat": 40.8652998, "lon": -73.9319480 }, + { "lat": 40.8652993, "lon": -73.9319490 }, + { "lat": 40.8652985, "lon": -73.9319505 }, + { "lat": 40.8652976, "lon": -73.9319518 }, + { "lat": 40.8652970, "lon": -73.9319527 }, + { "lat": 40.8652964, "lon": -73.9319536 }, + { "lat": 40.8652957, "lon": -73.9319544 }, + { "lat": 40.8652948, "lon": -73.9319556 }, + { "lat": 40.8652937, "lon": -73.9319568 }, + { "lat": 40.8652926, "lon": -73.9319580 }, + { "lat": 40.8652914, "lon": -73.9319590 }, + { "lat": 40.8652906, "lon": -73.9319596 }, + { "lat": 40.8652894, "lon": -73.9319606 }, + { "lat": 40.8652877, "lon": -73.9319617 }, + { "lat": 40.8652855, "lon": -73.9319629 }, + { "lat": 40.8652846, "lon": -73.9319633 }, + { "lat": 40.8652834, "lon": -73.9319638 }, + { "lat": 40.8652825, "lon": -73.9319641 }, + { "lat": 40.8652816, "lon": -73.9319644 }, + { "lat": 40.8652804, "lon": -73.9319647 }, + { "lat": 40.8652792, "lon": -73.9319650 }, + { "lat": 40.8652780, "lon": -73.9319651 }, + { "lat": 40.8652768, "lon": -73.9319652 }, + { "lat": 40.8652755, "lon": -73.9319652 }, + { "lat": 40.8652740, "lon": -73.9319652 }, + { "lat": 40.8652731, "lon": -73.9319652 }, + { "lat": 40.8652718, "lon": -73.9319649 }, + { "lat": 40.8652702, "lon": -73.9319647 }, + { "lat": 40.8652683, "lon": -73.9319641 }, + { "lat": 40.8652670, "lon": -73.9319636 }, + { "lat": 40.8652661, "lon": -73.9319633 }, + { "lat": 40.8652645, "lon": -73.9319625 }, + { "lat": 40.8652634, "lon": -73.9319618 }, + { "lat": 40.8652621, "lon": -73.9319611 }, + { "lat": 40.8652606, "lon": -73.9319600 }, + { "lat": 40.8652595, "lon": -73.9319591 }, + { "lat": 40.8652582, "lon": -73.9319579 }, + { "lat": 40.8652570, "lon": -73.9319567 }, + { "lat": 40.8651573, "lon": -73.9320087 }, + { "lat": 40.8651769, "lon": -73.9320817 }, + { "lat": 40.8651824, "lon": -73.9320791 }, + { "lat": 40.8651968, "lon": -73.9321327 }, + { "lat": 40.8651504, "lon": -73.9321545 }, + { "lat": 40.8651486, "lon": -73.9321481 }, + { "lat": 40.8650900, "lon": -73.9321769 }, + { "lat": 40.8650918, "lon": -73.9321834 }, + { "lat": 40.8650476, "lon": -73.9322052 }, + { "lat": 40.8650319, "lon": -73.9321495 }, + { "lat": 40.8650355, "lon": -73.9321477 }, + { "lat": 40.8650192, "lon": -73.9320898 }, + { "lat": 40.8650493, "lon": -73.9320763 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "name": "West Terrace" + } +}, +{ + "type": "way", + "id": 474304539, + "bounds": { + "minlat": 40.7722404, + "minlon": -73.9910498, + "maxlat": 40.7726974, + "maxlon": -73.9899959 + }, + "nodes": [ + 2061592973, + 7591060182, + 8575682949, + 4682935365 + ], + "geometry": [ + { "lat": 40.7722404, "lon": -73.9899959 }, + { "lat": 40.7723041, "lon": -73.9901427 }, + { "lat": 40.7726540, "lon": -73.9909498 }, + { "lat": 40.7726974, "lon": -73.9910498 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 60th Street", + "name:ru": "Западная 60-я стрит", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 474304540, + "bounds": { + "minlat": 40.7721744, + "minlon": -73.9917513, + "maxlat": 40.7733062, + "maxlon": -73.9905614 + }, + "nodes": [ + 4682935360, + 8575682952, + 7921379129, + 7835476319, + 4682935365, + 6429000132, + 13180733604, + 8575682948, + 3533937800 + ], + "geometry": [ + { "lat": 40.7721744, "lon": -73.9917513 }, + { "lat": 40.7722335, "lon": -73.9916818 }, + { "lat": 40.7722590, "lon": -73.9916480 }, + { "lat": 40.7726429, "lon": -73.9911211 }, + { "lat": 40.7726974, "lon": -73.9910498 }, + { "lat": 40.7727468, "lon": -73.9909959 }, + { "lat": 40.7727978, "lon": -73.9909562 }, + { "lat": 40.7732366, "lon": -73.9906142 }, + { "lat": 40.7733062, "lon": -73.9905614 } + ], + "tags": { + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Freedom Place South", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 474635898, + "bounds": { + "minlat": 40.7387561, + "minlon": -74.0055102, + "maxlat": 40.7387641, + "maxlon": -74.0038600 + }, + "nodes": [ + 42431503, + 8307463649, + 8307463675, + 42431500 + ], + "geometry": [ + { "lat": 40.7387641, "lon": -74.0055102 }, + { "lat": 40.7387634, "lon": -74.0053724 }, + { "lat": 40.7387565, "lon": -74.0039384 }, + { "lat": 40.7387561, "lon": -74.0038600 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Horatio Street", + "name:etymology:wikidata": "Q365124", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 474635899, + "bounds": { + "minlat": 40.7376842, + "minlon": -74.0056852, + "maxlat": 40.7381397, + "maxlon": -74.0056100 + }, + "nodes": [ + 42436427, + 8307463792, + 4685462240, + 11040029959 + ], + "geometry": [ + { "lat": 40.7381397, "lon": -74.0056100 }, + { "lat": 40.7380909, "lon": -74.0056177 }, + { "lat": 40.7378489, "lon": -74.0056556 }, + { "lat": 40.7376842, "lon": -74.0056852 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 474635904, + "bounds": { + "minlat": 40.7372197, + "minlon": -74.0057682, + "maxlat": 40.7375527, + "maxlon": -74.0057088 + }, + "nodes": [ + 42436423, + 8307463784, + 42436414 + ], + "geometry": [ + { "lat": 40.7375527, "lon": -74.0057088 }, + { "lat": 40.7374876, "lon": -74.0057204 }, + { "lat": 40.7372197, "lon": -74.0057682 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 474635905, + "bounds": { + "minlat": 40.7372222, + "minlon": -74.0017550, + "maxlat": 40.7376609, + "maxlon": -74.0006278 + }, + "nodes": [ + 42432208, + 1701920968, + 1701920972, + 8262308349, + 1701921005, + 8262308359, + 42439073 + ], + "geometry": [ + { "lat": 40.7376609, "lon": -74.0017550 }, + { "lat": 40.7376511, "lon": -74.0016965 }, + { "lat": 40.7376412, "lon": -74.0016365 }, + { "lat": 40.7376380, "lon": -74.0016278 }, + { "lat": 40.7376112, "lon": -74.0015555 }, + { "lat": 40.7372860, "lon": -74.0007800 }, + { "lat": 40.7372222, "lon": -74.0006278 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 12th Street", + "name:ru": "Западная 12-я стрит", + "name_1": "West 12 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 474864229, + "bounds": { + "minlat": 40.7414793, + "minlon": -73.9894686, + "maxlat": 40.7421460, + "maxlon": -73.9890110 + }, + "nodes": [ + 4687262921, + 10177726743, + 6491581182, + 10177726742, + 3857368437, + 3857400386, + 10177727085, + 10177727086, + 494509195, + 3019038993, + 6243559681, + 3009534466, + 494509196, + 6243559683, + 10177726958, + 6243559680, + 10177726959, + 3857400392, + 3857368436, + 10177727071, + 8264701244, + 4687262920, + 10177726777, + 4687262923, + 6491581153, + 6491581152, + 4687262924, + 10177726746, + 4687262921 + ], + "geometry": [ + { "lat": 40.7414793, "lon": -73.9891662 }, + { "lat": 40.7414807, "lon": -73.9891587 }, + { "lat": 40.7414851, "lon": -73.9891568 }, + { "lat": 40.7414910, "lon": -73.9891541 }, + { "lat": 40.7415124, "lon": -73.9891483 }, + { "lat": 40.7418031, "lon": -73.9890642 }, + { "lat": 40.7418985, "lon": -73.9890403 }, + { "lat": 40.7419600, "lon": -73.9890271 }, + { "lat": 40.7420212, "lon": -73.9890147 }, + { "lat": 40.7420897, "lon": -73.9890110 }, + { "lat": 40.7421176, "lon": -73.9890158 }, + { "lat": 40.7421352, "lon": -73.9890258 }, + { "lat": 40.7421421, "lon": -73.9890393 }, + { "lat": 40.7421460, "lon": -73.9890526 }, + { "lat": 40.7421449, "lon": -73.9890647 }, + { "lat": 40.7421405, "lon": -73.9890728 }, + { "lat": 40.7421333, "lon": -73.9890781 }, + { "lat": 40.7418832, "lon": -73.9892608 }, + { "lat": 40.7416273, "lon": -73.9894506 }, + { "lat": 40.7416037, "lon": -73.9894683 }, + { "lat": 40.7415982, "lon": -73.9894686 }, + { "lat": 40.7415943, "lon": -73.9894646 }, + { "lat": 40.7415868, "lon": -73.9894454 }, + { "lat": 40.7415779, "lon": -73.9894216 }, + { "lat": 40.7415746, "lon": -73.9894127 }, + { "lat": 40.7415327, "lon": -73.9893068 }, + { "lat": 40.7414844, "lon": -73.9891873 }, + { "lat": 40.7414812, "lon": -73.9891787 }, + { "lat": 40.7414793, "lon": -73.9891662 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Flatiron Public Plaza", + "name:etymology:wikidata": "Q220728", + "operator": "Flatiron/23rd Street Partnership", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 475815240, + "bounds": { + "minlat": 40.7266128, + "minlon": -73.9266137, + "maxlat": 40.7278173, + "maxlon": -73.9235676 + }, + "nodes": [ + 42900574, + 10087637186, + 10087637187, + 7712051793, + 10087637188, + 10087637191, + 10087637190, + 10087637192, + 10087637193, + 4695098041, + 10087637194, + 6420466832, + 10087637195 + ], + "geometry": [ + { "lat": 40.7278173, "lon": -73.9266137 }, + { "lat": 40.7277745, "lon": -73.9264620 }, + { "lat": 40.7277195, "lon": -73.9262779 }, + { "lat": 40.7276932, "lon": -73.9261599 }, + { "lat": 40.7276754, "lon": -73.9260872 }, + { "lat": 40.7276108, "lon": -73.9258979 }, + { "lat": 40.7275466, "lon": -73.9257131 }, + { "lat": 40.7274782, "lon": -73.9255260 }, + { "lat": 40.7274020, "lon": -73.9253353 }, + { "lat": 40.7272828, "lon": -73.9250558 }, + { "lat": 40.7271829, "lon": -73.9248268 }, + { "lat": 40.7269538, "lon": -73.9243178 }, + { "lat": 40.7266128, "lon": -73.9235676 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "57th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 475839351, + "bounds": { + "minlat": 40.8229744, + "minlon": -73.9867631, + "maxlat": 40.8235277, + "maxlon": -73.9863450 + }, + "nodes": [ + 103110914, + 7557454989, + 7557454992, + 4695282830 + ], + "geometry": [ + { "lat": 40.8235277, "lon": -73.9863450 }, + { "lat": 40.8233732, "lon": -73.9864619 }, + { "lat": 40.8232286, "lon": -73.9865711 }, + { "lat": 40.8229744, "lon": -73.9867631 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 475867321, + "bounds": { + "minlat": 40.7161708, + "minlon": -74.0132926, + "maxlat": 40.7165175, + "maxlon": -74.0132067 + }, + "nodes": [ + 246858449, + 4872879382, + 11440190173, + 9417252931 + ], + "geometry": [ + { "lat": 40.7165175, "lon": -74.0132067 }, + { "lat": 40.7164178, "lon": -74.0132320 }, + { "lat": 40.7163552, "lon": -74.0132455 }, + { "lat": 40.7161708, "lon": -74.0132926 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 475867322, + "bounds": { + "minlat": 40.7164234, + "minlon": -74.0132067, + "maxlat": 40.7165175, + "maxlon": -74.0129331 + }, + "nodes": [ + 246858449, + 42449613 + ], + "geometry": [ + { "lat": 40.7165175, "lon": -74.0132067 }, + { "lat": 40.7164234, "lon": -74.0129331 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Warren Street", + "name:etymology:wikidata": "Q3376953", + "name:ko": "워렌 스트리트", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 475899291, + "bounds": { + "minlat": 40.8506206, + "minlon": -73.9859171, + "maxlat": 40.8508858, + "maxlon": -73.9856467 + }, + "nodes": [ + 4695808170, + 7393483002, + 4695808180 + ], + "geometry": [ + { "lat": 40.8508858, "lon": -73.9856467 }, + { "lat": 40.8507055, "lon": -73.9858400 }, + { "lat": 40.8506206, "lon": -73.9859171 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 475899293, + "bounds": { + "minlat": 40.8506206, + "minlon": -73.9859835, + "maxlat": 40.8508983, + "maxlon": -73.9859171 + }, + "nodes": [ + 4695808180, + 12692293517, + 4695808169, + 10943491239, + 10943491231, + 10943491229, + 4695808168 + ], + "geometry": [ + { "lat": 40.8506206, "lon": -73.9859171 }, + { "lat": 40.8506846, "lon": -73.9859244 }, + { "lat": 40.8507425, "lon": -73.9859624 }, + { "lat": 40.8507811, "lon": -73.9859715 }, + { "lat": 40.8508237, "lon": -73.9859757 }, + { "lat": 40.8508626, "lon": -73.9859762 }, + { "lat": 40.8508983, "lon": -73.9859835 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 475899294, + "bounds": { + "minlat": 40.8498954, + "minlon": -73.9856467, + "maxlat": 40.8508980, + "maxlon": -73.9851130 + }, + "nodes": [ + 4695808174, + 4695808173, + 7393466958, + 4695808176, + 4695808172, + 7393466960, + 7393466959, + 4695808171, + 4695808170 + ], + "geometry": [ + { "lat": 40.8498954, "lon": -73.9851130 }, + { "lat": 40.8503577, "lon": -73.9851339 }, + { "lat": 40.8505607, "lon": -73.9852509 }, + { "lat": 40.8506837, "lon": -73.9853331 }, + { "lat": 40.8508111, "lon": -73.9854302 }, + { "lat": 40.8508908, "lon": -73.9855481 }, + { "lat": 40.8508980, "lon": -73.9855850 }, + { "lat": 40.8508948, "lon": -73.9856180 }, + { "lat": 40.8508858, "lon": -73.9856467 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 475899295, + "bounds": { + "minlat": 40.8503237, + "minlon": -73.9856998, + "maxlat": 40.8506837, + "maxlon": -73.9853331 + }, + "nodes": [ + 4695808176, + 4695808177 + ], + "geometry": [ + { "lat": 40.8506837, "lon": -73.9853331 }, + { "lat": 40.8503237, "lon": -73.9856998 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 475899296, + "bounds": { + "minlat": 40.8505814, + "minlon": -73.9862962, + "maxlat": 40.8506374, + "maxlon": -73.9859171 + }, + "nodes": [ + 4695808182, + 10943491221, + 10943491234, + 10943491232, + 10943491240, + 10943491230, + 4695808181, + 4695808180 + ], + "geometry": [ + { "lat": 40.8505814, "lon": -73.9862962 }, + { "lat": 40.8506046, "lon": -73.9862416 }, + { "lat": 40.8506219, "lon": -73.9861830 }, + { "lat": 40.8506324, "lon": -73.9861239 }, + { "lat": 40.8506374, "lon": -73.9860759 }, + { "lat": 40.8506369, "lon": -73.9860354 }, + { "lat": 40.8506301, "lon": -73.9859988 }, + { "lat": 40.8506206, "lon": -73.9859171 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 475899297, + "bounds": { + "minlat": 40.8501997, + "minlon": -73.9861060, + "maxlat": 40.8504899, + "maxlon": -73.9856098 + }, + "nodes": [ + 4695808185, + 12692293509, + 12692293508, + 12692293511, + 4695808178 + ], + "geometry": [ + { "lat": 40.8504899, "lon": -73.9861060 }, + { "lat": 40.8504899, "lon": -73.9860959 }, + { "lat": 40.8504888, "lon": -73.9860864 }, + { "lat": 40.8504860, "lon": -73.9860761 }, + { "lat": 40.8501997, "lon": -73.9856098 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 475899298, + "bounds": { + "minlat": 40.8493335, + "minlon": -73.9864033, + "maxlat": 40.8501752, + "maxlon": -73.9852390 + }, + "nodes": [ + 4695808489, + 12692293514, + 4695808188, + 4695808187 + ], + "geometry": [ + { "lat": 40.8493335, "lon": -73.9852390 }, + { "lat": 40.8494908, "lon": -73.9853050 }, + { "lat": 40.8495412, "lon": -73.9853308 }, + { "lat": 40.8501752, "lon": -73.9864033 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 475899299, + "bounds": { + "minlat": 40.8495412, + "minlon": -73.9853308, + "maxlat": 40.8498427, + "maxlon": -73.9850281 + }, + "nodes": [ + 4695808183, + 12692293513, + 12692293515, + 4695808188 + ], + "geometry": [ + { "lat": 40.8498427, "lon": -73.9850281 }, + { "lat": 40.8498004, "lon": -73.9850678 }, + { "lat": 40.8495696, "lon": -73.9853028 }, + { "lat": 40.8495412, "lon": -73.9853308 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 475899300, + "bounds": { + "minlat": 40.8501752, + "minlon": -73.9864100, + "maxlat": 40.8504899, + "maxlon": -73.9861060 + }, + "nodes": [ + 4695808187, + 4695808186, + 12692293512, + 12692293510, + 12692293507, + 4695808185 + ], + "geometry": [ + { "lat": 40.8501752, "lon": -73.9864033 }, + { "lat": 40.8502219, "lon": -73.9864100 }, + { "lat": 40.8504811, "lon": -73.9861304 }, + { "lat": 40.8504849, "lon": -73.9861243 }, + { "lat": 40.8504879, "lon": -73.9861157 }, + { "lat": 40.8504899, "lon": -73.9861060 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 475899301, + "bounds": { + "minlat": 40.8489401, + "minlon": -73.9846090, + "maxlat": 40.8496260, + "maxlon": -73.9845767 + }, + "nodes": [ + 4695808491, + 5362373771, + 4695808490, + 5362373770 + ], + "geometry": [ + { "lat": 40.8489401, "lon": -73.9845767 }, + { "lat": 40.8494002, "lon": -73.9845898 }, + { "lat": 40.8495644, "lon": -73.9845944 }, + { "lat": 40.8496260, "lon": -73.9846090 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 475899302, + "bounds": { + "minlat": 40.8496977, + "minlon": -73.9833254, + "maxlat": 40.8517962, + "maxlon": -73.9826394 + }, + "nodes": [ + 103314462, + 5362367908, + 4695808497, + 4695808496, + 4695808495, + 4695808494, + 4695808493, + 5748069109, + 5108609663, + 6805247971, + 4695808492 + ], + "geometry": [ + { "lat": 40.8496977, "lon": -73.9831631 }, + { "lat": 40.8497494, "lon": -73.9832088 }, + { "lat": 40.8498241, "lon": -73.9832460 }, + { "lat": 40.8508860, "lon": -73.9833248 }, + { "lat": 40.8510010, "lon": -73.9833254 }, + { "lat": 40.8510618, "lon": -73.9833040 }, + { "lat": 40.8511531, "lon": -73.9832410 }, + { "lat": 40.8512123, "lon": -73.9831862 }, + { "lat": 40.8514023, "lon": -73.9830104 }, + { "lat": 40.8517553, "lon": -73.9826779 }, + { "lat": 40.8517962, "lon": -73.9826394 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 475899303, + "bounds": { + "minlat": 40.8486213, + "minlon": -73.9848975, + "maxlat": 40.8486256, + "maxlon": -73.9847497 + }, + "nodes": [ + 4695808499, + 4695808498 + ], + "geometry": [ + { "lat": 40.8486213, "lon": -73.9847497 }, + { "lat": 40.8486256, "lon": -73.9848975 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 475899304, + "bounds": { + "minlat": 40.8481587, + "minlon": -73.9848195, + "maxlat": 40.8486213, + "maxlon": -73.9845392 + }, + "nodes": [ + 4695808503, + 4695808501, + 4695808500, + 4695808499 + ], + "geometry": [ + { "lat": 40.8481587, "lon": -73.9848195 }, + { "lat": 40.8482926, "lon": -73.9847993 }, + { "lat": 40.8485321, "lon": -73.9845392 }, + { "lat": 40.8486213, "lon": -73.9847497 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 475899305, + "bounds": { + "minlat": 40.8481587, + "minlon": -73.9849628, + "maxlat": 40.8481760, + "maxlon": -73.9848195 + }, + "nodes": [ + 4695808503, + 4695808502 + ], + "geometry": [ + { "lat": 40.8481587, "lon": -73.9848195 }, + { "lat": 40.8481760, "lon": -73.9849628 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 475899306, + "bounds": { + "minlat": 40.8477827, + "minlon": -73.9848195, + "maxlat": 40.8481587, + "maxlon": -73.9841409 + }, + "nodes": [ + 4695808504, + 4695808503 + ], + "geometry": [ + { "lat": 40.8477827, "lon": -73.9841409 }, + { "lat": 40.8481587, "lon": -73.9848195 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 475899307, + "bounds": { + "minlat": 40.8476498, + "minlon": -73.9845164, + "maxlat": 40.8477887, + "maxlon": -73.9842742 + }, + "nodes": [ + 4695808506, + 4695808505 + ], + "geometry": [ + { "lat": 40.8476498, "lon": -73.9842742 }, + { "lat": 40.8477887, "lon": -73.9845164 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 475899308, + "bounds": { + "minlat": 40.8475072, + "minlon": -73.9836648, + "maxlat": 40.8477365, + "maxlon": -73.9834448 + }, + "nodes": [ + 4695808508, + 4695808507 + ], + "geometry": [ + { "lat": 40.8475072, "lon": -73.9836648 }, + { "lat": 40.8477365, "lon": -73.9834448 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 475899309, + "bounds": { + "minlat": 40.8467640, + "minlon": -73.9842951, + "maxlat": 40.8475092, + "maxlon": -73.9836648 + }, + "nodes": [ + 4695808515, + 4695808516, + 4695808514, + 4695808513, + 4695808512, + 4695808511, + 4695808510, + 4695808509, + 4695808508 + ], + "geometry": [ + { "lat": 40.8467640, "lon": -73.9840130 }, + { "lat": 40.8468620, "lon": -73.9842025 }, + { "lat": 40.8469117, "lon": -73.9842709 }, + { "lat": 40.8469543, "lon": -73.9842951 }, + { "lat": 40.8469766, "lon": -73.9842937 }, + { "lat": 40.8474747, "lon": -73.9837989 }, + { "lat": 40.8475031, "lon": -73.9837560 }, + { "lat": 40.8475092, "lon": -73.9837104 }, + { "lat": 40.8475072, "lon": -73.9836648 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 475899310, + "bounds": { + "minlat": 40.8465141, + "minlon": -73.9845395, + "maxlat": 40.8468620, + "maxlon": -73.9842025 + }, + "nodes": [ + 4695808517, + 4695808516 + ], + "geometry": [ + { "lat": 40.8465141, "lon": -73.9845395 }, + { "lat": 40.8468620, "lon": -73.9842025 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 475899311, + "bounds": { + "minlat": 40.8462173, + "minlon": -73.9837761, + "maxlat": 40.8464739, + "maxlon": -73.9833918 + }, + "nodes": [ + 4695808521, + 4695808520, + 4695808519, + 4695808518 + ], + "geometry": [ + { "lat": 40.8463066, "lon": -73.9833918 }, + { "lat": 40.8464739, "lon": -73.9836970 }, + { "lat": 40.8463948, "lon": -73.9837761 }, + { "lat": 40.8462173, "lon": -73.9834824 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 475899312, + "bounds": { + "minlat": 40.8462173, + "minlon": -73.9834824, + "maxlat": 40.8470139, + "maxlon": -73.9828521 + }, + "nodes": [ + 4695808527, + 4695808524, + 4695808523, + 4695808522, + 4695808521, + 4695808518 + ], + "geometry": [ + { "lat": 40.8470139, "lon": -73.9830472 }, + { "lat": 40.8468993, "lon": -73.9828668 }, + { "lat": 40.8468668, "lon": -73.9828521 }, + { "lat": 40.8468282, "lon": -73.9828735 }, + { "lat": 40.8463066, "lon": -73.9833918 }, + { "lat": 40.8462173, "lon": -73.9834824 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 475899313, + "bounds": { + "minlat": 40.8470139, + "minlon": -73.9834870, + "maxlat": 40.8472871, + "maxlon": -73.9830472 + }, + "nodes": [ + 4695808528, + 11046003151, + 4695808527 + ], + "geometry": [ + { "lat": 40.8472871, "lon": -73.9834870 }, + { "lat": 40.8471937, "lon": -73.9833366 }, + { "lat": 40.8470139, "lon": -73.9830472 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 475899314, + "bounds": { + "minlat": 40.8470139, + "minlon": -73.9832056, + "maxlat": 40.8473329, + "maxlon": -73.9828909 + }, + "nodes": [ + 4695808527, + 4695808526, + 11046003150 + ], + "geometry": [ + { "lat": 40.8470139, "lon": -73.9830472 }, + { "lat": 40.8471595, "lon": -73.9828909 }, + { "lat": 40.8473329, "lon": -73.9832056 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 475901724, + "bounds": { + "minlat": 40.8508255, + "minlon": -73.9863418, + "maxlat": 40.8511020, + "maxlon": -73.9861915 + }, + "nodes": [ + 4695817863, + 10943491217, + 10943491220, + 10943491228, + 4695817862, + 10943491215, + 10943491233, + 10943491237, + 4695817861 + ], + "geometry": [ + { "lat": 40.8511020, "lon": -73.9863418 }, + { "lat": 40.8510709, "lon": -73.9863118 }, + { "lat": 40.8510359, "lon": -73.9862835 }, + { "lat": 40.8510014, "lon": -73.9862600 }, + { "lat": 40.8509680, "lon": -73.9862413 }, + { "lat": 40.8509321, "lon": -73.9862257 }, + { "lat": 40.8508931, "lon": -73.9862106 }, + { "lat": 40.8508593, "lon": -73.9861993 }, + { "lat": 40.8508255, "lon": -73.9861915 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 475901725, + "bounds": { + "minlat": 40.8510888, + "minlon": -73.9863418, + "maxlat": 40.8511342, + "maxlon": -73.9858800 + }, + "nodes": [ + 4695817865, + 10943491218, + 10943491222, + 10943491208, + 4695817864, + 10943491219, + 10943491209, + 10943491210, + 4695817863 + ], + "geometry": [ + { "lat": 40.8511342, "lon": -73.9858800 }, + { "lat": 40.8511194, "lon": -73.9859617 }, + { "lat": 40.8511060, "lon": -73.9860427 }, + { "lat": 40.8510956, "lon": -73.9861166 }, + { "lat": 40.8510906, "lon": -73.9861673 }, + { "lat": 40.8510888, "lon": -73.9862139 }, + { "lat": 40.8510908, "lon": -73.9862603 }, + { "lat": 40.8510948, "lon": -73.9863011 }, + { "lat": 40.8511020, "lon": -73.9863418 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 475901729, + "bounds": { + "minlat": 40.8511069, + "minlon": -73.9876854, + "maxlat": 40.8514163, + "maxlon": -73.9874755 + }, + "nodes": [ + 299183096, + 4695817873, + 4695817874, + 4695817876, + 4695817875, + 10239588148, + 4695817877 + ], + "geometry": [ + { "lat": 40.8511069, "lon": -73.9876422 }, + { "lat": 40.8511759, "lon": -73.9876854 }, + { "lat": 40.8512409, "lon": -73.9876774 }, + { "lat": 40.8513261, "lon": -73.9875921 }, + { "lat": 40.8513813, "lon": -73.9875385 }, + { "lat": 40.8514038, "lon": -73.9875005 }, + { "lat": 40.8514163, "lon": -73.9874755 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 475901737, + "bounds": { + "minlat": 40.8506942, + "minlon": -73.9874755, + "maxlat": 40.8514163, + "maxlon": -73.9869373 + }, + "nodes": [ + 4695817877, + 10239602498, + 10239602497, + 10239602496, + 10239602495, + 10239602494, + 10239602493, + 10239602492, + 10239602491, + 10239602490 + ], + "geometry": [ + { "lat": 40.8514163, "lon": -73.9874755 }, + { "lat": 40.8513667, "lon": -73.9874147 }, + { "lat": 40.8513170, "lon": -73.9874133 }, + { "lat": 40.8512663, "lon": -73.9874509 }, + { "lat": 40.8512186, "lon": -73.9874724 }, + { "lat": 40.8511750, "lon": -73.9874750 }, + { "lat": 40.8511151, "lon": -73.9874388 }, + { "lat": 40.8510725, "lon": -73.9873946 }, + { "lat": 40.8507408, "lon": -73.9870124 }, + { "lat": 40.8506942, "lon": -73.9869373 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 475901742, + "bounds": { + "minlat": 40.8521909, + "minlon": -73.9857864, + "maxlat": 40.8522791, + "maxlon": -73.9855109 + }, + "nodes": [ + 103108780, + 12020325894, + 12020325895, + 4695818114, + 12020325896, + 4695818113 + ], + "geometry": [ + { "lat": 40.8522791, "lon": -73.9855109 }, + { "lat": 40.8522411, "lon": -73.9855771 }, + { "lat": 40.8522216, "lon": -73.9856237 }, + { "lat": 40.8522056, "lon": -73.9856780 }, + { "lat": 40.8521954, "lon": -73.9857287 }, + { "lat": 40.8521909, "lon": -73.9857864 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 475901743, + "bounds": { + "minlat": 40.8519719, + "minlon": -73.9857864, + "maxlat": 40.8521909, + "maxlon": -73.9855573 + }, + "nodes": [ + 4695818113, + 12020325897, + 4695818112, + 4695818111, + 12020325898, + 4695818110 + ], + "geometry": [ + { "lat": 40.8521909, "lon": -73.9857864 }, + { "lat": 40.8521461, "lon": -73.9857242 }, + { "lat": 40.8521160, "lon": -73.9856868 }, + { "lat": 40.8520696, "lon": -73.9856347 }, + { "lat": 40.8520305, "lon": -73.9855975 }, + { "lat": 40.8519719, "lon": -73.9855573 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 476015901, + "bounds": { + "minlat": 40.7565467, + "minlon": -74.0042316, + "maxlat": 40.7566909, + "maxlon": -74.0041278 + }, + "nodes": [ + 4696815195, + 11511554823, + 8261122864, + 9423680749, + 4696815203 + ], + "geometry": [ + { "lat": 40.7566909, "lon": -74.0041278 }, + { "lat": 40.7566186, "lon": -74.0041793 }, + { "lat": 40.7565946, "lon": -74.0041964 }, + { "lat": 40.7565755, "lon": -74.0042104 }, + { "lat": 40.7565467, "lon": -74.0042316 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 476015902, + "bounds": { + "minlat": 40.7561676, + "minlon": -74.0049698, + "maxlat": 40.7566947, + "maxlon": -74.0042316 + }, + "nodes": [ + 4696815203, + 9421657374, + 9421657373, + 9421657372, + 4696815200, + 4696815204, + 4696815196, + 4696815197, + 4696815207, + 4696815198, + 4696815199 + ], + "geometry": [ + { "lat": 40.7565467, "lon": -74.0042316 }, + { "lat": 40.7565361, "lon": -74.0042472 }, + { "lat": 40.7565306, "lon": -74.0042679 }, + { "lat": 40.7565314, "lon": -74.0043060 }, + { "lat": 40.7565406, "lon": -74.0043468 }, + { "lat": 40.7566092, "lon": -74.0045152 }, + { "lat": 40.7566947, "lon": -74.0047148 }, + { "lat": 40.7563533, "lon": -74.0049698 }, + { "lat": 40.7562678, "lon": -74.0047703 }, + { "lat": 40.7561676, "lon": -74.0045290 }, + { "lat": 40.7563918, "lon": -74.0043589 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 476015904, + "bounds": { + "minlat": 40.7562678, + "minlon": -74.0047703, + "maxlat": 40.7566092, + "maxlon": -74.0045152 + }, + "nodes": [ + 4696815204, + 4696815207 + ], + "geometry": [ + { "lat": 40.7566092, "lon": -74.0045152 }, + { "lat": 40.7562678, "lon": -74.0047703 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 476770528, + "bounds": { + "minlat": 40.7016969, + "minlon": -73.9291958, + "maxlat": 40.7019156, + "maxlon": -73.9288253 + }, + "nodes": [ + 4702458479, + 4702458484, + 4702458480 + ], + "geometry": [ + { "lat": 40.7019156, "lon": -73.9291958 }, + { "lat": 40.7017455, "lon": -73.9289076 }, + { "lat": 40.7016969, "lon": -73.9288253 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 477151468, + "bounds": { + "minlat": 40.7270883, + "minlon": -73.9766448, + "maxlat": 40.7273877, + "maxlon": -73.9764301 + }, + "nodes": [ + 13205966915, + 8309479455, + 13205966916, + 10778672288 + ], + "geometry": [ + { "lat": 40.7270883, "lon": -73.9766448 }, + { "lat": 40.7271499, "lon": -73.9766008 }, + { "lat": 40.7271957, "lon": -73.9765679 }, + { "lat": 40.7273877, "lon": -73.9764301 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 477151469, + "bounds": { + "minlat": 40.7248848, + "minlon": -73.9751696, + "maxlat": 40.7267520, + "maxlon": -73.9737990 + }, + "nodes": [ + 42430942, + 8309479445, + 12179582419, + 4931387076, + 274335455, + 4931387072, + 4301088455, + 4931387074, + 42446584, + 4931387077, + 4301088465, + 8309479564, + 3624790934 + ], + "geometry": [ + { "lat": 40.7248848, "lon": -73.9751696 }, + { "lat": 40.7249566, "lon": -73.9751173 }, + { "lat": 40.7250110, "lon": -73.9750777 }, + { "lat": 40.7254315, "lon": -73.9747612 }, + { "lat": 40.7254841, "lon": -73.9747230 }, + { "lat": 40.7255324, "lon": -73.9746879 }, + { "lat": 40.7258427, "lon": -73.9744625 }, + { "lat": 40.7260510, "lon": -73.9743112 }, + { "lat": 40.7261090, "lon": -73.9742690 }, + { "lat": 40.7261741, "lon": -73.9742215 }, + { "lat": 40.7263032, "lon": -73.9741270 }, + { "lat": 40.7266960, "lon": -73.9738400 }, + { "lat": 40.7267520, "lon": -73.9737990 } + ], + "tags": { + "alt_name:ko": "애비뉴 디", + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue D", + "name:ko": "애비뉴 D", + "name:ru": "Авеню D", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q2873601", + "wikipedia": "en:Avenue D (Manhattan)" + } +}, +{ + "type": "way", + "id": 477374247, + "bounds": { + "minlat": 40.7573266, + "minlon": -73.9857916, + "maxlat": 40.7578467, + "maxlon": -73.9854508 + }, + "nodes": [ + 3974095830, + 10224032642, + 9004888711, + 9004888713 + ], + "geometry": [ + { "lat": 40.7578467, "lon": -73.9854508 }, + { "lat": 40.7577358, "lon": -73.9855265 }, + { "lat": 40.7574840, "lon": -73.9856929 }, + { "lat": 40.7573266, "lon": -73.9857916 } + ], + "tags": { + "access": "yes", + "bicycle": "dismount", + "cycleway": "no", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "note": "closed to motor vehicles May 24, 2009", + "oneway": "no", + "surface": "paving_stones", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 477383295, + "bounds": { + "minlat": 40.7491887, + "minlon": -73.9884259, + "maxlat": 40.7499350, + "maxlon": -73.9879414 + }, + "nodes": [ + 6224278788, + 10258552948, + 6224277876, + 10258552904, + 10258552907, + 10258552906, + 4707484292, + 3857343070, + 10261389193, + 10261389194, + 10261389192, + 10261389191, + 10258552893, + 10258552894, + 10258552895, + 10258552896, + 10261389197, + 10261389196, + 10261389195, + 5005659777, + 9413881884, + 5005659586, + 3451199238, + 5005659587, + 2709702793, + 2709702780, + 2709702738, + 2709702722, + 2709702692, + 2709702690, + 10170593063, + 3857334399, + 10261389185, + 10261389184, + 10261389183, + 10261389188, + 4707482486, + 10261389187, + 10261389186, + 6224277837, + 10258552908, + 10258552909, + 10258552911, + 10258552910, + 3857343068, + 6224278788 + ], + "geometry": [ + { "lat": 40.7497109, "lon": -73.9879681 }, + { "lat": 40.7497793, "lon": -73.9879501 }, + { "lat": 40.7498075, "lon": -73.9879421 }, + { "lat": 40.7498122, "lon": -73.9879414 }, + { "lat": 40.7498163, "lon": -73.9879434 }, + { "lat": 40.7498193, "lon": -73.9879479 }, + { "lat": 40.7498657, "lon": -73.9880581 }, + { "lat": 40.7498878, "lon": -73.9881093 }, + { "lat": 40.7499144, "lon": -73.9881734 }, + { "lat": 40.7499217, "lon": -73.9881991 }, + { "lat": 40.7499277, "lon": -73.9882269 }, + { "lat": 40.7499327, "lon": -73.9882659 }, + { "lat": 40.7499350, "lon": -73.9883038 }, + { "lat": 40.7499171, "lon": -73.9882605 }, + { "lat": 40.7498995, "lon": -73.9882732 }, + { "lat": 40.7499174, "lon": -73.9883165 }, + { "lat": 40.7499133, "lon": -73.9883195 }, + { "lat": 40.7498774, "lon": -73.9883458 }, + { "lat": 40.7498221, "lon": -73.9882086 }, + { "lat": 40.7498369, "lon": -73.9881986 }, + { "lat": 40.7498502, "lon": -73.9881894 }, + { "lat": 40.7498326, "lon": -73.9881450 }, + { "lat": 40.7498190, "lon": -73.9881538 }, + { "lat": 40.7498083, "lon": -73.9881607 }, + { "lat": 40.7498040, "lon": -73.9881635 }, + { "lat": 40.7497464, "lon": -73.9881303 }, + { "lat": 40.7495932, "lon": -73.9881597 }, + { "lat": 40.7495041, "lon": -73.9881985 }, + { "lat": 40.7492886, "lon": -73.9883552 }, + { "lat": 40.7492845, "lon": -73.9884057 }, + { "lat": 40.7492671, "lon": -73.9884179 }, + { "lat": 40.7492554, "lon": -73.9884259 }, + { "lat": 40.7492443, "lon": -73.9884219 }, + { "lat": 40.7492346, "lon": -73.9884149 }, + { "lat": 40.7492263, "lon": -73.9884038 }, + { "lat": 40.7492133, "lon": -73.9883741 }, + { "lat": 40.7491890, "lon": -73.9883190 }, + { "lat": 40.7491887, "lon": -73.9883171 }, + { "lat": 40.7491892, "lon": -73.9883157 }, + { "lat": 40.7492168, "lon": -73.9882956 }, + { "lat": 40.7496161, "lon": -73.9880064 }, + { "lat": 40.7496359, "lon": -73.9879916 }, + { "lat": 40.7496465, "lon": -73.9879860 }, + { "lat": 40.7496599, "lon": -73.9879808 }, + { "lat": 40.7496781, "lon": -73.9879762 }, + { "lat": 40.7497109, "lon": -73.9879681 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 477823038, + "bounds": { + "minlat": 40.7644623, + "minlon": -73.9796200, + "maxlat": 40.7646852, + "maxlon": -73.9794599 + }, + "nodes": [ + 4544486783, + 11296226831, + 4544486782 + ], + "geometry": [ + { "lat": 40.7646852, "lon": -73.9794599 }, + { "lat": 40.7645206, "lon": -73.9795781 }, + { "lat": 40.7644623, "lon": -73.9796200 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 477873431, + "bounds": { + "minlat": 40.7504594, + "minlon": -73.9837558, + "maxlat": 40.7508169, + "maxlon": -73.9832746 + }, + "nodes": [ + 2709703110, + 2709703077, + 10169532618, + 9965135060, + 9965135059, + 10169532614, + 2709703008, + 2940531532, + 2709703031, + 2709703047, + 2709703051, + 2709703060, + 2709703074, + 2709703078, + 2709703097, + 2940531559, + 2940531562, + 2709703110 + ], + "geometry": [ + { "lat": 40.7508169, "lon": -73.9836349 }, + { "lat": 40.7506732, "lon": -73.9837397 }, + { "lat": 40.7506581, "lon": -73.9837482 }, + { "lat": 40.7506447, "lon": -73.9837558 }, + { "lat": 40.7504594, "lon": -73.9832985 }, + { "lat": 40.7504679, "lon": -73.9832920 }, + { "lat": 40.7504904, "lon": -73.9832746 }, + { "lat": 40.7505370, "lon": -73.9833848 }, + { "lat": 40.7505612, "lon": -73.9834422 }, + { "lat": 40.7506100, "lon": -73.9834066 }, + { "lat": 40.7506171, "lon": -73.9834234 }, + { "lat": 40.7506409, "lon": -73.9834061 }, + { "lat": 40.7506521, "lon": -73.9834351 }, + { "lat": 40.7506752, "lon": -73.9834183 }, + { "lat": 40.7507588, "lon": -73.9836189 }, + { "lat": 40.7507831, "lon": -73.9836012 }, + { "lat": 40.7507981, "lon": -73.9835904 }, + { "lat": 40.7508169, "lon": -73.9836349 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 477873432, + "bounds": { + "minlat": 40.7505707, + "minlon": -73.9798773, + "maxlat": 40.7506425, + "maxlon": -73.9798254 + }, + "nodes": [ + 4711654710, + 10171269373, + 4711654705 + ], + "geometry": [ + { "lat": 40.7506425, "lon": -73.9798254 }, + { "lat": 40.7506326, "lon": -73.9798325 }, + { "lat": 40.7505707, "lon": -73.9798773 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 477873433, + "bounds": { + "minlat": 40.7506696, + "minlon": -73.9803469, + "maxlat": 40.7507456, + "maxlon": -73.9802922 + }, + "nodes": [ + 4711654711, + 10171269376, + 4711654714 + ], + "geometry": [ + { "lat": 40.7506696, "lon": -73.9803469 }, + { "lat": 40.7506861, "lon": -73.9803351 }, + { "lat": 40.7507456, "lon": -73.9802922 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 478478415, + "bounds": { + "minlat": 40.7759320, + "minlon": -73.9471206, + "maxlat": 40.7788741, + "maxlon": -73.9449784 + }, + "nodes": [ + 9178967047, + 7135164271, + 42428047, + 7135169188, + 7834030810, + 7834030832, + 7135164275, + 42428045, + 7135164261, + 7834025512, + 7834030816, + 7834025578, + 42428043, + 7834025536, + 7834025574, + 42428039, + 7834030808, + 7834025576, + 42428037 + ], + "geometry": [ + { "lat": 40.7788741, "lon": -73.9449784 }, + { "lat": 40.7785458, "lon": -73.9452175 }, + { "lat": 40.7784878, "lon": -73.9452597 }, + { "lat": 40.7784372, "lon": -73.9452965 }, + { "lat": 40.7781898, "lon": -73.9454766 }, + { "lat": 40.7779623, "lon": -73.9456423 }, + { "lat": 40.7779232, "lon": -73.9456708 }, + { "lat": 40.7778740, "lon": -73.9457066 }, + { "lat": 40.7778040, "lon": -73.9457576 }, + { "lat": 40.7776516, "lon": -73.9458685 }, + { "lat": 40.7774272, "lon": -73.9460319 }, + { "lat": 40.7772950, "lon": -73.9461282 }, + { "lat": 40.7772288, "lon": -73.9461764 }, + { "lat": 40.7771765, "lon": -73.9462145 }, + { "lat": 40.7766680, "lon": -73.9465847 }, + { "lat": 40.7766022, "lon": -73.9466326 }, + { "lat": 40.7765534, "lon": -73.9466681 }, + { "lat": 40.7760318, "lon": -73.9470480 }, + { "lat": 40.7759320, "lon": -73.9471206 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 478478416, + "bounds": { + "minlat": 40.7749461, + "minlon": -73.9471206, + "maxlat": 40.7759320, + "maxlon": -73.9447748 + }, + "nodes": [ + 42428037, + 7834030803, + 42429346, + 6352970540, + 42429348 + ], + "geometry": [ + { "lat": 40.7759320, "lon": -73.9471206 }, + { "lat": 40.7758785, "lon": -73.9469945 }, + { "lat": 40.7751542, "lon": -73.9452696 }, + { "lat": 40.7749968, "lon": -73.9448966 }, + { "lat": 40.7749461, "lon": -73.9447748 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 478878249, + "bounds": { + "minlat": 40.8526141, + "minlon": -73.9192979, + "maxlat": 40.8528405, + "maxlon": -73.9186594 + }, + "nodes": [ + 42743075, + 595759555, + 42743072 + ], + "geometry": [ + { "lat": 40.8528405, "lon": -73.9186594 }, + { "lat": 40.8527699, "lon": -73.9188442 }, + { "lat": 40.8526141, "lon": -73.9192979 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 478878250, + "bounds": { + "minlat": 40.8528405, + "minlon": -73.9186594, + "maxlat": 40.8529880, + "maxlon": -73.9183412 + }, + "nodes": [ + 4720620198, + 2384257310, + 12697058567, + 9918264493, + 9918264494, + 42743075 + ], + "geometry": [ + { "lat": 40.8529880, "lon": -73.9183412 }, + { "lat": 40.8529612, "lon": -73.9183878 }, + { "lat": 40.8529339, "lon": -73.9184390 }, + { "lat": 40.8529255, "lon": -73.9184547 }, + { "lat": 40.8528788, "lon": -73.9185560 }, + { "lat": 40.8528405, "lon": -73.9186594 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 478878251, + "bounds": { + "minlat": 40.8527776, + "minlon": -73.9183412, + "maxlat": 40.8529880, + "maxlon": -73.9180159 + }, + "nodes": [ + 4720620198, + 2808837093, + 4720620197 + ], + "geometry": [ + { "lat": 40.8529880, "lon": -73.9183412 }, + { "lat": 40.8528113, "lon": -73.9180680 }, + { "lat": 40.8527776, "lon": -73.9180159 } + ], + "tags": { + "highway": "secondary", + "name": "West Tremont Avenue", + "oneway": "yes", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 478878252, + "bounds": { + "minlat": 40.8526766, + "minlon": -73.9179963, + "maxlat": 40.8528701, + "maxlon": -73.9178649 + }, + "nodes": [ + 4720620195, + 9918264487, + 4720620202 + ], + "geometry": [ + { "lat": 40.8526766, "lon": -73.9178649 }, + { "lat": 40.8527936, "lon": -73.9179382 }, + { "lat": 40.8528701, "lon": -73.9179963 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "name": "West Tremont Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 478878254, + "bounds": { + "minlat": 40.8526766, + "minlon": -73.9180159, + "maxlat": 40.8527776, + "maxlon": -73.9178649 + }, + "nodes": [ + 4720620197, + 4720620195 + ], + "geometry": [ + { "lat": 40.8527776, "lon": -73.9180159 }, + { "lat": 40.8526766, "lon": -73.9178649 } + ], + "tags": { + "highway": "secondary", + "name": "West Tremont Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 478878256, + "bounds": { + "minlat": 40.8532812, + "minlon": -73.9180158, + "maxlat": 40.8548640, + "maxlon": -73.9168160 + }, + "nodes": [ + 42743082, + 2808842337, + 2329195151, + 7476260856, + 7476260868, + 7476260846, + 4720620196 + ], + "geometry": [ + { "lat": 40.8548640, "lon": -73.9168160 }, + { "lat": 40.8547914, "lon": -73.9168557 }, + { "lat": 40.8545920, "lon": -73.9169681 }, + { "lat": 40.8544374, "lon": -73.9170875 }, + { "lat": 40.8541302, "lon": -73.9174509 }, + { "lat": 40.8538263, "lon": -73.9177099 }, + { "lat": 40.8532812, "lon": -73.9180158 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 478878257, + "bounds": { + "minlat": 40.8528701, + "minlon": -73.9182204, + "maxlat": 40.8530760, + "maxlon": -73.9179963 + }, + "nodes": [ + 4720620202, + 9918264488, + 12697058566, + 9918264489, + 9918264490, + 9918264491, + 42743079 + ], + "geometry": [ + { "lat": 40.8528701, "lon": -73.9179963 }, + { "lat": 40.8529853, "lon": -73.9180960 }, + { "lat": 40.8530107, "lon": -73.9181181 }, + { "lat": 40.8530219, "lon": -73.9181278 }, + { "lat": 40.8530407, "lon": -73.9181546 }, + { "lat": 40.8530593, "lon": -73.9181861 }, + { "lat": 40.8530760, "lon": -73.9182204 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West Tremont Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 478878260, + "bounds": { + "minlat": 40.8504067, + "minlon": -73.9069824, + "maxlat": 40.8504660, + "maxlon": -73.9069227 + }, + "nodes": [ + 2028361261, + 2028361285 + ], + "geometry": [ + { "lat": 40.8504660, "lon": -73.9069227 }, + { "lat": 40.8504067, "lon": -73.9069824 } + ], + "tags": { + "highway": "residential", + "name": "Creston Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Creston", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 478878262, + "bounds": { + "minlat": 40.8503855, + "minlon": -73.9070040, + "maxlat": 40.8504067, + "maxlon": -73.9069824 + }, + "nodes": [ + 2028361285, + 2028361257 + ], + "geometry": [ + { "lat": 40.8504067, "lon": -73.9069824 }, + { "lat": 40.8503855, "lon": -73.9070040 } + ], + "tags": { + "highway": "residential", + "name": "Creston Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Creston", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 478878263, + "bounds": { + "minlat": 40.8494950, + "minlon": -73.9070603, + "maxlat": 40.8503289, + "maxlon": -73.9062236 + }, + "nodes": [ + 2028361251, + 9920174011, + 9920174009, + 2028361252 + ], + "geometry": [ + { "lat": 40.8503289, "lon": -73.9070603 }, + { "lat": 40.8502992, "lon": -73.9070344 }, + { "lat": 40.8495539, "lon": -73.9062800 }, + { "lat": 40.8494950, "lon": -73.9062236 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 478935768, + "bounds": { + "minlat": 40.8513419, + "minlon": -73.9159597, + "maxlat": 40.8516590, + "maxlon": -73.9156164 + }, + "nodes": [ + 4721141758, + 4721141760, + 42781109 + ], + "geometry": [ + { "lat": 40.8516590, "lon": -73.9156164 }, + { "lat": 40.8514888, "lon": -73.9158189 }, + { "lat": 40.8513419, "lon": -73.9159597 } + ], + "tags": { + "highway": "residential", + "name": "Andrews Avenue South", + "name:etymology:wikidata": "Q56000453", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Andrews", + "tiger:name_direction_suffix": "S", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 478935769, + "bounds": { + "minlat": 40.8494489, + "minlon": -73.9184100, + "maxlat": 40.8513419, + "maxlon": -73.9159597 + }, + "nodes": [ + 42781109, + 10173053999, + 4721141759, + 12055955041, + 12055955040, + 2808787501, + 12055955049 + ], + "geometry": [ + { "lat": 40.8513419, "lon": -73.9159597 }, + { "lat": 40.8512977, "lon": -73.9159948 }, + { "lat": 40.8511494, "lon": -73.9161155 }, + { "lat": 40.8497821, "lon": -73.9181206 }, + { "lat": 40.8497577, "lon": -73.9181529 }, + { "lat": 40.8497301, "lon": -73.9181800 }, + { "lat": 40.8494489, "lon": -73.9184100 } + ], + "tags": { + "highway": "residential", + "name": "Andrews Avenue South", + "name:etymology:wikidata": "Q56000453", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Andrews", + "tiger:name_direction_suffix": "S", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 479642033, + "bounds": { + "minlat": 40.7270883, + "minlon": -73.9835360, + "maxlat": 40.7300191, + "maxlon": -73.9766448 + }, + "nodes": [ + 42446547, + 8309479587, + 5147808598, + 8309479547, + 42446552, + 8309479544, + 8309479487, + 42446562, + 8309479484, + 4502505659, + 13234335171, + 13205966917, + 8309479457, + 13205966915 + ], + "geometry": [ + { "lat": 40.7300191, "lon": -73.9835360 }, + { "lat": 40.7299695, "lon": -73.9834185 }, + { "lat": 40.7296811, "lon": -73.9827351 }, + { "lat": 40.7291270, "lon": -73.9814222 }, + { "lat": 40.7290860, "lon": -73.9813250 }, + { "lat": 40.7290453, "lon": -73.9812283 }, + { "lat": 40.7281370, "lon": -73.9790715 }, + { "lat": 40.7281060, "lon": -73.9789980 }, + { "lat": 40.7280774, "lon": -73.9789319 }, + { "lat": 40.7278864, "lon": -73.9784903 }, + { "lat": 40.7277972, "lon": -73.9782783 }, + { "lat": 40.7271858, "lon": -73.9768280 }, + { "lat": 40.7271482, "lon": -73.9767387 }, + { "lat": 40.7270883, "lon": -73.9766448 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "use_sidepath", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 12th Street", + "name:ru": "Восточная 12-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 479642034, + "bounds": { + "minlat": 40.7287460, + "minlon": -73.9830644, + "maxlat": 40.7306534, + "maxlon": -73.9785360 + }, + "nodes": [ + 42436947, + 8309479479, + 8309479553, + 42436944, + 8309479556, + 8309479577, + 42436943 + ], + "geometry": [ + { "lat": 40.7287460, "lon": -73.9785360 }, + { "lat": 40.7287793, "lon": -73.9786152 }, + { "lat": 40.7296837, "lon": -73.9807600 }, + { "lat": 40.7297250, "lon": -73.9808580 }, + { "lat": 40.7297711, "lon": -73.9809684 }, + { "lat": 40.7306056, "lon": -73.9829507 }, + { "lat": 40.7306534, "lon": -73.9830644 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 13th Street", + "name:ru": "Восточная 13-я стрит", + "name_1": "East 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 479642035, + "bounds": { + "minlat": 40.7264650, + "minlon": -73.9839987, + "maxlat": 40.7293730, + "maxlon": -73.9770845 + }, + "nodes": [ + 42455013, + 8309479429, + 8309479492, + 42455007, + 8309479495, + 8309479499, + 42454997, + 8309479502, + 9710553075, + 5147808597, + 8309479281, + 42454994 + ], + "geometry": [ + { "lat": 40.7264650, "lon": -73.9770845 }, + { "lat": 40.7265181, "lon": -73.9772113 }, + { "lat": 40.7274370, "lon": -73.9793951 }, + { "lat": 40.7274680, "lon": -73.9794690 }, + { "lat": 40.7275027, "lon": -73.9795513 }, + { "lat": 40.7284037, "lon": -73.9816895 }, + { "lat": 40.7284460, "lon": -73.9817900 }, + { "lat": 40.7284874, "lon": -73.9818887 }, + { "lat": 40.7288794, "lon": -73.9828227 }, + { "lat": 40.7290659, "lon": -73.9832671 }, + { "lat": 40.7293229, "lon": -73.9838793 }, + { "lat": 40.7293730, "lon": -73.9839987 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 11th Street", + "name:ru": "Восточная 11-я стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 479642036, + "bounds": { + "minlat": 40.7278454, + "minlon": -73.9844432, + "maxlat": 40.7287790, + "maxlon": -73.9822380 + }, + "nodes": [ + 42430903, + 8309479507, + 12179582402, + 4216045847, + 42430914 + ], + "geometry": [ + { "lat": 40.7287790, "lon": -73.9844432 }, + { "lat": 40.7287233, "lon": -73.9843179 }, + { "lat": 40.7279132, "lon": -73.9823984 }, + { "lat": 40.7278894, "lon": -73.9823425 }, + { "lat": 40.7278454, "lon": -73.9822380 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 10th Street", + "name:ru": "Восточная 10-я стрит", + "name_1": "East 10 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 479642037, + "bounds": { + "minlat": 40.7272732, + "minlon": -73.9848673, + "maxlat": 40.7282048, + "maxlon": -73.9826536 + }, + "nodes": [ + 42449023, + 4216045804, + 12179582424, + 8475999060, + 8309479514, + 42449021 + ], + "geometry": [ + { "lat": 40.7272732, "lon": -73.9826536 }, + { "lat": 40.7273186, "lon": -73.9827605 }, + { "lat": 40.7281182, "lon": -73.9846587 }, + { "lat": 40.7281334, "lon": -73.9846929 }, + { "lat": 40.7281485, "lon": -73.9847301 }, + { "lat": 40.7282048, "lon": -73.9848673 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 9th Street", + "name:ru": "Восточная 9-я стрит", + "name_1": "East 9 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 479642038, + "bounds": { + "minlat": 40.7266660, + "minlon": -73.9853070, + "maxlat": 40.7275990, + "maxlon": -73.9830900 + }, + "nodes": [ + 4012724171, + 8309479523, + 4216045849, + 42434148 + ], + "geometry": [ + { "lat": 40.7275990, "lon": -73.9853070 }, + { "lat": 40.7275436, "lon": -73.9851754 }, + { "lat": 40.7267115, "lon": -73.9831983 }, + { "lat": 40.7266660, "lon": -73.9830900 } + ], + "tags": { + "alt_name": "East 8th Street", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Saint Marks Place", + "name:etymology:wikidata": "Q7589922", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2142493", + "wikipedia": "en:8th Street and St. Mark's Place" + } +}, +{ + "type": "way", + "id": 479642039, + "bounds": { + "minlat": 40.7269880, + "minlon": -73.9881196, + "maxlat": 40.7279851, + "maxlon": -73.9857530 + }, + "nodes": [ + 42434205, + 3834459535, + 8309479536, + 8309479212, + 4376122105, + 42434201 + ], + "geometry": [ + { "lat": 40.7269880, "lon": -73.9857530 }, + { "lat": 40.7270310, "lon": -73.9858541 }, + { "lat": 40.7270468, "lon": -73.9858913 }, + { "lat": 40.7279325, "lon": -73.9879950 }, + { "lat": 40.7279506, "lon": -73.9880379 }, + { "lat": 40.7279851, "lon": -73.9881196 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 7th Street", + "name:ru": "Восточная 7-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 479642040, + "bounds": { + "minlat": 40.7264090, + "minlon": -73.9885349, + "maxlat": 40.7274076, + "maxlon": -73.9861760 + }, + "nodes": [ + 42442851, + 4376122104, + 3420766628, + 7977873295, + 3834459544, + 42444827 + ], + "geometry": [ + { "lat": 40.7274076, "lon": -73.9885349 }, + { "lat": 40.7273770, "lon": -73.9884626 }, + { "lat": 40.7273586, "lon": -73.9884193 }, + { "lat": 40.7264657, "lon": -73.9863098 }, + { "lat": 40.7264540, "lon": -73.9862822 }, + { "lat": 40.7264090, "lon": -73.9861760 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 6th Street", + "name:ru": "Восточная 6-я стрит", + "name_1": "East 6 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 479642042, + "bounds": { + "minlat": 40.7242664, + "minlon": -73.9870530, + "maxlat": 40.7252030, + "maxlon": -73.9848308 + }, + "nodes": [ + 42455867, + 7977873309, + 6031953401, + 8127531872, + 9047347173, + 8530390321, + 8127531874, + 7977832453, + 42455051 + ], + "geometry": [ + { "lat": 40.7252030, "lon": -73.9870530 }, + { "lat": 40.7251445, "lon": -73.9869177 }, + { "lat": 40.7250677, "lon": -73.9867400 }, + { "lat": 40.7249288, "lon": -73.9864121 }, + { "lat": 40.7248995, "lon": -73.9863431 }, + { "lat": 40.7247961, "lon": -73.9860939 }, + { "lat": 40.7245248, "lon": -73.9854481 }, + { "lat": 40.7243128, "lon": -73.9849416 }, + { "lat": 40.7242664, "lon": -73.9848308 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 4th Street", + "name:ru": "Восточная 4-я стрит", + "name_1": "East 4 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:left:orientation": "perpendicular", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 479642043, + "bounds": { + "minlat": 40.7216770, + "minlon": -73.9875020, + "maxlat": 40.7245840, + "maxlon": -73.9806046 + }, + "nodes": [ + 42437349, + 8309479341, + 7977832472, + 42437346, + 7977832475, + 7977832446, + 42437343, + 7977832449, + 9047347177, + 8530390318, + 8309479300, + 42437339 + ], + "geometry": [ + { "lat": 40.7216770, "lon": -73.9806046 }, + { "lat": 40.7217135, "lon": -73.9806912 }, + { "lat": 40.7226424, "lon": -73.9828902 }, + { "lat": 40.7226710, "lon": -73.9829640 }, + { "lat": 40.7226995, "lon": -73.9830320 }, + { "lat": 40.7236026, "lon": -73.9851757 }, + { "lat": 40.7236472, "lon": -73.9852818 }, + { "lat": 40.7236938, "lon": -73.9853922 }, + { "lat": 40.7242787, "lon": -73.9867786 }, + { "lat": 40.7245054, "lon": -73.9873157 }, + { "lat": 40.7245263, "lon": -73.9873652 }, + { "lat": 40.7245840, "lon": -73.9875020 } + ], + "tags": { + "alt_name:ko": "이스트 3번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "20 mph", + "name": "East 3rd Street", + "name:ko": "이스트 3rd 스트리트", + "name:ru": "Восточная 3-я стрит", + "name_1": "East 3 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 479735243, + "bounds": { + "minlat": 40.7988982, + "minlon": -74.0012286, + "maxlat": 40.7992819, + "maxlon": -74.0009194 + }, + "nodes": [ + 103862641, + 4727162679, + 103879083, + 4727867613, + 4727867607, + 4727867614, + 4727867608, + 103879081 + ], + "geometry": [ + { "lat": 40.7988982, "lon": -74.0012286 }, + { "lat": 40.7989321, "lon": -74.0010840 }, + { "lat": 40.7991096, "lon": -74.0009367 }, + { "lat": 40.7991464, "lon": -74.0009195 }, + { "lat": 40.7991733, "lon": -74.0009194 }, + { "lat": 40.7991999, "lon": -74.0009272 }, + { "lat": 40.7992281, "lon": -74.0009433 }, + { "lat": 40.7992819, "lon": -74.0009907 } + ], + "tags": { + "highway": "residential", + "name": "Park Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 479735244, + "bounds": { + "minlat": 40.7988982, + "minlon": -74.0012286, + "maxlat": 40.7992819, + "maxlon": -74.0009907 + }, + "nodes": [ + 103879081, + 4727867609, + 103862641 + ], + "geometry": [ + { "lat": 40.7992819, "lon": -74.0009907 }, + { "lat": 40.7989907, "lon": -74.0012146 }, + { "lat": 40.7988982, "lon": -74.0012286 } + ], + "tags": { + "highway": "residential", + "name": "Park Drive", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 479735252, + "bounds": { + "minlat": 40.8009158, + "minlon": -74.0044950, + "maxlat": 40.8015244, + "maxlon": -74.0034811 + }, + "nodes": [ + 4727867648, + 4727867649, + 4727867650, + 4727867656, + 7986873428, + 4727867651, + 4727867652, + 4727867653, + 4727867657, + 4727867654, + 4727867635, + 4727867655, + 7986873435, + 4727867643 + ], + "geometry": [ + { "lat": 40.8009158, "lon": -74.0044950 }, + { "lat": 40.8011454, "lon": -74.0042791 }, + { "lat": 40.8012156, "lon": -74.0041917 }, + { "lat": 40.8012576, "lon": -74.0041140 }, + { "lat": 40.8012789, "lon": -74.0040561 }, + { "lat": 40.8012927, "lon": -74.0040184 }, + { "lat": 40.8013224, "lon": -74.0039247 }, + { "lat": 40.8013487, "lon": -74.0038283 }, + { "lat": 40.8013689, "lon": -74.0037313 }, + { "lat": 40.8013885, "lon": -74.0036512 }, + { "lat": 40.8014146, "lon": -74.0036041 }, + { "lat": 40.8014493, "lon": -74.0035548 }, + { "lat": 40.8014869, "lon": -74.0035180 }, + { "lat": 40.8015244, "lon": -74.0034811 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 479735253, + "bounds": { + "minlat": 40.8007685, + "minlon": -74.0034243, + "maxlat": 40.8014895, + "maxlon": -74.0023451 + }, + "nodes": [ + 4727867658, + 103879090, + 4727867659, + 103879091, + 103859554, + 1995128558 + ], + "geometry": [ + { "lat": 40.8014895, "lon": -74.0034243 }, + { "lat": 40.8012797, "lon": -74.0032064 }, + { "lat": 40.8011245, "lon": -74.0030233 }, + { "lat": 40.8009910, "lon": -74.0028260 }, + { "lat": 40.8008330, "lon": -74.0024930 }, + { "lat": 40.8007685, "lon": -74.0023451 } + ], + "tags": { + "highway": "residential", + "name": "Park Drive", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 480112475, + "bounds": { + "minlat": 40.7381289, + "minlon": -74.0041378, + "maxlat": 40.7381445, + "maxlon": -74.0020422 + }, + "nodes": [ + 42432211, + 6213315379, + 10305048566, + 8307463699, + 42454742, + 8307463705, + 42435581 + ], + "geometry": [ + { "lat": 40.7381445, "lon": -74.0020422 }, + { "lat": 40.7381431, "lon": -74.0021471 }, + { "lat": 40.7381292, "lon": -74.0033808 }, + { "lat": 40.7381290, "lon": -74.0038098 }, + { "lat": 40.7381290, "lon": -74.0038740 }, + { "lat": 40.7381289, "lon": -74.0040128 }, + { "lat": 40.7381289, "lon": -74.0041378 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Jane Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 480112476, + "bounds": { + "minlat": 40.7375433, + "minlon": -74.0047770, + "maxlat": 40.7376868, + "maxlon": -74.0017550 + }, + "nodes": [ + 42435578, + 8307463726, + 13447372478, + 42439078, + 13447372467, + 5849907289, + 8262308352, + 42432208 + ], + "geometry": [ + { "lat": 40.7375508, "lon": -74.0047770 }, + { "lat": 40.7375515, "lon": -74.0046455 }, + { "lat": 40.7375447, "lon": -74.0039441 }, + { "lat": 40.7375440, "lon": -74.0038645 }, + { "lat": 40.7375433, "lon": -74.0037949 }, + { "lat": 40.7376868, "lon": -74.0019143 }, + { "lat": 40.7376812, "lon": -74.0018796 }, + { "lat": 40.7376609, "lon": -74.0017550 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 12th Street", + "name:ru": "Западная 12-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 480112477, + "bounds": { + "minlat": 40.7375497, + "minlon": -74.0057088, + "maxlat": 40.7375527, + "maxlon": -74.0047770 + }, + "nodes": [ + 42436423, + 8307463780, + 8307463731, + 42435578 + ], + "geometry": [ + { "lat": 40.7375527, "lon": -74.0057088 }, + { "lat": 40.7375521, "lon": -74.0055643 }, + { "lat": 40.7375497, "lon": -74.0049841 }, + { "lat": 40.7375508, "lon": -74.0047770 } + ], + "tags": { + "hgv": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 12th Street", + "name:ru": "Западная 12-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 480112478, + "bounds": { + "minlat": 40.7353263, + "minlon": -74.0097744, + "maxlat": 40.7358563, + "maxlon": -74.0059343 + }, + "nodes": [ + 42436407, + 8307463850, + 12162483578, + 11401831101, + 42436142, + 11401831103, + 12162436914, + 8307642149, + 42449089, + 8307642152, + 12162436911 + ], + "geometry": [ + { "lat": 40.7358563, "lon": -74.0059343 }, + { "lat": 40.7358346, "lon": -74.0060868 }, + { "lat": 40.7357572, "lon": -74.0066300 }, + { "lat": 40.7357493, "lon": -74.0066858 }, + { "lat": 40.7357351, "lon": -74.0067852 }, + { "lat": 40.7357172, "lon": -74.0069111 }, + { "lat": 40.7355375, "lon": -74.0082163 }, + { "lat": 40.7355288, "lon": -74.0082826 }, + { "lat": 40.7355127, "lon": -74.0083859 }, + { "lat": 40.7355017, "lon": -74.0084669 }, + { "lat": 40.7353263, "lon": -74.0097744 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 11th Street", + "name:ru": "Западная 11-я стрит", + "name_1": "West 11 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 480112479, + "bounds": { + "minlat": 40.7357944, + "minlon": -74.0015452, + "maxlat": 40.7359260, + "maxlon": -74.0007220 + }, + "nodes": [ + 42430824, + 8262308498, + 9297714755, + 11062719788, + 42432201 + ], + "geometry": [ + { "lat": 40.7357944, "lon": -74.0015452 }, + { "lat": 40.7358236, "lon": -74.0013858 }, + { "lat": 40.7358994, "lon": -74.0008883 }, + { "lat": 40.7359096, "lon": -74.0008247 }, + { "lat": 40.7359260, "lon": -74.0007220 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Perry Street", + "name:etymology:wikidata": "Q580513", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 480112480, + "bounds": { + "minlat": 40.7350811, + "minlon": -74.0019681, + "maxlat": 40.7353213, + "maxlon": -74.0003548 + }, + "nodes": [ + 42432199, + 8307642060, + 8764758193, + 9791390465, + 42433269, + 11591857716, + 9791390464, + 42430813 + ], + "geometry": [ + { "lat": 40.7353213, "lon": -74.0003548 }, + { "lat": 40.7352925, "lon": -74.0004599 }, + { "lat": 40.7351506, "lon": -74.0014473 }, + { "lat": 40.7351412, "lon": -74.0015156 }, + { "lat": 40.7351323, "lon": -74.0015800 }, + { "lat": 40.7351233, "lon": -74.0016451 }, + { "lat": 40.7351004, "lon": -74.0018217 }, + { "lat": 40.7350811, "lon": -74.0019681 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Charles Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29167331", + "wikipedia": "en:Charles Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 480112481, + "bounds": { + "minlat": 40.7343413, + "minlon": -74.0023950, + "maxlat": 40.7346272, + "maxlon": -74.0004913 + }, + "nodes": [ + 42430811, + 8307642089, + 42433264, + 10695513187 + ], + "geometry": [ + { "lat": 40.7343413, "lon": -74.0023950 }, + { "lat": 40.7343652, "lon": -74.0022251 }, + { "lat": 40.7344915, "lon": -74.0013916 }, + { "lat": 40.7346272, "lon": -74.0004913 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 10th Street", + "name:ru": "Западная 10-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 480112482, + "bounds": { + "minlat": 40.7328774, + "minlon": -74.0075136, + "maxlat": 40.7330707, + "maxlon": -74.0063829 + }, + "nodes": [ + 42436393, + 11609529472, + 12162494523, + 8307641998, + 42436129 + ], + "geometry": [ + { "lat": 40.7330707, "lon": -74.0063829 }, + { "lat": 40.7330560, "lon": -74.0065357 }, + { "lat": 40.7329310, "lon": -74.0073324 }, + { "lat": 40.7329212, "lon": -74.0073942 }, + { "lat": 40.7328774, "lon": -74.0075136 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Christopher Street", + "name:ru": "Кристофер-стрит", + "oneway": "yes", + "parking:lane:right": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1086990", + "wikipedia": "en:Christopher Street" + } +}, +{ + "type": "way", + "id": 480112483, + "bounds": { + "minlat": 40.7311289, + "minlon": -74.0042257, + "maxlat": 40.7314683, + "maxlon": -74.0031289 + }, + "nodes": [ + 42430791, + 8214331028, + 8309469104, + 42431785 + ], + "geometry": [ + { "lat": 40.7311289, "lon": -74.0042257 }, + { "lat": 40.7311839, "lon": -74.0040479 }, + { "lat": 40.7314470, "lon": -74.0031977 }, + { "lat": 40.7314683, "lon": -74.0031289 } + ], + "tags": { + "highway": "residential", + "name": "Morton Street", + "name:etymology:wikidata": "Q6119027", + "name:ru": "Мортон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 480112484, + "bounds": { + "minlat": 40.7294927, + "minlon": -74.0083973, + "maxlat": 40.7296386, + "maxlon": -74.0069526 + }, + "nodes": [ + 42436115, + 8214320077, + 8214320088, + 42436374 + ], + "geometry": [ + { "lat": 40.7296386, "lon": -74.0083973 }, + { "lat": 40.7296360, "lon": -74.0082930 }, + { "lat": 40.7295207, "lon": -74.0070899 }, + { "lat": 40.7294927, "lon": -74.0069526 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clarkson Street", + "name:etymology:wikidata": "Q6790308", + "name:ko": "클락슨 스트리트", + "name:ru": "Кларксон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 480680365, + "bounds": { + "minlat": 40.8131443, + "minlon": -73.9303513, + "maxlat": 40.8133235, + "maxlon": -73.9299839 + }, + "nodes": [ + 5214547507, + 12162704283, + 12162704280, + 529280909 + ], + "geometry": [ + { "lat": 40.8131443, "lon": -73.9299839 }, + { "lat": 40.8132861, "lon": -73.9302747 }, + { "lat": 40.8133004, "lon": -73.9303035 }, + { "lat": 40.8133235, "lon": -73.9303513 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 480680366, + "bounds": { + "minlat": 40.8134873, + "minlon": -73.9313441, + "maxlat": 40.8138982, + "maxlon": -73.9312043 + }, + "nodes": [ + 4736480526, + 4736480525 + ], + "geometry": [ + { "lat": 40.8138982, "lon": -73.9312043 }, + { "lat": 40.8134873, "lon": -73.9313441 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "-1", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "paved", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 480680367, + "bounds": { + "minlat": 40.8110718, + "minlon": -73.9316847, + "maxlat": 40.8134873, + "maxlon": -73.9313441 + }, + "nodes": [ + 4736480525, + 529054782, + 9163775378, + 529054785, + 2408974708, + 2408974722, + 529054789, + 9163775377, + 529054798, + 2408974723, + 9163775376, + 529054805, + 529054815, + 9163775375, + 2408974710, + 529054816, + 529054827, + 529054834, + 2408974717 + ], + "geometry": [ + { "lat": 40.8134873, "lon": -73.9313441 }, + { "lat": 40.8129021, "lon": -73.9315447 }, + { "lat": 40.8127985, "lon": -73.9315802 }, + { "lat": 40.8126869, "lon": -73.9316115 }, + { "lat": 40.8125918, "lon": -73.9316358 }, + { "lat": 40.8124697, "lon": -73.9316601 }, + { "lat": 40.8123611, "lon": -73.9316744 }, + { "lat": 40.8122489, "lon": -73.9316835 }, + { "lat": 40.8121425, "lon": -73.9316847 }, + { "lat": 40.8120206, "lon": -73.9316810 }, + { "lat": 40.8119103, "lon": -73.9316694 }, + { "lat": 40.8118028, "lon": -73.9316519 }, + { "lat": 40.8117010, "lon": -73.9316306 }, + { "lat": 40.8115908, "lon": -73.9316003 }, + { "lat": 40.8114826, "lon": -73.9315612 }, + { "lat": 40.8113836, "lon": -73.9315221 }, + { "lat": 40.8112771, "lon": -73.9314719 }, + { "lat": 40.8111727, "lon": -73.9314159 }, + { "lat": 40.8110718, "lon": -73.9313556 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 480680370, + "bounds": { + "minlat": 40.8134360, + "minlon": -73.9312217, + "maxlat": 40.8138400, + "maxlon": -73.9310807 + }, + "nodes": [ + 4736480527, + 4736480528 + ], + "geometry": [ + { "lat": 40.8134360, "lon": -73.9312217 }, + { "lat": 40.8138400, "lon": -73.9310807 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "-1", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "paved", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 480680373, + "bounds": { + "minlat": 40.8138400, + "minlon": -73.9310807, + "maxlat": 40.8154761, + "maxlon": -73.9307786 + }, + "nodes": [ + 4736480528, + 529049393, + 529049394, + 9163819536, + 529049395, + 9163819537, + 9163819538, + 529049396, + 9163819539, + 529049397, + 9163819540, + 529049398 + ], + "geometry": [ + { "lat": 40.8138400, "lon": -73.9310807 }, + { "lat": 40.8143916, "lon": -73.9308997 }, + { "lat": 40.8144935, "lon": -73.9308694 }, + { "lat": 40.8146012, "lon": -73.9308437 }, + { "lat": 40.8147103, "lon": -73.9308240 }, + { "lat": 40.8148219, "lon": -73.9308056 }, + { "lat": 40.8149318, "lon": -73.9307933 }, + { "lat": 40.8150460, "lon": -73.9307824 }, + { "lat": 40.8151539, "lon": -73.9307786 }, + { "lat": 40.8152674, "lon": -73.9307797 }, + { "lat": 40.8153755, "lon": -73.9307847 }, + { "lat": 40.8154761, "lon": -73.9307916 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 480680380, + "bounds": { + "minlat": 40.8137894, + "minlon": -73.9313758, + "maxlat": 40.8144978, + "maxlon": -73.9311495 + }, + "nodes": [ + 529292924, + 7085574266, + 13004501584, + 595801192, + 13006313527, + 2482581651, + 2482581646 + ], + "geometry": [ + { "lat": 40.8144978, "lon": -73.9311495 }, + { "lat": 40.8142196, "lon": -73.9312418 }, + { "lat": 40.8139399, "lon": -73.9313347 }, + { "lat": 40.8139053, "lon": -73.9313462 }, + { "lat": 40.8138955, "lon": -73.9313485 }, + { "lat": 40.8138584, "lon": -73.9313574 }, + { "lat": 40.8137894, "lon": -73.9313758 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A15", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Major Deegan", + "tiger:name_base_1": "I-87", + "tiger:name_type": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "left|through|right" + } +}, +{ + "type": "way", + "id": 480680381, + "bounds": { + "minlat": 40.8439090, + "minlon": -73.9241280, + "maxlat": 40.8442180, + "maxlon": -73.9236268 + }, + "nodes": [ + 42769873, + 60921094, + 9910779427, + 12045204149, + 9910779426, + 9910779428, + 12045204150, + 42734314 + ], + "geometry": [ + { "lat": 40.8439090, "lon": -73.9241280 }, + { "lat": 40.8441339, "lon": -73.9238476 }, + { "lat": 40.8441544, "lon": -73.9238141 }, + { "lat": 40.8441710, "lon": -73.9237813 }, + { "lat": 40.8441858, "lon": -73.9237492 }, + { "lat": 40.8441985, "lon": -73.9237103 }, + { "lat": 40.8442083, "lon": -73.9236724 }, + { "lat": 40.8442180, "lon": -73.9236268 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "University Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Dr Martin Luther King Jr", + "tiger:name_base_1": "University", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 480680383, + "bounds": { + "minlat": 40.8421541, + "minlon": -73.9422847, + "maxlat": 40.8434507, + "maxlon": -73.9416342 + }, + "nodes": [ + 42427143, + 7604384386, + 7127353130, + 7127353103, + 7127353076, + 7127353050, + 7604384398, + 42427139, + 9567002589, + 5297656640, + 9566927313, + 42427136 + ], + "geometry": [ + { "lat": 40.8434507, "lon": -73.9416342 }, + { "lat": 40.8433852, "lon": -73.9416840 }, + { "lat": 40.8432390, "lon": -73.9418021 }, + { "lat": 40.8431834, "lon": -73.9418410 }, + { "lat": 40.8431036, "lon": -73.9418906 }, + { "lat": 40.8430214, "lon": -73.9419321 }, + { "lat": 40.8428830, "lon": -73.9419928 }, + { "lat": 40.8428216, "lon": -73.9420178 }, + { "lat": 40.8427575, "lon": -73.9420432 }, + { "lat": 40.8423392, "lon": -73.9422064 }, + { "lat": 40.8422353, "lon": -73.9422500 }, + { "lat": 40.8421541, "lon": -73.9422847 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:lane": "exclusive", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 480682390, + "bounds": { + "minlat": 40.7115274, + "minlon": -74.0058474, + "maxlat": 40.7116883, + "maxlon": -74.0056719 + }, + "nodes": [ + 42427236, + 8281893515, + 6119503129 + ], + "geometry": [ + { "lat": 40.7116883, "lon": -74.0058474 }, + { "lat": 40.7116600, "lon": -74.0058167 }, + { "lat": 40.7115274, "lon": -74.0056719 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Spruce Street", + "name:ko": "스프루스 스트리트", + "name:ru": "Спрус-стрит", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q20858363", + "wikipedia": "en:Spruce Street" + } +}, +{ + "type": "way", + "id": 480682391, + "bounds": { + "minlat": 40.7101781, + "minlon": -74.0042431, + "maxlat": 40.7105518, + "maxlon": -74.0038182 + }, + "nodes": [ + 12960001934, + 12960001936, + 11347777629, + 42427242 + ], + "geometry": [ + { "lat": 40.7105518, "lon": -74.0038182 }, + { "lat": 40.7103818, "lon": -74.0040109 }, + { "lat": 40.7102264, "lon": -74.0041872 }, + { "lat": 40.7101781, "lon": -74.0042431 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Gold Street", + "name:ko": "골드 스트리트", + "name:ru": "Голд-стрит", + "oneway": "no", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through" + } +}, +{ + "type": "way", + "id": 480682392, + "bounds": { + "minlat": 40.7094179, + "minlon": -74.0051228, + "maxlat": 40.7101781, + "maxlon": -74.0042431 + }, + "nodes": [ + 42427242, + 4985376919, + 5446617714, + 11347850259, + 4985376920, + 42457311, + 4985377321, + 11347777600, + 42430848 + ], + "geometry": [ + { "lat": 40.7101781, "lon": -74.0042431 }, + { "lat": 40.7101294, "lon": -74.0042988 }, + { "lat": 40.7100085, "lon": -74.0044324 }, + { "lat": 40.7097856, "lon": -74.0046859 }, + { "lat": 40.7097015, "lon": -74.0047833 }, + { "lat": 40.7096642, "lon": -74.0048220 }, + { "lat": 40.7096309, "lon": -74.0048611 }, + { "lat": 40.7094798, "lon": -74.0050493 }, + { "lat": 40.7094179, "lon": -74.0051228 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Gold Street", + "name:ko": "골드 스트리트", + "name:ru": "Голд-стрит", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 480682393, + "bounds": { + "minlat": 40.7072416, + "minlon": -74.0074540, + "maxlat": 40.7078606, + "maxlon": -74.0068365 + }, + "nodes": [ + 42429354, + 11369961783, + 42459819, + 11369961856, + 42459817, + 42459816, + 11369922604, + 42459764, + 7138157374, + 6262915548 + ], + "geometry": [ + { "lat": 40.7078606, "lon": -74.0068365 }, + { "lat": 40.7078253, "lon": -74.0068598 }, + { "lat": 40.7078186, "lon": -74.0068645 }, + { "lat": 40.7077243, "lon": -74.0069289 }, + { "lat": 40.7076820, "lon": -74.0069577 }, + { "lat": 40.7075693, "lon": -74.0070457 }, + { "lat": 40.7075138, "lon": -74.0071018 }, + { "lat": 40.7074594, "lon": -74.0071667 }, + { "lat": 40.7072787, "lon": -74.0073982 }, + { "lat": 40.7072416, "lon": -74.0074540 } + ], + "tags": { + "highway": "unclassified", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Gold Street", + "name:ko": "골드 스트리트", + "name:ru": "Голд-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "19'4\"" + } +}, +{ + "type": "way", + "id": 480682394, + "bounds": { + "minlat": 40.7072083, + "minlon": -74.0068365, + "maxlat": 40.7078606, + "maxlon": -74.0059779 + }, + "nodes": [ + 42429354, + 8281922159, + 3784197523, + 11367912971, + 11367912968, + 11367912969, + 8281922169, + 11367912977, + 11367912970, + 42429353 + ], + "geometry": [ + { "lat": 40.7078606, "lon": -74.0068365 }, + { "lat": 40.7078380, "lon": -74.0068028 }, + { "lat": 40.7075282, "lon": -74.0063788 }, + { "lat": 40.7072906, "lon": -74.0060464 }, + { "lat": 40.7072748, "lon": -74.0060235 }, + { "lat": 40.7072608, "lon": -74.0060063 }, + { "lat": 40.7072564, "lon": -74.0060005 }, + { "lat": 40.7072405, "lon": -74.0059902 }, + { "lat": 40.7072257, "lon": -74.0059829 }, + { "lat": 40.7072083, "lon": -74.0059779 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Platt Street", + "name:ko": "플랫 스트리트", + "name:ru": "Платт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 480682395, + "bounds": { + "minlat": 40.7070101, + "minlon": -74.0064417, + "maxlat": 40.7072083, + "maxlon": -74.0059779 + }, + "nodes": [ + 42429353, + 11367912976, + 11367912869, + 11367912871, + 42427249 + ], + "geometry": [ + { "lat": 40.7072083, "lon": -74.0059779 }, + { "lat": 40.7071931, "lon": -74.0060161 }, + { "lat": 40.7070574, "lon": -74.0063486 }, + { "lat": 40.7070252, "lon": -74.0064150 }, + { "lat": 40.7070101, "lon": -74.0064417 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 480682396, + "bounds": { + "minlat": 40.7041084, + "minlon": -74.0089696, + "maxlat": 40.7042693, + "maxlon": -74.0087265 + }, + "nodes": [ + 42421941, + 7139624415, + 42421960 + ], + "geometry": [ + { "lat": 40.7042693, "lon": -74.0087265 }, + { "lat": 40.7041583, "lon": -74.0088945 }, + { "lat": 40.7041084, "lon": -74.0089696 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "turn:lanes:forward": "left;through|right" + } +}, +{ + "type": "way", + "id": 480682397, + "bounds": { + "minlat": 40.7112310, + "minlon": -74.0064780, + "maxlat": 40.7116883, + "maxlon": -74.0058474 + }, + "nodes": [ + 42456492, + 8281922066, + 6990788771, + 42427236 + ], + "geometry": [ + { "lat": 40.7112310, "lon": -74.0064780 }, + { "lat": 40.7112739, "lon": -74.0064178 }, + { "lat": 40.7116510, "lon": -74.0058990 }, + { "lat": 40.7116883, "lon": -74.0058474 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Nassau Street", + "name:etymology:wikidata": "Q155483", + "name:ko": "나사우 스트리트", + "name:ru": "Нассо-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2597808", + "wikipedia": "en:Nassau Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 480803092, + "bounds": { + "minlat": 40.7569245, + "minlon": -73.9774144, + "maxlat": 40.7572303, + "maxlon": -73.9769329 + }, + "nodes": [ + 2716012341, + 2716012352, + 2716012348, + 2716012371, + 2716012386, + 2716012355, + 2716012341 + ], + "geometry": [ + { "lat": 40.7569245, "lon": -73.9770430 }, + { "lat": 40.7570757, "lon": -73.9769329 }, + { "lat": 40.7570511, "lon": -73.9770366 }, + { "lat": 40.7571541, "lon": -73.9772812 }, + { "lat": 40.7572303, "lon": -73.9773113 }, + { "lat": 40.7570889, "lon": -73.9774144 }, + { "lat": 40.7569245, "lon": -73.9770430 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 480972178, + "bounds": { + "minlat": 40.7204753, + "minlon": -74.0080785, + "maxlat": 40.7205746, + "maxlon": -74.0068940 + }, + "nodes": [ + 11492568085, + 4890553350, + 11492543840, + 4137021568 + ], + "geometry": [ + { "lat": 40.7205746, "lon": -74.0080785 }, + { "lat": 40.7204814, "lon": -74.0071343 }, + { "lat": 40.7204758, "lon": -74.0070264 }, + { "lat": 40.7204753, "lon": -74.0068940 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Ericsson Place", + "name:etymology:wikidata": "Q435290", + "name:ko": "에릭슨 플레이스", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 481047237, + "bounds": { + "minlat": 40.7293265, + "minlon": -73.9978721, + "maxlat": 40.7299438, + "maxlon": -73.9973576 + }, + "nodes": [ + 42440553, + 8309478920, + 3584752204, + 42452396 + ], + "geometry": [ + { "lat": 40.7293265, "lon": -73.9978721 }, + { "lat": 40.7293768, "lon": -73.9978301 }, + { "lat": 40.7298916, "lon": -73.9974012 }, + { "lat": 40.7299438, "lon": -73.9973576 } + ], + "tags": { + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "LaGuardia Place", + "name:etymology:wikidata": "Q312502", + "name:ko": "라과디아 플레이스", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 481403099, + "bounds": { + "minlat": 40.7392720, + "minlon": -74.0011226, + "maxlat": 40.7416736, + "maxlon": -73.9954460 + }, + "nodes": [ + 42430259, + 9683231654, + 8429213028, + 42439275, + 8429213031, + 8262308801, + 42435603 + ], + "geometry": [ + { "lat": 40.7392720, "lon": -73.9954460 }, + { "lat": 40.7393310, "lon": -73.9955859 }, + { "lat": 40.7404179, "lon": -73.9981636 }, + { "lat": 40.7404700, "lon": -73.9982870 }, + { "lat": 40.7405286, "lon": -73.9984252 }, + { "lat": 40.7416153, "lon": -74.0009853 }, + { "lat": 40.7416736, "lon": -74.0011226 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 17th Street", + "name:ru": "Западная 17-я стрит", + "name_1": "West 17 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 481403100, + "bounds": { + "minlat": 40.7353170, + "minlon": -73.9899720, + "maxlat": 40.7353592, + "maxlon": -73.9898706 + }, + "nodes": [ + 42431452, + 4597668035 + ], + "geometry": [ + { "lat": 40.7353170, "lon": -73.9898706 }, + { "lat": 40.7353592, "lon": -73.9899720 } + ], + "tags": { + "cycleway:both": "lane", + "cycleway:both:oneway": "yes", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 15th Street", + "name:ru": "Восточная 15-я стрит", + "name_1": "Lee Strasberg Way", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 481403101, + "bounds": { + "minlat": 40.7273529, + "minlon": -74.0005803, + "maxlat": 40.7284251, + "maxlon": -73.9996723 + }, + "nodes": [ + 1692433932, + 8429031592, + 5829827193, + 42436788 + ], + "geometry": [ + { "lat": 40.7284251, "lon": -73.9996723 }, + { "lat": 40.7283696, "lon": -73.9997193 }, + { "lat": 40.7274266, "lon": -74.0005179 }, + { "lat": 40.7273529, "lon": -74.0005803 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Thompson Street", + "name:etymology:wikidata": "Q3568998", + "name:ko": "톰슨 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12070954", + "wikipedia": "en:Thompson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 481614658, + "bounds": { + "minlat": 40.7135349, + "minlon": -73.9195095, + "maxlat": 40.7137404, + "maxlon": -73.9163384 + }, + "nodes": [ + 5504968066, + 597676395, + 5482675510, + 9814561714, + 7806049017, + 6397746196 + ], + "geometry": [ + { "lat": 40.7137404, "lon": -73.9195095 }, + { "lat": 40.7137374, "lon": -73.9194639 }, + { "lat": 40.7136163, "lon": -73.9175944 }, + { "lat": 40.7135533, "lon": -73.9166288 }, + { "lat": 40.7135518, "lon": -73.9165988 }, + { "lat": 40.7135349, "lon": -73.9163384 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 481655771, + "bounds": { + "minlat": 40.7284696, + "minlon": -73.9964066, + "maxlat": 40.7292630, + "maxlon": -73.9955459 + }, + "nodes": [ + 2550067323, + 2550067313, + 2550067311, + 2550067310, + 2550067309, + 2550067308, + 2550067306, + 2550067304, + 2550067302, + 2550067299, + 2550067300, + 2550067301, + 2550067303, + 2550067298, + 2550067274, + 2550067273, + 4745685358, + 4745685363, + 4745685369, + 4745685359, + 2550067263, + 2550067266, + 2550067267, + 2550067268, + 2550067270, + 2550067269, + 2550067271, + 2550067272, + 2550067288, + 2550067285, + 2550067286, + 2550067291, + 2550067295, + 2550067294, + 2550067293, + 2550067296, + 4745685372, + 4745685356, + 4745685360, + 4745685376, + 4745685370, + 4745685374, + 4745685355, + 2550067323 + ], + "geometry": [ + { "lat": 40.7292630, "lon": -73.9961648 }, + { "lat": 40.7291493, "lon": -73.9962560 }, + { "lat": 40.7291315, "lon": -73.9962294 }, + { "lat": 40.7291081, "lon": -73.9962119 }, + { "lat": 40.7290856, "lon": -73.9962066 }, + { "lat": 40.7290615, "lon": -73.9962085 }, + { "lat": 40.7290367, "lon": -73.9962225 }, + { "lat": 40.7290212, "lon": -73.9962365 }, + { "lat": 40.7290094, "lon": -73.9962613 }, + { "lat": 40.7290007, "lon": -73.9962948 }, + { "lat": 40.7290009, "lon": -73.9963302 }, + { "lat": 40.7290069, "lon": -73.9963556 }, + { "lat": 40.7290135, "lon": -73.9963712 }, + { "lat": 40.7289716, "lon": -73.9964066 }, + { "lat": 40.7287313, "lon": -73.9959166 }, + { "lat": 40.7285907, "lon": -73.9960357 }, + { "lat": 40.7285653, "lon": -73.9960547 }, + { "lat": 40.7285559, "lon": -73.9960365 }, + { "lat": 40.7285478, "lon": -73.9960182 }, + { "lat": 40.7285174, "lon": -73.9960437 }, + { "lat": 40.7284696, "lon": -73.9959462 }, + { "lat": 40.7284784, "lon": -73.9959388 }, + { "lat": 40.7284819, "lon": -73.9959461 }, + { "lat": 40.7285105, "lon": -73.9959617 }, + { "lat": 40.7285507, "lon": -73.9959280 }, + { "lat": 40.7285487, "lon": -73.9958824 }, + { "lat": 40.7285517, "lon": -73.9958798 }, + { "lat": 40.7285648, "lon": -73.9959068 }, + { "lat": 40.7288685, "lon": -73.9956521 }, + { "lat": 40.7288512, "lon": -73.9956164 }, + { "lat": 40.7288539, "lon": -73.9956141 }, + { "lat": 40.7288963, "lon": -73.9956358 }, + { "lat": 40.7289405, "lon": -73.9955987 }, + { "lat": 40.7289387, "lon": -73.9955596 }, + { "lat": 40.7289359, "lon": -73.9955540 }, + { "lat": 40.7289456, "lon": -73.9955459 }, + { "lat": 40.7289819, "lon": -73.9956167 }, + { "lat": 40.7290067, "lon": -73.9956498 }, + { "lat": 40.7291007, "lon": -73.9958371 }, + { "lat": 40.7290863, "lon": -73.9958481 }, + { "lat": 40.7291011, "lon": -73.9958788 }, + { "lat": 40.7291742, "lon": -73.9960289 }, + { "lat": 40.7291900, "lon": -73.9960164 }, + { "lat": 40.7292630, "lon": -73.9961648 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Gould Plaza" + } +}, +{ + "type": "way", + "id": 481672088, + "bounds": { + "minlat": 40.7262952, + "minlon": -73.9982369, + "maxlat": 40.7272460, + "maxlon": -73.9974444 + }, + "nodes": [ + 5829907373, + 4745829027, + 8309478999 + ], + "geometry": [ + { "lat": 40.7262952, "lon": -73.9982369 }, + { "lat": 40.7265486, "lon": -73.9980287 }, + { "lat": 40.7272460, "lon": -73.9974444 } + ], + "tags": { + "highway": "pedestrian", + "name": "Greene Street Walk", + "name:etymology:wikidata": "Q366113" + } +}, +{ + "type": "way", + "id": 481962592, + "bounds": { + "minlat": 40.7139728, + "minlon": -73.9808938, + "maxlat": 40.7142510, + "maxlon": -73.9799617 + }, + "nodes": [ + 42427742, + 8270654741, + 11040080972, + 5377706592, + 42452117 + ], + "geometry": [ + { "lat": 40.7142510, "lon": -73.9808938 }, + { "lat": 40.7142237, "lon": -73.9808026 }, + { "lat": 40.7141134, "lon": -73.9804334 }, + { "lat": 40.7140141, "lon": -73.9801010 }, + { "lat": 40.7139728, "lon": -73.9799617 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 481962896, + "bounds": { + "minlat": 40.7159570, + "minlon": -73.9805736, + "maxlat": 40.7164540, + "maxlon": -73.9789246 + }, + "nodes": [ + 42429814, + 4300994797, + 7115850093, + 4300994899, + 42429812 + ], + "geometry": [ + { "lat": 40.7159570, "lon": -73.9789246 }, + { "lat": 40.7159795, "lon": -73.9789991 }, + { "lat": 40.7162487, "lon": -73.9798924 }, + { "lat": 40.7164104, "lon": -73.9804289 }, + { "lat": 40.7164540, "lon": -73.9805736 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 481965161, + "bounds": { + "minlat": 40.7259070, + "minlon": -73.9353980, + "maxlat": 40.7268262, + "maxlon": -73.9341460 + }, + "nodes": [ + 42476680, + 9789356920, + 5482263282, + 5482263284, + 9927149397, + 8896031641 + ], + "geometry": [ + { "lat": 40.7259070, "lon": -73.9353980 }, + { "lat": 40.7259572, "lon": -73.9353292 }, + { "lat": 40.7260658, "lon": -73.9351803 }, + { "lat": 40.7261521, "lon": -73.9350620 }, + { "lat": 40.7267925, "lon": -73.9341918 }, + { "lat": 40.7268262, "lon": -73.9341460 } + ], + "tags": { + "highway": "residential", + "name": "Meeker Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 482026799, + "bounds": { + "minlat": 40.7129231, + "minlon": -74.0072254, + "maxlat": 40.7130447, + "maxlon": -74.0071139 + }, + "nodes": [ + 2821289715, + 8262309234, + 9368526984, + 9368526985, + 9368824110, + 9368824109, + 2821304137 + ], + "geometry": [ + { "lat": 40.7129231, "lon": -74.0071139 }, + { "lat": 40.7129367, "lon": -74.0071417 }, + { "lat": 40.7129514, "lon": -74.0071684 }, + { "lat": 40.7129661, "lon": -74.0071829 }, + { "lat": 40.7130234, "lon": -74.0072060 }, + { "lat": 40.7130346, "lon": -74.0072140 }, + { "lat": 40.7130447, "lon": -74.0072254 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Steve Flanders Square", + "service": "driveway", + "sidewalk:both": "separate", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 483140984, + "bounds": { + "minlat": 40.6977786, + "minlon": -73.9678399, + "maxlat": 40.7024961, + "maxlon": -73.9674983 + }, + "nodes": [ + 1723603474, + 9838872511, + 42464542, + 2664563269, + 42478365, + 9998827355, + 4758928075, + 7707869062, + 4758928077, + 4758945523, + 4758945521, + 4758928090, + 4758928119, + 11065677180, + 4758928117, + 4758928115, + 4758928113, + 4758928112, + 11065677179, + 4758928110, + 4758928108, + 11065677178, + 4758928106, + 4758928104, + 4758928102, + 4758945525, + 12806321134, + 4758928101, + 4758931796, + 8913122331, + 8913122328 + ], + "geometry": [ + { "lat": 40.6977786, "lon": -73.9677353 }, + { "lat": 40.6978068, "lon": -73.9677344 }, + { "lat": 40.6979505, "lon": -73.9677297 }, + { "lat": 40.6987804, "lon": -73.9676716 }, + { "lat": 40.6990467, "lon": -73.9676580 }, + { "lat": 40.6991036, "lon": -73.9676552 }, + { "lat": 40.6993382, "lon": -73.9676438 }, + { "lat": 40.6993519, "lon": -73.9676431 }, + { "lat": 40.6995093, "lon": -73.9676353 }, + { "lat": 40.6999121, "lon": -73.9676368 }, + { "lat": 40.7002022, "lon": -73.9676185 }, + { "lat": 40.7003628, "lon": -73.9676065 }, + { "lat": 40.7005293, "lon": -73.9675969 }, + { "lat": 40.7006096, "lon": -73.9675922 }, + { "lat": 40.7006949, "lon": -73.9675863 }, + { "lat": 40.7008554, "lon": -73.9675767 }, + { "lat": 40.7010179, "lon": -73.9675660 }, + { "lat": 40.7011853, "lon": -73.9675524 }, + { "lat": 40.7012663, "lon": -73.9675488 }, + { "lat": 40.7013498, "lon": -73.9675442 }, + { "lat": 40.7015134, "lon": -73.9675361 }, + { "lat": 40.7016479, "lon": -73.9675309 }, + { "lat": 40.7016823, "lon": -73.9675278 }, + { "lat": 40.7018487, "lon": -73.9675195 }, + { "lat": 40.7020105, "lon": -73.9675120 }, + { "lat": 40.7021094, "lon": -73.9675066 }, + { "lat": 40.7021520, "lon": -73.9675045 }, + { "lat": 40.7021764, "lon": -73.9675033 }, + { "lat": 40.7022767, "lon": -73.9674983 }, + { "lat": 40.7023862, "lon": -73.9676687 }, + { "lat": 40.7024961, "lon": -73.9678399 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Washington Avenue", + "name:etymology:wikidata": "Q23" + } +}, +{ + "type": "way", + "id": 483140985, + "bounds": { + "minlat": 40.6990053, + "minlon": -73.9666305, + "maxlat": 40.7022222, + "maxlon": -73.9664506 + }, + "nodes": [ + 4758931800, + 7707869061, + 12560579492, + 4758928078, + 4758931803 + ], + "geometry": [ + { "lat": 40.6990053, "lon": -73.9666305 }, + { "lat": 40.6993174, "lon": -73.9666168 }, + { "lat": 40.6993462, "lon": -73.9666162 }, + { "lat": 40.6994735, "lon": -73.9666100 }, + { "lat": 40.7022222, "lon": -73.9664506 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Georgeson Road" + } +}, +{ + "type": "way", + "id": 483141574, + "bounds": { + "minlat": 40.7020105, + "minlon": -73.9682146, + "maxlat": 40.7020275, + "maxlon": -73.9675120 + }, + "nodes": [ + 4758928102, + 4758928103 + ], + "geometry": [ + { "lat": 40.7020105, "lon": -73.9675120 }, + { "lat": 40.7020275, "lon": -73.9682146 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483141577, + "bounds": { + "minlat": 40.7018487, + "minlon": -73.9682233, + "maxlat": 40.7018802, + "maxlon": -73.9675195 + }, + "nodes": [ + 4758928104, + 4758928105 + ], + "geometry": [ + { "lat": 40.7018487, "lon": -73.9675195 }, + { "lat": 40.7018802, "lon": -73.9682233 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483141579, + "bounds": { + "minlat": 40.7016823, + "minlon": -73.9682331, + "maxlat": 40.7017142, + "maxlon": -73.9675278 + }, + "nodes": [ + 4758928106, + 4758928107 + ], + "geometry": [ + { "lat": 40.7016823, "lon": -73.9675278 }, + { "lat": 40.7017142, "lon": -73.9682331 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483141581, + "bounds": { + "minlat": 40.7015134, + "minlon": -73.9682430, + "maxlat": 40.7015342, + "maxlon": -73.9675361 + }, + "nodes": [ + 4758928108, + 4758928109 + ], + "geometry": [ + { "lat": 40.7015134, "lon": -73.9675361 }, + { "lat": 40.7015342, "lon": -73.9682430 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483141583, + "bounds": { + "minlat": 40.7013498, + "minlon": -73.9682531, + "maxlat": 40.7013765, + "maxlon": -73.9675442 + }, + "nodes": [ + 4758928110, + 4758928111 + ], + "geometry": [ + { "lat": 40.7013498, "lon": -73.9675442 }, + { "lat": 40.7013765, "lon": -73.9682531 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483141585, + "bounds": { + "minlat": 40.7011853, + "minlon": -73.9682628, + "maxlat": 40.7012121, + "maxlon": -73.9675524 + }, + "nodes": [ + 4758928112, + 4758928094 + ], + "geometry": [ + { "lat": 40.7011853, "lon": -73.9675524 }, + { "lat": 40.7012121, "lon": -73.9682628 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483141587, + "bounds": { + "minlat": 40.7010179, + "minlon": -73.9682725, + "maxlat": 40.7010482, + "maxlon": -73.9675660 + }, + "nodes": [ + 4758928113, + 4758928114 + ], + "geometry": [ + { "lat": 40.7010179, "lon": -73.9675660 }, + { "lat": 40.7010482, "lon": -73.9682725 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483141589, + "bounds": { + "minlat": 40.7008554, + "minlon": -73.9682822, + "maxlat": 40.7008836, + "maxlon": -73.9675767 + }, + "nodes": [ + 4758928115, + 4758928116 + ], + "geometry": [ + { "lat": 40.7008554, "lon": -73.9675767 }, + { "lat": 40.7008836, "lon": -73.9682822 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483141591, + "bounds": { + "minlat": 40.7006949, + "minlon": -73.9682921, + "maxlat": 40.7007174, + "maxlon": -73.9675863 + }, + "nodes": [ + 4758928117, + 4758928118 + ], + "geometry": [ + { "lat": 40.7006949, "lon": -73.9675863 }, + { "lat": 40.7007174, "lon": -73.9682921 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483141593, + "bounds": { + "minlat": 40.7005293, + "minlon": -73.9683015, + "maxlat": 40.7005583, + "maxlon": -73.9675969 + }, + "nodes": [ + 4758928119, + 4758928120 + ], + "geometry": [ + { "lat": 40.7005293, "lon": -73.9675969 }, + { "lat": 40.7005583, "lon": -73.9683015 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483141595, + "bounds": { + "minlat": 40.7002022, + "minlon": -73.9682116, + "maxlat": 40.7002255, + "maxlon": -73.9676185 + }, + "nodes": [ + 4758945521, + 4758945522 + ], + "geometry": [ + { "lat": 40.7002022, "lon": -73.9676185 }, + { "lat": 40.7002255, "lon": -73.9682116 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483236728, + "bounds": { + "minlat": 40.7502832, + "minlon": -73.9827265, + "maxlat": 40.7509597, + "maxlon": -73.9811233 + }, + "nodes": [ + 42433604, + 9965135084, + 3997454663, + 42445910 + ], + "geometry": [ + { "lat": 40.7509597, "lon": -73.9827265 }, + { "lat": 40.7509131, "lon": -73.9826164 }, + { "lat": 40.7503250, "lon": -73.9812245 }, + { "lat": 40.7502832, "lon": -73.9811233 } + ], + "tags": { + "alt_name": "E 38th st", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 38th Street", + "name:ru": "Восточная 38-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483236729, + "bounds": { + "minlat": 40.7474127, + "minlon": -73.9748833, + "maxlat": 40.7476262, + "maxlon": -73.9745096 + }, + "nodes": [ + 4759939161, + 4759939156, + 4759939153, + 4759939160, + 4759939159, + 4759939162, + 4759939155, + 4759939158, + 4759939154, + 4759939157 + ], + "geometry": [ + { "lat": 40.7476262, "lon": -73.9748436 }, + { "lat": 40.7475780, "lon": -73.9748776 }, + { "lat": 40.7475466, "lon": -73.9748833 }, + { "lat": 40.7475182, "lon": -73.9748735 }, + { "lat": 40.7474984, "lon": -73.9748489 }, + { "lat": 40.7474202, "lon": -73.9746663 }, + { "lat": 40.7474127, "lon": -73.9746286 }, + { "lat": 40.7474170, "lon": -73.9745840 }, + { "lat": 40.7474396, "lon": -73.9745435 }, + { "lat": 40.7474857, "lon": -73.9745096 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 483360099, + "bounds": { + "minlat": 40.8108430, + "minlon": -73.9506800, + "maxlat": 40.8114780, + "maxlon": -73.9502160 + }, + "nodes": [ + 4888388399, + 10171508868, + 10171865588, + 42435810 + ], + "geometry": [ + { "lat": 40.8108430, "lon": -73.9506800 }, + { "lat": 40.8109038, "lon": -73.9506357 }, + { "lat": 40.8114207, "lon": -73.9502579 }, + { "lat": 40.8114780, "lon": -73.9502160 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed:type": "US-NY:urban", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 483360105, + "bounds": { + "minlat": 40.7585968, + "minlon": -73.9850795, + "maxlat": 40.7592226, + "maxlon": -73.9846194 + }, + "nodes": [ + 42439994, + 6598535157, + 6598535159, + 42439990 + ], + "geometry": [ + { "lat": 40.7592226, "lon": -73.9846194 }, + { "lat": 40.7591475, "lon": -73.9846758 }, + { "lat": 40.7586679, "lon": -73.9850272 }, + { "lat": 40.7585968, "lon": -73.9850795 } + ], + "tags": { + "cycleway:left": "lane", + "foot": "designated", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 483704512, + "bounds": { + "minlat": 40.7430428, + "minlon": -73.9947090, + "maxlat": 40.7453830, + "maxlon": -73.9891631 + }, + "nodes": [ + 42428212, + 3857400402, + 10169019489, + 10171337638, + 42430274, + 10171337635, + 11147382155, + 42439840 + ], + "geometry": [ + { "lat": 40.7430428, "lon": -73.9891631 }, + { "lat": 40.7430737, "lon": -73.9892346 }, + { "lat": 40.7436104, "lon": -73.9905050 }, + { "lat": 40.7441297, "lon": -73.9917375 }, + { "lat": 40.7441860, "lon": -73.9918710 }, + { "lat": 40.7442442, "lon": -73.9920090 }, + { "lat": 40.7453334, "lon": -73.9945914 }, + { "lat": 40.7453830, "lon": -73.9947090 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 25th Street", + "name:ru": "Западная 25-я стрит", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 483707770, + "bounds": { + "minlat": 40.7143576, + "minlon": -74.0083780, + "maxlat": 40.7149277, + "maxlon": -74.0079320 + }, + "nodes": [ + 42449597, + 8279851436, + 7439027751, + 42431611 + ], + "geometry": [ + { "lat": 40.7143576, "lon": -74.0083780 }, + { "lat": 40.7144231, "lon": -74.0083268 }, + { "lat": 40.7148720, "lon": -74.0079756 }, + { "lat": 40.7149277, "lon": -74.0079320 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 484155113, + "bounds": { + "minlat": 40.7375487, + "minlon": -73.9299342, + "maxlat": 40.7384527, + "maxlon": -73.9276289 + }, + "nodes": [ + 42832531, + 9179114986, + 11155242460, + 5482230617, + 10774439603, + 42888709, + 10084797140, + 11155242458, + 10084797141, + 42841853, + 10084797142, + 42896805 + ], + "geometry": [ + { "lat": 40.7375487, "lon": -73.9299342 }, + { "lat": 40.7375755, "lon": -73.9298544 }, + { "lat": 40.7376887, "lon": -73.9295655 }, + { "lat": 40.7377186, "lon": -73.9294892 }, + { "lat": 40.7377870, "lon": -73.9293165 }, + { "lat": 40.7378232, "lon": -73.9292249 }, + { "lat": 40.7378750, "lon": -73.9290946 }, + { "lat": 40.7381168, "lon": -73.9284757 }, + { "lat": 40.7381709, "lon": -73.9283371 }, + { "lat": 40.7382148, "lon": -73.9282340 }, + { "lat": 40.7382539, "lon": -73.9281375 }, + { "lat": 40.7384527, "lon": -73.9276289 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 484170269, + "bounds": { + "minlat": 40.7485081, + "minlon": -73.9909497, + "maxlat": 40.7494479, + "maxlon": -73.9886948 + }, + "nodes": [ + 4960503202, + 8614943065, + 6224277875, + 42430295 + ], + "geometry": [ + { "lat": 40.7494479, "lon": -73.9909497 }, + { "lat": 40.7489534, "lon": -73.9897553 }, + { "lat": 40.7485611, "lon": -73.9888368 }, + { "lat": 40.7485081, "lon": -73.9886948 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "layer": "0", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 32nd Street", + "name:ru": "Западная 32-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 484412016, + "bounds": { + "minlat": 40.7726131, + "minlon": -73.9770187, + "maxlat": 40.7727230, + "maxlon": -73.9766253 + }, + "nodes": [ + 3377460331, + 247227453, + 9178914791, + 247227452, + 5664733040, + 247227451 + ], + "geometry": [ + { "lat": 40.7727230, "lon": -73.9766253 }, + { "lat": 40.7726613, "lon": -73.9767579 }, + { "lat": 40.7726407, "lon": -73.9768076 }, + { "lat": 40.7726270, "lon": -73.9768522 }, + { "lat": 40.7726183, "lon": -73.9768941 }, + { "lat": 40.7726131, "lon": -73.9770187 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "West 67th Street", + "bicycle": "designated", + "foot": "permissive", + "hgv": "no", + "highway": "service", + "motor_vehicle": "private", + "name": "Warner LeRoy Place", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 484433150, + "bounds": { + "minlat": 40.7579539, + "minlon": -73.9170942, + "maxlat": 40.7613303, + "maxlon": -73.9098884 + }, + "nodes": [ + 42856556, + 7668020456, + 7668020458, + 42856560, + 7668020459, + 7668020461, + 42856563, + 7668020460, + 7668020463, + 42856566, + 7668020462, + 12830246649, + 7668020465, + 42856569, + 7668020464, + 5867077861, + 3570249857, + 42856571, + 7668020466, + 7668020467, + 42833501, + 7668020468, + 3570249842, + 42856588, + 7668020469, + 7668020470, + 2402842567, + 7661206802, + 7668020472, + 2520377419 + ], + "geometry": [ + { "lat": 40.7613303, "lon": -73.9170942 }, + { "lat": 40.7612827, "lon": -73.9169910 }, + { "lat": 40.7609871, "lon": -73.9163665 }, + { "lat": 40.7609496, "lon": -73.9162872 }, + { "lat": 40.7609196, "lon": -73.9162237 }, + { "lat": 40.7606112, "lon": -73.9155632 }, + { "lat": 40.7605754, "lon": -73.9154890 }, + { "lat": 40.7605435, "lon": -73.9154237 }, + { "lat": 40.7602649, "lon": -73.9148318 }, + { "lat": 40.7602021, "lon": -73.9147143 }, + { "lat": 40.7601279, "lon": -73.9145516 }, + { "lat": 40.7599613, "lon": -73.9141952 }, + { "lat": 40.7598540, "lon": -73.9139657 }, + { "lat": 40.7598215, "lon": -73.9138956 }, + { "lat": 40.7597931, "lon": -73.9138344 }, + { "lat": 40.7595479, "lon": -73.9133146 }, + { "lat": 40.7594757, "lon": -73.9131599 }, + { "lat": 40.7594453, "lon": -73.9130935 }, + { "lat": 40.7594122, "lon": -73.9130231 }, + { "lat": 40.7591093, "lon": -73.9123602 }, + { "lat": 40.7590732, "lon": -73.9122843 }, + { "lat": 40.7590434, "lon": -73.9122182 }, + { "lat": 40.7587344, "lon": -73.9115598 }, + { "lat": 40.7587007, "lon": -73.9114869 }, + { "lat": 40.7586684, "lon": -73.9114170 }, + { "lat": 40.7583611, "lon": -73.9107566 }, + { "lat": 40.7583270, "lon": -73.9106851 }, + { "lat": 40.7582942, "lon": -73.9106162 }, + { "lat": 40.7579882, "lon": -73.9099568 }, + { "lat": 40.7579539, "lon": -73.9098884 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "31st Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 484433151, + "bounds": { + "minlat": 40.7569692, + "minlon": -73.9098884, + "maxlat": 40.7579539, + "maxlon": -73.9077166 + }, + "nodes": [ + 2520377419, + 7668020471, + 7668020473, + 4912692230, + 7660830666, + 7668020475, + 4912692229, + 42856598, + 7660868770, + 7668020425, + 2313537249, + 2503677679 + ], + "geometry": [ + { "lat": 40.7579539, "lon": -73.9098884 }, + { "lat": 40.7579189, "lon": -73.9098183 }, + { "lat": 40.7576141, "lon": -73.9091432 }, + { "lat": 40.7575931, "lon": -73.9090983 }, + { "lat": 40.7575774, "lon": -73.9090656 }, + { "lat": 40.7575522, "lon": -73.9090110 }, + { "lat": 40.7572955, "lon": -73.9084620 }, + { "lat": 40.7572058, "lon": -73.9082700 }, + { "lat": 40.7571707, "lon": -73.9081950 }, + { "lat": 40.7570450, "lon": -73.9079257 }, + { "lat": 40.7569948, "lon": -73.9078208 }, + { "lat": 40.7569692, "lon": -73.9077166 } + ], + "tags": { + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "31st Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 484554209, + "bounds": { + "minlat": 40.7460689, + "minlon": -73.9342537, + "maxlat": 40.7462774, + "maxlon": -73.9332677 + }, + "nodes": [ + 42866361, + 9989941061, + 9989941063, + 7667234473 + ], + "geometry": [ + { "lat": 40.7462774, "lon": -73.9332677 }, + { "lat": 40.7461850, "lon": -73.9337049 }, + { "lat": 40.7461001, "lon": -73.9341063 }, + { "lat": 40.7460689, "lon": -73.9342537 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 484554210, + "bounds": { + "minlat": 40.7405496, + "minlon": -73.9153854, + "maxlat": 40.7407374, + "maxlon": -73.9144419 + }, + "nodes": [ + 42860635, + 5481956036, + 42819610 + ], + "geometry": [ + { "lat": 40.7407374, "lon": -73.9153854 }, + { "lat": 40.7406324, "lon": -73.9148473 }, + { "lat": 40.7405496, "lon": -73.9144419 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "47th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 484802830, + "bounds": { + "minlat": 40.7458813, + "minlon": -73.9152334, + "maxlat": 40.7462415, + "maxlon": -73.9121463 + }, + "nodes": [ + 42932262, + 10074123207, + 42932279, + 8251168999, + 42819589, + 10074123185, + 10074123184, + 42919808, + 10074123181, + 7671808567, + 42807836 + ], + "geometry": [ + { "lat": 40.7458813, "lon": -73.9121463 }, + { "lat": 40.7458903, "lon": -73.9122256 }, + { "lat": 40.7459152, "lon": -73.9124455 }, + { "lat": 40.7460134, "lon": -73.9132990 }, + { "lat": 40.7460238, "lon": -73.9133802 }, + { "lat": 40.7460340, "lon": -73.9134693 }, + { "lat": 40.7461212, "lon": -73.9142320 }, + { "lat": 40.7461294, "lon": -73.9143046 }, + { "lat": 40.7461398, "lon": -73.9143934 }, + { "lat": 40.7462322, "lon": -73.9151605 }, + { "lat": 40.7462415, "lon": -73.9152334 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 484802831, + "bounds": { + "minlat": 40.7464300, + "minlon": -73.9313344, + "maxlat": 40.7466638, + "maxlon": -73.9312951 + }, + "nodes": [ + 42817753, + 10069673261, + 6663060096, + 10069673259, + 42932499 + ], + "geometry": [ + { "lat": 40.7464300, "lon": -73.9313344 }, + { "lat": 40.7464916, "lon": -73.9313240 }, + { "lat": 40.7465411, "lon": -73.9313157 }, + { "lat": 40.7466026, "lon": -73.9313054 }, + { "lat": 40.7466638, "lon": -73.9312951 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "33rd Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 484802833, + "bounds": { + "minlat": 40.7440471, + "minlon": -73.9128895, + "maxlat": 40.7441661, + "maxlon": -73.9124839 + }, + "nodes": [ + 4775550715, + 11919139620, + 42817819 + ], + "geometry": [ + { "lat": 40.7440471, "lon": -73.9128895 }, + { "lat": 40.7441239, "lon": -73.9126318 }, + { "lat": 40.7441661, "lon": -73.9124839 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Roosevelt Avenue", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 484802834, + "bounds": { + "minlat": 40.7441661, + "minlon": -73.9124839, + "maxlat": 40.7453979, + "maxlon": -73.9066344 + }, + "nodes": [ + 42817819, + 11694654128, + 42870235, + 11694654129, + 11256230539, + 11694654119, + 42870238, + 11694654118, + 11694654108, + 42870244, + 11694654109, + 42855342, + 9950327853, + 42870249, + 11919139611, + 42870250, + 11919139612, + 42870256, + 42870260, + 42870265, + 42870269, + 42870273 + ], + "geometry": [ + { "lat": 40.7441661, "lon": -73.9124839 }, + { "lat": 40.7444422, "lon": -73.9116010 }, + { "lat": 40.7444710, "lon": -73.9115090 }, + { "lat": 40.7444930, "lon": -73.9114323 }, + { "lat": 40.7445597, "lon": -73.9112004 }, + { "lat": 40.7447238, "lon": -73.9106297 }, + { "lat": 40.7447428, "lon": -73.9105638 }, + { "lat": 40.7447607, "lon": -73.9104757 }, + { "lat": 40.7449250, "lon": -73.9096660 }, + { "lat": 40.7449410, "lon": -73.9095870 }, + { "lat": 40.7449527, "lon": -73.9095220 }, + { "lat": 40.7451177, "lon": -73.9086072 }, + { "lat": 40.7451295, "lon": -73.9085120 }, + { "lat": 40.7451463, "lon": -73.9084300 }, + { "lat": 40.7452901, "lon": -73.9076692 }, + { "lat": 40.7453074, "lon": -73.9075784 }, + { "lat": 40.7453251, "lon": -73.9074755 }, + { "lat": 40.7453470, "lon": -73.9073480 }, + { "lat": 40.7453770, "lon": -73.9071480 }, + { "lat": 40.7453910, "lon": -73.9069980 }, + { "lat": 40.7453979, "lon": -73.9067329 }, + { "lat": 40.7453966, "lon": -73.9066344 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Roosevelt Avenue", + "oneway": "no", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 485056260, + "bounds": { + "minlat": 40.7218735, + "minlon": -74.0064221, + "maxlat": 40.7223558, + "maxlon": -74.0063441 + }, + "nodes": [ + 11310960993, + 4890535524, + 11311088134, + 11310960994 + ], + "geometry": [ + { "lat": 40.7223558, "lon": -74.0063441 }, + { "lat": 40.7223134, "lon": -74.0063495 }, + { "lat": 40.7219201, "lon": -74.0064110 }, + { "lat": 40.7218735, "lon": -74.0064221 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:left:surface": "paving_stones", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 485056261, + "bounds": { + "minlat": 40.7217117, + "minlon": -74.0053547, + "maxlat": 40.7218819, + "maxlon": -74.0053067 + }, + "nodes": [ + 4143859865, + 3788379733 + ], + "geometry": [ + { "lat": 40.7217117, "lon": -74.0053067 }, + { "lat": 40.7218819, "lon": -74.0053547 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "20 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "noref": "yes", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 485056262, + "bounds": { + "minlat": 40.7216847, + "minlon": -74.0053067, + "maxlat": 40.7217117, + "maxlon": -74.0050747 + }, + "nodes": [ + 4143859865, + 4778174563, + 4143859873 + ], + "geometry": [ + { "lat": 40.7217117, "lon": -74.0053067 }, + { "lat": 40.7216990, "lon": -74.0051920 }, + { "lat": 40.7216847, "lon": -74.0050747 } + ], + "tags": { + "destination": "Canal Street East", + "hgv": "designated", + "highway": "primary", + "maxspeed": "20 mph", + "name": "Laight Street", + "name:ko": "레이트 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 485056263, + "bounds": { + "minlat": 40.7216847, + "minlon": -74.0053547, + "maxlat": 40.7218819, + "maxlon": -74.0050747 + }, + "nodes": [ + 4143859873, + 13017150941, + 13082559911, + 2151385504, + 3788379733 + ], + "geometry": [ + { "lat": 40.7216847, "lon": -74.0050747 }, + { "lat": 40.7217094, "lon": -74.0051094 }, + { "lat": 40.7217387, "lon": -74.0051506 }, + { "lat": 40.7217680, "lon": -74.0051918 }, + { "lat": 40.7218819, "lon": -74.0053547 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 485139335, + "bounds": { + "minlat": 40.7828748, + "minlon": -73.9440388, + "maxlat": 40.7830347, + "maxlon": -73.9437833 + }, + "nodes": [ + 42424025, + 9147289083, + 8843566912, + 9147289084, + 4779073677 + ], + "geometry": [ + { "lat": 40.7828748, "lon": -73.9437833 }, + { "lat": 40.7828999, "lon": -73.9437932 }, + { "lat": 40.7829368, "lon": -73.9438238 }, + { "lat": 40.7829565, "lon": -73.9438529 }, + { "lat": 40.7830347, "lon": -73.9440388 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 485165666, + "bounds": { + "minlat": 40.7192474, + "minlon": -73.9904681, + "maxlat": 40.7193234, + "maxlon": -73.9902109 + }, + "nodes": [ + 486868830, + 486868873 + ], + "geometry": [ + { "lat": 40.7192474, "lon": -73.9902109 }, + { "lat": 40.7193234, "lon": -73.9904681 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 485165667, + "bounds": { + "minlat": 40.7196785, + "minlon": -73.9929475, + "maxlat": 40.7199105, + "maxlon": -73.9921764 + }, + "nodes": [ + 42429754, + 4539951622, + 8821681992, + 6330061743, + 486867432 + ], + "geometry": [ + { "lat": 40.7199105, "lon": -73.9929475 }, + { "lat": 40.7198650, "lon": -73.9927946 }, + { "lat": 40.7197294, "lon": -73.9923459 }, + { "lat": 40.7197105, "lon": -73.9922826 }, + { "lat": 40.7196785, "lon": -73.9921764 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "name:zh": "地蘭西街", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;through||", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 485176772, + "bounds": { + "minlat": 40.7830347, + "minlon": -73.9447201, + "maxlat": 40.7832515, + "maxlon": -73.9440388 + }, + "nodes": [ + 4779073677, + 6162473813, + 6133359390, + 4779073679 + ], + "geometry": [ + { "lat": 40.7830347, "lon": -73.9440388 }, + { "lat": 40.7830663, "lon": -73.9441095 }, + { "lat": 40.7832493, "lon": -73.9445479 }, + { "lat": 40.7832515, "lon": -73.9447201 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "||right", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 485176773, + "bounds": { + "minlat": 40.7828748, + "minlon": -73.9441165, + "maxlat": 40.7829268, + "maxlon": -73.9437833 + }, + "nodes": [ + 4779073680, + 9147289085, + 6244796724, + 9147289086, + 8843566900, + 42424025 + ], + "geometry": [ + { "lat": 40.7829268, "lon": -73.9441165 }, + { "lat": 40.7829063, "lon": -73.9440511 }, + { "lat": 40.7828928, "lon": -73.9439955 }, + { "lat": 40.7828832, "lon": -73.9439379 }, + { "lat": 40.7828792, "lon": -73.9438883 }, + { "lat": 40.7828748, "lon": -73.9437833 } + ], + "tags": { + "destination": "FDR Drive north", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxweight": "8000 lbs", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 485176774, + "bounds": { + "minlat": 40.7829268, + "minlon": -73.9447201, + "maxlat": 40.7832515, + "maxlon": -73.9441165 + }, + "nodes": [ + 4779073679, + 6133333091, + 6162473812, + 4779073680 + ], + "geometry": [ + { "lat": 40.7832515, "lon": -73.9447201 }, + { "lat": 40.7831400, "lon": -73.9446270 }, + { "lat": 40.7829534, "lon": -73.9441873 }, + { "lat": 40.7829268, "lon": -73.9441165 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 485556246, + "bounds": { + "minlat": 40.7431034, + "minlon": -74.0075072, + "maxlat": 40.7431589, + "maxlon": -74.0074665 + }, + "nodes": [ + 4783358910, + 4783358909 + ], + "geometry": [ + { "lat": 40.7431034, "lon": -74.0075072 }, + { "lat": 40.7431589, "lon": -74.0074665 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "tunnel": "building_passage", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 485556247, + "bounds": { + "minlat": 40.7428340, + "minlon": -74.0077050, + "maxlat": 40.7431034, + "maxlon": -74.0075072 + }, + "nodes": [ + 42445766, + 3874650236, + 4783358910 + ], + "geometry": [ + { "lat": 40.7428340, "lon": -74.0077050 }, + { "lat": 40.7428986, "lon": -74.0076576 }, + { "lat": 40.7431034, "lon": -74.0075072 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 485629061, + "bounds": { + "minlat": 40.7002116, + "minlon": -73.9877709, + "maxlat": 40.7006764, + "maxlon": -73.9877408 + }, + "nodes": [ + 42469212, + 10722387710, + 10722387711, + 42469214 + ], + "geometry": [ + { "lat": 40.7006764, "lon": -73.9877408 }, + { "lat": 40.7006149, "lon": -73.9877447 }, + { "lat": 40.7002684, "lon": -73.9877663 }, + { "lat": 40.7002116, "lon": -73.9877709 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Pearl", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 485755181, + "bounds": { + "minlat": 40.7837916, + "minlon": -73.9838929, + "maxlat": 40.7843551, + "maxlon": -73.9832997 + }, + "nodes": [ + 42428072, + 10160791154, + 42438867 + ], + "geometry": [ + { "lat": 40.7843551, "lon": -73.9832997 }, + { "lat": 40.7843050, "lon": -73.9833530 }, + { "lat": 40.7837916, "lon": -73.9838929 } + ], + "tags": { + "cycleway:left": "shared_lane", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:both": "separate", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 485819034, + "bounds": { + "minlat": 40.7006764, + "minlon": -73.9882204, + "maxlat": 40.7006930, + "maxlon": -73.9877408 + }, + "nodes": [ + 10172645857, + 10172645854, + 42469212 + ], + "geometry": [ + { "lat": 40.7006930, "lon": -73.9882204 }, + { "lat": 40.7006786, "lon": -73.9878179 }, + { "lat": 40.7006764, "lon": -73.9877408 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "turn:lanes": "through|through;right|right" + } +}, +{ + "type": "way", + "id": 486010412, + "bounds": { + "minlat": 40.7006559, + "minlon": -73.9877408, + "maxlat": 40.7006764, + "maxlon": -73.9871869 + }, + "nodes": [ + 42469212, + 10722387709, + 42471291 + ], + "geometry": [ + { "lat": 40.7006764, "lon": -73.9877408 }, + { "lat": 40.7006757, "lon": -73.9876726 }, + { "lat": 40.7006559, "lon": -73.9871869 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Prospect", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 486583092, + "bounds": { + "minlat": 40.8410394, + "minlon": -73.9447121, + "maxlat": 40.8414892, + "maxlon": -73.9443634 + }, + "nodes": [ + 42437324, + 8725182314, + 7911399049, + 7911412134, + 7911412089, + 60927817 + ], + "geometry": [ + { "lat": 40.8410394, "lon": -73.9447121 }, + { "lat": 40.8411246, "lon": -73.9446359 }, + { "lat": 40.8412295, "lon": -73.9445421 }, + { "lat": 40.8413035, "lon": -73.9444826 }, + { "lat": 40.8413982, "lon": -73.9444159 }, + { "lat": 40.8414892, "lon": -73.9443634 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 487519787, + "bounds": { + "minlat": 40.7584528, + "minlon": -73.9789441, + "maxlat": 40.7590169, + "maxlon": -73.9785257 + }, + "nodes": [ + 11299027255, + 6814895836, + 6814895826, + 11065064852, + 4799735129, + 4799735130 + ], + "geometry": [ + { "lat": 40.7590169, "lon": -73.9785257 }, + { "lat": 40.7589432, "lon": -73.9785800 }, + { "lat": 40.7585965, "lon": -73.9788376 }, + { "lat": 40.7585145, "lon": -73.9788983 }, + { "lat": 40.7585123, "lon": -73.9789000 }, + { "lat": 40.7584528, "lon": -73.9789441 } + ], + "tags": { + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 487519792, + "bounds": { + "minlat": 40.7578315, + "minlon": -73.9794065, + "maxlat": 40.7584528, + "maxlon": -73.9789441 + }, + "nodes": [ + 4799735130, + 4799735128, + 11065064850, + 4799735124, + 4549080328 + ], + "geometry": [ + { "lat": 40.7584528, "lon": -73.9789441 }, + { "lat": 40.7584046, "lon": -73.9789800 }, + { "lat": 40.7583955, "lon": -73.9789868 }, + { "lat": 40.7578886, "lon": -73.9793640 }, + { "lat": 40.7578315, "lon": -73.9794065 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "smoothness": "good", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 487985966, + "bounds": { + "minlat": 40.8479471, + "minlon": -73.9356779, + "maxlat": 40.8480768, + "maxlon": -73.9353663 + }, + "nodes": [ + 4803647103, + 595473421 + ], + "geometry": [ + { "lat": 40.8479471, "lon": -73.9353663 }, + { "lat": 40.8480768, "lon": -73.9356779 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "||merge_to_left" + } +}, +{ + "type": "way", + "id": 487985967, + "bounds": { + "minlat": 40.8474854, + "minlon": -73.9353663, + "maxlat": 40.8479471, + "maxlon": -73.9342561 + }, + "nodes": [ + 4803647102, + 4803647103 + ], + "geometry": [ + { "lat": 40.8474854, "lon": -73.9342561 }, + { "lat": 40.8479471, "lon": -73.9353663 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 487985970, + "bounds": { + "minlat": 40.8474364, + "minlon": -73.9354413, + "maxlat": 40.8478453, + "maxlon": -73.9344667 + }, + "nodes": [ + 4803647101, + 60925784 + ], + "geometry": [ + { "lat": 40.8478453, "lon": -73.9354413 }, + { "lat": 40.8474364, "lon": -73.9344667 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "||Harlem River Drive;Franklin D Roosevelt East River Drive;Manhattan", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "yes", + "tunnel": "yes", + "turn:lanes": "||slight_right" + } +}, +{ + "type": "way", + "id": 487985974, + "bounds": { + "minlat": 40.8478453, + "minlon": -73.9357524, + "maxlat": 40.8479758, + "maxlon": -73.9354413 + }, + "nodes": [ + 595473385, + 4803647101 + ], + "geometry": [ + { "lat": 40.8479758, "lon": -73.9357524 }, + { "lat": 40.8478453, "lon": -73.9354413 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "destination:lanes": "||Harlem River Drive;Franklin D Roosevelt East River Drive;Manhattan", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "||slight_right" + } +}, +{ + "type": "way", + "id": 487985979, + "bounds": { + "minlat": 40.8477459, + "minlon": -73.9358257, + "maxlat": 40.8478764, + "maxlon": -73.9355156 + }, + "nodes": [ + 595473259, + 4842655878 + ], + "geometry": [ + { "lat": 40.8478764, "lon": -73.9358257 }, + { "lat": 40.8477459, "lon": -73.9355156 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "destination:lanes": "Harlem River Drive;Franklin D Roosevelt East River Drive;Manhattan|none|Maj Deegan Expressway", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "slight_left||" + } +}, +{ + "type": "way", + "id": 488272734, + "bounds": { + "minlat": 40.7191062, + "minlon": -73.9902109, + "maxlat": 40.7192474, + "maxlon": -73.9897345 + }, + "nodes": [ + 42429766, + 8231896489, + 8821681985, + 5296795756, + 486868830 + ], + "geometry": [ + { "lat": 40.7191062, "lon": -73.9897345 }, + { "lat": 40.7191268, "lon": -73.9898001 }, + { "lat": 40.7192143, "lon": -73.9900909 }, + { "lat": 40.7192233, "lon": -73.9901314 }, + { "lat": 40.7192474, "lon": -73.9902109 } + ], + "tags": { + "bus:lanes": "||designated|", + "cycleway:left": "no", + "cycleway:right": "separate", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none|right", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 488376502, + "bounds": { + "minlat": 40.7339707, + "minlon": -73.9777810, + "maxlat": 40.7340736, + "maxlon": -73.9777088 + }, + "nodes": [ + 685164634, + 5286408252 + ], + "geometry": [ + { "lat": 40.7339707, "lon": -73.9777810 }, + { "lat": 40.7340736, "lon": -73.9777088 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "20th Street Loop", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 488376503, + "bounds": { + "minlat": 40.7324338, + "minlon": -73.9779738, + "maxlat": 40.7339707, + "maxlon": -73.9754466 + }, + "nodes": [ + 685164636, + 4298773024, + 42438377, + 42438379, + 42438381, + 7144878508, + 42438386, + 42438387, + 8429307326, + 42438388, + 3236082441, + 1596676218, + 42438390, + 42438411, + 42438417, + 7144880776, + 42438421, + 42438424, + 42438427, + 7144880756, + 3236082442, + 42438439, + 3236082444, + 3236082445, + 1596676611, + 3236082447, + 3601295714, + 42438444, + 8429307325, + 3236082451, + 42438449, + 3360773029, + 42438451, + 42438454, + 42438456, + 12179607170, + 4298773011, + 685164634 + ], + "geometry": [ + { "lat": 40.7329862, "lon": -73.9754466 }, + { "lat": 40.7329324, "lon": -73.9754850 }, + { "lat": 40.7328709, "lon": -73.9755291 }, + { "lat": 40.7327520, "lon": -73.9756300 }, + { "lat": 40.7326560, "lon": -73.9757510 }, + { "lat": 40.7326284, "lon": -73.9757945 }, + { "lat": 40.7325760, "lon": -73.9758770 }, + { "lat": 40.7325273, "lon": -73.9759904 }, + { "lat": 40.7325215, "lon": -73.9760113 }, + { "lat": 40.7324841, "lon": -73.9761465 }, + { "lat": 40.7324525, "lon": -73.9763160 }, + { "lat": 40.7324338, "lon": -73.9764619 }, + { "lat": 40.7324353, "lon": -73.9766538 }, + { "lat": 40.7324554, "lon": -73.9768356 }, + { "lat": 40.7324903, "lon": -73.9769776 }, + { "lat": 40.7324991, "lon": -73.9770022 }, + { "lat": 40.7325455, "lon": -73.9771322 }, + { "lat": 40.7326144, "lon": -73.9773041 }, + { "lat": 40.7326683, "lon": -73.9774298 }, + { "lat": 40.7326962, "lon": -73.9774775 }, + { "lat": 40.7327269, "lon": -73.9775300 }, + { "lat": 40.7327756, "lon": -73.9775961 }, + { "lat": 40.7328615, "lon": -73.9777016 }, + { "lat": 40.7329410, "lon": -73.9777785 }, + { "lat": 40.7330143, "lon": -73.9778375 }, + { "lat": 40.7331271, "lon": -73.9779058 }, + { "lat": 40.7332142, "lon": -73.9779382 }, + { "lat": 40.7333095, "lon": -73.9779645 }, + { "lat": 40.7333498, "lon": -73.9779687 }, + { "lat": 40.7333995, "lon": -73.9779738 }, + { "lat": 40.7334710, "lon": -73.9779690 }, + { "lat": 40.7335435, "lon": -73.9779596 }, + { "lat": 40.7335790, "lon": -73.9779550 }, + { "lat": 40.7337010, "lon": -73.9779230 }, + { "lat": 40.7338190, "lon": -73.9778730 }, + { "lat": 40.7338962, "lon": -73.9778278 }, + { "lat": 40.7339208, "lon": -73.9778134 }, + { "lat": 40.7339707, "lon": -73.9777810 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "20th Street Loop", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 488377255, + "bounds": { + "minlat": 40.7292294, + "minlon": -73.9775321, + "maxlat": 40.7292450, + "maxlon": -73.9771914 + }, + "nodes": [ + 4806876056, + 4806876057, + 7139740728, + 4806876058 + ], + "geometry": [ + { "lat": 40.7292450, "lon": -73.9771914 }, + { "lat": 40.7292439, "lon": -73.9773196 }, + { "lat": 40.7292424, "lon": -73.9773648 }, + { "lat": 40.7292294, "lon": -73.9775321 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 489019752, + "bounds": { + "minlat": 40.7448186, + "minlon": -73.9914085, + "maxlat": 40.7452332, + "maxlon": -73.9911079 + }, + "nodes": [ + 42430277, + 10171337646, + 8959187723 + ], + "geometry": [ + { "lat": 40.7448186, "lon": -73.9914085 }, + { "lat": 40.7448711, "lon": -73.9913687 }, + { "lat": 40.7452332, "lon": -73.9911079 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 489019753, + "bounds": { + "minlat": 40.7380916, + "minlon": -73.9826181, + "maxlat": 40.7386149, + "maxlon": -73.9814041 + }, + "nodes": [ + 9971262458, + 5266429277 + ], + "geometry": [ + { "lat": 40.7380916, "lon": -73.9814041 }, + { "lat": 40.7386149, "lon": -73.9826181 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 489019754, + "bounds": { + "minlat": 40.7388377, + "minlon": -73.9831493, + "maxlat": 40.7394995, + "maxlon": -73.9826691 + }, + "nodes": [ + 42448701, + 4132605273, + 12183286740, + 12183286743, + 4115878740, + 42436586 + ], + "geometry": [ + { "lat": 40.7388377, "lon": -73.9831493 }, + { "lat": 40.7389374, "lon": -73.9830757 }, + { "lat": 40.7389851, "lon": -73.9830404 }, + { "lat": 40.7394039, "lon": -73.9827376 }, + { "lat": 40.7394461, "lon": -73.9827067 }, + { "lat": 40.7394995, "lon": -73.9826691 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|through|through;right", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 489022194, + "bounds": { + "minlat": 40.7738026, + "minlon": -73.9840594, + "maxlat": 40.7738196, + "maxlon": -73.9840201 + }, + "nodes": [ + 2744944555, + 2744944552 + ], + "geometry": [ + { "lat": 40.7738196, "lon": -73.9840594 }, + { "lat": 40.7738026, "lon": -73.9840201 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxheight": "below_default", + "maxspeed": "25 mph", + "name": "West 65th Street", + "name:ru": "Западная 65-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 489022195, + "bounds": { + "minlat": 40.7738196, + "minlon": -73.9848524, + "maxlat": 40.7741641, + "maxlon": -73.9840594 + }, + "nodes": [ + 42442415, + 7050687054, + 9448032939, + 2744944555 + ], + "geometry": [ + { "lat": 40.7741641, "lon": -73.9848524 }, + { "lat": 40.7741143, "lon": -73.9847401 }, + { "lat": 40.7739780, "lon": -73.9844237 }, + { "lat": 40.7738196, "lon": -73.9840594 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 65th Street", + "name:ru": "Западная 65-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 489022288, + "bounds": { + "minlat": 40.7674049, + "minlon": -73.9500417, + "maxlat": 40.7674304, + "maxlon": -73.9500185 + }, + "nodes": [ + 4813099376, + 4813099377 + ], + "geometry": [ + { "lat": 40.7674049, "lon": -73.9500417 }, + { "lat": 40.7674304, "lon": -73.9500185 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 489022289, + "bounds": { + "minlat": 40.7663475, + "minlon": -73.9508902, + "maxlat": 40.7674049, + "maxlon": -73.9500417 + }, + "nodes": [ + 371197670, + 3785454967, + 3785454968, + 3785454969, + 371198303, + 4813099376 + ], + "geometry": [ + { "lat": 40.7663475, "lon": -73.9508902 }, + { "lat": 40.7665332, "lon": -73.9507416 }, + { "lat": 40.7667168, "lon": -73.9506095 }, + { "lat": 40.7668970, "lon": -73.9504810 }, + { "lat": 40.7670677, "lon": -73.9503358 }, + { "lat": 40.7674049, "lon": -73.9500417 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 489022290, + "bounds": { + "minlat": 40.7674299, + "minlon": -73.9501703, + "maxlat": 40.7674538, + "maxlon": -73.9501457 + }, + "nodes": [ + 4813099375, + 4813099374 + ], + "geometry": [ + { "lat": 40.7674538, "lon": -73.9501457 }, + { "lat": 40.7674299, "lon": -73.9501703 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 489022291, + "bounds": { + "minlat": 40.7674538, + "minlon": -73.9501457, + "maxlat": 40.7687032, + "maxlon": -73.9491341 + }, + "nodes": [ + 42424145, + 9142744767, + 3785451348, + 3785451347, + 42430086, + 4813099375 + ], + "geometry": [ + { "lat": 40.7687032, "lon": -73.9491341 }, + { "lat": 40.7685229, "lon": -73.9492820 }, + { "lat": 40.7681272, "lon": -73.9495765 }, + { "lat": 40.7679418, "lon": -73.9497192 }, + { "lat": 40.7677522, "lon": -73.9498841 }, + { "lat": 40.7674538, "lon": -73.9501457 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 489090277, + "bounds": { + "minlat": 40.7802320, + "minlon": -73.9620893, + "maxlat": 40.7808949, + "maxlon": -73.9613628 + }, + "nodes": [ + 1382339050, + 1382339082, + 9170796890, + 9170796891, + 9170796892, + 705234189, + 9170796893, + 42435497 + ], + "geometry": [ + { "lat": 40.7808949, "lon": -73.9620893 }, + { "lat": 40.7808410, "lon": -73.9620388 }, + { "lat": 40.7807517, "lon": -73.9619504 }, + { "lat": 40.7806610, "lon": -73.9618550 }, + { "lat": 40.7805668, "lon": -73.9617562 }, + { "lat": 40.7803144, "lon": -73.9614693 }, + { "lat": 40.7802718, "lon": -73.9614161 }, + { "lat": 40.7802320, "lon": -73.9613628 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "bus:lanes": "|designated|", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "lit": "yes", + "maxheight": "10'5\"", + "maxspeed": "25 mph", + "maxspeed:advisory": "20 mph", + "motor_vehicle": "yes", + "motor_vehicle:lanes": "yes|no|yes", + "name": "86th Street Transverse", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through||right", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 489170295, + "bounds": { + "minlat": 40.8566060, + "minlon": -73.9284110, + "maxlat": 40.8568009, + "maxlon": -73.9282660 + }, + "nodes": [ + 42433151, + 5403868124, + 11596481928, + 11596481901, + 42433138 + ], + "geometry": [ + { "lat": 40.8568009, "lon": -73.9282660 }, + { "lat": 40.8567486, "lon": -73.9283049 }, + { "lat": 40.8567185, "lon": -73.9283273 }, + { "lat": 40.8566684, "lon": -73.9283646 }, + { "lat": 40.8566060, "lon": -73.9284110 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:backward": "left|through", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 489170296, + "bounds": { + "minlat": 40.8602420, + "minlon": -73.9296676, + "maxlat": 40.8622107, + "maxlon": -73.9284200 + }, + "nodes": [ + 42443522, + 13300275854, + 9561344691, + 9561344712, + 42443524, + 6882309079, + 2052329246, + 42427846 + ], + "geometry": [ + { "lat": 40.8602420, "lon": -73.9284200 }, + { "lat": 40.8602665, "lon": -73.9284357 }, + { "lat": 40.8603448, "lon": -73.9284858 }, + { "lat": 40.8608152, "lon": -73.9287870 }, + { "lat": 40.8608620, "lon": -73.9288170 }, + { "lat": 40.8620595, "lon": -73.9295749 }, + { "lat": 40.8621252, "lon": -73.9296166 }, + { "lat": 40.8622107, "lon": -73.9296676 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Ellwood Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Ellwood", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 489170297, + "bounds": { + "minlat": 40.8644030, + "minlon": -73.9237670, + "maxlat": 40.8649132, + "maxlon": -73.9223887 + }, + "nodes": [ + 42427863, + 9561420901, + 12772044132 + ], + "geometry": [ + { "lat": 40.8644030, "lon": -73.9237670 }, + { "lat": 40.8644383, "lon": -73.9236716 }, + { "lat": 40.8649132, "lon": -73.9223887 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "name": "Sherman Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 489375009, + "bounds": { + "minlat": 40.7384641, + "minlon": -74.0037634, + "maxlat": 40.7386731, + "maxlon": -74.0036511 + }, + "nodes": [ + 4492821528, + 4816137911 + ], + "geometry": [ + { "lat": 40.7384641, "lon": -74.0037634 }, + { "lat": 40.7386731, "lon": -74.0036511 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 489375010, + "bounds": { + "minlat": 40.7387578, + "minlon": -74.0035532, + "maxlat": 40.7389931, + "maxlon": -74.0032880 + }, + "nodes": [ + 42431844, + 6213315375, + 8307463666, + 8307463669 + ], + "geometry": [ + { "lat": 40.7387578, "lon": -74.0035532 }, + { "lat": 40.7388162, "lon": -74.0034834 }, + { "lat": 40.7388542, "lon": -74.0034414 }, + { "lat": 40.7389931, "lon": -74.0032880 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 489375011, + "bounds": { + "minlat": 40.7387557, + "minlon": -74.0038600, + "maxlat": 40.7387578, + "maxlon": -74.0035532 + }, + "nodes": [ + 42431500, + 8307463672, + 5849926991, + 42431844 + ], + "geometry": [ + { "lat": 40.7387561, "lon": -74.0038600 }, + { "lat": 40.7387560, "lon": -74.0037878 }, + { "lat": 40.7387557, "lon": -74.0036197 }, + { "lat": 40.7387578, "lon": -74.0035532 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Horatio Street", + "name:etymology:wikidata": "Q365124", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 490896832, + "bounds": { + "minlat": 40.8661168, + "minlon": -73.9191317, + "maxlat": 40.8663150, + "maxlon": -73.9185960 + }, + "nodes": [ + 42427873, + 9561229762, + 4830733459 + ], + "geometry": [ + { "lat": 40.8663150, "lon": -73.9185960 }, + { "lat": 40.8662769, "lon": -73.9186991 }, + { "lat": 40.8661168, "lon": -73.9191317 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "3", + "lanes:forward": "1", + "name": "Sherman Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 490899140, + "bounds": { + "minlat": 40.8651000, + "minlon": -73.9218840, + "maxlat": 40.8653066, + "maxlon": -73.9213244 + }, + "nodes": [ + 42427867, + 9561420923, + 4830747456 + ], + "geometry": [ + { "lat": 40.8651000, "lon": -73.9218840 }, + { "lat": 40.8651370, "lon": -73.9217836 }, + { "lat": 40.8653066, "lon": -73.9213244 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "3", + "lanes:forward": "1", + "name": "Sherman Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 490899141, + "bounds": { + "minlat": 40.8653066, + "minlon": -73.9213244, + "maxlat": 40.8657970, + "maxlon": -73.9199960 + }, + "nodes": [ + 4830747456, + 9561420932, + 42427870 + ], + "geometry": [ + { "lat": 40.8653066, "lon": -73.9213244 }, + { "lat": 40.8657584, "lon": -73.9201008 }, + { "lat": 40.8657970, "lon": -73.9199960 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "4", + "name": "Sherman Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 491162341, + "bounds": { + "minlat": 40.7424325, + "minlon": -73.9892288, + "maxlat": 40.7430428, + "maxlon": -73.9889406 + }, + "nodes": [ + 449581627, + 10177727065, + 5147973330, + 10177727061, + 6210354201, + 9913562554, + 5147973338, + 9913562555, + 9913562556, + 5147973337, + 9913562559, + 9913562557, + 9913562558, + 3857400396, + 5147972298, + 10177727036, + 42428212 + ], + "geometry": [ + { "lat": 40.7424446, "lon": -73.9889406 }, + { "lat": 40.7424345, "lon": -73.9889798 }, + { "lat": 40.7424325, "lon": -73.9890182 }, + { "lat": 40.7424386, "lon": -73.9890521 }, + { "lat": 40.7424548, "lon": -73.9890986 }, + { "lat": 40.7424672, "lon": -73.9891272 }, + { "lat": 40.7424793, "lon": -73.9891503 }, + { "lat": 40.7424956, "lon": -73.9891745 }, + { "lat": 40.7425144, "lon": -73.9891949 }, + { "lat": 40.7425334, "lon": -73.9892106 }, + { "lat": 40.7425528, "lon": -73.9892208 }, + { "lat": 40.7425730, "lon": -73.9892269 }, + { "lat": 40.7425949, "lon": -73.9892288 }, + { "lat": 40.7426162, "lon": -73.9892270 }, + { "lat": 40.7429678, "lon": -73.9891726 }, + { "lat": 40.7429950, "lon": -73.9891692 }, + { "lat": 40.7430428, "lon": -73.9891631 } + ], + "tags": { + "bicycle": "designated", + "foot": "designated", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 491215415, + "bounds": { + "minlat": 40.7351135, + "minlon": -73.9568105, + "maxlat": 40.7354322, + "maxlon": -73.9565872 + }, + "nodes": [ + 4833594455, + 4833594458, + 4833594456, + 4833594457 + ], + "geometry": [ + { "lat": 40.7351135, "lon": -73.9568105 }, + { "lat": 40.7351318, "lon": -73.9566174 }, + { "lat": 40.7351347, "lon": -73.9565872 }, + { "lat": 40.7354322, "lon": -73.9566363 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 491215416, + "bounds": { + "minlat": 40.7350138, + "minlon": -73.9566174, + "maxlat": 40.7351318, + "maxlon": -73.9565979 + }, + "nodes": [ + 4833594459, + 7008335442, + 4833594454, + 4833594458 + ], + "geometry": [ + { "lat": 40.7350138, "lon": -73.9565979 }, + { "lat": 40.7350813, "lon": -73.9566090 }, + { "lat": 40.7350984, "lon": -73.9566119 }, + { "lat": 40.7351318, "lon": -73.9566174 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 491675608, + "bounds": { + "minlat": 40.8471437, + "minlon": -73.9344067, + "maxlat": 40.8472794, + "maxlon": -73.9340878 + }, + "nodes": [ + 4803647098, + 13768792960 + ], + "geometry": [ + { "lat": 40.8472794, "lon": -73.9344067 }, + { "lat": 40.8471437, "lon": -73.9340878 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "destination:lanes": "Harlem River Drive;Franklin D Roosevelt East River Drive;Manhattan|none|Maj Deegan Expressway", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "slight_left||" + } +}, +{ + "type": "way", + "id": 491675619, + "bounds": { + "minlat": 40.8473520, + "minlon": -73.9342561, + "maxlat": 40.8474854, + "maxlon": -73.9339355 + }, + "nodes": [ + 60925728, + 4803647102 + ], + "geometry": [ + { "lat": 40.8473520, "lon": -73.9339355 }, + { "lat": 40.8474854, "lon": -73.9342561 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 492148700, + "bounds": { + "minlat": 40.7171684, + "minlon": -73.9848249, + "maxlat": 40.7176795, + "maxlon": -73.9831408 + }, + "nodes": [ + 42427345, + 4300940098, + 8310245570, + 42429806, + 8310245573, + 5173594703 + ], + "geometry": [ + { "lat": 40.7171684, "lon": -73.9831408 }, + { "lat": 40.7171864, "lon": -73.9832179 }, + { "lat": 40.7174089, "lon": -73.9839206 }, + { "lat": 40.7174310, "lon": -73.9839974 }, + { "lat": 40.7174497, "lon": -73.9840595 }, + { "lat": 40.7176795, "lon": -73.9848249 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 492148701, + "bounds": { + "minlat": 40.7174266, + "minlon": -73.9829775, + "maxlat": 40.7191795, + "maxlon": -73.9820818 + }, + "nodes": [ + 7500756892, + 8236347418, + 42427346, + 8310245583, + 8236347420, + 10060182578 + ], + "geometry": [ + { "lat": 40.7174266, "lon": -73.9829775 }, + { "lat": 40.7182603, "lon": -73.9825483 }, + { "lat": 40.7183141, "lon": -73.9825206 }, + { "lat": 40.7183563, "lon": -73.9824986 }, + { "lat": 40.7186761, "lon": -73.9823343 }, + { "lat": 40.7191795, "lon": -73.9820818 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Pitt Street", + "name:etymology:wikidata": "Q208663", + "name:ko": "피트 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "perpendicular", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 492148702, + "bounds": { + "minlat": 40.7333819, + "minlon": -74.0044748, + "maxlat": 40.7337978, + "maxlon": -74.0043633 + }, + "nodes": [ + 4841945993, + 4841945994, + 11609529490, + 4841945995 + ], + "geometry": [ + { "lat": 40.7337978, "lon": -74.0044748 }, + { "lat": 40.7336883, "lon": -74.0044645 }, + { "lat": 40.7334353, "lon": -74.0043809 }, + { "lat": 40.7333819, "lon": -74.0043633 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Bleecker Street", + "name:etymology:wikidata": "Q4772124", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "right", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 492148703, + "bounds": { + "minlat": 40.7322539, + "minlon": -74.0042514, + "maxlat": 40.7333991, + "maxlon": -74.0035825 + }, + "nodes": [ + 42431802, + 8307642027, + 8307642034, + 42431797, + 8307641994, + 4679523599, + 5837088105 + ], + "geometry": [ + { "lat": 40.7333991, "lon": -74.0042514 }, + { "lat": 40.7333492, "lon": -74.0042212 }, + { "lat": 40.7329714, "lon": -74.0040026 }, + { "lat": 40.7329250, "lon": -74.0039756 }, + { "lat": 40.7328725, "lon": -74.0039448 }, + { "lat": 40.7323894, "lon": -74.0036613 }, + { "lat": 40.7322539, "lon": -74.0035825 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Bleecker Street", + "name:etymology:wikidata": "Q4772124", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 492148704, + "bounds": { + "minlat": 40.7330707, + "minlon": -74.0063829, + "maxlat": 40.7333991, + "maxlon": -74.0042514 + }, + "nodes": [ + 42431802, + 4841945995, + 11609529489, + 339044224, + 11609529469, + 42436393 + ], + "geometry": [ + { "lat": 40.7333991, "lon": -74.0042514 }, + { "lat": 40.7333819, "lon": -74.0043633 }, + { "lat": 40.7333803, "lon": -74.0043740 }, + { "lat": 40.7331509, "lon": -74.0058626 }, + { "lat": 40.7330866, "lon": -74.0062795 }, + { "lat": 40.7330707, "lon": -74.0063829 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Christopher Street", + "name:ru": "Кристофер-стрит", + "oneway": "yes", + "parking:right": "no", + "parking:right:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1086990", + "wikipedia": "en:Christopher Street" + } +}, +{ + "type": "way", + "id": 492148705, + "bounds": { + "minlat": 40.7340784, + "minlon": -73.9999737, + "maxlat": 40.7346949, + "maxlon": -73.9996733 + }, + "nodes": [ + 42432194, + 8307642049, + 12179564375, + 1760570979, + 1760570978, + 1760570982, + 12179564374, + 1760570980, + 1760570976, + 12179564373, + 4320194260, + 42432191 + ], + "geometry": [ + { "lat": 40.7346949, "lon": -73.9999737 }, + { "lat": 40.7346449, "lon": -73.9999414 }, + { "lat": 40.7346010, "lon": -73.9999140 }, + { "lat": 40.7343981, "lon": -73.9997909 }, + { "lat": 40.7343588, "lon": -73.9997705 }, + { "lat": 40.7343254, "lon": -73.9997543 }, + { "lat": 40.7342873, "lon": -73.9997417 }, + { "lat": 40.7342512, "lon": -73.9997291 }, + { "lat": 40.7342164, "lon": -73.9997166 }, + { "lat": 40.7341765, "lon": -73.9997044 }, + { "lat": 40.7341259, "lon": -73.9996896 }, + { "lat": 40.7340784, "lon": -73.9996733 } + ], + "tags": { + "cycleway:both": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Greenwich Avenue", + "name:etymology:wikidata": "Q205380", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5604832", + "wikipedia": "en:Greenwich Avenue" + } +}, +{ + "type": "way", + "id": 492148706, + "bounds": { + "minlat": 40.7338470, + "minlon": -74.0012059, + "maxlat": 40.7340784, + "maxlon": -73.9996733 + }, + "nodes": [ + 42432191, + 4320194269, + 4320194265, + 42436856, + 4320194264, + 11987722733, + 42433261 + ], + "geometry": [ + { "lat": 40.7340784, "lon": -73.9996733 }, + { "lat": 40.7340646, "lon": -73.9997767 }, + { "lat": 40.7339890, "lon": -74.0003114 }, + { "lat": 40.7339795, "lon": -74.0003725 }, + { "lat": 40.7339744, "lon": -74.0004084 }, + { "lat": 40.7338648, "lon": -74.0011503 }, + { "lat": 40.7338470, "lon": -74.0012059 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Christopher Street", + "name:ru": "Кристофер-стрит", + "oneway": "yes", + "parking:right": "no", + "parking:right:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1086990", + "wikipedia": "en:Christopher Street" + } +}, +{ + "type": "way", + "id": 492215349, + "bounds": { + "minlat": 40.8472794, + "minlon": -73.9355156, + "maxlat": 40.8477459, + "maxlon": -73.9344067 + }, + "nodes": [ + 4842655878, + 4803647098 + ], + "geometry": [ + { "lat": 40.8477459, "lon": -73.9355156 }, + { "lat": 40.8472794, "lon": -73.9344067 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "Harlem River Drive;Franklin D Roosevelt East River Drive;Manhattan|none|Maj Deegan Expressway", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes", + "turn:lanes": "slight_left||" + } +}, +{ + "type": "way", + "id": 492431794, + "bounds": { + "minlat": 40.8480517, + "minlon": -73.9356004, + "maxlat": 40.8481821, + "maxlon": -73.9352881 + }, + "nodes": [ + 4844527261, + 595473279 + ], + "geometry": [ + { "lat": 40.8480517, "lon": -73.9352881 }, + { "lat": 40.8481821, "lon": -73.9356004 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 492431796, + "bounds": { + "minlat": 40.8475900, + "minlon": -73.9352881, + "maxlat": 40.8480517, + "maxlon": -73.9341824 + }, + "nodes": [ + 4803647104, + 4844527261 + ], + "geometry": [ + { "lat": 40.8475900, "lon": -73.9341824 }, + { "lat": 40.8480517, "lon": -73.9352881 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxheight": "default", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 492441172, + "bounds": { + "minlat": 40.7152640, + "minlon": -73.9951287, + "maxlat": 40.7153328, + "maxlon": -73.9950911 + }, + "nodes": [ + 4844627300, + 4844627299 + ], + "geometry": [ + { "lat": 40.7152640, "lon": -73.9950911 }, + { "lat": 40.7153328, "lon": -73.9951287 } + ], + "tags": { + "bicycle": "no", + "covered": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "35 mph", + "moped": "no", + "name": "Canal Street", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 492489884, + "bounds": { + "minlat": 40.7497060, + "minlon": -73.9915630, + "maxlat": 40.7503422, + "maxlon": -73.9910985 + }, + "nodes": [ + 4461990857, + 9413881749, + 5235625496, + 5235625493, + 9414480624, + 42439440 + ], + "geometry": [ + { "lat": 40.7503422, "lon": -73.9910985 }, + { "lat": 40.7502719, "lon": -73.9911494 }, + { "lat": 40.7502241, "lon": -73.9911843 }, + { "lat": 40.7497913, "lon": -73.9915006 }, + { "lat": 40.7497684, "lon": -73.9915184 }, + { "lat": 40.7497060, "lon": -73.9915630 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 492489893, + "bounds": { + "minlat": 40.7491217, + "minlon": -73.9910985, + "maxlat": 40.7503422, + "maxlon": -73.9882353 + }, + "nodes": [ + 42430298, + 4707482477, + 6223189525, + 9413881743, + 4461990857 + ], + "geometry": [ + { "lat": 40.7491217, "lon": -73.9882353 }, + { "lat": 40.7491889, "lon": -73.9883920 }, + { "lat": 40.7500868, "lon": -73.9904992 }, + { "lat": 40.7502937, "lon": -73.9909810 }, + { "lat": 40.7503422, "lon": -73.9910985 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 492813789, + "bounds": { + "minlat": 40.8271397, + "minlon": -73.9074760, + "maxlat": 40.8291279, + "maxlon": -73.9067002 + }, + "nodes": [ + 12799951765, + 7998677875, + 9520831375, + 42768582, + 13247238218, + 13247238229, + 42768578, + 13247238231, + 12797287096 + ], + "geometry": [ + { "lat": 40.8291279, "lon": -73.9067002 }, + { "lat": 40.8288063, "lon": -73.9068244 }, + { "lat": 40.8283819, "lon": -73.9069910 }, + { "lat": 40.8282800, "lon": -73.9070310 }, + { "lat": 40.8281831, "lon": -73.9070694 }, + { "lat": 40.8278431, "lon": -73.9072042 }, + { "lat": 40.8277830, "lon": -73.9072280 }, + { "lat": 40.8277306, "lon": -73.9072482 }, + { "lat": 40.8271397, "lon": -73.9074760 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 494221658, + "bounds": { + "minlat": 40.7116883, + "minlon": -74.0060472, + "maxlat": 40.7119157, + "maxlon": -74.0058474 + }, + "nodes": [ + 1272562931, + 10297381521, + 2821321590, + 4143875754, + 8281893516, + 42427236 + ], + "geometry": [ + { "lat": 40.7119157, "lon": -74.0060472 }, + { "lat": 40.7118798, "lon": -74.0060289 }, + { "lat": 40.7118403, "lon": -74.0060023 }, + { "lat": 40.7118040, "lon": -74.0059688 }, + { "lat": 40.7117083, "lon": -74.0058671 }, + { "lat": 40.7116883, "lon": -74.0058474 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Spruce Street", + "name:ko": "스프루스 스트리트", + "name:ru": "Спрус-стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q20858363", + "wikipedia": "en:Spruce Street" + } +}, +{ + "type": "way", + "id": 494786070, + "bounds": { + "minlat": 40.7771850, + "minlon": -73.9846517, + "maxlat": 40.7772722, + "maxlon": -73.9844370 + }, + "nodes": [ + 4865372426, + 1722116514 + ], + "geometry": [ + { "lat": 40.7772722, "lon": -73.9846517 }, + { "lat": 40.7771850, "lon": -73.9844370 } + ], + "tags": { + "highway": "service", + "name": "West 69th Street", + "name:ru": "Западная 69-я стрит", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 495189431, + "bounds": { + "minlat": 40.7230861, + "minlon": -73.9393108, + "maxlat": 40.7233594, + "maxlon": -73.9391490 + }, + "nodes": [ + 42476545, + 11184578272 + ], + "geometry": [ + { "lat": 40.7230861, "lon": -73.9391490 }, + { "lat": 40.7233594, "lon": -73.9393108 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "2", + "name": "Morgan Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 495237386, + "bounds": { + "minlat": 40.7583806, + "minlon": -74.0043150, + "maxlat": 40.7592200, + "maxlon": -74.0037574 + }, + "nodes": [ + 9441264734, + 7527664916, + 9441264862, + 12973307552, + 9441264858, + 9441264738, + 4379966379, + 247081711, + 12154605956 + ], + "geometry": [ + { "lat": 40.7592200, "lon": -74.0037574 }, + { "lat": 40.7591714, "lon": -74.0037933 }, + { "lat": 40.7590472, "lon": -74.0038871 }, + { "lat": 40.7590177, "lon": -74.0039164 }, + { "lat": 40.7586334, "lon": -74.0041994 }, + { "lat": 40.7584802, "lon": -74.0043150 }, + { "lat": 40.7584584, "lon": -74.0042632 }, + { "lat": 40.7584290, "lon": -74.0041977 }, + { "lat": 40.7583806, "lon": -74.0040809 } + ], + "tags": { + "highway": "service", + "name": "Pier 76", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 495253326, + "bounds": { + "minlat": 40.7605615, + "minlon": -74.0022030, + "maxlat": 40.7607466, + "maxlon": -74.0020668 + }, + "nodes": [ + 593840148, + 247119341, + 42448996 + ], + "geometry": [ + { "lat": 40.7605615, "lon": -74.0022030 }, + { "lat": 40.7606830, "lon": -74.0021141 }, + { "lat": 40.7607466, "lon": -74.0020668 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 495253775, + "bounds": { + "minlat": 40.7710862, + "minlon": -73.9921933, + "maxlat": 40.7714260, + "maxlon": -73.9919519 + }, + "nodes": [ + 7661292939, + 10082657582, + 4870256104 + ], + "geometry": [ + { "lat": 40.7710862, "lon": -73.9921933 }, + { "lat": 40.7713689, "lon": -73.9919925 }, + { "lat": 40.7714260, "lon": -73.9919519 } + ], + "tags": { + "covered": "no", + "highway": "service", + "lanes": "1", + "motor_vehicle": "destination", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 495276214, + "bounds": { + "minlat": 40.7655784, + "minlon": -73.9980172, + "maxlat": 40.7656615, + "maxlon": -73.9978029 + }, + "nodes": [ + 4872564989, + 10864461092, + 4872414615, + 4870557353, + 12154598280 + ], + "geometry": [ + { "lat": 40.7656615, "lon": -73.9980172 }, + { "lat": 40.7656495, "lon": -73.9979864 }, + { "lat": 40.7656438, "lon": -73.9979715 }, + { "lat": 40.7656288, "lon": -73.9979330 }, + { "lat": 40.7655784, "lon": -73.9978029 } + ], + "tags": { + "highway": "service", + "name": "West 48th Street", + "name:ru": "Западная 48-я стрит", + "name_1": "West 48 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 495276343, + "bounds": { + "minlat": 40.7651046, + "minlon": -73.9986554, + "maxlat": 40.7687396, + "maxlon": -73.9961029 + }, + "nodes": [ + 247121481, + 2376384658, + 2376384657, + 247121482, + 2376384655, + 247121483, + 2376384653, + 2376384651, + 2376384650, + 247121484, + 2376384649, + 247121485, + 2376384648, + 247121486, + 4870555384, + 701607044, + 247122985, + 247121841, + 4870555390, + 247122970, + 247122975, + 13099867114, + 247121490, + 2376384642, + 701605107, + 2376384640, + 701605108, + 2376384638, + 2376384639, + 701605109, + 2376384641, + 701605110, + 701605111, + 2376384643, + 701605112, + 701605113, + 2376384644, + 701605114 + ], + "geometry": [ + { "lat": 40.7687226, "lon": -73.9961029 }, + { "lat": 40.7687396, "lon": -73.9961618 }, + { "lat": 40.7687390, "lon": -73.9962003 }, + { "lat": 40.7687302, "lon": -73.9962342 }, + { "lat": 40.7687115, "lon": -73.9962687 }, + { "lat": 40.7686866, "lon": -73.9962897 }, + { "lat": 40.7686618, "lon": -73.9962995 }, + { "lat": 40.7686377, "lon": -73.9963005 }, + { "lat": 40.7686165, "lon": -73.9962959 }, + { "lat": 40.7685925, "lon": -73.9962830 }, + { "lat": 40.7685663, "lon": -73.9962494 }, + { "lat": 40.7685063, "lon": -73.9961827 }, + { "lat": 40.7684675, "lon": -73.9961623 }, + { "lat": 40.7684179, "lon": -73.9961626 }, + { "lat": 40.7683669, "lon": -73.9961830 }, + { "lat": 40.7682339, "lon": -73.9962728 }, + { "lat": 40.7681303, "lon": -73.9963516 }, + { "lat": 40.7669734, "lon": -73.9971901 }, + { "lat": 40.7668985, "lon": -73.9972449 }, + { "lat": 40.7657050, "lon": -73.9981022 }, + { "lat": 40.7656523, "lon": -73.9981407 }, + { "lat": 40.7654783, "lon": -73.9982640 }, + { "lat": 40.7652007, "lon": -73.9984302 }, + { "lat": 40.7651546, "lon": -73.9984653 }, + { "lat": 40.7651227, "lon": -73.9984975 }, + { "lat": 40.7651139, "lon": -73.9985169 }, + { "lat": 40.7651077, "lon": -73.9985382 }, + { "lat": 40.7651046, "lon": -73.9985630 }, + { "lat": 40.7651056, "lon": -73.9985842 }, + { "lat": 40.7651129, "lon": -73.9986122 }, + { "lat": 40.7651281, "lon": -73.9986329 }, + { "lat": 40.7651502, "lon": -73.9986509 }, + { "lat": 40.7651752, "lon": -73.9986554 }, + { "lat": 40.7651945, "lon": -73.9986524 }, + { "lat": 40.7652163, "lon": -73.9986411 }, + { "lat": 40.7652362, "lon": -73.9986175 }, + { "lat": 40.7652529, "lon": -73.9985646 }, + { "lat": 40.7652728, "lon": -73.9984713 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "2", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 495946403, + "bounds": { + "minlat": 40.7091119, + "minlon": -74.0179099, + "maxlat": 40.7095591, + "maxlon": -74.0168969 + }, + "nodes": [ + 4876645540, + 42440640, + 1195433554, + 11418076982, + 889585087, + 889584974, + 889585021, + 11418076981, + 889585240, + 42440644, + 889585047, + 10612369339, + 4876645553 + ], + "geometry": [ + { "lat": 40.7093652, "lon": -74.0168969 }, + { "lat": 40.7095541, "lon": -74.0177430 }, + { "lat": 40.7095591, "lon": -74.0177902 }, + { "lat": 40.7095526, "lon": -74.0178236 }, + { "lat": 40.7095372, "lon": -74.0178577 }, + { "lat": 40.7095143, "lon": -74.0178778 }, + { "lat": 40.7094453, "lon": -74.0179048 }, + { "lat": 40.7094165, "lon": -74.0179099 }, + { "lat": 40.7093852, "lon": -74.0178995 }, + { "lat": 40.7093633, "lon": -74.0178753 }, + { "lat": 40.7093471, "lon": -74.0178370 }, + { "lat": 40.7091283, "lon": -74.0171338 }, + { "lat": 40.7091119, "lon": -74.0170821 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Rector Place", + "name:ko": "렉터 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 496977101, + "bounds": { + "minlat": 40.7144207, + "minlon": -73.9902319, + "maxlat": 40.7167118, + "maxlon": -73.9891494 + }, + "nodes": [ + 42440785, + 5787554246, + 588455739, + 588455740, + 11591881196, + 8231942791, + 42445617, + 8231942790, + 4886191087, + 5041369235, + 42452084 + ], + "geometry": [ + { "lat": 40.7144207, "lon": -73.9902277 }, + { "lat": 40.7144968, "lon": -73.9902319 }, + { "lat": 40.7145938, "lon": -73.9902197 }, + { "lat": 40.7147742, "lon": -73.9901549 }, + { "lat": 40.7150996, "lon": -73.9899866 }, + { "lat": 40.7154944, "lon": -73.9897818 }, + { "lat": 40.7155607, "lon": -73.9897482 }, + { "lat": 40.7155975, "lon": -73.9897290 }, + { "lat": 40.7165679, "lon": -73.9892242 }, + { "lat": 40.7166228, "lon": -73.9891960 }, + { "lat": 40.7167118, "lon": -73.9891494 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Essex Street", + "name:etymology:wikidata": "Q23240", + "name:ko": "에식스 스트리트", + "name:ru": "Эссекс-стрит", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4532801", + "wikipedia": "en:Essex Street" + } +}, +{ + "type": "way", + "id": 496978218, + "bounds": { + "minlat": 40.7064117, + "minlon": -74.0050152, + "maxlat": 40.7068521, + "maxlon": -74.0045692 + }, + "nodes": [ + 42440350, + 10311946274, + 10311946271, + 5362205527, + 11356801018, + 11356801019, + 11356801024, + 42440353 + ], + "geometry": [ + { "lat": 40.7068521, "lon": -74.0050152 }, + { "lat": 40.7068214, "lon": -74.0050012 }, + { "lat": 40.7067884, "lon": -74.0049805 }, + { "lat": 40.7067541, "lon": -74.0049527 }, + { "lat": 40.7065356, "lon": -74.0047051 }, + { "lat": 40.7064732, "lon": -74.0046349 }, + { "lat": 40.7064513, "lon": -74.0046115 }, + { "lat": 40.7064117, "lon": -74.0045692 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "20 mph", + "name": "John Street", + "name:etymology:wikidata": "Q113897737", + "name:ko": "존 스트리트", + "name:ru": "Джон-стрит", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "John", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q108240697" + } +}, +{ + "type": "way", + "id": 496978219, + "bounds": { + "minlat": 40.7071272, + "minlon": -74.0045735, + "maxlat": 40.7074428, + "maxlon": -74.0040737 + }, + "nodes": [ + 42440270, + 4985377334, + 12353722939 + ], + "geometry": [ + { "lat": 40.7074428, "lon": -74.0040737 }, + { "lat": 40.7073693, "lon": -74.0041862 }, + { "lat": 40.7071272, "lon": -74.0045735 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "parking:left:taxi": "designated", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 496978510, + "bounds": { + "minlat": 40.7373610, + "minlon": -73.9968400, + "maxlat": 40.7380440, + "maxlon": -73.9963370 + }, + "nodes": [ + 42430253, + 5413254261, + 8310246316, + 8323660593, + 8323660592, + 5155799272, + 8429213018, + 42430255 + ], + "geometry": [ + { "lat": 40.7373610, "lon": -73.9968400 }, + { "lat": 40.7373712, "lon": -73.9968326 }, + { "lat": 40.7374619, "lon": -73.9967658 }, + { "lat": 40.7377102, "lon": -73.9965829 }, + { "lat": 40.7378925, "lon": -73.9964486 }, + { "lat": 40.7379336, "lon": -73.9964183 }, + { "lat": 40.7379955, "lon": -73.9963727 }, + { "lat": 40.7380440, "lon": -73.9963370 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 496979224, + "bounds": { + "minlat": 40.7368949, + "minlon": -73.9971826, + "maxlat": 40.7373610, + "maxlon": -73.9968400 + }, + "nodes": [ + 10584037999, + 10584038000, + 8310246317, + 5413254263, + 42430253 + ], + "geometry": [ + { "lat": 40.7368949, "lon": -73.9971826 }, + { "lat": 40.7371092, "lon": -73.9970220 }, + { "lat": 40.7372746, "lon": -73.9969024 }, + { "lat": 40.7373421, "lon": -73.9968536 }, + { "lat": 40.7373610, "lon": -73.9968400 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||||", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 496980200, + "bounds": { + "minlat": 40.7253844, + "minlon": -74.0006749, + "maxlat": 40.7272378, + "maxlon": -73.9968134 + }, + "nodes": [ + 1919595918, + 5829880528, + 5829907370, + 5799117240, + 5829907368, + 1919595926, + 5829907367, + 1919595917, + 5829907375, + 5243716990, + 5829907364, + 1919595925, + 5829907365, + 1919595919, + 5829927763, + 1919595915 + ], + "geometry": [ + { "lat": 40.7272378, "lon": -74.0006749 }, + { "lat": 40.7272068, "lon": -74.0006121 }, + { "lat": 40.7269305, "lon": -74.0000526 }, + { "lat": 40.7268880, "lon": -73.9999665 }, + { "lat": 40.7268446, "lon": -73.9998766 }, + { "lat": 40.7264932, "lon": -73.9991668 }, + { "lat": 40.7261501, "lon": -73.9984720 }, + { "lat": 40.7261180, "lon": -73.9984070 }, + { "lat": 40.7260861, "lon": -73.9983423 }, + { "lat": 40.7259447, "lon": -73.9980558 }, + { "lat": 40.7257885, "lon": -73.9977399 }, + { "lat": 40.7257539, "lon": -73.9976695 }, + { "lat": 40.7257140, "lon": -73.9975887 }, + { "lat": 40.7254675, "lon": -73.9970892 }, + { "lat": 40.7254177, "lon": -73.9969360 }, + { "lat": 40.7253844, "lon": -73.9968134 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 496980201, + "bounds": { + "minlat": 40.7222582, + "minlon": -74.0006091, + "maxlat": 40.7256550, + "maxlon": -73.9977501 + }, + "nodes": [ + 9815692303, + 8231906902, + 42449576, + 8231906903, + 8231885397, + 42442269, + 8231885398, + 12187433927, + 8231922397 + ], + "geometry": [ + { "lat": 40.7256550, "lon": -73.9977501 }, + { "lat": 40.7246767, "lon": -73.9985486 }, + { "lat": 40.7246320, "lon": -73.9985850 }, + { "lat": 40.7245889, "lon": -73.9986215 }, + { "lat": 40.7234714, "lon": -73.9995681 }, + { "lat": 40.7234230, "lon": -73.9996090 }, + { "lat": 40.7233765, "lon": -73.9996482 }, + { "lat": 40.7222829, "lon": -74.0005878 }, + { "lat": 40.7222582, "lon": -74.0006091 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Mercer Street", + "name:etymology:wikidata": "Q3030909", + "name:ko": "머서 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q3306319", + "wikipedia": "en:Mercer Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 496982024, + "bounds": { + "minlat": 40.7495629, + "minlon": -73.9879131, + "maxlat": 40.7498011, + "maxlon": -73.9877463 + }, + "nodes": [ + 4886228960, + 3857343072, + 42430304 + ], + "geometry": [ + { "lat": 40.7495629, "lon": -73.9879131 }, + { "lat": 40.7497154, "lon": -73.9878017 }, + { "lat": 40.7498011, "lon": -73.9877463 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 496982371, + "bounds": { + "minlat": 40.7251803, + "minlon": -74.0110523, + "maxlat": 40.7258067, + "maxlon": -74.0109300 + }, + "nodes": [ + 9611529611, + 12162542956, + 42440854 + ], + "geometry": [ + { "lat": 40.7251803, "lon": -74.0110523 }, + { "lat": 40.7256707, "lon": -74.0109566 }, + { "lat": 40.7258067, "lon": -74.0109300 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 496982627, + "bounds": { + "minlat": 40.7146811, + "minlon": -74.0058866, + "maxlat": 40.7152360, + "maxlon": -74.0054200 + }, + "nodes": [ + 42428405, + 8279851420, + 4742733153, + 8279851427, + 42428402 + ], + "geometry": [ + { "lat": 40.7152360, "lon": -74.0054200 }, + { "lat": 40.7151832, "lon": -74.0054644 }, + { "lat": 40.7148556, "lon": -74.0057398 }, + { "lat": 40.7147387, "lon": -74.0058382 }, + { "lat": 40.7146811, "lon": -74.0058866 } + ], + "tags": { + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-18:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 496982787, + "bounds": { + "minlat": 40.7150259, + "minlon": -73.9967631, + "maxlat": 40.7152793, + "maxlon": -73.9966073 + }, + "nodes": [ + 42437564, + 4625620213, + 12311493516 + ], + "geometry": [ + { "lat": 40.7150259, "lon": -73.9967631 }, + { "lat": 40.7150799, "lon": -73.9967283 }, + { "lat": 40.7152793, "lon": -73.9966073 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 496982788, + "bounds": { + "minlat": 40.7150259, + "minlon": -73.9968672, + "maxlat": 40.7150640, + "maxlon": -73.9967631 + }, + "nodes": [ + 1773063789, + 42437564 + ], + "geometry": [ + { "lat": 40.7150640, "lon": -73.9968672 }, + { "lat": 40.7150259, "lon": -73.9967631 } + ], + "tags": { + "alt_name": "Zhe \"Zack\" Zeng Way", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Bayard Street", + "name:etymology:wikidata": "Q508327", + "name:ko": "베이어드 스트리트", + "name:zh": "擺也街", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 496982789, + "bounds": { + "minlat": 40.7144271, + "minlon": -73.9973275, + "maxlat": 40.7150640, + "maxlon": -73.9968672 + }, + "nodes": [ + 1773063789, + 4160352403, + 12196074929, + 12196074930, + 12196074935, + 1773063787, + 12196074936, + 4202950099 + ], + "geometry": [ + { "lat": 40.7150640, "lon": -73.9968672 }, + { "lat": 40.7150148, "lon": -73.9968993 }, + { "lat": 40.7149988, "lon": -73.9969098 }, + { "lat": 40.7147057, "lon": -73.9971242 }, + { "lat": 40.7146704, "lon": -73.9971498 }, + { "lat": 40.7146392, "lon": -73.9971724 }, + { "lat": 40.7146004, "lon": -73.9972007 }, + { "lat": 40.7144271, "lon": -73.9973275 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 496983396, + "bounds": { + "minlat": 40.7502834, + "minlon": -73.9874138, + "maxlat": 40.7504574, + "maxlon": -73.9872874 + }, + "nodes": [ + 4886239171, + 3857343079, + 42430308 + ], + "geometry": [ + { "lat": 40.7502834, "lon": -73.9874138 }, + { "lat": 40.7504055, "lon": -73.9873258 }, + { "lat": 40.7504574, "lon": -73.9872874 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 496983397, + "bounds": { + "minlat": 40.7498011, + "minlon": -73.9877463, + "maxlat": 40.7502834, + "maxlon": -73.9874138 + }, + "nodes": [ + 42430304, + 3857343080, + 4886239171 + ], + "geometry": [ + { "lat": 40.7498011, "lon": -73.9877463 }, + { "lat": 40.7498816, "lon": -73.9876991 }, + { "lat": 40.7502834, "lon": -73.9874138 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 496983398, + "bounds": { + "minlat": 40.7503511, + "minlon": -73.9872874, + "maxlat": 40.7504574, + "maxlon": -73.9870355 + }, + "nodes": [ + 4886239172, + 3857334400, + 42430308 + ], + "geometry": [ + { "lat": 40.7503511, "lon": -73.9870355 }, + { "lat": 40.7504121, "lon": -73.9871766 }, + { "lat": 40.7504574, "lon": -73.9872874 } + ], + "tags": { + "highway": "unclassified", + "name": "West 35th Street", + "name:ru": "Западная 35-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 496983399, + "bounds": { + "minlat": 40.7491045, + "minlon": -73.9870355, + "maxlat": 40.7503511, + "maxlon": -73.9840705 + }, + "nodes": [ + 42434946, + 9965135061, + 6350462399, + 4886239172 + ], + "geometry": [ + { "lat": 40.7491045, "lon": -73.9840705 }, + { "lat": 40.7491542, "lon": -73.9841875 }, + { "lat": 40.7494537, "lon": -73.9849092 }, + { "lat": 40.7503511, "lon": -73.9870355 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lit": "yes", + "name": "West 35th Street", + "name:ru": "Западная 35-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 496985713, + "bounds": { + "minlat": 40.7381397, + "minlon": -74.0056100, + "maxlat": 40.7387641, + "maxlon": -74.0055102 + }, + "nodes": [ + 42431503, + 8307463653, + 8307463791, + 42436427 + ], + "geometry": [ + { "lat": 40.7387641, "lon": -74.0055102 }, + { "lat": 40.7387098, "lon": -74.0055189 }, + { "lat": 40.7381970, "lon": -74.0056008 }, + { "lat": 40.7381397, "lon": -74.0056100 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 496985714, + "bounds": { + "minlat": 40.7381289, + "minlon": -74.0056100, + "maxlat": 40.7381397, + "maxlon": -74.0041378 + }, + "nodes": [ + 42435581, + 6211332477, + 8307463710, + 8307463788, + 4685453635, + 42436427 + ], + "geometry": [ + { "lat": 40.7381289, "lon": -74.0041378 }, + { "lat": 40.7381299, "lon": -74.0042697 }, + { "lat": 40.7381304, "lon": -74.0043365 }, + { "lat": 40.7381387, "lon": -74.0054696 }, + { "lat": 40.7381390, "lon": -74.0055107 }, + { "lat": 40.7381397, "lon": -74.0056100 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Th-Fr 17:00-23:00; Sa 11:00-23:00; Su 11:00-22:00)", + "name": "Jane Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 496986803, + "bounds": { + "minlat": 40.7545910, + "minlon": -73.9991485, + "maxlat": 40.7570936, + "maxlon": -73.9973219 + }, + "nodes": [ + 42437670, + 5165644103, + 5481854591, + 8261122925, + 42455735, + 8261122924, + 5837182317, + 5837182316, + 8261122930, + 42452975, + 8261122929, + 9409760260, + 9409760272, + 5837182318, + 8261122941, + 42443975, + 8261122940, + 8288270402, + 42433644 + ], + "geometry": [ + { "lat": 40.7545910, "lon": -73.9991485 }, + { "lat": 40.7546919, "lon": -73.9990778 }, + { "lat": 40.7548366, "lon": -73.9989650 }, + { "lat": 40.7551987, "lon": -73.9987010 }, + { "lat": 40.7552565, "lon": -73.9986588 }, + { "lat": 40.7553151, "lon": -73.9986160 }, + { "lat": 40.7554639, "lon": -73.9985075 }, + { "lat": 40.7555349, "lon": -73.9984542 }, + { "lat": 40.7558090, "lon": -73.9982564 }, + { "lat": 40.7558737, "lon": -73.9982088 }, + { "lat": 40.7559331, "lon": -73.9981651 }, + { "lat": 40.7560097, "lon": -73.9981096 }, + { "lat": 40.7561150, "lon": -73.9980328 }, + { "lat": 40.7561892, "lon": -73.9979787 }, + { "lat": 40.7564295, "lon": -73.9978039 }, + { "lat": 40.7564802, "lon": -73.9977670 }, + { "lat": 40.7565625, "lon": -73.9977070 }, + { "lat": 40.7570491, "lon": -73.9973522 }, + { "lat": 40.7570936, "lon": -73.9973219 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 496986855, + "bounds": { + "minlat": 40.7398810, + "minlon": -74.0015550, + "maxlat": 40.7410800, + "maxlon": -73.9987130 + }, + "nodes": [ + 42435599, + 8262308792, + 11152128437, + 8429213025, + 42439830 + ], + "geometry": [ + { "lat": 40.7410800, "lon": -74.0015550 }, + { "lat": 40.7410224, "lon": -74.0014186 }, + { "lat": 40.7404047, "lon": -73.9999543 }, + { "lat": 40.7399368, "lon": -73.9988453 }, + { "lat": 40.7398810, "lon": -73.9987130 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 16th Street", + "name:ru": "Западная 16-я стрит", + "name_1": "West 16 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 496986969, + "bounds": { + "minlat": 40.7643240, + "minlon": -73.9800360, + "maxlat": 40.7655210, + "maxlon": -73.9771960 + }, + "nodes": [ + 42430384, + 10171655557, + 5402554392, + 3932923797, + 10170842505, + 42440022 + ], + "geometry": [ + { "lat": 40.7643240, "lon": -73.9771960 }, + { "lat": 40.7643831, "lon": -73.9773360 }, + { "lat": 40.7645055, "lon": -73.9776263 }, + { "lat": 40.7650450, "lon": -73.9789051 }, + { "lat": 40.7654631, "lon": -73.9798983 }, + { "lat": 40.7655210, "lon": -73.9800360 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "name_1": "West 57 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 496986970, + "bounds": { + "minlat": 40.7655210, + "minlon": -73.9800360, + "maxlat": 40.7662134, + "maxlon": -73.9795321 + }, + "nodes": [ + 42440025, + 10170842516, + 4794775922, + 13250576378, + 10170842506, + 42440022 + ], + "geometry": [ + { "lat": 40.7662134, "lon": -73.9795321 }, + { "lat": 40.7661351, "lon": -73.9795892 }, + { "lat": 40.7659870, "lon": -73.9796968 }, + { "lat": 40.7656894, "lon": -73.9799133 }, + { "lat": 40.7656239, "lon": -73.9799610 }, + { "lat": 40.7655210, "lon": -73.9800360 } + ], + "tags": { + "cycleway:left": "track", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 496986996, + "bounds": { + "minlat": 40.7225028, + "minlon": -73.9879896, + "maxlat": 40.7226441, + "maxlon": -73.9879176 + }, + "nodes": [ + 8821425914, + 4598752849, + 1919595914 + ], + "geometry": [ + { "lat": 40.7225028, "lon": -73.9879896 }, + { "lat": 40.7225573, "lon": -73.9879609 }, + { "lat": 40.7226441, "lon": -73.9879176 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 496986997, + "bounds": { + "minlat": 40.7214626, + "minlon": -73.9885157, + "maxlat": 40.7218307, + "maxlon": -73.9883266 + }, + "nodes": [ + 42432063, + 3314293705, + 4886266066 + ], + "geometry": [ + { "lat": 40.7214626, "lon": -73.9885157 }, + { "lat": 40.7215120, "lon": -73.9884905 }, + { "lat": 40.7218307, "lon": -73.9883266 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 496986998, + "bounds": { + "minlat": 40.7214626, + "minlon": -73.9890209, + "maxlat": 40.7216145, + "maxlon": -73.9885157 + }, + "nodes": [ + 42432060, + 3314293703, + 8231901006, + 42432063 + ], + "geometry": [ + { "lat": 40.7216145, "lon": -73.9890209 }, + { "lat": 40.7215865, "lon": -73.9889254 }, + { "lat": 40.7214828, "lon": -73.9885826 }, + { "lat": 40.7214626, "lon": -73.9885157 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (mo-su 12:00-21:00; Th-Sa 12:00-23:00)", + "motor_vehicle:conditional": "destination @ (mo-su 12:00-21:00; Th-Sa 12:00-23:00)", + "name": "Stanton Street", + "name:ko": "스탠턴 스트리트", + "name:ru": "Стэнтон-стрит", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7600270", + "wikipedia": "en:Stanton Street" + } +}, +{ + "type": "way", + "id": 496988369, + "bounds": { + "minlat": 40.7191062, + "minlon": -73.9897345, + "maxlat": 40.7194474, + "maxlon": -73.9895551 + }, + "nodes": [ + 42429766, + 5296792745, + 4886282364 + ], + "geometry": [ + { "lat": 40.7191062, "lon": -73.9897345 }, + { "lat": 40.7191974, "lon": -73.9896870 }, + { "lat": 40.7194474, "lon": -73.9895551 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 496989301, + "bounds": { + "minlat": 40.7387628, + "minlon": -74.0095413, + "maxlat": 40.7387652, + "maxlon": -74.0081110 + }, + "nodes": [ + 42431511, + 12162301599, + 8307642209, + 42431508 + ], + "geometry": [ + { "lat": 40.7387628, "lon": -74.0095413 }, + { "lat": 40.7387652, "lon": -74.0082657 }, + { "lat": 40.7387638, "lon": -74.0082030 }, + { "lat": 40.7387650, "lon": -74.0081110 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Horatio Street", + "name:etymology:wikidata": "Q365124", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 496989302, + "bounds": { + "minlat": 40.7387650, + "minlon": -74.0081110, + "maxlat": 40.7393829, + "maxlon": -74.0080522 + }, + "nodes": [ + 42455357, + 8262308734, + 11179349943, + 12162301598, + 8307642207, + 42431508 + ], + "geometry": [ + { "lat": 40.7393829, "lon": -74.0080522 }, + { "lat": 40.7393079, "lon": -74.0080576 }, + { "lat": 40.7390605, "lon": -74.0080778 }, + { "lat": 40.7388713, "lon": -74.0080925 }, + { "lat": 40.7388216, "lon": -74.0080982 }, + { "lat": 40.7387650, "lon": -74.0081110 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 496989355, + "bounds": { + "minlat": 40.7635954, + "minlon": -73.9814328, + "maxlat": 40.7655210, + "maxlon": -73.9800360 + }, + "nodes": [ + 42440022, + 10170842507, + 4794775937, + 4794775939, + 10170864623, + 42431549, + 10170864624, + 3463817014, + 42440020, + 3463817012, + 4784141035, + 4784141037, + 3463817010, + 42440015 + ], + "geometry": [ + { "lat": 40.7655210, "lon": -73.9800360 }, + { "lat": 40.7654326, "lon": -73.9800997 }, + { "lat": 40.7651636, "lon": -73.9802957 }, + { "lat": 40.7649528, "lon": -73.9804489 }, + { "lat": 40.7649044, "lon": -73.9804846 }, + { "lat": 40.7648393, "lon": -73.9805314 }, + { "lat": 40.7647973, "lon": -73.9805628 }, + { "lat": 40.7642812, "lon": -73.9809386 }, + { "lat": 40.7642270, "lon": -73.9809769 }, + { "lat": 40.7641719, "lon": -73.9810147 }, + { "lat": 40.7638755, "lon": -73.9812299 }, + { "lat": 40.7637065, "lon": -73.9813526 }, + { "lat": 40.7636582, "lon": -73.9813877 }, + { "lat": 40.7635954, "lon": -73.9814328 } + ], + "tags": { + "cycleway:left": "track", + "foot": "use_sidepath", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 496989957, + "bounds": { + "minlat": 40.7037626, + "minlon": -74.0076468, + "maxlat": 40.7042989, + "maxlon": -74.0070517 + }, + "nodes": [ + 42452630, + 10556966463, + 10556966466, + 10556966464, + 10556966465, + 10556966462, + 8276468452, + 8276468518, + 42444223 + ], + "geometry": [ + { "lat": 40.7042989, "lon": -74.0076468 }, + { "lat": 40.7042907, "lon": -74.0076465 }, + { "lat": 40.7042803, "lon": -74.0076451 }, + { "lat": 40.7042703, "lon": -74.0076421 }, + { "lat": 40.7042607, "lon": -74.0076363 }, + { "lat": 40.7042513, "lon": -74.0076270 }, + { "lat": 40.7042460, "lon": -74.0076207 }, + { "lat": 40.7038169, "lon": -74.0071163 }, + { "lat": 40.7037626, "lon": -74.0070517 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Gouverneur Lane", + "name:etymology:wikidata": "Q56742810", + "name:ko": "구버너 레인", + "name:ru": "Гувернёр-Лейн", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Gouverneur", + "tiger:name_type": "Ln", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005" + } +}, +{ + "type": "way", + "id": 496989959, + "bounds": { + "minlat": 40.7042693, + "minlon": -74.0087265, + "maxlat": 40.7046776, + "maxlon": -74.0081181 + }, + "nodes": [ + 42454600, + 8276468521, + 42421941 + ], + "geometry": [ + { "lat": 40.7046776, "lon": -74.0081181 }, + { "lat": 40.7046522, "lon": -74.0081540 }, + { "lat": 40.7042693, "lon": -74.0087265 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "turn:lanes:forward": "left;through|right" + } +}, +{ + "type": "way", + "id": 496990211, + "bounds": { + "minlat": 40.7182459, + "minlon": -73.9874583, + "maxlat": 40.7183916, + "maxlon": -73.9873785 + }, + "nodes": [ + 486867534, + 12195869780, + 42429782 + ], + "geometry": [ + { "lat": 40.7182459, "lon": -73.9874583 }, + { "lat": 40.7182903, "lon": -73.9874333 }, + { "lat": 40.7183916, "lon": -73.9873785 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Norfolk Street", + "name:etymology:wikidata": "Q23109", + "name:ko": "노퍽 스트리트", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 496990216, + "bounds": { + "minlat": 40.7179207, + "minlon": -73.9872677, + "maxlat": 40.7181708, + "maxlon": -73.9866412 + }, + "nodes": [ + 12195869754, + 12195869753, + 12195869752, + 12195869751, + 12195869755, + 5296792753, + 486867548 + ], + "geometry": [ + { "lat": 40.7181708, "lon": -73.9872677 }, + { "lat": 40.7180639, "lon": -73.9870177 }, + { "lat": 40.7180225, "lon": -73.9869121 }, + { "lat": 40.7179842, "lon": -73.9868134 }, + { "lat": 40.7179658, "lon": -73.9867644 }, + { "lat": 40.7179473, "lon": -73.9867154 }, + { "lat": 40.7179207, "lon": -73.9866412 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 496990369, + "bounds": { + "minlat": 40.7136604, + "minlon": -74.0036490, + "maxlat": 40.7141387, + "maxlon": -74.0034162 + }, + "nodes": [ + 42430535, + 1253070671, + 9377509564, + 12198027592, + 9377509565, + 12198027593, + 4625583185, + 12198027594, + 9121386338 + ], + "geometry": [ + { "lat": 40.7141387, "lon": -74.0034162 }, + { "lat": 40.7140403, "lon": -74.0034582 }, + { "lat": 40.7139018, "lon": -74.0035156 }, + { "lat": 40.7138593, "lon": -74.0035338 }, + { "lat": 40.7138232, "lon": -74.0035504 }, + { "lat": 40.7137930, "lon": -74.0035658 }, + { "lat": 40.7137410, "lon": -74.0035941 }, + { "lat": 40.7137062, "lon": -74.0036181 }, + { "lat": 40.7136604, "lon": -74.0036490 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 496990645, + "bounds": { + "minlat": 40.7100562, + "minlon": -74.0012106, + "maxlat": 40.7101928, + "maxlon": -74.0011123 + }, + "nodes": [ + 3884569931, + 3884569924 + ], + "geometry": [ + { "lat": 40.7101928, "lon": -74.0011123 }, + { "lat": 40.7100562, "lon": -74.0012106 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 496990647, + "bounds": { + "minlat": 40.7514392, + "minlon": -73.9760552, + "maxlat": 40.7533670, + "maxlon": -73.9746480 + }, + "nodes": [ + 42444049, + 10168841859, + 10168841840, + 42446977, + 10168841844, + 10171649194, + 42446971, + 10171649195, + 11337295606, + 10168841828, + 11337295604 + ], + "geometry": [ + { "lat": 40.7533670, "lon": -73.9746480 }, + { "lat": 40.7533149, "lon": -73.9746851 }, + { "lat": 40.7527908, "lon": -73.9750660 }, + { "lat": 40.7527410, "lon": -73.9751020 }, + { "lat": 40.7526903, "lon": -73.9751401 }, + { "lat": 40.7521740, "lon": -73.9755153 }, + { "lat": 40.7521215, "lon": -73.9755534 }, + { "lat": 40.7520697, "lon": -73.9755918 }, + { "lat": 40.7515698, "lon": -73.9759596 }, + { "lat": 40.7515303, "lon": -73.9759880 }, + { "lat": 40.7514392, "lon": -73.9760552 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 496992369, + "bounds": { + "minlat": 40.7313284, + "minlon": -73.9886210, + "maxlat": 40.7332979, + "maxlon": -73.9871866 + }, + "nodes": [ + 42449886, + 3627218180, + 12183286705, + 12183286707, + 3627218179, + 42446533, + 3627218181, + 12183286708, + 12183286710, + 3627218176, + 42436941, + 8309479667, + 12183286711, + 5266421747, + 12183286717, + 3985008869, + 42440729 + ], + "geometry": [ + { "lat": 40.7313284, "lon": -73.9886210 }, + { "lat": 40.7313857, "lon": -73.9885787 }, + { "lat": 40.7314328, "lon": -73.9885438 }, + { "lat": 40.7318702, "lon": -73.9882266 }, + { "lat": 40.7319123, "lon": -73.9881960 }, + { "lat": 40.7319665, "lon": -73.9881565 }, + { "lat": 40.7320237, "lon": -73.9881149 }, + { "lat": 40.7320679, "lon": -73.9880827 }, + { "lat": 40.7325086, "lon": -73.9877624 }, + { "lat": 40.7325503, "lon": -73.9877321 }, + { "lat": 40.7326183, "lon": -73.9876834 }, + { "lat": 40.7326676, "lon": -73.9876469 }, + { "lat": 40.7327138, "lon": -73.9876134 }, + { "lat": 40.7329386, "lon": -73.9874480 }, + { "lat": 40.7331524, "lon": -73.9872909 }, + { "lat": 40.7332042, "lon": -73.9872538 }, + { "lat": 40.7332979, "lon": -73.9871866 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 496992867, + "bounds": { + "minlat": 40.7591136, + "minlon": -73.9762894, + "maxlat": 40.7597993, + "maxlon": -73.9746825 + }, + "nodes": [ + 42446353, + 3977886241, + 3977886234, + 42445930 + ], + "geometry": [ + { "lat": 40.7597993, "lon": -73.9762894 }, + { "lat": 40.7597511, "lon": -73.9761647 }, + { "lat": 40.7591560, "lon": -73.9747810 }, + { "lat": 40.7591136, "lon": -73.9746825 } + ], + "tags": { + "cycleway:right": "track", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 52nd Street", + "name:ru": "Восточная 52-я стрит", + "name_1": "East 52 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 496992868, + "bounds": { + "minlat": 40.7591136, + "minlon": -73.9746825, + "maxlat": 40.7595517, + "maxlon": -73.9743623 + }, + "nodes": [ + 42445930, + 3977886236, + 9436315352 + ], + "geometry": [ + { "lat": 40.7591136, "lon": -73.9746825 }, + { "lat": 40.7591767, "lon": -73.9746356 }, + { "lat": 40.7595517, "lon": -73.9743623 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 496993762, + "bounds": { + "minlat": 40.7566036, + "minlon": -73.9765120, + "maxlat": 40.7572359, + "maxlon": -73.9760484 + }, + "nodes": [ + 42445926, + 10166333037, + 11043321018, + 11043134793, + 7788529720, + 42438881 + ], + "geometry": [ + { "lat": 40.7566036, "lon": -73.9765120 }, + { "lat": 40.7566623, "lon": -73.9764689 }, + { "lat": 40.7568951, "lon": -73.9762983 }, + { "lat": 40.7571230, "lon": -73.9761312 }, + { "lat": 40.7571770, "lon": -73.9760916 }, + { "lat": 40.7572359, "lon": -73.9760484 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 496993763, + "bounds": { + "minlat": 40.7386860, + "minlon": -73.9987130, + "maxlat": 40.7398810, + "maxlon": -73.9958740 + }, + "nodes": [ + 42439830, + 8429213022, + 9507816972, + 42430257 + ], + "geometry": [ + { "lat": 40.7398810, "lon": -73.9987130 }, + { "lat": 40.7398329, "lon": -73.9985900 }, + { "lat": 40.7387442, "lon": -73.9960119 }, + { "lat": 40.7386860, "lon": -73.9958740 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 16th Street", + "name:ru": "Западная 16-я стрит", + "name_1": "West 16 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 496993765, + "bounds": { + "minlat": 40.7389424, + "minlon": -73.9994021, + "maxlat": 40.7398810, + "maxlon": -73.9987130 + }, + "nodes": [ + 42439830, + 8429213024, + 8310246389, + 42439826, + 8310246390, + 7956044495 + ], + "geometry": [ + { "lat": 40.7398810, "lon": -73.9987130 }, + { "lat": 40.7398319, "lon": -73.9987493 }, + { "lat": 40.7393095, "lon": -73.9991383 }, + { "lat": 40.7392462, "lon": -73.9991824 }, + { "lat": 40.7391931, "lon": -73.9992210 }, + { "lat": 40.7389424, "lon": -73.9994021 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 496993920, + "bounds": { + "minlat": 40.7392462, + "minlon": -74.0019879, + "maxlat": 40.7404441, + "maxlon": -73.9991824 + }, + "nodes": [ + 42439826, + 8310246391, + 9007929218, + 8262308757, + 42435598 + ], + "geometry": [ + { "lat": 40.7392462, "lon": -73.9991824 }, + { "lat": 40.7393006, "lon": -73.9993121 }, + { "lat": 40.7403811, "lon": -74.0018411 }, + { "lat": 40.7403968, "lon": -74.0018776 }, + { "lat": 40.7404441, "lon": -74.0019879 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 15th Street", + "name:ru": "Западная 15-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497002542, + "bounds": { + "minlat": 40.7249299, + "minlon": -73.9920249, + "maxlat": 40.7256286, + "maxlon": -73.9903454 + }, + "nodes": [ + 1773084407, + 1773084392, + 12187431473, + 13520762292, + 7977873338, + 42442843 + ], + "geometry": [ + { "lat": 40.7256286, "lon": -73.9920249 }, + { "lat": 40.7255816, "lon": -73.9919068 }, + { "lat": 40.7255692, "lon": -73.9918748 }, + { "lat": 40.7251638, "lon": -73.9909035 }, + { "lat": 40.7249834, "lon": -73.9904713 }, + { "lat": 40.7249299, "lon": -73.9903454 } + ], + "tags": { + "alt_name": "Joey Ramone Place", + "alt_name:ko": "이스트 2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 2nd Street", + "name:ko": "이스트 2nd 스트리트", + "name:ru": "Восточная 2-я стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497002544, + "bounds": { + "minlat": 40.7232759, + "minlon": -73.9884461, + "maxlat": 40.7239400, + "maxlon": -73.9879681 + }, + "nodes": [ + 42443513, + 7977873317, + 6133388359, + 4968494266, + 42453601 + ], + "geometry": [ + { "lat": 40.7232759, "lon": -73.9884461 }, + { "lat": 40.7233378, "lon": -73.9884092 }, + { "lat": 40.7235182, "lon": -73.9882742 }, + { "lat": 40.7238801, "lon": -73.9880087 }, + { "lat": 40.7239400, "lon": -73.9879681 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 497074569, + "bounds": { + "minlat": 40.7662925, + "minlon": -73.9336280, + "maxlat": 40.7708638, + "maxlon": -73.9299088 + }, + "nodes": [ + 42843332, + 6452924965, + 6456425926, + 42810473, + 6456425925, + 12460662857, + 6456422125, + 42843338, + 6456422124, + 2403968914, + 7661754173, + 42843340, + 7661754174, + 42843342, + 6456419942, + 42843345, + 6456419946, + 2302479501, + 7706043317, + 3570422522, + 6452398351, + 42843348 + ], + "geometry": [ + { "lat": 40.7708638, "lon": -73.9299088 }, + { "lat": 40.7707975, "lon": -73.9299627 }, + { "lat": 40.7701157, "lon": -73.9305174 }, + { "lat": 40.7700484, "lon": -73.9305722 }, + { "lat": 40.7700059, "lon": -73.9306067 }, + { "lat": 40.7697382, "lon": -73.9308245 }, + { "lat": 40.7691894, "lon": -73.9312711 }, + { "lat": 40.7691254, "lon": -73.9313232 }, + { "lat": 40.7690793, "lon": -73.9313607 }, + { "lat": 40.7687319, "lon": -73.9316433 }, + { "lat": 40.7683336, "lon": -73.9319659 }, + { "lat": 40.7682614, "lon": -73.9320267 }, + { "lat": 40.7681993, "lon": -73.9320790 }, + { "lat": 40.7677176, "lon": -73.9324685 }, + { "lat": 40.7672348, "lon": -73.9328614 }, + { "lat": 40.7671820, "lon": -73.9329043 }, + { "lat": 40.7671403, "lon": -73.9329382 }, + { "lat": 40.7667310, "lon": -73.9332712 }, + { "lat": 40.7666084, "lon": -73.9333709 }, + { "lat": 40.7664014, "lon": -73.9335394 }, + { "lat": 40.7663673, "lon": -73.9335672 }, + { "lat": 40.7662925, "lon": -73.9336280 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "14th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497074570, + "bounds": { + "minlat": 40.7698890, + "minlon": -73.9299088, + "maxlat": 40.7708638, + "maxlon": -73.9278070 + }, + "nodes": [ + 42843332, + 6452924966, + 5538998196, + 5538998195, + 5538998197, + 3570422535, + 42826042 + ], + "geometry": [ + { "lat": 40.7708638, "lon": -73.9299088 }, + { "lat": 40.7708210, "lon": -73.9298166 }, + { "lat": 40.7707856, "lon": -73.9297403 }, + { "lat": 40.7707197, "lon": -73.9295980 }, + { "lat": 40.7700587, "lon": -73.9281729 }, + { "lat": 40.7699489, "lon": -73.9279360 }, + { "lat": 40.7698890, "lon": -73.9278070 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "name": "30th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497137311, + "bounds": { + "minlat": 40.7184658, + "minlon": -73.9528124, + "maxlat": 40.7187824, + "maxlon": -73.9523974 + }, + "nodes": [ + 42512055, + 7712113200, + 6228178114, + 42526495 + ], + "geometry": [ + { "lat": 40.7187824, "lon": -73.9523974 }, + { "lat": 40.7187586, "lon": -73.9525012 }, + { "lat": 40.7185276, "lon": -73.9527604 }, + { "lat": 40.7184658, "lon": -73.9528124 } + ], + "tags": { + "highway": "residential", + "name": "Roebling Street", + "name:etymology:wikidata": "Q77237", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 497143249, + "bounds": { + "minlat": 40.7181400, + "minlon": -73.9552510, + "maxlat": 40.7217038, + "maxlon": -73.9506513 + }, + "nodes": [ + 42509216, + 2548042170, + 1709314932, + 42509221, + 370212351, + 370212410, + 3865279491, + 42509228, + 9794890662, + 6245642014, + 42509232, + 6245642013, + 9794890418, + 42482469, + 9794890417, + 6248588439, + 42492546 + ], + "geometry": [ + { "lat": 40.7217038, "lon": -73.9506513 }, + { "lat": 40.7216515, "lon": -73.9507403 }, + { "lat": 40.7204906, "lon": -73.9526659 }, + { "lat": 40.7204444, "lon": -73.9527379 }, + { "lat": 40.7203760, "lon": -73.9528554 }, + { "lat": 40.7200011, "lon": -73.9532534 }, + { "lat": 40.7198509, "lon": -73.9534135 }, + { "lat": 40.7197980, "lon": -73.9534690 }, + { "lat": 40.7197551, "lon": -73.9535153 }, + { "lat": 40.7192963, "lon": -73.9540066 }, + { "lat": 40.7192460, "lon": -73.9540610 }, + { "lat": 40.7191949, "lon": -73.9541158 }, + { "lat": 40.7187466, "lon": -73.9545984 }, + { "lat": 40.7186940, "lon": -73.9546550 }, + { "lat": 40.7186446, "lon": -73.9547082 }, + { "lat": 40.7181944, "lon": -73.9551925 }, + { "lat": 40.7181400, "lon": -73.9552510 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Driggs Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497154281, + "bounds": { + "minlat": 40.7675409, + "minlon": -73.9532494, + "maxlat": 40.7700880, + "maxlon": -73.9514050 + }, + "nodes": [ + 42428010, + 6670244829, + 7136749260, + 7136749255, + 6689923821, + 42428012, + 6689923823, + 6689923819, + 42428013, + 6689923817, + 6689923815, + 42428014, + 6689923816, + 6689923797, + 42428015 + ], + "geometry": [ + { "lat": 40.7675409, "lon": -73.9532494 }, + { "lat": 40.7676038, "lon": -73.9532038 }, + { "lat": 40.7677545, "lon": -73.9530947 }, + { "lat": 40.7679704, "lon": -73.9529384 }, + { "lat": 40.7681203, "lon": -73.9528298 }, + { "lat": 40.7681722, "lon": -73.9527922 }, + { "lat": 40.7682314, "lon": -73.9527494 }, + { "lat": 40.7687512, "lon": -73.9523730 }, + { "lat": 40.7688110, "lon": -73.9523297 }, + { "lat": 40.7688709, "lon": -73.9522863 }, + { "lat": 40.7693935, "lon": -73.9519079 }, + { "lat": 40.7694509, "lon": -73.9518664 }, + { "lat": 40.7694999, "lon": -73.9518309 }, + { "lat": 40.7700282, "lon": -73.9514483 }, + { "lat": 40.7700880, "lon": -73.9514050 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 497165235, + "bounds": { + "minlat": 40.7150716, + "minlon": -73.9421615, + "maxlat": 40.7155353, + "maxlon": -73.9411530 + }, + "nodes": [ + 7722378710, + 9695771717, + 42489470 + ], + "geometry": [ + { "lat": 40.7150716, "lon": -73.9421615 }, + { "lat": 40.7151240, "lon": -73.9420469 }, + { "lat": 40.7155353, "lon": -73.9411530 } + ], + "tags": { + "highway": "residential", + "name": "Maspeth Avenue", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 497165753, + "bounds": { + "minlat": 40.7590978, + "minlon": -73.9727039, + "maxlat": 40.7616520, + "maxlon": -73.9708483 + }, + "nodes": [ + 596775935, + 10125228005, + 12834723231, + 10125228001, + 596775951, + 10125228006, + 12834723233, + 10125228010, + 596775907, + 10168547784, + 12834723238, + 10125228012, + 596775919, + 10165986945, + 12834723245, + 3977886235, + 596775900 + ], + "geometry": [ + { "lat": 40.7616520, "lon": -73.9708483 }, + { "lat": 40.7615545, "lon": -73.9709187 }, + { "lat": 40.7610846, "lon": -73.9712577 }, + { "lat": 40.7610377, "lon": -73.9712915 }, + { "lat": 40.7609819, "lon": -73.9713318 }, + { "lat": 40.7609235, "lon": -73.9713741 }, + { "lat": 40.7604546, "lon": -73.9717161 }, + { "lat": 40.7604144, "lon": -73.9717455 }, + { "lat": 40.7603618, "lon": -73.9717840 }, + { "lat": 40.7602965, "lon": -73.9718320 }, + { "lat": 40.7598338, "lon": -73.9721712 }, + { "lat": 40.7597847, "lon": -73.9722072 }, + { "lat": 40.7597298, "lon": -73.9722474 }, + { "lat": 40.7596675, "lon": -73.9722924 }, + { "lat": 40.7592088, "lon": -73.9726230 }, + { "lat": 40.7591605, "lon": -73.9726578 }, + { "lat": 40.7590978, "lon": -73.9727039 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 497165754, + "bounds": { + "minlat": 40.7615775, + "minlon": -73.9708483, + "maxlat": 40.7616520, + "maxlon": -73.9706710 + }, + "nodes": [ + 596775935, + 42432834 + ], + "geometry": [ + { "lat": 40.7616520, "lon": -73.9708483 }, + { "lat": 40.7615775, "lon": -73.9706710 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 497165756, + "bounds": { + "minlat": 40.7590253, + "minlon": -73.9725324, + "maxlat": 40.7601854, + "maxlon": -73.9716885 + }, + "nodes": [ + 42436703, + 3977886231, + 12834723236, + 10165986944, + 42456611, + 10125228011, + 12834723234 + ], + "geometry": [ + { "lat": 40.7590253, "lon": -73.9725324 }, + { "lat": 40.7590883, "lon": -73.9724881 }, + { "lat": 40.7595512, "lon": -73.9721484 }, + { "lat": 40.7595946, "lon": -73.9721165 }, + { "lat": 40.7596534, "lon": -73.9720733 }, + { "lat": 40.7597117, "lon": -73.9720312 }, + { "lat": 40.7601854, "lon": -73.9716885 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 497165757, + "bounds": { + "minlat": 40.7609304, + "minlon": -73.9706710, + "maxlat": 40.7615775, + "maxlon": -73.9691328 + }, + "nodes": [ + 42432834, + 10125227999, + 12834723227, + 8950382042, + 11043182107, + 10165922696, + 42432847 + ], + "geometry": [ + { "lat": 40.7615775, "lon": -73.9706710 }, + { "lat": 40.7615274, "lon": -73.9705519 }, + { "lat": 40.7615038, "lon": -73.9704957 }, + { "lat": 40.7612500, "lon": -73.9698924 }, + { "lat": 40.7610896, "lon": -73.9695114 }, + { "lat": 40.7609764, "lon": -73.9692426 }, + { "lat": 40.7609304, "lon": -73.9691328 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 497191099, + "bounds": { + "minlat": 40.7245758, + "minlon": -74.0077594, + "maxlat": 40.7251935, + "maxlon": -74.0076538 + }, + "nodes": [ + 42432116, + 8429031608, + 42436353 + ], + "geometry": [ + { "lat": 40.7245758, "lon": -74.0077594 }, + { "lat": 40.7251252, "lon": -74.0076645 }, + { "lat": 40.7251935, "lon": -74.0076538 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 497250986, + "bounds": { + "minlat": 40.8101762, + "minlon": -73.9511777, + "maxlat": 40.8108430, + "maxlon": -73.9506800 + }, + "nodes": [ + 42435805, + 5266458371, + 10171508869, + 4888388399 + ], + "geometry": [ + { "lat": 40.8101762, "lon": -73.9511777 }, + { "lat": 40.8102799, "lon": -73.9511003 }, + { "lat": 40.8107933, "lon": -73.9507172 }, + { "lat": 40.8108430, "lon": -73.9506800 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "parking:lane:both": "parallel", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 497250989, + "bounds": { + "minlat": 40.8077750, + "minlon": -73.9529182, + "maxlat": 40.8082350, + "maxlon": -73.9525797 + }, + "nodes": [ + 6431058183, + 11298919655, + 42435794 + ], + "geometry": [ + { "lat": 40.8077750, "lon": -73.9529182 }, + { "lat": 40.8081802, "lon": -73.9526200 }, + { "lat": 40.8082350, "lon": -73.9525797 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "parking:lane:both": "parallel", + "parking:lane:right": "parallel", + "sidewalk:both": "separate", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 497250990, + "bounds": { + "minlat": 40.8101762, + "minlon": -73.9518797, + "maxlat": 40.8104687, + "maxlon": -73.9511777 + }, + "nodes": [ + 42435805, + 5266458369, + 8702065993, + 4888388400 + ], + "geometry": [ + { "lat": 40.8101762, "lon": -73.9511777 }, + { "lat": 40.8102320, "lon": -73.9513115 }, + { "lat": 40.8104174, "lon": -73.9517566 }, + { "lat": 40.8104687, "lon": -73.9518797 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 497250991, + "bounds": { + "minlat": 40.8107673, + "minlon": -73.9535767, + "maxlat": 40.8111831, + "maxlon": -73.9525905 + }, + "nodes": [ + 42432929, + 8225869606, + 7658602373, + 12855037892 + ], + "geometry": [ + { "lat": 40.8107673, "lon": -73.9525905 }, + { "lat": 40.8108245, "lon": -73.9527283 }, + { "lat": 40.8110098, "lon": -73.9531682 }, + { "lat": 40.8111831, "lon": -73.9535767 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 497251085, + "bounds": { + "minlat": 40.7620729, + "minlon": -73.9652142, + "maxlat": 40.7634317, + "maxlon": -73.9619899 + }, + "nodes": [ + 42449982, + 10166509665, + 5373594221, + 8112585805, + 42442963, + 8112585801, + 6747067555, + 42423752 + ], + "geometry": [ + { "lat": 40.7634317, "lon": -73.9652142 }, + { "lat": 40.7633737, "lon": -73.9650755 }, + { "lat": 40.7632177, "lon": -73.9647028 }, + { "lat": 40.7625463, "lon": -73.9630984 }, + { "lat": 40.7624971, "lon": -73.9629831 }, + { "lat": 40.7624378, "lon": -73.9628444 }, + { "lat": 40.7621085, "lon": -73.9620733 }, + { "lat": 40.7620729, "lon": -73.9619899 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lit": "yes", + "name": "East 62nd Street", + "name:ru": "Восточная 62-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497251086, + "bounds": { + "minlat": 40.7634317, + "minlon": -73.9652142, + "maxlat": 40.7653085, + "maxlon": -73.9638433 + }, + "nodes": [ + 42449982, + 10166509666, + 10166171496, + 42429980, + 10166171498, + 10166171492, + 42431656, + 10166171491, + 10125112352, + 42449985 + ], + "geometry": [ + { "lat": 40.7634317, "lon": -73.9652142 }, + { "lat": 40.7634870, "lon": -73.9651736 }, + { "lat": 40.7640021, "lon": -73.9647960 }, + { "lat": 40.7640570, "lon": -73.9647558 }, + { "lat": 40.7641212, "lon": -73.9647092 }, + { "lat": 40.7646274, "lon": -73.9643392 }, + { "lat": 40.7646823, "lon": -73.9642995 }, + { "lat": 40.7647379, "lon": -73.9642591 }, + { "lat": 40.7652537, "lon": -73.9638832 }, + { "lat": 40.7653085, "lon": -73.9638433 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 497252083, + "bounds": { + "minlat": 40.8143012, + "minlon": -73.9530769, + "maxlat": 40.8183904, + "maxlon": -73.9508662 + }, + "nodes": [ + 42448607, + 10171865597, + 10170977539, + 42448611, + 10170977537, + 10170977530, + 42438246, + 10170977532, + 42448616, + 9150598860, + 9150598861, + 9150598862, + 9150598859, + 10170977521, + 42434097, + 10170977525, + 5539546683, + 7024563826, + 7024563822, + 7024563824, + 42448621, + 9150598864, + 5539546686, + 7024563823, + 5539546689, + 7024563825, + 10171129700, + 42438839 + ], + "geometry": [ + { "lat": 40.8143012, "lon": -73.9530769 }, + { "lat": 40.8143863, "lon": -73.9530654 }, + { "lat": 40.8150124, "lon": -73.9529806 }, + { "lat": 40.8150729, "lon": -73.9529724 }, + { "lat": 40.8151508, "lon": -73.9529618 }, + { "lat": 40.8158002, "lon": -73.9528737 }, + { "lat": 40.8158605, "lon": -73.9528655 }, + { "lat": 40.8159484, "lon": -73.9528524 }, + { "lat": 40.8164391, "lon": -73.9527792 }, + { "lat": 40.8165077, "lon": -73.9527578 }, + { "lat": 40.8165707, "lon": -73.9527336 }, + { "lat": 40.8166292, "lon": -73.9526968 }, + { "lat": 40.8166892, "lon": -73.9526524 }, + { "lat": 40.8171725, "lon": -73.9523057 }, + { "lat": 40.8172259, "lon": -73.9522674 }, + { "lat": 40.8172875, "lon": -73.9522226 }, + { "lat": 40.8175255, "lon": -73.9520498 }, + { "lat": 40.8177681, "lon": -73.9518751 }, + { "lat": 40.8178202, "lon": -73.9518342 }, + { "lat": 40.8178684, "lon": -73.9517892 }, + { "lat": 40.8179072, "lon": -73.9517479 }, + { "lat": 40.8179520, "lon": -73.9516964 }, + { "lat": 40.8180012, "lon": -73.9516276 }, + { "lat": 40.8180416, "lon": -73.9515621 }, + { "lat": 40.8180847, "lon": -73.9514822 }, + { "lat": 40.8183246, "lon": -73.9509977 }, + { "lat": 40.8183471, "lon": -73.9509498 }, + { "lat": 40.8183904, "lon": -73.9508662 } + ], + "tags": { + "highway": "tertiary", + "name": "Convent Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497252084, + "bounds": { + "minlat": 40.8183502, + "minlon": -73.9508662, + "maxlat": 40.8183904, + "maxlon": -73.9507717 + }, + "nodes": [ + 42438839, + 3898480791 + ], + "geometry": [ + { "lat": 40.8183904, "lon": -73.9508662 }, + { "lat": 40.8183502, "lon": -73.9507717 } + ], + "tags": { + "highway": "tertiary", + "name": "West 135th Street" + } +}, +{ + "type": "way", + "id": 497253396, + "bounds": { + "minlat": 40.7710443, + "minlon": -73.9499325, + "maxlat": 40.7711878, + "maxlon": -73.9495942 + }, + "nodes": [ + 9906826316, + 4888399301 + ], + "geometry": [ + { "lat": 40.7711878, "lon": -73.9499325 }, + { "lat": 40.7710443, "lon": -73.9495942 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 497253397, + "bounds": { + "minlat": 40.7716726, + "minlon": -73.9517545, + "maxlat": 40.7719569, + "maxlon": -73.9510848 + }, + "nodes": [ + 9906826314, + 9906826315 + ], + "geometry": [ + { "lat": 40.7719569, "lon": -73.9517545 }, + { "lat": 40.7716726, "lon": -73.9510848 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 497253398, + "bounds": { + "minlat": 40.7713990, + "minlon": -73.9504381, + "maxlat": 40.7718489, + "maxlon": -73.9501042 + }, + "nodes": [ + 42428020, + 6689923789, + 4888399302 + ], + "geometry": [ + { "lat": 40.7713990, "lon": -73.9504381 }, + { "lat": 40.7714900, "lon": -73.9503706 }, + { "lat": 40.7718489, "lon": -73.9501042 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 497253399, + "bounds": { + "minlat": 40.7707171, + "minlon": -73.9509410, + "maxlat": 40.7713990, + "maxlon": -73.9504381 + }, + "nodes": [ + 42428016, + 6689923791, + 7102342429, + 6689923787, + 42428020 + ], + "geometry": [ + { "lat": 40.7707171, "lon": -73.9509410 }, + { "lat": 40.7707730, "lon": -73.9508998 }, + { "lat": 40.7709797, "lon": -73.9507474 }, + { "lat": 40.7713033, "lon": -73.9505087 }, + { "lat": 40.7713990, "lon": -73.9504381 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 497256079, + "bounds": { + "minlat": 40.7565824, + "minlon": -73.9297499, + "maxlat": 40.7572128, + "maxlon": -73.9292409 + }, + "nodes": [ + 4888423693, + 3569401979, + 42849740 + ], + "geometry": [ + { "lat": 40.7572128, "lon": -73.9292409 }, + { "lat": 40.7566552, "lon": -73.9296911 }, + { "lat": 40.7565824, "lon": -73.9297499 } + ], + "tags": { + "cycleway": "track", + "highway": "secondary", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "31st Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497256080, + "bounds": { + "minlat": 40.7562130, + "minlon": -73.9296700, + "maxlat": 40.7565451, + "maxlon": -73.9289584 + }, + "nodes": [ + 12356856284, + 3569401976, + 6450677884, + 42905205 + ], + "geometry": [ + { "lat": 40.7565451, "lon": -73.9296700 }, + { "lat": 40.7565249, "lon": -73.9296268 }, + { "lat": 40.7562460, "lon": -73.9290292 }, + { "lat": 40.7562130, "lon": -73.9289584 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "36th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497256081, + "bounds": { + "minlat": 40.7573288, + "minlon": -73.9342599, + "maxlat": 40.7587025, + "maxlon": -73.9313490 + }, + "nodes": [ + 42861185, + 7949838923, + 3569402113, + 42818563, + 3569402111, + 42817408, + 3569402103, + 3569402095, + 42833332 + ], + "geometry": [ + { "lat": 40.7587025, "lon": -73.9342599 }, + { "lat": 40.7584476, "lon": -73.9337078 }, + { "lat": 40.7583269, "lon": -73.9334490 }, + { "lat": 40.7582926, "lon": -73.9333798 }, + { "lat": 40.7582370, "lon": -73.9332687 }, + { "lat": 40.7577054, "lon": -73.9321558 }, + { "lat": 40.7576711, "lon": -73.9320825 }, + { "lat": 40.7573724, "lon": -73.9314423 }, + { "lat": 40.7573288, "lon": -73.9313490 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "36th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497257602, + "bounds": { + "minlat": 40.6993740, + "minlon": -73.9472310, + "maxlat": 40.7001135, + "maxlon": -73.9471050 + }, + "nodes": [ + 42504093, + 9755373183, + 4915030914, + 11229826627, + 10632853902, + 10103441341, + 42514342 + ], + "geometry": [ + { "lat": 40.7001135, "lon": -73.9472209 }, + { "lat": 40.7000464, "lon": -73.9472287 }, + { "lat": 40.7000181, "lon": -73.9472310 }, + { "lat": 40.6998033, "lon": -73.9471890 }, + { "lat": 40.6996676, "lon": -73.9471624 }, + { "lat": 40.6994644, "lon": -73.9471227 }, + { "lat": 40.6993740, "lon": -73.9471050 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Tompkins Avenue", + "name:etymology:wikidata": "Q223545", + "oneway": "yes", + "sidewalk": "separate", + "tiger:zip_left": "11216", + "tiger:zip_right": "11216" + } +}, +{ + "type": "way", + "id": 497257924, + "bounds": { + "minlat": 40.7172161, + "minlon": -73.9347055, + "maxlat": 40.7197627, + "maxlon": -73.9248161 + }, + "nodes": [ + 5838943038, + 9937797989, + 5482301711, + 5482303014, + 42489494, + 8288989468, + 5482302963, + 5482302993, + 7886290946, + 7825997327, + 7238128889, + 10225788171, + 10225788179, + 7238128891, + 5482675472, + 5482302935, + 7238128892, + 10689800969, + 42489500 + ], + "geometry": [ + { "lat": 40.7172161, "lon": -73.9347055 }, + { "lat": 40.7172493, "lon": -73.9345766 }, + { "lat": 40.7177732, "lon": -73.9325419 }, + { "lat": 40.7179891, "lon": -73.9317035 }, + { "lat": 40.7180129, "lon": -73.9316112 }, + { "lat": 40.7181538, "lon": -73.9310640 }, + { "lat": 40.7183496, "lon": -73.9303036 }, + { "lat": 40.7185590, "lon": -73.9294837 }, + { "lat": 40.7186148, "lon": -73.9292692 }, + { "lat": 40.7187345, "lon": -73.9288087 }, + { "lat": 40.7187405, "lon": -73.9287857 }, + { "lat": 40.7188256, "lon": -73.9284413 }, + { "lat": 40.7190274, "lon": -73.9276672 }, + { "lat": 40.7191214, "lon": -73.9273067 }, + { "lat": 40.7193023, "lon": -73.9266041 }, + { "lat": 40.7193557, "lon": -73.9263989 }, + { "lat": 40.7195416, "lon": -73.9256748 }, + { "lat": 40.7197570, "lon": -73.9248384 }, + { "lat": 40.7197627, "lon": -73.9248161 } + ], + "tags": { + "highway": "unclassified", + "name": "Maspeth Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 497257925, + "bounds": { + "minlat": 40.7167864, + "minlon": -73.9365453, + "maxlat": 40.7172108, + "maxlon": -73.9363312 + }, + "nodes": [ + 42489486, + 9695771683, + 2805340010 + ], + "geometry": [ + { "lat": 40.7167864, "lon": -73.9363312 }, + { "lat": 40.7168750, "lon": -73.9363781 }, + { "lat": 40.7172108, "lon": -73.9365453 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "2", + "name": "Morgan Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497258108, + "bounds": { + "minlat": 40.7643240, + "minlon": -73.9771960, + "maxlat": 40.7652917, + "maxlon": -73.9764956 + }, + "nodes": [ + 42430384, + 10171655555, + 10171655563, + 42430390, + 10171655564, + 11220661302 + ], + "geometry": [ + { "lat": 40.7643240, "lon": -73.9771960 }, + { "lat": 40.7644263, "lon": -73.9771221 }, + { "lat": 40.7649463, "lon": -73.9767469 }, + { "lat": 40.7650041, "lon": -73.9767052 }, + { "lat": 40.7650654, "lon": -73.9766608 }, + { "lat": 40.7652917, "lon": -73.9764956 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete", + "width": "18.5", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 497258109, + "bounds": { + "minlat": 40.7629723, + "minlon": -73.9771960, + "maxlat": 40.7643240, + "maxlon": -73.9739744 + }, + "nodes": [ + 42430384, + 10171655554, + 11303266587, + 6654368342, + 9971383727, + 42432818 + ], + "geometry": [ + { "lat": 40.7643240, "lon": -73.9771960 }, + { "lat": 40.7642673, "lon": -73.9770610 }, + { "lat": 40.7638839, "lon": -73.9761486 }, + { "lat": 40.7638777, "lon": -73.9761340 }, + { "lat": 40.7630255, "lon": -73.9741013 }, + { "lat": 40.7629723, "lon": -73.9739744 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "name_1": "West 57 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 497258674, + "bounds": { + "minlat": 40.7619700, + "minlon": -73.9254828, + "maxlat": 40.7620209, + "maxlon": -73.9253800 + }, + "nodes": [ + 12356872980, + 42849730 + ], + "geometry": [ + { "lat": 40.7620209, "lon": -73.9254828 }, + { "lat": 40.7619700, "lon": -73.9253800 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "Broadway", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497258675, + "bounds": { + "minlat": 40.7627250, + "minlon": -73.9316965, + "maxlat": 40.7652267, + "maxlon": -73.9269880 + }, + "nodes": [ + 42826064, + 4971257874, + 2403986924, + 6452415989, + 42882970, + 6452415991, + 8254056516, + 6452415996, + 42818528, + 6304699415, + 10210486353, + 5391427726, + 5391427727, + 6452416002, + 42833321 + ], + "geometry": [ + { "lat": 40.7652267, "lon": -73.9316965 }, + { "lat": 40.7651642, "lon": -73.9315839 }, + { "lat": 40.7647888, "lon": -73.9309038 }, + { "lat": 40.7645294, "lon": -73.9304343 }, + { "lat": 40.7644906, "lon": -73.9303640 }, + { "lat": 40.7644517, "lon": -73.9302935 }, + { "lat": 40.7636998, "lon": -73.9289325 }, + { "lat": 40.7634653, "lon": -73.9285096 }, + { "lat": 40.7634176, "lon": -73.9284234 }, + { "lat": 40.7633718, "lon": -73.9283403 }, + { "lat": 40.7632577, "lon": -73.9281229 }, + { "lat": 40.7628863, "lon": -73.9273335 }, + { "lat": 40.7627946, "lon": -73.9271392 }, + { "lat": 40.7627609, "lon": -73.9270621 }, + { "lat": 40.7627250, "lon": -73.9269880 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "Broadway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497258676, + "bounds": { + "minlat": 40.7596656, + "minlon": -73.9272514, + "maxlat": 40.7619700, + "maxlon": -73.9253800 + }, + "nodes": [ + 42849730, + 4888453869, + 10891946389, + 10894218743, + 13236585110, + 3864490557, + 8506445599, + 8506445594, + 4971257834, + 42824124 + ], + "geometry": [ + { "lat": 40.7619700, "lon": -73.9253800 }, + { "lat": 40.7619019, "lon": -73.9254363 }, + { "lat": 40.7618604, "lon": -73.9254700 }, + { "lat": 40.7616046, "lon": -73.9256725 }, + { "lat": 40.7612423, "lon": -73.9259701 }, + { "lat": 40.7608496, "lon": -73.9262927 }, + { "lat": 40.7605809, "lon": -73.9265098 }, + { "lat": 40.7604480, "lon": -73.9266172 }, + { "lat": 40.7597389, "lon": -73.9271920 }, + { "lat": 40.7596656, "lon": -73.9272514 } + ], + "tags": { + "cycleway": "track", + "highway": "secondary", + "lit": "yes", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "31st Street", + "oneway": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497258677, + "bounds": { + "minlat": 40.7643507, + "minlon": -73.9234566, + "maxlat": 40.7666133, + "maxlon": -73.9216178 + }, + "nodes": [ + 5043598621, + 10891946393, + 6406731494, + 42849245, + 10891946392, + 6406731735, + 42849727 + ], + "geometry": [ + { "lat": 40.7666133, "lon": -73.9216178 }, + { "lat": 40.7653187, "lon": -73.9226659 }, + { "lat": 40.7652814, "lon": -73.9226961 }, + { "lat": 40.7652260, "lon": -73.9227410 }, + { "lat": 40.7651476, "lon": -73.9228048 }, + { "lat": 40.7644377, "lon": -73.9233825 }, + { "lat": 40.7643507, "lon": -73.9234566 } + ], + "tags": { + "cycleway": "track", + "foot": "yes", + "highway": "secondary", + "lanes": "2", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "31st Street", + "oneway": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497259111, + "bounds": { + "minlat": 40.7906269, + "minlon": -73.9446750, + "maxlat": 40.7915720, + "maxlon": -73.9424329 + }, + "nodes": [ + 42450057, + 4970497093, + 7076032954, + 7076032968, + 8267763553, + 7076032959, + 6216541785, + 42443068 + ], + "geometry": [ + { "lat": 40.7915720, "lon": -73.9446750 }, + { "lat": 40.7915165, "lon": -73.9445435 }, + { "lat": 40.7914669, "lon": -73.9444258 }, + { "lat": 40.7914247, "lon": -73.9443257 }, + { "lat": 40.7909145, "lon": -73.9431152 }, + { "lat": 40.7907748, "lon": -73.9427838 }, + { "lat": 40.7906880, "lon": -73.9425778 }, + { "lat": 40.7906269, "lon": -73.9424329 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "no", + "sidewalk": "both" + } +}, +{ + "type": "way", + "id": 497261817, + "bounds": { + "minlat": 40.7374945, + "minlon": -73.9350527, + "maxlat": 40.7377897, + "maxlon": -73.9349617 + }, + "nodes": [ + 42866373, + 9982697938, + 9179114941, + 277385050 + ], + "geometry": [ + { "lat": 40.7377897, "lon": -73.9349617 }, + { "lat": 40.7375673, "lon": -73.9350240 }, + { "lat": 40.7375351, "lon": -73.9350354 }, + { "lat": 40.7374945, "lon": -73.9350527 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Van Dam Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497262700, + "bounds": { + "minlat": 40.8133573, + "minlon": -73.9451787, + "maxlat": 40.8134231, + "maxlon": -73.9450192 + }, + "nodes": [ + 42429536, + 2141026534 + ], + "geometry": [ + { "lat": 40.8134231, "lon": -73.9451787 }, + { "lat": 40.8133573, "lon": -73.9450192 } + ], + "tags": { + "highway": "residential", + "name": "West 132nd Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 497262701, + "bounds": { + "minlat": 40.8134231, + "minlon": -73.9451787, + "maxlat": 40.8137713, + "maxlon": -73.9449282 + }, + "nodes": [ + 9153603254, + 10171603036, + 42429536 + ], + "geometry": [ + { "lat": 40.8137713, "lon": -73.9449282 }, + { "lat": 40.8134883, "lon": -73.9451318 }, + { "lat": 40.8134231, "lon": -73.9451787 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 497262702, + "bounds": { + "minlat": 40.8140459, + "minlon": -73.9447305, + "maxlat": 40.8146691, + "maxlon": -73.9442672 + }, + "nodes": [ + 42436003, + 10170605759, + 10170797782, + 42434111 + ], + "geometry": [ + { "lat": 40.8146691, "lon": -73.9442672 }, + { "lat": 40.8146157, "lon": -73.9443069 }, + { "lat": 40.8141078, "lon": -73.9446845 }, + { "lat": 40.8140459, "lon": -73.9447305 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 497262775, + "bounds": { + "minlat": 40.8041328, + "minlon": -73.9666013, + "maxlat": 40.8047876, + "maxlon": -73.9661339 + }, + "nodes": [ + 3579432156, + 7004393039, + 5410679466, + 7004393038, + 1506445808 + ], + "geometry": [ + { "lat": 40.8041328, "lon": -73.9666013 }, + { "lat": 40.8042236, "lon": -73.9665360 }, + { "lat": 40.8044878, "lon": -73.9663576 }, + { "lat": 40.8047360, "lon": -73.9661723 }, + { "lat": 40.8047876, "lon": -73.9661339 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 497262776, + "bounds": { + "minlat": 40.8042152, + "minlon": -73.9667983, + "maxlat": 40.8048633, + "maxlon": -73.9663136 + }, + "nodes": [ + 42428790, + 7004393037, + 7004393040, + 42428782 + ], + "geometry": [ + { "lat": 40.8048633, "lon": -73.9663136 }, + { "lat": 40.8048129, "lon": -73.9663514 }, + { "lat": 40.8043103, "lon": -73.9667338 }, + { "lat": 40.8042152, "lon": -73.9667983 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 497262890, + "bounds": { + "minlat": 40.7692825, + "minlon": -73.9278070, + "maxlat": 40.7698890, + "maxlon": -73.9264763 + }, + "nodes": [ + 42826042, + 3570422534, + 5538998200, + 6452971015, + 42874036 + ], + "geometry": [ + { "lat": 40.7698890, "lon": -73.9278070 }, + { "lat": 40.7698385, "lon": -73.9276962 }, + { "lat": 40.7697280, "lon": -73.9274536 }, + { "lat": 40.7693199, "lon": -73.9265590 }, + { "lat": 40.7692825, "lon": -73.9264763 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "name": "30th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497262892, + "bounds": { + "minlat": 40.7690600, + "minlon": -73.9284710, + "maxlat": 40.7698890, + "maxlon": -73.9278070 + }, + "nodes": [ + 42826042, + 3570422533, + 5538998199, + 6452789089, + 42810477 + ], + "geometry": [ + { "lat": 40.7698890, "lon": -73.9278070 }, + { "lat": 40.7698265, "lon": -73.9278566 }, + { "lat": 40.7697026, "lon": -73.9279564 }, + { "lat": 40.7691192, "lon": -73.9284228 }, + { "lat": 40.7690600, "lon": -73.9284710 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497262895, + "bounds": { + "minlat": 40.7716398, + "minlon": -73.9264090, + "maxlat": 40.7719652, + "maxlon": -73.9261563 + }, + "nodes": [ + 12231483194, + 5538983382, + 42826033 + ], + "geometry": [ + { "lat": 40.7719652, "lon": -73.9261563 }, + { "lat": 40.7719394, "lon": -73.9261763 }, + { "lat": 40.7716398, "lon": -73.9264090 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497263582, + "bounds": { + "minlat": 40.7704254, + "minlon": -73.9180399, + "maxlat": 40.7706552, + "maxlon": -73.9177172 + }, + "nodes": [ + 588175755, + 7784004949, + 279603573 + ], + "geometry": [ + { "lat": 40.7706552, "lon": -73.9180399 }, + { "lat": 40.7704928, "lon": -73.9178146 }, + { "lat": 40.7704254, "lon": -73.9177172 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Hoyt Avenue South", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|right" + } +}, +{ + "type": "way", + "id": 497263586, + "bounds": { + "minlat": 40.7700816, + "minlon": -73.9181169, + "maxlat": 40.7704254, + "maxlon": -73.9177172 + }, + "nodes": [ + 279603573, + 13399317577, + 6406731467, + 42849714 + ], + "geometry": [ + { "lat": 40.7704254, "lon": -73.9177172 }, + { "lat": 40.7703319, "lon": -73.9178248 }, + { "lat": 40.7701393, "lon": -73.9180465 }, + { "lat": 40.7700816, "lon": -73.9181169 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "31st Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|right" + } +}, +{ + "type": "way", + "id": 497263808, + "bounds": { + "minlat": 40.7533800, + "minlon": -73.9319679, + "maxlat": 40.7537580, + "maxlon": -73.9312628 + }, + "nodes": [ + 12356889764, + 3569401946, + 8595235433, + 42876782 + ], + "geometry": [ + { "lat": 40.7537580, "lon": -73.9319679 }, + { "lat": 40.7537290, "lon": -73.9319138 }, + { "lat": 40.7534135, "lon": -73.9313255 }, + { "lat": 40.7533800, "lon": -73.9312628 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "residential", + "name": "38th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497263812, + "bounds": { + "minlat": 40.7549740, + "minlon": -73.9310570, + "maxlat": 40.7565824, + "maxlon": -73.9297499 + }, + "nodes": [ + 42849740, + 3569401975, + 7791670119, + 42815813 + ], + "geometry": [ + { "lat": 40.7565824, "lon": -73.9297499 }, + { "lat": 40.7565241, "lon": -73.9297973 }, + { "lat": 40.7550437, "lon": -73.9310004 }, + { "lat": 40.7549740, "lon": -73.9310570 } + ], + "tags": { + "cycleway": "track", + "highway": "secondary", + "maxheight": "12'6\"", + "name": "31st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497264333, + "bounds": { + "minlat": 40.8546721, + "minlon": -73.9168160, + "maxlat": 40.8548640, + "maxlon": -73.9163762 + }, + "nodes": [ + 42743082, + 2808842338, + 9918291080, + 42743152, + 2329195150 + ], + "geometry": [ + { "lat": 40.8548640, "lon": -73.9168160 }, + { "lat": 40.8548130, "lon": -73.9167081 }, + { "lat": 40.8547653, "lon": -73.9165974 }, + { "lat": 40.8547192, "lon": -73.9164859 }, + { "lat": 40.8546721, "lon": -73.9163762 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "West Burnside Avenue", + "name:etymology:wikidata": "Q355444", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick;Burnside", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 497264363, + "bounds": { + "minlat": 40.8082312, + "minlon": -73.9452612, + "maxlat": 40.8084812, + "maxlon": -73.9450770 + }, + "nodes": [ + 3099327972, + 10171038457, + 4207724577 + ], + "geometry": [ + { "lat": 40.8084812, "lon": -73.9450770 }, + { "lat": 40.8084301, "lon": -73.9451146 }, + { "lat": 40.8082312, "lon": -73.9452612 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 497264364, + "bounds": { + "minlat": 40.8084812, + "minlon": -73.9450770, + "maxlat": 40.8091051, + "maxlon": -73.9446164 + }, + "nodes": [ + 3099327975, + 10171038441, + 10171038451, + 3099327972 + ], + "geometry": [ + { "lat": 40.8091051, "lon": -73.9446164 }, + { "lat": 40.8090446, "lon": -73.9446611 }, + { "lat": 40.8085426, "lon": -73.9450316 }, + { "lat": 40.8084812, "lon": -73.9450770 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 497264365, + "bounds": { + "minlat": 40.8090395, + "minlon": -73.9446164, + "maxlat": 40.8091051, + "maxlon": -73.9444657 + }, + "nodes": [ + 42436726, + 3099327975 + ], + "geometry": [ + { "lat": 40.8090395, "lon": -73.9444657 }, + { "lat": 40.8091051, "lon": -73.9446164 } + ], + "tags": { + "highway": "residential", + "name": "West 127th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497264366, + "bounds": { + "minlat": 40.8077113, + "minlon": -73.9444657, + "maxlat": 40.8090395, + "maxlon": -73.9413121 + }, + "nodes": [ + 42436724, + 10173043168, + 3846051362, + 3845322712, + 3845322711, + 10171038444, + 42436726 + ], + "geometry": [ + { "lat": 40.8077113, "lon": -73.9413121 }, + { "lat": 40.8077560, "lon": -73.9414183 }, + { "lat": 40.8080865, "lon": -73.9422033 }, + { "lat": 40.8084594, "lon": -73.9430872 }, + { "lat": 40.8086773, "lon": -73.9436037 }, + { "lat": 40.8090032, "lon": -73.9443792 }, + { "lat": 40.8090395, "lon": -73.9444657 } + ], + "tags": { + "highway": "residential", + "name": "West 127th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 497264367, + "bounds": { + "minlat": 40.8084187, + "minlon": -73.9449268, + "maxlat": 40.8090395, + "maxlon": -73.9444657 + }, + "nodes": [ + 42446203, + 10171038452, + 10171038442, + 42436726 + ], + "geometry": [ + { "lat": 40.8084187, "lon": -73.9449268 }, + { "lat": 40.8084789, "lon": -73.9448820 }, + { "lat": 40.8089822, "lon": -73.9445083 }, + { "lat": 40.8090395, "lon": -73.9444657 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 497397706, + "bounds": { + "minlat": 40.7581594, + "minlon": -73.9353960, + "maxlat": 40.7613440, + "maxlon": -73.9285725 + }, + "nodes": [ + 42825865, + 4991539810, + 3569402503, + 6792378556, + 3569402181, + 42926975, + 6452553280, + 42861179, + 6452553279, + 5487928034, + 6452554388, + 42818549, + 6452554389, + 8699111862, + 7949838925, + 6452568262, + 42817407, + 6452568263, + 6452568268, + 42833328, + 6452568269, + 6452568276, + 42926995, + 6452568277, + 11186117035, + 6452568282, + 8735889840 + ], + "geometry": [ + { "lat": 40.7613440, "lon": -73.9353960 }, + { "lat": 40.7612870, "lon": -73.9352690 }, + { "lat": 40.7609505, "lon": -73.9345530 }, + { "lat": 40.7607399, "lon": -73.9341018 }, + { "lat": 40.7604299, "lon": -73.9334374 }, + { "lat": 40.7603182, "lon": -73.9331981 }, + { "lat": 40.7602296, "lon": -73.9330082 }, + { "lat": 40.7601811, "lon": -73.9329043 }, + { "lat": 40.7601311, "lon": -73.9327972 }, + { "lat": 40.7599740, "lon": -73.9324605 }, + { "lat": 40.7597817, "lon": -73.9320478 }, + { "lat": 40.7597514, "lon": -73.9319785 }, + { "lat": 40.7596991, "lon": -73.9318643 }, + { "lat": 40.7596214, "lon": -73.9316992 }, + { "lat": 40.7593982, "lon": -73.9312249 }, + { "lat": 40.7592847, "lon": -73.9309837 }, + { "lat": 40.7592477, "lon": -73.9309043 }, + { "lat": 40.7592133, "lon": -73.9308307 }, + { "lat": 40.7589108, "lon": -73.9301830 }, + { "lat": 40.7588701, "lon": -73.9300953 }, + { "lat": 40.7588404, "lon": -73.9300318 }, + { "lat": 40.7585384, "lon": -73.9293847 }, + { "lat": 40.7585075, "lon": -73.9293184 }, + { "lat": 40.7584687, "lon": -73.9292354 }, + { "lat": 40.7583045, "lon": -73.9288834 }, + { "lat": 40.7581919, "lon": -73.9286422 }, + { "lat": 40.7581594, "lon": -73.9285725 } + ], + "tags": { + "highway": "tertiary", + "name": "35th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497397707, + "bounds": { + "minlat": 40.7572128, + "minlon": -73.9292409, + "maxlat": 40.7581268, + "maxlon": -73.9285028 + }, + "nodes": [ + 42849735, + 6452568284, + 4888423693 + ], + "geometry": [ + { "lat": 40.7581268, "lon": -73.9285028 }, + { "lat": 40.7580674, "lon": -73.9285508 }, + { "lat": 40.7572128, "lon": -73.9292409 } + ], + "tags": { + "cycleway": "track", + "highway": "secondary", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "31st Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497401961, + "bounds": { + "minlat": 40.7619700, + "minlon": -73.9253800, + "maxlat": 40.7643507, + "maxlon": -73.9234566 + }, + "nodes": [ + 42849727, + 7661673751, + 10891946391, + 6744698186, + 10292696614, + 10891946390, + 6406789563, + 42849730 + ], + "geometry": [ + { "lat": 40.7643507, "lon": -73.9234566 }, + { "lat": 40.7642658, "lon": -73.9235291 }, + { "lat": 40.7642270, "lon": -73.9235602 }, + { "lat": 40.7631336, "lon": -73.9244390 }, + { "lat": 40.7623635, "lon": -73.9250618 }, + { "lat": 40.7620919, "lon": -73.9252814 }, + { "lat": 40.7620394, "lon": -73.9253238 }, + { "lat": 40.7619700, "lon": -73.9253800 } + ], + "tags": { + "cycleway": "track", + "foot": "yes", + "highway": "secondary", + "lanes": "2", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "31st Street", + "oneway": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497403105, + "bounds": { + "minlat": 40.8035804, + "minlon": -73.9691157, + "maxlat": 40.8047230, + "maxlon": -73.9680127 + }, + "nodes": [ + 42441910, + 7785929591, + 42441913, + 6914116757, + 42441917, + 42441920, + 42441923, + 11378511127, + 11378511125, + 42441926 + ], + "geometry": [ + { "lat": 40.8035804, "lon": -73.9691157 }, + { "lat": 40.8036388, "lon": -73.9690753 }, + { "lat": 40.8042060, "lon": -73.9686470 }, + { "lat": 40.8042930, "lon": -73.9685840 }, + { "lat": 40.8043551, "lon": -73.9685147 }, + { "lat": 40.8044660, "lon": -73.9683690 }, + { "lat": 40.8045850, "lon": -73.9682060 }, + { "lat": 40.8046280, "lon": -73.9681458 }, + { "lat": 40.8046672, "lon": -73.9680909 }, + { "lat": 40.8047230, "lon": -73.9680127 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "name", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 497403107, + "bounds": { + "minlat": 40.8076278, + "minlon": -73.9670504, + "maxlat": 40.8088597, + "maxlon": -73.9658901 + }, + "nodes": [ + 1506445822, + 2329939951, + 3579432154, + 2329939946, + 7785881429, + 1506445797, + 7785881408, + 7785881442, + 7785782269, + 7785881425, + 42441263 + ], + "geometry": [ + { "lat": 40.8088597, "lon": -73.9658901 }, + { "lat": 40.8087684, "lon": -73.9659845 }, + { "lat": 40.8086983, "lon": -73.9660594 }, + { "lat": 40.8083451, "lon": -73.9664760 }, + { "lat": 40.8083066, "lon": -73.9665197 }, + { "lat": 40.8082601, "lon": -73.9665700 }, + { "lat": 40.8082124, "lon": -73.9666134 }, + { "lat": 40.8080927, "lon": -73.9667145 }, + { "lat": 40.8079844, "lon": -73.9667989 }, + { "lat": 40.8077232, "lon": -73.9669874 }, + { "lat": 40.8076278, "lon": -73.9670504 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 497406085, + "bounds": { + "minlat": 40.7206218, + "minlon": -73.9450077, + "maxlat": 40.7207864, + "maxlon": -73.9448270 + }, + "nodes": [ + 2987758900, + 9789393774, + 2987758902 + ], + "geometry": [ + { "lat": 40.7207864, "lon": -73.9450077 }, + { "lat": 40.7207431, "lon": -73.9449579 }, + { "lat": 40.7206218, "lon": -73.9448270 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "kerb", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 497406086, + "bounds": { + "minlat": 40.7207864, + "minlon": -73.9450077, + "maxlat": 40.7208388, + "maxlon": -73.9449106 + }, + "nodes": [ + 2987758901, + 2987758900 + ], + "geometry": [ + { "lat": 40.7208388, "lon": -73.9449106 }, + { "lat": 40.7207864, "lon": -73.9450077 } + ], + "tags": { + "highway": "residential", + "name": "Bayard Street", + "name:etymology:wikidata": "Q508327", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 497497218, + "bounds": { + "minlat": 40.7223134, + "minlon": -74.0068462, + "maxlat": 40.7225338, + "maxlon": -74.0063495 + }, + "nodes": [ + 4136500817, + 11322971507, + 4890535385, + 4890535384, + 1701898652, + 11310961019, + 4890528696, + 5708221093, + 11310961018, + 4890535524 + ], + "geometry": [ + { "lat": 40.7225191, "lon": -74.0068462 }, + { "lat": 40.7225243, "lon": -74.0068091 }, + { "lat": 40.7225338, "lon": -74.0067430 }, + { "lat": 40.7225173, "lon": -74.0066461 }, + { "lat": 40.7224917, "lon": -74.0065752 }, + { "lat": 40.7224391, "lon": -74.0064883 }, + { "lat": 40.7223978, "lon": -74.0064301 }, + { "lat": 40.7223813, "lon": -74.0064116 }, + { "lat": 40.7223500, "lon": -74.0063806 }, + { "lat": 40.7223134, "lon": -74.0063495 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 497498544, + "bounds": { + "minlat": 40.7204530, + "minlon": -74.0068940, + "maxlat": 40.7204753, + "maxlon": -74.0066917 + }, + "nodes": [ + 4137021568, + 4890553371, + 42434845 + ], + "geometry": [ + { "lat": 40.7204753, "lon": -74.0068940 }, + { "lat": 40.7204691, "lon": -74.0068382 }, + { "lat": 40.7204530, "lon": -74.0066917 } + ], + "tags": { + "destination": "Brooklyn;6th Avenue;Walker Street", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "maxaxles": "3", + "maxspeed": "20 mph", + "name": "Beach Street", + "name:ko": "비치 스트리트", + "noref": "yes", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 497746842, + "bounds": { + "minlat": 40.7353910, + "minlon": -74.0011098, + "maxlat": 40.7365975, + "maxlon": -73.9982740 + }, + "nodes": [ + 42430247, + 8309479740, + 11062719792, + 42430828 + ], + "geometry": [ + { "lat": 40.7353910, "lon": -73.9982740 }, + { "lat": 40.7354458, "lon": -73.9984064 }, + { "lat": 40.7365407, "lon": -74.0009783 }, + { "lat": 40.7365975, "lon": -74.0011098 } + ], + "tags": { + "highway": "unclassified", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "West 11th Street", + "name:ru": "Западная 11-я стрит", + "name_1": "West 11 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497746843, + "bounds": { + "minlat": 40.7353910, + "minlon": -73.9982740, + "maxlat": 40.7366680, + "maxlon": -73.9973410 + }, + "nodes": [ + 42430247, + 8309479738, + 8309479750, + 42430249, + 8309479749, + 5244228888, + 9417767336, + 8309479757, + 42429374 + ], + "geometry": [ + { "lat": 40.7353910, "lon": -73.9982740 }, + { "lat": 40.7354498, "lon": -73.9982310 }, + { "lat": 40.7359776, "lon": -73.9978448 }, + { "lat": 40.7360320, "lon": -73.9978050 }, + { "lat": 40.7360888, "lon": -73.9977635 }, + { "lat": 40.7362935, "lon": -73.9976142 }, + { "lat": 40.7364048, "lon": -73.9975333 }, + { "lat": 40.7366135, "lon": -73.9973808 }, + { "lat": 40.7366680, "lon": -73.9973410 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 497748190, + "bounds": { + "minlat": 40.8220664, + "minlon": -73.9388694, + "maxlat": 40.8223451, + "maxlon": -73.9386646 + }, + "nodes": [ + 42439922, + 9557088492, + 9075676539 + ], + "geometry": [ + { "lat": 40.8223451, "lon": -73.9386646 }, + { "lat": 40.8222946, "lon": -73.9387017 }, + { "lat": 40.8220664, "lon": -73.9388694 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 497750508, + "bounds": { + "minlat": 40.7598041, + "minlon": -73.9305723, + "maxlat": 40.7612202, + "maxlon": -73.9275482 + }, + "nodes": [ + 42818542, + 6452521767, + 8575778419, + 6452518618, + 42817402, + 6452518619, + 6452518610, + 42824112, + 6452518611, + 7949838936, + 7949838934, + 6452518603, + 42824118, + 6452518602, + 3576314064 + ], + "geometry": [ + { "lat": 40.7612202, "lon": -73.9305723 }, + { "lat": 40.7611641, "lon": -73.9304623 }, + { "lat": 40.7611510, "lon": -73.9304341 }, + { "lat": 40.7608258, "lon": -73.9297374 }, + { "lat": 40.7607889, "lon": -73.9296584 }, + { "lat": 40.7607607, "lon": -73.9295979 }, + { "lat": 40.7604672, "lon": -73.9289336 }, + { "lat": 40.7604285, "lon": -73.9288539 }, + { "lat": 40.7603959, "lon": -73.9287857 }, + { "lat": 40.7602441, "lon": -73.9284910 }, + { "lat": 40.7602226, "lon": -73.9284449 }, + { "lat": 40.7600808, "lon": -73.9281412 }, + { "lat": 40.7600461, "lon": -73.9280668 }, + { "lat": 40.7600131, "lon": -73.9279960 }, + { "lat": 40.7598041, "lon": -73.9275482 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "34th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497750509, + "bounds": { + "minlat": 40.7595483, + "minlon": -73.9273468, + "maxlat": 40.7596656, + "maxlon": -73.9272514 + }, + "nodes": [ + 42824124, + 6452514514, + 3576314065 + ], + "geometry": [ + { "lat": 40.7596656, "lon": -73.9272514 }, + { "lat": 40.7596047, "lon": -73.9273013 }, + { "lat": 40.7595483, "lon": -73.9273468 } + ], + "tags": { + "cycleway": "track", + "highway": "secondary", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "31st Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 497755047, + "bounds": { + "minlat": 40.7103292, + "minlon": -73.9587989, + "maxlat": 40.7103461, + "maxlon": -73.9583486 + }, + "nodes": [ + 1893285374, + 9955210462, + 5754136580, + 1692483461 + ], + "geometry": [ + { "lat": 40.7103461, "lon": -73.9583486 }, + { "lat": 40.7103414, "lon": -73.9584222 }, + { "lat": 40.7103292, "lon": -73.9586047 }, + { "lat": 40.7103389, "lon": -73.9587989 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base_1": "Borinquen", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "through|through;right" + } +}, +{ + "type": "way", + "id": 497755048, + "bounds": { + "minlat": 40.7101830, + "minlon": -73.9584575, + "maxlat": 40.7102487, + "maxlon": -73.9584046 + }, + "nodes": [ + 42463268, + 4726244595 + ], + "geometry": [ + { "lat": 40.7101830, "lon": -73.9584575 }, + { "lat": 40.7102487, "lon": -73.9584046 } + ], + "tags": { + "highway": "residential", + "name": "Havemeyer Street", + "name_1": "South 5th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Havemeyer", + "tiger:name_base_1": "5th", + "tiger:name_direction_prefix_1": "S", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 497769952, + "bounds": { + "minlat": 40.7240278, + "minlon": -73.9925309, + "maxlat": 40.7241972, + "maxlon": -73.9919889 + }, + "nodes": [ + 12217438120, + 8821494822, + 5829779492, + 1773082410 + ], + "geometry": [ + { "lat": 40.7240278, "lon": -73.9919889 }, + { "lat": 40.7241294, "lon": -73.9923127 }, + { "lat": 40.7241545, "lon": -73.9923947 }, + { "lat": 40.7241972, "lon": -73.9925309 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through;right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 497769953, + "bounds": { + "minlat": 40.7237271, + "minlon": -73.9912412, + "maxlat": 40.7237930, + "maxlon": -73.9910315 + }, + "nodes": [ + 42443127, + 3927743127, + 42442836 + ], + "geometry": [ + { "lat": 40.7237271, "lon": -73.9910315 }, + { "lat": 40.7237739, "lon": -73.9911790 }, + { "lat": 40.7237930, "lon": -73.9912412 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 498635438, + "bounds": { + "minlat": 40.7550212, + "minlon": -74.0024796, + "maxlat": 40.7551246, + "maxlon": -74.0022379 + }, + "nodes": [ + 4900161556, + 5165666199, + 42430629 + ], + "geometry": [ + { "lat": 40.7550212, "lon": -74.0022379 }, + { "lat": 40.7550661, "lon": -74.0023429 }, + { "lat": 40.7551246, "lon": -74.0024796 } + ], + "tags": { + "highway": "unclassified", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 499172074, + "bounds": { + "minlat": 40.7630416, + "minlon": -73.9923216, + "maxlat": 40.7690170, + "maxlon": -73.9781410 + }, + "nodes": [ + 42430375, + 3971302315, + 2723627045, + 3974096366, + 10023117065, + 10003982619, + 3932923800, + 1828749423, + 3463817011, + 42440020, + 3463817013, + 8993169377, + 3463816117, + 42428321, + 3463816118, + 4546109662, + 9140924705, + 10085037831, + 42435710, + 6210777835, + 10085037829, + 9140924706, + 5357799203, + 10085021939, + 2351532377, + 42440960, + 10085021936, + 12476310693, + 3998699924, + 42440966, + 3998699926, + 9140924708, + 10084943014, + 42430739 + ], + "geometry": [ + { "lat": 40.7630416, "lon": -73.9781410 }, + { "lat": 40.7630975, "lon": -73.9782740 }, + { "lat": 40.7635009, "lon": -73.9792315 }, + { "lat": 40.7635360, "lon": -73.9793134 }, + { "lat": 40.7635386, "lon": -73.9793196 }, + { "lat": 40.7635805, "lon": -73.9794188 }, + { "lat": 40.7637506, "lon": -73.9798218 }, + { "lat": 40.7637846, "lon": -73.9799011 }, + { "lat": 40.7641798, "lon": -73.9808513 }, + { "lat": 40.7642270, "lon": -73.9809769 }, + { "lat": 40.7642843, "lon": -73.9811071 }, + { "lat": 40.7646295, "lon": -73.9819059 }, + { "lat": 40.7647285, "lon": -73.9821258 }, + { "lat": 40.7647849, "lon": -73.9822551 }, + { "lat": 40.7648222, "lon": -73.9823348 }, + { "lat": 40.7650054, "lon": -73.9827727 }, + { "lat": 40.7653535, "lon": -73.9835992 }, + { "lat": 40.7653848, "lon": -73.9836798 }, + { "lat": 40.7654396, "lon": -73.9838209 }, + { "lat": 40.7654796, "lon": -73.9839198 }, + { "lat": 40.7654910, "lon": -73.9839479 }, + { "lat": 40.7655038, "lon": -73.9839794 }, + { "lat": 40.7656194, "lon": -73.9842586 }, + { "lat": 40.7665782, "lon": -73.9865266 }, + { "lat": 40.7665906, "lon": -73.9865559 }, + { "lat": 40.7666367, "lon": -73.9866680 }, + { "lat": 40.7666893, "lon": -73.9867929 }, + { "lat": 40.7677621, "lon": -73.9893429 }, + { "lat": 40.7677759, "lon": -73.9893758 }, + { "lat": 40.7678263, "lon": -73.9894950 }, + { "lat": 40.7678836, "lon": -73.9896322 }, + { "lat": 40.7689333, "lon": -73.9921356 }, + { "lat": 40.7689645, "lon": -73.9922050 }, + { "lat": 40.7690170, "lon": -73.9923216 } + ], + "tags": { + "alt_name": "West 55 Street", + "alt_name:en": "Alvin Ailey Place", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "West 55th Street", + "name:ru": "Западная 55-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 500136555, + "bounds": { + "minlat": 40.7570688, + "minlon": -73.9127377, + "maxlat": 40.7578125, + "maxlon": -73.9117844 + }, + "nodes": [ + 4912692272, + 4912692244, + 4912692243 + ], + "geometry": [ + { "lat": 40.7570688, "lon": -73.9127377 }, + { "lat": 40.7571075, "lon": -73.9123842 }, + { "lat": 40.7578125, "lon": -73.9117844 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 500182595, + "bounds": { + "minlat": 40.7518133, + "minlon": -73.9997474, + "maxlat": 40.7518775, + "maxlon": -73.9996131 + }, + "nodes": [ + 427841071, + 12152867541, + 12152867542, + 1701844782, + 427841072, + 11509842351, + 427841073 + ], + "geometry": [ + { "lat": 40.7518133, "lon": -73.9997474 }, + { "lat": 40.7518176, "lon": -73.9997204 }, + { "lat": 40.7518268, "lon": -73.9996880 }, + { "lat": 40.7518400, "lon": -73.9996602 }, + { "lat": 40.7518550, "lon": -73.9996341 }, + { "lat": 40.7518658, "lon": -73.9996229 }, + { "lat": 40.7518775, "lon": -73.9996131 } + ], + "tags": { + "alt_name": "Lincoln Tunnel Approach", + "bicycle": "no", + "hgv": "no", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 500182596, + "bounds": { + "minlat": 40.7519043, + "minlon": -73.9997147, + "maxlat": 40.7521728, + "maxlon": -73.9995182 + }, + "nodes": [ + 11509842344, + 427841063, + 61274119 + ], + "geometry": [ + { "lat": 40.7521728, "lon": -73.9995182 }, + { "lat": 40.7519432, "lon": -73.9996873 }, + { "lat": 40.7519043, "lon": -73.9997147 } + ], + "tags": { + "alt_name": "Lincoln Tunnel Approach", + "bicycle": "no", + "destination": "9th Avenue;West 30th Street", + "foot": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "concrete", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 500452657, + "bounds": { + "minlat": 40.7021931, + "minlon": -73.9440653, + "maxlat": 40.7023460, + "maxlon": -73.9423855 + }, + "nodes": [ + 42467807, + 9752127002, + 8229296010, + 9752126993, + 9752126978, + 42529854 + ], + "geometry": [ + { "lat": 40.7023460, "lon": -73.9423855 }, + { "lat": 40.7023368, "lon": -73.9424869 }, + { "lat": 40.7022591, "lon": -73.9433397 }, + { "lat": 40.7022044, "lon": -73.9439409 }, + { "lat": 40.7021997, "lon": -73.9439923 }, + { "lat": 40.7021931, "lon": -73.9440653 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Cook Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cook", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "wikidata": "Q115973197" + } +}, +{ + "type": "way", + "id": 500452658, + "bounds": { + "minlat": 40.7021931, + "minlon": -73.9449040, + "maxlat": 40.7071690, + "maxlon": -73.9440653 + }, + "nodes": [ + 42529854, + 5487724367, + 7722348485, + 42509015, + 9752126966, + 42528868, + 9752126967, + 9959900679, + 42521981, + 13506385985, + 9959900678, + 9959900675, + 42535511, + 6212365439, + 42476785, + 6212365442, + 6212365420, + 6212365437, + 42496352, + 6212365434, + 42523544 + ], + "geometry": [ + { "lat": 40.7021931, "lon": -73.9440653 }, + { "lat": 40.7025754, "lon": -73.9441346 }, + { "lat": 40.7025860, "lon": -73.9441365 }, + { "lat": 40.7029006, "lon": -73.9441935 }, + { "lat": 40.7035237, "lon": -73.9443066 }, + { "lat": 40.7035780, "lon": -73.9443165 }, + { "lat": 40.7036674, "lon": -73.9443328 }, + { "lat": 40.7042494, "lon": -73.9444391 }, + { "lat": 40.7043090, "lon": -73.9444500 }, + { "lat": 40.7043336, "lon": -73.9444541 }, + { "lat": 40.7043842, "lon": -73.9444624 }, + { "lat": 40.7049750, "lon": -73.9445594 }, + { "lat": 40.7050210, "lon": -73.9445670 }, + { "lat": 40.7056719, "lon": -73.9446709 }, + { "lat": 40.7057401, "lon": -73.9446844 }, + { "lat": 40.7058209, "lon": -73.9447021 }, + { "lat": 40.7059596, "lon": -73.9447277 }, + { "lat": 40.7063877, "lon": -73.9447997 }, + { "lat": 40.7064410, "lon": -73.9448020 }, + { "lat": 40.7070962, "lon": -73.9448938 }, + { "lat": 40.7071690, "lon": -73.9449040 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 500452659, + "bounds": { + "minlat": 40.7071690, + "minlon": -73.9455960, + "maxlat": 40.7114810, + "maxlon": -73.9449040 + }, + "nodes": [ + 42523544, + 6212365436, + 6943637593, + 42529162, + 6943637594, + 6943637601, + 42511050, + 6943637602, + 7257110369, + 7257110365, + 9752590866, + 42535525, + 9752590865, + 8842929790, + 42535541 + ], + "geometry": [ + { "lat": 40.7071690, "lon": -73.9449040 }, + { "lat": 40.7072549, "lon": -73.9449158 }, + { "lat": 40.7078570, "lon": -73.9449986 }, + { "lat": 40.7079110, "lon": -73.9450060 }, + { "lat": 40.7079746, "lon": -73.9450178 }, + { "lat": 40.7085650, "lon": -73.9451150 }, + { "lat": 40.7086250, "lon": -73.9451250 }, + { "lat": 40.7087009, "lon": -73.9451376 }, + { "lat": 40.7093580, "lon": -73.9452441 }, + { "lat": 40.7098975, "lon": -73.9453347 }, + { "lat": 40.7106775, "lon": -73.9454646 }, + { "lat": 40.7107400, "lon": -73.9454750 }, + { "lat": 40.7108199, "lon": -73.9454881 }, + { "lat": 40.7113770, "lon": -73.9455789 }, + { "lat": 40.7114810, "lon": -73.9455960 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "sidewalk": "separate", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 500540287, + "bounds": { + "minlat": 40.8043371, + "minlon": -73.9118438, + "maxlat": 40.8044365, + "maxlon": -73.9116270 + }, + "nodes": [ + 4915701077, + 13003835724, + 42728734 + ], + "geometry": [ + { "lat": 40.8043371, "lon": -73.9116270 }, + { "lat": 40.8043603, "lon": -73.9116832 }, + { "lat": 40.8044365, "lon": -73.9118438 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 500701825, + "bounds": { + "minlat": 40.7052453, + "minlon": -74.0150558, + "maxlat": 40.7055026, + "maxlon": -74.0149463 + }, + "nodes": [ + 370880731, + 4916899612 + ], + "geometry": [ + { "lat": 40.7052453, "lon": -74.0150558 }, + { "lat": 40.7055026, "lon": -74.0149463 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "I 478" + } +}, +{ + "type": "way", + "id": 500701826, + "bounds": { + "minlat": 40.7052923, + "minlon": -74.0152648, + "maxlat": 40.7055541, + "maxlon": -74.0151691 + }, + "nodes": [ + 4149947889, + 370880729 + ], + "geometry": [ + { "lat": 40.7055541, "lon": -74.0151691 }, + { "lat": 40.7052923, "lon": -74.0152648 } + ], + "tags": { + "bicycle": "no", + "description": "One lane is reversible on weekday mornings Manhattan bound to HOV 3+ vehicles", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "I 478" + } +}, +{ + "type": "way", + "id": 500717399, + "bounds": { + "minlat": 40.7521903, + "minlon": -73.9892430, + "maxlat": 40.7528950, + "maxlon": -73.9875372 + }, + "nodes": [ + 42428264, + 6597473550, + 10169532526, + 10169505515, + 42439960 + ], + "geometry": [ + { "lat": 40.7521903, "lon": -73.9875372 }, + { "lat": 40.7521984, "lon": -73.9875568 }, + { "lat": 40.7522287, "lon": -73.9876261 }, + { "lat": 40.7528432, "lon": -73.9891180 }, + { "lat": 40.7528950, "lon": -73.9892430 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 500793245, + "bounds": { + "minlat": 40.7465280, + "minlon": -73.9716761, + "maxlat": 40.7465987, + "maxlon": -73.9715090 + }, + "nodes": [ + 4917679392, + 4917695759, + 4917695760, + 4917679393 + ], + "geometry": [ + { "lat": 40.7465280, "lon": -73.9715090 }, + { "lat": 40.7465747, "lon": -73.9716187 }, + { "lat": 40.7465908, "lon": -73.9716561 }, + { "lat": 40.7465987, "lon": -73.9716761 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 500796506, + "bounds": { + "minlat": 40.8022515, + "minlon": -73.9695600, + "maxlat": 40.8029380, + "maxlon": -73.9679062 + }, + "nodes": [ + 42428760, + 42431121, + 9916138280, + 8831843010, + 10170704042, + 42432764 + ], + "geometry": [ + { "lat": 40.8022515, "lon": -73.9679062 }, + { "lat": 40.8023404, "lon": -73.9681138 }, + { "lat": 40.8023832, "lon": -73.9682132 }, + { "lat": 40.8029011, "lon": -73.9694714 }, + { "lat": 40.8029187, "lon": -73.9695137 }, + { "lat": 40.8029380, "lon": -73.9695600 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 107th Street", + "name:ru": "Западная 107-я стрит", + "name_1": "West 107 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 500796507, + "bounds": { + "minlat": 40.8022515, + "minlon": -73.9679062, + "maxlat": 40.8028712, + "maxlon": -73.9677238 + }, + "nodes": [ + 7004393049, + 9177532567, + 9916138279, + 595314106, + 7004393051, + 42428760 + ], + "geometry": [ + { "lat": 40.8028712, "lon": -73.9677238 }, + { "lat": 40.8026663, "lon": -73.9678000 }, + { "lat": 40.8025695, "lon": -73.9678323 }, + { "lat": 40.8024584, "lon": -73.9678586 }, + { "lat": 40.8023204, "lon": -73.9678888 }, + { "lat": 40.8022515, "lon": -73.9679062 } + ], + "tags": { + "cycleway:both": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 501844297, + "bounds": { + "minlat": 40.8012375, + "minlon": -73.9591421, + "maxlat": 40.8018511, + "maxlon": -73.9576916 + }, + "nodes": [ + 42435743, + 11298975878, + 11296200771, + 42446733 + ], + "geometry": [ + { "lat": 40.8012375, "lon": -73.9576916 }, + { "lat": 40.8012853, "lon": -73.9578047 }, + { "lat": 40.8018153, "lon": -73.9590575 }, + { "lat": 40.8018511, "lon": -73.9591421 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "no", + "highway": "residential", + "name": "West 111th Street", + "name:ru": "Западная 111-я стрит", + "name_1": "West 111 Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 501844298, + "bounds": { + "minlat": 40.8141405, + "minlon": -73.9574840, + "maxlat": 40.8161849, + "maxlon": -73.9556965 + }, + "nodes": [ + 42442586, + 10173250037, + 765233284, + 10055110509, + 42446218, + 10055110511, + 7260975615 + ], + "geometry": [ + { "lat": 40.8141405, "lon": -73.9556965 }, + { "lat": 40.8142513, "lon": -73.9557933 }, + { "lat": 40.8149983, "lon": -73.9564464 }, + { "lat": 40.8154846, "lon": -73.9568716 }, + { "lat": 40.8155460, "lon": -73.9569253 }, + { "lat": 40.8156106, "lon": -73.9569818 }, + { "lat": 40.8161849, "lon": -73.9574840 } + ], + "tags": { + "highway": "residential", + "name": "West 126th Street", + "name_1": "West 126 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 502443613, + "bounds": { + "minlat": 40.7984607, + "minlon": -73.9258352, + "maxlat": 40.7987309, + "maxlon": -73.9257296 + }, + "nodes": [ + 4929172781, + 4929172780, + 4929172779 + ], + "geometry": [ + { "lat": 40.7987309, "lon": -73.9257296 }, + { "lat": 40.7985627, "lon": -73.9258352 }, + { "lat": 40.7984607, "lon": -73.9257541 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 502443614, + "bounds": { + "minlat": 40.7950439, + "minlon": -73.9232006, + "maxlat": 40.7950961, + "maxlon": -73.9227354 + }, + "nodes": [ + 7734748106, + 7734748103, + 2346816289 + ], + "geometry": [ + { "lat": 40.7950441, "lon": -73.9227354 }, + { "lat": 40.7950439, "lon": -73.9228284 }, + { "lat": 40.7950961, "lon": -73.9232006 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 503878577, + "bounds": { + "minlat": 40.7769602, + "minlon": -73.9070420, + "maxlat": 40.7779653, + "maxlon": -73.9058424 + }, + "nodes": [ + 4941253852, + 9776116470, + 4941253853, + 4941253854, + 9776116466, + 4941253855 + ], + "geometry": [ + { "lat": 40.7779653, "lon": -73.9058424 }, + { "lat": 40.7779250, "lon": -73.9058868 }, + { "lat": 40.7778246, "lon": -73.9059975 }, + { "lat": 40.7772214, "lon": -73.9067271 }, + { "lat": 40.7770149, "lon": -73.9069761 }, + { "lat": 40.7769602, "lon": -73.9070420 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 503878578, + "bounds": { + "minlat": 40.7769721, + "minlon": -73.9067271, + "maxlat": 40.7772214, + "maxlon": -73.9063613 + }, + "nodes": [ + 4941253854, + 9776116468, + 4941253856 + ], + "geometry": [ + { "lat": 40.7772214, "lon": -73.9067271 }, + { "lat": 40.7770078, "lon": -73.9064137 }, + { "lat": 40.7769721, "lon": -73.9063613 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 505034229, + "bounds": { + "minlat": 40.7398163, + "minlon": -73.9732831, + "maxlat": 40.7403440, + "maxlon": -73.9731358 + }, + "nodes": [ + 4274141356, + 3834397179, + 11543660446, + 1739872170, + 1739872172 + ], + "geometry": [ + { "lat": 40.7403440, "lon": -73.9731358 }, + { "lat": 40.7402650, "lon": -73.9732024 }, + { "lat": 40.7401981, "lon": -73.9732164 }, + { "lat": 40.7400230, "lon": -73.9732529 }, + { "lat": 40.7398163, "lon": -73.9732831 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 505114460, + "bounds": { + "minlat": 40.8437195, + "minlon": -73.9100045, + "maxlat": 40.8438057, + "maxlon": -73.9099989 + }, + "nodes": [ + 4951421786, + 13067976173, + 4951421787 + ], + "geometry": [ + { "lat": 40.8438057, "lon": -73.9099989 }, + { "lat": 40.8437504, "lon": -73.9100025 }, + { "lat": 40.8437195, "lon": -73.9100045 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 505300327, + "bounds": { + "minlat": 40.7375322, + "minlon": -73.9401970, + "maxlat": 40.7381346, + "maxlon": -73.9387070 + }, + "nodes": [ + 7824536275, + 9982287327, + 7824536270, + 11211159750, + 4952694885 + ], + "geometry": [ + { "lat": 40.7381346, "lon": -73.9387070 }, + { "lat": 40.7380805, "lon": -73.9387458 }, + { "lat": 40.7379410, "lon": -73.9390600 }, + { "lat": 40.7375579, "lon": -73.9401254 }, + { "lat": 40.7375322, "lon": -73.9401970 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 505317783, + "bounds": { + "minlat": 40.7553300, + "minlon": -73.9931035, + "maxlat": 40.7561557, + "maxlon": -73.9911770 + }, + "nodes": [ + 42435654, + 10168381345, + 5492236420, + 9583416934 + ], + "geometry": [ + { "lat": 40.7553300, "lon": -73.9911770 }, + { "lat": 40.7553840, "lon": -73.9913007 }, + { "lat": 40.7556902, "lon": -73.9920020 }, + { "lat": 40.7561557, "lon": -73.9931035 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 505317789, + "bounds": { + "minlat": 40.7560157, + "minlon": -73.9922192, + "maxlat": 40.7565817, + "maxlon": -73.9908759 + }, + "nodes": [ + 9509518365, + 7903850296 + ], + "geometry": [ + { "lat": 40.7565817, "lon": -73.9922192 }, + { "lat": 40.7560157, "lon": -73.9908759 } + ], + "tags": { + "alt_name": "West 40 Street", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "no", + "highway": "residential", + "lanes": "3", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 505478248, + "bounds": { + "minlat": 40.8210863, + "minlon": -73.9577376, + "maxlat": 40.8211600, + "maxlon": -73.9574917 + }, + "nodes": [ + 4954151929, + 10050016482, + 7620631148 + ], + "geometry": [ + { "lat": 40.8210863, "lon": -73.9577376 }, + { "lat": 40.8211198, "lon": -73.9575947 }, + { "lat": 40.8211600, "lon": -73.9574917 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "cycleway": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 505582406, + "bounds": { + "minlat": 40.7667157, + "minlon": -73.9841634, + "maxlat": 40.7672587, + "maxlon": -73.9828727 + }, + "nodes": [ + 42435714, + 10082626063, + 4546351682, + 4546351685, + 2698702581 + ], + "geometry": [ + { "lat": 40.7667157, "lon": -73.9828727 }, + { "lat": 40.7667765, "lon": -73.9830176 }, + { "lat": 40.7670708, "lon": -73.9837188 }, + { "lat": 40.7670969, "lon": -73.9837806 }, + { "lat": 40.7672587, "lon": -73.9841634 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "name_1": "West 57 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 505598707, + "bounds": { + "minlat": 40.7189641, + "minlon": -74.0018814, + "maxlat": 40.7194015, + "maxlon": -74.0012676 + }, + "nodes": [ + 591995273, + 8307641802, + 42428433 + ], + "geometry": [ + { "lat": 40.7189641, "lon": -74.0012676 }, + { "lat": 40.7193447, "lon": -74.0018063 }, + { "lat": 40.7194015, "lon": -74.0018814 } + ], + "tags": { + "bicycle": "yes", + "expressway": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 505598708, + "bounds": { + "minlat": 40.7183162, + "minlon": -74.0018252, + "maxlat": 40.7189641, + "maxlon": -74.0012676 + }, + "nodes": [ + 42432635, + 8307641778, + 8996353565, + 8307641782, + 11658710514, + 591995273 + ], + "geometry": [ + { "lat": 40.7183162, "lon": -74.0018252 }, + { "lat": 40.7183563, "lon": -74.0017917 }, + { "lat": 40.7188279, "lon": -74.0014016 }, + { "lat": 40.7188759, "lon": -74.0013613 }, + { "lat": 40.7189326, "lon": -74.0013030 }, + { "lat": 40.7189641, "lon": -74.0012676 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cortlandt Alley", + "name:ko": "코트랜드 앨리", + "oneway": "yes", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 505600307, + "bounds": { + "minlat": 40.7384929, + "minlon": -73.9913883, + "maxlat": 40.7390984, + "maxlon": -73.9899534 + }, + "nodes": [ + 42428179, + 8569045591, + 9140832085, + 8264701251, + 42454378 + ], + "geometry": [ + { "lat": 40.7384929, "lon": -73.9899534 }, + { "lat": 40.7385305, "lon": -73.9900533 }, + { "lat": 40.7390390, "lon": -73.9912570 }, + { "lat": 40.7390583, "lon": -73.9913029 }, + { "lat": 40.7390984, "lon": -73.9913883 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 19th Street", + "name:ru": "Восточная 19-я стрит", + "name_1": "East 19 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 505603401, + "bounds": { + "minlat": 40.7380808, + "minlon": -73.9410668, + "maxlat": 40.7382263, + "maxlon": -73.9406386 + }, + "nodes": [ + 4954941174, + 11211159762, + 7984118793, + 4954941175 + ], + "geometry": [ + { "lat": 40.7382263, "lon": -73.9406386 }, + { "lat": 40.7381983, "lon": -73.9407210 }, + { "lat": 40.7381844, "lon": -73.9407619 }, + { "lat": 40.7380808, "lon": -73.9410668 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 505766273, + "bounds": { + "minlat": 40.7416809, + "minlon": -74.0049194, + "maxlat": 40.7421252, + "maxlon": -74.0045542 + }, + "nodes": [ + 4557517552, + 4557517551, + 8262308749, + 4557517550 + ], + "geometry": [ + { "lat": 40.7421252, "lon": -74.0045542 }, + { "lat": 40.7420532, "lon": -74.0046519 }, + { "lat": 40.7417310, "lon": -74.0048834 }, + { "lat": 40.7416809, "lon": -74.0049194 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 505772014, + "bounds": { + "minlat": 40.7204583, + "minlon": -73.9939302, + "maxlat": 40.7209449, + "maxlon": -73.9937437 + }, + "nodes": [ + 5296795594, + 8821681999, + 8231909723, + 1773076509 + ], + "geometry": [ + { "lat": 40.7204583, "lon": -73.9939302 }, + { "lat": 40.7208622, "lon": -73.9937695 }, + { "lat": 40.7209027, "lon": -73.9937564 }, + { "lat": 40.7209449, "lon": -73.9937437 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 505773769, + "bounds": { + "minlat": 40.7171005, + "minlon": -73.9831408, + "maxlat": 40.7171684, + "maxlon": -73.9826968 + }, + "nodes": [ + 4300940094, + 5173488755, + 5173480573, + 42427345 + ], + "geometry": [ + { "lat": 40.7171005, "lon": -73.9826968 }, + { "lat": 40.7171473, "lon": -73.9830026 }, + { "lat": 40.7171564, "lon": -73.9830624 }, + { "lat": 40.7171684, "lon": -73.9831408 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn": "through", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 505776502, + "bounds": { + "minlat": 40.7393107, + "minlon": -74.0098697, + "maxlat": 40.7404891, + "maxlon": -74.0092282 + }, + "nodes": [ + 246647920, + 373895090, + 12161932095, + 246647921, + 12161932094, + 373896719, + 12161932092, + 12161932091, + 373896722 + ], + "geometry": [ + { "lat": 40.7393107, "lon": -74.0098697 }, + { "lat": 40.7394275, "lon": -74.0098286 }, + { "lat": 40.7395053, "lon": -74.0097986 }, + { "lat": 40.7395820, "lon": -74.0097631 }, + { "lat": 40.7396539, "lon": -74.0097287 }, + { "lat": 40.7397441, "lon": -74.0096795 }, + { "lat": 40.7403448, "lon": -74.0093099 }, + { "lat": 40.7404235, "lon": -74.0092640 }, + { "lat": 40.7404891, "lon": -74.0092282 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 505776503, + "bounds": { + "minlat": 40.7393107, + "minlon": -74.0100400, + "maxlat": 40.7393421, + "maxlon": -74.0098697 + }, + "nodes": [ + 246647920, + 246648627 + ], + "geometry": [ + { "lat": 40.7393107, "lon": -74.0098697 }, + { "lat": 40.7393421, "lon": -74.0100400 } + ], + "tags": { + "highway": "service", + "name": "Gansevoort Street", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 505777310, + "bounds": { + "minlat": 40.7630722, + "minlon": -73.9995988, + "maxlat": 40.7636288, + "maxlon": -73.9989729 + }, + "nodes": [ + 62915509, + 373940055, + 12154605901, + 12154598300, + 62915545, + 12154598299, + 373941257, + 12154598298, + 62915527 + ], + "geometry": [ + { "lat": 40.7630722, "lon": -73.9995988 }, + { "lat": 40.7631262, "lon": -73.9995254 }, + { "lat": 40.7631876, "lon": -73.9994420 }, + { "lat": 40.7632600, "lon": -73.9993569 }, + { "lat": 40.7633394, "lon": -73.9992669 }, + { "lat": 40.7634119, "lon": -73.9991906 }, + { "lat": 40.7634899, "lon": -73.9991072 }, + { "lat": 40.7635538, "lon": -73.9990436 }, + { "lat": 40.7636288, "lon": -73.9989729 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 505777313, + "bounds": { + "minlat": 40.7625524, + "minlon": -74.0002895, + "maxlat": 40.7630722, + "maxlon": -73.9995988 + }, + "nodes": [ + 62915525, + 247119761, + 4782363328, + 12154605907, + 12154605902, + 247119786, + 62915509 + ], + "geometry": [ + { "lat": 40.7625524, "lon": -74.0002895 }, + { "lat": 40.7626163, "lon": -74.0002074 }, + { "lat": 40.7627941, "lon": -73.9999680 }, + { "lat": 40.7629097, "lon": -73.9998097 }, + { "lat": 40.7629676, "lon": -73.9997321 }, + { "lat": 40.7629900, "lon": -73.9997040 }, + { "lat": 40.7630722, "lon": -73.9995988 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 505777317, + "bounds": { + "minlat": 40.7626470, + "minlon": -74.0005301, + "maxlat": 40.7629105, + "maxlon": -74.0001386 + }, + "nodes": [ + 12154605906, + 247119760, + 42453548 + ], + "geometry": [ + { "lat": 40.7629105, "lon": -74.0001386 }, + { "lat": 40.7627199, "lon": -74.0004238 }, + { "lat": 40.7626470, "lon": -74.0005301 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "||||right" + } +}, +{ + "type": "way", + "id": 505778913, + "bounds": { + "minlat": 40.7607458, + "minlon": -73.9691328, + "maxlat": 40.7609304, + "maxlon": -73.9686942 + }, + "nodes": [ + 42432847, + 10165922695, + 11043134787 + ], + "geometry": [ + { "lat": 40.7609304, "lon": -73.9691328 }, + { "lat": 40.7608876, "lon": -73.9690311 }, + { "lat": 40.7607458, "lon": -73.9686942 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 506650494, + "bounds": { + "minlat": 40.7000382, + "minlon": -73.9360849, + "maxlat": 40.7008635, + "maxlon": -73.9331617 + }, + "nodes": [ + 42479511, + 9743987308, + 9744012816, + 42479505, + 9744012815, + 7153236308, + 9744012822, + 9301423406, + 42479500 + ], + "geometry": [ + { "lat": 40.7008635, "lon": -73.9331617 }, + { "lat": 40.7008221, "lon": -73.9332312 }, + { "lat": 40.7004882, "lon": -73.9344459 }, + { "lat": 40.7004670, "lon": -73.9345242 }, + { "lat": 40.7004482, "lon": -73.9345933 }, + { "lat": 40.7001435, "lon": -73.9357018 }, + { "lat": 40.7000845, "lon": -73.9359162 }, + { "lat": 40.7000700, "lon": -73.9359689 }, + { "lat": 40.7000382, "lon": -73.9360849 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Noll Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Noll", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 506680905, + "bounds": { + "minlat": 40.7505373, + "minlon": -74.0010709, + "maxlat": 40.7513090, + "maxlon": -73.9992405 + }, + "nodes": [ + 2703228467, + 2703228521 + ], + "geometry": [ + { "lat": 40.7505373, "lon": -73.9992405 }, + { "lat": 40.7513090, "lon": -74.0010709 } + ], + "tags": { + "bicycle": "yes", + "covered": "no", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "unclassified", + "lanes": "1", + "layer": "-1", + "maxheight": "18'2\"", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 506680906, + "bounds": { + "minlat": 40.7513090, + "minlon": -74.0014183, + "maxlat": 40.7514585, + "maxlon": -74.0010709 + }, + "nodes": [ + 2703228521, + 12152879560, + 8261122856, + 42427821 + ], + "geometry": [ + { "lat": 40.7513090, "lon": -74.0010709 }, + { "lat": 40.7513813, "lon": -74.0012420 }, + { "lat": 40.7514027, "lon": -74.0012928 }, + { "lat": 40.7514585, "lon": -74.0014183 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 507570977, + "bounds": { + "minlat": 40.7926415, + "minlon": -73.9471376, + "maxlat": 40.7929829, + "maxlon": -73.9468853 + }, + "nodes": [ + 4970519941, + 7779508893, + 4970527718, + 4970519945 + ], + "geometry": [ + { "lat": 40.7926415, "lon": -73.9471376 }, + { "lat": 40.7927137, "lon": -73.9470828 }, + { "lat": 40.7927354, "lon": -73.9470671 }, + { "lat": 40.7929829, "lon": -73.9468853 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 509966327, + "bounds": { + "minlat": 40.8153391, + "minlon": -73.9389307, + "maxlat": 40.8166504, + "maxlon": -73.9357666 + }, + "nodes": [ + 3099327930, + 9557110323, + 7448765231, + 5522139153, + 5463851654, + 5463851652, + 5463851650, + 5463851648, + 9557110374, + 42456831 + ], + "geometry": [ + { "lat": 40.8166504, "lon": -73.9389307 }, + { "lat": 40.8166076, "lon": -73.9388278 }, + { "lat": 40.8164644, "lon": -73.9384836 }, + { "lat": 40.8162080, "lon": -73.9378676 }, + { "lat": 40.8159270, "lon": -73.9371922 }, + { "lat": 40.8158344, "lon": -73.9369697 }, + { "lat": 40.8155421, "lon": -73.9362671 }, + { "lat": 40.8154599, "lon": -73.9360697 }, + { "lat": 40.8153850, "lon": -73.9358897 }, + { "lat": 40.8153391, "lon": -73.9357666 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 139th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 510948998, + "bounds": { + "minlat": 40.7625555, + "minlon": -73.9555811, + "maxlat": 40.7626477, + "maxlon": -73.9553878 + }, + "nodes": [ + 4648943764, + 4648949457 + ], + "geometry": [ + { "lat": 40.7626477, "lon": -73.9555811 }, + { "lat": 40.7625555, "lon": -73.9553878 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 510987453, + "bounds": { + "minlat": 40.7064382, + "minlon": -73.9670973, + "maxlat": 40.7065546, + "maxlon": -73.9667221 + }, + "nodes": [ + 4999422827, + 9776829059, + 4999422825, + 4999422824 + ], + "geometry": [ + { "lat": 40.7065181, "lon": -73.9670973 }, + { "lat": 40.7065332, "lon": -73.9670005 }, + { "lat": 40.7065546, "lon": -73.9668636 }, + { "lat": 40.7064382, "lon": -73.9667221 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 511023338, + "bounds": { + "minlat": 40.7702947, + "minlon": -74.0178602, + "maxlat": 40.7705755, + "maxlon": -74.0172757 + }, + "nodes": [ + 4999662091, + 4999662087, + 4999662090, + 4999662089 + ], + "geometry": [ + { "lat": 40.7704643, "lon": -74.0178602 }, + { "lat": 40.7704368, "lon": -74.0177965 }, + { "lat": 40.7702947, "lon": -74.0174507 }, + { "lat": 40.7705755, "lon": -74.0172757 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 511028600, + "bounds": { + "minlat": 40.7052588, + "minlon": -73.9652191, + "maxlat": 40.7057201, + "maxlon": -73.9647550 + }, + "nodes": [ + 4999699711, + 9776829211, + 5849350253, + 5849350244 + ], + "geometry": [ + { "lat": 40.7057201, "lon": -73.9649429 }, + { "lat": 40.7056653, "lon": -73.9648818 }, + { "lat": 40.7055516, "lon": -73.9647550 }, + { "lat": 40.7052588, "lon": -73.9652191 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 511671652, + "bounds": { + "minlat": 40.8040086, + "minlon": -73.9690395, + "maxlat": 40.8057185, + "maxlon": -73.9680554 + }, + "nodes": [ + 9513053640, + 9177516864, + 5004570639, + 9177516865, + 5004570640, + 5004570641, + 42452276 + ], + "geometry": [ + { "lat": 40.8040086, "lon": -73.9690395 }, + { "lat": 40.8042837, "lon": -73.9688537 }, + { "lat": 40.8044231, "lon": -73.9687663 }, + { "lat": 40.8045291, "lon": -73.9686987 }, + { "lat": 40.8046460, "lon": -73.9686282 }, + { "lat": 40.8048347, "lon": -73.9685186 }, + { "lat": 40.8057185, "lon": -73.9680554 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive West", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 511671653, + "bounds": { + "minlat": 40.8036829, + "minlon": -73.9693692, + "maxlat": 40.8057489, + "maxlon": -73.9681438 + }, + "nodes": [ + 42441276, + 9177516867, + 42441280, + 2329939943, + 9177516866, + 2329939941, + 7785880658, + 42441283 + ], + "geometry": [ + { "lat": 40.8057489, "lon": -73.9681438 }, + { "lat": 40.8051046, "lon": -73.9684804 }, + { "lat": 40.8048623, "lon": -73.9686114 }, + { "lat": 40.8046516, "lon": -73.9687312 }, + { "lat": 40.8044597, "lon": -73.9688481 }, + { "lat": 40.8042827, "lon": -73.9689629 }, + { "lat": 40.8037403, "lon": -73.9693303 }, + { "lat": 40.8036829, "lon": -73.9693692 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lane_markings": "yes", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 511671654, + "bounds": { + "minlat": 40.8035804, + "minlon": -73.9692822, + "maxlat": 40.8036478, + "maxlon": -73.9691157 + }, + "nodes": [ + 5004570651, + 42441910 + ], + "geometry": [ + { "lat": 40.8036478, "lon": -73.9692822 }, + { "lat": 40.8035804, "lon": -73.9691157 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed:type": "US:urban", + "name": "West 108th Street", + "name:ru": "Западная 108-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 511671660, + "bounds": { + "minlat": 40.8099738, + "minlon": -73.9650353, + "maxlat": 40.8100052, + "maxlon": -73.9649529 + }, + "nodes": [ + 5004570634, + 5004570633 + ], + "geometry": [ + { "lat": 40.8100052, "lon": -73.9650353 }, + { "lat": 40.8099738, "lon": -73.9649529 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 511671661, + "bounds": { + "minlat": 40.8004750, + "minlon": -73.9717928, + "maxlat": 40.8036478, + "maxlon": -73.9692822 + }, + "nodes": [ + 42441310, + 7785881402, + 5004570635, + 5004570636, + 5004570637, + 5004570638, + 5004570627, + 7785881424, + 5004570628, + 9166175593, + 5004570651 + ], + "geometry": [ + { "lat": 40.8004750, "lon": -73.9717928 }, + { "lat": 40.8005837, "lon": -73.9715894 }, + { "lat": 40.8006548, "lon": -73.9714982 }, + { "lat": 40.8007205, "lon": -73.9714313 }, + { "lat": 40.8007784, "lon": -73.9713767 }, + { "lat": 40.8009737, "lon": -73.9712246 }, + { "lat": 40.8010338, "lon": -73.9711777 }, + { "lat": 40.8011036, "lon": -73.9711280 }, + { "lat": 40.8023762, "lon": -73.9702101 }, + { "lat": 40.8035970, "lon": -73.9693194 }, + { "lat": 40.8036478, "lon": -73.9692822 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "parking:right": "lane", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 511671662, + "bounds": { + "minlat": 40.8057185, + "minlon": -73.9680554, + "maxlat": 40.8075991, + "maxlon": -73.9669620 + }, + "nodes": [ + 42452276, + 7785881417, + 5004570643, + 7785881423, + 5004570644, + 7785782249, + 7785782251, + 5004570645, + 5004570630 + ], + "geometry": [ + { "lat": 40.8057185, "lon": -73.9680554 }, + { "lat": 40.8058511, "lon": -73.9679861 }, + { "lat": 40.8062998, "lon": -73.9677579 }, + { "lat": 40.8068752, "lon": -73.9674207 }, + { "lat": 40.8069441, "lon": -73.9673729 }, + { "lat": 40.8070242, "lon": -73.9673249 }, + { "lat": 40.8071415, "lon": -73.9672550 }, + { "lat": 40.8075368, "lon": -73.9670023 }, + { "lat": 40.8075991, "lon": -73.9669620 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive West", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 511671663, + "bounds": { + "minlat": 40.8006928, + "minlon": -73.9715716, + "maxlat": 40.8036829, + "maxlon": -73.9693692 + }, + "nodes": [ + 42441283, + 9166175594, + 42441295, + 7785881397, + 42441299, + 42441303, + 42441306, + 2329939939, + 42441308 + ], + "geometry": [ + { "lat": 40.8036829, "lon": -73.9693692 }, + { "lat": 40.8036319, "lon": -73.9694052 }, + { "lat": 40.8024369, "lon": -73.9702781 }, + { "lat": 40.8011445, "lon": -73.9712223 }, + { "lat": 40.8010737, "lon": -73.9712710 }, + { "lat": 40.8010111, "lon": -73.9713160 }, + { "lat": 40.8008451, "lon": -73.9714390 }, + { "lat": 40.8007717, "lon": -73.9714994 }, + { "lat": 40.8006928, "lon": -73.9715716 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "parking:right": "lane", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 511671666, + "bounds": { + "minlat": 40.8089139, + "minlon": -73.9657230, + "maxlat": 40.8107511, + "maxlon": -73.9643865 + }, + "nodes": [ + 5004570652, + 5004570633, + 9518268096, + 5004570653 + ], + "geometry": [ + { "lat": 40.8089139, "lon": -73.9657230 }, + { "lat": 40.8099738, "lon": -73.9649529 }, + { "lat": 40.8107012, "lon": -73.9644221 }, + { "lat": 40.8107511, "lon": -73.9643865 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 511671667, + "bounds": { + "minlat": 40.8107511, + "minlon": -73.9643865, + "maxlat": 40.8113373, + "maxlon": -73.9639549 + }, + "nodes": [ + 5004570653, + 9518268105, + 7785782263, + 7620540917 + ], + "geometry": [ + { "lat": 40.8107511, "lon": -73.9643865 }, + { "lat": 40.8108087, "lon": -73.9643436 }, + { "lat": 40.8112441, "lon": -73.9640199 }, + { "lat": 40.8113373, "lon": -73.9639549 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 511671668, + "bounds": { + "minlat": 40.8089504, + "minlon": -73.9658117, + "maxlat": 40.8107852, + "maxlon": -73.9644669 + }, + "nodes": [ + 42441254, + 9518268099, + 5004570634, + 2329912061 + ], + "geometry": [ + { "lat": 40.8107852, "lon": -73.9644669 }, + { "lat": 40.8107399, "lon": -73.9645014 }, + { "lat": 40.8100052, "lon": -73.9650353 }, + { "lat": 40.8089504, "lon": -73.9658117 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 511673770, + "bounds": { + "minlat": 40.8089155, + "minlon": -73.9645365, + "maxlat": 40.8103730, + "maxlon": -73.9634770 + }, + "nodes": [ + 595314036, + 12015534433, + 12015534432, + 11953254605, + 3579426874 + ], + "geometry": [ + { "lat": 40.8089155, "lon": -73.9645365 }, + { "lat": 40.8091776, "lon": -73.9643459 }, + { "lat": 40.8098310, "lon": -73.9638710 }, + { "lat": 40.8103181, "lon": -73.9635169 }, + { "lat": 40.8103730, "lon": -73.9634770 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Claremont Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q5126299", + "wikipedia": "en:Claremont Avenue" + } +}, +{ + "type": "way", + "id": 511699175, + "bounds": { + "minlat": 40.7560373, + "minlon": -73.9790227, + "maxlat": 40.7566594, + "maxlon": -73.9785571 + }, + "nodes": [ + 42452353, + 3944708048, + 3944708046, + 42434072 + ], + "geometry": [ + { "lat": 40.7566594, "lon": -73.9785571 }, + { "lat": 40.7566008, "lon": -73.9786009 }, + { "lat": 40.7560926, "lon": -73.9789815 }, + { "lat": 40.7560373, "lon": -73.9790227 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 511699176, + "bounds": { + "minlat": 40.7543510, + "minlon": -73.9778672, + "maxlat": 40.7547351, + "maxlon": -73.9769749 + }, + "nodes": [ + 42443810, + 10125247891, + 3955372308, + 42444043 + ], + "geometry": [ + { "lat": 40.7543510, "lon": -73.9769749 }, + { "lat": 40.7543871, "lon": -73.9770562 }, + { "lat": 40.7546908, "lon": -73.9777649 }, + { "lat": 40.7547351, "lon": -73.9778672 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 45th Street", + "name:ru": "Восточная 45-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 511699178, + "bounds": { + "minlat": 40.7533008, + "minlon": -73.9787764, + "maxlat": 40.7534863, + "maxlon": -73.9783286 + }, + "nodes": [ + 10125247902, + 11294533029, + 42445917 + ], + "geometry": [ + { "lat": 40.7533008, "lon": -73.9783286 }, + { "lat": 40.7534457, "lon": -73.9786767 }, + { "lat": 40.7534863, "lon": -73.9787764 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 43rd Street", + "name:ru": "Восточная 43-я стрит", + "official_name": "David Ben Gurion Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 511699179, + "bounds": { + "minlat": 40.7531481, + "minlon": -73.9778381, + "maxlat": 40.7537188, + "maxlon": -73.9774323 + }, + "nodes": [ + 3639382769, + 11507273133, + 10125247900, + 10125247898, + 42443807 + ], + "geometry": [ + { "lat": 40.7531481, "lon": -73.9778381 }, + { "lat": 40.7531713, "lon": -73.9778213 }, + { "lat": 40.7531884, "lon": -73.9778091 }, + { "lat": 40.7536634, "lon": -73.9774726 }, + { "lat": 40.7537188, "lon": -73.9774323 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Vanderbilt Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q75889665", + "wikipedia": "en:Vanderbilt Avenue" + } +}, +{ + "type": "way", + "id": 511699181, + "bounds": { + "minlat": 40.7528125, + "minlon": -73.9792873, + "maxlat": 40.7532703, + "maxlon": -73.9789392 + }, + "nodes": [ + 42445916, + 3955360025, + 8937823540 + ], + "geometry": [ + { "lat": 40.7528125, "lon": -73.9792873 }, + { "lat": 40.7529093, "lon": -73.9792135 }, + { "lat": 40.7532703, "lon": -73.9789392 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 511699182, + "bounds": { + "minlat": 40.7515352, + "minlon": -73.9802218, + "maxlat": 40.7528125, + "maxlon": -73.9792873 + }, + "nodes": [ + 42445914, + 10166333017, + 13707001850, + 4960516269, + 3955360014, + 42432438, + 3955360017, + 3955360020, + 42445916 + ], + "geometry": [ + { "lat": 40.7515352, "lon": -73.9802218 }, + { "lat": 40.7515794, "lon": -73.9801888 }, + { "lat": 40.7517344, "lon": -73.9800755 }, + { "lat": 40.7520347, "lon": -73.9798559 }, + { "lat": 40.7520883, "lon": -73.9798168 }, + { "lat": 40.7521404, "lon": -73.9797786 }, + { "lat": 40.7522100, "lon": -73.9797279 }, + { "lat": 40.7527186, "lon": -73.9793551 }, + { "lat": 40.7528125, "lon": -73.9792873 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 511699183, + "bounds": { + "minlat": 40.7534805, + "minlon": -73.9836337, + "maxlat": 40.7546391, + "maxlon": -73.9808792 + }, + "nodes": [ + 42437358, + 3826754271, + 1289222420, + 1289222431 + ], + "geometry": [ + { "lat": 40.7534805, "lon": -73.9808792 }, + { "lat": 40.7535341, "lon": -73.9810220 }, + { "lat": 40.7541228, "lon": -73.9824111 }, + { "lat": 40.7546391, "lon": -73.9836337 } + ], + "tags": { + "access": "yes", + "bus:lanes": "yes|designated", + "foot": "designated", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 511699184, + "bounds": { + "minlat": 40.7534805, + "minlon": -73.9808792, + "maxlat": 40.7541655, + "maxlon": -73.9803921 + }, + "nodes": [ + 42454428, + 3942050702, + 10166333082, + 42437358 + ], + "geometry": [ + { "lat": 40.7541655, "lon": -73.9803921 }, + { "lat": 40.7541020, "lon": -73.9804361 }, + { "lat": 40.7535765, "lon": -73.9808089 }, + { "lat": 40.7534805, "lon": -73.9808792 } + ], + "tags": { + "access:lanes": "yes|yes|yes|no", + "bus:lanes": "yes|yes|yes|designated", + "fixme": "Verify lane count", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 511699185, + "bounds": { + "minlat": 40.7528159, + "minlon": -73.9813803, + "maxlat": 40.7534805, + "maxlon": -73.9808792 + }, + "nodes": [ + 42437358, + 3942050698, + 11043235442, + 7826843770, + 42432436 + ], + "geometry": [ + { "lat": 40.7534805, "lon": -73.9808792 }, + { "lat": 40.7533944, "lon": -73.9809447 }, + { "lat": 40.7531449, "lon": -73.9811322 }, + { "lat": 40.7528885, "lon": -73.9813256 }, + { "lat": 40.7528159, "lon": -73.9813803 } + ], + "tags": { + "access:lanes": "yes|yes|yes|no|no", + "bus:lanes": "yes|yes|yes|designated|designated", + "hgv": "no", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 511755381, + "bounds": { + "minlat": 40.7540910, + "minlon": -73.9944919, + "maxlat": 40.7551077, + "maxlon": -73.9920790 + }, + "nodes": [ + 42435650, + 6211484425, + 8660596982, + 7648640949, + 10308291149 + ], + "geometry": [ + { "lat": 40.7540910, "lon": -73.9920790 }, + { "lat": 40.7541431, "lon": -73.9922022 }, + { "lat": 40.7541490, "lon": -73.9922163 }, + { "lat": 40.7550598, "lon": -73.9943779 }, + { "lat": 40.7551077, "lon": -73.9944919 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 511905952, + "bounds": { + "minlat": 40.7155795, + "minlon": -73.9961338, + "maxlat": 40.7161492, + "maxlon": -73.9957337 + }, + "nodes": [ + 5161246307, + 588455865, + 588455736 + ], + "geometry": [ + { "lat": 40.7161492, "lon": -73.9961338 }, + { "lat": 40.7160129, "lon": -73.9960347 }, + { "lat": 40.7155795, "lon": -73.9957337 } + ], + "tags": { + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "35 mph", + "moped": "no", + "name": "Canal Street", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:separate": "left" + } +}, +{ + "type": "way", + "id": 511924053, + "bounds": { + "minlat": 40.7557614, + "minlon": -73.9671663, + "maxlat": 40.7567628, + "maxlon": -73.9647728 + }, + "nodes": [ + 42436714, + 10121802256, + 10621813777, + 6175849566, + 42436710 + ], + "geometry": [ + { "lat": 40.7557614, "lon": -73.9647728 }, + { "lat": 40.7558231, "lon": -73.9649202 }, + { "lat": 40.7564469, "lon": -73.9664114 }, + { "lat": 40.7567059, "lon": -73.9670304 }, + { "lat": 40.7567628, "lon": -73.9671663 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 53rd Street", + "name:ru": "Восточная 53-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 511924978, + "bounds": { + "minlat": 40.7564980, + "minlon": -73.9740765, + "maxlat": 40.7572198, + "maxlon": -73.9723620 + }, + "nodes": [ + 596775870, + 42459098, + 3977886196, + 3977886190, + 42446991 + ], + "geometry": [ + { "lat": 40.7572198, "lon": -73.9740765 }, + { "lat": 40.7571447, "lon": -73.9739026 }, + { "lat": 40.7570996, "lon": -73.9737971 }, + { "lat": 40.7565397, "lon": -73.9724715 }, + { "lat": 40.7564980, "lon": -73.9723620 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "East 50th Street", + "name:ru": "Восточная 50-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 511930973, + "bounds": { + "minlat": 40.8137798, + "minlon": -73.9411989, + "maxlat": 40.8141450, + "maxlon": -73.9409348 + }, + "nodes": [ + 3099327955, + 9559444360, + 7132743058 + ], + "geometry": [ + { "lat": 40.8141450, "lon": -73.9409348 }, + { "lat": 40.8140524, "lon": -73.9410005 }, + { "lat": 40.8137798, "lon": -73.9411989 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 511930974, + "bounds": { + "minlat": 40.8147543, + "minlon": -73.9402901, + "maxlat": 40.8151602, + "maxlon": -73.9399945 + }, + "nodes": [ + 42434361, + 9559408301, + 4205440402 + ], + "geometry": [ + { "lat": 40.8147543, "lon": -73.9402901 }, + { "lat": 40.8148107, "lon": -73.9402490 }, + { "lat": 40.8151602, "lon": -73.9399945 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 511930975, + "bounds": { + "minlat": 40.8140809, + "minlon": -73.9409348, + "maxlat": 40.8141450, + "maxlon": -73.9407812 + }, + "nodes": [ + 42453258, + 3099327955 + ], + "geometry": [ + { "lat": 40.8140809, "lon": -73.9407812 }, + { "lat": 40.8141450, "lon": -73.9409348 } + ], + "tags": { + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 135th Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 511973084, + "bounds": { + "minlat": 40.7391809, + "minlon": -73.9818184, + "maxlat": 40.7399596, + "maxlon": -73.9799749 + }, + "nodes": [ + 42442891, + 8119192814, + 9968663366 + ], + "geometry": [ + { "lat": 40.7391809, "lon": -73.9799749 }, + { "lat": 40.7392350, "lon": -73.9801047 }, + { "lat": 40.7399596, "lon": -73.9818184 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 25th Street", + "name:ru": "Восточная 25-я стрит", + "name_1": "East 25 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 511981302, + "bounds": { + "minlat": 40.7105360, + "minlon": -73.9551195, + "maxlat": 40.7106191, + "maxlon": -73.9550673 + }, + "nodes": [ + 4593135560, + 4209420712 + ], + "geometry": [ + { "lat": 40.7105360, "lon": -73.9551195 }, + { "lat": 40.7106191, "lon": -73.9550673 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 512110312, + "bounds": { + "minlat": 40.7364933, + "minlon": -73.9780827, + "maxlat": 40.7366994, + "maxlon": -73.9779699 + }, + "nodes": [ + 4207683795, + 5145323794, + 5007848095 + ], + "geometry": [ + { "lat": 40.7366994, "lon": -73.9780827 }, + { "lat": 40.7365606, "lon": -73.9780069 }, + { "lat": 40.7364933, "lon": -73.9779699 } + ], + "tags": { + "highway": "service", + "name": "East 23rd Street Access Road", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 512114958, + "bounds": { + "minlat": 40.7337658, + "minlon": -73.9397313, + "maxlat": 40.7340169, + "maxlon": -73.9391240 + }, + "nodes": [ + 279157230, + 9982697983, + 9982697982, + 9982697984, + 5890759764, + 5007887841 + ], + "geometry": [ + { "lat": 40.7340169, "lon": -73.9391240 }, + { "lat": 40.7339954, "lon": -73.9391508 }, + { "lat": 40.7339730, "lon": -73.9391841 }, + { "lat": 40.7339557, "lon": -73.9392213 }, + { "lat": 40.7338099, "lon": -73.9395788 }, + { "lat": 40.7337658, "lon": -73.9397313 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 512948298, + "bounds": { + "minlat": 40.8075750, + "minlon": -73.9438958, + "maxlat": 40.8078924, + "maxlon": -73.9436788 + }, + "nodes": [ + 5015321231, + 10172833434, + 5015321232, + 5015321233, + 5015321234, + 2767371714 + ], + "geometry": [ + { "lat": 40.8078924, "lon": -73.9436788 }, + { "lat": 40.8078374, "lon": -73.9437133 }, + { "lat": 40.8078122, "lon": -73.9437290 }, + { "lat": 40.8077298, "lon": -73.9437874 }, + { "lat": 40.8076160, "lon": -73.9438732 }, + { "lat": 40.8075750, "lon": -73.9438958 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 513586748, + "bounds": { + "minlat": 40.7505312, + "minlon": -73.9409255, + "maxlat": 40.7506609, + "maxlon": -73.9406478 + }, + "nodes": [ + 6785945701, + 3785649058, + 3785649059, + 8315072968, + 2969267798 + ], + "geometry": [ + { "lat": 40.7506609, "lon": -73.9409255 }, + { "lat": 40.7506432, "lon": -73.9408855 }, + { "lat": 40.7505964, "lon": -73.9407872 }, + { "lat": 40.7505710, "lon": -73.9407333 }, + { "lat": 40.7505312, "lon": -73.9406478 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "name": "Queens Plaza South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 513586749, + "bounds": { + "minlat": 40.7470835, + "minlon": -73.9425182, + "maxlat": 40.7471469, + "maxlon": -73.9423781 + }, + "nodes": [ + 2971841380, + 9982745653, + 9982745651, + 2971841379 + ], + "geometry": [ + { "lat": 40.7471469, "lon": -73.9425182 }, + { "lat": 40.7471203, "lon": -73.9424515 }, + { "lat": 40.7471023, "lon": -73.9424118 }, + { "lat": 40.7470835, "lon": -73.9423781 } + ], + "tags": { + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "left;through|right" + } +}, +{ + "type": "way", + "id": 513647366, + "bounds": { + "minlat": 40.6989848, + "minlon": -73.9186095, + "maxlat": 40.7118430, + "maxlon": -73.9055890 + }, + "nodes": [ + 42501187, + 9761722278, + 9753035543, + 42501190, + 9753035544, + 9755789682, + 42501192, + 9755789683, + 9761722118, + 42501196, + 9761722119, + 9761722104, + 42876049, + 9761722102, + 10682504690, + 9761722040, + 9762206505, + 42876052, + 9762206500, + 10686537764, + 9761709233, + 42827611, + 9761709235, + 9761709250, + 42809954, + 9761709248, + 12873867703, + 8588167423, + 9763022380, + 42806581, + 9763022174, + 10686521675, + 9763022193, + 42851915, + 9763022195, + 42831235, + 42876064, + 42876068, + 11128557540, + 11128557537, + 11128557534, + 11128557528, + 11128557531, + 9763022221, + 42876072 + ], + "geometry": [ + { "lat": 40.6989848, "lon": -73.9186095 }, + { "lat": 40.6990233, "lon": -73.9185735 }, + { "lat": 40.7004911, "lon": -73.9171259 }, + { "lat": 40.7005371, "lon": -73.9170805 }, + { "lat": 40.7006035, "lon": -73.9170154 }, + { "lat": 40.7019910, "lon": -73.9156539 }, + { "lat": 40.7020466, "lon": -73.9155982 }, + { "lat": 40.7021032, "lon": -73.9155418 }, + { "lat": 40.7031881, "lon": -73.9144378 }, + { "lat": 40.7032390, "lon": -73.9143860 }, + { "lat": 40.7032979, "lon": -73.9143271 }, + { "lat": 40.7042665, "lon": -73.9133583 }, + { "lat": 40.7043207, "lon": -73.9133041 }, + { "lat": 40.7043779, "lon": -73.9132445 }, + { "lat": 40.7050788, "lon": -73.9125137 }, + { "lat": 40.7053467, "lon": -73.9122343 }, + { "lat": 40.7053791, "lon": -73.9122005 }, + { "lat": 40.7054400, "lon": -73.9121370 }, + { "lat": 40.7055004, "lon": -73.9120753 }, + { "lat": 40.7062733, "lon": -73.9112863 }, + { "lat": 40.7062958, "lon": -73.9112633 }, + { "lat": 40.7063460, "lon": -73.9112120 }, + { "lat": 40.7063997, "lon": -73.9111573 }, + { "lat": 40.7074226, "lon": -73.9101144 }, + { "lat": 40.7074720, "lon": -73.9100640 }, + { "lat": 40.7075246, "lon": -73.9100104 }, + { "lat": 40.7081860, "lon": -73.9093362 }, + { "lat": 40.7084845, "lon": -73.9090319 }, + { "lat": 40.7085062, "lon": -73.9090097 }, + { "lat": 40.7085550, "lon": -73.9089600 }, + { "lat": 40.7086059, "lon": -73.9089078 }, + { "lat": 40.7096645, "lon": -73.9078225 }, + { "lat": 40.7096991, "lon": -73.9077870 }, + { "lat": 40.7097440, "lon": -73.9077410 }, + { "lat": 40.7097980, "lon": -73.9076869 }, + { "lat": 40.7101570, "lon": -73.9073270 }, + { "lat": 40.7102590, "lon": -73.9072180 }, + { "lat": 40.7109600, "lon": -73.9065000 }, + { "lat": 40.7112527, "lon": -73.9061980 }, + { "lat": 40.7113527, "lon": -73.9060949 }, + { "lat": 40.7114581, "lon": -73.9059861 }, + { "lat": 40.7115615, "lon": -73.9058794 }, + { "lat": 40.7116655, "lon": -73.9057721 }, + { "lat": 40.7117741, "lon": -73.9056601 }, + { "lat": 40.7118430, "lon": -73.9055890 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Greene Avenue", + "name:etymology:wikidata": "Q366113", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 513746101, + "bounds": { + "minlat": 40.8015462, + "minlon": -73.9648783, + "maxlat": 40.8017391, + "maxlon": -73.9647362 + }, + "nodes": [ + 13759551433, + 10165989508, + 42442565, + 13759551434 + ], + "geometry": [ + { "lat": 40.8015462, "lon": -73.9648783 }, + { "lat": 40.8016823, "lon": -73.9647800 }, + { "lat": 40.8017333, "lon": -73.9647404 }, + { "lat": 40.8017391, "lon": -73.9647362 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 513960398, + "bounds": { + "minlat": 40.7349656, + "minlon": -73.9408413, + "maxlat": 40.7386760, + "maxlon": -73.9385695 + }, + "nodes": [ + 42856255, + 6721411013, + 5481983891, + 13701119386, + 13701119379, + 4952694885, + 42833299, + 4954941174, + 7824536267, + 6644592935, + 9982697917, + 9982697918, + 9982697919, + 9982697920, + 42856246 + ], + "geometry": [ + { "lat": 40.7349656, "lon": -73.9385695 }, + { "lat": 40.7352850, "lon": -73.9387694 }, + { "lat": 40.7355939, "lon": -73.9389657 }, + { "lat": 40.7363209, "lon": -73.9394275 }, + { "lat": 40.7363542, "lon": -73.9394487 }, + { "lat": 40.7375322, "lon": -73.9401970 }, + { "lat": 40.7381750, "lon": -73.9406060 }, + { "lat": 40.7382263, "lon": -73.9406386 }, + { "lat": 40.7383419, "lon": -73.9407120 }, + { "lat": 40.7385295, "lon": -73.9408299 }, + { "lat": 40.7385484, "lon": -73.9408375 }, + { "lat": 40.7385742, "lon": -73.9408413 }, + { "lat": 40.7386006, "lon": -73.9408380 }, + { "lat": 40.7386219, "lon": -73.9408307 }, + { "lat": 40.7386760, "lon": -73.9408062 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Review Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 513967643, + "bounds": { + "minlat": 40.7431379, + "minlon": -73.9158551, + "maxlat": 40.7434550, + "maxlon": -73.9148370 + }, + "nodes": [ + 42807843, + 11379615706, + 11694654155, + 11694654150, + 42870230 + ], + "geometry": [ + { "lat": 40.7431379, "lon": -73.9158551 }, + { "lat": 40.7431598, "lon": -73.9157960 }, + { "lat": 40.7431726, "lon": -73.9157545 }, + { "lat": 40.7434245, "lon": -73.9149361 }, + { "lat": 40.7434550, "lon": -73.9148370 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Roosevelt Avenue", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 514350784, + "bounds": { + "minlat": 40.7751541, + "minlon": -73.9755732, + "maxlat": 40.7760426, + "maxlon": -73.9754423 + }, + "nodes": [ + 248709587, + 9906929024, + 2059303946, + 9906929023, + 2059303945, + 2059303944, + 248709386, + 2059303943, + 2059303942, + 2059303941, + 9906929022, + 9178915182, + 2059303940, + 248709387, + 2059303939, + 2059303927, + 2059303924, + 248709388, + 2059303919, + 2059303916 + ], + "geometry": [ + { "lat": 40.7760426, "lon": -73.9755334 }, + { "lat": 40.7760319, "lon": -73.9755147 }, + { "lat": 40.7760156, "lon": -73.9754932 }, + { "lat": 40.7759900, "lon": -73.9754707 }, + { "lat": 40.7759660, "lon": -73.9754544 }, + { "lat": 40.7759373, "lon": -73.9754450 }, + { "lat": 40.7759094, "lon": -73.9754423 }, + { "lat": 40.7758844, "lon": -73.9754432 }, + { "lat": 40.7758572, "lon": -73.9754491 }, + { "lat": 40.7758257, "lon": -73.9754616 }, + { "lat": 40.7757221, "lon": -73.9755040 }, + { "lat": 40.7756504, "lon": -73.9755288 }, + { "lat": 40.7755768, "lon": -73.9755480 }, + { "lat": 40.7755157, "lon": -73.9755592 }, + { "lat": 40.7754486, "lon": -73.9755690 }, + { "lat": 40.7753758, "lon": -73.9755730 }, + { "lat": 40.7753142, "lon": -73.9755732 }, + { "lat": 40.7752540, "lon": -73.9755669 }, + { "lat": 40.7752037, "lon": -73.9755592 }, + { "lat": 40.7751541, "lon": -73.9755463 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "cycleway": "track", + "hgv": "no", + "highway": "service", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 515399923, + "bounds": { + "minlat": 40.7425496, + "minlon": -73.9531439, + "maxlat": 40.7428324, + "maxlon": -73.9530572 + }, + "nodes": [ + 5033544740, + 11622964714, + 5033544764, + 6593131310 + ], + "geometry": [ + { "lat": 40.7425496, "lon": -73.9531439 }, + { "lat": 40.7426112, "lon": -73.9531254 }, + { "lat": 40.7426322, "lon": -73.9531191 }, + { "lat": 40.7428324, "lon": -73.9530572 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 515399924, + "bounds": { + "minlat": 40.7425810, + "minlon": -73.9533061, + "maxlat": 40.7428629, + "maxlon": -73.9532100 + }, + "nodes": [ + 6593131311, + 5033544763, + 11622964715, + 5033544743 + ], + "geometry": [ + { "lat": 40.7428629, "lon": -73.9532100 }, + { "lat": 40.7426634, "lon": -73.9532791 }, + { "lat": 40.7426426, "lon": -73.9532859 }, + { "lat": 40.7425810, "lon": -73.9533061 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 515879032, + "bounds": { + "minlat": 40.7035982, + "minlon": -74.0144028, + "maxlat": 40.7036181, + "maxlon": -74.0131307 + }, + "nodes": [ + 42444479, + 7685185609, + 9939135572, + 7687295646, + 9939135578, + 9939135577, + 1772104735, + 7335430608, + 42444480 + ], + "geometry": [ + { "lat": 40.7036181, "lon": -74.0144028 }, + { "lat": 40.7036168, "lon": -74.0142753 }, + { "lat": 40.7036116, "lon": -74.0139852 }, + { "lat": 40.7036104, "lon": -74.0139096 }, + { "lat": 40.7036082, "lon": -74.0137683 }, + { "lat": 40.7036072, "lon": -74.0137067 }, + { "lat": 40.7036006, "lon": -74.0132829 }, + { "lat": 40.7035996, "lon": -74.0132187 }, + { "lat": 40.7035982, "lon": -74.0131307 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bridge Street", + "name:ko": "브리지 스트리트", + "name:ru": "Бридж-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bridge", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q4966296", + "wikipedia": "en:Bridge Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 515879035, + "bounds": { + "minlat": 40.7032112, + "minlon": -74.0126385, + "maxlat": 40.7034746, + "maxlon": -74.0115948 + }, + "nodes": [ + 42431889, + 11050101037, + 11040337399, + 7706695193, + 11050101036, + 42444360 + ], + "geometry": [ + { "lat": 40.7034746, "lon": -74.0115948 }, + { "lat": 40.7034591, "lon": -74.0116340 }, + { "lat": 40.7034432, "lon": -74.0116788 }, + { "lat": 40.7034316, "lon": -74.0117206 }, + { "lat": 40.7033525, "lon": -74.0120494 }, + { "lat": 40.7032112, "lon": -74.0126385 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 515879040, + "bounds": { + "minlat": 40.7031144, + "minlon": -74.0135644, + "maxlat": 40.7031234, + "maxlon": -74.0130194 + }, + "nodes": [ + 42444355, + 11050101040, + 7335430610, + 11382519403, + 11382519402, + 11382526200 + ], + "geometry": [ + { "lat": 40.7031234, "lon": -74.0130194 }, + { "lat": 40.7031189, "lon": -74.0130608 }, + { "lat": 40.7031167, "lon": -74.0131058 }, + { "lat": 40.7031144, "lon": -74.0133103 }, + { "lat": 40.7031169, "lon": -74.0135183 }, + { "lat": 40.7031188, "lon": -74.0135644 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 516664206, + "bounds": { + "minlat": 40.7216368, + "minlon": -74.0117761, + "maxlat": 40.7223187, + "maxlon": -74.0116409 + }, + "nodes": [ + 42436316, + 246882231, + 42440918 + ], + "geometry": [ + { "lat": 40.7216368, "lon": -74.0117761 }, + { "lat": 40.7222241, "lon": -74.0116606 }, + { "lat": 40.7223187, "lon": -74.0116409 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 516664207, + "bounds": { + "minlat": 40.7223439, + "minlon": -74.0118571, + "maxlat": 40.7230061, + "maxlon": -74.0117198 + }, + "nodes": [ + 246890279, + 246882133, + 246890098, + 246882203, + 12410398108 + ], + "geometry": [ + { "lat": 40.7230061, "lon": -74.0117198 }, + { "lat": 40.7229005, "lon": -74.0117430 }, + { "lat": 40.7224920, "lon": -74.0118273 }, + { "lat": 40.7224409, "lon": -74.0118379 }, + { "lat": 40.7223439, "lon": -74.0118571 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 516664208, + "bounds": { + "minlat": 40.7223187, + "minlon": -74.0118571, + "maxlat": 40.7223439, + "maxlon": -74.0116409 + }, + "nodes": [ + 42440918, + 12410398108 + ], + "geometry": [ + { "lat": 40.7223187, "lon": -74.0116409 }, + { "lat": 40.7223439, "lon": -74.0118571 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Laight Street", + "name:ko": "레이트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 516664210, + "bounds": { + "minlat": 40.7203190, + "minlon": -74.0120514, + "maxlat": 40.7216368, + "maxlon": -74.0117761 + }, + "nodes": [ + 4207143418, + 246891303, + 42436316 + ], + "geometry": [ + { "lat": 40.7203190, "lon": -74.0120514 }, + { "lat": 40.7204331, "lon": -74.0120278 }, + { "lat": 40.7216368, "lon": -74.0117761 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 516682341, + "bounds": { + "minlat": 40.7641245, + "minlon": -73.9327413, + "maxlat": 40.7646423, + "maxlon": -73.9322587 + }, + "nodes": [ + 42881454, + 1048734622 + ], + "geometry": [ + { "lat": 40.7646423, "lon": -73.9322587 }, + { "lat": 40.7641245, "lon": -73.9327413 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516687452, + "bounds": { + "minlat": 40.7435472, + "minlon": -73.9507136, + "maxlat": 40.7435957, + "maxlon": -73.9506198 + }, + "nodes": [ + 8742652244, + 42844248 + ], + "geometry": [ + { "lat": 40.7435957, "lon": -73.9506198 }, + { "lat": 40.7435472, "lon": -73.9507136 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Jackson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes:forward": "left|left|through;right" + } +}, +{ + "type": "way", + "id": 516688141, + "bounds": { + "minlat": 40.7642493, + "minlon": -73.9295241, + "maxlat": 40.7653068, + "maxlon": -73.9276258 + }, + "nodes": [ + 7726598428, + 7966131597, + 6452886884, + 42818525 + ], + "geometry": [ + { "lat": 40.7653068, "lon": -73.9295241 }, + { "lat": 40.7643189, "lon": -73.9277509 }, + { "lat": 40.7642922, "lon": -73.9277029 }, + { "lat": 40.7642493, "lon": -73.9276258 } + ], + "tags": { + "highway": "residential", + "name": "31st Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516688142, + "bounds": { + "minlat": 40.7660913, + "minlon": -73.9308684, + "maxlat": 40.7666660, + "maxlon": -73.9303860 + }, + "nodes": [ + 7726598426, + 7738247912, + 7746705660, + 5487911882, + 4991520723, + 2693557987 + ], + "geometry": [ + { "lat": 40.7660913, "lon": -73.9308684 }, + { "lat": 40.7661273, "lon": -73.9308378 }, + { "lat": 40.7664280, "lon": -73.9305825 }, + { "lat": 40.7664367, "lon": -73.9305752 }, + { "lat": 40.7666135, "lon": -73.9304291 }, + { "lat": 40.7666660, "lon": -73.9303860 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516690248, + "bounds": { + "minlat": 40.7673356, + "minlon": -73.9298596, + "maxlat": 40.7677832, + "maxlon": -73.9294913 + }, + "nodes": [ + 42826053, + 7661754166, + 7781247061, + 2403968916 + ], + "geometry": [ + { "lat": 40.7673356, "lon": -73.9298596 }, + { "lat": 40.7674084, "lon": -73.9297987 }, + { "lat": 40.7676919, "lon": -73.9295654 }, + { "lat": 40.7677832, "lon": -73.9294913 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516690251, + "bounds": { + "minlat": 40.7673356, + "minlon": -73.9320267, + "maxlat": 40.7682614, + "maxlon": -73.9298596 + }, + "nodes": [ + 42826053, + 7668020432, + 7668020430, + 42843340 + ], + "geometry": [ + { "lat": 40.7673356, "lon": -73.9298596 }, + { "lat": 40.7673911, "lon": -73.9299810 }, + { "lat": 40.7682259, "lon": -73.9319363 }, + { "lat": 40.7682614, "lon": -73.9320267 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "name": "31st Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516690254, + "bounds": { + "minlat": 40.7657446, + "minlon": -73.9285540, + "maxlat": 40.7667180, + "maxlon": -73.9264504 + }, + "nodes": [ + 42856513, + 7668020435, + 2457398822, + 42818515 + ], + "geometry": [ + { "lat": 40.7667180, "lon": -73.9285540 }, + { "lat": 40.7666872, "lon": -73.9284885 }, + { "lat": 40.7657704, "lon": -73.9265388 }, + { "lat": 40.7657446, "lon": -73.9264504 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "name": "31st Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516690258, + "bounds": { + "minlat": 40.7667180, + "minlon": -73.9298596, + "maxlat": 40.7673356, + "maxlon": -73.9285540 + }, + "nodes": [ + 42826053, + 7668020433, + 7668020434, + 42856513 + ], + "geometry": [ + { "lat": 40.7673356, "lon": -73.9298596 }, + { "lat": 40.7672814, "lon": -73.9297409 }, + { "lat": 40.7667555, "lon": -73.9286339 }, + { "lat": 40.7667180, "lon": -73.9285540 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "name": "31st Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516690261, + "bounds": { + "minlat": 40.7666660, + "minlon": -73.9303860, + "maxlat": 40.7673356, + "maxlon": -73.9298596 + }, + "nodes": [ + 2693557987, + 4991520722, + 11619819405, + 7661754167, + 42826053 + ], + "geometry": [ + { "lat": 40.7666660, "lon": -73.9303860 }, + { "lat": 40.7667309, "lon": -73.9303339 }, + { "lat": 40.7668672, "lon": -73.9302279 }, + { "lat": 40.7672702, "lon": -73.9299144 }, + { "lat": 40.7673356, "lon": -73.9298596 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516690264, + "bounds": { + "minlat": 40.7666660, + "minlon": -73.9324685, + "maxlat": 40.7677176, + "maxlon": -73.9303860 + }, + "nodes": [ + 2693557987, + 4991520724, + 6456419941, + 42843342 + ], + "geometry": [ + { "lat": 40.7666660, "lon": -73.9303860 }, + { "lat": 40.7667256, "lon": -73.9305041 }, + { "lat": 40.7676717, "lon": -73.9323776 }, + { "lat": 40.7677176, "lon": -73.9324685 } + ], + "tags": { + "highway": "residential", + "name": "31st Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 516690622, + "bounds": { + "minlat": 40.7676161, + "minlon": -73.9291350, + "maxlat": 40.7682290, + "maxlon": -73.9278212 + }, + "nodes": [ + 42826048, + 3570422528, + 7746705656, + 5487911867, + 6452981347, + 42849235 + ], + "geometry": [ + { "lat": 40.7682290, "lon": -73.9291350 }, + { "lat": 40.7681718, "lon": -73.9290123 }, + { "lat": 40.7681121, "lon": -73.9288845 }, + { "lat": 40.7680966, "lon": -73.9288512 }, + { "lat": 40.7676523, "lon": -73.9278965 }, + { "lat": 40.7676161, "lon": -73.9278212 } + ], + "tags": { + "highway": "residential", + "name": "30th Drive", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 516690623, + "bounds": { + "minlat": 40.7682290, + "minlon": -73.9344740, + "maxlat": 40.7704120, + "maxlon": -73.9291350 + }, + "nodes": [ + 42826957, + 2459401750, + 7713828601, + 6456422112, + 42849225, + 6456422114, + 7726535695, + 6456422121, + 42843338, + 6456422128, + 3570422530, + 42826048 + ], + "geometry": [ + { "lat": 40.7704120, "lon": -73.9344740 }, + { "lat": 40.7703768, "lon": -73.9343858 }, + { "lat": 40.7697613, "lon": -73.9328788 }, + { "lat": 40.7697324, "lon": -73.9328079 }, + { "lat": 40.7696990, "lon": -73.9327260 }, + { "lat": 40.7696760, "lon": -73.9326697 }, + { "lat": 40.7691911, "lon": -73.9314839 }, + { "lat": 40.7691676, "lon": -73.9314252 }, + { "lat": 40.7691254, "lon": -73.9313232 }, + { "lat": 40.7690889, "lon": -73.9312342 }, + { "lat": 40.7682808, "lon": -73.9292614 }, + { "lat": 40.7682290, "lon": -73.9291350 } + ], + "tags": { + "highway": "residential", + "name": "30th Drive", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 516690624, + "bounds": { + "minlat": 40.7682290, + "minlon": -73.9291350, + "maxlat": 40.7690600, + "maxlon": -73.9284710 + }, + "nodes": [ + 42826048, + 3570422531, + 7950032302, + 6452789092, + 42810477 + ], + "geometry": [ + { "lat": 40.7682290, "lon": -73.9291350 }, + { "lat": 40.7682973, "lon": -73.9290805 }, + { "lat": 40.7687926, "lon": -73.9286847 }, + { "lat": 40.7690113, "lon": -73.9285097 }, + { "lat": 40.7690600, "lon": -73.9284710 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516690870, + "bounds": { + "minlat": 40.7532960, + "minlon": -73.9076727, + "maxlat": 40.7536450, + "maxlon": -73.9069005 + }, + "nodes": [ + 42836507, + 13784327135, + 5391429576, + 13784327137, + 5116233220, + 3569893212, + 7762260255, + 7762260254 + ], + "geometry": [ + { "lat": 40.7536450, "lon": -73.9076727 }, + { "lat": 40.7536011, "lon": -73.9075757 }, + { "lat": 40.7534944, "lon": -73.9073396 }, + { "lat": 40.7534390, "lon": -73.9072168 }, + { "lat": 40.7534329, "lon": -73.9072034 }, + { "lat": 40.7533992, "lon": -73.9071288 }, + { "lat": 40.7533320, "lon": -73.9069801 }, + { "lat": 40.7532960, "lon": -73.9069005 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516692046, + "bounds": { + "minlat": 40.7698890, + "minlon": -73.9278070, + "maxlat": 40.7705233, + "maxlon": -73.9273070 + }, + "nodes": [ + 42826040, + 5375687401, + 2883544415, + 5538998198, + 3570422536, + 42826042 + ], + "geometry": [ + { "lat": 40.7705233, "lon": -73.9273070 }, + { "lat": 40.7704725, "lon": -73.9273470 }, + { "lat": 40.7702163, "lon": -73.9275487 }, + { "lat": 40.7700823, "lon": -73.9276544 }, + { "lat": 40.7699598, "lon": -73.9277512 }, + { "lat": 40.7698890, "lon": -73.9278070 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516692960, + "bounds": { + "minlat": 40.7669478, + "minlon": -73.9222410, + "maxlat": 40.7672998, + "maxlon": -73.9214857 + }, + "nodes": [ + 42874050, + 42874054, + 5118688293, + 11186130545, + 6406731574, + 12356877229 + ], + "geometry": [ + { "lat": 40.7672998, "lon": -73.9222410 }, + { "lat": 40.7672644, "lon": -73.9221655 }, + { "lat": 40.7671145, "lon": -73.9218468 }, + { "lat": 40.7670816, "lon": -73.9217756 }, + { "lat": 40.7669609, "lon": -73.9215142 }, + { "lat": 40.7669478, "lon": -73.9214857 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "30th Avenue", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516692961, + "bounds": { + "minlat": 40.7666133, + "minlon": -73.9216178, + "maxlat": 40.7669012, + "maxlon": -73.9213848 + }, + "nodes": [ + 42849722, + 6406731691, + 5043598621 + ], + "geometry": [ + { "lat": 40.7669012, "lon": -73.9213848 }, + { "lat": 40.7668276, "lon": -73.9214441 }, + { "lat": 40.7666133, "lon": -73.9216178 } + ], + "tags": { + "cycleway": "track", + "foot": "yes", + "highway": "secondary", + "maxheight": "12'6\"", + "name": "31st Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516692962, + "bounds": { + "minlat": 40.7665256, + "minlon": -73.9212913, + "maxlat": 40.7668563, + "maxlon": -73.9206020 + }, + "nodes": [ + 12356877230, + 6406731726, + 5118688292, + 6406731557, + 42874056 + ], + "geometry": [ + { "lat": 40.7668563, "lon": -73.9212913 }, + { "lat": 40.7668410, "lon": -73.9212595 }, + { "lat": 40.7667334, "lon": -73.9210350 }, + { "lat": 40.7665545, "lon": -73.9206624 }, + { "lat": 40.7665256, "lon": -73.9206020 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "name": "30th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516692963, + "bounds": { + "minlat": 40.7669012, + "minlon": -73.9213848, + "maxlat": 40.7676626, + "maxlon": -73.9207885 + }, + "nodes": [ + 42849719, + 6406731552, + 6406731686, + 42849722 + ], + "geometry": [ + { "lat": 40.7676626, "lon": -73.9207885 }, + { "lat": 40.7675899, "lon": -73.9208455 }, + { "lat": 40.7669727, "lon": -73.9213290 }, + { "lat": 40.7669012, "lon": -73.9213848 } + ], + "tags": { + "cycleway": "track", + "foot": "yes", + "highway": "secondary", + "lanes": "2", + "maxheight": "12'6\"", + "maxspeed": "20 mph", + "name": "31st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516693405, + "bounds": { + "minlat": 40.7538119, + "minlon": -73.9160166, + "maxlat": 40.7538583, + "maxlon": -73.9156276 + }, + "nodes": [ + 12046186751, + 5540344264, + 9188971711, + 12046186756 + ], + "geometry": [ + { "lat": 40.7538583, "lon": -73.9160166 }, + { "lat": 40.7538483, "lon": -73.9159098 }, + { "lat": 40.7538309, "lon": -73.9157568 }, + { "lat": 40.7538119, "lon": -73.9156276 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 516694362, + "bounds": { + "minlat": 40.7698754, + "minlon": -73.9183546, + "maxlat": 40.7700816, + "maxlon": -73.9181169 + }, + "nodes": [ + 42849714, + 7006553821, + 276209340 + ], + "geometry": [ + { "lat": 40.7700816, "lon": -73.9181169 }, + { "lat": 40.7699615, "lon": -73.9182515 }, + { "lat": 40.7698754, "lon": -73.9183546 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "31st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516694363, + "bounds": { + "minlat": 40.7680365, + "minlon": -73.9199879, + "maxlat": 40.7684376, + "maxlon": -73.9191234 + }, + "nodes": [ + 42832974, + 6406731792, + 42832976 + ], + "geometry": [ + { "lat": 40.7684376, "lon": -73.9199879 }, + { "lat": 40.7683777, "lon": -73.9198549 }, + { "lat": 40.7680365, "lon": -73.9191234 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "name": "28th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516694364, + "bounds": { + "minlat": 40.7681197, + "minlon": -73.9203580, + "maxlat": 40.7684376, + "maxlon": -73.9199879 + }, + "nodes": [ + 42832974, + 4971244240, + 42842303 + ], + "geometry": [ + { "lat": 40.7684376, "lon": -73.9199879 }, + { "lat": 40.7683950, "lon": -73.9200375 }, + { "lat": 40.7681197, "lon": -73.9203580 } + ], + "tags": { + "foot": "no", + "highway": "secondary", + "lanes": "2", + "maxheight": "12'6\"", + "maxspeed": "20 mph", + "name": "31st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516696182, + "bounds": { + "minlat": 40.7612202, + "minlon": -73.9315800, + "maxlat": 40.7617060, + "maxlon": -73.9305723 + }, + "nodes": [ + 42824101, + 6452521778, + 8575778434, + 6452521768, + 42818542 + ], + "geometry": [ + { "lat": 40.7617060, "lon": -73.9315800 }, + { "lat": 40.7616571, "lon": -73.9314792 }, + { "lat": 40.7612821, "lon": -73.9307093 }, + { "lat": 40.7612637, "lon": -73.9306677 }, + { "lat": 40.7612202, "lon": -73.9305723 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "lit": "yes", + "name": "34th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516696183, + "bounds": { + "minlat": 40.7628260, + "minlon": -73.9354541, + "maxlat": 40.7635103, + "maxlon": -73.9339810 + }, + "nodes": [ + 42824091, + 11619819454, + 5527162637, + 8158221238, + 5527162639, + 4991541894, + 42824096 + ], + "geometry": [ + { "lat": 40.7635103, "lon": -73.9354541 }, + { "lat": 40.7634643, "lon": -73.9353525 }, + { "lat": 40.7632981, "lon": -73.9349850 }, + { "lat": 40.7632150, "lon": -73.9348078 }, + { "lat": 40.7630721, "lon": -73.9345033 }, + { "lat": 40.7628861, "lon": -73.9341094 }, + { "lat": 40.7628260, "lon": -73.9339810 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "34th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516696184, + "bounds": { + "minlat": 40.7628260, + "minlon": -73.9339810, + "maxlat": 40.7639900, + "maxlon": -73.9328700 + }, + "nodes": [ + 42807567, + 7726861001, + 7726860992, + 11619819443, + 7185923466, + 4991541892, + 42824096 + ], + "geometry": [ + { "lat": 40.7639900, "lon": -73.9328700 }, + { "lat": 40.7634110, "lon": -73.9334226 }, + { "lat": 40.7632524, "lon": -73.9335740 }, + { "lat": 40.7630709, "lon": -73.9337473 }, + { "lat": 40.7630177, "lon": -73.9337980 }, + { "lat": 40.7629067, "lon": -73.9339040 }, + { "lat": 40.7628260, "lon": -73.9339810 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516696185, + "bounds": { + "minlat": 40.7617060, + "minlon": -73.9339810, + "maxlat": 40.7628260, + "maxlon": -73.9315800 + }, + "nodes": [ + 42824096, + 4991541895, + 7185923462, + 7111672672, + 6792378553, + 7189336921, + 6452521776, + 7161757926, + 42824101 + ], + "geometry": [ + { "lat": 40.7628260, "lon": -73.9339810 }, + { "lat": 40.7627705, "lon": -73.9338621 }, + { "lat": 40.7625740, "lon": -73.9334450 }, + { "lat": 40.7625544, "lon": -73.9334052 }, + { "lat": 40.7622619, "lon": -73.9327718 }, + { "lat": 40.7621236, "lon": -73.9324753 }, + { "lat": 40.7617520, "lon": -73.9316785 }, + { "lat": 40.7617441, "lon": -73.9316617 }, + { "lat": 40.7617060, "lon": -73.9315800 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "34th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516701418, + "bounds": { + "minlat": 40.7587220, + "minlon": -73.9383190, + "maxlat": 40.7588650, + "maxlon": -73.9379107 + }, + "nodes": [ + 42815779, + 3569402123, + 3569402119, + 42815780 + ], + "geometry": [ + { "lat": 40.7588650, "lon": -73.9383190 }, + { "lat": 40.7588368, "lon": -73.9382305 }, + { "lat": 40.7587789, "lon": -73.9380438 }, + { "lat": 40.7587220, "lon": -73.9379107 } + ], + "tags": { + "highway": "residential", + "name": "37th Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "37th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 516701419, + "bounds": { + "minlat": 40.7582360, + "minlon": -73.9379107, + "maxlat": 40.7587220, + "maxlon": -73.9370090 + }, + "nodes": [ + 42815780, + 3569402117, + 6452768048, + 42815782 + ], + "geometry": [ + { "lat": 40.7587220, "lon": -73.9379107 }, + { "lat": 40.7586666, "lon": -73.9377805 }, + { "lat": 40.7582803, "lon": -73.9370887 }, + { "lat": 40.7582360, "lon": -73.9370090 } + ], + "tags": { + "highway": "residential", + "name": "37th Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "37th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 516701420, + "bounds": { + "minlat": 40.7588650, + "minlon": -73.9433040, + "maxlat": 40.7606580, + "maxlon": -73.9383190 + }, + "nodes": [ + 42815748, + 6452721239, + 8084752899, + 6452777347, + 42815750, + 6452777348, + 6452777341, + 42815755, + 6452777342, + 6452777336, + 42815764, + 6452777335, + 6452768063, + 42815770, + 6452768064, + 6452768057, + 42815776, + 6452768058, + 6452768054, + 42815779 + ], + "geometry": [ + { "lat": 40.7606580, "lon": -73.9433040 }, + { "lat": 40.7606227, "lon": -73.9432052 }, + { "lat": 40.7606072, "lon": -73.9431617 }, + { "lat": 40.7603782, "lon": -73.9425203 }, + { "lat": 40.7603510, "lon": -73.9424440 }, + { "lat": 40.7603273, "lon": -73.9423784 }, + { "lat": 40.7600865, "lon": -73.9417114 }, + { "lat": 40.7600560, "lon": -73.9416270 }, + { "lat": 40.7600325, "lon": -73.9415617 }, + { "lat": 40.7597981, "lon": -73.9409102 }, + { "lat": 40.7597620, "lon": -73.9408100 }, + { "lat": 40.7597322, "lon": -73.9407269 }, + { "lat": 40.7594985, "lon": -73.9400762 }, + { "lat": 40.7594690, "lon": -73.9399940 }, + { "lat": 40.7594446, "lon": -73.9399263 }, + { "lat": 40.7592039, "lon": -73.9392582 }, + { "lat": 40.7591750, "lon": -73.9391780 }, + { "lat": 40.7591503, "lon": -73.9391096 }, + { "lat": 40.7589007, "lon": -73.9384178 }, + { "lat": 40.7588650, "lon": -73.9383190 } + ], + "tags": { + "highway": "residential", + "name": "37th Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "37th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 516701421, + "bounds": { + "minlat": 40.7580065, + "minlon": -73.9386001, + "maxlat": 40.7587220, + "maxlon": -73.9379107 + }, + "nodes": [ + 42815780, + 3569402116, + 11623207012, + 11623207011, + 42825874 + ], + "geometry": [ + { "lat": 40.7587220, "lon": -73.9379107 }, + { "lat": 40.7586522, "lon": -73.9379780 }, + { "lat": 40.7586148, "lon": -73.9380140 }, + { "lat": 40.7584042, "lon": -73.9382169 }, + { "lat": 40.7580065, "lon": -73.9386001 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street" + } +}, +{ + "type": "way", + "id": 516701422, + "bounds": { + "minlat": 40.7587220, + "minlon": -73.9379107, + "maxlat": 40.7594029, + "maxlon": -73.9372498 + }, + "nodes": [ + 3569402133, + 8133480845, + 3569402120, + 42815780 + ], + "geometry": [ + { "lat": 40.7594029, "lon": -73.9372498 }, + { "lat": 40.7592578, "lon": -73.9373906 }, + { "lat": 40.7587847, "lon": -73.9378504 }, + { "lat": 40.7587220, "lon": -73.9379107 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 516825822, + "bounds": { + "minlat": 40.7704400, + "minlon": -73.9228535, + "maxlat": 40.7713596, + "maxlon": -73.9194910 + }, + "nodes": [ + 42818487, + 5044706875, + 6452994996, + 42872042, + 7746623256, + 6452995000, + 5105347836, + 42817377, + 11591692624, + 42833397, + 6453002247, + 42833306 + ], + "geometry": [ + { "lat": 40.7713596, "lon": -73.9228535 }, + { "lat": 40.7713339, "lon": -73.9227648 }, + { "lat": 40.7709871, "lon": -73.9215033 }, + { "lat": 40.7709646, "lon": -73.9214212 }, + { "lat": 40.7709386, "lon": -73.9213267 }, + { "lat": 40.7709337, "lon": -73.9213088 }, + { "lat": 40.7708371, "lon": -73.9209574 }, + { "lat": 40.7707910, "lon": -73.9207870 }, + { "lat": 40.7707371, "lon": -73.9205863 }, + { "lat": 40.7705190, "lon": -73.9197740 }, + { "lat": 40.7704687, "lon": -73.9195938 }, + { "lat": 40.7704400, "lon": -73.9194910 } + ], + "tags": { + "alt_name": "Astoria Boulevard South", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Astoria Boulevard", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 516825823, + "bounds": { + "minlat": 40.7704322, + "minlon": -73.9236279, + "maxlat": 40.7713596, + "maxlon": -73.9228535 + }, + "nodes": [ + 42818487, + 5044706874, + 3023217479, + 2297358955, + 6452895170, + 42818490 + ], + "geometry": [ + { "lat": 40.7713596, "lon": -73.9228535 }, + { "lat": 40.7712838, "lon": -73.9229140 }, + { "lat": 40.7710779, "lon": -73.9230630 }, + { "lat": 40.7707805, "lon": -73.9232779 }, + { "lat": 40.7704989, "lon": -73.9235661 }, + { "lat": 40.7704322, "lon": -73.9236279 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Crescent Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 517694719, + "bounds": { + "minlat": 40.8687427, + "minlon": -73.9316097, + "maxlat": 40.8688397, + "maxlon": -73.9312771 + }, + "nodes": [ + 5051482018, + 4379966535 + ], + "geometry": [ + { "lat": 40.8688397, "lon": -73.9316097 }, + { "lat": 40.8687427, "lon": -73.9312771 } + ], + "tags": { + "bicycle": "designated", + "highway": "unclassified", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 517694723, + "bounds": { + "minlat": 40.8592685, + "minlon": -73.9340649, + "maxlat": 40.8593400, + "maxlon": -73.9339800 + }, + "nodes": [ + 1205714863, + 5051485231, + 1205714885, + 1205714858, + 5051482020 + ], + "geometry": [ + { "lat": 40.8592685, "lon": -73.9340649 }, + { "lat": 40.8592775, "lon": -73.9340459 }, + { "lat": 40.8592874, "lon": -73.9340269 }, + { "lat": 40.8593145, "lon": -73.9339988 }, + { "lat": 40.8593400, "lon": -73.9339800 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "unclassified", + "junction": "roundabout", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Plaza", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "width": "68'0\"" + } +}, +{ + "type": "way", + "id": 517754781, + "bounds": { + "minlat": 40.7262788, + "minlon": -73.9491851, + "maxlat": 40.7263206, + "maxlon": -73.9490536 + }, + "nodes": [ + 5051959088, + 5051959086 + ], + "geometry": [ + { "lat": 40.7262788, "lon": -73.9491851 }, + { "lat": 40.7263206, "lon": -73.9490536 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Norman Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 517754782, + "bounds": { + "minlat": 40.7263206, + "minlon": -73.9490536, + "maxlat": 40.7265480, + "maxlon": -73.9483730 + }, + "nodes": [ + 5051959086, + 9765409787, + 9788947174, + 42512081 + ], + "geometry": [ + { "lat": 40.7263206, "lon": -73.9490536 }, + { "lat": 40.7263515, "lon": -73.9489612 }, + { "lat": 40.7265249, "lon": -73.9484413 }, + { "lat": 40.7265480, "lon": -73.9483730 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Norman Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 517754783, + "bounds": { + "minlat": 40.7248850, + "minlon": -73.9474250, + "maxlat": 40.7256160, + "maxlon": -73.9444980 + }, + "nodes": [ + 42479294, + 6732947945, + 9929558994, + 42478904, + 9929558993, + 42479299, + 6732947952, + 42479372, + 6732947953, + 8672287445, + 6732842574, + 42472689 + ], + "geometry": [ + { "lat": 40.7248850, "lon": -73.9474250 }, + { "lat": 40.7249061, "lon": -73.9473606 }, + { "lat": 40.7251357, "lon": -73.9466658 }, + { "lat": 40.7251597, "lon": -73.9465930 }, + { "lat": 40.7251791, "lon": -73.9465324 }, + { "lat": 40.7254246, "lon": -73.9457675 }, + { "lat": 40.7255053, "lon": -73.9455159 }, + { "lat": 40.7255309, "lon": -73.9454318 }, + { "lat": 40.7255381, "lon": -73.9453507 }, + { "lat": 40.7256042, "lon": -73.9446320 }, + { "lat": 40.7256083, "lon": -73.9445869 }, + { "lat": 40.7256160, "lon": -73.9444980 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "Nassau Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 517754784, + "bounds": { + "minlat": 40.7246177, + "minlon": -73.9482326, + "maxlat": 40.7246580, + "maxlon": -73.9481125 + }, + "nodes": [ + 2987758886, + 5051959089 + ], + "geometry": [ + { "lat": 40.7246177, "lon": -73.9482326 }, + { "lat": 40.7246580, "lon": -73.9481125 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "Nassau Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 517795410, + "bounds": { + "minlat": 40.8360200, + "minlon": -73.9271230, + "maxlat": 40.8369290, + "maxlon": -73.9242980 + }, + "nodes": [ + 42736635, + 42736640, + 5487840283, + 42736645, + 13809338861, + 42734286 + ], + "geometry": [ + { "lat": 40.8360200, "lon": -73.9242980 }, + { "lat": 40.8363068, "lon": -73.9251688 }, + { "lat": 40.8364073, "lon": -73.9254760 }, + { "lat": 40.8366140, "lon": -73.9261130 }, + { "lat": 40.8368997, "lon": -73.9270291 }, + { "lat": 40.8369290, "lon": -73.9271230 } + ], + "tags": { + "highway": "residential", + "name": "West 167th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 517827497, + "bounds": { + "minlat": 40.8595240, + "minlon": -73.9336738, + "maxlat": 40.8610436, + "maxlon": -73.9324498 + }, + "nodes": [ + 12663385194, + 5051485235, + 42434483, + 42434485, + 42434492, + 42434495, + 42434499, + 42434502, + 42434505, + 42434506, + 42434508, + 8026940317, + 42434510, + 42434512, + 42434514, + 8026940326, + 42434516, + 3808464456 + ], + "geometry": [ + { "lat": 40.8595240, "lon": -73.9336738 }, + { "lat": 40.8595306, "lon": -73.9336515 }, + { "lat": 40.8595696, "lon": -73.9335274 }, + { "lat": 40.8596310, "lon": -73.9333720 }, + { "lat": 40.8597221, "lon": -73.9331992 }, + { "lat": 40.8598179, "lon": -73.9330519 }, + { "lat": 40.8599095, "lon": -73.9329388 }, + { "lat": 40.8600190, "lon": -73.9328241 }, + { "lat": 40.8601423, "lon": -73.9327249 }, + { "lat": 40.8602586, "lon": -73.9326566 }, + { "lat": 40.8603889, "lon": -73.9325967 }, + { "lat": 40.8605070, "lon": -73.9325555 }, + { "lat": 40.8605826, "lon": -73.9325353 }, + { "lat": 40.8606879, "lon": -73.9325083 }, + { "lat": 40.8608429, "lon": -73.9324760 }, + { "lat": 40.8609040, "lon": -73.9324661 }, + { "lat": 40.8610110, "lon": -73.9324546 }, + { "lat": 40.8610436, "lon": -73.9324498 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "lanes": "2", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 517827498, + "bounds": { + "minlat": 40.8593130, + "minlon": -73.9342647, + "maxlat": 40.8594712, + "maxlon": -73.9340537 + }, + "nodes": [ + 1205714897, + 12663385198, + 1205714900, + 1205714878, + 1205714894, + 1205714811, + 1205714881, + 5051485222, + 9338511504 + ], + "geometry": [ + { "lat": 40.8594694, "lon": -73.9340537 }, + { "lat": 40.8594702, "lon": -73.9341003 }, + { "lat": 40.8594712, "lon": -73.9341548 }, + { "lat": 40.8594585, "lon": -73.9341965 }, + { "lat": 40.8594365, "lon": -73.9342308 }, + { "lat": 40.8594075, "lon": -73.9342543 }, + { "lat": 40.8593744, "lon": -73.9342647 }, + { "lat": 40.8593406, "lon": -73.9342609 }, + { "lat": 40.8593130, "lon": -73.9342479 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "unclassified", + "junction": "roundabout", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Plaza", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "width": "78'0\"" + } +}, +{ + "type": "way", + "id": 517828952, + "bounds": { + "minlat": 40.8352806, + "minlon": -73.9397882, + "maxlat": 40.8355580, + "maxlon": -73.9397338 + }, + "nodes": [ + 2075600884, + 2075596384 + ], + "geometry": [ + { "lat": 40.8352806, "lon": -73.9397338 }, + { "lat": 40.8355580, "lon": -73.9397882 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "parking:lane:right": "parallel", + "rcn_ref": "9", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 517955926, + "bounds": { + "minlat": 40.7279440, + "minlon": -73.9507224, + "maxlat": 40.7289764, + "maxlon": -73.9501326 + }, + "nodes": [ + 7725544404, + 8097222267, + 8097222290, + 42513154 + ], + "geometry": [ + { "lat": 40.7289764, "lon": -73.9507224 }, + { "lat": 40.7289216, "lon": -73.9506914 }, + { "lat": 40.7280069, "lon": -73.9501713 }, + { "lat": 40.7279440, "lon": -73.9501326 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 517955927, + "bounds": { + "minlat": 40.7276640, + "minlon": -73.9509780, + "maxlat": 40.7279440, + "maxlon": -73.9501326 + }, + "nodes": [ + 42513154, + 8097222283, + 8097222229, + 42516610 + ], + "geometry": [ + { "lat": 40.7279440, "lon": -73.9501326 }, + { "lat": 40.7279138, "lon": -73.9502227 }, + { "lat": 40.7276859, "lon": -73.9509105 }, + { "lat": 40.7276640, "lon": -73.9509780 } + ], + "tags": { + "highway": "residential", + "name": "Meserole Avenue", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meserole", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 517955928, + "bounds": { + "minlat": 40.7279440, + "minlon": -73.9501326, + "maxlat": 40.7279887, + "maxlon": -73.9499997 + }, + "nodes": [ + 2987758883, + 42513154 + ], + "geometry": [ + { "lat": 40.7279887, "lon": -73.9499997 }, + { "lat": 40.7279440, "lon": -73.9501326 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Meserole Avenue", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 517955929, + "bounds": { + "minlat": 40.7304718, + "minlon": -73.9514256, + "maxlat": 40.7305542, + "maxlon": -73.9506277 + }, + "nodes": [ + 5481915294, + 5481915292, + 6235394715, + 5052125058 + ], + "geometry": [ + { "lat": 40.7305542, "lon": -73.9506277 }, + { "lat": 40.7305230, "lon": -73.9509297 }, + { "lat": 40.7304825, "lon": -73.9513216 }, + { "lat": 40.7304718, "lon": -73.9514256 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through;right", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 517996080, + "bounds": { + "minlat": 40.7289791, + "minlon": -73.9609250, + "maxlat": 40.7291492, + "maxlon": -73.9591344 + }, + "nodes": [ + 5053904475, + 9788947570, + 9478443145, + 5053904474 + ], + "geometry": [ + { "lat": 40.7291492, "lon": -73.9591344 }, + { "lat": 40.7291401, "lon": -73.9592300 }, + { "lat": 40.7291375, "lon": -73.9592570 }, + { "lat": 40.7289791, "lon": -73.9609250 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 518451322, + "bounds": { + "minlat": 40.7470801, + "minlon": -73.9792550, + "maxlat": 40.7476966, + "maxlon": -73.9788036 + }, + "nodes": [ + 42446941, + 11273068442, + 12183285332, + 10171137629, + 42434954 + ], + "geometry": [ + { "lat": 40.7476966, "lon": -73.9788036 }, + { "lat": 40.7476399, "lon": -73.9788438 }, + { "lat": 40.7471780, "lon": -73.9791824 }, + { "lat": 40.7471362, "lon": -73.9792133 }, + { "lat": 40.7470801, "lon": -73.9792550 } + ], + "tags": { + "bus:lanes": "|||designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 518451327, + "bounds": { + "minlat": 40.7460385, + "minlon": -73.9787883, + "maxlat": 40.7468833, + "maxlon": -73.9767875 + }, + "nodes": [ + 42434962, + 9987340018, + 12187343187, + 9987340017, + 42434959, + 10168207094, + 12183285334 + ], + "geometry": [ + { "lat": 40.7460385, "lon": -73.9767875 }, + { "lat": 40.7460625, "lon": -73.9768507 }, + { "lat": 40.7463185, "lon": -73.9774443 }, + { "lat": 40.7463431, "lon": -73.9775025 }, + { "lat": 40.7464036, "lon": -73.9776454 }, + { "lat": 40.7464550, "lon": -73.9777669 }, + { "lat": 40.7468833, "lon": -73.9787883 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 35th Street", + "name:ru": "Восточная 35-я стрит", + "oneway": "yes", + "short_name": "East 35 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 518451332, + "bounds": { + "minlat": 40.7476966, + "minlon": -73.9793171, + "maxlat": 40.7479133, + "maxlon": -73.9788036 + }, + "nodes": [ + 5057315765, + 12181374936, + 11273068443, + 42446941 + ], + "geometry": [ + { "lat": 40.7479133, "lon": -73.9793171 }, + { "lat": 40.7477606, "lon": -73.9789552 }, + { "lat": 40.7477331, "lon": -73.9788899 }, + { "lat": 40.7476966, "lon": -73.9788036 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 36th Street", + "name:ru": "Восточная 36-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|right" + } +}, +{ + "type": "way", + "id": 518888233, + "bounds": { + "minlat": 40.7108272, + "minlon": -73.9605277, + "maxlat": 40.7109113, + "maxlon": -73.9604997 + }, + "nodes": [ + 8842469024, + 2999521379, + 1907726307 + ], + "geometry": [ + { "lat": 40.7109113, "lon": -73.9605277 }, + { "lat": 40.7108526, "lon": -73.9605042 }, + { "lat": 40.7108272, "lon": -73.9604997 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 518888236, + "bounds": { + "minlat": 40.7107534, + "minlon": -73.9599727, + "maxlat": 40.7108057, + "maxlon": -73.9599366 + }, + "nodes": [ + 42526525, + 4726244589 + ], + "geometry": [ + { "lat": 40.7108057, "lon": -73.9599366 }, + { "lat": 40.7107534, "lon": -73.9599727 } + ], + "tags": { + "bicycle": "designated", + "destination": "Williamsburg Bridge", + "foot": "yes", + "hgv": "local", + "highway": "secondary", + "moped": "no", + "name": "Roebling Street", + "name:etymology:wikidata": "Q77237", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 519705722, + "bounds": { + "minlat": 40.7683700, + "minlon": -73.9947214, + "maxlat": 40.7692042, + "maxlon": -73.9927860 + }, + "nodes": [ + 3308681118, + 11203207062, + 3308681117, + 42430736 + ], + "geometry": [ + { "lat": 40.7692042, "lon": -73.9947214 }, + { "lat": 40.7684717, "lon": -73.9929885 }, + { "lat": 40.7684514, "lon": -73.9929480 }, + { "lat": 40.7683700, "lon": -73.9927860 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "name_1": "West 54 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 520349854, + "bounds": { + "minlat": 40.8681842, + "minlon": -73.9194970, + "maxlat": 40.8693149, + "maxlon": -73.9167623 + }, + "nodes": [ + 5071822871, + 6865009902, + 1769630474, + 9561229779, + 42429228, + 9561229782, + 9561209010, + 42429231, + 9561209009, + 6865009903, + 42429234, + 7561860534, + 13320061234 + ], + "geometry": [ + { "lat": 40.8681842, "lon": -73.9194970 }, + { "lat": 40.8682826, "lon": -73.9191084 }, + { "lat": 40.8682982, "lon": -73.9190468 }, + { "lat": 40.8684683, "lon": -73.9185973 }, + { "lat": 40.8685048, "lon": -73.9185050 }, + { "lat": 40.8685449, "lon": -73.9184101 }, + { "lat": 40.8688666, "lon": -73.9176382 }, + { "lat": 40.8689088, "lon": -73.9175456 }, + { "lat": 40.8689479, "lon": -73.9174669 }, + { "lat": 40.8689795, "lon": -73.9174031 }, + { "lat": 40.8690960, "lon": -73.9171680 }, + { "lat": 40.8692894, "lon": -73.9168095 }, + { "lat": 40.8693149, "lon": -73.9167623 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 520532096, + "bounds": { + "minlat": 40.7117274, + "minlon": -74.0055245, + "maxlat": 40.7120155, + "maxlon": -74.0047759 + }, + "nodes": [ + 5706569617, + 4143875740, + 42448447, + 1272562928, + 4143876123, + 42448448, + 1272562927, + 9364517404, + 9364517403, + 9597569470, + 9364517402, + 9364517401, + 6793645469 + ], + "geometry": [ + { "lat": 40.7119910, "lon": -74.0055245 }, + { "lat": 40.7119980, "lon": -74.0054892 }, + { "lat": 40.7120130, "lon": -74.0053946 }, + { "lat": 40.7120155, "lon": -74.0053491 }, + { "lat": 40.7120130, "lon": -74.0053128 }, + { "lat": 40.7120075, "lon": -74.0052699 }, + { "lat": 40.7119960, "lon": -74.0052297 }, + { "lat": 40.7119812, "lon": -74.0051919 }, + { "lat": 40.7119565, "lon": -74.0051474 }, + { "lat": 40.7119272, "lon": -74.0050970 }, + { "lat": 40.7119211, "lon": -74.0050865 }, + { "lat": 40.7118660, "lon": -74.0049982 }, + { "lat": 40.7117274, "lon": -74.0047759 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "destination": "FDR Drive", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_stopping", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 520701181, + "bounds": { + "minlat": 40.8559751, + "minlon": -73.9635713, + "maxlat": 40.8568484, + "maxlon": -73.9631921 + }, + "nodes": [ + 5074639324, + 11170628907, + 5074639323, + 11170628908, + 5074639120 + ], + "geometry": [ + { "lat": 40.8559751, "lon": -73.9635713 }, + { "lat": 40.8567585, "lon": -73.9633010 }, + { "lat": 40.8567856, "lon": -73.9632594 }, + { "lat": 40.8568062, "lon": -73.9632151 }, + { "lat": 40.8568484, "lon": -73.9631921 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 520701182, + "bounds": { + "minlat": 40.8561731, + "minlon": -73.9632627, + "maxlat": 40.8568169, + "maxlon": -73.9630669 + }, + "nodes": [ + 3882345217, + 5074639321 + ], + "geometry": [ + { "lat": 40.8568169, "lon": -73.9630669 }, + { "lat": 40.8561731, "lon": -73.9632627 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 520701762, + "bounds": { + "minlat": 40.8566327, + "minlon": -73.9623721, + "maxlat": 40.8567089, + "maxlon": -73.9621771 + }, + "nodes": [ + 5074643987, + 5074644005 + ], + "geometry": [ + { "lat": 40.8567089, "lon": -73.9623721 }, + { "lat": 40.8566327, "lon": -73.9621771 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 520701763, + "bounds": { + "minlat": 40.8574175, + "minlon": -73.9634492, + "maxlat": 40.8579035, + "maxlon": -73.9631193 + }, + "nodes": [ + 5074644002, + 5074644003, + 11170439738, + 11170435534, + 5074643999, + 11170435535, + 5074643997, + 5449428791, + 11170439743, + 5074643989, + 5074643988, + 11170435536, + 5074643990, + 5074643992, + 5074643993, + 5074643998 + ], + "geometry": [ + { "lat": 40.8574231, "lon": -73.9634492 }, + { "lat": 40.8574175, "lon": -73.9633622 }, + { "lat": 40.8574260, "lon": -73.9633368 }, + { "lat": 40.8574441, "lon": -73.9633020 }, + { "lat": 40.8574662, "lon": -73.9632629 }, + { "lat": 40.8575031, "lon": -73.9632187 }, + { "lat": 40.8575361, "lon": -73.9631859 }, + { "lat": 40.8575806, "lon": -73.9631562 }, + { "lat": 40.8576357, "lon": -73.9631367 }, + { "lat": 40.8576704, "lon": -73.9631246 }, + { "lat": 40.8577015, "lon": -73.9631193 }, + { "lat": 40.8577476, "lon": -73.9631273 }, + { "lat": 40.8578015, "lon": -73.9631428 }, + { "lat": 40.8578558, "lon": -73.9631719 }, + { "lat": 40.8578906, "lon": -73.9632261 }, + { "lat": 40.8579035, "lon": -73.9632980 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 520701765, + "bounds": { + "minlat": 40.8569555, + "minlon": -73.9621615, + "maxlat": 40.8570295, + "maxlon": -73.9619672 + }, + "nodes": [ + 5074644000, + 5074644007 + ], + "geometry": [ + { "lat": 40.8570295, "lon": -73.9621615 }, + { "lat": 40.8569555, "lon": -73.9619672 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 520701766, + "bounds": { + "minlat": 40.8555756, + "minlon": -73.9631039, + "maxlat": 40.8557398, + "maxlon": -73.9627879 + }, + "nodes": [ + 5074644004, + 5074643995, + 5074644001 + ], + "geometry": [ + { "lat": 40.8557398, "lon": -73.9631039 }, + { "lat": 40.8556053, "lon": -73.9628888 }, + { "lat": 40.8555756, "lon": -73.9627879 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 520701767, + "bounds": { + "minlat": 40.8574015, + "minlon": -73.9618686, + "maxlat": 40.8574709, + "maxlon": -73.9616861 + }, + "nodes": [ + 5074643994, + 5074643996 + ], + "geometry": [ + { "lat": 40.8574709, "lon": -73.9618686 }, + { "lat": 40.8574015, "lon": -73.9616861 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 520858833, + "bounds": { + "minlat": 40.8495019, + "minlon": -73.9703707, + "maxlat": 40.8496213, + "maxlon": -73.9703557 + }, + "nodes": [ + 103205050, + 1957898027 + ], + "geometry": [ + { "lat": 40.8496213, "lon": -73.9703707 }, + { "lat": 40.8495019, "lon": -73.9703557 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 521149959, + "bounds": { + "minlat": 40.8183301, + "minlon": -73.9272357, + "maxlat": 40.8185494, + "maxlon": -73.9263684 + }, + "nodes": [ + 2408448905, + 9903127450, + 12162740209, + 9903127455, + 42743020 + ], + "geometry": [ + { "lat": 40.8185494, "lon": -73.9272357 }, + { "lat": 40.8185260, "lon": -73.9271420 }, + { "lat": 40.8185105, "lon": -73.9270809 }, + { "lat": 40.8183494, "lon": -73.9264449 }, + { "lat": 40.8183301, "lon": -73.9263684 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 149th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455", + "turn:lanes:forward": "through|" + } +}, +{ + "type": "way", + "id": 521150769, + "bounds": { + "minlat": 40.8273734, + "minlon": -73.9260307, + "maxlat": 40.8276612, + "maxlon": -73.9250408 + }, + "nodes": [ + 2411399009, + 9910738417, + 12163704702, + 9910729410, + 2385899523 + ], + "geometry": [ + { "lat": 40.8276612, "lon": -73.9260307 }, + { "lat": 40.8276355, "lon": -73.9259440 }, + { "lat": 40.8274123, "lon": -73.9251876 }, + { "lat": 40.8273948, "lon": -73.9251260 }, + { "lat": 40.8273734, "lon": -73.9250408 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 521358279, + "bounds": { + "minlat": 40.7157200, + "minlon": -73.9841569, + "maxlat": 40.7173458, + "maxlon": -73.9787954 + }, + "nodes": [ + 5079840928, + 13519263275, + 486859051 + ], + "geometry": [ + { "lat": 40.7157200, "lon": -73.9787954 }, + { "lat": 40.7172217, "lon": -73.9837476 }, + { "lat": 40.7173458, "lon": -73.9841569 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "motorway", + "lanes": "4", + "layer": "2", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 521358284, + "bounds": { + "minlat": 40.7112944, + "minlon": -73.9788947, + "maxlat": 40.7155363, + "maxlon": -73.9649789 + }, + "nodes": [ + 3785707059, + 486876215, + 486876216, + 486876217, + 486876218, + 9968370327 + ], + "geometry": [ + { "lat": 40.7155363, "lon": -73.9788947 }, + { "lat": 40.7154494, "lon": -73.9785341 }, + { "lat": 40.7150516, "lon": -73.9771768 }, + { "lat": 40.7119945, "lon": -73.9671403 }, + { "lat": 40.7114800, "lon": -73.9654812 }, + { "lat": 40.7112944, "lon": -73.9649789 } + ], + "tags": { + "bridge": "yes", + "destination": "Queens;Bronx", + "destination:ref": "I 278 East", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "2", + "maxheight": "12'11\"", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "wikidata": "Q125068", + "wikipedia": "en:Williamsburg Bridge" + } +}, +{ + "type": "way", + "id": 521607955, + "bounds": { + "minlat": 40.7209988, + "minlon": -73.9621319, + "maxlat": 40.7210466, + "maxlon": -73.9620810 + }, + "nodes": [ + 5082129676, + 5082129661 + ], + "geometry": [ + { "lat": 40.7209988, "lon": -73.9621319 }, + { "lat": 40.7210466, "lon": -73.9620810 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 521607957, + "bounds": { + "minlat": 40.7204888, + "minlon": -73.9628568, + "maxlat": 40.7213441, + "maxlon": -73.9615720 + }, + "nodes": [ + 10078622609, + 10078622614, + 10078622606, + 10078622607, + 5082129683, + 10074012101, + 10074012103, + 5082129676, + 10074012104, + 10078622610, + 10078622609 + ], + "geometry": [ + { "lat": 40.7204888, "lon": -73.9617459 }, + { "lat": 40.7209282, "lon": -73.9624473 }, + { "lat": 40.7211848, "lon": -73.9628568 }, + { "lat": 40.7212872, "lon": -73.9627452 }, + { "lat": 40.7213441, "lon": -73.9626831 }, + { "lat": 40.7211520, "lon": -73.9623764 }, + { "lat": 40.7210617, "lon": -73.9622322 }, + { "lat": 40.7209988, "lon": -73.9621319 }, + { "lat": 40.7209228, "lon": -73.9620105 }, + { "lat": 40.7206482, "lon": -73.9615720 }, + { "lat": 40.7204888, "lon": -73.9617459 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 521697576, + "bounds": { + "minlat": 40.8397517, + "minlon": -73.9129613, + "maxlat": 40.8428787, + "maxlon": -73.9118398 + }, + "nodes": [ + 2408355559, + 13038442692, + 13535833507, + 13535833508, + 2408355564, + 13535833509, + 13535833510, + 13535833511, + 10034673457, + 11905245422, + 2408355536, + 12529489651, + 10034673431, + 10034673445, + 10034673436, + 2408355538, + 7823245731 + ], + "geometry": [ + { "lat": 40.8397517, "lon": -73.9129613 }, + { "lat": 40.8398018, "lon": -73.9129286 }, + { "lat": 40.8399113, "lon": -73.9128743 }, + { "lat": 40.8400115, "lon": -73.9128310 }, + { "lat": 40.8401111, "lon": -73.9127879 }, + { "lat": 40.8402760, "lon": -73.9127213 }, + { "lat": 40.8404229, "lon": -73.9126635 }, + { "lat": 40.8405636, "lon": -73.9126121 }, + { "lat": 40.8407751, "lon": -73.9125413 }, + { "lat": 40.8408033, "lon": -73.9125317 }, + { "lat": 40.8408829, "lon": -73.9125048 }, + { "lat": 40.8409406, "lon": -73.9124853 }, + { "lat": 40.8415007, "lon": -73.9122952 }, + { "lat": 40.8415524, "lon": -73.9122780 }, + { "lat": 40.8417157, "lon": -73.9122233 }, + { "lat": 40.8423301, "lon": -73.9120169 }, + { "lat": 40.8428787, "lon": -73.9118398 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 524269999, + "bounds": { + "minlat": 40.8758729, + "minlon": -73.9468200, + "maxlat": 40.8759364, + "maxlon": -73.9466549 + }, + "nodes": [ + 2214758021, + 5102220060, + 5102220054, + 5102220047 + ], + "geometry": [ + { "lat": 40.8759364, "lon": -73.9466549 }, + { "lat": 40.8759047, "lon": -73.9466864 }, + { "lat": 40.8758899, "lon": -73.9467150 }, + { "lat": 40.8758729, "lon": -73.9468200 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 524270000, + "bounds": { + "minlat": 40.8751456, + "minlon": -73.9469962, + "maxlat": 40.8755774, + "maxlon": -73.9467969 + }, + "nodes": [ + 5102220052, + 103220862, + 11860299701, + 103220863 + ], + "geometry": [ + { "lat": 40.8751456, "lon": -73.9469962 }, + { "lat": 40.8753854, "lon": -73.9468589 }, + { "lat": 40.8755133, "lon": -73.9467976 }, + { "lat": 40.8755774, "lon": -73.9467969 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "surface": "asphalt", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 524270001, + "bounds": { + "minlat": 40.8751456, + "minlon": -73.9470045, + "maxlat": 40.8755571, + "maxlon": -73.9469962 + }, + "nodes": [ + 1424873029, + 5102220050, + 5102220059, + 5102220052 + ], + "geometry": [ + { "lat": 40.8755571, "lon": -73.9470045 }, + { "lat": 40.8753855, "lon": -73.9470029 }, + { "lat": 40.8752139, "lon": -73.9469973 }, + { "lat": 40.8751456, "lon": -73.9469962 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 524270002, + "bounds": { + "minlat": 40.8758557, + "minlon": -73.9471012, + "maxlat": 40.8762549, + "maxlon": -73.9470169 + }, + "nodes": [ + 5102220049, + 5102220057, + 5102220061, + 2214758020 + ], + "geometry": [ + { "lat": 40.8762549, "lon": -73.9471012 }, + { "lat": 40.8761004, "lon": -73.9470887 }, + { "lat": 40.8759635, "lon": -73.9470574 }, + { "lat": 40.8758557, "lon": -73.9470169 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 524270003, + "bounds": { + "minlat": 40.8759364, + "minlon": -73.9467169, + "maxlat": 40.8771835, + "maxlon": -73.9466102 + }, + "nodes": [ + 2214758021, + 5742843678, + 2214758022, + 8417201276, + 2214758023, + 2214758025 + ], + "geometry": [ + { "lat": 40.8759364, "lon": -73.9466549 }, + { "lat": 40.8759466, "lon": -73.9466564 }, + { "lat": 40.8763633, "lon": -73.9467169 }, + { "lat": 40.8764093, "lon": -73.9467125 }, + { "lat": 40.8767091, "lon": -73.9466835 }, + { "lat": 40.8771835, "lon": -73.9466102 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 524270004, + "bounds": { + "minlat": 40.8762549, + "minlon": -73.9476488, + "maxlat": 40.8773580, + "maxlon": -73.9471012 + }, + "nodes": [ + 5102220049, + 103220866, + 103220867, + 103220869, + 5742843677, + 103220871 + ], + "geometry": [ + { "lat": 40.8762549, "lon": -73.9471012 }, + { "lat": 40.8765187, "lon": -73.9472403 }, + { "lat": 40.8768531, "lon": -73.9474138 }, + { "lat": 40.8771432, "lon": -73.9475809 }, + { "lat": 40.8772987, "lon": -73.9476300 }, + { "lat": 40.8773580, "lon": -73.9476488 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "lanes": "2", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 524355736, + "bounds": { + "minlat": 40.7024544, + "minlon": -73.9932640, + "maxlat": 40.7026013, + "maxlon": -73.9926985 + }, + "nodes": [ + 11678027535, + 1258945379, + 1258945467, + 598054753, + 1258945554, + 1258945412, + 11674209488, + 42499982 + ], + "geometry": [ + { "lat": 40.7026013, "lon": -73.9926985 }, + { "lat": 40.7025949, "lon": -73.9927447 }, + { "lat": 40.7025765, "lon": -73.9928525 }, + { "lat": 40.7025512, "lon": -73.9929716 }, + { "lat": 40.7025212, "lon": -73.9930883 }, + { "lat": 40.7024913, "lon": -73.9931956 }, + { "lat": 40.7024720, "lon": -73.9932362 }, + { "lat": 40.7024544, "lon": -73.9932640 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Front Street", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Front", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 524361790, + "bounds": { + "minlat": 40.7094916, + "minlon": -74.0016570, + "maxlat": 40.7096039, + "maxlon": -74.0015481 + }, + "nodes": [ + 42422283, + 4158707239, + 4158707237, + 278609934 + ], + "geometry": [ + { "lat": 40.7094916, "lon": -74.0016570 }, + { "lat": 40.7095243, "lon": -74.0016190 }, + { "lat": 40.7095666, "lon": -74.0015788 }, + { "lat": 40.7096039, "lon": -74.0015481 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxheight": "12'7\"", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 524363437, + "bounds": { + "minlat": 40.7105184, + "minlon": -74.0036162, + "maxlat": 40.7109496, + "maxlon": -74.0029673 + }, + "nodes": [ + 42448469, + 5708185439, + 42448483, + 4158673495 + ], + "geometry": [ + { "lat": 40.7109496, "lon": -74.0036162 }, + { "lat": 40.7109075, "lon": -74.0035563 }, + { "lat": 40.7108044, "lon": -74.0034015 }, + { "lat": 40.7105184, "lon": -74.0029673 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Frankfort Street", + "name:etymology:wikidata": "Q1794", + "name:ko": "프랭크포트 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 524382712, + "bounds": { + "minlat": 40.7214151, + "minlon": -73.9838696, + "maxlat": 40.7215294, + "maxlon": -73.9837985 + }, + "nodes": [ + 1919595921, + 42440401 + ], + "geometry": [ + { "lat": 40.7214151, "lon": -73.9838696 }, + { "lat": 40.7215294, "lon": -73.9837985 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "no", + "highway": "tertiary", + "lane_markings": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue B", + "name:ru": "Авеню B", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 524387550, + "bounds": { + "minlat": 40.7237743, + "minlon": -73.9925739, + "maxlat": 40.7240553, + "maxlon": -73.9916555 + }, + "nodes": [ + 1918039904, + 5829779519, + 10798825171 + ], + "geometry": [ + { "lat": 40.7240553, "lon": -73.9925739 }, + { "lat": 40.7240153, "lon": -73.9924485 }, + { "lat": 40.7237743, "lon": -73.9916555 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 524387551, + "bounds": { + "minlat": 40.7247637, + "minlon": -73.9952749, + "maxlat": 40.7251518, + "maxlon": -73.9941491 + }, + "nodes": [ + 42432308, + 5829779501, + 5829779509, + 42435491, + 5829779524, + 5829779533, + 42445511 + ], + "geometry": [ + { "lat": 40.7247637, "lon": -73.9941491 }, + { "lat": 40.7247917, "lon": -73.9942271 }, + { "lat": 40.7249969, "lon": -73.9948102 }, + { "lat": 40.7250225, "lon": -73.9948867 }, + { "lat": 40.7250425, "lon": -73.9949394 }, + { "lat": 40.7251200, "lon": -73.9951582 }, + { "lat": 40.7251518, "lon": -73.9952749 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 524388531, + "bounds": { + "minlat": 40.7252760, + "minlon": -73.9957848, + "maxlat": 40.7257578, + "maxlon": -73.9953950 + }, + "nodes": [ + 42457319, + 5829827197, + 12187431480, + 5799463409, + 10040606324 + ], + "geometry": [ + { "lat": 40.7252760, "lon": -73.9957848 }, + { "lat": 40.7253536, "lon": -73.9957388 }, + { "lat": 40.7253699, "lon": -73.9957296 }, + { "lat": 40.7254405, "lon": -73.9956687 }, + { "lat": 40.7257578, "lon": -73.9953950 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Crosby Street", + "name:etymology:wikidata": "Q96242792", + "name:ko": "크로즈비 스트리트", + "name:ru": "Кросби-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 524388532, + "bounds": { + "minlat": 40.7252760, + "minlon": -73.9961141, + "maxlat": 40.7253562, + "maxlon": -73.9957848 + }, + "nodes": [ + 42457319, + 5829927766, + 4202908171 + ], + "geometry": [ + { "lat": 40.7252760, "lon": -73.9957848 }, + { "lat": 40.7252969, "lon": -73.9958743 }, + { "lat": 40.7253562, "lon": -73.9961141 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 524390479, + "bounds": { + "minlat": 40.7416725, + "minlon": -73.9110896, + "maxlat": 40.7420853, + "maxlon": -73.9075595 + }, + "nodes": [ + 276315698, + 9986759202, + 10927727718, + 11694707625, + 276315697, + 11694707633, + 7739331837, + 2089938066, + 9986759192, + 597414803 + ], + "geometry": [ + { "lat": 40.7420853, "lon": -73.9110896 }, + { "lat": 40.7420732, "lon": -73.9109853 }, + { "lat": 40.7418943, "lon": -73.9094420 }, + { "lat": 40.7418868, "lon": -73.9093774 }, + { "lat": 40.7418761, "lon": -73.9092847 }, + { "lat": 40.7418643, "lon": -73.9091803 }, + { "lat": 40.7418320, "lon": -73.9088952 }, + { "lat": 40.7418286, "lon": -73.9088695 }, + { "lat": 40.7416857, "lon": -73.9076706 }, + { "lat": 40.7416725, "lon": -73.9075595 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 524394634, + "bounds": { + "minlat": 40.7173510, + "minlon": -73.9911718, + "maxlat": 40.7186079, + "maxlon": -73.9905383 + }, + "nodes": [ + 42437962, + 5043084240, + 3212698628, + 42432105, + 3212698623, + 8918973662 + ], + "geometry": [ + { "lat": 40.7173510, "lon": -73.9911718 }, + { "lat": 40.7174246, "lon": -73.9911347 }, + { "lat": 40.7182201, "lon": -73.9907338 }, + { "lat": 40.7182673, "lon": -73.9907100 }, + { "lat": 40.7183274, "lon": -73.9906797 }, + { "lat": 40.7186079, "lon": -73.9905383 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 524395516, + "bounds": { + "minlat": 40.7191808, + "minlon": -73.9905372, + "maxlat": 40.7193234, + "maxlon": -73.9904681 + }, + "nodes": [ + 486868873, + 3212472843 + ], + "geometry": [ + { "lat": 40.7193234, "lon": -73.9904681 }, + { "lat": 40.7191808, "lon": -73.9905372 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 524395517, + "bounds": { + "minlat": 40.7193234, + "minlon": -73.9912489, + "maxlat": 40.7195624, + "maxlon": -73.9904681 + }, + "nodes": [ + 486868873, + 5296795754, + 8821681990, + 8307642251, + 42429645 + ], + "geometry": [ + { "lat": 40.7193234, "lon": -73.9904681 }, + { "lat": 40.7193500, "lon": -73.9905492 }, + { "lat": 40.7195289, "lon": -73.9911383 }, + { "lat": 40.7195438, "lon": -73.9911874 }, + { "lat": 40.7195624, "lon": -73.9912489 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|none|through;right", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 524411039, + "bounds": { + "minlat": 40.7435630, + "minlon": -74.0058616, + "maxlat": 40.7436413, + "maxlon": -74.0058093 + }, + "nodes": [ + 5103334974, + 8310246361, + 5103334973 + ], + "geometry": [ + { "lat": 40.7436413, "lon": -74.0058093 }, + { "lat": 40.7435788, "lon": -74.0058510 }, + { "lat": 40.7435630, "lon": -74.0058616 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 524420269, + "bounds": { + "minlat": 40.8506647, + "minlon": -73.9653917, + "maxlat": 40.8517109, + "maxlon": -73.9648076 + }, + "nodes": [ + 1519930696, + 10000920056, + 5449431658, + 5449431660, + 5449377634, + 103191202 + ], + "geometry": [ + { "lat": 40.8517109, "lon": -73.9648076 }, + { "lat": 40.8516284, "lon": -73.9648516 }, + { "lat": 40.8515357, "lon": -73.9649024 }, + { "lat": 40.8511730, "lon": -73.9651009 }, + { "lat": 40.8507331, "lon": -73.9653417 }, + { "lat": 40.8506647, "lon": -73.9653917 } + ], + "tags": { + "highway": "residential", + "name": "Bigler Street" + } +}, +{ + "type": "way", + "id": 524425025, + "bounds": { + "minlat": 40.8534129, + "minlon": -73.9637699, + "maxlat": 40.8535859, + "maxlon": -73.9619038 + }, + "nodes": [ + 103121480, + 10659833229, + 5103463470, + 5103463465, + 7921992363, + 5103463471, + 5103463466, + 7921992345, + 7921992374, + 5103463464, + 5103463463, + 76464372 + ], + "geometry": [ + { "lat": 40.8535859, "lon": -73.9637699 }, + { "lat": 40.8535659, "lon": -73.9636277 }, + { "lat": 40.8535380, "lon": -73.9634293 }, + { "lat": 40.8535115, "lon": -73.9632158 }, + { "lat": 40.8535011, "lon": -73.9630975 }, + { "lat": 40.8534920, "lon": -73.9629606 }, + { "lat": 40.8534832, "lon": -73.9628470 }, + { "lat": 40.8534696, "lon": -73.9627374 }, + { "lat": 40.8534519, "lon": -73.9626269 }, + { "lat": 40.8534315, "lon": -73.9625187 }, + { "lat": 40.8534129, "lon": -73.9624243 }, + { "lat": 40.8534168, "lon": -73.9619038 } + ], + "tags": { + "access": "no", + "highway": "service", + "oneway": "yes", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 524558206, + "bounds": { + "minlat": 40.8264034, + "minlon": -73.9503603, + "maxlat": 40.8308032, + "maxlon": -73.9471314 + }, + "nodes": [ + 561035361, + 9703359673, + 11193723012, + 561035362, + 11193723019, + 11193723004, + 561035363, + 11193723003, + 11193743247, + 561035364, + 11193743244, + 11218890525, + 561035365, + 11218890526, + 11218866107, + 561035366, + 11218866106, + 11218866100, + 561035367, + 11218866101, + 11191773456, + 561035368 + ], + "geometry": [ + { "lat": 40.8264034, "lon": -73.9503603 }, + { "lat": 40.8265062, "lon": -73.9502820 }, + { "lat": 40.8270160, "lon": -73.9499043 }, + { "lat": 40.8270669, "lon": -73.9498666 }, + { "lat": 40.8271301, "lon": -73.9498216 }, + { "lat": 40.8276379, "lon": -73.9494574 }, + { "lat": 40.8276954, "lon": -73.9494163 }, + { "lat": 40.8277575, "lon": -73.9493710 }, + { "lat": 40.8282689, "lon": -73.9489981 }, + { "lat": 40.8283196, "lon": -73.9489611 }, + { "lat": 40.8283837, "lon": -73.9489146 }, + { "lat": 40.8288915, "lon": -73.9485461 }, + { "lat": 40.8289466, "lon": -73.9485061 }, + { "lat": 40.8290058, "lon": -73.9484631 }, + { "lat": 40.8295103, "lon": -73.9480971 }, + { "lat": 40.8295673, "lon": -73.9480557 }, + { "lat": 40.8296176, "lon": -73.9480187 }, + { "lat": 40.8301409, "lon": -73.9476342 }, + { "lat": 40.8301829, "lon": -73.9476033 }, + { "lat": 40.8302446, "lon": -73.9475564 }, + { "lat": 40.8307410, "lon": -73.9471788 }, + { "lat": 40.8308032, "lon": -73.9471314 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 524558207, + "bounds": { + "minlat": 40.8264166, + "minlon": -73.9505640, + "maxlat": 40.8264888, + "maxlon": -73.9503917 + }, + "nodes": [ + 13239270568, + 42428931 + ], + "geometry": [ + { "lat": 40.8264166, "lon": -73.9503917 }, + { "lat": 40.8264888, "lon": -73.9505640 } + ], + "tags": { + "alt_name": "A. Philip Randolph", + "description": "This honorary street name memorializes A. Philip Randolph.", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 145th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "h", + "tiger:name_base": "145th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 524561635, + "bounds": { + "minlat": 40.7563072, + "minlon": -73.9402121, + "maxlat": 40.7564870, + "maxlon": -73.9400400 + }, + "nodes": [ + 42825876, + 8393785142 + ], + "geometry": [ + { "lat": 40.7564870, "lon": -73.9400400 }, + { "lat": 40.7563072, "lon": -73.9402121 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 524563599, + "bounds": { + "minlat": 40.7569850, + "minlon": -73.9395821, + "maxlat": 40.7575028, + "maxlon": -73.9390967 + }, + "nodes": [ + 2302476358, + 11520416986, + 5487837584 + ], + "geometry": [ + { "lat": 40.7575028, "lon": -73.9390967 }, + { "lat": 40.7574323, "lon": -73.9391628 }, + { "lat": 40.7569850, "lon": -73.9395821 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 524563600, + "bounds": { + "minlat": 40.7558105, + "minlon": -73.9390967, + "maxlat": 40.7575028, + "maxlon": -73.9358181 + }, + "nodes": [ + 2302476358, + 3573507300, + 8314985369, + 42876760, + 8315005356, + 42876764, + 8314985375, + 8315005349, + 42861190, + 8314985414, + 8253424631, + 42818567 + ], + "geometry": [ + { "lat": 40.7575028, "lon": -73.9390967 }, + { "lat": 40.7574672, "lon": -73.9389318 }, + { "lat": 40.7570708, "lon": -73.9381931 }, + { "lat": 40.7570310, "lon": -73.9381190 }, + { "lat": 40.7566558, "lon": -73.9374130 }, + { "lat": 40.7566100, "lon": -73.9373270 }, + { "lat": 40.7565724, "lon": -73.9372564 }, + { "lat": 40.7562501, "lon": -73.9366525 }, + { "lat": 40.7562120, "lon": -73.9365810 }, + { "lat": 40.7561825, "lon": -73.9365238 }, + { "lat": 40.7558451, "lon": -73.9358813 }, + { "lat": 40.7558105, "lon": -73.9358181 } + ], + "tags": { + "highway": "residential", + "name": "38th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 524569306, + "bounds": { + "minlat": 40.8073049, + "minlon": -73.9642951, + "maxlat": 40.8079870, + "maxlon": -73.9638012 + }, + "nodes": [ + 627905367, + 7004416674, + 7004416676, + 1506445762 + ], + "geometry": [ + { "lat": 40.8073049, "lon": -73.9642951 }, + { "lat": 40.8073581, "lon": -73.9642561 }, + { "lat": 40.8078886, "lon": -73.9638708 }, + { "lat": 40.8079870, "lon": -73.9638012 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 524569322, + "bounds": { + "minlat": 40.8061176, + "minlon": -73.9654027, + "maxlat": 40.8073865, + "maxlon": -73.9644893 + }, + "nodes": [ + 42428833, + 7004416670, + 7004372895, + 42428814, + 7004372897, + 7004385803, + 42428807 + ], + "geometry": [ + { "lat": 40.8073865, "lon": -73.9644893 }, + { "lat": 40.8073293, "lon": -73.9645294 }, + { "lat": 40.8068119, "lon": -73.9648983 }, + { "lat": 40.8067507, "lon": -73.9649437 }, + { "lat": 40.8066972, "lon": -73.9649807 }, + { "lat": 40.8061847, "lon": -73.9653540 }, + { "lat": 40.8061176, "lon": -73.9654027 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 524610937, + "bounds": { + "minlat": 40.7051798, + "minlon": -74.0074068, + "maxlat": 40.7055012, + "maxlon": -74.0069403 + }, + "nodes": [ + 6133374846, + 4561414164, + 42453902 + ], + "geometry": [ + { "lat": 40.7055012, "lon": -74.0069403 }, + { "lat": 40.7052347, "lon": -74.0073276 }, + { "lat": 40.7051798, "lon": -74.0074068 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 524610938, + "bounds": { + "minlat": 40.7042528, + "minlon": -74.0074068, + "maxlat": 40.7051798, + "maxlon": -74.0062946 + }, + "nodes": [ + 42453902, + 10556966544, + 10435754998, + 4561414146, + 7139624461, + 42452700, + 7139624423, + 4561414008, + 42444230 + ], + "geometry": [ + { "lat": 40.7051798, "lon": -74.0074068 }, + { "lat": 40.7051431, "lon": -74.0073691 }, + { "lat": 40.7051190, "lon": -74.0073406 }, + { "lat": 40.7050959, "lon": -74.0073125 }, + { "lat": 40.7048406, "lon": -74.0070009 }, + { "lat": 40.7047990, "lon": -74.0069515 }, + { "lat": 40.7047539, "lon": -74.0068993 }, + { "lat": 40.7043062, "lon": -74.0063582 }, + { "lat": 40.7042528, "lon": -74.0062946 } + ], + "tags": { + "access": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Wall Street", + "name:en": "Wall Street", + "name:etymology:wikidata": "Q106706881", + "name:ja": "ウォールストリート", + "name:ko": "월 스트리트", + "name:ru": "Уолл-стрит", + "name:zh": "华尔街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wall", + "tiger:name_type": "St", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "wikidata": "Q11690", + "wikipedia": "en:Wall Street" + } +}, +{ + "type": "way", + "id": 524701350, + "bounds": { + "minlat": 40.7038227, + "minlon": -74.0106991, + "maxlat": 40.7041507, + "maxlon": -74.0104969 + }, + "nodes": [ + 5105702748, + 11040350770, + 8276468737, + 11040350672, + 11040350674, + 42440650 + ], + "geometry": [ + { "lat": 40.7038227, "lon": -74.0104969 }, + { "lat": 40.7038440, "lon": -74.0105113 }, + { "lat": 40.7038601, "lon": -74.0105223 }, + { "lat": 40.7041183, "lon": -74.0106894 }, + { "lat": 40.7041387, "lon": -74.0106991 }, + { "lat": 40.7041507, "lon": -74.0106982 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "motor_vehicle:conditional": "yes @ (02:00-10:00)", + "name": "Coenties Alley", + "name:ko": "코엔티스 앨리", + "oneway": "no", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 524769944, + "bounds": { + "minlat": 40.8475717, + "minlon": -73.9660310, + "maxlat": 40.8478172, + "maxlon": -73.9654357 + }, + "nodes": [ + 5106248262, + 5106248274, + 5106248296, + 5106248280, + 5106248263, + 5106248260, + 5106248265, + 5106248289, + 5106248272, + 5106248292, + 5106248293, + 5106248285 + ], + "geometry": [ + { "lat": 40.8478172, "lon": -73.9654357 }, + { "lat": 40.8477871, "lon": -73.9655542 }, + { "lat": 40.8477604, "lon": -73.9656030 }, + { "lat": 40.8477168, "lon": -73.9656580 }, + { "lat": 40.8476610, "lon": -73.9657237 }, + { "lat": 40.8476173, "lon": -73.9657626 }, + { "lat": 40.8475909, "lon": -73.9658162 }, + { "lat": 40.8475829, "lon": -73.9658551 }, + { "lat": 40.8475747, "lon": -73.9658953 }, + { "lat": 40.8475717, "lon": -73.9659342 }, + { "lat": 40.8475738, "lon": -73.9659745 }, + { "lat": 40.8475815, "lon": -73.9660310 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 524769945, + "bounds": { + "minlat": 40.8470501, + "minlon": -73.9663245, + "maxlat": 40.8475815, + "maxlon": -73.9659959 + }, + "nodes": [ + 5106248285, + 5106248268, + 5106248275, + 5106248278, + 5106248290, + 5106248279, + 5106248281, + 5106248305, + 5106248288, + 5106248301, + 5106248276, + 5106248284, + 440208740 + ], + "geometry": [ + { "lat": 40.8475815, "lon": -73.9660310 }, + { "lat": 40.8475709, "lon": -73.9660129 }, + { "lat": 40.8475556, "lon": -73.9659975 }, + { "lat": 40.8475341, "lon": -73.9659959 }, + { "lat": 40.8475068, "lon": -73.9659973 }, + { "lat": 40.8474824, "lon": -73.9660053 }, + { "lat": 40.8474489, "lon": -73.9660254 }, + { "lat": 40.8474073, "lon": -73.9660804 }, + { "lat": 40.8473363, "lon": -73.9661689 }, + { "lat": 40.8472513, "lon": -73.9662570 }, + { "lat": 40.8471619, "lon": -73.9663222 }, + { "lat": 40.8471040, "lon": -73.9663245 }, + { "lat": 40.8470501, "lon": -73.9663140 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 524770656, + "bounds": { + "minlat": 40.8482798, + "minlon": -73.9663983, + "maxlat": 40.8484523, + "maxlon": -73.9656102 + }, + "nodes": [ + 5106256136, + 5106256137, + 5106256153, + 5106256146, + 5106256159, + 5106256151, + 5106249420, + 5106256141, + 5106256135, + 5106249415 + ], + "geometry": [ + { "lat": 40.8483488, "lon": -73.9663983 }, + { "lat": 40.8483833, "lon": -73.9663366 }, + { "lat": 40.8484077, "lon": -73.9662454 }, + { "lat": 40.8484493, "lon": -73.9658945 }, + { "lat": 40.8484523, "lon": -73.9658028 }, + { "lat": 40.8484320, "lon": -73.9657304 }, + { "lat": 40.8484036, "lon": -73.9656767 }, + { "lat": 40.8483691, "lon": -73.9656285 }, + { "lat": 40.8483329, "lon": -73.9656102 }, + { "lat": 40.8482798, "lon": -73.9656258 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 524770657, + "bounds": { + "minlat": 40.8482110, + "minlon": -73.9665934, + "maxlat": 40.8484091, + "maxlon": -73.9660966 + }, + "nodes": [ + 5106256152, + 5106249414, + 5106256148, + 5106256156, + 5106256147, + 5106256136, + 5106256121 + ], + "geometry": [ + { "lat": 40.8482110, "lon": -73.9660966 }, + { "lat": 40.8482251, "lon": -73.9661595 }, + { "lat": 40.8482520, "lon": -73.9662578 }, + { "lat": 40.8482758, "lon": -73.9663097 }, + { "lat": 40.8483123, "lon": -73.9663446 }, + { "lat": 40.8483488, "lon": -73.9663983 }, + { "lat": 40.8484091, "lon": -73.9665934 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old Palisade", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_left_1": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 524770658, + "bounds": { + "minlat": 40.8481825, + "minlon": -73.9660966, + "maxlat": 40.8483630, + "maxlon": -73.9658011 + }, + "nodes": [ + 5106256152, + 5106249419, + 5106249416, + 5106256126, + 5106256132, + 5106256129, + 5106256125, + 5106256133, + 5106256134, + 5106256158, + 5106256157, + 5106256122, + 5106256152 + ], + "geometry": [ + { "lat": 40.8482110, "lon": -73.9660966 }, + { "lat": 40.8481825, "lon": -73.9659691 }, + { "lat": 40.8481916, "lon": -73.9658704 }, + { "lat": 40.8482109, "lon": -73.9658350 }, + { "lat": 40.8482460, "lon": -73.9658011 }, + { "lat": 40.8483062, "lon": -73.9658028 }, + { "lat": 40.8483427, "lon": -73.9658457 }, + { "lat": 40.8483630, "lon": -73.9658967 }, + { "lat": 40.8483630, "lon": -73.9659423 }, + { "lat": 40.8483427, "lon": -73.9659959 }, + { "lat": 40.8483184, "lon": -73.9660174 }, + { "lat": 40.8482880, "lon": -73.9660442 }, + { "lat": 40.8482110, "lon": -73.9660966 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old Palisade", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_left_1": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 524770659, + "bounds": { + "minlat": 40.8481540, + "minlon": -73.9676723, + "maxlat": 40.8485573, + "maxlon": -73.9666209 + }, + "nodes": [ + 5106249417, + 5106256139, + 5106256142, + 5106256138, + 5449302905, + 5106256130, + 5106256124, + 5106256150, + 5106256123, + 5106256127, + 5106256131, + 5106256144, + 5106256140, + 5106256128, + 5106256143, + 5106256161, + 5106256155, + 5106256145 + ], + "geometry": [ + { "lat": 40.8485573, "lon": -73.9676723 }, + { "lat": 40.8484503, "lon": -73.9676294 }, + { "lat": 40.8484056, "lon": -73.9675865 }, + { "lat": 40.8483833, "lon": -73.9675302 }, + { "lat": 40.8482331, "lon": -73.9670018 }, + { "lat": 40.8481743, "lon": -73.9667952 }, + { "lat": 40.8481540, "lon": -73.9667228 }, + { "lat": 40.8481561, "lon": -73.9666745 }, + { "lat": 40.8481703, "lon": -73.9666370 }, + { "lat": 40.8482109, "lon": -73.9666209 }, + { "lat": 40.8482332, "lon": -73.9666236 }, + { "lat": 40.8482636, "lon": -73.9666423 }, + { "lat": 40.8482839, "lon": -73.9666692 }, + { "lat": 40.8482880, "lon": -73.9667201 }, + { "lat": 40.8482940, "lon": -73.9667791 }, + { "lat": 40.8483042, "lon": -73.9668542 }, + { "lat": 40.8483186, "lon": -73.9669189 }, + { "lat": 40.8483513, "lon": -73.9669640 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 524770660, + "bounds": { + "minlat": 40.8483062, + "minlon": -73.9669776, + "maxlat": 40.8484624, + "maxlon": -73.9669481 + }, + "nodes": [ + 5106256149, + 5106249418, + 5106256145, + 5106256160 + ], + "geometry": [ + { "lat": 40.8484624, "lon": -73.9669562 }, + { "lat": 40.8484036, "lon": -73.9669481 }, + { "lat": 40.8483513, "lon": -73.9669640 }, + { "lat": 40.8483062, "lon": -73.9669776 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 524771276, + "bounds": { + "minlat": 40.8484813, + "minlon": -73.9670540, + "maxlat": 40.8486790, + "maxlon": -73.9665489 + }, + "nodes": [ + 103291071, + 103291073, + 103291075, + 103291077, + 13863547110, + 103233281, + 103291079, + 103291081, + 103291083, + 103291085, + 103291087 + ], + "geometry": [ + { "lat": 40.8484813, "lon": -73.9665489 }, + { "lat": 40.8485030, "lon": -73.9665840 }, + { "lat": 40.8485400, "lon": -73.9666450 }, + { "lat": 40.8486140, "lon": -73.9667180 }, + { "lat": 40.8486261, "lon": -73.9667359 }, + { "lat": 40.8486470, "lon": -73.9667670 }, + { "lat": 40.8486620, "lon": -73.9668020 }, + { "lat": 40.8486770, "lon": -73.9668650 }, + { "lat": 40.8486790, "lon": -73.9669310 }, + { "lat": 40.8486670, "lon": -73.9669990 }, + { "lat": 40.8486450, "lon": -73.9670540 } + ], + "tags": { + "highway": "residential", + "name": "Federspiel Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old Palisade", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_left_1": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 524771483, + "bounds": { + "minlat": 40.8484091, + "minlon": -73.9684118, + "maxlat": 40.8487559, + "maxlon": -73.9665934 + }, + "nodes": [ + 5106256121, + 5106256162, + 5106256154, + 5106256149, + 103291089, + 103291090, + 5106275925, + 103291091, + 5106249417, + 5106275926, + 10002778698, + 103134224 + ], + "geometry": [ + { "lat": 40.8484091, "lon": -73.9665934 }, + { "lat": 40.8484503, "lon": -73.9667309 }, + { "lat": 40.8484788, "lon": -73.9668713 }, + { "lat": 40.8484624, "lon": -73.9669562 }, + { "lat": 40.8484657, "lon": -73.9670461 }, + { "lat": 40.8484891, "lon": -73.9672446 }, + { "lat": 40.8485075, "lon": -73.9674046 }, + { "lat": 40.8485316, "lon": -73.9675521 }, + { "lat": 40.8485573, "lon": -73.9676723 }, + { "lat": 40.8485928, "lon": -73.9678117 }, + { "lat": 40.8487334, "lon": -73.9683290 }, + { "lat": 40.8487559, "lon": -73.9684118 } + ], + "tags": { + "highway": "residential", + "name": "Old Palisade Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old Palisade", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_left_1": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 524771986, + "bounds": { + "minlat": 40.8484765, + "minlon": -73.9662812, + "maxlat": 40.8497195, + "maxlon": -73.9658752 + }, + "nodes": [ + 5106266656, + 12344808186, + 12344808185, + 5106266655, + 12344808182, + 5106266653, + 12344808188, + 5106266657, + 5106266652, + 12344808187, + 5106266654, + 3641548085, + 940924866, + 5449358284, + 12344808183, + 103191201 + ], + "geometry": [ + { "lat": 40.8484765, "lon": -73.9662723 }, + { "lat": 40.8485082, "lon": -73.9662812 }, + { "lat": 40.8485398, "lon": -73.9662711 }, + { "lat": 40.8488746, "lon": -73.9661113 }, + { "lat": 40.8488949, "lon": -73.9661078 }, + { "lat": 40.8489103, "lon": -73.9661097 }, + { "lat": 40.8489254, "lon": -73.9661204 }, + { "lat": 40.8489335, "lon": -73.9661324 }, + { "lat": 40.8489465, "lon": -73.9661616 }, + { "lat": 40.8489586, "lon": -73.9661744 }, + { "lat": 40.8489734, "lon": -73.9661796 }, + { "lat": 40.8489918, "lon": -73.9661791 }, + { "lat": 40.8491295, "lon": -73.9661212 }, + { "lat": 40.8496074, "lon": -73.9659174 }, + { "lat": 40.8497000, "lon": -73.9658796 }, + { "lat": 40.8497195, "lon": -73.9658752 } + ], + "tags": { + "highway": "residential", + "name": "Kaufers Lane", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 524772405, + "bounds": { + "minlat": 40.8483518, + "minlon": -73.9679325, + "maxlat": 40.8485928, + "maxlon": -73.9678117 + }, + "nodes": [ + 5106275924, + 5106275926 + ], + "geometry": [ + { "lat": 40.8483518, "lon": -73.9679325 }, + { "lat": 40.8485928, "lon": -73.9678117 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 524772553, + "bounds": { + "minlat": 40.8482260, + "minlon": -73.9685888, + "maxlat": 40.8485182, + "maxlon": -73.9679746 + }, + "nodes": [ + 5106276552, + 5106276551, + 5106276553 + ], + "geometry": [ + { "lat": 40.8483514, "lon": -73.9685888 }, + { "lat": 40.8482260, "lon": -73.9681109 }, + { "lat": 40.8485182, "lon": -73.9679746 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 524772694, + "bounds": { + "minlat": 40.8475271, + "minlon": -73.9689099, + "maxlat": 40.8476506, + "maxlon": -73.9683911 + }, + "nodes": [ + 5106277779, + 5106277773 + ], + "geometry": [ + { "lat": 40.8476506, "lon": -73.9689099 }, + { "lat": 40.8475271, "lon": -73.9683911 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 524772695, + "bounds": { + "minlat": 40.8474370, + "minlon": -73.9689449, + "maxlat": 40.8478126, + "maxlon": -73.9675811 + }, + "nodes": [ + 5106277784, + 5106277776, + 5106277777, + 5106277781, + 5106277774, + 5106277770, + 5449302860, + 5106277783, + 5449302843, + 5106277771, + 5106277780, + 5449302850, + 5106277782, + 5106277778, + 5106277772, + 5106277775 + ], + "geometry": [ + { "lat": 40.8475742, "lon": -73.9689449 }, + { "lat": 40.8475514, "lon": -73.9688257 }, + { "lat": 40.8475129, "lon": -73.9686433 }, + { "lat": 40.8474703, "lon": -73.9684555 }, + { "lat": 40.8474370, "lon": -73.9683029 }, + { "lat": 40.8474380, "lon": -73.9682376 }, + { "lat": 40.8474535, "lon": -73.9681866 }, + { "lat": 40.8474764, "lon": -73.9681578 }, + { "lat": 40.8477133, "lon": -73.9680394 }, + { "lat": 40.8477185, "lon": -73.9680368 }, + { "lat": 40.8477653, "lon": -73.9679569 }, + { "lat": 40.8477976, "lon": -73.9678950 }, + { "lat": 40.8478126, "lon": -73.9678190 }, + { "lat": 40.8478112, "lon": -73.9677407 }, + { "lat": 40.8477871, "lon": -73.9676809 }, + { "lat": 40.8477097, "lon": -73.9675811 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 524773928, + "bounds": { + "minlat": 40.8472126, + "minlon": -73.9677447, + "maxlat": 40.8472795, + "maxlon": -73.9673981 + }, + "nodes": [ + 5106288665, + 5106288673, + 5106288671, + 5106288664, + 5106288669, + 5106288663, + 5106288670 + ], + "geometry": [ + { "lat": 40.8472473, "lon": -73.9673981 }, + { "lat": 40.8472462, "lon": -73.9674371 }, + { "lat": 40.8472491, "lon": -73.9675221 }, + { "lat": 40.8472582, "lon": -73.9676026 }, + { "lat": 40.8472704, "lon": -73.9676669 }, + { "lat": 40.8472795, "lon": -73.9677112 }, + { "lat": 40.8472126, "lon": -73.9677447 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 524773929, + "bounds": { + "minlat": 40.8467233, + "minlon": -73.9669814, + "maxlat": 40.8470582, + "maxlon": -73.9668328 + }, + "nodes": [ + 103182839, + 103182840, + 103182841 + ], + "geometry": [ + { "lat": 40.8467233, "lon": -73.9669814 }, + { "lat": 40.8469116, "lon": -73.9669022 }, + { "lat": 40.8470582, "lon": -73.9668328 } + ], + "tags": { + "highway": "residential", + "name": "Burdette Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Burdette", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 524775144, + "bounds": { + "minlat": 40.8508768, + "minlon": -73.9657558, + "maxlat": 40.8511715, + "maxlon": -73.9653727 + }, + "nodes": [ + 5106302148, + 5106302153, + 5106302152, + 5106302139, + 5106302138, + 5106302137, + 5106302141, + 5106302150, + 5106302147, + 5106302146, + 12072538051, + 12072538050, + 5106302136, + 5106302149, + 5106302151, + 5106302148 + ], + "geometry": [ + { "lat": 40.8511715, "lon": -73.9657558 }, + { "lat": 40.8510779, "lon": -73.9657391 }, + { "lat": 40.8509140, "lon": -73.9656920 }, + { "lat": 40.8508961, "lon": -73.9656840 }, + { "lat": 40.8508839, "lon": -73.9656652 }, + { "lat": 40.8508778, "lon": -73.9656223 }, + { "lat": 40.8508768, "lon": -73.9655338 }, + { "lat": 40.8508982, "lon": -73.9654790 }, + { "lat": 40.8509287, "lon": -73.9654555 }, + { "lat": 40.8510778, "lon": -73.9653727 }, + { "lat": 40.8510983, "lon": -73.9653809 }, + { "lat": 40.8511098, "lon": -73.9654025 }, + { "lat": 40.8511474, "lon": -73.9655629 }, + { "lat": 40.8511619, "lon": -73.9656236 }, + { "lat": 40.8511674, "lon": -73.9657011 }, + { "lat": 40.8511715, "lon": -73.9657558 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 524775148, + "bounds": { + "minlat": 40.8509140, + "minlon": -73.9656920, + "maxlat": 40.8511474, + "maxlon": -73.9655629 + }, + "nodes": [ + 5106302152, + 5106302136 + ], + "geometry": [ + { "lat": 40.8509140, "lon": -73.9656920 }, + { "lat": 40.8511474, "lon": -73.9655629 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 524775150, + "bounds": { + "minlat": 40.8511595, + "minlon": -73.9659514, + "maxlat": 40.8511758, + "maxlon": -73.9657558 + }, + "nodes": [ + 5106302144, + 12072538052, + 5106302148 + ], + "geometry": [ + { "lat": 40.8511595, "lon": -73.9659514 }, + { "lat": 40.8511758, "lon": -73.9658120 }, + { "lat": 40.8511715, "lon": -73.9657558 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 524775726, + "bounds": { + "minlat": 40.8511715, + "minlon": -73.9657558, + "maxlat": 40.8512966, + "maxlon": -73.9657487 + }, + "nodes": [ + 5106302148, + 5106302145 + ], + "geometry": [ + { "lat": 40.8511715, "lon": -73.9657558 }, + { "lat": 40.8512966, "lon": -73.9657487 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 524775974, + "bounds": { + "minlat": 40.8570872, + "minlon": -73.9636996, + "maxlat": 40.8577644, + "maxlon": -73.9633504 + }, + "nodes": [ + 5106312320, + 5106312621, + 5106312622, + 5106312623, + 3895526486 + ], + "geometry": [ + { "lat": 40.8577394, "lon": -73.9633504 }, + { "lat": 40.8577644, "lon": -73.9634854 }, + { "lat": 40.8577512, "lon": -73.9635216 }, + { "lat": 40.8571933, "lon": -73.9636731 }, + { "lat": 40.8570872, "lon": -73.9636996 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 524816751, + "bounds": { + "minlat": 40.7149277, + "minlon": -74.0092468, + "maxlat": 40.7155294, + "maxlon": -74.0079320 + }, + "nodes": [ + 42431611, + 7439027752, + 7410938053, + 42431614 + ], + "geometry": [ + { "lat": 40.7149277, "lon": -74.0079320 }, + { "lat": 40.7149853, "lon": -74.0080605 }, + { "lat": 40.7154769, "lon": -74.0091326 }, + { "lat": 40.7155294, "lon": -74.0092468 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "oneway": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 524817693, + "bounds": { + "minlat": 40.7170784, + "minlon": -74.0062368, + "maxlat": 40.7176740, + "maxlon": -74.0057722 + }, + "nodes": [ + 42452817, + 8312361657, + 8312361650, + 42448171 + ], + "geometry": [ + { "lat": 40.7170784, "lon": -74.0062368 }, + { "lat": 40.7171277, "lon": -74.0061984 }, + { "lat": 40.7176278, "lon": -74.0058082 }, + { "lat": 40.7176740, "lon": -74.0057722 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 524817694, + "bounds": { + "minlat": 40.7162939, + "minlon": -74.0062368, + "maxlat": 40.7170784, + "maxlon": -74.0045248 + }, + "nodes": [ + 42452817, + 8312361656, + 4501889866, + 4501889865, + 4501889863, + 8307637699, + 42428411 + ], + "geometry": [ + { "lat": 40.7170784, "lon": -74.0062368 }, + { "lat": 40.7170302, "lon": -74.0061324 }, + { "lat": 40.7166557, "lon": -74.0053223 }, + { "lat": 40.7165477, "lon": -74.0050927 }, + { "lat": 40.7164919, "lon": -74.0049722 }, + { "lat": 40.7163338, "lon": -74.0046314 }, + { "lat": 40.7162939, "lon": -74.0045248 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Worth Street", + "name:etymology:wikidata": "Q3568734", + "name:ko": "워스 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1318800", + "wikipedia": "en:Worth Street" + } +}, +{ + "type": "way", + "id": 524820721, + "bounds": { + "minlat": 40.7316233, + "minlon": -73.9548439, + "maxlat": 40.7337436, + "maxlon": -73.9544971 + }, + "nodes": [ + 42516051, + 8097159359, + 9920934973, + 42500689, + 9920934974, + 5238704907, + 5238704909, + 8097159384, + 42506522, + 8097159432, + 8097159352, + 42501788 + ], + "geometry": [ + { "lat": 40.7337436, "lon": -73.9548439 }, + { "lat": 40.7336832, "lon": -73.9548336 }, + { "lat": 40.7331039, "lon": -73.9547389 }, + { "lat": 40.7330344, "lon": -73.9547276 }, + { "lat": 40.7329754, "lon": -73.9547177 }, + { "lat": 40.7326062, "lon": -73.9546561 }, + { "lat": 40.7324273, "lon": -73.9546262 }, + { "lat": 40.7323877, "lon": -73.9546196 }, + { "lat": 40.7323299, "lon": -73.9546103 }, + { "lat": 40.7322716, "lon": -73.9546006 }, + { "lat": 40.7316862, "lon": -73.9545081 }, + { "lat": 40.7316233, "lon": -73.9544971 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Manhattan", + "tiger:name_type": "Ave", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 524930635, + "bounds": { + "minlat": 40.7347686, + "minlon": -73.9591882, + "maxlat": 40.7348659, + "maxlon": -73.9591711 + }, + "nodes": [ + 5107556537, + 8097082969, + 5107556536 + ], + "geometry": [ + { "lat": 40.7347686, "lon": -73.9591711 }, + { "lat": 40.7348341, "lon": -73.9591823 }, + { "lat": 40.7348659, "lon": -73.9591882 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 524930636, + "bounds": { + "minlat": 40.7348659, + "minlon": -73.9592277, + "maxlat": 40.7350825, + "maxlon": -73.9591882 + }, + "nodes": [ + 5107556536, + 5107556538 + ], + "geometry": [ + { "lat": 40.7348659, "lon": -73.9591882 }, + { "lat": 40.7350825, "lon": -73.9592277 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525014156, + "bounds": { + "minlat": 40.8632066, + "minlon": -73.9646281, + "maxlat": 40.8638582, + "maxlon": -73.9641735 + }, + "nodes": [ + 7373529697, + 5108190566, + 5108190543, + 7373529694, + 5108190565, + 7373529695, + 5108190557, + 7373529760, + 5108190555 + ], + "geometry": [ + { "lat": 40.8632066, "lon": -73.9641735 }, + { "lat": 40.8634383, "lon": -73.9645449 }, + { "lat": 40.8634685, "lon": -73.9645925 }, + { "lat": 40.8634966, "lon": -73.9646144 }, + { "lat": 40.8635276, "lon": -73.9646281 }, + { "lat": 40.8635642, "lon": -73.9646219 }, + { "lat": 40.8637033, "lon": -73.9645597 }, + { "lat": 40.8637915, "lon": -73.9645007 }, + { "lat": 40.8638582, "lon": -73.9644376 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525016534, + "bounds": { + "minlat": 40.8639448, + "minlon": -73.9642397, + "maxlat": 40.8646361, + "maxlon": -73.9629710 + }, + "nodes": [ + 5108196246, + 5108196248, + 5108196237, + 5108196241, + 5108196238, + 5108196240, + 5108196239 + ], + "geometry": [ + { "lat": 40.8643187, "lon": -73.9629710 }, + { "lat": 40.8646361, "lon": -73.9634921 }, + { "lat": 40.8645895, "lon": -73.9635658 }, + { "lat": 40.8645450, "lon": -73.9636380 }, + { "lat": 40.8644395, "lon": -73.9637439 }, + { "lat": 40.8643433, "lon": -73.9638403 }, + { "lat": 40.8639448, "lon": -73.9642397 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525016536, + "bounds": { + "minlat": 40.8643433, + "minlon": -73.9639988, + "maxlat": 40.8645175, + "maxlon": -73.9637439 + }, + "nodes": [ + 5108196238, + 5108196251, + 5108196242, + 5108196244, + 5108196243, + 5108196252, + 5108196245, + 5108196249, + 5108196247, + 5108196250, + 5108196240 + ], + "geometry": [ + { "lat": 40.8644395, "lon": -73.9637439 }, + { "lat": 40.8644893, "lon": -73.9638245 }, + { "lat": 40.8645085, "lon": -73.9638607 }, + { "lat": 40.8645175, "lon": -73.9639051 }, + { "lat": 40.8645144, "lon": -73.9639360 }, + { "lat": 40.8644992, "lon": -73.9639722 }, + { "lat": 40.8644809, "lon": -73.9639923 }, + { "lat": 40.8644558, "lon": -73.9639988 }, + { "lat": 40.8644335, "lon": -73.9639841 }, + { "lat": 40.8644132, "lon": -73.9639545 }, + { "lat": 40.8643433, "lon": -73.9638403 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525016686, + "bounds": { + "minlat": 40.8646361, + "minlon": -73.9634921, + "maxlat": 40.8649326, + "maxlon": -73.9632061 + }, + "nodes": [ + 5108197923, + 5108196248 + ], + "geometry": [ + { "lat": 40.8649326, "lon": -73.9632061 }, + { "lat": 40.8646361, "lon": -73.9634921 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525017007, + "bounds": { + "minlat": 40.8636200, + "minlon": -73.9636840, + "maxlat": 40.8663800, + "maxlon": -73.9610180 + }, + "nodes": [ + 103253559, + 7324295385, + 103318682, + 5108196246, + 103281351, + 9284797874, + 103318684, + 440215046, + 103318689, + 9284797877, + 103318691, + 103318696 + ], + "geometry": [ + { "lat": 40.8636200, "lon": -73.9636840 }, + { "lat": 40.8638789, "lon": -73.9634208 }, + { "lat": 40.8642840, "lon": -73.9630090 }, + { "lat": 40.8643187, "lon": -73.9629710 }, + { "lat": 40.8646070, "lon": -73.9626550 }, + { "lat": 40.8650940, "lon": -73.9621236 }, + { "lat": 40.8655102, "lon": -73.9616745 }, + { "lat": 40.8656369, "lon": -73.9615683 }, + { "lat": 40.8656968, "lon": -73.9615458 }, + { "lat": 40.8657349, "lon": -73.9615303 }, + { "lat": 40.8657552, "lon": -73.9615220 }, + { "lat": 40.8663800, "lon": -73.9610180 } + ], + "tags": { + "highway": "residential", + "name": "3rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525017133, + "bounds": { + "minlat": 40.8630093, + "minlon": -73.9626837, + "maxlat": 40.8633162, + "maxlon": -73.9623619 + }, + "nodes": [ + 5108200232, + 5108200231 + ], + "geometry": [ + { "lat": 40.8633162, "lon": -73.9623619 }, + { "lat": 40.8630093, "lon": -73.9626837 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525017454, + "bounds": { + "minlat": 40.8626460, + "minlon": -73.9628309, + "maxlat": 40.8630093, + "maxlon": -73.9626124 + }, + "nodes": [ + 5108200231, + 5108202994, + 5108203000, + 5108202997, + 5108202996, + 5108202998, + 5108202995, + 5108202999 + ], + "geometry": [ + { "lat": 40.8630093, "lon": -73.9626837 }, + { "lat": 40.8629677, "lon": -73.9627397 }, + { "lat": 40.8628653, "lon": -73.9628041 }, + { "lat": 40.8628196, "lon": -73.9628255 }, + { "lat": 40.8628004, "lon": -73.9628309 }, + { "lat": 40.8627752, "lon": -73.9628240 }, + { "lat": 40.8627478, "lon": -73.9627918 }, + { "lat": 40.8626460, "lon": -73.9626124 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525017835, + "bounds": { + "minlat": 40.8633031, + "minlon": -73.9618718, + "maxlat": 40.8639049, + "maxlon": -73.9614774 + }, + "nodes": [ + 5108198965, + 5108198963, + 5108198967, + 5108198968, + 5108198966, + 5108198958 + ], + "geometry": [ + { "lat": 40.8633031, "lon": -73.9615259 }, + { "lat": 40.8635095, "lon": -73.9618544 }, + { "lat": 40.8635359, "lon": -73.9618718 }, + { "lat": 40.8635681, "lon": -73.9618707 }, + { "lat": 40.8636038, "lon": -73.9618423 }, + { "lat": 40.8639049, "lon": -73.9614774 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525017837, + "bounds": { + "minlat": 40.8635387, + "minlon": -73.9625391, + "maxlat": 40.8638835, + "maxlon": -73.9620397 + }, + "nodes": [ + 5108198962, + 5108198969, + 5108198960, + 5108198959, + 5108198964, + 5108198961, + 5108198957, + 5108198970 + ], + "geometry": [ + { "lat": 40.8637653, "lon": -73.9625391 }, + { "lat": 40.8635470, "lon": -73.9621695 }, + { "lat": 40.8635387, "lon": -73.9621443 }, + { "lat": 40.8635582, "lon": -73.9620891 }, + { "lat": 40.8636097, "lon": -73.9620397 }, + { "lat": 40.8636422, "lon": -73.9620477 }, + { "lat": 40.8636606, "lon": -73.9620649 }, + { "lat": 40.8638835, "lon": -73.9624185 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525024753, + "bounds": { + "minlat": 40.8766062, + "minlon": -73.9514943, + "maxlat": 40.8772436, + "maxlon": -73.9509797 + }, + "nodes": [ + 5108252320, + 5108252304, + 5108252317, + 5108252305, + 5108252311, + 5108252310, + 5108252319, + 5108252306, + 5108252312 + ], + "geometry": [ + { "lat": 40.8772436, "lon": -73.9509797 }, + { "lat": 40.8772102, "lon": -73.9510144 }, + { "lat": 40.8771638, "lon": -73.9510600 }, + { "lat": 40.8770936, "lon": -73.9511070 }, + { "lat": 40.8770435, "lon": -73.9511495 }, + { "lat": 40.8769760, "lon": -73.9511821 }, + { "lat": 40.8768756, "lon": -73.9512223 }, + { "lat": 40.8767996, "lon": -73.9512894 }, + { "lat": 40.8766062, "lon": -73.9514943 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525027151, + "bounds": { + "minlat": 40.8605429, + "minlon": -73.9613340, + "maxlat": 40.8607373, + "maxlon": -73.9604426 + }, + "nodes": [ + 103098302, + 5108291068, + 5108267737, + 5108282522, + 3701902728, + 103094695, + 5108274714, + 5108282521, + 5108274718, + 5108274715 + ], + "geometry": [ + { "lat": 40.8605619, "lon": -73.9604426 }, + { "lat": 40.8605558, "lon": -73.9604929 }, + { "lat": 40.8605429, "lon": -73.9606664 }, + { "lat": 40.8605450, "lon": -73.9607257 }, + { "lat": 40.8605659, "lon": -73.9607921 }, + { "lat": 40.8607373, "lon": -73.9610893 }, + { "lat": 40.8607294, "lon": -73.9611329 }, + { "lat": 40.8607092, "lon": -73.9611691 }, + { "lat": 40.8606771, "lon": -73.9612015 }, + { "lat": 40.8605459, "lon": -73.9613340 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 525027878, + "bounds": { + "minlat": 40.8612760, + "minlon": -73.9629529, + "maxlat": 40.8614778, + "maxlon": -73.9625792 + }, + "nodes": [ + 103189642, + 5108313774, + 5108313769, + 103255712 + ], + "geometry": [ + { "lat": 40.8614778, "lon": -73.9629529 }, + { "lat": 40.8614639, "lon": -73.9629271 }, + { "lat": 40.8613019, "lon": -73.9626471 }, + { "lat": 40.8612760, "lon": -73.9625792 } + ], + "tags": { + "highway": "residential", + "name": "Wall Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wall", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525028499, + "bounds": { + "minlat": 40.8605459, + "minlon": -73.9618666, + "maxlat": 40.8608672, + "maxlon": -73.9613340 + }, + "nodes": [ + 5108274715, + 5108282523 + ], + "geometry": [ + { "lat": 40.8605459, "lon": -73.9613340 }, + { "lat": 40.8608672, "lon": -73.9618666 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 525028500, + "bounds": { + "minlat": 40.8610384, + "minlon": -73.9613227, + "maxlat": 40.8613626, + "maxlon": -73.9607734 + }, + "nodes": [ + 3701902729, + 5108274717 + ], + "geometry": [ + { "lat": 40.8610384, "lon": -73.9607734 }, + { "lat": 40.8613626, "lon": -73.9613227 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 525028501, + "bounds": { + "minlat": 40.8607985, + "minlon": -73.9615877, + "maxlat": 40.8611248, + "maxlon": -73.9610254 + }, + "nodes": [ + 5108274713, + 5108274709 + ], + "geometry": [ + { "lat": 40.8611248, "lon": -73.9615877 }, + { "lat": 40.8607985, "lon": -73.9610254 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525028502, + "bounds": { + "minlat": 40.8607373, + "minlon": -73.9610893, + "maxlat": 40.8610384, + "maxlon": -73.9607734 + }, + "nodes": [ + 103094695, + 5108296900, + 5108274709, + 5108274719, + 3701902729 + ], + "geometry": [ + { "lat": 40.8607373, "lon": -73.9610893 }, + { "lat": 40.8607632, "lon": -73.9610623 }, + { "lat": 40.8607985, "lon": -73.9610254 }, + { "lat": 40.8609238, "lon": -73.9608944 }, + { "lat": 40.8610384, "lon": -73.9607734 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 525028503, + "bounds": { + "minlat": 40.8606771, + "minlon": -73.9617392, + "maxlat": 40.8610000, + "maxlon": -73.9612015 + }, + "nodes": [ + 5108274716, + 5108274718 + ], + "geometry": [ + { "lat": 40.8610000, "lon": -73.9617392 }, + { "lat": 40.8606771, "lon": -73.9612015 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525028504, + "bounds": { + "minlat": 40.8609238, + "minlon": -73.9614496, + "maxlat": 40.8612516, + "maxlon": -73.9608944 + }, + "nodes": [ + 5108274712, + 5108274719 + ], + "geometry": [ + { "lat": 40.8612516, "lon": -73.9614496 }, + { "lat": 40.8609238, "lon": -73.9608944 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525028505, + "bounds": { + "minlat": 40.8611366, + "minlon": -73.9612771, + "maxlat": 40.8614972, + "maxlon": -73.9607279 + }, + "nodes": [ + 5108274711, + 5108274720, + 5108274710, + 3701902730 + ], + "geometry": [ + { "lat": 40.8611366, "lon": -73.9607279 }, + { "lat": 40.8612929, "lon": -73.9609806 }, + { "lat": 40.8613168, "lon": -73.9609914 }, + { "lat": 40.8614972, "lon": -73.9612771 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 525033953, + "bounds": { + "minlat": 40.7359260, + "minlon": -74.0011098, + "maxlat": 40.7365975, + "maxlon": -74.0007220 + }, + "nodes": [ + 42432201, + 12010304136, + 8262308447, + 42430828 + ], + "geometry": [ + { "lat": 40.7359260, "lon": -74.0007220 }, + { "lat": 40.7363993, "lon": -74.0010010 }, + { "lat": 40.7364494, "lon": -74.0010305 }, + { "lat": 40.7365975, "lon": -74.0011098 } + ], + "tags": { + "cycleway:both": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenwich Avenue", + "name:etymology:wikidata": "Q205380", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5604832", + "wikipedia": "en:Greenwich Avenue" + } +}, +{ + "type": "way", + "id": 525033955, + "bounds": { + "minlat": 40.8612104, + "minlon": -73.9596349, + "maxlat": 40.8613948, + "maxlon": -73.9591784 + }, + "nodes": [ + 5108332547, + 5108332007, + 5108332561 + ], + "geometry": [ + { "lat": 40.8612104, "lon": -73.9591784 }, + { "lat": 40.8613948, "lon": -73.9595034 }, + { "lat": 40.8612761, "lon": -73.9596349 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525036089, + "bounds": { + "minlat": 40.7188934, + "minlon": -73.9763832, + "maxlat": 40.7190823, + "maxlon": -73.9754842 + }, + "nodes": [ + 42442788, + 3783073181, + 3783071251, + 10606979717, + 42446398 + ], + "geometry": [ + { "lat": 40.7190823, "lon": -73.9763832 }, + { "lat": 40.7190602, "lon": -73.9762766 }, + { "lat": 40.7189426, "lon": -73.9756626 }, + { "lat": 40.7189182, "lon": -73.9755742 }, + { "lat": 40.7188934, "lon": -73.9754842 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 525036090, + "bounds": { + "minlat": 40.7190823, + "minlon": -73.9763832, + "maxlat": 40.7191873, + "maxlon": -73.9763322 + }, + "nodes": [ + 370893396, + 42442788 + ], + "geometry": [ + { "lat": 40.7191873, "lon": -73.9763322 }, + { "lat": 40.7190823, "lon": -73.9763832 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Baruch Place", + "name:etymology:wikidata": "Q1465166", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525038147, + "bounds": { + "minlat": 40.7075124, + "minlon": -74.0039887, + "maxlat": 40.7080067, + "maxlon": -74.0035028 + }, + "nodes": [ + 5362212152, + 6133388375, + 4985377332 + ], + "geometry": [ + { "lat": 40.7080067, "lon": -74.0035028 }, + { "lat": 40.7078606, "lon": -74.0036439 }, + { "lat": 40.7075124, "lon": -74.0039887 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 525054379, + "bounds": { + "minlat": 40.8754167, + "minlon": -73.9569559, + "maxlat": 40.8756963, + "maxlon": -73.9564647 + }, + "nodes": [ + 5108505913, + 5108505904, + 5108505902 + ], + "geometry": [ + { "lat": 40.8756963, "lon": -73.9569559 }, + { "lat": 40.8754519, "lon": -73.9565197 }, + { "lat": 40.8754167, "lon": -73.9564647 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525054380, + "bounds": { + "minlat": 40.8754167, + "minlon": -73.9569559, + "maxlat": 40.8758048, + "maxlon": -73.9564097 + }, + "nodes": [ + 5108505902, + 5108505887, + 5108505908, + 5108505910, + 5108505909, + 5108505885, + 5108505906, + 5108505900, + 5108505892, + 5108505913 + ], + "geometry": [ + { "lat": 40.8754167, "lon": -73.9564647 }, + { "lat": 40.8754641, "lon": -73.9564419 }, + { "lat": 40.8755797, "lon": -73.9564097 }, + { "lat": 40.8757095, "lon": -73.9564151 }, + { "lat": 40.8757570, "lon": -73.9564464 }, + { "lat": 40.8757865, "lon": -73.9564956 }, + { "lat": 40.8757967, "lon": -73.9565680 }, + { "lat": 40.8758048, "lon": -73.9567718 }, + { "lat": 40.8757845, "lon": -73.9568657 }, + { "lat": 40.8756963, "lon": -73.9569559 } + ], + "tags": { + "highway": "service", + "name": "Wood Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wood", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 525054381, + "bounds": { + "minlat": 40.8736919, + "minlon": -73.9553625, + "maxlat": 40.8743980, + "maxlon": -73.9549740 + }, + "nodes": [ + 103194599, + 103194601, + 7000992650, + 103194602 + ], + "geometry": [ + { "lat": 40.8736919, "lon": -73.9553625 }, + { "lat": 40.8740516, "lon": -73.9551566 }, + { "lat": 40.8743466, "lon": -73.9550011 }, + { "lat": 40.8743980, "lon": -73.9549740 } + ], + "tags": { + "highway": "residential", + "name": "Rose Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Rose", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 525054382, + "bounds": { + "minlat": 40.8756963, + "minlon": -73.9573824, + "maxlat": 40.8764964, + "maxlon": -73.9568469 + }, + "nodes": [ + 5108505913, + 5108505893, + 5108505898, + 5108505917, + 5108505918, + 5108505912, + 5108505895, + 5108505919, + 5108505912 + ], + "geometry": [ + { "lat": 40.8756963, "lon": -73.9569559 }, + { "lat": 40.8758767, "lon": -73.9572778 }, + { "lat": 40.8759143, "lon": -73.9573485 }, + { "lat": 40.8759639, "lon": -73.9573824 }, + { "lat": 40.8759963, "lon": -73.9573637 }, + { "lat": 40.8762908, "lon": -73.9570593 }, + { "lat": 40.8764964, "lon": -73.9568469 }, + { "lat": 40.8762782, "lon": -73.9568701 }, + { "lat": 40.8762908, "lon": -73.9570593 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525055342, + "bounds": { + "minlat": 40.8813996, + "minlon": -73.9588397, + "maxlat": 40.8817467, + "maxlon": -73.9585277 + }, + "nodes": [ + 103181566, + 103181567, + 5108513276, + 5108513266, + 5108513259, + 5108513272, + 5108513255, + 5108513267, + 5108513261, + 5108513256, + 5108513269, + 5108513270, + 103181566 + ], + "geometry": [ + { "lat": 40.8813996, "lon": -73.9587265 }, + { "lat": 40.8814598, "lon": -73.9586432 }, + { "lat": 40.8815764, "lon": -73.9585715 }, + { "lat": 40.8816545, "lon": -73.9585277 }, + { "lat": 40.8817173, "lon": -73.9585599 }, + { "lat": 40.8817407, "lon": -73.9586171 }, + { "lat": 40.8817467, "lon": -73.9587217 }, + { "lat": 40.8817346, "lon": -73.9587619 }, + { "lat": 40.8816332, "lon": -73.9588048 }, + { "lat": 40.8815622, "lon": -73.9588343 }, + { "lat": 40.8815075, "lon": -73.9588397 }, + { "lat": 40.8814710, "lon": -73.9588075 }, + { "lat": 40.8813996, "lon": -73.9587265 } + ], + "tags": { + "highway": "residential", + "name": "Daniel Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Daniel", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 525055343, + "bounds": { + "minlat": 40.8821081, + "minlon": -73.9579135, + "maxlat": 40.8822623, + "maxlon": -73.9577109 + }, + "nodes": [ + 9769612737, + 9769612738, + 9769612739, + 9769612740, + 9769612741, + 9769612742, + 9769612743, + 5108513274, + 5108513273, + 9769612729, + 9769612730, + 9769612731, + 9769612732, + 9769612733, + 9769612734, + 9769612735, + 9769612736, + 5108513253, + 5108513275, + 9769612737 + ], + "geometry": [ + { "lat": 40.8822482, "lon": -73.9578703 }, + { "lat": 40.8822316, "lon": -73.9578930 }, + { "lat": 40.8822105, "lon": -73.9579078 }, + { "lat": 40.8821871, "lon": -73.9579135 }, + { "lat": 40.8821634, "lon": -73.9579093 }, + { "lat": 40.8821418, "lon": -73.9578959 }, + { "lat": 40.8821244, "lon": -73.9578743 }, + { "lat": 40.8821128, "lon": -73.9578467 }, + { "lat": 40.8821081, "lon": -73.9578119 }, + { "lat": 40.8821126, "lon": -73.9577770 }, + { "lat": 40.8821259, "lon": -73.9577462 }, + { "lat": 40.8821463, "lon": -73.9577233 }, + { "lat": 40.8821714, "lon": -73.9577111 }, + { "lat": 40.8821982, "lon": -73.9577109 }, + { "lat": 40.8822234, "lon": -73.9577228 }, + { "lat": 40.8822440, "lon": -73.9577454 }, + { "lat": 40.8822575, "lon": -73.9577760 }, + { "lat": 40.8822623, "lon": -73.9578108 }, + { "lat": 40.8822588, "lon": -73.9578420 }, + { "lat": 40.8822482, "lon": -73.9578703 } + ], + "tags": { + "highway": "residential", + "name": "Kira Lane", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kira", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 525062561, + "bounds": { + "minlat": 40.8675053, + "minlon": -73.9605940, + "maxlat": 40.8677760, + "maxlon": -73.9598606 + }, + "nodes": [ + 5108572976, + 103117842, + 5108572968, + 5108572978, + 5108572975, + 5108572972 + ], + "geometry": [ + { "lat": 40.8675367, "lon": -73.9598606 }, + { "lat": 40.8675903, "lon": -73.9599534 }, + { "lat": 40.8676483, "lon": -73.9600575 }, + { "lat": 40.8677101, "lon": -73.9602118 }, + { "lat": 40.8677760, "lon": -73.9603472 }, + { "lat": 40.8675053, "lon": -73.9605940 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bayview", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 525062782, + "bounds": { + "minlat": 40.8666019, + "minlon": -73.9604623, + "maxlat": 40.8670967, + "maxlon": -73.9600799 + }, + "nodes": [ + 5108579130, + 5108579122, + 5108579124, + 5108579123 + ], + "geometry": [ + { "lat": 40.8666019, "lon": -73.9604623 }, + { "lat": 40.8669921, "lon": -73.9601153 }, + { "lat": 40.8670692, "lon": -73.9601031 }, + { "lat": 40.8670967, "lon": -73.9600799 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525062783, + "bounds": { + "minlat": 40.8673252, + "minlon": -73.9597443, + "maxlat": 40.8677000, + "maxlon": -73.9592864 + }, + "nodes": [ + 5108579126, + 5108579131, + 5108579134, + 5108579133, + 5108579128, + 5108579127, + 5108579136, + 5108579125, + 5108579135 + ], + "geometry": [ + { "lat": 40.8673252, "lon": -73.9594944 }, + { "lat": 40.8675225, "lon": -73.9592931 }, + { "lat": 40.8675570, "lon": -73.9592864 }, + { "lat": 40.8675793, "lon": -73.9592864 }, + { "lat": 40.8676929, "lon": -73.9594326 }, + { "lat": 40.8677000, "lon": -73.9594741 }, + { "lat": 40.8676625, "lon": -73.9595358 }, + { "lat": 40.8675022, "lon": -73.9596914 }, + { "lat": 40.8674695, "lon": -73.9597443 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525062784, + "bounds": { + "minlat": 40.8670458, + "minlon": -73.9599684, + "maxlat": 40.8674097, + "maxlon": -73.9596406 + }, + "nodes": [ + 5108579137, + 5108579129 + ], + "geometry": [ + { "lat": 40.8674097, "lon": -73.9596406 }, + { "lat": 40.8670458, "lon": -73.9599684 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525062785, + "bounds": { + "minlat": 40.8670967, + "minlon": -73.9600799, + "maxlat": 40.8674695, + "maxlon": -73.9597443 + }, + "nodes": [ + 5108579123, + 5108579135 + ], + "geometry": [ + { "lat": 40.8670967, "lon": -73.9600799 }, + { "lat": 40.8674695, "lon": -73.9597443 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525063416, + "bounds": { + "minlat": 40.8683111, + "minlon": -73.9594974, + "maxlat": 40.8691572, + "maxlon": -73.9580990 + }, + "nodes": [ + 4204737889, + 5108581316, + 5108583922, + 5108581307, + 5108581317, + 5108583927, + 5108583939, + 5108583938, + 5108583928 + ], + "geometry": [ + { "lat": 40.8683111, "lon": -73.9580990 }, + { "lat": 40.8684069, "lon": -73.9582457 }, + { "lat": 40.8684300, "lon": -73.9582820 }, + { "lat": 40.8684465, "lon": -73.9582989 }, + { "lat": 40.8684789, "lon": -73.9583114 }, + { "lat": 40.8685133, "lon": -73.9583248 }, + { "lat": 40.8686876, "lon": -73.9586421 }, + { "lat": 40.8690840, "lon": -73.9593641 }, + { "lat": 40.8691572, "lon": -73.9594974 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525063418, + "bounds": { + "minlat": 40.8682020, + "minlon": -73.9601916, + "maxlat": 40.8686821, + "maxlon": -73.9595481 + }, + "nodes": [ + 5108581303, + 5108583894, + 5108583895, + 5108583893 + ], + "geometry": [ + { "lat": 40.8686821, "lon": -73.9599510 }, + { "lat": 40.8684241, "lon": -73.9601916 }, + { "lat": 40.8682020, "lon": -73.9597880 }, + { "lat": 40.8684448, "lon": -73.9595481 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525063419, + "bounds": { + "minlat": 40.8681178, + "minlon": -73.9596855, + "maxlat": 40.8687089, + "maxlon": -73.9582989 + }, + "nodes": [ + 5108581314, + 5108581305, + 5108581309, + 5108581315, + 5108583936, + 5108581307 + ], + "geometry": [ + { "lat": 40.8687089, "lon": -73.9596855 }, + { "lat": 40.8681178, "lon": -73.9586547 }, + { "lat": 40.8683904, "lon": -73.9583901 }, + { "lat": 40.8684030, "lon": -73.9583779 }, + { "lat": 40.8684364, "lon": -73.9583374 }, + { "lat": 40.8684465, "lon": -73.9582989 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525063420, + "bounds": { + "minlat": 40.8687089, + "minlon": -73.9598338, + "maxlat": 40.8687940, + "maxlon": -73.9596855 + }, + "nodes": [ + 5108583942, + 5108583933, + 5108581314 + ], + "geometry": [ + { "lat": 40.8687940, "lon": -73.9598338 }, + { "lat": 40.8687310, "lon": -73.9597239 }, + { "lat": 40.8687089, "lon": -73.9596855 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525063421, + "bounds": { + "minlat": 40.8687310, + "minlon": -73.9597239, + "maxlat": 40.8690840, + "maxlon": -73.9593641 + }, + "nodes": [ + 5108583933, + 5108583938 + ], + "geometry": [ + { "lat": 40.8687310, "lon": -73.9597239 }, + { "lat": 40.8690840, "lon": -73.9593641 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525063423, + "bounds": { + "minlat": 40.8687940, + "minlon": -73.9598590, + "maxlat": 40.8691572, + "maxlon": -73.9594974 + }, + "nodes": [ + 5108583928, + 5108583944, + 5108583942 + ], + "geometry": [ + { "lat": 40.8691572, "lon": -73.9594974 }, + { "lat": 40.8688085, "lon": -73.9598590 }, + { "lat": 40.8687940, "lon": -73.9598338 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525063424, + "bounds": { + "minlat": 40.8675514, + "minlon": -73.9595789, + "maxlat": 40.8683257, + "maxlon": -73.9588470 + }, + "nodes": [ + 5108581308, + 5108583932, + 5108581320, + 5108583925, + 5108583929, + 5108581304 + ], + "geometry": [ + { "lat": 40.8683257, "lon": -73.9593373 }, + { "lat": 40.8680771, "lon": -73.9595789 }, + { "lat": 40.8676929, "lon": -73.9589162 }, + { "lat": 40.8676584, "lon": -73.9588666 }, + { "lat": 40.8676209, "lon": -73.9588479 }, + { "lat": 40.8675514, "lon": -73.9588470 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525063425, + "bounds": { + "minlat": 40.8683904, + "minlon": -73.9587258, + "maxlat": 40.8686876, + "maxlon": -73.9583901 + }, + "nodes": [ + 5108583939, + 5108583931, + 5108581319, + 5108581309 + ], + "geometry": [ + { "lat": 40.8686876, "lon": -73.9586421 }, + { "lat": 40.8685965, "lon": -73.9587258 }, + { "lat": 40.8685663, "lon": -73.9587209 }, + { "lat": 40.8683904, "lon": -73.9583901 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525063426, + "bounds": { + "minlat": 40.8686821, + "minlon": -73.9599510, + "maxlat": 40.8687940, + "maxlon": -73.9598338 + }, + "nodes": [ + 5108581303, + 5108583942 + ], + "geometry": [ + { "lat": 40.8686821, "lon": -73.9599510 }, + { "lat": 40.8687940, "lon": -73.9598338 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525063659, + "bounds": { + "minlat": 40.8573270, + "minlon": -73.9646907, + "maxlat": 40.8583893, + "maxlon": -73.9642018 + }, + "nodes": [ + 5108589065, + 5108589064, + 5108585686, + 5108585683, + 5108585685, + 5108585677, + 5108587678 + ], + "geometry": [ + { "lat": 40.8582684, "lon": -73.9643671 }, + { "lat": 40.8583893, "lon": -73.9642974 }, + { "lat": 40.8583233, "lon": -73.9642018 }, + { "lat": 40.8579947, "lon": -73.9643021 }, + { "lat": 40.8574180, "lon": -73.9645403 }, + { "lat": 40.8573759, "lon": -73.9645744 }, + { "lat": 40.8573270, "lon": -73.9646907 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525063661, + "bounds": { + "minlat": 40.8566654, + "minlon": -73.9665788, + "maxlat": 40.8568604, + "maxlon": -73.9658774 + }, + "nodes": [ + 5108585689, + 5108585670, + 5108585679, + 5108585667 + ], + "geometry": [ + { "lat": 40.8568604, "lon": -73.9665788 }, + { "lat": 40.8567546, "lon": -73.9662869 }, + { "lat": 40.8567676, "lon": -73.9661576 }, + { "lat": 40.8566654, "lon": -73.9658774 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525063794, + "bounds": { + "minlat": 40.8567949, + "minlon": -73.9659034, + "maxlat": 40.8572019, + "maxlon": -73.9656722 + }, + "nodes": [ + 5108587684, + 5108587681 + ], + "geometry": [ + { "lat": 40.8567949, "lon": -73.9659034 }, + { "lat": 40.8572019, "lon": -73.9656722 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525063795, + "bounds": { + "minlat": 40.8572999, + "minlon": -73.9649981, + "maxlat": 40.8574046, + "maxlon": -73.9646907 + }, + "nodes": [ + 5108587678, + 5108587672, + 5108587679, + 5108587682, + 5108587675, + 5108587674, + 5108587677, + 5108587680, + 5108585669 + ], + "geometry": [ + { "lat": 40.8573270, "lon": -73.9646907 }, + { "lat": 40.8573617, "lon": -73.9647339 }, + { "lat": 40.8573861, "lon": -73.9647876 }, + { "lat": 40.8574023, "lon": -73.9648520 }, + { "lat": 40.8574046, "lon": -73.9648998 }, + { "lat": 40.8573906, "lon": -73.9649453 }, + { "lat": 40.8573744, "lon": -73.9649708 }, + { "lat": 40.8573414, "lon": -73.9649888 }, + { "lat": 40.8572999, "lon": -73.9649981 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525063796, + "bounds": { + "minlat": 40.8570348, + "minlon": -73.9659323, + "maxlat": 40.8574324, + "maxlon": -73.9651738 + }, + "nodes": [ + 5108585666, + 9291861057, + 5108587681, + 5108587673, + 5108588088, + 5108587676, + 5108585684 + ], + "geometry": [ + { "lat": 40.8570348, "lon": -73.9652610 }, + { "lat": 40.8571463, "lon": -73.9655149 }, + { "lat": 40.8572019, "lon": -73.9656722 }, + { "lat": 40.8572906, "lon": -73.9659323 }, + { "lat": 40.8574280, "lon": -73.9658540 }, + { "lat": 40.8574324, "lon": -73.9658515 }, + { "lat": 40.8572197, "lon": -73.9651738 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525063797, + "bounds": { + "minlat": 40.8568862, + "minlon": -73.9661609, + "maxlat": 40.8572906, + "maxlon": -73.9659323 + }, + "nodes": [ + 5108587683, + 5108587673 + ], + "geometry": [ + { "lat": 40.8568862, "lon": -73.9661609 }, + { "lat": 40.8572906, "lon": -73.9659323 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525063798, + "bounds": { + "minlat": 40.8572857, + "minlon": -73.9649981, + "maxlat": 40.8573270, + "maxlon": -73.9646907 + }, + "nodes": [ + 5108585669, + 5108585672, + 5108585674, + 5108587678 + ], + "geometry": [ + { "lat": 40.8572999, "lon": -73.9649981 }, + { "lat": 40.8572867, "lon": -73.9648922 }, + { "lat": 40.8572857, "lon": -73.9647889 }, + { "lat": 40.8573270, "lon": -73.9646907 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525063799, + "bounds": { + "minlat": 40.8570001, + "minlon": -73.9652610, + "maxlat": 40.8572999, + "maxlon": -73.9649981 + }, + "nodes": [ + 5108585669, + 5108585688, + 5108585684, + 5108585666, + 5108585676 + ], + "geometry": [ + { "lat": 40.8572999, "lon": -73.9649981 }, + { "lat": 40.8572491, "lon": -73.9651403 }, + { "lat": 40.8572197, "lon": -73.9651738 }, + { "lat": 40.8570348, "lon": -73.9652610 }, + { "lat": 40.8570001, "lon": -73.9651314 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525064821, + "bounds": { + "minlat": 40.8560920, + "minlon": -73.9673028, + "maxlat": 40.8561885, + "maxlon": -73.9670447 + }, + "nodes": [ + 5108595002, + 5108595018 + ], + "geometry": [ + { "lat": 40.8560920, "lon": -73.9670447 }, + { "lat": 40.8561885, "lon": -73.9673028 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525064822, + "bounds": { + "minlat": 40.8558790, + "minlon": -73.9677352, + "maxlat": 40.8562601, + "maxlon": -73.9674985 + }, + "nodes": [ + 5108595014, + 8514835042, + 8514835040, + 5108595003 + ], + "geometry": [ + { "lat": 40.8558790, "lon": -73.9677352 }, + { "lat": 40.8559413, "lon": -73.9676951 }, + { "lat": 40.8561869, "lon": -73.9675444 }, + { "lat": 40.8562601, "lon": -73.9674985 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525064823, + "bounds": { + "minlat": 40.8558072, + "minlon": -73.9679397, + "maxlat": 40.8559545, + "maxlon": -73.9675373 + }, + "nodes": [ + 5108595009, + 5108595014, + 5108595001 + ], + "geometry": [ + { "lat": 40.8559545, "lon": -73.9679397 }, + { "lat": 40.8558790, "lon": -73.9677352 }, + { "lat": 40.8558072, "lon": -73.9675373 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525064824, + "bounds": { + "minlat": 40.8558072, + "minlon": -73.9675373, + "maxlat": 40.8561885, + "maxlon": -73.9673028 + }, + "nodes": [ + 5108595001, + 5108595018 + ], + "geometry": [ + { "lat": 40.8558072, "lon": -73.9675373 }, + { "lat": 40.8561885, "lon": -73.9673028 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525064843, + "bounds": { + "minlat": 40.8555552, + "minlon": -73.9687132, + "maxlat": 40.8558306, + "maxlon": -73.9680531 + }, + "nodes": [ + 5108596244, + 5108596241, + 5108596247, + 5108596242, + 5108596243 + ], + "geometry": [ + { "lat": 40.8555552, "lon": -73.9687132 }, + { "lat": 40.8558199, "lon": -73.9685037 }, + { "lat": 40.8558306, "lon": -73.9684684 }, + { "lat": 40.8558301, "lon": -73.9684407 }, + { "lat": 40.8556840, "lon": -73.9680531 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525064844, + "bounds": { + "minlat": 40.8555843, + "minlon": -73.9687851, + "maxlat": 40.8558970, + "maxlon": -73.9684449 + }, + "nodes": [ + 5108596248, + 5108596246, + 11170628854, + 5108596245, + 5108596249 + ], + "geometry": [ + { "lat": 40.8555843, "lon": -73.9687851 }, + { "lat": 40.8558894, "lon": -73.9685287 }, + { "lat": 40.8558968, "lon": -73.9685059 }, + { "lat": 40.8558970, "lon": -73.9684818 }, + { "lat": 40.8558868, "lon": -73.9684449 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525064888, + "bounds": { + "minlat": 40.8564164, + "minlon": -73.9686499, + "maxlat": 40.8574373, + "maxlon": -73.9678818 + }, + "nodes": [ + 5108596013, + 5108596004, + 5108596008, + 5108596006, + 5108596016 + ], + "geometry": [ + { "lat": 40.8574373, "lon": -73.9682802 }, + { "lat": 40.8572100, "lon": -73.9678818 }, + { "lat": 40.8566953, "lon": -73.9683629 }, + { "lat": 40.8566547, "lon": -73.9684273 }, + { "lat": 40.8564164, "lon": -73.9686499 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525064890, + "bounds": { + "minlat": 40.8563362, + "minlon": -73.9685104, + "maxlat": 40.8572100, + "maxlon": -73.9677754 + }, + "nodes": [ + 5108596007, + 5108596014, + 5108596004 + ], + "geometry": [ + { "lat": 40.8563362, "lon": -73.9685104 }, + { "lat": 40.8571287, "lon": -73.9677754 }, + { "lat": 40.8572100, "lon": -73.9678818 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525064913, + "bounds": { + "minlat": 40.8575403, + "minlon": -73.9679102, + "maxlat": 40.8581532, + "maxlon": -73.9671041 + }, + "nodes": [ + 5108597590, + 5108596615, + 5108596611, + 5108596610, + 5108596613 + ], + "geometry": [ + { "lat": 40.8581532, "lon": -73.9675615 }, + { "lat": 40.8581014, "lon": -73.9674756 }, + { "lat": 40.8578797, "lon": -73.9671041 }, + { "lat": 40.8575403, "lon": -73.9674349 }, + { "lat": 40.8578074, "lon": -73.9679102 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525064914, + "bounds": { + "minlat": 40.8572263, + "minlon": -73.9681924, + "maxlat": 40.8577306, + "maxlon": -73.9674760 + }, + "nodes": [ + 2821779893, + 5108596612, + 5108596608, + 5108596614, + 5108596616, + 5108596609 + ], + "geometry": [ + { "lat": 40.8577306, "lon": -73.9679879 }, + { "lat": 40.8574495, "lon": -73.9674947 }, + { "lat": 40.8574160, "lon": -73.9674760 }, + { "lat": 40.8572370, "lon": -73.9676320 }, + { "lat": 40.8572263, "lon": -73.9676798 }, + { "lat": 40.8575254, "lon": -73.9681924 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525064972, + "bounds": { + "minlat": 40.8581188, + "minlon": -73.9685289, + "maxlat": 40.8584932, + "maxlon": -73.9675615 + }, + "nodes": [ + 5108597590, + 5108597596, + 5108598190, + 5108597592, + 5108597594, + 5108597591, + 5108597595 + ], + "geometry": [ + { "lat": 40.8581532, "lon": -73.9675615 }, + { "lat": 40.8584932, "lon": -73.9681666 }, + { "lat": 40.8584086, "lon": -73.9682638 }, + { "lat": 40.8583542, "lon": -73.9683262 }, + { "lat": 40.8583279, "lon": -73.9683463 }, + { "lat": 40.8582935, "lon": -73.9683632 }, + { "lat": 40.8581188, "lon": -73.9685289 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525064996, + "bounds": { + "minlat": 40.8577306, + "minlon": -73.9685071, + "maxlat": 40.8580185, + "maxlon": -73.9679879 + }, + "nodes": [ + 2821798592, + 2821798593, + 2821779893 + ], + "geometry": [ + { "lat": 40.8580185, "lon": -73.9685071 }, + { "lat": 40.8577533, "lon": -73.9680351 }, + { "lat": 40.8577306, "lon": -73.9679879 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525065285, + "bounds": { + "minlat": 40.8558580, + "minlon": -73.9705905, + "maxlat": 40.8564175, + "maxlon": -73.9700737 + }, + "nodes": [ + 4629849048, + 5108600092, + 5108600085 + ], + "geometry": [ + { "lat": 40.8564175, "lon": -73.9703366 }, + { "lat": 40.8561506, "lon": -73.9705905 }, + { "lat": 40.8558580, "lon": -73.9700737 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525065288, + "bounds": { + "minlat": 40.8560948, + "minlon": -73.9707554, + "maxlat": 40.8564512, + "maxlon": -73.9704020 + }, + "nodes": [ + 5108600091, + 5108600090 + ], + "geometry": [ + { "lat": 40.8564512, "lon": -73.9704020 }, + { "lat": 40.8560948, "lon": -73.9707554 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525065353, + "bounds": { + "minlat": 40.8550410, + "minlon": -73.9702698, + "maxlat": 40.8557139, + "maxlon": -73.9678990 + }, + "nodes": [ + 5108601653, + 5108601661, + 5108601659, + 5108601655, + 5108601656, + 5108601654, + 5108601658, + 5108601662, + 5108601657, + 5108601663, + 5108601660 + ], + "geometry": [ + { "lat": 40.8550410, "lon": -73.9678990 }, + { "lat": 40.8552042, "lon": -73.9681698 }, + { "lat": 40.8552655, "lon": -73.9683321 }, + { "lat": 40.8553148, "lon": -73.9684836 }, + { "lat": 40.8553600, "lon": -73.9686399 }, + { "lat": 40.8554051, "lon": -73.9687867 }, + { "lat": 40.8554527, "lon": -73.9689610 }, + { "lat": 40.8557094, "lon": -73.9697845 }, + { "lat": 40.8557139, "lon": -73.9698618 }, + { "lat": 40.8556952, "lon": -73.9701104 }, + { "lat": 40.8556995, "lon": -73.9702698 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 525065463, + "bounds": { + "minlat": 40.8540610, + "minlon": -73.9745327, + "maxlat": 40.8546240, + "maxlon": -73.9737340 + }, + "nodes": [ + 5108603147, + 5108603143, + 5108603144, + 5108603150, + 5108603134, + 5108603125, + 5108603155, + 5108603136, + 5108603154, + 5108603132, + 5108603016, + 4621211726 + ], + "geometry": [ + { "lat": 40.8540997, "lon": -73.9745327 }, + { "lat": 40.8540723, "lon": -73.9744742 }, + { "lat": 40.8540610, "lon": -73.9744234 }, + { "lat": 40.8540651, "lon": -73.9743550 }, + { "lat": 40.8540945, "lon": -73.9741779 }, + { "lat": 40.8541447, "lon": -73.9740286 }, + { "lat": 40.8542096, "lon": -73.9739374 }, + { "lat": 40.8542781, "lon": -73.9738816 }, + { "lat": 40.8543907, "lon": -73.9738400 }, + { "lat": 40.8545033, "lon": -73.9737984 }, + { "lat": 40.8545794, "lon": -73.9737595 }, + { "lat": 40.8546240, "lon": -73.9737340 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525065464, + "bounds": { + "minlat": 40.8548290, + "minlon": -73.9734842, + "maxlat": 40.8556750, + "maxlon": -73.9729093 + }, + "nodes": [ + 5108603133, + 5108603124, + 5108603015, + 5108603018, + 5108603137, + 5108603141, + 5108603019, + 5108603121, + 5108603149, + 5108603148, + 5108603139, + 5108603138, + 5108603123, + 5108603020, + 5108603128, + 5108603127, + 5108603156, + 5108603013 + ], + "geometry": [ + { "lat": 40.8556750, "lon": -73.9731253 }, + { "lat": 40.8556290, "lon": -73.9730397 }, + { "lat": 40.8556015, "lon": -73.9730045 }, + { "lat": 40.8555751, "lon": -73.9729885 }, + { "lat": 40.8555472, "lon": -73.9729809 }, + { "lat": 40.8554776, "lon": -73.9729423 }, + { "lat": 40.8554243, "lon": -73.9729186 }, + { "lat": 40.8553665, "lon": -73.9729119 }, + { "lat": 40.8553026, "lon": -73.9729093 }, + { "lat": 40.8551738, "lon": -73.9729441 }, + { "lat": 40.8551231, "lon": -73.9729723 }, + { "lat": 40.8550815, "lon": -73.9730299 }, + { "lat": 40.8549679, "lon": -73.9732807 }, + { "lat": 40.8549324, "lon": -73.9733719 }, + { "lat": 40.8549111, "lon": -73.9734189 }, + { "lat": 40.8548827, "lon": -73.9734591 }, + { "lat": 40.8548543, "lon": -73.9734779 }, + { "lat": 40.8548290, "lon": -73.9734842 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525065465, + "bounds": { + "minlat": 40.8547021, + "minlon": -73.9730045, + "maxlat": 40.8558524, + "maxlon": -73.9718484 + }, + "nodes": [ + 5108603015, + 5108603142, + 5108603014, + 5108602186, + 5108602183, + 5108603152, + 5108603145, + 5108603151, + 5108603135, + 5108603140, + 5108603122 + ], + "geometry": [ + { "lat": 40.8556015, "lon": -73.9730045 }, + { "lat": 40.8557525, "lon": -73.9728256 }, + { "lat": 40.8558524, "lon": -73.9726974 }, + { "lat": 40.8556179, "lon": -73.9723967 }, + { "lat": 40.8554279, "lon": -73.9721523 }, + { "lat": 40.8553883, "lon": -73.9721014 }, + { "lat": 40.8551748, "lon": -73.9718484 }, + { "lat": 40.8551225, "lon": -73.9719358 }, + { "lat": 40.8550660, "lon": -73.9719849 }, + { "lat": 40.8549516, "lon": -73.9720335 }, + { "lat": 40.8547021, "lon": -73.9722132 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525065466, + "bounds": { + "minlat": 40.8540997, + "minlon": -73.9745327, + "maxlat": 40.8547164, + "maxlon": -73.9738058 + }, + "nodes": [ + 4621211713, + 5108603146, + 5108603130, + 5108603147 + ], + "geometry": [ + { "lat": 40.8547164, "lon": -73.9738058 }, + { "lat": 40.8547133, "lon": -73.9738319 }, + { "lat": 40.8546920, "lon": -73.9738775 }, + { "lat": 40.8540997, "lon": -73.9745327 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525065467, + "bounds": { + "minlat": 40.8548697, + "minlon": -73.9736766, + "maxlat": 40.8555472, + "maxlon": -73.9729809 + }, + "nodes": [ + 5108603137, + 5108603153, + 5108603131, + 5108603129 + ], + "geometry": [ + { "lat": 40.8555472, "lon": -73.9729809 }, + { "lat": 40.8549658, "lon": -73.9735959 }, + { "lat": 40.8549334, "lon": -73.9736241 }, + { "lat": 40.8548697, "lon": -73.9736766 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525065499, + "bounds": { + "minlat": 40.8553270, + "minlon": -73.9725230, + "maxlat": 40.8556179, + "maxlon": -73.9721523 + }, + "nodes": [ + 5108602186, + 5108602182, + 5108602184, + 5108602179, + 5108602180, + 5108602187, + 5108602188, + 5108602181, + 5108602185, + 5108602190, + 5108602189, + 5108602183 + ], + "geometry": [ + { "lat": 40.8556179, "lon": -73.9723967 }, + { "lat": 40.8555552, "lon": -73.9724761 }, + { "lat": 40.8555237, "lon": -73.9725096 }, + { "lat": 40.8554984, "lon": -73.9725230 }, + { "lat": 40.8554497, "lon": -73.9725203 }, + { "lat": 40.8554101, "lon": -73.9724962 }, + { "lat": 40.8553655, "lon": -73.9724412 }, + { "lat": 40.8553361, "lon": -73.9723795 }, + { "lat": 40.8553270, "lon": -73.9723312 }, + { "lat": 40.8553311, "lon": -73.9722921 }, + { "lat": 40.8553434, "lon": -73.9722516 }, + { "lat": 40.8554279, "lon": -73.9721523 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525065501, + "bounds": { + "minlat": 40.8544481, + "minlon": -73.9735286, + "maxlat": 40.8546150, + "maxlon": -73.9732598 + }, + "nodes": [ + 4621211723, + 5108603351 + ], + "geometry": [ + { "lat": 40.8546150, "lon": -73.9735286 }, + { "lat": 40.8544481, "lon": -73.9732598 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525065522, + "bounds": { + "minlat": 40.8545098, + "minlon": -73.9734493, + "maxlat": 40.8546862, + "maxlon": -73.9731871 + }, + "nodes": [ + 5108603560, + 5108603559, + 5108603561 + ], + "geometry": [ + { "lat": 40.8545098, "lon": -73.9731871 }, + { "lat": 40.8546514, "lon": -73.9734256 }, + { "lat": 40.8546862, "lon": -73.9734493 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525065523, + "bounds": { + "minlat": 40.8543868, + "minlon": -73.9736689, + "maxlat": 40.8546002, + "maxlon": -73.9733099 + }, + "nodes": [ + 4621211725, + 5108603562 + ], + "geometry": [ + { "lat": 40.8546002, "lon": -73.9736689 }, + { "lat": 40.8543868, "lon": -73.9733099 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525065524, + "bounds": { + "minlat": 40.8534879, + "minlon": -73.9744493, + "maxlat": 40.8537602, + "maxlon": -73.9741667 + }, + "nodes": [ + 103245991, + 5108603758, + 5108602191 + ], + "geometry": [ + { "lat": 40.8534879, "lon": -73.9744493 }, + { "lat": 40.8536318, "lon": -73.9743051 }, + { "lat": 40.8537602, "lon": -73.9741667 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525065526, + "bounds": { + "minlat": 40.8533915, + "minlon": -73.9743051, + "maxlat": 40.8536318, + "maxlon": -73.9739406 + }, + "nodes": [ + 5108603758, + 5108603761 + ], + "geometry": [ + { "lat": 40.8536318, "lon": -73.9743051 }, + { "lat": 40.8533915, "lon": -73.9739406 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525065527, + "bounds": { + "minlat": 40.8504770, + "minlon": -73.9771890, + "maxlat": 40.8532076, + "maxlon": -73.9747071 + }, + "nodes": [ + 5108603759, + 6895010042, + 103214624, + 5108604567, + 7434604904, + 103245984, + 5449460423, + 103133482, + 7434604905, + 7434604906, + 5449460013, + 103243257, + 5449464506, + 7447365684, + 5449461779, + 103236431, + 5449461771, + 5449461781, + 103245978 + ], + "geometry": [ + { "lat": 40.8532076, "lon": -73.9747071 }, + { "lat": 40.8531975, "lon": -73.9747164 }, + { "lat": 40.8529340, "lon": -73.9749590 }, + { "lat": 40.8526294, "lon": -73.9752583 }, + { "lat": 40.8525859, "lon": -73.9753011 }, + { "lat": 40.8524140, "lon": -73.9754700 }, + { "lat": 40.8519242, "lon": -73.9759550 }, + { "lat": 40.8519050, "lon": -73.9759740 }, + { "lat": 40.8518342, "lon": -73.9760354 }, + { "lat": 40.8516603, "lon": -73.9761860 }, + { "lat": 40.8516064, "lon": -73.9762327 }, + { "lat": 40.8514169, "lon": -73.9763920 }, + { "lat": 40.8513043, "lon": -73.9764893 }, + { "lat": 40.8512208, "lon": -73.9765615 }, + { "lat": 40.8511286, "lon": -73.9766412 }, + { "lat": 40.8511080, "lon": -73.9766590 }, + { "lat": 40.8509067, "lon": -73.9768281 }, + { "lat": 40.8507177, "lon": -73.9769869 }, + { "lat": 40.8504770, "lon": -73.9771890 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "lanes": "2", + "name": "Anderson Avenue", + "oneway": "yes", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525065578, + "bounds": { + "minlat": 40.8509653, + "minlon": -73.9756380, + "maxlat": 40.8526294, + "maxlon": -73.9745524 + }, + "nodes": [ + 5108604566, + 5449461776, + 5449461782, + 7434604768, + 5108605282, + 5108604565, + 5449464623, + 5108604563, + 5449463785, + 5108604564, + 7434604686, + 5449463783, + 5449464626, + 5108604567 + ], + "geometry": [ + { "lat": 40.8509653, "lon": -73.9756380 }, + { "lat": 40.8512422, "lon": -73.9753492 }, + { "lat": 40.8514014, "lon": -73.9752134 }, + { "lat": 40.8514436, "lon": -73.9751698 }, + { "lat": 40.8519550, "lon": -73.9746416 }, + { "lat": 40.8520242, "lon": -73.9745846 }, + { "lat": 40.8520715, "lon": -73.9745644 }, + { "lat": 40.8520941, "lon": -73.9745547 }, + { "lat": 40.8521440, "lon": -73.9745524 }, + { "lat": 40.8521976, "lon": -73.9745789 }, + { "lat": 40.8522148, "lon": -73.9746060 }, + { "lat": 40.8522742, "lon": -73.9746995 }, + { "lat": 40.8523821, "lon": -73.9748692 }, + { "lat": 40.8526294, "lon": -73.9752583 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525065651, + "bounds": { + "minlat": 40.8514920, + "minlon": -73.9746416, + "maxlat": 40.8519550, + "maxlon": -73.9739150 + }, + "nodes": [ + 103154244, + 5108605283, + 7434604720, + 7434604716, + 5108605286, + 7434604717, + 5108605282 + ], + "geometry": [ + { "lat": 40.8514920, "lon": -73.9739150 }, + { "lat": 40.8515625, "lon": -73.9740197 }, + { "lat": 40.8516741, "lon": -73.9741791 }, + { "lat": 40.8517148, "lon": -73.9742372 }, + { "lat": 40.8517913, "lon": -73.9743464 }, + { "lat": 40.8518536, "lon": -73.9744587 }, + { "lat": 40.8519550, "lon": -73.9746416 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525065652, + "bounds": { + "minlat": 40.8505669, + "minlon": -73.9749885, + "maxlat": 40.8515625, + "maxlon": -73.9740197 + }, + "nodes": [ + 5108605283, + 5108605280, + 5108605285, + 5108605281, + 7434604749, + 5108605284 + ], + "geometry": [ + { "lat": 40.8515625, "lon": -73.9740197 }, + { "lat": 40.8514378, "lon": -73.9741457 }, + { "lat": 40.8511842, "lon": -73.9743590 }, + { "lat": 40.8507814, "lon": -73.9747774 }, + { "lat": 40.8507416, "lon": -73.9748165 }, + { "lat": 40.8505669, "lon": -73.9749885 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525065751, + "bounds": { + "minlat": 40.8545203, + "minlon": -73.9755150, + "maxlat": 40.8552955, + "maxlon": -73.9743231 + }, + "nodes": [ + 5108605925, + 7407669465, + 5108605924, + 5108605923, + 5108605922 + ], + "geometry": [ + { "lat": 40.8552955, "lon": -73.9755150 }, + { "lat": 40.8552635, "lon": -73.9754654 }, + { "lat": 40.8546706, "lon": -73.9745458 }, + { "lat": 40.8546432, "lon": -73.9745169 }, + { "lat": 40.8545203, "lon": -73.9743231 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525066129, + "bounds": { + "minlat": 40.8514023, + "minlon": -73.9832236, + "maxlat": 40.8519727, + "maxlon": -73.9826394 + }, + "nodes": [ + 4695808492, + 6805247972, + 103302688, + 5108609665, + 5108609664, + 5108609663 + ], + "geometry": [ + { "lat": 40.8517962, "lon": -73.9826394 }, + { "lat": 40.8518423, "lon": -73.9827384 }, + { "lat": 40.8519727, "lon": -73.9830183 }, + { "lat": 40.8516077, "lon": -73.9831991 }, + { "lat": 40.8515057, "lon": -73.9832236 }, + { "lat": 40.8514023, "lon": -73.9830104 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "8th", + "tiger:name_type": "St", + "tiger:zip_left": "07024", + "tiger:zip_left_1": "07024", + "tiger:zip_left_2": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525066420, + "bounds": { + "minlat": 40.8443240, + "minlon": -73.9821250, + "maxlat": 40.8451260, + "maxlon": -73.9807650 + }, + "nodes": [ + 103271065, + 7455134492, + 7455134495, + 103222809, + 12196478634, + 103271066 + ], + "geometry": [ + { "lat": 40.8443240, "lon": -73.9807650 }, + { "lat": 40.8445626, "lon": -73.9811697 }, + { "lat": 40.8446532, "lon": -73.9813232 }, + { "lat": 40.8447480, "lon": -73.9814840 }, + { "lat": 40.8449393, "lon": -73.9818084 }, + { "lat": 40.8451260, "lon": -73.9821250 } + ], + "tags": { + "highway": "residential", + "name": "Edsall Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edsall", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525066421, + "bounds": { + "minlat": 40.8443240, + "minlon": -73.9807650, + "maxlat": 40.8458640, + "maxlon": -73.9791093 + }, + "nodes": [ + 103271065, + 7455134489, + 7455134491, + 7455134485, + 103285401, + 5108604347, + 7460513513 + ], + "geometry": [ + { "lat": 40.8443240, "lon": -73.9807650 }, + { "lat": 40.8450373, "lon": -73.9800608 }, + { "lat": 40.8451772, "lon": -73.9799227 }, + { "lat": 40.8457675, "lon": -73.9793400 }, + { "lat": 40.8458556, "lon": -73.9792530 }, + { "lat": 40.8458640, "lon": -73.9791615 }, + { "lat": 40.8458459, "lon": -73.9791093 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "16th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "16th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525066545, + "bounds": { + "minlat": 40.8497139, + "minlon": -73.9736445, + "maxlat": 40.8500788, + "maxlon": -73.9732962 + }, + "nodes": [ + 5108614572, + 5108614574 + ], + "geometry": [ + { "lat": 40.8497139, "lon": -73.9736445 }, + { "lat": 40.8500788, "lon": -73.9732962 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525066546, + "bounds": { + "minlat": 40.8499324, + "minlon": -73.9738148, + "maxlat": 40.8503266, + "maxlon": -73.9730541 + }, + "nodes": [ + 7434605014, + 5108614571, + 5108614574, + 5108614573 + ], + "geometry": [ + { "lat": 40.8502208, "lon": -73.9738148 }, + { "lat": 40.8503266, "lon": -73.9737120 }, + { "lat": 40.8500788, "lon": -73.9732962 }, + { "lat": 40.8499324, "lon": -73.9730541 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525066595, + "bounds": { + "minlat": 40.8493414, + "minlon": -73.9741584, + "maxlat": 40.8495770, + "maxlon": -73.9737362 + }, + "nodes": [ + 5108615743, + 5108615742 + ], + "geometry": [ + { "lat": 40.8495770, "lon": -73.9741584 }, + { "lat": 40.8493414, "lon": -73.9737362 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525066656, + "bounds": { + "minlat": 40.8490644, + "minlon": -73.9773847, + "maxlat": 40.8502307, + "maxlon": -73.9752338 + }, + "nodes": [ + 103171558, + 7434604829, + 7434604828, + 7447930966, + 103171560, + 103171562 + ], + "geometry": [ + { "lat": 40.8490644, "lon": -73.9752338 }, + { "lat": 40.8492861, "lon": -73.9756501 }, + { "lat": 40.8493770, "lon": -73.9758211 }, + { "lat": 40.8494298, "lon": -73.9759181 }, + { "lat": 40.8495726, "lon": -73.9761809 }, + { "lat": 40.8502307, "lon": -73.9773847 } + ], + "tags": { + "highway": "residential", + "name": "Tom Hunter Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Tom Hunter", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525067080, + "bounds": { + "minlat": 40.8378960, + "minlon": -73.9794960, + "maxlat": 40.8379509, + "maxlon": -73.9788581 + }, + "nodes": [ + 5108622211, + 5108622207, + 5108622219, + 5108622218, + 5108622217, + 5108622209, + 103174004 + ], + "geometry": [ + { "lat": 40.8379214, "lon": -73.9794960 }, + { "lat": 40.8379075, "lon": -73.9793984 }, + { "lat": 40.8378969, "lon": -73.9793023 }, + { "lat": 40.8378960, "lon": -73.9791812 }, + { "lat": 40.8379015, "lon": -73.9790631 }, + { "lat": 40.8379189, "lon": -73.9789702 }, + { "lat": 40.8379509, "lon": -73.9788581 } + ], + "tags": { + "highway": "primary", + "name": "Central Boulevard", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 525067081, + "bounds": { + "minlat": 40.8379214, + "minlon": -73.9798846, + "maxlat": 40.8380263, + "maxlon": -73.9794960 + }, + "nodes": [ + 5108622208, + 5108622202, + 5108622204, + 5108622211 + ], + "geometry": [ + { "lat": 40.8380263, "lon": -73.9798846 }, + { "lat": 40.8379865, "lon": -73.9797428 }, + { "lat": 40.8379539, "lon": -73.9796130 }, + { "lat": 40.8379214, "lon": -73.9794960 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Central Boulevard", + "oneway": "yes", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525067082, + "bounds": { + "minlat": 40.8380263, + "minlon": -73.9800669, + "maxlat": 40.8381315, + "maxlon": -73.9798846 + }, + "nodes": [ + 9603250061, + 5108622208 + ], + "geometry": [ + { "lat": 40.8381315, "lon": -73.9800669 }, + { "lat": 40.8380263, "lon": -73.9798846 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "1", + "name": "Central Boulevard", + "oneway": "yes", + "ref": "NJ 5", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525067083, + "bounds": { + "minlat": 40.8379509, + "minlon": -73.9796235, + "maxlat": 40.8380151, + "maxlon": -73.9788581 + }, + "nodes": [ + 103174004, + 5108622203, + 5108622216, + 5108622213, + 5108622212 + ], + "geometry": [ + { "lat": 40.8379509, "lon": -73.9788581 }, + { "lat": 40.8379527, "lon": -73.9791481 }, + { "lat": 40.8379690, "lon": -73.9793596 }, + { "lat": 40.8379937, "lon": -73.9795161 }, + { "lat": 40.8380151, "lon": -73.9796235 } + ], + "tags": { + "highway": "primary", + "name": "Central Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 525067084, + "bounds": { + "minlat": 40.8383260, + "minlon": -73.9812412, + "maxlat": 40.8387905, + "maxlon": -73.9803776 + }, + "nodes": [ + 103174031, + 13525419794, + 6964853606, + 6964853605, + 7469386208, + 7469386207, + 4205772575 + ], + "geometry": [ + { "lat": 40.8383260, "lon": -73.9803776 }, + { "lat": 40.8383717, "lon": -73.9804580 }, + { "lat": 40.8385350, "lon": -73.9807452 }, + { "lat": 40.8386738, "lon": -73.9810098 }, + { "lat": 40.8387570, "lon": -73.9811748 }, + { "lat": 40.8387751, "lon": -73.9812108 }, + { "lat": 40.8387905, "lon": -73.9812412 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Central Boulevard", + "ref": "NJ 5", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525067085, + "bounds": { + "minlat": 40.8376405, + "minlon": -73.9801107, + "maxlat": 40.8382363, + "maxlon": -73.9792294 + }, + "nodes": [ + 103174026, + 6964853609, + 5108622199, + 5108622214, + 5108622211, + 5108622205, + 5108622212, + 5108622210, + 5108622206, + 5108622200, + 13523728893, + 5108622201 + ], + "geometry": [ + { "lat": 40.8376405, "lon": -73.9792294 }, + { "lat": 40.8376694, "lon": -73.9792305 }, + { "lat": 40.8376990, "lon": -73.9792500 }, + { "lat": 40.8378548, "lon": -73.9794158 }, + { "lat": 40.8379214, "lon": -73.9794960 }, + { "lat": 40.8379497, "lon": -73.9795323 }, + { "lat": 40.8380151, "lon": -73.9796235 }, + { "lat": 40.8380557, "lon": -73.9797390 }, + { "lat": 40.8380993, "lon": -73.9798624 }, + { "lat": 40.8381607, "lon": -73.9799688 }, + { "lat": 40.8382154, "lon": -73.9800715 }, + { "lat": 40.8382363, "lon": -73.9801107 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Central Boulevard", + "oneway": "yes", + "ref": "NJ 5", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525067210, + "bounds": { + "minlat": 40.8422495, + "minlon": -73.9724976, + "maxlat": 40.8424364, + "maxlon": -73.9722755 + }, + "nodes": [ + 5108623164, + 5108623169, + 5108623154, + 5108623161, + 5108623172, + 5108623160 + ], + "geometry": [ + { "lat": 40.8422495, "lon": -73.9722803 }, + { "lat": 40.8423166, "lon": -73.9722755 }, + { "lat": 40.8423601, "lon": -73.9722881 }, + { "lat": 40.8423860, "lon": -73.9723151 }, + { "lat": 40.8424084, "lon": -73.9723753 }, + { "lat": 40.8424364, "lon": -73.9724976 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525067211, + "bounds": { + "minlat": 40.8422287, + "minlon": -73.9721457, + "maxlat": 40.8424189, + "maxlon": -73.9720703 + }, + "nodes": [ + 103236526, + 5108626214, + 5108623153 + ], + "geometry": [ + { "lat": 40.8424189, "lon": -73.9720703 }, + { "lat": 40.8422382, "lon": -73.9721416 }, + { "lat": 40.8422287, "lon": -73.9721457 } + ], + "tags": { + "highway": "service", + "note": "FIXME", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Diana", + "tiger:name_type": "Walk", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 525067317, + "bounds": { + "minlat": 40.8413719, + "minlon": -73.9726129, + "maxlat": 40.8422181, + "maxlon": -73.9722722 + }, + "nodes": [ + 5108624052, + 5108624054, + 5108624053, + 5108624051 + ], + "geometry": [ + { "lat": 40.8422181, "lon": -73.9722722 }, + { "lat": 40.8418790, "lon": -73.9724087 }, + { "lat": 40.8417215, "lon": -73.9724721 }, + { "lat": 40.8413719, "lon": -73.9726129 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525067318, + "bounds": { + "minlat": 40.8417215, + "minlon": -73.9727544, + "maxlat": 40.8417908, + "maxlon": -73.9724721 + }, + "nodes": [ + 5108624050, + 5108624053 + ], + "geometry": [ + { "lat": 40.8417908, "lon": -73.9727544 }, + { "lat": 40.8417215, "lon": -73.9724721 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525067319, + "bounds": { + "minlat": 40.8418790, + "minlon": -73.9726926, + "maxlat": 40.8419479, + "maxlon": -73.9724087 + }, + "nodes": [ + 5108624054, + 103202455 + ], + "geometry": [ + { "lat": 40.8418790, "lon": -73.9724087 }, + { "lat": 40.8419479, "lon": -73.9726926 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525067491, + "bounds": { + "minlat": 40.8433985, + "minlon": -73.9719951, + "maxlat": 40.8435454, + "maxlon": -73.9718238 + }, + "nodes": [ + 5108626193, + 5108626207, + 5108632336, + 5108632330, + 5108632331 + ], + "geometry": [ + { "lat": 40.8435454, "lon": -73.9719951 }, + { "lat": 40.8435173, "lon": -73.9719043 }, + { "lat": 40.8434908, "lon": -73.9718560 }, + { "lat": 40.8434512, "lon": -73.9718238 }, + { "lat": 40.8433985, "lon": -73.9718281 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525067492, + "bounds": { + "minlat": 40.8430474, + "minlon": -73.9722328, + "maxlat": 40.8431121, + "maxlon": -73.9719373 + }, + "nodes": [ + 5108632325, + 5108626194 + ], + "geometry": [ + { "lat": 40.8430474, "lon": -73.9719373 }, + { "lat": 40.8431121, "lon": -73.9722328 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525067493, + "bounds": { + "minlat": 40.8425397, + "minlon": -73.9721395, + "maxlat": 40.8433878, + "maxlon": -73.9718149 + }, + "nodes": [ + 5108626211, + 5108632325, + 5108632337, + 5108632323 + ], + "geometry": [ + { "lat": 40.8433878, "lon": -73.9718149 }, + { "lat": 40.8430474, "lon": -73.9719373 }, + { "lat": 40.8428847, "lon": -73.9720029 }, + { "lat": 40.8425397, "lon": -73.9721395 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525067494, + "bounds": { + "minlat": 40.8433728, + "minlon": -73.9718187, + "maxlat": 40.8436118, + "maxlon": -73.9717049 + }, + "nodes": [ + 5108626206, + 5108626195, + 5108626197, + 5108632345, + 5108626203, + 5108626209, + 5449338399 + ], + "geometry": [ + { "lat": 40.8433728, "lon": -73.9717137 }, + { "lat": 40.8434193, "lon": -73.9717049 }, + { "lat": 40.8434660, "lon": -73.9717090 }, + { "lat": 40.8435268, "lon": -73.9717264 }, + { "lat": 40.8435664, "lon": -73.9717519 }, + { "lat": 40.8435963, "lon": -73.9717905 }, + { "lat": 40.8436118, "lon": -73.9718187 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525067495, + "bounds": { + "minlat": 40.8428847, + "minlon": -73.9722982, + "maxlat": 40.8429522, + "maxlon": -73.9720029 + }, + "nodes": [ + 5108632341, + 5108632337 + ], + "geometry": [ + { "lat": 40.8429522, "lon": -73.9722982 }, + { "lat": 40.8428847, "lon": -73.9720029 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525067671, + "bounds": { + "minlat": 40.8412664, + "minlon": -73.9743214, + "maxlat": 40.8416301, + "maxlon": -73.9734438 + }, + "nodes": [ + 5108635488, + 5108635485, + 5108635512, + 5108635548, + 5108635530, + 5108635547, + 5108635535, + 5108635523, + 5108635486, + 5108635483, + 5108635517 + ], + "geometry": [ + { "lat": 40.8412715, "lon": -73.9743214 }, + { "lat": 40.8412664, "lon": -73.9742235 }, + { "lat": 40.8412745, "lon": -73.9741390 }, + { "lat": 40.8413120, "lon": -73.9740385 }, + { "lat": 40.8413592, "lon": -73.9739683 }, + { "lat": 40.8414581, "lon": -73.9738936 }, + { "lat": 40.8416301, "lon": -73.9737792 }, + { "lat": 40.8415718, "lon": -73.9736469 }, + { "lat": 40.8415353, "lon": -73.9735838 }, + { "lat": 40.8414795, "lon": -73.9735248 }, + { "lat": 40.8413696, "lon": -73.9734438 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525067673, + "bounds": { + "minlat": 40.8411807, + "minlon": -73.9733951, + "maxlat": 40.8413907, + "maxlon": -73.9733259 + }, + "nodes": [ + 5108635480, + 5108635542, + 5108635498, + 5108635511, + 5108635518, + 5108635538 + ], + "geometry": [ + { "lat": 40.8413907, "lon": -73.9733951 }, + { "lat": 40.8413486, "lon": -73.9733599 }, + { "lat": 40.8413075, "lon": -73.9733353 }, + { "lat": 40.8412684, "lon": -73.9733263 }, + { "lat": 40.8412263, "lon": -73.9733259 }, + { "lat": 40.8411807, "lon": -73.9733393 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525067674, + "bounds": { + "minlat": 40.8398039, + "minlon": -73.9737765, + "maxlat": 40.8411021, + "maxlon": -73.9732727 + }, + "nodes": [ + 5108643230, + 5108635552, + 5108643227, + 5108635554, + 5108635502, + 5108635534 + ], + "geometry": [ + { "lat": 40.8411021, "lon": -73.9734203 }, + { "lat": 40.8410685, "lon": -73.9732727 }, + { "lat": 40.8403447, "lon": -73.9735610 }, + { "lat": 40.8401204, "lon": -73.9736504 }, + { "lat": 40.8399689, "lon": -73.9737107 }, + { "lat": 40.8398039, "lon": -73.9737765 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525067675, + "bounds": { + "minlat": 40.8415870, + "minlon": -73.9730112, + "maxlat": 40.8429506, + "maxlon": -73.9725203 + }, + "nodes": [ + 5108635519, + 5108635506, + 5108635499, + 5108635490, + 5108635532 + ], + "geometry": [ + { "lat": 40.8429506, "lon": -73.9725203 }, + { "lat": 40.8419232, "lon": -73.9729308 }, + { "lat": 40.8417275, "lon": -73.9730067 }, + { "lat": 40.8416874, "lon": -73.9730112 }, + { "lat": 40.8415870, "lon": -73.9729430 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525067677, + "bounds": { + "minlat": 40.8399312, + "minlon": -73.9741615, + "maxlat": 40.8402209, + "maxlon": -73.9734671 + }, + "nodes": [ + 5108635536, + 5108635502, + 5108635525, + 5108635487, + 5108635554, + 5108635526, + 5108635494 + ], + "geometry": [ + { "lat": 40.8400668, "lon": -73.9741615 }, + { "lat": 40.8399689, "lon": -73.9737107 }, + { "lat": 40.8399312, "lon": -73.9735342 }, + { "lat": 40.8400783, "lon": -73.9734671 }, + { "lat": 40.8401204, "lon": -73.9736504 }, + { "lat": 40.8402112, "lon": -73.9740452 }, + { "lat": 40.8402209, "lon": -73.9741335 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525067678, + "bounds": { + "minlat": 40.8412867, + "minlon": -73.9730112, + "maxlat": 40.8413181, + "maxlon": -73.9724814 + }, + "nodes": [ + 5108635556, + 5108635539, + 5108635500, + 5108635546, + 5108635505, + 5108635503 + ], + "geometry": [ + { "lat": 40.8413029, "lon": -73.9730112 }, + { "lat": 40.8412921, "lon": -73.9729480 }, + { "lat": 40.8412867, "lon": -73.9728368 }, + { "lat": 40.8412923, "lon": -73.9726902 }, + { "lat": 40.8413181, "lon": -73.9725619 }, + { "lat": 40.8413181, "lon": -73.9724814 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525067679, + "bounds": { + "minlat": 40.8396004, + "minlon": -73.9740045, + "maxlat": 40.8398450, + "maxlon": -73.9736115 + }, + "nodes": [ + 5108635534, + 5108635515, + 5108635544, + 5108635492, + 5108635533, + 5108635534 + ], + "geometry": [ + { "lat": 40.8398039, "lon": -73.9737765 }, + { "lat": 40.8398450, "lon": -73.9739432 }, + { "lat": 40.8396801, "lon": -73.9740045 }, + { "lat": 40.8396004, "lon": -73.9736790 }, + { "lat": 40.8397643, "lon": -73.9736115 }, + { "lat": 40.8398039, "lon": -73.9737765 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525067680, + "bounds": { + "minlat": 40.8411528, + "minlon": -73.9732150, + "maxlat": 40.8415219, + "maxlon": -73.9730094 + }, + "nodes": [ + 5108635550, + 5108635555, + 5108635553, + 5108635556, + 5108635541, + 5108635540, + 5108635497 + ], + "geometry": [ + { "lat": 40.8415219, "lon": -73.9730828 }, + { "lat": 40.8414835, "lon": -73.9730541 }, + { "lat": 40.8413623, "lon": -73.9730094 }, + { "lat": 40.8413029, "lon": -73.9730112 }, + { "lat": 40.8412248, "lon": -73.9731010 }, + { "lat": 40.8411731, "lon": -73.9731895 }, + { "lat": 40.8411528, "lon": -73.9732150 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525067681, + "bounds": { + "minlat": 40.8414567, + "minlon": -73.9733473, + "maxlat": 40.8422982, + "maxlon": -73.9731713 + }, + "nodes": [ + 5108635549, + 5108635504, + 5449354156, + 5108635524, + 5108635509, + 5108635527, + 5108635531, + 5108635528, + 5108635529, + 5108635520 + ], + "geometry": [ + { "lat": 40.8422982, "lon": -73.9732003 }, + { "lat": 40.8421709, "lon": -73.9731748 }, + { "lat": 40.8421215, "lon": -73.9731713 }, + { "lat": 40.8420476, "lon": -73.9731909 }, + { "lat": 40.8419894, "lon": -73.9732137 }, + { "lat": 40.8417047, "lon": -73.9733277 }, + { "lat": 40.8416530, "lon": -73.9733448 }, + { "lat": 40.8416206, "lon": -73.9733473 }, + { "lat": 40.8415860, "lon": -73.9733326 }, + { "lat": 40.8414567, "lon": -73.9732380 } + ], + "tags": { + "covered": "no", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525067727, + "bounds": { + "minlat": 40.8387095, + "minlon": -73.9753139, + "maxlat": 40.8395228, + "maxlon": -73.9748024 + }, + "nodes": [ + 5108635199, + 5108627373, + 5108627370, + 5108627363, + 5108627376, + 5108635191, + 5108635192, + 5108635186, + 5108635187, + 5108635183, + 5108635193 + ], + "geometry": [ + { "lat": 40.8394325, "lon": -73.9748024 }, + { "lat": 40.8395228, "lon": -73.9752034 }, + { "lat": 40.8394726, "lon": -73.9752455 }, + { "lat": 40.8393681, "lon": -73.9753139 }, + { "lat": 40.8392742, "lon": -73.9752973 }, + { "lat": 40.8391068, "lon": -73.9752082 }, + { "lat": 40.8388983, "lon": -73.9751006 }, + { "lat": 40.8388141, "lon": -73.9750631 }, + { "lat": 40.8387806, "lon": -73.9750403 }, + { "lat": 40.8387502, "lon": -73.9749906 }, + { "lat": 40.8387095, "lon": -73.9748499 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525067729, + "bounds": { + "minlat": 40.8380359, + "minlon": -73.9747981, + "maxlat": 40.8383835, + "maxlon": -73.9744314 + }, + "nodes": [ + 5108635189, + 103202497, + 5108635198, + 5108644238, + 5108635202, + 5108635209, + 5108650519, + 5108635217, + 5108635214, + 5108635200, + 5108635196, + 5108635216, + 5108635213, + 5108644815, + 5108635218, + 5108644817, + 5108635188, + 5108635185, + 5108635206, + 5108635208, + 5108635215, + 5108635189 + ], + "geometry": [ + { "lat": 40.8383835, "lon": -73.9747981 }, + { "lat": 40.8382008, "lon": -73.9747167 }, + { "lat": 40.8381348, "lon": -73.9746871 }, + { "lat": 40.8381175, "lon": -73.9746791 }, + { "lat": 40.8380775, "lon": -73.9746607 }, + { "lat": 40.8380561, "lon": -73.9746407 }, + { "lat": 40.8380424, "lon": -73.9746124 }, + { "lat": 40.8380359, "lon": -73.9745749 }, + { "lat": 40.8380369, "lon": -73.9745347 }, + { "lat": 40.8380430, "lon": -73.9744877 }, + { "lat": 40.8380663, "lon": -73.9744515 }, + { "lat": 40.8381110, "lon": -73.9744314 }, + { "lat": 40.8381556, "lon": -73.9744341 }, + { "lat": 40.8381845, "lon": -73.9744486 }, + { "lat": 40.8381947, "lon": -73.9744537 }, + { "lat": 40.8382120, "lon": -73.9744765 }, + { "lat": 40.8382258, "lon": -73.9745028 }, + { "lat": 40.8382312, "lon": -73.9745436 }, + { "lat": 40.8382521, "lon": -73.9746053 }, + { "lat": 40.8382764, "lon": -73.9746594 }, + { "lat": 40.8383182, "lon": -73.9747206 }, + { "lat": 40.8383835, "lon": -73.9747981 } + ], + "tags": { + "highway": "residential", + "name": "Horizon Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Horizon", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 525067864, + "bounds": { + "minlat": 40.8402349, + "minlon": -73.9744522, + "maxlat": 40.8403050, + "maxlon": -73.9743127 + }, + "nodes": [ + 5108627375, + 5108627378 + ], + "geometry": [ + { "lat": 40.8403050, "lon": -73.9744522 }, + { "lat": 40.8402349, "lon": -73.9743127 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525067866, + "bounds": { + "minlat": 40.8396243, + "minlon": -73.9750197, + "maxlat": 40.8404699, + "maxlon": -73.9743147 + }, + "nodes": [ + 5108627371, + 5108627375, + 5108627372 + ], + "geometry": [ + { "lat": 40.8404699, "lon": -73.9743147 }, + { "lat": 40.8403050, "lon": -73.9744522 }, + { "lat": 40.8396243, "lon": -73.9750197 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525068791, + "bounds": { + "minlat": 40.8393483, + "minlon": -73.9744110, + "maxlat": 40.8398069, + "maxlon": -73.9731300 + }, + "nodes": [ + 5108643245, + 5108643239, + 5108643222, + 10699400089, + 10699400091, + 5108643241, + 5108643234, + 10699400090, + 10699400088, + 5108643239 + ], + "geometry": [ + { "lat": 40.8395996, "lon": -73.9744110 }, + { "lat": 40.8394151, "lon": -73.9735811 }, + { "lat": 40.8393483, "lon": -73.9732937 }, + { "lat": 40.8394959, "lon": -73.9732338 }, + { "lat": 40.8396432, "lon": -73.9731707 }, + { "lat": 40.8397408, "lon": -73.9731300 }, + { "lat": 40.8398069, "lon": -73.9734171 }, + { "lat": 40.8397116, "lon": -73.9734570 }, + { "lat": 40.8395639, "lon": -73.9735188 }, + { "lat": 40.8394151, "lon": -73.9735811 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525068792, + "bounds": { + "minlat": 40.8403091, + "minlon": -73.9737165, + "maxlat": 40.8403837, + "maxlon": -73.9734074 + }, + "nodes": [ + 5108643225, + 5108643227, + 5108643224 + ], + "geometry": [ + { "lat": 40.8403837, "lon": -73.9737165 }, + { "lat": 40.8403447, "lon": -73.9735610 }, + { "lat": 40.8403091, "lon": -73.9734074 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525068793, + "bounds": { + "minlat": 40.8402467, + "minlon": -73.9737729, + "maxlat": 40.8411021, + "maxlon": -73.9734203 + }, + "nodes": [ + 5108643230, + 5108643225, + 5108643242 + ], + "geometry": [ + { "lat": 40.8411021, "lon": -73.9734203 }, + { "lat": 40.8403837, "lon": -73.9737165 }, + { "lat": 40.8402467, "lon": -73.9737729 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525068794, + "bounds": { + "minlat": 40.8401798, + "minlon": -73.9734604, + "maxlat": 40.8405049, + "maxlon": -73.9733272 + }, + "nodes": [ + 5108643226, + 5108643224, + 5108643957, + 5108643243 + ], + "geometry": [ + { "lat": 40.8401798, "lon": -73.9734604 }, + { "lat": 40.8403091, "lon": -73.9734074 }, + { "lat": 40.8404292, "lon": -73.9733582 }, + { "lat": 40.8405049, "lon": -73.9733272 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525068801, + "bounds": { + "minlat": 40.8404241, + "minlon": -73.9741366, + "maxlat": 40.8404375, + "maxlon": -73.9739298 + }, + "nodes": [ + 5108643184, + 5108643182 + ], + "geometry": [ + { "lat": 40.8404375, "lon": -73.9739298 }, + { "lat": 40.8404241, "lon": -73.9741366 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525068802, + "bounds": { + "minlat": 40.8404375, + "minlon": -73.9739298, + "maxlat": 40.8410249, + "maxlon": -73.9737005 + }, + "nodes": [ + 5108643181, + 5108643184 + ], + "geometry": [ + { "lat": 40.8410249, "lon": -73.9737005 }, + { "lat": 40.8404375, "lon": -73.9739298 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525068938, + "bounds": { + "minlat": 40.8380663, + "minlon": -73.9739714, + "maxlat": 40.8381851, + "maxlon": -73.9739081 + }, + "nodes": [ + 5108644819, + 5108644831, + 5108644816 + ], + "geometry": [ + { "lat": 40.8380663, "lon": -73.9739714 }, + { "lat": 40.8380937, "lon": -73.9739513 }, + { "lat": 40.8381851, "lon": -73.9739081 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525068939, + "bounds": { + "minlat": 40.8382120, + "minlon": -73.9748561, + "maxlat": 40.8385943, + "maxlon": -73.9743657 + }, + "nodes": [ + 5108644830, + 5108644828, + 5108644835, + 5108644817 + ], + "geometry": [ + { "lat": 40.8385943, "lon": -73.9748561 }, + { "lat": 40.8384915, "lon": -73.9743657 }, + { "lat": 40.8382469, "lon": -73.9744555 }, + { "lat": 40.8382120, "lon": -73.9744765 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525068940, + "bounds": { + "minlat": 40.8375834, + "minlon": -73.9743134, + "maxlat": 40.8378715, + "maxlon": -73.9740152 + }, + "nodes": [ + 5108644838, + 5108644834, + 5108644833, + 5108644825, + 5108644826 + ], + "geometry": [ + { "lat": 40.8375834, "lon": -73.9740948 }, + { "lat": 40.8378132, "lon": -73.9740152 }, + { "lat": 40.8378310, "lon": -73.9740478 }, + { "lat": 40.8378715, "lon": -73.9742343 }, + { "lat": 40.8376656, "lon": -73.9743134 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525068941, + "bounds": { + "minlat": 40.8379426, + "minlon": -73.9744877, + "maxlat": 40.8381845, + "maxlon": -73.9739602 + }, + "nodes": [ + 5108635200, + 5108644832, + 5108644821, + 5108644818, + 5108644823, + 5108644822, + 5108644819, + 5108644837, + 5108644815 + ], + "geometry": [ + { "lat": 40.8380430, "lon": -73.9744877 }, + { "lat": 40.8379436, "lon": -73.9740693 }, + { "lat": 40.8379426, "lon": -73.9740170 }, + { "lat": 40.8379628, "lon": -73.9739835 }, + { "lat": 40.8380009, "lon": -73.9739615 }, + { "lat": 40.8380557, "lon": -73.9739602 }, + { "lat": 40.8380663, "lon": -73.9739714 }, + { "lat": 40.8380832, "lon": -73.9739892 }, + { "lat": 40.8381845, "lon": -73.9744486 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525068942, + "bounds": { + "minlat": 40.8381566, + "minlon": -73.9739432, + "maxlat": 40.8383504, + "maxlon": -73.9737139 + }, + "nodes": [ + 5108644824, + 5108644827, + 5108644820, + 5108644816, + 5108644829 + ], + "geometry": [ + { "lat": 40.8383109, "lon": -73.9737139 }, + { "lat": 40.8383504, "lon": -73.9738829 }, + { "lat": 40.8381932, "lon": -73.9739432 }, + { "lat": 40.8381851, "lon": -73.9739081 }, + { "lat": 40.8381566, "lon": -73.9737837 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525068943, + "bounds": { + "minlat": 40.8378310, + "minlon": -73.9740478, + "maxlat": 40.8379426, + "maxlon": -73.9740170 + }, + "nodes": [ + 5108644821, + 5108644836, + 5108644833 + ], + "geometry": [ + { "lat": 40.8379426, "lon": -73.9740170 }, + { "lat": 40.8379070, "lon": -73.9740224 }, + { "lat": 40.8378310, "lon": -73.9740478 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525068949, + "bounds": { + "minlat": 40.8381008, + "minlon": -73.9750765, + "maxlat": 40.8386384, + "maxlon": -73.9746791 + }, + "nodes": [ + 5108644238, + 5108644236, + 5108644239, + 5108644237, + 5108644241, + 5108644235, + 5108644240, + 5108644242, + 5108644243, + 5108644244, + 103202493 + ], + "geometry": [ + { "lat": 40.8381175, "lon": -73.9746791 }, + { "lat": 40.8381049, "lon": -73.9747452 }, + { "lat": 40.8381008, "lon": -73.9747989 }, + { "lat": 40.8381069, "lon": -73.9748378 }, + { "lat": 40.8381252, "lon": -73.9748713 }, + { "lat": 40.8385716, "lon": -73.9750765 }, + { "lat": 40.8385939, "lon": -73.9750631 }, + { "lat": 40.8386152, "lon": -73.9750175 }, + { "lat": 40.8386305, "lon": -73.9749678 }, + { "lat": 40.8386366, "lon": -73.9749115 }, + { "lat": 40.8386384, "lon": -73.9748604 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525068980, + "bounds": { + "minlat": 40.8385706, + "minlon": -73.9745239, + "maxlat": 40.8388309, + "maxlon": -73.9742329 + }, + "nodes": [ + 5108645901, + 5108645905, + 5108645903, + 5108645910, + 5108645906 + ], + "geometry": [ + { "lat": 40.8386142, "lon": -73.9745239 }, + { "lat": 40.8388309, "lon": -73.9744430 }, + { "lat": 40.8387996, "lon": -73.9743005 }, + { "lat": 40.8387847, "lon": -73.9742329 }, + { "lat": 40.8385706, "lon": -73.9743134 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525068981, + "bounds": { + "minlat": 40.8389237, + "minlon": -73.9747297, + "maxlat": 40.8391740, + "maxlon": -73.9741283 + }, + "nodes": [ + 5108645900, + 5108645904, + 5108645898, + 5108645908, + 5108645896, + 5108645913, + 5108645899, + 5108645907 + ], + "geometry": [ + { "lat": 40.8390107, "lon": -73.9747297 }, + { "lat": 40.8389241, "lon": -73.9742487 }, + { "lat": 40.8389237, "lon": -73.9741940 }, + { "lat": 40.8389527, "lon": -73.9741445 }, + { "lat": 40.8390008, "lon": -73.9741283 }, + { "lat": 40.8390358, "lon": -73.9741439 }, + { "lat": 40.8390679, "lon": -73.9741908 }, + { "lat": 40.8391740, "lon": -73.9746623 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525068982, + "bounds": { + "minlat": 40.8391601, + "minlon": -73.9742879, + "maxlat": 40.8394239, + "maxlon": -73.9739924 + }, + "nodes": [ + 5108645902, + 5108645911, + 5108645909, + 5108645912, + 5108645897 + ], + "geometry": [ + { "lat": 40.8394239, "lon": -73.9742048 }, + { "lat": 40.8392047, "lon": -73.9742879 }, + { "lat": 40.8391736, "lon": -73.9741467 }, + { "lat": 40.8391601, "lon": -73.9740854 }, + { "lat": 40.8393777, "lon": -73.9739924 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525068983, + "bounds": { + "minlat": 40.8387996, + "minlon": -73.9743005, + "maxlat": 40.8389241, + "maxlon": -73.9742487 + }, + "nodes": [ + 5108645904, + 5108645903 + ], + "geometry": [ + { "lat": 40.8389241, "lon": -73.9742487 }, + { "lat": 40.8387996, "lon": -73.9743005 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525068984, + "bounds": { + "minlat": 40.8390679, + "minlon": -73.9741908, + "maxlat": 40.8391736, + "maxlon": -73.9741467 + }, + "nodes": [ + 5108645909, + 5108645899 + ], + "geometry": [ + { "lat": 40.8391736, "lon": -73.9741467 }, + { "lat": 40.8390679, "lon": -73.9741908 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525068985, + "bounds": { + "minlat": 40.8382403, + "minlon": -73.9743657, + "maxlat": 40.8384915, + "maxlon": -73.9741377 + }, + "nodes": [ + 5108644828, + 5108644845, + 5108644846 + ], + "geometry": [ + { "lat": 40.8384915, "lon": -73.9743657 }, + { "lat": 40.8384407, "lon": -73.9741377 }, + { "lat": 40.8382403, "lon": -73.9742137 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525069055, + "bounds": { + "minlat": 40.8368762, + "minlon": -73.9746048, + "maxlat": 40.8370882, + "maxlon": -73.9741685 + }, + "nodes": [ + 5108646921, + 5108646715, + 5108646713, + 5108646714, + 5108646720, + 5108646711, + 5108646716, + 5108646710, + 5108646712, + 5108646717, + 5108646719, + 5108646718, + 5108646924, + 5108646922, + 5108646923, + 5108646921 + ], + "geometry": [ + { "lat": 40.8369094, "lon": -73.9746048 }, + { "lat": 40.8369117, "lon": -73.9745260 }, + { "lat": 40.8368995, "lon": -73.9744153 }, + { "lat": 40.8368762, "lon": -73.9742906 }, + { "lat": 40.8368924, "lon": -73.9742249 }, + { "lat": 40.8369330, "lon": -73.9741753 }, + { "lat": 40.8369868, "lon": -73.9741685 }, + { "lat": 40.8370182, "lon": -73.9742021 }, + { "lat": 40.8370497, "lon": -73.9742638 }, + { "lat": 40.8370761, "lon": -73.9743415 }, + { "lat": 40.8370882, "lon": -73.9744126 }, + { "lat": 40.8370842, "lon": -73.9744435 }, + { "lat": 40.8370695, "lon": -73.9744832 }, + { "lat": 40.8370402, "lon": -73.9745162 }, + { "lat": 40.8370077, "lon": -73.9745445 }, + { "lat": 40.8369094, "lon": -73.9746048 } + ], + "tags": { + "highway": "residential", + "name": "Duncan Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Duncan", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525069189, + "bounds": { + "minlat": 40.8373530, + "minlon": -73.9777470, + "maxlat": 40.8385420, + "maxlon": -73.9750899 + }, + "nodes": [ + 103149538, + 13523728845, + 103149537, + 103123309, + 103149536, + 5108647967, + 5108647966, + 103149534, + 103149532, + 5108647970 + ], + "geometry": [ + { "lat": 40.8385420, "lon": -73.9777470 }, + { "lat": 40.8384964, "lon": -73.9776712 }, + { "lat": 40.8384120, "lon": -73.9775310 }, + { "lat": 40.8381280, "lon": -73.9770840 }, + { "lat": 40.8377580, "lon": -73.9765010 }, + { "lat": 40.8377362, "lon": -73.9764510 }, + { "lat": 40.8377209, "lon": -73.9764014 }, + { "lat": 40.8377071, "lon": -73.9763395 }, + { "lat": 40.8374172, "lon": -73.9752375 }, + { "lat": 40.8373530, "lon": -73.9750899 } + ], + "tags": { + "highway": "residential", + "name": "Virginia Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Virginia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525069239, + "bounds": { + "minlat": 40.8354698, + "minlon": -73.9752068, + "maxlat": 40.8356332, + "maxlon": -73.9746299 + }, + "nodes": [ + 5108649553, + 5108649558, + 5108649560, + 5108649561, + 5108649562 + ], + "geometry": [ + { "lat": 40.8354698, "lon": -73.9752068 }, + { "lat": 40.8355236, "lon": -73.9748243 }, + { "lat": 40.8355490, "lon": -73.9747171 }, + { "lat": 40.8355937, "lon": -73.9746562 }, + { "lat": 40.8356332, "lon": -73.9746299 } + ], + "tags": { + "highway": "residential", + "name": "Cresent Court" + } +}, +{ + "type": "way", + "id": 525069284, + "bounds": { + "minlat": 40.8367586, + "minlon": -73.9782417, + "maxlat": 40.8374835, + "maxlon": -73.9754770 + }, + "nodes": [ + 103181675, + 103247322, + 103181669, + 103247323, + 103247325, + 103123288, + 103123300, + 7486936707, + 13523728851, + 103235754 + ], + "geometry": [ + { "lat": 40.8367586, "lon": -73.9754770 }, + { "lat": 40.8368298, "lon": -73.9757290 }, + { "lat": 40.8368924, "lon": -73.9759670 }, + { "lat": 40.8369792, "lon": -73.9763057 }, + { "lat": 40.8370683, "lon": -73.9766324 }, + { "lat": 40.8371382, "lon": -73.9769247 }, + { "lat": 40.8372463, "lon": -73.9773303 }, + { "lat": 40.8374194, "lon": -73.9779955 }, + { "lat": 40.8374549, "lon": -73.9781319 }, + { "lat": 40.8374835, "lon": -73.9782417 } + ], + "tags": { + "highway": "residential", + "name": "Euclid Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Euclid", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525069341, + "bounds": { + "minlat": 40.8379177, + "minlon": -73.9747407, + "maxlat": 40.8380561, + "maxlon": -73.9746407 + }, + "nodes": [ + 5108635209, + 5108650520, + 5108650517, + 5108650518, + 5108650516 + ], + "geometry": [ + { "lat": 40.8380561, "lon": -73.9746407 }, + { "lat": 40.8380450, "lon": -73.9746567 }, + { "lat": 40.8380166, "lon": -73.9746902 }, + { "lat": 40.8379872, "lon": -73.9747090 }, + { "lat": 40.8379177, "lon": -73.9747407 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525069342, + "bounds": { + "minlat": 40.8377244, + "minlon": -73.9748217, + "maxlat": 40.8379177, + "maxlon": -73.9747407 + }, + "nodes": [ + 5108650516, + 5108650515 + ], + "geometry": [ + { "lat": 40.8379177, "lon": -73.9747407 }, + { "lat": 40.8377244, "lon": -73.9748217 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525069343, + "bounds": { + "minlat": 40.8376534, + "minlon": -73.9747407, + "maxlat": 40.8379177, + "maxlon": -73.9745213 + }, + "nodes": [ + 5108650516, + 5108650514, + 5108650721 + ], + "geometry": [ + { "lat": 40.8379177, "lon": -73.9747407 }, + { "lat": 40.8378614, "lon": -73.9745213 }, + { "lat": 40.8376534, "lon": -73.9745883 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 525069377, + "bounds": { + "minlat": 40.8357282, + "minlon": -73.9830932, + "maxlat": 40.8360029, + "maxlon": -73.9813300 + }, + "nodes": [ + 103282026, + 103317492, + 103317494, + 103317496, + 103317498, + 103149487, + 103317500, + 103317502, + 103245962 + ], + "geometry": [ + { "lat": 40.8357790, "lon": -73.9813300 }, + { "lat": 40.8357481, "lon": -73.9815650 }, + { "lat": 40.8357362, "lon": -73.9816913 }, + { "lat": 40.8357282, "lon": -73.9818857 }, + { "lat": 40.8357351, "lon": -73.9820723 }, + { "lat": 40.8357501, "lon": -73.9822280 }, + { "lat": 40.8357751, "lon": -73.9823773 }, + { "lat": 40.8358521, "lon": -73.9826560 }, + { "lat": 40.8360029, "lon": -73.9830932 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Dorincourt Road", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dorincourt", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525069852, + "bounds": { + "minlat": 40.8351000, + "minlon": -73.9869145, + "maxlat": 40.8360795, + "maxlon": -73.9856130 + }, + "nodes": [ + 103125438, + 13527755884, + 103125440, + 103125442 + ], + "geometry": [ + { "lat": 40.8351000, "lon": -73.9856130 }, + { "lat": 40.8351721, "lon": -73.9857096 }, + { "lat": 40.8355990, "lon": -73.9862820 }, + { "lat": 40.8360795, "lon": -73.9869145 } + ], + "tags": { + "highway": "residential", + "name": "Bluff Road", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bluff", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525069854, + "bounds": { + "minlat": 40.8348790, + "minlon": -73.9856130, + "maxlat": 40.8351000, + "maxlon": -73.9847340 + }, + "nodes": [ + 103125438, + 103125437, + 13527755886, + 103125434, + 103125432, + 103125430, + 103125427 + ], + "geometry": [ + { "lat": 40.8351000, "lon": -73.9856130 }, + { "lat": 40.8350244, "lon": -73.9855141 }, + { "lat": 40.8350173, "lon": -73.9854962 }, + { "lat": 40.8349775, "lon": -73.9853963 }, + { "lat": 40.8349500, "lon": -73.9852401 }, + { "lat": 40.8349324, "lon": -73.9850703 }, + { "lat": 40.8348790, "lon": -73.9847340 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bluff Road", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bluff", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525069855, + "bounds": { + "minlat": 40.8339974, + "minlon": -73.9836752, + "maxlat": 40.8346519, + "maxlon": -73.9827770 + }, + "nodes": [ + 103125408, + 103125410, + 103125411, + 103125413, + 103125414, + 103125416, + 103125418 + ], + "geometry": [ + { "lat": 40.8339974, "lon": -73.9827770 }, + { "lat": 40.8341510, "lon": -73.9829360 }, + { "lat": 40.8342790, "lon": -73.9830823 }, + { "lat": 40.8343781, "lon": -73.9832067 }, + { "lat": 40.8344840, "lon": -73.9833717 }, + { "lat": 40.8345840, "lon": -73.9835497 }, + { "lat": 40.8346519, "lon": -73.9836752 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bluff Road", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bluff", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525069857, + "bounds": { + "minlat": 40.8360795, + "minlon": -73.9900606, + "maxlat": 40.8371639, + "maxlon": -73.9869145 + }, + "nodes": [ + 103125442, + 103125443, + 103125444, + 103125447, + 13527715997, + 103125449, + 13527715995, + 13527715993, + 103125451, + 13527715991, + 13527715989, + 103125453, + 13527715987, + 13527715985, + 440215430 + ], + "geometry": [ + { "lat": 40.8360795, "lon": -73.9869145 }, + { "lat": 40.8361700, "lon": -73.9870460 }, + { "lat": 40.8362920, "lon": -73.9872680 }, + { "lat": 40.8363760, "lon": -73.9874660 }, + { "lat": 40.8364123, "lon": -73.9875735 }, + { "lat": 40.8364330, "lon": -73.9876350 }, + { "lat": 40.8364484, "lon": -73.9876923 }, + { "lat": 40.8366306, "lon": -73.9883715 }, + { "lat": 40.8366450, "lon": -73.9884250 }, + { "lat": 40.8366645, "lon": -73.9884973 }, + { "lat": 40.8368496, "lon": -73.9891820 }, + { "lat": 40.8368750, "lon": -73.9892760 }, + { "lat": 40.8369286, "lon": -73.9894214 }, + { "lat": 40.8371436, "lon": -73.9900054 }, + { "lat": 40.8371639, "lon": -73.9900606 } + ], + "tags": { + "highway": "residential", + "name": "Bluff Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bluff", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 525069903, + "bounds": { + "minlat": 40.8440483, + "minlon": -73.9712594, + "maxlat": 40.8445709, + "maxlon": -73.9704063 + }, + "nodes": [ + 5108657312, + 5108657315, + 5108657310, + 5108657309, + 5108657319, + 5108657311, + 5108657313, + 5108657318, + 5108657316, + 5108657314, + 5108657307, + 5108657308, + 5108657317 + ], + "geometry": [ + { "lat": 40.8445693, "lon": -73.9704090 }, + { "lat": 40.8444384, "lon": -73.9704063 }, + { "lat": 40.8442635, "lon": -73.9704585 }, + { "lat": 40.8443060, "lon": -73.9705194 }, + { "lat": 40.8443557, "lon": -73.9705945 }, + { "lat": 40.8444257, "lon": -73.9707018 }, + { "lat": 40.8445089, "lon": -73.9708708 }, + { "lat": 40.8445709, "lon": -73.9710349 }, + { "lat": 40.8444947, "lon": -73.9711041 }, + { "lat": 40.8444521, "lon": -73.9711417 }, + { "lat": 40.8443912, "lon": -73.9712141 }, + { "lat": 40.8443506, "lon": -73.9712594 }, + { "lat": 40.8440483, "lon": -73.9708064 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525656841, + "bounds": { + "minlat": 40.7067350, + "minlon": -74.0074540, + "maxlat": 40.7072416, + "maxlon": -74.0067819 + }, + "nodes": [ + 42444424, + 7138157367, + 7138157368, + 6262915548 + ], + "geometry": [ + { "lat": 40.7067350, "lon": -74.0067819 }, + { "lat": 40.7067758, "lon": -74.0068318 }, + { "lat": 40.7072171, "lon": -74.0074191 }, + { "lat": 40.7072416, "lon": -74.0074540 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Maiden Lane", + "name:ko": "메이든 레인", + "name:ru": "Мейден-Лейн", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q13422110", + "wikipedia": "en:Maiden Lane (Manhattan)" + } +}, +{ + "type": "way", + "id": 525656842, + "bounds": { + "minlat": 40.7061497, + "minlon": -74.0067819, + "maxlat": 40.7067350, + "maxlon": -74.0060206 + }, + "nodes": [ + 42454798, + 4985377341, + 4985377346, + 42444424 + ], + "geometry": [ + { "lat": 40.7061497, "lon": -74.0060206 }, + { "lat": 40.7062155, "lon": -74.0061082 }, + { "lat": 40.7066913, "lon": -74.0067316 }, + { "lat": 40.7067350, "lon": -74.0067819 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Maiden Lane", + "name:ko": "메이든 레인", + "name:ru": "Мейден-Лейн", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Maiden", + "tiger:name_type": "Ln", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q13422110", + "wikipedia": "en:Maiden Lane (Manhattan)" + } +}, +{ + "type": "way", + "id": 525656847, + "bounds": { + "minlat": 40.7056340, + "minlon": -74.0067527, + "maxlat": 40.7061497, + "maxlon": -74.0060206 + }, + "nodes": [ + 42454798, + 4985377344, + 13706421777, + 8276468599, + 42429844 + ], + "geometry": [ + { "lat": 40.7061497, "lon": -74.0060206 }, + { "lat": 40.7061033, "lon": -74.0060881 }, + { "lat": 40.7056971, "lon": -74.0066615 }, + { "lat": 40.7056616, "lon": -74.0067117 }, + { "lat": 40.7056340, "lon": -74.0067527 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "parking:left": "street_side", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 525656852, + "bounds": { + "minlat": 40.7061497, + "minlon": -74.0060206, + "maxlat": 40.7063813, + "maxlon": -74.0056937 + }, + "nodes": [ + 42427251, + 4985377342, + 42454798 + ], + "geometry": [ + { "lat": 40.7063813, "lon": -74.0056937 }, + { "lat": 40.7061955, "lon": -74.0059583 }, + { "lat": 40.7061497, "lon": -74.0060206 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "parking:left:restriction": "no_standing", + "parking:right": "street_side", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 525658419, + "bounds": { + "minlat": 40.7063813, + "minlon": -74.0056937, + "maxlat": 40.7068521, + "maxlon": -74.0050152 + }, + "nodes": [ + 42440350, + 7139624398, + 42427251 + ], + "geometry": [ + { "lat": 40.7068521, "lon": -74.0050152 }, + { "lat": 40.7067936, "lon": -74.0051039 }, + { "lat": 40.7063813, "lon": -74.0056937 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "parking:left:restriction": "no_standing", + "parking:right": "street_side", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 525667715, + "bounds": { + "minlat": 40.8213579, + "minlon": -73.9540665, + "maxlat": 40.8219884, + "maxlon": -73.9535995 + }, + "nodes": [ + 561035353, + 10177688693, + 10168100457, + 561035354 + ], + "geometry": [ + { "lat": 40.8213579, "lon": -73.9540665 }, + { "lat": 40.8214257, "lon": -73.9540163 }, + { "lat": 40.8219274, "lon": -73.9536447 }, + { "lat": 40.8219884, "lon": -73.9535995 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "||merge_to_left", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 525667716, + "bounds": { + "minlat": 40.8208172, + "minlon": -73.9546928, + "maxlat": 40.8214361, + "maxlon": -73.9542488 + }, + "nodes": [ + 42428912, + 10177688692, + 10170977570, + 561035351 + ], + "geometry": [ + { "lat": 40.8214361, "lon": -73.9542488 }, + { "lat": 40.8213924, "lon": -73.9542802 }, + { "lat": 40.8208653, "lon": -73.9546588 }, + { "lat": 40.8208172, "lon": -73.9546928 } + ], + "tags": { + "cycleway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 525667717, + "bounds": { + "minlat": 40.8208172, + "minlon": -73.9567474, + "maxlat": 40.8216938, + "maxlon": -73.9546928 + }, + "nodes": [ + 42441947, + 10168100435, + 10168100439, + 13239309749, + 561035351 + ], + "geometry": [ + { "lat": 40.8216938, "lon": -73.9567474 }, + { "lat": 40.8216621, "lon": -73.9566730 }, + { "lat": 40.8208549, "lon": -73.9547812 }, + { "lat": 40.8208395, "lon": -73.9547451 }, + { "lat": 40.8208172, "lon": -73.9546928 } + ], + "tags": { + "highway": "residential", + "name": "West 136th Street", + "name_1": "West 136 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525667718, + "bounds": { + "minlat": 40.8195669, + "minlon": -73.9545230, + "maxlat": 40.8207479, + "maxlon": -73.9517315 + }, + "nodes": [ + 561035350, + 10170977566, + 13239309750, + 7709922533, + 7148243501, + 10170977574, + 42442604 + ], + "geometry": [ + { "lat": 40.8207479, "lon": -73.9545230 }, + { "lat": 40.8206960, "lon": -73.9544028 }, + { "lat": 40.8206779, "lon": -73.9543604 }, + { "lat": 40.8202348, "lon": -73.9533221 }, + { "lat": 40.8201482, "lon": -73.9531174 }, + { "lat": 40.8196250, "lon": -73.9518702 }, + { "lat": 40.8195669, "lon": -73.9517315 } + ], + "tags": { + "highway": "residential", + "name": "West 136th Street", + "name_1": "West 136 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525667719, + "bounds": { + "minlat": 40.8200718, + "minlon": -73.9549695, + "maxlat": 40.8207479, + "maxlon": -73.9545230 + }, + "nodes": [ + 561035349, + 10168100428, + 10170977564, + 561035350 + ], + "geometry": [ + { "lat": 40.8200718, "lon": -73.9549695 }, + { "lat": 40.8201661, "lon": -73.9549075 }, + { "lat": 40.8206940, "lon": -73.9545598 }, + { "lat": 40.8207479, "lon": -73.9545230 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 525667720, + "bounds": { + "minlat": 40.8201617, + "minlon": -73.9551864, + "maxlat": 40.8208172, + "maxlon": -73.9546928 + }, + "nodes": [ + 561035351, + 10170977563, + 10168100427, + 42428892 + ], + "geometry": [ + { "lat": 40.8208172, "lon": -73.9546928 }, + { "lat": 40.8207651, "lon": -73.9547296 }, + { "lat": 40.8202534, "lon": -73.9551171 }, + { "lat": 40.8201617, "lon": -73.9551864 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 525698215, + "bounds": { + "minlat": 40.7138465, + "minlon": -73.9927579, + "maxlat": 40.7138690, + "maxlon": -73.9924861 + }, + "nodes": [ + 42433545, + 3212472629, + 42457821 + ], + "geometry": [ + { "lat": 40.7138690, "lon": -73.9924861 }, + { "lat": 40.7138582, "lon": -73.9926180 }, + { "lat": 40.7138465, "lon": -73.9927579 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "oneway": "no", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 525701040, + "bounds": { + "minlat": 40.7337515, + "minlon": -73.9806008, + "maxlat": 40.7348009, + "maxlon": -73.9798034 + }, + "nodes": [ + 685164633, + 5690423130, + 9913605325, + 4298760166, + 4298760168, + 387184986, + 9913595414, + 9913595413, + 3360772998 + ], + "geometry": [ + { "lat": 40.7337515, "lon": -73.9806008 }, + { "lat": 40.7338057, "lon": -73.9805642 }, + { "lat": 40.7342599, "lon": -73.9802283 }, + { "lat": 40.7343042, "lon": -73.9801955 }, + { "lat": 40.7344189, "lon": -73.9801128 }, + { "lat": 40.7347629, "lon": -73.9798664 }, + { "lat": 40.7347849, "lon": -73.9798431 }, + { "lat": 40.7347967, "lon": -73.9798227 }, + { "lat": 40.7348009, "lon": -73.9798034 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue Service Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525701044, + "bounds": { + "minlat": 40.7325841, + "minlon": -73.9816006, + "maxlat": 40.7326640, + "maxlon": -73.9814480 + }, + "nodes": [ + 685164631, + 42439323 + ], + "geometry": [ + { "lat": 40.7325841, "lon": -73.9814480 }, + { "lat": 40.7326640, "lon": -73.9816006 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "First Avenue Loop", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525703592, + "bounds": { + "minlat": 40.7253619, + "minlon": -73.9508750, + "maxlat": 40.7257210, + "maxlon": -73.9506699 + }, + "nodes": [ + 42491226, + 9765409759, + 5113681745 + ], + "geometry": [ + { "lat": 40.7257210, "lon": -73.9508750 }, + { "lat": 40.7256626, "lon": -73.9508417 }, + { "lat": 40.7253619, "lon": -73.9506699 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Leonard Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 525703597, + "bounds": { + "minlat": 40.7240560, + "minlon": -73.9506699, + "maxlat": 40.7253619, + "maxlon": -73.9499240 + }, + "nodes": [ + 5113681745, + 9789356687, + 42479283 + ], + "geometry": [ + { "lat": 40.7253619, "lon": -73.9506699 }, + { "lat": 40.7241267, "lon": -73.9499644 }, + { "lat": 40.7240560, "lon": -73.9499240 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Leonard Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525703602, + "bounds": { + "minlat": 40.7253619, + "minlon": -73.9506699, + "maxlat": 40.7254934, + "maxlon": -73.9502983 + }, + "nodes": [ + 5113681745, + 9789356719, + 5113681744 + ], + "geometry": [ + { "lat": 40.7253619, "lon": -73.9506699 }, + { "lat": 40.7253839, "lon": -73.9506078 }, + { "lat": 40.7254934, "lon": -73.9502983 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 525710332, + "bounds": { + "minlat": 40.7676626, + "minlon": -73.9207885, + "maxlat": 40.7681197, + "maxlon": -73.9203580 + }, + "nodes": [ + 42842303, + 6406731721, + 42849719 + ], + "geometry": [ + { "lat": 40.7681197, "lon": -73.9203580 }, + { "lat": 40.7677286, "lon": -73.9207264 }, + { "lat": 40.7676626, "lon": -73.9207885 } + ], + "tags": { + "foot": "yes", + "highway": "secondary", + "lanes": "2", + "maxheight": "12'6\"", + "maxspeed": "20 mph", + "name": "31st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525727823, + "bounds": { + "minlat": 40.7329862, + "minlon": -73.9798034, + "maxlat": 40.7348019, + "maxlon": -73.9754466 + }, + "nodes": [ + 3360772998, + 9913595412, + 9913595411, + 387184987, + 4298764910, + 4298764911, + 12179607171, + 3601296184, + 685164634, + 3601297799, + 4298764927, + 4298764929, + 9913605326, + 3686061911, + 685164636 + ], + "geometry": [ + { "lat": 40.7348009, "lon": -73.9798034 }, + { "lat": 40.7348019, "lon": -73.9797780 }, + { "lat": 40.7347994, "lon": -73.9797552 }, + { "lat": 40.7347927, "lon": -73.9797341 }, + { "lat": 40.7346552, "lon": -73.9794045 }, + { "lat": 40.7342836, "lon": -73.9785193 }, + { "lat": 40.7340248, "lon": -73.9779049 }, + { "lat": 40.7340022, "lon": -73.9778512 }, + { "lat": 40.7339707, "lon": -73.9777810 }, + { "lat": 40.7339396, "lon": -73.9777099 }, + { "lat": 40.7337629, "lon": -73.9772831 }, + { "lat": 40.7333271, "lon": -73.9762598 }, + { "lat": 40.7330418, "lon": -73.9755758 }, + { "lat": 40.7330188, "lon": -73.9755194 }, + { "lat": 40.7329862, "lon": -73.9754466 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street Service Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525727824, + "bounds": { + "minlat": 40.7343019, + "minlon": -73.9791401, + "maxlat": 40.7346774, + "maxlon": -73.9782500 + }, + "nodes": [ + 4298764915, + 9141016318 + ], + "geometry": [ + { "lat": 40.7343019, "lon": -73.9782500 }, + { "lat": 40.7346774, "lon": -73.9791401 } + ], + "tags": { + "cycleway:right": "separate", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525729008, + "bounds": { + "minlat": 40.7560361, + "minlon": -73.9897914, + "maxlat": 40.7572335, + "maxlon": -73.9869489 + }, + "nodes": [ + 42437363, + 6597464529, + 4770624001, + 4770624002, + 10691086260, + 5651033419, + 10691086259, + 6167628293, + 9235539540, + 42435663 + ], + "geometry": [ + { "lat": 40.7560361, "lon": -73.9869489 }, + { "lat": 40.7560868, "lon": -73.9870695 }, + { "lat": 40.7561464, "lon": -73.9872107 }, + { "lat": 40.7562616, "lon": -73.9874841 }, + { "lat": 40.7566170, "lon": -73.9883280 }, + { "lat": 40.7566551, "lon": -73.9884184 }, + { "lat": 40.7566978, "lon": -73.9885199 }, + { "lat": 40.7567704, "lon": -73.9886922 }, + { "lat": 40.7571772, "lon": -73.9896581 }, + { "lat": 40.7572335, "lon": -73.9897914 } + ], + "tags": { + "access": "yes", + "cycleway:both": "no", + "foot": "designated", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 525729009, + "bounds": { + "minlat": 40.7578400, + "minlon": -73.9930728, + "maxlat": 40.7584326, + "maxlon": -73.9926458 + }, + "nodes": [ + 42437368, + 9535571855, + 7903850298, + 42445001 + ], + "geometry": [ + { "lat": 40.7584326, "lon": -73.9926458 }, + { "lat": 40.7583466, "lon": -73.9927085 }, + { "lat": 40.7579228, "lon": -73.9930171 }, + { "lat": 40.7578400, "lon": -73.9930728 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lit": "yes", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|through|right|right", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 525729010, + "bounds": { + "minlat": 40.7567985, + "minlon": -73.9938303, + "maxlat": 40.7571536, + "maxlon": -73.9935785 + }, + "nodes": [ + 42444991, + 7903850295, + 10585863295 + ], + "geometry": [ + { "lat": 40.7571536, "lon": -73.9935785 }, + { "lat": 40.7570941, "lon": -73.9936220 }, + { "lat": 40.7567985, "lon": -73.9938303 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 525737304, + "bounds": { + "minlat": 40.8537590, + "minlon": -73.9650091, + "maxlat": 40.8539196, + "maxlon": -73.9649882 + }, + "nodes": [ + 11289844900, + 5113978249 + ], + "geometry": [ + { "lat": 40.8539196, "lon": -73.9650091 }, + { "lat": 40.8537590, "lon": -73.9649882 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 525737531, + "bounds": { + "minlat": 40.8535487, + "minlon": -73.9650408, + "maxlat": 40.8535887, + "maxlon": -73.9650178 + }, + "nodes": [ + 5113978251, + 3257513404 + ], + "geometry": [ + { "lat": 40.8535887, "lon": -73.9650178 }, + { "lat": 40.8535487, "lon": -73.9650408 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 525737533, + "bounds": { + "minlat": 40.8535887, + "minlon": -73.9650178, + "maxlat": 40.8537590, + "maxlon": -73.9649882 + }, + "nodes": [ + 5113978249, + 5113978251 + ], + "geometry": [ + { "lat": 40.8537590, "lon": -73.9649882 }, + { "lat": 40.8535887, "lon": -73.9650178 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "highway": "service", + "layer": "1", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 525760564, + "bounds": { + "minlat": 40.7048354, + "minlon": -74.0156504, + "maxlat": 40.7049418, + "maxlon": -74.0156386 + }, + "nodes": [ + 588546882, + 10316226218, + 1772136810 + ], + "geometry": [ + { "lat": 40.7049418, "lon": -74.0156386 }, + { "lat": 40.7048817, "lon": -74.0156453 }, + { "lat": 40.7048354, "lon": -74.0156504 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name_1": "West U I Plaza", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Washington", + "tiger:name_base_1": "U I", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "Plz", + "tiger:reviewed": "no", + "tiger:zip_left": "10004", + "tiger:zip_left_1": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 525768549, + "bounds": { + "minlat": 40.7401771, + "minlon": -73.9858267, + "maxlat": 40.7408256, + "maxlon": -73.9842672 + }, + "nodes": [ + 42436578, + 10166167525, + 12181379210, + 10166167592, + 42436582 + ], + "geometry": [ + { "lat": 40.7408256, "lon": -73.9858267 }, + { "lat": 40.7407959, "lon": -73.9857550 }, + { "lat": 40.7402460, "lon": -73.9844276 }, + { "lat": 40.7402236, "lon": -73.9843754 }, + { "lat": 40.7401771, "lon": -73.9842672 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 24th Street", + "name:ru": "Восточная 24-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 525768550, + "bounds": { + "minlat": 40.7402148, + "minlon": -73.9864100, + "maxlat": 40.7408738, + "maxlon": -73.9859403 + }, + "nodes": [ + 4597668029, + 10166167523, + 12181339175, + 10166167538, + 4597668041 + ], + "geometry": [ + { "lat": 40.7408738, "lon": -73.9859403 }, + { "lat": 40.7408233, "lon": -73.9859693 }, + { "lat": 40.7403514, "lon": -73.9863105 }, + { "lat": 40.7403040, "lon": -73.9863450 }, + { "lat": 40.7402148, "lon": -73.9864100 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 525854245, + "bounds": { + "minlat": 40.8159970, + "minlon": -73.9393897, + "maxlat": 40.8163607, + "maxlon": -73.9391303 + }, + "nodes": [ + 42435957, + 9557110354, + 4205440406 + ], + "geometry": [ + { "lat": 40.8159970, "lon": -73.9393897 }, + { "lat": 40.8160593, "lon": -73.9393453 }, + { "lat": 40.8163607, "lon": -73.9391303 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 526013733, + "bounds": { + "minlat": 40.7511890, + "minlon": -73.9151896, + "maxlat": 40.7513348, + "maxlon": -73.9144375 + }, + "nodes": [ + 2883385962, + 10762234048, + 42816214 + ], + "geometry": [ + { "lat": 40.7513348, "lon": -73.9144375 }, + { "lat": 40.7512112, "lon": -73.9150751 }, + { "lat": 40.7511890, "lon": -73.9151896 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 526013734, + "bounds": { + "minlat": 40.7538010, + "minlon": -73.9134580, + "maxlat": 40.7539042, + "maxlon": -73.9132663 + }, + "nodes": [ + 5116199203, + 6450819026, + 5116199204 + ], + "geometry": [ + { "lat": 40.7538010, "lon": -73.9132663 }, + { "lat": 40.7538454, "lon": -73.9133404 }, + { "lat": 40.7539042, "lon": -73.9134580 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 526205736, + "bounds": { + "minlat": 40.7766529, + "minlon": -73.9841504, + "maxlat": 40.7768413, + "maxlon": -73.9840106 + }, + "nodes": [ + 3371304358, + 5117745455, + 3377383047 + ], + "geometry": [ + { "lat": 40.7766529, "lon": -73.9841504 }, + { "lat": 40.7766964, "lon": -73.9841189 }, + { "lat": 40.7768413, "lon": -73.9840106 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 526208115, + "bounds": { + "minlat": 40.7758433, + "minlon": -73.9847526, + "maxlat": 40.7766529, + "maxlon": -73.9839261 + }, + "nodes": [ + 3371304355, + 3371304356, + 7050687005, + 3371304357, + 3371304358 + ], + "geometry": [ + { "lat": 40.7759691, "lon": -73.9847526 }, + { "lat": 40.7758433, "lon": -73.9844455 }, + { "lat": 40.7765156, "lon": -73.9839650 }, + { "lat": 40.7765644, "lon": -73.9839261 }, + { "lat": 40.7766529, "lon": -73.9841504 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 526225048, + "bounds": { + "minlat": 40.7759275, + "minlon": -73.9869307, + "maxlat": 40.7764479, + "maxlon": -73.9857061 + }, + "nodes": [ + 3371304328, + 3371304329, + 3377387957, + 3371304326, + 3377387956, + 3377383085, + 3371304327 + ], + "geometry": [ + { "lat": 40.7759275, "lon": -73.9857061 }, + { "lat": 40.7761952, "lon": -73.9863364 }, + { "lat": 40.7762601, "lon": -73.9864891 }, + { "lat": 40.7763085, "lon": -73.9866030 }, + { "lat": 40.7763342, "lon": -73.9866629 }, + { "lat": 40.7763921, "lon": -73.9867986 }, + { "lat": 40.7764479, "lon": -73.9869307 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 526445044, + "bounds": { + "minlat": 40.7337490, + "minlon": -73.9389494, + "maxlat": 40.7342114, + "maxlon": -73.9378712 + }, + "nodes": [ + 597294543, + 1056080911, + 9982697965, + 7725555872, + 9982697966, + 1056072094 + ], + "geometry": [ + { "lat": 40.7337490, "lon": -73.9389494 }, + { "lat": 40.7338052, "lon": -73.9388137 }, + { "lat": 40.7341182, "lon": -73.9380288 }, + { "lat": 40.7341338, "lon": -73.9379962 }, + { "lat": 40.7341515, "lon": -73.9379657 }, + { "lat": 40.7342114, "lon": -73.9378712 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 526479225, + "bounds": { + "minlat": 40.7647131, + "minlon": -73.9184454, + "maxlat": 40.7650918, + "maxlon": -73.9176537 + }, + "nodes": [ + 5119625234, + 6406731601, + 5119625236, + 6406731779, + 5119625235 + ], + "geometry": [ + { "lat": 40.7650918, "lon": -73.9184454 }, + { "lat": 40.7650610, "lon": -73.9183811 }, + { "lat": 40.7648930, "lon": -73.9180299 }, + { "lat": 40.7647415, "lon": -73.9177130 }, + { "lat": 40.7647131, "lon": -73.9176537 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 526479228, + "bounds": { + "minlat": 40.7637695, + "minlon": -73.9189327, + "maxlat": 40.7648930, + "maxlon": -73.9180299 + }, + "nodes": [ + 5119625236, + 5119625237 + ], + "geometry": [ + { "lat": 40.7648930, "lon": -73.9180299 }, + { "lat": 40.7637695, "lon": -73.9189327 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 526479230, + "bounds": { + "minlat": 40.7633241, + "minlon": -73.9191688, + "maxlat": 40.7635145, + "maxlon": -73.9187684 + }, + "nodes": [ + 5119625238, + 6406731777, + 5119625239 + ], + "geometry": [ + { "lat": 40.7633241, "lon": -73.9187684 }, + { "lat": 40.7633533, "lon": -73.9188298 }, + { "lat": 40.7635145, "lon": -73.9191688 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 526479232, + "bounds": { + "minlat": 40.7632017, + "minlon": -73.9194316, + "maxlat": 40.7635836, + "maxlon": -73.9191124 + }, + "nodes": [ + 5119625240, + 5119625239, + 5119625241 + ], + "geometry": [ + { "lat": 40.7632017, "lon": -73.9194316 }, + { "lat": 40.7635145, "lon": -73.9191688 }, + { "lat": 40.7635836, "lon": -73.9191124 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 526479234, + "bounds": { + "minlat": 40.7618570, + "minlon": -73.9204614, + "maxlat": 40.7620968, + "maxlon": -73.9199028 + }, + "nodes": [ + 13701379978, + 13701379979, + 13701379976, + 13701379977, + 13701379980, + 5119625242 + ], + "geometry": [ + { "lat": 40.7618570, "lon": -73.9204614 }, + { "lat": 40.7620968, "lon": -73.9202696 }, + { "lat": 40.7620119, "lon": -73.9200758 }, + { "lat": 40.7620023, "lon": -73.9200363 }, + { "lat": 40.7619757, "lon": -73.9199793 }, + { "lat": 40.7619285, "lon": -73.9199028 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 526479236, + "bounds": { + "minlat": 40.7610822, + "minlon": -73.9204576, + "maxlat": 40.7612573, + "maxlon": -73.9200901 + }, + "nodes": [ + 5119625244, + 6406791513, + 5119625245 + ], + "geometry": [ + { "lat": 40.7612573, "lon": -73.9204576 }, + { "lat": 40.7612254, "lon": -73.9203906 }, + { "lat": 40.7610822, "lon": -73.9200901 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 526479238, + "bounds": { + "minlat": 40.7610822, + "minlon": -73.9200901, + "maxlat": 40.7617537, + "maxlon": -73.9195456 + }, + "nodes": [ + 5119625245, + 5119625243 + ], + "geometry": [ + { "lat": 40.7610822, "lon": -73.9200901 }, + { "lat": 40.7617537, "lon": -73.9195456 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 526499159, + "bounds": { + "minlat": 40.7603889, + "minlon": -73.9592366, + "maxlat": 40.7605868, + "maxlon": -73.9590969 + }, + "nodes": [ + 5119773966, + 5119773944 + ], + "geometry": [ + { "lat": 40.7603889, "lon": -73.9592366 }, + { "lat": 40.7605868, "lon": -73.9590969 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 526499160, + "bounds": { + "minlat": 40.7601619, + "minlon": -73.9593990, + "maxlat": 40.7602974, + "maxlon": -73.9593012 + }, + "nodes": [ + 5119773922, + 5119775584, + 5119773950 + ], + "geometry": [ + { "lat": 40.7601619, "lon": -73.9593990 }, + { "lat": 40.7602185, "lon": -73.9593581 }, + { "lat": 40.7602974, "lon": -73.9593012 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 526499161, + "bounds": { + "minlat": 40.7602693, + "minlon": -73.9594789, + "maxlat": 40.7604203, + "maxlon": -73.9592791 + }, + "nodes": [ + 5119773939, + 5119773925, + 5119773932, + 5119773943, + 11011913631, + 5119773963, + 11011913630, + 5119773965, + 5119773936, + 5119773930, + 5119773958, + 5119773960, + 5119773931, + 5119773921, + 5119773942, + 5119773950, + 5119773952, + 5119773941, + 5119773923, + 5119773928, + 5119773939 + ], + "geometry": [ + { "lat": 40.7604182, "lon": -73.9593526 }, + { "lat": 40.7604203, "lon": -73.9593865 }, + { "lat": 40.7604160, "lon": -73.9594130 }, + { "lat": 40.7604041, "lon": -73.9594418 }, + { "lat": 40.7603953, "lon": -73.9594561 }, + { "lat": 40.7603823, "lon": -73.9594668 }, + { "lat": 40.7603743, "lon": -73.9594705 }, + { "lat": 40.7603612, "lon": -73.9594766 }, + { "lat": 40.7603403, "lon": -73.9594789 }, + { "lat": 40.7603123, "lon": -73.9594697 }, + { "lat": 40.7602901, "lon": -73.9594482 }, + { "lat": 40.7602751, "lon": -73.9594182 }, + { "lat": 40.7602693, "lon": -73.9593840 }, + { "lat": 40.7602724, "lon": -73.9593514 }, + { "lat": 40.7602808, "lon": -73.9593267 }, + { "lat": 40.7602974, "lon": -73.9593012 }, + { "lat": 40.7603228, "lon": -73.9592834 }, + { "lat": 40.7603513, "lon": -73.9592791 }, + { "lat": 40.7603830, "lon": -73.9592922 }, + { "lat": 40.7604047, "lon": -73.9593174 }, + { "lat": 40.7604182, "lon": -73.9593526 } + ], + "tags": { + "highway": "service", + "junction": "roundabout", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 526499162, + "bounds": { + "minlat": 40.7607160, + "minlon": -73.9592203, + "maxlat": 40.7608643, + "maxlon": -73.9591089 + }, + "nodes": [ + 5119773962, + 5119773926, + 5119773940 + ], + "geometry": [ + { "lat": 40.7607160, "lon": -73.9592203 }, + { "lat": 40.7608050, "lon": -73.9591534 }, + { "lat": 40.7608643, "lon": -73.9591089 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 526499163, + "bounds": { + "minlat": 40.7606590, + "minlon": -73.9592632, + "maxlat": 40.7607160, + "maxlon": -73.9592203 + }, + "nodes": [ + 5119773946, + 5119773962 + ], + "geometry": [ + { "lat": 40.7606590, "lon": -73.9592632 }, + { "lat": 40.7607160, "lon": -73.9592203 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 526499164, + "bounds": { + "minlat": 40.7603228, + "minlon": -73.9592834, + "maxlat": 40.7603889, + "maxlon": -73.9592366 + }, + "nodes": [ + 5119773952, + 5119773966 + ], + "geometry": [ + { "lat": 40.7603228, "lon": -73.9592834 }, + { "lat": 40.7603889, "lon": -73.9592366 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 526499165, + "bounds": { + "minlat": 40.7602350, + "minlon": -73.9595723, + "maxlat": 40.7603743, + "maxlon": -73.9594705 + }, + "nodes": [ + 11011913630, + 5119775585, + 5119773933 + ], + "geometry": [ + { "lat": 40.7603743, "lon": -73.9594705 }, + { "lat": 40.7602918, "lon": -73.9595315 }, + { "lat": 40.7602350, "lon": -73.9595723 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 526499166, + "bounds": { + "minlat": 40.7604618, + "minlon": -73.9594093, + "maxlat": 40.7606590, + "maxlon": -73.9592632 + }, + "nodes": [ + 5119773946, + 5119773961 + ], + "geometry": [ + { "lat": 40.7606590, "lon": -73.9592632 }, + { "lat": 40.7604618, "lon": -73.9594093 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 526499167, + "bounds": { + "minlat": 40.7605868, + "minlon": -73.9592632, + "maxlat": 40.7606590, + "maxlon": -73.9590969 + }, + "nodes": [ + 5119773944, + 3448715552, + 5119773946 + ], + "geometry": [ + { "lat": 40.7605868, "lon": -73.9590969 }, + { "lat": 40.7606227, "lon": -73.9591769 }, + { "lat": 40.7606590, "lon": -73.9592632 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 526503345, + "bounds": { + "minlat": 40.7117173, + "minlon": -74.0041198, + "maxlat": 40.7123349, + "maxlon": -74.0029790 + }, + "nodes": [ + 983501181, + 983501173, + 7561162654, + 588546438, + 588546441, + 9369042153, + 4158789492, + 1272562921, + 5282235166, + 7477074114, + 1251908574 + ], + "geometry": [ + { "lat": 40.7117173, "lon": -74.0041198 }, + { "lat": 40.7117490, "lon": -74.0040239 }, + { "lat": 40.7117707, "lon": -74.0039733 }, + { "lat": 40.7118500, "lon": -74.0037916 }, + { "lat": 40.7118902, "lon": -74.0036995 }, + { "lat": 40.7119345, "lon": -74.0036076 }, + { "lat": 40.7119801, "lon": -74.0035314 }, + { "lat": 40.7120220, "lon": -74.0034612 }, + { "lat": 40.7121786, "lon": -74.0032294 }, + { "lat": 40.7123207, "lon": -74.0030026 }, + { "lat": 40.7123349, "lon": -74.0029790 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "cycleway": "no", + "cycleway:right:oneway": "no", + "emergency": "designated", + "foot": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "motor_vehicle": "private", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 526503346, + "bounds": { + "minlat": 40.7109496, + "minlon": -74.0040754, + "maxlat": 40.7112548, + "maxlon": -74.0036162 + }, + "nodes": [ + 12986769006, + 8262309667, + 42448469 + ], + "geometry": [ + { "lat": 40.7112548, "lon": -74.0040754 }, + { "lat": 40.7109994, "lon": -74.0036905 }, + { "lat": 40.7109496, "lon": -74.0036162 } + ], + "tags": { + "cycleway:both": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "jersey_barrier", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Frankfort Street", + "name:etymology:wikidata": "Q1794", + "name:ko": "프랭크포트 스트리트", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 526555843, + "bounds": { + "minlat": 40.7598452, + "minlon": -73.9597685, + "maxlat": 40.7602054, + "maxlon": -73.9595022 + }, + "nodes": [ + 5120249322, + 4918486752, + 3342322003 + ], + "geometry": [ + { "lat": 40.7598452, "lon": -73.9597685 }, + { "lat": 40.7601529, "lon": -73.9595421 }, + { "lat": 40.7602054, "lon": -73.9595022 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 526571477, + "bounds": { + "minlat": 40.7410390, + "minlon": -73.9886588, + "maxlat": 40.7411659, + "maxlon": -73.9883579 + }, + "nodes": [ + 9971262467, + 4763900914, + 4763900910, + 4763900908, + 4763900906 + ], + "geometry": [ + { "lat": 40.7411659, "lon": -73.9886588 }, + { "lat": 40.7411589, "lon": -73.9886423 }, + { "lat": 40.7411468, "lon": -73.9886136 }, + { "lat": 40.7411020, "lon": -73.9885072 }, + { "lat": 40.7410390, "lon": -73.9883579 } + ], + "tags": { + "alt_name": "East 23 Street", + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 526839039, + "bounds": { + "minlat": 40.7069579, + "minlon": -74.0090037, + "maxlat": 40.7077288, + "maxlon": -74.0082757 + }, + "nodes": [ + 42429840, + 11369414015, + 8276468647, + 10309272445, + 11369414024, + 42434420, + 11350133678, + 7138157379, + 42422053 + ], + "geometry": [ + { "lat": 40.7069579, "lon": -74.0090037 }, + { "lat": 40.7069769, "lon": -74.0089898 }, + { "lat": 40.7069947, "lon": -74.0089762 }, + { "lat": 40.7071879, "lon": -74.0088050 }, + { "lat": 40.7073122, "lon": -74.0086857 }, + { "lat": 40.7073785, "lon": -74.0086220 }, + { "lat": 40.7076496, "lon": -74.0083621 }, + { "lat": 40.7076892, "lon": -74.0083230 }, + { "lat": 40.7077288, "lon": -74.0082757 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "William Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "윌리엄 스트리트", + "name:ru": "Уильям-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 08:00-18:00)", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "32'4\"", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 526839040, + "bounds": { + "minlat": 40.7087131, + "minlon": -74.0072873, + "maxlat": 40.7095739, + "maxlon": -74.0064412 + }, + "nodes": [ + 42440343, + 8281922147, + 8281922089, + 42440282 + ], + "geometry": [ + { "lat": 40.7087131, "lon": -74.0072873 }, + { "lat": 40.7087448, "lon": -74.0072575 }, + { "lat": 40.7095231, "lon": -74.0064932 }, + { "lat": 40.7095739, "lon": -74.0064412 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "William Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "윌리엄 스트리트", + "name:ru": "Уильям-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 527379666, + "bounds": { + "minlat": 40.7821943, + "minlon": -73.9109667, + "maxlat": 40.7826781, + "maxlon": -73.9102679 + }, + "nodes": [ + 2307002076, + 7806681619, + 7806681588, + 5127233080 + ], + "geometry": [ + { "lat": 40.7826781, "lon": -73.9109667 }, + { "lat": 40.7826351, "lon": -73.9109046 }, + { "lat": 40.7822390, "lon": -73.9103324 }, + { "lat": 40.7821943, "lon": -73.9102679 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 527379667, + "bounds": { + "minlat": 40.7819943, + "minlon": -73.9102679, + "maxlat": 40.7821943, + "maxlon": -73.9099823 + }, + "nodes": [ + 5127233080, + 7806681606, + 5127233081 + ], + "geometry": [ + { "lat": 40.7821943, "lon": -73.9102679 }, + { "lat": 40.7821551, "lon": -73.9102118 }, + { "lat": 40.7819943, "lon": -73.9099823 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 527379668, + "bounds": { + "minlat": 40.7816318, + "minlon": -73.9102894, + "maxlat": 40.7821136, + "maxlon": -73.9096990 + }, + "nodes": [ + 5127233082, + 7779193122, + 5127233083 + ], + "geometry": [ + { "lat": 40.7821136, "lon": -73.9096990 }, + { "lat": 40.7820589, "lon": -73.9097661 }, + { "lat": 40.7816318, "lon": -73.9102894 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 527379669, + "bounds": { + "minlat": 40.7812357, + "minlon": -73.9095277, + "maxlat": 40.7816389, + "maxlon": -73.9090260 + }, + "nodes": [ + 5127233084, + 7779193095, + 5127233085 + ], + "geometry": [ + { "lat": 40.7816389, "lon": -73.9090260 }, + { "lat": 40.7815886, "lon": -73.9090886 }, + { "lat": 40.7812357, "lon": -73.9095277 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 527379670, + "bounds": { + "minlat": 40.7798470, + "minlon": -73.9098997, + "maxlat": 40.7811487, + "maxlon": -73.9083312 + }, + "nodes": [ + 5127233086, + 7779193135, + 5127233087 + ], + "geometry": [ + { "lat": 40.7811487, "lon": -73.9083312 }, + { "lat": 40.7810898, "lon": -73.9084021 }, + { "lat": 40.7798470, "lon": -73.9098997 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 527379671, + "bounds": { + "minlat": 40.7793996, + "minlon": -73.9102679, + "maxlat": 40.7801084, + "maxlon": -73.9092164 + }, + "nodes": [ + 5127233088, + 7806681625, + 5127233087, + 7806681605, + 5127233089, + 11107965042, + 5127233091 + ], + "geometry": [ + { "lat": 40.7801084, "lon": -73.9102679 }, + { "lat": 40.7800651, "lon": -73.9102069 }, + { "lat": 40.7798470, "lon": -73.9098997 }, + { "lat": 40.7796608, "lon": -73.9096374 }, + { "lat": 40.7796224, "lon": -73.9095703 }, + { "lat": 40.7795853, "lon": -73.9095107 }, + { "lat": 40.7793996, "lon": -73.9092164 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 527379672, + "bounds": { + "minlat": 40.7793996, + "minlon": -73.9092164, + "maxlat": 40.7806869, + "maxlon": -73.9076765 + }, + "nodes": [ + 5127233090, + 7779193110, + 5127233091 + ], + "geometry": [ + { "lat": 40.7806869, "lon": -73.9076765 }, + { "lat": 40.7806314, "lon": -73.9077431 }, + { "lat": 40.7793996, "lon": -73.9092164 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 527611226, + "bounds": { + "minlat": 40.7481912, + "minlon": -73.9722915, + "maxlat": 40.7482534, + "maxlon": -73.9722472 + }, + "nodes": [ + 42453008, + 9509176057, + 5481915415 + ], + "geometry": [ + { "lat": 40.7481912, "lon": -73.9722915 }, + { "lat": 40.7482461, "lon": -73.9722524 }, + { "lat": 40.7482534, "lon": -73.9722472 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 527611412, + "bounds": { + "minlat": 40.7481246, + "minlon": -73.9724983, + "maxlat": 40.7482423, + "maxlon": -73.9724123 + }, + "nodes": [ + 5129051729, + 10170589929, + 5481916825 + ], + "geometry": [ + { "lat": 40.7482423, "lon": -73.9724123 }, + { "lat": 40.7481819, "lon": -73.9724565 }, + { "lat": 40.7481246, "lon": -73.9724983 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 527623200, + "bounds": { + "minlat": 40.7467884, + "minlon": -73.9728441, + "maxlat": 40.7468679, + "maxlon": -73.9727877 + }, + "nodes": [ + 5129150834, + 11299035039, + 5129152223 + ], + "geometry": [ + { "lat": 40.7467884, "lon": -73.9728441 }, + { "lat": 40.7468592, "lon": -73.9727939 }, + { "lat": 40.7468679, "lon": -73.9727877 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 527623202, + "bounds": { + "minlat": 40.7468429, + "minlon": -73.9730709, + "maxlat": 40.7472207, + "maxlon": -73.9725628 + }, + "nodes": [ + 2827158538, + 11299035036, + 5129150838, + 5129150835, + 5129150837, + 5129150840, + 5129150841, + 5129150836, + 5129152223, + 2827158377, + 2827158525, + 5129150842, + 2827158532, + 2827158535, + 2827158533, + 2827158536, + 2827158537, + 2827158538 + ], + "geometry": [ + { "lat": 40.7472207, "lon": -73.9728955 }, + { "lat": 40.7470377, "lon": -73.9730351 }, + { "lat": 40.7469890, "lon": -73.9730709 }, + { "lat": 40.7469680, "lon": -73.9730222 }, + { "lat": 40.7469816, "lon": -73.9729964 }, + { "lat": 40.7469770, "lon": -73.9729852 }, + { "lat": 40.7469716, "lon": -73.9729717 }, + { "lat": 40.7469471, "lon": -73.9729738 }, + { "lat": 40.7468679, "lon": -73.9727877 }, + { "lat": 40.7468429, "lon": -73.9727322 }, + { "lat": 40.7470524, "lon": -73.9725787 }, + { "lat": 40.7470777, "lon": -73.9725628 }, + { "lat": 40.7471414, "lon": -73.9727136 }, + { "lat": 40.7471750, "lon": -73.9727921 }, + { "lat": 40.7471563, "lon": -73.9728058 }, + { "lat": 40.7471856, "lon": -73.9728750 }, + { "lat": 40.7472057, "lon": -73.9728602 }, + { "lat": 40.7472207, "lon": -73.9728955 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 527623396, + "bounds": { + "minlat": 40.7468679, + "minlon": -73.9727877, + "maxlat": 40.7468925, + "maxlon": -73.9727700 + }, + "nodes": [ + 5129152223, + 1581175976 + ], + "geometry": [ + { "lat": 40.7468679, "lon": -73.9727877 }, + { "lat": 40.7468925, "lon": -73.9727700 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 527853622, + "bounds": { + "minlat": 40.7441135, + "minlon": -73.9576126, + "maxlat": 40.7448801, + "maxlon": -73.9536413 + }, + "nodes": [ + 42826878, + 5034727232, + 3575033058, + 2473480047, + 42866845, + 2473480054, + 8318425490, + 9982774477, + 9982771536 + ], + "geometry": [ + { "lat": 40.7441135, "lon": -73.9536413 }, + { "lat": 40.7441333, "lon": -73.9537507 }, + { "lat": 40.7445403, "lon": -73.9558453 }, + { "lat": 40.7445507, "lon": -73.9558986 }, + { "lat": 40.7445659, "lon": -73.9559769 }, + { "lat": 40.7445823, "lon": -73.9560617 }, + { "lat": 40.7447143, "lon": -73.9567401 }, + { "lat": 40.7448770, "lon": -73.9575763 }, + { "lat": 40.7448801, "lon": -73.9576126 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "48th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 527859111, + "bounds": { + "minlat": 40.8777060, + "minlon": -73.9067030, + "maxlat": 40.8781340, + "maxlon": -73.9056570 + }, + "nodes": [ + 42771494, + 13038874707, + 12748328792, + 42732266 + ], + "geometry": [ + { "lat": 40.8781340, "lon": -73.9067030 }, + { "lat": 40.8781128, "lon": -73.9066512 }, + { "lat": 40.8777639, "lon": -73.9057985 }, + { "lat": 40.8777060, "lon": -73.9056570 } + ], + "tags": { + "highway": "residential", + "name": "Kimberly Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Kimberly", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 527867886, + "bounds": { + "minlat": 40.7408631, + "minlon": -73.9737424, + "maxlat": 40.7411689, + "maxlon": -73.9730197 + }, + "nodes": [ + 5131026405, + 5131059178, + 5131026393 + ], + "geometry": [ + { "lat": 40.7408631, "lon": -73.9730197 }, + { "lat": 40.7408785, "lon": -73.9730595 }, + { "lat": 40.7411689, "lon": -73.9737424 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 528202062, + "bounds": { + "minlat": 40.7978367, + "minlon": -73.9263610, + "maxlat": 40.7994798, + "maxlon": -73.9241977 + }, + "nodes": [ + 3659139069, + 2346816329, + 2346816333, + 3640160568, + 4929172781, + 2346816356, + 2346816358, + 2346816360, + 2346816362, + 9156860540, + 2346816365, + 2346816367, + 2346816369, + 2346816371, + 9156860539, + 401787634 + ], + "geometry": [ + { "lat": 40.7978367, "lon": -73.9242702 }, + { "lat": 40.7979585, "lon": -73.9241977 }, + { "lat": 40.7982076, "lon": -73.9247111 }, + { "lat": 40.7986328, "lon": -73.9255447 }, + { "lat": 40.7987309, "lon": -73.9257296 }, + { "lat": 40.7988230, "lon": -73.9258954 }, + { "lat": 40.7988829, "lon": -73.9260049 }, + { "lat": 40.7989358, "lon": -73.9260842 }, + { "lat": 40.7989868, "lon": -73.9261563 }, + { "lat": 40.7990405, "lon": -73.9262152 }, + { "lat": 40.7990974, "lon": -73.9262661 }, + { "lat": 40.7991640, "lon": -73.9263037 }, + { "lat": 40.7992484, "lon": -73.9263435 }, + { "lat": 40.7993272, "lon": -73.9263570 }, + { "lat": 40.7994001, "lon": -73.9263610 }, + { "lat": 40.7994798, "lon": -73.9263568 } + ], + "tags": { + "bicycle": "designated", + "covered": "no", + "highway": "service", + "lanes": "2", + "name": "Bronx Shore Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 528455094, + "bounds": { + "minlat": 40.7204235, + "minlon": -73.9411621, + "maxlat": 40.7205489, + "maxlon": -73.9411465 + }, + "nodes": [ + 5135455930, + 9937287952, + 5135455931 + ], + "geometry": [ + { "lat": 40.7204235, "lon": -73.9411465 }, + { "lat": 40.7204884, "lon": -73.9411546 }, + { "lat": 40.7205489, "lon": -73.9411621 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 528748997, + "bounds": { + "minlat": 40.7596014, + "minlon": -73.9728581, + "maxlat": 40.7616156, + "maxlon": -73.9680635 + }, + "nodes": [ + 42443612, + 11294629837, + 5995346751, + 7248586387, + 8914958309, + 5995346750, + 12834723232, + 10125228002, + 596775951, + 42443613, + 10125228003, + 10165922686, + 42443614, + 10165922683, + 10125255945, + 42443615 + ], + "geometry": [ + { "lat": 40.7616156, "lon": -73.9728581 }, + { "lat": 40.7615676, "lon": -73.9727414 }, + { "lat": 40.7613963, "lon": -73.9723255 }, + { "lat": 40.7613415, "lon": -73.9721939 }, + { "lat": 40.7612490, "lon": -73.9719719 }, + { "lat": 40.7611248, "lon": -73.9716737 }, + { "lat": 40.7610497, "lon": -73.9714940 }, + { "lat": 40.7610268, "lon": -73.9714394 }, + { "lat": 40.7609819, "lon": -73.9713318 }, + { "lat": 40.7609096, "lon": -73.9711599 }, + { "lat": 40.7608600, "lon": -73.9710454 }, + { "lat": 40.7602986, "lon": -73.9697310 }, + { "lat": 40.7602528, "lon": -73.9696237 }, + { "lat": 40.7602134, "lon": -73.9695295 }, + { "lat": 40.7596403, "lon": -73.9681577 }, + { "lat": 40.7596014, "lon": -73.9680635 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "East 56th Street", + "name:ru": "Восточная 56-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 528755490, + "bounds": { + "minlat": 40.7353940, + "minlon": -73.9746406, + "maxlat": 40.7354179, + "maxlon": -73.9744631 + }, + "nodes": [ + 13837909555, + 13837909550, + 13837909549 + ], + "geometry": [ + { "lat": 40.7353940, "lon": -73.9746406 }, + { "lat": 40.7354159, "lon": -73.9744780 }, + { "lat": 40.7354179, "lon": -73.9744631 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 528755491, + "bounds": { + "minlat": 40.7352079, + "minlon": -73.9746406, + "maxlat": 40.7353940, + "maxlon": -73.9745415 + }, + "nodes": [ + 13837909555, + 13837909557, + 13837909556, + 5137714775, + 5137714773 + ], + "geometry": [ + { "lat": 40.7353940, "lon": -73.9746406 }, + { "lat": 40.7353614, "lon": -73.9746026 }, + { "lat": 40.7353276, "lon": -73.9745779 }, + { "lat": 40.7352803, "lon": -73.9745604 }, + { "lat": 40.7352079, "lon": -73.9745415 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 528759347, + "bounds": { + "minlat": 40.7325693, + "minlon": -73.9744408, + "maxlat": 40.7327384, + "maxlon": -73.9743998 + }, + "nodes": [ + 387184988, + 42439191 + ], + "geometry": [ + { "lat": 40.7325693, "lon": -73.9743998 }, + { "lat": 40.7327384, "lon": -73.9744408 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "left|through|through", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 528760528, + "bounds": { + "minlat": 40.7105224, + "minlon": -73.9617922, + "maxlat": 40.7107667, + "maxlon": -73.9609408 + }, + "nodes": [ + 42509277, + 6338024010, + 9955210436, + 6248588468, + 9967920686, + 8842464594, + 8842464596, + 9967920685, + 42467554 + ], + "geometry": [ + { "lat": 40.7107667, "lon": -73.9617922 }, + { "lat": 40.7107522, "lon": -73.9617195 }, + { "lat": 40.7105529, "lon": -73.9610811 }, + { "lat": 40.7105354, "lon": -73.9610230 }, + { "lat": 40.7105278, "lon": -73.9609962 }, + { "lat": 40.7105234, "lon": -73.9609764 }, + { "lat": 40.7105224, "lon": -73.9609619 }, + { "lat": 40.7105239, "lon": -73.9609497 }, + { "lat": 40.7105267, "lon": -73.9609408 } + ], + "tags": { + "highway": "residential", + "name": "South 5th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 528760529, + "bounds": { + "minlat": 40.7112358, + "minlon": -73.9649580, + "maxlat": 40.7116888, + "maxlon": -73.9633640 + }, + "nodes": [ + 42514914, + 6235394737, + 8842464598, + 8842464610, + 42514918 + ], + "geometry": [ + { "lat": 40.7116780, "lon": -73.9649580 }, + { "lat": 40.7116888, "lon": -73.9648452 }, + { "lat": 40.7114927, "lon": -73.9642038 }, + { "lat": 40.7112622, "lon": -73.9634502 }, + { "lat": 40.7112358, "lon": -73.9633640 } + ], + "tags": { + "highway": "residential", + "name": "South 5th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 528791520, + "bounds": { + "minlat": 40.7700073, + "minlon": -73.9408320, + "maxlat": 40.7710136, + "maxlon": -73.9402566 + }, + "nodes": [ + 3216637125, + 7530016539, + 7529976547, + 7529909892 + ], + "geometry": [ + { "lat": 40.7700073, "lon": -73.9408320 }, + { "lat": 40.7703662, "lon": -73.9405104 }, + { "lat": 40.7706940, "lon": -73.9403012 }, + { "lat": 40.7710136, "lon": -73.9402566 } + ], + "tags": { + "bicycle": "designated", + "foot": "designated", + "highway": "service", + "lanes": "2", + "name": "Roosevelt Island Greenway" + } +}, +{ + "type": "way", + "id": 528792681, + "bounds": { + "minlat": 40.7309615, + "minlon": -73.9740133, + "maxlat": 40.7312891, + "maxlon": -73.9739374 + }, + "nodes": [ + 7147636389, + 9142398640, + 5137978706, + 5145531517 + ], + "geometry": [ + { "lat": 40.7309615, "lon": -73.9739374 }, + { "lat": 40.7311134, "lon": -73.9739708 }, + { "lat": 40.7311412, "lon": -73.9739769 }, + { "lat": 40.7312891, "lon": -73.9740133 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 528792682, + "bounds": { + "minlat": 40.7323903, + "minlon": -73.9743998, + "maxlat": 40.7325693, + "maxlon": -73.9743564 + }, + "nodes": [ + 5137978709, + 13837911390, + 3686061914, + 387184988 + ], + "geometry": [ + { "lat": 40.7323903, "lon": -73.9743564 }, + { "lat": 40.7325143, "lon": -73.9743865 }, + { "lat": 40.7325648, "lon": -73.9743993 }, + { "lat": 40.7325693, "lon": -73.9743998 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 529683000, + "bounds": { + "minlat": 40.8151602, + "minlon": -73.9181739, + "maxlat": 40.8153301, + "maxlon": -73.9177556 + }, + "nodes": [ + 42761255, + 9908624617, + 7695510436, + 9908624618, + 42746065 + ], + "geometry": [ + { "lat": 40.8153301, "lon": -73.9181739 }, + { "lat": 40.8153196, "lon": -73.9181380 }, + { "lat": 40.8153050, "lon": -73.9180987 }, + { "lat": 40.8151860, "lon": -73.9178141 }, + { "lat": 40.8151602, "lon": -73.9177556 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "residential", + "maxspeed:conditional": "5 mph @ (Mo-Fr 10:00-18:00)", + "motor_vehicle:conditional": "destination @ (Mo-Fr 10:00-18:00)", + "name": "East 148th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "148th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 529712889, + "bounds": { + "minlat": 40.7302630, + "minlon": -73.9743252, + "maxlat": 40.7303240, + "maxlon": -73.9741803 + }, + "nodes": [ + 5145329326, + 5145327519, + 5145329324 + ], + "geometry": [ + { "lat": 40.7303240, "lon": -73.9743252 }, + { "lat": 40.7302776, "lon": -73.9742151 }, + { "lat": 40.7302630, "lon": -73.9741803 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 529712890, + "bounds": { + "minlat": 40.7294744, + "minlon": -73.9734746, + "maxlat": 40.7298523, + "maxlon": -73.9732041 + }, + "nodes": [ + 5145327518, + 5481972113, + 5481972115 + ], + "geometry": [ + { "lat": 40.7298523, "lon": -73.9732041 }, + { "lat": 40.7296843, "lon": -73.9733244 }, + { "lat": 40.7294744, "lon": -73.9734746 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 529713036, + "bounds": { + "minlat": 40.7287512, + "minlon": -73.9734571, + "maxlat": 40.7292368, + "maxlon": -73.9722092 + }, + "nodes": [ + 5145330172, + 5481972112, + 5481972118, + 5481972134, + 5481972120, + 5481972131, + 5145327514, + 5481972122, + 5481972125 + ], + "geometry": [ + { "lat": 40.7292368, "lon": -73.9734571 }, + { "lat": 40.7291863, "lon": -73.9733326 }, + { "lat": 40.7290175, "lon": -73.9729168 }, + { "lat": 40.7289552, "lon": -73.9727626 }, + { "lat": 40.7289458, "lon": -73.9727377 }, + { "lat": 40.7288760, "lon": -73.9725522 }, + { "lat": 40.7288535, "lon": -73.9724931 }, + { "lat": 40.7288364, "lon": -73.9724445 }, + { "lat": 40.7287512, "lon": -73.9722092 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 16th Street", + "name:ru": "Восточная 16-я стрит", + "name_1": "East 16 Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 529713037, + "bounds": { + "minlat": 40.7292969, + "minlon": -73.9736006, + "maxlat": 40.7293850, + "maxlon": -73.9735380 + }, + "nodes": [ + 5145330173, + 5145329328, + 5145327520 + ], + "geometry": [ + { "lat": 40.7293850, "lon": -73.9735380 }, + { "lat": 40.7293642, "lon": -73.9735528 }, + { "lat": 40.7292969, "lon": -73.9736006 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 529713038, + "bounds": { + "minlat": 40.7287512, + "minlon": -73.9741803, + "maxlat": 40.7302630, + "maxlon": -73.9721579 + }, + "nodes": [ + 5145329324, + 5481972117, + 5145327518, + 5145329325, + 5145329321, + 5481972130, + 5145327515, + 5145329322, + 5145327516, + 10708241619, + 5145329329, + 10708241620, + 5145329327, + 10720176564, + 5481972125 + ], + "geometry": [ + { "lat": 40.7302630, "lon": -73.9741803 }, + { "lat": 40.7301057, "lon": -73.9738064 }, + { "lat": 40.7298523, "lon": -73.9732041 }, + { "lat": 40.7298350, "lon": -73.9731630 }, + { "lat": 40.7298579, "lon": -73.9729260 }, + { "lat": 40.7298295, "lon": -73.9728590 }, + { "lat": 40.7297084, "lon": -73.9725663 }, + { "lat": 40.7294774, "lon": -73.9723986 }, + { "lat": 40.7291572, "lon": -73.9722236 }, + { "lat": 40.7290836, "lon": -73.9721920 }, + { "lat": 40.7290114, "lon": -73.9721706 }, + { "lat": 40.7289355, "lon": -73.9721579 }, + { "lat": 40.7288707, "lon": -73.9721648 }, + { "lat": 40.7288152, "lon": -73.9721814 }, + { "lat": 40.7287512, "lon": -73.9722092 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 529741030, + "bounds": { + "minlat": 40.7313991, + "minlon": -73.9822812, + "maxlat": 40.7323851, + "maxlon": -73.9815944 + }, + "nodes": [ + 4161568342, + 9913605319, + 9913605318, + 387184985, + 9913605322, + 4298757056, + 4298757046, + 9913605317 + ], + "geometry": [ + { "lat": 40.7313991, "lon": -73.9822754 }, + { "lat": 40.7314181, "lon": -73.9822812 }, + { "lat": 40.7314334, "lon": -73.9822777 }, + { "lat": 40.7314499, "lon": -73.9822698 }, + { "lat": 40.7318680, "lon": -73.9819705 }, + { "lat": 40.7319098, "lon": -73.9819405 }, + { "lat": 40.7320265, "lon": -73.9818548 }, + { "lat": 40.7323851, "lon": -73.9815944 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue Service Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 529741033, + "bounds": { + "minlat": 40.7286573, + "minlon": -73.9822754, + "maxlat": 40.7313991, + "maxlon": -73.9757574 + }, + "nodes": [ + 1739869219, + 1739869227, + 387184983, + 1989931103, + 4806876056, + 4298757063, + 595655123, + 4298757051, + 9907956889, + 9907956894, + 4298757066, + 595655124, + 4298757014, + 9882223231, + 9882223233, + 387184984, + 9913605321, + 9913605320, + 4161568342 + ], + "geometry": [ + { "lat": 40.7286600, "lon": -73.9757574 }, + { "lat": 40.7286573, "lon": -73.9757821 }, + { "lat": 40.7286637, "lon": -73.9758057 }, + { "lat": 40.7288499, "lon": -73.9762552 }, + { "lat": 40.7292450, "lon": -73.9771914 }, + { "lat": 40.7295327, "lon": -73.9778695 }, + { "lat": 40.7295617, "lon": -73.9779380 }, + { "lat": 40.7295961, "lon": -73.9780201 }, + { "lat": 40.7298092, "lon": -73.9785245 }, + { "lat": 40.7303089, "lon": -73.9797101 }, + { "lat": 40.7305147, "lon": -73.9801985 }, + { "lat": 40.7305456, "lon": -73.9802717 }, + { "lat": 40.7305774, "lon": -73.9803472 }, + { "lat": 40.7308610, "lon": -73.9810239 }, + { "lat": 40.7310503, "lon": -73.9814758 }, + { "lat": 40.7313585, "lon": -73.9822112 }, + { "lat": 40.7313713, "lon": -73.9822413 }, + { "lat": 40.7313843, "lon": -73.9822625 }, + { "lat": 40.7313991, "lon": -73.9822754 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 14th Street Service Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 530011945, + "bounds": { + "minlat": 40.7280258, + "minlon": -73.9764641, + "maxlat": 40.7282395, + "maxlon": -73.9759721 + }, + "nodes": [ + 5147744247, + 8309479558, + 5147744245, + 5147744248 + ], + "geometry": [ + { "lat": 40.7280258, "lon": -73.9759721 }, + { "lat": 40.7280743, "lon": -73.9760843 }, + { "lat": 40.7281227, "lon": -73.9761955 }, + { "lat": 40.7282395, "lon": -73.9764641 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 530011946, + "bounds": { + "minlat": 40.7278898, + "minlon": -73.9763634, + "maxlat": 40.7281227, + "maxlon": -73.9761955 + }, + "nodes": [ + 5147744245, + 5147744246 + ], + "geometry": [ + { "lat": 40.7281227, "lon": -73.9761955 }, + { "lat": 40.7278898, "lon": -73.9763634 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 530038747, + "bounds": { + "minlat": 40.7422774, + "minlon": -73.9894448, + "maxlat": 40.7430499, + "maxlon": -73.9890436 + }, + "nodes": [ + 5147972313, + 5256074551, + 5147973324, + 5147972314, + 2706908875, + 10177727005, + 5256074550, + 5147973332, + 10177726964, + 6210354204, + 5256074555, + 10177726987, + 6210354203, + 3008856925, + 10177726999, + 10177726998, + 10177726997, + 10177726996, + 10177726995, + 10177726994, + 3008856927, + 3008857237, + 3008857238, + 10177726993, + 10177727031, + 10177726992, + 10177726991, + 10177726990, + 10177726989, + 10177727002, + 5147973323, + 10177727035, + 10177727000, + 5147972313 + ], + "geometry": [ + { "lat": 40.7429935, "lon": -73.9892670 }, + { "lat": 40.7428419, "lon": -73.9892883 }, + { "lat": 40.7428478, "lon": -73.9893022 }, + { "lat": 40.7424807, "lon": -73.9893540 }, + { "lat": 40.7424557, "lon": -73.9894152 }, + { "lat": 40.7424380, "lon": -73.9894281 }, + { "lat": 40.7424152, "lon": -73.9894448 }, + { "lat": 40.7423749, "lon": -73.9893480 }, + { "lat": 40.7422925, "lon": -73.9891594 }, + { "lat": 40.7422774, "lon": -73.9891255 }, + { "lat": 40.7423016, "lon": -73.9891073 }, + { "lat": 40.7423942, "lon": -73.9890436 }, + { "lat": 40.7424064, "lon": -73.9890755 }, + { "lat": 40.7424218, "lon": -73.9891104 }, + { "lat": 40.7424412, "lon": -73.9891497 }, + { "lat": 40.7424678, "lon": -73.9891882 }, + { "lat": 40.7424987, "lon": -73.9892251 }, + { "lat": 40.7425271, "lon": -73.9892493 }, + { "lat": 40.7425503, "lon": -73.9892626 }, + { "lat": 40.7425802, "lon": -73.9892728 }, + { "lat": 40.7426096, "lon": -73.9892751 }, + { "lat": 40.7428460, "lon": -73.9892437 }, + { "lat": 40.7428707, "lon": -73.9892137 }, + { "lat": 40.7429663, "lon": -73.9892012 }, + { "lat": 40.7429805, "lon": -73.9892016 }, + { "lat": 40.7429866, "lon": -73.9892019 }, + { "lat": 40.7430052, "lon": -73.9892081 }, + { "lat": 40.7430182, "lon": -73.9892204 }, + { "lat": 40.7430271, "lon": -73.9892364 }, + { "lat": 40.7430291, "lon": -73.9892410 }, + { "lat": 40.7430499, "lon": -73.9892890 }, + { "lat": 40.7430200, "lon": -73.9892917 }, + { "lat": 40.7430045, "lon": -73.9892932 }, + { "lat": 40.7429935, "lon": -73.9892670 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "noname": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 530568983, + "bounds": { + "minlat": 40.7118380, + "minlon": -73.9174890, + "maxlat": 40.7133230, + "maxlon": -73.9161372 + }, + "nodes": [ + 7711279832, + 9744131377, + 9325520199, + 9744131367, + 42809924 + ], + "geometry": [ + { "lat": 40.7133230, "lon": -73.9161372 }, + { "lat": 40.7132325, "lon": -73.9161557 }, + { "lat": 40.7131453, "lon": -73.9161736 }, + { "lat": 40.7118885, "lon": -73.9174382 }, + { "lat": 40.7118380, "lon": -73.9174890 } + ], + "tags": { + "highway": "residential", + "name": "Troutman Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 530568988, + "bounds": { + "minlat": 40.6998610, + "minlon": -73.9282830, + "maxlat": 40.7028126, + "maxlon": -73.9253929 + }, + "nodes": [ + 42486718, + 6252542702, + 4702537276, + 42496656, + 4702537274, + 9704024948, + 42516312 + ], + "geometry": [ + { "lat": 40.6998610, "lon": -73.9282830 }, + { "lat": 40.6999185, "lon": -73.9282266 }, + { "lat": 40.7012777, "lon": -73.9268929 }, + { "lat": 40.7013340, "lon": -73.9268380 }, + { "lat": 40.7013958, "lon": -73.9267772 }, + { "lat": 40.7027522, "lon": -73.9254523 }, + { "lat": 40.7028126, "lon": -73.9253929 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Starr Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY;Kings, NY", + "tiger:name_base": "Starr", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11385;11237", + "tiger:zip_right": "11385;11237" + } +}, +{ + "type": "way", + "id": 530569001, + "bounds": { + "minlat": 40.6944290, + "minlon": -73.9242490, + "maxlat": 40.7079080, + "maxlon": -73.9108050 + }, + "nodes": [ + 42809951, + 9761709230, + 9761709301, + 42814485, + 9761709299, + 9761722022, + 42814482, + 9761722024, + 9761722085, + 42814480, + 9761722087, + 9755789697, + 42471607, + 9755789696, + 9753035530, + 42471605, + 9753035529, + 8347648050, + 9753035554, + 42471602, + 9753035553, + 9753035537, + 42471599, + 9753035536, + 10087025147, + 42471595, + 10087025150, + 9799250790, + 42471591, + 9799250788, + 12883509061, + 9795578693, + 42471586, + 9795578695, + 7688165330, + 7931136932, + 9795578706, + 42471580 + ], + "geometry": [ + { "lat": 40.7079080, "lon": -73.9108050 }, + { "lat": 40.7078592, "lon": -73.9108548 }, + { "lat": 40.7068411, "lon": -73.9118938 }, + { "lat": 40.7067840, "lon": -73.9119520 }, + { "lat": 40.7067326, "lon": -73.9120046 }, + { "lat": 40.7059457, "lon": -73.9128098 }, + { "lat": 40.7058790, "lon": -73.9128780 }, + { "lat": 40.7058170, "lon": -73.9129422 }, + { "lat": 40.7048121, "lon": -73.9139841 }, + { "lat": 40.7047557, "lon": -73.9140425 }, + { "lat": 40.7047002, "lon": -73.9140981 }, + { "lat": 40.7037347, "lon": -73.9150648 }, + { "lat": 40.7036770, "lon": -73.9151260 }, + { "lat": 40.7036223, "lon": -73.9151816 }, + { "lat": 40.7025581, "lon": -73.9162648 }, + { "lat": 40.7024990, "lon": -73.9163250 }, + { "lat": 40.7024476, "lon": -73.9163757 }, + { "lat": 40.7020693, "lon": -73.9167465 }, + { "lat": 40.7010363, "lon": -73.9177597 }, + { "lat": 40.7009776, "lon": -73.9178173 }, + { "lat": 40.7009196, "lon": -73.9178744 }, + { "lat": 40.6994463, "lon": -73.9193236 }, + { "lat": 40.6993920, "lon": -73.9193770 }, + { "lat": 40.6993332, "lon": -73.9194330 }, + { "lat": 40.6987053, "lon": -73.9200312 }, + { "lat": 40.6986327, "lon": -73.9201003 }, + { "lat": 40.6985484, "lon": -73.9201857 }, + { "lat": 40.6979772, "lon": -73.9207641 }, + { "lat": 40.6979180, "lon": -73.9208240 }, + { "lat": 40.6978601, "lon": -73.9208808 }, + { "lat": 40.6970428, "lon": -73.9216826 }, + { "lat": 40.6965018, "lon": -73.9222133 }, + { "lat": 40.6964430, "lon": -73.9222710 }, + { "lat": 40.6963865, "lon": -73.9223265 }, + { "lat": 40.6962698, "lon": -73.9224411 }, + { "lat": 40.6945145, "lon": -73.9241650 }, + { "lat": 40.6944824, "lon": -73.9241965 }, + { "lat": 40.6944290, "lon": -73.9242490 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "yes", + "highway": "residential", + "lanes": "1", + "maxheight:signed": "no", + "maxspeed": "25 mph", + "name": "Harman Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 531178033, + "bounds": { + "minlat": 40.8018170, + "minlon": -73.9933765, + "maxlat": 40.8018792, + "maxlon": -73.9930896 + }, + "nodes": [ + 5156502413, + 7229615653 + ], + "geometry": [ + { "lat": 40.8018170, "lon": -73.9933765 }, + { "lat": 40.8018792, "lon": -73.9930896 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Somerset Lane" + } +}, +{ + "type": "way", + "id": 531272641, + "bounds": { + "minlat": 40.8087852, + "minlon": -73.9598066, + "maxlat": 40.8088184, + "maxlon": -73.9597246 + }, + "nodes": [ + 13819601126, + 7323390436, + 10182105260, + 6919167828 + ], + "geometry": [ + { "lat": 40.8087852, "lon": -73.9597246 }, + { "lat": 40.8088060, "lon": -73.9597760 }, + { "lat": 40.8088175, "lon": -73.9598043 }, + { "lat": 40.8088184, "lon": -73.9598066 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 531510638, + "bounds": { + "minlat": 40.7188452, + "minlon": -73.9932612, + "maxlat": 40.7190456, + "maxlon": -73.9926039 + }, + "nodes": [ + 4539951607, + 4539951617, + 6330061754, + 6330061746, + 42432111 + ], + "geometry": [ + { "lat": 40.7190456, "lon": -73.9932612 }, + { "lat": 40.7190257, "lon": -73.9931959 }, + { "lat": 40.7188986, "lon": -73.9927788 }, + { "lat": 40.7188655, "lon": -73.9926704 }, + { "lat": 40.7188452, "lon": -73.9926039 } + ], + "tags": { + "highway": "pedestrian", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ru": "Брум-стрит", + "surface": "paving_stones", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 531803458, + "bounds": { + "minlat": 40.8031639, + "minlon": -73.9345569, + "maxlat": 40.8037471, + "maxlon": -73.9342010 + }, + "nodes": [ + 5161751675, + 7927125719, + 7927125663, + 7927112156, + 13703396271, + 5161751675, + 7927125690, + 5161751678, + 10170641436, + 5161751673 + ], + "geometry": [ + { "lat": 40.8033828, "lon": -73.9344304 }, + { "lat": 40.8034403, "lon": -73.9345569 }, + { "lat": 40.8037471, "lon": -73.9343339 }, + { "lat": 40.8036907, "lon": -73.9342010 }, + { "lat": 40.8035896, "lon": -73.9342763 }, + { "lat": 40.8033828, "lon": -73.9344304 }, + { "lat": 40.8033149, "lon": -73.9344259 }, + { "lat": 40.8032897, "lon": -73.9344457 }, + { "lat": 40.8032615, "lon": -73.9344653 }, + { "lat": 40.8031639, "lon": -73.9345327 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 531803459, + "bounds": { + "minlat": 40.8030320, + "minlon": -73.9337643, + "maxlat": 40.8031853, + "maxlon": -73.9333779 + }, + "nodes": [ + 5161751674, + 7926756728, + 8741475161, + 8741475151, + 5161751676, + 8741475148 + ], + "geometry": [ + { "lat": 40.8030320, "lon": -73.9333779 }, + { "lat": 40.8030868, "lon": -73.9335056 }, + { "lat": 40.8031223, "lon": -73.9335883 }, + { "lat": 40.8031577, "lon": -73.9336709 }, + { "lat": 40.8031853, "lon": -73.9337362 }, + { "lat": 40.8031505, "lon": -73.9337643 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 531981969, + "bounds": { + "minlat": 40.7808192, + "minlon": -73.9507901, + "maxlat": 40.7813292, + "maxlon": -73.9504518 + }, + "nodes": [ + 5163237441, + 7132406721, + 5163237442 + ], + "geometry": [ + { "lat": 40.7808192, "lon": -73.9507901 }, + { "lat": 40.7808846, "lon": -73.9507459 }, + { "lat": 40.7813292, "lon": -73.9504518 } + ], + "tags": { + "bicycle": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 531982276, + "bounds": { + "minlat": 40.7816992, + "minlon": -73.9500875, + "maxlat": 40.7820517, + "maxlon": -73.9498246 + }, + "nodes": [ + 5163244066, + 6185259925, + 6865110155, + 5163244067 + ], + "geometry": [ + { "lat": 40.7820517, "lon": -73.9498246 }, + { "lat": 40.7819956, "lon": -73.9498654 }, + { "lat": 40.7819156, "lon": -73.9499253 }, + { "lat": 40.7816992, "lon": -73.9500875 } + ], + "tags": { + "bicycle": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 532047247, + "bounds": { + "minlat": 40.7578199, + "minlon": -73.9594365, + "maxlat": 40.7580415, + "maxlon": -73.9592752 + }, + "nodes": [ + 5163687759, + 6795524072 + ], + "geometry": [ + { "lat": 40.7578199, "lon": -73.9594365 }, + { "lat": 40.7580415, "lon": -73.9592752 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Riverview Terrace" + } +}, +{ + "type": "way", + "id": 533394975, + "bounds": { + "minlat": 40.7173006, + "minlon": -73.9799952, + "maxlat": 40.7175542, + "maxlon": -73.9794215 + }, + "nodes": [ + 42437118, + 4300994823, + 8310245796, + 4300992088, + 42437119, + 5174867983 + ], + "geometry": [ + { "lat": 40.7175542, "lon": -73.9799952 }, + { "lat": 40.7175093, "lon": -73.9798726 }, + { "lat": 40.7174648, "lon": -73.9797358 }, + { "lat": 40.7173780, "lon": -73.9794691 }, + { "lat": 40.7173459, "lon": -73.9794275 }, + { "lat": 40.7173006, "lon": -73.9794215 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "name:ko": "리빙턴 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 533395791, + "bounds": { + "minlat": 40.7079255, + "minlon": -73.9376878, + "maxlat": 40.7080502, + "maxlon": -73.9376496 + }, + "nodes": [ + 2997098731, + 9755354485, + 5174882131 + ], + "geometry": [ + { "lat": 40.7080502, "lon": -73.9376878 }, + { "lat": 40.7079942, "lon": -73.9376706 }, + { "lat": 40.7079255, "lon": -73.9376496 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 533438312, + "bounds": { + "minlat": 40.7536507, + "minlon": -73.9948537, + "maxlat": 40.7542803, + "maxlon": -73.9944393 + }, + "nodes": [ + 5175213278, + 5175213295, + 5175213272, + 5175213275, + 5175213291, + 5175213287, + 5175213286, + 5175213307, + 5175213310, + 8660596937, + 5175213312 + ], + "geometry": [ + { "lat": 40.7536507, "lon": -73.9948537 }, + { "lat": 40.7537144, "lon": -73.9948046 }, + { "lat": 40.7539207, "lon": -73.9946554 }, + { "lat": 40.7539359, "lon": -73.9946473 }, + { "lat": 40.7539542, "lon": -73.9946433 }, + { "lat": 40.7539715, "lon": -73.9946433 }, + { "lat": 40.7539936, "lon": -73.9946412 }, + { "lat": 40.7540162, "lon": -73.9946339 }, + { "lat": 40.7540363, "lon": -73.9946211 }, + { "lat": 40.7542239, "lon": -73.9944813 }, + { "lat": 40.7542803, "lon": -73.9944393 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 533464384, + "bounds": { + "minlat": 40.7390235, + "minlon": -73.9730741, + "maxlat": 40.7399483, + "maxlon": -73.9727291 + }, + "nodes": [ + 42457925, + 4412043544, + 4412043539, + 42457940 + ], + "geometry": [ + { "lat": 40.7390235, "lon": -73.9730741 }, + { "lat": 40.7391127, "lon": -73.9730216 }, + { "lat": 40.7393089, "lon": -73.9729446 }, + { "lat": 40.7399483, "lon": -73.9727291 } + ], + "tags": { + "bicycle": "no", + "destination": "East 34th Street", + "destination:ref": "I 495", + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "FDR Drive Service Road East;Fdr Drive Service Road East", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 533472942, + "bounds": { + "minlat": 40.7087309, + "minlon": -73.9995058, + "maxlat": 40.7088370, + "maxlon": -73.9993506 + }, + "nodes": [ + 4158749895, + 11032985349, + 5175468524 + ], + "geometry": [ + { "lat": 40.7088370, "lon": -73.9993506 }, + { "lat": 40.7087902, "lon": -73.9994187 }, + { "lat": 40.7087309, "lon": -73.9995058 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 533472943, + "bounds": { + "minlat": 40.7088370, + "minlon": -74.0003258, + "maxlat": 40.7096315, + "maxlon": -73.9993506 + }, + "nodes": [ + 4158749895, + 11037188688, + 9907939559, + 5753702311 + ], + "geometry": [ + { "lat": 40.7088370, "lon": -73.9993506 }, + { "lat": 40.7094711, "lon": -74.0001305 }, + { "lat": 40.7095912, "lon": -74.0002763 }, + { "lat": 40.7096315, "lon": -74.0003258 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Robert F. Wagner Sr. Place", + "name:etymology:wikidata": "Q213721", + "name:ko": "로버트 F. 와그너 시니어 플레이스", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 533593954, + "bounds": { + "minlat": 40.6995668, + "minlon": -73.9729188, + "maxlat": 40.7013488, + "maxlon": -73.9709542 + }, + "nodes": [ + 5176477240, + 9998803724, + 9998803723, + 9998803722, + 9998803721, + 5176477254, + 7131680106 + ], + "geometry": [ + { "lat": 40.6995668, "lon": -73.9709562 }, + { "lat": 40.6996038, "lon": -73.9709542 }, + { "lat": 40.6996257, "lon": -73.9709573 }, + { "lat": 40.6996415, "lon": -73.9709640 }, + { "lat": 40.6996564, "lon": -73.9709742 }, + { "lat": 40.6996791, "lon": -73.9709956 }, + { "lat": 40.7013488, "lon": -73.9729188 } + ], + "tags": { + "access": "private", + "bicycle": "destination", + "cycleway": "shared_lane", + "foot": "destination", + "highway": "service", + "lanes": "2", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 533638455, + "bounds": { + "minlat": 40.8018812, + "minlon": -73.9166703, + "maxlat": 40.8020782, + "maxlon": -73.9165177 + }, + "nodes": [ + 471244587, + 596271375 + ], + "geometry": [ + { "lat": 40.8018812, "lon": -73.9166703 }, + { "lat": 40.8020782, "lon": -73.9165177 } + ], + "tags": { + "bicycle": "no", + "destination:ref": "I 278", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "I-278", + "tiger:name_type": "Expy", + "tiger:reviewed": "no", + "toll": "no" + } +}, +{ + "type": "way", + "id": 533801306, + "bounds": { + "minlat": 40.7083460, + "minlon": -73.9115480, + "maxlat": 40.7129527, + "maxlon": -73.9069021 + }, + "nodes": [ + 42809946, + 9761709264, + 11128528742, + 8588167420, + 42806573, + 10686537714, + 9763022363, + 42851912, + 9763022366, + 11128528747, + 11128528744, + 11128528749, + 11128528753, + 11128528756, + 11128528759, + 11128528762, + 11128528765, + 10686537744, + 9747567463, + 42888334, + 9747567462, + 9349778600, + 9747646475, + 42843612 + ], + "geometry": [ + { "lat": 40.7083460, "lon": -73.9115480 }, + { "lat": 40.7083925, "lon": -73.9114997 }, + { "lat": 40.7087211, "lon": -73.9111644 }, + { "lat": 40.7093413, "lon": -73.9105316 }, + { "lat": 40.7094290, "lon": -73.9104420 }, + { "lat": 40.7105618, "lon": -73.9092826 }, + { "lat": 40.7105754, "lon": -73.9092687 }, + { "lat": 40.7106210, "lon": -73.9092220 }, + { "lat": 40.7106757, "lon": -73.9091662 }, + { "lat": 40.7109457, "lon": -73.9088998 }, + { "lat": 40.7110519, "lon": -73.9087941 }, + { "lat": 40.7111583, "lon": -73.9086889 }, + { "lat": 40.7112614, "lon": -73.9085852 }, + { "lat": 40.7113662, "lon": -73.9084784 }, + { "lat": 40.7114730, "lon": -73.9083741 }, + { "lat": 40.7115797, "lon": -73.9082698 }, + { "lat": 40.7116855, "lon": -73.9081665 }, + { "lat": 40.7117636, "lon": -73.9080902 }, + { "lat": 40.7117990, "lon": -73.9080552 }, + { "lat": 40.7118491, "lon": -73.9080039 }, + { "lat": 40.7119041, "lon": -73.9079474 }, + { "lat": 40.7128310, "lon": -73.9069672 }, + { "lat": 40.7128817, "lon": -73.9069401 }, + { "lat": 40.7129527, "lon": -73.9069021 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "name": "Himrod Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 533836333, + "bounds": { + "minlat": 40.7291700, + "minlon": -73.9748133, + "maxlat": 40.7294689, + "maxlon": -73.9740105 + }, + "nodes": [ + 5178499892, + 5690446983, + 5690446984, + 5178499890, + 5178499889, + 5178499891 + ], + "geometry": [ + { "lat": 40.7294689, "lon": -73.9740105 }, + { "lat": 40.7294179, "lon": -73.9740471 }, + { "lat": 40.7294037, "lon": -73.9740573 }, + { "lat": 40.7292550, "lon": -73.9741611 }, + { "lat": 40.7291700, "lon": -73.9743862 }, + { "lat": 40.7293508, "lon": -73.9748133 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 533862615, + "bounds": { + "minlat": 40.7417529, + "minlon": -73.9494536, + "maxlat": 40.7423276, + "maxlon": -73.9492952 + }, + "nodes": [ + 9983412342, + 277046533, + 9179070596, + 276317215 + ], + "geometry": [ + { "lat": 40.7417529, "lon": -73.9494536 }, + { "lat": 40.7418686, "lon": -73.9494127 }, + { "lat": 40.7422093, "lon": -73.9493033 }, + { "lat": 40.7423276, "lon": -73.9492952 } + ], + "tags": { + "bicycle": "no", + "destination": "21st Street", + "destination:ref": "NY 25A East", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "2", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 533916820, + "bounds": { + "minlat": 40.8510807, + "minlon": -73.9693212, + "maxlat": 40.8526127, + "maxlon": -73.9684136 + }, + "nodes": [ + 5179132348, + 5179132367 + ], + "geometry": [ + { "lat": 40.8510807, "lon": -73.9693212 }, + { "lat": 40.8526127, "lon": -73.9684136 } + ], + "tags": { + "highway": "unclassified", + "name": "Hudson Street" + } +}, +{ + "type": "way", + "id": 533916821, + "bounds": { + "minlat": 40.8527042, + "minlon": -73.9690465, + "maxlat": 40.8528155, + "maxlon": -73.9686968 + }, + "nodes": [ + 5179132364, + 6894909021, + 6894909018 + ], + "geometry": [ + { "lat": 40.8528155, "lon": -73.9690465 }, + { "lat": 40.8527117, "lon": -73.9687258 }, + { "lat": 40.8527042, "lon": -73.9686968 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxheight:signed": "no", + "name": "Central Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 533916822, + "bounds": { + "minlat": 40.8522918, + "minlon": -73.9673360, + "maxlat": 40.8523306, + "maxlon": -73.9670246 + }, + "nodes": [ + 5179132362, + 5179132343, + 10000920122, + 5179132350, + 5330468455, + 5330468453, + 5179132349 + ], + "geometry": [ + { "lat": 40.8523306, "lon": -73.9673360 }, + { "lat": 40.8523112, "lon": -73.9672833 }, + { "lat": 40.8523090, "lon": -73.9672715 }, + { "lat": 40.8522952, "lon": -73.9671971 }, + { "lat": 40.8522918, "lon": -73.9671341 }, + { "lat": 40.8522990, "lon": -73.9670899 }, + { "lat": 40.8523205, "lon": -73.9670246 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 533917044, + "bounds": { + "minlat": 40.8522527, + "minlon": -73.9669206, + "maxlat": 40.8523164, + "maxlon": -73.9667993 + }, + "nodes": [ + 5179134369, + 5330468454, + 5179134362 + ], + "geometry": [ + { "lat": 40.8523164, "lon": -73.9669206 }, + { "lat": 40.8522807, "lon": -73.9668852 }, + { "lat": 40.8522527, "lon": -73.9667993 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 534164487, + "bounds": { + "minlat": 40.7002464, + "minlon": -73.9908805, + "maxlat": 40.7007775, + "maxlon": -73.9907507 + }, + "nodes": [ + 248606886, + 1258945657, + 2301276719, + 2301276721, + 2301276723, + 248606885, + 2825594200, + 3026465842, + 3026465848, + 42519809 + ], + "geometry": [ + { "lat": 40.7002464, "lon": -73.9907808 }, + { "lat": 40.7003185, "lon": -73.9907624 }, + { "lat": 40.7003877, "lon": -73.9907522 }, + { "lat": 40.7004324, "lon": -73.9907507 }, + { "lat": 40.7004918, "lon": -73.9907556 }, + { "lat": 40.7005673, "lon": -73.9907718 }, + { "lat": 40.7006276, "lon": -73.9907924 }, + { "lat": 40.7006831, "lon": -73.9908193 }, + { "lat": 40.7007356, "lon": -73.9908494 }, + { "lat": 40.7007775, "lon": -73.9908805 } + ], + "tags": { + "destination": "Brooklyn-Queens Expressway west", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Cadman Plaza West", + "name:etymology:wikidata": "Q5600833", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 534570934, + "bounds": { + "minlat": 40.7099066, + "minlon": -73.9586420, + "maxlat": 40.7101830, + "maxlon": -73.9584575 + }, + "nodes": [ + 1692483438, + 8821588898, + 9768177714, + 42463268 + ], + "geometry": [ + { "lat": 40.7099066, "lon": -73.9586420 }, + { "lat": 40.7101135, "lon": -73.9585039 }, + { "lat": 40.7101447, "lon": -73.9584831 }, + { "lat": 40.7101830, "lon": -73.9584575 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Havemeyer Street", + "name_1": "South 5th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Havemeyer", + "tiger:name_base_1": "5th", + "tiger:name_direction_prefix_1": "S", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 534859257, + "bounds": { + "minlat": 40.7244078, + "minlon": -73.9349100, + "maxlat": 40.7254760, + "maxlon": -73.9344680 + }, + "nodes": [ + 42505318, + 9937797963, + 8896039157, + 42505679 + ], + "geometry": [ + { "lat": 40.7244078, "lon": -73.9344680 }, + { "lat": 40.7244790, "lon": -73.9344979 }, + { "lat": 40.7250994, "lon": -73.9347575 }, + { "lat": 40.7254760, "lon": -73.9349100 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 534878087, + "bounds": { + "minlat": 40.7601231, + "minlon": -73.9634170, + "maxlat": 40.7602245, + "maxlon": -73.9631700 + }, + "nodes": [ + 5186208518, + 13348916911 + ], + "geometry": [ + { "lat": 40.7602245, "lon": -73.9634170 }, + { "lat": 40.7601231, "lon": -73.9631700 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "flex_post", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:both": "no", + "sidewalk:left": "lane", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 534878088, + "bounds": { + "minlat": 40.7602245, + "minlon": -73.9636948, + "maxlat": 40.7603396, + "maxlon": -73.9634170 + }, + "nodes": [ + 5186208519, + 5186208518 + ], + "geometry": [ + { "lat": 40.7603396, "lon": -73.9636948 }, + { "lat": 40.7602245, "lon": -73.9634170 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "jersey_barrier", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:both": "no", + "sidewalk:left": "lane", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 534880271, + "bounds": { + "minlat": 40.7015974, + "minlon": -73.9896812, + "maxlat": 40.7016338, + "maxlon": -73.9886274 + }, + "nodes": [ + 42492404, + 10726079528, + 2358967550, + 10726048600, + 248607283 + ], + "geometry": [ + { "lat": 40.7015974, "lon": -73.9886274 }, + { "lat": 40.7016020, "lon": -73.9887205 }, + { "lat": 40.7016169, "lon": -73.9891476 }, + { "lat": 40.7016319, "lon": -73.9895925 }, + { "lat": 40.7016338, "lon": -73.9896812 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "York Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "York", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 535072104, + "bounds": { + "minlat": 40.7724775, + "minlon": -73.9200869, + "maxlat": 40.7728414, + "maxlon": -73.9195788 + }, + "nodes": [ + 42802627, + 7787351787, + 5104280921, + 7787351804 + ], + "geometry": [ + { "lat": 40.7724775, "lon": -73.9195788 }, + { "lat": 40.7725282, "lon": -73.9196451 }, + { "lat": 40.7726792, "lon": -73.9198546 }, + { "lat": 40.7728414, "lon": -73.9200869 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "no", + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 536792008, + "bounds": { + "minlat": 40.8221170, + "minlon": -73.9084447, + "maxlat": 40.8222745, + "maxlon": -73.9083792 + }, + "nodes": [ + 5199218717, + 5199218719, + 5199218718 + ], + "geometry": [ + { "lat": 40.8222745, "lon": -73.9083792 }, + { "lat": 40.8221810, "lon": -73.9084180 }, + { "lat": 40.8221170, "lon": -73.9084447 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "maxspeed": "25 mph", + "name": "Eagle Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Eagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 536792009, + "bounds": { + "minlat": 40.8160603, + "minlon": -73.9109870, + "maxlat": 40.8221170, + "maxlon": -73.9084447 + }, + "nodes": [ + 5199218718, + 42756076, + 5482340579, + 42756074, + 42756070, + 5482340577, + 8602649337, + 12197815428 + ], + "geometry": [ + { "lat": 40.8221170, "lon": -73.9084447 }, + { "lat": 40.8209630, "lon": -73.9089260 }, + { "lat": 40.8207139, "lon": -73.9090296 }, + { "lat": 40.8203500, "lon": -73.9091810 }, + { "lat": 40.8189950, "lon": -73.9097390 }, + { "lat": 40.8161885, "lon": -73.9109102 }, + { "lat": 40.8161428, "lon": -73.9109391 }, + { "lat": 40.8160603, "lon": -73.9109870 } + ], + "tags": { + "highway": "residential", + "name": "Eagle Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Eagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 536917118, + "bounds": { + "minlat": 40.7063877, + "minlon": -74.0071360, + "maxlat": 40.7067350, + "maxlon": -74.0067819 + }, + "nodes": [ + 42444424, + 7138157347, + 42434418 + ], + "geometry": [ + { "lat": 40.7067350, "lon": -74.0067819 }, + { "lat": 40.7066833, "lon": -74.0068393 }, + { "lat": 40.7063877, "lon": -74.0071360 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 536917119, + "bounds": { + "minlat": 40.7067350, + "minlon": -74.0067819, + "maxlat": 40.7070101, + "maxlon": -74.0064417 + }, + "nodes": [ + 42427249, + 11367912872, + 11367912868, + 4985377345, + 42444424 + ], + "geometry": [ + { "lat": 40.7070101, "lon": -74.0064417 }, + { "lat": 40.7069849, "lon": -74.0064815 }, + { "lat": 40.7069609, "lon": -74.0065111 }, + { "lat": 40.7067819, "lon": -74.0067252 }, + { "lat": 40.7067350, "lon": -74.0067819 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 536917120, + "bounds": { + "minlat": 40.7090956, + "minlon": -74.0054945, + "maxlat": 40.7094179, + "maxlon": -74.0051228 + }, + "nodes": [ + 42430848, + 4985377327, + 42440280 + ], + "geometry": [ + { "lat": 40.7094179, "lon": -74.0051228 }, + { "lat": 40.7091708, "lon": -74.0053893 }, + { "lat": 40.7090956, "lon": -74.0054945 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Gold Street", + "name:ko": "골드 스트리트", + "name:ru": "Голд-стрит", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 536919687, + "bounds": { + "minlat": 40.7034746, + "minlon": -74.0115948, + "maxlat": 40.7035985, + "maxlon": -74.0111029 + }, + "nodes": [ + 5200192560, + 6904109939, + 8276468752, + 11050101038, + 11040337400, + 42431889 + ], + "geometry": [ + { "lat": 40.7035985, "lon": -74.0111029 }, + { "lat": 40.7035417, "lon": -74.0113755 }, + { "lat": 40.7035202, "lon": -74.0114701 }, + { "lat": 40.7035099, "lon": -74.0115024 }, + { "lat": 40.7034996, "lon": -74.0115310 }, + { "lat": 40.7034746, "lon": -74.0115948 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 07:00-17:00)", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 537122095, + "bounds": { + "minlat": 40.8282929, + "minlon": -73.9371276, + "maxlat": 40.8291154, + "maxlon": -73.9352023 + }, + "nodes": [ + 589927878, + 8008242811 + ], + "geometry": [ + { "lat": 40.8282929, "lon": -73.9352023 }, + { "lat": 40.8291154, "lon": -73.9371276 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "name": "West 155th Street (surface)", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 538081599, + "bounds": { + "minlat": 40.7066354, + "minlon": -74.0145859, + "maxlat": 40.7067234, + "maxlon": -74.0143767 + }, + "nodes": [ + 5209071189, + 5209071191, + 10315959488, + 10315959489, + 10315959490, + 10315959487 + ], + "geometry": [ + { "lat": 40.7067234, "lon": -74.0143767 }, + { "lat": 40.7066871, "lon": -74.0143926 }, + { "lat": 40.7066705, "lon": -74.0144108 }, + { "lat": 40.7066570, "lon": -74.0144417 }, + { "lat": 40.7066480, "lon": -74.0144822 }, + { "lat": 40.7066354, "lon": -74.0145859 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 538083107, + "bounds": { + "minlat": 40.7065538, + "minlon": -74.0154461, + "maxlat": 40.7066402, + "maxlon": -74.0154108 + }, + "nodes": [ + 5209084624, + 5209084622, + 11374486390, + 5209084625 + ], + "geometry": [ + { "lat": 40.7066402, "lon": -74.0154108 }, + { "lat": 40.7066217, "lon": -74.0154184 }, + { "lat": 40.7066066, "lon": -74.0154245 }, + { "lat": 40.7065538, "lon": -74.0154461 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 538083110, + "bounds": { + "minlat": 40.7072405, + "minlon": -74.0147230, + "maxlat": 40.7073330, + "maxlon": -74.0146644 + }, + "nodes": [ + 5209084623, + 4206997164, + 10315971032, + 10315971033, + 5209084621, + 5671809909 + ], + "geometry": [ + { "lat": 40.7072405, "lon": -74.0146644 }, + { "lat": 40.7072575, "lon": -74.0146885 }, + { "lat": 40.7072728, "lon": -74.0147067 }, + { "lat": 40.7072905, "lon": -74.0147207 }, + { "lat": 40.7073099, "lon": -74.0147230 }, + { "lat": 40.7073330, "lon": -74.0147192 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 538083112, + "bounds": { + "minlat": 40.7073985, + "minlon": -74.0146924, + "maxlat": 40.7074280, + "maxlon": -74.0146053 + }, + "nodes": [ + 42438030, + 5671809910, + 5209084626 + ], + "geometry": [ + { "lat": 40.7074280, "lon": -74.0146924 }, + { "lat": 40.7074085, "lon": -74.0146348 }, + { "lat": 40.7073985, "lon": -74.0146053 } + ], + "tags": { + "destination": "Battery Parking Garage", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 538556718, + "bounds": { + "minlat": 40.7640809, + "minlon": -73.9474612, + "maxlat": 40.7641383, + "maxlon": -73.9474602 + }, + "nodes": [ + 5212739095, + 5487813168 + ], + "geometry": [ + { "lat": 40.7641383, "lon": -73.9474612 }, + { "lat": 40.7640809, "lon": -73.9474602 } + ], + "tags": { + "bridge": "yes", + "destination": "Island Access", + "highway": "service", + "lanes": "1", + "layer": "1", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 538569793, + "bounds": { + "minlat": 40.7642949, + "minlon": -73.9473546, + "maxlat": 40.7645219, + "maxlon": -73.9469644 + }, + "nodes": [ + 11158621537, + 5212861661, + 5212861655, + 5212861656, + 5212861657, + 11158621538 + ], + "geometry": [ + { "lat": 40.7643279, "lon": -73.9473546 }, + { "lat": 40.7643188, "lon": -73.9473360 }, + { "lat": 40.7642949, "lon": -73.9472905 }, + { "lat": 40.7643208, "lon": -73.9471222 }, + { "lat": 40.7644817, "lon": -73.9469644 }, + { "lat": 40.7645219, "lon": -73.9469831 } + ], + "tags": { + "access": "no", + "covered": "yes", + "highway": "service", + "layer": "-1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 538786243, + "bounds": { + "minlat": 40.8135273, + "minlon": -73.9314060, + "maxlat": 40.8136972, + "maxlon": -73.9310473 + }, + "nodes": [ + 5214547511, + 5214547509 + ], + "geometry": [ + { "lat": 40.8136972, "lon": -73.9314060 }, + { "lat": 40.8135273, "lon": -73.9310473 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "left|through|through" + } +}, +{ + "type": "way", + "id": 538786247, + "bounds": { + "minlat": 40.8126670, + "minlon": -73.9297143, + "maxlat": 40.8129171, + "maxlon": -73.9293829 + }, + "nodes": [ + 12754232935, + 6324329769 + ], + "geometry": [ + { "lat": 40.8129171, "lon": -73.9297143 }, + { "lat": 40.8126670, "lon": -73.9293829 } + ], + "tags": { + "cycleway": "lane", + "cycleway:left:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes:forward": "left;through|through" + } +}, +{ + "type": "way", + "id": 538786252, + "bounds": { + "minlat": 40.8130396, + "minlon": -73.9304233, + "maxlat": 40.8132384, + "maxlon": -73.9298854 + }, + "nodes": [ + 5214547513, + 12162704281, + 5214547512, + 12162704285, + 9903106233, + 42741467 + ], + "geometry": [ + { "lat": 40.8132384, "lon": -73.9304233 }, + { "lat": 40.8132232, "lon": -73.9303903 }, + { "lat": 40.8131172, "lon": -73.9301662 }, + { "lat": 40.8130764, "lon": -73.9300187 }, + { "lat": 40.8130574, "lon": -73.9299499 }, + { "lat": 40.8130396, "lon": -73.9298854 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "left|through|through" + } +}, +{ + "type": "way", + "id": 538786258, + "bounds": { + "minlat": 40.8136295, + "minlon": -73.9310144, + "maxlat": 40.8137020, + "maxlon": -73.9309935 + }, + "nodes": [ + 42760015, + 5214547508 + ], + "geometry": [ + { "lat": 40.8136295, "lon": -73.9310144 }, + { "lat": 40.8137020, "lon": -73.9309935 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Gerard Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Major Deegan Serv", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 538786269, + "bounds": { + "minlat": 40.8140737, + "minlon": -73.9308670, + "maxlat": 40.8153306, + "maxlon": -73.9306092 + }, + "nodes": [ + 529062409, + 595793825, + 9163775416, + 9163775415, + 9163819517, + 9163819518, + 595793826, + 9163819523, + 42728921 + ], + "geometry": [ + { "lat": 40.8140737, "lon": -73.9308670 }, + { "lat": 40.8143653, "lon": -73.9307154 }, + { "lat": 40.8144264, "lon": -73.9306890 }, + { "lat": 40.8144965, "lon": -73.9306602 }, + { "lat": 40.8145746, "lon": -73.9306390 }, + { "lat": 40.8146517, "lon": -73.9306231 }, + { "lat": 40.8147254, "lon": -73.9306154 }, + { "lat": 40.8148685, "lon": -73.9306092 }, + { "lat": 40.8153306, "lon": -73.9306114 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "destination": "Deegan Expressway", + "destination:ref": "I 87 South", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Gerard Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Major Deegan Serv", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 538786469, + "bounds": { + "minlat": 40.8132384, + "minlon": -73.9310473, + "maxlat": 40.8135273, + "maxlon": -73.9304233 + }, + "nodes": [ + 5214547509, + 12162704284, + 9163775406, + 5214547513 + ], + "geometry": [ + { "lat": 40.8135273, "lon": -73.9310473 }, + { "lat": 40.8133111, "lon": -73.9305787 }, + { "lat": 40.8132822, "lon": -73.9305160 }, + { "lat": 40.8132384, "lon": -73.9304233 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 539018144, + "bounds": { + "minlat": 40.7601027, + "minlon": -73.9631118, + "maxlat": 40.7606483, + "maxlon": -73.9618363 + }, + "nodes": [ + 371034158, + 1775176474 + ], + "geometry": [ + { "lat": 40.7601027, "lon": -73.9618363 }, + { "lat": 40.7606483, "lon": -73.9631118 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "2nd Avenue South|60th Street West", + "foot": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "name": "Ed Koch Queensboro Bridge Lower Level", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "left|slight_right" + } +}, +{ + "type": "way", + "id": 539024459, + "bounds": { + "minlat": 40.7223840, + "minlon": -74.0051966, + "maxlat": 40.7230294, + "maxlon": -74.0037680 + }, + "nodes": [ + 4890633710, + 5216470727, + 4890633699, + 3788379729, + 8231935502, + 42436763, + 8231935499, + 8231935508, + 42452026 + ], + "geometry": [ + { "lat": 40.7230294, "lon": -74.0051966 }, + { "lat": 40.7230023, "lon": -74.0050623 }, + { "lat": 40.7229617, "lon": -74.0049216 }, + { "lat": 40.7229508, "lon": -74.0048836 }, + { "lat": 40.7227630, "lon": -74.0044968 }, + { "lat": 40.7227332, "lon": -74.0044383 }, + { "lat": 40.7227013, "lon": -74.0043752 }, + { "lat": 40.7224316, "lon": -74.0038568 }, + { "lat": 40.7223840, "lon": -74.0037680 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 539024460, + "bounds": { + "minlat": 40.7218819, + "minlon": -74.0053860, + "maxlat": 40.7230023, + "maxlon": -74.0050623 + }, + "nodes": [ + 3788379733, + 11492801324, + 3788379732, + 2151385507, + 6793645456, + 4136508184, + 42430136, + 5135824729, + 5216470728, + 5216470727 + ], + "geometry": [ + { "lat": 40.7218819, "lon": -74.0053547 }, + { "lat": 40.7219233, "lon": -74.0053688 }, + { "lat": 40.7219867, "lon": -74.0053816 }, + { "lat": 40.7220638, "lon": -74.0053854 }, + { "lat": 40.7220752, "lon": -74.0053860 }, + { "lat": 40.7221176, "lon": -74.0053809 }, + { "lat": 40.7222252, "lon": -74.0053623 }, + { "lat": 40.7225214, "lon": -74.0052551 }, + { "lat": 40.7229158, "lon": -74.0050973 }, + { "lat": 40.7230023, "lon": -74.0050623 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "noref": "yes", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 539518376, + "bounds": { + "minlat": 40.8506096, + "minlon": -74.0180818, + "maxlat": 40.8508464, + "maxlon": -74.0172064 + }, + "nodes": [ + 5220596269, + 5220596266 + ], + "geometry": [ + { "lat": 40.8506096, "lon": -74.0172064 }, + { "lat": 40.8508464, "lon": -74.0180818 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 539518377, + "bounds": { + "minlat": 40.8530860, + "minlon": -74.0181029, + "maxlat": 40.8536153, + "maxlon": -74.0159991 + }, + "nodes": [ + 103191717, + 5508080961, + 103191719, + 103191720, + 5220600057, + 103191721 + ], + "geometry": [ + { "lat": 40.8536153, "lon": -74.0181029 }, + { "lat": 40.8535913, "lon": -74.0180102 }, + { "lat": 40.8533800, "lon": -74.0171798 }, + { "lat": 40.8532371, "lon": -74.0165991 }, + { "lat": 40.8531316, "lon": -74.0161801 }, + { "lat": 40.8530860, "lon": -74.0159991 } + ], + "tags": { + "highway": "residential", + "name": "Cedar Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cedar", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 539518378, + "bounds": { + "minlat": 40.8512848, + "minlon": -74.0166533, + "maxlat": 40.8514172, + "maxlon": -74.0164543 + }, + "nodes": [ + 5220596284, + 5220596273 + ], + "geometry": [ + { "lat": 40.8514172, "lon": -74.0166533 }, + { "lat": 40.8512848, "lon": -74.0164543 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 539518379, + "bounds": { + "minlat": 40.8514335, + "minlon": -74.0177117, + "maxlat": 40.8516498, + "maxlon": -74.0168711 + }, + "nodes": [ + 5220596279, + 5220596282 + ], + "geometry": [ + { "lat": 40.8516498, "lon": -74.0177117 }, + { "lat": 40.8514335, "lon": -74.0168711 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 539518380, + "bounds": { + "minlat": 40.8514172, + "minlon": -74.0166533, + "maxlat": 40.8520463, + "maxlon": -74.0163231 + }, + "nodes": [ + 5220596275, + 5220596262, + 5220596284 + ], + "geometry": [ + { "lat": 40.8520463, "lon": -74.0163231 }, + { "lat": 40.8519927, "lon": -74.0163518 }, + { "lat": 40.8514172, "lon": -74.0166533 } + ], + "tags": { + "highway": "residential", + "name": "Hobart Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hobart", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 539518381, + "bounds": { + "minlat": 40.8504192, + "minlon": -74.0172235, + "maxlat": 40.8520463, + "maxlon": -74.0161541 + }, + "nodes": [ + 103270544, + 5220596270, + 5220596269, + 5220596272, + 5220596267, + 5220596265, + 5220596263, + 5220596259, + 5220596261, + 5220596273, + 5220596280, + 5220596264, + 5220596268, + 5220596275 + ], + "geometry": [ + { "lat": 40.8510227, "lon": -74.0170440 }, + { "lat": 40.8507050, "lon": -74.0171808 }, + { "lat": 40.8506096, "lon": -74.0172064 }, + { "lat": 40.8505461, "lon": -74.0172235 }, + { "lat": 40.8504589, "lon": -74.0172021 }, + { "lat": 40.8504192, "lon": -74.0171412 }, + { "lat": 40.8504314, "lon": -74.0170124 }, + { "lat": 40.8508626, "lon": -74.0167649 }, + { "lat": 40.8510269, "lon": -74.0166281 }, + { "lat": 40.8512848, "lon": -74.0164543 }, + { "lat": 40.8517391, "lon": -74.0162177 }, + { "lat": 40.8518982, "lon": -74.0161541 }, + { "lat": 40.8519582, "lon": -74.0162043 }, + { "lat": 40.8520463, "lon": -74.0163231 } + ], + "tags": { + "highway": "service", + "name": "Hobart Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hobart", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 539518889, + "bounds": { + "minlat": 40.8502245, + "minlon": -74.0174148, + "maxlat": 40.8504589, + "maxlon": -74.0172021 + }, + "nodes": [ + 103298690, + 5220596267 + ], + "geometry": [ + { "lat": 40.8502245, "lon": -74.0174148 }, + { "lat": 40.8504589, "lon": -74.0172021 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 539518891, + "bounds": { + "minlat": 40.8588983, + "minlon": -74.0145252, + "maxlat": 40.8596964, + "maxlon": -74.0139294 + }, + "nodes": [ + 5220600069, + 5220600053, + 5220600050, + 5220600070, + 5220600062, + 5220600045, + 5220600061, + 5220600067, + 5220600077, + 5220600035, + 5220600060 + ], + "geometry": [ + { "lat": 40.8596964, "lon": -74.0142117 }, + { "lat": 40.8596226, "lon": -74.0142490 }, + { "lat": 40.8590282, "lon": -74.0145226 }, + { "lat": 40.8589754, "lon": -74.0145252 }, + { "lat": 40.8589318, "lon": -74.0144858 }, + { "lat": 40.8589085, "lon": -74.0144233 }, + { "lat": 40.8588983, "lon": -74.0143509 }, + { "lat": 40.8589136, "lon": -74.0142659 }, + { "lat": 40.8589612, "lon": -74.0141900 }, + { "lat": 40.8590687, "lon": -74.0141363 }, + { "lat": 40.8595948, "lon": -74.0139294 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 539518892, + "bounds": { + "minlat": 40.8534960, + "minlon": -74.0169312, + "maxlat": 40.8541696, + "maxlon": -74.0166549 + }, + "nodes": [ + 5220600048, + 5220600065, + 5220600073, + 5220600056 + ], + "geometry": [ + { "lat": 40.8541696, "lon": -74.0166549 }, + { "lat": 40.8541107, "lon": -74.0167354 }, + { "lat": 40.8539378, "lon": -74.0167905 }, + { "lat": 40.8534960, "lon": -74.0169312 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 539518893, + "bounds": { + "minlat": 40.8531316, + "minlon": -74.0167905, + "maxlat": 40.8539378, + "maxlon": -74.0159012 + }, + "nodes": [ + 5220600073, + 5220600071, + 5220600036, + 5220600054, + 5220600040, + 5220600055, + 5220600039, + 5220600057 + ], + "geometry": [ + { "lat": 40.8539378, "lon": -74.0167905 }, + { "lat": 40.8538100, "lon": -74.0163208 }, + { "lat": 40.8538044, "lon": -74.0162499 }, + { "lat": 40.8537120, "lon": -74.0159396 }, + { "lat": 40.8536827, "lon": -74.0159012 }, + { "lat": 40.8536380, "lon": -74.0159253 }, + { "lat": 40.8536137, "lon": -74.0159522 }, + { "lat": 40.8531316, "lon": -74.0161801 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 539518894, + "bounds": { + "minlat": 40.8576650, + "minlon": -74.0151421, + "maxlat": 40.8602412, + "maxlon": -74.0128676 + }, + "nodes": [ + 103108479, + 103143394, + 3637354240, + 3637354239, + 5220600041, + 5220600066, + 5220600046, + 5220600058, + 5220600063, + 5220600042, + 5220600060, + 5220600047, + 5220600069, + 5220600049, + 5220600038, + 103287642 + ], + "geometry": [ + { "lat": 40.8578107, "lon": -74.0151421 }, + { "lat": 40.8579057, "lon": -74.0147194 }, + { "lat": 40.8578672, "lon": -74.0145318 }, + { "lat": 40.8576650, "lon": -74.0136703 }, + { "lat": 40.8576741, "lon": -74.0135819 }, + { "lat": 40.8577136, "lon": -74.0134979 }, + { "lat": 40.8592290, "lon": -74.0128676 }, + { "lat": 40.8593020, "lon": -74.0128676 }, + { "lat": 40.8593568, "lon": -74.0129347 }, + { "lat": 40.8595678, "lon": -74.0138064 }, + { "lat": 40.8595948, "lon": -74.0139294 }, + { "lat": 40.8596489, "lon": -74.0141095 }, + { "lat": 40.8596964, "lon": -74.0142117 }, + { "lat": 40.8597198, "lon": -74.0142437 }, + { "lat": 40.8598518, "lon": -74.0144099 }, + { "lat": 40.8602412, "lon": -74.0148703 } + ], + "tags": { + "highway": "service", + "name": "Preston Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Preston", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 539520016, + "bounds": { + "minlat": 40.8536153, + "minlon": -74.0240060, + "maxlat": 40.8550362, + "maxlon": -74.0181029 + }, + "nodes": [ + 103191717, + 103191716, + 103116868, + 10783732074, + 103148770, + 103191715 + ], + "geometry": [ + { "lat": 40.8536153, "lon": -74.0181029 }, + { "lat": 40.8539413, "lon": -74.0194563 }, + { "lat": 40.8543001, "lon": -74.0209891 }, + { "lat": 40.8546386, "lon": -74.0223988 }, + { "lat": 40.8546760, "lon": -74.0225545 }, + { "lat": 40.8550362, "lon": -74.0240060 } + ], + "tags": { + "highway": "residential", + "name": "Cedar Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cedar", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 539520018, + "bounds": { + "minlat": 40.8560406, + "minlon": -74.0172163, + "maxlat": 40.8560589, + "maxlon": -74.0171253 + }, + "nodes": [ + 5508080958, + 103212073 + ], + "geometry": [ + { "lat": 40.8560406, "lon": -74.0171253 }, + { "lat": 40.8560589, "lon": -74.0172163 } + ], + "tags": { + "highway": "residential", + "name": "Park Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 539520019, + "bounds": { + "minlat": 40.8563369, + "minlon": -74.0248407, + "maxlat": 40.8578985, + "maxlon": -74.0184009 + }, + "nodes": [ + 103214361, + 4048796093, + 103116873, + 8230897257, + 10783732076, + 103148774, + 7132864991, + 103223393, + 6892551940, + 7514685377, + 6892551935, + 7514685369, + 103223391 + ], + "geometry": [ + { "lat": 40.8563369, "lon": -74.0184009 }, + { "lat": 40.8563587, "lon": -74.0184922 }, + { "lat": 40.8567451, "lon": -74.0201136 }, + { "lat": 40.8569296, "lon": -74.0208508 }, + { "lat": 40.8571134, "lon": -74.0216107 }, + { "lat": 40.8571478, "lon": -74.0217530 }, + { "lat": 40.8573608, "lon": -74.0226192 }, + { "lat": 40.8575160, "lon": -74.0232560 }, + { "lat": 40.8577333, "lon": -74.0241481 }, + { "lat": 40.8577757, "lon": -74.0243223 }, + { "lat": 40.8577871, "lon": -74.0243689 }, + { "lat": 40.8578531, "lon": -74.0246401 }, + { "lat": 40.8578985, "lon": -74.0248407 } + ], + "tags": { + "highway": "residential", + "name": "Park Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 539520454, + "bounds": { + "minlat": 40.8523516, + "minlon": -74.0199998, + "maxlat": 40.8527175, + "maxlon": -74.0184502 + }, + "nodes": [ + 103211071, + 11050468958, + 103211073, + 5508080963 + ], + "geometry": [ + { "lat": 40.8527175, "lon": -74.0199998 }, + { "lat": 40.8526058, "lon": -74.0195296 }, + { "lat": 40.8523720, "lon": -74.0185404 }, + { "lat": 40.8523516, "lon": -74.0184502 } + ], + "tags": { + "highway": "residential", + "name": "Hobart Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hobart", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 539520457, + "bounds": { + "minlat": 40.8510227, + "minlon": -74.0203838, + "maxlat": 40.8518811, + "maxlon": -74.0170440 + }, + "nodes": [ + 103214355, + 103270543, + 103270544 + ], + "geometry": [ + { "lat": 40.8518811, "lon": -74.0203838 }, + { "lat": 40.8514498, "lon": -74.0187123 }, + { "lat": 40.8510227, "lon": -74.0170440 } + ], + "tags": { + "highway": "residential", + "name": "Christie Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Christie", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 540259448, + "bounds": { + "minlat": 40.7436918, + "minlon": -73.9772568, + "maxlat": 40.7438551, + "maxlon": -73.9771376 + }, + "nodes": [ + 5227014111, + 8119462449, + 5227014112 + ], + "geometry": [ + { "lat": 40.7438551, "lon": -73.9771376 }, + { "lat": 40.7437482, "lon": -73.9772145 }, + { "lat": 40.7436918, "lon": -73.9772568 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 540356239, + "bounds": { + "minlat": 40.7441114, + "minlon": -73.9817611, + "maxlat": 40.7463935, + "maxlon": -73.9763847 + }, + "nodes": [ + 42442913, + 3929403851, + 3841324404, + 12183286765, + 4234425055, + 42449928, + 4234425008, + 12183285327, + 8133342855, + 42446935, + 8133342852, + 3847026393, + 12181374920, + 8119462513, + 3786901738 + ], + "geometry": [ + { "lat": 40.7441114, "lon": -73.9763847 }, + { "lat": 40.7441726, "lon": -73.9765003 }, + { "lat": 40.7448475, "lon": -73.9781038 }, + { "lat": 40.7449837, "lon": -73.9784288 }, + { "lat": 40.7450031, "lon": -73.9784751 }, + { "lat": 40.7450650, "lon": -73.9786187 }, + { "lat": 40.7451238, "lon": -73.9787534 }, + { "lat": 40.7456716, "lon": -73.9800423 }, + { "lat": 40.7456936, "lon": -73.9800981 }, + { "lat": 40.7457461, "lon": -73.9802235 }, + { "lat": 40.7457868, "lon": -73.9803161 }, + { "lat": 40.7460230, "lon": -73.9808740 }, + { "lat": 40.7463252, "lon": -73.9815943 }, + { "lat": 40.7463530, "lon": -73.9816607 }, + { "lat": 40.7463935, "lon": -73.9817611 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 33rd Street", + "name:ru": "Восточная 33-я стрит", + "name_1": "East 33 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 541051829, + "bounds": { + "minlat": 40.8642117, + "minlon": -74.0152677, + "maxlat": 40.8647539, + "maxlon": -74.0107325 + }, + "nodes": [ + 298289435, + 10938641152, + 10938641114, + 298289436, + 10938641178, + 298289437, + 10938641118, + 10938598287, + 298289430, + 10938641185, + 298289439, + 10938641176, + 10938641146, + 11436234344 + ], + "geometry": [ + { "lat": 40.8647539, "lon": -74.0152677 }, + { "lat": 40.8644759, "lon": -74.0138578 }, + { "lat": 40.8643453, "lon": -74.0130784 }, + { "lat": 40.8643196, "lon": -74.0129051 }, + { "lat": 40.8642928, "lon": -74.0127280 }, + { "lat": 40.8642699, "lon": -74.0125490 }, + { "lat": 40.8642502, "lon": -74.0123720 }, + { "lat": 40.8642269, "lon": -74.0121050 }, + { "lat": 40.8642162, "lon": -74.0118382 }, + { "lat": 40.8642117, "lon": -74.0114699 }, + { "lat": 40.8642172, "lon": -74.0112850 }, + { "lat": 40.8642238, "lon": -74.0111120 }, + { "lat": 40.8642355, "lon": -74.0109289 }, + { "lat": 40.8642522, "lon": -74.0107325 } + ], + "tags": { + "destination": "George Washington Bridge;New York", + "destination:lanes": "George Washington Bridge|George Washington Bridge|none;Leonia;Teaneck", + "destination:ref": "I 95 North", + "highway": "motorway", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 80", + "toll": "no", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 541059722, + "bounds": { + "minlat": 40.7208183, + "minlon": -74.0078146, + "maxlat": 40.7209099, + "maxlon": -74.0075453 + }, + "nodes": [ + 42424347, + 1701898686, + 433298244, + 3788379712, + 42424354 + ], + "geometry": [ + { "lat": 40.7209099, "lon": -74.0078146 }, + { "lat": 40.7208779, "lon": -74.0077536 }, + { "lat": 40.7208506, "lon": -74.0076856 }, + { "lat": 40.7208328, "lon": -74.0076226 }, + { "lat": 40.7208183, "lon": -74.0075453 } + ], + "tags": { + "bicycle": "no", + "destination": "Canal Street East;Downtown", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxaxles": "3", + "maxspeed": "25 mph", + "name": "Holland Tunnel Rotary", + "oneway": "yes", + "ref": "I 78", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "no", + "toll": "yes", + "turn:lanes": "none|through;slight_right", + "unsigned_ref": "I 78" + } +}, +{ + "type": "way", + "id": 541329572, + "bounds": { + "minlat": 40.7440610, + "minlon": -74.0081671, + "maxlat": 40.7446509, + "maxlon": -74.0068110 + }, + "nodes": [ + 42439286, + 9627931661, + 13680980811, + 13523436064, + 12161232309, + 3874653359 + ], + "geometry": [ + { "lat": 40.7440610, "lon": -74.0068110 }, + { "lat": 40.7441166, "lon": -74.0069390 }, + { "lat": 40.7443905, "lon": -74.0075684 }, + { "lat": 40.7444620, "lon": -74.0077329 }, + { "lat": 40.7446276, "lon": -74.0081136 }, + { "lat": 40.7446509, "lon": -74.0081671 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 17th Street", + "name:ru": "Западная 17-я стрит", + "name_1": "West 17 Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 541329577, + "bounds": { + "minlat": 40.7446911, + "minlon": -74.0084387, + "maxlat": 40.7447576, + "maxlon": -74.0082636 + }, + "nodes": [ + 42439295, + 11049420899 + ], + "geometry": [ + { "lat": 40.7446911, "lon": -74.0082636 }, + { "lat": 40.7447576, "lon": -74.0084387 } + ], + "tags": { + "bicycle": "no", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "West 17th Street", + "name:ru": "Западная 17-я стрит", + "name_1": "West 17 Street", + "oneway": "no", + "sidewalk": "both", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 541330444, + "bounds": { + "minlat": 40.7402774, + "minlon": -73.9937317, + "maxlat": 40.7416288, + "maxlon": -73.9905253 + }, + "nodes": [ + 42443671, + 7781138516, + 12181309678, + 12181309679, + 7781139546, + 42430265 + ], + "geometry": [ + { "lat": 40.7402774, "lon": -73.9905253 }, + { "lat": 40.7403285, "lon": -73.9906513 }, + { "lat": 40.7415417, "lon": -73.9935235 }, + { "lat": 40.7415596, "lon": -73.9935656 }, + { "lat": 40.7415775, "lon": -73.9936077 }, + { "lat": 40.7416288, "lon": -73.9937317 } + ], + "tags": { + "alt_name": "West 21 Street", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 21st Street", + "name:ru": "Западная 21-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 541331485, + "bounds": { + "minlat": 40.7597298, + "minlon": -73.9737664, + "maxlat": 40.7603711, + "maxlon": -73.9722474 + }, + "nodes": [ + 42445936, + 10165986951, + 12834723237, + 10125228013, + 596775919 + ], + "geometry": [ + { "lat": 40.7603711, "lon": -73.9737664 }, + { "lat": 40.7603223, "lon": -73.9736510 }, + { "lat": 40.7598070, "lon": -73.9724304 }, + { "lat": 40.7597769, "lon": -73.9723590 }, + { "lat": 40.7597298, "lon": -73.9722474 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "East 54th Street", + "name:ru": "Восточная 54-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 541331866, + "bounds": { + "minlat": 40.7737351, + "minlon": -73.9656083, + "maxlat": 40.7744056, + "maxlon": -73.9640105 + }, + "nodes": [ + 42430052, + 10173250693, + 7785624674, + 42430050 + ], + "geometry": [ + { "lat": 40.7737351, "lon": -73.9640105 }, + { "lat": 40.7737832, "lon": -73.9641253 }, + { "lat": 40.7743712, "lon": -73.9655249 }, + { "lat": 40.7744056, "lon": -73.9656083 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 75th Street", + "name:ru": "Восточная 75-я стрит", + "name_1": "East 75 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 541331867, + "bounds": { + "minlat": 40.7730994, + "minlon": -73.9640105, + "maxlat": 40.7737351, + "maxlon": -73.9624991 + }, + "nodes": [ + 596776046, + 10125222327, + 10173250690, + 42430052 + ], + "geometry": [ + { "lat": 40.7730994, "lon": -73.9624991 }, + { "lat": 40.7731459, "lon": -73.9626096 }, + { "lat": 40.7736883, "lon": -73.9638995 }, + { "lat": 40.7737351, "lon": -73.9640105 } + ], + "tags": { + "highway": "residential", + "name": "East 75th Street", + "name:ru": "Восточная 75-я стрит", + "name_1": "East 75 Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 541331937, + "bounds": { + "minlat": 40.7865037, + "minlon": -73.9499793, + "maxlat": 40.7871827, + "maxlon": -73.9483878 + }, + "nodes": [ + 42447174, + 6248342686, + 6221717887, + 42450048 + ], + "geometry": [ + { "lat": 40.7871827, "lon": -73.9499793 }, + { "lat": 40.7871488, "lon": -73.9498980 }, + { "lat": 40.7865620, "lon": -73.9485170 }, + { "lat": 40.7865037, "lon": -73.9483878 } + ], + "tags": { + "highway": "residential", + "name": "East 98th Street", + "name:ru": "Восточная 98-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 541332223, + "bounds": { + "minlat": 40.7923067, + "minlon": -73.9520587, + "maxlat": 40.7929817, + "maxlon": -73.9504667 + }, + "nodes": [ + 42436604, + 7779641276, + 8327736341, + 11292691123, + 42436610 + ], + "geometry": [ + { "lat": 40.7929817, "lon": -73.9520587 }, + { "lat": 40.7929394, "lon": -73.9519586 }, + { "lat": 40.7926323, "lon": -73.9512326 }, + { "lat": 40.7923530, "lon": -73.9505757 }, + { "lat": 40.7923067, "lon": -73.9504667 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 104th Street", + "name:ru": "Восточная 104-я стрит", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 541336911, + "bounds": { + "minlat": 40.7079832, + "minlon": -74.0135999, + "maxlat": 40.7087788, + "maxlon": -74.0132433 + }, + "nodes": [ + 42436184, + 4207000392, + 42436181 + ], + "geometry": [ + { "lat": 40.7087788, "lon": -74.0132433 }, + { "lat": 40.7080233, "lon": -74.0135821 }, + { "lat": 40.7079832, "lon": -74.0135999 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 541345307, + "bounds": { + "minlat": 40.7102231, + "minlon": -74.0084120, + "maxlat": 40.7105602, + "maxlon": -74.0077439 + }, + "nodes": [ + 42440287, + 8281922129, + 5008036473, + 12343544082 + ], + "geometry": [ + { "lat": 40.7102231, "lon": -74.0077439 }, + { "lat": 40.7102546, "lon": -74.0078035 }, + { "lat": 40.7104572, "lon": -74.0082125 }, + { "lat": 40.7105602, "lon": -74.0084120 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "name:ru": "Фултон-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 541346245, + "bounds": { + "minlat": 40.7179653, + "minlon": -74.0052698, + "maxlat": 40.7182549, + "maxlon": -74.0046412 + }, + "nodes": [ + 4143851144, + 8304498310, + 8434926581 + ], + "geometry": [ + { "lat": 40.7182549, "lon": -74.0052698 }, + { "lat": 40.7182283, "lon": -74.0052097 }, + { "lat": 40.7179653, "lon": -74.0046412 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "name:ko": "프랭클린 스트리트", + "name:ru": "Франклин-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 541346246, + "bounds": { + "minlat": 40.7167378, + "minlon": -74.0041540, + "maxlat": 40.7177400, + "maxlon": -74.0020928 + }, + "nodes": [ + 42448146, + 8307641771, + 42428420, + 8307641768, + 10150972325, + 11608923967, + 42432623, + 591567288, + 12198027553, + 7132560110, + 42445479 + ], + "geometry": [ + { "lat": 40.7177400, "lon": -74.0041540 }, + { "lat": 40.7174949, "lon": -74.0036309 }, + { "lat": 40.7174490, "lon": -74.0035330 }, + { "lat": 40.7174049, "lon": -74.0034433 }, + { "lat": 40.7172541, "lon": -74.0031361 }, + { "lat": 40.7171869, "lon": -74.0029995 }, + { "lat": 40.7171454, "lon": -74.0029151 }, + { "lat": 40.7170954, "lon": -74.0028129 }, + { "lat": 40.7168138, "lon": -74.0022451 }, + { "lat": 40.7167838, "lon": -74.0021847 }, + { "lat": 40.7167378, "lon": -74.0020928 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "name:ko": "프랭클린 스트리트", + "name:ru": "Франклин-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 541350711, + "bounds": { + "minlat": 40.7630416, + "minlon": -73.9781410, + "maxlat": 40.7643240, + "maxlon": -73.9771960 + }, + "nodes": [ + 42430375, + 10173346247, + 10171655538, + 42430378, + 10171655537, + 10171655556, + 42430384 + ], + "geometry": [ + { "lat": 40.7630416, "lon": -73.9781410 }, + { "lat": 40.7630933, "lon": -73.9781029 }, + { "lat": 40.7636008, "lon": -73.9777290 }, + { "lat": 40.7636495, "lon": -73.9776930 }, + { "lat": 40.7637185, "lon": -73.9776422 }, + { "lat": 40.7642306, "lon": -73.9772648 }, + { "lat": 40.7643240, "lon": -73.9771960 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 541351705, + "bounds": { + "minlat": 40.7467893, + "minlon": -73.9794644, + "maxlat": 40.7470801, + "maxlon": -73.9792550 + }, + "nodes": [ + 42434954, + 10171137625, + 8842019586 + ], + "geometry": [ + { "lat": 40.7470801, "lon": -73.9792550 }, + { "lat": 40.7470245, "lon": -73.9792962 }, + { "lat": 40.7467893, "lon": -73.9794644 } + ], + "tags": { + "bus:lanes": "|||designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 541355966, + "bounds": { + "minlat": 40.8316410, + "minlon": -73.9234880, + "maxlat": 40.8319730, + "maxlon": -73.9225258 + }, + "nodes": [ + 42771315, + 2611678506, + 7560880426, + 13033156004, + 42734179 + ], + "geometry": [ + { "lat": 40.8319730, "lon": -73.9234880 }, + { "lat": 40.8318986, "lon": -73.9232743 }, + { "lat": 40.8318742, "lon": -73.9232042 }, + { "lat": 40.8316690, "lon": -73.9226072 }, + { "lat": 40.8316410, "lon": -73.9225258 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "name": "East 165th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 541355967, + "bounds": { + "minlat": 40.8313372, + "minlon": -73.9225258, + "maxlat": 40.8316410, + "maxlon": -73.9216609 + }, + "nodes": [ + 42734179, + 13033156002, + 13033188177, + 42733729 + ], + "geometry": [ + { "lat": 40.8316410, "lon": -73.9225258 }, + { "lat": 40.8316136, "lon": -73.9224479 }, + { "lat": 40.8313719, "lon": -73.9217597 }, + { "lat": 40.8313372, "lon": -73.9216609 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "name": "East 165th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 541355968, + "bounds": { + "minlat": 40.8303497, + "minlon": -73.9242610, + "maxlat": 40.8306810, + "maxlon": -73.9232897 + }, + "nodes": [ + 42734173, + 13039060066, + 2611678505, + 13039118967, + 42742426 + ], + "geometry": [ + { "lat": 40.8303497, "lon": -73.9232897 }, + { "lat": 40.8303729, "lon": -73.9233575 }, + { "lat": 40.8306067, "lon": -73.9240431 }, + { "lat": 40.8306447, "lon": -73.9241540 }, + { "lat": 40.8306810, "lon": -73.9242610 } + ], + "tags": { + "highway": "residential", + "name": "East 164th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "164th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 541355969, + "bounds": { + "minlat": 40.8296938, + "minlon": -73.9224130, + "maxlat": 40.8300530, + "maxlon": -73.9213643 + }, + "nodes": [ + 2408446191, + 10126973909, + 4612528312, + 10126973911, + 42733725 + ], + "geometry": [ + { "lat": 40.8296938, "lon": -73.9213643 }, + { "lat": 40.8297193, "lon": -73.9214428 }, + { "lat": 40.8298635, "lon": -73.9218618 }, + { "lat": 40.8300263, "lon": -73.9223368 }, + { "lat": 40.8300530, "lon": -73.9224130 } + ], + "tags": { + "highway": "residential", + "name": "East 164th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "164th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 541356041, + "bounds": { + "minlat": 40.8341687, + "minlon": -73.9231852, + "maxlat": 40.8345207, + "maxlon": -73.9222057 + }, + "nodes": [ + 42747552, + 10133344490, + 10133344430, + 42747548 + ], + "geometry": [ + { "lat": 40.8341687, "lon": -73.9222057 }, + { "lat": 40.8342050, "lon": -73.9223105 }, + { "lat": 40.8344962, "lon": -73.9231522 }, + { "lat": 40.8345207, "lon": -73.9231852 } + ], + "tags": { + "highway": "residential", + "name": "McClellan Street", + "name:etymology:wikidata": "Q310192", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mc Clellan", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 541356042, + "bounds": { + "minlat": 40.8339693, + "minlon": -73.9222057, + "maxlat": 40.8341687, + "maxlon": -73.9216174 + }, + "nodes": [ + 13033269541, + 13702982187, + 13036769785, + 42747552 + ], + "geometry": [ + { "lat": 40.8339693, "lon": -73.9216174 }, + { "lat": 40.8340142, "lon": -73.9217500 }, + { "lat": 40.8341378, "lon": -73.9221146 }, + { "lat": 40.8341687, "lon": -73.9222057 } + ], + "tags": { + "highway": "residential", + "name": "McClellan Street", + "name:etymology:wikidata": "Q310192", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mc Clellan", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 541392525, + "bounds": { + "minlat": 40.7376919, + "minlon": -73.9302441, + "maxlat": 40.7404977, + "maxlon": -73.9296773 + }, + "nodes": [ + 42832527, + 9981925189, + 8509189381, + 10774439617, + 5482217724, + 5482216916, + 10083107639, + 42880298 + ], + "geometry": [ + { "lat": 40.7376919, "lon": -73.9302441 }, + { "lat": 40.7377428, "lon": -73.9302313 }, + { "lat": 40.7388573, "lon": -73.9300037 }, + { "lat": 40.7389248, "lon": -73.9299905 }, + { "lat": 40.7393970, "lon": -73.9298981 }, + { "lat": 40.7400546, "lon": -73.9297661 }, + { "lat": 40.7404182, "lon": -73.9296932 }, + { "lat": 40.7404977, "lon": -73.9296773 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "36th Street", + "note": "oneway now traevls northwrd instead of southward, as of 2017.", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 541392526, + "bounds": { + "minlat": 40.7399626, + "minlon": -73.9296773, + "maxlat": 40.7404977, + "maxlon": -73.9250345 + }, + "nodes": [ + 42880298, + 10083107640, + 10083107641, + 42880302, + 10083107642, + 42841847, + 10083107647, + 42880308, + 10083107648, + 10083107650, + 42864400, + 10083107651, + 10083107653, + 42880313 + ], + "geometry": [ + { "lat": 40.7404977, "lon": -73.9296773 }, + { "lat": 40.7404879, "lon": -73.9295956 }, + { "lat": 40.7404022, "lon": -73.9288249 }, + { "lat": 40.7403920, "lon": -73.9287453 }, + { "lat": 40.7403834, "lon": -73.9286666 }, + { "lat": 40.7402845, "lon": -73.9278154 }, + { "lat": 40.7401945, "lon": -73.9270276 }, + { "lat": 40.7401831, "lon": -73.9269265 }, + { "lat": 40.7401710, "lon": -73.9268222 }, + { "lat": 40.7400799, "lon": -73.9260448 }, + { "lat": 40.7400695, "lon": -73.9259565 }, + { "lat": 40.7400619, "lon": -73.9258871 }, + { "lat": 40.7399715, "lon": -73.9251152 }, + { "lat": 40.7399626, "lon": -73.9250345 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "48th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 541442319, + "bounds": { + "minlat": 40.8399295, + "minlon": -73.9407749, + "maxlat": 40.8411223, + "maxlon": -73.9398646 + }, + "nodes": [ + 42428978, + 8767474530, + 2499802993, + 6861072080, + 8344404001, + 2499802991, + 9566927307, + 42428975 + ], + "geometry": [ + { "lat": 40.8411223, "lon": -73.9398646 }, + { "lat": 40.8410529, "lon": -73.9399168 }, + { "lat": 40.8407227, "lon": -73.9401705 }, + { "lat": 40.8406727, "lon": -73.9402075 }, + { "lat": 40.8405794, "lon": -73.9402787 }, + { "lat": 40.8404886, "lon": -73.9403476 }, + { "lat": 40.8400172, "lon": -73.9407081 }, + { "lat": 40.8399295, "lon": -73.9407749 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 541442321, + "bounds": { + "minlat": 40.8392425, + "minlon": -73.9412769, + "maxlat": 40.8399295, + "maxlon": -73.9407749 + }, + "nodes": [ + 42428975, + 9566927308, + 13703300756, + 8767474549, + 42428973 + ], + "geometry": [ + { "lat": 40.8399295, "lon": -73.9407749 }, + { "lat": 40.8398819, "lon": -73.9408097 }, + { "lat": 40.8396449, "lon": -73.9409844 }, + { "lat": 40.8393319, "lon": -73.9412151 }, + { "lat": 40.8392425, "lon": -73.9412769 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 541442322, + "bounds": { + "minlat": 40.8395698, + "minlon": -73.9398826, + "maxlat": 40.8409552, + "maxlon": -73.9394727 + }, + "nodes": [ + 42433030, + 9566997285, + 9566997290, + 42432228, + 9566997291, + 2499757484, + 42433035 + ], + "geometry": [ + { "lat": 40.8395698, "lon": -73.9398826 }, + { "lat": 40.8396586, "lon": -73.9398562 }, + { "lat": 40.8402106, "lon": -73.9396920 }, + { "lat": 40.8402585, "lon": -73.9396778 }, + { "lat": 40.8403394, "lon": -73.9396546 }, + { "lat": 40.8408689, "lon": -73.9395030 }, + { "lat": 40.8409552, "lon": -73.9394727 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 541442323, + "bounds": { + "minlat": 40.8398471, + "minlon": -73.9407749, + "maxlat": 40.8399295, + "maxlon": -73.9405865 + }, + "nodes": [ + 42428975, + 561035381 + ], + "geometry": [ + { "lat": 40.8399295, "lon": -73.9407749 }, + { "lat": 40.8398471, "lon": -73.9405865 } + ], + "tags": { + "highway": "residential", + "name": "West 166th Street", + "name_1": "West 166 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "166th", + "tiger:name_base_1": "166", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 541447410, + "bounds": { + "minlat": 40.8028065, + "minlon": -73.9113577, + "maxlat": 40.8042229, + "maxlon": -73.9084888 + }, + "nodes": [ + 42775297, + 9910669573, + 9910669572, + 9910669586, + 988638742, + 9910669585, + 13703060118, + 7669379551, + 9908669931, + 42750288 + ], + "geometry": [ + { "lat": 40.8028065, "lon": -73.9084888 }, + { "lat": 40.8028508, "lon": -73.9085649 }, + { "lat": 40.8033384, "lon": -73.9094008 }, + { "lat": 40.8034770, "lon": -73.9096342 }, + { "lat": 40.8035264, "lon": -73.9097242 }, + { "lat": 40.8035688, "lon": -73.9098163 }, + { "lat": 40.8036166, "lon": -73.9099320 }, + { "lat": 40.8039016, "lon": -73.9106226 }, + { "lat": 40.8041461, "lon": -73.9111880 }, + { "lat": 40.8042229, "lon": -73.9113577 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 541447411, + "bounds": { + "minlat": 40.8010064, + "minlon": -73.9137124, + "maxlat": 40.8016693, + "maxlon": -73.9132303 + }, + "nodes": [ + 42750278, + 9908669923, + 6324329763, + 9908642216, + 42750274 + ], + "geometry": [ + { "lat": 40.8016693, "lon": -73.9132303 }, + { "lat": 40.8015993, "lon": -73.9132848 }, + { "lat": 40.8010847, "lon": -73.9136619 }, + { "lat": 40.8010598, "lon": -73.9136780 }, + { "lat": 40.8010064, "lon": -73.9137124 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Willow Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willow", + "tiger:name_type": "Ave", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 541447412, + "bounds": { + "minlat": 40.8004513, + "minlon": -73.9132303, + "maxlat": 40.8016693, + "maxlon": -73.9108627 + }, + "nodes": [ + 42764970, + 5859955129, + 988638712, + 9910669593, + 9910669594, + 9156976070, + 9910669595, + 5235688095, + 42750278 + ], + "geometry": [ + { "lat": 40.8004513, "lon": -73.9108627 }, + { "lat": 40.8005204, "lon": -73.9109775 }, + { "lat": 40.8010750, "lon": -73.9119090 }, + { "lat": 40.8011322, "lon": -73.9120124 }, + { "lat": 40.8011936, "lon": -73.9121318 }, + { "lat": 40.8012550, "lon": -73.9122601 }, + { "lat": 40.8013284, "lon": -73.9124269 }, + { "lat": 40.8015808, "lon": -73.9130226 }, + { "lat": 40.8016693, "lon": -73.9132303 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 134th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "134th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 541952503, + "bounds": { + "minlat": 40.7478748, + "minlon": -73.9741477, + "maxlat": 40.7480997, + "maxlon": -73.9739870 + }, + "nodes": [ + 5240026597, + 10166084897, + 5240026601 + ], + "geometry": [ + { "lat": 40.7480997, "lon": -73.9739870 }, + { "lat": 40.7480314, "lon": -73.9740362 }, + { "lat": 40.7478748, "lon": -73.9741477 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 541953859, + "bounds": { + "minlat": 40.7477071, + "minlon": -73.9750359, + "maxlat": 40.7478582, + "maxlon": -73.9749209 + }, + "nodes": [ + 5240042138, + 10166467095, + 5240042136 + ], + "geometry": [ + { "lat": 40.7478582, "lon": -73.9749209 }, + { "lat": 40.7477747, "lon": -73.9749845 }, + { "lat": 40.7477071, "lon": -73.9750359 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 541954976, + "bounds": { + "minlat": 40.7481181, + "minlon": -73.9751256, + "maxlat": 40.7484079, + "maxlon": -73.9748491 + }, + "nodes": [ + 2714777647, + 5240050238, + 5240050239, + 2714777673, + 2714777645, + 2714777647 + ], + "geometry": [ + { "lat": 40.7481576, "lon": -73.9751256 }, + { "lat": 40.7484079, "lon": -73.9749441 }, + { "lat": 40.7483684, "lon": -73.9748491 }, + { "lat": 40.7482977, "lon": -73.9749003 }, + { "lat": 40.7481181, "lon": -73.9750306 }, + { "lat": 40.7481576, "lon": -73.9751256 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "opening_hours": "24/7", + "tourism": "picnic_site" + } +}, +{ + "type": "way", + "id": 542096278, + "bounds": { + "minlat": 40.7457391, + "minlon": -73.9797439, + "maxlat": 40.7464063, + "maxlon": -73.9781270 + }, + "nodes": [ + 42445378, + 3932847288, + 12187343185, + 11043134799, + 3934635613, + 11813261918, + 11813261920, + 11813261921, + 11813261919, + 12183285330, + 8119462454, + 42445374 + ], + "geometry": [ + { "lat": 40.7457391, "lon": -73.9781270 }, + { "lat": 40.7457970, "lon": -73.9782486 }, + { "lat": 40.7458282, "lon": -73.9783228 }, + { "lat": 40.7459087, "lon": -73.9785144 }, + { "lat": 40.7461288, "lon": -73.9790384 }, + { "lat": 40.7462797, "lon": -73.9793978 }, + { "lat": 40.7462934, "lon": -73.9794333 }, + { "lat": 40.7463028, "lon": -73.9794609 }, + { "lat": 40.7463132, "lon": -73.9794942 }, + { "lat": 40.7463389, "lon": -73.9795705 }, + { "lat": 40.7463579, "lon": -73.9796239 }, + { "lat": 40.7464063, "lon": -73.9797439 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 542096279, + "bounds": { + "minlat": 40.7477705, + "minlon": -73.9829612, + "maxlat": 40.7484303, + "maxlon": -73.9824775 + }, + "nodes": [ + 42445365, + 8133342861, + 4960503208, + 10173357081, + 42434948 + ], + "geometry": [ + { "lat": 40.7477705, "lon": -73.9829612 }, + { "lat": 40.7478486, "lon": -73.9829016 }, + { "lat": 40.7483220, "lon": -73.9825529 }, + { "lat": 40.7483767, "lon": -73.9825146 }, + { "lat": 40.7484303, "lon": -73.9824775 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 542096280, + "bounds": { + "minlat": 40.7539458, + "minlon": -73.9981095, + "maxlat": 40.7541530, + "maxlon": -73.9976109 + }, + "nodes": [ + 2779131559, + 8261123380, + 42434427 + ], + "geometry": [ + { "lat": 40.7541530, "lon": -73.9981095 }, + { "lat": 40.7540017, "lon": -73.9977462 }, + { "lat": 40.7539458, "lon": -73.9976109 } + ], + "tags": { + "access:lanes": "yes|no", + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 542213933, + "bounds": { + "minlat": 40.7775416, + "minlon": -73.9778503, + "maxlat": 40.7787449, + "maxlon": -73.9749993 + }, + "nodes": [ + 42443341, + 8997530525, + 7784867895, + 42435283 + ], + "geometry": [ + { "lat": 40.7787449, "lon": -73.9778503 }, + { "lat": 40.7786801, "lon": -73.9776972 }, + { "lat": 40.7775915, "lon": -73.9751177 }, + { "lat": 40.7775416, "lon": -73.9749993 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 74th Street", + "name:ru": "Западная 74-я стрит", + "name_1": "West 74 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12052613", + "wikipedia": "en:74th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 542215780, + "bounds": { + "minlat": 40.7827163, + "minlon": -73.9712370, + "maxlat": 40.7839869, + "maxlon": -73.9703125 + }, + "nodes": [ + 42433564, + 7784867914, + 3392519877, + 42435308, + 3392519876, + 7784867926, + 42421800 + ], + "geometry": [ + { "lat": 40.7827163, "lon": -73.9712370 }, + { "lat": 40.7827717, "lon": -73.9711974 }, + { "lat": 40.7833020, "lon": -73.9708126 }, + { "lat": 40.7833528, "lon": -73.9707756 }, + { "lat": 40.7834159, "lon": -73.9707295 }, + { "lat": 40.7839304, "lon": -73.9703541 }, + { "lat": 40.7839869, "lon": -73.9703125 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:left": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through;left|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 542215781, + "bounds": { + "minlat": 40.7765182, + "minlon": -73.9757504, + "maxlat": 40.7781744, + "maxlon": -73.9745417 + }, + "nodes": [ + 11807683168, + 6909727929, + 42432556, + 7784867886, + 7784867894, + 42435283, + 7784867893, + 7784867901, + 42435295 + ], + "geometry": [ + { "lat": 40.7765182, "lon": -73.9757504 }, + { "lat": 40.7768546, "lon": -73.9755068 }, + { "lat": 40.7769031, "lon": -73.9754712 }, + { "lat": 40.7769426, "lon": -73.9754419 }, + { "lat": 40.7774869, "lon": -73.9750388 }, + { "lat": 40.7775416, "lon": -73.9749993 }, + { "lat": 40.7775922, "lon": -73.9749628 }, + { "lat": 40.7781184, "lon": -73.9745824 }, + { "lat": 40.7781744, "lon": -73.9745417 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:lane:right": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 542215989, + "bounds": { + "minlat": 40.7781042, + "minlon": -73.9811164, + "maxlat": 40.7792840, + "maxlon": -73.9783086 + }, + "nodes": [ + 42432558, + 9547735993, + 5115917334, + 42432564 + ], + "geometry": [ + { "lat": 40.7781042, "lon": -73.9783086 }, + { "lat": 40.7781535, "lon": -73.9784256 }, + { "lat": 40.7792423, "lon": -73.9810129 }, + { "lat": 40.7792840, "lon": -73.9811164 } + ], + "tags": { + "highway": "residential", + "name": "West 73rd Street", + "name:ru": "Западная 73-я стрит", + "name_1": "West 73 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 542216186, + "bounds": { + "minlat": 40.7788134, + "minlon": -73.9769106, + "maxlat": 40.7799947, + "maxlon": -73.9740803 + }, + "nodes": [ + 42443346, + 9001499678, + 7784867909, + 42435301 + ], + "geometry": [ + { "lat": 40.7799947, "lon": -73.9769106 }, + { "lat": 40.7799485, "lon": -73.9767992 }, + { "lat": 40.7788628, "lon": -73.9741982 }, + { "lat": 40.7788134, "lon": -73.9740803 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 76th Street", + "name:ru": "Западная 76-я стрит", + "name_1": "West 76 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 542216647, + "bounds": { + "minlat": 40.7827163, + "minlon": -73.9740729, + "maxlat": 40.7839166, + "maxlon": -73.9712370 + }, + "nodes": [ + 42433565, + 10039972335, + 7784867916, + 42433564 + ], + "geometry": [ + { "lat": 40.7839166, "lon": -73.9740729 }, + { "lat": 40.7838570, "lon": -73.9739321 }, + { "lat": 40.7827644, "lon": -73.9713527 }, + { "lat": 40.7827163, "lon": -73.9712370 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "name": "West 82nd Street", + "name:ru": "Западная 82-я стрит", + "name_1": "West 82 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 542216791, + "bounds": { + "minlat": 40.7833528, + "minlon": -73.9736127, + "maxlat": 40.7845451, + "maxlon": -73.9707756 + }, + "nodes": [ + 42435308, + 3392519875, + 10039972354, + 42437300 + ], + "geometry": [ + { "lat": 40.7833528, "lon": -73.9707756 }, + { "lat": 40.7834005, "lon": -73.9708909 }, + { "lat": 40.7844876, "lon": -73.9734760 }, + { "lat": 40.7845451, "lon": -73.9736127 } + ], + "tags": { + "highway": "residential", + "name": "West 83rd Street", + "name:ru": "Западная 83-я стрит", + "name_1": "West 83 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 542216919, + "bounds": { + "minlat": 40.7839869, + "minlon": -73.9731496, + "maxlat": 40.7851818, + "maxlon": -73.9703125 + }, + "nodes": [ + 42421803, + 10042554913, + 7784867927, + 42421800 + ], + "geometry": [ + { "lat": 40.7851818, "lon": -73.9731496 }, + { "lat": 40.7851243, "lon": -73.9730130 }, + { "lat": 40.7840348, "lon": -73.9704284 }, + { "lat": 40.7839869, "lon": -73.9703125 } + ], + "tags": { + "highway": "residential", + "name": "West 84th Street", + "name:ru": "Западная 84-я стрит", + "name_1": "West 84 Street", + "name_2": "Edgar Allen Poe Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 542216998, + "bounds": { + "minlat": 40.7846230, + "minlon": -73.9726868, + "maxlat": 40.7858123, + "maxlon": -73.9698495 + }, + "nodes": [ + 42424851, + 7784826632, + 10042551415, + 42443349 + ], + "geometry": [ + { "lat": 40.7846230, "lon": -73.9698495 }, + { "lat": 40.7846730, "lon": -73.9699691 }, + { "lat": 40.7857539, "lon": -73.9725497 }, + { "lat": 40.7858123, "lon": -73.9726868 } + ], + "tags": { + "highway": "residential", + "name": "West 85th Street", + "name:ru": "Западная 85-я стрит", + "name_1": "West 85 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644879", + "wikipedia": "en:85th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 542225570, + "bounds": { + "minlat": 40.8240836, + "minlon": -73.9488816, + "maxlat": 40.8245499, + "maxlon": -73.9480922 + }, + "nodes": [ + 42442621, + 11200341575, + 42443659 + ], + "geometry": [ + { "lat": 40.8245499, "lon": -73.9480922 }, + { "lat": 40.8245180, "lon": -73.9481473 }, + { "lat": 40.8240836, "lon": -73.9488816 } + ], + "tags": { + "description": "The northern end of Hamilton Place is painted green to signify the area is open to pedestrians and bicyclist only.", + "highway": "pedestrian", + "name": "Hamilton Place", + "name:etymology:wikidata": "Q178903", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Hamilton", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 542255948, + "bounds": { + "minlat": 40.7528582, + "minlon": -73.9958428, + "maxlat": 40.7540713, + "maxlon": -73.9929759 + }, + "nodes": [ + 42435645, + 6211484424, + 8660596945, + 5175213271, + 5175213278, + 5175213277, + 6878240311, + 5175213297, + 42444960 + ], + "geometry": [ + { "lat": 40.7528582, "lon": -73.9929759 }, + { "lat": 40.7529040, "lon": -73.9930842 }, + { "lat": 40.7529169, "lon": -73.9931148 }, + { "lat": 40.7535692, "lon": -73.9946606 }, + { "lat": 40.7536507, "lon": -73.9948537 }, + { "lat": 40.7537916, "lon": -73.9951877 }, + { "lat": 40.7538164, "lon": -73.9952465 }, + { "lat": 40.7540017, "lon": -73.9956829 }, + { "lat": 40.7540713, "lon": -73.9958428 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 35th Street", + "name:ru": "Западная 35-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 542256188, + "bounds": { + "minlat": 40.7551147, + "minlon": -73.9966484, + "maxlat": 40.7552202, + "maxlon": -73.9963969 + }, + "nodes": [ + 42434429, + 427842070 + ], + "geometry": [ + { "lat": 40.7552202, "lon": -73.9966484 }, + { "lat": 40.7551147, "lon": -73.9963969 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 36th Street", + "name:ru": "Западная 36-я стрит", + "name_1": "West 36 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 542257008, + "bounds": { + "minlat": 40.7535034, + "minlon": -73.9916330, + "maxlat": 40.7547070, + "maxlon": -73.9887981 + }, + "nodes": [ + 42433620, + 10168381341, + 10169532567, + 42433611 + ], + "geometry": [ + { "lat": 40.7547070, "lon": -73.9916330 }, + { "lat": 40.7546466, "lon": -73.9914881 }, + { "lat": 40.7535569, "lon": -73.9889228 }, + { "lat": 40.7535034, "lon": -73.9887981 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 542257009, + "bounds": { + "minlat": 40.7509597, + "minlon": -73.9873437, + "maxlat": 40.7528867, + "maxlon": -73.9827265 + }, + "nodes": [ + 42428268, + 4707471833, + 10169532601, + 42430317, + 10169532598, + 5846916769, + 5846916775, + 5846916773, + 5846916776, + 9965135082, + 42433604 + ], + "geometry": [ + { "lat": 40.7528867, "lon": -73.9873437 }, + { "lat": 40.7528183, "lon": -73.9871816 }, + { "lat": 40.7523747, "lon": -73.9860836 }, + { "lat": 40.7523170, "lon": -73.9859470 }, + { "lat": 40.7522618, "lon": -73.9858161 }, + { "lat": 40.7520800, "lon": -73.9853845 }, + { "lat": 40.7513611, "lon": -73.9836784 }, + { "lat": 40.7513351, "lon": -73.9836166 }, + { "lat": 40.7512092, "lon": -73.9833179 }, + { "lat": 40.7510094, "lon": -73.9828445 }, + { "lat": 40.7509597, "lon": -73.9827265 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 542257430, + "bounds": { + "minlat": 40.7559486, + "minlon": -73.9907278, + "maxlat": 40.7565670, + "maxlon": -73.9902760 + }, + "nodes": [ + 42435657, + 9538820167, + 9538820162, + 42435660 + ], + "geometry": [ + { "lat": 40.7559486, "lon": -73.9907278 }, + { "lat": 40.7560183, "lon": -73.9906762 }, + { "lat": 40.7565070, "lon": -73.9903198 }, + { "lat": 40.7565670, "lon": -73.9902760 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 542257982, + "bounds": { + "minlat": 40.7541474, + "minlon": -73.9911770, + "maxlat": 40.7553300, + "maxlon": -73.9883230 + }, + "nodes": [ + 42439964, + 10169532542, + 10168381348, + 42435654 + ], + "geometry": [ + { "lat": 40.7541474, "lon": -73.9883230 }, + { "lat": 40.7541989, "lon": -73.9884526 }, + { "lat": 40.7552801, "lon": -73.9910589 }, + { "lat": 40.7553300, "lon": -73.9911770 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lit": "yes", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 542258060, + "bounds": { + "minlat": 40.7547554, + "minlon": -73.9907278, + "maxlat": 40.7559486, + "maxlon": -73.9878881 + }, + "nodes": [ + 42435657, + 9538820166, + 13018681176, + 10169532534, + 42439968 + ], + "geometry": [ + { "lat": 40.7559486, "lon": -73.9907278 }, + { "lat": 40.7558891, "lon": -73.9905861 }, + { "lat": 40.7553957, "lon": -73.9894119 }, + { "lat": 40.7548095, "lon": -73.9880168 }, + { "lat": 40.7547554, "lon": -73.9878881 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "name_1": "West 40 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 542258061, + "bounds": { + "minlat": 40.7535585, + "minlon": -73.9868976, + "maxlat": 40.7543353, + "maxlon": -73.9850397 + }, + "nodes": [ + 42428277, + 10173490585, + 10268795802, + 10169532593, + 42430324 + ], + "geometry": [ + { "lat": 40.7543353, "lon": -73.9868976 }, + { "lat": 40.7543144, "lon": -73.9868481 }, + { "lat": 40.7542629, "lon": -73.9867247 }, + { "lat": 40.7536163, "lon": -73.9851783 }, + { "lat": 40.7535585, "lon": -73.9850397 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lit": "yes", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "name_1": "West 40 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 542258337, + "bounds": { + "minlat": 40.7592744, + "minlon": -73.9832392, + "maxlat": 40.7602667, + "maxlon": -73.9808828 + }, + "nodes": [ + 42430356, + 3971196623, + 4782506031, + 3971196624, + 1745991212, + 9665064838 + ], + "geometry": [ + { "lat": 40.7592744, "lon": -73.9808828 }, + { "lat": 40.7593366, "lon": -73.9810306 }, + { "lat": 40.7594743, "lon": -73.9813574 }, + { "lat": 40.7598101, "lon": -73.9821549 }, + { "lat": 40.7600415, "lon": -73.9827044 }, + { "lat": 40.7602667, "lon": -73.9832392 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "West 49th Street", + "name:ru": "Западная 49-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 542259076, + "bounds": { + "minlat": 40.7575765, + "minlon": -73.9920484, + "maxlat": 40.7581848, + "maxlon": -73.9906145 + }, + "nodes": [ + 12231119049, + 6353650679, + 5858721092, + 11591809861, + 12217736860 + ], + "geometry": [ + { "lat": 40.7575765, "lon": -73.9906145 }, + { "lat": 40.7575979, "lon": -73.9906660 }, + { "lat": 40.7578624, "lon": -73.9912834 }, + { "lat": 40.7578771, "lon": -73.9913182 }, + { "lat": 40.7581848, "lon": -73.9920484 } + ], + "tags": { + "cycleway:both": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 542351410, + "bounds": { + "minlat": 40.8072816, + "minlon": -74.0171769, + "maxlat": 40.8077213, + "maxlon": -74.0162439 + }, + "nodes": [ + 103860883, + 6711084304, + 6711084305, + 5243593078 + ], + "geometry": [ + { "lat": 40.8072816, "lon": -74.0162439 }, + { "lat": 40.8073769, "lon": -74.0163937 }, + { "lat": 40.8074402, "lon": -74.0165376 }, + { "lat": 40.8077213, "lon": -74.0171769 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 542371971, + "bounds": { + "minlat": 40.7696966, + "minlon": -73.9822360, + "maxlat": 40.7697925, + "maxlon": -73.9820135 + }, + "nodes": [ + 42421972, + 1061531777 + ], + "geometry": [ + { "lat": 40.7697925, "lon": -73.9822360 }, + { "lat": 40.7696966, "lon": -73.9820135 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 61st Street", + "name:ru": "Западная 61-я стрит", + "name_1": "West 61 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 542399282, + "bounds": { + "minlat": 40.8383360, + "minlon": -73.9185920, + "maxlat": 40.8389820, + "maxlon": -73.9169170 + }, + "nodes": [ + 42733764, + 13036979011, + 13036958375, + 42736040 + ], + "geometry": [ + { "lat": 40.8383360, "lon": -73.9169170 }, + { "lat": 40.8383670, "lon": -73.9169975 }, + { "lat": 40.8389299, "lon": -73.9184568 }, + { "lat": 40.8389820, "lon": -73.9185920 } + ], + "tags": { + "highway": "residential", + "name": "Marcy Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 542399384, + "bounds": { + "minlat": 40.8647263, + "minlon": -73.9918226, + "maxlat": 40.8686570, + "maxlon": -73.9884720 + }, + "nodes": [ + 103245609, + 103296561, + 103244876, + 103296564, + 8061356750, + 103296566, + 10243086877, + 103296568, + 103198217, + 8061356751, + 103198212, + 8061356757, + 103296570, + 103296572, + 5704149054, + 5704149051, + 103273789, + 6124217191, + 103296574, + 6137202455, + 6137202463, + 10232196090, + 7768850296, + 10232196094, + 5721683926, + 10232196092, + 6137202482, + 4207193767 + ], + "geometry": [ + { "lat": 40.8686570, "lon": -73.9884720 }, + { "lat": 40.8681360, "lon": -73.9887890 }, + { "lat": 40.8679427, "lon": -73.9888926 }, + { "lat": 40.8677508, "lon": -73.9890214 }, + { "lat": 40.8677437, "lon": -73.9890226 }, + { "lat": 40.8675770, "lon": -73.9891490 }, + { "lat": 40.8675311, "lon": -73.9891895 }, + { "lat": 40.8673990, "lon": -73.9893060 }, + { "lat": 40.8673760, "lon": -73.9893300 }, + { "lat": 40.8673010, "lon": -73.9894061 }, + { "lat": 40.8672330, "lon": -73.9894750 }, + { "lat": 40.8669407, "lon": -73.9898070 }, + { "lat": 40.8668430, "lon": -73.9899180 }, + { "lat": 40.8666560, "lon": -73.9901040 }, + { "lat": 40.8666097, "lon": -73.9901443 }, + { "lat": 40.8665179, "lon": -73.9902241 }, + { "lat": 40.8663606, "lon": -73.9903616 }, + { "lat": 40.8662990, "lon": -73.9904140 }, + { "lat": 40.8660620, "lon": -73.9906170 }, + { "lat": 40.8659059, "lon": -73.9907579 }, + { "lat": 40.8655590, "lon": -73.9910710 }, + { "lat": 40.8654619, "lon": -73.9911586 }, + { "lat": 40.8652306, "lon": -73.9913674 }, + { "lat": 40.8651771, "lon": -73.9914076 }, + { "lat": 40.8649452, "lon": -73.9916250 }, + { "lat": 40.8648948, "lon": -73.9916705 }, + { "lat": 40.8647588, "lon": -73.9917932 }, + { "lat": 40.8647263, "lon": -73.9918226 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 542399494, + "bounds": { + "minlat": 40.8377450, + "minlon": -73.9173830, + "maxlat": 40.8383360, + "maxlon": -73.9169170 + }, + "nodes": [ + 42733764, + 13036958393, + 13038642902, + 42733759 + ], + "geometry": [ + { "lat": 40.8383360, "lon": -73.9169170 }, + { "lat": 40.8382834, "lon": -73.9169585 }, + { "lat": 40.8378147, "lon": -73.9173285 }, + { "lat": 40.8377450, "lon": -73.9173830 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Walton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 542399495, + "bounds": { + "minlat": 40.8351852, + "minlon": -73.9193882, + "maxlat": 40.8377450, + "maxlon": -73.9173830 + }, + "nodes": [ + 42733759, + 13038642903, + 13020322140, + 42733755, + 13020322149, + 12998539954, + 42733751, + 12739350664, + 12739350656, + 42733747 + ], + "geometry": [ + { "lat": 40.8377450, "lon": -73.9173830 }, + { "lat": 40.8376943, "lon": -73.9174230 }, + { "lat": 40.8372319, "lon": -73.9177881 }, + { "lat": 40.8371560, "lon": -73.9178480 }, + { "lat": 40.8370786, "lon": -73.9179014 }, + { "lat": 40.8364983, "lon": -73.9183662 }, + { "lat": 40.8364400, "lon": -73.9184120 }, + { "lat": 40.8363854, "lon": -73.9184544 }, + { "lat": 40.8352345, "lon": -73.9193499 }, + { "lat": 40.8351852, "lon": -73.9193882 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 542399558, + "bounds": { + "minlat": 40.8370170, + "minlon": -73.9173830, + "maxlat": 40.8377450, + "maxlon": -73.9155133 + }, + "nodes": [ + 42733759, + 13038597893, + 6224280780, + 12739283298, + 2408369221 + ], + "geometry": [ + { "lat": 40.8377450, "lon": -73.9173830 }, + { "lat": 40.8377173, "lon": -73.9173119 }, + { "lat": 40.8370737, "lon": -73.9156588 }, + { "lat": 40.8370529, "lon": -73.9156055 }, + { "lat": 40.8370170, "lon": -73.9155133 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East Clarke Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Clarke", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 542676016, + "bounds": { + "minlat": 40.7093330, + "minlon": -73.9231912, + "maxlat": 40.7109222, + "maxlon": -73.9224830 + }, + "nodes": [ + 42474010, + 9744131245, + 9747567476, + 9744109099, + 42464209, + 9744109098, + 9747567477, + 597676556 + ], + "geometry": [ + { "lat": 40.7093330, "lon": -73.9224830 }, + { "lat": 40.7094057, "lon": -73.9225161 }, + { "lat": 40.7102478, "lon": -73.9228902 }, + { "lat": 40.7102826, "lon": -73.9229057 }, + { "lat": 40.7103440, "lon": -73.9229330 }, + { "lat": 40.7104175, "lon": -73.9229656 }, + { "lat": 40.7104603, "lon": -73.9229846 }, + { "lat": 40.7109222, "lon": -73.9231912 } + ], + "tags": { + "highway": "residential", + "name": "Scott Avenue", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 543529309, + "bounds": { + "minlat": 40.7453476, + "minlon": -73.9785900, + "maxlat": 40.7454211, + "maxlon": -73.9784140 + }, + "nodes": [ + 5254361544, + 8119462486, + 5254361545 + ], + "geometry": [ + { "lat": 40.7453476, "lon": -73.9784140 }, + { "lat": 40.7453999, "lon": -73.9785379 }, + { "lat": 40.7454211, "lon": -73.9785900 } + ], + "tags": { + "highway": "service", + "incline": "down", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 543530720, + "bounds": { + "minlat": 40.7480288, + "minlon": -73.9766410, + "maxlat": 40.7480971, + "maxlon": -73.9764763 + }, + "nodes": [ + 5254378181, + 10171137645, + 5254378183 + ], + "geometry": [ + { "lat": 40.7480971, "lon": -73.9766410 }, + { "lat": 40.7480784, "lon": -73.9765954 }, + { "lat": 40.7480288, "lon": -73.9764763 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 543879672, + "bounds": { + "minlat": 40.7126029, + "minlon": -73.9677048, + "maxlat": 40.7132942, + "maxlon": -73.9673932 + }, + "nodes": [ + 42469461, + 9990599541, + 42469464 + ], + "geometry": [ + { "lat": 40.7126029, "lon": -73.9677048 }, + { "lat": 40.7126611, "lon": -73.9676786 }, + { "lat": 40.7132942, "lon": -73.9673932 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 543880599, + "bounds": { + "minlat": 40.7334328, + "minlon": -73.9582957, + "maxlat": 40.7341475, + "maxlon": -73.9581783 + }, + "nodes": [ + 42486597, + 9920934950, + 11163899168, + 7008335411, + 42516047 + ], + "geometry": [ + { "lat": 40.7341475, "lon": -73.9582957 }, + { "lat": 40.7340739, "lon": -73.9582834 }, + { "lat": 40.7335542, "lon": -73.9581980 }, + { "lat": 40.7334918, "lon": -73.9581877 }, + { "lat": 40.7334328, "lon": -73.9581783 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Franklin", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 543883714, + "bounds": { + "minlat": 40.7065680, + "minlon": -73.9575970, + "maxlat": 40.7068627, + "maxlon": -73.9571244 + }, + "nodes": [ + 42482165, + 6338023989, + 42520698 + ], + "geometry": [ + { "lat": 40.7065680, "lon": -73.9575970 }, + { "lat": 40.7066167, "lon": -73.9575199 }, + { "lat": 40.7068627, "lon": -73.9571244 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 543897624, + "bounds": { + "minlat": 40.7070866, + "minlon": -73.9567281, + "maxlat": 40.7080169, + "maxlon": -73.9540209 + }, + "nodes": [ + 42505402, + 9776829403, + 42474684, + 5849451137, + 9776829373, + 42488278, + 9776829371, + 13685892618, + 9776829361, + 42491450 + ], + "geometry": [ + { "lat": 40.7080169, "lon": -73.9567281 }, + { "lat": 40.7079916, "lon": -73.9566552 }, + { "lat": 40.7078287, "lon": -73.9561856 }, + { "lat": 40.7078289, "lon": -73.9561796 }, + { "lat": 40.7076351, "lon": -73.9556144 }, + { "lat": 40.7076084, "lon": -73.9555366 }, + { "lat": 40.7075869, "lon": -73.9554742 }, + { "lat": 40.7071373, "lon": -73.9541682 }, + { "lat": 40.7071131, "lon": -73.9540978 }, + { "lat": 40.7070866, "lon": -73.9540209 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 543898104, + "bounds": { + "minlat": 40.7042030, + "minlon": -73.9582440, + "maxlat": 40.7054390, + "maxlon": -73.9563370 + }, + "nodes": [ + 42482174, + 9772859221, + 9772859098, + 42491429 + ], + "geometry": [ + { "lat": 40.7054390, "lon": -73.9563370 }, + { "lat": 40.7053943, "lon": -73.9564060 }, + { "lat": 40.7042497, "lon": -73.9581719 }, + { "lat": 40.7042030, "lon": -73.9582440 } + ], + "tags": { + "highway": "residential", + "name": "Hooper Street", + "name:etymology:wikidata": "Q1345669", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hooper", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 543902512, + "bounds": { + "minlat": 40.7354311, + "minlon": -73.9849431, + "maxlat": 40.7363822, + "maxlon": -73.9826949 + }, + "nodes": [ + 13205862052, + 10165972519, + 8392896508, + 8392896513, + 8392896514, + 12183286734, + 10172843052, + 42449893 + ], + "geometry": [ + { "lat": 40.7354311, "lon": -73.9826949 }, + { "lat": 40.7354887, "lon": -73.9828167 }, + { "lat": 40.7358886, "lon": -73.9837726 }, + { "lat": 40.7360447, "lon": -73.9841403 }, + { "lat": 40.7361139, "lon": -73.9843056 }, + { "lat": 40.7363013, "lon": -73.9847511 }, + { "lat": 40.7363239, "lon": -73.9848048 }, + { "lat": 40.7363822, "lon": -73.9849431 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 19th Street", + "name:ru": "Восточная 19-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 543902513, + "bounds": { + "minlat": 40.7363822, + "minlon": -73.9881184, + "maxlat": 40.7377164, + "maxlon": -73.9849431 + }, + "nodes": [ + 42449893, + 10172843048, + 12183283826, + 10172843044, + 42434358, + 10172843040, + 42459668, + 12181339165, + 10172843111, + 42456543 + ], + "geometry": [ + { "lat": 40.7363822, "lon": -73.9849431 }, + { "lat": 40.7364397, "lon": -73.9850723 }, + { "lat": 40.7369979, "lon": -73.9864037 }, + { "lat": 40.7370213, "lon": -73.9864594 }, + { "lat": 40.7370554, "lon": -73.9865427 }, + { "lat": 40.7370927, "lon": -73.9866325 }, + { "lat": 40.7375014, "lon": -73.9876002 }, + { "lat": 40.7376522, "lon": -73.9879663 }, + { "lat": 40.7376784, "lon": -73.9880285 }, + { "lat": 40.7377164, "lon": -73.9881184 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 19th Street", + "name:ru": "Восточная 19-я стрит", + "name_1": "East 19 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 543905773, + "bounds": { + "minlat": 40.7685866, + "minlon": -73.9672002, + "maxlat": 40.7691818, + "maxlon": -73.9657883 + }, + "nodes": [ + 10170844862, + 10125222343, + 596776017 + ], + "geometry": [ + { "lat": 40.7691818, "lon": -73.9672002 }, + { "lat": 40.7686351, "lon": -73.9659034 }, + { "lat": 40.7685866, "lon": -73.9657883 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 68th Street", + "name:ru": "Восточная 68-я стрит", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 543906141, + "bounds": { + "minlat": 40.7795347, + "minlon": -73.9593110, + "maxlat": 40.7801730, + "maxlon": -73.9578009 + }, + "nodes": [ + 596776132, + 8782927424, + 3392519830, + 42446036 + ], + "geometry": [ + { "lat": 40.7795347, "lon": -73.9578009 }, + { "lat": 40.7795782, "lon": -73.9579064 }, + { "lat": 40.7801292, "lon": -73.9592074 }, + { "lat": 40.7801730, "lon": -73.9593110 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lane_markings": "no", + "name": "East 85th Street", + "name:ru": "Восточная 85-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644879", + "wikipedia": "en:85th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 543906990, + "bounds": { + "minlat": 40.8043912, + "minlon": -73.9369374, + "maxlat": 40.8050563, + "maxlon": -73.9353330 + }, + "nodes": [ + 42434131, + 11214344803, + 13703423902, + 5482291307, + 11214344808, + 42434129 + ], + "geometry": [ + { "lat": 40.8043912, "lon": -73.9353330 }, + { "lat": 40.8044439, "lon": -73.9354598 }, + { "lat": 40.8045950, "lon": -73.9358235 }, + { "lat": 40.8047933, "lon": -73.9363007 }, + { "lat": 40.8050208, "lon": -73.9368513 }, + { "lat": 40.8050563, "lon": -73.9369374 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "East 126th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 543907517, + "bounds": { + "minlat": 40.8222778, + "minlon": -73.9386646, + "maxlat": 40.8223451, + "maxlon": -73.9385040 + }, + "nodes": [ + 42439922, + 2141026521 + ], + "geometry": [ + { "lat": 40.8223451, "lon": -73.9386646 }, + { "lat": 40.8222778, "lon": -73.9385040 } + ], + "tags": { + "highway": "residential", + "name": "West 146th Street", + "name_1": "West 146 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 543936964, + "bounds": { + "minlat": 40.7021658, + "minlon": -73.9443677, + "maxlat": 40.7021931, + "maxlon": -73.9440653 + }, + "nodes": [ + 42529854, + 8229296008, + 9752126448, + 42505449 + ], + "geometry": [ + { "lat": 40.7021931, "lon": -73.9440653 }, + { "lat": 40.7021870, "lon": -73.9441333 }, + { "lat": 40.7021797, "lon": -73.9442139 }, + { "lat": 40.7021658, "lon": -73.9443677 } + ], + "tags": { + "highway": "residential", + "name": "Cook Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cook", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "wikidata": "Q115973197" + } +}, +{ + "type": "way", + "id": 543939774, + "bounds": { + "minlat": 40.7713537, + "minlon": -73.9253360, + "maxlat": 40.7717752, + "maxlon": -73.9247803 + }, + "nodes": [ + 42900309, + 6452985339, + 2297358949 + ], + "geometry": [ + { "lat": 40.7713537, "lon": -73.9247803 }, + { "lat": 40.7714064, "lon": -73.9248497 }, + { "lat": 40.7717752, "lon": -73.9253360 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Newtown Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 543940487, + "bounds": { + "minlat": 40.7451837, + "minlon": -73.9121463, + "maxlat": 40.7458813, + "maxlon": -73.9085789 + }, + "nodes": [ + 42855339, + 10074125224, + 5538919093, + 42900269, + 10074125221, + 42935137, + 10074123215, + 42935106, + 10074123216, + 10074123211, + 10074123212, + 42916766, + 10074123210, + 10074123209, + 42932262 + ], + "geometry": [ + { "lat": 40.7451837, "lon": -73.9085789 }, + { "lat": 40.7452212, "lon": -73.9087051 }, + { "lat": 40.7452265, "lon": -73.9087228 }, + { "lat": 40.7454285, "lon": -73.9094772 }, + { "lat": 40.7455378, "lon": -73.9098850 }, + { "lat": 40.7455586, "lon": -73.9099621 }, + { "lat": 40.7456428, "lon": -73.9102752 }, + { "lat": 40.7456677, "lon": -73.9103683 }, + { "lat": 40.7456765, "lon": -73.9104070 }, + { "lat": 40.7456831, "lon": -73.9104499 }, + { "lat": 40.7457679, "lon": -73.9111741 }, + { "lat": 40.7457773, "lon": -73.9112539 }, + { "lat": 40.7457874, "lon": -73.9113345 }, + { "lat": 40.7458729, "lon": -73.9120715 }, + { "lat": 40.7458813, "lon": -73.9121463 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 544549058, + "bounds": { + "minlat": 40.7595538, + "minlon": -73.9680635, + "maxlat": 40.7596014, + "maxlon": -73.9679487 + }, + "nodes": [ + 42443615, + 6680686184 + ], + "geometry": [ + { "lat": 40.7596014, "lon": -73.9680635 }, + { "lat": 40.7595538, "lon": -73.9679487 } + ], + "tags": { + "highway": "residential", + "name": "East 56th Street", + "name:ru": "Восточная 56-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 544616716, + "bounds": { + "minlat": 40.7601725, + "minlon": -73.9627190, + "maxlat": 40.7612148, + "maxlon": -73.9617837 + }, + "nodes": [ + 3944770806, + 42423742, + 3785591429, + 3785591430, + 371036301, + 3785591431, + 3785591432, + 371036520, + 3785591433, + 2089938150, + 3785591434, + 371036302, + 3785591435, + 3785591436, + 1775181597, + 3785591437, + 3785591438, + 3785591440, + 3785591439, + 3785591441, + 42423747 + ], + "geometry": [ + { "lat": 40.7601725, "lon": -73.9617837 }, + { "lat": 40.7603984, "lon": -73.9623046 }, + { "lat": 40.7604268, "lon": -73.9623650 }, + { "lat": 40.7604613, "lon": -73.9624283 }, + { "lat": 40.7604978, "lon": -73.9624834 }, + { "lat": 40.7605290, "lon": -73.9625297 }, + { "lat": 40.7605780, "lon": -73.9625856 }, + { "lat": 40.7606216, "lon": -73.9626234 }, + { "lat": 40.7606592, "lon": -73.9626458 }, + { "lat": 40.7607168, "lon": -73.9626736 }, + { "lat": 40.7607627, "lon": -73.9626928 }, + { "lat": 40.7608086, "lon": -73.9627066 }, + { "lat": 40.7608519, "lon": -73.9627155 }, + { "lat": 40.7609011, "lon": -73.9627190 }, + { "lat": 40.7609513, "lon": -73.9627147 }, + { "lat": 40.7609973, "lon": -73.9627086 }, + { "lat": 40.7610480, "lon": -73.9626931 }, + { "lat": 40.7610855, "lon": -73.9626805 }, + { "lat": 40.7611256, "lon": -73.9626611 }, + { "lat": 40.7611683, "lon": -73.9626403 }, + { "lat": 40.7612148, "lon": -73.9626113 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "cycleway:right": "no", + "destination:lanes": "2nd Avenue south;Westside|1st Avenue North;FDR Drive", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "maxspeed": "15 mph", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "note": "Upper level", + "oneway": "yes", + "sidewalk": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 544616717, + "bounds": { + "minlat": 40.7612148, + "minlon": -73.9626113, + "maxlat": 40.7618022, + "maxlon": -73.9621834 + }, + "nodes": [ + 42423747, + 371034162 + ], + "geometry": [ + { "lat": 40.7612148, "lon": -73.9626113 }, + { "lat": 40.7618022, "lon": -73.9621834 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "cycleway:right": "no", + "destination:lanes": "2nd Avenue south;Westside|2nd Avenue south;Westside;1st Avenue North;FDR Drive|1st Avenue North;FDR Drive", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "layer": "1", + "maxspeed": "15 mph", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "note": "Upper level", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "yes", + "turn:lanes": "through|through;right|right" + } +}, +{ + "type": "way", + "id": 544812894, + "bounds": { + "minlat": 40.7593687, + "minlon": -73.9700720, + "maxlat": 40.7596371, + "maxlon": -73.9694455 + }, + "nodes": [ + 5266098185, + 10165922672, + 4862610026 + ], + "geometry": [ + { "lat": 40.7593687, "lon": -73.9694455 }, + { "lat": 40.7595952, "lon": -73.9699744 }, + { "lat": 40.7596371, "lon": -73.9700720 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "2", + "name": "East 55th Street", + "name:ru": "Восточная 55-я стрит", + "name_1": "East 55 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "width": "10", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 544819529, + "bounds": { + "minlat": 40.7484827, + "minlon": -73.9739418, + "maxlat": 40.7487234, + "maxlon": -73.9736513 + }, + "nodes": [ + 2714777730, + 5266158259, + 2714777725, + 2943503686, + 2943503684, + 2714777713, + 5266158260, + 2714777730 + ], + "geometry": [ + { "lat": 40.7487234, "lon": -73.9738162 }, + { "lat": 40.7486540, "lon": -73.9736513 }, + { "lat": 40.7486197, "lon": -73.9736764 }, + { "lat": 40.7485853, "lon": -73.9737016 }, + { "lat": 40.7485821, "lon": -73.9737040 }, + { "lat": 40.7484827, "lon": -73.9737768 }, + { "lat": 40.7485521, "lon": -73.9739418 }, + { "lat": 40.7487234, "lon": -73.9738162 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 544819869, + "bounds": { + "minlat": 40.7488185, + "minlon": -73.9736817, + "maxlat": 40.7490957, + "maxlon": -73.9734224 + }, + "nodes": [ + 5266157318, + 5266157315, + 5266157317, + 5266160723, + 5266157316, + 5266160721, + 2714777738, + 2714777741, + 5266160722, + 5266157318 + ], + "geometry": [ + { "lat": 40.7490957, "lon": -73.9735817 }, + { "lat": 40.7489521, "lon": -73.9736817 }, + { "lat": 40.7489299, "lon": -73.9736286 }, + { "lat": 40.7488615, "lon": -73.9736756 }, + { "lat": 40.7488270, "lon": -73.9735900 }, + { "lat": 40.7488185, "lon": -73.9735689 }, + { "lat": 40.7488702, "lon": -73.9735343 }, + { "lat": 40.7490028, "lon": -73.9734392 }, + { "lat": 40.7490308, "lon": -73.9734224 }, + { "lat": 40.7490957, "lon": -73.9735817 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 544819870, + "bounds": { + "minlat": 40.7487348, + "minlon": -73.9735979, + "maxlat": 40.7488589, + "maxlon": -73.9735069 + }, + "nodes": [ + 5266157320, + 10171269349, + 5266157319 + ], + "geometry": [ + { "lat": 40.7488589, "lon": -73.9735069 }, + { "lat": 40.7487932, "lon": -73.9735551 }, + { "lat": 40.7487348, "lon": -73.9735979 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 545451393, + "bounds": { + "minlat": 40.8385722, + "minlon": -73.9136495, + "maxlat": 40.8387420, + "maxlon": -73.9135335 + }, + "nodes": [ + 2327276578, + 2408355551 + ], + "geometry": [ + { "lat": 40.8385722, "lon": -73.9136495 }, + { "lat": 40.8387420, "lon": -73.9135335 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 545454933, + "bounds": { + "minlat": 40.8384164, + "minlon": -73.9135335, + "maxlat": 40.8387420, + "maxlon": -73.9126729 + }, + "nodes": [ + 2327276582, + 13036536883, + 2408364024, + 2408364021, + 13535816386, + 5543337904, + 2408355551 + ], + "geometry": [ + { "lat": 40.8384164, "lon": -73.9126729 }, + { "lat": 40.8384478, "lon": -73.9127597 }, + { "lat": 40.8384724, "lon": -73.9128263 }, + { "lat": 40.8386794, "lon": -73.9133720 }, + { "lat": 40.8386846, "lon": -73.9133855 }, + { "lat": 40.8387103, "lon": -73.9134519 }, + { "lat": 40.8387420, "lon": -73.9135335 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 545454934, + "bounds": { + "minlat": 40.8382538, + "minlon": -73.9136495, + "maxlat": 40.8385722, + "maxlon": -73.9127899 + }, + "nodes": [ + 2327276578, + 5543337905, + 2408364039, + 2408364018, + 13036536880, + 3557257813 + ], + "geometry": [ + { "lat": 40.8385722, "lon": -73.9136495 }, + { "lat": 40.8385375, "lon": -73.9135633 }, + { "lat": 40.8385075, "lon": -73.9134859 }, + { "lat": 40.8383033, "lon": -73.9129382 }, + { "lat": 40.8382818, "lon": -73.9128739 }, + { "lat": 40.8382538, "lon": -73.9127899 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 545527298, + "bounds": { + "minlat": 40.7019691, + "minlon": -73.9198600, + "maxlat": 40.7114560, + "maxlon": -73.9038127 + }, + "nodes": [ + 42827564, + 9744131334, + 9747567480, + 9744131340, + 42827568, + 9744131339, + 11033608897, + 42827574, + 11033608896, + 7882516201, + 10686537719, + 9744109091, + 42827581, + 9744109090, + 7882516214, + 42827589, + 11047985043, + 42827593, + 11047985042, + 10686521702, + 9590434395, + 42827597, + 9590434394, + 9590434393, + 42827600, + 9590434392, + 6024794246, + 42827602, + 6024794249, + 11047985030, + 42827605, + 11047985031, + 9761709300, + 42814485, + 9761709298, + 10686537765, + 9761709236, + 42827611, + 9761709234, + 9762206485, + 42827615, + 9762206487, + 11037790102, + 42827223, + 11037790101, + 9762206467, + 42827621, + 9762206465, + 11042404171, + 42827625, + 11042404172, + 10686537747, + 9762206444, + 42827631, + 9762206442, + 11037795918, + 42827635, + 11037795919, + 2306110889, + 9762206593, + 42827640, + 9762206594, + 9762206621, + 42827643, + 9762206623, + 9762206718, + 42827646, + 9762206720, + 9762206753, + 42827650 + ], + "geometry": [ + { "lat": 40.7114560, "lon": -73.9198600 }, + { "lat": 40.7114090, "lon": -73.9197790 }, + { "lat": 40.7108002, "lon": -73.9187471 }, + { "lat": 40.7107697, "lon": -73.9186954 }, + { "lat": 40.7107270, "lon": -73.9186230 }, + { "lat": 40.7106968, "lon": -73.9185719 }, + { "lat": 40.7103309, "lon": -73.9179523 }, + { "lat": 40.7102900, "lon": -73.9178830 }, + { "lat": 40.7102535, "lon": -73.9178214 }, + { "lat": 40.7100637, "lon": -73.9175010 }, + { "lat": 40.7099125, "lon": -73.9172457 }, + { "lat": 40.7098957, "lon": -73.9172174 }, + { "lat": 40.7098510, "lon": -73.9171420 }, + { "lat": 40.7098178, "lon": -73.9170860 }, + { "lat": 40.7096325, "lon": -73.9167731 }, + { "lat": 40.7094131, "lon": -73.9164029 }, + { "lat": 40.7090170, "lon": -73.9157328 }, + { "lat": 40.7089740, "lon": -73.9156600 }, + { "lat": 40.7089404, "lon": -73.9156029 }, + { "lat": 40.7086053, "lon": -73.9150336 }, + { "lat": 40.7085748, "lon": -73.9149818 }, + { "lat": 40.7085360, "lon": -73.9149160 }, + { "lat": 40.7084999, "lon": -73.9148549 }, + { "lat": 40.7081341, "lon": -73.9142365 }, + { "lat": 40.7080990, "lon": -73.9141770 }, + { "lat": 40.7080685, "lon": -73.9141240 }, + { "lat": 40.7077055, "lon": -73.9135119 }, + { "lat": 40.7076600, "lon": -73.9134350 }, + { "lat": 40.7076189, "lon": -73.9133651 }, + { "lat": 40.7072662, "lon": -73.9127673 }, + { "lat": 40.7072230, "lon": -73.9126940 }, + { "lat": 40.7071923, "lon": -73.9126421 }, + { "lat": 40.7068278, "lon": -73.9120260 }, + { "lat": 40.7067840, "lon": -73.9119520 }, + { "lat": 40.7067504, "lon": -73.9118952 }, + { "lat": 40.7064139, "lon": -73.9113266 }, + { "lat": 40.7063864, "lon": -73.9112802 }, + { "lat": 40.7063460, "lon": -73.9112120 }, + { "lat": 40.7063130, "lon": -73.9111562 }, + { "lat": 40.7059486, "lon": -73.9105397 }, + { "lat": 40.7059080, "lon": -73.9104710 }, + { "lat": 40.7058736, "lon": -73.9104126 }, + { "lat": 40.7055120, "lon": -73.9097995 }, + { "lat": 40.7054710, "lon": -73.9097300 }, + { "lat": 40.7054367, "lon": -73.9096722 }, + { "lat": 40.7050726, "lon": -73.9090576 }, + { "lat": 40.7050320, "lon": -73.9089890 }, + { "lat": 40.7049993, "lon": -73.9089337 }, + { "lat": 40.7046352, "lon": -73.9083183 }, + { "lat": 40.7045930, "lon": -73.9082470 }, + { "lat": 40.7045609, "lon": -73.9081926 }, + { "lat": 40.7042266, "lon": -73.9076267 }, + { "lat": 40.7041970, "lon": -73.9075765 }, + { "lat": 40.7041560, "lon": -73.9075070 }, + { "lat": 40.7041203, "lon": -73.9074468 }, + { "lat": 40.7037600, "lon": -73.9068387 }, + { "lat": 40.7037140, "lon": -73.9067610 }, + { "lat": 40.7036853, "lon": -73.9067126 }, + { "lat": 40.7035890, "lon": -73.9065503 }, + { "lat": 40.7033201, "lon": -73.9060967 }, + { "lat": 40.7032770, "lon": -73.9060240 }, + { "lat": 40.7032455, "lon": -73.9059708 }, + { "lat": 40.7028770, "lon": -73.9053511 }, + { "lat": 40.7028380, "lon": -73.9052840 }, + { "lat": 40.7028080, "lon": -73.9052341 }, + { "lat": 40.7024399, "lon": -73.9046099 }, + { "lat": 40.7024000, "lon": -73.9045420 }, + { "lat": 40.7023723, "lon": -73.9044946 }, + { "lat": 40.7020065, "lon": -73.9038760 }, + { "lat": 40.7019691, "lon": -73.9038127 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Onderdonk Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 546143804, + "bounds": { + "minlat": 40.7410897, + "minlon": -73.9772802, + "maxlat": 40.7412316, + "maxlon": -73.9771767 + }, + "nodes": [ + 5277924518, + 9143542468, + 8119192813, + 5277924517 + ], + "geometry": [ + { "lat": 40.7412316, "lon": -73.9771767 }, + { "lat": 40.7411893, "lon": -73.9772078 }, + { "lat": 40.7411709, "lon": -73.9772213 }, + { "lat": 40.7410897, "lon": -73.9772802 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 546163730, + "bounds": { + "minlat": 40.7386816, + "minlon": -73.9795852, + "maxlat": 40.7389341, + "maxlon": -73.9793990 + }, + "nodes": [ + 5278159383, + 8119542599, + 5278159382 + ], + "geometry": [ + { "lat": 40.7389341, "lon": -73.9793990 }, + { "lat": 40.7388756, "lon": -73.9794422 }, + { "lat": 40.7386816, "lon": -73.9795852 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 546173054, + "bounds": { + "minlat": 40.7393244, + "minlon": -73.9789888, + "maxlat": 40.7395108, + "maxlon": -73.9788521 + }, + "nodes": [ + 5278263670, + 8119193321, + 5278263671 + ], + "geometry": [ + { "lat": 40.7395108, "lon": -73.9788521 }, + { "lat": 40.7394525, "lon": -73.9788948 }, + { "lat": 40.7393244, "lon": -73.9789888 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 546173266, + "bounds": { + "minlat": 40.7394529, + "minlon": -73.9790224, + "maxlat": 40.7395518, + "maxlon": -73.9789499 + }, + "nodes": [ + 5278266721, + 8119192795, + 5278266420 + ], + "geometry": [ + { "lat": 40.7395518, "lon": -73.9789499 }, + { "lat": 40.7394938, "lon": -73.9789925 }, + { "lat": 40.7394529, "lon": -73.9790224 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 546364858, + "bounds": { + "minlat": 40.7112944, + "minlon": -73.9788947, + "maxlat": 40.7155363, + "maxlon": -73.9649789 + }, + "nodes": [ + 3785707059, + 486864447, + 486864450, + 486864454, + 486864457, + 9968370327 + ], + "geometry": [ + { "lat": 40.7155363, "lon": -73.9788947 }, + { "lat": 40.7153733, "lon": -73.9785566 }, + { "lat": 40.7150019, "lon": -73.9772515 }, + { "lat": 40.7119388, "lon": -73.9671943 }, + { "lat": 40.7114212, "lon": -73.9654995 }, + { "lat": 40.7112944, "lon": -73.9649789 } + ], + "tags": { + "bridge": "yes", + "destination": "Staten Island", + "destination:ref:to": "I 278 West", + "destination:street": "Broadway", + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "layer": "2", + "maxheight": "13'4\"", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "wikidata": "Q125068", + "wikipedia": "en:Williamsburg Bridge" + } +}, +{ + "type": "way", + "id": 546364862, + "bounds": { + "minlat": 40.7177588, + "minlon": -73.9857233, + "maxlat": 40.7178259, + "maxlon": -73.9854974 + }, + "nodes": [ + 5079840929, + 12195869759, + 486869939 + ], + "geometry": [ + { "lat": 40.7177588, "lon": -73.9854974 }, + { "lat": 40.7177864, "lon": -73.9856023 }, + { "lat": 40.7178259, "lon": -73.9857233 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "25 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "turn:lanes": "through|through|through" + } +}, +{ + "type": "way", + "id": 546613473, + "bounds": { + "minlat": 40.7116712, + "minlon": -74.0033174, + "maxlat": 40.7120958, + "maxlon": -74.0031747 + }, + "nodes": [ + 370759314, + 588751700, + 4158794798, + 4158794792, + 4158794793, + 588751704, + 4158794794, + 588751712, + 4158794797, + 4158794791, + 9389819392, + 7477074115 + ], + "geometry": [ + { "lat": 40.7116712, "lon": -74.0032020 }, + { "lat": 40.7117390, "lon": -74.0032527 }, + { "lat": 40.7117739, "lon": -74.0032748 }, + { "lat": 40.7118127, "lon": -74.0032939 }, + { "lat": 40.7118500, "lon": -74.0033095 }, + { "lat": 40.7118913, "lon": -74.0033174 }, + { "lat": 40.7119326, "lon": -74.0033143 }, + { "lat": 40.7119701, "lon": -74.0033011 }, + { "lat": 40.7120078, "lon": -74.0032756 }, + { "lat": 40.7120411, "lon": -74.0032471 }, + { "lat": 40.7120709, "lon": -74.0032174 }, + { "lat": 40.7120958, "lon": -74.0031747 } + ], + "tags": { + "access": "no", + "highway": "service", + "level": "1", + "maxspeed": "25 mph", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 546613474, + "bounds": { + "minlat": 40.7100781, + "minlon": -74.0032020, + "maxlat": 40.7116712, + "maxlon": -74.0017161 + }, + "nodes": [ + 588719108, + 370759317, + 4158752893, + 4158752892, + 278639857, + 278639858, + 4158771532, + 4158771530, + 4158771531, + 370759314 + ], + "geometry": [ + { "lat": 40.7100781, "lon": -74.0017161 }, + { "lat": 40.7102051, "lon": -74.0018159 }, + { "lat": 40.7102809, "lon": -74.0018723 }, + { "lat": 40.7103411, "lon": -74.0019268 }, + { "lat": 40.7104094, "lon": -74.0019980 }, + { "lat": 40.7109774, "lon": -74.0026072 }, + { "lat": 40.7110403, "lon": -74.0026705 }, + { "lat": 40.7111036, "lon": -74.0027297 }, + { "lat": 40.7111623, "lon": -74.0027829 }, + { "lat": 40.7116712, "lon": -74.0032020 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "highway": "service", + "layer": "3", + "maxspeed": "25 mph", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 546619298, + "bounds": { + "minlat": 40.7398468, + "minlon": -73.9243285, + "maxlat": 40.7398781, + "maxlon": -73.9240463 + }, + "nodes": [ + 42880316, + 10083107657, + 4215943289 + ], + "geometry": [ + { "lat": 40.7398781, "lon": -73.9243285 }, + { "lat": 40.7398639, "lon": -73.9241957 }, + { "lat": 40.7398468, "lon": -73.9240463 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "48th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left;through" + } +}, +{ + "type": "way", + "id": 546619302, + "bounds": { + "minlat": 40.7398781, + "minlon": -73.9243285, + "maxlat": 40.7425097, + "maxlon": -73.9178684 + }, + "nodes": [ + 42880316, + 10083107659, + 4215943290, + 11155242451, + 10083107660, + 42896827, + 10743722464, + 10743722474, + 42896831, + 10743722471, + 11155242450, + 9192032626, + 10081025530, + 42860618, + 10081025531, + 9192032625, + 11155242449, + 10743722501, + 42885759, + 10743722498, + 9192032622, + 9192032621, + 11155242448, + 10743722508, + 42833574, + 10743722506, + 10743722504, + 42896840 + ], + "geometry": [ + { "lat": 40.7398781, "lon": -73.9243285 }, + { "lat": 40.7399358, "lon": -73.9242014 }, + { "lat": 40.7400408, "lon": -73.9239565 }, + { "lat": 40.7403036, "lon": -73.9233601 }, + { "lat": 40.7403937, "lon": -73.9231557 }, + { "lat": 40.7404360, "lon": -73.9230400 }, + { "lat": 40.7404744, "lon": -73.9229453 }, + { "lat": 40.7408334, "lon": -73.9221318 }, + { "lat": 40.7408895, "lon": -73.9220036 }, + { "lat": 40.7409496, "lon": -73.9218722 }, + { "lat": 40.7410503, "lon": -73.9216521 }, + { "lat": 40.7412644, "lon": -73.9211842 }, + { "lat": 40.7412851, "lon": -73.9211388 }, + { "lat": 40.7413752, "lon": -73.9209510 }, + { "lat": 40.7414605, "lon": -73.9207400 }, + { "lat": 40.7414767, "lon": -73.9207011 }, + { "lat": 40.7414896, "lon": -73.9206709 }, + { "lat": 40.7417757, "lon": -73.9200030 }, + { "lat": 40.7418115, "lon": -73.9199194 }, + { "lat": 40.7418461, "lon": -73.9198407 }, + { "lat": 40.7419846, "lon": -73.9195258 }, + { "lat": 40.7420292, "lon": -73.9194118 }, + { "lat": 40.7421315, "lon": -73.9191047 }, + { "lat": 40.7421739, "lon": -73.9189776 }, + { "lat": 40.7422023, "lon": -73.9188878 }, + { "lat": 40.7422239, "lon": -73.9188195 }, + { "lat": 40.7424838, "lon": -73.9179634 }, + { "lat": 40.7425097, "lon": -73.9178684 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 546619307, + "bounds": { + "minlat": 40.7391018, + "minlon": -73.9231811, + "maxlat": 40.7397502, + "maxlon": -73.9176091 + }, + "nodes": [ + 42880323, + 10083107666, + 10083107667, + 10083107665, + 42880327, + 10083107671, + 10083107673, + 42880331, + 8237218727, + 8237218717, + 42880335, + 10083107675, + 10083107676, + 42833587, + 10083107677, + 10083107680, + 42880337, + 10083107681, + 10083107684, + 42859973 + ], + "geometry": [ + { "lat": 40.7397502, "lon": -73.9231811 }, + { "lat": 40.7397405, "lon": -73.9231021 }, + { "lat": 40.7397346, "lon": -73.9230512 }, + { "lat": 40.7396548, "lon": -73.9223604 }, + { "lat": 40.7396422, "lon": -73.9222527 }, + { "lat": 40.7396290, "lon": -73.9221430 }, + { "lat": 40.7395432, "lon": -73.9214097 }, + { "lat": 40.7395344, "lon": -73.9213261 }, + { "lat": 40.7395261, "lon": -73.9212464 }, + { "lat": 40.7394352, "lon": -73.9204727 }, + { "lat": 40.7394267, "lon": -73.9203971 }, + { "lat": 40.7394178, "lon": -73.9203190 }, + { "lat": 40.7393273, "lon": -73.9195505 }, + { "lat": 40.7393191, "lon": -73.9194696 }, + { "lat": 40.7393112, "lon": -73.9193935 }, + { "lat": 40.7392178, "lon": -73.9186236 }, + { "lat": 40.7392080, "lon": -73.9185364 }, + { "lat": 40.7392007, "lon": -73.9184656 }, + { "lat": 40.7391158, "lon": -73.9177205 }, + { "lat": 40.7391018, "lon": -73.9176091 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "48th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 546663920, + "bounds": { + "minlat": 40.7354477, + "minlon": -73.9850042, + "maxlat": 40.7356002, + "maxlon": -73.9848953 + }, + "nodes": [ + 5282642709, + 9679181068, + 5282642710 + ], + "geometry": [ + { "lat": 40.7356002, "lon": -73.9848953 }, + { "lat": 40.7355418, "lon": -73.9849368 }, + { "lat": 40.7354477, "lon": -73.9850042 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 547089938, + "bounds": { + "minlat": 40.7340706, + "minlon": -73.9898898, + "maxlat": 40.7344282, + "maxlon": -73.9898417 + }, + "nodes": [ + 42453116, + 12179560538, + 3670742454, + 42440721 + ], + "geometry": [ + { "lat": 40.7340706, "lon": -73.9898417 }, + { "lat": 40.7342639, "lon": -73.9898653 }, + { "lat": 40.7343122, "lon": -73.9898722 }, + { "lat": 40.7344282, "lon": -73.9898898 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "4th Avenue", + "name:ru": "4-я Авеню", + "name_1": "4 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 547936835, + "bounds": { + "minlat": 40.7504360, + "minlon": -73.9434891, + "maxlat": 40.7508071, + "maxlon": -73.9433960 + }, + "nodes": [ + 276036211, + 2969267783, + 3785649095, + 3785649096, + 3785649097, + 2969267784, + 3785649098, + 593216537, + 3785649099, + 2969267785, + 593216541 + ], + "geometry": [ + { "lat": 40.7508071, "lon": -73.9433960 }, + { "lat": 40.7507457, "lon": -73.9434248 }, + { "lat": 40.7507209, "lon": -73.9434473 }, + { "lat": 40.7506937, "lon": -73.9434672 }, + { "lat": 40.7506555, "lon": -73.9434833 }, + { "lat": 40.7506313, "lon": -73.9434880 }, + { "lat": 40.7505877, "lon": -73.9434891 }, + { "lat": 40.7505487, "lon": -73.9434861 }, + { "lat": 40.7505024, "lon": -73.9434776 }, + { "lat": 40.7504694, "lon": -73.9434663 }, + { "lat": 40.7504360, "lon": -73.9434470 } + ], + "tags": { + "access:conditional": "no @ (Mo-Fr 06:00-09:30); yes @ (Mo-Fr 06:00-09:30 AND occupants>1)", + "bicycle": "no", + "bridge": "viaduct", + "destination:ref:forward": "NY 25", + "destination:street:forward": "Queens Boulevard;Jackson Avenue", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "oneway": "reversible", + "oneway:conditional": "yes @ (Mo-Fr 00:00-06:00,09:30-24:00; Sa-Su); -1 @ (Mo-Fr 06:00-09:30)", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 547936839, + "bounds": { + "minlat": 40.7506657, + "minlon": -73.9432913, + "maxlat": 40.7516803, + "maxlon": -73.9425801 + }, + "nodes": [ + 593216013, + 593216015, + 3785649269, + 2969267795, + 3785649268, + 3785649267, + 2969267796, + 593216019, + 3785649266, + 3785649265 + ], + "geometry": [ + { "lat": 40.7506657, "lon": -73.9432913 }, + { "lat": 40.7513799, "lon": -73.9426408 }, + { "lat": 40.7514186, "lon": -73.9426130 }, + { "lat": 40.7514588, "lon": -73.9425948 }, + { "lat": 40.7514955, "lon": -73.9425848 }, + { "lat": 40.7515256, "lon": -73.9425801 }, + { "lat": 40.7515647, "lon": -73.9425803 }, + { "lat": 40.7516049, "lon": -73.9425860 }, + { "lat": 40.7516370, "lon": -73.9425967 }, + { "lat": 40.7516803, "lon": -73.9426156 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "2", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 547936843, + "bounds": { + "minlat": 40.7516803, + "minlon": -73.9453403, + "maxlat": 40.7529271, + "maxlon": -73.9426156 + }, + "nodes": [ + 3785649265, + 593216024, + 3785649264, + 7739297999, + 3785649263, + 3785649262, + 9188711333, + 3785649259, + 593216034 + ], + "geometry": [ + { "lat": 40.7516803, "lon": -73.9426156 }, + { "lat": 40.7517107, "lon": -73.9426369 }, + { "lat": 40.7517394, "lon": -73.9426644 }, + { "lat": 40.7517701, "lon": -73.9427071 }, + { "lat": 40.7517983, "lon": -73.9427542 }, + { "lat": 40.7518234, "lon": -73.9428038 }, + { "lat": 40.7524813, "lon": -73.9443114 }, + { "lat": 40.7528080, "lon": -73.9450399 }, + { "lat": 40.7529271, "lon": -73.9453403 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 548193559, + "bounds": { + "minlat": 40.8626910, + "minlon": -73.9090191, + "maxlat": 40.8628376, + "maxlon": -73.9049386 + }, + "nodes": [ + 42731002, + 5296117832, + 10130913949, + 5296125216, + 9903143790, + 42731010, + 9903143789, + 9903143778, + 2327325360, + 9903143777, + 9903143776, + 9903143775, + 1396352601, + 9903143774, + 9903143773, + 5296141001, + 9903143772, + 5296117836, + 9903143771, + 42731023 + ], + "geometry": [ + { "lat": 40.8627572, "lon": -73.9049386 }, + { "lat": 40.8627627, "lon": -73.9051272 }, + { "lat": 40.8627660, "lon": -73.9052361 }, + { "lat": 40.8627703, "lon": -73.9053817 }, + { "lat": 40.8627894, "lon": -73.9061024 }, + { "lat": 40.8627926, "lon": -73.9062392 }, + { "lat": 40.8627955, "lon": -73.9063610 }, + { "lat": 40.8628221, "lon": -73.9074914 }, + { "lat": 40.8628249, "lon": -73.9075960 }, + { "lat": 40.8628263, "lon": -73.9076855 }, + { "lat": 40.8628376, "lon": -73.9080957 }, + { "lat": 40.8628369, "lon": -73.9081659 }, + { "lat": 40.8628315, "lon": -73.9082305 }, + { "lat": 40.8628244, "lon": -73.9082950 }, + { "lat": 40.8628164, "lon": -73.9083536 }, + { "lat": 40.8627737, "lon": -73.9086178 }, + { "lat": 40.8627454, "lon": -73.9087875 }, + { "lat": 40.8627305, "lon": -73.9088555 }, + { "lat": 40.8627123, "lon": -73.9089412 }, + { "lat": 40.8626910, "lon": -73.9090191 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 548193561, + "bounds": { + "minlat": 40.8622489, + "minlon": -73.9099436, + "maxlat": 40.8622788, + "maxlon": -73.9099012 + }, + "nodes": [ + 42731026, + 12058583970 + ], + "geometry": [ + { "lat": 40.8622788, "lon": -73.9099012 }, + { "lat": 40.8622489, "lon": -73.9099436 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 549422127, + "bounds": { + "minlat": 40.7722148, + "minlon": -73.9781102, + "maxlat": 40.7723720, + "maxlon": -73.9779022 + }, + "nodes": [ + 5307240793, + 5307240782, + 5307240781, + 5307240795, + 5307240792, + 5307240785, + 5307240798, + 5335811119, + 5307240789, + 5307240783, + 5307240787, + 5307240794, + 5307240786, + 5307240796, + 5307240797, + 5307240784, + 5307240788, + 5307240790, + 5307240791, + 5307240793 + ], + "geometry": [ + { "lat": 40.7723720, "lon": -73.9779898 }, + { "lat": 40.7723639, "lon": -73.9779576 }, + { "lat": 40.7723485, "lon": -73.9779305 }, + { "lat": 40.7723273, "lon": -73.9779114 }, + { "lat": 40.7723025, "lon": -73.9779022 }, + { "lat": 40.7722769, "lon": -73.9779040 }, + { "lat": 40.7722530, "lon": -73.9779165 }, + { "lat": 40.7722335, "lon": -73.9779385 }, + { "lat": 40.7722203, "lon": -73.9779676 }, + { "lat": 40.7722148, "lon": -73.9780017 }, + { "lat": 40.7722181, "lon": -73.9780363 }, + { "lat": 40.7722299, "lon": -73.9780676 }, + { "lat": 40.7722489, "lon": -73.9780919 }, + { "lat": 40.7722728, "lon": -73.9781067 }, + { "lat": 40.7722991, "lon": -73.9781102 }, + { "lat": 40.7723248, "lon": -73.9781021 }, + { "lat": 40.7723470, "lon": -73.9780833 }, + { "lat": 40.7723633, "lon": -73.9780558 }, + { "lat": 40.7723718, "lon": -73.9780237 }, + { "lat": 40.7723720, "lon": -73.9779898 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 549567506, + "bounds": { + "minlat": 40.8070738, + "minlon": -73.9119766, + "maxlat": 40.8071930, + "maxlon": -73.9119195 + }, + "nodes": [ + 5308530243, + 5308530244 + ], + "geometry": [ + { "lat": 40.8070738, "lon": -73.9119766 }, + { "lat": 40.8071930, "lon": -73.9119195 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 549567507, + "bounds": { + "minlat": 40.8071930, + "minlon": -73.9119195, + "maxlat": 40.8073959, + "maxlon": -73.9118209 + }, + "nodes": [ + 5308530244, + 5308530245 + ], + "geometry": [ + { "lat": 40.8071930, "lon": -73.9119195 }, + { "lat": 40.8073959, "lon": -73.9118209 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 550303914, + "bounds": { + "minlat": 40.8299346, + "minlon": -73.9708587, + "maxlat": 40.8305806, + "maxlon": -73.9697000 + }, + "nodes": [ + 5315234552, + 5362459126, + 7205081569, + 5315234551, + 7205081570, + 7205081571, + 5315234550, + 7205081572, + 5362459130, + 5362459125, + 5362459128, + 5315234556 + ], + "geometry": [ + { "lat": 40.8305806, "lon": -73.9708587 }, + { "lat": 40.8304400, "lon": -73.9703766 }, + { "lat": 40.8302448, "lon": -73.9697473 }, + { "lat": 40.8302237, "lon": -73.9697000 }, + { "lat": 40.8301767, "lon": -73.9697014 }, + { "lat": 40.8299612, "lon": -73.9698249 }, + { "lat": 40.8299346, "lon": -73.9698663 }, + { "lat": 40.8299358, "lon": -73.9699240 }, + { "lat": 40.8299848, "lon": -73.9700840 }, + { "lat": 40.8300532, "lon": -73.9703131 }, + { "lat": 40.8301185, "lon": -73.9705321 }, + { "lat": 40.8301852, "lon": -73.9707555 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 550303915, + "bounds": { + "minlat": 40.8298953, + "minlon": -73.9709391, + "maxlat": 40.8307459, + "maxlon": -73.9707555 + }, + "nodes": [ + 5315234560, + 5315234556, + 5315234552, + 7205081568, + 5315234555 + ], + "geometry": [ + { "lat": 40.8298953, "lon": -73.9709391 }, + { "lat": 40.8301852, "lon": -73.9707555 }, + { "lat": 40.8305806, "lon": -73.9708587 }, + { "lat": 40.8306274, "lon": -73.9708689 }, + { "lat": 40.8307459, "lon": -73.9708948 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 550303916, + "bounds": { + "minlat": 40.8300455, + "minlon": -73.9715661, + "maxlat": 40.8300530, + "maxlon": -73.9714828 + }, + "nodes": [ + 5362451459, + 5362451440 + ], + "geometry": [ + { "lat": 40.8300530, "lon": -73.9714828 }, + { "lat": 40.8300455, "lon": -73.9715661 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 550514517, + "bounds": { + "minlat": 40.8090058, + "minlon": -73.9511777, + "maxlat": 40.8101762, + "maxlon": -73.9484034 + }, + "nodes": [ + 42439861, + 5266458360, + 5266458368, + 5266458366, + 5266458367, + 5266458370, + 42435805 + ], + "geometry": [ + { "lat": 40.8090058, "lon": -73.9484034 }, + { "lat": 40.8090573, "lon": -73.9485267 }, + { "lat": 40.8095663, "lon": -73.9497330 }, + { "lat": 40.8095919, "lon": -73.9497880 }, + { "lat": 40.8096224, "lon": -73.9498658 }, + { "lat": 40.8101218, "lon": -73.9510489 }, + { "lat": 40.8101762, "lon": -73.9511777 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 550727393, + "bounds": { + "minlat": 40.7532396, + "minlon": -73.9715121, + "maxlat": 40.7535763, + "maxlon": -73.9712678 + }, + "nodes": [ + 5319121991, + 10168666945, + 5319124077 + ], + "geometry": [ + { "lat": 40.7535763, "lon": -73.9712678 }, + { "lat": 40.7535250, "lon": -73.9713047 }, + { "lat": 40.7532396, "lon": -73.9715121 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 550727574, + "bounds": { + "minlat": 40.7530606, + "minlon": -73.9716410, + "maxlat": 40.7532396, + "maxlon": -73.9715121 + }, + "nodes": [ + 5319124077, + 5319124078, + 5319124076 + ], + "geometry": [ + { "lat": 40.7532396, "lon": -73.9715121 }, + { "lat": 40.7531664, "lon": -73.9715648 }, + { "lat": 40.7530606, "lon": -73.9716410 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 550727575, + "bounds": { + "minlat": 40.7529577, + "minlon": -73.9717151, + "maxlat": 40.7530606, + "maxlon": -73.9716410 + }, + "nodes": [ + 5319124076, + 12513254212, + 5319124079 + ], + "geometry": [ + { "lat": 40.7530606, "lon": -73.9716410 }, + { "lat": 40.7530180, "lon": -73.9716717 }, + { "lat": 40.7529577, "lon": -73.9717151 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 551073019, + "bounds": { + "minlat": 40.8136972, + "minlon": -73.9314060, + "maxlat": 40.8137894, + "maxlon": -73.9313758 + }, + "nodes": [ + 2482581646, + 5214547511 + ], + "geometry": [ + { "lat": 40.8137894, "lon": -73.9313758 }, + { "lat": 40.8136972, "lon": -73.9314060 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "source:name": "New York State Office of Cyber Security (OCS) StreetSegmentPublic Dataset (http://gis.ny.gov/gisdata/inventories/details.cfm?DSID=932)", + "tiger:cfcc": "A15", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Major Deegan", + "tiger:name_base_1": "I-87", + "tiger:name_type": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 551074012, + "bounds": { + "minlat": 40.7339397, + "minlon": -73.9782500, + "maxlat": 40.7343019, + "maxlon": -73.9773908 + }, + "nodes": [ + 4298764923, + 12179607165, + 3601297797, + 5286408252, + 5286408253, + 12179607166, + 4298764915 + ], + "geometry": [ + { "lat": 40.7339397, "lon": -73.9773908 }, + { "lat": 40.7340205, "lon": -73.9775877 }, + { "lat": 40.7340411, "lon": -73.9776347 }, + { "lat": 40.7340736, "lon": -73.9777088 }, + { "lat": 40.7341052, "lon": -73.9777811 }, + { "lat": 40.7341269, "lon": -73.9778304 }, + { "lat": 40.7343019, "lon": -73.9782500 } + ], + "tags": { + "cycleway:right": "separate", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 551074013, + "bounds": { + "minlat": 40.7325693, + "minlon": -73.9754466, + "maxlat": 40.7329862, + "maxlon": -73.9743998 + }, + "nodes": [ + 685164636, + 3686061886, + 3686061913, + 387184988 + ], + "geometry": [ + { "lat": 40.7329862, "lon": -73.9754466 }, + { "lat": 40.7329576, "lon": -73.9753827 }, + { "lat": 40.7326175, "lon": -73.9745416 }, + { "lat": 40.7325693, "lon": -73.9743998 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street Service Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 551322605, + "bounds": { + "minlat": 40.8784397, + "minlon": -73.9184948, + "maxlat": 40.8789408, + "maxlon": -73.9180483 + }, + "nodes": [ + 5324419500, + 5324419501, + 5324419502, + 5324419503, + 5324419504, + 5324419505, + 5324419506, + 42738955 + ], + "geometry": [ + { "lat": 40.8789408, "lon": -73.9182822 }, + { "lat": 40.8788818, "lon": -73.9184626 }, + { "lat": 40.8787256, "lon": -73.9184948 }, + { "lat": 40.8785877, "lon": -73.9184518 }, + { "lat": 40.8784802, "lon": -73.9183285 }, + { "lat": 40.8784397, "lon": -73.9182265 }, + { "lat": 40.8784640, "lon": -73.9181005 }, + { "lat": 40.8785259, "lon": -73.9180483 } + ], + "tags": { + "access": "private", + "addr:housenumber": "25-55", + "addr:postcode": "10463", + "addr:state": "NY", + "addr:street": "Knolls Crescent", + "highway": "service", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 551325409, + "bounds": { + "minlat": 40.8789890, + "minlon": -73.9171276, + "maxlat": 40.8793554, + "maxlon": -73.9167311 + }, + "nodes": [ + 5324454001, + 13041475419, + 5324454000, + 9594591207, + 1545136710 + ], + "geometry": [ + { "lat": 40.8793554, "lon": -73.9167311 }, + { "lat": 40.8792923, "lon": -73.9168782 }, + { "lat": 40.8792850, "lon": -73.9168953 }, + { "lat": 40.8792810, "lon": -73.9168979 }, + { "lat": 40.8789890, "lon": -73.9171276 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 551325410, + "bounds": { + "minlat": 40.8785243, + "minlon": -73.9180483, + "maxlat": 40.8789890, + "maxlon": -73.9171276 + }, + "nodes": [ + 1545136710, + 1545136751, + 1545136740, + 1545120651, + 42738955 + ], + "geometry": [ + { "lat": 40.8789890, "lon": -73.9171276 }, + { "lat": 40.8785884, "lon": -73.9177935 }, + { "lat": 40.8785466, "lon": -73.9178742 }, + { "lat": 40.8785243, "lon": -73.9179689 }, + { "lat": 40.8785259, "lon": -73.9180483 } + ], + "tags": { + "highway": "residential", + "name": "Knolls Crescent", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Knolls", + "tiger:name_type": "Cres", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 551368762, + "bounds": { + "minlat": 40.7720592, + "minlon": -73.9133576, + "maxlat": 40.7723028, + "maxlon": -73.9129964 + }, + "nodes": [ + 5324928517, + 9242368772, + 5324928518 + ], + "geometry": [ + { "lat": 40.7720592, "lon": -73.9129964 }, + { "lat": 40.7722638, "lon": -73.9132998 }, + { "lat": 40.7723028, "lon": -73.9133576 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 551368763, + "bounds": { + "minlat": 40.7717365, + "minlon": -73.9130950, + "maxlat": 40.7719804, + "maxlon": -73.9127410 + }, + "nodes": [ + 2883612566, + 9242368768, + 5324928519 + ], + "geometry": [ + { "lat": 40.7719804, "lon": -73.9130950 }, + { "lat": 40.7717750, "lon": -73.9127968 }, + { "lat": 40.7717365, "lon": -73.9127410 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 551368990, + "bounds": { + "minlat": 40.7705908, + "minlon": -73.9125444, + "maxlat": 40.7708053, + "maxlon": -73.9122396 + }, + "nodes": [ + 5324930912, + 7659298994, + 9242368804, + 5324930913 + ], + "geometry": [ + { "lat": 40.7708053, "lon": -73.9125444 }, + { "lat": 40.7707932, "lon": -73.9125272 }, + { "lat": 40.7707574, "lon": -73.9124763 }, + { "lat": 40.7705908, "lon": -73.9122396 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 551646028, + "bounds": { + "minlat": 40.8328806, + "minlon": -73.9447869, + "maxlat": 40.8340255, + "maxlon": -73.9420072 + }, + "nodes": [ + 42442656, + 11291862045, + 9680957601, + 561035372 + ], + "geometry": [ + { "lat": 40.8328806, "lon": -73.9420072 }, + { "lat": 40.8329429, "lon": -73.9421580 }, + { "lat": 40.8339815, "lon": -73.9446737 }, + { "lat": 40.8340255, "lon": -73.9447869 } + ], + "tags": { + "alt_name": "Juan M. Díaz Way", + "cycleway:both": "no", + "description": "This honorary street name memorializes Juan M. Díaz", + "highway": "residential", + "historic": "memorial", + "name": "West 157th Street", + "name_1": "West 157 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "157th", + "tiger:name_base_1": "157", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 551646029, + "bounds": { + "minlat": 40.8323747, + "minlon": -73.9408792, + "maxlat": 40.8344923, + "maxlon": -73.9400480 + }, + "nodes": [ + 42432990, + 11291880543, + 11291880529, + 42432992, + 11291880527, + 11291880513, + 42432994, + 11291880511, + 11291880497, + 42432999 + ], + "geometry": [ + { "lat": 40.8323747, "lon": -73.9408792 }, + { "lat": 40.8324537, "lon": -73.9408558 }, + { "lat": 40.8330409, "lon": -73.9406709 }, + { "lat": 40.8330980, "lon": -73.9406530 }, + { "lat": 40.8331698, "lon": -73.9406224 }, + { "lat": 40.8337286, "lon": -73.9403844 }, + { "lat": 40.8337860, "lon": -73.9403600 }, + { "lat": 40.8338615, "lon": -73.9403266 }, + { "lat": 40.8344332, "lon": -73.9400741 }, + { "lat": 40.8344923, "lon": -73.9400480 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "parking:lane:both": "parallel", + "rcn_ref": "9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 551675591, + "bounds": { + "minlat": 40.8574544, + "minlon": -73.9096496, + "maxlat": 40.8596048, + "maxlon": -73.9077684 + }, + "nodes": [ + 42769898, + 3096749157, + 13181365297, + 42747810 + ], + "geometry": [ + { "lat": 40.8574544, "lon": -73.9096496 }, + { "lat": 40.8575333, "lon": -73.9096095 }, + { "lat": 40.8576957, "lon": -73.9094994 }, + { "lat": 40.8596048, "lon": -73.9077684 } + ], + "tags": { + "busway:both": "lane", + "cycleway": "no", + "hgv": "local", + "highway": "tertiary", + "lanes": "4", + "lanes:bus": "2", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "name_1": "University Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 551859404, + "bounds": { + "minlat": 40.8367964, + "minlon": -73.9097405, + "maxlat": 40.8371232, + "maxlon": -73.9096129 + }, + "nodes": [ + 42739243, + 13036556306, + 5329030891, + 5329030892, + 486818475 + ], + "geometry": [ + { "lat": 40.8371232, "lon": -73.9096129 }, + { "lat": 40.8370474, "lon": -73.9096301 }, + { "lat": 40.8369890, "lon": -73.9096520 }, + { "lat": 40.8369075, "lon": -73.9096797 }, + { "lat": 40.8367964, "lon": -73.9097405 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "name": "Findlay Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller;Findlay", + "tiger:name_type": "Ave", + "tiger:zip_left": "10456", + "tiger:zip_right": "10457;10456", + "tiger:zip_right_1": "10456" + } +}, +{ + "type": "way", + "id": 551859410, + "bounds": { + "minlat": 40.8352826, + "minlon": -73.9153850, + "maxlat": 40.8354120, + "maxlon": -73.9150116 + }, + "nodes": [ + 42742517, + 13038896164, + 42731646 + ], + "geometry": [ + { "lat": 40.8354120, "lon": -73.9153850 }, + { "lat": 40.8353841, "lon": -73.9153067 }, + { "lat": 40.8352826, "lon": -73.9150116 } + ], + "tags": { + "highway": "residential", + "name": "East 168th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 551951665, + "bounds": { + "minlat": 40.7145334, + "minlon": -73.9420710, + "maxlat": 40.7147353, + "maxlon": -73.9419695 + }, + "nodes": [ + 7722378707, + 9695846856, + 8668750421 + ], + "geometry": [ + { "lat": 40.7147353, "lon": -73.9420710 }, + { "lat": 40.7146537, "lon": -73.9420293 }, + { "lat": 40.7145334, "lon": -73.9419695 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "Bushwick Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 552016979, + "bounds": { + "minlat": 40.7142527, + "minlon": -73.9299168, + "maxlat": 40.7143397, + "maxlon": -73.9299093 + }, + "nodes": [ + 8842579372, + 7961803890 + ], + "geometry": [ + { "lat": 40.7143397, "lon": -73.9299093 }, + { "lat": 40.7142527, "lon": -73.9299168 } + ], + "tags": { + "highway": "residential", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 552026234, + "bounds": { + "minlat": 40.8508791, + "minlon": -73.9676437, + "maxlat": 40.8508998, + "maxlon": -73.9674882 + }, + "nodes": [ + 103134231, + 6896033176, + 103126803 + ], + "geometry": [ + { "lat": 40.8508791, "lon": -73.9674882 }, + { "lat": 40.8508911, "lon": -73.9675778 }, + { "lat": 40.8508998, "lon": -73.9676437 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 552026236, + "bounds": { + "minlat": 40.8528043, + "minlon": -73.9709259, + "maxlat": 40.8542790, + "maxlon": -73.9700589 + }, + "nodes": [ + 103189365, + 4397826841, + 5487759024, + 2821818770, + 7929689944, + 103280494 + ], + "geometry": [ + { "lat": 40.8528043, "lon": -73.9709259 }, + { "lat": 40.8531792, "lon": -73.9707065 }, + { "lat": 40.8533378, "lon": -73.9706111 }, + { "lat": 40.8535034, "lon": -73.9705260 }, + { "lat": 40.8535786, "lon": -73.9704931 }, + { "lat": 40.8542790, "lon": -73.9700589 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 552035014, + "bounds": { + "minlat": 40.8499407, + "minlon": -73.9687381, + "maxlat": 40.8501638, + "maxlon": -73.9678912 + }, + "nodes": [ + 5330468352, + 10002778667, + 10002778684, + 5330468353 + ], + "geometry": [ + { "lat": 40.8501638, "lon": -73.9687381 }, + { "lat": 40.8501414, "lon": -73.9686530 }, + { "lat": 40.8499563, "lon": -73.9679505 }, + { "lat": 40.8499407, "lon": -73.9678912 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 552035015, + "bounds": { + "minlat": 40.8505411, + "minlon": -73.9685453, + "maxlat": 40.8506320, + "maxlon": -73.9681479 + }, + "nodes": [ + 5330468354, + 10002778669, + 5330468355, + 5330468356, + 10002778712 + ], + "geometry": [ + { "lat": 40.8505784, "lon": -73.9685453 }, + { "lat": 40.8505568, "lon": -73.9684628 }, + { "lat": 40.8505411, "lon": -73.9684031 }, + { "lat": 40.8506320, "lon": -73.9682845 }, + { "lat": 40.8505976, "lon": -73.9681479 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035016, + "bounds": { + "minlat": 40.8504630, + "minlon": -73.9684031, + "maxlat": 40.8505411, + "maxlon": -73.9680704 + }, + "nodes": [ + 5330468355, + 5330468364, + 5330468358, + 10002778715 + ], + "geometry": [ + { "lat": 40.8505411, "lon": -73.9684031 }, + { "lat": 40.8505124, "lon": -73.9682977 }, + { "lat": 40.8504630, "lon": -73.9681166 }, + { "lat": 40.8504891, "lon": -73.9680704 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035017, + "bounds": { + "minlat": 40.8501126, + "minlon": -73.9686353, + "maxlat": 40.8503855, + "maxlon": -73.9678124 + }, + "nodes": [ + 5330468360, + 10002778668, + 5330468361, + 5330468362, + 5330468368, + 5330468366, + 10002778683, + 5330468363 + ], + "geometry": [ + { "lat": 40.8503855, "lon": -73.9686353 }, + { "lat": 40.8503632, "lon": -73.9685518 }, + { "lat": 40.8503186, "lon": -73.9683846 }, + { "lat": 40.8502778, "lon": -73.9684031 }, + { "lat": 40.8502158, "lon": -73.9681814 }, + { "lat": 40.8501617, "lon": -73.9679877 }, + { "lat": 40.8501295, "lon": -73.9678729 }, + { "lat": 40.8501126, "lon": -73.9678124 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035018, + "bounds": { + "minlat": 40.8503186, + "minlon": -73.9683846, + "maxlat": 40.8505124, + "maxlon": -73.9682977 + }, + "nodes": [ + 5330468361, + 5330468364 + ], + "geometry": [ + { "lat": 40.8503186, "lon": -73.9683846 }, + { "lat": 40.8505124, "lon": -73.9682977 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035019, + "bounds": { + "minlat": 40.8504529, + "minlon": -73.9681166, + "maxlat": 40.8504630, + "maxlon": -73.9680779 + }, + "nodes": [ + 5330468358, + 5330468367 + ], + "geometry": [ + { "lat": 40.8504630, "lon": -73.9681166 }, + { "lat": 40.8504529, "lon": -73.9680779 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035020, + "bounds": { + "minlat": 40.8502158, + "minlon": -73.9681814, + "maxlat": 40.8504529, + "maxlon": -73.9680779 + }, + "nodes": [ + 5330468367, + 5330468368 + ], + "geometry": [ + { "lat": 40.8504529, "lon": -73.9680779 }, + { "lat": 40.8502158, "lon": -73.9681814 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035021, + "bounds": { + "minlat": 40.8501617, + "minlon": -73.9680779, + "maxlat": 40.8504529, + "maxlon": -73.9678824 + }, + "nodes": [ + 5330468367, + 5330468365, + 5330468366 + ], + "geometry": [ + { "lat": 40.8504529, "lon": -73.9680779 }, + { "lat": 40.8504013, "lon": -73.9678824 }, + { "lat": 40.8501617, "lon": -73.9679877 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035022, + "bounds": { + "minlat": 40.8497760, + "minlon": -73.9698829, + "maxlat": 40.8506325, + "maxlon": -73.9686353 + }, + "nodes": [ + 5330468360, + 5330468375, + 5330468374, + 5330468369, + 5330468373, + 5330468370, + 5330468371 + ], + "geometry": [ + { "lat": 40.8503855, "lon": -73.9686353 }, + { "lat": 40.8504363, "lon": -73.9688187 }, + { "lat": 40.8505744, "lon": -73.9693130 }, + { "lat": 40.8506325, "lon": -73.9695210 }, + { "lat": 40.8503324, "lon": -73.9696563 }, + { "lat": 40.8498299, "lon": -73.9698829 }, + { "lat": 40.8497760, "lon": -73.9696796 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035023, + "bounds": { + "minlat": 40.8503324, + "minlon": -73.9700661, + "maxlat": 40.8504429, + "maxlon": -73.9696563 + }, + "nodes": [ + 5330468372, + 5330468373 + ], + "geometry": [ + { "lat": 40.8504429, "lon": -73.9700661 }, + { "lat": 40.8503324, "lon": -73.9696563 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035024, + "bounds": { + "minlat": 40.8497760, + "minlon": -73.9696796, + "maxlat": 40.8505744, + "maxlon": -73.9693130 + }, + "nodes": [ + 5330468371, + 5330468374 + ], + "geometry": [ + { "lat": 40.8497760, "lon": -73.9696796 }, + { "lat": 40.8505744, "lon": -73.9693130 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035025, + "bounds": { + "minlat": 40.8503250, + "minlon": -73.9692751, + "maxlat": 40.8504363, + "maxlon": -73.9688187 + }, + "nodes": [ + 5330468375, + 5330468376, + 5330468377 + ], + "geometry": [ + { "lat": 40.8504363, "lon": -73.9688187 }, + { "lat": 40.8503250, "lon": -73.9688685 }, + { "lat": 40.8504326, "lon": -73.9692751 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035026, + "bounds": { + "minlat": 40.8564004, + "minlon": -73.9654456, + "maxlat": 40.8567731, + "maxlon": -73.9651368 + }, + "nodes": [ + 5330468378, + 12021336903, + 9291861048, + 9291861050, + 12021336904, + 9291861049, + 9291861047, + 12021336905, + 12021336906, + 103126813 + ], + "geometry": [ + { "lat": 40.8564004, "lon": -73.9654456 }, + { "lat": 40.8564615, "lon": -73.9653975 }, + { "lat": 40.8565708, "lon": -73.9653290 }, + { "lat": 40.8566733, "lon": -73.9652671 }, + { "lat": 40.8566918, "lon": -73.9652545 }, + { "lat": 40.8567060, "lon": -73.9652420 }, + { "lat": 40.8567242, "lon": -73.9652205 }, + { "lat": 40.8567361, "lon": -73.9652025 }, + { "lat": 40.8567497, "lon": -73.9651813 }, + { "lat": 40.8567731, "lon": -73.9651368 } + ], + "tags": { + "highway": "unclassified", + "name": "Hudson Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "St", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 552035030, + "bounds": { + "minlat": 40.8539181, + "minlon": -73.9685611, + "maxlat": 40.8539822, + "maxlon": -73.9683640 + }, + "nodes": [ + 5330468390, + 12824924117, + 5330468391 + ], + "geometry": [ + { "lat": 40.8539181, "lon": -73.9683640 }, + { "lat": 40.8539686, "lon": -73.9685192 }, + { "lat": 40.8539822, "lon": -73.9685611 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 552035031, + "bounds": { + "minlat": 40.8539822, + "minlon": -73.9688939, + "maxlat": 40.8540953, + "maxlon": -73.9685611 + }, + "nodes": [ + 5330468391, + 5330468392, + 5330468393, + 5330468394 + ], + "geometry": [ + { "lat": 40.8539822, "lon": -73.9685611 }, + { "lat": 40.8540708, "lon": -73.9687028 }, + { "lat": 40.8540953, "lon": -73.9688399 }, + { "lat": 40.8539997, "lon": -73.9688939 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035032, + "bounds": { + "minlat": 40.8539018, + "minlon": -73.9688939, + "maxlat": 40.8539997, + "maxlon": -73.9685611 + }, + "nodes": [ + 5330468394, + 5330468395, + 5330468396, + 5330468391 + ], + "geometry": [ + { "lat": 40.8539997, "lon": -73.9688939 }, + { "lat": 40.8539018, "lon": -73.9686443 }, + { "lat": 40.8539368, "lon": -73.9685858 }, + { "lat": 40.8539822, "lon": -73.9685611 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035033, + "bounds": { + "minlat": 40.8533940, + "minlon": -73.9677326, + "maxlat": 40.8537574, + "maxlon": -73.9672871 + }, + "nodes": [ + 5330468397, + 5708260046, + 5330468398, + 5330468399, + 5330468400 + ], + "geometry": [ + { "lat": 40.8533940, "lon": -73.9677326 }, + { "lat": 40.8534830, "lon": -73.9676797 }, + { "lat": 40.8537574, "lon": -73.9674904 }, + { "lat": 40.8536793, "lon": -73.9672871 }, + { "lat": 40.8534203, "lon": -73.9674547 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552035038, + "bounds": { + "minlat": 40.8523085, + "minlon": -73.9670246, + "maxlat": 40.8524480, + "maxlon": -73.9668629 + }, + "nodes": [ + 5179132349, + 5330468448, + 5330468443, + 5179134369, + 5330468442, + 5330468441, + 5330468440, + 5330468447, + 5330468446, + 5330468445 + ], + "geometry": [ + { "lat": 40.8523205, "lon": -73.9670246 }, + { "lat": 40.8523099, "lon": -73.9669913 }, + { "lat": 40.8523085, "lon": -73.9669552 }, + { "lat": 40.8523164, "lon": -73.9669206 }, + { "lat": 40.8523327, "lon": -73.9668915 }, + { "lat": 40.8523555, "lon": -73.9668715 }, + { "lat": 40.8523821, "lon": -73.9668629 }, + { "lat": 40.8524066, "lon": -73.9668657 }, + { "lat": 40.8524293, "lon": -73.9668783 }, + { "lat": 40.8524480, "lon": -73.9668995 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 552035039, + "bounds": { + "minlat": 40.8518901, + "minlon": -73.9658538, + "maxlat": 40.8519201, + "maxlon": -73.9656693 + }, + "nodes": [ + 5330468456, + 10002759244, + 10002759243, + 103154295 + ], + "geometry": [ + { "lat": 40.8519201, "lon": -73.9658538 }, + { "lat": 40.8519037, "lon": -73.9657963 }, + { "lat": 40.8518995, "lon": -73.9657814 }, + { "lat": 40.8518901, "lon": -73.9656693 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 552354139, + "bounds": { + "minlat": 40.8277830, + "minlon": -73.9086040, + "maxlat": 40.8282250, + "maxlon": -73.9072280 + }, + "nodes": [ + 42730090, + 5482223728, + 13247238230, + 42768578 + ], + "geometry": [ + { "lat": 40.8282250, "lon": -73.9086040 }, + { "lat": 40.8279838, "lon": -73.9078412 }, + { "lat": 40.8278230, "lon": -73.9073503 }, + { "lat": 40.8277830, "lon": -73.9072280 } + ], + "tags": { + "highway": "residential", + "name": "East 166th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "166th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 552379872, + "bounds": { + "minlat": 40.8402940, + "minlon": -73.9215909, + "maxlat": 40.8403185, + "maxlon": -73.9213917 + }, + "nodes": [ + 42745197, + 12163756889, + 2912071067 + ], + "geometry": [ + { "lat": 40.8402940, "lon": -73.9213917 }, + { "lat": 40.8403067, "lon": -73.9214893 }, + { "lat": 40.8403185, "lon": -73.9215909 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 170th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 552379875, + "bounds": { + "minlat": 40.8315256, + "minlon": -73.9356297, + "maxlat": 40.8317856, + "maxlon": -73.9354566 + }, + "nodes": [ + 5009645111, + 9153608708, + 5333189422 + ], + "geometry": [ + { "lat": 40.8317856, "lon": -73.9354566 }, + { "lat": 40.8315930, "lon": -73.9355892 }, + { "lat": 40.8315256, "lon": -73.9356297 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "8th;Harlem River", + "tiger:name_base_1": "Frederick Douglass", + "tiger:name_type": "Ave;Dr", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 552379876, + "bounds": { + "minlat": 40.8305317, + "minlon": -73.9362077, + "maxlat": 40.8312003, + "maxlon": -73.9357100 + }, + "nodes": [ + 5333189428, + 5333189427, + 13535318220, + 5333189426, + 5333189423 + ], + "geometry": [ + { "lat": 40.8305317, "lon": -73.9362077 }, + { "lat": 40.8307376, "lon": -73.9360476 }, + { "lat": 40.8309418, "lon": -73.9358974 }, + { "lat": 40.8309992, "lon": -73.9358552 }, + { "lat": 40.8312003, "lon": -73.9357100 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "8th;Harlem River", + "tiger:name_base_1": "Frederick Douglass", + "tiger:name_type": "Ave;Dr", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 552379877, + "bounds": { + "minlat": 40.8427575, + "minlon": -73.9247909, + "maxlat": 40.8434530, + "maxlon": -73.9246940 + }, + "nodes": [ + 42741647, + 13564503737, + 42741652 + ], + "geometry": [ + { "lat": 40.8427575, "lon": -73.9247909 }, + { "lat": 40.8433370, "lon": -73.9247102 }, + { "lat": 40.8434530, "lon": -73.9246940 } + ], + "tags": { + "highway": "residential", + "name": "Merriam Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Merriam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 552386025, + "bounds": { + "minlat": 40.8350293, + "minlon": -73.9455130, + "maxlat": 40.8351598, + "maxlon": -73.9453926 + }, + "nodes": [ + 9935939400, + 2504882466, + 2504882469 + ], + "geometry": [ + { "lat": 40.8350293, "lon": -73.9455130 }, + { "lat": 40.8350993, "lon": -73.9454458 }, + { "lat": 40.8351598, "lon": -73.9453926 } + ], + "tags": { + "highway": "residential", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 552386026, + "bounds": { + "minlat": 40.8378835, + "minlon": -73.9395844, + "maxlat": 40.8387009, + "maxlon": -73.9383539 + }, + "nodes": [ + 42437319, + 2603955395, + 2603955396, + 1762784096, + 9569897419, + 2499803006, + 13317724533 + ], + "geometry": [ + { "lat": 40.8378835, "lon": -73.9383539 }, + { "lat": 40.8379539, "lon": -73.9383757 }, + { "lat": 40.8379879, "lon": -73.9384018 }, + { "lat": 40.8380183, "lon": -73.9384428 }, + { "lat": 40.8386891, "lon": -73.9395520 }, + { "lat": 40.8386976, "lon": -73.9395730 }, + { "lat": 40.8387009, "lon": -73.9395844 } + ], + "tags": { + "alt_name": "Luís Días Way", + "description": "This honorary street name memorializes Luís Días", + "highway": "tertiary", + "historic": "memorial", + "name": "West 165th Street", + "name_1": "West 165 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "165th", + "tiger:name_base_1": "165", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 552386031, + "bounds": { + "minlat": 40.8446487, + "minlon": -73.9387288, + "maxlat": 40.8453000, + "maxlon": -73.9382620 + }, + "nodes": [ + 42429474, + 7604384269, + 7694273194, + 7694273201, + 7604384185, + 42449627 + ], + "geometry": [ + { "lat": 40.8446487, "lon": -73.9387288 }, + { "lat": 40.8447195, "lon": -73.9386780 }, + { "lat": 40.8451146, "lon": -73.9383949 }, + { "lat": 40.8451776, "lon": -73.9383497 }, + { "lat": 40.8452463, "lon": -73.9383005 }, + { "lat": 40.8453000, "lon": -73.9382620 } + ], + "tags": { + "highway": "tertiary", + "name": "Wadsworth Avenue", + "name:etymology:wikidata": "Q2339186", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 552401765, + "bounds": { + "minlat": 40.7741827, + "minlon": -73.9275687, + "maxlat": 40.7744012, + "maxlon": -73.9268545 + }, + "nodes": [ + 3778337370, + 7792295679, + 3570422558, + 6452962548, + 42861267 + ], + "geometry": [ + { "lat": 40.7744012, "lon": -73.9275687 }, + { "lat": 40.7743847, "lon": -73.9275168 }, + { "lat": 40.7742183, "lon": -73.9269713 }, + { "lat": 40.7742041, "lon": -73.9269249 }, + { "lat": 40.7741827, "lon": -73.9268545 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "26th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 552401766, + "bounds": { + "minlat": 40.7744012, + "minlon": -73.9275687, + "maxlat": 40.7760176, + "maxlon": -73.9266154 + }, + "nodes": [ + 3778337370, + 3778337372, + 276210423, + 3570422559, + 2457089504, + 42842322 + ], + "geometry": [ + { "lat": 40.7744012, "lon": -73.9275687 }, + { "lat": 40.7744670, "lon": -73.9275483 }, + { "lat": 40.7756862, "lon": -73.9269107 }, + { "lat": 40.7759370, "lon": -73.9266930 }, + { "lat": 40.7759663, "lon": -73.9266674 }, + { "lat": 40.7760176, "lon": -73.9266154 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "14th Place", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 552447291, + "bounds": { + "minlat": 40.7485913, + "minlon": -73.9741586, + "maxlat": 40.7488810, + "maxlon": -73.9739449 + }, + "nodes": [ + 5333821403, + 10171269352, + 5333821402, + 5333821401 + ], + "geometry": [ + { "lat": 40.7488810, "lon": -73.9739449 }, + { "lat": 40.7488240, "lon": -73.9739867 }, + { "lat": 40.7488019, "lon": -73.9740029 }, + { "lat": 40.7485913, "lon": -73.9741586 } + ], + "tags": { + "highway": "service", + "name": "Captain William F. Burke Jr. FDNY Street", + "service": "driveway", + "source": "survey" + } +}, +{ + "type": "way", + "id": 552609358, + "bounds": { + "minlat": 40.8151611, + "minlon": -73.9578259, + "maxlat": 40.8155460, + "maxlon": -73.9569253 + }, + "nodes": [ + 42446218, + 10055110510, + 8795723383, + 42453717 + ], + "geometry": [ + { "lat": 40.8155460, "lon": -73.9569253 }, + { "lat": 40.8155073, "lon": -73.9570158 }, + { "lat": 40.8152186, "lon": -73.9576900 }, + { "lat": 40.8151611, "lon": -73.9578259 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "Old Broadway", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 552613484, + "bounds": { + "minlat": 40.8249700, + "minlon": -73.9234019, + "maxlat": 40.8253935, + "maxlon": -73.9222740 + }, + "nodes": [ + 2408448912, + 8251591984, + 12162740291, + 8251591975, + 42767711 + ], + "geometry": [ + { "lat": 40.8253935, "lon": -73.9234019 }, + { "lat": 40.8253599, "lon": -73.9233062 }, + { "lat": 40.8253446, "lon": -73.9232661 }, + { "lat": 40.8250020, "lon": -73.9223598 }, + { "lat": 40.8249700, "lon": -73.9222740 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 158th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_left_1": "10451" + } +}, +{ + "type": "way", + "id": 553247690, + "bounds": { + "minlat": 40.8389627, + "minlon": -73.9685424, + "maxlat": 40.8391086, + "maxlon": -73.9683495 + }, + "nodes": [ + 3882399215, + 3882399202, + 3882399177, + 3882399186, + 3882399203, + 5340675133, + 3882398354, + 3882399205, + 3882399201, + 3882399200, + 3882399187, + 3882398352, + 3882399215 + ], + "geometry": [ + { "lat": 40.8390253, "lon": -73.9685424 }, + { "lat": 40.8389902, "lon": -73.9685226 }, + { "lat": 40.8389673, "lon": -73.9684823 }, + { "lat": 40.8389627, "lon": -73.9684323 }, + { "lat": 40.8389776, "lon": -73.9683859 }, + { "lat": 40.8390081, "lon": -73.9683556 }, + { "lat": 40.8390460, "lon": -73.9683495 }, + { "lat": 40.8390810, "lon": -73.9683692 }, + { "lat": 40.8391040, "lon": -73.9684095 }, + { "lat": 40.8391086, "lon": -73.9684596 }, + { "lat": 40.8390936, "lon": -73.9685060 }, + { "lat": 40.8390632, "lon": -73.9685363 }, + { "lat": 40.8390253, "lon": -73.9685424 } + ], + "tags": { + "highway": "residential", + "name": "Moorings Lane", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 553247692, + "bounds": { + "minlat": 40.8392901, + "minlon": -73.9702113, + "maxlat": 40.8394415, + "maxlon": -73.9699159 + }, + "nodes": [ + 3882399225, + 3882399224, + 3882399228, + 3882399162, + 3882414963 + ], + "geometry": [ + { "lat": 40.8392901, "lon": -73.9699159 }, + { "lat": 40.8392984, "lon": -73.9699804 }, + { "lat": 40.8393123, "lon": -73.9700593 }, + { "lat": 40.8393608, "lon": -73.9701328 }, + { "lat": 40.8394415, "lon": -73.9702113 } + ], + "tags": { + "highway": "residential", + "name": "Moorings Lane", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 553247693, + "bounds": { + "minlat": 40.8305568, + "minlon": -73.9740947, + "maxlat": 40.8317646, + "maxlon": -73.9732804 + }, + "nodes": [ + 103115628, + 103115626, + 103115624 + ], + "geometry": [ + { "lat": 40.8317646, "lon": -73.9732804 }, + { "lat": 40.8316095, "lon": -73.9733974 }, + { "lat": 40.8305568, "lon": -73.9740947 } + ], + "tags": { + "highway": "residential", + "name": "Undercliff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 553247695, + "bounds": { + "minlat": 40.8413987, + "minlon": -73.9707116, + "maxlat": 40.8429460, + "maxlon": -73.9697240 + }, + "nodes": [ + 103115563, + 103115562 + ], + "geometry": [ + { "lat": 40.8429460, "lon": -73.9697240 }, + { "lat": 40.8413987, "lon": -73.9707116 } + ], + "tags": { + "highway": "residential", + "name": "Undercliff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 553247696, + "bounds": { + "minlat": 40.8429460, + "minlon": -73.9699168, + "maxlat": 40.8430692, + "maxlon": -73.9697240 + }, + "nodes": [ + 103115563, + 752618056 + ], + "geometry": [ + { "lat": 40.8429460, "lon": -73.9697240 }, + { "lat": 40.8430692, "lon": -73.9699168 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Terrace", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 553247697, + "bounds": { + "minlat": 40.8439040, + "minlon": -73.9800510, + "maxlat": 40.8452070, + "maxlon": -73.9787290 + }, + "nodes": [ + 103219161, + 103219159, + 7111378986, + 103219157 + ], + "geometry": [ + { "lat": 40.8452070, "lon": -73.9787290 }, + { "lat": 40.8445120, "lon": -73.9794400 }, + { "lat": 40.8441676, "lon": -73.9797861 }, + { "lat": 40.8439040, "lon": -73.9800510 } + ], + "tags": { + "highway": "residential", + "name": "Inwood Terrace", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Inwood", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 553255675, + "bounds": { + "minlat": 40.8492090, + "minlon": -73.9954400, + "maxlat": 40.8515080, + "maxlon": -73.9931120 + }, + "nodes": [ + 103256373, + 103118178, + 103256375 + ], + "geometry": [ + { "lat": 40.8492090, "lon": -73.9954400 }, + { "lat": 40.8497740, "lon": -73.9948680 }, + { "lat": 40.8515080, "lon": -73.9931120 } + ], + "tags": { + "highway": "residential", + "name": "1st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 553255676, + "bounds": { + "minlat": 40.8483720, + "minlon": -73.9940000, + "maxlat": 40.8522020, + "maxlon": -73.9901390 + }, + "nodes": [ + 103286690, + 5958044059, + 5959019502, + 103277690, + 103318717, + 440215450 + ], + "geometry": [ + { "lat": 40.8483720, "lon": -73.9940000 }, + { "lat": 40.8493054, "lon": -73.9930531 }, + { "lat": 40.8500589, "lon": -73.9922891 }, + { "lat": 40.8506650, "lon": -73.9916740 }, + { "lat": 40.8521020, "lon": -73.9902420 }, + { "lat": 40.8522020, "lon": -73.9901390 } + ], + "tags": { + "highway": "residential", + "name": "3rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 553255677, + "bounds": { + "minlat": 40.8487870, + "minlon": -73.9947140, + "maxlat": 40.8510840, + "maxlon": -73.9923910 + }, + "nodes": [ + 103236650, + 103236651 + ], + "geometry": [ + { "lat": 40.8487870, "lon": -73.9947140 }, + { "lat": 40.8510840, "lon": -73.9923910 } + ], + "tags": { + "highway": "residential", + "name": "2nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 553255678, + "bounds": { + "minlat": 40.8510840, + "minlon": -73.9923910, + "maxlat": 40.8526120, + "maxlon": -73.9908680 + }, + "nodes": [ + 103236651, + 103236652, + 440215449 + ], + "geometry": [ + { "lat": 40.8510840, "lon": -73.9923910 }, + { "lat": 40.8525140, "lon": -73.9909550 }, + { "lat": 40.8526120, "lon": -73.9908680 } + ], + "tags": { + "highway": "residential", + "name": "2nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "2nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 553255679, + "bounds": { + "minlat": 40.8479510, + "minlon": -73.9932750, + "maxlat": 40.8486530, + "maxlon": -73.9925743 + }, + "nodes": [ + 103271821, + 5959019499, + 103271823 + ], + "geometry": [ + { "lat": 40.8479510, "lon": -73.9932750 }, + { "lat": 40.8485951, "lon": -73.9926320 }, + { "lat": 40.8486530, "lon": -73.9925743 } + ], + "tags": { + "highway": "residential", + "name": "Roff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 553255680, + "bounds": { + "minlat": 40.8422290, + "minlon": -73.9988837, + "maxlat": 40.8427849, + "maxlon": -73.9983532 + }, + "nodes": [ + 103215670, + 103271812 + ], + "geometry": [ + { "lat": 40.8427849, "lon": -73.9983532 }, + { "lat": 40.8422290, "lon": -73.9988837 } + ], + "tags": { + "highway": "residential", + "name": "Roff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 553255681, + "bounds": { + "minlat": 40.8375446, + "minlon": -73.9910390, + "maxlat": 40.8390440, + "maxlon": -73.9906323 + }, + "nodes": [ + 103170094, + 103170096, + 103170098, + 103170101, + 103170102, + 103148019 + ], + "geometry": [ + { "lat": 40.8390440, "lon": -73.9910390 }, + { "lat": 40.8377500, "lon": -73.9908920 }, + { "lat": 40.8376450, "lon": -73.9908570 }, + { "lat": 40.8375905, "lon": -73.9908073 }, + { "lat": 40.8375652, "lon": -73.9907385 }, + { "lat": 40.8375446, "lon": -73.9906323 } + ], + "tags": { + "highway": "residential", + "name": "Northwood Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Northwood", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 553255682, + "bounds": { + "minlat": 40.8391065, + "minlon": -73.9953300, + "maxlat": 40.8401490, + "maxlon": -73.9934960 + }, + "nodes": [ + 103276499, + 5978850773, + 103225168 + ], + "geometry": [ + { "lat": 40.8391065, "lon": -73.9934960 }, + { "lat": 40.8392489, "lon": -73.9937465 }, + { "lat": 40.8401490, "lon": -73.9953300 } + ], + "tags": { + "highway": "residential", + "name": "East Ruby Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ruby", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 553255683, + "bounds": { + "minlat": 40.8384580, + "minlon": -73.9941195, + "maxlat": 40.8391065, + "maxlon": -73.9934960 + }, + "nodes": [ + 103314334, + 103314336, + 5959905152, + 5959905100, + 103314337, + 5959905160, + 5959905161, + 103276499 + ], + "geometry": [ + { "lat": 40.8384580, "lon": -73.9941195 }, + { "lat": 40.8384850, "lon": -73.9941000 }, + { "lat": 40.8385170, "lon": -73.9940781 }, + { "lat": 40.8385463, "lon": -73.9940581 }, + { "lat": 40.8385610, "lon": -73.9940480 }, + { "lat": 40.8388523, "lon": -73.9937518 }, + { "lat": 40.8389347, "lon": -73.9936680 }, + { "lat": 40.8391065, "lon": -73.9934960 } + ], + "tags": { + "highway": "residential", + "name": "Trafalgar Road", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Trafalgar", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 553255684, + "bounds": { + "minlat": 40.8305586, + "minlon": -73.9919054, + "maxlat": 40.8322838, + "maxlon": -73.9907457 + }, + "nodes": [ + 103242159, + 103242161, + 103220219, + 103237112 + ], + "geometry": [ + { "lat": 40.8305586, "lon": -73.9919054 }, + { "lat": 40.8310870, "lon": -73.9915380 }, + { "lat": 40.8316783, "lon": -73.9911435 }, + { "lat": 40.8322838, "lon": -73.9907457 } + ], + "tags": { + "highway": "residential", + "name": "Kingsland Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kingsland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 553255685, + "bounds": { + "minlat": 40.8350795, + "minlon": -73.9888372, + "maxlat": 40.8352370, + "maxlon": -73.9887525 + }, + "nodes": [ + 103242169, + 2814636435 + ], + "geometry": [ + { "lat": 40.8350795, "lon": -73.9888372 }, + { "lat": 40.8352370, "lon": -73.9887525 } + ], + "tags": { + "highway": "residential", + "name": "Kingsland Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kingsland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 553255686, + "bounds": { + "minlat": 40.8349963, + "minlon": -73.9885346, + "maxlat": 40.8351626, + "maxlon": -73.9884645 + }, + "nodes": [ + 5340732825, + 5340732824 + ], + "geometry": [ + { "lat": 40.8349963, "lon": -73.9885346 }, + { "lat": 40.8351626, "lon": -73.9884645 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 553255687, + "bounds": { + "minlat": 40.8340726, + "minlon": -73.9858479, + "maxlat": 40.8351000, + "maxlon": -73.9855994 + }, + "nodes": [ + 103162190, + 103310131, + 103310133, + 103310135, + 103125438 + ], + "geometry": [ + { "lat": 40.8340726, "lon": -73.9858479 }, + { "lat": 40.8342270, "lon": -73.9857690 }, + { "lat": 40.8345560, "lon": -73.9856530 }, + { "lat": 40.8349092, "lon": -73.9855994 }, + { "lat": 40.8351000, "lon": -73.9856130 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Glen Road", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glen", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 553255688, + "bounds": { + "minlat": 40.8344158, + "minlon": -73.9865037, + "maxlat": 40.8349430, + "maxlon": -73.9864210 + }, + "nodes": [ + 103162192, + 103319058, + 13527755883, + 103190783 + ], + "geometry": [ + { "lat": 40.8344158, "lon": -73.9865037 }, + { "lat": 40.8347860, "lon": -73.9864490 }, + { "lat": 40.8348808, "lon": -73.9864321 }, + { "lat": 40.8349430, "lon": -73.9864210 } + ], + "tags": { + "highway": "residential", + "name": "Harvard Place", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harvard", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_left_1": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 553255689, + "bounds": { + "minlat": 40.8349430, + "minlon": -73.9864210, + "maxlat": 40.8373105, + "maxlon": -73.9853908 + }, + "nodes": [ + 8169986178, + 103319067, + 103319065, + 103319063, + 103319062, + 103125440, + 103319060, + 13527755882, + 103190783 + ], + "geometry": [ + { "lat": 40.8373105, "lon": -73.9853908 }, + { "lat": 40.8366740, "lon": -73.9856570 }, + { "lat": 40.8364360, "lon": -73.9857790 }, + { "lat": 40.8357420, "lon": -73.9861920 }, + { "lat": 40.8357010, "lon": -73.9862230 }, + { "lat": 40.8355990, "lon": -73.9862820 }, + { "lat": 40.8354920, "lon": -73.9863210 }, + { "lat": 40.8350178, "lon": -73.9864074 }, + { "lat": 40.8349430, "lon": -73.9864210 } + ], + "tags": { + "highway": "residential", + "name": "Harvard Place", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harvard", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "tiger:zip_right_1": "07024" + } +}, +{ + "type": "way", + "id": 553255691, + "bounds": { + "minlat": 40.8376929, + "minlon": -73.9834880, + "maxlat": 40.8383360, + "maxlon": -73.9823602 + }, + "nodes": [ + 103111278, + 103111279, + 103111281 + ], + "geometry": [ + { "lat": 40.8383360, "lon": -73.9834880 }, + { "lat": 40.8380320, "lon": -73.9829530 }, + { "lat": 40.8376929, "lon": -73.9823602 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Brinkerhoff Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brinkerhoff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 553255692, + "bounds": { + "minlat": 40.8391190, + "minlon": -73.9848710, + "maxlat": 40.8402467, + "maxlon": -73.9837479 + }, + "nodes": [ + 103111270, + 103174036 + ], + "geometry": [ + { "lat": 40.8391190, "lon": -73.9848710 }, + { "lat": 40.8402467, "lon": -73.9837479 } + ], + "tags": { + "highway": "residential", + "name": "Inwood Terrace", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Inwood", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 553255693, + "bounds": { + "minlat": 40.8330342, + "minlon": -73.9881519, + "maxlat": 40.8349300, + "maxlon": -73.9872630 + }, + "nodes": [ + 103187728, + 103219163, + 103219165, + 103219166, + 6964929492, + 103219168, + 7529710499, + 103219172, + 103219174, + 103219176, + 103219178, + 7530193442, + 103219180, + 103190789 + ], + "geometry": [ + { "lat": 40.8330342, "lon": -73.9881519 }, + { "lat": 40.8330470, "lon": -73.9881400 }, + { "lat": 40.8331130, "lon": -73.9880710 }, + { "lat": 40.8331870, "lon": -73.9880190 }, + { "lat": 40.8333924, "lon": -73.9879193 }, + { "lat": 40.8338300, "lon": -73.9877640 }, + { "lat": 40.8339471, "lon": -73.9877100 }, + { "lat": 40.8339980, "lon": -73.9876800 }, + { "lat": 40.8341390, "lon": -73.9875920 }, + { "lat": 40.8345630, "lon": -73.9873070 }, + { "lat": 40.8346400, "lon": -73.9872820 }, + { "lat": 40.8346774, "lon": -73.9872797 }, + { "lat": 40.8348060, "lon": -73.9872720 }, + { "lat": 40.8349300, "lon": -73.9872630 } + ], + "tags": { + "highway": "residential", + "name": "Inwood Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Inwood", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 553255694, + "bounds": { + "minlat": 40.8420410, + "minlon": -73.9830630, + "maxlat": 40.8443240, + "maxlon": -73.9807650 + }, + "nodes": [ + 103160940, + 7464374541, + 7464384468, + 7464384415, + 7464384427, + 7464374540, + 7464384612, + 7455286784, + 7225115592, + 7464941592, + 7455134461, + 103271065 + ], + "geometry": [ + { "lat": 40.8420410, "lon": -73.9830630 }, + { "lat": 40.8424297, "lon": -73.9826717 }, + { "lat": 40.8426295, "lon": -73.9824707 }, + { "lat": 40.8428869, "lon": -73.9822116 }, + { "lat": 40.8431570, "lon": -73.9819397 }, + { "lat": 40.8435913, "lon": -73.9815025 }, + { "lat": 40.8436509, "lon": -73.9814426 }, + { "lat": 40.8437225, "lon": -73.9813705 }, + { "lat": 40.8437774, "lon": -73.9813152 }, + { "lat": 40.8438090, "lon": -73.9812834 }, + { "lat": 40.8441716, "lon": -73.9809184 }, + { "lat": 40.8443240, "lon": -73.9807650 } + ], + "tags": { + "highway": "residential", + "name": "16th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "16th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 553255695, + "bounds": { + "minlat": 40.8399470, + "minlon": -73.9870323, + "maxlat": 40.8403668, + "maxlon": -73.9863320 + }, + "nodes": [ + 7527301264, + 103111257, + 103111259 + ], + "geometry": [ + { "lat": 40.8403668, "lon": -73.9870323 }, + { "lat": 40.8403040, "lon": -73.9869309 }, + { "lat": 40.8399470, "lon": -73.9863320 } + ], + "tags": { + "highway": "residential", + "name": "Brinkerhoff Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brinkerhoff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 553255696, + "bounds": { + "minlat": 40.8399470, + "minlon": -73.9863320, + "maxlat": 40.8424540, + "maxlon": -73.9837790 + }, + "nodes": [ + 103160942, + 7463859153, + 7463859151, + 103174038, + 103111259 + ], + "geometry": [ + { "lat": 40.8424540, "lon": -73.9837790 }, + { "lat": 40.8424093, "lon": -73.9838240 }, + { "lat": 40.8421597, "lon": -73.9840755 }, + { "lat": 40.8410829, "lon": -73.9851811 }, + { "lat": 40.8399470, "lon": -73.9863320 } + ], + "tags": { + "highway": "residential", + "name": "15th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "15th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 553266430, + "bounds": { + "minlat": 40.8269552, + "minlon": -73.9813078, + "maxlat": 40.8271172, + "maxlon": -73.9801795 + }, + "nodes": [ + 1854444492, + 5340819440, + 5340819441, + 5340819442, + 7581229338, + 5340819443, + 5340819444, + 103226487 + ], + "geometry": [ + { "lat": 40.8271172, "lon": -73.9813078 }, + { "lat": 40.8270496, "lon": -73.9812174 }, + { "lat": 40.8269927, "lon": -73.9810377 }, + { "lat": 40.8269552, "lon": -73.9808527 }, + { "lat": 40.8269565, "lon": -73.9807631 }, + { "lat": 40.8269583, "lon": -73.9806407 }, + { "lat": 40.8269714, "lon": -73.9804691 }, + { "lat": 40.8269915, "lon": -73.9801795 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Norman Drive", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 553266432, + "bounds": { + "minlat": 40.8283630, + "minlon": -73.9805989, + "maxlat": 40.8284703, + "maxlon": -73.9805047 + }, + "nodes": [ + 5340819448, + 103226492 + ], + "geometry": [ + { "lat": 40.8283630, "lon": -73.9805047 }, + { "lat": 40.8284703, "lon": -73.9805989 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Wayne Avenue", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wayne", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 553266433, + "bounds": { + "minlat": 40.8290805, + "minlon": -73.9827496, + "maxlat": 40.8304978, + "maxlon": -73.9802619 + }, + "nodes": [ + 103235739, + 7538220850, + 7538220951, + 7533932716, + 103282022 + ], + "geometry": [ + { "lat": 40.8290805, "lon": -73.9802619 }, + { "lat": 40.8292400, "lon": -73.9805418 }, + { "lat": 40.8292976, "lon": -73.9806430 }, + { "lat": 40.8294575, "lon": -73.9809236 }, + { "lat": 40.8304978, "lon": -73.9827496 } + ], + "tags": { + "highway": "residential", + "name": "Marion Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Marion", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 553266435, + "bounds": { + "minlat": 40.8283630, + "minlon": -73.9805047, + "maxlat": 40.8289584, + "maxlon": -73.9801741 + }, + "nodes": [ + 5340819448, + 5340819449 + ], + "geometry": [ + { "lat": 40.8283630, "lon": -73.9805047 }, + { "lat": 40.8289584, "lon": -73.9801741 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "2", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 553266439, + "bounds": { + "minlat": 40.8303780, + "minlon": -73.9795033, + "maxlat": 40.8305654, + "maxlon": -73.9794126 + }, + "nodes": [ + 103235747, + 4205772569 + ], + "geometry": [ + { "lat": 40.8303780, "lon": -73.9795033 }, + { "lat": 40.8305654, "lon": -73.9794126 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "6", + "lanes:backward": "2", + "lanes:forward": "4", + "name": "Palisade Avenue", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 553266440, + "bounds": { + "minlat": 40.8291734, + "minlon": -73.9844810, + "maxlat": 40.8298652, + "maxlon": -73.9833010 + }, + "nodes": [ + 103168720, + 7538748015, + 103168721 + ], + "geometry": [ + { "lat": 40.8291734, "lon": -73.9833010 }, + { "lat": 40.8294019, "lon": -73.9837105 }, + { "lat": 40.8298652, "lon": -73.9844810 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Franklin Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Franklin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 553274865, + "bounds": { + "minlat": 40.8279998, + "minlon": -73.9777743, + "maxlat": 40.8284241, + "maxlon": -73.9770023 + }, + "nodes": [ + 5340890581, + 103292315, + 103294221 + ], + "geometry": [ + { "lat": 40.8284241, "lon": -73.9777743 }, + { "lat": 40.8281864, "lon": -73.9773297 }, + { "lat": 40.8279998, "lon": -73.9770023 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lit": "yes", + "name": "Tower Drive", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Tower", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 553274868, + "bounds": { + "minlat": 40.8244933, + "minlon": -73.9747603, + "maxlat": 40.8248217, + "maxlon": -73.9745583 + }, + "nodes": [ + 1556174012, + 5362484711, + 5362484701, + 5362485926, + 5340890591, + 5340890590, + 5340890589 + ], + "geometry": [ + { "lat": 40.8244933, "lon": -73.9745583 }, + { "lat": 40.8245575, "lon": -73.9746608 }, + { "lat": 40.8246129, "lon": -73.9747136 }, + { "lat": 40.8246336, "lon": -73.9747242 }, + { "lat": 40.8246761, "lon": -73.9747461 }, + { "lat": 40.8247439, "lon": -73.9747533 }, + { "lat": 40.8248217, "lon": -73.9747603 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 553276871, + "bounds": { + "minlat": 40.8228114, + "minlon": -73.9841945, + "maxlat": 40.8244274, + "maxlon": -73.9813507 + }, + "nodes": [ + 103112555, + 103195295 + ], + "geometry": [ + { "lat": 40.8244274, "lon": -73.9841945 }, + { "lat": 40.8228114, "lon": -73.9813507 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Crescent Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crescent", + "tiger:name_base_1": "Crescent", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 553276872, + "bounds": { + "minlat": 40.8239966, + "minlon": -73.9777143, + "maxlat": 40.8270440, + "maxlon": -73.9758220 + }, + "nodes": [ + 103115595, + 7478472956, + 103115593, + 103115592, + 5362546541, + 8375108225, + 103115591, + 103115589 + ], + "geometry": [ + { "lat": 40.8270440, "lon": -73.9758220 }, + { "lat": 40.8269425, "lon": -73.9758851 }, + { "lat": 40.8264150, "lon": -73.9762130 }, + { "lat": 40.8259310, "lon": -73.9765130 }, + { "lat": 40.8250422, "lon": -73.9770575 }, + { "lat": 40.8246801, "lon": -73.9772793 }, + { "lat": 40.8242170, "lon": -73.9775630 }, + { "lat": 40.8239966, "lon": -73.9777143 } + ], + "tags": { + "highway": "residential", + "name": "Undercliff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 553276873, + "bounds": { + "minlat": 40.8270440, + "minlon": -73.9758220, + "maxlat": 40.8305568, + "maxlon": -73.9740947 + }, + "nodes": [ + 103115595, + 5362479153, + 103115598, + 103115599, + 103115600, + 103115603, + 103115605, + 103115607, + 103115610, + 103115612, + 103115614, + 103115616, + 103115618, + 103115620, + 103115622, + 103115624 + ], + "geometry": [ + { "lat": 40.8270440, "lon": -73.9758220 }, + { "lat": 40.8274299, "lon": -73.9755804 }, + { "lat": 40.8280812, "lon": -73.9751672 }, + { "lat": 40.8282910, "lon": -73.9750370 }, + { "lat": 40.8284140, "lon": -73.9749750 }, + { "lat": 40.8285400, "lon": -73.9749310 }, + { "lat": 40.8286910, "lon": -73.9749020 }, + { "lat": 40.8287810, "lon": -73.9749000 }, + { "lat": 40.8288700, "lon": -73.9748990 }, + { "lat": 40.8290000, "lon": -73.9748890 }, + { "lat": 40.8291280, "lon": -73.9748610 }, + { "lat": 40.8292540, "lon": -73.9748160 }, + { "lat": 40.8297032, "lon": -73.9745745 }, + { "lat": 40.8302620, "lon": -73.9742940 }, + { "lat": 40.8303860, "lon": -73.9742200 }, + { "lat": 40.8305568, "lon": -73.9740947 } + ], + "tags": { + "highway": "residential", + "name": "Undercliff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 553280291, + "bounds": { + "minlat": 40.8202886, + "minlon": -73.9834496, + "maxlat": 40.8210540, + "maxlon": -73.9827132 + }, + "nodes": [ + 103198454, + 4048717211, + 103150182 + ], + "geometry": [ + { "lat": 40.8202886, "lon": -73.9834496 }, + { "lat": 40.8203714, "lon": -73.9833693 }, + { "lat": 40.8210540, "lon": -73.9827132 } + ], + "tags": { + "highway": "residential", + "name": "Winterburn Grove", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Winterburn Grove", + "tiger:reviewed": "no", + "tiger:zip_left": "07010" + } +}, +{ + "type": "way", + "id": 553280294, + "bounds": { + "minlat": 40.8282434, + "minlon": -73.9985188, + "maxlat": 40.8291076, + "maxlon": -73.9968532 + }, + "nodes": [ + 103135101, + 13515942863, + 13515942862, + 103185074 + ], + "geometry": [ + { "lat": 40.8282434, "lon": -73.9968532 }, + { "lat": 40.8285937, "lon": -73.9974889 }, + { "lat": 40.8291065, "lon": -73.9984104 }, + { "lat": 40.8291076, "lon": -73.9985188 } + ], + "tags": { + "highway": "residential", + "name": "Art Lane", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Art", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 553280296, + "bounds": { + "minlat": 40.8291734, + "minlon": -73.9833010, + "maxlat": 40.8304978, + "maxlon": -73.9827496 + }, + "nodes": [ + 103168720, + 103245198, + 103282022 + ], + "geometry": [ + { "lat": 40.8291734, "lon": -73.9833010 }, + { "lat": 40.8298272, "lon": -73.9830291 }, + { "lat": 40.8304978, "lon": -73.9827496 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Railroad Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 553283060, + "bounds": { + "minlat": 40.8178405, + "minlon": -73.9897372, + "maxlat": 40.8202875, + "maxlon": -73.9886294 + }, + "nodes": [ + 103112587, + 7604260411, + 7604260410, + 103233843, + 103235682, + 7604304715, + 7604240932, + 7604297609, + 103201209 + ], + "geometry": [ + { "lat": 40.8178405, "lon": -73.9897372 }, + { "lat": 40.8180387, "lon": -73.9896445 }, + { "lat": 40.8183241, "lon": -73.9895111 }, + { "lat": 40.8184890, "lon": -73.9894340 }, + { "lat": 40.8190370, "lon": -73.9891850 }, + { "lat": 40.8197287, "lon": -73.9888777 }, + { "lat": 40.8198055, "lon": -73.9888436 }, + { "lat": 40.8198894, "lon": -73.9888063 }, + { "lat": 40.8202875, "lon": -73.9886294 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "highway": "secondary", + "name": "Palisade Avenue", + "ref": "CR 27", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 553283062, + "bounds": { + "minlat": 40.8139020, + "minlon": -74.0007374, + "maxlat": 40.8156174, + "maxlon": -73.9975740 + }, + "nodes": [ + 103103009, + 13523886149, + 103255701, + 13523886151, + 5341017959, + 5341017956, + 103105154, + 5341017955, + 13523861170, + 103245921 + ], + "geometry": [ + { "lat": 40.8156174, "lon": -74.0007374 }, + { "lat": 40.8150276, "lon": -73.9996165 }, + { "lat": 40.8149900, "lon": -73.9995450 }, + { "lat": 40.8149756, "lon": -73.9995186 }, + { "lat": 40.8146766, "lon": -73.9989777 }, + { "lat": 40.8144377, "lon": -73.9985453 }, + { "lat": 40.8143160, "lon": -73.9983250 }, + { "lat": 40.8141817, "lon": -73.9980815 }, + { "lat": 40.8139663, "lon": -73.9976903 }, + { "lat": 40.8139020, "lon": -73.9975740 } + ], + "tags": { + "highway": "tertiary", + "name": "Kennedy Drive", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kennedy", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553283063, + "bounds": { + "minlat": 40.8152846, + "minlon": -73.9989241, + "maxlat": 40.8168673, + "maxlon": -73.9959542 + }, + "nodes": [ + 103204318, + 13524700337, + 103204319, + 103189631, + 103204320, + 8153831133, + 103204321 + ], + "geometry": [ + { "lat": 40.8152846, "lon": -73.9959542 }, + { "lat": 40.8153340, "lon": -73.9960471 }, + { "lat": 40.8156879, "lon": -73.9967130 }, + { "lat": 40.8160786, "lon": -73.9974566 }, + { "lat": 40.8164732, "lon": -73.9981926 }, + { "lat": 40.8165938, "lon": -73.9984148 }, + { "lat": 40.8168673, "lon": -73.9989241 } + ], + "tags": { + "highway": "residential", + "name": "Kamena Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kamena", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553283064, + "bounds": { + "minlat": 40.8159014, + "minlon": -73.9939517, + "maxlat": 40.8175463, + "maxlon": -73.9907206 + }, + "nodes": [ + 103207125, + 7610899816, + 7610899817, + 7610899334, + 7610899822, + 7616856297, + 7616856502, + 103207126, + 103207127, + 440208167, + 7610899823, + 13524700374, + 752263685 + ], + "geometry": [ + { "lat": 40.8159014, "lon": -73.9907206 }, + { "lat": 40.8160393, "lon": -73.9910077 }, + { "lat": 40.8161315, "lon": -73.9911998 }, + { "lat": 40.8161946, "lon": -73.9913312 }, + { "lat": 40.8162399, "lon": -73.9914255 }, + { "lat": 40.8162603, "lon": -73.9914679 }, + { "lat": 40.8163654, "lon": -73.9916870 }, + { "lat": 40.8164016, "lon": -73.9917624 }, + { "lat": 40.8167316, "lon": -73.9924454 }, + { "lat": 40.8171174, "lon": -73.9931892 }, + { "lat": 40.8173754, "lon": -73.9936478 }, + { "lat": 40.8175150, "lon": -73.9938961 }, + { "lat": 40.8175463, "lon": -73.9939517 } + ], + "tags": { + "highway": "residential", + "name": "Cliff Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cliff", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553283065, + "bounds": { + "minlat": 40.8153035, + "minlon": -73.9907206, + "maxlat": 40.8159014, + "maxlon": -73.9895201 + }, + "nodes": [ + 103207125, + 6894870362, + 7588192462, + 103207045 + ], + "geometry": [ + { "lat": 40.8159014, "lon": -73.9907206 }, + { "lat": 40.8156592, "lon": -73.9902336 }, + { "lat": 40.8154105, "lon": -73.9897266 }, + { "lat": 40.8153035, "lon": -73.9895201 } + ], + "tags": { + "highway": "residential", + "name": "Cliff Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cliff", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553283066, + "bounds": { + "minlat": 40.8204987, + "minlon": -73.9994800, + "maxlat": 40.8212690, + "maxlon": -73.9979153 + }, + "nodes": [ + 103147940, + 7150378848, + 103166209 + ], + "geometry": [ + { "lat": 40.8212690, "lon": -73.9994800 }, + { "lat": 40.8211295, "lon": -73.9991967 }, + { "lat": 40.8204987, "lon": -73.9979153 } + ], + "tags": { + "highway": "residential", + "name": "Jersey Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jersey", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553283067, + "bounds": { + "minlat": 40.8181525, + "minlon": -73.9979153, + "maxlat": 40.8204987, + "maxlon": -73.9935262 + }, + "nodes": [ + 440208164, + 13524700349, + 103194932, + 103166209 + ], + "geometry": [ + { "lat": 40.8181525, "lon": -73.9935262 }, + { "lat": 40.8181973, "lon": -73.9936108 }, + { "lat": 40.8196835, "lon": -73.9964178 }, + { "lat": 40.8204987, "lon": -73.9979153 } + ], + "tags": { + "highway": "residential", + "name": "Jersey Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jersey", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553283068, + "bounds": { + "minlat": 40.8176741, + "minlon": -73.9930440, + "maxlat": 40.8187458, + "maxlon": -73.9910202 + }, + "nodes": [ + 103133900, + 7610853794, + 7608036212, + 13524700371, + 440208163 + ], + "geometry": [ + { "lat": 40.8176741, "lon": -73.9910202 }, + { "lat": 40.8185372, "lon": -73.9926502 }, + { "lat": 40.8185546, "lon": -73.9926831 }, + { "lat": 40.8187060, "lon": -73.9929690 }, + { "lat": 40.8187458, "lon": -73.9930440 } + ], + "tags": { + "highway": "residential", + "name": "Morningside Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morningside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 553283069, + "bounds": { + "minlat": 40.8210510, + "minlon": -73.9990795, + "maxlat": 40.8219190, + "maxlon": -73.9973980 + }, + "nodes": [ + 103147942, + 5757800612, + 103166211 + ], + "geometry": [ + { "lat": 40.8219190, "lon": -73.9990795 }, + { "lat": 40.8217619, "lon": -73.9987566 }, + { "lat": 40.8210510, "lon": -73.9973980 } + ], + "tags": { + "highway": "residential", + "name": "Morningside Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morningside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 553284193, + "bounds": { + "minlat": 40.7478440, + "minlon": -73.9772358, + "maxlat": 40.7484514, + "maxlon": -73.9767924 + }, + "nodes": [ + 5340982006, + 10171137646, + 10171137640, + 5340982007 + ], + "geometry": [ + { "lat": 40.7484514, "lon": -73.9767924 }, + { "lat": 40.7484009, "lon": -73.9768304 }, + { "lat": 40.7478999, "lon": -73.9771957 }, + { "lat": 40.7478440, "lon": -73.9772358 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 553285026, + "bounds": { + "minlat": 40.8142452, + "minlon": -73.9963878, + "maxlat": 40.8149052, + "maxlon": -73.9951677 + }, + "nodes": [ + 103192868, + 13523912718, + 103192865 + ], + "geometry": [ + { "lat": 40.8149052, "lon": -73.9963878 }, + { "lat": 40.8148642, "lon": -73.9963114 }, + { "lat": 40.8142452, "lon": -73.9951677 } + ], + "tags": { + "highway": "residential", + "name": "Delano Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Delano", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553287945, + "bounds": { + "minlat": 40.8158865, + "minlon": -74.0017306, + "maxlat": 40.8162277, + "maxlon": -74.0009512 + }, + "nodes": [ + 5341017964, + 5341017962, + 13525551008, + 12535377673, + 103166194 + ], + "geometry": [ + { "lat": 40.8158865, "lon": -74.0009512 }, + { "lat": 40.8159153, "lon": -74.0010417 }, + { "lat": 40.8159269, "lon": -74.0010637 }, + { "lat": 40.8162138, "lon": -74.0016073 }, + { "lat": 40.8162277, "lon": -74.0017306 } + ], + "tags": { + "highway": "tertiary", + "name": "Kennedy Drive", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 553287946, + "bounds": { + "minlat": 40.8155877, + "minlon": -74.0010691, + "maxlat": 40.8159017, + "maxlon": -74.0006555 + }, + "nodes": [ + 103302524, + 13525551011, + 5341017977, + 5341017976, + 5341017975, + 5341017974, + 5341017973, + 13525551020, + 5341017972, + 103103009, + 5341017971, + 5341017970, + 5341017969, + 13525551023, + 5341017968, + 5341017967, + 5341017966, + 5341017965, + 13525551006, + 5341017964, + 5341017963, + 103302524 + ], + "geometry": [ + { "lat": 40.8158034, "lon": -74.0010540 }, + { "lat": 40.8157622, "lon": -74.0010649 }, + { "lat": 40.8157465, "lon": -74.0010691 }, + { "lat": 40.8156894, "lon": -74.0010560 }, + { "lat": 40.8156398, "lon": -74.0010165 }, + { "lat": 40.8156043, "lon": -74.0009560 }, + { "lat": 40.8155877, "lon": -74.0008827 }, + { "lat": 40.8155905, "lon": -74.0008361 }, + { "lat": 40.8155923, "lon": -74.0008063 }, + { "lat": 40.8156174, "lon": -74.0007374 }, + { "lat": 40.8156597, "lon": -74.0006850 }, + { "lat": 40.8157135, "lon": -74.0006565 }, + { "lat": 40.8157714, "lon": -74.0006555 }, + { "lat": 40.8157887, "lon": -74.0006640 }, + { "lat": 40.8158257, "lon": -74.0006822 }, + { "lat": 40.8158691, "lon": -74.0007330 }, + { "lat": 40.8158956, "lon": -74.0008011 }, + { "lat": 40.8159017, "lon": -74.0008773 }, + { "lat": 40.8158944, "lon": -74.0009122 }, + { "lat": 40.8158865, "lon": -74.0009512 }, + { "lat": 40.8158522, "lon": -74.0010129 }, + { "lat": 40.8158034, "lon": -74.0010540 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout" + } +}, +{ + "type": "way", + "id": 553287947, + "bounds": { + "minlat": 40.8159017, + "minlon": -74.0008773, + "maxlat": 40.8195062, + "maxlon": -73.9976808 + }, + "nodes": [ + 5341017965, + 103102996, + 103204323, + 103302631, + 103207138 + ], + "geometry": [ + { "lat": 40.8159017, "lon": -74.0008773 }, + { "lat": 40.8160760, "lon": -74.0007400 }, + { "lat": 40.8172642, "lon": -73.9996741 }, + { "lat": 40.8185266, "lon": -73.9985407 }, + { "lat": 40.8195062, "lon": -73.9976808 } + ], + "tags": { + "highway": "residential", + "name": "8th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "8th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553287948, + "bounds": { + "minlat": 40.8149900, + "minlon": -73.9995450, + "maxlat": 40.8150718, + "maxlon": -73.9994785 + }, + "nodes": [ + 5341017978, + 103255701 + ], + "geometry": [ + { "lat": 40.8150718, "lon": -73.9994785 }, + { "lat": 40.8149900, "lon": -73.9995450 } + ], + "tags": { + "highway": "residential", + "name": "6th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "6th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553287949, + "bounds": { + "minlat": 40.8139779, + "minlon": -74.0006565, + "maxlat": 40.8157135, + "maxlon": -73.9974809 + }, + "nodes": [ + 5341017980, + 13523861171, + 5341017954, + 5341017979, + 5341017957, + 5341017958, + 13523886152, + 5341017978, + 13523886150, + 5341017970 + ], + "geometry": [ + { "lat": 40.8139779, "lon": -73.9974809 }, + { "lat": 40.8140380, "lon": -73.9975930 }, + { "lat": 40.8142606, "lon": -73.9980168 }, + { "lat": 40.8142893, "lon": -73.9980711 }, + { "lat": 40.8145176, "lon": -73.9984816 }, + { "lat": 40.8147545, "lon": -73.9989077 }, + { "lat": 40.8150508, "lon": -73.9994406 }, + { "lat": 40.8150718, "lon": -73.9994785 }, + { "lat": 40.8151079, "lon": -73.9995448 }, + { "lat": 40.8157135, "lon": -74.0006565 } + ], + "tags": { + "highway": "tertiary", + "name": "Kennedy Drive", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kennedy", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553287954, + "bounds": { + "minlat": 40.8267664, + "minlon": -73.9985650, + "maxlat": 40.8268170, + "maxlon": -73.9983052 + }, + "nodes": [ + 5341017983, + 5341017982, + 5341017981, + 103209160 + ], + "geometry": [ + { "lat": 40.8267768, "lon": -73.9983052 }, + { "lat": 40.8267664, "lon": -73.9983822 }, + { "lat": 40.8267705, "lon": -73.9984493 }, + { "lat": 40.8268170, "lon": -73.9985650 } + ], + "tags": { + "highway": "residential", + "name": "Studio Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Studio", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 553289652, + "bounds": { + "minlat": 40.8260585, + "minlon": -73.9874859, + "maxlat": 40.8265049, + "maxlon": -73.9872740 + }, + "nodes": [ + 103207079, + 6964278296, + 5341032752, + 5341032750, + 5341032756, + 103245947 + ], + "geometry": [ + { "lat": 40.8265049, "lon": -73.9872740 }, + { "lat": 40.8264401, "lon": -73.9873259 }, + { "lat": 40.8263326, "lon": -73.9873832 }, + { "lat": 40.8262768, "lon": -73.9874051 }, + { "lat": 40.8261860, "lon": -73.9874321 }, + { "lat": 40.8260585, "lon": -73.9874859 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "1", + "name": "Anderson Avenue", + "oneway": "yes", + "ref": "CR 29", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 553289653, + "bounds": { + "minlat": 40.8243906, + "minlon": -73.9885836, + "maxlat": 40.8255775, + "maxlon": -73.9877096 + }, + "nodes": [ + 103150101, + 103150198, + 7570838117, + 103212132, + 4695282834, + 103245943 + ], + "geometry": [ + { "lat": 40.8243906, "lon": -73.9885836 }, + { "lat": 40.8246176, "lon": -73.9884063 }, + { "lat": 40.8249475, "lon": -73.9881550 }, + { "lat": 40.8249735, "lon": -73.9881352 }, + { "lat": 40.8253207, "lon": -73.9878749 }, + { "lat": 40.8255775, "lon": -73.9877096 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "2", + "name": "Anderson Avenue", + "ref": "CR 29", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 553289654, + "bounds": { + "minlat": 40.8255775, + "minlon": -73.9877096, + "maxlat": 40.8259007, + "maxlon": -73.9874483 + }, + "nodes": [ + 103245943, + 5341032748, + 5341032755 + ], + "geometry": [ + { "lat": 40.8255775, "lon": -73.9877096 }, + { "lat": 40.8256623, "lon": -73.9876098 }, + { "lat": 40.8259007, "lon": -73.9874483 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "1", + "name": "Anderson Avenue", + "oneway": "yes", + "ref": "CR 29", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 553289658, + "bounds": { + "minlat": 40.8259007, + "minlon": -73.9874859, + "maxlat": 40.8260585, + "maxlon": -73.9874483 + }, + "nodes": [ + 103245947, + 5341032755 + ], + "geometry": [ + { "lat": 40.8260585, "lon": -73.9874859 }, + { "lat": 40.8259007, "lon": -73.9874483 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "1", + "name": "Gorge Road", + "oneway": "yes", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 553291694, + "bounds": { + "minlat": 40.7192752, + "minlon": -73.9645136, + "maxlat": 40.7196291, + "maxlon": -73.9640054 + }, + "nodes": [ + 5341048806, + 11670618803, + 5341048807, + 6226509049, + 6226509047, + 6226509048, + 5341048808, + 8997196209, + 11119319721, + 5341048809 + ], + "geometry": [ + { "lat": 40.7193990, "lon": -73.9640054 }, + { "lat": 40.7194441, "lon": -73.9640775 }, + { "lat": 40.7196231, "lon": -73.9643632 }, + { "lat": 40.7196291, "lon": -73.9644099 }, + { "lat": 40.7196165, "lon": -73.9644543 }, + { "lat": 40.7195694, "lon": -73.9645057 }, + { "lat": 40.7195340, "lon": -73.9645136 }, + { "lat": 40.7195004, "lon": -73.9644970 }, + { "lat": 40.7193228, "lon": -73.9642136 }, + { "lat": 40.7192752, "lon": -73.9641376 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 553463749, + "bounds": { + "minlat": 40.8081117, + "minlon": -73.9933438, + "maxlat": 40.8083366, + "maxlon": -73.9931915 + }, + "nodes": [ + 103255389, + 103132693 + ], + "geometry": [ + { "lat": 40.8081117, "lon": -73.9933438 }, + { "lat": 40.8083366, "lon": -73.9931915 } + ], + "tags": { + "highway": "residential", + "name": "Pine Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pine", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 553463750, + "bounds": { + "minlat": 40.8093026, + "minlon": -73.9925577, + "maxlat": 40.8096655, + "maxlon": -73.9923169 + }, + "nodes": [ + 103159352, + 103255392 + ], + "geometry": [ + { "lat": 40.8093026, "lon": -73.9925577 }, + { "lat": 40.8096655, "lon": -73.9923169 } + ], + "tags": { + "highway": "residential", + "name": "Pine Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pine", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 553463751, + "bounds": { + "minlat": 40.8085780, + "minlon": -73.9978160, + "maxlat": 40.8092470, + "maxlon": -73.9974320 + }, + "nodes": [ + 103111334, + 103124455 + ], + "geometry": [ + { "lat": 40.8085780, "lon": -73.9978160 }, + { "lat": 40.8092470, "lon": -73.9974320 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Plaza", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Plz", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 553463752, + "bounds": { + "minlat": 40.8091350, + "minlon": -73.9971370, + "maxlat": 40.8097660, + "maxlon": -73.9967400 + }, + "nodes": [ + 103133727, + 103112770 + ], + "geometry": [ + { "lat": 40.8091350, "lon": -73.9971370 }, + { "lat": 40.8097660, "lon": -73.9967400 } + ], + "tags": { + "highway": "residential", + "name": "Oakwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 553463753, + "bounds": { + "minlat": 40.8089009, + "minlon": -73.9997390, + "maxlat": 40.8097727, + "maxlon": -73.9983690 + }, + "nodes": [ + 103111342, + 11415241621, + 11415241618, + 11415241615, + 11415241612, + 11415241609, + 103111346, + 103111351 + ], + "geometry": [ + { "lat": 40.8089009, "lon": -73.9983690 }, + { "lat": 40.8090261, "lon": -73.9985615 }, + { "lat": 40.8090865, "lon": -73.9986544 }, + { "lat": 40.8091267, "lon": -73.9987163 }, + { "lat": 40.8091592, "lon": -73.9987663 }, + { "lat": 40.8092062, "lon": -73.9988385 }, + { "lat": 40.8093378, "lon": -73.9990410 }, + { "lat": 40.8097727, "lon": -73.9997390 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553463754, + "bounds": { + "minlat": 40.8126330, + "minlon": -73.9957030, + "maxlat": 40.8135740, + "maxlon": -73.9947250 + }, + "nodes": [ + 103175800, + 103175801 + ], + "geometry": [ + { "lat": 40.8126330, "lon": -73.9957030 }, + { "lat": 40.8135740, "lon": -73.9947250 } + ], + "tags": { + "highway": "residential", + "name": "Fulton Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fulton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553463755, + "bounds": { + "minlat": 40.8133500, + "minlon": -73.9969910, + "maxlat": 40.8142920, + "maxlon": -73.9960630 + }, + "nodes": [ + 103196806, + 103105163, + 103196810 + ], + "geometry": [ + { "lat": 40.8133500, "lon": -73.9969910 }, + { "lat": 40.8141470, "lon": -73.9962060 }, + { "lat": 40.8142920, "lon": -73.9960630 } + ], + "tags": { + "highway": "residential", + "name": "Hamilton Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hamilton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 553470811, + "bounds": { + "minlat": 40.8112124, + "minlon": -73.9924327, + "maxlat": 40.8116561, + "maxlon": -73.9916671 + }, + "nodes": [ + 103133185, + 8219493617, + 103133186, + 7627519056, + 103133187 + ], + "geometry": [ + { "lat": 40.8112124, "lon": -73.9916671 }, + { "lat": 40.8112580, "lon": -73.9917447 }, + { "lat": 40.8113740, "lon": -73.9919420 }, + { "lat": 40.8115383, "lon": -73.9922278 }, + { "lat": 40.8116561, "lon": -73.9924327 } + ], + "tags": { + "highway": "residential", + "name": "Bender Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bender", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 553470812, + "bounds": { + "minlat": 40.8120398, + "minlon": -73.9870728, + "maxlat": 40.8122067, + "maxlon": -73.9866577 + }, + "nodes": [ + 5342516879, + 3566318128 + ], + "geometry": [ + { "lat": 40.8122067, "lon": -73.9870728 }, + { "lat": 40.8120398, "lon": -73.9866577 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 553470813, + "bounds": { + "minlat": 40.8086795, + "minlon": -73.9886569, + "maxlat": 40.8090660, + "maxlon": -73.9883930 + }, + "nodes": [ + 3480364172, + 3480364173, + 11059543176, + 5342516880, + 3642839376 + ], + "geometry": [ + { "lat": 40.8086795, "lon": -73.9886569 }, + { "lat": 40.8088299, "lon": -73.9885617 }, + { "lat": 40.8088949, "lon": -73.9885171 }, + { "lat": 40.8090137, "lon": -73.9884356 }, + { "lat": 40.8090660, "lon": -73.9883930 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 553470814, + "bounds": { + "minlat": 40.8065520, + "minlon": -73.9913801, + "maxlat": 40.8066068, + "maxlon": -73.9911655 + }, + "nodes": [ + 4215808362, + 103137025 + ], + "geometry": [ + { "lat": 40.8066068, "lon": -73.9913801 }, + { "lat": 40.8065520, "lon": -73.9911655 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 553470815, + "bounds": { + "minlat": 40.8072939, + "minlon": -73.9922767, + "maxlat": 40.8076635, + "maxlon": -73.9920986 + }, + "nodes": [ + 3480338645, + 477383967, + 103207001, + 103181693, + 9570280572 + ], + "geometry": [ + { "lat": 40.8076635, "lon": -73.9920986 }, + { "lat": 40.8076303, "lon": -73.9921366 }, + { "lat": 40.8075591, "lon": -73.9922183 }, + { "lat": 40.8073776, "lon": -73.9922767 }, + { "lat": 40.8072939, "lon": -73.9922715 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "2", + "name": "Gorge Road", + "oneway": "yes", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 553470816, + "bounds": { + "minlat": 40.8067358, + "minlon": -73.9921246, + "maxlat": 40.8076635, + "maxlon": -73.9915829 + }, + "nodes": [ + 5342516881, + 5342516890, + 5342516889, + 5342516888, + 5342516887, + 5342516886, + 5342516885, + 5342516884, + 752618821, + 5342516883, + 5342516882, + 3480338645 + ], + "geometry": [ + { "lat": 40.8067358, "lon": -73.9915829 }, + { "lat": 40.8067526, "lon": -73.9916392 }, + { "lat": 40.8068115, "lon": -73.9917739 }, + { "lat": 40.8068911, "lon": -73.9918920 }, + { "lat": 40.8069845, "lon": -73.9919872 }, + { "lat": 40.8071216, "lon": -73.9920791 }, + { "lat": 40.8072023, "lon": -73.9921146 }, + { "lat": 40.8073013, "lon": -73.9921226 }, + { "lat": 40.8073745, "lon": -73.9921242 }, + { "lat": 40.8073936, "lon": -73.9921246 }, + { "lat": 40.8075352, "lon": -73.9920878 }, + { "lat": 40.8076635, "lon": -73.9920986 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "2", + "name": "Gorge Road", + "oneway": "yes", + "ref": "(S-25)", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 553470818, + "bounds": { + "minlat": 40.8064513, + "minlon": -73.9907133, + "maxlat": 40.8064888, + "maxlon": -73.9905404 + }, + "nodes": [ + 10015270513, + 5342516901 + ], + "geometry": [ + { "lat": 40.8064513, "lon": -73.9905404 }, + { "lat": 40.8064888, "lon": -73.9907133 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "name": "City Place", + "oneway": "yes", + "turn:lanes": "left|through|right" + } +}, +{ + "type": "way", + "id": 553470819, + "bounds": { + "minlat": 40.8047840, + "minlon": -73.9933563, + "maxlat": 40.8058254, + "maxlon": -73.9931633 + }, + "nodes": [ + 5342516910, + 5481963173, + 7618565493, + 477411408, + 103136353 + ], + "geometry": [ + { "lat": 40.8047840, "lon": -73.9933563 }, + { "lat": 40.8049128, "lon": -73.9933321 }, + { "lat": 40.8056171, "lon": -73.9931906 }, + { "lat": 40.8057059, "lon": -73.9931789 }, + { "lat": 40.8058254, "lon": -73.9931633 } + ], + "tags": { + "highway": "residential", + "name": "River Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 553470820, + "bounds": { + "minlat": 40.8044725, + "minlon": -73.9933563, + "maxlat": 40.8047840, + "maxlon": -73.9930491 + }, + "nodes": [ + 5342516910, + 5342516909, + 5342516902, + 5342516908, + 13886816684, + 5342516907, + 3575303898 + ], + "geometry": [ + { "lat": 40.8047840, "lon": -73.9933563 }, + { "lat": 40.8046929, "lon": -73.9933370 }, + { "lat": 40.8046503, "lon": -73.9933155 }, + { "lat": 40.8046066, "lon": -73.9932565 }, + { "lat": 40.8045561, "lon": -73.9931778 }, + { "lat": 40.8045447, "lon": -73.9931600 }, + { "lat": 40.8044725, "lon": -73.9930491 } + ], + "tags": { + "highway": "residential", + "name": "River Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 553516357, + "bounds": { + "minlat": 40.7845377, + "minlon": -74.0145371, + "maxlat": 40.7847230, + "maxlon": -74.0141570 + }, + "nodes": [ + 103879228, + 7617909961, + 103855594 + ], + "geometry": [ + { "lat": 40.7845377, "lon": -74.0141570 }, + { "lat": 40.7846808, "lon": -74.0144505 }, + { "lat": 40.7847230, "lon": -74.0145371 } + ], + "tags": { + "highway": "residential", + "name": "56th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "56th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 553516358, + "bounds": { + "minlat": 40.7815650, + "minlon": -74.0125086, + "maxlat": 40.7821764, + "maxlon": -74.0111950 + }, + "nodes": [ + 103865124, + 7468537400, + 103865126, + 7468537420, + 103865127 + ], + "geometry": [ + { "lat": 40.7815650, "lon": -74.0111950 }, + { "lat": 40.7816147, "lon": -74.0113021 }, + { "lat": 40.7818640, "lon": -74.0118400 }, + { "lat": 40.7821199, "lon": -74.0123877 }, + { "lat": 40.7821764, "lon": -74.0125086 } + ], + "tags": { + "highway": "residential", + "name": "54th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "54th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 553516359, + "bounds": { + "minlat": 40.7816761, + "minlon": -74.0200054, + "maxlat": 40.7840382, + "maxlon": -74.0148984 + }, + "nodes": [ + 103855292, + 7613768183, + 6885754310, + 7613768187, + 103855294, + 7613768195, + 7613768202, + 103855295, + 7613768205, + 7613768207, + 103855296 + ], + "geometry": [ + { "lat": 40.7816761, "lon": -74.0148984 }, + { "lat": 40.7817309, "lon": -74.0150281 }, + { "lat": 40.7818303, "lon": -74.0152429 }, + { "lat": 40.7823343, "lon": -74.0163358 }, + { "lat": 40.7823667, "lon": -74.0164060 }, + { "lat": 40.7824131, "lon": -74.0165044 }, + { "lat": 40.7830572, "lon": -74.0178698 }, + { "lat": 40.7830949, "lon": -74.0179497 }, + { "lat": 40.7831344, "lon": -74.0180363 }, + { "lat": 40.7839833, "lon": -74.0198957 }, + { "lat": 40.7840382, "lon": -74.0200054 } + ], + "tags": { + "highway": "residential", + "name": "52nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "52nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 553520680, + "bounds": { + "minlat": 40.7941579, + "minlon": -74.0168905, + "maxlat": 40.7952393, + "maxlon": -74.0145115 + }, + "nodes": [ + 103884176, + 7668140064, + 7674820816, + 103861900, + 5746137759, + 7474498698, + 103872883 + ], + "geometry": [ + { "lat": 40.7941579, "lon": -74.0145115 }, + { "lat": 40.7941619, "lon": -74.0145676 }, + { "lat": 40.7945155, "lon": -74.0153416 }, + { "lat": 40.7945469, "lon": -74.0154076 }, + { "lat": 40.7945764, "lon": -74.0154713 }, + { "lat": 40.7951853, "lon": -74.0167718 }, + { "lat": 40.7952393, "lon": -74.0168905 } + ], + "tags": { + "highway": "residential", + "name": "66th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "66th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 553520683, + "bounds": { + "minlat": 40.7962877, + "minlon": -74.0150514, + "maxlat": 40.7976374, + "maxlon": -74.0139705 + }, + "nodes": [ + 103867991, + 7474498761, + 7474498759, + 440244416 + ], + "geometry": [ + { "lat": 40.7976374, "lon": -74.0139705 }, + { "lat": 40.7975926, "lon": -74.0140063 }, + { "lat": 40.7963498, "lon": -74.0150007 }, + { "lat": 40.7962877, "lon": -74.0150514 } + ], + "tags": { + "highway": "residential", + "name": "Adams Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Adams", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_left_1": "07093", + "tiger:zip_right": "07093", + "tiger:zip_right_1": "07093" + } +}, +{ + "type": "way", + "id": 553520686, + "bounds": { + "minlat": 40.7957161, + "minlon": -74.0155104, + "maxlat": 40.7962877, + "maxlon": -74.0150514 + }, + "nodes": [ + 440244415, + 7474498725, + 440244416 + ], + "geometry": [ + { "lat": 40.7957161, "lon": -74.0155104 }, + { "lat": 40.7962402, "lon": -74.0150895 }, + { "lat": 40.7962877, "lon": -74.0150514 } + ], + "tags": { + "highway": "residential", + "name": "Adams Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Adams", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_left_1": "07093", + "tiger:zip_right": "07093", + "tiger:zip_right_1": "07093" + } +}, +{ + "type": "way", + "id": 553520690, + "bounds": { + "minlat": 40.7983514, + "minlon": -74.0172715, + "maxlat": 40.7996517, + "maxlon": -74.0162115 + }, + "nodes": [ + 103873539, + 103868000 + ], + "geometry": [ + { "lat": 40.7996517, "lon": -74.0162115 }, + { "lat": 40.7983514, "lon": -74.0172715 } + ], + "tags": { + "highway": "residential", + "name": "Durham Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Durham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553520693, + "bounds": { + "minlat": 40.7968475, + "minlon": -74.0185473, + "maxlat": 40.7983514, + "maxlon": -74.0172715 + }, + "nodes": [ + 103868000, + 103876799 + ], + "geometry": [ + { "lat": 40.7983514, "lon": -74.0172715 }, + { "lat": 40.7968475, "lon": -74.0185473 } + ], + "tags": { + "highway": "residential", + "name": "Durham Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Durham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553520696, + "bounds": { + "minlat": 40.7980124, + "minlon": -74.0165409, + "maxlat": 40.7989422, + "maxlon": -74.0157780 + }, + "nodes": [ + 103862775, + 7474498786, + 7999314018, + 103862777 + ], + "geometry": [ + { "lat": 40.7980124, "lon": -74.0165409 }, + { "lat": 40.7980626, "lon": -74.0164997 }, + { "lat": 40.7983427, "lon": -74.0162724 }, + { "lat": 40.7989422, "lon": -74.0157780 } + ], + "tags": { + "highway": "residential", + "name": "Smith Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Smith", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553520698, + "bounds": { + "minlat": 40.7964850, + "minlon": -74.0177810, + "maxlat": 40.7980124, + "maxlon": -74.0165409 + }, + "nodes": [ + 103862773, + 103862775 + ], + "geometry": [ + { "lat": 40.7964850, "lon": -74.0177810 }, + { "lat": 40.7980124, "lon": -74.0165409 } + ], + "tags": { + "highway": "residential", + "name": "Smith Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Smith", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553520699, + "bounds": { + "minlat": 40.7953036, + "minlon": -74.0196156, + "maxlat": 40.7968475, + "maxlon": -74.0185473 + }, + "nodes": [ + 12849086587, + 103876799 + ], + "geometry": [ + { "lat": 40.7953036, "lon": -74.0196156 }, + { "lat": 40.7968475, "lon": -74.0185473 } + ], + "tags": { + "highway": "residential", + "name": "Durham Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Durham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553522427, + "bounds": { + "minlat": 40.7859630, + "minlon": -74.0085042, + "maxlat": 40.7863527, + "maxlon": -74.0077038 + }, + "nodes": [ + 103864383, + 7468537703, + 7468537531, + 103864381 + ], + "geometry": [ + { "lat": 40.7863527, "lon": -74.0085042 }, + { "lat": 40.7863135, "lon": -74.0084238 }, + { "lat": 40.7860046, "lon": -74.0077892 }, + { "lat": 40.7859630, "lon": -74.0077038 } + ], + "tags": { + "highway": "residential", + "name": "Westover Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Westover", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 553522428, + "bounds": { + "minlat": 40.7859630, + "minlon": -74.0077038, + "maxlat": 40.7873839, + "maxlon": -74.0063463 + }, + "nodes": [ + 103864940, + 7468537520, + 7468537521, + 103864381 + ], + "geometry": [ + { "lat": 40.7873839, "lon": -74.0063463 }, + { "lat": 40.7873403, "lon": -74.0063880 }, + { "lat": 40.7859975, "lon": -74.0076709 }, + { "lat": 40.7859630, "lon": -74.0077038 } + ], + "tags": { + "highway": "residential", + "name": "Monitor Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Monitor", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 553716974, + "bounds": { + "minlat": 40.7992110, + "minlon": -74.0201430, + "maxlat": 40.7995360, + "maxlon": -74.0199202 + }, + "nodes": [ + 103855247, + 103861490 + ], + "geometry": [ + { "lat": 40.7992110, "lon": -74.0201430 }, + { "lat": 40.7995360, "lon": -74.0199202 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553716977, + "bounds": { + "minlat": 40.8008161, + "minlon": -74.0184608, + "maxlat": 40.8011540, + "maxlon": -74.0177480 + }, + "nodes": [ + 103873544, + 103873545 + ], + "geometry": [ + { "lat": 40.8008161, "lon": -74.0177480 }, + { "lat": 40.8011540, "lon": -74.0184608 } + ], + "tags": { + "highway": "residential", + "name": "72nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "72nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553716978, + "bounds": { + "minlat": 40.8110545, + "minlon": -74.0081668, + "maxlat": 40.8126800, + "maxlon": -74.0066560 + }, + "nodes": [ + 103876816, + 12456223742, + 103865028, + 12456262155, + 103876818 + ], + "geometry": [ + { "lat": 40.8110545, "lon": -74.0081668 }, + { "lat": 40.8118960, "lon": -74.0073831 }, + { "lat": 40.8119495, "lon": -74.0073335 }, + { "lat": 40.8120028, "lon": -74.0072841 }, + { "lat": 40.8126800, "lon": -74.0066560 } + ], + "tags": { + "highway": "residential", + "name": "Durham Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Durham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553716979, + "bounds": { + "minlat": 40.8106060, + "minlon": -74.0104380, + "maxlat": 40.8117553, + "maxlon": -74.0094815 + }, + "nodes": [ + 103872664, + 103872647, + 103875626, + 103875628, + 103875630 + ], + "geometry": [ + { "lat": 40.8106060, "lon": -74.0104380 }, + { "lat": 40.8107484, "lon": -74.0103165 }, + { "lat": 40.8111540, "lon": -74.0099910 }, + { "lat": 40.8113083, "lon": -74.0098635 }, + { "lat": 40.8117553, "lon": -74.0094815 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047" + } +}, +{ + "type": "way", + "id": 553716980, + "bounds": { + "minlat": 40.8101540, + "minlon": -74.0118530, + "maxlat": 40.8111033, + "maxlon": -74.0110466 + }, + "nodes": [ + 103881841, + 103872649 + ], + "geometry": [ + { "lat": 40.8101540, "lon": -74.0118530 }, + { "lat": 40.8111033, "lon": -74.0110466 } + ], + "tags": { + "highway": "residential", + "name": "Columbia Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553716981, + "bounds": { + "minlat": 40.8105188, + "minlon": -74.0125639, + "maxlat": 40.8110520, + "maxlon": -74.0121890 + }, + "nodes": [ + 103867273, + 103867274 + ], + "geometry": [ + { "lat": 40.8105188, "lon": -74.0125639 }, + { "lat": 40.8110520, "lon": -74.0121890 } + ], + "tags": { + "highway": "residential", + "name": "Liberty Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Liberty", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553719405, + "bounds": { + "minlat": 40.8051169, + "minlon": -74.0182090, + "maxlat": 40.8061514, + "maxlon": -74.0172231 + }, + "nodes": [ + 103867738, + 5344617788, + 5344617789, + 5752813110 + ], + "geometry": [ + { "lat": 40.8061514, "lon": -74.0172231 }, + { "lat": 40.8060989, "lon": -74.0173602 }, + { "lat": 40.8058126, "lon": -74.0176150 }, + { "lat": 40.8051169, "lon": -74.0182090 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553719407, + "bounds": { + "minlat": 40.8028059, + "minlon": -74.0090481, + "maxlat": 40.8028852, + "maxlon": -74.0089871 + }, + "nodes": [ + 5344617805, + 103868237 + ], + "geometry": [ + { "lat": 40.8028852, "lon": -74.0089871 }, + { "lat": 40.8028059, "lon": -74.0090481 } + ], + "tags": { + "highway": "residential", + "name": "3rd Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553719408, + "bounds": { + "minlat": 40.8017753, + "minlon": -74.0113454, + "maxlat": 40.8039745, + "maxlon": -74.0066100 + }, + "nodes": [ + 103866670, + 5474412233, + 5344617807, + 5344617801, + 5344617806, + 7474656152, + 5344617805, + 7474656112, + 7474656109, + 5344617804, + 7474656082, + 7474656085, + 5344617803, + 7474656067, + 7474656031, + 5344617802 + ], + "geometry": [ + { "lat": 40.8017753, "lon": -74.0066100 }, + { "lat": 40.8018613, "lon": -74.0067050 }, + { "lat": 40.8018657, "lon": -74.0067159 }, + { "lat": 40.8021765, "lon": -74.0074455 }, + { "lat": 40.8025235, "lon": -74.0082005 }, + { "lat": 40.8028548, "lon": -74.0089210 }, + { "lat": 40.8028852, "lon": -74.0089871 }, + { "lat": 40.8029151, "lon": -74.0090547 }, + { "lat": 40.8031892, "lon": -74.0096749 }, + { "lat": 40.8032190, "lon": -74.0097423 }, + { "lat": 40.8032513, "lon": -74.0098146 }, + { "lat": 40.8035390, "lon": -74.0104552 }, + { "lat": 40.8035710, "lon": -74.0105264 }, + { "lat": 40.8036023, "lon": -74.0105898 }, + { "lat": 40.8039235, "lon": -74.0112421 }, + { "lat": 40.8039745, "lon": -74.0113454 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081244", + "highway": "tertiary", + "name": "79th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "79th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 553723458, + "bounds": { + "minlat": 40.8021945, + "minlon": -74.0190500, + "maxlat": 40.8027414, + "maxlon": -74.0175951 + }, + "nodes": [ + 103859563, + 103859561 + ], + "geometry": [ + { "lat": 40.8021945, "lon": -74.0175951 }, + { "lat": 40.8027414, "lon": -74.0190500 } + ], + "tags": { + "highway": "residential", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 554083352, + "bounds": { + "minlat": 40.7449988, + "minlon": -73.9773346, + "maxlat": 40.7454012, + "maxlon": -73.9763778 + }, + "nodes": [ + 42445382, + 9971314375 + ], + "geometry": [ + { "lat": 40.7454012, "lon": -73.9773346 }, + { "lat": 40.7449988, "lon": -73.9763778 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 554083353, + "bounds": { + "minlat": 40.7457391, + "minlon": -73.9781270, + "maxlat": 40.7464561, + "maxlon": -73.9776071 + }, + "nodes": [ + 42445378, + 3932847280, + 12187343186, + 10168207098, + 42434959, + 10168207096 + ], + "geometry": [ + { "lat": 40.7457391, "lon": -73.9781270 }, + { "lat": 40.7458298, "lon": -73.9780624 }, + { "lat": 40.7463002, "lon": -73.9777208 }, + { "lat": 40.7463377, "lon": -73.9776935 }, + { "lat": 40.7464036, "lon": -73.9776454 }, + { "lat": 40.7464561, "lon": -73.9776071 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 554854125, + "bounds": { + "minlat": 40.8351010, + "minlon": -73.9479001, + "maxlat": 40.8358927, + "maxlon": -73.9473364 + }, + "nodes": [ + 5354421378, + 9935939174, + 5438376518, + 5354421379 + ], + "geometry": [ + { "lat": 40.8358927, "lon": -73.9473364 }, + { "lat": 40.8358520, "lon": -73.9473660 }, + { "lat": 40.8355643, "lon": -73.9475754 }, + { "lat": 40.8351010, "lon": -73.9479001 } + ], + "tags": { + "access": "permissive", + "highway": "service" + } +}, +{ + "type": "way", + "id": 554854127, + "bounds": { + "minlat": 40.8358631, + "minlon": -73.9481911, + "maxlat": 40.8361530, + "maxlon": -73.9476310 + }, + "nodes": [ + 5438376516, + 5354421384, + 5354421381, + 5354421382, + 5354421385, + 5438376517, + 9935939175, + 5354421383 + ], + "geometry": [ + { "lat": 40.8361530, "lon": -73.9481211 }, + { "lat": 40.8360376, "lon": -73.9481644 }, + { "lat": 40.8359666, "lon": -73.9481911 }, + { "lat": 40.8358631, "lon": -73.9477218 }, + { "lat": 40.8359286, "lon": -73.9476832 }, + { "lat": 40.8359502, "lon": -73.9476705 }, + { "lat": 40.8359743, "lon": -73.9476564 }, + { "lat": 40.8360196, "lon": -73.9476310 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 554854129, + "bounds": { + "minlat": 40.8359286, + "minlon": -73.9481644, + "maxlat": 40.8360376, + "maxlon": -73.9476832 + }, + "nodes": [ + 5354421385, + 5354421384 + ], + "geometry": [ + { "lat": 40.8359286, "lon": -73.9476832 }, + { "lat": 40.8360376, "lon": -73.9481644 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 554927268, + "bounds": { + "minlat": 40.7680917, + "minlon": -73.9961019, + "maxlat": 40.7681457, + "maxlon": -73.9959717 + }, + "nodes": [ + 247072112, + 12153915853 + ], + "geometry": [ + { "lat": 40.7681457, "lon": -73.9961019 }, + { "lat": 40.7680917, "lon": -73.9959717 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 554966358, + "bounds": { + "minlat": 40.7267777, + "minlon": -73.9963523, + "maxlat": 40.7269762, + "maxlon": -73.9962015 + }, + "nodes": [ + 5355267632, + 6213204055, + 8309478993, + 5355267636, + 5355267633, + 5355267634, + 5355267635 + ], + "geometry": [ + { "lat": 40.7267777, "lon": -73.9963523 }, + { "lat": 40.7267937, "lon": -73.9963402 }, + { "lat": 40.7268320, "lon": -73.9963111 }, + { "lat": 40.7268525, "lon": -73.9962956 }, + { "lat": 40.7268665, "lon": -73.9962850 }, + { "lat": 40.7269528, "lon": -73.9962185 }, + { "lat": 40.7269762, "lon": -73.9962015 } + ], + "tags": { + "access": "private", + "foot": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 555112573, + "bounds": { + "minlat": 40.8240556, + "minlon": -73.9204696, + "maxlat": 40.8244361, + "maxlon": -73.9192925 + }, + "nodes": [ + 5356400996, + 12038479020, + 12985361638, + 12985358854, + 5356401016, + 5356400997 + ], + "geometry": [ + { "lat": 40.8240556, "lon": -73.9192925 }, + { "lat": 40.8240916, "lon": -73.9194040 }, + { "lat": 40.8241067, "lon": -73.9194506 }, + { "lat": 40.8241114, "lon": -73.9194652 }, + { "lat": 40.8244182, "lon": -73.9204143 }, + { "lat": 40.8244361, "lon": -73.9204696 } + ], + "tags": { + "access": "no", + "highway": "service", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555112581, + "bounds": { + "minlat": 40.8242429, + "minlon": -73.9213103, + "maxlat": 40.8244732, + "maxlon": -73.9205737 + }, + "nodes": [ + 5356401002, + 5356401003 + ], + "geometry": [ + { "lat": 40.8244732, "lon": -73.9213103 }, + { "lat": 40.8242429, "lon": -73.9205737 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555112584, + "bounds": { + "minlat": 40.8240825, + "minlon": -73.9213961, + "maxlat": 40.8243116, + "maxlon": -73.9206600 + }, + "nodes": [ + 5356401004, + 5356401005 + ], + "geometry": [ + { "lat": 40.8243116, "lon": -73.9213961 }, + { "lat": 40.8240825, "lon": -73.9206600 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555112587, + "bounds": { + "minlat": 40.8239346, + "minlon": -73.9214714, + "maxlat": 40.8241696, + "maxlon": -73.9207397 + }, + "nodes": [ + 5356401006, + 5356401007 + ], + "geometry": [ + { "lat": 40.8241696, "lon": -73.9214714 }, + { "lat": 40.8239346, "lon": -73.9207397 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555112590, + "bounds": { + "minlat": 40.8237831, + "minlon": -73.9215531, + "maxlat": 40.8240158, + "maxlon": -73.9208213 + }, + "nodes": [ + 5356401008, + 5356401009 + ], + "geometry": [ + { "lat": 40.8240158, "lon": -73.9215531 }, + { "lat": 40.8237831, "lon": -73.9208213 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555112593, + "bounds": { + "minlat": 40.8236330, + "minlon": -73.9216311, + "maxlat": 40.8238688, + "maxlon": -73.9209021 + }, + "nodes": [ + 5356401010, + 5356401011 + ], + "geometry": [ + { "lat": 40.8238688, "lon": -73.9216311 }, + { "lat": 40.8236330, "lon": -73.9209021 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555112595, + "bounds": { + "minlat": 40.8234899, + "minlon": -73.9217109, + "maxlat": 40.8237186, + "maxlon": -73.9209792 + }, + "nodes": [ + 5356401012, + 5356401013 + ], + "geometry": [ + { "lat": 40.8237186, "lon": -73.9217109 }, + { "lat": 40.8234899, "lon": -73.9209792 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555112599, + "bounds": { + "minlat": 40.8233330, + "minlon": -73.9217926, + "maxlat": 40.8235645, + "maxlon": -73.9210636 + }, + "nodes": [ + 5356401014, + 5356401015 + ], + "geometry": [ + { "lat": 40.8235645, "lon": -73.9217926 }, + { "lat": 40.8233330, "lon": -73.9210636 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555123895, + "bounds": { + "minlat": 40.7363180, + "minlon": -73.9771747, + "maxlat": 40.7367411, + "maxlon": -73.9770779 + }, + "nodes": [ + 5356470555, + 5684427050, + 5356470556, + 7191952212, + 7191952213 + ], + "geometry": [ + { "lat": 40.7363180, "lon": -73.9771747 }, + { "lat": 40.7364170, "lon": -73.9771053 }, + { "lat": 40.7364565, "lon": -73.9770779 }, + { "lat": 40.7367200, "lon": -73.9771174 }, + { "lat": 40.7367411, "lon": -73.9771563 } + ], + "tags": { + "highway": "service", + "maxheight": "5", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555176984, + "bounds": { + "minlat": 40.7367411, + "minlon": -73.9772271, + "maxlat": 40.7367811, + "maxlon": -73.9771563 + }, + "nodes": [ + 7191952213, + 5356791600 + ], + "geometry": [ + { "lat": 40.7367411, "lon": -73.9771563 }, + { "lat": 40.7367811, "lon": -73.9772271 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "maxheight": "5", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 555176985, + "bounds": { + "minlat": 40.7366087, + "minlon": -73.9778669, + "maxlat": 40.7368171, + "maxlon": -73.9772271 + }, + "nodes": [ + 5356791600, + 7191952210, + 5356470559, + 6024770189, + 5356470560 + ], + "geometry": [ + { "lat": 40.7367811, "lon": -73.9772271 }, + { "lat": 40.7368171, "lon": -73.9772952 }, + { "lat": 40.7367654, "lon": -73.9777377 }, + { "lat": 40.7367053, "lon": -73.9777860 }, + { "lat": 40.7366087, "lon": -73.9778669 } + ], + "tags": { + "highway": "service", + "maxheight": "5", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555219211, + "bounds": { + "minlat": 40.7327903, + "minlon": -73.9905639, + "maxlat": 40.7329392, + "maxlon": -73.9904648 + }, + "nodes": [ + 5357086126, + 8309479645, + 5357086127 + ], + "geometry": [ + { "lat": 40.7329392, "lon": -73.9904648 }, + { "lat": 40.7328846, "lon": -73.9905011 }, + { "lat": 40.7327903, "lon": -73.9905639 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 555245270, + "bounds": { + "minlat": 40.7333291, + "minlon": -74.0070250, + "maxlat": 40.7333340, + "maxlon": -74.0069753 + }, + "nodes": [ + 42431706, + 5357289427 + ], + "geometry": [ + { "lat": 40.7333340, "lon": -74.0070250 }, + { "lat": 40.7333291, "lon": -74.0069753 } + ], + "tags": { + "highway": "service", + "name": "Greenwich Mews", + "name:etymology:wikidata": "Q205380", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 555270648, + "bounds": { + "minlat": 40.7011938, + "minlon": -74.0147744, + "maxlat": 40.7013732, + "maxlon": -74.0141390 + }, + "nodes": [ + 1805328753, + 11016298708, + 11013387835, + 5357542232, + 5357542233, + 4206998239 + ], + "geometry": [ + { "lat": 40.7011938, "lon": -74.0141390 }, + { "lat": 40.7012085, "lon": -74.0142367 }, + { "lat": 40.7012373, "lon": -74.0143746 }, + { "lat": 40.7012874, "lon": -74.0145533 }, + { "lat": 40.7013526, "lon": -74.0147208 }, + { "lat": 40.7013732, "lon": -74.0147744 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "South Street", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555303393, + "bounds": { + "minlat": 40.7655086, + "minlon": -73.9843412, + "maxlat": 40.7656194, + "maxlon": -73.9842586 + }, + "nodes": [ + 5357799203, + 9140929828, + 10084997675, + 5357799204 + ], + "geometry": [ + { "lat": 40.7656194, "lon": -73.9842586 }, + { "lat": 40.7655772, "lon": -73.9842900 }, + { "lat": 40.7655557, "lon": -73.9843061 }, + { "lat": 40.7655086, "lon": -73.9843412 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 555768757, + "bounds": { + "minlat": 40.7054366, + "minlon": -73.9504060, + "maxlat": 40.7066530, + "maxlon": -73.9502183 + }, + "nodes": [ + 42477588, + 9755373381, + 42496426, + 9755373441, + 42514959 + ], + "geometry": [ + { "lat": 40.7054366, "lon": -73.9502183 }, + { "lat": 40.7055542, "lon": -73.9502326 }, + { "lat": 40.7059145, "lon": -73.9502895 }, + { "lat": 40.7065557, "lon": -73.9503906 }, + { "lat": 40.7066530, "lon": -73.9504060 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555768763, + "bounds": { + "minlat": 40.7144199, + "minlon": -73.9352880, + "maxlat": 40.7144570, + "maxlon": -73.9341456 + }, + "nodes": [ + 42484219, + 5838943015, + 13717910542, + 7961803893 + ], + "geometry": [ + { "lat": 40.7144570, "lon": -73.9352880 }, + { "lat": 40.7144471, "lon": -73.9352133 }, + { "lat": 40.7144352, "lon": -73.9347469 }, + { "lat": 40.7144199, "lon": -73.9341456 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 555768766, + "bounds": { + "minlat": 40.7144570, + "minlon": -73.9363312, + "maxlat": 40.7167864, + "maxlon": -73.9352880 + }, + "nodes": [ + 42484219, + 5838942986, + 8960594756, + 42490348, + 8960594753, + 42490356, + 7171434905, + 11110075273, + 5838943027, + 42489486 + ], + "geometry": [ + { "lat": 40.7144570, "lon": -73.9352880 }, + { "lat": 40.7145371, "lon": -73.9353268 }, + { "lat": 40.7149976, "lon": -73.9355270 }, + { "lat": 40.7152003, "lon": -73.9356282 }, + { "lat": 40.7154464, "lon": -73.9357424 }, + { "lat": 40.7157123, "lon": -73.9358600 }, + { "lat": 40.7164668, "lon": -73.9361957 }, + { "lat": 40.7165771, "lon": -73.9362307 }, + { "lat": 40.7167028, "lon": -73.9362875 }, + { "lat": 40.7167864, "lon": -73.9363312 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "2", + "name": "Morgan Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555768769, + "bounds": { + "minlat": 40.7133883, + "minlon": -73.9352880, + "maxlat": 40.7144570, + "maxlon": -73.9348086 + }, + "nodes": [ + 42490339, + 5838943026, + 9947391773, + 42490343, + 9947391777, + 5838942993, + 42484219 + ], + "geometry": [ + { "lat": 40.7133883, "lon": -73.9348086 }, + { "lat": 40.7134680, "lon": -73.9348434 }, + { "lat": 40.7136973, "lon": -73.9349440 }, + { "lat": 40.7137342, "lon": -73.9349601 }, + { "lat": 40.7138205, "lon": -73.9349989 }, + { "lat": 40.7143955, "lon": -73.9352565 }, + { "lat": 40.7144570, "lon": -73.9352880 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "name": "Morgan Avenue", + "oneway": "no", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 555768772, + "bounds": { + "minlat": 40.7056560, + "minlon": -73.9318940, + "maxlat": 40.7063540, + "maxlon": -73.9317000 + }, + "nodes": [ + 42490308, + 9743987256, + 9959630914, + 42490311 + ], + "geometry": [ + { "lat": 40.7056560, "lon": -73.9317000 }, + { "lat": 40.7057265, "lon": -73.9317196 }, + { "lat": 40.7063027, "lon": -73.9318797 }, + { "lat": 40.7063540, "lon": -73.9318940 } + ], + "tags": { + "cycleway:left": "shared_lane", + "hgv": "local", + "highway": "residential", + "lane_markings": "no", + "name": "Morgan Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Morgan", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 555768774, + "bounds": { + "minlat": 40.7056560, + "minlon": -73.9317000, + "maxlat": 40.7064450, + "maxlon": -73.9268240 + }, + "nodes": [ + 42490308, + 9743987258, + 9747567470, + 9744012687, + 42490914, + 9744012688, + 9355837599, + 9744012680, + 42490916, + 9744131137, + 5715670797, + 9744131136, + 42490921 + ], + "geometry": [ + { "lat": 40.7056560, "lon": -73.9317000 }, + { "lat": 40.7056692, "lon": -73.9316183 }, + { "lat": 40.7058512, "lon": -73.9304887 }, + { "lat": 40.7058608, "lon": -73.9304286 }, + { "lat": 40.7058800, "lon": -73.9303100 }, + { "lat": 40.7058979, "lon": -73.9301927 }, + { "lat": 40.7061593, "lon": -73.9285839 }, + { "lat": 40.7061658, "lon": -73.9285435 }, + { "lat": 40.7061810, "lon": -73.9284500 }, + { "lat": 40.7061946, "lon": -73.9283667 }, + { "lat": 40.7064211, "lon": -73.9269712 }, + { "lat": 40.7064282, "lon": -73.9269261 }, + { "lat": 40.7064450, "lon": -73.9268240 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Grattan Street", + "name:etymology:wikidata": "Q333041", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 555768775, + "bounds": { + "minlat": 40.7085444, + "minlon": -73.9294780, + "maxlat": 40.7132370, + "maxlon": -73.9274130 + }, + "nodes": [ + 42496391, + 9767625198, + 9959635955, + 5436391835, + 10003499547, + 12847161669, + 597676386, + 42505693, + 42505695, + 42505696, + 7412849581, + 9870296980, + 42502458, + 42496931 + ], + "geometry": [ + { "lat": 40.7085444, "lon": -73.9274130 }, + { "lat": 40.7086242, "lon": -73.9274424 }, + { "lat": 40.7090382, "lon": -73.9276204 }, + { "lat": 40.7091230, "lon": -73.9276568 }, + { "lat": 40.7097073, "lon": -73.9279080 }, + { "lat": 40.7097578, "lon": -73.9279310 }, + { "lat": 40.7098474, "lon": -73.9279718 }, + { "lat": 40.7105330, "lon": -73.9282680 }, + { "lat": 40.7112076, "lon": -73.9285713 }, + { "lat": 40.7118870, "lon": -73.9288768 }, + { "lat": 40.7119278, "lon": -73.9288950 }, + { "lat": 40.7125121, "lon": -73.9291552 }, + { "lat": 40.7125759, "lon": -73.9291836 }, + { "lat": 40.7132370, "lon": -73.9294780 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555840937, + "bounds": { + "minlat": 40.8529629, + "minlon": -73.9727882, + "maxlat": 40.8532003, + "maxlon": -73.9723664 + }, + "nodes": [ + 5362322547, + 5362322578, + 5362323126, + 5362322586 + ], + "geometry": [ + { "lat": 40.8532003, "lon": -73.9723664 }, + { "lat": 40.8529629, "lon": -73.9725852 }, + { "lat": 40.8529862, "lon": -73.9726938 }, + { "lat": 40.8530436, "lon": -73.9727882 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555840939, + "bounds": { + "minlat": 40.8526672, + "minlon": -73.9731923, + "maxlat": 40.8529539, + "maxlon": -73.9728800 + }, + "nodes": [ + 5362323121, + 5362322544, + 5362322593 + ], + "geometry": [ + { "lat": 40.8526672, "lon": -73.9731923 }, + { "lat": 40.8527884, "lon": -73.9730478 }, + { "lat": 40.8529539, "lon": -73.9728800 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 555840943, + "bounds": { + "minlat": 40.8534283, + "minlon": -73.9721414, + "maxlat": 40.8535274, + "maxlon": -73.9720384 + }, + "nodes": [ + 5362322588, + 5762718037, + 5362322570 + ], + "geometry": [ + { "lat": 40.8535274, "lon": -73.9720384 }, + { "lat": 40.8534601, "lon": -73.9721059 }, + { "lat": 40.8534283, "lon": -73.9721414 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 555840944, + "bounds": { + "minlat": 40.8529539, + "minlon": -73.9732061, + "maxlat": 40.8531556, + "maxlon": -73.9728800 + }, + "nodes": [ + 5362322585, + 5362322593 + ], + "geometry": [ + { "lat": 40.8531556, "lon": -73.9732061 }, + { "lat": 40.8529539, "lon": -73.9728800 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555840946, + "bounds": { + "minlat": 40.8529539, + "minlon": -73.9728800, + "maxlat": 40.8531659, + "maxlon": -73.9726632 + }, + "nodes": [ + 5362322593, + 5362322586, + 5362322612, + 5762718036 + ], + "geometry": [ + { "lat": 40.8529539, "lon": -73.9728800 }, + { "lat": 40.8530436, "lon": -73.9727882 }, + { "lat": 40.8530935, "lon": -73.9727372 }, + { "lat": 40.8531659, "lon": -73.9726632 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555840948, + "bounds": { + "minlat": 40.8529047, + "minlon": -73.9724037, + "maxlat": 40.8529898, + "maxlon": -73.9722475 + }, + "nodes": [ + 5362322577, + 5362322611 + ], + "geometry": [ + { "lat": 40.8529898, "lon": -73.9724037 }, + { "lat": 40.8529047, "lon": -73.9722475 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555840949, + "bounds": { + "minlat": 40.8530935, + "minlon": -73.9730532, + "maxlat": 40.8532824, + "maxlon": -73.9727372 + }, + "nodes": [ + 5362322565, + 5362322612 + ], + "geometry": [ + { "lat": 40.8532824, "lon": -73.9730532 }, + { "lat": 40.8530935, "lon": -73.9727372 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555840950, + "bounds": { + "minlat": 40.8531597, + "minlon": -73.9717579, + "maxlat": 40.8532672, + "maxlon": -73.9716414 + }, + "nodes": [ + 5362322610, + 5362322614 + ], + "geometry": [ + { "lat": 40.8532672, "lon": -73.9716414 }, + { "lat": 40.8531597, "lon": -73.9717579 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555840954, + "bounds": { + "minlat": 40.8523384, + "minlon": -73.9726942, + "maxlat": 40.8529047, + "maxlon": -73.9722227 + }, + "nodes": [ + 5362322611, + 5362322606, + 5362322546 + ], + "geometry": [ + { "lat": 40.8529047, "lon": -73.9722475 }, + { "lat": 40.8528305, "lon": -73.9722227 }, + { "lat": 40.8523384, "lon": -73.9726942 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555840956, + "bounds": { + "minlat": 40.8529047, + "minlon": -73.9722475, + "maxlat": 40.8533721, + "maxlon": -73.9718014 + }, + "nodes": [ + 5362322591, + 5362322611 + ], + "geometry": [ + { "lat": 40.8533721, "lon": -73.9718014 }, + { "lat": 40.8529047, "lon": -73.9722475 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555841809, + "bounds": { + "minlat": 40.8533339, + "minlon": -73.9821683, + "maxlat": 40.8534919, + "maxlon": -73.9820100 + }, + "nodes": [ + 5362334338, + 5362334357 + ], + "geometry": [ + { "lat": 40.8534919, "lon": -73.9820100 }, + { "lat": 40.8533339, "lon": -73.9821683 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555841810, + "bounds": { + "minlat": 40.8536392, + "minlon": -73.9831830, + "maxlat": 40.8542598, + "maxlon": -73.9825813 + }, + "nodes": [ + 5362334361, + 5362334335, + 5362334367, + 5362334339, + 5362334340, + 5362334359, + 5362334370, + 5362334336, + 5362334341, + 5362334351, + 5362334350, + 5362350124, + 5362350125 + ], + "geometry": [ + { "lat": 40.8536392, "lon": -73.9826987 }, + { "lat": 40.8537120, "lon": -73.9826322 }, + { "lat": 40.8537546, "lon": -73.9825974 }, + { "lat": 40.8537932, "lon": -73.9825813 }, + { "lat": 40.8538358, "lon": -73.9825853 }, + { "lat": 40.8540813, "lon": -73.9827315 }, + { "lat": 40.8541270, "lon": -73.9827767 }, + { "lat": 40.8541979, "lon": -73.9828696 }, + { "lat": 40.8542409, "lon": -73.9829377 }, + { "lat": 40.8542456, "lon": -73.9830037 }, + { "lat": 40.8542507, "lon": -73.9830721 }, + { "lat": 40.8542560, "lon": -73.9831294 }, + { "lat": 40.8542598, "lon": -73.9831830 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555841811, + "bounds": { + "minlat": 40.8535511, + "minlon": -73.9825457, + "maxlat": 40.8537192, + "maxlon": -73.9823531 + }, + "nodes": [ + 5362334348, + 5362334354, + 5362334360 + ], + "geometry": [ + { "lat": 40.8537192, "lon": -73.9823531 }, + { "lat": 40.8536522, "lon": -73.9824418 }, + { "lat": 40.8535511, "lon": -73.9825457 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555842584, + "bounds": { + "minlat": 40.8526614, + "minlon": -73.9807392, + "maxlat": 40.8535255, + "maxlon": -73.9796007 + }, + "nodes": [ + 5362387204, + 7439311402, + 5362387202, + 5362387205, + 7439311340, + 5362387203, + 5362344698, + 5362344694, + 7439311371, + 5362344692 + ], + "geometry": [ + { "lat": 40.8526614, "lon": -73.9800757 }, + { "lat": 40.8527246, "lon": -73.9801908 }, + { "lat": 40.8527458, "lon": -73.9802295 }, + { "lat": 40.8528792, "lon": -73.9804543 }, + { "lat": 40.8529245, "lon": -73.9805306 }, + { "lat": 40.8529827, "lon": -73.9806286 }, + { "lat": 40.8530723, "lon": -73.9807392 }, + { "lat": 40.8535255, "lon": -73.9802626 }, + { "lat": 40.8533362, "lon": -73.9799290 }, + { "lat": 40.8531499, "lon": -73.9796007 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555842585, + "bounds": { + "minlat": 40.8535983, + "minlon": -73.9808054, + "maxlat": 40.8537587, + "maxlon": -73.9806407 + }, + "nodes": [ + 5362345525, + 5362344704 + ], + "geometry": [ + { "lat": 40.8537587, "lon": -73.9806407 }, + { "lat": 40.8535983, "lon": -73.9808054 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555842587, + "bounds": { + "minlat": 40.8534970, + "minlon": -73.9806488, + "maxlat": 40.8536410, + "maxlon": -73.9804650 + }, + "nodes": [ + 5362344707, + 5362344689, + 5362345529 + ], + "geometry": [ + { "lat": 40.8536410, "lon": -73.9804650 }, + { "lat": 40.8534970, "lon": -73.9806045 }, + { "lat": 40.8535046, "lon": -73.9806488 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555842588, + "bounds": { + "minlat": 40.8544610, + "minlon": -73.9807319, + "maxlat": 40.8546701, + "maxlon": -73.9802630 + }, + "nodes": [ + 5362344693, + 5362344718, + 5362344690, + 5362344688 + ], + "geometry": [ + { "lat": 40.8546308, "lon": -73.9807319 }, + { "lat": 40.8545717, "lon": -73.9806439 }, + { "lat": 40.8544610, "lon": -73.9804725 }, + { "lat": 40.8546701, "lon": -73.9802630 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555842589, + "bounds": { + "minlat": 40.8528578, + "minlon": -73.9813492, + "maxlat": 40.8537154, + "maxlon": -73.9806488 + }, + "nodes": [ + 5362344716, + 5362344704, + 5362345529, + 5362345521, + 5362344720, + 5362345523, + 5362345530 + ], + "geometry": [ + { "lat": 40.8537154, "lon": -73.9810019 }, + { "lat": 40.8535983, "lon": -73.9808054 }, + { "lat": 40.8535046, "lon": -73.9806488 }, + { "lat": 40.8531856, "lon": -73.9809599 }, + { "lat": 40.8531806, "lon": -73.9810355 }, + { "lat": 40.8530426, "lon": -73.9811701 }, + { "lat": 40.8528578, "lon": -73.9813492 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555842590, + "bounds": { + "minlat": 40.8534230, + "minlon": -73.9812997, + "maxlat": 40.8538865, + "maxlon": -73.9808285 + }, + "nodes": [ + 5362344703, + 5362344716, + 5362344695 + ], + "geometry": [ + { "lat": 40.8534230, "lon": -73.9812997 }, + { "lat": 40.8537154, "lon": -73.9810019 }, + { "lat": 40.8538865, "lon": -73.9808285 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555842591, + "bounds": { + "minlat": 40.8535872, + "minlon": -73.9807855, + "maxlat": 40.8548659, + "maxlon": -73.9791756 + }, + "nodes": [ + 5362345527, + 5362378661, + 5362344696, + 5362344706, + 5362378652, + 5362344712, + 5362345526, + 5362344709, + 5362378679, + 5362344702, + 5362344700, + 5362345528, + 5362344699, + 5362378649, + 5362345522, + 7439311275, + 5362344691 + ], + "geometry": [ + { "lat": 40.8540042, "lon": -73.9807855 }, + { "lat": 40.8540202, "lon": -73.9807690 }, + { "lat": 40.8543628, "lon": -73.9804145 }, + { "lat": 40.8544322, "lon": -73.9803483 }, + { "lat": 40.8547786, "lon": -73.9799787 }, + { "lat": 40.8548659, "lon": -73.9798633 }, + { "lat": 40.8546158, "lon": -73.9794404 }, + { "lat": 40.8545915, "lon": -73.9794350 }, + { "lat": 40.8544708, "lon": -73.9795472 }, + { "lat": 40.8544515, "lon": -73.9795651 }, + { "lat": 40.8544180, "lon": -73.9796148 }, + { "lat": 40.8541888, "lon": -73.9798629 }, + { "lat": 40.8541573, "lon": -73.9798830 }, + { "lat": 40.8541425, "lon": -73.9798983 }, + { "lat": 40.8540833, "lon": -73.9799594 }, + { "lat": 40.8539374, "lon": -73.9797289 }, + { "lat": 40.8535872, "lon": -73.9791756 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555842592, + "bounds": { + "minlat": 40.8527118, + "minlon": -73.9811701, + "maxlat": 40.8530426, + "maxlon": -73.9806058 + }, + "nodes": [ + 5362345523, + 5362344701 + ], + "geometry": [ + { "lat": 40.8530426, "lon": -73.9811701 }, + { "lat": 40.8527118, "lon": -73.9806058 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555842916, + "bounds": { + "minlat": 40.8544614, + "minlon": -73.9827778, + "maxlat": 40.8546514, + "maxlon": -73.9824579 + }, + "nodes": [ + 5362347326, + 5362347329 + ], + "geometry": [ + { "lat": 40.8546514, "lon": -73.9827778 }, + { "lat": 40.8544614, "lon": -73.9824579 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555842917, + "bounds": { + "minlat": 40.8539976, + "minlon": -73.9824579, + "maxlat": 40.8544614, + "maxlon": -73.9818651 + }, + "nodes": [ + 5362347329, + 5362347324, + 5362347331, + 5362347330, + 5362347325, + 5362347322, + 5362347323, + 5362347332, + 5362347329 + ], + "geometry": [ + { "lat": 40.8544614, "lon": -73.9824579 }, + { "lat": 40.8543790, "lon": -73.9824141 }, + { "lat": 40.8541244, "lon": -73.9822398 }, + { "lat": 40.8540858, "lon": -73.9822036 }, + { "lat": 40.8540544, "lon": -73.9821392 }, + { "lat": 40.8540047, "lon": -73.9820440 }, + { "lat": 40.8539976, "lon": -73.9819969 }, + { "lat": 40.8541267, "lon": -73.9818651 }, + { "lat": 40.8544614, "lon": -73.9824579 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555842918, + "bounds": { + "minlat": 40.8542360, + "minlon": -73.9826619, + "maxlat": 40.8547687, + "maxlon": -73.9816953 + }, + "nodes": [ + 2325759623, + 5362347328, + 5362347327 + ], + "geometry": [ + { "lat": 40.8547687, "lon": -73.9826619 }, + { "lat": 40.8547624, "lon": -73.9826193 }, + { "lat": 40.8542360, "lon": -73.9816953 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555843508, + "bounds": { + "minlat": 40.8542409, + "minlon": -73.9830075, + "maxlat": 40.8544295, + "maxlon": -73.9829377 + }, + "nodes": [ + 5362334341, + 5362350122, + 5362350121, + 5362350123, + 5362350126 + ], + "geometry": [ + { "lat": 40.8542409, "lon": -73.9829377 }, + { "lat": 40.8542639, "lon": -73.9829461 }, + { "lat": 40.8543217, "lon": -73.9829796 }, + { "lat": 40.8543785, "lon": -73.9830010 }, + { "lat": 40.8544295, "lon": -73.9830075 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555843725, + "bounds": { + "minlat": 40.8533361, + "minlon": -73.9842208, + "maxlat": 40.8535331, + "maxlon": -73.9841608 + }, + "nodes": [ + 2395509026, + 103111760, + 299182806 + ], + "geometry": [ + { "lat": 40.8533361, "lon": -73.9841608 }, + { "lat": 40.8534808, "lon": -73.9842208 }, + { "lat": 40.8535331, "lon": -73.9842041 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "7th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "7th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 555843726, + "bounds": { + "minlat": 40.8512227, + "minlon": -73.9838862, + "maxlat": 40.8514783, + "maxlon": -73.9838719 + }, + "nodes": [ + 5362354425, + 5362354424 + ], + "geometry": [ + { "lat": 40.8514783, "lon": -73.9838862 }, + { "lat": 40.8512227, "lon": -73.9838719 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 555843940, + "bounds": { + "minlat": 40.8537415, + "minlon": -73.9838834, + "maxlat": 40.8541806, + "maxlon": -73.9835432 + }, + "nodes": [ + 5362357989, + 5362357997, + 5362357991 + ], + "geometry": [ + { "lat": 40.8541806, "lon": -73.9836392 }, + { "lat": 40.8539372, "lon": -73.9838834 }, + { "lat": 40.8537415, "lon": -73.9835432 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555845172, + "bounds": { + "minlat": 40.8521392, + "minlon": -73.9830855, + "maxlat": 40.8524603, + "maxlon": -73.9827275 + }, + "nodes": [ + 5362370197, + 5362370198, + 5362370199, + 5362370200, + 5362370187, + 5362370188, + 5362370194, + 5362370191, + 5362370193, + 5362370189, + 5362370196, + 5362370195, + 5362370190, + 5362370197 + ], + "geometry": [ + { "lat": 40.8521392, "lon": -73.9828948 }, + { "lat": 40.8521783, "lon": -73.9829005 }, + { "lat": 40.8522117, "lon": -73.9828844 }, + { "lat": 40.8522239, "lon": -73.9828589 }, + { "lat": 40.8522330, "lon": -73.9828200 }, + { "lat": 40.8522848, "lon": -73.9827690 }, + { "lat": 40.8523365, "lon": -73.9827275 }, + { "lat": 40.8523609, "lon": -73.9827275 }, + { "lat": 40.8524080, "lon": -73.9827440 }, + { "lat": 40.8524440, "lon": -73.9827824 }, + { "lat": 40.8524603, "lon": -73.9828361 }, + { "lat": 40.8524547, "lon": -73.9828768 }, + { "lat": 40.8522401, "lon": -73.9830855 }, + { "lat": 40.8521392, "lon": -73.9828948 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555845173, + "bounds": { + "minlat": 40.8519360, + "minlon": -73.9828948, + "maxlat": 40.8521392, + "maxlon": -73.9825067 + }, + "nodes": [ + 5362370197, + 5362370192 + ], + "geometry": [ + { "lat": 40.8521392, "lon": -73.9828948 }, + { "lat": 40.8519360, "lon": -73.9825067 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555845634, + "bounds": { + "minlat": 40.8493558, + "minlon": -73.9848467, + "maxlat": 40.8494002, + "maxlon": -73.9845898 + }, + "nodes": [ + 5362373772, + 5362373768, + 5362373771 + ], + "geometry": [ + { "lat": 40.8493558, "lon": -73.9848467 }, + { "lat": 40.8493911, "lon": -73.9846859 }, + { "lat": 40.8494002, "lon": -73.9845898 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555845636, + "bounds": { + "minlat": 40.8496260, + "minlon": -73.9848395, + "maxlat": 40.8497226, + "maxlon": -73.9846090 + }, + "nodes": [ + 5362373770, + 5362373769, + 4695808184 + ], + "geometry": [ + { "lat": 40.8496260, "lon": -73.9846090 }, + { "lat": 40.8496487, "lon": -73.9846542 }, + { "lat": 40.8497226, "lon": -73.9848395 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555846272, + "bounds": { + "minlat": 40.8535255, + "minlon": -73.9807690, + "maxlat": 40.8540202, + "maxlon": -73.9802375 + }, + "nodes": [ + 5362344694, + 5362378664, + 5362378660, + 5362378685, + 5362378633, + 5362378655, + 5362378663, + 5362378661 + ], + "geometry": [ + { "lat": 40.8535255, "lon": -73.9802626 }, + { "lat": 40.8535571, "lon": -73.9802402 }, + { "lat": 40.8536395, "lon": -73.9802375 }, + { "lat": 40.8538568, "lon": -73.9805991 }, + { "lat": 40.8538987, "lon": -73.9806689 }, + { "lat": 40.8539413, "lon": -73.9806957 }, + { "lat": 40.8540011, "lon": -73.9807440 }, + { "lat": 40.8540202, "lon": -73.9807690 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555847187, + "bounds": { + "minlat": 40.8545830, + "minlon": -73.9841725, + "maxlat": 40.8546823, + "maxlon": -73.9838982 + }, + "nodes": [ + 5362392159, + 5362397424, + 10943435072, + 5362392140 + ], + "geometry": [ + { "lat": 40.8546823, "lon": -73.9841725 }, + { "lat": 40.8546480, "lon": -73.9840825 }, + { "lat": 40.8546114, "lon": -73.9839798 }, + { "lat": 40.8545830, "lon": -73.9838982 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555847188, + "bounds": { + "minlat": 40.8541021, + "minlon": -73.9835028, + "maxlat": 40.8547619, + "maxlon": -73.9828522 + }, + "nodes": [ + 5362392174, + 5362392142 + ], + "geometry": [ + { "lat": 40.8547619, "lon": -73.9828522 }, + { "lat": 40.8541021, "lon": -73.9835028 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555847729, + "bounds": { + "minlat": 40.8553593, + "minlon": -73.9835757, + "maxlat": 40.8553842, + "maxlon": -73.9833033 + }, + "nodes": [ + 299172094, + 5362388580, + 5362388587, + 5362388585 + ], + "geometry": [ + { "lat": 40.8553684, "lon": -73.9835757 }, + { "lat": 40.8553606, "lon": -73.9834928 }, + { "lat": 40.8553593, "lon": -73.9834442 }, + { "lat": 40.8553842, "lon": -73.9833033 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555850578, + "bounds": { + "minlat": 40.8569812, + "minlon": -73.9631643, + "maxlat": 40.8573580, + "maxlon": -73.9628852 + }, + "nodes": [ + 5362430050, + 5362430052, + 4397856440 + ], + "geometry": [ + { "lat": 40.8573580, "lon": -73.9628852 }, + { "lat": 40.8570670, "lon": -73.9631086 }, + { "lat": 40.8569812, "lon": -73.9631643 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555850882, + "bounds": { + "minlat": 40.8564427, + "minlon": -73.9629637, + "maxlat": 40.8567588, + "maxlon": -73.9628553 + }, + "nodes": [ + 5362432459, + 5362432457 + ], + "geometry": [ + { "lat": 40.8564427, "lon": -73.9629637 }, + { "lat": 40.8567588, "lon": -73.9628553 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555851485, + "bounds": { + "minlat": 40.8636854, + "minlon": -73.9558816, + "maxlat": 40.8649279, + "maxlon": -73.9553583 + }, + "nodes": [ + 5362437315, + 5362437314, + 5362437316, + 5362437319, + 5362437317, + 7930701580, + 7930701581, + 7930701583, + 7930715485, + 60810941 + ], + "geometry": [ + { "lat": 40.8649279, "lon": -73.9553873 }, + { "lat": 40.8648013, "lon": -73.9553717 }, + { "lat": 40.8647404, "lon": -73.9553583 }, + { "lat": 40.8644400, "lon": -73.9555071 }, + { "lat": 40.8643193, "lon": -73.9555640 }, + { "lat": 40.8642013, "lon": -73.9556267 }, + { "lat": 40.8641149, "lon": -73.9556803 }, + { "lat": 40.8640042, "lon": -73.9557419 }, + { "lat": 40.8639000, "lon": -73.9557917 }, + { "lat": 40.8636854, "lon": -73.9558816 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555852020, + "bounds": { + "minlat": 40.8409733, + "minlon": -73.9696000, + "maxlat": 40.8409965, + "maxlon": -73.9694283 + }, + "nodes": [ + 103137183, + 5362441696, + 7672312138, + 5362444838 + ], + "geometry": [ + { "lat": 40.8409947, "lon": -73.9696000 }, + { "lat": 40.8409965, "lon": -73.9695524 }, + { "lat": 40.8409918, "lon": -73.9695276 }, + { "lat": 40.8409733, "lon": -73.9694283 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555852022, + "bounds": { + "minlat": 40.8402714, + "minlon": -73.9694440, + "maxlat": 40.8413495, + "maxlon": -73.9674889 + }, + "nodes": [ + 10907707121, + 10907707120, + 10907707119, + 10907707118, + 10907707117, + 10907707116, + 10907707115, + 10907707114, + 10907707113, + 5362444827, + 5362441697, + 5362441719, + 5362441717, + 5362441718, + 5362441712, + 5362441711, + 5362441709, + 5362441708, + 5362444829, + 5362444826, + 5362444838, + 5362444833, + 5362444821 + ], + "geometry": [ + { "lat": 40.8402714, "lon": -73.9674889 }, + { "lat": 40.8403345, "lon": -73.9676805 }, + { "lat": 40.8403241, "lon": -73.9682782 }, + { "lat": 40.8403775, "lon": -73.9684347 }, + { "lat": 40.8404171, "lon": -73.9684982 }, + { "lat": 40.8404626, "lon": -73.9685397 }, + { "lat": 40.8405310, "lon": -73.9685604 }, + { "lat": 40.8405894, "lon": -73.9685498 }, + { "lat": 40.8408084, "lon": -73.9683695 }, + { "lat": 40.8408747, "lon": -73.9683791 }, + { "lat": 40.8412187, "lon": -73.9690134 }, + { "lat": 40.8413414, "lon": -73.9692642 }, + { "lat": 40.8413495, "lon": -73.9692990 }, + { "lat": 40.8413455, "lon": -73.9693205 }, + { "lat": 40.8413095, "lon": -73.9693357 }, + { "lat": 40.8411933, "lon": -73.9693554 }, + { "lat": 40.8411405, "lon": -73.9693500 }, + { "lat": 40.8410807, "lon": -73.9693514 }, + { "lat": 40.8410310, "lon": -73.9693835 }, + { "lat": 40.8409894, "lon": -73.9694211 }, + { "lat": 40.8409733, "lon": -73.9694283 }, + { "lat": 40.8409382, "lon": -73.9694440 }, + { "lat": 40.8408184, "lon": -73.9692284 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555852786, + "bounds": { + "minlat": 40.8308228, + "minlon": -73.9722723, + "maxlat": 40.8320305, + "maxlon": -73.9709660 + }, + "nodes": [ + 5362451448, + 5362451475, + 5362451468, + 5362455970, + 5362412911, + 5362451452, + 5362451431, + 5362412918, + 5362451473, + 5362451472, + 5362451457, + 5362451469 + ], + "geometry": [ + { "lat": 40.8316606, "lon": -73.9722066 }, + { "lat": 40.8319965, "lon": -73.9722723 }, + { "lat": 40.8320305, "lon": -73.9722499 }, + { "lat": 40.8319665, "lon": -73.9720276 }, + { "lat": 40.8318646, "lon": -73.9716741 }, + { "lat": 40.8318271, "lon": -73.9715159 }, + { "lat": 40.8318169, "lon": -73.9714099 }, + { "lat": 40.8317773, "lon": -73.9711927 }, + { "lat": 40.8317479, "lon": -73.9711176 }, + { "lat": 40.8317246, "lon": -73.9710787 }, + { "lat": 40.8312162, "lon": -73.9709660 }, + { "lat": 40.8308228, "lon": -73.9711444 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 555852787, + "bounds": { + "minlat": 40.8296099, + "minlon": -73.9711055, + "maxlat": 40.8297730, + "maxlon": -73.9709027 + }, + "nodes": [ + 5315234559, + 5362451481, + 5362451487, + 5362451486, + 5362412916, + 5362412919, + 5362451474, + 5362451491, + 5362451477 + ], + "geometry": [ + { "lat": 40.8297730, "lon": -73.9710094 }, + { "lat": 40.8297509, "lon": -73.9710586 }, + { "lat": 40.8297225, "lon": -73.9710867 }, + { "lat": 40.8296890, "lon": -73.9711055 }, + { "lat": 40.8296606, "lon": -73.9711055 }, + { "lat": 40.8296403, "lon": -73.9710867 }, + { "lat": 40.8296230, "lon": -73.9710492 }, + { "lat": 40.8296099, "lon": -73.9709768 }, + { "lat": 40.8296141, "lon": -73.9709027 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 555852788, + "bounds": { + "minlat": 40.8300444, + "minlon": -73.9714828, + "maxlat": 40.8300530, + "maxlon": -73.9714324 + }, + "nodes": [ + 5362451433, + 5362451459 + ], + "geometry": [ + { "lat": 40.8300444, "lon": -73.9714324 }, + { "lat": 40.8300530, "lon": -73.9714828 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555852789, + "bounds": { + "minlat": 40.8300444, + "minlon": -73.9716666, + "maxlat": 40.8302773, + "maxlon": -73.9713898 + }, + "nodes": [ + 5362451433, + 5362451446, + 5362451430, + 5362451470, + 12069005372, + 12069005373, + 12069005371, + 12069005370, + 5362451454, + 12068970360, + 12068970361, + 12068970364, + 12068970363, + 12068970362, + 5362412914, + 12068970365, + 12068970366, + 12068970368, + 12069005369, + 12068970367, + 5362451483, + 5362451484, + 5362451446 + ], + "geometry": [ + { "lat": 40.8300444, "lon": -73.9714324 }, + { "lat": 40.8301442, "lon": -73.9714030 }, + { "lat": 40.8301928, "lon": -73.9713898 }, + { "lat": 40.8302508, "lon": -73.9714053 }, + { "lat": 40.8302613, "lon": -73.9714127 }, + { "lat": 40.8302684, "lon": -73.9714235 }, + { "lat": 40.8302740, "lon": -73.9714367 }, + { "lat": 40.8302770, "lon": -73.9714510 }, + { "lat": 40.8302773, "lon": -73.9714663 }, + { "lat": 40.8302605, "lon": -73.9716243 }, + { "lat": 40.8302555, "lon": -73.9716392 }, + { "lat": 40.8302498, "lon": -73.9716500 }, + { "lat": 40.8302405, "lon": -73.9716596 }, + { "lat": 40.8302288, "lon": -73.9716658 }, + { "lat": 40.8302192, "lon": -73.9716666 }, + { "lat": 40.8301698, "lon": -73.9716553 }, + { "lat": 40.8301593, "lon": -73.9716494 }, + { "lat": 40.8301524, "lon": -73.9716407 }, + { "lat": 40.8301469, "lon": -73.9716295 }, + { "lat": 40.8301447, "lon": -73.9716165 }, + { "lat": 40.8301446, "lon": -73.9716010 }, + { "lat": 40.8301575, "lon": -73.9714563 }, + { "lat": 40.8301442, "lon": -73.9714030 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555852790, + "bounds": { + "minlat": 40.8304169, + "minlon": -73.9698048, + "maxlat": 40.8311513, + "maxlon": -73.9692575 + }, + "nodes": [ + 5362451489, + 5362451439, + 5362451434, + 5362412915, + 5362451428, + 5362451476, + 5362451437, + 5362451479 + ], + "geometry": [ + { "lat": 40.8311513, "lon": -73.9693943 }, + { "lat": 40.8310777, "lon": -73.9692632 }, + { "lat": 40.8310437, "lon": -73.9692575 }, + { "lat": 40.8307702, "lon": -73.9694041 }, + { "lat": 40.8307514, "lon": -73.9694721 }, + { "lat": 40.8307119, "lon": -73.9694975 }, + { "lat": 40.8304775, "lon": -73.9696343 }, + { "lat": 40.8304169, "lon": -73.9698048 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555852792, + "bounds": { + "minlat": 40.8298033, + "minlon": -73.9718830, + "maxlat": 40.8300049, + "maxlon": -73.9716509 + }, + "nodes": [ + 5362451467, + 5362451453, + 5362412920, + 5362451444, + 5362451442 + ], + "geometry": [ + { "lat": 40.8298033, "lon": -73.9718830 }, + { "lat": 40.8298391, "lon": -73.9718504 }, + { "lat": 40.8298950, "lon": -73.9718087 }, + { "lat": 40.8299244, "lon": -73.9717761 }, + { "lat": 40.8300049, "lon": -73.9716509 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555852793, + "bounds": { + "minlat": 40.8304169, + "minlon": -73.9699537, + "maxlat": 40.8312040, + "maxlon": -73.9693943 + }, + "nodes": [ + 5362451479, + 5362451489, + 5362451490, + 5362451478 + ], + "geometry": [ + { "lat": 40.8304169, "lon": -73.9698048 }, + { "lat": 40.8311513, "lon": -73.9693943 }, + { "lat": 40.8312040, "lon": -73.9695632 }, + { "lat": 40.8304616, "lon": -73.9699537 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555852794, + "bounds": { + "minlat": 40.8296728, + "minlon": -73.9716509, + "maxlat": 40.8300049, + "maxlon": -73.9715231 + }, + "nodes": [ + 5362451442, + 5362412910, + 5362451432 + ], + "geometry": [ + { "lat": 40.8300049, "lon": -73.9716509 }, + { "lat": 40.8299479, "lon": -73.9715231 }, + { "lat": 40.8296728, "lon": -73.9716433 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555852795, + "bounds": { + "minlat": 40.8304169, + "minlon": -73.9708948, + "maxlat": 40.8307459, + "maxlon": -73.9698048 + }, + "nodes": [ + 5315234555, + 5362412913, + 5362451478, + 5362451479 + ], + "geometry": [ + { "lat": 40.8307459, "lon": -73.9708948 }, + { "lat": 40.8305134, "lon": -73.9701262 }, + { "lat": 40.8304616, "lon": -73.9699537 }, + { "lat": 40.8304169, "lon": -73.9698048 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 555852797, + "bounds": { + "minlat": 40.8305134, + "minlon": -73.9701262, + "maxlat": 40.8312167, + "maxlon": -73.9695632 + }, + "nodes": [ + 5362412913, + 5362451424, + 5362451426, + 5362451427, + 5362451490 + ], + "geometry": [ + { "lat": 40.8305134, "lon": -73.9701262 }, + { "lat": 40.8312030, "lon": -73.9697523 }, + { "lat": 40.8312162, "lon": -73.9697014 }, + { "lat": 40.8312167, "lon": -73.9696401 }, + { "lat": 40.8312040, "lon": -73.9695632 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555852946, + "bounds": { + "minlat": 40.8308026, + "minlon": -73.9720480, + "maxlat": 40.8308963, + "maxlon": -73.9711444 + }, + "nodes": [ + 5362451469, + 5315234554, + 5362451480, + 5689881729 + ], + "geometry": [ + { "lat": 40.8308228, "lon": -73.9711444 }, + { "lat": 40.8308963, "lon": -73.9713829 }, + { "lat": 40.8308805, "lon": -73.9715565 }, + { "lat": 40.8308026, "lon": -73.9720480 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555852947, + "bounds": { + "minlat": 40.8307546, + "minlon": -73.9720367, + "maxlat": 40.8308228, + "maxlon": -73.9711444 + }, + "nodes": [ + 5689881730, + 7701677562, + 5362451419, + 5362451469 + ], + "geometry": [ + { "lat": 40.8307546, "lon": -73.9720367 }, + { "lat": 40.8307825, "lon": -73.9717652 }, + { "lat": 40.8308199, "lon": -73.9714023 }, + { "lat": 40.8308228, "lon": -73.9711444 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555853069, + "bounds": { + "minlat": 40.8280522, + "minlon": -73.9719625, + "maxlat": 40.8289883, + "maxlon": -73.9715932 + }, + "nodes": [ + 12068970333, + 1691389660, + 5362454928, + 5362454929, + 5362454922, + 5362454921, + 5362454926, + 5362454927 + ], + "geometry": [ + { "lat": 40.8289883, "lon": -73.9715932 }, + { "lat": 40.8287883, "lon": -73.9717049 }, + { "lat": 40.8286840, "lon": -73.9717695 }, + { "lat": 40.8283663, "lon": -73.9719562 }, + { "lat": 40.8282785, "lon": -73.9719625 }, + { "lat": 40.8281587, "lon": -73.9719531 }, + { "lat": 40.8280735, "lon": -73.9719477 }, + { "lat": 40.8280522, "lon": -73.9719504 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555853120, + "bounds": { + "minlat": 40.8316779, + "minlon": -73.9720276, + "maxlat": 40.8319665, + "maxlon": -73.9719692 + }, + "nodes": [ + 5362455971, + 5362455970 + ], + "geometry": [ + { "lat": 40.8316779, "lon": -73.9719692 }, + { "lat": 40.8319665, "lon": -73.9720276 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555853265, + "bounds": { + "minlat": 40.8299848, + "minlon": -73.9700840, + "maxlat": 40.8302126, + "maxlon": -73.9699736 + }, + "nodes": [ + 5362459129, + 5362459130 + ], + "geometry": [ + { "lat": 40.8302126, "lon": -73.9699736 }, + { "lat": 40.8299848, "lon": -73.9700840 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555853266, + "bounds": { + "minlat": 40.8301185, + "minlon": -73.9705321, + "maxlat": 40.8304400, + "maxlon": -73.9703766 + }, + "nodes": [ + 5362459126, + 5362459128 + ], + "geometry": [ + { "lat": 40.8304400, "lon": -73.9703766 }, + { "lat": 40.8301185, "lon": -73.9705321 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 555853267, + "bounds": { + "minlat": 40.8300532, + "minlon": -73.9703131, + "maxlat": 40.8302897, + "maxlon": -73.9701976 + }, + "nodes": [ + 5362459127, + 5362459125 + ], + "geometry": [ + { "lat": 40.8302897, "lon": -73.9701976 }, + { "lat": 40.8300532, "lon": -73.9703131 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555853462, + "bounds": { + "minlat": 40.8290883, + "minlon": -73.9708428, + "maxlat": 40.8291320, + "maxlon": -73.9708199 + }, + "nodes": [ + 5362460563, + 5689881736 + ], + "geometry": [ + { "lat": 40.8290883, "lon": -73.9708428 }, + { "lat": 40.8291320, "lon": -73.9708199 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555853463, + "bounds": { + "minlat": 40.8291081, + "minlon": -73.9705777, + "maxlat": 40.8294427, + "maxlon": -73.9704150 + }, + "nodes": [ + 5362460564, + 5362460568 + ], + "geometry": [ + { "lat": 40.8291081, "lon": -73.9705777 }, + { "lat": 40.8294427, "lon": -73.9704150 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555853464, + "bounds": { + "minlat": 40.8290388, + "minlon": -73.9703679, + "maxlat": 40.8293756, + "maxlon": -73.9701983 + }, + "nodes": [ + 5362460566, + 5362460571 + ], + "geometry": [ + { "lat": 40.8290388, "lon": -73.9703679 }, + { "lat": 40.8293756, "lon": -73.9701983 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555854889, + "bounds": { + "minlat": 40.8260409, + "minlon": -73.9728583, + "maxlat": 40.8266117, + "maxlon": -73.9725147 + }, + "nodes": [ + 5362479171, + 5362479186 + ], + "geometry": [ + { "lat": 40.8266117, "lon": -73.9725147 }, + { "lat": 40.8260409, "lon": -73.9728583 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555854891, + "bounds": { + "minlat": 40.8261616, + "minlon": -73.9737712, + "maxlat": 40.8266853, + "maxlon": -73.9726961 + }, + "nodes": [ + 5362479172, + 5362479177, + 5362479044, + 5362479165, + 4205789005 + ], + "geometry": [ + { "lat": 40.8266853, "lon": -73.9726961 }, + { "lat": 40.8261616, "lon": -73.9730179 }, + { "lat": 40.8262158, "lon": -73.9731740 }, + { "lat": 40.8263432, "lon": -73.9735411 }, + { "lat": 40.8264231, "lon": -73.9737712 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555854892, + "bounds": { + "minlat": 40.8267260, + "minlon": -73.9730489, + "maxlat": 40.8270658, + "maxlon": -73.9726451 + }, + "nodes": [ + 5362479164, + 5362479154, + 5362479167, + 5362479150, + 5362479187, + 5362479163, + 5362479162, + 5362479157, + 5362479179, + 5362479161, + 5362479156, + 5362479184, + 5362479159 + ], + "geometry": [ + { "lat": 40.8267260, "lon": -73.9727615 }, + { "lat": 40.8267852, "lon": -73.9727111 }, + { "lat": 40.8268649, "lon": -73.9726679 }, + { "lat": 40.8269207, "lon": -73.9726491 }, + { "lat": 40.8269582, "lon": -73.9726451 }, + { "lat": 40.8269846, "lon": -73.9726532 }, + { "lat": 40.8270212, "lon": -73.9726894 }, + { "lat": 40.8270425, "lon": -73.9727390 }, + { "lat": 40.8270638, "lon": -73.9728127 }, + { "lat": 40.8270658, "lon": -73.9728731 }, + { "lat": 40.8270562, "lon": -73.9729231 }, + { "lat": 40.8270071, "lon": -73.9729880 }, + { "lat": 40.8269313, "lon": -73.9730489 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mariners", + "tiger:name_type": "Cv", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 555854898, + "bounds": { + "minlat": 40.8265037, + "minlon": -73.9733867, + "maxlat": 40.8271042, + "maxlon": -73.9719687 + }, + "nodes": [ + 5362479158, + 5362479183, + 5362479182, + 5362479176, + 5362479154, + 5362479169, + 5362479151, + 5362479184, + 5362479175, + 5560289557, + 103137133 + ], + "geometry": [ + { "lat": 40.8265037, "lon": -73.9719687 }, + { "lat": 40.8266782, "lon": -73.9724815 }, + { "lat": 40.8267228, "lon": -73.9725941 }, + { "lat": 40.8267614, "lon": -73.9726733 }, + { "lat": 40.8267852, "lon": -73.9727111 }, + { "lat": 40.8268263, "lon": -73.9727765 }, + { "lat": 40.8269562, "lon": -73.9729214 }, + { "lat": 40.8270071, "lon": -73.9729880 }, + { "lat": 40.8270455, "lon": -73.9730662 }, + { "lat": 40.8271042, "lon": -73.9732426 }, + { "lat": 40.8270976, "lon": -73.9733867 } + ], + "tags": { + "highway": "residential", + "name": "Tower Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mariners", + "tiger:name_type": "Cv", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 555854903, + "bounds": { + "minlat": 40.8263432, + "minlon": -73.9735411, + "maxlat": 40.8268060, + "maxlon": -73.9732660 + }, + "nodes": [ + 5362479149, + 5362479165 + ], + "geometry": [ + { "lat": 40.8268060, "lon": -73.9732660 }, + { "lat": 40.8263432, "lon": -73.9735411 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555854904, + "bounds": { + "minlat": 40.8264344, + "minlon": -73.9733867, + "maxlat": 40.8270976, + "maxlon": -73.9720106 + }, + "nodes": [ + 103137133, + 5560289558, + 5362479174, + 5362479159, + 5362479173, + 5362479170, + 5362479164, + 5362479172, + 5362479181, + 5362479171, + 5362479155, + 5362479168, + 5362479189 + ], + "geometry": [ + { "lat": 40.8270976, "lon": -73.9733867 }, + { "lat": 40.8270154, "lon": -73.9732940 }, + { "lat": 40.8269547, "lon": -73.9731053 }, + { "lat": 40.8269313, "lon": -73.9730489 }, + { "lat": 40.8268172, "lon": -73.9728959 }, + { "lat": 40.8267583, "lon": -73.9728114 }, + { "lat": 40.8267260, "lon": -73.9727615 }, + { "lat": 40.8266853, "lon": -73.9726961 }, + { "lat": 40.8266396, "lon": -73.9725901 }, + { "lat": 40.8266117, "lon": -73.9725147 }, + { "lat": 40.8265949, "lon": -73.9724694 }, + { "lat": 40.8265138, "lon": -73.9722320 }, + { "lat": 40.8264344, "lon": -73.9720106 } + ], + "tags": { + "highway": "residential", + "name": "Tower Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mariners", + "tiger:name_type": "Cv", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 555855439, + "bounds": { + "minlat": 40.8262158, + "minlon": -73.9731740, + "maxlat": 40.8267583, + "maxlon": -73.9728114 + }, + "nodes": [ + 5362479044, + 5362479043, + 5362479170 + ], + "geometry": [ + { "lat": 40.8262158, "lon": -73.9731740 }, + { "lat": 40.8266848, "lon": -73.9728936 }, + { "lat": 40.8267583, "lon": -73.9728114 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555856760, + "bounds": { + "minlat": 40.8241638, + "minlon": -73.9736887, + "maxlat": 40.8253881, + "maxlon": -73.9723593 + }, + "nodes": [ + 4630812616, + 4630812617, + 5362537305, + 5362537295, + 5362537301, + 5362537271, + 5362537275, + 5362537303, + 5362537277, + 5362537306, + 4630812618 + ], + "geometry": [ + { "lat": 40.8243708, "lon": -73.9736887 }, + { "lat": 40.8241638, "lon": -73.9730930 }, + { "lat": 40.8243131, "lon": -73.9730035 }, + { "lat": 40.8244633, "lon": -73.9729135 }, + { "lat": 40.8246196, "lon": -73.9728198 }, + { "lat": 40.8247698, "lon": -73.9727299 }, + { "lat": 40.8249166, "lon": -73.9726419 }, + { "lat": 40.8250663, "lon": -73.9725522 }, + { "lat": 40.8251520, "lon": -73.9725008 }, + { "lat": 40.8252401, "lon": -73.9724480 }, + { "lat": 40.8253881, "lon": -73.9723593 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555858091, + "bounds": { + "minlat": 40.8234933, + "minlon": -73.9755424, + "maxlat": 40.8235725, + "maxlon": -73.9751430 + }, + "nodes": [ + 5362499308, + 5362499317 + ], + "geometry": [ + { "lat": 40.8235725, "lon": -73.9755424 }, + { "lat": 40.8234933, "lon": -73.9751430 } + ], + "tags": { + "highway": "service", + "name": "Grand Cove Way", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555858092, + "bounds": { + "minlat": 40.8233879, + "minlon": -73.9756393, + "maxlat": 40.8234933, + "maxlon": -73.9751430 + }, + "nodes": [ + 5362499439, + 5362499432, + 5362499299, + 5362499316, + 5362499437, + 5362499436, + 5362499317 + ], + "geometry": [ + { "lat": 40.8233879, "lon": -73.9756393 }, + { "lat": 40.8234246, "lon": -73.9755526 }, + { "lat": 40.8234490, "lon": -73.9754855 }, + { "lat": 40.8234591, "lon": -73.9754573 }, + { "lat": 40.8234723, "lon": -73.9754077 }, + { "lat": 40.8234764, "lon": -73.9753259 }, + { "lat": 40.8234933, "lon": -73.9751430 } + ], + "tags": { + "highway": "service", + "name": "Grand Cove Way", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555858093, + "bounds": { + "minlat": 40.8227944, + "minlon": -73.9741180, + "maxlat": 40.8229209, + "maxlon": -73.9740948 + }, + "nodes": [ + 5362499435, + 5362499428 + ], + "geometry": [ + { "lat": 40.8227944, "lon": -73.9740948 }, + { "lat": 40.8229209, "lon": -73.9741180 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555858094, + "bounds": { + "minlat": 40.8227954, + "minlon": -73.9755378, + "maxlat": 40.8233532, + "maxlon": -73.9741180 + }, + "nodes": [ + 5688937319, + 5362499429, + 5362499430, + 5362499305, + 5362499424, + 5362499422, + 5362499421, + 5362499311, + 5362499291, + 5362499307, + 5362499304, + 5362485933, + 5362499434, + 5362499438, + 5362499303, + 5362499428, + 5362499319 + ], + "geometry": [ + { "lat": 40.8233532, "lon": -73.9752144 }, + { "lat": 40.8233516, "lon": -73.9753018 }, + { "lat": 40.8233495, "lon": -73.9753340 }, + { "lat": 40.8233142, "lon": -73.9753767 }, + { "lat": 40.8229913, "lon": -73.9755338 }, + { "lat": 40.8229395, "lon": -73.9755378 }, + { "lat": 40.8228994, "lon": -73.9755208 }, + { "lat": 40.8228477, "lon": -73.9754605 }, + { "lat": 40.8228208, "lon": -73.9754010 }, + { "lat": 40.8228040, "lon": -73.9753505 }, + { "lat": 40.8227954, "lon": -73.9752884 }, + { "lat": 40.8228066, "lon": -73.9747752 }, + { "lat": 40.8228117, "lon": -73.9745427 }, + { "lat": 40.8228276, "lon": -73.9744259 }, + { "lat": 40.8228903, "lon": -73.9742066 }, + { "lat": 40.8229209, "lon": -73.9741180 }, + { "lat": 40.8232086, "lon": -73.9741319 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555858119, + "bounds": { + "minlat": 40.8228066, + "minlon": -73.9748197, + "maxlat": 40.8235226, + "maxlon": -73.9737854 + }, + "nodes": [ + 5362500425, + 5362500424, + 5362500426, + 5362500421, + 5362498620, + 5362498619, + 5362500423, + 5362500425, + 5362500422, + 5688937925, + 5362485932, + 5688937926, + 5362485933 + ], + "geometry": [ + { "lat": 40.8235063, "lon": -73.9739932 }, + { "lat": 40.8235160, "lon": -73.9739393 }, + { "lat": 40.8235210, "lon": -73.9738709 }, + { "lat": 40.8235226, "lon": -73.9737854 }, + { "lat": 40.8234453, "lon": -73.9737857 }, + { "lat": 40.8234398, "lon": -73.9738896 }, + { "lat": 40.8234490, "lon": -73.9739111 }, + { "lat": 40.8235063, "lon": -73.9739932 }, + { "lat": 40.8234982, "lon": -73.9741536 }, + { "lat": 40.8234905, "lon": -73.9744694 }, + { "lat": 40.8234820, "lon": -73.9748197 }, + { "lat": 40.8233718, "lon": -73.9748162 }, + { "lat": 40.8228066, "lon": -73.9747752 } + ], + "tags": { + "highway": "service", + "name": "Grand Cove Way", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555858178, + "bounds": { + "minlat": 40.8223641, + "minlon": -73.9744259, + "maxlat": 40.8228276, + "maxlon": -73.9743952 + }, + "nodes": [ + 5362499438, + 5362492492 + ], + "geometry": [ + { "lat": 40.8228276, "lon": -73.9744259 }, + { "lat": 40.8223641, "lon": -73.9743952 } + ], + "tags": { + "highway": "service", + "name": "Grand Cove Way", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555858289, + "bounds": { + "minlat": 40.8213314, + "minlon": -73.9764243, + "maxlat": 40.8221226, + "maxlon": -73.9758177 + }, + "nodes": [ + 5362500916, + 5362502721, + 5362500919, + 5362500917, + 5362500920, + 3441639767 + ], + "geometry": [ + { "lat": 40.8221226, "lon": -73.9760877 }, + { "lat": 40.8216283, "lon": -73.9764243 }, + { "lat": 40.8214649, "lon": -73.9760085 }, + { "lat": 40.8214294, "lon": -73.9758623 }, + { "lat": 40.8213766, "lon": -73.9758315 }, + { "lat": 40.8213314, "lon": -73.9758177 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555858411, + "bounds": { + "minlat": 40.8208968, + "minlon": -73.9760367, + "maxlat": 40.8211871, + "maxlon": -73.9758418 + }, + "nodes": [ + 5362503900, + 5362503901 + ], + "geometry": [ + { "lat": 40.8208968, "lon": -73.9760367 }, + { "lat": 40.8211871, "lon": -73.9758418 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555859487, + "bounds": { + "minlat": 40.8190513, + "minlon": -73.9769335, + "maxlat": 40.8206650, + "maxlon": -73.9758402 + }, + "nodes": [ + 3441705295, + 5362513013, + 3441700281, + 5362514137 + ], + "geometry": [ + { "lat": 40.8206650, "lon": -73.9758402 }, + { "lat": 40.8200754, "lon": -73.9762434 }, + { "lat": 40.8195173, "lon": -73.9766241 }, + { "lat": 40.8190513, "lon": -73.9769335 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 555859489, + "bounds": { + "minlat": 40.8185538, + "minlon": -73.9774374, + "maxlat": 40.8191019, + "maxlon": -73.9770612 + }, + "nodes": [ + 3441699703, + 5362514142 + ], + "geometry": [ + { "lat": 40.8191019, "lon": -73.9770612 }, + { "lat": 40.8185538, "lon": -73.9774374 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 555859490, + "bounds": { + "minlat": 40.8190380, + "minlon": -73.9766813, + "maxlat": 40.8194633, + "maxlon": -73.9762796 + }, + "nodes": [ + 5362514128, + 5362513020, + 12248807206, + 12248807207, + 5362513014, + 12248807234, + 12248807203, + 12248807205, + 12248807202, + 12248807204, + 5362513008, + 12248807233, + 3441690511 + ], + "geometry": [ + { "lat": 40.8194633, "lon": -73.9762796 }, + { "lat": 40.8194017, "lon": -73.9762845 }, + { "lat": 40.8193694, "lon": -73.9762865 }, + { "lat": 40.8193536, "lon": -73.9762901 }, + { "lat": 40.8193366, "lon": -73.9762968 }, + { "lat": 40.8191449, "lon": -73.9764178 }, + { "lat": 40.8191053, "lon": -73.9764428 }, + { "lat": 40.8190961, "lon": -73.9764493 }, + { "lat": 40.8190879, "lon": -73.9764572 }, + { "lat": 40.8190787, "lon": -73.9764734 }, + { "lat": 40.8190724, "lon": -73.9764923 }, + { "lat": 40.8190644, "lon": -73.9765361 }, + { "lat": 40.8190380, "lon": -73.9766813 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555859491, + "bounds": { + "minlat": 40.8195731, + "minlon": -73.9761229, + "maxlat": 40.8197696, + "maxlon": -73.9760253 + }, + "nodes": [ + 12248805795, + 5362513011, + 12248807208, + 5362513012, + 12248807209, + 5362514123, + 12248807210, + 5362526101 + ], + "geometry": [ + { "lat": 40.8197696, "lon": -73.9760253 }, + { "lat": 40.8197467, "lon": -73.9760260 }, + { "lat": 40.8197167, "lon": -73.9760318 }, + { "lat": 40.8196868, "lon": -73.9760434 }, + { "lat": 40.8196490, "lon": -73.9760649 }, + { "lat": 40.8196127, "lon": -73.9760903 }, + { "lat": 40.8195925, "lon": -73.9761071 }, + { "lat": 40.8195731, "lon": -73.9761229 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555859648, + "bounds": { + "minlat": 40.8188820, + "minlon": -73.9780823, + "maxlat": 40.8193766, + "maxlon": -73.9777579 + }, + "nodes": [ + 3441696446, + 3441696441, + 5362514436 + ], + "geometry": [ + { "lat": 40.8193766, "lon": -73.9777579 }, + { "lat": 40.8189714, "lon": -73.9780220 }, + { "lat": 40.8188820, "lon": -73.9780823 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 555859754, + "bounds": { + "minlat": 40.8188379, + "minlon": -73.9785727, + "maxlat": 40.8189038, + "maxlon": -73.9782208 + }, + "nodes": [ + 5362516652, + 12248805781, + 12248805785, + 5362517645, + 12248805786, + 12248805787, + 5362517646, + 12248805788, + 5362517644 + ], + "geometry": [ + { "lat": 40.8189038, "lon": -73.9785727 }, + { "lat": 40.8188986, "lon": -73.9785334 }, + { "lat": 40.8188925, "lon": -73.9785086 }, + { "lat": 40.8188799, "lon": -73.9784707 }, + { "lat": 40.8188606, "lon": -73.9784136 }, + { "lat": 40.8188531, "lon": -73.9783884 }, + { "lat": 40.8188491, "lon": -73.9783700 }, + { "lat": 40.8188453, "lon": -73.9783473 }, + { "lat": 40.8188379, "lon": -73.9782208 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555859755, + "bounds": { + "minlat": 40.8180787, + "minlon": -73.9787202, + "maxlat": 40.8188609, + "maxlon": -73.9771967 + }, + "nodes": [ + 7672312272, + 5362516661, + 5362516660, + 5362516662, + 5362516658, + 5362516659, + 5362516657, + 5362516656, + 5362516663 + ], + "geometry": [ + { "lat": 40.8188609, "lon": -73.9786010 }, + { "lat": 40.8186699, "lon": -73.9787149 }, + { "lat": 40.8186476, "lon": -73.9787202 }, + { "lat": 40.8186156, "lon": -73.9787140 }, + { "lat": 40.8185922, "lon": -73.9786885 }, + { "lat": 40.8185704, "lon": -73.9786438 }, + { "lat": 40.8181984, "lon": -73.9776961 }, + { "lat": 40.8180787, "lon": -73.9773418 }, + { "lat": 40.8180995, "lon": -73.9771967 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555859857, + "bounds": { + "minlat": 40.8188379, + "minlon": -73.9785271, + "maxlat": 40.8191768, + "maxlon": -73.9782208 + }, + "nodes": [ + 5362517644, + 5340890587, + 5362517637, + 5340890588, + 5362517640, + 5362517643, + 5362517641, + 5362517642 + ], + "geometry": [ + { "lat": 40.8188379, "lon": -73.9782208 }, + { "lat": 40.8189135, "lon": -73.9784042 }, + { "lat": 40.8189417, "lon": -73.9784689 }, + { "lat": 40.8189673, "lon": -73.9784980 }, + { "lat": 40.8190160, "lon": -73.9785231 }, + { "lat": 40.8190657, "lon": -73.9785271 }, + { "lat": 40.8191235, "lon": -73.9785244 }, + { "lat": 40.8191768, "lon": -73.9785086 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555861055, + "bounds": { + "minlat": 40.8194633, + "minlon": -73.9762796, + "maxlat": 40.8195731, + "maxlon": -73.9761229 + }, + "nodes": [ + 5362526101, + 5362514124, + 5362514121, + 5362513007, + 5362514128 + ], + "geometry": [ + { "lat": 40.8195731, "lon": -73.9761229 }, + { "lat": 40.8195476, "lon": -73.9761463 }, + { "lat": 40.8195205, "lon": -73.9761791 }, + { "lat": 40.8194942, "lon": -73.9762189 }, + { "lat": 40.8194633, "lon": -73.9762796 } + ], + "tags": { + "bicycle": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 555861057, + "bounds": { + "minlat": 40.8190380, + "minlon": -73.9766813, + "maxlat": 40.8200121, + "maxlon": -73.9760692 + }, + "nodes": [ + 3441690511, + 3441690512, + 12248805799, + 3441704577, + 5362526576, + 3441704579 + ], + "geometry": [ + { "lat": 40.8190380, "lon": -73.9766813 }, + { "lat": 40.8194335, "lon": -73.9764051 }, + { "lat": 40.8194942, "lon": -73.9763663 }, + { "lat": 40.8198185, "lon": -73.9761589 }, + { "lat": 40.8199411, "lon": -73.9761162 }, + { "lat": 40.8200121, "lon": -73.9760692 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 555861991, + "bounds": { + "minlat": 40.8165866, + "minlon": -73.9807917, + "maxlat": 40.8168969, + "maxlon": -73.9801831 + }, + "nodes": [ + 103137081, + 5560289560, + 7672312056, + 5362533100, + 5362533093, + 5362533099 + ], + "geometry": [ + { "lat": 40.8168969, "lon": -73.9807917 }, + { "lat": 40.8167980, "lon": -73.9807158 }, + { "lat": 40.8167921, "lon": -73.9807044 }, + { "lat": 40.8167364, "lon": -73.9805964 }, + { "lat": 40.8166476, "lon": -73.9804092 }, + { "lat": 40.8165866, "lon": -73.9801831 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555861992, + "bounds": { + "minlat": 40.8165866, + "minlon": -73.9807917, + "maxlat": 40.8168969, + "maxlon": -73.9801831 + }, + "nodes": [ + 5362533099, + 1750475801, + 5362533095, + 5560289559, + 103137081 + ], + "geometry": [ + { "lat": 40.8165866, "lon": -73.9801831 }, + { "lat": 40.8166577, "lon": -73.9802632 }, + { "lat": 40.8167912, "lon": -73.9804945 }, + { "lat": 40.8168687, "lon": -73.9806294 }, + { "lat": 40.8168969, "lon": -73.9807917 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 555862029, + "bounds": { + "minlat": 40.8169226, + "minlon": -73.9804557, + "maxlat": 40.8171057, + "maxlon": -73.9802926 + }, + "nodes": [ + 5362534442, + 5362534444, + 1750475814 + ], + "geometry": [ + { "lat": 40.8169226, "lon": -73.9804557 }, + { "lat": 40.8170470, "lon": -73.9803430 }, + { "lat": 40.8171057, "lon": -73.9802926 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555862348, + "bounds": { + "minlat": 40.8256147, + "minlon": -73.9734047, + "maxlat": 40.8260348, + "maxlon": -73.9724309 + }, + "nodes": [ + 5362481487, + 5362537272, + 5362537283, + 5362537286, + 5362537300, + 5362537273, + 5362537285, + 5362537272 + ], + "geometry": [ + { "lat": 40.8257915, "lon": -73.9734047 }, + { "lat": 40.8258898, "lon": -73.9733448 }, + { "lat": 40.8260348, "lon": -73.9732566 }, + { "lat": 40.8257379, "lon": -73.9724309 }, + { "lat": 40.8256851, "lon": -73.9724644 }, + { "lat": 40.8256349, "lon": -73.9724962 }, + { "lat": 40.8256147, "lon": -73.9725544 }, + { "lat": 40.8258898, "lon": -73.9733448 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555862349, + "bounds": { + "minlat": 40.8247698, + "minlon": -73.9733492, + "maxlat": 40.8249732, + "maxlon": -73.9727299 + }, + "nodes": [ + 5362537279, + 5362537271 + ], + "geometry": [ + { "lat": 40.8249732, "lon": -73.9733492 }, + { "lat": 40.8247698, "lon": -73.9727299 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555862350, + "bounds": { + "minlat": 40.8250663, + "minlon": -73.9731772, + "maxlat": 40.8252784, + "maxlon": -73.9725522 + }, + "nodes": [ + 5362537282, + 5362537303 + ], + "geometry": [ + { "lat": 40.8252784, "lon": -73.9731772 }, + { "lat": 40.8250663, "lon": -73.9725522 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555862351, + "bounds": { + "minlat": 40.8259231, + "minlon": -73.9739015, + "maxlat": 40.8261945, + "maxlon": -73.9733781 + }, + "nodes": [ + 5362537298, + 5362537287, + 5362537288 + ], + "geometry": [ + { "lat": 40.8259231, "lon": -73.9734297 }, + { "lat": 40.8260140, "lon": -73.9733781 }, + { "lat": 40.8261945, "lon": -73.9739015 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 555862353, + "bounds": { + "minlat": 40.8246196, + "minlon": -73.9734322, + "maxlat": 40.8248259, + "maxlon": -73.9728198 + }, + "nodes": [ + 5362537276, + 5362537301 + ], + "geometry": [ + { "lat": 40.8248259, "lon": -73.9734322 }, + { "lat": 40.8246196, "lon": -73.9728198 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555862354, + "bounds": { + "minlat": 40.8249166, + "minlon": -73.9732625, + "maxlat": 40.8251270, + "maxlon": -73.9726419 + }, + "nodes": [ + 5362537292, + 5362537275 + ], + "geometry": [ + { "lat": 40.8251270, "lon": -73.9732625 }, + { "lat": 40.8249166, "lon": -73.9726419 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555862355, + "bounds": { + "minlat": 40.8252401, + "minlon": -73.9730788, + "maxlat": 40.8254530, + "maxlon": -73.9724480 + }, + "nodes": [ + 5362537291, + 5362537306 + ], + "geometry": [ + { "lat": 40.8254530, "lon": -73.9730788 }, + { "lat": 40.8252401, "lon": -73.9724480 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555862356, + "bounds": { + "minlat": 40.8244633, + "minlon": -73.9735163, + "maxlat": 40.8246767, + "maxlon": -73.9729135 + }, + "nodes": [ + 5362537297, + 5362537295 + ], + "geometry": [ + { "lat": 40.8246767, "lon": -73.9735163 }, + { "lat": 40.8244633, "lon": -73.9729135 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555862357, + "bounds": { + "minlat": 40.8243131, + "minlon": -73.9736019, + "maxlat": 40.8245247, + "maxlon": -73.9730035 + }, + "nodes": [ + 5362537280, + 5362537305 + ], + "geometry": [ + { "lat": 40.8245247, "lon": -73.9736019 }, + { "lat": 40.8243131, "lon": -73.9730035 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 555862500, + "bounds": { + "minlat": 40.8253150, + "minlon": -73.9741539, + "maxlat": 40.8258511, + "maxlon": -73.9738548 + }, + "nodes": [ + 5362538481, + 5362538479, + 5362538482, + 5362538487, + 5362538478, + 5362538483, + 5362538599, + 5362538484 + ], + "geometry": [ + { "lat": 40.8253150, "lon": -73.9741539 }, + { "lat": 40.8255355, "lon": -73.9740305 }, + { "lat": 40.8255416, "lon": -73.9739983 }, + { "lat": 40.8255649, "lon": -73.9739755 }, + { "lat": 40.8255974, "lon": -73.9739755 }, + { "lat": 40.8256159, "lon": -73.9739854 }, + { "lat": 40.8257977, "lon": -73.9738844 }, + { "lat": 40.8258511, "lon": -73.9738548 } + ], + "tags": { + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 555862502, + "bounds": { + "minlat": 40.8253018, + "minlon": -73.9739755, + "maxlat": 40.8255649, + "maxlon": -73.9731640 + }, + "nodes": [ + 5362538487, + 8023287398, + 5362538485 + ], + "geometry": [ + { "lat": 40.8255649, "lon": -73.9739755 }, + { "lat": 40.8253290, "lon": -73.9732478 }, + { "lat": 40.8253018, "lon": -73.9731640 } + ], + "tags": { + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 555862796, + "bounds": { + "minlat": 40.8242817, + "minlon": -73.9745583, + "maxlat": 40.8244933, + "maxlon": -73.9737314 + }, + "nodes": [ + 1556174012, + 5362484699, + 5362484696, + 5362484695, + 5362484709, + 5362484706, + 5362484705, + 5362484698 + ], + "geometry": [ + { "lat": 40.8244933, "lon": -73.9745583 }, + { "lat": 40.8244288, "lon": -73.9743742 }, + { "lat": 40.8243370, "lon": -73.9741243 }, + { "lat": 40.8242999, "lon": -73.9740161 }, + { "lat": 40.8242837, "lon": -73.9739102 }, + { "lat": 40.8242817, "lon": -73.9738377 }, + { "lat": 40.8242852, "lon": -73.9738011 }, + { "lat": 40.8243055, "lon": -73.9737314 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Grand Cove Way", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand Cove", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 555863382, + "bounds": { + "minlat": 40.8228644, + "minlon": -73.9780453, + "maxlat": 40.8233436, + "maxlon": -73.9775673 + }, + "nodes": [ + 5362545934, + 10131732691, + 103248923, + 10131732693, + 10131732692, + 10131732694, + 103248914 + ], + "geometry": [ + { "lat": 40.8233436, "lon": -73.9775673 }, + { "lat": 40.8233362, "lon": -73.9776192 }, + { "lat": 40.8233099, "lon": -73.9776648 }, + { "lat": 40.8229678, "lon": -73.9778846 }, + { "lat": 40.8228813, "lon": -73.9779632 }, + { "lat": 40.8228644, "lon": -73.9780022 }, + { "lat": 40.8228696, "lon": -73.9780453 } + ], + "tags": { + "highway": "residential", + "name": "Crown Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crown", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 555863384, + "bounds": { + "minlat": 40.8216451, + "minlon": -73.9768644, + "maxlat": 40.8219437, + "maxlon": -73.9767217 + }, + "nodes": [ + 5362545935, + 5362545946, + 5362545952, + 5362545929, + 5362545940, + 5362545955 + ], + "geometry": [ + { "lat": 40.8219437, "lon": -73.9768644 }, + { "lat": 40.8218902, "lon": -73.9768427 }, + { "lat": 40.8218259, "lon": -73.9768021 }, + { "lat": 40.8217430, "lon": -73.9767515 }, + { "lat": 40.8216760, "lon": -73.9767274 }, + { "lat": 40.8216451, "lon": -73.9767217 } + ], + "tags": { + "highway": "residential", + "name": "Crown Court", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crown", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 555863385, + "bounds": { + "minlat": 40.8224845, + "minlon": -73.9773993, + "maxlat": 40.8229370, + "maxlon": -73.9767829 + }, + "nodes": [ + 5362545936, + 5362545930, + 5362545949, + 5362545954 + ], + "geometry": [ + { "lat": 40.8224845, "lon": -73.9768945 }, + { "lat": 40.8227903, "lon": -73.9773993 }, + { "lat": 40.8229370, "lon": -73.9772549 }, + { "lat": 40.8226529, "lon": -73.9767829 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555863386, + "bounds": { + "minlat": 40.8220905, + "minlon": -73.9776541, + "maxlat": 40.8223834, + "maxlon": -73.9771717 + }, + "nodes": [ + 5362545944, + 5362545953 + ], + "geometry": [ + { "lat": 40.8223834, "lon": -73.9776541 }, + { "lat": 40.8220905, "lon": -73.9771717 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555863387, + "bounds": { + "minlat": 40.8219437, + "minlon": -73.9775673, + "maxlat": 40.8233436, + "maxlon": -73.9766863 + }, + "nodes": [ + 5362545935, + 5362545928, + 5362545931, + 5362545933, + 5362545953, + 5362545936, + 5362545954, + 5362545932, + 5362545956, + 5362545947, + 5362546370, + 10131732690, + 5362545951, + 5362545934 + ], + "geometry": [ + { "lat": 40.8219437, "lon": -73.9768644 }, + { "lat": 40.8219722, "lon": -73.9769600 }, + { "lat": 40.8220028, "lon": -73.9770452 }, + { "lat": 40.8220322, "lon": -73.9771029 }, + { "lat": 40.8220905, "lon": -73.9771717 }, + { "lat": 40.8224845, "lon": -73.9768945 }, + { "lat": 40.8226529, "lon": -73.9767829 }, + { "lat": 40.8227832, "lon": -73.9766965 }, + { "lat": 40.8228233, "lon": -73.9766863 }, + { "lat": 40.8228421, "lon": -73.9767019 }, + { "lat": 40.8230222, "lon": -73.9769940 }, + { "lat": 40.8233304, "lon": -73.9774939 }, + { "lat": 40.8233422, "lon": -73.9775264 }, + { "lat": 40.8233436, "lon": -73.9775673 } + ], + "tags": { + "highway": "residential", + "name": "Crown Court", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crown", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 555863433, + "bounds": { + "minlat": 40.8237007, + "minlon": -73.9785097, + "maxlat": 40.8240207, + "maxlon": -73.9781857 + }, + "nodes": [ + 5362546553, + 5362546556, + 5362546557, + 5362546551 + ], + "geometry": [ + { "lat": 40.8237007, "lon": -73.9785097 }, + { "lat": 40.8239757, "lon": -73.9783407 }, + { "lat": 40.8240026, "lon": -73.9782862 }, + { "lat": 40.8240207, "lon": -73.9781857 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555863434, + "bounds": { + "minlat": 40.8250422, + "minlon": -73.9776085, + "maxlat": 40.8252128, + "maxlon": -73.9770575 + }, + "nodes": [ + 5362546541, + 5362546544, + 5362546548, + 5362546545, + 5362546549, + 5362546543, + 5362546550, + 5362546552 + ], + "geometry": [ + { "lat": 40.8250422, "lon": -73.9770575 }, + { "lat": 40.8250812, "lon": -73.9771558 }, + { "lat": 40.8251316, "lon": -73.9772517 }, + { "lat": 40.8251884, "lon": -73.9773711 }, + { "lat": 40.8252128, "lon": -73.9774516 }, + { "lat": 40.8252128, "lon": -73.9775119 }, + { "lat": 40.8252097, "lon": -73.9775401 }, + { "lat": 40.8251001, "lon": -73.9776085 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 555863442, + "bounds": { + "minlat": 40.8230222, + "minlon": -73.9769940, + "maxlat": 40.8233479, + "maxlon": -73.9766518 + }, + "nodes": [ + 5362546370, + 5362546371 + ], + "geometry": [ + { "lat": 40.8230222, "lon": -73.9769940 }, + { "lat": 40.8233479, "lon": -73.9766518 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 556075523, + "bounds": { + "minlat": 40.7437863, + "minlon": -73.9742814, + "maxlat": 40.7441131, + "maxlon": -73.9735080 + }, + "nodes": [ + 42445390, + 5131026390, + 9971314371 + ], + "geometry": [ + { "lat": 40.7437863, "lon": -73.9735080 }, + { "lat": 40.7438456, "lon": -73.9736483 }, + { "lat": 40.7441131, "lon": -73.9742814 } + ], + "tags": { + "bus:lanes:backward": "yes|yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through|right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 556311124, + "bounds": { + "minlat": 40.7169068, + "minlon": -74.0107660, + "maxlat": 40.7214680, + "maxlon": -74.0098818 + }, + "nodes": [ + 42436060, + 8310246697, + 8304498440, + 42434871, + 8304498441, + 4574685156, + 8304498451, + 42436056, + 8304498452, + 11466637157, + 8304498460, + 42436055, + 8304498461, + 8304498469, + 5812723035, + 8304498470, + 11464657940, + 42436050, + 11464657943, + 11464657939, + 11464657971, + 8304497522, + 42430519, + 8304497523, + 5812723036 + ], + "geometry": [ + { "lat": 40.7214680, "lon": -74.0098818 }, + { "lat": 40.7213966, "lon": -74.0098949 }, + { "lat": 40.7208298, "lon": -74.0099969 }, + { "lat": 40.7207650, "lon": -74.0100080 }, + { "lat": 40.7206960, "lon": -74.0100195 }, + { "lat": 40.7205490, "lon": -74.0100451 }, + { "lat": 40.7201965, "lon": -74.0101054 }, + { "lat": 40.7201244, "lon": -74.0101194 }, + { "lat": 40.7200330, "lon": -74.0101355 }, + { "lat": 40.7197591, "lon": -74.0101835 }, + { "lat": 40.7195195, "lon": -74.0102257 }, + { "lat": 40.7194445, "lon": -74.0102398 }, + { "lat": 40.7193823, "lon": -74.0102503 }, + { "lat": 40.7188787, "lon": -74.0103385 }, + { "lat": 40.7188059, "lon": -74.0103517 }, + { "lat": 40.7187309, "lon": -74.0103664 }, + { "lat": 40.7182615, "lon": -74.0104493 }, + { "lat": 40.7181146, "lon": -74.0104803 }, + { "lat": 40.7180433, "lon": -74.0104959 }, + { "lat": 40.7179299, "lon": -74.0105203 }, + { "lat": 40.7179065, "lon": -74.0105258 }, + { "lat": 40.7175193, "lon": -74.0106177 }, + { "lat": 40.7174659, "lon": -74.0106308 }, + { "lat": 40.7174036, "lon": -74.0106462 }, + { "lat": 40.7169068, "lon": -74.0107660 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 556550146, + "bounds": { + "minlat": 40.7000620, + "minlon": -73.9541400, + "maxlat": 40.7000980, + "maxlon": -73.9538223 + }, + "nodes": [ + 1275778429, + 5368768976, + 5368768968 + ], + "geometry": [ + { "lat": 40.7000620, "lon": -73.9541400 }, + { "lat": 40.7000862, "lon": -73.9539128 }, + { "lat": 40.7000980, "lon": -73.9538223 } + ], + "tags": { + "highway": "residential", + "name": "Wallabout Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wallabout", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 556723150, + "bounds": { + "minlat": 40.8041209, + "minlon": -73.9233816, + "maxlat": 40.8042779, + "maxlon": -73.9228241 + }, + "nodes": [ + 5370086770, + 11427299910, + 5370086769, + 5370086768, + 5370086767 + ], + "geometry": [ + { "lat": 40.8041209, "lon": -73.9228241 }, + { "lat": 40.8041490, "lon": -73.9228965 }, + { "lat": 40.8041924, "lon": -73.9230086 }, + { "lat": 40.8041429, "lon": -73.9230431 }, + { "lat": 40.8042779, "lon": -73.9233816 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 556723152, + "bounds": { + "minlat": 40.8033174, + "minlon": -73.9223459, + "maxlat": 40.8036775, + "maxlon": -73.9220753 + }, + "nodes": [ + 5370086774, + 7553992432, + 12254673669, + 11427299949, + 12254673660, + 42760999 + ], + "geometry": [ + { "lat": 40.8033174, "lon": -73.9223459 }, + { "lat": 40.8035088, "lon": -73.9222037 }, + { "lat": 40.8036097, "lon": -73.9221269 }, + { "lat": 40.8036267, "lon": -73.9221139 }, + { "lat": 40.8036398, "lon": -73.9221039 }, + { "lat": 40.8036775, "lon": -73.9220753 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 556723155, + "bounds": { + "minlat": 40.8041965, + "minlon": -73.9261039, + "maxlat": 40.8048039, + "maxlon": -73.9246443 + }, + "nodes": [ + 5370086776, + 5370086775 + ], + "geometry": [ + { "lat": 40.8048039, "lon": -73.9261039 }, + { "lat": 40.8041965, "lon": -73.9246443 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 556723159, + "bounds": { + "minlat": 40.8019347, + "minlon": -73.9260357, + "maxlat": 40.8031119, + "maxlon": -73.9218910 + }, + "nodes": [ + 5370086786, + 7553992424, + 7553992425, + 7553992426, + 5370086783, + 5370086782, + 5370086781, + 5370086780 + ], + "geometry": [ + { "lat": 40.8031119, "lon": -73.9260357 }, + { "lat": 40.8030543, "lon": -73.9256893 }, + { "lat": 40.8029367, "lon": -73.9251791 }, + { "lat": 40.8028123, "lon": -73.9241702 }, + { "lat": 40.8027103, "lon": -73.9235835 }, + { "lat": 40.8025865, "lon": -73.9229947 }, + { "lat": 40.8022687, "lon": -73.9223550 }, + { "lat": 40.8019347, "lon": -73.9218910 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 556723179, + "bounds": { + "minlat": 40.8061942, + "minlon": -73.9287264, + "maxlat": 40.8065000, + "maxlon": -73.9279760 + }, + "nodes": [ + 42732838, + 11882279742, + 5370087327 + ], + "geometry": [ + { "lat": 40.8061942, "lon": -73.9279760 }, + { "lat": 40.8062580, "lon": -73.9281374 }, + { "lat": 40.8065000, "lon": -73.9287264 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 556723182, + "bounds": { + "minlat": 40.8030862, + "minlon": -73.9283205, + "maxlat": 40.8045993, + "maxlon": -73.9262358 + }, + "nodes": [ + 5370087346, + 5370087343, + 12537543979, + 12537543983, + 12537543982, + 12537543980, + 12537543981, + 7553992417, + 12537543978, + 12537543975, + 12537543977, + 12537543976, + 12537543974, + 12537543966, + 12537543968, + 12537543969, + 12537543967, + 12537543970, + 7553992418, + 12537543971, + 13521056948, + 12537543972, + 12537543973, + 12537543965 + ], + "geometry": [ + { "lat": 40.8032288, "lon": -73.9262358 }, + { "lat": 40.8030862, "lon": -73.9263480 }, + { "lat": 40.8033033, "lon": -73.9268348 }, + { "lat": 40.8033259, "lon": -73.9268832 }, + { "lat": 40.8033528, "lon": -73.9269363 }, + { "lat": 40.8033830, "lon": -73.9269886 }, + { "lat": 40.8034142, "lon": -73.9270386 }, + { "lat": 40.8034480, "lon": -73.9270857 }, + { "lat": 40.8034841, "lon": -73.9271260 }, + { "lat": 40.8035203, "lon": -73.9271597 }, + { "lat": 40.8035622, "lon": -73.9271944 }, + { "lat": 40.8036041, "lon": -73.9272273 }, + { "lat": 40.8036508, "lon": -73.9272594 }, + { "lat": 40.8039753, "lon": -73.9274590 }, + { "lat": 40.8040333, "lon": -73.9274998 }, + { "lat": 40.8040878, "lon": -73.9275438 }, + { "lat": 40.8041313, "lon": -73.9275844 }, + { "lat": 40.8041859, "lon": -73.9276463 }, + { "lat": 40.8042359, "lon": -73.9277106 }, + { "lat": 40.8042758, "lon": -73.9277734 }, + { "lat": 40.8043433, "lon": -73.9278903 }, + { "lat": 40.8044667, "lon": -73.9281040 }, + { "lat": 40.8045344, "lon": -73.9282175 }, + { "lat": 40.8045993, "lon": -73.9283205 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "5 mph", + "name": "Lincoln Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 557041245, + "bounds": { + "minlat": 40.7006389, + "minlon": -73.9871869, + "maxlat": 40.7006559, + "maxlon": -73.9867783 + }, + "nodes": [ + 42471291, + 13040284214, + 10722387755, + 4555926569 + ], + "geometry": [ + { "lat": 40.7006559, "lon": -73.9871869 }, + { "lat": 40.7006431, "lon": -73.9868827 }, + { "lat": 40.7006409, "lon": -73.9868306 }, + { "lat": 40.7006389, "lon": -73.9867783 } + ], + "tags": { + "covered": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201", + "turn:lanes": "left;through;right|right" + } +}, +{ + "type": "way", + "id": 557138784, + "bounds": { + "minlat": 40.7632177, + "minlon": -73.9647028, + "maxlat": 40.7633859, + "maxlon": -73.9645819 + }, + "nodes": [ + 5373593520, + 11296172494, + 5373594221 + ], + "geometry": [ + { "lat": 40.7633859, "lon": -73.9645819 }, + { "lat": 40.7632725, "lon": -73.9646634 }, + { "lat": 40.7632177, "lon": -73.9647028 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 557139276, + "bounds": { + "minlat": 40.7668557, + "minlon": -73.9616840, + "maxlat": 40.7669319, + "maxlon": -73.9616371 + }, + "nodes": [ + 5373598784, + 10166238431, + 5373598785 + ], + "geometry": [ + { "lat": 40.7669319, "lon": -73.9616371 }, + { "lat": 40.7669210, "lon": -73.9616438 }, + { "lat": 40.7668557, "lon": -73.9616840 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 557142127, + "bounds": { + "minlat": 40.7674212, + "minlon": -73.9613155, + "maxlat": 40.7674951, + "maxlon": -73.9612621 + }, + "nodes": [ + 5373626267, + 10863881160, + 3116856947 + ], + "geometry": [ + { "lat": 40.7674212, "lon": -73.9613155 }, + { "lat": 40.7674415, "lon": -73.9613009 }, + { "lat": 40.7674951, "lon": -73.9612621 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 557181011, + "bounds": { + "minlat": 40.7421228, + "minlon": -73.9588337, + "maxlat": 40.7421724, + "maxlon": -73.9585910 + }, + "nodes": [ + 5374002082, + 9982771564, + 11196902806, + 42901546 + ], + "geometry": [ + { "lat": 40.7421724, "lon": -73.9588337 }, + { "lat": 40.7421609, "lon": -73.9587769 }, + { "lat": 40.7421487, "lon": -73.9587172 }, + { "lat": 40.7421228, "lon": -73.9585910 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "3", + "name": "Borden Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 557391521, + "bounds": { + "minlat": 40.7644987, + "minlon": -73.9602142, + "maxlat": 40.7645804, + "maxlon": -73.9601629 + }, + "nodes": [ + 5375679279, + 11296226517, + 5375679280 + ], + "geometry": [ + { "lat": 40.7645804, "lon": -73.9601629 }, + { "lat": 40.7645181, "lon": -73.9602020 }, + { "lat": 40.7644987, "lon": -73.9602142 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 557408104, + "bounds": { + "minlat": 40.7759054, + "minlon": -73.9590141, + "maxlat": 40.7759889, + "maxlon": -73.9589527 + }, + "nodes": [ + 5375821999, + 10156669049, + 5375822000 + ], + "geometry": [ + { "lat": 40.7759054, "lon": -73.9590141 }, + { "lat": 40.7759585, "lon": -73.9589751 }, + { "lat": 40.7759889, "lon": -73.9589527 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 557449071, + "bounds": { + "minlat": 40.7787562, + "minlon": -73.9500894, + "maxlat": 40.7788555, + "maxlon": -73.9500343 + }, + "nodes": [ + 5376251279, + 7834030822, + 5376251280 + ], + "geometry": [ + { "lat": 40.7788555, "lon": -73.9500343 }, + { "lat": 40.7788042, "lon": -73.9500628 }, + { "lat": 40.7787562, "lon": -73.9500894 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 557625471, + "bounds": { + "minlat": 40.7142839, + "minlon": -73.9778226, + "maxlat": 40.7144947, + "maxlon": -73.9771371 + }, + "nodes": [ + 5377706604, + 5377706603 + ], + "geometry": [ + { "lat": 40.7144947, "lon": -73.9778226 }, + { "lat": 40.7142839, "lon": -73.9771371 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 557625472, + "bounds": { + "minlat": 40.7144682, + "minlon": -73.9777345, + "maxlat": 40.7146830, + "maxlon": -73.9770426 + }, + "nodes": [ + 5377706611, + 5377706605 + ], + "geometry": [ + { "lat": 40.7146830, "lon": -73.9777345 }, + { "lat": 40.7144682, "lon": -73.9770426 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 557625474, + "bounds": { + "minlat": 40.7145681, + "minlon": -73.9785433, + "maxlat": 40.7147955, + "maxlon": -73.9777883 + }, + "nodes": [ + 5377706607, + 5377706606 + ], + "geometry": [ + { "lat": 40.7145681, "lon": -73.9777883 }, + { "lat": 40.7147955, "lon": -73.9785433 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 557708228, + "bounds": { + "minlat": 40.8175764, + "minlon": -73.9449097, + "maxlat": 40.8187414, + "maxlon": -73.9421530 + }, + "nodes": [ + 5378413082, + 10171324756, + 5378413083, + 6823179308, + 6823179296, + 5378413085, + 9150629550, + 5378413084 + ], + "geometry": [ + { "lat": 40.8187414, "lon": -73.9449097 }, + { "lat": 40.8186922, "lon": -73.9447971 }, + { "lat": 40.8186604, "lon": -73.9447278 }, + { "lat": 40.8183673, "lon": -73.9440433 }, + { "lat": 40.8179686, "lon": -73.9430838 }, + { "lat": 40.8176484, "lon": -73.9423197 }, + { "lat": 40.8176228, "lon": -73.9422588 }, + { "lat": 40.8175764, "lon": -73.9421530 } + ], + "tags": { + "access": "private", + "highway": "service", + "noname": "yes", + "service": "alley" + } +}, +{ + "type": "way", + "id": 557708701, + "bounds": { + "minlat": 40.8169410, + "minlon": -73.9448627, + "maxlat": 40.8178935, + "maxlon": -73.9426143 + }, + "nodes": [ + 5378419178, + 9150629548, + 5378419179, + 6823179304, + 6823179312, + 5378419180 + ], + "geometry": [ + { "lat": 40.8169410, "lon": -73.9426143 }, + { "lat": 40.8169886, "lon": -73.9427282 }, + { "lat": 40.8170074, "lon": -73.9427730 }, + { "lat": 40.8173386, "lon": -73.9435540 }, + { "lat": 40.8177401, "lon": -73.9445008 }, + { "lat": 40.8178935, "lon": -73.9448627 } + ], + "tags": { + "access": "private", + "highway": "service", + "noname": "yes", + "service": "alley" + } +}, +{ + "type": "way", + "id": 557708702, + "bounds": { + "minlat": 40.8176132, + "minlon": -73.9451574, + "maxlat": 40.8178766, + "maxlon": -73.9449541 + }, + "nodes": [ + 5378419181, + 10743755872, + 5378419183, + 5378419182 + ], + "geometry": [ + { "lat": 40.8176132, "lon": -73.9451574 }, + { "lat": 40.8176744, "lon": -73.9451101 }, + { "lat": 40.8176851, "lon": -73.9451019 }, + { "lat": 40.8178766, "lon": -73.9449541 } + ], + "tags": { + "access": "private", + "highway": "service", + "noname": "yes", + "service": "alley" + } +}, +{ + "type": "way", + "id": 557708946, + "bounds": { + "minlat": 40.8181884, + "minlon": -73.9444614, + "maxlat": 40.8193571, + "maxlon": -73.9417028 + }, + "nodes": [ + 5378420476, + 10743755868, + 5378420477, + 6823179297, + 5378420479, + 9150629552, + 5378420478 + ], + "geometry": [ + { "lat": 40.8193571, "lon": -73.9444614 }, + { "lat": 40.8193089, "lon": -73.9443428 }, + { "lat": 40.8192891, "lon": -73.9442962 }, + { "lat": 40.8185854, "lon": -73.9426345 }, + { "lat": 40.8182577, "lon": -73.9418607 }, + { "lat": 40.8182366, "lon": -73.9418108 }, + { "lat": 40.8181884, "lon": -73.9417028 } + ], + "tags": { + "access": "private", + "highway": "service", + "noname": "yes", + "service": "alley" + } +}, +{ + "type": "way", + "id": 557733482, + "bounds": { + "minlat": 40.8174098, + "minlon": -73.9394359, + "maxlat": 40.8176039, + "maxlon": -73.9393087 + }, + "nodes": [ + 5378686567, + 9557104502, + 5378686570, + 5378686568 + ], + "geometry": [ + { "lat": 40.8176039, "lon": -73.9393087 }, + { "lat": 40.8175508, "lon": -73.9393435 }, + { "lat": 40.8175069, "lon": -73.9393723 }, + { "lat": 40.8174098, "lon": -73.9394359 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 557733484, + "bounds": { + "minlat": 40.8174098, + "minlon": -73.9396437, + "maxlat": 40.8174955, + "maxlon": -73.9394359 + }, + "nodes": [ + 5378686568, + 5378686569 + ], + "geometry": [ + { "lat": 40.8174098, "lon": -73.9394359 }, + { "lat": 40.8174955, "lon": -73.9396437 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 557733485, + "bounds": { + "minlat": 40.8147982, + "minlon": -73.9361896, + "maxlat": 40.8153391, + "maxlon": -73.9357666 + }, + "nodes": [ + 42456831, + 9557110373, + 9902223887, + 5378686575, + 9557110440, + 5378686573, + 5378686574 + ], + "geometry": [ + { "lat": 40.8153391, "lon": -73.9357666 }, + { "lat": 40.8152691, "lon": -73.9358565 }, + { "lat": 40.8152467, "lon": -73.9358821 }, + { "lat": 40.8149917, "lon": -73.9360572 }, + { "lat": 40.8148919, "lon": -73.9361293 }, + { "lat": 40.8148530, "lon": -73.9361574 }, + { "lat": 40.8147982, "lon": -73.9361896 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 557733488, + "bounds": { + "minlat": 40.8127563, + "minlon": -73.9376408, + "maxlat": 40.8140424, + "maxlon": -73.9366920 + }, + "nodes": [ + 42445585, + 9559433250, + 9559408284, + 42427834, + 9559408285, + 8236461971, + 7541804761 + ], + "geometry": [ + { "lat": 40.8140424, "lon": -73.9366920 }, + { "lat": 40.8140014, "lon": -73.9367221 }, + { "lat": 40.8134785, "lon": -73.9371043 }, + { "lat": 40.8134253, "lon": -73.9371434 }, + { "lat": 40.8133747, "lon": -73.9371818 }, + { "lat": 40.8128461, "lon": -73.9375687 }, + { "lat": 40.8127563, "lon": -73.9376408 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "parking:lane:width": "13'", + "sidewalk:both": "separate", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 557773321, + "bounds": { + "minlat": 40.7109611, + "minlon": -73.9519935, + "maxlat": 40.7110790, + "maxlon": -73.9517034 + }, + "nodes": [ + 5379075755, + 8842929764, + 5379075735, + 5379075739, + 5379075751, + 5379075754, + 5379075757, + 5379075756, + 5379075753, + 5379075741, + 5379075755 + ], + "geometry": [ + { "lat": 40.7110790, "lon": -73.9519881 }, + { "lat": 40.7109894, "lon": -73.9517297 }, + { "lat": 40.7109803, "lon": -73.9517034 }, + { "lat": 40.7109611, "lon": -73.9519130 }, + { "lat": 40.7109672, "lon": -73.9519385 }, + { "lat": 40.7109825, "lon": -73.9519640 }, + { "lat": 40.7109997, "lon": -73.9519801 }, + { "lat": 40.7110191, "lon": -73.9519908 }, + { "lat": 40.7110384, "lon": -73.9519921 }, + { "lat": 40.7110577, "lon": -73.9519935 }, + { "lat": 40.7110790, "lon": -73.9519881 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 558008153, + "bounds": { + "minlat": 40.7345291, + "minlon": -73.9922554, + "maxlat": 40.7352039, + "maxlon": -73.9917243 + }, + "nodes": [ + 42438784, + 12072440263, + 3670742462, + 10942520114, + 6872608878, + 6872608877, + 8310246293, + 12072440265, + 42436935 + ], + "geometry": [ + { "lat": 40.7352039, "lon": -73.9917243 }, + { "lat": 40.7351709, "lon": -73.9917550 }, + { "lat": 40.7351166, "lon": -73.9918055 }, + { "lat": 40.7350761, "lon": -73.9918570 }, + { "lat": 40.7349377, "lon": -73.9919771 }, + { "lat": 40.7348138, "lon": -73.9919772 }, + { "lat": 40.7345708, "lon": -73.9921850 }, + { "lat": 40.7345610, "lon": -73.9922015 }, + { "lat": 40.7345291, "lon": -73.9922554 } + ], + "tags": { + "bicycle": "designated", + "foot": "designated", + "highway": "living_street", + "lit": "yes", + "maxspeed:advisory": "5 mph", + "name": "University Place", + "name:etymology:wikidata": "Q49210", + "name:ru": "Юниверсити-Плейс", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete", + "traffic_calming": "chicane", + "wikidata": "Q7894878", + "wikipedia": "en:University Place (Manhattan)" + } +}, +{ + "type": "way", + "id": 558853528, + "bounds": { + "minlat": 40.8461560, + "minlon": -73.9145790, + "maxlat": 40.8464494, + "maxlon": -73.9143916 + }, + "nodes": [ + 42745920, + 8285583690, + 42745925 + ], + "geometry": [ + { "lat": 40.8461560, "lon": -73.9145790 }, + { "lat": 40.8463596, "lon": -73.9144485 }, + { "lat": 40.8464494, "lon": -73.9143916 } + ], + "tags": { + "highway": "residential", + "name": "Davidson Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Davidson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 558853529, + "bounds": { + "minlat": 40.8464494, + "minlon": -73.9143916, + "maxlat": 40.8484330, + "maxlon": -73.9129780 + }, + "nodes": [ + 42745925, + 42745934, + 42744747 + ], + "geometry": [ + { "lat": 40.8464494, "lon": -73.9143916 }, + { "lat": 40.8470780, "lon": -73.9139470 }, + { "lat": 40.8484330, "lon": -73.9129780 } + ], + "tags": { + "highway": "residential", + "name": "Davidson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Davidson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 559775302, + "bounds": { + "minlat": 40.8057906, + "minlon": -73.9417696, + "maxlat": 40.8070890, + "maxlon": -73.9386884 + }, + "nodes": [ + 589928042, + 10169411287, + 5481922053, + 10170762182, + 42434122, + 10170762185, + 10171956568, + 42434117 + ], + "geometry": [ + { "lat": 40.8057906, "lon": -73.9386884 }, + { "lat": 40.8058153, "lon": -73.9387472 }, + { "lat": 40.8058614, "lon": -73.9388566 }, + { "lat": 40.8063726, "lon": -73.9400792 }, + { "lat": 40.8064085, "lon": -73.9401645 }, + { "lat": 40.8064498, "lon": -73.9402620 }, + { "lat": 40.8070539, "lon": -73.9416836 }, + { "lat": 40.8070890, "lon": -73.9417696 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "name": "East 126th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 559892468, + "bounds": { + "minlat": 40.7825216, + "minlon": -73.9490017, + "maxlat": 40.7831088, + "maxlon": -73.9485796 + }, + "nodes": [ + 5399637661, + 6185200488, + 5399643898, + 6181478375 + ], + "geometry": [ + { "lat": 40.7825216, "lon": -73.9490017 }, + { "lat": 40.7825858, "lon": -73.9489555 }, + { "lat": 40.7828442, "lon": -73.9487698 }, + { "lat": 40.7831088, "lon": -73.9485796 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 559892802, + "bounds": { + "minlat": 40.7828442, + "minlon": -73.9489330, + "maxlat": 40.7829104, + "maxlon": -73.9487698 + }, + "nodes": [ + 5399643898, + 5399643899 + ], + "geometry": [ + { "lat": 40.7828442, "lon": -73.9487698 }, + { "lat": 40.7829104, "lon": -73.9489330 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 560098703, + "bounds": { + "minlat": 40.7834166, + "minlon": -73.9493967, + "maxlat": 40.7834948, + "maxlon": -73.9493441 + }, + "nodes": [ + 5401363738, + 6181480029, + 5401363739 + ], + "geometry": [ + { "lat": 40.7834166, "lon": -73.9493967 }, + { "lat": 40.7834467, "lon": -73.9493764 }, + { "lat": 40.7834948, "lon": -73.9493441 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 560098803, + "bounds": { + "minlat": 40.7833348, + "minlon": -73.9489644, + "maxlat": 40.7834081, + "maxlon": -73.9489138 + }, + "nodes": [ + 5401365122, + 6181480015, + 5401365123 + ], + "geometry": [ + { "lat": 40.7833348, "lon": -73.9489644 }, + { "lat": 40.7833944, "lon": -73.9489233 }, + { "lat": 40.7834081, "lon": -73.9489138 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 560098949, + "bounds": { + "minlat": 40.7739729, + "minlon": -73.9524629, + "maxlat": 40.7741519, + "maxlon": -73.9523416 + }, + "nodes": [ + 5401365957, + 7834024291, + 5401365958 + ], + "geometry": [ + { "lat": 40.7739729, "lon": -73.9524629 }, + { "lat": 40.7740268, "lon": -73.9524261 }, + { "lat": 40.7741519, "lon": -73.9523416 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 560148805, + "bounds": { + "minlat": 40.8169756, + "minlon": -73.9455815, + "maxlat": 40.8172841, + "maxlon": -73.9453667 + }, + "nodes": [ + 5401929686, + 10170605790, + 5401929688, + 5401929687 + ], + "geometry": [ + { "lat": 40.8169756, "lon": -73.9455815 }, + { "lat": 40.8170372, "lon": -73.9455386 }, + { "lat": 40.8170616, "lon": -73.9455216 }, + { "lat": 40.8172841, "lon": -73.9453667 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 560344314, + "bounds": { + "minlat": 40.8071315, + "minlon": -73.9530446, + "maxlat": 40.8100741, + "maxlon": -73.9460569 + }, + "nodes": [ + 42432928, + 10171069691, + 5481863722, + 11298919648, + 42435803, + 11298919645, + 8758287370, + 42439860, + 2141026511, + 8758345332, + 10170875058, + 3099326118 + ], + "geometry": [ + { "lat": 40.8100741, "lon": -73.9530446 }, + { "lat": 40.8100154, "lon": -73.9529028 }, + { "lat": 40.8096546, "lon": -73.9520405 }, + { "lat": 40.8095516, "lon": -73.9517972 }, + { "lat": 40.8094996, "lon": -73.9516742 }, + { "lat": 40.8094441, "lon": -73.9515425 }, + { "lat": 40.8083770, "lon": -73.9490142 }, + { "lat": 40.8083293, "lon": -73.9488993 }, + { "lat": 40.8082629, "lon": -73.9487406 }, + { "lat": 40.8082144, "lon": -73.9486233 }, + { "lat": 40.8071750, "lon": -73.9461599 }, + { "lat": 40.8071315, "lon": -73.9460569 } + ], + "tags": { + "highway": "residential", + "name": "West 124th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 560349614, + "bounds": { + "minlat": 40.8424468, + "minlon": -73.9392536, + "maxlat": 40.8475407, + "maxlon": -73.9380397 + }, + "nodes": [ + 42428984, + 9566927254, + 7604384247, + 42428985, + 7604384245, + 6860638330, + 7604384259, + 42428989, + 7604384257, + 2499802957, + 7604384273, + 42428994, + 7604384271, + 7694273190, + 7694273195, + 7604384290, + 42428998, + 7604384288, + 7604384303, + 42429002, + 7604384301, + 7604384315, + 42429006, + 7604384313, + 13320061245 + ], + "geometry": [ + { "lat": 40.8424468, "lon": -73.9392536 }, + { "lat": 40.8425217, "lon": -73.9392463 }, + { "lat": 40.8431498, "lon": -73.9391843 }, + { "lat": 40.8432230, "lon": -73.9391770 }, + { "lat": 40.8432996, "lon": -73.9391608 }, + { "lat": 40.8435957, "lon": -73.9390982 }, + { "lat": 40.8438776, "lon": -73.9390386 }, + { "lat": 40.8439420, "lon": -73.9390250 }, + { "lat": 40.8440159, "lon": -73.9390079 }, + { "lat": 40.8443524, "lon": -73.9389303 }, + { "lat": 40.8446152, "lon": -73.9388795 }, + { "lat": 40.8446886, "lon": -73.9388653 }, + { "lat": 40.8447697, "lon": -73.9388448 }, + { "lat": 40.8451115, "lon": -73.9387583 }, + { "lat": 40.8452510, "lon": -73.9387231 }, + { "lat": 40.8453705, "lon": -73.9386928 }, + { "lat": 40.8454318, "lon": -73.9386774 }, + { "lat": 40.8455126, "lon": -73.9386534 }, + { "lat": 40.8461540, "lon": -73.9384626 }, + { "lat": 40.8462182, "lon": -73.9384437 }, + { "lat": 40.8462821, "lon": -73.9384245 }, + { "lat": 40.8468791, "lon": -73.9382477 }, + { "lat": 40.8469437, "lon": -73.9382280 }, + { "lat": 40.8470126, "lon": -73.9382085 }, + { "lat": 40.8475407, "lon": -73.9380397 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 560350513, + "bounds": { + "minlat": 40.8571682, + "minlon": -73.9274354, + "maxlat": 40.8582036, + "maxlon": -73.9260932 + }, + "nodes": [ + 5403858702, + 8369968540, + 42451888, + 42451891, + 42451896, + 42451899, + 42451900, + 42451906, + 42451909, + 42451912, + 42451916, + 42451920, + 42451925, + 1253602805, + 42451932 + ], + "geometry": [ + { "lat": 40.8582036, "lon": -73.9260932 }, + { "lat": 40.8581866, "lon": -73.9261585 }, + { "lat": 40.8581759, "lon": -73.9261885 }, + { "lat": 40.8581557, "lon": -73.9262465 }, + { "lat": 40.8580960, "lon": -73.9263570 }, + { "lat": 40.8580250, "lon": -73.9264712 }, + { "lat": 40.8579495, "lon": -73.9265602 }, + { "lat": 40.8578761, "lon": -73.9266257 }, + { "lat": 40.8577931, "lon": -73.9266696 }, + { "lat": 40.8577199, "lon": -73.9267179 }, + { "lat": 40.8576572, "lon": -73.9267673 }, + { "lat": 40.8575740, "lon": -73.9268520 }, + { "lat": 40.8574819, "lon": -73.9269325 }, + { "lat": 40.8572494, "lon": -73.9272724 }, + { "lat": 40.8571682, "lon": -73.9274354 } + ], + "tags": { + "cycleway:both": "track", + "cycleway:both:traffic_mode:left": "parking", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Fort George Avenue", + "name:etymology:wikidata": "Q1438535", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort George", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 560353397, + "bounds": { + "minlat": 40.7701677, + "minlon": -73.9175516, + "maxlat": 40.7703207, + "maxlon": -73.9172894 + }, + "nodes": [ + 5403881050, + 9179198069, + 4215833539 + ], + "geometry": [ + { "lat": 40.7703207, "lon": -73.9175516 }, + { "lat": 40.7702457, "lon": -73.9174234 }, + { "lat": 40.7701677, "lon": -73.9172894 } + ], + "tags": { + "busway:right": "lane", + "hgv": "designated", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "Hoyt Avenue South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 560353398, + "bounds": { + "minlat": 40.7699189, + "minlon": -73.9172894, + "maxlat": 40.7701677, + "maxlon": -73.9167363 + }, + "nodes": [ + 4215833539, + 2447553698, + 8765434967, + 6406731463, + 42898289 + ], + "geometry": [ + { "lat": 40.7701677, "lon": -73.9172894 }, + { "lat": 40.7701328, "lon": -73.9172260 }, + { "lat": 40.7699968, "lon": -73.9169286 }, + { "lat": 40.7699782, "lon": -73.9168853 }, + { "lat": 40.7699189, "lon": -73.9167363 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Hoyt Avenue South", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 560788342, + "bounds": { + "minlat": 40.7140532, + "minlon": -73.9902180, + "maxlat": 40.7141849, + "maxlon": -73.9886961 + }, + "nodes": [ + 7480301986, + 8231942803, + 42433549, + 8231942813, + 42433550 + ], + "geometry": [ + { "lat": 40.7140532, "lon": -73.9902180 }, + { "lat": 40.7140656, "lon": -73.9900751 }, + { "lat": 40.7141312, "lon": -73.9893164 }, + { "lat": 40.7141770, "lon": -73.9887868 }, + { "lat": 40.7141849, "lon": -73.9886961 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 560788343, + "bounds": { + "minlat": 40.7140532, + "minlon": -73.9902277, + "maxlat": 40.7144207, + "maxlon": -73.9902180 + }, + "nodes": [ + 7480301986, + 8307641611, + 4540239967, + 5863707104, + 8307641610, + 42440785 + ], + "geometry": [ + { "lat": 40.7140532, "lon": -73.9902180 }, + { "lat": 40.7141448, "lon": -73.9902192 }, + { "lat": 40.7141881, "lon": -73.9902198 }, + { "lat": 40.7142667, "lon": -73.9902209 }, + { "lat": 40.7143300, "lon": -73.9902227 }, + { "lat": 40.7144207, "lon": -73.9902277 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Rutgers Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "러트거스 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 561816395, + "bounds": { + "minlat": 40.7724555, + "minlon": -73.9680407, + "maxlat": 40.7728156, + "maxlon": -73.9670325 + }, + "nodes": [ + 42436475, + 3278932288, + 9178915120, + 9906887495, + 1472637761, + 9178915121, + 9178915122, + 9178915123, + 6091080883, + 6091080882 + ], + "geometry": [ + { "lat": 40.7724555, "lon": -73.9670325 }, + { "lat": 40.7725091, "lon": -73.9671566 }, + { "lat": 40.7726474, "lon": -73.9674746 }, + { "lat": 40.7726739, "lon": -73.9675371 }, + { "lat": 40.7726959, "lon": -73.9675963 }, + { "lat": 40.7727222, "lon": -73.9676732 }, + { "lat": 40.7727478, "lon": -73.9677564 }, + { "lat": 40.7727701, "lon": -73.9678405 }, + { "lat": 40.7727919, "lon": -73.9679293 }, + { "lat": 40.7728156, "lon": -73.9680407 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "cycleway": "track", + "hgv": "no", + "highway": "service", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "no", + "surface": "asphalt", + "width": "15" + } +}, +{ + "type": "way", + "id": 561832676, + "bounds": { + "minlat": 40.7370478, + "minlon": -73.9960876, + "maxlat": 40.7371642, + "maxlon": -73.9960077 + }, + "nodes": [ + 5416901181, + 8310246312, + 5416901182 + ], + "geometry": [ + { "lat": 40.7371642, "lon": -73.9960077 }, + { "lat": 40.7371446, "lon": -73.9960190 }, + { "lat": 40.7370478, "lon": -73.9960876 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 561833279, + "bounds": { + "minlat": 40.7376370, + "minlon": -73.9956384, + "maxlat": 40.7377245, + "maxlon": -73.9955735 + }, + "nodes": [ + 5416905054, + 8310246311, + 5416905055 + ], + "geometry": [ + { "lat": 40.7377245, "lon": -73.9955735 }, + { "lat": 40.7376733, "lon": -73.9956115 }, + { "lat": 40.7376370, "lon": -73.9956384 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 562503065, + "bounds": { + "minlat": 40.8019473, + "minlon": -73.9632889, + "maxlat": 40.8020223, + "maxlon": -73.9632445 + }, + "nodes": [ + 5422624268, + 10171363578, + 5422624269 + ], + "geometry": [ + { "lat": 40.8020223, "lon": -73.9632445 }, + { "lat": 40.8020109, "lon": -73.9632512 }, + { "lat": 40.8019473, "lon": -73.9632889 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 563391425, + "bounds": { + "minlat": 40.8422988, + "minlon": -73.9388231, + "maxlat": 40.8425704, + "maxlon": -73.9386276 + }, + "nodes": [ + 9908577545, + 2499757466 + ], + "geometry": [ + { "lat": 40.8422988, "lon": -73.9388231 }, + { "lat": 40.8425704, "lon": -73.9386276 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 563406351, + "bounds": { + "minlat": 40.7071595, + "minlon": -73.9181085, + "maxlat": 40.7078802, + "maxlon": -73.9173661 + }, + "nodes": [ + 5429417627, + 5429415116, + 5429415099 + ], + "geometry": [ + { "lat": 40.7078802, "lon": -73.9173661 }, + { "lat": 40.7072088, "lon": -73.9180578 }, + { "lat": 40.7071595, "lon": -73.9181085 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "asphalt", + "width": "19'0\"" + } +}, +{ + "type": "way", + "id": 563406353, + "bounds": { + "minlat": 40.7059524, + "minlon": -73.9181952, + "maxlat": 40.7066729, + "maxlon": -73.9174190 + }, + "nodes": [ + 4635981032, + 5429415103, + 5429415101 + ], + "geometry": [ + { "lat": 40.7066729, "lon": -73.9174190 }, + { "lat": 40.7066554, "lon": -73.9174788 }, + { "lat": 40.7059524, "lon": -73.9181952 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "asphalt", + "width": "16'0\"" + } +}, +{ + "type": "way", + "id": 563406360, + "bounds": { + "minlat": 40.7056312, + "minlon": -73.9173350, + "maxlat": 40.7062944, + "maxlon": -73.9166475 + }, + "nodes": [ + 5429415119, + 9592286284, + 5429417624 + ], + "geometry": [ + { "lat": 40.7056312, "lon": -73.9173350 }, + { "lat": 40.7062442, "lon": -73.9166995 }, + { "lat": 40.7062944, "lon": -73.9166475 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 563406362, + "bounds": { + "minlat": 40.7063808, + "minlon": -73.9188634, + "maxlat": 40.7071452, + "maxlon": -73.9180841 + }, + "nodes": [ + 5429417626, + 5429415106, + 5429415100 + ], + "geometry": [ + { "lat": 40.7063808, "lon": -73.9188634 }, + { "lat": 40.7070955, "lon": -73.9181348 }, + { "lat": 40.7071452, "lon": -73.9180841 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 563406363, + "bounds": { + "minlat": 40.7067203, + "minlon": -73.9173715, + "maxlat": 40.7074559, + "maxlon": -73.9166326 + }, + "nodes": [ + 5429415120, + 9592286285, + 5429415112 + ], + "geometry": [ + { "lat": 40.7074559, "lon": -73.9166326 }, + { "lat": 40.7067723, "lon": -73.9173193 }, + { "lat": 40.7067203, "lon": -73.9173715 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "asphalt", + "width": "16'0\"" + } +}, +{ + "type": "way", + "id": 563406365, + "bounds": { + "minlat": 40.7059209, + "minlon": -73.9181492, + "maxlat": 40.7067203, + "maxlon": -73.9173715 + }, + "nodes": [ + 5429415115, + 5429417629, + 4635981032, + 5429415112 + ], + "geometry": [ + { "lat": 40.7059209, "lon": -73.9181492 }, + { "lat": 40.7066214, "lon": -73.9174244 }, + { "lat": 40.7066729, "lon": -73.9174190 }, + { "lat": 40.7067203, "lon": -73.9173715 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "asphalt", + "width": "16'0\"" + } +}, +{ + "type": "way", + "id": 563406374, + "bounds": { + "minlat": 40.7075942, + "minlon": -73.9188435, + "maxlat": 40.7083403, + "maxlon": -73.9181078 + }, + "nodes": [ + 5429415098, + 5429415107, + 5429415108 + ], + "geometry": [ + { "lat": 40.7083403, "lon": -73.9181078 }, + { "lat": 40.7076458, "lon": -73.9187926 }, + { "lat": 40.7075942, "lon": -73.9188435 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "asphalt", + "width": "19'0\"" + } +}, +{ + "type": "way", + "id": 563406377, + "bounds": { + "minlat": 40.7080224, + "minlon": -73.9195669, + "maxlat": 40.7087611, + "maxlon": -73.9188132 + }, + "nodes": [ + 5429417631, + 9755788660, + 5429415102 + ], + "geometry": [ + { "lat": 40.7087611, "lon": -73.9188132 }, + { "lat": 40.7080756, "lon": -73.9195126 }, + { "lat": 40.7080224, "lon": -73.9195669 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 564385621, + "bounds": { + "minlat": 40.8486260, + "minlon": -73.9342390, + "maxlat": 40.8493210, + "maxlon": -73.9337310 + }, + "nodes": [ + 42428086, + 5403873767, + 5403858700, + 5403873763, + 42433066 + ], + "geometry": [ + { "lat": 40.8486260, "lon": -73.9342390 }, + { "lat": 40.8486837, "lon": -73.9341970 }, + { "lat": 40.8490963, "lon": -73.9338953 }, + { "lat": 40.8492476, "lon": -73.9337847 }, + { "lat": 40.8493210, "lon": -73.9337310 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 564449185, + "bounds": { + "minlat": 40.8355401, + "minlon": -73.9475754, + "maxlat": 40.8355643, + "maxlon": -73.9475188 + }, + "nodes": [ + 5438376518, + 5438376520 + ], + "geometry": [ + { "lat": 40.8355643, "lon": -73.9475754 }, + { "lat": 40.8355401, "lon": -73.9475188 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 564449186, + "bounds": { + "minlat": 40.8353759, + "minlon": -73.9475188, + "maxlat": 40.8355401, + "maxlon": -73.9471350 + }, + "nodes": [ + 5438376520, + 5438376519 + ], + "geometry": [ + { "lat": 40.8355401, "lon": -73.9475188 }, + { "lat": 40.8353759, "lon": -73.9471350 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 565284883, + "bounds": { + "minlat": 40.8298912, + "minlon": -73.9382535, + "maxlat": 40.8303221, + "maxlon": -73.9379374 + }, + "nodes": [ + 5444713210, + 5444713211 + ], + "geometry": [ + { "lat": 40.8298912, "lon": -73.9382535 }, + { "lat": 40.8303221, "lon": -73.9379374 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565284884, + "bounds": { + "minlat": 40.8298912, + "minlon": -73.9392178, + "maxlat": 40.8303424, + "maxlon": -73.9382535 + }, + "nodes": [ + 5444713210, + 5444713209, + 5444713220, + 5444713218, + 5444713217, + 13535333098, + 13535333100, + 5444713214, + 13535333099, + 5444713212 + ], + "geometry": [ + { "lat": 40.8298912, "lon": -73.9382535 }, + { "lat": 40.8299419, "lon": -73.9383747 }, + { "lat": 40.8299687, "lon": -73.9384387 }, + { "lat": 40.8300580, "lon": -73.9386520 }, + { "lat": 40.8301341, "lon": -73.9388338 }, + { "lat": 40.8301578, "lon": -73.9388889 }, + { "lat": 40.8301933, "lon": -73.9389644 }, + { "lat": 40.8302308, "lon": -73.9390294 }, + { "lat": 40.8302808, "lon": -73.9391126 }, + { "lat": 40.8303424, "lon": -73.9392178 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565284885, + "bounds": { + "minlat": 40.8303424, + "minlon": -73.9392178, + "maxlat": 40.8307104, + "maxlon": -73.9389499 + }, + "nodes": [ + 5444713212, + 5444713213 + ], + "geometry": [ + { "lat": 40.8303424, "lon": -73.9392178 }, + { "lat": 40.8307104, "lon": -73.9389499 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565284886, + "bounds": { + "minlat": 40.8301341, + "minlon": -73.9388338, + "maxlat": 40.8305497, + "maxlon": -73.9385267 + }, + "nodes": [ + 5444713216, + 5444713217 + ], + "geometry": [ + { "lat": 40.8305497, "lon": -73.9385267 }, + { "lat": 40.8301341, "lon": -73.9388338 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565284887, + "bounds": { + "minlat": 40.8300580, + "minlon": -73.9386520, + "maxlat": 40.8305506, + "maxlon": -73.9382857 + }, + "nodes": [ + 5444713218, + 5444713219 + ], + "geometry": [ + { "lat": 40.8300580, "lon": -73.9386520 }, + { "lat": 40.8305506, "lon": -73.9382857 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565284888, + "bounds": { + "minlat": 40.8299687, + "minlon": -73.9384387, + "maxlat": 40.8304510, + "maxlon": -73.9380742 + }, + "nodes": [ + 5444713220, + 5444713921 + ], + "geometry": [ + { "lat": 40.8299687, "lon": -73.9384387 }, + { "lat": 40.8304510, "lon": -73.9380742 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565284889, + "bounds": { + "minlat": 40.8312919, + "minlon": -73.9369853, + "maxlat": 40.8321510, + "maxlon": -73.9363726 + }, + "nodes": [ + 5444713922, + 5444713923 + ], + "geometry": [ + { "lat": 40.8321510, "lon": -73.9363726 }, + { "lat": 40.8312919, "lon": -73.9369853 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565284890, + "bounds": { + "minlat": 40.8309412, + "minlon": -73.9372575, + "maxlat": 40.8313573, + "maxlon": -73.9365914 + }, + "nodes": [ + 5444713925, + 5444713924, + 5444713923, + 5444713926, + 9520382014, + 9520382015 + ], + "geometry": [ + { "lat": 40.8312095, "lon": -73.9372575 }, + { "lat": 40.8313573, "lon": -73.9371486 }, + { "lat": 40.8312919, "lon": -73.9369853 }, + { "lat": 40.8311250, "lon": -73.9365914 }, + { "lat": 40.8309633, "lon": -73.9367055 }, + { "lat": 40.8309412, "lon": -73.9366553 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565284891, + "bounds": { + "minlat": 40.8323082, + "minlon": -73.9379011, + "maxlat": 40.8325386, + "maxlon": -73.9375596 + }, + "nodes": [ + 5444713931, + 8348174398, + 8348174402, + 9520381998, + 8348174405, + 5444713931 + ], + "geometry": [ + { "lat": 40.8325386, "lon": -73.9378169 }, + { "lat": 40.8324150, "lon": -73.9379011 }, + { "lat": 40.8323082, "lon": -73.9376475 }, + { "lat": 40.8323753, "lon": -73.9375983 }, + { "lat": 40.8324280, "lon": -73.9375596 }, + { "lat": 40.8325386, "lon": -73.9378169 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565288613, + "bounds": { + "minlat": 40.8163042, + "minlon": -73.9525425, + "maxlat": 40.8172259, + "maxlon": -73.9520252 + }, + "nodes": [ + 42434097, + 8835729571, + 10183024492, + 5444733412, + 5444733413, + 5444733414, + 5444733415, + 5444733416, + 5444733417, + 5444733418, + 5444733419, + 5444733420, + 5444735321, + 5444735322, + 5444735323, + 5444735324, + 5444735325, + 5444735326, + 5444733416 + ], + "geometry": [ + { "lat": 40.8172259, "lon": -73.9522674 }, + { "lat": 40.8171850, "lon": -73.9521950 }, + { "lat": 40.8171755, "lon": -73.9521730 }, + { "lat": 40.8171372, "lon": -73.9520914 }, + { "lat": 40.8171129, "lon": -73.9520493 }, + { "lat": 40.8170795, "lon": -73.9520312 }, + { "lat": 40.8170309, "lon": -73.9520252 }, + { "lat": 40.8169354, "lon": -73.9520894 }, + { "lat": 40.8168701, "lon": -73.9520433 }, + { "lat": 40.8165940, "lon": -73.9522598 }, + { "lat": 40.8165121, "lon": -73.9522959 }, + { "lat": 40.8164256, "lon": -73.9523360 }, + { "lat": 40.8163270, "lon": -73.9523380 }, + { "lat": 40.8163042, "lon": -73.9523560 }, + { "lat": 40.8163694, "lon": -73.9525425 }, + { "lat": 40.8164453, "lon": -73.9525204 }, + { "lat": 40.8165743, "lon": -73.9524563 }, + { "lat": 40.8169596, "lon": -73.9521776 }, + { "lat": 40.8169354, "lon": -73.9520894 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565313975, + "bounds": { + "minlat": 40.7485458, + "minlon": -73.9247953, + "maxlat": 40.7491262, + "maxlon": -73.9216411 + }, + "nodes": [ + 1414043447, + 5444865937 + ], + "geometry": [ + { "lat": 40.7491262, "lon": -73.9216411 }, + { "lat": 40.7485458, "lon": -73.9247953 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565313978, + "bounds": { + "minlat": 40.7487760, + "minlon": -73.9218057, + "maxlat": 40.7488650, + "maxlon": -73.9213405 + }, + "nodes": [ + 5444865943, + 5444865944 + ], + "geometry": [ + { "lat": 40.7488650, "lon": -73.9213405 }, + { "lat": 40.7487760, "lon": -73.9218057 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565313979, + "bounds": { + "minlat": 40.7489545, + "minlon": -73.9217972, + "maxlat": 40.7490307, + "maxlon": -73.9213961 + }, + "nodes": [ + 5444865945, + 5444865946 + ], + "geometry": [ + { "lat": 40.7490307, "lon": -73.9213961 }, + { "lat": 40.7489545, "lon": -73.9217972 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565313981, + "bounds": { + "minlat": 40.7481897, + "minlon": -73.9249826, + "maxlat": 40.7482041, + "maxlon": -73.9228562 + }, + "nodes": [ + 5444865956, + 12374111080, + 5444865958, + 5444865957 + ], + "geometry": [ + { "lat": 40.7482041, "lon": -73.9228562 }, + { "lat": 40.7481897, "lon": -73.9230698 }, + { "lat": 40.7481944, "lon": -73.9235865 }, + { "lat": 40.7481974, "lon": -73.9249826 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565313983, + "bounds": { + "minlat": 40.7481944, + "minlon": -73.9247280, + "maxlat": 40.7485394, + "maxlon": -73.9235865 + }, + "nodes": [ + 5444865958, + 5444865962, + 5444865959, + 5444865960 + ], + "geometry": [ + { "lat": 40.7481944, "lon": -73.9235865 }, + { "lat": 40.7482626, "lon": -73.9236054 }, + { "lat": 40.7485394, "lon": -73.9236880 }, + { "lat": 40.7483560, "lon": -73.9247280 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565313985, + "bounds": { + "minlat": 40.7482626, + "minlon": -73.9236054, + "maxlat": 40.7483114, + "maxlon": -73.9232877 + }, + "nodes": [ + 5444865962, + 5444865963 + ], + "geometry": [ + { "lat": 40.7482626, "lon": -73.9236054 }, + { "lat": 40.7483114, "lon": -73.9232877 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565313988, + "bounds": { + "minlat": 40.7477285, + "minlon": -73.9231969, + "maxlat": 40.7482899, + "maxlon": -73.9205290 + }, + "nodes": [ + 5444865968, + 8593852971, + 5444865969, + 5444865970, + 5444865971, + 5444865972, + 5444865973, + 5444865974 + ], + "geometry": [ + { "lat": 40.7482288, "lon": -73.9205290 }, + { "lat": 40.7482427, "lon": -73.9206424 }, + { "lat": 40.7482899, "lon": -73.9210278 }, + { "lat": 40.7482684, "lon": -73.9211016 }, + { "lat": 40.7480425, "lon": -73.9214707 }, + { "lat": 40.7478597, "lon": -73.9219391 }, + { "lat": 40.7477694, "lon": -73.9223622 }, + { "lat": 40.7477285, "lon": -73.9231969 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565313989, + "bounds": { + "minlat": 40.7486401, + "minlon": -73.9217669, + "maxlat": 40.7487043, + "maxlon": -73.9213639 + }, + "nodes": [ + 12374111076, + 12374111073, + 12374111074, + 5444865975 + ], + "geometry": [ + { "lat": 40.7486944, "lon": -73.9213639 }, + { "lat": 40.7487038, "lon": -73.9213955 }, + { "lat": 40.7487043, "lon": -73.9214350 }, + { "lat": 40.7486401, "lon": -73.9217669 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565552142, + "bounds": { + "minlat": 40.7098740, + "minlon": -74.0044324, + "maxlat": 40.7100085, + "maxlon": -74.0042372 + }, + "nodes": [ + 5446617714, + 8262309715, + 5446624901, + 5446617715 + ], + "geometry": [ + { "lat": 40.7100085, "lon": -74.0044324 }, + { "lat": 40.7099400, "lon": -74.0043331 }, + { "lat": 40.7099244, "lon": -74.0043104 }, + { "lat": 40.7098740, "lon": -74.0042372 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 565555587, + "bounds": { + "minlat": 40.7085675, + "minlon": -74.0031302, + "maxlat": 40.7086643, + "maxlon": -74.0029821 + }, + "nodes": [ + 5446626914, + 5446626915, + 11343006794 + ], + "geometry": [ + { "lat": 40.7086643, "lon": -74.0031302 }, + { "lat": 40.7085879, "lon": -74.0030133 }, + { "lat": 40.7085675, "lon": -74.0029821 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "motor_vehicle": "private", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 565963669, + "bounds": { + "minlat": 40.8470202, + "minlon": -73.9703039, + "maxlat": 40.8473323, + "maxlon": -73.9693561 + }, + "nodes": [ + 5449302884, + 10002778641, + 5449302880, + 5449302856, + 5449302906, + 5449302882, + 5449302904 + ], + "geometry": [ + { "lat": 40.8473323, "lon": -73.9703039 }, + { "lat": 40.8473091, "lon": -73.9702151 }, + { "lat": 40.8471334, "lon": -73.9695432 }, + { "lat": 40.8470996, "lon": -73.9694315 }, + { "lat": 40.8470695, "lon": -73.9693849 }, + { "lat": 40.8470421, "lon": -73.9693662 }, + { "lat": 40.8470202, "lon": -73.9693561 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565963670, + "bounds": { + "minlat": 40.8471537, + "minlon": -73.9667067, + "maxlat": 40.8472755, + "maxlon": -73.9666571 + }, + "nodes": [ + 5449302872, + 5449302846 + ], + "geometry": [ + { "lat": 40.8472755, "lon": -73.9666571 }, + { "lat": 40.8471537, "lon": -73.9667067 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565963671, + "bounds": { + "minlat": 40.8467865, + "minlon": -73.9694051, + "maxlat": 40.8470824, + "maxlon": -73.9690778 + }, + "nodes": [ + 5449302904, + 5449302848, + 5449302854, + 5449302881, + 5449309076, + 5449302889, + 5449302894, + 5449302842, + 5449302855, + 5449302869, + 5449302866, + 5449302908, + 5449302871, + 5449302859, + 5449302910, + 5449302864, + 5449302870, + 5449302863, + 5449302904 + ], + "geometry": [ + { "lat": 40.8470202, "lon": -73.9693561 }, + { "lat": 40.8469636, "lon": -73.9693886 }, + { "lat": 40.8469133, "lon": -73.9694051 }, + { "lat": 40.8468707, "lon": -73.9693997 }, + { "lat": 40.8468434, "lon": -73.9693821 }, + { "lat": 40.8468270, "lon": -73.9693715 }, + { "lat": 40.8467993, "lon": -73.9693283 }, + { "lat": 40.8467865, "lon": -73.9692656 }, + { "lat": 40.8467885, "lon": -73.9692160 }, + { "lat": 40.8468105, "lon": -73.9691700 }, + { "lat": 40.8468575, "lon": -73.9691301 }, + { "lat": 40.8469437, "lon": -73.9690832 }, + { "lat": 40.8469843, "lon": -73.9690778 }, + { "lat": 40.8470411, "lon": -73.9691181 }, + { "lat": 40.8470824, "lon": -73.9691703 }, + { "lat": 40.8470787, "lon": -73.9692254 }, + { "lat": 40.8470665, "lon": -73.9692696 }, + { "lat": 40.8470483, "lon": -73.9693128 }, + { "lat": 40.8470202, "lon": -73.9693561 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565963673, + "bounds": { + "minlat": 40.8477133, + "minlon": -73.9680394, + "maxlat": 40.8479004, + "maxlon": -73.9674926 + }, + "nodes": [ + 5449302858, + 5449302883, + 5449302878, + 5449302892, + 5449302857, + 5449302885, + 5449302868, + 5449302901, + 5449302891, + 5449302841, + 5449302843 + ], + "geometry": [ + { "lat": 40.8478172, "lon": -73.9674926 }, + { "lat": 40.8478574, "lon": -73.9676063 }, + { "lat": 40.8478807, "lon": -73.9676881 }, + { "lat": 40.8478953, "lon": -73.9677703 }, + { "lat": 40.8479004, "lon": -73.9678319 }, + { "lat": 40.8478960, "lon": -73.9678812 }, + { "lat": 40.8478868, "lon": -73.9679188 }, + { "lat": 40.8478605, "lon": -73.9679617 }, + { "lat": 40.8478344, "lon": -73.9679915 }, + { "lat": 40.8478060, "lon": -73.9680117 }, + { "lat": 40.8477133, "lon": -73.9680394 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565963676, + "bounds": { + "minlat": 40.8470824, + "minlon": -73.9702493, + "maxlat": 40.8473833, + "maxlon": -73.9691703 + }, + "nodes": [ + 5449302910, + 5449302845, + 10002778640, + 103235784 + ], + "geometry": [ + { "lat": 40.8470824, "lon": -73.9691703 }, + { "lat": 40.8471091, "lon": -73.9692173 }, + { "lat": 40.8473597, "lon": -73.9701605 }, + { "lat": 40.8473833, "lon": -73.9702493 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565964176, + "bounds": { + "minlat": 40.8468038, + "minlon": -73.9695623, + "maxlat": 40.8468485, + "maxlon": -73.9694012 + }, + "nodes": [ + 5449309078, + 5449309081 + ], + "geometry": [ + { "lat": 40.8468485, "lon": -73.9695623 }, + { "lat": 40.8468038, "lon": -73.9694012 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565964178, + "bounds": { + "minlat": 40.8463594, + "minlon": -73.9695419, + "maxlat": 40.8468434, + "maxlon": -73.9691744 + }, + "nodes": [ + 5449309076, + 5449309081, + 5449309080, + 5449309083, + 5449309074, + 5449309075 + ], + "geometry": [ + { "lat": 40.8468434, "lon": -73.9693821 }, + { "lat": 40.8468038, "lon": -73.9694012 }, + { "lat": 40.8467435, "lon": -73.9694302 }, + { "lat": 40.8465328, "lon": -73.9695284 }, + { "lat": 40.8464994, "lon": -73.9695419 }, + { "lat": 40.8463594, "lon": -73.9691744 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565964180, + "bounds": { + "minlat": 40.8468956, + "minlon": -73.9695338, + "maxlat": 40.8469133, + "maxlon": -73.9694051 + }, + "nodes": [ + 5449302854, + 5449309082, + 5449309079, + 5449309077 + ], + "geometry": [ + { "lat": 40.8469133, "lon": -73.9694051 }, + { "lat": 40.8468992, "lon": -73.9694411 }, + { "lat": 40.8468956, "lon": -73.9694759 }, + { "lat": 40.8469091, "lon": -73.9695338 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565964883, + "bounds": { + "minlat": 40.8453611, + "minlon": -73.9708678, + "maxlat": 40.8453851, + "maxlon": -73.9708170 + }, + "nodes": [ + 5449318203, + 5449320105 + ], + "geometry": [ + { "lat": 40.8453611, "lon": -73.9708170 }, + { "lat": 40.8453851, "lon": -73.9708678 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565964884, + "bounds": { + "minlat": 40.8451217, + "minlon": -73.9717664, + "maxlat": 40.8453841, + "maxlon": -73.9714408 + }, + "nodes": [ + 5449315448, + 13523674099, + 5449315440, + 5449315447, + 5449315449, + 5449315455, + 5449315443, + 5449315454, + 5449315445, + 13523674100, + 5449315457, + 5449315453 + ], + "geometry": [ + { "lat": 40.8451882, "lon": -73.9717664 }, + { "lat": 40.8451374, "lon": -73.9716612 }, + { "lat": 40.8451327, "lon": -73.9716514 }, + { "lat": 40.8451217, "lon": -73.9715911 }, + { "lat": 40.8451267, "lon": -73.9715401 }, + { "lat": 40.8451370, "lon": -73.9715048 }, + { "lat": 40.8452056, "lon": -73.9714480 }, + { "lat": 40.8452416, "lon": -73.9714408 }, + { "lat": 40.8452853, "lon": -73.9714631 }, + { "lat": 40.8453288, "lon": -73.9715047 }, + { "lat": 40.8453374, "lon": -73.9715129 }, + { "lat": 40.8453841, "lon": -73.9716037 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565965067, + "bounds": { + "minlat": 40.8451896, + "minlon": -73.9709674, + "maxlat": 40.8457425, + "maxlon": -73.9705313 + }, + "nodes": [ + 5449318208, + 5449318207, + 5449318202, + 5449318206, + 5449318203, + 5449318209, + 5449318204, + 5449318201, + 5449318205, + 5449318200, + 5449318202 + ], + "geometry": [ + { "lat": 40.8457425, "lon": -73.9709674 }, + { "lat": 40.8455471, "lon": -73.9706049 }, + { "lat": 40.8454339, "lon": -73.9707034 }, + { "lat": 40.8453915, "lon": -73.9707918 }, + { "lat": 40.8453611, "lon": -73.9708170 }, + { "lat": 40.8452962, "lon": -73.9708709 }, + { "lat": 40.8452215, "lon": -73.9707740 }, + { "lat": 40.8451930, "lon": -73.9707254 }, + { "lat": 40.8451896, "lon": -73.9706872 }, + { "lat": 40.8453262, "lon": -73.9705313 }, + { "lat": 40.8454339, "lon": -73.9707034 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565965192, + "bounds": { + "minlat": 40.8445709, + "minlon": -73.9710349, + "maxlat": 40.8451930, + "maxlon": -73.9707254 + }, + "nodes": [ + 5449318201, + 5449319043, + 5449319044, + 5449319046, + 5449319047, + 7483134220, + 5449319045, + 5108657318 + ], + "geometry": [ + { "lat": 40.8451930, "lon": -73.9707254 }, + { "lat": 40.8450902, "lon": -73.9707904 }, + { "lat": 40.8449969, "lon": -73.9708186 }, + { "lat": 40.8448619, "lon": -73.9708615 }, + { "lat": 40.8447574, "lon": -73.9709192 }, + { "lat": 40.8446654, "lon": -73.9709709 }, + { "lat": 40.8446357, "lon": -73.9709876 }, + { "lat": 40.8445709, "lon": -73.9710349 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565965247, + "bounds": { + "minlat": 40.8453851, + "minlon": -73.9711561, + "maxlat": 40.8455211, + "maxlon": -73.9708678 + }, + "nodes": [ + 5449320105, + 5449315456 + ], + "geometry": [ + { "lat": 40.8453851, "lon": -73.9708678 }, + { "lat": 40.8455211, "lon": -73.9711561 } + ], + "tags": { + "highway": "service", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 565965248, + "bounds": { + "minlat": 40.8455211, + "minlon": -73.9713943, + "maxlat": 40.8456344, + "maxlon": -73.9711561 + }, + "nodes": [ + 5449315456, + 13523713601, + 5449315439 + ], + "geometry": [ + { "lat": 40.8455211, "lon": -73.9711561 }, + { "lat": 40.8455849, "lon": -73.9712903 }, + { "lat": 40.8456344, "lon": -73.9713943 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565965790, + "bounds": { + "minlat": 40.8460357, + "minlon": -73.9710335, + "maxlat": 40.8461514, + "maxlon": -73.9705638 + }, + "nodes": [ + 5449327992, + 10002778653, + 5449328004, + 5449327975, + 5449327948, + 5449328035 + ], + "geometry": [ + { "lat": 40.8461514, "lon": -73.9710335 }, + { "lat": 40.8461181, "lon": -73.9709709 }, + { "lat": 40.8460956, "lon": -73.9709286 }, + { "lat": 40.8460570, "lon": -73.9708414 }, + { "lat": 40.8460357, "lon": -73.9707368 }, + { "lat": 40.8460357, "lon": -73.9705638 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565965791, + "bounds": { + "minlat": 40.8462021, + "minlon": -73.9703140, + "maxlat": 40.8465322, + "maxlon": -73.9697239 + }, + "nodes": [ + 5449327967, + 5449328026, + 5449327927, + 5449327962, + 5449327967 + ], + "geometry": [ + { "lat": 40.8465322, "lon": -73.9702291 }, + { "lat": 40.8464047, "lon": -73.9703140 }, + { "lat": 40.8462021, "lon": -73.9698034 }, + { "lat": 40.8463306, "lon": -73.9697239 }, + { "lat": 40.8465322, "lon": -73.9702291 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565965792, + "bounds": { + "minlat": 40.8464994, + "minlon": -73.9702500, + "maxlat": 40.8466850, + "maxlon": -73.9695419 + }, + "nodes": [ + 5449328001, + 5449327994, + 5449327971, + 5449309074 + ], + "geometry": [ + { "lat": 40.8466850, "lon": -73.9702500 }, + { "lat": 40.8465968, "lon": -73.9698812 }, + { "lat": 40.8465105, "lon": -73.9696263 }, + { "lat": 40.8464994, "lon": -73.9695419 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565965793, + "bounds": { + "minlat": 40.8459244, + "minlon": -73.9705638, + "maxlat": 40.8461717, + "maxlon": -73.9702073 + }, + "nodes": [ + 5449328035, + 5449328022, + 5449328023, + 5449327942, + 5449327921, + 5449328008, + 5449327939, + 5449328011, + 5449327940, + 5449327995, + 5449327954, + 5449328009, + 5449327934, + 5449327952, + 5449328010, + 5449327987, + 5449327986, + 5449327946, + 5449327993, + 5449328035 + ], + "geometry": [ + { "lat": 40.8460357, "lon": -73.9705638 }, + { "lat": 40.8459941, "lon": -73.9705396 }, + { "lat": 40.8459637, "lon": -73.9705034 }, + { "lat": 40.8459434, "lon": -73.9704458 }, + { "lat": 40.8459244, "lon": -73.9703900 }, + { "lat": 40.8459273, "lon": -73.9703375 }, + { "lat": 40.8459351, "lon": -73.9702824 }, + { "lat": 40.8459779, "lon": -73.9702164 }, + { "lat": 40.8460295, "lon": -73.9702073 }, + { "lat": 40.8460632, "lon": -73.9702095 }, + { "lat": 40.8461120, "lon": -73.9702334 }, + { "lat": 40.8461439, "lon": -73.9702671 }, + { "lat": 40.8461652, "lon": -73.9703127 }, + { "lat": 40.8461717, "lon": -73.9703760 }, + { "lat": 40.8461647, "lon": -73.9704195 }, + { "lat": 40.8461362, "lon": -73.9704726 }, + { "lat": 40.8461047, "lon": -73.9705142 }, + { "lat": 40.8460865, "lon": -73.9705356 }, + { "lat": 40.8460713, "lon": -73.9705440 }, + { "lat": 40.8460357, "lon": -73.9705638 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565965796, + "bounds": { + "minlat": 40.8460713, + "minlon": -73.9708819, + "maxlat": 40.8464144, + "maxlon": -73.9705440 + }, + "nodes": [ + 5449327993, + 5449328029, + 5449328033, + 5449328038, + 5449327818, + 5449328025, + 5449328017, + 5449328024, + 5449328030, + 5449327972 + ], + "geometry": [ + { "lat": 40.8460713, "lon": -73.9705440 }, + { "lat": 40.8460942, "lon": -73.9706479 }, + { "lat": 40.8461169, "lon": -73.9707073 }, + { "lat": 40.8461483, "lon": -73.9707582 }, + { "lat": 40.8461899, "lon": -73.9707824 }, + { "lat": 40.8462610, "lon": -73.9707696 }, + { "lat": 40.8463332, "lon": -73.9707600 }, + { "lat": 40.8463698, "lon": -73.9707749 }, + { "lat": 40.8463975, "lon": -73.9708370 }, + { "lat": 40.8464144, "lon": -73.9708819 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565966590, + "bounds": { + "minlat": 40.8429881, + "minlon": -73.9718187, + "maxlat": 40.8436445, + "maxlon": -73.9711257 + }, + "nodes": [ + 5449338399, + 5449338392, + 5449338389, + 5449338395, + 5449338391, + 5449338390, + 5449338387, + 5449338388, + 5449338396, + 5449338394, + 5449338400, + 5449338397, + 5449338401, + 5449338398, + 5449338393 + ], + "geometry": [ + { "lat": 40.8436118, "lon": -73.9718187 }, + { "lat": 40.8436303, "lon": -73.9717694 }, + { "lat": 40.8436425, "lon": -73.9717144 }, + { "lat": 40.8436445, "lon": -73.9716662 }, + { "lat": 40.8436330, "lon": -73.9716015 }, + { "lat": 40.8436120, "lon": -73.9715401 }, + { "lat": 40.8435704, "lon": -73.9714704 }, + { "lat": 40.8435319, "lon": -73.9714355 }, + { "lat": 40.8434964, "lon": -73.9714100 }, + { "lat": 40.8434162, "lon": -73.9713926 }, + { "lat": 40.8431778, "lon": -73.9713389 }, + { "lat": 40.8431139, "lon": -73.9713067 }, + { "lat": 40.8430784, "lon": -73.9712866 }, + { "lat": 40.8430500, "lon": -73.9712370 }, + { "lat": 40.8429881, "lon": -73.9711257 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565967747, + "bounds": { + "minlat": 40.8442256, + "minlon": -73.9714821, + "maxlat": 40.8443824, + "maxlon": -73.9713105 + }, + "nodes": [ + 8602391999, + 5449346895 + ], + "geometry": [ + { "lat": 40.8442256, "lon": -73.9714821 }, + { "lat": 40.8443824, "lon": -73.9713105 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565967748, + "bounds": { + "minlat": 40.8434457, + "minlon": -73.9726800, + "maxlat": 40.8437757, + "maxlon": -73.9725190 + }, + "nodes": [ + 5449346888, + 5449346887 + ], + "geometry": [ + { "lat": 40.8434457, "lon": -73.9726800 }, + { "lat": 40.8437757, "lon": -73.9725190 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565967749, + "bounds": { + "minlat": 40.8437757, + "minlon": -73.9726965, + "maxlat": 40.8438528, + "maxlon": -73.9725190 + }, + "nodes": [ + 5449346887, + 13523703018, + 5449346896 + ], + "geometry": [ + { "lat": 40.8437757, "lon": -73.9725190 }, + { "lat": 40.8438065, "lon": -73.9725900 }, + { "lat": 40.8438528, "lon": -73.9726965 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 565967751, + "bounds": { + "minlat": 40.8432115, + "minlon": -73.9727701, + "maxlat": 40.8434457, + "maxlon": -73.9724651 + }, + "nodes": [ + 5449346892, + 5449346902, + 5449346908, + 5449346888, + 5449346892 + ], + "geometry": [ + { "lat": 40.8432784, "lon": -73.9727701 }, + { "lat": 40.8432115, "lon": -73.9725525 }, + { "lat": 40.8433733, "lon": -73.9724651 }, + { "lat": 40.8434457, "lon": -73.9726800 }, + { "lat": 40.8432784, "lon": -73.9727701 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565967753, + "bounds": { + "minlat": 40.8443098, + "minlon": -73.9716109, + "maxlat": 40.8444637, + "maxlon": -73.9714410 + }, + "nodes": [ + 5449346893, + 8602391998 + ], + "geometry": [ + { "lat": 40.8444637, "lon": -73.9714410 }, + { "lat": 40.8443098, "lon": -73.9716109 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565967755, + "bounds": { + "minlat": 40.8432784, + "minlon": -73.9729773, + "maxlat": 40.8433424, + "maxlon": -73.9727701 + }, + "nodes": [ + 5449346900, + 13523703019, + 5449346892 + ], + "geometry": [ + { "lat": 40.8433424, "lon": -73.9729773 }, + { "lat": 40.8433083, "lon": -73.9728670 }, + { "lat": 40.8432784, "lon": -73.9727701 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 565967759, + "bounds": { + "minlat": 40.8431940, + "minlon": -73.9725525, + "maxlat": 40.8436983, + "maxlon": -73.9721758 + }, + "nodes": [ + 5449346902, + 5449346890, + 5449346905, + 5449346889, + 5449346894 + ], + "geometry": [ + { "lat": 40.8432115, "lon": -73.9725525 }, + { "lat": 40.8431951, "lon": -73.9724923 }, + { "lat": 40.8431940, "lon": -73.9724655 }, + { "lat": 40.8432113, "lon": -73.9724440 }, + { "lat": 40.8436983, "lon": -73.9721758 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565967804, + "bounds": { + "minlat": 40.8437564, + "minlon": -73.9725190, + "maxlat": 40.8437882, + "maxlon": -73.9723391 + }, + "nodes": [ + 11013363510, + 5449346897, + 5449346907, + 5449346887 + ], + "geometry": [ + { "lat": 40.8437564, "lon": -73.9723391 }, + { "lat": 40.8437882, "lon": -73.9724517 }, + { "lat": 40.8437882, "lon": -73.9724799 }, + { "lat": 40.8437757, "lon": -73.9725190 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 565967867, + "bounds": { + "minlat": 40.8418085, + "minlon": -73.9740166, + "maxlat": 40.8422706, + "maxlon": -73.9733841 + }, + "nodes": [ + 5449347316, + 12478989825, + 5449347311, + 5449347310, + 5449347315, + 5449347312, + 5449347307, + 5449347317, + 7468613301, + 13523703001, + 5449347314 + ], + "geometry": [ + { "lat": 40.8419858, "lon": -73.9740166 }, + { "lat": 40.8419398, "lon": -73.9739087 }, + { "lat": 40.8418085, "lon": -73.9736006 }, + { "lat": 40.8418558, "lon": -73.9734981 }, + { "lat": 40.8419593, "lon": -73.9734042 }, + { "lat": 40.8420034, "lon": -73.9734094 }, + { "lat": 40.8420283, "lon": -73.9734270 }, + { "lat": 40.8420831, "lon": -73.9733841 }, + { "lat": 40.8421635, "lon": -73.9735350 }, + { "lat": 40.8422234, "lon": -73.9736475 }, + { "lat": 40.8422706, "lon": -73.9737360 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565968022, + "bounds": { + "minlat": 40.8421391, + "minlon": -73.9742042, + "maxlat": 40.8423224, + "maxlon": -73.9738635 + }, + "nodes": [ + 5449350822, + 7292367047, + 5449339020 + ], + "geometry": [ + { "lat": 40.8421391, "lon": -73.9738635 }, + { "lat": 40.8421888, "lon": -73.9739559 }, + { "lat": 40.8423224, "lon": -73.9742042 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565968023, + "bounds": { + "minlat": 40.8421884, + "minlon": -73.9742042, + "maxlat": 40.8424514, + "maxlon": -73.9738154 + }, + "nodes": [ + 5449350823, + 5449350825, + 7292367046, + 5449350831, + 5449339017, + 5449350832, + 5449350829, + 5449350827, + 5449339019, + 5449339018, + 5449350824, + 5449350821, + 5449350828, + 5449350826, + 5449339020 + ], + "geometry": [ + { "lat": 40.8421884, "lon": -73.9738154 }, + { "lat": 40.8422231, "lon": -73.9738723 }, + { "lat": 40.8422436, "lon": -73.9739047 }, + { "lat": 40.8422485, "lon": -73.9739125 }, + { "lat": 40.8422799, "lon": -73.9739340 }, + { "lat": 40.8423313, "lon": -73.9739162 }, + { "lat": 40.8423678, "lon": -73.9739095 }, + { "lat": 40.8424016, "lon": -73.9739343 }, + { "lat": 40.8424389, "lon": -73.9739926 }, + { "lat": 40.8424504, "lon": -73.9740319 }, + { "lat": 40.8424514, "lon": -73.9740641 }, + { "lat": 40.8424374, "lon": -73.9740996 }, + { "lat": 40.8424046, "lon": -73.9741318 }, + { "lat": 40.8423522, "lon": -73.9741793 }, + { "lat": 40.8423224, "lon": -73.9742042 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 565968106, + "bounds": { + "minlat": 40.8419969, + "minlon": -73.9745002, + "maxlat": 40.8423224, + "maxlon": -73.9742042 + }, + "nodes": [ + 5449339020, + 5449350830, + 7292367048, + 5449350833 + ], + "geometry": [ + { "lat": 40.8423224, "lon": -73.9742042 }, + { "lat": 40.8422911, "lon": -73.9742304 }, + { "lat": 40.8420418, "lon": -73.9744590 }, + { "lat": 40.8419969, "lon": -73.9745002 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565968162, + "bounds": { + "minlat": 40.8415878, + "minlon": -73.9748768, + "maxlat": 40.8418345, + "maxlon": -73.9744531 + }, + "nodes": [ + 5449351813, + 7292367057, + 5449351814 + ], + "geometry": [ + { "lat": 40.8418345, "lon": -73.9748768 }, + { "lat": 40.8416384, "lon": -73.9745400 }, + { "lat": 40.8415878, "lon": -73.9744531 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 565968692, + "bounds": { + "minlat": 40.8495426, + "minlon": -73.9659174, + "maxlat": 40.8499137, + "maxlon": -73.9652057 + }, + "nodes": [ + 5449358284, + 5449358301, + 5449358286, + 5449358303, + 5449358298 + ], + "geometry": [ + { "lat": 40.8496074, "lon": -73.9659174 }, + { "lat": 40.8495426, "lon": -73.9656449 }, + { "lat": 40.8496966, "lon": -73.9655799 }, + { "lat": 40.8496340, "lon": -73.9653254 }, + { "lat": 40.8499137, "lon": -73.9652057 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565968693, + "bounds": { + "minlat": 40.8496876, + "minlon": -73.9658862, + "maxlat": 40.8498032, + "maxlon": -73.9657261 + }, + "nodes": [ + 12344808183, + 5449358304, + 5449358296, + 5449358299, + 5449358294, + 5449358295, + 5449358297, + 5449358292, + 5449358302, + 5449358300, + 5449358287, + 12344808184 + ], + "geometry": [ + { "lat": 40.8497000, "lon": -73.9658796 }, + { "lat": 40.8496876, "lon": -73.9658263 }, + { "lat": 40.8496888, "lon": -73.9657774 }, + { "lat": 40.8497061, "lon": -73.9657412 }, + { "lat": 40.8497382, "lon": -73.9657261 }, + { "lat": 40.8497642, "lon": -73.9657325 }, + { "lat": 40.8497863, "lon": -73.9657540 }, + { "lat": 40.8497971, "lon": -73.9657851 }, + { "lat": 40.8498032, "lon": -73.9658185 }, + { "lat": 40.8497907, "lon": -73.9658526 }, + { "lat": 40.8497684, "lon": -73.9658726 }, + { "lat": 40.8497371, "lon": -73.9658862 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565968694, + "bounds": { + "minlat": 40.8494626, + "minlon": -73.9656449, + "maxlat": 40.8495864, + "maxlon": -73.9653402 + }, + "nodes": [ + 5449358301, + 5449358291, + 5449358288, + 5449358285, + 5449358290 + ], + "geometry": [ + { "lat": 40.8495426, "lon": -73.9656449 }, + { "lat": 40.8495295, "lon": -73.9656285 }, + { "lat": 40.8495130, "lon": -73.9655946 }, + { "lat": 40.8494626, "lon": -73.9653911 }, + { "lat": 40.8495864, "lon": -73.9653402 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565969514, + "bounds": { + "minlat": 40.8552102, + "minlon": -73.9636423, + "maxlat": 40.8554467, + "maxlon": -73.9635106 + }, + "nodes": [ + 5449390161, + 5449390153, + 5449390156 + ], + "geometry": [ + { "lat": 40.8552102, "lon": -73.9636423 }, + { "lat": 40.8553976, "lon": -73.9635106 }, + { "lat": 40.8554467, "lon": -73.9636085 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 565969515, + "bounds": { + "minlat": 40.8547824, + "minlon": -73.9636543, + "maxlat": 40.8554024, + "maxlon": -73.9632998 + }, + "nodes": [ + 9294019580, + 9294019581, + 5449390158, + 5449397630 + ], + "geometry": [ + { "lat": 40.8554024, "lon": -73.9632998 }, + { "lat": 40.8551261, "lon": -73.9634666 }, + { "lat": 40.8550741, "lon": -73.9634784 }, + { "lat": 40.8547824, "lon": -73.9636543 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565969517, + "bounds": { + "minlat": 40.8550536, + "minlon": -73.9641407, + "maxlat": 40.8552772, + "maxlon": -73.9639857 + }, + "nodes": [ + 5449390160, + 5449390159, + 5449390157 + ], + "geometry": [ + { "lat": 40.8552772, "lon": -73.9639857 }, + { "lat": 40.8551065, "lon": -73.9640913 }, + { "lat": 40.8550536, "lon": -73.9641407 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565969519, + "bounds": { + "minlat": 40.8552630, + "minlon": -73.9637469, + "maxlat": 40.8555334, + "maxlon": -73.9635433 + }, + "nodes": [ + 5449390154, + 5449390156, + 5449390152 + ], + "geometry": [ + { "lat": 40.8555334, "lon": -73.9635433 }, + { "lat": 40.8554467, "lon": -73.9636085 }, + { "lat": 40.8552630, "lon": -73.9637469 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 565970050, + "bounds": { + "minlat": 40.8545557, + "minlon": -73.9640081, + "maxlat": 40.8548754, + "maxlon": -73.9638151 + }, + "nodes": [ + 5449397631, + 5449397626, + 13759310572, + 5449397627 + ], + "geometry": [ + { "lat": 40.8548754, "lon": -73.9638151 }, + { "lat": 40.8547636, "lon": -73.9638955 }, + { "lat": 40.8546840, "lon": -73.9639386 }, + { "lat": 40.8545557, "lon": -73.9640081 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565970781, + "bounds": { + "minlat": 40.8560571, + "minlon": -73.9641573, + "maxlat": 40.8561759, + "maxlon": -73.9638815 + }, + "nodes": [ + 5449402613, + 5449402612 + ], + "geometry": [ + { "lat": 40.8561759, "lon": -73.9641573 }, + { "lat": 40.8560571, "lon": -73.9638815 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565970782, + "bounds": { + "minlat": 40.8551769, + "minlon": -73.9645802, + "maxlat": 40.8552258, + "maxlon": -73.9644247 + }, + "nodes": [ + 103154325, + 8602427937 + ], + "geometry": [ + { "lat": 40.8551769, "lon": -73.9644247 }, + { "lat": 40.8552258, "lon": -73.9645802 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565970783, + "bounds": { + "minlat": 40.8554539, + "minlon": -73.9644108, + "maxlat": 40.8555099, + "maxlon": -73.9642553 + }, + "nodes": [ + 5449402614, + 5449402610 + ], + "geometry": [ + { "lat": 40.8555099, "lon": -73.9644108 }, + { "lat": 40.8554539, "lon": -73.9642553 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565971226, + "bounds": { + "minlat": 40.8545946, + "minlon": -73.9645543, + "maxlat": 40.8550205, + "maxlon": -73.9642954 + }, + "nodes": [ + 5449400765, + 5449400764, + 5449400761, + 5449400760 + ], + "geometry": [ + { "lat": 40.8550205, "lon": -73.9642954 }, + { "lat": 40.8548279, "lon": -73.9644168 }, + { "lat": 40.8546097, "lon": -73.9645543 }, + { "lat": 40.8545946, "lon": -73.9645109 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565971228, + "bounds": { + "minlat": 40.8548279, + "minlon": -73.9645958, + "maxlat": 40.8548898, + "maxlon": -73.9644168 + }, + "nodes": [ + 5449400762, + 5449400764 + ], + "geometry": [ + { "lat": 40.8548898, "lon": -73.9645958 }, + { "lat": 40.8548279, "lon": -73.9644168 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565975132, + "bounds": { + "minlat": 40.8569262, + "minlon": -73.9672784, + "maxlat": 40.8570702, + "maxlon": -73.9665388 + }, + "nodes": [ + 5449415083, + 5449415088, + 5449415093, + 5449415085 + ], + "geometry": [ + { "lat": 40.8570702, "lon": -73.9672784 }, + { "lat": 40.8569417, "lon": -73.9669201 }, + { "lat": 40.8570430, "lon": -73.9668180 }, + { "lat": 40.8569262, "lon": -73.9665388 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565975133, + "bounds": { + "minlat": 40.8570430, + "minlon": -73.9668180, + "maxlat": 40.8575389, + "maxlon": -73.9661939 + }, + "nodes": [ + 5449415092, + 5449415091, + 5449415090, + 5449415086, + 11170628915, + 5449415093 + ], + "geometry": [ + { "lat": 40.8575039, "lon": -73.9661939 }, + { "lat": 40.8575250, "lon": -73.9662575 }, + { "lat": 40.8575389, "lon": -73.9663095 }, + { "lat": 40.8575280, "lon": -73.9663487 }, + { "lat": 40.8575141, "lon": -73.9663736 }, + { "lat": 40.8570430, "lon": -73.9668180 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565975135, + "bounds": { + "minlat": 40.8570702, + "minlon": -73.9674497, + "maxlat": 40.8574763, + "maxlon": -73.9670514 + }, + "nodes": [ + 5449415083, + 5449415095, + 5449415078, + 5449415076, + 5449415077, + 5449415080, + 5449415084, + 5449415082, + 5449415089, + 5449415087, + 5449415081, + 5449415079, + 5449415083 + ], + "geometry": [ + { "lat": 40.8570702, "lon": -73.9672784 }, + { "lat": 40.8571009, "lon": -73.9672963 }, + { "lat": 40.8571324, "lon": -73.9672818 }, + { "lat": 40.8573759, "lon": -73.9670514 }, + { "lat": 40.8574195, "lon": -73.9670595 }, + { "lat": 40.8574540, "lon": -73.9671064 }, + { "lat": 40.8574763, "lon": -73.9671426 }, + { "lat": 40.8574743, "lon": -73.9671694 }, + { "lat": 40.8571852, "lon": -73.9674457 }, + { "lat": 40.8571608, "lon": -73.9674497 }, + { "lat": 40.8571304, "lon": -73.9674336 }, + { "lat": 40.8571071, "lon": -73.9673894 }, + { "lat": 40.8570702, "lon": -73.9672784 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565976177, + "bounds": { + "minlat": 40.8575939, + "minlon": -73.9670250, + "maxlat": 40.8581080, + "maxlon": -73.9666510 + }, + "nodes": [ + 5449416238, + 5449416236, + 5449416237 + ], + "geometry": [ + { "lat": 40.8581080, "lon": -73.9666510 }, + { "lat": 40.8577246, "lon": -73.9670250 }, + { "lat": 40.8575939, "lon": -73.9667872 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565979237, + "bounds": { + "minlat": 40.8566675, + "minlon": -73.9668503, + "maxlat": 40.8567226, + "maxlon": -73.9666960 + }, + "nodes": [ + 5449420319, + 5449420320 + ], + "geometry": [ + { "lat": 40.8567226, "lon": -73.9668503 }, + { "lat": 40.8566675, "lon": -73.9666960 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565979239, + "bounds": { + "minlat": 40.8567752, + "minlon": -73.9676791, + "maxlat": 40.8570209, + "maxlon": -73.9671571 + }, + "nodes": [ + 5449420313, + 5449420314, + 5449420317, + 5449420315, + 5449420312 + ], + "geometry": [ + { "lat": 40.8570209, "lon": -73.9676791 }, + { "lat": 40.8569397, "lon": -73.9675463 }, + { "lat": 40.8568238, "lon": -73.9672590 }, + { "lat": 40.8567984, "lon": -73.9671985 }, + { "lat": 40.8567752, "lon": -73.9671571 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565979240, + "bounds": { + "minlat": 40.8566743, + "minlon": -73.9671571, + "maxlat": 40.8567752, + "maxlon": -73.9668881 + }, + "nodes": [ + 5449420312, + 5449420316 + ], + "geometry": [ + { "lat": 40.8567752, "lon": -73.9671571 }, + { "lat": 40.8566743, "lon": -73.9668881 } + ], + "tags": { + "highway": "service", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 565979242, + "bounds": { + "minlat": 40.8566147, + "minlon": -73.9668881, + "maxlat": 40.8566743, + "maxlon": -73.9667281 + }, + "nodes": [ + 5449420316, + 5449420318 + ], + "geometry": [ + { "lat": 40.8566743, "lon": -73.9668881 }, + { "lat": 40.8566147, "lon": -73.9667281 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565980167, + "bounds": { + "minlat": 40.8563898, + "minlon": -73.9673160, + "maxlat": 40.8566989, + "maxlon": -73.9667770 + }, + "nodes": [ + 5449422231, + 5449422235, + 5449422234, + 5449422232, + 5449422230 + ], + "geometry": [ + { "lat": 40.8565344, "lon": -73.9667770 }, + { "lat": 40.8566989, "lon": -73.9672229 }, + { "lat": 40.8566320, "lon": -73.9672656 }, + { "lat": 40.8565531, "lon": -73.9673160 }, + { "lat": 40.8563898, "lon": -73.9668647 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565980169, + "bounds": { + "minlat": 40.8566320, + "minlon": -73.9677850, + "maxlat": 40.8568200, + "maxlon": -73.9672656 + }, + "nodes": [ + 5449422233, + 5449422234 + ], + "geometry": [ + { "lat": 40.8568200, "lon": -73.9677850 }, + { "lat": 40.8566320, "lon": -73.9672656 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565986493, + "bounds": { + "minlat": 40.8522418, + "minlon": -73.9655029, + "maxlat": 40.8522817, + "maxlon": -73.9653804 + }, + "nodes": [ + 5449432063, + 5449432069, + 5449432067, + 10000901914, + 5449432065 + ], + "geometry": [ + { "lat": 40.8522418, "lon": -73.9655029 }, + { "lat": 40.8522643, "lon": -73.9654589 }, + { "lat": 40.8522736, "lon": -73.9654327 }, + { "lat": 40.8522770, "lon": -73.9654107 }, + { "lat": 40.8522817, "lon": -73.9653804 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565986497, + "bounds": { + "minlat": 40.8524227, + "minlon": -73.9652895, + "maxlat": 40.8524315, + "maxlon": -73.9652598 + }, + "nodes": [ + 5449432068, + 5449432071 + ], + "geometry": [ + { "lat": 40.8524227, "lon": -73.9652598 }, + { "lat": 40.8524315, "lon": -73.9652895 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565986498, + "bounds": { + "minlat": 40.8522682, + "minlon": -73.9653804, + "maxlat": 40.8522817, + "maxlon": -73.9653372 + }, + "nodes": [ + 5449432065, + 5449432064 + ], + "geometry": [ + { "lat": 40.8522817, "lon": -73.9653804 }, + { "lat": 40.8522682, "lon": -73.9653372 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565986916, + "bounds": { + "minlat": 40.8517734, + "minlon": -73.9651685, + "maxlat": 40.8518780, + "maxlon": -73.9651229 + }, + "nodes": [ + 5449433353, + 10000920075, + 10000920026, + 5449433350 + ], + "geometry": [ + { "lat": 40.8518780, "lon": -73.9651229 }, + { "lat": 40.8518496, "lon": -73.9651353 }, + { "lat": 40.8518313, "lon": -73.9651433 }, + { "lat": 40.8517734, "lon": -73.9651685 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565986918, + "bounds": { + "minlat": 40.8518314, + "minlon": -73.9654175, + "maxlat": 40.8519378, + "maxlon": -73.9653697 + }, + "nodes": [ + 5449433351, + 10000920021, + 10000920023, + 5449433352 + ], + "geometry": [ + { "lat": 40.8519378, "lon": -73.9653697 }, + { "lat": 40.8519072, "lon": -73.9653835 }, + { "lat": 40.8518914, "lon": -73.9653905 }, + { "lat": 40.8518314, "lon": -73.9654175 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565987375, + "bounds": { + "minlat": 40.8512064, + "minlon": -73.9654957, + "maxlat": 40.8512663, + "maxlon": -73.9652061 + }, + "nodes": [ + 5449431661, + 5449431657, + 5449431659 + ], + "geometry": [ + { "lat": 40.8512663, "lon": -73.9654957 }, + { "lat": 40.8512064, "lon": -73.9652664 }, + { "lat": 40.8512084, "lon": -73.9652061 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565987376, + "bounds": { + "minlat": 40.8511730, + "minlon": -73.9652061, + "maxlat": 40.8515715, + "maxlon": -73.9649024 + }, + "nodes": [ + 5449431660, + 5449431659, + 5449431662, + 5449431658 + ], + "geometry": [ + { "lat": 40.8511730, "lon": -73.9651009 }, + { "lat": 40.8512084, "lon": -73.9652061 }, + { "lat": 40.8515715, "lon": -73.9650187 }, + { "lat": 40.8515357, "lon": -73.9649024 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565988010, + "bounds": { + "minlat": 40.8509460, + "minlon": -73.9646106, + "maxlat": 40.8509569, + "maxlon": -73.9644585 + }, + "nodes": [ + 5449436926, + 5449436925, + 5449436928 + ], + "geometry": [ + { "lat": 40.8509569, "lon": -73.9646106 }, + { "lat": 40.8509536, "lon": -73.9645695 }, + { "lat": 40.8509460, "lon": -73.9644585 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565988011, + "bounds": { + "minlat": 40.8506042, + "minlon": -73.9646777, + "maxlat": 40.8506191, + "maxlon": -73.9645024 + }, + "nodes": [ + 5449436923, + 5449436927, + 5449436924 + ], + "geometry": [ + { "lat": 40.8506191, "lon": -73.9646777 }, + { "lat": 40.8506131, "lon": -73.9646238 }, + { "lat": 40.8506042, "lon": -73.9645024 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565988052, + "bounds": { + "minlat": 40.8503819, + "minlon": -73.9648223, + "maxlat": 40.8504214, + "maxlon": -73.9648185 + }, + "nodes": [ + 6851079672, + 5449437368 + ], + "geometry": [ + { "lat": 40.8503819, "lon": -73.9648223 }, + { "lat": 40.8504214, "lon": -73.9648185 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565990300, + "bounds": { + "minlat": 40.8458470, + "minlon": -73.9680184, + "maxlat": 40.8461727, + "maxlon": -73.9675795 + }, + "nodes": [ + 5449442080, + 5449442081, + 5449442082, + 5449442079, + 5449442083 + ], + "geometry": [ + { "lat": 40.8460023, "lon": -73.9680184 }, + { "lat": 40.8461727, "lon": -73.9679540 }, + { "lat": 40.8461487, "lon": -73.9678609 }, + { "lat": 40.8460394, "lon": -73.9675795 }, + { "lat": 40.8458470, "lon": -73.9677059 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565990606, + "bounds": { + "minlat": 40.8436749, + "minlon": -73.9695258, + "maxlat": 40.8439698, + "maxlon": -73.9691191 + }, + "nodes": [ + 5449443625, + 5449443624, + 5449443626, + 5449443622, + 103250704, + 5449443621, + 5449443623, + 5449443627 + ], + "geometry": [ + { "lat": 40.8436749, "lon": -73.9695258 }, + { "lat": 40.8436891, "lon": -73.9694426 }, + { "lat": 40.8437182, "lon": -73.9693471 }, + { "lat": 40.8437588, "lon": -73.9692210 }, + { "lat": 40.8437924, "lon": -73.9691671 }, + { "lat": 40.8438301, "lon": -73.9691814 }, + { "lat": 40.8438816, "lon": -73.9691660 }, + { "lat": 40.8439698, "lon": -73.9691191 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565991223, + "bounds": { + "minlat": 40.8440606, + "minlon": -73.9687939, + "maxlat": 40.8442542, + "maxlon": -73.9686752 + }, + "nodes": [ + 5449445111, + 5449445117, + 5449445116, + 5449445118, + 5449445110, + 5449445113 + ], + "geometry": [ + { "lat": 40.8440606, "lon": -73.9687939 }, + { "lat": 40.8440892, "lon": -73.9687660 }, + { "lat": 40.8441321, "lon": -73.9687234 }, + { "lat": 40.8441869, "lon": -73.9686859 }, + { "lat": 40.8442194, "lon": -73.9686752 }, + { "lat": 40.8442542, "lon": -73.9687077 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565994082, + "bounds": { + "minlat": 40.8515323, + "minlon": -73.9739014, + "maxlat": 40.8518624, + "maxlon": -73.9734649 + }, + "nodes": [ + 5449448611, + 5449448615, + 5449448610, + 5449448609, + 5449448614, + 5449448612, + 5449448613 + ], + "geometry": [ + { "lat": 40.8516726, "lon": -73.9734649 }, + { "lat": 40.8518624, "lon": -73.9738035 }, + { "lat": 40.8518320, "lon": -73.9738465 }, + { "lat": 40.8517874, "lon": -73.9738907 }, + { "lat": 40.8517539, "lon": -73.9739014 }, + { "lat": 40.8517123, "lon": -73.9738947 }, + { "lat": 40.8515323, "lon": -73.9736056 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565994124, + "bounds": { + "minlat": 40.8519872, + "minlon": -73.9732765, + "maxlat": 40.8524310, + "maxlon": -73.9728346 + }, + "nodes": [ + 5449450825, + 5449450826 + ], + "geometry": [ + { "lat": 40.8519872, "lon": -73.9732765 }, + { "lat": 40.8524310, "lon": -73.9728346 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 565994266, + "bounds": { + "minlat": 40.8522944, + "minlon": -73.9726264, + "maxlat": 40.8526283, + "maxlon": -73.9719803 + }, + "nodes": [ + 5449454094, + 5449454097, + 5449454095, + 5449454096, + 9360903331, + 4204795089 + ], + "geometry": [ + { "lat": 40.8524426, "lon": -73.9719803 }, + { "lat": 40.8526225, "lon": -73.9722643 }, + { "lat": 40.8526283, "lon": -73.9722975 }, + { "lat": 40.8526205, "lon": -73.9723273 }, + { "lat": 40.8523395, "lon": -73.9725850 }, + { "lat": 40.8522944, "lon": -73.9726264 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565994370, + "bounds": { + "minlat": 40.8506351, + "minlon": -73.9728451, + "maxlat": 40.8513850, + "maxlon": -73.9720229 + }, + "nodes": [ + 5449456338, + 5449456342, + 5449456340, + 5449456339 + ], + "geometry": [ + { "lat": 40.8506351, "lon": -73.9726058 }, + { "lat": 40.8512348, "lon": -73.9720229 }, + { "lat": 40.8513850, "lon": -73.9722764 }, + { "lat": 40.8507940, "lon": -73.9728451 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565994373, + "bounds": { + "minlat": 40.8496107, + "minlon": -73.9754360, + "maxlat": 40.8503785, + "maxlon": -73.9746939 + }, + "nodes": [ + 5449456432, + 103243254 + ], + "geometry": [ + { "lat": 40.8496107, "lon": -73.9754360 }, + { "lat": 40.8503785, "lon": -73.9746939 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565994775, + "bounds": { + "minlat": 40.8517080, + "minlon": -73.9755198, + "maxlat": 40.8521789, + "maxlon": -73.9750441 + }, + "nodes": [ + 5449460019, + 5449460001, + 5449460010 + ], + "geometry": [ + { "lat": 40.8517080, "lon": -73.9755198 }, + { "lat": 40.8517809, "lon": -73.9754462 }, + { "lat": 40.8521789, "lon": -73.9750441 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565994776, + "bounds": { + "minlat": 40.8514861, + "minlon": -73.9754182, + "maxlat": 40.8520684, + "maxlon": -73.9748429 + }, + "nodes": [ + 5449460008, + 5449460018, + 5449460005 + ], + "geometry": [ + { "lat": 40.8520684, "lon": -73.9748429 }, + { "lat": 40.8516646, "lon": -73.9752426 }, + { "lat": 40.8514861, "lon": -73.9754182 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565994777, + "bounds": { + "minlat": 40.8516646, + "minlon": -73.9759550, + "maxlat": 40.8519242, + "maxlon": -73.9752426 + }, + "nodes": [ + 5449460423, + 5449460011, + 5449460001, + 5449460018 + ], + "geometry": [ + { "lat": 40.8519242, "lon": -73.9759550 }, + { "lat": 40.8519033, "lon": -73.9758584 }, + { "lat": 40.8517809, "lon": -73.9754462 }, + { "lat": 40.8516646, "lon": -73.9752426 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565994779, + "bounds": { + "minlat": 40.8517080, + "minlon": -73.9758474, + "maxlat": 40.8518036, + "maxlon": -73.9755198 + }, + "nodes": [ + 5449460020, + 5449460019 + ], + "geometry": [ + { "lat": 40.8518036, "lon": -73.9758474 }, + { "lat": 40.8517080, "lon": -73.9755198 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565994780, + "bounds": { + "minlat": 40.8517775, + "minlon": -73.9758663, + "maxlat": 40.8518608, + "maxlon": -73.9755987 + }, + "nodes": [ + 5449460002, + 5449460014 + ], + "geometry": [ + { "lat": 40.8518608, "lon": -73.9758663 }, + { "lat": 40.8517775, "lon": -73.9755987 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565994781, + "bounds": { + "minlat": 40.8515645, + "minlon": -73.9762327, + "maxlat": 40.8518608, + "maxlon": -73.9758460 + }, + "nodes": [ + 5449460013, + 5449460017, + 5449460015, + 5449460016, + 5449460004, + 5449460007, + 5449460003, + 5449460020, + 5449460424, + 5449460002 + ], + "geometry": [ + { "lat": 40.8516064, "lon": -73.9762327 }, + { "lat": 40.8515772, "lon": -73.9761680 }, + { "lat": 40.8515655, "lon": -73.9761078 }, + { "lat": 40.8515645, "lon": -73.9760381 }, + { "lat": 40.8515865, "lon": -73.9759842 }, + { "lat": 40.8516869, "lon": -73.9758876 }, + { "lat": 40.8517458, "lon": -73.9758501 }, + { "lat": 40.8518036, "lon": -73.9758474 }, + { "lat": 40.8518320, "lon": -73.9758460 }, + { "lat": 40.8518608, "lon": -73.9758663 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565994914, + "bounds": { + "minlat": 40.8504192, + "minlon": -73.9769869, + "maxlat": 40.8507177, + "maxlon": -73.9764686 + }, + "nodes": [ + 5449461781, + 5449461769, + 5449461777, + 5449461773 + ], + "geometry": [ + { "lat": 40.8507177, "lon": -73.9769869 }, + { "lat": 40.8506851, "lon": -73.9769276 }, + { "lat": 40.8506355, "lon": -73.9768480 }, + { "lat": 40.8504192, "lon": -73.9764686 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565994915, + "bounds": { + "minlat": 40.8504679, + "minlon": -73.9764123, + "maxlat": 40.8505744, + "maxlon": -73.9762862 + }, + "nodes": [ + 5449461778, + 5449461780 + ], + "geometry": [ + { "lat": 40.8504679, "lon": -73.9764123 }, + { "lat": 40.8505744, "lon": -73.9762862 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565994916, + "bounds": { + "minlat": 40.8518608, + "minlon": -73.9759550, + "maxlat": 40.8519242, + "maxlon": -73.9758663 + }, + "nodes": [ + 5449460002, + 5449460012, + 5449460423 + ], + "geometry": [ + { "lat": 40.8518608, "lon": -73.9758663 }, + { "lat": 40.8518797, "lon": -73.9758796 }, + { "lat": 40.8519242, "lon": -73.9759550 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565994917, + "bounds": { + "minlat": 40.8505744, + "minlon": -73.9768281, + "maxlat": 40.8511286, + "maxlon": -73.9760110 + }, + "nodes": [ + 5449461771, + 5449461775, + 5449461768, + 5449461774, + 5449461772, + 5449461780, + 5449461770, + 5449461783, + 5449461784, + 5449461779 + ], + "geometry": [ + { "lat": 40.8509067, "lon": -73.9768281 }, + { "lat": 40.8508511, "lon": -73.9767164 }, + { "lat": 40.8508209, "lon": -73.9766939 }, + { "lat": 40.8507283, "lon": -73.9765300 }, + { "lat": 40.8506888, "lon": -73.9764898 }, + { "lat": 40.8505744, "lon": -73.9762862 }, + { "lat": 40.8508653, "lon": -73.9760110 }, + { "lat": 40.8511141, "lon": -73.9764444 }, + { "lat": 40.8511232, "lon": -73.9765879 }, + { "lat": 40.8511286, "lon": -73.9766412 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565995051, + "bounds": { + "minlat": 40.8522742, + "minlon": -73.9746995, + "maxlat": 40.8530101, + "maxlon": -73.9738872 + }, + "nodes": [ + 12544373112, + 5449463784, + 5449463781, + 5449463790, + 5449463787, + 5449463780, + 5449463791, + 5449463789, + 5449463788, + 5449463792, + 5449463968, + 5449463783 + ], + "geometry": [ + { "lat": 40.8530101, "lon": -73.9738872 }, + { "lat": 40.8529325, "lon": -73.9739588 }, + { "lat": 40.8528325, "lon": -73.9740520 }, + { "lat": 40.8527422, "lon": -73.9741338 }, + { "lat": 40.8526824, "lon": -73.9741780 }, + { "lat": 40.8526398, "lon": -73.9742183 }, + { "lat": 40.8526104, "lon": -73.9742652 }, + { "lat": 40.8525948, "lon": -73.9743266 }, + { "lat": 40.8525715, "lon": -73.9743896 }, + { "lat": 40.8525482, "lon": -73.9744285 }, + { "lat": 40.8523661, "lon": -73.9746086 }, + { "lat": 40.8522742, "lon": -73.9746995 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 565995053, + "bounds": { + "minlat": 40.8526520, + "minlon": -73.9741043, + "maxlat": 40.8530251, + "maxlon": -73.9737473 + }, + "nodes": [ + 5449463782, + 5449463786 + ], + "geometry": [ + { "lat": 40.8530251, "lon": -73.9737473 }, + { "lat": 40.8526520, "lon": -73.9741043 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565995095, + "bounds": { + "minlat": 40.8523661, + "minlon": -73.9747553, + "maxlat": 40.8529421, + "maxlon": -73.9742759 + }, + "nodes": [ + 5449463970, + 5449463969, + 5449463968 + ], + "geometry": [ + { "lat": 40.8529421, "lon": -73.9742759 }, + { "lat": 40.8524520, "lon": -73.9747553 }, + { "lat": 40.8523661, "lon": -73.9746086 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565995143, + "bounds": { + "minlat": 40.8520715, + "minlon": -73.9749854, + "maxlat": 40.8523821, + "maxlon": -73.9745644 + }, + "nodes": [ + 5449464626, + 5449464625, + 5449464624, + 5449464623 + ], + "geometry": [ + { "lat": 40.8523821, "lon": -73.9748692 }, + { "lat": 40.8522671, "lon": -73.9749854 }, + { "lat": 40.8521052, "lon": -73.9747105 }, + { "lat": 40.8520715, "lon": -73.9745644 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565995154, + "bounds": { + "minlat": 40.8511426, + "minlon": -73.9764893, + "maxlat": 40.8513043, + "maxlon": -73.9760915 + }, + "nodes": [ + 5449464506, + 5449464504, + 5449464505 + ], + "geometry": [ + { "lat": 40.8513043, "lon": -73.9764893 }, + { "lat": 40.8511426, "lon": -73.9762027 }, + { "lat": 40.8512358, "lon": -73.9760915 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565995244, + "bounds": { + "minlat": 40.8537282, + "minlon": -73.9796430, + "maxlat": 40.8543445, + "maxlon": -73.9787711 + }, + "nodes": [ + 5449465057, + 5449465058, + 5449465059, + 5449465060 + ], + "geometry": [ + { "lat": 40.8537282, "lon": -73.9790151 }, + { "lat": 40.8541204, "lon": -73.9796430 }, + { "lat": 40.8543445, "lon": -73.9794063 }, + { "lat": 40.8539648, "lon": -73.9787711 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565995446, + "bounds": { + "minlat": 40.8547423, + "minlon": -73.9795368, + "maxlat": 40.8553674, + "maxlon": -73.9788434 + }, + "nodes": [ + 5449465002, + 5449465000, + 5449465015, + 5449465004, + 5449465012, + 5449465005, + 5449465016, + 5449465008, + 5449465017, + 5449465010, + 5449465011, + 5449464997, + 5449465003, + 5449464995, + 5449465001, + 5449464999, + 5449464998 + ], + "geometry": [ + { "lat": 40.8552018, "lon": -73.9788488 }, + { "lat": 40.8551572, "lon": -73.9788434 }, + { "lat": 40.8549942, "lon": -73.9789912 }, + { "lat": 40.8548400, "lon": -73.9791562 }, + { "lat": 40.8547771, "lon": -73.9792272 }, + { "lat": 40.8547423, "lon": -73.9792806 }, + { "lat": 40.8547426, "lon": -73.9793225 }, + { "lat": 40.8547606, "lon": -73.9793651 }, + { "lat": 40.8548011, "lon": -73.9794603 }, + { "lat": 40.8548440, "lon": -73.9795048 }, + { "lat": 40.8548938, "lon": -73.9795236 }, + { "lat": 40.8549688, "lon": -73.9795344 }, + { "lat": 40.8550395, "lon": -73.9795368 }, + { "lat": 40.8550811, "lon": -73.9795140 }, + { "lat": 40.8553299, "lon": -73.9792299 }, + { "lat": 40.8553611, "lon": -73.9791890 }, + { "lat": 40.8553674, "lon": -73.9791449 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 565995447, + "bounds": { + "minlat": 40.8544028, + "minlon": -73.9792675, + "maxlat": 40.8546421, + "maxlon": -73.9790094 + }, + "nodes": [ + 5449465006, + 5449465014 + ], + "geometry": [ + { "lat": 40.8544028, "lon": -73.9792675 }, + { "lat": 40.8546421, "lon": -73.9790094 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565995448, + "bounds": { + "minlat": 40.8552018, + "minlon": -73.9791449, + "maxlat": 40.8553674, + "maxlon": -73.9787267 + }, + "nodes": [ + 5449464998, + 5449465007, + 5449464996, + 5449465013, + 5449465002, + 5449465009 + ], + "geometry": [ + { "lat": 40.8553674, "lon": -73.9791449 }, + { "lat": 40.8553514, "lon": -73.9790870 }, + { "lat": 40.8552921, "lon": -73.9789950 }, + { "lat": 40.8552253, "lon": -73.9788864 }, + { "lat": 40.8552018, "lon": -73.9788488 }, + { "lat": 40.8552942, "lon": -73.9787267 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565995477, + "bounds": { + "minlat": 40.8550875, + "minlon": -73.9798750, + "maxlat": 40.8556981, + "maxlon": -73.9792920 + }, + "nodes": [ + 5449454961, + 5449454963, + 103214630 + ], + "geometry": [ + { "lat": 40.8550875, "lon": -73.9798750 }, + { "lat": 40.8556981, "lon": -73.9794499 }, + { "lat": 40.8556480, "lon": -73.9792920 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565995478, + "bounds": { + "minlat": 40.8552566, + "minlon": -73.9785196, + "maxlat": 40.8557522, + "maxlon": -73.9779897 + }, + "nodes": [ + 5449454964, + 5449454965 + ], + "geometry": [ + { "lat": 40.8552566, "lon": -73.9785196 }, + { "lat": 40.8557522, "lon": -73.9779897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565995479, + "bounds": { + "minlat": 40.8557833, + "minlon": -73.9794123, + "maxlat": 40.8564400, + "maxlon": -73.9788881 + }, + "nodes": [ + 5449454970, + 5449454969, + 5449454974, + 5449454958, + 5449454977, + 5449454973, + 5449454966, + 5449454976 + ], + "geometry": [ + { "lat": 40.8557833, "lon": -73.9792487 }, + { "lat": 40.8558817, "lon": -73.9794123 }, + { "lat": 40.8561627, "lon": -73.9792179 }, + { "lat": 40.8561505, "lon": -73.9791723 }, + { "lat": 40.8561523, "lon": -73.9791371 }, + { "lat": 40.8561685, "lon": -73.9791036 }, + { "lat": 40.8564081, "lon": -73.9789519 }, + { "lat": 40.8564400, "lon": -73.9788881 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565995480, + "bounds": { + "minlat": 40.8554835, + "minlon": -73.9790291, + "maxlat": 40.8560458, + "maxlon": -73.9784345 + }, + "nodes": [ + 5449454960, + 5449454968, + 5449454967, + 5449454957, + 5449454956, + 12484561250, + 5449454975 + ], + "geometry": [ + { "lat": 40.8560458, "lon": -73.9784345 }, + { "lat": 40.8559680, "lon": -73.9785285 }, + { "lat": 40.8558371, "lon": -73.9786760 }, + { "lat": 40.8557742, "lon": -73.9787431 }, + { "lat": 40.8556768, "lon": -73.9788464 }, + { "lat": 40.8555374, "lon": -73.9789782 }, + { "lat": 40.8554835, "lon": -73.9790291 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565995481, + "bounds": { + "minlat": 40.8555997, + "minlon": -73.9792148, + "maxlat": 40.8560024, + "maxlon": -73.9790274 + }, + "nodes": [ + 5449454971, + 5449454955, + 5449454962, + 5449454959, + 5449454972 + ], + "geometry": [ + { "lat": 40.8560024, "lon": -73.9790274 }, + { "lat": 40.8558946, "lon": -73.9791076 }, + { "lat": 40.8558462, "lon": -73.9790462 }, + { "lat": 40.8557945, "lon": -73.9790542 }, + { "lat": 40.8555997, "lon": -73.9792148 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565995631, + "bounds": { + "minlat": 40.8561992, + "minlon": -73.9798468, + "maxlat": 40.8565131, + "maxlon": -73.9796738 + }, + "nodes": [ + 5449467672, + 6964899048, + 5449467663, + 5449467661 + ], + "geometry": [ + { "lat": 40.8561992, "lon": -73.9798468 }, + { "lat": 40.8563509, "lon": -73.9797439 }, + { "lat": 40.8564543, "lon": -73.9796738 }, + { "lat": 40.8565131, "lon": -73.9796823 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565995632, + "bounds": { + "minlat": 40.8563757, + "minlon": -73.9796556, + "maxlat": 40.8566504, + "maxlon": -73.9792632 + }, + "nodes": [ + 5449467667, + 5449467673, + 5449467664, + 5449467658, + 5449467656, + 5449467662 + ], + "geometry": [ + { "lat": 40.8565532, "lon": -73.9796556 }, + { "lat": 40.8565370, "lon": -73.9796148 }, + { "lat": 40.8565624, "lon": -73.9795545 }, + { "lat": 40.8566504, "lon": -73.9794010 }, + { "lat": 40.8565266, "lon": -73.9792632 }, + { "lat": 40.8563757, "lon": -73.9793627 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 565995682, + "bounds": { + "minlat": 40.8532707, + "minlon": -73.9827731, + "maxlat": 40.8535233, + "maxlon": -73.9824974 + }, + "nodes": [ + 5449468154, + 5449468153 + ], + "geometry": [ + { "lat": 40.8532707, "lon": -73.9827731 }, + { "lat": 40.8535233, "lon": -73.9824974 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 565995683, + "bounds": { + "minlat": 40.8531713, + "minlon": -73.9825787, + "maxlat": 40.8534187, + "maxlon": -73.9823157 + }, + "nodes": [ + 5449468152, + 5449468151 + ], + "geometry": [ + { "lat": 40.8531713, "lon": -73.9825787 }, + { "lat": 40.8534187, "lon": -73.9823157 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 566917082, + "bounds": { + "minlat": 40.8723563, + "minlon": -73.9129014, + "maxlat": 40.8728670, + "maxlon": -73.9126419 + }, + "nodes": [ + 1544809872, + 7779712808, + 5458505375, + 5458505376, + 5458505377, + 5458505378, + 5458505379, + 5458505380, + 5458505381, + 5458505382, + 5458505383, + 5458505384, + 5458505385, + 5458505403 + ], + "geometry": [ + { "lat": 40.8723563, "lon": -73.9128142 }, + { "lat": 40.8723804, "lon": -73.9128480 }, + { "lat": 40.8724043, "lon": -73.9128817 }, + { "lat": 40.8724361, "lon": -73.9129014 }, + { "lat": 40.8724640, "lon": -73.9128947 }, + { "lat": 40.8724962, "lon": -73.9128777 }, + { "lat": 40.8725299, "lon": -73.9128445 }, + { "lat": 40.8726072, "lon": -73.9127423 }, + { "lat": 40.8726753, "lon": -73.9126599 }, + { "lat": 40.8727096, "lon": -73.9126419 }, + { "lat": 40.8727454, "lon": -73.9126438 }, + { "lat": 40.8728034, "lon": -73.9126864 }, + { "lat": 40.8728428, "lon": -73.9127498 }, + { "lat": 40.8728670, "lon": -73.9128018 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 566917085, + "bounds": { + "minlat": 40.8727096, + "minlon": -73.9126419, + "maxlat": 40.8732388, + "maxlon": -73.9123265 + }, + "nodes": [ + 5458505382, + 5458505404, + 9680673202, + 5458505405, + 5458505406, + 5458505407, + 5458505408, + 5458505409, + 5458505410, + 5458505411, + 5458505412 + ], + "geometry": [ + { "lat": 40.8727096, "lon": -73.9126419 }, + { "lat": 40.8727433, "lon": -73.9125652 }, + { "lat": 40.8727578, "lon": -73.9125345 }, + { "lat": 40.8727805, "lon": -73.9124866 }, + { "lat": 40.8728314, "lon": -73.9124070 }, + { "lat": 40.8728879, "lon": -73.9123483 }, + { "lat": 40.8729524, "lon": -73.9123265 }, + { "lat": 40.8730362, "lon": -73.9123502 }, + { "lat": 40.8730999, "lon": -73.9123777 }, + { "lat": 40.8731636, "lon": -73.9123909 }, + { "lat": 40.8732388, "lon": -73.9123644 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 566917088, + "bounds": { + "minlat": 40.8727848, + "minlon": -73.9134876, + "maxlat": 40.8730340, + "maxlon": -73.9128018 + }, + "nodes": [ + 5458505403, + 5458505386, + 5458505387, + 5458505388, + 5458505389, + 5458505390, + 5458505391, + 5458505392, + 5458505393, + 5458505394, + 5458505395, + 5458505396, + 5458505397, + 5458505398, + 5458505399, + 5458505400, + 5458505401, + 5458505402, + 5458505403 + ], + "geometry": [ + { "lat": 40.8728670, "lon": -73.9128018 }, + { "lat": 40.8729280, "lon": -73.9129326 }, + { "lat": 40.8729782, "lon": -73.9130567 }, + { "lat": 40.8730118, "lon": -73.9131864 }, + { "lat": 40.8730261, "lon": -73.9132773 }, + { "lat": 40.8730340, "lon": -73.9133701 }, + { "lat": 40.8730211, "lon": -73.9134421 }, + { "lat": 40.8730025, "lon": -73.9134677 }, + { "lat": 40.8729581, "lon": -73.9134876 }, + { "lat": 40.8729080, "lon": -73.9134639 }, + { "lat": 40.8728686, "lon": -73.9134146 }, + { "lat": 40.8728314, "lon": -73.9133455 }, + { "lat": 40.8727970, "lon": -73.9132233 }, + { "lat": 40.8727848, "lon": -73.9130974 }, + { "lat": 40.8727941, "lon": -73.9129942 }, + { "lat": 40.8728127, "lon": -73.9129307 }, + { "lat": 40.8728428, "lon": -73.9128881 }, + { "lat": 40.8728607, "lon": -73.9128502 }, + { "lat": 40.8728670, "lon": -73.9128018 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 566917092, + "bounds": { + "minlat": 40.8714809, + "minlon": -73.9154095, + "maxlat": 40.8729319, + "maxlon": -73.9147693 + }, + "nodes": [ + 5458505414, + 9561143922, + 5458505822, + 5458505415, + 5458505416, + 5458505417, + 5458505418 + ], + "geometry": [ + { "lat": 40.8714809, "lon": -73.9147693 }, + { "lat": 40.8715828, "lon": -73.9147714 }, + { "lat": 40.8716347, "lon": -73.9147724 }, + { "lat": 40.8720415, "lon": -73.9147806 }, + { "lat": 40.8725027, "lon": -73.9154095 }, + { "lat": 40.8728474, "lon": -73.9150127 }, + { "lat": 40.8729319, "lon": -73.9149980 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 566917095, + "bounds": { + "minlat": 40.8729319, + "minlon": -73.9151288, + "maxlat": 40.8732878, + "maxlon": -73.9146603 + }, + "nodes": [ + 5458505418, + 5458505419, + 5458505420, + 5458505821, + 5458505418 + ], + "geometry": [ + { "lat": 40.8729319, "lon": -73.9149980 }, + { "lat": 40.8730484, "lon": -73.9151288 }, + { "lat": 40.8732878, "lon": -73.9147975 }, + { "lat": 40.8731745, "lon": -73.9146603 }, + { "lat": 40.8729319, "lon": -73.9149980 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 566921850, + "bounds": { + "minlat": 40.7638538, + "minlon": -73.9987162, + "maxlat": 40.7639539, + "maxlon": -73.9984773 + }, + "nodes": [ + 373941276, + 5458524652, + 13100041860, + 5458524653 + ], + "geometry": [ + { "lat": 40.7639539, "lon": -73.9987162 }, + { "lat": 40.7639038, "lon": -73.9985989 }, + { "lat": 40.7638987, "lon": -73.9985848 }, + { "lat": 40.7638538, "lon": -73.9984773 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 566921851, + "bounds": { + "minlat": 40.7637577, + "minlon": -73.9980935, + "maxlat": 40.7637774, + "maxlon": -73.9977764 + }, + "nodes": [ + 5458524656, + 5458524657, + 5458524658 + ], + "geometry": [ + { "lat": 40.7637577, "lon": -73.9980935 }, + { "lat": 40.7637619, "lon": -73.9978446 }, + { "lat": 40.7637774, "lon": -73.9977764 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 566921852, + "bounds": { + "minlat": 40.7636772, + "minlon": -73.9986068, + "maxlat": 40.7638538, + "maxlon": -73.9984773 + }, + "nodes": [ + 5458524653, + 13100041849, + 5458524660 + ], + "geometry": [ + { "lat": 40.7638538, "lon": -73.9984773 }, + { "lat": 40.7638190, "lon": -73.9985028 }, + { "lat": 40.7636772, "lon": -73.9986068 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 566921853, + "bounds": { + "minlat": 40.7634416, + "minlon": -73.9986068, + "maxlat": 40.7637577, + "maxlon": -73.9979407 + }, + "nodes": [ + 5458524660, + 5458524661, + 13100041848, + 5458524656 + ], + "geometry": [ + { "lat": 40.7636772, "lon": -73.9986068 }, + { "lat": 40.7634416, "lon": -73.9980415 }, + { "lat": 40.7635814, "lon": -73.9979407 }, + { "lat": 40.7637577, "lon": -73.9980935 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 566921854, + "bounds": { + "minlat": 40.7632770, + "minlon": -73.9981624, + "maxlat": 40.7634416, + "maxlon": -73.9980415 + }, + "nodes": [ + 5458524664, + 10166521622, + 13100041857, + 5458524661 + ], + "geometry": [ + { "lat": 40.7632770, "lon": -73.9981624 }, + { "lat": 40.7633366, "lon": -73.9981188 }, + { "lat": 40.7633520, "lon": -73.9981075 }, + { "lat": 40.7634416, "lon": -73.9980415 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 566921855, + "bounds": { + "minlat": 40.7630563, + "minlon": -73.9976461, + "maxlat": 40.7636868, + "maxlon": -73.9971920 + }, + "nodes": [ + 5458524665, + 10166521621, + 10166521633, + 5458524666 + ], + "geometry": [ + { "lat": 40.7630563, "lon": -73.9976461 }, + { "lat": 40.7631188, "lon": -73.9976011 }, + { "lat": 40.7636327, "lon": -73.9972310 }, + { "lat": 40.7636868, "lon": -73.9971920 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 566926217, + "bounds": { + "minlat": 40.7103323, + "minlon": -73.9880981, + "maxlat": 40.7106808, + "maxlon": -73.9874225 + }, + "nodes": [ + 5458544539, + 8310246588, + 5458544545, + 13164657095, + 13164657094, + 5458544544, + 5458544540, + 13164657093, + 5458544541, + 5458544543, + 13164657092, + 5458544546, + 8310246589, + 5458544542 + ], + "geometry": [ + { "lat": 40.7104021, "lon": -73.9874225 }, + { "lat": 40.7104750, "lon": -73.9874318 }, + { "lat": 40.7105722, "lon": -73.9874398 }, + { "lat": 40.7106092, "lon": -73.9874389 }, + { "lat": 40.7106372, "lon": -73.9874506 }, + { "lat": 40.7106747, "lon": -73.9875044 }, + { "lat": 40.7106808, "lon": -73.9875828 }, + { "lat": 40.7106419, "lon": -73.9880189 }, + { "lat": 40.7106237, "lon": -73.9880665 }, + { "lat": 40.7105871, "lon": -73.9880981 }, + { "lat": 40.7105450, "lon": -73.9880976 }, + { "lat": 40.7105135, "lon": -73.9880971 }, + { "lat": 40.7103965, "lon": -73.9880605 }, + { "lat": 40.7103323, "lon": -73.9880247 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 566926218, + "bounds": { + "minlat": 40.7105135, + "minlon": -73.9880971, + "maxlat": 40.7105722, + "maxlon": -73.9874398 + }, + "nodes": [ + 5458544545, + 5458544546 + ], + "geometry": [ + { "lat": 40.7105722, "lon": -73.9874398 }, + { "lat": 40.7105135, "lon": -73.9880971 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 566928442, + "bounds": { + "minlat": 40.7099297, + "minlon": -73.9872469, + "maxlat": 40.7102055, + "maxlon": -73.9866695 + }, + "nodes": [ + 11037590290, + 5458548433, + 5458548434, + 11037590289 + ], + "geometry": [ + { "lat": 40.7099428, "lon": -73.9866695 }, + { "lat": 40.7102055, "lon": -73.9867242 }, + { "lat": 40.7101471, "lon": -73.9872469 }, + { "lat": 40.7099297, "lon": -73.9872025 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 567482113, + "bounds": { + "minlat": 40.7731889, + "minlon": -74.0198665, + "maxlat": 40.7735496, + "maxlon": -74.0195228 + }, + "nodes": [ + 5462251720, + 5462260622, + 5462260623, + 5462260624 + ], + "geometry": [ + { "lat": 40.7735496, "lon": -74.0196881 }, + { "lat": 40.7734920, "lon": -74.0195228 }, + { "lat": 40.7732399, "lon": -74.0196381 }, + { "lat": 40.7731889, "lon": -74.0198665 } + ], + "tags": { + "covered": "no", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 567482114, + "bounds": { + "minlat": 40.7731889, + "minlon": -74.0198665, + "maxlat": 40.7734294, + "maxlon": -74.0197599 + }, + "nodes": [ + 5462251719, + 5462260624 + ], + "geometry": [ + { "lat": 40.7734294, "lon": -74.0197599 }, + { "lat": 40.7731889, "lon": -74.0198665 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 567482115, + "bounds": { + "minlat": 40.7729961, + "minlon": -74.0201863, + "maxlat": 40.7734941, + "maxlon": -74.0199694 + }, + "nodes": [ + 5462260627, + 5462260630, + 5462260626 + ], + "geometry": [ + { "lat": 40.7734941, "lon": -74.0199694 }, + { "lat": 40.7733504, "lon": -74.0200320 }, + { "lat": 40.7729961, "lon": -74.0201863 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 567716804, + "bounds": { + "minlat": 40.7665271, + "minlon": -73.9517315, + "maxlat": 40.7668036, + "maxlon": -73.9515379 + }, + "nodes": [ + 5463840961, + 10165922636, + 5463840963, + 5463840962 + ], + "geometry": [ + { "lat": 40.7668036, "lon": -73.9515379 }, + { "lat": 40.7667566, "lon": -73.9515720 }, + { "lat": 40.7667327, "lon": -73.9515892 }, + { "lat": 40.7665271, "lon": -73.9517315 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 567718319, + "bounds": { + "minlat": 40.8154599, + "minlon": -73.9360697, + "maxlat": 40.8158368, + "maxlon": -73.9358009 + }, + "nodes": [ + 5463851648, + 8212384272, + 5463851659, + 5463851649 + ], + "geometry": [ + { "lat": 40.8154599, "lon": -73.9360697 }, + { "lat": 40.8155338, "lon": -73.9360143 }, + { "lat": 40.8155632, "lon": -73.9359938 }, + { "lat": 40.8158368, "lon": -73.9358009 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 567718321, + "bounds": { + "minlat": 40.8155421, + "minlon": -73.9362671, + "maxlat": 40.8159100, + "maxlon": -73.9360006 + }, + "nodes": [ + 5463851650, + 8212384271, + 5463851658, + 5463851651 + ], + "geometry": [ + { "lat": 40.8155421, "lon": -73.9362671 }, + { "lat": 40.8156158, "lon": -73.9362143 }, + { "lat": 40.8156431, "lon": -73.9361948 }, + { "lat": 40.8159100, "lon": -73.9360006 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 567718322, + "bounds": { + "minlat": 40.8158344, + "minlon": -73.9369697, + "maxlat": 40.8162010, + "maxlon": -73.9367130 + }, + "nodes": [ + 5463851652, + 8212384270, + 5463851657, + 8212389996, + 5463851653 + ], + "geometry": [ + { "lat": 40.8158344, "lon": -73.9369697 }, + { "lat": 40.8159137, "lon": -73.9369124 }, + { "lat": 40.8159393, "lon": -73.9368939 }, + { "lat": 40.8159431, "lon": -73.9368913 }, + { "lat": 40.8162010, "lon": -73.9367130 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 567718324, + "bounds": { + "minlat": 40.8159270, + "minlon": -73.9371922, + "maxlat": 40.8162749, + "maxlon": -73.9369610 + }, + "nodes": [ + 5463851654, + 8212384269, + 5463851656, + 8212390006, + 5463851655 + ], + "geometry": [ + { "lat": 40.8159270, "lon": -73.9371922 }, + { "lat": 40.8160086, "lon": -73.9371380 }, + { "lat": 40.8160339, "lon": -73.9371212 }, + { "lat": 40.8160396, "lon": -73.9371174 }, + { "lat": 40.8162749, "lon": -73.9369610 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 567923719, + "bounds": { + "minlat": 40.8056386, + "minlon": -74.0009711, + "maxlat": 40.8059075, + "maxlon": -74.0007752 + }, + "nodes": [ + 5465261892, + 5465261898, + 5465261893 + ], + "geometry": [ + { "lat": 40.8059075, "lon": -74.0007752 }, + { "lat": 40.8057512, "lon": -74.0008891 }, + { "lat": 40.8056386, "lon": -74.0009711 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 567923721, + "bounds": { + "minlat": 40.8053428, + "minlon": -74.0012001, + "maxlat": 40.8056670, + "maxlon": -74.0007810 + }, + "nodes": [ + 5465261894, + 5465261895, + 5465261896, + 5465261897, + 5465261893, + 5465261894 + ], + "geometry": [ + { "lat": 40.8056670, "lon": -74.0010328 }, + { "lat": 40.8054586, "lon": -74.0012001 }, + { "lat": 40.8053428, "lon": -74.0009483 }, + { "lat": 40.8055511, "lon": -74.0007810 }, + { "lat": 40.8056386, "lon": -74.0009711 }, + { "lat": 40.8056670, "lon": -74.0010328 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 567924216, + "bounds": { + "minlat": 40.8044348, + "minlon": -73.9997400, + "maxlat": 40.8051813, + "maxlon": -73.9991896 + }, + "nodes": [ + 5465266061, + 5465266062, + 5465266063, + 5465266064 + ], + "geometry": [ + { "lat": 40.8051813, "lon": -73.9991896 }, + { "lat": 40.8051158, "lon": -73.9992490 }, + { "lat": 40.8050512, "lon": -73.9993028 }, + { "lat": 40.8044348, "lon": -73.9997400 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 567924217, + "bounds": { + "minlat": 40.8043418, + "minlon": -74.0000390, + "maxlat": 40.8045651, + "maxlon": -73.9995267 + }, + "nodes": [ + 5465266065, + 5465266064, + 5465266066 + ], + "geometry": [ + { "lat": 40.8045651, "lon": -74.0000390 }, + { "lat": 40.8044348, "lon": -73.9997400 }, + { "lat": 40.8043418, "lon": -73.9995267 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 568365607, + "bounds": { + "minlat": 40.8199502, + "minlon": -73.9269466, + "maxlat": 40.8200102, + "maxlon": -73.9267430 + }, + "nodes": [ + 5468179330, + 13329951631, + 10033555177, + 5468179331 + ], + "geometry": [ + { "lat": 40.8199502, "lon": -73.9267430 }, + { "lat": 40.8199752, "lon": -73.9268272 }, + { "lat": 40.8199900, "lon": -73.9268771 }, + { "lat": 40.8200102, "lon": -73.9269466 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 569228425, + "bounds": { + "minlat": 40.8650651, + "minlon": -73.9311054, + "maxlat": 40.8650819, + "maxlon": -73.9309729 + }, + "nodes": [ + 1209670369, + 5474852327, + 5474852328, + 1209670863 + ], + "geometry": [ + { "lat": 40.8650812, "lon": -73.9311054 }, + { "lat": 40.8650819, "lon": -73.9310661 }, + { "lat": 40.8650760, "lon": -73.9310264 }, + { "lat": 40.8650651, "lon": -73.9309729 } + ], + "tags": { + "highway": "service", + "surface": "cobblestone" + } +}, +{ + "type": "way", + "id": 569266470, + "bounds": { + "minlat": 40.7893167, + "minlon": -73.9433978, + "maxlat": 40.7894903, + "maxlon": -73.9432652 + }, + "nodes": [ + 5475082073, + 2947964860, + 42436627 + ], + "geometry": [ + { "lat": 40.7894903, "lon": -73.9432652 }, + { "lat": 40.7893800, "lon": -73.9433479 }, + { "lat": 40.7893167, "lon": -73.9433978 } + ], + "tags": { + "alt_name:ko": "2번가", + "construction": "minor", + "cycleway:left": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266471, + "bounds": { + "minlat": 40.7880579, + "minlon": -73.9443285, + "maxlat": 40.7882354, + "maxlon": -73.9441926 + }, + "nodes": [ + 5475082074, + 2947964846, + 42430485 + ], + "geometry": [ + { "lat": 40.7882354, "lon": -73.9441926 }, + { "lat": 40.7881331, "lon": -73.9442710 }, + { "lat": 40.7880579, "lon": -73.9443285 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 14:00-19:00)", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "turn:lanes": "left|through|through|through|through", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266473, + "bounds": { + "minlat": 40.7869796, + "minlon": -73.9451174, + "maxlat": 40.7880579, + "maxlon": -73.9443285 + }, + "nodes": [ + 42430485, + 5327918973, + 2947964848, + 42438971, + 2947964849, + 7787545798, + 5482216800, + 13451601178, + 5475082075 + ], + "geometry": [ + { "lat": 40.7880579, "lon": -73.9443285 }, + { "lat": 40.7879882, "lon": -73.9443826 }, + { "lat": 40.7875053, "lon": -73.9447419 }, + { "lat": 40.7874477, "lon": -73.9447838 }, + { "lat": 40.7873928, "lon": -73.9448237 }, + { "lat": 40.7871900, "lon": -73.9449692 }, + { "lat": 40.7870766, "lon": -73.9450505 }, + { "lat": 40.7870099, "lon": -73.9450965 }, + { "lat": 40.7869796, "lon": -73.9451174 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 14:00-19:00)", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266474, + "bounds": { + "minlat": 40.7868144, + "minlon": -73.9452422, + "maxlat": 40.7869796, + "maxlon": -73.9451174 + }, + "nodes": [ + 5475082075, + 5327918972, + 42443061 + ], + "geometry": [ + { "lat": 40.7869796, "lon": -73.9451174 }, + { "lat": 40.7868735, "lon": -73.9451962 }, + { "lat": 40.7868144, "lon": -73.9452422 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "turn:lanes": "left;through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266476, + "bounds": { + "minlat": 40.7849455, + "minlon": -73.9465916, + "maxlat": 40.7852567, + "maxlon": -73.9463750 + }, + "nodes": [ + 5475082076, + 7787545817, + 6070217082, + 42443056 + ], + "geometry": [ + { "lat": 40.7852567, "lon": -73.9463750 }, + { "lat": 40.7851271, "lon": -73.9464651 }, + { "lat": 40.7850220, "lon": -73.9465383 }, + { "lat": 40.7849455, "lon": -73.9465916 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 14:00-19:00)", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266478, + "bounds": { + "minlat": 40.7842494, + "minlon": -73.9470901, + "maxlat": 40.7846961, + "maxlon": -73.9467730 + }, + "nodes": [ + 5475082077, + 9682439803, + 6070106310, + 42443054 + ], + "geometry": [ + { "lat": 40.7846961, "lon": -73.9467730 }, + { "lat": 40.7845467, "lon": -73.9468796 }, + { "lat": 40.7843479, "lon": -73.9470214 }, + { "lat": 40.7842494, "lon": -73.9470901 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 14:00-19:00)", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266480, + "bounds": { + "minlat": 40.7829443, + "minlon": -73.9480373, + "maxlat": 40.7832429, + "maxlon": -73.9478245 + }, + "nodes": [ + 5475082078, + 6070106313, + 42443052 + ], + "geometry": [ + { "lat": 40.7832429, "lon": -73.9478245 }, + { "lat": 40.7830026, "lon": -73.9479962 }, + { "lat": 40.7829443, "lon": -73.9480373 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 14:00-19:00)", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "turn:lanes": "left;through|through|throughthrough", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266481, + "bounds": { + "minlat": 40.7828972, + "minlon": -73.9480373, + "maxlat": 40.7829443, + "maxlon": -73.9479253 + }, + "nodes": [ + 42443052, + 6176004004, + 6181478352 + ], + "geometry": [ + { "lat": 40.7829443, "lon": -73.9480373 }, + { "lat": 40.7829179, "lon": -73.9479740 }, + { "lat": 40.7828972, "lon": -73.9479253 } + ], + "tags": { + "highway": "residential", + "name": "East 94th Street", + "name:ru": "Восточная 94-я стрит", + "name_1": "East 94 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 569266483, + "bounds": { + "minlat": 40.7823112, + "minlon": -73.9485053, + "maxlat": 40.7829443, + "maxlon": -73.9480373 + }, + "nodes": [ + 42443052, + 6070106309, + 7787545807, + 6070106315, + 42443050 + ], + "geometry": [ + { "lat": 40.7829443, "lon": -73.9480373 }, + { "lat": 40.7828948, "lon": -73.9480748 }, + { "lat": 40.7826114, "lon": -73.9482838 }, + { "lat": 40.7823758, "lon": -73.9484575 }, + { "lat": 40.7823112, "lon": -73.9485053 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266484, + "bounds": { + "minlat": 40.7823112, + "minlon": -73.9571720, + "maxlat": 40.7859791, + "maxlon": -73.9485053 + }, + "nodes": [ + 42443050, + 6185200489, + 5399637661, + 6185200499, + 42450037, + 6185200485, + 7158854717, + 4163883691, + 7158854757, + 7158854704, + 42452812, + 596776144, + 7158854690, + 7093620722, + 42446072, + 6270714171, + 7093620705, + 42452809 + ], + "geometry": [ + { "lat": 40.7823112, "lon": -73.9485053 }, + { "lat": 40.7823673, "lon": -73.9486376 }, + { "lat": 40.7825216, "lon": -73.9490017 }, + { "lat": 40.7832124, "lon": -73.9506120 }, + { "lat": 40.7832690, "lon": -73.9507524 }, + { "lat": 40.7833179, "lon": -73.9508803 }, + { "lat": 40.7838950, "lon": -73.9522420 }, + { "lat": 40.7839392, "lon": -73.9523473 }, + { "lat": 40.7839845, "lon": -73.9524529 }, + { "lat": 40.7845408, "lon": -73.9537621 }, + { "lat": 40.7845895, "lon": -73.9538777 }, + { "lat": 40.7846661, "lon": -73.9540596 }, + { "lat": 40.7847091, "lon": -73.9541625 }, + { "lat": 40.7852550, "lon": -73.9554680 }, + { "lat": 40.7852993, "lon": -73.9555695 }, + { "lat": 40.7853430, "lon": -73.9556801 }, + { "lat": 40.7859385, "lon": -73.9570771 }, + { "lat": 40.7859791, "lon": -73.9571720 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 93rd Street", + "name:ru": "Восточная 93-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4645924", + "wikipedia": "en:93rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266486, + "bounds": { + "minlat": 40.7818486, + "minlon": -73.9488413, + "maxlat": 40.7823112, + "maxlon": -73.9485053 + }, + "nodes": [ + 42443050, + 6185200500, + 5475082079 + ], + "geometry": [ + { "lat": 40.7823112, "lon": -73.9485053 }, + { "lat": 40.7822636, "lon": -73.9485382 }, + { "lat": 40.7818486, "lon": -73.9488413 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk": "both", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266487, + "bounds": { + "minlat": 40.7816881, + "minlon": -73.9489622, + "maxlat": 40.7818486, + "maxlon": -73.9488413 + }, + "nodes": [ + 5475082079, + 6185259922, + 42443048 + ], + "geometry": [ + { "lat": 40.7818486, "lon": -73.9488413 }, + { "lat": 40.7817473, "lon": -73.9489183 }, + { "lat": 40.7816881, "lon": -73.9489622 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266489, + "bounds": { + "minlat": 40.7806943, + "minlon": -73.9489622, + "maxlat": 40.7816881, + "maxlon": -73.9465727 + }, + "nodes": [ + 42443048, + 6185259913, + 6185259899, + 42448745 + ], + "geometry": [ + { "lat": 40.7816881, "lon": -73.9489622 }, + { "lat": 40.7816400, "lon": -73.9488466 }, + { "lat": 40.7807547, "lon": -73.9467180 }, + { "lat": 40.7806943, "lon": -73.9465727 } + ], + "tags": { + "highway": "residential", + "name": "East 92nd Street", + "name:ru": "Восточная 92-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 569266490, + "bounds": { + "minlat": 40.7810699, + "minlon": -73.9494125, + "maxlat": 40.7816881, + "maxlon": -73.9489622 + }, + "nodes": [ + 42443048, + 6185259914, + 7787545809, + 6214889048, + 42443046 + ], + "geometry": [ + { "lat": 40.7816881, "lon": -73.9489622 }, + { "lat": 40.7816278, "lon": -73.9490057 }, + { "lat": 40.7814553, "lon": -73.9491317 }, + { "lat": 40.7811234, "lon": -73.9493742 }, + { "lat": 40.7810699, "lon": -73.9494125 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266491, + "bounds": { + "minlat": 40.7804348, + "minlon": -73.9498809, + "maxlat": 40.7806093, + "maxlon": -73.9497490 + }, + "nodes": [ + 5475082080, + 7132406724, + 42443044 + ], + "geometry": [ + { "lat": 40.7806093, "lon": -73.9497490 }, + { "lat": 40.7804997, "lon": -73.9498331 }, + { "lat": 40.7804348, "lon": -73.9498809 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "no", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569266493, + "bounds": { + "minlat": 40.7775510, + "minlon": -73.9453802, + "maxlat": 40.7785395, + "maxlon": -73.9430379 + }, + "nodes": [ + 7135169185, + 42428047, + 7135164267, + 5163273896, + 10121819481, + 4378236625 + ], + "geometry": [ + { "lat": 40.7785395, "lon": -73.9453802 }, + { "lat": 40.7784878, "lon": -73.9452597 }, + { "lat": 40.7784363, "lon": -73.9451374 }, + { "lat": 40.7775806, "lon": -73.9431077 }, + { "lat": 40.7775686, "lon": -73.9430787 }, + { "lat": 40.7775510, "lon": -73.9430379 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 90th Street", + "name:ru": "Восточная 90-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 569266494, + "bounds": { + "minlat": 40.7785510, + "minlon": -73.9512480, + "maxlat": 40.7791759, + "maxlon": -73.9507943 + }, + "nodes": [ + 42443042, + 7134839378, + 7134839384, + 42443040 + ], + "geometry": [ + { "lat": 40.7791759, "lon": -73.9507943 }, + { "lat": 40.7791291, "lon": -73.9508282 }, + { "lat": 40.7786142, "lon": -73.9512021 }, + { "lat": 40.7785510, "lon": -73.9512480 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk": "both", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345468, + "bounds": { + "minlat": 40.7615618, + "minlon": -73.9681876, + "maxlat": 40.7622304, + "maxlon": -73.9665890 + }, + "nodes": [ + 42447009, + 10125174407, + 4960527249, + 2165157809, + 6186989598, + 4288677093 + ], + "geometry": [ + { "lat": 40.7622304, "lon": -73.9681876 }, + { "lat": 40.7621814, "lon": -73.9680704 }, + { "lat": 40.7621161, "lon": -73.9679144 }, + { "lat": 40.7618695, "lon": -73.9673247 }, + { "lat": 40.7616142, "lon": -73.9667139 }, + { "lat": 40.7615618, "lon": -73.9665890 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345474, + "bounds": { + "minlat": 40.7618760, + "minlon": -73.9684429, + "maxlat": 40.7622304, + "maxlon": -73.9681876 + }, + "nodes": [ + 42447009, + 9178272154, + 5475605297 + ], + "geometry": [ + { "lat": 40.7622304, "lon": -73.9681876 }, + { "lat": 40.7621696, "lon": -73.9682273 }, + { "lat": 40.7618760, "lon": -73.9684429 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 569345480, + "bounds": { + "minlat": 40.7622304, + "minlon": -73.9681876, + "maxlat": 40.7625556, + "maxlon": -73.9679575 + }, + "nodes": [ + 5475605296, + 10125147541, + 42447009 + ], + "geometry": [ + { "lat": 40.7625556, "lon": -73.9679575 }, + { "lat": 40.7622929, "lon": -73.9681468 }, + { "lat": 40.7622304, "lon": -73.9681876 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through||", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 569345486, + "bounds": { + "minlat": 40.7616103, + "minlon": -73.9686382, + "maxlat": 40.7618760, + "maxlon": -73.9684429 + }, + "nodes": [ + 5475605297, + 10125147542, + 42447007 + ], + "geometry": [ + { "lat": 40.7618760, "lon": -73.9684429 }, + { "lat": 40.7616657, "lon": -73.9685982 }, + { "lat": 40.7616103, "lon": -73.9686382 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:bus:forward": "1", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 569345499, + "bounds": { + "minlat": 40.7609399, + "minlon": -73.9686382, + "maxlat": 40.7616103, + "maxlon": -73.9670376 + }, + "nodes": [ + 42447007, + 10125147544, + 8254182915, + 2165157806, + 8133385385, + 42449971 + ], + "geometry": [ + { "lat": 40.7616103, "lon": -73.9686382 }, + { "lat": 40.7615697, "lon": -73.9685367 }, + { "lat": 40.7614267, "lon": -73.9681916 }, + { "lat": 40.7612503, "lon": -73.9677600 }, + { "lat": 40.7609988, "lon": -73.9671716 }, + { "lat": 40.7609399, "lon": -73.9670376 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 569345502, + "bounds": { + "minlat": 40.7596371, + "minlon": -73.9700720, + "maxlat": 40.7609304, + "maxlon": -73.9691328 + }, + "nodes": [ + 42432847, + 10125147547, + 10165922684, + 42443614, + 10165922685, + 10165922673, + 4862610026 + ], + "geometry": [ + { "lat": 40.7609304, "lon": -73.9691328 }, + { "lat": 40.7608363, "lon": -73.9692017 }, + { "lat": 40.7603094, "lon": -73.9695827 }, + { "lat": 40.7602528, "lon": -73.9696237 }, + { "lat": 40.7601979, "lon": -73.9696637 }, + { "lat": 40.7596919, "lon": -73.9700323 }, + { "lat": 40.7596371, "lon": -73.9700720 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 569345508, + "bounds": { + "minlat": 40.7575406, + "minlon": -73.9734395, + "maxlat": 40.7577792, + "maxlon": -73.9728781 + }, + "nodes": [ + 5475605298, + 12834723252, + 10125233924, + 42440456 + ], + "geometry": [ + { "lat": 40.7575406, "lon": -73.9728781 }, + { "lat": 40.7577065, "lon": -73.9732704 }, + { "lat": 40.7577231, "lon": -73.9733097 }, + { "lat": 40.7577792, "lon": -73.9734395 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 51st Street", + "name:ru": "Восточная 51-я стрит", + "name_1": "East 51 Street", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345515, + "bounds": { + "minlat": 40.7559783, + "minlon": -73.9749834, + "maxlat": 40.7578528, + "maxlon": -73.9736145 + }, + "nodes": [ + 596775876, + 10125233925, + 12834723254, + 3977886201, + 596775870, + 3977886197, + 12834723258, + 10125233041, + 596775867, + 10165922716, + 12834723262, + 10125233044, + 596775882 + ], + "geometry": [ + { "lat": 40.7578528, "lon": -73.9736145 }, + { "lat": 40.7577927, "lon": -73.9736587 }, + { "lat": 40.7573262, "lon": -73.9739981 }, + { "lat": 40.7572765, "lon": -73.9740342 }, + { "lat": 40.7572198, "lon": -73.9740765 }, + { "lat": 40.7571706, "lon": -73.9741133 }, + { "lat": 40.7566978, "lon": -73.9744568 }, + { "lat": 40.7566520, "lon": -73.9744900 }, + { "lat": 40.7565994, "lon": -73.9745281 }, + { "lat": 40.7565455, "lon": -73.9745675 }, + { "lat": 40.7560464, "lon": -73.9749334 }, + { "lat": 40.7560270, "lon": -73.9749476 }, + { "lat": 40.7559783, "lon": -73.9749834 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 569345518, + "bounds": { + "minlat": 40.7578528, + "minlon": -73.9747048, + "maxlat": 40.7583094, + "maxlon": -73.9736145 + }, + "nodes": [ + 596775876, + 10125233923, + 5475605299 + ], + "geometry": [ + { "lat": 40.7578528, "lon": -73.9736145 }, + { "lat": 40.7578981, "lon": -73.9737239 }, + { "lat": 40.7583094, "lon": -73.9747048 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "East 51st Street", + "name:ru": "Восточная 51-я стрит", + "name_1": "East 51 Street", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345525, + "bounds": { + "minlat": 40.7583094, + "minlon": -73.9751336, + "maxlat": 40.7584878, + "maxlon": -73.9747048 + }, + "nodes": [ + 5475605299, + 10165986928, + 42440453 + ], + "geometry": [ + { "lat": 40.7583094, "lon": -73.9747048 }, + { "lat": 40.7584447, "lon": -73.9750323 }, + { "lat": 40.7584878, "lon": -73.9751336 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "name": "East 51st Street", + "name:ru": "Восточная 51-я стрит", + "name_1": "East 51 Street", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345531, + "bounds": { + "minlat": 40.7584878, + "minlon": -73.9761546, + "maxlat": 40.7589205, + "maxlon": -73.9751336 + }, + "nodes": [ + 42440453, + 10165986931, + 5475605300 + ], + "geometry": [ + { "lat": 40.7584878, "lon": -73.9751336 }, + { "lat": 40.7585407, "lon": -73.9752561 }, + { "lat": 40.7589205, "lon": -73.9761546 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "East 51st Street", + "name:ru": "Восточная 51-я стрит", + "name_1": "East 51 Street", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345535, + "bounds": { + "minlat": 40.7589205, + "minlon": -73.9767414, + "maxlat": 40.7591757, + "maxlon": -73.9761546 + }, + "nodes": [ + 5475605300, + 3977886233, + 42440452 + ], + "geometry": [ + { "lat": 40.7589205, "lon": -73.9761546 }, + { "lat": 40.7591205, "lon": -73.9766229 }, + { "lat": 40.7591757, "lon": -73.9767414 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "name": "East 51st Street", + "name:ru": "Восточная 51-я стрит", + "name_1": "East 51 Street", + "oneway": "yes", + "parking:lane:right": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345536, + "bounds": { + "minlat": 40.7603266, + "minlon": -73.9799722, + "maxlat": 40.7605248, + "maxlon": -73.9794746 + }, + "nodes": [ + 5475605301, + 11299027267, + 42430361 + ], + "geometry": [ + { "lat": 40.7603266, "lon": -73.9794746 }, + { "lat": 40.7604668, "lon": -73.9798278 }, + { "lat": 40.7605248, "lon": -73.9799722 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345537, + "bounds": { + "minlat": 40.7605248, + "minlon": -73.9799722, + "maxlat": 40.7630416, + "maxlon": -73.9781410 + }, + "nodes": [ + 42430361, + 11299027268, + 13518638881, + 3974095843, + 9140940649, + 42430363, + 3974095844, + 4016646232, + 3976008169, + 42430367, + 3971302311, + 3977886868, + 42430371, + 3974095847, + 5402554393, + 10173346243, + 42430375 + ], + "geometry": [ + { "lat": 40.7605248, "lon": -73.9799722 }, + { "lat": 40.7605904, "lon": -73.9799246 }, + { "lat": 40.7606526, "lon": -73.9798793 }, + { "lat": 40.7610886, "lon": -73.9795620 }, + { "lat": 40.7611195, "lon": -73.9795395 }, + { "lat": 40.7611565, "lon": -73.9795126 }, + { "lat": 40.7612100, "lon": -73.9794736 }, + { "lat": 40.7614362, "lon": -73.9793091 }, + { "lat": 40.7617226, "lon": -73.9791007 }, + { "lat": 40.7617737, "lon": -73.9790635 }, + { "lat": 40.7618417, "lon": -73.9790140 }, + { "lat": 40.7623408, "lon": -73.9786509 }, + { "lat": 40.7623991, "lon": -73.9786085 }, + { "lat": 40.7624654, "lon": -73.9785603 }, + { "lat": 40.7628683, "lon": -73.9782671 }, + { "lat": 40.7629762, "lon": -73.9781886 }, + { "lat": 40.7630416, "lon": -73.9781410 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 569345538, + "bounds": { + "minlat": 40.7605248, + "minlon": -73.9823132, + "maxlat": 40.7615155, + "maxlon": -73.9799722 + }, + "nodes": [ + 42430361, + 11299050770, + 3971196631, + 8318633108, + 3932923796, + 1828749428, + 5475605302 + ], + "geometry": [ + { "lat": 40.7605248, "lon": -73.9799722 }, + { "lat": 40.7605819, "lon": -73.9801060 }, + { "lat": 40.7608605, "lon": -73.9807655 }, + { "lat": 40.7611141, "lon": -73.9813648 }, + { "lat": 40.7612043, "lon": -73.9815778 }, + { "lat": 40.7612389, "lon": -73.9816595 }, + { "lat": 40.7615155, "lon": -73.9823132 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:lane": "advisory", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "sidewalk:left:surface": "concrete:plates", + "sidewalk:right:surface": "paving_stones", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345539, + "bounds": { + "minlat": 40.7615155, + "minlon": -73.9828071, + "maxlat": 40.7617189, + "maxlon": -73.9823132 + }, + "nodes": [ + 5475605302, + 10173292889, + 42440004 + ], + "geometry": [ + { "lat": 40.7615155, "lon": -73.9823132 }, + { "lat": 40.7616668, "lon": -73.9826807 }, + { "lat": 40.7617189, "lon": -73.9828071 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:lane": "advisory", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "parking:right": "yes", + "parking:right:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345540, + "bounds": { + "minlat": 40.7598410, + "minlon": -73.9841740, + "maxlat": 40.7610948, + "maxlon": -73.9832504 + }, + "nodes": [ + 42440001, + 3977886256, + 4782363334, + 2435108438, + 42432585, + 2435108458, + 10172901886, + 42439996 + ], + "geometry": [ + { "lat": 40.7610948, "lon": -73.9832504 }, + { "lat": 40.7610359, "lon": -73.9832927 }, + { "lat": 40.7607932, "lon": -73.9834673 }, + { "lat": 40.7605266, "lon": -73.9836628 }, + { "lat": 40.7604633, "lon": -73.9837062 }, + { "lat": 40.7604076, "lon": -73.9837477 }, + { "lat": 40.7599028, "lon": -73.9841274 }, + { "lat": 40.7598410, "lon": -73.9841740 } + ], + "tags": { + "cycleway:left": "track", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "parking:lane:both": "parallel", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345541, + "bounds": { + "minlat": 40.7618811, + "minlon": -73.9836782, + "maxlat": 40.7620858, + "maxlon": -73.9831922 + }, + "nodes": [ + 9732912239, + 3977886864, + 42428310 + ], + "geometry": [ + { "lat": 40.7618811, "lon": -73.9831922 }, + { "lat": 40.7620168, "lon": -73.9835143 }, + { "lat": 40.7620858, "lon": -73.9836782 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:lane": "advisory", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "parking:right": "yes", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345542, + "bounds": { + "minlat": 40.7579634, + "minlon": -73.9855335, + "maxlat": 40.7583669, + "maxlon": -73.9852442 + }, + "nodes": [ + 5475605303, + 4707407261, + 42428297 + ], + "geometry": [ + { "lat": 40.7583669, "lon": -73.9852442 }, + { "lat": 40.7580355, "lon": -73.9854818 }, + { "lat": 40.7579634, "lon": -73.9855335 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "designated", + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|right", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345543, + "bounds": { + "minlat": 40.7567100, + "minlon": -73.9883815, + "maxlat": 40.7575242, + "maxlon": -73.9864580 + }, + "nodes": [ + 42439981, + 3974095824, + 8669764313 + ], + "geometry": [ + { "lat": 40.7567100, "lon": -73.9864580 }, + { "lat": 40.7567549, "lon": -73.9865657 }, + { "lat": 40.7575242, "lon": -73.9883815 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 569345544, + "bounds": { + "minlat": 40.7560361, + "minlon": -73.9869489, + "maxlat": 40.7567100, + "maxlon": -73.9864580 + }, + "nodes": [ + 42439981, + 3974095823, + 3974095821, + 42437363 + ], + "geometry": [ + { "lat": 40.7567100, "lon": -73.9864580 }, + { "lat": 40.7566441, "lon": -73.9865075 }, + { "lat": 40.7561306, "lon": -73.9868801 }, + { "lat": 40.7560361, "lon": -73.9869489 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "designated", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345545, + "bounds": { + "minlat": 40.7547554, + "minlon": -73.9878881, + "maxlat": 40.7550300, + "maxlon": -73.9876920 + }, + "nodes": [ + 5475605304, + 10169532532, + 42439968 + ], + "geometry": [ + { "lat": 40.7550300, "lon": -73.9876920 }, + { "lat": 40.7548113, "lon": -73.9878482 }, + { "lat": 40.7547554, "lon": -73.9878881 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|none", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569345546, + "bounds": { + "minlat": 40.7543353, + "minlon": -73.9878881, + "maxlat": 40.7547554, + "maxlon": -73.9868976 + }, + "nodes": [ + 42439968, + 10169532531, + 10268944141, + 10173490588, + 6597473554, + 42428277 + ], + "geometry": [ + { "lat": 40.7547554, "lon": -73.9878881 }, + { "lat": 40.7547051, "lon": -73.9877700 }, + { "lat": 40.7545858, "lon": -73.9874884 }, + { "lat": 40.7543809, "lon": -73.9870044 }, + { "lat": 40.7543507, "lon": -73.9869330 }, + { "lat": 40.7543353, "lon": -73.9868976 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "name_1": "West 40 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 569345547, + "bounds": { + "minlat": 40.7528950, + "minlon": -73.9892430, + "maxlat": 40.7532499, + "maxlon": -73.9889829 + }, + "nodes": [ + 12749368600, + 10169505516, + 42439960 + ], + "geometry": [ + { "lat": 40.7532499, "lon": -73.9889829 }, + { "lat": 40.7529609, "lon": -73.9891948 }, + { "lat": 40.7528950, "lon": -73.9892430 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "through|through|none", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569361666, + "bounds": { + "minlat": 40.8320757, + "minlon": -73.9409759, + "maxlat": 40.8323747, + "maxlon": -73.9408792 + }, + "nodes": [ + 5475725288, + 11291880545, + 42432990 + ], + "geometry": [ + { "lat": 40.8320757, "lon": -73.9409759 }, + { "lat": 40.8323137, "lon": -73.9408993 }, + { "lat": 40.8323747, "lon": -73.9408792 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "parking:lane:both": "parallel", + "rcn_ref": "9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 569361671, + "bounds": { + "minlat": 40.8313508, + "minlon": -73.9412136, + "maxlat": 40.8317605, + "maxlon": -73.9410779 + }, + "nodes": [ + 5475725289, + 748726614, + 11291880547, + 7043552833 + ], + "geometry": [ + { "lat": 40.8313508, "lon": -73.9412136 }, + { "lat": 40.8316081, "lon": -73.9411272 }, + { "lat": 40.8316170, "lon": -73.9411243 }, + { "lat": 40.8317605, "lon": -73.9410779 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "parking:lane:both": "parallel", + "rcn_ref": "9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 569361676, + "bounds": { + "minlat": 40.8305684, + "minlon": -73.9415000, + "maxlat": 40.8308910, + "maxlon": -73.9413680 + }, + "nodes": [ + 5475725290, + 11193685117, + 42432985 + ], + "geometry": [ + { "lat": 40.8305684, "lon": -73.9415000 }, + { "lat": 40.8307845, "lon": -73.9414116 }, + { "lat": 40.8308910, "lon": -73.9413680 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 569369532, + "bounds": { + "minlat": 40.8082350, + "minlon": -73.9525797, + "maxlat": 40.8101762, + "maxlon": -73.9511777 + }, + "nodes": [ + 42435794, + 11298919654, + 5481863725, + 11298919651, + 42435802, + 11298919650, + 5157411375, + 11298919647, + 42435803, + 11298919646, + 10171508876, + 42435805 + ], + "geometry": [ + { "lat": 40.8082350, "lon": -73.9525797 }, + { "lat": 40.8083008, "lon": -73.9525347 }, + { "lat": 40.8084819, "lon": -73.9524108 }, + { "lat": 40.8088209, "lon": -73.9521631 }, + { "lat": 40.8088651, "lon": -73.9521304 }, + { "lat": 40.8089261, "lon": -73.9520862 }, + { "lat": 40.8091148, "lon": -73.9519494 }, + { "lat": 40.8094488, "lon": -73.9517104 }, + { "lat": 40.8094996, "lon": -73.9516742 }, + { "lat": 40.8095560, "lon": -73.9516328 }, + { "lat": 40.8100819, "lon": -73.9512469 }, + { "lat": 40.8101762, "lon": -73.9511777 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569369533, + "bounds": { + "minlat": 40.8051509, + "minlon": -73.9525797, + "maxlat": 40.8082350, + "maxlon": -73.9452617 + }, + "nodes": [ + 42435794, + 11298919653, + 7004376630, + 42439858, + 2141026491, + 7004376625, + 7004425558, + 3099327968, + 42453236, + 7004411791, + 10170875101, + 42442123 + ], + "geometry": [ + { "lat": 40.8082350, "lon": -73.9525797 }, + { "lat": 40.8081831, "lon": -73.9524563 }, + { "lat": 40.8071221, "lon": -73.9499342 }, + { "lat": 40.8070737, "lon": -73.9498145 }, + { "lat": 40.8070090, "lon": -73.9496555 }, + { "lat": 40.8069651, "lon": -73.9495491 }, + { "lat": 40.8059096, "lon": -73.9470658 }, + { "lat": 40.8058736, "lon": -73.9469805 }, + { "lat": 40.8058089, "lon": -73.9468210 }, + { "lat": 40.8057755, "lon": -73.9467390 }, + { "lat": 40.8051957, "lon": -73.9453676 }, + { "lat": 40.8051509, "lon": -73.9452617 } + ], + "tags": { + "highway": "residential", + "name": "West 122nd Street", + "name_1": "West 122 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 569369534, + "bounds": { + "minlat": 40.8076082, + "minlon": -73.9558862, + "maxlat": 40.8088028, + "maxlon": -73.9530399 + }, + "nodes": [ + 42435785, + 10168029044, + 10168029040, + 42445219, + 10168029036, + 8151881623, + 10170887321, + 42440131 + ], + "geometry": [ + { "lat": 40.8076082, "lon": -73.9530399 }, + { "lat": 40.8076614, "lon": -73.9531615 }, + { "lat": 40.8081820, "lon": -73.9544031 }, + { "lat": 40.8082223, "lon": -73.9544988 }, + { "lat": 40.8082615, "lon": -73.9545923 }, + { "lat": 40.8087289, "lon": -73.9557061 }, + { "lat": 40.8087551, "lon": -73.9557657 }, + { "lat": 40.8088028, "lon": -73.9558862 } + ], + "tags": { + "highway": "residential", + "name": "West 121st Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 569369535, + "bounds": { + "minlat": 40.8076082, + "minlon": -73.9530399, + "maxlat": 40.8077750, + "maxlon": -73.9529182 + }, + "nodes": [ + 42435785, + 10168029045, + 6185556310, + 6431058183 + ], + "geometry": [ + { "lat": 40.8076082, "lon": -73.9530399 }, + { "lat": 40.8076615, "lon": -73.9530029 }, + { "lat": 40.8076939, "lon": -73.9529798 }, + { "lat": 40.8077750, "lon": -73.9529182 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569369536, + "bounds": { + "minlat": 40.8073581, + "minlon": -73.9532242, + "maxlat": 40.8076082, + "maxlon": -73.9530399 + }, + "nodes": [ + 5475792646, + 10168029052, + 42435785 + ], + "geometry": [ + { "lat": 40.8073581, "lon": -73.9532242 }, + { "lat": 40.8075177, "lon": -73.9531044 }, + { "lat": 40.8076082, "lon": -73.9530399 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "sidewalk:both": "separate", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 569369541, + "bounds": { + "minlat": 40.8011859, + "minlon": -73.9412451, + "maxlat": 40.8018088, + "maxlon": -73.9397578 + }, + "nodes": [ + 42443818, + 10170646992, + 5481978522, + 7620520377, + 7620520373, + 10122952984, + 42443819 + ], + "geometry": [ + { "lat": 40.8018088, "lon": -73.9412451 }, + { "lat": 40.8017821, "lon": -73.9411813 }, + { "lat": 40.8017582, "lon": -73.9411244 }, + { "lat": 40.8016005, "lon": -73.9407477 }, + { "lat": 40.8015168, "lon": -73.9405480 }, + { "lat": 40.8012270, "lon": -73.9398559 }, + { "lat": 40.8011859, "lon": -73.9397578 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 120th Street", + "name:ru": "Восточная 120-я стрит", + "name_1": "East 120 Street", + "oneway": "yes", + "parking:lane:both": "parallel", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 569451559, + "bounds": { + "minlat": 40.7138283, + "minlon": -73.9930368, + "maxlat": 40.7143535, + "maxlon": -73.9929765 + }, + "nodes": [ + 42437988, + 5863601512, + 12303955122, + 8307641623, + 42433543 + ], + "geometry": [ + { "lat": 40.7143535, "lon": -73.9930343 }, + { "lat": 40.7142935, "lon": -73.9930368 }, + { "lat": 40.7139518, "lon": -73.9929925 }, + { "lat": 40.7139187, "lon": -73.9929882 }, + { "lat": 40.7138283, "lon": -73.9929765 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 569749402, + "bounds": { + "minlat": 40.8811753, + "minlon": -73.9078833, + "maxlat": 40.8813571, + "maxlon": -73.9075530 + }, + "nodes": [ + 5478818938, + 13020770639, + 5478818949, + 5478818939 + ], + "geometry": [ + { "lat": 40.8813571, "lon": -73.9078833 }, + { "lat": 40.8813248, "lon": -73.9078248 }, + { "lat": 40.8813113, "lon": -73.9078002 }, + { "lat": 40.8811753, "lon": -73.9075530 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569749403, + "bounds": { + "minlat": 40.8811590, + "minlon": -73.9077506, + "maxlat": 40.8814955, + "maxlon": -73.9071598 + }, + "nodes": [ + 5478818940, + 13020770638, + 5478818950, + 5478818941 + ], + "geometry": [ + { "lat": 40.8814955, "lon": -73.9077506 }, + { "lat": 40.8814622, "lon": -73.9076923 }, + { "lat": 40.8814471, "lon": -73.9076657 }, + { "lat": 40.8811590, "lon": -73.9071598 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569749404, + "bounds": { + "minlat": 40.8814280, + "minlon": -73.9076213, + "maxlat": 40.8816272, + "maxlon": -73.9072777 + }, + "nodes": [ + 5478818942, + 13020770637, + 5478818951, + 5478818943 + ], + "geometry": [ + { "lat": 40.8816272, "lon": -73.9076213 }, + { "lat": 40.8815932, "lon": -73.9075626 }, + { "lat": 40.8815819, "lon": -73.9075431 }, + { "lat": 40.8814280, "lon": -73.9072777 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753537, + "bounds": { + "minlat": 40.8201127, + "minlon": -73.9360589, + "maxlat": 40.8207092, + "maxlon": -73.9346357 + }, + "nodes": [ + 5478861077, + 9557088449, + 11722261964, + 5478861078, + 11218308344, + 5478861079 + ], + "geometry": [ + { "lat": 40.8207092, "lon": -73.9360589 }, + { "lat": 40.8206358, "lon": -73.9358866 }, + { "lat": 40.8205847, "lon": -73.9357669 }, + { "lat": 40.8205532, "lon": -73.9356929 }, + { "lat": 40.8201548, "lon": -73.9347368 }, + { "lat": 40.8201127, "lon": -73.9346357 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753538, + "bounds": { + "minlat": 40.8200250, + "minlon": -73.9357521, + "maxlat": 40.8205532, + "maxlon": -73.9346357 + }, + "nodes": [ + 5478861078, + 5478861080, + 5478861081, + 5478861079 + ], + "geometry": [ + { "lat": 40.8205532, "lon": -73.9356929 }, + { "lat": 40.8204712, "lon": -73.9357521 }, + { "lat": 40.8200250, "lon": -73.9346836 }, + { "lat": 40.8201127, "lon": -73.9346357 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753539, + "bounds": { + "minlat": 40.8206190, + "minlon": -73.9358128, + "maxlat": 40.8210377, + "maxlon": -73.9347139 + }, + "nodes": [ + 5478861082, + 9557088448, + 5478861083, + 5478861084 + ], + "geometry": [ + { "lat": 40.8210377, "lon": -73.9358128 }, + { "lat": 40.8209609, "lon": -73.9356298 }, + { "lat": 40.8206190, "lon": -73.9348159 }, + { "lat": 40.8207735, "lon": -73.9347139 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753540, + "bounds": { + "minlat": 40.8207735, + "minlon": -73.9350956, + "maxlat": 40.8209308, + "maxlon": -73.9347139 + }, + "nodes": [ + 5478861084, + 5478861085 + ], + "geometry": [ + { "lat": 40.8207735, "lon": -73.9347139 }, + { "lat": 40.8209308, "lon": -73.9350956 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753541, + "bounds": { + "minlat": 40.8207735, + "minlon": -73.9350024, + "maxlat": 40.8210777, + "maxlon": -73.9346219 + }, + "nodes": [ + 5478861084, + 5478861086, + 5478861087 + ], + "geometry": [ + { "lat": 40.8207735, "lon": -73.9347139 }, + { "lat": 40.8209213, "lon": -73.9346219 }, + { "lat": 40.8210777, "lon": -73.9350024 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753542, + "bounds": { + "minlat": 40.8209213, + "minlon": -73.9346219, + "maxlat": 40.8209289, + "maxlon": -73.9341557 + }, + "nodes": [ + 5478861086, + 5478861101, + 5478861088 + ], + "geometry": [ + { "lat": 40.8209213, "lon": -73.9346219 }, + { "lat": 40.8209240, "lon": -73.9344576 }, + { "lat": 40.8209289, "lon": -73.9341557 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753543, + "bounds": { + "minlat": 40.8199036, + "minlon": -73.9341557, + "maxlat": 40.8209289, + "maxlon": -73.9341443 + }, + "nodes": [ + 5478861088, + 5478861089 + ], + "geometry": [ + { "lat": 40.8209289, "lon": -73.9341557 }, + { "lat": 40.8199036, "lon": -73.9341443 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753544, + "bounds": { + "minlat": 40.8209289, + "minlon": -73.9342054, + "maxlat": 40.8218731, + "maxlon": -73.9341557 + }, + "nodes": [ + 5478861088, + 5478861092, + 5478861098, + 5478861090 + ], + "geometry": [ + { "lat": 40.8209289, "lon": -73.9341557 }, + { "lat": 40.8214183, "lon": -73.9341814 }, + { "lat": 40.8217681, "lon": -73.9341999 }, + { "lat": 40.8218731, "lon": -73.9342054 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753545, + "bounds": { + "minlat": 40.8214183, + "minlon": -73.9352976, + "maxlat": 40.8217486, + "maxlon": -73.9341814 + }, + "nodes": [ + 42432669, + 5478861093, + 5478861091, + 5478861092 + ], + "geometry": [ + { "lat": 40.8217486, "lon": -73.9352976 }, + { "lat": 40.8216056, "lon": -73.9349296 }, + { "lat": 40.8214854, "lon": -73.9346139 }, + { "lat": 40.8214183, "lon": -73.9341814 } + ], + "tags": { + "highway": "service", + "name": "West 147th Street", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753546, + "bounds": { + "minlat": 40.8216056, + "minlon": -73.9349296, + "maxlat": 40.8221176, + "maxlon": -73.9345469 + }, + "nodes": [ + 5478861093, + 5478861097, + 5478861096, + 5478861094, + 5478861095, + 5478861096 + ], + "geometry": [ + { "lat": 40.8216056, "lon": -73.9349296 }, + { "lat": 40.8217592, "lon": -73.9348233 }, + { "lat": 40.8219132, "lon": -73.9347168 }, + { "lat": 40.8221176, "lon": -73.9345754 }, + { "lat": 40.8218972, "lon": -73.9345469 }, + { "lat": 40.8219132, "lon": -73.9347168 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753547, + "bounds": { + "minlat": 40.8217592, + "minlon": -73.9348233, + "maxlat": 40.8217681, + "maxlon": -73.9341999 + }, + "nodes": [ + 5478861097, + 5478861098 + ], + "geometry": [ + { "lat": 40.8217592, "lon": -73.9348233 }, + { "lat": 40.8217681, "lon": -73.9341999 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753548, + "bounds": { + "minlat": 40.8209240, + "minlon": -73.9348888, + "maxlat": 40.8212183, + "maxlon": -73.9344576 + }, + "nodes": [ + 5478861099, + 5478861100, + 5478861101 + ], + "geometry": [ + { "lat": 40.8212183, "lon": -73.9348888 }, + { "lat": 40.8210458, "lon": -73.9344590 }, + { "lat": 40.8209240, "lon": -73.9344576 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 569753549, + "bounds": { + "minlat": 40.8210458, + "minlon": -73.9347858, + "maxlat": 40.8213627, + "maxlon": -73.9344452 + }, + "nodes": [ + 5478861102, + 5478861103, + 5478861100 + ], + "geometry": [ + { "lat": 40.8213627, "lon": -73.9347858 }, + { "lat": 40.8212401, "lon": -73.9344452 }, + { "lat": 40.8210458, "lon": -73.9344590 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570146118, + "bounds": { + "minlat": 40.7656602, + "minlon": -73.9956374, + "maxlat": 40.7661596, + "maxlon": -73.9952784 + }, + "nodes": [ + 5481838621, + 10170514921, + 5481838620 + ], + "geometry": [ + { "lat": 40.7661596, "lon": -73.9952784 }, + { "lat": 40.7660999, "lon": -73.9953214 }, + { "lat": 40.7656602, "lon": -73.9956374 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 570146234, + "bounds": { + "minlat": 40.7666396, + "minlon": -73.9954487, + "maxlat": 40.7668178, + "maxlon": -73.9951581 + }, + "nodes": [ + 5481838625, + 5481838624, + 5481838623 + ], + "geometry": [ + { "lat": 40.7667082, "lon": -73.9954487 }, + { "lat": 40.7666396, "lon": -73.9952855 }, + { "lat": 40.7668178, "lon": -73.9951581 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570146235, + "bounds": { + "minlat": 40.7664495, + "minlon": -73.9956377, + "maxlat": 40.7669660, + "maxlon": -73.9952622 + }, + "nodes": [ + 5481838629, + 10111253355, + 5481838625, + 5838374943 + ], + "geometry": [ + { "lat": 40.7669660, "lon": -73.9952622 }, + { "lat": 40.7669115, "lon": -73.9953016 }, + { "lat": 40.7667082, "lon": -73.9954487 }, + { "lat": 40.7664495, "lon": -73.9956377 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570146253, + "bounds": { + "minlat": 40.7694811, + "minlon": -73.9936833, + "maxlat": 40.7695678, + "maxlon": -73.9936254 + }, + "nodes": [ + 5481839858, + 10084945218, + 6117428095 + ], + "geometry": [ + { "lat": 40.7695678, "lon": -73.9936254 }, + { "lat": 40.7694992, "lon": -73.9936712 }, + { "lat": 40.7694811, "lon": -73.9936833 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 570146262, + "bounds": { + "minlat": 40.7655635, + "minlon": -73.9938415, + "maxlat": 40.7661831, + "maxlon": -73.9934040 + }, + "nodes": [ + 5481839792, + 10111287720, + 5481839791, + 5481839790, + 5481839789, + 13385680415, + 13385680414 + ], + "geometry": [ + { "lat": 40.7655635, "lon": -73.9938415 }, + { "lat": 40.7656156, "lon": -73.9938048 }, + { "lat": 40.7656247, "lon": -73.9937984 }, + { "lat": 40.7656949, "lon": -73.9937477 }, + { "lat": 40.7659883, "lon": -73.9935356 }, + { "lat": 40.7661325, "lon": -73.9934373 }, + { "lat": 40.7661831, "lon": -73.9934040 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570146938, + "bounds": { + "minlat": 40.7628220, + "minlon": -73.9959247, + "maxlat": 40.7630840, + "maxlon": -73.9957408 + }, + "nodes": [ + 5481842905, + 10171169047, + 5481842904 + ], + "geometry": [ + { "lat": 40.7630840, "lon": -73.9957408 }, + { "lat": 40.7630296, "lon": -73.9957790 }, + { "lat": 40.7628220, "lon": -73.9959247 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570148110, + "bounds": { + "minlat": 40.7600580, + "minlon": -73.9975005, + "maxlat": 40.7604226, + "maxlon": -73.9971357 + }, + "nodes": [ + 5481846617, + 10168212462, + 5481846616, + 5481846615 + ], + "geometry": [ + { "lat": 40.7604226, "lon": -73.9973393 }, + { "lat": 40.7603145, "lon": -73.9974191 }, + { "lat": 40.7602043, "lon": -73.9975005 }, + { "lat": 40.7600580, "lon": -73.9971357 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570148188, + "bounds": { + "minlat": 40.7579418, + "minlon": -73.9993286, + "maxlat": 40.7585934, + "maxlon": -73.9988994 + }, + "nodes": [ + 5481847153, + 9421942676, + 9421942677, + 9421942678, + 9421942671, + 5481847150, + 5481847146, + 9421942675, + 9421942674, + 9421942673, + 5890772453, + 9421942672, + 8288270529, + 5890772452 + ], + "geometry": [ + { "lat": 40.7579418, "lon": -73.9993286 }, + { "lat": 40.7580144, "lon": -73.9992738 }, + { "lat": 40.7580317, "lon": -73.9992607 }, + { "lat": 40.7581688, "lon": -73.9991572 }, + { "lat": 40.7582051, "lon": -73.9991298 }, + { "lat": 40.7582443, "lon": -73.9989965 }, + { "lat": 40.7583753, "lon": -73.9989030 }, + { "lat": 40.7583924, "lon": -73.9988994 }, + { "lat": 40.7584127, "lon": -73.9989090 }, + { "lat": 40.7584568, "lon": -73.9989829 }, + { "lat": 40.7584761, "lon": -73.9989876 }, + { "lat": 40.7584953, "lon": -73.9989748 }, + { "lat": 40.7585260, "lon": -73.9989545 }, + { "lat": 40.7585934, "lon": -73.9989090 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570148712, + "bounds": { + "minlat": 40.7592804, + "minlon": -74.0000185, + "maxlat": 40.7596162, + "maxlon": -73.9996716 + }, + "nodes": [ + 5481848950, + 5481848949, + 5481848948 + ], + "geometry": [ + { "lat": 40.7595742, "lon": -73.9996716 }, + { "lat": 40.7596162, "lon": -73.9997710 }, + { "lat": 40.7592804, "lon": -74.0000185 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570148713, + "bounds": { + "minlat": 40.7595742, + "minlon": -73.9996716, + "maxlat": 40.7597017, + "maxlon": -73.9995743 + }, + "nodes": [ + 5481848951, + 8261122952, + 5481848950 + ], + "geometry": [ + { "lat": 40.7597017, "lon": -73.9995743 }, + { "lat": 40.7596307, "lon": -73.9996292 }, + { "lat": 40.7595742, "lon": -73.9996716 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570148919, + "bounds": { + "minlat": 40.7442612, + "minlon": -73.9947666, + "maxlat": 40.7445242, + "maxlon": -73.9945877 + }, + "nodes": [ + 5481850672, + 10171337683, + 6823156262, + 5481850671 + ], + "geometry": [ + { "lat": 40.7445242, "lon": -73.9945877 }, + { "lat": 40.7444710, "lon": -73.9946239 }, + { "lat": 40.7444473, "lon": -73.9946400 }, + { "lat": 40.7442612, "lon": -73.9947666 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570148920, + "bounds": { + "minlat": 40.7442911, + "minlon": -73.9948411, + "maxlat": 40.7445537, + "maxlon": -73.9946578 + }, + "nodes": [ + 5481850674, + 10171337684, + 5481850673 + ], + "geometry": [ + { "lat": 40.7445537, "lon": -73.9946578 }, + { "lat": 40.7444985, "lon": -73.9946963 }, + { "lat": 40.7442911, "lon": -73.9948411 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570148921, + "bounds": { + "minlat": 40.7387808, + "minlon": -73.9942821, + "maxlat": 40.7393715, + "maxlon": -73.9938551 + }, + "nodes": [ + 5481850676, + 9780515977, + 9683231656, + 5481850675 + ], + "geometry": [ + { "lat": 40.7387808, "lon": -73.9942821 }, + { "lat": 40.7388430, "lon": -73.9942371 }, + { "lat": 40.7393194, "lon": -73.9938928 }, + { "lat": 40.7393715, "lon": -73.9938551 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570149023, + "bounds": { + "minlat": 40.7557592, + "minlon": -73.9979787, + "maxlat": 40.7561892, + "maxlon": -73.9977092 + }, + "nodes": [ + 5837182318, + 5889481212, + 9409760264, + 5481852079, + 9409760271, + 9409760269, + 9409760267, + 9409760265, + 9409760263, + 5889481214, + 5481852077 + ], + "geometry": [ + { "lat": 40.7561892, "lon": -73.9979787 }, + { "lat": 40.7561321, "lon": -73.9978457 }, + { "lat": 40.7561280, "lon": -73.9978361 }, + { "lat": 40.7560736, "lon": -73.9977092 }, + { "lat": 40.7560399, "lon": -73.9977335 }, + { "lat": 40.7559963, "lon": -73.9977649 }, + { "lat": 40.7559427, "lon": -73.9978035 }, + { "lat": 40.7558891, "lon": -73.9978422 }, + { "lat": 40.7558407, "lon": -73.9978771 }, + { "lat": 40.7558192, "lon": -73.9978926 }, + { "lat": 40.7557592, "lon": -73.9979353 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570149334, + "bounds": { + "minlat": 40.7553614, + "minlon": -73.9982995, + "maxlat": 40.7554710, + "maxlon": -73.9980433 + }, + "nodes": [ + 11153328262, + 5481845978 + ], + "geometry": [ + { "lat": 40.7554710, "lon": -73.9982995 }, + { "lat": 40.7553614, "lon": -73.9980433 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570149339, + "bounds": { + "minlat": 40.7058616, + "minlon": -73.9483913, + "maxlat": 40.7062770, + "maxlon": -73.9483234 + }, + "nodes": [ + 5481854366, + 5481854365 + ], + "geometry": [ + { "lat": 40.7062770, "lon": -73.9483913 }, + { "lat": 40.7058616, "lon": -73.9483234 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570149340, + "bounds": { + "minlat": 40.7058404, + "minlon": -73.9486299, + "maxlat": 40.7062557, + "maxlon": -73.9485622 + }, + "nodes": [ + 5481854369, + 5481854368 + ], + "geometry": [ + { "lat": 40.7058404, "lon": -73.9485622 }, + { "lat": 40.7062557, "lon": -73.9486299 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570149341, + "bounds": { + "minlat": 40.7065339, + "minlon": -73.9496822, + "maxlat": 40.7066675, + "maxlon": -73.9481867 + }, + "nodes": [ + 5481854373, + 9752593919, + 5481854372 + ], + "geometry": [ + { "lat": 40.7065339, "lon": -73.9496822 }, + { "lat": 40.7066560, "lon": -73.9483158 }, + { "lat": 40.7066675, "lon": -73.9481867 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570149342, + "bounds": { + "minlat": 40.7054277, + "minlon": -73.9497121, + "maxlat": 40.7067155, + "maxlon": -73.9495001 + }, + "nodes": [ + 5481854376, + 9752593920, + 5481854373, + 5481854374 + ], + "geometry": [ + { "lat": 40.7067155, "lon": -73.9497121 }, + { "lat": 40.7066324, "lon": -73.9496984 }, + { "lat": 40.7065339, "lon": -73.9496822 }, + { "lat": 40.7054277, "lon": -73.9495001 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570149343, + "bounds": { + "minlat": 40.7069864, + "minlon": -73.9504640, + "maxlat": 40.7074231, + "maxlon": -73.9501937 + }, + "nodes": [ + 5481854379, + 9755354474, + 5481854378, + 9755354475, + 5481854377 + ], + "geometry": [ + { "lat": 40.7069864, "lon": -73.9504640 }, + { "lat": 40.7069997, "lon": -73.9503489 }, + { "lat": 40.7070177, "lon": -73.9501937 }, + { "lat": 40.7073565, "lon": -73.9502495 }, + { "lat": 40.7074231, "lon": -73.9502605 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570149344, + "bounds": { + "minlat": 40.7083406, + "minlon": -73.9506870, + "maxlat": 40.7083891, + "maxlon": -73.9502125 + }, + "nodes": [ + 5481854381, + 9755354465, + 6872051651, + 5481854380 + ], + "geometry": [ + { "lat": 40.7083406, "lon": -73.9506870 }, + { "lat": 40.7083521, "lon": -73.9505742 }, + { "lat": 40.7083538, "lon": -73.9505574 }, + { "lat": 40.7083891, "lon": -73.9502125 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570149345, + "bounds": { + "minlat": 40.7082156, + "minlon": -73.9494895, + "maxlat": 40.7089243, + "maxlon": -73.9493769 + }, + "nodes": [ + 5481854383, + 9755354466, + 9226082252, + 9226082251, + 9755354467, + 6212365396 + ], + "geometry": [ + { "lat": 40.7089243, "lon": -73.9494895 }, + { "lat": 40.7088713, "lon": -73.9494811 }, + { "lat": 40.7088484, "lon": -73.9494774 }, + { "lat": 40.7083068, "lon": -73.9493914 }, + { "lat": 40.7082804, "lon": -73.9493872 }, + { "lat": 40.7082156, "lon": -73.9493769 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570149346, + "bounds": { + "minlat": 40.7088739, + "minlon": -73.9501293, + "maxlat": 40.7094678, + "maxlon": -73.9500176 + }, + "nodes": [ + 5481854385, + 9752590916, + 6872034748, + 5481854384 + ], + "geometry": [ + { "lat": 40.7088739, "lon": -73.9500176 }, + { "lat": 40.7089416, "lon": -73.9500297 }, + { "lat": 40.7089560, "lon": -73.9500323 }, + { "lat": 40.7094678, "lon": -73.9501293 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570149347, + "bounds": { + "minlat": 40.7092471, + "minlon": -73.9504039, + "maxlat": 40.7095580, + "maxlon": -73.9503586 + }, + "nodes": [ + 5481854387, + 9755354482, + 5481854386 + ], + "geometry": [ + { "lat": 40.7095580, "lon": -73.9504039 }, + { "lat": 40.7095059, "lon": -73.9503963 }, + { "lat": 40.7092471, "lon": -73.9503586 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570149348, + "bounds": { + "minlat": 40.7103079, + "minlon": -73.9501414, + "maxlat": 40.7106480, + "maxlon": -73.9500783 + }, + "nodes": [ + 5481854389, + 9752590895, + 5481854388 + ], + "geometry": [ + { "lat": 40.7103079, "lon": -73.9500783 }, + { "lat": 40.7103782, "lon": -73.9500913 }, + { "lat": 40.7106480, "lon": -73.9501414 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570149349, + "bounds": { + "minlat": 40.7084379, + "minlon": -73.9543726, + "maxlat": 40.7087222, + "maxlon": -73.9541939 + }, + "nodes": [ + 5481854391, + 9769719091, + 5481854390 + ], + "geometry": [ + { "lat": 40.7087222, "lon": -73.9541939 }, + { "lat": 40.7086607, "lon": -73.9542325 }, + { "lat": 40.7084379, "lon": -73.9543726 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570149350, + "bounds": { + "minlat": 40.7079977, + "minlon": -73.9548942, + "maxlat": 40.7081541, + "maxlon": -73.9547939 + }, + "nodes": [ + 5481854393, + 9768177520, + 6896334877, + 5481854392 + ], + "geometry": [ + { "lat": 40.7081541, "lon": -73.9547939 }, + { "lat": 40.7081062, "lon": -73.9548246 }, + { "lat": 40.7080853, "lon": -73.9548380 }, + { "lat": 40.7079977, "lon": -73.9548942 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570149351, + "bounds": { + "minlat": 40.7077883, + "minlon": -73.9553629, + "maxlat": 40.7078820, + "maxlon": -73.9550887 + }, + "nodes": [ + 5481854395, + 9769719089, + 5481854394 + ], + "geometry": [ + { "lat": 40.7078820, "lon": -73.9553629 }, + { "lat": 40.7078599, "lon": -73.9552984 }, + { "lat": 40.7077883, "lon": -73.9550887 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 570149354, + "bounds": { + "minlat": 40.7130597, + "minlon": -73.9554680, + "maxlat": 40.7135330, + "maxlon": -73.9551571 + }, + "nodes": [ + 5481854402, + 9769719090, + 5481854401 + ], + "geometry": [ + { "lat": 40.7130597, "lon": -73.9554680 }, + { "lat": 40.7131168, "lon": -73.9554305 }, + { "lat": 40.7135330, "lon": -73.9551571 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570149355, + "bounds": { + "minlat": 40.7137129, + "minlon": -73.9564754, + "maxlat": 40.7138013, + "maxlon": -73.9562172 + }, + "nodes": [ + 5481854404, + 9768177576, + 5481854403 + ], + "geometry": [ + { "lat": 40.7137129, "lon": -73.9562172 }, + { "lat": 40.7137388, "lon": -73.9562927 }, + { "lat": 40.7138013, "lon": -73.9564754 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570149359, + "bounds": { + "minlat": 40.7101631, + "minlon": -73.9574644, + "maxlat": 40.7102700, + "maxlon": -73.9574464 + }, + "nodes": [ + 5481854408, + 8842929845, + 5481854407 + ], + "geometry": [ + { "lat": 40.7102700, "lon": -73.9574644 }, + { "lat": 40.7102179, "lon": -73.9574565 }, + { "lat": 40.7101631, "lon": -73.9574464 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570149704, + "bounds": { + "minlat": 40.7543552, + "minlon": -73.9960776, + "maxlat": 40.7547414, + "maxlon": -73.9957908 + }, + "nodes": [ + 5481856930, + 5481856934, + 11153328250 + ], + "geometry": [ + { "lat": 40.7543552, "lon": -73.9960776 }, + { "lat": 40.7544356, "lon": -73.9960180 }, + { "lat": 40.7547414, "lon": -73.9957908 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "customers", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570149707, + "bounds": { + "minlat": 40.7542754, + "minlon": -73.9959232, + "maxlat": 40.7543760, + "maxlon": -73.9956903 + }, + "nodes": [ + 5481856936, + 11153328255, + 9490502656, + 5481856935 + ], + "geometry": [ + { "lat": 40.7543760, "lon": -73.9959232 }, + { "lat": 40.7543538, "lon": -73.9958719 }, + { "lat": 40.7543244, "lon": -73.9958038 }, + { "lat": 40.7542754, "lon": -73.9956903 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "customers", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 570150000, + "bounds": { + "minlat": 40.7400317, + "minlon": -73.9499925, + "maxlat": 40.7404396, + "maxlon": -73.9498605 + }, + "nodes": [ + 5481857849, + 11211160472, + 5481857848 + ], + "geometry": [ + { "lat": 40.7404396, "lon": -73.9498605 }, + { "lat": 40.7403446, "lon": -73.9498912 }, + { "lat": 40.7400317, "lon": -73.9499925 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570150001, + "bounds": { + "minlat": 40.7400571, + "minlon": -73.9501789, + "maxlat": 40.7404702, + "maxlon": -73.9500227 + }, + "nodes": [ + 5481857851, + 11211160473, + 5481857850 + ], + "geometry": [ + { "lat": 40.7404702, "lon": -73.9500227 }, + { "lat": 40.7403819, "lon": -73.9500561 }, + { "lat": 40.7400571, "lon": -73.9501789 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570150006, + "bounds": { + "minlat": 40.7457787, + "minlon": -73.9523878, + "maxlat": 40.7460656, + "maxlon": -73.9522936 + }, + "nodes": [ + 5481857864, + 11211159860, + 5481857863 + ], + "geometry": [ + { "lat": 40.7460656, "lon": -73.9522936 }, + { "lat": 40.7460043, "lon": -73.9523137 }, + { "lat": 40.7457787, "lon": -73.9523878 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570150008, + "bounds": { + "minlat": 40.7452951, + "minlon": -73.9521113, + "maxlat": 40.7456069, + "maxlon": -73.9520136 + }, + "nodes": [ + 5481857866, + 11211159859, + 5481857865 + ], + "geometry": [ + { "lat": 40.7452951, "lon": -73.9521113 }, + { "lat": 40.7453549, "lon": -73.9520925 }, + { "lat": 40.7456069, "lon": -73.9520136 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570150010, + "bounds": { + "minlat": 40.7457098, + "minlon": -73.9542730, + "maxlat": 40.7460230, + "maxlon": -73.9541713 + }, + "nodes": [ + 5481857871, + 11211159857, + 5481857870 + ], + "geometry": [ + { "lat": 40.7457098, "lon": -73.9542730 }, + { "lat": 40.7457757, "lon": -73.9542516 }, + { "lat": 40.7460230, "lon": -73.9541713 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570150035, + "bounds": { + "minlat": 40.7531612, + "minlon": -73.9961030, + "maxlat": 40.7537049, + "maxlon": -73.9955572 + }, + "nodes": [ + 5481859182, + 8660596932, + 5481859181, + 5481859180, + 8660596995, + 5481859179, + 4207913307 + ], + "geometry": [ + { "lat": 40.7531612, "lon": -73.9957238 }, + { "lat": 40.7532425, "lon": -73.9956652 }, + { "lat": 40.7533934, "lon": -73.9955572 }, + { "lat": 40.7534818, "lon": -73.9956108 }, + { "lat": 40.7536379, "lon": -73.9959478 }, + { "lat": 40.7536532, "lon": -73.9959844 }, + { "lat": 40.7537049, "lon": -73.9961030 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570150218, + "bounds": { + "minlat": 40.7488679, + "minlon": -73.9934008, + "maxlat": 40.7491366, + "maxlon": -73.9931137 + }, + "nodes": [ + 5481859789, + 10170593084, + 5481859788, + 5481859787, + 5481859786 + ], + "geometry": [ + { "lat": 40.7488679, "lon": -73.9934008 }, + { "lat": 40.7489327, "lon": -73.9933519 }, + { "lat": 40.7490456, "lon": -73.9932666 }, + { "lat": 40.7490238, "lon": -73.9932062 }, + { "lat": 40.7491366, "lon": -73.9931137 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150796, + "bounds": { + "minlat": 40.8102820, + "minlon": -73.9501722, + "maxlat": 40.8105486, + "maxlon": -73.9499837 + }, + "nodes": [ + 5481857115, + 11298585711, + 5481857114 + ], + "geometry": [ + { "lat": 40.8105486, "lon": -73.9499837 }, + { "lat": 40.8104977, "lon": -73.9500197 }, + { "lat": 40.8102820, "lon": -73.9501722 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570150802, + "bounds": { + "minlat": 40.8053359, + "minlon": -73.9551517, + "maxlat": 40.8055292, + "maxlon": -73.9546981 + }, + "nodes": [ + 5481863728, + 10168010415, + 12401145030, + 5481863727 + ], + "geometry": [ + { "lat": 40.8053359, "lon": -73.9546981 }, + { "lat": 40.8053788, "lon": -73.9548018 }, + { "lat": 40.8054064, "lon": -73.9548660 }, + { "lat": 40.8055292, "lon": -73.9551517 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570150804, + "bounds": { + "minlat": 40.8117934, + "minlon": -73.9532903, + "maxlat": 40.8119103, + "maxlon": -73.9532105 + }, + "nodes": [ + 5481863731, + 11296130427, + 5481863730 + ], + "geometry": [ + { "lat": 40.8119103, "lon": -73.9532105 }, + { "lat": 40.8118551, "lon": -73.9532482 }, + { "lat": 40.8117934, "lon": -73.9532903 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570150864, + "bounds": { + "minlat": 40.7481094, + "minlon": -73.9987316, + "maxlat": 40.7485185, + "maxlon": -73.9977723 + }, + "nodes": [ + 5481863550, + 5481863549 + ], + "geometry": [ + { "lat": 40.7481094, "lon": -73.9977723 }, + { "lat": 40.7485185, "lon": -73.9987316 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570150865, + "bounds": { + "minlat": 40.7479634, + "minlon": -73.9988404, + "maxlat": 40.7483684, + "maxlon": -73.9978768 + }, + "nodes": [ + 5481863552, + 5481863551 + ], + "geometry": [ + { "lat": 40.7483684, "lon": -73.9988404 }, + { "lat": 40.7479634, "lon": -73.9978768 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570150866, + "bounds": { + "minlat": 40.7480627, + "minlon": -73.9990588, + "maxlat": 40.7486655, + "maxlon": -73.9986250 + }, + "nodes": [ + 5481863554, + 5481863549, + 5481863552, + 5481863557, + 5481863558 + ], + "geometry": [ + { "lat": 40.7486655, "lon": -73.9986250 }, + { "lat": 40.7485185, "lon": -73.9987316 }, + { "lat": 40.7483684, "lon": -73.9988404 }, + { "lat": 40.7482328, "lon": -73.9989387 }, + { "lat": 40.7480627, "lon": -73.9990588 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150916, + "bounds": { + "minlat": 40.8443864, + "minlon": -73.9104794, + "maxlat": 40.8443885, + "maxlon": -73.9104314 + }, + "nodes": [ + 5481864181, + 5481864182 + ], + "geometry": [ + { "lat": 40.8443864, "lon": -73.9104314 }, + { "lat": 40.8443885, "lon": -73.9104794 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150917, + "bounds": { + "minlat": 40.8443885, + "minlon": -73.9107236, + "maxlat": 40.8443968, + "maxlon": -73.9104794 + }, + "nodes": [ + 5481864182, + 5481864327 + ], + "geometry": [ + { "lat": 40.8443885, "lon": -73.9104794 }, + { "lat": 40.8443968, "lon": -73.9107236 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150918, + "bounds": { + "minlat": 40.8423621, + "minlon": -73.9132677, + "maxlat": 40.8427605, + "maxlon": -73.9132275 + }, + "nodes": [ + 5481864184, + 13067954663, + 5481864183 + ], + "geometry": [ + { "lat": 40.8427605, "lon": -73.9132677 }, + { "lat": 40.8426890, "lon": -73.9132623 }, + { "lat": 40.8423621, "lon": -73.9132275 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150919, + "bounds": { + "minlat": 40.8420330, + "minlon": -73.9134940, + "maxlat": 40.8423012, + "maxlon": -73.9133817 + }, + "nodes": [ + 5481864187, + 13067976509, + 5481864186, + 5481864185 + ], + "geometry": [ + { "lat": 40.8420330, "lon": -73.9134940 }, + { "lat": 40.8420875, "lon": -73.9134611 }, + { "lat": 40.8422190, "lon": -73.9133817 }, + { "lat": 40.8423012, "lon": -73.9134192 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150920, + "bounds": { + "minlat": 40.8427494, + "minlon": -73.9138611, + "maxlat": 40.8430662, + "maxlon": -73.9136800 + }, + "nodes": [ + 5481864189, + 13017732178, + 6893237330, + 13700953717, + 5481864188 + ], + "geometry": [ + { "lat": 40.8427494, "lon": -73.9136800 }, + { "lat": 40.8427785, "lon": -73.9137550 }, + { "lat": 40.8427860, "lon": -73.9137750 }, + { "lat": 40.8427986, "lon": -73.9138078 }, + { "lat": 40.8430662, "lon": -73.9138611 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150922, + "bounds": { + "minlat": 40.8430570, + "minlon": -73.9154359, + "maxlat": 40.8433834, + "maxlon": -73.9151512 + }, + "nodes": [ + 12046949327, + 13247296491, + 5481864193, + 12046949328, + 12046949329, + 12046949330, + 12046949331, + 12046949332 + ], + "geometry": [ + { "lat": 40.8433834, "lon": -73.9154359 }, + { "lat": 40.8433356, "lon": -73.9153154 }, + { "lat": 40.8433078, "lon": -73.9152452 }, + { "lat": 40.8433005, "lon": -73.9152293 }, + { "lat": 40.8432911, "lon": -73.9152156 }, + { "lat": 40.8432783, "lon": -73.9152056 }, + { "lat": 40.8432651, "lon": -73.9151999 }, + { "lat": 40.8430570, "lon": -73.9151512 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150924, + "bounds": { + "minlat": 40.8454165, + "minlon": -73.9121360, + "maxlat": 40.8455696, + "maxlon": -73.9117733 + }, + "nodes": [ + 5481864196, + 12044864395, + 5481864195 + ], + "geometry": [ + { "lat": 40.8454165, "lon": -73.9117733 }, + { "lat": 40.8454473, "lon": -73.9118462 }, + { "lat": 40.8455696, "lon": -73.9121360 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570150925, + "bounds": { + "minlat": 40.8464111, + "minlon": -73.9151265, + "maxlat": 40.8466794, + "maxlon": -73.9149397 + }, + "nodes": [ + 5481864198, + 5481864197 + ], + "geometry": [ + { "lat": 40.8466794, "lon": -73.9149397 }, + { "lat": 40.8464111, "lon": -73.9151265 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150930, + "bounds": { + "minlat": 40.8390245, + "minlon": -73.9111286, + "maxlat": 40.8393133, + "maxlon": -73.9108537 + }, + "nodes": [ + 5481864211, + 5481864210, + 5481864209, + 5481864208 + ], + "geometry": [ + { "lat": 40.8390728, "lon": -73.9111286 }, + { "lat": 40.8393133, "lon": -73.9110146 }, + { "lat": 40.8392656, "lon": -73.9108537 }, + { "lat": 40.8390245, "lon": -73.9109895 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570150931, + "bounds": { + "minlat": 40.8389827, + "minlon": -73.9111286, + "maxlat": 40.8390728, + "maxlon": -73.9108701 + }, + "nodes": [ + 13036453971, + 5481864208, + 5481864212, + 5481864211 + ], + "geometry": [ + { "lat": 40.8389827, "lon": -73.9108701 }, + { "lat": 40.8390245, "lon": -73.9109895 }, + { "lat": 40.8390312, "lon": -73.9110093 }, + { "lat": 40.8390728, "lon": -73.9111286 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150932, + "bounds": { + "minlat": 40.8403659, + "minlon": -73.9114740, + "maxlat": 40.8404900, + "maxlon": -73.9111195 + }, + "nodes": [ + 5481864216, + 13036982507, + 5481864215, + 5481864214 + ], + "geometry": [ + { "lat": 40.8404900, "lon": -73.9111195 }, + { "lat": 40.8404432, "lon": -73.9111407 }, + { "lat": 40.8403659, "lon": -73.9111756 }, + { "lat": 40.8404445, "lon": -73.9114740 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150933, + "bounds": { + "minlat": 40.8396217, + "minlon": -73.9108309, + "maxlat": 40.8401514, + "maxlon": -73.9105402 + }, + "nodes": [ + 5481864218, + 5481864217 + ], + "geometry": [ + { "lat": 40.8396217, "lon": -73.9108309 }, + { "lat": 40.8401514, "lon": -73.9105402 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150934, + "bounds": { + "minlat": 40.8395588, + "minlon": -73.9108309, + "maxlat": 40.8403184, + "maxlon": -73.9103582 + }, + "nodes": [ + 5481864322, + 13036982506, + 5481864321, + 5481864217, + 5481864220, + 5481864219, + 5481864218 + ], + "geometry": [ + { "lat": 40.8403184, "lon": -73.9105191 }, + { "lat": 40.8402685, "lon": -73.9105406 }, + { "lat": 40.8401660, "lon": -73.9105848 }, + { "lat": 40.8401514, "lon": -73.9105402 }, + { "lat": 40.8400915, "lon": -73.9103582 }, + { "lat": 40.8395588, "lon": -73.9106391 }, + { "lat": 40.8396217, "lon": -73.9108309 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150935, + "bounds": { + "minlat": 40.8429526, + "minlon": -73.9068235, + "maxlat": 40.8430017, + "maxlon": -73.9059217 + }, + "nodes": [ + 5481864324, + 12737767469, + 5481864323 + ], + "geometry": [ + { "lat": 40.8430017, "lon": -73.9068235 }, + { "lat": 40.8429571, "lon": -73.9060049 }, + { "lat": 40.8429526, "lon": -73.9059217 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150936, + "bounds": { + "minlat": 40.8429099, + "minlon": -73.9075036, + "maxlat": 40.8429485, + "maxlon": -73.9068316 + }, + "nodes": [ + 5481864326, + 5481864325 + ], + "geometry": [ + { "lat": 40.8429099, "lon": -73.9068316 }, + { "lat": 40.8429485, "lon": -73.9075036 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570150937, + "bounds": { + "minlat": 40.8443827, + "minlon": -73.9104314, + "maxlat": 40.8443864, + "maxlon": -73.9103184 + }, + "nodes": [ + 5481864328, + 13068038757, + 5481864181 + ], + "geometry": [ + { "lat": 40.8443827, "lon": -73.9103184 }, + { "lat": 40.8443856, "lon": -73.9104077 }, + { "lat": 40.8443864, "lon": -73.9104314 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570151174, + "bounds": { + "minlat": 40.7268634, + "minlon": -73.9987176, + "maxlat": 40.7273031, + "maxlon": -73.9981427 + }, + "nodes": [ + 5481866326, + 5481866325, + 5481866324, + 5481866323 + ], + "geometry": [ + { "lat": 40.7270319, "lon": -73.9987176 }, + { "lat": 40.7268634, "lon": -73.9983702 }, + { "lat": 40.7271320, "lon": -73.9981427 }, + { "lat": 40.7273031, "lon": -73.9984916 } + ], + "tags": { + "highway": "service", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 570151175, + "bounds": { + "minlat": 40.7275616, + "minlon": -74.0019206, + "maxlat": 40.7276832, + "maxlon": -74.0016619 + }, + "nodes": [ + 5481866328, + 5481866327 + ], + "geometry": [ + { "lat": 40.7276832, "lon": -74.0019206 }, + { "lat": 40.7275616, "lon": -74.0016619 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570151176, + "bounds": { + "minlat": 40.7275992, + "minlon": -74.0019891, + "maxlat": 40.7278041, + "maxlon": -74.0018218 + }, + "nodes": [ + 5481866330, + 5829847187, + 5481866328, + 5481866329 + ], + "geometry": [ + { "lat": 40.7278041, "lon": -74.0018218 }, + { "lat": 40.7277370, "lon": -74.0018766 }, + { "lat": 40.7276832, "lon": -74.0019206 }, + { "lat": 40.7275992, "lon": -74.0019891 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570151177, + "bounds": { + "minlat": 40.7417322, + "minlon": -73.9524874, + "maxlat": 40.7419953, + "maxlon": -73.9524005 + }, + "nodes": [ + 5481866277, + 11211160407, + 5481866276 + ], + "geometry": [ + { "lat": 40.7417322, "lon": -73.9524874 }, + { "lat": 40.7417702, "lon": -73.9524748 }, + { "lat": 40.7419953, "lon": -73.9524005 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570151179, + "bounds": { + "minlat": 40.7432588, + "minlon": -73.9529862, + "maxlat": 40.7434895, + "maxlon": -73.9529094 + }, + "nodes": [ + 5481866282, + 11622964713, + 5481866281 + ], + "geometry": [ + { "lat": 40.7432588, "lon": -73.9529862 }, + { "lat": 40.7433136, "lon": -73.9529680 }, + { "lat": 40.7434895, "lon": -73.9529094 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570151181, + "bounds": { + "minlat": 40.7435144, + "minlon": -73.9563135, + "maxlat": 40.7435705, + "maxlon": -73.9560308 + }, + "nodes": [ + 5481866288, + 11622832110, + 5481866287 + ], + "geometry": [ + { "lat": 40.7435705, "lon": -73.9563135 }, + { "lat": 40.7435543, "lon": -73.9562320 }, + { "lat": 40.7435144, "lon": -73.9560308 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570151418, + "bounds": { + "minlat": 40.8002053, + "minlon": -73.9591518, + "maxlat": 40.8003926, + "maxlon": -73.9590188 + }, + "nodes": [ + 5481868703, + 11296195563, + 5481868702 + ], + "geometry": [ + { "lat": 40.8002053, "lon": -73.9591518 }, + { "lat": 40.8002633, "lon": -73.9591106 }, + { "lat": 40.8003926, "lon": -73.9590188 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570151425, + "bounds": { + "minlat": 40.7749764, + "minlon": -73.9867594, + "maxlat": 40.7754992, + "maxlon": -73.9863606 + }, + "nodes": [ + 5481869414, + 10075083049, + 5481869413 + ], + "geometry": [ + { "lat": 40.7749764, "lon": -73.9867594 }, + { "lat": 40.7750275, "lon": -73.9867204 }, + { "lat": 40.7754992, "lon": -73.9863606 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570152305, + "bounds": { + "minlat": 40.7706405, + "minlon": -73.9841411, + "maxlat": 40.7707807, + "maxlon": -73.9840110 + }, + "nodes": [ + 5481875128, + 5481875126, + 5481875125 + ], + "geometry": [ + { "lat": 40.7706405, "lon": -73.9841411 }, + { "lat": 40.7706820, "lon": -73.9840871 }, + { "lat": 40.7707807, "lon": -73.9840110 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570152306, + "bounds": { + "minlat": 40.7703622, + "minlon": -73.9843543, + "maxlat": 40.7706405, + "maxlon": -73.9838597 + }, + "nodes": [ + 42421974, + 9904596320, + 5481875128, + 5481875127 + ], + "geometry": [ + { "lat": 40.7704797, "lon": -73.9838597 }, + { "lat": 40.7705536, "lon": -73.9839891 }, + { "lat": 40.7706405, "lon": -73.9841411 }, + { "lat": 40.7703622, "lon": -73.9843543 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570152818, + "bounds": { + "minlat": 40.7021326, + "minlon": -73.9497471, + "maxlat": 40.7023897, + "maxlon": -73.9496370 + }, + "nodes": [ + 5481877627, + 9755373280, + 5481877626, + 5481877625 + ], + "geometry": [ + { "lat": 40.7023897, "lon": -73.9496370 }, + { "lat": 40.7023453, "lon": -73.9497086 }, + { "lat": 40.7023247, "lon": -73.9497418 }, + { "lat": 40.7021326, "lon": -73.9497471 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570152819, + "bounds": { + "minlat": 40.7018240, + "minlon": -73.9540742, + "maxlat": 40.7019903, + "maxlon": -73.9538328 + }, + "nodes": [ + 5481877629, + 5481877628 + ], + "geometry": [ + { "lat": 40.7019903, "lon": -73.9538328 }, + { "lat": 40.7018240, "lon": -73.9540742 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570152822, + "bounds": { + "minlat": 40.7019903, + "minlon": -73.9538777, + "maxlat": 40.7021665, + "maxlon": -73.9538252 + }, + "nodes": [ + 5481877631, + 5481877630, + 7729918156, + 5481877629 + ], + "geometry": [ + { "lat": 40.7021665, "lon": -73.9538777 }, + { "lat": 40.7021136, "lon": -73.9538252 }, + { "lat": 40.7020145, "lon": -73.9538256 }, + { "lat": 40.7019903, "lon": -73.9538328 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570152836, + "bounds": { + "minlat": 40.6999426, + "minlon": -73.9584706, + "maxlat": 40.7001652, + "maxlon": -73.9579815 + }, + "nodes": [ + 5481877650, + 9772859086, + 5481877649, + 5481877648 + ], + "geometry": [ + { "lat": 40.7001652, "lon": -73.9584706 }, + { "lat": 40.7001185, "lon": -73.9584150 }, + { "lat": 40.6999426, "lon": -73.9582054 }, + { "lat": 40.7000870, "lon": -73.9579815 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570153313, + "bounds": { + "minlat": 40.7688886, + "minlon": -73.9912614, + "maxlat": 40.7691555, + "maxlon": -73.9908417 + }, + "nodes": [ + 5481877870, + 5481877869, + 5481877868, + 5481877867 + ], + "geometry": [ + { "lat": 40.7690271, "lon": -73.9912614 }, + { "lat": 40.7688886, "lon": -73.9909373 }, + { "lat": 40.7690170, "lon": -73.9908417 }, + { "lat": 40.7691555, "lon": -73.9911658 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570153315, + "bounds": { + "minlat": 40.7691555, + "minlon": -73.9911658, + "maxlat": 40.7692947, + "maxlon": -73.9910621 + }, + "nodes": [ + 5481877871, + 10084922546, + 5481877867 + ], + "geometry": [ + { "lat": 40.7692947, "lon": -73.9910621 }, + { "lat": 40.7692382, "lon": -73.9911042 }, + { "lat": 40.7691555, "lon": -73.9911658 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 570153656, + "bounds": { + "minlat": 40.7692126, + "minlon": -73.9927859, + "maxlat": 40.7693481, + "maxlon": -73.9924753 + }, + "nodes": [ + 5481880260, + 10083864275, + 5481880259, + 5481880258 + ], + "geometry": [ + { "lat": 40.7692126, "lon": -73.9927859 }, + { "lat": 40.7692624, "lon": -73.9927509 }, + { "lat": 40.7693481, "lon": -73.9926906 }, + { "lat": 40.7692597, "lon": -73.9924753 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154240, + "bounds": { + "minlat": 40.7190476, + "minlon": -74.0026884, + "maxlat": 40.7193006, + "maxlon": -74.0021807 + }, + "nodes": [ + 5481883674, + 8307641775, + 5481883672 + ], + "geometry": [ + { "lat": 40.7190476, "lon": -74.0021807 }, + { "lat": 40.7190998, "lon": -74.0022854 }, + { "lat": 40.7193006, "lon": -74.0026884 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570154475, + "bounds": { + "minlat": 40.8092913, + "minlon": -74.0016518, + "maxlat": 40.8095593, + "maxlon": -74.0014802 + }, + "nodes": [ + 5481884041, + 5481884040, + 5481884039, + 5481884743 + ], + "geometry": [ + { "lat": 40.8095593, "lon": -74.0016518 }, + { "lat": 40.8094979, "lon": -74.0015278 }, + { "lat": 40.8093791, "lon": -74.0014802 }, + { "lat": 40.8092913, "lon": -74.0015540 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154476, + "bounds": { + "minlat": 40.8063861, + "minlon": -73.9961998, + "maxlat": 40.8068060, + "maxlon": -73.9953071 + }, + "nodes": [ + 5481884046, + 5481884045, + 5481884044, + 5481884043 + ], + "geometry": [ + { "lat": 40.8068060, "lon": -73.9961998 }, + { "lat": 40.8065851, "lon": -73.9957953 }, + { "lat": 40.8065749, "lon": -73.9956920 }, + { "lat": 40.8063861, "lon": -73.9953071 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154477, + "bounds": { + "minlat": 40.8062897, + "minlon": -73.9959107, + "maxlat": 40.8065044, + "maxlon": -73.9955512 + }, + "nodes": [ + 5481884048, + 5481884047 + ], + "geometry": [ + { "lat": 40.8065044, "lon": -73.9959107 }, + { "lat": 40.8062897, "lon": -73.9955512 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154478, + "bounds": { + "minlat": 40.8064470, + "minlon": -73.9963902, + "maxlat": 40.8067726, + "maxlon": -73.9958600 + }, + "nodes": [ + 5481884051, + 5481884050, + 5481884048, + 5481884049, + 103885422 + ], + "geometry": [ + { "lat": 40.8066822, "lon": -73.9963902 }, + { "lat": 40.8064470, "lon": -73.9959662 }, + { "lat": 40.8065044, "lon": -73.9959107 }, + { "lat": 40.8065567, "lon": -73.9958600 }, + { "lat": 40.8067726, "lon": -73.9962494 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154479, + "bounds": { + "minlat": 40.8105066, + "minlon": -74.0024750, + "maxlat": 40.8107730, + "maxlon": -74.0018702 + }, + "nodes": [ + 5481884058, + 5481884052, + 103296810 + ], + "geometry": [ + { "lat": 40.8105066, "lon": -74.0018702 }, + { "lat": 40.8105530, "lon": -74.0019744 }, + { "lat": 40.8107730, "lon": -74.0024750 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154480, + "bounds": { + "minlat": 40.8103009, + "minlon": -74.0018702, + "maxlat": 40.8109864, + "maxlon": -74.0010960 + }, + "nodes": [ + 5481884060, + 13525387272, + 10752204993, + 5481884059, + 10752204994, + 5481884058, + 5481884057, + 10752204998, + 10752204995, + 5481884056, + 10752204996, + 10752204997, + 5481884055, + 5481884054, + 13525387270, + 5481884053 + ], + "geometry": [ + { "lat": 40.8109864, "lon": -74.0014184 }, + { "lat": 40.8109467, "lon": -74.0014879 }, + { "lat": 40.8109134, "lon": -74.0015461 }, + { "lat": 40.8108977, "lon": -74.0015684 }, + { "lat": 40.8108795, "lon": -74.0015872 }, + { "lat": 40.8105066, "lon": -74.0018702 }, + { "lat": 40.8103825, "lon": -74.0017283 }, + { "lat": 40.8103385, "lon": -74.0016649 }, + { "lat": 40.8103072, "lon": -74.0016107 }, + { "lat": 40.8103009, "lon": -74.0015900 }, + { "lat": 40.8103017, "lon": -74.0015680 }, + { "lat": 40.8103058, "lon": -74.0015493 }, + { "lat": 40.8103916, "lon": -74.0013595 }, + { "lat": 40.8104634, "lon": -74.0012297 }, + { "lat": 40.8104880, "lon": -74.0011749 }, + { "lat": 40.8105235, "lon": -74.0010960 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154481, + "bounds": { + "minlat": 40.8098216, + "minlon": -74.0022976, + "maxlat": 40.8103896, + "maxlon": -74.0015446 + }, + "nodes": [ + 5481884064, + 7475993703, + 5481884063, + 5481884062, + 7475993700, + 5481884061 + ], + "geometry": [ + { "lat": 40.8098216, "lon": -74.0018446 }, + { "lat": 40.8099014, "lon": -74.0017703 }, + { "lat": 40.8101440, "lon": -74.0015446 }, + { "lat": 40.8103896, "lon": -74.0019979 }, + { "lat": 40.8101537, "lon": -74.0022237 }, + { "lat": 40.8100764, "lon": -74.0022976 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154482, + "bounds": { + "minlat": 40.8108225, + "minlon": -74.0034570, + "maxlat": 40.8109210, + "maxlon": -74.0032840 + }, + "nodes": [ + 5481884069, + 5481884065 + ], + "geometry": [ + { "lat": 40.8108225, "lon": -74.0032840 }, + { "lat": 40.8109210, "lon": -74.0034570 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154483, + "bounds": { + "minlat": 40.8106514, + "minlon": -74.0034040, + "maxlat": 40.8110758, + "maxlon": -74.0031398 + }, + "nodes": [ + 5481884070, + 7475993698, + 5481884069, + 5481884068, + 5481884067, + 5481884066 + ], + "geometry": [ + { "lat": 40.8106514, "lon": -74.0034040 }, + { "lat": 40.8107399, "lon": -74.0033420 }, + { "lat": 40.8108225, "lon": -74.0032840 }, + { "lat": 40.8108616, "lon": -74.0032129 }, + { "lat": 40.8109611, "lon": -74.0031398 }, + { "lat": 40.8110758, "lon": -74.0033343 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154484, + "bounds": { + "minlat": 40.8101932, + "minlon": -74.0037809, + "maxlat": 40.8105927, + "maxlon": -74.0032369 + }, + "nodes": [ + 5481884073, + 7475993757, + 5481884072, + 7475993758, + 5481884071 + ], + "geometry": [ + { "lat": 40.8105927, "lon": -74.0032369 }, + { "lat": 40.8105063, "lon": -74.0032888 }, + { "lat": 40.8101932, "lon": -74.0034771 }, + { "lat": 40.8102943, "lon": -74.0037344 }, + { "lat": 40.8103126, "lon": -74.0037809 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154485, + "bounds": { + "minlat": 40.8096376, + "minlon": -74.0030204, + "maxlat": 40.8099336, + "maxlon": -74.0022169 + }, + "nodes": [ + 5481884075, + 7475993753, + 7475993754, + 5481884074 + ], + "geometry": [ + { "lat": 40.8096376, "lon": -74.0022169 }, + { "lat": 40.8096561, "lon": -74.0022671 }, + { "lat": 40.8099150, "lon": -74.0029698 }, + { "lat": 40.8099336, "lon": -74.0030204 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154486, + "bounds": { + "minlat": 40.8093267, + "minlon": -74.0027272, + "maxlat": 40.8096006, + "maxlon": -74.0023206 + }, + "nodes": [ + 5481884079, + 7475993752, + 5481884078, + 5481884077, + 7475993751, + 5481884076 + ], + "geometry": [ + { "lat": 40.8094793, "lon": -74.0023206 }, + { "lat": 40.8095007, "lon": -74.0023737 }, + { "lat": 40.8096006, "lon": -74.0026215 }, + { "lat": 40.8094503, "lon": -74.0027272 }, + { "lat": 40.8093496, "lon": -74.0024773 }, + { "lat": 40.8093267, "lon": -74.0024204 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154487, + "bounds": { + "minlat": 40.8061100, + "minlon": -73.9975036, + "maxlat": 40.8064306, + "maxlon": -73.9971104 + }, + "nodes": [ + 103885418, + 5481884082, + 5481884081, + 5481884080 + ], + "geometry": [ + { "lat": 40.8062031, "lon": -73.9971104 }, + { "lat": 40.8064306, "lon": -73.9973661 }, + { "lat": 40.8063421, "lon": -73.9975036 }, + { "lat": 40.8061100, "lon": -73.9972427 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154488, + "bounds": { + "minlat": 40.8068711, + "minlon": -73.9982441, + "maxlat": 40.8071505, + "maxlon": -73.9974484 + }, + "nodes": [ + 5481884086, + 5481884085, + 5481884084, + 5481884083 + ], + "geometry": [ + { "lat": 40.8068711, "lon": -73.9974484 }, + { "lat": 40.8071505, "lon": -73.9977922 }, + { "lat": 40.8070987, "lon": -73.9979021 }, + { "lat": 40.8069241, "lon": -73.9982441 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154489, + "bounds": { + "minlat": 40.8071782, + "minlon": -73.9982456, + "maxlat": 40.8075517, + "maxlon": -73.9976423 + }, + "nodes": [ + 5481884089, + 5481884088, + 5481884087, + 5481884090 + ], + "geometry": [ + { "lat": 40.8073218, "lon": -73.9982456 }, + { "lat": 40.8075517, "lon": -73.9977626 }, + { "lat": 40.8074069, "lon": -73.9976423 }, + { "lat": 40.8071782, "lon": -73.9981228 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154490, + "bounds": { + "minlat": 40.8071782, + "minlon": -73.9983392, + "maxlat": 40.8074311, + "maxlon": -73.9981228 + }, + "nodes": [ + 5481884091, + 5481884089, + 5481884090 + ], + "geometry": [ + { "lat": 40.8074311, "lon": -73.9983392 }, + { "lat": 40.8073218, "lon": -73.9982456 }, + { "lat": 40.8071782, "lon": -73.9981228 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154491, + "bounds": { + "minlat": 40.8110423, + "minlon": -73.9947290, + "maxlat": 40.8114172, + "maxlon": -73.9945044 + }, + "nodes": [ + 5481884094, + 7604336460, + 5481884093, + 5481884092 + ], + "geometry": [ + { "lat": 40.8114172, "lon": -73.9946662 }, + { "lat": 40.8113929, "lon": -73.9946084 }, + { "lat": 40.8113493, "lon": -73.9945044 }, + { "lat": 40.8110423, "lon": -73.9947290 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154492, + "bounds": { + "minlat": 40.8132632, + "minlon": -73.9986719, + "maxlat": 40.8134601, + "maxlon": -73.9984513 + }, + "nodes": [ + 5481884098, + 5481884097 + ], + "geometry": [ + { "lat": 40.8132632, "lon": -73.9986719 }, + { "lat": 40.8134601, "lon": -73.9984513 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154493, + "bounds": { + "minlat": 40.8131594, + "minlon": -73.9986719, + "maxlat": 40.8132632, + "maxlon": -73.9985012 + }, + "nodes": [ + 5481884099, + 13523912770, + 5481884098 + ], + "geometry": [ + { "lat": 40.8131594, "lon": -73.9985012 }, + { "lat": 40.8132083, "lon": -73.9985817 }, + { "lat": 40.8132632, "lon": -73.9986719 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154494, + "bounds": { + "minlat": 40.8132632, + "minlon": -73.9988047, + "maxlat": 40.8135397, + "maxlon": -73.9984513 + }, + "nodes": [ + 5481884097, + 5481884096, + 5481884095, + 5481884098 + ], + "geometry": [ + { "lat": 40.8134601, "lon": -73.9984513 }, + { "lat": 40.8135397, "lon": -73.9985894 }, + { "lat": 40.8133337, "lon": -73.9988047 }, + { "lat": 40.8132632, "lon": -73.9986719 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154495, + "bounds": { + "minlat": 40.8135900, + "minlon": -74.0019719, + "maxlat": 40.8139252, + "maxlon": -74.0017860 + }, + "nodes": [ + 5481884102, + 5481884101, + 5481884100 + ], + "geometry": [ + { "lat": 40.8139252, "lon": -74.0019719 }, + { "lat": 40.8139239, "lon": -74.0018342 }, + { "lat": 40.8135900, "lon": -74.0017860 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154496, + "bounds": { + "minlat": 40.8135672, + "minlon": -74.0020528, + "maxlat": 40.8140711, + "maxlon": -74.0018061 + }, + "nodes": [ + 5481884104, + 5481884102, + 5481884103, + 5481884105 + ], + "geometry": [ + { "lat": 40.8140711, "lon": -74.0018061 }, + { "lat": 40.8139252, "lon": -74.0019719 }, + { "lat": 40.8138539, "lon": -74.0020528 }, + { "lat": 40.8135672, "lon": -74.0020133 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154497, + "bounds": { + "minlat": 40.8134812, + "minlon": -74.0027710, + "maxlat": 40.8135672, + "maxlon": -74.0020133 + }, + "nodes": [ + 5481884106, + 13525551039, + 5481884105 + ], + "geometry": [ + { "lat": 40.8134812, "lon": -74.0027710 }, + { "lat": 40.8134890, "lon": -74.0027025 }, + { "lat": 40.8135672, "lon": -74.0020133 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154498, + "bounds": { + "minlat": 40.8120882, + "minlon": -74.0027087, + "maxlat": 40.8123547, + "maxlon": -74.0025169 + }, + "nodes": [ + 5481884111, + 5481884107 + ], + "geometry": [ + { "lat": 40.8123547, "lon": -74.0025169 }, + { "lat": 40.8120882, "lon": -74.0027087 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154499, + "bounds": { + "minlat": 40.8121474, + "minlon": -74.0028519, + "maxlat": 40.8124349, + "maxlon": -74.0026161 + }, + "nodes": [ + 5481884110, + 5481884108 + ], + "geometry": [ + { "lat": 40.8124349, "lon": -74.0026161 }, + { "lat": 40.8121474, "lon": -74.0028519 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154500, + "bounds": { + "minlat": 40.8123547, + "minlon": -74.0027744, + "maxlat": 40.8126136, + "maxlon": -74.0024152 + }, + "nodes": [ + 103142142, + 13525387282, + 5481884111, + 5481884110, + 5481884109 + ], + "geometry": [ + { "lat": 40.8124362, "lon": -74.0024152 }, + { "lat": 40.8123907, "lon": -74.0024719 }, + { "lat": 40.8123547, "lon": -74.0025169 }, + { "lat": 40.8124349, "lon": -74.0026161 }, + { "lat": 40.8126136, "lon": -74.0027744 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154501, + "bounds": { + "minlat": 40.8101744, + "minlon": -74.0002048, + "maxlat": 40.8103338, + "maxlon": -74.0000989 + }, + "nodes": [ + 5481884114, + 5481884112 + ], + "geometry": [ + { "lat": 40.8101744, "lon": -74.0002048 }, + { "lat": 40.8103338, "lon": -74.0000989 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154502, + "bounds": { + "minlat": 40.8100252, + "minlon": -74.0003040, + "maxlat": 40.8101744, + "maxlon": -74.0000498 + }, + "nodes": [ + 5481884115, + 5481884114, + 5481884113 + ], + "geometry": [ + { "lat": 40.8101142, "lon": -74.0000498 }, + { "lat": 40.8101744, "lon": -74.0002048 }, + { "lat": 40.8100252, "lon": -74.0003040 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154503, + "bounds": { + "minlat": 40.8105601, + "minlon": -74.0003416, + "maxlat": 40.8105936, + "maxlon": -74.0002397 + }, + "nodes": [ + 5481884118, + 5481884116 + ], + "geometry": [ + { "lat": 40.8105936, "lon": -74.0003416 }, + { "lat": 40.8105601, "lon": -74.0002397 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154504, + "bounds": { + "minlat": 40.8105936, + "minlon": -74.0005108, + "maxlat": 40.8108119, + "maxlon": -74.0001874 + }, + "nodes": [ + 5481884119, + 13523912745, + 5481884118, + 5481884117 + ], + "geometry": [ + { "lat": 40.8106572, "lon": -74.0005108 }, + { "lat": 40.8106316, "lon": -74.0004426 }, + { "lat": 40.8105936, "lon": -74.0003416 }, + { "lat": 40.8108119, "lon": -74.0001874 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154505, + "bounds": { + "minlat": 40.8101983, + "minlon": -74.0007817, + "maxlat": 40.8105649, + "maxlon": -74.0004214 + }, + "nodes": [ + 5481884723, + 13523912749, + 5481884722, + 5481884721, + 13523912746, + 5481884120 + ], + "geometry": [ + { "lat": 40.8102490, "lon": -74.0007817 }, + { "lat": 40.8102201, "lon": -74.0006899 }, + { "lat": 40.8101983, "lon": -74.0006205 }, + { "lat": 40.8104840, "lon": -74.0004214 }, + { "lat": 40.8105295, "lon": -74.0005072 }, + { "lat": 40.8105649, "lon": -74.0005741 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154506, + "bounds": { + "minlat": 40.8099620, + "minlon": -74.0012643, + "maxlat": 40.8103763, + "maxlon": -74.0009470 + }, + "nodes": [ + 103232624, + 13525387269, + 5481884726, + 5481884725, + 5512688065, + 5481884724 + ], + "geometry": [ + { "lat": 40.8103763, "lon": -74.0009951 }, + { "lat": 40.8103388, "lon": -74.0010723 }, + { "lat": 40.8102455, "lon": -74.0012643 }, + { "lat": 40.8101389, "lon": -74.0011771 }, + { "lat": 40.8100217, "lon": -74.0010247 }, + { "lat": 40.8099620, "lon": -74.0009470 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154507, + "bounds": { + "minlat": 40.8098567, + "minlon": -74.0014842, + "maxlat": 40.8101166, + "maxlon": -74.0011208 + }, + "nodes": [ + 5481884736, + 5481884734, + 5481884733, + 5481884732, + 5481884731, + 5481884730, + 5481884729, + 5481884728, + 5481884727, + 5481884738 + ], + "geometry": [ + { "lat": 40.8099501, "lon": -74.0011208 }, + { "lat": 40.8100029, "lon": -74.0011503 }, + { "lat": 40.8100648, "lon": -74.0012294 }, + { "lat": 40.8101044, "lon": -74.0013179 }, + { "lat": 40.8101166, "lon": -74.0013756 }, + { "lat": 40.8100557, "lon": -74.0014534 }, + { "lat": 40.8100140, "lon": -74.0014842 }, + { "lat": 40.8099805, "lon": -74.0014681 }, + { "lat": 40.8099105, "lon": -74.0013286 }, + { "lat": 40.8098567, "lon": -74.0012817 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 570154508, + "bounds": { + "minlat": 40.8097298, + "minlon": -74.0016712, + "maxlat": 40.8099501, + "maxlon": -74.0009902 + }, + "nodes": [ + 5481884741, + 7475993761, + 5481884740, + 5481884739, + 5481884738, + 5481884737, + 5481884736, + 5512688064, + 5481884735 + ], + "geometry": [ + { "lat": 40.8097298, "lon": -74.0016712 }, + { "lat": 40.8098031, "lon": -74.0015929 }, + { "lat": 40.8098760, "lon": -74.0015151 }, + { "lat": 40.8098080, "lon": -74.0013675 }, + { "lat": 40.8098567, "lon": -74.0012817 }, + { "lat": 40.8099369, "lon": -74.0012053 }, + { "lat": 40.8099501, "lon": -74.0011208 }, + { "lat": 40.8099338, "lon": -74.0010814 }, + { "lat": 40.8098961, "lon": -74.0009902 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154509, + "bounds": { + "minlat": 40.8092001, + "minlon": -74.0017739, + "maxlat": 40.8096486, + "maxlon": -74.0014309 + }, + "nodes": [ + 5481884746, + 7475993755, + 5481884041, + 5481884745, + 5481884744, + 5481884743, + 5512688063, + 5481884742 + ], + "geometry": [ + { "lat": 40.8096486, "lon": -74.0015298 }, + { "lat": 40.8095847, "lon": -74.0016170 }, + { "lat": 40.8095593, "lon": -74.0016518 }, + { "lat": 40.8094700, "lon": -74.0017739 }, + { "lat": 40.8093157, "lon": -74.0017216 }, + { "lat": 40.8092913, "lon": -74.0015540 }, + { "lat": 40.8092662, "lon": -74.0015201 }, + { "lat": 40.8092001, "lon": -74.0014309 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154510, + "bounds": { + "minlat": 40.8084947, + "minlon": -74.0022197, + "maxlat": 40.8089989, + "maxlon": -74.0018493 + }, + "nodes": [ + 5481884747, + 7475993749, + 5481884755 + ], + "geometry": [ + { "lat": 40.8089989, "lon": -74.0018493 }, + { "lat": 40.8085358, "lon": -74.0021895 }, + { "lat": 40.8084947, "lon": -74.0022197 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154511, + "bounds": { + "minlat": 40.8085671, + "minlon": -74.0024099, + "maxlat": 40.8090775, + "maxlon": -74.0016301 + }, + "nodes": [ + 5481884750, + 5512688062, + 11047421378, + 5481884747, + 5481884749, + 7475993750, + 5481884748 + ], + "geometry": [ + { "lat": 40.8089105, "lon": -74.0016301 }, + { "lat": 40.8089538, "lon": -74.0017374 }, + { "lat": 40.8089688, "lon": -74.0017747 }, + { "lat": 40.8089989, "lon": -74.0018493 }, + { "lat": 40.8090775, "lon": -74.0020394 }, + { "lat": 40.8086117, "lon": -74.0023778 }, + { "lat": 40.8085671, "lon": -74.0024099 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154512, + "bounds": { + "minlat": 40.8081429, + "minlon": -74.0029782, + "maxlat": 40.8082478, + "maxlon": -74.0027235 + }, + "nodes": [ + 5481884752, + 5481884751 + ], + "geometry": [ + { "lat": 40.8081429, "lon": -74.0027235 }, + { "lat": 40.8082478, "lon": -74.0029782 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570154513, + "bounds": { + "minlat": 40.8084371, + "minlon": -74.0024672, + "maxlat": 40.8085046, + "maxlon": -74.0022645 + }, + "nodes": [ + 5481884753, + 5481884756 + ], + "geometry": [ + { "lat": 40.8084371, "lon": -74.0022645 }, + { "lat": 40.8085046, "lon": -74.0024672 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570154514, + "bounds": { + "minlat": 40.8084371, + "minlon": -74.0022645, + "maxlat": 40.8084947, + "maxlon": -74.0022197 + }, + "nodes": [ + 5481884755, + 5481884753 + ], + "geometry": [ + { "lat": 40.8084947, "lon": -74.0022197 }, + { "lat": 40.8084371, "lon": -74.0022645 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570154515, + "bounds": { + "minlat": 40.8079217, + "minlon": -74.0027851, + "maxlat": 40.8085046, + "maxlon": -74.0024457 + }, + "nodes": [ + 5512688061, + 5481884754, + 5481884757, + 5481884752, + 5481884756 + ], + "geometry": [ + { "lat": 40.8079217, "lon": -74.0024457 }, + { "lat": 40.8079723, "lon": -74.0025735 }, + { "lat": 40.8080560, "lon": -74.0027851 }, + { "lat": 40.8081429, "lon": -74.0027235 }, + { "lat": 40.8085046, "lon": -74.0024672 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570154516, + "bounds": { + "minlat": 40.8060237, + "minlon": -74.0039773, + "maxlat": 40.8061131, + "maxlon": -74.0038070 + }, + "nodes": [ + 5481884759, + 5481884763 + ], + "geometry": [ + { "lat": 40.8061131, "lon": -74.0039773 }, + { "lat": 40.8060237, "lon": -74.0038070 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154517, + "bounds": { + "minlat": 40.8058004, + "minlon": -74.0041490, + "maxlat": 40.8061131, + "maxlon": -74.0038070 + }, + "nodes": [ + 5481884763, + 5481884761, + 5481884760, + 5481884759 + ], + "geometry": [ + { "lat": 40.8060237, "lon": -74.0038070 }, + { "lat": 40.8058004, "lon": -74.0039693 }, + { "lat": 40.8058705, "lon": -74.0041490 }, + { "lat": 40.8061131, "lon": -74.0039773 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154518, + "bounds": { + "minlat": 40.8059591, + "minlon": -74.0038070, + "maxlat": 40.8062968, + "maxlon": -74.0034620 + }, + "nodes": [ + 5481884765, + 5481884764, + 5481884763, + 5481884762 + ], + "geometry": [ + { "lat": 40.8062362, "lon": -74.0034620 }, + { "lat": 40.8062968, "lon": -74.0036233 }, + { "lat": 40.8060237, "lon": -74.0038070 }, + { "lat": 40.8059591, "lon": -74.0036550 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570154519, + "bounds": { + "minlat": 40.7632913, + "minlon": -73.9873986, + "maxlat": 40.7635737, + "maxlon": -73.9872104 + }, + "nodes": [ + 5481883907, + 10073929758, + 6871444707, + 5481883906 + ], + "geometry": [ + { "lat": 40.7635737, "lon": -73.9872104 }, + { "lat": 40.7635135, "lon": -73.9872436 }, + { "lat": 40.7634982, "lon": -73.9872520 }, + { "lat": 40.7632913, "lon": -73.9873986 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570154520, + "bounds": { + "minlat": 40.7630389, + "minlon": -73.9873213, + "maxlat": 40.7630694, + "maxlon": -73.9872460 + }, + "nodes": [ + 5481883911, + 5481883909 + ], + "geometry": [ + { "lat": 40.7630694, "lon": -73.9873213 }, + { "lat": 40.7630389, "lon": -73.9872460 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570154521, + "bounds": { + "minlat": 40.7628676, + "minlon": -73.9874831, + "maxlat": 40.7631926, + "maxlon": -73.9873213 + }, + "nodes": [ + 5481883912, + 10073913219, + 5481883911, + 5481883910, + 5481883908 + ], + "geometry": [ + { "lat": 40.7628676, "lon": -73.9874635 }, + { "lat": 40.7629250, "lon": -73.9874231 }, + { "lat": 40.7630694, "lon": -73.9873213 }, + { "lat": 40.7631348, "lon": -73.9874831 }, + { "lat": 40.7631926, "lon": -73.9874424 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570154522, + "bounds": { + "minlat": 40.8024880, + "minlon": -73.9517387, + "maxlat": 40.8026757, + "maxlon": -73.9515995 + }, + "nodes": [ + 6223478860, + 5481882787 + ], + "geometry": [ + { "lat": 40.8026757, "lon": -73.9515995 }, + { "lat": 40.8024880, "lon": -73.9517387 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570154523, + "bounds": { + "minlat": 40.8032757, + "minlon": -73.9514490, + "maxlat": 40.8035590, + "maxlon": -73.9512464 + }, + "nodes": [ + 5481882795, + 10168729762, + 9508164354, + 5481882794 + ], + "geometry": [ + { "lat": 40.8035590, "lon": -73.9512464 }, + { "lat": 40.8035135, "lon": -73.9512790 }, + { "lat": 40.8034700, "lon": -73.9513101 }, + { "lat": 40.8032757, "lon": -73.9514490 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570154525, + "bounds": { + "minlat": 40.8016263, + "minlon": -73.9508369, + "maxlat": 40.8017549, + "maxlon": -73.9507468 + }, + "nodes": [ + 5481882801, + 10168729769, + 5481882800 + ], + "geometry": [ + { "lat": 40.8016263, "lon": -73.9508369 }, + { "lat": 40.8016873, "lon": -73.9507941 }, + { "lat": 40.8017549, "lon": -73.9507468 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570154526, + "bounds": { + "minlat": 40.7987536, + "minlon": -73.9497731, + "maxlat": 40.7992160, + "maxlon": -73.9494399 + }, + "nodes": [ + 5481882805, + 6223478853, + 5481882804 + ], + "geometry": [ + { "lat": 40.7987536, "lon": -73.9497731 }, + { "lat": 40.7988445, "lon": -73.9497088 }, + { "lat": 40.7992160, "lon": -73.9494399 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570154527, + "bounds": { + "minlat": 40.7996973, + "minlon": -73.9559082, + "maxlat": 40.7999662, + "maxlon": -73.9557190 + }, + "nodes": [ + 5481882807, + 7801821422, + 5481882806 + ], + "geometry": [ + { "lat": 40.7996973, "lon": -73.9559082 }, + { "lat": 40.7997818, "lon": -73.9558486 }, + { "lat": 40.7999662, "lon": -73.9557190 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570154528, + "bounds": { + "minlat": 40.8008570, + "minlon": -73.9567838, + "maxlat": 40.8011276, + "maxlon": -73.9565881 + }, + "nodes": [ + 5481882809, + 11296200779, + 5481882808 + ], + "geometry": [ + { "lat": 40.8008570, "lon": -73.9567838 }, + { "lat": 40.8009139, "lon": -73.9567427 }, + { "lat": 40.8011276, "lon": -73.9565881 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570155060, + "bounds": { + "minlat": 40.7605639, + "minlon": -73.9892520, + "maxlat": 40.7606599, + "maxlon": -73.9891803 + }, + "nodes": [ + 5481886056, + 5481886054 + ], + "geometry": [ + { "lat": 40.7605639, "lon": -73.9892520 }, + { "lat": 40.7606599, "lon": -73.9891803 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570155061, + "bounds": { + "minlat": 40.7603957, + "minlon": -73.9893643, + "maxlat": 40.7605639, + "maxlon": -73.9890683 + }, + "nodes": [ + 5481886057, + 10168088502, + 5481886056, + 5481886055 + ], + "geometry": [ + { "lat": 40.7603957, "lon": -73.9893643 }, + { "lat": 40.7604579, "lon": -73.9893228 }, + { "lat": 40.7605639, "lon": -73.9892520 }, + { "lat": 40.7604877, "lon": -73.9890683 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570155210, + "bounds": { + "minlat": 40.7587986, + "minlon": -73.9894755, + "maxlat": 40.7590884, + "maxlon": -73.9892714 + }, + "nodes": [ + 5481887476, + 10173121969, + 6007429050, + 5481887475 + ], + "geometry": [ + { "lat": 40.7587986, "lon": -73.9894755 }, + { "lat": 40.7588571, "lon": -73.9894338 }, + { "lat": 40.7588725, "lon": -73.9894234 }, + { "lat": 40.7590884, "lon": -73.9892714 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570156420, + "bounds": { + "minlat": 40.7900369, + "minlon": -73.9492070, + "maxlat": 40.7901113, + "maxlon": -73.9491530 + }, + "nodes": [ + 5481897024, + 7779545000, + 8732341817 + ], + "geometry": [ + { "lat": 40.7901113, "lon": -73.9491530 }, + { "lat": 40.7900562, "lon": -73.9491935 }, + { "lat": 40.7900369, "lon": -73.9492070 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570156421, + "bounds": { + "minlat": 40.7901230, + "minlon": -73.9494021, + "maxlat": 40.7901935, + "maxlon": -73.9493490 + }, + "nodes": [ + 5481897026, + 7779545002, + 8732341823 + ], + "geometry": [ + { "lat": 40.7901935, "lon": -73.9493490 }, + { "lat": 40.7901389, "lon": -73.9493907 }, + { "lat": 40.7901230, "lon": -73.9494021 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570156423, + "bounds": { + "minlat": 40.7917354, + "minlon": -73.9517735, + "maxlat": 40.7919704, + "maxlon": -73.9516217 + }, + "nodes": [ + 5481897028, + 7779645987, + 6270714184, + 5481897027 + ], + "geometry": [ + { "lat": 40.7919704, "lon": -73.9516217 }, + { "lat": 40.7919209, "lon": -73.9516590 }, + { "lat": 40.7918958, "lon": -73.9516740 }, + { "lat": 40.7917354, "lon": -73.9517735 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570156424, + "bounds": { + "minlat": 40.7907291, + "minlon": -73.9525812, + "maxlat": 40.7910115, + "maxlon": -73.9523743 + }, + "nodes": [ + 5481897031, + 7092397365, + 5481897030 + ], + "geometry": [ + { "lat": 40.7907291, "lon": -73.9525812 }, + { "lat": 40.7907980, "lon": -73.9525317 }, + { "lat": 40.7910115, "lon": -73.9523743 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 570156426, + "bounds": { + "minlat": 40.7891636, + "minlon": -73.9510814, + "maxlat": 40.7892763, + "maxlon": -73.9508115 + }, + "nodes": [ + 5481897033, + 6254630392, + 5481897032 + ], + "geometry": [ + { "lat": 40.7891636, "lon": -73.9508115 }, + { "lat": 40.7891963, "lon": -73.9508890 }, + { "lat": 40.7892763, "lon": -73.9510814 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570156427, + "bounds": { + "minlat": 40.7888815, + "minlon": -73.9520285, + "maxlat": 40.7890996, + "maxlon": -73.9518687 + }, + "nodes": [ + 5481897035, + 6254630386, + 5481897034 + ], + "geometry": [ + { "lat": 40.7888815, "lon": -73.9520285 }, + { "lat": 40.7889671, "lon": -73.9519676 }, + { "lat": 40.7890996, "lon": -73.9518687 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570156429, + "bounds": { + "minlat": 40.7908376, + "minlon": -73.9596590, + "maxlat": 40.7911344, + "maxlon": -73.9596015 + }, + "nodes": [ + 4276625437, + 5481897036 + ], + "geometry": [ + { "lat": 40.7908376, "lon": -73.9596590 }, + { "lat": 40.7911344, "lon": -73.9596015 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570156526, + "bounds": { + "minlat": 40.7392250, + "minlon": -73.9886598, + "maxlat": 40.7394278, + "maxlon": -73.9885110 + }, + "nodes": [ + 5481897719, + 10172843084, + 5481897718 + ], + "geometry": [ + { "lat": 40.7394278, "lon": -73.9885110 }, + { "lat": 40.7393672, "lon": -73.9885551 }, + { "lat": 40.7392250, "lon": -73.9886598 } + ], + "tags": { + "highway": "service", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 570156527, + "bounds": { + "minlat": 40.7428561, + "minlon": -73.9830257, + "maxlat": 40.7431197, + "maxlon": -73.9828241 + }, + "nodes": [ + 5481897722, + 11308882991, + 5481897721, + 5481897720 + ], + "geometry": [ + { "lat": 40.7428561, "lon": -73.9829501 }, + { "lat": 40.7429111, "lon": -73.9829127 }, + { "lat": 40.7430404, "lon": -73.9828241 }, + { "lat": 40.7431197, "lon": -73.9830257 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570156528, + "bounds": { + "minlat": 40.7450063, + "minlon": -73.9880716, + "maxlat": 40.7456336, + "maxlon": -73.9876312 + }, + "nodes": [ + 5481897724, + 9143542454, + 10171531355, + 11296275583, + 5481897723 + ], + "geometry": [ + { "lat": 40.7456336, "lon": -73.9876312 }, + { "lat": 40.7455957, "lon": -73.9876579 }, + { "lat": 40.7455729, "lon": -73.9876739 }, + { "lat": 40.7450688, "lon": -73.9880277 }, + { "lat": 40.7450063, "lon": -73.9880716 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570158316, + "bounds": { + "minlat": 40.7631002, + "minlon": -73.9802513, + "maxlat": 40.7633050, + "maxlon": -73.9801137 + }, + "nodes": [ + 5481907463, + 11296226842, + 5481907462 + ], + "geometry": [ + { "lat": 40.7631002, "lon": -73.9802513 }, + { "lat": 40.7631610, "lon": -73.9802105 }, + { "lat": 40.7633050, "lon": -73.9801137 } + ], + "tags": { + "highway": "service", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 570158354, + "bounds": { + "minlat": 40.7870794, + "minlon": -73.9498722, + "maxlat": 40.7873292, + "maxlon": -73.9492852 + }, + "nodes": [ + 5481907910, + 6248342736, + 5481907909 + ], + "geometry": [ + { "lat": 40.7873292, "lon": -73.9498722 }, + { "lat": 40.7872928, "lon": -73.9497903 }, + { "lat": 40.7870794, "lon": -73.9492852 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570158355, + "bounds": { + "minlat": 40.7876621, + "minlon": -73.9497503, + "maxlat": 40.7877132, + "maxlon": -73.9496285 + }, + "nodes": [ + 5481907913, + 6248342734, + 6221717894 + ], + "geometry": [ + { "lat": 40.7876621, "lon": -73.9496285 }, + { "lat": 40.7877018, "lon": -73.9497242 }, + { "lat": 40.7877132, "lon": -73.9497503 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570158356, + "bounds": { + "minlat": 40.7843848, + "minlon": -73.9572643, + "maxlat": 40.7846409, + "maxlon": -73.9570685 + }, + "nodes": [ + 5481907916, + 6270714159, + 5481907914 + ], + "geometry": [ + { "lat": 40.7843848, "lon": -73.9572643 }, + { "lat": 40.7844303, "lon": -73.9572339 }, + { "lat": 40.7846409, "lon": -73.9570685 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570158602, + "bounds": { + "minlat": 40.7337536, + "minlon": -73.9871749, + "maxlat": 40.7338836, + "maxlon": -73.9868568 + }, + "nodes": [ + 5481911747, + 8310246177, + 5481911746 + ], + "geometry": [ + { "lat": 40.7338836, "lon": -73.9871749 }, + { "lat": 40.7338083, "lon": -73.9869907 }, + { "lat": 40.7337536, "lon": -73.9868568 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570158603, + "bounds": { + "minlat": 40.7335881, + "minlon": -73.9873973, + "maxlat": 40.7341439, + "maxlon": -73.9870865 + }, + "nodes": [ + 5481911751, + 8310246178, + 5481911750, + 5481911749, + 5481911747, + 5481911748 + ], + "geometry": [ + { "lat": 40.7341439, "lon": -73.9870865 }, + { "lat": 40.7340926, "lon": -73.9871221 }, + { "lat": 40.7340210, "lon": -73.9871719 }, + { "lat": 40.7339011, "lon": -73.9871612 }, + { "lat": 40.7338836, "lon": -73.9871749 }, + { "lat": 40.7335881, "lon": -73.9873973 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570158629, + "bounds": { + "minlat": 40.7313466, + "minlon": -73.9847062, + "maxlat": 40.7316430, + "maxlon": -73.9844964 + }, + "nodes": [ + 5481912002, + 8309479575, + 5481912001 + ], + "geometry": [ + { "lat": 40.7313466, "lon": -73.9847062 }, + { "lat": 40.7314042, "lon": -73.9846654 }, + { "lat": 40.7316430, "lon": -73.9844964 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570158865, + "bounds": { + "minlat": 40.8104582, + "minlon": -73.9478242, + "maxlat": 40.8106926, + "maxlon": -73.9476568 + }, + "nodes": [ + 5481907291, + 10713687258, + 5481907290 + ], + "geometry": [ + { "lat": 40.8104582, "lon": -73.9478242 }, + { "lat": 40.8105641, "lon": -73.9477485 }, + { "lat": 40.8106926, "lon": -73.9476568 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570158866, + "bounds": { + "minlat": 40.8130886, + "minlon": -73.9488777, + "maxlat": 40.8133073, + "maxlon": -73.9483510 + }, + "nodes": [ + 5481907293, + 10713687275, + 5481907292 + ], + "geometry": [ + { "lat": 40.8133073, "lon": -73.9488777 }, + { "lat": 40.8132585, "lon": -73.9487602 }, + { "lat": 40.8130886, "lon": -73.9483510 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570158868, + "bounds": { + "minlat": 40.8121456, + "minlon": -73.9487319, + "maxlat": 40.8124060, + "maxlon": -73.9485562 + }, + "nodes": [ + 5481907295, + 10705287277, + 5481907294 + ], + "geometry": [ + { "lat": 40.8124060, "lon": -73.9485562 }, + { "lat": 40.8123498, "lon": -73.9485941 }, + { "lat": 40.8121456, "lon": -73.9487319 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570158870, + "bounds": { + "minlat": 40.8117000, + "minlon": -73.9476737, + "maxlat": 40.8119521, + "maxlon": -73.9475028 + }, + "nodes": [ + 5481907297, + 10705287278, + 5481907296 + ], + "geometry": [ + { "lat": 40.8119521, "lon": -73.9475028 }, + { "lat": 40.8119034, "lon": -73.9475358 }, + { "lat": 40.8117000, "lon": -73.9476737 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570159284, + "bounds": { + "minlat": 40.7472346, + "minlon": -73.9719433, + "maxlat": 40.7477446, + "maxlon": -73.9715789 + }, + "nodes": [ + 5481907299, + 10166084886, + 10182122876, + 5481907298 + ], + "geometry": [ + { "lat": 40.7472346, "lon": -73.9719433 }, + { "lat": 40.7472859, "lon": -73.9719077 }, + { "lat": 40.7473136, "lon": -73.9718878 }, + { "lat": 40.7477446, "lon": -73.9715789 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159299, + "bounds": { + "minlat": 40.7333124, + "minlon": -73.9521316, + "maxlat": 40.7337294, + "maxlon": -73.9518075 + }, + "nodes": [ + 5481915252, + 8097025085, + 5481915251, + 8097082924, + 5481915250 + ], + "geometry": [ + { "lat": 40.7333124, "lon": -73.9518075 }, + { "lat": 40.7333807, "lon": -73.9518257 }, + { "lat": 40.7337294, "lon": -73.9519197 }, + { "lat": 40.7337190, "lon": -73.9520338 }, + { "lat": 40.7337101, "lon": -73.9521316 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159300, + "bounds": { + "minlat": 40.7379750, + "minlon": -73.9525889, + "maxlat": 40.7380715, + "maxlon": -73.9525580 + }, + "nodes": [ + 5481915254, + 5481915253 + ], + "geometry": [ + { "lat": 40.7379750, "lon": -73.9525580 }, + { "lat": 40.7380715, "lon": -73.9525889 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159301, + "bounds": { + "minlat": 40.7376610, + "minlon": -73.9525580, + "maxlat": 40.7379750, + "maxlon": -73.9522134 + }, + "nodes": [ + 5481915256, + 5481915255, + 5481915254, + 5481915257 + ], + "geometry": [ + { "lat": 40.7376610, "lon": -73.9523240 }, + { "lat": 40.7379018, "lon": -73.9522134 }, + { "lat": 40.7379750, "lon": -73.9525580 }, + { "lat": 40.7377149, "lon": -73.9525091 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159302, + "bounds": { + "minlat": 40.7382311, + "minlon": -73.9521195, + "maxlat": 40.7385319, + "maxlon": -73.9517923 + }, + "nodes": [ + 5481915260, + 5481915259, + 5481915258, + 5481915261 + ], + "geometry": [ + { "lat": 40.7384689, "lon": -73.9517923 }, + { "lat": 40.7385319, "lon": -73.9519183 }, + { "lat": 40.7383022, "lon": -73.9521195 }, + { "lat": 40.7382311, "lon": -73.9520109 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159303, + "bounds": { + "minlat": 40.7380177, + "minlon": -73.9521544, + "maxlat": 40.7384689, + "maxlon": -73.9517923 + }, + "nodes": [ + 5481915262, + 5481915261, + 5481915260 + ], + "geometry": [ + { "lat": 40.7380177, "lon": -73.9521544 }, + { "lat": 40.7382311, "lon": -73.9520109 }, + { "lat": 40.7384689, "lon": -73.9517923 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159304, + "bounds": { + "minlat": 40.7373518, + "minlon": -73.9512116, + "maxlat": 40.7378043, + "maxlon": -73.9503720 + }, + "nodes": [ + 5481915265, + 5481915264, + 5481915263, + 2475239514 + ], + "geometry": [ + { "lat": 40.7376316, "lon": -73.9503720 }, + { "lat": 40.7378043, "lon": -73.9509554 }, + { "lat": 40.7374408, "lon": -73.9511462 }, + { "lat": 40.7373518, "lon": -73.9512116 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159305, + "bounds": { + "minlat": 40.7372627, + "minlon": -73.9520409, + "maxlat": 40.7377126, + "maxlon": -73.9503720 + }, + "nodes": [ + 5481915267, + 5481915263, + 5481915266, + 5481915265 + ], + "geometry": [ + { "lat": 40.7377126, "lon": -73.9520409 }, + { "lat": 40.7374408, "lon": -73.9511462 }, + { "lat": 40.7372627, "lon": -73.9505598 }, + { "lat": 40.7376316, "lon": -73.9503720 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159306, + "bounds": { + "minlat": 40.7367002, + "minlon": -73.9512853, + "maxlat": 40.7370457, + "maxlon": -73.9511710 + }, + "nodes": [ + 42469148, + 8097082942, + 2475239585, + 5481915269 + ], + "geometry": [ + { "lat": 40.7370457, "lon": -73.9512301 }, + { "lat": 40.7369188, "lon": -73.9511727 }, + { "lat": 40.7368916, "lon": -73.9511710 }, + { "lat": 40.7367002, "lon": -73.9512853 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159307, + "bounds": { + "minlat": 40.7362132, + "minlon": -73.9517145, + "maxlat": 40.7364939, + "maxlon": -73.9515599 + }, + "nodes": [ + 5481915273, + 8097082948, + 9489523348, + 5481915272, + 5481915271 + ], + "geometry": [ + { "lat": 40.7362132, "lon": -73.9515599 }, + { "lat": 40.7362780, "lon": -73.9515723 }, + { "lat": 40.7363031, "lon": -73.9515771 }, + { "lat": 40.7363451, "lon": -73.9515851 }, + { "lat": 40.7364939, "lon": -73.9517145 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159308, + "bounds": { + "minlat": 40.7354658, + "minlon": -73.9518955, + "maxlat": 40.7356967, + "maxlon": -73.9518616 + }, + "nodes": [ + 5481915275, + 8097082884, + 5481915274 + ], + "geometry": [ + { "lat": 40.7354658, "lon": -73.9518616 }, + { "lat": 40.7355270, "lon": -73.9518706 }, + { "lat": 40.7356967, "lon": -73.9518955 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159309, + "bounds": { + "minlat": 40.7352898, + "minlon": -73.9502976, + "maxlat": 40.7354625, + "maxlon": -73.9499895 + }, + "nodes": [ + 5481915278, + 8097082877, + 5481915277, + 5481915276 + ], + "geometry": [ + { "lat": 40.7353190, "lon": -73.9499895 }, + { "lat": 40.7353113, "lon": -73.9500750 }, + { "lat": 40.7352898, "lon": -73.9502567 }, + { "lat": 40.7354625, "lon": -73.9502976 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159310, + "bounds": { + "minlat": 40.7343066, + "minlon": -73.9512907, + "maxlat": 40.7348144, + "maxlon": -73.9511586 + }, + "nodes": [ + 5481915282, + 8097082928, + 2986435540, + 5481915281, + 5481915280, + 5481915279 + ], + "geometry": [ + { "lat": 40.7348144, "lon": -73.9511981 }, + { "lat": 40.7347516, "lon": -73.9511831 }, + { "lat": 40.7347228, "lon": -73.9511762 }, + { "lat": 40.7346140, "lon": -73.9511586 }, + { "lat": 40.7345159, "lon": -73.9512907 }, + { "lat": 40.7343066, "lon": -73.9512505 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159311, + "bounds": { + "minlat": 40.7331100, + "minlon": -73.9509406, + "maxlat": 40.7333977, + "maxlon": -73.9508917 + }, + "nodes": [ + 5481915284, + 8097159324, + 2986435546, + 5481915283 + ], + "geometry": [ + { "lat": 40.7333977, "lon": -73.9509406 }, + { "lat": 40.7333372, "lon": -73.9509311 }, + { "lat": 40.7333080, "lon": -73.9509257 }, + { "lat": 40.7331100, "lon": -73.9508917 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159312, + "bounds": { + "minlat": 40.7323209, + "minlon": -73.9513318, + "maxlat": 40.7326411, + "maxlon": -73.9512733 + }, + "nodes": [ + 5481915286, + 8097159426, + 5481915285 + ], + "geometry": [ + { "lat": 40.7326411, "lon": -73.9513318 }, + { "lat": 40.7325798, "lon": -73.9513205 }, + { "lat": 40.7323209, "lon": -73.9512733 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159313, + "bounds": { + "minlat": 40.7323783, + "minlon": -73.9519140, + "maxlat": 40.7326069, + "maxlon": -73.9516568 + }, + "nodes": [ + 5481915288, + 8097159382, + 5481915287, + 12042056973, + 12042056972 + ], + "geometry": [ + { "lat": 40.7326069, "lon": -73.9516923 }, + { "lat": 40.7325461, "lon": -73.9516821 }, + { "lat": 40.7324022, "lon": -73.9516568 }, + { "lat": 40.7323872, "lon": -73.9518181 }, + { "lat": 40.7323783, "lon": -73.9519140 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159314, + "bounds": { + "minlat": 40.7306144, + "minlon": -73.9501105, + "maxlat": 40.7311603, + "maxlon": -73.9499963 + }, + "nodes": [ + 5481915290, + 8097159344, + 2986435570, + 5481915289 + ], + "geometry": [ + { "lat": 40.7306144, "lon": -73.9499963 }, + { "lat": 40.7306894, "lon": -73.9500108 }, + { "lat": 40.7307105, "lon": -73.9500151 }, + { "lat": 40.7311603, "lon": -73.9501105 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570159315, + "bounds": { + "minlat": 40.7305230, + "minlon": -73.9509594, + "maxlat": 40.7308270, + "maxlon": -73.9509297 + }, + "nodes": [ + 5481915292, + 8097159433, + 5481915291 + ], + "geometry": [ + { "lat": 40.7305230, "lon": -73.9509297 }, + { "lat": 40.7306055, "lon": -73.9509388 }, + { "lat": 40.7308270, "lon": -73.9509594 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570159316, + "bounds": { + "minlat": 40.7305542, + "minlon": -73.9507328, + "maxlat": 40.7310739, + "maxlon": -73.9506277 + }, + "nodes": [ + 5481915294, + 8097159391, + 2986435569, + 5481915293 + ], + "geometry": [ + { "lat": 40.7305542, "lon": -73.9506277 }, + { "lat": 40.7306263, "lon": -73.9506446 }, + { "lat": 40.7306485, "lon": -73.9506490 }, + { "lat": 40.7310739, "lon": -73.9507328 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570159317, + "bounds": { + "minlat": 40.7309520, + "minlon": -73.9510557, + "maxlat": 40.7312300, + "maxlon": -73.9510024 + }, + "nodes": [ + 5481915296, + 8097159400, + 2986435568, + 5481915295 + ], + "geometry": [ + { "lat": 40.7312300, "lon": -73.9510557 }, + { "lat": 40.7311677, "lon": -73.9510446 }, + { "lat": 40.7311431, "lon": -73.9510398 }, + { "lat": 40.7309520, "lon": -73.9510024 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570159318, + "bounds": { + "minlat": 40.7307191, + "minlon": -73.9515619, + "maxlat": 40.7311936, + "maxlon": -73.9513712 + }, + "nodes": [ + 5481915298, + 8097159350, + 12042028864, + 12042028862, + 5481915297, + 12042028860, + 2987758108 + ], + "geometry": [ + { "lat": 40.7311936, "lon": -73.9514343 }, + { "lat": 40.7311285, "lon": -73.9514238 }, + { "lat": 40.7310426, "lon": -73.9514113 }, + { "lat": 40.7309249, "lon": -73.9513941 }, + { "lat": 40.7307681, "lon": -73.9513712 }, + { "lat": 40.7307405, "lon": -73.9514785 }, + { "lat": 40.7307191, "lon": -73.9515619 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570159319, + "bounds": { + "minlat": 40.7321095, + "minlon": -73.9538710, + "maxlat": 40.7324001, + "maxlon": -73.9538093 + }, + "nodes": [ + 5481915300, + 8097159414, + 5481915299 + ], + "geometry": [ + { "lat": 40.7324001, "lon": -73.9538710 }, + { "lat": 40.7323433, "lon": -73.9538590 }, + { "lat": 40.7321095, "lon": -73.9538093 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159320, + "bounds": { + "minlat": 40.7372220, + "minlon": -73.9572238, + "maxlat": 40.7373258, + "maxlon": -73.9570405 + }, + "nodes": [ + 5481915302, + 5481915301 + ], + "geometry": [ + { "lat": 40.7372220, "lon": -73.9572238 }, + { "lat": 40.7373258, "lon": -73.9570405 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159321, + "bounds": { + "minlat": 40.7343909, + "minlon": -73.9558263, + "maxlat": 40.7346612, + "maxlon": -73.9557882 + }, + "nodes": [ + 5481915307, + 7008335415, + 5481915306 + ], + "geometry": [ + { "lat": 40.7343909, "lon": -73.9557882 }, + { "lat": 40.7344362, "lon": -73.9557937 }, + { "lat": 40.7346612, "lon": -73.9558263 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159322, + "bounds": { + "minlat": 40.7336178, + "minlon": -73.9561830, + "maxlat": 40.7339052, + "maxlon": -73.9561393 + }, + "nodes": [ + 5481915309, + 7008335445, + 5481915308 + ], + "geometry": [ + { "lat": 40.7336178, "lon": -73.9561393 }, + { "lat": 40.7336852, "lon": -73.9561496 }, + { "lat": 40.7339052, "lon": -73.9561830 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159327, + "bounds": { + "minlat": 40.7325211, + "minlon": -73.9584710, + "maxlat": 40.7325597, + "maxlon": -73.9580378 + }, + "nodes": [ + 5481915321, + 8097082925, + 5481915320 + ], + "geometry": [ + { "lat": 40.7325597, "lon": -73.9580378 }, + { "lat": 40.7325513, "lon": -73.9581283 }, + { "lat": 40.7325211, "lon": -73.9584710 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159328, + "bounds": { + "minlat": 40.7363963, + "minlon": -73.9589934, + "maxlat": 40.7370298, + "maxlon": -73.9583151 + }, + "nodes": [ + 5481915324, + 10170251928, + 8097082913, + 9478443456, + 13701067336, + 5481915323 + ], + "geometry": [ + { "lat": 40.7363963, "lon": -73.9583151 }, + { "lat": 40.7364346, "lon": -73.9583522 }, + { "lat": 40.7364558, "lon": -73.9583720 }, + { "lat": 40.7369286, "lon": -73.9588038 }, + { "lat": 40.7369725, "lon": -73.9588861 }, + { "lat": 40.7370298, "lon": -73.9589934 } + ], + "tags": { + "highway": "residential", + "name": "Bell Slip", + "sidewalk:both": "separate", + "source": "Mapbox" + } +}, +{ + "type": "way", + "id": 570159809, + "bounds": { + "minlat": 40.7327143, + "minlon": -73.9490982, + "maxlat": 40.7328326, + "maxlon": -73.9479065 + }, + "nodes": [ + 5481917652, + 5481917651 + ], + "geometry": [ + { "lat": 40.7327143, "lon": -73.9490982 }, + { "lat": 40.7328326, "lon": -73.9479065 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570159811, + "bounds": { + "minlat": 40.7326862, + "minlon": -73.9493845, + "maxlat": 40.7327143, + "maxlon": -73.9490982 + }, + "nodes": [ + 3430220675, + 5481917652 + ], + "geometry": [ + { "lat": 40.7326862, "lon": -73.9493845 }, + { "lat": 40.7327143, "lon": -73.9490982 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160405, + "bounds": { + "minlat": 40.8309686, + "minlon": -73.9084186, + "maxlat": 40.8311180, + "maxlon": -73.9079328 + }, + "nodes": [ + 5481921440, + 12038478872, + 5481921439 + ], + "geometry": [ + { "lat": 40.8311180, "lon": -73.9084186 }, + { "lat": 40.8310926, "lon": -73.9083361 }, + { "lat": 40.8309686, "lon": -73.9079328 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160411, + "bounds": { + "minlat": 40.8334394, + "minlon": -73.9083619, + "maxlat": 40.8337636, + "maxlon": -73.9081636 + }, + "nodes": [ + 5481921454, + 5481921453 + ], + "geometry": [ + { "lat": 40.8337636, "lon": -73.9081636 }, + { "lat": 40.8334394, "lon": -73.9083619 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160412, + "bounds": { + "minlat": 40.8325313, + "minlon": -73.9083874, + "maxlat": 40.8330630, + "maxlon": -73.9079185 + }, + "nodes": [ + 5481921457, + 5481921456, + 5481921455 + ], + "geometry": [ + { "lat": 40.8330186, "lon": -73.9079185 }, + { "lat": 40.8330630, "lon": -73.9081045 }, + { "lat": 40.8325313, "lon": -73.9083874 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160413, + "bounds": { + "minlat": 40.8318976, + "minlon": -73.9084247, + "maxlat": 40.8335472, + "maxlon": -73.9075102 + }, + "nodes": [ + 5777474755, + 5481921462, + 5481921461, + 5481921457, + 5481921460, + 5481921459, + 12038123101, + 5481921458 + ], + "geometry": [ + { "lat": 40.8335472, "lon": -73.9075102 }, + { "lat": 40.8331979, "lon": -73.9076968 }, + { "lat": 40.8331015, "lon": -73.9078765 }, + { "lat": 40.8330186, "lon": -73.9079185 }, + { "lat": 40.8324978, "lon": -73.9081822 }, + { "lat": 40.8323111, "lon": -73.9081822 }, + { "lat": 40.8319830, "lon": -73.9083699 }, + { "lat": 40.8318976, "lon": -73.9084247 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160414, + "bounds": { + "minlat": 40.8329708, + "minlon": -73.9117085, + "maxlat": 40.8336877, + "maxlon": -73.9109918 + }, + "nodes": [ + 5481921466, + 5481921465, + 5481921464 + ], + "geometry": [ + { "lat": 40.8329708, "lon": -73.9117085 }, + { "lat": 40.8336877, "lon": -73.9112762 }, + { "lat": 40.8335795, "lon": -73.9109918 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160415, + "bounds": { + "minlat": 40.8338910, + "minlon": -73.9147345, + "maxlat": 40.8345181, + "maxlon": -73.9139584 + }, + "nodes": [ + 5481921470, + 5481921467, + 13031082338, + 5481921473 + ], + "geometry": [ + { "lat": 40.8345181, "lon": -73.9139584 }, + { "lat": 40.8338910, "lon": -73.9143325 }, + { "lat": 40.8339883, "lon": -73.9146767 }, + { "lat": 40.8340047, "lon": -73.9147345 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160416, + "bounds": { + "minlat": 40.8345181, + "minlon": -73.9143606, + "maxlat": 40.8353633, + "maxlon": -73.9135520 + }, + "nodes": [ + 5481921471, + 13031082339, + 5481921470, + 5481921469, + 13031082340, + 5481921468 + ], + "geometry": [ + { "lat": 40.8346382, "lon": -73.9143606 }, + { "lat": 40.8346182, "lon": -73.9142938 }, + { "lat": 40.8345181, "lon": -73.9139584 }, + { "lat": 40.8352273, "lon": -73.9135520 }, + { "lat": 40.8353385, "lon": -73.9138632 }, + { "lat": 40.8353633, "lon": -73.9139327 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160417, + "bounds": { + "minlat": 40.8340047, + "minlon": -73.9150836, + "maxlat": 40.8353653, + "maxlon": -73.9140040 + }, + "nodes": [ + 5481921477, + 13031082327, + 5481921476, + 5481921475, + 5481921474, + 13031082326, + 5481921473 + ], + "geometry": [ + { "lat": 40.8352425, "lon": -73.9140040 }, + { "lat": 40.8352702, "lon": -73.9140877 }, + { "lat": 40.8353653, "lon": -73.9143755 }, + { "lat": 40.8348925, "lon": -73.9146517 }, + { "lat": 40.8341335, "lon": -73.9150836 }, + { "lat": 40.8340344, "lon": -73.9148150 }, + { "lat": 40.8340047, "lon": -73.9147345 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160421, + "bounds": { + "minlat": 40.8336172, + "minlon": -73.9077209, + "maxlat": 40.8343849, + "maxlon": -73.9072939 + }, + "nodes": [ + 5481921486, + 8246868396, + 7192323945 + ], + "geometry": [ + { "lat": 40.8336172, "lon": -73.9077209 }, + { "lat": 40.8337274, "lon": -73.9076596 }, + { "lat": 40.8343849, "lon": -73.9072939 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160423, + "bounds": { + "minlat": 40.8366904, + "minlon": -73.9109986, + "maxlat": 40.8368156, + "maxlon": -73.9106794 + }, + "nodes": [ + 5481921491, + 13031229903, + 5481921490 + ], + "geometry": [ + { "lat": 40.8368156, "lon": -73.9109986 }, + { "lat": 40.8367927, "lon": -73.9109402 }, + { "lat": 40.8366904, "lon": -73.9106794 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160425, + "bounds": { + "minlat": 40.8355337, + "minlon": -73.9126904, + "maxlat": 40.8356536, + "maxlon": -73.9122927 + }, + "nodes": [ + 5481921496, + 13000993749, + 6882200324, + 5481921495 + ], + "geometry": [ + { "lat": 40.8356536, "lon": -73.9126904 }, + { "lat": 40.8356269, "lon": -73.9126071 }, + { "lat": 40.8356150, "lon": -73.9125624 }, + { "lat": 40.8355337, "lon": -73.9122927 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160426, + "bounds": { + "minlat": 40.8368782, + "minlon": -73.9118850, + "maxlat": 40.8370239, + "maxlon": -73.9114827 + }, + "nodes": [ + 5481921498, + 13000993752, + 5481921497 + ], + "geometry": [ + { "lat": 40.8370239, "lon": -73.9118850 }, + { "lat": 40.8369892, "lon": -73.9117888 }, + { "lat": 40.8368782, "lon": -73.9114827 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160427, + "bounds": { + "minlat": 40.8373419, + "minlon": -73.9116148, + "maxlat": 40.8374836, + "maxlon": -73.9112118 + }, + "nodes": [ + 5481921500, + 13000993753, + 5481921499 + ], + "geometry": [ + { "lat": 40.8374836, "lon": -73.9116148 }, + { "lat": 40.8374542, "lon": -73.9115239 }, + { "lat": 40.8373419, "lon": -73.9112118 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160428, + "bounds": { + "minlat": 40.8381435, + "minlon": -73.9105345, + "maxlat": 40.8384681, + "maxlon": -73.9102163 + }, + "nodes": [ + 5481921503, + 13036453995, + 5481921502, + 5481921501 + ], + "geometry": [ + { "lat": 40.8381435, "lon": -73.9102163 }, + { "lat": 40.8381760, "lon": -73.9103074 }, + { "lat": 40.8382570, "lon": -73.9105345 }, + { "lat": 40.8384681, "lon": -73.9104205 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570160662, + "bounds": { + "minlat": 40.8070307, + "minlon": -73.9368457, + "maxlat": 40.8073623, + "maxlon": -73.9366040 + }, + "nodes": [ + 5481922046, + 10171077365, + 5481922045 + ], + "geometry": [ + { "lat": 40.8073623, "lon": -73.9366040 }, + { "lat": 40.8073088, "lon": -73.9366430 }, + { "lat": 40.8070307, "lon": -73.9368457 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570160664, + "bounds": { + "minlat": 40.8055162, + "minlon": -73.9391148, + "maxlat": 40.8058614, + "maxlon": -73.9388566 + }, + "nodes": [ + 5481922053, + 11299063907, + 5481922052 + ], + "geometry": [ + { "lat": 40.8058614, "lon": -73.9388566 }, + { "lat": 40.8058064, "lon": -73.9388977 }, + { "lat": 40.8055162, "lon": -73.9391148 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570160665, + "bounds": { + "minlat": 40.8108996, + "minlon": -73.9386352, + "maxlat": 40.8109727, + "maxlon": -73.9384604 + }, + "nodes": [ + 5481922056, + 5481922054 + ], + "geometry": [ + { "lat": 40.8108996, "lon": -73.9384604 }, + { "lat": 40.8109727, "lon": -73.9386352 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570160666, + "bounds": { + "minlat": 40.8106837, + "minlon": -73.9386175, + "maxlat": 40.8108996, + "maxlon": -73.9384604 + }, + "nodes": [ + 5481922057, + 9559433242, + 3432429998, + 5481922056 + ], + "geometry": [ + { "lat": 40.8106837, "lon": -73.9386175 }, + { "lat": 40.8107734, "lon": -73.9385513 }, + { "lat": 40.8108236, "lon": -73.9385151 }, + { "lat": 40.8108996, "lon": -73.9384604 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570160672, + "bounds": { + "minlat": 40.8111038, + "minlon": -73.9396255, + "maxlat": 40.8115935, + "maxlon": -73.9392677 + }, + "nodes": [ + 5481922083, + 9559444344, + 6893261612, + 5481922082 + ], + "geometry": [ + { "lat": 40.8111038, "lon": -73.9396255 }, + { "lat": 40.8111940, "lon": -73.9395584 }, + { "lat": 40.8112098, "lon": -73.9395467 }, + { "lat": 40.8115935, "lon": -73.9392677 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570160677, + "bounds": { + "minlat": 40.8119426, + "minlon": -73.9397465, + "maxlat": 40.8119974, + "maxlon": -73.9396083 + }, + "nodes": [ + 5481922095, + 5481922094 + ], + "geometry": [ + { "lat": 40.8119426, "lon": -73.9396083 }, + { "lat": 40.8119974, "lon": -73.9397465 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570160679, + "bounds": { + "minlat": 40.8113144, + "minlon": -73.9401291, + "maxlat": 40.8115671, + "maxlon": -73.9399651 + }, + "nodes": [ + 5481922099, + 9559444346, + 5481922098 + ], + "geometry": [ + { "lat": 40.8113144, "lon": -73.9401291 }, + { "lat": 40.8114080, "lon": -73.9400682 }, + { "lat": 40.8115671, "lon": -73.9399651 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570160683, + "bounds": { + "minlat": 40.8120106, + "minlon": -73.9406583, + "maxlat": 40.8122729, + "maxlon": -73.9400334 + }, + "nodes": [ + 5481922106, + 5481922105 + ], + "geometry": [ + { "lat": 40.8122729, "lon": -73.9406583 }, + { "lat": 40.8120106, "lon": -73.9400334 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570160684, + "bounds": { + "minlat": 40.8122729, + "minlon": -73.9406583, + "maxlat": 40.8128773, + "maxlon": -73.9402460 + }, + "nodes": [ + 7448919054, + 5481922106 + ], + "geometry": [ + { "lat": 40.8128773, "lon": -73.9402460 }, + { "lat": 40.8122729, "lon": -73.9406583 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570160685, + "bounds": { + "minlat": 40.8134002, + "minlon": -73.9397290, + "maxlat": 40.8135808, + "maxlon": -73.9395952 + }, + "nodes": [ + 5481922120, + 9559444345, + 5481922119 + ], + "geometry": [ + { "lat": 40.8135808, "lon": -73.9395952 }, + { "lat": 40.8134923, "lon": -73.9396681 }, + { "lat": 40.8134002, "lon": -73.9397290 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570160686, + "bounds": { + "minlat": 40.8130825, + "minlon": -73.9424345, + "maxlat": 40.8133271, + "maxlon": -73.9422590 + }, + "nodes": [ + 5481924122, + 10170797772, + 6841998875, + 5481924121 + ], + "geometry": [ + { "lat": 40.8130825, "lon": -73.9424345 }, + { "lat": 40.8131366, "lon": -73.9423957 }, + { "lat": 40.8131592, "lon": -73.9423795 }, + { "lat": 40.8133271, "lon": -73.9422590 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570160687, + "bounds": { + "minlat": 40.8127286, + "minlon": -73.9425158, + "maxlat": 40.8130290, + "maxlon": -73.9423078 + }, + "nodes": [ + 5481924124, + 10170797780, + 6872043575, + 5481924123 + ], + "geometry": [ + { "lat": 40.8130290, "lon": -73.9423078 }, + { "lat": 40.8129872, "lon": -73.9423330 }, + { "lat": 40.8129705, "lon": -73.9423483 }, + { "lat": 40.8127286, "lon": -73.9425158 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570160688, + "bounds": { + "minlat": 40.8118027, + "minlon": -73.9452322, + "maxlat": 40.8120329, + "maxlon": -73.9450720 + }, + "nodes": [ + 5481907288, + 11295744900, + 5481924126 + ], + "geometry": [ + { "lat": 40.8118027, "lon": -73.9452322 }, + { "lat": 40.8118672, "lon": -73.9451873 }, + { "lat": 40.8120329, "lon": -73.9450720 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570161092, + "bounds": { + "minlat": 40.7241086, + "minlon": -73.9548158, + "maxlat": 40.7243351, + "maxlon": -73.9541181 + }, + "nodes": [ + 5481927197, + 9789402787, + 5481927195, + 5481927196 + ], + "geometry": [ + { "lat": 40.7243351, "lon": -73.9541181 }, + { "lat": 40.7243155, "lon": -73.9541785 }, + { "lat": 40.7242660, "lon": -73.9543310 }, + { "lat": 40.7241086, "lon": -73.9548158 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570161093, + "bounds": { + "minlat": 40.7224051, + "minlon": -73.9504243, + "maxlat": 40.7224392, + "maxlon": -73.9503030 + }, + "nodes": [ + 5481927200, + 5481927198 + ], + "geometry": [ + { "lat": 40.7224392, "lon": -73.9503030 }, + { "lat": 40.7224051, "lon": -73.9504243 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570161094, + "bounds": { + "minlat": 40.7224392, + "minlon": -73.9503628, + "maxlat": 40.7225656, + "maxlon": -73.9501937 + }, + "nodes": [ + 5481927201, + 5481927200, + 5481927199 + ], + "geometry": [ + { "lat": 40.7225656, "lon": -73.9503628 }, + { "lat": 40.7224392, "lon": -73.9503030 }, + { "lat": 40.7224692, "lon": -73.9501937 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570161095, + "bounds": { + "minlat": 40.7225347, + "minlon": -73.9505357, + "maxlat": 40.7227516, + "maxlon": -73.9501974 + }, + "nodes": [ + 5481927204, + 5481927203, + 11520411945, + 5481927202 + ], + "geometry": [ + { "lat": 40.7225347, "lon": -73.9504760 }, + { "lat": 40.7226557, "lon": -73.9505357 }, + { "lat": 40.7227262, "lon": -73.9502872 }, + { "lat": 40.7227516, "lon": -73.9501974 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570161096, + "bounds": { + "minlat": 40.7225347, + "minlon": -73.9504760, + "maxlat": 40.7226299, + "maxlon": -73.9501270 + }, + "nodes": [ + 5481927205, + 11520411944, + 6871543814, + 5481927201, + 5481927204 + ], + "geometry": [ + { "lat": 40.7226299, "lon": -73.9501270 }, + { "lat": 40.7226043, "lon": -73.9502171 }, + { "lat": 40.7225982, "lon": -73.9502386 }, + { "lat": 40.7225656, "lon": -73.9503628 }, + { "lat": 40.7225347, "lon": -73.9504760 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570161097, + "bounds": { + "minlat": 40.7278464, + "minlon": -73.9589186, + "maxlat": 40.7283739, + "maxlon": -73.9583007 + }, + "nodes": [ + 5481927208, + 9998478157, + 6886117286, + 13204230891, + 13204230890, + 5481927207, + 5481927206, + 13204230893, + 13204230892 + ], + "geometry": [ + { "lat": 40.7283739, "lon": -73.9583380 }, + { "lat": 40.7283115, "lon": -73.9583272 }, + { "lat": 40.7282887, "lon": -73.9583233 }, + { "lat": 40.7281450, "lon": -73.9583007 }, + { "lat": 40.7281399, "lon": -73.9583623 }, + { "lat": 40.7279021, "lon": -73.9583221 }, + { "lat": 40.7278680, "lon": -73.9586721 }, + { "lat": 40.7278557, "lon": -73.9588444 }, + { "lat": 40.7278464, "lon": -73.9589186 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570163425, + "bounds": { + "minlat": 40.7223691, + "minlon": -73.9544986, + "maxlat": 40.7226069, + "maxlon": -73.9536738 + }, + "nodes": [ + 5481933806, + 5481933809, + 5481933808, + 5481933807 + ], + "geometry": [ + { "lat": 40.7223691, "lon": -73.9544986 }, + { "lat": 40.7225667, "lon": -73.9539402 }, + { "lat": 40.7226069, "lon": -73.9538133 }, + { "lat": 40.7225124, "lon": -73.9536738 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570163426, + "bounds": { + "minlat": 40.7223111, + "minlon": -73.9539997, + "maxlat": 40.7226974, + "maxlon": -73.9536618 + }, + "nodes": [ + 5481933812, + 9794890707, + 6896886315, + 5481933809, + 5481933811, + 5481933810 + ], + "geometry": [ + { "lat": 40.7226974, "lon": -73.9539997 }, + { "lat": 40.7226581, "lon": -73.9539814 }, + { "lat": 40.7226376, "lon": -73.9539719 }, + { "lat": 40.7225667, "lon": -73.9539402 }, + { "lat": 40.7224443, "lon": -73.9538844 }, + { "lat": 40.7223111, "lon": -73.9536618 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570163570, + "bounds": { + "minlat": 40.7257454, + "minlon": -73.9862761, + "maxlat": 40.7262906, + "maxlon": -73.9858955 + }, + "nodes": [ + 5481937325, + 7120757708, + 5481937324 + ], + "geometry": [ + { "lat": 40.7262906, "lon": -73.9858955 }, + { "lat": 40.7262363, "lon": -73.9859312 }, + { "lat": 40.7257454, "lon": -73.9862761 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570163571, + "bounds": { + "minlat": 40.7258542, + "minlon": -73.9880004, + "maxlat": 40.7261576, + "maxlon": -73.9875718 + }, + "nodes": [ + 5481937329, + 5481937327, + 5481937326 + ], + "geometry": [ + { "lat": 40.7261576, "lon": -73.9879094 }, + { "lat": 40.7260308, "lon": -73.9880004 }, + { "lat": 40.7258542, "lon": -73.9875718 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570163572, + "bounds": { + "minlat": 40.7260089, + "minlon": -73.9879094, + "maxlat": 40.7263005, + "maxlon": -73.9875484 + }, + "nodes": [ + 5481937330, + 8309479225, + 5481937329, + 5481937328 + ], + "geometry": [ + { "lat": 40.7263005, "lon": -73.9878068 }, + { "lat": 40.7262360, "lon": -73.9878531 }, + { "lat": 40.7261576, "lon": -73.9879094 }, + { "lat": 40.7260089, "lon": -73.9875484 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570163573, + "bounds": { + "minlat": 40.7271785, + "minlon": -73.9930192, + "maxlat": 40.7272730, + "maxlon": -73.9928656 + }, + "nodes": [ + 5481937334, + 5481937332, + 5481937331 + ], + "geometry": [ + { "lat": 40.7272151, "lon": -73.9930192 }, + { "lat": 40.7271785, "lon": -73.9929447 }, + { "lat": 40.7272730, "lon": -73.9928656 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570163574, + "bounds": { + "minlat": 40.7270546, + "minlon": -73.9934931, + "maxlat": 40.7274405, + "maxlon": -73.9930192 + }, + "nodes": [ + 5481937335, + 8309479110, + 5481937334, + 8309479109, + 5481937333 + ], + "geometry": [ + { "lat": 40.7274405, "lon": -73.9934931 }, + { "lat": 40.7273993, "lon": -73.9934047 }, + { "lat": 40.7272151, "lon": -73.9930192 }, + { "lat": 40.7271186, "lon": -73.9930971 }, + { "lat": 40.7270546, "lon": -73.9931487 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570163575, + "bounds": { + "minlat": 40.7282098, + "minlon": -73.9896348, + "maxlat": 40.7285527, + "maxlon": -73.9894128 + }, + "nodes": [ + 5481937338, + 8309479208, + 6903227281, + 5481937337, + 5481937336 + ], + "geometry": [ + { "lat": 40.7285527, "lon": -73.9894521 }, + { "lat": 40.7284914, "lon": -73.9894978 }, + { "lat": 40.7284770, "lon": -73.9895082 }, + { "lat": 40.7283028, "lon": -73.9896348 }, + { "lat": 40.7282098, "lon": -73.9894128 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570164048, + "bounds": { + "minlat": 40.8090626, + "minlon": -73.9425879, + "maxlat": 40.8093147, + "maxlon": -73.9420478 + }, + "nodes": [ + 5481939504, + 10171956607, + 6880030802, + 5481939503, + 5481939502 + ], + "geometry": [ + { "lat": 40.8090626, "lon": -73.9425879 }, + { "lat": 40.8091175, "lon": -73.9425503 }, + { "lat": 40.8091549, "lon": -73.9425247 }, + { "lat": 40.8093147, "lon": -73.9424153 }, + { "lat": 40.8091675, "lon": -73.9420478 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570164049, + "bounds": { + "minlat": 40.8091758, + "minlon": -73.9409036, + "maxlat": 40.8094375, + "maxlon": -73.9406919 + }, + "nodes": [ + 5481939506, + 10172833435, + 5481939505 + ], + "geometry": [ + { "lat": 40.8091758, "lon": -73.9409036 }, + { "lat": 40.8092303, "lon": -73.9408590 }, + { "lat": 40.8094375, "lon": -73.9406919 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570164553, + "bounds": { + "minlat": 40.7466677, + "minlon": -73.9109892, + "maxlat": 40.7471535, + "maxlon": -73.9108919 + }, + "nodes": [ + 5481936074, + 10762233912, + 5481936073 + ], + "geometry": [ + { "lat": 40.7471535, "lon": -73.9108919 }, + { "lat": 40.7470807, "lon": -73.9109065 }, + { "lat": 40.7466677, "lon": -73.9109892 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570165742, + "bounds": { + "minlat": 40.7428138, + "minlon": -73.9118427, + "maxlat": 40.7428662, + "maxlon": -73.9114277 + }, + "nodes": [ + 5481947752, + 9950327848, + 5481947751 + ], + "geometry": [ + { "lat": 40.7428662, "lon": -73.9118427 }, + { "lat": 40.7428576, "lon": -73.9117747 }, + { "lat": 40.7428138, "lon": -73.9114277 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570165765, + "bounds": { + "minlat": 40.7422209, + "minlon": -73.9089226, + "maxlat": 40.7424642, + "maxlon": -73.9082372 + }, + "nodes": [ + 5481947776, + 9950327890, + 7388798768, + 5481947775, + 7388798767, + 9950327884, + 5481947774 + ], + "geometry": [ + { "lat": 40.7423777, "lon": -73.9082372 }, + { "lat": 40.7423874, "lon": -73.9083154 }, + { "lat": 40.7423916, "lon": -73.9083392 }, + { "lat": 40.7424642, "lon": -73.9088702 }, + { "lat": 40.7423286, "lon": -73.9089004 }, + { "lat": 40.7422937, "lon": -73.9089076 }, + { "lat": 40.7422209, "lon": -73.9089226 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570165766, + "bounds": { + "minlat": 40.7145372, + "minlon": -73.9842919, + "maxlat": 40.7148127, + "maxlon": -73.9842081 + }, + "nodes": [ + 5481948052, + 5804713761, + 5481948051, + 5481948050 + ], + "geometry": [ + { "lat": 40.7145372, "lon": -73.9842698 }, + { "lat": 40.7146435, "lon": -73.9842870 }, + { "lat": 40.7146811, "lon": -73.9842919 }, + { "lat": 40.7148127, "lon": -73.9842081 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570165767, + "bounds": { + "minlat": 40.7146083, + "minlon": -73.9861636, + "maxlat": 40.7147553, + "maxlon": -73.9858003 + }, + "nodes": [ + 5481948055, + 5481948054, + 5481948053 + ], + "geometry": [ + { "lat": 40.7147553, "lon": -73.9861636 }, + { "lat": 40.7146083, "lon": -73.9861444 }, + { "lat": 40.7146341, "lon": -73.9858003 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570165768, + "bounds": { + "minlat": 40.7147424, + "minlon": -73.9863370, + "maxlat": 40.7147787, + "maxlon": -73.9858505 + }, + "nodes": [ + 5481948057, + 5481948055, + 5481948056 + ], + "geometry": [ + { "lat": 40.7147424, "lon": -73.9863370 }, + { "lat": 40.7147553, "lon": -73.9861636 }, + { "lat": 40.7147787, "lon": -73.9858505 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570166195, + "bounds": { + "minlat": 40.7414497, + "minlon": -73.9069648, + "maxlat": 40.7415998, + "maxlon": -73.9069356 + }, + "nodes": [ + 5481949666, + 10203222053, + 5481949665 + ], + "geometry": [ + { "lat": 40.7414497, "lon": -73.9069648 }, + { "lat": 40.7415389, "lon": -73.9069475 }, + { "lat": 40.7415998, "lon": -73.9069356 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570166196, + "bounds": { + "minlat": 40.7414497, + "minlon": -73.9076031, + "maxlat": 40.7415232, + "maxlon": -73.9069648 + }, + "nodes": [ + 5481949666, + 10203222054, + 5481949668 + ], + "geometry": [ + { "lat": 40.7414497, "lon": -73.9069648 }, + { "lat": 40.7415130, "lon": -73.9075147 }, + { "lat": 40.7415232, "lon": -73.9076031 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570167619, + "bounds": { + "minlat": 40.7417824, + "minlon": -73.9147751, + "maxlat": 40.7424969, + "maxlon": -73.9143285 + }, + "nodes": [ + 5481955844, + 10762284716, + 5481955843, + 5481955842, + 10762284717, + 5481955841 + ], + "geometry": [ + { "lat": 40.7424969, "lon": -73.9145689 }, + { "lat": 40.7424407, "lon": -73.9145861 }, + { "lat": 40.7418241, "lon": -73.9147751 }, + { "lat": 40.7417824, "lon": -73.9145525 }, + { "lat": 40.7424092, "lon": -73.9143481 }, + { "lat": 40.7424694, "lon": -73.9143285 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570167632, + "bounds": { + "minlat": 40.7406324, + "minlon": -73.9148473, + "maxlat": 40.7413364, + "maxlon": -73.9146756 + }, + "nodes": [ + 5481956036, + 10762284714, + 5481956035, + 5481956034, + 5481956033 + ], + "geometry": [ + { "lat": 40.7406324, "lon": -73.9148473 }, + { "lat": 40.7406843, "lon": -73.9148304 }, + { "lat": 40.7411607, "lon": -73.9146756 }, + { "lat": 40.7411803, "lon": -73.9147840 }, + { "lat": 40.7413364, "lon": -73.9147349 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570168158, + "bounds": { + "minlat": 40.7153673, + "minlon": -73.9600488, + "maxlat": 40.7154638, + "maxlon": -73.9599450 + }, + "nodes": [ + 5481954237, + 9785615180, + 5481954236 + ], + "geometry": [ + { "lat": 40.7154638, "lon": -73.9599450 }, + { "lat": 40.7154246, "lon": -73.9599872 }, + { "lat": 40.7153673, "lon": -73.9600488 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570168159, + "bounds": { + "minlat": 40.7169570, + "minlon": -73.9577970, + "maxlat": 40.7171903, + "maxlon": -73.9574102 + }, + "nodes": [ + 5481954240, + 9795044663, + 5481954239, + 5481954238 + ], + "geometry": [ + { "lat": 40.7169570, "lon": -73.9577970 }, + { "lat": 40.7170080, "lon": -73.9577414 }, + { "lat": 40.7171903, "lon": -73.9575429 }, + { "lat": 40.7171182, "lon": -73.9574102 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570168160, + "bounds": { + "minlat": 40.7145989, + "minlon": -73.9554944, + "maxlat": 40.7148641, + "maxlon": -73.9552081 + }, + "nodes": [ + 5481954242, + 13327358064, + 5481954241 + ], + "geometry": [ + { "lat": 40.7145989, "lon": -73.9554944 }, + { "lat": 40.7146509, "lon": -73.9554383 }, + { "lat": 40.7148641, "lon": -73.9552081 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570168162, + "bounds": { + "minlat": 40.7156157, + "minlon": -73.9526722, + "maxlat": 40.7161916, + "maxlon": -73.9524233 + }, + "nodes": [ + 5481954251, + 12806342994, + 5481954250, + 5481954249, + 5481954248, + 5481954247 + ], + "geometry": [ + { "lat": 40.7156157, "lon": -73.9526722 }, + { "lat": 40.7156636, "lon": -73.9526206 }, + { "lat": 40.7158318, "lon": -73.9524394 }, + { "lat": 40.7158684, "lon": -73.9524233 }, + { "lat": 40.7160768, "lon": -73.9525989 }, + { "lat": 40.7161916, "lon": -73.9524997 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570168164, + "bounds": { + "minlat": 40.7165263, + "minlon": -73.9516543, + "maxlat": 40.7167034, + "maxlon": -73.9516249 + }, + "nodes": [ + 5481954253, + 9779533091, + 5481954252 + ], + "geometry": [ + { "lat": 40.7167034, "lon": -73.9516543 }, + { "lat": 40.7166515, "lon": -73.9516457 }, + { "lat": 40.7165263, "lon": -73.9516249 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570168165, + "bounds": { + "minlat": 40.7164600, + "minlon": -73.9510144, + "maxlat": 40.7167647, + "maxlon": -73.9509661 + }, + "nodes": [ + 5481954255, + 9779533090, + 5481954254 + ], + "geometry": [ + { "lat": 40.7167647, "lon": -73.9510144 }, + { "lat": 40.7167116, "lon": -73.9510060 }, + { "lat": 40.7164600, "lon": -73.9509661 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570168166, + "bounds": { + "minlat": 40.7185268, + "minlon": -73.9503474, + "maxlat": 40.7186756, + "maxlon": -73.9503238 + }, + "nodes": [ + 5481954257, + 5481954256 + ], + "geometry": [ + { "lat": 40.7186756, "lon": -73.9503474 }, + { "lat": 40.7185268, "lon": -73.9503238 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570168167, + "bounds": { + "minlat": 40.7185130, + "minlon": -73.9504983, + "maxlat": 40.7186615, + "maxlon": -73.9504748 + }, + "nodes": [ + 5481954259, + 5481954258 + ], + "geometry": [ + { "lat": 40.7186615, "lon": -73.9504983 }, + { "lat": 40.7185130, "lon": -73.9504748 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570168168, + "bounds": { + "minlat": 40.7182310, + "minlon": -73.9508262, + "maxlat": 40.7185050, + "maxlon": -73.9507835 + }, + "nodes": [ + 5481954261, + 6879963559, + 9789393751, + 5481954260 + ], + "geometry": [ + { "lat": 40.7185050, "lon": -73.9508262 }, + { "lat": 40.7183234, "lon": -73.9507978 }, + { "lat": 40.7183006, "lon": -73.9507943 }, + { "lat": 40.7182310, "lon": -73.9507835 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570168169, + "bounds": { + "minlat": 40.7182127, + "minlon": -73.9511875, + "maxlat": 40.7184879, + "maxlon": -73.9509745 + }, + "nodes": [ + 5481954264, + 9789393750, + 5481954263, + 5481954262 + ], + "geometry": [ + { "lat": 40.7182127, "lon": -73.9509745 }, + { "lat": 40.7182825, "lon": -73.9509854 }, + { "lat": 40.7184879, "lon": -73.9510175 }, + { "lat": 40.7184727, "lon": -73.9511875 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570168170, + "bounds": { + "minlat": 40.7186123, + "minlon": -73.9510252, + "maxlat": 40.7186960, + "maxlon": -73.9501292 + }, + "nodes": [ + 5481954266, + 10705349816, + 6864259770, + 5481954257, + 5481954259, + 5481954265 + ], + "geometry": [ + { "lat": 40.7186960, "lon": -73.9501292 }, + { "lat": 40.7186869, "lon": -73.9502268 }, + { "lat": 40.7186858, "lon": -73.9502383 }, + { "lat": 40.7186756, "lon": -73.9503474 }, + { "lat": 40.7186615, "lon": -73.9504983 }, + { "lat": 40.7186123, "lon": -73.9510252 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570169471, + "bounds": { + "minlat": 40.8034299, + "minlon": -73.9924474, + "maxlat": 40.8037774, + "maxlon": -73.9916615 + }, + "nodes": [ + 5481963125, + 5481963124 + ], + "geometry": [ + { "lat": 40.8034299, "lon": -73.9916615 }, + { "lat": 40.8037774, "lon": -73.9924474 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570169474, + "bounds": { + "minlat": 40.8017144, + "minlon": -73.9936609, + "maxlat": 40.8018170, + "maxlon": -73.9933765 + }, + "nodes": [ + 5156502415, + 2308995444, + 5156502413 + ], + "geometry": [ + { "lat": 40.8017144, "lon": -73.9936609 }, + { "lat": 40.8017662, "lon": -73.9935154 }, + { "lat": 40.8018170, "lon": -73.9933765 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Somerset Lane", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570169476, + "bounds": { + "minlat": 40.8018170, + "minlon": -73.9936718, + "maxlat": 40.8019363, + "maxlon": -73.9933765 + }, + "nodes": [ + 5156502413, + 5481963128, + 5555494167, + 5481963127, + 5481963126 + ], + "geometry": [ + { "lat": 40.8018170, "lon": -73.9933765 }, + { "lat": 40.8018368, "lon": -73.9934939 }, + { "lat": 40.8018456, "lon": -73.9935183 }, + { "lat": 40.8018662, "lon": -73.9935670 }, + { "lat": 40.8019363, "lon": -73.9936718 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Somerset Lane", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570169478, + "bounds": { + "minlat": 40.7988952, + "minlon": -73.9955378, + "maxlat": 40.7992820, + "maxlon": -73.9948141 + }, + "nodes": [ + 5481963133, + 5481963132, + 5481963131, + 5481963130, + 5481963129 + ], + "geometry": [ + { "lat": 40.7990670, "lon": -73.9948141 }, + { "lat": 40.7991937, "lon": -73.9952038 }, + { "lat": 40.7992495, "lon": -73.9952065 }, + { "lat": 40.7992820, "lon": -73.9953017 }, + { "lat": 40.7988952, "lon": -73.9955378 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169480, + "bounds": { + "minlat": 40.8048294, + "minlon": -74.0029561, + "maxlat": 40.8050979, + "maxlon": -74.0022835 + }, + "nodes": [ + 5481963135, + 5481963134, + 5481963140 + ], + "geometry": [ + { "lat": 40.8050979, "lon": -74.0029561 }, + { "lat": 40.8050137, "lon": -74.0029514 }, + { "lat": 40.8048294, "lon": -74.0022835 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169482, + "bounds": { + "minlat": 40.8049777, + "minlon": -74.0029561, + "maxlat": 40.8051583, + "maxlon": -74.0021642 + }, + "nodes": [ + 5481963139, + 5481963136, + 5481963135 + ], + "geometry": [ + { "lat": 40.8049777, "lon": -74.0021642 }, + { "lat": 40.8051583, "lon": -74.0028763 }, + { "lat": 40.8050979, "lon": -74.0029561 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169484, + "bounds": { + "minlat": 40.8045021, + "minlon": -74.0025169, + "maxlat": 40.8049777, + "maxlon": -74.0021642 + }, + "nodes": [ + 5481963150, + 5481963152, + 5481963140, + 5481963139 + ], + "geometry": [ + { "lat": 40.8045021, "lon": -74.0025169 }, + { "lat": 40.8046716, "lon": -74.0023975 }, + { "lat": 40.8048294, "lon": -74.0022835 }, + { "lat": 40.8049777, "lon": -74.0021642 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169486, + "bounds": { + "minlat": 40.8041681, + "minlon": -74.0030461, + "maxlat": 40.8041853, + "maxlon": -74.0027234 + }, + "nodes": [ + 5481963144, + 5481963143 + ], + "geometry": [ + { "lat": 40.8041853, "lon": -74.0030461 }, + { "lat": 40.8041681, "lon": -74.0027234 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169488, + "bounds": { + "minlat": 40.8040034, + "minlon": -74.0030551, + "maxlat": 40.8040200, + "maxlon": -74.0027347 + }, + "nodes": [ + 5481963146, + 5481963145 + ], + "geometry": [ + { "lat": 40.8040200, "lon": -74.0030551 }, + { "lat": 40.8040034, "lon": -74.0027347 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169490, + "bounds": { + "minlat": 40.8038401, + "minlon": -74.0030641, + "maxlat": 40.8043412, + "maxlon": -74.0027116 + }, + "nodes": [ + 5481963147, + 5481963143, + 5481963145, + 5481963148, + 5481963149 + ], + "geometry": [ + { "lat": 40.8043412, "lon": -74.0027116 }, + { "lat": 40.8041681, "lon": -74.0027234 }, + { "lat": 40.8040034, "lon": -74.0027347 }, + { "lat": 40.8038401, "lon": -74.0027459 }, + { "lat": 40.8038525, "lon": -74.0030641 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169492, + "bounds": { + "minlat": 40.8038525, + "minlon": -74.0030641, + "maxlat": 40.8043508, + "maxlon": -74.0030372 + }, + "nodes": [ + 5481963149, + 5481963146, + 5481963144, + 5481963155 + ], + "geometry": [ + { "lat": 40.8038525, "lon": -74.0030641 }, + { "lat": 40.8040200, "lon": -74.0030551 }, + { "lat": 40.8041853, "lon": -74.0030461 }, + { "lat": 40.8043508, "lon": -74.0030372 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169495, + "bounds": { + "minlat": 40.8045021, + "minlon": -74.0030201, + "maxlat": 40.8045182, + "maxlon": -74.0025169 + }, + "nodes": [ + 5481963151, + 5481963150 + ], + "geometry": [ + { "lat": 40.8045182, "lon": -74.0030201 }, + { "lat": 40.8045021, "lon": -74.0025169 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169497, + "bounds": { + "minlat": 40.8043508, + "minlon": -74.0030372, + "maxlat": 40.8047051, + "maxlon": -74.0023975 + }, + "nodes": [ + 5481963155, + 5481963151, + 5481963153, + 5481963152 + ], + "geometry": [ + { "lat": 40.8043508, "lon": -74.0030372 }, + { "lat": 40.8045182, "lon": -74.0030201 }, + { "lat": 40.8047051, "lon": -74.0030010 }, + { "lat": 40.8046716, "lon": -74.0023975 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169499, + "bounds": { + "minlat": 40.8043386, + "minlon": -74.0030372, + "maxlat": 40.8045021, + "maxlon": -74.0025169 + }, + "nodes": [ + 5481963155, + 5481963147, + 5481963154, + 5481963150 + ], + "geometry": [ + { "lat": 40.8043508, "lon": -74.0030372 }, + { "lat": 40.8043412, "lon": -74.0027116 }, + { "lat": 40.8043386, "lon": -74.0026242 }, + { "lat": 40.8045021, "lon": -74.0025169 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169501, + "bounds": { + "minlat": 40.7981571, + "minlon": -73.9953498, + "maxlat": 40.7983531, + "maxlon": -73.9948954 + }, + "nodes": [ + 5481963159, + 5481963158, + 5481963157 + ], + "geometry": [ + { "lat": 40.7982631, "lon": -73.9953498 }, + { "lat": 40.7981571, "lon": -73.9950094 }, + { "lat": 40.7983531, "lon": -73.9948954 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169503, + "bounds": { + "minlat": 40.7965906, + "minlon": -73.9949504, + "maxlat": 40.7969764, + "maxlon": -73.9946848 + }, + "nodes": [ + 5481963201, + 5964462855, + 5481963160 + ], + "geometry": [ + { "lat": 40.7969764, "lon": -73.9946848 }, + { "lat": 40.7966818, "lon": -73.9948876 }, + { "lat": 40.7965906, "lon": -73.9949504 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169504, + "bounds": { + "minlat": 40.7972962, + "minlon": -73.9956826, + "maxlat": 40.7973419, + "maxlon": -73.9954801 + }, + "nodes": [ + 5481963202, + 5481963164 + ], + "geometry": [ + { "lat": 40.7972962, "lon": -73.9954801 }, + { "lat": 40.7973419, "lon": -73.9956826 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169506, + "bounds": { + "minlat": 40.7967023, + "minlon": -73.9963613, + "maxlat": 40.7973419, + "maxlon": -73.9956826 + }, + "nodes": [ + 5481963164, + 5481963163, + 5481963162, + 5481963161 + ], + "geometry": [ + { "lat": 40.7973419, "lon": -73.9956826 }, + { "lat": 40.7970708, "lon": -73.9958636 }, + { "lat": 40.7967023, "lon": -73.9960876 }, + { "lat": 40.7967895, "lon": -73.9963613 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570169508, + "bounds": { + "minlat": 40.8050347, + "minlon": -73.9954868, + "maxlat": 40.8052928, + "maxlon": -73.9949494 + }, + "nodes": [ + 5481963166, + 5481963165 + ], + "geometry": [ + { "lat": 40.8050347, "lon": -73.9949494 }, + { "lat": 40.8052928, "lon": -73.9954868 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169510, + "bounds": { + "minlat": 40.8049486, + "minlon": -73.9930973, + "maxlat": 40.8050202, + "maxlon": -73.9927475 + }, + "nodes": [ + 5481963168, + 5481963167 + ], + "geometry": [ + { "lat": 40.8049486, "lon": -73.9927475 }, + { "lat": 40.8050202, "lon": -73.9930973 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570169512, + "bounds": { + "minlat": 40.8048964, + "minlon": -73.9931224, + "maxlat": 40.8054614, + "maxlon": -73.9926872 + }, + "nodes": [ + 5481963172, + 5481963167, + 5481963170, + 5481963169 + ], + "geometry": [ + { "lat": 40.8048964, "lon": -73.9931224 }, + { "lat": 40.8050202, "lon": -73.9930973 }, + { "lat": 40.8054614, "lon": -73.9930078 }, + { "lat": 40.8054055, "lon": -73.9926872 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169513, + "bounds": { + "minlat": 40.8047269, + "minlon": -73.9933321, + "maxlat": 40.8049128, + "maxlon": -73.9931224 + }, + "nodes": [ + 5481963173, + 5481963172, + 5481963171 + ], + "geometry": [ + { "lat": 40.8049128, "lon": -73.9933321 }, + { "lat": 40.8048964, "lon": -73.9931224 }, + { "lat": 40.8047269, "lon": -73.9931452 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169515, + "bounds": { + "minlat": 40.8036535, + "minlon": -73.9937805, + "maxlat": 40.8038530, + "maxlon": -73.9934932 + }, + "nodes": [ + 5481963177, + 13886816681, + 5481963176, + 5481963175, + 13886816680, + 5481963174 + ], + "geometry": [ + { "lat": 40.8038070, "lon": -73.9934932 }, + { "lat": 40.8038260, "lon": -73.9935903 }, + { "lat": 40.8038530, "lon": -73.9937279 }, + { "lat": 40.8036989, "lon": -73.9937805 }, + { "lat": 40.8036728, "lon": -73.9936476 }, + { "lat": 40.8036535, "lon": -73.9935490 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570169517, + "bounds": { + "minlat": 40.8038432, + "minlon": -73.9932982, + "maxlat": 40.8041402, + "maxlon": -73.9930902 + }, + "nodes": [ + 5481963186, + 5481963180, + 5481963179, + 5555494166, + 5481963178 + ], + "geometry": [ + { "lat": 40.8038432, "lon": -73.9930902 }, + { "lat": 40.8039209, "lon": -73.9932022 }, + { "lat": 40.8039249, "lon": -73.9932103 }, + { "lat": 40.8039731, "lon": -73.9932312 }, + { "lat": 40.8041402, "lon": -73.9932982 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570169519, + "bounds": { + "minlat": 40.8031509, + "minlon": -73.9933182, + "maxlat": 40.8036894, + "maxlon": -73.9927330 + }, + "nodes": [ + 5481963183, + 5481963182, + 5481963181, + 5481963184 + ], + "geometry": [ + { "lat": 40.8036894, "lon": -73.9927330 }, + { "lat": 40.8031509, "lon": -73.9931586 }, + { "lat": 40.8031813, "lon": -73.9932632 }, + { "lat": 40.8032362, "lon": -73.9933182 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169520, + "bounds": { + "minlat": 40.8032362, + "minlon": -73.9933182, + "maxlat": 40.8038432, + "maxlon": -73.9925645 + }, + "nodes": [ + 5481963188, + 5481963183, + 5481963186, + 5481963185, + 5481963184 + ], + "geometry": [ + { "lat": 40.8036169, "lon": -73.9925645 }, + { "lat": 40.8036894, "lon": -73.9927330 }, + { "lat": 40.8038432, "lon": -73.9930902 }, + { "lat": 40.8037783, "lon": -73.9931305 }, + { "lat": 40.8032362, "lon": -73.9933182 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169522, + "bounds": { + "minlat": 40.8020085, + "minlon": -73.9933880, + "maxlat": 40.8040744, + "maxlon": -73.9922308 + }, + "nodes": [ + 5481963195, + 5481963194, + 5481963193, + 5481963192, + 5481963191, + 5481963190, + 5481963189, + 5481963188, + 5481963124, + 13773208102, + 5481963187 + ], + "geometry": [ + { "lat": 40.8020085, "lon": -73.9927773 }, + { "lat": 40.8021175, "lon": -73.9929172 }, + { "lat": 40.8022251, "lon": -73.9931452 }, + { "lat": 40.8023276, "lon": -73.9933397 }, + { "lat": 40.8024697, "lon": -73.9933880 }, + { "lat": 40.8026159, "lon": -73.9933504 }, + { "lat": 40.8030402, "lon": -73.9930098 }, + { "lat": 40.8036169, "lon": -73.9925645 }, + { "lat": 40.8037774, "lon": -73.9924474 }, + { "lat": 40.8040225, "lon": -73.9922687 }, + { "lat": 40.8040744, "lon": -73.9922308 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169525, + "bounds": { + "minlat": 40.8002389, + "minlon": -73.9945594, + "maxlat": 40.8003479, + "maxlon": -73.9944887 + }, + "nodes": [ + 5481963199, + 5481963198 + ], + "geometry": [ + { "lat": 40.8002389, "lon": -73.9945594 }, + { "lat": 40.8003479, "lon": -73.9944887 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169527, + "bounds": { + "minlat": 40.8003021, + "minlon": -73.9944887, + "maxlat": 40.8003866, + "maxlon": -73.9941439 + }, + "nodes": [ + 5481963198, + 5481963197, + 5481963196 + ], + "geometry": [ + { "lat": 40.8003479, "lon": -73.9944887 }, + { "lat": 40.8003866, "lon": -73.9944313 }, + { "lat": 40.8003021, "lon": -73.9941439 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169528, + "bounds": { + "minlat": 40.8000870, + "minlon": -73.9945829, + "maxlat": 40.8002389, + "maxlon": -73.9942447 + }, + "nodes": [ + 4205751590, + 5481963200, + 5481963199 + ], + "geometry": [ + { "lat": 40.8000870, "lon": -73.9942447 }, + { "lat": 40.8001744, "lon": -73.9945829 }, + { "lat": 40.8002389, "lon": -73.9945594 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169530, + "bounds": { + "minlat": 40.7974333, + "minlon": -73.9953996, + "maxlat": 40.7975378, + "maxlon": -73.9953299 + }, + "nodes": [ + 5481963203, + 103882465 + ], + "geometry": [ + { "lat": 40.7975378, "lon": -73.9953299 }, + { "lat": 40.7974333, "lon": -73.9953996 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169532, + "bounds": { + "minlat": 40.7969764, + "minlon": -73.9954801, + "maxlat": 40.7974333, + "maxlon": -73.9945906 + }, + "nodes": [ + 103882465, + 5481963202, + 5481963201, + 5481963218 + ], + "geometry": [ + { "lat": 40.7974333, "lon": -73.9953996 }, + { "lat": 40.7972962, "lon": -73.9954801 }, + { "lat": 40.7969764, "lon": -73.9946848 }, + { "lat": 40.7971364, "lon": -73.9945906 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169534, + "bounds": { + "minlat": 40.7971683, + "minlon": -73.9957430, + "maxlat": 40.7976989, + "maxlon": -73.9943978 + }, + "nodes": [ + 6656196023, + 10181882782, + 5481963205, + 5481963203, + 5481963204 + ], + "geometry": [ + { "lat": 40.7971683, "lon": -73.9943978 }, + { "lat": 40.7971928, "lon": -73.9944539 }, + { "lat": 40.7972243, "lon": -73.9945259 }, + { "lat": 40.7975378, "lon": -73.9953299 }, + { "lat": 40.7976989, "lon": -73.9957430 } + ], + "tags": { + "highway": "residential", + "name": "Cove Lane", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Cove", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 570169538, + "bounds": { + "minlat": 40.7976526, + "minlon": -73.9942818, + "maxlat": 40.7977632, + "maxlon": -73.9941148 + }, + "nodes": [ + 5481963208, + 5481963207, + 5481963206, + 5481963212 + ], + "geometry": [ + { "lat": 40.7976729, "lon": -73.9942818 }, + { "lat": 40.7976526, "lon": -73.9941899 }, + { "lat": 40.7976861, "lon": -73.9941363 }, + { "lat": 40.7977632, "lon": -73.9941148 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169539, + "bounds": { + "minlat": 40.7971364, + "minlon": -73.9945906, + "maxlat": 40.7973855, + "maxlon": -73.9944072 + }, + "nodes": [ + 5481963218, + 5481963205, + 5481963217 + ], + "geometry": [ + { "lat": 40.7971364, "lon": -73.9945906 }, + { "lat": 40.7972243, "lon": -73.9945259 }, + { "lat": 40.7973855, "lon": -73.9944072 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169541, + "bounds": { + "minlat": 40.7973855, + "minlon": -73.9944072, + "maxlat": 40.7978114, + "maxlon": -73.9941913 + }, + "nodes": [ + 5481963211, + 5481963210, + 5481963209, + 5481963208, + 5481963217 + ], + "geometry": [ + { "lat": 40.7978114, "lon": -73.9941913 }, + { "lat": 40.7977957, "lon": -73.9942684 }, + { "lat": 40.7977439, "lon": -73.9943073 }, + { "lat": 40.7976729, "lon": -73.9942818 }, + { "lat": 40.7973855, "lon": -73.9944072 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570169543, + "bounds": { + "minlat": 40.7973855, + "minlon": -73.9944072, + "maxlat": 40.7978114, + "maxlon": -73.9940397 + }, + "nodes": [ + 5481963217, + 5481963216, + 5481963215, + 5481963214, + 5481963213, + 5481963212, + 5481963211 + ], + "geometry": [ + { "lat": 40.7973855, "lon": -73.9944072 }, + { "lat": 40.7974454, "lon": -73.9942275 }, + { "lat": 40.7975165, "lon": -73.9940867 }, + { "lat": 40.7975906, "lon": -73.9940397 }, + { "lat": 40.7976881, "lon": -73.9940491 }, + { "lat": 40.7977632, "lon": -73.9941148 }, + { "lat": 40.7978114, "lon": -73.9941913 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570169545, + "bounds": { + "minlat": 40.8050066, + "minlon": -73.9961936, + "maxlat": 40.8051786, + "maxlon": -73.9959488 + }, + "nodes": [ + 5481963219, + 5481964622 + ], + "geometry": [ + { "lat": 40.8051786, "lon": -73.9959488 }, + { "lat": 40.8050066, "lon": -73.9961936 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169547, + "bounds": { + "minlat": 40.8048791, + "minlon": -73.9960887, + "maxlat": 40.8051081, + "maxlon": -73.9958113 + }, + "nodes": [ + 5481964621, + 5481963220 + ], + "geometry": [ + { "lat": 40.8048791, "lon": -73.9960887 }, + { "lat": 40.8051081, "lon": -73.9958113 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169549, + "bounds": { + "minlat": 40.8047376, + "minlon": -73.9961936, + "maxlat": 40.8050066, + "maxlon": -73.9959723 + }, + "nodes": [ + 103881118, + 5481964621, + 5481964622 + ], + "geometry": [ + { "lat": 40.8047376, "lon": -73.9959723 }, + { "lat": 40.8048791, "lon": -73.9960887 }, + { "lat": 40.8050066, "lon": -73.9961936 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169551, + "bounds": { + "minlat": 40.8047376, + "minlon": -73.9959723, + "maxlat": 40.8050137, + "maxlon": -73.9956155 + }, + "nodes": [ + 5481964623, + 103881118 + ], + "geometry": [ + { "lat": 40.8050137, "lon": -73.9956155 }, + { "lat": 40.8047376, "lon": -73.9959723 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169553, + "bounds": { + "minlat": 40.8012667, + "minlon": -73.9957778, + "maxlat": 40.8013723, + "maxlon": -73.9957456 + }, + "nodes": [ + 5481964626, + 5481964624 + ], + "geometry": [ + { "lat": 40.8012667, "lon": -73.9957778 }, + { "lat": 40.8013723, "lon": -73.9957456 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169555, + "bounds": { + "minlat": 40.8006505, + "minlon": -73.9964268, + "maxlat": 40.8014001, + "maxlon": -73.9957778 + }, + "nodes": [ + 103870478, + 5481964626, + 5481964625 + ], + "geometry": [ + { "lat": 40.8014001, "lon": -73.9964268 }, + { "lat": 40.8012667, "lon": -73.9957778 }, + { "lat": 40.8006505, "lon": -73.9959240 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169646, + "bounds": { + "minlat": 40.7384603, + "minlon": -73.9783909, + "maxlat": 40.7388201, + "maxlon": -73.9780548 + }, + "nodes": [ + 5481965067, + 8119542588, + 5481965066, + 10752202751, + 5481965065, + 10752202750, + 10752202752, + 10752202749, + 5481965064, + 10752202748, + 5481965063, + 8119542587, + 5481965062 + ], + "geometry": [ + { "lat": 40.7384603, "lon": -73.9782744 }, + { "lat": 40.7385201, "lon": -73.9782332 }, + { "lat": 40.7385288, "lon": -73.9782270 }, + { "lat": 40.7387691, "lon": -73.9780549 }, + { "lat": 40.7387762, "lon": -73.9780548 }, + { "lat": 40.7387807, "lon": -73.9780595 }, + { "lat": 40.7388174, "lon": -73.9781463 }, + { "lat": 40.7388200, "lon": -73.9781550 }, + { "lat": 40.7388201, "lon": -73.9781626 }, + { "lat": 40.7388164, "lon": -73.9781689 }, + { "lat": 40.7385767, "lon": -73.9783408 }, + { "lat": 40.7385680, "lon": -73.9783470 }, + { "lat": 40.7385091, "lon": -73.9783909 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169718, + "bounds": { + "minlat": 40.7250604, + "minlon": -73.9142936, + "maxlat": 40.7254419, + "maxlon": -73.9142309 + }, + "nodes": [ + 5481965449, + 5481965447 + ], + "geometry": [ + { "lat": 40.7250604, "lon": -73.9142936 }, + { "lat": 40.7254419, "lon": -73.9142309 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169719, + "bounds": { + "minlat": 40.7249293, + "minlon": -73.9141005, + "maxlat": 40.7254253, + "maxlon": -73.9140273 + }, + "nodes": [ + 5481965448, + 5481965454 + ], + "geometry": [ + { "lat": 40.7254253, "lon": -73.9140273 }, + { "lat": 40.7249293, "lon": -73.9141005 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169720, + "bounds": { + "minlat": 40.7249293, + "minlon": -73.9145485, + "maxlat": 40.7254639, + "maxlon": -73.9141005 + }, + "nodes": [ + 5481965451, + 5481965450, + 5481965449, + 5481965454 + ], + "geometry": [ + { "lat": 40.7254639, "lon": -73.9145002 }, + { "lat": 40.7250828, "lon": -73.9145485 }, + { "lat": 40.7250604, "lon": -73.9142936 }, + { "lat": 40.7249293, "lon": -73.9141005 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169721, + "bounds": { + "minlat": 40.7248968, + "minlon": -73.9148154, + "maxlat": 40.7254639, + "maxlon": -73.9136285 + }, + "nodes": [ + 5481965456, + 11406248207, + 5481965455, + 5481965454, + 5481965453, + 5481965452, + 5481965448, + 5481965447, + 5481965451 + ], + "geometry": [ + { "lat": 40.7249452, "lon": -73.9148154 }, + { "lat": 40.7249374, "lon": -73.9147284 }, + { "lat": 40.7248968, "lon": -73.9142762 }, + { "lat": 40.7249293, "lon": -73.9141005 }, + { "lat": 40.7248988, "lon": -73.9136741 }, + { "lat": 40.7253928, "lon": -73.9136285 }, + { "lat": 40.7254253, "lon": -73.9140273 }, + { "lat": 40.7254419, "lon": -73.9142309 }, + { "lat": 40.7254639, "lon": -73.9145002 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570169725, + "bounds": { + "minlat": 40.7290007, + "minlon": -73.9117174, + "maxlat": 40.7293574, + "maxlon": -73.9111635 + }, + "nodes": [ + 5481965994, + 7725287385, + 5481965986 + ], + "geometry": [ + { "lat": 40.7293574, "lon": -73.9117174 }, + { "lat": 40.7292598, "lon": -73.9115659 }, + { "lat": 40.7290007, "lon": -73.9111635 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570169898, + "bounds": { + "minlat": 40.7256844, + "minlon": -73.9119910, + "maxlat": 40.7262765, + "maxlon": -73.9115189 + }, + "nodes": [ + 5481965778, + 13247403950, + 13279136155, + 5481965777 + ], + "geometry": [ + { "lat": 40.7262765, "lon": -73.9115189 }, + { "lat": 40.7262055, "lon": -73.9115297 }, + { "lat": 40.7256844, "lon": -73.9116089 }, + { "lat": 40.7257059, "lon": -73.9119910 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570170324, + "bounds": { + "minlat": 40.7257803, + "minlon": -73.9097165, + "maxlat": 40.7259081, + "maxlon": -73.9092662 + }, + "nodes": [ + 5481966156, + 13247301443, + 5481966155, + 5481966154 + ], + "geometry": [ + { "lat": 40.7257803, "lon": -73.9092662 }, + { "lat": 40.7258519, "lon": -73.9093548 }, + { "lat": 40.7258755, "lon": -73.9093798 }, + { "lat": 40.7259081, "lon": -73.9097165 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170767, + "bounds": { + "minlat": 40.7269966, + "minlon": -73.9073864, + "maxlat": 40.7271133, + "maxlon": -73.9072543 + }, + "nodes": [ + 5481971923, + 11925728883, + 5481971922 + ], + "geometry": [ + { "lat": 40.7271133, "lon": -73.9072543 }, + { "lat": 40.7270693, "lon": -73.9073041 }, + { "lat": 40.7269966, "lon": -73.9073864 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170769, + "bounds": { + "minlat": 40.7267354, + "minlon": -73.9069620, + "maxlat": 40.7268603, + "maxlon": -73.9068334 + }, + "nodes": [ + 5481971926, + 11925728881, + 5481971924 + ], + "geometry": [ + { "lat": 40.7267354, "lon": -73.9069620 }, + { "lat": 40.7268196, "lon": -73.9068753 }, + { "lat": 40.7268603, "lon": -73.9068334 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170872, + "bounds": { + "minlat": 40.7291863, + "minlon": -73.9733326, + "maxlat": 40.7297396, + "maxlon": -73.9729294 + }, + "nodes": [ + 5481972129, + 5481972112 + ], + "geometry": [ + { "lat": 40.7297396, "lon": -73.9729294 }, + { "lat": 40.7291863, "lon": -73.9733326 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570170873, + "bounds": { + "minlat": 40.7296843, + "minlon": -73.9739298, + "maxlat": 40.7299362, + "maxlon": -73.9733244 + }, + "nodes": [ + 5481972114, + 5481972113 + ], + "geometry": [ + { "lat": 40.7299362, "lon": -73.9739298 }, + { "lat": 40.7296843, "lon": -73.9733244 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170874, + "bounds": { + "minlat": 40.7294744, + "minlon": -73.9740787, + "maxlat": 40.7301057, + "maxlon": -73.9734746 + }, + "nodes": [ + 5481972117, + 5481972114, + 5481972116, + 5481972115 + ], + "geometry": [ + { "lat": 40.7301057, "lon": -73.9738064 }, + { "lat": 40.7299362, "lon": -73.9739298 }, + { "lat": 40.7297314, "lon": -73.9740787 }, + { "lat": 40.7294744, "lon": -73.9734746 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170875, + "bounds": { + "minlat": 40.7290175, + "minlon": -73.9729168, + "maxlat": 40.7294281, + "maxlon": -73.9726140 + }, + "nodes": [ + 5481972119, + 5481972118 + ], + "geometry": [ + { "lat": 40.7294281, "lon": -73.9726140 }, + { "lat": 40.7290175, "lon": -73.9729168 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170876, + "bounds": { + "minlat": 40.7289458, + "minlon": -73.9727377, + "maxlat": 40.7292599, + "maxlon": -73.9725121 + }, + "nodes": [ + 5481972121, + 5481972120 + ], + "geometry": [ + { "lat": 40.7292599, "lon": -73.9725121 }, + { "lat": 40.7289458, "lon": -73.9727377 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170877, + "bounds": { + "minlat": 40.7288364, + "minlon": -73.9724445, + "maxlat": 40.7290794, + "maxlon": -73.9723749 + }, + "nodes": [ + 5481972126, + 10708241602, + 5481972124, + 10708241603, + 5481972123, + 5481972122 + ], + "geometry": [ + { "lat": 40.7290794, "lon": -73.9724087 }, + { "lat": 40.7290050, "lon": -73.9723796 }, + { "lat": 40.7289768, "lon": -73.9723749 }, + { "lat": 40.7289531, "lon": -73.9723770 }, + { "lat": 40.7289301, "lon": -73.9723843 }, + { "lat": 40.7288364, "lon": -73.9724445 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170878, + "bounds": { + "minlat": 40.7288760, + "minlon": -73.9729294, + "maxlat": 40.7298295, + "maxlon": -73.9724087 + }, + "nodes": [ + 5481972130, + 5481972129, + 5481972128, + 5481972127, + 5481972119, + 5481972121, + 5481972126, + 5481972131 + ], + "geometry": [ + { "lat": 40.7298295, "lon": -73.9728590 }, + { "lat": 40.7297396, "lon": -73.9729294 }, + { "lat": 40.7296562, "lon": -73.9727873 }, + { "lat": 40.7295900, "lon": -73.9727123 }, + { "lat": 40.7294281, "lon": -73.9726140 }, + { "lat": 40.7292599, "lon": -73.9725121 }, + { "lat": 40.7290794, "lon": -73.9724087 }, + { "lat": 40.7288760, "lon": -73.9725522 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170879, + "bounds": { + "minlat": 40.7284824, + "minlon": -73.9730398, + "maxlat": 40.7289552, + "maxlon": -73.9725522 + }, + "nodes": [ + 5481972134, + 8225532432, + 5481972133, + 5481972132, + 8225532433, + 5481972131 + ], + "geometry": [ + { "lat": 40.7289552, "lon": -73.9727626 }, + { "lat": 40.7288968, "lon": -73.9728043 }, + { "lat": 40.7285671, "lon": -73.9730398 }, + { "lat": 40.7284824, "lon": -73.9728335 }, + { "lat": 40.7288108, "lon": -73.9725988 }, + { "lat": 40.7288760, "lon": -73.9725522 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170906, + "bounds": { + "minlat": 40.7427634, + "minlon": -73.9487086, + "maxlat": 40.7431117, + "maxlon": -73.9464808 + }, + "nodes": [ + 12129022023, + 12129022024, + 6759653054, + 12129021774, + 12129021773, + 12129021772, + 12129021771, + 12129021770, + 12129021769, + 12129021765, + 12129021768, + 12129021767, + 12129021766, + 2472708664, + 5481972176 + ], + "geometry": [ + { "lat": 40.7431117, "lon": -73.9464808 }, + { "lat": 40.7430827, "lon": -73.9465684 }, + { "lat": 40.7430466, "lon": -73.9466844 }, + { "lat": 40.7429285, "lon": -73.9471326 }, + { "lat": 40.7428994, "lon": -73.9472549 }, + { "lat": 40.7428792, "lon": -73.9473513 }, + { "lat": 40.7428602, "lon": -73.9474537 }, + { "lat": 40.7427802, "lon": -73.9479731 }, + { "lat": 40.7427720, "lon": -73.9480261 }, + { "lat": 40.7427659, "lon": -73.9480812 }, + { "lat": 40.7427634, "lon": -73.9481267 }, + { "lat": 40.7427651, "lon": -73.9481642 }, + { "lat": 40.7427703, "lon": -73.9482104 }, + { "lat": 40.7427794, "lon": -73.9482777 }, + { "lat": 40.7428383, "lon": -73.9487086 } + ], + "tags": { + "access": "no", + "highway": "service", + "maxspeed": "5 mph", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570170909, + "bounds": { + "minlat": 40.7450408, + "minlon": -73.9441304, + "maxlat": 40.7453839, + "maxlon": -73.9432629 + }, + "nodes": [ + 5481972186, + 11211159717, + 6332884695, + 6332884694, + 11211159711, + 5481972185 + ], + "geometry": [ + { "lat": 40.7453839, "lon": -73.9432629 }, + { "lat": 40.7453426, "lon": -73.9433667 }, + { "lat": 40.7453336, "lon": -73.9433894 }, + { "lat": 40.7450851, "lon": -73.9440136 }, + { "lat": 40.7450678, "lon": -73.9440593 }, + { "lat": 40.7450408, "lon": -73.9441304 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170917, + "bounds": { + "minlat": 40.7436267, + "minlon": -73.9387393, + "maxlat": 40.7442880, + "maxlon": -73.9386074 + }, + "nodes": [ + 5481972193, + 9293172176, + 9293172177, + 6643399524 + ], + "geometry": [ + { "lat": 40.7436267, "lon": -73.9387393 }, + { "lat": 40.7442460, "lon": -73.9386361 }, + { "lat": 40.7442743, "lon": -73.9386314 }, + { "lat": 40.7442880, "lon": -73.9386074 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170919, + "bounds": { + "minlat": 40.7436947, + "minlon": -73.9392516, + "maxlat": 40.7446315, + "maxlon": -73.9390665 + }, + "nodes": [ + 5481972198, + 5481972197 + ], + "geometry": [ + { "lat": 40.7446315, "lon": -73.9390665 }, + { "lat": 40.7436947, "lon": -73.9392516 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170921, + "bounds": { + "minlat": 40.7428417, + "minlon": -73.9380164, + "maxlat": 40.7430856, + "maxlon": -73.9379749 + }, + "nodes": [ + 5481972201, + 5481972200 + ], + "geometry": [ + { "lat": 40.7430856, "lon": -73.9379749 }, + { "lat": 40.7428417, "lon": -73.9380164 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170924, + "bounds": { + "minlat": 40.7412799, + "minlon": -73.9395815, + "maxlat": 40.7413699, + "maxlon": -73.9387804 + }, + "nodes": [ + 5481972210, + 6721049157, + 10010946686, + 5481972209 + ], + "geometry": [ + { "lat": 40.7413699, "lon": -73.9395815 }, + { "lat": 40.7413246, "lon": -73.9391770 }, + { "lat": 40.7412906, "lon": -73.9388757 }, + { "lat": 40.7412799, "lon": -73.9387804 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170927, + "bounds": { + "minlat": 40.7411184, + "minlon": -73.9419206, + "maxlat": 40.7413167, + "maxlon": -73.9418545 + }, + "nodes": [ + 5481972216, + 8926703302, + 5481972215 + ], + "geometry": [ + { "lat": 40.7413167, "lon": -73.9418545 }, + { "lat": 40.7412024, "lon": -73.9418935 }, + { "lat": 40.7411184, "lon": -73.9419206 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170928, + "bounds": { + "minlat": 40.7412917, + "minlon": -73.9419714, + "maxlat": 40.7413394, + "maxlon": -73.9417259 + }, + "nodes": [ + 5481972218, + 5481972216, + 5481972217 + ], + "geometry": [ + { "lat": 40.7412917, "lon": -73.9417259 }, + { "lat": 40.7413167, "lon": -73.9418545 }, + { "lat": 40.7413394, "lon": -73.9419714 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170929, + "bounds": { + "minlat": 40.7398809, + "minlon": -73.9470002, + "maxlat": 40.7401861, + "maxlon": -73.9468999 + }, + "nodes": [ + 5481972220, + 12887307956, + 5481972219 + ], + "geometry": [ + { "lat": 40.7398809, "lon": -73.9470002 }, + { "lat": 40.7399853, "lon": -73.9469660 }, + { "lat": 40.7401861, "lon": -73.9468999 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570170930, + "bounds": { + "minlat": 40.7391040, + "minlon": -73.9459866, + "maxlat": 40.7396352, + "maxlon": -73.9457384 + }, + "nodes": [ + 5481972424, + 12887307957, + 6879906200, + 5481972423, + 5481972422, + 5481972421 + ], + "geometry": [ + { "lat": 40.7396352, "lon": -73.9457384 }, + { "lat": 40.7395582, "lon": -73.9457676 }, + { "lat": 40.7395116, "lon": -73.9457859 }, + { "lat": 40.7394891, "lon": -73.9457922 }, + { "lat": 40.7394413, "lon": -73.9458740 }, + { "lat": 40.7391040, "lon": -73.9459866 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171398, + "bounds": { + "minlat": 40.7222803, + "minlon": -73.9165571, + "maxlat": 40.7226211, + "maxlon": -73.9154296 + }, + "nodes": [ + 5481972386, + 7712061138, + 5481972385 + ], + "geometry": [ + { "lat": 40.7222803, "lon": -73.9165571 }, + { "lat": 40.7224481, "lon": -73.9160021 }, + { "lat": 40.7226211, "lon": -73.9154296 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171400, + "bounds": { + "minlat": 40.7226063, + "minlon": -73.9160882, + "maxlat": 40.7227838, + "maxlon": -73.9154711 + }, + "nodes": [ + 5481972388, + 5481972387 + ], + "geometry": [ + { "lat": 40.7226063, "lon": -73.9160882 }, + { "lat": 40.7227838, "lon": -73.9154711 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171402, + "bounds": { + "minlat": 40.7227422, + "minlon": -73.9161622, + "maxlat": 40.7229261, + "maxlon": -73.9155503 + }, + "nodes": [ + 5481972390, + 5481972389 + ], + "geometry": [ + { "lat": 40.7227422, "lon": -73.9161622 }, + { "lat": 40.7229261, "lon": -73.9155503 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171403, + "bounds": { + "minlat": 40.7229125, + "minlon": -73.9162549, + "maxlat": 40.7230846, + "maxlon": -73.9156495 + }, + "nodes": [ + 5481972392, + 5481972391 + ], + "geometry": [ + { "lat": 40.7229125, "lon": -73.9162549 }, + { "lat": 40.7230846, "lon": -73.9156495 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171460, + "bounds": { + "minlat": 40.7266636, + "minlon": -73.9745829, + "maxlat": 40.7268309, + "maxlon": -73.9741042 + }, + "nodes": [ + 5481976926, + 5481976925, + 5481976924 + ], + "geometry": [ + { "lat": 40.7266636, "lon": -73.9745829 }, + { "lat": 40.7268309, "lon": -73.9744636 }, + { "lat": 40.7266845, "lon": -73.9741042 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570171461, + "bounds": { + "minlat": 40.7264234, + "minlon": -73.9750235, + "maxlat": 40.7267242, + "maxlon": -73.9742611 + }, + "nodes": [ + 5481976931, + 8309479419, + 5481976930, + 5481976929, + 5481976928, + 5481976926, + 5481976927 + ], + "geometry": [ + { "lat": 40.7264234, "lon": -73.9750235 }, + { "lat": 40.7264849, "lon": -73.9749856 }, + { "lat": 40.7265331, "lon": -73.9749558 }, + { "lat": 40.7265585, "lon": -73.9748526 }, + { "lat": 40.7267242, "lon": -73.9747345 }, + { "lat": 40.7266636, "lon": -73.9745829 }, + { "lat": 40.7265351, "lon": -73.9742611 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570171604, + "bounds": { + "minlat": 40.7200984, + "minlon": -73.9103441, + "maxlat": 40.7203162, + "maxlon": -73.9094734 + }, + "nodes": [ + 5481977549, + 5481977547 + ], + "geometry": [ + { "lat": 40.7203162, "lon": -73.9094734 }, + { "lat": 40.7200984, "lon": -73.9103441 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171605, + "bounds": { + "minlat": 40.7201389, + "minlon": -73.9095059, + "maxlat": 40.7209065, + "maxlon": -73.9094637 + }, + "nodes": [ + 5481977551, + 12889337707, + 5481977549, + 5481977550 + ], + "geometry": [ + { "lat": 40.7201389, "lon": -73.9094637 }, + { "lat": 40.7202392, "lon": -73.9094682 }, + { "lat": 40.7203162, "lon": -73.9094734 }, + { "lat": 40.7209065, "lon": -73.9095059 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171624, + "bounds": { + "minlat": 40.8008551, + "minlon": -73.9448108, + "maxlat": 40.8014808, + "maxlon": -73.9443505 + }, + "nodes": [ + 5481977583, + 10168729746, + 6845711407, + 5481977582, + 10168729744, + 5481977581 + ], + "geometry": [ + { "lat": 40.8008551, "lon": -73.9448108 }, + { "lat": 40.8009140, "lon": -73.9447675 }, + { "lat": 40.8009366, "lon": -73.9447508 }, + { "lat": 40.8014160, "lon": -73.9443974 }, + { "lat": 40.8014267, "lon": -73.9443898 }, + { "lat": 40.8014808, "lon": -73.9443505 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570171627, + "bounds": { + "minlat": 40.8042149, + "minlon": -73.9405256, + "maxlat": 40.8042986, + "maxlon": -73.9403206 + }, + "nodes": [ + 5481977592, + 7471678535 + ], + "geometry": [ + { "lat": 40.8042149, "lon": -73.9403206 }, + { "lat": 40.8042986, "lon": -73.9405256 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171631, + "bounds": { + "minlat": 40.8022610, + "minlon": -73.9403437, + "maxlat": 40.8025205, + "maxlon": -73.9401622 + }, + "nodes": [ + 5481977606, + 10170656817, + 6879348609, + 5481977605 + ], + "geometry": [ + { "lat": 40.8022610, "lon": -73.9403437 }, + { "lat": 40.8023161, "lon": -73.9403035 }, + { "lat": 40.8023319, "lon": -73.9402920 }, + { "lat": 40.8025205, "lon": -73.9401622 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171633, + "bounds": { + "minlat": 40.8039396, + "minlon": -73.9392986, + "maxlat": 40.8042043, + "maxlon": -73.9391058 + }, + "nodes": [ + 5481977611, + 10170656873, + 5481977610 + ], + "geometry": [ + { "lat": 40.8042043, "lon": -73.9391058 }, + { "lat": 40.8041565, "lon": -73.9391406 }, + { "lat": 40.8039396, "lon": -73.9392986 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171638, + "bounds": { + "minlat": 40.8015191, + "minlon": -73.9412324, + "maxlat": 40.8017582, + "maxlon": -73.9410065 + }, + "nodes": [ + 5481978522, + 10170647002, + 7927112108, + 5481978521 + ], + "geometry": [ + { "lat": 40.8017582, "lon": -73.9411244 }, + { "lat": 40.8017106, "lon": -73.9411601 }, + { "lat": 40.8016141, "lon": -73.9412324 }, + { "lat": 40.8015191, "lon": -73.9410065 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171642, + "bounds": { + "minlat": 40.8005683, + "minlon": -73.9417702, + "maxlat": 40.8009474, + "maxlon": -73.9415043 + }, + "nodes": [ + 5481978534, + 5481978532 + ], + "geometry": [ + { "lat": 40.8005683, "lon": -73.9417702 }, + { "lat": 40.8009474, "lon": -73.9415043 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171647, + "bounds": { + "minlat": 40.8008566, + "minlon": -73.9427100, + "maxlat": 40.8009319, + "maxlon": -73.9425313 + }, + "nodes": [ + 5481978543, + 5481978541 + ], + "geometry": [ + { "lat": 40.8008566, "lon": -73.9425313 }, + { "lat": 40.8009319, "lon": -73.9427100 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171649, + "bounds": { + "minlat": 40.7976906, + "minlon": -73.9450084, + "maxlat": 40.7980828, + "maxlon": -73.9447296 + }, + "nodes": [ + 5481978549, + 5481978548 + ], + "geometry": [ + { "lat": 40.7976906, "lon": -73.9450084 }, + { "lat": 40.7980828, "lon": -73.9447296 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171653, + "bounds": { + "minlat": 40.7996542, + "minlon": -73.9462169, + "maxlat": 40.7999415, + "maxlon": -73.9460182 + }, + "nodes": [ + 5481978557, + 8807694437, + 5481978556 + ], + "geometry": [ + { "lat": 40.7996542, "lon": -73.9462169 }, + { "lat": 40.7997319, "lon": -73.9461592 }, + { "lat": 40.7999415, "lon": -73.9460182 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171654, + "bounds": { + "minlat": 40.7993575, + "minlon": -73.9464022, + "maxlat": 40.7994947, + "maxlon": -73.9460766 + }, + "nodes": [ + 5481978559, + 5481978558 + ], + "geometry": [ + { "lat": 40.7993575, "lon": -73.9460766 }, + { "lat": 40.7994947, "lon": -73.9464022 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171656, + "bounds": { + "minlat": 40.7993575, + "minlon": -73.9460766, + "maxlat": 40.7995398, + "maxlon": -73.9459457 + }, + "nodes": [ + 5481978561, + 6223478792, + 5481978559 + ], + "geometry": [ + { "lat": 40.7995398, "lon": -73.9459457 }, + { "lat": 40.7994538, "lon": -73.9460072 }, + { "lat": 40.7993575, "lon": -73.9460766 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570171659, + "bounds": { + "minlat": 40.8000779, + "minlon": -73.9488097, + "maxlat": 40.8005903, + "maxlon": -73.9484295 + }, + "nodes": [ + 5481978580, + 6223478856, + 5481978578 + ], + "geometry": [ + { "lat": 40.8005903, "lon": -73.9484295 }, + { "lat": 40.8004869, "lon": -73.9485054 }, + { "lat": 40.8000779, "lon": -73.9488097 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171660, + "bounds": { + "minlat": 40.7971661, + "minlon": -73.9480496, + "maxlat": 40.7978161, + "maxlon": -73.9475860 + }, + "nodes": [ + 5481978583, + 7803460130, + 6217820607, + 8807677162, + 5481978582 + ], + "geometry": [ + { "lat": 40.7971661, "lon": -73.9480496 }, + { "lat": 40.7972249, "lon": -73.9480078 }, + { "lat": 40.7977201, "lon": -73.9476560 }, + { "lat": 40.7977438, "lon": -73.9476392 }, + { "lat": 40.7978161, "lon": -73.9475860 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171720, + "bounds": { + "minlat": 40.7216026, + "minlon": -73.9768413, + "maxlat": 40.7218039, + "maxlon": -73.9765543 + }, + "nodes": [ + 5481979121, + 5481969220, + 5481969219, + 8386427214, + 8386427215, + 4301308531 + ], + "geometry": [ + { "lat": 40.7216754, "lon": -73.9768413 }, + { "lat": 40.7218039, "lon": -73.9767516 }, + { "lat": 40.7217172, "lon": -73.9765570 }, + { "lat": 40.7216985, "lon": -73.9765543 }, + { "lat": 40.7216766, "lon": -73.9765618 }, + { "lat": 40.7216026, "lon": -73.9766338 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570171855, + "bounds": { + "minlat": 40.7184644, + "minlon": -73.9155905, + "maxlat": 40.7188848, + "maxlon": -73.9154752 + }, + "nodes": [ + 5481979935, + 5481979934, + 5481979933 + ], + "geometry": [ + { "lat": 40.7184644, "lon": -73.9155090 }, + { "lat": 40.7186205, "lon": -73.9155905 }, + { "lat": 40.7188848, "lon": -73.9154752 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570171908, + "bounds": { + "minlat": 40.7162475, + "minlon": -73.9076907, + "maxlat": 40.7162763, + "maxlon": -73.9074386 + }, + "nodes": [ + 42858148, + 9759984270, + 5481979936 + ], + "geometry": [ + { "lat": 40.7162763, "lon": -73.9074386 }, + { "lat": 40.7162677, "lon": -73.9075138 }, + { "lat": 40.7162475, "lon": -73.9076907 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570172030, + "bounds": { + "minlat": 40.7333743, + "minlon": -73.9606039, + "maxlat": 40.7339213, + "maxlon": -73.9605443 + }, + "nodes": [ + 9997952345, + 9997952344, + 5481981173, + 5481981172 + ], + "geometry": [ + { "lat": 40.7339213, "lon": -73.9605738 }, + { "lat": 40.7338499, "lon": -73.9605605 }, + { "lat": 40.7337920, "lon": -73.9606039 }, + { "lat": 40.7333743, "lon": -73.9605443 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570172036, + "bounds": { + "minlat": 40.7334044, + "minlon": -73.9603237, + "maxlat": 40.7339449, + "maxlon": -73.9602000 + }, + "nodes": [ + 5481981180, + 9997952346, + 5481981177, + 5481981179 + ], + "geometry": [ + { "lat": 40.7339449, "lon": -73.9603237 }, + { "lat": 40.7338700, "lon": -73.9603090 }, + { "lat": 40.7337950, "lon": -73.9602722 }, + { "lat": 40.7334044, "lon": -73.9602000 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570172038, + "bounds": { + "minlat": 40.7338982, + "minlon": -73.9608187, + "maxlat": 40.7339449, + "maxlon": -73.9603237 + }, + "nodes": [ + 5481981180, + 9997952345, + 5481981181 + ], + "geometry": [ + { "lat": 40.7339449, "lon": -73.9603237 }, + { "lat": 40.7339213, "lon": -73.9605738 }, + { "lat": 40.7338982, "lon": -73.9608187 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570172566, + "bounds": { + "minlat": 40.7355411, + "minlon": -73.9385379, + "maxlat": 40.7357462, + "maxlon": -73.9384164 + }, + "nodes": [ + 5481983886, + 5481983885 + ], + "geometry": [ + { "lat": 40.7357462, "lon": -73.9385379 }, + { "lat": 40.7355411, "lon": -73.9384164 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570172568, + "bounds": { + "minlat": 40.7355939, + "minlon": -73.9389657, + "maxlat": 40.7358074, + "maxlon": -73.9383658 + }, + "nodes": [ + 5481983891, + 11211159749, + 10991830587, + 6721411010, + 5481983886, + 5481983890 + ], + "geometry": [ + { "lat": 40.7355939, "lon": -73.9389657 }, + { "lat": 40.7356203, "lon": -73.9388962 }, + { "lat": 40.7356333, "lon": -73.9388610 }, + { "lat": 40.7356689, "lon": -73.9387552 }, + { "lat": 40.7357462, "lon": -73.9385379 }, + { "lat": 40.7358074, "lon": -73.9383658 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570172569, + "bounds": { + "minlat": 40.7352122, + "minlon": -73.9380798, + "maxlat": 40.7355016, + "maxlon": -73.9378982 + }, + "nodes": [ + 5481983893, + 11211159746, + 5481983892 + ], + "geometry": [ + { "lat": 40.7352122, "lon": -73.9378982 }, + { "lat": 40.7352615, "lon": -73.9379291 }, + { "lat": 40.7355016, "lon": -73.9380798 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570172571, + "bounds": { + "minlat": 40.7328901, + "minlon": -73.9389327, + "maxlat": 40.7329987, + "maxlon": -73.9386200 + }, + "nodes": [ + 5481983897, + 5481983896 + ], + "geometry": [ + { "lat": 40.7328901, "lon": -73.9389327 }, + { "lat": 40.7329987, "lon": -73.9386200 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570172572, + "bounds": { + "minlat": 40.7330494, + "minlon": -73.9390236, + "maxlat": 40.7331572, + "maxlon": -73.9387178 + }, + "nodes": [ + 5481983900, + 5481983898 + ], + "geometry": [ + { "lat": 40.7330494, "lon": -73.9390236 }, + { "lat": 40.7331572, "lon": -73.9387178 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570172575, + "bounds": { + "minlat": 40.7330242, + "minlon": -73.9395788, + "maxlat": 40.7338099, + "maxlon": -73.9392535 + }, + "nodes": [ + 5890759764, + 5481983904 + ], + "geometry": [ + { "lat": 40.7338099, "lon": -73.9395788 }, + { "lat": 40.7330242, "lon": -73.9392535 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174776, + "bounds": { + "minlat": 40.7892722, + "minlon": -73.9451793, + "maxlat": 40.7899572, + "maxlon": -73.9449686 + }, + "nodes": [ + 5481998021, + 6191027363, + 5481997820, + 5481997819 + ], + "geometry": [ + { "lat": 40.7899572, "lon": -73.9449686 }, + { "lat": 40.7898864, "lon": -73.9450280 }, + { "lat": 40.7898509, "lon": -73.9450572 }, + { "lat": 40.7892722, "lon": -73.9451793 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174777, + "bounds": { + "minlat": 40.7892681, + "minlon": -73.9418788, + "maxlat": 40.7894492, + "maxlon": -73.9417625 + }, + "nodes": [ + 5481998023, + 6216628265, + 5481998022 + ], + "geometry": [ + { "lat": 40.7894492, "lon": -73.9417625 }, + { "lat": 40.7894020, "lon": -73.9417928 }, + { "lat": 40.7892681, "lon": -73.9418788 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570174778, + "bounds": { + "minlat": 40.7893993, + "minlon": -73.9416447, + "maxlat": 40.7896946, + "maxlon": -73.9414282 + }, + "nodes": [ + 5481998025, + 6216628268, + 5481998024 + ], + "geometry": [ + { "lat": 40.7893993, "lon": -73.9416447 }, + { "lat": 40.7894661, "lon": -73.9415957 }, + { "lat": 40.7896946, "lon": -73.9414282 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570174779, + "bounds": { + "minlat": 40.7922857, + "minlon": -73.9432870, + "maxlat": 40.7924419, + "maxlon": -73.9431785 + }, + "nodes": [ + 5481998031, + 5481998030 + ], + "geometry": [ + { "lat": 40.7924419, "lon": -73.9431785 }, + { "lat": 40.7922857, "lon": -73.9432870 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174780, + "bounds": { + "minlat": 40.7917909, + "minlon": -73.9438327, + "maxlat": 40.7927168, + "maxlon": -73.9415880 + }, + "nodes": [ + 5481998037, + 7777321721, + 7779533892, + 5481998036, + 5481998031, + 5481998035, + 5481998034, + 7779440473, + 5481998033, + 5481998032 + ], + "geometry": [ + { "lat": 40.7927168, "lon": -73.9438327 }, + { "lat": 40.7926653, "lon": -73.9437057 }, + { "lat": 40.7926546, "lon": -73.9436798 }, + { "lat": 40.7926208, "lon": -73.9435954 }, + { "lat": 40.7924419, "lon": -73.9431785 }, + { "lat": 40.7923538, "lon": -73.9429732 }, + { "lat": 40.7920411, "lon": -73.9422141 }, + { "lat": 40.7918572, "lon": -73.9417504 }, + { "lat": 40.7918481, "lon": -73.9417273 }, + { "lat": 40.7917909, "lon": -73.9415880 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570174781, + "bounds": { + "minlat": 40.7914329, + "minlon": -73.9414175, + "maxlat": 40.7916400, + "maxlon": -73.9409173 + }, + "nodes": [ + 5481998041, + 5481998038 + ], + "geometry": [ + { "lat": 40.7914329, "lon": -73.9409173 }, + { "lat": 40.7916400, "lon": -73.9414175 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174782, + "bounds": { + "minlat": 40.7912400, + "minlon": -73.9410513, + "maxlat": 40.7916065, + "maxlon": -73.9407903 + }, + "nodes": [ + 5481998039, + 7777426440, + 7779440459, + 5481998041, + 5481998040 + ], + "geometry": [ + { "lat": 40.7916065, "lon": -73.9407903 }, + { "lat": 40.7915277, "lon": -73.9408479 }, + { "lat": 40.7915156, "lon": -73.9408568 }, + { "lat": 40.7914329, "lon": -73.9409173 }, + { "lat": 40.7912400, "lon": -73.9410513 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174784, + "bounds": { + "minlat": 40.7899350, + "minlon": -73.9406314, + "maxlat": 40.7901436, + "maxlon": -73.9401370 + }, + "nodes": [ + 5481998048, + 6135411585 + ], + "geometry": [ + { "lat": 40.7901436, "lon": -73.9406314 }, + { "lat": 40.7899350, "lon": -73.9401370 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174786, + "bounds": { + "minlat": 40.7889097, + "minlon": -73.9388855, + "maxlat": 40.7890856, + "maxlon": -73.9387678 + }, + "nodes": [ + 5481998054, + 6216541793, + 5481998053 + ], + "geometry": [ + { "lat": 40.7890856, "lon": -73.9387678 }, + { "lat": 40.7889901, "lon": -73.9388317 }, + { "lat": 40.7889097, "lon": -73.9388855 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174787, + "bounds": { + "minlat": 40.7889981, + "minlon": -73.9396620, + "maxlat": 40.7893920, + "maxlon": -73.9392731 + }, + "nodes": [ + 5481998057, + 6216541809, + 5481998056, + 5481998055 + ], + "geometry": [ + { "lat": 40.7893920, "lon": -73.9394996 }, + { "lat": 40.7892945, "lon": -73.9395683 }, + { "lat": 40.7891615, "lon": -73.9396620 }, + { "lat": 40.7889981, "lon": -73.9392731 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174789, + "bounds": { + "minlat": 40.7928651, + "minlon": -73.9394516, + "maxlat": 40.7931505, + "maxlon": -73.9387662 + }, + "nodes": [ + 5481998061, + 5481998060 + ], + "geometry": [ + { "lat": 40.7931505, "lon": -73.9394516 }, + { "lat": 40.7928651, "lon": -73.9387662 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174792, + "bounds": { + "minlat": 40.7952790, + "minlon": -73.9455444, + "maxlat": 40.7954924, + "maxlon": -73.9453829 + }, + "nodes": [ + 5481998070, + 7811793768, + 5481998069 + ], + "geometry": [ + { "lat": 40.7952790, "lon": -73.9455444 }, + { "lat": 40.7953460, "lon": -73.9454937 }, + { "lat": 40.7954924, "lon": -73.9453829 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174793, + "bounds": { + "minlat": 40.7937277, + "minlon": -73.9463836, + "maxlat": 40.7941432, + "maxlon": -73.9456158 + }, + "nodes": [ + 5481998074, + 7779608821, + 7779608788, + 5481998073, + 5481998072, + 7779608814, + 5481998071 + ], + "geometry": [ + { "lat": 40.7937277, "lon": -73.9457238 }, + { "lat": 40.7937836, "lon": -73.9456843 }, + { "lat": 40.7937956, "lon": -73.9456757 }, + { "lat": 40.7938804, "lon": -73.9456158 }, + { "lat": 40.7941432, "lon": -73.9462470 }, + { "lat": 40.7940607, "lon": -73.9463426 }, + { "lat": 40.7940067, "lon": -73.9463836 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174794, + "bounds": { + "minlat": 40.7933572, + "minlon": -73.9448689, + "maxlat": 40.7936056, + "maxlon": -73.9446858 + }, + "nodes": [ + 5481998078, + 7779608828, + 5481998076 + ], + "geometry": [ + { "lat": 40.7933572, "lon": -73.9448689 }, + { "lat": 40.7934208, "lon": -73.9448220 }, + { "lat": 40.7936056, "lon": -73.9446858 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174795, + "bounds": { + "minlat": 40.7931427, + "minlon": -73.9443601, + "maxlat": 40.7933487, + "maxlon": -73.9442091 + }, + "nodes": [ + 5481998081, + 7779608842, + 6860897477, + 5481998080 + ], + "geometry": [ + { "lat": 40.7931427, "lon": -73.9443601 }, + { "lat": 40.7932066, "lon": -73.9443133 }, + { "lat": 40.7932202, "lon": -73.9443033 }, + { "lat": 40.7933487, "lon": -73.9442091 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174796, + "bounds": { + "minlat": 40.7925367, + "minlon": -73.9448762, + "maxlat": 40.7927863, + "maxlon": -73.9446979 + }, + "nodes": [ + 5481998083, + 7779608813, + 5481998082 + ], + "geometry": [ + { "lat": 40.7925367, "lon": -73.9448762 }, + { "lat": 40.7925991, "lon": -73.9448316 }, + { "lat": 40.7927863, "lon": -73.9446979 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174797, + "bounds": { + "minlat": 40.7931335, + "minlon": -73.9449057, + "maxlat": 40.7933178, + "maxlon": -73.9447752 + }, + "nodes": [ + 5481998085, + 7779608819, + 5481998084 + ], + "geometry": [ + { "lat": 40.7933178, "lon": -73.9447752 }, + { "lat": 40.7932652, "lon": -73.9448124 }, + { "lat": 40.7931335, "lon": -73.9449057 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570174988, + "bounds": { + "minlat": 40.7893368, + "minlon": -73.9481530, + "maxlat": 40.7896074, + "maxlon": -73.9479628 + }, + "nodes": [ + 5481999822, + 7779545026, + 8732555125, + 5481999821 + ], + "geometry": [ + { "lat": 40.7896074, "lon": -73.9479628 }, + { "lat": 40.7895562, "lon": -73.9479963 }, + { "lat": 40.7894918, "lon": -73.9480440 }, + { "lat": 40.7893368, "lon": -73.9481530 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570175546, + "bounds": { + "minlat": 40.7220103, + "minlon": -73.9407148, + "maxlat": 40.7222619, + "maxlon": -73.9403679 + }, + "nodes": [ + 5481999997, + 5481999996 + ], + "geometry": [ + { "lat": 40.7222619, "lon": -73.9403679 }, + { "lat": 40.7220103, "lon": -73.9407148 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570175549, + "bounds": { + "minlat": 40.7218568, + "minlon": -73.9405458, + "maxlat": 40.7223332, + "maxlon": -73.9402373 + }, + "nodes": [ + 5482000002, + 5482000000, + 5481999999, + 5481999997, + 9937278966, + 5481999998 + ], + "geometry": [ + { "lat": 40.7218568, "lon": -73.9405458 }, + { "lat": 40.7219900, "lon": -73.9402373 }, + { "lat": 40.7221983, "lon": -73.9402856 }, + { "lat": 40.7222619, "lon": -73.9403679 }, + { "lat": 40.7222925, "lon": -73.9404067 }, + { "lat": 40.7223332, "lon": -73.9404644 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570175551, + "bounds": { + "minlat": 40.7217285, + "minlon": -73.9408133, + "maxlat": 40.7220879, + "maxlon": -73.9405014 + }, + "nodes": [ + 5482000004, + 9937278965, + 5481999996, + 5482000003, + 5482000002, + 9937278962, + 5482000001 + ], + "geometry": [ + { "lat": 40.7220879, "lon": -73.9408133 }, + { "lat": 40.7220407, "lon": -73.9407525 }, + { "lat": 40.7220103, "lon": -73.9407148 }, + { "lat": 40.7219920, "lon": -73.9406919 }, + { "lat": 40.7218568, "lon": -73.9405458 }, + { "lat": 40.7217966, "lon": -73.9405250 }, + { "lat": 40.7217285, "lon": -73.9405014 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570175553, + "bounds": { + "minlat": 40.7220533, + "minlon": -73.9399537, + "maxlat": 40.7224532, + "maxlon": -73.9397714 + }, + "nodes": [ + 5482000006, + 5482000005 + ], + "geometry": [ + { "lat": 40.7224532, "lon": -73.9399537 }, + { "lat": 40.7220533, "lon": -73.9397714 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570175555, + "bounds": { + "minlat": 40.7219945, + "minlon": -73.9401287, + "maxlat": 40.7225541, + "maxlon": -73.9395963 + }, + "nodes": [ + 5482000010, + 5482000005, + 5482000009, + 5482000008, + 5482000007, + 5482000006, + 5482000012 + ], + "geometry": [ + { "lat": 40.7219945, "lon": -73.9399752 }, + { "lat": 40.7220533, "lon": -73.9397714 }, + { "lat": 40.7220946, "lon": -73.9396285 }, + { "lat": 40.7221932, "lon": -73.9395963 }, + { "lat": 40.7225541, "lon": -73.9397626 }, + { "lat": 40.7224532, "lon": -73.9399537 }, + { "lat": 40.7223609, "lon": -73.9401287 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570175557, + "bounds": { + "minlat": 40.7218755, + "minlon": -73.9402743, + "maxlat": 40.7224649, + "maxlon": -73.9399277 + }, + "nodes": [ + 5482000013, + 9937278967, + 5482000012, + 5482000010, + 9937278961, + 5482000011 + ], + "geometry": [ + { "lat": 40.7224649, "lon": -73.9402743 }, + { "lat": 40.7224219, "lon": -73.9402187 }, + { "lat": 40.7223609, "lon": -73.9401287 }, + { "lat": 40.7219945, "lon": -73.9399752 }, + { "lat": 40.7219443, "lon": -73.9399552 }, + { "lat": 40.7218755, "lon": -73.9399277 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570175559, + "bounds": { + "minlat": 40.7225917, + "minlon": -73.9459900, + "maxlat": 40.7229048, + "maxlon": -73.9459444 + }, + "nodes": [ + 5482000017, + 9765870840, + 5482000016, + 5482000015, + 5482000014 + ], + "geometry": [ + { "lat": 40.7229048, "lon": -73.9459672 }, + { "lat": 40.7228431, "lon": -73.9459522 }, + { "lat": 40.7228107, "lon": -73.9459444 }, + { "lat": 40.7227665, "lon": -73.9459900 }, + { "lat": 40.7225917, "lon": -73.9459645 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570175561, + "bounds": { + "minlat": 40.7289050, + "minlon": -73.9474002, + "maxlat": 40.7295658, + "maxlon": -73.9471011 + }, + "nodes": [ + 5482002822, + 13773146937, + 5482002821, + 5482000020, + 5482000019 + ], + "geometry": [ + { "lat": 40.7289050, "lon": -73.9472211 }, + { "lat": 40.7289668, "lon": -73.9472530 }, + { "lat": 40.7290312, "lon": -73.9472862 }, + { "lat": 40.7291074, "lon": -73.9471011 }, + { "lat": 40.7295658, "lon": -73.9474002 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177588, + "bounds": { + "minlat": 40.7894596, + "minlon": -74.0011074, + "maxlat": 40.7896276, + "maxlon": -74.0007683 + }, + "nodes": [ + 5482013239, + 5482013238 + ], + "geometry": [ + { "lat": 40.7894596, "lon": -74.0007683 }, + { "lat": 40.7896276, "lon": -74.0011074 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177589, + "bounds": { + "minlat": 40.7924860, + "minlon": -73.9983352, + "maxlat": 40.7925857, + "maxlon": -73.9980977 + }, + "nodes": [ + 5482013247, + 5482013246 + ], + "geometry": [ + { "lat": 40.7925857, "lon": -73.9983352 }, + { "lat": 40.7924860, "lon": -73.9980977 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177591, + "bounds": { + "minlat": 40.7932792, + "minlon": -73.9982313, + "maxlat": 40.7935823, + "maxlon": -73.9981100 + }, + "nodes": [ + 5482013254, + 5482013253, + 5482013240, + 5482013241 + ], + "geometry": [ + { "lat": 40.7935823, "lon": -73.9981127 }, + { "lat": 40.7934798, "lon": -73.9981100 }, + { "lat": 40.7934300, "lon": -73.9981401 }, + { "lat": 40.7932792, "lon": -73.9982313 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177594, + "bounds": { + "minlat": 40.7925857, + "minlon": -73.9983352, + "maxlat": 40.7927714, + "maxlon": -73.9982209 + }, + "nodes": [ + 5482013247, + 5482013245 + ], + "geometry": [ + { "lat": 40.7925857, "lon": -73.9983352 }, + { "lat": 40.7927714, "lon": -73.9982209 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177596, + "bounds": { + "minlat": 40.7933134, + "minlon": -73.9981401, + "maxlat": 40.7934300, + "maxlon": -73.9978599 + }, + "nodes": [ + 5482013240, + 7662750147, + 5482013242 + ], + "geometry": [ + { "lat": 40.7934300, "lon": -73.9981401 }, + { "lat": 40.7933251, "lon": -73.9978697 }, + { "lat": 40.7933134, "lon": -73.9978599 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570177598, + "bounds": { + "minlat": 40.7931721, + "minlon": -73.9982313, + "maxlat": 40.7932792, + "maxlon": -73.9979075 + }, + "nodes": [ + 5482013243, + 5482013241 + ], + "geometry": [ + { "lat": 40.7931721, "lon": -73.9979075 }, + { "lat": 40.7932792, "lon": -73.9982313 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570177601, + "bounds": { + "minlat": 40.7931721, + "minlon": -73.9979075, + "maxlat": 40.7933134, + "maxlon": -73.9978566 + }, + "nodes": [ + 5482013243, + 7662750148, + 5482013242 + ], + "geometry": [ + { "lat": 40.7931721, "lon": -73.9979075 }, + { "lat": 40.7932937, "lon": -73.9978566 }, + { "lat": 40.7933134, "lon": -73.9978599 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 570177603, + "bounds": { + "minlat": 40.7927714, + "minlon": -73.9984748, + "maxlat": 40.7928828, + "maxlon": -73.9982209 + }, + "nodes": [ + 5482013251, + 5482013245 + ], + "geometry": [ + { "lat": 40.7928828, "lon": -73.9984748 }, + { "lat": 40.7927714, "lon": -73.9982209 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177604, + "bounds": { + "minlat": 40.7925650, + "minlon": -73.9985952, + "maxlat": 40.7932792, + "maxlon": -73.9982313 + }, + "nodes": [ + 5482013241, + 5482013252, + 5482013251, + 7662750146, + 5482013250, + 7662750145, + 5482013249, + 7662750144, + 5482013248, + 7662750143, + 5482013247 + ], + "geometry": [ + { "lat": 40.7932792, "lon": -73.9982313 }, + { "lat": 40.7929609, "lon": -73.9984238 }, + { "lat": 40.7928828, "lon": -73.9984748 }, + { "lat": 40.7926798, "lon": -73.9985915 }, + { "lat": 40.7926499, "lon": -73.9985952 }, + { "lat": 40.7926331, "lon": -73.9985888 }, + { "lat": 40.7925995, "lon": -73.9985378 }, + { "lat": 40.7925727, "lon": -73.9984378 }, + { "lat": 40.7925650, "lon": -73.9983836 }, + { "lat": 40.7925720, "lon": -73.9983585 }, + { "lat": 40.7925857, "lon": -73.9983352 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177605, + "bounds": { + "minlat": 40.7934047, + "minlon": -73.9981596, + "maxlat": 40.7937031, + "maxlon": -73.9975551 + }, + "nodes": [ + 5482013558, + 7662750151, + 5482013254, + 103861701 + ], + "geometry": [ + { "lat": 40.7937031, "lon": -73.9981596 }, + { "lat": 40.7936360, "lon": -73.9981420 }, + { "lat": 40.7935823, "lon": -73.9981127 }, + { "lat": 40.7934047, "lon": -73.9975551 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177606, + "bounds": { + "minlat": 40.7937661, + "minlon": -74.0003791, + "maxlat": 40.7938734, + "maxlon": -73.9999878 + }, + "nodes": [ + 5482013258, + 5482013255, + 5482013264 + ], + "geometry": [ + { "lat": 40.7938734, "lon": -73.9999878 }, + { "lat": 40.7938250, "lon": -74.0000318 }, + { "lat": 40.7937661, "lon": -74.0003791 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177607, + "bounds": { + "minlat": 40.7936097, + "minlon": -73.9995447, + "maxlat": 40.7938271, + "maxlon": -73.9992513 + }, + "nodes": [ + 5482013279, + 5482013256, + 5482013257, + 5482013260 + ], + "geometry": [ + { "lat": 40.7936849, "lon": -73.9995447 }, + { "lat": 40.7936097, "lon": -73.9993517 }, + { "lat": 40.7937572, "lon": -73.9992513 }, + { "lat": 40.7938271, "lon": -73.9994305 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570177608, + "bounds": { + "minlat": 40.7936849, + "minlon": -73.9999878, + "maxlat": 40.7940256, + "maxlon": -73.9994305 + }, + "nodes": [ + 5482013260, + 5482013259, + 5482013258, + 5482013279 + ], + "geometry": [ + { "lat": 40.7938271, "lon": -73.9994305 }, + { "lat": 40.7940256, "lon": -73.9998708 }, + { "lat": 40.7938734, "lon": -73.9999878 }, + { "lat": 40.7936849, "lon": -73.9995447 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570177609, + "bounds": { + "minlat": 40.7929152, + "minlon": -74.0008110, + "maxlat": 40.7932503, + "maxlon": -74.0007694 + }, + "nodes": [ + 5482013269, + 5482013263, + 5482013262, + 5482013261, + 5482013274 + ], + "geometry": [ + { "lat": 40.7932503, "lon": -74.0008110 }, + { "lat": 40.7931031, "lon": -74.0008043 }, + { "lat": 40.7929975, "lon": -74.0007788 }, + { "lat": 40.7929538, "lon": -74.0007694 }, + { "lat": 40.7929152, "lon": -74.0007935 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177610, + "bounds": { + "minlat": 40.7932503, + "minlon": -74.0008110, + "maxlat": 40.7939905, + "maxlon": -74.0003443 + }, + "nodes": [ + 5482013269, + 5482013268, + 5482013267, + 5482013266, + 5482013265, + 5482013264, + 9832937076, + 7468539774, + 2814557128 + ], + "geometry": [ + { "lat": 40.7932503, "lon": -74.0008110 }, + { "lat": 40.7932818, "lon": -74.0005951 }, + { "lat": 40.7933569, "lon": -74.0004610 }, + { "lat": 40.7935346, "lon": -74.0003443 }, + { "lat": 40.7936717, "lon": -74.0003550 }, + { "lat": 40.7937661, "lon": -74.0003791 }, + { "lat": 40.7938515, "lon": -74.0004980 }, + { "lat": 40.7939602, "lon": -74.0006494 }, + { "lat": 40.7939905, "lon": -74.0006916 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177611, + "bounds": { + "minlat": 40.7926302, + "minlon": -74.0007935, + "maxlat": 40.7929152, + "maxlon": -74.0005012 + }, + "nodes": [ + 5482013274, + 5482013273, + 5482013272 + ], + "geometry": [ + { "lat": 40.7929152, "lon": -74.0007935 }, + { "lat": 40.7927731, "lon": -74.0005012 }, + { "lat": 40.7926302, "lon": -74.0006172 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570177612, + "bounds": { + "minlat": 40.7925670, + "minlon": -74.0009022, + "maxlat": 40.7939627, + "maxlon": -73.9993229 + }, + "nodes": [ + 5482013275, + 5482013272, + 5482013276, + 5482013277, + 5482013278, + 5482013279, + 5482013260, + 7468539773, + 2814557124 + ], + "geometry": [ + { "lat": 40.7927599, "lon": -74.0009022 }, + { "lat": 40.7926302, "lon": -74.0006172 }, + { "lat": 40.7925670, "lon": -74.0004784 }, + { "lat": 40.7932229, "lon": -73.9999554 }, + { "lat": 40.7933528, "lon": -73.9998293 }, + { "lat": 40.7936849, "lon": -73.9995447 }, + { "lat": 40.7938271, "lon": -73.9994305 }, + { "lat": 40.7939307, "lon": -73.9993483 }, + { "lat": 40.7939627, "lon": -73.9993229 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177613, + "bounds": { + "minlat": 40.7904034, + "minlon": -73.9991539, + "maxlat": 40.7907315, + "maxlon": -73.9988956 + }, + "nodes": [ + 103861696, + 5482013284, + 5482013283, + 103883221 + ], + "geometry": [ + { "lat": 40.7907315, "lon": -73.9991539 }, + { "lat": 40.7906043, "lon": -73.9990380 }, + { "lat": 40.7904683, "lon": -73.9989777 }, + { "lat": 40.7904034, "lon": -73.9988956 } + ], + "tags": { + "highway": "residential", + "name": "Lydia Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Lydia", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_left_1": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 570177614, + "bounds": { + "minlat": 40.7904034, + "minlon": -73.9991539, + "maxlat": 40.7907315, + "maxlon": -73.9988825 + }, + "nodes": [ + 103883221, + 5482013282, + 5482013281, + 5482013280, + 103861696 + ], + "geometry": [ + { "lat": 40.7904034, "lon": -73.9988956 }, + { "lat": 40.7904896, "lon": -73.9988825 }, + { "lat": 40.7906409, "lon": -73.9989281 }, + { "lat": 40.7906988, "lon": -73.9990005 }, + { "lat": 40.7907315, "lon": -73.9991539 } + ], + "tags": { + "highway": "residential", + "name": "Lydia Drive", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Lydia", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_left_1": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 570177615, + "bounds": { + "minlat": 40.7908277, + "minlon": -73.9988329, + "maxlat": 40.7914820, + "maxlon": -73.9985204 + }, + "nodes": [ + 5482013287, + 5522995994, + 5482013286, + 5553654985, + 5482013285 + ], + "geometry": [ + { "lat": 40.7914820, "lon": -73.9986921 }, + { "lat": 40.7914109, "lon": -73.9986007 }, + { "lat": 40.7913506, "lon": -73.9985204 }, + { "lat": 40.7911173, "lon": -73.9986598 }, + { "lat": 40.7908277, "lon": -73.9988329 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177616, + "bounds": { + "minlat": 40.7919730, + "minlon": -73.9980698, + "maxlat": 40.7923974, + "maxlon": -73.9978150 + }, + "nodes": [ + 5482013296, + 5482013288 + ], + "geometry": [ + { "lat": 40.7923974, "lon": -73.9978150 }, + { "lat": 40.7919730, "lon": -73.9980698 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177617, + "bounds": { + "minlat": 40.7923477, + "minlon": -73.9980673, + "maxlat": 40.7925375, + "maxlon": -73.9975588 + }, + "nodes": [ + 5482013293, + 5482013292, + 5482013291, + 5482013290, + 5482013289, + 5482013298 + ], + "geometry": [ + { "lat": 40.7923477, "lon": -73.9975588 }, + { "lat": 40.7924076, "lon": -73.9975642 }, + { "lat": 40.7924594, "lon": -73.9976420 }, + { "lat": 40.7924533, "lon": -73.9977103 }, + { "lat": 40.7925112, "lon": -73.9978713 }, + { "lat": 40.7925375, "lon": -73.9980673 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177618, + "bounds": { + "minlat": 40.7923974, + "minlon": -73.9980673, + "maxlat": 40.7925375, + "maxlon": -73.9978150 + }, + "nodes": [ + 5482013298, + 5482013297, + 5482013296 + ], + "geometry": [ + { "lat": 40.7925375, "lon": -73.9980673 }, + { "lat": 40.7924350, "lon": -73.9979102 }, + { "lat": 40.7923974, "lon": -73.9978150 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177619, + "bounds": { + "minlat": 40.7948702, + "minlon": -73.9944517, + "maxlat": 40.7951575, + "maxlon": -73.9940096 + }, + "nodes": [ + 3642794665, + 5482013300, + 5482013299, + 5482013301 + ], + "geometry": [ + { "lat": 40.7949832, "lon": -73.9944517 }, + { "lat": 40.7948702, "lon": -73.9941222 }, + { "lat": 40.7950261, "lon": -73.9940096 }, + { "lat": 40.7951575, "lon": -73.9943455 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177620, + "bounds": { + "minlat": 40.7951575, + "minlon": -73.9943455, + "maxlat": 40.7952746, + "maxlon": -73.9942806 + }, + "nodes": [ + 2308993291, + 5482013301 + ], + "geometry": [ + { "lat": 40.7952746, "lon": -73.9942806 }, + { "lat": 40.7951575, "lon": -73.9943455 } + ], + "tags": { + "highway": "residential", + "name": "Marine Road" + } +}, +{ + "type": "way", + "id": 570177621, + "bounds": { + "minlat": 40.7952746, + "minlon": -73.9952060, + "maxlat": 40.7956498, + "maxlon": -73.9942806 + }, + "nodes": [ + 3642794667, + 2308993291 + ], + "geometry": [ + { "lat": 40.7956498, "lon": -73.9952060 }, + { "lat": 40.7952746, "lon": -73.9942806 } + ], + "tags": { + "highway": "residential", + "name": "Marine Road" + } +}, +{ + "type": "way", + "id": 570177622, + "bounds": { + "minlat": 40.7949832, + "minlon": -73.9954179, + "maxlat": 40.7953609, + "maxlon": -73.9943455 + }, + "nodes": [ + 3642794666, + 3642794665, + 5482013301 + ], + "geometry": [ + { "lat": 40.7953609, "lon": -73.9954179 }, + { "lat": 40.7949832, "lon": -73.9944517 }, + { "lat": 40.7951575, "lon": -73.9943455 } + ], + "tags": { + "highway": "residential", + "name": "Marine Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177623, + "bounds": { + "minlat": 40.7953609, + "minlon": -73.9954179, + "maxlat": 40.7956498, + "maxlon": -73.9952060 + }, + "nodes": [ + 3642794666, + 3642794667 + ], + "geometry": [ + { "lat": 40.7953609, "lon": -73.9954179 }, + { "lat": 40.7956498, "lon": -73.9952060 } + ], + "tags": { + "highway": "residential", + "name": "Marine Road" + } +}, +{ + "type": "way", + "id": 570177624, + "bounds": { + "minlat": 40.7928939, + "minlon": -73.9955807, + "maxlat": 40.7936241, + "maxlon": -73.9953812 + }, + "nodes": [ + 5482013302, + 5964462860, + 5482013307 + ], + "geometry": [ + { "lat": 40.7936241, "lon": -73.9953812 }, + { "lat": 40.7933298, "lon": -73.9954616 }, + { "lat": 40.7928939, "lon": -73.9955807 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570177625, + "bounds": { + "minlat": 40.7935890, + "minlon": -73.9955512, + "maxlat": 40.7936534, + "maxlon": -73.9951767 + }, + "nodes": [ + 5482013311, + 5482013302, + 5482013303 + ], + "geometry": [ + { "lat": 40.7936534, "lon": -73.9955512 }, + { "lat": 40.7936241, "lon": -73.9953812 }, + { "lat": 40.7935890, "lon": -73.9951767 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570177626, + "bounds": { + "minlat": 40.7934859, + "minlon": -73.9951963, + "maxlat": 40.7935140, + "maxlon": -73.9949772 + }, + "nodes": [ + 5482013305, + 5482013304 + ], + "geometry": [ + { "lat": 40.7934859, "lon": -73.9949772 }, + { "lat": 40.7935140, "lon": -73.9951963 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177627, + "bounds": { + "minlat": 40.7928939, + "minlon": -73.9960822, + "maxlat": 40.7934859, + "maxlon": -73.9949772 + }, + "nodes": [ + 5482013308, + 5482013309, + 5482013307, + 5482013531, + 5482013306, + 5964462862, + 5482013305 + ], + "geometry": [ + { "lat": 40.7929711, "lon": -73.9960822 }, + { "lat": 40.7929284, "lon": -73.9958194 }, + { "lat": 40.7928939, "lon": -73.9955807 }, + { "lat": 40.7930747, "lon": -73.9953111 }, + { "lat": 40.7932652, "lon": -73.9950567 }, + { "lat": 40.7932776, "lon": -73.9950414 }, + { "lat": 40.7934859, "lon": -73.9949772 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177628, + "bounds": { + "minlat": 40.7929284, + "minlon": -73.9958194, + "maxlat": 40.7939633, + "maxlon": -73.9954438 + }, + "nodes": [ + 5482013312, + 5482013313, + 5482013311, + 5482013310, + 5964462859, + 5482013309 + ], + "geometry": [ + { "lat": 40.7939633, "lon": -73.9954438 }, + { "lat": 40.7938097, "lon": -73.9954948 }, + { "lat": 40.7936534, "lon": -73.9955512 }, + { "lat": 40.7936270, "lon": -73.9956155 }, + { "lat": 40.7933664, "lon": -73.9956916 }, + { "lat": 40.7929284, "lon": -73.9958194 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177629, + "bounds": { + "minlat": 40.7937501, + "minlon": -73.9954948, + "maxlat": 40.7938097, + "maxlon": -73.9951346 + }, + "nodes": [ + 5482013314, + 5482013313 + ], + "geometry": [ + { "lat": 40.7937501, "lon": -73.9951346 }, + { "lat": 40.7938097, "lon": -73.9954948 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570177630, + "bounds": { + "minlat": 40.7942402, + "minlon": -73.9969915, + "maxlat": 40.7945734, + "maxlon": -73.9968871 + }, + "nodes": [ + 5482013316, + 5482013315 + ], + "geometry": [ + { "lat": 40.7945734, "lon": -73.9968871 }, + { "lat": 40.7942402, "lon": -73.9969915 } + ], + "tags": { + "access": "no", + "emergency": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177631, + "bounds": { + "minlat": 40.7944474, + "minlon": -73.9957005, + "maxlat": 40.7952240, + "maxlon": -73.9955002 + }, + "nodes": [ + 5482013525, + 3633386744 + ], + "geometry": [ + { "lat": 40.7952240, "lon": -73.9955002 }, + { "lat": 40.7944474, "lon": -73.9957005 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177632, + "bounds": { + "minlat": 40.7938871, + "minlon": -73.9949534, + "maxlat": 40.7949045, + "maxlon": -73.9946698 + }, + "nodes": [ + 5482013319, + 5950210788, + 5482013318 + ], + "geometry": [ + { "lat": 40.7949045, "lon": -73.9946698 }, + { "lat": 40.7939249, "lon": -73.9949429 }, + { "lat": 40.7938871, "lon": -73.9949534 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "private", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570177633, + "bounds": { + "minlat": 40.7952240, + "minlon": -73.9955002, + "maxlat": 40.7953609, + "maxlon": -73.9954179 + }, + "nodes": [ + 5482013525, + 3642794666 + ], + "geometry": [ + { "lat": 40.7952240, "lon": -73.9955002 }, + { "lat": 40.7953609, "lon": -73.9954179 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177634, + "bounds": { + "minlat": 40.7945372, + "minlon": -73.9954875, + "maxlat": 40.7951570, + "maxlon": -73.9953057 + }, + "nodes": [ + 5482013526, + 5482013320 + ], + "geometry": [ + { "lat": 40.7951570, "lon": -73.9953057 }, + { "lat": 40.7945372, "lon": -73.9954875 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "private" + } +}, +{ + "type": "way", + "id": 570177635, + "bounds": { + "minlat": 40.7951570, + "minlon": -73.9955002, + "maxlat": 40.7952240, + "maxlon": -73.9953057 + }, + "nodes": [ + 5482013525, + 5482013521, + 10304090090, + 5482013522, + 5482013526 + ], + "geometry": [ + { "lat": 40.7952240, "lon": -73.9955002 }, + { "lat": 40.7951865, "lon": -73.9954412 }, + { "lat": 40.7951736, "lon": -73.9953955 }, + { "lat": 40.7951702, "lon": -73.9953835 }, + { "lat": 40.7951570, "lon": -73.9953057 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "private", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177636, + "bounds": { + "minlat": 40.7951570, + "minlon": -73.9955002, + "maxlat": 40.7952240, + "maxlon": -73.9953057 + }, + "nodes": [ + 5482013526, + 5482013523, + 5482013524, + 5482013525 + ], + "geometry": [ + { "lat": 40.7951570, "lon": -73.9953057 }, + { "lat": 40.7951956, "lon": -73.9953540 }, + { "lat": 40.7952220, "lon": -73.9954036 }, + { "lat": 40.7952240, "lon": -73.9955002 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "private", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177637, + "bounds": { + "minlat": 40.7945489, + "minlon": -73.9953057, + "maxlat": 40.7951570, + "maxlon": -73.9942516 + }, + "nodes": [ + 5482013528, + 5482013527, + 5482013529, + 5482013319, + 5482013526 + ], + "geometry": [ + { "lat": 40.7945489, "lon": -73.9943133 }, + { "lat": 40.7947499, "lon": -73.9942516 }, + { "lat": 40.7948200, "lon": -73.9944568 }, + { "lat": 40.7949045, "lon": -73.9946698 }, + { "lat": 40.7951570, "lon": -73.9953057 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "private" + } +}, +{ + "type": "way", + "id": 570177638, + "bounds": { + "minlat": 40.7938575, + "minlon": -73.9950939, + "maxlat": 40.7948200, + "maxlon": -73.9944568 + }, + "nodes": [ + 5482013532, + 5950210789, + 5482013318, + 5482013530, + 5950210786, + 5482013529 + ], + "geometry": [ + { "lat": 40.7939062, "lon": -73.9950939 }, + { "lat": 40.7938967, "lon": -73.9950237 }, + { "lat": 40.7938871, "lon": -73.9949534 }, + { "lat": 40.7938575, "lon": -73.9947358 }, + { "lat": 40.7938930, "lon": -73.9947255 }, + { "lat": 40.7948200, "lon": -73.9944568 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "private" + } +}, +{ + "type": "way", + "id": 570177639, + "bounds": { + "minlat": 40.7930747, + "minlon": -73.9956434, + "maxlat": 40.7939958, + "maxlon": -73.9950939 + }, + "nodes": [ + 5482013533, + 5950210790, + 5482013312, + 5482013532, + 5482013314, + 5482013303, + 5482013304, + 5964462861, + 5482013531 + ], + "geometry": [ + { "lat": 40.7939958, "lon": -73.9956434 }, + { "lat": 40.7939796, "lon": -73.9955436 }, + { "lat": 40.7939633, "lon": -73.9954438 }, + { "lat": 40.7939062, "lon": -73.9950939 }, + { "lat": 40.7937501, "lon": -73.9951346 }, + { "lat": 40.7935890, "lon": -73.9951767 }, + { "lat": 40.7935140, "lon": -73.9951963 }, + { "lat": 40.7932965, "lon": -73.9952531 }, + { "lat": 40.7930747, "lon": -73.9953111 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177640, + "bounds": { + "minlat": 40.7939539, + "minlon": -73.9956558, + "maxlat": 40.7942456, + "maxlon": -73.9955660 + }, + "nodes": [ + 5482013537, + 5482013533, + 5482013534 + ], + "geometry": [ + { "lat": 40.7939539, "lon": -73.9956558 }, + { "lat": 40.7939958, "lon": -73.9956434 }, + { "lat": 40.7942456, "lon": -73.9955660 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177641, + "bounds": { + "minlat": 40.7936640, + "minlon": -73.9958066, + "maxlat": 40.7939539, + "maxlon": -73.9956558 + }, + "nodes": [ + 5482013537, + 5482013536, + 10304090092, + 5482013535, + 3633386741 + ], + "geometry": [ + { "lat": 40.7939539, "lon": -73.9956558 }, + { "lat": 40.7939031, "lon": -73.9957041 }, + { "lat": 40.7938702, "lon": -73.9957134 }, + { "lat": 40.7937559, "lon": -73.9957456 }, + { "lat": 40.7936640, "lon": -73.9958066 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177642, + "bounds": { + "minlat": 40.7936640, + "minlon": -73.9958066, + "maxlat": 40.7939539, + "maxlon": -73.9956222 + }, + "nodes": [ + 3633386741, + 5482013540, + 5482013539, + 10304090091, + 5482013538, + 5482013537 + ], + "geometry": [ + { "lat": 40.7936640, "lon": -73.9958066 }, + { "lat": 40.7937214, "lon": -73.9957215 }, + { "lat": 40.7938006, "lon": -73.9956611 }, + { "lat": 40.7938589, "lon": -73.9956398 }, + { "lat": 40.7939072, "lon": -73.9956222 }, + { "lat": 40.7939539, "lon": -73.9956558 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177644, + "bounds": { + "minlat": 40.7945734, + "minlon": -73.9971493, + "maxlat": 40.7946124, + "maxlon": -73.9968871 + }, + "nodes": [ + 3633386746, + 5482013316 + ], + "geometry": [ + { "lat": 40.7946124, "lon": -73.9971493 }, + { "lat": 40.7945734, "lon": -73.9968871 } + ], + "tags": { + "access": "no", + "emergency": "designated", + "highway": "residential", + "name": "River Road" + } +}, +{ + "type": "way", + "id": 570177645, + "bounds": { + "minlat": 40.7930524, + "minlon": -73.9963248, + "maxlat": 40.7936640, + "maxlon": -73.9958066 + }, + "nodes": [ + 3633386741, + 10248850409, + 5964462857, + 4455963592, + 4455963595, + 3633386740, + 3633386738, + 4455963596 + ], + "geometry": [ + { "lat": 40.7936640, "lon": -73.9958066 }, + { "lat": 40.7935048, "lon": -73.9958527 }, + { "lat": 40.7933970, "lon": -73.9958839 }, + { "lat": 40.7933052, "lon": -73.9959105 }, + { "lat": 40.7931942, "lon": -73.9959738 }, + { "lat": 40.7931223, "lon": -73.9960502 }, + { "lat": 40.7930661, "lon": -73.9961604 }, + { "lat": 40.7930524, "lon": -73.9963248 } + ], + "tags": { + "highway": "residential", + "name": "River Road" + } +}, +{ + "type": "way", + "id": 570177646, + "bounds": { + "minlat": 40.7930524, + "minlon": -73.9975551, + "maxlat": 40.7934047, + "maxlon": -73.9963248 + }, + "nodes": [ + 4455963596, + 4455963590, + 4548733729, + 3633386736, + 3633386737, + 3633386739, + 103861701 + ], + "geometry": [ + { "lat": 40.7930524, "lon": -73.9963248 }, + { "lat": 40.7930964, "lon": -73.9964632 }, + { "lat": 40.7931107, "lon": -73.9965556 }, + { "lat": 40.7931401, "lon": -73.9967461 }, + { "lat": 40.7931847, "lon": -73.9968729 }, + { "lat": 40.7933293, "lon": -73.9972271 }, + { "lat": 40.7934047, "lon": -73.9975551 } + ], + "tags": { + "highway": "residential", + "name": "River Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177647, + "bounds": { + "minlat": 40.7930219, + "minlon": -73.9975551, + "maxlat": 40.7934047, + "maxlon": -73.9963248 + }, + "nodes": [ + 103861701, + 5482013549, + 5482013548, + 5482013547, + 4455963596 + ], + "geometry": [ + { "lat": 40.7934047, "lon": -73.9975551 }, + { "lat": 40.7932889, "lon": -73.9973107 }, + { "lat": 40.7930757, "lon": -73.9967528 }, + { "lat": 40.7930219, "lon": -73.9964309 }, + { "lat": 40.7930524, "lon": -73.9963248 } + ], + "tags": { + "highway": "residential", + "name": "River Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177648, + "bounds": { + "minlat": 40.7934584, + "minlon": -73.9973028, + "maxlat": 40.7940303, + "maxlon": -73.9969097 + }, + "nodes": [ + 5482013552, + 5482013551, + 5482013550 + ], + "geometry": [ + { "lat": 40.7940303, "lon": -73.9973028 }, + { "lat": 40.7939458, "lon": -73.9969097 }, + { "lat": 40.7934584, "lon": -73.9970773 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177649, + "bounds": { + "minlat": 40.7938138, + "minlon": -73.9978591, + "maxlat": 40.7944170, + "maxlon": -73.9974709 + }, + "nodes": [ + 5482013557, + 7662750153, + 5482013555, + 7662750152, + 5482013554, + 5482013553 + ], + "geometry": [ + { "lat": 40.7938138, "lon": -73.9976178 }, + { "lat": 40.7943168, "lon": -73.9974720 }, + { "lat": 40.7943414, "lon": -73.9974709 }, + { "lat": 40.7943611, "lon": -73.9974851 }, + { "lat": 40.7943763, "lon": -73.9975065 }, + { "lat": 40.7944170, "lon": -73.9978591 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 570177651, + "bounds": { + "minlat": 40.7936619, + "minlon": -73.9981596, + "maxlat": 40.7938138, + "maxlon": -73.9976178 + }, + "nodes": [ + 5482013557, + 7662750150, + 5482013556, + 7662750149, + 5482013558 + ], + "geometry": [ + { "lat": 40.7938138, "lon": -73.9976178 }, + { "lat": 40.7936852, "lon": -73.9976704 }, + { "lat": 40.7936686, "lon": -73.9976969 }, + { "lat": 40.7936619, "lon": -73.9977384 }, + { "lat": 40.7937031, "lon": -73.9981596 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177653, + "bounds": { + "minlat": 40.7938138, + "minlon": -73.9981167, + "maxlat": 40.7938960, + "maxlon": -73.9976178 + }, + "nodes": [ + 5482013559, + 5482013557 + ], + "geometry": [ + { "lat": 40.7938960, "lon": -73.9981167 }, + { "lat": 40.7938138, "lon": -73.9976178 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570177654, + "bounds": { + "minlat": 40.7944331, + "minlon": -73.9974274, + "maxlat": 40.7946124, + "maxlon": -73.9971493 + }, + "nodes": [ + 3633386746, + 5482013563 + ], + "geometry": [ + { "lat": 40.7946124, "lon": -73.9971493 }, + { "lat": 40.7944331, "lon": -73.9974274 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177656, + "bounds": { + "minlat": 40.7937031, + "minlon": -73.9981596, + "maxlat": 40.7938960, + "maxlon": -73.9981167 + }, + "nodes": [ + 5482013559, + 5482013558 + ], + "geometry": [ + { "lat": 40.7938960, "lon": -73.9981167 }, + { "lat": 40.7937031, "lon": -73.9981596 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177658, + "bounds": { + "minlat": 40.7938960, + "minlon": -73.9981167, + "maxlat": 40.7944548, + "maxlon": -73.9974274 + }, + "nodes": [ + 5482013563, + 7662750154, + 5482013562, + 7662750155, + 5482013553, + 5482013561, + 5482013560, + 5482013559 + ], + "geometry": [ + { "lat": 40.7944331, "lon": -73.9974274 }, + { "lat": 40.7944506, "lon": -73.9977320 }, + { "lat": 40.7944548, "lon": -73.9978073 }, + { "lat": 40.7944393, "lon": -73.9978376 }, + { "lat": 40.7944170, "lon": -73.9978591 }, + { "lat": 40.7943214, "lon": -73.9979316 }, + { "lat": 40.7941153, "lon": -73.9979920 }, + { "lat": 40.7938960, "lon": -73.9981167 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177660, + "bounds": { + "minlat": 40.7951768, + "minlon": -73.9960273, + "maxlat": 40.7954320, + "maxlon": -73.9959493 + }, + "nodes": [ + 5482013237, + 5482013564 + ], + "geometry": [ + { "lat": 40.7954320, "lon": -73.9959493 }, + { "lat": 40.7951768, "lon": -73.9960273 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570177663, + "bounds": { + "minlat": 40.7951079, + "minlon": -73.9957501, + "maxlat": 40.7953843, + "maxlon": -73.9956904 + }, + "nodes": [ + 5482013573, + 5482013572 + ], + "geometry": [ + { "lat": 40.7953843, "lon": -73.9956904 }, + { "lat": 40.7951079, "lon": -73.9957501 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 570177665, + "bounds": { + "minlat": 40.7946991, + "minlon": -73.9969151, + "maxlat": 40.7955674, + "maxlon": -73.9963247 + }, + "nodes": [ + 5482013568, + 5482013567, + 5482013566, + 5482013565, + 5482013570 + ], + "geometry": [ + { "lat": 40.7955674, "lon": -73.9966877 }, + { "lat": 40.7948210, "lon": -73.9969151 }, + { "lat": 40.7947722, "lon": -73.9968440 }, + { "lat": 40.7946991, "lon": -73.9963813 }, + { "lat": 40.7947055, "lon": -73.9963247 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177666, + "bounds": { + "minlat": 40.7946430, + "minlon": -73.9963247, + "maxlat": 40.7954676, + "maxlon": -73.9957501 + }, + "nodes": [ + 5482013572, + 5482013571, + 5482013570, + 5482013569 + ], + "geometry": [ + { "lat": 40.7951079, "lon": -73.9957501 }, + { "lat": 40.7946430, "lon": -73.9958671 }, + { "lat": 40.7947055, "lon": -73.9963247 }, + { "lat": 40.7954676, "lon": -73.9961430 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177667, + "bounds": { + "minlat": 40.7956931, + "minlon": -73.9963029, + "maxlat": 40.7957448, + "maxlon": -73.9962778 + }, + "nodes": [ + 5482013577, + 5482013576 + ], + "geometry": [ + { "lat": 40.7957448, "lon": -73.9962778 }, + { "lat": 40.7956931, "lon": -73.9963029 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177668, + "bounds": { + "minlat": 40.7958039, + "minlon": -73.9962362, + "maxlat": 40.7960444, + "maxlon": -73.9960697 + }, + "nodes": [ + 5482013579, + 5482013578 + ], + "geometry": [ + { "lat": 40.7960444, "lon": -73.9960697 }, + { "lat": 40.7958039, "lon": -73.9962362 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177669, + "bounds": { + "minlat": 40.7954876, + "minlon": -73.9965389, + "maxlat": 40.7957946, + "maxlon": -73.9962029 + }, + "nodes": [ + 5482013575, + 5482013576, + 5482013582, + 5482013574 + ], + "geometry": [ + { "lat": 40.7957946, "lon": -73.9965389 }, + { "lat": 40.7956931, "lon": -73.9963029 }, + { "lat": 40.7956596, "lon": -73.9962029 }, + { "lat": 40.7954876, "lon": -73.9962538 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177670, + "bounds": { + "minlat": 40.7957448, + "minlon": -73.9962778, + "maxlat": 40.7958039, + "maxlon": -73.9962362 + }, + "nodes": [ + 5482013578, + 5482013577 + ], + "geometry": [ + { "lat": 40.7958039, "lon": -73.9962362 }, + { "lat": 40.7957448, "lon": -73.9962778 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177671, + "bounds": { + "minlat": 40.7960779, + "minlon": -73.9962325, + "maxlat": 40.7961913, + "maxlon": -73.9961513 + }, + "nodes": [ + 5482013581, + 5482013580 + ], + "geometry": [ + { "lat": 40.7961913, "lon": -73.9961513 }, + { "lat": 40.7960779, "lon": -73.9962325 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570177672, + "bounds": { + "minlat": 40.7956596, + "minlon": -73.9963657, + "maxlat": 40.7962790, + "maxlon": -73.9960380 + }, + "nodes": [ + 5482013585, + 5482013581, + 5482013584, + 5482013579, + 5482013583, + 5482013582 + ], + "geometry": [ + { "lat": 40.7962790, "lon": -73.9963657 }, + { "lat": 40.7961913, "lon": -73.9961513 }, + { "lat": 40.7961449, "lon": -73.9960380 }, + { "lat": 40.7960444, "lon": -73.9960697 }, + { "lat": 40.7958860, "lon": -73.9961198 }, + { "lat": 40.7956596, "lon": -73.9962029 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570177673, + "bounds": { + "minlat": 40.7961490, + "minlon": -73.9964242, + "maxlat": 40.7963398, + "maxlon": -73.9963384 + }, + "nodes": [ + 5482013588, + 5482013585, + 5482013586 + ], + "geometry": [ + { "lat": 40.7963398, "lon": -73.9963384 }, + { "lat": 40.7962790, "lon": -73.9963657 }, + { "lat": 40.7961490, "lon": -73.9964242 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570177674, + "bounds": { + "minlat": 40.7963398, + "minlon": -73.9965934, + "maxlat": 40.7965195, + "maxlon": -73.9962137 + }, + "nodes": [ + 103861710, + 5482013588, + 5482013587 + ], + "geometry": [ + { "lat": 40.7964257, "lon": -73.9965934 }, + { "lat": 40.7963398, "lon": -73.9963384 }, + { "lat": 40.7965195, "lon": -73.9962137 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570200594, + "bounds": { + "minlat": 40.7737590, + "minlon": -73.9138792, + "maxlat": 40.7741028, + "maxlon": -73.9135943 + }, + "nodes": [ + 5482160064, + 6450658437, + 5482160063, + 5482160062, + 5482160061 + ], + "geometry": [ + { "lat": 40.7737590, "lon": -73.9135943 }, + { "lat": 40.7738417, "lon": -73.9136943 }, + { "lat": 40.7738794, "lon": -73.9137398 }, + { "lat": 40.7739779, "lon": -73.9137183 }, + { "lat": 40.7741028, "lon": -73.9138792 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570200597, + "bounds": { + "minlat": 40.7800641, + "minlon": -73.9075831, + "maxlat": 40.7802062, + "maxlon": -73.9073762 + }, + "nodes": [ + 5482160072, + 7806681637, + 5482160070, + 5482160071 + ], + "geometry": [ + { "lat": 40.7802062, "lon": -73.9075831 }, + { "lat": 40.7801590, "lon": -73.9075144 }, + { "lat": 40.7801380, "lon": -73.9074838 }, + { "lat": 40.7800641, "lon": -73.9073762 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570200601, + "bounds": { + "minlat": 40.7760477, + "minlon": -73.9122850, + "maxlat": 40.7763485, + "maxlon": -73.9118381 + }, + "nodes": [ + 5482160084, + 7784017588, + 5482160083 + ], + "geometry": [ + { "lat": 40.7763485, "lon": -73.9122850 }, + { "lat": 40.7763135, "lon": -73.9122330 }, + { "lat": 40.7760477, "lon": -73.9118381 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 570200652, + "bounds": { + "minlat": 40.7950626, + "minlon": -74.0013549, + "maxlat": 40.7952290, + "maxlon": -74.0009491 + }, + "nodes": [ + 5482160108, + 7468583884, + 5482160107 + ], + "geometry": [ + { "lat": 40.7952290, "lon": -74.0013549 }, + { "lat": 40.7951834, "lon": -74.0012437 }, + { "lat": 40.7950626, "lon": -74.0009491 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570200654, + "bounds": { + "minlat": 40.7951545, + "minlon": -74.0012868, + "maxlat": 40.7953250, + "maxlon": -74.0008653 + }, + "nodes": [ + 5482160110, + 7468583885, + 5482160109 + ], + "geometry": [ + { "lat": 40.7953250, "lon": -74.0012868 }, + { "lat": 40.7952802, "lon": -74.0011761 }, + { "lat": 40.7951545, "lon": -74.0008653 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570204056, + "bounds": { + "minlat": 40.7657753, + "minlon": -73.9122450, + "maxlat": 40.7659158, + "maxlon": -73.9119333 + }, + "nodes": [ + 5482180846, + 6453106191, + 5482180845 + ], + "geometry": [ + { "lat": 40.7659158, "lon": -73.9122450 }, + { "lat": 40.7658825, "lon": -73.9121711 }, + { "lat": 40.7657753, "lon": -73.9119333 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570206497, + "bounds": { + "minlat": 40.7185383, + "minlon": -73.9476550, + "maxlat": 40.7187130, + "maxlon": -73.9474863 + }, + "nodes": [ + 5482193500, + 12994324006, + 5482193499, + 5482193498 + ], + "geometry": [ + { "lat": 40.7185383, "lon": -73.9474863 }, + { "lat": 40.7186124, "lon": -73.9474987 }, + { "lat": 40.7187130, "lon": -73.9475155 }, + { "lat": 40.7187018, "lon": -73.9476550 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570206499, + "bounds": { + "minlat": 40.7209205, + "minlon": -73.9478647, + "maxlat": 40.7214117, + "maxlon": -73.9475577 + }, + "nodes": [ + 5482193501, + 9789424622, + 5482193502, + 9789424624, + 5482193503 + ], + "geometry": [ + { "lat": 40.7209205, "lon": -73.9478647 }, + { "lat": 40.7209262, "lon": -73.9478024 }, + { "lat": 40.7209486, "lon": -73.9475577 }, + { "lat": 40.7213580, "lon": -73.9476095 }, + { "lat": 40.7214117, "lon": -73.9476163 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570206505, + "bounds": { + "minlat": 40.7157520, + "minlon": -73.9434358, + "maxlat": 40.7157999, + "maxlon": -73.9428861 + }, + "nodes": [ + 5482193509, + 9795355899, + 5482193508 + ], + "geometry": [ + { "lat": 40.7157999, "lon": -73.9428861 }, + { "lat": 40.7157925, "lon": -73.9429709 }, + { "lat": 40.7157520, "lon": -73.9434358 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570206508, + "bounds": { + "minlat": 40.7215234, + "minlon": -73.9465149, + "maxlat": 40.7216544, + "maxlon": -73.9464656 + }, + "nodes": [ + 5482193510, + 9789356742, + 5482193513 + ], + "geometry": [ + { "lat": 40.7216544, "lon": -73.9465149 }, + { "lat": 40.7215814, "lon": -73.9464875 }, + { "lat": 40.7215234, "lon": -73.9464656 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 570206510, + "bounds": { + "minlat": 40.7209950, + "minlon": -73.9485352, + "maxlat": 40.7213617, + "maxlon": -73.9480908 + }, + "nodes": [ + 5482193517, + 9789424627, + 5482193516, + 5482193515, + 9789424626, + 5482193514 + ], + "geometry": [ + { "lat": 40.7209950, "lon": -73.9485352 }, + { "lat": 40.7210174, "lon": -73.9484585 }, + { "lat": 40.7210355, "lon": -73.9483966 }, + { "lat": 40.7210665, "lon": -73.9480908 }, + { "lat": 40.7213033, "lon": -73.9481258 }, + { "lat": 40.7213617, "lon": -73.9481344 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570207628, + "bounds": { + "minlat": 40.7582634, + "minlon": -73.9099532, + "maxlat": 40.7583962, + "maxlon": -73.9096517 + }, + "nodes": [ + 5482199727, + 6453127219, + 5482199726 + ], + "geometry": [ + { "lat": 40.7582634, "lon": -73.9096517 }, + { "lat": 40.7582872, "lon": -73.9097057 }, + { "lat": 40.7583962, "lon": -73.9099532 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570207630, + "bounds": { + "minlat": 40.7601378, + "minlon": -73.9113597, + "maxlat": 40.7603375, + "maxlon": -73.9110905 + }, + "nodes": [ + 5482199735, + 6453127216, + 5482199734, + 5482199733, + 6453127217, + 5482199732 + ], + "geometry": [ + { "lat": 40.7602206, "lon": -73.9113597 }, + { "lat": 40.7601798, "lon": -73.9112773 }, + { "lat": 40.7601378, "lon": -73.9111886 }, + { "lat": 40.7602568, "lon": -73.9110905 }, + { "lat": 40.7603001, "lon": -73.9111820 }, + { "lat": 40.7603375, "lon": -73.9112651 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570208552, + "bounds": { + "minlat": 40.7854317, + "minlon": -74.0025513, + "maxlat": 40.7855090, + "maxlon": -74.0024979 + }, + "nodes": [ + 5482202116, + 5482202115 + ], + "geometry": [ + { "lat": 40.7855090, "lon": -74.0024979 }, + { "lat": 40.7854317, "lon": -74.0025513 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570208554, + "bounds": { + "minlat": 40.7853669, + "minlon": -74.0027288, + "maxlat": 40.7854370, + "maxlon": -74.0026134 + }, + "nodes": [ + 5482202114, + 5482202112 + ], + "geometry": [ + { "lat": 40.7853669, "lon": -74.0026134 }, + { "lat": 40.7854370, "lon": -74.0027288 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570208555, + "bounds": { + "minlat": 40.7851771, + "minlon": -74.0026134, + "maxlat": 40.7854317, + "maxlon": -74.0023385 + }, + "nodes": [ + 5482202115, + 5482202114, + 5482202113 + ], + "geometry": [ + { "lat": 40.7854317, "lon": -74.0025513 }, + { "lat": 40.7853669, "lon": -74.0026134 }, + { "lat": 40.7851771, "lon": -74.0023385 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570208556, + "bounds": { + "minlat": 40.7852852, + "minlon": -74.0029637, + "maxlat": 40.7856583, + "maxlon": -74.0021202 + }, + "nodes": [ + 308650399, + 5482202118, + 5482202116, + 5482202117, + 103859910 + ], + "geometry": [ + { "lat": 40.7852852, "lon": -74.0021202 }, + { "lat": 40.7853791, "lon": -74.0022138 }, + { "lat": 40.7855090, "lon": -74.0024979 }, + { "lat": 40.7856452, "lon": -74.0027958 }, + { "lat": 40.7856583, "lon": -74.0029637 } + ], + "tags": { + "highway": "residential", + "name": "Oswego Court", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 570211194, + "bounds": { + "minlat": 40.7851649, + "minlon": -73.9463750, + "maxlat": 40.7858376, + "maxlon": -73.9457378 + }, + "nodes": [ + 5482216744, + 6181708458, + 6181709407, + 10316278216, + 5482216742, + 5628931423, + 5482216741, + 5618784630, + 10316278217, + 6181709414, + 6181708481, + 5475082076 + ], + "geometry": [ + { "lat": 40.7858376, "lon": -73.9459587 }, + { "lat": 40.7857713, "lon": -73.9458746 }, + { "lat": 40.7857442, "lon": -73.9458377 }, + { "lat": 40.7857278, "lon": -73.9458147 }, + { "lat": 40.7856877, "lon": -73.9457588 }, + { "lat": 40.7856393, "lon": -73.9457378 }, + { "lat": 40.7851771, "lon": -73.9460811 }, + { "lat": 40.7851649, "lon": -73.9461589 }, + { "lat": 40.7851866, "lon": -73.9462105 }, + { "lat": 40.7851960, "lon": -73.9462327 }, + { "lat": 40.7852163, "lon": -73.9462809 }, + { "lat": 40.7852567, "lon": -73.9463750 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211197, + "bounds": { + "minlat": 40.7881680, + "minlon": -73.9470899, + "maxlat": 40.7882637, + "maxlon": -73.9468535 + }, + "nodes": [ + 6190264256, + 6247900121, + 5482216747 + ], + "geometry": [ + { "lat": 40.7882637, "lon": -73.9470899 }, + { "lat": 40.7882105, "lon": -73.9469582 }, + { "lat": 40.7881680, "lon": -73.9468535 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570211199, + "bounds": { + "minlat": 40.7855315, + "minlon": -73.9434426, + "maxlat": 40.7857792, + "maxlon": -73.9430555 + }, + "nodes": [ + 5482216750, + 6169388286, + 9291131965, + 6133355314, + 6133388356, + 5482216749 + ], + "geometry": [ + { "lat": 40.7855315, "lon": -73.9430555 }, + { "lat": 40.7855747, "lon": -73.9431625 }, + { "lat": 40.7855902, "lon": -73.9432008 }, + { "lat": 40.7856176, "lon": -73.9432688 }, + { "lat": 40.7856856, "lon": -73.9432178 }, + { "lat": 40.7857792, "lon": -73.9434426 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570211201, + "bounds": { + "minlat": 40.7853045, + "minlon": -73.9436403, + "maxlat": 40.7856309, + "maxlon": -73.9434063 + }, + "nodes": [ + 5482216752, + 6181709408, + 5482216751 + ], + "geometry": [ + { "lat": 40.7853045, "lon": -73.9436403 }, + { "lat": 40.7853776, "lon": -73.9435879 }, + { "lat": 40.7856309, "lon": -73.9434063 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211202, + "bounds": { + "minlat": 40.7864998, + "minlon": -73.9444892, + "maxlat": 40.7868281, + "maxlon": -73.9442633 + }, + "nodes": [ + 5482216754, + 6190264232, + 7132831137, + 5482216753 + ], + "geometry": [ + { "lat": 40.7864998, "lon": -73.9444892 }, + { "lat": 40.7865641, "lon": -73.9444451 }, + { "lat": 40.7865772, "lon": -73.9444361 }, + { "lat": 40.7868281, "lon": -73.9442633 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570211205, + "bounds": { + "minlat": 40.7879342, + "minlon": -73.9418501, + "maxlat": 40.7881732, + "maxlon": -73.9415646 + }, + "nodes": [ + 5719241474, + 6191027318, + 5719241475, + 6191027300, + 5482216759, + 5482216758, + 5482216757, + 5482216756, + 5482216755, + 5719241476, + 5482216760 + ], + "geometry": [ + { "lat": 40.7879342, "lon": -73.9416753 }, + { "lat": 40.7880373, "lon": -73.9416026 }, + { "lat": 40.7880906, "lon": -73.9415646 }, + { "lat": 40.7881116, "lon": -73.9415666 }, + { "lat": 40.7881313, "lon": -73.9415796 }, + { "lat": 40.7881732, "lon": -73.9416713 }, + { "lat": 40.7881707, "lon": -73.9417113 }, + { "lat": 40.7881556, "lon": -73.9417430 }, + { "lat": 40.7880044, "lon": -73.9418501 }, + { "lat": 40.7879707, "lon": -73.9418319 }, + { "lat": 40.7879422, "lon": -73.9418023 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 570211217, + "bounds": { + "minlat": 40.7886466, + "minlon": -73.9384193, + "maxlat": 40.7888764, + "maxlon": -73.9382695 + }, + "nodes": [ + 5482216773, + 6216541857, + 5482216772 + ], + "geometry": [ + { "lat": 40.7888764, "lon": -73.9382695 }, + { "lat": 40.7887822, "lon": -73.9383308 }, + { "lat": 40.7886466, "lon": -73.9384193 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211219, + "bounds": { + "minlat": 40.7848613, + "minlon": -73.9416535, + "maxlat": 40.7850603, + "maxlon": -73.9415121 + }, + "nodes": [ + 5482216775, + 5482216774 + ], + "geometry": [ + { "lat": 40.7850603, "lon": -73.9415121 }, + { "lat": 40.7848613, "lon": -73.9416535 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211221, + "bounds": { + "minlat": 40.7849994, + "minlon": -73.9417045, + "maxlat": 40.7851376, + "maxlon": -73.9413558 + }, + "nodes": [ + 5482216777, + 5482216775, + 5482216776 + ], + "geometry": [ + { "lat": 40.7851376, "lon": -73.9417045 }, + { "lat": 40.7850603, "lon": -73.9415121 }, + { "lat": 40.7849994, "lon": -73.9413558 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211224, + "bounds": { + "minlat": 40.7847508, + "minlon": -73.9419739, + "maxlat": 40.7853001, + "maxlon": -73.9416434 + }, + "nodes": [ + 5482216779, + 6190264282, + 5482216777, + 5482216778 + ], + "geometry": [ + { "lat": 40.7853001, "lon": -73.9416434 }, + { "lat": 40.7852414, "lon": -73.9416632 }, + { "lat": 40.7851376, "lon": -73.9417045 }, + { "lat": 40.7847508, "lon": -73.9419739 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211229, + "bounds": { + "minlat": 40.7843751, + "minlon": -73.9427841, + "maxlat": 40.7845915, + "maxlon": -73.9423947 + }, + "nodes": [ + 5482216782, + 5482216780 + ], + "geometry": [ + { "lat": 40.7843751, "lon": -73.9427841 }, + { "lat": 40.7845915, "lon": -73.9423947 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211236, + "bounds": { + "minlat": 40.7828729, + "minlon": -73.9452715, + "maxlat": 40.7830217, + "maxlon": -73.9449968 + }, + "nodes": [ + 5482216785, + 6169388298, + 6181480028, + 5882143751, + 5482216784, + 9291131964 + ], + "geometry": [ + { "lat": 40.7828729, "lon": -73.9449968 }, + { "lat": 40.7829159, "lon": -73.9451034 }, + { "lat": 40.7829307, "lon": -73.9451400 }, + { "lat": 40.7829795, "lon": -73.9452715 }, + { "lat": 40.7829964, "lon": -73.9452605 }, + { "lat": 40.7830217, "lon": -73.9452432 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 570211238, + "bounds": { + "minlat": 40.7819323, + "minlon": -73.9456081, + "maxlat": 40.7824538, + "maxlon": -73.9447287 + }, + "nodes": [ + 5482216792, + 6181480018, + 5482216791, + 7941041512, + 5482216790, + 5482216789, + 5734176816, + 5482216788, + 5482216787, + 5482216786 + ], + "geometry": [ + { "lat": 40.7820331, "lon": -73.9456081 }, + { "lat": 40.7819773, "lon": -73.9454676 }, + { "lat": 40.7819568, "lon": -73.9454161 }, + { "lat": 40.7819391, "lon": -73.9453364 }, + { "lat": 40.7819323, "lon": -73.9451530 }, + { "lat": 40.7821012, "lon": -73.9451586 }, + { "lat": 40.7821793, "lon": -73.9451461 }, + { "lat": 40.7822454, "lon": -73.9451176 }, + { "lat": 40.7824538, "lon": -73.9449677 }, + { "lat": 40.7823623, "lon": -73.9447287 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211240, + "bounds": { + "minlat": 40.7803932, + "minlon": -73.9448143, + "maxlat": 40.7806910, + "maxlon": -73.9445956 + }, + "nodes": [ + 5482216794, + 5482216793 + ], + "geometry": [ + { "lat": 40.7806910, "lon": -73.9445956 }, + { "lat": 40.7803932, "lon": -73.9448143 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211242, + "bounds": { + "minlat": 40.7870766, + "minlon": -73.9452317, + "maxlat": 40.7875638, + "maxlon": -73.9450505 + }, + "nodes": [ + 5482216800, + 6190263568, + 5482216799, + 6910530532, + 6910530534, + 6910530533, + 5482216798, + 5482216797 + ], + "geometry": [ + { "lat": 40.7870766, "lon": -73.9450505 }, + { "lat": 40.7871259, "lon": -73.9451677 }, + { "lat": 40.7871413, "lon": -73.9451956 }, + { "lat": 40.7871623, "lon": -73.9452225 }, + { "lat": 40.7871760, "lon": -73.9452291 }, + { "lat": 40.7871927, "lon": -73.9452317 }, + { "lat": 40.7872201, "lon": -73.9452271 }, + { "lat": 40.7875638, "lon": -73.9451471 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211244, + "bounds": { + "minlat": 40.7843492, + "minlon": -73.9447141, + "maxlat": 40.7844534, + "maxlon": -73.9446524 + }, + "nodes": [ + 6181709403, + 3900961240 + ], + "geometry": [ + { "lat": 40.7843492, "lon": -73.9447141 }, + { "lat": 40.7844534, "lon": -73.9446524 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570211439, + "bounds": { + "minlat": 40.7411631, + "minlon": -73.9285816, + "maxlat": 40.7412116, + "maxlon": -73.9281660 + }, + "nodes": [ + 5482216912, + 10743722141, + 5482216911 + ], + "geometry": [ + { "lat": 40.7412116, "lon": -73.9285816 }, + { "lat": 40.7412027, "lon": -73.9285050 }, + { "lat": 40.7411631, "lon": -73.9281660 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570211440, + "bounds": { + "minlat": 40.7410559, + "minlon": -73.9286044, + "maxlat": 40.7410958, + "maxlon": -73.9282277 + }, + "nodes": [ + 5482216914, + 10743722142, + 5482216913 + ], + "geometry": [ + { "lat": 40.7410958, "lon": -73.9286044 }, + { "lat": 40.7410877, "lon": -73.9285275 }, + { "lat": 40.7410559, "lon": -73.9282277 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570211441, + "bounds": { + "minlat": 40.7400131, + "minlon": -73.9297661, + "maxlat": 40.7400546, + "maxlon": -73.9294317 + }, + "nodes": [ + 5482216916, + 10743722264, + 5482216915 + ], + "geometry": [ + { "lat": 40.7400546, "lon": -73.9297661 }, + { "lat": 40.7400444, "lon": -73.9296840 }, + { "lat": 40.7400131, "lon": -73.9294317 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570211442, + "bounds": { + "minlat": 40.7390998, + "minlon": -73.9289917, + "maxlat": 40.7391476, + "maxlon": -73.9285872 + }, + "nodes": [ + 5482216919, + 10743722309, + 6896201352, + 5482216917 + ], + "geometry": [ + { "lat": 40.7391476, "lon": -73.9289917 }, + { "lat": 40.7391380, "lon": -73.9289183 }, + { "lat": 40.7391332, "lon": -73.9288814 }, + { "lat": 40.7390998, "lon": -73.9285872 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570211443, + "bounds": { + "minlat": 40.7394271, + "minlon": -73.9302411, + "maxlat": 40.7398661, + "maxlon": -73.9301589 + }, + "nodes": [ + 5482217721, + 5482216920 + ], + "geometry": [ + { "lat": 40.7394271, "lon": -73.9302411 }, + { "lat": 40.7398661, "lon": -73.9301589 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211444, + "bounds": { + "minlat": 40.7394232, + "minlon": -73.9300945, + "maxlat": 40.7398447, + "maxlon": -73.9300221 + }, + "nodes": [ + 5482217723, + 5482217722 + ], + "geometry": [ + { "lat": 40.7394232, "lon": -73.9300945 }, + { "lat": 40.7398447, "lon": -73.9300221 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211445, + "bounds": { + "minlat": 40.7393970, + "minlon": -73.9305414, + "maxlat": 40.7394352, + "maxlon": -73.9298981 + }, + "nodes": [ + 10743722253, + 5482217726, + 5482217721, + 5482217725, + 5482217723, + 10743722254, + 5482217724 + ], + "geometry": [ + { "lat": 40.7394345, "lon": -73.9305414 }, + { "lat": 40.7394093, "lon": -73.9303172 }, + { "lat": 40.7394271, "lon": -73.9302411 }, + { "lat": 40.7394352, "lon": -73.9301884 }, + { "lat": 40.7394232, "lon": -73.9300945 }, + { "lat": 40.7394071, "lon": -73.9299738 }, + { "lat": 40.7393970, "lon": -73.9298981 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570211446, + "bounds": { + "minlat": 40.7419715, + "minlon": -73.9308590, + "maxlat": 40.7423125, + "maxlon": -73.9307940 + }, + "nodes": [ + 5482217729, + 5482217728 + ], + "geometry": [ + { "lat": 40.7423125, "lon": -73.9307940 }, + { "lat": 40.7419715, "lon": -73.9308590 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570211451, + "bounds": { + "minlat": 40.7420050, + "minlon": -73.9338094, + "maxlat": 40.7420804, + "maxlon": -73.9337941 + }, + "nodes": [ + 5482217739, + 5482217744 + ], + "geometry": [ + { "lat": 40.7420804, "lon": -73.9337941 }, + { "lat": 40.7420050, "lon": -73.9338094 } + ], + "tags": { + "highway": "service", + "level": "1", + "maxspeed": "10 mph", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211452, + "bounds": { + "minlat": 40.7421967, + "minlon": -73.9337615, + "maxlat": 40.7422419, + "maxlon": -73.9333461 + }, + "nodes": [ + 5482217738, + 5482217737 + ], + "geometry": [ + { "lat": 40.7422419, "lon": -73.9337615 }, + { "lat": 40.7421967, "lon": -73.9333461 } + ], + "tags": { + "highway": "service", + "level": "1", + "maxspeed": "10 mph", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211453, + "bounds": { + "minlat": 40.7420385, + "minlon": -73.9337941, + "maxlat": 40.7420832, + "maxlon": -73.9333655 + }, + "nodes": [ + 5482217739, + 5482217740, + 5482217741 + ], + "geometry": [ + { "lat": 40.7420804, "lon": -73.9337941 }, + { "lat": 40.7420385, "lon": -73.9334527 }, + { "lat": 40.7420832, "lon": -73.9333655 } + ], + "tags": { + "highway": "service", + "level": "1", + "maxspeed": "10 mph", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211454, + "bounds": { + "minlat": 40.7420804, + "minlon": -73.9337941, + "maxlat": 40.7424094, + "maxlon": -73.9333186 + }, + "nodes": [ + 5482217741, + 5482217737, + 5482217742, + 5482217743, + 5482217738, + 5482217739 + ], + "geometry": [ + { "lat": 40.7420832, "lon": -73.9333655 }, + { "lat": 40.7421967, "lon": -73.9333461 }, + { "lat": 40.7423576, "lon": -73.9333186 }, + { "lat": 40.7424094, "lon": -73.9337276 }, + { "lat": 40.7422419, "lon": -73.9337615 }, + { "lat": 40.7420804, "lon": -73.9337941 } + ], + "tags": { + "highway": "service", + "level": "1", + "maxspeed": "10 mph", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211455, + "bounds": { + "minlat": 40.7418799, + "minlon": -73.9333058, + "maxlat": 40.7418942, + "maxlon": -73.9331890 + }, + "nodes": [ + 5482217746, + 10743722166, + 11432039306 + ], + "geometry": [ + { "lat": 40.7418799, "lon": -73.9331890 }, + { "lat": 40.7418889, "lon": -73.9332666 }, + { "lat": 40.7418942, "lon": -73.9333058 } + ], + "tags": { + "highway": "service", + "maxspeed": "10 mph", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211456, + "bounds": { + "minlat": 40.7458584, + "minlon": -73.9323942, + "maxlat": 40.7458801, + "maxlon": -73.9321505 + }, + "nodes": [ + 5482217748, + 10762202905, + 7604122589, + 5482217747, + 5482217751 + ], + "geometry": [ + { "lat": 40.7458801, "lon": -73.9323942 }, + { "lat": 40.7458720, "lon": -73.9323125 }, + { "lat": 40.7458614, "lon": -73.9322067 }, + { "lat": 40.7458584, "lon": -73.9321766 }, + { "lat": 40.7458711, "lon": -73.9321505 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211457, + "bounds": { + "minlat": 40.7458711, + "minlon": -73.9323859, + "maxlat": 40.7459214, + "maxlon": -73.9321505 + }, + "nodes": [ + 5482217751, + 5482217750, + 7654797400, + 10762174404, + 5482217749 + ], + "geometry": [ + { "lat": 40.7458711, "lon": -73.9321505 }, + { "lat": 40.7458960, "lon": -73.9321733 }, + { "lat": 40.7459047, "lon": -73.9322462 }, + { "lat": 40.7459117, "lon": -73.9323044 }, + { "lat": 40.7459214, "lon": -73.9323859 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211458, + "bounds": { + "minlat": 40.7460027, + "minlon": -73.9323596, + "maxlat": 40.7460503, + "maxlon": -73.9319412 + }, + "nodes": [ + 5482217754, + 10762174403, + 7654797401, + 5482217753 + ], + "geometry": [ + { "lat": 40.7460503, "lon": -73.9323596 }, + { "lat": 40.7460413, "lon": -73.9322805 }, + { "lat": 40.7460384, "lon": -73.9322546 }, + { "lat": 40.7460027, "lon": -73.9319412 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211459, + "bounds": { + "minlat": 40.7422549, + "minlon": -73.9378403, + "maxlat": 40.7423616, + "maxlon": -73.9369058 + }, + "nodes": [ + 5482217757, + 10762202982, + 6721057421, + 6721057423, + 10774449938, + 5482217756 + ], + "geometry": [ + { "lat": 40.7423616, "lon": -73.9378403 }, + { "lat": 40.7423534, "lon": -73.9377675 }, + { "lat": 40.7423231, "lon": -73.9374969 }, + { "lat": 40.7422879, "lon": -73.9371995 }, + { "lat": 40.7422649, "lon": -73.9369948 }, + { "lat": 40.7422549, "lon": -73.9369058 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211460, + "bounds": { + "minlat": 40.7435271, + "minlon": -73.9374438, + "maxlat": 40.7436043, + "maxlon": -73.9368081 + }, + "nodes": [ + 5482217760, + 5482217758, + 5482217759 + ], + "geometry": [ + { "lat": 40.7436043, "lon": -73.9374438 }, + { "lat": 40.7435659, "lon": -73.9371282 }, + { "lat": 40.7435271, "lon": -73.9368081 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211461, + "bounds": { + "minlat": 40.7436774, + "minlon": -73.9370968, + "maxlat": 40.7437161, + "maxlon": -73.9367706 + }, + "nodes": [ + 5482217762, + 5482217761 + ], + "geometry": [ + { "lat": 40.7437161, "lon": -73.9370968 }, + { "lat": 40.7436774, "lon": -73.9367706 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211462, + "bounds": { + "minlat": 40.7438319, + "minlon": -73.9370656, + "maxlat": 40.7438651, + "maxlon": -73.9367464 + }, + "nodes": [ + 5482217764, + 5482217763 + ], + "geometry": [ + { "lat": 40.7438651, "lon": -73.9370656 }, + { "lat": 40.7438319, "lon": -73.9367464 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211463, + "bounds": { + "minlat": 40.7438201, + "minlon": -73.9374062, + "maxlat": 40.7438603, + "maxlon": -73.9370750 + }, + "nodes": [ + 5482217766, + 5482217765 + ], + "geometry": [ + { "lat": 40.7438603, "lon": -73.9374062 }, + { "lat": 40.7438201, "lon": -73.9370750 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570211464, + "bounds": { + "minlat": 40.7432561, + "minlon": -73.9371941, + "maxlat": 40.7440409, + "maxlon": -73.9370289 + }, + "nodes": [ + 5482217768, + 5482217764, + 5482217765, + 5482217762, + 5482217758, + 10762202976, + 5482217767 + ], + "geometry": [ + { "lat": 40.7440409, "lon": -73.9370289 }, + { "lat": 40.7438651, "lon": -73.9370656 }, + { "lat": 40.7438201, "lon": -73.9370750 }, + { "lat": 40.7437161, "lon": -73.9370968 }, + { "lat": 40.7435659, "lon": -73.9371282 }, + { "lat": 40.7433368, "lon": -73.9371769 }, + { "lat": 40.7432561, "lon": -73.9371941 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570211465, + "bounds": { + "minlat": 40.7439858, + "minlon": -73.9374942, + "maxlat": 40.7440939, + "maxlon": -73.9365657 + }, + "nodes": [ + 5482217770, + 10762202978, + 5482217768, + 10762202979, + 5482217769 + ], + "geometry": [ + { "lat": 40.7440939, "lon": -73.9374942 }, + { "lat": 40.7440856, "lon": -73.9374211 }, + { "lat": 40.7440409, "lon": -73.9370289 }, + { "lat": 40.7439963, "lon": -73.9366542 }, + { "lat": 40.7439858, "lon": -73.9365657 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570211466, + "bounds": { + "minlat": 40.7450864, + "minlon": -73.9364469, + "maxlat": 40.7454586, + "maxlon": -73.9363803 + }, + "nodes": [ + 5482217772, + 8315072951, + 5482217771 + ], + "geometry": [ + { "lat": 40.7450864, "lon": -73.9364469 }, + { "lat": 40.7451996, "lon": -73.9364253 }, + { "lat": 40.7454586, "lon": -73.9363803 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570212294, + "bounds": { + "minlat": 40.8242741, + "minlon": -73.9067084, + "maxlat": 40.8244760, + "maxlon": -73.9066346 + }, + "nodes": [ + 5482222732, + 7557648853, + 5482222728 + ], + "geometry": [ + { "lat": 40.8244760, "lon": -73.9066346 }, + { "lat": 40.8243304, "lon": -73.9066878 }, + { "lat": 40.8242741, "lon": -73.9067084 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212296, + "bounds": { + "minlat": 40.8244516, + "minlon": -73.9075506, + "maxlat": 40.8251392, + "maxlon": -73.9072649 + }, + "nodes": [ + 5482222737, + 13247311028, + 5482222736, + 5482222735, + 5482222734 + ], + "geometry": [ + { "lat": 40.8251392, "lon": -73.9074878 }, + { "lat": 40.8250820, "lon": -73.9075118 }, + { "lat": 40.8249895, "lon": -73.9075506 }, + { "lat": 40.8249241, "lon": -73.9072649 }, + { "lat": 40.8244516, "lon": -73.9074379 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212297, + "bounds": { + "minlat": 40.8231181, + "minlon": -73.9084223, + "maxlat": 40.8232754, + "maxlon": -73.9080106 + }, + "nodes": [ + 5482222740, + 5482222739, + 13702961958 + ], + "geometry": [ + { "lat": 40.8231923, "lon": -73.9080106 }, + { "lat": 40.8232754, "lon": -73.9083619 }, + { "lat": 40.8231181, "lon": -73.9084223 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212299, + "bounds": { + "minlat": 40.8226930, + "minlon": -73.9086811, + "maxlat": 40.8228116, + "maxlon": -73.9082058 + }, + "nodes": [ + 5482222742, + 5482222741 + ], + "geometry": [ + { "lat": 40.8226930, "lon": -73.9082058 }, + { "lat": 40.8228116, "lon": -73.9086811 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212307, + "bounds": { + "minlat": 40.8249954, + "minlon": -73.9089172, + "maxlat": 40.8253345, + "maxlon": -73.9082447 + }, + "nodes": [ + 5482222755, + 12039986432, + 5482222754, + 5482222753, + 12039986430, + 5482222752 + ], + "geometry": [ + { "lat": 40.8251578, "lon": -73.9082447 }, + { "lat": 40.8251999, "lon": -73.9083842 }, + { "lat": 40.8253345, "lon": -73.9088300 }, + { "lat": 40.8251813, "lon": -73.9089172 }, + { "lat": 40.8250355, "lon": -73.9084445 }, + { "lat": 40.8249954, "lon": -73.9083144 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 570212309, + "bounds": { + "minlat": 40.8216933, + "minlon": -73.9128468, + "maxlat": 40.8223329, + "maxlon": -73.9125111 + }, + "nodes": [ + 5482222757, + 5482222756 + ], + "geometry": [ + { "lat": 40.8223329, "lon": -73.9125111 }, + { "lat": 40.8216933, "lon": -73.9128468 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212313, + "bounds": { + "minlat": 40.8215142, + "minlon": -73.9138214, + "maxlat": 40.8225673, + "maxlon": -73.9132750 + }, + "nodes": [ + 7564284928, + 5482222763, + 7564284924, + 12040128176, + 5482222762 + ], + "geometry": [ + { "lat": 40.8215142, "lon": -73.9138214 }, + { "lat": 40.8219270, "lon": -73.9136073 }, + { "lat": 40.8222679, "lon": -73.9134304 }, + { "lat": 40.8225149, "lon": -73.9133022 }, + { "lat": 40.8225673, "lon": -73.9132750 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212314, + "bounds": { + "minlat": 40.8232750, + "minlon": -73.9131872, + "maxlat": 40.8235210, + "maxlon": -73.9128158 + }, + "nodes": [ + 5482222766, + 12040069738, + 5482222765, + 5482222764 + ], + "geometry": [ + { "lat": 40.8232750, "lon": -73.9131872 }, + { "lat": 40.8233327, "lon": -73.9131520 }, + { "lat": 40.8235210, "lon": -73.9130370 }, + { "lat": 40.8234510, "lon": -73.9128158 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570212316, + "bounds": { + "minlat": 40.8261066, + "minlon": -73.9123597, + "maxlat": 40.8261322, + "maxlon": -73.9116931 + }, + "nodes": [ + 5482222769, + 12038478773, + 5482222768 + ], + "geometry": [ + { "lat": 40.8261066, "lon": -73.9116931 }, + { "lat": 40.8261106, "lon": -73.9117985 }, + { "lat": 40.8261322, "lon": -73.9123597 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212318, + "bounds": { + "minlat": 40.8271673, + "minlon": -73.9120406, + "maxlat": 40.8274514, + "maxlon": -73.9119186 + }, + "nodes": [ + 5482222772, + 7557648849, + 5482222770 + ], + "geometry": [ + { "lat": 40.8271673, "lon": -73.9120406 }, + { "lat": 40.8273087, "lon": -73.9119799 }, + { "lat": 40.8274514, "lon": -73.9119186 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212322, + "bounds": { + "minlat": 40.8223245, + "minlon": -73.9159352, + "maxlat": 40.8225960, + "maxlon": -73.9158034 + }, + "nodes": [ + 5482222776, + 5482222775 + ], + "geometry": [ + { "lat": 40.8225960, "lon": -73.9158034 }, + { "lat": 40.8223245, "lon": -73.9159352 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212324, + "bounds": { + "minlat": 40.8227246, + "minlon": -73.9161883, + "maxlat": 40.8233559, + "maxlon": -73.9158449 + }, + "nodes": [ + 5482222781, + 12040128172, + 7557632333, + 5482222777 + ], + "geometry": [ + { "lat": 40.8233559, "lon": -73.9158449 }, + { "lat": 40.8233046, "lon": -73.9158722 }, + { "lat": 40.8230382, "lon": -73.9160142 }, + { "lat": 40.8227246, "lon": -73.9161883 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212328, + "bounds": { + "minlat": 40.8236753, + "minlon": -73.9156629, + "maxlat": 40.8239876, + "maxlon": -73.9154984 + }, + "nodes": [ + 5482222783, + 12040069752, + 5482222782 + ], + "geometry": [ + { "lat": 40.8239876, "lon": -73.9154984 }, + { "lat": 40.8239383, "lon": -73.9155244 }, + { "lat": 40.8236753, "lon": -73.9156629 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570212330, + "bounds": { + "minlat": 40.8281567, + "minlon": -73.9134514, + "maxlat": 40.8283064, + "maxlon": -73.9133695 + }, + "nodes": [ + 5482222786, + 12038440184, + 5482222785 + ], + "geometry": [ + { "lat": 40.8283064, "lon": -73.9133695 }, + { "lat": 40.8282362, "lon": -73.9134079 }, + { "lat": 40.8281567, "lon": -73.9134514 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212338, + "bounds": { + "minlat": 40.8281641, + "minlon": -73.9163346, + "maxlat": 40.8287432, + "maxlon": -73.9160062 + }, + "nodes": [ + 5482222796, + 12038479073, + 5482222795 + ], + "geometry": [ + { "lat": 40.8281641, "lon": -73.9163346 }, + { "lat": 40.8282242, "lon": -73.9163005 }, + { "lat": 40.8287432, "lon": -73.9160062 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570212345, + "bounds": { + "minlat": 40.8270242, + "minlon": -73.9066489, + "maxlat": 40.8275350, + "maxlon": -73.9062095 + }, + "nodes": [ + 5482222806, + 5482222805, + 5482222804 + ], + "geometry": [ + { "lat": 40.8275350, "lon": -73.9066489 }, + { "lat": 40.8272333, "lon": -73.9062095 }, + { "lat": 40.8270242, "lon": -73.9064334 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570212351, + "bounds": { + "minlat": 40.8278958, + "minlon": -73.9091432, + "maxlat": 40.8280070, + "maxlon": -73.9087889 + }, + "nodes": [ + 5482222817, + 12038478848, + 5482222816 + ], + "geometry": [ + { "lat": 40.8278958, "lon": -73.9087889 }, + { "lat": 40.8279260, "lon": -73.9088847 }, + { "lat": 40.8280070, "lon": -73.9091432 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212353, + "bounds": { + "minlat": 40.8267017, + "minlon": -73.9083760, + "maxlat": 40.8270516, + "maxlon": -73.9081970 + }, + "nodes": [ + 5482222819, + 12038478826, + 5482222818 + ], + "geometry": [ + { "lat": 40.8267017, "lon": -73.9083760 }, + { "lat": 40.8267611, "lon": -73.9083456 }, + { "lat": 40.8270516, "lon": -73.9081970 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212360, + "bounds": { + "minlat": 40.8279838, + "minlon": -73.9078412, + "maxlat": 40.8282318, + "maxlon": -73.9077115 + }, + "nodes": [ + 5482223728, + 5482223727 + ], + "geometry": [ + { "lat": 40.8279838, "lon": -73.9078412 }, + { "lat": 40.8282318, "lon": -73.9077115 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212362, + "bounds": { + "minlat": 40.8298656, + "minlon": -73.9086436, + "maxlat": 40.8300830, + "maxlon": -73.9085206 + }, + "nodes": [ + 5482223731, + 5482223730 + ], + "geometry": [ + { "lat": 40.8300830, "lon": -73.9085206 }, + { "lat": 40.8298656, "lon": -73.9086436 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212364, + "bounds": { + "minlat": 40.8294082, + "minlon": -73.9089214, + "maxlat": 40.8296971, + "maxlon": -73.9087522 + }, + "nodes": [ + 5482223734, + 5482223733 + ], + "geometry": [ + { "lat": 40.8294082, "lon": -73.9089214 }, + { "lat": 40.8296971, "lon": -73.9087522 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212367, + "bounds": { + "minlat": 40.8284628, + "minlon": -73.9093433, + "maxlat": 40.8287331, + "maxlon": -73.9091921 + }, + "nodes": [ + 5482223738, + 12038478886, + 5482223737 + ], + "geometry": [ + { "lat": 40.8284628, "lon": -73.9093433 }, + { "lat": 40.8285207, "lon": -73.9093109 }, + { "lat": 40.8287331, "lon": -73.9091921 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212369, + "bounds": { + "minlat": 40.8271981, + "minlon": -73.9098839, + "maxlat": 40.8273865, + "maxlon": -73.9097822 + }, + "nodes": [ + 5482223740, + 12038440391, + 5482223739 + ], + "geometry": [ + { "lat": 40.8271981, "lon": -73.9098839 }, + { "lat": 40.8272457, "lon": -73.9098582 }, + { "lat": 40.8273865, "lon": -73.9097822 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212374, + "bounds": { + "minlat": 40.8297245, + "minlon": -73.9103312, + "maxlat": 40.8298112, + "maxlon": -73.9101657 + }, + "nodes": [ + 5482223746, + 13031144546, + 5482223745 + ], + "geometry": [ + { "lat": 40.8298112, "lon": -73.9103312 }, + { "lat": 40.8297709, "lon": -73.9102542 }, + { "lat": 40.8297245, "lon": -73.9101657 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212377, + "bounds": { + "minlat": 40.8292567, + "minlon": -73.9107476, + "maxlat": 40.8293723, + "maxlon": -73.9105533 + }, + "nodes": [ + 5482223749, + 13031144543, + 5482223748 + ], + "geometry": [ + { "lat": 40.8293723, "lon": -73.9107476 }, + { "lat": 40.8293272, "lon": -73.9106718 }, + { "lat": 40.8292567, "lon": -73.9105533 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212379, + "bounds": { + "minlat": 40.8295358, + "minlon": -73.9115162, + "maxlat": 40.8296393, + "maxlon": -73.9111750 + }, + "nodes": [ + 5482223752, + 12038379568, + 5482223751 + ], + "geometry": [ + { "lat": 40.8295358, "lon": -73.9111750 }, + { "lat": 40.8295783, "lon": -73.9113150 }, + { "lat": 40.8296393, "lon": -73.9115162 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212382, + "bounds": { + "minlat": 40.8302735, + "minlon": -73.9127156, + "maxlat": 40.8303924, + "maxlon": -73.9124094 + }, + "nodes": [ + 5482223754, + 12038440277, + 5482223753 + ], + "geometry": [ + { "lat": 40.8303924, "lon": -73.9127156 }, + { "lat": 40.8303626, "lon": -73.9126387 }, + { "lat": 40.8302735, "lon": -73.9124094 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570212385, + "bounds": { + "minlat": 40.8294389, + "minlon": -73.9132015, + "maxlat": 40.8295747, + "maxlon": -73.9127903 + }, + "nodes": [ + 5482223756, + 12038440284, + 5482223755 + ], + "geometry": [ + { "lat": 40.8295747, "lon": -73.9132015 }, + { "lat": 40.8295465, "lon": -73.9131160 }, + { "lat": 40.8294389, "lon": -73.9127903 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570212811, + "bounds": { + "minlat": 40.7528378, + "minlon": -73.9138889, + "maxlat": 40.7530630, + "maxlon": -73.9136650 + }, + "nodes": [ + 3569858101, + 9851251036, + 3569858102 + ], + "geometry": [ + { "lat": 40.7528378, "lon": -73.9138889 }, + { "lat": 40.7529114, "lon": -73.9138296 }, + { "lat": 40.7530630, "lon": -73.9136650 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "layer": "-1", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 570212812, + "bounds": { + "minlat": 40.7517207, + "minlon": -73.9142322, + "maxlat": 40.7526106, + "maxlon": -73.9139734 + }, + "nodes": [ + 5540348424, + 5871727215, + 5871727214, + 3569858098 + ], + "geometry": [ + { "lat": 40.7517207, "lon": -73.9142322 }, + { "lat": 40.7522899, "lon": -73.9141115 }, + { "lat": 40.7526106, "lon": -73.9140512 }, + { "lat": 40.7526036, "lon": -73.9139734 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212813, + "bounds": { + "minlat": 40.7502804, + "minlon": -73.9122335, + "maxlat": 40.7503498, + "maxlon": -73.9116181 + }, + "nodes": [ + 5482228842, + 5482228841 + ], + "geometry": [ + { "lat": 40.7503498, "lon": -73.9122335 }, + { "lat": 40.7502804, "lon": -73.9116181 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212820, + "bounds": { + "minlat": 40.7537767, + "minlon": -73.9128758, + "maxlat": 40.7539717, + "maxlon": -73.9124646 + }, + "nodes": [ + 3778141102, + 5482228867 + ], + "geometry": [ + { "lat": 40.7539717, "lon": -73.9128758 }, + { "lat": 40.7537767, "lon": -73.9124646 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570212821, + "bounds": { + "minlat": 40.7535545, + "minlon": -73.9126430, + "maxlat": 40.7546170, + "maxlon": -73.9117900 + }, + "nodes": [ + 3778141151, + 7660889403, + 3778141103, + 7660889408, + 5482228867, + 7660889399 + ], + "geometry": [ + { "lat": 40.7546170, "lon": -73.9117900 }, + { "lat": 40.7543739, "lon": -73.9119851 }, + { "lat": 40.7540932, "lon": -73.9122106 }, + { "lat": 40.7538637, "lon": -73.9123948 }, + { "lat": 40.7537767, "lon": -73.9124646 }, + { "lat": 40.7535545, "lon": -73.9126430 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570212826, + "bounds": { + "minlat": 40.7536821, + "minlon": -73.9124646, + "maxlat": 40.7537767, + "maxlon": -73.9122661 + }, + "nodes": [ + 5482228867, + 8593804511, + 5482228866 + ], + "geometry": [ + { "lat": 40.7537767, "lon": -73.9124646 }, + { "lat": 40.7537207, "lon": -73.9123401 }, + { "lat": 40.7536821, "lon": -73.9122661 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570213038, + "bounds": { + "minlat": 40.7359615, + "minlon": -73.9342244, + "maxlat": 40.7360660, + "maxlon": -73.9339367 + }, + "nodes": [ + 5482230598, + 5482230597 + ], + "geometry": [ + { "lat": 40.7360660, "lon": -73.9339367 }, + { "lat": 40.7359615, "lon": -73.9342244 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570213045, + "bounds": { + "minlat": 40.7373152, + "minlon": -73.9294892, + "maxlat": 40.7377186, + "maxlon": -73.9293397 + }, + "nodes": [ + 5482230620, + 10743722316, + 5482230618, + 10743722318, + 5482230617 + ], + "geometry": [ + { "lat": 40.7373152, "lon": -73.9294384 }, + { "lat": 40.7373614, "lon": -73.9294159 }, + { "lat": 40.7375179, "lon": -73.9293397 }, + { "lat": 40.7376585, "lon": -73.9294445 }, + { "lat": 40.7377186, "lon": -73.9294892 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570213046, + "bounds": { + "minlat": 40.7374208, + "minlon": -73.9287769, + "maxlat": 40.7374827, + "maxlon": -73.9283931 + }, + "nodes": [ + 5482231122, + 10743722314, + 5482231121 + ], + "geometry": [ + { "lat": 40.7374208, "lon": -73.9283931 }, + { "lat": 40.7374338, "lon": -73.9284736 }, + { "lat": 40.7374827, "lon": -73.9287769 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214743, + "bounds": { + "minlat": 40.7358485, + "minlon": -73.9375067, + "maxlat": 40.7361369, + "maxlon": -73.9373202 + }, + "nodes": [ + 5482246004, + 5482246000 + ], + "geometry": [ + { "lat": 40.7358485, "lon": -73.9373202 }, + { "lat": 40.7361369, "lon": -73.9375067 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214747, + "bounds": { + "minlat": 40.7379664, + "minlon": -73.9352638, + "maxlat": 40.7380152, + "maxlon": -73.9349245 + }, + "nodes": [ + 5482274837, + 10743722194, + 6744726740, + 5482246008 + ], + "geometry": [ + { "lat": 40.7379664, "lon": -73.9349245 }, + { "lat": 40.7379829, "lon": -73.9350752 }, + { "lat": 40.7379866, "lon": -73.9351085 }, + { "lat": 40.7380152, "lon": -73.9352638 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570214748, + "bounds": { + "minlat": 40.7387746, + "minlon": -73.9374351, + "maxlat": 40.7388418, + "maxlon": -73.9368835 + }, + "nodes": [ + 5482246011, + 5482246010 + ], + "geometry": [ + { "lat": 40.7387746, "lon": -73.9368835 }, + { "lat": 40.7388418, "lon": -73.9374351 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214750, + "bounds": { + "minlat": 40.7386279, + "minlon": -73.9374632, + "maxlat": 40.7387112, + "maxlon": -73.9366868 + }, + "nodes": [ + 5482246016, + 10762203013, + 5482246014, + 5482246015 + ], + "geometry": [ + { "lat": 40.7386279, "lon": -73.9366868 }, + { "lat": 40.7386368, "lon": -73.9367743 }, + { "lat": 40.7386504, "lon": -73.9369074 }, + { "lat": 40.7387112, "lon": -73.9374632 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214801, + "bounds": { + "minlat": 40.8108289, + "minlon": -73.9305268, + "maxlat": 40.8111409, + "maxlon": -73.9301035 + }, + "nodes": [ + 5482247569, + 13020122442, + 7554088546, + 5482247572, + 11882279908, + 5482247573 + ], + "geometry": [ + { "lat": 40.8111409, "lon": -73.9305268 }, + { "lat": 40.8110943, "lon": -73.9304644 }, + { "lat": 40.8110317, "lon": -73.9303807 }, + { "lat": 40.8109339, "lon": -73.9302497 }, + { "lat": 40.8108706, "lon": -73.9301615 }, + { "lat": 40.8108289, "lon": -73.9301035 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214802, + "bounds": { + "minlat": 40.8111092, + "minlon": -73.9301696, + "maxlat": 40.8114143, + "maxlon": -73.9297415 + }, + "nodes": [ + 5482247575, + 13020122441, + 7554088545, + 5482247571, + 11882279907, + 7554088547 + ], + "geometry": [ + { "lat": 40.8114143, "lon": -73.9301696 }, + { "lat": 40.8113743, "lon": -73.9301135 }, + { "lat": 40.8113190, "lon": -73.9300359 }, + { "lat": 40.8112142, "lon": -73.9298889 }, + { "lat": 40.8111506, "lon": -73.9297996 }, + { "lat": 40.8111092, "lon": -73.9297415 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214803, + "bounds": { + "minlat": 40.8109339, + "minlon": -73.9302497, + "maxlat": 40.8112142, + "maxlon": -73.9298889 + }, + "nodes": [ + 5482247572, + 5482247571 + ], + "geometry": [ + { "lat": 40.8109339, "lon": -73.9302497 }, + { "lat": 40.8112142, "lon": -73.9298889 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214805, + "bounds": { + "minlat": 40.8120868, + "minlon": -73.9291579, + "maxlat": 40.8121834, + "maxlon": -73.9290203 + }, + "nodes": [ + 5482247578, + 13020122437, + 5482247577 + ], + "geometry": [ + { "lat": 40.8121834, "lon": -73.9291579 }, + { "lat": 40.8121400, "lon": -73.9290961 }, + { "lat": 40.8120868, "lon": -73.9290203 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214809, + "bounds": { + "minlat": 40.8084342, + "minlon": -73.9311272, + "maxlat": 40.8086122, + "maxlon": -73.9308935 + }, + "nodes": [ + 7554071444, + 11881123102, + 5482247591 + ], + "geometry": [ + { "lat": 40.8084342, "lon": -73.9308935 }, + { "lat": 40.8084784, "lon": -73.9309516 }, + { "lat": 40.8086122, "lon": -73.9311272 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214812, + "bounds": { + "minlat": 40.8099126, + "minlon": -73.9323144, + "maxlat": 40.8105241, + "maxlon": -73.9315134 + }, + "nodes": [ + 5482247611, + 5482247610 + ], + "geometry": [ + { "lat": 40.8099126, "lon": -73.9315134 }, + { "lat": 40.8105241, "lon": -73.9323144 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570214816, + "bounds": { + "minlat": 40.8115934, + "minlon": -73.9309811, + "maxlat": 40.8118539, + "maxlon": -73.9306035 + }, + "nodes": [ + 5482250723, + 5482250721 + ], + "geometry": [ + { "lat": 40.8115934, "lon": -73.9309811 }, + { "lat": 40.8118539, "lon": -73.9306035 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214819, + "bounds": { + "minlat": 40.8130992, + "minlon": -73.9297664, + "maxlat": 40.8132282, + "maxlon": -73.9294736 + }, + "nodes": [ + 5482250734, + 13005731151, + 5482250733 + ], + "geometry": [ + { "lat": 40.8132282, "lon": -73.9297664 }, + { "lat": 40.8131921, "lon": -73.9296844 }, + { "lat": 40.8130992, "lon": -73.9294736 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214821, + "bounds": { + "minlat": 40.8139756, + "minlon": -73.9291714, + "maxlat": 40.8140935, + "maxlon": -73.9288500 + }, + "nodes": [ + 5482250738, + 13005731172, + 5482250735 + ], + "geometry": [ + { "lat": 40.8140935, "lon": -73.9291714 }, + { "lat": 40.8140656, "lon": -73.9290952 }, + { "lat": 40.8139756, "lon": -73.9288500 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214822, + "bounds": { + "minlat": 40.8140402, + "minlon": -73.9291295, + "maxlat": 40.8141534, + "maxlon": -73.9288293 + }, + "nodes": [ + 5482250740, + 13005731173, + 5482250739 + ], + "geometry": [ + { "lat": 40.8141534, "lon": -73.9291295 }, + { "lat": 40.8141253, "lon": -73.9290549 }, + { "lat": 40.8140402, "lon": -73.9288293 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214823, + "bounds": { + "minlat": 40.8137412, + "minlon": -73.9293487, + "maxlat": 40.8138360, + "maxlon": -73.9290981 + }, + "nodes": [ + 2409003137, + 13005731174, + 5482250742 + ], + "geometry": [ + { "lat": 40.8138360, "lon": -73.9293487 }, + { "lat": 40.8138063, "lon": -73.9292701 }, + { "lat": 40.8137412, "lon": -73.9290981 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214824, + "bounds": { + "minlat": 40.8137688, + "minlon": -73.9309213, + "maxlat": 40.8139513, + "maxlon": -73.9303736 + }, + "nodes": [ + 5482250744, + 13006264058, + 13020244920, + 5482250743 + ], + "geometry": [ + { "lat": 40.8139513, "lon": -73.9309213 }, + { "lat": 40.8139284, "lon": -73.9308525 }, + { "lat": 40.8137998, "lon": -73.9304665 }, + { "lat": 40.8137688, "lon": -73.9303736 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570214827, + "bounds": { + "minlat": 40.8090984, + "minlon": -73.9365815, + "maxlat": 40.8092396, + "maxlon": -73.9362567 + }, + "nodes": [ + 5482250750, + 10171077368, + 5482250749 + ], + "geometry": [ + { "lat": 40.8090984, "lon": -73.9362567 }, + { "lat": 40.8091314, "lon": -73.9363324 }, + { "lat": 40.8092396, "lon": -73.9365815 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570217714, + "bounds": { + "minlat": 40.7259772, + "minlon": -73.9375176, + "maxlat": 40.7259965, + "maxlon": -73.9372963 + }, + "nodes": [ + 5482263267, + 5482263264 + ], + "geometry": [ + { "lat": 40.7259772, "lon": -73.9375176 }, + { "lat": 40.7259965, "lon": -73.9372963 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570217716, + "bounds": { + "minlat": 40.7257505, + "minlon": -73.9375511, + "maxlat": 40.7262761, + "maxlon": -73.9375176 + }, + "nodes": [ + 5482263268, + 9353866461, + 5482263267, + 5482263266, + 5482263265 + ], + "geometry": [ + { "lat": 40.7262761, "lon": -73.9375491 }, + { "lat": 40.7262052, "lon": -73.9375416 }, + { "lat": 40.7259772, "lon": -73.9375176 }, + { "lat": 40.7258989, "lon": -73.9375511 }, + { "lat": 40.7257505, "lon": -73.9375323 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570217725, + "bounds": { + "minlat": 40.7266723, + "minlon": -73.9361273, + "maxlat": 40.7267191, + "maxlon": -73.9356212 + }, + "nodes": [ + 5482263280, + 9789356941, + 7833503759, + 5482263279 + ], + "geometry": [ + { "lat": 40.7266723, "lon": -73.9361273 }, + { "lat": 40.7266801, "lon": -73.9360369 }, + { "lat": 40.7266973, "lon": -73.9358591 }, + { "lat": 40.7267191, "lon": -73.9356212 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570217727, + "bounds": { + "minlat": 40.7259314, + "minlon": -73.9351803, + "maxlat": 40.7260658, + "maxlon": -73.9350123 + }, + "nodes": [ + 5482263282, + 9789356912, + 5482263281 + ], + "geometry": [ + { "lat": 40.7260658, "lon": -73.9351803 }, + { "lat": 40.7260249, "lon": -73.9351292 }, + { "lat": 40.7259314, "lon": -73.9350123 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570217729, + "bounds": { + "minlat": 40.7260280, + "minlon": -73.9350620, + "maxlat": 40.7261521, + "maxlon": -73.9348970 + }, + "nodes": [ + 5482263284, + 9789356913, + 5482263283 + ], + "geometry": [ + { "lat": 40.7261521, "lon": -73.9350620 }, + { "lat": 40.7261166, "lon": -73.9350148 }, + { "lat": 40.7260280, "lon": -73.9348970 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570217731, + "bounds": { + "minlat": 40.7267994, + "minlon": -73.9338255, + "maxlat": 40.7271530, + "maxlon": -73.9332944 + }, + "nodes": [ + 5482263287, + 7833503769, + 5482263285 + ], + "geometry": [ + { "lat": 40.7271530, "lon": -73.9332944 }, + { "lat": 40.7269563, "lon": -73.9335899 }, + { "lat": 40.7267994, "lon": -73.9338255 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570217733, + "bounds": { + "minlat": 40.7266830, + "minlon": -73.9336823, + "maxlat": 40.7270138, + "maxlon": -73.9331952 + }, + "nodes": [ + 5482263289, + 7833503753, + 7833503770, + 5482263288 + ], + "geometry": [ + { "lat": 40.7266830, "lon": -73.9336823 }, + { "lat": 40.7267900, "lon": -73.9335247 }, + { "lat": 40.7268376, "lon": -73.9334547 }, + { "lat": 40.7270138, "lon": -73.9331952 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570217735, + "bounds": { + "minlat": 40.7267302, + "minlon": -73.9335007, + "maxlat": 40.7268594, + "maxlon": -73.9330249 + }, + "nodes": [ + 5482263302, + 7833503754, + 5482263290 + ], + "geometry": [ + { "lat": 40.7267302, "lon": -73.9335007 }, + { "lat": 40.7267654, "lon": -73.9333725 }, + { "lat": 40.7268594, "lon": -73.9330249 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570217737, + "bounds": { + "minlat": 40.7265837, + "minlon": -73.9334398, + "maxlat": 40.7267008, + "maxlon": -73.9329538 + }, + "nodes": [ + 5482263293, + 5482263292 + ], + "geometry": [ + { "lat": 40.7267008, "lon": -73.9329538 }, + { "lat": 40.7265837, "lon": -73.9334398 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570217739, + "bounds": { + "minlat": 40.7263962, + "minlon": -73.9333619, + "maxlat": 40.7265219, + "maxlon": -73.9328773 + }, + "nodes": [ + 5482263295, + 5482263294 + ], + "geometry": [ + { "lat": 40.7263962, "lon": -73.9333619 }, + { "lat": 40.7265219, "lon": -73.9328773 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570217741, + "bounds": { + "minlat": 40.7262429, + "minlon": -73.9332982, + "maxlat": 40.7263705, + "maxlon": -73.9327942 + }, + "nodes": [ + 5482263297, + 7833503750, + 5482263296 + ], + "geometry": [ + { "lat": 40.7263705, "lon": -73.9327942 }, + { "lat": 40.7263120, "lon": -73.9330413 }, + { "lat": 40.7262429, "lon": -73.9332982 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570217753, + "bounds": { + "minlat": 40.7279096, + "minlon": -73.9342091, + "maxlat": 40.7282670, + "maxlon": -73.9325128 + }, + "nodes": [ + 42476687, + 9789356954, + 5482263317, + 5482263315 + ], + "geometry": [ + { "lat": 40.7279096, "lon": -73.9325128 }, + { "lat": 40.7279748, "lon": -73.9325738 }, + { "lat": 40.7280312, "lon": -73.9326265 }, + { "lat": 40.7282670, "lon": -73.9342091 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570218644, + "bounds": { + "minlat": 40.8122952, + "minlon": -73.9284054, + "maxlat": 40.8124227, + "maxlon": -73.9282203 + }, + "nodes": [ + 5482271961, + 13040572389, + 5482271960 + ], + "geometry": [ + { "lat": 40.8122952, "lon": -73.9282203 }, + { "lat": 40.8123521, "lon": -73.9283029 }, + { "lat": 40.8124227, "lon": -73.9284054 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570218645, + "bounds": { + "minlat": 40.8101850, + "minlon": -73.9273794, + "maxlat": 40.8106115, + "maxlon": -73.9270830 + }, + "nodes": [ + 5482271964, + 7553826304, + 5482271963 + ], + "geometry": [ + { "lat": 40.8106115, "lon": -73.9270830 }, + { "lat": 40.8105780, "lon": -73.9271068 }, + { "lat": 40.8101850, "lon": -73.9273794 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570218650, + "bounds": { + "minlat": 40.8102871, + "minlon": -73.9292510, + "maxlat": 40.8105805, + "maxlon": -73.9288809 + }, + "nodes": [ + 5482271987, + 7554077972, + 5482271985 + ], + "geometry": [ + { "lat": 40.8105805, "lon": -73.9288809 }, + { "lat": 40.8104550, "lon": -73.9290392 }, + { "lat": 40.8102871, "lon": -73.9292510 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570220542, + "bounds": { + "minlat": 40.7997368, + "minlon": -73.9363372, + "maxlat": 40.7999541, + "maxlon": -73.9362006 + }, + "nodes": [ + 5482291246, + 13239384172, + 7927319025, + 5482291245, + 5482291244 + ], + "geometry": [ + { "lat": 40.7997368, "lon": -73.9363372 }, + { "lat": 40.7997975, "lon": -73.9362923 }, + { "lat": 40.7998203, "lon": -73.9362754 }, + { "lat": 40.7999196, "lon": -73.9362006 }, + { "lat": 40.7999541, "lon": -73.9362529 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570220543, + "bounds": { + "minlat": 40.8003886, + "minlon": -73.9363468, + "maxlat": 40.8004913, + "maxlon": -73.9361425 + }, + "nodes": [ + 5482291249, + 13239384171, + 6858431855, + 5482291248, + 5482291247 + ], + "geometry": [ + { "lat": 40.8004913, "lon": -73.9361425 }, + { "lat": 40.8004362, "lon": -73.9361816 }, + { "lat": 40.8004171, "lon": -73.9361952 }, + { "lat": 40.8003886, "lon": -73.9362140 }, + { "lat": 40.8004434, "lon": -73.9363468 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570220544, + "bounds": { + "minlat": 40.8010312, + "minlon": -73.9360826, + "maxlat": 40.8012259, + "maxlon": -73.9359475 + }, + "nodes": [ + 5482291251, + 13239438861, + 6845387665, + 5482291250 + ], + "geometry": [ + { "lat": 40.8012259, "lon": -73.9359475 }, + { "lat": 40.8011845, "lon": -73.9359794 }, + { "lat": 40.8011650, "lon": -73.9359944 }, + { "lat": 40.8010312, "lon": -73.9360826 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570220546, + "bounds": { + "minlat": 40.8027226, + "minlon": -73.9378009, + "maxlat": 40.8030536, + "maxlon": -73.9374192 + }, + "nodes": [ + 5482291259, + 10170762159, + 6861638782, + 5482291258, + 5482291257 + ], + "geometry": [ + { "lat": 40.8027226, "lon": -73.9375435 }, + { "lat": 40.8027836, "lon": -73.9374996 }, + { "lat": 40.8028026, "lon": -73.9374859 }, + { "lat": 40.8028950, "lon": -73.9374192 }, + { "lat": 40.8030536, "lon": -73.9378009 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570220547, + "bounds": { + "minlat": 40.8047593, + "minlon": -73.9342956, + "maxlat": 40.8052644, + "maxlon": -73.9339354 + }, + "nodes": [ + 5482291261, + 10166326197, + 5482291260 + ], + "geometry": [ + { "lat": 40.8047593, "lon": -73.9342956 }, + { "lat": 40.8048140, "lon": -73.9342565 }, + { "lat": 40.8052644, "lon": -73.9339354 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570220551, + "bounds": { + "minlat": 40.7978170, + "minlon": -73.9336936, + "maxlat": 40.7980901, + "maxlon": -73.9334916 + }, + "nodes": [ + 5482291278, + 13327531964, + 5482291277 + ], + "geometry": [ + { "lat": 40.7978170, "lon": -73.9336936 }, + { "lat": 40.7978512, "lon": -73.9336683 }, + { "lat": 40.7980901, "lon": -73.9334916 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570220552, + "bounds": { + "minlat": 40.7983866, + "minlon": -73.9366702, + "maxlat": 40.7985168, + "maxlon": -73.9363508 + }, + "nodes": [ + 5482291280, + 6175905191, + 13327501089, + 5482291279 + ], + "geometry": [ + { "lat": 40.7985168, "lon": -73.9366702 }, + { "lat": 40.7984866, "lon": -73.9365959 }, + { "lat": 40.7984763, "lon": -73.9365706 }, + { "lat": 40.7983866, "lon": -73.9363508 } + ], + "tags": { + "access": "no", + "highway": "service", + "name": "Savior Street" + } +}, +{ + "type": "way", + "id": 570220553, + "bounds": { + "minlat": 40.7979140, + "minlon": -73.9358873, + "maxlat": 40.7981541, + "maxlon": -73.9357312 + }, + "nodes": [ + 5482291282, + 13327501088, + 5482291281 + ], + "geometry": [ + { "lat": 40.7979140, "lon": -73.9358873 }, + { "lat": 40.7979486, "lon": -73.9358648 }, + { "lat": 40.7981541, "lon": -73.9357312 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570220554, + "bounds": { + "minlat": 40.7976363, + "minlon": -73.9365426, + "maxlat": 40.7979907, + "maxlon": -73.9360691 + }, + "nodes": [ + 5482291285, + 10166326182, + 5482291284, + 5482291283 + ], + "geometry": [ + { "lat": 40.7979907, "lon": -73.9360691 }, + { "lat": 40.7979441, "lon": -73.9361008 }, + { "lat": 40.7976363, "lon": -73.9363106 }, + { "lat": 40.7977419, "lon": -73.9365426 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570220561, + "bounds": { + "minlat": 40.8051213, + "minlon": -73.9359659, + "maxlat": 40.8053844, + "maxlon": -73.9357787 + }, + "nodes": [ + 5482291305, + 10169411266, + 5482291304 + ], + "geometry": [ + { "lat": 40.8053844, "lon": -73.9357787 }, + { "lat": 40.8053322, "lon": -73.9358158 }, + { "lat": 40.8051213, "lon": -73.9359659 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570220562, + "bounds": { + "minlat": 40.8047933, + "minlon": -73.9363007, + "maxlat": 40.8050726, + "maxlon": -73.9360946 + }, + "nodes": [ + 5482291307, + 10169411317, + 5482291306 + ], + "geometry": [ + { "lat": 40.8047933, "lon": -73.9363007 }, + { "lat": 40.8048474, "lon": -73.9362608 }, + { "lat": 40.8050726, "lon": -73.9360946 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570222271, + "bounds": { + "minlat": 40.7196036, + "minlon": -73.9354774, + "maxlat": 40.7196664, + "maxlon": -73.9352163 + }, + "nodes": [ + 5482302925, + 5482302924 + ], + "geometry": [ + { "lat": 40.7196036, "lon": -73.9354774 }, + { "lat": 40.7196664, "lon": -73.9352163 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570222274, + "bounds": { + "minlat": 40.7201362, + "minlon": -73.9360079, + "maxlat": 40.7205724, + "maxlon": -73.9343646 + }, + "nodes": [ + 5482302934, + 9937798003, + 7707192825, + 10689773964, + 10689773951, + 5482302933 + ], + "geometry": [ + { "lat": 40.7201362, "lon": -73.9360079 }, + { "lat": 40.7201696, "lon": -73.9358801 }, + { "lat": 40.7202718, "lon": -73.9354882 }, + { "lat": 40.7202887, "lon": -73.9354281 }, + { "lat": 40.7205021, "lon": -73.9346272 }, + { "lat": 40.7205724, "lon": -73.9343646 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570222275, + "bounds": { + "minlat": 40.7193557, + "minlon": -73.9267676, + "maxlat": 40.7201322, + "maxlon": -73.9263989 + }, + "nodes": [ + 5482302936, + 10689800954, + 9937797986, + 5482302935 + ], + "geometry": [ + { "lat": 40.7201322, "lon": -73.9267676 }, + { "lat": 40.7196037, "lon": -73.9265192 }, + { "lat": 40.7194631, "lon": -73.9264508 }, + { "lat": 40.7193557, "lon": -73.9263989 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570222281, + "bounds": { + "minlat": 40.7190416, + "minlon": -73.9294918, + "maxlat": 40.7192849, + "maxlon": -73.9285239 + }, + "nodes": [ + 5482302945, + 5482302946 + ], + "geometry": [ + { "lat": 40.7192849, "lon": -73.9285239 }, + { "lat": 40.7190416, "lon": -73.9294918 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570222285, + "bounds": { + "minlat": 40.7187964, + "minlon": -73.9295807, + "maxlat": 40.7190980, + "maxlon": -73.9284415 + }, + "nodes": [ + 5482302957, + 13084420335, + 13084420329, + 5482302950 + ], + "geometry": [ + { "lat": 40.7187964, "lon": -73.9295807 }, + { "lat": 40.7188283, "lon": -73.9294573 }, + { "lat": 40.7188412, "lon": -73.9294074 }, + { "lat": 40.7190980, "lon": -73.9284415 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570222289, + "bounds": { + "minlat": 40.7203678, + "minlon": -73.9287695, + "maxlat": 40.7204755, + "maxlon": -73.9283404 + }, + "nodes": [ + 5482302977, + 5482302968 + ], + "geometry": [ + { "lat": 40.7203678, "lon": -73.9287695 }, + { "lat": 40.7204755, "lon": -73.9283404 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570222290, + "bounds": { + "minlat": 40.7195221, + "minlon": -73.9300221, + "maxlat": 40.7197169, + "maxlon": -73.9292564 + }, + "nodes": [ + 5482302970, + 5482302969 + ], + "geometry": [ + { "lat": 40.7197169, "lon": -73.9292564 }, + { "lat": 40.7195221, "lon": -73.9300221 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570222291, + "bounds": { + "minlat": 40.7195401, + "minlon": -73.9294331, + "maxlat": 40.7200965, + "maxlon": -73.9291766 + }, + "nodes": [ + 5482302989, + 6348483237, + 5482302970, + 5482302971 + ], + "geometry": [ + { "lat": 40.7200965, "lon": -73.9294331 }, + { "lat": 40.7199090, "lon": -73.9293428 }, + { "lat": 40.7197169, "lon": -73.9292564 }, + { "lat": 40.7195401, "lon": -73.9291766 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570222292, + "bounds": { + "minlat": 40.7195944, + "minlon": -73.9292173, + "maxlat": 40.7201507, + "maxlon": -73.9289567 + }, + "nodes": [ + 5482302973, + 5482302972 + ], + "geometry": [ + { "lat": 40.7195944, "lon": -73.9289567 }, + { "lat": 40.7201507, "lon": -73.9292173 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570222293, + "bounds": { + "minlat": 40.7196289, + "minlon": -73.9291090, + "maxlat": 40.7202450, + "maxlon": -73.9288172 + }, + "nodes": [ + 5482302975, + 5482302974 + ], + "geometry": [ + { "lat": 40.7202450, "lon": -73.9291090 }, + { "lat": 40.7196289, "lon": -73.9288172 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570222295, + "bounds": { + "minlat": 40.7190037, + "minlon": -73.9313471, + "maxlat": 40.7203134, + "maxlon": -73.9260473 + }, + "nodes": [ + 7238128895, + 5482302936, + 7707191990, + 7707191986, + 7707191985, + 5482302974, + 5482302973, + 5482302971, + 5482302980, + 6348483248, + 5482302979 + ], + "geometry": [ + { "lat": 40.7203134, "lon": -73.9260473 }, + { "lat": 40.7201322, "lon": -73.9267676 }, + { "lat": 40.7199181, "lon": -73.9276469 }, + { "lat": 40.7197961, "lon": -73.9281408 }, + { "lat": 40.7196832, "lon": -73.9285977 }, + { "lat": 40.7196289, "lon": -73.9288172 }, + { "lat": 40.7195944, "lon": -73.9289567 }, + { "lat": 40.7195401, "lon": -73.9291766 }, + { "lat": 40.7193502, "lon": -73.9299451 }, + { "lat": 40.7191266, "lon": -73.9308400 }, + { "lat": 40.7190037, "lon": -73.9313471 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570222297, + "bounds": { + "minlat": 40.7185590, + "minlon": -73.9295807, + "maxlat": 40.7187964, + "maxlon": -73.9294837 + }, + "nodes": [ + 5482302993, + 9937797988, + 13084420334, + 5482302957 + ], + "geometry": [ + { "lat": 40.7185590, "lon": -73.9294837 }, + { "lat": 40.7186641, "lon": -73.9295316 }, + { "lat": 40.7186921, "lon": -73.9295420 }, + { "lat": 40.7187964, "lon": -73.9295807 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570222308, + "bounds": { + "minlat": 40.7172634, + "minlon": -73.9330837, + "maxlat": 40.7174253, + "maxlon": -73.9330075 + }, + "nodes": [ + 5482301708, + 5482301709 + ], + "geometry": [ + { "lat": 40.7172634, "lon": -73.9330075 }, + { "lat": 40.7174253, "lon": -73.9330837 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570222312, + "bounds": { + "minlat": 40.7137107, + "minlon": -73.9337815, + "maxlat": 40.7144072, + "maxlon": -73.9334928 + }, + "nodes": [ + 5482301714, + 5838943042, + 9733446179, + 9733446177, + 5482301713, + 9733446178, + 9733446180, + 10031328533, + 10031328534, + 10031328536, + 10031328538, + 10031328540, + 10031328542, + 10031328530, + 8842929827, + 5482301712 + ], + "geometry": [ + { "lat": 40.7144072, "lon": -73.9337815 }, + { "lat": 40.7143329, "lon": -73.9337743 }, + { "lat": 40.7143080, "lon": -73.9337719 }, + { "lat": 40.7142805, "lon": -73.9337675 }, + { "lat": 40.7142622, "lon": -73.9337620 }, + { "lat": 40.7142437, "lon": -73.9337558 }, + { "lat": 40.7142212, "lon": -73.9337462 }, + { "lat": 40.7142013, "lon": -73.9337363 }, + { "lat": 40.7141573, "lon": -73.9337143 }, + { "lat": 40.7140940, "lon": -73.9336830 }, + { "lat": 40.7140331, "lon": -73.9336528 }, + { "lat": 40.7139707, "lon": -73.9336218 }, + { "lat": 40.7139107, "lon": -73.9335920 }, + { "lat": 40.7138683, "lon": -73.9335709 }, + { "lat": 40.7138086, "lon": -73.9335413 }, + { "lat": 40.7137107, "lon": -73.9334928 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570224698, + "bounds": { + "minlat": 40.7136635, + "minlon": -73.9151110, + "maxlat": 40.7138988, + "maxlon": -73.9146965 + }, + "nodes": [ + 5482319555, + 9755789876, + 5482319554 + ], + "geometry": [ + { "lat": 40.7138988, "lon": -73.9151110 }, + { "lat": 40.7138368, "lon": -73.9149906 }, + { "lat": 40.7136635, "lon": -73.9146965 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570224932, + "bounds": { + "minlat": 40.7968882, + "minlon": -73.9346852, + "maxlat": 40.7969940, + "maxlon": -73.9344242 + }, + "nodes": [ + 5748388923, + 8797068770, + 9372214670, + 5482321448 + ], + "geometry": [ + { "lat": 40.7969940, "lon": -73.9346852 }, + { "lat": 40.7969424, "lon": -73.9345577 }, + { "lat": 40.7969373, "lon": -73.9345451 }, + { "lat": 40.7968882, "lon": -73.9344242 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570225042, + "bounds": { + "minlat": 40.7132574, + "minlon": -73.9118391, + "maxlat": 40.7136580, + "maxlon": -73.9118093 + }, + "nodes": [ + 5482321047, + 9755751809, + 5482321046 + ], + "geometry": [ + { "lat": 40.7132574, "lon": -73.9118391 }, + { "lat": 40.7133347, "lon": -73.9118333 }, + { "lat": 40.7136580, "lon": -73.9118093 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570225629, + "bounds": { + "minlat": 40.7847238, + "minlon": -73.9283504, + "maxlat": 40.7850064, + "maxlon": -73.9279179 + }, + "nodes": [ + 5482325253, + 9253748804, + 5482325252, + 5482325251, + 5482325250, + 5482325249, + 5482325248, + 5482325247 + ], + "geometry": [ + { "lat": 40.7847238, "lon": -73.9279428 }, + { "lat": 40.7847999, "lon": -73.9279303 }, + { "lat": 40.7848755, "lon": -73.9279179 }, + { "lat": 40.7849537, "lon": -73.9279447 }, + { "lat": 40.7850064, "lon": -73.9280882 }, + { "lat": 40.7849923, "lon": -73.9282103 }, + { "lat": 40.7849425, "lon": -73.9282773 }, + { "lat": 40.7848968, "lon": -73.9283504 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570225857, + "bounds": { + "minlat": 40.8128841, + "minlon": -73.9265064, + "maxlat": 40.8130506, + "maxlon": -73.9263951 + }, + "nodes": [ + 5482327051, + 5482327050 + ], + "geometry": [ + { "lat": 40.8130506, "lon": -73.9263951 }, + { "lat": 40.8128841, "lon": -73.9265064 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570225858, + "bounds": { + "minlat": 40.8128441, + "minlon": -73.9266244, + "maxlat": 40.8131454, + "maxlon": -73.9258954 + }, + "nodes": [ + 5482327052, + 12040837129, + 5482327053, + 5482327051, + 5482327056 + ], + "geometry": [ + { "lat": 40.8128441, "lon": -73.9258954 }, + { "lat": 40.8128995, "lon": -73.9260295 }, + { "lat": 40.8129597, "lon": -73.9261750 }, + { "lat": 40.8130506, "lon": -73.9263951 }, + { "lat": 40.8131454, "lon": -73.9266244 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570225859, + "bounds": { + "minlat": 40.8127917, + "minlon": -73.9267378, + "maxlat": 40.8129779, + "maxlon": -73.9262872 + }, + "nodes": [ + 5482327055, + 5482327050, + 5482327054 + ], + "geometry": [ + { "lat": 40.8129779, "lon": -73.9267378 }, + { "lat": 40.8128841, "lon": -73.9265064 }, + { "lat": 40.8127917, "lon": -73.9262872 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570225860, + "bounds": { + "minlat": 40.8129779, + "minlon": -73.9267378, + "maxlat": 40.8131454, + "maxlon": -73.9266244 + }, + "nodes": [ + 5482327056, + 5482327055 + ], + "geometry": [ + { "lat": 40.8131454, "lon": -73.9266244 }, + { "lat": 40.8129779, "lon": -73.9267378 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570225861, + "bounds": { + "minlat": 40.8131454, + "minlon": -73.9266244, + "maxlat": 40.8132722, + "maxlon": -73.9265449 + }, + "nodes": [ + 5482327057, + 13040633202, + 5482327056 + ], + "geometry": [ + { "lat": 40.8132722, "lon": -73.9265449 }, + { "lat": 40.8132207, "lon": -73.9265772 }, + { "lat": 40.8131454, "lon": -73.9266244 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570226070, + "bounds": { + "minlat": 40.8080291, + "minlon": -73.9870812, + "maxlat": 40.8081947, + "maxlon": -73.9869583 + }, + "nodes": [ + 5482328532, + 3480364167 + ], + "geometry": [ + { "lat": 40.8081947, "lon": -73.9869583 }, + { "lat": 40.8080291, "lon": -73.9870812 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570226071, + "bounds": { + "minlat": 40.8063148, + "minlon": -73.9904477, + "maxlat": 40.8064223, + "maxlon": -73.9904064 + }, + "nodes": [ + 3477651020, + 3480327310 + ], + "geometry": [ + { "lat": 40.8064223, "lon": -73.9904064 }, + { "lat": 40.8063148, "lon": -73.9904477 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226073, + "bounds": { + "minlat": 40.8061700, + "minlon": -73.9897604, + "maxlat": 40.8062308, + "maxlon": -73.9895930 + }, + "nodes": [ + 3480351543, + 1239453889 + ], + "geometry": [ + { "lat": 40.8061700, "lon": -73.9895930 }, + { "lat": 40.8062308, "lon": -73.9897604 } + ], + "tags": { + "highway": "residential", + "name": "City Place" + } +}, +{ + "type": "way", + "id": 570226076, + "bounds": { + "minlat": 40.8101274, + "minlon": -73.9877240, + "maxlat": 40.8102541, + "maxlon": -73.9875136 + }, + "nodes": [ + 103220231, + 5482328542, + 8370423402, + 5482328541 + ], + "geometry": [ + { "lat": 40.8101274, "lon": -73.9875136 }, + { "lat": 40.8101837, "lon": -73.9875547 }, + { "lat": 40.8102154, "lon": -73.9876308 }, + { "lat": 40.8102541, "lon": -73.9877240 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Independence Way", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Independence", + "tiger:name_type": "Way", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 570226077, + "bounds": { + "minlat": 40.8102561, + "minlon": -73.9884619, + "maxlat": 40.8105503, + "maxlon": -73.9880339 + }, + "nodes": [ + 103137045, + 7672269068, + 5482328548, + 5482328547 + ], + "geometry": [ + { "lat": 40.8105503, "lon": -73.9884619 }, + { "lat": 40.8104832, "lon": -73.9884193 }, + { "lat": 40.8104597, "lon": -73.9884044 }, + { "lat": 40.8102561, "lon": -73.9880339 } + ], + "tags": { + "highway": "residential", + "name": "Independence Way", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Independence", + "tiger:name_type": "Way", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 570226078, + "bounds": { + "minlat": 40.8096075, + "minlon": -73.9875136, + "maxlat": 40.8106276, + "maxlon": -73.9843145 + }, + "nodes": [ + 103220231, + 5482328559, + 103220241, + 7220729563, + 7220729568, + 7220729552, + 103220243 + ], + "geometry": [ + { "lat": 40.8101274, "lon": -73.9875136 }, + { "lat": 40.8103429, "lon": -73.9873678 }, + { "lat": 40.8105887, "lon": -73.9871932 }, + { "lat": 40.8106159, "lon": -73.9871374 }, + { "lat": 40.8106276, "lon": -73.9870647 }, + { "lat": 40.8106081, "lon": -73.9869781 }, + { "lat": 40.8096075, "lon": -73.9843145 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Independence Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Independence", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 570226079, + "bounds": { + "minlat": 40.8139129, + "minlon": -73.9846618, + "maxlat": 40.8140462, + "maxlon": -73.9844314 + }, + "nodes": [ + 1751405023, + 5482328567 + ], + "geometry": [ + { "lat": 40.8139129, "lon": -73.9846618 }, + { "lat": 40.8140462, "lon": -73.9844314 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226080, + "bounds": { + "minlat": 40.8099917, + "minlon": -73.9894907, + "maxlat": 40.8107987, + "maxlon": -73.9887518 + }, + "nodes": [ + 5482328554, + 5482328551, + 5482328550, + 5482328549, + 103181711 + ], + "geometry": [ + { "lat": 40.8099917, "lon": -73.9894907 }, + { "lat": 40.8101105, "lon": -73.9893687 }, + { "lat": 40.8104739, "lon": -73.9889677 }, + { "lat": 40.8106850, "lon": -73.9887518 }, + { "lat": 40.8107987, "lon": -73.9889891 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226081, + "bounds": { + "minlat": 40.8095317, + "minlon": -73.9896841, + "maxlat": 40.8101192, + "maxlon": -73.9894907 + }, + "nodes": [ + 103181705, + 5482328554, + 5482328553, + 5482328552 + ], + "geometry": [ + { "lat": 40.8101192, "lon": -73.9896700 }, + { "lat": 40.8099917, "lon": -73.9894907 }, + { "lat": 40.8096953, "lon": -73.9896718 }, + { "lat": 40.8095317, "lon": -73.9896841 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226082, + "bounds": { + "minlat": 40.8104122, + "minlon": -73.9875339, + "maxlat": 40.8109130, + "maxlon": -73.9872802 + }, + "nodes": [ + 5482328556, + 5482328555, + 5482328557 + ], + "geometry": [ + { "lat": 40.8104122, "lon": -73.9875339 }, + { "lat": 40.8108367, "lon": -73.9872802 }, + { "lat": 40.8109130, "lon": -73.9875031 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226083, + "bounds": { + "minlat": 40.8103429, + "minlon": -73.9877768, + "maxlat": 40.8109130, + "maxlon": -73.9873678 + }, + "nodes": [ + 5482328559, + 5482328556, + 5482328558, + 5482328557 + ], + "geometry": [ + { "lat": 40.8103429, "lon": -73.9873678 }, + { "lat": 40.8104122, "lon": -73.9875339 }, + { "lat": 40.8105124, "lon": -73.9877768 }, + { "lat": 40.8109130, "lon": -73.9875031 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226085, + "bounds": { + "minlat": 40.8095451, + "minlon": -73.9881241, + "maxlat": 40.8099257, + "maxlon": -73.9876911 + }, + "nodes": [ + 103220239, + 5482328561, + 5482328560 + ], + "geometry": [ + { "lat": 40.8098584, "lon": -73.9876911 }, + { "lat": 40.8099257, "lon": -73.9878827 }, + { "lat": 40.8095451, "lon": -73.9881241 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226086, + "bounds": { + "minlat": 40.8125260, + "minlon": -73.9882971, + "maxlat": 40.8127783, + "maxlon": -73.9878557 + }, + "nodes": [ + 103181718, + 5482328563, + 5482328562, + 103181720 + ], + "geometry": [ + { "lat": 40.8125260, "lon": -73.9879197 }, + { "lat": 40.8126094, "lon": -73.9882971 }, + { "lat": 40.8127783, "lon": -73.9882319 }, + { "lat": 40.8126951, "lon": -73.9878557 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570226087, + "bounds": { + "minlat": 40.8138216, + "minlon": -73.9843167, + "maxlat": 40.8139464, + "maxlon": -73.9841731 + }, + "nodes": [ + 5482328564, + 5482328566 + ], + "geometry": [ + { "lat": 40.8139464, "lon": -73.9843167 }, + { "lat": 40.8138216, "lon": -73.9841731 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570226088, + "bounds": { + "minlat": 40.8141557, + "minlon": -73.9838946, + "maxlat": 40.8142345, + "maxlon": -73.9837295 + }, + "nodes": [ + 5482328569, + 5482328565 + ], + "geometry": [ + { "lat": 40.8141557, "lon": -73.9837295 }, + { "lat": 40.8142345, "lon": -73.9838946 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570226089, + "bounds": { + "minlat": 40.8139464, + "minlon": -73.9843167, + "maxlat": 40.8142345, + "maxlon": -73.9838946 + }, + "nodes": [ + 5482328565, + 5482328564 + ], + "geometry": [ + { "lat": 40.8142345, "lon": -73.9838946 }, + { "lat": 40.8139464, "lon": -73.9843167 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226090, + "bounds": { + "minlat": 40.8139464, + "minlon": -73.9844314, + "maxlat": 40.8143076, + "maxlon": -73.9838946 + }, + "nodes": [ + 5482328565, + 5482328568, + 5482328567, + 5482328564 + ], + "geometry": [ + { "lat": 40.8142345, "lon": -73.9838946 }, + { "lat": 40.8143076, "lon": -73.9840478 }, + { "lat": 40.8140462, "lon": -73.9844314 }, + { "lat": 40.8139464, "lon": -73.9843167 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226091, + "bounds": { + "minlat": 40.8121244, + "minlon": -73.9865589, + "maxlat": 40.8125639, + "maxlon": -73.9860427 + }, + "nodes": [ + 5482328572, + 5482328571, + 5482328570 + ], + "geometry": [ + { "lat": 40.8124776, "lon": -73.9860427 }, + { "lat": 40.8125639, "lon": -73.9862817 }, + { "lat": 40.8121244, "lon": -73.9865589 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226092, + "bounds": { + "minlat": 40.8085304, + "minlon": -73.9873610, + "maxlat": 40.8089189, + "maxlon": -73.9869395 + }, + "nodes": [ + 5482328576, + 5482328575, + 5482328574, + 5482328573 + ], + "geometry": [ + { "lat": 40.8085304, "lon": -73.9871427 }, + { "lat": 40.8088317, "lon": -73.9869395 }, + { "lat": 40.8089189, "lon": -73.9871650 }, + { "lat": 40.8086283, "lon": -73.9873610 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226093, + "bounds": { + "minlat": 40.8084762, + "minlon": -73.9870210, + "maxlat": 40.8090747, + "maxlon": -73.9866365 + }, + "nodes": [ + 5482328578, + 7625358388, + 5482328577 + ], + "geometry": [ + { "lat": 40.8090747, "lon": -73.9866365 }, + { "lat": 40.8089642, "lon": -73.9867075 }, + { "lat": 40.8084762, "lon": -73.9870210 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Marquis Court", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570226094, + "bounds": { + "minlat": 40.8080494, + "minlon": -73.9858124, + "maxlat": 40.8084260, + "maxlon": -73.9855616 + }, + "nodes": [ + 5482328580, + 5482328581, + 5482328579 + ], + "geometry": [ + { "lat": 40.8084260, "lon": -73.9855616 }, + { "lat": 40.8082415, "lon": -73.9856845 }, + { "lat": 40.8080494, "lon": -73.9858124 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Marquis Court" + } +}, +{ + "type": "way", + "id": 570226095, + "bounds": { + "minlat": 40.8082415, + "minlon": -73.9865453, + "maxlat": 40.8085818, + "maxlon": -73.9856845 + }, + "nodes": [ + 5482328582, + 5482328581 + ], + "geometry": [ + { "lat": 40.8085818, "lon": -73.9865453 }, + { "lat": 40.8082415, "lon": -73.9856845 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Marquis Court" + } +}, +{ + "type": "way", + "id": 570226096, + "bounds": { + "minlat": 40.8084762, + "minlon": -73.9883930, + "maxlat": 40.8090660, + "maxlon": -73.9870210 + }, + "nodes": [ + 3642839376, + 8374409342, + 8374409346, + 5482328585, + 5482328573, + 5482328576, + 5482328577 + ], + "geometry": [ + { "lat": 40.8090660, "lon": -73.9883930 }, + { "lat": 40.8089424, "lon": -73.9880977 }, + { "lat": 40.8088307, "lon": -73.9878309 }, + { "lat": 40.8087249, "lon": -73.9875783 }, + { "lat": 40.8086283, "lon": -73.9873610 }, + { "lat": 40.8085304, "lon": -73.9871427 }, + { "lat": 40.8084762, "lon": -73.9870210 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226097, + "bounds": { + "minlat": 40.8069282, + "minlon": -73.9913951, + "maxlat": 40.8070246, + "maxlon": -73.9913173 + }, + "nodes": [ + 5482328586, + 5482328594 + ], + "geometry": [ + { "lat": 40.8069282, "lon": -73.9913951 }, + { "lat": 40.8070246, "lon": -73.9913173 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570226098, + "bounds": { + "minlat": 40.8069784, + "minlon": -73.9916003, + "maxlat": 40.8071077, + "maxlon": -73.9914934 + }, + "nodes": [ + 5482328588, + 5482328587 + ], + "geometry": [ + { "lat": 40.8071077, "lon": -73.9914934 }, + { "lat": 40.8069784, "lon": -73.9916003 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570226099, + "bounds": { + "minlat": 40.8070485, + "minlon": -73.9918216, + "maxlat": 40.8071991, + "maxlon": -73.9916869 + }, + "nodes": [ + 5482328590, + 5482328589 + ], + "geometry": [ + { "lat": 40.8071991, "lon": -73.9916869 }, + { "lat": 40.8070485, "lon": -73.9918216 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570226100, + "bounds": { + "minlat": 40.8071490, + "minlon": -73.9919738, + "maxlat": 40.8072921, + "maxlon": -73.9918839 + }, + "nodes": [ + 5482328595, + 5482328591 + ], + "geometry": [ + { "lat": 40.8072921, "lon": -73.9918839 }, + { "lat": 40.8071490, "lon": -73.9919738 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570226101, + "bounds": { + "minlat": 40.8076185, + "minlon": -73.9917237, + "maxlat": 40.8077075, + "maxlon": -73.9916364 + }, + "nodes": [ + 5482328597, + 6888063815 + ], + "geometry": [ + { "lat": 40.8076185, "lon": -73.9917237 }, + { "lat": 40.8077075, "lon": -73.9916364 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226102, + "bounds": { + "minlat": 40.8076185, + "minlon": -73.9918470, + "maxlat": 40.8076844, + "maxlon": -73.9917237 + }, + "nodes": [ + 752618824, + 5482328597 + ], + "geometry": [ + { "lat": 40.8076844, "lon": -73.9918470 }, + { "lat": 40.8076185, "lon": -73.9917237 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570226103, + "bounds": { + "minlat": 40.8082800, + "minlon": -73.9914400, + "maxlat": 40.8083037, + "maxlon": -73.9912781 + }, + "nodes": [ + 5482328601, + 13527737525, + 5482328600 + ], + "geometry": [ + { "lat": 40.8082800, "lon": -73.9912781 }, + { "lat": 40.8082886, "lon": -73.9913369 }, + { "lat": 40.8083037, "lon": -73.9914400 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570226104, + "bounds": { + "minlat": 40.8080314, + "minlon": -73.9915520, + "maxlat": 40.8083037, + "maxlon": -73.9914400 + }, + "nodes": [ + 5482328600, + 5482328599, + 13527737526, + 5482328598 + ], + "geometry": [ + { "lat": 40.8083037, "lon": -73.9914400 }, + { "lat": 40.8081336, "lon": -73.9915520 }, + { "lat": 40.8080682, "lon": -73.9914967 }, + { "lat": 40.8080314, "lon": -73.9914656 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570226105, + "bounds": { + "minlat": 40.8079355, + "minlon": -73.9908298, + "maxlat": 40.8081808, + "maxlon": -73.9906293 + }, + "nodes": [ + 5482328603, + 5482328602 + ], + "geometry": [ + { "lat": 40.8079355, "lon": -73.9908298 }, + { "lat": 40.8081808, "lon": -73.9906293 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570226106, + "bounds": { + "minlat": 40.8080258, + "minlon": -73.9910081, + "maxlat": 40.8082722, + "maxlon": -73.9908130 + }, + "nodes": [ + 5482328605, + 5482328604 + ], + "geometry": [ + { "lat": 40.8080258, "lon": -73.9910081 }, + { "lat": 40.8082722, "lon": -73.9908130 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570226107, + "bounds": { + "minlat": 40.8078448, + "minlon": -73.9911939, + "maxlat": 40.8084634, + "maxlon": -73.9906508 + }, + "nodes": [ + 5482328609, + 5482328606, + 5482328605, + 5482328603, + 5482328607 + ], + "geometry": [ + { "lat": 40.8084634, "lon": -73.9909126 }, + { "lat": 40.8081199, "lon": -73.9911939 }, + { "lat": 40.8080258, "lon": -73.9910081 }, + { "lat": 40.8079355, "lon": -73.9908298 }, + { "lat": 40.8078448, "lon": -73.9906508 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226113, + "bounds": { + "minlat": 40.8112758, + "minlon": -73.9905378, + "maxlat": 40.8116285, + "maxlon": -73.9903738 + }, + "nodes": [ + 3655976719, + 10821057042, + 3655976718, + 3655976716 + ], + "geometry": [ + { "lat": 40.8116285, "lon": -73.9903738 }, + { "lat": 40.8113964, "lon": -73.9905031 }, + { "lat": 40.8113342, "lon": -73.9905378 }, + { "lat": 40.8112758, "lon": -73.9905319 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570226114, + "bounds": { + "minlat": 40.8121152, + "minlon": -73.9897817, + "maxlat": 40.8123892, + "maxlon": -73.9894572 + }, + "nodes": [ + 5482328721, + 5482328620, + 5482328722 + ], + "geometry": [ + { "lat": 40.8123892, "lon": -73.9894572 }, + { "lat": 40.8121172, "lon": -73.9896195 }, + { "lat": 40.8121152, "lon": -73.9897817 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226115, + "bounds": { + "minlat": 40.8121152, + "minlon": -73.9901333, + "maxlat": 40.8129128, + "maxlon": -73.9897402 + }, + "nodes": [ + 6553834863, + 5482328724, + 5482328723, + 5482328722 + ], + "geometry": [ + { "lat": 40.8129128, "lon": -73.9901333 }, + { "lat": 40.8129049, "lon": -73.9900459 }, + { "lat": 40.8128338, "lon": -73.9897402 }, + { "lat": 40.8121152, "lon": -73.9897817 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570226196, + "bounds": { + "minlat": 40.7130153, + "minlon": -73.9152849, + "maxlat": 40.7131227, + "maxlon": -73.9151007 + }, + "nodes": [ + 5482330027, + 9755751812, + 5482330026 + ], + "geometry": [ + { "lat": 40.7131227, "lon": -73.9152849 }, + { "lat": 40.7130581, "lon": -73.9151742 }, + { "lat": 40.7130153, "lon": -73.9151007 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570226197, + "bounds": { + "minlat": 40.7133351, + "minlon": -73.9150701, + "maxlat": 40.7134693, + "maxlon": -73.9150567 + }, + "nodes": [ + 5482330032, + 9755788639, + 5482330031 + ], + "geometry": [ + { "lat": 40.7134693, "lon": -73.9150567 }, + { "lat": 40.7133902, "lon": -73.9150638 }, + { "lat": 40.7133351, "lon": -73.9150701 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570226426, + "bounds": { + "minlat": 40.7072967, + "minlon": -73.9154422, + "maxlat": 40.7077200, + "maxlon": -73.9149423 + }, + "nodes": [ + 5482331555, + 6024796521, + 5482331554, + 5482331553, + 6024796520, + 5482331552 + ], + "geometry": [ + { "lat": 40.7072967, "lon": -73.9152756 }, + { "lat": 40.7073556, "lon": -73.9152151 }, + { "lat": 40.7076216, "lon": -73.9149423 }, + { "lat": 40.7077200, "lon": -73.9151093 }, + { "lat": 40.7074539, "lon": -73.9153822 }, + { "lat": 40.7073954, "lon": -73.9154422 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570227108, + "bounds": { + "minlat": 40.8197959, + "minlon": -73.9068616, + "maxlat": 40.8208542, + "maxlon": -73.9064347 + }, + "nodes": [ + 5482339112, + 7557648747, + 7283943662, + 7557648749, + 5482339111 + ], + "geometry": [ + { "lat": 40.8197959, "lon": -73.9068616 }, + { "lat": 40.8200846, "lon": -73.9067451 }, + { "lat": 40.8203290, "lon": -73.9066465 }, + { "lat": 40.8205838, "lon": -73.9065438 }, + { "lat": 40.8208542, "lon": -73.9064347 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227113, + "bounds": { + "minlat": 40.8210843, + "minlon": -73.9143607, + "maxlat": 40.8213728, + "maxlon": -73.9142152 + }, + "nodes": [ + 5482340523, + 12603715852, + 5482340522 + ], + "geometry": [ + { "lat": 40.8213728, "lon": -73.9142152 }, + { "lat": 40.8213068, "lon": -73.9142485 }, + { "lat": 40.8210843, "lon": -73.9143607 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227114, + "bounds": { + "minlat": 40.8211290, + "minlon": -73.9145404, + "maxlat": 40.8214285, + "maxlon": -73.9143961 + }, + "nodes": [ + 5482340525, + 5482340524 + ], + "geometry": [ + { "lat": 40.8214285, "lon": -73.9143961 }, + { "lat": 40.8211290, "lon": -73.9145404 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227116, + "bounds": { + "minlat": 40.8212975, + "minlon": -73.9129660, + "maxlat": 40.8216695, + "maxlon": -73.9127666 + }, + "nodes": [ + 5482340528, + 5482340527 + ], + "geometry": [ + { "lat": 40.8216695, "lon": -73.9127666 }, + { "lat": 40.8212975, "lon": -73.9129660 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227117, + "bounds": { + "minlat": 40.8206831, + "minlon": -73.9150460, + "maxlat": 40.8211716, + "maxlon": -73.9147711 + }, + "nodes": [ + 5482340530, + 13547349194, + 5482340529 + ], + "geometry": [ + { "lat": 40.8206831, "lon": -73.9150460 }, + { "lat": 40.8207342, "lon": -73.9150173 }, + { "lat": 40.8211716, "lon": -73.9147711 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227118, + "bounds": { + "minlat": 40.8206347, + "minlon": -73.9133978, + "maxlat": 40.8210542, + "maxlon": -73.9131865 + }, + "nodes": [ + 5482340532, + 5482340531 + ], + "geometry": [ + { "lat": 40.8210542, "lon": -73.9131865 }, + { "lat": 40.8206347, "lon": -73.9133978 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227119, + "bounds": { + "minlat": 40.8200273, + "minlon": -73.9153368, + "maxlat": 40.8202329, + "maxlon": -73.9152405 + }, + "nodes": [ + 5482340534, + 5482340533 + ], + "geometry": [ + { "lat": 40.8200273, "lon": -73.9153368 }, + { "lat": 40.8202329, "lon": -73.9152405 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227120, + "bounds": { + "minlat": 40.8198746, + "minlon": -73.9147443, + "maxlat": 40.8201668, + "maxlon": -73.9146195 + }, + "nodes": [ + 5482340536, + 5482340535 + ], + "geometry": [ + { "lat": 40.8198746, "lon": -73.9147443 }, + { "lat": 40.8201668, "lon": -73.9146195 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227121, + "bounds": { + "minlat": 40.8180180, + "minlon": -73.9159925, + "maxlat": 40.8183268, + "maxlon": -73.9158480 + }, + "nodes": [ + 5482340538, + 12040128414, + 5482340537 + ], + "geometry": [ + { "lat": 40.8180180, "lon": -73.9159925 }, + { "lat": 40.8180759, "lon": -73.9159654 }, + { "lat": 40.8183268, "lon": -73.9158480 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227127, + "bounds": { + "minlat": 40.8145898, + "minlon": -73.9085593, + "maxlat": 40.8146987, + "maxlon": -73.9080803 + }, + "nodes": [ + 5482340557, + 5482340556 + ], + "geometry": [ + { "lat": 40.8146987, "lon": -73.9085593 }, + { "lat": 40.8145898, "lon": -73.9080803 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570227128, + "bounds": { + "minlat": 40.8137544, + "minlon": -73.9108704, + "maxlat": 40.8138658, + "maxlon": -73.9103240 + }, + "nodes": [ + 5482340559, + 5482340558 + ], + "geometry": [ + { "lat": 40.8138658, "lon": -73.9108704 }, + { "lat": 40.8137544, "lon": -73.9103240 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227129, + "bounds": { + "minlat": 40.8148496, + "minlon": -73.9114458, + "maxlat": 40.8149152, + "maxlon": -73.9111125 + }, + "nodes": [ + 5482340561, + 5482340560 + ], + "geometry": [ + { "lat": 40.8149152, "lon": -73.9114458 }, + { "lat": 40.8148496, "lon": -73.9111125 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227130, + "bounds": { + "minlat": 40.8156904, + "minlon": -73.9102163, + "maxlat": 40.8157060, + "maxlon": -73.9092197 + }, + "nodes": [ + 5482340563, + 5482340562 + ], + "geometry": [ + { "lat": 40.8157060, "lon": -73.9102163 }, + { "lat": 40.8156904, "lon": -73.9092197 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227131, + "bounds": { + "minlat": 40.8155296, + "minlon": -73.9108390, + "maxlat": 40.8159596, + "maxlon": -73.9106956 + }, + "nodes": [ + 5482340566, + 5482340565 + ], + "geometry": [ + { "lat": 40.8159596, "lon": -73.9106956 }, + { "lat": 40.8155296, "lon": -73.9108390 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227132, + "bounds": { + "minlat": 40.8161386, + "minlon": -73.9086731, + "maxlat": 40.8163041, + "maxlon": -73.9085289 + }, + "nodes": [ + 5333003133, + 5482340568 + ], + "geometry": [ + { "lat": 40.8161386, "lon": -73.9085289 }, + { "lat": 40.8163041, "lon": -73.9086731 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227137, + "bounds": { + "minlat": 40.8206358, + "minlon": -73.9090296, + "maxlat": 40.8207139, + "maxlon": -73.9086892 + }, + "nodes": [ + 5482340579, + 5482340578 + ], + "geometry": [ + { "lat": 40.8207139, "lon": -73.9090296 }, + { "lat": 40.8206358, "lon": -73.9086892 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227138, + "bounds": { + "minlat": 40.8209730, + "minlon": -73.9082265, + "maxlat": 40.8210610, + "maxlon": -73.9078306 + }, + "nodes": [ + 5482340581, + 5482340580 + ], + "geometry": [ + { "lat": 40.8209730, "lon": -73.9078306 }, + { "lat": 40.8210610, "lon": -73.9082265 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227139, + "bounds": { + "minlat": 40.8179412, + "minlon": -73.9121860, + "maxlat": 40.8179900, + "maxlon": -73.9118689 + }, + "nodes": [ + 5482340583, + 5482340582 + ], + "geometry": [ + { "lat": 40.8179900, "lon": -73.9121860 }, + { "lat": 40.8179412, "lon": -73.9118689 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227140, + "bounds": { + "minlat": 40.8175106, + "minlon": -73.9122921, + "maxlat": 40.8181746, + "maxlon": -73.9121452 + }, + "nodes": [ + 42754108, + 7557486570, + 5482340583, + 5482340585 + ], + "geometry": [ + { "lat": 40.8175106, "lon": -73.9122921 }, + { "lat": 40.8179083, "lon": -73.9122041 }, + { "lat": 40.8179900, "lon": -73.9121860 }, + { "lat": 40.8181746, "lon": -73.9121452 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227142, + "bounds": { + "minlat": 40.8196182, + "minlon": -73.9116884, + "maxlat": 40.8201899, + "maxlon": -73.9115345 + }, + "nodes": [ + 5482340593, + 8233978560, + 5482340590 + ], + "geometry": [ + { "lat": 40.8201899, "lon": -73.9115345 }, + { "lat": 40.8197023, "lon": -73.9116658 }, + { "lat": 40.8196182, "lon": -73.9116884 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227143, + "bounds": { + "minlat": 40.8202306, + "minlon": -73.9117277, + "maxlat": 40.8208688, + "maxlon": -73.9113649 + }, + "nodes": [ + 5482340595, + 5482340594 + ], + "geometry": [ + { "lat": 40.8202306, "lon": -73.9117277 }, + { "lat": 40.8208688, "lon": -73.9113649 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227144, + "bounds": { + "minlat": 40.8149511, + "minlon": -73.9148371, + "maxlat": 40.8151570, + "maxlon": -73.9142086 + }, + "nodes": [ + 7557474521, + 13041711464, + 5482340596 + ], + "geometry": [ + { "lat": 40.8149511, "lon": -73.9142086 }, + { "lat": 40.8151200, "lon": -73.9147241 }, + { "lat": 40.8151570, "lon": -73.9148371 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227146, + "bounds": { + "minlat": 40.8147522, + "minlon": -73.9139365, + "maxlat": 40.8148047, + "maxlon": -73.9137806 + }, + "nodes": [ + 5482340601, + 5482340600 + ], + "geometry": [ + { "lat": 40.8147522, "lon": -73.9137806 }, + { "lat": 40.8148047, "lon": -73.9139365 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570227148, + "bounds": { + "minlat": 40.8152312, + "minlon": -73.9126816, + "maxlat": 40.8159133, + "maxlon": -73.9123102 + }, + "nodes": [ + 5482340607, + 7557474510, + 5482340605 + ], + "geometry": [ + { "lat": 40.8152312, "lon": -73.9126816 }, + { "lat": 40.8153288, "lon": -73.9126284 }, + { "lat": 40.8159133, "lon": -73.9123102 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570228920, + "bounds": { + "minlat": 40.7389029, + "minlon": -73.9239516, + "maxlat": 40.7394206, + "maxlon": -73.9238469 + }, + "nodes": [ + 5482367269, + 5482367268 + ], + "geometry": [ + { "lat": 40.7389029, "lon": -73.9239516 }, + { "lat": 40.7394206, "lon": -73.9238469 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 570228922, + "bounds": { + "minlat": 40.7398935, + "minlon": -73.9196829, + "maxlat": 40.7399372, + "maxlon": -73.9193515 + }, + "nodes": [ + 5482367274, + 10743722487, + 5482367273 + ], + "geometry": [ + { "lat": 40.7398935, "lon": -73.9193515 }, + { "lat": 40.7399039, "lon": -73.9194307 }, + { "lat": 40.7399372, "lon": -73.9196829 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570228923, + "bounds": { + "minlat": 40.7425227, + "minlon": -73.9199608, + "maxlat": 40.7425628, + "maxlon": -73.9197734 + }, + "nodes": [ + 4404640489, + 10743722613, + 5482367275 + ], + "geometry": [ + { "lat": 40.7425628, "lon": -73.9199608 }, + { "lat": 40.7425402, "lon": -73.9198553 }, + { "lat": 40.7425227, "lon": -73.9197734 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570228924, + "bounds": { + "minlat": 40.7431105, + "minlon": -73.9213795, + "maxlat": 40.7432886, + "maxlon": -73.9211462 + }, + "nodes": [ + 5482367279, + 5710692622, + 5482367278, + 5482367277, + 5482367276 + ], + "geometry": [ + { "lat": 40.7432886, "lon": -73.9211462 }, + { "lat": 40.7431934, "lon": -73.9211654 }, + { "lat": 40.7431338, "lon": -73.9211775 }, + { "lat": 40.7431105, "lon": -73.9212265 }, + { "lat": 40.7431275, "lon": -73.9213795 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570228925, + "bounds": { + "minlat": 40.7430272, + "minlon": -73.9220560, + "maxlat": 40.7433852, + "maxlon": -73.9219790 + }, + "nodes": [ + 5482367281, + 5710693345, + 5482367280 + ], + "geometry": [ + { "lat": 40.7433852, "lon": -73.9219790 }, + { "lat": 40.7432912, "lon": -73.9219994 }, + { "lat": 40.7430272, "lon": -73.9220560 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570228926, + "bounds": { + "minlat": 40.7431542, + "minlon": -73.9224973, + "maxlat": 40.7434158, + "maxlon": -73.9222464 + }, + "nodes": [ + 5482367284, + 5710692721, + 5482367283, + 10743722619, + 5482367282 + ], + "geometry": [ + { "lat": 40.7434158, "lon": -73.9222464 }, + { "lat": 40.7433231, "lon": -73.9222641 }, + { "lat": 40.7431542, "lon": -73.9222960 }, + { "lat": 40.7431685, "lon": -73.9224107 }, + { "lat": 40.7431805, "lon": -73.9224973 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570228929, + "bounds": { + "minlat": 40.7424979, + "minlon": -73.9273452, + "maxlat": 40.7426132, + "maxlon": -73.9264628 + }, + "nodes": [ + 5482367291, + 10743722659, + 10743722662, + 5482367290 + ], + "geometry": [ + { "lat": 40.7426132, "lon": -73.9273452 }, + { "lat": 40.7426034, "lon": -73.9272700 }, + { "lat": 40.7425114, "lon": -73.9265660 }, + { "lat": 40.7424979, "lon": -73.9264628 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570228942, + "bounds": { + "minlat": 40.7447885, + "minlon": -73.9244458, + "maxlat": 40.7448708, + "maxlon": -73.9244250 + }, + "nodes": [ + 5482369526, + 5482369524 + ], + "geometry": [ + { "lat": 40.7448708, "lon": -73.9244250 }, + { "lat": 40.7447885, "lon": -73.9244458 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570228943, + "bounds": { + "minlat": 40.7448275, + "minlon": -73.9244250, + "maxlat": 40.7449912, + "maxlon": -73.9240586 + }, + "nodes": [ + 5482369527, + 10743722022, + 5482369526, + 5482369525 + ], + "geometry": [ + { "lat": 40.7448275, "lon": -73.9240586 }, + { "lat": 40.7448382, "lon": -73.9241491 }, + { "lat": 40.7448708, "lon": -73.9244250 }, + { "lat": 40.7449912, "lon": -73.9244069 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570228944, + "bounds": { + "minlat": 40.7444842, + "minlon": -73.9245129, + "maxlat": 40.7446005, + "maxlon": -73.9244860 + }, + "nodes": [ + 5482369530, + 5482369528 + ], + "geometry": [ + { "lat": 40.7446005, "lon": -73.9244860 }, + { "lat": 40.7444842, "lon": -73.9245129 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570228945, + "bounds": { + "minlat": 40.7445456, + "minlon": -73.9244860, + "maxlat": 40.7447067, + "maxlon": -73.9241146 + }, + "nodes": [ + 5482369531, + 10743722021, + 5482369530, + 5482369529 + ], + "geometry": [ + { "lat": 40.7445456, "lon": -73.9241146 }, + { "lat": 40.7445576, "lon": -73.9241960 }, + { "lat": 40.7446005, "lon": -73.9244860 }, + { "lat": 40.7447067, "lon": -73.9244626 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570228946, + "bounds": { + "minlat": 40.7433254, + "minlon": -73.9167403, + "maxlat": 40.7434286, + "maxlon": -73.9158174 + }, + "nodes": [ + 5482369533, + 10743714055, + 11795947539, + 11795947536, + 10743714052, + 5482369532 + ], + "geometry": [ + { "lat": 40.7434286, "lon": -73.9167403 }, + { "lat": 40.7434177, "lon": -73.9166430 }, + { "lat": 40.7434128, "lon": -73.9165991 }, + { "lat": 40.7433372, "lon": -73.9159232 }, + { "lat": 40.7433348, "lon": -73.9159013 }, + { "lat": 40.7433254, "lon": -73.9158174 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570228947, + "bounds": { + "minlat": 40.7458594, + "minlon": -73.9210058, + "maxlat": 40.7460387, + "maxlon": -73.9205975 + }, + "nodes": [ + 5482369538, + 11694597577, + 5482369537, + 5482369536, + 5482369535 + ], + "geometry": [ + { "lat": 40.7458905, "lon": -73.9210058 }, + { "lat": 40.7458759, "lon": -73.9208849 }, + { "lat": 40.7458594, "lon": -73.9207484 }, + { "lat": 40.7460387, "lon": -73.9207068 }, + { "lat": 40.7460260, "lon": -73.9205975 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570229021, + "bounds": { + "minlat": 40.8075017, + "minlon": -73.9222853, + "maxlat": 40.8079123, + "maxlon": -73.9218897 + }, + "nodes": [ + 5482371832, + 5482371831, + 5482371830 + ], + "geometry": [ + { "lat": 40.8079123, "lon": -73.9221204 }, + { "lat": 40.8076723, "lon": -73.9222853 }, + { "lat": 40.8075017, "lon": -73.9218897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570229024, + "bounds": { + "minlat": 40.8071414, + "minlon": -73.9214887, + "maxlat": 40.8075274, + "maxlon": -73.9212142 + }, + "nodes": [ + 5482371843, + 5482371842 + ], + "geometry": [ + { "lat": 40.8075274, "lon": -73.9212142 }, + { "lat": 40.8071414, "lon": -73.9214887 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570229025, + "bounds": { + "minlat": 40.8099987, + "minlon": -73.9165270, + "maxlat": 40.8104972, + "maxlon": -73.9162477 + }, + "nodes": [ + 5482371845, + 5482371844 + ], + "geometry": [ + { "lat": 40.8099987, "lon": -73.9165270 }, + { "lat": 40.8104972, "lon": -73.9162477 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570229026, + "bounds": { + "minlat": 40.8099224, + "minlon": -73.9162974, + "maxlat": 40.8103866, + "maxlon": -73.9160304 + }, + "nodes": [ + 5482371847, + 5482371846 + ], + "geometry": [ + { "lat": 40.8099224, "lon": -73.9162974 }, + { "lat": 40.8103866, "lon": -73.9160304 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570229029, + "bounds": { + "minlat": 40.8107205, + "minlon": -73.9185087, + "maxlat": 40.8111256, + "maxlon": -73.9175851 + }, + "nodes": [ + 5482371862, + 5482371861, + 5482371860 + ], + "geometry": [ + { "lat": 40.8111256, "lon": -73.9175851 }, + { "lat": 40.8107205, "lon": -73.9178100 }, + { "lat": 40.8109519, "lon": -73.9185087 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570229030, + "bounds": { + "minlat": 40.8131211, + "minlon": -73.9182405, + "maxlat": 40.8135979, + "maxlon": -73.9179058 + }, + "nodes": [ + 5482371864, + 12654275731, + 5482371863 + ], + "geometry": [ + { "lat": 40.8135979, "lon": -73.9179058 }, + { "lat": 40.8135371, "lon": -73.9179485 }, + { "lat": 40.8131211, "lon": -73.9182405 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570229032, + "bounds": { + "minlat": 40.8136745, + "minlon": -73.9200301, + "maxlat": 40.8138427, + "maxlon": -73.9197305 + }, + "nodes": [ + 5482371868, + 5482371867, + 5482371866 + ], + "geometry": [ + { "lat": 40.8136745, "lon": -73.9200301 }, + { "lat": 40.8138427, "lon": -73.9199075 }, + { "lat": 40.8137707, "lon": -73.9197305 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570229033, + "bounds": { + "minlat": 40.8105134, + "minlon": -73.9240316, + "maxlat": 40.8106486, + "maxlon": -73.9237008 + }, + "nodes": [ + 5482371870, + 5482371869 + ], + "geometry": [ + { "lat": 40.8106486, "lon": -73.9240316 }, + { "lat": 40.8105134, "lon": -73.9237008 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570229034, + "bounds": { + "minlat": 40.8105146, + "minlon": -73.9241289, + "maxlat": 40.8107708, + "maxlon": -73.9239416 + }, + "nodes": [ + 5482371874, + 12040837180, + 5482371873, + 5482371870, + 5482371872 + ], + "geometry": [ + { "lat": 40.8105146, "lon": -73.9241289 }, + { "lat": 40.8105684, "lon": -73.9240898 }, + { "lat": 40.8106342, "lon": -73.9240421 }, + { "lat": 40.8106486, "lon": -73.9240316 }, + { "lat": 40.8107708, "lon": -73.9239416 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570229035, + "bounds": { + "minlat": 40.8092822, + "minlon": -73.9242817, + "maxlat": 40.8094342, + "maxlon": -73.9239214 + }, + "nodes": [ + 5482371876, + 5482371875 + ], + "geometry": [ + { "lat": 40.8094342, "lon": -73.9242817 }, + { "lat": 40.8092822, "lon": -73.9239214 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570229036, + "bounds": { + "minlat": 40.8088859, + "minlon": -73.9244908, + "maxlat": 40.8091381, + "maxlon": -73.9238724 + }, + "nodes": [ + 5482371878, + 5482371877 + ], + "geometry": [ + { "lat": 40.8091381, "lon": -73.9244908 }, + { "lat": 40.8088859, "lon": -73.9238724 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570229081, + "bounds": { + "minlat": 40.7001547, + "minlon": -73.9110348, + "maxlat": 40.7004453, + "maxlon": -73.9107401 + }, + "nodes": [ + 5482373240, + 5482373239 + ], + "geometry": [ + { "lat": 40.7004453, "lon": -73.9107401 }, + { "lat": 40.7001547, "lon": -73.9110348 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570229082, + "bounds": { + "minlat": 40.7002534, + "minlon": -73.9112037, + "maxlat": 40.7005421, + "maxlon": -73.9109123 + }, + "nodes": [ + 5482373242, + 5482373241 + ], + "geometry": [ + { "lat": 40.7002534, "lon": -73.9112037 }, + { "lat": 40.7005421, "lon": -73.9109123 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570232492, + "bounds": { + "minlat": 40.7909367, + "minlon": -73.9214297, + "maxlat": 40.7910684, + "maxlon": -73.9211328 + }, + "nodes": [ + 5482408598, + 5482408597 + ], + "geometry": [ + { "lat": 40.7909367, "lon": -73.9211328 }, + { "lat": 40.7910684, "lon": -73.9214297 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570232735, + "bounds": { + "minlat": 40.8037275, + "minlon": -73.9908760, + "maxlat": 40.8039508, + "maxlon": -73.9905207 + }, + "nodes": [ + 5482410767, + 5482410764, + 5482410763, + 5482410762 + ], + "geometry": [ + { "lat": 40.8037275, "lon": -73.9906105 }, + { "lat": 40.8038422, "lon": -73.9905207 }, + { "lat": 40.8039508, "lon": -73.9907889 }, + { "lat": 40.8038484, "lon": -73.9908760 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570232736, + "bounds": { + "minlat": 40.8034849, + "minlon": -73.9912178, + "maxlat": 40.8040041, + "maxlon": -73.9906105 + }, + "nodes": [ + 5482410768, + 5482410762, + 5482410767, + 5482410766, + 5482410765, + 3575303895 + ], + "geometry": [ + { "lat": 40.8040041, "lon": -73.9912178 }, + { "lat": 40.8038484, "lon": -73.9908760 }, + { "lat": 40.8037275, "lon": -73.9906105 }, + { "lat": 40.8034940, "lon": -73.9907970 }, + { "lat": 40.8034849, "lon": -73.9908546 }, + { "lat": 40.8035083, "lon": -73.9909675 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570232737, + "bounds": { + "minlat": 40.8040904, + "minlon": -73.9918560, + "maxlat": 40.8056804, + "maxlon": -73.9892759 + }, + "nodes": [ + 5482410773, + 5482410771, + 5482410770, + 5482410769, + 8700984434, + 8700984435, + 5482410810, + 2308995445, + 5482410809 + ], + "geometry": [ + { "lat": 40.8046341, "lon": -73.9907426 }, + { "lat": 40.8044686, "lon": -73.9904335 }, + { "lat": 40.8042361, "lon": -73.9898126 }, + { "lat": 40.8041224, "lon": -73.9895658 }, + { "lat": 40.8040904, "lon": -73.9894968 }, + { "lat": 40.8044149, "lon": -73.9892759 }, + { "lat": 40.8055679, "lon": -73.9917317 }, + { "lat": 40.8056595, "lon": -73.9918329 }, + { "lat": 40.8056804, "lon": -73.9918560 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570232738, + "bounds": { + "minlat": 40.8045010, + "minlon": -73.9912417, + "maxlat": 40.8049050, + "maxlon": -73.9907426 + }, + "nodes": [ + 5482410781, + 5482410773, + 5482410772 + ], + "geometry": [ + { "lat": 40.8045010, "lon": -73.9908379 }, + { "lat": 40.8046341, "lon": -73.9907426 }, + { "lat": 40.8049050, "lon": -73.9912417 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570232739, + "bounds": { + "minlat": 40.8037270, + "minlon": -73.9900612, + "maxlat": 40.8040191, + "maxlon": -73.9898744 + }, + "nodes": [ + 5482410775, + 5482410774, + 5482410776 + ], + "geometry": [ + { "lat": 40.8040191, "lon": -73.9898966 }, + { "lat": 40.8038122, "lon": -73.9900612 }, + { "lat": 40.8037270, "lon": -73.9898744 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570232740, + "bounds": { + "minlat": 40.8037270, + "minlon": -73.9908745, + "maxlat": 40.8044531, + "maxlon": -73.9897107 + }, + "nodes": [ + 5482410778, + 5482410775, + 5482410777, + 5482410776 + ], + "geometry": [ + { "lat": 40.8044531, "lon": -73.9908745 }, + { "lat": 40.8040191, "lon": -73.9898966 }, + { "lat": 40.8039366, "lon": -73.9897107 }, + { "lat": 40.8037270, "lon": -73.9898744 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570232741, + "bounds": { + "minlat": 40.8043451, + "minlon": -73.9917195, + "maxlat": 40.8046820, + "maxlon": -73.9909571 + }, + "nodes": [ + 5482410780, + 5482410779 + ], + "geometry": [ + { "lat": 40.8043451, "lon": -73.9909571 }, + { "lat": 40.8046820, "lon": -73.9917195 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570232742, + "bounds": { + "minlat": 40.8045010, + "minlon": -73.9918625, + "maxlat": 40.8048299, + "maxlon": -73.9908379 + }, + "nodes": [ + 5482410784, + 5482410779, + 5482410782, + 5482410781 + ], + "geometry": [ + { "lat": 40.8045122, "lon": -73.9918625 }, + { "lat": 40.8046820, "lon": -73.9917195 }, + { "lat": 40.8048299, "lon": -73.9915949 }, + { "lat": 40.8045010, "lon": -73.9908379 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570232743, + "bounds": { + "minlat": 40.8040180, + "minlon": -73.9923517, + "maxlat": 40.8047349, + "maxlon": -73.9917927 + }, + "nodes": [ + 5482410787, + 5482410788, + 5482410786, + 5482410785, + 5482410784, + 5482410783 + ], + "geometry": [ + { "lat": 40.8040180, "lon": -73.9921002 }, + { "lat": 40.8041351, "lon": -73.9920214 }, + { "lat": 40.8044137, "lon": -73.9917927 }, + { "lat": 40.8044807, "lon": -73.9918330 }, + { "lat": 40.8045122, "lon": -73.9918625 }, + { "lat": 40.8047349, "lon": -73.9923517 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570232745, + "bounds": { + "minlat": 40.8041351, + "minlon": -73.9926007, + "maxlat": 40.8044747, + "maxlon": -73.9920214 + }, + "nodes": [ + 5482410791, + 5482410790, + 5482410789, + 5482410788 + ], + "geometry": [ + { "lat": 40.8044747, "lon": -73.9926007 }, + { "lat": 40.8043919, "lon": -73.9925256 }, + { "lat": 40.8043229, "lon": -73.9924740 }, + { "lat": 40.8041351, "lon": -73.9920214 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 570232746, + "bounds": { + "minlat": 40.8048765, + "minlon": -73.9920281, + "maxlat": 40.8053500, + "maxlon": -73.9912164 + }, + "nodes": [ + 5482410811, + 8700984430, + 8700984431, + 5482410772, + 8700984432, + 8700984433, + 5482410794 + ], + "geometry": [ + { "lat": 40.8052137, "lon": -73.9920281 }, + { "lat": 40.8048766, "lon": -73.9913306 }, + { "lat": 40.8048765, "lon": -73.9912781 }, + { "lat": 40.8049050, "lon": -73.9912417 }, + { "lat": 40.8049468, "lon": -73.9912164 }, + { "lat": 40.8050073, "lon": -73.9912664 }, + { "lat": 40.8053500, "lon": -73.9919140 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570232753, + "bounds": { + "minlat": 40.8052137, + "minlon": -73.9920281, + "maxlat": 40.8055679, + "maxlon": -73.9917317 + }, + "nodes": [ + 5482410811, + 5482410794, + 5482410810 + ], + "geometry": [ + { "lat": 40.8052137, "lon": -73.9920281 }, + { "lat": 40.8053500, "lon": -73.9919140 }, + { "lat": 40.8055679, "lon": -73.9917317 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570232755, + "bounds": { + "minlat": 40.8052116, + "minlon": -73.9922424, + "maxlat": 40.8052517, + "maxlon": -73.9920281 + }, + "nodes": [ + 103137024, + 5555494164, + 5482410812, + 5482410811 + ], + "geometry": [ + { "lat": 40.8052517, "lon": -73.9922424 }, + { "lat": 40.8052228, "lon": -73.9921419 }, + { "lat": 40.8052116, "lon": -73.9920938 }, + { "lat": 40.8052137, "lon": -73.9920281 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570232757, + "bounds": { + "minlat": 40.7371377, + "minlon": -73.9217945, + "maxlat": 40.7372091, + "maxlon": -73.9212151 + }, + "nodes": [ + 5482411051, + 10743722422, + 5482411050 + ], + "geometry": [ + { "lat": 40.7372091, "lon": -73.9217945 }, + { "lat": 40.7371990, "lon": -73.9217126 }, + { "lat": 40.7371377, "lon": -73.9212151 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570234254, + "bounds": { + "minlat": 40.8126120, + "minlon": -73.9798907, + "maxlat": 40.8127105, + "maxlon": -73.9797161 + }, + "nodes": [ + 1751404942, + 5482422660, + 5482422661, + 5482422659, + 5482422662 + ], + "geometry": [ + { "lat": 40.8127014, "lon": -73.9798907 }, + { "lat": 40.8126379, "lon": -73.9798576 }, + { "lat": 40.8126120, "lon": -73.9797711 }, + { "lat": 40.8126709, "lon": -73.9797161 }, + { "lat": 40.8127105, "lon": -73.9797315 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570234255, + "bounds": { + "minlat": 40.8127014, + "minlon": -73.9798907, + "maxlat": 40.8127389, + "maxlon": -73.9797315 + }, + "nodes": [ + 5482422662, + 5482422663, + 5482422664, + 1751404942 + ], + "geometry": [ + { "lat": 40.8127105, "lon": -73.9797315 }, + { "lat": 40.8127389, "lon": -73.9797791 }, + { "lat": 40.8127282, "lon": -73.9798737 }, + { "lat": 40.8127014, "lon": -73.9798907 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570234614, + "bounds": { + "minlat": 40.7236284, + "minlon": -73.9173372, + "maxlat": 40.7237867, + "maxlon": -73.9165615 + }, + "nodes": [ + 5482425962, + 5482425961 + ], + "geometry": [ + { "lat": 40.7237867, "lon": -73.9173372 }, + { "lat": 40.7236284, "lon": -73.9165615 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570234617, + "bounds": { + "minlat": 40.7277666, + "minlon": -73.9194659, + "maxlat": 40.7285821, + "maxlon": -73.9191584 + }, + "nodes": [ + 5482425964, + 5482425963 + ], + "geometry": [ + { "lat": 40.7285821, "lon": -73.9191584 }, + { "lat": 40.7277666, "lon": -73.9194659 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570234618, + "bounds": { + "minlat": 40.7277210, + "minlon": -73.9192559, + "maxlat": 40.7285388, + "maxlon": -73.9189540 + }, + "nodes": [ + 5482425966, + 5482425965 + ], + "geometry": [ + { "lat": 40.7277210, "lon": -73.9192559 }, + { "lat": 40.7285388, "lon": -73.9189540 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570234619, + "bounds": { + "minlat": 40.7276802, + "minlon": -73.9190677, + "maxlat": 40.7284983, + "maxlon": -73.9187624 + }, + "nodes": [ + 5482425968, + 5482425967 + ], + "geometry": [ + { "lat": 40.7284983, "lon": -73.9187624 }, + { "lat": 40.7276802, "lon": -73.9190677 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570234620, + "bounds": { + "minlat": 40.7284661, + "minlon": -73.9193550, + "maxlat": 40.7286237, + "maxlon": -73.9186107 + }, + "nodes": [ + 5482425971, + 5482425968, + 5482425965, + 5482425964, + 5482425970 + ], + "geometry": [ + { "lat": 40.7284661, "lon": -73.9186107 }, + { "lat": 40.7284983, "lon": -73.9187624 }, + { "lat": 40.7285388, "lon": -73.9189540 }, + { "lat": 40.7285821, "lon": -73.9191584 }, + { "lat": 40.7286237, "lon": -73.9193550 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570234621, + "bounds": { + "minlat": 40.7276450, + "minlon": -73.9199068, + "maxlat": 40.7278659, + "maxlon": -73.9189057 + }, + "nodes": [ + 5482425973, + 5482425969, + 5482425963, + 5482425966, + 5482425967, + 5482425972 + ], + "geometry": [ + { "lat": 40.7278659, "lon": -73.9199068 }, + { "lat": 40.7278090, "lon": -73.9196614 }, + { "lat": 40.7277666, "lon": -73.9194659 }, + { "lat": 40.7277210, "lon": -73.9192559 }, + { "lat": 40.7276802, "lon": -73.9190677 }, + { "lat": 40.7276450, "lon": -73.9189057 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570234622, + "bounds": { + "minlat": 40.7301156, + "minlon": -73.9198096, + "maxlat": 40.7304361, + "maxlon": -73.9195040 + }, + "nodes": [ + 5482425976, + 6863082597, + 5482425975, + 5482425974 + ], + "geometry": [ + { "lat": 40.7304361, "lon": -73.9195040 }, + { "lat": 40.7303660, "lon": -73.9195292 }, + { "lat": 40.7301156, "lon": -73.9196192 }, + { "lat": 40.7301623, "lon": -73.9198096 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570234623, + "bounds": { + "minlat": 40.7303113, + "minlon": -73.9203816, + "maxlat": 40.7305982, + "maxlon": -73.9202755 + }, + "nodes": [ + 5482425978, + 13259926343, + 5482425977 + ], + "geometry": [ + { "lat": 40.7305982, "lon": -73.9202755 }, + { "lat": 40.7305321, "lon": -73.9202999 }, + { "lat": 40.7303113, "lon": -73.9203816 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570234624, + "bounds": { + "minlat": 40.7290017, + "minlon": -73.9250094, + "maxlat": 40.7291236, + "maxlon": -73.9244324 + }, + "nodes": [ + 5482425980, + 5482425979 + ], + "geometry": [ + { "lat": 40.7291236, "lon": -73.9250094 }, + { "lat": 40.7290017, "lon": -73.9244324 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570235239, + "bounds": { + "minlat": 40.7012393, + "minlon": -73.9092582, + "maxlat": 40.7012700, + "maxlon": -73.9092062 + }, + "nodes": [ + 5482432254, + 5482432251 + ], + "geometry": [ + { "lat": 40.7012700, "lon": -73.9092582 }, + { "lat": 40.7012393, "lon": -73.9092062 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570235240, + "bounds": { + "minlat": 40.7011205, + "minlon": -73.9092062, + "maxlat": 40.7014407, + "maxlon": -73.9087106 + }, + "nodes": [ + 5482432251, + 9762206422, + 5482432253, + 5482432252 + ], + "geometry": [ + { "lat": 40.7012393, "lon": -73.9092062 }, + { "lat": 40.7012305, "lon": -73.9091923 }, + { "lat": 40.7011205, "lon": -73.9090191 }, + { "lat": 40.7014407, "lon": -73.9087106 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570263051, + "bounds": { + "minlat": 40.7222259, + "minlon": -73.9246281, + "maxlat": 40.7232663, + "maxlon": -73.9219949 + }, + "nodes": [ + 13064770580, + 13064770578, + 13064770577, + 13064770576, + 13064770575, + 13064770574, + 5482634969, + 13064770582 + ], + "geometry": [ + { "lat": 40.7232189, "lon": -73.9219949 }, + { "lat": 40.7232663, "lon": -73.9244186 }, + { "lat": 40.7231997, "lon": -73.9244837 }, + { "lat": 40.7230088, "lon": -73.9245913 }, + { "lat": 40.7222921, "lon": -73.9246281 }, + { "lat": 40.7222749, "lon": -73.9225923 }, + { "lat": 40.7222624, "lon": -73.9223807 }, + { "lat": 40.7222259, "lon": -73.9222159 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570263052, + "bounds": { + "minlat": 40.7260751, + "minlon": -73.9191163, + "maxlat": 40.7265920, + "maxlon": -73.9189809 + }, + "nodes": [ + 5482634972, + 13701191911, + 13250172725, + 5482634971 + ], + "geometry": [ + { "lat": 40.7265920, "lon": -73.9189809 }, + { "lat": 40.7262113, "lon": -73.9190826 }, + { "lat": 40.7261632, "lon": -73.9190955 }, + { "lat": 40.7260751, "lon": -73.9191163 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570263054, + "bounds": { + "minlat": 40.7306324, + "minlon": -73.9221417, + "maxlat": 40.7307172, + "maxlon": -73.9217320 + }, + "nodes": [ + 5482634978, + 5482634977 + ], + "geometry": [ + { "lat": 40.7307172, "lon": -73.9221417 }, + { "lat": 40.7306324, "lon": -73.9217320 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570263055, + "bounds": { + "minlat": 40.7275452, + "minlon": -73.9202750, + "maxlat": 40.7275976, + "maxlon": -73.9200264 + }, + "nodes": [ + 5482634979, + 5482634998 + ], + "geometry": [ + { "lat": 40.7275452, "lon": -73.9200264 }, + { "lat": 40.7275976, "lon": -73.9202750 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "service" + } +}, +{ + "type": "way", + "id": 570263060, + "bounds": { + "minlat": 40.7270184, + "minlon": -73.9274582, + "maxlat": 40.7272301, + "maxlon": -73.9269306 + }, + "nodes": [ + 5482635006, + 5482635005 + ], + "geometry": [ + { "lat": 40.7270184, "lon": -73.9269306 }, + { "lat": 40.7272301, "lon": -73.9274582 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570263061, + "bounds": { + "minlat": 40.7271569, + "minlon": -73.9273811, + "maxlat": 40.7273692, + "maxlon": -73.9268316 + }, + "nodes": [ + 5482635009, + 5482635008 + ], + "geometry": [ + { "lat": 40.7271569, "lon": -73.9268316 }, + { "lat": 40.7273692, "lon": -73.9273811 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570263062, + "bounds": { + "minlat": 40.7272879, + "minlon": -73.9272904, + "maxlat": 40.7275036, + "maxlon": -73.9267379 + }, + "nodes": [ + 5482635011, + 5482635010 + ], + "geometry": [ + { "lat": 40.7275036, "lon": -73.9272904 }, + { "lat": 40.7272879, "lon": -73.9267379 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570263063, + "bounds": { + "minlat": 40.7274394, + "minlon": -73.9271853, + "maxlat": 40.7276593, + "maxlon": -73.9266297 + }, + "nodes": [ + 5482635015, + 5482635014 + ], + "geometry": [ + { "lat": 40.7274394, "lon": -73.9266297 }, + { "lat": 40.7276593, "lon": -73.9271853 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269087, + "bounds": { + "minlat": 40.7182576, + "minlon": -73.9266041, + "maxlat": 40.7193023, + "maxlon": -73.9255235 + }, + "nodes": [ + 5482675472, + 5482675471, + 7950468570, + 7950468571, + 7950468572, + 7950468573 + ], + "geometry": [ + { "lat": 40.7193023, "lon": -73.9266041 }, + { "lat": 40.7182576, "lon": -73.9261463 }, + { "lat": 40.7183534, "lon": -73.9256827 }, + { "lat": 40.7184768, "lon": -73.9255553 }, + { "lat": 40.7185505, "lon": -73.9255235 }, + { "lat": 40.7189314, "lon": -73.9256987 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570269089, + "bounds": { + "minlat": 40.7163313, + "minlon": -73.9241483, + "maxlat": 40.7165174, + "maxlon": -73.9234179 + }, + "nodes": [ + 5482675476, + 5482675475 + ], + "geometry": [ + { "lat": 40.7163313, "lon": -73.9241483 }, + { "lat": 40.7165174, "lon": -73.9234179 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269098, + "bounds": { + "minlat": 40.7142796, + "minlon": -73.9236794, + "maxlat": 40.7143436, + "maxlon": -73.9225086 + }, + "nodes": [ + 5482675497, + 5482675496 + ], + "geometry": [ + { "lat": 40.7142796, "lon": -73.9225086 }, + { "lat": 40.7143436, "lon": -73.9236794 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269100, + "bounds": { + "minlat": 40.7139602, + "minlon": -73.9230388, + "maxlat": 40.7141408, + "maxlon": -73.9230230 + }, + "nodes": [ + 5482675500, + 13773133589, + 9351530393, + 5482675499 + ], + "geometry": [ + { "lat": 40.7139602, "lon": -73.9230388 }, + { "lat": 40.7140358, "lon": -73.9230322 }, + { "lat": 40.7140956, "lon": -73.9230270 }, + { "lat": 40.7141408, "lon": -73.9230230 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269109, + "bounds": { + "minlat": 40.7141156, + "minlon": -73.9206640, + "maxlat": 40.7150639, + "maxlon": -73.9199900 + }, + "nodes": [ + 5482677922, + 7706126107, + 5482677921 + ], + "geometry": [ + { "lat": 40.7150639, "lon": -73.9199900 }, + { "lat": 40.7145977, "lon": -73.9203210 }, + { "lat": 40.7141156, "lon": -73.9206640 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269113, + "bounds": { + "minlat": 40.7142618, + "minlon": -73.9210005, + "maxlat": 40.7151106, + "maxlon": -73.9203903 + }, + "nodes": [ + 5482677928, + 7706126105, + 5482677927 + ], + "geometry": [ + { "lat": 40.7151106, "lon": -73.9203903 }, + { "lat": 40.7147351, "lon": -73.9206603 }, + { "lat": 40.7142618, "lon": -73.9210005 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269115, + "bounds": { + "minlat": 40.7138171, + "minlon": -73.9206930, + "maxlat": 40.7150030, + "maxlon": -73.9198359 + }, + "nodes": [ + 42809915, + 12847161643, + 8667656774, + 8830962614, + 7706126104, + 7706126106, + 5482677932 + ], + "geometry": [ + { "lat": 40.7138171, "lon": -73.9206930 }, + { "lat": 40.7138915, "lon": -73.9206383 }, + { "lat": 40.7139723, "lon": -73.9205795 }, + { "lat": 40.7140299, "lon": -73.9205374 }, + { "lat": 40.7140532, "lon": -73.9205204 }, + { "lat": 40.7145355, "lon": -73.9201676 }, + { "lat": 40.7150030, "lon": -73.9198359 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570269119, + "bounds": { + "minlat": 40.7170175, + "minlon": -73.9197443, + "maxlat": 40.7172937, + "maxlon": -73.9196071 + }, + "nodes": [ + 5482677954, + 10856212659, + 5482677953 + ], + "geometry": [ + { "lat": 40.7172937, "lon": -73.9197443 }, + { "lat": 40.7172213, "lon": -73.9197083 }, + { "lat": 40.7170175, "lon": -73.9196071 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269124, + "bounds": { + "minlat": 40.7209383, + "minlon": -73.9172897, + "maxlat": 40.7210000, + "maxlon": -73.9167588 + }, + "nodes": [ + 2825689928, + 5482677582 + ], + "geometry": [ + { "lat": 40.7209383, "lon": -73.9167588 }, + { "lat": 40.7210000, "lon": -73.9172897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269126, + "bounds": { + "minlat": 40.7218294, + "minlon": -73.9185141, + "maxlat": 40.7219930, + "maxlon": -73.9177673 + }, + "nodes": [ + 5482677584, + 5482677583 + ], + "geometry": [ + { "lat": 40.7218294, "lon": -73.9177673 }, + { "lat": 40.7219930, "lon": -73.9185141 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269127, + "bounds": { + "minlat": 40.7220043, + "minlon": -73.9181802, + "maxlat": 40.7221079, + "maxlon": -73.9177033 + }, + "nodes": [ + 5482677586, + 5482677585 + ], + "geometry": [ + { "lat": 40.7220043, "lon": -73.9177033 }, + { "lat": 40.7221079, "lon": -73.9181802 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269133, + "bounds": { + "minlat": 40.7202210, + "minlon": -73.9183565, + "maxlat": 40.7222130, + "maxlon": -73.9176268 + }, + "nodes": [ + 5482677597, + 5482677586, + 5482677584, + 5482677963 + ], + "geometry": [ + { "lat": 40.7222130, "lon": -73.9176268 }, + { "lat": 40.7220043, "lon": -73.9177033 }, + { "lat": 40.7218294, "lon": -73.9177673 }, + { "lat": 40.7202210, "lon": -73.9183565 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269134, + "bounds": { + "minlat": 40.7198189, + "minlon": -73.9200085, + "maxlat": 40.7199309, + "maxlon": -73.9195159 + }, + "nodes": [ + 5482677599, + 5482677598 + ], + "geometry": [ + { "lat": 40.7199309, "lon": -73.9200085 }, + { "lat": 40.7198189, "lon": -73.9195159 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269135, + "bounds": { + "minlat": 40.7178570, + "minlon": -73.9184522, + "maxlat": 40.7191704, + "maxlon": -73.9179897 + }, + "nodes": [ + 5482677601, + 7706126095, + 5482677607 + ], + "geometry": [ + { "lat": 40.7191704, "lon": -73.9179897 }, + { "lat": 40.7180095, "lon": -73.9183987 }, + { "lat": 40.7178570, "lon": -73.9184522 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269137, + "bounds": { + "minlat": 40.7179309, + "minlon": -73.9183987, + "maxlat": 40.7180095, + "maxlon": -73.9180326 + }, + "nodes": [ + 2825689936, + 7706126095 + ], + "geometry": [ + { "lat": 40.7179309, "lon": -73.9180326 }, + { "lat": 40.7180095, "lon": -73.9183987 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570269138, + "bounds": { + "minlat": 40.7187913, + "minlon": -73.9208409, + "maxlat": 40.7189966, + "maxlon": -73.9200683 + }, + "nodes": [ + 5482677613, + 5482677612 + ], + "geometry": [ + { "lat": 40.7189966, "lon": -73.9200683 }, + { "lat": 40.7187913, "lon": -73.9208409 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570269139, + "bounds": { + "minlat": 40.7189658, + "minlon": -73.9227189, + "maxlat": 40.7202028, + "maxlon": -73.9212361 + }, + "nodes": [ + 5482677616, + 5482677615, + 11896656735, + 11896656736, + 5482677614 + ], + "geometry": [ + { "lat": 40.7192414, "lon": -73.9227189 }, + { "lat": 40.7193167, "lon": -73.9224911 }, + { "lat": 40.7202028, "lon": -73.9221651 }, + { "lat": 40.7200012, "lon": -73.9212361 }, + { "lat": 40.7189658, "lon": -73.9216103 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570269143, + "bounds": { + "minlat": 40.7186592, + "minlon": -73.9233783, + "maxlat": 40.7188762, + "maxlon": -73.9225426 + }, + "nodes": [ + 5482678223, + 5482678222 + ], + "geometry": [ + { "lat": 40.7188762, "lon": -73.9225426 }, + { "lat": 40.7186592, "lon": -73.9233783 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570269501, + "bounds": { + "minlat": 40.7201293, + "minlon": -73.9234990, + "maxlat": 40.7206025, + "maxlon": -73.9232470 + }, + "nodes": [ + 5482678230, + 11777349348, + 5482678229 + ], + "geometry": [ + { "lat": 40.7201293, "lon": -73.9232470 }, + { "lat": 40.7202261, "lon": -73.9232986 }, + { "lat": 40.7206025, "lon": -73.9234990 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570269503, + "bounds": { + "minlat": 40.7200772, + "minlon": -73.9237015, + "maxlat": 40.7205416, + "maxlon": -73.9234579 + }, + "nodes": [ + 5482678232, + 11777349349, + 5482678231 + ], + "geometry": [ + { "lat": 40.7200772, "lon": -73.9234579 }, + { "lat": 40.7201731, "lon": -73.9235082 }, + { "lat": 40.7205416, "lon": -73.9237015 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570270853, + "bounds": { + "minlat": 40.7925279, + "minlon": -73.9723434, + "maxlat": 40.7928340, + "maxlon": -73.9714899 + }, + "nodes": [ + 5482687363, + 8687882672, + 5482687362, + 5482687361, + 5482687360 + ], + "geometry": [ + { "lat": 40.7925279, "lon": -73.9714899 }, + { "lat": 40.7925763, "lon": -73.9716199 }, + { "lat": 40.7927142, "lon": -73.9719477 }, + { "lat": 40.7926990, "lon": -73.9719987 }, + { "lat": 40.7928340, "lon": -73.9723434 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570283793, + "bounds": { + "minlat": 40.7930356, + "minlon": -73.9639152, + "maxlat": 40.7931355, + "maxlon": -73.9637016 + }, + "nodes": [ + 7779666008, + 7120510384, + 3602667598 + ], + "geometry": [ + { "lat": 40.7930356, "lon": -73.9637016 }, + { "lat": 40.7930835, "lon": -73.9638289 }, + { "lat": 40.7931355, "lon": -73.9639152 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570749381, + "bounds": { + "minlat": 40.7590154, + "minlon": -73.9537325, + "maxlat": 40.7593285, + "maxlon": -73.9534095 + }, + "nodes": [ + 5487036765, + 3260501150, + 42450165, + 9189040186, + 9189040187, + 9915145353 + ], + "geometry": [ + { "lat": 40.7590154, "lon": -73.9537325 }, + { "lat": 40.7590484, "lon": -73.9536645 }, + { "lat": 40.7590701, "lon": -73.9536243 }, + { "lat": 40.7590987, "lon": -73.9535859 }, + { "lat": 40.7591305, "lon": -73.9535599 }, + { "lat": 40.7593285, "lon": -73.9534095 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "lanes": "2", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "15 mph", + "name": "West Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 570827590, + "bounds": { + "minlat": 40.7042046, + "minlon": -73.9457487, + "maxlat": 40.7056485, + "maxlon": -73.9454989 + }, + "nodes": [ + 5487698314, + 9752593949, + 5487698313 + ], + "geometry": [ + { "lat": 40.7042046, "lon": -73.9454989 }, + { "lat": 40.7055666, "lon": -73.9457345 }, + { "lat": 40.7056485, "lon": -73.9457487 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570827591, + "bounds": { + "minlat": 40.7041786, + "minlon": -73.9460107, + "maxlat": 40.7056259, + "maxlon": -73.9452513 + }, + "nodes": [ + 5487698318, + 9752593950, + 5487698317, + 5487698314, + 5487698316, + 5487698315 + ], + "geometry": [ + { "lat": 40.7056259, "lon": -73.9460107 }, + { "lat": 40.7055411, "lon": -73.9459961 }, + { "lat": 40.7041786, "lon": -73.9457605 }, + { "lat": 40.7042046, "lon": -73.9454989 }, + { "lat": 40.7042292, "lon": -73.9452513 }, + { "lat": 40.7044735, "lon": -73.9452936 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570827592, + "bounds": { + "minlat": 40.7053616, + "minlon": -73.9423347, + "maxlat": 40.7059484, + "maxlon": -73.9422409 + }, + "nodes": [ + 5487698320, + 9752594038, + 5487698319 + ], + "geometry": [ + { "lat": 40.7059484, "lon": -73.9423347 }, + { "lat": 40.7058928, "lon": -73.9423258 }, + { "lat": 40.7053616, "lon": -73.9422409 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570827593, + "bounds": { + "minlat": 40.7100179, + "minlon": -73.9400773, + "maxlat": 40.7108174, + "maxlon": -73.9397117 + }, + "nodes": [ + 5487714323, + 5487714322, + 5487714321 + ], + "geometry": [ + { "lat": 40.7108174, "lon": -73.9400773 }, + { "lat": 40.7100179, "lon": -73.9399453 }, + { "lat": 40.7100401, "lon": -73.9397117 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570827594, + "bounds": { + "minlat": 40.7098550, + "minlon": -73.9400773, + "maxlat": 40.7108396, + "maxlon": -73.9396811 + }, + "nodes": [ + 5487714325, + 9752593821, + 5487714321, + 5487714324, + 5487714323 + ], + "geometry": [ + { "lat": 40.7098550, "lon": -73.9396811 }, + { "lat": 40.7099315, "lon": -73.9396937 }, + { "lat": 40.7100401, "lon": -73.9397117 }, + { "lat": 40.7108396, "lon": -73.9398437 }, + { "lat": 40.7108174, "lon": -73.9400773 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570827595, + "bounds": { + "minlat": 40.7121264, + "minlon": -73.9401588, + "maxlat": 40.7124819, + "maxlon": -73.9400199 + }, + "nodes": [ + 5487714327, + 8842929804, + 5487714326 + ], + "geometry": [ + { "lat": 40.7121264, "lon": -73.9400199 }, + { "lat": 40.7122070, "lon": -73.9400514 }, + { "lat": 40.7124819, "lon": -73.9401588 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570829355, + "bounds": { + "minlat": 40.7015831, + "minlon": -73.9439073, + "maxlat": 40.7016791, + "maxlon": -73.9437738 + }, + "nodes": [ + 5487724332, + 5487724331 + ], + "geometry": [ + { "lat": 40.7015831, "lon": -73.9439073 }, + { "lat": 40.7016791, "lon": -73.9437738 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570829357, + "bounds": { + "minlat": 40.7014738, + "minlon": -73.9437570, + "maxlat": 40.7015526, + "maxlon": -73.9436390 + }, + "nodes": [ + 5487724325, + 5487724324 + ], + "geometry": [ + { "lat": 40.7014738, "lon": -73.9437570 }, + { "lat": 40.7015526, "lon": -73.9436390 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570829359, + "bounds": { + "minlat": 40.7014087, + "minlon": -73.9437738, + "maxlat": 40.7016791, + "maxlon": -73.9435257 + }, + "nodes": [ + 5487724331, + 5487724330, + 5487724329, + 5487724328, + 5487724327, + 5487724326, + 5487724325 + ], + "geometry": [ + { "lat": 40.7016791, "lon": -73.9437738 }, + { "lat": 40.7016090, "lon": -73.9436437 }, + { "lat": 40.7015540, "lon": -73.9435417 }, + { "lat": 40.7015155, "lon": -73.9435257 }, + { "lat": 40.7014850, "lon": -73.9435378 }, + { "lat": 40.7014087, "lon": -73.9436645 }, + { "lat": 40.7014738, "lon": -73.9437570 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570829361, + "bounds": { + "minlat": 40.7014738, + "minlon": -73.9440713, + "maxlat": 40.7017023, + "maxlon": -73.9437570 + }, + "nodes": [ + 5487724333, + 9752126438, + 5487724332, + 5487724325 + ], + "geometry": [ + { "lat": 40.7017023, "lon": -73.9440713 }, + { "lat": 40.7016608, "lon": -73.9440142 }, + { "lat": 40.7015831, "lon": -73.9439073 }, + { "lat": 40.7014738, "lon": -73.9437570 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570829367, + "bounds": { + "minlat": 40.7053409, + "minlon": -73.9470114, + "maxlat": 40.7053987, + "maxlon": -73.9464388 + }, + "nodes": [ + 5487724340, + 5487724339 + ], + "geometry": [ + { "lat": 40.7053409, "lon": -73.9470114 }, + { "lat": 40.7053987, "lon": -73.9464388 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570829368, + "bounds": { + "minlat": 40.7051578, + "minlon": -73.9470496, + "maxlat": 40.7055363, + "maxlon": -73.9463860 + }, + "nodes": [ + 5487724343, + 9755373118, + 5487724340, + 5487724342, + 5487724341 + ], + "geometry": [ + { "lat": 40.7055363, "lon": -73.9470496 }, + { "lat": 40.7054418, "lon": -73.9470310 }, + { "lat": 40.7053409, "lon": -73.9470114 }, + { "lat": 40.7051578, "lon": -73.9469792 }, + { "lat": 40.7052177, "lon": -73.9463860 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570829369, + "bounds": { + "minlat": 40.7052727, + "minlon": -73.9477476, + "maxlat": 40.7053285, + "maxlon": -73.9471777 + }, + "nodes": [ + 5487724345, + 5487724344 + ], + "geometry": [ + { "lat": 40.7053285, "lon": -73.9471777 }, + { "lat": 40.7052727, "lon": -73.9477476 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570829370, + "bounds": { + "minlat": 40.7050995, + "minlon": -73.9477366, + "maxlat": 40.7051570, + "maxlon": -73.9471484 + }, + "nodes": [ + 5487724347, + 5487724346 + ], + "geometry": [ + { "lat": 40.7051570, "lon": -73.9471484 }, + { "lat": 40.7050995, "lon": -73.9477366 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570829371, + "bounds": { + "minlat": 40.7051570, + "minlon": -73.9472145, + "maxlat": 40.7055220, + "maxlon": -73.9471484 + }, + "nodes": [ + 5487724347, + 5487724345, + 9755373120, + 5487724348 + ], + "geometry": [ + { "lat": 40.7051570, "lon": -73.9471484 }, + { "lat": 40.7053285, "lon": -73.9471777 }, + { "lat": 40.7054267, "lon": -73.9471963 }, + { "lat": 40.7055220, "lon": -73.9472145 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570829373, + "bounds": { + "minlat": 40.7001388, + "minlon": -73.9438529, + "maxlat": 40.7003279, + "maxlon": -73.9435941 + }, + "nodes": [ + 5487724352, + 5487724350, + 5487724349 + ], + "geometry": [ + { "lat": 40.7003279, "lon": -73.9435941 }, + { "lat": 40.7002995, "lon": -73.9438529 }, + { "lat": 40.7001388, "lon": -73.9438221 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570829374, + "bounds": { + "minlat": 40.7003279, + "minlon": -73.9436310, + "maxlat": 40.7005174, + "maxlon": -73.9435941 + }, + "nodes": [ + 5487724351, + 9752127041, + 5487724352 + ], + "geometry": [ + { "lat": 40.7005174, "lon": -73.9436310 }, + { "lat": 40.7004220, "lon": -73.9436124 }, + { "lat": 40.7003279, "lon": -73.9435941 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570829375, + "bounds": { + "minlat": 40.7003279, + "minlon": -73.9435941, + "maxlat": 40.7003837, + "maxlon": -73.9430667 + }, + "nodes": [ + 5487724353, + 5487724352 + ], + "geometry": [ + { "lat": 40.7003837, "lon": -73.9430667 }, + { "lat": 40.7003279, "lon": -73.9435941 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570829376, + "bounds": { + "minlat": 40.6990341, + "minlon": -73.9438761, + "maxlat": 40.7000287, + "maxlon": -73.9436664 + }, + "nodes": [ + 5487724355, + 5487724361, + 5487724354 + ], + "geometry": [ + { "lat": 40.6990341, "lon": -73.9436664 }, + { "lat": 40.6993610, "lon": -73.9437403 }, + { "lat": 40.7000287, "lon": -73.9438761 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570829379, + "bounds": { + "minlat": 40.6990529, + "minlon": -73.9440528, + "maxlat": 40.7000473, + "maxlon": -73.9434975 + }, + "nodes": [ + 5487724360, + 5487724359, + 5487724354, + 5487724358, + 5487724357 + ], + "geometry": [ + { "lat": 40.6993416, "lon": -73.9439077 }, + { "lat": 40.7000097, "lon": -73.9440528 }, + { "lat": 40.7000287, "lon": -73.9438761 }, + { "lat": 40.7000473, "lon": -73.9437041 }, + { "lat": 40.6990529, "lon": -73.9434975 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570829385, + "bounds": { + "minlat": 40.7025414, + "minlon": -73.9447038, + "maxlat": 40.7029248, + "maxlon": -73.9446301 + }, + "nodes": [ + 5487724372, + 5487724369 + ], + "geometry": [ + { "lat": 40.7025414, "lon": -73.9446301 }, + { "lat": 40.7029248, "lon": -73.9447038 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570829386, + "bounds": { + "minlat": 40.7026632, + "minlon": -73.9449035, + "maxlat": 40.7029069, + "maxlon": -73.9448556 + }, + "nodes": [ + 5487724371, + 5487724370 + ], + "geometry": [ + { "lat": 40.7029069, "lon": -73.9449035 }, + { "lat": 40.7026632, "lon": -73.9448556 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570831581, + "bounds": { + "minlat": 40.7094844, + "minlon": -74.0137041, + "maxlat": 40.7099524, + "maxlon": -74.0129340 + }, + "nodes": [ + 5487737822, + 8262936677, + 10288473087, + 5487737821, + 5487729920, + 12058598882, + 5487729919, + 5487729918, + 8262936687, + 42434401 + ], + "geometry": [ + { "lat": 40.7094844, "lon": -74.0129340 }, + { "lat": 40.7095047, "lon": -74.0130053 }, + { "lat": 40.7095209, "lon": -74.0130668 }, + { "lat": 40.7095865, "lon": -74.0131791 }, + { "lat": 40.7097032, "lon": -74.0131330 }, + { "lat": 40.7097916, "lon": -74.0133932 }, + { "lat": 40.7098360, "lon": -74.0134949 }, + { "lat": 40.7099205, "lon": -74.0135972 }, + { "lat": 40.7099405, "lon": -74.0136570 }, + { "lat": 40.7099524, "lon": -74.0137041 } + ], + "tags": { + "access": "private", + "highway": "service", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570831741, + "bounds": { + "minlat": 40.7004239, + "minlon": -73.9319704, + "maxlat": 40.7007059, + "maxlon": -73.9314795 + }, + "nodes": [ + 5487729349, + 5487729348 + ], + "geometry": [ + { "lat": 40.7004239, "lon": -73.9314795 }, + { "lat": 40.7007059, "lon": -73.9319704 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570831743, + "bounds": { + "minlat": 40.7002716, + "minlon": -73.9321387, + "maxlat": 40.7005698, + "maxlon": -73.9313337 + }, + "nodes": [ + 5487729352, + 5487729349, + 5487729351, + 5487729350 + ], + "geometry": [ + { "lat": 40.7005698, "lon": -73.9313337 }, + { "lat": 40.7004239, "lon": -73.9314795 }, + { "lat": 40.7002716, "lon": -73.9316317 }, + { "lat": 40.7005628, "lon": -73.9321387 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570831745, + "bounds": { + "minlat": 40.7005164, + "minlon": -73.9318317, + "maxlat": 40.7008558, + "maxlon": -73.9312409 + }, + "nodes": [ + 5487729354, + 5487729352, + 5487729353 + ], + "geometry": [ + { "lat": 40.7005164, "lon": -73.9312409 }, + { "lat": 40.7005698, "lon": -73.9313337 }, + { "lat": 40.7008558, "lon": -73.9318317 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570831747, + "bounds": { + "minlat": 40.7003629, + "minlon": -73.9311157, + "maxlat": 40.7009586, + "maxlon": -73.9305259 + }, + "nodes": [ + 5487729356, + 5487729355 + ], + "geometry": [ + { "lat": 40.7009586, "lon": -73.9305259 }, + { "lat": 40.7003629, "lon": -73.9311157 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570831749, + "bounds": { + "minlat": 40.7002583, + "minlon": -73.9312930, + "maxlat": 40.7010594, + "maxlon": -73.9306521 + }, + "nodes": [ + 1275778382, + 5487729358, + 5487729354, + 5487729357, + 5487729355, + 5487729359 + ], + "geometry": [ + { "lat": 40.7010304, "lon": -73.9306521 }, + { "lat": 40.7010594, "lon": -73.9307032 }, + { "lat": 40.7005164, "lon": -73.9312409 }, + { "lat": 40.7004638, "lon": -73.9312930 }, + { "lat": 40.7003629, "lon": -73.9311157 }, + { "lat": 40.7002583, "lon": -73.9309320 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570831751, + "bounds": { + "minlat": 40.7002583, + "minlon": -73.9309320, + "maxlat": 40.7010304, + "maxlon": -73.9303421 + }, + "nodes": [ + 1275778382, + 5487729356, + 5487729362, + 10977791986, + 5487729361, + 5487729360, + 5487729359 + ], + "geometry": [ + { "lat": 40.7010304, "lon": -73.9306521 }, + { "lat": 40.7009586, "lon": -73.9305259 }, + { "lat": 40.7008540, "lon": -73.9303421 }, + { "lat": 40.7008150, "lon": -73.9303807 }, + { "lat": 40.7005951, "lon": -73.9305985 }, + { "lat": 40.7005706, "lon": -73.9306227 }, + { "lat": 40.7002583, "lon": -73.9309320 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570831937, + "bounds": { + "minlat": 40.7136386, + "minlon": -74.0048445, + "maxlat": 40.7139347, + "maxlon": -74.0045089 + }, + "nodes": [ + 5487729370, + 11401559415, + 7182561642, + 11401559346, + 5487729369, + 5487729368, + 11401559345, + 7182561643, + 11401559416, + 5487729367 + ], + "geometry": [ + { "lat": 40.7138630, "lon": -74.0045089 }, + { "lat": 40.7138766, "lon": -74.0045379 }, + { "lat": 40.7138857, "lon": -74.0045571 }, + { "lat": 40.7138904, "lon": -74.0045662 }, + { "lat": 40.7139347, "lon": -74.0046611 }, + { "lat": 40.7137111, "lon": -74.0048445 }, + { "lat": 40.7136647, "lon": -74.0047455 }, + { "lat": 40.7136617, "lon": -74.0047396 }, + { "lat": 40.7136536, "lon": -74.0047225 }, + { "lat": 40.7136386, "lon": -74.0046906 } + ], + "tags": { + "access": "no", + "foot": "private", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570834968, + "bounds": { + "minlat": 40.7042407, + "minlon": -73.9172058, + "maxlat": 40.7047950, + "maxlon": -73.9169440 + }, + "nodes": [ + 5487756751, + 9755789897, + 6896648582, + 5487756750, + 5487756749, + 5487756748 + ], + "geometry": [ + { "lat": 40.7047950, "lon": -73.9170169 }, + { "lat": 40.7047398, "lon": -73.9170696 }, + { "lat": 40.7047163, "lon": -73.9170920 }, + { "lat": 40.7046375, "lon": -73.9171670 }, + { "lat": 40.7045154, "lon": -73.9169440 }, + { "lat": 40.7042407, "lon": -73.9172058 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570834969, + "bounds": { + "minlat": 40.7038306, + "minlon": -73.9167606, + "maxlat": 40.7039636, + "maxlon": -73.9166275 + }, + "nodes": [ + 5487756753, + 5487756752 + ], + "geometry": [ + { "lat": 40.7038306, "lon": -73.9167606 }, + { "lat": 40.7039636, "lon": -73.9166275 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570834970, + "bounds": { + "minlat": 40.7038117, + "minlon": -73.9169015, + "maxlat": 40.7041212, + "maxlon": -73.9163636 + }, + "nodes": [ + 5487756755, + 5487756752, + 5487756754 + ], + "geometry": [ + { "lat": 40.7041212, "lon": -73.9169015 }, + { "lat": 40.7039636, "lon": -73.9166275 }, + { "lat": 40.7038117, "lon": -73.9163636 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570834971, + "bounds": { + "minlat": 40.7036904, + "minlon": -73.9169809, + "maxlat": 40.7039574, + "maxlon": -73.9165168 + }, + "nodes": [ + 5487756759, + 5487756753, + 5487756756 + ], + "geometry": [ + { "lat": 40.7039574, "lon": -73.9169809 }, + { "lat": 40.7038306, "lon": -73.9167606 }, + { "lat": 40.7036904, "lon": -73.9165168 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570834972, + "bounds": { + "minlat": 40.7039574, + "minlon": -73.9171135, + "maxlat": 40.7040572, + "maxlon": -73.9169809 + }, + "nodes": [ + 5487756759, + 5487756758, + 5785028817, + 5487756757 + ], + "geometry": [ + { "lat": 40.7039574, "lon": -73.9169809 }, + { "lat": 40.7039815, "lon": -73.9169832 }, + { "lat": 40.7040196, "lon": -73.9170488 }, + { "lat": 40.7040572, "lon": -73.9171135 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570834973, + "bounds": { + "minlat": 40.7039555, + "minlon": -73.9171449, + "maxlat": 40.7040263, + "maxlon": -73.9169809 + }, + "nodes": [ + 5487756761, + 5785028811, + 5487756760, + 5487756759 + ], + "geometry": [ + { "lat": 40.7040263, "lon": -73.9171449 }, + { "lat": 40.7039908, "lon": -73.9170775 }, + { "lat": 40.7039555, "lon": -73.9170094 }, + { "lat": 40.7039574, "lon": -73.9169809 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570835198, + "bounds": { + "minlat": 40.8518220, + "minlon": -73.9705192, + "maxlat": 40.8530642, + "maxlon": -73.9698314 + }, + "nodes": [ + 5487759029, + 10026273686, + 5487758920, + 10026273685, + 10026273692, + 10026273689, + 7111637692, + 7111637687, + 10026273684, + 5487759021 + ], + "geometry": [ + { "lat": 40.8518220, "lon": -73.9705192 }, + { "lat": 40.8522009, "lon": -73.9703097 }, + { "lat": 40.8522664, "lon": -73.9702735 }, + { "lat": 40.8523297, "lon": -73.9702725 }, + { "lat": 40.8524008, "lon": -73.9702287 }, + { "lat": 40.8526176, "lon": -73.9700963 }, + { "lat": 40.8526648, "lon": -73.9700658 }, + { "lat": 40.8527119, "lon": -73.9700367 }, + { "lat": 40.8529056, "lon": -73.9699225 }, + { "lat": 40.8530642, "lon": -73.9698314 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570835199, + "bounds": { + "minlat": 40.8521546, + "minlon": -73.9713354, + "maxlat": 40.8521928, + "maxlon": -73.9713102 + }, + "nodes": [ + 4397826829, + 5487759026 + ], + "geometry": [ + { "lat": 40.8521546, "lon": -73.9713354 }, + { "lat": 40.8521928, "lon": -73.9713102 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570835200, + "bounds": { + "minlat": 40.8518220, + "minlon": -73.9713102, + "maxlat": 40.8521928, + "maxlon": -73.9705192 + }, + "nodes": [ + 5487759026, + 5487759027, + 5487759029 + ], + "geometry": [ + { "lat": 40.8521928, "lon": -73.9713102 }, + { "lat": 40.8521561, "lon": -73.9712345 }, + { "lat": 40.8518220, "lon": -73.9705192 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570835201, + "bounds": { + "minlat": 40.8521928, + "minlon": -73.9713102, + "maxlat": 40.8528043, + "maxlon": -73.9709259 + }, + "nodes": [ + 5487759026, + 5487759025, + 103189365 + ], + "geometry": [ + { "lat": 40.8521928, "lon": -73.9713102 }, + { "lat": 40.8524879, "lon": -73.9711302 }, + { "lat": 40.8528043, "lon": -73.9709259 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570835926, + "bounds": { + "minlat": 40.7104030, + "minlon": -73.9885948, + "maxlat": 40.7106315, + "maxlon": -73.9885560 + }, + "nodes": [ + 5487766136, + 5487766135 + ], + "geometry": [ + { "lat": 40.7106315, "lon": -73.9885948 }, + { "lat": 40.7104030, "lon": -73.9885560 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570835927, + "bounds": { + "minlat": 40.7103796, + "minlon": -73.9888256, + "maxlat": 40.7106090, + "maxlon": -73.9887853 + }, + "nodes": [ + 5487766138, + 5487766137 + ], + "geometry": [ + { "lat": 40.7106090, "lon": -73.9888256 }, + { "lat": 40.7103796, "lon": -73.9887853 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570835928, + "bounds": { + "minlat": 40.7103572, + "minlon": -73.9890697, + "maxlat": 40.7105852, + "maxlon": -73.9890267 + }, + "nodes": [ + 5487766140, + 5487766139 + ], + "geometry": [ + { "lat": 40.7105852, "lon": -73.9890697 }, + { "lat": 40.7103572, "lon": -73.9890267 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570835929, + "bounds": { + "minlat": 40.7103354, + "minlon": -73.9892707, + "maxlat": 40.7105656, + "maxlon": -73.9892292 + }, + "nodes": [ + 5487766142, + 5487766141 + ], + "geometry": [ + { "lat": 40.7105656, "lon": -73.9892707 }, + { "lat": 40.7103354, "lon": -73.9892292 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 570838352, + "bounds": { + "minlat": 40.7482573, + "minlon": -73.9532071, + "maxlat": 40.7487451, + "maxlon": -73.9530504 + }, + "nodes": [ + 5487784883, + 5487784882 + ], + "geometry": [ + { "lat": 40.7487451, "lon": -73.9530504 }, + { "lat": 40.7482573, "lon": -73.9532071 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570838353, + "bounds": { + "minlat": 40.7482948, + "minlon": -73.9533969, + "maxlat": 40.7487808, + "maxlon": -73.9532346 + }, + "nodes": [ + 2470426876, + 5487784884 + ], + "geometry": [ + { "lat": 40.7487808, "lon": -73.9532346 }, + { "lat": 40.7482948, "lon": -73.9533969 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570839246, + "bounds": { + "minlat": 40.7012360, + "minlon": -73.9805389, + "maxlat": 40.7018278, + "maxlon": -73.9787399 + }, + "nodes": [ + 5487796368, + 7707722476, + 5487796380, + 5487796376, + 7707722456, + 7707722457, + 7707722459 + ], + "geometry": [ + { "lat": 40.7012360, "lon": -73.9787399 }, + { "lat": 40.7014062, "lon": -73.9797742 }, + { "lat": 40.7015318, "lon": -73.9805389 }, + { "lat": 40.7016748, "lon": -73.9804981 }, + { "lat": 40.7018278, "lon": -73.9804544 }, + { "lat": 40.7017567, "lon": -73.9799984 }, + { "lat": 40.7016022, "lon": -73.9800409 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570839247, + "bounds": { + "minlat": 40.7010635, + "minlon": -73.9798124, + "maxlat": 40.7012436, + "maxlon": -73.9787854 + }, + "nodes": [ + 5487796370, + 5487796369 + ], + "geometry": [ + { "lat": 40.7012436, "lon": -73.9798124 }, + { "lat": 40.7010635, "lon": -73.9787854 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570839248, + "bounds": { + "minlat": 40.7008943, + "minlon": -73.9798522, + "maxlat": 40.7010743, + "maxlon": -73.9788316 + }, + "nodes": [ + 5487796371, + 5487796374 + ], + "geometry": [ + { "lat": 40.7010743, "lon": -73.9798522 }, + { "lat": 40.7008943, "lon": -73.9788316 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570841072, + "bounds": { + "minlat": 40.7005587, + "minlon": -73.9629872, + "maxlat": 40.7006955, + "maxlon": -73.9628129 + }, + "nodes": [ + 5487808163, + 9776829142, + 5708198391, + 5487808162 + ], + "geometry": [ + { "lat": 40.7005587, "lon": -73.9629872 }, + { "lat": 40.7006211, "lon": -73.9629079 }, + { "lat": 40.7006463, "lon": -73.9628751 }, + { "lat": 40.7006955, "lon": -73.9628129 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 570841074, + "bounds": { + "minlat": 40.7007162, + "minlon": -73.9631858, + "maxlat": 40.7008493, + "maxlon": -73.9630036 + }, + "nodes": [ + 5487808165, + 9776829141, + 5708198390, + 5487808164 + ], + "geometry": [ + { "lat": 40.7007162, "lon": -73.9631858 }, + { "lat": 40.7007760, "lon": -73.9631040 }, + { "lat": 40.7008024, "lon": -73.9630679 }, + { "lat": 40.7008493, "lon": -73.9630036 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 570841075, + "bounds": { + "minlat": 40.7003947, + "minlon": -73.9636985, + "maxlat": 40.7007522, + "maxlon": -73.9632313 + }, + "nodes": [ + 5487808172, + 5487808171 + ], + "geometry": [ + { "lat": 40.7007522, "lon": -73.9632313 }, + { "lat": 40.7003947, "lon": -73.9636985 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570841077, + "bounds": { + "minlat": 40.7002456, + "minlon": -73.9634706, + "maxlat": 40.7005818, + "maxlon": -73.9630163 + }, + "nodes": [ + 5487808180, + 5487808179 + ], + "geometry": [ + { "lat": 40.7005818, "lon": -73.9630163 }, + { "lat": 40.7002456, "lon": -73.9634706 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570841079, + "bounds": { + "minlat": 40.7000788, + "minlon": -73.9633392, + "maxlat": 40.7001581, + "maxlon": -73.9632319 + }, + "nodes": [ + 5487808186, + 5487808182 + ], + "geometry": [ + { "lat": 40.7000788, "lon": -73.9632319 }, + { "lat": 40.7001581, "lon": -73.9633392 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570841081, + "bounds": { + "minlat": 40.7004072, + "minlon": -73.9633553, + "maxlat": 40.7008505, + "maxlon": -73.9627961 + }, + "nodes": [ + 5487808188, + 5487808172, + 5487808165, + 5487808173, + 5487808180, + 5487808163, + 5487808181, + 5487808187 + ], + "geometry": [ + { "lat": 40.7008505, "lon": -73.9633553 }, + { "lat": 40.7007522, "lon": -73.9632313 }, + { "lat": 40.7007162, "lon": -73.9631858 }, + { "lat": 40.7006636, "lon": -73.9631195 }, + { "lat": 40.7005818, "lon": -73.9630163 }, + { "lat": 40.7005587, "lon": -73.9629872 }, + { "lat": 40.7004880, "lon": -73.9628980 }, + { "lat": 40.7004072, "lon": -73.9627961 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570841497, + "bounds": { + "minlat": 40.8300068, + "minlon": -73.9524090, + "maxlat": 40.8302237, + "maxlon": -73.9518716 + }, + "nodes": [ + 3273684052, + 3273684051 + ], + "geometry": [ + { "lat": 40.8302237, "lon": -73.9524090 }, + { "lat": 40.8300068, "lon": -73.9518716 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570841498, + "bounds": { + "minlat": 40.8300068, + "minlon": -73.9518716, + "maxlat": 40.8301535, + "maxlon": -73.9517760 + }, + "nodes": [ + 3273684048, + 3273684051 + ], + "geometry": [ + { "lat": 40.8301535, "lon": -73.9517760 }, + { "lat": 40.8300068, "lon": -73.9518716 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570841499, + "bounds": { + "minlat": 40.8302708, + "minlon": -73.9522314, + "maxlat": 40.8304823, + "maxlon": -73.9516952 + }, + "nodes": [ + 3273684049, + 3273684050 + ], + "geometry": [ + { "lat": 40.8302708, "lon": -73.9516952 }, + { "lat": 40.8304823, "lon": -73.9522314 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570841500, + "bounds": { + "minlat": 40.8301535, + "minlon": -73.9523122, + "maxlat": 40.8303650, + "maxlon": -73.9517760 + }, + "nodes": [ + 3273684047, + 3273684048 + ], + "geometry": [ + { "lat": 40.8303650, "lon": -73.9523122 }, + { "lat": 40.8301535, "lon": -73.9517760 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570841769, + "bounds": { + "minlat": 40.8311038, + "minlon": -73.9517738, + "maxlat": 40.8311672, + "maxlon": -73.9516084 + }, + "nodes": [ + 3273685368, + 3273685371 + ], + "geometry": [ + { "lat": 40.8311038, "lon": -73.9516084 }, + { "lat": 40.8311672, "lon": -73.9517738 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570841770, + "bounds": { + "minlat": 40.8310017, + "minlon": -73.9516084, + "maxlat": 40.8311038, + "maxlon": -73.9513537 + }, + "nodes": [ + 587934450, + 3273685368 + ], + "geometry": [ + { "lat": 40.8310017, "lon": -73.9513537 }, + { "lat": 40.8311038, "lon": -73.9516084 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570841773, + "bounds": { + "minlat": 40.7697772, + "minlon": -73.9437867, + "maxlat": 40.7703074, + "maxlon": -73.9434345 + }, + "nodes": [ + 5487813176, + 8265114890, + 5487813175 + ], + "geometry": [ + { "lat": 40.7703074, "lon": -73.9437867 }, + { "lat": 40.7702564, "lon": -73.9437755 }, + { "lat": 40.7697772, "lon": -73.9434345 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570841774, + "bounds": { + "minlat": 40.7695862, + "minlon": -73.9440523, + "maxlat": 40.7698994, + "maxlon": -73.9438384 + }, + "nodes": [ + 5487813177, + 5487813182 + ], + "geometry": [ + { "lat": 40.7698994, "lon": -73.9440523 }, + { "lat": 40.7695862, "lon": -73.9438384 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570842588, + "bounds": { + "minlat": 40.8188282, + "minlon": -73.9513542, + "maxlat": 40.8190982, + "maxlon": -73.9507966 + }, + "nodes": [ + 5487817596, + 12148799345, + 12148799350, + 5487817595, + 12148799348, + 12148799347, + 12148799349, + 12148799346, + 5487817594 + ], + "geometry": [ + { "lat": 40.8189771, "lon": -73.9513542 }, + { "lat": 40.8188326, "lon": -73.9510314 }, + { "lat": 40.8188291, "lon": -73.9510198 }, + { "lat": 40.8188282, "lon": -73.9510081 }, + { "lat": 40.8188295, "lon": -73.9509975 }, + { "lat": 40.8188324, "lon": -73.9509891 }, + { "lat": 40.8188382, "lon": -73.9509818 }, + { "lat": 40.8188449, "lon": -73.9509758 }, + { "lat": 40.8190982, "lon": -73.9507966 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570842589, + "bounds": { + "minlat": 40.8187716, + "minlon": -73.9517728, + "maxlat": 40.8189130, + "maxlon": -73.9515757 + }, + "nodes": [ + 5487817601, + 13506275309, + 13506275310, + 13506275311, + 8835729576, + 5487817597 + ], + "geometry": [ + { "lat": 40.8189130, "lon": -73.9515757 }, + { "lat": 40.8189115, "lon": -73.9516148 }, + { "lat": 40.8189054, "lon": -73.9516552 }, + { "lat": 40.8188908, "lon": -73.9516864 }, + { "lat": 40.8188346, "lon": -73.9517252 }, + { "lat": 40.8187716, "lon": -73.9517728 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570842590, + "bounds": { + "minlat": 40.8186166, + "minlon": -73.9515764, + "maxlat": 40.8191496, + "maxlon": -73.9505227 + }, + "nodes": [ + 5487817600, + 5487817598, + 12148799351, + 12148799354, + 5487817599, + 12148799355, + 12148799353, + 12148799356, + 12148799352, + 5487817604 + ], + "geometry": [ + { "lat": 40.8188982, "lon": -73.9515764 }, + { "lat": 40.8188908, "lon": -73.9515595 }, + { "lat": 40.8186194, "lon": -73.9509526 }, + { "lat": 40.8186166, "lon": -73.9509421 }, + { "lat": 40.8186167, "lon": -73.9509296 }, + { "lat": 40.8186186, "lon": -73.9509206 }, + { "lat": 40.8186219, "lon": -73.9509138 }, + { "lat": 40.8186277, "lon": -73.9509064 }, + { "lat": 40.8186348, "lon": -73.9509005 }, + { "lat": 40.8191496, "lon": -73.9505227 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570842591, + "bounds": { + "minlat": 40.8190609, + "minlon": -73.9505227, + "maxlat": 40.8191496, + "maxlon": -73.9503123 + }, + "nodes": [ + 5487817604, + 8835777029, + 5487817605 + ], + "geometry": [ + { "lat": 40.8191496, "lon": -73.9505227 }, + { "lat": 40.8191059, "lon": -73.9504184 }, + { "lat": 40.8190609, "lon": -73.9503123 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570843211, + "bounds": { + "minlat": 40.8153634, + "minlon": -73.9459208, + "maxlat": 40.8156595, + "maxlon": -73.9456996 + }, + "nodes": [ + 5487825388, + 10170605769, + 5487825387 + ], + "geometry": [ + { "lat": 40.8153634, "lon": -73.9459208 }, + { "lat": 40.8154173, "lon": -73.9458805 }, + { "lat": 40.8156595, "lon": -73.9456996 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570844942, + "bounds": { + "minlat": 40.7601052, + "minlon": -73.9403045, + "maxlat": 40.7603783, + "maxlon": -73.9400102 + }, + "nodes": [ + 5487837570, + 5487837569, + 5487837568, + 5487837571 + ], + "geometry": [ + { "lat": 40.7603783, "lon": -73.9401745 }, + { "lat": 40.7601625, "lon": -73.9403045 }, + { "lat": 40.7601052, "lon": -73.9401389 }, + { "lat": 40.7603188, "lon": -73.9400102 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570844943, + "bounds": { + "minlat": 40.7603188, + "minlon": -73.9403813, + "maxlat": 40.7604531, + "maxlon": -73.9400102 + }, + "nodes": [ + 5487837572, + 6452752261, + 5487837570, + 5487837571 + ], + "geometry": [ + { "lat": 40.7604531, "lon": -73.9403813 }, + { "lat": 40.7604224, "lon": -73.9402965 }, + { "lat": 40.7603783, "lon": -73.9401745 }, + { "lat": 40.7603188, "lon": -73.9400102 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570844949, + "bounds": { + "minlat": 40.7568239, + "minlon": -73.9396326, + "maxlat": 40.7569300, + "maxlon": -73.9394286 + }, + "nodes": [ + 8332419150, + 7737876086, + 7746705680 + ], + "geometry": [ + { "lat": 40.7568239, "lon": -73.9394286 }, + { "lat": 40.7568627, "lon": -73.9395040 }, + { "lat": 40.7569300, "lon": -73.9396326 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570844951, + "bounds": { + "minlat": 40.7583342, + "minlon": -73.9457204, + "maxlat": 40.7585815, + "maxlon": -73.9454884 + }, + "nodes": [ + 7746871170, + 5487837589 + ], + "geometry": [ + { "lat": 40.7583342, "lon": -73.9457204 }, + { "lat": 40.7585815, "lon": -73.9454884 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570844952, + "bounds": { + "minlat": 40.7583710, + "minlon": -73.9459389, + "maxlat": 40.7586456, + "maxlon": -73.9456759 + }, + "nodes": [ + 5487837592, + 5487837591 + ], + "geometry": [ + { "lat": 40.7583710, "lon": -73.9459389 }, + { "lat": 40.7586456, "lon": -73.9456759 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570844957, + "bounds": { + "minlat": 40.7583070, + "minlon": -73.9461188, + "maxlat": 40.7584055, + "maxlon": -73.9455591 + }, + "nodes": [ + 5487838021, + 5487837592, + 7746871170, + 5487837590 + ], + "geometry": [ + { "lat": 40.7584055, "lon": -73.9461188 }, + { "lat": 40.7583710, "lon": -73.9459389 }, + { "lat": 40.7583342, "lon": -73.9457204 }, + { "lat": 40.7583070, "lon": -73.9455591 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570844958, + "bounds": { + "minlat": 40.7583370, + "minlon": -73.9461712, + "maxlat": 40.7588335, + "maxlon": -73.9458083 + }, + "nodes": [ + 5487838023, + 5487838021, + 5487838022 + ], + "geometry": [ + { "lat": 40.7583370, "lon": -73.9461712 }, + { "lat": 40.7584055, "lon": -73.9461188 }, + { "lat": 40.7588335, "lon": -73.9458083 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570845492, + "bounds": { + "minlat": 40.8312613, + "minlon": -73.9178330, + "maxlat": 40.8318342, + "maxlon": -73.9174989 + }, + "nodes": [ + 5487840273, + 13036716109, + 5487840272 + ], + "geometry": [ + { "lat": 40.8312613, "lon": -73.9178330 }, + { "lat": 40.8313339, "lon": -73.9177907 }, + { "lat": 40.8318342, "lon": -73.9174989 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570845494, + "bounds": { + "minlat": 40.8333090, + "minlon": -73.9226620, + "maxlat": 40.8333923, + "maxlon": -73.9224164 + }, + "nodes": [ + 5487840275, + 5487840274 + ], + "geometry": [ + { "lat": 40.8333090, "lon": -73.9224164 }, + { "lat": 40.8333923, "lon": -73.9226620 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570845495, + "bounds": { + "minlat": 40.8330051, + "minlon": -73.9225845, + "maxlat": 40.8335105, + "maxlon": -73.9223054 + }, + "nodes": [ + 5487840277, + 5487840275, + 5487840276 + ], + "geometry": [ + { "lat": 40.8335105, "lon": -73.9223054 }, + { "lat": 40.8333090, "lon": -73.9224164 }, + { "lat": 40.8330051, "lon": -73.9225845 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570845501, + "bounds": { + "minlat": 40.8364073, + "minlon": -73.9254760, + "maxlat": 40.8365173, + "maxlon": -73.9253954 + }, + "nodes": [ + 5487840284, + 5487840283 + ], + "geometry": [ + { "lat": 40.8365173, "lon": -73.9253954 }, + { "lat": 40.8364073, "lon": -73.9254760 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570845504, + "bounds": { + "minlat": 40.8364740, + "minlon": -73.9254595, + "maxlat": 40.8367394, + "maxlon": -73.9250977 + }, + "nodes": [ + 5487840286, + 5487840285, + 5487840284, + 5487840288 + ], + "geometry": [ + { "lat": 40.8367394, "lon": -73.9250977 }, + { "lat": 40.8364740, "lon": -73.9252924 }, + { "lat": 40.8365173, "lon": -73.9253954 }, + { "lat": 40.8365442, "lon": -73.9254595 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570845506, + "bounds": { + "minlat": 40.8365442, + "minlon": -73.9254595, + "maxlat": 40.8368095, + "maxlon": -73.9250977 + }, + "nodes": [ + 5487840288, + 5487840287, + 5487840286 + ], + "geometry": [ + { "lat": 40.8365442, "lon": -73.9254595 }, + { "lat": 40.8368095, "lon": -73.9252648 }, + { "lat": 40.8367394, "lon": -73.9250977 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570845508, + "bounds": { + "minlat": 40.8375780, + "minlon": -73.9261006, + "maxlat": 40.8380546, + "maxlon": -73.9258198 + }, + "nodes": [ + 5487840290, + 5487840289 + ], + "geometry": [ + { "lat": 40.8375780, "lon": -73.9261006 }, + { "lat": 40.8380546, "lon": -73.9258198 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570845510, + "bounds": { + "minlat": 40.8374598, + "minlon": -73.9266348, + "maxlat": 40.8377582, + "maxlon": -73.9257501 + }, + "nodes": [ + 5487840292, + 6879020773, + 5487840290, + 5487840291 + ], + "geometry": [ + { "lat": 40.8377582, "lon": -73.9266348 }, + { "lat": 40.8377218, "lon": -73.9265256 }, + { "lat": 40.8375780, "lon": -73.9261006 }, + { "lat": 40.8374598, "lon": -73.9257501 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570845805, + "bounds": { + "minlat": 40.8243724, + "minlon": -73.9212395, + "maxlat": 40.8246066, + "maxlon": -73.9205039 + }, + "nodes": [ + 5356401000, + 5356401001 + ], + "geometry": [ + { "lat": 40.8246066, "lon": -73.9212395 }, + { "lat": 40.8243724, "lon": -73.9205039 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570846309, + "bounds": { + "minlat": 40.8189276, + "minlon": -73.9241836, + "maxlat": 40.8189691, + "maxlon": -73.9240090 + }, + "nodes": [ + 5487843494, + 13232762730 + ], + "geometry": [ + { "lat": 40.8189276, "lon": -73.9240090 }, + { "lat": 40.8189691, "lon": -73.9241836 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570847735, + "bounds": { + "minlat": 40.8720938, + "minlon": -73.9115563, + "maxlat": 40.8721728, + "maxlon": -73.9114498 + }, + "nodes": [ + 5487852121, + 5487851014, + 5487851013 + ], + "geometry": [ + { "lat": 40.8721728, "lon": -73.9114498 }, + { "lat": 40.8721541, "lon": -73.9115095 }, + { "lat": 40.8720938, "lon": -73.9115563 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847736, + "bounds": { + "minlat": 40.8719766, + "minlon": -73.9121272, + "maxlat": 40.8723581, + "maxlon": -73.9113030 + }, + "nodes": [ + 5487851016, + 5487851013, + 5487851015 + ], + "geometry": [ + { "lat": 40.8723581, "lon": -73.9121272 }, + { "lat": 40.8720938, "lon": -73.9115563 }, + { "lat": 40.8719766, "lon": -73.9113030 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847737, + "bounds": { + "minlat": 40.8722585, + "minlon": -73.9122283, + "maxlat": 40.8726865, + "maxlon": -73.9117938 + }, + "nodes": [ + 5487851018, + 5487851016, + 5487851017 + ], + "geometry": [ + { "lat": 40.8726865, "lon": -73.9117938 }, + { "lat": 40.8723581, "lon": -73.9121272 }, + { "lat": 40.8722585, "lon": -73.9122283 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847738, + "bounds": { + "minlat": 40.8721617, + "minlon": -73.9114498, + "maxlat": 40.8722404, + "maxlon": -73.9112026 + }, + "nodes": [ + 5487852121, + 5487851020, + 9561125952, + 5487851019 + ], + "geometry": [ + { "lat": 40.8721728, "lon": -73.9114498 }, + { "lat": 40.8721617, "lon": -73.9114150 }, + { "lat": 40.8722063, "lon": -73.9112947 }, + { "lat": 40.8722404, "lon": -73.9112026 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847739, + "bounds": { + "minlat": 40.8721728, + "minlon": -73.9114498, + "maxlat": 40.8722864, + "maxlon": -73.9112325 + }, + "nodes": [ + 5487852123, + 9561125953, + 5487852122, + 5487852121 + ], + "geometry": [ + { "lat": 40.8722864, "lon": -73.9112325 }, + { "lat": 40.8722478, "lon": -73.9113194 }, + { "lat": 40.8721972, "lon": -73.9114331 }, + { "lat": 40.8721728, "lon": -73.9114498 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847740, + "bounds": { + "minlat": 40.8727160, + "minlon": -73.9081575, + "maxlat": 40.8731925, + "maxlon": -73.9079408 + }, + "nodes": [ + 5487852130, + 5487852135 + ], + "geometry": [ + { "lat": 40.8727160, "lon": -73.9081575 }, + { "lat": 40.8731925, "lon": -73.9079408 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847741, + "bounds": { + "minlat": 40.8727706, + "minlon": -73.9083378, + "maxlat": 40.8732463, + "maxlon": -73.9081460 + }, + "nodes": [ + 5487852133, + 5487852131 + ], + "geometry": [ + { "lat": 40.8732463, "lon": -73.9081460 }, + { "lat": 40.8727706, "lon": -73.9083378 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847742, + "bounds": { + "minlat": 40.8725186, + "minlon": -73.9080210, + "maxlat": 40.8731423, + "maxlon": -73.9077336 + }, + "nodes": [ + 5487852134, + 5487852141 + ], + "geometry": [ + { "lat": 40.8731423, "lon": -73.9077336 }, + { "lat": 40.8725186, "lon": -73.9080210 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847743, + "bounds": { + "minlat": 40.8725719, + "minlon": -73.9088621, + "maxlat": 40.8730304, + "maxlon": -73.9082203 + }, + "nodes": [ + 2041169511, + 2041169507, + 2041169503, + 2041169501, + 2041169493, + 5487852136 + ], + "geometry": [ + { "lat": 40.8730304, "lon": -73.9088621 }, + { "lat": 40.8728273, "lon": -73.9087256 }, + { "lat": 40.8727247, "lon": -73.9086540 }, + { "lat": 40.8726818, "lon": -73.9086014 }, + { "lat": 40.8725810, "lon": -73.9082518 }, + { "lat": 40.8725719, "lon": -73.9082203 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847744, + "bounds": { + "minlat": 40.8721433, + "minlon": -73.9082969, + "maxlat": 40.8725719, + "maxlon": -73.9072320 + }, + "nodes": [ + 5487852136, + 5487852125, + 5487852124, + 2041169480 + ], + "geometry": [ + { "lat": 40.8725719, "lon": -73.9082203 }, + { "lat": 40.8724095, "lon": -73.9082969 }, + { "lat": 40.8721433, "lon": -73.9073085 }, + { "lat": 40.8723057, "lon": -73.9072320 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847745, + "bounds": { + "minlat": 40.8728345, + "minlon": -73.9085551, + "maxlat": 40.8734663, + "maxlon": -73.9082699 + }, + "nodes": [ + 5487852126, + 5487852129 + ], + "geometry": [ + { "lat": 40.8734663, "lon": -73.9082699 }, + { "lat": 40.8728345, "lon": -73.9085551 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847746, + "bounds": { + "minlat": 40.8727160, + "minlon": -73.9086972, + "maxlat": 40.8735160, + "maxlon": -73.9080749 + }, + "nodes": [ + 5487852130, + 5487852131, + 5487852129, + 5487852128, + 5487852127, + 5487852126, + 5487852132 + ], + "geometry": [ + { "lat": 40.8727160, "lon": -73.9081575 }, + { "lat": 40.8727706, "lon": -73.9083378 }, + { "lat": 40.8728345, "lon": -73.9085551 }, + { "lat": 40.8730505, "lon": -73.9086972 }, + { "lat": 40.8735160, "lon": -73.9084773 }, + { "lat": 40.8734663, "lon": -73.9082699 }, + { "lat": 40.8734197, "lon": -73.9080749 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847747, + "bounds": { + "minlat": 40.8732463, + "minlon": -73.9081460, + "maxlat": 40.8734197, + "maxlon": -73.9080749 + }, + "nodes": [ + 5487852132, + 5487852133 + ], + "geometry": [ + { "lat": 40.8734197, "lon": -73.9080749 }, + { "lat": 40.8732463, "lon": -73.9081460 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847748, + "bounds": { + "minlat": 40.8731423, + "minlon": -73.9081460, + "maxlat": 40.8732463, + "maxlon": -73.9077336 + }, + "nodes": [ + 5487852134, + 5487852135, + 5487852133 + ], + "geometry": [ + { "lat": 40.8731423, "lon": -73.9077336 }, + { "lat": 40.8731925, "lon": -73.9079408 }, + { "lat": 40.8732463, "lon": -73.9081460 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847749, + "bounds": { + "minlat": 40.8725719, + "minlon": -73.9082203, + "maxlat": 40.8727160, + "maxlon": -73.9081575 + }, + "nodes": [ + 5487852136, + 5487852130 + ], + "geometry": [ + { "lat": 40.8725719, "lon": -73.9082203 }, + { "lat": 40.8727160, "lon": -73.9081575 } + ], + "tags": { + "highway": "service", + "level": "1" + } +}, +{ + "type": "way", + "id": 570847750, + "bounds": { + "minlat": 40.8723998, + "minlon": -73.9075812, + "maxlat": 40.8732662, + "maxlon": -73.9072056 + }, + "nodes": [ + 5487852138, + 5487852137 + ], + "geometry": [ + { "lat": 40.8732662, "lon": -73.9072056 }, + { "lat": 40.8723998, "lon": -73.9075812 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847751, + "bounds": { + "minlat": 40.8724606, + "minlon": -73.9078068, + "maxlat": 40.8733145, + "maxlon": -73.9074115 + }, + "nodes": [ + 5487852140, + 5487852139 + ], + "geometry": [ + { "lat": 40.8733145, "lon": -73.9074115 }, + { "lat": 40.8724606, "lon": -73.9078068 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847752, + "bounds": { + "minlat": 40.8731423, + "minlon": -73.9077336, + "maxlat": 40.8733669, + "maxlon": -73.9070089 + }, + "nodes": [ + 5487852143, + 5487852138, + 5487852140, + 5487852142, + 5487852134 + ], + "geometry": [ + { "lat": 40.8732254, "lon": -73.9070089 }, + { "lat": 40.8732662, "lon": -73.9072056 }, + { "lat": 40.8733145, "lon": -73.9074115 }, + { "lat": 40.8733669, "lon": -73.9076297 }, + { "lat": 40.8731423, "lon": -73.9077336 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847753, + "bounds": { + "minlat": 40.8723488, + "minlon": -73.9073919, + "maxlat": 40.8732254, + "maxlon": -73.9070089 + }, + "nodes": [ + 5487852144, + 5487852143 + ], + "geometry": [ + { "lat": 40.8723488, "lon": -73.9073919 }, + { "lat": 40.8732254, "lon": -73.9070089 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570847754, + "bounds": { + "minlat": 40.8780883, + "minlon": -73.9130263, + "maxlat": 40.8785964, + "maxlon": -73.9121921 + }, + "nodes": [ + 5487852146, + 5487852145, + 5487852149 + ], + "geometry": [ + { "lat": 40.8780883, "lon": -73.9121921 }, + { "lat": 40.8785964, "lon": -73.9129230 }, + { "lat": 40.8785071, "lon": -73.9130263 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570847755, + "bounds": { + "minlat": 40.8779403, + "minlon": -73.9130263, + "maxlat": 40.8785071, + "maxlon": -73.9121492 + }, + "nodes": [ + 5487852149, + 5487852148, + 5487852147, + 5487852146 + ], + "geometry": [ + { "lat": 40.8785071, "lon": -73.9130263 }, + { "lat": 40.8779403, "lon": -73.9122257 }, + { "lat": 40.8779991, "lon": -73.9121492 }, + { "lat": 40.8780883, "lon": -73.9121921 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570847756, + "bounds": { + "minlat": 40.8783739, + "minlon": -73.9131726, + "maxlat": 40.8785071, + "maxlon": -73.9130263 + }, + "nodes": [ + 1544847085, + 5487852149 + ], + "geometry": [ + { "lat": 40.8783739, "lon": -73.9131726 }, + { "lat": 40.8785071, "lon": -73.9130263 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570847757, + "bounds": { + "minlat": 40.8782151, + "minlon": -73.9116826, + "maxlat": 40.8783463, + "maxlon": -73.9114895 + }, + "nodes": [ + 5487852156, + 10132643595, + 5487852150 + ], + "geometry": [ + { "lat": 40.8783463, "lon": -73.9116826 }, + { "lat": 40.8782628, "lon": -73.9115597 }, + { "lat": 40.8782151, "lon": -73.9114895 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570847758, + "bounds": { + "minlat": 40.8784672, + "minlon": -73.9125413, + "maxlat": 40.8787516, + "maxlon": -73.9120245 + }, + "nodes": [ + 5487852153, + 5487852152, + 5487852151 + ], + "geometry": [ + { "lat": 40.8786371, "lon": -73.9125413 }, + { "lat": 40.8787516, "lon": -73.9123821 }, + { "lat": 40.8784672, "lon": -73.9120245 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570847759, + "bounds": { + "minlat": 40.8783463, + "minlon": -73.9125413, + "maxlat": 40.8786371, + "maxlon": -73.9116826 + }, + "nodes": [ + 5487852156, + 5487852155, + 5487852151, + 5487852154, + 5487852153 + ], + "geometry": [ + { "lat": 40.8783463, "lon": -73.9116826 }, + { "lat": 40.8785389, "lon": -73.9119247 }, + { "lat": 40.8784672, "lon": -73.9120245 }, + { "lat": 40.8783527, "lon": -73.9121837 }, + { "lat": 40.8786371, "lon": -73.9125413 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570847760, + "bounds": { + "minlat": 40.8783463, + "minlon": -73.9116826, + "maxlat": 40.8791054, + "maxlon": -73.9103419 + }, + "nodes": [ + 5487852160, + 10132643594, + 5487852159, + 5487852158, + 5487852157, + 5487852156 + ], + "geometry": [ + { "lat": 40.8790386, "lon": -73.9103419 }, + { "lat": 40.8790713, "lon": -73.9104355 }, + { "lat": 40.8791054, "lon": -73.9105332 }, + { "lat": 40.8790983, "lon": -73.9106002 }, + { "lat": 40.8790780, "lon": -73.9106512 }, + { "lat": 40.8783463, "lon": -73.9116826 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570848303, + "bounds": { + "minlat": 40.8090446, + "minlon": -73.9095729, + "maxlat": 40.8091204, + "maxlon": -73.9091881 + }, + "nodes": [ + 5487854682, + 5487854681 + ], + "geometry": [ + { "lat": 40.8091204, "lon": -73.9095729 }, + { "lat": 40.8090446, "lon": -73.9091881 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570848304, + "bounds": { + "minlat": 40.8084040, + "minlon": -73.9118053, + "maxlat": 40.8086683, + "maxlon": -73.9109190 + }, + "nodes": [ + 5487854683, + 9339595967, + 9339595966, + 5487854684 + ], + "geometry": [ + { "lat": 40.8086683, "lon": -73.9118053 }, + { "lat": 40.8086365, "lon": -73.9116988 }, + { "lat": 40.8084375, "lon": -73.9110314 }, + { "lat": 40.8084040, "lon": -73.9109190 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570848310, + "bounds": { + "minlat": 40.8122616, + "minlon": -73.9098680, + "maxlat": 40.8123456, + "maxlon": -73.9094423 + }, + "nodes": [ + 5487854703, + 10127019151, + 5487854699 + ], + "geometry": [ + { "lat": 40.8122616, "lon": -73.9094423 }, + { "lat": 40.8122754, "lon": -73.9095124 }, + { "lat": 40.8123456, "lon": -73.9098680 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570848311, + "bounds": { + "minlat": 40.8107520, + "minlon": -73.9072609, + "maxlat": 40.8109534, + "maxlon": -73.9071865 + }, + "nodes": [ + 5487854705, + 5487854704 + ], + "geometry": [ + { "lat": 40.8109534, "lon": -73.9071865 }, + { "lat": 40.8107520, "lon": -73.9072609 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570848312, + "bounds": { + "minlat": 40.8110372, + "minlon": -73.9072971, + "maxlat": 40.8111581, + "maxlon": -73.9072542 + }, + "nodes": [ + 5487854710, + 5487854706 + ], + "geometry": [ + { "lat": 40.8110372, "lon": -73.9072971 }, + { "lat": 40.8111581, "lon": -73.9072542 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570848313, + "bounds": { + "minlat": 40.8109459, + "minlon": -73.9076686, + "maxlat": 40.8113035, + "maxlon": -73.9070879 + }, + "nodes": [ + 5487854714, + 5487854713, + 5487854712, + 5487854711, + 5487854710, + 5487854709, + 5487854705, + 5487854708, + 5487854707, + 5487854706, + 5487854713 + ], + "geometry": [ + { "lat": 40.8113035, "lon": -73.9072943 }, + { "lat": 40.8111763, "lon": -73.9073440 }, + { "lat": 40.8112362, "lon": -73.9076230 }, + { "lat": 40.8111073, "lon": -73.9076686 }, + { "lat": 40.8110372, "lon": -73.9072971 }, + { "lat": 40.8109702, "lon": -73.9072542 }, + { "lat": 40.8109534, "lon": -73.9071865 }, + { "lat": 40.8109459, "lon": -73.9071563 }, + { "lat": 40.8111245, "lon": -73.9070879 }, + { "lat": 40.8111581, "lon": -73.9072542 }, + { "lat": 40.8111763, "lon": -73.9073440 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570848315, + "bounds": { + "minlat": 40.8128957, + "minlon": -73.9146718, + "maxlat": 40.8132208, + "maxlon": -73.9144853 + }, + "nodes": [ + 5487854719, + 12630597572, + 5487854718 + ], + "geometry": [ + { "lat": 40.8132208, "lon": -73.9144853 }, + { "lat": 40.8131425, "lon": -73.9145302 }, + { "lat": 40.8128957, "lon": -73.9146718 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570848401, + "bounds": { + "minlat": 40.8655966, + "minlon": -73.9068005, + "maxlat": 40.8660332, + "maxlon": -73.9060479 + }, + "nodes": [ + 2328996478, + 5487855815, + 2328996453 + ], + "geometry": [ + { "lat": 40.8655966, "lon": -73.9061264 }, + { "lat": 40.8657127, "lon": -73.9060479 }, + { "lat": 40.8660332, "lon": -73.9068005 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570848402, + "bounds": { + "minlat": 40.8660332, + "minlon": -73.9068005, + "maxlat": 40.8661152, + "maxlon": -73.9067158 + }, + "nodes": [ + 2328996453, + 5487855817, + 5487855816 + ], + "geometry": [ + { "lat": 40.8660332, "lon": -73.9068005 }, + { "lat": 40.8660605, "lon": -73.9067506 }, + { "lat": 40.8661152, "lon": -73.9067158 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570848403, + "bounds": { + "minlat": 40.8700808, + "minlon": -73.9112075, + "maxlat": 40.8704818, + "maxlon": -73.9109221 + }, + "nodes": [ + 5487855821, + 5487855820 + ], + "geometry": [ + { "lat": 40.8700808, "lon": -73.9112075 }, + { "lat": 40.8704818, "lon": -73.9109221 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570848404, + "bounds": { + "minlat": 40.8701530, + "minlon": -73.9113837, + "maxlat": 40.8708337, + "maxlon": -73.9108792 + }, + "nodes": [ + 5487855823, + 5487855822 + ], + "geometry": [ + { "lat": 40.8701530, "lon": -73.9113837 }, + { "lat": 40.8708337, "lon": -73.9108792 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570848405, + "bounds": { + "minlat": 40.8702977, + "minlon": -73.9117364, + "maxlat": 40.8709643, + "maxlon": -73.9112585 + }, + "nodes": [ + 5487855824, + 5487855819, + 5487855834 + ], + "geometry": [ + { "lat": 40.8702977, "lon": -73.9117364 }, + { "lat": 40.8707831, "lon": -73.9113882 }, + { "lat": 40.8709643, "lon": -73.9112585 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570848406, + "bounds": { + "minlat": 40.8700093, + "minlon": -73.9119214, + "maxlat": 40.8708590, + "maxlon": -73.9109168 + }, + "nodes": [ + 5487855819, + 5487855828, + 5487855827, + 5487855824, + 5487855829, + 5487855823, + 5487855821, + 5487855826, + 5487855825 + ], + "geometry": [ + { "lat": 40.8707831, "lon": -73.9113882 }, + { "lat": 40.8708590, "lon": -73.9115731 }, + { "lat": 40.8703736, "lon": -73.9119214 }, + { "lat": 40.8702977, "lon": -73.9117364 }, + { "lat": 40.8702223, "lon": -73.9115525 }, + { "lat": 40.8701530, "lon": -73.9113837 }, + { "lat": 40.8700808, "lon": -73.9112075 }, + { "lat": 40.8700093, "lon": -73.9110332 }, + { "lat": 40.8701716, "lon": -73.9109168 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570848407, + "bounds": { + "minlat": 40.8702223, + "minlon": -73.9115525, + "maxlat": 40.8713061, + "maxlon": -73.9108163 + }, + "nodes": [ + 5487855834, + 5487855831, + 5487855830, + 5487855829 + ], + "geometry": [ + { "lat": 40.8709643, "lon": -73.9112585 }, + { "lat": 40.8713061, "lon": -73.9110077 }, + { "lat": 40.8712258, "lon": -73.9108163 }, + { "lat": 40.8702223, "lon": -73.9115525 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570848408, + "bounds": { + "minlat": 40.8710301, + "minlon": -73.9114300, + "maxlat": 40.8716412, + "maxlon": -73.9110065 + }, + "nodes": [ + 5487855833, + 5487855837 + ], + "geometry": [ + { "lat": 40.8710301, "lon": -73.9114300 }, + { "lat": 40.8716412, "lon": -73.9110065 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570848409, + "bounds": { + "minlat": 40.8709643, + "minlon": -73.9116498, + "maxlat": 40.8711148, + "maxlon": -73.9112585 + }, + "nodes": [ + 5487855835, + 9561125985, + 5487855833, + 5487855834 + ], + "geometry": [ + { "lat": 40.8711148, "lon": -73.9116498 }, + { "lat": 40.8710760, "lon": -73.9115490 }, + { "lat": 40.8710301, "lon": -73.9114300 }, + { "lat": 40.8709643, "lon": -73.9112585 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570848410, + "bounds": { + "minlat": 40.8716412, + "minlon": -73.9110065, + "maxlat": 40.8719951, + "maxlon": -73.9107904 + }, + "nodes": [ + 5487855837, + 5487855836 + ], + "geometry": [ + { "lat": 40.8716412, "lon": -73.9110065 }, + { "lat": 40.8719951, "lon": -73.9107904 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570848411, + "bounds": { + "minlat": 40.8715537, + "minlon": -73.9111908, + "maxlat": 40.8725212, + "maxlon": -73.9106854 + }, + "nodes": [ + 5487855843, + 9561125984, + 5487855837, + 5487855842, + 5487855841, + 5487855836, + 5487855840, + 5487855839, + 5487855838 + ], + "geometry": [ + { "lat": 40.8717159, "lon": -73.9111908 }, + { "lat": 40.8716881, "lon": -73.9111221 }, + { "lat": 40.8716412, "lon": -73.9110065 }, + { "lat": 40.8715537, "lon": -73.9107907 }, + { "lat": 40.8717535, "lon": -73.9106854 }, + { "lat": 40.8719951, "lon": -73.9107904 }, + { "lat": 40.8721531, "lon": -73.9108591 }, + { "lat": 40.8724142, "lon": -73.9110274 }, + { "lat": 40.8725212, "lon": -73.9111353 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570849012, + "bounds": { + "minlat": 40.8591678, + "minlon": -73.9115025, + "maxlat": 40.8593924, + "maxlon": -73.9108590 + }, + "nodes": [ + 1891639850, + 5487859632 + ], + "geometry": [ + { "lat": 40.8593924, "lon": -73.9115025 }, + { "lat": 40.8591678, "lon": -73.9108590 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570849013, + "bounds": { + "minlat": 40.8590333, + "minlon": -73.9115748, + "maxlat": 40.8593021, + "maxlon": -73.9107397 + }, + "nodes": [ + 5487859635, + 5487859632, + 5487859634, + 5487859633 + ], + "geometry": [ + { "lat": 40.8593021, "lon": -73.9107397 }, + { "lat": 40.8591678, "lon": -73.9108590 }, + { "lat": 40.8590333, "lon": -73.9109784 }, + { "lat": 40.8592357, "lon": -73.9115748 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570849014, + "bounds": { + "minlat": 40.8593021, + "minlon": -73.9113887, + "maxlat": 40.8595281, + "maxlon": -73.9107397 + }, + "nodes": [ + 5487859636, + 5487859631, + 5487859635 + ], + "geometry": [ + { "lat": 40.8595281, "lon": -73.9113887 }, + { "lat": 40.8594015, "lon": -73.9110252 }, + { "lat": 40.8593021, "lon": -73.9107397 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570849015, + "bounds": { + "minlat": 40.8594015, + "minlon": -73.9112739, + "maxlat": 40.8596629, + "maxlon": -73.9109302 + }, + "nodes": [ + 5487859638, + 5487859637, + 5487859631 + ], + "geometry": [ + { "lat": 40.8596629, "lon": -73.9112739 }, + { "lat": 40.8595455, "lon": -73.9109302 }, + { "lat": 40.8594015, "lon": -73.9110252 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570849016, + "bounds": { + "minlat": 40.8594710, + "minlon": -73.9111957, + "maxlat": 40.8597646, + "maxlon": -73.9102990 + }, + "nodes": [ + 5487859639, + 10135688401, + 1891639863 + ], + "geometry": [ + { "lat": 40.8594710, "lon": -73.9102990 }, + { "lat": 40.8594921, "lon": -73.9103635 }, + { "lat": 40.8597646, "lon": -73.9111957 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 570849017, + "bounds": { + "minlat": 40.8601382, + "minlon": -73.9111093, + "maxlat": 40.8602028, + "maxlon": -73.9109372 + }, + "nodes": [ + 1891639890, + 1891639895 + ], + "geometry": [ + { "lat": 40.8601382, "lon": -73.9109372 }, + { "lat": 40.8602028, "lon": -73.9111093 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570849018, + "bounds": { + "minlat": 40.8597839, + "minlon": -73.9111467, + "maxlat": 40.8599269, + "maxlon": -73.9107572 + }, + "nodes": [ + 5487859642, + 5487859640 + ], + "geometry": [ + { "lat": 40.8599269, "lon": -73.9111467 }, + { "lat": 40.8597839, "lon": -73.9107572 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570849019, + "bounds": { + "minlat": 40.8599269, + "minlon": -73.9111467, + "maxlat": 40.8601382, + "maxlon": -73.9109372 + }, + "nodes": [ + 5487859642, + 1891639890 + ], + "geometry": [ + { "lat": 40.8599269, "lon": -73.9111467 }, + { "lat": 40.8601382, "lon": -73.9109372 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570849803, + "bounds": { + "minlat": 40.7505518, + "minlon": -73.9438449, + "maxlat": 40.7514703, + "maxlon": -73.9430000 + }, + "nodes": [ + 5487864348, + 6779904963, + 5487864346 + ], + "geometry": [ + { "lat": 40.7514703, "lon": -73.9430000 }, + { "lat": 40.7512755, "lon": -73.9431754 }, + { "lat": 40.7505518, "lon": -73.9438449 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570854314, + "bounds": { + "minlat": 40.7736099, + "minlon": -73.9313226, + "maxlat": 40.7739957, + "maxlon": -73.9311108 + }, + "nodes": [ + 5487886274, + 6452930143, + 5487886272 + ], + "geometry": [ + { "lat": 40.7736099, "lon": -73.9313226 }, + { "lat": 40.7739499, "lon": -73.9311359 }, + { "lat": 40.7739957, "lon": -73.9311108 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570854315, + "bounds": { + "minlat": 40.7745751, + "minlon": -73.9306478, + "maxlat": 40.7747415, + "maxlon": -73.9300878 + }, + "nodes": [ + 5487886276, + 6452935344, + 5487886275 + ], + "geometry": [ + { "lat": 40.7747415, "lon": -73.9306478 }, + { "lat": 40.7747183, "lon": -73.9305699 }, + { "lat": 40.7745751, "lon": -73.9300878 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570857281, + "bounds": { + "minlat": 40.8820013, + "minlon": -73.9081460, + "maxlat": 40.8823154, + "maxlon": -73.9077326 + }, + "nodes": [ + 5487896439, + 13068269716, + 5487896438, + 5487896437, + 13068269715, + 5487896436 + ], + "geometry": [ + { "lat": 40.8822456, "lon": -73.9077326 }, + { "lat": 40.8821919, "lon": -73.9077966 }, + { "lat": 40.8820013, "lon": -73.9080240 }, + { "lat": 40.8820784, "lon": -73.9081460 }, + { "lat": 40.8822675, "lon": -73.9079169 }, + { "lat": 40.8823154, "lon": -73.9078589 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570860723, + "bounds": { + "minlat": 40.7664704, + "minlon": -73.9339511, + "maxlat": 40.7668764, + "maxlon": -73.9335687 + }, + "nodes": [ + 5487911872, + 7733801860, + 5487911871 + ], + "geometry": [ + { "lat": 40.7664704, "lon": -73.9339511 }, + { "lat": 40.7665413, "lon": -73.9338843 }, + { "lat": 40.7668764, "lon": -73.9335687 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570860732, + "bounds": { + "minlat": 40.7651164, + "minlon": -73.9301962, + "maxlat": 40.7653955, + "maxlon": -73.9299256 + }, + "nodes": [ + 5487911884, + 5487911883 + ], + "geometry": [ + { "lat": 40.7651164, "lon": -73.9301962 }, + { "lat": 40.7653955, "lon": -73.9299256 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570860737, + "bounds": { + "minlat": 40.7646580, + "minlon": -73.9321200, + "maxlat": 40.7649580, + "maxlon": -73.9315958 + }, + "nodes": [ + 5487911893, + 5487911892, + 5487911890, + 6452880152, + 5487911891 + ], + "geometry": [ + { "lat": 40.7649580, "lon": -73.9315958 }, + { "lat": 40.7646580, "lon": -73.9318782 }, + { "lat": 40.7647223, "lon": -73.9319980 }, + { "lat": 40.7647292, "lon": -73.9320108 }, + { "lat": 40.7647890, "lon": -73.9321200 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570860739, + "bounds": { + "minlat": 40.7649580, + "minlon": -73.9318341, + "maxlat": 40.7650850, + "maxlon": -73.9315958 + }, + "nodes": [ + 5487911895, + 5487911889, + 5487911893 + ], + "geometry": [ + { "lat": 40.7650850, "lon": -73.9318341 }, + { "lat": 40.7650311, "lon": -73.9317252 }, + { "lat": 40.7649580, "lon": -73.9315958 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570860741, + "bounds": { + "minlat": 40.7641807, + "minlon": -73.9342493, + "maxlat": 40.7645094, + "maxlon": -73.9339928 + }, + "nodes": [ + 5487911897, + 5487911896 + ], + "geometry": [ + { "lat": 40.7645094, "lon": -73.9339928 }, + { "lat": 40.7641807, "lon": -73.9342493 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570865823, + "bounds": { + "minlat": 40.7595679, + "minlon": -73.9333023, + "maxlat": 40.7597441, + "maxlon": -73.9329176 + }, + "nodes": [ + 42801099, + 6453170245, + 5487928032 + ], + "geometry": [ + { "lat": 40.7597441, "lon": -73.9333023 }, + { "lat": 40.7596975, "lon": -73.9332006 }, + { "lat": 40.7595679, "lon": -73.9329176 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570865824, + "bounds": { + "minlat": 40.7597193, + "minlon": -73.9326762, + "maxlat": 40.7599740, + "maxlon": -73.9324605 + }, + "nodes": [ + 5487928034, + 6452553283, + 5487928033 + ], + "geometry": [ + { "lat": 40.7599740, "lon": -73.9324605 }, + { "lat": 40.7599139, "lon": -73.9325114 }, + { "lat": 40.7597193, "lon": -73.9326762 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570865825, + "bounds": { + "minlat": 40.7562018, + "minlon": -73.9357688, + "maxlat": 40.7564106, + "maxlon": -73.9354192 + }, + "nodes": [ + 5487928036, + 7791667381, + 5487928035 + ], + "geometry": [ + { "lat": 40.7562018, "lon": -73.9354192 }, + { "lat": 40.7562452, "lon": -73.9354905 }, + { "lat": 40.7564106, "lon": -73.9357688 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570870736, + "bounds": { + "minlat": 40.7550589, + "minlon": -73.9336035, + "maxlat": 40.7552307, + "maxlon": -73.9331954 + }, + "nodes": [ + 5487951317, + 7791667367, + 5487951316 + ], + "geometry": [ + { "lat": 40.7550589, "lon": -73.9331954 }, + { "lat": 40.7550901, "lon": -73.9332695 }, + { "lat": 40.7552307, "lon": -73.9336035 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570870737, + "bounds": { + "minlat": 40.7551342, + "minlon": -73.9335204, + "maxlat": 40.7552921, + "maxlon": -73.9331342 + }, + "nodes": [ + 5487951319, + 7791667349, + 5487951318 + ], + "geometry": [ + { "lat": 40.7551342, "lon": -73.9331342 }, + { "lat": 40.7551650, "lon": -73.9332095 }, + { "lat": 40.7552921, "lon": -73.9335204 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570871693, + "bounds": { + "minlat": 40.7769495, + "minlon": -73.9243492, + "maxlat": 40.7772164, + "maxlon": -73.9237504 + }, + "nodes": [ + 2302054328, + 5487961178 + ], + "geometry": [ + { "lat": 40.7772164, "lon": -73.9237504 }, + { "lat": 40.7769495, "lon": -73.9243492 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570871694, + "bounds": { + "minlat": 40.7768591, + "minlon": -73.9249219, + "maxlat": 40.7773705, + "maxlon": -73.9237766 + }, + "nodes": [ + 5487961180, + 5487961183, + 5487961179 + ], + "geometry": [ + { "lat": 40.7773705, "lon": -73.9237766 }, + { "lat": 40.7771678, "lon": -73.9242084 }, + { "lat": 40.7768591, "lon": -73.9249219 } + ], + "tags": { + "highway": "service", + "maxheight": "default", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570871695, + "bounds": { + "minlat": 40.7770009, + "minlon": -73.9250236, + "maxlat": 40.7775009, + "maxlon": -73.9238882 + }, + "nodes": [ + 2457084041, + 5487961177, + 5487961181 + ], + "geometry": [ + { "lat": 40.7775009, "lon": -73.9238882 }, + { "lat": 40.7773103, "lon": -73.9243211 }, + { "lat": 40.7770009, "lon": -73.9250236 } + ], + "tags": { + "highway": "service", + "maxheight": "default", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570871696, + "bounds": { + "minlat": 40.7771861, + "minlon": -73.9250352, + "maxlat": 40.7775999, + "maxlon": -73.9240729 + }, + "nodes": [ + 2457084042, + 5487961182, + 2302054331 + ], + "geometry": [ + { "lat": 40.7775999, "lon": -73.9240729 }, + { "lat": 40.7774454, "lon": -73.9244269 }, + { "lat": 40.7771861, "lon": -73.9250352 } + ], + "tags": { + "highway": "service", + "maxheight": "default", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570871697, + "bounds": { + "minlat": 40.7771678, + "minlon": -73.9245321, + "maxlat": 40.7775791, + "maxlon": -73.9242084 + }, + "nodes": [ + 5487961184, + 5487961182, + 5487961177, + 5487961183 + ], + "geometry": [ + { "lat": 40.7775791, "lon": -73.9245321 }, + { "lat": 40.7774454, "lon": -73.9244269 }, + { "lat": 40.7773103, "lon": -73.9243211 }, + { "lat": 40.7771678, "lon": -73.9242084 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570922989, + "bounds": { + "minlat": 40.7620580, + "minlon": -73.9245763, + "maxlat": 40.7622245, + "maxlon": -73.9242074 + }, + "nodes": [ + 5488242216, + 6406791524, + 5488242215 + ], + "geometry": [ + { "lat": 40.7620580, "lon": -73.9242074 }, + { "lat": 40.7620966, "lon": -73.9242929 }, + { "lat": 40.7622245, "lon": -73.9245763 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570922990, + "bounds": { + "minlat": 40.7621612, + "minlon": -73.9244947, + "maxlat": 40.7623283, + "maxlon": -73.9241243 + }, + "nodes": [ + 5488242213, + 6406791525, + 5488242214 + ], + "geometry": [ + { "lat": 40.7621612, "lon": -73.9241243 }, + { "lat": 40.7622002, "lon": -73.9242108 }, + { "lat": 40.7623283, "lon": -73.9244947 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570922997, + "bounds": { + "minlat": 40.7594768, + "minlon": -73.9216211, + "maxlat": 40.7599234, + "maxlon": -73.9211727 + }, + "nodes": [ + 5488250133, + 5488250132, + 5488250131, + 5488250130 + ], + "geometry": [ + { "lat": 40.7595423, "lon": -73.9216211 }, + { "lat": 40.7599234, "lon": -73.9213207 }, + { "lat": 40.7598564, "lon": -73.9211727 }, + { "lat": 40.7594768, "lon": -73.9214718 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570922998, + "bounds": { + "minlat": 40.7594768, + "minlon": -73.9217986, + "maxlat": 40.7596202, + "maxlon": -73.9214718 + }, + "nodes": [ + 5488250134, + 6452453758, + 5488250133, + 5488250130 + ], + "geometry": [ + { "lat": 40.7596202, "lon": -73.9217986 }, + { "lat": 40.7595921, "lon": -73.9217346 }, + { "lat": 40.7595423, "lon": -73.9216211 }, + { "lat": 40.7594768, "lon": -73.9214718 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570922999, + "bounds": { + "minlat": 40.7610891, + "minlon": -73.9257437, + "maxlat": 40.7615047, + "maxlon": -73.9253388 + }, + "nodes": [ + 5488250137, + 5488250136, + 5488250135, + 5488250138 + ], + "geometry": [ + { "lat": 40.7615047, "lon": -73.9254636 }, + { "lat": 40.7611457, "lon": -73.9257437 }, + { "lat": 40.7610891, "lon": -73.9256172 }, + { "lat": 40.7614458, "lon": -73.9253388 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570923000, + "bounds": { + "minlat": 40.7612265, + "minlon": -73.9254636, + "maxlat": 40.7615047, + "maxlon": -73.9248802 + }, + "nodes": [ + 5488250139, + 6406791521, + 5488250138, + 5488250137 + ], + "geometry": [ + { "lat": 40.7612265, "lon": -73.9248802 }, + { "lat": 40.7612645, "lon": -73.9249597 }, + { "lat": 40.7614458, "lon": -73.9253388 }, + { "lat": 40.7615047, "lon": -73.9254636 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 570932142, + "bounds": { + "minlat": 40.7527848, + "minlon": -73.9221167, + "maxlat": 40.7529183, + "maxlon": -73.9220600 + }, + "nodes": [ + 5488325077, + 8088590989, + 42932888 + ], + "geometry": [ + { "lat": 40.7527848, "lon": -73.9220600 }, + { "lat": 40.7528136, "lon": -73.9220714 }, + { "lat": 40.7529183, "lon": -73.9221167 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 570932145, + "bounds": { + "minlat": 40.7537331, + "minlon": -73.9240849, + "maxlat": 40.7537772, + "maxlon": -73.9239888 + }, + "nodes": [ + 5488325078, + 5488325082 + ], + "geometry": [ + { "lat": 40.7537772, "lon": -73.9240849 }, + { "lat": 40.7537331, "lon": -73.9239888 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570932148, + "bounds": { + "minlat": 40.7533660, + "minlon": -73.9243781, + "maxlat": 40.7537772, + "maxlon": -73.9239888 + }, + "nodes": [ + 5488325082, + 5488325079, + 5488325080, + 5488325078 + ], + "geometry": [ + { "lat": 40.7537331, "lon": -73.9239888 }, + { "lat": 40.7533660, "lon": -73.9242820 }, + { "lat": 40.7534101, "lon": -73.9243781 }, + { "lat": 40.7537772, "lon": -73.9240849 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 570932150, + "bounds": { + "minlat": 40.7534101, + "minlon": -73.9245642, + "maxlat": 40.7534763, + "maxlon": -73.9243781 + }, + "nodes": [ + 5488325081, + 6450632110, + 5488325080 + ], + "geometry": [ + { "lat": 40.7534763, "lon": -73.9245642 }, + { "lat": 40.7534517, "lon": -73.9244951 }, + { "lat": 40.7534101, "lon": -73.9243781 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 570932151, + "bounds": { + "minlat": 40.7537331, + "minlon": -73.9239888, + "maxlat": 40.7538503, + "maxlon": -73.9238962 + }, + "nodes": [ + 5488325083, + 6450632112, + 5488325082 + ], + "geometry": [ + { "lat": 40.7538503, "lon": -73.9238962 }, + { "lat": 40.7537839, "lon": -73.9239487 }, + { "lat": 40.7537331, "lon": -73.9239888 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 571267477, + "bounds": { + "minlat": 40.7178555, + "minlon": -74.0079550, + "maxlat": 40.7180950, + "maxlon": -74.0074175 + }, + "nodes": [ + 5490721611, + 8304498527, + 5490721610 + ], + "geometry": [ + { "lat": 40.7178555, "lon": -74.0074175 }, + { "lat": 40.7178945, "lon": -74.0075050 }, + { "lat": 40.7180950, "lon": -74.0079550 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 571267478, + "bounds": { + "minlat": 40.7183721, + "minlon": -74.0088609, + "maxlat": 40.7185345, + "maxlon": -74.0085468 + }, + "nodes": [ + 5490721614, + 8304498528, + 5490721613, + 5490721612 + ], + "geometry": [ + { "lat": 40.7183889, "lon": -74.0088609 }, + { "lat": 40.7183795, "lon": -74.0087554 }, + { "lat": 40.7183721, "lon": -74.0086596 }, + { "lat": 40.7185345, "lon": -74.0085468 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 571277265, + "bounds": { + "minlat": 40.8661825, + "minlon": -73.9284443, + "maxlat": 40.8661860, + "maxlon": -73.9283437 + }, + "nodes": [ + 8189012608, + 2070984278 + ], + "geometry": [ + { "lat": 40.8661860, "lon": -73.9283437 }, + { "lat": 40.8661825, "lon": -73.9284443 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 571277267, + "bounds": { + "minlat": 40.8659429, + "minlon": -73.9283745, + "maxlat": 40.8663296, + "maxlon": -73.9282274 + }, + "nodes": [ + 5490791421, + 9561395246, + 5490791120, + 5490791119, + 1209512068, + 1209512086, + 5490791118 + ], + "geometry": [ + { "lat": 40.8663296, "lon": -73.9282274 }, + { "lat": 40.8662751, "lon": -73.9283034 }, + { "lat": 40.8662520, "lon": -73.9283356 }, + { "lat": 40.8661864, "lon": -73.9283316 }, + { "lat": 40.8660384, "lon": -73.9283227 }, + { "lat": 40.8659997, "lon": -73.9283204 }, + { "lat": 40.8659429, "lon": -73.9283745 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 571277269, + "bounds": { + "minlat": 40.8663673, + "minlon": -73.9289063, + "maxlat": 40.8666000, + "maxlon": -73.9285509 + }, + "nodes": [ + 5490791423, + 9561395248, + 6909635181, + 5490791422 + ], + "geometry": [ + { "lat": 40.8666000, "lon": -73.9285509 }, + { "lat": 40.8665476, "lon": -73.9286338 }, + { "lat": 40.8665138, "lon": -73.9286873 }, + { "lat": 40.8663673, "lon": -73.9289063 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 571279374, + "bounds": { + "minlat": 40.7110816, + "minlon": -74.0163790, + "maxlat": 40.7111702, + "maxlon": -74.0159908 + }, + "nodes": [ + 5490801909, + 11424681238, + 11374486388, + 4281671258 + ], + "geometry": [ + { "lat": 40.7111702, "lon": -74.0163790 }, + { "lat": 40.7111581, "lon": -74.0163260 }, + { "lat": 40.7111134, "lon": -74.0161302 }, + { "lat": 40.7110816, "lon": -74.0159908 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "5 mph", + "service": "driveway", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 571279375, + "bounds": { + "minlat": 40.7111702, + "minlon": -74.0166021, + "maxlat": 40.7112211, + "maxlon": -74.0163790 + }, + "nodes": [ + 5490801910, + 10308148403, + 5490801909 + ], + "geometry": [ + { "lat": 40.7112211, "lon": -74.0166021 }, + { "lat": 40.7111798, "lon": -74.0164210 }, + { "lat": 40.7111702, "lon": -74.0163790 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "5 mph", + "motor_vehicle": "private", + "service": "driveway", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 571279376, + "bounds": { + "minlat": 40.7111089, + "minlon": -74.0173321, + "maxlat": 40.7112928, + "maxlon": -74.0172639 + }, + "nodes": [ + 5490801911, + 5490801912 + ], + "geometry": [ + { "lat": 40.7112928, "lon": -74.0172639 }, + { "lat": 40.7111089, "lon": -74.0173321 } + ], + "tags": { + "access": "private", + "foot": "yes", + "highway": "service", + "layer": "-1", + "maxspeed": "5 mph", + "motor_vehicle": "private", + "service": "driveway", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 571281945, + "bounds": { + "minlat": 40.8573129, + "minlon": -73.9304867, + "maxlat": 40.8575483, + "maxlon": -73.9299578 + }, + "nodes": [ + 704441652, + 7050789286, + 6960166486, + 6960166487, + 5490821192, + 5490821191 + ], + "geometry": [ + { "lat": 40.8573129, "lon": -73.9304867 }, + { "lat": 40.8573674, "lon": -73.9304722 }, + { "lat": 40.8574104, "lon": -73.9304607 }, + { "lat": 40.8574702, "lon": -73.9304312 }, + { "lat": 40.8575058, "lon": -73.9304083 }, + { "lat": 40.8575483, "lon": -73.9299578 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 571281947, + "bounds": { + "minlat": 40.8621837, + "minlon": -73.9299945, + "maxlat": 40.8623213, + "maxlon": -73.9294361 + }, + "nodes": [ + 1764647103, + 5490821193, + 11586960612, + 6882309080, + 1763749977 + ], + "geometry": [ + { "lat": 40.8623213, "lon": -73.9294361 }, + { "lat": 40.8623026, "lon": -73.9295946 }, + { "lat": 40.8622368, "lon": -73.9298158 }, + { "lat": 40.8622239, "lon": -73.9298570 }, + { "lat": 40.8621837, "lon": -73.9299945 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "secondary", + "name": "Sherman Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 571283884, + "bounds": { + "minlat": 40.8774148, + "minlon": -73.9191686, + "maxlat": 40.8782019, + "maxlon": -73.9186777 + }, + "nodes": [ + 1545167975, + 13041475422, + 5490835773, + 5490835772, + 5490835771, + 5490835770, + 5490835769, + 5490835768 + ], + "geometry": [ + { "lat": 40.8774148, "lon": -73.9189524 }, + { "lat": 40.8774497, "lon": -73.9188813 }, + { "lat": 40.8774870, "lon": -73.9188051 }, + { "lat": 40.8777182, "lon": -73.9186777 }, + { "lat": 40.8779038, "lon": -73.9187273 }, + { "lat": 40.8780853, "lon": -73.9189070 }, + { "lat": 40.8780447, "lon": -73.9190720 }, + { "lat": 40.8782019, "lon": -73.9191686 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 571283885, + "bounds": { + "minlat": 40.8778999, + "minlon": -73.9185932, + "maxlat": 40.8780630, + "maxlon": -73.9176411 + }, + "nodes": [ + 1545120634, + 13041475421, + 5490835778, + 5490835777, + 5490835776, + 5490835775, + 5490835774 + ], + "geometry": [ + { "lat": 40.8778999, "lon": -73.9176411 }, + { "lat": 40.8779362, "lon": -73.9177032 }, + { "lat": 40.8780630, "lon": -73.9179200 }, + { "lat": 40.8780214, "lon": -73.9179803 }, + { "lat": 40.8779646, "lon": -73.9180286 }, + { "lat": 40.8779697, "lon": -73.9184752 }, + { "lat": 40.8779890, "lon": -73.9185932 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 571285132, + "bounds": { + "minlat": 40.8589933, + "minlon": -73.9210478, + "maxlat": 40.8601662, + "maxlon": -73.9196262 + }, + "nodes": [ + 12811981921, + 5490844635, + 5490844634 + ], + "geometry": [ + { "lat": 40.8601662, "lon": -73.9210478 }, + { "lat": 40.8594015, "lon": -73.9205564 }, + { "lat": 40.8589933, "lon": -73.9196262 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Academy Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 571422924, + "bounds": { + "minlat": 40.7550218, + "minlon": -73.9452875, + "maxlat": 40.7554583, + "maxlon": -73.9444314 + }, + "nodes": [ + 5491803946, + 5491803926, + 5491803952, + 5491803931 + ], + "geometry": [ + { "lat": 40.7554583, "lon": -73.9452875 }, + { "lat": 40.7552710, "lon": -73.9451292 }, + { "lat": 40.7550291, "lon": -73.9446775 }, + { "lat": 40.7550218, "lon": -73.9444314 } + ], + "tags": { + "highway": "residential", + "name": "41st Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 571422925, + "bounds": { + "minlat": 40.7550218, + "minlon": -73.9452875, + "maxlat": 40.7554583, + "maxlon": -73.9444314 + }, + "nodes": [ + 5491803931, + 5491803930, + 5491803928, + 5491803946 + ], + "geometry": [ + { "lat": 40.7550218, "lon": -73.9444314 }, + { "lat": 40.7552308, "lon": -73.9445807 }, + { "lat": 40.7554436, "lon": -73.9450200 }, + { "lat": 40.7554583, "lon": -73.9452875 } + ], + "tags": { + "highway": "residential", + "name": "41st Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 571651963, + "bounds": { + "minlat": 40.7464063, + "minlon": -73.9808685, + "maxlat": 40.7468789, + "maxlon": -73.9797439 + }, + "nodes": [ + 42445374, + 8119462494, + 12183285331, + 9971314381 + ], + "geometry": [ + { "lat": 40.7464063, "lon": -73.9797439 }, + { "lat": 40.7464466, "lon": -73.9798409 }, + { "lat": 40.7464732, "lon": -73.9799042 }, + { "lat": 40.7468789, "lon": -73.9808685 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 572068179, + "bounds": { + "minlat": 40.7105090, + "minlon": -73.9693720, + "maxlat": 40.7107989, + "maxlon": -73.9685180 + }, + "nodes": [ + 5496591144, + 5496591143, + 9990583005, + 9132422170, + 5496591142, + 5849190228, + 5849190229 + ], + "geometry": [ + { "lat": 40.7107396, "lon": -73.9685180 }, + { "lat": 40.7107265, "lon": -73.9686005 }, + { "lat": 40.7107254, "lon": -73.9686444 }, + { "lat": 40.7107237, "lon": -73.9686994 }, + { "lat": 40.7107989, "lon": -73.9690865 }, + { "lat": 40.7105090, "lon": -73.9691725 }, + { "lat": 40.7105470, "lon": -73.9693720 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "covered": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "motor_vehicle": "permissive", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 572085022, + "bounds": { + "minlat": 40.7100245, + "minlon": -73.9856521, + "maxlat": 40.7100895, + "maxlon": -73.9850021 + }, + "nodes": [ + 5496610245, + 5496610244 + ], + "geometry": [ + { "lat": 40.7100245, "lon": -73.9856521 }, + { "lat": 40.7100895, "lon": -73.9850021 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 572085023, + "bounds": { + "minlat": 40.7100868, + "minlon": -73.9865335, + "maxlat": 40.7102838, + "maxlon": -73.9859019 + }, + "nodes": [ + 5496610252, + 5496610251, + 5496610250 + ], + "geometry": [ + { "lat": 40.7102152, "lon": -73.9865335 }, + { "lat": 40.7102838, "lon": -73.9859416 }, + { "lat": 40.7100868, "lon": -73.9859019 } + ], + "tags": { + "access": "private", + "foot": "no", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 572085024, + "bounds": { + "minlat": 40.7097983, + "minlon": -73.9875742, + "maxlat": 40.7103855, + "maxlon": -73.9874618 + }, + "nodes": [ + 11037590233, + 11037590239, + 11037590234, + 5496610254, + 5458548435 + ], + "geometry": [ + { "lat": 40.7103855, "lon": -73.9875742 }, + { "lat": 40.7103185, "lon": -73.9875607 }, + { "lat": 40.7103018, "lon": -73.9875580 }, + { "lat": 40.7101295, "lon": -73.9875226 }, + { "lat": 40.7097983, "lon": -73.9874618 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 572344422, + "bounds": { + "minlat": 40.8352024, + "minlon": -74.0106850, + "maxlat": 40.8354240, + "maxlon": -74.0101587 + }, + "nodes": [ + 103125595, + 103125597 + ], + "geometry": [ + { "lat": 40.8352024, "lon": -74.0101587 }, + { "lat": 40.8354240, "lon": -74.0106850 } + ], + "tags": { + "highway": "residential", + "name": "River Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 573066551, + "bounds": { + "minlat": 40.7137404, + "minlon": -73.9196325, + "maxlat": 40.7137483, + "maxlon": -73.9195095 + }, + "nodes": [ + 3325564422, + 7706126100, + 5504968066 + ], + "geometry": [ + { "lat": 40.7137483, "lon": -73.9196325 }, + { "lat": 40.7137454, "lon": -73.9195876 }, + { "lat": 40.7137404, "lon": -73.9195095 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 573066552, + "bounds": { + "minlat": 40.7137483, + "minlon": -73.9206930, + "maxlat": 40.7138171, + "maxlon": -73.9196325 + }, + "nodes": [ + 42809915, + 9755789232, + 3325564422 + ], + "geometry": [ + { "lat": 40.7138171, "lon": -73.9206930 }, + { "lat": 40.7138041, "lon": -73.9204746 }, + { "lat": 40.7137483, "lon": -73.9196325 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 573160156, + "bounds": { + "minlat": 40.8492990, + "minlon": -73.9729910, + "maxlat": 40.8513210, + "maxlon": -73.9710510 + }, + "nodes": [ + 103235586, + 7111637726, + 7111637717, + 7442921595, + 7431516962, + 103154238, + 7244015655, + 7428323368, + 103235584 + ], + "geometry": [ + { "lat": 40.8513210, "lon": -73.9710510 }, + { "lat": 40.8510674, "lon": -73.9712941 }, + { "lat": 40.8509439, "lon": -73.9714125 }, + { "lat": 40.8508914, "lon": -73.9714629 }, + { "lat": 40.8508642, "lon": -73.9714890 }, + { "lat": 40.8502800, "lon": -73.9720490 }, + { "lat": 40.8497489, "lon": -73.9725590 }, + { "lat": 40.8496752, "lon": -73.9726297 }, + { "lat": 40.8492990, "lon": -73.9729910 } + ], + "tags": { + "highway": "residential", + "name": "Gerome Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 573167383, + "bounds": { + "minlat": 40.8619165, + "minlon": -73.9608627, + "maxlat": 40.8628977, + "maxlon": -73.9597786 + }, + "nodes": [ + 103238936, + 103238938, + 103238939 + ], + "geometry": [ + { "lat": 40.8619165, "lon": -73.9608627 }, + { "lat": 40.8625740, "lon": -73.9601300 }, + { "lat": 40.8628977, "lon": -73.9597786 } + ], + "tags": { + "highway": "residential", + "name": "7th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "7th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 573167387, + "bounds": { + "minlat": 40.8614514, + "minlon": -73.9613189, + "maxlat": 40.8619165, + "maxlon": -73.9608627 + }, + "nodes": [ + 103238932, + 3701902730, + 103238934, + 103238936 + ], + "geometry": [ + { "lat": 40.8614514, "lon": -73.9613189 }, + { "lat": 40.8614972, "lon": -73.9612771 }, + { "lat": 40.8615606, "lon": -73.9612115 }, + { "lat": 40.8619165, "lon": -73.9608627 } + ], + "tags": { + "highway": "residential", + "name": "7th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "7th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 573218874, + "bounds": { + "minlat": 40.7711360, + "minlon": -73.9289332, + "maxlat": 40.7721598, + "maxlon": -73.9268125 + }, + "nodes": [ + 42826038, + 6452796563, + 13637441789, + 2886112267, + 3570422545, + 42833057 + ], + "geometry": [ + { "lat": 40.7711360, "lon": -73.9268125 }, + { "lat": 40.7711962, "lon": -73.9269415 }, + { "lat": 40.7714906, "lon": -73.9275723 }, + { "lat": 40.7715375, "lon": -73.9276729 }, + { "lat": 40.7720444, "lon": -73.9287814 }, + { "lat": 40.7721598, "lon": -73.9289332 } + ], + "tags": { + "highway": "residential", + "name": "28th Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 573218875, + "bounds": { + "minlat": 40.7705233, + "minlon": -73.9273070, + "maxlat": 40.7711360, + "maxlon": -73.9268125 + }, + "nodes": [ + 42826038, + 11619032903, + 2883544421, + 5375687396, + 42826040 + ], + "geometry": [ + { "lat": 40.7711360, "lon": -73.9268125 }, + { "lat": 40.7709387, "lon": -73.9269718 }, + { "lat": 40.7708266, "lon": -73.9270623 }, + { "lat": 40.7705801, "lon": -73.9272611 }, + { "lat": 40.7705233, "lon": -73.9273070 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 573228989, + "bounds": { + "minlat": 40.7609096, + "minlon": -73.9711599, + "maxlat": 40.7615775, + "maxlon": -73.9706710 + }, + "nodes": [ + 42443613, + 10125228000, + 12834723226, + 10125228004, + 42432834 + ], + "geometry": [ + { "lat": 40.7609096, "lon": -73.9711599 }, + { "lat": 40.7609644, "lon": -73.9711197 }, + { "lat": 40.7614495, "lon": -73.9707647 }, + { "lat": 40.7614797, "lon": -73.9707426 }, + { "lat": 40.7615775, "lon": -73.9706710 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 573476359, + "bounds": { + "minlat": 40.7460367, + "minlon": -73.9821813, + "maxlat": 40.7464603, + "maxlon": -73.9819120 + }, + "nodes": [ + 561042188, + 3786901747, + 3786901729 + ], + "geometry": [ + { "lat": 40.7464603, "lon": -73.9819120 }, + { "lat": 40.7463951, "lon": -73.9819464 }, + { "lat": 40.7460367, "lon": -73.9821813 } + ], + "tags": { + "foot": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 573545165, + "bounds": { + "minlat": 40.8577611, + "minlon": -74.0166477, + "maxlat": 40.8577822, + "maxlon": -74.0165577 + }, + "nodes": [ + 5508080942, + 5508080941 + ], + "geometry": [ + { "lat": 40.8577822, "lon": -74.0166477 }, + { "lat": 40.8577611, "lon": -74.0165577 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 573545166, + "bounds": { + "minlat": 40.8574642, + "minlon": -74.0167485, + "maxlat": 40.8574883, + "maxlon": -74.0166595 + }, + "nodes": [ + 5508080944, + 5508080943 + ], + "geometry": [ + { "lat": 40.8574883, "lon": -74.0167485 }, + { "lat": 40.8574642, "lon": -74.0166595 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 573545167, + "bounds": { + "minlat": 40.8567163, + "minlon": -74.0169995, + "maxlat": 40.8567336, + "maxlon": -74.0169082 + }, + "nodes": [ + 5508080946, + 5508080945 + ], + "geometry": [ + { "lat": 40.8567336, "lon": -74.0169995 }, + { "lat": 40.8567163, "lon": -74.0169082 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 573545168, + "bounds": { + "minlat": 40.8564134, + "minlon": -74.0170969, + "maxlat": 40.8564304, + "maxlon": -74.0170055 + }, + "nodes": [ + 5508080948, + 5508080947 + ], + "geometry": [ + { "lat": 40.8564304, "lon": -74.0170969 }, + { "lat": 40.8564134, "lon": -74.0170055 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 573545169, + "bounds": { + "minlat": 40.8544002, + "minlon": -74.0178212, + "maxlat": 40.8544182, + "maxlon": -74.0177299 + }, + "nodes": [ + 5508080950, + 5508080949 + ], + "geometry": [ + { "lat": 40.8544182, "lon": -74.0178212 }, + { "lat": 40.8544002, "lon": -74.0177299 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 573545170, + "bounds": { + "minlat": 40.8540123, + "minlon": -74.0179554, + "maxlat": 40.8540356, + "maxlon": -74.0178658 + }, + "nodes": [ + 5508080952, + 5508080951 + ], + "geometry": [ + { "lat": 40.8540356, "lon": -74.0179554 }, + { "lat": 40.8540123, "lon": -74.0178658 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 573545171, + "bounds": { + "minlat": 40.8531784, + "minlon": -74.0182451, + "maxlat": 40.8531952, + "maxlon": -74.0181547 + }, + "nodes": [ + 5508080954, + 5508080953 + ], + "geometry": [ + { "lat": 40.8531952, "lon": -74.0182451 }, + { "lat": 40.8531784, "lon": -74.0181547 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 573545172, + "bounds": { + "minlat": 40.8519950, + "minlon": -74.0186714, + "maxlat": 40.8520140, + "maxlon": -74.0185874 + }, + "nodes": [ + 5508080965, + 103212069 + ], + "geometry": [ + { "lat": 40.8519950, "lon": -74.0185874 }, + { "lat": 40.8520140, "lon": -74.0186714 } + ], + "tags": { + "highway": "residential", + "name": "Overpeck Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overpeck", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 573545173, + "bounds": { + "minlat": 40.8519950, + "minlon": -74.0185874, + "maxlat": 40.8584523, + "maxlon": -74.0163175 + }, + "nodes": [ + 5508080965, + 5508080963, + 5508080962, + 5508080953, + 5508080961, + 5508080951, + 5508080949, + 5508080960, + 5508080959, + 5508080958, + 5508080947, + 5508080945, + 5508080957, + 5508080956, + 5508080943, + 5508080941, + 5508080955, + 5508080939, + 5508080964 + ], + "geometry": [ + { "lat": 40.8519950, "lon": -74.0185874 }, + { "lat": 40.8523516, "lon": -74.0184502 }, + { "lat": 40.8525462, "lon": -74.0183704 }, + { "lat": 40.8531784, "lon": -74.0181547 }, + { "lat": 40.8535913, "lon": -74.0180102 }, + { "lat": 40.8540123, "lon": -74.0178658 }, + { "lat": 40.8544002, "lon": -74.0177299 }, + { "lat": 40.8548192, "lon": -74.0175831 }, + { "lat": 40.8552079, "lon": -74.0174445 }, + { "lat": 40.8560406, "lon": -74.0171253 }, + { "lat": 40.8564134, "lon": -74.0170055 }, + { "lat": 40.8567163, "lon": -74.0169082 }, + { "lat": 40.8570426, "lon": -74.0168026 }, + { "lat": 40.8571175, "lon": -74.0167784 }, + { "lat": 40.8574642, "lon": -74.0166595 }, + { "lat": 40.8577611, "lon": -74.0165577 }, + { "lat": 40.8581157, "lon": -74.0164134 }, + { "lat": 40.8583608, "lon": -74.0163175 }, + { "lat": 40.8584523, "lon": -74.0163343 } + ], + "tags": { + "highway": "residential", + "name": "Overpeck Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overpeck", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 573545174, + "bounds": { + "minlat": 40.8584523, + "minlon": -74.0163343, + "maxlat": 40.8604643, + "maxlon": -74.0158178 + }, + "nodes": [ + 5508080964, + 103212077, + 103270660, + 103212081, + 103212082, + 103212083, + 103212084 + ], + "geometry": [ + { "lat": 40.8584523, "lon": -74.0163343 }, + { "lat": 40.8593675, "lon": -74.0161322 }, + { "lat": 40.8596031, "lon": -74.0160628 }, + { "lat": 40.8598628, "lon": -74.0159962 }, + { "lat": 40.8601072, "lon": -74.0159245 }, + { "lat": 40.8602919, "lon": -74.0158713 }, + { "lat": 40.8604643, "lon": -74.0158178 } + ], + "tags": { + "highway": "residential", + "name": "Overpeck Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overpeck", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 573545175, + "bounds": { + "minlat": 40.8578107, + "minlon": -74.0165074, + "maxlat": 40.8581329, + "maxlon": -74.0151421 + }, + "nodes": [ + 103143391, + 5508080955, + 5935772339, + 103108479 + ], + "geometry": [ + { "lat": 40.8581329, "lon": -74.0165074 }, + { "lat": 40.8581157, "lon": -74.0164134 }, + { "lat": 40.8579047, "lon": -74.0155337 }, + { "lat": 40.8578107, "lon": -74.0151421 } + ], + "tags": { + "highway": "residential", + "name": "Preston Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Preston", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 573554220, + "bounds": { + "minlat": 40.8740572, + "minlon": -74.0150480, + "maxlat": 40.8750180, + "maxlon": -74.0124340 + }, + "nodes": [ + 103214411, + 103298088, + 6592338035, + 6592338016, + 103169828 + ], + "geometry": [ + { "lat": 40.8740572, "lon": -74.0124340 }, + { "lat": 40.8743730, "lon": -74.0133450 }, + { "lat": 40.8745481, "lon": -74.0138072 }, + { "lat": 40.8746763, "lon": -74.0141458 }, + { "lat": 40.8750180, "lon": -74.0150480 } + ], + "tags": { + "highway": "residential", + "name": "Hillside Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 573607581, + "bounds": { + "minlat": 40.7350401, + "minlon": -73.9193689, + "maxlat": 40.7353766, + "maxlon": -73.9192981 + }, + "nodes": [ + 42825306, + 10724078677, + 42798095 + ], + "geometry": [ + { "lat": 40.7353766, "lon": -73.9192981 }, + { "lat": 40.7353136, "lon": -73.9193114 }, + { "lat": 40.7350401, "lon": -73.9193689 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "-1", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "47th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 573612064, + "bounds": { + "minlat": 40.7212461, + "minlon": -73.9365091, + "maxlat": 40.7216378, + "maxlon": -73.9350001 + }, + "nodes": [ + 42484241, + 9937834414, + 42484243 + ], + "geometry": [ + { "lat": 40.7212461, "lon": -73.9365091 }, + { "lat": 40.7212816, "lon": -73.9363648 }, + { "lat": 40.7216378, "lon": -73.9350001 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Division Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 573758045, + "bounds": { + "minlat": 40.7850046, + "minlon": -74.0065898, + "maxlat": 40.7854024, + "maxlon": -74.0060590 + }, + "nodes": [ + 5509633558, + 7468537478, + 5509633559, + 5509633560, + 5509633561, + 5509633562, + 5509633563, + 7468537477, + 5509633568, + 103876579 + ], + "geometry": [ + { "lat": 40.7854024, "lon": -74.0065079 }, + { "lat": 40.7853138, "lon": -74.0065454 }, + { "lat": 40.7851939, "lon": -74.0065898 }, + { "lat": 40.7850556, "lon": -74.0065244 }, + { "lat": 40.7850046, "lon": -74.0063514 }, + { "lat": 40.7850585, "lon": -74.0061494 }, + { "lat": 40.7851197, "lon": -74.0060590 }, + { "lat": 40.7851632, "lon": -74.0060595 }, + { "lat": 40.7851808, "lon": -74.0060597 }, + { "lat": 40.7852683, "lon": -74.0060789 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 573758046, + "bounds": { + "minlat": 40.7846435, + "minlon": -74.0060590, + "maxlat": 40.7851197, + "maxlon": -74.0055264 + }, + "nodes": [ + 5509633563, + 5509633564, + 5509633565, + 5509633566, + 5509633567 + ], + "geometry": [ + { "lat": 40.7851197, "lon": -74.0060590 }, + { "lat": 40.7850687, "lon": -74.0058379 }, + { "lat": 40.7849464, "lon": -74.0056148 }, + { "lat": 40.7847760, "lon": -74.0055264 }, + { "lat": 40.7846435, "lon": -74.0058629 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 573829799, + "bounds": { + "minlat": 40.7067920, + "minlon": -73.9339286, + "maxlat": 40.7074841, + "maxlon": -73.9337110 + }, + "nodes": [ + 42496377, + 9755371948, + 42476829, + 7493940432, + 42487173 + ], + "geometry": [ + { "lat": 40.7074841, "lon": -73.9339286 }, + { "lat": 40.7074162, "lon": -73.9338977 }, + { "lat": 40.7070737, "lon": -73.9337934 }, + { "lat": 40.7069489, "lon": -73.9337566 }, + { "lat": 40.7067920, "lon": -73.9337110 } + ], + "tags": { + "highway": "residential", + "name": "Bogart Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 573838648, + "bounds": { + "minlat": 40.7007295, + "minlon": -73.9946344, + "maxlat": 40.7008414, + "maxlon": -73.9942250 + }, + "nodes": [ + 598202959, + 11685154479, + 10739408392, + 42502400 + ], + "geometry": [ + { "lat": 40.7008414, "lon": -73.9946344 }, + { "lat": 40.7008375, "lon": -73.9946199 }, + { "lat": 40.7007464, "lon": -73.9942872 }, + { "lat": 40.7007295, "lon": -73.9942250 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Middagh Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Middagh", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 573872149, + "bounds": { + "minlat": 40.7122880, + "minlon": -73.9304961, + "maxlat": 40.7125759, + "maxlon": -73.9291836 + }, + "nodes": [ + 42502458, + 9767625279, + 9870296979, + 9870296978, + 9870296977, + 42502462 + ], + "geometry": [ + { "lat": 40.7125759, "lon": -73.9291836 }, + { "lat": 40.7125571, "lon": -73.9292782 }, + { "lat": 40.7125325, "lon": -73.9293336 }, + { "lat": 40.7124617, "lon": -73.9296438 }, + { "lat": 40.7124708, "lon": -73.9297275 }, + { "lat": 40.7122880, "lon": -73.9304961 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 573872912, + "bounds": { + "minlat": 40.6994688, + "minlon": -73.9396744, + "maxlat": 40.7006800, + "maxlon": -73.9384840 + }, + "nodes": [ + 42505465, + 9752127083, + 8468050520, + 9301423376, + 42529638 + ], + "geometry": [ + { "lat": 40.6994688, "lon": -73.9396744 }, + { "lat": 40.6995274, "lon": -73.9396170 }, + { "lat": 40.7005941, "lon": -73.9385731 }, + { "lat": 40.7006289, "lon": -73.9385371 }, + { "lat": 40.7006800, "lon": -73.9384840 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Ellery Street", + "name:etymology:wikidata": "Q567964", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Ellery", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 574619743, + "bounds": { + "minlat": 40.7151097, + "minlon": -73.9281129, + "maxlat": 40.7152019, + "maxlon": -73.9280630 + }, + "nodes": [ + 5515218185, + 10840566515, + 5515218186 + ], + "geometry": [ + { "lat": 40.7152019, "lon": -73.9281129 }, + { "lat": 40.7151849, "lon": -73.9281039 }, + { "lat": 40.7151097, "lon": -73.9280630 } + ], + "tags": { + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 575499268, + "bounds": { + "minlat": 40.8162080, + "minlon": -73.9380068, + "maxlat": 40.8169365, + "maxlon": -73.9374999 + }, + "nodes": [ + 5522139153, + 8212384268, + 5522139156, + 8212389988, + 5522139154, + 5522139155 + ], + "geometry": [ + { "lat": 40.8162080, "lon": -73.9378676 }, + { "lat": 40.8162850, "lon": -73.9378135 }, + { "lat": 40.8163032, "lon": -73.9378007 }, + { "lat": 40.8163188, "lon": -73.9377896 }, + { "lat": 40.8167274, "lon": -73.9374999 }, + { "lat": 40.8169365, "lon": -73.9380068 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 575499827, + "bounds": { + "minlat": 40.8177850, + "minlon": -73.9372850, + "maxlat": 40.8182221, + "maxlon": -73.9369712 + }, + "nodes": [ + 5522138336, + 8212384283, + 5522138342, + 5522138337 + ], + "geometry": [ + { "lat": 40.8182221, "lon": -73.9369712 }, + { "lat": 40.8181496, "lon": -73.9370229 }, + { "lat": 40.8181203, "lon": -73.9370433 }, + { "lat": 40.8177850, "lon": -73.9372850 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 575499828, + "bounds": { + "minlat": 40.8176861, + "minlon": -73.9370744, + "maxlat": 40.8181298, + "maxlon": -73.9367559 + }, + "nodes": [ + 5522138338, + 8212384282, + 5522138343, + 5522138339 + ], + "geometry": [ + { "lat": 40.8181298, "lon": -73.9367559 }, + { "lat": 40.8180631, "lon": -73.9368064 }, + { "lat": 40.8180317, "lon": -73.9368287 }, + { "lat": 40.8176861, "lon": -73.9370744 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 575499829, + "bounds": { + "minlat": 40.8176027, + "minlon": -73.9368692, + "maxlat": 40.8180401, + "maxlon": -73.9365467 + }, + "nodes": [ + 5522138340, + 8212384281, + 5522138344, + 5522138341 + ], + "geometry": [ + { "lat": 40.8180401, "lon": -73.9365467 }, + { "lat": 40.8179724, "lon": -73.9366025 }, + { "lat": 40.8179457, "lon": -73.9366218 }, + { "lat": 40.8176027, "lon": -73.9368692 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 575505274, + "bounds": { + "minlat": 40.7588019, + "minlon": -73.9858314, + "maxlat": 40.7588860, + "maxlon": -73.9857703 + }, + "nodes": [ + 5522182776, + 6598535207, + 5522182779 + ], + "geometry": [ + { "lat": 40.7588860, "lon": -73.9857703 }, + { "lat": 40.7588261, "lon": -73.9858140 }, + { "lat": 40.7588019, "lon": -73.9858314 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 575505275, + "bounds": { + "minlat": 40.7582527, + "minlon": -73.9862271, + "maxlat": 40.7583240, + "maxlon": -73.9861757 + }, + "nodes": [ + 5522182778, + 9354852637, + 5522182777 + ], + "geometry": [ + { "lat": 40.7583240, "lon": -73.9861757 }, + { "lat": 40.7583137, "lon": -73.9861831 }, + { "lat": 40.7582527, "lon": -73.9862271 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 575505276, + "bounds": { + "minlat": 40.7583240, + "minlon": -73.9861757, + "maxlat": 40.7588019, + "maxlon": -73.9858314 + }, + "nodes": [ + 5522182779, + 5522182778 + ], + "geometry": [ + { "lat": 40.7588019, "lon": -73.9858314 }, + { "lat": 40.7583240, "lon": -73.9861757 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "lit": "yes", + "maxheight": "below_default", + "maxheight:signed": "no", + "oneway": "yes", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 575746067, + "bounds": { + "minlat": 40.7536458, + "minlon": -73.9758503, + "maxlat": 40.7539599, + "maxlon": -73.9757963 + }, + "nodes": [ + 3786902260, + 11022874622, + 11022874621, + 11022874626, + 11022874627, + 11022874625, + 11022874629, + 3786902261, + 11022874628, + 11022874620, + 1690448992, + 11022874624, + 3786902262, + 11022874623, + 1690448975, + 3639381191 + ], + "geometry": [ + { "lat": 40.7536458, "lon": -73.9758503 }, + { "lat": 40.7536635, "lon": -73.9758383 }, + { "lat": 40.7536821, "lon": -73.9758257 }, + { "lat": 40.7536882, "lon": -73.9758215 }, + { "lat": 40.7536968, "lon": -73.9758173 }, + { "lat": 40.7537053, "lon": -73.9758136 }, + { "lat": 40.7537125, "lon": -73.9758111 }, + { "lat": 40.7537192, "lon": -73.9758091 }, + { "lat": 40.7537318, "lon": -73.9758057 }, + { "lat": 40.7537423, "lon": -73.9758032 }, + { "lat": 40.7537714, "lon": -73.9757979 }, + { "lat": 40.7537948, "lon": -73.9757964 }, + { "lat": 40.7538105, "lon": -73.9757963 }, + { "lat": 40.7538411, "lon": -73.9757976 }, + { "lat": 40.7538682, "lon": -73.9757996 }, + { "lat": 40.7539599, "lon": -73.9758148 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "primary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q7137641", + "wikipedia": "en:Park Avenue Viaduct" + } +}, +{ + "type": "way", + "id": 576166512, + "bounds": { + "minlat": 40.7290096, + "minlon": -74.0138999, + "maxlat": 40.7303537, + "maxlon": -74.0137104 + }, + "nodes": [ + 8288262780, + 8288262782 + ], + "geometry": [ + { "lat": 40.7303537, "lon": -74.0137104 }, + { "lat": 40.7290096, "lon": -74.0138999 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 576191240, + "bounds": { + "minlat": 40.8501483, + "minlon": -73.9116521, + "maxlat": 40.8513723, + "maxlon": -73.9112616 + }, + "nodes": [ + 42745939, + 5527067353, + 5527067354, + 5527067355, + 5527067356, + 5527067357, + 5527067358, + 5527067359, + 5527067360 + ], + "geometry": [ + { "lat": 40.8501483, "lon": -73.9115972 }, + { "lat": 40.8503168, "lon": -73.9115011 }, + { "lat": 40.8503733, "lon": -73.9115619 }, + { "lat": 40.8504389, "lon": -73.9116122 }, + { "lat": 40.8505164, "lon": -73.9116452 }, + { "lat": 40.8505978, "lon": -73.9116521 }, + { "lat": 40.8506818, "lon": -73.9116244 }, + { "lat": 40.8512358, "lon": -73.9112616 }, + { "lat": 40.8513723, "lon": -73.9114092 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 576191242, + "bounds": { + "minlat": 40.8503393, + "minlon": -73.9082643, + "maxlat": 40.8504258, + "maxlon": -73.9077933 + }, + "nodes": [ + 5527067365, + 12832574552, + 5527067366 + ], + "geometry": [ + { "lat": 40.8503393, "lon": -73.9077933 }, + { "lat": 40.8503573, "lon": -73.9078913 }, + { "lat": 40.8504258, "lon": -73.9082643 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 576191243, + "bounds": { + "minlat": 40.8507684, + "minlon": -73.9093195, + "maxlat": 40.8509325, + "maxlon": -73.9088667 + }, + "nodes": [ + 5527067367, + 13038640749, + 5527067368, + 5527067369, + 5527067370 + ], + "geometry": [ + { "lat": 40.8507987, "lon": -73.9088667 }, + { "lat": 40.8508275, "lon": -73.9089451 }, + { "lat": 40.8509325, "lon": -73.9092310 }, + { "lat": 40.8508288, "lon": -73.9093195 }, + { "lat": 40.8507684, "lon": -73.9090679 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 576194775, + "bounds": { + "minlat": 40.8509378, + "minlon": -73.9135172, + "maxlat": 40.8510467, + "maxlon": -73.9129538 + }, + "nodes": [ + 5527087696, + 5527087697, + 5527087698 + ], + "geometry": [ + { "lat": 40.8510206, "lon": -73.9135172 }, + { "lat": 40.8509378, "lon": -73.9129885 }, + { "lat": 40.8510467, "lon": -73.9129538 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 576205055, + "bounds": { + "minlat": 40.7632981, + "minlon": -73.9349850, + "maxlat": 40.7636588, + "maxlon": -73.9347035 + }, + "nodes": [ + 5527162637, + 8158221257, + 7726844879 + ], + "geometry": [ + { "lat": 40.7632981, "lon": -73.9349850 }, + { "lat": 40.7633847, "lon": -73.9349174 }, + { "lat": 40.7636588, "lon": -73.9347035 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 576205056, + "bounds": { + "minlat": 40.7630721, + "minlon": -73.9345033, + "maxlat": 40.7634092, + "maxlon": -73.9342330 + }, + "nodes": [ + 5527162639, + 8158221225, + 5527162640 + ], + "geometry": [ + { "lat": 40.7630721, "lon": -73.9345033 }, + { "lat": 40.7631619, "lon": -73.9344313 }, + { "lat": 40.7634092, "lon": -73.9342330 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 576205057, + "bounds": { + "minlat": 40.7639673, + "minlon": -73.9337893, + "maxlat": 40.7642961, + "maxlon": -73.9335291 + }, + "nodes": [ + 5527162641, + 5527162642 + ], + "geometry": [ + { "lat": 40.7642961, "lon": -73.9335291 }, + { "lat": 40.7639673, "lon": -73.9337893 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 576438593, + "bounds": { + "minlat": 40.7656797, + "minlon": -73.9770147, + "maxlat": 40.7672027, + "maxlon": -73.9761879 + }, + "nodes": [ + 42430394, + 1283225261, + 73787726, + 2216963378, + 9906929066, + 2216963381, + 9906929067, + 73787724, + 9906929068, + 5528787421, + 73787723, + 9906929069, + 9906929070, + 2216963391, + 9906929071, + 73787722, + 9906929072, + 9906929073, + 1283225267, + 9906929074, + 9906929075, + 42445149, + 9906929076, + 2216963458, + 9906929077, + 1492283427, + 2216963462, + 9906929078, + 73787718, + 9906929079, + 1492283428, + 9906929080, + 42442142 + ], + "geometry": [ + { "lat": 40.7656797, "lon": -73.9762440 }, + { "lat": 40.7658146, "lon": -73.9761987 }, + { "lat": 40.7659205, "lon": -73.9761879 }, + { "lat": 40.7659567, "lon": -73.9761914 }, + { "lat": 40.7659908, "lon": -73.9762035 }, + { "lat": 40.7660190, "lon": -73.9762218 }, + { "lat": 40.7660546, "lon": -73.9762577 }, + { "lat": 40.7660963, "lon": -73.9763084 }, + { "lat": 40.7661350, "lon": -73.9763679 }, + { "lat": 40.7661819, "lon": -73.9764495 }, + { "lat": 40.7663303, "lon": -73.9767136 }, + { "lat": 40.7663699, "lon": -73.9767749 }, + { "lat": 40.7663995, "lon": -73.9768146 }, + { "lat": 40.7664301, "lon": -73.9768473 }, + { "lat": 40.7664617, "lon": -73.9768813 }, + { "lat": 40.7664953, "lon": -73.9769070 }, + { "lat": 40.7665349, "lon": -73.9769371 }, + { "lat": 40.7665683, "lon": -73.9769584 }, + { "lat": 40.7666016, "lon": -73.9769763 }, + { "lat": 40.7666446, "lon": -73.9769936 }, + { "lat": 40.7666847, "lon": -73.9770048 }, + { "lat": 40.7667265, "lon": -73.9770127 }, + { "lat": 40.7667669, "lon": -73.9770147 }, + { "lat": 40.7668084, "lon": -73.9770118 }, + { "lat": 40.7668555, "lon": -73.9770027 }, + { "lat": 40.7668949, "lon": -73.9769902 }, + { "lat": 40.7669449, "lon": -73.9769676 }, + { "lat": 40.7669843, "lon": -73.9769464 }, + { "lat": 40.7670263, "lon": -73.9769172 }, + { "lat": 40.7670681, "lon": -73.9768812 }, + { "lat": 40.7671133, "lon": -73.9768348 }, + { "lat": 40.7671571, "lon": -73.9767818 }, + { "lat": 40.7672027, "lon": -73.9767027 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "cycleway:left": "lane", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Center Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 577069056, + "bounds": { + "minlat": 40.7035748, + "minlon": -73.9947602, + "maxlat": 40.7037438, + "maxlon": -73.9946356 + }, + "nodes": [ + 999184463, + 5533110593, + 11687172687, + 5533110594, + 11687172686, + 11687172764, + 11687172685 + ], + "geometry": [ + { "lat": 40.7035748, "lon": -73.9947266 }, + { "lat": 40.7035939, "lon": -73.9947488 }, + { "lat": 40.7036179, "lon": -73.9947602 }, + { "lat": 40.7036406, "lon": -73.9947525 }, + { "lat": 40.7036616, "lon": -73.9947348 }, + { "lat": 40.7036852, "lon": -73.9947063 }, + { "lat": 40.7037438, "lon": -73.9946356 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 577069057, + "bounds": { + "minlat": 40.7031781, + "minlon": -73.9947266, + "maxlat": 40.7035748, + "maxlon": -73.9941249 + }, + "nodes": [ + 999184463, + 5533110596, + 11687172884, + 11687172891, + 8262934635, + 11687177685, + 999184452 + ], + "geometry": [ + { "lat": 40.7035748, "lon": -73.9947266 }, + { "lat": 40.7034853, "lon": -73.9945916 }, + { "lat": 40.7034050, "lon": -73.9944691 }, + { "lat": 40.7033414, "lon": -73.9943726 }, + { "lat": 40.7032333, "lon": -73.9942078 }, + { "lat": 40.7032135, "lon": -73.9941780 }, + { "lat": 40.7031781, "lon": -73.9941249 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 577935075, + "bounds": { + "minlat": 40.7758095, + "minlon": -73.9287239, + "maxlat": 40.7766485, + "maxlon": -73.9279387 + }, + "nodes": [ + 2883532168, + 7768474044, + 7768474040, + 7726535694, + 11618954181, + 7986674684, + 42849847 + ], + "geometry": [ + { "lat": 40.7766485, "lon": -73.9279387 }, + { "lat": 40.7766096, "lon": -73.9279740 }, + { "lat": 40.7763808, "lon": -73.9281819 }, + { "lat": 40.7762769, "lon": -73.9282763 }, + { "lat": 40.7761023, "lon": -73.9284435 }, + { "lat": 40.7758554, "lon": -73.9286799 }, + { "lat": 40.7758095, "lon": -73.9287239 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Shore Boulevard", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 577946577, + "bounds": { + "minlat": 40.7810867, + "minlon": -73.9308953, + "maxlat": 40.7841865, + "maxlon": -73.9256948 + }, + "nodes": [ + 2298803428, + 9156860622, + 2298803430, + 2298803476, + 9156860623, + 11033087123, + 11033087122, + 11033087121, + 11033087120, + 11033087125, + 11033087126, + 11033087127, + 11033087128, + 11033087129, + 2298803439, + 9156860625, + 3037153889, + 11033087130, + 11033087131, + 11033087132, + 11033087133, + 11033087134, + 11033087135, + 11033087137, + 11033087136, + 9156860628, + 2298803473, + 9156860629, + 3037153886, + 11033087145, + 11033087144, + 11033087143, + 11033087142, + 11033087141, + 11033087140, + 11033087139, + 11033087138, + 9156860633, + 9156860634, + 2298803449, + 9156860635, + 2298803450, + 9156860636, + 9156860637, + 2298803451, + 9156860638, + 9156860639, + 2298803452, + 2298803453, + 9156860640, + 9156860641, + 2298803454, + 9156860642, + 2298803455, + 3037153891, + 9156860643, + 2298803456, + 9156860644, + 2298803457, + 9156860645, + 9156860646, + 2298803458, + 2298803459, + 9156860647, + 9156860648, + 2298803460, + 2298803461, + 9156860649, + 9156860650, + 2298803462, + 9156860651, + 2298803472, + 2298803463, + 2298803464, + 9156860652, + 2298803465, + 2298803339, + 9156860653, + 2298803466, + 9156860654, + 3044455843, + 9156860655, + 2298803469, + 9156860656, + 2298803470, + 9156860657, + 2298803471 + ], + "geometry": [ + { "lat": 40.7829307, "lon": -73.9308953 }, + { "lat": 40.7828789, "lon": -73.9308330 }, + { "lat": 40.7828241, "lon": -73.9307455 }, + { "lat": 40.7827691, "lon": -73.9306313 }, + { "lat": 40.7827316, "lon": -73.9305356 }, + { "lat": 40.7826941, "lon": -73.9304254 }, + { "lat": 40.7826538, "lon": -73.9303143 }, + { "lat": 40.7826055, "lon": -73.9301901 }, + { "lat": 40.7825367, "lon": -73.9300544 }, + { "lat": 40.7824919, "lon": -73.9299770 }, + { "lat": 40.7824388, "lon": -73.9298921 }, + { "lat": 40.7823613, "lon": -73.9297874 }, + { "lat": 40.7823012, "lon": -73.9297147 }, + { "lat": 40.7822436, "lon": -73.9296517 }, + { "lat": 40.7821875, "lon": -73.9295906 }, + { "lat": 40.7821074, "lon": -73.9295206 }, + { "lat": 40.7820493, "lon": -73.9294753 }, + { "lat": 40.7819458, "lon": -73.9293981 }, + { "lat": 40.7819127, "lon": -73.9293660 }, + { "lat": 40.7818733, "lon": -73.9293182 }, + { "lat": 40.7818416, "lon": -73.9292607 }, + { "lat": 40.7818154, "lon": -73.9292017 }, + { "lat": 40.7817954, "lon": -73.9291471 }, + { "lat": 40.7817780, "lon": -73.9290854 }, + { "lat": 40.7817575, "lon": -73.9290183 }, + { "lat": 40.7817308, "lon": -73.9289599 }, + { "lat": 40.7817007, "lon": -73.9289124 }, + { "lat": 40.7816667, "lon": -73.9288662 }, + { "lat": 40.7816134, "lon": -73.9288184 }, + { "lat": 40.7815734, "lon": -73.9287954 }, + { "lat": 40.7814896, "lon": -73.9287537 }, + { "lat": 40.7814241, "lon": -73.9287170 }, + { "lat": 40.7813618, "lon": -73.9286646 }, + { "lat": 40.7813035, "lon": -73.9286009 }, + { "lat": 40.7812392, "lon": -73.9285193 }, + { "lat": 40.7811899, "lon": -73.9284349 }, + { "lat": 40.7811333, "lon": -73.9283041 }, + { "lat": 40.7811083, "lon": -73.9282152 }, + { "lat": 40.7810952, "lon": -73.9281314 }, + { "lat": 40.7810867, "lon": -73.9280327 }, + { "lat": 40.7810970, "lon": -73.9279308 }, + { "lat": 40.7811121, "lon": -73.9278468 }, + { "lat": 40.7811339, "lon": -73.9277823 }, + { "lat": 40.7811680, "lon": -73.9277082 }, + { "lat": 40.7811941, "lon": -73.9276642 }, + { "lat": 40.7812412, "lon": -73.9275947 }, + { "lat": 40.7812891, "lon": -73.9275489 }, + { "lat": 40.7813459, "lon": -73.9274982 }, + { "lat": 40.7814382, "lon": -73.9274149 }, + { "lat": 40.7815081, "lon": -73.9273353 }, + { "lat": 40.7815667, "lon": -73.9272632 }, + { "lat": 40.7816210, "lon": -73.9271758 }, + { "lat": 40.7816692, "lon": -73.9270809 }, + { "lat": 40.7817088, "lon": -73.9269922 }, + { "lat": 40.7817448, "lon": -73.9269043 }, + { "lat": 40.7817808, "lon": -73.9267812 }, + { "lat": 40.7818158, "lon": -73.9266690 }, + { "lat": 40.7818546, "lon": -73.9265604 }, + { "lat": 40.7819023, "lon": -73.9264526 }, + { "lat": 40.7819545, "lon": -73.9263552 }, + { "lat": 40.7820205, "lon": -73.9262493 }, + { "lat": 40.7820809, "lon": -73.9261638 }, + { "lat": 40.7821390, "lon": -73.9260909 }, + { "lat": 40.7822245, "lon": -73.9260009 }, + { "lat": 40.7823020, "lon": -73.9259329 }, + { "lat": 40.7823711, "lon": -73.9258771 }, + { "lat": 40.7824488, "lon": -73.9258282 }, + { "lat": 40.7825222, "lon": -73.9257883 }, + { "lat": 40.7825905, "lon": -73.9257544 }, + { "lat": 40.7826689, "lon": -73.9257311 }, + { "lat": 40.7827423, "lon": -73.9257111 }, + { "lat": 40.7828090, "lon": -73.9256990 }, + { "lat": 40.7828817, "lon": -73.9256948 }, + { "lat": 40.7829569, "lon": -73.9256955 }, + { "lat": 40.7830592, "lon": -73.9257122 }, + { "lat": 40.7831412, "lon": -73.9257301 }, + { "lat": 40.7833003, "lon": -73.9257733 }, + { "lat": 40.7834462, "lon": -73.9258255 }, + { "lat": 40.7835526, "lon": -73.9258756 }, + { "lat": 40.7836892, "lon": -73.9259557 }, + { "lat": 40.7838599, "lon": -73.9260813 }, + { "lat": 40.7839343, "lon": -73.9261518 }, + { "lat": 40.7840011, "lon": -73.9262282 }, + { "lat": 40.7840698, "lon": -73.9263180 }, + { "lat": 40.7841231, "lon": -73.9264066 }, + { "lat": 40.7841574, "lon": -73.9264904 }, + { "lat": 40.7841865, "lon": -73.9266152 } + ], + "tags": { + "highway": "unclassified", + "lane_markings": "no", + "name": "Wards Meadow Loop", + "name:etymology:wikidata": "Q838755", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 577976189, + "bounds": { + "minlat": 40.8192614, + "minlon": -73.9501619, + "maxlat": 40.8194304, + "maxlon": -73.9500376 + }, + "nodes": [ + 5539478573, + 5539478574 + ], + "geometry": [ + { "lat": 40.8192614, "lon": -73.9501619 }, + { "lat": 40.8194304, "lon": -73.9500376 } + ], + "tags": { + "bus:conditional": "designated @ (Mo-Fr 08:00-18:00)", + "highway": "tertiary", + "layer": "-1", + "motor_vehicle:conditional": "no @ (Mo-Fr 08:00-18:00)", + "name": "Convent Avenue", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 577976192, + "bounds": { + "minlat": 40.8194304, + "minlon": -73.9500376, + "maxlat": 40.8205467, + "maxlon": -73.9492246 + }, + "nodes": [ + 5539478574, + 2428684163, + 13207250452 + ], + "geometry": [ + { "lat": 40.8194304, "lon": -73.9500376 }, + { "lat": 40.8200845, "lon": -73.9495617 }, + { "lat": 40.8205467, "lon": -73.9492246 } + ], + "tags": { + "bus:conditional": "designated @ (Mo-Fr 08:00-18:00)", + "highway": "tertiary", + "lanes": "2", + "motor_vehicle:conditional": "no @ (Mo-Fr 08:00-18:00)", + "name": "Convent Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 577984813, + "bounds": { + "minlat": 40.8261001, + "minlon": -73.9202932, + "maxlat": 40.8261786, + "maxlon": -73.9202471 + }, + "nodes": [ + 42731617, + 7029503719 + ], + "geometry": [ + { "lat": 40.8261786, "lon": -73.9202471 }, + { "lat": 40.8261001, "lon": -73.9202932 } + ], + "tags": { + "highway": "residential", + "lane_markings": "yes", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Sherman Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 577984835, + "bounds": { + "minlat": 40.8251496, + "minlon": -73.9208795, + "maxlat": 40.8259416, + "maxlon": -73.9204520 + }, + "nodes": [ + 5539543958, + 5539543957 + ], + "geometry": [ + { "lat": 40.8251496, "lon": -73.9208795 }, + { "lat": 40.8259416, "lon": -73.9204520 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 577984845, + "bounds": { + "minlat": 40.8249597, + "minlon": -73.9202867, + "maxlat": 40.8257917, + "maxlon": -73.9198347 + }, + "nodes": [ + 5539543967, + 5539543977, + 7564382205, + 5539543975 + ], + "geometry": [ + { "lat": 40.8249597, "lon": -73.9202867 }, + { "lat": 40.8254420, "lon": -73.9200208 }, + { "lat": 40.8254672, "lon": -73.9200074 }, + { "lat": 40.8257917, "lon": -73.9198347 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 577984852, + "bounds": { + "minlat": 40.8254686, + "minlon": -73.9203869, + "maxlat": 40.8260338, + "maxlon": -73.9200857 + }, + "nodes": [ + 5539543979, + 7564382204, + 11078222096, + 12038479024, + 7029503718 + ], + "geometry": [ + { "lat": 40.8254686, "lon": -73.9203869 }, + { "lat": 40.8255755, "lon": -73.9203304 }, + { "lat": 40.8258216, "lon": -73.9201990 }, + { "lat": 40.8259775, "lon": -73.9201158 }, + { "lat": 40.8260338, "lon": -73.9200857 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 577985428, + "bounds": { + "minlat": 40.8173886, + "minlon": -73.9520498, + "maxlat": 40.8175255, + "maxlon": -73.9517237 + }, + "nodes": [ + 5539546683, + 8835729572, + 5539546685, + 5539546684 + ], + "geometry": [ + { "lat": 40.8175255, "lon": -73.9520498 }, + { "lat": 40.8174963, "lon": -73.9519802 }, + { "lat": 40.8174772, "lon": -73.9519347 }, + { "lat": 40.8173886, "lon": -73.9517237 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 577985429, + "bounds": { + "minlat": 40.8178472, + "minlon": -73.9516276, + "maxlat": 40.8180012, + "maxlon": -73.9513013 + }, + "nodes": [ + 5539546686, + 8835729574, + 5539546688, + 5539546687 + ], + "geometry": [ + { "lat": 40.8180012, "lon": -73.9516276 }, + { "lat": 40.8179588, "lon": -73.9515350 }, + { "lat": 40.8179226, "lon": -73.9514541 }, + { "lat": 40.8178472, "lon": -73.9513013 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 578089297, + "bounds": { + "minlat": 40.7742390, + "minlon": -73.9318856, + "maxlat": 40.7750057, + "maxlon": -73.9314826 + }, + "nodes": [ + 5540146334, + 6452935326, + 7745133378 + ], + "geometry": [ + { "lat": 40.7742390, "lon": -73.9318856 }, + { "lat": 40.7743068, "lon": -73.9318531 }, + { "lat": 40.7750057, "lon": -73.9314826 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 578089300, + "bounds": { + "minlat": 40.7696330, + "minlon": -73.9416710, + "maxlat": 40.7697013, + "maxlon": -73.9412786 + }, + "nodes": [ + 593416866, + 7529909914, + 5540146342 + ], + "geometry": [ + { "lat": 40.7697013, "lon": -73.9412786 }, + { "lat": 40.7696379, "lon": -73.9415076 }, + { "lat": 40.7696330, "lon": -73.9416710 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 578090882, + "bounds": { + "minlat": 40.7952520, + "minlon": -73.9235553, + "maxlat": 40.7960760, + "maxlon": -73.9232009 + }, + "nodes": [ + 5540154361, + 5540154360, + 5540154359, + 7734748104 + ], + "geometry": [ + { "lat": 40.7952520, "lon": -73.9235133 }, + { "lat": 40.7958931, "lon": -73.9235553 }, + { "lat": 40.7960616, "lon": -73.9233514 }, + { "lat": 40.7960760, "lon": -73.9232009 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 578091949, + "bounds": { + "minlat": 40.8236726, + "minlon": -73.9168770, + "maxlat": 40.8240050, + "maxlon": -73.9165339 + }, + "nodes": [ + 5540161846, + 12038478955, + 5540161845, + 5540161844, + 13509657704 + ], + "geometry": [ + { "lat": 40.8236726, "lon": -73.9168770 }, + { "lat": 40.8237309, "lon": -73.9168462 }, + { "lat": 40.8240050, "lon": -73.9167012 }, + { "lat": 40.8239543, "lon": -73.9165339 }, + { "lat": 40.8237138, "lon": -73.9166610 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 578091951, + "bounds": { + "minlat": 40.8244722, + "minlon": -73.9180863, + "maxlat": 40.8246323, + "maxlon": -73.9176227 + }, + "nodes": [ + 5540161848, + 5540161847 + ], + "geometry": [ + { "lat": 40.8246323, "lon": -73.9180863 }, + { "lat": 40.8244722, "lon": -73.9176227 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 578091954, + "bounds": { + "minlat": 40.8242893, + "minlon": -73.9186576, + "maxlat": 40.8250858, + "maxlon": -73.9168894 + }, + "nodes": [ + 5540161854, + 12038478916, + 5540161853, + 5540161847, + 5540161852, + 5540161851, + 5540161850, + 5540161849 + ], + "geometry": [ + { "lat": 40.8250858, "lon": -73.9168894 }, + { "lat": 40.8249792, "lon": -73.9169566 }, + { "lat": 40.8248231, "lon": -73.9170550 }, + { "lat": 40.8244722, "lon": -73.9176227 }, + { "lat": 40.8242893, "lon": -73.9179187 }, + { "lat": 40.8244344, "lon": -73.9183545 }, + { "lat": 40.8247023, "lon": -73.9182016 }, + { "lat": 40.8248464, "lon": -73.9186576 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 578101452, + "bounds": { + "minlat": 40.8248150, + "minlon": -73.9103820, + "maxlat": 40.8250005, + "maxlon": -73.9097808 + }, + "nodes": [ + 5540230538, + 12039986438, + 5540230537 + ], + "geometry": [ + { "lat": 40.8250005, "lon": -73.9103820 }, + { "lat": 40.8249742, "lon": -73.9102966 }, + { "lat": 40.8248150, "lon": -73.9097808 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 578121959, + "bounds": { + "minlat": 40.7525905, + "minlon": -73.9139734, + "maxlat": 40.7526036, + "maxlon": -73.9138410 + }, + "nodes": [ + 3569858098, + 5540348423 + ], + "geometry": [ + { "lat": 40.7526036, "lon": -73.9139734 }, + { "lat": 40.7525905, "lon": -73.9138410 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 578121960, + "bounds": { + "minlat": 40.7515704, + "minlon": -73.9144763, + "maxlat": 40.7533364, + "maxlon": -73.9140867 + }, + "nodes": [ + 5540348425, + 5540348429 + ], + "geometry": [ + { "lat": 40.7533364, "lon": -73.9140867 }, + { "lat": 40.7515704, "lon": -73.9144763 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 578121961, + "bounds": { + "minlat": 40.7514867, + "minlon": -73.9147113, + "maxlat": 40.7533712, + "maxlon": -73.9143024 + }, + "nodes": [ + 5540348427, + 5540348426 + ], + "geometry": [ + { "lat": 40.7533712, "lon": -73.9143024 }, + { "lat": 40.7514867, "lon": -73.9147113 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 578121963, + "bounds": { + "minlat": 40.7514529, + "minlon": -73.9149134, + "maxlat": 40.7534097, + "maxlon": -73.9136956 + }, + "nodes": [ + 5540348432, + 5540348427, + 5540348425, + 5871727216, + 5540348431, + 5540348423, + 5482228840, + 5540348430, + 5540348424, + 5540348429, + 5540348426, + 5540348428, + 5540348432 + ], + "geometry": [ + { "lat": 40.7534097, "lon": -73.9145082 }, + { "lat": 40.7533712, "lon": -73.9143024 }, + { "lat": 40.7533364, "lon": -73.9140867 }, + { "lat": 40.7533038, "lon": -73.9138893 }, + { "lat": 40.7532718, "lon": -73.9136956 }, + { "lat": 40.7525905, "lon": -73.9138410 }, + { "lat": 40.7522659, "lon": -73.9138987 }, + { "lat": 40.7518958, "lon": -73.9139693 }, + { "lat": 40.7517207, "lon": -73.9142322 }, + { "lat": 40.7515704, "lon": -73.9144763 }, + { "lat": 40.7514867, "lon": -73.9147113 }, + { "lat": 40.7514529, "lon": -73.9149134 }, + { "lat": 40.7534097, "lon": -73.9145082 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 578474028, + "bounds": { + "minlat": 40.7656844, + "minlon": -73.9634512, + "maxlat": 40.7658448, + "maxlon": -73.9630757 + }, + "nodes": [ + 5542680310, + 5542680305, + 5542680313 + ], + "geometry": [ + { "lat": 40.7658448, "lon": -73.9634512 }, + { "lat": 40.7657857, "lon": -73.9633145 }, + { "lat": 40.7656844, "lon": -73.9630757 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 66th Street", + "name:ru": "Восточная 66-я стрит", + "name_1": "East 66 Street", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 578474029, + "bounds": { + "minlat": 40.7648965, + "minlon": -73.9613592, + "maxlat": 40.7649519, + "maxlon": -73.9612132 + }, + "nodes": [ + 5542680315, + 5550244687 + ], + "geometry": [ + { "lat": 40.7649519, "lon": -73.9613592 }, + { "lat": 40.7648965, "lon": -73.9612132 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 66th Street", + "name:ru": "Восточная 66-я стрит", + "name_1": "East 66 Street", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 578474030, + "bounds": { + "minlat": 40.7643060, + "minlon": -73.9626002, + "maxlat": 40.7647599, + "maxlon": -73.9622140 + }, + "nodes": [ + 5542680320, + 10166171510, + 5542680319, + 5542680318, + 8847352140, + 5542680317, + 5542680316 + ], + "geometry": [ + { "lat": 40.7647599, "lon": -73.9625401 }, + { "lat": 40.7647042, "lon": -73.9625793 }, + { "lat": 40.7646743, "lon": -73.9626002 }, + { "lat": 40.7646021, "lon": -73.9625465 }, + { "lat": 40.7644786, "lon": -73.9622332 }, + { "lat": 40.7644435, "lon": -73.9622140 }, + { "lat": 40.7643060, "lon": -73.9623025 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 578479864, + "bounds": { + "minlat": 40.7609002, + "minlon": -74.0001929, + "maxlat": 40.7610457, + "maxlon": -74.0000889 + }, + "nodes": [ + 11179060318, + 11179060317 + ], + "geometry": [ + { "lat": 40.7610457, "lon": -74.0000889 }, + { "lat": 40.7609002, "lon": -74.0001929 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 578652343, + "bounds": { + "minlat": 40.8309500, + "minlon": -73.9333656, + "maxlat": 40.8402015, + "maxlon": -73.9302821 + }, + "nodes": [ + 5543850733, + 9918293206, + 9918293207, + 9918293208, + 5543850751, + 9918293209, + 9918293210, + 5543850735, + 5543850753, + 9918293211, + 5543850736, + 9918293212, + 5543850738, + 9918293213, + 5543850739, + 5929244419, + 9918293214, + 5543850740, + 9918293215, + 5929244414, + 9918293216, + 5543850741, + 5543850742, + 5929244433, + 5543850745, + 5929244434, + 5543850746, + 5543850777, + 5543850747, + 5543850748, + 5543850810, + 5543850749, + 5543850750 + ], + "geometry": [ + { "lat": 40.8402015, "lon": -73.9302885 }, + { "lat": 40.8401109, "lon": -73.9302835 }, + { "lat": 40.8400440, "lon": -73.9302821 }, + { "lat": 40.8400001, "lon": -73.9302902 }, + { "lat": 40.8399541, "lon": -73.9303031 }, + { "lat": 40.8399025, "lon": -73.9303257 }, + { "lat": 40.8395303, "lon": -73.9305254 }, + { "lat": 40.8392400, "lon": -73.9307036 }, + { "lat": 40.8383554, "lon": -73.9312892 }, + { "lat": 40.8382813, "lon": -73.9313237 }, + { "lat": 40.8381390, "lon": -73.9313968 }, + { "lat": 40.8372815, "lon": -73.9319584 }, + { "lat": 40.8371434, "lon": -73.9320545 }, + { "lat": 40.8369981, "lon": -73.9321637 }, + { "lat": 40.8368340, "lon": -73.9322971 }, + { "lat": 40.8366987, "lon": -73.9324070 }, + { "lat": 40.8365977, "lon": -73.9324868 }, + { "lat": 40.8365153, "lon": -73.9325444 }, + { "lat": 40.8364387, "lon": -73.9325910 }, + { "lat": 40.8363675, "lon": -73.9326244 }, + { "lat": 40.8362847, "lon": -73.9326579 }, + { "lat": 40.8362198, "lon": -73.9326804 }, + { "lat": 40.8357220, "lon": -73.9328181 }, + { "lat": 40.8339403, "lon": -73.9333157 }, + { "lat": 40.8337790, "lon": -73.9333504 }, + { "lat": 40.8335762, "lon": -73.9333656 }, + { "lat": 40.8333386, "lon": -73.9333563 }, + { "lat": 40.8325667, "lon": -73.9333163 }, + { "lat": 40.8321656, "lon": -73.9332955 }, + { "lat": 40.8315931, "lon": -73.9332629 }, + { "lat": 40.8312685, "lon": -73.9332900 }, + { "lat": 40.8312027, "lon": -73.9332955 }, + { "lat": 40.8309500, "lon": -73.9333236 } + ], + "tags": { + "access": "no", + "highway": "service", + "maxspeed": "5 mph", + "noname": "yes" + } +}, +{ + "type": "way", + "id": 578652346, + "bounds": { + "minlat": 40.8325667, + "minlon": -73.9333163, + "maxlat": 40.8383554, + "maxlon": -73.9309874 + }, + "nodes": [ + 5543850753, + 5543850754, + 5543850755, + 5543850756, + 1213918828, + 5543850757, + 5543850758, + 5929244413, + 5543850759, + 5543850760, + 5543850761, + 5543850782, + 5543850763, + 5543850764, + 5543850765, + 5543850766, + 5543850767, + 5543850778, + 5543850768, + 5543850769, + 5543850770, + 5543850771, + 1213919293, + 1213918252, + 5543850772, + 5543850773, + 1213919100, + 5543850774, + 5543850775, + 5543850776, + 5543850777 + ], + "geometry": [ + { "lat": 40.8383554, "lon": -73.9312892 }, + { "lat": 40.8383251, "lon": -73.9312162 }, + { "lat": 40.8382970, "lon": -73.9311621 }, + { "lat": 40.8382909, "lon": -73.9311503 }, + { "lat": 40.8382607, "lon": -73.9310924 }, + { "lat": 40.8382410, "lon": -73.9310544 }, + { "lat": 40.8382291, "lon": -73.9310316 }, + { "lat": 40.8382173, "lon": -73.9310090 }, + { "lat": 40.8381750, "lon": -73.9309874 }, + { "lat": 40.8381057, "lon": -73.9309909 }, + { "lat": 40.8377881, "lon": -73.9310888 }, + { "lat": 40.8372432, "lon": -73.9312408 }, + { "lat": 40.8364204, "lon": -73.9314750 }, + { "lat": 40.8359557, "lon": -73.9315930 }, + { "lat": 40.8358045, "lon": -73.9316493 }, + { "lat": 40.8350760, "lon": -73.9318465 }, + { "lat": 40.8345777, "lon": -73.9319793 }, + { "lat": 40.8344550, "lon": -73.9320172 }, + { "lat": 40.8342612, "lon": -73.9320772 }, + { "lat": 40.8335478, "lon": -73.9323346 }, + { "lat": 40.8331034, "lon": -73.9324942 }, + { "lat": 40.8327219, "lon": -73.9326324 }, + { "lat": 40.8327088, "lon": -73.9326759 }, + { "lat": 40.8326912, "lon": -73.9327160 }, + { "lat": 40.8326559, "lon": -73.9328021 }, + { "lat": 40.8326449, "lon": -73.9328333 }, + { "lat": 40.8326082, "lon": -73.9329036 }, + { "lat": 40.8325787, "lon": -73.9330053 }, + { "lat": 40.8325757, "lon": -73.9330363 }, + { "lat": 40.8325737, "lon": -73.9332791 }, + { "lat": 40.8325667, "lon": -73.9333163 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 578652348, + "bounds": { + "minlat": 40.8344550, + "minlon": -73.9323287, + "maxlat": 40.8345033, + "maxlon": -73.9320172 + }, + "nodes": [ + 5543850778, + 5543850779, + 5543850780, + 5543850781 + ], + "geometry": [ + { "lat": 40.8344550, "lon": -73.9320172 }, + { "lat": 40.8344864, "lon": -73.9321842 }, + { "lat": 40.8345018, "lon": -73.9322739 }, + { "lat": 40.8345033, "lon": -73.9323287 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 578652350, + "bounds": { + "minlat": 40.8372432, + "minlon": -73.9317738, + "maxlat": 40.8373575, + "maxlon": -73.9312408 + }, + "nodes": [ + 5543850782, + 5543850783, + 5543850788, + 5543850784, + 5543850785, + 5543850786, + 1213918714, + 5543850787 + ], + "geometry": [ + { "lat": 40.8372432, "lon": -73.9312408 }, + { "lat": 40.8372713, "lon": -73.9314032 }, + { "lat": 40.8372857, "lon": -73.9314861 }, + { "lat": 40.8373097, "lon": -73.9315969 }, + { "lat": 40.8373219, "lon": -73.9316422 }, + { "lat": 40.8373347, "lon": -73.9316893 }, + { "lat": 40.8373480, "lon": -73.9317389 }, + { "lat": 40.8373575, "lon": -73.9317738 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 578652352, + "bounds": { + "minlat": 40.8357167, + "minlon": -73.9328181, + "maxlat": 40.8368340, + "maxlon": -73.9322540 + }, + "nodes": [ + 5543850742, + 5543850789, + 5543850790, + 5543850791, + 5543850792, + 5543850814, + 5543850793, + 5543850794, + 5543850739 + ], + "geometry": [ + { "lat": 40.8357220, "lon": -73.9328181 }, + { "lat": 40.8357167, "lon": -73.9327665 }, + { "lat": 40.8359018, "lon": -73.9325731 }, + { "lat": 40.8360925, "lon": -73.9324634 }, + { "lat": 40.8363340, "lon": -73.9324003 }, + { "lat": 40.8366025, "lon": -73.9322723 }, + { "lat": 40.8366408, "lon": -73.9322540 }, + { "lat": 40.8368147, "lon": -73.9322576 }, + { "lat": 40.8368340, "lon": -73.9322971 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 578652354, + "bounds": { + "minlat": 40.8275090, + "minlon": -73.9333236, + "maxlat": 40.8309500, + "maxlon": -73.9318587 + }, + "nodes": [ + 5543850750, + 5543850796, + 5543850797, + 5543850798, + 5543850799, + 5543850800, + 5543850801, + 5543850802, + 5543850803, + 5543850804, + 5543850805, + 5543850806, + 5543850807, + 5543850808, + 5543850809 + ], + "geometry": [ + { "lat": 40.8309500, "lon": -73.9333236 }, + { "lat": 40.8309062, "lon": -73.9332635 }, + { "lat": 40.8307604, "lon": -73.9331379 }, + { "lat": 40.8306275, "lon": -73.9330640 }, + { "lat": 40.8304346, "lon": -73.9330386 }, + { "lat": 40.8301015, "lon": -73.9330480 }, + { "lat": 40.8296014, "lon": -73.9330002 }, + { "lat": 40.8292890, "lon": -73.9329417 }, + { "lat": 40.8289894, "lon": -73.9328323 }, + { "lat": 40.8287027, "lon": -73.9326674 }, + { "lat": 40.8284229, "lon": -73.9324780 }, + { "lat": 40.8283157, "lon": -73.9323686 }, + { "lat": 40.8281105, "lon": -73.9322269 }, + { "lat": 40.8278797, "lon": -73.9320897 }, + { "lat": 40.8275090, "lon": -73.9318587 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 578652356, + "bounds": { + "minlat": 40.8309955, + "minlon": -73.9332900, + "maxlat": 40.8312685, + "maxlon": -73.9330736 + }, + "nodes": [ + 5543850810, + 5543850811, + 5543850812, + 5543850813 + ], + "geometry": [ + { "lat": 40.8312685, "lon": -73.9332900 }, + { "lat": 40.8312552, "lon": -73.9332339 }, + { "lat": 40.8312296, "lon": -73.9330888 }, + { "lat": 40.8309955, "lon": -73.9330736 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 579498305, + "bounds": { + "minlat": 40.8517998, + "minlon": -73.9330660, + "maxlat": 40.8520696, + "maxlon": -73.9328847 + }, + "nodes": [ + 5549743255, + 9563795398, + 5549743257, + 5549743256 + ], + "geometry": [ + { "lat": 40.8520696, "lon": -73.9328847 }, + { "lat": 40.8520008, "lon": -73.9329309 }, + { "lat": 40.8519764, "lon": -73.9329473 }, + { "lat": 40.8517998, "lon": -73.9330660 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579498306, + "bounds": { + "minlat": 40.8528417, + "minlon": -73.9348642, + "maxlat": 40.8530180, + "maxlon": -73.9343453 + }, + "nodes": [ + 5549743258, + 9563795490, + 5549743259, + 5549743260 + ], + "geometry": [ + { "lat": 40.8528974, "lon": -73.9343453 }, + { "lat": 40.8529386, "lon": -73.9344925 }, + { "lat": 40.8530180, "lon": -73.9347760 }, + { "lat": 40.8528417, "lon": -73.9348642 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579498307, + "bounds": { + "minlat": 40.8511365, + "minlon": -73.9357029, + "maxlat": 40.8518654, + "maxlon": -73.9351744 + }, + "nodes": [ + 9426373093, + 5549743262, + 9426373094, + 5549743263, + 5549743264, + 5549743265, + 9550791828, + 5549743266 + ], + "geometry": [ + { "lat": 40.8517308, "lon": -73.9351744 }, + { "lat": 40.8518654, "lon": -73.9355394 }, + { "lat": 40.8518044, "lon": -73.9355900 }, + { "lat": 40.8517815, "lon": -73.9356090 }, + { "lat": 40.8517235, "lon": -73.9354712 }, + { "lat": 40.8512665, "lon": -73.9357029 }, + { "lat": 40.8511785, "lon": -73.9353878 }, + { "lat": 40.8511365, "lon": -73.9352376 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579498308, + "bounds": { + "minlat": 40.8504176, + "minlon": -73.9308268, + "maxlat": 40.8508611, + "maxlon": -73.9303111 + }, + "nodes": [ + 5549743267, + 9566869959, + 5549743268, + 5549743270, + 5549743269 + ], + "geometry": [ + { "lat": 40.8504176, "lon": -73.9308268 }, + { "lat": 40.8504825, "lon": -73.9307807 }, + { "lat": 40.8508611, "lon": -73.9305115 }, + { "lat": 40.8508332, "lon": -73.9304425 }, + { "lat": 40.8507794, "lon": -73.9303111 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 579498309, + "bounds": { + "minlat": 40.8508332, + "minlon": -73.9304425, + "maxlat": 40.8509942, + "maxlon": -73.9303277 + }, + "nodes": [ + 5549743270, + 9166213996, + 5549743271 + ], + "geometry": [ + { "lat": 40.8508332, "lon": -73.9304425 }, + { "lat": 40.8509426, "lon": -73.9303645 }, + { "lat": 40.8509942, "lon": -73.9303277 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579499085, + "bounds": { + "minlat": 40.8357001, + "minlon": -73.9070322, + "maxlat": 40.8360570, + "maxlon": -73.9068371 + }, + "nodes": [ + 5549749415, + 8246893724, + 8246868399, + 5549749416 + ], + "geometry": [ + { "lat": 40.8357001, "lon": -73.9070322 }, + { "lat": 40.8357388, "lon": -73.9070110 }, + { "lat": 40.8359833, "lon": -73.9068774 }, + { "lat": 40.8360570, "lon": -73.9068371 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579565231, + "bounds": { + "minlat": 40.7742888, + "minlon": -73.9572919, + "maxlat": 40.7784234, + "maxlon": -73.9542723 + }, + "nodes": [ + 42450015, + 10170793864, + 10170793858, + 42438503, + 10170793854, + 10170647169, + 42450025, + 10170647168, + 10156669103, + 42439403, + 10156669102, + 10156669091, + 42448238, + 10156669087, + 10156669111, + 42435514, + 10156669110, + 8782897299, + 42450028, + 8250514385, + 11260347959 + ], + "geometry": [ + { "lat": 40.7742888, "lon": -73.9572919 }, + { "lat": 40.7743820, "lon": -73.9572237 }, + { "lat": 40.7749132, "lon": -73.9568352 }, + { "lat": 40.7749679, "lon": -73.9567951 }, + { "lat": 40.7750256, "lon": -73.9567528 }, + { "lat": 40.7755454, "lon": -73.9563729 }, + { "lat": 40.7755929, "lon": -73.9563382 }, + { "lat": 40.7756585, "lon": -73.9562903 }, + { "lat": 40.7761818, "lon": -73.9559054 }, + { "lat": 40.7762350, "lon": -73.9558695 }, + { "lat": 40.7762987, "lon": -73.9558230 }, + { "lat": 40.7768150, "lon": -73.9554464 }, + { "lat": 40.7768695, "lon": -73.9554065 }, + { "lat": 40.7769269, "lon": -73.9553647 }, + { "lat": 40.7774507, "lon": -73.9549823 }, + { "lat": 40.7775056, "lon": -73.9549422 }, + { "lat": 40.7775715, "lon": -73.9548940 }, + { "lat": 40.7780883, "lon": -73.9545160 }, + { "lat": 40.7781411, "lon": -73.9544774 }, + { "lat": 40.7782039, "lon": -73.9544325 }, + { "lat": 40.7784234, "lon": -73.9542723 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 579565233, + "bounds": { + "minlat": 40.7656844, + "minlon": -73.9630757, + "maxlat": 40.7657768, + "maxlon": -73.9630103 + }, + "nodes": [ + 5542680313, + 10597902959, + 5542680312 + ], + "geometry": [ + { "lat": 40.7656844, "lon": -73.9630757 }, + { "lat": 40.7657272, "lon": -73.9630454 }, + { "lat": 40.7657768, "lon": -73.9630103 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "East 66th Street", + "name:ru": "Восточная 66-я стрит", + "name_1": "East 66 Street", + "oneway": "no", + "surface": "concrete", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 579565234, + "bounds": { + "minlat": 40.7649519, + "minlon": -73.9630757, + "maxlat": 40.7656844, + "maxlon": -73.9613592 + }, + "nodes": [ + 5542680313, + 5542680314, + 5550244698, + 13312495990, + 5550244699, + 5550244708, + 5550244688, + 5542680315 + ], + "geometry": [ + { "lat": 40.7656844, "lon": -73.9630757 }, + { "lat": 40.7656590, "lon": -73.9630448 }, + { "lat": 40.7654110, "lon": -73.9624701 }, + { "lat": 40.7653626, "lon": -73.9623567 }, + { "lat": 40.7652979, "lon": -73.9622050 }, + { "lat": 40.7650544, "lon": -73.9616277 }, + { "lat": 40.7650445, "lon": -73.9615991 }, + { "lat": 40.7649519, "lon": -73.9613592 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 66th Street", + "name:ru": "Восточная 66-я стрит", + "name_1": "East 66 Street", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 579565236, + "bounds": { + "minlat": 40.7650445, + "minlon": -73.9615991, + "maxlat": 40.7651489, + "maxlon": -73.9615207 + }, + "nodes": [ + 5550244688, + 10597902945, + 5550244689 + ], + "geometry": [ + { "lat": 40.7650445, "lon": -73.9615991 }, + { "lat": 40.7650911, "lon": -73.9615641 }, + { "lat": 40.7651489, "lon": -73.9615207 } + ], + "tags": { + "highway": "residential", + "name": "East 66th Street", + "name:ru": "Восточная 66-я стрит", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 579565237, + "bounds": { + "minlat": 40.7654627, + "minlon": -73.9630971, + "maxlat": 40.7656844, + "maxlon": -73.9629230 + }, + "nodes": [ + 5542680313, + 10597902948, + 5550244690, + 5550244691, + 5550244692, + 5550244693 + ], + "geometry": [ + { "lat": 40.7656844, "lon": -73.9630757 }, + { "lat": 40.7656237, "lon": -73.9630947 }, + { "lat": 40.7656161, "lon": -73.9630971 }, + { "lat": 40.7655469, "lon": -73.9630567 }, + { "lat": 40.7654745, "lon": -73.9629754 }, + { "lat": 40.7654627, "lon": -73.9629230 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 579565238, + "bounds": { + "minlat": 40.7653954, + "minlon": -73.9629230, + "maxlat": 40.7654627, + "maxlon": -73.9627616 + }, + "nodes": [ + 5550244693, + 5550244694 + ], + "geometry": [ + { "lat": 40.7654627, "lon": -73.9629230 }, + { "lat": 40.7653954, "lon": -73.9627616 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 579565239, + "bounds": { + "minlat": 40.7653555, + "minlon": -73.9627616, + "maxlat": 40.7654110, + "maxlon": -73.9624701 + }, + "nodes": [ + 5550244694, + 5550244695, + 5550244696, + 10597902949, + 5550244697, + 5550244698 + ], + "geometry": [ + { "lat": 40.7653954, "lon": -73.9627616 }, + { "lat": 40.7653555, "lon": -73.9626722 }, + { "lat": 40.7653597, "lon": -73.9625723 }, + { "lat": 40.7653730, "lon": -73.9625392 }, + { "lat": 40.7653777, "lon": -73.9625274 }, + { "lat": 40.7654110, "lon": -73.9624701 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 579565240, + "bounds": { + "minlat": 40.7651142, + "minlon": -73.9622054, + "maxlat": 40.7652979, + "maxlon": -73.9620867 + }, + "nodes": [ + 5550244699, + 5550244700, + 10597902951, + 5550244701, + 5550244702, + 5550244703 + ], + "geometry": [ + { "lat": 40.7652979, "lon": -73.9622050 }, + { "lat": 40.7652430, "lon": -73.9622054 }, + { "lat": 40.7652318, "lon": -73.9622008 }, + { "lat": 40.7651767, "lon": -73.9621779 }, + { "lat": 40.7651251, "lon": -73.9621340 }, + { "lat": 40.7651142, "lon": -73.9620867 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 579565241, + "bounds": { + "minlat": 40.7650466, + "minlon": -73.9620867, + "maxlat": 40.7651142, + "maxlon": -73.9619224 + }, + "nodes": [ + 5550244703, + 5550244704 + ], + "geometry": [ + { "lat": 40.7651142, "lon": -73.9620867 }, + { "lat": 40.7650466, "lon": -73.9619224 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 579565242, + "bounds": { + "minlat": 40.7650036, + "minlon": -73.9619224, + "maxlat": 40.7650544, + "maxlon": -73.9616277 + }, + "nodes": [ + 5550244704, + 5550244705, + 5550244706, + 10597902950, + 5550244707, + 5550244708 + ], + "geometry": [ + { "lat": 40.7650466, "lon": -73.9619224 }, + { "lat": 40.7650078, "lon": -73.9618451 }, + { "lat": 40.7650036, "lon": -73.9617517 }, + { "lat": 40.7650220, "lon": -73.9616977 }, + { "lat": 40.7650258, "lon": -73.9616864 }, + { "lat": 40.7650544, "lon": -73.9616277 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 579737255, + "bounds": { + "minlat": 40.7750962, + "minlon": -74.0126339, + "maxlat": 40.7752270, + "maxlon": -74.0125279 + }, + "nodes": [ + 1286793938, + 7147999459 + ], + "geometry": [ + { "lat": 40.7750962, "lon": -74.0126339 }, + { "lat": 40.7752270, "lon": -74.0125279 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 579834429, + "bounds": { + "minlat": 40.8404869, + "minlon": -73.9445233, + "maxlat": 40.8406732, + "maxlon": -73.9441872 + }, + "nodes": [ + 2869154556, + 5552273897 + ], + "geometry": [ + { "lat": 40.8404869, "lon": -73.9441872 }, + { "lat": 40.8406732, "lon": -73.9445233 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579834430, + "bounds": { + "minlat": 40.8402450, + "minlon": -73.9441872, + "maxlat": 40.8404869, + "maxlon": -73.9437647 + }, + "nodes": [ + 2869154556, + 5552273899, + 5552273898 + ], + "geometry": [ + { "lat": 40.8404869, "lon": -73.9441872 }, + { "lat": 40.8403259, "lon": -73.9439061 }, + { "lat": 40.8402450, "lon": -73.9437647 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579834431, + "bounds": { + "minlat": 40.8402308, + "minlon": -73.9443153, + "maxlat": 40.8404101, + "maxlon": -73.9439061 + }, + "nodes": [ + 5552273899, + 5552273900, + 5552273901 + ], + "geometry": [ + { "lat": 40.8403259, "lon": -73.9439061 }, + { "lat": 40.8402308, "lon": -73.9439931 }, + { "lat": 40.8404101, "lon": -73.9443153 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579834432, + "bounds": { + "minlat": 40.8401496, + "minlon": -73.9439931, + "maxlat": 40.8402308, + "maxlon": -73.9438448 + }, + "nodes": [ + 5552273900, + 5552273902 + ], + "geometry": [ + { "lat": 40.8402308, "lon": -73.9439931 }, + { "lat": 40.8401496, "lon": -73.9438448 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579834433, + "bounds": { + "minlat": 40.8396107, + "minlon": -73.9434759, + "maxlat": 40.8396458, + "maxlon": -73.9432984 + }, + "nodes": [ + 5552273903, + 9567002586, + 5552273904 + ], + "geometry": [ + { "lat": 40.8396107, "lon": -73.9432984 }, + { "lat": 40.8396311, "lon": -73.9434015 }, + { "lat": 40.8396458, "lon": -73.9434759 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579834434, + "bounds": { + "minlat": 40.8396458, + "minlon": -73.9445659, + "maxlat": 40.8400967, + "maxlon": -73.9434759 + }, + "nodes": [ + 5552273904, + 5552273915, + 5552273905, + 5552273906 + ], + "geometry": [ + { "lat": 40.8396458, "lon": -73.9434759 }, + { "lat": 40.8397574, "lon": -73.9437393 }, + { "lat": 40.8400967, "lon": -73.9445403 }, + { "lat": 40.8400645, "lon": -73.9445659 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "service": "parking_aisle", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 579834435, + "bounds": { + "minlat": 40.8393565, + "minlon": -73.9447926, + "maxlat": 40.8400645, + "maxlon": -73.9437357 + }, + "nodes": [ + 5552273906, + 5552273907, + 5552273908, + 5552273909, + 5552273910, + 5552273911 + ], + "geometry": [ + { "lat": 40.8400645, "lon": -73.9445659 }, + { "lat": 40.8397485, "lon": -73.9447926 }, + { "lat": 40.8397189, "lon": -73.9447789 }, + { "lat": 40.8396789, "lon": -73.9446784 }, + { "lat": 40.8397343, "lon": -73.9446358 }, + { "lat": 40.8393565, "lon": -73.9437357 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579834436, + "bounds": { + "minlat": 40.8395151, + "minlon": -73.9446358, + "maxlat": 40.8398891, + "maxlon": -73.9436301 + }, + "nodes": [ + 5552273910, + 5552273912, + 5552273913 + ], + "geometry": [ + { "lat": 40.8397343, "lon": -73.9446358 }, + { "lat": 40.8398891, "lon": -73.9445233 }, + { "lat": 40.8395151, "lon": -73.9436301 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579834437, + "bounds": { + "minlat": 40.8398891, + "minlon": -73.9445233, + "maxlat": 40.8400219, + "maxlon": -73.9444278 + }, + "nodes": [ + 5552273912, + 5552273914 + ], + "geometry": [ + { "lat": 40.8398891, "lon": -73.9445233 }, + { "lat": 40.8400219, "lon": -73.9444278 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579834438, + "bounds": { + "minlat": 40.8397574, + "minlon": -73.9437393, + "maxlat": 40.8398212, + "maxlon": -73.9436901 + }, + "nodes": [ + 5552273915, + 5552273916 + ], + "geometry": [ + { "lat": 40.8397574, "lon": -73.9437393 }, + { "lat": 40.8398212, "lon": -73.9436901 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "service": "parking_aisle", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 579834439, + "bounds": { + "minlat": 40.8398212, + "minlon": -73.9451454, + "maxlat": 40.8403185, + "maxlon": -73.9436744 + }, + "nodes": [ + 5552273916, + 5552273917, + 5552273918, + 5552274523, + 5552273919, + 5552273920 + ], + "geometry": [ + { "lat": 40.8398212, "lon": -73.9436901 }, + { "lat": 40.8398427, "lon": -73.9436744 }, + { "lat": 40.8401947, "lon": -73.9444943 }, + { "lat": 40.8402335, "lon": -73.9445738 }, + { "lat": 40.8403185, "lon": -73.9447483 }, + { "lat": 40.8398968, "lon": -73.9451454 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579834440, + "bounds": { + "minlat": 40.8391058, + "minlon": -73.9455129, + "maxlat": 40.8399401, + "maxlon": -73.9434915 + }, + "nodes": [ + 5552274521, + 8725182311, + 8725219059, + 5552274522 + ], + "geometry": [ + { "lat": 40.8391098, "lon": -73.9434915 }, + { "lat": 40.8391058, "lon": -73.9435959 }, + { "lat": 40.8399207, "lon": -73.9454683 }, + { "lat": 40.8399401, "lon": -73.9455129 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579834441, + "bounds": { + "minlat": 40.8397795, + "minlon": -73.9449136, + "maxlat": 40.8402335, + "maxlon": -73.9445738 + }, + "nodes": [ + 5552274523, + 5552274524 + ], + "geometry": [ + { "lat": 40.8402335, "lon": -73.9445738 }, + { "lat": 40.8397795, "lon": -73.9449136 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579834442, + "bounds": { + "minlat": 40.8397614, + "minlon": -73.9454843, + "maxlat": 40.8399774, + "maxlon": -73.9449136 + }, + "nodes": [ + 5552274524, + 5552274525, + 5552274526, + 8725219060, + 5552274527 + ], + "geometry": [ + { "lat": 40.8397795, "lon": -73.9449136 }, + { "lat": 40.8397614, "lon": -73.9449545 }, + { "lat": 40.8397679, "lon": -73.9450074 }, + { "lat": 40.8399572, "lon": -73.9454383 }, + { "lat": 40.8399774, "lon": -73.9454843 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579834443, + "bounds": { + "minlat": 40.8398814, + "minlon": -73.9444943, + "maxlat": 40.8402785, + "maxlon": -73.9433863 + }, + "nodes": [ + 5552273918, + 5552274528, + 5552274529, + 5552274530, + 5552274531 + ], + "geometry": [ + { "lat": 40.8401947, "lon": -73.9444943 }, + { "lat": 40.8402785, "lon": -73.9444210 }, + { "lat": 40.8400284, "lon": -73.9438482 }, + { "lat": 40.8400722, "lon": -73.9438090 }, + { "lat": 40.8398814, "lon": -73.9433863 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 579984688, + "bounds": { + "minlat": 40.8075416, + "minlon": -74.0152155, + "maxlat": 40.8084123, + "maxlon": -74.0133377 + }, + "nodes": [ + 103875672, + 12535377694, + 12456261934, + 103867741 + ], + "geometry": [ + { "lat": 40.8075416, "lon": -74.0133377 }, + { "lat": 40.8075669, "lon": -74.0133914 }, + { "lat": 40.8083629, "lon": -74.0151091 }, + { "lat": 40.8084123, "lon": -74.0152155 } + ], + "tags": { + "access": "yes", + "hgv": "no", + "highway": "residential", + "lanes": "2", + "name": "83rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "83rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 580031844, + "bounds": { + "minlat": 40.8108495, + "minlon": -74.0047435, + "maxlat": 40.8110872, + "maxlon": -74.0045287 + }, + "nodes": [ + 9218372753, + 2813943274 + ], + "geometry": [ + { "lat": 40.8108495, "lon": -74.0047435 }, + { "lat": 40.8110872, "lon": -74.0045287 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "State Route 63", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047" + } +}, +{ + "type": "way", + "id": 580586551, + "bounds": { + "minlat": 40.8111359, + "minlon": -74.0054965, + "maxlat": 40.8116193, + "maxlon": -74.0046182 + }, + "nodes": [ + 103858392, + 7475993668, + 6896054288, + 12456261989, + 7475993671, + 103858388 + ], + "geometry": [ + { "lat": 40.8111359, "lon": -74.0046182 }, + { "lat": 40.8111850, "lon": -74.0046931 }, + { "lat": 40.8113245, "lon": -74.0049380 }, + { "lat": 40.8115692, "lon": -74.0054017 }, + { "lat": 40.8115852, "lon": -74.0054321 }, + { "lat": 40.8116193, "lon": -74.0054965 } + ], + "tags": { + "highway": "residential", + "name": "92nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "92nd", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 580733654, + "bounds": { + "minlat": 40.7939443, + "minlon": -74.0196299, + "maxlat": 40.7949291, + "maxlon": -74.0188397 + }, + "nodes": [ + 4528269751, + 7473610389, + 7473610383, + 103862769 + ], + "geometry": [ + { "lat": 40.7949291, "lon": -74.0188397 }, + { "lat": 40.7948801, "lon": -74.0188790 }, + { "lat": 40.7939943, "lon": -74.0195893 }, + { "lat": 40.7939443, "lon": -74.0196299 } + ], + "tags": { + "highway": "residential", + "name": "Smith Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Smith", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 580733659, + "bounds": { + "minlat": 40.7939443, + "minlon": -74.0203905, + "maxlat": 40.7942916, + "maxlon": -74.0196299 + }, + "nodes": [ + 103862769, + 7473610345, + 7473610347, + 103872303 + ], + "geometry": [ + { "lat": 40.7939443, "lon": -74.0196299 }, + { "lat": 40.7939759, "lon": -74.0197036 }, + { "lat": 40.7942669, "lon": -74.0203369 }, + { "lat": 40.7942916, "lon": -74.0203905 } + ], + "tags": { + "highway": "residential", + "name": "63rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "63rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 580811076, + "bounds": { + "minlat": 40.8448365, + "minlon": -73.9075663, + "maxlat": 40.8451136, + "maxlon": -73.9075421 + }, + "nodes": [ + 12042585460, + 12042585461 + ], + "geometry": [ + { "lat": 40.8448365, "lon": -73.9075663 }, + { "lat": 40.8451136, "lon": -73.9075421 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Weeks Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Weeks", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 580811080, + "bounds": { + "minlat": 40.8427189, + "minlon": -73.9077516, + "maxlat": 40.8448365, + "maxlon": -73.9075663 + }, + "nodes": [ + 42771384, + 12737767471, + 2408354095, + 6223504769, + 42754873, + 13040487446, + 42757859, + 13040513615, + 12042585460 + ], + "geometry": [ + { "lat": 40.8427189, "lon": -73.9077516 }, + { "lat": 40.8427826, "lon": -73.9077460 }, + { "lat": 40.8429733, "lon": -73.9077293 }, + { "lat": 40.8435854, "lon": -73.9076758 }, + { "lat": 40.8436872, "lon": -73.9076669 }, + { "lat": 40.8446727, "lon": -73.9075806 }, + { "lat": 40.8447427, "lon": -73.9075745 }, + { "lat": 40.8448005, "lon": -73.9075694 }, + { "lat": 40.8448365, "lon": -73.9075663 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Weeks Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Weeks", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 580815379, + "bounds": { + "minlat": 40.7190980, + "minlon": -73.9286108, + "maxlat": 40.7194775, + "maxlon": -73.9284415 + }, + "nodes": [ + 5482302950, + 5482302945, + 5482302949 + ], + "geometry": [ + { "lat": 40.7190980, "lon": -73.9284415 }, + { "lat": 40.7192849, "lon": -73.9285239 }, + { "lat": 40.7194775, "lon": -73.9286108 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 580985806, + "bounds": { + "minlat": 40.8202287, + "minlon": -73.9770749, + "maxlat": 40.8203950, + "maxlon": -73.9766182 + }, + "nodes": [ + 3441711148, + 9587267752 + ], + "geometry": [ + { "lat": 40.8202287, "lon": -73.9766182 }, + { "lat": 40.8203950, "lon": -73.9770749 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 580985807, + "bounds": { + "minlat": 40.8014921, + "minlon": -73.9936776, + "maxlat": 40.8016667, + "maxlon": -73.9936628 + }, + "nodes": [ + 5560289563, + 4205751591, + 6948739072 + ], + "geometry": [ + { "lat": 40.8014921, "lon": -73.9936776 }, + { "lat": 40.8016476, "lon": -73.9936636 }, + { "lat": 40.8016667, "lon": -73.9936628 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "shared_lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 581027350, + "bounds": { + "minlat": 40.8024503, + "minlon": -74.0145169, + "maxlat": 40.8028735, + "maxlon": -74.0140044 + }, + "nodes": [ + 5560675426, + 7474498890, + 5560675427, + 5560675428, + 5560675429, + 5560675430, + 5560675427 + ], + "geometry": [ + { "lat": 40.8028735, "lon": -74.0140044 }, + { "lat": 40.8028269, "lon": -74.0140422 }, + { "lat": 40.8027335, "lon": -74.0141208 }, + { "lat": 40.8028055, "lon": -74.0142951 }, + { "lat": 40.8025388, "lon": -74.0145169 }, + { "lat": 40.8024503, "lon": -74.0143244 }, + { "lat": 40.8027335, "lon": -74.0141208 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 581027353, + "bounds": { + "minlat": 40.8015257, + "minlon": -74.0143525, + "maxlat": 40.8026770, + "maxlon": -74.0135711 + }, + "nodes": [ + 5560675179, + 7474498889, + 5560675438, + 5560675439, + 5560675440, + 5560675446, + 5560675441, + 5560675451, + 5560675452, + 5560675477, + 5560675471 + ], + "geometry": [ + { "lat": 40.8026770, "lon": -74.0135711 }, + { "lat": 40.8026427, "lon": -74.0136443 }, + { "lat": 40.8026067, "lon": -74.0137556 }, + { "lat": 40.8025413, "lon": -74.0138733 }, + { "lat": 40.8024090, "lon": -74.0139818 }, + { "lat": 40.8023030, "lon": -74.0140177 }, + { "lat": 40.8022948, "lon": -74.0140205 }, + { "lat": 40.8022387, "lon": -74.0139837 }, + { "lat": 40.8019240, "lon": -74.0141060 }, + { "lat": 40.8015616, "lon": -74.0143303 }, + { "lat": 40.8015257, "lon": -74.0143525 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 581027364, + "bounds": { + "minlat": 40.8003167, + "minlon": -74.0149509, + "maxlat": 40.8008809, + "maxlon": -74.0140674 + }, + "nodes": [ + 5560675494, + 7474498891, + 5560675495, + 5560675496, + 5560675497, + 5560675498 + ], + "geometry": [ + { "lat": 40.8003167, "lon": -74.0140674 }, + { "lat": 40.8003601, "lon": -74.0141712 }, + { "lat": 40.8005177, "lon": -74.0145483 }, + { "lat": 40.8005846, "lon": -74.0146392 }, + { "lat": 40.8006366, "lon": -74.0146416 }, + { "lat": 40.8008809, "lon": -74.0149509 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 581117959, + "bounds": { + "minlat": 40.7524054, + "minlon": -73.9310570, + "maxlat": 40.7549740, + "maxlon": -73.9265506 + }, + "nodes": [ + 42815813, + 6452759866, + 10762298303, + 42815816, + 10762298304, + 3573447531, + 42815820, + 3573447530, + 3569401947, + 42815824, + 3569401942, + 3569401933, + 42815829, + 3569401931, + 3569401921, + 42815834, + 3569401919, + 9189020454, + 9189020465, + 9189020455, + 9189020464, + 42815838 + ], + "geometry": [ + { "lat": 40.7549740, "lon": -73.9310570 }, + { "lat": 40.7549121, "lon": -73.9309472 }, + { "lat": 40.7545873, "lon": -73.9303705 }, + { "lat": 40.7545526, "lon": -73.9303090 }, + { "lat": 40.7545122, "lon": -73.9302366 }, + { "lat": 40.7541647, "lon": -73.9296190 }, + { "lat": 40.7541287, "lon": -73.9295551 }, + { "lat": 40.7540826, "lon": -73.9294731 }, + { "lat": 40.7537362, "lon": -73.9288574 }, + { "lat": 40.7537015, "lon": -73.9287957 }, + { "lat": 40.7536612, "lon": -73.9287241 }, + { "lat": 40.7533125, "lon": -73.9281013 }, + { "lat": 40.7532726, "lon": -73.9280311 }, + { "lat": 40.7532386, "lon": -73.9279708 }, + { "lat": 40.7528896, "lon": -73.9273455 }, + { "lat": 40.7528468, "lon": -73.9272710 }, + { "lat": 40.7528112, "lon": -73.9272090 }, + { "lat": 40.7525209, "lon": -73.9266986 }, + { "lat": 40.7524972, "lon": -73.9266575 }, + { "lat": 40.7524695, "lon": -73.9266189 }, + { "lat": 40.7524424, "lon": -73.9265887 }, + { "lat": 40.7524054, "lon": -73.9265506 } + ], + "tags": { + "highway": "residential", + "name": "37th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 581117964, + "bounds": { + "minlat": 40.7537870, + "minlon": -73.9320220, + "maxlat": 40.7549740, + "maxlon": -73.9310570 + }, + "nodes": [ + 42815813, + 6452759867, + 3569401951, + 42849745 + ], + "geometry": [ + { "lat": 40.7549740, "lon": -73.9310570 }, + { "lat": 40.7549061, "lon": -73.9311126 }, + { "lat": 40.7538592, "lon": -73.9319633 }, + { "lat": 40.7537870, "lon": -73.9320220 } + ], + "tags": { + "cycleway": "track", + "highway": "secondary", + "maxheight": "12'6\"", + "name": "31st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 581134345, + "bounds": { + "minlat": 40.8031162, + "minlon": -73.9577756, + "maxlat": 40.8037326, + "maxlon": -73.9563200 + }, + "nodes": [ + 42447317, + 10165997009, + 11298975877, + 42435755 + ], + "geometry": [ + { "lat": 40.8037326, "lon": -73.9577756 }, + { "lat": 40.8036959, "lon": -73.9576892 }, + { "lat": 40.8031711, "lon": -73.9564497 }, + { "lat": 40.8031162, "lon": -73.9563200 } + ], + "tags": { + "highway": "residential", + "name": "West 114th Street", + "name:ru": "Западная 114-я стрит", + "name_1": "West 114 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 581134346, + "bounds": { + "minlat": 40.8037326, + "minlon": -73.9577756, + "maxlat": 40.8050314, + "maxlon": -73.9568273 + }, + "nodes": [ + 42447317, + 10165997007, + 10187643802, + 42446778, + 6814306906, + 6814306896, + 42437188 + ], + "geometry": [ + { "lat": 40.8037326, "lon": -73.9577756 }, + { "lat": 40.8037900, "lon": -73.9577334 }, + { "lat": 40.8043052, "lon": -73.9573533 }, + { "lat": 40.8043600, "lon": -73.9573132 }, + { "lat": 40.8044156, "lon": -73.9572719 }, + { "lat": 40.8049420, "lon": -73.9568930 }, + { "lat": 40.8050314, "lon": -73.9568273 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347126", + "wikipedia": "en:Manhattan Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 581139887, + "bounds": { + "minlat": 40.8057489, + "minlon": -73.9681438, + "maxlat": 40.8076278, + "maxlon": -73.9670504 + }, + "nodes": [ + 42441263, + 595314122, + 7785881412, + 42440577, + 7785782264, + 3666076339, + 7785881407, + 42441276 + ], + "geometry": [ + { "lat": 40.8076278, "lon": -73.9670504 }, + { "lat": 40.8075687, "lon": -73.9670906 }, + { "lat": 40.8070651, "lon": -73.9674186 }, + { "lat": 40.8069791, "lon": -73.9674745 }, + { "lat": 40.8068995, "lon": -73.9675208 }, + { "lat": 40.8063347, "lon": -73.9678466 }, + { "lat": 40.8058801, "lon": -73.9680826 }, + { "lat": 40.8057489, "lon": -73.9681438 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 581139888, + "bounds": { + "minlat": 40.8075991, + "minlon": -73.9669620, + "maxlat": 40.8088175, + "maxlon": -73.9657902 + }, + "nodes": [ + 5004570630, + 7785881386, + 7785782254, + 7785881392, + 7785782255, + 5004570631, + 5004570646, + 5004570649, + 5004570650, + 5004570632 + ], + "geometry": [ + { "lat": 40.8075991, "lon": -73.9669620 }, + { "lat": 40.8076755, "lon": -73.9669068 }, + { "lat": 40.8079069, "lon": -73.9667425 }, + { "lat": 40.8080429, "lon": -73.9666327 }, + { "lat": 40.8081714, "lon": -73.9665208 }, + { "lat": 40.8082218, "lon": -73.9664760 }, + { "lat": 40.8082699, "lon": -73.9664270 }, + { "lat": 40.8086488, "lon": -73.9659799 }, + { "lat": 40.8087257, "lon": -73.9658835 }, + { "lat": 40.8088175, "lon": -73.9657902 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 581182588, + "bounds": { + "minlat": 40.8261786, + "minlon": -73.9202471, + "maxlat": 40.8323220, + "maxlon": -73.9167520 + }, + "nodes": [ + 42731640, + 13018326345, + 13018326332, + 42731634, + 13018326324, + 12038440341, + 42731631, + 11118481025, + 12038440343, + 7244071387, + 8187805335, + 13033539201, + 42731628, + 13033539092, + 10034673444, + 13033539087, + 42731625, + 13033441580, + 8292777329, + 7042936048, + 7564389619, + 42731620, + 12163704744, + 8253436295, + 42731617 + ], + "geometry": [ + { "lat": 40.8323220, "lon": -73.9167520 }, + { "lat": 40.8322570, "lon": -73.9167898 }, + { "lat": 40.8311989, "lon": -73.9174059 }, + { "lat": 40.8311300, "lon": -73.9174460 }, + { "lat": 40.8310711, "lon": -73.9174809 }, + { "lat": 40.8301302, "lon": -73.9180385 }, + { "lat": 40.8300551, "lon": -73.9180830 }, + { "lat": 40.8299692, "lon": -73.9181280 }, + { "lat": 40.8298932, "lon": -73.9181688 }, + { "lat": 40.8297031, "lon": -73.9182708 }, + { "lat": 40.8292071, "lon": -73.9185668 }, + { "lat": 40.8291722, "lon": -73.9185877 }, + { "lat": 40.8291080, "lon": -73.9186260 }, + { "lat": 40.8290393, "lon": -73.9186639 }, + { "lat": 40.8279173, "lon": -73.9192849 }, + { "lat": 40.8278890, "lon": -73.9193006 }, + { "lat": 40.8278250, "lon": -73.9193360 }, + { "lat": 40.8277660, "lon": -73.9193680 }, + { "lat": 40.8274732, "lon": -73.9195267 }, + { "lat": 40.8273979, "lon": -73.9195675 }, + { "lat": 40.8273681, "lon": -73.9195836 }, + { "lat": 40.8270992, "lon": -73.9197290 }, + { "lat": 40.8263155, "lon": -73.9201680 }, + { "lat": 40.8262657, "lon": -73.9201959 }, + { "lat": 40.8261786, "lon": -73.9202471 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Sherman Avenue", + "name:etymology:wikidata": "Q188936", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 581182589, + "bounds": { + "minlat": 40.8338418, + "minlon": -73.9158610, + "maxlat": 40.8339107, + "maxlon": -73.9158196 + }, + "nodes": [ + 42731643, + 2408379361 + ], + "geometry": [ + { "lat": 40.8339107, "lon": -73.9158196 }, + { "lat": 40.8338418, "lon": -73.9158610 } + ], + "tags": { + "highway": "residential", + "name": "Sherman Avenue", + "name:etymology:wikidata": "Q188936", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 581182591, + "bounds": { + "minlat": 40.8337033, + "minlon": -73.9158610, + "maxlat": 40.8338418, + "maxlon": -73.9153487 + }, + "nodes": [ + 2408379361, + 13003568313, + 2408379348 + ], + "geometry": [ + { "lat": 40.8338418, "lon": -73.9158610 }, + { "lat": 40.8338193, "lon": -73.9157811 }, + { "lat": 40.8337033, "lon": -73.9153487 } + ], + "tags": { + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 581182592, + "bounds": { + "minlat": 40.8337594, + "minlon": -73.9159072, + "maxlat": 40.8338418, + "maxlon": -73.9158610 + }, + "nodes": [ + 2408379361, + 2408379375 + ], + "geometry": [ + { "lat": 40.8338418, "lon": -73.9158610 }, + { "lat": 40.8337594, "lon": -73.9159072 } + ], + "tags": { + "highway": "residential", + "name": "Sherman Avenue", + "name:etymology:wikidata": "Q188936", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 581186999, + "bounds": { + "minlat": 40.8340726, + "minlon": -73.9175837, + "maxlat": 40.8343818, + "maxlon": -73.9167205 + }, + "nodes": [ + 2408393015, + 5762094237, + 2408393081, + 2408393034, + 12697054966, + 13534990432, + 3557257103 + ], + "geometry": [ + { "lat": 40.8343818, "lon": -73.9175837 }, + { "lat": 40.8343569, "lon": -73.9175095 }, + { "lat": 40.8343302, "lon": -73.9174277 }, + { "lat": 40.8341400, "lon": -73.9168466 }, + { "lat": 40.8341277, "lon": -73.9168190 }, + { "lat": 40.8341117, "lon": -73.9167879 }, + { "lat": 40.8340726, "lon": -73.9167205 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 167th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 581187001, + "bounds": { + "minlat": 40.8345112, + "minlon": -73.9176461, + "maxlat": 40.8345751, + "maxlon": -73.9174596 + }, + "nodes": [ + 2408379352, + 2408379347 + ], + "geometry": [ + { "lat": 40.8345112, "lon": -73.9174596 }, + { "lat": 40.8345751, "lon": -73.9176461 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 167th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 581187002, + "bounds": { + "minlat": 40.8345112, + "minlon": -73.9174596, + "maxlat": 40.8363236, + "maxlon": -73.9156889 + }, + "nodes": [ + 2408379352, + 12739350651, + 2408395832, + 2408379342, + 13534990440, + 13038884619, + 2408369217 + ], + "geometry": [ + { "lat": 40.8345112, "lon": -73.9174596 }, + { "lat": 40.8345684, "lon": -73.9174047 }, + { "lat": 40.8351184, "lon": -73.9168670 }, + { "lat": 40.8357164, "lon": -73.9162800 }, + { "lat": 40.8362136, "lon": -73.9157967 }, + { "lat": 40.8362550, "lon": -73.9157561 }, + { "lat": 40.8363236, "lon": -73.9156889 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 581189155, + "bounds": { + "minlat": 40.7797691, + "minlon": -73.9443667, + "maxlat": 40.7801930, + "maxlon": -73.9441831 + }, + "nodes": [ + 3785532381, + 9178967045, + 9178967046, + 3785532379, + 6289180302, + 8828140387 + ], + "geometry": [ + { "lat": 40.7801930, "lon": -73.9441831 }, + { "lat": 40.7801175, "lon": -73.9441974 }, + { "lat": 40.7800603, "lon": -73.9442152 }, + { "lat": 40.7799862, "lon": -73.9442491 }, + { "lat": 40.7798480, "lon": -73.9443419 }, + { "lat": 40.7797691, "lon": -73.9443667 } + ], + "tags": { + "destination": "FDR Drive south and York Avenue", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 581194672, + "bounds": { + "minlat": 40.8165762, + "minlon": -73.9167513, + "maxlat": 40.8172110, + "maxlon": -73.9159910 + }, + "nodes": [ + 42733534, + 2912071215, + 2912071216, + 12040128391, + 42758642 + ], + "geometry": [ + { "lat": 40.8165762, "lon": -73.9167513 }, + { "lat": 40.8166322, "lon": -73.9166791 }, + { "lat": 40.8169182, "lon": -73.9163315 }, + { "lat": 40.8171471, "lon": -73.9160653 }, + { "lat": 40.8172110, "lon": -73.9159910 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 581197241, + "bounds": { + "minlat": 40.8469048, + "minlon": -73.9222738, + "maxlat": 40.8474255, + "maxlon": -73.9206609 + }, + "nodes": [ + 2907939255, + 12046845382, + 12046845381, + 12046845380, + 12046845379, + 12046845377, + 12046845378, + 12046845376, + 12046845375, + 12046845374, + 12046845373, + 42728192, + 12054487761, + 12054487762, + 12054487763 + ], + "geometry": [ + { "lat": 40.8469048, "lon": -73.9206609 }, + { "lat": 40.8469174, "lon": -73.9206671 }, + { "lat": 40.8469289, "lon": -73.9206745 }, + { "lat": 40.8469404, "lon": -73.9206858 }, + { "lat": 40.8469510, "lon": -73.9207011 }, + { "lat": 40.8469610, "lon": -73.9207196 }, + { "lat": 40.8469705, "lon": -73.9207394 }, + { "lat": 40.8471501, "lon": -73.9212059 }, + { "lat": 40.8471601, "lon": -73.9212358 }, + { "lat": 40.8471704, "lon": -73.9212682 }, + { "lat": 40.8471788, "lon": -73.9212982 }, + { "lat": 40.8471953, "lon": -73.9213646 }, + { "lat": 40.8473103, "lon": -73.9218191 }, + { "lat": 40.8473212, "lon": -73.9218618 }, + { "lat": 40.8474255, "lon": -73.9222738 } + ], + "tags": { + "highway": "residential", + "name": "West 174th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "174th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 581437442, + "bounds": { + "minlat": 40.8791725, + "minlon": -73.9167311, + "maxlat": 40.8793554, + "maxlon": -73.9167263 + }, + "nodes": [ + 5324454006, + 5588603826, + 1545136746, + 5324454001 + ], + "geometry": [ + { "lat": 40.8791725, "lon": -73.9167286 }, + { "lat": 40.8792375, "lon": -73.9167264 }, + { "lat": 40.8792959, "lon": -73.9167263 }, + { "lat": 40.8793554, "lon": -73.9167311 } + ], + "tags": { + "highway": "tertiary", + "name": "Kappock Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Kappock", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 581437443, + "bounds": { + "minlat": 40.8793554, + "minlon": -73.9167579, + "maxlat": 40.8795134, + "maxlon": -73.9167305 + }, + "nodes": [ + 5324454001, + 9594591205, + 9594980226, + 42747763 + ], + "geometry": [ + { "lat": 40.8793554, "lon": -73.9167311 }, + { "lat": 40.8794308, "lon": -73.9167305 }, + { "lat": 40.8794686, "lon": -73.9167416 }, + { "lat": 40.8795134, "lon": -73.9167579 } + ], + "tags": { + "highway": "tertiary", + "name": "Kappock Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Kappock", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 581438723, + "bounds": { + "minlat": 40.8665976, + "minlon": -73.9839550, + "maxlat": 40.8673070, + "maxlon": -73.9827061 + }, + "nodes": [ + 103224125, + 8073299995, + 103264938, + 103103149 + ], + "geometry": [ + { "lat": 40.8673070, "lon": -73.9839550 }, + { "lat": 40.8672293, "lon": -73.9838202 }, + { "lat": 40.8669290, "lon": -73.9832990 }, + { "lat": 40.8665976, "lon": -73.9827061 } + ], + "tags": { + "highway": "residential", + "name": "Christie Heights Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Christie Heights", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 581438724, + "bounds": { + "minlat": 40.8673070, + "minlon": -73.9839550, + "maxlat": 40.8679100, + "maxlon": -73.9834969 + }, + "nodes": [ + 103224125, + 10234828654, + 8073299979, + 8073299988 + ], + "geometry": [ + { "lat": 40.8673070, "lon": -73.9839550 }, + { "lat": 40.8673643, "lon": -73.9839117 }, + { "lat": 40.8675229, "lon": -73.9837981 }, + { "lat": 40.8679100, "lon": -73.9834969 } + ], + "tags": { + "highway": "tertiary", + "maxheight:signed": "no", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 581439230, + "bounds": { + "minlat": 40.8489560, + "minlon": -73.9825776, + "maxlat": 40.8493663, + "maxlon": -73.9818550 + }, + "nodes": [ + 103258775, + 103193342 + ], + "geometry": [ + { "lat": 40.8489560, "lon": -73.9818550 }, + { "lat": 40.8493663, "lon": -73.9825776 } + ], + "tags": { + "highway": "residential", + "name": "Stillwell Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Stillwell", + "tiger:name_type": "Ave", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 581441549, + "bounds": { + "minlat": 40.8542824, + "minlon": -73.9799967, + "maxlat": 40.8575551, + "maxlon": -73.9757329 + }, + "nodes": [ + 103146639, + 12020325925, + 12020325923, + 103276294, + 5449467666, + 5449454976, + 9901107246, + 103276292, + 103276290, + 9901107258, + 5449454960, + 103276289, + 11007764188, + 5449454965, + 103276287, + 103140893, + 7407669623, + 6964853615, + 7407669470, + 7407669530, + 103276285 + ], + "geometry": [ + { "lat": 40.8575551, "lon": -73.9799967 }, + { "lat": 40.8575033, "lon": -73.9799435 }, + { "lat": 40.8572778, "lon": -73.9797120 }, + { "lat": 40.8569433, "lon": -73.9793681 }, + { "lat": 40.8568694, "lon": -73.9792972 }, + { "lat": 40.8564400, "lon": -73.9788881 }, + { "lat": 40.8563181, "lon": -73.9787713 }, + { "lat": 40.8562496, "lon": -73.9787047 }, + { "lat": 40.8561383, "lon": -73.9785771 }, + { "lat": 40.8561233, "lon": -73.9785556 }, + { "lat": 40.8560458, "lon": -73.9784345 }, + { "lat": 40.8560140, "lon": -73.9783900 }, + { "lat": 40.8560006, "lon": -73.9783695 }, + { "lat": 40.8557522, "lon": -73.9779897 }, + { "lat": 40.8553260, "lon": -73.9773380 }, + { "lat": 40.8549089, "lon": -73.9767211 }, + { "lat": 40.8546417, "lon": -73.9763057 }, + { "lat": 40.8545155, "lon": -73.9761094 }, + { "lat": 40.8544760, "lon": -73.9760456 }, + { "lat": 40.8543313, "lon": -73.9758118 }, + { "lat": 40.8542824, "lon": -73.9757329 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 581475790, + "bounds": { + "minlat": 40.8276612, + "minlon": -73.9260307, + "maxlat": 40.8278308, + "maxlon": -73.9259320 + }, + "nodes": [ + 2411399009, + 42748139 + ], + "geometry": [ + { "lat": 40.8276612, "lon": -73.9260307 }, + { "lat": 40.8278308, "lon": -73.9259320 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "River Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 581475793, + "bounds": { + "minlat": 40.8278308, + "minlon": -73.9263878, + "maxlat": 40.8279732, + "maxlon": -73.9259320 + }, + "nodes": [ + 42748139, + 9910729413, + 12163643897, + 4207863953 + ], + "geometry": [ + { "lat": 40.8278308, "lon": -73.9259320 }, + { "lat": 40.8278934, "lon": -73.9261255 }, + { "lat": 40.8279254, "lon": -73.9262353 }, + { "lat": 40.8279732, "lon": -73.9263878 } + ], + "tags": { + "busway:left": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 581475798, + "bounds": { + "minlat": 40.8279777, + "minlon": -73.9258471, + "maxlat": 40.8306810, + "maxlon": -73.9242610 + }, + "nodes": [ + 2411145323, + 12163643889, + 12163704701, + 42732983, + 42732925, + 2609934069, + 2609934072, + 13039118969, + 42742426 + ], + "geometry": [ + { "lat": 40.8279777, "lon": -73.9258471 }, + { "lat": 40.8280702, "lon": -73.9257924 }, + { "lat": 40.8281087, "lon": -73.9257697 }, + { "lat": 40.8294668, "lon": -73.9249667 }, + { "lat": 40.8297779, "lon": -73.9247912 }, + { "lat": 40.8302751, "lon": -73.9245101 }, + { "lat": 40.8304255, "lon": -73.9244178 }, + { "lat": 40.8306289, "lon": -73.9242930 }, + { "lat": 40.8306810, "lon": -73.9242610 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "River Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 581475802, + "bounds": { + "minlat": 40.8280832, + "minlon": -73.9265633, + "maxlat": 40.8282039, + "maxlon": -73.9261802 + }, + "nodes": [ + 11965769186, + 12163643895, + 2411145325 + ], + "geometry": [ + { "lat": 40.8280832, "lon": -73.9261802 }, + { "lat": 40.8281206, "lon": -73.9262988 }, + { "lat": 40.8282039, "lon": -73.9265633 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes": "left|through", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 581476634, + "bounds": { + "minlat": 40.8410453, + "minlon": -73.9398646, + "maxlat": 40.8411223, + "maxlon": -73.9396840 + }, + "nodes": [ + 561035382, + 42428978 + ], + "geometry": [ + { "lat": 40.8410453, "lon": -73.9396840 }, + { "lat": 40.8411223, "lon": -73.9398646 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "tertiary", + "name": "West 168th Street", + "name_1": "West 168 Street", + "name_2": "Haven Avenue", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "168th", + "tiger:name_base_1": "168", + "tiger:name_base_2": "Haven", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:name_type_2": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 581479973, + "bounds": { + "minlat": 40.8257251, + "minlon": -73.9197861, + "maxlat": 40.8260356, + "maxlon": -73.9188800 + }, + "nodes": [ + 7029503717, + 13018344351, + 9910729385, + 12163704748, + 7847666903, + 12163704746, + 8907128165 + ], + "geometry": [ + { "lat": 40.8257251, "lon": -73.9188800 }, + { "lat": 40.8257927, "lon": -73.9190608 }, + { "lat": 40.8258419, "lon": -73.9191923 }, + { "lat": 40.8258867, "lon": -73.9193280 }, + { "lat": 40.8259234, "lon": -73.9194390 }, + { "lat": 40.8259518, "lon": -73.9195267 }, + { "lat": 40.8260356, "lon": -73.9197861 } + ], + "tags": { + "bus:lanes:backward": "designated", + "busway:left": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 581491885, + "bounds": { + "minlat": 40.8505426, + "minlon": -73.9178649, + "maxlat": 40.8526766, + "maxlon": -73.9155182 + }, + "nodes": [ + 2907939233, + 2327435576, + 8463760572, + 2327435573, + 9918264462, + 9918264463, + 2327435574, + 9918264464, + 2810186607, + 9918264465, + 42781109, + 9918264466, + 2327435572, + 9918264467, + 9918264468, + 9918264469, + 9918264470, + 2327435577, + 9918264473, + 2327435581, + 9918264474, + 9918264475, + 42731827, + 9918264476, + 2327435582, + 9918264480, + 9918264481, + 9918264482, + 42781112, + 9918264483, + 9918264484, + 9918264485, + 9918264486, + 4720620195 + ], + "geometry": [ + { "lat": 40.8505426, "lon": -73.9155182 }, + { "lat": 40.8506224, "lon": -73.9156186 }, + { "lat": 40.8506791, "lon": -73.9156797 }, + { "lat": 40.8507541, "lon": -73.9157540 }, + { "lat": 40.8508254, "lon": -73.9158104 }, + { "lat": 40.8509067, "lon": -73.9158628 }, + { "lat": 40.8509791, "lon": -73.9159030 }, + { "lat": 40.8510561, "lon": -73.9159330 }, + { "lat": 40.8511361, "lon": -73.9159550 }, + { "lat": 40.8512430, "lon": -73.9159646 }, + { "lat": 40.8513419, "lon": -73.9159597 }, + { "lat": 40.8514150, "lon": -73.9159566 }, + { "lat": 40.8514755, "lon": -73.9159625 }, + { "lat": 40.8515463, "lon": -73.9159759 }, + { "lat": 40.8516104, "lon": -73.9160001 }, + { "lat": 40.8516581, "lon": -73.9160251 }, + { "lat": 40.8517115, "lon": -73.9160644 }, + { "lat": 40.8517571, "lon": -73.9161122 }, + { "lat": 40.8517924, "lon": -73.9161639 }, + { "lat": 40.8518260, "lon": -73.9162217 }, + { "lat": 40.8518588, "lon": -73.9162877 }, + { "lat": 40.8518870, "lon": -73.9163623 }, + { "lat": 40.8519111, "lon": -73.9164575 }, + { "lat": 40.8519257, "lon": -73.9165500 }, + { "lat": 40.8520600, "lon": -73.9172060 }, + { "lat": 40.8520769, "lon": -73.9172733 }, + { "lat": 40.8520938, "lon": -73.9173289 }, + { "lat": 40.8521110, "lon": -73.9173735 }, + { "lat": 40.8521315, "lon": -73.9174174 }, + { "lat": 40.8521646, "lon": -73.9174600 }, + { "lat": 40.8522075, "lon": -73.9175086 }, + { "lat": 40.8522590, "lon": -73.9175546 }, + { "lat": 40.8523075, "lon": -73.9175934 }, + { "lat": 40.8526766, "lon": -73.9178649 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "name": "West Tremont Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 581519586, + "bounds": { + "minlat": 40.8767490, + "minlon": -73.9068426, + "maxlat": 40.8769028, + "maxlon": -73.9066572 + }, + "nodes": [ + 1544782722, + 2303340798, + 12529719497, + 1544782747 + ], + "geometry": [ + { "lat": 40.8769028, "lon": -73.9068426 }, + { "lat": 40.8768276, "lon": -73.9067634 }, + { "lat": 40.8767808, "lon": -73.9067002 }, + { "lat": 40.8767490, "lon": -73.9066572 } + ], + "tags": { + "highway": "secondary", + "name": "West 230th Street", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 581519591, + "bounds": { + "minlat": 40.8766753, + "minlon": -73.9065288, + "maxlat": 40.8770817, + "maxlon": -73.9061343 + }, + "nodes": [ + 1396352309, + 1544809893, + 42732260 + ], + "geometry": [ + { "lat": 40.8766753, "lon": -73.9065288 }, + { "lat": 40.8768663, "lon": -73.9063024 }, + { "lat": 40.8770817, "lon": -73.9061343 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "turn:lanes": "through||right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 581519596, + "bounds": { + "minlat": 40.8765074, + "minlon": -73.9065288, + "maxlat": 40.8766753, + "maxlon": -73.9062697 + }, + "nodes": [ + 5706568832, + 1396352296, + 10128431582, + 1396352309 + ], + "geometry": [ + { "lat": 40.8765074, "lon": -73.9062697 }, + { "lat": 40.8765719, "lon": -73.9063618 }, + { "lat": 40.8766217, "lon": -73.9064423 }, + { "lat": 40.8766753, "lon": -73.9065288 } + ], + "tags": { + "highway": "residential", + "name": "Exterior Street", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Exterior", + "tiger:name_type": "St", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 581519599, + "bounds": { + "minlat": 40.8767490, + "minlon": -73.9066572, + "maxlat": 40.8768665, + "maxlon": -73.9065065 + }, + "nodes": [ + 1544782753, + 1544782747 + ], + "geometry": [ + { "lat": 40.8768665, "lon": -73.9065065 }, + { "lat": 40.8767490, "lon": -73.9066572 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 581544452, + "bounds": { + "minlat": 40.8413470, + "minlon": -73.9168920, + "maxlat": 40.8443455, + "maxlon": -73.9147517 + }, + "nodes": [ + 42736340, + 12737767494, + 11135829635, + 13247540981, + 12046949327, + 42736345, + 13247540980, + 13247310801, + 42736350, + 13247296495, + 13247381556, + 42736356 + ], + "geometry": [ + { "lat": 40.8443455, "lon": -73.9147517 }, + { "lat": 40.8442947, "lon": -73.9147875 }, + { "lat": 40.8438215, "lon": -73.9151205 }, + { "lat": 40.8434313, "lon": -73.9154014 }, + { "lat": 40.8433834, "lon": -73.9154359 }, + { "lat": 40.8433705, "lon": -73.9154452 }, + { "lat": 40.8433056, "lon": -73.9154915 }, + { "lat": 40.8424100, "lon": -73.9161305 }, + { "lat": 40.8423350, "lon": -73.9161840 }, + { "lat": 40.8422481, "lon": -73.9162420 }, + { "lat": 40.8414057, "lon": -73.9168497 }, + { "lat": 40.8413470, "lon": -73.9168920 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 581544456, + "bounds": { + "minlat": 40.8443455, + "minlon": -73.9174002, + "maxlat": 40.8449376, + "maxlon": -73.9147517 + }, + "nodes": [ + 42736340, + 12044633655, + 7044558817, + 7044558822, + 13247540970, + 42740214, + 12046949321, + 12046949320, + 12046949319, + 42748598, + 12046949318, + 12046949317, + 12046949316, + 5333189315, + 12046949315, + 12046949314, + 12046949313, + 12046949312, + 5333189316, + 12046949311, + 12046949310, + 12046949306, + 7950889859, + 12089567403 + ], + "geometry": [ + { "lat": 40.8443455, "lon": -73.9147517 }, + { "lat": 40.8444012, "lon": -73.9148898 }, + { "lat": 40.8444540, "lon": -73.9150212 }, + { "lat": 40.8445285, "lon": -73.9152065 }, + { "lat": 40.8447458, "lon": -73.9157470 }, + { "lat": 40.8447940, "lon": -73.9158670 }, + { "lat": 40.8448192, "lon": -73.9159427 }, + { "lat": 40.8448356, "lon": -73.9160018 }, + { "lat": 40.8448492, "lon": -73.9160662 }, + { "lat": 40.8448583, "lon": -73.9161243 }, + { "lat": 40.8448635, "lon": -73.9161822 }, + { "lat": 40.8448655, "lon": -73.9162343 }, + { "lat": 40.8448640, "lon": -73.9162897 }, + { "lat": 40.8448602, "lon": -73.9163450 }, + { "lat": 40.8448434, "lon": -73.9164609 }, + { "lat": 40.8448327, "lon": -73.9165373 }, + { "lat": 40.8448264, "lon": -73.9166152 }, + { "lat": 40.8448241, "lon": -73.9166831 }, + { "lat": 40.8448254, "lon": -73.9167587 }, + { "lat": 40.8448290, "lon": -73.9168168 }, + { "lat": 40.8448369, "lon": -73.9168877 }, + { "lat": 40.8448491, "lon": -73.9169617 }, + { "lat": 40.8448931, "lon": -73.9171876 }, + { "lat": 40.8449376, "lon": -73.9174002 } + ], + "tags": { + "highway": "residential", + "name": "West Mount Eden Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Eden", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 581544460, + "bounds": { + "minlat": 40.8443455, + "minlon": -73.9147517, + "maxlat": 40.8446308, + "maxlon": -73.9145483 + }, + "nodes": [ + 2408357240, + 12737767489, + 42736340 + ], + "geometry": [ + { "lat": 40.8446308, "lon": -73.9145483 }, + { "lat": 40.8444092, "lon": -73.9147063 }, + { "lat": 40.8443455, "lon": -73.9147517 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 581551870, + "bounds": { + "minlat": 40.8388783, + "minlon": -73.9150551, + "maxlat": 40.8393163, + "maxlon": -73.9138902 + }, + "nodes": [ + 2408355539, + 5543337909, + 2408364017, + 2327276576, + 5762102230, + 2408359280 + ], + "geometry": [ + { "lat": 40.8388783, "lon": -73.9138902 }, + { "lat": 40.8389134, "lon": -73.9139814 }, + { "lat": 40.8390938, "lon": -73.9144485 }, + { "lat": 40.8392818, "lon": -73.9149395 }, + { "lat": 40.8392944, "lon": -73.9149809 }, + { "lat": 40.8393163, "lon": -73.9150551 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 581551872, + "bounds": { + "minlat": 40.8387091, + "minlon": -73.9140083, + "maxlat": 40.8388783, + "maxlon": -73.9138902 + }, + "nodes": [ + 2408355539, + 2327276565 + ], + "geometry": [ + { "lat": 40.8388783, "lon": -73.9138902 }, + { "lat": 40.8387091, "lon": -73.9140083 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 581675292, + "bounds": { + "minlat": 40.8246425, + "minlon": -73.9105720, + "maxlat": 40.8361810, + "maxlon": -73.9041590 + }, + "nodes": [ + 42730120, + 13625142334, + 13625142346, + 42730113, + 13625142340, + 13625142365, + 42730107, + 13625142371, + 9965084378, + 13625142387, + 42730101, + 13625142388, + 9520894269, + 42730097, + 13625142408, + 42730093, + 7043135798, + 5482223726, + 13701226090, + 5482223736, + 42730090, + 5482222817, + 13232694531, + 12038478792, + 42730085, + 12038478794, + 13701087893, + 42730082, + 7512817960, + 13247311015, + 42730080, + 13247311016, + 5540168246, + 8404331295, + 5540230538, + 9917683076, + 42730079 + ], + "geometry": [ + { "lat": 40.8361810, "lon": -73.9041590 }, + { "lat": 40.8361203, "lon": -73.9041931 }, + { "lat": 40.8354086, "lon": -73.9045932 }, + { "lat": 40.8353360, "lon": -73.9046340 }, + { "lat": 40.8352588, "lon": -73.9046773 }, + { "lat": 40.8331458, "lon": -73.9058640 }, + { "lat": 40.8330550, "lon": -73.9059150 }, + { "lat": 40.8329606, "lon": -73.9059672 }, + { "lat": 40.8323823, "lon": -73.9062868 }, + { "lat": 40.8314659, "lon": -73.9067933 }, + { "lat": 40.8313850, "lon": -73.9068380 }, + { "lat": 40.8312945, "lon": -73.9068888 }, + { "lat": 40.8310876, "lon": -73.9070063 }, + { "lat": 40.8298230, "lon": -73.9077220 }, + { "lat": 40.8297685, "lon": -73.9077524 }, + { "lat": 40.8291400, "lon": -73.9081030 }, + { "lat": 40.8291197, "lon": -73.9081141 }, + { "lat": 40.8288303, "lon": -73.9082726 }, + { "lat": 40.8287840, "lon": -73.9082980 }, + { "lat": 40.8286666, "lon": -73.9083622 }, + { "lat": 40.8282250, "lon": -73.9086040 }, + { "lat": 40.8278958, "lon": -73.9087889 }, + { "lat": 40.8278614, "lon": -73.9088082 }, + { "lat": 40.8270561, "lon": -73.9092607 }, + { "lat": 40.8270028, "lon": -73.9092906 }, + { "lat": 40.8269374, "lon": -73.9093259 }, + { "lat": 40.8266845, "lon": -73.9094624 }, + { "lat": 40.8265110, "lon": -73.9095560 }, + { "lat": 40.8263737, "lon": -73.9096284 }, + { "lat": 40.8259102, "lon": -73.9098766 }, + { "lat": 40.8258542, "lon": -73.9099066 }, + { "lat": 40.8257866, "lon": -73.9099442 }, + { "lat": 40.8250875, "lon": -73.9103330 }, + { "lat": 40.8250805, "lon": -73.9103370 }, + { "lat": 40.8250005, "lon": -73.9103820 }, + { "lat": 40.8247213, "lon": -73.9105438 }, + { "lat": 40.8246425, "lon": -73.9105720 } + ], + "tags": { + "highway": "residential", + "name": "Washington Avenue", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Washington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 581811227, + "bounds": { + "minlat": 40.8158754, + "minlon": -73.9396685, + "maxlat": 40.8160584, + "maxlon": -73.9395348 + }, + "nodes": [ + 3099327976, + 9557110357, + 9468882851 + ], + "geometry": [ + { "lat": 40.8160584, "lon": -73.9395348 }, + { "lat": 40.8160086, "lon": -73.9395712 }, + { "lat": 40.8158754, "lon": -73.9396685 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 582399751, + "bounds": { + "minlat": 40.7960309, + "minlon": -74.0002558, + "maxlat": 40.7968141, + "maxlon": -73.9985700 + }, + "nodes": [ + 5570105474, + 7468583855, + 6918402339, + 7468583853, + 103883598 + ], + "geometry": [ + { "lat": 40.7960309, "lon": -73.9985700 }, + { "lat": 40.7960403, "lon": -73.9985908 }, + { "lat": 40.7961080, "lon": -73.9987406 }, + { "lat": 40.7967503, "lon": -74.0001190 }, + { "lat": 40.7968141, "lon": -74.0002558 } + ], + "tags": { + "highway": "residential", + "name": "77th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "77th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 582698192, + "bounds": { + "minlat": 40.7949926, + "minlon": -74.0015247, + "maxlat": 40.7956021, + "maxlon": -74.0011047 + }, + "nodes": [ + 103867934, + 7468583823, + 5482160108, + 5482160110, + 7468583825, + 103886419 + ], + "geometry": [ + { "lat": 40.7949926, "lon": -74.0015247 }, + { "lat": 40.7950582, "lon": -74.0014775 }, + { "lat": 40.7952290, "lon": -74.0013549 }, + { "lat": 40.7953250, "lon": -74.0012868 }, + { "lat": 40.7955511, "lon": -74.0011382 }, + { "lat": 40.7956021, "lon": -74.0011047 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09121044", + "highway": "tertiary", + "name": "Park Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 582796404, + "bounds": { + "minlat": 40.8096967, + "minlon": -74.0004821, + "maxlat": 40.8097974, + "maxlon": -74.0004120 + }, + "nodes": [ + 440208141, + 103869246 + ], + "geometry": [ + { "lat": 40.8097974, "lon": -74.0004821 }, + { "lat": 40.8096967, "lon": -74.0004120 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081243", + "highway": "secondary", + "name": "Woodcliff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Woodcliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 582796417, + "bounds": { + "minlat": 40.8333321, + "minlon": -74.0152526, + "maxlat": 40.8344757, + "maxlon": -74.0117982 + }, + "nodes": [ + 695054581, + 103174102, + 103198908, + 103198910, + 103198912, + 103198915, + 103198918, + 103198920, + 13527754435, + 103135525 + ], + "geometry": [ + { "lat": 40.8333321, "lon": -74.0117982 }, + { "lat": 40.8334467, "lon": -74.0125223 }, + { "lat": 40.8334804, "lon": -74.0127442 }, + { "lat": 40.8335204, "lon": -74.0129925 }, + { "lat": 40.8335540, "lon": -74.0132310 }, + { "lat": 40.8336240, "lon": -74.0134550 }, + { "lat": 40.8337080, "lon": -74.0136700 }, + { "lat": 40.8342750, "lon": -74.0148710 }, + { "lat": 40.8344461, "lon": -74.0151962 }, + { "lat": 40.8344757, "lon": -74.0152526 } + ], + "tags": { + "Bergen_County_database_ref": "17", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020001241", + "highway": "secondary", + "name": "Hendricks Causeway", + "old_ref": "CR 17", + "ref": "CR 124", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hendricks", + "tiger:name_type": "Cswy", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 582956898, + "bounds": { + "minlat": 40.8339998, + "minlon": -74.0144501, + "maxlat": 40.8354008, + "maxlon": -74.0115192 + }, + "nodes": [ + 103135528, + 103196582, + 103209183, + 9909757188, + 9909757197, + 103174107, + 7655813557, + 695054969 + ], + "geometry": [ + { "lat": 40.8354008, "lon": -74.0144501 }, + { "lat": 40.8350040, "lon": -74.0136440 }, + { "lat": 40.8346667, "lon": -74.0129069 }, + { "lat": 40.8344408, "lon": -74.0123862 }, + { "lat": 40.8343157, "lon": -74.0120979 }, + { "lat": 40.8342707, "lon": -74.0119943 }, + { "lat": 40.8341764, "lon": -74.0118289 }, + { "lat": 40.8339998, "lon": -74.0115192 } + ], + "tags": { + "highway": "residential", + "name": "Edgewater Avenue West", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 582956902, + "bounds": { + "minlat": 40.8344757, + "minlon": -74.0178728, + "maxlat": 40.8359518, + "maxlon": -74.0152526 + }, + "nodes": [ + 103135525, + 11083612749, + 103198923, + 7136480025, + 8218992419, + 103198924, + 103198925, + 103198926, + 7136480028, + 103198927 + ], + "geometry": [ + { "lat": 40.8344757, "lon": -74.0152526 }, + { "lat": 40.8347196, "lon": -74.0157266 }, + { "lat": 40.8352420, "lon": -74.0167420 }, + { "lat": 40.8352884, "lon": -74.0168233 }, + { "lat": 40.8356259, "lon": -74.0174505 }, + { "lat": 40.8356660, "lon": -74.0175250 }, + { "lat": 40.8357190, "lon": -74.0176110 }, + { "lat": 40.8358170, "lon": -74.0177460 }, + { "lat": 40.8358393, "lon": -74.0177647 }, + { "lat": 40.8359518, "lon": -74.0178728 } + ], + "tags": { + "Bergen_County_database_ref": "17", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020001241", + "highway": "secondary", + "name": "Hendricks Causeway", + "old_ref": "CR 17", + "ref": "CR 124", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hendricks", + "tiger:name_type": "Cswy", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 582956907, + "bounds": { + "minlat": 40.8367890, + "minlon": -74.0175690, + "maxlat": 40.8373160, + "maxlon": -74.0169420 + }, + "nodes": [ + 103198944, + 4049119150, + 5704770149, + 103277594, + 103277592, + 103277590 + ], + "geometry": [ + { "lat": 40.8373160, "lon": -74.0175690 }, + { "lat": 40.8372414, "lon": -74.0174862 }, + { "lat": 40.8370828, "lon": -74.0173102 }, + { "lat": 40.8370060, "lon": -74.0172250 }, + { "lat": 40.8368900, "lon": -74.0170820 }, + { "lat": 40.8367890, "lon": -74.0169420 } + ], + "tags": { + "highway": "residential", + "name": "Edgewater Avenue West", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 582956912, + "bounds": { + "minlat": 40.8359518, + "minlon": -74.0178728, + "maxlat": 40.8367890, + "maxlon": -74.0169420 + }, + "nodes": [ + 103198927, + 7136480030, + 103277590 + ], + "geometry": [ + { "lat": 40.8359518, "lon": -74.0178728 }, + { "lat": 40.8361670, "lon": -74.0176336 }, + { "lat": 40.8367890, "lon": -74.0169420 } + ], + "tags": { + "access": "yes", + "foot": "yes", + "highway": "unclassified", + "maxspeed": "20 mph", + "name": "Victoria Terrace", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Victoria", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 582996470, + "bounds": { + "minlat": 40.7516996, + "minlon": -73.9334262, + "maxlat": 40.7519027, + "maxlon": -73.9326380 + }, + "nodes": [ + 3573447508, + 11645913766, + 9189020476, + 9189020475, + 9189020474, + 277133115, + 6808477089, + 4443931196 + ], + "geometry": [ + { "lat": 40.7516996, "lon": -73.9334262 }, + { "lat": 40.7517357, "lon": -73.9333201 }, + { "lat": 40.7517412, "lon": -73.9333039 }, + { "lat": 40.7517788, "lon": -73.9331797 }, + { "lat": 40.7518155, "lon": -73.9330422 }, + { "lat": 40.7518506, "lon": -73.9329010 }, + { "lat": 40.7518819, "lon": -73.9327525 }, + { "lat": 40.7519027, "lon": -73.9326380 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 583353803, + "bounds": { + "minlat": 40.8627837, + "minlon": -73.9889919, + "maxlat": 40.8630449, + "maxlon": -73.9883465 + }, + "nodes": [ + 103243123, + 5577170519, + 10261021314, + 10261021352, + 2776249314 + ], + "geometry": [ + { "lat": 40.8630010, "lon": -73.9889919 }, + { "lat": 40.8630449, "lon": -73.9889532 }, + { "lat": 40.8630132, "lon": -73.9888789 }, + { "lat": 40.8628012, "lon": -73.9883825 }, + { "lat": 40.8627837, "lon": -73.9883465 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 583357693, + "bounds": { + "minlat": 40.8538805, + "minlon": -74.0115934, + "maxlat": 40.8541664, + "maxlon": -74.0104564 + }, + "nodes": [ + 2468183321, + 2468183398, + 5577214981, + 5577214982, + 5577214983, + 5577214984, + 5577214985 + ], + "geometry": [ + { "lat": 40.8538805, "lon": -74.0115934 }, + { "lat": 40.8539069, "lon": -74.0115076 }, + { "lat": 40.8539991, "lon": -74.0112527 }, + { "lat": 40.8540915, "lon": -74.0110776 }, + { "lat": 40.8541664, "lon": -74.0109342 }, + { "lat": 40.8541611, "lon": -74.0107077 }, + { "lat": 40.8540687, "lon": -74.0104564 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 583357696, + "bounds": { + "minlat": 40.8703785, + "minlon": -73.9902286, + "maxlat": 40.8712024, + "maxlon": -73.9893381 + }, + "nodes": [ + 5577214987, + 10243836635, + 5577214988, + 5938917428, + 5938917426, + 5938917424, + 8076364094, + 5577214989 + ], + "geometry": [ + { "lat": 40.8703785, "lon": -73.9896492 }, + { "lat": 40.8706308, "lon": -73.9894716 }, + { "lat": 40.8708208, "lon": -73.9893381 }, + { "lat": 40.8709152, "lon": -73.9895593 }, + { "lat": 40.8710070, "lon": -73.9897719 }, + { "lat": 40.8710950, "lon": -73.9899661 }, + { "lat": 40.8712024, "lon": -73.9902032 }, + { "lat": 40.8711690, "lon": -73.9902286 } + ], + "tags": { + "dog": "no", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 583505064, + "bounds": { + "minlat": 40.7977354, + "minlon": -73.9552750, + "maxlat": 40.7990112, + "maxlon": -73.9542867 + }, + "nodes": [ + 247225027, + 9908358314, + 247225029, + 9178942115, + 2058920004, + 9908358315, + 9178942116, + 247225030, + 9178942117, + 9908358316, + 2059119623, + 9178942118, + 9908383417, + 9178942122, + 9908383418, + 247225032, + 9178942123, + 9178942124, + 247225033, + 12817667483, + 9908383419, + 2058920035, + 9908383420, + 247225034 + ], + "geometry": [ + { "lat": 40.7977354, "lon": -73.9543428 }, + { "lat": 40.7979003, "lon": -73.9543045 }, + { "lat": 40.7979691, "lon": -73.9542931 }, + { "lat": 40.7980367, "lon": -73.9542879 }, + { "lat": 40.7981017, "lon": -73.9542867 }, + { "lat": 40.7981571, "lon": -73.9542907 }, + { "lat": 40.7981909, "lon": -73.9542978 }, + { "lat": 40.7982268, "lon": -73.9543097 }, + { "lat": 40.7982750, "lon": -73.9543347 }, + { "lat": 40.7983179, "lon": -73.9543624 }, + { "lat": 40.7983599, "lon": -73.9543970 }, + { "lat": 40.7984182, "lon": -73.9544475 }, + { "lat": 40.7984751, "lon": -73.9545062 }, + { "lat": 40.7985249, "lon": -73.9545624 }, + { "lat": 40.7986006, "lon": -73.9546501 }, + { "lat": 40.7986297, "lon": -73.9546892 }, + { "lat": 40.7987314, "lon": -73.9548123 }, + { "lat": 40.7987778, "lon": -73.9548802 }, + { "lat": 40.7988321, "lon": -73.9549623 }, + { "lat": 40.7988743, "lon": -73.9550301 }, + { "lat": 40.7988799, "lon": -73.9550390 }, + { "lat": 40.7989169, "lon": -73.9551023 }, + { "lat": 40.7989634, "lon": -73.9551885 }, + { "lat": 40.7990112, "lon": -73.9552750 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 583505066, + "bounds": { + "minlat": 40.7672267, + "minlon": -73.9785915, + "maxlat": 40.7676861, + "maxlon": -73.9774218 + }, + "nodes": [ + 42423677, + 1283225327, + 3887931471, + 3887931460, + 9906929058, + 9906929059, + 42431281, + 4332677091, + 9906929060, + 9906929061, + 1283225030 + ], + "geometry": [ + { "lat": 40.7676861, "lon": -73.9785915 }, + { "lat": 40.7676439, "lon": -73.9785107 }, + { "lat": 40.7675876, "lon": -73.9784021 }, + { "lat": 40.7675073, "lon": -73.9782272 }, + { "lat": 40.7674520, "lon": -73.9781050 }, + { "lat": 40.7673893, "lon": -73.9779556 }, + { "lat": 40.7673418, "lon": -73.9778341 }, + { "lat": 40.7673028, "lon": -73.9777121 }, + { "lat": 40.7672690, "lon": -73.9775952 }, + { "lat": 40.7672448, "lon": -73.9775036 }, + { "lat": 40.7672267, "lon": -73.9774218 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Center Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 583602197, + "bounds": { + "minlat": 40.8533018, + "minlon": -74.0120920, + "maxlat": 40.8543640, + "maxlon": -74.0114969 + }, + "nodes": [ + 2468183381, + 2468183422, + 2468183414, + 2468183427, + 2468183431, + 2468183410, + 2468183351, + 2468183420, + 2468183416, + 2468183310, + 2468183398, + 2468183361, + 2468183412, + 2468183439, + 2468183320, + 2468183323, + 2468183336, + 2468183315, + 2468183318, + 2468183330 + ], + "geometry": [ + { "lat": 40.8533018, "lon": -74.0117692 }, + { "lat": 40.8533631, "lon": -74.0117034 }, + { "lat": 40.8534108, "lon": -74.0116712 }, + { "lat": 40.8534757, "lon": -74.0116363 }, + { "lat": 40.8535508, "lon": -74.0115934 }, + { "lat": 40.8536299, "lon": -74.0115586 }, + { "lat": 40.8537040, "lon": -74.0115237 }, + { "lat": 40.8537567, "lon": -74.0115076 }, + { "lat": 40.8538014, "lon": -74.0114969 }, + { "lat": 40.8538419, "lon": -74.0114969 }, + { "lat": 40.8539069, "lon": -74.0115076 }, + { "lat": 40.8539434, "lon": -74.0115210 }, + { "lat": 40.8539961, "lon": -74.0115478 }, + { "lat": 40.8540448, "lon": -74.0115827 }, + { "lat": 40.8540813, "lon": -74.0116229 }, + { "lat": 40.8541280, "lon": -74.0116819 }, + { "lat": 40.8541767, "lon": -74.0117678 }, + { "lat": 40.8542213, "lon": -74.0118456 }, + { "lat": 40.8542680, "lon": -74.0119233 }, + { "lat": 40.8543640, "lon": -74.0120920 } + ], + "tags": { + "highway": "tertiary", + "name": "Challenger Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 583640623, + "bounds": { + "minlat": 40.8473131, + "minlon": -74.0208544, + "maxlat": 40.8481023, + "maxlon": -74.0186081 + }, + "nodes": [ + 9691651156, + 298566888, + 10927869379, + 10927913927, + 10927913943, + 298566862, + 10927913913, + 298566863, + 298566841, + 10927869392, + 298567735 + ], + "geometry": [ + { "lat": 40.8473131, "lon": -74.0186081 }, + { "lat": 40.8475105, "lon": -74.0191045 }, + { "lat": 40.8475620, "lon": -74.0192344 }, + { "lat": 40.8476121, "lon": -74.0193618 }, + { "lat": 40.8476623, "lon": -74.0194973 }, + { "lat": 40.8477054, "lon": -74.0196218 }, + { "lat": 40.8477503, "lon": -74.0197566 }, + { "lat": 40.8477925, "lon": -74.0198859 }, + { "lat": 40.8478775, "lon": -74.0201498 }, + { "lat": 40.8479609, "lon": -74.0204144 }, + { "lat": 40.8481023, "lon": -74.0208544 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 583818802, + "bounds": { + "minlat": 40.8778301, + "minlon": -73.9794823, + "maxlat": 40.8795950, + "maxlon": -73.9763467 + }, + "nodes": [ + 12021734806, + 12021734807, + 12021734810, + 103224138 + ], + "geometry": [ + { "lat": 40.8795950, "lon": -73.9794823 }, + { "lat": 40.8779199, "lon": -73.9765062 }, + { "lat": 40.8778829, "lon": -73.9764405 }, + { "lat": 40.8778301, "lon": -73.9763467 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "maxweight": "4", + "name": "Van Nostrand Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 583818803, + "bounds": { + "minlat": 40.8729721, + "minlon": -73.9798498, + "maxlat": 40.8761740, + "maxlon": -73.9775385 + }, + "nodes": [ + 530805998, + 103134251, + 103224133, + 475232667, + 103179247, + 13320454020, + 103174060 + ], + "geometry": [ + { "lat": 40.8729721, "lon": -73.9798498 }, + { "lat": 40.8738470, "lon": -73.9792150 }, + { "lat": 40.8745710, "lon": -73.9786910 }, + { "lat": 40.8749890, "lon": -73.9783773 }, + { "lat": 40.8753513, "lon": -73.9781318 }, + { "lat": 40.8760854, "lon": -73.9776024 }, + { "lat": 40.8761740, "lon": -73.9775385 } + ], + "tags": { + "highway": "tertiary", + "maxheight:signed": "no", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 583818804, + "bounds": { + "minlat": 40.8048121, + "minlon": -73.9994976, + "maxlat": 40.8053224, + "maxlon": -73.9983835 + }, + "nodes": [ + 103870489, + 5465266061, + 12396862806, + 103870490 + ], + "geometry": [ + { "lat": 40.8048121, "lon": -73.9983835 }, + { "lat": 40.8051813, "lon": -73.9991896 }, + { "lat": 40.8052337, "lon": -73.9993039 }, + { "lat": 40.8053224, "lon": -73.9994976 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 583818805, + "bounds": { + "minlat": 40.8054085, + "minlon": -73.9983218, + "maxlat": 40.8057483, + "maxlon": -73.9977802 + }, + "nodes": [ + 103869228, + 12396862807, + 103879069 + ], + "geometry": [ + { "lat": 40.8057483, "lon": -73.9977802 }, + { "lat": 40.8057054, "lon": -73.9978486 }, + { "lat": 40.8054085, "lon": -73.9983218 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000719", + "hgv": "no", + "highway": "secondary", + "name": "Park Drive", + "tiger:cfcc": "A45", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 583818806, + "bounds": { + "minlat": 40.8743717, + "minlon": -73.9845657, + "maxlat": 40.8751709, + "maxlon": -73.9830596 + }, + "nodes": [ + 10940262026, + 13765116183, + 13765116182, + 298771242, + 13765116181, + 298769764, + 298771244, + 10940262017, + 10940262008, + 298769765 + ], + "geometry": [ + { "lat": 40.8743717, "lon": -73.9830596 }, + { "lat": 40.8744654, "lon": -73.9832175 }, + { "lat": 40.8745509, "lon": -73.9833617 }, + { "lat": 40.8746334, "lon": -73.9835030 }, + { "lat": 40.8747198, "lon": -73.9836546 }, + { "lat": 40.8748447, "lon": -73.9838852 }, + { "lat": 40.8749951, "lon": -73.9841848 }, + { "lat": 40.8750707, "lon": -73.9843447 }, + { "lat": 40.8751413, "lon": -73.9844984 }, + { "lat": 40.8751709, "lon": -73.9845657 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 583818807, + "bounds": { + "minlat": 40.8444556, + "minlon": -74.0124248, + "maxlat": 40.8444725, + "maxlon": -74.0120930 + }, + "nodes": [ + 298567562, + 12016147182, + 10927913944, + 298566982 + ], + "geometry": [ + { "lat": 40.8444725, "lon": -74.0124248 }, + { "lat": 40.8444677, "lon": -74.0123434 }, + { "lat": 40.8444631, "lon": -74.0122615 }, + { "lat": 40.8444556, "lon": -74.0120930 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 583818916, + "bounds": { + "minlat": 40.8541915, + "minlon": -73.9634715, + "maxlat": 40.8594650, + "maxlon": -73.9608810 + }, + "nodes": [ + 103115804, + 7921969724, + 11170628912, + 103173657, + 11013778281, + 5074644001, + 103195201, + 7930423133, + 11170628906, + 7930423132, + 7930423134, + 3882345218, + 5074644005, + 5074644007, + 103195203, + 5074643996, + 3882345117, + 103195205, + 7930462821, + 7930462825, + 103195207, + 7930462829, + 103195210, + 7930462820, + 103195211, + 7930462824, + 103195214, + 7930462828, + 7930462819, + 7930462823, + 11170439788, + 103195216, + 7930462827, + 7930462830, + 103195218, + 7930462822, + 103195220, + 7930462826, + 103195222, + 4397858485, + 103195223 + ], + "geometry": [ + { "lat": 40.8541915, "lon": -73.9634715 }, + { "lat": 40.8542462, "lon": -73.9634430 }, + { "lat": 40.8545913, "lon": -73.9632666 }, + { "lat": 40.8552252, "lon": -73.9629701 }, + { "lat": 40.8554565, "lon": -73.9628478 }, + { "lat": 40.8555756, "lon": -73.9627879 }, + { "lat": 40.8558597, "lon": -73.9626398 }, + { "lat": 40.8560301, "lon": -73.9625463 }, + { "lat": 40.8561721, "lon": -73.9624620 }, + { "lat": 40.8562655, "lon": -73.9624021 }, + { "lat": 40.8563598, "lon": -73.9623455 }, + { "lat": 40.8564576, "lon": -73.9622885 }, + { "lat": 40.8566327, "lon": -73.9621771 }, + { "lat": 40.8569555, "lon": -73.9619672 }, + { "lat": 40.8570850, "lon": -73.9618850 }, + { "lat": 40.8574015, "lon": -73.9616861 }, + { "lat": 40.8574920, "lon": -73.9616276 }, + { "lat": 40.8576339, "lon": -73.9615406 }, + { "lat": 40.8576926, "lon": -73.9615076 }, + { "lat": 40.8577510, "lon": -73.9614775 }, + { "lat": 40.8578139, "lon": -73.9614472 }, + { "lat": 40.8578838, "lon": -73.9614172 }, + { "lat": 40.8579523, "lon": -73.9613890 }, + { "lat": 40.8580243, "lon": -73.9613619 }, + { "lat": 40.8580986, "lon": -73.9613348 }, + { "lat": 40.8581806, "lon": -73.9613085 }, + { "lat": 40.8582598, "lon": -73.9612898 }, + { "lat": 40.8583503, "lon": -73.9612732 }, + { "lat": 40.8584366, "lon": -73.9612577 }, + { "lat": 40.8586582, "lon": -73.9612213 }, + { "lat": 40.8587192, "lon": -73.9612136 }, + { "lat": 40.8587348, "lon": -73.9612103 }, + { "lat": 40.8588132, "lon": -73.9611975 }, + { "lat": 40.8588915, "lon": -73.9611825 }, + { "lat": 40.8589694, "lon": -73.9611644 }, + { "lat": 40.8590358, "lon": -73.9611424 }, + { "lat": 40.8590980, "lon": -73.9611157 }, + { "lat": 40.8591612, "lon": -73.9610830 }, + { "lat": 40.8592313, "lon": -73.9610418 }, + { "lat": 40.8593344, "lon": -73.9609869 }, + { "lat": 40.8594650, "lon": -73.9608810 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 583818922, + "bounds": { + "minlat": 40.8703967, + "minlon": -74.0139498, + "maxlat": 40.8723062, + "maxlon": -74.0130614 + }, + "nodes": [ + 103214399, + 6592337404, + 6592337405, + 10308768307, + 103214401, + 13527753032, + 103214403 + ], + "geometry": [ + { "lat": 40.8703967, "lon": -74.0139498 }, + { "lat": 40.8707188, "lon": -74.0137945 }, + { "lat": 40.8708299, "lon": -74.0137409 }, + { "lat": 40.8715420, "lon": -74.0133974 }, + { "lat": 40.8717710, "lon": -74.0132870 }, + { "lat": 40.8722277, "lon": -74.0130945 }, + { "lat": 40.8723062, "lon": -74.0130614 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "maxspeed": "40 mph", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 583818926, + "bounds": { + "minlat": 40.8206793, + "minlon": -73.9879653, + "maxlat": 40.8213780, + "maxlon": -73.9878860 + }, + "nodes": [ + 103207071, + 13318551943, + 2274575526, + 4205589210 + ], + "geometry": [ + { "lat": 40.8213780, "lon": -73.9878860 }, + { "lat": 40.8212166, "lon": -73.9879043 }, + { "lat": 40.8208820, "lon": -73.9879423 }, + { "lat": 40.8206793, "lon": -73.9879653 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 583818954, + "bounds": { + "minlat": 40.8756428, + "minlon": -74.0205816, + "maxlat": 40.8867019, + "maxlon": -74.0148875 + }, + "nodes": [ + 4215531348, + 103223839, + 7081638783, + 103280818, + 7081638780, + 7082910578, + 103133261, + 103280820, + 103278098, + 103150123, + 103164178, + 103176595, + 103255381, + 103280826, + 103280828, + 103267066, + 103267073, + 103125803, + 103125789, + 103225907, + 103225943, + 103249324, + 103249407, + 103227665, + 103153849, + 7027634815, + 103277755, + 103135673, + 7033858525, + 6904901143, + 7033858249, + 7033858274, + 9548325381, + 103260496 + ], + "geometry": [ + { "lat": 40.8756428, "lon": -74.0205816 }, + { "lat": 40.8759325, "lon": -74.0204778 }, + { "lat": 40.8762392, "lon": -74.0203666 }, + { "lat": 40.8764380, "lon": -74.0202945 }, + { "lat": 40.8764465, "lon": -74.0202914 }, + { "lat": 40.8765432, "lon": -74.0202564 }, + { "lat": 40.8766456, "lon": -74.0202194 }, + { "lat": 40.8769170, "lon": -74.0200620 }, + { "lat": 40.8775275, "lon": -74.0197390 }, + { "lat": 40.8776973, "lon": -74.0196454 }, + { "lat": 40.8785706, "lon": -74.0192139 }, + { "lat": 40.8787830, "lon": -74.0191090 }, + { "lat": 40.8792058, "lon": -74.0188926 }, + { "lat": 40.8798520, "lon": -74.0185139 }, + { "lat": 40.8799373, "lon": -74.0184650 }, + { "lat": 40.8804831, "lon": -74.0181778 }, + { "lat": 40.8806172, "lon": -74.0181078 }, + { "lat": 40.8812492, "lon": -74.0177698 }, + { "lat": 40.8813145, "lon": -74.0177475 }, + { "lat": 40.8819505, "lon": -74.0174001 }, + { "lat": 40.8819974, "lon": -74.0173795 }, + { "lat": 40.8826094, "lon": -74.0170555 }, + { "lat": 40.8827014, "lon": -74.0170189 }, + { "lat": 40.8835302, "lon": -74.0165606 }, + { "lat": 40.8843603, "lon": -74.0161230 }, + { "lat": 40.8850176, "lon": -74.0157869 }, + { "lat": 40.8851772, "lon": -74.0157027 }, + { "lat": 40.8857172, "lon": -74.0154133 }, + { "lat": 40.8860419, "lon": -74.0152388 }, + { "lat": 40.8861143, "lon": -74.0151999 }, + { "lat": 40.8862684, "lon": -74.0151171 }, + { "lat": 40.8863435, "lon": -74.0150767 }, + { "lat": 40.8866135, "lon": -74.0149317 }, + { "lat": 40.8867019, "lon": -74.0148875 } + ], + "tags": { + "highway": "tertiary", + "name": "Queen Anne Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Queen Anne", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 583818955, + "bounds": { + "minlat": 40.8208305, + "minlon": -74.0084060, + "maxlat": 40.8213880, + "maxlon": -74.0081377 + }, + "nodes": [ + 103223998, + 10654412838, + 103094942 + ], + "geometry": [ + { "lat": 40.8208305, "lon": -74.0081377 }, + { "lat": 40.8212164, "lon": -74.0083234 }, + { "lat": 40.8213880, "lon": -74.0084060 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657" + } +}, +{ + "type": "way", + "id": 583818957, + "bounds": { + "minlat": 40.8582018, + "minlon": -73.9813380, + "maxlat": 40.8587250, + "maxlon": -73.9807504 + }, + "nodes": [ + 103097567, + 103276296, + 103276297, + 103185965 + ], + "geometry": [ + { "lat": 40.8582018, "lon": -73.9807504 }, + { "lat": 40.8582664, "lon": -73.9808445 }, + { "lat": 40.8584624, "lon": -73.9810702 }, + { "lat": 40.8587250, "lon": -73.9813380 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "lanes": "2", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 583818958, + "bounds": { + "minlat": 40.8577295, + "minlon": -73.9813124, + "maxlat": 40.8582018, + "maxlon": -73.9807504 + }, + "nodes": [ + 103097567, + 12020325913, + 12020325912, + 12020325921, + 12020325911, + 12020325910, + 12020325914, + 299178285, + 9944184594 + ], + "geometry": [ + { "lat": 40.8582018, "lon": -73.9807504 }, + { "lat": 40.8581929, "lon": -73.9807841 }, + { "lat": 40.8581825, "lon": -73.9808166 }, + { "lat": 40.8581773, "lon": -73.9808287 }, + { "lat": 40.8581676, "lon": -73.9808510 }, + { "lat": 40.8581523, "lon": -73.9808790 }, + { "lat": 40.8581336, "lon": -73.9809035 }, + { "lat": 40.8581095, "lon": -73.9809316 }, + { "lat": 40.8577295, "lon": -73.9813124 } + ], + "tags": { + "destination:ref:forward": "US 1-9 South;US 46 West", + "highway": "secondary", + "lanes": "2", + "name": "Bergen Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 583818959, + "bounds": { + "minlat": 40.8106464, + "minlon": -74.0026614, + "maxlat": 40.8130551, + "maxlon": -74.0011824 + }, + "nodes": [ + 4205709190, + 13525387298, + 103232625, + 5481884060, + 13525387296, + 103232626, + 13525387292, + 103173211, + 103232627, + 103232628, + 103142142, + 3563885693, + 103232629, + 103232630, + 13525387246, + 103142132 + ], + "geometry": [ + { "lat": 40.8106464, "lon": -74.0011824 }, + { "lat": 40.8108885, "lon": -74.0013508 }, + { "lat": 40.8108950, "lon": -74.0013550 }, + { "lat": 40.8109864, "lon": -74.0014184 }, + { "lat": 40.8115752, "lon": -74.0018280 }, + { "lat": 40.8116450, "lon": -74.0018750 }, + { "lat": 40.8117316, "lon": -74.0019382 }, + { "lat": 40.8117840, "lon": -74.0019720 }, + { "lat": 40.8121400, "lon": -74.0022276 }, + { "lat": 40.8122990, "lon": -74.0023344 }, + { "lat": 40.8124362, "lon": -74.0024152 }, + { "lat": 40.8125768, "lon": -74.0024887 }, + { "lat": 40.8126960, "lon": -74.0025388 }, + { "lat": 40.8128200, "lon": -74.0025833 }, + { "lat": 40.8129799, "lon": -74.0026359 }, + { "lat": 40.8130551, "lon": -74.0026614 } + ], + "tags": { + "Bergen_County_database_ref": "48", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000048", + "highway": "secondary", + "name": "Fairview Avenue", + "old_ref": "CR 16", + "ref": "CR 48", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 583818962, + "bounds": { + "minlat": 40.8256397, + "minlon": -73.9874017, + "maxlat": 40.8261494, + "maxlon": -73.9873235 + }, + "nodes": [ + 103175945, + 5341032758, + 5341032757 + ], + "geometry": [ + { "lat": 40.8256397, "lon": -73.9874017 }, + { "lat": 40.8258064, "lon": -73.9873409 }, + { "lat": 40.8261494, "lon": -73.9873235 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "1", + "name": "Gorge Road", + "oneway": "yes", + "ref": "CR S-25", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 583818963, + "bounds": { + "minlat": 40.8058818, + "minlon": -73.9919902, + "maxlat": 40.8061745, + "maxlon": -73.9917421 + }, + "nodes": [ + 5482328533, + 4215808352 + ], + "geometry": [ + { "lat": 40.8061745, "lon": -73.9917421 }, + { "lat": 40.8058818, "lon": -73.9919902 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 583818964, + "bounds": { + "minlat": 40.8067224, + "minlon": -73.9919788, + "maxlat": 40.8068121, + "maxlon": -73.9918453 + }, + "nodes": [ + 103207082, + 103207089 + ], + "geometry": [ + { "lat": 40.8068121, "lon": -73.9919788 }, + { "lat": 40.8067224, "lon": -73.9918453 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "2", + "name": "Gorge Road", + "oneway": "yes", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 583818965, + "bounds": { + "minlat": 40.8277607, + "minlon": -73.9808560, + "maxlat": 40.8283630, + "maxlon": -73.9805047 + }, + "nodes": [ + 103168718, + 5340819447, + 5340819448 + ], + "geometry": [ + { "lat": 40.8277607, "lon": -73.9808560 }, + { "lat": 40.8279061, "lon": -73.9807641 }, + { "lat": 40.8283630, "lon": -73.9805047 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "highway": "secondary", + "lanes": "2", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 583818966, + "bounds": { + "minlat": 40.8532076, + "minlon": -73.9747071, + "maxlat": 40.8534879, + "maxlon": -73.9744493 + }, + "nodes": [ + 103245991, + 5108603759 + ], + "geometry": [ + { "lat": 40.8534879, "lon": -73.9744493 }, + { "lat": 40.8532076, "lon": -73.9747071 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "oneway": "yes", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 583818967, + "bounds": { + "minlat": 40.8533255, + "minlon": -73.9744493, + "maxlat": 40.8534879, + "maxlon": -73.9742469 + }, + "nodes": [ + 103245991, + 5108603762 + ], + "geometry": [ + { "lat": 40.8534879, "lon": -73.9744493 }, + { "lat": 40.8533255, "lon": -73.9742469 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "through", + "turn:lanes:forward": "through" + } +}, +{ + "type": "way", + "id": 583818968, + "bounds": { + "minlat": 40.8510502, + "minlon": -73.9693212, + "maxlat": 40.8510807, + "maxlon": -73.9690713 + }, + "nodes": [ + 4204832190, + 5179132348 + ], + "geometry": [ + { "lat": 40.8510502, "lon": -73.9690713 }, + { "lat": 40.8510807, "lon": -73.9693212 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 583818969, + "bounds": { + "minlat": 40.8561187, + "minlon": -73.9726533, + "maxlat": 40.8561598, + "maxlon": -73.9725963 + }, + "nodes": [ + 530754330, + 13620890041, + 103132816 + ], + "geometry": [ + { "lat": 40.8561598, "lon": -73.9725963 }, + { "lat": 40.8561538, "lon": -73.9726046 }, + { "lat": 40.8561187, "lon": -73.9726533 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Linwood Avenue", + "oneway": "yes", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 583818971, + "bounds": { + "minlat": 40.8628750, + "minlon": -73.9699720, + "maxlat": 40.8643100, + "maxlon": -73.9688260 + }, + "nodes": [ + 103251843, + 103318390, + 103318392, + 103318393, + 103107666, + 103318395, + 103318397, + 103318399, + 103318401, + 103318405, + 103318406, + 103318408, + 103318410, + 103318412, + 103318414, + 103318416, + 103318418, + 103232692 + ], + "geometry": [ + { "lat": 40.8628750, "lon": -73.9699720 }, + { "lat": 40.8629590, "lon": -73.9699210 }, + { "lat": 40.8630610, "lon": -73.9698790 }, + { "lat": 40.8631670, "lon": -73.9698560 }, + { "lat": 40.8634666, "lon": -73.9698371 }, + { "lat": 40.8639060, "lon": -73.9698070 }, + { "lat": 40.8639940, "lon": -73.9697780 }, + { "lat": 40.8640760, "lon": -73.9697270 }, + { "lat": 40.8641500, "lon": -73.9696560 }, + { "lat": 40.8642070, "lon": -73.9695770 }, + { "lat": 40.8642480, "lon": -73.9694950 }, + { "lat": 40.8642800, "lon": -73.9694060 }, + { "lat": 40.8643020, "lon": -73.9693010 }, + { "lat": 40.8643100, "lon": -73.9691930 }, + { "lat": 40.8643030, "lon": -73.9690840 }, + { "lat": 40.8642790, "lon": -73.9689680 }, + { "lat": 40.8642440, "lon": -73.9688700 }, + { "lat": 40.8642220, "lon": -73.9688260 } + ], + "tags": { + "highway": "residential", + "name": "Edwin Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edwin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 583818973, + "bounds": { + "minlat": 40.8634820, + "minlon": -73.9675660, + "maxlat": 40.8653430, + "maxlon": -73.9666300 + }, + "nodes": [ + 103132997, + 103132995, + 103132993, + 103132990, + 103132988, + 103132986, + 5753470507, + 5753470506, + 478298044, + 103132984 + ], + "geometry": [ + { "lat": 40.8653430, "lon": -73.9666300 }, + { "lat": 40.8648290, "lon": -73.9671640 }, + { "lat": 40.8648100, "lon": -73.9671830 }, + { "lat": 40.8647860, "lon": -73.9671980 }, + { "lat": 40.8642480, "lon": -73.9675410 }, + { "lat": 40.8642170, "lon": -73.9675550 }, + { "lat": 40.8641272, "lon": -73.9675563 }, + { "lat": 40.8640278, "lon": -73.9675578 }, + { "lat": 40.8635144, "lon": -73.9675655 }, + { "lat": 40.8634820, "lon": -73.9675660 } + ], + "tags": { + "highway": "residential", + "name": "Linwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 583831591, + "bounds": { + "minlat": 40.7888536, + "minlon": -74.0163565, + "maxlat": 40.7889250, + "maxlon": -74.0162990 + }, + "nodes": [ + 103864128, + 103864124 + ], + "geometry": [ + { "lat": 40.7889250, "lon": -74.0162990 }, + { "lat": 40.7888536, "lon": -74.0163565 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680; Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721; Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093; 07087", + "tiger:zip_right": "07047:07087:07093; 07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 583831594, + "bounds": { + "minlat": 40.8511290, + "minlon": -73.9701630, + "maxlat": 40.8511850, + "maxlon": -73.9697550 + }, + "nodes": [ + 103254094, + 103205062 + ], + "geometry": [ + { "lat": 40.8511290, "lon": -73.9697550 }, + { "lat": 40.8511850, "lon": -73.9701630 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 583831596, + "bounds": { + "minlat": 40.8552068, + "minlon": -73.9704513, + "maxlat": 40.8552493, + "maxlon": -73.9704207 + }, + "nodes": [ + 660549324, + 752658821 + ], + "geometry": [ + { "lat": 40.8552068, "lon": -73.9704513 }, + { "lat": 40.8552493, "lon": -73.9704207 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Center Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 583831597, + "bounds": { + "minlat": 40.8705773, + "minlon": -74.0051669, + "maxlat": 40.8706576, + "maxlon": -74.0050523 + }, + "nodes": [ + 775937817, + 103247016 + ], + "geometry": [ + { "lat": 40.8705773, "lon": -74.0050523 }, + { "lat": 40.8706576, "lon": -74.0051669 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "3", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 583831598, + "bounds": { + "minlat": 40.8781964, + "minlon": -73.9796680, + "maxlat": 40.8782794, + "maxlon": -73.9795196 + }, + "nodes": [ + 1313831886, + 3655086537 + ], + "geometry": [ + { "lat": 40.8781964, "lon": -73.9795196 }, + { "lat": 40.8782794, "lon": -73.9796680 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 583831599, + "bounds": { + "minlat": 40.8789873, + "minlon": -73.9817440, + "maxlat": 40.8793219, + "maxlon": -73.9811506 + }, + "nodes": [ + 103098043, + 103100540 + ], + "geometry": [ + { "lat": 40.8793219, "lon": -73.9817440 }, + { "lat": 40.8789873, "lon": -73.9811506 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 583831600, + "bounds": { + "minlat": 40.8796772, + "minlon": -73.9800161, + "maxlat": 40.8798043, + "maxlon": -73.9798527 + }, + "nodes": [ + 103098028, + 9239567758, + 103098032 + ], + "geometry": [ + { "lat": 40.8798043, "lon": -73.9798527 }, + { "lat": 40.8796996, "lon": -73.9799910 }, + { "lat": 40.8796772, "lon": -73.9800161 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 583831660, + "bounds": { + "minlat": 40.8538535, + "minlon": -73.9639164, + "maxlat": 40.8539389, + "maxlon": -73.9635257 + }, + "nodes": [ + 60810374, + 60810373 + ], + "geometry": [ + { "lat": 40.8538535, "lon": -73.9635257 }, + { "lat": 40.8539389, "lon": -73.9639164 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "bridge:name": "George Washington Bridge Plaza", + "bridge:name:etymology:wikidata": "Q23", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 584512071, + "bounds": { + "minlat": 40.8114778, + "minlon": -73.9844479, + "maxlat": 40.8120216, + "maxlon": -73.9830620 + }, + "nodes": [ + 1751404898, + 1751404894, + 1751404892, + 5929253683, + 1751404890, + 1751404887, + 5929253684, + 1751404886, + 1751404884, + 1751404883, + 1751404879 + ], + "geometry": [ + { "lat": 40.8120216, "lon": -73.9844479 }, + { "lat": 40.8119423, "lon": -73.9842359 }, + { "lat": 40.8118675, "lon": -73.9840361 }, + { "lat": 40.8118271, "lon": -73.9839281 }, + { "lat": 40.8117866, "lon": -73.9838200 }, + { "lat": 40.8117203, "lon": -73.9836427 }, + { "lat": 40.8117125, "lon": -73.9836218 }, + { "lat": 40.8116848, "lon": -73.9835478 }, + { "lat": 40.8116423, "lon": -73.9834507 }, + { "lat": 40.8115543, "lon": -73.9832492 }, + { "lat": 40.8114778, "lon": -73.9830620 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 584512072, + "bounds": { + "minlat": 40.8139684, + "minlon": -73.9833442, + "maxlat": 40.8140459, + "maxlon": -73.9831354 + }, + "nodes": [ + 1751405025, + 1751405027 + ], + "geometry": [ + { "lat": 40.8139684, "lon": -73.9831354 }, + { "lat": 40.8140459, "lon": -73.9833442 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 584512073, + "bounds": { + "minlat": 40.8134086, + "minlon": -73.9838021, + "maxlat": 40.8140459, + "maxlon": -73.9833442 + }, + "nodes": [ + 1751405027, + 1751405019, + 5929253675, + 13529273314, + 1751404990, + 1751404989 + ], + "geometry": [ + { "lat": 40.8140459, "lon": -73.9833442 }, + { "lat": 40.8138622, "lon": -73.9834674 }, + { "lat": 40.8134594, "lon": -73.9837376 }, + { "lat": 40.8134292, "lon": -73.9837579 }, + { "lat": 40.8134213, "lon": -73.9837632 }, + { "lat": 40.8134086, "lon": -73.9838021 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 584512074, + "bounds": { + "minlat": 40.8141557, + "minlon": -73.9837295, + "maxlat": 40.8144648, + "maxlon": -73.9833532 + }, + "nodes": [ + 4205589198, + 103137079, + 10200267913, + 5482328569 + ], + "geometry": [ + { "lat": 40.8144648, "lon": -73.9833532 }, + { "lat": 40.8143397, "lon": -73.9835117 }, + { "lat": 40.8141903, "lon": -73.9836886 }, + { "lat": 40.8141557, "lon": -73.9837295 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 584512075, + "bounds": { + "minlat": 40.8289564, + "minlon": -73.9724731, + "maxlat": 40.8292378, + "maxlon": -73.9721956 + }, + "nodes": [ + 1691389661, + 1752676693, + 7672312223, + 1752676695, + 1752676697, + 1752676699 + ], + "geometry": [ + { "lat": 40.8289564, "lon": -73.9721956 }, + { "lat": 40.8289873, "lon": -73.9723098 }, + { "lat": 40.8290005, "lon": -73.9723371 }, + { "lat": 40.8290194, "lon": -73.9723761 }, + { "lat": 40.8290807, "lon": -73.9724292 }, + { "lat": 40.8292378, "lon": -73.9724731 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "State Route 5", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35; A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 5", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 584512076, + "bounds": { + "minlat": 40.8286479, + "minlon": -73.9724092, + "maxlat": 40.8287944, + "maxlon": -73.9723131 + }, + "nodes": [ + 1752676685, + 103137137 + ], + "geometry": [ + { "lat": 40.8286479, "lon": -73.9724092 }, + { "lat": 40.8287944, "lon": -73.9723131 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 584512077, + "bounds": { + "minlat": 40.8301754, + "minlon": -73.9782560, + "maxlat": 40.8315410, + "maxlon": -73.9766090 + }, + "nodes": [ + 103190992, + 103190994, + 103190996, + 103190998, + 103191000, + 103123235, + 103191003, + 103191005, + 103191007, + 103191009, + 103191012, + 103191014, + 103191016, + 103191017, + 103191020, + 103191022, + 103191024, + 103125345 + ], + "geometry": [ + { "lat": 40.8315410, "lon": -73.9782560 }, + { "lat": 40.8315050, "lon": -73.9781250 }, + { "lat": 40.8314600, "lon": -73.9780160 }, + { "lat": 40.8314050, "lon": -73.9779160 }, + { "lat": 40.8313390, "lon": -73.9778270 }, + { "lat": 40.8312790, "lon": -73.9777630 }, + { "lat": 40.8309700, "lon": -73.9774670 }, + { "lat": 40.8309000, "lon": -73.9773740 }, + { "lat": 40.8308490, "lon": -73.9772750 }, + { "lat": 40.8307280, "lon": -73.9769300 }, + { "lat": 40.8306760, "lon": -73.9768310 }, + { "lat": 40.8306480, "lon": -73.9767910 }, + { "lat": 40.8305840, "lon": -73.9767210 }, + { "lat": 40.8305120, "lon": -73.9766660 }, + { "lat": 40.8304340, "lon": -73.9766290 }, + { "lat": 40.8303440, "lon": -73.9766100 }, + { "lat": 40.8302860, "lon": -73.9766090 }, + { "lat": 40.8301754, "lon": -73.9766245 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "State Route 5", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35; A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 5", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 584512078, + "bounds": { + "minlat": 40.8326570, + "minlon": -73.9808530, + "maxlat": 40.8332250, + "maxlon": -73.9785090 + }, + "nodes": [ + 103125390, + 103125388, + 103125386, + 103125383, + 103125382, + 103125380, + 103125378, + 13525423092, + 103125377 + ], + "geometry": [ + { "lat": 40.8332250, "lon": -73.9808530 }, + { "lat": 40.8331750, "lon": -73.9805600 }, + { "lat": 40.8331160, "lon": -73.9803190 }, + { "lat": 40.8329650, "lon": -73.9797840 }, + { "lat": 40.8328050, "lon": -73.9792110 }, + { "lat": 40.8327620, "lon": -73.9790180 }, + { "lat": 40.8327390, "lon": -73.9788860 }, + { "lat": 40.8326887, "lon": -73.9786548 }, + { "lat": 40.8326570, "lon": -73.9785090 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bluff Road", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bluff", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 584512079, + "bounds": { + "minlat": 40.8323320, + "minlon": -73.9786620, + "maxlat": 40.8326570, + "maxlon": -73.9785090 + }, + "nodes": [ + 103190983, + 103125377 + ], + "geometry": [ + { "lat": 40.8323320, "lon": -73.9786620 }, + { "lat": 40.8326570, "lon": -73.9785090 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "cycleway:both": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Palisade Avenue", + "ref": "NJ 5", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 584512080, + "bounds": { + "minlat": 40.8457868, + "minlon": -73.9712949, + "maxlat": 40.8458784, + "maxlon": -73.9712446 + }, + "nodes": [ + 5449315451, + 11393694875 + ], + "geometry": [ + { "lat": 40.8458784, "lon": -73.9712446 }, + { "lat": 40.8457868, "lon": -73.9712949 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "sidewalk:both": "separate", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 584512081, + "bounds": { + "minlat": 40.8460376, + "minlon": -73.9711746, + "maxlat": 40.8467729, + "maxlon": -73.9710167 + }, + "nodes": [ + 103171552, + 103099801, + 103099800 + ], + "geometry": [ + { "lat": 40.8467729, "lon": -73.9710167 }, + { "lat": 40.8462590, "lon": -73.9711192 }, + { "lat": 40.8460376, "lon": -73.9711746 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 584512082, + "bounds": { + "minlat": 40.8823340, + "minlon": -74.0086660, + "maxlat": 40.8839185, + "maxlon": -74.0077766 + }, + "nodes": [ + 103214424, + 13527712062, + 6639265218, + 6639265203, + 103214425, + 6639265197, + 6639265168, + 12023324603, + 103214427, + 12023324602, + 6639265175 + ], + "geometry": [ + { "lat": 40.8823340, "lon": -74.0086660 }, + { "lat": 40.8824319, "lon": -74.0086111 }, + { "lat": 40.8826571, "lon": -74.0084848 }, + { "lat": 40.8827302, "lon": -74.0084462 }, + { "lat": 40.8830450, "lon": -74.0082744 }, + { "lat": 40.8832407, "lon": -74.0081673 }, + { "lat": 40.8834741, "lon": -74.0080427 }, + { "lat": 40.8837470, "lon": -74.0078859 }, + { "lat": 40.8838097, "lon": -74.0078470 }, + { "lat": 40.8838628, "lon": -74.0078138 }, + { "lat": 40.8839185, "lon": -74.0077766 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "lanes": "4", + "maxspeed": "35 mph", + "name": "Teaneck Road", + "ref": "CR 39", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 584512083, + "bounds": { + "minlat": 40.8133108, + "minlon": -73.9844354, + "maxlat": 40.8136809, + "maxlon": -73.9840500 + }, + "nodes": [ + 1751404985, + 5560289561, + 1751405011 + ], + "geometry": [ + { "lat": 40.8133108, "lon": -73.9840500 }, + { "lat": 40.8136042, "lon": -73.9842817 }, + { "lat": 40.8136809, "lon": -73.9844354 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "yes", + "turn:lanes": "left|left;through" + } +}, +{ + "type": "way", + "id": 584512084, + "bounds": { + "minlat": 40.8130152, + "minlon": -73.9839732, + "maxlat": 40.8131265, + "maxlon": -73.9837953 + }, + "nodes": [ + 1751404975, + 1751404968 + ], + "geometry": [ + { "lat": 40.8131265, "lon": -73.9839732 }, + { "lat": 40.8130152, "lon": -73.9837953 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 584512085, + "bounds": { + "minlat": 40.8112883, + "minlon": -73.9830620, + "maxlat": 40.8114778, + "maxlon": -73.9823520 + }, + "nodes": [ + 1751404879, + 1751404877, + 1751404875, + 1751404873, + 1751404874, + 1751404876 + ], + "geometry": [ + { "lat": 40.8114778, "lon": -73.9830620 }, + { "lat": 40.8113945, "lon": -73.9828463 }, + { "lat": 40.8113209, "lon": -73.9826560 }, + { "lat": 40.8112883, "lon": -73.9825717 }, + { "lat": 40.8113193, "lon": -73.9824056 }, + { "lat": 40.8113715, "lon": -73.9823520 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 584512086, + "bounds": { + "minlat": 40.8066068, + "minlon": -73.9913801, + "maxlat": 40.8070438, + "maxlon": -73.9910183 + }, + "nodes": [ + 4215808369, + 7672269003, + 4215808362 + ], + "geometry": [ + { "lat": 40.8070438, "lon": -73.9910183 }, + { "lat": 40.8067128, "lon": -73.9912923 }, + { "lat": 40.8066068, "lon": -73.9913801 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 584512087, + "bounds": { + "minlat": 40.8066068, + "minlon": -73.9915829, + "maxlat": 40.8067358, + "maxlon": -73.9913801 + }, + "nodes": [ + 4215808362, + 9896839727, + 5342516891, + 7672269011, + 5342516881 + ], + "geometry": [ + { "lat": 40.8066068, "lon": -73.9913801 }, + { "lat": 40.8066551, "lon": -73.9913937 }, + { "lat": 40.8066866, "lon": -73.9914179 }, + { "lat": 40.8066895, "lon": -73.9914277 }, + { "lat": 40.8067358, "lon": -73.9915829 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "2", + "name": "Gorge Road", + "oneway": "yes", + "ref": "(S-25)", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 584512090, + "bounds": { + "minlat": 40.8199676, + "minlon": -73.9886294, + "maxlat": 40.8202875, + "maxlon": -73.9880837 + }, + "nodes": [ + 103201208, + 7542568749, + 103201209 + ], + "geometry": [ + { "lat": 40.8199676, "lon": -73.9880837 }, + { "lat": 40.8202319, "lon": -73.9885345 }, + { "lat": 40.8202875, "lon": -73.9886294 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "name": "Edgewater Road", + "ref": "CR 50", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 584512094, + "bounds": { + "minlat": 40.8376929, + "minlon": -73.9823602, + "maxlat": 40.8386513, + "maxlon": -73.9819613 + }, + "nodes": [ + 103111281, + 103222970, + 5748061890, + 7428344394, + 7428344392, + 7469386198, + 4205620794 + ], + "geometry": [ + { "lat": 40.8376929, "lon": -73.9823602 }, + { "lat": 40.8381673, "lon": -73.9821617 }, + { "lat": 40.8382889, "lon": -73.9821045 }, + { "lat": 40.8384268, "lon": -73.9820396 }, + { "lat": 40.8385744, "lon": -73.9819890 }, + { "lat": 40.8386054, "lon": -73.9819779 }, + { "lat": 40.8386513, "lon": -73.9819613 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "2", + "name": "Anderson Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 584512115, + "bounds": { + "minlat": 40.8383360, + "minlon": -73.9841540, + "maxlat": 40.8387121, + "maxlon": -73.9834880 + }, + "nodes": [ + 103111274, + 103111278 + ], + "geometry": [ + { "lat": 40.8387121, "lon": -73.9841540 }, + { "lat": 40.8383360, "lon": -73.9834880 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Brinkerhoff Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brinkerhoff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 584512119, + "bounds": { + "minlat": 40.8383360, + "minlon": -73.9834880, + "maxlat": 40.8390316, + "maxlon": -73.9828135 + }, + "nodes": [ + 4205620796, + 5748061896, + 7523293962, + 103310184, + 103111278 + ], + "geometry": [ + { "lat": 40.8390316, "lon": -73.9828135 }, + { "lat": 40.8387641, "lon": -73.9830701 }, + { "lat": 40.8387368, "lon": -73.9830963 }, + { "lat": 40.8384160, "lon": -73.9834040 }, + { "lat": 40.8383360, "lon": -73.9834880 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "cycleway:both": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Glen Road", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glen", + "tiger:name_base_1": "State Route 5", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 584512126, + "bounds": { + "minlat": 40.8415959, + "minlon": -73.9968720, + "maxlat": 40.8417594, + "maxlon": -73.9960823 + }, + "nodes": [ + 103238588, + 10943455721, + 10943455715, + 103238590, + 103238591, + 11444701753 + ], + "geometry": [ + { "lat": 40.8417594, "lon": -73.9960823 }, + { "lat": 40.8416964, "lon": -73.9963128 }, + { "lat": 40.8416667, "lon": -73.9964473 }, + { "lat": 40.8416383, "lon": -73.9965925 }, + { "lat": 40.8416158, "lon": -73.9967305 }, + { "lat": 40.8415959, "lon": -73.9968720 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "destination:lanes": "New Jersey Turnpike|New Jersey Turnpike|Broad Avenue", + "destination:ref:lanes": "US 46 West|US 46 West|US 1 South;US 9 South", + "destination:ref:to:lanes": "I 95;NJTP|I 95;NJTP|", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46", + "turn:lanes": "||slight_right" + } +}, +{ + "type": "way", + "id": 584512133, + "bounds": { + "minlat": 40.8394043, + "minlon": -73.9946594, + "maxlat": 40.8406290, + "maxlon": -73.9918767 + }, + "nodes": [ + 688343619, + 103190920, + 103190922, + 103134593, + 12692393407, + 103190924, + 12692393406, + 103190926, + 12692393405, + 103190928, + 103190930, + 103190932, + 103108462 + ], + "geometry": [ + { "lat": 40.8406290, "lon": -73.9946594 }, + { "lat": 40.8402158, "lon": -73.9931793 }, + { "lat": 40.8401259, "lon": -73.9929146 }, + { "lat": 40.8400430, "lon": -73.9927149 }, + { "lat": 40.8399797, "lon": -73.9925933 }, + { "lat": 40.8399124, "lon": -73.9924804 }, + { "lat": 40.8398561, "lon": -73.9923884 }, + { "lat": 40.8397990, "lon": -73.9923030 }, + { "lat": 40.8397188, "lon": -73.9922016 }, + { "lat": 40.8396379, "lon": -73.9921074 }, + { "lat": 40.8395856, "lon": -73.9920497 }, + { "lat": 40.8394833, "lon": -73.9919503 }, + { "lat": 40.8394043, "lon": -73.9918767 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "placement:forward": "left_of:1", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 5", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 584512138, + "bounds": { + "minlat": 40.8406132, + "minlon": -73.9978923, + "maxlat": 40.8408367, + "maxlon": -73.9950813 + }, + "nodes": [ + 103190899, + 766720047, + 103190903, + 103190905, + 12692393429, + 12692393428, + 103190909, + 103190911, + 12692393432, + 12692393437, + 5978850775, + 12692393431 + ], + "geometry": [ + { "lat": 40.8406132, "lon": -73.9978923 }, + { "lat": 40.8406522, "lon": -73.9975603 }, + { "lat": 40.8407571, "lon": -73.9966612 }, + { "lat": 40.8408001, "lon": -73.9963496 }, + { "lat": 40.8408240, "lon": -73.9961438 }, + { "lat": 40.8408343, "lon": -73.9960187 }, + { "lat": 40.8408367, "lon": -73.9958766 }, + { "lat": 40.8408304, "lon": -73.9957163 }, + { "lat": 40.8408211, "lon": -73.9955478 }, + { "lat": 40.8408007, "lon": -73.9953712 }, + { "lat": 40.8407692, "lon": -73.9951953 }, + { "lat": 40.8407461, "lon": -73.9950813 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 5", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 584512144, + "bounds": { + "minlat": 40.8623674, + "minlon": -73.9874865, + "maxlat": 40.8635720, + "maxlon": -73.9866200 + }, + "nodes": [ + 103224117, + 8073300002, + 8075088205, + 8073300001, + 103200815, + 103156594, + 10238058302, + 8169649610, + 10238058301, + 6103601330, + 10259714439, + 103224119 + ], + "geometry": [ + { "lat": 40.8623674, "lon": -73.9874865 }, + { "lat": 40.8624529, "lon": -73.9874388 }, + { "lat": 40.8624846, "lon": -73.9874156 }, + { "lat": 40.8629177, "lon": -73.9870993 }, + { "lat": 40.8629510, "lon": -73.9870750 }, + { "lat": 40.8629720, "lon": -73.9870600 }, + { "lat": 40.8630875, "lon": -73.9869724 }, + { "lat": 40.8630945, "lon": -73.9869671 }, + { "lat": 40.8632600, "lon": -73.9868416 }, + { "lat": 40.8632989, "lon": -73.9868121 }, + { "lat": 40.8634697, "lon": -73.9866912 }, + { "lat": 40.8635720, "lon": -73.9866200 } + ], + "tags": { + "highway": "tertiary", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 584512147, + "bounds": { + "minlat": 40.8766233, + "minlon": -74.0006593, + "maxlat": 40.8804951, + "maxlon": -73.9979834 + }, + "nodes": [ + 103093343, + 103093345, + 6536062723, + 6536062730, + 6536062569, + 6536062566, + 6536062717, + 103093350, + 103093352, + 6786776282, + 103093354, + 103093356, + 103093357, + 103093358, + 103093359, + 103093360 + ], + "geometry": [ + { "lat": 40.8766233, "lon": -74.0006593 }, + { "lat": 40.8776940, "lon": -74.0000530 }, + { "lat": 40.8782647, "lon": -73.9997277 }, + { "lat": 40.8789170, "lon": -73.9993559 }, + { "lat": 40.8790263, "lon": -73.9992936 }, + { "lat": 40.8791842, "lon": -73.9992036 }, + { "lat": 40.8792760, "lon": -73.9991512 }, + { "lat": 40.8793080, "lon": -73.9991330 }, + { "lat": 40.8795540, "lon": -73.9989980 }, + { "lat": 40.8802446, "lon": -73.9986226 }, + { "lat": 40.8804546, "lon": -73.9985085 }, + { "lat": 40.8804793, "lon": -73.9984622 }, + { "lat": 40.8804951, "lon": -73.9984080 }, + { "lat": 40.8804891, "lon": -73.9983423 }, + { "lat": 40.8804787, "lon": -73.9982920 }, + { "lat": 40.8804138, "lon": -73.9979834 } + ], + "tags": { + "highway": "residential", + "name": "Glenwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glenwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 584512152, + "bounds": { + "minlat": 40.8760911, + "minlon": -74.0006593, + "maxlat": 40.8766233, + "maxlon": -73.9990279 + }, + "nodes": [ + 103093343, + 103185441, + 103210084 + ], + "geometry": [ + { "lat": 40.8766233, "lon": -74.0006593 }, + { "lat": 40.8763641, "lon": -73.9998596 }, + { "lat": 40.8760911, "lon": -73.9990279 } + ], + "tags": { + "highway": "residential", + "name": "Fycke Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fycke", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 584512157, + "bounds": { + "minlat": 40.8796203, + "minlon": -74.0102805, + "maxlat": 40.8823340, + "maxlon": -74.0086660 + }, + "nodes": [ + 103214417, + 103214418, + 6650620615, + 103214420, + 4771425518, + 103214422, + 6592348873, + 4162184902, + 6592348839, + 6592348838, + 103214423, + 6639265255, + 6639265272, + 13527712065, + 103214424 + ], + "geometry": [ + { "lat": 40.8796203, "lon": -74.0102805 }, + { "lat": 40.8798390, "lon": -74.0101520 }, + { "lat": 40.8799863, "lon": -74.0100477 }, + { "lat": 40.8801340, "lon": -74.0099430 }, + { "lat": 40.8801446, "lon": -74.0099369 }, + { "lat": 40.8803070, "lon": -74.0098430 }, + { "lat": 40.8807261, "lon": -74.0095997 }, + { "lat": 40.8811370, "lon": -74.0093611 }, + { "lat": 40.8811449, "lon": -74.0093565 }, + { "lat": 40.8811529, "lon": -74.0093519 }, + { "lat": 40.8811870, "lon": -74.0093320 }, + { "lat": 40.8815844, "lon": -74.0091013 }, + { "lat": 40.8817243, "lon": -74.0090200 }, + { "lat": 40.8822759, "lon": -74.0086997 }, + { "lat": 40.8823340, "lon": -74.0086660 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "Teaneck Road", + "ref": "CR 39", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 584850087, + "bounds": { + "minlat": 40.8391601, + "minlon": -73.9412769, + "maxlat": 40.8392425, + "maxlon": -73.9410885 + }, + "nodes": [ + 561035380, + 2541810236, + 42428973 + ], + "geometry": [ + { "lat": 40.8391601, "lon": -73.9410885 }, + { "lat": 40.8391816, "lon": -73.9411376 }, + { "lat": 40.8392425, "lon": -73.9412769 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "West 165th Street", + "name_1": "West 165 Street", + "oneway": "no", + "rcn_ref": "9", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "165th", + "tiger:name_base_1": "165", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 584850094, + "bounds": { + "minlat": 40.8003679, + "minlon": -73.9584942, + "maxlat": 40.8005810, + "maxlon": -73.9583313 + }, + "nodes": [ + 42452290, + 1778676723, + 825345581, + 595703248, + 825345576, + 1778676695, + 3247295580, + 825345580, + 1778676706, + 42435346 + ], + "geometry": [ + { "lat": 40.8005810, "lon": -73.9584942 }, + { "lat": 40.8005536, "lon": -73.9584918 }, + { "lat": 40.8005284, "lon": -73.9584884 }, + { "lat": 40.8005060, "lon": -73.9584819 }, + { "lat": 40.8004830, "lon": -73.9584709 }, + { "lat": 40.8004581, "lon": -73.9584533 }, + { "lat": 40.8004321, "lon": -73.9584311 }, + { "lat": 40.8004106, "lon": -73.9584063 }, + { "lat": 40.8003896, "lon": -73.9583749 }, + { "lat": 40.8003679, "lon": -73.9583313 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "junction": "roundabout", + "lanes": "3", + "lit": "yes", + "name": "Frederick Douglass Circle", + "name:etymology:wikidata": "Q215562", + "oneway": "yes", + "surface": "concrete", + "turn:lanes": "none|none|right", + "wikidata": "Q5497668" + } +}, +{ + "type": "way", + "id": 584850099, + "bounds": { + "minlat": 40.8005207, + "minlon": -73.9580118, + "maxlat": 40.8007934, + "maxlon": -73.9578551 + }, + "nodes": [ + 4016646214, + 1778676711, + 825345570, + 1778676698, + 825345574, + 6783696448, + 5706569348, + 1778676718, + 1778676694, + 1778676696, + 9150529690, + 42435736 + ], + "geometry": [ + { "lat": 40.8005207, "lon": -73.9578670 }, + { "lat": 40.8005497, "lon": -73.9578582 }, + { "lat": 40.8005769, "lon": -73.9578551 }, + { "lat": 40.8006073, "lon": -73.9578552 }, + { "lat": 40.8006395, "lon": -73.9578625 }, + { "lat": 40.8006671, "lon": -73.9578730 }, + { "lat": 40.8006934, "lon": -73.9578873 }, + { "lat": 40.8007193, "lon": -73.9579058 }, + { "lat": 40.8007396, "lon": -73.9579256 }, + { "lat": 40.8007646, "lon": -73.9579597 }, + { "lat": 40.8007771, "lon": -73.9579814 }, + { "lat": 40.8007934, "lon": -73.9580118 } + ], + "tags": { + "check_date:surface": "2024-11-19", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "junction": "roundabout", + "lanes": "3", + "lit": "yes", + "name": "Frederick Douglass Circle", + "name:etymology:wikidata": "Q215562", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "sidewalk": "both", + "sidewalk:both:surface": "paving_stones", + "surface": "concrete", + "turn:lanes": "||right", + "wikidata": "Q5497668" + } +}, +{ + "type": "way", + "id": 584850102, + "bounds": { + "minlat": 40.8211204, + "minlon": -73.9357506, + "maxlat": 40.8217486, + "maxlon": -73.9352976 + }, + "nodes": [ + 42432665, + 9557088459, + 9557088464, + 42432669 + ], + "geometry": [ + { "lat": 40.8211204, "lon": -73.9357506 }, + { "lat": 40.8211741, "lon": -73.9357117 }, + { "lat": 40.8216900, "lon": -73.9353386 }, + { "lat": 40.8217486, "lon": -73.9352976 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "highway": "residential", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 584850103, + "bounds": { + "minlat": 40.7197918, + "minlon": -73.9985146, + "maxlat": 40.7205076, + "maxlon": -73.9978879 + }, + "nodes": [ + 42427324, + 8307641673, + 5297484683, + 10680357589 + ], + "geometry": [ + { "lat": 40.7197918, "lon": -73.9985146 }, + { "lat": 40.7198476, "lon": -73.9984675 }, + { "lat": 40.7200454, "lon": -73.9982960 }, + { "lat": 40.7205076, "lon": -73.9978879 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584850104, + "bounds": { + "minlat": 40.7200616, + "minlon": -74.0006622, + "maxlat": 40.7208456, + "maxlon": -73.9990790 + }, + "nodes": [ + 42428436, + 8231922363, + 8363416367, + 42452048, + 8231931823, + 12187436365, + 8231927331, + 42445489 + ], + "geometry": [ + { "lat": 40.7208456, "lon": -74.0006622 }, + { "lat": 40.7207765, "lon": -74.0005745 }, + { "lat": 40.7204646, "lon": -73.9999221 }, + { "lat": 40.7204371, "lon": -73.9998645 }, + { "lat": 40.7204093, "lon": -73.9998063 }, + { "lat": 40.7201228, "lon": -73.9992070 }, + { "lat": 40.7200960, "lon": -73.9991509 }, + { "lat": 40.7200616, "lon": -73.9990790 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584850105, + "bounds": { + "minlat": 40.7242350, + "minlon": -73.9977850, + "maxlat": 40.7250916, + "maxlon": -73.9970609 + }, + "nodes": [ + 4755898719, + 8231906894, + 42428444 + ], + "geometry": [ + { "lat": 40.7250916, "lon": -73.9970609 }, + { "lat": 40.7242804, "lon": -73.9977466 }, + { "lat": 40.7242350, "lon": -73.9977850 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971371, + "bounds": { + "minlat": 40.7499391, + "minlon": -73.9397665, + "maxlat": 40.7502746, + "maxlon": -73.9389617 + }, + "nodes": [ + 2969267808, + 4457117582, + 6813394105, + 4457118208, + 2969267812, + 4457118200, + 592643527 + ], + "geometry": [ + { "lat": 40.7502746, "lon": -73.9397665 }, + { "lat": 40.7502508, "lon": -73.9397012 }, + { "lat": 40.7502470, "lon": -73.9396910 }, + { "lat": 40.7502434, "lon": -73.9396813 }, + { "lat": 40.7501806, "lon": -73.9395088 }, + { "lat": 40.7499680, "lon": -73.9390381 }, + { "lat": 40.7499391, "lon": -73.9389617 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "maxspeed": "25 mph", + "name": "Queensboro Plaza", + "oneway": "yes", + "ref": "NY 25", + "sidewalk:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 584971375, + "bounds": { + "minlat": 40.8107603, + "minlon": -73.9276433, + "maxlat": 40.8110916, + "maxlon": -73.9272894 + }, + "nodes": [ + 4207700494, + 11882279773, + 9163759310, + 8915998956, + 9582307233 + ], + "geometry": [ + { "lat": 40.8110916, "lon": -73.9272894 }, + { "lat": 40.8109906, "lon": -73.9273879 }, + { "lat": 40.8109692, "lon": -73.9274088 }, + { "lat": 40.8108317, "lon": -73.9275546 }, + { "lat": 40.8107603, "lon": -73.9276433 } + ], + "tags": { + "alt_name": "Third Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 584971376, + "bounds": { + "minlat": 40.8078043, + "minlon": -73.9238102, + "maxlat": 40.8086486, + "maxlon": -73.9231933 + }, + "nodes": [ + 42719455, + 7553907605, + 9908621356, + 9908621357, + 7226424406, + 42737705, + 11882279931, + 9908621359 + ], + "geometry": [ + { "lat": 40.8078043, "lon": -73.9238102 }, + { "lat": 40.8078529, "lon": -73.9237746 }, + { "lat": 40.8078722, "lon": -73.9237605 }, + { "lat": 40.8083520, "lon": -73.9234100 }, + { "lat": 40.8083786, "lon": -73.9233905 }, + { "lat": 40.8084341, "lon": -73.9233500 }, + { "lat": 40.8084968, "lon": -73.9233042 }, + { "lat": 40.8086486, "lon": -73.9231933 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 584971383, + "bounds": { + "minlat": 40.8631438, + "minlon": -73.9090758, + "maxlat": 40.8633776, + "maxlon": -73.9090681 + }, + "nodes": [ + 9903143784, + 2899216726 + ], + "geometry": [ + { "lat": 40.8631438, "lon": -73.9090681 }, + { "lat": 40.8633776, "lon": -73.9090758 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 584971385, + "bounds": { + "minlat": 40.8789240, + "minlon": -73.9065750, + "maxlat": 40.8798080, + "maxlon": -73.9047870 + }, + "nodes": [ + 42732273, + 12748328785, + 42770851, + 8701754976, + 13068285855, + 42748562 + ], + "geometry": [ + { "lat": 40.8789240, "lon": -73.9047870 }, + { "lat": 40.8789892, "lon": -73.9049197 }, + { "lat": 40.8794180, "lon": -73.9057930 }, + { "lat": 40.8796389, "lon": -73.9062358 }, + { "lat": 40.8797706, "lon": -73.9064994 }, + { "lat": 40.8798080, "lon": -73.9065750 } + ], + "tags": { + "highway": "residential", + "name": "West 231st Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "231st", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 584971387, + "bounds": { + "minlat": 40.8281627, + "minlon": -73.9330881, + "maxlat": 40.8282886, + "maxlon": -73.9314573 + }, + "nodes": [ + 193868326, + 42434924, + 595776445 + ], + "geometry": [ + { "lat": 40.8282886, "lon": -73.9314573 }, + { "lat": 40.8281986, "lon": -73.9326226 }, + { "lat": 40.8281627, "lon": -73.9330881 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "ele": "2", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "Macombs Dam Bridge", + "name:etymology:wikidata": "Q6724819", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs Dam", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 584971388, + "bounds": { + "minlat": 40.8379956, + "minlon": -73.9472602, + "maxlat": 40.8382107, + "maxlon": -73.9469759 + }, + "nodes": [ + 587934079, + 595352897 + ], + "geometry": [ + { "lat": 40.8379956, "lon": -73.9472602 }, + { "lat": 40.8382107, "lon": -73.9469759 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive West", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971389, + "bounds": { + "minlat": 40.8343937, + "minlon": -73.9491626, + "maxlat": 40.8344543, + "maxlon": -73.9491332 + }, + "nodes": [ + 13319818983, + 13105137064 + ], + "geometry": [ + { "lat": 40.8343937, "lon": -73.9491626 }, + { "lat": 40.8344543, "lon": -73.9491332 } + ], + "tags": { + "alt_name": "Robert Lowery Way", + "bridge": "yes", + "cycleway:both": "no", + "description": "This honorary street name memorializes Robert Lowery.", + "hgv": "no", + "highway": "secondary", + "historic": "memorial", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "layer": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "shoulder": "no", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971390, + "bounds": { + "minlat": 40.7938880, + "minlon": -73.9511110, + "maxlat": 40.7942850, + "maxlon": -73.9501454 + }, + "nodes": [ + 9178805724, + 9178805725, + 7779641281, + 42450456 + ], + "geometry": [ + { "lat": 40.7938880, "lon": -73.9501454 }, + { "lat": 40.7941072, "lon": -73.9506894 }, + { "lat": 40.7942393, "lon": -73.9510030 }, + { "lat": 40.7942850, "lon": -73.9511110 } + ], + "tags": { + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 584971392, + "bounds": { + "minlat": 40.8039089, + "minlon": -73.9353330, + "maxlat": 40.8043912, + "maxlon": -73.9341999 + }, + "nodes": [ + 5590991383, + 13703361194, + 11214344805, + 42434131 + ], + "geometry": [ + { "lat": 40.8039089, "lon": -73.9341999 }, + { "lat": 40.8041864, "lon": -73.9348520 }, + { "lat": 40.8043285, "lon": -73.9351858 }, + { "lat": 40.8043912, "lon": -73.9353330 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "3", + "name": "East 126th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 584971393, + "bounds": { + "minlat": 40.7979386, + "minlon": -73.9416222, + "maxlat": 40.7986336, + "maxlon": -73.9400272 + }, + "nodes": [ + 42450071, + 8714998590, + 10166326205, + 10122953004, + 42447199 + ], + "geometry": [ + { "lat": 40.7979386, "lon": -73.9400272 }, + { "lat": 40.7980136, "lon": -73.9401551 }, + { "lat": 40.7980166, "lon": -73.9401622 }, + { "lat": 40.7985932, "lon": -73.9415263 }, + { "lat": 40.7986336, "lon": -73.9416222 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "East 116th Street", + "name:ru": "Восточная 116-я стрит", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971395, + "bounds": { + "minlat": 40.7291277, + "minlon": -73.9902243, + "maxlat": 40.7295679, + "maxlon": -73.9899050 + }, + "nodes": [ + 42434140, + 3919350741, + 12179562775, + 5590991384 + ], + "geometry": [ + { "lat": 40.7295679, "lon": -73.9899050 }, + { "lat": 40.7294970, "lon": -73.9899573 }, + { "lat": 40.7294542, "lon": -73.9899888 }, + { "lat": 40.7291277, "lon": -73.9902243 } + ], + "tags": { + "alt_name": "3rd Avenue", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "24/7", + "maxspeed": "25 mph", + "name": "Cooper Square", + "name:etymology:wikidata": "Q935291", + "oneway": "no", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 584971399, + "bounds": { + "minlat": 40.7395138, + "minlon": -73.9847521, + "maxlat": 40.7398424, + "maxlon": -73.9845089 + }, + "nodes": [ + 9558740370, + 12181379206, + 10166167596, + 42446925 + ], + "geometry": [ + { "lat": 40.7398424, "lon": -73.9845089 }, + { "lat": 40.7396602, "lon": -73.9846425 }, + { "lat": 40.7396131, "lon": -73.9846777 }, + { "lat": 40.7395138, "lon": -73.9847521 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 584971404, + "bounds": { + "minlat": 40.8695510, + "minlon": -73.9151830, + "maxlat": 40.8702250, + "maxlon": -73.9146940 + }, + "nodes": [ + 42454553, + 9563662426, + 42446231 + ], + "geometry": [ + { "lat": 40.8695510, "lon": -73.9151830 }, + { "lat": 40.8696527, "lon": -73.9151092 }, + { "lat": 40.8702250, "lon": -73.9146940 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971408, + "bounds": { + "minlat": 40.8465019, + "minlon": -73.9320753, + "maxlat": 40.8467529, + "maxlon": -73.9318917 + }, + "nodes": [ + 595481001, + 595473050 + ], + "geometry": [ + { "lat": 40.8465019, "lon": -73.9320753 }, + { "lat": 40.8467529, "lon": -73.9318917 } + ], + "tags": { + "bridge": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "layer": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971412, + "bounds": { + "minlat": 40.7922499, + "minlon": -73.9462871, + "maxlat": 40.7986336, + "maxlon": -73.9416222 + }, + "nodes": [ + 42447199, + 10122953002, + 9726158594, + 7096519017, + 42435395, + 7096519030, + 7924346766, + 9726158589, + 7924346725, + 7096519001, + 42447196, + 7096519026, + 7811793774, + 42447192, + 7811793754, + 7811793770, + 42434384, + 7811793758, + 9726158590, + 7811793767, + 42447187, + 7811793766, + 7779608818, + 42436644, + 7779608797, + 7779582481, + 42445823, + 7779608803, + 4970503548, + 42447182 + ], + "geometry": [ + { "lat": 40.7986336, "lon": -73.9416222 }, + { "lat": 40.7985348, "lon": -73.9416938 }, + { "lat": 40.7981592, "lon": -73.9419723 }, + { "lat": 40.7980133, "lon": -73.9420799 }, + { "lat": 40.7979500, "lon": -73.9421243 }, + { "lat": 40.7978896, "lon": -73.9421688 }, + { "lat": 40.7973747, "lon": -73.9425424 }, + { "lat": 40.7967494, "lon": -73.9429983 }, + { "lat": 40.7966690, "lon": -73.9430566 }, + { "lat": 40.7961509, "lon": -73.9434387 }, + { "lat": 40.7960809, "lon": -73.9434893 }, + { "lat": 40.7960156, "lon": -73.9435371 }, + { "lat": 40.7954985, "lon": -73.9439140 }, + { "lat": 40.7954494, "lon": -73.9439488 }, + { "lat": 40.7953842, "lon": -73.9439957 }, + { "lat": 40.7948706, "lon": -73.9443716 }, + { "lat": 40.7948079, "lon": -73.9444165 }, + { "lat": 40.7947594, "lon": -73.9444504 }, + { "lat": 40.7944014, "lon": -73.9447118 }, + { "lat": 40.7942392, "lon": -73.9448305 }, + { "lat": 40.7941830, "lon": -73.9448716 }, + { "lat": 40.7941298, "lon": -73.9449109 }, + { "lat": 40.7936168, "lon": -73.9452875 }, + { "lat": 40.7935598, "lon": -73.9453291 }, + { "lat": 40.7934999, "lon": -73.9453714 }, + { "lat": 40.7929847, "lon": -73.9457468 }, + { "lat": 40.7929300, "lon": -73.9457883 }, + { "lat": 40.7928758, "lon": -73.9458290 }, + { "lat": 40.7923464, "lon": -73.9462178 }, + { "lat": 40.7922499, "lon": -73.9462871 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 584971419, + "bounds": { + "minlat": 40.7875598, + "minlon": -73.9553573, + "maxlat": 40.7877362, + "maxlon": -73.9549351 + }, + "nodes": [ + 7066686013, + 9906892370 + ], + "geometry": [ + { "lat": 40.7877362, "lon": -73.9553573 }, + { "lat": 40.7875598, "lon": -73.9549351 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971432, + "bounds": { + "minlat": 40.7831527, + "minlon": -73.9798812, + "maxlat": 40.7838080, + "maxlon": -73.9783277 + }, + "nodes": [ + 42442463, + 9897810876, + 12060299581, + 8709392072, + 1061531454 + ], + "geometry": [ + { "lat": 40.7831527, "lon": -73.9783277 }, + { "lat": 40.7832077, "lon": -73.9784567 }, + { "lat": 40.7833371, "lon": -73.9787638 }, + { "lat": 40.7837695, "lon": -73.9797901 }, + { "lat": 40.7838080, "lon": -73.9798812 } + ], + "tags": { + "alt_name": "West 79 Street", + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 79th Street", + "name:ru": "Западная 79-я стрит", + "sidewalk:both": "separate", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971439, + "bounds": { + "minlat": 40.7718489, + "minlon": -73.9501042, + "maxlat": 40.7720762, + "maxlon": -73.9499354 + }, + "nodes": [ + 4888399302, + 6691104521, + 42428022 + ], + "geometry": [ + { "lat": 40.7718489, "lon": -73.9501042 }, + { "lat": 40.7720226, "lon": -73.9499752 }, + { "lat": 40.7720762, "lon": -73.9499354 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 584971443, + "bounds": { + "minlat": 40.7791875, + "minlon": -73.9879024, + "maxlat": 40.7795172, + "maxlon": -73.9871067 + }, + "nodes": [ + 42438832, + 13179549064, + 5619144361 + ], + "geometry": [ + { "lat": 40.7791875, "lon": -73.9871067 }, + { "lat": 40.7792242, "lon": -73.9871952 }, + { "lat": 40.7795172, "lon": -73.9879024 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "West 70th Street", + "name:ru": "Западная 70-я стрит", + "name_1": "West 70 Street" + } +}, +{ + "type": "way", + "id": 584971448, + "bounds": { + "minlat": 40.7717833, + "minlon": -73.9666195, + "maxlat": 40.7722790, + "maxlon": -73.9654340 + }, + "nodes": [ + 42436477, + 4207313540, + 4207903863 + ], + "geometry": [ + { "lat": 40.7717833, "lon": -73.9654340 }, + { "lat": 40.7718308, "lon": -73.9655506 }, + { "lat": 40.7722790, "lon": -73.9666195 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 72nd Street", + "name:ru": "Восточная 72-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971454, + "bounds": { + "minlat": 40.7668593, + "minlon": -73.9559988, + "maxlat": 40.7678043, + "maxlon": -73.9537482 + }, + "nodes": [ + 42436492, + 3562587906, + 7740583793, + 4207313503, + 42428007 + ], + "geometry": [ + { "lat": 40.7678043, "lon": -73.9559988 }, + { "lat": 40.7677468, "lon": -73.9558625 }, + { "lat": 40.7671119, "lon": -73.9543413 }, + { "lat": 40.7669135, "lon": -73.9538772 }, + { "lat": 40.7668593, "lon": -73.9537482 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "East 72nd Street", + "name:ru": "Восточная 72-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971459, + "bounds": { + "minlat": 40.7661832, + "minlon": -73.9542439, + "maxlat": 40.7668593, + "maxlon": -73.9537482 + }, + "nodes": [ + 42428007, + 4207313499, + 6670244835, + 42428005 + ], + "geometry": [ + { "lat": 40.7668593, "lon": -73.9537482 }, + { "lat": 40.7667695, "lon": -73.9538140 }, + { "lat": 40.7662395, "lon": -73.9542026 }, + { "lat": 40.7661832, "lon": -73.9542439 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 584971463, + "bounds": { + "minlat": 40.7668593, + "minlon": -73.9537482, + "maxlat": 40.7675409, + "maxlon": -73.9532494 + }, + "nodes": [ + 42428010, + 6670244831, + 6877054650, + 6877054643, + 4207313504, + 42428007 + ], + "geometry": [ + { "lat": 40.7675409, "lon": -73.9532494 }, + { "lat": 40.7674826, "lon": -73.9532921 }, + { "lat": 40.7673167, "lon": -73.9534135 }, + { "lat": 40.7671170, "lon": -73.9535596 }, + { "lat": 40.7669593, "lon": -73.9536750 }, + { "lat": 40.7668593, "lon": -73.9537482 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 584971469, + "bounds": { + "minlat": 40.7636731, + "minlon": -73.9560793, + "maxlat": 40.7642988, + "maxlon": -73.9556211 + }, + "nodes": [ + 42427991, + 6670244844, + 9729779305, + 7837088618, + 42427985 + ], + "geometry": [ + { "lat": 40.7642988, "lon": -73.9556211 }, + { "lat": 40.7642400, "lon": -73.9556642 }, + { "lat": 40.7639685, "lon": -73.9558630 }, + { "lat": 40.7637322, "lon": -73.9560360 }, + { "lat": 40.7636731, "lon": -73.9560793 } + ], + "tags": { + "alt_name": "Mary Woodard Lasker Way", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 584971474, + "bounds": { + "minlat": 40.7642988, + "minlon": -73.9556211, + "maxlat": 40.7661832, + "maxlon": -73.9542439 + }, + "nodes": [ + 42428005, + 6670244838, + 6670244841, + 42428003, + 6670244842, + 11419656049, + 7837088631, + 42427996, + 7837088640, + 6670244846, + 42427991 + ], + "geometry": [ + { "lat": 40.7661832, "lon": -73.9542439 }, + { "lat": 40.7661177, "lon": -73.9542918 }, + { "lat": 40.7656093, "lon": -73.9546633 }, + { "lat": 40.7655447, "lon": -73.9547105 }, + { "lat": 40.7654826, "lon": -73.9547560 }, + { "lat": 40.7652941, "lon": -73.9548939 }, + { "lat": 40.7649903, "lon": -73.9551157 }, + { "lat": 40.7649207, "lon": -73.9551666 }, + { "lat": 40.7648729, "lon": -73.9552016 }, + { "lat": 40.7643575, "lon": -73.9555782 }, + { "lat": 40.7642988, "lon": -73.9556211 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 584971497, + "bounds": { + "minlat": 40.7624932, + "minlon": -74.0011602, + "maxlat": 40.7627303, + "maxlon": -74.0008061 + }, + "nodes": [ + 247086012, + 12152950988, + 12152950987, + 3679458105 + ], + "geometry": [ + { "lat": 40.7627303, "lon": -74.0008061 }, + { "lat": 40.7626486, "lon": -74.0009332 }, + { "lat": 40.7625667, "lon": -74.0010545 }, + { "lat": 40.7624932, "lon": -74.0011602 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 584971498, + "bounds": { + "minlat": 40.7852222, + "minlon": -73.9320421, + "maxlat": 40.7857970, + "maxlon": -73.9306953 + }, + "nodes": [ + 7734633950, + 1242159704 + ], + "geometry": [ + { "lat": 40.7852222, "lon": -73.9306953 }, + { "lat": 40.7857970, "lon": -73.9320421 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "10 mph", + "name": "Sunken Garden Loop", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 584971499, + "bounds": { + "minlat": 40.7557816, + "minlon": -74.0025138, + "maxlat": 40.7560097, + "maxlon": -74.0019763 + }, + "nodes": [ + 12984697271, + 8261044794, + 42430633 + ], + "geometry": [ + { "lat": 40.7560097, "lon": -74.0025138 }, + { "lat": 40.7558620, "lon": -74.0021692 }, + { "lat": 40.7557816, "lon": -74.0019763 } + ], + "tags": { + "bus:lanes:forward": "yes|yes|designated|yes", + "change:lanes:forward": "no|no|not_left|yes", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "4", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "surface": "asphalt", + "turn:lanes:forward": "left|through||right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971500, + "bounds": { + "minlat": 40.7796870, + "minlon": -73.9443831, + "maxlat": 40.7797423, + "maxlon": -73.9442883 + }, + "nodes": [ + 6185259892, + 42428052 + ], + "geometry": [ + { "lat": 40.7796870, "lon": -73.9443831 }, + { "lat": 40.7797423, "lon": -73.9442883 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|through|right", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 584971501, + "bounds": { + "minlat": 40.7691175, + "minlon": -73.9907805, + "maxlat": 40.7700557, + "maxlon": -73.9885610 + }, + "nodes": [ + 42455643, + 3998699937, + 13207929596, + 13207929595, + 9989925888, + 4215913814 + ], + "geometry": [ + { "lat": 40.7691175, "lon": -73.9885610 }, + { "lat": 40.7691719, "lon": -73.9886893 }, + { "lat": 40.7692907, "lon": -73.9889700 }, + { "lat": 40.7693448, "lon": -73.9890978 }, + { "lat": 40.7698683, "lon": -73.9903347 }, + { "lat": 40.7700557, "lon": -73.9907805 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "name_1": "West 57 Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971503, + "bounds": { + "minlat": 40.7659937, + "minlon": -73.9899624, + "maxlat": 40.7671828, + "maxlon": -73.9871254 + }, + "nodes": [ + 42450434, + 3308681114, + 3308681113, + 42445033 + ], + "geometry": [ + { "lat": 40.7671828, "lon": -73.9899624 }, + { "lat": 40.7671339, "lon": -73.9898491 }, + { "lat": 40.7660519, "lon": -73.9872650 }, + { "lat": 40.7659937, "lon": -73.9871254 } + ], + "tags": { + "bicycle": "yes", + "bicycle:lanes": "designated|", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "motor_vehicle:lanes": "no|", + "name": "West 54th Street", + "name:ru": "Западная 54-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640525", + "wikipedia": "en:54th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971510, + "bounds": { + "minlat": 40.7156979, + "minlon": -74.0154911, + "maxlat": 40.7158297, + "maxlon": -74.0153827 + }, + "nodes": [ + 11440189918, + 5836025492, + 42429630 + ], + "geometry": [ + { "lat": 40.7156979, "lon": -74.0154911 }, + { "lat": 40.7157698, "lon": -74.0154320 }, + { "lat": 40.7158297, "lon": -74.0153827 } + ], + "tags": { + "highway": "residential", + "lanes": "4", + "maxspeed": "20 mph", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 584971513, + "bounds": { + "minlat": 40.7176193, + "minlon": -74.0140548, + "maxlat": 40.7177265, + "maxlon": -74.0138194 + }, + "nodes": [ + 42431629, + 42431630 + ], + "geometry": [ + { "lat": 40.7176193, "lon": -74.0138194 }, + { "lat": 40.7177265, "lon": -74.0140548 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971516, + "bounds": { + "minlat": 40.7158297, + "minlon": -74.0153827, + "maxlat": 40.7159799, + "maxlon": -74.0152648 + }, + "nodes": [ + 42446800, + 5216346768, + 42429630 + ], + "geometry": [ + { "lat": 40.7159799, "lon": -74.0152648 }, + { "lat": 40.7159280, "lon": -74.0153056 }, + { "lat": 40.7158297, "lon": -74.0153827 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 584971522, + "bounds": { + "minlat": 40.7015518, + "minlon": -74.0140074, + "maxlat": 40.7020924, + "maxlon": -74.0138454 + }, + "nodes": [ + 607911351, + 1805328838, + 6136264773, + 6136264768, + 6136264779, + 6128792140, + 11013387608, + 10291808113, + 11013387609, + 607911362 + ], + "geometry": [ + { "lat": 40.7015518, "lon": -74.0139809 }, + { "lat": 40.7019869, "lon": -74.0140074 }, + { "lat": 40.7020146, "lon": -74.0139980 }, + { "lat": 40.7020349, "lon": -74.0139872 }, + { "lat": 40.7020470, "lon": -74.0139788 }, + { "lat": 40.7020563, "lon": -74.0139671 }, + { "lat": 40.7020685, "lon": -74.0139355 }, + { "lat": 40.7020744, "lon": -74.0139164 }, + { "lat": 40.7020806, "lon": -74.0138734 }, + { "lat": 40.7020924, "lon": -74.0138454 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Peter Minuit Plaza", + "name:etymology:wikidata": "Q312889", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 584971524, + "bounds": { + "minlat": 40.7096296, + "minlon": -73.9930600, + "maxlat": 40.7098281, + "maxlon": -73.9917770 + }, + "nodes": [ + 9907939580, + 11519994060, + 11033263682, + 42444123, + 4489003010, + 42444129 + ], + "geometry": [ + { "lat": 40.7096296, "lon": -73.9930600 }, + { "lat": 40.7097286, "lon": -73.9924201 }, + { "lat": 40.7097868, "lon": -73.9920443 }, + { "lat": 40.7097965, "lon": -73.9919815 }, + { "lat": 40.7098159, "lon": -73.9918583 }, + { "lat": 40.7098281, "lon": -73.9917770 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "no", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "surface": "asphalt", + "turn:lanes:forward": "left|through", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971525, + "bounds": { + "minlat": 40.7123181, + "minlon": -73.9943532, + "maxlat": 40.7123696, + "maxlon": -73.9937507 + }, + "nodes": [ + 42437755, + 8279851256, + 5320844276, + 7490239500, + 496707003 + ], + "geometry": [ + { "lat": 40.7123181, "lon": -73.9943532 }, + { "lat": 40.7123237, "lon": -73.9942870 }, + { "lat": 40.7123519, "lon": -73.9939546 }, + { "lat": 40.7123573, "lon": -73.9938922 }, + { "lat": 40.7123696, "lon": -73.9937507 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "parking:both:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971526, + "bounds": { + "minlat": 40.8312003, + "minlon": -73.9357100, + "maxlat": 40.8314909, + "maxlon": -73.9355196 + }, + "nodes": [ + 5333189423, + 13535318218, + 9153608709, + 5333189421 + ], + "geometry": [ + { "lat": 40.8312003, "lon": -73.9357100 }, + { "lat": 40.8313713, "lon": -73.9355900 }, + { "lat": 40.8314334, "lon": -73.9355519 }, + { "lat": 40.8314909, "lon": -73.9355196 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "8th;Harlem River", + "tiger:name_base_1": "Frederick Douglass", + "tiger:name_type": "Ave;Dr", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971528, + "bounds": { + "minlat": 40.7701961, + "minlon": -73.9803719, + "maxlat": 40.7705364, + "maxlon": -73.9801168 + }, + "nodes": [ + 4207881093, + 7837165572, + 42435253 + ], + "geometry": [ + { "lat": 40.7701961, "lon": -73.9803719 }, + { "lat": 40.7704797, "lon": -73.9801579 }, + { "lat": 40.7705364, "lon": -73.9801168 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "parking:condition:both:default": "free", + "parking:condition:left": "no_parking", + "parking:condition:left:time_interval": "Mo-Fr 08:00-06:00", + "parking:condition:right": "no_parking", + "parking:condition:right:time_interval": "Tu, Fr 08:00-09:30", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971529, + "bounds": { + "minlat": 40.7243842, + "minlon": -73.9745202, + "maxlat": 40.7245958, + "maxlon": -73.9741568 + }, + "nodes": [ + 274342024, + 1602588200, + 274342213, + 1602588173, + 1602588169, + 274342212, + 1602588146, + 1602588144, + 274342211, + 1602588151, + 274342021 + ], + "geometry": [ + { "lat": 40.7245958, "lon": -73.9745044 }, + { "lat": 40.7245603, "lon": -73.9745186 }, + { "lat": 40.7245178, "lon": -73.9745202 }, + { "lat": 40.7244727, "lon": -73.9745039 }, + { "lat": 40.7244332, "lon": -73.9744697 }, + { "lat": 40.7243995, "lon": -73.9744110 }, + { "lat": 40.7243868, "lon": -73.9743627 }, + { "lat": 40.7243842, "lon": -73.9743046 }, + { "lat": 40.7243970, "lon": -73.9742399 }, + { "lat": 40.7244194, "lon": -73.9741931 }, + { "lat": 40.7244500, "lon": -73.9741568 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "junction": "roundabout", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 10th Street", + "name:ru": "Восточная 10-я стрит", + "name_1": "East 10 Street", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 584971530, + "bounds": { + "minlat": 40.7272732, + "minlon": -73.9826536, + "maxlat": 40.7278454, + "maxlon": -73.9822380 + }, + "nodes": [ + 42449023, + 4216045848, + 12179582426, + 12179582406, + 4216055440, + 42430914 + ], + "geometry": [ + { "lat": 40.7272732, "lon": -73.9826536 }, + { "lat": 40.7273280, "lon": -73.9826146 }, + { "lat": 40.7273630, "lon": -73.9825892 }, + { "lat": 40.7277590, "lon": -73.9823007 }, + { "lat": 40.7277962, "lon": -73.9822742 }, + { "lat": 40.7278454, "lon": -73.9822380 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Avenue A", + "name:ru": "Авеню A", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790552", + "wikipedia": "en:Avenue A (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971531, + "bounds": { + "minlat": 40.7278454, + "minlon": -73.9822380, + "maxlat": 40.7297250, + "maxlon": -73.9808580 + }, + "nodes": [ + 42430914, + 4216045840, + 12179582407, + 12179582403, + 11040080985, + 8309479501, + 42454997, + 8309479500, + 11040029974, + 8309479546, + 42446552, + 8309479545, + 8309479555, + 42436944 + ], + "geometry": [ + { "lat": 40.7278454, "lon": -73.9822380 }, + { "lat": 40.7279141, "lon": -73.9821863 }, + { "lat": 40.7279416, "lon": -73.9821671 }, + { "lat": 40.7279706, "lon": -73.9821468 }, + { "lat": 40.7280840, "lon": -73.9820623 }, + { "lat": 40.7284001, "lon": -73.9818235 }, + { "lat": 40.7284460, "lon": -73.9817900 }, + { "lat": 40.7284973, "lon": -73.9817527 }, + { "lat": 40.7287292, "lon": -73.9815842 }, + { "lat": 40.7290367, "lon": -73.9813608 }, + { "lat": 40.7290860, "lon": -73.9813250 }, + { "lat": 40.7291364, "lon": -73.9812882 }, + { "lat": 40.7296715, "lon": -73.9808971 }, + { "lat": 40.7297250, "lon": -73.9808580 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Avenue A", + "name:ru": "Авеню A", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790552", + "wikipedia": "en:Avenue A (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971532, + "bounds": { + "minlat": 40.7266660, + "minlon": -73.9830900, + "maxlat": 40.7272732, + "maxlon": -73.9826536 + }, + "nodes": [ + 42434148, + 4216045852, + 12179582427, + 8475999058, + 4216045838, + 42449023 + ], + "geometry": [ + { "lat": 40.7266660, "lon": -73.9830900 }, + { "lat": 40.7267267, "lon": -73.9830458 }, + { "lat": 40.7271568, "lon": -73.9827386 }, + { "lat": 40.7271822, "lon": -73.9827202 }, + { "lat": 40.7272087, "lon": -73.9827010 }, + { "lat": 40.7272732, "lon": -73.9826536 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Avenue A", + "name:ru": "Авеню A", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790552", + "wikipedia": "en:Avenue A (Manhattan)" + } +}, +{ + "type": "way", + "id": 584971533, + "bounds": { + "minlat": 40.8478794, + "minlon": -73.9373506, + "maxlat": 40.8482758, + "maxlon": -73.9363969 + }, + "nodes": [ + 5590991391, + 9550791751, + 42449634 + ], + "geometry": [ + { "lat": 40.8482758, "lon": -73.9373506 }, + { "lat": 40.8479230, "lon": -73.9365049 }, + { "lat": 40.8478794, "lon": -73.9363969 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 178th Street", + "name_1": "West 178 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "178th", + "tiger:name_base_1": "178", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033" + } +}, +{ + "type": "way", + "id": 585664741, + "bounds": { + "minlat": 40.7901490, + "minlon": -73.9592261, + "maxlat": 40.7905097, + "maxlon": -73.9591546 + }, + "nodes": [ + 5596409839, + 5596409838, + 7106607085, + 291922093 + ], + "geometry": [ + { "lat": 40.7901490, "lon": -73.9592261 }, + { "lat": 40.7903150, "lon": -73.9591737 }, + { "lat": 40.7904037, "lon": -73.9591560 }, + { "lat": 40.7905097, "lon": -73.9591546 } + ], + "tags": { + "access": "destination", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 585664743, + "bounds": { + "minlat": 40.7905097, + "minlon": -73.9596590, + "maxlat": 40.7908376, + "maxlon": -73.9591546 + }, + "nodes": [ + 4276625437, + 4276625436, + 291922092, + 4276625431, + 4276625430, + 3391966092, + 4276625413, + 3391966093, + 291922093 + ], + "geometry": [ + { "lat": 40.7908376, "lon": -73.9596590 }, + { "lat": 40.7908265, "lon": -73.9595749 }, + { "lat": 40.7908122, "lon": -73.9595046 }, + { "lat": 40.7907901, "lon": -73.9594349 }, + { "lat": 40.7907618, "lon": -73.9593735 }, + { "lat": 40.7907064, "lon": -73.9592942 }, + { "lat": 40.7906467, "lon": -73.9592308 }, + { "lat": 40.7905969, "lon": -73.9591955 }, + { "lat": 40.7905097, "lon": -73.9591546 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 586133494, + "bounds": { + "minlat": 40.8172110, + "minlon": -73.9159910, + "maxlat": 40.8175810, + "maxlon": -73.9155280 + }, + "nodes": [ + 42758642, + 12040128396, + 8704312662, + 12040128450, + 42768527 + ], + "geometry": [ + { "lat": 40.8172110, "lon": -73.9159910 }, + { "lat": 40.8172459, "lon": -73.9159473 }, + { "lat": 40.8172657, "lon": -73.9159226 }, + { "lat": 40.8175434, "lon": -73.9155750 }, + { "lat": 40.8175810, "lon": -73.9155280 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 586133495, + "bounds": { + "minlat": 40.8548640, + "minlon": -73.9168160, + "maxlat": 40.8555126, + "maxlon": -73.9164728 + }, + "nodes": [ + 42743086, + 9918291095, + 9918291094, + 9918291093, + 9918291092, + 2808842340, + 42743082 + ], + "geometry": [ + { "lat": 40.8555126, "lon": -73.9164728 }, + { "lat": 40.8554607, "lon": -73.9164868 }, + { "lat": 40.8554186, "lon": -73.9165001 }, + { "lat": 40.8553735, "lon": -73.9165142 }, + { "lat": 40.8553271, "lon": -73.9165347 }, + { "lat": 40.8549691, "lon": -73.9167455 }, + { "lat": 40.8548640, "lon": -73.9168160 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 586133511, + "bounds": { + "minlat": 40.8110961, + "minlon": -73.9270557, + "maxlat": 40.8114982, + "maxlon": -73.9263975 + }, + "nodes": [ + 2826997294, + 9163778723, + 2826997295 + ], + "geometry": [ + { "lat": 40.8110961, "lon": -73.9270557 }, + { "lat": 40.8114416, "lon": -73.9264570 }, + { "lat": 40.8114982, "lon": -73.9263975 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Third Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 586133544, + "bounds": { + "minlat": 40.8631903, + "minlon": -73.9218840, + "maxlat": 40.8651000, + "maxlon": -73.9206580 + }, + "nodes": [ + 42427867, + 13300300813, + 9561420922, + 9561420895, + 42446604, + 9561420892, + 7070909371, + 9561420843, + 1764405361 + ], + "geometry": [ + { "lat": 40.8651000, "lon": -73.9218840 }, + { "lat": 40.8650742, "lon": -73.9218674 }, + { "lat": 40.8650060, "lon": -73.9218237 }, + { "lat": 40.8641994, "lon": -73.9213061 }, + { "lat": 40.8641120, "lon": -73.9212500 }, + { "lat": 40.8640438, "lon": -73.9212064 }, + { "lat": 40.8637291, "lon": -73.9210051 }, + { "lat": 40.8632467, "lon": -73.9206922 }, + { "lat": 40.8631903, "lon": -73.9206580 } + ], + "tags": { + "highway": "tertiary", + "name": "West 204th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "204th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 586133545, + "bounds": { + "minlat": 40.8670160, + "minlon": -73.9240380, + "maxlat": 40.8684730, + "maxlon": -73.9231100 + }, + "nodes": [ + 42455509, + 9561420920, + 11596424610, + 42453349, + 11596424611, + 8952453920, + 42429220 + ], + "geometry": [ + { "lat": 40.8684730, "lon": -73.9240380 }, + { "lat": 40.8684053, "lon": -73.9239953 }, + { "lat": 40.8678804, "lon": -73.9236626 }, + { "lat": 40.8678180, "lon": -73.9236230 }, + { "lat": 40.8677685, "lon": -73.9235913 }, + { "lat": 40.8671184, "lon": -73.9231750 }, + { "lat": 40.8670160, "lon": -73.9231100 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lane_markings": "yes", + "maxspeed": "20 mph", + "name": "West 204th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "204th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 586133546, + "bounds": { + "minlat": 40.8406480, + "minlon": -73.9190110, + "maxlat": 40.8418790, + "maxlon": -73.9179520 + }, + "nodes": [ + 42740200, + 13036868345, + 13247296417, + 42740204 + ], + "geometry": [ + { "lat": 40.8406480, "lon": -73.9190110 }, + { "lat": 40.8407275, "lon": -73.9189426 }, + { "lat": 40.8417578, "lon": -73.9180679 }, + { "lat": 40.8418790, "lon": -73.9179520 } + ], + "tags": { + "highway": "residential", + "name": "Inwood Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Inwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 586133547, + "bounds": { + "minlat": 40.8403620, + "minlon": -73.9190110, + "maxlat": 40.8406480, + "maxlon": -73.9180620 + }, + "nodes": [ + 42736043, + 13036868369, + 13037005880, + 42740200 + ], + "geometry": [ + { "lat": 40.8403620, "lon": -73.9180620 }, + { "lat": 40.8403887, "lon": -73.9181513 }, + { "lat": 40.8406233, "lon": -73.9189327 }, + { "lat": 40.8406480, "lon": -73.9190110 } + ], + "tags": { + "highway": "tertiary", + "name": "West 170th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 586133548, + "bounds": { + "minlat": 40.8418790, + "minlon": -73.9179520, + "maxlat": 40.8447940, + "maxlon": -73.9158670 + }, + "nodes": [ + 42740204, + 13247296425, + 42740208, + 42740210, + 7950889860, + 13247540971, + 42740214 + ], + "geometry": [ + { "lat": 40.8418790, "lon": -73.9179520 }, + { "lat": 40.8420286, "lon": -73.9178372 }, + { "lat": 40.8422520, "lon": -73.9176784 }, + { "lat": 40.8438260, "lon": -73.9165531 }, + { "lat": 40.8446970, "lon": -73.9159357 }, + { "lat": 40.8447396, "lon": -73.9159055 }, + { "lat": 40.8447940, "lon": -73.9158670 } + ], + "tags": { + "highway": "residential", + "name": "Inwood Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Inwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 586133549, + "bounds": { + "minlat": 40.8411613, + "minlon": -73.9179520, + "maxlat": 40.8418790, + "maxlon": -73.9175333 + }, + "nodes": [ + 42740204, + 13247296421, + 42736047 + ], + "geometry": [ + { "lat": 40.8418790, "lon": -73.9179520 }, + { "lat": 40.8418040, "lon": -73.9179083 }, + { "lat": 40.8411613, "lon": -73.9175333 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 586133551, + "bounds": { + "minlat": 40.8407660, + "minlon": -73.9175333, + "maxlat": 40.8411613, + "maxlon": -73.9172990 + }, + "nodes": [ + 42736047, + 13114388082, + 13038429587, + 42736361, + 13114388081, + 13114388080, + 42736047 + ], + "geometry": [ + { "lat": 40.8411613, "lon": -73.9175333 }, + { "lat": 40.8410809, "lon": -73.9175304 }, + { "lat": 40.8408486, "lon": -73.9174259 }, + { "lat": 40.8407660, "lon": -73.9172990 }, + { "lat": 40.8409655, "lon": -73.9173404 }, + { "lat": 40.8410989, "lon": -73.9174385 }, + { "lat": 40.8411613, "lon": -73.9175333 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "yes", + "parking:lane:width": "8'", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 586133552, + "bounds": { + "minlat": 40.8482702, + "minlon": -73.9183700, + "maxlat": 40.8487072, + "maxlon": -73.9177855 + }, + "nodes": [ + 2907939240, + 11794372939 + ], + "geometry": [ + { "lat": 40.8482702, "lon": -73.9183700 }, + { "lat": 40.8487072, "lon": -73.9177855 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 586133553, + "bounds": { + "minlat": 40.8492002, + "minlon": -73.9174402, + "maxlat": 40.8505426, + "maxlon": -73.9155182 + }, + "nodes": [ + 2907939233, + 2907939232, + 12384151467, + 12463546979, + 9254477531, + 2907939234, + 6978627823, + 2907939238 + ], + "geometry": [ + { "lat": 40.8505426, "lon": -73.9155182 }, + { "lat": 40.8504543, "lon": -73.9156279 }, + { "lat": 40.8504434, "lon": -73.9156436 }, + { "lat": 40.8499418, "lon": -73.9163672 }, + { "lat": 40.8498801, "lon": -73.9164593 }, + { "lat": 40.8497672, "lon": -73.9166234 }, + { "lat": 40.8497378, "lon": -73.9166691 }, + { "lat": 40.8492002, "lon": -73.9174402 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 586133554, + "bounds": { + "minlat": 40.8477300, + "minlon": -73.9183700, + "maxlat": 40.8482702, + "maxlon": -73.9176440 + }, + "nodes": [ + 2907939240, + 13181365256, + 42752015 + ], + "geometry": [ + { "lat": 40.8482702, "lon": -73.9183700 }, + { "lat": 40.8481915, "lon": -73.9182642 }, + { "lat": 40.8477300, "lon": -73.9176440 } + ], + "tags": { + "highway": "residential", + "name": "Brandt Place", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brandt", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 586133555, + "bounds": { + "minlat": 40.8496943, + "minlon": -73.9164070, + "maxlat": 40.8500160, + "maxlon": -73.9159500 + }, + "nodes": [ + 2907939235, + 9254477532, + 2907939282, + 42769952 + ], + "geometry": [ + { "lat": 40.8496943, "lon": -73.9164070 }, + { "lat": 40.8497512, "lon": -73.9163253 }, + { "lat": 40.8499486, "lon": -73.9160469 }, + { "lat": 40.8500160, "lon": -73.9159500 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 586133556, + "bounds": { + "minlat": 40.8490814, + "minlon": -73.9172851, + "maxlat": 40.8496943, + "maxlon": -73.9164070 + }, + "nodes": [ + 42744694, + 10765464226, + 10765464237, + 8647961981, + 2907939235 + ], + "geometry": [ + { "lat": 40.8490814, "lon": -73.9172851 }, + { "lat": 40.8494055, "lon": -73.9168251 }, + { "lat": 40.8495298, "lon": -73.9166486 }, + { "lat": 40.8496113, "lon": -73.9165339 }, + { "lat": 40.8496943, "lon": -73.9164070 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 586133557, + "bounds": { + "minlat": 40.8522360, + "minlon": -73.9203776, + "maxlat": 40.8526141, + "maxlon": -73.9192979 + }, + "nodes": [ + 42743072, + 4720620193 + ], + "geometry": [ + { "lat": 40.8526141, "lon": -73.9192979 }, + { "lat": 40.8522360, "lon": -73.9203776 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 586133558, + "bounds": { + "minlat": 40.8049012, + "minlon": -73.9206226, + "maxlat": 40.8056584, + "maxlon": -73.9188128 + }, + "nodes": [ + 42747190, + 9908650944, + 11518915148, + 6863636605, + 42747188 + ], + "geometry": [ + { "lat": 40.8049012, "lon": -73.9188128 }, + { "lat": 40.8049590, "lon": -73.9189327 }, + { "lat": 40.8051714, "lon": -73.9194321 }, + { "lat": 40.8056314, "lon": -73.9205138 }, + { "lat": 40.8056584, "lon": -73.9206226 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 586133561, + "bounds": { + "minlat": 40.8049012, + "minlon": -73.9188128, + "maxlat": 40.8068230, + "maxlon": -73.9174790 + }, + "nodes": [ + 42747190, + 9156979759, + 6863636612, + 13039125299, + 42737714, + 13039133402, + 10033557471, + 13809174873, + 42763139 + ], + "geometry": [ + { "lat": 40.8049012, "lon": -73.9188128 }, + { "lat": 40.8049851, "lon": -73.9187589 }, + { "lat": 40.8054307, "lon": -73.9184478 }, + { "lat": 40.8060405, "lon": -73.9180174 }, + { "lat": 40.8061235, "lon": -73.9179595 }, + { "lat": 40.8062016, "lon": -73.9179069 }, + { "lat": 40.8066993, "lon": -73.9175639 }, + { "lat": 40.8067308, "lon": -73.9175423 }, + { "lat": 40.8068230, "lon": -73.9174790 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "Saint Ann's Avenue", + "name:etymology:wikidata": "Q7586962", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "St Ann's", + "tiger:name_type": "Ave", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 586133577, + "bounds": { + "minlat": 40.8244096, + "minlon": -73.9099035, + "maxlat": 40.8244690, + "maxlon": -73.9097214 + }, + "nodes": [ + 7557648829, + 7557648828 + ], + "geometry": [ + { "lat": 40.8244690, "lon": -73.9099035 }, + { "lat": 40.8244096, "lon": -73.9097214 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 163rd Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 586133578, + "bounds": { + "minlat": 40.8428336, + "minlon": -73.9227699, + "maxlat": 40.8443660, + "maxlon": -73.9217440 + }, + "nodes": [ + 2907939269, + 12163757044, + 2912067297, + 12163757045, + 42780103 + ], + "geometry": [ + { "lat": 40.8428336, "lon": -73.9227699 }, + { "lat": 40.8430131, "lon": -73.9226623 }, + { "lat": 40.8431066, "lon": -73.9225973 }, + { "lat": 40.8431235, "lon": -73.9225859 }, + { "lat": 40.8443660, "lon": -73.9217440 } + ], + "tags": { + "highway": "residential", + "name": "Plimpton Avenue", + "name:etymology:wikidata": "Q5536449", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Plimpton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 586133579, + "bounds": { + "minlat": 40.8375421, + "minlon": -73.9108771, + "maxlat": 40.8376193, + "maxlon": -73.9106838 + }, + "nodes": [ + 2408359285, + 2408359287 + ], + "geometry": [ + { "lat": 40.8376193, "lon": -73.9108771 }, + { "lat": 40.8375421, "lon": -73.9106838 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 586133581, + "bounds": { + "minlat": 40.8385120, + "minlon": -73.9261910, + "maxlat": 40.8401760, + "maxlon": -73.9252680 + }, + "nodes": [ + 42734299, + 7594609001, + 42734294, + 13809338871, + 42734290 + ], + "geometry": [ + { "lat": 40.8401760, "lon": -73.9252680 }, + { "lat": 40.8396988, "lon": -73.9255271 }, + { "lat": 40.8392330, "lon": -73.9257800 }, + { "lat": 40.8385744, "lon": -73.9261554 }, + { "lat": 40.8385120, "lon": -73.9261910 } + ], + "tags": { + "highway": "tertiary", + "name": "Ogden Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ogden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 586133584, + "bounds": { + "minlat": 40.8745523, + "minlon": -73.9097899, + "maxlat": 40.8746718, + "maxlon": -73.9096352 + }, + "nodes": [ + 1544809891, + 42427926 + ], + "geometry": [ + { "lat": 40.8746718, "lon": -73.9097899 }, + { "lat": 40.8745523, "lon": -73.9096352 } + ], + "tags": { + "highway": "secondary", + "name": "West 225th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "225th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_left_1": "10463", + "tiger:zip_right": "10463", + "tiger:zip_right_1": "10463" + } +}, +{ + "type": "way", + "id": 586133600, + "bounds": { + "minlat": 40.8164026, + "minlon": -73.9168720, + "maxlat": 40.8164960, + "maxlon": -73.9157647 + }, + "nodes": [ + 6415815555, + 2912071213, + 13040495340, + 42746080 + ], + "geometry": [ + { "lat": 40.8164960, "lon": -73.9168720 }, + { "lat": 40.8164819, "lon": -73.9167227 }, + { "lat": 40.8164097, "lon": -73.9158504 }, + { "lat": 40.8164026, "lon": -73.9157647 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Westchester Avenue", + "name:etymology:wikidata": "Q17091379", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Westchester", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10459", + "tiger:zip_right": "10459", + "wikidata": "Q20979444", + "wikipedia": "en:Westchester Avenue" + } +}, +{ + "type": "way", + "id": 586133601, + "bounds": { + "minlat": 40.8142783, + "minlon": -73.9129572, + "maxlat": 40.8159582, + "maxlon": -73.9119923 + }, + "nodes": [ + 12197793917, + 42763174, + 5482340608, + 42733606, + 7283884372, + 10033563126, + 9903127481, + 2826899798 + ], + "geometry": [ + { "lat": 40.8159582, "lon": -73.9119923 }, + { "lat": 40.8154860, "lon": -73.9122600 }, + { "lat": 40.8152559, "lon": -73.9123928 }, + { "lat": 40.8149194, "lon": -73.9125871 }, + { "lat": 40.8147758, "lon": -73.9126681 }, + { "lat": 40.8144202, "lon": -73.9128747 }, + { "lat": 40.8143778, "lon": -73.9128994 }, + { "lat": 40.8142783, "lon": -73.9129572 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "name": "Saint Ann's Avenue", + "name:etymology:wikidata": "Q7586962", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "St Ann's", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 586133605, + "bounds": { + "minlat": 40.8269746, + "minlon": -73.9226586, + "maxlat": 40.8276672, + "maxlon": -73.9222778 + }, + "nodes": [ + 10126985424, + 4207863952, + 12162740300, + 5762096224, + 2408446206 + ], + "geometry": [ + { "lat": 40.8276672, "lon": -73.9222778 }, + { "lat": 40.8274492, "lon": -73.9223995 }, + { "lat": 40.8270702, "lon": -73.9226044 }, + { "lat": 40.8270457, "lon": -73.9226183 }, + { "lat": 40.8269746, "lon": -73.9226586 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "through|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 586133606, + "bounds": { + "minlat": 40.8309354, + "minlon": -73.9206693, + "maxlat": 40.8310217, + "maxlon": -73.9206191 + }, + "nodes": [ + 2408438463, + 10126985489 + ], + "geometry": [ + { "lat": 40.8310217, "lon": -73.9206191 }, + { "lat": 40.8309354, "lon": -73.9206693 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 586174709, + "bounds": { + "minlat": 40.7531933, + "minlon": -73.9069005, + "maxlat": 40.7532960, + "maxlon": -73.9066678 + }, + "nodes": [ + 7762260254, + 7758314403 + ], + "geometry": [ + { "lat": 40.7532960, "lon": -73.9069005 }, + { "lat": 40.7531933, "lon": -73.9066678 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 586174713, + "bounds": { + "minlat": 40.7753210, + "minlon": -73.9361399, + "maxlat": 40.7755939, + "maxlon": -73.9352860 + }, + "nodes": [ + 42811421, + 7756437613, + 42811423 + ], + "geometry": [ + { "lat": 40.7755939, "lon": -73.9361399 }, + { "lat": 40.7755655, "lon": -73.9360509 }, + { "lat": 40.7753210, "lon": -73.9352860 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "27th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 586350562, + "bounds": { + "minlat": 40.7130104, + "minlon": -74.0008309, + "maxlat": 40.7132641, + "maxlon": -73.9992205 + }, + "nodes": [ + 7476968854, + 7611215248, + 11394592616, + 11394592618, + 11394592617, + 11399612939, + 11394592599, + 530286753 + ], + "geometry": [ + { "lat": 40.7130104, "lon": -74.0008309 }, + { "lat": 40.7130274, "lon": -74.0007539 }, + { "lat": 40.7130954, "lon": -74.0004122 }, + { "lat": 40.7131109, "lon": -74.0003310 }, + { "lat": 40.7131285, "lon": -74.0002250 }, + { "lat": 40.7132460, "lon": -73.9993522 }, + { "lat": 40.7132545, "lon": -73.9992822 }, + { "lat": 40.7132641, "lon": -73.9992205 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "emergency": "designated", + "foot": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "10 mph", + "motor_vehicle": "private", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "old_name": "Chatham Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 586350564, + "bounds": { + "minlat": 40.7126739, + "minlon": -74.0025407, + "maxlat": 40.7130782, + "maxlon": -74.0008317 + }, + "nodes": [ + 7476968855, + 4158786461, + 1773055857, + 1773055858, + 4158789504, + 4158789505, + 4158789507, + 4158789495 + ], + "geometry": [ + { "lat": 40.7130782, "lon": -74.0008317 }, + { "lat": 40.7130530, "lon": -74.0009443 }, + { "lat": 40.7127720, "lon": -74.0022323 }, + { "lat": 40.7127590, "lon": -74.0022851 }, + { "lat": 40.7127380, "lon": -74.0023581 }, + { "lat": 40.7127146, "lon": -74.0024316 }, + { "lat": 40.7126900, "lon": -74.0024981 }, + { "lat": 40.7126739, "lon": -74.0025407 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "emergency": "designated", + "foot": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "10 mph", + "motor_vehicle": "private", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "old_name": "Chatham Street", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 586390345, + "bounds": { + "minlat": 40.7221183, + "minlon": -73.9134416, + "maxlat": 40.7222843, + "maxlon": -73.9133287 + }, + "nodes": [ + 42821476, + 4396956978 + ], + "geometry": [ + { "lat": 40.7222843, "lon": -73.9134416 }, + { "lat": 40.7221183, "lon": -73.9133287 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Rust Street" + } +}, +{ + "type": "way", + "id": 586390346, + "bounds": { + "minlat": 40.7496814, + "minlon": -73.9437075, + "maxlat": 40.7506555, + "maxlon": -73.9428340 + }, + "nodes": [ + 42818131, + 9982745693, + 7222195531, + 6779904968, + 42920894 + ], + "geometry": [ + { "lat": 40.7496814, "lon": -73.9437075 }, + { "lat": 40.7497509, "lon": -73.9436460 }, + { "lat": 40.7500388, "lon": -73.9433914 }, + { "lat": 40.7505402, "lon": -73.9429359 }, + { "lat": 40.7506555, "lon": -73.9428340 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "23rd Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 586429546, + "bounds": { + "minlat": 40.8781669, + "minlon": -73.9488097, + "maxlat": 40.8782233, + "maxlon": -73.9487234 + }, + "nodes": [ + 5603140248, + 5603140249, + 103221393 + ], + "geometry": [ + { "lat": 40.8782233, "lon": -73.9487234 }, + { "lat": 40.8781961, "lon": -73.9487660 }, + { "lat": 40.8781669, "lon": -73.9488097 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Dyckman Hill Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 586429548, + "bounds": { + "minlat": 40.8779677, + "minlon": -73.9485823, + "maxlat": 40.8780004, + "maxlon": -73.9484963 + }, + "nodes": [ + 530475935, + 5603140250 + ], + "geometry": [ + { "lat": 40.8779677, "lon": -73.9485823 }, + { "lat": 40.8780004, "lon": -73.9484963 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Dyckman Hill Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 586429549, + "bounds": { + "minlat": 40.8780004, + "minlon": -73.9484963, + "maxlat": 40.8809959, + "maxlon": -73.9461666 + }, + "nodes": [ + 5603140250, + 103221405, + 103221406, + 530475942, + 530475949, + 103221408, + 2214758039, + 103221410, + 103221411, + 103221412, + 103221415, + 103221417, + 13816161553, + 13816161554, + 103221418, + 13816161555, + 103221419, + 13816161561, + 103220889 + ], + "geometry": [ + { "lat": 40.8780004, "lon": -73.9484963 }, + { "lat": 40.8782050, "lon": -73.9479843 }, + { "lat": 40.8783163, "lon": -73.9478474 }, + { "lat": 40.8786456, "lon": -73.9476496 }, + { "lat": 40.8789438, "lon": -73.9474395 }, + { "lat": 40.8791777, "lon": -73.9471827 }, + { "lat": 40.8793513, "lon": -73.9468810 }, + { "lat": 40.8796087, "lon": -73.9466686 }, + { "lat": 40.8798843, "lon": -73.9465163 }, + { "lat": 40.8800636, "lon": -73.9464347 }, + { "lat": 40.8802423, "lon": -73.9463644 }, + { "lat": 40.8804918, "lon": -73.9462770 }, + { "lat": 40.8806696, "lon": -73.9462911 }, + { "lat": 40.8807849, "lon": -73.9462841 }, + { "lat": 40.8808694, "lon": -73.9462667 }, + { "lat": 40.8809209, "lon": -73.9462411 }, + { "lat": 40.8809576, "lon": -73.9462117 }, + { "lat": 40.8809790, "lon": -73.9461901 }, + { "lat": 40.8809959, "lon": -73.9461666 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "highway": "unclassified", + "name": "Dyckman Hill Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 586429554, + "bounds": { + "minlat": 40.8773580, + "minlon": -73.9476513, + "maxlat": 40.8774627, + "maxlon": -73.9476443 + }, + "nodes": [ + 103220871, + 11860299702, + 5603140267 + ], + "geometry": [ + { "lat": 40.8773580, "lon": -73.9476488 }, + { "lat": 40.8774261, "lon": -73.9476513 }, + { "lat": 40.8774627, "lon": -73.9476443 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "highway": "unclassified", + "lanes": "2", + "layer": "1", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 586429555, + "bounds": { + "minlat": 40.8810083, + "minlon": -73.9461929, + "maxlat": 40.8959737, + "maxlon": -73.9370136 + }, + "nodes": [ + 13816161552, + 13816161558, + 13816161560, + 13816161559, + 13816161550, + 13816161551, + 13816161549, + 103220891, + 103220893, + 103220895, + 103220896, + 103220898, + 103220900, + 1424873036, + 1424873037, + 1424873038, + 1424873039, + 103220902, + 103220906, + 103220908, + 103220910, + 103220913, + 103220916, + 103220918, + 103220920, + 103220922, + 1424873040, + 1424873041, + 103220924, + 103220926, + 103220928, + 1424873042, + 1424873043, + 1424873044, + 103220930, + 103220933, + 103220935, + 103220938, + 103220940, + 103220942, + 103220944, + 103220946, + 103220948, + 103220950, + 1424873045, + 1424873046, + 1424873047, + 103220952 + ], + "geometry": [ + { "lat": 40.8810083, "lon": -73.9461003 }, + { "lat": 40.8810117, "lon": -73.9461454 }, + { "lat": 40.8810210, "lon": -73.9461704 }, + { "lat": 40.8810304, "lon": -73.9461861 }, + { "lat": 40.8810414, "lon": -73.9461929 }, + { "lat": 40.8810797, "lon": -73.9461909 }, + { "lat": 40.8811884, "lon": -73.9461597 }, + { "lat": 40.8812469, "lon": -73.9461360 }, + { "lat": 40.8813240, "lon": -73.9461090 }, + { "lat": 40.8814217, "lon": -73.9460932 }, + { "lat": 40.8815388, "lon": -73.9460748 }, + { "lat": 40.8819025, "lon": -73.9459171 }, + { "lat": 40.8832952, "lon": -73.9444514 }, + { "lat": 40.8835860, "lon": -73.9440853 }, + { "lat": 40.8837325, "lon": -73.9438457 }, + { "lat": 40.8837824, "lon": -73.9437743 }, + { "lat": 40.8841457, "lon": -73.9435073 }, + { "lat": 40.8845410, "lon": -73.9432294 }, + { "lat": 40.8847062, "lon": -73.9431264 }, + { "lat": 40.8849579, "lon": -73.9429692 }, + { "lat": 40.8855484, "lon": -73.9426953 }, + { "lat": 40.8860279, "lon": -73.9426413 }, + { "lat": 40.8862951, "lon": -73.9425649 }, + { "lat": 40.8865480, "lon": -73.9424909 }, + { "lat": 40.8869548, "lon": -73.9423679 }, + { "lat": 40.8874486, "lon": -73.9420663 }, + { "lat": 40.8877195, "lon": -73.9418511 }, + { "lat": 40.8881574, "lon": -73.9415693 }, + { "lat": 40.8885816, "lon": -73.9414095 }, + { "lat": 40.8888908, "lon": -73.9412405 }, + { "lat": 40.8892437, "lon": -73.9410552 }, + { "lat": 40.8896993, "lon": -73.9407769 }, + { "lat": 40.8904590, "lon": -73.9402830 }, + { "lat": 40.8908903, "lon": -73.9399960 }, + { "lat": 40.8910279, "lon": -73.9399258 }, + { "lat": 40.8913505, "lon": -73.9397192 }, + { "lat": 40.8916663, "lon": -73.9395163 }, + { "lat": 40.8920489, "lon": -73.9393038 }, + { "lat": 40.8922531, "lon": -73.9392000 }, + { "lat": 40.8923303, "lon": -73.9391632 }, + { "lat": 40.8926425, "lon": -73.9391374 }, + { "lat": 40.8929217, "lon": -73.9391123 }, + { "lat": 40.8933691, "lon": -73.9389095 }, + { "lat": 40.8941853, "lon": -73.9383356 }, + { "lat": 40.8948369, "lon": -73.9379457 }, + { "lat": 40.8951420, "lon": -73.9376419 }, + { "lat": 40.8956267, "lon": -73.9372584 }, + { "lat": 40.8959737, "lon": -73.9370136 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "lanes": "2", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 586820536, + "bounds": { + "minlat": 40.7521080, + "minlon": -73.9442350, + "maxlat": 40.7525506, + "maxlon": -73.9438228 + }, + "nodes": [ + 42825887, + 7209576402, + 7768243595, + 42793624 + ], + "geometry": [ + { "lat": 40.7525506, "lon": -73.9438228 }, + { "lat": 40.7524993, "lon": -73.9438706 }, + { "lat": 40.7521557, "lon": -73.9441906 }, + { "lat": 40.7521080, "lon": -73.9442350 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "21st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 586820537, + "bounds": { + "minlat": 40.7530594, + "minlon": -73.9214902, + "maxlat": 40.7532864, + "maxlon": -73.9204653 + }, + "nodes": [ + 42920473, + 8088564394, + 13746022282, + 8088564393, + 42845872 + ], + "geometry": [ + { "lat": 40.7530594, "lon": -73.9214902 }, + { "lat": 40.7530855, "lon": -73.9213800 }, + { "lat": 40.7532466, "lon": -73.9206542 }, + { "lat": 40.7532657, "lon": -73.9205683 }, + { "lat": 40.7532864, "lon": -73.9204653 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 586820538, + "bounds": { + "minlat": 40.7540215, + "minlon": -73.9205124, + "maxlat": 40.7543973, + "maxlon": -73.9197165 + }, + "nodes": [ + 42900657, + 8593804515, + 10774472422, + 3569401957, + 42920467 + ], + "geometry": [ + { "lat": 40.7540215, "lon": -73.9197165 }, + { "lat": 40.7540549, "lon": -73.9197897 }, + { "lat": 40.7542061, "lon": -73.9201212 }, + { "lat": 40.7543681, "lon": -73.9204544 }, + { "lat": 40.7543973, "lon": -73.9205124 } + ], + "tags": { + "highway": "tertiary", + "name": "35th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 586820551, + "bounds": { + "minlat": 40.7154010, + "minlon": -73.9269260, + "maxlat": 40.7164033, + "maxlon": -73.9230895 + }, + "nodes": [ + 42538044, + 5482675482, + 7706126113, + 7706126115, + 5482675490, + 10840566514, + 42509758 + ], + "geometry": [ + { "lat": 40.7164033, "lon": -73.9230895 }, + { "lat": 40.7161722, "lon": -73.9239945 }, + { "lat": 40.7161524, "lon": -73.9240699 }, + { "lat": 40.7159285, "lon": -73.9249207 }, + { "lat": 40.7157297, "lon": -73.9256766 }, + { "lat": 40.7154173, "lon": -73.9268471 }, + { "lat": 40.7154010, "lon": -73.9269260 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Grand Street", + "sidewalk:both": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 586820552, + "bounds": { + "minlat": 40.7091725, + "minlon": -73.9605191, + "maxlat": 40.7093113, + "maxlon": -73.9601115 + }, + "nodes": [ + 5606446477, + 10689802506 + ], + "geometry": [ + { "lat": 40.7091725, "lon": -73.9601115 }, + { "lat": 40.7093113, "lon": -73.9605191 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 586820573, + "bounds": { + "minlat": 40.7080869, + "minlon": -73.9566830, + "maxlat": 40.7086740, + "maxlon": -73.9563050 + }, + "nodes": [ + 9768167577, + 9768167590, + 42514949 + ], + "geometry": [ + { "lat": 40.7080869, "lon": -73.9566830 }, + { "lat": 40.7086264, "lon": -73.9563371 }, + { "lat": 40.7086740, "lon": -73.9563050 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 587038040, + "bounds": { + "minlat": 40.7336238, + "minlon": -73.9214850, + "maxlat": 40.7336586, + "maxlon": -73.9214412 + }, + "nodes": [ + 5607992547, + 597311388 + ], + "geometry": [ + { "lat": 40.7336586, "lon": -73.9214850 }, + { "lat": 40.7336238, "lon": -73.9214412 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov": "contraflow_lane", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 587038046, + "bounds": { + "minlat": 40.7361737, + "minlon": -73.9749050, + "maxlat": 40.7373672, + "maxlon": -73.9743448 + }, + "nodes": [ + 370913767, + 4244366903, + 370913768, + 9141034849, + 370913769, + 9141034850, + 370913771, + 9141034851, + 9141034852, + 370913772, + 370913758 + ], + "geometry": [ + { "lat": 40.7361737, "lon": -73.9749050 }, + { "lat": 40.7362389, "lon": -73.9748979 }, + { "lat": 40.7363553, "lon": -73.9748754 }, + { "lat": 40.7364478, "lon": -73.9748532 }, + { "lat": 40.7365701, "lon": -73.9748175 }, + { "lat": 40.7366712, "lon": -73.9747839 }, + { "lat": 40.7367878, "lon": -73.9747370 }, + { "lat": 40.7368906, "lon": -73.9746825 }, + { "lat": 40.7370015, "lon": -73.9746186 }, + { "lat": 40.7370895, "lon": -73.9745601 }, + { "lat": 40.7373672, "lon": -73.9743448 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "none|none|East 42 Street;East 34 Street;Midtown Tunnel;Ferry Landing;Heliport", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxheight": "12'1\"", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "South Street Viaduct", + "oneway": "yes", + "ref": "FDR", + "surface": "concrete", + "turn:lanes": "none|none|through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 587038047, + "bounds": { + "minlat": 40.7397291, + "minlon": -73.9730944, + "maxlat": 40.7406720, + "maxlon": -73.9729042 + }, + "nodes": [ + 370912817, + 9142608647, + 589100393 + ], + "geometry": [ + { "lat": 40.7406720, "lon": -73.9729042 }, + { "lat": 40.7399289, "lon": -73.9730467 }, + { "lat": 40.7397291, "lon": -73.9730944 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 587038048, + "bounds": { + "minlat": 40.7430812, + "minlon": -73.9722255, + "maxlat": 40.7431778, + "maxlon": -73.9720697 + }, + "nodes": [ + 42445392, + 4412043541 + ], + "geometry": [ + { "lat": 40.7431778, "lon": -73.9720697 }, + { "lat": 40.7430812, "lon": -73.9722255 } + ], + "tags": { + "highway": "primary", + "lanes": "1", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "slight_left;slight_right" + } +}, +{ + "type": "way", + "id": 587038049, + "bounds": { + "minlat": 40.7119884, + "minlon": -74.0081342, + "maxlat": 40.7125440, + "maxlon": -74.0076683 + }, + "nodes": [ + 2821304138, + 6456908262, + 8768258128, + 4742692789, + 4742692790, + 4742692786, + 272195270 + ], + "geometry": [ + { "lat": 40.7125440, "lon": -74.0076683 }, + { "lat": 40.7124645, "lon": -74.0077381 }, + { "lat": 40.7124155, "lon": -74.0077799 }, + { "lat": 40.7122694, "lon": -74.0078971 }, + { "lat": 40.7121444, "lon": -74.0080006 }, + { "lat": 40.7120791, "lon": -74.0080532 }, + { "lat": 40.7119884, "lon": -74.0081342 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-18:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 587038050, + "bounds": { + "minlat": 40.7125773, + "minlon": -74.0079693, + "maxlat": 40.7126792, + "maxlon": -74.0077424 + }, + "nodes": [ + 10039501934, + 6456908260, + 9148457110, + 12311576431 + ], + "geometry": [ + { "lat": 40.7125773, "lon": -74.0077424 }, + { "lat": 40.7125955, "lon": -74.0077820 }, + { "lat": 40.7126154, "lon": -74.0078270 }, + { "lat": 40.7126792, "lon": -74.0079693 } + ], + "tags": { + "cycleway:both": "lane", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Park Place", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 플레이스", + "name:ru": "Парк-Плейс", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "right" + } +}, +{ + "type": "way", + "id": 587038051, + "bounds": { + "minlat": 40.7132501, + "minlon": -74.0092488, + "maxlat": 40.7133659, + "maxlon": -74.0091603 + }, + "nodes": [ + 42430004, + 8279851449, + 10689664920 + ], + "geometry": [ + { "lat": 40.7132501, "lon": -74.0092488 }, + { "lat": 40.7133297, "lon": -74.0091879 }, + { "lat": 40.7133659, "lon": -74.0091603 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 587038080, + "bounds": { + "minlat": 40.7499184, + "minlon": -73.9389617, + "maxlat": 40.7499391, + "maxlon": -73.9389239 + }, + "nodes": [ + 592643527, + 4966315015 + ], + "geometry": [ + { "lat": 40.7499391, "lon": -73.9389617 }, + { "lat": 40.7499184, "lon": -73.9389239 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "name": "Queensboro Plaza", + "oneway": "yes", + "ref": "NY 25" + } +}, +{ + "type": "way", + "id": 587038081, + "bounds": { + "minlat": 40.7504574, + "minlon": -73.9872874, + "maxlat": 40.7507992, + "maxlon": -73.9870370 + }, + "nodes": [ + 42430308, + 3857366815, + 5607992553 + ], + "geometry": [ + { "lat": 40.7504574, "lon": -73.9872874 }, + { "lat": 40.7505152, "lon": -73.9872453 }, + { "lat": 40.7507992, "lon": -73.9870370 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 587038082, + "bounds": { + "minlat": 40.7602748, + "minlon": -73.9683304, + "maxlat": 40.7605926, + "maxlon": -73.9675757 + }, + "nodes": [ + 5607992554, + 11043182109, + 10125255943, + 42432856 + ], + "geometry": [ + { "lat": 40.7605926, "lon": -73.9683304 }, + { "lat": 40.7604434, "lon": -73.9679763 }, + { "lat": 40.7603171, "lon": -73.9676704 }, + { "lat": 40.7602748, "lon": -73.9675757 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 587038129, + "bounds": { + "minlat": 40.7455275, + "minlon": -73.9781270, + "maxlat": 40.7457391, + "maxlon": -73.9776389 + }, + "nodes": [ + 9971314378, + 12187343184, + 3932847287, + 42445378 + ], + "geometry": [ + { "lat": 40.7455275, "lon": -73.9776389 }, + { "lat": 40.7456443, "lon": -73.9779234 }, + { "lat": 40.7456711, "lon": -73.9779888 }, + { "lat": 40.7457391, "lon": -73.9781270 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated|yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "||right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 587038169, + "bounds": { + "minlat": 40.7512566, + "minlon": -73.9431090, + "maxlat": 40.7516275, + "maxlon": -73.9422771 + }, + "nodes": [ + 276069438, + 7768243600, + 8340995845, + 4457118193, + 42920892 + ], + "geometry": [ + { "lat": 40.7516275, "lon": -73.9431090 }, + { "lat": 40.7515976, "lon": -73.9430417 }, + { "lat": 40.7513392, "lon": -73.9424614 }, + { "lat": 40.7512933, "lon": -73.9423603 }, + { "lat": 40.7512566, "lon": -73.9422771 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "name": "Queens Plaza South", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through;right" + } +}, +{ + "type": "way", + "id": 587038170, + "bounds": { + "minlat": 40.7500865, + "minlon": -73.9445249, + "maxlat": 40.7516275, + "maxlon": -73.9431090 + }, + "nodes": [ + 276069438, + 7768243592, + 5487864349, + 9982745698, + 9982745699, + 42818126 + ], + "geometry": [ + { "lat": 40.7516275, "lon": -73.9431090 }, + { "lat": 40.7515630, "lon": -73.9431679 }, + { "lat": 40.7513628, "lon": -73.9433505 }, + { "lat": 40.7501986, "lon": -73.9444218 }, + { "lat": 40.7501604, "lon": -73.9444565 }, + { "lat": 40.7500865, "lon": -73.9445249 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "22nd Street", + "name_1": "Harry Suna Place", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 587038171, + "bounds": { + "minlat": 40.7530370, + "minlon": -73.9414060, + "maxlat": 40.7534590, + "maxlon": -73.9406160 + }, + "nodes": [ + 42895308, + 7781294887, + 8699111915, + 42895311 + ], + "geometry": [ + { "lat": 40.7534590, "lon": -73.9414060 }, + { "lat": 40.7534268, "lon": -73.9413453 }, + { "lat": 40.7530892, "lon": -73.9407138 }, + { "lat": 40.7530370, "lon": -73.9406160 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lane_markings": "no", + "lit": "yes", + "name": "41st Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "41st", + "tiger:name_type": "Ave", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 587038172, + "bounds": { + "minlat": 40.7557640, + "minlon": -73.9126108, + "maxlat": 40.7559709, + "maxlon": -73.9121680 + }, + "nodes": [ + 2402842566, + 8593793979, + 3570249802, + 42883022 + ], + "geometry": [ + { "lat": 40.7559709, "lon": -73.9126108 }, + { "lat": 40.7559387, "lon": -73.9125417 }, + { "lat": 40.7558262, "lon": -73.9123010 }, + { "lat": 40.7557640, "lon": -73.9121680 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 587038173, + "bounds": { + "minlat": 40.7675780, + "minlon": -73.9361838, + "maxlat": 40.7676918, + "maxlon": -73.9359490 + }, + "nodes": [ + 42826930, + 2796727177 + ], + "geometry": [ + { "lat": 40.7675780, "lon": -73.9359490 }, + { "lat": 40.7676918, "lon": -73.9361838 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Broadway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 587038174, + "bounds": { + "minlat": 40.7564301, + "minlon": -73.9473115, + "maxlat": 40.7565182, + "maxlon": -73.9472123 + }, + "nodes": [ + 42826825, + 2629162213 + ], + "geometry": [ + { "lat": 40.7565182, "lon": -73.9472123 }, + { "lat": 40.7564301, "lon": -73.9473115 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Vernon Boulevard" + } +}, +{ + "type": "way", + "id": 587038175, + "bounds": { + "minlat": 40.7591380, + "minlon": -73.9653081, + "maxlat": 40.7593168, + "maxlon": -73.9648774 + }, + "nodes": [ + 42432861, + 6176390174, + 4215909068 + ], + "geometry": [ + { "lat": 40.7593168, "lon": -73.9653081 }, + { "lat": 40.7592531, "lon": -73.9651546 }, + { "lat": 40.7591380, "lon": -73.9648774 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:backward": "3", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 587038176, + "bounds": { + "minlat": 40.7511112, + "minlon": -73.9451879, + "maxlat": 40.7521080, + "maxlon": -73.9442350 + }, + "nodes": [ + 42804992, + 8334173137, + 42825896, + 7768202156, + 42793624 + ], + "geometry": [ + { "lat": 40.7511112, "lon": -73.9451879 }, + { "lat": 40.7511379, "lon": -73.9451632 }, + { "lat": 40.7517850, "lon": -73.9445550 }, + { "lat": 40.7520457, "lon": -73.9442967 }, + { "lat": 40.7521080, "lon": -73.9442350 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "21st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 587061815, + "bounds": { + "minlat": 40.8002957, + "minlon": -73.9446239, + "maxlat": 40.8022308, + "maxlon": -73.9432068 + }, + "nodes": [ + 9178841525, + 10167086813, + 42446164, + 10167086812, + 10167137520, + 42439486, + 10167137521, + 10167137527, + 42435211, + 10127369888, + 4207764474 + ], + "geometry": [ + { "lat": 40.8002957, "lon": -73.9446239 }, + { "lat": 40.8006104, "lon": -73.9443961 }, + { "lat": 40.8006644, "lon": -73.9443571 }, + { "lat": 40.8007229, "lon": -73.9443145 }, + { "lat": 40.8012384, "lon": -73.9439389 }, + { "lat": 40.8012913, "lon": -73.9439003 }, + { "lat": 40.8013494, "lon": -73.9438571 }, + { "lat": 40.8018618, "lon": -73.9434795 }, + { "lat": 40.8019202, "lon": -73.9434351 }, + { "lat": 40.8019779, "lon": -73.9433927 }, + { "lat": 40.8022308, "lon": -73.9432068 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 587061820, + "bounds": { + "minlat": 40.7999781, + "minlon": -73.9464620, + "maxlat": 40.8006650, + "maxlon": -73.9448411 + }, + "nodes": [ + 42446161, + 10167086805, + 10167137548, + 42437174 + ], + "geometry": [ + { "lat": 40.7999781, "lon": -73.9448411 }, + { "lat": 40.8000326, "lon": -73.9449698 }, + { "lat": 40.8006115, "lon": -73.9463358 }, + { "lat": 40.8006650, "lon": -73.9464620 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "East 116th Street", + "name:ru": "Восточная 116-я стрит", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 587061842, + "bounds": { + "minlat": 40.7970162, + "minlon": -73.9400272, + "maxlat": 40.7979386, + "maxlon": -73.9377697 + }, + "nodes": [ + 42443085, + 10170834266, + 4971119415, + 10166326201, + 42450071 + ], + "geometry": [ + { "lat": 40.7970162, "lon": -73.9377697 }, + { "lat": 40.7970736, "lon": -73.9379101 }, + { "lat": 40.7971633, "lon": -73.9381296 }, + { "lat": 40.7978877, "lon": -73.9399026 }, + { "lat": 40.7979386, "lon": -73.9400272 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 116th Street", + "name:ru": "Восточная 116-я стрит", + "surface": "asphalt", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 587061843, + "bounds": { + "minlat": 40.8030279, + "minlon": -73.9379207, + "maxlat": 40.8037081, + "maxlon": -73.9363134 + }, + "nodes": [ + 42438772, + 9726158595, + 10169411235, + 42438774 + ], + "geometry": [ + { "lat": 40.8037081, "lon": -73.9379207 }, + { "lat": 40.8036669, "lon": -73.9378234 }, + { "lat": 40.8030893, "lon": -73.9364586 }, + { "lat": 40.8030279, "lon": -73.9363134 } + ], + "tags": { + "highway": "residential", + "name": "East 124th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 587061844, + "bounds": { + "minlat": 40.8030279, + "minlon": -73.9363134, + "maxlat": 40.8037065, + "maxlon": -73.9358291 + }, + "nodes": [ + 42438774, + 10169411233, + 13239344382, + 4980798214, + 42444458 + ], + "geometry": [ + { "lat": 40.8030279, "lon": -73.9363134 }, + { "lat": 40.8030905, "lon": -73.9362687 }, + { "lat": 40.8032374, "lon": -73.9361640 }, + { "lat": 40.8036126, "lon": -73.9358965 }, + { "lat": 40.8037065, "lon": -73.9358291 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||right", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 587061845, + "bounds": { + "minlat": 40.7658448, + "minlon": -73.9634512, + "maxlat": 40.7659377, + "maxlon": -73.9633856 + }, + "nodes": [ + 5542680310, + 10166860019, + 42447235 + ], + "geometry": [ + { "lat": 40.7658448, "lon": -73.9634512 }, + { "lat": 40.7658784, "lon": -73.9634276 }, + { "lat": 40.7659377, "lon": -73.9633856 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left||||", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 587061846, + "bounds": { + "minlat": 40.7678043, + "minlon": -73.9606044, + "maxlat": 40.7697470, + "maxlon": -73.9559988 + }, + "nodes": [ + 42436486, + 3562587900, + 3562587901, + 42436489, + 6176390181, + 3562587904, + 3562587905, + 6263083535, + 42436492 + ], + "geometry": [ + { "lat": 40.7697470, "lon": -73.9606044 }, + { "lat": 40.7696884, "lon": -73.9604655 }, + { "lat": 40.7688575, "lon": -73.9584982 }, + { "lat": 40.7688122, "lon": -73.9583845 }, + { "lat": 40.7687653, "lon": -73.9582755 }, + { "lat": 40.7687509, "lon": -73.9582391 }, + { "lat": 40.7678628, "lon": -73.9561353 }, + { "lat": 40.7678476, "lon": -73.9561016 }, + { "lat": 40.7678043, "lon": -73.9559988 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "East 72nd Street", + "name:ru": "Восточная 72-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 587061847, + "bounds": { + "minlat": 40.8023524, + "minlon": -73.9452302, + "maxlat": 40.8032304, + "maxlon": -73.9446222 + }, + "nodes": [ + 42429552, + 10170875020, + 10170875025, + 42435207, + 10170875026, + 11807690972 + ], + "geometry": [ + { "lat": 40.8032304, "lon": -73.9446222 }, + { "lat": 40.8031842, "lon": -73.9446536 }, + { "lat": 40.8026698, "lon": -73.9450033 }, + { "lat": 40.8026041, "lon": -73.9450492 }, + { "lat": 40.8025396, "lon": -73.9450946 }, + { "lat": 40.8023524, "lon": -73.9452302 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "oneway:bicycle": "no", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 587061848, + "bounds": { + "minlat": 40.8132384, + "minlon": -73.9304233, + "maxlat": 40.8133235, + "maxlon": -73.9303513 + }, + "nodes": [ + 529280909, + 5214547513 + ], + "geometry": [ + { "lat": 40.8133235, "lon": -73.9303513 }, + { "lat": 40.8132384, "lon": -73.9304233 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 587061852, + "bounds": { + "minlat": 40.8523960, + "minlon": -73.9207116, + "maxlat": 40.8543602, + "maxlon": -73.9188729 + }, + "nodes": [ + 60919839, + 7899202000, + 60919841, + 60919842 + ], + "geometry": [ + { "lat": 40.8523960, "lon": -73.9207116 }, + { "lat": 40.8540030, "lon": -73.9191993 }, + { "lat": 40.8541807, "lon": -73.9190339 }, + { "lat": 40.8543602, "lon": -73.9188729 } + ], + "tags": { + "destination:lanes": "||Fordham Road;University Heights Bridge;West 179th Street", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 587061853, + "bounds": { + "minlat": 40.8634445, + "minlon": -73.9110818, + "maxlat": 40.8708304, + "maxlon": -73.9072834 + }, + "nodes": [ + 10899381407, + 42749275, + 7898958227, + 60915384, + 7898958278, + 7898958236, + 60915383, + 60915382, + 7898998220, + 7898958228, + 12058568481, + 42749272, + 12058568480, + 7898958270, + 60915381, + 579655095 + ], + "geometry": [ + { "lat": 40.8708304, "lon": -73.9072834 }, + { "lat": 40.8691780, "lon": -73.9080481 }, + { "lat": 40.8673175, "lon": -73.9089122 }, + { "lat": 40.8652436, "lon": -73.9098727 }, + { "lat": 40.8650378, "lon": -73.9099697 }, + { "lat": 40.8648321, "lon": -73.9100692 }, + { "lat": 40.8646300, "lon": -73.9101808 }, + { "lat": 40.8644303, "lon": -73.9102995 }, + { "lat": 40.8642377, "lon": -73.9104231 }, + { "lat": 40.8640493, "lon": -73.9105587 }, + { "lat": 40.8638983, "lon": -73.9106734 }, + { "lat": 40.8638051, "lon": -73.9107508 }, + { "lat": 40.8637136, "lon": -73.9108287 }, + { "lat": 40.8636219, "lon": -73.9109133 }, + { "lat": 40.8635326, "lon": -73.9109954 }, + { "lat": 40.8634445, "lon": -73.9110818 } + ], + "tags": { + "destination:lanes": "none|none|none;West Fordham Road;University Heights Bridge", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 587061854, + "bounds": { + "minlat": 40.7434569, + "minlon": -73.9881911, + "maxlat": 40.7440672, + "maxlon": -73.9877451 + }, + "nodes": [ + 42434800, + 10167162583, + 13706321901, + 13706254599, + 3009534478, + 42429874 + ], + "geometry": [ + { "lat": 40.7440672, "lon": -73.9877451 }, + { "lat": 40.7440048, "lon": -73.9877901 }, + { "lat": 40.7437823, "lon": -73.9879523 }, + { "lat": 40.7435613, "lon": -73.9881135 }, + { "lat": 40.7435093, "lon": -73.9881514 }, + { "lat": 40.7434569, "lon": -73.9881911 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 587061855, + "bounds": { + "minlat": 40.7774164, + "minlon": -73.9816100, + "maxlat": 40.7786010, + "maxlon": -73.9787995 + }, + "nodes": [ + 42443336, + 9668787079, + 3235708627, + 6207264908 + ], + "geometry": [ + { "lat": 40.7774164, "lon": -73.9787995 }, + { "lat": 40.7774687, "lon": -73.9789236 }, + { "lat": 40.7785561, "lon": -73.9815075 }, + { "lat": 40.7786010, "lon": -73.9816100 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "name_1": "West 72 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 587061856, + "bounds": { + "minlat": 40.7724555, + "minlon": -73.9670325, + "maxlat": 40.7769914, + "maxlon": -73.9637197 + }, + "nodes": [ + 42440397, + 1740694093, + 5402554235, + 7094731936, + 42436911, + 7094731940, + 7094731953, + 42446455, + 7094731932, + 5402554239, + 7094731968, + 42454679, + 7094731963, + 7785624682, + 42430050, + 7785624655, + 7785624630, + 42439553, + 7785624638, + 7785624626, + 42438788, + 7785624628, + 3278932287, + 42436475 + ], + "geometry": [ + { "lat": 40.7769914, "lon": -73.9637197 }, + { "lat": 40.7769073, "lon": -73.9637811 }, + { "lat": 40.7767589, "lon": -73.9638895 }, + { "lat": 40.7763698, "lon": -73.9641737 }, + { "lat": 40.7763096, "lon": -73.9642177 }, + { "lat": 40.7762518, "lon": -73.9642599 }, + { "lat": 40.7757337, "lon": -73.9646383 }, + { "lat": 40.7756852, "lon": -73.9646737 }, + { "lat": 40.7756407, "lon": -73.9647062 }, + { "lat": 40.7752787, "lon": -73.9649706 }, + { "lat": 40.7751049, "lon": -73.9650975 }, + { "lat": 40.7750439, "lon": -73.9651421 }, + { "lat": 40.7749904, "lon": -73.9651811 }, + { "lat": 40.7744634, "lon": -73.9655660 }, + { "lat": 40.7744056, "lon": -73.9656083 }, + { "lat": 40.7743542, "lon": -73.9656458 }, + { "lat": 40.7738311, "lon": -73.9660279 }, + { "lat": 40.7737745, "lon": -73.9660692 }, + { "lat": 40.7737297, "lon": -73.9661019 }, + { "lat": 40.7731947, "lon": -73.9664926 }, + { "lat": 40.7731391, "lon": -73.9665333 }, + { "lat": 40.7730823, "lon": -73.9665764 }, + { "lat": 40.7725558, "lon": -73.9669592 }, + { "lat": 40.7724555, "lon": -73.9670325 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "lanes:psv": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motorcar": "yes", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 587061857, + "bounds": { + "minlat": 40.7763336, + "minlon": -73.9627682, + "maxlat": 40.7765956, + "maxlon": -73.9621347 + }, + "nodes": [ + 9906826295, + 9906826296, + 9906826294, + 42446021 + ], + "geometry": [ + { "lat": 40.7765956, "lon": -73.9627682 }, + { "lat": 40.7765023, "lon": -73.9625414 }, + { "lat": 40.7763766, "lon": -73.9622361 }, + { "lat": 40.7763336, "lon": -73.9621347 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 587061858, + "bounds": { + "minlat": 40.7717833, + "minlon": -73.9654340, + "maxlat": 40.7763336, + "maxlon": -73.9621347 + }, + "nodes": [ + 42436477, + 4207313542, + 10167967055, + 42438791, + 10167967051, + 10173250678, + 42439556, + 10173250677, + 10173250691, + 42430052, + 10173250692, + 10173084337, + 42446013, + 10122937147, + 10122937146, + 42446016, + 10122937143, + 10122937141, + 42436913, + 10122937142, + 10173330839, + 42446021 + ], + "geometry": [ + { "lat": 40.7717833, "lon": -73.9654340 }, + { "lat": 40.7718850, "lon": -73.9653595 }, + { "lat": 40.7724118, "lon": -73.9649735 }, + { "lat": 40.7724629, "lon": -73.9649361 }, + { "lat": 40.7725253, "lon": -73.9648908 }, + { "lat": 40.7730484, "lon": -73.9645108 }, + { "lat": 40.7731008, "lon": -73.9644727 }, + { "lat": 40.7731593, "lon": -73.9644301 }, + { "lat": 40.7736829, "lon": -73.9640487 }, + { "lat": 40.7737351, "lon": -73.9640105 }, + { "lat": 40.7738003, "lon": -73.9639648 }, + { "lat": 40.7743241, "lon": -73.9635988 }, + { "lat": 40.7743793, "lon": -73.9635603 }, + { "lat": 40.7744420, "lon": -73.9635163 }, + { "lat": 40.7749549, "lon": -73.9631370 }, + { "lat": 40.7750204, "lon": -73.9630908 }, + { "lat": 40.7750705, "lon": -73.9630540 }, + { "lat": 40.7755864, "lon": -73.9626748 }, + { "lat": 40.7756416, "lon": -73.9626345 }, + { "lat": 40.7757100, "lon": -73.9625851 }, + { "lat": 40.7762403, "lon": -73.9622021 }, + { "lat": 40.7763336, "lon": -73.9621347 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 587061859, + "bounds": { + "minlat": 40.8137020, + "minlon": -73.9309935, + "maxlat": 40.8140737, + "maxlon": -73.9308670 + }, + "nodes": [ + 5214547508, + 9903106231, + 5482250744, + 529062409 + ], + "geometry": [ + { "lat": 40.8137020, "lon": -73.9309935 }, + { "lat": 40.8137768, "lon": -73.9309739 }, + { "lat": 40.8139513, "lon": -73.9309213 }, + { "lat": 40.8140737, "lon": -73.9308670 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Gerard Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Major Deegan Serv", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 587061860, + "bounds": { + "minlat": 40.8769028, + "minlon": -73.9068850, + "maxlat": 40.8769548, + "maxlon": -73.9068426 + }, + "nodes": [ + 1544782755, + 1544782722 + ], + "geometry": [ + { "lat": 40.8769548, "lon": -73.9068850 }, + { "lat": 40.8769028, "lon": -73.9068426 } + ], + "tags": { + "highway": "secondary", + "name": "West 230th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 587061861, + "bounds": { + "minlat": 40.8045502, + "minlon": -73.9267883, + "maxlat": 40.8048248, + "maxlon": -73.9262993 + }, + "nodes": [ + 42761217, + 7369741429, + 2926115549 + ], + "geometry": [ + { "lat": 40.8045502, "lon": -73.9267883 }, + { "lat": 40.8047774, "lon": -73.9263950 }, + { "lat": 40.8048248, "lon": -73.9262993 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Willis Avenue Bridge", + "destination:lanes:forward": "Major Deegan Expressway;Albany|Willis Avenue|Willis Avenue", + "destination:ref:lanes:forward": "I 87 North|none|none", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "30 mph", + "name": "Willis Avenue Bridge", + "oneway": "yes", + "sidewalk": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q2581529", + "wikipedia": "en:Willis Avenue Bridge" + } +}, +{ + "type": "way", + "id": 587061863, + "bounds": { + "minlat": 40.7879006, + "minlon": -73.9557669, + "maxlat": 40.7885854, + "maxlon": -73.9552649 + }, + "nodes": [ + 42443264, + 7061726460, + 7058749376, + 42443268 + ], + "geometry": [ + { "lat": 40.7885854, "lon": -73.9552649 }, + { "lat": 40.7885263, "lon": -73.9553100 }, + { "lat": 40.7879822, "lon": -73.9557047 }, + { "lat": 40.7879006, "lon": -73.9557669 } + ], + "tags": { + "alt_name": "Museum Mile", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 587061864, + "bounds": { + "minlat": 40.8146523, + "minlon": -73.9362392, + "maxlat": 40.8147982, + "maxlon": -73.9361896 + }, + "nodes": [ + 5378686574, + 7732243573 + ], + "geometry": [ + { "lat": 40.8147982, "lon": -73.9361896 }, + { "lat": 40.8146523, "lon": -73.9362392 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 587061869, + "bounds": { + "minlat": 40.7450650, + "minlon": -73.9786187, + "maxlat": 40.7457391, + "maxlon": -73.9781270 + }, + "nodes": [ + 42449928, + 4234425012, + 5254361544, + 12183286764, + 3932847291, + 42445378 + ], + "geometry": [ + { "lat": 40.7450650, "lon": -73.9786187 }, + { "lat": 40.7451219, "lon": -73.9785774 }, + { "lat": 40.7453476, "lon": -73.9784140 }, + { "lat": 40.7456056, "lon": -73.9782270 }, + { "lat": 40.7456472, "lon": -73.9781959 }, + { "lat": 40.7457391, "lon": -73.9781270 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 587061871, + "bounds": { + "minlat": 40.8803979, + "minlon": -73.9108644, + "maxlat": 40.8804528, + "maxlon": -73.9105323 + }, + "nodes": [ + 5608272469, + 10132643265, + 1544847073, + 42746781 + ], + "geometry": [ + { "lat": 40.8803979, "lon": -73.9108644 }, + { "lat": 40.8804204, "lon": -73.9107938 }, + { "lat": 40.8804337, "lon": -73.9107154 }, + { "lat": 40.8804528, "lon": -73.9105323 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "name": "Irwin Avenue", + "oneway": "yes", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ewen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 587061872, + "bounds": { + "minlat": 40.8805131, + "minlon": -73.9107443, + "maxlat": 40.8806863, + "maxlon": -73.9103664 + }, + "nodes": [ + 42752143, + 13471735789, + 1544847090 + ], + "geometry": [ + { "lat": 40.8806863, "lon": -73.9103664 }, + { "lat": 40.8805734, "lon": -73.9106127 }, + { "lat": 40.8805131, "lon": -73.9107443 } + ], + "tags": { + "highway": "tertiary", + "name": "Irwin Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ewen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 587061873, + "bounds": { + "minlat": 40.8802677, + "minlon": -73.9105496, + "maxlat": 40.8804528, + "maxlon": -73.9105323 + }, + "nodes": [ + 42746781, + 1544756363, + 1544756357 + ], + "geometry": [ + { "lat": 40.8804528, "lon": -73.9105323 }, + { "lat": 40.8803614, "lon": -73.9105496 }, + { "lat": 40.8802677, "lon": -73.9105350 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "West 230th Street", + "oneway": "yes", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 587062213, + "bounds": { + "minlat": 40.8690685, + "minlon": -73.9314826, + "maxlat": 40.8774791, + "maxlon": -73.9265207 + }, + "nodes": [ + 5608275788, + 9561543878, + 5608275789, + 5608275790, + 5608275791, + 5608275792, + 5608275793, + 5608275794, + 5608275795, + 5608275796, + 5608275797, + 5608275798, + 5608275799, + 5608275800, + 5608275801, + 5608275802, + 5608275803, + 5608275804, + 5608275805, + 5608275806, + 5608275807, + 5608275808, + 5608275809, + 5608275810, + 5608275811, + 5608275812, + 5608275813, + 5608275814, + 5608275815, + 5608275816, + 5608275817, + 5608275818 + ], + "geometry": [ + { "lat": 40.8690685, "lon": -73.9314826 }, + { "lat": 40.8691774, "lon": -73.9314401 }, + { "lat": 40.8692194, "lon": -73.9314237 }, + { "lat": 40.8693502, "lon": -73.9313728 }, + { "lat": 40.8694425, "lon": -73.9313272 }, + { "lat": 40.8695419, "lon": -73.9312615 }, + { "lat": 40.8695926, "lon": -73.9312239 }, + { "lat": 40.8697153, "lon": -73.9311421 }, + { "lat": 40.8697873, "lon": -73.9311005 }, + { "lat": 40.8700013, "lon": -73.9310107 }, + { "lat": 40.8702214, "lon": -73.9309275 }, + { "lat": 40.8704861, "lon": -73.9308176 }, + { "lat": 40.8710519, "lon": -73.9306070 }, + { "lat": 40.8714779, "lon": -73.9304541 }, + { "lat": 40.8719636, "lon": -73.9302704 }, + { "lat": 40.8723013, "lon": -73.9301121 }, + { "lat": 40.8727120, "lon": -73.9299137 }, + { "lat": 40.8732018, "lon": -73.9296656 }, + { "lat": 40.8736460, "lon": -73.9293933 }, + { "lat": 40.8740537, "lon": -73.9291425 }, + { "lat": 40.8744015, "lon": -73.9289280 }, + { "lat": 40.8748487, "lon": -73.9286571 }, + { "lat": 40.8753862, "lon": -73.9283419 }, + { "lat": 40.8758100, "lon": -73.9280536 }, + { "lat": 40.8762298, "lon": -73.9277491 }, + { "lat": 40.8764347, "lon": -73.9275788 }, + { "lat": 40.8765959, "lon": -73.9274353 }, + { "lat": 40.8767855, "lon": -73.9272502 }, + { "lat": 40.8770249, "lon": -73.9270075 }, + { "lat": 40.8772479, "lon": -73.9267688 }, + { "lat": 40.8773483, "lon": -73.9266575 }, + { "lat": 40.8774791, "lon": -73.9265207 } + ], + "tags": { + "access": "private", + "highway": "track" + } +}, +{ + "type": "way", + "id": 587063990, + "bounds": { + "minlat": 40.8734759, + "minlon": -73.9183848, + "maxlat": 40.8735459, + "maxlon": -73.9182829 + }, + "nodes": [ + 5608292429, + 5608292208, + 5608292430 + ], + "geometry": [ + { "lat": 40.8734759, "lon": -73.9182829 }, + { "lat": 40.8735066, "lon": -73.9183332 }, + { "lat": 40.8735459, "lon": -73.9183848 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 587063991, + "bounds": { + "minlat": 40.8735459, + "minlon": -73.9184480, + "maxlat": 40.8735937, + "maxlon": -73.9183848 + }, + "nodes": [ + 5608292430, + 5608292431 + ], + "geometry": [ + { "lat": 40.8735459, "lon": -73.9183848 }, + { "lat": 40.8735937, "lon": -73.9184480 } + ], + "tags": { + "highway": "service", + "leisure": "slipway", + "service": "slipway" + } +}, +{ + "type": "way", + "id": 587067511, + "bounds": { + "minlat": 40.7016683, + "minlon": -73.9623856, + "maxlat": 40.7025143, + "maxlon": -73.9614463 + }, + "nodes": [ + 42488355, + 9998897938, + 9998897939, + 6248573329, + 9998897940, + 11609574087, + 42491495, + 9776829330, + 42464239 + ], + "geometry": [ + { "lat": 40.7025143, "lon": -73.9623856 }, + { "lat": 40.7024964, "lon": -73.9623562 }, + { "lat": 40.7024745, "lon": -73.9623226 }, + { "lat": 40.7024527, "lon": -73.9622925 }, + { "lat": 40.7024314, "lon": -73.9622686 }, + { "lat": 40.7020700, "lon": -73.9618679 }, + { "lat": 40.7019633, "lon": -73.9617496 }, + { "lat": 40.7017409, "lon": -73.9615066 }, + { "lat": 40.7016683, "lon": -73.9614463 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 587067512, + "bounds": { + "minlat": 40.7074070, + "minlon": -73.9611440, + "maxlat": 40.7075240, + "maxlon": -73.9599380 + }, + "nodes": [ + 42477995, + 6235394744, + 42478001 + ], + "geometry": [ + { "lat": 40.7075240, "lon": -73.9611440 }, + { "lat": 40.7075106, "lon": -73.9610083 }, + { "lat": 40.7074070, "lon": -73.9599380 } + ], + "tags": { + "highway": "tertiary", + "name": "Division Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Division", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 587067513, + "bounds": { + "minlat": 40.7099130, + "minlon": -73.9631074, + "maxlat": 40.7101960, + "maxlon": -73.9622778 + }, + "nodes": [ + 42505389, + 6338024007, + 6856740160 + ], + "geometry": [ + { "lat": 40.7099130, "lon": -73.9622778 }, + { "lat": 40.7099461, "lon": -73.9623637 }, + { "lat": 40.7101960, "lon": -73.9631074 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 587067514, + "bounds": { + "minlat": 40.7337436, + "minlon": -73.9549621, + "maxlat": 40.7344650, + "maxlon": -73.9548439 + }, + "nodes": [ + 42486600, + 8097082902, + 9996409583, + 11229826569, + 8097159404, + 42516051 + ], + "geometry": [ + { "lat": 40.7344650, "lon": -73.9549621 }, + { "lat": 40.7343912, "lon": -73.9549495 }, + { "lat": 40.7343572, "lon": -73.9549439 }, + { "lat": 40.7340879, "lon": -73.9548999 }, + { "lat": 40.7338073, "lon": -73.9548540 }, + { "lat": 40.7337436, "lon": -73.9548439 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Manhattan", + "tiger:name_type": "Ave", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 587067523, + "bounds": { + "minlat": 40.7087874, + "minlon": -73.9122961, + "maxlat": 40.7110632, + "maxlon": -73.9099727 + }, + "nodes": [ + 42851907, + 6252542698, + 10686537728, + 11004055120, + 42806571, + 9755788813, + 42809943 + ], + "geometry": [ + { "lat": 40.7110632, "lon": -73.9099727 }, + { "lat": 40.7110168, "lon": -73.9100220 }, + { "lat": 40.7109774, "lon": -73.9100621 }, + { "lat": 40.7108240, "lon": -73.9102166 }, + { "lat": 40.7098680, "lon": -73.9111790 }, + { "lat": 40.7088380, "lon": -73.9122479 }, + { "lat": 40.7087874, "lon": -73.9122961 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Stanhope Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 587067530, + "bounds": { + "minlat": 40.7425097, + "minlon": -73.9178684, + "maxlat": 40.7428008, + "maxlon": -73.9169205 + }, + "nodes": [ + 42896840, + 10743722503, + 11155242446, + 9192032661, + 10743722567, + 7667163195 + ], + "geometry": [ + { "lat": 40.7425097, "lon": -73.9178684 }, + { "lat": 40.7425314, "lon": -73.9177926 }, + { "lat": 40.7425822, "lon": -73.9176317 }, + { "lat": 40.7427053, "lon": -73.9172416 }, + { "lat": 40.7427262, "lon": -73.9171712 }, + { "lat": 40.7428008, "lon": -73.9169205 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Greenpoint Avenue", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 587067531, + "bounds": { + "minlat": 40.7219327, + "minlon": -73.9410593, + "maxlat": 40.7222241, + "maxlon": -73.9409977 + }, + "nodes": [ + 42476536, + 10825900616, + 9649686763 + ], + "geometry": [ + { "lat": 40.7219327, "lon": -73.9410334 }, + { "lat": 40.7221496, "lon": -73.9409977 }, + { "lat": 40.7222241, "lon": -73.9410593 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "name_1": "Grandparents Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 587067543, + "bounds": { + "minlat": 40.7043971, + "minlon": -73.9199570, + "maxlat": 40.7047640, + "maxlon": -73.9193663 + }, + "nodes": [ + 42477874, + 10068713593, + 11107097235 + ], + "geometry": [ + { "lat": 40.7047640, "lon": -73.9199570 }, + { "lat": 40.7047276, "lon": -73.9198985 }, + { "lat": 40.7043971, "lon": -73.9193663 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Wyckoff Avenue", + "name:etymology:wikidata": "Q30434938", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 587355676, + "bounds": { + "minlat": 40.7593168, + "minlon": -73.9658708, + "maxlat": 40.7595553, + "maxlon": -73.9653081 + }, + "nodes": [ + 13706163321, + 10121802252, + 42432861 + ], + "geometry": [ + { "lat": 40.7595553, "lon": -73.9658708 }, + { "lat": 40.7593700, "lon": -73.9654329 }, + { "lat": 40.7593168, "lon": -73.9653081 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 587355677, + "bounds": { + "minlat": 40.7298812, + "minlon": -73.9730922, + "maxlat": 40.7305004, + "maxlon": -73.9723599 + }, + "nodes": [ + 42450977, + 370898631, + 9142507240, + 9142507241, + 370898427 + ], + "geometry": [ + { "lat": 40.7305004, "lon": -73.9730922 }, + { "lat": 40.7301298, "lon": -73.9726311 }, + { "lat": 40.7300512, "lon": -73.9725393 }, + { "lat": 40.7299693, "lon": -73.9724471 }, + { "lat": 40.7298812, "lon": -73.9723599 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 587355678, + "bounds": { + "minlat": 40.7279995, + "minlon": -73.9729934, + "maxlat": 40.7305748, + "maxlon": -73.9716331 + }, + "nodes": [ + 370897166, + 9142507253, + 9142507254, + 370897168, + 370897169, + 9142507255, + 370898166, + 9142507256, + 370898167, + 9142507257, + 4913187808, + 9142507258, + 370898168, + 9142507259, + 370898169, + 4913187807, + 9142507260, + 370898170, + 9142507261, + 9142507262, + 370898171, + 9142507263, + 370898175 + ], + "geometry": [ + { "lat": 40.7279995, "lon": -73.9716788 }, + { "lat": 40.7283028, "lon": -73.9716429 }, + { "lat": 40.7284139, "lon": -73.9716340 }, + { "lat": 40.7285175, "lon": -73.9716331 }, + { "lat": 40.7286299, "lon": -73.9716399 }, + { "lat": 40.7287364, "lon": -73.9716497 }, + { "lat": 40.7288462, "lon": -73.9716667 }, + { "lat": 40.7289560, "lon": -73.9716921 }, + { "lat": 40.7290617, "lon": -73.9717211 }, + { "lat": 40.7291698, "lon": -73.9717585 }, + { "lat": 40.7292698, "lon": -73.9717985 }, + { "lat": 40.7293709, "lon": -73.9718456 }, + { "lat": 40.7294728, "lon": -73.9719015 }, + { "lat": 40.7295685, "lon": -73.9719581 }, + { "lat": 40.7296689, "lon": -73.9720263 }, + { "lat": 40.7297627, "lon": -73.9720949 }, + { "lat": 40.7298582, "lon": -73.9721748 }, + { "lat": 40.7299429, "lon": -73.9722529 }, + { "lat": 40.7300329, "lon": -73.9723440 }, + { "lat": 40.7301131, "lon": -73.9724333 }, + { "lat": 40.7302238, "lon": -73.9725610 }, + { "lat": 40.7305467, "lon": -73.9729584 }, + { "lat": 40.7305748, "lon": -73.9729934 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 587355679, + "bounds": { + "minlat": 40.7312891, + "minlon": -73.9743564, + "maxlat": 40.7323903, + "maxlon": -73.9740133 + }, + "nodes": [ + 5145531517, + 5137978705, + 13837911368, + 5137978709 + ], + "geometry": [ + { "lat": 40.7312891, "lon": -73.9740133 }, + { "lat": 40.7322423, "lon": -73.9742555 }, + { "lat": 40.7322997, "lon": -73.9742850 }, + { "lat": 40.7323903, "lon": -73.9743564 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 587355680, + "bounds": { + "minlat": 40.7048009, + "minlon": -74.0164104, + "maxlat": 40.7048802, + "maxlon": -74.0164093 + }, + "nodes": [ + 1772136801, + 246923513 + ], + "geometry": [ + { "lat": 40.7048009, "lon": -74.0164093 }, + { "lat": 40.7048802, "lon": -74.0164104 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "hgv": "local", + "highway": "primary", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 587355755, + "bounds": { + "minlat": 40.7077460, + "minlon": -73.9323135, + "maxlat": 40.7077860, + "maxlon": -73.9320720 + }, + "nodes": [ + 42496384, + 42490315 + ], + "geometry": [ + { "lat": 40.7077860, "lon": -73.9320720 }, + { "lat": 40.7077460, "lon": -73.9323135 } + ], + "tags": { + "highway": "residential", + "name": "Johnson Avenue", + "name:etymology:wikidata": "Q23091816", + "oneway": "no", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 587355760, + "bounds": { + "minlat": 40.7000980, + "minlon": -73.9538934, + "maxlat": 40.7002063, + "maxlon": -73.9538223 + }, + "nodes": [ + 42492065, + 5368768968 + ], + "geometry": [ + { "lat": 40.7002063, "lon": -73.9538934 }, + { "lat": 40.7000980, "lon": -73.9538223 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:bus": "1", + "name": "Lee Avenue", + "name:etymology:wikidata": "Q725907; Q709825", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Lee", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 587355761, + "bounds": { + "minlat": 40.6996056, + "minlon": -73.9578093, + "maxlat": 40.7013820, + "maxlon": -73.9550910 + }, + "nodes": [ + 7722348497, + 6235395089, + 42520238, + 6235395091, + 9755372071, + 42522394 + ], + "geometry": [ + { "lat": 40.6996056, "lon": -73.9578093 }, + { "lat": 40.6999322, "lon": -73.9573235 }, + { "lat": 40.6999991, "lon": -73.9572295 }, + { "lat": 40.7000699, "lon": -73.9571353 }, + { "lat": 40.7013389, "lon": -73.9551581 }, + { "lat": 40.7013820, "lon": -73.9550910 } + ], + "tags": { + "highway": "residential", + "name": "Lynch Street", + "name:etymology:wikidata": "Q537583", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Lynch", + "tiger:name_type": "St", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 587355762, + "bounds": { + "minlat": 40.7030750, + "minlon": -73.9589535, + "maxlat": 40.7048392, + "maxlon": -73.9569850 + }, + "nodes": [ + 598035422, + 42488343, + 9772858980, + 9772859101, + 42491429, + 9772859099, + 9772859113, + 42490957, + 9772859115, + 13670908133, + 9772859134, + 42482039 + ], + "geometry": [ + { "lat": 40.7048392, "lon": -73.9589535 }, + { "lat": 40.7047680, "lon": -73.9588840 }, + { "lat": 40.7047109, "lon": -73.9588194 }, + { "lat": 40.7042626, "lon": -73.9583115 }, + { "lat": 40.7042030, "lon": -73.9582440 }, + { "lat": 40.7041526, "lon": -73.9581879 }, + { "lat": 40.7036995, "lon": -73.9576834 }, + { "lat": 40.7036390, "lon": -73.9576160 }, + { "lat": 40.7035866, "lon": -73.9575573 }, + { "lat": 40.7034011, "lon": -73.9573498 }, + { "lat": 40.7031344, "lon": -73.9570515 }, + { "lat": 40.7030750, "lon": -73.9569850 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Lee Avenue", + "name:etymology:wikidata": "Q725907; Q709825", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Lee", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 587355766, + "bounds": { + "minlat": 40.7217038, + "minlon": -73.9506513, + "maxlat": 40.7221719, + "maxlon": -73.9498712 + }, + "nodes": [ + 42509213, + 9789356617, + 9789343570, + 42509216 + ], + "geometry": [ + { "lat": 40.7221719, "lon": -73.9498712 }, + { "lat": 40.7221332, "lon": -73.9499418 }, + { "lat": 40.7217547, "lon": -73.9505649 }, + { "lat": 40.7217038, "lon": -73.9506513 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Driggs Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 587355767, + "bounds": { + "minlat": 40.7217038, + "minlon": -73.9516433, + "maxlat": 40.7234878, + "maxlon": -73.9506513 + }, + "nodes": [ + 42509216, + 9789343569, + 9789402805, + 42479277 + ], + "geometry": [ + { "lat": 40.7217038, "lon": -73.9506513 }, + { "lat": 40.7217768, "lon": -73.9506745 }, + { "lat": 40.7234114, "lon": -73.9516025 }, + { "lat": 40.7234878, "lon": -73.9516433 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "name": "Lorimer Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 587355780, + "bounds": { + "minlat": 40.7007023, + "minlon": -73.9421164, + "maxlat": 40.7007250, + "maxlon": -73.9419310 + }, + "nodes": [ + 2530160374, + 42504102 + ], + "geometry": [ + { "lat": 40.7007023, "lon": -73.9421164 }, + { "lat": 40.7007250, "lon": -73.9419310 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY; Kings, NY", + "tiger:name_base": "Flushing", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11378; 11237", + "tiger:zip_right": "11378", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 587355781, + "bounds": { + "minlat": 40.7214740, + "minlon": -73.9474740, + "maxlat": 40.7227270, + "maxlon": -73.9469800 + }, + "nodes": [ + 42466383, + 9789356730, + 8589617597, + 11229826575, + 42467929, + 8589641123, + 11229826574, + 6228788708, + 42467934 + ], + "geometry": [ + { "lat": 40.7214740, "lon": -73.9469800 }, + { "lat": 40.7215406, "lon": -73.9470044 }, + { "lat": 40.7215793, "lon": -73.9470199 }, + { "lat": 40.7217750, "lon": -73.9470941 }, + { "lat": 40.7221440, "lon": -73.9472340 }, + { "lat": 40.7226259, "lon": -73.9474315 }, + { "lat": 40.7226326, "lon": -73.9474343 }, + { "lat": 40.7226762, "lon": -73.9474524 }, + { "lat": 40.7227270, "lon": -73.9474740 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Graham", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 587355782, + "bounds": { + "minlat": 40.7225465, + "minlon": -73.9490870, + "maxlat": 40.7227270, + "maxlon": -73.9474740 + }, + "nodes": [ + 42467934, + 9935605472, + 9935605463, + 42509209, + 9935605464, + 9789356660, + 42491222 + ], + "geometry": [ + { "lat": 40.7227270, "lon": -73.9474740 }, + { "lat": 40.7227181, "lon": -73.9475595 }, + { "lat": 40.7226645, "lon": -73.9480767 }, + { "lat": 40.7226572, "lon": -73.9481468 }, + { "lat": 40.7226470, "lon": -73.9482458 }, + { "lat": 40.7225680, "lon": -73.9490101 }, + { "lat": 40.7225465, "lon": -73.9490870 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Driggs Avenue", + "note": "confirm side of street for bike lane", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 587355783, + "bounds": { + "minlat": 40.7372958, + "minlon": -73.9554788, + "maxlat": 40.7376199, + "maxlon": -73.9554272 + }, + "nodes": [ + 42472255, + 8097025070, + 2473602886 + ], + "geometry": [ + { "lat": 40.7372958, "lon": -73.9554272 }, + { "lat": 40.7373690, "lon": -73.9554376 }, + { "lat": 40.7376199, "lon": -73.9554788 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Manhattan", + "tiger:name_type": "Ave", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 587355784, + "bounds": { + "minlat": 40.7378918, + "minlon": -73.9555591, + "maxlat": 40.7379348, + "maxlon": -73.9554940 + }, + "nodes": [ + 2473602888, + 2473602889 + ], + "geometry": [ + { "lat": 40.7379348, "lon": -73.9554940 }, + { "lat": 40.7378918, "lon": -73.9555591 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Commercial Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Commercial", + "tiger:name_type": "St", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 587355795, + "bounds": { + "minlat": 40.7027404, + "minlon": -73.9944211, + "maxlat": 40.7028288, + "maxlon": -73.9941850 + }, + "nodes": [ + 3174844141, + 8262934770, + 3174844139 + ], + "geometry": [ + { "lat": 40.7028288, "lon": -73.9944211 }, + { "lat": 40.7027842, "lon": -73.9943042 }, + { "lat": 40.7027404, "lon": -73.9941850 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 587362281, + "bounds": { + "minlat": 40.8327659, + "minlon": -73.9395441, + "maxlat": 40.8367979, + "maxlon": -73.9360919 + }, + "nodes": [ + 11291880561, + 764738939, + 764738942, + 5610640950, + 5610640951, + 5610640952, + 5610640953, + 5610640954, + 5610640955, + 5610640956, + 5610640957, + 5610640958, + 5610640959, + 5610640960, + 5610640961, + 5610640962, + 5610640963, + 5610640964, + 5610640965, + 5610640966 + ], + "geometry": [ + { "lat": 40.8327659, "lon": -73.9395441 }, + { "lat": 40.8327674, "lon": -73.9395162 }, + { "lat": 40.8327820, "lon": -73.9394661 }, + { "lat": 40.8329335, "lon": -73.9391677 }, + { "lat": 40.8330664, "lon": -73.9389867 }, + { "lat": 40.8332197, "lon": -73.9388123 }, + { "lat": 40.8335250, "lon": -73.9384797 }, + { "lat": 40.8336874, "lon": -73.9383349 }, + { "lat": 40.8337950, "lon": -73.9382142 }, + { "lat": 40.8341095, "lon": -73.9378038 }, + { "lat": 40.8343997, "lon": -73.9374471 }, + { "lat": 40.8345773, "lon": -73.9372513 }, + { "lat": 40.8350496, "lon": -73.9369026 }, + { "lat": 40.8353967, "lon": -73.9367229 }, + { "lat": 40.8357782, "lon": -73.9365700 }, + { "lat": 40.8361272, "lon": -73.9363943 }, + { "lat": 40.8362733, "lon": -73.9363192 }, + { "lat": 40.8364336, "lon": -73.9362535 }, + { "lat": 40.8366650, "lon": -73.9361717 }, + { "lat": 40.8367979, "lon": -73.9360919 } + ], + "tags": { + "highway": "track", + "name": "Old Croton Aqueduct Trail", + "surface": "dirt", + "tracktype": "grade4", + "wikimedia_commons": "File:Old_Croton_Aqueduct_Trail_in_High_Bridge_Park.jpg" + } +}, +{ + "type": "way", + "id": 587456039, + "bounds": { + "minlat": 40.8473212, + "minlon": -73.9220462, + "maxlat": 40.8477055, + "maxlon": -73.9218618 + }, + "nodes": [ + 42728196, + 12054513783, + 12054487762 + ], + "geometry": [ + { "lat": 40.8477055, "lon": -73.9220462 }, + { "lat": 40.8474105, "lon": -73.9219052 }, + { "lat": 40.8473212, "lon": -73.9218618 } + ], + "tags": { + "highway": "residential", + "name": "Popham Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 587975247, + "bounds": { + "minlat": 40.7869316, + "minlon": -73.9321648, + "maxlat": 40.7873097, + "maxlon": -73.9312194 + }, + "nodes": [ + 3040306430, + 7734633899, + 7734633964, + 3040306808, + 3037017931 + ], + "geometry": [ + { "lat": 40.7869316, "lon": -73.9312194 }, + { "lat": 40.7871087, "lon": -73.9316729 }, + { "lat": 40.7872794, "lon": -73.9320904 }, + { "lat": 40.7872985, "lon": -73.9321373 }, + { "lat": 40.7873097, "lon": -73.9321648 } + ], + "tags": { + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 588157329, + "bounds": { + "minlat": 40.7093107, + "minlon": -74.0119350, + "maxlat": 40.7096669, + "maxlon": -74.0116583 + }, + "nodes": [ + 42434412, + 10288802752, + 10288802751, + 8262936646, + 10288802750, + 10288802748, + 10288802702, + 8262936615, + 42422038 + ], + "geometry": [ + { "lat": 40.7093107, "lon": -74.0119350 }, + { "lat": 40.7093217, "lon": -74.0119108 }, + { "lat": 40.7093281, "lon": -74.0118986 }, + { "lat": 40.7093350, "lon": -74.0118890 }, + { "lat": 40.7093507, "lon": -74.0118752 }, + { "lat": 40.7093693, "lon": -74.0118614 }, + { "lat": 40.7095503, "lon": -74.0117384 }, + { "lat": 40.7096159, "lon": -74.0116926 }, + { "lat": 40.7096669, "lon": -74.0116583 } + ], + "tags": { + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Trinity Place", + "name:etymology:wikidata": "Q866896", + "name:ko": "트리니티 플레이스", + "name:ru": "Тринити-Плейс", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 588157330, + "bounds": { + "minlat": 40.7258067, + "minlon": -74.0109300, + "maxlat": 40.7261761, + "maxlon": -74.0108723 + }, + "nodes": [ + 42440854, + 42442294 + ], + "geometry": [ + { "lat": 40.7258067, "lon": -74.0109300 }, + { "lat": 40.7261761, "lon": -74.0108723 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 588157336, + "bounds": { + "minlat": 40.7609304, + "minlon": -73.9691328, + "maxlat": 40.7616103, + "maxlon": -73.9686382 + }, + "nodes": [ + 42447007, + 10125147546, + 10125147545, + 42432847 + ], + "geometry": [ + { "lat": 40.7616103, "lon": -73.9686382 }, + { "lat": 40.7615438, "lon": -73.9686875 }, + { "lat": 40.7610263, "lon": -73.9690633 }, + { "lat": 40.7609304, "lon": -73.9691328 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 588157337, + "bounds": { + "minlat": 40.7610948, + "minlon": -73.9832504, + "maxlat": 40.7617189, + "maxlon": -73.9828071 + }, + "nodes": [ + 42440004, + 3977886861, + 3977886860, + 42440001 + ], + "geometry": [ + { "lat": 40.7617189, "lon": -73.9828071 }, + { "lat": 40.7616559, "lon": -73.9828519 }, + { "lat": 40.7611535, "lon": -73.9832086 }, + { "lat": 40.7610948, "lon": -73.9832504 } + ], + "tags": { + "cycleway:left": "track", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 588168462, + "bounds": { + "minlat": 40.7136180, + "minlon": -74.0083780, + "maxlat": 40.7143576, + "maxlon": -74.0067530 + }, + "nodes": [ + 42449597, + 8279851435, + 8262309631, + 2821304136 + ], + "geometry": [ + { "lat": 40.7143576, "lon": -74.0083780 }, + { "lat": 40.7143118, "lon": -74.0082759 }, + { "lat": 40.7136712, "lon": -74.0068719 }, + { "lat": 40.7136180, "lon": -74.0067530 } + ], + "tags": { + "bicycle": "yes", + "construction": "minor", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Warren Street", + "name:etymology:wikidata": "Q3376953", + "name:ko": "워렌 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 588168464, + "bounds": { + "minlat": 40.7465313, + "minlon": -73.9859434, + "maxlat": 40.7471520, + "maxlon": -73.9854903 + }, + "nodes": [ + 42443680, + 10173045243, + 10168260248, + 42451674 + ], + "geometry": [ + { "lat": 40.7471520, "lon": -73.9854903 }, + { "lat": 40.7470959, "lon": -73.9855306 }, + { "lat": 40.7465891, "lon": -73.9859012 }, + { "lat": 40.7465313, "lon": -73.9859434 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 588194480, + "bounds": { + "minlat": 40.7775055, + "minlon": -73.9639197, + "maxlat": 40.7779867, + "maxlon": -73.9632592 + }, + "nodes": [ + 5618091325, + 5618091323, + 6991414900, + 6991400351, + 5618091327, + 5618091324, + 5618091322, + 5618091020, + 5618091321, + 7785624627, + 7785624623, + 7785624665, + 7785624677, + 7785624622, + 7785624620, + 7785624640, + 7103600800 + ], + "geometry": [ + { "lat": 40.7776249, "lon": -73.9632592 }, + { "lat": 40.7776820, "lon": -73.9633908 }, + { "lat": 40.7776896, "lon": -73.9634089 }, + { "lat": 40.7777053, "lon": -73.9634449 }, + { "lat": 40.7777234, "lon": -73.9634614 }, + { "lat": 40.7777520, "lon": -73.9634839 }, + { "lat": 40.7778327, "lon": -73.9635487 }, + { "lat": 40.7778687, "lon": -73.9636000 }, + { "lat": 40.7779109, "lon": -73.9637038 }, + { "lat": 40.7779867, "lon": -73.9638921 }, + { "lat": 40.7779476, "lon": -73.9639197 }, + { "lat": 40.7777522, "lon": -73.9638290 }, + { "lat": 40.7777020, "lon": -73.9637942 }, + { "lat": 40.7776719, "lon": -73.9637492 }, + { "lat": 40.7775657, "lon": -73.9634940 }, + { "lat": 40.7775599, "lon": -73.9634800 }, + { "lat": 40.7775055, "lon": -73.9633456 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 588293370, + "bounds": { + "minlat": 40.7241972, + "minlon": -73.9934284, + "maxlat": 40.7245091, + "maxlon": -73.9925309 + }, + "nodes": [ + 1773082410, + 42437612, + 5829779485, + 5829779497, + 42457325 + ], + "geometry": [ + { "lat": 40.7241972, "lon": -73.9925309 }, + { "lat": 40.7242341, "lon": -73.9926455 }, + { "lat": 40.7242713, "lon": -73.9927569 }, + { "lat": 40.7244851, "lon": -73.9933625 }, + { "lat": 40.7245091, "lon": -73.9934284 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 588293375, + "bounds": { + "minlat": 40.7251622, + "minlon": -73.9958807, + "maxlat": 40.7252760, + "maxlon": -73.9957848 + }, + "nodes": [ + 1918039880, + 42457319 + ], + "geometry": [ + { "lat": 40.7251622, "lon": -73.9958807 }, + { "lat": 40.7252760, "lon": -73.9957848 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Crosby Street", + "name:etymology:wikidata": "Q96242792", + "name:ko": "크로즈비 스트리트", + "name:ru": "Кросби-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588314387, + "bounds": { + "minlat": 40.7801906, + "minlon": -73.9875459, + "maxlat": 40.7802310, + "maxlon": -73.9874605 + }, + "nodes": [ + 5619144360, + 61272284 + ], + "geometry": [ + { "lat": 40.7801906, "lon": -73.9874605 }, + { "lat": 40.7802310, "lon": -73.9875459 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "West 71st Street", + "name:ru": "Западная 71-я стрит" + } +}, +{ + "type": "way", + "id": 588314388, + "bounds": { + "minlat": 40.7795172, + "minlon": -73.9879995, + "maxlat": 40.7795541, + "maxlon": -73.9879024 + }, + "nodes": [ + 5619144361, + 42438306 + ], + "geometry": [ + { "lat": 40.7795172, "lon": -73.9879024 }, + { "lat": 40.7795541, "lon": -73.9879995 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "lanes": "2", + "layer": "1", + "name": "West 70th Street", + "name:ru": "Западная 70-я стрит", + "name_1": "West 70 Street" + } +}, +{ + "type": "way", + "id": 588355588, + "bounds": { + "minlat": 40.7431379, + "minlon": -73.9158551, + "maxlat": 40.7433254, + "maxlon": -73.9158174 + }, + "nodes": [ + 42807843, + 10743714049, + 5482369532 + ], + "geometry": [ + { "lat": 40.7431379, "lon": -73.9158551 }, + { "lat": 40.7432330, "lon": -73.9158360 }, + { "lat": 40.7433254, "lon": -73.9158174 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "49th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588394622, + "bounds": { + "minlat": 40.7853189, + "minlon": -73.9068720, + "maxlat": 40.7900095, + "maxlon": -73.8961384 + }, + "nodes": [ + 5619736014, + 5619736015, + 5619736016, + 5619736017, + 5619736018, + 5619753182, + 5619736019, + 5622370274, + 5619737024, + 5619737025, + 5622370282, + 5619737026, + 5619737028, + 5622397233, + 5619737029, + 5620409003, + 5624543170, + 5619737035, + 5620446021, + 5619737036, + 5619737037, + 5619737038, + 5619737041, + 5624543169, + 5619737039, + 5619737040 + ], + "geometry": [ + { "lat": 40.7896437, "lon": -73.9068720 }, + { "lat": 40.7899649, "lon": -73.9065247 }, + { "lat": 40.7899933, "lon": -73.9064281 }, + { "lat": 40.7900095, "lon": -73.9063262 }, + { "lat": 40.7900014, "lon": -73.9062136 }, + { "lat": 40.7895676, "lon": -73.9042590 }, + { "lat": 40.7893394, "lon": -73.9032309 }, + { "lat": 40.7889432, "lon": -73.9025993 }, + { "lat": 40.7884195, "lon": -73.9020349 }, + { "lat": 40.7882712, "lon": -73.9017613 }, + { "lat": 40.7879665, "lon": -73.9007098 }, + { "lat": 40.7878732, "lon": -73.9003880 }, + { "lat": 40.7876097, "lon": -73.8997754 }, + { "lat": 40.7875438, "lon": -73.8996840 }, + { "lat": 40.7871040, "lon": -73.8990754 }, + { "lat": 40.7868047, "lon": -73.8989606 }, + { "lat": 40.7864179, "lon": -73.8984215 }, + { "lat": 40.7863262, "lon": -73.8982198 }, + { "lat": 40.7863110, "lon": -73.8981138 }, + { "lat": 40.7863120, "lon": -73.8980132 }, + { "lat": 40.7864318, "lon": -73.8975277 }, + { "lat": 40.7864887, "lon": -73.8972434 }, + { "lat": 40.7864785, "lon": -73.8971603 }, + { "lat": 40.7864491, "lon": -73.8970811 }, + { "lat": 40.7863709, "lon": -73.8969859 }, + { "lat": 40.7853189, "lon": -73.8961384 } + ], + "tags": { + "access": "private", + "covered": "no", + "highway": "service", + "name": "11th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588397748, + "bounds": { + "minlat": 40.7880677, + "minlon": -73.9075585, + "maxlat": 40.7901068, + "maxlon": -73.9045356 + }, + "nodes": [ + 5619753179, + 5622397275, + 5619736014, + 7820142280, + 5619758507 + ], + "geometry": [ + { "lat": 40.7901068, "lon": -73.9075585 }, + { "lat": 40.7898684, "lon": -73.9072051 }, + { "lat": 40.7896437, "lon": -73.9068720 }, + { "lat": 40.7884978, "lon": -73.9051731 }, + { "lat": 40.7880677, "lon": -73.9045356 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "12th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588467244, + "bounds": { + "minlat": 40.7858235, + "minlon": -73.9087566, + "maxlat": 40.7891209, + "maxlon": -73.9043285 + }, + "nodes": [ + 5622854067, + 5620454960, + 5620398908, + 5622774105, + 5622774111, + 5620398909, + 5620398911, + 5620398910, + 5620398912 + ], + "geometry": [ + { "lat": 40.7891209, "lon": -73.9087566 }, + { "lat": 40.7883084, "lon": -73.9075853 }, + { "lat": 40.7882671, "lon": -73.9075239 }, + { "lat": 40.7881493, "lon": -73.9073980 }, + { "lat": 40.7877402, "lon": -73.9069606 }, + { "lat": 40.7877126, "lon": -73.9069311 }, + { "lat": 40.7873289, "lon": -73.9064415 }, + { "lat": 40.7869696, "lon": -73.9059305 }, + { "lat": 40.7858235, "lon": -73.9043285 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "13th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588473054, + "bounds": { + "minlat": 40.7841567, + "minlon": -73.9125821, + "maxlat": 40.7883084, + "maxlon": -73.9075853 + }, + "nodes": [ + 5620454960, + 5620553444, + 5710721914, + 9748253082, + 9748253081, + 7776768894, + 4675951939, + 3778313816 + ], + "geometry": [ + { "lat": 40.7883084, "lon": -73.9075853 }, + { "lat": 40.7862720, "lon": -73.9100276 }, + { "lat": 40.7850325, "lon": -73.9115264 }, + { "lat": 40.7849719, "lon": -73.9115622 }, + { "lat": 40.7842438, "lon": -73.9124818 }, + { "lat": 40.7842288, "lon": -73.9125000 }, + { "lat": 40.7842039, "lon": -73.9125299 }, + { "lat": 40.7841567, "lon": -73.9125821 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "21st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588473307, + "bounds": { + "minlat": 40.7856836, + "minlon": -73.9124715, + "maxlat": 40.7901068, + "maxlon": -73.9075585 + }, + "nodes": [ + 5620459866, + 5620507668, + 5620553445, + 5620463486, + 5620463487, + 5620463485, + 5620463483, + 5622612789, + 5620463484, + 5622612790, + 5622854054, + 5622681872, + 5622854067, + 7820216827, + 5619753179 + ], + "geometry": [ + { "lat": 40.7856836, "lon": -73.9124715 }, + { "lat": 40.7869238, "lon": -73.9109912 }, + { "lat": 40.7869358, "lon": -73.9109769 }, + { "lat": 40.7873265, "lon": -73.9105105 }, + { "lat": 40.7874558, "lon": -73.9103787 }, + { "lat": 40.7875546, "lon": -73.9103221 }, + { "lat": 40.7878844, "lon": -73.9099071 }, + { "lat": 40.7879824, "lon": -73.9098701 }, + { "lat": 40.7880561, "lon": -73.9098653 }, + { "lat": 40.7881122, "lon": -73.9098742 }, + { "lat": 40.7885280, "lon": -73.9094480 }, + { "lat": 40.7889682, "lon": -73.9089422 }, + { "lat": 40.7891209, "lon": -73.9087566 }, + { "lat": 40.7896938, "lon": -73.9080604 }, + { "lat": 40.7901068, "lon": -73.9075585 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "19th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588475116, + "bounds": { + "minlat": 40.7840950, + "minlon": -73.9136314, + "maxlat": 40.7864847, + "maxlon": -73.9101411 + }, + "nodes": [ + 5620525709, + 7829801524, + 5622737306, + 5622737305, + 5710721914, + 5620459866, + 5622115337, + 5620480678 + ], + "geometry": [ + { "lat": 40.7840950, "lon": -73.9101411 }, + { "lat": 40.7841884, "lon": -73.9102814 }, + { "lat": 40.7845962, "lon": -73.9108932 }, + { "lat": 40.7846134, "lon": -73.9109181 }, + { "lat": 40.7850325, "lon": -73.9115264 }, + { "lat": 40.7856836, "lon": -73.9124715 }, + { "lat": 40.7857930, "lon": -73.9126301 }, + { "lat": 40.7864847, "lon": -73.9136314 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "18th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588479907, + "bounds": { + "minlat": 40.7853858, + "minlon": -73.9085547, + "maxlat": 40.7868345, + "maxlon": -73.9067505 + }, + "nodes": [ + 5620534592, + 5620543585, + 5620525713 + ], + "geometry": [ + { "lat": 40.7868345, "lon": -73.9067505 }, + { "lat": 40.7863459, "lon": -73.9073589 }, + { "lat": 40.7853858, "lon": -73.9085547 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "23rd Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588480337, + "bounds": { + "minlat": 40.7845049, + "minlon": -73.9067505, + "maxlat": 40.7868345, + "maxlon": -73.9034598 + }, + "nodes": [ + 5620539165, + 7040709747, + 5620534592 + ], + "geometry": [ + { "lat": 40.7845049, "lon": -73.9034598 }, + { "lat": 40.7853514, "lon": -73.9046508 }, + { "lat": 40.7868345, "lon": -73.9067505 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "14th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588480711, + "bounds": { + "minlat": 40.7840195, + "minlon": -73.9073589, + "maxlat": 40.7863459, + "maxlon": -73.9039989 + }, + "nodes": [ + 5620543584, + 7040709750, + 5620543585 + ], + "geometry": [ + { "lat": 40.7840195, "lon": -73.9039989 }, + { "lat": 40.7848764, "lon": -73.9052364 }, + { "lat": 40.7863459, "lon": -73.9073589 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "15th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588481483, + "bounds": { + "minlat": 40.7823294, + "minlon": -73.9085742, + "maxlat": 40.7852745, + "maxlon": -73.9041984 + }, + "nodes": [ + 5620548699, + 5622097779, + 5622072717, + 7040709752, + 5622073658, + 5624533866, + 5624533875, + 5624533872, + 5624533865, + 5622911344, + 5622911347, + 5620548698 + ], + "geometry": [ + { "lat": 40.7823294, "lon": -73.9041984 }, + { "lat": 40.7833806, "lon": -73.9057453 }, + { "lat": 40.7836390, "lon": -73.9061254 }, + { "lat": 40.7838865, "lon": -73.9064896 }, + { "lat": 40.7841743, "lon": -73.9069132 }, + { "lat": 40.7845154, "lon": -73.9074282 }, + { "lat": 40.7846545, "lon": -73.9076382 }, + { "lat": 40.7848833, "lon": -73.9079836 }, + { "lat": 40.7849286, "lon": -73.9080521 }, + { "lat": 40.7851332, "lon": -73.9083609 }, + { "lat": 40.7852463, "lon": -73.9085316 }, + { "lat": 40.7852745, "lon": -73.9085742 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "16th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588490257, + "bounds": { + "minlat": 40.7828812, + "minlon": -73.9095737, + "maxlat": 40.7845642, + "maxlon": -73.9071593 + }, + "nodes": [ + 5620662498, + 5622073657, + 5622056452, + 5624533876, + 5624533871, + 5624533869, + 5620662499 + ], + "geometry": [ + { "lat": 40.7828812, "lon": -73.9071593 }, + { "lat": 40.7834006, "lon": -73.9078964 }, + { "lat": 40.7837722, "lon": -73.9084203 }, + { "lat": 40.7838626, "lon": -73.9085550 }, + { "lat": 40.7839974, "lon": -73.9087503 }, + { "lat": 40.7841294, "lon": -73.9089416 }, + { "lat": 40.7845642, "lon": -73.9095737 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "17th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588676882, + "bounds": { + "minlat": 40.7825387, + "minlon": -73.9098793, + "maxlat": 40.7837722, + "maxlon": -73.9084203 + }, + "nodes": [ + 5622056451, + 5622116052, + 5622056452 + ], + "geometry": [ + { "lat": 40.7825387, "lon": -73.9098793 }, + { "lat": 40.7831192, "lon": -73.9091927 }, + { "lat": 40.7837722, "lon": -73.9084203 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "25th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588679033, + "bounds": { + "minlat": 40.7820891, + "minlon": -73.9081558, + "maxlat": 40.7836390, + "maxlon": -73.9061254 + }, + "nodes": [ + 6957887079, + 5622881185, + 5620662498, + 5622073908, + 5622072717 + ], + "geometry": [ + { "lat": 40.7820891, "lon": -73.9081558 }, + { "lat": 40.7823870, "lon": -73.9077718 }, + { "lat": 40.7828812, "lon": -73.9071593 }, + { "lat": 40.7829269, "lon": -73.9070017 }, + { "lat": 40.7836390, "lon": -73.9061254 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "27th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588679380, + "bounds": { + "minlat": 40.7834006, + "minlon": -73.9078964, + "maxlat": 40.7841743, + "maxlon": -73.9069132 + }, + "nodes": [ + 5622073657, + 5622073658 + ], + "geometry": [ + { "lat": 40.7834006, "lon": -73.9078964 }, + { "lat": 40.7841743, "lon": -73.9069132 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "26th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588683086, + "bounds": { + "minlat": 40.7851874, + "minlon": -73.9141964, + "maxlat": 40.7856412, + "maxlon": -73.9133048 + }, + "nodes": [ + 5622097784, + 1243119470, + 5622097790, + 5622097792 + ], + "geometry": [ + { "lat": 40.7851874, "lon": -73.9133048 }, + { "lat": 40.7854318, "lon": -73.9136734 }, + { "lat": 40.7855801, "lon": -73.9140438 }, + { "lat": 40.7856412, "lon": -73.9141964 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "19th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588686069, + "bounds": { + "minlat": 40.7851874, + "minlon": -73.9133048, + "maxlat": 40.7857930, + "maxlon": -73.9126301 + }, + "nodes": [ + 5622097784, + 5622397277, + 5622115337 + ], + "geometry": [ + { "lat": 40.7851874, "lon": -73.9133048 }, + { "lat": 40.7856780, "lon": -73.9127690 }, + { "lat": 40.7857930, "lon": -73.9126301 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "19th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588686248, + "bounds": { + "minlat": 40.7831192, + "minlon": -73.9104248, + "maxlat": 40.7840674, + "maxlon": -73.9091927 + }, + "nodes": [ + 5622116051, + 5622188904, + 5622188903, + 5622116052 + ], + "geometry": [ + { "lat": 40.7840674, "lon": -73.9104248 }, + { "lat": 40.7836426, "lon": -73.9098219 }, + { "lat": 40.7835181, "lon": -73.9097812 }, + { "lat": 40.7831192, "lon": -73.9091927 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "18th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588723418, + "bounds": { + "minlat": 40.7895109, + "minlon": -73.9102194, + "maxlat": 40.7896468, + "maxlon": -73.9101825 + }, + "nodes": [ + 5622397252, + 5622397253 + ], + "geometry": [ + { "lat": 40.7895109, "lon": -73.9101825 }, + { "lat": 40.7896468, "lon": -73.9102194 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588723423, + "bounds": { + "minlat": 40.7856780, + "minlon": -73.9131193, + "maxlat": 40.7859057, + "maxlon": -73.9127690 + }, + "nodes": [ + 5622397277, + 5622397278 + ], + "geometry": [ + { "lat": 40.7856780, "lon": -73.9127690 }, + { "lat": 40.7859057, "lon": -73.9131193 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588748630, + "bounds": { + "minlat": 40.7861242, + "minlon": -73.9148981, + "maxlat": 40.7863040, + "maxlon": -73.9148522 + }, + "nodes": [ + 5622626269, + 5622626270 + ], + "geometry": [ + { "lat": 40.7861242, "lon": -73.9148981 }, + { "lat": 40.7863040, "lon": -73.9148522 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588760734, + "bounds": { + "minlat": 40.7858147, + "minlon": -73.9093612, + "maxlat": 40.7859375, + "maxlon": -73.9092120 + }, + "nodes": [ + 5622737296, + 5622737297 + ], + "geometry": [ + { "lat": 40.7858147, "lon": -73.9093612 }, + { "lat": 40.7859375, "lon": -73.9092120 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588760735, + "bounds": { + "minlat": 40.7860230, + "minlon": -73.9096648, + "maxlat": 40.7861502, + "maxlon": -73.9095075 + }, + "nodes": [ + 5622737298, + 5622737299 + ], + "geometry": [ + { "lat": 40.7860230, "lon": -73.9096648 }, + { "lat": 40.7861502, "lon": -73.9095075 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588760736, + "bounds": { + "minlat": 40.7859306, + "minlon": -73.9100913, + "maxlat": 40.7861452, + "maxlon": -73.9098429 + }, + "nodes": [ + 5622737300, + 5622737301 + ], + "geometry": [ + { "lat": 40.7861452, "lon": -73.9098429 }, + { "lat": 40.7859306, "lon": -73.9100913 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588760737, + "bounds": { + "minlat": 40.7855266, + "minlon": -73.9100913, + "maxlat": 40.7859306, + "maxlon": -73.9093127 + }, + "nodes": [ + 5622737302, + 5622737303, + 5622737304, + 5622737301 + ], + "geometry": [ + { "lat": 40.7857814, "lon": -73.9093127 }, + { "lat": 40.7855266, "lon": -73.9095985 }, + { "lat": 40.7858256, "lon": -73.9100184 }, + { "lat": 40.7859306, "lon": -73.9100913 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588760738, + "bounds": { + "minlat": 40.7845962, + "minlon": -73.9109546, + "maxlat": 40.7856569, + "maxlon": -73.9099492 + }, + "nodes": [ + 5622737306, + 5622737311, + 5622737307, + 5622737308, + 8662780837, + 5622737310, + 5622737311 + ], + "geometry": [ + { "lat": 40.7845962, "lon": -73.9108932 }, + { "lat": 40.7847713, "lon": -73.9106832 }, + { "lat": 40.7853965, "lon": -73.9099492 }, + { "lat": 40.7856569, "lon": -73.9103250 }, + { "lat": 40.7852748, "lon": -73.9107847 }, + { "lat": 40.7849651, "lon": -73.9109546 }, + { "lat": 40.7847713, "lon": -73.9106832 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588760739, + "bounds": { + "minlat": 40.7853361, + "minlon": -73.9099492, + "maxlat": 40.7856030, + "maxlon": -73.9092547 + }, + "nodes": [ + 5622737307, + 5622741462, + 5622737313, + 5622737314 + ], + "geometry": [ + { "lat": 40.7853965, "lon": -73.9099492 }, + { "lat": 40.7853361, "lon": -73.9098449 }, + { "lat": 40.7853693, "lon": -73.9095309 }, + { "lat": 40.7856030, "lon": -73.9092547 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588764810, + "bounds": { + "minlat": 40.7860003, + "minlon": -73.9068896, + "maxlat": 40.7878119, + "maxlon": -73.9041914 + }, + "nodes": [ + 5622774109, + 5622774108, + 5622774107, + 5622774106, + 5622774103, + 8662780836, + 5622774110 + ], + "geometry": [ + { "lat": 40.7860003, "lon": -73.9041914 }, + { "lat": 40.7869433, "lon": -73.9055581 }, + { "lat": 40.7870841, "lon": -73.9055514 }, + { "lat": 40.7874573, "lon": -73.9060994 }, + { "lat": 40.7874963, "lon": -73.9064044 }, + { "lat": 40.7875808, "lon": -73.9065385 }, + { "lat": 40.7878119, "lon": -73.9068896 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588764811, + "bounds": { + "minlat": 40.7877402, + "minlon": -73.9069606, + "maxlat": 40.7885373, + "maxlon": -73.9058189 + }, + "nodes": [ + 5622774114, + 5622774113, + 5622774112, + 8662780831, + 5622774110, + 5622774111 + ], + "geometry": [ + { "lat": 40.7885373, "lon": -73.9058189 }, + { "lat": 40.7878518, "lon": -73.9066662 }, + { "lat": 40.7879123, "lon": -73.9067642 }, + { "lat": 40.7878694, "lon": -73.9068178 }, + { "lat": 40.7878119, "lon": -73.9068896 }, + { "lat": 40.7877402, "lon": -73.9069606 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588773702, + "bounds": { + "minlat": 40.7895022, + "minlon": -73.9097321, + "maxlat": 40.7897338, + "maxlon": -73.9095134 + }, + "nodes": [ + 5620446026, + 5622854049, + 5622854050, + 5622854051 + ], + "geometry": [ + { "lat": 40.7895022, "lon": -73.9097321 }, + { "lat": 40.7896118, "lon": -73.9096917 }, + { "lat": 40.7897027, "lon": -73.9095923 }, + { "lat": 40.7897338, "lon": -73.9095134 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588773703, + "bounds": { + "minlat": 40.7890733, + "minlon": -73.9110338, + "maxlat": 40.7894409, + "maxlon": -73.9109360 + }, + "nodes": [ + 5622854052, + 5622854053 + ], + "geometry": [ + { "lat": 40.7894409, "lon": -73.9109360 }, + { "lat": 40.7890733, "lon": -73.9110338 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588773704, + "bounds": { + "minlat": 40.7885280, + "minlon": -73.9098102, + "maxlat": 40.7887669, + "maxlon": -73.9094480 + }, + "nodes": [ + 5622854054, + 1243106479, + 5622854055 + ], + "geometry": [ + { "lat": 40.7885280, "lon": -73.9094480 }, + { "lat": 40.7886896, "lon": -73.9096952 }, + { "lat": 40.7887669, "lon": -73.9098102 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588773705, + "bounds": { + "minlat": 40.7888301, + "minlon": -73.9102186, + "maxlat": 40.7891588, + "maxlon": -73.9097319 + }, + "nodes": [ + 5622854056, + 5622854059, + 5622854057 + ], + "geometry": [ + { "lat": 40.7891588, "lon": -73.9102186 }, + { "lat": 40.7889393, "lon": -73.9098935 }, + { "lat": 40.7888301, "lon": -73.9097319 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588773706, + "bounds": { + "minlat": 40.7889393, + "minlon": -73.9098935, + "maxlat": 40.7892889, + "maxlon": -73.9094765 + }, + "nodes": [ + 5622854058, + 5622854059 + ], + "geometry": [ + { "lat": 40.7892889, "lon": -73.9094765 }, + { "lat": 40.7889393, "lon": -73.9098935 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588773707, + "bounds": { + "minlat": 40.7891824, + "minlon": -73.9094765, + "maxlat": 40.7892889, + "maxlon": -73.9093074 + }, + "nodes": [ + 5622854058, + 5622854060 + ], + "geometry": [ + { "lat": 40.7892889, "lon": -73.9094765 }, + { "lat": 40.7891824, "lon": -73.9093074 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588773708, + "bounds": { + "minlat": 40.7891209, + "minlon": -73.9115965, + "maxlat": 40.7895109, + "maxlon": -73.9087566 + }, + "nodes": [ + 7040709751, + 5622854052, + 5622397252, + 5620446026, + 5622854063, + 5622854064, + 5622854065, + 5622858505, + 5622854066, + 5622854067 + ], + "geometry": [ + { "lat": 40.7893821, "lon": -73.9115965 }, + { "lat": 40.7894409, "lon": -73.9109360 }, + { "lat": 40.7895109, "lon": -73.9101825 }, + { "lat": 40.7895022, "lon": -73.9097321 }, + { "lat": 40.7894520, "lon": -73.9094502 }, + { "lat": 40.7893982, "lon": -73.9092743 }, + { "lat": 40.7893551, "lon": -73.9091659 }, + { "lat": 40.7893380, "lon": -73.9091223 }, + { "lat": 40.7892085, "lon": -73.9088922 }, + { "lat": 40.7891209, "lon": -73.9087566 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Shore Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 588774238, + "bounds": { + "minlat": 40.7891824, + "minlon": -73.9093074, + "maxlat": 40.7893380, + "maxlon": -73.9091223 + }, + "nodes": [ + 5622858505, + 5622854060 + ], + "geometry": [ + { "lat": 40.7893380, "lon": -73.9091223 }, + { "lat": 40.7891824, "lon": -73.9093074 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588777268, + "bounds": { + "minlat": 40.7809171, + "minlon": -73.9077718, + "maxlat": 40.7823870, + "maxlon": -73.9054332 + }, + "nodes": [ + 5622881185, + 5622881186, + 5622881187, + 5622881188 + ], + "geometry": [ + { "lat": 40.7823870, "lon": -73.9077718 }, + { "lat": 40.7812680, "lon": -73.9062162 }, + { "lat": 40.7811717, "lon": -73.9058048 }, + { "lat": 40.7809171, "lon": -73.9054332 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588780137, + "bounds": { + "minlat": 40.7851332, + "minlon": -73.9085316, + "maxlat": 40.7862033, + "maxlon": -73.9071988 + }, + "nodes": [ + 5622911344, + 5622911345, + 5622911346, + 5622911347 + ], + "geometry": [ + { "lat": 40.7851332, "lon": -73.9083609 }, + { "lat": 40.7861054, "lon": -73.9071988 }, + { "lat": 40.7862033, "lon": -73.9073568 }, + { "lat": 40.7852463, "lon": -73.9085316 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588887161, + "bounds": { + "minlat": 40.7986638, + "minlon": -73.9354844, + "maxlat": 40.7998190, + "maxlon": -73.9334651 + }, + "nodes": [ + 3931524258, + 7926756720, + 9153715329, + 3931524257, + 3931519756, + 4493020098, + 9153715328, + 3931519755, + 7926756762, + 9153715327, + 3931519754, + 9153715326, + 7926724565, + 13239384168, + 7926756764, + 3931519753 + ], + "geometry": [ + { "lat": 40.7998190, "lon": -73.9354670 }, + { "lat": 40.7997397, "lon": -73.9354806 }, + { "lat": 40.7997113, "lon": -73.9354841 }, + { "lat": 40.7996780, "lon": -73.9354844 }, + { "lat": 40.7996446, "lon": -73.9354816 }, + { "lat": 40.7996192, "lon": -73.9354743 }, + { "lat": 40.7995922, "lon": -73.9354633 }, + { "lat": 40.7995627, "lon": -73.9354474 }, + { "lat": 40.7995294, "lon": -73.9354191 }, + { "lat": 40.7995007, "lon": -73.9353854 }, + { "lat": 40.7994721, "lon": -73.9353470 }, + { "lat": 40.7994451, "lon": -73.9352988 }, + { "lat": 40.7994207, "lon": -73.9352464 }, + { "lat": 40.7987480, "lon": -73.9336570 }, + { "lat": 40.7987238, "lon": -73.9335998 }, + { "lat": 40.7986638, "lon": -73.9334651 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "name": "East 120th Street", + "name:ru": "Восточная 120-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 588986533, + "bounds": { + "minlat": 40.7846464, + "minlon": -73.9089576, + "maxlat": 40.7849474, + "maxlon": -73.9085239 + }, + "nodes": [ + 5624533862, + 5624533863 + ], + "geometry": [ + { "lat": 40.7849474, "lon": -73.9089576 }, + { "lat": 40.7846464, "lon": -73.9085239 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588986537, + "bounds": { + "minlat": 40.7841294, + "minlon": -73.9089416, + "maxlat": 40.7843210, + "maxlon": -73.9087053 + }, + "nodes": [ + 5624533868, + 5624533869 + ], + "geometry": [ + { "lat": 40.7843210, "lon": -73.9087053 }, + { "lat": 40.7841294, "lon": -73.9089416 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588986540, + "bounds": { + "minlat": 40.7839974, + "minlon": -73.9087503, + "maxlat": 40.7841895, + "maxlon": -73.9085136 + }, + "nodes": [ + 5624533870, + 5624533871 + ], + "geometry": [ + { "lat": 40.7841895, "lon": -73.9085136 }, + { "lat": 40.7839974, "lon": -73.9087503 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588986542, + "bounds": { + "minlat": 40.7841208, + "minlon": -73.9086277, + "maxlat": 40.7848833, + "maxlon": -73.9076382 + }, + "nodes": [ + 5624533872, + 5624533873, + 5624533874, + 5624533875 + ], + "geometry": [ + { "lat": 40.7848833, "lon": -73.9079836 }, + { "lat": 40.7843526, "lon": -73.9086277 }, + { "lat": 40.7841208, "lon": -73.9082977 }, + { "lat": 40.7846545, "lon": -73.9076382 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 588986544, + "bounds": { + "minlat": 40.7838626, + "minlon": -73.9085550, + "maxlat": 40.7841208, + "maxlon": -73.9082977 + }, + "nodes": [ + 5624533876, + 5624533877, + 5624533874 + ], + "geometry": [ + { "lat": 40.7838626, "lon": -73.9085550 }, + { "lat": 40.7840666, "lon": -73.9083017 }, + { "lat": 40.7841208, "lon": -73.9082977 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 589002702, + "bounds": { + "minlat": 40.7857930, + "minlon": -73.9126301, + "maxlat": 40.7860351, + "maxlon": -73.9123633 + }, + "nodes": [ + 5624653272, + 5622115337 + ], + "geometry": [ + { "lat": 40.7860351, "lon": -73.9123633 }, + { "lat": 40.7857930, "lon": -73.9126301 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 589004149, + "bounds": { + "minlat": 40.7858087, + "minlon": -73.9144398, + "maxlat": 40.7863070, + "maxlon": -73.9138399 + }, + "nodes": [ + 5624663825, + 5624663826 + ], + "geometry": [ + { "lat": 40.7858087, "lon": -73.9144398 }, + { "lat": 40.7863070, "lon": -73.9138399 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 589004151, + "bounds": { + "minlat": 40.7857145, + "minlon": -73.9143028, + "maxlat": 40.7862178, + "maxlon": -73.9136858 + }, + "nodes": [ + 5624663827, + 5624663828 + ], + "geometry": [ + { "lat": 40.7857145, "lon": -73.9143028 }, + { "lat": 40.7862178, "lon": -73.9136858 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 589096641, + "bounds": { + "minlat": 40.8218279, + "minlon": -73.9251395, + "maxlat": 40.8226145, + "maxlon": -73.9247057 + }, + "nodes": [ + 2409024144, + 12162740255, + 12162740256, + 2409024151, + 2409024149, + 2409024156, + 2409024160 + ], + "geometry": [ + { "lat": 40.8218279, "lon": -73.9251395 }, + { "lat": 40.8218620, "lon": -73.9251192 }, + { "lat": 40.8220024, "lon": -73.9250348 }, + { "lat": 40.8221254, "lon": -73.9249649 }, + { "lat": 40.8222571, "lon": -73.9248927 }, + { "lat": 40.8224094, "lon": -73.9248130 }, + { "lat": 40.8226145, "lon": -73.9247057 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 589104139, + "bounds": { + "minlat": 40.8276692, + "minlon": -73.9258471, + "maxlat": 40.8279777, + "maxlon": -73.9248693 + }, + "nodes": [ + 2408448909, + 9910729409, + 12163643899, + 9910729415, + 2411145323 + ], + "geometry": [ + { "lat": 40.8276692, "lon": -73.9248693 }, + { "lat": 40.8276960, "lon": -73.9249526 }, + { "lat": 40.8279282, "lon": -73.9256903 }, + { "lat": 40.8279502, "lon": -73.9257599 }, + { "lat": 40.8279777, "lon": -73.9258471 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 589104140, + "bounds": { + "minlat": 40.8273734, + "minlon": -73.9250408, + "maxlat": 40.8275127, + "maxlon": -73.9249606 + }, + "nodes": [ + 2385899523, + 2411416838 + ], + "geometry": [ + { "lat": 40.8273734, "lon": -73.9250408 }, + { "lat": 40.8275127, "lon": -73.9249606 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Gerard Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 589104141, + "bounds": { + "minlat": 40.8271341, + "minlon": -73.9250408, + "maxlat": 40.8273734, + "maxlon": -73.9241391 + }, + "nodes": [ + 2385899523, + 2411418428, + 9166334416, + 12163704717, + 2408448901 + ], + "geometry": [ + { "lat": 40.8273734, "lon": -73.9250408 }, + { "lat": 40.8273447, "lon": -73.9249384 }, + { "lat": 40.8271650, "lon": -73.9243135 }, + { "lat": 40.8271511, "lon": -73.9242453 }, + { "lat": 40.8271341, "lon": -73.9241391 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 589494594, + "bounds": { + "minlat": 40.7421447, + "minlon": -74.0081824, + "maxlat": 40.7426313, + "maxlon": -74.0078571 + }, + "nodes": [ + 42454328, + 10963538510, + 9015896827, + 9015896823, + 246648219 + ], + "geometry": [ + { "lat": 40.7421447, "lon": -74.0081824 }, + { "lat": 40.7421845, "lon": -74.0081405 }, + { "lat": 40.7423371, "lon": -74.0080271 }, + { "lat": 40.7424352, "lon": -74.0079568 }, + { "lat": 40.7426313, "lon": -74.0078571 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 589494595, + "bounds": { + "minlat": 40.7539186, + "minlon": -73.9996344, + "maxlat": 40.7542879, + "maxlon": -73.9993652 + }, + "nodes": [ + 42446668, + 5165666198, + 5481855556 + ], + "geometry": [ + { "lat": 40.7539186, "lon": -73.9996344 }, + { "lat": 40.7539853, "lon": -73.9995861 }, + { "lat": 40.7542879, "lon": -73.9993652 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 589494596, + "bounds": { + "minlat": 40.7543070, + "minlon": -73.9991485, + "maxlat": 40.7545910, + "maxlon": -73.9984789 + }, + "nodes": [ + 42437670, + 8261123388, + 6905716423 + ], + "geometry": [ + { "lat": 40.7545910, "lon": -73.9991485 }, + { "lat": 40.7545330, "lon": -73.9990119 }, + { "lat": 40.7543070, "lon": -73.9984789 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "||right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 589494600, + "bounds": { + "minlat": 40.7551965, + "minlon": -73.9959659, + "maxlat": 40.7560047, + "maxlon": -73.9951130 + }, + "nodes": [ + 427840973, + 9971300873, + 427840972, + 9971300874, + 427840971, + 9971300875, + 427840967 + ], + "geometry": [ + { "lat": 40.7551965, "lon": -73.9959659 }, + { "lat": 40.7552520, "lon": -73.9958826 }, + { "lat": 40.7553177, "lon": -73.9957928 }, + { "lat": 40.7553831, "lon": -73.9957164 }, + { "lat": 40.7554462, "lon": -73.9956466 }, + { "lat": 40.7558293, "lon": -73.9952392 }, + { "lat": 40.7560047, "lon": -73.9951130 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "note": "this is supposed to be a local truck route but signs say no trucks", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 589535959, + "bounds": { + "minlat": 40.8008881, + "minlon": -73.9108197, + "maxlat": 40.8011129, + "maxlon": -73.9104137 + }, + "nodes": [ + 5629592173, + 5859955135, + 5629592174 + ], + "geometry": [ + { "lat": 40.8011129, "lon": -73.9108197 }, + { "lat": 40.8009416, "lon": -73.9105103 }, + { "lat": 40.8008881, "lon": -73.9104137 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 589927692, + "bounds": { + "minlat": 40.7360471, + "minlon": -73.9769112, + "maxlat": 40.7360817, + "maxlon": -73.9766121 + }, + "nodes": [ + 5633188740, + 5684427049, + 5684427051 + ], + "geometry": [ + { "lat": 40.7360471, "lon": -73.9769112 }, + { "lat": 40.7360586, "lon": -73.9768196 }, + { "lat": 40.7360817, "lon": -73.9766121 } + ], + "tags": { + "highway": "service", + "maxspeed": "15 mph", + "name": "East 23rd Street Access Road", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 590405003, + "bounds": { + "minlat": 40.7954151, + "minlon": -73.9319863, + "maxlat": 40.7954456, + "maxlon": -73.9319171 + }, + "nodes": [ + 4443803074, + 6216836461 + ], + "geometry": [ + { "lat": 40.7954151, "lon": -73.9319171 }, + { "lat": 40.7954456, "lon": -73.9319863 } + ], + "tags": { + "highway": "service", + "name": "East 117th Street", + "name:ru": "Восточная 117-я стрит", + "name_1": "East 117 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 590431010, + "bounds": { + "minlat": 40.7851683, + "minlon": -73.9474127, + "maxlat": 40.7852713, + "maxlon": -73.9473373 + }, + "nodes": [ + 5637143330, + 6181478381, + 5618033758 + ], + "geometry": [ + { "lat": 40.7852713, "lon": -73.9473373 }, + { "lat": 40.7851948, "lon": -73.9473935 }, + { "lat": 40.7851683, "lon": -73.9474127 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 590431014, + "bounds": { + "minlat": 40.7832360, + "minlon": -73.9477905, + "maxlat": 40.7832858, + "maxlon": -73.9476703 + }, + "nodes": [ + 5637143331, + 6181478379, + 6181478353 + ], + "geometry": [ + { "lat": 40.7832858, "lon": -73.9477905 }, + { "lat": 40.7832566, "lon": -73.9477200 }, + { "lat": 40.7832360, "lon": -73.9476703 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 590890556, + "bounds": { + "minlat": 40.7861621, + "minlon": -73.9497629, + "maxlat": 40.7862402, + "maxlon": -73.9497046 + }, + "nodes": [ + 5640800357, + 6221717932, + 5640764977 + ], + "geometry": [ + { "lat": 40.7862402, "lon": -73.9497046 }, + { "lat": 40.7861864, "lon": -73.9497440 }, + { "lat": 40.7861621, "lon": -73.9497629 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 590890563, + "bounds": { + "minlat": 40.7859342, + "minlon": -73.9493790, + "maxlat": 40.7860611, + "maxlon": -73.9492886 + }, + "nodes": [ + 5640800365, + 6221717959, + 5640766129 + ], + "geometry": [ + { "lat": 40.7860611, "lon": -73.9492886 }, + { "lat": 40.7860097, "lon": -73.9493263 }, + { "lat": 40.7859342, "lon": -73.9493790 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 591756888, + "bounds": { + "minlat": 40.7336094, + "minlon": -74.0028114, + "maxlat": 40.7336357, + "maxlon": -74.0026286 + }, + "nodes": [ + 4679523598, + 42430805 + ], + "geometry": [ + { "lat": 40.7336357, "lon": -74.0026286 }, + { "lat": 40.7336094, "lon": -74.0028114 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Christopher Street", + "name:ru": "Кристофер-стрит", + "oneway": "yes", + "parking:right": "no", + "parking:right:restriction": "no_parking", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1086990", + "wikipedia": "en:Christopher Street" + } +}, +{ + "type": "way", + "id": 591772210, + "bounds": { + "minlat": 40.7175538, + "minlon": -74.0012676, + "maxlat": 40.7189641, + "maxlon": -73.9993088 + }, + "nodes": [ + 42440810, + 7641718054, + 12197904826, + 8307641565, + 42427316, + 8307641567, + 12197904827, + 12197904835, + 8307641786, + 5706569898, + 8307641788, + 12197904834, + 11658710515, + 591995273 + ], + "geometry": [ + { "lat": 40.7175538, "lon": -73.9993088 }, + { "lat": 40.7175932, "lon": -73.9993632 }, + { "lat": 40.7179313, "lon": -73.9998298 }, + { "lat": 40.7179685, "lon": -73.9998819 }, + { "lat": 40.7180188, "lon": -73.9999527 }, + { "lat": 40.7180792, "lon": -74.0000374 }, + { "lat": 40.7181214, "lon": -74.0000967 }, + { "lat": 40.7183435, "lon": -74.0004095 }, + { "lat": 40.7183761, "lon": -74.0004538 }, + { "lat": 40.7184492, "lon": -74.0005519 }, + { "lat": 40.7184993, "lon": -74.0006179 }, + { "lat": 40.7185377, "lon": -74.0006711 }, + { "lat": 40.7187262, "lon": -74.0009337 }, + { "lat": 40.7189641, "lon": -74.0012676 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "no", + "expressway": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "no", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 591772211, + "bounds": { + "minlat": 40.7172210, + "minlon": -73.9994477, + "maxlat": 40.7173295, + "maxlon": -73.9989003 + }, + "nodes": [ + 42447255, + 7641718012, + 8996353562, + 2572245388, + 11514578311, + 11514578310, + 7641859742, + 11514578312, + 11514578315, + 11514578316, + 2572245396 + ], + "geometry": [ + { "lat": 40.7173295, "lon": -73.9994477 }, + { "lat": 40.7173098, "lon": -73.9993836 }, + { "lat": 40.7172367, "lon": -73.9991482 }, + { "lat": 40.7172305, "lon": -73.9991255 }, + { "lat": 40.7172246, "lon": -73.9990960 }, + { "lat": 40.7172212, "lon": -73.9990717 }, + { "lat": 40.7172210, "lon": -73.9990445 }, + { "lat": 40.7172242, "lon": -73.9990083 }, + { "lat": 40.7172315, "lon": -73.9989763 }, + { "lat": 40.7172432, "lon": -73.9989393 }, + { "lat": 40.7172605, "lon": -73.9989003 } + ], + "tags": { + "hgv": "designated", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Walker Street", + "name:etymology:wikidata": "Q1446684", + "name:ko": "워커 스트리트", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 591821087, + "bounds": { + "minlat": 40.7008046, + "minlon": -73.9913099, + "maxlat": 40.7009921, + "maxlon": -73.9910857 + }, + "nodes": [ + 42519202, + 5649546987 + ], + "geometry": [ + { "lat": 40.7009921, "lon": -73.9913099 }, + { "lat": 40.7008046, "lon": -73.9910857 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201", + "turn:lanes": "left|left;through|through" + } +}, +{ + "type": "way", + "id": 592216705, + "bounds": { + "minlat": 40.7791673, + "minlon": -74.0160322, + "maxlat": 40.7796902, + "maxlon": -74.0154958 + }, + "nodes": [ + 5652754111, + 7377177671, + 5652754112, + 5652754114, + 7377177672, + 5652754113 + ], + "geometry": [ + { "lat": 40.7791673, "lon": -74.0154958 }, + { "lat": 40.7791971, "lon": -74.0155666 }, + { "lat": 40.7793934, "lon": -74.0160322 }, + { "lat": 40.7795414, "lon": -74.0159026 }, + { "lat": 40.7796393, "lon": -74.0158168 }, + { "lat": 40.7796902, "lon": -74.0157754 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 592216706, + "bounds": { + "minlat": 40.7793562, + "minlon": -74.0159026, + "maxlat": 40.7795414, + "maxlon": -74.0154939 + }, + "nodes": [ + 5652754114, + 5652754115 + ], + "geometry": [ + { "lat": 40.7795414, "lon": -74.0159026 }, + { "lat": 40.7793562, "lon": -74.0154939 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 592216708, + "bounds": { + "minlat": 40.7795963, + "minlon": -74.0177006, + "maxlat": 40.7799754, + "maxlon": -74.0171720 + }, + "nodes": [ + 5652754122, + 7377177669, + 5652754126, + 5652754123, + 5652754124, + 5652754127, + 7377177670, + 5652754125 + ], + "geometry": [ + { "lat": 40.7795963, "lon": -74.0173527 }, + { "lat": 40.7796548, "lon": -74.0173061 }, + { "lat": 40.7797443, "lon": -74.0172348 }, + { "lat": 40.7798232, "lon": -74.0171720 }, + { "lat": 40.7799754, "lon": -74.0175086 }, + { "lat": 40.7798951, "lon": -74.0175798 }, + { "lat": 40.7798143, "lon": -74.0176516 }, + { "lat": 40.7797605, "lon": -74.0177006 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 592216709, + "bounds": { + "minlat": 40.7797443, + "minlon": -74.0175798, + "maxlat": 40.7798951, + "maxlon": -74.0172348 + }, + "nodes": [ + 5652754126, + 5652754127 + ], + "geometry": [ + { "lat": 40.7797443, "lon": -74.0172348 }, + { "lat": 40.7798951, "lon": -74.0175798 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 592374690, + "bounds": { + "minlat": 40.7833110, + "minlon": -73.9459059, + "maxlat": 40.7837503, + "maxlon": -73.9448639 + }, + "nodes": [ + 5653832464, + 7138043096, + 7138030353, + 6070360952, + 6162473819 + ], + "geometry": [ + { "lat": 40.7837503, "lon": -73.9459059 }, + { "lat": 40.7836181, "lon": -73.9455926 }, + { "lat": 40.7834389, "lon": -73.9451695 }, + { "lat": 40.7833680, "lon": -73.9449996 }, + { "lat": 40.7833110, "lon": -73.9448639 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:forward": "left|through|through|through", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 593602984, + "bounds": { + "minlat": 40.8270562, + "minlon": -73.9729979, + "maxlat": 40.8279459, + "maxlon": -73.9725767 + }, + "nodes": [ + 5362479156, + 9800785721, + 5662656741, + 5665246162, + 5662656742, + 5662656743 + ], + "geometry": [ + { "lat": 40.8270562, "lon": -73.9729231 }, + { "lat": 40.8271212, "lon": -73.9729482 }, + { "lat": 40.8272500, "lon": -73.9729979 }, + { "lat": 40.8274856, "lon": -73.9728508 }, + { "lat": 40.8276434, "lon": -73.9727523 }, + { "lat": 40.8279459, "lon": -73.9725767 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 593602985, + "bounds": { + "minlat": 40.8243918, + "minlon": -73.9756682, + "maxlat": 40.8246638, + "maxlon": -73.9750936 + }, + "nodes": [ + 5662656744, + 5662656745, + 5662656746 + ], + "geometry": [ + { "lat": 40.8243918, "lon": -73.9750936 }, + { "lat": 40.8245613, "lon": -73.9754274 }, + { "lat": 40.8246638, "lon": -73.9756682 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 593602986, + "bounds": { + "minlat": 40.8207398, + "minlon": -73.9778875, + "maxlat": 40.8216059, + "maxlon": -73.9771981 + }, + "nodes": [ + 5662656748, + 5662656749, + 5662656750, + 5662656751, + 5662656752, + 5662656753 + ], + "geometry": [ + { "lat": 40.8207398, "lon": -73.9778875 }, + { "lat": 40.8208956, "lon": -73.9777603 }, + { "lat": 40.8208470, "lon": -73.9775915 }, + { "lat": 40.8212289, "lon": -73.9773681 }, + { "lat": 40.8215139, "lon": -73.9771981 }, + { "lat": 40.8216059, "lon": -73.9775014 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 593602987, + "bounds": { + "minlat": 40.8208956, + "minlon": -73.9779314, + "maxlat": 40.8209779, + "maxlon": -73.9777603 + }, + "nodes": [ + 5662656749, + 5662656754 + ], + "geometry": [ + { "lat": 40.8208956, "lon": -73.9777603 }, + { "lat": 40.8209779, "lon": -73.9779314 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 593602988, + "bounds": { + "minlat": 40.8240445, + "minlon": -73.9758450, + "maxlat": 40.8241839, + "maxlon": -73.9756000 + }, + "nodes": [ + 5662656758, + 5662656755 + ], + "geometry": [ + { "lat": 40.8240445, "lon": -73.9756000 }, + { "lat": 40.8241839, "lon": -73.9758450 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 593602989, + "bounds": { + "minlat": 40.8240286, + "minlon": -73.9756000, + "maxlat": 40.8240460, + "maxlon": -73.9753205 + }, + "nodes": [ + 103137123, + 5662656760, + 5662656759, + 5662656758 + ], + "geometry": [ + { "lat": 40.8240286, "lon": -73.9753205 }, + { "lat": 40.8240460, "lon": -73.9754360 }, + { "lat": 40.8240414, "lon": -73.9755386 }, + { "lat": 40.8240445, "lon": -73.9756000 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 593602990, + "bounds": { + "minlat": 40.8238451, + "minlon": -73.9756000, + "maxlat": 40.8240445, + "maxlon": -73.9754172 + }, + "nodes": [ + 5662656758, + 5662656756, + 5662656757, + 103137122 + ], + "geometry": [ + { "lat": 40.8240445, "lon": -73.9756000 }, + { "lat": 40.8239811, "lon": -73.9755539 }, + { "lat": 40.8239128, "lon": -73.9754758 }, + { "lat": 40.8238451, "lon": -73.9754172 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 593602991, + "bounds": { + "minlat": 40.8242826, + "minlon": -73.9758702, + "maxlat": 40.8243644, + "maxlon": -73.9758223 + }, + "nodes": [ + 5662656762, + 5662656761, + 5662656747 + ], + "geometry": [ + { "lat": 40.8242826, "lon": -73.9758223 }, + { "lat": 40.8243173, "lon": -73.9758406 }, + { "lat": 40.8243644, "lon": -73.9758702 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 593602992, + "bounds": { + "minlat": 40.8241839, + "minlon": -73.9758643, + "maxlat": 40.8242826, + "maxlon": -73.9758223 + }, + "nodes": [ + 5662656755, + 5662656763, + 5662656762 + ], + "geometry": [ + { "lat": 40.8241839, "lon": -73.9758450 }, + { "lat": 40.8242109, "lon": -73.9758643 }, + { "lat": 40.8242826, "lon": -73.9758223 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 593971620, + "bounds": { + "minlat": 40.8272559, + "minlon": -73.9728508, + "maxlat": 40.8274856, + "maxlon": -73.9721691 + }, + "nodes": [ + 5665246162, + 5665246163 + ], + "geometry": [ + { "lat": 40.8274856, "lon": -73.9728508 }, + { "lat": 40.8272559, "lon": -73.9721691 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 594230555, + "bounds": { + "minlat": 40.7259068, + "minlon": -73.9260687, + "maxlat": 40.7272828, + "maxlon": -73.9250558 + }, + "nodes": [ + 4695098042, + 2843109012, + 4695098041 + ], + "geometry": [ + { "lat": 40.7259068, "lon": -73.9260687 }, + { "lat": 40.7271326, "lon": -73.9251655 }, + { "lat": 40.7272828, "lon": -73.9250558 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 594557552, + "bounds": { + "minlat": 40.7945683, + "minlon": -73.9694734, + "maxlat": 40.7947248, + "maxlon": -73.9693545 + }, + "nodes": [ + 5669156315, + 7801775764, + 13050963846 + ], + "geometry": [ + { "lat": 40.7945683, "lon": -73.9694734 }, + { "lat": 40.7946406, "lon": -73.9694174 }, + { "lat": 40.7947248, "lon": -73.9693545 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 594809588, + "bounds": { + "minlat": 40.8031448, + "minlon": -73.9960788, + "maxlat": 40.8033062, + "maxlon": -73.9948757 + }, + "nodes": [ + 5671083038, + 5671083045, + 8668510097, + 8668510092, + 5707730000 + ], + "geometry": [ + { "lat": 40.8033062, "lon": -73.9960788 }, + { "lat": 40.8031618, "lon": -73.9953051 }, + { "lat": 40.8031959, "lon": -73.9951919 }, + { "lat": 40.8032124, "lon": -73.9951182 }, + { "lat": 40.8031448, "lon": -73.9948757 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 594809590, + "bounds": { + "minlat": 40.8035008, + "minlon": -73.9960529, + "maxlat": 40.8036660, + "maxlon": -73.9953029 + }, + "nodes": [ + 5671083046, + 5671083047, + 5671083048, + 5671083049 + ], + "geometry": [ + { "lat": 40.8035008, "lon": -73.9960529 }, + { "lat": 40.8035641, "lon": -73.9955470 }, + { "lat": 40.8036348, "lon": -73.9954698 }, + { "lat": 40.8036660, "lon": -73.9953029 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 594944766, + "bounds": { + "minlat": 40.7073330, + "minlon": -74.0147192, + "maxlat": 40.7074280, + "maxlon": -74.0146924 + }, + "nodes": [ + 5671809909, + 42438030 + ], + "geometry": [ + { "lat": 40.7073330, "lon": -74.0147192 }, + { "lat": 40.7074280, "lon": -74.0146924 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 594979260, + "bounds": { + "minlat": 40.8442093, + "minlon": -74.0076475, + "maxlat": 40.8444610, + "maxlon": -74.0075638 + }, + "nodes": [ + 298567034, + 5672006422 + ], + "geometry": [ + { "lat": 40.8442093, "lon": -74.0076475 }, + { "lat": 40.8444610, "lon": -74.0075638 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 594979264, + "bounds": { + "minlat": 40.8444610, + "minlon": -74.0075638, + "maxlat": 40.8446430, + "maxlon": -74.0073515 + }, + "nodes": [ + 5672006422, + 5672006437, + 5672006423 + ], + "geometry": [ + { "lat": 40.8444610, "lon": -74.0075638 }, + { "lat": 40.8445203, "lon": -74.0074991 }, + { "lat": 40.8446430, "lon": -74.0073515 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 594979267, + "bounds": { + "minlat": 40.8444610, + "minlon": -74.0076813, + "maxlat": 40.8444721, + "maxlon": -74.0075638 + }, + "nodes": [ + 5672006422, + 5672006507 + ], + "geometry": [ + { "lat": 40.8444610, "lon": -74.0075638 }, + { "lat": 40.8444721, "lon": -74.0076813 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979272, + "bounds": { + "minlat": 40.8444147, + "minlon": -74.0088046, + "maxlat": 40.8445111, + "maxlon": -74.0086495 + }, + "nodes": [ + 5672006434, + 5672006435 + ], + "geometry": [ + { "lat": 40.8445111, "lon": -74.0086495 }, + { "lat": 40.8444147, "lon": -74.0088046 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 594979275, + "bounds": { + "minlat": 40.8445854, + "minlon": -74.0086187, + "maxlat": 40.8448250, + "maxlon": -74.0085645 + }, + "nodes": [ + 5672006433, + 5672006436 + ], + "geometry": [ + { "lat": 40.8445854, "lon": -74.0086187 }, + { "lat": 40.8448250, "lon": -74.0085645 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979279, + "bounds": { + "minlat": 40.8445203, + "minlon": -74.0085422, + "maxlat": 40.8452874, + "maxlon": -74.0074855 + }, + "nodes": [ + 5672006437, + 11530187211, + 5672006438, + 5672006439, + 11530187216, + 11530187217, + 5672006440, + 5672006441, + 5672006442, + 5672006443, + 5672006444, + 5672006445, + 5672006446, + 5672006447 + ], + "geometry": [ + { "lat": 40.8445203, "lon": -74.0074991 }, + { "lat": 40.8445628, "lon": -74.0075850 }, + { "lat": 40.8445969, "lon": -74.0076539 }, + { "lat": 40.8446175, "lon": -74.0076866 }, + { "lat": 40.8446962, "lon": -74.0078384 }, + { "lat": 40.8448025, "lon": -74.0080435 }, + { "lat": 40.8450376, "lon": -74.0084971 }, + { "lat": 40.8450716, "lon": -74.0085137 }, + { "lat": 40.8451466, "lon": -74.0085422 }, + { "lat": 40.8451965, "lon": -74.0085347 }, + { "lat": 40.8452556, "lon": -74.0084971 }, + { "lat": 40.8452874, "lon": -74.0084236 }, + { "lat": 40.8452760, "lon": -74.0083576 }, + { "lat": 40.8448298, "lon": -74.0074855 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 594979284, + "bounds": { + "minlat": 40.8445111, + "minlon": -74.0086495, + "maxlat": 40.8445854, + "maxlon": -74.0086187 + }, + "nodes": [ + 5672006433, + 5672006434 + ], + "geometry": [ + { "lat": 40.8445854, "lon": -74.0086187 }, + { "lat": 40.8445111, "lon": -74.0086495 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979289, + "bounds": { + "minlat": 40.8446430, + "minlon": -74.0073546, + "maxlat": 40.8456657, + "maxlon": -74.0070632 + }, + "nodes": [ + 5672006423, + 5672006424, + 5672006425, + 5672006426, + 5672006427, + 5672006428, + 5672006429, + 5672006430, + 10973420250, + 5672006431 + ], + "geometry": [ + { "lat": 40.8446430, "lon": -74.0073515 }, + { "lat": 40.8447494, "lon": -74.0071390 }, + { "lat": 40.8447869, "lon": -74.0070815 }, + { "lat": 40.8448344, "lon": -74.0070645 }, + { "lat": 40.8448788, "lon": -74.0070632 }, + { "lat": 40.8449223, "lon": -74.0071024 }, + { "lat": 40.8450736, "lon": -74.0073507 }, + { "lat": 40.8451052, "lon": -74.0073546 }, + { "lat": 40.8455900, "lon": -74.0071489 }, + { "lat": 40.8456657, "lon": -74.0071168 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 594979292, + "bounds": { + "minlat": 40.8440594, + "minlon": -74.0050199, + "maxlat": 40.8441078, + "maxlon": -74.0046905 + }, + "nodes": [ + 5672006449, + 5672006450 + ], + "geometry": [ + { "lat": 40.8440594, "lon": -74.0046905 }, + { "lat": 40.8441078, "lon": -74.0050199 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 594979294, + "bounds": { + "minlat": 40.8439456, + "minlon": -74.0063476, + "maxlat": 40.8446093, + "maxlon": -74.0050199 + }, + "nodes": [ + 5672006450, + 5672006451, + 5672006452, + 5672006453, + 5672006482, + 5672006454, + 5672006455, + 5672006498, + 5672006456, + 5672006458, + 5672006459, + 9915262419, + 9915262417, + 9915262418, + 5672006460, + 5672006450 + ], + "geometry": [ + { "lat": 40.8441078, "lon": -74.0050199 }, + { "lat": 40.8441241, "lon": -74.0051588 }, + { "lat": 40.8441866, "lon": -74.0053540 }, + { "lat": 40.8442024, "lon": -74.0053908 }, + { "lat": 40.8443497, "lon": -74.0056796 }, + { "lat": 40.8446093, "lon": -74.0061883 }, + { "lat": 40.8444424, "lon": -74.0063476 }, + { "lat": 40.8441944, "lon": -74.0058322 }, + { "lat": 40.8441182, "lon": -74.0056477 }, + { "lat": 40.8440422, "lon": -74.0054243 }, + { "lat": 40.8439470, "lon": -74.0051272 }, + { "lat": 40.8439456, "lon": -74.0051166 }, + { "lat": 40.8439459, "lon": -74.0051065 }, + { "lat": 40.8439492, "lon": -74.0050963 }, + { "lat": 40.8439555, "lon": -74.0050889 }, + { "lat": 40.8441078, "lon": -74.0050199 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979298, + "bounds": { + "minlat": 40.8455895, + "minlon": -74.0062304, + "maxlat": 40.8460013, + "maxlon": -74.0057899 + }, + "nodes": [ + 5672006471, + 5672006475 + ], + "geometry": [ + { "lat": 40.8455895, "lon": -74.0062304 }, + { "lat": 40.8460013, "lon": -74.0057899 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979301, + "bounds": { + "minlat": 40.8460013, + "minlon": -74.0057899, + "maxlat": 40.8461693, + "maxlon": -74.0056103 + }, + "nodes": [ + 5672006475, + 5672006477 + ], + "geometry": [ + { "lat": 40.8460013, "lon": -74.0057899 }, + { "lat": 40.8461693, "lon": -74.0056103 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 594979302, + "bounds": { + "minlat": 40.8445875, + "minlon": -74.0050312, + "maxlat": 40.8446622, + "maxlon": -74.0045411 + }, + "nodes": [ + 103129337, + 9915262867, + 5672006489 + ], + "geometry": [ + { "lat": 40.8445875, "lon": -74.0045411 }, + { "lat": 40.8446134, "lon": -74.0046354 }, + { "lat": 40.8446622, "lon": -74.0050312 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 594979304, + "bounds": { + "minlat": 40.8446622, + "minlon": -74.0056173, + "maxlat": 40.8447225, + "maxlon": -74.0050312 + }, + "nodes": [ + 5672006489, + 9915262866, + 5672006499, + 5672006484, + 5672006502, + 5672006481, + 9915262981, + 5672006490 + ], + "geometry": [ + { "lat": 40.8446622, "lon": -74.0050312 }, + { "lat": 40.8446791, "lon": -74.0051640 }, + { "lat": 40.8446877, "lon": -74.0052315 }, + { "lat": 40.8447103, "lon": -74.0054086 }, + { "lat": 40.8447157, "lon": -74.0054437 }, + { "lat": 40.8447225, "lon": -74.0054874 }, + { "lat": 40.8447192, "lon": -74.0055049 }, + { "lat": 40.8446978, "lon": -74.0056173 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979305, + "bounds": { + "minlat": 40.8441944, + "minlon": -74.0058322, + "maxlat": 40.8446622, + "maxlon": -74.0050312 + }, + "nodes": [ + 5672006498, + 5672006482, + 5672006483, + 9915262671, + 9915262672, + 5672006485, + 9915262673, + 5672006486, + 5672006487, + 9915262674, + 5672006488, + 5672006489 + ], + "geometry": [ + { "lat": 40.8441944, "lon": -74.0058322 }, + { "lat": 40.8443497, "lon": -74.0056796 }, + { "lat": 40.8445939, "lon": -74.0054664 }, + { "lat": 40.8446050, "lon": -74.0054528 }, + { "lat": 40.8446133, "lon": -74.0054315 }, + { "lat": 40.8446163, "lon": -74.0054089 }, + { "lat": 40.8446172, "lon": -74.0053850 }, + { "lat": 40.8446030, "lon": -74.0051839 }, + { "lat": 40.8446040, "lon": -74.0051410 }, + { "lat": 40.8446105, "lon": -74.0051135 }, + { "lat": 40.8446211, "lon": -74.0050899 }, + { "lat": 40.8446622, "lon": -74.0050312 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979308, + "bounds": { + "minlat": 40.8446952, + "minlon": -74.0066292, + "maxlat": 40.8455895, + "maxlon": -74.0060967 + }, + "nodes": [ + 5672006494, + 5672006462, + 5672006463, + 5672006464, + 9915262852, + 5672006465, + 9915262853, + 5672006466, + 9915262854, + 5672006467, + 9915262855, + 5672006468, + 5672006469, + 5672006479, + 9915262856, + 9915262857, + 5672006470, + 5672006471 + ], + "geometry": [ + { "lat": 40.8447737, "lon": -74.0060967 }, + { "lat": 40.8447484, "lon": -74.0061577 }, + { "lat": 40.8446988, "lon": -74.0063079 }, + { "lat": 40.8446952, "lon": -74.0063439 }, + { "lat": 40.8448347, "lon": -74.0066066 }, + { "lat": 40.8448482, "lon": -74.0066197 }, + { "lat": 40.8448607, "lon": -74.0066260 }, + { "lat": 40.8448730, "lon": -74.0066292 }, + { "lat": 40.8448849, "lon": -74.0066290 }, + { "lat": 40.8448967, "lon": -74.0066257 }, + { "lat": 40.8451564, "lon": -74.0065299 }, + { "lat": 40.8452196, "lon": -74.0065001 }, + { "lat": 40.8452521, "lon": -74.0064846 }, + { "lat": 40.8453889, "lon": -74.0064038 }, + { "lat": 40.8454550, "lon": -74.0063663 }, + { "lat": 40.8454729, "lon": -74.0063504 }, + { "lat": 40.8454913, "lon": -74.0063315 }, + { "lat": 40.8455895, "lon": -74.0062304 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979310, + "bounds": { + "minlat": 40.8445983, + "minlon": -74.0060967, + "maxlat": 40.8448883, + "maxlon": -74.0056173 + }, + "nodes": [ + 5672006490, + 9915262226, + 9915262228, + 5672006496, + 9915262229, + 9915262227, + 5672006494, + 5672006492, + 9915262232, + 9915262230, + 9915262231, + 5672006491, + 5672006490 + ], + "geometry": [ + { "lat": 40.8446978, "lon": -74.0056173 }, + { "lat": 40.8448839, "lon": -74.0059605 }, + { "lat": 40.8448876, "lon": -74.0059710 }, + { "lat": 40.8448883, "lon": -74.0059816 }, + { "lat": 40.8448849, "lon": -74.0059935 }, + { "lat": 40.8448780, "lon": -74.0060029 }, + { "lat": 40.8447737, "lon": -74.0060967 }, + { "lat": 40.8446041, "lon": -74.0057807 }, + { "lat": 40.8446001, "lon": -74.0057669 }, + { "lat": 40.8445983, "lon": -74.0057550 }, + { "lat": 40.8446011, "lon": -74.0057416 }, + { "lat": 40.8446078, "lon": -74.0057300 }, + { "lat": 40.8446978, "lon": -74.0056173 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979312, + "bounds": { + "minlat": 40.8455895, + "minlon": -74.0062304, + "maxlat": 40.8461008, + "maxlon": -74.0057899 + }, + "nodes": [ + 5672006471, + 5672006472, + 9915262861, + 9915262863, + 5672006474, + 9915262862, + 9915262860, + 5672006475 + ], + "geometry": [ + { "lat": 40.8455895, "lon": -74.0062304 }, + { "lat": 40.8458295, "lon": -74.0061502 }, + { "lat": 40.8460831, "lon": -74.0060121 }, + { "lat": 40.8460934, "lon": -74.0060038 }, + { "lat": 40.8461008, "lon": -74.0059888 }, + { "lat": 40.8460986, "lon": -74.0059703 }, + { "lat": 40.8460904, "lon": -74.0059500 }, + { "lat": 40.8460013, "lon": -74.0057899 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979314, + "bounds": { + "minlat": 40.8446877, + "minlon": -74.0052315, + "maxlat": 40.8455218, + "maxlon": -74.0044469 + }, + "nodes": [ + 5672006499, + 9915262512, + 9915262514, + 5672006505, + 5672006501 + ], + "geometry": [ + { "lat": 40.8446877, "lon": -74.0052315 }, + { "lat": 40.8448869, "lon": -74.0050441 }, + { "lat": 40.8450408, "lon": -74.0048993 }, + { "lat": 40.8450860, "lon": -74.0048569 }, + { "lat": 40.8455218, "lon": -74.0044469 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979316, + "bounds": { + "minlat": 40.8447157, + "minlon": -74.0054437, + "maxlat": 40.8451571, + "maxlon": -74.0048569 + }, + "nodes": [ + 5672006502, + 5672006503, + 9915262507, + 9915262510, + 5672006504, + 9915262509, + 9915262508, + 5672006505 + ], + "geometry": [ + { "lat": 40.8447157, "lon": -74.0054437 }, + { "lat": 40.8449124, "lon": -74.0052505 }, + { "lat": 40.8451463, "lon": -74.0050266 }, + { "lat": 40.8451531, "lon": -74.0050169 }, + { "lat": 40.8451571, "lon": -74.0050056 }, + { "lat": 40.8451564, "lon": -74.0049919 }, + { "lat": 40.8451515, "lon": -74.0049765 }, + { "lat": 40.8450860, "lon": -74.0048569 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979323, + "bounds": { + "minlat": 40.8444721, + "minlon": -74.0086187, + "maxlat": 40.8445854, + "maxlon": -74.0076813 + }, + "nodes": [ + 5672006507, + 11530187218, + 5672006432, + 5672006433 + ], + "geometry": [ + { "lat": 40.8444721, "lon": -74.0076813 }, + { "lat": 40.8445283, "lon": -74.0081388 }, + { "lat": 40.8445793, "lon": -74.0085541 }, + { "lat": 40.8445854, "lon": -74.0086187 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 594979326, + "bounds": { + "minlat": 40.8446430, + "minlon": -74.0074855, + "maxlat": 40.8448298, + "maxlon": -74.0073515 + }, + "nodes": [ + 5672006447, + 5672006448, + 5672006423 + ], + "geometry": [ + { "lat": 40.8448298, "lon": -74.0074855 }, + { "lat": 40.8447844, "lon": -74.0074285 }, + { "lat": 40.8446430, "lon": -74.0073515 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 594982381, + "bounds": { + "minlat": 40.8563062, + "minlon": -73.9111662, + "maxlat": 40.8567751, + "maxlon": -73.9107913 + }, + "nodes": [ + 2906620271, + 2906620286, + 2906620281, + 2906620280, + 2906620279, + 2906620278, + 2906620285, + 2906620277, + 2906620276, + 2906620283, + 2906620282 + ], + "geometry": [ + { "lat": 40.8567751, "lon": -73.9108276 }, + { "lat": 40.8567352, "lon": -73.9107996 }, + { "lat": 40.8566895, "lon": -73.9107913 }, + { "lat": 40.8566126, "lon": -73.9108119 }, + { "lat": 40.8564973, "lon": -73.9108572 }, + { "lat": 40.8564111, "lon": -73.9109080 }, + { "lat": 40.8563592, "lon": -73.9109588 }, + { "lat": 40.8563197, "lon": -73.9110330 }, + { "lat": 40.8563062, "lon": -73.9111003 }, + { "lat": 40.8563083, "lon": -73.9111346 }, + { "lat": 40.8563197, "lon": -73.9111662 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 595257492, + "bounds": { + "minlat": 40.8319289, + "minlon": -74.0111453, + "maxlat": 40.8327480, + "maxlon": -74.0111063 + }, + "nodes": [ + 5673866996, + 9895341173, + 5673866991, + 5673866993 + ], + "geometry": [ + { "lat": 40.8327480, "lon": -74.0111453 }, + { "lat": 40.8326760, "lon": -74.0111419 }, + { "lat": 40.8323355, "lon": -74.0111257 }, + { "lat": 40.8319289, "lon": -74.0111063 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 595257494, + "bounds": { + "minlat": 40.8324601, + "minlon": -74.0111453, + "maxlat": 40.8327480, + "maxlon": -74.0106984 + }, + "nodes": [ + 5673866995, + 8374850348, + 5673866996 + ], + "geometry": [ + { "lat": 40.8324601, "lon": -74.0106984 }, + { "lat": 40.8326002, "lon": -74.0109159 }, + { "lat": 40.8327480, "lon": -74.0111453 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 595257495, + "bounds": { + "minlat": 40.8327480, + "minlon": -74.0111458, + "maxlat": 40.8328839, + "maxlon": -74.0110490 + }, + "nodes": [ + 5673866996, + 5673866997, + 5673866998, + 9895312499, + 9895312498, + 9895312497 + ], + "geometry": [ + { "lat": 40.8327480, "lon": -74.0111453 }, + { "lat": 40.8327788, "lon": -74.0111458 }, + { "lat": 40.8328069, "lon": -74.0111368 }, + { "lat": 40.8328235, "lon": -74.0111239 }, + { "lat": 40.8328408, "lon": -74.0111049 }, + { "lat": 40.8328839, "lon": -74.0110490 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 595257496, + "bounds": { + "minlat": 40.8310044, + "minlon": -74.0115274, + "maxlat": 40.8315578, + "maxlon": -74.0112948 + }, + "nodes": [ + 9895341456, + 9895341459 + ], + "geometry": [ + { "lat": 40.8315578, "lon": -74.0112948 }, + { "lat": 40.8310044, "lon": -74.0115274 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 595257497, + "bounds": { + "minlat": 40.8302739, + "minlon": -74.0105712, + "maxlat": 40.8313599, + "maxlon": -74.0103297 + }, + "nodes": [ + 5673867002, + 9895341452, + 9895341451, + 9895341453, + 5673867005, + 9895341461, + 9895341467, + 9895341450, + 5673867006, + 9895341449, + 9895341448, + 5673867007, + 9895341446, + 9895341447, + 5673867008, + 695054583 + ], + "geometry": [ + { "lat": 40.8313599, "lon": -74.0103623 }, + { "lat": 40.8313174, "lon": -74.0103433 }, + { "lat": 40.8312678, "lon": -74.0103336 }, + { "lat": 40.8312306, "lon": -74.0103297 }, + { "lat": 40.8311952, "lon": -74.0103329 }, + { "lat": 40.8308151, "lon": -74.0104776 }, + { "lat": 40.8306238, "lon": -74.0105504 }, + { "lat": 40.8306063, "lon": -74.0105571 }, + { "lat": 40.8305440, "lon": -74.0105707 }, + { "lat": 40.8304640, "lon": -74.0105712 }, + { "lat": 40.8303900, "lon": -74.0105576 }, + { "lat": 40.8303493, "lon": -74.0105390 }, + { "lat": 40.8303189, "lon": -74.0105199 }, + { "lat": 40.8302987, "lon": -74.0105011 }, + { "lat": 40.8302878, "lon": -74.0104747 }, + { "lat": 40.8302739, "lon": -74.0103509 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 595285120, + "bounds": { + "minlat": 40.8169103, + "minlon": -73.9371660, + "maxlat": 40.8171560, + "maxlon": -73.9365766 + }, + "nodes": [ + 5674032293, + 8212389953, + 5674032294 + ], + "geometry": [ + { "lat": 40.8169103, "lon": -73.9365766 }, + { "lat": 40.8169541, "lon": -73.9366817 }, + { "lat": 40.8171560, "lon": -73.9371660 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 595410066, + "bounds": { + "minlat": 40.8522606, + "minlon": -74.0121289, + "maxlat": 40.8525580, + "maxlon": -74.0108543 + }, + "nodes": [ + 5674744855, + 12859925920, + 12859925282, + 12859925284, + 12859925285, + 12859925283, + 5674744857 + ], + "geometry": [ + { "lat": 40.8525580, "lon": -74.0121289 }, + { "lat": 40.8524824, "lon": -74.0118515 }, + { "lat": 40.8522769, "lon": -74.0110971 }, + { "lat": 40.8522606, "lon": -74.0110263 }, + { "lat": 40.8522712, "lon": -74.0109546 }, + { "lat": 40.8523185, "lon": -74.0109324 }, + { "lat": 40.8524918, "lon": -74.0108543 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 595410067, + "bounds": { + "minlat": 40.8527823, + "minlon": -74.0116170, + "maxlat": 40.8530292, + "maxlon": -74.0109830 + }, + "nodes": [ + 5674744859, + 12859925286, + 5674744860, + 12859925289, + 12859925287, + 12859925288, + 5674744861, + 12859925292, + 12859925291, + 12859925290, + 12859925293, + 5674744862, + 12859925294, + 5674744863, + 12859925295, + 5674744859 + ], + "geometry": [ + { "lat": 40.8529379, "lon": -74.0116170 }, + { "lat": 40.8527866, "lon": -74.0110809 }, + { "lat": 40.8527823, "lon": -74.0110497 }, + { "lat": 40.8527861, "lon": -74.0110308 }, + { "lat": 40.8527940, "lon": -74.0110118 }, + { "lat": 40.8528054, "lon": -74.0109959 }, + { "lat": 40.8528219, "lon": -74.0109866 }, + { "lat": 40.8528405, "lon": -74.0109830 }, + { "lat": 40.8528633, "lon": -74.0109874 }, + { "lat": 40.8528824, "lon": -74.0109989 }, + { "lat": 40.8528934, "lon": -74.0110127 }, + { "lat": 40.8529024, "lon": -74.0110319 }, + { "lat": 40.8530292, "lon": -74.0115026 }, + { "lat": 40.8530280, "lon": -74.0115470 }, + { "lat": 40.8530136, "lon": -74.0115728 }, + { "lat": 40.8529379, "lon": -74.0116170 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 595410068, + "bounds": { + "minlat": 40.8524036, + "minlon": -74.0138866, + "maxlat": 40.8528683, + "maxlon": -74.0122024 + }, + "nodes": [ + 5674744864, + 5674744872, + 12859930917, + 12859930916, + 10936392338, + 12859930918, + 5674744881, + 5674744880, + 5674744883 + ], + "geometry": [ + { "lat": 40.8524036, "lon": -74.0122024 }, + { "lat": 40.8524893, "lon": -74.0125127 }, + { "lat": 40.8525381, "lon": -74.0126897 }, + { "lat": 40.8525732, "lon": -74.0127627 }, + { "lat": 40.8527136, "lon": -74.0132702 }, + { "lat": 40.8527251, "lon": -74.0133675 }, + { "lat": 40.8527503, "lon": -74.0134587 }, + { "lat": 40.8528096, "lon": -74.0136737 }, + { "lat": 40.8528683, "lon": -74.0138866 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 595410069, + "bounds": { + "minlat": 40.8521867, + "minlon": -74.0140299, + "maxlat": 40.8525692, + "maxlon": -74.0126605 + }, + "nodes": [ + 5674744873, + 5674744874 + ], + "geometry": [ + { "lat": 40.8525692, "lon": -74.0140299 }, + { "lat": 40.8521867, "lon": -74.0126605 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 595410072, + "bounds": { + "minlat": 40.8523515, + "minlon": -74.0139517, + "maxlat": 40.8527325, + "maxlon": -74.0125800 + }, + "nodes": [ + 5674744875, + 5674744878 + ], + "geometry": [ + { "lat": 40.8527325, "lon": -74.0139517 }, + { "lat": 40.8523515, "lon": -74.0125800 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 595410073, + "bounds": { + "minlat": 40.8528096, + "minlon": -74.0136737, + "maxlat": 40.8534631, + "maxlon": -74.0133575 + }, + "nodes": [ + 5674744879, + 5674744880 + ], + "geometry": [ + { "lat": 40.8534631, "lon": -74.0133575 }, + { "lat": 40.8528096, "lon": -74.0136737 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 595410074, + "bounds": { + "minlat": 40.8527503, + "minlon": -74.0134587, + "maxlat": 40.8534054, + "maxlon": -74.0131447 + }, + "nodes": [ + 5674744881, + 5674744882 + ], + "geometry": [ + { "lat": 40.8527503, "lon": -74.0134587 }, + { "lat": 40.8534054, "lon": -74.0131447 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 595410076, + "bounds": { + "minlat": 40.8514909, + "minlon": -74.0150226, + "maxlat": 40.8518616, + "maxlon": -74.0144718 + }, + "nodes": [ + 7389752639, + 5674744885 + ], + "geometry": [ + { "lat": 40.8514909, "lon": -74.0150226 }, + { "lat": 40.8518616, "lon": -74.0144718 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 595410077, + "bounds": { + "minlat": 40.8514832, + "minlon": -74.0144759, + "maxlat": 40.8518616, + "maxlon": -74.0126490 + }, + "nodes": [ + 5674744885, + 12859920662, + 5674744886, + 12859920665, + 12859920663, + 12859920666, + 12859920664, + 5674744887, + 5674744888, + 5674744889, + 12859920695, + 12859920699, + 12859920700, + 5674744890, + 5674744891, + 12859920697, + 12859920698, + 12859920696, + 5674744892, + 5674744893, + 12859930905, + 12859930904, + 12859930903, + 5674744896, + 5674744899, + 5674744894, + 5674744895 + ], + "geometry": [ + { "lat": 40.8518616, "lon": -74.0144718 }, + { "lat": 40.8518256, "lon": -74.0144759 }, + { "lat": 40.8517992, "lon": -74.0144686 }, + { "lat": 40.8517802, "lon": -74.0144522 }, + { "lat": 40.8517663, "lon": -74.0144265 }, + { "lat": 40.8517587, "lon": -74.0144041 }, + { "lat": 40.8517542, "lon": -74.0143804 }, + { "lat": 40.8517522, "lon": -74.0143342 }, + { "lat": 40.8517855, "lon": -74.0141903 }, + { "lat": 40.8517448, "lon": -74.0140054 }, + { "lat": 40.8517055, "lon": -74.0139973 }, + { "lat": 40.8516889, "lon": -74.0139919 }, + { "lat": 40.8516765, "lon": -74.0139879 }, + { "lat": 40.8516662, "lon": -74.0139718 }, + { "lat": 40.8516475, "lon": -74.0139016 }, + { "lat": 40.8516456, "lon": -74.0138761 }, + { "lat": 40.8516498, "lon": -74.0138647 }, + { "lat": 40.8516590, "lon": -74.0138412 }, + { "lat": 40.8516887, "lon": -74.0137929 }, + { "lat": 40.8517353, "lon": -74.0136841 }, + { "lat": 40.8517450, "lon": -74.0136362 }, + { "lat": 40.8517466, "lon": -74.0135836 }, + { "lat": 40.8517371, "lon": -74.0135227 }, + { "lat": 40.8516839, "lon": -74.0133345 }, + { "lat": 40.8516188, "lon": -74.0131122 }, + { "lat": 40.8515579, "lon": -74.0129042 }, + { "lat": 40.8514832, "lon": -74.0126490 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 595410078, + "bounds": { + "minlat": 40.8515579, + "minlon": -74.0133345, + "maxlat": 40.8519136, + "maxlon": -74.0128023 + }, + "nodes": [ + 5674744896, + 5674744897, + 12859930907, + 12859930908, + 12859930909, + 12859930906, + 5674744898, + 12859930910, + 12859930911, + 12859930913, + 12859930912, + 5674744900, + 5674744894 + ], + "geometry": [ + { "lat": 40.8516839, "lon": -74.0133345 }, + { "lat": 40.8518883, "lon": -74.0132321 }, + { "lat": 40.8519009, "lon": -74.0132211 }, + { "lat": 40.8519087, "lon": -74.0132076 }, + { "lat": 40.8519136, "lon": -74.0131890 }, + { "lat": 40.8519124, "lon": -74.0131681 }, + { "lat": 40.8518655, "lon": -74.0129955 }, + { "lat": 40.8518244, "lon": -74.0128439 }, + { "lat": 40.8518170, "lon": -74.0128251 }, + { "lat": 40.8518064, "lon": -74.0128120 }, + { "lat": 40.8517917, "lon": -74.0128023 }, + { "lat": 40.8517735, "lon": -74.0128024 }, + { "lat": 40.8515579, "lon": -74.0129042 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 595410080, + "bounds": { + "minlat": 40.8494807, + "minlon": -74.0131199, + "maxlat": 40.8510594, + "maxlon": -74.0116588 + }, + "nodes": [ + 5674744901, + 5674744902, + 5674744903, + 5674744904, + 5674744905, + 5674744906, + 5674744907, + 5674744908, + 5674744913, + 5674744909 + ], + "geometry": [ + { "lat": 40.8496631, "lon": -74.0131199 }, + { "lat": 40.8495690, "lon": -74.0120351 }, + { "lat": 40.8494807, "lon": -74.0118525 }, + { "lat": 40.8495673, "lon": -74.0117688 }, + { "lat": 40.8502481, "lon": -74.0116588 }, + { "lat": 40.8505510, "lon": -74.0117512 }, + { "lat": 40.8509319, "lon": -74.0120862 }, + { "lat": 40.8510156, "lon": -74.0122415 }, + { "lat": 40.8510131, "lon": -74.0124146 }, + { "lat": 40.8510594, "lon": -74.0128551 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 595410081, + "bounds": { + "minlat": 40.8500507, + "minlon": -74.0131152, + "maxlat": 40.8500746, + "maxlon": -74.0128040 + }, + "nodes": [ + 5674744910, + 5674744911 + ], + "geometry": [ + { "lat": 40.8500746, "lon": -74.0131152 }, + { "lat": 40.8500507, "lon": -74.0128040 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 595410082, + "bounds": { + "minlat": 40.8500507, + "minlon": -74.0128040, + "maxlat": 40.8503651, + "maxlon": -74.0127592 + }, + "nodes": [ + 5674744916, + 5674744911 + ], + "geometry": [ + { "lat": 40.8503651, "lon": -74.0127592 }, + { "lat": 40.8500507, "lon": -74.0128040 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 595410083, + "bounds": { + "minlat": 40.8508876, + "minlon": -74.0124259, + "maxlat": 40.8510131, + "maxlon": -74.0124146 + }, + "nodes": [ + 5674744913, + 5674744914 + ], + "geometry": [ + { "lat": 40.8510131, "lon": -74.0124146 }, + { "lat": 40.8508876, "lon": -74.0124259 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 595410084, + "bounds": { + "minlat": 40.8503651, + "minlon": -74.0127592, + "maxlat": 40.8508954, + "maxlon": -74.0124259 + }, + "nodes": [ + 5674744914, + 5674744915, + 5674744916 + ], + "geometry": [ + { "lat": 40.8508876, "lon": -74.0124259 }, + { "lat": 40.8508954, "lon": -74.0126577 }, + { "lat": 40.8503651, "lon": -74.0127592 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 596254529, + "bounds": { + "minlat": 40.7420853, + "minlon": -73.9129918, + "maxlat": 40.7423183, + "maxlon": -73.9110896 + }, + "nodes": [ + 276315699, + 9986759209, + 10927727720, + 9986759197, + 276315698 + ], + "geometry": [ + { "lat": 40.7423183, "lon": -73.9129918 }, + { "lat": 40.7422946, "lon": -73.9127936 }, + { "lat": 40.7422845, "lon": -73.9126895 }, + { "lat": 40.7420986, "lon": -73.9111904 }, + { "lat": 40.7420853, "lon": -73.9110896 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 596278786, + "bounds": { + "minlat": 40.8071544, + "minlon": -74.0198512, + "maxlat": 40.8096005, + "maxlon": -74.0178053 + }, + "nodes": [ + 5680919467, + 5680919459, + 5680919460, + 5680919461, + 5680919462, + 5680919463, + 5680919464, + 5680919465, + 5680919466 + ], + "geometry": [ + { "lat": 40.8096005, "lon": -74.0191063 }, + { "lat": 40.8094675, "lon": -74.0192436 }, + { "lat": 40.8086373, "lon": -74.0198512 }, + { "lat": 40.8084691, "lon": -74.0197496 }, + { "lat": 40.8081044, "lon": -74.0188686 }, + { "lat": 40.8080636, "lon": -74.0186943 }, + { "lat": 40.8076943, "lon": -74.0178533 }, + { "lat": 40.8076127, "lon": -74.0178053 }, + { "lat": 40.8071544, "lon": -74.0178063 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 596278787, + "bounds": { + "minlat": 40.8096005, + "minlon": -74.0191063, + "maxlat": 40.8106430, + "maxlon": -74.0187060 + }, + "nodes": [ + 103882413, + 5680919467 + ], + "geometry": [ + { "lat": 40.8106430, "lon": -74.0187060 }, + { "lat": 40.8096005, "lon": -74.0191063 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 596278788, + "bounds": { + "minlat": 40.8068262, + "minlon": -74.0178063, + "maxlat": 40.8071544, + "maxlon": -74.0168879 + }, + "nodes": [ + 5680919466, + 6711084335, + 5680919475 + ], + "geometry": [ + { "lat": 40.8071544, "lon": -74.0178063 }, + { "lat": 40.8068573, "lon": -74.0172348 }, + { "lat": 40.8068262, "lon": -74.0168879 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 596278789, + "bounds": { + "minlat": 40.8068262, + "minlon": -74.0168879, + "maxlat": 40.8070518, + "maxlon": -74.0168074 + }, + "nodes": [ + 5680919475, + 5680919476, + 6711084334 + ], + "geometry": [ + { "lat": 40.8068262, "lon": -74.0168879 }, + { "lat": 40.8069450, "lon": -74.0168074 }, + { "lat": 40.8070518, "lon": -74.0168679 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 596815951, + "bounds": { + "minlat": 40.7380663, + "minlon": -73.9734702, + "maxlat": 40.7382831, + "maxlon": -73.9733894 + }, + "nodes": [ + 4389441147, + 4389441144 + ], + "geometry": [ + { "lat": 40.7380663, "lon": -73.9734702 }, + { "lat": 40.7382831, "lon": -73.9733894 } + ], + "tags": { + "highway": "service", + "name": "Waterside Plaza", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 596815952, + "bounds": { + "minlat": 40.7371759, + "minlon": -73.9741861, + "maxlat": 40.7371980, + "maxlon": -73.9741001 + }, + "nodes": [ + 589100164, + 4389441145 + ], + "geometry": [ + { "lat": 40.7371759, "lon": -73.9741861 }, + { "lat": 40.7371980, "lon": -73.9741001 } + ], + "tags": { + "highway": "service", + "name": "Waterside Plaza", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 596945542, + "bounds": { + "minlat": 40.7186810, + "minlon": -73.9405319, + "maxlat": 40.7189016, + "maxlon": -73.9404954 + }, + "nodes": [ + 7722378704, + 9695771740, + 7722378705 + ], + "geometry": [ + { "lat": 40.7189016, "lon": -73.9405319 }, + { "lat": 40.7187578, "lon": -73.9405103 }, + { "lat": 40.7186810, "lon": -73.9404954 } + ], + "tags": { + "highway": "residential", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "name_1": "Grandparents Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 597510255, + "bounds": { + "minlat": 40.8236071, + "minlon": -73.9751780, + "maxlat": 40.8243271, + "maxlon": -73.9743389 + }, + "nodes": [ + 5688937314, + 5362499293, + 5362499431, + 5362499292, + 5362499423, + 5362499315, + 5688937316, + 5362499318, + 5362499320, + 5362499313, + 5362499309, + 5362499295, + 5362499301, + 5688937315, + 5362499433, + 5362499314, + 5362499302, + 5362499310, + 5362499306, + 5362499296, + 5688937318, + 5688937317, + 5362499298, + 5362499312, + 5362499294 + ], + "geometry": [ + { "lat": 40.8236071, "lon": -73.9751508 }, + { "lat": 40.8237159, "lon": -73.9751636 }, + { "lat": 40.8237793, "lon": -73.9751780 }, + { "lat": 40.8238925, "lon": -73.9751368 }, + { "lat": 40.8242061, "lon": -73.9749268 }, + { "lat": 40.8242962, "lon": -73.9748464 }, + { "lat": 40.8243085, "lon": -73.9748271 }, + { "lat": 40.8243142, "lon": -73.9748078 }, + { "lat": 40.8243227, "lon": -73.9747723 }, + { "lat": 40.8243271, "lon": -73.9747260 }, + { "lat": 40.8243270, "lon": -73.9746884 }, + { "lat": 40.8242966, "lon": -73.9745958 }, + { "lat": 40.8242686, "lon": -73.9745123 }, + { "lat": 40.8242421, "lon": -73.9744783 }, + { "lat": 40.8242269, "lon": -73.9744788 }, + { "lat": 40.8241773, "lon": -73.9744913 }, + { "lat": 40.8241218, "lon": -73.9744936 }, + { "lat": 40.8236203, "lon": -73.9744829 }, + { "lat": 40.8237167, "lon": -73.9744141 }, + { "lat": 40.8237431, "lon": -73.9743725 }, + { "lat": 40.8237567, "lon": -73.9743548 }, + { "lat": 40.8237729, "lon": -73.9743432 }, + { "lat": 40.8237772, "lon": -73.9743419 }, + { "lat": 40.8238026, "lon": -73.9743389 }, + { "lat": 40.8241650, "lon": -73.9743594 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597510256, + "bounds": { + "minlat": 40.8234820, + "minlon": -73.9751430, + "maxlat": 40.8234933, + "maxlon": -73.9748197 + }, + "nodes": [ + 5362499317, + 5362485932 + ], + "geometry": [ + { "lat": 40.8234933, "lon": -73.9751430 }, + { "lat": 40.8234820, "lon": -73.9748197 } + ], + "tags": { + "highway": "service", + "name": "Grand Cove Way", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 597510257, + "bounds": { + "minlat": 40.8236030, + "minlon": -73.9751508, + "maxlat": 40.8236203, + "maxlon": -73.9744829 + }, + "nodes": [ + 5688937314, + 5688937923, + 5688937924, + 5362499310 + ], + "geometry": [ + { "lat": 40.8236071, "lon": -73.9751508 }, + { "lat": 40.8236030, "lon": -73.9749684 }, + { "lat": 40.8236077, "lon": -73.9748363 }, + { "lat": 40.8236203, "lon": -73.9744829 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597510258, + "bounds": { + "minlat": 40.8234820, + "minlon": -73.9748363, + "maxlat": 40.8236077, + "maxlon": -73.9748197 + }, + "nodes": [ + 5688937924, + 5362485932 + ], + "geometry": [ + { "lat": 40.8236077, "lon": -73.9748363 }, + { "lat": 40.8234820, "lon": -73.9748197 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597510259, + "bounds": { + "minlat": 40.8234905, + "minlon": -73.9744829, + "maxlat": 40.8236203, + "maxlon": -73.9744694 + }, + "nodes": [ + 5362499310, + 5688937925 + ], + "geometry": [ + { "lat": 40.8236203, "lon": -73.9744829 }, + { "lat": 40.8234905, "lon": -73.9744694 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597510260, + "bounds": { + "minlat": 40.8226905, + "minlon": -73.9759261, + "maxlat": 40.8228050, + "maxlon": -73.9756906 + }, + "nodes": [ + 3493496039, + 3493496038, + 3493496037, + 3493496036, + 3493496035 + ], + "geometry": [ + { "lat": 40.8228050, "lon": -73.9759261 }, + { "lat": 40.8227570, "lon": -73.9758000 }, + { "lat": 40.8227316, "lon": -73.9757294 }, + { "lat": 40.8227166, "lon": -73.9756950 }, + { "lat": 40.8226905, "lon": -73.9756906 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 597546983, + "bounds": { + "minlat": 40.8040729, + "minlon": -73.9627360, + "maxlat": 40.8045284, + "maxlon": -73.9616382 + }, + "nodes": [ + 5689234155, + 6839169610, + 8251054468, + 8251054469, + 11804385216, + 5689234156 + ], + "geometry": [ + { "lat": 40.8045284, "lon": -73.9627360 }, + { "lat": 40.8044741, "lon": -73.9626053 }, + { "lat": 40.8044468, "lon": -73.9625394 }, + { "lat": 40.8044087, "lon": -73.9624475 }, + { "lat": 40.8041456, "lon": -73.9618131 }, + { "lat": 40.8040729, "lon": -73.9616382 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "private", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 597657235, + "bounds": { + "minlat": 40.8307737, + "minlon": -73.9720845, + "maxlat": 40.8308026, + "maxlon": -73.9720480 + }, + "nodes": [ + 5689881729, + 7672312250, + 7672312275, + 5689881732 + ], + "geometry": [ + { "lat": 40.8308026, "lon": -73.9720480 }, + { "lat": 40.8307870, "lon": -73.9720677 }, + { "lat": 40.8307810, "lon": -73.9720753 }, + { "lat": 40.8307737, "lon": -73.9720845 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 597657236, + "bounds": { + "minlat": 40.8307546, + "minlon": -73.9720845, + "maxlat": 40.8307737, + "maxlon": -73.9720367 + }, + "nodes": [ + 5689881732, + 7672312274, + 7672312249, + 5689881730 + ], + "geometry": [ + { "lat": 40.8307737, "lon": -73.9720845 }, + { "lat": 40.8307691, "lon": -73.9720729 }, + { "lat": 40.8307650, "lon": -73.9720627 }, + { "lat": 40.8307546, "lon": -73.9720367 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 597657237, + "bounds": { + "minlat": 40.8300049, + "minlon": -73.9720065, + "maxlat": 40.8301433, + "maxlon": -73.9716509 + }, + "nodes": [ + 5362451442, + 5362451464, + 5362451441, + 5362451436, + 5362451435 + ], + "geometry": [ + { "lat": 40.8300049, "lon": -73.9716509 }, + { "lat": 40.8300300, "lon": -73.9717707 }, + { "lat": 40.8300533, "lon": -73.9718284 }, + { "lat": 40.8300995, "lon": -73.9719117 }, + { "lat": 40.8301433, "lon": -73.9720065 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 597657238, + "bounds": { + "minlat": 40.8300049, + "minlon": -73.9716509, + "maxlat": 40.8300444, + "maxlon": -73.9714324 + }, + "nodes": [ + 5362451442, + 5689881733, + 5689881734, + 5362451433 + ], + "geometry": [ + { "lat": 40.8300049, "lon": -73.9716509 }, + { "lat": 40.8300049, "lon": -73.9715497 }, + { "lat": 40.8300118, "lon": -73.9714731 }, + { "lat": 40.8300444, "lon": -73.9714324 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 597657239, + "bounds": { + "minlat": 40.8291320, + "minlon": -73.9708199, + "maxlat": 40.8295087, + "maxlon": -73.9706225 + }, + "nodes": [ + 5689881736, + 5689881735, + 5362460570 + ], + "geometry": [ + { "lat": 40.8291320, "lon": -73.9708199 }, + { "lat": 40.8291756, "lon": -73.9707970 }, + { "lat": 40.8295087, "lon": -73.9706225 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 597657240, + "bounds": { + "minlat": 40.8289046, + "minlon": -73.9716713, + "maxlat": 40.8296141, + "maxlon": -73.9700090 + }, + "nodes": [ + 5362451477, + 5315234558, + 5362460570, + 5362460568, + 5362460571, + 7205081573, + 12068970303, + 12068970304, + 5315234557, + 7205081574, + 7205081575, + 5362460569, + 5362460565, + 5362460563, + 5689881737 + ], + "geometry": [ + { "lat": 40.8296141, "lon": -73.9709027 }, + { "lat": 40.8295887, "lon": -73.9708769 }, + { "lat": 40.8295087, "lon": -73.9706225 }, + { "lat": 40.8294427, "lon": -73.9704150 }, + { "lat": 40.8293756, "lon": -73.9701983 }, + { "lat": 40.8293254, "lon": -73.9700405 }, + { "lat": 40.8293137, "lon": -73.9700229 }, + { "lat": 40.8293021, "lon": -73.9700145 }, + { "lat": 40.8292879, "lon": -73.9700090 }, + { "lat": 40.8292719, "lon": -73.9700124 }, + { "lat": 40.8289430, "lon": -73.9701721 }, + { "lat": 40.8289108, "lon": -73.9702039 }, + { "lat": 40.8289046, "lon": -73.9702539 }, + { "lat": 40.8290883, "lon": -73.9708428 }, + { "lat": 40.8293473, "lon": -73.9716713 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 597657244, + "bounds": { + "minlat": 40.8296141, + "minlon": -73.9714324, + "maxlat": 40.8300444, + "maxlon": -73.9709027 + }, + "nodes": [ + 5362451433, + 5362451458, + 5362451423, + 5315234560, + 5315234559, + 5362451461, + 5362451477 + ], + "geometry": [ + { "lat": 40.8300444, "lon": -73.9714324 }, + { "lat": 40.8300411, "lon": -73.9714193 }, + { "lat": 40.8300127, "lon": -73.9713402 }, + { "lat": 40.8298953, "lon": -73.9709391 }, + { "lat": 40.8297730, "lon": -73.9710094 }, + { "lat": 40.8296450, "lon": -73.9709342 }, + { "lat": 40.8296141, "lon": -73.9709027 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 597657245, + "bounds": { + "minlat": 40.8300049, + "minlon": -73.9716509, + "maxlat": 40.8300455, + "maxlon": -73.9715661 + }, + "nodes": [ + 5362451440, + 5362451442 + ], + "geometry": [ + { "lat": 40.8300455, "lon": -73.9715661 }, + { "lat": 40.8300049, "lon": -73.9716509 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 597821266, + "bounds": { + "minlat": 40.7485923, + "minlon": -74.0056216, + "maxlat": 40.7508082, + "maxlon": -74.0003670 + }, + "nodes": [ + 42430597, + 5730369217, + 12152909706, + 11034943440, + 42445310, + 11034943439, + 12152909708, + 358447541, + 12152909709 + ], + "geometry": [ + { "lat": 40.7508082, "lon": -74.0056216 }, + { "lat": 40.7507526, "lon": -74.0054840 }, + { "lat": 40.7496971, "lon": -74.0029697 }, + { "lat": 40.7496698, "lon": -74.0029064 }, + { "lat": 40.7496114, "lon": -74.0027747 }, + { "lat": 40.7495541, "lon": -74.0026440 }, + { "lat": 40.7490896, "lon": -74.0015437 }, + { "lat": 40.7488506, "lon": -74.0009740 }, + { "lat": 40.7485923, "lon": -74.0003670 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597821267, + "bounds": { + "minlat": 40.7397948, + "minlon": -73.9817646, + "maxlat": 40.7407511, + "maxlon": -73.9795312 + }, + "nodes": [ + 42429896, + 4122576550, + 10239803710, + 4115968602, + 8883623406, + 12183286750, + 7640871304, + 42429900 + ], + "geometry": [ + { "lat": 40.7407511, "lon": -73.9817646 }, + { "lat": 40.7406885, "lon": -73.9816250 }, + { "lat": 40.7405102, "lon": -73.9812047 }, + { "lat": 40.7404741, "lon": -73.9811178 }, + { "lat": 40.7399853, "lon": -73.9799626 }, + { "lat": 40.7398802, "lon": -73.9797143 }, + { "lat": 40.7398550, "lon": -73.9796547 }, + { "lat": 40.7397948, "lon": -73.9795312 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 26th Street", + "name:ru": "Восточная 26-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597937199, + "bounds": { + "minlat": 40.8739616, + "minlon": -73.9874935, + "maxlat": 40.8746518, + "maxlon": -73.9870610 + }, + "nodes": [ + 5691951850, + 5691951857 + ], + "geometry": [ + { "lat": 40.8739616, "lon": -73.9874935 }, + { "lat": 40.8746518, "lon": -73.9870610 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 597937200, + "bounds": { + "minlat": 40.8735318, + "minlon": -73.9883481, + "maxlat": 40.8749031, + "maxlon": -73.9874935 + }, + "nodes": [ + 5691951856, + 10234828322, + 5691951855, + 5691951854, + 10234828347, + 5691951853, + 10234828346, + 5691951852, + 5691951851, + 5691951850 + ], + "geometry": [ + { "lat": 40.8749031, "lon": -73.9875967 }, + { "lat": 40.8741766, "lon": -73.9880970 }, + { "lat": 40.8738782, "lon": -73.9883025 }, + { "lat": 40.8738222, "lon": -73.9883375 }, + { "lat": 40.8737807, "lon": -73.9883481 }, + { "lat": 40.8737467, "lon": -73.9883375 }, + { "lat": 40.8737239, "lon": -73.9883092 }, + { "lat": 40.8736977, "lon": -73.9882634 }, + { "lat": 40.8735318, "lon": -73.9877715 }, + { "lat": 40.8739616, "lon": -73.9874935 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 597938736, + "bounds": { + "minlat": 40.8279956, + "minlon": -73.9804801, + "maxlat": 40.8280260, + "maxlon": -73.9801775 + }, + "nodes": [ + 5691967821, + 5691967822 + ], + "geometry": [ + { "lat": 40.8279956, "lon": -73.9804801 }, + { "lat": 40.8280260, "lon": -73.9801775 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597938738, + "bounds": { + "minlat": 40.8280260, + "minlon": -73.9801775, + "maxlat": 40.8280710, + "maxlon": -73.9797795 + }, + "nodes": [ + 5691967822, + 5691967823 + ], + "geometry": [ + { "lat": 40.8280260, "lon": -73.9801775 }, + { "lat": 40.8280710, "lon": -73.9797795 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597938740, + "bounds": { + "minlat": 40.8281751, + "minlon": -73.9801956, + "maxlat": 40.8283338, + "maxlon": -73.9798533 + }, + "nodes": [ + 5691967830, + 5691967829, + 8971240720, + 5691967828, + 5691967827, + 5691967826, + 5691967825, + 5691967824, + 5691967831, + 8971240721, + 5691967830 + ], + "geometry": [ + { "lat": 40.8282180, "lon": -73.9798844 }, + { "lat": 40.8282544, "lon": -73.9798533 }, + { "lat": 40.8282876, "lon": -73.9798548 }, + { "lat": 40.8283208, "lon": -73.9798724 }, + { "lat": 40.8283338, "lon": -73.9799446 }, + { "lat": 40.8283195, "lon": -73.9801337 }, + { "lat": 40.8282792, "lon": -73.9801928 }, + { "lat": 40.8281751, "lon": -73.9801956 }, + { "lat": 40.8281946, "lon": -73.9799773 }, + { "lat": 40.8282022, "lon": -73.9799295 }, + { "lat": 40.8282180, "lon": -73.9798844 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597938744, + "bounds": { + "minlat": 40.8279956, + "minlon": -73.9804801, + "maxlat": 40.8287151, + "maxlon": -73.9801636 + }, + "nodes": [ + 5691967821, + 5691967832, + 5691967833, + 5691967834, + 5691967835, + 5691967836, + 5691967841 + ], + "geometry": [ + { "lat": 40.8279956, "lon": -73.9804801 }, + { "lat": 40.8280463, "lon": -73.9803521 }, + { "lat": 40.8281256, "lon": -73.9803538 }, + { "lat": 40.8282596, "lon": -73.9803779 }, + { "lat": 40.8283858, "lon": -73.9803590 }, + { "lat": 40.8285315, "lon": -73.9802868 }, + { "lat": 40.8287151, "lon": -73.9801636 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597938746, + "bounds": { + "minlat": 40.8287151, + "minlon": -73.9801636, + "maxlat": 40.8287652, + "maxlon": -73.9799266 + }, + "nodes": [ + 5691967841, + 5691967842 + ], + "geometry": [ + { "lat": 40.8287151, "lon": -73.9801636 }, + { "lat": 40.8287652, "lon": -73.9799266 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597938747, + "bounds": { + "minlat": 40.8273823, + "minlon": -73.9803993, + "maxlat": 40.8276422, + "maxlon": -73.9796342 + }, + "nodes": [ + 5691967843, + 5691967851, + 5691967844, + 5691967845, + 5691967846, + 5691967847, + 5691967848, + 5691967849, + 5691967853, + 5691967850 + ], + "geometry": [ + { "lat": 40.8273823, "lon": -73.9803659 }, + { "lat": 40.8274068, "lon": -73.9801143 }, + { "lat": 40.8274470, "lon": -73.9797010 }, + { "lat": 40.8274814, "lon": -73.9796489 }, + { "lat": 40.8275340, "lon": -73.9796342 }, + { "lat": 40.8275876, "lon": -73.9796462 }, + { "lat": 40.8276200, "lon": -73.9796783 }, + { "lat": 40.8276422, "lon": -73.9797518 }, + { "lat": 40.8275980, "lon": -73.9801472 }, + { "lat": 40.8275698, "lon": -73.9803993 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597938748, + "bounds": { + "minlat": 40.8271385, + "minlon": -73.9801143, + "maxlat": 40.8274068, + "maxlon": -73.9800666 + }, + "nodes": [ + 5691967851, + 5691967852 + ], + "geometry": [ + { "lat": 40.8274068, "lon": -73.9801143 }, + { "lat": 40.8271385, "lon": -73.9800666 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597938750, + "bounds": { + "minlat": 40.8274068, + "minlon": -73.9801472, + "maxlat": 40.8275980, + "maxlon": -73.9801143 + }, + "nodes": [ + 5691967851, + 5691967853 + ], + "geometry": [ + { "lat": 40.8274068, "lon": -73.9801143 }, + { "lat": 40.8275980, "lon": -73.9801472 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 597938751, + "bounds": { + "minlat": 40.8275980, + "minlon": -73.9801735, + "maxlat": 40.8277488, + "maxlon": -73.9801472 + }, + "nodes": [ + 5691967853, + 5691967854 + ], + "geometry": [ + { "lat": 40.8275980, "lon": -73.9801472 }, + { "lat": 40.8277488, "lon": -73.9801735 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 598435627, + "bounds": { + "minlat": 40.7018470, + "minlon": -73.9926239, + "maxlat": 40.7020151, + "maxlon": -73.9923955 + }, + "nodes": [ + 598054754, + 11674209537, + 3174844140 + ], + "geometry": [ + { "lat": 40.7020151, "lon": -73.9926239 }, + { "lat": 40.7019167, "lon": -73.9924902 }, + { "lat": 40.7018470, "lon": -73.9923955 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 598592965, + "bounds": { + "minlat": 40.7421339, + "minlon": -73.9774573, + "maxlat": 40.7436677, + "maxlon": -73.9764472 + }, + "nodes": [ + 7640856876, + 3928841147, + 7640856871, + 3817760023, + 3928841150, + 7640871330, + 7640871307, + 3928841143, + 3817760041, + 9150529774, + 3928841151, + 1293174689 + ], + "geometry": [ + { "lat": 40.7436677, "lon": -73.9764472 }, + { "lat": 40.7435200, "lon": -73.9765566 }, + { "lat": 40.7434835, "lon": -73.9765846 }, + { "lat": 40.7433718, "lon": -73.9766668 }, + { "lat": 40.7428852, "lon": -73.9770191 }, + { "lat": 40.7428605, "lon": -73.9770366 }, + { "lat": 40.7427473, "lon": -73.9771143 }, + { "lat": 40.7423463, "lon": -73.9774216 }, + { "lat": 40.7423034, "lon": -73.9774427 }, + { "lat": 40.7422698, "lon": -73.9774573 }, + { "lat": 40.7422309, "lon": -73.9774439 }, + { "lat": 40.7421339, "lon": -73.9773193 } + ], + "tags": { + "hgv": "local", + "highway": "service", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "2nd Avenue service road", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 599094371, + "bounds": { + "minlat": 40.8748447, + "minlon": -73.9877328, + "maxlat": 40.8753662, + "maxlon": -73.9870530 + }, + "nodes": [ + 103203323, + 10234948418, + 5700932763, + 5700932764, + 10234948421, + 5700932765, + 10234948420, + 5700932766, + 10234948419, + 5700932767, + 5700932768 + ], + "geometry": [ + { "lat": 40.8749384, "lon": -73.9877081 }, + { "lat": 40.8749732, "lon": -73.9877285 }, + { "lat": 40.8750062, "lon": -73.9877328 }, + { "lat": 40.8753489, "lon": -73.9875316 }, + { "lat": 40.8753662, "lon": -73.9874576 }, + { "lat": 40.8753297, "lon": -73.9871304 }, + { "lat": 40.8753221, "lon": -73.9870814 }, + { "lat": 40.8752944, "lon": -73.9870530 }, + { "lat": 40.8752455, "lon": -73.9870680 }, + { "lat": 40.8750151, "lon": -73.9872033 }, + { "lat": 40.8748447, "lon": -73.9871258 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599094372, + "bounds": { + "minlat": 40.8746838, + "minlon": -73.9872049, + "maxlat": 40.8748561, + "maxlon": -73.9868590 + }, + "nodes": [ + 5691951845, + 10234828462, + 10234828495, + 10234828461, + 5700932768, + 10234828460, + 10234828497, + 10234828459, + 5700932770, + 10234828458, + 10234828496, + 10234828467, + 5700932769 + ], + "geometry": [ + { "lat": 40.8747589, "lon": -73.9872049 }, + { "lat": 40.8747780, "lon": -73.9872015 }, + { "lat": 40.8748079, "lon": -73.9871827 }, + { "lat": 40.8748302, "lon": -73.9871572 }, + { "lat": 40.8748447, "lon": -73.9871258 }, + { "lat": 40.8748561, "lon": -73.9870754 }, + { "lat": 40.8748561, "lon": -73.9870251 }, + { "lat": 40.8748449, "lon": -73.9869795 }, + { "lat": 40.8748226, "lon": -73.9869355 }, + { "lat": 40.8747866, "lon": -73.9869091 }, + { "lat": 40.8747486, "lon": -73.9868822 }, + { "lat": 40.8747116, "lon": -73.9868648 }, + { "lat": 40.8746838, "lon": -73.9868590 } + ], + "tags": { + "highway": "residential", + "name": "Lakeview Avenue" + } +}, +{ + "type": "way", + "id": 599347123, + "bounds": { + "minlat": 40.7816408, + "minlon": -74.0131466, + "maxlat": 40.7817003, + "maxlon": -74.0130203 + }, + "nodes": [ + 5702289216, + 7613768256, + 5702289218 + ], + "geometry": [ + { "lat": 40.7816408, "lon": -74.0130203 }, + { "lat": 40.7816907, "lon": -74.0131262 }, + { "lat": 40.7817003, "lon": -74.0131466 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599347125, + "bounds": { + "minlat": 40.7817003, + "minlon": -74.0142897, + "maxlat": 40.7822394, + "maxlon": -74.0131466 + }, + "nodes": [ + 5702289218, + 5702289219 + ], + "geometry": [ + { "lat": 40.7817003, "lon": -74.0131466 }, + { "lat": 40.7822394, "lon": -74.0142897 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 599347127, + "bounds": { + "minlat": 40.7822394, + "minlon": -74.0144054, + "maxlat": 40.7822951, + "maxlon": -74.0142897 + }, + "nodes": [ + 5702289219, + 7613768265, + 5702289217 + ], + "geometry": [ + { "lat": 40.7822394, "lon": -74.0142897 }, + { "lat": 40.7822522, "lon": -74.0143168 }, + { "lat": 40.7822951, "lon": -74.0144054 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599511293, + "bounds": { + "minlat": 40.8208401, + "minlon": -73.9916433, + "maxlat": 40.8211063, + "maxlon": -73.9913688 + }, + "nodes": [ + 5703669053, + 5703669054, + 5703669055, + 7576352690, + 13524700359, + 5703669056 + ], + "geometry": [ + { "lat": 40.8211063, "lon": -73.9916433 }, + { "lat": 40.8210877, "lon": -73.9916375 }, + { "lat": 40.8210023, "lon": -73.9914885 }, + { "lat": 40.8209454, "lon": -73.9914330 }, + { "lat": 40.8209318, "lon": -73.9914247 }, + { "lat": 40.8208401, "lon": -73.9913688 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 599511294, + "bounds": { + "minlat": 40.8211063, + "minlon": -73.9925776, + "maxlat": 40.8220973, + "maxlon": -73.9916433 + }, + "nodes": [ + 5703669053, + 5703669076, + 5703669080, + 5703669078, + 5703669071, + 5703669086, + 5703669057, + 5703669068, + 5703669058, + 5703669059, + 5703669060 + ], + "geometry": [ + { "lat": 40.8211063, "lon": -73.9916433 }, + { "lat": 40.8211464, "lon": -73.9917202 }, + { "lat": 40.8212429, "lon": -73.9919051 }, + { "lat": 40.8213383, "lon": -73.9920879 }, + { "lat": 40.8214311, "lon": -73.9922656 }, + { "lat": 40.8214555, "lon": -73.9923124 }, + { "lat": 40.8214784, "lon": -73.9923562 }, + { "lat": 40.8215259, "lon": -73.9923675 }, + { "lat": 40.8217405, "lon": -73.9924183 }, + { "lat": 40.8218236, "lon": -73.9925776 }, + { "lat": 40.8220973, "lon": -73.9923333 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599511295, + "bounds": { + "minlat": 40.8219722, + "minlon": -73.9920185, + "maxlat": 40.8221279, + "maxlon": -73.9919952 + }, + "nodes": [ + 5703669062, + 5703669063, + 5703669070 + ], + "geometry": [ + { "lat": 40.8221279, "lon": -73.9919952 }, + { "lat": 40.8220061, "lon": -73.9920031 }, + { "lat": 40.8219722, "lon": -73.9920185 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 599511296, + "bounds": { + "minlat": 40.8215259, + "minlon": -73.9923675, + "maxlat": 40.8218438, + "maxlon": -73.9920755 + }, + "nodes": [ + 5703669065, + 5703669068 + ], + "geometry": [ + { "lat": 40.8218438, "lon": -73.9920755 }, + { "lat": 40.8215259, "lon": -73.9923675 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599511297, + "bounds": { + "minlat": 40.8220122, + "minlon": -73.9923333, + "maxlat": 40.8220973, + "maxlon": -73.9921781 + }, + "nodes": [ + 5703669060, + 5703669069 + ], + "geometry": [ + { "lat": 40.8220973, "lon": -73.9923333 }, + { "lat": 40.8220122, "lon": -73.9921781 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599511298, + "bounds": { + "minlat": 40.8219722, + "minlon": -73.9921781, + "maxlat": 40.8220122, + "maxlon": -73.9920185 + }, + "nodes": [ + 5703669070, + 5703669069 + ], + "geometry": [ + { "lat": 40.8219722, "lon": -73.9920185 }, + { "lat": 40.8220122, "lon": -73.9921781 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 599511299, + "bounds": { + "minlat": 40.8214311, + "minlon": -73.9922656, + "maxlat": 40.8218273, + "maxlon": -73.9918880 + }, + "nodes": [ + 5703669071, + 5703669072 + ], + "geometry": [ + { "lat": 40.8214311, "lon": -73.9922656 }, + { "lat": 40.8218273, "lon": -73.9918880 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599511300, + "bounds": { + "minlat": 40.8218273, + "minlon": -73.9919544, + "maxlat": 40.8219180, + "maxlon": -73.9918880 + }, + "nodes": [ + 5703669072, + 5703669077 + ], + "geometry": [ + { "lat": 40.8218273, "lon": -73.9918880 }, + { "lat": 40.8219180, "lon": -73.9919544 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 599511301, + "bounds": { + "minlat": 40.8213383, + "minlon": -73.9920879, + "maxlat": 40.8217370, + "maxlon": -73.9917229 + }, + "nodes": [ + 5703669078, + 5703669079 + ], + "geometry": [ + { "lat": 40.8213383, "lon": -73.9920879 }, + { "lat": 40.8217370, "lon": -73.9917229 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599511302, + "bounds": { + "minlat": 40.8212429, + "minlon": -73.9919051, + "maxlat": 40.8216362, + "maxlon": -73.9915387 + }, + "nodes": [ + 5703669080, + 5703669081 + ], + "geometry": [ + { "lat": 40.8212429, "lon": -73.9919051 }, + { "lat": 40.8216362, "lon": -73.9915387 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599511303, + "bounds": { + "minlat": 40.8212089, + "minlon": -73.9916639, + "maxlat": 40.8215414, + "maxlon": -73.9913654 + }, + "nodes": [ + 5703669075, + 5703669082 + ], + "geometry": [ + { "lat": 40.8212089, "lon": -73.9916639 }, + { "lat": 40.8215414, "lon": -73.9913654 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599511304, + "bounds": { + "minlat": 40.8204339, + "minlon": -73.9926966, + "maxlat": 40.8214555, + "maxlon": -73.9916421 + }, + "nodes": [ + 103237758, + 5703669083, + 5703669084, + 5703669085, + 5703669086 + ], + "geometry": [ + { "lat": 40.8204993, "lon": -73.9916421 }, + { "lat": 40.8204339, "lon": -73.9918087 }, + { "lat": 40.8208852, "lon": -73.9926747 }, + { "lat": 40.8210196, "lon": -73.9926966 }, + { "lat": 40.8214555, "lon": -73.9923124 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 599581790, + "bounds": { + "minlat": 40.8512374, + "minlon": -74.0046729, + "maxlat": 40.8519981, + "maxlon": -74.0038806 + }, + "nodes": [ + 5704084539, + 5704084540, + 5704084558, + 2707984833 + ], + "geometry": [ + { "lat": 40.8512374, "lon": -74.0046729 }, + { "lat": 40.8513522, "lon": -74.0045533 }, + { "lat": 40.8518164, "lon": -74.0040699 }, + { "lat": 40.8519981, "lon": -74.0038806 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 599581791, + "bounds": { + "minlat": 40.8513522, + "minlon": -74.0054276, + "maxlat": 40.8530360, + "maxlon": -74.0034325 + }, + "nodes": [ + 5704084540, + 5704084541, + 5704084547, + 5704084542, + 5704084550, + 5704084551, + 5704084553, + 5704084555, + 5704084556, + 5704084543, + 5704084544, + 5704084557, + 5704084545, + 5704084546 + ], + "geometry": [ + { "lat": 40.8513522, "lon": -74.0045533 }, + { "lat": 40.8518685, "lon": -74.0054276 }, + { "lat": 40.8525959, "lon": -74.0048798 }, + { "lat": 40.8530360, "lon": -74.0045431 }, + { "lat": 40.8529081, "lon": -74.0043184 }, + { "lat": 40.8528006, "lon": -74.0041297 }, + { "lat": 40.8526967, "lon": -74.0039471 }, + { "lat": 40.8525989, "lon": -74.0037754 }, + { "lat": 40.8524972, "lon": -74.0035967 }, + { "lat": 40.8524038, "lon": -74.0034325 }, + { "lat": 40.8520669, "lon": -74.0036784 }, + { "lat": 40.8521826, "lon": -74.0038583 }, + { "lat": 40.8522835, "lon": -74.0040370 }, + { "lat": 40.8521785, "lon": -74.0041266 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 599581792, + "bounds": { + "minlat": 40.8519981, + "minlon": -74.0048798, + "maxlat": 40.8525959, + "maxlon": -74.0038806 + }, + "nodes": [ + 5704084547, + 5704084549, + 5704084552, + 5704084554, + 5704084546, + 2707984833 + ], + "geometry": [ + { "lat": 40.8525959, "lon": -74.0048798 }, + { "lat": 40.8524914, "lon": -74.0046912 }, + { "lat": 40.8523934, "lon": -74.0045144 }, + { "lat": 40.8522968, "lon": -74.0043401 }, + { "lat": 40.8521785, "lon": -74.0041266 }, + { "lat": 40.8519981, "lon": -74.0038806 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 599581793, + "bounds": { + "minlat": 40.8517178, + "minlon": -74.0055358, + "maxlat": 40.8518685, + "maxlon": -74.0054276 + }, + "nodes": [ + 5704084548, + 5704084541 + ], + "geometry": [ + { "lat": 40.8517178, "lon": -74.0055358 }, + { "lat": 40.8518685, "lon": -74.0054276 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599581795, + "bounds": { + "minlat": 40.8524914, + "minlon": -74.0046912, + "maxlat": 40.8529081, + "maxlon": -74.0043184 + }, + "nodes": [ + 5704084549, + 5704084550 + ], + "geometry": [ + { "lat": 40.8524914, "lon": -74.0046912 }, + { "lat": 40.8529081, "lon": -74.0043184 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 599581796, + "bounds": { + "minlat": 40.8523934, + "minlon": -74.0045144, + "maxlat": 40.8528006, + "maxlon": -74.0041297 + }, + "nodes": [ + 5704084551, + 5704084552 + ], + "geometry": [ + { "lat": 40.8528006, "lon": -74.0041297 }, + { "lat": 40.8523934, "lon": -74.0045144 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 599581797, + "bounds": { + "minlat": 40.8522968, + "minlon": -74.0043401, + "maxlat": 40.8526967, + "maxlon": -74.0039471 + }, + "nodes": [ + 5704084553, + 5704084554 + ], + "geometry": [ + { "lat": 40.8526967, "lon": -74.0039471 }, + { "lat": 40.8522968, "lon": -74.0043401 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 599581798, + "bounds": { + "minlat": 40.8522835, + "minlon": -74.0040370, + "maxlat": 40.8525989, + "maxlon": -74.0037754 + }, + "nodes": [ + 5704084545, + 5704084555 + ], + "geometry": [ + { "lat": 40.8522835, "lon": -74.0040370 }, + { "lat": 40.8525989, "lon": -74.0037754 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 599581799, + "bounds": { + "minlat": 40.8521826, + "minlon": -74.0038583, + "maxlat": 40.8524972, + "maxlon": -74.0035967 + }, + "nodes": [ + 5704084556, + 5704084557 + ], + "geometry": [ + { "lat": 40.8524972, "lon": -74.0035967 }, + { "lat": 40.8521826, "lon": -74.0038583 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 599581800, + "bounds": { + "minlat": 40.8511857, + "minlon": -74.0043147, + "maxlat": 40.8518164, + "maxlon": -74.0038472 + }, + "nodes": [ + 5704084558, + 5704084559, + 5704084560, + 5704084561 + ], + "geometry": [ + { "lat": 40.8518164, "lon": -74.0040699 }, + { "lat": 40.8516938, "lon": -74.0038472 }, + { "lat": 40.8511857, "lon": -74.0042346 }, + { "lat": 40.8512550, "lon": -74.0043147 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 599593978, + "bounds": { + "minlat": 40.8670870, + "minlon": -73.9906042, + "maxlat": 40.8671427, + "maxlon": -73.9902729 + }, + "nodes": [ + 8061443839, + 5704149044, + 8061356783, + 5704149045, + 8061356782, + 8061356781, + 5704149046 + ], + "geometry": [ + { "lat": 40.8670870, "lon": -73.9906042 }, + { "lat": 40.8671197, "lon": -73.9905834 }, + { "lat": 40.8671401, "lon": -73.9905475 }, + { "lat": 40.8671422, "lon": -73.9905111 }, + { "lat": 40.8671427, "lon": -73.9903960 }, + { "lat": 40.8671391, "lon": -73.9903403 }, + { "lat": 40.8671184, "lon": -73.9902729 } + ], + "tags": { + "access": "permissive", + "highway": "service" + } +}, +{ + "type": "way", + "id": 599593979, + "bounds": { + "minlat": 40.8666097, + "minlon": -73.9906989, + "maxlat": 40.8669483, + "maxlon": -73.9901443 + }, + "nodes": [ + 5704149047, + 5704149048, + 5704149049, + 8061356779, + 8061356780, + 5704149054 + ], + "geometry": [ + { "lat": 40.8669483, "lon": -73.9906989 }, + { "lat": 40.8668975, "lon": -73.9906071 }, + { "lat": 40.8668162, "lon": -73.9904462 }, + { "lat": 40.8667806, "lon": -73.9904476 }, + { "lat": 40.8667451, "lon": -73.9904248 }, + { "lat": 40.8666097, "lon": -73.9901443 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 599593980, + "bounds": { + "minlat": 40.8663230, + "minlon": -73.9902241, + "maxlat": 40.8665179, + "maxlon": -73.9897776 + }, + "nodes": [ + 5704149051, + 5704149052 + ], + "geometry": [ + { "lat": 40.8665179, "lon": -73.9902241 }, + { "lat": 40.8663230, "lon": -73.9897776 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599593981, + "bounds": { + "minlat": 40.8661123, + "minlon": -73.9899492, + "maxlat": 40.8663230, + "maxlon": -73.9897776 + }, + "nodes": [ + 5704149052, + 5704149053 + ], + "geometry": [ + { "lat": 40.8663230, "lon": -73.9897776 }, + { "lat": 40.8661123, "lon": -73.9899492 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 599593982, + "bounds": { + "minlat": 40.8662950, + "minlon": -73.9901443, + "maxlat": 40.8666097, + "maxlon": -73.9893047 + }, + "nodes": [ + 5704149054, + 5704149055, + 5704149056, + 5704149057, + 5704149058, + 5704149059, + 5704149060, + 5704149061 + ], + "geometry": [ + { "lat": 40.8666097, "lon": -73.9901443 }, + { "lat": 40.8665082, "lon": -73.9899604 }, + { "lat": 40.8664437, "lon": -73.9898178 }, + { "lat": 40.8663760, "lon": -73.9896668 }, + { "lat": 40.8663507, "lon": -73.9895773 }, + { "lat": 40.8663718, "lon": -73.9895449 }, + { "lat": 40.8663809, "lon": -73.9895216 }, + { "lat": 40.8662950, "lon": -73.9893047 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599593983, + "bounds": { + "minlat": 40.8663971, + "minlon": -73.9894758, + "maxlat": 40.8667998, + "maxlon": -73.9886013 + }, + "nodes": [ + 5704149062, + 5704149063, + 5704149064 + ], + "geometry": [ + { "lat": 40.8666021, "lon": -73.9894758 }, + { "lat": 40.8663971, "lon": -73.9889649 }, + { "lat": 40.8667998, "lon": -73.9886013 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599593984, + "bounds": { + "minlat": 40.8669245, + "minlon": -73.9912474, + "maxlat": 40.8671028, + "maxlon": -73.9910767 + }, + "nodes": [ + 5704149067, + 5704149066 + ], + "geometry": [ + { "lat": 40.8669245, "lon": -73.9912474 }, + { "lat": 40.8671028, "lon": -73.9910767 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 599593985, + "bounds": { + "minlat": 40.8668523, + "minlon": -73.9916684, + "maxlat": 40.8671201, + "maxlon": -73.9912474 + }, + "nodes": [ + 8063721523, + 5704149067, + 5704149068, + 5704149069, + 5704149070, + 5704149071 + ], + "geometry": [ + { "lat": 40.8668523, "lon": -73.9913146 }, + { "lat": 40.8669245, "lon": -73.9912474 }, + { "lat": 40.8670030, "lon": -73.9913950 }, + { "lat": 40.8670551, "lon": -73.9914454 }, + { "lat": 40.8671201, "lon": -73.9915751 }, + { "lat": 40.8670320, "lon": -73.9916684 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 599707693, + "bounds": { + "minlat": 40.8367890, + "minlon": -74.0173102, + "maxlat": 40.8377424, + "maxlon": -74.0166278 + }, + "nodes": [ + 5704770149, + 5704770150, + 5704770156, + 5704770154, + 5704770151, + 5704770152, + 5704770155, + 5704770153, + 103277590 + ], + "geometry": [ + { "lat": 40.8370828, "lon": -74.0173102 }, + { "lat": 40.8371597, "lon": -74.0172001 }, + { "lat": 40.8373544, "lon": -74.0170486 }, + { "lat": 40.8374774, "lon": -74.0169529 }, + { "lat": 40.8377424, "lon": -74.0167468 }, + { "lat": 40.8377149, "lon": -74.0166278 }, + { "lat": 40.8374409, "lon": -74.0166986 }, + { "lat": 40.8369347, "lon": -74.0168294 }, + { "lat": 40.8367890, "lon": -74.0169420 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599707696, + "bounds": { + "minlat": 40.8374409, + "minlon": -74.0169529, + "maxlat": 40.8374774, + "maxlon": -74.0166986 + }, + "nodes": [ + 5704770154, + 5704770155 + ], + "geometry": [ + { "lat": 40.8374774, "lon": -74.0169529 }, + { "lat": 40.8374409, "lon": -74.0166986 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599707697, + "bounds": { + "minlat": 40.8373544, + "minlon": -74.0173088, + "maxlat": 40.8374642, + "maxlon": -74.0170486 + }, + "nodes": [ + 5704770156, + 5704770157 + ], + "geometry": [ + { "lat": 40.8373544, "lon": -74.0170486 }, + { "lat": 40.8374642, "lon": -74.0173088 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599707699, + "bounds": { + "minlat": 40.8377424, + "minlon": -74.0167468, + "maxlat": 40.8379546, + "maxlon": -74.0167009 + }, + "nodes": [ + 5704770151, + 5704770158 + ], + "geometry": [ + { "lat": 40.8377424, "lon": -74.0167468 }, + { "lat": 40.8379546, "lon": -74.0167009 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 599707701, + "bounds": { + "minlat": 40.8369347, + "minlon": -74.0168294, + "maxlat": 40.8380471, + "maxlon": -74.0160165 + }, + "nodes": [ + 5704770152, + 5704770159, + 5704770160, + 11025827093, + 5704770161, + 5704770162, + 5704770163, + 5704770164, + 5704770153 + ], + "geometry": [ + { "lat": 40.8377149, "lon": -74.0166278 }, + { "lat": 40.8380471, "lon": -74.0165297 }, + { "lat": 40.8379772, "lon": -74.0161070 }, + { "lat": 40.8379226, "lon": -74.0160825 }, + { "lat": 40.8378344, "lon": -74.0160165 }, + { "lat": 40.8375148, "lon": -74.0161214 }, + { "lat": 40.8372250, "lon": -74.0163424 }, + { "lat": 40.8369457, "lon": -74.0164845 }, + { "lat": 40.8369347, "lon": -74.0168294 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 600028322, + "bounds": { + "minlat": 40.8159523, + "minlon": -74.0148680, + "maxlat": 40.8175807, + "maxlon": -74.0125296 + }, + "nodes": [ + 5707102066, + 5707102067, + 5707102068, + 5707102069, + 5707102070, + 5707102071, + 5707102072, + 5707102073, + 13703735184, + 5707102076, + 13703735182, + 5707102077, + 5707102081, + 5707102082, + 13703735183, + 13703735180, + 13703735181, + 13703735182 + ], + "geometry": [ + { "lat": 40.8159523, "lon": -74.0148680 }, + { "lat": 40.8160587, "lon": -74.0147748 }, + { "lat": 40.8162582, "lon": -74.0146176 }, + { "lat": 40.8166348, "lon": -74.0143155 }, + { "lat": 40.8167341, "lon": -74.0141990 }, + { "lat": 40.8167502, "lon": -74.0140910 }, + { "lat": 40.8165226, "lon": -74.0136930 }, + { "lat": 40.8162555, "lon": -74.0131743 }, + { "lat": 40.8163151, "lon": -74.0131316 }, + { "lat": 40.8163831, "lon": -74.0130759 }, + { "lat": 40.8164402, "lon": -74.0130472 }, + { "lat": 40.8168622, "lon": -74.0128030 }, + { "lat": 40.8172887, "lon": -74.0125296 }, + { "lat": 40.8175807, "lon": -74.0130103 }, + { "lat": 40.8173867, "lon": -74.0133298 }, + { "lat": 40.8168959, "lon": -74.0137790 }, + { "lat": 40.8166449, "lon": -74.0134646 }, + { "lat": 40.8164402, "lon": -74.0130472 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 600028323, + "bounds": { + "minlat": 40.8153761, + "minlon": -74.0137643, + "maxlat": 40.8162555, + "maxlon": -74.0131019 + }, + "nodes": [ + 5707102073, + 5707102083, + 5707102084, + 5707102085, + 5707102086, + 5707102087, + 5707102088, + 5707102089 + ], + "geometry": [ + { "lat": 40.8162555, "lon": -74.0131743 }, + { "lat": 40.8161732, "lon": -74.0131071 }, + { "lat": 40.8161237, "lon": -74.0131019 }, + { "lat": 40.8160644, "lon": -74.0131378 }, + { "lat": 40.8159394, "lon": -74.0132491 }, + { "lat": 40.8157173, "lon": -74.0134520 }, + { "lat": 40.8154731, "lon": -74.0136824 }, + { "lat": 40.8153761, "lon": -74.0137643 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 600028324, + "bounds": { + "minlat": 40.8154731, + "minlon": -74.0147748, + "maxlat": 40.8160587, + "maxlon": -74.0136824 + }, + "nodes": [ + 5707102088, + 5707102067 + ], + "geometry": [ + { "lat": 40.8154731, "lon": -74.0136824 }, + { "lat": 40.8160587, "lon": -74.0147748 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 600082930, + "bounds": { + "minlat": 40.8719894, + "minlon": -73.9852520, + "maxlat": 40.8741462, + "maxlon": -73.9815818 + }, + "nodes": [ + 103203324, + 8076364221, + 103203325, + 103203326, + 103203328 + ], + "geometry": [ + { "lat": 40.8741462, "lon": -73.9852520 }, + { "lat": 40.8740807, "lon": -73.9851454 }, + { "lat": 40.8729589, "lon": -73.9832059 }, + { "lat": 40.8724720, "lon": -73.9824440 }, + { "lat": 40.8719894, "lon": -73.9815818 } + ], + "tags": { + "highway": "residential", + "name": "Lakeview Avenue", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lakeview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 600084391, + "bounds": { + "minlat": 40.8655834, + "minlon": -73.9604559, + "maxlat": 40.8659494, + "maxlon": -73.9598726 + }, + "nodes": [ + 5707417260, + 5707417264, + 5707417261, + 5707417268, + 5707417262, + 5707417263 + ], + "geometry": [ + { "lat": 40.8659494, "lon": -73.9603531 }, + { "lat": 40.8658125, "lon": -73.9601032 }, + { "lat": 40.8656867, "lon": -73.9598726 }, + { "lat": 40.8656589, "lon": -73.9599002 }, + { "lat": 40.8655834, "lon": -73.9599754 }, + { "lat": 40.8658385, "lon": -73.9604559 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 600084392, + "bounds": { + "minlat": 40.8658125, + "minlon": -73.9601032, + "maxlat": 40.8658459, + "maxlon": -73.9598766 + }, + "nodes": [ + 5707417264, + 5707417265 + ], + "geometry": [ + { "lat": 40.8658125, "lon": -73.9601032 }, + { "lat": 40.8658459, "lon": -73.9598766 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 600084393, + "bounds": { + "minlat": 40.8656446, + "minlon": -73.9598766, + "maxlat": 40.8658459, + "maxlon": -73.9594815 + }, + "nodes": [ + 5707417265, + 5707417267, + 5707417266 + ], + "geometry": [ + { "lat": 40.8658459, "lon": -73.9598766 }, + { "lat": 40.8657946, "lon": -73.9597759 }, + { "lat": 40.8656446, "lon": -73.9594815 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 600084394, + "bounds": { + "minlat": 40.8656867, + "minlon": -73.9598726, + "maxlat": 40.8657946, + "maxlon": -73.9597759 + }, + "nodes": [ + 5707417267, + 5707417261 + ], + "geometry": [ + { "lat": 40.8657946, "lon": -73.9597759 }, + { "lat": 40.8656867, "lon": -73.9598726 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 600084395, + "bounds": { + "minlat": 40.8654895, + "minlon": -73.9599002, + "maxlat": 40.8656589, + "maxlon": -73.9595912 + }, + "nodes": [ + 5707417268, + 5707417269 + ], + "geometry": [ + { "lat": 40.8656589, "lon": -73.9599002 }, + { "lat": 40.8654895, "lon": -73.9595912 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 600323384, + "bounds": { + "minlat": 40.8466302, + "minlon": -73.9656352, + "maxlat": 40.8471497, + "maxlon": -73.9656079 + }, + "nodes": [ + 2349749577, + 9421814870, + 9421814869, + 2349749565, + 9421814868, + 9421814867, + 5742928194, + 2349755380 + ], + "geometry": [ + { "lat": 40.8466302, "lon": -73.9656231 }, + { "lat": 40.8467352, "lon": -73.9656144 }, + { "lat": 40.8467849, "lon": -73.9656083 }, + { "lat": 40.8468625, "lon": -73.9656184 }, + { "lat": 40.8469569, "lon": -73.9656318 }, + { "lat": 40.8470061, "lon": -73.9656352 }, + { "lat": 40.8470969, "lon": -73.9656271 }, + { "lat": 40.8471497, "lon": -73.9656079 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Colony Road", + "service": "driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Colony", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 600537363, + "bounds": { + "minlat": 40.7019070, + "minlon": -73.9409187, + "maxlat": 40.7022144, + "maxlon": -73.9406043 + }, + "nodes": [ + 5710235494, + 5710235495, + 9646966168, + 5710235496 + ], + "geometry": [ + { "lat": 40.7019070, "lon": -73.9408813 }, + { "lat": 40.7021873, "lon": -73.9409187 }, + { "lat": 40.7022034, "lon": -73.9407315 }, + { "lat": 40.7022144, "lon": -73.9406043 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 600649574, + "bounds": { + "minlat": 40.8467968, + "minlon": -73.9206232, + "maxlat": 40.8476181, + "maxlon": -73.9192853 + }, + "nodes": [ + 42769941, + 12046845384, + 11042991237, + 12384151468, + 13181365295, + 42761300 + ], + "geometry": [ + { "lat": 40.8467968, "lon": -73.9206232 }, + { "lat": 40.8468277, "lon": -73.9205791 }, + { "lat": 40.8470545, "lon": -73.9202489 }, + { "lat": 40.8475521, "lon": -73.9193982 }, + { "lat": 40.8475646, "lon": -73.9193768 }, + { "lat": 40.8476181, "lon": -73.9192853 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 600649575, + "bounds": { + "minlat": 40.8469048, + "minlon": -73.9206609, + "maxlat": 40.8475591, + "maxlon": -73.9196881 + }, + "nodes": [ + 2907939251, + 2907939245, + 12046845385, + 2907939255 + ], + "geometry": [ + { "lat": 40.8475591, "lon": -73.9196881 }, + { "lat": 40.8469854, "lon": -73.9205476 }, + { "lat": 40.8469275, "lon": -73.9206294 }, + { "lat": 40.8469048, "lon": -73.9206609 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "through|through;right" + } +}, +{ + "type": "way", + "id": 600848479, + "bounds": { + "minlat": 40.7515320, + "minlon": -73.9968169, + "maxlat": 40.7527418, + "maxlon": -73.9939428 + }, + "nodes": [ + 42435642, + 8660001947, + 5122601051, + 8262309049, + 42444954 + ], + "geometry": [ + { "lat": 40.7515320, "lon": -73.9939428 }, + { "lat": 40.7515879, "lon": -73.9940770 }, + { "lat": 40.7516929, "lon": -73.9943249 }, + { "lat": 40.7526824, "lon": -73.9966743 }, + { "lat": 40.7527418, "lon": -73.9968169 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 600848485, + "bounds": { + "minlat": 40.7515320, + "minlon": -73.9939428, + "maxlat": 40.7518819, + "maxlon": -73.9936882 + }, + "nodes": [ + 42435642, + 8660596989, + 11191334803 + ], + "geometry": [ + { "lat": 40.7515320, "lon": -73.9939428 }, + { "lat": 40.7515752, "lon": -73.9939114 }, + { "lat": 40.7518819, "lon": -73.9936882 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 601102313, + "bounds": { + "minlat": 40.7004682, + "minlon": -73.9358560, + "maxlat": 40.7007915, + "maxlon": -73.9346682 + }, + "nodes": [ + 7153236307, + 9752179210, + 5713856987 + ], + "geometry": [ + { "lat": 40.7004682, "lon": -73.9358560 }, + { "lat": 40.7007703, "lon": -73.9347459 }, + { "lat": 40.7007915, "lon": -73.9346682 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 601102316, + "bounds": { + "minlat": 40.6999026, + "minlon": -73.9353865, + "maxlat": 40.7001692, + "maxlon": -73.9343987 + }, + "nodes": [ + 5713856988, + 9752179205, + 5713856989 + ], + "geometry": [ + { "lat": 40.6999026, "lon": -73.9353865 }, + { "lat": 40.7001492, "lon": -73.9344729 }, + { "lat": 40.7001692, "lon": -73.9343987 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 601155717, + "bounds": { + "minlat": 40.7601002, + "minlon": -73.9435730, + "maxlat": 40.7602373, + "maxlon": -73.9432085 + }, + "nodes": [ + 5714280489, + 6452721237, + 5714280490 + ], + "geometry": [ + { "lat": 40.7602373, "lon": -73.9435730 }, + { "lat": 40.7601981, "lon": -73.9434687 }, + { "lat": 40.7601002, "lon": -73.9432085 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 601446079, + "bounds": { + "minlat": 40.7853268, + "minlon": -73.9417067, + "maxlat": 40.7860039, + "maxlon": -73.9413191 + }, + "nodes": [ + 5716393833, + 6190263571, + 5716393834, + 5716393835, + 5716393836, + 5716393837, + 5716393838, + 5716393840, + 5716393839 + ], + "geometry": [ + { "lat": 40.7853268, "lon": -73.9417067 }, + { "lat": 40.7853869, "lon": -73.9416637 }, + { "lat": 40.7858551, "lon": -73.9413288 }, + { "lat": 40.7858906, "lon": -73.9413191 }, + { "lat": 40.7859241, "lon": -73.9413275 }, + { "lat": 40.7859459, "lon": -73.9413442 }, + { "lat": 40.7859622, "lon": -73.9413682 }, + { "lat": 40.7859830, "lon": -73.9414184 }, + { "lat": 40.7860039, "lon": -73.9414687 } + ], + "tags": { + "access": "private", + "foot": "private", + "highway": "service", + "name": "York Avenue", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 601448402, + "bounds": { + "minlat": 40.8306109, + "minlon": -74.0045017, + "maxlat": 40.8309141, + "maxlon": -74.0041263 + }, + "nodes": [ + 5716409666, + 5716409667, + 5716409668, + 5716409669 + ], + "geometry": [ + { "lat": 40.8306109, "lon": -74.0041263 }, + { "lat": 40.8306621, "lon": -74.0042165 }, + { "lat": 40.8308428, "lon": -74.0045017 }, + { "lat": 40.8309141, "lon": -74.0044437 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 601578071, + "bounds": { + "minlat": 40.7454288, + "minlon": -73.9489912, + "maxlat": 40.7461206, + "maxlon": -73.9487593 + }, + "nodes": [ + 5717112219, + 11232397924, + 11232397923, + 5717112220 + ], + "geometry": [ + { "lat": 40.7461206, "lon": -73.9487593 }, + { "lat": 40.7460524, "lon": -73.9487822 }, + { "lat": 40.7454891, "lon": -73.9489710 }, + { "lat": 40.7454288, "lon": -73.9489912 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 601733867, + "bounds": { + "minlat": 40.7659445, + "minlon": -73.9908549, + "maxlat": 40.7663977, + "maxlon": -73.9905314 + }, + "nodes": [ + 42446363, + 10085807105, + 7557417119 + ], + "geometry": [ + { "lat": 40.7659445, "lon": -73.9908549 }, + { "lat": 40.7659932, "lon": -73.9908208 }, + { "lat": 40.7663977, "lon": -73.9905314 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "60'", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 601866336, + "bounds": { + "minlat": 40.8776021, + "minlon": -73.9490148, + "maxlat": 40.8781669, + "maxlon": -73.9485823 + }, + "nodes": [ + 103221393, + 9421906461, + 5603140243, + 530475897, + 530475904, + 530475912, + 103221395, + 9421906462, + 103221397, + 103221399, + 103221401, + 9421906463, + 530475920, + 103221403, + 5603140247, + 530475935 + ], + "geometry": [ + { "lat": 40.8781669, "lon": -73.9488097 }, + { "lat": 40.8781309, "lon": -73.9488445 }, + { "lat": 40.8780777, "lon": -73.9488660 }, + { "lat": 40.8779560, "lon": -73.9488941 }, + { "lat": 40.8778678, "lon": -73.9489216 }, + { "lat": 40.8777662, "lon": -73.9489842 }, + { "lat": 40.8776985, "lon": -73.9490148 }, + { "lat": 40.8776528, "lon": -73.9490055 }, + { "lat": 40.8776178, "lon": -73.9489692 }, + { "lat": 40.8776021, "lon": -73.9489129 }, + { "lat": 40.8776123, "lon": -73.9488532 }, + { "lat": 40.8776417, "lon": -73.9488177 }, + { "lat": 40.8778384, "lon": -73.9487473 }, + { "lat": 40.8779099, "lon": -73.9486863 }, + { "lat": 40.8779459, "lon": -73.9486313 }, + { "lat": 40.8779677, "lon": -73.9485823 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "highway": "unclassified", + "name": "Dyckman Hill Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 601876806, + "bounds": { + "minlat": 40.8517824, + "minlon": -73.9596989, + "maxlat": 40.8601106, + "maxlon": -73.9571663 + }, + "nodes": [ + 1711517050, + 13241931851, + 13241931852, + 1711517044, + 1711517030, + 1711517028, + 1711517026, + 1711517023, + 5603145580, + 1711517020, + 1711517018, + 1711517017, + 1711517016, + 1711517015, + 1711517014, + 1711517011, + 1711517009, + 1711517007, + 12072538014, + 1711517002, + 3913234962, + 3913238547 + ], + "geometry": [ + { "lat": 40.8601106, "lon": -73.9571663 }, + { "lat": 40.8600978, "lon": -73.9572641 }, + { "lat": 40.8600403, "lon": -73.9573456 }, + { "lat": 40.8598940, "lon": -73.9574421 }, + { "lat": 40.8596992, "lon": -73.9576007 }, + { "lat": 40.8594714, "lon": -73.9576997 }, + { "lat": 40.8592484, "lon": -73.9577520 }, + { "lat": 40.8588934, "lon": -73.9577884 }, + { "lat": 40.8584350, "lon": -73.9579102 }, + { "lat": 40.8582978, "lon": -73.9579467 }, + { "lat": 40.8579163, "lon": -73.9580322 }, + { "lat": 40.8575381, "lon": -73.9582035 }, + { "lat": 40.8572818, "lon": -73.9583036 }, + { "lat": 40.8566785, "lon": -73.9584889 }, + { "lat": 40.8561600, "lon": -73.9587266 }, + { "lat": 40.8558940, "lon": -73.9588733 }, + { "lat": 40.8552585, "lon": -73.9590288 }, + { "lat": 40.8534802, "lon": -73.9591586 }, + { "lat": 40.8532515, "lon": -73.9591476 }, + { "lat": 40.8526798, "lon": -73.9593310 }, + { "lat": 40.8519347, "lon": -73.9596989 }, + { "lat": 40.8517824, "lon": -73.9596122 } + ], + "tags": { + "bicycle": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 602024756, + "bounds": { + "minlat": 40.8806083, + "minlon": -73.9533205, + "maxlat": 40.8810986, + "maxlon": -73.9524485 + }, + "nodes": [ + 5719809847, + 5719809848 + ], + "geometry": [ + { "lat": 40.8810986, "lon": -73.9533205 }, + { "lat": 40.8806083, "lon": -73.9524485 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602024757, + "bounds": { + "minlat": 40.8802802, + "minlon": -73.9524485, + "maxlat": 40.8806083, + "maxlon": -73.9519042 + }, + "nodes": [ + 5719809848, + 5719809851 + ], + "geometry": [ + { "lat": 40.8806083, "lon": -73.9524485 }, + { "lat": 40.8802802, "lon": -73.9519042 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602024758, + "bounds": { + "minlat": 40.8806083, + "minlon": -73.9524485, + "maxlat": 40.8809260, + "maxlon": -73.9519595 + }, + "nodes": [ + 5719809848, + 5719809850, + 9239519762, + 9239519763, + 6869076030 + ], + "geometry": [ + { "lat": 40.8806083, "lon": -73.9524485 }, + { "lat": 40.8808835, "lon": -73.9521836 }, + { "lat": 40.8808989, "lon": -73.9521545 }, + { "lat": 40.8809096, "lon": -73.9521189 }, + { "lat": 40.8809260, "lon": -73.9519595 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 602069412, + "bounds": { + "minlat": 40.8346496, + "minlon": -73.9709451, + "maxlat": 40.8348128, + "maxlon": -73.9708516 + }, + "nodes": [ + 5720061661, + 2349731181, + 10172884816, + 5720061662 + ], + "geometry": [ + { "lat": 40.8346496, "lon": -73.9709451 }, + { "lat": 40.8346883, "lon": -73.9709229 }, + { "lat": 40.8347251, "lon": -73.9709018 }, + { "lat": 40.8348128, "lon": -73.9708516 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602069413, + "bounds": { + "minlat": 40.8347527, + "minlon": -73.9708516, + "maxlat": 40.8357044, + "maxlon": -73.9701219 + }, + "nodes": [ + 5720061662, + 5720061663, + 5720061687, + 5720061670, + 5720061683 + ], + "geometry": [ + { "lat": 40.8348128, "lon": -73.9708516 }, + { "lat": 40.8347527, "lon": -73.9706304 }, + { "lat": 40.8351432, "lon": -73.9704217 }, + { "lat": 40.8355247, "lon": -73.9702179 }, + { "lat": 40.8357044, "lon": -73.9701219 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602069414, + "bounds": { + "minlat": 40.8355089, + "minlon": -73.9694181, + "maxlat": 40.8356053, + "maxlon": -73.9689605 + }, + "nodes": [ + 5720061671, + 10172929019, + 5757823443, + 5720061665, + 3588356656 + ], + "geometry": [ + { "lat": 40.8355089, "lon": -73.9689605 }, + { "lat": 40.8355343, "lon": -73.9690392 }, + { "lat": 40.8355543, "lon": -73.9691011 }, + { "lat": 40.8356053, "lon": -73.9692950 }, + { "lat": 40.8356038, "lon": -73.9694181 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 602069415, + "bounds": { + "minlat": 40.8348128, + "minlon": -73.9710603, + "maxlat": 40.8356412, + "maxlon": -73.9702179 + }, + "nodes": [ + 5720061662, + 5720061668, + 5720061669, + 5720061670 + ], + "geometry": [ + { "lat": 40.8348128, "lon": -73.9708516 }, + { "lat": 40.8348851, "lon": -73.9710603 }, + { "lat": 40.8356412, "lon": -73.9706359 }, + { "lat": 40.8355247, "lon": -73.9702179 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 602069416, + "bounds": { + "minlat": 40.8354656, + "minlon": -73.9694181, + "maxlat": 40.8356038, + "maxlon": -73.9689478 + }, + "nodes": [ + 3588356656, + 5757823445, + 5720061673, + 10172929018, + 5757823442, + 5757823444, + 5720061671 + ], + "geometry": [ + { "lat": 40.8356038, "lon": -73.9694181 }, + { "lat": 40.8355596, "lon": -73.9693391 }, + { "lat": 40.8355397, "lon": -73.9692659 }, + { "lat": 40.8354753, "lon": -73.9690226 }, + { "lat": 40.8354656, "lon": -73.9689859 }, + { "lat": 40.8354754, "lon": -73.9689478 }, + { "lat": 40.8355089, "lon": -73.9689605 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 602069417, + "bounds": { + "minlat": 40.8355543, + "minlon": -73.9691011, + "maxlat": 40.8357504, + "maxlon": -73.9689977 + }, + "nodes": [ + 5757823443, + 5720061667 + ], + "geometry": [ + { "lat": 40.8355543, "lon": -73.9691011 }, + { "lat": 40.8357504, "lon": -73.9689977 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602069420, + "bounds": { + "minlat": 40.8354577, + "minlon": -73.9688951, + "maxlat": 40.8361002, + "maxlon": -73.9685405 + }, + "nodes": [ + 5720061676, + 5720061679 + ], + "geometry": [ + { "lat": 40.8354577, "lon": -73.9688951 }, + { "lat": 40.8361002, "lon": -73.9685405 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602069421, + "bounds": { + "minlat": 40.8345613, + "minlon": -73.9690619, + "maxlat": 40.8354577, + "maxlon": -73.9688951 + }, + "nodes": [ + 5720061676, + 5720061680, + 5720061681 + ], + "geometry": [ + { "lat": 40.8354577, "lon": -73.9688951 }, + { "lat": 40.8350885, "lon": -73.9690619 }, + { "lat": 40.8345613, "lon": -73.9689534 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602069422, + "bounds": { + "minlat": 40.8358601, + "minlon": -73.9709082, + "maxlat": 40.8359372, + "maxlon": -73.9706480 + }, + "nodes": [ + 5720061682, + 7271518635, + 7271518641 + ], + "geometry": [ + { "lat": 40.8359372, "lon": -73.9709082 }, + { "lat": 40.8359173, "lon": -73.9708411 }, + { "lat": 40.8358601, "lon": -73.9706480 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 602069423, + "bounds": { + "minlat": 40.8349173, + "minlon": -73.9701219, + "maxlat": 40.8357044, + "maxlon": -73.9693627 + }, + "nodes": [ + 5720061683, + 5720061692, + 5720061684, + 5720061688, + 5720061685 + ], + "geometry": [ + { "lat": 40.8357044, "lon": -73.9701219 }, + { "lat": 40.8356209, "lon": -73.9698362 }, + { "lat": 40.8354825, "lon": -73.9693627 }, + { "lat": 40.8353138, "lon": -73.9694486 }, + { "lat": 40.8349173, "lon": -73.9696509 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 602069424, + "bounds": { + "minlat": 40.8349173, + "minlon": -73.9704217, + "maxlat": 40.8351432, + "maxlon": -73.9696509 + }, + "nodes": [ + 5720061685, + 5720061687 + ], + "geometry": [ + { "lat": 40.8349173, "lon": -73.9696509 }, + { "lat": 40.8351432, "lon": -73.9704217 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 602069425, + "bounds": { + "minlat": 40.8352550, + "minlon": -73.9694486, + "maxlat": 40.8354215, + "maxlon": -73.9691521 + }, + "nodes": [ + 5720061688, + 5720061689, + 5720061690 + ], + "geometry": [ + { "lat": 40.8353138, "lon": -73.9694486 }, + { "lat": 40.8352550, "lon": -73.9692438 }, + { "lat": 40.8354215, "lon": -73.9691521 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 602069426, + "bounds": { + "minlat": 40.8353138, + "minlon": -73.9702179, + "maxlat": 40.8355247, + "maxlon": -73.9694486 + }, + "nodes": [ + 5720061688, + 5720061670 + ], + "geometry": [ + { "lat": 40.8353138, "lon": -73.9694486 }, + { "lat": 40.8355247, "lon": -73.9702179 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 602069427, + "bounds": { + "minlat": 40.8356209, + "minlon": -73.9698362, + "maxlat": 40.8356999, + "maxlon": -73.9698062 + }, + "nodes": [ + 5720061691, + 5720061692 + ], + "geometry": [ + { "lat": 40.8356999, "lon": -73.9698062 }, + { "lat": 40.8356209, "lon": -73.9698362 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 602312364, + "bounds": { + "minlat": 40.8688571, + "minlon": -73.9715716, + "maxlat": 40.8689568, + "maxlon": -73.9707506 + }, + "nodes": [ + 5721591101, + 5721591102, + 5721591103, + 5721591104 + ], + "geometry": [ + { "lat": 40.8689175, "lon": -73.9707506 }, + { "lat": 40.8688659, "lon": -73.9709809 }, + { "lat": 40.8688571, "lon": -73.9711227 }, + { "lat": 40.8689568, "lon": -73.9715716 } + ], + "tags": { + "access": "private", + "highway": "residential" + } +}, +{ + "type": "way", + "id": 602327726, + "bounds": { + "minlat": 40.7463825, + "minlon": -73.9754642, + "maxlat": 40.7465819, + "maxlon": -73.9749978 + }, + "nodes": [ + 3846781088, + 5721677297, + 5721677298 + ], + "geometry": [ + { "lat": 40.7463825, "lon": -73.9754642 }, + { "lat": 40.7465819, "lon": -73.9753195 }, + { "lat": 40.7464557, "lon": -73.9749978 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 602327727, + "bounds": { + "minlat": 40.7464105, + "minlon": -73.9750252, + "maxlat": 40.7464557, + "maxlon": -73.9749978 + }, + "nodes": [ + 5721677298, + 5721677299 + ], + "geometry": [ + { "lat": 40.7464557, "lon": -73.9749978 }, + { "lat": 40.7464105, "lon": -73.9750252 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 602327728, + "bounds": { + "minlat": 40.7463114, + "minlon": -73.9755165, + "maxlat": 40.7463825, + "maxlon": -73.9754642 + }, + "nodes": [ + 5721677302, + 10168825840, + 3846781088 + ], + "geometry": [ + { "lat": 40.7463114, "lon": -73.9755165 }, + { "lat": 40.7463681, "lon": -73.9754748 }, + { "lat": 40.7463825, "lon": -73.9754642 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602329057, + "bounds": { + "minlat": 40.8645968, + "minlon": -73.9928529, + "maxlat": 40.8654179, + "maxlon": -73.9916250 + }, + "nodes": [ + 5721683926, + 5721683927, + 5721683928, + 5721683929, + 5721683930 + ], + "geometry": [ + { "lat": 40.8649452, "lon": -73.9916250 }, + { "lat": 40.8654179, "lon": -73.9925868 }, + { "lat": 40.8650710, "lon": -73.9928529 }, + { "lat": 40.8650160, "lon": -73.9927819 }, + { "lat": 40.8645968, "lon": -73.9919395 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 602329058, + "bounds": { + "minlat": 40.8638872, + "minlon": -73.9916009, + "maxlat": 40.8644782, + "maxlon": -73.9909340 + }, + "nodes": [ + 5721683931, + 5721683932, + 5721683933, + 5721683934 + ], + "geometry": [ + { "lat": 40.8638872, "lon": -73.9916009 }, + { "lat": 40.8642991, "lon": -73.9911915 }, + { "lat": 40.8644192, "lon": -73.9910387 }, + { "lat": 40.8644782, "lon": -73.9909340 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602329060, + "bounds": { + "minlat": 40.8644782, + "minlon": -73.9910000, + "maxlat": 40.8652115, + "maxlon": -73.9905613 + }, + "nodes": [ + 5721683934, + 5721683939, + 5721683940, + 5721683941, + 10232196078, + 10232196103, + 5721683942 + ], + "geometry": [ + { "lat": 40.8644782, "lon": -73.9909340 }, + { "lat": 40.8645483, "lon": -73.9909288 }, + { "lat": 40.8646616, "lon": -73.9910000 }, + { "lat": 40.8647160, "lon": -73.9909967 }, + { "lat": 40.8650791, "lon": -73.9906805 }, + { "lat": 40.8651656, "lon": -73.9906016 }, + { "lat": 40.8652115, "lon": -73.9905613 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602332800, + "bounds": { + "minlat": 40.7129145, + "minlon": -73.9807934, + "maxlat": 40.7129701, + "maxlon": -73.9800360 + }, + "nodes": [ + 5721705549, + 8310246414, + 5721705550 + ], + "geometry": [ + { "lat": 40.7129145, "lon": -73.9807934 }, + { "lat": 40.7129218, "lon": -73.9806936 }, + { "lat": 40.7129701, "lon": -73.9800360 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 602374150, + "bounds": { + "minlat": 40.8739933, + "minlon": -73.9545536, + "maxlat": 40.8751417, + "maxlon": -73.9530007 + }, + "nodes": [ + 5901981558, + 5721918265, + 5721918261, + 5721918262, + 5721918263, + 5721918264 + ], + "geometry": [ + { "lat": 40.8739933, "lon": -73.9530007 }, + { "lat": 40.8742333, "lon": -73.9534667 }, + { "lat": 40.8747165, "lon": -73.9543529 }, + { "lat": 40.8750164, "lon": -73.9540724 }, + { "lat": 40.8751417, "lon": -73.9543263 }, + { "lat": 40.8748409, "lon": -73.9545536 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602374152, + "bounds": { + "minlat": 40.8742333, + "minlon": -73.9534667, + "maxlat": 40.8745264, + "maxlon": -73.9531739 + }, + "nodes": [ + 5721918265, + 5721918266 + ], + "geometry": [ + { "lat": 40.8742333, "lon": -73.9534667 }, + { "lat": 40.8745264, "lon": -73.9531739 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602374154, + "bounds": { + "minlat": 40.8736826, + "minlon": -73.9528957, + "maxlat": 40.8742434, + "maxlon": -73.9516773 + }, + "nodes": [ + 5721918267, + 5721918268, + 5721918269, + 5721918270, + 5721918271 + ], + "geometry": [ + { "lat": 40.8742434, "lon": -73.9528957 }, + { "lat": 40.8742096, "lon": -73.9526743 }, + { "lat": 40.8740557, "lon": -73.9523042 }, + { "lat": 40.8737659, "lon": -73.9518048 }, + { "lat": 40.8736826, "lon": -73.9516773 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602374155, + "bounds": { + "minlat": 40.8734781, + "minlon": -73.9530111, + "maxlat": 40.8739684, + "maxlon": -73.9518048 + }, + "nodes": [ + 5721918270, + 5721918272, + 5721918273, + 5721918274, + 5721918275, + 5721918260 + ], + "geometry": [ + { "lat": 40.8737659, "lon": -73.9518048 }, + { "lat": 40.8736593, "lon": -73.9518934 }, + { "lat": 40.8734781, "lon": -73.9520924 }, + { "lat": 40.8737555, "lon": -73.9525448 }, + { "lat": 40.8737487, "lon": -73.9525919 }, + { "lat": 40.8739684, "lon": -73.9530111 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602374157, + "bounds": { + "minlat": 40.8744449, + "minlon": -73.9526715, + "maxlat": 40.8747780, + "maxlon": -73.9518625 + }, + "nodes": [ + 5721918276, + 5721918277, + 5721918278 + ], + "geometry": [ + { "lat": 40.8747780, "lon": -73.9526715 }, + { "lat": 40.8744449, "lon": -73.9520477 }, + { "lat": 40.8746260, "lon": -73.9518625 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602768064, + "bounds": { + "minlat": 40.8708119, + "minlon": -73.9557917, + "maxlat": 40.8709419, + "maxlon": -73.9555717 + }, + "nodes": [ + 5724370202, + 5724370201 + ], + "geometry": [ + { "lat": 40.8708119, "lon": -73.9555717 }, + { "lat": 40.8709419, "lon": -73.9557917 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 602768065, + "bounds": { + "minlat": 40.8704752, + "minlon": -73.9561473, + "maxlat": 40.8706004, + "maxlon": -73.9559277 + }, + "nodes": [ + 5724370203, + 5724370204 + ], + "geometry": [ + { "lat": 40.8706004, "lon": -73.9561473 }, + { "lat": 40.8704752, "lon": -73.9559277 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 602768066, + "bounds": { + "minlat": 40.8706004, + "minlon": -73.9561473, + "maxlat": 40.8709419, + "maxlon": -73.9557917 + }, + "nodes": [ + 5724370203, + 5724370201 + ], + "geometry": [ + { "lat": 40.8706004, "lon": -73.9561473 }, + { "lat": 40.8709419, "lon": -73.9557917 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602768067, + "bounds": { + "minlat": 40.8706004, + "minlon": -73.9569530, + "maxlat": 40.8713894, + "maxlon": -73.9557917 + }, + "nodes": [ + 5724370201, + 5724370208, + 5724370205, + 5724370206, + 5724370207, + 5724370203 + ], + "geometry": [ + { "lat": 40.8709419, "lon": -73.9557917 }, + { "lat": 40.8712886, "lon": -73.9564220 }, + { "lat": 40.8713894, "lon": -73.9566053 }, + { "lat": 40.8710598, "lon": -73.9569530 }, + { "lat": 40.8709608, "lon": -73.9567794 }, + { "lat": 40.8706004, "lon": -73.9561473 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 602768068, + "bounds": { + "minlat": 40.8713793, + "minlon": -73.9563357, + "maxlat": 40.8718595, + "maxlon": -73.9549745 + }, + "nodes": [ + 5724370209, + 5724370210, + 5724370211 + ], + "geometry": [ + { "lat": 40.8713793, "lon": -73.9549745 }, + { "lat": 40.8718595, "lon": -73.9558608 }, + { "lat": 40.8713944, "lon": -73.9563357 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 603111633, + "bounds": { + "minlat": 40.7401679, + "minlon": -73.9741150, + "maxlat": 40.7406073, + "maxlon": -73.9737942 + }, + "nodes": [ + 5726416552, + 13418877880, + 5726416551 + ], + "geometry": [ + { "lat": 40.7406073, "lon": -73.9737942 }, + { "lat": 40.7405512, "lon": -73.9738351 }, + { "lat": 40.7401679, "lon": -73.9741150 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 603173284, + "bounds": { + "minlat": 40.8085257, + "minlon": -73.9185775, + "maxlat": 40.8086638, + "maxlon": -73.9182220 + }, + "nodes": [ + 5726964129, + 5726964130 + ], + "geometry": [ + { "lat": 40.8086638, "lon": -73.9185775 }, + { "lat": 40.8085257, "lon": -73.9182220 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 603173842, + "bounds": { + "minlat": 40.8404984, + "minlon": -73.9932270, + "maxlat": 40.8409635, + "maxlon": -73.9925943 + }, + "nodes": [ + 5726967413, + 5726967414, + 5726967415, + 6317081836, + 5726967416 + ], + "geometry": [ + { "lat": 40.8404984, "lon": -73.9932270 }, + { "lat": 40.8406353, "lon": -73.9930096 }, + { "lat": 40.8407341, "lon": -73.9928863 }, + { "lat": 40.8409209, "lon": -73.9926485 }, + { "lat": 40.8409635, "lon": -73.9925943 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 603203302, + "bounds": { + "minlat": 40.8360600, + "minlon": -74.0134870, + "maxlat": 40.8365409, + "maxlon": -74.0131909 + }, + "nodes": [ + 5727153478, + 5727153479 + ], + "geometry": [ + { "lat": 40.8365409, "lon": -74.0131909 }, + { "lat": 40.8360600, "lon": -74.0134870 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 603238678, + "bounds": { + "minlat": 40.7703123, + "minlon": -73.9815300, + "maxlat": 40.7709402, + "maxlon": -73.9810753 + }, + "nodes": [ + 5727366250, + 8780665863, + 7630577032, + 7630577042, + 10032218010, + 7630577059 + ], + "geometry": [ + { "lat": 40.7709402, "lon": -73.9810753 }, + { "lat": 40.7708809, "lon": -73.9811186 }, + { "lat": 40.7706845, "lon": -73.9812633 }, + { "lat": 40.7705859, "lon": -73.9813360 }, + { "lat": 40.7703602, "lon": -73.9814959 }, + { "lat": 40.7703123, "lon": -73.9815300 } + ], + "tags": { + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 603347381, + "bounds": { + "minlat": 40.8186113, + "minlon": -74.0029682, + "maxlat": 40.8202584, + "maxlon": -74.0005679 + }, + "nodes": [ + 103147936, + 12537534787, + 5727986078, + 8603362501, + 5727986065, + 5727986066, + 5727986088, + 5727986067, + 5727986068, + 5727986069, + 5727986079, + 5727986070, + 8212672896, + 8212672898, + 5727986071 + ], + "geometry": [ + { "lat": 40.8195630, "lon": -74.0005679 }, + { "lat": 40.8196004, "lon": -74.0006815 }, + { "lat": 40.8196324, "lon": -74.0007791 }, + { "lat": 40.8197364, "lon": -74.0009294 }, + { "lat": 40.8199750, "lon": -74.0014353 }, + { "lat": 40.8202584, "lon": -74.0020180 }, + { "lat": 40.8198241, "lon": -74.0023797 }, + { "lat": 40.8195723, "lon": -74.0026891 }, + { "lat": 40.8192388, "lon": -74.0029682 }, + { "lat": 40.8191684, "lon": -74.0029566 }, + { "lat": 40.8188585, "lon": -74.0023881 }, + { "lat": 40.8188483, "lon": -74.0023694 }, + { "lat": 40.8187787, "lon": -74.0022214 }, + { "lat": 40.8186892, "lon": -74.0020314 }, + { "lat": 40.8186113, "lon": -74.0018658 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 603347384, + "bounds": { + "minlat": 40.8188585, + "minlon": -74.0023881, + "maxlat": 40.8195296, + "maxlon": -74.0010723 + }, + "nodes": [ + 5727986079, + 5727986080, + 5727986081, + 8212672895, + 8212672897, + 8603362500, + 10266864256, + 5727986083 + ], + "geometry": [ + { "lat": 40.8188585, "lon": -74.0023881 }, + { "lat": 40.8194714, "lon": -74.0018336 }, + { "lat": 40.8195296, "lon": -74.0017274 }, + { "lat": 40.8194699, "lon": -74.0015997 }, + { "lat": 40.8193848, "lon": -74.0014176 }, + { "lat": 40.8193252, "lon": -74.0012900 }, + { "lat": 40.8193015, "lon": -74.0012394 }, + { "lat": 40.8192234, "lon": -74.0010723 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 603347386, + "bounds": { + "minlat": 40.8192234, + "minlon": -74.0010723, + "maxlat": 40.8192963, + "maxlon": -74.0010507 + }, + "nodes": [ + 5727986083, + 5727986085 + ], + "geometry": [ + { "lat": 40.8192234, "lon": -74.0010723 }, + { "lat": 40.8192963, "lon": -74.0010507 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 603347388, + "bounds": { + "minlat": 40.8191869, + "minlon": -74.0010507, + "maxlat": 40.8192963, + "maxlon": -74.0007938 + }, + "nodes": [ + 5727986085, + 13526292589, + 5727986082 + ], + "geometry": [ + { "lat": 40.8192963, "lon": -74.0010507 }, + { "lat": 40.8192346, "lon": -74.0009057 }, + { "lat": 40.8191869, "lon": -74.0007938 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 603347390, + "bounds": { + "minlat": 40.8199750, + "minlon": -74.0014353, + "maxlat": 40.8209981, + "maxlon": -74.0005558 + }, + "nodes": [ + 5727986065, + 10899326945, + 103207147 + ], + "geometry": [ + { "lat": 40.8199750, "lon": -74.0014353 }, + { "lat": 40.8200057, "lon": -74.0014089 }, + { "lat": 40.8209981, "lon": -74.0005558 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 603347391, + "bounds": { + "minlat": 40.8186113, + "minlon": -74.0018658, + "maxlat": 40.8188773, + "maxlon": -74.0013839 + }, + "nodes": [ + 5727986076, + 5727986086, + 5727986087, + 5727986071 + ], + "geometry": [ + { "lat": 40.8188428, "lon": -74.0013839 }, + { "lat": 40.8188773, "lon": -74.0015760 }, + { "lat": 40.8188665, "lon": -74.0016377 }, + { "lat": 40.8186113, "lon": -74.0018658 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 603347394, + "bounds": { + "minlat": 40.8184347, + "minlon": -74.0018658, + "maxlat": 40.8188428, + "maxlon": -74.0013708 + }, + "nodes": [ + 5727986071, + 5727986072, + 5727986073, + 5727986074, + 5727986075, + 5727986076 + ], + "geometry": [ + { "lat": 40.8186113, "lon": -74.0018658 }, + { "lat": 40.8184996, "lon": -74.0018083 }, + { "lat": 40.8184347, "lon": -74.0017153 }, + { "lat": 40.8184523, "lon": -74.0015830 }, + { "lat": 40.8187284, "lon": -74.0013708 }, + { "lat": 40.8188428, "lon": -74.0013839 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 603347396, + "bounds": { + "minlat": 40.8188428, + "minlon": -74.0013839, + "maxlat": 40.8192234, + "maxlon": -74.0010723 + }, + "nodes": [ + 5727986076, + 5727986083 + ], + "geometry": [ + { "lat": 40.8188428, "lon": -74.0013839 }, + { "lat": 40.8192234, "lon": -74.0010723 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 604265352, + "bounds": { + "minlat": 40.7845915, + "minlon": -73.9432053, + "maxlat": 40.7849275, + "maxlon": -73.9423947 + }, + "nodes": [ + 5734136453, + 5482216780 + ], + "geometry": [ + { "lat": 40.7849275, "lon": -73.9432053 }, + { "lat": 40.7845915, "lon": -73.9423947 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 604265353, + "bounds": { + "minlat": 40.7845915, + "minlon": -73.9423947, + "maxlat": 40.7847404, + "maxlon": -73.9422858 + }, + "nodes": [ + 5482216780, + 8828070137, + 5482216783 + ], + "geometry": [ + { "lat": 40.7845915, "lon": -73.9423947 }, + { "lat": 40.7846777, "lon": -73.9423301 }, + { "lat": 40.7847404, "lon": -73.9422858 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 604266548, + "bounds": { + "minlat": 40.7878540, + "minlon": -73.9418664, + "maxlat": 40.7879422, + "maxlon": -73.9418023 + }, + "nodes": [ + 5482216765, + 6191027337, + 5482216760 + ], + "geometry": [ + { "lat": 40.7878540, "lon": -73.9418664 }, + { "lat": 40.7879192, "lon": -73.9418190 }, + { "lat": 40.7879422, "lon": -73.9418023 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 604266550, + "bounds": { + "minlat": 40.7879238, + "minlon": -73.9416753, + "maxlat": 40.7880186, + "maxlon": -73.9413083 + }, + "nodes": [ + 5719241474, + 6191027354, + 5734143470, + 6191027322, + 6191027316, + 3519902038 + ], + "geometry": [ + { "lat": 40.7879342, "lon": -73.9416753 }, + { "lat": 40.7879334, "lon": -73.9416182 }, + { "lat": 40.7880186, "lon": -73.9415539 }, + { "lat": 40.7879779, "lon": -73.9414438 }, + { "lat": 40.7879661, "lon": -73.9414169 }, + { "lat": 40.7879238, "lon": -73.9413083 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 604268766, + "bounds": { + "minlat": 40.7842283, + "minlon": -73.9443933, + "maxlat": 40.7845144, + "maxlon": -73.9441840 + }, + "nodes": [ + 5734166931, + 5734166933, + 5482216805 + ], + "geometry": [ + { "lat": 40.7845144, "lon": -73.9441840 }, + { "lat": 40.7843757, "lon": -73.9442805 }, + { "lat": 40.7842283, "lon": -73.9443933 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 604462780, + "bounds": { + "minlat": 40.8778287, + "minlon": -73.9845532, + "maxlat": 40.8783676, + "maxlon": -73.9838296 + }, + "nodes": [ + 103134452, + 5735550953, + 5735550954, + 5735550955, + 5735550962 + ], + "geometry": [ + { "lat": 40.8783676, "lon": -73.9845532 }, + { "lat": 40.8782405, "lon": -73.9842705 }, + { "lat": 40.8780131, "lon": -73.9838840 }, + { "lat": 40.8779159, "lon": -73.9839671 }, + { "lat": 40.8778287, "lon": -73.9838296 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 604462781, + "bounds": { + "minlat": 40.8773764, + "minlon": -73.9840073, + "maxlat": 40.8778287, + "maxlon": -73.9835264 + }, + "nodes": [ + 5735550960, + 5735550961, + 5735550962 + ], + "geometry": [ + { "lat": 40.8773764, "lon": -73.9835264 }, + { "lat": 40.8776627, "lon": -73.9840073 }, + { "lat": 40.8778287, "lon": -73.9838296 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 604462782, + "bounds": { + "minlat": 40.8772085, + "minlon": -73.9831723, + "maxlat": 40.8772680, + "maxlon": -73.9831111 + }, + "nodes": [ + 5735550957, + 5735550958 + ], + "geometry": [ + { "lat": 40.8772680, "lon": -73.9831111 }, + { "lat": 40.8772085, "lon": -73.9831723 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 604462783, + "bounds": { + "minlat": 40.8772680, + "minlon": -73.9838296, + "maxlat": 40.8778287, + "maxlon": -73.9830464 + }, + "nodes": [ + 5735550962, + 5735550956, + 5735550957 + ], + "geometry": [ + { "lat": 40.8778287, "lon": -73.9838296 }, + { "lat": 40.8773321, "lon": -73.9830464 }, + { "lat": 40.8772680, "lon": -73.9831111 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 604462784, + "bounds": { + "minlat": 40.8771103, + "minlon": -73.9831723, + "maxlat": 40.8772085, + "maxlon": -73.9830053 + }, + "nodes": [ + 5735550958, + 13525892972, + 5735550963 + ], + "geometry": [ + { "lat": 40.8772085, "lon": -73.9831723 }, + { "lat": 40.8771564, "lon": -73.9830836 }, + { "lat": 40.8771103, "lon": -73.9830053 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 604462785, + "bounds": { + "minlat": 40.8780433, + "minlon": -73.9842835, + "maxlat": 40.8788584, + "maxlon": -73.9834155 + }, + "nodes": [ + 5735550964, + 5735550965, + 5735550966 + ], + "geometry": [ + { "lat": 40.8788584, "lon": -73.9842835 }, + { "lat": 40.8783505, "lon": -73.9834155 }, + { "lat": 40.8780433, "lon": -73.9837189 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 604462786, + "bounds": { + "minlat": 40.8782215, + "minlon": -73.9834155, + "maxlat": 40.8784707, + "maxlon": -73.9827513 + }, + "nodes": [ + 5735550965, + 5735550967, + 5735550968, + 5735550969 + ], + "geometry": [ + { "lat": 40.8783505, "lon": -73.9834155 }, + { "lat": 40.8782912, "lon": -73.9832634 }, + { "lat": 40.8782215, "lon": -73.9829922 }, + { "lat": 40.8784707, "lon": -73.9827513 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 604462787, + "bounds": { + "minlat": 40.8789636, + "minlon": -73.9840595, + "maxlat": 40.8792651, + "maxlon": -73.9835265 + }, + "nodes": [ + 5735550970, + 5735550971 + ], + "geometry": [ + { "lat": 40.8792651, "lon": -73.9840595 }, + { "lat": 40.8789636, "lon": -73.9835265 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 604462788, + "bounds": { + "minlat": 40.8798242, + "minlon": -73.9860568, + "maxlat": 40.8803535, + "maxlon": -73.9849857 + }, + "nodes": [ + 5735550972, + 5735550973, + 5735550974 + ], + "geometry": [ + { "lat": 40.8798242, "lon": -73.9849857 }, + { "lat": 40.8801211, "lon": -73.9855777 }, + { "lat": 40.8803535, "lon": -73.9860568 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 604462789, + "bounds": { + "minlat": 40.8770357, + "minlon": -73.9850902, + "maxlat": 40.8776841, + "maxlon": -73.9839772 + }, + "nodes": [ + 5735550975, + 11083819007, + 5735550976 + ], + "geometry": [ + { "lat": 40.8776841, "lon": -73.9850902 }, + { "lat": 40.8776125, "lon": -73.9849664 }, + { "lat": 40.8770357, "lon": -73.9839772 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 604462790, + "bounds": { + "minlat": 40.8773023, + "minlon": -73.9832561, + "maxlat": 40.8776088, + "maxlon": -73.9827989 + }, + "nodes": [ + 5735550977, + 5735550978, + 13525892973, + 5735550979 + ], + "geometry": [ + { "lat": 40.8776088, "lon": -73.9832561 }, + { "lat": 40.8773591, "lon": -73.9828878 }, + { "lat": 40.8773476, "lon": -73.9828698 }, + { "lat": 40.8773023, "lon": -73.9827989 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 604575430, + "bounds": { + "minlat": 40.8397450, + "minlon": -74.0180842, + "maxlat": 40.8406508, + "maxlon": -74.0178041 + }, + "nodes": [ + 294998024, + 10927731249, + 10938131462, + 294998025, + 10938126795, + 294998026, + 10938131454, + 294998027 + ], + "geometry": [ + { "lat": 40.8397450, "lon": -74.0180842 }, + { "lat": 40.8398694, "lon": -74.0180377 }, + { "lat": 40.8400009, "lon": -74.0179912 }, + { "lat": 40.8401187, "lon": -74.0179519 }, + { "lat": 40.8402397, "lon": -74.0179142 }, + { "lat": 40.8403768, "lon": -74.0178746 }, + { "lat": 40.8405134, "lon": -74.0178377 }, + { "lat": 40.8406508, "lon": -74.0178041 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 604575431, + "bounds": { + "minlat": 40.8406383, + "minlon": -74.0178041, + "maxlat": 40.8406508, + "maxlon": -74.0174299 + }, + "nodes": [ + 294998027, + 5736211672 + ], + "geometry": [ + { "lat": 40.8406508, "lon": -74.0178041 }, + { "lat": 40.8406383, "lon": -74.0174299 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 604766876, + "bounds": { + "minlat": 40.7440866, + "minlon": -73.9510343, + "maxlat": 40.7444519, + "maxlon": -73.9509157 + }, + "nodes": [ + 11384101534, + 9982728594, + 42866935, + 9982728597, + 11384101549 + ], + "geometry": [ + { "lat": 40.7440866, "lon": -73.9510343 }, + { "lat": 40.7442726, "lon": -73.9509740 }, + { "lat": 40.7443382, "lon": -73.9509526 }, + { "lat": 40.7443949, "lon": -73.9509342 }, + { "lat": 40.7444519, "lon": -73.9509157 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 605158927, + "bounds": { + "minlat": 40.8347310, + "minlon": -74.0016108, + "maxlat": 40.8352041, + "maxlon": -74.0005963 + }, + "nodes": [ + 5740382209, + 5740382210 + ], + "geometry": [ + { "lat": 40.8347310, "lon": -74.0005963 }, + { "lat": 40.8352041, "lon": -74.0016108 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 605158928, + "bounds": { + "minlat": 40.8340403, + "minlon": -74.0021381, + "maxlat": 40.8344993, + "maxlon": -74.0011698 + }, + "nodes": [ + 5740382211, + 5740382212 + ], + "geometry": [ + { "lat": 40.8340403, "lon": -74.0011698 }, + { "lat": 40.8344993, "lon": -74.0021381 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 605158929, + "bounds": { + "minlat": 40.8341648, + "minlon": -74.0009300, + "maxlat": 40.8343430, + "maxlon": -74.0005848 + }, + "nodes": [ + 5740382213, + 5740382214 + ], + "geometry": [ + { "lat": 40.8343430, "lon": -74.0009300 }, + { "lat": 40.8341648, "lon": -74.0005848 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 605158930, + "bounds": { + "minlat": 40.8337418, + "minlon": -74.0005848, + "maxlat": 40.8341648, + "maxlon": -73.9997172 + }, + "nodes": [ + 5740382214, + 5740382215, + 5740382216 + ], + "geometry": [ + { "lat": 40.8341648, "lon": -74.0005848 }, + { "lat": 40.8341589, "lon": -74.0005179 }, + { "lat": 40.8337418, "lon": -73.9997172 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 605200576, + "bounds": { + "minlat": 40.8583370, + "minlon": -73.9734788, + "maxlat": 40.8590114, + "maxlon": -73.9727691 + }, + "nodes": [ + 5740629813, + 13525940673, + 5740629814, + 5740630026, + 5740629815, + 7382050100, + 5740629816, + 5740629817, + 5740629818, + 5740629819, + 5740629820, + 5740630021 + ], + "geometry": [ + { "lat": 40.8583370, "lon": -73.9731186 }, + { "lat": 40.8583448, "lon": -73.9732320 }, + { "lat": 40.8583516, "lon": -73.9733299 }, + { "lat": 40.8584010, "lon": -73.9734239 }, + { "lat": 40.8584511, "lon": -73.9734788 }, + { "lat": 40.8585012, "lon": -73.9734738 }, + { "lat": 40.8585441, "lon": -73.9734424 }, + { "lat": 40.8588085, "lon": -73.9731603 }, + { "lat": 40.8589290, "lon": -73.9730218 }, + { "lat": 40.8590114, "lon": -73.9729180 }, + { "lat": 40.8589722, "lon": -73.9728072 }, + { "lat": 40.8589262, "lon": -73.9727691 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 605200577, + "bounds": { + "minlat": 40.8584010, + "minlon": -73.9734239, + "maxlat": 40.8589262, + "maxlon": -73.9727691 + }, + "nodes": [ + 5740630021, + 5740630023, + 5740630024, + 5740630025, + 5740630026 + ], + "geometry": [ + { "lat": 40.8589262, "lon": -73.9727691 }, + { "lat": 40.8586696, "lon": -73.9730376 }, + { "lat": 40.8584497, "lon": -73.9732688 }, + { "lat": 40.8584167, "lon": -73.9733356 }, + { "lat": 40.8584010, "lon": -73.9734239 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 605539132, + "bounds": { + "minlat": 40.8163300, + "minlon": -74.0024711, + "maxlat": 40.8163767, + "maxlon": -74.0022117 + }, + "nodes": [ + 103147924, + 13525538791, + 5743100640 + ], + "geometry": [ + { "lat": 40.8163300, "lon": -74.0022117 }, + { "lat": 40.8163482, "lon": -74.0023135 }, + { "lat": 40.8163767, "lon": -74.0024711 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 605539133, + "bounds": { + "minlat": 40.8168766, + "minlon": -74.0033482, + "maxlat": 40.8170257, + "maxlon": -74.0031004 + }, + "nodes": [ + 5743100647, + 5743100648, + 5743100642 + ], + "geometry": [ + { "lat": 40.8170257, "lon": -74.0033482 }, + { "lat": 40.8170161, "lon": -74.0031131 }, + { "lat": 40.8168766, "lon": -74.0031004 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 605539134, + "bounds": { + "minlat": 40.8163767, + "minlon": -74.0031065, + "maxlat": 40.8166748, + "maxlon": -74.0024711 + }, + "nodes": [ + 5743100640, + 5743100649 + ], + "geometry": [ + { "lat": 40.8163767, "lon": -74.0024711 }, + { "lat": 40.8166748, "lon": -74.0031065 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 605539135, + "bounds": { + "minlat": 40.8164954, + "minlon": -74.0031120, + "maxlat": 40.8166748, + "maxlon": -74.0031065 + }, + "nodes": [ + 5743100649, + 5743100643 + ], + "geometry": [ + { "lat": 40.8166748, "lon": -74.0031065 }, + { "lat": 40.8164954, "lon": -74.0031120 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 605539136, + "bounds": { + "minlat": 40.8163767, + "minlon": -74.0031004, + "maxlat": 40.8168766, + "maxlon": -74.0024365 + }, + "nodes": [ + 5743100642, + 5743100641, + 5743100640 + ], + "geometry": [ + { "lat": 40.8168766, "lon": -74.0031004 }, + { "lat": 40.8165259, "lon": -74.0024365 }, + { "lat": 40.8163767, "lon": -74.0024711 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 605539137, + "bounds": { + "minlat": 40.8166748, + "minlon": -74.0031065, + "maxlat": 40.8168766, + "maxlon": -74.0031004 + }, + "nodes": [ + 5743100642, + 5743100649 + ], + "geometry": [ + { "lat": 40.8168766, "lon": -74.0031004 }, + { "lat": 40.8166748, "lon": -74.0031065 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 605539138, + "bounds": { + "minlat": 40.8162101, + "minlon": -74.0031120, + "maxlat": 40.8164954, + "maxlon": -74.0024711 + }, + "nodes": [ + 5743100643, + 5743100644, + 5743100645, + 5743100646, + 5743100640 + ], + "geometry": [ + { "lat": 40.8164954, "lon": -74.0031120 }, + { "lat": 40.8164413, "lon": -74.0030762 }, + { "lat": 40.8162101, "lon": -74.0026359 }, + { "lat": 40.8162117, "lon": -74.0025881 }, + { "lat": 40.8163767, "lon": -74.0024711 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 605659021, + "bounds": { + "minlat": 40.7151998, + "minlon": -73.9802755, + "maxlat": 40.7156668, + "maxlon": -73.9800361 + }, + "nodes": [ + 5743893354, + 8310245609, + 42435548 + ], + "geometry": [ + { "lat": 40.7151998, "lon": -73.9802755 }, + { "lat": 40.7155855, "lon": -73.9800778 }, + { "lat": 40.7156668, "lon": -73.9800361 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "name": "Cannon Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cannon", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 606239444, + "bounds": { + "minlat": 40.8272138, + "minlon": -74.0159595, + "maxlat": 40.8278006, + "maxlon": -74.0151301 + }, + "nodes": [ + 5748431707, + 5748431708, + 5748431717, + 5748431709, + 5748431719, + 5748431716, + 5748431714, + 5748431710, + 5748431711, + 5748431712, + 5748431713, + 5748431714 + ], + "geometry": [ + { "lat": 40.8272138, "lon": -74.0159521 }, + { "lat": 40.8273748, "lon": -74.0159485 }, + { "lat": 40.8273823, "lon": -74.0159488 }, + { "lat": 40.8276707, "lon": -74.0159595 }, + { "lat": 40.8277106, "lon": -74.0157377 }, + { "lat": 40.8277560, "lon": -74.0155664 }, + { "lat": 40.8277712, "lon": -74.0154013 }, + { "lat": 40.8278006, "lon": -74.0152379 }, + { "lat": 40.8277508, "lon": -74.0151337 }, + { "lat": 40.8273527, "lon": -74.0151301 }, + { "lat": 40.8273582, "lon": -74.0153639 }, + { "lat": 40.8277712, "lon": -74.0154013 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606239445, + "bounds": { + "minlat": 40.8272302, + "minlon": -74.0155675, + "maxlat": 40.8277560, + "maxlon": -74.0155577 + }, + "nodes": [ + 5748431715, + 9803002131, + 9803002130, + 5748431716 + ], + "geometry": [ + { "lat": 40.8272302, "lon": -74.0155675 }, + { "lat": 40.8273829, "lon": -74.0155622 }, + { "lat": 40.8275438, "lon": -74.0155577 }, + { "lat": 40.8277560, "lon": -74.0155664 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 606239446, + "bounds": { + "minlat": 40.8273767, + "minlon": -74.0159488, + "maxlat": 40.8277106, + "maxlon": -74.0157154 + }, + "nodes": [ + 5748431717, + 5748431718, + 5748431719 + ], + "geometry": [ + { "lat": 40.8273823, "lon": -74.0159488 }, + { "lat": 40.8273767, "lon": -74.0157154 }, + { "lat": 40.8277106, "lon": -74.0157377 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606239447, + "bounds": { + "minlat": 40.8271374, + "minlon": -74.0143457, + "maxlat": 40.8296572, + "maxlon": -74.0119942 + }, + "nodes": [ + 5748431720, + 5748432821, + 5748432822, + 5748432823, + 5748432824, + 5748432825, + 5748432826, + 5748432827, + 5748432828, + 5748432831, + 5748432829, + 103243916 + ], + "geometry": [ + { "lat": 40.8271374, "lon": -74.0142476 }, + { "lat": 40.8273882, "lon": -74.0142133 }, + { "lat": 40.8274464, "lon": -74.0142159 }, + { "lat": 40.8276027, "lon": -74.0143457 }, + { "lat": 40.8291339, "lon": -74.0142545 }, + { "lat": 40.8292473, "lon": -74.0141971 }, + { "lat": 40.8294185, "lon": -74.0140601 }, + { "lat": 40.8296138, "lon": -74.0140186 }, + { "lat": 40.8296572, "lon": -74.0138720 }, + { "lat": 40.8295918, "lon": -74.0124083 }, + { "lat": 40.8295825, "lon": -74.0121988 }, + { "lat": 40.8295698, "lon": -74.0119942 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606239448, + "bounds": { + "minlat": 40.8289869, + "minlon": -74.0124665, + "maxlat": 40.8295918, + "maxlon": -74.0120506 + }, + "nodes": [ + 5748432831, + 5748432832, + 5748432833 + ], + "geometry": [ + { "lat": 40.8295918, "lon": -74.0124083 }, + { "lat": 40.8290130, "lon": -74.0124665 }, + { "lat": 40.8289869, "lon": -74.0120506 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606239449, + "bounds": { + "minlat": 40.8269245, + "minlon": -74.0117219, + "maxlat": 40.8297015, + "maxlon": -74.0105982 + }, + "nodes": [ + 5748432834, + 5748432835, + 5748432836, + 5748432837, + 5748432838, + 5748432839, + 5748432840, + 5748432841, + 5748432842, + 5748432843, + 11101387833, + 5748432844, + 5748432845, + 5748432850, + 5748432846, + 5748432847, + 5748432849, + 5748432848 + ], + "geometry": [ + { "lat": 40.8269245, "lon": -74.0106201 }, + { "lat": 40.8274172, "lon": -74.0105982 }, + { "lat": 40.8276464, "lon": -74.0106448 }, + { "lat": 40.8281675, "lon": -74.0108209 }, + { "lat": 40.8282910, "lon": -74.0109943 }, + { "lat": 40.8283889, "lon": -74.0117037 }, + { "lat": 40.8284536, "lon": -74.0117219 }, + { "lat": 40.8285437, "lon": -74.0117167 }, + { "lat": 40.8286044, "lon": -74.0116623 }, + { "lat": 40.8288317, "lon": -74.0113361 }, + { "lat": 40.8288469, "lon": -74.0112966 }, + { "lat": 40.8289355, "lon": -74.0110668 }, + { "lat": 40.8289923, "lon": -74.0110228 }, + { "lat": 40.8291684, "lon": -74.0110204 }, + { "lat": 40.8292640, "lon": -74.0110991 }, + { "lat": 40.8293178, "lon": -74.0112946 }, + { "lat": 40.8294273, "lon": -74.0113447 }, + { "lat": 40.8297015, "lon": -74.0112765 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606239450, + "bounds": { + "minlat": 40.8274172, + "minlon": -74.0105982, + "maxlat": 40.8274390, + "maxlon": -74.0102830 + }, + "nodes": [ + 5748432835, + 13527758313, + 103224027 + ], + "geometry": [ + { "lat": 40.8274172, "lon": -74.0105982 }, + { "lat": 40.8274308, "lon": -74.0104012 }, + { "lat": 40.8274390, "lon": -74.0102830 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 606283450, + "bounds": { + "minlat": 40.8374807, + "minlon": -73.9373838, + "maxlat": 40.8380035, + "maxlon": -73.9370401 + }, + "nodes": [ + 5748721453, + 8725182271, + 5748721459, + 5748721454, + 5748721455, + 5748721456 + ], + "geometry": [ + { "lat": 40.8374807, "lon": -73.9373838 }, + { "lat": 40.8375528, "lon": -73.9373337 }, + { "lat": 40.8375743, "lon": -73.9373188 }, + { "lat": 40.8377258, "lon": -73.9372138 }, + { "lat": 40.8377746, "lon": -73.9372070 }, + { "lat": 40.8380035, "lon": -73.9370401 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Jackson Avenue" + } +}, +{ + "type": "way", + "id": 606283451, + "bounds": { + "minlat": 40.8380035, + "minlon": -73.9370401, + "maxlat": 40.8380970, + "maxlon": -73.9369764 + }, + "nodes": [ + 5748721456, + 5748721457, + 8725182270, + 5748721458 + ], + "geometry": [ + { "lat": 40.8380035, "lon": -73.9370401 }, + { "lat": 40.8380384, "lon": -73.9370174 }, + { "lat": 40.8380467, "lon": -73.9370116 }, + { "lat": 40.8380970, "lon": -73.9369764 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 606454032, + "bounds": { + "minlat": 40.7401161, + "minlon": -73.9609062, + "maxlat": 40.7403672, + "maxlon": -73.9596127 + }, + "nodes": [ + 5749889415, + 8250917500, + 8018937279, + 8250917515, + 42823482 + ], + "geometry": [ + { "lat": 40.7403672, "lon": -73.9609062 }, + { "lat": 40.7403465, "lon": -73.9608060 }, + { "lat": 40.7401482, "lon": -73.9597746 }, + { "lat": 40.7401336, "lon": -73.9597008 }, + { "lat": 40.7401161, "lon": -73.9596127 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "55th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 606454034, + "bounds": { + "minlat": 40.7394672, + "minlon": -73.9618480, + "maxlat": 40.7410690, + "maxlon": -73.9608097 + }, + "nodes": [ + 5749889401, + 6394331487, + 5749889409, + 6394331489, + 6394331488, + 11428033938, + 5749889413, + 6491174718, + 5749889399, + 6394331491, + 6491174716, + 5749889415, + 6491174713, + 5749890035, + 5749890028, + 11202602819, + 11191862289, + 8018964707 + ], + "geometry": [ + { "lat": 40.7394672, "lon": -73.9618480 }, + { "lat": 40.7395061, "lon": -73.9618139 }, + { "lat": 40.7395228, "lon": -73.9617813 }, + { "lat": 40.7395964, "lon": -73.9616186 }, + { "lat": 40.7396622, "lon": -73.9614996 }, + { "lat": 40.7397381, "lon": -73.9613826 }, + { "lat": 40.7397865, "lon": -73.9613169 }, + { "lat": 40.7398350, "lon": -73.9612522 }, + { "lat": 40.7399573, "lon": -73.9611422 }, + { "lat": 40.7401137, "lon": -73.9610269 }, + { "lat": 40.7402971, "lon": -73.9609205 }, + { "lat": 40.7403672, "lon": -73.9609062 }, + { "lat": 40.7404374, "lon": -73.9608920 }, + { "lat": 40.7405616, "lon": -73.9608748 }, + { "lat": 40.7408165, "lon": -73.9608539 }, + { "lat": 40.7409782, "lon": -73.9608288 }, + { "lat": 40.7410161, "lon": -73.9608229 }, + { "lat": 40.7410690, "lon": -73.9608097 } + ], + "tags": { + "highway": "residential", + "name": "Center Boulevard", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 606545324, + "bounds": { + "minlat": 40.8478867, + "minlon": -73.9697639, + "maxlat": 40.8479531, + "maxlon": -73.9695042 + }, + "nodes": [ + 5750610018, + 10002778634, + 5750610017 + ], + "geometry": [ + { "lat": 40.8478867, "lon": -73.9695042 }, + { "lat": 40.8479336, "lon": -73.9696875 }, + { "lat": 40.8479531, "lon": -73.9697639 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 606545327, + "bounds": { + "minlat": 40.8478867, + "minlon": -73.9695042, + "maxlat": 40.8481494, + "maxlon": -73.9693826 + }, + "nodes": [ + 5750610018, + 5750610020 + ], + "geometry": [ + { "lat": 40.8478867, "lon": -73.9695042 }, + { "lat": 40.8481494, "lon": -73.9693826 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 606565594, + "bounds": { + "minlat": 40.8353747, + "minlon": -74.0011108, + "maxlat": 40.8359148, + "maxlon": -74.0000270 + }, + "nodes": [ + 5750735820, + 5750735921 + ], + "geometry": [ + { "lat": 40.8353747, "lon": -74.0000270 }, + { "lat": 40.8359148, "lon": -74.0011108 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606613356, + "bounds": { + "minlat": 40.7908797, + "minlon": -74.0007476, + "maxlat": 40.7910235, + "maxlon": -73.9999665 + }, + "nodes": [ + 103876638, + 7468537712, + 5751042507, + 6789853609 + ], + "geometry": [ + { "lat": 40.7910235, "lon": -74.0007476 }, + { "lat": 40.7910068, "lon": -74.0006514 }, + { "lat": 40.7908898, "lon": -73.9999766 }, + { "lat": 40.7908797, "lon": -73.9999665 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 606617851, + "bounds": { + "minlat": 40.8247809, + "minlon": -74.0097813, + "maxlat": 40.8249115, + "maxlon": -74.0091130 + }, + "nodes": [ + 5751062119, + 5751062650, + 5751062120 + ], + "geometry": [ + { "lat": 40.8249115, "lon": -74.0091130 }, + { "lat": 40.8248403, "lon": -74.0096072 }, + { "lat": 40.8247809, "lon": -74.0097813 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 606617852, + "bounds": { + "minlat": 40.8237020, + "minlon": -74.0115715, + "maxlat": 40.8246115, + "maxlon": -74.0110366 + }, + "nodes": [ + 5751062629, + 5751062630, + 5751062631, + 5751062622 + ], + "geometry": [ + { "lat": 40.8237020, "lon": -74.0110366 }, + { "lat": 40.8243162, "lon": -74.0113764 }, + { "lat": 40.8243258, "lon": -74.0115715 }, + { "lat": 40.8246115, "lon": -74.0115495 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606617853, + "bounds": { + "minlat": 40.8233045, + "minlon": -74.0124317, + "maxlat": 40.8244967, + "maxlon": -74.0088791 + }, + "nodes": [ + 103243926, + 12757966244, + 12757966243, + 12757966242, + 5751062632, + 5751062633, + 5751062634, + 5751062635, + 5751062636 + ], + "geometry": [ + { "lat": 40.8236002, "lon": -74.0124317 }, + { "lat": 40.8235860, "lon": -74.0123056 }, + { "lat": 40.8235788, "lon": -74.0122561 }, + { "lat": 40.8235713, "lon": -74.0121529 }, + { "lat": 40.8233045, "lon": -74.0106742 }, + { "lat": 40.8233091, "lon": -74.0104672 }, + { "lat": 40.8233805, "lon": -74.0102116 }, + { "lat": 40.8240853, "lon": -74.0093959 }, + { "lat": 40.8244967, "lon": -74.0088791 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606617854, + "bounds": { + "minlat": 40.8236794, + "minlon": -74.0110366, + "maxlat": 40.8246235, + "maxlon": -74.0089517 + }, + "nodes": [ + 5751062629, + 5751062637, + 5751062638, + 5751062639, + 5751062640, + 5751062644, + 5751062641 + ], + "geometry": [ + { "lat": 40.8237020, "lon": -74.0110366 }, + { "lat": 40.8236794, "lon": -74.0107444 }, + { "lat": 40.8237940, "lon": -74.0102172 }, + { "lat": 40.8238404, "lon": -74.0100024 }, + { "lat": 40.8241115, "lon": -74.0095916 }, + { "lat": 40.8243264, "lon": -74.0093404 }, + { "lat": 40.8246235, "lon": -74.0089517 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606617855, + "bounds": { + "minlat": 40.8243264, + "minlon": -74.0097813, + "maxlat": 40.8247809, + "maxlon": -74.0093404 + }, + "nodes": [ + 5751062120, + 5751062642, + 13058239645, + 5751062643, + 13058239639, + 5751062644 + ], + "geometry": [ + { "lat": 40.8247809, "lon": -74.0097813 }, + { "lat": 40.8246065, "lon": -74.0096918 }, + { "lat": 40.8245822, "lon": -74.0095512 }, + { "lat": 40.8245644, "lon": -74.0094483 }, + { "lat": 40.8243561, "lon": -74.0093539 }, + { "lat": 40.8243264, "lon": -74.0093404 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606617856, + "bounds": { + "minlat": 40.8248473, + "minlon": -74.0120186, + "maxlat": 40.8254792, + "maxlon": -74.0097940 + }, + "nodes": [ + 5751062625, + 5751062645, + 9526207116, + 9526207112, + 9526207115, + 9526241318, + 9526241321, + 9526241324, + 9526241327, + 7860914912, + 9526241331, + 5751062646, + 5751062647 + ], + "geometry": [ + { "lat": 40.8248473, "lon": -74.0120186 }, + { "lat": 40.8250044, "lon": -74.0119774 }, + { "lat": 40.8250778, "lon": -74.0116480 }, + { "lat": 40.8251217, "lon": -74.0114511 }, + { "lat": 40.8251661, "lon": -74.0112522 }, + { "lat": 40.8252118, "lon": -74.0110469 }, + { "lat": 40.8252611, "lon": -74.0108260 }, + { "lat": 40.8253063, "lon": -74.0106231 }, + { "lat": 40.8253546, "lon": -74.0104065 }, + { "lat": 40.8254065, "lon": -74.0101736 }, + { "lat": 40.8254382, "lon": -74.0100313 }, + { "lat": 40.8254505, "lon": -74.0099762 }, + { "lat": 40.8254792, "lon": -74.0097940 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606617857, + "bounds": { + "minlat": 40.8248914, + "minlon": -74.0098323, + "maxlat": 40.8254792, + "maxlon": -74.0096321 + }, + "nodes": [ + 5751062649, + 5751062648, + 5751062647 + ], + "geometry": [ + { "lat": 40.8248914, "lon": -74.0098323 }, + { "lat": 40.8250408, "lon": -74.0096321 }, + { "lat": 40.8254792, "lon": -74.0097940 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 606617858, + "bounds": { + "minlat": 40.8246115, + "minlon": -74.0115495, + "maxlat": 40.8249422, + "maxlon": -74.0099839 + }, + "nodes": [ + 5751062622, + 9526207110, + 9526207113, + 9526241320, + 9526241323, + 9526241326, + 9526241329, + 5751062621 + ], + "geometry": [ + { "lat": 40.8246115, "lon": -74.0115495 }, + { "lat": 40.8246667, "lon": -74.0112882 }, + { "lat": 40.8247110, "lon": -74.0110787 }, + { "lat": 40.8247540, "lon": -74.0108748 }, + { "lat": 40.8248000, "lon": -74.0106570 }, + { "lat": 40.8248434, "lon": -74.0104516 }, + { "lat": 40.8248895, "lon": -74.0102334 }, + { "lat": 40.8249422, "lon": -74.0099839 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 606617859, + "bounds": { + "minlat": 40.8236751, + "minlon": -74.0121190, + "maxlat": 40.8248606, + "maxlon": -74.0110366 + }, + "nodes": [ + 5751062622, + 5751062623, + 5751062624, + 5751062625, + 9526207107, + 5751062626, + 5751062627, + 9526207106, + 5751062628, + 8530362362, + 5751062629 + ], + "geometry": [ + { "lat": 40.8246115, "lon": -74.0115495 }, + { "lat": 40.8246115, "lon": -74.0116780 }, + { "lat": 40.8248606, "lon": -74.0116839 }, + { "lat": 40.8248473, "lon": -74.0120186 }, + { "lat": 40.8243507, "lon": -74.0120654 }, + { "lat": 40.8237824, "lon": -74.0121190 }, + { "lat": 40.8236771, "lon": -74.0118694 }, + { "lat": 40.8236751, "lon": -74.0116309 }, + { "lat": 40.8236751, "lon": -74.0115500 }, + { "lat": 40.8236821, "lon": -74.0114168 }, + { "lat": 40.8237020, "lon": -74.0110366 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606617860, + "bounds": { + "minlat": 40.8248403, + "minlon": -74.0096072, + "maxlat": 40.8251501, + "maxlon": -74.0092424 + }, + "nodes": [ + 5751062652, + 13527754331, + 5751062651, + 5751062650 + ], + "geometry": [ + { "lat": 40.8251501, "lon": -74.0092424 }, + { "lat": 40.8250554, "lon": -74.0093283 }, + { "lat": 40.8249752, "lon": -74.0094010 }, + { "lat": 40.8248403, "lon": -74.0096072 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 606617861, + "bounds": { + "minlat": 40.8247809, + "minlon": -74.0099839, + "maxlat": 40.8249422, + "maxlon": -74.0097813 + }, + "nodes": [ + 5751062120, + 5751062649, + 5751062621 + ], + "geometry": [ + { "lat": 40.8247809, "lon": -74.0097813 }, + { "lat": 40.8248914, "lon": -74.0098323 }, + { "lat": 40.8249422, "lon": -74.0099839 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606867850, + "bounds": { + "minlat": 40.8038133, + "minlon": -74.0212975, + "maxlat": 40.8057040, + "maxlon": -74.0193797 + }, + "nodes": [ + 5752813106, + 5752813105, + 5752813104, + 5752813103 + ], + "geometry": [ + { "lat": 40.8052750, "lon": -74.0193797 }, + { "lat": 40.8057040, "lon": -74.0202863 }, + { "lat": 40.8045002, "lon": -74.0212975 }, + { "lat": 40.8038133, "lon": -74.0211067 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "yes", + "service": "alley" + } +}, +{ + "type": "way", + "id": 606921057, + "bounds": { + "minlat": 40.8163425, + "minlon": -73.9820929, + "maxlat": 40.8167590, + "maxlon": -73.9813292 + }, + "nodes": [ + 5753155996, + 5753155997, + 5753155998, + 6895570660, + 5753155999, + 5753156000, + 6895570653 + ], + "geometry": [ + { "lat": 40.8163425, "lon": -73.9813292 }, + { "lat": 40.8164823, "lon": -73.9815720 }, + { "lat": 40.8165860, "lon": -73.9815928 }, + { "lat": 40.8167245, "lon": -73.9818540 }, + { "lat": 40.8167590, "lon": -73.9819189 }, + { "lat": 40.8167307, "lon": -73.9820684 }, + { "lat": 40.8167038, "lon": -73.9820929 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 606972262, + "bounds": { + "minlat": 40.8626310, + "minlon": -73.9675775, + "maxlat": 40.8634469, + "maxlon": -73.9669781 + }, + "nodes": [ + 5753470495, + 5753470496, + 5753470497, + 5753470498, + 5753470499, + 5753470500, + 5753470501, + 5753470502 + ], + "geometry": [ + { "lat": 40.8626310, "lon": -73.9675775 }, + { "lat": 40.8626407, "lon": -73.9674061 }, + { "lat": 40.8629112, "lon": -73.9670226 }, + { "lat": 40.8630008, "lon": -73.9669781 }, + { "lat": 40.8630673, "lon": -73.9669980 }, + { "lat": 40.8634221, "lon": -73.9673850 }, + { "lat": 40.8634442, "lon": -73.9674730 }, + { "lat": 40.8634469, "lon": -73.9675665 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 606972264, + "bounds": { + "minlat": 40.8634221, + "minlon": -73.9675578, + "maxlat": 40.8640278, + "maxlon": -73.9673193 + }, + "nodes": [ + 5753470500, + 5753470503, + 5753470504, + 5753470505, + 5753470506 + ], + "geometry": [ + { "lat": 40.8634221, "lon": -73.9673850 }, + { "lat": 40.8635081, "lon": -73.9673393 }, + { "lat": 40.8639267, "lon": -73.9673193 }, + { "lat": 40.8640251, "lon": -73.9674800 }, + { "lat": 40.8640278, "lon": -73.9675578 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 606972266, + "bounds": { + "minlat": 40.8631229, + "minlon": -73.9675563, + "maxlat": 40.8641272, + "maxlon": -73.9651936 + }, + "nodes": [ + 5753470507, + 103208325, + 5753470508, + 5753470509, + 7373529718, + 7373529719, + 5753470510, + 5753470511, + 5753470512, + 103146580 + ], + "geometry": [ + { "lat": 40.8641272, "lon": -73.9675563 }, + { "lat": 40.8633048, "lon": -73.9661670 }, + { "lat": 40.8632398, "lon": -73.9660571 }, + { "lat": 40.8632052, "lon": -73.9660167 }, + { "lat": 40.8631705, "lon": -73.9659938 }, + { "lat": 40.8631351, "lon": -73.9659646 }, + { "lat": 40.8631251, "lon": -73.9659291 }, + { "lat": 40.8631229, "lon": -73.9656351 }, + { "lat": 40.8635754, "lon": -73.9651936 }, + { "lat": 40.8636399, "lon": -73.9652976 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606972268, + "bounds": { + "minlat": 40.8620458, + "minlon": -73.9665535, + "maxlat": 40.8626434, + "maxlon": -73.9660660 + }, + "nodes": [ + 9283632970, + 5753470513, + 5753470514, + 7373529702, + 5753470515 + ], + "geometry": [ + { "lat": 40.8626434, "lon": -73.9660660 }, + { "lat": 40.8626038, "lon": -73.9660666 }, + { "lat": 40.8625810, "lon": -73.9660969 }, + { "lat": 40.8624882, "lon": -73.9661761 }, + { "lat": 40.8620458, "lon": -73.9665535 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 606978876, + "bounds": { + "minlat": 40.7688761, + "minlon": -73.9348917, + "maxlat": 40.7692805, + "maxlon": -73.9346091 + }, + "nodes": [ + 5753505456, + 7733801872, + 5753505459 + ], + "geometry": [ + { "lat": 40.7692805, "lon": -73.9346091 }, + { "lat": 40.7692114, "lon": -73.9346574 }, + { "lat": 40.7688761, "lon": -73.9348917 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 607014004, + "bounds": { + "minlat": 40.7096315, + "minlon": -74.0003258, + "maxlat": 40.7099407, + "maxlon": -74.0000838 + }, + "nodes": [ + 5753702311, + 12353436222, + 5765220804, + 13851002860, + 8888431284, + 5753702312 + ], + "geometry": [ + { "lat": 40.7096315, "lon": -74.0003258 }, + { "lat": 40.7096644, "lon": -74.0002834 }, + { "lat": 40.7096803, "lon": -74.0002630 }, + { "lat": 40.7097039, "lon": -74.0002326 }, + { "lat": 40.7098196, "lon": -74.0000838 }, + { "lat": 40.7099407, "lon": -74.0002478 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 607091411, + "bounds": { + "minlat": 40.7215596, + "minlon": -74.0098665, + "maxlat": 40.7245942, + "maxlon": -74.0093325 + }, + "nodes": [ + 11659041162, + 5708239345, + 11658662435, + 42436073, + 11658662437, + 8429031610, + 42436017, + 8429031611, + 8429014575, + 42436069, + 8429014576, + 8429014578, + 42436064, + 8429014579, + 11489120590 + ], + "geometry": [ + { "lat": 40.7245942, "lon": -74.0093325 }, + { "lat": 40.7245705, "lon": -74.0093372 }, + { "lat": 40.7241660, "lon": -74.0094122 }, + { "lat": 40.7241026, "lon": -74.0094239 }, + { "lat": 40.7240259, "lon": -74.0094371 }, + { "lat": 40.7235051, "lon": -74.0095266 }, + { "lat": 40.7234406, "lon": -74.0095377 }, + { "lat": 40.7233778, "lon": -74.0095487 }, + { "lat": 40.7228522, "lon": -74.0096409 }, + { "lat": 40.7227945, "lon": -74.0096510 }, + { "lat": 40.7227182, "lon": -74.0096642 }, + { "lat": 40.7221957, "lon": -74.0097561 }, + { "lat": 40.7221396, "lon": -74.0097659 }, + { "lat": 40.7220678, "lon": -74.0097784 }, + { "lat": 40.7215596, "lon": -74.0098665 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 607209192, + "bounds": { + "minlat": 40.8247483, + "minlon": -74.0097813, + "maxlat": 40.8248769, + "maxlon": -74.0090949 + }, + "nodes": [ + 5751062120, + 5755158090, + 5755158091 + ], + "geometry": [ + { "lat": 40.8247809, "lon": -74.0097813 }, + { "lat": 40.8247483, "lon": -74.0096744 }, + { "lat": 40.8248769, "lon": -74.0090949 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 607259562, + "bounds": { + "minlat": 40.7850476, + "minlon": -74.0126446, + "maxlat": 40.7852731, + "maxlon": -74.0121994 + }, + "nodes": [ + 5755469273, + 7658692347, + 5755469274 + ], + "geometry": [ + { "lat": 40.7850476, "lon": -74.0121994 }, + { "lat": 40.7850835, "lon": -74.0122702 }, + { "lat": 40.7852731, "lon": -74.0126446 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 607259563, + "bounds": { + "minlat": 40.7847245, + "minlon": -74.0129147, + "maxlat": 40.7849501, + "maxlon": -74.0124546 + }, + "nodes": [ + 5755469275, + 7658692346, + 5755469276 + ], + "geometry": [ + { "lat": 40.7849501, "lon": -74.0129147 }, + { "lat": 40.7847603, "lon": -74.0125276 }, + { "lat": 40.7847245, "lon": -74.0124546 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 607436523, + "bounds": { + "minlat": 40.7532126, + "minlon": -73.9225705, + "maxlat": 40.7687018, + "maxlon": -73.9099752 + }, + "nodes": [ + 42938567, + 3569401932, + 5116199182, + 6450587450, + 42927013, + 6450596146, + 3569858151, + 42824167, + 3569858154, + 7833503236, + 5488250129, + 7833503241, + 3570249836, + 42882999, + 3570249841, + 7661200155, + 42856560, + 7661200156, + 4971238097, + 4971238095, + 42926319, + 4971238094, + 3570249951, + 42874069, + 3570249958, + 3570249993, + 42833001, + 3570249998, + 5482180846, + 6453106195, + 42842481, + 6453106196, + 3570193178, + 6453101712, + 42912774 + ], + "geometry": [ + { "lat": 40.7532126, "lon": -73.9225705 }, + { "lat": 40.7532878, "lon": -73.9225129 }, + { "lat": 40.7546610, "lon": -73.9213997 }, + { "lat": 40.7546957, "lon": -73.9213714 }, + { "lat": 40.7547700, "lon": -73.9213110 }, + { "lat": 40.7548319, "lon": -73.9212607 }, + { "lat": 40.7562379, "lon": -73.9201168 }, + { "lat": 40.7563088, "lon": -73.9200593 }, + { "lat": 40.7563797, "lon": -73.9200016 }, + { "lat": 40.7565900, "lon": -73.9198305 }, + { "lat": 40.7566053, "lon": -73.9198181 }, + { "lat": 40.7566275, "lon": -73.9198000 }, + { "lat": 40.7585335, "lon": -73.9182497 }, + { "lat": 40.7585975, "lon": -73.9181976 }, + { "lat": 40.7586728, "lon": -73.9181369 }, + { "lat": 40.7608838, "lon": -73.9163430 }, + { "lat": 40.7609496, "lon": -73.9162872 }, + { "lat": 40.7610155, "lon": -73.9162309 }, + { "lat": 40.7622063, "lon": -73.9152618 }, + { "lat": 40.7622565, "lon": -73.9152210 }, + { "lat": 40.7623376, "lon": -73.9151550 }, + { "lat": 40.7624058, "lon": -73.9150995 }, + { "lat": 40.7634522, "lon": -73.9142482 }, + { "lat": 40.7635239, "lon": -73.9141899 }, + { "lat": 40.7635879, "lon": -73.9141383 }, + { "lat": 40.7650423, "lon": -73.9129574 }, + { "lat": 40.7651076, "lon": -73.9129039 }, + { "lat": 40.7651760, "lon": -73.9128477 }, + { "lat": 40.7659158, "lon": -73.9122450 }, + { "lat": 40.7675195, "lon": -73.9109423 }, + { "lat": 40.7675838, "lon": -73.9108899 }, + { "lat": 40.7676467, "lon": -73.9108351 }, + { "lat": 40.7685995, "lon": -73.9100608 }, + { "lat": 40.7686337, "lon": -73.9100292 }, + { "lat": 40.7687018, "lon": -73.9099752 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "41st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 607528940, + "bounds": { + "minlat": 40.8629980, + "minlon": -73.9669781, + "maxlat": 40.8630013, + "maxlon": -73.9664225 + }, + "nodes": [ + 5753470498, + 478298027, + 9283632972 + ], + "geometry": [ + { "lat": 40.8630008, "lon": -73.9669781 }, + { "lat": 40.8630013, "lon": -73.9668320 }, + { "lat": 40.8629980, "lon": -73.9664225 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 607528941, + "bounds": { + "minlat": 40.8629970, + "minlon": -73.9663052, + "maxlat": 40.8632389, + "maxlon": -73.9662979 + }, + "nodes": [ + 5757502414, + 5757502418 + ], + "geometry": [ + { "lat": 40.8629970, "lon": -73.9663052 }, + { "lat": 40.8632389, "lon": -73.9662979 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 607579647, + "bounds": { + "minlat": 40.8354577, + "minlon": -73.9689478, + "maxlat": 40.8354754, + "maxlon": -73.9688951 + }, + "nodes": [ + 5757823444, + 5720061676 + ], + "geometry": [ + { "lat": 40.8354754, "lon": -73.9689478 }, + { "lat": 40.8354577, "lon": -73.9688951 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 607579660, + "bounds": { + "minlat": 40.8560530, + "minlon": -73.9798826, + "maxlat": 40.8561992, + "maxlon": -73.9798468 + }, + "nodes": [ + 5449467672, + 5757823523 + ], + "geometry": [ + { "lat": 40.8561992, "lon": -73.9798468 }, + { "lat": 40.8560530, "lon": -73.9798826 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 607579662, + "bounds": { + "minlat": 40.8554066, + "minlon": -73.9807329, + "maxlat": 40.8561869, + "maxlon": -73.9798826 + }, + "nodes": [ + 5757823523, + 5757823528, + 5757823524, + 5757823525, + 5757823526, + 7434430792, + 5757823527, + 5757823528 + ], + "geometry": [ + { "lat": 40.8560530, "lon": -73.9798826 }, + { "lat": 40.8560025, "lon": -73.9799150 }, + { "lat": 40.8554084, "lon": -73.9803787 }, + { "lat": 40.8554066, "lon": -73.9804404 }, + { "lat": 40.8555568, "lon": -73.9807329 }, + { "lat": 40.8556323, "lon": -73.9807304 }, + { "lat": 40.8561869, "lon": -73.9802817 }, + { "lat": 40.8560025, "lon": -73.9799150 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 607601268, + "bounds": { + "minlat": 40.8541760, + "minlon": -74.0012155, + "maxlat": 40.8546964, + "maxlon": -74.0008802 + }, + "nodes": [ + 103231788, + 5757961317, + 5757961318 + ], + "geometry": [ + { "lat": 40.8541760, "lon": -74.0011190 }, + { "lat": 40.8542256, "lon": -74.0012155 }, + { "lat": 40.8546964, "lon": -74.0008802 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 607635878, + "bounds": { + "minlat": 40.8251487, + "minlon": -74.0153215, + "maxlat": 40.8271950, + "maxlon": -74.0123383 + }, + "nodes": [ + 5758184497, + 5758184498, + 5758184505, + 5758184499, + 5758184500, + 5758184502, + 5758184503, + 5758184501 + ], + "geometry": [ + { "lat": 40.8271950, "lon": -74.0151375 }, + { "lat": 40.8254357, "lon": -74.0153215 }, + { "lat": 40.8253821, "lon": -74.0138038 }, + { "lat": 40.8253819, "lon": -74.0137966 }, + { "lat": 40.8253878, "lon": -74.0136901 }, + { "lat": 40.8252036, "lon": -74.0127498 }, + { "lat": 40.8251806, "lon": -74.0125776 }, + { "lat": 40.8251487, "lon": -74.0123383 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 607635879, + "bounds": { + "minlat": 40.8251806, + "minlon": -74.0125776, + "maxlat": 40.8262153, + "maxlon": -74.0125181 + }, + "nodes": [ + 5758184503, + 5758184504 + ], + "geometry": [ + { "lat": 40.8251806, "lon": -74.0125776 }, + { "lat": 40.8262153, "lon": -74.0125181 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 607635880, + "bounds": { + "minlat": 40.8233762, + "minlon": -74.0148271, + "maxlat": 40.8245314, + "maxlon": -74.0123912 + }, + "nodes": [ + 5758184507, + 5758184518, + 5758184510, + 5758184511, + 8417956136, + 8417956135, + 8417956134, + 8417956139, + 5758184512, + 8417956138, + 8417956137, + 5758184513, + 5758184514, + 5758184515, + 5758184516, + 5758184517 + ], + "geometry": [ + { "lat": 40.8243260, "lon": -74.0123912 }, + { "lat": 40.8243516, "lon": -74.0126354 }, + { "lat": 40.8245249, "lon": -74.0141856 }, + { "lat": 40.8245314, "lon": -74.0144269 }, + { "lat": 40.8244199, "lon": -74.0145551 }, + { "lat": 40.8242363, "lon": -74.0147345 }, + { "lat": 40.8240091, "lon": -74.0147664 }, + { "lat": 40.8236264, "lon": -74.0148271 }, + { "lat": 40.8235919, "lon": -74.0148195 }, + { "lat": 40.8235757, "lon": -74.0147848 }, + { "lat": 40.8234786, "lon": -74.0138930 }, + { "lat": 40.8233762, "lon": -74.0129610 }, + { "lat": 40.8234062, "lon": -74.0128750 }, + { "lat": 40.8234619, "lon": -74.0128282 }, + { "lat": 40.8238995, "lon": -74.0127167 }, + { "lat": 40.8238754, "lon": -74.0124164 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 607635881, + "bounds": { + "minlat": 40.8242674, + "minlon": -74.0126476, + "maxlat": 40.8243516, + "maxlon": -74.0126354 + }, + "nodes": [ + 5758184518, + 5758184519 + ], + "geometry": [ + { "lat": 40.8243516, "lon": -74.0126354 }, + { "lat": 40.8242674, "lon": -74.0126476 } + ], + "tags": { + "access": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 607635883, + "bounds": { + "minlat": 40.8238995, + "minlon": -74.0127167, + "maxlat": 40.8242674, + "maxlon": -74.0126476 + }, + "nodes": [ + 5758184519, + 5758184516 + ], + "geometry": [ + { "lat": 40.8242674, "lon": -74.0126476 }, + { "lat": 40.8238995, "lon": -74.0127167 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 607635884, + "bounds": { + "minlat": 40.8243516, + "minlon": -74.0126354, + "maxlat": 40.8246197, + "maxlon": -74.0125506 + }, + "nodes": [ + 5758184518, + 5758184520 + ], + "geometry": [ + { "lat": 40.8243516, "lon": -74.0126354 }, + { "lat": 40.8246197, "lon": -74.0125506 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 607635885, + "bounds": { + "minlat": 40.8246197, + "minlon": -74.0125506, + "maxlat": 40.8246745, + "maxlon": -74.0123718 + }, + "nodes": [ + 5758184520, + 5758186221 + ], + "geometry": [ + { "lat": 40.8246197, "lon": -74.0125506 }, + { "lat": 40.8246745, "lon": -74.0123718 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 607635886, + "bounds": { + "minlat": 40.8261513, + "minlon": -74.0110620, + "maxlat": 40.8262120, + "maxlon": -74.0103620 + }, + "nodes": [ + 103116965, + 8413699462, + 7111846878, + 5758186222 + ], + "geometry": [ + { "lat": 40.8261513, "lon": -74.0103620 }, + { "lat": 40.8261611, "lon": -74.0104540 }, + { "lat": 40.8261961, "lon": -74.0107791 }, + { "lat": 40.8262120, "lon": -74.0110620 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 607762989, + "bounds": { + "minlat": 40.7517977, + "minlon": -73.9673633, + "maxlat": 40.7518298, + "maxlon": -73.9672419 + }, + "nodes": [ + 3827336868, + 5690487661, + 11000990926, + 4249006828 + ], + "geometry": [ + { "lat": 40.7517977, "lon": -73.9672419 }, + { "lat": 40.7518107, "lon": -73.9672753 }, + { "lat": 40.7518181, "lon": -73.9673022 }, + { "lat": 40.7518298, "lon": -73.9673633 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 607763618, + "bounds": { + "minlat": 40.7490364, + "minlon": -73.9688859, + "maxlat": 40.7493023, + "maxlon": -73.9684500 + }, + "nodes": [ + 1357949868, + 5759131792, + 5759131788, + 5759131795, + 11002617448, + 5759131797, + 5759131789, + 5759131791, + 5759131796, + 11002617449, + 5759131793, + 5759131790, + 5759131794 + ], + "geometry": [ + { "lat": 40.7490702, "lon": -73.9688859 }, + { "lat": 40.7490364, "lon": -73.9687301 }, + { "lat": 40.7490386, "lon": -73.9686692 }, + { "lat": 40.7490446, "lon": -73.9686216 }, + { "lat": 40.7490584, "lon": -73.9685772 }, + { "lat": 40.7490782, "lon": -73.9685378 }, + { "lat": 40.7491075, "lon": -73.9685008 }, + { "lat": 40.7491517, "lon": -73.9684690 }, + { "lat": 40.7491890, "lon": -73.9684526 }, + { "lat": 40.7492174, "lon": -73.9684500 }, + { "lat": 40.7492487, "lon": -73.9684524 }, + { "lat": 40.7492819, "lon": -73.9684629 }, + { "lat": 40.7493023, "lon": -73.9684787 } + ], + "tags": { + "access": "no", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 608178577, + "bounds": { + "minlat": 40.7848095, + "minlon": -74.0130323, + "maxlat": 40.7849501, + "maxlon": -74.0129147 + }, + "nodes": [ + 5755469275, + 7658692348, + 5762652707 + ], + "geometry": [ + { "lat": 40.7849501, "lon": -74.0129147 }, + { "lat": 40.7848683, "lon": -74.0129831 }, + { "lat": 40.7848095, "lon": -74.0130323 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 608188754, + "bounds": { + "minlat": 40.8531659, + "minlon": -73.9726632, + "maxlat": 40.8532946, + "maxlon": -73.9723664 + }, + "nodes": [ + 5762718036, + 5362322617, + 5362322547 + ], + "geometry": [ + { "lat": 40.8531659, "lon": -73.9726632 }, + { "lat": 40.8532946, "lon": -73.9725315 }, + { "lat": 40.8532003, "lon": -73.9723664 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 608188757, + "bounds": { + "minlat": 40.8532003, + "minlon": -73.9723664, + "maxlat": 40.8534283, + "maxlon": -73.9721414 + }, + "nodes": [ + 5362322570, + 5362322547 + ], + "geometry": [ + { "lat": 40.8534283, "lon": -73.9721414 }, + { "lat": 40.8532003, "lon": -73.9723664 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 608252422, + "bounds": { + "minlat": 40.8610364, + "minlon": -73.9615260, + "maxlat": 40.8623046, + "maxlon": -73.9593664 + }, + "nodes": [ + 103253562, + 103238936, + 103094693, + 7393404764, + 103195227 + ], + "geometry": [ + { "lat": 40.8623046, "lon": -73.9615260 }, + { "lat": 40.8619165, "lon": -73.9608627 }, + { "lat": 40.8615175, "lon": -73.9601771 }, + { "lat": 40.8612768, "lon": -73.9597777 }, + { "lat": 40.8610364, "lon": -73.9593664 } + ], + "tags": { + "highway": "residential", + "name": "Myrtle Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Myrtle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 608252423, + "bounds": { + "minlat": 40.8632941, + "minlon": -73.9604472, + "maxlat": 40.8663323, + "maxlon": -73.9577686 + }, + "nodes": [ + 103157821, + 8668260484, + 440215034, + 103255714 + ], + "geometry": [ + { "lat": 40.8663323, "lon": -73.9577686 }, + { "lat": 40.8653443, "lon": -73.9585260 }, + { "lat": 40.8643140, "lon": -73.9593380 }, + { "lat": 40.8632941, "lon": -73.9604472 } + ], + "tags": { + "highway": "residential", + "name": "6th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "6th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 608252424, + "bounds": { + "minlat": 40.8632941, + "minlon": -73.9639890, + "maxlat": 40.8653950, + "maxlon": -73.9604472 + }, + "nodes": [ + 103255714, + 103189451, + 7387503123, + 7387503121, + 5108198958, + 7396469133, + 103205100, + 7324295390, + 7324295389, + 103281351, + 11578223993, + 5108197923, + 103236642 + ], + "geometry": [ + { "lat": 40.8632941, "lon": -73.9604472 }, + { "lat": 40.8636889, "lon": -73.9611159 }, + { "lat": 40.8637927, "lon": -73.9612897 }, + { "lat": 40.8639001, "lon": -73.9614694 }, + { "lat": 40.8639049, "lon": -73.9614774 }, + { "lat": 40.8639417, "lon": -73.9615389 }, + { "lat": 40.8642401, "lon": -73.9620375 }, + { "lat": 40.8644126, "lon": -73.9623280 }, + { "lat": 40.8644542, "lon": -73.9623980 }, + { "lat": 40.8646070, "lon": -73.9626550 }, + { "lat": 40.8649094, "lon": -73.9631668 }, + { "lat": 40.8649326, "lon": -73.9632061 }, + { "lat": 40.8653950, "lon": -73.9639890 } + ], + "tags": { + "highway": "residential", + "name": "Washington Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 608252425, + "bounds": { + "minlat": 40.8623046, + "minlon": -73.9615260, + "maxlat": 40.8632941, + "maxlon": -73.9604472 + }, + "nodes": [ + 103255714, + 103253562 + ], + "geometry": [ + { "lat": 40.8632941, "lon": -73.9604472 }, + { "lat": 40.8623046, "lon": -73.9615260 } + ], + "tags": { + "highway": "residential", + "name": "6th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "6th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 608305455, + "bounds": { + "minlat": 40.8403668, + "minlon": -73.9870323, + "maxlat": 40.8419882, + "maxlon": -73.9853695 + }, + "nodes": [ + 7527301264, + 5763474877, + 440215413, + 299385645 + ], + "geometry": [ + { "lat": 40.8403668, "lon": -73.9870323 }, + { "lat": 40.8404428, "lon": -73.9869479 }, + { "lat": 40.8414953, "lon": -73.9858972 }, + { "lat": 40.8419882, "lon": -73.9853695 } + ], + "tags": { + "highway": "residential", + "name": "14th Street", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "14th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 608306786, + "bounds": { + "minlat": 40.8121050, + "minlon": -74.0013390, + "maxlat": 40.8124250, + "maxlon": -74.0005200 + }, + "nodes": [ + 103144642, + 103144647 + ], + "geometry": [ + { "lat": 40.8121050, "lon": -74.0005200 }, + { "lat": 40.8124250, "lon": -74.0013390 } + ], + "tags": { + "highway": "residential", + "name": "Garfield Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Garfield", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 608306792, + "bounds": { + "minlat": 40.8121050, + "minlon": -74.0005200, + "maxlat": 40.8130470, + "maxlon": -73.9998700 + }, + "nodes": [ + 103144642, + 103261351 + ], + "geometry": [ + { "lat": 40.8121050, "lon": -74.0005200 }, + { "lat": 40.8130470, "lon": -73.9998700 } + ], + "tags": { + "highway": "residential", + "name": "Grant Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grant", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 608355937, + "bounds": { + "minlat": 40.8220717, + "minlon": -73.9555932, + "maxlat": 40.8228273, + "maxlon": -73.9537903 + }, + "nodes": [ + 42428913, + 10168100449, + 11661505844 + ], + "geometry": [ + { "lat": 40.8220717, "lon": -73.9537903 }, + { "lat": 40.8221062, "lon": -73.9538695 }, + { "lat": 40.8228273, "lon": -73.9555932 } + ], + "tags": { + "highway": "residential", + "name": "West 138th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 608355942, + "bounds": { + "minlat": 40.8217009, + "minlon": -73.9535995, + "maxlat": 40.8219884, + "maxlon": -73.9529081 + }, + "nodes": [ + 42435943, + 10170703038, + 10168100455, + 561035354 + ], + "geometry": [ + { "lat": 40.8217009, "lon": -73.9529081 }, + { "lat": 40.8217342, "lon": -73.9529903 }, + { "lat": 40.8219388, "lon": -73.9534856 }, + { "lat": 40.8219884, "lon": -73.9535995 } + ], + "tags": { + "highway": "residential", + "name": "West 138th Street", + "name_1": "West 138 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 608358192, + "bounds": { + "minlat": 40.8246425, + "minlon": -73.9112930, + "maxlat": 40.8248590, + "maxlon": -73.9105720 + }, + "nodes": [ + 42739733, + 9917683079, + 9917683077, + 42730079 + ], + "geometry": [ + { "lat": 40.8248590, "lon": -73.9112930 }, + { "lat": 40.8248329, "lon": -73.9112088 }, + { "lat": 40.8246604, "lon": -73.9106909 }, + { "lat": 40.8246425, "lon": -73.9105720 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 163rd Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 608370502, + "bounds": { + "minlat": 40.8336905, + "minlon": -73.9851431, + "maxlat": 40.8348790, + "maxlon": -73.9847340 + }, + "nodes": [ + 103162185, + 103222102, + 103222104, + 6964944029, + 103125427 + ], + "geometry": [ + { "lat": 40.8336905, "lon": -73.9851431 }, + { "lat": 40.8342800, "lon": -73.9848710 }, + { "lat": 40.8343950, "lon": -73.9848390 }, + { "lat": 40.8346417, "lon": -73.9847855 }, + { "lat": 40.8348790, "lon": -73.9847340 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Fairview Lane", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 608370503, + "bounds": { + "minlat": 40.8346519, + "minlon": -73.9847340, + "maxlat": 40.8348790, + "maxlon": -73.9836752 + }, + "nodes": [ + 103125427, + 103125425, + 6964944031, + 103125423, + 103125421, + 103125418 + ], + "geometry": [ + { "lat": 40.8348790, "lon": -73.9847340 }, + { "lat": 40.8348400, "lon": -73.9843960 }, + { "lat": 40.8348002, "lon": -73.9841916 }, + { "lat": 40.8347970, "lon": -73.9841780 }, + { "lat": 40.8347020, "lon": -73.9837930 }, + { "lat": 40.8346519, "lon": -73.9836752 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bluff Road", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bluff", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 608370504, + "bounds": { + "minlat": 40.8348790, + "minlon": -73.9847340, + "maxlat": 40.8380320, + "maxlon": -73.9829530 + }, + "nodes": [ + 103125427, + 103222107, + 103222108, + 103160734, + 103222109, + 103222111, + 103222114, + 103111279 + ], + "geometry": [ + { "lat": 40.8348790, "lon": -73.9847340 }, + { "lat": 40.8349480, "lon": -73.9847150 }, + { "lat": 40.8357030, "lon": -73.9842550 }, + { "lat": 40.8364653, "lon": -73.9839253 }, + { "lat": 40.8374560, "lon": -73.9834940 }, + { "lat": 40.8375720, "lon": -73.9834190 }, + { "lat": 40.8376660, "lon": -73.9833360 }, + { "lat": 40.8380320, "lon": -73.9829530 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Fairview Lane", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 608474553, + "bounds": { + "minlat": 40.7962240, + "minlon": -73.9411957, + "maxlat": 40.7963381, + "maxlon": -73.9409189 + }, + "nodes": [ + 5764773007, + 7924346614, + 5764773008 + ], + "geometry": [ + { "lat": 40.7963381, "lon": -73.9411957 }, + { "lat": 40.7962841, "lon": -73.9410647 }, + { "lat": 40.7962240, "lon": -73.9409189 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 608474554, + "bounds": { + "minlat": 40.7960008, + "minlon": -73.9410816, + "maxlat": 40.7964597, + "maxlon": -73.9407472 + }, + "nodes": [ + 5764773009, + 5764773008, + 5764773010 + ], + "geometry": [ + { "lat": 40.7964597, "lon": -73.9407472 }, + { "lat": 40.7962240, "lon": -73.9409189 }, + { "lat": 40.7960008, "lon": -73.9410816 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 608780431, + "bounds": { + "minlat": 40.8464772, + "minlon": -73.9982869, + "maxlat": 40.8466784, + "maxlon": -73.9980756 + }, + "nodes": [ + 5767017609, + 5767017610 + ], + "geometry": [ + { "lat": 40.8464772, "lon": -73.9982869 }, + { "lat": 40.8466784, "lon": -73.9980756 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 608794569, + "bounds": { + "minlat": 40.8032798, + "minlon": -74.0208025, + "maxlat": 40.8034582, + "maxlon": -74.0199789 + }, + "nodes": [ + 5752813101, + 7552114792, + 7549385665, + 7549385641, + 7549408392, + 5752813112, + 7549385671, + 7549385676, + 7549385677, + 7549385655, + 5752813113, + 3484688580 + ], + "geometry": [ + { "lat": 40.8033966, "lon": -74.0199789 }, + { "lat": 40.8033695, "lon": -74.0200035 }, + { "lat": 40.8033057, "lon": -74.0200614 }, + { "lat": 40.8032834, "lon": -74.0201161 }, + { "lat": 40.8032798, "lon": -74.0201748 }, + { "lat": 40.8032874, "lon": -74.0202161 }, + { "lat": 40.8034379, "lon": -74.0205191 }, + { "lat": 40.8034582, "lon": -74.0205906 }, + { "lat": 40.8034548, "lon": -74.0206560 }, + { "lat": 40.8034298, "lon": -74.0207087 }, + { "lat": 40.8033951, "lon": -74.0207461 }, + { "lat": 40.8033226, "lon": -74.0208025 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 608794570, + "bounds": { + "minlat": 40.8041447, + "minlon": -74.0195905, + "maxlat": 40.8045982, + "maxlon": -74.0192122 + }, + "nodes": [ + 5752813111, + 7549408401, + 7549385652, + 6200109357, + 7549385657, + 7549385651 + ], + "geometry": [ + { "lat": 40.8045982, "lon": -74.0192122 }, + { "lat": 40.8044560, "lon": -74.0193308 }, + { "lat": 40.8043133, "lon": -74.0194498 }, + { "lat": 40.8042177, "lon": -74.0195296 }, + { "lat": 40.8041738, "lon": -74.0195662 }, + { "lat": 40.8041447, "lon": -74.0195905 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 608905345, + "bounds": { + "minlat": 40.8547863, + "minlon": -73.9792920, + "maxlat": 40.8556480, + "maxlon": -73.9779301 + }, + "nodes": [ + 5767904858, + 7439311458, + 5449465009, + 5449454975, + 5449454972, + 103214630 + ], + "geometry": [ + { "lat": 40.8547863, "lon": -73.9779301 }, + { "lat": 40.8552553, "lon": -73.9786657 }, + { "lat": 40.8552942, "lon": -73.9787267 }, + { "lat": 40.8554835, "lon": -73.9790291 }, + { "lat": 40.8555997, "lon": -73.9792148 }, + { "lat": 40.8556480, "lon": -73.9792920 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Jane Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jane", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 608905346, + "bounds": { + "minlat": 40.8547863, + "minlon": -73.9779301, + "maxlat": 40.8553260, + "maxlon": -73.9773380 + }, + "nodes": [ + 5767904858, + 103305647, + 7440135057, + 103276287 + ], + "geometry": [ + { "lat": 40.8547863, "lon": -73.9779301 }, + { "lat": 40.8550090, "lon": -73.9776810 }, + { "lat": 40.8551231, "lon": -73.9775576 }, + { "lat": 40.8553260, "lon": -73.9773380 } + ], + "tags": { + "highway": "residential", + "name": "John Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "John", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 609063921, + "bounds": { + "minlat": 40.8334030, + "minlon": -73.9817201, + "maxlat": 40.8381650, + "maxlon": -73.9801250 + }, + "nodes": [ + 103125396, + 103093121, + 103282051, + 103282053, + 103282055, + 7504150154, + 13525419789, + 103174030 + ], + "geometry": [ + { "lat": 40.8334030, "lon": -73.9817201 }, + { "lat": 40.8349730, "lon": -73.9812537 }, + { "lat": 40.8355460, "lon": -73.9810770 }, + { "lat": 40.8358170, "lon": -73.9809740 }, + { "lat": 40.8360790, "lon": -73.9808750 }, + { "lat": 40.8376781, "lon": -73.9803000 }, + { "lat": 40.8381104, "lon": -73.9801446 }, + { "lat": 40.8381650, "lon": -73.9801250 } + ], + "tags": { + "highway": "residential", + "name": "Abbott Boulevard", + "oneway": "yes", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 609063922, + "bounds": { + "minlat": 40.8334030, + "minlon": -73.9820126, + "maxlat": 40.8335241, + "maxlon": -73.9817201 + }, + "nodes": [ + 103125396, + 6964814884, + 103125397 + ], + "geometry": [ + { "lat": 40.8334030, "lon": -73.9817201 }, + { "lat": 40.8334766, "lon": -73.9819682 }, + { "lat": 40.8335241, "lon": -73.9820126 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bluff Road", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bluff", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 609063923, + "bounds": { + "minlat": 40.8332250, + "minlon": -73.9808530, + "maxlat": 40.8349318, + "maxlon": -73.9804500 + }, + "nodes": [ + 103125390, + 103219295, + 103219297, + 103219299, + 103219301, + 103219303, + 103219305, + 5108654517 + ], + "geometry": [ + { "lat": 40.8332250, "lon": -73.9808530 }, + { "lat": 40.8335620, "lon": -73.9807970 }, + { "lat": 40.8336930, "lon": -73.9807580 }, + { "lat": 40.8343362, "lon": -73.9805032 }, + { "lat": 40.8344622, "lon": -73.9804730 }, + { "lat": 40.8345830, "lon": -73.9804520 }, + { "lat": 40.8348500, "lon": -73.9804500 }, + { "lat": 40.8349318, "lon": -73.9804556 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Dearborn Road", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dearborn", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 609063924, + "bounds": { + "minlat": 40.8332250, + "minlon": -73.9817201, + "maxlat": 40.8334030, + "maxlon": -73.9808530 + }, + "nodes": [ + 103125396, + 103125395, + 103125392, + 103125390 + ], + "geometry": [ + { "lat": 40.8334030, "lon": -73.9817201 }, + { "lat": 40.8333500, "lon": -73.9815180 }, + { "lat": 40.8333233, "lon": -73.9813892 }, + { "lat": 40.8332250, "lon": -73.9808530 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bluff Road", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bluff", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 609063925, + "bounds": { + "minlat": 40.8312975, + "minlon": -73.9827035, + "maxlat": 40.8335241, + "maxlon": -73.9820126 + }, + "nodes": [ + 103125397, + 103162176, + 103162106, + 103282025, + 7499149099, + 2814617299 + ], + "geometry": [ + { "lat": 40.8335241, "lon": -73.9820126 }, + { "lat": 40.8321676, "lon": -73.9824039 }, + { "lat": 40.8320513, "lon": -73.9824703 }, + { "lat": 40.8319871, "lon": -73.9824995 }, + { "lat": 40.8318096, "lon": -73.9825520 }, + { "lat": 40.8312975, "lon": -73.9827035 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Abbott Boulevard", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 609063926, + "bounds": { + "minlat": 40.8335241, + "minlon": -73.9827770, + "maxlat": 40.8339974, + "maxlon": -73.9820126 + }, + "nodes": [ + 103125397, + 103125399, + 103125400, + 103125402, + 103125404, + 103125408 + ], + "geometry": [ + { "lat": 40.8335241, "lon": -73.9820126 }, + { "lat": 40.8335891, "lon": -73.9821913 }, + { "lat": 40.8336671, "lon": -73.9823616 }, + { "lat": 40.8337610, "lon": -73.9825153 }, + { "lat": 40.8338523, "lon": -73.9826284 }, + { "lat": 40.8339974, "lon": -73.9827770 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bluff Road", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bluff", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 609084437, + "bounds": { + "minlat": 40.7782979, + "minlon": -74.0098264, + "maxlat": 40.7786206, + "maxlon": -74.0091259 + }, + "nodes": [ + 2631530267, + 7045779043, + 3317900276 + ], + "geometry": [ + { "lat": 40.7786206, "lon": -74.0098264 }, + { "lat": 40.7784345, "lon": -74.0094225 }, + { "lat": 40.7782979, "lon": -74.0091259 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 609084438, + "bounds": { + "minlat": 40.7786206, + "minlon": -74.0098264, + "maxlat": 40.7788546, + "maxlon": -74.0096755 + }, + "nodes": [ + 2631530267, + 1793478666, + 7043377405, + 308678157 + ], + "geometry": [ + { "lat": 40.7786206, "lon": -74.0098264 }, + { "lat": 40.7787147, "lon": -74.0097642 }, + { "lat": 40.7787880, "lon": -74.0097177 }, + { "lat": 40.7788546, "lon": -74.0096755 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "name": "Avenue at Port Imperial", + "source:name": "TIGER", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 609161597, + "bounds": { + "minlat": 40.8473283, + "minlon": -74.0133273, + "maxlat": 40.8475142, + "maxlon": -74.0130808 + }, + "nodes": [ + 5769929150, + 10936336921, + 5769929151, + 10936336928, + 5769929152, + 10936336943, + 5769929853, + 10936336918, + 5769929854, + 10936336941, + 5769929136, + 10936336917, + 10936336925, + 5769929137, + 10936336929, + 5769929138, + 10936336932, + 5769929139, + 10936336911, + 5769929145, + 10936336951, + 5769929146, + 10936336916, + 5769929147, + 10936336914, + 5769929148, + 10936336934, + 5769929149, + 10936336946, + 5769929140, + 10936336945, + 5769929141, + 10936336939, + 5769929142, + 10936336940, + 5769929143, + 10936336909, + 5769929144, + 10936336920, + 5769929150 + ], + "geometry": [ + { "lat": 40.8473283, "lon": -74.0132032 }, + { "lat": 40.8473294, "lon": -74.0131843 }, + { "lat": 40.8473330, "lon": -74.0131647 }, + { "lat": 40.8473388, "lon": -74.0131468 }, + { "lat": 40.8473467, "lon": -74.0131302 }, + { "lat": 40.8473564, "lon": -74.0131156 }, + { "lat": 40.8473678, "lon": -74.0131031 }, + { "lat": 40.8473799, "lon": -74.0130936 }, + { "lat": 40.8473943, "lon": -74.0130860 }, + { "lat": 40.8474080, "lon": -74.0130820 }, + { "lat": 40.8474235, "lon": -74.0130808 }, + { "lat": 40.8474389, "lon": -74.0130830 }, + { "lat": 40.8474448, "lon": -74.0130853 }, + { "lat": 40.8474548, "lon": -74.0130890 }, + { "lat": 40.8474697, "lon": -74.0130987 }, + { "lat": 40.8474821, "lon": -74.0131108 }, + { "lat": 40.8474929, "lon": -74.0131253 }, + { "lat": 40.8475023, "lon": -74.0131434 }, + { "lat": 40.8475087, "lon": -74.0131620 }, + { "lat": 40.8475129, "lon": -74.0131832 }, + { "lat": 40.8475142, "lon": -74.0132042 }, + { "lat": 40.8475128, "lon": -74.0132253 }, + { "lat": 40.8475086, "lon": -74.0132458 }, + { "lat": 40.8475019, "lon": -74.0132649 }, + { "lat": 40.8474929, "lon": -74.0132820 }, + { "lat": 40.8474816, "lon": -74.0132973 }, + { "lat": 40.8474683, "lon": -74.0133097 }, + { "lat": 40.8474541, "lon": -74.0133187 }, + { "lat": 40.8474393, "lon": -74.0133243 }, + { "lat": 40.8474246, "lon": -74.0133273 }, + { "lat": 40.8474087, "lon": -74.0133255 }, + { "lat": 40.8473935, "lon": -74.0133210 }, + { "lat": 40.8473804, "lon": -74.0133142 }, + { "lat": 40.8473672, "lon": -74.0133038 }, + { "lat": 40.8473563, "lon": -74.0132917 }, + { "lat": 40.8473462, "lon": -74.0132763 }, + { "lat": 40.8473386, "lon": -74.0132602 }, + { "lat": 40.8473328, "lon": -74.0132417 }, + { "lat": 40.8473294, "lon": -74.0132230 }, + { "lat": 40.8473283, "lon": -74.0132032 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 609161600, + "bounds": { + "minlat": 40.8472725, + "minlon": -74.0139193, + "maxlat": 40.8474246, + "maxlon": -74.0133273 + }, + "nodes": [ + 5769929140, + 5769929122, + 298566258 + ], + "geometry": [ + { "lat": 40.8474246, "lon": -74.0133273 }, + { "lat": 40.8473235, "lon": -74.0137209 }, + { "lat": 40.8472725, "lon": -74.0139193 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 609161601, + "bounds": { + "minlat": 40.8456255, + "minlon": -74.0122029, + "maxlat": 40.8458467, + "maxlon": -74.0120696 + }, + "nodes": [ + 298566238, + 5769929855, + 5769929856, + 5769929857, + 5769929131 + ], + "geometry": [ + { "lat": 40.8456255, "lon": -74.0122029 }, + { "lat": 40.8456959, "lon": -74.0121406 }, + { "lat": 40.8457382, "lon": -74.0120998 }, + { "lat": 40.8457862, "lon": -74.0120696 }, + { "lat": 40.8458467, "lon": -74.0120816 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 609284991, + "bounds": { + "minlat": 40.8756313, + "minlon": -73.9253980, + "maxlat": 40.8758541, + "maxlon": -73.9246245 + }, + "nodes": [ + 6057046159, + 5771241293, + 12063632736, + 5771241292, + 8584769100, + 12063632737, + 12063632738, + 12063632739, + 8584769101, + 12063632745, + 12063632746, + 12063632744, + 5771241294 + ], + "geometry": [ + { "lat": 40.8756313, "lon": -73.9253980 }, + { "lat": 40.8758273, "lon": -73.9249428 }, + { "lat": 40.8758342, "lon": -73.9249252 }, + { "lat": 40.8758391, "lon": -73.9249071 }, + { "lat": 40.8758432, "lon": -73.9248889 }, + { "lat": 40.8758464, "lon": -73.9248698 }, + { "lat": 40.8758480, "lon": -73.9248526 }, + { "lat": 40.8758487, "lon": -73.9248317 }, + { "lat": 40.8758482, "lon": -73.9247536 }, + { "lat": 40.8758487, "lon": -73.9247255 }, + { "lat": 40.8758497, "lon": -73.9246952 }, + { "lat": 40.8758516, "lon": -73.9246638 }, + { "lat": 40.8758541, "lon": -73.9246245 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 609284992, + "bounds": { + "minlat": 40.8759464, + "minlon": -73.9244357, + "maxlat": 40.8764009, + "maxlon": -73.9237035 + }, + "nodes": [ + 374460018, + 5771241301, + 5771241300, + 12063723017, + 12063723009, + 12063723012, + 12063723014, + 12063723011, + 12063723010, + 12063723013, + 12063723016, + 5771241299, + 12063723008, + 12063723007, + 5771241338, + 12063723006, + 5771241309, + 5771241310, + 12063722995, + 12063722996, + 5771241311, + 5771241312, + 12063722997, + 12063722998, + 5771241330, + 12063722999, + 5771241313, + 12063723000, + 5771241329, + 12063723001, + 12063723002, + 12063723003, + 11978683180, + 12063723004, + 12063723005, + 5771241314 + ], + "geometry": [ + { "lat": 40.8763367, "lon": -73.9244357 }, + { "lat": 40.8761545, "lon": -73.9242588 }, + { "lat": 40.8761301, "lon": -73.9242367 }, + { "lat": 40.8761185, "lon": -73.9242272 }, + { "lat": 40.8761049, "lon": -73.9242184 }, + { "lat": 40.8760874, "lon": -73.9242093 }, + { "lat": 40.8760660, "lon": -73.9242006 }, + { "lat": 40.8760480, "lon": -73.9241917 }, + { "lat": 40.8760334, "lon": -73.9241825 }, + { "lat": 40.8760210, "lon": -73.9241716 }, + { "lat": 40.8760098, "lon": -73.9241575 }, + { "lat": 40.8760005, "lon": -73.9241407 }, + { "lat": 40.8759905, "lon": -73.9241138 }, + { "lat": 40.8759798, "lon": -73.9240809 }, + { "lat": 40.8759709, "lon": -73.9240431 }, + { "lat": 40.8759619, "lon": -73.9239998 }, + { "lat": 40.8759538, "lon": -73.9239530 }, + { "lat": 40.8759477, "lon": -73.9239033 }, + { "lat": 40.8759464, "lon": -73.9238584 }, + { "lat": 40.8759498, "lon": -73.9238252 }, + { "lat": 40.8759573, "lon": -73.9237960 }, + { "lat": 40.8759716, "lon": -73.9237699 }, + { "lat": 40.8759896, "lon": -73.9237491 }, + { "lat": 40.8760107, "lon": -73.9237327 }, + { "lat": 40.8760339, "lon": -73.9237203 }, + { "lat": 40.8760613, "lon": -73.9237079 }, + { "lat": 40.8760841, "lon": -73.9237035 }, + { "lat": 40.8761062, "lon": -73.9237042 }, + { "lat": 40.8761292, "lon": -73.9237108 }, + { "lat": 40.8761517, "lon": -73.9237218 }, + { "lat": 40.8761720, "lon": -73.9237387 }, + { "lat": 40.8761925, "lon": -73.9237620 }, + { "lat": 40.8763062, "lon": -73.9238953 }, + { "lat": 40.8763258, "lon": -73.9239220 }, + { "lat": 40.8763448, "lon": -73.9239523 }, + { "lat": 40.8764009, "lon": -73.9240467 } + ], + "tags": { + "access": "private", + "highway": "service", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 609385094, + "bounds": { + "minlat": 40.8717947, + "minlon": -74.0197895, + "maxlat": 40.8723703, + "maxlon": -74.0193589 + }, + "nodes": [ + 5772182050, + 7082823888, + 7082823892, + 5772182051, + 5772182052 + ], + "geometry": [ + { "lat": 40.8723703, "lon": -74.0193589 }, + { "lat": 40.8720099, "lon": -74.0194837 }, + { "lat": 40.8719434, "lon": -74.0195067 }, + { "lat": 40.8717947, "lon": -74.0195582 }, + { "lat": 40.8718600, "lon": -74.0197895 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 609385096, + "bounds": { + "minlat": 40.8717268, + "minlon": -74.0195582, + "maxlat": 40.8717947, + "maxlon": -74.0193083 + }, + "nodes": [ + 5772182051, + 5772185953 + ], + "geometry": [ + { "lat": 40.8717947, "lon": -74.0195582 }, + { "lat": 40.8717268, "lon": -74.0193083 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 609385680, + "bounds": { + "minlat": 40.8492327, + "minlon": -73.9986660, + "maxlat": 40.8496838, + "maxlon": -73.9980961 + }, + "nodes": [ + 5772191923, + 5772191924, + 5772191925 + ], + "geometry": [ + { "lat": 40.8496838, "lon": -73.9986660 }, + { "lat": 40.8493625, "lon": -73.9980961 }, + { "lat": 40.8492327, "lon": -73.9982171 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 609395965, + "bounds": { + "minlat": 40.8388745, + "minlon": -74.0077287, + "maxlat": 40.8393853, + "maxlon": -74.0067125 + }, + "nodes": [ + 5772293401, + 12016147249, + 5772293402, + 5772293403 + ], + "geometry": [ + { "lat": 40.8388745, "lon": -74.0067125 }, + { "lat": 40.8389023, "lon": -74.0067958 }, + { "lat": 40.8389508, "lon": -74.0069416 }, + { "lat": 40.8393853, "lon": -74.0077287 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 609411840, + "bounds": { + "minlat": 40.7468165, + "minlon": -74.0004297, + "maxlat": 40.7468690, + "maxlon": -74.0003234 + }, + "nodes": [ + 5772387834, + 10171509241, + 5772387839 + ], + "geometry": [ + { "lat": 40.7468165, "lon": -74.0004297 }, + { "lat": 40.7468590, "lon": -74.0003427 }, + { "lat": 40.7468690, "lon": -74.0003234 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 609411842, + "bounds": { + "minlat": 40.7468690, + "minlon": -74.0003234, + "maxlat": 40.7472748, + "maxlon": -73.9999276 + }, + "nodes": [ + 5772387839, + 5772387835, + 5772387836, + 5772387838, + 6069996238, + 5772387837 + ], + "geometry": [ + { "lat": 40.7468690, "lon": -74.0003234 }, + { "lat": 40.7469265, "lon": -74.0002043 }, + { "lat": 40.7469294, "lon": -74.0001480 }, + { "lat": 40.7469794, "lon": -74.0000928 }, + { "lat": 40.7471956, "lon": -73.9999276 }, + { "lat": 40.7472748, "lon": -74.0001100 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 609472488, + "bounds": { + "minlat": 40.8321405, + "minlon": -73.9794032, + "maxlat": 40.8323054, + "maxlon": -73.9787352 + }, + "nodes": [ + 5772822709, + 13525443303, + 5772822710 + ], + "geometry": [ + { "lat": 40.8321405, "lon": -73.9787352 }, + { "lat": 40.8321761, "lon": -73.9788796 }, + { "lat": 40.8323054, "lon": -73.9794032 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 609523512, + "bounds": { + "minlat": 40.8355719, + "minlon": -74.0058863, + "maxlat": 40.8365173, + "maxlon": -74.0042619 + }, + "nodes": [ + 5773254142, + 5773254143, + 5773254144, + 10926498224, + 10926498225 + ], + "geometry": [ + { "lat": 40.8355719, "lon": -74.0058863 }, + { "lat": 40.8365173, "lon": -74.0049920 }, + { "lat": 40.8362582, "lon": -74.0045394 }, + { "lat": 40.8362524, "lon": -74.0044813 }, + { "lat": 40.8363825, "lon": -74.0042619 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 609523513, + "bounds": { + "minlat": 40.8365173, + "minlon": -74.0052940, + "maxlat": 40.8367069, + "maxlon": -74.0049920 + }, + "nodes": [ + 5773254143, + 5773254145 + ], + "geometry": [ + { "lat": 40.8365173, "lon": -74.0049920 }, + { "lat": 40.8367069, "lon": -74.0052940 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 609523514, + "bounds": { + "minlat": 40.8360079, + "minlon": -74.0066167, + "maxlat": 40.8365757, + "maxlon": -74.0058705 + }, + "nodes": [ + 5773254146, + 5773254147, + 5773254148, + 5773254149, + 5773254150, + 5773254151 + ], + "geometry": [ + { "lat": 40.8360079, "lon": -74.0066167 }, + { "lat": 40.8361968, "lon": -74.0063904 }, + { "lat": 40.8362170, "lon": -74.0063424 }, + { "lat": 40.8362339, "lon": -74.0062498 }, + { "lat": 40.8362449, "lon": -74.0061907 }, + { "lat": 40.8365757, "lon": -74.0058705 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 609523515, + "bounds": { + "minlat": 40.8375351, + "minlon": -74.0043236, + "maxlat": 40.8380068, + "maxlon": -74.0038177 + }, + "nodes": [ + 5773254152, + 5773256353, + 5773256354, + 5773256355 + ], + "geometry": [ + { "lat": 40.8380068, "lon": -74.0038177 }, + { "lat": 40.8376957, "lon": -74.0041339 }, + { "lat": 40.8376689, "lon": -74.0041933 }, + { "lat": 40.8375351, "lon": -74.0043236 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 609596058, + "bounds": { + "minlat": 40.7542560, + "minlon": -73.9767624, + "maxlat": 40.7546274, + "maxlon": -73.9760273 + }, + "nodes": [ + 3639381189, + 11507279898, + 100521545, + 1690449006, + 1690448994, + 100521544, + 11507279897, + 100521543, + 5773928814, + 9140654141, + 11507279896, + 1690449015, + 3639381190 + ], + "geometry": [ + { "lat": 40.7546274, "lon": -73.9760273 }, + { "lat": 40.7542934, "lon": -73.9762617 }, + { "lat": 40.7542772, "lon": -73.9762760 }, + { "lat": 40.7542611, "lon": -73.9763046 }, + { "lat": 40.7542560, "lon": -73.9763396 }, + { "lat": 40.7542628, "lon": -73.9763757 }, + { "lat": 40.7542771, "lon": -73.9764169 }, + { "lat": 40.7543691, "lon": -73.9766375 }, + { "lat": 40.7543776, "lon": -73.9766711 }, + { "lat": 40.7543804, "lon": -73.9766979 }, + { "lat": 40.7543780, "lon": -73.9767229 }, + { "lat": 40.7543722, "lon": -73.9767431 }, + { "lat": 40.7543632, "lon": -73.9767624 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:advisory": "15 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "concrete", + "tunnel": "building_passage", + "wikidata": "Q7137641", + "wikipedia": "en:Park Avenue Viaduct" + } +}, +{ + "type": "way", + "id": 610031414, + "bounds": { + "minlat": 40.7823508, + "minlon": -73.9455378, + "maxlat": 40.7824195, + "maxlon": -73.9453785 + }, + "nodes": [ + 4207786968, + 6181480042, + 5754763922 + ], + "geometry": [ + { "lat": 40.7823508, "lon": -73.9453785 }, + { "lat": 40.7824114, "lon": -73.9455218 }, + { "lat": 40.7824195, "lon": -73.9455378 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 610067588, + "bounds": { + "minlat": 40.8543307, + "minlon": -73.9775016, + "maxlat": 40.8545188, + "maxlon": -73.9771891 + }, + "nodes": [ + 103157082, + 103214628 + ], + "geometry": [ + { "lat": 40.8543307, "lon": -73.9771891 }, + { "lat": 40.8545188, "lon": -73.9775016 } + ], + "tags": { + "highway": "residential", + "name": "Jane Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jane", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 610204513, + "bounds": { + "minlat": 40.8490258, + "minlon": -73.9989044, + "maxlat": 40.8495515, + "maxlon": -73.9986639 + }, + "nodes": [ + 5779116555, + 5779116556, + 5779116557, + 5779116558, + 5779116559, + 5779116560, + 5779116561 + ], + "geometry": [ + { "lat": 40.8490258, "lon": -73.9989014 }, + { "lat": 40.8491224, "lon": -73.9988963 }, + { "lat": 40.8491953, "lon": -73.9989044 }, + { "lat": 40.8492513, "lon": -73.9988922 }, + { "lat": 40.8493538, "lon": -73.9987929 }, + { "lat": 40.8494805, "lon": -73.9986639 }, + { "lat": 40.8495515, "lon": -73.9987963 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 610296023, + "bounds": { + "minlat": 40.7637229, + "minlon": -73.9267712, + "maxlat": 40.7641668, + "maxlon": -73.9261773 + }, + "nodes": [ + 5780073552, + 6455626672, + 5780075953, + 5780075954 + ], + "geometry": [ + { "lat": 40.7637229, "lon": -73.9261773 }, + { "lat": 40.7637618, "lon": -73.9262599 }, + { "lat": 40.7640022, "lon": -73.9267712 }, + { "lat": 40.7641668, "lon": -73.9266290 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 610299128, + "bounds": { + "minlat": 40.7296492, + "minlon": -73.9914253, + "maxlat": 40.7299746, + "maxlon": -73.9908275 + }, + "nodes": [ + 5780106457, + 5784518521, + 2546987203, + 2546987222, + 5784518519, + 5780106453, + 7142969924, + 5780106459, + 5784518511, + 5784518508, + 5780106458, + 5780106462, + 5780106461, + 5780106456, + 5780106460, + 5780106454, + 5780152920, + 5780106457 + ], + "geometry": [ + { "lat": 40.7296492, "lon": -73.9908788 }, + { "lat": 40.7296530, "lon": -73.9909042 }, + { "lat": 40.7296607, "lon": -73.9909532 }, + { "lat": 40.7297265, "lon": -73.9913561 }, + { "lat": 40.7297423, "lon": -73.9913936 }, + { "lat": 40.7297556, "lon": -73.9914253 }, + { "lat": 40.7297698, "lon": -73.9914102 }, + { "lat": 40.7298594, "lon": -73.9912895 }, + { "lat": 40.7299153, "lon": -73.9912032 }, + { "lat": 40.7299615, "lon": -73.9911206 }, + { "lat": 40.7299746, "lon": -73.9910960 }, + { "lat": 40.7299733, "lon": -73.9910675 }, + { "lat": 40.7299015, "lon": -73.9908891 }, + { "lat": 40.7298860, "lon": -73.9908667 }, + { "lat": 40.7298640, "lon": -73.9908393 }, + { "lat": 40.7298438, "lon": -73.9908292 }, + { "lat": 40.7298172, "lon": -73.9908275 }, + { "lat": 40.7296492, "lon": -73.9908788 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Astor Place", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 610301171, + "bounds": { + "minlat": 40.7299864, + "minlon": -73.9910011, + "maxlat": 40.7305468, + "maxlon": -73.9905510 + }, + "nodes": [ + 7142969919, + 5780135040, + 7142969910, + 5780135044, + 5780135043, + 5780135045, + 7142969926, + 5780152921, + 5780135041, + 5780135046, + 5780135042, + 5780152917, + 5780135050, + 7142969931, + 5780135049, + 5780135048, + 7142969937, + 7142969920, + 7142969923, + 7142969943, + 7142969919 + ], + "geometry": [ + { "lat": 40.7304305, "lon": -73.9907110 }, + { "lat": 40.7305351, "lon": -73.9906293 }, + { "lat": 40.7305437, "lon": -73.9906110 }, + { "lat": 40.7305468, "lon": -73.9905918 }, + { "lat": 40.7305436, "lon": -73.9905722 }, + { "lat": 40.7305347, "lon": -73.9905576 }, + { "lat": 40.7305215, "lon": -73.9905510 }, + { "lat": 40.7305080, "lon": -73.9905510 }, + { "lat": 40.7300057, "lon": -73.9907572 }, + { "lat": 40.7299918, "lon": -73.9907707 }, + { "lat": 40.7299884, "lon": -73.9907847 }, + { "lat": 40.7299864, "lon": -73.9907960 }, + { "lat": 40.7299888, "lon": -73.9908294 }, + { "lat": 40.7300334, "lon": -73.9909429 }, + { "lat": 40.7300563, "lon": -73.9909912 }, + { "lat": 40.7300824, "lon": -73.9910011 }, + { "lat": 40.7302127, "lon": -73.9908754 }, + { "lat": 40.7302000, "lon": -73.9907879 }, + { "lat": 40.7302978, "lon": -73.9907546 }, + { "lat": 40.7304011, "lon": -73.9906580 }, + { "lat": 40.7304305, "lon": -73.9907110 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 610345070, + "bounds": { + "minlat": 40.8770266, + "minlon": -73.9898533, + "maxlat": 40.8783784, + "maxlon": -73.9865543 + }, + "nodes": [ + 5780574884, + 5780574889, + 5780574885, + 8171514860, + 5780574886, + 5780574887, + 5780574888 + ], + "geometry": [ + { "lat": 40.8774989, "lon": -73.9865543 }, + { "lat": 40.8778998, "lon": -73.9877356 }, + { "lat": 40.8783784, "lon": -73.9891458 }, + { "lat": 40.8782236, "lon": -73.9892400 }, + { "lat": 40.8772272, "lon": -73.9898533 }, + { "lat": 40.8771539, "lon": -73.9896667 }, + { "lat": 40.8770266, "lon": -73.9897499 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 610345071, + "bounds": { + "minlat": 40.8768319, + "minlon": -73.9883809, + "maxlat": 40.8778998, + "maxlon": -73.9877356 + }, + "nodes": [ + 5780574889, + 8171514861, + 13595347911, + 5780574890 + ], + "geometry": [ + { "lat": 40.8778998, "lon": -73.9877356 }, + { "lat": 40.8777524, "lon": -73.9878247 }, + { "lat": 40.8773770, "lon": -73.9880515 }, + { "lat": 40.8768319, "lon": -73.9883809 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 610345072, + "bounds": { + "minlat": 40.8767479, + "minlon": -73.9885652, + "maxlat": 40.8768319, + "maxlon": -73.9883809 + }, + "nodes": [ + 5780574890, + 5780574892 + ], + "geometry": [ + { "lat": 40.8768319, "lon": -73.9883809 }, + { "lat": 40.8767479, "lon": -73.9885652 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 610345073, + "bounds": { + "minlat": 40.8767019, + "minlon": -73.9883809, + "maxlat": 40.8768319, + "maxlon": -73.9883697 + }, + "nodes": [ + 5780574891, + 5780574890 + ], + "geometry": [ + { "lat": 40.8767019, "lon": -73.9883697 }, + { "lat": 40.8768319, "lon": -73.9883809 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 610568363, + "bounds": { + "minlat": 40.7126936, + "minlon": -73.9683549, + "maxlat": 40.7163618, + "maxlon": -73.9666088 + }, + "nodes": [ + 42520683, + 9779538112, + 5980486405, + 5980486404, + 9949556518, + 9949550311, + 7861415221, + 5782087169, + 5980486407, + 11249142511, + 42469472, + 11249142510, + 5980485758, + 5980485769, + 11249142493, + 5980485746, + 11249142497, + 5980485745, + 5980485760, + 11249142501, + 5980485761, + 9377680345, + 5782087170, + 5980485762, + 9143611894, + 9143611895, + 9143611896, + 5782087171, + 5980486400, + 5782087172 + ], + "geometry": [ + { "lat": 40.7163618, "lon": -73.9666088 }, + { "lat": 40.7162940, "lon": -73.9666655 }, + { "lat": 40.7161295, "lon": -73.9668300 }, + { "lat": 40.7159370, "lon": -73.9670389 }, + { "lat": 40.7158686, "lon": -73.9671080 }, + { "lat": 40.7158359, "lon": -73.9671437 }, + { "lat": 40.7157579, "lon": -73.9672270 }, + { "lat": 40.7157028, "lon": -73.9672866 }, + { "lat": 40.7153178, "lon": -73.9674542 }, + { "lat": 40.7150416, "lon": -73.9675793 }, + { "lat": 40.7149499, "lon": -73.9676070 }, + { "lat": 40.7148989, "lon": -73.9676286 }, + { "lat": 40.7146258, "lon": -73.9677450 }, + { "lat": 40.7143478, "lon": -73.9678664 }, + { "lat": 40.7142065, "lon": -73.9679287 }, + { "lat": 40.7141863, "lon": -73.9679404 }, + { "lat": 40.7141407, "lon": -73.9679593 }, + { "lat": 40.7140867, "lon": -73.9679818 }, + { "lat": 40.7140069, "lon": -73.9680180 }, + { "lat": 40.7136985, "lon": -73.9681574 }, + { "lat": 40.7135042, "lon": -73.9682452 }, + { "lat": 40.7134583, "lon": -73.9682651 }, + { "lat": 40.7133011, "lon": -73.9683331 }, + { "lat": 40.7132713, "lon": -73.9683448 }, + { "lat": 40.7132510, "lon": -73.9683523 }, + { "lat": 40.7132279, "lon": -73.9683549 }, + { "lat": 40.7132082, "lon": -73.9683531 }, + { "lat": 40.7131874, "lon": -73.9683446 }, + { "lat": 40.7130660, "lon": -73.9682606 }, + { "lat": 40.7126936, "lon": -73.9680033 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "River Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 611258687, + "bounds": { + "minlat": 40.7376609, + "minlon": -74.0024001, + "maxlat": 40.7387436, + "maxlon": -74.0017550 + }, + "nodes": [ + 42432208, + 8262308351, + 12010304137, + 42432211, + 4044849083, + 6213315373, + 42429378 + ], + "geometry": [ + { "lat": 40.7376609, "lon": -74.0017550 }, + { "lat": 40.7377498, "lon": -74.0018080 }, + { "lat": 40.7378084, "lon": -74.0018429 }, + { "lat": 40.7381445, "lon": -74.0020422 }, + { "lat": 40.7382552, "lon": -74.0021073 }, + { "lat": 40.7386728, "lon": -74.0023576 }, + { "lat": 40.7387436, "lon": -74.0024001 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Greenwich Avenue", + "name:etymology:wikidata": "Q205380", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5604832", + "wikipedia": "en:Greenwich Avenue" + } +}, +{ + "type": "way", + "id": 611258688, + "bounds": { + "minlat": 40.7394476, + "minlon": -74.0053043, + "maxlat": 40.7400297, + "maxlon": -74.0039828 + }, + "nodes": [ + 42429394, + 4685453632, + 8262308678, + 13859173273, + 11728146531, + 11728146527 + ], + "geometry": [ + { "lat": 40.7400297, "lon": -74.0053043 }, + { "lat": 40.7399958, "lon": -74.0052246 }, + { "lat": 40.7399778, "lon": -74.0051822 }, + { "lat": 40.7397933, "lon": -74.0047485 }, + { "lat": 40.7395599, "lon": -74.0041995 }, + { "lat": 40.7394476, "lon": -74.0039828 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lcn": "yes", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:conditional": "20 mph @ (Mo-Fr 07:00-18:00)", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "name_1": "West 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 611674241, + "bounds": { + "minlat": 40.7982032, + "minlon": -73.9662230, + "maxlat": 40.7986801, + "maxlon": -73.9658855 + }, + "nodes": [ + 10166004107, + 5790702449 + ], + "geometry": [ + { "lat": 40.7986801, "lon": -73.9658855 }, + { "lat": 40.7982032, "lon": -73.9662230 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 611674242, + "bounds": { + "minlat": 40.7981164, + "minlon": -73.9660214, + "maxlat": 40.7986742, + "maxlon": -73.9656234 + }, + "nodes": [ + 5790702447, + 10166004106, + 5790702448 + ], + "geometry": [ + { "lat": 40.7981164, "lon": -73.9660214 }, + { "lat": 40.7985921, "lon": -73.9656808 }, + { "lat": 40.7986742, "lon": -73.9656234 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 612367893, + "bounds": { + "minlat": 40.7139140, + "minlon": -73.9929600, + "maxlat": 40.7143257, + "maxlon": -73.9928335 + }, + "nodes": [ + 5796726886, + 5796726882, + 5863601509, + 5796726884, + 5863601513, + 5863601504, + 5863601501, + 5796726891, + 8307641622, + 5796726894, + 8307641632, + 5796726899, + 5796726900, + 5796726904, + 5863601514, + 5796726886 + ], + "geometry": [ + { "lat": 40.7143134, "lon": -73.9929589 }, + { "lat": 40.7143219, "lon": -73.9929515 }, + { "lat": 40.7143257, "lon": -73.9929321 }, + { "lat": 40.7143236, "lon": -73.9929110 }, + { "lat": 40.7143136, "lon": -73.9928947 }, + { "lat": 40.7143050, "lon": -73.9928893 }, + { "lat": 40.7143028, "lon": -73.9928881 }, + { "lat": 40.7139355, "lon": -73.9928335 }, + { "lat": 40.7139288, "lon": -73.9928376 }, + { "lat": 40.7139185, "lon": -73.9928439 }, + { "lat": 40.7139160, "lon": -73.9928715 }, + { "lat": 40.7139140, "lon": -73.9928931 }, + { "lat": 40.7139238, "lon": -73.9929123 }, + { "lat": 40.7139479, "lon": -73.9929247 }, + { "lat": 40.7142995, "lon": -73.9929600 }, + { "lat": 40.7143134, "lon": -73.9929589 } + ], + "tags": { + "area:highway": "traffic_island", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 612728125, + "bounds": { + "minlat": 40.7254405, + "minlon": -73.9957306, + "maxlat": 40.7254697, + "maxlon": -73.9956687 + }, + "nodes": [ + 5799463409, + 8309479800, + 5799463408 + ], + "geometry": [ + { "lat": 40.7254405, "lon": -73.9956687 }, + { "lat": 40.7254623, "lon": -73.9957141 }, + { "lat": 40.7254697, "lon": -73.9957306 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 612740801, + "bounds": { + "minlat": 40.7152849, + "minlon": -73.9960270, + "maxlat": 40.7161063, + "maxlon": -73.9952078 + }, + "nodes": [ + 5799584473, + 11495926912, + 11495926911, + 11495926910, + 11495926909, + 11495926908, + 11495926907, + 11495926906, + 11495926905, + 11495926902, + 11495926900, + 11495926901, + 11495926889, + 5799584472, + 11495926888, + 5799584474, + 5799584476, + 5799584478, + 5799584483, + 10606723132, + 5799584481, + 11495926885, + 11495926884, + 5799584475, + 11495926887, + 11495926886, + 5799584479, + 5799584477, + 11495926899, + 5799584482, + 2826473385, + 2826473388, + 2826473383, + 2826473384, + 2826473378, + 2826473374, + 2826473370, + 2826473366, + 2826473363, + 2826473360, + 2826473358, + 2826473354, + 2826473353, + 11669846861, + 5799584473 + ], + "geometry": [ + { "lat": 40.7153073, "lon": -73.9952078 }, + { "lat": 40.7153342, "lon": -73.9952660 }, + { "lat": 40.7153586, "lon": -73.9953172 }, + { "lat": 40.7153886, "lon": -73.9953653 }, + { "lat": 40.7154195, "lon": -73.9954082 }, + { "lat": 40.7154541, "lon": -73.9954424 }, + { "lat": 40.7154922, "lon": -73.9954695 }, + { "lat": 40.7155382, "lon": -73.9954955 }, + { "lat": 40.7155845, "lon": -73.9955103 }, + { "lat": 40.7156216, "lon": -73.9955146 }, + { "lat": 40.7156793, "lon": -73.9955108 }, + { "lat": 40.7157327, "lon": -73.9954963 }, + { "lat": 40.7157617, "lon": -73.9954825 }, + { "lat": 40.7158384, "lon": -73.9955612 }, + { "lat": 40.7159066, "lon": -73.9956444 }, + { "lat": 40.7159716, "lon": -73.9957350 }, + { "lat": 40.7160392, "lon": -73.9958330 }, + { "lat": 40.7160780, "lon": -73.9958946 }, + { "lat": 40.7160990, "lon": -73.9959439 }, + { "lat": 40.7161042, "lon": -73.9959658 }, + { "lat": 40.7161063, "lon": -73.9959871 }, + { "lat": 40.7161051, "lon": -73.9960014 }, + { "lat": 40.7161026, "lon": -73.9960111 }, + { "lat": 40.7160997, "lon": -73.9960179 }, + { "lat": 40.7160951, "lon": -73.9960237 }, + { "lat": 40.7160891, "lon": -73.9960270 }, + { "lat": 40.7160829, "lon": -73.9960267 }, + { "lat": 40.7160412, "lon": -73.9960007 }, + { "lat": 40.7155400, "lon": -73.9956358 }, + { "lat": 40.7154711, "lon": -73.9955810 }, + { "lat": 40.7154765, "lon": -73.9955625 }, + { "lat": 40.7154874, "lon": -73.9955290 }, + { "lat": 40.7154525, "lon": -73.9955094 }, + { "lat": 40.7154542, "lon": -73.9955043 }, + { "lat": 40.7154287, "lon": -73.9954861 }, + { "lat": 40.7154044, "lon": -73.9954653 }, + { "lat": 40.7153815, "lon": -73.9954421 }, + { "lat": 40.7153600, "lon": -73.9954165 }, + { "lat": 40.7153401, "lon": -73.9953888 }, + { "lat": 40.7153220, "lon": -73.9953591 }, + { "lat": 40.7153057, "lon": -73.9953277 }, + { "lat": 40.7152913, "lon": -73.9952946 }, + { "lat": 40.7152849, "lon": -73.9952775 }, + { "lat": 40.7152899, "lon": -73.9952620 }, + { "lat": 40.7153073, "lon": -73.9952078 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 612741277, + "bounds": { + "minlat": 40.7157346, + "minlon": -73.9962677, + "maxlat": 40.7160010, + "maxlon": -73.9959442 + }, + "nodes": [ + 5799589782, + 5799589780, + 5799589798, + 11496014278, + 11496014277, + 5799589791, + 5799589785, + 11496014273, + 11496014272, + 5799589794, + 5799589771, + 5799589772, + 11496014271, + 5799589778, + 11496014270, + 5161246314, + 11496014269, + 11496014268, + 5799589757, + 5799589754, + 11496014267, + 5799589779, + 11496014266, + 5799589784, + 11496014265, + 5799589774, + 11496014264, + 5799589776, + 5799589769, + 5799589790, + 11496014263, + 11496014262, + 11496014261, + 5799589762, + 11496014259, + 11496014260, + 5799589777, + 5799589767, + 11496014280, + 11496014281, + 8307641595, + 11496014282, + 5799589759, + 5799589799, + 11496014279, + 5799589783, + 5799589781, + 5799589782 + ], + "geometry": [ + { "lat": 40.7159958, "lon": -73.9961114 }, + { "lat": 40.7159864, "lon": -73.9961198 }, + { "lat": 40.7159574, "lon": -73.9961367 }, + { "lat": 40.7159510, "lon": -73.9961379 }, + { "lat": 40.7159359, "lon": -73.9961319 }, + { "lat": 40.7159304, "lon": -73.9961336 }, + { "lat": 40.7158280, "lon": -73.9961957 }, + { "lat": 40.7158231, "lon": -73.9962017 }, + { "lat": 40.7158191, "lon": -73.9962178 }, + { "lat": 40.7158148, "lon": -73.9962234 }, + { "lat": 40.7157424, "lon": -73.9962660 }, + { "lat": 40.7157377, "lon": -73.9962677 }, + { "lat": 40.7157346, "lon": -73.9962629 }, + { "lat": 40.7157347, "lon": -73.9962570 }, + { "lat": 40.7157440, "lon": -73.9962394 }, + { "lat": 40.7157549, "lon": -73.9962170 }, + { "lat": 40.7157631, "lon": -73.9961997 }, + { "lat": 40.7157717, "lon": -73.9961786 }, + { "lat": 40.7157791, "lon": -73.9961432 }, + { "lat": 40.7157827, "lon": -73.9961117 }, + { "lat": 40.7157845, "lon": -73.9960740 }, + { "lat": 40.7157830, "lon": -73.9960373 }, + { "lat": 40.7157784, "lon": -73.9960076 }, + { "lat": 40.7157730, "lon": -73.9959848 }, + { "lat": 40.7157687, "lon": -73.9959674 }, + { "lat": 40.7157693, "lon": -73.9959581 }, + { "lat": 40.7157731, "lon": -73.9959494 }, + { "lat": 40.7157806, "lon": -73.9959442 }, + { "lat": 40.7157896, "lon": -73.9959455 }, + { "lat": 40.7158038, "lon": -73.9959562 }, + { "lat": 40.7158108, "lon": -73.9959813 }, + { "lat": 40.7158173, "lon": -73.9960146 }, + { "lat": 40.7158222, "lon": -73.9960569 }, + { "lat": 40.7158229, "lon": -73.9960982 }, + { "lat": 40.7158233, "lon": -73.9961073 }, + { "lat": 40.7158272, "lon": -73.9961133 }, + { "lat": 40.7158334, "lon": -73.9961146 }, + { "lat": 40.7158405, "lon": -73.9961120 }, + { "lat": 40.7159197, "lon": -73.9960593 }, + { "lat": 40.7159241, "lon": -73.9960507 }, + { "lat": 40.7159262, "lon": -73.9960407 }, + { "lat": 40.7159353, "lon": -73.9960392 }, + { "lat": 40.7159447, "lon": -73.9960414 }, + { "lat": 40.7159840, "lon": -73.9960704 }, + { "lat": 40.7159968, "lon": -73.9960809 }, + { "lat": 40.7160010, "lon": -73.9960929 }, + { "lat": 40.7160006, "lon": -73.9961029 }, + { "lat": 40.7159958, "lon": -73.9961114 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 612741278, + "bounds": { + "minlat": 40.7153591, + "minlon": -73.9953447, + "maxlat": 40.7159208, + "maxlon": -73.9949430 + }, + "nodes": [ + 5799589765, + 11495928397, + 11495928396, + 11495928395, + 11495928394, + 5799589352, + 11495926930, + 11495926931, + 11495926925, + 11495926926, + 11495926927, + 11495926928, + 11495926929, + 11495926924, + 5799589786, + 11669846860, + 2826473368, + 2826473373, + 2826473376, + 2826473381, + 2826473386, + 2826473389, + 2826473391, + 2826473394, + 2826473396, + 2826473397, + 2826473399, + 2826473400, + 2826473501, + 11495928407, + 11495928408, + 11495928406, + 11495928405, + 11495928404, + 11495928403, + 11495926937, + 11495928402, + 11495928409, + 11495928410, + 11495928411, + 11495928412, + 11495928413, + 2826473502, + 11495926942, + 11495926941, + 11495926940, + 11495926939, + 11495926938, + 11495926943, + 5799589773, + 11495926936, + 5799589756, + 5159737090, + 11495928398, + 11495928401, + 11495928400, + 11495928399, + 5799589765 + ], + "geometry": [ + { "lat": 40.7159049, "lon": -73.9953435 }, + { "lat": 40.7158215, "lon": -73.9952958 }, + { "lat": 40.7158057, "lon": -73.9952474 }, + { "lat": 40.7157840, "lon": -73.9951986 }, + { "lat": 40.7157596, "lon": -73.9951599 }, + { "lat": 40.7157252, "lon": -73.9951187 }, + { "lat": 40.7156930, "lon": -73.9950853 }, + { "lat": 40.7156525, "lon": -73.9950555 }, + { "lat": 40.7156101, "lon": -73.9950351 }, + { "lat": 40.7155869, "lon": -73.9950269 }, + { "lat": 40.7155568, "lon": -73.9950208 }, + { "lat": 40.7155166, "lon": -73.9950194 }, + { "lat": 40.7154702, "lon": -73.9950210 }, + { "lat": 40.7154259, "lon": -73.9950292 }, + { "lat": 40.7153591, "lon": -73.9950470 }, + { "lat": 40.7153728, "lon": -73.9950045 }, + { "lat": 40.7153776, "lon": -73.9949920 }, + { "lat": 40.7153913, "lon": -73.9949858 }, + { "lat": 40.7154194, "lon": -73.9949755 }, + { "lat": 40.7154479, "lon": -73.9949683 }, + { "lat": 40.7154769, "lon": -73.9949641 }, + { "lat": 40.7154914, "lon": -73.9949632 }, + { "lat": 40.7155205, "lon": -73.9949636 }, + { "lat": 40.7155495, "lon": -73.9949672 }, + { "lat": 40.7155781, "lon": -73.9949738 }, + { "lat": 40.7155923, "lon": -73.9949783 }, + { "lat": 40.7156201, "lon": -73.9949894 }, + { "lat": 40.7156211, "lon": -73.9949854 }, + { "lat": 40.7156565, "lon": -73.9950052 }, + { "lat": 40.7156858, "lon": -73.9950221 }, + { "lat": 40.7157290, "lon": -73.9950519 }, + { "lat": 40.7157541, "lon": -73.9950761 }, + { "lat": 40.7157824, "lon": -73.9951107 }, + { "lat": 40.7158039, "lon": -73.9951399 }, + { "lat": 40.7158243, "lon": -73.9951745 }, + { "lat": 40.7158389, "lon": -73.9952005 }, + { "lat": 40.7158176, "lon": -73.9951054 }, + { "lat": 40.7157999, "lon": -73.9950757 }, + { "lat": 40.7157731, "lon": -73.9950440 }, + { "lat": 40.7157483, "lon": -73.9950190 }, + { "lat": 40.7157203, "lon": -73.9949978 }, + { "lat": 40.7156878, "lon": -73.9949777 }, + { "lat": 40.7156682, "lon": -73.9949690 }, + { "lat": 40.7156728, "lon": -73.9949430 }, + { "lat": 40.7156930, "lon": -73.9949509 }, + { "lat": 40.7157279, "lon": -73.9949683 }, + { "lat": 40.7157680, "lon": -73.9950023 }, + { "lat": 40.7157939, "lon": -73.9950292 }, + { "lat": 40.7158076, "lon": -73.9950464 }, + { "lat": 40.7158194, "lon": -73.9950641 }, + { "lat": 40.7158370, "lon": -73.9950970 }, + { "lat": 40.7158510, "lon": -73.9951313 }, + { "lat": 40.7158579, "lon": -73.9951527 }, + { "lat": 40.7159160, "lon": -73.9953095 }, + { "lat": 40.7159208, "lon": -73.9953266 }, + { "lat": 40.7159189, "lon": -73.9953393 }, + { "lat": 40.7159126, "lon": -73.9953447 }, + { "lat": 40.7159049, "lon": -73.9953435 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 612743237, + "bounds": { + "minlat": 40.7140757, + "minlon": -73.9974280, + "maxlat": 40.7140953, + "maxlon": -73.9972366 + }, + "nodes": [ + 1773067304, + 11504615607, + 3973686298, + 11504615608, + 12196074939, + 11504615609, + 1773066054 + ], + "geometry": [ + { "lat": 40.7140757, "lon": -73.9972366 }, + { "lat": 40.7140773, "lon": -73.9972752 }, + { "lat": 40.7140810, "lon": -73.9973208 }, + { "lat": 40.7140818, "lon": -73.9973401 }, + { "lat": 40.7140844, "lon": -73.9973622 }, + { "lat": 40.7140885, "lon": -73.9973886 }, + { "lat": 40.7140953, "lon": -73.9974280 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Division Street", + "name:ko": "디비전 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction": "no_parking", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 613463563, + "bounds": { + "minlat": 40.7101075, + "minlon": -73.9846220, + "maxlat": 40.7103062, + "maxlon": -73.9841296 + }, + "nodes": [ + 5496610264, + 11037604124, + 13842298756, + 13842298757, + 11037604125, + 11037604151, + 5496610235, + 11037604123, + 10093647943 + ], + "geometry": [ + { "lat": 40.7103062, "lon": -73.9846220 }, + { "lat": 40.7102821, "lon": -73.9846097 }, + { "lat": 40.7102588, "lon": -73.9845866 }, + { "lat": 40.7102373, "lon": -73.9845376 }, + { "lat": 40.7102199, "lon": -73.9844766 }, + { "lat": 40.7101828, "lon": -73.9843443 }, + { "lat": 40.7101370, "lon": -73.9841853 }, + { "lat": 40.7101221, "lon": -73.9841500 }, + { "lat": 40.7101075, "lon": -73.9841296 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 614555201, + "bounds": { + "minlat": 40.7722836, + "minlon": -73.9351925, + "maxlat": 40.7728001, + "maxlon": -73.9342983 + }, + "nodes": [ + 2883518402, + 2459371415, + 12254790231, + 2457195040, + 4320087138, + 4320087139, + 2457195042 + ], + "geometry": [ + { "lat": 40.7728001, "lon": -73.9342983 }, + { "lat": 40.7726784, "lon": -73.9343603 }, + { "lat": 40.7723295, "lon": -73.9345460 }, + { "lat": 40.7722836, "lon": -73.9346575 }, + { "lat": 40.7723179, "lon": -73.9347924 }, + { "lat": 40.7723396, "lon": -73.9348713 }, + { "lat": 40.7724282, "lon": -73.9351925 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 614572151, + "bounds": { + "minlat": 40.7101470, + "minlon": -74.0143969, + "maxlat": 40.7110047, + "maxlon": -74.0126706 + }, + "nodes": [ + 42422035, + 10288454355, + 7120288148, + 8213945017, + 10288454366, + 10285341322, + 6417761616, + 6552385860, + 6417761618, + 10285341321, + 6552385865, + 10285341324, + 10285341320, + 10285341323, + 6552385862, + 8213945029, + 10288472974, + 42422028 + ], + "geometry": [ + { "lat": 40.7101470, "lon": -74.0126706 }, + { "lat": 40.7101875, "lon": -74.0127149 }, + { "lat": 40.7102079, "lon": -74.0127433 }, + { "lat": 40.7102296, "lon": -74.0127812 }, + { "lat": 40.7103842, "lon": -74.0131032 }, + { "lat": 40.7104208, "lon": -74.0131795 }, + { "lat": 40.7105437, "lon": -74.0134042 }, + { "lat": 40.7106134, "lon": -74.0135264 }, + { "lat": 40.7106943, "lon": -74.0136726 }, + { "lat": 40.7107445, "lon": -74.0137632 }, + { "lat": 40.7107955, "lon": -74.0138622 }, + { "lat": 40.7108023, "lon": -74.0138768 }, + { "lat": 40.7109109, "lon": -74.0141105 }, + { "lat": 40.7109153, "lon": -74.0141208 }, + { "lat": 40.7109562, "lon": -74.0142223 }, + { "lat": 40.7109712, "lon": -74.0142677 }, + { "lat": 40.7109895, "lon": -74.0143303 }, + { "lat": 40.7110047, "lon": -74.0143969 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "foot": "no", + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "|right", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 614638894, + "bounds": { + "minlat": 40.8114451, + "minlon": -74.0157875, + "maxlat": 40.8118567, + "maxlon": -74.0156688 + }, + "nodes": [ + 5813807483, + 5813807497, + 5813807484, + 103886497 + ], + "geometry": [ + { "lat": 40.8118567, "lon": -74.0156688 }, + { "lat": 40.8117211, "lon": -74.0157723 }, + { "lat": 40.8117011, "lon": -74.0157875 }, + { "lat": 40.8114451, "lon": -74.0157806 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 614638895, + "bounds": { + "minlat": 40.8117610, + "minlon": -74.0156688, + "maxlat": 40.8124939, + "maxlon": -74.0144297 + }, + "nodes": [ + 103872668, + 5994285462, + 5994285460, + 5994285406, + 5994285458, + 5994285456, + 5994285450, + 5813807485, + 5994285454, + 5994285451, + 5813807486, + 5813807483 + ], + "geometry": [ + { "lat": 40.8124939, "lon": -74.0144297 }, + { "lat": 40.8123501, "lon": -74.0145323 }, + { "lat": 40.8122120, "lon": -74.0146307 }, + { "lat": 40.8120735, "lon": -74.0147295 }, + { "lat": 40.8120479, "lon": -74.0147477 }, + { "lat": 40.8119176, "lon": -74.0148406 }, + { "lat": 40.8118421, "lon": -74.0149087 }, + { "lat": 40.8118117, "lon": -74.0149650 }, + { "lat": 40.8117926, "lon": -74.0151224 }, + { "lat": 40.8117731, "lon": -74.0152493 }, + { "lat": 40.8117610, "lon": -74.0153604 }, + { "lat": 40.8118567, "lon": -74.0156688 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 614638896, + "bounds": { + "minlat": 40.8129490, + "minlon": -74.0157400, + "maxlat": 40.8143827, + "maxlon": -74.0126488 + }, + "nodes": [ + 103876919, + 5994285494, + 5813807487, + 5813807513, + 5994285490, + 5994285488, + 5994285486, + 5994285496, + 5994285497, + 5994285499, + 5994285501, + 5994285503, + 5994285505, + 5813807492, + 5994285514, + 5994285510, + 5994285508, + 5813807488 + ], + "geometry": [ + { "lat": 40.8129490, "lon": -74.0126488 }, + { "lat": 40.8130252, "lon": -74.0127415 }, + { "lat": 40.8131496, "lon": -74.0128929 }, + { "lat": 40.8131581, "lon": -74.0129125 }, + { "lat": 40.8132382, "lon": -74.0130975 }, + { "lat": 40.8133205, "lon": -74.0132875 }, + { "lat": 40.8134047, "lon": -74.0134818 }, + { "lat": 40.8134871, "lon": -74.0136721 }, + { "lat": 40.8135686, "lon": -74.0138604 }, + { "lat": 40.8136492, "lon": -74.0140463 }, + { "lat": 40.8137341, "lon": -74.0142424 }, + { "lat": 40.8138145, "lon": -74.0144280 }, + { "lat": 40.8138968, "lon": -74.0146180 }, + { "lat": 40.8139697, "lon": -74.0147864 }, + { "lat": 40.8141360, "lon": -74.0151703 }, + { "lat": 40.8142231, "lon": -74.0153714 }, + { "lat": 40.8143035, "lon": -74.0155570 }, + { "lat": 40.8143827, "lon": -74.0157400 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 614638897, + "bounds": { + "minlat": 40.8120691, + "minlon": -74.0171134, + "maxlat": 40.8143827, + "maxlon": -74.0157400 + }, + "nodes": [ + 5813807488, + 5813807489, + 5813807490, + 5813807491, + 5994285444, + 5994285445, + 5994285446, + 5994285447, + 5994285448 + ], + "geometry": [ + { "lat": 40.8143827, "lon": -74.0157400 }, + { "lat": 40.8142689, "lon": -74.0158428 }, + { "lat": 40.8140175, "lon": -74.0161750 }, + { "lat": 40.8128467, "lon": -74.0170554 }, + { "lat": 40.8127333, "lon": -74.0171134 }, + { "lat": 40.8125851, "lon": -74.0171134 }, + { "lat": 40.8124877, "lon": -74.0170947 }, + { "lat": 40.8124105, "lon": -74.0170035 }, + { "lat": 40.8120691, "lon": -74.0162367 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 614638898, + "bounds": { + "minlat": 40.8117211, + "minlon": -74.0162931, + "maxlat": 40.8139697, + "maxlon": -74.0147864 + }, + "nodes": [ + 5813807492, + 5994285507, + 5994285461, + 5994285459, + 5994285457, + 5994285455, + 5994285452, + 5994285449, + 5813807493, + 5994285448, + 5813807494, + 5813807495, + 5813807496, + 5813807497 + ], + "geometry": [ + { "lat": 40.8139697, "lon": -74.0147864 }, + { "lat": 40.8129652, "lon": -74.0155548 }, + { "lat": 40.8128411, "lon": -74.0156498 }, + { "lat": 40.8126957, "lon": -74.0157610 }, + { "lat": 40.8125484, "lon": -74.0158736 }, + { "lat": 40.8124058, "lon": -74.0159827 }, + { "lat": 40.8122590, "lon": -74.0160950 }, + { "lat": 40.8122260, "lon": -74.0161217 }, + { "lat": 40.8121238, "lon": -74.0162044 }, + { "lat": 40.8120691, "lon": -74.0162367 }, + { "lat": 40.8119983, "lon": -74.0162787 }, + { "lat": 40.8119619, "lon": -74.0162931 }, + { "lat": 40.8119328, "lon": -74.0162739 }, + { "lat": 40.8117211, "lon": -74.0157723 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 614638899, + "bounds": { + "minlat": 40.8143827, + "minlon": -74.0157400, + "maxlat": 40.8158399, + "maxlon": -74.0146586 + }, + "nodes": [ + 5813807488, + 9909759203, + 5994285512, + 5813807498 + ], + "geometry": [ + { "lat": 40.8143827, "lon": -74.0157400 }, + { "lat": 40.8148008, "lon": -74.0154297 }, + { "lat": 40.8155103, "lon": -74.0149032 }, + { "lat": 40.8158399, "lon": -74.0146586 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 614638900, + "bounds": { + "minlat": 40.8141649, + "minlon": -74.0136956, + "maxlat": 40.8149707, + "maxlon": -74.0119177 + }, + "nodes": [ + 5813807499, + 5813807500, + 5813807501, + 5813807502, + 5813807503, + 5813807504, + 5813807505, + 5813807506, + 12497765508, + 5813807508, + 5813807507 + ], + "geometry": [ + { "lat": 40.8149707, "lon": -74.0136956 }, + { "lat": 40.8148690, "lon": -74.0134891 }, + { "lat": 40.8148617, "lon": -74.0133931 }, + { "lat": 40.8148435, "lon": -74.0133115 }, + { "lat": 40.8147745, "lon": -74.0131530 }, + { "lat": 40.8147345, "lon": -74.0130858 }, + { "lat": 40.8146909, "lon": -74.0130282 }, + { "lat": 40.8146473, "lon": -74.0129658 }, + { "lat": 40.8143328, "lon": -74.0122732 }, + { "lat": 40.8142408, "lon": -74.0120705 }, + { "lat": 40.8141649, "lon": -74.0119177 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 614638901, + "bounds": { + "minlat": 40.8133980, + "minlon": -74.0127326, + "maxlat": 40.8142408, + "maxlon": -74.0120705 + }, + "nodes": [ + 5813807508, + 5813807509, + 5813807510, + 5813807511, + 8530416420 + ], + "geometry": [ + { "lat": 40.8142408, "lon": -74.0120705 }, + { "lat": 40.8140623, "lon": -74.0121832 }, + { "lat": 40.8136807, "lon": -74.0124520 }, + { "lat": 40.8134881, "lon": -74.0126537 }, + { "lat": 40.8133980, "lon": -74.0127326 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 614638902, + "bounds": { + "minlat": 40.8089130, + "minlon": -74.0159471, + "maxlat": 40.8094354, + "maxlon": -74.0153613 + }, + "nodes": [ + 5813807526, + 5813807515, + 5813807516, + 5813807517, + 5813807518, + 5813807519, + 5813807520, + 5813807521, + 5813807522, + 5813807523, + 5813807524 + ], + "geometry": [ + { "lat": 40.8089130, "lon": -74.0157313 }, + { "lat": 40.8092982, "lon": -74.0153664 }, + { "lat": 40.8093220, "lon": -74.0153613 }, + { "lat": 40.8093447, "lon": -74.0153673 }, + { "lat": 40.8093560, "lon": -74.0153807 }, + { "lat": 40.8094241, "lon": -74.0155006 }, + { "lat": 40.8094354, "lon": -74.0155276 }, + { "lat": 40.8094343, "lon": -74.0155590 }, + { "lat": 40.8094286, "lon": -74.0155845 }, + { "lat": 40.8094184, "lon": -74.0156055 }, + { "lat": 40.8090487, "lon": -74.0159471 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 614638903, + "bounds": { + "minlat": 40.8087601, + "minlon": -74.0159471, + "maxlat": 40.8090487, + "maxlon": -74.0155120 + }, + "nodes": [ + 5813807524, + 5813807526, + 5813807527, + 5813807528 + ], + "geometry": [ + { "lat": 40.8090487, "lon": -74.0159471 }, + { "lat": 40.8089130, "lon": -74.0157313 }, + { "lat": 40.8088252, "lon": -74.0156220 }, + { "lat": 40.8087601, "lon": -74.0155120 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 614638904, + "bounds": { + "minlat": 40.8086914, + "minlon": -74.0155120, + "maxlat": 40.8096135, + "maxlon": -74.0144472 + }, + "nodes": [ + 5813807528, + 5813807530, + 5813807531, + 5813807532, + 5813807533, + 5813807534, + 5813807535, + 5813807536, + 5813807537 + ], + "geometry": [ + { "lat": 40.8087601, "lon": -74.0155120 }, + { "lat": 40.8086926, "lon": -74.0153538 }, + { "lat": 40.8086914, "lon": -74.0152983 }, + { "lat": 40.8087118, "lon": -74.0152609 }, + { "lat": 40.8095250, "lon": -74.0144802 }, + { "lat": 40.8095726, "lon": -74.0144487 }, + { "lat": 40.8095862, "lon": -74.0144472 }, + { "lat": 40.8096010, "lon": -74.0144562 }, + { "lat": 40.8096135, "lon": -74.0144727 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 614638905, + "bounds": { + "minlat": 40.8097042, + "minlon": -74.0146465, + "maxlat": 40.8098062, + "maxlon": -74.0145326 + }, + "nodes": [ + 5813807539, + 5813807538 + ], + "geometry": [ + { "lat": 40.8098062, "lon": -74.0145326 }, + { "lat": 40.8097042, "lon": -74.0146465 } + ], + "tags": { + "access": "permissive", + "foot": "yes", + "highway": "service", + "maxspeed": "5 mph", + "motor_vehicle": "permissive", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 614853315, + "bounds": { + "minlat": 40.7077457, + "minlon": -74.0157786, + "maxlat": 40.7095204, + "maxlon": -74.0151154 + }, + "nodes": [ + 5815234915, + 4143835707, + 4143835712, + 4143835086, + 12301494187, + 8821317923, + 588593611 + ], + "geometry": [ + { "lat": 40.7095204, "lon": -74.0151154 }, + { "lat": 40.7093605, "lon": -74.0151915 }, + { "lat": 40.7091484, "lon": -74.0152630 }, + { "lat": 40.7089356, "lon": -74.0153370 }, + { "lat": 40.7079010, "lon": -74.0157181 }, + { "lat": 40.7078598, "lon": -74.0157333 }, + { "lat": 40.7077457, "lon": -74.0157786 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 615266471, + "bounds": { + "minlat": 40.8381310, + "minlon": -73.9237070, + "maxlat": 40.8382020, + "maxlon": -73.9232504 + }, + "nodes": [ + 42734987, + 8454214977, + 42757307 + ], + "geometry": [ + { "lat": 40.8381310, "lon": -73.9232504 }, + { "lat": 40.8381536, "lon": -73.9233927 }, + { "lat": 40.8382020, "lon": -73.9237070 } + ], + "tags": { + "highway": "residential", + "name": "West 168th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 615981424, + "bounds": { + "minlat": 40.7466747, + "minlon": -73.9204631, + "maxlat": 40.7468528, + "maxlon": -73.9189441 + }, + "nodes": [ + 42885753, + 10069693831, + 10069693828, + 42923790, + 10069648914, + 10774439640, + 9821720658 + ], + "geometry": [ + { "lat": 40.7466747, "lon": -73.9189441 }, + { "lat": 40.7466846, "lon": -73.9190272 }, + { "lat": 40.7467724, "lon": -73.9197937 }, + { "lat": 40.7467812, "lon": -73.9198727 }, + { "lat": 40.7467910, "lon": -73.9199520 }, + { "lat": 40.7468422, "lon": -73.9203761 }, + { "lat": 40.7468528, "lon": -73.9204631 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 615981425, + "bounds": { + "minlat": 40.7470500, + "minlon": -73.9293295, + "maxlat": 40.7475480, + "maxlon": -73.9259331 + }, + "nodes": [ + 5867098660, + 42841815, + 10069673235, + 10069673236, + 6010598647, + 10069673237, + 10069673238, + 10069673239, + 277046786, + 42888688, + 42926417, + 10069673242, + 7667163645 + ], + "geometry": [ + { "lat": 40.7474860, "lon": -73.9259331 }, + { "lat": 40.7475136, "lon": -73.9263720 }, + { "lat": 40.7475431, "lon": -73.9266447 }, + { "lat": 40.7475466, "lon": -73.9266891 }, + { "lat": 40.7475480, "lon": -73.9267297 }, + { "lat": 40.7475467, "lon": -73.9267748 }, + { "lat": 40.7475417, "lon": -73.9268244 }, + { "lat": 40.7475344, "lon": -73.9268766 }, + { "lat": 40.7475246, "lon": -73.9269263 }, + { "lat": 40.7474440, "lon": -73.9273379 }, + { "lat": 40.7472493, "lon": -73.9283297 }, + { "lat": 40.7470727, "lon": -73.9292296 }, + { "lat": 40.7470500, "lon": -73.9293295 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "street_side", + "parking:right:orientation": "diagonal", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 615981426, + "bounds": { + "minlat": 40.7453960, + "minlon": -73.9239173, + "maxlat": 40.7455658, + "maxlon": -73.9224474 + }, + "nodes": [ + 42817776, + 8248311063, + 8248311086, + 8248311082, + 42817780, + 10069693818, + 10069693824 + ], + "geometry": [ + { "lat": 40.7455658, "lon": -73.9239173 }, + { "lat": 40.7455562, "lon": -73.9238316 }, + { "lat": 40.7455125, "lon": -73.9234599 }, + { "lat": 40.7454664, "lon": -73.9230715 }, + { "lat": 40.7454580, "lon": -73.9229874 }, + { "lat": 40.7454489, "lon": -73.9229064 }, + { "lat": 40.7453960, "lon": -73.9224474 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 615986455, + "bounds": { + "minlat": 40.7257881, + "minlon": -73.9942787, + "maxlat": 40.7262040, + "maxlon": -73.9938731 + }, + "nodes": [ + 5824300191, + 42421923, + 5824300188 + ], + "geometry": [ + { "lat": 40.7257881, "lon": -73.9939705 }, + { "lat": 40.7260106, "lon": -73.9938731 }, + { "lat": 40.7262040, "lon": -73.9942787 } + ], + "tags": { + "access": "private", + "alt_name": "Shinbone Alley", + "highway": "service", + "name": "Jones Alley", + "name:etymology:wikidata": "Q5599378", + "name:ko": "존스 앨리", + "note": "nameing: http://forgotten-ny.com/2013/08/shinbone-alley-noho/", + "service": "alley", + "tiger:county": "New York, NY", + "tiger:name_base": "Jones", + "tiger:name_type": "Aly", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 615986457, + "bounds": { + "minlat": 40.7263286, + "minlon": -73.9950298, + "maxlat": 40.7265799, + "maxlon": -73.9945327 + }, + "nodes": [ + 5824300193, + 13520730745, + 42421932 + ], + "geometry": [ + { "lat": 40.7263286, "lon": -73.9945327 }, + { "lat": 40.7264186, "lon": -73.9947107 }, + { "lat": 40.7265799, "lon": -73.9950298 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "25 mph", + "name": "Jones Alley", + "name:etymology:wikidata": "Q5599378", + "name:ko": "존스 앨리", + "note": "nameing: http://forgotten-ny.com/2013/08/shinbone-alley-noho/", + "service": "alley", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Jones", + "tiger:name_type": "Aly", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 615986458, + "bounds": { + "minlat": 40.7268583, + "minlon": -73.9947981, + "maxlat": 40.7270315, + "maxlon": -73.9946508 + }, + "nodes": [ + 5243701137, + 8309479023, + 42429672, + 8309479037, + 5243701134 + ], + "geometry": [ + { "lat": 40.7268583, "lon": -73.9947981 }, + { "lat": 40.7268813, "lon": -73.9947789 }, + { "lat": 40.7269435, "lon": -73.9947269 }, + { "lat": 40.7270014, "lon": -73.9946768 }, + { "lat": 40.7270315, "lon": -73.9946508 } + ], + "tags": { + "highway": "service", + "name": "Great Jones Alley", + "name:etymology:wikidata": "Q2218465", + "name:ko": "그레이트 존스 앨리", + "note": "nameing: http://forgotten-ny.com/2013/08/shinbone-alley-noho/", + "service": "alley", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Shinbone", + "tiger:name_type": "Aly", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 615986460, + "bounds": { + "minlat": 40.7276605, + "minlon": -73.9941132, + "maxlat": 40.7279470, + "maxlon": -73.9938852 + }, + "nodes": [ + 5243701136, + 42453788 + ], + "geometry": [ + { "lat": 40.7276605, "lon": -73.9941132 }, + { "lat": 40.7279470, "lon": -73.9938852 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "25 mph", + "name": "Great Jones Alley", + "name:etymology:wikidata": "Q2218465", + "name:ko": "그레이트 존스 앨리", + "note": "nameing: http://forgotten-ny.com/2013/08/shinbone-alley-noho/", + "service": "alley", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Great Jones", + "tiger:name_type": "Aly", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 615986461, + "bounds": { + "minlat": 40.7262040, + "minlon": -73.9943951, + "maxlat": 40.7262619, + "maxlon": -73.9942787 + }, + "nodes": [ + 5824300188, + 8309479064, + 42421927 + ], + "geometry": [ + { "lat": 40.7262040, "lon": -73.9942787 }, + { "lat": 40.7262141, "lon": -73.9943000 }, + { "lat": 40.7262619, "lon": -73.9943951 } + ], + "tags": { + "alt_name": "Shinbone Alley", + "highway": "service", + "name": "Jones Alley", + "name:etymology:wikidata": "Q5599378", + "name:ko": "존스 앨리", + "note": "nameing: http://forgotten-ny.com/2013/08/shinbone-alley-noho/", + "service": "alley", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Jones", + "tiger:name_type": "Aly", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 615986462, + "bounds": { + "minlat": 40.7270315, + "minlon": -73.9946508, + "maxlat": 40.7274770, + "maxlon": -73.9942653 + }, + "nodes": [ + 5243701134, + 5243701135 + ], + "geometry": [ + { "lat": 40.7270315, "lon": -73.9946508 }, + { "lat": 40.7274770, "lon": -73.9942653 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Great Jones Alley", + "name:etymology:wikidata": "Q2218465", + "name:ko": "그레이트 존스 앨리", + "note": "nameing: http://forgotten-ny.com/2013/08/shinbone-alley-noho/", + "service": "alley", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Shinbone", + "tiger:name_type": "Aly", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 615986463, + "bounds": { + "minlat": 40.7262619, + "minlon": -73.9945327, + "maxlat": 40.7263286, + "maxlon": -73.9943951 + }, + "nodes": [ + 42421927, + 8309479022, + 5824300193 + ], + "geometry": [ + { "lat": 40.7262619, "lon": -73.9943951 }, + { "lat": 40.7263148, "lon": -73.9945053 }, + { "lat": 40.7263286, "lon": -73.9945327 } + ], + "tags": { + "highway": "service", + "name": "Jones Alley", + "name:etymology:wikidata": "Q5599378", + "name:ko": "존스 앨리", + "note": "nameing: http://forgotten-ny.com/2013/08/shinbone-alley-noho/", + "service": "alley", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Jones", + "tiger:name_type": "Aly", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 615986465, + "bounds": { + "minlat": 40.7274770, + "minlon": -73.9942653, + "maxlat": 40.7275705, + "maxlon": -73.9941899 + }, + "nodes": [ + 5243701135, + 8309479036, + 42429676 + ], + "geometry": [ + { "lat": 40.7274770, "lon": -73.9942653 }, + { "lat": 40.7275000, "lon": -73.9942462 }, + { "lat": 40.7275705, "lon": -73.9941899 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "name": "Great Jones Alley", + "name:etymology:wikidata": "Q2218465", + "name:ko": "그레이트 존스 앨리", + "note": "nameing: http://forgotten-ny.com/2013/08/shinbone-alley-noho/", + "service": "alley", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Shinbone;Great Jones", + "tiger:name_type": "Aly", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 616745173, + "bounds": { + "minlat": 40.7358905, + "minlon": -73.9873950, + "maxlat": 40.7364725, + "maxlon": -73.9869684 + }, + "nodes": [ + 42434355, + 9679181059, + 12183283832, + 12183283829, + 9679181058, + 42434357 + ], + "geometry": [ + { "lat": 40.7358905, "lon": -73.9873950 }, + { "lat": 40.7359427, "lon": -73.9873568 }, + { "lat": 40.7359838, "lon": -73.9873268 }, + { "lat": 40.7363744, "lon": -73.9870392 }, + { "lat": 40.7364168, "lon": -73.9870087 }, + { "lat": 40.7364725, "lon": -73.9869684 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Irving Place", + "name:etymology:wikidata": "Q181667", + "name:ru": "Ирвинг-Плейс", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q136393943" + } +}, +{ + "type": "way", + "id": 616745174, + "bounds": { + "minlat": 40.7358905, + "minlon": -73.9890653, + "maxlat": 40.7365722, + "maxlon": -73.9873950 + }, + "nodes": [ + 42434355, + 9679181054, + 12181339160, + 3252590541, + 42437021, + 4597668036 + ], + "geometry": [ + { "lat": 40.7358905, "lon": -73.9873950 }, + { "lat": 40.7359253, "lon": -73.9874790 }, + { "lat": 40.7364857, "lon": -73.9888316 }, + { "lat": 40.7365018, "lon": -73.9888751 }, + { "lat": 40.7365407, "lon": -73.9889803 }, + { "lat": 40.7365722, "lon": -73.9890653 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 17th Street", + "name:ru": "Восточная 17-я стрит", + "name_1": "East 17 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 616745175, + "bounds": { + "minlat": 40.7338271, + "minlon": -73.9853657, + "maxlat": 40.7357989, + "maxlon": -73.9807369 + }, + "nodes": [ + 42437283, + 9679181029, + 5282642709, + 13205862055, + 4129804731, + 13205862054, + 4376122115, + 4129804730, + 4298757083, + 42437289 + ], + "geometry": [ + { "lat": 40.7357989, "lon": -73.9853657 }, + { "lat": 40.7357395, "lon": -73.9852235 }, + { "lat": 40.7356002, "lon": -73.9848953 }, + { "lat": 40.7349281, "lon": -73.9833004 }, + { "lat": 40.7349019, "lon": -73.9832382 }, + { "lat": 40.7348478, "lon": -73.9831211 }, + { "lat": 40.7348108, "lon": -73.9830392 }, + { "lat": 40.7347953, "lon": -73.9830035 }, + { "lat": 40.7339069, "lon": -73.9808960 }, + { "lat": 40.7338271, "lon": -73.9807369 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 18th Street", + "name:ru": "Восточная 18-я стрит", + "name_1": "East 18 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 616745176, + "bounds": { + "minlat": 40.7364725, + "minlon": -73.9869684, + "maxlat": 40.7370554, + "maxlon": -73.9865427 + }, + "nodes": [ + 42434357, + 9679181042, + 12183283828, + 12183283827, + 10172843046, + 42434358 + ], + "geometry": [ + { "lat": 40.7364725, "lon": -73.9869684 }, + { "lat": 40.7365294, "lon": -73.9869278 }, + { "lat": 40.7365718, "lon": -73.9868973 }, + { "lat": 40.7369628, "lon": -73.9866099 }, + { "lat": 40.7370028, "lon": -73.9865809 }, + { "lat": 40.7370554, "lon": -73.9865427 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Irving Place", + "name:etymology:wikidata": "Q181667", + "name:ru": "Ирвинг-Плейс", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q136393943" + } +}, +{ + "type": "way", + "id": 617084574, + "bounds": { + "minlat": 40.7140732, + "minlon": -73.9552522, + "maxlat": 40.7140780, + "maxlon": -73.9543400 + }, + "nodes": [ + 42480149, + 8122409893, + 5515218175, + 4686822856, + 42484194, + 8122409892, + 42482398 + ], + "geometry": [ + { "lat": 40.7140732, "lon": -73.9552522 }, + { "lat": 40.7140742, "lon": -73.9551589 }, + { "lat": 40.7140750, "lon": -73.9550767 }, + { "lat": 40.7140758, "lon": -73.9549916 }, + { "lat": 40.7140780, "lon": -73.9547734 }, + { "lat": 40.7140746, "lon": -73.9544665 }, + { "lat": 40.7140738, "lon": -73.9543400 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Metropolitan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 617425347, + "bounds": { + "minlat": 40.7603630, + "minlon": -73.9973393, + "maxlat": 40.7604226, + "maxlon": -73.9971998 + }, + "nodes": [ + 5481846617, + 10598664630, + 4207932665 + ], + "geometry": [ + { "lat": 40.7604226, "lon": -73.9973393 }, + { "lat": 40.7604173, "lon": -73.9973269 }, + { "lat": 40.7603630, "lon": -73.9971998 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 617499334, + "bounds": { + "minlat": 40.7552804, + "minlon": -73.9983361, + "maxlat": 40.7556306, + "maxlon": -73.9979163 + }, + "nodes": [ + 5481845975, + 5481845974, + 5481845978, + 5481845977, + 5481845976 + ], + "geometry": [ + { "lat": 40.7553797, "lon": -73.9983361 }, + { "lat": 40.7552804, "lon": -73.9981036 }, + { "lat": 40.7553614, "lon": -73.9980433 }, + { "lat": 40.7555319, "lon": -73.9979163 }, + { "lat": 40.7556306, "lon": -73.9981474 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 617518810, + "bounds": { + "minlat": 40.8202421, + "minlon": -74.0081285, + "maxlat": 40.8203759, + "maxlon": -74.0079331 + }, + "nodes": [ + 5837332126, + 5837332127 + ], + "geometry": [ + { "lat": 40.8203759, "lon": -74.0079331 }, + { "lat": 40.8202421, "lon": -74.0081285 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 617518811, + "bounds": { + "minlat": 40.8202228, + "minlon": -74.0092424, + "maxlat": 40.8203130, + "maxlon": -74.0081285 + }, + "nodes": [ + 5837332127, + 5837332129, + 5837332133, + 5837332137, + 5837332130, + 5837332131 + ], + "geometry": [ + { "lat": 40.8202421, "lon": -74.0081285 }, + { "lat": 40.8202228, "lon": -74.0083598 }, + { "lat": 40.8202742, "lon": -74.0086208 }, + { "lat": 40.8202777, "lon": -74.0086387 }, + { "lat": 40.8203130, "lon": -74.0088179 }, + { "lat": 40.8202760, "lon": -74.0092424 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 617518812, + "bounds": { + "minlat": 40.8206732, + "minlon": -74.0087484, + "maxlat": 40.8207761, + "maxlon": -74.0086768 + }, + "nodes": [ + 5837332134, + 5837332135 + ], + "geometry": [ + { "lat": 40.8207761, "lon": -74.0087484 }, + { "lat": 40.8206732, "lon": -74.0086768 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 617518813, + "bounds": { + "minlat": 40.8206197, + "minlon": -74.0086768, + "maxlat": 40.8206732, + "maxlon": -74.0086716 + }, + "nodes": [ + 5837332135, + 5837332139 + ], + "geometry": [ + { "lat": 40.8206732, "lon": -74.0086768 }, + { "lat": 40.8206197, "lon": -74.0086716 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 617518814, + "bounds": { + "minlat": 40.8204378, + "minlon": -74.0093145, + "maxlat": 40.8207217, + "maxlon": -74.0092628 + }, + "nodes": [ + 5837332132, + 5837332138, + 10902452092 + ], + "geometry": [ + { "lat": 40.8207217, "lon": -74.0093145 }, + { "lat": 40.8206436, "lon": -74.0092893 }, + { "lat": 40.8204378, "lon": -74.0092628 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 617518815, + "bounds": { + "minlat": 40.8206436, + "minlon": -74.0092893, + "maxlat": 40.8206732, + "maxlon": -74.0086768 + }, + "nodes": [ + 5837332135, + 5837332138 + ], + "geometry": [ + { "lat": 40.8206732, "lon": -74.0086768 }, + { "lat": 40.8206436, "lon": -74.0092893 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 617518816, + "bounds": { + "minlat": 40.8202421, + "minlon": -74.0086716, + "maxlat": 40.8206425, + "maxlon": -74.0081285 + }, + "nodes": [ + 5837332139, + 5837332140, + 5837332127 + ], + "geometry": [ + { "lat": 40.8206197, "lon": -74.0086716 }, + { "lat": 40.8206425, "lon": -74.0082789 }, + { "lat": 40.8202421, "lon": -74.0081285 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 617518817, + "bounds": { + "minlat": 40.8208131, + "minlon": -74.0116206, + "maxlat": 40.8222967, + "maxlon": -74.0099244 + }, + "nodes": [ + 103213030, + 5837332141, + 8662501705, + 8662501707, + 5837332142, + 5837332143, + 5837332144, + 5837332147 + ], + "geometry": [ + { "lat": 40.8214200, "lon": -74.0112208 }, + { "lat": 40.8220899, "lon": -74.0116206 }, + { "lat": 40.8221571, "lon": -74.0114270 }, + { "lat": 40.8222293, "lon": -74.0112191 }, + { "lat": 40.8222967, "lon": -74.0110250 }, + { "lat": 40.8214880, "lon": -74.0104947 }, + { "lat": 40.8215528, "lon": -74.0100133 }, + { "lat": 40.8208131, "lon": -74.0099244 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 617518818, + "bounds": { + "minlat": 40.8214200, + "minlon": -74.0112208, + "maxlat": 40.8214880, + "maxlon": -74.0104947 + }, + "nodes": [ + 103213030, + 8662501706, + 8662501708, + 5837332143 + ], + "geometry": [ + { "lat": 40.8214200, "lon": -74.0112208 }, + { "lat": 40.8214425, "lon": -74.0109807 }, + { "lat": 40.8214657, "lon": -74.0107330 }, + { "lat": 40.8214880, "lon": -74.0104947 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 617518819, + "bounds": { + "minlat": 40.8207604, + "minlon": -74.0112208, + "maxlat": 40.8214200, + "maxlon": -74.0111759 + }, + "nodes": [ + 5837332146, + 103213030 + ], + "geometry": [ + { "lat": 40.8207604, "lon": -74.0111759 }, + { "lat": 40.8214200, "lon": -74.0112208 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Merical Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Merical", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 617518820, + "bounds": { + "minlat": 40.8206816, + "minlon": -74.0099244, + "maxlat": 40.8208131, + "maxlon": -74.0099168 + }, + "nodes": [ + 5837332147, + 5837332145 + ], + "geometry": [ + { "lat": 40.8208131, "lon": -74.0099244 }, + { "lat": 40.8206816, "lon": -74.0099168 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 618613774, + "bounds": { + "minlat": 40.7512619, + "minlon": -73.9836657, + "maxlat": 40.7513351, + "maxlon": -73.9836166 + }, + "nodes": [ + 5846916771, + 10169532627, + 5846916773 + ], + "geometry": [ + { "lat": 40.7512619, "lon": -73.9836657 }, + { "lat": 40.7512723, "lon": -73.9836593 }, + { "lat": 40.7513351, "lon": -73.9836166 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 618613775, + "bounds": { + "minlat": 40.7520083, + "minlon": -73.9854401, + "maxlat": 40.7520800, + "maxlon": -73.9853845 + }, + "nodes": [ + 5846916769, + 10169532628, + 5846916772 + ], + "geometry": [ + { "lat": 40.7520800, "lon": -73.9853845 }, + { "lat": 40.7520231, "lon": -73.9854285 }, + { "lat": 40.7520083, "lon": -73.9854401 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 618613778, + "bounds": { + "minlat": 40.7511346, + "minlon": -73.9833655, + "maxlat": 40.7512092, + "maxlon": -73.9833179 + }, + "nodes": [ + 5846916770, + 10169532626, + 5846916776 + ], + "geometry": [ + { "lat": 40.7511346, "lon": -73.9833655 }, + { "lat": 40.7511452, "lon": -73.9833598 }, + { "lat": 40.7512092, "lon": -73.9833179 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 618613780, + "bounds": { + "minlat": 40.7513611, + "minlon": -73.9836784, + "maxlat": 40.7514153, + "maxlon": -73.9836353 + }, + "nodes": [ + 5846916774, + 5846916775 + ], + "geometry": [ + { "lat": 40.7514153, "lon": -73.9836353 }, + { "lat": 40.7513611, "lon": -73.9836784 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 618990022, + "bounds": { + "minlat": 40.7654683, + "minlon": -73.9918836, + "maxlat": 40.7696336, + "maxlon": -73.9820384 + }, + "nodes": [ + 42430742, + 10083914666, + 5481877871, + 8348222103, + 7557417098, + 3998699930, + 42431563, + 3998699928, + 10084184252, + 42431560, + 10084910129, + 4546351675, + 2698702583, + 4546351674, + 10084863425, + 42431556, + 10084834653, + 8785244281, + 42428328 + ], + "geometry": [ + { "lat": 40.7696336, "lon": -73.9918836 }, + { "lat": 40.7695850, "lon": -73.9917655 }, + { "lat": 40.7692947, "lon": -73.9910621 }, + { "lat": 40.7688316, "lon": -73.9899644 }, + { "lat": 40.7687235, "lon": -73.9897081 }, + { "lat": 40.7685018, "lon": -73.9891825 }, + { "lat": 40.7684455, "lon": -73.9890489 }, + { "lat": 40.7683938, "lon": -73.9889264 }, + { "lat": 40.7673068, "lon": -73.9863490 }, + { "lat": 40.7672471, "lon": -73.9862074 }, + { "lat": 40.7671897, "lon": -73.9860762 }, + { "lat": 40.7666370, "lon": -73.9848200 }, + { "lat": 40.7665660, "lon": -73.9846490 }, + { "lat": 40.7664092, "lon": -73.9842813 }, + { "lat": 40.7660925, "lon": -73.9835225 }, + { "lat": 40.7660319, "lon": -73.9833766 }, + { "lat": 40.7659758, "lon": -73.9832434 }, + { "lat": 40.7655070, "lon": -73.9821307 }, + { "lat": 40.7654683, "lon": -73.9820384 } + ], + "tags": { + "alt_name": "West 56 Street", + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 56th Street", + "name:ru": "Западная 56-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 619277987, + "bounds": { + "minlat": 40.7387960, + "minlon": -73.9789499, + "maxlat": 40.7395518, + "maxlon": -73.9771480 + }, + "nodes": [ + 5278266721, + 5278263670, + 42429910, + 8119193331, + 42429918 + ], + "geometry": [ + { "lat": 40.7395518, "lon": -73.9789499 }, + { "lat": 40.7395108, "lon": -73.9788521 }, + { "lat": 40.7392336, "lon": -73.9781918 }, + { "lat": 40.7388536, "lon": -73.9772864 }, + { "lat": 40.7387960, "lon": -73.9771480 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 26th Street", + "name:ru": "Восточная 26-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 619277989, + "bounds": { + "minlat": 40.7406465, + "minlon": -73.9778878, + "maxlat": 40.7415298, + "maxlon": -73.9757944 + }, + "nodes": [ + 42436756, + 8119192816, + 7206761675, + 5277924518, + 11778771889 + ], + "geometry": [ + { "lat": 40.7406465, "lon": -73.9757944 }, + { "lat": 40.7407056, "lon": -73.9759350 }, + { "lat": 40.7409059, "lon": -73.9764016 }, + { "lat": 40.7412316, "lon": -73.9771767 }, + { "lat": 40.7415298, "lon": -73.9778878 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 29th Street", + "name:ru": "Восточная 29-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 619280601, + "bounds": { + "minlat": 40.7528971, + "minlon": -73.9669700, + "maxlat": 40.7532011, + "maxlon": -73.9667526 + }, + "nodes": [ + 7641820936, + 12186394506 + ], + "geometry": [ + { "lat": 40.7528971, "lon": -73.9669700 }, + { "lat": 40.7532011, "lon": -73.9667526 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "cycleway:both": "lane", + "cycleway:both:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 619280607, + "bounds": { + "minlat": 40.7532753, + "minlon": -73.9684774, + "maxlat": 40.7540410, + "maxlon": -73.9666622 + }, + "nodes": [ + 5852272391, + 6169344760, + 3569749145, + 4782442657, + 10586374983 + ], + "geometry": [ + { "lat": 40.7532753, "lon": -73.9666622 }, + { "lat": 40.7532981, "lon": -73.9667167 }, + { "lat": 40.7533112, "lon": -73.9667489 }, + { "lat": 40.7534130, "lon": -73.9669829 }, + { "lat": 40.7540410, "lon": -73.9684774 } + ], + "tags": { + "alt_name": "Katharine Hepburn Place", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 619280612, + "bounds": { + "minlat": 40.7532753, + "minlon": -73.9666622, + "maxlat": 40.7535842, + "maxlon": -73.9663741 + }, + "nodes": [ + 5852272391, + 5852272394, + 5993830854, + 9142742314, + 9490559519 + ], + "geometry": [ + { "lat": 40.7532753, "lon": -73.9666622 }, + { "lat": 40.7533326, "lon": -73.9666229 }, + { "lat": 40.7534680, "lon": -73.9664989 }, + { "lat": 40.7535527, "lon": -73.9664070 }, + { "lat": 40.7535842, "lon": -73.9663741 } + ], + "tags": { + "alt_name:ko": "1번가", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 619280617, + "bounds": { + "minlat": 40.7536872, + "minlon": -73.9662667, + "maxlat": 40.7538651, + "maxlon": -73.9661361 + }, + "nodes": [ + 6133355290, + 8224618699, + 42455934 + ], + "geometry": [ + { "lat": 40.7536872, "lon": -73.9662667 }, + { "lat": 40.7538175, "lon": -73.9661712 }, + { "lat": 40.7538651, "lon": -73.9661361 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|through;right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 619454130, + "bounds": { + "minlat": 40.7514615, + "minlon": -73.9755534, + "maxlat": 40.7521215, + "maxlon": -73.9739708 + }, + "nodes": [ + 42449947, + 10125260539, + 4555838817, + 10125260541, + 42446971 + ], + "geometry": [ + { "lat": 40.7514615, "lon": -73.9739708 }, + { "lat": 40.7515094, "lon": -73.9740857 }, + { "lat": 40.7518541, "lon": -73.9749121 }, + { "lat": 40.7520837, "lon": -73.9754653 }, + { "lat": 40.7521215, "lon": -73.9755534 } + ], + "tags": { + "alt_name": "Archbishop Fulton J. Jean Place", + "highway": "living_street", + "lanes": "1", + "lit": "yes", + "maxspeed:advisory": "5 mph", + "name": "East 43rd Street", + "name:ru": "Восточная 43-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 619469813, + "bounds": { + "minlat": 40.7482589, + "minlon": -73.9986250, + "maxlat": 40.7486655, + "maxlon": -73.9976653 + }, + "nodes": [ + 5481863555, + 5481863554 + ], + "geometry": [ + { "lat": 40.7482589, "lon": -73.9976653 }, + { "lat": 40.7486655, "lon": -73.9986250 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 619469815, + "bounds": { + "minlat": 40.7478228, + "minlon": -73.9989387, + "maxlat": 40.7482328, + "maxlon": -73.9979775 + }, + "nodes": [ + 5481863557, + 5481863556 + ], + "geometry": [ + { "lat": 40.7482328, "lon": -73.9989387 }, + { "lat": 40.7478228, "lon": -73.9979775 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 619469817, + "bounds": { + "minlat": 40.7478228, + "minlon": -73.9979775, + "maxlat": 40.7482589, + "maxlon": -73.9976653 + }, + "nodes": [ + 5481863556, + 5481863551, + 5481863550, + 5481863555 + ], + "geometry": [ + { "lat": 40.7478228, "lon": -73.9979775 }, + { "lat": 40.7479634, "lon": -73.9978768 }, + { "lat": 40.7481094, "lon": -73.9977723 }, + { "lat": 40.7482589, "lon": -73.9976653 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 619516041, + "bounds": { + "minlat": 40.7205050, + "minlon": -73.9897914, + "maxlat": 40.7228117, + "maxlon": -73.9886720 + }, + "nodes": [ + 5854325118, + 5854325105, + 5854325127, + 5854381567, + 9895773859, + 5854381575, + 5854325130, + 5854325123, + 5854325107, + 8841021176, + 5854325129, + 8841021182, + 5854325109, + 8841021178, + 5854333272, + 8841021160, + 5854325111, + 8841021183, + 5854325113, + 9181660667, + 5854325117, + 5854325120, + 5854325119, + 5854381563, + 9895773860, + 5854381571, + 5854325116, + 5854325122, + 5854325114, + 5854325115, + 5854325126, + 9938302165, + 5854325124, + 5854325106, + 5854325110, + 5854325112, + 5854325108, + 5854325128, + 5854325118 + ], + "geometry": [ + { "lat": 40.7227777, "lon": -73.9887648 }, + { "lat": 40.7217319, "lon": -73.9891491 }, + { "lat": 40.7217453, "lon": -73.9891987 }, + { "lat": 40.7217333, "lon": -73.9892044 }, + { "lat": 40.7216922, "lon": -73.9892239 }, + { "lat": 40.7216291, "lon": -73.9892537 }, + { "lat": 40.7216043, "lon": -73.9892655 }, + { "lat": 40.7215872, "lon": -73.9892028 }, + { "lat": 40.7206060, "lon": -73.9896971 }, + { "lat": 40.7206117, "lon": -73.9897108 }, + { "lat": 40.7206198, "lon": -73.9897581 }, + { "lat": 40.7205810, "lon": -73.9897813 }, + { "lat": 40.7205583, "lon": -73.9897914 }, + { "lat": 40.7205461, "lon": -73.9897514 }, + { "lat": 40.7205317, "lon": -73.9897052 }, + { "lat": 40.7205153, "lon": -73.9896521 }, + { "lat": 40.7205050, "lon": -73.9896202 }, + { "lat": 40.7205289, "lon": -73.9896075 }, + { "lat": 40.7205625, "lon": -73.9895879 }, + { "lat": 40.7205777, "lon": -73.9896199 }, + { "lat": 40.7205835, "lon": -73.9896321 }, + { "lat": 40.7215695, "lon": -73.9891375 }, + { "lat": 40.7215550, "lon": -73.9890843 }, + { "lat": 40.7215787, "lon": -73.9890731 }, + { "lat": 40.7216411, "lon": -73.9890436 }, + { "lat": 40.7216769, "lon": -73.9890266 }, + { "lat": 40.7216960, "lon": -73.9890175 }, + { "lat": 40.7217084, "lon": -73.9890627 }, + { "lat": 40.7227563, "lon": -73.9886740 }, + { "lat": 40.7227706, "lon": -73.9886720 }, + { "lat": 40.7227821, "lon": -73.9886729 }, + { "lat": 40.7227916, "lon": -73.9886761 }, + { "lat": 40.7227997, "lon": -73.9886815 }, + { "lat": 40.7228068, "lon": -73.9886927 }, + { "lat": 40.7228117, "lon": -73.9887136 }, + { "lat": 40.7228107, "lon": -73.9887303 }, + { "lat": 40.7228056, "lon": -73.9887437 }, + { "lat": 40.7227943, "lon": -73.9887552 }, + { "lat": 40.7227777, "lon": -73.9887648 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 620204866, + "bounds": { + "minlat": 40.8049563, + "minlon": -73.9072437, + "maxlat": 40.8056664, + "maxlon": -73.9067432 + }, + "nodes": [ + 5493687582, + 5493687581, + 5493687580, + 5493687579 + ], + "geometry": [ + { "lat": 40.8056664, "lon": -73.9067432 }, + { "lat": 40.8053111, "lon": -73.9071563 }, + { "lat": 40.8050939, "lon": -73.9071322 }, + { "lat": 40.8049563, "lon": -73.9072437 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 620204867, + "bounds": { + "minlat": 40.8077610, + "minlon": -73.9102213, + "maxlat": 40.8087212, + "maxlon": -73.9097207 + }, + "nodes": [ + 42755218, + 5859955145, + 5175586411, + 1931610635, + 5175586412 + ], + "geometry": [ + { "lat": 40.8077610, "lon": -73.9102213 }, + { "lat": 40.8078728, "lon": -73.9101628 }, + { "lat": 40.8085142, "lon": -73.9098271 }, + { "lat": 40.8086056, "lon": -73.9097793 }, + { "lat": 40.8087212, "lon": -73.9097207 } + ], + "tags": { + "highway": "residential", + "name": "Concord Avenue", + "name:etymology:wikidata": "Q523240", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concord", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 620204871, + "bounds": { + "minlat": 40.8071509, + "minlon": -73.9102213, + "maxlat": 40.8077610, + "maxlon": -73.9082144 + }, + "nodes": [ + 42755218, + 5859955146, + 8575374013, + 13247558403, + 42768271, + 13247558402, + 8575373995, + 8575396930, + 13247555797, + 42766929 + ], + "geometry": [ + { "lat": 40.8077610, "lon": -73.9102213 }, + { "lat": 40.8077236, "lon": -73.9100872 }, + { "lat": 40.8074955, "lon": -73.9093269 }, + { "lat": 40.8074825, "lon": -73.9092836 }, + { "lat": 40.8074520, "lon": -73.9091820 }, + { "lat": 40.8074260, "lon": -73.9090975 }, + { "lat": 40.8074168, "lon": -73.9090676 }, + { "lat": 40.8072192, "lon": -73.9084253 }, + { "lat": 40.8071902, "lon": -73.9083358 }, + { "lat": 40.8071509, "lon": -73.9082144 } + ], + "tags": { + "highway": "residential", + "name": "East 142nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "142nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 620537135, + "bounds": { + "minlat": 40.7721090, + "minlon": -73.9326803, + "maxlat": 40.7727141, + "maxlon": -73.9305988 + }, + "nodes": [ + 42881130, + 4679523595, + 9650262379, + 5104280939, + 11308871008, + 42926712 + ], + "geometry": [ + { "lat": 40.7721090, "lon": -73.9305988 }, + { "lat": 40.7722159, "lon": -73.9309601 }, + { "lat": 40.7722441, "lon": -73.9310553 }, + { "lat": 40.7726665, "lon": -73.9324771 }, + { "lat": 40.7726850, "lon": -73.9325560 }, + { "lat": 40.7727141, "lon": -73.9326803 } + ], + "tags": { + "alt_name": "Astoria Boulevard South", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Astoria Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 620680161, + "bounds": { + "minlat": 40.7380880, + "minlon": -73.9735306, + "maxlat": 40.7384701, + "maxlon": -73.9732482 + }, + "nodes": [ + 5863965880, + 4389441144, + 11767197706 + ], + "geometry": [ + { "lat": 40.7380880, "lon": -73.9735306 }, + { "lat": 40.7382831, "lon": -73.9733894 }, + { "lat": 40.7384701, "lon": -73.9732482 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "Fdr Drive Service Road East", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 620747023, + "bounds": { + "minlat": 40.7128398, + "minlon": -73.9239328, + "maxlat": 40.7138637, + "maxlon": -73.9222082 + }, + "nodes": [ + 5330321653, + 12847161640, + 9325509483, + 42477659 + ], + "geometry": [ + { "lat": 40.7138637, "lon": -73.9239328 }, + { "lat": 40.7138520, "lon": -73.9239131 }, + { "lat": 40.7138251, "lon": -73.9238678 }, + { "lat": 40.7128398, "lon": -73.9222082 } + ], + "tags": { + "highway": "residential", + "name": "Onderdonk Avenue" + } +}, +{ + "type": "way", + "id": 620748645, + "bounds": { + "minlat": 40.8268844, + "minlon": -73.9414893, + "maxlat": 40.8302454, + "maxlon": -73.9396620 + }, + "nodes": [ + 13319775346, + 11221649590, + 42439653, + 7700835526, + 42439647, + 42439644, + 42439638, + 42439635, + 42439632, + 42439627, + 764738945, + 11218748543 + ], + "geometry": [ + { "lat": 40.8302454, "lon": -73.9401703 }, + { "lat": 40.8301790, "lon": -73.9400951 }, + { "lat": 40.8299106, "lon": -73.9397954 }, + { "lat": 40.8298737, "lon": -73.9397672 }, + { "lat": 40.8297831, "lon": -73.9397091 }, + { "lat": 40.8296710, "lon": -73.9396740 }, + { "lat": 40.8295800, "lon": -73.9396620 }, + { "lat": 40.8294810, "lon": -73.9396680 }, + { "lat": 40.8293920, "lon": -73.9396890 }, + { "lat": 40.8293020, "lon": -73.9397290 }, + { "lat": 40.8277340, "lon": -73.9408710 }, + { "lat": 40.8268844, "lon": -73.9414893 } + ], + "tags": { + "alt_name": "Thurgood Marshall Boulevard", + "description": "This honorary street name memorializes Thurgood Marshall.", + "highway": "tertiary", + "historic": "memorial", + "name": "Edgecombe Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 620748646, + "bounds": { + "minlat": 40.8302773, + "minlon": -73.9402064, + "maxlat": 40.8303722, + "maxlon": -73.9401371 + }, + "nodes": [ + 42427894, + 4515465264 + ], + "geometry": [ + { "lat": 40.8302773, "lon": -73.9402064 }, + { "lat": 40.8303722, "lon": -73.9401371 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "Saint Nicholas Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 620748647, + "bounds": { + "minlat": 40.8303889, + "minlon": -73.9403469, + "maxlat": 40.8304568, + "maxlon": -73.9401784 + }, + "nodes": [ + 13320112969, + 42439673 + ], + "geometry": [ + { "lat": 40.8303889, "lon": -73.9401784 }, + { "lat": 40.8304568, "lon": -73.9403469 } + ], + "tags": { + "alt_name": "Charles Hamilton Houston Boulevard", + "description": "This honorary street name memorializes Charles Hamilton Houston.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 620796857, + "bounds": { + "minlat": 40.8007656, + "minlon": -73.9586780, + "maxlat": 40.8008231, + "maxlon": -73.9583722 + }, + "nodes": [ + 3247295579, + 12818423534, + 12818423532, + 9150529693, + 9150529692, + 9150529691, + 9078592316 + ], + "geometry": [ + { "lat": 40.8007750, "lon": -73.9583722 }, + { "lat": 40.8007685, "lon": -73.9584151 }, + { "lat": 40.8007663, "lon": -73.9584295 }, + { "lat": 40.8007656, "lon": -73.9584781 }, + { "lat": 40.8007685, "lon": -73.9585233 }, + { "lat": 40.8007763, "lon": -73.9585587 }, + { "lat": 40.8008231, "lon": -73.9586780 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 620939495, + "bounds": { + "minlat": 40.7230637, + "minlon": -73.9885643, + "maxlat": 40.7232759, + "maxlon": -73.9884461 + }, + "nodes": [ + 4241748518, + 7611187235, + 42443513 + ], + "geometry": [ + { "lat": 40.7230637, "lon": -73.9885643 }, + { "lat": 40.7232148, "lon": -73.9884822 }, + { "lat": 40.7232759, "lon": -73.9884461 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 620993165, + "bounds": { + "minlat": 40.7694826, + "minlon": -73.9107001, + "maxlat": 40.7696560, + "maxlon": -73.9106465 + }, + "nodes": [ + 5866672688, + 7680481227, + 6406731407, + 5866672690 + ], + "geometry": [ + { "lat": 40.7696560, "lon": -73.9106465 }, + { "lat": 40.7695916, "lon": -73.9106649 }, + { "lat": 40.7695731, "lon": -73.9106702 }, + { "lat": 40.7694826, "lon": -73.9107001 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621045536, + "bounds": { + "minlat": 40.7768785, + "minlon": -73.9088017, + "maxlat": 40.7770187, + "maxlon": -73.9086073 + }, + "nodes": [ + 5867036822, + 5867036823 + ], + "geometry": [ + { "lat": 40.7770187, "lon": -73.9088017 }, + { "lat": 40.7768785, "lon": -73.9086073 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621045537, + "bounds": { + "minlat": 40.7767052, + "minlon": -73.9088153, + "maxlat": 40.7770625, + "maxlon": -73.9083864 + }, + "nodes": [ + 5867036824, + 5867036823, + 5867036825 + ], + "geometry": [ + { "lat": 40.7767052, "lon": -73.9088153 }, + { "lat": 40.7768785, "lon": -73.9086073 }, + { "lat": 40.7770625, "lon": -73.9083864 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621045538, + "bounds": { + "minlat": 40.7731369, + "minlon": -73.9103271, + "maxlat": 40.7742562, + "maxlon": -73.9089479 + }, + "nodes": [ + 5867036826, + 5867036827, + 5867036828 + ], + "geometry": [ + { "lat": 40.7731369, "lon": -73.9103271 }, + { "lat": 40.7736921, "lon": -73.9096433 }, + { "lat": 40.7742562, "lon": -73.9089479 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621045539, + "bounds": { + "minlat": 40.7734596, + "minlon": -73.9096433, + "maxlat": 40.7736921, + "maxlon": -73.9093048 + }, + "nodes": [ + 5867036827, + 9242368781, + 5867036829 + ], + "geometry": [ + { "lat": 40.7736921, "lon": -73.9096433 }, + { "lat": 40.7734989, "lon": -73.9093621 }, + { "lat": 40.7734596, "lon": -73.9093048 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621045540, + "bounds": { + "minlat": 40.7731379, + "minlon": -73.9090649, + "maxlat": 40.7737888, + "maxlon": -73.9082626 + }, + "nodes": [ + 5867036830, + 5867036831 + ], + "geometry": [ + { "lat": 40.7731379, "lon": -73.9090649 }, + { "lat": 40.7737888, "lon": -73.9082626 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621045541, + "bounds": { + "minlat": 40.7725452, + "minlon": -73.9084292, + "maxlat": 40.7732757, + "maxlon": -73.9075375 + }, + "nodes": [ + 5867036833, + 5867036834, + 5867036835 + ], + "geometry": [ + { "lat": 40.7725452, "lon": -73.9084292 }, + { "lat": 40.7729065, "lon": -73.9079807 }, + { "lat": 40.7732757, "lon": -73.9075375 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621045542, + "bounds": { + "minlat": 40.7726715, + "minlon": -73.9079807, + "maxlat": 40.7729065, + "maxlon": -73.9076443 + }, + "nodes": [ + 5867036834, + 9776150552, + 5867036836 + ], + "geometry": [ + { "lat": 40.7729065, "lon": -73.9079807 }, + { "lat": 40.7727128, "lon": -73.9077035 }, + { "lat": 40.7726715, "lon": -73.9076443 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 621045543, + "bounds": { + "minlat": 40.7725177, + "minlon": -73.9072099, + "maxlat": 40.7728416, + "maxlon": -73.9068082 + }, + "nodes": [ + 5867036837, + 5867036838 + ], + "geometry": [ + { "lat": 40.7728416, "lon": -73.9068082 }, + { "lat": 40.7725177, "lon": -73.9072099 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621045544, + "bounds": { + "minlat": 40.7725177, + "minlon": -73.9075451, + "maxlat": 40.7727526, + "maxlon": -73.9072099 + }, + "nodes": [ + 5867036839, + 9776150538, + 5867036838 + ], + "geometry": [ + { "lat": 40.7727526, "lon": -73.9075451 }, + { "lat": 40.7727135, "lon": -73.9074893 }, + { "lat": 40.7725177, "lon": -73.9072099 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 621045545, + "bounds": { + "minlat": 40.7670490, + "minlon": -73.9087290, + "maxlat": 40.7674627, + "maxlon": -73.9084000 + }, + "nodes": [ + 5867036840, + 5867036842, + 5867036841 + ], + "geometry": [ + { "lat": 40.7670490, "lon": -73.9087290 }, + { "lat": 40.7672595, "lon": -73.9085616 }, + { "lat": 40.7674627, "lon": -73.9084000 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 621045546, + "bounds": { + "minlat": 40.7672595, + "minlon": -73.9088388, + "maxlat": 40.7673884, + "maxlon": -73.9085616 + }, + "nodes": [ + 5867036842, + 6450660761, + 5867036843 + ], + "geometry": [ + { "lat": 40.7672595, "lon": -73.9085616 }, + { "lat": 40.7673615, "lon": -73.9087810 }, + { "lat": 40.7673884, "lon": -73.9088388 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 621050706, + "bounds": { + "minlat": 40.7592154, + "minlon": -73.9138140, + "maxlat": 40.7595479, + "maxlon": -73.9133146 + }, + "nodes": [ + 5867077859, + 5867077860, + 8593804538, + 5867077861 + ], + "geometry": [ + { "lat": 40.7592154, "lon": -73.9138140 }, + { "lat": 40.7594181, "lon": -73.9134056 }, + { "lat": 40.7594834, "lon": -73.9133598 }, + { "lat": 40.7595479, "lon": -73.9133146 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 621050707, + "bounds": { + "minlat": 40.7478930, + "minlon": -73.9080160, + "maxlat": 40.7485900, + "maxlon": -73.9053490 + }, + "nodes": [ + 42893078, + 11643678933, + 11643678942, + 42855333, + 11643678943, + 7671862992, + 42893079, + 7671862991, + 7671862994, + 42893083 + ], + "geometry": [ + { "lat": 40.7485900, "lon": -73.9080160 }, + { "lat": 40.7485707, "lon": -73.9079423 }, + { "lat": 40.7483793, "lon": -73.9072130 }, + { "lat": 40.7483580, "lon": -73.9071320 }, + { "lat": 40.7483378, "lon": -73.9070540 }, + { "lat": 40.7481510, "lon": -73.9063309 }, + { "lat": 40.7481280, "lon": -73.9062420 }, + { "lat": 40.7481085, "lon": -73.9061678 }, + { "lat": 40.7479174, "lon": -73.9054417 }, + { "lat": 40.7478930, "lon": -73.9053490 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "39th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 621050708, + "bounds": { + "minlat": 40.7485900, + "minlon": -73.9080160, + "maxlat": 40.7489980, + "maxlon": -73.9078360 + }, + "nodes": [ + 42893078, + 7667087000, + 5867077870, + 42790787 + ], + "geometry": [ + { "lat": 40.7485900, "lon": -73.9080160 }, + { "lat": 40.7486756, "lon": -73.9079787 }, + { "lat": 40.7487148, "lon": -73.9079609 }, + { "lat": 40.7489980, "lon": -73.9078360 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "55th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "55th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 621053797, + "bounds": { + "minlat": 40.7517294, + "minlon": -73.9209471, + "maxlat": 40.7517995, + "maxlon": -73.9207322 + }, + "nodes": [ + 5867098605, + 8593852959, + 5867098609 + ], + "geometry": [ + { "lat": 40.7517995, "lon": -73.9207322 }, + { "lat": 40.7517522, "lon": -73.9208516 }, + { "lat": 40.7517294, "lon": -73.9209471 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 621053798, + "bounds": { + "minlat": 40.7507032, + "minlon": -73.9281156, + "maxlat": 40.7514767, + "maxlon": -73.9250280 + }, + "nodes": [ + 5867098632, + 5867098633, + 5867098634, + 7857724457, + 5867098636, + 7857724456, + 5867098637, + 5867098638, + 5867098639, + 7857650533, + 5867098640 + ], + "geometry": [ + { "lat": 40.7514767, "lon": -73.9250319 }, + { "lat": 40.7514214, "lon": -73.9250280 }, + { "lat": 40.7513389, "lon": -73.9250490 }, + { "lat": 40.7512855, "lon": -73.9250928 }, + { "lat": 40.7512589, "lon": -73.9251520 }, + { "lat": 40.7512558, "lon": -73.9251678 }, + { "lat": 40.7509944, "lon": -73.9265096 }, + { "lat": 40.7509040, "lon": -73.9269983 }, + { "lat": 40.7508037, "lon": -73.9275453 }, + { "lat": 40.7507051, "lon": -73.9281048 }, + { "lat": 40.7507032, "lon": -73.9281156 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 621053800, + "bounds": { + "minlat": 40.7474860, + "minlon": -73.9259331, + "maxlat": 40.7476901, + "maxlon": -73.9259097 + }, + "nodes": [ + 5867098660, + 7985719890, + 11694583051, + 5867098661 + ], + "geometry": [ + { "lat": 40.7474860, "lon": -73.9259331 }, + { "lat": 40.7475455, "lon": -73.9259257 }, + { "lat": 40.7475822, "lon": -73.9259216 }, + { "lat": 40.7476901, "lon": -73.9259097 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621053801, + "bounds": { + "minlat": 40.7478636, + "minlon": -73.9259163, + "maxlat": 40.7482374, + "maxlon": -73.9259052 + }, + "nodes": [ + 5867098662, + 5867098663 + ], + "geometry": [ + { "lat": 40.7478636, "lon": -73.9259163 }, + { "lat": 40.7482374, "lon": -73.9259052 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "highway": "service", + "layer": "1", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621053802, + "bounds": { + "minlat": 40.7482374, + "minlon": -73.9259052, + "maxlat": 40.7485458, + "maxlon": -73.9247953 + }, + "nodes": [ + 5867098663, + 5444865937 + ], + "geometry": [ + { "lat": 40.7482374, "lon": -73.9259052 }, + { "lat": 40.7485458, "lon": -73.9247953 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621053803, + "bounds": { + "minlat": 40.7473250, + "minlon": -73.9305488, + "maxlat": 40.7482374, + "maxlon": -73.9259052 + }, + "nodes": [ + 5867098663, + 7667216146, + 7667216147, + 5867098677 + ], + "geometry": [ + { "lat": 40.7482374, "lon": -73.9259052 }, + { "lat": 40.7482288, "lon": -73.9261621 }, + { "lat": 40.7481255, "lon": -73.9269892 }, + { "lat": 40.7473250, "lon": -73.9305488 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621053804, + "bounds": { + "minlat": 40.7476901, + "minlon": -73.9274788, + "maxlat": 40.7477910, + "maxlon": -73.9259097 + }, + "nodes": [ + 5867098661, + 7667192381, + 7667192380, + 5867098684 + ], + "geometry": [ + { "lat": 40.7476901, "lon": -73.9259097 }, + { "lat": 40.7477837, "lon": -73.9264077 }, + { "lat": 40.7477910, "lon": -73.9270223 }, + { "lat": 40.7477096, "lon": -73.9274788 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621055092, + "bounds": { + "minlat": 40.7454658, + "minlon": -73.9367527, + "maxlat": 40.7474256, + "maxlon": -73.9292050 + }, + "nodes": [ + 5867108745, + 8315072973, + 5867108746, + 5867108747, + 5867108748, + 5867108749, + 5867108750, + 5867108751, + 5867108752, + 5867108753, + 5867108754, + 5867108755 + ], + "geometry": [ + { "lat": 40.7454658, "lon": -73.9367527 }, + { "lat": 40.7455529, "lon": -73.9367323 }, + { "lat": 40.7455803, "lon": -73.9367320 }, + { "lat": 40.7458236, "lon": -73.9361462 }, + { "lat": 40.7458980, "lon": -73.9359072 }, + { "lat": 40.7460063, "lon": -73.9355189 }, + { "lat": 40.7461800, "lon": -73.9347582 }, + { "lat": 40.7463134, "lon": -73.9341970 }, + { "lat": 40.7464678, "lon": -73.9336038 }, + { "lat": 40.7465389, "lon": -73.9332475 }, + { "lat": 40.7466804, "lon": -73.9327215 }, + { "lat": 40.7474256, "lon": -73.9292050 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 621055093, + "bounds": { + "minlat": 40.7444157, + "minlon": -73.9403363, + "maxlat": 40.7446015, + "maxlon": -73.9403201 + }, + "nodes": [ + 42872047, + 8991509383, + 5867108756 + ], + "geometry": [ + { "lat": 40.7444157, "lon": -73.9403225 }, + { "lat": 40.7444816, "lon": -73.9403201 }, + { "lat": 40.7446015, "lon": -73.9403363 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 621055094, + "bounds": { + "minlat": 40.7424336, + "minlon": -73.9464454, + "maxlat": 40.7446015, + "maxlon": -73.9403363 + }, + "nodes": [ + 5867108756, + 5867108757, + 5867108758, + 5867108759, + 5867108760, + 5867108761, + 5867108762, + 5867108763, + 5867108764, + 5867108765, + 5867108766, + 5867108767, + 5867108768, + 5867108769, + 5867108770, + 5867108771 + ], + "geometry": [ + { "lat": 40.7446015, "lon": -73.9403363 }, + { "lat": 40.7444948, "lon": -73.9405593 }, + { "lat": 40.7443243, "lon": -73.9410608 }, + { "lat": 40.7441844, "lon": -73.9413808 }, + { "lat": 40.7441012, "lon": -73.9416721 }, + { "lat": 40.7439031, "lon": -73.9421789 }, + { "lat": 40.7436550, "lon": -73.9428457 }, + { "lat": 40.7434497, "lon": -73.9433397 }, + { "lat": 40.7432613, "lon": -73.9438326 }, + { "lat": 40.7432193, "lon": -73.9440011 }, + { "lat": 40.7430746, "lon": -73.9443714 }, + { "lat": 40.7428450, "lon": -73.9449069 }, + { "lat": 40.7428442, "lon": -73.9450584 }, + { "lat": 40.7427739, "lon": -73.9453881 }, + { "lat": 40.7426607, "lon": -73.9458042 }, + { "lat": 40.7424336, "lon": -73.9464454 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 621055095, + "bounds": { + "minlat": 40.7446015, + "minlon": -73.9403363, + "maxlat": 40.7458326, + "maxlon": -73.9361462 + }, + "nodes": [ + 5867108756, + 5867108772, + 5867108773, + 5867108774, + 5867108775, + 5867108776, + 5867108777, + 5867108778, + 5867108779, + 5867108780, + 5867108781, + 5867108782, + 5867108783, + 5867108784, + 5867108747 + ], + "geometry": [ + { "lat": 40.7446015, "lon": -73.9403363 }, + { "lat": 40.7448311, "lon": -73.9396791 }, + { "lat": 40.7449547, "lon": -73.9392769 }, + { "lat": 40.7450490, "lon": -73.9389924 }, + { "lat": 40.7451843, "lon": -73.9385362 }, + { "lat": 40.7452338, "lon": -73.9383733 }, + { "lat": 40.7454032, "lon": -73.9378185 }, + { "lat": 40.7454744, "lon": -73.9375654 }, + { "lat": 40.7455300, "lon": -73.9373791 }, + { "lat": 40.7456046, "lon": -73.9370962 }, + { "lat": 40.7456361, "lon": -73.9369223 }, + { "lat": 40.7456911, "lon": -73.9367537 }, + { "lat": 40.7457776, "lon": -73.9364187 }, + { "lat": 40.7458326, "lon": -73.9361754 }, + { "lat": 40.7458236, "lon": -73.9361462 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 621534269, + "bounds": { + "minlat": 40.8764763, + "minlon": -73.9074308, + "maxlat": 40.8766865, + "maxlon": -73.9069906 + }, + "nodes": [ + 5871416386, + 5871416387 + ], + "geometry": [ + { "lat": 40.8766865, "lon": -73.9069906 }, + { "lat": 40.8764763, "lon": -73.9074308 } + ], + "tags": { + "highway": "primary", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 621538365, + "bounds": { + "minlat": 40.8761088, + "minlon": -73.9079638, + "maxlat": 40.8764763, + "maxlon": -73.9074308 + }, + "nodes": [ + 5871416387, + 5871416392, + 5871416388, + 12240704147 + ], + "geometry": [ + { "lat": 40.8764763, "lon": -73.9074308 }, + { "lat": 40.8763557, "lon": -73.9076185 }, + { "lat": 40.8762692, "lon": -73.9077531 }, + { "lat": 40.8761088, "lon": -73.9079638 } + ], + "tags": { + "highway": "primary", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 621551217, + "bounds": { + "minlat": 40.8819778, + "minlon": -73.9088858, + "maxlat": 40.8858440, + "maxlon": -73.9070093 + }, + "nodes": [ + 42720163, + 13471748425, + 1544756416, + 42747608, + 42746277, + 1544756377, + 1544756285, + 1544756374, + 5487891712, + 1544756383, + 1544756463, + 42748801, + 42748810, + 13765783001, + 13471735797 + ], + "geometry": [ + { "lat": 40.8858440, "lon": -73.9070093 }, + { "lat": 40.8857158, "lon": -73.9070480 }, + { "lat": 40.8854733, "lon": -73.9071204 }, + { "lat": 40.8851570, "lon": -73.9072260 }, + { "lat": 40.8845502, "lon": -73.9074460 }, + { "lat": 40.8833614, "lon": -73.9078138 }, + { "lat": 40.8831905, "lon": -73.9079037 }, + { "lat": 40.8830120, "lon": -73.9080321 }, + { "lat": 40.8829578, "lon": -73.9080832 }, + { "lat": 40.8828455, "lon": -73.9081890 }, + { "lat": 40.8827537, "lon": -73.9082918 }, + { "lat": 40.8826465, "lon": -73.9083993 }, + { "lat": 40.8824264, "lon": -73.9085609 }, + { "lat": 40.8823519, "lon": -73.9086149 }, + { "lat": 40.8819778, "lon": -73.9088858 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "name": "Riverdale Avenue", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Riverdale", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 621551219, + "bounds": { + "minlat": 40.8811548, + "minlon": -73.9097345, + "maxlat": 40.8858695, + "maxlon": -73.9071534 + }, + "nodes": [ + 1544756459, + 1544756354, + 1544756444, + 1544756451, + 1544756385, + 1544756387, + 1544756320, + 5558919648, + 7043560246, + 1544756389, + 1544756473, + 1544756436, + 42748812, + 13471735790, + 10132643274, + 2810121248, + 10132643118, + 1545532990, + 1544756324 + ], + "geometry": [ + { "lat": 40.8858695, "lon": -73.9071534 }, + { "lat": 40.8851707, "lon": -73.9073786 }, + { "lat": 40.8834371, "lon": -73.9079501 }, + { "lat": 40.8833077, "lon": -73.9080158 }, + { "lat": 40.8832150, "lon": -73.9080708 }, + { "lat": 40.8831258, "lon": -73.9081351 }, + { "lat": 40.8830511, "lon": -73.9081932 }, + { "lat": 40.8830076, "lon": -73.9082351 }, + { "lat": 40.8829908, "lon": -73.9082484 }, + { "lat": 40.8829157, "lon": -73.9083233 }, + { "lat": 40.8827723, "lon": -73.9084825 }, + { "lat": 40.8826594, "lon": -73.9085750 }, + { "lat": 40.8824934, "lon": -73.9086976 }, + { "lat": 40.8815129, "lon": -73.9094020 }, + { "lat": 40.8814727, "lon": -73.9094309 }, + { "lat": 40.8814656, "lon": -73.9094360 }, + { "lat": 40.8814279, "lon": -73.9094631 }, + { "lat": 40.8813597, "lon": -73.9095252 }, + { "lat": 40.8811548, "lon": -73.9097345 } + ], + "tags": { + "highway": "residential", + "name": "Riverdale Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 621551222, + "bounds": { + "minlat": 40.8810222, + "minlon": -73.9099077, + "maxlat": 40.8811548, + "maxlon": -73.9097345 + }, + "nodes": [ + 1544756324, + 1544756273 + ], + "geometry": [ + { "lat": 40.8811548, "lon": -73.9097345 }, + { "lat": 40.8810222, "lon": -73.9099077 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Riverdale Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Riverdale", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 621557577, + "bounds": { + "minlat": 40.8437003, + "minlon": -73.9439673, + "maxlat": 40.8452666, + "maxlon": -73.9437567 + }, + "nodes": [ + 60927823, + 60927824, + 7911412098, + 11976150587, + 60927825 + ], + "geometry": [ + { "lat": 40.8437003, "lon": -73.9439673 }, + { "lat": 40.8444564, "lon": -73.9438690 }, + { "lat": 40.8449080, "lon": -73.9438084 }, + { "lat": 40.8451929, "lon": -73.9437677 }, + { "lat": 40.8452666, "lon": -73.9437567 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 621557578, + "bounds": { + "minlat": 40.8459462, + "minlon": -73.9436219, + "maxlat": 40.8462078, + "maxlon": -73.9435668 + }, + "nodes": [ + 595441960, + 7911412103, + 60927827 + ], + "geometry": [ + { "lat": 40.8459462, "lon": -73.9436219 }, + { "lat": 40.8461062, "lon": -73.9435855 }, + { "lat": 40.8462078, "lon": -73.9435668 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 621557579, + "bounds": { + "minlat": 40.8452666, + "minlon": -73.9437567, + "maxlat": 40.8459462, + "maxlon": -73.9436219 + }, + "nodes": [ + 60927825, + 13765146727, + 7911399058, + 13765536860, + 7911412143, + 60927826, + 595441960 + ], + "geometry": [ + { "lat": 40.8452666, "lon": -73.9437567 }, + { "lat": 40.8453305, "lon": -73.9437466 }, + { "lat": 40.8454578, "lon": -73.9437265 }, + { "lat": 40.8454999, "lon": -73.9437187 }, + { "lat": 40.8456255, "lon": -73.9436953 }, + { "lat": 40.8458947, "lon": -73.9436349 }, + { "lat": 40.8459462, "lon": -73.9436219 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 621562579, + "bounds": { + "minlat": 40.7494004, + "minlon": -73.9364930, + "maxlat": 40.7497140, + "maxlon": -73.9361305 + }, + "nodes": [ + 6783777626, + 7762265854, + 7762265855 + ], + "geometry": [ + { "lat": 40.7494004, "lon": -73.9364930 }, + { "lat": 40.7496427, "lon": -73.9362086 }, + { "lat": 40.7497140, "lon": -73.9361305 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "7", + "lanes:backward": "3", + "lanes:forward": "4", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|right|right", + "turn:lanes:forward": "left|through|through|through;right" + } +}, +{ + "type": "way", + "id": 621564325, + "bounds": { + "minlat": 40.7522659, + "minlon": -73.9141115, + "maxlat": 40.7522899, + "maxlon": -73.9138987 + }, + "nodes": [ + 5871727215, + 5482228840 + ], + "geometry": [ + { "lat": 40.7522899, "lon": -73.9141115 }, + { "lat": 40.7522659, "lon": -73.9138987 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 621564326, + "bounds": { + "minlat": 40.7526594, + "minlon": -73.9139617, + "maxlat": 40.7528378, + "maxlon": -73.9138889 + }, + "nodes": [ + 9851251037, + 3569858099, + 3569858101 + ], + "geometry": [ + { "lat": 40.7526594, "lon": -73.9139617 }, + { "lat": 40.7527312, "lon": -73.9139406 }, + { "lat": 40.7528378, "lon": -73.9138889 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "level": "0;1" + } +}, +{ + "type": "way", + "id": 621564327, + "bounds": { + "minlat": 40.7526106, + "minlon": -73.9140512, + "maxlat": 40.7533038, + "maxlon": -73.9138893 + }, + "nodes": [ + 5871727216, + 5871727214 + ], + "geometry": [ + { "lat": 40.7533038, "lon": -73.9138893 }, + { "lat": 40.7526106, "lon": -73.9140512 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 621573340, + "bounds": { + "minlat": 40.8082841, + "minlon": -73.9307098, + "maxlat": 40.8092592, + "maxlon": -73.9293944 + }, + "nodes": [ + 7554071448, + 595801153, + 13003571876, + 595801154 + ], + "geometry": [ + { "lat": 40.8082841, "lon": -73.9307098 }, + { "lat": 40.8087841, "lon": -73.9300049 }, + { "lat": 40.8092126, "lon": -73.9294558 }, + { "lat": 40.8092592, "lon": -73.9293944 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "OSM US TIGER 2012 Roads Overly" + } +}, +{ + "type": "way", + "id": 621785405, + "bounds": { + "minlat": 40.7940312, + "minlon": -73.9737051, + "maxlat": 40.7945890, + "maxlon": -73.9723990 + }, + "nodes": [ + 42431096, + 9492556548, + 8687882736, + 42428711 + ], + "geometry": [ + { "lat": 40.7945890, "lon": -73.9737051 }, + { "lat": 40.7945347, "lon": -73.9735780 }, + { "lat": 40.7940744, "lon": -73.9725003 }, + { "lat": 40.7940312, "lon": -73.9723990 } + ], + "tags": { + "alt_name": "West 95 Street", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 95th Street", + "name:ru": "Западная 95-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4646040", + "wikipedia": "en:95th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 621789115, + "bounds": { + "minlat": 40.8737719, + "minlon": -73.9099954, + "maxlat": 40.8740507, + "maxlon": -73.9096303 + }, + "nodes": [ + 5873917963, + 10128431656 + ], + "geometry": [ + { "lat": 40.8740507, "lon": -73.9099954 }, + { "lat": 40.8737719, "lon": -73.9096303 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 622560222, + "bounds": { + "minlat": 40.8505270, + "minlon": -73.9305116, + "maxlat": 40.8511145, + "maxlon": -73.9292761 + }, + "nodes": [ + 5880331506, + 9166213995, + 8369968529, + 9166213996, + 5880331508, + 9166213994, + 5880331509, + 5880331506 + ], + "geometry": [ + { "lat": 40.8506261, "lon": -73.9292761 }, + { "lat": 40.8505748, "lon": -73.9293169 }, + { "lat": 40.8505270, "lon": -73.9293549 }, + { "lat": 40.8509426, "lon": -73.9303645 }, + { "lat": 40.8510031, "lon": -73.9305116 }, + { "lat": 40.8510559, "lon": -73.9304761 }, + { "lat": 40.8511145, "lon": -73.9304366 }, + { "lat": 40.8506261, "lon": -73.9292761 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 623484174, + "bounds": { + "minlat": 40.7391110, + "minlon": -73.9521338, + "maxlat": 40.7408803, + "maxlon": -73.9429947 + }, + "nodes": [ + 588178801, + 2799547042, + 5481857855, + 2135513408, + 597663764, + 9690651000, + 9690651001, + 5481857851, + 42826070, + 5481857849, + 9690651003, + 9690650999, + 42901523, + 5481972220, + 5481972424, + 11211159677, + 42808189, + 11211159678, + 42859014 + ], + "geometry": [ + { "lat": 40.7408803, "lon": -73.9521338 }, + { "lat": 40.7408598, "lon": -73.9520309 }, + { "lat": 40.7407259, "lon": -73.9513288 }, + { "lat": 40.7407117, "lon": -73.9512618 }, + { "lat": 40.7407017, "lon": -73.9512079 }, + { "lat": 40.7404929, "lon": -73.9501436 }, + { "lat": 40.7404786, "lon": -73.9500696 }, + { "lat": 40.7404702, "lon": -73.9500227 }, + { "lat": 40.7404501, "lon": -73.9499161 }, + { "lat": 40.7404396, "lon": -73.9498605 }, + { "lat": 40.7404298, "lon": -73.9498063 }, + { "lat": 40.7404180, "lon": -73.9497424 }, + { "lat": 40.7399992, "lon": -73.9476101 }, + { "lat": 40.7398809, "lon": -73.9470002 }, + { "lat": 40.7396352, "lon": -73.9457384 }, + { "lat": 40.7395680, "lon": -73.9453950 }, + { "lat": 40.7395530, "lon": -73.9453077 }, + { "lat": 40.7395333, "lon": -73.9452096 }, + { "lat": 40.7391110, "lon": -73.9429947 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 623546817, + "bounds": { + "minlat": 40.7503695, + "minlon": -73.9299866, + "maxlat": 40.7504985, + "maxlon": -73.9297277 + }, + "nodes": [ + 5888553536, + 5888553541, + 7857724454, + 7857724440, + 7857724453, + 5888556989 + ], + "geometry": [ + { "lat": 40.7504985, "lon": -73.9299866 }, + { "lat": 40.7504377, "lon": -73.9299013 }, + { "lat": 40.7503799, "lon": -73.9297927 }, + { "lat": 40.7503729, "lon": -73.9297791 }, + { "lat": 40.7503721, "lon": -73.9297692 }, + { "lat": 40.7503695, "lon": -73.9297277 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 623546818, + "bounds": { + "minlat": 40.7501331, + "minlon": -73.9295960, + "maxlat": 40.7503945, + "maxlon": -73.9292468 + }, + "nodes": [ + 5888553558, + 1414043515, + 1414043511, + 7499098031, + 7499098032, + 5888557013, + 5888553545, + 5888556993, + 5888553557, + 5888556990, + 2280320970, + 5888553532, + 5888557021 + ], + "geometry": [ + { "lat": 40.7503945, "lon": -73.9295960 }, + { "lat": 40.7503584, "lon": -73.9295877 }, + { "lat": 40.7503211, "lon": -73.9295756 }, + { "lat": 40.7502906, "lon": -73.9295592 }, + { "lat": 40.7502849, "lon": -73.9295529 }, + { "lat": 40.7502577, "lon": -73.9295056 }, + { "lat": 40.7502367, "lon": -73.9294429 }, + { "lat": 40.7502373, "lon": -73.9294396 }, + { "lat": 40.7502188, "lon": -73.9293871 }, + { "lat": 40.7502112, "lon": -73.9293720 }, + { "lat": 40.7501763, "lon": -73.9293073 }, + { "lat": 40.7501534, "lon": -73.9292730 }, + { "lat": 40.7501331, "lon": -73.9292468 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 623679179, + "bounds": { + "minlat": 40.7175406, + "minlon": -73.9875310, + "maxlat": 40.7181473, + "maxlon": -73.9859599 + }, + "nodes": [ + 5889534187, + 8231896480, + 5889534188, + 5889534189, + 5889534190, + 8231896487, + 7476387566, + 7476387565, + 5889534191, + 5889534192, + 5889534193, + 5889534194, + 7476387567, + 7476387568, + 7465356675, + 8310245638, + 5889534187 + ], + "geometry": [ + { "lat": 40.7179942, "lon": -73.9875310 }, + { "lat": 40.7181348, "lon": -73.9874581 }, + { "lat": 40.7181473, "lon": -73.9874512 }, + { "lat": 40.7181157, "lon": -73.9873539 }, + { "lat": 40.7180069, "lon": -73.9870448 }, + { "lat": 40.7178972, "lon": -73.9867464 }, + { "lat": 40.7178690, "lon": -73.9866696 }, + { "lat": 40.7178393, "lon": -73.9865899 }, + { "lat": 40.7177590, "lon": -73.9863701 }, + { "lat": 40.7176036, "lon": -73.9860081 }, + { "lat": 40.7175635, "lon": -73.9859599 }, + { "lat": 40.7175406, "lon": -73.9859666 }, + { "lat": 40.7177440, "lon": -73.9866691 }, + { "lat": 40.7177608, "lon": -73.9867263 }, + { "lat": 40.7177794, "lon": -73.9867904 }, + { "lat": 40.7177828, "lon": -73.9868021 }, + { "lat": 40.7179942, "lon": -73.9875310 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 623836435, + "bounds": { + "minlat": 40.8626109, + "minlon": -73.9205668, + "maxlat": 40.8630463, + "maxlon": -73.9202964 + }, + "nodes": [ + 1764400318, + 9561566537, + 9561566536, + 42455493 + ], + "geometry": [ + { "lat": 40.8630463, "lon": -73.9205668 }, + { "lat": 40.8629936, "lon": -73.9205334 }, + { "lat": 40.8627314, "lon": -73.9203706 }, + { "lat": 40.8626109, "lon": -73.9202964 } + ], + "tags": { + "highway": "tertiary", + "name": "West 204th Street", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "204th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 623836436, + "bounds": { + "minlat": 40.8630463, + "minlon": -73.9206133, + "maxlat": 40.8631202, + "maxlon": -73.9205668 + }, + "nodes": [ + 42452495, + 1764400318 + ], + "geometry": [ + { "lat": 40.8631202, "lon": -73.9206133 }, + { "lat": 40.8630463, "lon": -73.9205668 } + ], + "tags": { + "highway": "tertiary", + "name": "West 204th Street", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "204th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 623836438, + "bounds": { + "minlat": 40.8636939, + "minlon": -73.9189398, + "maxlat": 40.8644793, + "maxlon": -73.9170603 + }, + "nodes": [ + 42431260, + 9561208926, + 7477500101, + 5490841347, + 11587266293, + 5490841355, + 11587266292, + 9561566545, + 42431257 + ], + "geometry": [ + { "lat": 40.8636939, "lon": -73.9170603 }, + { "lat": 40.8637370, "lon": -73.9171632 }, + { "lat": 40.8639932, "lon": -73.9177765 }, + { "lat": 40.8640125, "lon": -73.9178228 }, + { "lat": 40.8641281, "lon": -73.9180995 }, + { "lat": 40.8642561, "lon": -73.9184058 }, + { "lat": 40.8643761, "lon": -73.9186929 }, + { "lat": 40.8644157, "lon": -73.9187877 }, + { "lat": 40.8644793, "lon": -73.9189398 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "West 207th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 623836443, + "bounds": { + "minlat": 40.8634843, + "minlon": -73.9197437, + "maxlat": 40.8635998, + "maxlon": -73.9195831 + }, + "nodes": [ + 5890982665, + 11648774061, + 1763748995 + ], + "geometry": [ + { "lat": 40.8635998, "lon": -73.9195831 }, + { "lat": 40.8635066, "lon": -73.9197126 }, + { "lat": 40.8634843, "lon": -73.9197437 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "parking:lane:left": "parallel", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 624153492, + "bounds": { + "minlat": 40.7744716, + "minlon": -74.0204131, + "maxlat": 40.7748222, + "maxlon": -74.0195746 + }, + "nodes": [ + 8920038394, + 5909822380, + 5893803939, + 12172291363, + 12172291367 + ], + "geometry": [ + { "lat": 40.7748222, "lon": -74.0204131 }, + { "lat": 40.7747908, "lon": -74.0203350 }, + { "lat": 40.7747159, "lon": -74.0201467 }, + { "lat": 40.7745082, "lon": -74.0196539 }, + { "lat": 40.7744716, "lon": -74.0195746 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 624599517, + "bounds": { + "minlat": 40.8473184, + "minlon": -73.9974384, + "maxlat": 40.8475506, + "maxlon": -73.9973355 + }, + "nodes": [ + 5898166739, + 11038649367 + ], + "geometry": [ + { "lat": 40.8473184, "lon": -73.9973355 }, + { "lat": 40.8475506, "lon": -73.9974384 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 624599518, + "bounds": { + "minlat": 40.8476153, + "minlon": -73.9974677, + "maxlat": 40.8478560, + "maxlon": -73.9972475 + }, + "nodes": [ + 5898166740, + 5898166745, + 5898166741 + ], + "geometry": [ + { "lat": 40.8476153, "lon": -73.9974677 }, + { "lat": 40.8476788, "lon": -73.9974093 }, + { "lat": 40.8478560, "lon": -73.9972475 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 624599519, + "bounds": { + "minlat": 40.8478169, + "minlon": -73.9971799, + "maxlat": 40.8479526, + "maxlon": -73.9970556 + }, + "nodes": [ + 5898166742, + 5898166743 + ], + "geometry": [ + { "lat": 40.8479526, "lon": -73.9970556 }, + { "lat": 40.8478169, "lon": -73.9971799 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 624599520, + "bounds": { + "minlat": 40.8478169, + "minlon": -73.9972475, + "maxlat": 40.8478560, + "maxlon": -73.9971799 + }, + "nodes": [ + 5898166741, + 5898166743 + ], + "geometry": [ + { "lat": 40.8478560, "lon": -73.9972475 }, + { "lat": 40.8478169, "lon": -73.9971799 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 624599521, + "bounds": { + "minlat": 40.8475213, + "minlon": -73.9974093, + "maxlat": 40.8476788, + "maxlon": -73.9971268 + }, + "nodes": [ + 5898166745, + 5898166746 + ], + "geometry": [ + { "lat": 40.8476788, "lon": -73.9974093 }, + { "lat": 40.8475213, "lon": -73.9971268 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 624599536, + "bounds": { + "minlat": 40.8479048, + "minlon": -73.9971560, + "maxlat": 40.8482533, + "maxlon": -73.9967430 + }, + "nodes": [ + 5898171336, + 5898171335, + 5898171334, + 5898171333 + ], + "geometry": [ + { "lat": 40.8479048, "lon": -73.9969740 }, + { "lat": 40.8481502, "lon": -73.9967430 }, + { "lat": 40.8482533, "lon": -73.9969117 }, + { "lat": 40.8480114, "lon": -73.9971560 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 625350108, + "bounds": { + "minlat": 40.7608450, + "minlon": -73.9083480, + "maxlat": 40.7612068, + "maxlon": -73.9075534 + }, + "nodes": [ + 5904706527, + 6453077976, + 5904706529, + 6453088927, + 5904706528 + ], + "geometry": [ + { "lat": 40.7612068, "lon": -73.9083480 }, + { "lat": 40.7611733, "lon": -73.9082744 }, + { "lat": 40.7610196, "lon": -73.9079370 }, + { "lat": 40.7608740, "lon": -73.9076173 }, + { "lat": 40.7608450, "lon": -73.9075534 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 625350109, + "bounds": { + "minlat": 40.7610196, + "minlon": -73.9079370, + "maxlat": 40.7619654, + "maxlon": -73.9071886 + }, + "nodes": [ + 5904706529, + 13703044614, + 5904706530 + ], + "geometry": [ + { "lat": 40.7610196, "lon": -73.9079370 }, + { "lat": 40.7615043, "lon": -73.9075534 }, + { "lat": 40.7619654, "lon": -73.9071886 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 625350110, + "bounds": { + "minlat": 40.7617782, + "minlon": -73.9075842, + "maxlat": 40.7621490, + "maxlon": -73.9067948 + }, + "nodes": [ + 5904706531, + 6453077975, + 5904706530, + 6453088928, + 5904706532 + ], + "geometry": [ + { "lat": 40.7621490, "lon": -73.9075842 }, + { "lat": 40.7621255, "lon": -73.9075335 }, + { "lat": 40.7619654, "lon": -73.9071886 }, + { "lat": 40.7618081, "lon": -73.9068577 }, + { "lat": 40.7617782, "lon": -73.9067948 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 625350111, + "bounds": { + "minlat": 40.7608846, + "minlon": -73.9102455, + "maxlat": 40.7611084, + "maxlon": -73.9096692 + }, + "nodes": [ + 5904706535, + 5904706536, + 6453135608, + 5904706537 + ], + "geometry": [ + { "lat": 40.7608846, "lon": -73.9102455 }, + { "lat": 40.7611084, "lon": -73.9100576 }, + { "lat": 40.7609601, "lon": -73.9097406 }, + { "lat": 40.7609343, "lon": -73.9096692 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 625351352, + "bounds": { + "minlat": 40.7607512, + "minlon": -73.9130008, + "maxlat": 40.7613093, + "maxlon": -73.9121606 + }, + "nodes": [ + 5904717692, + 5904717693, + 6453127210, + 5904717694 + ], + "geometry": [ + { "lat": 40.7613093, "lon": -73.9121606 }, + { "lat": 40.7607512, "lon": -73.9126181 }, + { "lat": 40.7608913, "lon": -73.9129331 }, + { "lat": 40.7609214, "lon": -73.9130008 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 626014602, + "bounds": { + "minlat": 40.7799011, + "minlon": -74.0099852, + "maxlat": 40.7805160, + "maxlon": -74.0092299 + }, + "nodes": [ + 5910252616, + 5910252617, + 5910252618, + 5910252619 + ], + "geometry": [ + { "lat": 40.7803315, "lon": -74.0092299 }, + { "lat": 40.7805160, "lon": -74.0096609 }, + { "lat": 40.7800795, "lon": -74.0099852 }, + { "lat": 40.7799011, "lon": -74.0095605 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 626014604, + "bounds": { + "minlat": 40.7804595, + "minlon": -74.0095110, + "maxlat": 40.7808859, + "maxlon": -74.0084025 + }, + "nodes": [ + 5910252630, + 5910252631, + 5910252632 + ], + "geometry": [ + { "lat": 40.7804595, "lon": -74.0084025 }, + { "lat": 40.7808859, "lon": -74.0093626 }, + { "lat": 40.7806822, "lon": -74.0095110 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 626014605, + "bounds": { + "minlat": 40.7808859, + "minlon": -74.0093626, + "maxlat": 40.7812922, + "maxlon": -74.0080197 + }, + "nodes": [ + 5910252631, + 5910252633, + 5910252634, + 5910252635, + 5910252636, + 5910252637, + 5910252642, + 5910252638, + 5910252643 + ], + "geometry": [ + { "lat": 40.7808859, "lon": -74.0093626 }, + { "lat": 40.7809799, "lon": -74.0092645 }, + { "lat": 40.7810557, "lon": -74.0091524 }, + { "lat": 40.7811088, "lon": -74.0090403 }, + { "lat": 40.7811391, "lon": -74.0089602 }, + { "lat": 40.7811664, "lon": -74.0089061 }, + { "lat": 40.7812406, "lon": -74.0088400 }, + { "lat": 40.7812922, "lon": -74.0087940 }, + { "lat": 40.7809436, "lon": -74.0080197 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 626014606, + "bounds": { + "minlat": 40.7812406, + "minlon": -74.0092881, + "maxlat": 40.7814173, + "maxlon": -74.0088400 + }, + "nodes": [ + 5910252639, + 5910252640, + 5910252641, + 5910252642 + ], + "geometry": [ + { "lat": 40.7814173, "lon": -74.0092881 }, + { "lat": 40.7813882, "lon": -74.0092238 }, + { "lat": 40.7813543, "lon": -74.0091584 }, + { "lat": 40.7812406, "lon": -74.0088400 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 626014607, + "bounds": { + "minlat": 40.7852852, + "minlon": -74.0021202, + "maxlat": 40.7890707, + "maxlon": -73.9992455 + }, + "nodes": [ + 308650399, + 103869525, + 103877062, + 103874351, + 103878719, + 103867117, + 103876765, + 103873653, + 103881083, + 103866873, + 5964467317, + 4068469831, + 308692920, + 1793478697, + 103863718, + 103870016, + 8375126462, + 103870176, + 103881082 + ], + "geometry": [ + { "lat": 40.7852852, "lon": -74.0021202 }, + { "lat": 40.7856028, "lon": -74.0018412 }, + { "lat": 40.7857519, "lon": -74.0016952 }, + { "lat": 40.7860789, "lon": -74.0014528 }, + { "lat": 40.7863220, "lon": -74.0012373 }, + { "lat": 40.7865656, "lon": -74.0010594 }, + { "lat": 40.7868616, "lon": -74.0008092 }, + { "lat": 40.7870595, "lon": -74.0006877 }, + { "lat": 40.7874087, "lon": -74.0003848 }, + { "lat": 40.7875225, "lon": -74.0002974 }, + { "lat": 40.7876625, "lon": -74.0002342 }, + { "lat": 40.7876778, "lon": -74.0002273 }, + { "lat": 40.7877011, "lon": -74.0002168 }, + { "lat": 40.7878945, "lon": -74.0001329 }, + { "lat": 40.7880893, "lon": -74.0000281 }, + { "lat": 40.7881689, "lon": -73.9999546 }, + { "lat": 40.7882814, "lon": -73.9998630 }, + { "lat": 40.7885579, "lon": -73.9996381 }, + { "lat": 40.7890707, "lon": -73.9992455 } + ], + "tags": { + "highway": "residential", + "name": "Avenue at Port Imperial", + "source:name": "TIGER" + } +}, +{ + "type": "way", + "id": 626014610, + "bounds": { + "minlat": 40.7884903, + "minlon": -74.0012842, + "maxlat": 40.7885490, + "maxlon": -74.0011667 + }, + "nodes": [ + 103861676, + 1793478702 + ], + "geometry": [ + { "lat": 40.7884903, "lon": -74.0012842 }, + { "lat": 40.7885490, "lon": -74.0011667 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hillside Road", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Hillside", + "tiger:name_base_1": "River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 626014617, + "bounds": { + "minlat": 40.7925375, + "minlon": -73.9980673, + "maxlat": 40.7930074, + "maxlon": -73.9977992 + }, + "nodes": [ + 5482013298, + 103861700, + 4205813742 + ], + "geometry": [ + { "lat": 40.7925375, "lon": -73.9980673 }, + { "lat": 40.7929080, "lon": -73.9978491 }, + { "lat": 40.7930074, "lon": -73.9977992 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "shared_lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 626014623, + "bounds": { + "minlat": 40.7924860, + "minlon": -73.9980977, + "maxlat": 40.7925375, + "maxlon": -73.9980673 + }, + "nodes": [ + 5482013246, + 5482013298 + ], + "geometry": [ + { "lat": 40.7924860, "lon": -73.9980977 }, + { "lat": 40.7925375, "lon": -73.9980673 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "shared_lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 626016363, + "bounds": { + "minlat": 40.8090660, + "minlon": -73.9894234, + "maxlat": 40.8094749, + "maxlon": -73.9883930 + }, + "nodes": [ + 103137037, + 7672269047, + 3642839378, + 3642839377, + 3642839376 + ], + "geometry": [ + { "lat": 40.8094749, "lon": -73.9894234 }, + { "lat": 40.8094345, "lon": -73.9892683 }, + { "lat": 40.8094130, "lon": -73.9891857 }, + { "lat": 40.8093163, "lon": -73.9889446 }, + { "lat": 40.8090660, "lon": -73.9883930 } + ], + "tags": { + "highway": "residential", + "name": "Thompson Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Thompson", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 626016364, + "bounds": { + "minlat": 40.8118557, + "minlon": -73.9873377, + "maxlat": 40.8122667, + "maxlon": -73.9870183 + }, + "nodes": [ + 103137052, + 103137054, + 5342516879, + 4205758296 + ], + "geometry": [ + { "lat": 40.8118557, "lon": -73.9873377 }, + { "lat": 40.8121149, "lon": -73.9871562 }, + { "lat": 40.8122067, "lon": -73.9870728 }, + { "lat": 40.8122667, "lon": -73.9870183 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "||right" + } +}, +{ + "type": "way", + "id": 626016365, + "bounds": { + "minlat": 40.8120216, + "minlon": -73.9859557, + "maxlat": 40.8126028, + "maxlon": -73.9844479 + }, + "nodes": [ + 1751404933, + 1751404922, + 1751404915, + 5929253681, + 1751404914, + 1751404913, + 1751404909, + 1751404905, + 5929253682, + 1751404901, + 1751404898 + ], + "geometry": [ + { "lat": 40.8126028, "lon": -73.9859557 }, + { "lat": 40.8124810, "lon": -73.9856531 }, + { "lat": 40.8124065, "lon": -73.9854682 }, + { "lat": 40.8123706, "lon": -73.9853791 }, + { "lat": 40.8123628, "lon": -73.9853596 }, + { "lat": 40.8123216, "lon": -73.9852497 }, + { "lat": 40.8122466, "lon": -73.9850490 }, + { "lat": 40.8121680, "lon": -73.9848390 }, + { "lat": 40.8121428, "lon": -73.9847716 }, + { "lat": 40.8120956, "lon": -73.9846456 }, + { "lat": 40.8120216, "lon": -73.9844479 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 626016366, + "bounds": { + "minlat": 40.8126028, + "minlon": -73.9859557, + "maxlat": 40.8131342, + "maxlon": -73.9839732 + }, + "nodes": [ + 1751404933, + 1751404953, + 1751404971, + 1751404977, + 1751404976, + 1751404962, + 1751404959, + 1751404963, + 1751404967, + 1751404960, + 1751404958, + 1751404975 + ], + "geometry": [ + { "lat": 40.8126028, "lon": -73.9859557 }, + { "lat": 40.8128238, "lon": -73.9858178 }, + { "lat": 40.8130457, "lon": -73.9852844 }, + { "lat": 40.8131342, "lon": -73.9850716 }, + { "lat": 40.8131301, "lon": -73.9849885 }, + { "lat": 40.8129304, "lon": -73.9848584 }, + { "lat": 40.8128853, "lon": -73.9847590 }, + { "lat": 40.8129332, "lon": -73.9846090 }, + { "lat": 40.8129783, "lon": -73.9845006 }, + { "lat": 40.8129210, "lon": -73.9843410 }, + { "lat": 40.8128539, "lon": -73.9841537 }, + { "lat": 40.8131265, "lon": -73.9839732 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 626016367, + "bounds": { + "minlat": 40.8124776, + "minlon": -73.9860427, + "maxlat": 40.8126028, + "maxlon": -73.9859557 + }, + "nodes": [ + 5482328572, + 1751404933 + ], + "geometry": [ + { "lat": 40.8124776, "lon": -73.9860427 }, + { "lat": 40.8126028, "lon": -73.9859557 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 626016368, + "bounds": { + "minlat": 40.8127581, + "minlon": -73.9865057, + "maxlat": 40.8130567, + "maxlon": -73.9859987 + }, + "nodes": [ + 103137063, + 103137061, + 103137059 + ], + "geometry": [ + { "lat": 40.8130567, "lon": -73.9859987 }, + { "lat": 40.8129213, "lon": -73.9862594 }, + { "lat": 40.8127581, "lon": -73.9865057 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 626016369, + "bounds": { + "minlat": 40.8124756, + "minlon": -73.9837953, + "maxlat": 40.8130152, + "maxlon": -73.9824013 + }, + "nodes": [ + 1751404968, + 1751404961, + 1751404957, + 1751404952, + 1751404949, + 1751404943, + 1751404935, + 1751404926, + 1751404925, + 1751404920 + ], + "geometry": [ + { "lat": 40.8130152, "lon": -73.9837953 }, + { "lat": 40.8129292, "lon": -73.9835779 }, + { "lat": 40.8128509, "lon": -73.9833755 }, + { "lat": 40.8128140, "lon": -73.9832803 }, + { "lat": 40.8127824, "lon": -73.9832021 }, + { "lat": 40.8127034, "lon": -73.9830068 }, + { "lat": 40.8126222, "lon": -73.9828061 }, + { "lat": 40.8125409, "lon": -73.9826052 }, + { "lat": 40.8125298, "lon": -73.9825776 }, + { "lat": 40.8124756, "lon": -73.9824013 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 626016370, + "bounds": { + "minlat": 40.8120216, + "minlon": -73.9844479, + "maxlat": 40.8130152, + "maxlon": -73.9837953 + }, + "nodes": [ + 1751404968, + 1751404898 + ], + "geometry": [ + { "lat": 40.8130152, "lon": -73.9837953 }, + { "lat": 40.8120216, "lon": -73.9844479 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 626016371, + "bounds": { + "minlat": 40.8130567, + "minlon": -73.9859987, + "maxlat": 40.8133546, + "maxlon": -73.9852620 + }, + "nodes": [ + 103137067, + 103137065, + 103137063 + ], + "geometry": [ + { "lat": 40.8133546, "lon": -73.9852620 }, + { "lat": 40.8131901, "lon": -73.9856793 }, + { "lat": 40.8130567, "lon": -73.9859987 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 626016372, + "bounds": { + "minlat": 40.8136809, + "minlon": -73.9844354, + "maxlat": 40.8138216, + "maxlon": -73.9841731 + }, + "nodes": [ + 5482328566, + 103137073, + 7672312027, + 1751405011 + ], + "geometry": [ + { "lat": 40.8138216, "lon": -73.9841731 }, + { "lat": 40.8137664, "lon": -73.9842723 }, + { "lat": 40.8137406, "lon": -73.9843216 }, + { "lat": 40.8136809, "lon": -73.9844354 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 626016373, + "bounds": { + "minlat": 40.8184987, + "minlon": -73.9782208, + "maxlat": 40.8188379, + "maxlon": -73.9772433 + }, + "nodes": [ + 5362514439, + 12248807229, + 12248807227, + 12248807228, + 5362514438, + 5362514142, + 5362514144, + 3441706865, + 7672312072, + 5362514435, + 5362514127, + 7672312081, + 5340890586, + 5362517644 + ], + "geometry": [ + { "lat": 40.8185036, "lon": -73.9772433 }, + { "lat": 40.8184998, "lon": -73.9772574 }, + { "lat": 40.8184987, "lon": -73.9772720 }, + { "lat": 40.8185005, "lon": -73.9772868 }, + { "lat": 40.8185040, "lon": -73.9773004 }, + { "lat": 40.8185538, "lon": -73.9774374 }, + { "lat": 40.8186238, "lon": -73.9776244 }, + { "lat": 40.8186810, "lon": -73.9777695 }, + { "lat": 40.8186959, "lon": -73.9778061 }, + { "lat": 40.8187490, "lon": -73.9779289 }, + { "lat": 40.8187927, "lon": -73.9780501 }, + { "lat": 40.8188102, "lon": -73.9781045 }, + { "lat": 40.8188262, "lon": -73.9781656 }, + { "lat": 40.8188379, "lon": -73.9782208 } + ], + "tags": { + "bicycle": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 626016374, + "bounds": { + "minlat": 40.8221887, + "minlon": -73.9762905, + "maxlat": 40.8228050, + "maxlon": -73.9759261 + }, + "nodes": [ + 3441621783, + 3441621791, + 3493496039 + ], + "geometry": [ + { "lat": 40.8221887, "lon": -73.9762905 }, + { "lat": 40.8224759, "lon": -73.9761124 }, + { "lat": 40.8228050, "lon": -73.9759261 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 626016375, + "bounds": { + "minlat": 40.8222487, + "minlon": -73.9761124, + "maxlat": 40.8224759, + "maxlon": -73.9759834 + }, + "nodes": [ + 3441621786, + 3441621787, + 3441621788, + 3441621789, + 3441621790, + 3441621791 + ], + "geometry": [ + { "lat": 40.8222487, "lon": -73.9759834 }, + { "lat": 40.8222754, "lon": -73.9760216 }, + { "lat": 40.8223101, "lon": -73.9760617 }, + { "lat": 40.8223499, "lon": -73.9760904 }, + { "lat": 40.8223961, "lon": -73.9761076 }, + { "lat": 40.8224759, "lon": -73.9761124 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Portside Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 626221794, + "bounds": { + "minlat": 40.7706271, + "minlon": -73.9911705, + "maxlat": 40.7709867, + "maxlon": -73.9909124 + }, + "nodes": [ + 4207854754, + 7637834795, + 42430747 + ], + "geometry": [ + { "lat": 40.7706271, "lon": -73.9911705 }, + { "lat": 40.7709320, "lon": -73.9909516 }, + { "lat": 40.7709867, "lon": -73.9909124 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "no", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 626226775, + "bounds": { + "minlat": 40.7381697, + "minlon": -73.9799749, + "maxlat": 40.7391809, + "maxlon": -73.9776048 + }, + "nodes": [ + 42455897, + 8119542592, + 5481965067, + 5481965062, + 5278159383, + 8119193322, + 42442891 + ], + "geometry": [ + { "lat": 40.7381697, "lon": -73.9776048 }, + { "lat": 40.7382353, "lon": -73.9777394 }, + { "lat": 40.7384603, "lon": -73.9782744 }, + { "lat": 40.7385091, "lon": -73.9783909 }, + { "lat": 40.7389341, "lon": -73.9793990 }, + { "lat": 40.7391204, "lon": -73.9798299 }, + { "lat": 40.7391809, "lon": -73.9799749 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 25th Street", + "name:ru": "Восточная 25-я стрит", + "name_1": "East 25 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 626309918, + "bounds": { + "minlat": 40.8373325, + "minlon": -74.0049305, + "maxlat": 40.8386435, + "maxlon": -74.0026334 + }, + "nodes": [ + 103159281, + 12016315191, + 5773254152, + 12016147278, + 12016147280, + 103224079 + ], + "geometry": [ + { "lat": 40.8373325, "lon": -74.0026334 }, + { "lat": 40.8373702, "lon": -74.0026996 }, + { "lat": 40.8380068, "lon": -74.0038177 }, + { "lat": 40.8385719, "lon": -74.0048054 }, + { "lat": 40.8385879, "lon": -74.0048334 }, + { "lat": 40.8386435, "lon": -74.0049305 } + ], + "tags": { + "highway": "residential", + "name": "Slocum Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Slocum", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 626309919, + "bounds": { + "minlat": 40.8366969, + "minlon": -74.0015051, + "maxlat": 40.8406522, + "maxlon": -73.9975603 + }, + "nodes": [ + 103208129, + 12016315326, + 103206964, + 12016315327, + 103156984, + 12016315330, + 12016315335, + 103208134, + 12016315336, + 12016315337, + 103208136, + 12016315340, + 12016315343, + 103208138, + 12016315344, + 103208140, + 440215463, + 103179315, + 103208144, + 766720047 + ], + "geometry": [ + { "lat": 40.8366969, "lon": -74.0015051 }, + { "lat": 40.8371830, "lon": -74.0010174 }, + { "lat": 40.8372362, "lon": -74.0009641 }, + { "lat": 40.8377365, "lon": -74.0004682 }, + { "lat": 40.8377857, "lon": -74.0004194 }, + { "lat": 40.8378295, "lon": -74.0003735 }, + { "lat": 40.8382764, "lon": -73.9999307 }, + { "lat": 40.8383303, "lon": -73.9998774 }, + { "lat": 40.8383800, "lon": -73.9998286 }, + { "lat": 40.8388290, "lon": -73.9993887 }, + { "lat": 40.8388824, "lon": -73.9993350 }, + { "lat": 40.8389311, "lon": -73.9992857 }, + { "lat": 40.8393544, "lon": -73.9988607 }, + { "lat": 40.8394225, "lon": -73.9987924 }, + { "lat": 40.8394962, "lon": -73.9987211 }, + { "lat": 40.8397870, "lon": -73.9984400 }, + { "lat": 40.8398810, "lon": -73.9983470 }, + { "lat": 40.8399802, "lon": -73.9982527 }, + { "lat": 40.8405127, "lon": -73.9977163 }, + { "lat": 40.8406522, "lon": -73.9975603 } + ], + "tags": { + "highway": "residential", + "name": "Abbott Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 626309920, + "bounds": { + "minlat": 40.8366969, + "minlon": -74.0026334, + "maxlat": 40.8373325, + "maxlon": -74.0015051 + }, + "nodes": [ + 103159281, + 12016315192, + 103208129 + ], + "geometry": [ + { "lat": 40.8373325, "lon": -74.0026334 }, + { "lat": 40.8372920, "lon": -74.0025607 }, + { "lat": 40.8366969, "lon": -74.0015051 } + ], + "tags": { + "highway": "residential", + "name": "Slocum Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Slocum", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 626315789, + "bounds": { + "minlat": 40.7002573, + "minlon": -73.9828474, + "maxlat": 40.7012792, + "maxlon": -73.9827903 + }, + "nodes": [ + 9531583113, + 5912952468, + 5912952467 + ], + "geometry": [ + { "lat": 40.7002573, "lon": -73.9828474 }, + { "lat": 40.7006029, "lon": -73.9828293 }, + { "lat": 40.7012792, "lon": -73.9827903 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Gold Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 626511814, + "bounds": { + "minlat": 40.8147793, + "minlon": -73.9187408, + "maxlat": 40.8156212, + "maxlon": -73.9184060 + }, + "nodes": [ + 7564284929, + 5914730213, + 7695510475, + 9908624619, + 7695510476, + 7695510477, + 9908624620, + 5914730214, + 7555037310, + 7564299102 + ], + "geometry": [ + { "lat": 40.8147793, "lon": -73.9187408 }, + { "lat": 40.8148730, "lon": -73.9187290 }, + { "lat": 40.8152643, "lon": -73.9184459 }, + { "lat": 40.8152995, "lon": -73.9184252 }, + { "lat": 40.8153332, "lon": -73.9184121 }, + { "lat": 40.8153726, "lon": -73.9184062 }, + { "lat": 40.8154088, "lon": -73.9184060 }, + { "lat": 40.8154599, "lon": -73.9184108 }, + { "lat": 40.8155266, "lon": -73.9184293 }, + { "lat": 40.8156212, "lon": -73.9184606 } + ], + "tags": { + "access": "no", + "bus": "yes", + "covered": "no", + "foot": "yes", + "highway": "service", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no" + } +}, +{ + "type": "way", + "id": 626514137, + "bounds": { + "minlat": 40.7594380, + "minlon": -73.9851371, + "maxlat": 40.7601126, + "maxlon": -73.9848196 + }, + "nodes": [ + 42428305, + 2435108459, + 10228962523, + 42428303 + ], + "geometry": [ + { "lat": 40.7601126, "lon": -73.9848196 }, + { "lat": 40.7600571, "lon": -73.9849081 }, + { "lat": 40.7594960, "lon": -73.9851161 }, + { "lat": 40.7594380, "lon": -73.9851371 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "living_street", + "lanes": "1", + "lit": "yes", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:both": "no", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 626715185, + "bounds": { + "minlat": 40.8260123, + "minlon": -73.9357392, + "maxlat": 40.8263479, + "maxlon": -73.9354818 + }, + "nodes": [ + 5916527828, + 4207863950 + ], + "geometry": [ + { "lat": 40.8260123, "lon": -73.9357392 }, + { "lat": 40.8263479, "lon": -73.9354818 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 626739791, + "bounds": { + "minlat": 40.7566313, + "minlon": -73.9915754, + "maxlat": 40.7571224, + "maxlon": -73.9904289 + }, + "nodes": [ + 5916783970, + 5916783969 + ], + "geometry": [ + { "lat": 40.7566313, "lon": -73.9904289 }, + { "lat": 40.7571224, "lon": -73.9915754 } + ], + "tags": { + "highway": "unclassified", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "surface": "asphalt", + "tunnel": "building_passage", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 626739792, + "bounds": { + "minlat": 40.7571224, + "minlon": -73.9927303, + "maxlat": 40.7576127, + "maxlon": -73.9915754 + }, + "nodes": [ + 5916783969, + 593972687 + ], + "geometry": [ + { "lat": 40.7571224, "lon": -73.9915754 }, + { "lat": 40.7576127, "lon": -73.9927303 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 627037014, + "bounds": { + "minlat": 40.8741489, + "minlon": -73.9105305, + "maxlat": 40.8742871, + "maxlon": -73.9103590 + }, + "nodes": [ + 1544782721, + 7612920597, + 1544809878 + ], + "geometry": [ + { "lat": 40.8742871, "lon": -73.9103590 }, + { "lat": 40.8742456, "lon": -73.9104105 }, + { "lat": 40.8741489, "lon": -73.9105305 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 627178787, + "bounds": { + "minlat": 40.7789315, + "minlon": -73.9430283, + "maxlat": 40.7793051, + "maxlon": -73.9427995 + }, + "nodes": [ + 3900961218, + 5920714790, + 9906868461, + 5534202686, + 9906868460, + 9906868459, + 5534202683, + 9906868458, + 9906868457, + 5920714789, + 9906868456, + 5534202685, + 9906868455, + 5920714785 + ], + "geometry": [ + { "lat": 40.7793051, "lon": -73.9428351 }, + { "lat": 40.7792481, "lon": -73.9428130 }, + { "lat": 40.7792220, "lon": -73.9428059 }, + { "lat": 40.7791934, "lon": -73.9428004 }, + { "lat": 40.7791677, "lon": -73.9427995 }, + { "lat": 40.7791379, "lon": -73.9428013 }, + { "lat": 40.7791051, "lon": -73.9428108 }, + { "lat": 40.7790803, "lon": -73.9428197 }, + { "lat": 40.7790534, "lon": -73.9428348 }, + { "lat": 40.7790276, "lon": -73.9428531 }, + { "lat": 40.7790031, "lon": -73.9428753 }, + { "lat": 40.7789829, "lon": -73.9428972 }, + { "lat": 40.7789659, "lon": -73.9429226 }, + { "lat": 40.7789315, "lon": -73.9430283 } + ], + "tags": { + "access": "private", + "bridge": "yes", + "highway": "service", + "lanes": "1", + "layer": "1", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 627183998, + "bounds": { + "minlat": 40.7493205, + "minlon": -73.9386164, + "maxlat": 40.7496699, + "maxlon": -73.9379528 + }, + "nodes": [ + 5920758889, + 2089938117, + 10927727736, + 3785669492, + 4966315020, + 3785669493, + 3785669494, + 276203989 + ], + "geometry": [ + { "lat": 40.7496699, "lon": -73.9386164 }, + { "lat": 40.7495661, "lon": -73.9384302 }, + { "lat": 40.7495004, "lon": -73.9382711 }, + { "lat": 40.7494658, "lon": -73.9381874 }, + { "lat": 40.7494394, "lon": -73.9381286 }, + { "lat": 40.7494077, "lon": -73.9380745 }, + { "lat": 40.7493607, "lon": -73.9380101 }, + { "lat": 40.7493205, "lon": -73.9379528 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "name": "Queens Plaza South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 627805511, + "bounds": { + "minlat": 40.7791258, + "minlon": -73.9849751, + "maxlat": 40.7794312, + "maxlon": -73.9847552 + }, + "nodes": [ + 42431002, + 9492542202, + 4207854764 + ], + "geometry": [ + { "lat": 40.7791258, "lon": -73.9849751 }, + { "lat": 40.7791885, "lon": -73.9849334 }, + { "lat": 40.7794312, "lon": -73.9847552 } + ], + "tags": { + "goods": "no", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 627805512, + "bounds": { + "minlat": 40.7777922, + "minlon": -73.9859482, + "maxlat": 40.7784773, + "maxlon": -73.9854454 + }, + "nodes": [ + 1722116498, + 6856776749, + 9374838668, + 42431000 + ], + "geometry": [ + { "lat": 40.7777922, "lon": -73.9859482 }, + { "lat": 40.7779758, "lon": -73.9858149 }, + { "lat": 40.7783996, "lon": -73.9855026 }, + { "lat": 40.7784773, "lon": -73.9854454 } + ], + "tags": { + "goods:backward": "no", + "highway": "secondary", + "lanes": "4", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 627805515, + "bounds": { + "minlat": 40.7776592, + "minlon": -73.9860440, + "maxlat": 40.7777922, + "maxlon": -73.9859482 + }, + "nodes": [ + 3377387929, + 5117940776, + 1722116498 + ], + "geometry": [ + { "lat": 40.7776592, "lon": -73.9860440 }, + { "lat": 40.7777396, "lon": -73.9859860 }, + { "lat": 40.7777922, "lon": -73.9859482 } + ], + "tags": { + "goods:backward": "no", + "highway": "secondary", + "lanes": "4", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 627805516, + "bounds": { + "minlat": 40.7773094, + "minlon": -73.9862982, + "maxlat": 40.7776592, + "maxlon": -73.9860440 + }, + "nodes": [ + 3371304342, + 6841543645, + 3377387929 + ], + "geometry": [ + { "lat": 40.7773094, "lon": -73.9862982 }, + { "lat": 40.7774768, "lon": -73.9861776 }, + { "lat": 40.7776592, "lon": -73.9860440 } + ], + "tags": { + "goods:backward": "no", + "highway": "secondary", + "lanes": "4", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "oneway": "no", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 627805517, + "bounds": { + "minlat": 40.7770261, + "minlon": -73.9865066, + "maxlat": 40.7773094, + "maxlon": -73.9862982 + }, + "nodes": [ + 3371304332, + 3371304342 + ], + "geometry": [ + { "lat": 40.7770261, "lon": -73.9865066 }, + { "lat": 40.7773094, "lon": -73.9862982 } + ], + "tags": { + "goods:backward": "no", + "highway": "secondary", + "lanes": "4", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "oneway": "no", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 627805518, + "bounds": { + "minlat": 40.7768258, + "minlon": -73.9866513, + "maxlat": 40.7770261, + "maxlon": -73.9865066 + }, + "nodes": [ + 3377387920, + 3884632731, + 3371304332 + ], + "geometry": [ + { "lat": 40.7768258, "lon": -73.9866513 }, + { "lat": 40.7769569, "lon": -73.9865567 }, + { "lat": 40.7770261, "lon": -73.9865066 } + ], + "tags": { + "goods:backward": "no", + "highway": "secondary", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 628067377, + "bounds": { + "minlat": 40.8157473, + "minlon": -73.9807348, + "maxlat": 40.8165261, + "maxlon": -73.9799920 + }, + "nodes": [ + 5929253648, + 5929253646, + 5929253649 + ], + "geometry": [ + { "lat": 40.8157473, "lon": -73.9807348 }, + { "lat": 40.8161976, "lon": -73.9802916 }, + { "lat": 40.8165261, "lon": -73.9799920 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 628093103, + "bounds": { + "minlat": 40.7457826, + "minlon": -73.9716752, + "maxlat": 40.7462999, + "maxlon": -73.9704329 + }, + "nodes": [ + 42454010, + 42454012, + 1577501048, + 12148509062, + 4078301227, + 42450814 + ], + "geometry": [ + { "lat": 40.7462999, "lon": -73.9716752 }, + { "lat": 40.7462478, "lon": -73.9715500 }, + { "lat": 40.7460663, "lon": -73.9711142 }, + { "lat": 40.7458191, "lon": -73.9705205 }, + { "lat": 40.7458051, "lon": -73.9704869 }, + { "lat": 40.7457826, "lon": -73.9704329 } + ], + "tags": { + "alt_name": "E 38th st", + "highway": "residential", + "lanes": "2", + "name": "East 38th Street", + "name:ru": "Восточная 38-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 629027262, + "bounds": { + "minlat": 40.8707764, + "minlon": -73.9905271, + "maxlat": 40.8711690, + "maxlon": -73.9902286 + }, + "nodes": [ + 5577214989, + 5938917423 + ], + "geometry": [ + { "lat": 40.8711690, "lon": -73.9902286 }, + { "lat": 40.8707764, "lon": -73.9905271 } + ], + "tags": { + "dog": "no", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 629027263, + "bounds": { + "minlat": 40.8706758, + "minlon": -73.9902993, + "maxlat": 40.8710950, + "maxlon": -73.9899661 + }, + "nodes": [ + 5938917424, + 5938917425 + ], + "geometry": [ + { "lat": 40.8710950, "lon": -73.9899661 }, + { "lat": 40.8706758, "lon": -73.9902993 } + ], + "tags": { + "dog": "no", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 629027265, + "bounds": { + "minlat": 40.8705849, + "minlon": -73.9900937, + "maxlat": 40.8710070, + "maxlon": -73.9897719 + }, + "nodes": [ + 5938917426, + 5938917427 + ], + "geometry": [ + { "lat": 40.8710070, "lon": -73.9897719 }, + { "lat": 40.8705849, "lon": -73.9900937 } + ], + "tags": { + "dog": "no", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 629027267, + "bounds": { + "minlat": 40.8704893, + "minlon": -73.9898812, + "maxlat": 40.8709152, + "maxlon": -73.9895593 + }, + "nodes": [ + 5938917428, + 5938917429 + ], + "geometry": [ + { "lat": 40.8709152, "lon": -73.9895593 }, + { "lat": 40.8704893, "lon": -73.9898812 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 629027269, + "bounds": { + "minlat": 40.8708208, + "minlon": -73.9893381, + "maxlat": 40.8716169, + "maxlon": -73.9883430 + }, + "nodes": [ + 5577214988, + 10243836634, + 5938917430, + 5938917431, + 5938917432, + 10243836636, + 5938917433, + 5938917434, + 5938917435, + 5938917436, + 5938917437, + 5938917438, + 5938917439, + 5938917440 + ], + "geometry": [ + { "lat": 40.8708208, "lon": -73.9893381 }, + { "lat": 40.8709260, "lon": -73.9892745 }, + { "lat": 40.8709610, "lon": -73.9892528 }, + { "lat": 40.8710237, "lon": -73.9892080 }, + { "lat": 40.8710695, "lon": -73.9891609 }, + { "lat": 40.8710900, "lon": -73.9891316 }, + { "lat": 40.8711172, "lon": -73.9890651 }, + { "lat": 40.8711559, "lon": -73.9889570 }, + { "lat": 40.8711830, "lon": -73.9888248 }, + { "lat": 40.8712017, "lon": -73.9887329 }, + { "lat": 40.8712254, "lon": -73.9886320 }, + { "lat": 40.8712440, "lon": -73.9885939 }, + { "lat": 40.8712695, "lon": -73.9885513 }, + { "lat": 40.8716169, "lon": -73.9883430 } + ], + "tags": { + "dog": "no", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 629027270, + "bounds": { + "minlat": 40.8716169, + "minlon": -73.9883430, + "maxlat": 40.8719056, + "maxlon": -73.9878586 + }, + "nodes": [ + 5938917440, + 5938917441, + 5938917442, + 5938917443, + 5938917444, + 5938917445, + 5938917446 + ], + "geometry": [ + { "lat": 40.8716169, "lon": -73.9883430 }, + { "lat": 40.8717487, "lon": -73.9882756 }, + { "lat": 40.8718185, "lon": -73.9881920 }, + { "lat": 40.8718607, "lon": -73.9881014 }, + { "lat": 40.8718950, "lon": -73.9880056 }, + { "lat": 40.8719002, "lon": -73.9879045 }, + { "lat": 40.8719056, "lon": -73.9878586 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 629027271, + "bounds": { + "minlat": 40.8719056, + "minlon": -73.9878586, + "maxlat": 40.8722080, + "maxlon": -73.9874530 + }, + "nodes": [ + 5938917446, + 5938917451, + 103217648 + ], + "geometry": [ + { "lat": 40.8719056, "lon": -73.9878586 }, + { "lat": 40.8719754, "lon": -73.9876746 }, + { "lat": 40.8722080, "lon": -73.9874530 } + ], + "tags": { + "dog": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 629027272, + "bounds": { + "minlat": 40.8699600, + "minlon": -73.9894053, + "maxlat": 40.8703423, + "maxlon": -73.9884599 + }, + "nodes": [ + 5938917472, + 5938917471, + 5938917470, + 5938917469, + 5938917468, + 5938917467, + 5938917466, + 5938917465, + 5938917464, + 5938917463, + 5938917462, + 5938917461, + 5938917460, + 5938917459, + 5938917458, + 5938917457, + 5938917456, + 5938917455, + 5938917454, + 5938917453, + 5938917452, + 5557494248 + ], + "geometry": [ + { "lat": 40.8702794, "lon": -73.9894053 }, + { "lat": 40.8702870, "lon": -73.9893000 }, + { "lat": 40.8702955, "lon": -73.9892073 }, + { "lat": 40.8703062, "lon": -73.9891300 }, + { "lat": 40.8703210, "lon": -73.9890612 }, + { "lat": 40.8703423, "lon": -73.9888870 }, + { "lat": 40.8703412, "lon": -73.9888308 }, + { "lat": 40.8703242, "lon": -73.9887915 }, + { "lat": 40.8703051, "lon": -73.9887465 }, + { "lat": 40.8702892, "lon": -73.9887002 }, + { "lat": 40.8702732, "lon": -73.9886524 }, + { "lat": 40.8702329, "lon": -73.9885288 }, + { "lat": 40.8702201, "lon": -73.9885007 }, + { "lat": 40.8702010, "lon": -73.9884754 }, + { "lat": 40.8701500, "lon": -73.9884599 }, + { "lat": 40.8701234, "lon": -73.9884656 }, + { "lat": 40.8700703, "lon": -73.9884880 }, + { "lat": 40.8700416, "lon": -73.9885147 }, + { "lat": 40.8700055, "lon": -73.9885541 }, + { "lat": 40.8699896, "lon": -73.9885751 }, + { "lat": 40.8699758, "lon": -73.9886215 }, + { "lat": 40.8699600, "lon": -73.9886792 } + ], + "tags": { + "dog": "no", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 629027279, + "bounds": { + "minlat": 40.8687200, + "minlon": -73.9900750, + "maxlat": 40.8687601, + "maxlon": -73.9897704 + }, + "nodes": [ + 103297866, + 5938918237, + 5938918249, + 5938918238, + 5938918239 + ], + "geometry": [ + { "lat": 40.8687200, "lon": -73.9900750 }, + { "lat": 40.8687200, "lon": -73.9899252 }, + { "lat": 40.8687286, "lon": -73.9898738 }, + { "lat": 40.8687328, "lon": -73.9898489 }, + { "lat": 40.8687601, "lon": -73.9897704 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 629027280, + "bounds": { + "minlat": 40.8687184, + "minlon": -73.9897704, + "maxlat": 40.8697371, + "maxlon": -73.9886905 + }, + "nodes": [ + 5938918239, + 5938918240, + 5938918241, + 5938918242, + 5938918243, + 5938918244, + 5938918245, + 5938918246, + 5938918247, + 5938918262, + 5938918264, + 5938918248 + ], + "geometry": [ + { "lat": 40.8687601, "lon": -73.9897704 }, + { "lat": 40.8687986, "lon": -73.9897173 }, + { "lat": 40.8688066, "lon": -73.9896622 }, + { "lat": 40.8687922, "lon": -73.9895900 }, + { "lat": 40.8687601, "lon": -73.9894946 }, + { "lat": 40.8687280, "lon": -73.9894140 }, + { "lat": 40.8687184, "lon": -73.9893843 }, + { "lat": 40.8687248, "lon": -73.9893461 }, + { "lat": 40.8687360, "lon": -73.9893270 }, + { "lat": 40.8694383, "lon": -73.9888805 }, + { "lat": 40.8695890, "lon": -73.9887847 }, + { "lat": 40.8697371, "lon": -73.9886905 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 629027281, + "bounds": { + "minlat": 40.8685852, + "minlon": -73.9898738, + "maxlat": 40.8687360, + "maxlon": -73.9893270 + }, + "nodes": [ + 5938918249, + 5938918250, + 5938918251, + 5938918252, + 5938918253, + 5938918247 + ], + "geometry": [ + { "lat": 40.8687286, "lon": -73.9898738 }, + { "lat": 40.8685964, "lon": -73.9895497 }, + { "lat": 40.8685852, "lon": -73.9894925 }, + { "lat": 40.8685964, "lon": -73.9894437 }, + { "lat": 40.8686237, "lon": -73.9893991 }, + { "lat": 40.8687360, "lon": -73.9893270 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 629027282, + "bounds": { + "minlat": 40.8696216, + "minlon": -73.9893800, + "maxlat": 40.8699328, + "maxlon": -73.9892124 + }, + "nodes": [ + 5938918254, + 5938918255, + 5938918256, + 5938918263, + 5938918257 + ], + "geometry": [ + { "lat": 40.8696216, "lon": -73.9893694 }, + { "lat": 40.8696601, "lon": -73.9893779 }, + { "lat": 40.8697018, "lon": -73.9893800 }, + { "lat": 40.8697963, "lon": -73.9893114 }, + { "lat": 40.8699328, "lon": -73.9892124 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 629027283, + "bounds": { + "minlat": 40.8699328, + "minlon": -73.9892124, + "maxlat": 40.8701600, + "maxlon": -73.9891424 + }, + "nodes": [ + 5938918257, + 5938918258, + 5938918259, + 5938918260, + 5938918261 + ], + "geometry": [ + { "lat": 40.8699328, "lon": -73.9892124 }, + { "lat": 40.8699793, "lon": -73.9891785 }, + { "lat": 40.8700387, "lon": -73.9891530 }, + { "lat": 40.8701109, "lon": -73.9891424 }, + { "lat": 40.8701600, "lon": -73.9891491 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 629027284, + "bounds": { + "minlat": 40.8694383, + "minlon": -73.9893694, + "maxlat": 40.8696216, + "maxlon": -73.9888805 + }, + "nodes": [ + 5938918254, + 5938918262 + ], + "geometry": [ + { "lat": 40.8696216, "lon": -73.9893694 }, + { "lat": 40.8694383, "lon": -73.9888805 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 629027285, + "bounds": { + "minlat": 40.8695890, + "minlon": -73.9893114, + "maxlat": 40.8697963, + "maxlon": -73.9887847 + }, + "nodes": [ + 5938918263, + 5938918264 + ], + "geometry": [ + { "lat": 40.8697963, "lon": -73.9893114 }, + { "lat": 40.8695890, "lon": -73.9887847 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 629027286, + "bounds": { + "minlat": 40.8697371, + "minlon": -73.9892124, + "maxlat": 40.8699328, + "maxlon": -73.9886905 + }, + "nodes": [ + 5938918257, + 5938918248 + ], + "geometry": [ + { "lat": 40.8699328, "lon": -73.9892124 }, + { "lat": 40.8697371, "lon": -73.9886905 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 629027293, + "bounds": { + "minlat": 40.8690922, + "minlon": -73.9926628, + "maxlat": 40.8692578, + "maxlon": -73.9922356 + }, + "nodes": [ + 5938918286, + 5938918290, + 5938918287 + ], + "geometry": [ + { "lat": 40.8690922, "lon": -73.9922356 }, + { "lat": 40.8691681, "lon": -73.9924267 }, + { "lat": 40.8692578, "lon": -73.9926628 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 629027294, + "bounds": { + "minlat": 40.8685018, + "minlon": -73.9930540, + "maxlat": 40.8686864, + "maxlon": -73.9926263 + }, + "nodes": [ + 5938918288, + 5938918291, + 5938918289 + ], + "geometry": [ + { "lat": 40.8686864, "lon": -73.9930540 }, + { "lat": 40.8685880, "lon": -73.9928260 }, + { "lat": 40.8685018, "lon": -73.9926263 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 629027295, + "bounds": { + "minlat": 40.8686864, + "minlon": -73.9930540, + "maxlat": 40.8692578, + "maxlon": -73.9926628 + }, + "nodes": [ + 5938918288, + 13173640480, + 5938918287 + ], + "geometry": [ + { "lat": 40.8686864, "lon": -73.9930540 }, + { "lat": 40.8688843, "lon": -73.9929185 }, + { "lat": 40.8692578, "lon": -73.9926628 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 629027296, + "bounds": { + "minlat": 40.8685880, + "minlon": -73.9928260, + "maxlat": 40.8691681, + "maxlon": -73.9924267 + }, + "nodes": [ + 5938918290, + 5938918291 + ], + "geometry": [ + { "lat": 40.8691681, "lon": -73.9924267 }, + { "lat": 40.8685880, "lon": -73.9928260 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 629027297, + "bounds": { + "minlat": 40.8718711, + "minlon": -73.9908147, + "maxlat": 40.8720300, + "maxlon": -73.9903503 + }, + "nodes": [ + 5938918293, + 5938918298, + 5938918294 + ], + "geometry": [ + { "lat": 40.8718711, "lon": -73.9903503 }, + { "lat": 40.8719451, "lon": -73.9905667 }, + { "lat": 40.8720300, "lon": -73.9908147 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 629027298, + "bounds": { + "minlat": 40.8708295, + "minlon": -73.9914888, + "maxlat": 40.8710053, + "maxlon": -73.9910374 + }, + "nodes": [ + 5938918295, + 5938918297, + 5938918296 + ], + "geometry": [ + { "lat": 40.8708295, "lon": -73.9910374 }, + { "lat": 40.8709138, "lon": -73.9912363 }, + { "lat": 40.8710053, "lon": -73.9914888 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 629027299, + "bounds": { + "minlat": 40.8710053, + "minlon": -73.9914888, + "maxlat": 40.8720300, + "maxlon": -73.9908147 + }, + "nodes": [ + 5938918294, + 5938918296 + ], + "geometry": [ + { "lat": 40.8720300, "lon": -73.9908147 }, + { "lat": 40.8710053, "lon": -73.9914888 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 629027300, + "bounds": { + "minlat": 40.8709138, + "minlon": -73.9912363, + "maxlat": 40.8719451, + "maxlon": -73.9905667 + }, + "nodes": [ + 5938918297, + 5938918298 + ], + "geometry": [ + { "lat": 40.8709138, "lon": -73.9912363 }, + { "lat": 40.8719451, "lon": -73.9905667 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 629534115, + "bounds": { + "minlat": 40.7430424, + "minlon": -73.9162150, + "maxlat": 40.7430431, + "maxlon": -73.9158742 + }, + "nodes": [ + 4503278357, + 9986789935, + 588178907 + ], + "geometry": [ + { "lat": 40.7430431, "lon": -73.9158742 }, + { "lat": 40.7430430, "lon": -73.9159153 }, + { "lat": 40.7430424, "lon": -73.9162150 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 629934119, + "bounds": { + "minlat": 40.7766527, + "minlon": -73.9844370, + "maxlat": 40.7771850, + "maxlon": -73.9830397 + }, + "nodes": [ + 1722116514, + 13702981187, + 13702981186, + 3371304364, + 5117719796, + 1733614298 + ], + "geometry": [ + { "lat": 40.7771850, "lon": -73.9844370 }, + { "lat": 40.7769710, "lon": -73.9839216 }, + { "lat": 40.7768793, "lon": -73.9836927 }, + { "lat": 40.7768661, "lon": -73.9836560 }, + { "lat": 40.7766855, "lon": -73.9832104 }, + { "lat": 40.7766527, "lon": -73.9830397 } + ], + "tags": { + "highway": "service", + "name": "West 69th Street", + "name:ru": "Западная 69-я стрит", + "service": "driveway", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 630068706, + "bounds": { + "minlat": 40.7953609, + "minlon": -73.9955804, + "maxlat": 40.7953639, + "maxlon": -73.9954179 + }, + "nodes": [ + 3642793667, + 3642794666 + ], + "geometry": [ + { "lat": 40.7953639, "lon": -73.9955804 }, + { "lat": 40.7953609, "lon": -73.9954179 } + ], + "tags": { + "highway": "residential", + "name": "Marine Road" + } +}, +{ + "type": "way", + "id": 630380730, + "bounds": { + "minlat": 40.8511043, + "minlon": -73.9662266, + "maxlat": 40.8511595, + "maxlon": -73.9659514 + }, + "nodes": [ + 5106302144, + 5952660385, + 10002759288, + 10002759287, + 5952660386, + 5952660387 + ], + "geometry": [ + { "lat": 40.8511595, "lon": -73.9659514 }, + { "lat": 40.8511169, "lon": -73.9660528 }, + { "lat": 40.8511097, "lon": -73.9660796 }, + { "lat": 40.8511043, "lon": -73.9661215 }, + { "lat": 40.8511067, "lon": -73.9661768 }, + { "lat": 40.8511214, "lon": -73.9662266 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 630828554, + "bounds": { + "minlat": 40.7382279, + "minlon": -73.9856739, + "maxlat": 40.7388483, + "maxlon": -73.9852454 + }, + "nodes": [ + 42440325, + 9968663368, + 12181379205, + 9968663371, + 9968663369, + 9968663370, + 12181309693, + 9558740373, + 42438174 + ], + "geometry": [ + { "lat": 40.7388483, "lon": -73.9852454 }, + { "lat": 40.7387930, "lon": -73.9852904 }, + { "lat": 40.7387786, "lon": -73.9853021 }, + { "lat": 40.7385205, "lon": -73.9854652 }, + { "lat": 40.7384494, "lon": -73.9855120 }, + { "lat": 40.7383857, "lon": -73.9855562 }, + { "lat": 40.7383176, "lon": -73.9856062 }, + { "lat": 40.7382811, "lon": -73.9856330 }, + { "lat": 40.7382279, "lon": -73.9856739 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 630828555, + "bounds": { + "minlat": 40.7370554, + "minlon": -73.9865427, + "maxlat": 40.7376390, + "maxlon": -73.9861202 + }, + "nodes": [ + 42434358, + 10172843042, + 12183283825, + 12181309645, + 9558740376, + 42434360 + ], + "geometry": [ + { "lat": 40.7370554, "lon": -73.9865427 }, + { "lat": 40.7371118, "lon": -73.9865019 }, + { "lat": 40.7371560, "lon": -73.9864701 }, + { "lat": 40.7375436, "lon": -73.9861905 }, + { "lat": 40.7375881, "lon": -73.9861580 }, + { "lat": 40.7376390, "lon": -73.9861202 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Irving Place", + "name:etymology:wikidata": "Q181667", + "name:ru": "Ирвинг-Плейс", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q136393943" + } +}, +{ + "type": "way", + "id": 630828556, + "bounds": { + "minlat": 40.7507849, + "minlon": -73.9765398, + "maxlat": 40.7514392, + "maxlon": -73.9760552 + }, + "nodes": [ + 11337295604, + 10168841832, + 12183285352, + 10168825915, + 42432444 + ], + "geometry": [ + { "lat": 40.7514392, "lon": -73.9760552 }, + { "lat": 40.7513514, "lon": -73.9761204 }, + { "lat": 40.7508832, "lon": -73.9764670 }, + { "lat": 40.7508421, "lon": -73.9764975 }, + { "lat": 40.7507849, "lon": -73.9765398 } + ], + "tags": { + "bus:lanes": "|||designated", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|through|", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 630828562, + "bounds": { + "minlat": 40.8031025, + "minlon": -73.9582337, + "maxlat": 40.8037326, + "maxlon": -73.9577756 + }, + "nodes": [ + 42431210, + 11296200796, + 10165997011, + 42447317 + ], + "geometry": [ + { "lat": 40.8031025, "lon": -73.9582337 }, + { "lat": 40.8031641, "lon": -73.9581889 }, + { "lat": 40.8036803, "lon": -73.9578137 }, + { "lat": 40.8037326, "lon": -73.9577756 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q17347126", + "wikipedia": "en:Manhattan Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 630828563, + "bounds": { + "minlat": 40.8100609, + "minlon": -73.9549689, + "maxlat": 40.8106928, + "maxlon": -73.9545043 + }, + "nodes": [ + 42438923, + 10168029076, + 11887792567, + 42440138 + ], + "geometry": [ + { "lat": 40.8100609, "lon": -73.9549689 }, + { "lat": 40.8101323, "lon": -73.9549166 }, + { "lat": 40.8106423, "lon": -73.9545424 }, + { "lat": 40.8106928, "lon": -73.9545043 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "lcn": "yes", + "name": "Morningside Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 630828564, + "bounds": { + "minlat": 40.8208736, + "minlon": -73.9451567, + "maxlat": 40.8236550, + "maxlon": -73.9438503 + }, + "nodes": [ + 42434255, + 2562438694, + 42439613, + 10166154735, + 42439601 + ], + "geometry": [ + { "lat": 40.8236550, "lon": -73.9438503 }, + { "lat": 40.8235605, "lon": -73.9439118 }, + { "lat": 40.8215516, "lon": -73.9448439 }, + { "lat": 40.8209453, "lon": -73.9451244 }, + { "lat": 40.8208736, "lon": -73.9451567 } + ], + "tags": { + "highway": "tertiary", + "name": "Edgecombe Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 630828565, + "bounds": { + "minlat": 40.8232628, + "minlon": -73.9438503, + "maxlat": 40.8236550, + "maxlon": -73.9429200 + }, + "nodes": [ + 42434251, + 9903127420, + 9903127421, + 42434255 + ], + "geometry": [ + { "lat": 40.8232628, "lon": -73.9429200 }, + { "lat": 40.8233047, "lon": -73.9430177 }, + { "lat": 40.8236203, "lon": -73.9437673 }, + { "lat": 40.8236550, "lon": -73.9438503 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 145th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "h", + "tiger:name_base": "145th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 630828566, + "bounds": { + "minlat": 40.8216757, + "minlon": -73.9429200, + "maxlat": 40.8232628, + "maxlon": -73.9391536 + }, + "nodes": [ + 42434246, + 9150629557, + 13703366420, + 13703366418, + 13703366416, + 13703366425, + 8008242716, + 42434249, + 8008242719, + 9903127423, + 42434251 + ], + "geometry": [ + { "lat": 40.8216757, "lon": -73.9391536 }, + { "lat": 40.8217238, "lon": -73.9392668 }, + { "lat": 40.8221433, "lon": -73.9402632 }, + { "lat": 40.8221811, "lon": -73.9403532 }, + { "lat": 40.8222170, "lon": -73.9404384 }, + { "lat": 40.8222490, "lon": -73.9405145 }, + { "lat": 40.8227847, "lon": -73.9417870 }, + { "lat": 40.8228413, "lon": -73.9419205 }, + { "lat": 40.8228983, "lon": -73.9420514 }, + { "lat": 40.8232269, "lon": -73.9428345 }, + { "lat": 40.8232628, "lon": -73.9429200 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 145th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 630828567, + "bounds": { + "minlat": 40.8208736, + "minlon": -73.9460787, + "maxlat": 40.8212637, + "maxlon": -73.9451567 + }, + "nodes": [ + 42439601, + 10166154728, + 7784459410, + 42432961 + ], + "geometry": [ + { "lat": 40.8208736, "lon": -73.9451567 }, + { "lat": 40.8209145, "lon": -73.9452539 }, + { "lat": 40.8212101, "lon": -73.9459542 }, + { "lat": 40.8212637, "lon": -73.9460787 } + ], + "tags": { + "highway": "tertiary", + "name": "West 141st Street", + "name_1": "West 141 Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 630828568, + "bounds": { + "minlat": 40.8088548, + "minlon": -73.9540507, + "maxlat": 40.8094823, + "maxlon": -73.9535786 + }, + "nodes": [ + 42438920, + 10168029068, + 9150563661, + 12534082083, + 12534082084, + 9150563662, + 12534082085, + 10168029057, + 42447336 + ], + "geometry": [ + { "lat": 40.8094823, "lon": -73.9535786 }, + { "lat": 40.8094334, "lon": -73.9536136 }, + { "lat": 40.8091104, "lon": -73.9538447 }, + { "lat": 40.8090787, "lon": -73.9538763 }, + { "lat": 40.8090447, "lon": -73.9539110 }, + { "lat": 40.8090100, "lon": -73.9539465 }, + { "lat": 40.8089804, "lon": -73.9539712 }, + { "lat": 40.8089217, "lon": -73.9540164 }, + { "lat": 40.8088548, "lon": -73.9540507 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347126", + "wikipedia": "en:Manhattan Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 630828569, + "bounds": { + "minlat": 40.8094823, + "minlon": -73.9549689, + "maxlat": 40.8100609, + "maxlon": -73.9535786 + }, + "nodes": [ + 42438920, + 10168029074, + 10168029078, + 42438923 + ], + "geometry": [ + { "lat": 40.8094823, "lon": -73.9535786 }, + { "lat": 40.8095181, "lon": -73.9536645 }, + { "lat": 40.8100115, "lon": -73.9548493 }, + { "lat": 40.8100609, "lon": -73.9549689 } + ], + "tags": { + "highway": "residential", + "name": "West 123rd Street", + "name_1": "West 123 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 630828570, + "bounds": { + "minlat": 40.8100609, + "minlon": -73.9551034, + "maxlat": 40.8101168, + "maxlon": -73.9549689 + }, + "nodes": [ + 42438923, + 6993051350 + ], + "geometry": [ + { "lat": 40.8100609, "lon": -73.9549689 }, + { "lat": 40.8101168, "lon": -73.9551034 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 123rd Street", + "name_1": "West 123 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 630828575, + "bounds": { + "minlat": 40.8332352, + "minlon": -73.9482040, + "maxlat": 40.8338346, + "maxlon": -73.9469172 + }, + "nodes": [ + 9801962061, + 2141010835, + 587934139 + ], + "geometry": [ + { "lat": 40.8338346, "lon": -73.9482040 }, + { "lat": 40.8333150, "lon": -73.9470101 }, + { "lat": 40.8332352, "lon": -73.9469172 } + ], + "tags": { + "highway": "residential", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 630828581, + "bounds": { + "minlat": 40.7713160, + "minlon": -73.9832518, + "maxlat": 40.7722791, + "maxlon": -73.9825461 + }, + "nodes": [ + 6173564349, + 4491377963, + 42443313, + 7373482576, + 3262539785 + ], + "geometry": [ + { "lat": 40.7722791, "lon": -73.9825461 }, + { "lat": 40.7718037, "lon": -73.9828982 }, + { "lat": 40.7717305, "lon": -73.9829512 }, + { "lat": 40.7716757, "lon": -73.9829910 }, + { "lat": 40.7713160, "lon": -73.9832518 } + ], + "tags": { + "access": "yes", + "covered": "no", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 630828582, + "bounds": { + "minlat": 40.7688965, + "minlon": -73.9820135, + "maxlat": 40.7696966, + "maxlon": -73.9819959 + }, + "nodes": [ + 1061531429, + 9907441344, + 9509365898, + 9509371621, + 9904553345, + 1061531777 + ], + "geometry": [ + { "lat": 40.7688965, "lon": -73.9819959 }, + { "lat": 40.7689759, "lon": -73.9820012 }, + { "lat": 40.7692437, "lon": -73.9820035 }, + { "lat": 40.7693174, "lon": -73.9820052 }, + { "lat": 40.7696254, "lon": -73.9820123 }, + { "lat": 40.7696966, "lon": -73.9820135 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 630828583, + "bounds": { + "minlat": 40.7465800, + "minlon": -73.9975495, + "maxlat": 40.7472165, + "maxlon": -73.9970852 + }, + "nodes": [ + 42435629, + 11147382152, + 10171484177, + 42435632 + ], + "geometry": [ + { "lat": 40.7465800, "lon": -73.9975495 }, + { "lat": 40.7466412, "lon": -73.9975050 }, + { "lat": 40.7471406, "lon": -73.9971412 }, + { "lat": 40.7472165, "lon": -73.9970852 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 630828584, + "bounds": { + "minlat": 40.7462031, + "minlon": -73.9970852, + "maxlat": 40.7472165, + "maxlon": -73.9946940 + }, + "nodes": [ + 42435632, + 10171484176, + 12415830254, + 12152909714 + ], + "geometry": [ + { "lat": 40.7472165, "lon": -73.9970852 }, + { "lat": 40.7471538, "lon": -73.9969516 }, + { "lat": 40.7464657, "lon": -73.9953152 }, + { "lat": 40.7462031, "lon": -73.9946940 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 630828585, + "bounds": { + "minlat": 40.7439501, + "minlon": -73.9914085, + "maxlat": 40.7448186, + "maxlon": -73.9893490 + }, + "nodes": [ + 42430277, + 10171337647, + 9680380723 + ], + "geometry": [ + { "lat": 40.7448186, "lon": -73.9914085 }, + { "lat": 40.7447640, "lon": -73.9912767 }, + { "lat": 40.7439501, "lon": -73.9893490 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 630828586, + "bounds": { + "minlat": 40.7429103, + "minlon": -73.9927979, + "maxlat": 40.7440393, + "maxlon": -73.9919775 + }, + "nodes": [ + 42430271, + 10171337663, + 10171337653, + 42427423, + 10171337657, + 11766549310 + ], + "geometry": [ + { "lat": 40.7429103, "lon": -73.9927979 }, + { "lat": 40.7430014, "lon": -73.9927315 }, + { "lat": 40.7435122, "lon": -73.9923587 }, + { "lat": 40.7435682, "lon": -73.9923179 }, + { "lat": 40.7436419, "lon": -73.9922665 }, + { "lat": 40.7440393, "lon": -73.9919775 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 630828592, + "bounds": { + "minlat": 40.7286297, + "minlon": -73.9905900, + "maxlat": 40.7291277, + "maxlon": -73.9902243 + }, + "nodes": [ + 5590991384, + 12179562776, + 8309479191, + 42434196, + 8309479192, + 12179562778, + 12179562779 + ], + "geometry": [ + { "lat": 40.7291277, "lon": -73.9902243 }, + { "lat": 40.7290386, "lon": -73.9902902 }, + { "lat": 40.7289975, "lon": -73.9903206 }, + { "lat": 40.7289384, "lon": -73.9903653 }, + { "lat": 40.7288798, "lon": -73.9904074 }, + { "lat": 40.7288365, "lon": -73.9904386 }, + { "lat": 40.7286297, "lon": -73.9905900 } + ], + "tags": { + "alt_name": "3rd Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "24/7", + "maxspeed": "25 mph", + "name": "Cooper Square", + "name:etymology:wikidata": "Q935291", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 630828594, + "bounds": { + "minlat": 40.7332979, + "minlon": -73.9887887, + "maxlat": 40.7339696, + "maxlon": -73.9871866 + }, + "nodes": [ + 42434352, + 8310246182, + 12183283844, + 9907956913, + 5266421745, + 12183286715, + 3985008871, + 42440729 + ], + "geometry": [ + { "lat": 40.7339696, "lon": -73.9887887 }, + { "lat": 40.7339348, "lon": -73.9887055 }, + { "lat": 40.7339124, "lon": -73.9886518 }, + { "lat": 40.7337947, "lon": -73.9883613 }, + { "lat": 40.7334790, "lon": -73.9876154 }, + { "lat": 40.7333806, "lon": -73.9873816 }, + { "lat": 40.7333559, "lon": -73.9873228 }, + { "lat": 40.7332979, "lon": -73.9871866 } + ], + "tags": { + "bus": "yes", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 630828595, + "bounds": { + "minlat": 40.7175538, + "minlon": -73.9993088, + "maxlat": 40.7195928, + "maxlon": -73.9980860 + }, + "nodes": [ + 42439207, + 42454175, + 42454170, + 8307641581, + 42445612, + 8307641582, + 7641718028, + 42440810 + ], + "geometry": [ + { "lat": 40.7195928, "lon": -73.9980860 }, + { "lat": 40.7195355, "lon": -73.9981677 }, + { "lat": 40.7189870, "lon": -73.9983950 }, + { "lat": 40.7185047, "lon": -73.9987188 }, + { "lat": 40.7184469, "lon": -73.9987523 }, + { "lat": 40.7183987, "lon": -73.9987798 }, + { "lat": 40.7176563, "lon": -73.9992461 }, + { "lat": 40.7175538, "lon": -73.9993088 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Baxter Street", + "name:ko": "백스터 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q19839902", + "wikipedia": "en:Baxter Street" + } +}, +{ + "type": "way", + "id": 630828596, + "bounds": { + "minlat": 40.7152927, + "minlon": -74.0016779, + "maxlat": 40.7157492, + "maxlon": -74.0007903 + }, + "nodes": [ + 7132405537, + 10583167623, + 10583167622, + 12198027575, + 7132560165, + 42427305 + ], + "geometry": [ + { "lat": 40.7152927, "lon": -74.0007903 }, + { "lat": 40.7154303, "lon": -74.0010739 }, + { "lat": 40.7154598, "lon": -74.0011347 }, + { "lat": 40.7156665, "lon": -74.0015472 }, + { "lat": 40.7156945, "lon": -74.0015912 }, + { "lat": 40.7157492, "lon": -74.0016779 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Hogan Place", + "name:ko": "호건 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 630828599, + "bounds": { + "minlat": 40.7096039, + "minlon": -74.0015481, + "maxlat": 40.7097331, + "maxlon": -74.0014490 + }, + "nodes": [ + 5706568672, + 278609934 + ], + "geometry": [ + { "lat": 40.7097331, "lon": -74.0014490 }, + { "lat": 40.7096039, "lon": -74.0015481 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxheight": "12'7\"", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "note": "missing from many bus route relations", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 630998914, + "bounds": { + "minlat": 40.8486530, + "minlon": -73.9930531, + "maxlat": 40.8493054, + "maxlon": -73.9923917 + }, + "nodes": [ + 103271823, + 5958044061, + 5958044053, + 5958044054, + 5958044055, + 5958044056, + 5958044057, + 5958044058, + 5959019501, + 5958044059 + ], + "geometry": [ + { "lat": 40.8486530, "lon": -73.9925743 }, + { "lat": 40.8488130, "lon": -73.9924173 }, + { "lat": 40.8488252, "lon": -73.9924053 }, + { "lat": 40.8488510, "lon": -73.9923934 }, + { "lat": 40.8488781, "lon": -73.9923917 }, + { "lat": 40.8489064, "lon": -73.9923985 }, + { "lat": 40.8489283, "lon": -73.9924155 }, + { "lat": 40.8489476, "lon": -73.9924513 }, + { "lat": 40.8490975, "lon": -73.9927035 }, + { "lat": 40.8493054, "lon": -73.9930531 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "alley" + } +}, +{ + "type": "way", + "id": 630998915, + "bounds": { + "minlat": 40.8486530, + "minlon": -73.9928855, + "maxlat": 40.8488374, + "maxlon": -73.9925743 + }, + "nodes": [ + 103271823, + 5958044060 + ], + "geometry": [ + { "lat": 40.8486530, "lon": -73.9925743 }, + { "lat": 40.8488374, "lon": -73.9928855 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 630998916, + "bounds": { + "minlat": 40.8488130, + "minlon": -73.9927323, + "maxlat": 40.8489959, + "maxlon": -73.9924173 + }, + "nodes": [ + 5958044061, + 5958044062 + ], + "geometry": [ + { "lat": 40.8488130, "lon": -73.9924173 }, + { "lat": 40.8489959, "lon": -73.9927323 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 631048441, + "bounds": { + "minlat": 40.8484710, + "minlon": -73.9925743, + "maxlat": 40.8486530, + "maxlon": -73.9922568 + }, + "nodes": [ + 103271823, + 5959019488 + ], + "geometry": [ + { "lat": 40.8486530, "lon": -73.9925743 }, + { "lat": 40.8484710, "lon": -73.9922568 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 631123996, + "bounds": { + "minlat": 40.8383674, + "minlon": -73.9934960, + "maxlat": 40.8391174, + "maxlon": -73.9926907 + }, + "nodes": [ + 103276499, + 5959905134, + 5959905135, + 5959905136, + 5959905137, + 5959905138, + 5959905139, + 5959905140, + 5959905141, + 5959905142, + 5959905143, + 5959905144, + 5959905145, + 5959905146, + 5959905147, + 5959905148, + 5959905149 + ], + "geometry": [ + { "lat": 40.8391065, "lon": -73.9934960 }, + { "lat": 40.8391141, "lon": -73.9934660 }, + { "lat": 40.8391158, "lon": -73.9934437 }, + { "lat": 40.8391174, "lon": -73.9933924 }, + { "lat": 40.8391056, "lon": -73.9933434 }, + { "lat": 40.8390821, "lon": -73.9932877 }, + { "lat": 40.8390534, "lon": -73.9932365 }, + { "lat": 40.8389101, "lon": -73.9930649 }, + { "lat": 40.8388798, "lon": -73.9930226 }, + { "lat": 40.8388461, "lon": -73.9929669 }, + { "lat": 40.8388124, "lon": -73.9929023 }, + { "lat": 40.8387770, "lon": -73.9927954 }, + { "lat": 40.8387567, "lon": -73.9927419 }, + { "lat": 40.8387433, "lon": -73.9927152 }, + { "lat": 40.8386994, "lon": -73.9926907 }, + { "lat": 40.8386455, "lon": -73.9926907 }, + { "lat": 40.8383674, "lon": -73.9927530 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 631123998, + "bounds": { + "minlat": 40.8376801, + "minlon": -73.9927239, + "maxlat": 40.8377496, + "maxlon": -73.9921166 + }, + "nodes": [ + 1786897288, + 5959905150, + 5959905151 + ], + "geometry": [ + { "lat": 40.8377182, "lon": -73.9927239 }, + { "lat": 40.8377496, "lon": -73.9926165 }, + { "lat": 40.8376801, "lon": -73.9921166 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 631124000, + "bounds": { + "minlat": 40.8385170, + "minlon": -73.9940781, + "maxlat": 40.8388523, + "maxlon": -73.9937484 + }, + "nodes": [ + 5959905152, + 5959905153, + 5959905154, + 5959905155, + 5959905156, + 5959905157, + 5959905158, + 5959905159, + 5959905160 + ], + "geometry": [ + { "lat": 40.8385170, "lon": -73.9940781 }, + { "lat": 40.8385289, "lon": -73.9940389 }, + { "lat": 40.8385679, "lon": -73.9939426 }, + { "lat": 40.8385952, "lon": -73.9938945 }, + { "lat": 40.8387213, "lon": -73.9937742 }, + { "lat": 40.8387551, "lon": -73.9937518 }, + { "lat": 40.8387811, "lon": -73.9937484 }, + { "lat": 40.8388123, "lon": -73.9937570 }, + { "lat": 40.8388523, "lon": -73.9937518 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 631124004, + "bounds": { + "minlat": 40.8377806, + "minlon": -73.9939697, + "maxlat": 40.8379014, + "maxlon": -73.9939446 + }, + "nodes": [ + 5959905181, + 5959905182 + ], + "geometry": [ + { "lat": 40.8379014, "lon": -73.9939446 }, + { "lat": 40.8377806, "lon": -73.9939697 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 631124005, + "bounds": { + "minlat": 40.8378160, + "minlon": -73.9933753, + "maxlat": 40.8380800, + "maxlon": -73.9932562 + }, + "nodes": [ + 5959905183, + 5959905184, + 5959905285 + ], + "geometry": [ + { "lat": 40.8378160, "lon": -73.9933753 }, + { "lat": 40.8380800, "lon": -73.9933036 }, + { "lat": 40.8380738, "lon": -73.9932562 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 631181767, + "bounds": { + "minlat": 40.8505550, + "minlon": -73.9977690, + "maxlat": 40.8528800, + "maxlon": -73.9954570 + }, + "nodes": [ + 103142413, + 103133334, + 103166976, + 103137591 + ], + "geometry": [ + { "lat": 40.8505550, "lon": -73.9977690 }, + { "lat": 40.8511340, "lon": -73.9971930 }, + { "lat": 40.8521950, "lon": -73.9961380 }, + { "lat": 40.8528800, "lon": -73.9954570 } + ], + "tags": { + "highway": "residential", + "name": "Highland Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Highland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 631181776, + "bounds": { + "minlat": 40.8505550, + "minlon": -74.0021090, + "maxlat": 40.8530980, + "maxlon": -73.9977690 + }, + "nodes": [ + 103142413, + 103142415, + 103142417, + 11047655241, + 11047655245, + 11047655244, + 103133885, + 103142421 + ], + "geometry": [ + { "lat": 40.8505550, "lon": -73.9977690 }, + { "lat": 40.8512330, "lon": -73.9989500 }, + { "lat": 40.8520864, "lon": -74.0003963 }, + { "lat": 40.8523437, "lon": -74.0008127 }, + { "lat": 40.8523756, "lon": -74.0008643 }, + { "lat": 40.8523980, "lon": -74.0009005 }, + { "lat": 40.8526590, "lon": -74.0013230 }, + { "lat": 40.8530980, "lon": -74.0021090 } + ], + "tags": { + "highway": "residential", + "name": "West Palisades Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisades", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 631181822, + "bounds": { + "minlat": 40.8505129, + "minlon": -74.0012786, + "maxlat": 40.8510609, + "maxlon": -74.0005624 + }, + "nodes": [ + 5960556941, + 5960556942, + 5960556943, + 5960556944, + 5960556945, + 5960556946, + 5960556947, + 5960556948, + 5960556949 + ], + "geometry": [ + { "lat": 40.8510609, "lon": -74.0010745 }, + { "lat": 40.8510202, "lon": -74.0009381 }, + { "lat": 40.8509522, "lon": -74.0008056 }, + { "lat": 40.8507918, "lon": -74.0005624 }, + { "lat": 40.8505129, "lon": -74.0008563 }, + { "lat": 40.8506523, "lon": -74.0011259 }, + { "lat": 40.8506951, "lon": -74.0011800 }, + { "lat": 40.8507177, "lon": -74.0012261 }, + { "lat": 40.8507300, "lon": -74.0012786 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 631181861, + "bounds": { + "minlat": 40.8497502, + "minlon": -74.0014503, + "maxlat": 40.8503001, + "maxlon": -74.0010883 + }, + "nodes": [ + 5960557380, + 5960557381, + 5960557382 + ], + "geometry": [ + { "lat": 40.8503001, "lon": -74.0010883 }, + { "lat": 40.8499473, "lon": -74.0014503 }, + { "lat": 40.8497502, "lon": -74.0011082 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 631603228, + "bounds": { + "minlat": 40.8482827, + "minlon": -73.9806376, + "maxlat": 40.8485734, + "maxlon": -73.9804941 + }, + "nodes": [ + 5964343832, + 5964343833, + 5964343834, + 5964343845, + 5964343835, + 5964343836, + 5964343837, + 5964343838 + ], + "geometry": [ + { "lat": 40.8482827, "lon": -73.9806376 }, + { "lat": 40.8483719, "lon": -73.9805431 }, + { "lat": 40.8484026, "lon": -73.9805133 }, + { "lat": 40.8484225, "lon": -73.9805054 }, + { "lat": 40.8484509, "lon": -73.9804941 }, + { "lat": 40.8484864, "lon": -73.9804941 }, + { "lat": 40.8485476, "lon": -73.9805090 }, + { "lat": 40.8485734, "lon": -73.9805367 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 631603229, + "bounds": { + "minlat": 40.8485734, + "minlon": -73.9813528, + "maxlat": 40.8490134, + "maxlon": -73.9805367 + }, + "nodes": [ + 5964343838, + 5964343839 + ], + "geometry": [ + { "lat": 40.8485734, "lon": -73.9805367 }, + { "lat": 40.8490134, "lon": -73.9813528 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 631603230, + "bounds": { + "minlat": 40.8487766, + "minlon": -73.9815301, + "maxlat": 40.8490134, + "maxlon": -73.9813528 + }, + "nodes": [ + 5964343840, + 5964343846, + 5964343841, + 5964343842, + 5964343839 + ], + "geometry": [ + { "lat": 40.8487766, "lon": -73.9815301 }, + { "lat": 40.8489143, "lon": -73.9813940 }, + { "lat": 40.8489409, "lon": -73.9813677 }, + { "lat": 40.8489763, "lon": -73.9813570 }, + { "lat": 40.8490134, "lon": -73.9813528 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 631603231, + "bounds": { + "minlat": 40.8490134, + "minlon": -73.9813528, + "maxlat": 40.8495324, + "maxlon": -73.9808606 + }, + "nodes": [ + 5964343839, + 5964343843, + 5964343844 + ], + "geometry": [ + { "lat": 40.8490134, "lon": -73.9813528 }, + { "lat": 40.8490617, "lon": -73.9813251 }, + { "lat": 40.8495324, "lon": -73.9808606 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 631603232, + "bounds": { + "minlat": 40.8484225, + "minlon": -73.9813940, + "maxlat": 40.8489143, + "maxlon": -73.9805054 + }, + "nodes": [ + 5964343845, + 5964343846 + ], + "geometry": [ + { "lat": 40.8484225, "lon": -73.9805054 }, + { "lat": 40.8489143, "lon": -73.9813940 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 631674543, + "bounds": { + "minlat": 40.8453829, + "minlon": -73.9858575, + "maxlat": 40.8455004, + "maxlon": -73.9854219 + }, + "nodes": [ + 5965026268, + 5965026269, + 5965026270, + 5965026271, + 5965026272, + 5965026273, + 103258755 + ], + "geometry": [ + { "lat": 40.8454995, "lon": -73.9858575 }, + { "lat": 40.8454994, "lon": -73.9857723 }, + { "lat": 40.8455004, "lon": -73.9857287 }, + { "lat": 40.8454936, "lon": -73.9856517 }, + { "lat": 40.8454703, "lon": -73.9855785 }, + { "lat": 40.8454489, "lon": -73.9855349 }, + { "lat": 40.8453829, "lon": -73.9854219 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 631674544, + "bounds": { + "minlat": 40.8451489, + "minlon": -73.9854219, + "maxlat": 40.8453829, + "maxlon": -73.9850137 + }, + "nodes": [ + 103258755, + 5965026274 + ], + "geometry": [ + { "lat": 40.8453829, "lon": -73.9854219 }, + { "lat": 40.8451489, "lon": -73.9850137 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 631674545, + "bounds": { + "minlat": 40.8460175, + "minlon": -73.9855342, + "maxlat": 40.8462173, + "maxlon": -73.9853894 + }, + "nodes": [ + 5965026276, + 5965026277, + 5965026278, + 5965026284, + 5965026281 + ], + "geometry": [ + { "lat": 40.8460175, "lon": -73.9853894 }, + { "lat": 40.8460480, "lon": -73.9854309 }, + { "lat": 40.8460879, "lon": -73.9854546 }, + { "lat": 40.8461257, "lon": -73.9854649 }, + { "lat": 40.8462173, "lon": -73.9855342 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 631674561, + "bounds": { + "minlat": 40.8445464, + "minlon": -73.9862614, + "maxlat": 40.8447768, + "maxlon": -73.9858169 + }, + "nodes": [ + 103148037, + 5965026356 + ], + "geometry": [ + { "lat": 40.8447768, "lon": -73.9862614 }, + { "lat": 40.8445464, "lon": -73.9858169 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 631674562, + "bounds": { + "minlat": 40.8444073, + "minlon": -73.9863568, + "maxlat": 40.8446166, + "maxlon": -73.9858169 + }, + "nodes": [ + 5965026356, + 5965026357, + 5965026358, + 5965026359, + 5965026360, + 5965026361, + 5965026362 + ], + "geometry": [ + { "lat": 40.8445464, "lon": -73.9858169 }, + { "lat": 40.8444259, "lon": -73.9859027 }, + { "lat": 40.8444154, "lon": -73.9859257 }, + { "lat": 40.8444073, "lon": -73.9859517 }, + { "lat": 40.8444096, "lon": -73.9859793 }, + { "lat": 40.8444259, "lon": -73.9860176 }, + { "lat": 40.8446166, "lon": -73.9863568 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "alley" + } +}, +{ + "type": "way", + "id": 631823677, + "bounds": { + "minlat": 40.8364511, + "minlon": -74.0039030, + "maxlat": 40.8397763, + "maxlon": -73.9980855 + }, + "nodes": [ + 5966100685, + 103139591, + 12016315328, + 103156984, + 12016315329, + 12016293165, + 12016293167, + 103156986, + 12016293166, + 12016293164, + 12016147292, + 12016147295, + 103156988 + ], + "geometry": [ + { "lat": 40.8364511, "lon": -73.9980855 }, + { "lat": 40.8367771, "lon": -73.9986689 }, + { "lat": 40.8377420, "lon": -74.0003449 }, + { "lat": 40.8377857, "lon": -74.0004194 }, + { "lat": 40.8378323, "lon": -74.0005010 }, + { "lat": 40.8387175, "lon": -74.0020542 }, + { "lat": 40.8387333, "lon": -74.0020798 }, + { "lat": 40.8387753, "lon": -74.0021481 }, + { "lat": 40.8388117, "lon": -74.0022112 }, + { "lat": 40.8388282, "lon": -74.0022400 }, + { "lat": 40.8396960, "lon": -74.0037544 }, + { "lat": 40.8397182, "lon": -74.0037942 }, + { "lat": 40.8397763, "lon": -74.0039030 } + ], + "tags": { + "highway": "residential", + "name": "Ray Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ray", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 631956571, + "bounds": { + "minlat": 40.8427592, + "minlon": -74.0041316, + "maxlat": 40.8433390, + "maxlon": -74.0032381 + }, + "nodes": [ + 5967314029, + 5967314030, + 5967314031, + 5967314032 + ], + "geometry": [ + { "lat": 40.8429800, "lon": -74.0032381 }, + { "lat": 40.8427592, "lon": -74.0034440 }, + { "lat": 40.8431195, "lon": -74.0041316 }, + { "lat": 40.8433390, "lon": -74.0039199 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 632100504, + "bounds": { + "minlat": 40.8654628, + "minlon": -73.9084886, + "maxlat": 40.8656583, + "maxlon": -73.9084638 + }, + "nodes": [ + 42743114, + 13055924713, + 9461627677, + 5968362333 + ], + "geometry": [ + { "lat": 40.8654628, "lon": -73.9084886 }, + { "lat": 40.8655011, "lon": -73.9084796 }, + { "lat": 40.8655606, "lon": -73.9084656 }, + { "lat": 40.8656583, "lon": -73.9084638 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Bailey Avenue", + "name:etymology:wikidata": "Q63197681", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bailey", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 632100505, + "bounds": { + "minlat": 40.8656527, + "minlon": -73.9084638, + "maxlat": 40.8657744, + "maxlon": -73.9081262 + }, + "nodes": [ + 2328996405, + 5968362335, + 9461627676, + 10170161357, + 5968362334, + 5968362333 + ], + "geometry": [ + { "lat": 40.8657744, "lon": -73.9081262 }, + { "lat": 40.8656757, "lon": -73.9082622 }, + { "lat": 40.8656630, "lon": -73.9082973 }, + { "lat": 40.8656576, "lon": -73.9083182 }, + { "lat": 40.8656527, "lon": -73.9083373 }, + { "lat": 40.8656583, "lon": -73.9084638 } + ], + "tags": { + "highway": "tertiary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 632100506, + "bounds": { + "minlat": 40.8652533, + "minlon": -73.9085904, + "maxlat": 40.8656002, + "maxlon": -73.9082019 + }, + "nodes": [ + 9461627674, + 13055924714, + 9461627675, + 10170163888, + 1396352590 + ], + "geometry": [ + { "lat": 40.8652533, "lon": -73.9085904 }, + { "lat": 40.8653633, "lon": -73.9084431 }, + { "lat": 40.8654692, "lon": -73.9083277 }, + { "lat": 40.8655500, "lon": -73.9082335 }, + { "lat": 40.8656002, "lon": -73.9082019 } + ], + "tags": { + "highway": "tertiary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 632223287, + "bounds": { + "minlat": 40.8542256, + "minlon": -74.0015738, + "maxlat": 40.8544225, + "maxlon": -74.0012155 + }, + "nodes": [ + 5757961317, + 5969495147 + ], + "geometry": [ + { "lat": 40.8542256, "lon": -74.0012155 }, + { "lat": 40.8544225, "lon": -74.0015738 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 632223294, + "bounds": { + "minlat": 40.8522436, + "minlon": -74.0022464, + "maxlat": 40.8525576, + "maxlon": -74.0017254 + }, + "nodes": [ + 5969495180, + 5969495181 + ], + "geometry": [ + { "lat": 40.8522436, "lon": -74.0017254 }, + { "lat": 40.8525576, "lon": -74.0022464 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 632223295, + "bounds": { + "minlat": 40.8525453, + "minlon": -74.0027374, + "maxlat": 40.8527432, + "maxlon": -74.0022464 + }, + "nodes": [ + 5969495182, + 5969495183, + 5969495184, + 5969497985, + 5969497986, + 5969497987, + 5969495181 + ], + "geometry": [ + { "lat": 40.8527432, "lon": -74.0027374 }, + { "lat": 40.8525464, "lon": -74.0023787 }, + { "lat": 40.8525453, "lon": -74.0023611 }, + { "lat": 40.8525453, "lon": -74.0023346 }, + { "lat": 40.8525476, "lon": -74.0023008 }, + { "lat": 40.8525520, "lon": -74.0022684 }, + { "lat": 40.8525576, "lon": -74.0022464 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 632223296, + "bounds": { + "minlat": 40.8525576, + "minlon": -74.0022464, + "maxlat": 40.8527499, + "maxlon": -74.0020597 + }, + "nodes": [ + 5969495181, + 5969497998, + 5969497997, + 5969497988 + ], + "geometry": [ + { "lat": 40.8525576, "lon": -74.0022464 }, + { "lat": 40.8526186, "lon": -74.0021872 }, + { "lat": 40.8527180, "lon": -74.0020907 }, + { "lat": 40.8527499, "lon": -74.0020597 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 632223297, + "bounds": { + "minlat": 40.8525831, + "minlon": -74.0020597, + "maxlat": 40.8527499, + "maxlon": -74.0017731 + }, + "nodes": [ + 5969497988, + 5969497989 + ], + "geometry": [ + { "lat": 40.8527499, "lon": -74.0020597 }, + { "lat": 40.8525831, "lon": -74.0017731 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632223298, + "bounds": { + "minlat": 40.8527432, + "minlon": -74.0027374, + "maxlat": 40.8539147, + "maxlon": -74.0016296 + }, + "nodes": [ + 5969495182, + 5969497999, + 5969497996, + 5969497995, + 5969497993, + 5969497990, + 5969497991, + 5969497992, + 5969497993 + ], + "geometry": [ + { "lat": 40.8527432, "lon": -74.0027374 }, + { "lat": 40.8528712, "lon": -74.0026531 }, + { "lat": 40.8529966, "lon": -74.0025704 }, + { "lat": 40.8531215, "lon": -74.0024881 }, + { "lat": 40.8532706, "lon": -74.0023899 }, + { "lat": 40.8539147, "lon": -74.0019654 }, + { "lat": 40.8537718, "lon": -74.0016296 }, + { "lat": 40.8531845, "lon": -74.0022263 }, + { "lat": 40.8532706, "lon": -74.0023899 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 632223299, + "bounds": { + "minlat": 40.8530980, + "minlon": -74.0022263, + "maxlat": 40.8531845, + "maxlon": -74.0021090 + }, + "nodes": [ + 103142421, + 5969497992 + ], + "geometry": [ + { "lat": 40.8530980, "lon": -74.0021090 }, + { "lat": 40.8531845, "lon": -74.0022263 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 632223300, + "bounds": { + "minlat": 40.8527499, + "minlon": -74.0024881, + "maxlat": 40.8531215, + "maxlon": -74.0019898 + }, + "nodes": [ + 5969497988, + 5969497994, + 5969497995 + ], + "geometry": [ + { "lat": 40.8527499, "lon": -74.0020597 }, + { "lat": 40.8528224, "lon": -74.0019898 }, + { "lat": 40.8531215, "lon": -74.0024881 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 632223301, + "bounds": { + "minlat": 40.8527180, + "minlon": -74.0025704, + "maxlat": 40.8529966, + "maxlon": -74.0020907 + }, + "nodes": [ + 5969497996, + 5969497997 + ], + "geometry": [ + { "lat": 40.8529966, "lon": -74.0025704 }, + { "lat": 40.8527180, "lon": -74.0020907 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 632223302, + "bounds": { + "minlat": 40.8526186, + "minlon": -74.0026531, + "maxlat": 40.8528712, + "maxlon": -74.0021872 + }, + "nodes": [ + 5969497998, + 5969497999 + ], + "geometry": [ + { "lat": 40.8526186, "lon": -74.0021872 }, + { "lat": 40.8528712, "lon": -74.0026531 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 632314492, + "bounds": { + "minlat": 40.8469711, + "minlon": -74.0006732, + "maxlat": 40.8476244, + "maxlon": -73.9991579 + }, + "nodes": [ + 5970473390, + 5970473391, + 5970473392, + 5970473393, + 5970473394, + 5970473395, + 5970473396, + 5970473397, + 5970473398 + ], + "geometry": [ + { "lat": 40.8476244, "lon": -74.0006732 }, + { "lat": 40.8475756, "lon": -74.0005650 }, + { "lat": 40.8469823, "lon": -73.9995329 }, + { "lat": 40.8469744, "lon": -73.9995111 }, + { "lat": 40.8469711, "lon": -73.9994849 }, + { "lat": 40.8469763, "lon": -73.9994561 }, + { "lat": 40.8469869, "lon": -73.9994308 }, + { "lat": 40.8470001, "lon": -73.9994143 }, + { "lat": 40.8472688, "lon": -73.9991579 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 632314493, + "bounds": { + "minlat": 40.8469836, + "minlon": -73.9992492, + "maxlat": 40.8471023, + "maxlon": -73.9989159 + }, + "nodes": [ + 5970473399, + 5970473400, + 5970473402, + 5970473405, + 5970473401 + ], + "geometry": [ + { "lat": 40.8471023, "lon": -73.9992492 }, + { "lat": 40.8469957, "lon": -73.9990464 }, + { "lat": 40.8469942, "lon": -73.9990302 }, + { "lat": 40.8469914, "lon": -73.9989999 }, + { "lat": 40.8469836, "lon": -73.9989159 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314494, + "bounds": { + "minlat": 40.8468528, + "minlon": -73.9993614, + "maxlat": 40.8469942, + "maxlon": -73.9990302 + }, + "nodes": [ + 5970473402, + 5970473403, + 5970473404 + ], + "geometry": [ + { "lat": 40.8469942, "lon": -73.9990302 }, + { "lat": 40.8468528, "lon": -73.9991656 }, + { "lat": 40.8469680, "lon": -73.9993614 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314495, + "bounds": { + "minlat": 40.8469914, + "minlon": -73.9989999, + "maxlat": 40.8471131, + "maxlon": -73.9988855 + }, + "nodes": [ + 5970473405, + 5970473406 + ], + "geometry": [ + { "lat": 40.8469914, "lon": -73.9989999 }, + { "lat": 40.8471131, "lon": -73.9988855 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 632314587, + "bounds": { + "minlat": 40.8443484, + "minlon": -74.0010956, + "maxlat": 40.8445692, + "maxlon": -74.0008553 + }, + "nodes": [ + 5970473904, + 5970473905 + ], + "geometry": [ + { "lat": 40.8443484, "lon": -74.0010956 }, + { "lat": 40.8445692, "lon": -74.0008553 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314588, + "bounds": { + "minlat": 40.8442549, + "minlon": -73.9999826, + "maxlat": 40.8444436, + "maxlon": -73.9997923 + }, + "nodes": [ + 5970473906, + 5970473907 + ], + "geometry": [ + { "lat": 40.8444436, "lon": -73.9997923 }, + { "lat": 40.8442549, "lon": -73.9999826 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314589, + "bounds": { + "minlat": 40.8444790, + "minlon": -73.9998538, + "maxlat": 40.8447315, + "maxlon": -73.9996170 + }, + "nodes": [ + 5970473908, + 5970473909 + ], + "geometry": [ + { "lat": 40.8444790, "lon": -73.9998538 }, + { "lat": 40.8447315, "lon": -73.9996170 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314590, + "bounds": { + "minlat": 40.8450696, + "minlon": -73.9993930, + "maxlat": 40.8452022, + "maxlon": -73.9992717 + }, + "nodes": [ + 5970473910, + 5970473911 + ], + "geometry": [ + { "lat": 40.8452022, "lon": -73.9992717 }, + { "lat": 40.8450696, "lon": -73.9993930 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314591, + "bounds": { + "minlat": 40.8448038, + "minlon": -73.9993586, + "maxlat": 40.8450584, + "maxlon": -73.9990385 + }, + "nodes": [ + 5970473912, + 5970473913, + 5970473914, + 5970473915, + 5970473916, + 5970473917 + ], + "geometry": [ + { "lat": 40.8450584, "lon": -73.9990385 }, + { "lat": 40.8448431, "lon": -73.9992426 }, + { "lat": 40.8448239, "lon": -73.9992752 }, + { "lat": 40.8448084, "lon": -73.9993102 }, + { "lat": 40.8448038, "lon": -73.9993416 }, + { "lat": 40.8448038, "lon": -73.9993586 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 632314592, + "bounds": { + "minlat": 40.8456236, + "minlon": -73.9991080, + "maxlat": 40.8461860, + "maxlon": -73.9985465 + }, + "nodes": [ + 103138711, + 5970473920, + 5970473918, + 5970473919 + ], + "geometry": [ + { "lat": 40.8461860, "lon": -73.9991080 }, + { "lat": 40.8458948, "lon": -73.9985628 }, + { "lat": 40.8458861, "lon": -73.9985465 }, + { "lat": 40.8456236, "lon": -73.9988037 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 632314593, + "bounds": { + "minlat": 40.8458948, + "minlon": -73.9986508, + "maxlat": 40.8462357, + "maxlon": -73.9983901 + }, + "nodes": [ + 5970473920, + 5970473921, + 5970473922 + ], + "geometry": [ + { "lat": 40.8458948, "lon": -73.9985628 }, + { "lat": 40.8460725, "lon": -73.9983901 }, + { "lat": 40.8462357, "lon": -73.9986508 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 632314594, + "bounds": { + "minlat": 40.8472464, + "minlon": -73.9991187, + "maxlat": 40.8475531, + "maxlon": -73.9988037 + }, + "nodes": [ + 5970473923, + 5970473924 + ], + "geometry": [ + { "lat": 40.8472464, "lon": -73.9991187 }, + { "lat": 40.8475531, "lon": -73.9988037 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 632314596, + "bounds": { + "minlat": 40.8471911, + "minlon": -73.9990219, + "maxlat": 40.8474392, + "maxlon": -73.9987315 + }, + "nodes": [ + 5970473925, + 5970473926, + 5970473927 + ], + "geometry": [ + { "lat": 40.8471911, "lon": -73.9990219 }, + { "lat": 40.8473625, "lon": -73.9988319 }, + { "lat": 40.8474392, "lon": -73.9987315 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314613, + "bounds": { + "minlat": 40.8446310, + "minlon": -74.0007276, + "maxlat": 40.8448566, + "maxlon": -74.0005096 + }, + "nodes": [ + 5970473991, + 5970473992 + ], + "geometry": [ + { "lat": 40.8448566, "lon": -74.0005096 }, + { "lat": 40.8446310, "lon": -74.0007276 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314638, + "bounds": { + "minlat": 40.8454748, + "minlon": -74.0036533, + "maxlat": 40.8457520, + "maxlon": -74.0035403 + }, + "nodes": [ + 5970474099, + 5970474100, + 5970474101, + 5970474102 + ], + "geometry": [ + { "lat": 40.8457520, "lon": -74.0035403 }, + { "lat": 40.8456364, "lon": -74.0036124 }, + { "lat": 40.8456008, "lon": -74.0035481 }, + { "lat": 40.8454748, "lon": -74.0036533 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314642, + "bounds": { + "minlat": 40.8438474, + "minlon": -74.0013114, + "maxlat": 40.8440126, + "maxlon": -74.0007979 + }, + "nodes": [ + 5970474117, + 5970474118, + 5970474119 + ], + "geometry": [ + { "lat": 40.8438474, "lon": -74.0007979 }, + { "lat": 40.8440126, "lon": -74.0011949 }, + { "lat": 40.8438902, "lon": -74.0013114 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 632314647, + "bounds": { + "minlat": 40.8454455, + "minlon": -74.0003101, + "maxlat": 40.8456728, + "maxlon": -74.0001163 + }, + "nodes": [ + 5970474136, + 5970474137, + 5970474138 + ], + "geometry": [ + { "lat": 40.8456728, "lon": -74.0001163 }, + { "lat": 40.8454736, "lon": -74.0003101 }, + { "lat": 40.8454455, "lon": -74.0002544 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314648, + "bounds": { + "minlat": 40.8449055, + "minlon": -74.0005946, + "maxlat": 40.8453379, + "maxlon": -74.0002680 + }, + "nodes": [ + 5970474139, + 5970474140, + 5970474141 + ], + "geometry": [ + { "lat": 40.8449055, "lon": -74.0005946 }, + { "lat": 40.8452489, "lon": -74.0002680 }, + { "lat": 40.8453379, "lon": -74.0004240 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314650, + "bounds": { + "minlat": 40.8470441, + "minlon": -73.9973755, + "maxlat": 40.8472794, + "maxlon": -73.9969932 + }, + "nodes": [ + 5970474149, + 5970474150 + ], + "geometry": [ + { "lat": 40.8472794, "lon": -73.9973755 }, + { "lat": 40.8470441, "lon": -73.9969932 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314658, + "bounds": { + "minlat": 40.8477077, + "minlon": -73.9959600, + "maxlat": 40.8478126, + "maxlon": -73.9957810 + }, + "nodes": [ + 5970474289, + 5970474292, + 5970474290 + ], + "geometry": [ + { "lat": 40.8477077, "lon": -73.9957810 }, + { "lat": 40.8477716, "lon": -73.9958901 }, + { "lat": 40.8478126, "lon": -73.9959600 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 632314659, + "bounds": { + "minlat": 40.8476452, + "minlon": -73.9961322, + "maxlat": 40.8478126, + "maxlon": -73.9959600 + }, + "nodes": [ + 5970474290, + 5970474291 + ], + "geometry": [ + { "lat": 40.8478126, "lon": -73.9959600 }, + { "lat": 40.8476452, "lon": -73.9961322 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314660, + "bounds": { + "minlat": 40.8477716, + "minlon": -73.9958901, + "maxlat": 40.8480241, + "maxlon": -73.9956393 + }, + "nodes": [ + 5970474292, + 5970474293 + ], + "geometry": [ + { "lat": 40.8477716, "lon": -73.9958901 }, + { "lat": 40.8480241, "lon": -73.9956393 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 632314661, + "bounds": { + "minlat": 40.8480241, + "minlon": -73.9959205, + "maxlat": 40.8481890, + "maxlon": -73.9956393 + }, + "nodes": [ + 5970474293, + 5970474294 + ], + "geometry": [ + { "lat": 40.8480241, "lon": -73.9956393 }, + { "lat": 40.8481890, "lon": -73.9959205 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314662, + "bounds": { + "minlat": 40.8482074, + "minlon": -73.9967753, + "maxlat": 40.8483987, + "maxlon": -73.9964419 + }, + "nodes": [ + 5970474295, + 5970474296 + ], + "geometry": [ + { "lat": 40.8482074, "lon": -73.9964419 }, + { "lat": 40.8483987, "lon": -73.9967753 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314664, + "bounds": { + "minlat": 40.8489274, + "minlon": -73.9966216, + "maxlat": 40.8492425, + "maxlon": -73.9962968 + }, + "nodes": [ + 5970474300, + 5970474301, + 5970474302 + ], + "geometry": [ + { "lat": 40.8492425, "lon": -73.9962968 }, + { "lat": 40.8490548, "lon": -73.9964928 }, + { "lat": 40.8489274, "lon": -73.9966216 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 632314665, + "bounds": { + "minlat": 40.8493305, + "minlon": -73.9959937, + "maxlat": 40.8494561, + "maxlon": -73.9958658 + }, + "nodes": [ + 5970474303, + 5970474318 + ], + "geometry": [ + { "lat": 40.8494561, "lon": -73.9958658 }, + { "lat": 40.8493305, "lon": -73.9959937 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 632314666, + "bounds": { + "minlat": 40.8492570, + "minlon": -73.9962752, + "maxlat": 40.8494421, + "maxlon": -73.9959937 + }, + "nodes": [ + 5970474318, + 5970474304, + 5970474305, + 5970474306, + 5970474307, + 5970474308, + 5970474309, + 5970474310, + 5970474311, + 5970474312, + 5970474313, + 5970474314, + 5970474315, + 5970474316, + 5970474317 + ], + "geometry": [ + { "lat": 40.8493305, "lon": -73.9959937 }, + { "lat": 40.8492719, "lon": -73.9960482 }, + { "lat": 40.8492607, "lon": -73.9960709 }, + { "lat": 40.8492570, "lon": -73.9960946 }, + { "lat": 40.8492652, "lon": -73.9961231 }, + { "lat": 40.8493427, "lon": -73.9962572 }, + { "lat": 40.8493601, "lon": -73.9962722 }, + { "lat": 40.8493778, "lon": -73.9962752 }, + { "lat": 40.8493965, "lon": -73.9962704 }, + { "lat": 40.8494151, "lon": -73.9962572 }, + { "lat": 40.8494319, "lon": -73.9962398 }, + { "lat": 40.8494384, "lon": -73.9962291 }, + { "lat": 40.8494416, "lon": -73.9962165 }, + { "lat": 40.8494421, "lon": -73.9962062 }, + { "lat": 40.8494362, "lon": -73.9961870 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 632314669, + "bounds": { + "minlat": 40.8493305, + "minlon": -73.9961870, + "maxlat": 40.8494362, + "maxlon": -73.9959937 + }, + "nodes": [ + 5970474317, + 5970474318 + ], + "geometry": [ + { "lat": 40.8494362, "lon": -73.9961870 }, + { "lat": 40.8493305, "lon": -73.9959937 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314672, + "bounds": { + "minlat": 40.8513534, + "minlon": -73.9953282, + "maxlat": 40.8514847, + "maxlon": -73.9950209 + }, + "nodes": [ + 5970474325, + 5970474326, + 5970474327 + ], + "geometry": [ + { "lat": 40.8514847, "lon": -73.9953282 }, + { "lat": 40.8514482, "lon": -73.9952005 }, + { "lat": 40.8513534, "lon": -73.9950209 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 632314674, + "bounds": { + "minlat": 40.8518864, + "minlon": -73.9945731, + "maxlat": 40.8522036, + "maxlon": -73.9942940 + }, + "nodes": [ + 5970474328, + 5970474329, + 5970474330 + ], + "geometry": [ + { "lat": 40.8522036, "lon": -73.9942940 }, + { "lat": 40.8520024, "lon": -73.9944785 }, + { "lat": 40.8518864, "lon": -73.9945731 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632314675, + "bounds": { + "minlat": 40.8518489, + "minlon": -73.9943586, + "maxlat": 40.8520603, + "maxlon": -73.9940504 + }, + "nodes": [ + 5970474331, + 5970474332, + 5970474333 + ], + "geometry": [ + { "lat": 40.8520603, "lon": -73.9940504 }, + { "lat": 40.8518489, "lon": -73.9942698 }, + { "lat": 40.8518951, "lon": -73.9943586 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 632314693, + "bounds": { + "minlat": 40.8457893, + "minlon": -73.9997958, + "maxlat": 40.8460490, + "maxlon": -73.9993938 + }, + "nodes": [ + 5970474367, + 5970474368, + 5970474369, + 5970474370, + 5970474371, + 5970474372 + ], + "geometry": [ + { "lat": 40.8457893, "lon": -73.9993938 }, + { "lat": 40.8458389, "lon": -73.9995188 }, + { "lat": 40.8458983, "lon": -73.9996277 }, + { "lat": 40.8459526, "lon": -73.9997269 }, + { "lat": 40.8460070, "lon": -73.9997839 }, + { "lat": 40.8460490, "lon": -73.9997958 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 632320563, + "bounds": { + "minlat": 40.8467277, + "minlon": -74.0019197, + "maxlat": 40.8470463, + "maxlon": -74.0013588 + }, + "nodes": [ + 5970519654, + 5970519655, + 5970519656, + 5970519657, + 5970519658, + 5970519659, + 5970519660, + 5970519661 + ], + "geometry": [ + { "lat": 40.8467277, "lon": -74.0019197 }, + { "lat": 40.8470133, "lon": -74.0016424 }, + { "lat": 40.8470260, "lon": -74.0016267 }, + { "lat": 40.8470387, "lon": -74.0016032 }, + { "lat": 40.8470446, "lon": -74.0015819 }, + { "lat": 40.8470463, "lon": -74.0015561 }, + { "lat": 40.8470430, "lon": -74.0015314 }, + { "lat": 40.8469522, "lon": -74.0013588 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 632518325, + "bounds": { + "minlat": 40.8375653, + "minlon": -73.9906213, + "maxlat": 40.8378521, + "maxlon": -73.9902436 + }, + "nodes": [ + 5972163095, + 5972163096, + 5972163097, + 5972163098, + 5972163099, + 5972163100, + 5972163101, + 5972163102 + ], + "geometry": [ + { "lat": 40.8375717, "lon": -73.9906213 }, + { "lat": 40.8375653, "lon": -73.9905528 }, + { "lat": 40.8375666, "lon": -73.9905079 }, + { "lat": 40.8375754, "lon": -73.9904614 }, + { "lat": 40.8375955, "lon": -73.9904115 }, + { "lat": 40.8376282, "lon": -73.9903782 }, + { "lat": 40.8377792, "lon": -73.9902768 }, + { "lat": 40.8378521, "lon": -73.9902436 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 632699641, + "bounds": { + "minlat": 40.8595475, + "minlon": -73.9728700, + "maxlat": 40.8598397, + "maxlon": -73.9723905 + }, + "nodes": [ + 12020552524, + 7377058269, + 7377058271, + 12020552520, + 12020552521, + 103208519 + ], + "geometry": [ + { "lat": 40.8595475, "lon": -73.9723905 }, + { "lat": 40.8596263, "lon": -73.9725197 }, + { "lat": 40.8597356, "lon": -73.9726992 }, + { "lat": 40.8597876, "lon": -73.9727846 }, + { "lat": 40.8598046, "lon": -73.9728124 }, + { "lat": 40.8598397, "lon": -73.9728700 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "West Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 632893437, + "bounds": { + "minlat": 40.8396240, + "minlon": -73.9880222, + "maxlat": 40.8398901, + "maxlon": -73.9876408 + }, + "nodes": [ + 5975035294, + 5975035295, + 5975035296, + 5975035297 + ], + "geometry": [ + { "lat": 40.8397361, "lon": -73.9876408 }, + { "lat": 40.8398901, "lon": -73.9879186 }, + { "lat": 40.8397874, "lon": -73.9880222 }, + { "lat": 40.8396240, "lon": -73.9877494 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 632893444, + "bounds": { + "minlat": 40.8434580, + "minlon": -73.9870568, + "maxlat": 40.8439793, + "maxlon": -73.9865574 + }, + "nodes": [ + 5975035330, + 5975035331, + 5975035332, + 5975035333, + 5975035334, + 5975035335, + 5975035336, + 5975035337 + ], + "geometry": [ + { "lat": 40.8439793, "lon": -73.9867614 }, + { "lat": 40.8439393, "lon": -73.9866390 }, + { "lat": 40.8439199, "lon": -73.9866121 }, + { "lat": 40.8438931, "lon": -73.9865574 }, + { "lat": 40.8434693, "lon": -73.9868146 }, + { "lat": 40.8434580, "lon": -73.9868612 }, + { "lat": 40.8434617, "lon": -73.9869003 }, + { "lat": 40.8435131, "lon": -73.9870568 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 632893445, + "bounds": { + "minlat": 40.8433626, + "minlon": -73.9868146, + "maxlat": 40.8438931, + "maxlon": -73.9862410 + }, + "nodes": [ + 5975035333, + 5975035338, + 5975035339, + 5975035340, + 5975035341, + 5975035342, + 5975035334 + ], + "geometry": [ + { "lat": 40.8438931, "lon": -73.9865574 }, + { "lat": 40.8437397, "lon": -73.9862751 }, + { "lat": 40.8437093, "lon": -73.9862410 }, + { "lat": 40.8436650, "lon": -73.9862421 }, + { "lat": 40.8433665, "lon": -73.9864888 }, + { "lat": 40.8433626, "lon": -73.9865519 }, + { "lat": 40.8434693, "lon": -73.9868146 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 632893446, + "bounds": { + "minlat": 40.8438931, + "minlon": -73.9865574, + "maxlat": 40.8440136, + "maxlon": -73.9864469 + }, + "nodes": [ + 5975035343, + 5975035333 + ], + "geometry": [ + { "lat": 40.8440136, "lon": -73.9864469 }, + { "lat": 40.8438931, "lon": -73.9865574 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 632893455, + "bounds": { + "minlat": 40.8439256, + "minlon": -73.9851398, + "maxlat": 40.8445634, + "maxlon": -73.9847142 + }, + "nodes": [ + 5975035485, + 5975035486, + 5975035487 + ], + "geometry": [ + { "lat": 40.8445634, "lon": -73.9850864 }, + { "lat": 40.8443569, "lon": -73.9847142 }, + { "lat": 40.8439256, "lon": -73.9851398 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 633081182, + "bounds": { + "minlat": 40.8409619, + "minlon": -73.9915578, + "maxlat": 40.8415770, + "maxlon": -73.9911522 + }, + "nodes": [ + 5976359427, + 5976359428, + 5976359429, + 5976359430, + 5976359431, + 5976359432, + 5976359433, + 5976359434, + 5976359435, + 5976359436 + ], + "geometry": [ + { "lat": 40.8415770, "lon": -73.9914723 }, + { "lat": 40.8414381, "lon": -73.9912184 }, + { "lat": 40.8414309, "lon": -73.9912089 }, + { "lat": 40.8414190, "lon": -73.9911995 }, + { "lat": 40.8414078, "lon": -73.9911974 }, + { "lat": 40.8413983, "lon": -73.9911974 }, + { "lat": 40.8413880, "lon": -73.9912005 }, + { "lat": 40.8410310, "lon": -73.9915578 }, + { "lat": 40.8409619, "lon": -73.9914306 }, + { "lat": 40.8412441, "lon": -73.9911522 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 633089621, + "bounds": { + "minlat": 40.8516741, + "minlon": -73.9956741, + "maxlat": 40.8519385, + "maxlon": -73.9951933 + }, + "nodes": [ + 5976422965, + 5976422966, + 5976422967 + ], + "geometry": [ + { "lat": 40.8516741, "lon": -73.9951933 }, + { "lat": 40.8518587, "lon": -73.9954887 }, + { "lat": 40.8519385, "lon": -73.9956741 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 633089622, + "bounds": { + "minlat": 40.8520981, + "minlon": -73.9954820, + "maxlat": 40.8526067, + "maxlon": -73.9949846 + }, + "nodes": [ + 5976422968, + 6139128051, + 5976422969 + ], + "geometry": [ + { "lat": 40.8526067, "lon": -73.9949846 }, + { "lat": 40.8522807, "lon": -73.9953035 }, + { "lat": 40.8520981, "lon": -73.9954820 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 633089623, + "bounds": { + "minlat": 40.8520751, + "minlon": -73.9953035, + "maxlat": 40.8522807, + "maxlon": -73.9949077 + }, + "nodes": [ + 6139128051, + 5976422971, + 5976422972 + ], + "geometry": [ + { "lat": 40.8522807, "lon": -73.9953035 }, + { "lat": 40.8521100, "lon": -73.9949961 }, + { "lat": 40.8520751, "lon": -73.9949077 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 633152274, + "bounds": { + "minlat": 40.8587682, + "minlon": -73.9727691, + "maxlat": 40.8589262, + "maxlon": -73.9726701 + }, + "nodes": [ + 5740630021, + 13525940672, + 5740630022 + ], + "geometry": [ + { "lat": 40.8589262, "lon": -73.9727691 }, + { "lat": 40.8588371, "lon": -73.9727133 }, + { "lat": 40.8587682, "lon": -73.9726701 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 633323730, + "bounds": { + "minlat": 40.7529767, + "minlon": -73.9168146, + "maxlat": 40.7533960, + "maxlon": -73.9167399 + }, + "nodes": [ + 5978468931, + 5978468932 + ], + "geometry": [ + { "lat": 40.7529767, "lon": -73.9168146 }, + { "lat": 40.7533960, "lon": -73.9167399 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 634099133, + "bounds": { + "minlat": 40.8309950, + "minlon": -73.9845670, + "maxlat": 40.8379471, + "maxlon": -73.9813060 + }, + "nodes": [ + 103149448, + 103149449, + 103149450, + 103149451, + 103149452, + 103149453, + 103149454, + 6964929523, + 7499149108, + 103149456, + 7499149115, + 103149459, + 7530193441, + 103149460, + 7499149114, + 103149462, + 7499148992, + 103149464, + 103149465, + 103149466, + 103149469, + 103149471, + 103149473, + 103149475, + 103149477, + 103149479, + 6964814883, + 103125408, + 103149481, + 103149482, + 103149484, + 103149487, + 103149489, + 103149491 + ], + "geometry": [ + { "lat": 40.8310121, "lon": -73.9845670 }, + { "lat": 40.8309950, "lon": -73.9844980 }, + { "lat": 40.8309990, "lon": -73.9844230 }, + { "lat": 40.8310170, "lon": -73.9843450 }, + { "lat": 40.8310490, "lon": -73.9842760 }, + { "lat": 40.8310970, "lon": -73.9842150 }, + { "lat": 40.8311360, "lon": -73.9841840 }, + { "lat": 40.8313765, "lon": -73.9840281 }, + { "lat": 40.8315327, "lon": -73.9839269 }, + { "lat": 40.8315414, "lon": -73.9839213 }, + { "lat": 40.8315784, "lon": -73.9838930 }, + { "lat": 40.8316420, "lon": -73.9838320 }, + { "lat": 40.8317258, "lon": -73.9837505 }, + { "lat": 40.8319350, "lon": -73.9835470 }, + { "lat": 40.8319597, "lon": -73.9835301 }, + { "lat": 40.8320390, "lon": -73.9834760 }, + { "lat": 40.8321044, "lon": -73.9834418 }, + { "lat": 40.8321480, "lon": -73.9834190 }, + { "lat": 40.8322920, "lon": -73.9833690 }, + { "lat": 40.8325393, "lon": -73.9833152 }, + { "lat": 40.8326828, "lon": -73.9833127 }, + { "lat": 40.8328440, "lon": -73.9832720 }, + { "lat": 40.8329770, "lon": -73.9832120 }, + { "lat": 40.8333560, "lon": -73.9829920 }, + { "lat": 40.8335360, "lon": -73.9829060 }, + { "lat": 40.8336540, "lon": -73.9828590 }, + { "lat": 40.8339312, "lon": -73.9827684 }, + { "lat": 40.8339974, "lon": -73.9827770 }, + { "lat": 40.8348900, "lon": -73.9825440 }, + { "lat": 40.8351400, "lon": -73.9824600 }, + { "lat": 40.8354482, "lon": -73.9823428 }, + { "lat": 40.8357501, "lon": -73.9822280 }, + { "lat": 40.8368750, "lon": -73.9817650 }, + { "lat": 40.8379471, "lon": -73.9813060 } + ], + "tags": { + "highway": "residential", + "name": "Edgewood Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewood", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 634144840, + "bounds": { + "minlat": 40.7623550, + "minlon": -73.9979063, + "maxlat": 40.7625266, + "maxlon": -73.9977778 + }, + "nodes": [ + 5985110734, + 10166505397, + 5985110735 + ], + "geometry": [ + { "lat": 40.7623550, "lon": -73.9979063 }, + { "lat": 40.7624115, "lon": -73.9978642 }, + { "lat": 40.7625266, "lon": -73.9977778 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 634144842, + "bounds": { + "minlat": 40.7625266, + "minlon": -73.9984520, + "maxlat": 40.7629461, + "maxlon": -73.9977530 + }, + "nodes": [ + 5985110735, + 5985110736, + 5985110737 + ], + "geometry": [ + { "lat": 40.7625266, "lon": -73.9977778 }, + { "lat": 40.7626271, "lon": -73.9977530 }, + { "lat": 40.7629461, "lon": -73.9984520 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 634469643, + "bounds": { + "minlat": 40.7928134, + "minlon": -73.9439488, + "maxlat": 40.7954494, + "maxlon": -73.9377232 + }, + "nodes": [ + 42456110, + 6216349378, + 4980851599, + 5481998068, + 7924346801, + 42443077, + 7924346648, + 2555972067, + 7924346971, + 42450066, + 7924346778, + 7811793753, + 42447192 + ], + "geometry": [ + { "lat": 40.7928134, "lon": -73.9377232 }, + { "lat": 40.7928601, "lon": -73.9378441 }, + { "lat": 40.7928746, "lon": -73.9378783 }, + { "lat": 40.7931622, "lon": -73.9385600 }, + { "lat": 40.7937653, "lon": -73.9399892 }, + { "lat": 40.7938155, "lon": -73.9401082 }, + { "lat": 40.7938668, "lon": -73.9402298 }, + { "lat": 40.7942290, "lon": -73.9410882 }, + { "lat": 40.7947041, "lon": -73.9422143 }, + { "lat": 40.7947603, "lon": -73.9423475 }, + { "lat": 40.7948305, "lon": -73.9424791 }, + { "lat": 40.7954143, "lon": -73.9438616 }, + { "lat": 40.7954494, "lon": -73.9439488 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 111th Street", + "name:ru": "Восточная 111-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449224, + "bounds": { + "minlat": 40.8116269, + "minlon": -74.0147295, + "maxlat": 40.8120735, + "maxlon": -74.0133110 + }, + "nodes": [ + 5994285411, + 5994285410, + 5994285409, + 5994285408, + 5994285407, + 5994285406 + ], + "geometry": [ + { "lat": 40.8120353, "lon": -74.0133110 }, + { "lat": 40.8116533, "lon": -74.0135957 }, + { "lat": 40.8116269, "lon": -74.0136440 }, + { "lat": 40.8116290, "lon": -74.0136856 }, + { "lat": 40.8116564, "lon": -74.0137741 }, + { "lat": 40.8120735, "lon": -74.0147295 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 635449225, + "bounds": { + "minlat": 40.8133067, + "minlon": -74.0114434, + "maxlat": 40.8137504, + "maxlon": -74.0110999 + }, + "nodes": [ + 5994285414, + 5994285412 + ], + "geometry": [ + { "lat": 40.8137504, "lon": -74.0110999 }, + { "lat": 40.8133067, "lon": -74.0114434 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449227, + "bounds": { + "minlat": 40.8131038, + "minlon": -74.0123378, + "maxlat": 40.8131677, + "maxlon": -74.0121902 + }, + "nodes": [ + 5994285417, + 3742898929 + ], + "geometry": [ + { "lat": 40.8131038, "lon": -74.0121902 }, + { "lat": 40.8131677, "lon": -74.0123378 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449228, + "bounds": { + "minlat": 40.8130754, + "minlon": -74.0119888, + "maxlat": 40.8133653, + "maxlon": -74.0113306 + }, + "nodes": [ + 5994285413, + 5994285426 + ], + "geometry": [ + { "lat": 40.8133653, "lon": -74.0119888 }, + { "lat": 40.8130754, "lon": -74.0113306 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449229, + "bounds": { + "minlat": 40.8135007, + "minlon": -74.0118845, + "maxlat": 40.8139310, + "maxlon": -74.0110999 + }, + "nodes": [ + 5994285429, + 5994285416, + 5994285415, + 5994285414 + ], + "geometry": [ + { "lat": 40.8135007, "lon": -74.0118845 }, + { "lat": 40.8139199, "lon": -74.0115586 }, + { "lat": 40.8139310, "lon": -74.0115157 }, + { "lat": 40.8137504, "lon": -74.0110999 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449230, + "bounds": { + "minlat": 40.8127425, + "minlon": -74.0122184, + "maxlat": 40.8136062, + "maxlon": -74.0112448 + }, + "nodes": [ + 5994285436, + 5994285430, + 5994285429, + 5994285412, + 5994285428, + 5994285427, + 5994285426, + 5994285425, + 5994285424, + 5994285423, + 5994285422, + 5994285421, + 5994285420, + 5994285419, + 5994285418, + 5994285417, + 5994285413, + 5994285429 + ], + "geometry": [ + { "lat": 40.8136062, "lon": -74.0120695 }, + { "lat": 40.8135514, "lon": -74.0119824 }, + { "lat": 40.8135007, "lon": -74.0118845 }, + { "lat": 40.8133067, "lon": -74.0114434 }, + { "lat": 40.8132246, "lon": -74.0112568 }, + { "lat": 40.8131921, "lon": -74.0112448 }, + { "lat": 40.8130754, "lon": -74.0113306 }, + { "lat": 40.8127648, "lon": -74.0115613 }, + { "lat": 40.8127475, "lon": -74.0116055 }, + { "lat": 40.8127425, "lon": -74.0116551 }, + { "lat": 40.8127577, "lon": -74.0117048 }, + { "lat": 40.8129708, "lon": -74.0121755 }, + { "lat": 40.8130033, "lon": -74.0122104 }, + { "lat": 40.8130388, "lon": -74.0122184 }, + { "lat": 40.8130693, "lon": -74.0122090 }, + { "lat": 40.8131038, "lon": -74.0121902 }, + { "lat": 40.8133653, "lon": -74.0119888 }, + { "lat": 40.8135007, "lon": -74.0118845 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449231, + "bounds": { + "minlat": 40.8136062, + "minlon": -74.0120695, + "maxlat": 40.8142063, + "maxlon": -74.0115840 + }, + "nodes": [ + 5994285436, + 103865038 + ], + "geometry": [ + { "lat": 40.8136062, "lon": -74.0120695 }, + { "lat": 40.8142063, "lon": -74.0115840 } + ], + "tags": { + "highway": "unclassified", + "name": "Nolan Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449232, + "bounds": { + "minlat": 40.8129490, + "minlon": -74.0126488, + "maxlat": 40.8130185, + "maxlon": -74.0125564 + }, + "nodes": [ + 103876919, + 5994285439 + ], + "geometry": [ + { "lat": 40.8129490, "lon": -74.0126488 }, + { "lat": 40.8130185, "lon": -74.0125564 } + ], + "tags": { + "highway": "unclassified", + "name": "Nolan Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449233, + "bounds": { + "minlat": 40.8130185, + "minlon": -74.0125564, + "maxlat": 40.8136062, + "maxlon": -74.0120695 + }, + "nodes": [ + 5994285436, + 5994285434, + 5994285433, + 5994285432, + 5994285431, + 5994285439 + ], + "geometry": [ + { "lat": 40.8136062, "lon": -74.0120695 }, + { "lat": 40.8135139, "lon": -74.0122090 }, + { "lat": 40.8132083, "lon": -74.0124370 }, + { "lat": 40.8131251, "lon": -74.0125094 }, + { "lat": 40.8130896, "lon": -74.0125309 }, + { "lat": 40.8130185, "lon": -74.0125564 } + ], + "tags": { + "highway": "unclassified", + "name": "Nolan Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449234, + "bounds": { + "minlat": 40.8122260, + "minlon": -74.0171134, + "maxlat": 40.8125851, + "maxlon": -74.0161217 + }, + "nodes": [ + 5994285445, + 5994285443, + 5994285449 + ], + "geometry": [ + { "lat": 40.8125851, "lon": -74.0171134 }, + { "lat": 40.8125811, "lon": -74.0169337 }, + { "lat": 40.8122260, "lon": -74.0161217 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449235, + "bounds": { + "minlat": 40.8118567, + "minlon": -74.0162044, + "maxlat": 40.8121238, + "maxlon": -74.0156688 + }, + "nodes": [ + 5813807483, + 5813807493 + ], + "geometry": [ + { "lat": 40.8118567, "lon": -74.0156688 }, + { "lat": 40.8121238, "lon": -74.0162044 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449236, + "bounds": { + "minlat": 40.8117926, + "minlon": -74.0160950, + "maxlat": 40.8122590, + "maxlon": -74.0151224 + }, + "nodes": [ + 5994285454, + 5994285453, + 5994285452 + ], + "geometry": [ + { "lat": 40.8117926, "lon": -74.0151224 }, + { "lat": 40.8118645, "lon": -74.0151796 }, + { "lat": 40.8122590, "lon": -74.0160950 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449237, + "bounds": { + "minlat": 40.8119176, + "minlon": -74.0159827, + "maxlat": 40.8124058, + "maxlon": -74.0148406 + }, + "nodes": [ + 5994285456, + 5994285455 + ], + "geometry": [ + { "lat": 40.8119176, "lon": -74.0148406 }, + { "lat": 40.8124058, "lon": -74.0159827 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449238, + "bounds": { + "minlat": 40.8120479, + "minlon": -74.0158736, + "maxlat": 40.8125484, + "maxlon": -74.0147477 + }, + "nodes": [ + 5994285458, + 5994285457 + ], + "geometry": [ + { "lat": 40.8120479, "lon": -74.0147477 }, + { "lat": 40.8125484, "lon": -74.0158736 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449239, + "bounds": { + "minlat": 40.8122120, + "minlon": -74.0157610, + "maxlat": 40.8126957, + "maxlon": -74.0146307 + }, + "nodes": [ + 5994285460, + 5994285459 + ], + "geometry": [ + { "lat": 40.8122120, "lon": -74.0146307 }, + { "lat": 40.8126957, "lon": -74.0157610 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449240, + "bounds": { + "minlat": 40.8123501, + "minlon": -74.0156498, + "maxlat": 40.8128411, + "maxlon": -74.0145323 + }, + "nodes": [ + 5994285462, + 5994285461 + ], + "geometry": [ + { "lat": 40.8123501, "lon": -74.0145323 }, + { "lat": 40.8128411, "lon": -74.0156498 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449241, + "bounds": { + "minlat": 40.8120330, + "minlon": -74.0133677, + "maxlat": 40.8121974, + "maxlon": -74.0128407 + }, + "nodes": [ + 5994285471, + 5994285470, + 5994285469, + 5994285468, + 5994285467, + 5994285466, + 5994285465, + 5994285464, + 5994285477 + ], + "geometry": [ + { "lat": 40.8121974, "lon": -74.0133677 }, + { "lat": 40.8121487, "lon": -74.0132591 }, + { "lat": 40.8121142, "lon": -74.0132081 }, + { "lat": 40.8120563, "lon": -74.0130727 }, + { "lat": 40.8120380, "lon": -74.0130110 }, + { "lat": 40.8120330, "lon": -74.0129453 }, + { "lat": 40.8120492, "lon": -74.0128863 }, + { "lat": 40.8120868, "lon": -74.0128621 }, + { "lat": 40.8121213, "lon": -74.0128407 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449243, + "bounds": { + "minlat": 40.8119274, + "minlon": -74.0127777, + "maxlat": 40.8120756, + "maxlon": -74.0123928 + }, + "nodes": [ + 5994285478, + 5994285473, + 5994285472 + ], + "geometry": [ + { "lat": 40.8120756, "lon": -74.0127777 }, + { "lat": 40.8120746, "lon": -74.0127441 }, + { "lat": 40.8119274, "lon": -74.0123928 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449244, + "bounds": { + "minlat": 40.8119061, + "minlon": -74.0132697, + "maxlat": 40.8123421, + "maxlon": -74.0127777 + }, + "nodes": [ + 5994285485, + 5994285478, + 5994285477, + 5994285463, + 5994285476, + 5994285475, + 5994285474 + ], + "geometry": [ + { "lat": 40.8119061, "lon": -74.0128259 }, + { "lat": 40.8120756, "lon": -74.0127777 }, + { "lat": 40.8121213, "lon": -74.0128407 }, + { "lat": 40.8121588, "lon": -74.0128554 }, + { "lat": 40.8121933, "lon": -74.0129010 }, + { "lat": 40.8122471, "lon": -74.0130271 }, + { "lat": 40.8123421, "lon": -74.0132697 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449245, + "bounds": { + "minlat": 40.8115992, + "minlon": -74.0131304, + "maxlat": 40.8119853, + "maxlon": -74.0125959 + }, + "nodes": [ + 5994285483, + 5994285482, + 5994285481, + 5994285480, + 5994285479 + ], + "geometry": [ + { "lat": 40.8119853, "lon": -74.0131304 }, + { "lat": 40.8119101, "lon": -74.0130767 }, + { "lat": 40.8118279, "lon": -74.0130097 }, + { "lat": 40.8117498, "lon": -74.0128984 }, + { "lat": 40.8115992, "lon": -74.0125959 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449246, + "bounds": { + "minlat": 40.8124087, + "minlon": -74.0142330, + "maxlat": 40.8134047, + "maxlon": -74.0134818 + }, + "nodes": [ + 5994285487, + 5994285486 + ], + "geometry": [ + { "lat": 40.8124087, "lon": -74.0142330 }, + { "lat": 40.8134047, "lon": -74.0134818 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449247, + "bounds": { + "minlat": 40.8123287, + "minlon": -74.0140482, + "maxlat": 40.8133205, + "maxlon": -74.0132875 + }, + "nodes": [ + 5994285489, + 5994285488 + ], + "geometry": [ + { "lat": 40.8123287, "lon": -74.0140482 }, + { "lat": 40.8133205, "lon": -74.0132875 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449248, + "bounds": { + "minlat": 40.8122424, + "minlon": -74.0138489, + "maxlat": 40.8132382, + "maxlon": -74.0130975 + }, + "nodes": [ + 5994285491, + 5994285490 + ], + "geometry": [ + { "lat": 40.8122424, "lon": -74.0138489 }, + { "lat": 40.8132382, "lon": -74.0130975 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449249, + "bounds": { + "minlat": 40.8121595, + "minlon": -74.0136575, + "maxlat": 40.8131581, + "maxlon": -74.0129125 + }, + "nodes": [ + 5994285492, + 5813807513 + ], + "geometry": [ + { "lat": 40.8121595, "lon": -74.0136575 }, + { "lat": 40.8131581, "lon": -74.0129125 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449250, + "bounds": { + "minlat": 40.8120765, + "minlon": -74.0134594, + "maxlat": 40.8141649, + "maxlon": -74.0119177 + }, + "nodes": [ + 4555440912, + 5994285471, + 5994285474, + 5994285494, + 5994285493, + 5813807507 + ], + "geometry": [ + { "lat": 40.8120765, "lon": -74.0134594 }, + { "lat": 40.8121974, "lon": -74.0133677 }, + { "lat": 40.8123421, "lon": -74.0132697 }, + { "lat": 40.8130252, "lon": -74.0127415 }, + { "lat": 40.8131150, "lon": -74.0127039 }, + { "lat": 40.8141649, "lon": -74.0119177 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449251, + "bounds": { + "minlat": 40.8124939, + "minlon": -74.0144297, + "maxlat": 40.8134871, + "maxlon": -74.0136721 + }, + "nodes": [ + 5994285496, + 103872668 + ], + "geometry": [ + { "lat": 40.8134871, "lon": -74.0136721 }, + { "lat": 40.8124939, "lon": -74.0144297 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449252, + "bounds": { + "minlat": 40.8125692, + "minlon": -74.0146095, + "maxlat": 40.8135686, + "maxlon": -74.0138604 + }, + "nodes": [ + 5994285498, + 5994285497 + ], + "geometry": [ + { "lat": 40.8125692, "lon": -74.0146095 }, + { "lat": 40.8135686, "lon": -74.0138604 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449253, + "bounds": { + "minlat": 40.8126496, + "minlon": -74.0148014, + "maxlat": 40.8136492, + "maxlon": -74.0140463 + }, + "nodes": [ + 5994285500, + 5994285499 + ], + "geometry": [ + { "lat": 40.8126496, "lon": -74.0148014 }, + { "lat": 40.8136492, "lon": -74.0140463 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449254, + "bounds": { + "minlat": 40.8127374, + "minlon": -74.0150109, + "maxlat": 40.8137341, + "maxlon": -74.0142424 + }, + "nodes": [ + 5994285502, + 5994285501 + ], + "geometry": [ + { "lat": 40.8127374, "lon": -74.0150109 }, + { "lat": 40.8137341, "lon": -74.0142424 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449255, + "bounds": { + "minlat": 40.8128163, + "minlon": -74.0151991, + "maxlat": 40.8138145, + "maxlon": -74.0144280 + }, + "nodes": [ + 5994285504, + 5994285503 + ], + "geometry": [ + { "lat": 40.8128163, "lon": -74.0151991 }, + { "lat": 40.8138145, "lon": -74.0144280 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449256, + "bounds": { + "minlat": 40.8128963, + "minlon": -74.0153901, + "maxlat": 40.8138968, + "maxlon": -74.0146180 + }, + "nodes": [ + 5994285506, + 5994285505 + ], + "geometry": [ + { "lat": 40.8128963, "lon": -74.0153901 }, + { "lat": 40.8138968, "lon": -74.0146180 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449257, + "bounds": { + "minlat": 40.8124939, + "minlon": -74.0155548, + "maxlat": 40.8129652, + "maxlon": -74.0144297 + }, + "nodes": [ + 5994285507, + 5994285506, + 5994285504, + 5994285502, + 5994285500, + 5994285498, + 103872668 + ], + "geometry": [ + { "lat": 40.8129652, "lon": -74.0155548 }, + { "lat": 40.8128963, "lon": -74.0153901 }, + { "lat": 40.8128163, "lon": -74.0151991 }, + { "lat": 40.8127374, "lon": -74.0150109 }, + { "lat": 40.8126496, "lon": -74.0148014 }, + { "lat": 40.8125692, "lon": -74.0146095 }, + { "lat": 40.8124939, "lon": -74.0144297 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449261, + "bounds": { + "minlat": 40.8141360, + "minlon": -74.0151703, + "maxlat": 40.8152485, + "maxlon": -74.0143186 + }, + "nodes": [ + 5994285514, + 9909759202, + 5994285516 + ], + "geometry": [ + { "lat": 40.8141360, "lon": -74.0151703 }, + { "lat": 40.8145562, "lon": -74.0148487 }, + { "lat": 40.8152485, "lon": -74.0143186 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449262, + "bounds": { + "minlat": 40.8152302, + "minlon": -74.0149032, + "maxlat": 40.8155103, + "maxlon": -74.0142730 + }, + "nodes": [ + 5994285511, + 5994285516, + 5994285513, + 5994285509, + 5994285512 + ], + "geometry": [ + { "lat": 40.8152302, "lon": -74.0142730 }, + { "lat": 40.8152485, "lon": -74.0143186 }, + { "lat": 40.8153378, "lon": -74.0145144 }, + { "lat": 40.8154296, "lon": -74.0147212 }, + { "lat": 40.8155103, "lon": -74.0149032 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 635449263, + "bounds": { + "minlat": 40.8149707, + "minlon": -74.0142730, + "maxlat": 40.8152302, + "maxlon": -74.0136956 + }, + "nodes": [ + 5994285511, + 5994285515, + 5813807499 + ], + "geometry": [ + { "lat": 40.8152302, "lon": -74.0142730 }, + { "lat": 40.8151328, "lon": -74.0140423 }, + { "lat": 40.8149707, "lon": -74.0136956 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 635621587, + "bounds": { + "minlat": 40.7611248, + "minlon": -73.9723255, + "maxlat": 40.7616048, + "maxlon": -73.9715070 + }, + "nodes": [ + 4586552081, + 2710091476, + 5995346752, + 2671114107, + 5995346749, + 2671114110, + 5995346753, + 2952459050, + 2952459046, + 2952459044, + 2952459042, + 2671114113, + 11299075978, + 5995346751, + 8914958309, + 5995346750, + 11299075975, + 4586552080, + 4586552081 + ], + "geometry": [ + { "lat": 40.7613521, "lon": -73.9715070 }, + { "lat": 40.7613943, "lon": -73.9716087 }, + { "lat": 40.7614554, "lon": -73.9717654 }, + { "lat": 40.7614425, "lon": -73.9717747 }, + { "lat": 40.7615042, "lon": -73.9719248 }, + { "lat": 40.7615654, "lon": -73.9720736 }, + { "lat": 40.7616048, "lon": -73.9721709 }, + { "lat": 40.7615747, "lon": -73.9721929 }, + { "lat": 40.7615363, "lon": -73.9722207 }, + { "lat": 40.7615032, "lon": -73.9722441 }, + { "lat": 40.7614835, "lon": -73.9722583 }, + { "lat": 40.7614638, "lon": -73.9722726 }, + { "lat": 40.7614534, "lon": -73.9722808 }, + { "lat": 40.7613963, "lon": -73.9723255 }, + { "lat": 40.7612490, "lon": -73.9719719 }, + { "lat": 40.7611248, "lon": -73.9716737 }, + { "lat": 40.7611809, "lon": -73.9716312 }, + { "lat": 40.7611908, "lon": -73.9716237 }, + { "lat": 40.7613521, "lon": -73.9715070 } + ], + "tags": { + "access": "yes", + "area": "yes", + "bicycle": "no", + "foot": "yes", + "highway": "pedestrian", + "horse": "no", + "lit": "yes", + "motor_vehicle": "no", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 637117721, + "bounds": { + "minlat": 40.7478813, + "minlon": -73.9875692, + "maxlat": 40.7479942, + "maxlon": -73.9874817 + }, + "nodes": [ + 6223969256, + 10173045247, + 6223969262 + ], + "geometry": [ + { "lat": 40.7478813, "lon": -73.9875692 }, + { "lat": 40.7479455, "lon": -73.9875199 }, + { "lat": 40.7479942, "lon": -73.9874817 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 638873012, + "bounds": { + "minlat": 40.7944981, + "minlon": -74.0008691, + "maxlat": 40.7946406, + "maxlon": -74.0007705 + }, + "nodes": [ + 6020713003, + 7468583883, + 6020713004 + ], + "geometry": [ + { "lat": 40.7946406, "lon": -74.0007705 }, + { "lat": 40.7945988, "lon": -74.0007995 }, + { "lat": 40.7944981, "lon": -74.0008691 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 639007367, + "bounds": { + "minlat": 40.7937650, + "minlon": -74.0145115, + "maxlat": 40.7941579, + "maxlon": -74.0136390 + }, + "nodes": [ + 103869027, + 7594316614, + 7674807367, + 103884176 + ], + "geometry": [ + { "lat": 40.7937650, "lon": -74.0136390 }, + { "lat": 40.7937992, "lon": -74.0137151 }, + { "lat": 40.7941332, "lon": -74.0144567 }, + { "lat": 40.7941579, "lon": -74.0145115 } + ], + "tags": { + "highway": "residential", + "name": "66th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "66th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 639007369, + "bounds": { + "minlat": 40.7934768, + "minlon": -74.0138590, + "maxlat": 40.7937650, + "maxlon": -74.0136390 + }, + "nodes": [ + 6021713789, + 103869027 + ], + "geometry": [ + { "lat": 40.7934768, "lon": -74.0138590 }, + { "lat": 40.7937650, "lon": -74.0136390 } + ], + "tags": { + "highway": "residential", + "name": "Madison Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Madison", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 639118784, + "bounds": { + "minlat": 40.7076213, + "minlon": -73.9217966, + "maxlat": 40.7118380, + "maxlon": -73.9174890 + }, + "nodes": [ + 42809924, + 9744131364, + 42923028, + 9747567481, + 9744131341, + 42827568, + 9744131342, + 7882516199, + 42923023, + 13701032954, + 10699568261, + 9744131321, + 42907440, + 9744131322, + 9588743652, + 9744131273, + 42474000 + ], + "geometry": [ + { "lat": 40.7118380, "lon": -73.9174890 }, + { "lat": 40.7117881, "lon": -73.9175399 }, + { "lat": 40.7114030, "lon": -73.9179330 }, + { "lat": 40.7108229, "lon": -73.9185252 }, + { "lat": 40.7107838, "lon": -73.9185641 }, + { "lat": 40.7107270, "lon": -73.9186230 }, + { "lat": 40.7106720, "lon": -73.9186790 }, + { "lat": 40.7103149, "lon": -73.9190428 }, + { "lat": 40.7098210, "lon": -73.9195460 }, + { "lat": 40.7091961, "lon": -73.9201855 }, + { "lat": 40.7089515, "lon": -73.9204359 }, + { "lat": 40.7087455, "lon": -73.9206467 }, + { "lat": 40.7086932, "lon": -73.9207003 }, + { "lat": 40.7086347, "lon": -73.9207601 }, + { "lat": 40.7077867, "lon": -73.9216274 }, + { "lat": 40.7076779, "lon": -73.9217387 }, + { "lat": 40.7076213, "lon": -73.9217966 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Troutman Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 639118785, + "bounds": { + "minlat": 40.7028126, + "minlon": -73.9253929, + "maxlat": 40.7114020, + "maxlon": -73.9167480 + }, + "nodes": [ + 42516312, + 9704024943, + 10287737737, + 9704024931, + 42511913, + 9704024936, + 9744131209, + 42512097, + 9744131208, + 7153297690, + 9744131253, + 42516314, + 9744131252, + 7153297692, + 9744131257, + 42898825, + 9744131256, + 9744131311, + 42898828, + 9744131310, + 7882516196, + 9924772035, + 9744109085, + 42827574, + 9744109086, + 9744131359, + 42809927 + ], + "geometry": [ + { "lat": 40.7028126, "lon": -73.9253929 }, + { "lat": 40.7028690, "lon": -73.9253374 }, + { "lat": 40.7043143, "lon": -73.9239185 }, + { "lat": 40.7043385, "lon": -73.9238921 }, + { "lat": 40.7043996, "lon": -73.9238320 }, + { "lat": 40.7044516, "lon": -73.9237809 }, + { "lat": 40.7060674, "lon": -73.9221920 }, + { "lat": 40.7061240, "lon": -73.9221360 }, + { "lat": 40.7061746, "lon": -73.9220831 }, + { "lat": 40.7069074, "lon": -73.9213217 }, + { "lat": 40.7071238, "lon": -73.9211122 }, + { "lat": 40.7071826, "lon": -73.9210554 }, + { "lat": 40.7072396, "lon": -73.9209960 }, + { "lat": 40.7074823, "lon": -73.9207430 }, + { "lat": 40.7081992, "lon": -73.9200080 }, + { "lat": 40.7082516, "lon": -73.9199543 }, + { "lat": 40.7083095, "lon": -73.9198957 }, + { "lat": 40.7093299, "lon": -73.9188627 }, + { "lat": 40.7093820, "lon": -73.9188100 }, + { "lat": 40.7094378, "lon": -73.9187529 }, + { "lat": 40.7098920, "lon": -73.9182893 }, + { "lat": 40.7102025, "lon": -73.9179724 }, + { "lat": 40.7102343, "lon": -73.9179399 }, + { "lat": 40.7102900, "lon": -73.9178830 }, + { "lat": 40.7103479, "lon": -73.9178239 }, + { "lat": 40.7113559, "lon": -73.9167950 }, + { "lat": 40.7114020, "lon": -73.9167480 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Starr Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 639389776, + "bounds": { + "minlat": 40.7226572, + "minlon": -73.9525082, + "maxlat": 40.7303694, + "maxlon": -73.9481468 + }, + "nodes": [ + 42509209, + 8589641118, + 9789356761, + 42479286, + 9789356763, + 9765409772, + 42523216, + 9765409770, + 8443603342, + 9765409735, + 42516610, + 8097222225, + 5801598840, + 8097189314, + 7725544401, + 8097222274, + 5891904331, + 9353889972, + 42514447 + ], + "geometry": [ + { "lat": 40.7226572, "lon": -73.9481468 }, + { "lat": 40.7227282, "lon": -73.9481697 }, + { "lat": 40.7242765, "lon": -73.9490492 }, + { "lat": 40.7243360, "lon": -73.9490830 }, + { "lat": 40.7244077, "lon": -73.9491239 }, + { "lat": 40.7259373, "lon": -73.9499939 }, + { "lat": 40.7259990, "lon": -73.9500290 }, + { "lat": 40.7260755, "lon": -73.9500726 }, + { "lat": 40.7275696, "lon": -73.9509242 }, + { "lat": 40.7276067, "lon": -73.9509454 }, + { "lat": 40.7276640, "lon": -73.9509780 }, + { "lat": 40.7277323, "lon": -73.9510154 }, + { "lat": 40.7286045, "lon": -73.9515172 }, + { "lat": 40.7286443, "lon": -73.9515408 }, + { "lat": 40.7286975, "lon": -73.9515716 }, + { "lat": 40.7287609, "lon": -73.9516090 }, + { "lat": 40.7302557, "lon": -73.9524494 }, + { "lat": 40.7303035, "lon": -73.9524751 }, + { "lat": 40.7303694, "lon": -73.9525082 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Eckford Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 639763613, + "bounds": { + "minlat": 40.6998380, + "minlon": -73.9778269, + "maxlat": 40.7013413, + "maxlon": -73.9762091 + }, + "nodes": [ + 42517622, + 9998755694, + 9998755695, + 42475998, + 9998755698, + 10716574986, + 9998755676, + 42488906 + ], + "geometry": [ + { "lat": 40.6998380, "lon": -73.9762091 }, + { "lat": 40.6999081, "lon": -73.9762777 }, + { "lat": 40.7005627, "lon": -73.9769759 }, + { "lat": 40.7006129, "lon": -73.9770321 }, + { "lat": 40.7006502, "lon": -73.9770819 }, + { "lat": 40.7006512, "lon": -73.9770829 }, + { "lat": 40.7012991, "lon": -73.9777789 }, + { "lat": 40.7013413, "lon": -73.9778269 } + ], + "tags": { + "access": "private", + "bus": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "highway": "service", + "name": "Morris Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 639763614, + "bounds": { + "minlat": 40.7013413, + "minlon": -73.9799032, + "maxlat": 40.7017566, + "maxlon": -73.9778269 + }, + "nodes": [ + 42488906, + 9998755677, + 9998755678, + 9998755679, + 3659082375, + 10716574965, + 2406352159 + ], + "geometry": [ + { "lat": 40.7013413, "lon": -73.9778269 }, + { "lat": 40.7014135, "lon": -73.9779131 }, + { "lat": 40.7014204, "lon": -73.9779272 }, + { "lat": 40.7014272, "lon": -73.9779451 }, + { "lat": 40.7014308, "lon": -73.9779648 }, + { "lat": 40.7017193, "lon": -73.9796815 }, + { "lat": 40.7017566, "lon": -73.9799032 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Morris Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 640040883, + "bounds": { + "minlat": 40.7905500, + "minlon": -73.9523749, + "maxlat": 40.7906201, + "maxlon": -73.9523219 + }, + "nodes": [ + 6029892037, + 7092397361, + 6029892036 + ], + "geometry": [ + { "lat": 40.7906201, "lon": -73.9523219 }, + { "lat": 40.7905671, "lon": -73.9523610 }, + { "lat": 40.7905500, "lon": -73.9523749 } + ], + "tags": { + "access": "no", + "emergency": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 641191097, + "bounds": { + "minlat": 40.8520140, + "minlon": -74.0186714, + "maxlat": 40.8560589, + "maxlon": -74.0172163 + }, + "nodes": [ + 103212073, + 103212072, + 103212071, + 5508080950, + 5508080952, + 103191717, + 5508080954, + 103211087, + 103211073, + 103212069 + ], + "geometry": [ + { "lat": 40.8560589, "lon": -74.0172163 }, + { "lat": 40.8552229, "lon": -74.0175372 }, + { "lat": 40.8548376, "lon": -74.0176740 }, + { "lat": 40.8544182, "lon": -74.0178212 }, + { "lat": 40.8540356, "lon": -74.0179554 }, + { "lat": 40.8536153, "lon": -74.0181029 }, + { "lat": 40.8531952, "lon": -74.0182451 }, + { "lat": 40.8525676, "lon": -74.0184576 }, + { "lat": 40.8523720, "lon": -74.0185404 }, + { "lat": 40.8520140, "lon": -74.0186714 } + ], + "tags": { + "highway": "residential", + "name": "Overpeck Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Overpeck", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 641191098, + "bounds": { + "minlat": 40.8560589, + "minlon": -74.0184009, + "maxlat": 40.8563369, + "maxlon": -74.0172163 + }, + "nodes": [ + 103212073, + 4048796094, + 103214361 + ], + "geometry": [ + { "lat": 40.8560589, "lon": -74.0172163 }, + { "lat": 40.8563137, "lon": -74.0183058 }, + { "lat": 40.8563369, "lon": -74.0184009 } + ], + "tags": { + "highway": "residential", + "name": "Park Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 641255648, + "bounds": { + "minlat": 40.7127540, + "minlon": -73.9348086, + "maxlat": 40.7133883, + "maxlon": -73.9345340 + }, + "nodes": [ + 42490334, + 9947391770, + 42490339 + ], + "geometry": [ + { "lat": 40.7127540, "lon": -73.9345340 }, + { "lat": 40.7132876, "lon": -73.9347650 }, + { "lat": 40.7133883, "lon": -73.9348086 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "residential", + "name": "Morgan Avenue", + "oneway": "no", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 641405602, + "bounds": { + "minlat": 40.7019743, + "minlon": -73.9454473, + "maxlat": 40.7027701, + "maxlon": -73.9440256 + }, + "nodes": [ + 42505442, + 13685892613, + 9955161613, + 42505446, + 13685766103, + 9955161612, + 42505449, + 42505452 + ], + "geometry": [ + { "lat": 40.7027701, "lon": -73.9454473 }, + { "lat": 40.7025567, "lon": -73.9450661 }, + { "lat": 40.7023583, "lon": -73.9447116 }, + { "lat": 40.7023160, "lon": -73.9446361 }, + { "lat": 40.7022887, "lon": -73.9445872 }, + { "lat": 40.7022701, "lon": -73.9445540 }, + { "lat": 40.7021658, "lon": -73.9443677 }, + { "lat": 40.7019743, "lon": -73.9440256 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 641405603, + "bounds": { + "minlat": 40.7022200, + "minlon": -73.9462760, + "maxlat": 40.7027701, + "maxlon": -73.9454473 + }, + "nodes": [ + 42499143, + 9755373156, + 42505442 + ], + "geometry": [ + { "lat": 40.7022200, "lon": -73.9462760 }, + { "lat": 40.7022688, "lon": -73.9462025 }, + { "lat": 40.7027701, "lon": -73.9454473 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Gerry Street", + "name:etymology:wikidata": "Q219797", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Gerry", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 641405604, + "bounds": { + "minlat": 40.7022200, + "minlon": -73.9488091, + "maxlat": 40.7044708, + "maxlon": -73.9462760 + }, + "nodes": [ + 42499143, + 9755373155, + 9755373130, + 42492006, + 9755373131, + 9755373136, + 42475331, + 9755373137, + 9755373255, + 42499136, + 9755373256, + 598033003, + 9755373310, + 42499132 + ], + "geometry": [ + { "lat": 40.7022200, "lon": -73.9462760 }, + { "lat": 40.7022822, "lon": -73.9463456 }, + { "lat": 40.7027344, "lon": -73.9468515 }, + { "lat": 40.7027840, "lon": -73.9469070 }, + { "lat": 40.7028442, "lon": -73.9469741 }, + { "lat": 40.7033052, "lon": -73.9474875 }, + { "lat": 40.7033510, "lon": -73.9475390 }, + { "lat": 40.7034117, "lon": -73.9476081 }, + { "lat": 40.7038580, "lon": -73.9481166 }, + { "lat": 40.7039148, "lon": -73.9481813 }, + { "lat": 40.7039745, "lon": -73.9482476 }, + { "lat": 40.7043097, "lon": -73.9486201 }, + { "lat": 40.7044216, "lon": -73.9487513 }, + { "lat": 40.7044708, "lon": -73.9488091 } + ], + "tags": { + "highway": "residential", + "name": "Throop Avenue", + "name:etymology:wikidata": "Q881026", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 641914938, + "bounds": { + "minlat": 40.7400362, + "minlon": -73.9772893, + "maxlat": 40.7404701, + "maxlon": -73.9762474 + }, + "nodes": [ + 42446293, + 8119192794, + 4298961523, + 4298961521, + 42446291 + ], + "geometry": [ + { "lat": 40.7400362, "lon": -73.9762474 }, + { "lat": 40.7400929, "lon": -73.9763837 }, + { "lat": 40.7404061, "lon": -73.9771357 }, + { "lat": 40.7404308, "lon": -73.9771949 }, + { "lat": 40.7404701, "lon": -73.9772893 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 28th Street", + "name:ru": "Восточная 28-я стрит", + "name_1": "East 28 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 643000848, + "bounds": { + "minlat": 40.7163698, + "minlon": -74.0129331, + "maxlat": 40.7164234, + "maxlon": -74.0127968 + }, + "nodes": [ + 42449613, + 4143812552 + ], + "geometry": [ + { "lat": 40.7164234, "lon": -74.0129331 }, + { "lat": 40.7163698, "lon": -74.0127968 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Warren Street", + "name:etymology:wikidata": "Q3376953", + "name:ko": "워렌 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 643000849, + "bounds": { + "minlat": 40.7156024, + "minlon": -74.0111062, + "maxlat": 40.7160190, + "maxlon": -74.0109978 + }, + "nodes": [ + 12350633628, + 8304497546, + 5812723033 + ], + "geometry": [ + { "lat": 40.7160190, "lon": -74.0109978 }, + { "lat": 40.7156800, "lon": -74.0110871 }, + { "lat": 40.7156024, "lon": -74.0111062 } + ], + "tags": { + "construction": "minor", + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-16:00)", + "parking:right": "street_side", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-16:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 643444515, + "bounds": { + "minlat": 40.7387436, + "minlon": -74.0034031, + "maxlat": 40.7387707, + "maxlon": -74.0024001 + }, + "nodes": [ + 42431497, + 5849926992, + 1825740014, + 42429378 + ], + "geometry": [ + { "lat": 40.7387661, "lon": -74.0034031 }, + { "lat": 40.7387707, "lon": -74.0032748 }, + { "lat": 40.7387702, "lon": -74.0025336 }, + { "lat": 40.7387436, "lon": -74.0024001 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Horatio Street", + "name:etymology:wikidata": "Q365124", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 645153316, + "bounds": { + "minlat": 40.8279692, + "minlon": -74.0026075, + "maxlat": 40.8298513, + "maxlon": -73.9991812 + }, + "nodes": [ + 103184987, + 103202123, + 103202125, + 8430076122 + ], + "geometry": [ + { "lat": 40.8279692, "lon": -73.9991812 }, + { "lat": 40.8287198, "lon": -74.0005034 }, + { "lat": 40.8294366, "lon": -74.0018623 }, + { "lat": 40.8298513, "lon": -74.0026075 } + ], + "tags": { + "highway": "residential", + "name": "Day Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Day", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 645175271, + "bounds": { + "minlat": 40.8278024, + "minlon": -74.0055060, + "maxlat": 40.8283655, + "maxlon": -74.0044927 + }, + "nodes": [ + 6065489322, + 103139550 + ], + "geometry": [ + { "lat": 40.8278024, "lon": -74.0044927 }, + { "lat": 40.8283655, "lon": -74.0055060 } + ], + "tags": { + "highway": "residential", + "name": "Lancaster Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lancaster", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 645706716, + "bounds": { + "minlat": 40.7189729, + "minlon": -73.9452666, + "maxlat": 40.7192930, + "maxlon": -73.9448495 + }, + "nodes": [ + 6069012689, + 9703355387, + 6069012690, + 6069012696, + 6069012691, + 6069012692, + 6069012693, + 6069012694, + 6069012695, + 6069012689 + ], + "geometry": [ + { "lat": 40.7192242, "lon": -73.9452666 }, + { "lat": 40.7192296, "lon": -73.9452480 }, + { "lat": 40.7192649, "lon": -73.9451258 }, + { "lat": 40.7192930, "lon": -73.9450038 }, + { "lat": 40.7190911, "lon": -73.9448495 }, + { "lat": 40.7189782, "lon": -73.9450346 }, + { "lat": 40.7189729, "lon": -73.9450497 }, + { "lat": 40.7189737, "lon": -73.9450755 }, + { "lat": 40.7189813, "lon": -73.9450896 }, + { "lat": 40.7192242, "lon": -73.9452666 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 645825101, + "bounds": { + "minlat": 40.7472521, + "minlon": -73.9984005, + "maxlat": 40.7476630, + "maxlon": -73.9981156 + }, + "nodes": [ + 6069788567, + 11145365991, + 6069788569 + ], + "geometry": [ + { "lat": 40.7476630, "lon": -73.9981156 }, + { "lat": 40.7475742, "lon": -73.9981820 }, + { "lat": 40.7472521, "lon": -73.9984005 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 645864303, + "bounds": { + "minlat": 40.7469567, + "minlon": -74.0005455, + "maxlat": 40.7476075, + "maxlon": -74.0000176 + }, + "nodes": [ + 6069996236, + 10171484152, + 6069996235, + 10171509243, + 5852207686 + ], + "geometry": [ + { "lat": 40.7476075, "lon": -74.0000176 }, + { "lat": 40.7475242, "lon": -74.0000776 }, + { "lat": 40.7470426, "lon": -74.0004246 }, + { "lat": 40.7470111, "lon": -74.0004675 }, + { "lat": 40.7469567, "lon": -74.0005455 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 645864305, + "bounds": { + "minlat": 40.7469210, + "minlon": -74.0005104, + "maxlat": 40.7469685, + "maxlon": -74.0004020 + }, + "nodes": [ + 6069996234, + 10171509242, + 6069996233 + ], + "geometry": [ + { "lat": 40.7469210, "lon": -74.0005104 }, + { "lat": 40.7469615, "lon": -74.0004192 }, + { "lat": 40.7469685, "lon": -74.0004020 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 645864306, + "bounds": { + "minlat": 40.7469685, + "minlon": -74.0004020, + "maxlat": 40.7472887, + "maxlon": -74.0001579 + }, + "nodes": [ + 6069996233, + 6069996231 + ], + "geometry": [ + { "lat": 40.7469685, "lon": -74.0004020 }, + { "lat": 40.7472887, "lon": -74.0001579 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 646635889, + "bounds": { + "minlat": 40.7346805, + "minlon": -74.0006278, + "maxlat": 40.7372222, + "maxlon": -73.9946012 + }, + "nodes": [ + 42439073, + 8262308356, + 8309479751, + 42430249, + 8309479748, + 4500012796, + 8309479790, + 42439070 + ], + "geometry": [ + { "lat": 40.7372222, "lon": -74.0006278 }, + { "lat": 40.7371785, "lon": -74.0005241 }, + { "lat": 40.7360910, "lon": -73.9979449 }, + { "lat": 40.7360320, "lon": -73.9978050 }, + { "lat": 40.7359773, "lon": -73.9976754 }, + { "lat": 40.7348564, "lon": -73.9950217 }, + { "lat": 40.7347231, "lon": -73.9947003 }, + { "lat": 40.7346805, "lon": -73.9946012 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 12th Street", + "name:ru": "Западная 12-я стрит", + "name_1": "West 12 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 648758866, + "bounds": { + "minlat": 40.8304369, + "minlon": -74.0183640, + "maxlat": 40.8305191, + "maxlon": -74.0181783 + }, + "nodes": [ + 6090108564, + 6090108563 + ], + "geometry": [ + { "lat": 40.8304369, "lon": -74.0183640 }, + { "lat": 40.8305191, "lon": -74.0181783 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 648762805, + "bounds": { + "minlat": 40.8324075, + "minlon": -74.0172462, + "maxlat": 40.8325224, + "maxlon": -74.0171984 + }, + "nodes": [ + 6090160793, + 6090160792 + ], + "geometry": [ + { "lat": 40.8325224, "lon": -74.0171984 }, + { "lat": 40.8324075, "lon": -74.0172462 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 648762806, + "bounds": { + "minlat": 40.8325224, + "minlon": -74.0171984, + "maxlat": 40.8347196, + "maxlon": -74.0157266 + }, + "nodes": [ + 11083612749, + 11083612750, + 11083612751, + 11083612748, + 11083612747, + 6090160795, + 6090160794, + 11083612761, + 6090160793 + ], + "geometry": [ + { "lat": 40.8347196, "lon": -74.0157266 }, + { "lat": 40.8346697, "lon": -74.0157737 }, + { "lat": 40.8346334, "lon": -74.0158100 }, + { "lat": 40.8339660, "lon": -74.0164386 }, + { "lat": 40.8332046, "lon": -74.0167562 }, + { "lat": 40.8331472, "lon": -74.0168379 }, + { "lat": 40.8329830, "lon": -74.0170225 }, + { "lat": 40.8328696, "lon": -74.0170388 }, + { "lat": 40.8325224, "lon": -74.0171984 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 648762807, + "bounds": { + "minlat": 40.8305191, + "minlon": -74.0181783, + "maxlat": 40.8324075, + "maxlon": -74.0172462 + }, + "nodes": [ + 6090160792, + 6090160791, + 6090108563 + ], + "geometry": [ + { "lat": 40.8324075, "lon": -74.0172462 }, + { "lat": 40.8306317, "lon": -74.0180200 }, + { "lat": 40.8305191, "lon": -74.0181783 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 648888143, + "bounds": { + "minlat": 40.7700117, + "minlon": -73.9713563, + "maxlat": 40.7702695, + "maxlon": -73.9711648 + }, + "nodes": [ + 4332700788, + 9906929118, + 9906929119, + 4332700922, + 9906929120, + 4332700906 + ], + "geometry": [ + { "lat": 40.7700117, "lon": -73.9713563 }, + { "lat": 40.7700419, "lon": -73.9713282 }, + { "lat": 40.7700812, "lon": -73.9712937 }, + { "lat": 40.7701530, "lon": -73.9712407 }, + { "lat": 40.7702489, "lon": -73.9711768 }, + { "lat": 40.7702695, "lon": -73.9711648 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "bridge": "yes", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 648888145, + "bounds": { + "minlat": 40.7815442, + "minlon": -73.9629601, + "maxlat": 40.7815989, + "maxlon": -73.9627223 + }, + "nodes": [ + 595703332, + 595703325 + ], + "geometry": [ + { "lat": 40.7815442, "lon": -73.9629601 }, + { "lat": 40.7815989, "lon": -73.9627223 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "bridge": "yes", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "6" + } +}, +{ + "type": "way", + "id": 648888147, + "bounds": { + "minlat": 40.7957570, + "minlon": -73.9556878, + "maxlat": 40.7958419, + "maxlon": -73.9556431 + }, + "nodes": [ + 247225015, + 12815111026, + 247225016 + ], + "geometry": [ + { "lat": 40.7957570, "lon": -73.9556431 }, + { "lat": 40.7957984, "lon": -73.9556680 }, + { "lat": 40.7958419, "lon": -73.9556878 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "bridge": "yes", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 648888148, + "bounds": { + "minlat": 40.7945777, + "minlon": -73.9592349, + "maxlat": 40.7947868, + "maxlon": -73.9591455 + }, + "nodes": [ + 1203806378, + 1203806373 + ], + "geometry": [ + { "lat": 40.7947868, "lon": -73.9591455 }, + { "lat": 40.7945777, "lon": -73.9592349 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "bridge": "yes", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 648888151, + "bounds": { + "minlat": 40.7817478, + "minlon": -73.9694289, + "maxlat": 40.7819549, + "maxlon": -73.9694078 + }, + "nodes": [ + 3248830964, + 4332540828 + ], + "geometry": [ + { "lat": 40.7819549, "lon": -73.9694289 }, + { "lat": 40.7817478, "lon": -73.9694078 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "bridge": "yes", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 648888153, + "bounds": { + "minlat": 40.7745261, + "minlon": -73.9754351, + "maxlat": 40.7747049, + "maxlon": -73.9748273 + }, + "nodes": [ + 42442175, + 2059303860, + 2059303857, + 248709391, + 2059303854, + 9178915174, + 595703341 + ], + "geometry": [ + { "lat": 40.7747049, "lon": -73.9748273 }, + { "lat": 40.7746696, "lon": -73.9750207 }, + { "lat": 40.7746480, "lon": -73.9751299 }, + { "lat": 40.7746190, "lon": -73.9752240 }, + { "lat": 40.7745870, "lon": -73.9753100 }, + { "lat": 40.7745554, "lon": -73.9753799 }, + { "lat": 40.7745261, "lon": -73.9754351 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "no", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:bicycle": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes:forward": "through", + "width": "10" + } +}, +{ + "type": "way", + "id": 648888155, + "bounds": { + "minlat": 40.7706569, + "minlon": -73.9786675, + "maxlat": 40.7708124, + "maxlon": -73.9784708 + }, + "nodes": [ + 247221963, + 3377460352 + ], + "geometry": [ + { "lat": 40.7708124, "lon": -73.9784708 }, + { "lat": 40.7706569, "lon": -73.9786675 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "bridge": "yes", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 648888156, + "bounds": { + "minlat": 40.7691840, + "minlon": -73.9799478, + "maxlat": 40.7693518, + "maxlon": -73.9798807 + }, + "nodes": [ + 3887931468, + 9906929041, + 1420632746 + ], + "geometry": [ + { "lat": 40.7693518, "lon": -73.9798807 }, + { "lat": 40.7692679, "lon": -73.9799165 }, + { "lat": 40.7691840, "lon": -73.9799478 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "bridge": "yes", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 648888157, + "bounds": { + "minlat": 40.7678551, + "minlon": -73.9799711, + "maxlat": 40.7691840, + "maxlon": -73.9788872 + }, + "nodes": [ + 1420632746, + 247221966, + 4332677089, + 9906929042, + 561949937, + 9906929043, + 1420632727, + 9906929044, + 42424899, + 9906929045, + 2216963578, + 2216963569, + 9906929046, + 2216963564, + 247221967, + 9906929047, + 4332677109, + 9906929049, + 9906929048, + 42424609 + ], + "geometry": [ + { "lat": 40.7691840, "lon": -73.9799478 }, + { "lat": 40.7691506, "lon": -73.9799575 }, + { "lat": 40.7691023, "lon": -73.9799668 }, + { "lat": 40.7690584, "lon": -73.9799700 }, + { "lat": 40.7690097, "lon": -73.9799711 }, + { "lat": 40.7689516, "lon": -73.9799629 }, + { "lat": 40.7689031, "lon": -73.9799488 }, + { "lat": 40.7688380, "lon": -73.9799226 }, + { "lat": 40.7687808, "lon": -73.9798937 }, + { "lat": 40.7687147, "lon": -73.9798543 }, + { "lat": 40.7686358, "lon": -73.9798069 }, + { "lat": 40.7685554, "lon": -73.9797490 }, + { "lat": 40.7684689, "lon": -73.9796833 }, + { "lat": 40.7683937, "lon": -73.9796132 }, + { "lat": 40.7682952, "lon": -73.9795148 }, + { "lat": 40.7682208, "lon": -73.9794274 }, + { "lat": 40.7681596, "lon": -73.9793471 }, + { "lat": 40.7680768, "lon": -73.9792302 }, + { "lat": 40.7678878, "lon": -73.9789424 }, + { "lat": 40.7678551, "lon": -73.9788872 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 648894329, + "bounds": { + "minlat": 40.7936694, + "minlon": -73.9581369, + "maxlat": 40.7936889, + "maxlon": -73.9580554 + }, + "nodes": [ + 1203806320, + 42431291 + ], + "geometry": [ + { "lat": 40.7936889, "lon": -73.9581369 }, + { "lat": 40.7936694, "lon": -73.9580554 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "bridge": "yes", + "highway": "service", + "layer": "1", + "lit": "yes", + "motor_vehicle": "no", + "name": "102nd Street Crossing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 648894330, + "bounds": { + "minlat": 40.7936206, + "minlon": -73.9580554, + "maxlat": 40.7944751, + "maxlon": -73.9547813 + }, + "nodes": [ + 42431291, + 12817661206, + 9908390649, + 2057103358, + 2057103359, + 2057103360, + 9908390648, + 42442180, + 9908390647, + 2057103364, + 432755917, + 9908390646, + 432755916, + 9908390645, + 4302965071, + 9908390644, + 432755914, + 2057103389, + 2057103390, + 4302965361, + 42442186, + 2057103394, + 2057103392, + 11264655791, + 432755913, + 1203883682, + 3391966112, + 42434038 + ], + "geometry": [ + { "lat": 40.7936694, "lon": -73.9580554 }, + { "lat": 40.7936504, "lon": -73.9579755 }, + { "lat": 40.7936318, "lon": -73.9578611 }, + { "lat": 40.7936217, "lon": -73.9577331 }, + { "lat": 40.7936206, "lon": -73.9576457 }, + { "lat": 40.7936240, "lon": -73.9575460 }, + { "lat": 40.7936364, "lon": -73.9574476 }, + { "lat": 40.7936595, "lon": -73.9573494 }, + { "lat": 40.7936857, "lon": -73.9572449 }, + { "lat": 40.7937292, "lon": -73.9571217 }, + { "lat": 40.7938021, "lon": -73.9569556 }, + { "lat": 40.7938794, "lon": -73.9568065 }, + { "lat": 40.7939499, "lon": -73.9566715 }, + { "lat": 40.7940140, "lon": -73.9565679 }, + { "lat": 40.7941492, "lon": -73.9563590 }, + { "lat": 40.7943387, "lon": -73.9560705 }, + { "lat": 40.7943823, "lon": -73.9559922 }, + { "lat": 40.7944143, "lon": -73.9559219 }, + { "lat": 40.7944437, "lon": -73.9558399 }, + { "lat": 40.7944603, "lon": -73.9557698 }, + { "lat": 40.7944695, "lon": -73.9556852 }, + { "lat": 40.7944751, "lon": -73.9555774 }, + { "lat": 40.7944721, "lon": -73.9554814 }, + { "lat": 40.7944640, "lon": -73.9553850 }, + { "lat": 40.7944464, "lon": -73.9552917 }, + { "lat": 40.7944046, "lon": -73.9551200 }, + { "lat": 40.7943405, "lon": -73.9548548 }, + { "lat": 40.7943218, "lon": -73.9547813 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "highway": "service", + "lit": "yes", + "motor_vehicle": "no", + "name": "102nd Street Crossing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 649354745, + "bounds": { + "minlat": 40.7145376, + "minlon": -73.9517730, + "maxlat": 40.7150308, + "maxlon": -73.9516997 + }, + "nodes": [ + 42518608, + 6228178162, + 42476487 + ], + "geometry": [ + { "lat": 40.7145376, "lon": -73.9516997 }, + { "lat": 40.7149508, "lon": -73.9517603 }, + { "lat": 40.7150308, "lon": -73.9517730 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 649667684, + "bounds": { + "minlat": 40.7102487, + "minlon": -73.9584046, + "maxlat": 40.7103461, + "maxlon": -73.9583486 + }, + "nodes": [ + 4726244595, + 1893285374 + ], + "geometry": [ + { "lat": 40.7102487, "lon": -73.9584046 }, + { "lat": 40.7103461, "lon": -73.9583486 } + ], + "tags": { + "highway": "residential", + "name": "Havemeyer Street", + "name_1": "South 5th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Havemeyer", + "tiger:name_base_1": "5th", + "tiger:name_direction_prefix_1": "S", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 649672852, + "bounds": { + "minlat": 40.8134113, + "minlon": -73.9305450, + "maxlat": 40.8134732, + "maxlon": -73.9304903 + }, + "nodes": [ + 6096486614, + 42733678 + ], + "geometry": [ + { "lat": 40.8134732, "lon": -73.9304903 }, + { "lat": 40.8134113, "lon": -73.9305450 } + ], + "tags": { + "highway": "residential", + "name": "Walton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 650263118, + "bounds": { + "minlat": 40.7170587, + "minlon": -73.9160976, + "maxlat": 40.7182995, + "maxlon": -73.9155127 + }, + "nodes": [ + 6100646486, + 10856212656, + 13701683412 + ], + "geometry": [ + { "lat": 40.7182995, "lon": -73.9160976 }, + { "lat": 40.7182206, "lon": -73.9160603 }, + { "lat": 40.7170587, "lon": -73.9155127 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 650264701, + "bounds": { + "minlat": 40.7299089, + "minlon": -73.9496959, + "maxlat": 40.7306431, + "maxlon": -73.9493218 + }, + "nodes": [ + 6100649478, + 9788947523, + 6100649477 + ], + "geometry": [ + { "lat": 40.7306431, "lon": -73.9496959 }, + { "lat": 40.7305513, "lon": -73.9496539 }, + { "lat": 40.7299089, "lon": -73.9493218 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 650275138, + "bounds": { + "minlat": 40.7496407, + "minlon": -73.9461340, + "maxlat": 40.7501288, + "maxlon": -73.9451438 + }, + "nodes": [ + 6100731085, + 8334173161, + 8334165791, + 6100729784 + ], + "geometry": [ + { "lat": 40.7501288, "lon": -73.9461340 }, + { "lat": 40.7500775, "lon": -73.9460332 }, + { "lat": 40.7496755, "lon": -73.9452117 }, + { "lat": 40.7496407, "lon": -73.9451438 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 650279551, + "bounds": { + "minlat": 40.7275664, + "minlon": -73.9921701, + "maxlat": 40.7281347, + "maxlon": -73.9913647 + }, + "nodes": [ + 6100764861, + 6100764860, + 6100764859, + 6100764858 + ], + "geometry": [ + { "lat": 40.7275664, "lon": -73.9913647 }, + { "lat": 40.7276178, "lon": -73.9915009 }, + { "lat": 40.7279321, "lon": -73.9921701 }, + { "lat": 40.7281347, "lon": -73.9919976 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 650624604, + "bounds": { + "minlat": 40.8821494, + "minlon": -74.0109486, + "maxlat": 40.8824150, + "maxlon": -74.0105974 + }, + "nodes": [ + 6103107233, + 6103107231, + 6103107230, + 6103107229, + 6103107228, + 6103107227, + 6103107226, + 6103107225, + 6635344753, + 6103107232, + 6103107224, + 6103107223, + 6103107222, + 6103107221, + 6103107220, + 6103107219, + 6103107218, + 6103107234, + 6103107217, + 6103107216, + 6635344783, + 6103107215, + 6103107214, + 6103107213, + 6103107212, + 6103107211, + 6103107233 + ], + "geometry": [ + { "lat": 40.8822254, "lon": -74.0109323 }, + { "lat": 40.8821959, "lon": -74.0109072 }, + { "lat": 40.8821724, "lon": -74.0108727 }, + { "lat": 40.8821566, "lon": -74.0108313 }, + { "lat": 40.8821494, "lon": -74.0107859 }, + { "lat": 40.8821515, "lon": -74.0107396 }, + { "lat": 40.8821627, "lon": -74.0106956 }, + { "lat": 40.8821821, "lon": -74.0106570 }, + { "lat": 40.8821931, "lon": -74.0106442 }, + { "lat": 40.8822085, "lon": -74.0106265 }, + { "lat": 40.8822397, "lon": -74.0106063 }, + { "lat": 40.8822738, "lon": -74.0105974 }, + { "lat": 40.8823084, "lon": -74.0106005 }, + { "lat": 40.8823413, "lon": -74.0106154 }, + { "lat": 40.8823702, "lon": -74.0106410 }, + { "lat": 40.8823930, "lon": -74.0106756 }, + { "lat": 40.8824083, "lon": -74.0107169 }, + { "lat": 40.8824150, "lon": -74.0107620 }, + { "lat": 40.8824127, "lon": -74.0108074 }, + { "lat": 40.8824017, "lon": -74.0108505 }, + { "lat": 40.8823972, "lon": -74.0108595 }, + { "lat": 40.8823827, "lon": -74.0108885 }, + { "lat": 40.8823570, "lon": -74.0109187 }, + { "lat": 40.8823262, "lon": -74.0109392 }, + { "lat": 40.8822925, "lon": -74.0109486 }, + { "lat": 40.8822582, "lon": -74.0109462 }, + { "lat": 40.8822254, "lon": -74.0109323 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 650624607, + "bounds": { + "minlat": 40.8822589, + "minlon": -74.0105974, + "maxlat": 40.8828155, + "maxlon": -74.0092251 + }, + "nodes": [ + 6103107243, + 6635344738, + 6103107242, + 6103107241, + 6103107240, + 6635344729, + 6103107239, + 6635344726, + 6635342720, + 6635342746, + 6103107238, + 6635344854, + 6103107237, + 6103107236, + 6103107235, + 6103107223 + ], + "geometry": [ + { "lat": 40.8828155, "lon": -74.0092251 }, + { "lat": 40.8826783, "lon": -74.0092894 }, + { "lat": 40.8826208, "lon": -74.0093163 }, + { "lat": 40.8825639, "lon": -74.0093654 }, + { "lat": 40.8825407, "lon": -74.0095000 }, + { "lat": 40.8825209, "lon": -74.0095660 }, + { "lat": 40.8824748, "lon": -74.0097199 }, + { "lat": 40.8824052, "lon": -74.0099057 }, + { "lat": 40.8823953, "lon": -74.0099319 }, + { "lat": 40.8823793, "lon": -74.0099747 }, + { "lat": 40.8823592, "lon": -74.0100284 }, + { "lat": 40.8823523, "lon": -74.0100454 }, + { "lat": 40.8822903, "lon": -74.0101974 }, + { "lat": 40.8822599, "lon": -74.0103181 }, + { "lat": 40.8822589, "lon": -74.0104884 }, + { "lat": 40.8822738, "lon": -74.0105974 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 650624609, + "bounds": { + "minlat": 40.8823340, + "minlon": -74.0092613, + "maxlat": 40.8825509, + "maxlon": -74.0086660 + }, + "nodes": [ + 6103107246, + 6103107248, + 6103107245, + 6635342688, + 13527712064, + 103214424 + ], + "geometry": [ + { "lat": 40.8825509, "lon": -74.0091553 }, + { "lat": 40.8825286, "lon": -74.0092613 }, + { "lat": 40.8824687, "lon": -74.0091942 }, + { "lat": 40.8823432, "lon": -74.0088000 }, + { "lat": 40.8823421, "lon": -74.0087838 }, + { "lat": 40.8823340, "lon": -74.0086660 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 650692261, + "bounds": { + "minlat": 40.8630875, + "minlon": -73.9872061, + "maxlat": 40.8633830, + "maxlon": -73.9868121 + }, + "nodes": [ + 6103601330, + 10238058300, + 10238058304, + 10238058303, + 10238058299, + 10238058302 + ], + "geometry": [ + { "lat": 40.8632989, "lon": -73.9868121 }, + { "lat": 40.8633551, "lon": -73.9869708 }, + { "lat": 40.8633830, "lon": -73.9870613 }, + { "lat": 40.8631817, "lon": -73.9872061 }, + { "lat": 40.8631450, "lon": -73.9871150 }, + { "lat": 40.8630875, "lon": -73.9869724 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 650692320, + "bounds": { + "minlat": 40.8575919, + "minlon": -73.9972071, + "maxlat": 40.8579088, + "maxlon": -73.9966966 + }, + "nodes": [ + 6103601799, + 6117378953, + 6103601800 + ], + "geometry": [ + { "lat": 40.8575919, "lon": -73.9966966 }, + { "lat": 40.8577975, "lon": -73.9970279 }, + { "lat": 40.8579088, "lon": -73.9972071 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 650692321, + "bounds": { + "minlat": 40.8578718, + "minlon": -73.9974069, + "maxlat": 40.8580375, + "maxlon": -73.9971889 + }, + "nodes": [ + 6103601812, + 6103601813, + 6103601814, + 6103601815, + 6103601816, + 6103601817, + 6103601818, + 6103601800, + 6103601801, + 6103601804, + 6103601805, + 6103601806, + 6103601807, + 6103601808, + 6103601809, + 6103601810, + 6103601811, + 6103601802, + 6103601803, + 6103601812 + ], + "geometry": [ + { "lat": 40.8579401, "lon": -73.9974066 }, + { "lat": 40.8579137, "lon": -73.9973939 }, + { "lat": 40.8578921, "lon": -73.9973704 }, + { "lat": 40.8578775, "lon": -73.9973387 }, + { "lat": 40.8578718, "lon": -73.9973024 }, + { "lat": 40.8578756, "lon": -73.9972656 }, + { "lat": 40.8578884, "lon": -73.9972326 }, + { "lat": 40.8579088, "lon": -73.9972071 }, + { "lat": 40.8579331, "lon": -73.9971925 }, + { "lat": 40.8579597, "lon": -73.9971889 }, + { "lat": 40.8579857, "lon": -73.9971966 }, + { "lat": 40.8580086, "lon": -73.9972148 }, + { "lat": 40.8580259, "lon": -73.9972417 }, + { "lat": 40.8580359, "lon": -73.9972744 }, + { "lat": 40.8580375, "lon": -73.9973097 }, + { "lat": 40.8580305, "lon": -73.9973438 }, + { "lat": 40.8580157, "lon": -73.9973732 }, + { "lat": 40.8579947, "lon": -73.9973949 }, + { "lat": 40.8579681, "lon": -73.9974069 }, + { "lat": 40.8579401, "lon": -73.9974066 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 650692322, + "bounds": { + "minlat": 40.8580359, + "minlon": -73.9977363, + "maxlat": 40.8584185, + "maxlon": -73.9971735 + }, + "nodes": [ + 6103601808, + 6103601819, + 6103601820, + 6103601821, + 6103601822, + 6103601808 + ], + "geometry": [ + { "lat": 40.8580359, "lon": -73.9972744 }, + { "lat": 40.8581901, "lon": -73.9971735 }, + { "lat": 40.8584185, "lon": -73.9976330 }, + { "lat": 40.8582869, "lon": -73.9977363 }, + { "lat": 40.8580846, "lon": -73.9973130 }, + { "lat": 40.8580359, "lon": -73.9972744 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651090921, + "bounds": { + "minlat": 40.8628832, + "minlon": -73.9898511, + "maxlat": 40.8633049, + "maxlon": -73.9894938 + }, + "nodes": [ + 6106255881, + 6106255882, + 6106255883 + ], + "geometry": [ + { "lat": 40.8628832, "lon": -73.9898511 }, + { "lat": 40.8631070, "lon": -73.9896366 }, + { "lat": 40.8633049, "lon": -73.9894938 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 651090922, + "bounds": { + "minlat": 40.8633049, + "minlon": -73.9897930, + "maxlat": 40.8634286, + "maxlon": -73.9894938 + }, + "nodes": [ + 6106255883, + 6106255884 + ], + "geometry": [ + { "lat": 40.8633049, "lon": -73.9894938 }, + { "lat": 40.8634286, "lon": -73.9897930 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651090923, + "bounds": { + "minlat": 40.8630518, + "minlon": -73.9901361, + "maxlat": 40.8634286, + "maxlon": -73.9897930 + }, + "nodes": [ + 6106255884, + 6106259285 + ], + "geometry": [ + { "lat": 40.8634286, "lon": -73.9897930 }, + { "lat": 40.8630518, "lon": -73.9901361 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 651192630, + "bounds": { + "minlat": 40.7998708, + "minlon": -73.9091909, + "maxlat": 40.8002549, + "maxlon": -73.9085175 + }, + "nodes": [ + 6106849938, + 9701280030, + 6106849937 + ], + "geometry": [ + { "lat": 40.8002549, "lon": -73.9091909 }, + { "lat": 40.8002062, "lon": -73.9091055 }, + { "lat": 40.7998708, "lon": -73.9085175 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "East 135th Street", + "source": "gis.ny.gov/gisdata", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 651244226, + "bounds": { + "minlat": 40.8691213, + "minlon": -73.9870467, + "maxlat": 40.8698468, + "maxlon": -73.9865039 + }, + "nodes": [ + 6107676744, + 10234908301, + 6107676745, + 6107676746, + 6107676747 + ], + "geometry": [ + { "lat": 40.8691213, "lon": -73.9870467 }, + { "lat": 40.8694966, "lon": -73.9868400 }, + { "lat": 40.8697447, "lon": -73.9867011 }, + { "lat": 40.8697642, "lon": -73.9866662 }, + { "lat": 40.8698468, "lon": -73.9865039 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 651601802, + "bounds": { + "minlat": 40.8623234, + "minlon": -73.9868411, + "maxlat": 40.8624405, + "maxlon": -73.9866860 + }, + "nodes": [ + 6109949836, + 6109949837, + 6109949844 + ], + "geometry": [ + { "lat": 40.8623234, "lon": -73.9866860 }, + { "lat": 40.8624097, "lon": -73.9867944 }, + { "lat": 40.8624405, "lon": -73.9868411 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 651601803, + "bounds": { + "minlat": 40.8620731, + "minlon": -73.9868878, + "maxlat": 40.8623234, + "maxlon": -73.9866860 + }, + "nodes": [ + 6109949842, + 6109949836 + ], + "geometry": [ + { "lat": 40.8620731, "lon": -73.9868878 }, + { "lat": 40.8623234, "lon": -73.9866860 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651601804, + "bounds": { + "minlat": 40.8621883, + "minlon": -73.9871057, + "maxlat": 40.8623771, + "maxlon": -73.9869277 + }, + "nodes": [ + 6109949843, + 8832652999 + ], + "geometry": [ + { "lat": 40.8621883, "lon": -73.9871057 }, + { "lat": 40.8623771, "lon": -73.9869277 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 651601805, + "bounds": { + "minlat": 40.8625511, + "minlon": -73.9869828, + "maxlat": 40.8628004, + "maxlon": -73.9867788 + }, + "nodes": [ + 6109949845, + 6109949841 + ], + "geometry": [ + { "lat": 40.8628004, "lon": -73.9867788 }, + { "lat": 40.8625511, "lon": -73.9869828 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651601806, + "bounds": { + "minlat": 40.8624405, + "minlon": -73.9868411, + "maxlat": 40.8626993, + "maxlon": -73.9865800 + }, + "nodes": [ + 6109949844, + 6109949846, + 6109949847 + ], + "geometry": [ + { "lat": 40.8624405, "lon": -73.9868411 }, + { "lat": 40.8624604, "lon": -73.9867944 }, + { "lat": 40.8626993, "lon": -73.9865800 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651601808, + "bounds": { + "minlat": 40.8618441, + "minlon": -73.9871862, + "maxlat": 40.8621413, + "maxlon": -73.9870184 + }, + "nodes": [ + 6109949854, + 6109949865, + 6109949855, + 6109949856, + 6109949857 + ], + "geometry": [ + { "lat": 40.8621413, "lon": -73.9870184 }, + { "lat": 40.8619977, "lon": -73.9871199 }, + { "lat": 40.8619059, "lon": -73.9871846 }, + { "lat": 40.8618893, "lon": -73.9871862 }, + { "lat": 40.8618441, "lon": -73.9871759 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 651601809, + "bounds": { + "minlat": 40.8615498, + "minlon": -73.9871759, + "maxlat": 40.8618441, + "maxlon": -73.9866246 + }, + "nodes": [ + 6109949857, + 6109949861, + 6109949858 + ], + "geometry": [ + { "lat": 40.8618441, "lon": -73.9871759 }, + { "lat": 40.8616128, "lon": -73.9867428 }, + { "lat": 40.8615498, "lon": -73.9866246 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651601810, + "bounds": { + "minlat": 40.8615498, + "minlon": -73.9866246, + "maxlat": 40.8617969, + "maxlon": -73.9863714 + }, + "nodes": [ + 6109949859, + 6109949863, + 6109949858 + ], + "geometry": [ + { "lat": 40.8617969, "lon": -73.9863714 }, + { "lat": 40.8616782, "lon": -73.9864997 }, + { "lat": 40.8615498, "lon": -73.9866246 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651601811, + "bounds": { + "minlat": 40.8611784, + "minlon": -73.9869872, + "maxlat": 40.8615498, + "maxlon": -73.9866246 + }, + "nodes": [ + 6109949860, + 6109949858 + ], + "geometry": [ + { "lat": 40.8611784, "lon": -73.9869872 }, + { "lat": 40.8615498, "lon": -73.9866246 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651601812, + "bounds": { + "minlat": 40.8612448, + "minlon": -73.9871077, + "maxlat": 40.8616128, + "maxlon": -73.9867428 + }, + "nodes": [ + 6109949861, + 6109949862 + ], + "geometry": [ + { "lat": 40.8616128, "lon": -73.9867428 }, + { "lat": 40.8612448, "lon": -73.9871077 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651601813, + "bounds": { + "minlat": 40.8616782, + "minlon": -73.9871199, + "maxlat": 40.8619977, + "maxlon": -73.9864997 + }, + "nodes": [ + 6109949863, + 6109949865 + ], + "geometry": [ + { "lat": 40.8616782, "lon": -73.9864997 }, + { "lat": 40.8619977, "lon": -73.9871199 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651661734, + "bounds": { + "minlat": 40.7818931, + "minlon": -73.9496721, + "maxlat": 40.7819648, + "maxlon": -73.9496184 + }, + "nodes": [ + 6110464453, + 6185259902, + 6110464454 + ], + "geometry": [ + { "lat": 40.7818931, "lon": -73.9496721 }, + { "lat": 40.7819081, "lon": -73.9496608 }, + { "lat": 40.7819648, "lon": -73.9496184 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 651661738, + "bounds": { + "minlat": 40.7819061, + "minlon": -73.9497015, + "maxlat": 40.7819780, + "maxlon": -73.9496497 + }, + "nodes": [ + 6110464459, + 6185259917, + 6110464437 + ], + "geometry": [ + { "lat": 40.7819780, "lon": -73.9496497 }, + { "lat": 40.7819209, "lon": -73.9496908 }, + { "lat": 40.7819061, "lon": -73.9497015 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 651664431, + "bounds": { + "minlat": 40.7821437, + "minlon": -73.9502693, + "maxlat": 40.7822168, + "maxlon": -73.9502160 + }, + "nodes": [ + 6110479993, + 6185259931, + 6110479994 + ], + "geometry": [ + { "lat": 40.7822168, "lon": -73.9502160 }, + { "lat": 40.7821628, "lon": -73.9502561 }, + { "lat": 40.7821437, "lon": -73.9502693 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 651812668, + "bounds": { + "minlat": 40.8631470, + "minlon": -73.9865254, + "maxlat": 40.8634710, + "maxlon": -73.9861832 + }, + "nodes": [ + 6111818465, + 6111818466, + 6111818467, + 6111818468 + ], + "geometry": [ + { "lat": 40.8634710, "lon": -73.9864277 }, + { "lat": 40.8632291, "lon": -73.9865254 }, + { "lat": 40.8631470, "lon": -73.9863599 }, + { "lat": 40.8633426, "lon": -73.9861832 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651816325, + "bounds": { + "minlat": 40.8639748, + "minlon": -73.9841084, + "maxlat": 40.8645791, + "maxlon": -73.9837303 + }, + "nodes": [ + 6111847348, + 6111847350, + 6111847349 + ], + "geometry": [ + { "lat": 40.8645791, "lon": -73.9837303 }, + { "lat": 40.8643929, "lon": -73.9838481 }, + { "lat": 40.8639748, "lon": -73.9841084 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 651816326, + "bounds": { + "minlat": 40.8642065, + "minlon": -73.9842117, + "maxlat": 40.8644634, + "maxlon": -73.9838481 + }, + "nodes": [ + 6111847350, + 6111847351, + 6111847352 + ], + "geometry": [ + { "lat": 40.8643929, "lon": -73.9838481 }, + { "lat": 40.8644634, "lon": -73.9840440 }, + { "lat": 40.8642065, "lon": -73.9842117 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651816335, + "bounds": { + "minlat": 40.8635619, + "minlon": -73.9850036, + "maxlat": 40.8637478, + "maxlon": -73.9848754 + }, + "nodes": [ + 6111847407, + 6111847408 + ], + "geometry": [ + { "lat": 40.8635619, "lon": -73.9850036 }, + { "lat": 40.8637478, "lon": -73.9848754 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651816336, + "bounds": { + "minlat": 40.8637478, + "minlon": -73.9852206, + "maxlat": 40.8641014, + "maxlon": -73.9846417 + }, + "nodes": [ + 6111847409, + 6111847408, + 6111847410 + ], + "geometry": [ + { "lat": 40.8639165, "lon": -73.9852206 }, + { "lat": 40.8637478, "lon": -73.9848754 }, + { "lat": 40.8641014, "lon": -73.9846417 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651816339, + "bounds": { + "minlat": 40.8609227, + "minlon": -73.9865563, + "maxlat": 40.8612075, + "maxlon": -73.9862775 + }, + "nodes": [ + 6111847426, + 6111847427 + ], + "geometry": [ + { "lat": 40.8609227, "lon": -73.9865563 }, + { "lat": 40.8612075, "lon": -73.9862775 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 651822957, + "bounds": { + "minlat": 40.8501618, + "minlon": -73.9656802, + "maxlat": 40.8506747, + "maxlon": -73.9654274 + }, + "nodes": [ + 6111906770, + 7672312108, + 12344808189, + 6111906771 + ], + "geometry": [ + { "lat": 40.8506747, "lon": -73.9654274 }, + { "lat": 40.8506082, "lon": -73.9654575 }, + { "lat": 40.8505817, "lon": -73.9654679 }, + { "lat": 40.8501618, "lon": -73.9656802 } + ], + "tags": { + "access": "no", + "highway": "residential", + "name": "Kaufers Lane", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 652023436, + "bounds": { + "minlat": 40.7865037, + "minlon": -73.9483878, + "maxlat": 40.7871229, + "maxlon": -73.9479214 + }, + "nodes": [ + 42450048, + 6181480021, + 6254382857, + 4980915583, + 6181480033 + ], + "geometry": [ + { "lat": 40.7865037, "lon": -73.9483878 }, + { "lat": 40.7865608, "lon": -73.9483438 }, + { "lat": 40.7869997, "lon": -73.9480208 }, + { "lat": 40.7870627, "lon": -73.9479698 }, + { "lat": 40.7871229, "lon": -73.9479214 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 652023437, + "bounds": { + "minlat": 40.7896375, + "minlon": -73.9460871, + "maxlat": 40.7954069, + "maxlon": -73.9418755 + }, + "nodes": [ + 42434898, + 11292691115, + 6191027310, + 42436624, + 6191027320, + 4970497090, + 42450055, + 4970497089, + 4970497094, + 42450057, + 4970497092, + 6216541841, + 7777321715, + 6216541811, + 5481998037, + 7777321755, + 42436647, + 7777321763, + 7777321722, + 42450061, + 7777321712, + 6225481637, + 7924346987, + 42434385, + 7924346712, + 7924346931, + 42450066, + 7924346909, + 7924346692, + 42449422 + ], + "geometry": [ + { "lat": 40.7896375, "lon": -73.9460871 }, + { "lat": 40.7897079, "lon": -73.9460357 }, + { "lat": 40.7901930, "lon": -73.9456815 }, + { "lat": 40.7902523, "lon": -73.9456376 }, + { "lat": 40.7903263, "lon": -73.9455843 }, + { "lat": 40.7908445, "lon": -73.9452061 }, + { "lat": 40.7908925, "lon": -73.9451710 }, + { "lat": 40.7909535, "lon": -73.9451264 }, + { "lat": 40.7914725, "lon": -73.9447476 }, + { "lat": 40.7915720, "lon": -73.9446750 }, + { "lat": 40.7916655, "lon": -73.9446068 }, + { "lat": 40.7921948, "lon": -73.9442205 }, + { "lat": 40.7922463, "lon": -73.9441827 }, + { "lat": 40.7923070, "lon": -73.9441375 }, + { "lat": 40.7927168, "lon": -73.9438327 }, + { "lat": 40.7928237, "lon": -73.9437592 }, + { "lat": 40.7928745, "lon": -73.9437242 }, + { "lat": 40.7929231, "lon": -73.9436889 }, + { "lat": 40.7934270, "lon": -73.9433225 }, + { "lat": 40.7934995, "lon": -73.9432689 }, + { "lat": 40.7935619, "lon": -73.9432238 }, + { "lat": 40.7937797, "lon": -73.9430634 }, + { "lat": 40.7940861, "lon": -73.9428397 }, + { "lat": 40.7941280, "lon": -73.9428091 }, + { "lat": 40.7941904, "lon": -73.9427635 }, + { "lat": 40.7947064, "lon": -73.9423868 }, + { "lat": 40.7947603, "lon": -73.9423475 }, + { "lat": 40.7948201, "lon": -73.9423039 }, + { "lat": 40.7953398, "lon": -73.9419245 }, + { "lat": 40.7954069, "lon": -73.9418755 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 652023438, + "bounds": { + "minlat": 40.7851967, + "minlon": -73.9493302, + "maxlat": 40.7858875, + "maxlon": -73.9488279 + }, + "nodes": [ + 42450044, + 6181480032, + 4980915579, + 42449007 + ], + "geometry": [ + { "lat": 40.7851967, "lon": -73.9493302 }, + { "lat": 40.7853001, "lon": -73.9492533 }, + { "lat": 40.7858191, "lon": -73.9488752 }, + { "lat": 40.7858875, "lon": -73.9488279 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:condition:left:time_interval": "Mo, Th 00:00-08:30, 10:00-24:00;Tu, We, Fr-Su 00:00-24:00", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 652023439, + "bounds": { + "minlat": 40.7871229, + "minlon": -73.9479214, + "maxlat": 40.7877536, + "maxlon": -73.9474623 + }, + "nodes": [ + 6181480033, + 4980915580, + 8714917356, + 6190264266, + 42450052 + ], + "geometry": [ + { "lat": 40.7871229, "lon": -73.9479214 }, + { "lat": 40.7871872, "lon": -73.9478703 }, + { "lat": 40.7873985, "lon": -73.9477183 }, + { "lat": 40.7877018, "lon": -73.9475020 }, + { "lat": 40.7877536, "lon": -73.9474623 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:condition:left:time_interval": "Mo, Th 00:00-08:30, 10:00-24:00;Tu, We, Fr-Su 00:00-24:00", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 652023441, + "bounds": { + "minlat": 40.7858875, + "minlon": -73.9488279, + "maxlat": 40.7865037, + "maxlon": -73.9483878 + }, + "nodes": [ + 42449007, + 6181478377, + 6181480020, + 42450048 + ], + "geometry": [ + { "lat": 40.7858875, "lon": -73.9488279 }, + { "lat": 40.7859595, "lon": -73.9487791 }, + { "lat": 40.7864359, "lon": -73.9484390 }, + { "lat": 40.7865037, "lon": -73.9483878 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:condition:left": "ticket", + "parking:condition:left:2": "no_stopping", + "parking:condition:left:2:time_interval": "Mo-Sa 07:30-08:00", + "parking:condition:left:default": "free", + "parking:condition:left:maxstay": "2h", + "parking:condition:left:time_interval": "Mo-Sa 08:00-19:00", + "parking:condition:right:time_interval": "Tu, Fr 00:00-08:30, 10:00-24:00;Mo, We, Th, Sa, Su 00:00-24:00", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 652023442, + "bounds": { + "minlat": 40.7871229, + "minlon": -73.9495290, + "maxlat": 40.7878098, + "maxlon": -73.9479214 + }, + "nodes": [ + 6181480033, + 4980915581, + 6248342691, + 42445259 + ], + "geometry": [ + { "lat": 40.7871229, "lon": -73.9479214 }, + { "lat": 40.7871867, "lon": -73.9480628 }, + { "lat": 40.7877699, "lon": -73.9494333 }, + { "lat": 40.7878098, "lon": -73.9495290 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "East 99th Street", + "name:ru": "Восточная 99-я стрит", + "name_1": "East 99 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 652122629, + "bounds": { + "minlat": 40.8623067, + "minlon": -73.9956501, + "maxlat": 40.8627618, + "maxlon": -73.9949692 + }, + "nodes": [ + 103146275, + 10243214286, + 475230379, + 103146278 + ], + "geometry": [ + { "lat": 40.8627618, "lon": -73.9956501 }, + { "lat": 40.8625361, "lon": -73.9953480 }, + { "lat": 40.8625169, "lon": -73.9953264 }, + { "lat": 40.8623067, "lon": -73.9949692 } + ], + "tags": { + "highway": "residential", + "name": "Maple Street", + "sidewalk": "right", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 652122630, + "bounds": { + "minlat": 40.8627618, + "minlon": -73.9956501, + "maxlat": 40.8633490, + "maxlon": -73.9952683 + }, + "nodes": [ + 103146275, + 103229111, + 103229112, + 103229113, + 103229114 + ], + "geometry": [ + { "lat": 40.8627618, "lon": -73.9956501 }, + { "lat": 40.8628433, "lon": -73.9956094 }, + { "lat": 40.8629582, "lon": -73.9955419 }, + { "lat": 40.8631193, "lon": -73.9954359 }, + { "lat": 40.8633490, "lon": -73.9952683 } + ], + "tags": { + "highway": "residential", + "name": "Station Parkway", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Station", + "tiger:name_type": "Pky", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 652122631, + "bounds": { + "minlat": 40.8623535, + "minlon": -73.9961990, + "maxlat": 40.8628465, + "maxlon": -73.9958174 + }, + "nodes": [ + 6114190647, + 6114190648, + 6114190649, + 6114190650, + 6114190651, + 6114190652, + 6114190653, + 6114190654 + ], + "geometry": [ + { "lat": 40.8628465, "lon": -73.9958174 }, + { "lat": 40.8627996, "lon": -73.9959290 }, + { "lat": 40.8627588, "lon": -73.9960045 }, + { "lat": 40.8627274, "lon": -73.9960522 }, + { "lat": 40.8626936, "lon": -73.9960938 }, + { "lat": 40.8626493, "lon": -73.9961262 }, + { "lat": 40.8625725, "lon": -73.9961524 }, + { "lat": 40.8623535, "lon": -73.9961990 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 652499278, + "bounds": { + "minlat": 40.7140649, + "minlon": -73.9533670, + "maxlat": 40.7140682, + "maxlon": -73.9529575 + }, + "nodes": [ + 6116989028, + 2089937767 + ], + "geometry": [ + { "lat": 40.7140649, "lon": -73.9529575 }, + { "lat": 40.7140682, "lon": -73.9533670 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "name": "Metropolitan Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Metropolitan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 652547625, + "bounds": { + "minlat": 40.8730331, + "minlon": -73.9902421, + "maxlat": 40.8737106, + "maxlon": -73.9895886 + }, + "nodes": [ + 6117378526, + 6117378527, + 6117378528, + 6117378529 + ], + "geometry": [ + { "lat": 40.8730331, "lon": -73.9895886 }, + { "lat": 40.8732342, "lon": -73.9902097 }, + { "lat": 40.8734142, "lon": -73.9902421 }, + { "lat": 40.8737106, "lon": -73.9900664 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 652547626, + "bounds": { + "minlat": 40.8723519, + "minlon": -73.9905998, + "maxlat": 40.8725821, + "maxlon": -73.9900311 + }, + "nodes": [ + 2468236518, + 6117378534, + 6117378532, + 6117378530 + ], + "geometry": [ + { "lat": 40.8723519, "lon": -73.9900311 }, + { "lat": 40.8724217, "lon": -73.9902035 }, + { "lat": 40.8725021, "lon": -73.9904022 }, + { "lat": 40.8725821, "lon": -73.9905998 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 652547627, + "bounds": { + "minlat": 40.8728224, + "minlon": -73.9903421, + "maxlat": 40.8730445, + "maxlon": -73.9897146 + }, + "nodes": [ + 2468236369, + 6117378535, + 6117378533, + 6117378531 + ], + "geometry": [ + { "lat": 40.8728224, "lon": -73.9897146 }, + { "lat": 40.8729061, "lon": -73.9899512 }, + { "lat": 40.8729734, "lon": -73.9901414 }, + { "lat": 40.8730445, "lon": -73.9903421 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 652547628, + "bounds": { + "minlat": 40.8725821, + "minlon": -73.9905998, + "maxlat": 40.8730445, + "maxlon": -73.9903421 + }, + "nodes": [ + 6117378530, + 6117378531 + ], + "geometry": [ + { "lat": 40.8725821, "lon": -73.9905998 }, + { "lat": 40.8730445, "lon": -73.9903421 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 652547629, + "bounds": { + "minlat": 40.8725021, + "minlon": -73.9904022, + "maxlat": 40.8729734, + "maxlon": -73.9901414 + }, + "nodes": [ + 6117378532, + 6117378533 + ], + "geometry": [ + { "lat": 40.8725021, "lon": -73.9904022 }, + { "lat": 40.8729734, "lon": -73.9901414 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 652547630, + "bounds": { + "minlat": 40.8724217, + "minlon": -73.9902035, + "maxlat": 40.8729061, + "maxlon": -73.9899512 + }, + "nodes": [ + 6117378534, + 6117378535 + ], + "geometry": [ + { "lat": 40.8724217, "lon": -73.9902035 }, + { "lat": 40.8729061, "lon": -73.9899512 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 652553032, + "bounds": { + "minlat": 40.7692897, + "minlon": -73.9938151, + "maxlat": 40.7694811, + "maxlon": -73.9936833 + }, + "nodes": [ + 6117428095, + 5481839857 + ], + "geometry": [ + { "lat": 40.7694811, "lon": -73.9936833 }, + { "lat": 40.7692897, "lon": -73.9938151 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 652566259, + "bounds": { + "minlat": 40.7276682, + "minlon": -73.9429430, + "maxlat": 40.7281028, + "maxlon": -73.9381890 + }, + "nodes": [ + 42517892, + 9788947373, + 9788947396, + 42495899, + 9788947395, + 7256919132, + 42510089, + 7833521875, + 7833521873, + 7154269133, + 42490496, + 7189140486, + 7833521870, + 7284135320, + 42527832, + 7284135325, + 12965890872, + 12965890871, + 9927149409, + 12965890870, + 42466856 + ], + "geometry": [ + { "lat": 40.7276682, "lon": -73.9429430 }, + { "lat": 40.7276749, "lon": -73.9428648 }, + { "lat": 40.7277411, "lon": -73.9420950 }, + { "lat": 40.7277500, "lon": -73.9419920 }, + { "lat": 40.7277587, "lon": -73.9419010 }, + { "lat": 40.7277823, "lon": -73.9416548 }, + { "lat": 40.7278410, "lon": -73.9410430 }, + { "lat": 40.7278443, "lon": -73.9410079 }, + { "lat": 40.7278789, "lon": -73.9406384 }, + { "lat": 40.7279026, "lon": -73.9403855 }, + { "lat": 40.7279290, "lon": -73.9401150 }, + { "lat": 40.7279319, "lon": -73.9400840 }, + { "lat": 40.7279334, "lon": -73.9400680 }, + { "lat": 40.7279808, "lon": -73.9395587 }, + { "lat": 40.7280160, "lon": -73.9391810 }, + { "lat": 40.7280504, "lon": -73.9387752 }, + { "lat": 40.7280769, "lon": -73.9385100 }, + { "lat": 40.7280881, "lon": -73.9384000 }, + { "lat": 40.7280971, "lon": -73.9383115 }, + { "lat": 40.7281028, "lon": -73.9382532 }, + { "lat": 40.7281000, "lon": -73.9381890 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Norman Avenue", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 652566260, + "bounds": { + "minlat": 40.7253984, + "minlon": -73.9429430, + "maxlat": 40.7276682, + "maxlon": -73.9425712 + }, + "nodes": [ + 42517892, + 9788947376, + 6732842579, + 42479382, + 6732842581, + 10994923632 + ], + "geometry": [ + { "lat": 40.7276682, "lon": -73.9429430 }, + { "lat": 40.7275926, "lon": -73.9429306 }, + { "lat": 40.7258705, "lon": -73.9426486 }, + { "lat": 40.7257930, "lon": -73.9426360 }, + { "lat": 40.7257277, "lon": -73.9426253 }, + { "lat": 40.7253984, "lon": -73.9425712 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "name": "Monitor Street", + "name:etymology:wikidata": "Q857891", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 652566262, + "bounds": { + "minlat": 40.7219460, + "minlon": -73.9421472, + "maxlat": 40.7228184, + "maxlon": -73.9420040 + }, + "nodes": [ + 10994923631, + 9789356884, + 42466401 + ], + "geometry": [ + { "lat": 40.7228184, "lon": -73.9421472 }, + { "lat": 40.7220236, "lon": -73.9420167 }, + { "lat": 40.7219460, "lon": -73.9420040 } + ], + "tags": { + "highway": "residential", + "name": "Monitor Street", + "name:etymology:wikidata": "Q857891", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 652745780, + "bounds": { + "minlat": 40.7917756, + "minlon": -73.9382001, + "maxlat": 40.7921784, + "maxlon": -73.9372379 + }, + "nodes": [ + 42434389, + 7924346585, + 5481998059, + 42426804 + ], + "geometry": [ + { "lat": 40.7921784, "lon": -73.9382001 }, + { "lat": 40.7921222, "lon": -73.9380658 }, + { "lat": 40.7919090, "lon": -73.9375566 }, + { "lat": 40.7917756, "lon": -73.9372379 } + ], + "tags": { + "alt_name": "Tito Puente Way", + "alt_name:etymology:wikidata": "Q317122", + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "East 110th Street", + "name:ru": "Восточная 110-я стрит", + "oneway": "yes", + "parking:condition:right:time_interval": "Tu, Fr 00:00-09:30, 11:00-24:00;Mo, We, Th, Sa, Su 00:00-24:00", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 652745786, + "bounds": { + "minlat": 40.7921784, + "minlon": -73.9444165, + "maxlat": 40.7948079, + "maxlon": -73.9382001 + }, + "nodes": [ + 42434384, + 7811793755, + 7924346737, + 42434385, + 7924346676, + 8735320757, + 8736179632, + 7924346886, + 42434386, + 7924346806, + 7924346936, + 42434389 + ], + "geometry": [ + { "lat": 40.7948079, "lon": -73.9444165 }, + { "lat": 40.7947700, "lon": -73.9443270 }, + { "lat": 40.7941863, "lon": -73.9429469 }, + { "lat": 40.7941280, "lon": -73.9428091 }, + { "lat": 40.7940723, "lon": -73.9426775 }, + { "lat": 40.7937297, "lon": -73.9418674 }, + { "lat": 40.7932586, "lon": -73.9407538 }, + { "lat": 40.7932334, "lon": -73.9406943 }, + { "lat": 40.7931803, "lon": -73.9405687 }, + { "lat": 40.7931299, "lon": -73.9404495 }, + { "lat": 40.7922363, "lon": -73.9383369 }, + { "lat": 40.7921784, "lon": -73.9382001 } + ], + "tags": { + "alt_name": "Tito Puente Way", + "alt_name:etymology:wikidata": "Q317122", + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "East 110th Street", + "name:ru": "Восточная 110-я стрит", + "oneway": "yes", + "parking:condition:left:time_interval": "Mo, Th 00:00-09:30, 11:00-24:00;Tu, We, Fr-Su 00:00-24:00", + "parking:condition:right:time_interval": "Tu, Fr 00:00-09:30, 11:00-24:00;Mo, We, Th, Sa, Su 00:00-24:00", + "parking:lane:both": "parallel", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 652875877, + "bounds": { + "minlat": 40.7114023, + "minlon": -74.0056719, + "maxlat": 40.7115274, + "maxlon": -74.0055370 + }, + "nodes": [ + 6119503129, + 11349151114, + 12301581919 + ], + "geometry": [ + { "lat": 40.7115274, "lon": -74.0056719 }, + { "lat": 40.7114677, "lon": -74.0056076 }, + { "lat": 40.7114023, "lon": -74.0055370 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Spruce Street", + "name:ko": "스프루스 스트리트", + "name:ru": "Спрус-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q20858363", + "wikipedia": "en:Spruce Street" + } +}, +{ + "type": "way", + "id": 652964856, + "bounds": { + "minlat": 40.8606839, + "minlon": -73.9810496, + "maxlat": 40.8622190, + "maxlon": -73.9794559 + }, + "nodes": [ + 6120132985, + 6120132986, + 6120132987, + 6120132988, + 6120132989, + 6120132990, + 6120132991 + ], + "geometry": [ + { "lat": 40.8606839, "lon": -73.9794559 }, + { "lat": 40.8614701, "lon": -73.9809484 }, + { "lat": 40.8615241, "lon": -73.9810139 }, + { "lat": 40.8615601, "lon": -73.9810407 }, + { "lat": 40.8616051, "lon": -73.9810496 }, + { "lat": 40.8616569, "lon": -73.9810318 }, + { "lat": 40.8622190, "lon": -73.9805332 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 653406301, + "bounds": { + "minlat": 40.7225692, + "minlon": -74.0070487, + "maxlat": 40.7230756, + "maxlon": -74.0063170 + }, + "nodes": [ + 42440838, + 4778174562, + 12416643516 + ], + "geometry": [ + { "lat": 40.7225692, "lon": -74.0063170 }, + { "lat": 40.7226560, "lon": -74.0064487 }, + { "lat": 40.7230756, "lon": -74.0070487 } + ], + "tags": { + "bicycle": "yes", + "change": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 653428657, + "bounds": { + "minlat": 40.7262442, + "minlon": -73.9960866, + "maxlat": 40.7265283, + "maxlon": -73.9958473 + }, + "nodes": [ + 1692433919, + 8309479026, + 8856405728 + ], + "geometry": [ + { "lat": 40.7265283, "lon": -73.9958473 }, + { "lat": 40.7264766, "lon": -73.9958902 }, + { "lat": 40.7262442, "lon": -73.9960866 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 653471088, + "bounds": { + "minlat": 40.7305763, + "minlon": -73.9904913, + "maxlat": 40.7310098, + "maxlon": -73.9904330 + }, + "nodes": [ + 42445558, + 4234425039, + 12179565609, + 595407648 + ], + "geometry": [ + { "lat": 40.7305763, "lon": -73.9904913 }, + { "lat": 40.7306375, "lon": -73.9904759 }, + { "lat": 40.7308406, "lon": -73.9904330 }, + { "lat": 40.7310098, "lon": -73.9904506 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "4th Avenue", + "name:ru": "4-я Авеню", + "name_1": "4 Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 653471089, + "bounds": { + "minlat": 40.7303951, + "minlon": -73.9904913, + "maxlat": 40.7305763, + "maxlon": -73.9900586 + }, + "nodes": [ + 42449014, + 12179565605, + 12179565606, + 4234425018, + 42445558 + ], + "geometry": [ + { "lat": 40.7303951, "lon": -73.9900586 }, + { "lat": 40.7305134, "lon": -73.9903423 }, + { "lat": 40.7305289, "lon": -73.9903789 }, + { "lat": 40.7305484, "lon": -73.9904250 }, + { "lat": 40.7305763, "lon": -73.9904913 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 9th Street", + "name:ru": "Восточная 9-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 653471090, + "bounds": { + "minlat": 40.7306356, + "minlon": -73.9919247, + "maxlat": 40.7311834, + "maxlon": -73.9906308 + }, + "nodes": [ + 42445548, + 4234425037, + 12179565603, + 8309479635, + 42428476 + ], + "geometry": [ + { "lat": 40.7306356, "lon": -73.9906308 }, + { "lat": 40.7306765, "lon": -73.9907273 }, + { "lat": 40.7311132, "lon": -73.9917588 }, + { "lat": 40.7311389, "lon": -73.9918196 }, + { "lat": 40.7311834, "lon": -73.9919247 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Wanamaker Place", + "name:etymology:wikidata": "Q921045", + "name_1": "East 9 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 653471091, + "bounds": { + "minlat": 40.7306356, + "minlon": -73.9906308, + "maxlat": 40.7306873, + "maxlon": -73.9905955 + }, + "nodes": [ + 42445548, + 4234425009 + ], + "geometry": [ + { "lat": 40.7306356, "lon": -73.9906308 }, + { "lat": 40.7306873, "lon": -73.9905955 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 653475492, + "bounds": { + "minlat": 40.8643194, + "minlon": -73.9909340, + "maxlat": 40.8648497, + "maxlon": -73.9899230 + }, + "nodes": [ + 5721683934, + 5721683935, + 10232196097, + 5721683936, + 5721683937, + 10232196104, + 5721683938 + ], + "geometry": [ + { "lat": 40.8644782, "lon": -73.9909340 }, + { "lat": 40.8644531, "lon": -73.9907740 }, + { "lat": 40.8644260, "lon": -73.9907151 }, + { "lat": 40.8643194, "lon": -73.9904833 }, + { "lat": 40.8643285, "lon": -73.9904194 }, + { "lat": 40.8648274, "lon": -73.9899443 }, + { "lat": 40.8648497, "lon": -73.9899230 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 653475498, + "bounds": { + "minlat": 40.8657254, + "minlon": -73.9906170, + "maxlat": 40.8662990, + "maxlon": -73.9898229 + }, + "nodes": [ + 6124217191, + 6124217192, + 6124217193, + 6124217194, + 6124217195, + 6124217196, + 6124217197, + 6124217198, + 6124217199, + 103296574 + ], + "geometry": [ + { "lat": 40.8662990, "lon": -73.9904140 }, + { "lat": 40.8659616, "lon": -73.9898316 }, + { "lat": 40.8659446, "lon": -73.9898229 }, + { "lat": 40.8659218, "lon": -73.9898244 }, + { "lat": 40.8659117, "lon": -73.9898281 }, + { "lat": 40.8657306, "lon": -73.9900398 }, + { "lat": 40.8657254, "lon": -73.9900555 }, + { "lat": 40.8657254, "lon": -73.9900780 }, + { "lat": 40.8657372, "lon": -73.9901110 }, + { "lat": 40.8660620, "lon": -73.9906170 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 653475505, + "bounds": { + "minlat": 40.8637475, + "minlon": -73.9903371, + "maxlat": 40.8638927, + "maxlon": -73.9899993 + }, + "nodes": [ + 6124217234, + 8064257379, + 6124217235 + ], + "geometry": [ + { "lat": 40.8637475, "lon": -73.9899993 }, + { "lat": 40.8637765, "lon": -73.9900754 }, + { "lat": 40.8638927, "lon": -73.9903371 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 653475506, + "bounds": { + "minlat": 40.8633356, + "minlon": -73.9906481, + "maxlat": 40.8636448, + "maxlon": -73.9902054 + }, + "nodes": [ + 6124217236, + 8064284187, + 8064284186, + 6124217237, + 8064257384, + 8064284188, + 6124217238, + 8064284185, + 6124217239, + 6124217240, + 6124217241 + ], + "geometry": [ + { "lat": 40.8635059, "lon": -73.9902054 }, + { "lat": 40.8636316, "lon": -73.9904765 }, + { "lat": 40.8636432, "lon": -73.9905009 }, + { "lat": 40.8636448, "lon": -73.9905263 }, + { "lat": 40.8636386, "lon": -73.9905445 }, + { "lat": 40.8636299, "lon": -73.9905599 }, + { "lat": 40.8635469, "lon": -73.9906389 }, + { "lat": 40.8635311, "lon": -73.9906481 }, + { "lat": 40.8635182, "lon": -73.9906473 }, + { "lat": 40.8634988, "lon": -73.9906307 }, + { "lat": 40.8633356, "lon": -73.9903419 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 653475509, + "bounds": { + "minlat": 40.8667425, + "minlon": -73.9926725, + "maxlat": 40.8667965, + "maxlon": -73.9923531 + }, + "nodes": [ + 103222185, + 6124217255, + 6124217256, + 6124217257, + 6124217258, + 6124217259, + 6124217260 + ], + "geometry": [ + { "lat": 40.8667433, "lon": -73.9926725 }, + { "lat": 40.8667466, "lon": -73.9925756 }, + { "lat": 40.8667425, "lon": -73.9925288 }, + { "lat": 40.8667775, "lon": -73.9924651 }, + { "lat": 40.8667965, "lon": -73.9924246 }, + { "lat": 40.8667965, "lon": -73.9923859 }, + { "lat": 40.8667863, "lon": -73.9923531 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 653475510, + "bounds": { + "minlat": 40.8662518, + "minlon": -73.9923531, + "maxlat": 40.8667863, + "maxlon": -73.9914204 + }, + "nodes": [ + 6124217260, + 6124217261, + 6124217262, + 6124217263, + 6124217267, + 6124217264 + ], + "geometry": [ + { "lat": 40.8667863, "lon": -73.9923531 }, + { "lat": 40.8665216, "lon": -73.9918296 }, + { "lat": 40.8664738, "lon": -73.9917584 }, + { "lat": 40.8664314, "lon": -73.9917313 }, + { "lat": 40.8663243, "lon": -73.9915459 }, + { "lat": 40.8662518, "lon": -73.9914204 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 653475511, + "bounds": { + "minlat": 40.8657027, + "minlon": -73.9922469, + "maxlat": 40.8662518, + "maxlon": -73.9914204 + }, + "nodes": [ + 6124217264, + 6124217270, + 6124217265, + 6124217266 + ], + "geometry": [ + { "lat": 40.8662518, "lon": -73.9914204 }, + { "lat": 40.8658484, "lon": -73.9917794 }, + { "lat": 40.8657027, "lon": -73.9919090 }, + { "lat": 40.8658765, "lon": -73.9922469 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 653475512, + "bounds": { + "minlat": 40.8658765, + "minlon": -73.9922469, + "maxlat": 40.8663243, + "maxlon": -73.9915459 + }, + "nodes": [ + 6124217267, + 6124217268, + 6124217269, + 6124217266 + ], + "geometry": [ + { "lat": 40.8663243, "lon": -73.9915459 }, + { "lat": 40.8659106, "lon": -73.9919036 }, + { "lat": 40.8660147, "lon": -73.9921225 }, + { "lat": 40.8658765, "lon": -73.9922469 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 653475513, + "bounds": { + "minlat": 40.8658484, + "minlon": -73.9919036, + "maxlat": 40.8659106, + "maxlon": -73.9917794 + }, + "nodes": [ + 6124217268, + 6124217270 + ], + "geometry": [ + { "lat": 40.8659106, "lon": -73.9919036 }, + { "lat": 40.8658484, "lon": -73.9917794 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 653475514, + "bounds": { + "minlat": 40.8656673, + "minlon": -73.9929368, + "maxlat": 40.8659207, + "maxlon": -73.9922469 + }, + "nodes": [ + 6124217266, + 6124217275, + 6124217271, + 6124217272, + 6124217273, + 6124217274 + ], + "geometry": [ + { "lat": 40.8658765, "lon": -73.9922469 }, + { "lat": 40.8657955, "lon": -73.9923914 }, + { "lat": 40.8657714, "lon": -73.9924343 }, + { "lat": 40.8657175, "lon": -73.9925139 }, + { "lat": 40.8656673, "lon": -73.9925537 }, + { "lat": 40.8659207, "lon": -73.9929368 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 653475515, + "bounds": { + "minlat": 40.8657955, + "minlon": -73.9929368, + "maxlat": 40.8660298, + "maxlon": -73.9923914 + }, + "nodes": [ + 6124217275, + 6124217276, + 6124217274 + ], + "geometry": [ + { "lat": 40.8657955, "lon": -73.9923914 }, + { "lat": 40.8660298, "lon": -73.9928373 }, + { "lat": 40.8659207, "lon": -73.9929368 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 653475516, + "bounds": { + "minlat": 40.8659207, + "minlon": -73.9930799, + "maxlat": 40.8659907, + "maxlon": -73.9929368 + }, + "nodes": [ + 6124217274, + 8075290225, + 6124217277 + ], + "geometry": [ + { "lat": 40.8659207, "lon": -73.9929368 }, + { "lat": 40.8659505, "lon": -73.9929928 }, + { "lat": 40.8659907, "lon": -73.9930799 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 653475517, + "bounds": { + "minlat": 40.8651192, + "minlon": -73.9935572, + "maxlat": 40.8657809, + "maxlon": -73.9928091 + }, + "nodes": [ + 6124217278, + 6124217279, + 6124217280, + 6124217281, + 8075290223, + 6124217282 + ], + "geometry": [ + { "lat": 40.8652935, "lon": -73.9935572 }, + { "lat": 40.8651192, "lon": -73.9931110 }, + { "lat": 40.8655607, "lon": -73.9928091 }, + { "lat": 40.8657125, "lon": -73.9930430 }, + { "lat": 40.8657477, "lon": -73.9931338 }, + { "lat": 40.8657809, "lon": -73.9932209 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 653475518, + "bounds": { + "minlat": 40.8657439, + "minlon": -73.9937916, + "maxlat": 40.8659554, + "maxlon": -73.9932432 + }, + "nodes": [ + 6124217283, + 8075290224, + 6124217293, + 6124217291, + 6124217284 + ], + "geometry": [ + { "lat": 40.8657439, "lon": -73.9932432 }, + { "lat": 40.8657870, "lon": -73.9933538 }, + { "lat": 40.8658192, "lon": -73.9934362 }, + { "lat": 40.8658820, "lon": -73.9936012 }, + { "lat": 40.8659554, "lon": -73.9937916 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 653475519, + "bounds": { + "minlat": 40.8669045, + "minlon": -73.9930514, + "maxlat": 40.8669645, + "maxlon": -73.9927456 + }, + "nodes": [ + 6124217285, + 8079561243, + 6124217308, + 8061356713, + 6124217286 + ], + "geometry": [ + { "lat": 40.8669045, "lon": -73.9930514 }, + { "lat": 40.8669160, "lon": -73.9929940 }, + { "lat": 40.8669273, "lon": -73.9929375 }, + { "lat": 40.8669452, "lon": -73.9928254 }, + { "lat": 40.8669645, "lon": -73.9927456 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 653475520, + "bounds": { + "minlat": 40.8659554, + "minlon": -73.9937916, + "maxlat": 40.8669045, + "maxlon": -73.9930514 + }, + "nodes": [ + 6124217284, + 6124217287, + 6124217288, + 6124217289, + 6124217290, + 6124217285 + ], + "geometry": [ + { "lat": 40.8659554, "lon": -73.9937916 }, + { "lat": 40.8668396, "lon": -73.9932059 }, + { "lat": 40.8668567, "lon": -73.9931885 }, + { "lat": 40.8668778, "lon": -73.9931624 }, + { "lat": 40.8668910, "lon": -73.9931327 }, + { "lat": 40.8669045, "lon": -73.9930514 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 653475521, + "bounds": { + "minlat": 40.8658820, + "minlon": -73.9936012, + "maxlat": 40.8669160, + "maxlon": -73.9929940 + }, + "nodes": [ + 6124217291, + 6124217292, + 8079561244, + 8079561243 + ], + "geometry": [ + { "lat": 40.8658820, "lon": -73.9936012 }, + { "lat": 40.8667816, "lon": -73.9930032 }, + { "lat": 40.8668749, "lon": -73.9930198 }, + { "lat": 40.8669160, "lon": -73.9929940 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 653475532, + "bounds": { + "minlat": 40.8677065, + "minlon": -73.9926417, + "maxlat": 40.8677950, + "maxlon": -73.9924207 + }, + "nodes": [ + 6124217365, + 8061356712, + 6124217366 + ], + "geometry": [ + { "lat": 40.8677950, "lon": -73.9926417 }, + { "lat": 40.8677519, "lon": -73.9925416 }, + { "lat": 40.8677065, "lon": -73.9924207 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 653475533, + "bounds": { + "minlat": 40.8674620, + "minlon": -73.9925059, + "maxlat": 40.8677065, + "maxlon": -73.9921209 + }, + "nodes": [ + 6124217366, + 6124217367, + 6124217368, + 6124217369, + 6124217366 + ], + "geometry": [ + { "lat": 40.8677065, "lon": -73.9924207 }, + { "lat": 40.8676020, "lon": -73.9925059 }, + { "lat": 40.8674620, "lon": -73.9922061 }, + { "lat": 40.8675665, "lon": -73.9921209 }, + { "lat": 40.8677065, "lon": -73.9924207 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 653475534, + "bounds": { + "minlat": 40.8669870, + "minlon": -73.9928442, + "maxlat": 40.8672553, + "maxlon": -73.9921080 + }, + "nodes": [ + 6124217370, + 6124217371, + 6124217372, + 6124217373, + 6124217374 + ], + "geometry": [ + { "lat": 40.8672077, "lon": -73.9928442 }, + { "lat": 40.8672158, "lon": -73.9926500 }, + { "lat": 40.8671546, "lon": -73.9926470 }, + { "lat": 40.8669870, "lon": -73.9923575 }, + { "lat": 40.8672553, "lon": -73.9921080 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 653475535, + "bounds": { + "minlat": 40.8672158, + "minlon": -73.9926543, + "maxlat": 40.8672838, + "maxlon": -73.9926500 + }, + "nodes": [ + 6124217371, + 6124217375 + ], + "geometry": [ + { "lat": 40.8672158, "lon": -73.9926500 }, + { "lat": 40.8672838, "lon": -73.9926543 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 653475543, + "bounds": { + "minlat": 40.8650660, + "minlon": -73.9943361, + "maxlat": 40.8652990, + "maxlon": -73.9937210 + }, + "nodes": [ + 6124217432, + 9909912498, + 6124217433, + 6124217434 + ], + "geometry": [ + { "lat": 40.8650660, "lon": -73.9937210 }, + { "lat": 40.8650965, "lon": -73.9937965 }, + { "lat": 40.8651278, "lon": -73.9938741 }, + { "lat": 40.8652990, "lon": -73.9943361 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 653534688, + "bounds": { + "minlat": 40.7286454, + "minlon": -73.9911373, + "maxlat": 40.7298936, + "maxlon": -73.9907402 + }, + "nodes": [ + 595407624, + 12179562765, + 12179562764, + 42434194, + 12179562763, + 42439243, + 42439249 + ], + "geometry": [ + { "lat": 40.7286454, "lon": -73.9911373 }, + { "lat": 40.7286722, "lon": -73.9911367 }, + { "lat": 40.7286988, "lon": -73.9911323 }, + { "lat": 40.7292208, "lon": -73.9909672 }, + { "lat": 40.7297509, "lon": -73.9907948 }, + { "lat": 40.7297899, "lon": -73.9907789 }, + { "lat": 40.7298936, "lon": -73.9907402 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Cooper Square", + "name:etymology:wikidata": "Q935291", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 653771599, + "bounds": { + "minlat": 40.8561888, + "minlon": -73.9963113, + "maxlat": 40.8567317, + "maxlon": -73.9958686 + }, + "nodes": [ + 6126761159, + 6126761169 + ], + "geometry": [ + { "lat": 40.8567317, "lon": -73.9958686 }, + { "lat": 40.8561888, "lon": -73.9963113 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 653771600, + "bounds": { + "minlat": 40.8561459, + "minlon": -73.9966483, + "maxlat": 40.8567548, + "maxlon": -73.9959070 + }, + "nodes": [ + 6126761170, + 6126761171, + 6126761172, + 6126761173, + 6126761174, + 6126761175, + 6126761176, + 6126761177, + 6126761178, + 6126761179, + 6126761180, + 10261680041, + 6126761181 + ], + "geometry": [ + { "lat": 40.8567548, "lon": -73.9959070 }, + { "lat": 40.8565684, "lon": -73.9961001 }, + { "lat": 40.8565575, "lon": -73.9961185 }, + { "lat": 40.8565526, "lon": -73.9961395 }, + { "lat": 40.8565506, "lon": -73.9961579 }, + { "lat": 40.8565516, "lon": -73.9961788 }, + { "lat": 40.8565506, "lon": -73.9961972 }, + { "lat": 40.8565486, "lon": -73.9962221 }, + { "lat": 40.8565436, "lon": -73.9962444 }, + { "lat": 40.8565387, "lon": -73.9962562 }, + { "lat": 40.8565248, "lon": -73.9962759 }, + { "lat": 40.8563549, "lon": -73.9964429 }, + { "lat": 40.8561459, "lon": -73.9966483 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 653771667, + "bounds": { + "minlat": 40.8587442, + "minlon": -73.9939861, + "maxlat": 40.8592173, + "maxlon": -73.9936553 + }, + "nodes": [ + 6126762433, + 6126762434, + 6126762435, + 6126762436 + ], + "geometry": [ + { "lat": 40.8592173, "lon": -73.9936553 }, + { "lat": 40.8590114, "lon": -73.9938825 }, + { "lat": 40.8588729, "lon": -73.9939861 }, + { "lat": 40.8587442, "lon": -73.9937617 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 653771733, + "bounds": { + "minlat": 40.8612157, + "minlon": -73.9887585, + "maxlat": 40.8615576, + "maxlon": -73.9882441 + }, + "nodes": [ + 6126762859, + 6126762860, + 6126762861, + 6126762862 + ], + "geometry": [ + { "lat": 40.8612157, "lon": -73.9883212 }, + { "lat": 40.8614681, "lon": -73.9887585 }, + { "lat": 40.8615576, "lon": -73.9886651 }, + { "lat": 40.8613246, "lon": -73.9882441 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 653771734, + "bounds": { + "minlat": 40.8617399, + "minlon": -73.9886809, + "maxlat": 40.8620102, + "maxlon": -73.9884058 + }, + "nodes": [ + 6126762863, + 6126762864 + ], + "geometry": [ + { "lat": 40.8620102, "lon": -73.9884058 }, + { "lat": 40.8617399, "lon": -73.9886809 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 653771765, + "bounds": { + "minlat": 40.8640716, + "minlon": -73.9875173, + "maxlat": 40.8643982, + "maxlon": -73.9870260 + }, + "nodes": [ + 6126763032, + 6126763033, + 6126763034, + 6126763035, + 6126763036, + 8066237347, + 6126763037, + 6126763038, + 6126763039 + ], + "geometry": [ + { "lat": 40.8640716, "lon": -73.9870731 }, + { "lat": 40.8642451, "lon": -73.9870260 }, + { "lat": 40.8642861, "lon": -73.9870641 }, + { "lat": 40.8643915, "lon": -73.9873029 }, + { "lat": 40.8643962, "lon": -73.9873576 }, + { "lat": 40.8643982, "lon": -73.9873924 }, + { "lat": 40.8643896, "lon": -73.9874049 }, + { "lat": 40.8643661, "lon": -73.9874372 }, + { "lat": 40.8642611, "lon": -73.9875173 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 653771766, + "bounds": { + "minlat": 40.8642451, + "minlon": -73.9870260, + "maxlat": 40.8646375, + "maxlon": -73.9867386 + }, + "nodes": [ + 6126763033, + 8066237344, + 6126763040, + 6126763051, + 8066237346, + 6126763041 + ], + "geometry": [ + { "lat": 40.8642451, "lon": -73.9870260 }, + { "lat": 40.8643090, "lon": -73.9869862 }, + { "lat": 40.8644583, "lon": -73.9869024 }, + { "lat": 40.8645514, "lon": -73.9868173 }, + { "lat": 40.8645708, "lon": -73.9867996 }, + { "lat": 40.8646375, "lon": -73.9867386 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 653771767, + "bounds": { + "minlat": 40.8646375, + "minlon": -73.9870756, + "maxlat": 40.8648814, + "maxlon": -73.9866947 + }, + "nodes": [ + 6126763041, + 6126763042, + 6126763043, + 6126763044, + 6126763045, + 6126763041 + ], + "geometry": [ + { "lat": 40.8646375, "lon": -73.9867386 }, + { "lat": 40.8647652, "lon": -73.9870756 }, + { "lat": 40.8648814, "lon": -73.9869986 }, + { "lat": 40.8647837, "lon": -73.9867407 }, + { "lat": 40.8647038, "lon": -73.9866947 }, + { "lat": 40.8646375, "lon": -73.9867386 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 653771769, + "bounds": { + "minlat": 40.8643248, + "minlon": -73.9868173, + "maxlat": 40.8645514, + "maxlon": -73.9860728 + }, + "nodes": [ + 6126763051, + 6126763052, + 6126763053, + 6126763054, + 6126763055, + 6126763056, + 6126763057 + ], + "geometry": [ + { "lat": 40.8645514, "lon": -73.9868173 }, + { "lat": 40.8644489, "lon": -73.9865616 }, + { "lat": 40.8644329, "lon": -73.9864770 }, + { "lat": 40.8644225, "lon": -73.9863713 }, + { "lat": 40.8644150, "lon": -73.9863041 }, + { "lat": 40.8643906, "lon": -73.9862320 }, + { "lat": 40.8643248, "lon": -73.9860728 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 653771771, + "bounds": { + "minlat": 40.8646975, + "minlon": -73.9864163, + "maxlat": 40.8654373, + "maxlon": -73.9858079 + }, + "nodes": [ + 6126763062, + 6126763063, + 6126763064, + 6126763065, + 6126763066, + 8073364851 + ], + "geometry": [ + { "lat": 40.8646975, "lon": -73.9858079 }, + { "lat": 40.8649390, "lon": -73.9863895 }, + { "lat": 40.8649947, "lon": -73.9864163 }, + { "lat": 40.8651579, "lon": -73.9863113 }, + { "lat": 40.8652636, "lon": -73.9863220 }, + { "lat": 40.8654373, "lon": -73.9862023 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 653849541, + "bounds": { + "minlat": 40.8554849, + "minlon": -73.9829315, + "maxlat": 40.8560025, + "maxlon": -73.9820554 + }, + "nodes": [ + 103146633, + 7439311450, + 7434431183, + 7434431004, + 7434430988, + 7434430967, + 7434430591, + 5362397427, + 299172093 + ], + "geometry": [ + { "lat": 40.8554849, "lon": -73.9820554 }, + { "lat": 40.8556614, "lon": -73.9823538 }, + { "lat": 40.8557060, "lon": -73.9824293 }, + { "lat": 40.8557437, "lon": -73.9824933 }, + { "lat": 40.8557886, "lon": -73.9825692 }, + { "lat": 40.8558363, "lon": -73.9826497 }, + { "lat": 40.8559110, "lon": -73.9827762 }, + { "lat": 40.8559495, "lon": -73.9828413 }, + { "lat": 40.8560025, "lon": -73.9829315 } + ], + "tags": { + "highway": "residential", + "name": "Hazlitt Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hazlitt", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 654061107, + "bounds": { + "minlat": 40.7144911, + "minlon": -73.9912270, + "maxlat": 40.7145329, + "maxlon": -73.9906627 + }, + "nodes": [ + 6129309605, + 8372982793, + 42440677 + ], + "geometry": [ + { "lat": 40.7145329, "lon": -73.9906627 }, + { "lat": 40.7145157, "lon": -73.9908940 }, + { "lat": 40.7144911, "lon": -73.9912270 } + ], + "tags": { + "highway": "pedestrian", + "name": "Division Street", + "surface": "asphalt", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 654360406, + "bounds": { + "minlat": 40.8605893, + "minlon": -73.9820655, + "maxlat": 40.8608038, + "maxlon": -73.9817820 + }, + "nodes": [ + 6131679807, + 6131679808, + 6131679809, + 6131679810, + 6131679811, + 6131679812, + 6131679813, + 103260366, + 6131679796, + 6131679799, + 6131679800, + 6131679801, + 6131679802, + 6131679803, + 6131679804, + 6131679805, + 6131679806, + 6131679797, + 6131679798, + 6131679807 + ], + "geometry": [ + { "lat": 40.8607942, "lon": -73.9819837 }, + { "lat": 40.8607729, "lon": -73.9820242 }, + { "lat": 40.8607424, "lon": -73.9820526 }, + { "lat": 40.8607063, "lon": -73.9820655 }, + { "lat": 40.8606691, "lon": -73.9820613 }, + { "lat": 40.8606353, "lon": -73.9820405 }, + { "lat": 40.8606088, "lon": -73.9820057 }, + { "lat": 40.8605929, "lon": -73.9819610 }, + { "lat": 40.8605893, "lon": -73.9819168 }, + { "lat": 40.8605962, "lon": -73.9818733 }, + { "lat": 40.8606130, "lon": -73.9818347 }, + { "lat": 40.8606379, "lon": -73.9818049 }, + { "lat": 40.8606686, "lon": -73.9817867 }, + { "lat": 40.8607021, "lon": -73.9817820 }, + { "lat": 40.8607350, "lon": -73.9817911 }, + { "lat": 40.8607641, "lon": -73.9818132 }, + { "lat": 40.8607867, "lon": -73.9818462 }, + { "lat": 40.8608004, "lon": -73.9818868 }, + { "lat": 40.8608038, "lon": -73.9819359 }, + { "lat": 40.8607942, "lon": -73.9819837 } + ], + "tags": { + "highway": "residential", + "name": "Warwick Lane", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 654560917, + "bounds": { + "minlat": 40.7257960, + "minlon": -73.9866230, + "maxlat": 40.7264090, + "maxlon": -73.9861760 + }, + "nodes": [ + 42453166, + 7977873301, + 7977873293, + 42444827 + ], + "geometry": [ + { "lat": 40.7257960, "lon": -73.9866230 }, + { "lat": 40.7258559, "lon": -73.9865800 }, + { "lat": 40.7263550, "lon": -73.9862154 }, + { "lat": 40.7264090, "lon": -73.9861760 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 654560919, + "bounds": { + "minlat": 40.7245840, + "minlon": -73.9875020, + "maxlat": 40.7252030, + "maxlon": -73.9870530 + }, + "nodes": [ + 42437339, + 8309479301, + 7977873311, + 42455867 + ], + "geometry": [ + { "lat": 40.7245840, "lon": -73.9875020 }, + { "lat": 40.7246418, "lon": -73.9874598 }, + { "lat": 40.7251406, "lon": -73.9870983 }, + { "lat": 40.7252030, "lon": -73.9870530 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 654560920, + "bounds": { + "minlat": 40.7522070, + "minlon": -73.9673248, + "maxlat": 40.7531793, + "maxlon": -73.9666164 + }, + "nodes": [ + 8224676522, + 8224618703, + 9140864965, + 9140864966, + 9140864964, + 9140864969, + 3831856763 + ], + "geometry": [ + { "lat": 40.7522070, "lon": -73.9673248 }, + { "lat": 40.7524115, "lon": -73.9671958 }, + { "lat": 40.7525215, "lon": -73.9671145 }, + { "lat": 40.7526701, "lon": -73.9669962 }, + { "lat": 40.7528664, "lon": -73.9668511 }, + { "lat": 40.7531409, "lon": -73.9666516 }, + { "lat": 40.7531793, "lon": -73.9666164 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "highway": "primary", + "lanes": "1", + "name": "1st Avenue Tunnel", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 654560922, + "bounds": { + "minlat": 40.7520804, + "minlon": -73.9674096, + "maxlat": 40.7522070, + "maxlon": -73.9673248 + }, + "nodes": [ + 6133327722, + 8224676522 + ], + "geometry": [ + { "lat": 40.7520804, "lon": -73.9674096 }, + { "lat": 40.7522070, "lon": -73.9673248 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "highway": "primary", + "lanes": "2", + "name": "1st Avenue Tunnel", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "none|merge_to_left" + } +}, +{ + "type": "way", + "id": 654560924, + "bounds": { + "minlat": 40.7243978, + "minlon": -73.9876372, + "maxlat": 40.7245840, + "maxlon": -73.9875020 + }, + "nodes": [ + 6133355298, + 5341393941, + 8309479302, + 42437339 + ], + "geometry": [ + { "lat": 40.7243978, "lon": -73.9876372 }, + { "lat": 40.7244472, "lon": -73.9876013 }, + { "lat": 40.7245294, "lon": -73.9875416 }, + { "lat": 40.7245840, "lon": -73.9875020 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 654560928, + "bounds": { + "minlat": 40.7256129, + "minlon": -73.9867557, + "maxlat": 40.7257960, + "maxlon": -73.9866230 + }, + "nodes": [ + 6133355297, + 7977873302, + 42453166 + ], + "geometry": [ + { "lat": 40.7256129, "lon": -73.9867557 }, + { "lat": 40.7257362, "lon": -73.9866663 }, + { "lat": 40.7257960, "lon": -73.9866230 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 654561408, + "bounds": { + "minlat": 40.7015523, + "minlon": -74.0138454, + "maxlat": 40.7020924, + "maxlon": -74.0137997 + }, + "nodes": [ + 607911362, + 11691170381, + 6136264774 + ], + "geometry": [ + { "lat": 40.7020924, "lon": -74.0138454 }, + { "lat": 40.7019825, "lon": -74.0138361 }, + { "lat": 40.7015523, "lon": -74.0137997 } + ], + "tags": { + "access": "no", + "bus": "yes", + "description": "NYCT bus only", + "highway": "service", + "lit": "yes", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 654561413, + "bounds": { + "minlat": 40.7479748, + "minlon": -73.9705957, + "maxlat": 40.7481470, + "maxlon": -73.9705017 + }, + "nodes": [ + 3831856757, + 1701844679 + ], + "geometry": [ + { "lat": 40.7479748, "lon": -73.9705957 }, + { "lat": 40.7481470, "lon": -73.9705017 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 654756704, + "bounds": { + "minlat": 40.8031531, + "minlon": -73.9326151, + "maxlat": 40.8032417, + "maxlon": -73.9324054 + }, + "nodes": [ + 6133388352, + 6162524940 + ], + "geometry": [ + { "lat": 40.8031531, "lon": -73.9324054 }, + { "lat": 40.8032417, "lon": -73.9326151 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "name": "East 126th Street", + "oneway": "yes", + "sidewalk": "both" + } +}, +{ + "type": "way", + "id": 654948582, + "bounds": { + "minlat": 40.8622118, + "minlon": -73.9805188, + "maxlat": 40.8629070, + "maxlon": -73.9798867 + }, + "nodes": [ + 6136897486, + 6136897513, + 6136897487 + ], + "geometry": [ + { "lat": 40.8622118, "lon": -73.9805188 }, + { "lat": 40.8626116, "lon": -73.9801552 }, + { "lat": 40.8629070, "lon": -73.9798867 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 654948583, + "bounds": { + "minlat": 40.8621101, + "minlon": -73.9815342, + "maxlat": 40.8633760, + "maxlon": -73.9784757 + }, + "nodes": [ + 6136897488, + 6136897489, + 6136897490, + 6136897491, + 6136897492, + 6136897493, + 6136897494, + 6136897495, + 6136897496, + 6136897497, + 6136897498, + 6136897499, + 6136897500, + 6136897501, + 6136897502, + 6136897503, + 6136897504, + 6136897505, + 6136897506, + 6136897507, + 6136897508, + 6136897487, + 6136897509, + 6136897510 + ], + "geometry": [ + { "lat": 40.8627205, "lon": -73.9815342 }, + { "lat": 40.8632808, "lon": -73.9810710 }, + { "lat": 40.8633194, "lon": -73.9810312 }, + { "lat": 40.8633604, "lon": -73.9809802 }, + { "lat": 40.8633724, "lon": -73.9809467 }, + { "lat": 40.8633760, "lon": -73.9809180 }, + { "lat": 40.8633664, "lon": -73.9808797 }, + { "lat": 40.8633447, "lon": -73.9808287 }, + { "lat": 40.8633182, "lon": -73.9807841 }, + { "lat": 40.8632929, "lon": -73.9807570 }, + { "lat": 40.8632675, "lon": -73.9807347 }, + { "lat": 40.8632482, "lon": -73.9807060 }, + { "lat": 40.8632229, "lon": -73.9806550 }, + { "lat": 40.8631928, "lon": -73.9805928 }, + { "lat": 40.8631614, "lon": -73.9805019 }, + { "lat": 40.8631397, "lon": -73.9804318 }, + { "lat": 40.8631072, "lon": -73.9803250 }, + { "lat": 40.8630710, "lon": -73.9802038 }, + { "lat": 40.8630276, "lon": -73.9801066 }, + { "lat": 40.8629794, "lon": -73.9800109 }, + { "lat": 40.8629300, "lon": -73.9799153 }, + { "lat": 40.8629070, "lon": -73.9798867 }, + { "lat": 40.8628444, "lon": -73.9798084 }, + { "lat": 40.8621101, "lon": -73.9784757 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 654948584, + "bounds": { + "minlat": 40.8614756, + "minlon": -73.9790512, + "maxlat": 40.8621101, + "maxlon": -73.9784757 + }, + "nodes": [ + 6136897511, + 6136897512, + 6136897510 + ], + "geometry": [ + { "lat": 40.8614756, "lon": -73.9790512 }, + { "lat": 40.8618367, "lon": -73.9787237 }, + { "lat": 40.8621101, "lon": -73.9784757 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 654948585, + "bounds": { + "minlat": 40.8618367, + "minlon": -73.9801552, + "maxlat": 40.8626116, + "maxlon": -73.9787237 + }, + "nodes": [ + 6136897512, + 6136897513 + ], + "geometry": [ + { "lat": 40.8618367, "lon": -73.9787237 }, + { "lat": 40.8626116, "lon": -73.9801552 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 654993302, + "bounds": { + "minlat": 40.8680249, + "minlon": -73.9856960, + "maxlat": 40.8687318, + "maxlon": -73.9832525 + }, + "nodes": [ + 6137185199, + 10288917571, + 10288917565, + 6137185200, + 6137185201, + 6137185202, + 6137185203, + 6137185204, + 6137185205, + 6137185206, + 10288917570, + 8076363718 + ], + "geometry": [ + { "lat": 40.8682570, "lon": -73.9832525 }, + { "lat": 40.8683125, "lon": -73.9833652 }, + { "lat": 40.8683506, "lon": -73.9834450 }, + { "lat": 40.8684157, "lon": -73.9835742 }, + { "lat": 40.8687265, "lon": -73.9841239 }, + { "lat": 40.8687318, "lon": -73.9841611 }, + { "lat": 40.8687258, "lon": -73.9841852 }, + { "lat": 40.8687083, "lon": -73.9842074 }, + { "lat": 40.8680249, "lon": -73.9849257 }, + { "lat": 40.8684305, "lon": -73.9856133 }, + { "lat": 40.8684006, "lon": -73.9856404 }, + { "lat": 40.8683393, "lon": -73.9856960 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 654995291, + "bounds": { + "minlat": 40.8655590, + "minlon": -73.9914734, + "maxlat": 40.8661615, + "maxlon": -73.9907579 + }, + "nodes": [ + 6137202455, + 6137202456, + 6137202457, + 6137202458, + 6137202459, + 6137202460, + 6137202461, + 6137202462, + 6137202463 + ], + "geometry": [ + { "lat": 40.8659059, "lon": -73.9907579 }, + { "lat": 40.8660511, "lon": -73.9909079 }, + { "lat": 40.8661519, "lon": -73.9910837 }, + { "lat": 40.8661615, "lon": -73.9911297 }, + { "lat": 40.8661502, "lon": -73.9911619 }, + { "lat": 40.8657912, "lon": -73.9914734 }, + { "lat": 40.8657712, "lon": -73.9914711 }, + { "lat": 40.8657251, "lon": -73.9914240 }, + { "lat": 40.8655590, "lon": -73.9910710 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 654995330, + "bounds": { + "minlat": 40.8614237, + "minlon": -73.9953730, + "maxlat": 40.8616909, + "maxlon": -73.9951545 + }, + "nodes": [ + 6137206342, + 10122889652, + 6137206343, + 6621835767 + ], + "geometry": [ + { "lat": 40.8616909, "lon": -73.9952507 }, + { "lat": 40.8616445, "lon": -73.9952856 }, + { "lat": 40.8615282, "lon": -73.9953730 }, + { "lat": 40.8614237, "lon": -73.9951545 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 655255187, + "bounds": { + "minlat": 40.7130535, + "minlon": -73.9941106, + "maxlat": 40.7131203, + "maxlon": -73.9932525 + }, + "nodes": [ + 496707000, + 11638918054, + 42435920, + 11506378186, + 7113914108 + ], + "geometry": [ + { "lat": 40.7130535, "lon": -73.9941106 }, + { "lat": 40.7130897, "lon": -73.9936690 }, + { "lat": 40.7130924, "lon": -73.9936348 }, + { "lat": 40.7131187, "lon": -73.9932716 }, + { "lat": 40.7131203, "lon": -73.9932525 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Henry Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "헨리 스트리트", + "name:ru": "Хенри-стрит", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "wikidata": "Q5728794", + "wikipedia": "en:Henry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 655260632, + "bounds": { + "minlat": 40.7120732, + "minlon": -74.0119776, + "maxlat": 40.7125490, + "maxlon": -74.0117899 + }, + "nodes": [ + 12026658708, + 11301575845, + 1431790464 + ], + "geometry": [ + { "lat": 40.7125490, "lon": -74.0117899 }, + { "lat": 40.7121276, "lon": -74.0119562 }, + { "lat": 40.7120732, "lon": -74.0119776 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "yes", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through;right", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 655499757, + "bounds": { + "minlat": 40.7134329, + "minlon": -74.0137098, + "maxlat": 40.7136952, + "maxlon": -74.0131236 + }, + "nodes": [ + 12301250732, + 10282972339, + 10282972340, + 4143835083, + 42453395 + ], + "geometry": [ + { "lat": 40.7134329, "lon": -74.0131236 }, + { "lat": 40.7134955, "lon": -74.0132653 }, + { "lat": 40.7135984, "lon": -74.0134904 }, + { "lat": 40.7136370, "lon": -74.0135765 }, + { "lat": 40.7136952, "lon": -74.0137098 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "foot": "yes", + "hgv": "local", + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "permit", + "name": "Vesey Street", + "name:etymology:wikidata": "Q8019717", + "name:etymology:wikipedia": "en:William Vessey", + "name:ko": "비지 스트리트", + "name:ru": "Визи-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right", + "wikidata": "Q1592975", + "wikipedia": "en:Vesey Street" + } +}, +{ + "type": "way", + "id": 656827422, + "bounds": { + "minlat": 40.7021680, + "minlon": -74.0138048, + "maxlat": 40.7024066, + "maxlon": -74.0137834 + }, + "nodes": [ + 279151954, + 11013387613, + 11691170379, + 4024169244, + 4379778651, + 3274291207 + ], + "geometry": [ + { "lat": 40.7024066, "lon": -74.0137834 }, + { "lat": 40.7023351, "lon": -74.0137993 }, + { "lat": 40.7023180, "lon": -74.0138010 }, + { "lat": 40.7022811, "lon": -74.0138048 }, + { "lat": 40.7022391, "lon": -74.0138044 }, + { "lat": 40.7021680, "lon": -74.0138015 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Peter Minuit Plaza", + "name:etymology:wikidata": "Q312889", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 656837023, + "bounds": { + "minlat": 40.8631438, + "minlon": -73.9090681, + "maxlat": 40.8635600, + "maxlon": -73.9074961 + }, + "nodes": [ + 9903143784, + 9227772207, + 2899216719, + 2899216720, + 2979499044, + 2899216721, + 2899216723, + 2899216759, + 2899216722, + 2899216724, + 42750590 + ], + "geometry": [ + { "lat": 40.8631438, "lon": -73.9090681 }, + { "lat": 40.8631572, "lon": -73.9089152 }, + { "lat": 40.8631723, "lon": -73.9088546 }, + { "lat": 40.8632748, "lon": -73.9086445 }, + { "lat": 40.8632933, "lon": -73.9086083 }, + { "lat": 40.8633996, "lon": -73.9084003 }, + { "lat": 40.8634585, "lon": -73.9082523 }, + { "lat": 40.8635045, "lon": -73.9081177 }, + { "lat": 40.8635194, "lon": -73.9080736 }, + { "lat": 40.8635512, "lon": -73.9078100 }, + { "lat": 40.8635600, "lon": -73.9074961 } + ], + "tags": { + "highway": "residential", + "name": "Webb Avenue", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webb", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 657059020, + "bounds": { + "minlat": 40.8197265, + "minlon": -73.9601312, + "maxlat": 40.8203291, + "maxlon": -73.9596517 + }, + "nodes": [ + 42425242, + 3874689580, + 3874689573, + 42424701 + ], + "geometry": [ + { "lat": 40.8203291, "lon": -73.9596517 }, + { "lat": 40.8202796, "lon": -73.9596909 }, + { "lat": 40.8197912, "lon": -73.9600792 }, + { "lat": 40.8197265, "lon": -73.9601312 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Marginal Street", + "oneway": "yes", + "turn:lanes": "left;through|through" + } +}, +{ + "type": "way", + "id": 657667332, + "bounds": { + "minlat": 40.8058615, + "minlon": -73.9333826, + "maxlat": 40.8065690, + "maxlon": -73.9326917 + }, + "nodes": [ + 373755525, + 5871779254 + ], + "geometry": [ + { "lat": 40.8065690, "lon": -73.9333826 }, + { "lat": 40.8058615, "lon": -73.9326917 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 658006856, + "bounds": { + "minlat": 40.7832515, + "minlon": -73.9448639, + "maxlat": 40.7833110, + "maxlon": -73.9447201 + }, + "nodes": [ + 6162473819, + 4779073679 + ], + "geometry": [ + { "lat": 40.7833110, "lon": -73.9448639 }, + { "lat": 40.7832515, "lon": -73.9447201 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "lanes:backward": "2", + "lanes:forward": "4", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|through|through", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 658012543, + "bounds": { + "minlat": 40.8032417, + "minlon": -73.9329255, + "maxlat": 40.8033683, + "maxlon": -73.9326151 + }, + "nodes": [ + 6162524940, + 5105109986, + 42423189 + ], + "geometry": [ + { "lat": 40.8032417, "lon": -73.9326151 }, + { "lat": 40.8032873, "lon": -73.9327246 }, + { "lat": 40.8033683, "lon": -73.9329255 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "name": "East 126th Street", + "oneway": "yes", + "sidewalk": "both" + } +}, +{ + "type": "way", + "id": 658097764, + "bounds": { + "minlat": 40.7020924, + "minlon": -74.0138454, + "maxlat": 40.7021680, + "maxlon": -74.0138015 + }, + "nodes": [ + 607911362, + 11013387612, + 11013387610, + 11013387611, + 3274291207 + ], + "geometry": [ + { "lat": 40.7020924, "lon": -74.0138454 }, + { "lat": 40.7021055, "lon": -74.0138301 }, + { "lat": 40.7021194, "lon": -74.0138179 }, + { "lat": 40.7021430, "lon": -74.0138055 }, + { "lat": 40.7021680, "lon": -74.0138015 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Peter Minuit Plaza", + "name:etymology:wikidata": "Q312889", + "oneway": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 658097765, + "bounds": { + "minlat": 40.7014570, + "minlon": -74.0137997, + "maxlat": 40.7020682, + "maxlon": -74.0133492 + }, + "nodes": [ + 6136264774, + 3274291182, + 3274291181, + 3274291179, + 3274291177, + 3274291175, + 3274291174, + 3274291176, + 3274291178, + 3274291180, + 3274291183, + 3274291184, + 3274291185, + 3274291186, + 3274291187, + 3274291188, + 6133359419 + ], + "geometry": [ + { "lat": 40.7015523, "lon": -74.0137997 }, + { "lat": 40.7015271, "lon": -74.0137976 }, + { "lat": 40.7015039, "lon": -74.0137887 }, + { "lat": 40.7014837, "lon": -74.0137711 }, + { "lat": 40.7014684, "lon": -74.0137465 }, + { "lat": 40.7014592, "lon": -74.0137170 }, + { "lat": 40.7014570, "lon": -74.0136853 }, + { "lat": 40.7014620, "lon": -74.0136541 }, + { "lat": 40.7014737, "lon": -74.0136263 }, + { "lat": 40.7014912, "lon": -74.0136042 }, + { "lat": 40.7016932, "lon": -74.0133794 }, + { "lat": 40.7017271, "lon": -74.0133548 }, + { "lat": 40.7017508, "lon": -74.0133492 }, + { "lat": 40.7017822, "lon": -74.0133492 }, + { "lat": 40.7018110, "lon": -74.0133593 }, + { "lat": 40.7018339, "lon": -74.0133794 }, + { "lat": 40.7020682, "lon": -74.0137247 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "note": "NYCT bus only", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 658193987, + "bounds": { + "minlat": 40.7317950, + "minlon": -73.9256564, + "maxlat": 40.7325236, + "maxlon": -73.9251135 + }, + "nodes": [ + 6163924028, + 12162675435, + 12162675434, + 9194902536, + 6548383017 + ], + "geometry": [ + { "lat": 40.7325236, "lon": -73.9251135 }, + { "lat": 40.7324277, "lon": -73.9251858 }, + { "lat": 40.7323191, "lon": -73.9252662 }, + { "lat": 40.7321885, "lon": -73.9253581 }, + { "lat": 40.7317950, "lon": -73.9256564 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 658193988, + "bounds": { + "minlat": 40.7253841, + "minlon": -73.9327549, + "maxlat": 40.7312259, + "maxlon": -73.9260349 + }, + "nodes": [ + 5978376418, + 9194902692, + 12162675433, + 9194902693, + 12162675432, + 476025009, + 12162675431, + 9194902694, + 12162675430, + 476025010, + 12162675429, + 476025011, + 12162675428, + 476025012, + 12162675427, + 9194902695, + 476025013, + 12162675426, + 6760423916, + 12162675425, + 9194902749, + 12162675424, + 3625774127, + 12162675423, + 6760423915, + 11872982354, + 476025015, + 12162675422, + 476025016, + 12162675421, + 6760423914, + 12162675420, + 4847731741, + 12162675419, + 9194902750, + 12162675418, + 8896031649, + 12162675417, + 476025019, + 9194902751 + ], + "geometry": [ + { "lat": 40.7312259, "lon": -73.9260349 }, + { "lat": 40.7302652, "lon": -73.9266749 }, + { "lat": 40.7301632, "lon": -73.9267431 }, + { "lat": 40.7300616, "lon": -73.9268099 }, + { "lat": 40.7299706, "lon": -73.9268734 }, + { "lat": 40.7298709, "lon": -73.9269459 }, + { "lat": 40.7297733, "lon": -73.9270206 }, + { "lat": 40.7296751, "lon": -73.9270941 }, + { "lat": 40.7295802, "lon": -73.9271677 }, + { "lat": 40.7294878, "lon": -73.9272419 }, + { "lat": 40.7293937, "lon": -73.9273230 }, + { "lat": 40.7293026, "lon": -73.9274036 }, + { "lat": 40.7292117, "lon": -73.9274870 }, + { "lat": 40.7291188, "lon": -73.9275779 }, + { "lat": 40.7290364, "lon": -73.9276597 }, + { "lat": 40.7289539, "lon": -73.9277460 }, + { "lat": 40.7288647, "lon": -73.9278439 }, + { "lat": 40.7268136, "lon": -73.9301777 }, + { "lat": 40.7267114, "lon": -73.9302970 }, + { "lat": 40.7266225, "lon": -73.9304034 }, + { "lat": 40.7265401, "lon": -73.9305029 }, + { "lat": 40.7264687, "lon": -73.9305943 }, + { "lat": 40.7263992, "lon": -73.9306936 }, + { "lat": 40.7263281, "lon": -73.9307895 }, + { "lat": 40.7262488, "lon": -73.9309027 }, + { "lat": 40.7261811, "lon": -73.9310061 }, + { "lat": 40.7261125, "lon": -73.9311142 }, + { "lat": 40.7260403, "lon": -73.9312356 }, + { "lat": 40.7259744, "lon": -73.9313492 }, + { "lat": 40.7259064, "lon": -73.9314736 }, + { "lat": 40.7258473, "lon": -73.9315849 }, + { "lat": 40.7257857, "lon": -73.9317063 }, + { "lat": 40.7257294, "lon": -73.9318278 }, + { "lat": 40.7256727, "lon": -73.9319588 }, + { "lat": 40.7256150, "lon": -73.9320910 }, + { "lat": 40.7255583, "lon": -73.9322305 }, + { "lat": 40.7255055, "lon": -73.9323726 }, + { "lat": 40.7254641, "lon": -73.9324978 }, + { "lat": 40.7254226, "lon": -73.9326268 }, + { "lat": 40.7253841, "lon": -73.9327549 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "|||Meeker Avenue;Morgan Avenue", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "turn:lanes": "|||slight_right", + "wikidata": "Q6433023", + "wikipedia": "en:Kosciuszko Bridge" + } +}, +{ + "type": "way", + "id": 658306222, + "bounds": { + "minlat": 40.8336360, + "minlon": -73.9303550, + "maxlat": 40.8346700, + "maxlon": -73.9261400 + }, + "nodes": [ + 42746312, + 42746315, + 42746320, + 42734280, + 42737576, + 8285600999, + 13809338837, + 42746326 + ], + "geometry": [ + { "lat": 40.8336360, "lon": -73.9261400 }, + { "lat": 40.8339183, "lon": -73.9270109 }, + { "lat": 40.8341700, "lon": -73.9277830 }, + { "lat": 40.8344180, "lon": -73.9285370 }, + { "lat": 40.8346700, "lon": -73.9293800 }, + { "lat": 40.8345326, "lon": -73.9301919 }, + { "lat": 40.8345198, "lon": -73.9302678 }, + { "lat": 40.8345050, "lon": -73.9303550 } + ], + "tags": { + "highway": "residential", + "name": "West 165th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 658306224, + "bounds": { + "minlat": 40.8309970, + "minlon": -73.9281080, + "maxlat": 40.8336360, + "maxlon": -73.9261400 + }, + "nodes": [ + 42746312, + 5116063225, + 7059183403, + 7226470540, + 13809338817, + 42763266, + 13809338816, + 42771460 + ], + "geometry": [ + { "lat": 40.8336360, "lon": -73.9261400 }, + { "lat": 40.8331389, "lon": -73.9265217 }, + { "lat": 40.8330606, "lon": -73.9265818 }, + { "lat": 40.8324759, "lon": -73.9270308 }, + { "lat": 40.8321813, "lon": -73.9272571 }, + { "lat": 40.8321450, "lon": -73.9272850 }, + { "lat": 40.8320947, "lon": -73.9273210 }, + { "lat": 40.8309970, "lon": -73.9281080 } + ], + "tags": { + "highway": "residential", + "name": "Anderson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 658306348, + "bounds": { + "minlat": 40.8336360, + "minlon": -73.9261400, + "maxlat": 40.8347740, + "maxlon": -73.9252650 + }, + "nodes": [ + 42782657, + 42746312 + ], + "geometry": [ + { "lat": 40.8347740, "lon": -73.9252650 }, + { "lat": 40.8336360, "lon": -73.9261400 } + ], + "tags": { + "highway": "residential", + "name": "Anderson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 658306349, + "bounds": { + "minlat": 40.8347740, + "minlon": -73.9292600, + "maxlat": 40.8360940, + "maxlon": -73.9252650 + }, + "nodes": [ + 42782657, + 42757300, + 42751978, + 42734283, + 42737578, + 13809338851, + 8285601006, + 13809338850, + 42769855 + ], + "geometry": [ + { "lat": 40.8347740, "lon": -73.9252650 }, + { "lat": 40.8350522, "lon": -73.9261364 }, + { "lat": 40.8353320, "lon": -73.9269940 }, + { "lat": 40.8356210, "lon": -73.9278590 }, + { "lat": 40.8358950, "lon": -73.9286840 }, + { "lat": 40.8359152, "lon": -73.9287424 }, + { "lat": 40.8360502, "lon": -73.9291331 }, + { "lat": 40.8360669, "lon": -73.9291814 }, + { "lat": 40.8360940, "lon": -73.9292600 } + ], + "tags": { + "highway": "residential", + "name": "West 166th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "166th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 658488313, + "bounds": { + "minlat": 40.7388559, + "minlon": -73.9503154, + "maxlat": 40.7417120, + "maxlon": -73.9401785 + }, + "nodes": [ + 7814246354, + 7814246366, + 7814246330, + 7814246335, + 487121152, + 7814246342, + 7814246346, + 487121163, + 7814246344, + 7814246348, + 487121182, + 7814246357, + 7814246361, + 487121193, + 9983412382, + 487121197, + 7814246329, + 6166331827, + 2799472355, + 7814246334, + 487121208, + 6166503001, + 6166331829, + 7814246338, + 6166331828, + 487121215 + ], + "geometry": [ + { "lat": 40.7388559, "lon": -73.9401785 }, + { "lat": 40.7403962, "lon": -73.9438315 }, + { "lat": 40.7404634, "lon": -73.9439955 }, + { "lat": 40.7405232, "lon": -73.9441535 }, + { "lat": 40.7405853, "lon": -73.9443246 }, + { "lat": 40.7406433, "lon": -73.9444917 }, + { "lat": 40.7406959, "lon": -73.9446516 }, + { "lat": 40.7407362, "lon": -73.9447843 }, + { "lat": 40.7407813, "lon": -73.9449385 }, + { "lat": 40.7408276, "lon": -73.9451073 }, + { "lat": 40.7408717, "lon": -73.9452862 }, + { "lat": 40.7409112, "lon": -73.9454596 }, + { "lat": 40.7409478, "lon": -73.9456300 }, + { "lat": 40.7409824, "lon": -73.9457965 }, + { "lat": 40.7415926, "lon": -73.9489112 }, + { "lat": 40.7416127, "lon": -73.9490239 }, + { "lat": 40.7416358, "lon": -73.9491531 }, + { "lat": 40.7416541, "lon": -73.9492700 }, + { "lat": 40.7416710, "lon": -73.9493942 }, + { "lat": 40.7416851, "lon": -73.9495014 }, + { "lat": 40.7416990, "lon": -73.9496320 }, + { "lat": 40.7417070, "lon": -73.9497647 }, + { "lat": 40.7417114, "lon": -73.9499034 }, + { "lat": 40.7417120, "lon": -73.9500345 }, + { "lat": 40.7417101, "lon": -73.9501640 }, + { "lat": 40.7417057, "lon": -73.9503154 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "oneway": "yes", + "ref": "I 495", + "surface": "concrete", + "toll": "yes", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 658488326, + "bounds": { + "minlat": 40.7414047, + "minlon": -73.9525299, + "maxlat": 40.7414627, + "maxlon": -73.9520467 + }, + "nodes": [ + 6166333238, + 9179070533, + 9179070532, + 9983412335, + 6166333239 + ], + "geometry": [ + { "lat": 40.7414627, "lon": -73.9520467 }, + { "lat": 40.7414175, "lon": -73.9522501 }, + { "lat": 40.7414092, "lon": -73.9523293 }, + { "lat": 40.7414052, "lon": -73.9524205 }, + { "lat": 40.7414047, "lon": -73.9525299 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 658488328, + "bounds": { + "minlat": 40.7414047, + "minlon": -73.9528380, + "maxlat": 40.7414300, + "maxlon": -73.9525299 + }, + "nodes": [ + 6166333239, + 6166333240 + ], + "geometry": [ + { "lat": 40.7414047, "lon": -73.9525299 }, + { "lat": 40.7414300, "lon": -73.9528380 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "1", + "oneway": "reversible", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 658488330, + "bounds": { + "minlat": 40.7413579, + "minlon": -73.9525299, + "maxlat": 40.7414047, + "maxlon": -73.9522734 + }, + "nodes": [ + 6166333239, + 6166413732 + ], + "geometry": [ + { "lat": 40.7414047, "lon": -73.9525299 }, + { "lat": 40.7413579, "lon": -73.9522734 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 658488333, + "bounds": { + "minlat": 40.7471196, + "minlon": -73.9758338, + "maxlat": 40.7472995, + "maxlon": -73.9754887 + }, + "nodes": [ + 6166333257, + 9140729334, + 12187390432, + 42426816 + ], + "geometry": [ + { "lat": 40.7471196, "lon": -73.9754887 }, + { "lat": 40.7472291, "lon": -73.9756710 }, + { "lat": 40.7472584, "lon": -73.9757398 }, + { "lat": 40.7472995, "lon": -73.9758338 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "right;through" + } +}, +{ + "type": "way", + "id": 658498543, + "bounds": { + "minlat": 40.7456159, + "minlon": -73.9742114, + "maxlat": 40.7459656, + "maxlon": -73.9724756 + }, + "nodes": [ + 11942111838, + 11942111834, + 11942111837, + 11942111836, + 11942111841, + 11942111835, + 6166413694, + 9987259813, + 9140723298, + 9140723297, + 6166413698, + 9987259814, + 9140723296, + 9140723295, + 6166413699, + 9140723294, + 9987259815, + 6166413701 + ], + "geometry": [ + { "lat": 40.7459656, "lon": -73.9742114 }, + { "lat": 40.7459046, "lon": -73.9739853 }, + { "lat": 40.7458613, "lon": -73.9738639 }, + { "lat": 40.7457159, "lon": -73.9734668 }, + { "lat": 40.7456994, "lon": -73.9734237 }, + { "lat": 40.7456650, "lon": -73.9733336 }, + { "lat": 40.7456301, "lon": -73.9731825 }, + { "lat": 40.7456238, "lon": -73.9731195 }, + { "lat": 40.7456178, "lon": -73.9730396 }, + { "lat": 40.7456162, "lon": -73.9729801 }, + { "lat": 40.7456159, "lon": -73.9729255 }, + { "lat": 40.7456189, "lon": -73.9728688 }, + { "lat": 40.7456215, "lon": -73.9727950 }, + { "lat": 40.7456259, "lon": -73.9727464 }, + { "lat": 40.7456324, "lon": -73.9726799 }, + { "lat": 40.7456445, "lon": -73.9726176 }, + { "lat": 40.7456575, "lon": -73.9725563 }, + { "lat": 40.7456811, "lon": -73.9724756 } + ], + "tags": { + "highway": "motorway", + "lanes": "1", + "maxheight": "12'1\"", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 658498544, + "bounds": { + "minlat": 40.7415107, + "minlon": -73.9508243, + "maxlat": 40.7415935, + "maxlon": -73.9502822 + }, + "nodes": [ + 6166413736, + 597237420, + 9179073018, + 7814707852 + ], + "geometry": [ + { "lat": 40.7415107, "lon": -73.9508243 }, + { "lat": 40.7415696, "lon": -73.9505370 }, + { "lat": 40.7415843, "lon": -73.9504103 }, + { "lat": 40.7415935, "lon": -73.9502822 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "hov": "contraflow_lane", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 658498545, + "bounds": { + "minlat": 40.7414312, + "minlon": -73.9540722, + "maxlat": 40.7414471, + "maxlon": -73.9533432 + }, + "nodes": [ + 6166413729, + 9179070528, + 6166413730, + 9179070529, + 6594863446 + ], + "geometry": [ + { "lat": 40.7414458, "lon": -73.9540722 }, + { "lat": 40.7414471, "lon": -73.9539011 }, + { "lat": 40.7414461, "lon": -73.9537297 }, + { "lat": 40.7414382, "lon": -73.9535293 }, + { "lat": 40.7414312, "lon": -73.9533432 } + ], + "tags": { + "highway": "motorway", + "lanes": "1", + "maxspeed": "40 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 658498546, + "bounds": { + "minlat": 40.7414169, + "minlon": -73.9709446, + "maxlat": 40.7479681, + "maxlon": -73.9540722 + }, + "nodes": [ + 6166413707, + 7684225785, + 7684225800, + 7684225802, + 7684225798, + 7684225806, + 7684225796, + 7684225804, + 7684225794, + 7684225814, + 7684225792, + 7684225808, + 7684225790, + 7684225812, + 7684225788, + 7684225810, + 7684225786, + 6166413722, + 7684225820, + 7684225823, + 7684225818, + 7684225825, + 7684225816, + 6166413724, + 6166413727, + 7684215074, + 7684215075, + 7684215073, + 7684215079, + 6166413729 + ], + "geometry": [ + { "lat": 40.7472356, "lon": -73.9709446 }, + { "lat": 40.7473773, "lon": -73.9708268 }, + { "lat": 40.7475134, "lon": -73.9706862 }, + { "lat": 40.7476262, "lon": -73.9705368 }, + { "lat": 40.7477273, "lon": -73.9703764 }, + { "lat": 40.7478030, "lon": -73.9702029 }, + { "lat": 40.7478687, "lon": -73.9699958 }, + { "lat": 40.7479088, "lon": -73.9698311 }, + { "lat": 40.7479534, "lon": -73.9696150 }, + { "lat": 40.7479681, "lon": -73.9694081 }, + { "lat": 40.7479664, "lon": -73.9691889 }, + { "lat": 40.7479525, "lon": -73.9689970 }, + { "lat": 40.7479197, "lon": -73.9687879 }, + { "lat": 40.7478724, "lon": -73.9686094 }, + { "lat": 40.7478108, "lon": -73.9684380 }, + { "lat": 40.7477062, "lon": -73.9682063 }, + { "lat": 40.7476066, "lon": -73.9680255 }, + { "lat": 40.7429956, "lon": -73.9612331 }, + { "lat": 40.7428175, "lon": -73.9609480 }, + { "lat": 40.7426717, "lon": -73.9606717 }, + { "lat": 40.7425305, "lon": -73.9603575 }, + { "lat": 40.7424080, "lon": -73.9600408 }, + { "lat": 40.7422883, "lon": -73.9596358 }, + { "lat": 40.7422015, "lon": -73.9592225 }, + { "lat": 40.7415238, "lon": -73.9557328 }, + { "lat": 40.7414791, "lon": -73.9554779 }, + { "lat": 40.7414453, "lon": -73.9552358 }, + { "lat": 40.7414230, "lon": -73.9549853 }, + { "lat": 40.7414169, "lon": -73.9547415 }, + { "lat": 40.7414458, "lon": -73.9540722 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "layer": "-1", + "lit": "24/7", + "maxheight": "12'1\"", + "maxspeed": "40 mph", + "maxwidth": "8'6\"", + "name": "Queens-Midtown Tunnel", + "oneway": "yes", + "ref": "I 495", + "short_name": "Midtown Tunnel", + "toll": "yes", + "tunnel": "yes", + "wikidata": "Q125138", + "wikipedia": "en:Queens–Midtown Tunnel" + } +}, +{ + "type": "way", + "id": 658499784, + "bounds": { + "minlat": 40.7461116, + "minlon": -73.9738776, + "maxlat": 40.7462313, + "maxlon": -73.9736071 + }, + "nodes": [ + 6166426226, + 6166426228 + ], + "geometry": [ + { "lat": 40.7461116, "lon": -73.9736071 }, + { "lat": 40.7462313, "lon": -73.9738776 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "oneway": "yes", + "ref": "I 495", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 658503780, + "bounds": { + "minlat": 40.8254810, + "minlon": -73.9112811, + "maxlat": 40.8255273, + "maxlon": -73.9109873 + }, + "nodes": [ + 6166458443, + 6166458444 + ], + "geometry": [ + { "lat": 40.8255273, "lon": -73.9109873 }, + { "lat": 40.8254810, "lon": -73.9112811 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 658539085, + "bounds": { + "minlat": 40.7439235, + "minlon": -73.9289709, + "maxlat": 40.7439937, + "maxlon": -73.9282427 + }, + "nodes": [ + 6166708801, + 11272980332, + 6167106126, + 6167106127 + ], + "geometry": [ + { "lat": 40.7439937, "lon": -73.9289709 }, + { "lat": 40.7439855, "lon": -73.9288919 }, + { "lat": 40.7439737, "lon": -73.9287784 }, + { "lat": 40.7439235, "lon": -73.9282427 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 658557169, + "bounds": { + "minlat": 40.7204477, + "minlon": -73.9441258, + "maxlat": 40.7205642, + "maxlon": -73.9440370 + }, + "nodes": [ + 6166803110, + 9935590193, + 8393782847, + 8393782852 + ], + "geometry": [ + { "lat": 40.7204477, "lon": -73.9440370 }, + { "lat": 40.7205040, "lon": -73.9440909 }, + { "lat": 40.7205311, "lon": -73.9441167 }, + { "lat": 40.7205642, "lon": -73.9441258 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 658557170, + "bounds": { + "minlat": 40.7203573, + "minlon": -73.9443070, + "maxlat": 40.7204884, + "maxlon": -73.9441955 + }, + "nodes": [ + 6166803113, + 9935590192, + 8393782841, + 8393782845 + ], + "geometry": [ + { "lat": 40.7203573, "lon": -73.9441955 }, + { "lat": 40.7204185, "lon": -73.9442467 }, + { "lat": 40.7204563, "lon": -73.9442784 }, + { "lat": 40.7204884, "lon": -73.9443070 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 658579519, + "bounds": { + "minlat": 40.8048929, + "minlon": -73.9654027, + "maxlat": 40.8061176, + "maxlon": -73.9624703 + }, + "nodes": [ + 6166969757, + 7326861889, + 4941616075, + 7004385799, + 561035334, + 2541754820, + 42428807 + ], + "geometry": [ + { "lat": 40.8048929, "lon": -73.9624703 }, + { "lat": 40.8049437, "lon": -73.9625889 }, + { "lat": 40.8050361, "lon": -73.9628049 }, + { "lat": 40.8059971, "lon": -73.9651134 }, + { "lat": 40.8060401, "lon": -73.9652167 }, + { "lat": 40.8060918, "lon": -73.9653409 }, + { "lat": 40.8061176, "lon": -73.9654027 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 113th Street", + "name:ru": "Западная 113-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 658583340, + "bounds": { + "minlat": 40.7555038, + "minlon": -73.9719044, + "maxlat": 40.7571285, + "maxlon": -73.9680652 + }, + "nodes": [ + 42440465, + 6746980151, + 3977886186, + 42440463, + 3977886189, + 9883551035, + 8551468892, + 3977886194, + 42440459 + ], + "geometry": [ + { "lat": 40.7555038, "lon": -73.9680652 }, + { "lat": 40.7555625, "lon": -73.9682040 }, + { "lat": 40.7563930, "lon": -73.9701664 }, + { "lat": 40.7564579, "lon": -73.9703198 }, + { "lat": 40.7565113, "lon": -73.9704458 }, + { "lat": 40.7567547, "lon": -73.9710211 }, + { "lat": 40.7568344, "lon": -73.9712093 }, + { "lat": 40.7570847, "lon": -73.9718009 }, + { "lat": 40.7571285, "lon": -73.9719044 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 51st Street", + "name:ru": "Восточная 51-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 658583343, + "bounds": { + "minlat": 40.7527335, + "minlon": -73.9694310, + "maxlat": 40.7536240, + "maxlon": -73.9672435 + }, + "nodes": [ + 42442949, + 6175849560, + 10166171341, + 3830783520, + 12165981351, + 9140864976, + 3670418747, + 9140864977, + 10998208716 + ], + "geometry": [ + { "lat": 40.7536240, "lon": -73.9694310 }, + { "lat": 40.7535836, "lon": -73.9693365 }, + { "lat": 40.7535663, "lon": -73.9692949 }, + { "lat": 40.7529019, "lon": -73.9676991 }, + { "lat": 40.7527578, "lon": -73.9673535 }, + { "lat": 40.7527444, "lon": -73.9673215 }, + { "lat": 40.7527353, "lon": -73.9672940 }, + { "lat": 40.7527335, "lon": -73.9672701 }, + { "lat": 40.7527363, "lon": -73.9672435 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 48th Street", + "name:ru": "Восточная 48-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 658583344, + "bounds": { + "minlat": 40.7798089, + "minlon": -73.9589963, + "maxlat": 40.7834629, + "maxlon": -73.9503368 + }, + "nodes": [ + 42436549, + 7134855811, + 7134839375, + 42436546, + 7134855839, + 7160238615, + 42436544, + 7160238599, + 7160228780, + 42436541, + 596776150, + 7160238608, + 8780064276, + 7160238605, + 42436539, + 5306314426, + 5306314446, + 42436537 + ], + "geometry": [ + { "lat": 40.7798089, "lon": -73.9503368 }, + { "lat": 40.7798624, "lon": -73.9504635 }, + { "lat": 40.7806957, "lon": -73.9524379 }, + { "lat": 40.7807525, "lon": -73.9525725 }, + { "lat": 40.7808114, "lon": -73.9527120 }, + { "lat": 40.7813875, "lon": -73.9540770 }, + { "lat": 40.7814307, "lon": -73.9541807 }, + { "lat": 40.7814763, "lon": -73.9542866 }, + { "lat": 40.7820303, "lon": -73.9555914 }, + { "lat": 40.7820798, "lon": -73.9557062 }, + { "lat": 40.7821565, "lon": -73.9558911 }, + { "lat": 40.7822005, "lon": -73.9559956 }, + { "lat": 40.7826198, "lon": -73.9569968 }, + { "lat": 40.7827466, "lon": -73.9572971 }, + { "lat": 40.7827919, "lon": -73.9574044 }, + { "lat": 40.7828398, "lon": -73.9575182 }, + { "lat": 40.7834271, "lon": -73.9589096 }, + { "lat": 40.7834629, "lon": -73.9589963 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 89th Street", + "name:ru": "Восточная 89-я стрит", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4645154", + "wikipedia": "en:89th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 658598066, + "bounds": { + "minlat": 40.7439737, + "minlon": -73.9287784, + "maxlat": 40.7441684, + "maxlon": -73.9287423 + }, + "nodes": [ + 6167106125, + 11272980331, + 6167106126 + ], + "geometry": [ + { "lat": 40.7441684, "lon": -73.9287423 }, + { "lat": 40.7440804, "lon": -73.9287586 }, + { "lat": 40.7439737, "lon": -73.9287784 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 658598067, + "bounds": { + "minlat": 40.7439235, + "minlon": -73.9282427, + "maxlat": 40.7441068, + "maxlon": -73.9282093 + }, + "nodes": [ + 6167106127, + 11272980330, + 6167106128 + ], + "geometry": [ + { "lat": 40.7439235, "lon": -73.9282427 }, + { "lat": 40.7440180, "lon": -73.9282255 }, + { "lat": 40.7441068, "lon": -73.9282093 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 658606000, + "bounds": { + "minlat": 40.7575774, + "minlon": -73.9090656, + "maxlat": 40.7617483, + "maxlon": -73.9057104 + }, + "nodes": [ + 6167162326, + 2340420595, + 4912921580, + 3570193148, + 4912921585, + 42874087, + 4912921574, + 3562563396, + 7668020474, + 7660830666 + ], + "geometry": [ + { "lat": 40.7617483, "lon": -73.9057104 }, + { "lat": 40.7616807, "lon": -73.9057676 }, + { "lat": 40.7616638, "lon": -73.9057823 }, + { "lat": 40.7602385, "lon": -73.9069204 }, + { "lat": 40.7602153, "lon": -73.9069390 }, + { "lat": 40.7601604, "lon": -73.9069829 }, + { "lat": 40.7600889, "lon": -73.9070402 }, + { "lat": 40.7587543, "lon": -73.9081115 }, + { "lat": 40.7576409, "lon": -73.9090052 }, + { "lat": 40.7575774, "lon": -73.9090656 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "50th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 659210103, + "bounds": { + "minlat": 40.8477689, + "minlon": -73.9982395, + "maxlat": 40.8478853, + "maxlon": -73.9981035 + }, + "nodes": [ + 6171872935, + 6171872936, + 6171872937, + 6171872938, + 6171872939, + 6171872940, + 6171872941, + 6171872942, + 6171872943, + 6171872944, + 6171872945, + 6171872946, + 6171872935 + ], + "geometry": [ + { "lat": 40.8478853, "lon": -73.9981532 }, + { "lat": 40.8478001, "lon": -73.9982395 }, + { "lat": 40.8477739, "lon": -73.9981917 }, + { "lat": 40.8477696, "lon": -73.9981748 }, + { "lat": 40.8477689, "lon": -73.9981616 }, + { "lat": 40.8477703, "lon": -73.9981485 }, + { "lat": 40.8477781, "lon": -73.9981382 }, + { "lat": 40.8478193, "lon": -73.9981035 }, + { "lat": 40.8478328, "lon": -73.9981035 }, + { "lat": 40.8478441, "lon": -73.9981044 }, + { "lat": 40.8478534, "lon": -73.9981072 }, + { "lat": 40.8478612, "lon": -73.9981129 }, + { "lat": 40.8478853, "lon": -73.9981532 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 659645612, + "bounds": { + "minlat": 40.7870603, + "minlon": -73.9443285, + "maxlat": 40.7880579, + "maxlon": -73.9419364 + }, + "nodes": [ + 42430485, + 2947964847, + 3007111768, + 6190264195, + 42430488 + ], + "geometry": [ + { "lat": 40.7880579, "lon": -73.9443285 }, + { "lat": 40.7880132, "lon": -73.9441916 }, + { "lat": 40.7871201, "lon": -73.9420802 }, + { "lat": 40.7871055, "lon": -73.9420450 }, + { "lat": 40.7870603, "lon": -73.9419364 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "East 102nd Street", + "name:ru": "Восточная 102-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 659714534, + "bounds": { + "minlat": 40.7445132, + "minlon": -73.9712598, + "maxlat": 40.7457826, + "maxlon": -73.9704329 + }, + "nodes": [ + 42450814, + 3734911591, + 6176628861, + 589099946, + 9140821883, + 9140821884, + 589099964, + 9140821885, + 589099881 + ], + "geometry": [ + { "lat": 40.7457826, "lon": -73.9704329 }, + { "lat": 40.7455316, "lon": -73.9706461 }, + { "lat": 40.7451910, "lon": -73.9709232 }, + { "lat": 40.7447953, "lon": -73.9712160 }, + { "lat": 40.7447414, "lon": -73.9712393 }, + { "lat": 40.7446846, "lon": -73.9712580 }, + { "lat": 40.7446279, "lon": -73.9712598 }, + { "lat": 40.7445848, "lon": -73.9712506 }, + { "lat": 40.7445132, "lon": -73.9712406 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 659714535, + "bounds": { + "minlat": 40.7586736, + "minlon": -73.9597228, + "maxlat": 40.7593001, + "maxlon": -73.9592658 + }, + "nodes": [ + 42424672, + 4918486759, + 4918486741, + 42448329 + ], + "geometry": [ + { "lat": 40.7593001, "lon": -73.9592658 }, + { "lat": 40.7592377, "lon": -73.9593112 }, + { "lat": 40.7587298, "lon": -73.9596818 }, + { "lat": 40.7586736, "lon": -73.9597228 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "6", + "lit": "yes", + "maxspeed": "25 mph", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "network": "lcn", + "old_name:1811-1883": "Avenue A", + "old_name:1883-1928": "Sutton Place", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 660225474, + "bounds": { + "minlat": 40.7831088, + "minlon": -73.9485796, + "maxlat": 40.7831579, + "maxlon": -73.9485444 + }, + "nodes": [ + 6181478375, + 5399637662 + ], + "geometry": [ + { "lat": 40.7831088, "lon": -73.9485796 }, + { "lat": 40.7831579, "lon": -73.9485444 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 660225503, + "bounds": { + "minlat": 40.7832203, + "minlon": -73.9476703, + "maxlat": 40.7832360, + "maxlon": -73.9476324 + }, + "nodes": [ + 6181478353, + 5585971573 + ], + "geometry": [ + { "lat": 40.7832360, "lon": -73.9476703 }, + { "lat": 40.7832203, "lon": -73.9476324 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 660225519, + "bounds": { + "minlat": 40.7844695, + "minlon": -73.9498372, + "maxlat": 40.7845271, + "maxlon": -73.9496936 + }, + "nodes": [ + 6181480050, + 42434172 + ], + "geometry": [ + { "lat": 40.7844695, "lon": -73.9496936 }, + { "lat": 40.7845271, "lon": -73.9498372 } + ], + "tags": { + "highway": "residential", + "name": "East 95th Street", + "name:ru": "Восточная 95-я стрит", + "name_1": "East 95 Street", + "oneway": "yes", + "wikidata": "Q4646040", + "wikipedia": "en:95th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 660225527, + "bounds": { + "minlat": 40.7825675, + "minlon": -73.9452196, + "maxlat": 40.7828054, + "maxlon": -73.9450456 + }, + "nodes": [ + 42434179, + 6181478374, + 2348688907 + ], + "geometry": [ + { "lat": 40.7825675, "lon": -73.9452196 }, + { "lat": 40.7826277, "lon": -73.9451756 }, + { "lat": 40.7828054, "lon": -73.9450456 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 660225529, + "bounds": { + "minlat": 40.7819470, + "minlon": -73.9479253, + "maxlat": 40.7828972, + "maxlon": -73.9456700 + }, + "nodes": [ + 6181478352, + 6181478376, + 6169388300, + 42444506 + ], + "geometry": [ + { "lat": 40.7828972, "lon": -73.9479253 }, + { "lat": 40.7820092, "lon": -73.9458177 }, + { "lat": 40.7819923, "lon": -73.9457775 }, + { "lat": 40.7819470, "lon": -73.9456700 } + ], + "tags": { + "highway": "residential", + "name": "East 94th Street", + "name:ru": "Восточная 94-я стрит", + "name_1": "East 94 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 660225539, + "bounds": { + "minlat": 40.7845271, + "minlon": -73.9498372, + "maxlat": 40.7851967, + "maxlon": -73.9493302 + }, + "nodes": [ + 42434172, + 6181479987, + 6181478372, + 42450044 + ], + "geometry": [ + { "lat": 40.7845271, "lon": -73.9498372 }, + { "lat": 40.7845831, "lon": -73.9497930 }, + { "lat": 40.7851063, "lon": -73.9493981 }, + { "lat": 40.7851967, "lon": -73.9493302 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 660247423, + "bounds": { + "minlat": 40.7841837, + "minlon": -73.9448098, + "maxlat": 40.7842555, + "maxlon": -73.9447618 + }, + "nodes": [ + 6181709393, + 6181708483 + ], + "geometry": [ + { "lat": 40.7841837, "lon": -73.9448098 }, + { "lat": 40.7842555, "lon": -73.9447618 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 660247426, + "bounds": { + "minlat": 40.7842555, + "minlon": -73.9447618, + "maxlat": 40.7843492, + "maxlon": -73.9447141 + }, + "nodes": [ + 6181708483, + 6181709403 + ], + "geometry": [ + { "lat": 40.7842555, "lon": -73.9447618 }, + { "lat": 40.7843492, "lon": -73.9447141 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 660475987, + "bounds": { + "minlat": 40.8089497, + "minlon": -73.9643115, + "maxlat": 40.8090442, + "maxlon": -73.9642015 + }, + "nodes": [ + 6183784576, + 6183784574, + 6183784573, + 6183784570, + 6183784575, + 6183784576 + ], + "geometry": [ + { "lat": 40.8089741, "lon": -73.9643115 }, + { "lat": 40.8090442, "lon": -73.9642632 }, + { "lat": 40.8090199, "lon": -73.9642015 }, + { "lat": 40.8089914, "lon": -73.9642211 }, + { "lat": 40.8089497, "lon": -73.9642498 }, + { "lat": 40.8089741, "lon": -73.9643115 } + ], + "tags": { + "access": "permissive", + "area": "yes", + "foot": "permissive", + "highway": "pedestrian", + "name": "Reunion Plaza" + } +}, +{ + "type": "way", + "id": 660671382, + "bounds": { + "minlat": 40.8045555, + "minlon": -73.9528570, + "maxlat": 40.8067090, + "maxlon": -73.9477370 + }, + "nodes": [ + 42429735, + 11840444665, + 8758287373, + 4163940359, + 2141026497, + 8758345335, + 10170875089, + 3099327962, + 42429727 + ], + "geometry": [ + { "lat": 40.8067090, "lon": -73.9528570 }, + { "lat": 40.8066498, "lon": -73.9527170 }, + { "lat": 40.8058605, "lon": -73.9508511 }, + { "lat": 40.8058118, "lon": -73.9507375 }, + { "lat": 40.8057431, "lon": -73.9505770 }, + { "lat": 40.8056966, "lon": -73.9504683 }, + { "lat": 40.8046567, "lon": -73.9479781 }, + { "lat": 40.8046223, "lon": -73.9478956 }, + { "lat": 40.8045555, "lon": -73.9477370 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "West 120th Street", + "name:ru": "Западная 120-я стрит", + "name_1": "West 120 Street", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 661227256, + "bounds": { + "minlat": 40.7726131, + "minlon": -73.9772677, + "maxlat": 40.7726720, + "maxlon": -73.9770187 + }, + "nodes": [ + 247222929, + 9908399119, + 247227451 + ], + "geometry": [ + { "lat": 40.7726720, "lon": -73.9772677 }, + { "lat": 40.7726426, "lon": -73.9771476 }, + { "lat": 40.7726131, "lon": -73.9770187 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "West 67th Street", + "bicycle": "designated", + "foot": "permissive", + "hgv": "no", + "highway": "service", + "motor_vehicle": "private", + "name": "Warner LeRoy Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 661227257, + "bounds": { + "minlat": 40.7730391, + "minlon": -73.9782890, + "maxlat": 40.7742930, + "maxlon": -73.9773736 + }, + "nodes": [ + 7802856341, + 7802856362, + 7802856364, + 7802856349, + 7802856368, + 7802856367, + 7802856372 + ], + "geometry": [ + { "lat": 40.7730391, "lon": -73.9782890 }, + { "lat": 40.7731006, "lon": -73.9782438 }, + { "lat": 40.7736051, "lon": -73.9778733 }, + { "lat": 40.7736592, "lon": -73.9778345 }, + { "lat": 40.7737221, "lon": -73.9777895 }, + { "lat": 40.7742362, "lon": -73.9774134 }, + { "lat": 40.7742930, "lon": -73.9773736 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:lane:right": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 661292554, + "bounds": { + "minlat": 40.7879281, + "minlon": -73.9418023, + "maxlat": 40.7879422, + "maxlon": -73.9416753 + }, + "nodes": [ + 5482216760, + 5734143469, + 5719241474 + ], + "geometry": [ + { "lat": 40.7879422, "lon": -73.9418023 }, + { "lat": 40.7879281, "lon": -73.9417268 }, + { "lat": 40.7879342, "lon": -73.9416753 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 662161062, + "bounds": { + "minlat": 40.7136960, + "minlon": -73.9948397, + "maxlat": 40.7142285, + "maxlon": -73.9945699 + }, + "nodes": [ + 42433539, + 11638918068, + 8279851186, + 6369613297, + 42453691 + ], + "geometry": [ + { "lat": 40.7136960, "lon": -73.9945699 }, + { "lat": 40.7137355, "lon": -73.9945835 }, + { "lat": 40.7137871, "lon": -73.9946059 }, + { "lat": 40.7141740, "lon": -73.9948121 }, + { "lat": 40.7142285, "lon": -73.9948397 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:both:restriction:conditional": "no_standing @ (Mo-Fr 16:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 662161063, + "bounds": { + "minlat": 40.7120847, + "minlon": -73.9971151, + "maxlat": 40.7128003, + "maxlon": -73.9969414 + }, + "nodes": [ + 42435910, + 6139477288, + 4158807596, + 11504448341, + 11504448344, + 42437124 + ], + "geometry": [ + { "lat": 40.7128003, "lon": -73.9971151 }, + { "lat": 40.7127448, "lon": -73.9970997 }, + { "lat": 40.7121677, "lon": -73.9969473 }, + { "lat": 40.7121371, "lon": -73.9969414 }, + { "lat": 40.7121091, "lon": -73.9969423 }, + { "lat": 40.7120847, "lon": -73.9969466 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Street", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 663319622, + "bounds": { + "minlat": 40.7687742, + "minlon": -74.0161597, + "maxlat": 40.7689618, + "maxlon": -74.0159004 + }, + "nodes": [ + 6208971575, + 6208971574, + 6208971573, + 6208971572 + ], + "geometry": [ + { "lat": 40.7689618, "lon": -74.0160796 }, + { "lat": 40.7688920, "lon": -74.0159004 }, + { "lat": 40.7687742, "lon": -74.0159805 }, + { "lat": 40.7688440, "lon": -74.0161597 } + ], + "tags": { + "highway": "service", + "name": "Oxford Landing" + } +}, +{ + "type": "way", + "id": 663319623, + "bounds": { + "minlat": 40.7686277, + "minlon": -74.0163067, + "maxlat": 40.7689618, + "maxlon": -74.0160796 + }, + "nodes": [ + 307870566, + 6208971572, + 6208971575 + ], + "geometry": [ + { "lat": 40.7686277, "lon": -74.0163067 }, + { "lat": 40.7688440, "lon": -74.0161597 }, + { "lat": 40.7689618, "lon": -74.0160796 } + ], + "tags": { + "highway": "service", + "name": "Oxford Landing" + } +}, +{ + "type": "way", + "id": 663499005, + "bounds": { + "minlat": 40.7356057, + "minlon": -73.9818366, + "maxlat": 40.7366125, + "maxlon": -73.9794530 + }, + "nodes": [ + 42451787, + 4296710222, + 6804917581, + 6804917575, + 12181309698, + 12181309699, + 10165972531, + 1692450029 + ], + "geometry": [ + { "lat": 40.7356057, "lon": -73.9794530 }, + { "lat": 40.7356738, "lon": -73.9796042 }, + { "lat": 40.7358267, "lon": -73.9799682 }, + { "lat": 40.7362564, "lon": -73.9809846 }, + { "lat": 40.7365384, "lon": -73.9816552 }, + { "lat": 40.7365514, "lon": -73.9816852 }, + { "lat": 40.7365644, "lon": -73.9817152 }, + { "lat": 40.7366125, "lon": -73.9818366 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 21st Street", + "name:ru": "Восточная 21-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "source:geometry": "Bing aerial imagery", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 663509704, + "bounds": { + "minlat": 40.7300324, + "minlon": -74.0068726, + "maxlat": 40.7302239, + "maxlon": -74.0068382 + }, + "nodes": [ + 6210448866, + 8214331019, + 42436377 + ], + "geometry": [ + { "lat": 40.7300324, "lon": -74.0068726 }, + { "lat": 40.7301741, "lon": -74.0068471 }, + { "lat": 40.7302239, "lon": -74.0068382 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 663509729, + "bounds": { + "minlat": 40.7316700, + "minlon": -74.0066039, + "maxlat": 40.7328740, + "maxlon": -74.0064136 + }, + "nodes": [ + 42436384, + 8288270292, + 8288270309, + 42436390, + 8288270308, + 4207862996 + ], + "geometry": [ + { "lat": 40.7316700, "lon": -74.0066039 }, + { "lat": 40.7317366, "lon": -74.0065938 }, + { "lat": 40.7323818, "lon": -74.0064955 }, + { "lat": 40.7324250, "lon": -74.0064889 }, + { "lat": 40.7324874, "lon": -74.0064783 }, + { "lat": 40.7328740, "lon": -74.0064136 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 663509731, + "bounds": { + "minlat": 40.7313315, + "minlon": -74.0066591, + "maxlat": 40.7316700, + "maxlon": -74.0066039 + }, + "nodes": [ + 4207862995, + 8288270293, + 42436384 + ], + "geometry": [ + { "lat": 40.7313315, "lon": -74.0066591 }, + { "lat": 40.7316099, "lon": -74.0066137 }, + { "lat": 40.7316700, "lon": -74.0066039 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|through|", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 663543997, + "bounds": { + "minlat": 40.7665920, + "minlon": -73.9829638, + "maxlat": 40.7667157, + "maxlon": -73.9828727 + }, + "nodes": [ + 6210777831, + 10082626067, + 42435714 + ], + "geometry": [ + { "lat": 40.7665920, "lon": -73.9829638 }, + { "lat": 40.7666251, "lon": -73.9829398 }, + { "lat": 40.7667157, "lon": -73.9828727 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left|through|through|none|none", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 663612299, + "bounds": { + "minlat": 40.7629609, + "minlon": -73.9884895, + "maxlat": 40.7641124, + "maxlon": -73.9857557 + }, + "nodes": [ + 6210777843, + 10073797563, + 13780484763, + 5481883907, + 5481882139, + 10173161019, + 42445025 + ], + "geometry": [ + { "lat": 40.7629609, "lon": -73.9857557 }, + { "lat": 40.7629742, "lon": -73.9857872 }, + { "lat": 40.7632488, "lon": -73.9864391 }, + { "lat": 40.7635737, "lon": -73.9872104 }, + { "lat": 40.7637090, "lon": -73.9875318 }, + { "lat": 40.7640594, "lon": -73.9883631 }, + { "lat": 40.7641124, "lon": -73.9884895 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 663630710, + "bounds": { + "minlat": 40.7391128, + "minlon": -74.0032986, + "maxlat": 40.7391716, + "maxlon": -74.0031635 + }, + "nodes": [ + 6211332483, + 6211334191, + 8789178528, + 8307463659 + ], + "geometry": [ + { "lat": 40.7391128, "lon": -74.0031635 }, + { "lat": 40.7391292, "lon": -74.0032012 }, + { "lat": 40.7391462, "lon": -74.0032402 }, + { "lat": 40.7391716, "lon": -74.0032986 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 663634122, + "bounds": { + "minlat": 40.7340100, + "minlon": -74.0055274, + "maxlat": 40.7368828, + "maxlon": -74.0045610 + }, + "nodes": [ + 6211334202, + 6211527559, + 42431831, + 1825739972, + 42431829, + 6213204061, + 2076950450, + 8307463832, + 42431814, + 8307463831, + 8307463875, + 42431812, + 8307463874, + 8307642106, + 42431805, + 8307642104, + 8307642021, + 42431804 + ], + "geometry": [ + { "lat": 40.7368828, "lon": -74.0055274 }, + { "lat": 40.7368379, "lon": -74.0054762 }, + { "lat": 40.7367882, "lon": -74.0054231 }, + { "lat": 40.7367426, "lon": -74.0053777 }, + { "lat": 40.7367040, "lon": -74.0053520 }, + { "lat": 40.7366110, "lon": -74.0053140 }, + { "lat": 40.7363345, "lon": -74.0052340 }, + { "lat": 40.7360213, "lon": -74.0051434 }, + { "lat": 40.7359710, "lon": -74.0051285 }, + { "lat": 40.7359144, "lon": -74.0051120 }, + { "lat": 40.7353577, "lon": -74.0049480 }, + { "lat": 40.7352971, "lon": -74.0049302 }, + { "lat": 40.7352621, "lon": -74.0049202 }, + { "lat": 40.7347116, "lon": -74.0047629 }, + { "lat": 40.7346517, "lon": -74.0047458 }, + { "lat": 40.7346097, "lon": -74.0047337 }, + { "lat": 40.7340624, "lon": -74.0045761 }, + { "lat": 40.7340100, "lon": -74.0045610 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Bleecker Street", + "name:etymology:wikidata": "Q4772124", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "parking:left": "no", + "parking:left:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 663711939, + "bounds": { + "minlat": 40.7034480, + "minlon": -73.9478269, + "maxlat": 40.7045785, + "maxlon": -73.9462112 + }, + "nodes": [ + 6212365406, + 6212365397, + 6212365407, + 6212365408, + 9755354472, + 42501130 + ], + "geometry": [ + { "lat": 40.7034480, "lon": -73.9462112 }, + { "lat": 40.7037119, "lon": -73.9466887 }, + { "lat": 40.7041759, "lon": -73.9475282 }, + { "lat": 40.7045785, "lon": -73.9476086 }, + { "lat": 40.7045676, "lon": -73.9477163 }, + { "lat": 40.7045565, "lon": -73.9478269 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 663711942, + "bounds": { + "minlat": 40.7058063, + "minlon": -73.9462944, + "maxlat": 40.7058755, + "maxlon": -73.9456007 + }, + "nodes": [ + 6212365417, + 9755354477, + 6212365418 + ], + "geometry": [ + { "lat": 40.7058063, "lon": -73.9462944 }, + { "lat": 40.7058175, "lon": -73.9461822 }, + { "lat": 40.7058755, "lon": -73.9456007 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 663797737, + "bounds": { + "minlat": 40.7337978, + "minlon": -74.0045610, + "maxlat": 40.7340100, + "maxlon": -74.0044748 + }, + "nodes": [ + 42431804, + 8307642020, + 4841945993 + ], + "geometry": [ + { "lat": 40.7340100, "lon": -74.0045610 }, + { "lat": 40.7339618, "lon": -74.0045414 }, + { "lat": 40.7337978, "lon": -74.0044748 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Bleecker Street", + "name:etymology:wikidata": "Q4772124", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 663797739, + "bounds": { + "minlat": 40.7333991, + "minlon": -74.0044748, + "maxlat": 40.7337978, + "maxlon": -74.0042514 + }, + "nodes": [ + 4841945993, + 11609529485, + 42431802 + ], + "geometry": [ + { "lat": 40.7337978, "lon": -74.0044748 }, + { "lat": 40.7334492, "lon": -74.0042795 }, + { "lat": 40.7333991, "lon": -74.0042514 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Bleecker Street", + "name:etymology:wikidata": "Q4772124", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "through", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 663797741, + "bounds": { + "minlat": 40.7252555, + "minlon": -73.9927873, + "maxlat": 40.7253935, + "maxlon": -73.9922705 + }, + "nodes": [ + 9647705406, + 12187431490, + 12187431491, + 8309479091, + 1692433907 + ], + "geometry": [ + { "lat": 40.7253935, "lon": -73.9927873 }, + { "lat": 40.7253058, "lon": -73.9924591 }, + { "lat": 40.7252949, "lon": -73.9924182 }, + { "lat": 40.7252844, "lon": -73.9923795 }, + { "lat": 40.7252555, "lon": -73.9922705 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Bleecker Street", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "parking:lane:left:parallel": "no_parking", + "sidewalk:both": "separate", + "source:geometry": "Bing aerial imagery", + "surface": "asphalt", + "turn:lanes": "left|right", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 663799681, + "bounds": { + "minlat": 40.7303491, + "minlon": -74.0024382, + "maxlat": 40.7305220, + "maxlon": -74.0018695 + }, + "nodes": [ + 6213204047, + 3891969467, + 3891969471 + ], + "geometry": [ + { "lat": 40.7303491, "lon": -74.0024382 }, + { "lat": 40.7303569, "lon": -74.0024135 }, + { "lat": 40.7305220, "lon": -74.0018695 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Carmine Street", + "name:ko": "카민 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 664155770, + "bounds": { + "minlat": 40.7899303, + "minlon": -73.9407803, + "maxlat": 40.7900789, + "maxlon": -73.9406777 + }, + "nodes": [ + 6216408512, + 6216541831, + 6216408509 + ], + "geometry": [ + { "lat": 40.7899303, "lon": -73.9407803 }, + { "lat": 40.7900261, "lon": -73.9407145 }, + { "lat": 40.7900789, "lon": -73.9406777 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 664155773, + "bounds": { + "minlat": 40.7901436, + "minlon": -73.9406314, + "maxlat": 40.7903058, + "maxlon": -73.9405189 + }, + "nodes": [ + 5481998048, + 5481998047 + ], + "geometry": [ + { "lat": 40.7901436, "lon": -73.9406314 }, + { "lat": 40.7903058, "lon": -73.9405189 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 664155775, + "bounds": { + "minlat": 40.7900789, + "minlon": -73.9406777, + "maxlat": 40.7901436, + "maxlon": -73.9406314 + }, + "nodes": [ + 6216408509, + 5481998048 + ], + "geometry": [ + { "lat": 40.7900789, "lon": -73.9406777 }, + { "lat": 40.7901436, "lon": -73.9406314 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 664204752, + "bounds": { + "minlat": 40.7944915, + "minlon": -73.9320987, + "maxlat": 40.7947585, + "maxlon": -73.9318245 + }, + "nodes": [ + 6515676485, + 9906259296, + 6515676489, + 6515676488, + 6515676487, + 6216836428, + 2339840637 + ], + "geometry": [ + { "lat": 40.7944915, "lon": -73.9318245 }, + { "lat": 40.7947006, "lon": -73.9320895 }, + { "lat": 40.7947026, "lon": -73.9320920 }, + { "lat": 40.7947164, "lon": -73.9320987 }, + { "lat": 40.7947271, "lon": -73.9320968 }, + { "lat": 40.7947424, "lon": -73.9320849 }, + { "lat": 40.7947585, "lon": -73.9320735 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "maxheight": "9'0\"", + "oneway": "yes", + "turn:lanes": "right|right" + } +}, +{ + "type": "way", + "id": 664315724, + "bounds": { + "minlat": 40.7964552, + "minlon": -73.9483064, + "maxlat": 40.7965479, + "maxlon": -73.9482423 + }, + "nodes": [ + 6217820601, + 7123798406, + 6217820602 + ], + "geometry": [ + { "lat": 40.7965479, "lon": -73.9482423 }, + { "lat": 40.7965130, "lon": -73.9482679 }, + { "lat": 40.7964552, "lon": -73.9483064 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 664315725, + "bounds": { + "minlat": 40.7977327, + "minlon": -73.9493961, + "maxlat": 40.7978055, + "maxlon": -73.9493447 + }, + "nodes": [ + 6217820603, + 7803460150, + 6217820604 + ], + "geometry": [ + { "lat": 40.7978055, "lon": -73.9493447 }, + { "lat": 40.7977944, "lon": -73.9493524 }, + { "lat": 40.7977327, "lon": -73.9493961 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 664449421, + "bounds": { + "minlat": 40.7324562, + "minlon": -73.9248049, + "maxlat": 40.7328698, + "maxlon": -73.9245093 + }, + "nodes": [ + 6219006582, + 7573166327, + 7573166328, + 9194902687, + 6219006584 + ], + "geometry": [ + { "lat": 40.7324562, "lon": -73.9248049 }, + { "lat": 40.7325758, "lon": -73.9247220 }, + { "lat": 40.7326849, "lon": -73.9246479 }, + { "lat": 40.7327803, "lon": -73.9245781 }, + { "lat": 40.7328698, "lon": -73.9245093 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "turn:lanes": "none|merge_to_left" + } +}, +{ + "type": "way", + "id": 664660185, + "bounds": { + "minlat": 40.7462201, + "minlon": -73.9736516, + "maxlat": 40.7463256, + "maxlon": -73.9733985 + }, + "nodes": [ + 9987259760, + 6221403710, + 42449689 + ], + "geometry": [ + { "lat": 40.7462201, "lon": -73.9733985 }, + { "lat": 40.7462440, "lon": -73.9734560 }, + { "lat": 40.7463256, "lon": -73.9736516 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|left;through||" + } +}, +{ + "type": "way", + "id": 664660187, + "bounds": { + "minlat": 40.7462440, + "minlon": -73.9734560, + "maxlat": 40.7463191, + "maxlon": -73.9734014 + }, + "nodes": [ + 6221403710, + 10170620789, + 1581645273 + ], + "geometry": [ + { "lat": 40.7462440, "lon": -73.9734560 }, + { "lat": 40.7463087, "lon": -73.9734089 }, + { "lat": 40.7463191, "lon": -73.9734014 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 664697041, + "bounds": { + "minlat": 40.7877132, + "minlon": -73.9501936, + "maxlat": 40.7878917, + "maxlon": -73.9497503 + }, + "nodes": [ + 6221717894, + 7923889506 + ], + "geometry": [ + { "lat": 40.7877132, "lon": -73.9497503 }, + { "lat": 40.7878917, "lon": -73.9501936 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 664719558, + "bounds": { + "minlat": 40.7847409, + "minlon": -73.9444404, + "maxlat": 40.7848800, + "maxlon": -73.9443393 + }, + "nodes": [ + 6221959141, + 6221959146 + ], + "geometry": [ + { "lat": 40.7847409, "lon": -73.9444404 }, + { "lat": 40.7848800, "lon": -73.9443393 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 664719559, + "bounds": { + "minlat": 40.7844867, + "minlon": -73.9451278, + "maxlat": 40.7844993, + "maxlon": -73.9450972 + }, + "nodes": [ + 6221959124, + 3900964261 + ], + "geometry": [ + { "lat": 40.7844993, "lon": -73.9451278 }, + { "lat": 40.7844867, "lon": -73.9450972 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 664719560, + "bounds": { + "minlat": 40.7848800, + "minlon": -73.9443393, + "maxlat": 40.7851662, + "maxlon": -73.9441519 + }, + "nodes": [ + 6221959146, + 3900961243, + 3900961244 + ], + "geometry": [ + { "lat": 40.7848800, "lon": -73.9443393 }, + { "lat": 40.7849855, "lon": -73.9442663 }, + { "lat": 40.7851662, "lon": -73.9441519 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 664719562, + "bounds": { + "minlat": 40.7844102, + "minlon": -73.9450972, + "maxlat": 40.7844867, + "maxlon": -73.9446524 + }, + "nodes": [ + 3900964261, + 5734166935, + 5734166934, + 3900961240 + ], + "geometry": [ + { "lat": 40.7844867, "lon": -73.9450972 }, + { "lat": 40.7844102, "lon": -73.9449104 }, + { "lat": 40.7844114, "lon": -73.9448175 }, + { "lat": 40.7844534, "lon": -73.9446524 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 664860739, + "bounds": { + "minlat": 40.7500868, + "minlon": -73.9904992, + "maxlat": 40.7501481, + "maxlon": -73.9904544 + }, + "nodes": [ + 6223189525, + 10170593064, + 6223189532 + ], + "geometry": [ + { "lat": 40.7500868, "lon": -73.9904992 }, + { "lat": 40.7501286, "lon": -73.9904686 }, + { "lat": 40.7501481, "lon": -73.9904544 } + ], + "tags": { + "access": "delivery", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 664893444, + "bounds": { + "minlat": 40.7977383, + "minlon": -73.9474892, + "maxlat": 40.7980339, + "maxlon": -73.9467540 + }, + "nodes": [ + 6223478665, + 6223478667, + 6223478666 + ], + "geometry": [ + { "lat": 40.7980339, "lon": -73.9474892 }, + { "lat": 40.7979589, "lon": -73.9473026 }, + { "lat": 40.7977383, "lon": -73.9467540 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 664893445, + "bounds": { + "minlat": 40.7977537, + "minlon": -73.9474379, + "maxlat": 40.7979589, + "maxlon": -73.9473026 + }, + "nodes": [ + 6223478667, + 6223478796, + 6223478668 + ], + "geometry": [ + { "lat": 40.7979589, "lon": -73.9473026 }, + { "lat": 40.7978462, "lon": -73.9473785 }, + { "lat": 40.7977537, "lon": -73.9474379 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 664893450, + "bounds": { + "minlat": 40.7991988, + "minlon": -73.9460766, + "maxlat": 40.7993575, + "maxlon": -73.9457063 + }, + "nodes": [ + 5481978559, + 5481978560 + ], + "geometry": [ + { "lat": 40.7993575, "lon": -73.9460766 }, + { "lat": 40.7991988, "lon": -73.9457063 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 664893483, + "bounds": { + "minlat": 40.8103039, + "minlon": -73.9502160, + "maxlat": 40.8114780, + "maxlon": -73.9474622 + }, + "nodes": [ + 42436728, + 9150563669, + 5481907291, + 11142682169, + 11142682168, + 11298919643, + 42435810 + ], + "geometry": [ + { "lat": 40.8103039, "lon": -73.9474622 }, + { "lat": 40.8103514, "lon": -73.9475735 }, + { "lat": 40.8104582, "lon": -73.9478242 }, + { "lat": 40.8106625, "lon": -73.9483033 }, + { "lat": 40.8111979, "lon": -73.9495591 }, + { "lat": 40.8114225, "lon": -73.9500859 }, + { "lat": 40.8114780, "lon": -73.9502160 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "West 127th Street", + "name_1": "Lloyd E Dickens Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 664893484, + "bounds": { + "minlat": 40.8093953, + "minlon": -73.9481239, + "maxlat": 40.8109249, + "maxlon": -73.9470064 + }, + "nodes": [ + 42439868, + 10170874370, + 10177607118, + 42436728, + 10177607121, + 11875873071, + 42439864, + 11875873074, + 4207716494 + ], + "geometry": [ + { "lat": 40.8109249, "lon": -73.9470064 }, + { "lat": 40.8108737, "lon": -73.9470441 }, + { "lat": 40.8103693, "lon": -73.9474142 }, + { "lat": 40.8103039, "lon": -73.9474622 }, + { "lat": 40.8102461, "lon": -73.9475041 }, + { "lat": 40.8097478, "lon": -73.9478774 }, + { "lat": 40.8096859, "lon": -73.9479237 }, + { "lat": 40.8096167, "lon": -73.9479714 }, + { "lat": 40.8093953, "lon": -73.9481239 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 664893485, + "bounds": { + "minlat": 40.8114780, + "minlon": -73.9502160, + "maxlat": 40.8304141, + "maxlon": -73.9363673 + }, + "nodes": [ + 42435810, + 10171865587, + 42435814, + 10705287274, + 1905863520, + 10705287271, + 5481907293, + 10705254142, + 10171603022, + 42435825, + 10171603021, + 10171599213, + 42429538, + 10171599212, + 10171603029, + 42434113, + 10171603028, + 10170605777, + 42435837, + 10170605774, + 5378420472, + 10187641086, + 42435844, + 10187641085, + 5378420473, + 10170605783, + 42435850, + 10170605787, + 10170605805, + 42435852, + 10170605801, + 5378420474, + 10166154753, + 42435856, + 10166154755, + 5378420475, + 5378413082, + 8008242771, + 42435858, + 8008167305, + 5378420476, + 8008242770, + 42433785, + 8008242769, + 7594452129, + 8008242768, + 42435860, + 8008242767, + 8008242694, + 42435861, + 8008242766, + 8008242702, + 42435863, + 8008242701, + 8008242710, + 42435865, + 8008242709, + 8008242718, + 42434249, + 8008242717, + 8008242726, + 42435869, + 8008242725, + 8008242735, + 42435873, + 8008242734, + 8008242743, + 42435876, + 8008242742, + 8008242751, + 42434308, + 8008242750, + 42435880, + 8008242760, + 42435881, + 8008242759, + 8008242779, + 42435885, + 8008242778, + 11762434879, + 42435891, + 11762434878, + 11762434883, + 42435894, + 11762434882, + 11762434887, + 42435898, + 11762434886, + 7670739115, + 8008242809, + 589927879, + 8008242813, + 9520382031, + 9520381969, + 12540998680, + 13703241873, + 13535318221, + 9520382020, + 42424576 + ], + "geometry": [ + { "lat": 40.8114780, "lon": -73.9502160 }, + { "lat": 40.8115304, "lon": -73.9501778 }, + { "lat": 40.8121030, "lon": -73.9497570 }, + { "lat": 40.8126673, "lon": -73.9493447 }, + { "lat": 40.8127270, "lon": -73.9493010 }, + { "lat": 40.8127764, "lon": -73.9492650 }, + { "lat": 40.8133073, "lon": -73.9488777 }, + { "lat": 40.8133977, "lon": -73.9488118 }, + { "lat": 40.8138608, "lon": -73.9484749 }, + { "lat": 40.8139380, "lon": -73.9484190 }, + { "lat": 40.8140209, "lon": -73.9483582 }, + { "lat": 40.8145231, "lon": -73.9479885 }, + { "lat": 40.8145800, "lon": -73.9479470 }, + { "lat": 40.8146431, "lon": -73.9479012 }, + { "lat": 40.8151604, "lon": -73.9475233 }, + { "lat": 40.8152070, "lon": -73.9474890 }, + { "lat": 40.8152687, "lon": -73.9474462 }, + { "lat": 40.8157804, "lon": -73.9470702 }, + { "lat": 40.8158300, "lon": -73.9470340 }, + { "lat": 40.8158946, "lon": -73.9469875 }, + { "lat": 40.8162345, "lon": -73.9467402 }, + { "lat": 40.8164275, "lon": -73.9466007 }, + { "lat": 40.8165065, "lon": -73.9465427 }, + { "lat": 40.8165868, "lon": -73.9464843 }, + { "lat": 40.8167684, "lon": -73.9463516 }, + { "lat": 40.8171261, "lon": -73.9460898 }, + { "lat": 40.8171750, "lon": -73.9460550 }, + { "lat": 40.8172382, "lon": -73.9460088 }, + { "lat": 40.8177490, "lon": -73.9456353 }, + { "lat": 40.8178000, "lon": -73.9455980 }, + { "lat": 40.8178620, "lon": -73.9455532 }, + { "lat": 40.8181864, "lon": -73.9453150 }, + { "lat": 40.8183761, "lon": -73.9451761 }, + { "lat": 40.8184240, "lon": -73.9451410 }, + { "lat": 40.8184841, "lon": -73.9450969 }, + { "lat": 40.8186397, "lon": -73.9449838 }, + { "lat": 40.8187414, "lon": -73.9449097 }, + { "lat": 40.8189962, "lon": -73.9447240 }, + { "lat": 40.8190470, "lon": -73.9446870 }, + { "lat": 40.8191094, "lon": -73.9446430 }, + { "lat": 40.8193571, "lon": -73.9444614 }, + { "lat": 40.8196232, "lon": -73.9442672 }, + { "lat": 40.8196740, "lon": -73.9442303 }, + { "lat": 40.8197310, "lon": -73.9441875 }, + { "lat": 40.8200221, "lon": -73.9439764 }, + { "lat": 40.8202335, "lon": -73.9438222 }, + { "lat": 40.8202938, "lon": -73.9437782 }, + { "lat": 40.8203592, "lon": -73.9437303 }, + { "lat": 40.8208656, "lon": -73.9433595 }, + { "lat": 40.8209170, "lon": -73.9433220 }, + { "lat": 40.8209731, "lon": -73.9432809 }, + { "lat": 40.8214915, "lon": -73.9429019 }, + { "lat": 40.8215420, "lon": -73.9428650 }, + { "lat": 40.8216021, "lon": -73.9428216 }, + { "lat": 40.8221120, "lon": -73.9424489 }, + { "lat": 40.8221640, "lon": -73.9424110 }, + { "lat": 40.8222251, "lon": -73.9423699 }, + { "lat": 40.8227451, "lon": -73.9419903 }, + { "lat": 40.8228413, "lon": -73.9419205 }, + { "lat": 40.8229446, "lon": -73.9418438 }, + { "lat": 40.8234495, "lon": -73.9414713 }, + { "lat": 40.8235077, "lon": -73.9414281 }, + { "lat": 40.8235666, "lon": -73.9413843 }, + { "lat": 40.8240776, "lon": -73.9410123 }, + { "lat": 40.8241320, "lon": -73.9409710 }, + { "lat": 40.8241957, "lon": -73.9409227 }, + { "lat": 40.8247053, "lon": -73.9405527 }, + { "lat": 40.8247570, "lon": -73.9405150 }, + { "lat": 40.8248224, "lon": -73.9404665 }, + { "lat": 40.8253264, "lon": -73.9400930 }, + { "lat": 40.8253790, "lon": -73.9400540 }, + { "lat": 40.8254413, "lon": -73.9400090 }, + { "lat": 40.8256133, "lon": -73.9398858 }, + { "lat": 40.8259503, "lon": -73.9396432 }, + { "lat": 40.8260017, "lon": -73.9396061 }, + { "lat": 40.8260630, "lon": -73.9395593 }, + { "lat": 40.8265715, "lon": -73.9391901 }, + { "lat": 40.8266260, "lon": -73.9391490 }, + { "lat": 40.8266820, "lon": -73.9391076 }, + { "lat": 40.8271949, "lon": -73.9387326 }, + { "lat": 40.8272479, "lon": -73.9386938 }, + { "lat": 40.8273085, "lon": -73.9386500 }, + { "lat": 40.8278258, "lon": -73.9382742 }, + { "lat": 40.8278770, "lon": -73.9382370 }, + { "lat": 40.8279312, "lon": -73.9381974 }, + { "lat": 40.8284471, "lon": -73.9378204 }, + { "lat": 40.8285000, "lon": -73.9377820 }, + { "lat": 40.8285600, "lon": -73.9377381 }, + { "lat": 40.8289780, "lon": -73.9374328 }, + { "lat": 40.8290949, "lon": -73.9373447 }, + { "lat": 40.8291804, "lon": -73.9372833 }, + { "lat": 40.8292612, "lon": -73.9372247 }, + { "lat": 40.8295151, "lon": -73.9370426 }, + { "lat": 40.8299838, "lon": -73.9366917 }, + { "lat": 40.8300292, "lon": -73.9366575 }, + { "lat": 40.8300365, "lon": -73.9366520 }, + { "lat": 40.8300801, "lon": -73.9366191 }, + { "lat": 40.8301886, "lon": -73.9365373 }, + { "lat": 40.8304141, "lon": -73.9363673 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "US-NY:urban", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "oneway": "no", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 664893486, + "bounds": { + "minlat": 40.8120151, + "minlon": -73.9550501, + "maxlat": 40.8134595, + "maxlon": -73.9515008 + }, + "nodes": [ + 42432932, + 10171865582, + 42427519, + 10171069507, + 42436734, + 10171069510, + 7590761559, + 12813131434, + 12813131433, + 12813131435, + 42436739 + ], + "geometry": [ + { "lat": 40.8120151, "lon": -73.9515008 }, + { "lat": 40.8120704, "lon": -73.9516332 }, + { "lat": 40.8123183, "lon": -73.9522263 }, + { "lat": 40.8126555, "lon": -73.9530397 }, + { "lat": 40.8126972, "lon": -73.9531404 }, + { "lat": 40.8127400, "lon": -73.9532419 }, + { "lat": 40.8131165, "lon": -73.9541395 }, + { "lat": 40.8134458, "lon": -73.9549240 }, + { "lat": 40.8134595, "lon": -73.9549565 }, + { "lat": 40.8134476, "lon": -73.9549783 }, + { "lat": 40.8134085, "lon": -73.9550501 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 127th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 664896816, + "bounds": { + "minlat": 40.8401970, + "minlon": -73.9105301, + "maxlat": 40.8427974, + "maxlon": -73.9100940 + }, + "nodes": [ + 42735929, + 12737767459, + 486818494, + 486818493, + 13036982516, + 13036982530, + 42735867 + ], + "geometry": [ + { "lat": 40.8427974, "lon": -73.9104622 }, + { "lat": 40.8427409, "lon": -73.9104672 }, + { "lat": 40.8420237, "lon": -73.9105301 }, + { "lat": 40.8416988, "lon": -73.9104970 }, + { "lat": 40.8403077, "lon": -73.9101237 }, + { "lat": 40.8402357, "lon": -73.9101044 }, + { "lat": 40.8401970, "lon": -73.9100940 } + ], + "tags": { + "highway": "residential", + "name": "Selwyn Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Selwyn", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 664896817, + "bounds": { + "minlat": 40.8426342, + "minlon": -73.9118215, + "maxlat": 40.8429311, + "maxlon": -73.9059492 + }, + "nodes": [ + 2408350747, + 12044636985, + 7823245730, + 12044636984, + 12042551709, + 12044636983, + 12042551708, + 486818491, + 12042551707, + 10126919632, + 13068038744, + 42781421, + 13068038749, + 13067976177, + 42735929, + 13067976165, + 2408354093, + 12042551710, + 12042551711, + 42735873, + 12042551712, + 12042551706, + 2408354084, + 12042551713, + 2408354087, + 2408354090, + 12042551714, + 42771384, + 12042551705, + 12042551704, + 12042551703, + 12041872700, + 42745085 + ], + "geometry": [ + { "lat": 40.8429311, "lon": -73.9118215 }, + { "lat": 40.8429112, "lon": -73.9117906 }, + { "lat": 40.8428938, "lon": -73.9117558 }, + { "lat": 40.8428826, "lon": -73.9117317 }, + { "lat": 40.8428740, "lon": -73.9117048 }, + { "lat": 40.8428663, "lon": -73.9116778 }, + { "lat": 40.8428609, "lon": -73.9116465 }, + { "lat": 40.8428573, "lon": -73.9116126 }, + { "lat": 40.8428545, "lon": -73.9115795 }, + { "lat": 40.8428395, "lon": -73.9113148 }, + { "lat": 40.8428279, "lon": -73.9110795 }, + { "lat": 40.8428236, "lon": -73.9109933 }, + { "lat": 40.8428193, "lon": -73.9109168 }, + { "lat": 40.8428016, "lon": -73.9105431 }, + { "lat": 40.8427974, "lon": -73.9104622 }, + { "lat": 40.8427936, "lon": -73.9103848 }, + { "lat": 40.8427599, "lon": -73.9097025 }, + { "lat": 40.8427596, "lon": -73.9096709 }, + { "lat": 40.8427613, "lon": -73.9096378 }, + { "lat": 40.8427654, "lon": -73.9095948 }, + { "lat": 40.8427682, "lon": -73.9095553 }, + { "lat": 40.8427700, "lon": -73.9095164 }, + { "lat": 40.8427696, "lon": -73.9094717 }, + { "lat": 40.8427294, "lon": -73.9086612 }, + { "lat": 40.8426979, "lon": -73.9080278 }, + { "lat": 40.8426981, "lon": -73.9079751 }, + { "lat": 40.8427024, "lon": -73.9079156 }, + { "lat": 40.8427189, "lon": -73.9077516 }, + { "lat": 40.8427202, "lon": -73.9077139 }, + { "lat": 40.8427215, "lon": -73.9076794 }, + { "lat": 40.8427213, "lon": -73.9076443 }, + { "lat": 40.8426816, "lon": -73.9068517 }, + { "lat": 40.8426342, "lon": -73.9059492 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Mount Eden Parkway", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Eden", + "tiger:name_type": "Pky", + "tiger:zip_left": "10457" + } +}, +{ + "type": "way", + "id": 664896821, + "bounds": { + "minlat": 40.8428236, + "minlon": -73.9109933, + "maxlat": 40.8431338, + "maxlon": -73.9109662 + }, + "nodes": [ + 42781421, + 10126919636, + 10126919010, + 10126919011, + 12737767463, + 2408354098 + ], + "geometry": [ + { "lat": 40.8428236, "lon": -73.9109933 }, + { "lat": 40.8429047, "lon": -73.9109875 }, + { "lat": 40.8429273, "lon": -73.9109842 }, + { "lat": 40.8430318, "lon": -73.9109751 }, + { "lat": 40.8430435, "lon": -73.9109741 }, + { "lat": 40.8431338, "lon": -73.9109662 } + ], + "tags": { + "highway": "residential", + "name": "Sheridan Avenue", + "name:etymology:wikidata": "Q355452", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sheridan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 664898726, + "bounds": { + "minlat": 40.7518557, + "minlon": -73.9910212, + "maxlat": 40.7520100, + "maxlon": -73.9908081 + }, + "nodes": [ + 6223524384, + 9945692447, + 6223524381, + 6223524372, + 6223524380, + 6223524375, + 6223524376, + 6223524374, + 9945692448, + 6223524382 + ], + "geometry": [ + { "lat": 40.7519433, "lon": -73.9908081 }, + { "lat": 40.7518969, "lon": -73.9908404 }, + { "lat": 40.7518685, "lon": -73.9908601 }, + { "lat": 40.7518560, "lon": -73.9908832 }, + { "lat": 40.7518557, "lon": -73.9909170 }, + { "lat": 40.7518957, "lon": -73.9910129 }, + { "lat": 40.7519212, "lon": -73.9910212 }, + { "lat": 40.7519446, "lon": -73.9910128 }, + { "lat": 40.7519639, "lon": -73.9909990 }, + { "lat": 40.7520100, "lon": -73.9909662 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 664956646, + "bounds": { + "minlat": 40.8636889, + "minlon": -73.9611159, + "maxlat": 40.8654355, + "maxlon": -73.9593881 + }, + "nodes": [ + 103189451, + 7387444132, + 103189453, + 440215036, + 8219498968, + 103189457, + 5108212615, + 5108212616 + ], + "geometry": [ + { "lat": 40.8636889, "lon": -73.9611159 }, + { "lat": 40.8646393, "lon": -73.9600830 }, + { "lat": 40.8646910, "lon": -73.9600280 }, + { "lat": 40.8647470, "lon": -73.9599830 }, + { "lat": 40.8651371, "lon": -73.9597052 }, + { "lat": 40.8651915, "lon": -73.9596665 }, + { "lat": 40.8652731, "lon": -73.9595693 }, + { "lat": 40.8654355, "lon": -73.9593881 } + ], + "tags": { + "highway": "residential", + "name": "5th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 664985337, + "bounds": { + "minlat": 40.8231000, + "minlon": -73.9243938, + "maxlat": 40.8234557, + "maxlon": -73.9233710 + }, + "nodes": [ + 42760978, + 13547352320, + 12162740268, + 12162740321, + 6224283287, + 2408448920 + ], + "geometry": [ + { "lat": 40.8231000, "lon": -73.9233710 }, + { "lat": 40.8231292, "lon": -73.9234552 }, + { "lat": 40.8233811, "lon": -73.9241831 }, + { "lat": 40.8233980, "lon": -73.9242318 }, + { "lat": 40.8234164, "lon": -73.9242848 }, + { "lat": 40.8234557, "lon": -73.9243938 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 156th Street", + "name_1": "Thurman Munson Way", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "156th", + "tiger:name_base_1": "Thurman Munson", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:name_type_1": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 665432439, + "bounds": { + "minlat": 40.7677073, + "minlon": -73.9135691, + "maxlat": 40.7686296, + "maxlon": -73.9128276 + }, + "nodes": [ + 6228232693, + 6228232694 + ], + "geometry": [ + { "lat": 40.7677073, "lon": -73.9135691 }, + { "lat": 40.7686296, "lon": -73.9128276 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 665432440, + "bounds": { + "minlat": 40.7677073, + "minlon": -73.9139600, + "maxlat": 40.7678760, + "maxlon": -73.9135691 + }, + "nodes": [ + 6228232693, + 6406731032, + 6228232695 + ], + "geometry": [ + { "lat": 40.7677073, "lon": -73.9135691 }, + { "lat": 40.7678524, "lon": -73.9139007 }, + { "lat": 40.7678760, "lon": -73.9139600 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 665503121, + "bounds": { + "minlat": 40.7216193, + "minlon": -73.9768930, + "maxlat": 40.7224980, + "maxlon": -73.9747705 + }, + "nodes": [ + 42444835, + 4301308507, + 9010154524, + 3239828791, + 3239828790, + 4301308523, + 3884582051, + 42444837 + ], + "geometry": [ + { "lat": 40.7224980, "lon": -73.9768930 }, + { "lat": 40.7224586, "lon": -73.9767979 }, + { "lat": 40.7221637, "lon": -73.9760854 }, + { "lat": 40.7220515, "lon": -73.9758144 }, + { "lat": 40.7219809, "lon": -73.9756440 }, + { "lat": 40.7217866, "lon": -73.9751747 }, + { "lat": 40.7216466, "lon": -73.9748405 }, + { "lat": 40.7216193, "lon": -73.9747705 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 6th Street", + "name:ru": "Восточная 6-я стрит", + "name_1": "East 6 Street", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 665721572, + "bounds": { + "minlat": 40.7468123, + "minlon": -73.9866051, + "maxlat": 40.7469237, + "maxlon": -73.9865215 + }, + "nodes": [ + 6321287405, + 10173045245, + 6231398227 + ], + "geometry": [ + { "lat": 40.7468123, "lon": -73.9866051 }, + { "lat": 40.7468580, "lon": -73.9865708 }, + { "lat": 40.7469237, "lon": -73.9865215 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 665728901, + "bounds": { + "minlat": 40.7468478, + "minlon": -73.9869114, + "maxlat": 40.7469190, + "maxlon": -73.9868565 + }, + "nodes": [ + 6321287404, + 10173045246, + 4488597392 + ], + "geometry": [ + { "lat": 40.7469190, "lon": -73.9868565 }, + { "lat": 40.7468780, "lon": -73.9868881 }, + { "lat": 40.7468478, "lon": -73.9869114 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 665728902, + "bounds": { + "minlat": 40.7463652, + "minlon": -73.9874473, + "maxlat": 40.7464545, + "maxlon": -73.9873818 + }, + "nodes": [ + 6231480916, + 10173045244, + 4488597390 + ], + "geometry": [ + { "lat": 40.7463652, "lon": -73.9874473 }, + { "lat": 40.7464196, "lon": -73.9874073 }, + { "lat": 40.7464545, "lon": -73.9873818 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 665728903, + "bounds": { + "minlat": 40.7464545, + "minlon": -73.9873818, + "maxlat": 40.7468478, + "maxlon": -73.9869114 + }, + "nodes": [ + 4488597390, + 6231480908, + 6231480911, + 4488597392 + ], + "geometry": [ + { "lat": 40.7464545, "lon": -73.9873818 }, + { "lat": 40.7466821, "lon": -73.9872139 }, + { "lat": 40.7466261, "lon": -73.9870795 }, + { "lat": 40.7468478, "lon": -73.9869114 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 666607994, + "bounds": { + "minlat": 40.7477084, + "minlon": -73.9432473, + "maxlat": 40.7489020, + "maxlon": -73.9421415 + }, + "nodes": [ + 42818139, + 2971841349, + 11520108677, + 42818600, + 11520108744, + 42818606 + ], + "geometry": [ + { "lat": 40.7489020, "lon": -73.9421415 }, + { "lat": 40.7488294, "lon": -73.9422180 }, + { "lat": 40.7480994, "lon": -73.9428811 }, + { "lat": 40.7480509, "lon": -73.9429252 }, + { "lat": 40.7480034, "lon": -73.9429698 }, + { "lat": 40.7477084, "lon": -73.9432473 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 666628988, + "bounds": { + "minlat": 40.7497560, + "minlon": -73.9134840, + "maxlat": 40.7501990, + "maxlon": -73.9097177 + }, + "nodes": [ + 42815123, + 6450796486, + 6880750138, + 42815119, + 5482228853, + 42815113 + ], + "geometry": [ + { "lat": 40.7497560, "lon": -73.9097177 }, + { "lat": 40.7497648, "lon": -73.9097936 }, + { "lat": 40.7498188, "lon": -73.9102543 }, + { "lat": 40.7499790, "lon": -73.9116250 }, + { "lat": 40.7500796, "lon": -73.9124751 }, + { "lat": 40.7501990, "lon": -73.9134840 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Barnett Avenue", + "name_1": "38th Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Barnett", + "tiger:name_base_1": "38th", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11104", + "tiger:zip_left_1": "11104", + "tiger:zip_right": "11104", + "tiger:zip_right_1": "11104" + } +}, +{ + "type": "way", + "id": 666628989, + "bounds": { + "minlat": 40.7477422, + "minlon": -73.9158773, + "maxlat": 40.7491430, + "maxlon": -73.9156000 + }, + "nodes": [ + 42859942, + 7667084784, + 42800147, + 3655975942, + 10774439452, + 42791070, + 42805108, + 7530789562, + 42805120 + ], + "geometry": [ + { "lat": 40.7491430, "lon": -73.9156000 }, + { "lat": 40.7490709, "lon": -73.9156149 }, + { "lat": 40.7488780, "lon": -73.9156530 }, + { "lat": 40.7484820, "lon": -73.9157322 }, + { "lat": 40.7482501, "lon": -73.9157786 }, + { "lat": 40.7482130, "lon": -73.9157860 }, + { "lat": 40.7479470, "lon": -73.9158390 }, + { "lat": 40.7478017, "lon": -73.9158662 }, + { "lat": 40.7477422, "lon": -73.9158773 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxheight": "11'5\"", + "maxspeed": "20 mph", + "name": "48th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 666628990, + "bounds": { + "minlat": 40.7501311, + "minlon": -73.9154002, + "maxlat": 40.7502244, + "maxlon": -73.9134840 + }, + "nodes": [ + 42815113, + 8925257572, + 2699913213, + 276231826, + 2699913210, + 10762234046, + 42815107 + ], + "geometry": [ + { "lat": 40.7501990, "lon": -73.9134840 }, + { "lat": 40.7502157, "lon": -73.9137149 }, + { "lat": 40.7502244, "lon": -73.9138345 }, + { "lat": 40.7502239, "lon": -73.9143755 }, + { "lat": 40.7501780, "lon": -73.9149122 }, + { "lat": 40.7501400, "lon": -73.9153080 }, + { "lat": 40.7501311, "lon": -73.9154002 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Barnett Avenue", + "name_1": "38th Avenue", + "oneway": "yes", + "sidewalk": "left", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 666752576, + "bounds": { + "minlat": 40.7347875, + "minlon": -73.9917243, + "maxlat": 40.7352039, + "maxlon": -73.9907407 + }, + "nodes": [ + 42438784, + 3670742441, + 12179582181, + 3670742474, + 42428493 + ], + "geometry": [ + { "lat": 40.7352039, "lon": -73.9917243 }, + { "lat": 40.7351604, "lon": -73.9916209 }, + { "lat": 40.7348669, "lon": -73.9909240 }, + { "lat": 40.7348347, "lon": -73.9908476 }, + { "lat": 40.7347875, "lon": -73.9907407 } + ], + "tags": { + "bus": "yes", + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 666827052, + "bounds": { + "minlat": 40.7839852, + "minlon": -73.9483798, + "maxlat": 40.7840345, + "maxlon": -73.9483466 + }, + "nodes": [ + 6243559674, + 12032673872, + 6243559676 + ], + "geometry": [ + { "lat": 40.7839852, "lon": -73.9483798 }, + { "lat": 40.7840101, "lon": -73.9483631 }, + { "lat": 40.7840345, "lon": -73.9483466 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 667046123, + "bounds": { + "minlat": 40.7212491, + "minlon": -73.9572780, + "maxlat": 40.7214616, + "maxlon": -73.9570444 + }, + "nodes": [ + 6245642016, + 9794890567, + 6245642017 + ], + "geometry": [ + { "lat": 40.7212491, "lon": -73.9572780 }, + { "lat": 40.7212963, "lon": -73.9572261 }, + { "lat": 40.7214616, "lon": -73.9570444 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 667300032, + "bounds": { + "minlat": 40.7876568, + "minlon": -73.9470300, + "maxlat": 40.7881680, + "maxlon": -73.9468535 + }, + "nodes": [ + 5482216747, + 5482216746, + 5482216745 + ], + "geometry": [ + { "lat": 40.7881680, "lon": -73.9468535 }, + { "lat": 40.7878324, "lon": -73.9469697 }, + { "lat": 40.7876568, "lon": -73.9470300 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 667306868, + "bounds": { + "minlat": 40.7865661, + "minlon": -73.9466229, + "maxlat": 40.7867996, + "maxlon": -73.9464429 + }, + "nodes": [ + 6247953721, + 6247953147, + 6247953151 + ], + "geometry": [ + { "lat": 40.7865661, "lon": -73.9466229 }, + { "lat": 40.7866374, "lon": -73.9465680 }, + { "lat": 40.7867996, "lon": -73.9464429 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 667344132, + "bounds": { + "minlat": 40.7359141, + "minlon": -73.9912118, + "maxlat": 40.7365119, + "maxlon": -73.9907749 + }, + "nodes": [ + 42438785, + 5148103559, + 5148103562, + 42431491 + ], + "geometry": [ + { "lat": 40.7365119, "lon": -73.9907749 }, + { "lat": 40.7364752, "lon": -73.9908010 }, + { "lat": 40.7359461, "lon": -73.9911881 }, + { "lat": 40.7359141, "lon": -73.9912118 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Union Square West", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:bicycle:lanes": "right;through", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 667597422, + "bounds": { + "minlat": 40.7421570, + "minlon": -73.9870446, + "maxlat": 40.7427711, + "maxlon": -73.9865977 + }, + "nodes": [ + 42445879, + 10179045676, + 4276517115, + 42429876 + ], + "geometry": [ + { "lat": 40.7421570, "lon": -73.9870446 }, + { "lat": 40.7422050, "lon": -73.9870101 }, + { "lat": 40.7427153, "lon": -73.9866386 }, + { "lat": 40.7427711, "lon": -73.9865977 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 667768169, + "bounds": { + "minlat": 40.7099153, + "minlon": -73.9139375, + "maxlat": 40.7107443, + "maxlon": -73.9129424 + }, + "nodes": [ + 6252541236, + 6252541237, + 6252541238, + 6252541239, + 6252541240, + 6252541241, + 6252541242, + 6252541243, + 6252541244, + 6252542643, + 6252541245, + 6252541246, + 6252541247, + 6252541248, + 6252541249, + 6252541250, + 6252541251 + ], + "geometry": [ + { "lat": 40.7099153, "lon": -73.9137190 }, + { "lat": 40.7100042, "lon": -73.9138276 }, + { "lat": 40.7100998, "lon": -73.9138946 }, + { "lat": 40.7101954, "lon": -73.9139295 }, + { "lat": 40.7102787, "lon": -73.9139375 }, + { "lat": 40.7103702, "lon": -73.9139322 }, + { "lat": 40.7105064, "lon": -73.9138651 }, + { "lat": 40.7105715, "lon": -73.9138115 }, + { "lat": 40.7106508, "lon": -73.9137176 }, + { "lat": 40.7106924, "lon": -73.9136415 }, + { "lat": 40.7107037, "lon": -73.9136210 }, + { "lat": 40.7107362, "lon": -73.9135111 }, + { "lat": 40.7107443, "lon": -73.9133582 }, + { "lat": 40.7107402, "lon": -73.9132429 }, + { "lat": 40.7107199, "lon": -73.9131275 }, + { "lat": 40.7106874, "lon": -73.9130390 }, + { "lat": 40.7106325, "lon": -73.9129424 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768171, + "bounds": { + "minlat": 40.7106325, + "minlon": -73.9129424, + "maxlat": 40.7123464, + "maxlon": -73.9113841 + }, + "nodes": [ + 6252541251, + 6252542626, + 6252542639, + 6252541252, + 6252542638, + 6252541253, + 6252541254, + 9755788635, + 6252541255 + ], + "geometry": [ + { "lat": 40.7106325, "lon": -73.9129424 }, + { "lat": 40.7107127, "lon": -73.9128662 }, + { "lat": 40.7113444, "lon": -73.9122649 }, + { "lat": 40.7115738, "lon": -73.9120466 }, + { "lat": 40.7116405, "lon": -73.9120254 }, + { "lat": 40.7118015, "lon": -73.9119742 }, + { "lat": 40.7122711, "lon": -73.9114641 }, + { "lat": 40.7122952, "lon": -73.9114385 }, + { "lat": 40.7123464, "lon": -73.9113841 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768173, + "bounds": { + "minlat": 40.7117040, + "minlon": -73.9132018, + "maxlat": 40.7120642, + "maxlon": -73.9125401 + }, + "nodes": [ + 6252541256, + 6252541257 + ], + "geometry": [ + { "lat": 40.7117040, "lon": -73.9125401 }, + { "lat": 40.7120642, "lon": -73.9132018 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768174, + "bounds": { + "minlat": 40.7111611, + "minlon": -73.9130444, + "maxlat": 40.7117040, + "maxlon": -73.9125401 + }, + "nodes": [ + 6252541256, + 6252541258 + ], + "geometry": [ + { "lat": 40.7117040, "lon": -73.9125401 }, + { "lat": 40.7111611, "lon": -73.9130444 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768176, + "bounds": { + "minlat": 40.7117040, + "minlon": -73.9125401, + "maxlat": 40.7123322, + "maxlon": -73.9119339 + }, + "nodes": [ + 6252541256, + 6252541259 + ], + "geometry": [ + { "lat": 40.7117040, "lon": -73.9125401 }, + { "lat": 40.7123322, "lon": -73.9119339 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768177, + "bounds": { + "minlat": 40.7120574, + "minlon": -73.9135312, + "maxlat": 40.7124543, + "maxlon": -73.9130092 + }, + "nodes": [ + 6252541277, + 6252541260, + 6252541283, + 6252541261, + 6252541262, + 6252541263, + 6252541264, + 6252541265, + 6252541257, + 6252541266, + 6252541276, + 6252541267, + 6252541268, + 6252541269, + 6252541270, + 6252541271, + 6252541272, + 6252541278, + 6252541273, + 6252541274, + 6252541275, + 6252541277 + ], + "geometry": [ + { "lat": 40.7123491, "lon": -73.9135041 }, + { "lat": 40.7122873, "lon": -73.9135312 }, + { "lat": 40.7122651, "lon": -73.9135310 }, + { "lat": 40.7122213, "lon": -73.9135304 }, + { "lat": 40.7121591, "lon": -73.9135012 }, + { "lat": 40.7121076, "lon": -73.9134468 }, + { "lat": 40.7120724, "lon": -73.9133731 }, + { "lat": 40.7120574, "lon": -73.9132883 }, + { "lat": 40.7120642, "lon": -73.9132018 }, + { "lat": 40.7120921, "lon": -73.9131228 }, + { "lat": 40.7121380, "lon": -73.9130603 }, + { "lat": 40.7121969, "lon": -73.9130210 }, + { "lat": 40.7122614, "lon": -73.9130092 }, + { "lat": 40.7123254, "lon": -73.9130255 }, + { "lat": 40.7123819, "lon": -73.9130682 }, + { "lat": 40.7124250, "lon": -73.9131326 }, + { "lat": 40.7124500, "lon": -73.9132120 }, + { "lat": 40.7124516, "lon": -73.9132431 }, + { "lat": 40.7124543, "lon": -73.9132978 }, + { "lat": 40.7124373, "lon": -73.9133807 }, + { "lat": 40.7124010, "lon": -73.9134521 }, + { "lat": 40.7123491, "lon": -73.9135041 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768179, + "bounds": { + "minlat": 40.7124516, + "minlon": -73.9132431, + "maxlat": 40.7131079, + "maxlon": -73.9131643 + }, + "nodes": [ + 6252541278, + 6252542668, + 6252541279 + ], + "geometry": [ + { "lat": 40.7124516, "lon": -73.9132431 }, + { "lat": 40.7127998, "lon": -73.9132013 }, + { "lat": 40.7131079, "lon": -73.9131643 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768180, + "bounds": { + "minlat": 40.7131767, + "minlon": -73.9131524, + "maxlat": 40.7133479, + "maxlon": -73.9131391 + }, + "nodes": [ + 6252541280, + 9747646534, + 6252541282 + ], + "geometry": [ + { "lat": 40.7131767, "lon": -73.9131524 }, + { "lat": 40.7132607, "lon": -73.9131462 }, + { "lat": 40.7133479, "lon": -73.9131391 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768182, + "bounds": { + "minlat": 40.7122651, + "minlon": -73.9145708, + "maxlat": 40.7123392, + "maxlon": -73.9135310 + }, + "nodes": [ + 6252541283, + 6252542666, + 6252541284 + ], + "geometry": [ + { "lat": 40.7122651, "lon": -73.9135310 }, + { "lat": 40.7122838, "lon": -73.9137932 }, + { "lat": 40.7123392, "lon": -73.9145708 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768185, + "bounds": { + "minlat": 40.7123539, + "minlon": -73.9155397, + "maxlat": 40.7125854, + "maxlon": -73.9147743 + }, + "nodes": [ + 6252542585, + 6252542586, + 9747646540, + 6252542587 + ], + "geometry": [ + { "lat": 40.7123539, "lon": -73.9147743 }, + { "lat": 40.7125456, "lon": -73.9154565 }, + { "lat": 40.7125611, "lon": -73.9154912 }, + { "lat": 40.7125854, "lon": -73.9155397 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768187, + "bounds": { + "minlat": 40.7122727, + "minlon": -73.9147743, + "maxlat": 40.7124273, + "maxlon": -73.9145708 + }, + "nodes": [ + 6252542588, + 6252542598, + 6252542599, + 6252542600, + 6252542601, + 6252542585, + 6252542589, + 6252542590, + 6252542591, + 6252542592, + 6252542593, + 6252542602, + 6252542603, + 6252542604, + 6252541284, + 6252542594, + 6252542595, + 6252542596, + 6252542597, + 6252542588 + ], + "geometry": [ + { "lat": 40.7124273, "lon": -73.9146621 }, + { "lat": 40.7124258, "lon": -73.9146949 }, + { "lat": 40.7124164, "lon": -73.9147254 }, + { "lat": 40.7124002, "lon": -73.9147504 }, + { "lat": 40.7123788, "lon": -73.9147673 }, + { "lat": 40.7123539, "lon": -73.9147743 }, + { "lat": 40.7123284, "lon": -73.9147704 }, + { "lat": 40.7123048, "lon": -73.9147553 }, + { "lat": 40.7122864, "lon": -73.9147306 }, + { "lat": 40.7122753, "lon": -73.9146993 }, + { "lat": 40.7122727, "lon": -73.9146648 }, + { "lat": 40.7122790, "lon": -73.9146313 }, + { "lat": 40.7122933, "lon": -73.9146023 }, + { "lat": 40.7123142, "lon": -73.9145814 }, + { "lat": 40.7123392, "lon": -73.9145708 }, + { "lat": 40.7123641, "lon": -73.9145714 }, + { "lat": 40.7123876, "lon": -73.9145825 }, + { "lat": 40.7124072, "lon": -73.9146028 }, + { "lat": 40.7124209, "lon": -73.9146303 }, + { "lat": 40.7124273, "lon": -73.9146621 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768190, + "bounds": { + "minlat": 40.7103250, + "minlon": -73.9132597, + "maxlat": 40.7106325, + "maxlon": -73.9129424 + }, + "nodes": [ + 6252541251, + 6252542605 + ], + "geometry": [ + { "lat": 40.7106325, "lon": -73.9129424 }, + { "lat": 40.7103250, "lon": -73.9132597 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768192, + "bounds": { + "minlat": 40.7102296, + "minlon": -73.9133839, + "maxlat": 40.7103404, + "maxlon": -73.9132378 + }, + "nodes": [ + 6252542622, + 6252542623, + 6252542624, + 6252542607, + 6252542608, + 6252542609, + 6252542610, + 6252542611, + 6252542612, + 6252542618, + 6252542619, + 6252542620, + 6252542621, + 6252542613, + 6252542614, + 6252542615, + 6252542605, + 6252542616, + 6252542617, + 6252542622 + ], + "geometry": [ + { "lat": 40.7103386, "lon": -73.9133302 }, + { "lat": 40.7103304, "lon": -73.9133530 }, + { "lat": 40.7103168, "lon": -73.9133708 }, + { "lat": 40.7102994, "lon": -73.9133815 }, + { "lat": 40.7102820, "lon": -73.9133839 }, + { "lat": 40.7102649, "lon": -73.9133790 }, + { "lat": 40.7102497, "lon": -73.9133673 }, + { "lat": 40.7102381, "lon": -73.9133500 }, + { "lat": 40.7102312, "lon": -73.9133288 }, + { "lat": 40.7102296, "lon": -73.9133058 }, + { "lat": 40.7102335, "lon": -73.9132832 }, + { "lat": 40.7102425, "lon": -73.9132634 }, + { "lat": 40.7102558, "lon": -73.9132483 }, + { "lat": 40.7102720, "lon": -73.9132394 }, + { "lat": 40.7102911, "lon": -73.9132378 }, + { "lat": 40.7103095, "lon": -73.9132449 }, + { "lat": 40.7103250, "lon": -73.9132597 }, + { "lat": 40.7103357, "lon": -73.9132806 }, + { "lat": 40.7103404, "lon": -73.9133051 }, + { "lat": 40.7103386, "lon": -73.9133302 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768193, + "bounds": { + "minlat": 40.7097949, + "minlon": -73.9138484, + "maxlat": 40.7102497, + "maxlon": -73.9133673 + }, + "nodes": [ + 6252541235, + 6252542659, + 6252541236, + 6252542606, + 6252542610 + ], + "geometry": [ + { "lat": 40.7097949, "lon": -73.9138484 }, + { "lat": 40.7098449, "lon": -73.9137946 }, + { "lat": 40.7099153, "lon": -73.9137190 }, + { "lat": 40.7100900, "lon": -73.9135313 }, + { "lat": 40.7102497, "lon": -73.9133673 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768195, + "bounds": { + "minlat": 40.7097352, + "minlon": -73.9139128, + "maxlat": 40.7097949, + "maxlon": -73.9138484 + }, + "nodes": [ + 6252541235, + 9747646541, + 6252542625 + ], + "geometry": [ + { "lat": 40.7097949, "lon": -73.9138484 }, + { "lat": 40.7097840, "lon": -73.9138602 }, + { "lat": 40.7097352, "lon": -73.9139128 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768196, + "bounds": { + "minlat": 40.7092836, + "minlon": -73.9131439, + "maxlat": 40.7107127, + "maxlon": -73.9121053 + }, + "nodes": [ + 6252542626, + 6252542636, + 6252542627, + 6252542628, + 6252542633, + 6252542635, + 6252542629, + 9755788649, + 6252542630 + ], + "geometry": [ + { "lat": 40.7107127, "lon": -73.9128662 }, + { "lat": 40.7105762, "lon": -73.9126438 }, + { "lat": 40.7102589, "lon": -73.9121268 }, + { "lat": 40.7102426, "lon": -73.9121053 }, + { "lat": 40.7099199, "lon": -73.9124540 }, + { "lat": 40.7096395, "lon": -73.9127569 }, + { "lat": 40.7093432, "lon": -73.9130771 }, + { "lat": 40.7093359, "lon": -73.9130853 }, + { "lat": 40.7092836, "lon": -73.9131439 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667768206, + "bounds": { + "minlat": 40.7106924, + "minlon": -73.9160687, + "maxlat": 40.7120673, + "maxlon": -73.9136415 + }, + "nodes": [ + 6252542643, + 6252542650, + 6252542655, + 6252542653, + 6252542646, + 6252542644, + 9747646547, + 6252542645 + ], + "geometry": [ + { "lat": 40.7106924, "lon": -73.9136415 }, + { "lat": 40.7109752, "lon": -73.9141411 }, + { "lat": 40.7112942, "lon": -73.9147046 }, + { "lat": 40.7114888, "lon": -73.9150485 }, + { "lat": 40.7117465, "lon": -73.9155037 }, + { "lat": 40.7120277, "lon": -73.9159992 }, + { "lat": 40.7120439, "lon": -73.9160271 }, + { "lat": 40.7120673, "lon": -73.9160687 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667931441, + "bounds": { + "minlat": 40.7346151, + "minlon": -73.9994426, + "maxlat": 40.7347629, + "maxlon": -73.9993581 + }, + "nodes": [ + 6254325748, + 6254325761, + 6254325754, + 6254325741, + 6254325756 + ], + "geometry": [ + { "lat": 40.7347629, "lon": -73.9994426 }, + { "lat": 40.7347233, "lon": -73.9994212 }, + { "lat": 40.7347032, "lon": -73.9994087 }, + { "lat": 40.7346739, "lon": -73.9993919 }, + { "lat": 40.7346151, "lon": -73.9993581 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 667931443, + "bounds": { + "minlat": 40.7338234, + "minlon": -73.9995993, + "maxlat": 40.7340903, + "maxlon": -73.9993341 + }, + "nodes": [ + 6254325743, + 4320194270, + 6254325742, + 6254325757, + 6254325739, + 6254325745, + 6254325740, + 6254325758, + 6254325755, + 6254325736, + 6254325760, + 6254325746, + 6254325732, + 6254325751, + 6254325743 + ], + "geometry": [ + { "lat": 40.7340799, "lon": -73.9993341 }, + { "lat": 40.7340652, "lon": -73.9993447 }, + { "lat": 40.7338604, "lon": -73.9994917 }, + { "lat": 40.7338234, "lon": -73.9995182 }, + { "lat": 40.7338236, "lon": -73.9995315 }, + { "lat": 40.7338547, "lon": -73.9995419 }, + { "lat": 40.7340198, "lon": -73.9995969 }, + { "lat": 40.7340270, "lon": -73.9995993 }, + { "lat": 40.7340306, "lon": -73.9995991 }, + { "lat": 40.7340383, "lon": -73.9995961 }, + { "lat": 40.7340549, "lon": -73.9995782 }, + { "lat": 40.7340598, "lon": -73.9995521 }, + { "lat": 40.7340852, "lon": -73.9993761 }, + { "lat": 40.7340903, "lon": -73.9993418 }, + { "lat": 40.7340799, "lon": -73.9993341 } + ], + "tags": { + "alt_name": "Village Gateway", + "area": "yes", + "ele": "6", + "gnis:feature_id": "2082842", + "highway": "pedestrian", + "lit": "yes", + "name": "Ruth Wittenberg Triangle", + "name:etymology:wikidata": "Q42136140", + "name:etymology:wikipedia": "en:Ruth Wittenberg", + "old_name": "Village Square", + "operator": "Village Alliance", + "surface": "concrete", + "website": "https://greenwichvillage.nyc/places/ruth-wittenberg-triangle/", + "wikidata": "Q115627355" + } +}, +{ + "type": "way", + "id": 667931444, + "bounds": { + "minlat": 40.7346739, + "minlon": -73.9993919, + "maxlat": 40.7346944, + "maxlon": -73.9992688 + }, + "nodes": [ + 6254325741, + 6254325747 + ], + "geometry": [ + { "lat": 40.7346739, "lon": -73.9993919 }, + { "lat": 40.7346944, "lon": -73.9992688 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 667933507, + "bounds": { + "minlat": 40.7489944, + "minlon": -73.9881461, + "maxlat": 40.7497007, + "maxlon": -73.9876550 + }, + "nodes": [ + 4707482459, + 10261412730, + 10261412731, + 4707482460, + 10261412743, + 10261412735, + 10261412727, + 10261412728, + 10261412729, + 2779124103, + 10261412744, + 10261412726, + 2709307548, + 2709307573, + 2709307581, + 2709307583, + 2709307585, + 9490502660, + 4707482480, + 10258552955, + 3857366822, + 10258552953, + 10258552954, + 9971314383, + 6224278790, + 4707482483, + 4707482488, + 6224277880, + 4707482459 + ], + "geometry": [ + { "lat": 40.7491228, "lon": -73.9881442 }, + { "lat": 40.7491195, "lon": -73.9881461 }, + { "lat": 40.7491160, "lon": -73.9881454 }, + { "lat": 40.7491135, "lon": -73.9881426 }, + { "lat": 40.7490581, "lon": -73.9880102 }, + { "lat": 40.7490264, "lon": -73.9879345 }, + { "lat": 40.7489962, "lon": -73.9878624 }, + { "lat": 40.7489944, "lon": -73.9878557 }, + { "lat": 40.7489952, "lon": -73.9878466 }, + { "lat": 40.7489990, "lon": -73.9878381 }, + { "lat": 40.7490203, "lon": -73.9878230 }, + { "lat": 40.7490356, "lon": -73.9878123 }, + { "lat": 40.7490703, "lon": -73.9878949 }, + { "lat": 40.7492205, "lon": -73.9878687 }, + { "lat": 40.7494316, "lon": -73.9878282 }, + { "lat": 40.7494861, "lon": -73.9878003 }, + { "lat": 40.7496098, "lon": -73.9877104 }, + { "lat": 40.7496611, "lon": -73.9876746 }, + { "lat": 40.7496895, "lon": -73.9876550 }, + { "lat": 40.7496982, "lon": -73.9876764 }, + { "lat": 40.7497007, "lon": -73.9876887 }, + { "lat": 40.7497004, "lon": -73.9877010 }, + { "lat": 40.7496979, "lon": -73.9877110 }, + { "lat": 40.7496932, "lon": -73.9877193 }, + { "lat": 40.7496843, "lon": -73.9877302 }, + { "lat": 40.7496643, "lon": -73.9877464 }, + { "lat": 40.7496340, "lon": -73.9877692 }, + { "lat": 40.7491470, "lon": -73.9881270 }, + { "lat": 40.7491228, "lon": -73.9881442 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 667936331, + "bounds": { + "minlat": 40.7864147, + "minlon": -73.9483878, + "maxlat": 40.7868221, + "maxlon": -73.9477602 + }, + "nodes": [ + 42450048, + 6309148698, + 6254382837, + 6254382847, + 6254382869 + ], + "geometry": [ + { "lat": 40.7865037, "lon": -73.9483878 }, + { "lat": 40.7864441, "lon": -73.9482483 }, + { "lat": 40.7864305, "lon": -73.9482182 }, + { "lat": 40.7864147, "lon": -73.9480725 }, + { "lat": 40.7868221, "lon": -73.9477602 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 667936333, + "bounds": { + "minlat": 40.7868221, + "minlon": -73.9480208, + "maxlat": 40.7869997, + "maxlon": -73.9477602 + }, + "nodes": [ + 6254382869, + 6254382831, + 6309148697, + 6254382857 + ], + "geometry": [ + { "lat": 40.7868221, "lon": -73.9477602 }, + { "lat": 40.7869007, "lon": -73.9478756 }, + { "lat": 40.7869175, "lon": -73.9479003 }, + { "lat": 40.7869997, "lon": -73.9480208 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 667958785, + "bounds": { + "minlat": 40.7905551, + "minlon": -73.9502154, + "maxlat": 40.7912650, + "maxlon": -73.9496950 + }, + "nodes": [ + 6254651507, + 6254651498, + 6254651505, + 6254651553 + ], + "geometry": [ + { "lat": 40.7905551, "lon": -73.9502154 }, + { "lat": 40.7906318, "lon": -73.9501592 }, + { "lat": 40.7906569, "lon": -73.9501408 }, + { "lat": 40.7912650, "lon": -73.9496950 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 667958800, + "bounds": { + "minlat": 40.7909426, + "minlon": -73.9511276, + "maxlat": 40.7916879, + "maxlon": -73.9505891 + }, + "nodes": [ + 6254651525, + 6254649862, + 6254651580, + 6254651515 + ], + "geometry": [ + { "lat": 40.7909426, "lon": -73.9511276 }, + { "lat": 40.7910196, "lon": -73.9510720 }, + { "lat": 40.7910424, "lon": -73.9510557 }, + { "lat": 40.7916879, "lon": -73.9505891 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 668045043, + "bounds": { + "minlat": 40.7319678, + "minlon": -73.9956705, + "maxlat": 40.7320387, + "maxlon": -73.9956142 + }, + "nodes": [ + 6255601608, + 8309478858, + 6255601609 + ], + "geometry": [ + { "lat": 40.7319678, "lon": -73.9956705 }, + { "lat": 40.7320225, "lon": -73.9956271 }, + { "lat": 40.7320387, "lon": -73.9956142 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 668045044, + "bounds": { + "minlat": 40.7319369, + "minlon": -73.9955971, + "maxlat": 40.7320082, + "maxlon": -73.9955426 + }, + "nodes": [ + 6255601610, + 8309478857, + 6255601607 + ], + "geometry": [ + { "lat": 40.7320082, "lon": -73.9955426 }, + { "lat": 40.7319919, "lon": -73.9955550 }, + { "lat": 40.7319369, "lon": -73.9955971 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 668070114, + "bounds": { + "minlat": 40.8070597, + "minlon": -73.9609774, + "maxlat": 40.8076153, + "maxlon": -73.9603706 + }, + "nodes": [ + 6255838348, + 6255838347, + 7323390438, + 3347295531, + 8379863215, + 6255838346, + 6255838345, + 8379847757, + 6255838344, + 6255838343, + 8379847756, + 6255838342, + 6255838341, + 8379863214, + 8379847773, + 7323390437, + 6255838348 + ], + "geometry": [ + { "lat": 40.8076153, "lon": -73.9606494 }, + { "lat": 40.8071653, "lon": -73.9609774 }, + { "lat": 40.8071606, "lon": -73.9609661 }, + { "lat": 40.8071127, "lon": -73.9608515 }, + { "lat": 40.8070705, "lon": -73.9607504 }, + { "lat": 40.8070611, "lon": -73.9607279 }, + { "lat": 40.8070760, "lon": -73.9607170 }, + { "lat": 40.8070703, "lon": -73.9607032 }, + { "lat": 40.8070597, "lon": -73.9606779 }, + { "lat": 40.8074814, "lon": -73.9603706 }, + { "lat": 40.8074958, "lon": -73.9604049 }, + { "lat": 40.8074988, "lon": -73.9604122 }, + { "lat": 40.8075122, "lon": -73.9604024 }, + { "lat": 40.8075206, "lon": -73.9604226 }, + { "lat": 40.8075609, "lon": -73.9605192 }, + { "lat": 40.8076109, "lon": -73.9606390 }, + { "lat": 40.8076153, "lon": -73.9606494 } + ], + "tags": { + "area": "yes", + "bridge": "yes", + "highway": "pedestrian", + "layer": "1", + "name": "Revson Plaza", + "name:etymology:wikidata": "Q1065894" + } +}, +{ + "type": "way", + "id": 668142700, + "bounds": { + "minlat": 40.7938447, + "minlon": -73.9490487, + "maxlat": 40.7942372, + "maxlon": -73.9481258 + }, + "nodes": [ + 6256723780, + 6270715185, + 6256725809 + ], + "geometry": [ + { "lat": 40.7942372, "lon": -73.9490487 }, + { "lat": 40.7941921, "lon": -73.9489413 }, + { "lat": 40.7938447, "lon": -73.9481258 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 668153180, + "bounds": { + "minlat": 40.7954456, + "minlon": -73.9326614, + "maxlat": 40.7957326, + "maxlon": -73.9319863 + }, + "nodes": [ + 6216836461, + 6257070569, + 6216836414, + 42448283 + ], + "geometry": [ + { "lat": 40.7954456, "lon": -73.9319863 }, + { "lat": 40.7954666, "lon": -73.9320371 }, + { "lat": 40.7956826, "lon": -73.9325417 }, + { "lat": 40.7957326, "lon": -73.9326614 } + ], + "tags": { + "highway": "residential", + "name": "East 117th Street", + "name:ru": "Восточная 117-я стрит", + "name_1": "East 117 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 668153181, + "bounds": { + "minlat": 40.7946547, + "minlon": -73.9311356, + "maxlat": 40.7951916, + "maxlon": -73.9304945 + }, + "nodes": [ + 2765482000, + 6257190479, + 6257190609, + 6257190588, + 6257190618, + 6257190610, + 2765482022, + 6257190598, + 6257190615, + 6257190592, + 6257190599, + 6256829755, + 42449846, + 6256829752, + 6257190619, + 6256829757, + 2765482001, + 6257190607, + 2765481996, + 2765482000 + ], + "geometry": [ + { "lat": 40.7946547, "lon": -73.9309027 }, + { "lat": 40.7949007, "lon": -73.9305783 }, + { "lat": 40.7949335, "lon": -73.9305917 }, + { "lat": 40.7949413, "lon": -73.9306081 }, + { "lat": 40.7949688, "lon": -73.9305887 }, + { "lat": 40.7949426, "lon": -73.9305292 }, + { "lat": 40.7949697, "lon": -73.9304945 }, + { "lat": 40.7951916, "lon": -73.9310208 }, + { "lat": 40.7951697, "lon": -73.9310376 }, + { "lat": 40.7951515, "lon": -73.9310515 }, + { "lat": 40.7951401, "lon": -73.9310603 }, + { "lat": 40.7951160, "lon": -73.9310788 }, + { "lat": 40.7950783, "lon": -73.9311071 }, + { "lat": 40.7950402, "lon": -73.9311356 }, + { "lat": 40.7950246, "lon": -73.9310966 }, + { "lat": 40.7949941, "lon": -73.9310203 }, + { "lat": 40.7949794, "lon": -73.9310305 }, + { "lat": 40.7949566, "lon": -73.9309755 }, + { "lat": 40.7948669, "lon": -73.9307541 }, + { "lat": 40.7946547, "lon": -73.9309027 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "level": "0" + } +}, +{ + "type": "way", + "id": 668168842, + "bounds": { + "minlat": 40.7953991, + "minlon": -73.9320842, + "maxlat": 40.7954666, + "maxlon": -73.9320371 + }, + "nodes": [ + 6257070569, + 6257070547, + 6257070506 + ], + "geometry": [ + { "lat": 40.7954666, "lon": -73.9320371 }, + { "lat": 40.7954225, "lon": -73.9320666 }, + { "lat": 40.7953991, "lon": -73.9320842 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 668808115, + "bounds": { + "minlat": 40.7750200, + "minlon": -73.9512317, + "maxlat": 40.7751977, + "maxlon": -73.9509621 + }, + "nodes": [ + 6263083514, + 8251531282, + 6263083511, + 9294497944, + 9294497953, + 6263083527, + 9294497952, + 9294497951, + 9294497950, + 6263083528, + 9294497949, + 9294497948, + 6263083520, + 9294497945, + 8251531276, + 6263083526 + ], + "geometry": [ + { "lat": 40.7750200, "lon": -73.9510239 }, + { "lat": 40.7750821, "lon": -73.9509821 }, + { "lat": 40.7751110, "lon": -73.9509626 }, + { "lat": 40.7751209, "lon": -73.9509621 }, + { "lat": 40.7751316, "lon": -73.9509656 }, + { "lat": 40.7751451, "lon": -73.9509728 }, + { "lat": 40.7751547, "lon": -73.9509814 }, + { "lat": 40.7751648, "lon": -73.9509968 }, + { "lat": 40.7751772, "lon": -73.9510247 }, + { "lat": 40.7751890, "lon": -73.9510599 }, + { "lat": 40.7751953, "lon": -73.9510893 }, + { "lat": 40.7751977, "lon": -73.9511219 }, + { "lat": 40.7751962, "lon": -73.9511551 }, + { "lat": 40.7751865, "lon": -73.9511702 }, + { "lat": 40.7751675, "lon": -73.9511851 }, + { "lat": 40.7751077, "lon": -73.9512317 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 669157624, + "bounds": { + "minlat": 40.8018953, + "minlon": -73.9304986, + "maxlat": 40.8034956, + "maxlon": -73.9300369 + }, + "nodes": [ + 6266152785, + 6137500075, + 5920675982, + 12537570246, + 6137500083, + 12537570245, + 5920675985, + 12537570244, + 6137500084, + 6137509877 + ], + "geometry": [ + { "lat": 40.8018953, "lon": -73.9300369 }, + { "lat": 40.8024991, "lon": -73.9301687 }, + { "lat": 40.8026533, "lon": -73.9302040 }, + { "lat": 40.8027543, "lon": -73.9302261 }, + { "lat": 40.8028624, "lon": -73.9302587 }, + { "lat": 40.8029911, "lon": -73.9303060 }, + { "lat": 40.8031155, "lon": -73.9303487 }, + { "lat": 40.8032359, "lon": -73.9303935 }, + { "lat": 40.8033560, "lon": -73.9304401 }, + { "lat": 40.8034956, "lon": -73.9304986 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 669430092, + "bounds": { + "minlat": 40.7879283, + "minlon": -73.9416182, + "maxlat": 40.7879334, + "maxlon": -73.9416069 + }, + "nodes": [ + 6191027354, + 6268820940 + ], + "geometry": [ + { "lat": 40.7879334, "lon": -73.9416182 }, + { "lat": 40.7879283, "lon": -73.9416069 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 669597134, + "bounds": { + "minlat": 40.7134791, + "minlon": -73.9152161, + "maxlat": 40.7137823, + "maxlon": -73.9152035 + }, + "nodes": [ + 7712120184, + 9747567489, + 8968692154, + 7711304350 + ], + "geometry": [ + { "lat": 40.7134791, "lon": -73.9152161 }, + { "lat": 40.7135592, "lon": -73.9152133 }, + { "lat": 40.7136518, "lon": -73.9152090 }, + { "lat": 40.7137823, "lon": -73.9152035 } + ], + "tags": { + "highway": "residential", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 669597135, + "bounds": { + "minlat": 40.7134791, + "minlon": -73.9156780, + "maxlat": 40.7134959, + "maxlon": -73.9152161 + }, + "nodes": [ + 42843568, + 9744131392, + 13018332806, + 7712120184 + ], + "geometry": [ + { "lat": 40.7134959, "lon": -73.9156780 }, + { "lat": 40.7134868, "lon": -73.9154947 }, + { "lat": 40.7134821, "lon": -73.9153235 }, + { "lat": 40.7134791, "lon": -73.9152161 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 669597136, + "bounds": { + "minlat": 40.7134454, + "minlon": -73.9150567, + "maxlat": 40.7134693, + "maxlon": -73.9146761 + }, + "nodes": [ + 5482330032, + 9755788640, + 42843573 + ], + "geometry": [ + { "lat": 40.7134693, "lon": -73.9150567 }, + { "lat": 40.7134562, "lon": -73.9148480 }, + { "lat": 40.7134454, "lon": -73.9146761 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 669620176, + "bounds": { + "minlat": 40.7931546, + "minlon": -73.9499645, + "maxlat": 40.7932110, + "maxlon": -73.9498421 + }, + "nodes": [ + 6270715186, + 6270715187, + 6270715188 + ], + "geometry": [ + { "lat": 40.7932110, "lon": -73.9499645 }, + { "lat": 40.7932063, "lon": -73.9499536 }, + { "lat": 40.7931546, "lon": -73.9498421 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 669657396, + "bounds": { + "minlat": 40.7517161, + "minlon": -73.9676257, + "maxlat": 40.7518449, + "maxlon": -73.9674542 + }, + "nodes": [ + 3569749129, + 595105581 + ], + "geometry": [ + { "lat": 40.7517161, "lon": -73.9676257 }, + { "lat": 40.7518449, "lon": -73.9674542 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 669685948, + "bounds": { + "minlat": 40.7055012, + "minlon": -74.0069403, + "maxlat": 40.7056340, + "maxlon": -74.0067527 + }, + "nodes": [ + 42429844, + 8276468601, + 6133374846 + ], + "geometry": [ + { "lat": 40.7056340, "lon": -74.0067527 }, + { "lat": 40.7056044, "lon": -74.0067939 }, + { "lat": 40.7055012, "lon": -74.0069403 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 669709989, + "bounds": { + "minlat": 40.7037882, + "minlon": -73.9882055, + "maxlat": 40.7038100, + "maxlon": -73.9875523 + }, + "nodes": [ + 10170379777, + 10726079615, + 8262935919, + 42469184 + ], + "geometry": [ + { "lat": 40.7038100, "lon": -73.9882055 }, + { "lat": 40.7037926, "lon": -73.9876826 }, + { "lat": 40.7037906, "lon": -73.9876201 }, + { "lat": 40.7037882, "lon": -73.9875523 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:left:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 669709990, + "bounds": { + "minlat": 40.7038197, + "minlon": -73.9889306, + "maxlat": 40.7038340, + "maxlon": -73.9884985 + }, + "nodes": [ + 42462219, + 3000082204, + 42472722 + ], + "geometry": [ + { "lat": 40.7038340, "lon": -73.9889306 }, + { "lat": 40.7038273, "lon": -73.9887265 }, + { "lat": 40.7038197, "lon": -73.9884985 } + ], + "tags": { + "covered": "yes", + "cycleway:left": "lane", + "cycleway:left:surface": "paving_stones", + "highway": "residential", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 669779837, + "bounds": { + "minlat": 40.8213579, + "minlon": -73.9542488, + "maxlat": 40.8214361, + "maxlon": -73.9540665 + }, + "nodes": [ + 561035353, + 42428912 + ], + "geometry": [ + { "lat": 40.8213579, "lon": -73.9540665 }, + { "lat": 40.8214361, "lon": -73.9542488 } + ], + "tags": { + "highway": "residential", + "name": "West 137th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 669947460, + "bounds": { + "minlat": 40.8328480, + "minlon": -73.9754168, + "maxlat": 40.8329711, + "maxlon": -73.9746397 + }, + "nodes": [ + 6274131606, + 6274131607 + ], + "geometry": [ + { "lat": 40.8329711, "lon": -73.9754168 }, + { "lat": 40.8328480, "lon": -73.9746397 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 670511990, + "bounds": { + "minlat": 40.8233804, + "minlon": -73.9091028, + "maxlat": 40.8240696, + "maxlon": -73.9087114 + }, + "nodes": [ + 2827501292, + 13249081773, + 13249109411, + 42732965 + ], + "geometry": [ + { "lat": 40.8240696, "lon": -73.9087114 }, + { "lat": 40.8239736, "lon": -73.9087659 }, + { "lat": 40.8234450, "lon": -73.9090661 }, + { "lat": 40.8233804, "lon": -73.9091028 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Third Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 670517721, + "bounds": { + "minlat": 40.8493792, + "minlon": -73.9349596, + "maxlat": 40.8498486, + "maxlon": -73.9338666 + }, + "nodes": [ + 5403873760, + 11595000901, + 9550791858, + 42444069 + ], + "geometry": [ + { "lat": 40.8493792, "lon": -73.9338666 }, + { "lat": 40.8494194, "lon": -73.9339602 }, + { "lat": 40.8498095, "lon": -73.9348687 }, + { "lat": 40.8498486, "lon": -73.9349596 } + ], + "tags": { + "alt_name": "Manolo Tavarez Justo Way", + "bus": "yes", + "busway:both": "lane", + "description": "This honorary street name memorializes Manolo Tavarez Justo.", + "hgv": "local", + "highway": "tertiary", + "historic": "memorial", + "lanes": "2", + "motor_vehicle:conditional": "destination @ (Mo-Su 06:00-20:00)", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 670644083, + "bounds": { + "minlat": 40.8058688, + "minlon": -74.0144742, + "maxlat": 40.8081199, + "maxlon": -74.0128865 + }, + "nodes": [ + 103875664, + 7475979732, + 7475979728, + 103875666, + 7475979765, + 103875668, + 103875670, + 7475993407, + 7475993410, + 103875672, + 103875674, + 103875676 + ], + "geometry": [ + { "lat": 40.8058688, "lon": -74.0144742 }, + { "lat": 40.8059268, "lon": -74.0144372 }, + { "lat": 40.8064231, "lon": -74.0141202 }, + { "lat": 40.8064718, "lon": -74.0140892 }, + { "lat": 40.8065351, "lon": -74.0140490 }, + { "lat": 40.8069680, "lon": -74.0137740 }, + { "lat": 40.8072430, "lon": -74.0135670 }, + { "lat": 40.8072984, "lon": -74.0135241 }, + { "lat": 40.8075157, "lon": -74.0133590 }, + { "lat": 40.8075416, "lon": -74.0133377 }, + { "lat": 40.8077767, "lon": -74.0131480 }, + { "lat": 40.8081199, "lon": -74.0128865 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 670644084, + "bounds": { + "minlat": 40.8058688, + "minlon": -74.0167301, + "maxlat": 40.8067166, + "maxlon": -74.0144742 + }, + "nodes": [ + 103875664, + 7265483739, + 6711084337, + 103867739 + ], + "geometry": [ + { "lat": 40.8058688, "lon": -74.0144742 }, + { "lat": 40.8065917, "lon": -74.0164263 }, + { "lat": 40.8066532, "lon": -74.0165884 }, + { "lat": 40.8067166, "lon": -74.0167301 } + ], + "tags": { + "highway": "residential", + "name": "80th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "80th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 670677113, + "bounds": { + "minlat": 40.7107191, + "minlon": -74.0060522, + "maxlat": 40.7107599, + "maxlon": -74.0059867 + }, + "nodes": [ + 6280593758, + 8281922076, + 11374409786, + 6280593757 + ], + "geometry": [ + { "lat": 40.7107191, "lon": -74.0060522 }, + { "lat": 40.7107328, "lon": -74.0060303 }, + { "lat": 40.7107456, "lon": -74.0060096 }, + { "lat": 40.7107599, "lon": -74.0059867 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 670988060, + "bounds": { + "minlat": 40.7563014, + "minlon": -73.9675059, + "maxlat": 40.7573810, + "maxlon": -73.9667020 + }, + "nodes": [ + 42442957, + 10168544053, + 7946231852, + 12217776760, + 10168544038, + 42436710, + 10168544039, + 9496073807 + ], + "geometry": [ + { "lat": 40.7573810, "lon": -73.9667020 }, + { "lat": 40.7573293, "lon": -73.9667397 }, + { "lat": 40.7571901, "lon": -73.9668417 }, + { "lat": 40.7569720, "lon": -73.9670074 }, + { "lat": 40.7568205, "lon": -73.9671226 }, + { "lat": 40.7567628, "lon": -73.9671663 }, + { "lat": 40.7567053, "lon": -73.9672087 }, + { "lat": 40.7563014, "lon": -73.9675059 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "21", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 671179754, + "bounds": { + "minlat": 40.7084307, + "minlon": -73.9513351, + "maxlat": 40.7089968, + "maxlon": -73.9507922 + }, + "nodes": [ + 4593135573, + 9733464324, + 9959904519, + 4593135572, + 9733464323, + 9733464321, + 4593135570, + 9733464322, + 42490947, + 8232714855, + 9755373493, + 42474161 + ], + "geometry": [ + { "lat": 40.7089968, "lon": -73.9507922 }, + { "lat": 40.7089910, "lon": -73.9508820 }, + { "lat": 40.7089880, "lon": -73.9509046 }, + { "lat": 40.7089870, "lon": -73.9509122 }, + { "lat": 40.7089800, "lon": -73.9509433 }, + { "lat": 40.7089702, "lon": -73.9509692 }, + { "lat": 40.7089577, "lon": -73.9509908 }, + { "lat": 40.7089454, "lon": -73.9510029 }, + { "lat": 40.7087697, "lon": -73.9511180 }, + { "lat": 40.7085371, "lon": -73.9512670 }, + { "lat": 40.7084879, "lon": -73.9512985 }, + { "lat": 40.7084307, "lon": -73.9513351 } + ], + "tags": { + "highway": "residential", + "name": "Hewes Street", + "name:etymology:wikidata": "Q1666382", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 671179755, + "bounds": { + "minlat": 40.7081672, + "minlon": -73.9558016, + "maxlat": 40.7100636, + "maxlon": -73.9506595 + }, + "nodes": [ + 480214899, + 9755372016, + 42474150, + 9755372017, + 9755372036, + 42474153, + 9755372037, + 7173618563, + 9755372044, + 42474156, + 9755372060, + 6859710893, + 9985973830, + 42474161, + 9985973829, + 9752593859, + 42474162 + ], + "geometry": [ + { "lat": 40.7100636, "lon": -73.9558016 }, + { "lat": 40.7099857, "lon": -73.9555824 }, + { "lat": 40.7099521, "lon": -73.9554897 }, + { "lat": 40.7099292, "lon": -73.9554278 }, + { "lat": 40.7095514, "lon": -73.9544056 }, + { "lat": 40.7095220, "lon": -73.9543260 }, + { "lat": 40.7094955, "lon": -73.9542572 }, + { "lat": 40.7090229, "lon": -73.9529636 }, + { "lat": 40.7090032, "lon": -73.9529099 }, + { "lat": 40.7089740, "lon": -73.9528300 }, + { "lat": 40.7089489, "lon": -73.9527614 }, + { "lat": 40.7086572, "lon": -73.9519626 }, + { "lat": 40.7084612, "lon": -73.9514197 }, + { "lat": 40.7084307, "lon": -73.9513351 }, + { "lat": 40.7084021, "lon": -73.9512578 }, + { "lat": 40.7082246, "lon": -73.9507899 }, + { "lat": 40.7081672, "lon": -73.9506595 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "South 3rd Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 671201389, + "bounds": { + "minlat": 40.7172605, + "minlon": -73.9993088, + "maxlat": 40.7175538, + "maxlon": -73.9989003 + }, + "nodes": [ + 2572245396, + 7641718035, + 42440810 + ], + "geometry": [ + { "lat": 40.7172605, "lon": -73.9989003 }, + { "lat": 40.7175206, "lon": -73.9992627 }, + { "lat": 40.7175538, "lon": -73.9993088 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lit": "no", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 671202178, + "bounds": { + "minlat": 40.7696966, + "minlon": -73.9820391, + "maxlat": 40.7705246, + "maxlon": -73.9820135 + }, + "nodes": [ + 1061531777, + 9904570978, + 7515977396, + 1061531509 + ], + "geometry": [ + { "lat": 40.7696966, "lon": -73.9820135 }, + { "lat": 40.7697813, "lon": -73.9820154 }, + { "lat": 40.7704499, "lon": -73.9820376 }, + { "lat": 40.7705246, "lon": -73.9820391 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 671208356, + "bounds": { + "minlat": 40.7617746, + "minlon": -73.9701729, + "maxlat": 40.7622520, + "maxlon": -73.9690376 + }, + "nodes": [ + 42456598, + 10125156113, + 10125156115 + ], + "geometry": [ + { "lat": 40.7622520, "lon": -73.9701729 }, + { "lat": 40.7622017, "lon": -73.9700533 }, + { "lat": 40.7617746, "lon": -73.9690376 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 671208357, + "bounds": { + "minlat": 40.7616520, + "minlon": -73.9708483, + "maxlat": 40.7623289, + "maxlon": -73.9703537 + }, + "nodes": [ + 596775941, + 10166509651, + 12834723229, + 10125227997, + 596775935 + ], + "geometry": [ + { "lat": 40.7623289, "lon": -73.9703537 }, + { "lat": 40.7622682, "lon": -73.9703984 }, + { "lat": 40.7617910, "lon": -73.9707468 }, + { "lat": 40.7617539, "lon": -73.9707739 }, + { "lat": 40.7616520, "lon": -73.9708483 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 671208358, + "bounds": { + "minlat": 40.7654467, + "minlon": -73.9678447, + "maxlat": 40.7672618, + "maxlon": -73.9665220 + }, + "nodes": [ + 10125227980, + 12834723207, + 10125227981, + 42431652, + 10125227985, + 12834723202, + 10125112349, + 42455666, + 10125112348, + 12834712299, + 10125112339, + 42447230 + ], + "geometry": [ + { "lat": 40.7654467, "lon": -73.9678447 }, + { "lat": 40.7659129, "lon": -73.9675054 }, + { "lat": 40.7659523, "lon": -73.9674767 }, + { "lat": 40.7660116, "lon": -73.9674335 }, + { "lat": 40.7660664, "lon": -73.9673933 }, + { "lat": 40.7665418, "lon": -73.9670453 }, + { "lat": 40.7665795, "lon": -73.9670177 }, + { "lat": 40.7666394, "lon": -73.9669732 }, + { "lat": 40.7666939, "lon": -73.9669340 }, + { "lat": 40.7671668, "lon": -73.9665928 }, + { "lat": 40.7672073, "lon": -73.9665636 }, + { "lat": 40.7672618, "lon": -73.9665220 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 671212509, + "bounds": { + "minlat": 40.7501697, + "minlon": -73.9769912, + "maxlat": 40.7507077, + "maxlon": -73.9765964 + }, + "nodes": [ + 12183285353, + 12183285345, + 10168825903, + 42446949 + ], + "geometry": [ + { "lat": 40.7507077, "lon": -73.9765964 }, + { "lat": 40.7502686, "lon": -73.9769186 }, + { "lat": 40.7502236, "lon": -73.9769517 }, + { "lat": 40.7501697, "lon": -73.9769912 } + ], + "tags": { + "bus:lanes": "|||designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 671553862, + "bounds": { + "minlat": 40.7229811, + "minlon": -73.9107590, + "maxlat": 40.7241370, + "maxlon": -73.9106686 + }, + "nodes": [ + 42825390, + 7963480251, + 11055680627, + 42825392 + ], + "geometry": [ + { "lat": 40.7241370, "lon": -73.9107590 }, + { "lat": 40.7230875, "lon": -73.9106769 }, + { "lat": 40.7230543, "lon": -73.9106743 }, + { "lat": 40.7229811, "lon": -73.9106686 } + ], + "tags": { + "highway": "residential", + "name": "58th Place", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "58th", + "tiger:name_type": "Pl", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 671593547, + "bounds": { + "minlat": 40.7813177, + "minlon": -73.9485053, + "maxlat": 40.7823112, + "maxlon": -73.9461351 + }, + "nodes": [ + 42452814, + 6169388290, + 6181708478, + 6185200493, + 6176003999, + 42443050 + ], + "geometry": [ + { "lat": 40.7813177, "lon": -73.9461351 }, + { "lat": 40.7813500, "lon": -73.9462375 }, + { "lat": 40.7813641, "lon": -73.9462747 }, + { "lat": 40.7822615, "lon": -73.9483867 }, + { "lat": 40.7822800, "lon": -73.9484314 }, + { "lat": 40.7823112, "lon": -73.9485053 } + ], + "tags": { + "highway": "residential", + "name": "East 93rd Street", + "name:ru": "Восточная 93-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q4645924", + "wikipedia": "en:93rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 671830355, + "bounds": { + "minlat": 40.7060529, + "minlon": -73.9513154, + "maxlat": 40.7064746, + "maxlon": -73.9509273 + }, + "nodes": [ + 6291247292, + 9755354464, + 6291247291, + 6291247290 + ], + "geometry": [ + { "lat": 40.7064746, "lon": -73.9513154 }, + { "lat": 40.7063965, "lon": -73.9512888 }, + { "lat": 40.7062555, "lon": -73.9512408 }, + { "lat": 40.7060529, "lon": -73.9509273 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 671830357, + "bounds": { + "minlat": 40.7057996, + "minlon": -73.9508632, + "maxlat": 40.7059145, + "maxlon": -73.9502895 + }, + "nodes": [ + 42496426, + 7176607438, + 7176607439, + 7176607437, + 6291247293 + ], + "geometry": [ + { "lat": 40.7059145, "lon": -73.9502895 }, + { "lat": 40.7059040, "lon": -73.9504022 }, + { "lat": 40.7058740, "lon": -73.9507234 }, + { "lat": 40.7058553, "lon": -73.9507822 }, + { "lat": 40.7057996, "lon": -73.9508632 } + ], + "tags": { + "highway": "residential", + "name": "Johnson Avenue", + "name:etymology:wikidata": "Q23091816", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 671832298, + "bounds": { + "minlat": 40.8027375, + "minlon": -73.9519490, + "maxlat": 40.8038654, + "maxlon": -73.9492747 + }, + "nodes": [ + 3099327950, + 7004411493, + 5481882789, + 5481882795, + 8758345338, + 2141026498 + ], + "geometry": [ + { "lat": 40.8027375, "lon": -73.9492747 }, + { "lat": 40.8027764, "lon": -73.9493681 }, + { "lat": 40.8029486, "lon": -73.9497814 }, + { "lat": 40.8035590, "lon": -73.9512464 }, + { "lat": 40.8038194, "lon": -73.9518409 }, + { "lat": 40.8038654, "lon": -73.9519490 } + ], + "tags": { + "highway": "residential", + "name": "West 117th Street", + "name:ru": "Западная 117-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 671832299, + "bounds": { + "minlat": 40.8026735, + "minlon": -73.9492747, + "maxlat": 40.8027375, + "maxlon": -73.9491230 + }, + "nodes": [ + 42453220, + 3099327950 + ], + "geometry": [ + { "lat": 40.8026735, "lon": -73.9491230 }, + { "lat": 40.8027375, "lon": -73.9492747 } + ], + "tags": { + "highway": "residential", + "name": "West 117th Street", + "name:ru": "Западная 117-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 671845942, + "bounds": { + "minlat": 40.8058775, + "minlon": -73.9528570, + "maxlat": 40.8067090, + "maxlon": -73.9527966 + }, + "nodes": [ + 42432900, + 11840449869, + 11840444666, + 42429735 + ], + "geometry": [ + { "lat": 40.8058775, "lon": -73.9527966 }, + { "lat": 40.8059492, "lon": -73.9528019 }, + { "lat": 40.8066394, "lon": -73.9528528 }, + { "lat": 40.8067090, "lon": -73.9528570 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "sidewalk:both": "separate", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 672083217, + "bounds": { + "minlat": 40.7587479, + "minlon": -73.9612379, + "maxlat": 40.7590262, + "maxlon": -73.9610378 + }, + "nodes": [ + 8445417290, + 8445417289 + ], + "geometry": [ + { "lat": 40.7587479, "lon": -73.9612379 }, + { "lat": 40.7590262, "lon": -73.9610378 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 672087372, + "bounds": { + "minlat": 40.7604093, + "minlon": -73.9993926, + "maxlat": 40.7604817, + "maxlon": -73.9993429 + }, + "nodes": [ + 6293725834, + 6293725831, + 7779170201 + ], + "geometry": [ + { "lat": 40.7604093, "lon": -73.9993926 }, + { "lat": 40.7604738, "lon": -73.9993488 }, + { "lat": 40.7604817, "lon": -73.9993429 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 672253771, + "bounds": { + "minlat": 40.7526866, + "minlon": -73.9208463, + "maxlat": 40.7527152, + "maxlon": -73.9205927 + }, + "nodes": [ + 6295183175, + 8593852990, + 6295183174 + ], + "geometry": [ + { "lat": 40.7527152, "lon": -73.9208463 }, + { "lat": 40.7526995, "lon": -73.9207146 }, + { "lat": 40.7526866, "lon": -73.9205927 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 672581827, + "bounds": { + "minlat": 40.7431648, + "minlon": -73.9738561, + "maxlat": 40.7433838, + "maxlon": -73.9732395 + }, + "nodes": [ + 6298391901, + 7761301150, + 6298391902, + 6298391903, + 6298391913 + ], + "geometry": [ + { "lat": 40.7433081, "lon": -73.9738561 }, + { "lat": 40.7432502, "lon": -73.9737161 }, + { "lat": 40.7431648, "lon": -73.9735074 }, + { "lat": 40.7431958, "lon": -73.9733773 }, + { "lat": 40.7433838, "lon": -73.9732395 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 672581829, + "bounds": { + "minlat": 40.7431054, + "minlon": -73.9726659, + "maxlat": 40.7432233, + "maxlon": -73.9724862 + }, + "nodes": [ + 6298391910, + 6298391907, + 6298391906, + 6298391905 + ], + "geometry": [ + { "lat": 40.7432233, "lon": -73.9726659 }, + { "lat": 40.7431577, "lon": -73.9725029 }, + { "lat": 40.7431181, "lon": -73.9724862 }, + { "lat": 40.7431054, "lon": -73.9724962 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 672581830, + "bounds": { + "minlat": 40.7432158, + "minlon": -73.9732395, + "maxlat": 40.7433838, + "maxlon": -73.9726659 + }, + "nodes": [ + 6298391913, + 6298391912, + 6298391911, + 6298391910 + ], + "geometry": [ + { "lat": 40.7433838, "lon": -73.9732395 }, + { "lat": 40.7432358, "lon": -73.9728796 }, + { "lat": 40.7432158, "lon": -73.9727177 }, + { "lat": 40.7432233, "lon": -73.9726659 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 672582010, + "bounds": { + "minlat": 40.7433838, + "minlon": -73.9732855, + "maxlat": 40.7436321, + "maxlon": -73.9731434 + }, + "nodes": [ + 6298391914, + 6298391904, + 6304137029, + 6304137030, + 6298391913 + ], + "geometry": [ + { "lat": 40.7436321, "lon": -73.9731434 }, + { "lat": 40.7435333, "lon": -73.9732126 }, + { "lat": 40.7434313, "lon": -73.9732855 }, + { "lat": 40.7433953, "lon": -73.9732675 }, + { "lat": 40.7433838, "lon": -73.9732395 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 672746385, + "bounds": { + "minlat": 40.7116679, + "minlon": -74.0078441, + "maxlat": 40.7117314, + "maxlon": -74.0075513 + }, + "nodes": [ + 2821304142, + 4143875738, + 4143875729, + 6299916002, + 6299916001, + 4143875757 + ], + "geometry": [ + { "lat": 40.7116733, "lon": -74.0075513 }, + { "lat": 40.7116679, "lon": -74.0076083 }, + { "lat": 40.7116686, "lon": -74.0076650 }, + { "lat": 40.7116763, "lon": -74.0077106 }, + { "lat": 40.7116957, "lon": -74.0077749 }, + { "lat": 40.7117314, "lon": -74.0078441 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 672822655, + "bounds": { + "minlat": 40.8759053, + "minlon": -73.9695224, + "maxlat": 40.8768746, + "maxlon": -73.9678081 + }, + "nodes": [ + 6300702728, + 103164575, + 103213822, + 103191937 + ], + "geometry": [ + { "lat": 40.8768746, "lon": -73.9695224 }, + { "lat": 40.8767990, "lon": -73.9694170 }, + { "lat": 40.8763239, "lon": -73.9685360 }, + { "lat": 40.8759053, "lon": -73.9678081 } + ], + "tags": { + "highway": "residential", + "name": "Middlesex Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Middlesex", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 672822656, + "bounds": { + "minlat": 40.8705230, + "minlon": -73.9696460, + "maxlat": 40.8736583, + "maxlon": -73.9680360 + }, + "nodes": [ + 103234553, + 103290833, + 103290834, + 103290836, + 103290838, + 103290840, + 103290842, + 103290844, + 103290846, + 103290848, + 103290850, + 103290852, + 103290854, + 103290855, + 103290856, + 103290857, + 103290858, + 103290859, + 103290861, + 103275590 + ], + "geometry": [ + { "lat": 40.8736583, "lon": -73.9688553 }, + { "lat": 40.8732330, "lon": -73.9692390 }, + { "lat": 40.8731040, "lon": -73.9693480 }, + { "lat": 40.8729500, "lon": -73.9694530 }, + { "lat": 40.8728170, "lon": -73.9695230 }, + { "lat": 40.8726790, "lon": -73.9695780 }, + { "lat": 40.8725320, "lon": -73.9696180 }, + { "lat": 40.8723870, "lon": -73.9696400 }, + { "lat": 40.8722410, "lon": -73.9696460 }, + { "lat": 40.8720960, "lon": -73.9696340 }, + { "lat": 40.8719510, "lon": -73.9696060 }, + { "lat": 40.8717920, "lon": -73.9695560 }, + { "lat": 40.8716470, "lon": -73.9694940 }, + { "lat": 40.8714700, "lon": -73.9693980 }, + { "lat": 40.8713340, "lon": -73.9693010 }, + { "lat": 40.8712070, "lon": -73.9691820 }, + { "lat": 40.8711080, "lon": -73.9690650 }, + { "lat": 40.8710180, "lon": -73.9689350 }, + { "lat": 40.8708200, "lon": -73.9685690 }, + { "lat": 40.8705230, "lon": -73.9680360 } + ], + "tags": { + "highway": "residential", + "name": "Cape May Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cape May", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 672822657, + "bounds": { + "minlat": 40.8735358, + "minlon": -73.9688553, + "maxlat": 40.8736880, + "maxlon": -73.9677388 + }, + "nodes": [ + 103234553, + 2406357326, + 13290203052, + 103234555, + 7804786477, + 7804786475, + 7804786476 + ], + "geometry": [ + { "lat": 40.8736583, "lon": -73.9688553 }, + { "lat": 40.8736287, "lon": -73.9687051 }, + { "lat": 40.8736880, "lon": -73.9680227 }, + { "lat": 40.8736737, "lon": -73.9679261 }, + { "lat": 40.8736346, "lon": -73.9678608 }, + { "lat": 40.8735754, "lon": -73.9677980 }, + { "lat": 40.8735358, "lon": -73.9677388 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Van Nostrand Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 672997589, + "bounds": { + "minlat": 40.8087869, + "minlon": -73.9293944, + "maxlat": 40.8092592, + "maxlon": -73.9287652 + }, + "nodes": [ + 595801154, + 11427300198, + 9908636608, + 9908636607, + 567820415 + ], + "geometry": [ + { "lat": 40.8092592, "lon": -73.9293944 }, + { "lat": 40.8092264, "lon": -73.9293507 }, + { "lat": 40.8089072, "lon": -73.9289254 }, + { "lat": 40.8088693, "lon": -73.9288735 }, + { "lat": 40.8087869, "lon": -73.9287652 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "New York State Office of Cyber Security (OCS) StreetSegmentPublic Dataset (http://gis.ny.gov/gisdata/inventories/details.cfm?DSID=932)" + } +}, +{ + "type": "way", + "id": 673005572, + "bounds": { + "minlat": 40.8134394, + "minlon": -74.0006060, + "maxlat": 40.8138410, + "maxlon": -74.0005700 + }, + "nodes": [ + 103296812, + 103255696 + ], + "geometry": [ + { "lat": 40.8134394, "lon": -74.0006060 }, + { "lat": 40.8138410, "lon": -74.0005700 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 673005573, + "bounds": { + "minlat": 40.8131025, + "minlon": -74.0008536, + "maxlat": 40.8134394, + "maxlon": -74.0006060 + }, + "nodes": [ + 103296812, + 103229064 + ], + "geometry": [ + { "lat": 40.8134394, "lon": -74.0006060 }, + { "lat": 40.8131025, "lon": -74.0008536 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 673007285, + "bounds": { + "minlat": 40.8113071, + "minlon": -74.0119215, + "maxlat": 40.8115419, + "maxlon": -74.0114621 + }, + "nodes": [ + 103872651, + 9570193602 + ], + "geometry": [ + { "lat": 40.8113071, "lon": -74.0114621 }, + { "lat": 40.8115419, "lon": -74.0119215 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxweight": "4", + "name": "88th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "88th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 673007286, + "bounds": { + "minlat": 40.8116965, + "minlon": -74.0122240, + "maxlat": 40.8122358, + "maxlon": -74.0117173 + }, + "nodes": [ + 103867747, + 103867750 + ], + "geometry": [ + { "lat": 40.8116965, "lon": -74.0122240 }, + { "lat": 40.8122358, "lon": -74.0117173 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 673552642, + "bounds": { + "minlat": 40.8063223, + "minlon": -74.0181180, + "maxlat": 40.8066129, + "maxlon": -74.0175546 + }, + "nodes": [ + 7552284408, + 7549492875, + 6307669770 + ], + "geometry": [ + { "lat": 40.8063223, "lon": -74.0175546 }, + { "lat": 40.8065582, "lon": -74.0180120 }, + { "lat": 40.8066129, "lon": -74.0181180 } + ], + "tags": { + "covered": "no", + "highway": "service", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 673552643, + "bounds": { + "minlat": 40.8037134, + "minlon": -74.0206392, + "maxlat": 40.8069814, + "maxlon": -74.0177745 + }, + "nodes": [ + 5752813100, + 7549385650, + 7552269828, + 7549408411, + 7552269829, + 7549385683, + 7549385678, + 5752813099, + 7549408412, + 5752813098, + 5748467002, + 7549385644, + 7549385667, + 6307669777, + 5752813106, + 5752813107, + 6307669774, + 7552284398, + 7552284400, + 7552284402, + 7552284404, + 7552284406, + 6307669775, + 6307669779, + 6307669770, + 7549492877, + 6307669782, + 8374663718, + 6307669771 + ], + "geometry": [ + { "lat": 40.8037134, "lon": -74.0206392 }, + { "lat": 40.8038433, "lon": -74.0205308 }, + { "lat": 40.8039891, "lon": -74.0204092 }, + { "lat": 40.8041235, "lon": -74.0202971 }, + { "lat": 40.8042753, "lon": -74.0201705 }, + { "lat": 40.8044096, "lon": -74.0200584 }, + { "lat": 40.8045485, "lon": -74.0199426 }, + { "lat": 40.8046934, "lon": -74.0198217 }, + { "lat": 40.8047557, "lon": -74.0197024 }, + { "lat": 40.8047833, "lon": -74.0195985 }, + { "lat": 40.8049334, "lon": -74.0194673 }, + { "lat": 40.8050426, "lon": -74.0193764 }, + { "lat": 40.8051118, "lon": -74.0193185 }, + { "lat": 40.8051966, "lon": -74.0193023 }, + { "lat": 40.8052750, "lon": -74.0193797 }, + { "lat": 40.8054070, "lon": -74.0192609 }, + { "lat": 40.8055318, "lon": -74.0191516 }, + { "lat": 40.8056721, "lon": -74.0190292 }, + { "lat": 40.8058072, "lon": -74.0189113 }, + { "lat": 40.8059447, "lon": -74.0187914 }, + { "lat": 40.8060896, "lon": -74.0186650 }, + { "lat": 40.8062351, "lon": -74.0185381 }, + { "lat": 40.8063653, "lon": -74.0184245 }, + { "lat": 40.8064957, "lon": -74.0182544 }, + { "lat": 40.8066129, "lon": -74.0181180 }, + { "lat": 40.8066449, "lon": -74.0180550 }, + { "lat": 40.8067050, "lon": -74.0180013 }, + { "lat": 40.8068518, "lon": -74.0178809 }, + { "lat": 40.8069814, "lon": -74.0177745 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 673552644, + "bounds": { + "minlat": 40.8051124, + "minlon": -74.0192609, + "maxlat": 40.8064957, + "maxlon": -74.0176072 + }, + "nodes": [ + 5752813107, + 6200115490, + 5752813108, + 7552114787, + 7552114788, + 7552114789, + 6200115489, + 7552284409, + 5752813109, + 7552284397, + 7552114790, + 7552284399, + 7552284401, + 7552284403, + 7552284405, + 7552284407, + 6307669778, + 6307669779 + ], + "geometry": [ + { "lat": 40.8054070, "lon": -74.0192609 }, + { "lat": 40.8051332, "lon": -74.0187148 }, + { "lat": 40.8051167, "lon": -74.0186805 }, + { "lat": 40.8051124, "lon": -74.0186412 }, + { "lat": 40.8051214, "lon": -74.0185981 }, + { "lat": 40.8051405, "lon": -74.0185549 }, + { "lat": 40.8051656, "lon": -74.0185155 }, + { "lat": 40.8052012, "lon": -74.0184842 }, + { "lat": 40.8052390, "lon": -74.0184511 }, + { "lat": 40.8053428, "lon": -74.0183584 }, + { "lat": 40.8053642, "lon": -74.0183392 }, + { "lat": 40.8054777, "lon": -74.0182376 }, + { "lat": 40.8056118, "lon": -74.0181177 }, + { "lat": 40.8057566, "lon": -74.0179882 }, + { "lat": 40.8058971, "lon": -74.0178624 }, + { "lat": 40.8060321, "lon": -74.0177416 }, + { "lat": 40.8061824, "lon": -74.0176072 }, + { "lat": 40.8064957, "lon": -74.0182544 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 673552645, + "bounds": { + "minlat": 40.8064086, + "minlon": -74.0180013, + "maxlat": 40.8069814, + "maxlon": -74.0171705 + }, + "nodes": [ + 6307669771, + 6307669780, + 8374663719, + 6307669781, + 6307669782 + ], + "geometry": [ + { "lat": 40.8069814, "lon": -74.0177745 }, + { "lat": 40.8066927, "lon": -74.0171705 }, + { "lat": 40.8065574, "lon": -74.0172860 }, + { "lat": 40.8064086, "lon": -74.0174131 }, + { "lat": 40.8067050, "lon": -74.0180013 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 674517068, + "bounds": { + "minlat": 40.7517299, + "minlon": -73.9677368, + "maxlat": 40.7518655, + "maxlon": -73.9675841 + }, + "nodes": [ + 6316840774, + 6316840773, + 8272069055, + 4917042725, + 10998208768, + 4917042729, + 10998208765, + 4917042727, + 4917042726, + 10998208766, + 4917042731, + 10998208767, + 4917042730, + 8272069056, + 6316840774 + ], + "geometry": [ + { "lat": 40.7517551, "lon": -73.9677368 }, + { "lat": 40.7517299, "lon": -73.9676779 }, + { "lat": 40.7517460, "lon": -73.9676554 }, + { "lat": 40.7517923, "lon": -73.9675947 }, + { "lat": 40.7518031, "lon": -73.9675866 }, + { "lat": 40.7518159, "lon": -73.9675841 }, + { "lat": 40.7518265, "lon": -73.9675871 }, + { "lat": 40.7518368, "lon": -73.9675962 }, + { "lat": 40.7518627, "lon": -73.9676544 }, + { "lat": 40.7518655, "lon": -73.9676679 }, + { "lat": 40.7518652, "lon": -73.9676784 }, + { "lat": 40.7518605, "lon": -73.9676904 }, + { "lat": 40.7518519, "lon": -73.9676963 }, + { "lat": 40.7517804, "lon": -73.9677270 }, + { "lat": 40.7517551, "lon": -73.9677368 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 674518309, + "bounds": { + "minlat": 40.7530257, + "minlon": -73.9665560, + "maxlat": 40.7531517, + "maxlon": -73.9662491 + }, + "nodes": [ + 6316852767, + 6316852756, + 6316852760, + 6316852758, + 6316852755, + 10171689613, + 6316852765, + 6316852762, + 6316852764, + 6316852759, + 6316852767 + ], + "geometry": [ + { "lat": 40.7531419, "lon": -73.9665331 }, + { "lat": 40.7531512, "lon": -73.9665176 }, + { "lat": 40.7531517, "lon": -73.9664958 }, + { "lat": 40.7530460, "lon": -73.9662491 }, + { "lat": 40.7530309, "lon": -73.9662599 }, + { "lat": 40.7530287, "lon": -73.9662704 }, + { "lat": 40.7530257, "lon": -73.9662843 }, + { "lat": 40.7530947, "lon": -73.9664444 }, + { "lat": 40.7530778, "lon": -73.9664937 }, + { "lat": 40.7530545, "lon": -73.9665560 }, + { "lat": 40.7531419, "lon": -73.9665331 } + ], + "tags": { + "area:highway": "traffic_island", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 674518310, + "bounds": { + "minlat": 40.7525920, + "minlon": -73.9661806, + "maxlat": 40.7530078, + "maxlon": -73.9652452 + }, + "nodes": [ + 6316852763, + 10994926350, + 6316852761, + 6316852757, + 10994926348, + 6316852766, + 6316852763 + ], + "geometry": [ + { "lat": 40.7530078, "lon": -73.9661628 }, + { "lat": 40.7529894, "lon": -73.9661755 }, + { "lat": 40.7529820, "lon": -73.9661806 }, + { "lat": 40.7525920, "lon": -73.9652661 }, + { "lat": 40.7526080, "lon": -73.9652537 }, + { "lat": 40.7526189, "lon": -73.9652452 }, + { "lat": 40.7530078, "lon": -73.9661628 } + ], + "tags": { + "area:highway": "traffic_island", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 674686230, + "bounds": { + "minlat": 40.7422885, + "minlon": -74.0044325, + "maxlat": 40.7425395, + "maxlon": -74.0042461 + }, + "nodes": [ + 3564892571, + 9469550703, + 8310246351, + 42444909 + ], + "geometry": [ + { "lat": 40.7425395, "lon": -74.0042461 }, + { "lat": 40.7425013, "lon": -74.0042746 }, + { "lat": 40.7423503, "lon": -74.0043878 }, + { "lat": 40.7422885, "lon": -74.0044325 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 674835918, + "bounds": { + "minlat": 40.8124250, + "minlon": -74.0013390, + "maxlat": 40.8131025, + "maxlon": -74.0008536 + }, + "nodes": [ + 103229064, + 103144647 + ], + "geometry": [ + { "lat": 40.8131025, "lon": -74.0008536 }, + { "lat": 40.8124250, "lon": -74.0013390 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 674895568, + "bounds": { + "minlat": 40.8628180, + "minlon": -73.9727242, + "maxlat": 40.8628370, + "maxlon": -73.9724940 + }, + "nodes": [ + 6320451140, + 103097528 + ], + "geometry": [ + { "lat": 40.8628370, "lon": -73.9727242 }, + { "lat": 40.8628180, "lon": -73.9724940 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674895569, + "bounds": { + "minlat": 40.8620587, + "minlon": -73.9728275, + "maxlat": 40.8631644, + "maxlon": -73.9725945 + }, + "nodes": [ + 6320451143, + 6320451142, + 6320451140, + 6320451141 + ], + "geometry": [ + { "lat": 40.8620587, "lon": -73.9725945 }, + { "lat": 40.8620832, "lon": -73.9728275 }, + { "lat": 40.8628370, "lon": -73.9727242 }, + { "lat": 40.8631644, "lon": -73.9726773 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674895570, + "bounds": { + "minlat": 40.8641016, + "minlon": -73.9730603, + "maxlat": 40.8641396, + "maxlon": -73.9724677 + }, + "nodes": [ + 6320451144, + 8602535980, + 6320451148 + ], + "geometry": [ + { "lat": 40.8641016, "lon": -73.9724677 }, + { "lat": 40.8641092, "lon": -73.9725866 }, + { "lat": 40.8641396, "lon": -73.9730603 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 674895571, + "bounds": { + "minlat": 40.8645559, + "minlon": -73.9730121, + "maxlat": 40.8646564, + "maxlon": -73.9730005 + }, + "nodes": [ + 6320451171, + 6320451145 + ], + "geometry": [ + { "lat": 40.8646564, "lon": -73.9730005 }, + { "lat": 40.8645559, "lon": -73.9730121 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674895572, + "bounds": { + "minlat": 40.8646933, + "minlon": -73.9725130, + "maxlat": 40.8647144, + "maxlon": -73.9722637 + }, + "nodes": [ + 6320451176, + 6320451175 + ], + "geometry": [ + { "lat": 40.8646933, "lon": -73.9722637 }, + { "lat": 40.8647144, "lon": -73.9725130 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674895573, + "bounds": { + "minlat": 40.8640932, + "minlon": -73.9724677, + "maxlat": 40.8641016, + "maxlon": -73.9723370 + }, + "nodes": [ + 6320451149, + 6320451144 + ], + "geometry": [ + { "lat": 40.8640932, "lon": -73.9723370 }, + { "lat": 40.8641016, "lon": -73.9724677 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674895574, + "bounds": { + "minlat": 40.8635769, + "minlon": -73.9731254, + "maxlat": 40.8645559, + "maxlon": -73.9730121 + }, + "nodes": [ + 6320451145, + 6320451148, + 6320451150 + ], + "geometry": [ + { "lat": 40.8645559, "lon": -73.9730121 }, + { "lat": 40.8641396, "lon": -73.9730603 }, + { "lat": 40.8635769, "lon": -73.9731254 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 674895575, + "bounds": { + "minlat": 40.8646564, + "minlon": -73.9730005, + "maxlat": 40.8650154, + "maxlon": -73.9729697 + }, + "nodes": [ + 6320451153, + 6320451170, + 6320451171 + ], + "geometry": [ + { "lat": 40.8650154, "lon": -73.9729697 }, + { "lat": 40.8648278, "lon": -73.9729938 }, + { "lat": 40.8646564, "lon": -73.9730005 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 674895576, + "bounds": { + "minlat": 40.8646424, + "minlon": -73.9727754, + "maxlat": 40.8650043, + "maxlon": -73.9727437 + }, + "nodes": [ + 6320451151, + 6320451152 + ], + "geometry": [ + { "lat": 40.8650043, "lon": -73.9727437 }, + { "lat": 40.8646424, "lon": -73.9727754 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 674895577, + "bounds": { + "minlat": 40.8635444, + "minlon": -73.9732345, + "maxlat": 40.8635867, + "maxlon": -73.9727695 + }, + "nodes": [ + 6320451154, + 6320451150, + 6320451181 + ], + "geometry": [ + { "lat": 40.8635444, "lon": -73.9727695 }, + { "lat": 40.8635769, "lon": -73.9731254 }, + { "lat": 40.8635867, "lon": -73.9732345 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 674895578, + "bounds": { + "minlat": 40.8635149, + "minlon": -73.9727695, + "maxlat": 40.8635444, + "maxlon": -73.9724076 + }, + "nodes": [ + 6320451182, + 6320451169, + 6320451154 + ], + "geometry": [ + { "lat": 40.8635149, "lon": -73.9724076 }, + { "lat": 40.8635331, "lon": -73.9726457 }, + { "lat": 40.8635444, "lon": -73.9727695 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674895580, + "bounds": { + "minlat": 40.8635331, + "minlon": -73.9728087, + "maxlat": 40.8645276, + "maxlon": -73.9725459 + }, + "nodes": [ + 6320451169, + 8602535980, + 6320451168, + 6320451167 + ], + "geometry": [ + { "lat": 40.8635331, "lon": -73.9726457 }, + { "lat": 40.8641092, "lon": -73.9725866 }, + { "lat": 40.8645052, "lon": -73.9725459 }, + { "lat": 40.8645276, "lon": -73.9728087 } + ], + "tags": { + "highway": "service", + "layer": "2" + } +}, +{ + "type": "way", + "id": 674895581, + "bounds": { + "minlat": 40.8646315, + "minlon": -73.9730005, + "maxlat": 40.8647144, + "maxlon": -73.9725130 + }, + "nodes": [ + 6320451171, + 6320451152, + 12670717802, + 12670658592, + 12670658596, + 12670658593, + 12670658595, + 12670658594, + 6320451172, + 6320451175 + ], + "geometry": [ + { "lat": 40.8646564, "lon": -73.9730005 }, + { "lat": 40.8646424, "lon": -73.9727754 }, + { "lat": 40.8646315, "lon": -73.9725962 }, + { "lat": 40.8646323, "lon": -73.9725789 }, + { "lat": 40.8646354, "lon": -73.9725635 }, + { "lat": 40.8646419, "lon": -73.9725477 }, + { "lat": 40.8646500, "lon": -73.9725336 }, + { "lat": 40.8646604, "lon": -73.9725237 }, + { "lat": 40.8646726, "lon": -73.9725177 }, + { "lat": 40.8647144, "lon": -73.9725130 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 674895582, + "bounds": { + "minlat": 40.8647144, + "minlon": -73.9729697, + "maxlat": 40.8650154, + "maxlon": -73.9724936 + }, + "nodes": [ + 6320451175, + 12670717801, + 12670658599, + 6320451174, + 12670658598, + 12670658600, + 12670658597, + 6320451173, + 6320451151, + 6320451153 + ], + "geometry": [ + { "lat": 40.8647144, "lon": -73.9725130 }, + { "lat": 40.8649317, "lon": -73.9724936 }, + { "lat": 40.8649520, "lon": -73.9724996 }, + { "lat": 40.8649683, "lon": -73.9725130 }, + { "lat": 40.8649802, "lon": -73.9725261 }, + { "lat": 40.8649900, "lon": -73.9725432 }, + { "lat": 40.8649959, "lon": -73.9725646 }, + { "lat": 40.8649978, "lon": -73.9725857 }, + { "lat": 40.8650043, "lon": -73.9727437 }, + { "lat": 40.8650154, "lon": -73.9729697 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 674895583, + "bounds": { + "minlat": 40.8635867, + "minlon": -73.9732540, + "maxlat": 40.8655195, + "maxlon": -73.9731467 + }, + "nodes": [ + 6320451181, + 7924979949, + 6320451180, + 6320451179, + 6320451178, + 6320451177 + ], + "geometry": [ + { "lat": 40.8635867, "lon": -73.9732345 }, + { "lat": 40.8636784, "lon": -73.9732445 }, + { "lat": 40.8637649, "lon": -73.9732540 }, + { "lat": 40.8643896, "lon": -73.9732057 }, + { "lat": 40.8647405, "lon": -73.9732540 }, + { "lat": 40.8655195, "lon": -73.9731467 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674896859, + "bounds": { + "minlat": 40.8637463, + "minlon": -73.9719695, + "maxlat": 40.8638955, + "maxlon": -73.9714563 + }, + "nodes": [ + 6320468124, + 6320468123 + ], + "geometry": [ + { "lat": 40.8638955, "lon": -73.9719695 }, + { "lat": 40.8637463, "lon": -73.9714563 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 674896860, + "bounds": { + "minlat": 40.8614889, + "minlon": -73.9714180, + "maxlat": 40.8617485, + "maxlon": -73.9702258 + }, + "nodes": [ + 6320468129, + 6320468128, + 6320468127, + 103318373 + ], + "geometry": [ + { "lat": 40.8617485, "lon": -73.9702258 }, + { "lat": 40.8614889, "lon": -73.9706978 }, + { "lat": 40.8615741, "lon": -73.9712745 }, + { "lat": 40.8616080, "lon": -73.9714180 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674896861, + "bounds": { + "minlat": 40.8618317, + "minlon": -73.9706188, + "maxlat": 40.8624051, + "maxlon": -73.9696571 + }, + "nodes": [ + 6320468132, + 6320468131, + 6320468130 + ], + "geometry": [ + { "lat": 40.8624051, "lon": -73.9706188 }, + { "lat": 40.8618317, "lon": -73.9700568 }, + { "lat": 40.8620508, "lon": -73.9696571 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674896862, + "bounds": { + "minlat": 40.8613286, + "minlon": -73.9691046, + "maxlat": 40.8623046, + "maxlon": -73.9687649 + }, + "nodes": [ + 6320468137, + 6320468136, + 6320468135, + 6320468134, + 6320468133 + ], + "geometry": [ + { "lat": 40.8613286, "lon": -73.9688069 }, + { "lat": 40.8617830, "lon": -73.9691046 }, + { "lat": 40.8621380, "lon": -73.9688900 }, + { "lat": 40.8621806, "lon": -73.9688444 }, + { "lat": 40.8623046, "lon": -73.9687649 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674896863, + "bounds": { + "minlat": 40.8619899, + "minlon": -73.9686888, + "maxlat": 40.8622728, + "maxlon": -73.9679035 + }, + "nodes": [ + 6320468144, + 6320468143, + 9763766194, + 6320468142, + 6320468141, + 6320468140, + 9763766195, + 6320468139, + 6320468138, + 6320468145 + ], + "geometry": [ + { "lat": 40.8622728, "lon": -73.9686493 }, + { "lat": 40.8621624, "lon": -73.9686888 }, + { "lat": 40.8621153, "lon": -73.9686822 }, + { "lat": 40.8620739, "lon": -73.9686503 }, + { "lat": 40.8620656, "lon": -73.9686018 }, + { "lat": 40.8619899, "lon": -73.9680907 }, + { "lat": 40.8620072, "lon": -73.9680180 }, + { "lat": 40.8620290, "lon": -73.9679699 }, + { "lat": 40.8620853, "lon": -73.9679298 }, + { "lat": 40.8621636, "lon": -73.9679035 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 674896864, + "bounds": { + "minlat": 40.8621636, + "minlon": -73.9687040, + "maxlat": 40.8624002, + "maxlon": -73.9678949 + }, + "nodes": [ + 6320468145, + 6320468146, + 9763766198, + 6320468147, + 6320468148, + 9763766197, + 6320468149, + 9763766196, + 6320468150, + 103251850 + ], + "geometry": [ + { "lat": 40.8621636, "lon": -73.9679035 }, + { "lat": 40.8622739, "lon": -73.9678949 }, + { "lat": 40.8623103, "lon": -73.9679149 }, + { "lat": 40.8623307, "lon": -73.9679459 }, + { "lat": 40.8623971, "lon": -73.9684883 }, + { "lat": 40.8624002, "lon": -73.9685582 }, + { "lat": 40.8623968, "lon": -73.9686008 }, + { "lat": 40.8623807, "lon": -73.9686373 }, + { "lat": 40.8623551, "lon": -73.9686674 }, + { "lat": 40.8622860, "lon": -73.9687040 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 674896865, + "bounds": { + "minlat": 40.8615396, + "minlon": -73.9702714, + "maxlat": 40.8623762, + "maxlon": -73.9689766 + }, + "nodes": [ + 6320468154, + 6320468153, + 6320468152, + 6320468151 + ], + "geometry": [ + { "lat": 40.8615396, "lon": -73.9702714 }, + { "lat": 40.8618459, "lon": -73.9697295 }, + { "lat": 40.8621502, "lon": -73.9691529 }, + { "lat": 40.8623762, "lon": -73.9689766 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674896866, + "bounds": { + "minlat": 40.8624838, + "minlon": -73.9692392, + "maxlat": 40.8634038, + "maxlon": -73.9688444 + }, + "nodes": [ + 6320468156, + 6320468155, + 103251845 + ], + "geometry": [ + { "lat": 40.8634038, "lon": -73.9690214 }, + { "lat": 40.8630630, "lon": -73.9688444 }, + { "lat": 40.8624838, "lon": -73.9692392 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674896867, + "bounds": { + "minlat": 40.8623677, + "minlon": -73.9689541, + "maxlat": 40.8630096, + "maxlon": -73.9685489 + }, + "nodes": [ + 6320468158, + 6320468157 + ], + "geometry": [ + { "lat": 40.8630096, "lon": -73.9685489 }, + { "lat": 40.8623677, "lon": -73.9689541 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674896868, + "bounds": { + "minlat": 40.8629874, + "minlon": -73.9678439, + "maxlat": 40.8633632, + "maxlon": -73.9678305 + }, + "nodes": [ + 6320468160, + 6320468159 + ], + "geometry": [ + { "lat": 40.8629874, "lon": -73.9678439 }, + { "lat": 40.8633632, "lon": -73.9678305 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674896869, + "bounds": { + "minlat": 40.8629824, + "minlon": -73.9687103, + "maxlat": 40.8633328, + "maxlon": -73.9675728 + }, + "nodes": [ + 6320468164, + 6320468163, + 6320468162, + 6320468160, + 6320468161 + ], + "geometry": [ + { "lat": 40.8633328, "lon": -73.9687103 }, + { "lat": 40.8631644, "lon": -73.9685896 }, + { "lat": 40.8629920, "lon": -73.9680961 }, + { "lat": 40.8629874, "lon": -73.9678439 }, + { "lat": 40.8629824, "lon": -73.9675728 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674896870, + "bounds": { + "minlat": 40.8634565, + "minlon": -73.9693218, + "maxlat": 40.8639898, + "maxlon": -73.9684307 + }, + "nodes": [ + 6320468167, + 6320468166, + 6320468165 + ], + "geometry": [ + { "lat": 40.8634565, "lon": -73.9693218 }, + { "lat": 40.8636695, "lon": -73.9687264 }, + { "lat": 40.8639898, "lon": -73.9684307 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674896871, + "bounds": { + "minlat": 40.8644769, + "minlon": -73.9693257, + "maxlat": 40.8649401, + "maxlon": -73.9690536 + }, + "nodes": [ + 6320468175, + 6320468170, + 6320468169, + 6320468168, + 3531038453 + ], + "geometry": [ + { "lat": 40.8644769, "lon": -73.9693257 }, + { "lat": 40.8646493, "lon": -73.9693111 }, + { "lat": 40.8647750, "lon": -73.9691958 }, + { "lat": 40.8649150, "lon": -73.9690536 }, + { "lat": 40.8649401, "lon": -73.9690906 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 674896872, + "bounds": { + "minlat": 40.8639940, + "minlon": -73.9698315, + "maxlat": 40.8644769, + "maxlon": -73.9689680 + }, + "nodes": [ + 103318416, + 6320468176, + 6320468175, + 6320468174, + 6320468173, + 6320468172, + 6320468171, + 103318397 + ], + "geometry": [ + { "lat": 40.8642790, "lon": -73.9689680 }, + { "lat": 40.8644485, "lon": -73.9691314 }, + { "lat": 40.8644769, "lon": -73.9693257 }, + { "lat": 40.8644424, "lon": -73.9695203 }, + { "lat": 40.8643470, "lon": -73.9697161 }, + { "lat": 40.8642416, "lon": -73.9698100 }, + { "lat": 40.8640955, "lon": -73.9698315 }, + { "lat": 40.8639940, "lon": -73.9697780 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 675122669, + "bounds": { + "minlat": 40.7740881, + "minlon": -73.9838648, + "maxlat": 40.7744575, + "maxlon": -73.9835963 + }, + "nodes": [ + 6322584579, + 9902089820, + 9902764947 + ], + "geometry": [ + { "lat": 40.7744575, "lon": -73.9835963 }, + { "lat": 40.7744040, "lon": -73.9836352 }, + { "lat": 40.7740881, "lon": -73.9838648 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 675301619, + "bounds": { + "minlat": 40.7455101, + "minlon": -73.9505648, + "maxlat": 40.7481354, + "maxlon": -73.9496972 + }, + "nodes": [ + 5481857862, + 9982728604, + 42855824, + 9982728606, + 9982728609, + 42843270, + 9982728611, + 9982728610, + 42866924, + 9982728616, + 11163899162, + 9982728615, + 42866920, + 9982771919, + 11157932402 + ], + "geometry": [ + { "lat": 40.7455101, "lon": -73.9505648 }, + { "lat": 40.7456543, "lon": -73.9505173 }, + { "lat": 40.7457192, "lon": -73.9504959 }, + { "lat": 40.7457826, "lon": -73.9504750 }, + { "lat": 40.7463487, "lon": -73.9502886 }, + { "lat": 40.7464130, "lon": -73.9502674 }, + { "lat": 40.7464750, "lon": -73.9502470 }, + { "lat": 40.7470381, "lon": -73.9500615 }, + { "lat": 40.7471086, "lon": -73.9500382 }, + { "lat": 40.7471676, "lon": -73.9500188 }, + { "lat": 40.7477042, "lon": -73.9498420 }, + { "lat": 40.7477324, "lon": -73.9498327 }, + { "lat": 40.7477976, "lon": -73.9498113 }, + { "lat": 40.7478568, "lon": -73.9497906 }, + { "lat": 40.7481354, "lon": -73.9496972 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 675301620, + "bounds": { + "minlat": 40.7483207, + "minlon": -73.9496350, + "maxlat": 40.7485546, + "maxlon": -73.9495977 + }, + "nodes": [ + 11157932403, + 8894674493, + 42825542 + ], + "geometry": [ + { "lat": 40.7483207, "lon": -73.9496350 }, + { "lat": 40.7484328, "lon": -73.9495977 }, + { "lat": 40.7485546, "lon": -73.9496291 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|right" + } +}, +{ + "type": "way", + "id": 675318426, + "bounds": { + "minlat": 40.8125697, + "minlon": -73.9293829, + "maxlat": 40.8126670, + "maxlon": -73.9292631 + }, + "nodes": [ + 6324329769, + 9910711692, + 42779702 + ], + "geometry": [ + { "lat": 40.8126670, "lon": -73.9293829 }, + { "lat": 40.8126186, "lon": -73.9293233 }, + { "lat": 40.8125697, "lon": -73.9292631 } + ], + "tags": { + "cycleway": "lane", + "cycleway:left:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 675318427, + "bounds": { + "minlat": 40.8117304, + "minlon": -73.9292631, + "maxlat": 40.8125697, + "maxlon": -73.9281344 + }, + "nodes": [ + 42779702, + 9910711691, + 42751188, + 11882279910, + 42743865, + 11882279912, + 11882279895, + 7553826299 + ], + "geometry": [ + { "lat": 40.8125697, "lon": -73.9292631 }, + { "lat": 40.8125257, "lon": -73.9292065 }, + { "lat": 40.8123364, "lon": -73.9289587 }, + { "lat": 40.8120895, "lon": -73.9286161 }, + { "lat": 40.8120326, "lon": -73.9285360 }, + { "lat": 40.8119901, "lon": -73.9284795 }, + { "lat": 40.8117815, "lon": -73.9282023 }, + { "lat": 40.8117304, "lon": -73.9281344 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 675457101, + "bounds": { + "minlat": 40.8749554, + "minlon": -74.0063114, + "maxlat": 40.8755980, + "maxlon": -74.0047057 + }, + "nodes": [ + 6325610082, + 103288328, + 103288332, + 103288335, + 103288337, + 103288340, + 4469435371, + 6325610083, + 4469435375, + 103288342, + 103288344, + 103288347, + 103288349, + 103288352 + ], + "geometry": [ + { "lat": 40.8749554, "lon": -74.0061723 }, + { "lat": 40.8750610, "lon": -74.0062591 }, + { "lat": 40.8751296, "lon": -74.0063083 }, + { "lat": 40.8752081, "lon": -74.0063114 }, + { "lat": 40.8752609, "lon": -74.0062747 }, + { "lat": 40.8753435, "lon": -74.0061780 }, + { "lat": 40.8754445, "lon": -74.0060396 }, + { "lat": 40.8754772, "lon": -74.0059775 }, + { "lat": 40.8755175, "lon": -74.0059008 }, + { "lat": 40.8755639, "lon": -74.0057934 }, + { "lat": 40.8755920, "lon": -74.0056840 }, + { "lat": 40.8755980, "lon": -74.0055990 }, + { "lat": 40.8755920, "lon": -74.0055099 }, + { "lat": 40.8753639, "lon": -74.0047057 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Courts of Glenpointe Driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Courts of Glenpointe", + "tiger:name_type": "Driveway", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 675457102, + "bounds": { + "minlat": 40.8756389, + "minlon": -74.0029846, + "maxlat": 40.8757509, + "maxlon": -74.0027708 + }, + "nodes": [ + 4469448600, + 103118674 + ], + "geometry": [ + { "lat": 40.8756389, "lon": -74.0027708 }, + { "lat": 40.8757509, "lon": -74.0029846 } + ], + "tags": { + "access": "private", + "highway": "residential", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Home", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 675898626, + "bounds": { + "minlat": 40.7105487, + "minlon": -73.9895500, + "maxlat": 40.7112616, + "maxlon": -73.9894443 + }, + "nodes": [ + 42437496, + 8310246594, + 4581870333 + ], + "geometry": [ + { "lat": 40.7112616, "lon": -73.9895500 }, + { "lat": 40.7111711, "lon": -73.9895366 }, + { "lat": 40.7105487, "lon": -73.9894443 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 675913158, + "bounds": { + "minlat": 40.7110131, + "minlon": -73.9914924, + "maxlat": 40.7117151, + "maxlon": -73.9910150 + }, + "nodes": [ + 6330018894, + 8288820797, + 6330018895, + 8288820799, + 8310246650, + 7480515814 + ], + "geometry": [ + { "lat": 40.7117151, "lon": -73.9910150 }, + { "lat": 40.7116955, "lon": -73.9912579 }, + { "lat": 40.7116765, "lon": -73.9914924 }, + { "lat": 40.7111274, "lon": -73.9914056 }, + { "lat": 40.7110896, "lon": -73.9913996 }, + { "lat": 40.7110131, "lon": -73.9913892 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 675913183, + "bounds": { + "minlat": 40.7119975, + "minlon": -73.9897608, + "maxlat": 40.7120401, + "maxlon": -73.9891576 + }, + "nodes": [ + 6330018962, + 8310246612, + 6330018963 + ], + "geometry": [ + { "lat": 40.7120401, "lon": -73.9891576 }, + { "lat": 40.7120028, "lon": -73.9896858 }, + { "lat": 40.7119975, "lon": -73.9897608 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 675913184, + "bounds": { + "minlat": 40.7113815, + "minlon": -73.9883748, + "maxlat": 40.7117120, + "maxlon": -73.9883106 + }, + "nodes": [ + 42437500, + 8310246604, + 6330018964 + ], + "geometry": [ + { "lat": 40.7113815, "lon": -73.9883106 }, + { "lat": 40.7114781, "lon": -73.9883294 }, + { "lat": 40.7117120, "lon": -73.9883748 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 675913185, + "bounds": { + "minlat": 40.7113334, + "minlon": -73.9888616, + "maxlat": 40.7116638, + "maxlon": -73.9888081 + }, + "nodes": [ + 6330018965, + 8310246606, + 6330018966 + ], + "geometry": [ + { "lat": 40.7113334, "lon": -73.9888081 }, + { "lat": 40.7114308, "lon": -73.9888239 }, + { "lat": 40.7116638, "lon": -73.9888616 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 675913186, + "bounds": { + "minlat": 40.7122310, + "minlon": -73.9889981, + "maxlat": 40.7127392, + "maxlon": -73.9889254 + }, + "nodes": [ + 6330018967, + 8310246609, + 6330018968 + ], + "geometry": [ + { "lat": 40.7127392, "lon": -73.9889981 }, + { "lat": 40.7126412, "lon": -73.9889831 }, + { "lat": 40.7122310, "lon": -73.9889254 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 675913187, + "bounds": { + "minlat": 40.7121751, + "minlon": -73.9874075, + "maxlat": 40.7122172, + "maxlon": -73.9868576 + }, + "nodes": [ + 6330018969, + 8310246616, + 8718166995, + 6330018970 + ], + "geometry": [ + { "lat": 40.7122172, "lon": -73.9868576 }, + { "lat": 40.7122110, "lon": -73.9869490 }, + { "lat": 40.7122097, "lon": -73.9869660 }, + { "lat": 40.7121751, "lon": -73.9874075 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 675937260, + "bounds": { + "minlat": 40.7142293, + "minlon": -73.9949914, + "maxlat": 40.7143979, + "maxlon": -73.9949005 + }, + "nodes": [ + 11496497638, + 11504615929, + 6330243056, + 11504615968, + 6330243057 + ], + "geometry": [ + { "lat": 40.7142293, "lon": -73.9949005 }, + { "lat": 40.7142716, "lon": -73.9949240 }, + { "lat": 40.7142887, "lon": -73.9949330 }, + { "lat": 40.7143062, "lon": -73.9949423 }, + { "lat": 40.7143979, "lon": -73.9949914 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 675937261, + "bounds": { + "minlat": 40.7142263, + "minlon": -73.9950885, + "maxlat": 40.7143899, + "maxlon": -73.9950688 + }, + "nodes": [ + 6330243058, + 11504615971, + 6330243059, + 11504615970, + 11496497635 + ], + "geometry": [ + { "lat": 40.7143899, "lon": -73.9950885 }, + { "lat": 40.7142973, "lon": -73.9950765 }, + { "lat": 40.7142799, "lon": -73.9950743 }, + { "lat": 40.7142606, "lon": -73.9950723 }, + { "lat": 40.7142263, "lon": -73.9950688 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 675967321, + "bounds": { + "minlat": 40.7172902, + "minlon": -73.9954393, + "maxlat": 40.7184777, + "maxlon": -73.9948080 + }, + "nodes": [ + 42437589, + 7641718026, + 12195871655, + 6902711855, + 12195871658, + 5161246309, + 12195871659, + 12195871661, + 12195871660, + 9929805721, + 42437580 + ], + "geometry": [ + { "lat": 40.7184777, "lon": -73.9948080 }, + { "lat": 40.7183913, "lon": -73.9948489 }, + { "lat": 40.7183439, "lon": -73.9948714 }, + { "lat": 40.7179329, "lon": -73.9950738 }, + { "lat": 40.7178444, "lon": -73.9951216 }, + { "lat": 40.7177454, "lon": -73.9951785 }, + { "lat": 40.7176509, "lon": -73.9952305 }, + { "lat": 40.7175486, "lon": -73.9952881 }, + { "lat": 40.7173842, "lon": -73.9953824 }, + { "lat": 40.7173432, "lon": -73.9954072 }, + { "lat": 40.7172902, "lon": -73.9954393 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 675967322, + "bounds": { + "minlat": 40.7182844, + "minlon": -73.9948080, + "maxlat": 40.7184777, + "maxlon": -73.9942144 + }, + "nodes": [ + 42437589, + 5805243784, + 9512791614 + ], + "geometry": [ + { "lat": 40.7184777, "lon": -73.9948080 }, + { "lat": 40.7184265, "lon": -73.9946814 }, + { "lat": 40.7182844, "lon": -73.9942144 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 676028733, + "bounds": { + "minlat": 40.7341911, + "minlon": -73.9750336, + "maxlat": 40.7342008, + "maxlon": -73.9748747 + }, + "nodes": [ + 6331080434, + 3686061889, + 42451018 + ], + "geometry": [ + { "lat": 40.7341911, "lon": -73.9750336 }, + { "lat": 40.7341946, "lon": -73.9749402 }, + { "lat": 40.7342008, "lon": -73.9748747 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Peter Cooper Road", + "name:etymology:wikidata": "Q935291", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 676028734, + "bounds": { + "minlat": 40.7348840, + "minlon": -73.9777317, + "maxlat": 40.7354456, + "maxlon": -73.9766170 + }, + "nodes": [ + 5785120648, + 8429186165, + 3601295706, + 8232498041, + 387184874, + 387184875, + 387184876, + 387184877, + 387184878, + 1814477462, + 1814477466, + 1814477457, + 8228280745, + 8228280746, + 8228280747, + 8228280748, + 3360773034, + 8228267413 + ], + "geometry": [ + { "lat": 40.7354456, "lon": -73.9777317 }, + { "lat": 40.7353568, "lon": -73.9776578 }, + { "lat": 40.7351460, "lon": -73.9774820 }, + { "lat": 40.7350219, "lon": -73.9773753 }, + { "lat": 40.7349768, "lon": -73.9773326 }, + { "lat": 40.7349511, "lon": -73.9773046 }, + { "lat": 40.7349309, "lon": -73.9772751 }, + { "lat": 40.7349166, "lon": -73.9772483 }, + { "lat": 40.7349062, "lon": -73.9772214 }, + { "lat": 40.7348977, "lon": -73.9771948 }, + { "lat": 40.7348881, "lon": -73.9771514 }, + { "lat": 40.7348841, "lon": -73.9771064 }, + { "lat": 40.7348840, "lon": -73.9770676 }, + { "lat": 40.7348865, "lon": -73.9770328 }, + { "lat": 40.7348985, "lon": -73.9769933 }, + { "lat": 40.7349331, "lon": -73.9769143 }, + { "lat": 40.7349710, "lon": -73.9768327 }, + { "lat": 40.7350735, "lon": -73.9766170 } + ], + "tags": { + "access": "private", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Peter Cooper Road", + "name:etymology:wikidata": "Q935291", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 676204229, + "bounds": { + "minlat": 40.7234878, + "minlon": -73.9525970, + "maxlat": 40.7251520, + "maxlon": -73.9516433 + }, + "nodes": [ + 42527678, + 9789343583, + 9789402808, + 42479277 + ], + "geometry": [ + { "lat": 40.7251520, "lon": -73.9525970 }, + { "lat": 40.7250942, "lon": -73.9525635 }, + { "lat": 40.7235721, "lon": -73.9516901 }, + { "lat": 40.7234878, "lon": -73.9516433 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Lorimer Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 676204231, + "bounds": { + "minlat": 40.7265480, + "minlon": -73.9506277, + "maxlat": 40.7305542, + "maxlon": -73.9483730 + }, + "nodes": [ + 42512081, + 9788947173, + 8549558990, + 9788947165, + 42512083, + 9788947198, + 8097222288, + 9788947199, + 42496869, + 9788947517, + 2991742390, + 5891904330, + 9788947514, + 5481915294 + ], + "geometry": [ + { "lat": 40.7265480, "lon": -73.9483730 }, + { "lat": 40.7266214, "lon": -73.9484149 }, + { "lat": 40.7281266, "lon": -73.9492724 }, + { "lat": 40.7281592, "lon": -73.9492908 }, + { "lat": 40.7282130, "lon": -73.9493210 }, + { "lat": 40.7282795, "lon": -73.9493586 }, + { "lat": 40.7291553, "lon": -73.9498603 }, + { "lat": 40.7291896, "lon": -73.9498799 }, + { "lat": 40.7292440, "lon": -73.9499110 }, + { "lat": 40.7293067, "lon": -73.9499466 }, + { "lat": 40.7297654, "lon": -73.9502074 }, + { "lat": 40.7304202, "lon": -73.9505797 }, + { "lat": 40.7304602, "lon": -73.9505988 }, + { "lat": 40.7305542, "lon": -73.9506277 } + ], + "tags": { + "alt_name": "Newell Street", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Newel Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 676204232, + "bounds": { + "minlat": 40.7265480, + "minlon": -73.9483730, + "maxlat": 40.7273769, + "maxlon": -73.9458951 + }, + "nodes": [ + 42512081, + 9788947172, + 9788947153, + 42478906, + 9788947151, + 9927158529, + 42498664, + 9927158528, + 11701385998, + 9788947219, + 42512677 + ], + "geometry": [ + { "lat": 40.7265480, "lon": -73.9483730 }, + { "lat": 40.7265689, "lon": -73.9483096 }, + { "lat": 40.7267972, "lon": -73.9476186 }, + { "lat": 40.7268220, "lon": -73.9475440 }, + { "lat": 40.7268398, "lon": -73.9474863 }, + { "lat": 40.7270701, "lon": -73.9467877 }, + { "lat": 40.7270940, "lon": -73.9467150 }, + { "lat": 40.7271158, "lon": -73.9466519 }, + { "lat": 40.7273361, "lon": -73.9460134 }, + { "lat": 40.7273531, "lon": -73.9459641 }, + { "lat": 40.7273769, "lon": -73.9458951 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Norman Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 676555583, + "bounds": { + "minlat": 40.7461432, + "minlon": -73.9423180, + "maxlat": 40.7462771, + "maxlon": -73.9417221 + }, + "nodes": [ + 6335562567, + 8994094861, + 42825558 + ], + "geometry": [ + { "lat": 40.7462771, "lon": -73.9423180 }, + { "lat": 40.7461985, "lon": -73.9419634 }, + { "lat": 40.7461432, "lon": -73.9417221 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Thomson Avenue", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 676555585, + "bounds": { + "minlat": 40.7462771, + "minlon": -73.9432186, + "maxlat": 40.7468625, + "maxlon": -73.9423180 + }, + "nodes": [ + 6335562567, + 6335562570, + 6335562566, + 6335562564, + 9982698534, + 6335562563, + 9982698535, + 9982698536, + 6335562562, + 6335562565, + 9982698538, + 9982698537 + ], + "geometry": [ + { "lat": 40.7462771, "lon": -73.9423180 }, + { "lat": 40.7463750, "lon": -73.9426219 }, + { "lat": 40.7464218, "lon": -73.9428313 }, + { "lat": 40.7464312, "lon": -73.9428614 }, + { "lat": 40.7464443, "lon": -73.9428906 }, + { "lat": 40.7464669, "lon": -73.9429276 }, + { "lat": 40.7464918, "lon": -73.9429599 }, + { "lat": 40.7465205, "lon": -73.9429868 }, + { "lat": 40.7465529, "lon": -73.9430133 }, + { "lat": 40.7467195, "lon": -73.9431224 }, + { "lat": 40.7467699, "lon": -73.9431564 }, + { "lat": 40.7468625, "lon": -73.9432186 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 676600413, + "bounds": { + "minlat": 40.8336153, + "minlon": -73.9069319, + "maxlat": 40.8348676, + "maxlon": -73.9060349 + }, + "nodes": [ + 6335940262, + 6335940263, + 6335940266, + 6335940264, + 6335940265 + ], + "geometry": [ + { "lat": 40.8348676, "lon": -73.9062670 }, + { "lat": 40.8347902, "lon": -73.9060349 }, + { "lat": 40.8342171, "lon": -73.9063624 }, + { "lat": 40.8336153, "lon": -73.9067063 }, + { "lat": 40.8336885, "lon": -73.9069319 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 676600414, + "bounds": { + "minlat": 40.8342171, + "minlon": -73.9065931, + "maxlat": 40.8342893, + "maxlon": -73.9063624 + }, + "nodes": [ + 6335940266, + 6335940267 + ], + "geometry": [ + { "lat": 40.8342171, "lon": -73.9063624 }, + { "lat": 40.8342893, "lon": -73.9065931 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 676706854, + "bounds": { + "minlat": 40.8356353, + "minlon": -74.0148858, + "maxlat": 40.8360885, + "maxlon": -74.0141533 + }, + "nodes": [ + 6336909002, + 6336909012, + 6336909013, + 6336909003, + 6336909004, + 6336909005, + 6336909006, + 6336909007 + ], + "geometry": [ + { "lat": 40.8356353, "lon": -74.0148858 }, + { "lat": 40.8357706, "lon": -74.0147618 }, + { "lat": 40.8357973, "lon": -74.0147399 }, + { "lat": 40.8358357, "lon": -74.0147085 }, + { "lat": 40.8360246, "lon": -74.0145771 }, + { "lat": 40.8360712, "lon": -74.0145020 }, + { "lat": 40.8360885, "lon": -74.0143786 }, + { "lat": 40.8360094, "lon": -74.0141533 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 676706855, + "bounds": { + "minlat": 40.8357706, + "minlon": -74.0153732, + "maxlat": 40.8359860, + "maxlon": -74.0147618 + }, + "nodes": [ + 6336909008, + 6336909009, + 6336909010, + 6336909011, + 6336909012 + ], + "geometry": [ + { "lat": 40.8358977, "lon": -74.0153732 }, + { "lat": 40.8359586, "lon": -74.0153133 }, + { "lat": 40.8359860, "lon": -74.0152651 }, + { "lat": 40.8359809, "lon": -74.0152114 }, + { "lat": 40.8357706, "lon": -74.0147618 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 676722335, + "bounds": { + "minlat": 40.7279259, + "minlon": -73.9966986, + "maxlat": 40.7281313, + "maxlon": -73.9962611 + }, + "nodes": [ + 6337060930, + 6337060931 + ], + "geometry": [ + { "lat": 40.7281313, "lon": -73.9966986 }, + { "lat": 40.7279259, "lon": -73.9962611 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 676722336, + "bounds": { + "minlat": 40.7274761, + "minlon": -73.9970559, + "maxlat": 40.7277074, + "maxlon": -73.9966237 + }, + "nodes": [ + 6337060932, + 6337060933 + ], + "geometry": [ + { "lat": 40.7277074, "lon": -73.9970559 }, + { "lat": 40.7274761, "lon": -73.9966237 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 676837933, + "bounds": { + "minlat": 40.7051209, + "minlon": -73.9666415, + "maxlat": 40.7053832, + "maxlon": -73.9659961 + }, + "nodes": [ + 6338018558, + 9776829057, + 6338018559, + 6338018562, + 6338018560, + 6338018561 + ], + "geometry": [ + { "lat": 40.7053278, "lon": -73.9666415 }, + { "lat": 40.7053512, "lon": -73.9665417 }, + { "lat": 40.7053832, "lon": -73.9664052 }, + { "lat": 40.7052889, "lon": -73.9663613 }, + { "lat": 40.7051209, "lon": -73.9662831 }, + { "lat": 40.7053009, "lon": -73.9659961 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 676837934, + "bounds": { + "minlat": 40.7052889, + "minlon": -73.9663613, + "maxlat": 40.7054320, + "maxlon": -73.9661396 + }, + "nodes": [ + 6338018562, + 6338018563 + ], + "geometry": [ + { "lat": 40.7052889, "lon": -73.9663613 }, + { "lat": 40.7054320, "lon": -73.9661396 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 676837935, + "bounds": { + "minlat": 40.7053832, + "minlon": -73.9665178, + "maxlat": 40.7056882, + "maxlon": -73.9664052 + }, + "nodes": [ + 6338018559, + 6338018565, + 6338018564 + ], + "geometry": [ + { "lat": 40.7053832, "lon": -73.9664052 }, + { "lat": 40.7054623, "lon": -73.9664344 }, + { "lat": 40.7056882, "lon": -73.9665178 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 676837936, + "bounds": { + "minlat": 40.7054623, + "minlon": -73.9664344, + "maxlat": 40.7055540, + "maxlon": -73.9662979 + }, + "nodes": [ + 6338018565, + 6338018566 + ], + "geometry": [ + { "lat": 40.7054623, "lon": -73.9664344 }, + { "lat": 40.7055540, "lon": -73.9662979 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 676960810, + "bounds": { + "minlat": 40.8055318, + "minlon": -74.0201954, + "maxlat": 40.8075409, + "maxlon": -74.0177745 + }, + "nodes": [ + 6307669771, + 6339096885, + 6307669772, + 6307669784, + 6307669773, + 6307669774 + ], + "geometry": [ + { "lat": 40.8069814, "lon": -74.0177745 }, + { "lat": 40.8074253, "lon": -74.0186835 }, + { "lat": 40.8075409, "lon": -74.0189126 }, + { "lat": 40.8063952, "lon": -74.0199090 }, + { "lat": 40.8060620, "lon": -74.0201954 }, + { "lat": 40.8055318, "lon": -74.0191516 } + ], + "tags": { + "covered": "no", + "highway": "service", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 677010389, + "bounds": { + "minlat": 40.8383460, + "minlon": -74.0093604, + "maxlat": 40.8400003, + "maxlon": -74.0086869 + }, + "nodes": [ + 103243980, + 7079261124, + 6339500961, + 6339500962, + 6339500963, + 6339500964, + 7521645912, + 6339500965, + 6339500966, + 103232475 + ], + "geometry": [ + { "lat": 40.8400003, "lon": -74.0086869 }, + { "lat": 40.8399221, "lon": -74.0087295 }, + { "lat": 40.8398429, "lon": -74.0087727 }, + { "lat": 40.8394691, "lon": -74.0089687 }, + { "lat": 40.8393345, "lon": -74.0090124 }, + { "lat": 40.8391362, "lon": -74.0090795 }, + { "lat": 40.8390624, "lon": -74.0091121 }, + { "lat": 40.8388131, "lon": -74.0092224 }, + { "lat": 40.8384449, "lon": -74.0093604 }, + { "lat": 40.8383460, "lon": -74.0093429 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 677010390, + "bounds": { + "minlat": 40.8401845, + "minlon": -74.0085674, + "maxlat": 40.8404743, + "maxlon": -74.0081401 + }, + "nodes": [ + 6339500967, + 6339500968, + 6339500969 + ], + "geometry": [ + { "lat": 40.8404743, "lon": -74.0081401 }, + { "lat": 40.8401845, "lon": -74.0084748 }, + { "lat": 40.8402305, "lon": -74.0085674 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 677017477, + "bounds": { + "minlat": 40.8623045, + "minlon": -73.9584383, + "maxlat": 40.8632601, + "maxlon": -73.9573916 + }, + "nodes": [ + 6339551955, + 6339551956, + 6339551957, + 6339551958, + 6339551959, + 6339551960, + 6339551961, + 6339551962, + 6339551963 + ], + "geometry": [ + { "lat": 40.8628191, "lon": -73.9573916 }, + { "lat": 40.8630978, "lon": -73.9578402 }, + { "lat": 40.8632601, "lon": -73.9581684 }, + { "lat": 40.8630059, "lon": -73.9584272 }, + { "lat": 40.8629832, "lon": -73.9584383 }, + { "lat": 40.8627636, "lon": -73.9580674 }, + { "lat": 40.8625317, "lon": -73.9583191 }, + { "lat": 40.8624115, "lon": -73.9581296 }, + { "lat": 40.8623045, "lon": -73.9579583 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 677054212, + "bounds": { + "minlat": 40.8326280, + "minlon": -74.0083446, + "maxlat": 40.8331342, + "maxlon": -74.0079925 + }, + "nodes": [ + 6339836767, + 6339838585, + 6339836766, + 6339838587, + 6339836765, + 6339838589, + 13527768440, + 6339836764 + ], + "geometry": [ + { "lat": 40.8331342, "lon": -74.0079925 }, + { "lat": 40.8330150, "lon": -74.0080263 }, + { "lat": 40.8329221, "lon": -74.0080527 }, + { "lat": 40.8328818, "lon": -74.0080634 }, + { "lat": 40.8328525, "lon": -74.0080857 }, + { "lat": 40.8327810, "lon": -74.0081619 }, + { "lat": 40.8326742, "lon": -74.0082895 }, + { "lat": 40.8326280, "lon": -74.0083446 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 677054213, + "bounds": { + "minlat": 40.8333484, + "minlon": -74.0073685, + "maxlat": 40.8339736, + "maxlon": -74.0062951 + }, + "nodes": [ + 6339836774, + 6339836775, + 6339836782, + 6339836776, + 6339836777, + 6339836778, + 6339836779, + 6339836780, + 6339836781 + ], + "geometry": [ + { "lat": 40.8333484, "lon": -74.0073685 }, + { "lat": 40.8336328, "lon": -74.0071082 }, + { "lat": 40.8336929, "lon": -74.0070878 }, + { "lat": 40.8337418, "lon": -74.0070712 }, + { "lat": 40.8339736, "lon": -74.0068173 }, + { "lat": 40.8338708, "lon": -74.0066964 }, + { "lat": 40.8338192, "lon": -74.0066193 }, + { "lat": 40.8337728, "lon": -74.0065528 }, + { "lat": 40.8336006, "lon": -74.0062951 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 677054214, + "bounds": { + "minlat": 40.8336929, + "minlon": -74.0072746, + "maxlat": 40.8338058, + "maxlon": -74.0070878 + }, + "nodes": [ + 6339836782, + 6339836783 + ], + "geometry": [ + { "lat": 40.8336929, "lon": -74.0070878 }, + { "lat": 40.8338058, "lon": -74.0072746 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 677054215, + "bounds": { + "minlat": 40.8327209, + "minlon": -74.0079925, + "maxlat": 40.8331342, + "maxlon": -74.0072970 + }, + "nodes": [ + 6339836784, + 6339836767 + ], + "geometry": [ + { "lat": 40.8327209, "lon": -74.0072970 }, + { "lat": 40.8331342, "lon": -74.0079925 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 677054216, + "bounds": { + "minlat": 40.8326244, + "minlon": -74.0080263, + "maxlat": 40.8330150, + "maxlon": -74.0073953 + }, + "nodes": [ + 6339838585, + 6339838586 + ], + "geometry": [ + { "lat": 40.8330150, "lon": -74.0080263 }, + { "lat": 40.8326244, "lon": -74.0073953 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 677054217, + "bounds": { + "minlat": 40.8325369, + "minlon": -74.0080634, + "maxlat": 40.8328818, + "maxlon": -74.0074822 + }, + "nodes": [ + 6339838588, + 6339838587 + ], + "geometry": [ + { "lat": 40.8325369, "lon": -74.0074822 }, + { "lat": 40.8328818, "lon": -74.0080634 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 677054218, + "bounds": { + "minlat": 40.8324362, + "minlon": -74.0081619, + "maxlat": 40.8327810, + "maxlon": -74.0075761 + }, + "nodes": [ + 6339838589, + 6339838590 + ], + "geometry": [ + { "lat": 40.8327810, "lon": -74.0081619 }, + { "lat": 40.8324362, "lon": -74.0075761 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 677054219, + "bounds": { + "minlat": 40.8330505, + "minlon": -74.0073685, + "maxlat": 40.8333484, + "maxlon": -74.0069609 + }, + "nodes": [ + 6339836773, + 6339836772, + 6339836774 + ], + "geometry": [ + { "lat": 40.8330505, "lon": -74.0069609 }, + { "lat": 40.8331666, "lon": -74.0070584 }, + { "lat": 40.8333484, "lon": -74.0073685 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 677054220, + "bounds": { + "minlat": 40.8331342, + "minlon": -74.0079925, + "maxlat": 40.8335445, + "maxlon": -74.0073685 + }, + "nodes": [ + 6339836774, + 6339836771, + 6339836770, + 6339836769, + 6339836768, + 6339836767 + ], + "geometry": [ + { "lat": 40.8333484, "lon": -74.0073685 }, + { "lat": 40.8335445, "lon": -74.0077031 }, + { "lat": 40.8333936, "lon": -74.0078926 }, + { "lat": 40.8333196, "lon": -74.0079388 }, + { "lat": 40.8332520, "lon": -74.0079635 }, + { "lat": 40.8331342, "lon": -74.0079925 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 677059197, + "bounds": { + "minlat": 40.8687697, + "minlon": -73.9578710, + "maxlat": 40.8691767, + "maxlon": -73.9573861 + }, + "nodes": [ + 6339876886, + 6339876887, + 6339876890, + 6339876888, + 6339876889 + ], + "geometry": [ + { "lat": 40.8690412, "lon": -73.9573861 }, + { "lat": 40.8691767, "lon": -73.9576077 }, + { "lat": 40.8689387, "lon": -73.9578182 }, + { "lat": 40.8689139, "lon": -73.9578710 }, + { "lat": 40.8687697, "lon": -73.9576523 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 677059198, + "bounds": { + "minlat": 40.8689387, + "minlon": -73.9591053, + "maxlat": 40.8699460, + "maxlon": -73.9575583 + }, + "nodes": [ + 6339876890, + 6339876891, + 6339876892, + 6339876893, + 6339876894, + 6339876897, + 6339876895, + 6339876899, + 6339876896, + 6339876887 + ], + "geometry": [ + { "lat": 40.8689387, "lon": -73.9578182 }, + { "lat": 40.8689932, "lon": -73.9578975 }, + { "lat": 40.8692803, "lon": -73.9584188 }, + { "lat": 40.8693165, "lon": -73.9584375 }, + { "lat": 40.8697014, "lon": -73.9591053 }, + { "lat": 40.8698127, "lon": -73.9589921 }, + { "lat": 40.8699460, "lon": -73.9588566 }, + { "lat": 40.8695785, "lon": -73.9581862 }, + { "lat": 40.8692344, "lon": -73.9575583 }, + { "lat": 40.8691767, "lon": -73.9576077 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 677059199, + "bounds": { + "minlat": 40.8694417, + "minlon": -73.9589921, + "maxlat": 40.8698127, + "maxlon": -73.9583128 + }, + "nodes": [ + 6339876897, + 6339876898 + ], + "geometry": [ + { "lat": 40.8698127, "lon": -73.9589921 }, + { "lat": 40.8694417, "lon": -73.9583128 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 677059200, + "bounds": { + "minlat": 40.8693165, + "minlon": -73.9584375, + "maxlat": 40.8695785, + "maxlon": -73.9581862 + }, + "nodes": [ + 6339876899, + 6339876898, + 6339876893 + ], + "geometry": [ + { "lat": 40.8695785, "lon": -73.9581862 }, + { "lat": 40.8694417, "lon": -73.9583128 }, + { "lat": 40.8693165, "lon": -73.9584375 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 677067769, + "bounds": { + "minlat": 40.7534645, + "minlon": -74.0033527, + "maxlat": 40.7544654, + "maxlon": -74.0011103 + }, + "nodes": [ + 6339939226, + 8261122305, + 6339939231, + 6339939227, + 8261122459, + 11136560145, + 8261122458, + 6656308637, + 8261122457, + 6339939238, + 11136560146, + 6339939233, + 11137273982, + 9913533689, + 8261122509 + ], + "geometry": [ + { "lat": 40.7539315, "lon": -74.0033527 }, + { "lat": 40.7538726, "lon": -74.0032121 }, + { "lat": 40.7535022, "lon": -74.0023303 }, + { "lat": 40.7534805, "lon": -74.0022663 }, + { "lat": 40.7534677, "lon": -74.0021937 }, + { "lat": 40.7534645, "lon": -74.0021349 }, + { "lat": 40.7534720, "lon": -74.0020679 }, + { "lat": 40.7534913, "lon": -74.0020017 }, + { "lat": 40.7535164, "lon": -74.0019474 }, + { "lat": 40.7535499, "lon": -74.0018947 }, + { "lat": 40.7535806, "lon": -74.0018617 }, + { "lat": 40.7536113, "lon": -74.0018346 }, + { "lat": 40.7537812, "lon": -74.0016914 }, + { "lat": 40.7544417, "lon": -74.0011295 }, + { "lat": 40.7544654, "lon": -74.0011103 } + ], + "tags": { + "bicycle": "yes", + "foot": "yes", + "highway": "living_street", + "lanes": "1", + "motor_vehicle": "destination", + "name": "Hudson Boulevard East", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q16980469", + "wikipedia": "en:Hudson Park and Boulevard" + } +}, +{ + "type": "way", + "id": 678023120, + "bounds": { + "minlat": 40.7197195, + "minlon": -73.9301103, + "maxlat": 40.7199090, + "maxlon": -73.9293428 + }, + "nodes": [ + 6348483236, + 6348483237 + ], + "geometry": [ + { "lat": 40.7197195, "lon": -73.9301103 }, + { "lat": 40.7199090, "lon": -73.9293428 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 678023121, + "bounds": { + "minlat": 40.7202926, + "minlon": -73.9314815, + "maxlat": 40.7204613, + "maxlon": -73.9299472 + }, + "nodes": [ + 6348483243, + 6348483239, + 6348483240, + 6348483241, + 6348483242 + ], + "geometry": [ + { "lat": 40.7204613, "lon": -73.9314815 }, + { "lat": 40.7202926, "lon": -73.9304434 }, + { "lat": 40.7202946, "lon": -73.9302825 }, + { "lat": 40.7203109, "lon": -73.9301538 }, + { "lat": 40.7203556, "lon": -73.9299472 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 678023122, + "bounds": { + "minlat": 40.7202133, + "minlon": -73.9326000, + "maxlat": 40.7204633, + "maxlon": -73.9314815 + }, + "nodes": [ + 6348483243, + 6348483244, + 6348483245, + 6348483246 + ], + "geometry": [ + { "lat": 40.7204613, "lon": -73.9314815 }, + { "lat": 40.7204633, "lon": -73.9315807 }, + { "lat": 40.7204552, "lon": -73.9316504 }, + { "lat": 40.7202133, "lon": -73.9326000 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 678023123, + "bounds": { + "minlat": 40.7191266, + "minlon": -73.9314815, + "maxlat": 40.7204613, + "maxlon": -73.9308400 + }, + "nodes": [ + 6348483243, + 7707097681, + 6348483248 + ], + "geometry": [ + { "lat": 40.7204613, "lon": -73.9314815 }, + { "lat": 40.7196751, "lon": -73.9311037 }, + { "lat": 40.7191266, "lon": -73.9308400 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 678180463, + "bounds": { + "minlat": 40.7436281, + "minlon": -73.9143579, + "maxlat": 40.7437874, + "maxlon": -73.9142863 + }, + "nodes": [ + 6349964622, + 10762233958, + 6349964623 + ], + "geometry": [ + { "lat": 40.7437874, "lon": -73.9143579 }, + { "lat": 40.7436956, "lon": -73.9143168 }, + { "lat": 40.7436281, "lon": -73.9142863 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 678234027, + "bounds": { + "minlat": 40.7500017, + "minlon": -73.9845198, + "maxlat": 40.7500835, + "maxlon": -73.9844604 + }, + "nodes": [ + 6350462397, + 9856196743, + 2709702236 + ], + "geometry": [ + { "lat": 40.7500835, "lon": -73.9844604 }, + { "lat": 40.7500191, "lon": -73.9845072 }, + { "lat": 40.7500017, "lon": -73.9845198 } + ], + "tags": { + "highway": "service", + "maxheight": "7'0\"", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 678234030, + "bounds": { + "minlat": 40.7494537, + "minlon": -73.9849092, + "maxlat": 40.7495325, + "maxlon": -73.9848594 + }, + "nodes": [ + 6350462399, + 10261412983, + 2709702549 + ], + "geometry": [ + { "lat": 40.7494537, "lon": -73.9849092 }, + { "lat": 40.7495160, "lon": -73.9848699 }, + { "lat": 40.7495325, "lon": -73.9848594 } + ], + "tags": { + "highway": "service", + "maxheight": "7'0\"", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 678484215, + "bounds": { + "minlat": 40.7761934, + "minlon": -73.9434320, + "maxlat": 40.7764564, + "maxlon": -73.9429320 + }, + "nodes": [ + 5163273880, + 6352970506, + 6352970545, + 7924099685, + 6352970539, + 6352970537, + 6352970520, + 6352970552, + 6352970548, + 7135169186, + 6352970525, + 5163273880, + 6352970517 + ], + "geometry": [ + { "lat": 40.7762543, "lon": -73.9432463 }, + { "lat": 40.7763244, "lon": -73.9432571 }, + { "lat": 40.7763795, "lon": -73.9432161 }, + { "lat": 40.7764042, "lon": -73.9431708 }, + { "lat": 40.7764244, "lon": -73.9431228 }, + { "lat": 40.7764564, "lon": -73.9430423 }, + { "lat": 40.7764513, "lon": -73.9429743 }, + { "lat": 40.7764269, "lon": -73.9429427 }, + { "lat": 40.7764019, "lon": -73.9429320 }, + { "lat": 40.7763628, "lon": -73.9429428 }, + { "lat": 40.7763423, "lon": -73.9429607 }, + { "lat": 40.7762543, "lon": -73.9432463 }, + { "lat": 40.7761934, "lon": -73.9434320 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 679049271, + "bounds": { + "minlat": 40.8010236, + "minlon": -74.0100493, + "maxlat": 40.8017933, + "maxlon": -74.0095968 + }, + "nodes": [ + 6358322906, + 7474656107, + 6358322907, + 6358322908 + ], + "geometry": [ + { "lat": 40.8010236, "lon": -74.0100493 }, + { "lat": 40.8010717, "lon": -74.0100109 }, + { "lat": 40.8015912, "lon": -74.0095968 }, + { "lat": 40.8017933, "lon": -74.0100283 } + ], + "tags": { + "highway": "track" + } +}, +{ + "type": "way", + "id": 679423455, + "bounds": { + "minlat": 40.8758508, + "minlon": -73.9537339, + "maxlat": 40.8770591, + "maxlon": -73.9521086 + }, + "nodes": [ + 6362121924, + 6362121925, + 10752273143, + 10752273142, + 6362121926, + 10752273140, + 6362121927, + 10752273141, + 10752273135, + 10752273136, + 6362121928, + 10752273137, + 10752273138, + 6362121929, + 10752273139, + 6362121930, + 6362121931, + 10752273144, + 6362121932, + 6362121933 + ], + "geometry": [ + { "lat": 40.8763621, "lon": -73.9521086 }, + { "lat": 40.8763852, "lon": -73.9523508 }, + { "lat": 40.8763906, "lon": -73.9523837 }, + { "lat": 40.8764047, "lon": -73.9524283 }, + { "lat": 40.8764309, "lon": -73.9524845 }, + { "lat": 40.8770470, "lon": -73.9535825 }, + { "lat": 40.8770591, "lon": -73.9536047 }, + { "lat": 40.8770591, "lon": -73.9536326 }, + { "lat": 40.8770503, "lon": -73.9536611 }, + { "lat": 40.8770312, "lon": -73.9536755 }, + { "lat": 40.8766841, "lon": -73.9537338 }, + { "lat": 40.8766482, "lon": -73.9537339 }, + { "lat": 40.8765999, "lon": -73.9537250 }, + { "lat": 40.8765612, "lon": -73.9537044 }, + { "lat": 40.8765333, "lon": -73.9536730 }, + { "lat": 40.8759983, "lon": -73.9527407 }, + { "lat": 40.8759392, "lon": -73.9526246 }, + { "lat": 40.8759175, "lon": -73.9525664 }, + { "lat": 40.8758973, "lon": -73.9524927 }, + { "lat": 40.8758508, "lon": -73.9522399 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 679616478, + "bounds": { + "minlat": 40.8362759, + "minlon": -73.9395605, + "maxlat": 40.8365752, + "maxlon": -73.9393372 + }, + "nodes": [ + 6363741213, + 9569882301, + 42442684 + ], + "geometry": [ + { "lat": 40.8362759, "lon": -73.9395605 }, + { "lat": 40.8365098, "lon": -73.9393860 }, + { "lat": 40.8365752, "lon": -73.9393372 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 680348876, + "bounds": { + "minlat": 40.8224059, + "minlon": -74.0059210, + "maxlat": 40.8230456, + "maxlon": -74.0050804 + }, + "nodes": [ + 8618962309, + 8618962310, + 8618962311, + 6370327538, + 6370327539, + 6370327540, + 6370327541, + 6370327542, + 6370327543, + 6370327544, + 8618962307, + 8618962308, + 6370327545, + 6370327546, + 6370327547, + 6370327548, + 6370327549, + 6370327550, + 6370327551, + 8618962309 + ], + "geometry": [ + { "lat": 40.8225010, "lon": -74.0058060 }, + { "lat": 40.8225842, "lon": -74.0058825 }, + { "lat": 40.8226813, "lon": -74.0059210 }, + { "lat": 40.8227826, "lon": -74.0059177 }, + { "lat": 40.8228865, "lon": -74.0058666 }, + { "lat": 40.8229710, "lon": -74.0057720 }, + { "lat": 40.8230263, "lon": -74.0056450 }, + { "lat": 40.8230456, "lon": -74.0055008 }, + { "lat": 40.8230267, "lon": -74.0053564 }, + { "lat": 40.8229719, "lon": -74.0052292 }, + { "lat": 40.8228876, "lon": -74.0051341 }, + { "lat": 40.8227838, "lon": -74.0050824 }, + { "lat": 40.8226730, "lon": -74.0050804 }, + { "lat": 40.8225767, "lon": -74.0051222 }, + { "lat": 40.8224951, "lon": -74.0052016 }, + { "lat": 40.8224362, "lon": -74.0053106 }, + { "lat": 40.8224059, "lon": -74.0054384 }, + { "lat": 40.8224072, "lon": -74.0055723 }, + { "lat": 40.8224400, "lon": -74.0056990 }, + { "lat": 40.8225010, "lon": -74.0058060 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 680348877, + "bounds": { + "minlat": 40.8200416, + "minlon": -74.0051724, + "maxlat": 40.8226730, + "maxlon": -74.0042147 + }, + "nodes": [ + 6370327545, + 6370327552, + 6370327553, + 6370327554, + 6370327555, + 6370327556, + 8618978635, + 6370327557, + 6370327558, + 6370327562, + 6370327559, + 6370327560, + 13525551075, + 6370327561 + ], + "geometry": [ + { "lat": 40.8226730, "lon": -74.0050804 }, + { "lat": 40.8223393, "lon": -74.0042147 }, + { "lat": 40.8218650, "lon": -74.0045555 }, + { "lat": 40.8215525, "lon": -74.0047197 }, + { "lat": 40.8212682, "lon": -74.0049038 }, + { "lat": 40.8208861, "lon": -74.0051052 }, + { "lat": 40.8207454, "lon": -74.0051467 }, + { "lat": 40.8206583, "lon": -74.0051724 }, + { "lat": 40.8204287, "lon": -74.0051152 }, + { "lat": 40.8202200, "lon": -74.0050677 }, + { "lat": 40.8201444, "lon": -74.0050505 }, + { "lat": 40.8200917, "lon": -74.0050654 }, + { "lat": 40.8200839, "lon": -74.0050789 }, + { "lat": 40.8200416, "lon": -74.0051528 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 680432292, + "bounds": { + "minlat": 40.7442888, + "minlon": -73.9806064, + "maxlat": 40.7443956, + "maxlon": -73.9805285 + }, + "nodes": [ + 6370527986, + 8133342836, + 6371048752 + ], + "geometry": [ + { "lat": 40.7443956, "lon": -73.9805285 }, + { "lat": 40.7443495, "lon": -73.9805623 }, + { "lat": 40.7442888, "lon": -73.9806064 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 680797371, + "bounds": { + "minlat": 40.8785560, + "minlon": -73.9814248, + "maxlat": 40.8794895, + "maxlon": -73.9802258 + }, + "nodes": [ + 103100561, + 12021734802, + 6374848005, + 103098025 + ], + "geometry": [ + { "lat": 40.8794895, "lon": -73.9802258 }, + { "lat": 40.8793858, "lon": -73.9804047 }, + { "lat": 40.8792748, "lon": -73.9805371 }, + { "lat": 40.8785560, "lon": -73.9814248 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxheight": "13'7\"", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "oneway": "yes", + "ref": "NJ 93;CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 680797372, + "bounds": { + "minlat": 40.8781269, + "minlon": -73.9818795, + "maxlat": 40.8786699, + "maxlon": -73.9811152 + }, + "nodes": [ + 7701684513, + 6374848004, + 6374848002, + 8835843091 + ], + "geometry": [ + { "lat": 40.8781269, "lon": -73.9818795 }, + { "lat": 40.8782221, "lon": -73.9817048 }, + { "lat": 40.8783997, "lon": -73.9814573 }, + { "lat": 40.8786699, "lon": -73.9811152 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "1", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "oneway": "yes", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 680797373, + "bounds": { + "minlat": 40.8780260, + "minlon": -73.9819946, + "maxlat": 40.8781269, + "maxlon": -73.9818795 + }, + "nodes": [ + 7701684513, + 6889705666 + ], + "geometry": [ + { "lat": 40.8781269, "lon": -73.9818795 }, + { "lat": 40.8780260, "lon": -73.9819946 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 680826583, + "bounds": { + "minlat": 40.8611546, + "minlon": -73.9935546, + "maxlat": 40.8628261, + "maxlon": -73.9909067 + }, + "nodes": [ + 103296576, + 10261740698, + 8076425407, + 103304152, + 103141333, + 103287708, + 103304171 + ], + "geometry": [ + { "lat": 40.8628261, "lon": -73.9935546 }, + { "lat": 40.8627892, "lon": -73.9934878 }, + { "lat": 40.8627501, "lon": -73.9934259 }, + { "lat": 40.8625070, "lon": -73.9930416 }, + { "lat": 40.8617589, "lon": -73.9918589 }, + { "lat": 40.8612451, "lon": -73.9909881 }, + { "lat": 40.8611546, "lon": -73.9909067 } + ], + "tags": { + "highway": "residential", + "name": "Prospect Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 680826584, + "bounds": { + "minlat": 40.8619590, + "minlon": -73.9943780, + "maxlat": 40.8628261, + "maxlon": -73.9935546 + }, + "nodes": [ + 103296576, + 10268664683, + 103296578, + 103146282 + ], + "geometry": [ + { "lat": 40.8628261, "lon": -73.9935546 }, + { "lat": 40.8627927, "lon": -73.9935857 }, + { "lat": 40.8622600, "lon": -73.9940810 }, + { "lat": 40.8619590, "lon": -73.9943780 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "sidewalk": "right", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 680889022, + "bounds": { + "minlat": 40.8712160, + "minlon": -73.9141154, + "maxlat": 40.8717992, + "maxlon": -73.9134592 + }, + "nodes": [ + 1769485254, + 9561126012, + 1544809885 + ], + "geometry": [ + { "lat": 40.8717992, "lon": -73.9134592 }, + { "lat": 40.8712817, "lon": -73.9140414 }, + { "lat": 40.8712160, "lon": -73.9141154 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk": "separate", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 680889023, + "bounds": { + "minlat": 40.8711588, + "minlon": -73.9139795, + "maxlat": 40.8717140, + "maxlon": -73.9132764 + }, + "nodes": [ + 42429704, + 9561126010, + 42429251, + 42429255 + ], + "geometry": [ + { "lat": 40.8711588, "lon": -73.9139795 }, + { "lat": 40.8712195, "lon": -73.9138997 }, + { "lat": 40.8714153, "lon": -73.9136427 }, + { "lat": 40.8717140, "lon": -73.9132764 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 680889661, + "bounds": { + "minlat": 40.8717992, + "minlon": -73.9134592, + "maxlat": 40.8723563, + "maxlon": -73.9128142 + }, + "nodes": [ + 1544809872, + 1769485254 + ], + "geometry": [ + { "lat": 40.8723563, "lon": -73.9128142 }, + { "lat": 40.8717992, "lon": -73.9134592 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk": "separate", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 680889662, + "bounds": { + "minlat": 40.8722414, + "minlon": -73.9128142, + "maxlat": 40.8723563, + "maxlon": -73.9126036 + }, + "nodes": [ + 42427507, + 1544809872 + ], + "geometry": [ + { "lat": 40.8722414, "lon": -73.9126036 }, + { "lat": 40.8723563, "lon": -73.9128142 } + ], + "tags": { + "highway": "residential", + "name": "West 220th Street", + "name_1": "West 220 Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "220th", + "tiger:name_base_1": "220", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 680889663, + "bounds": { + "minlat": 40.8717140, + "minlon": -73.9132764, + "maxlat": 40.8722414, + "maxlon": -73.9126036 + }, + "nodes": [ + 42429255, + 8704209039, + 9561125963, + 42427507 + ], + "geometry": [ + { "lat": 40.8717140, "lon": -73.9132764 }, + { "lat": 40.8718793, "lon": -73.9130655 }, + { "lat": 40.8721850, "lon": -73.9126756 }, + { "lat": 40.8722414, "lon": -73.9126036 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 681010188, + "bounds": { + "minlat": 40.7357182, + "minlon": -73.9230405, + "maxlat": 40.7377956, + "maxlon": -73.9226223 + }, + "nodes": [ + 42900636, + 10084797178, + 9692756750, + 10743722356, + 10743722359, + 8316786977, + 10743722357, + 9228746104, + 10743722362, + 42838365, + 9692756751, + 9194902524 + ], + "geometry": [ + { "lat": 40.7377956, "lon": -73.9226223 }, + { "lat": 40.7377176, "lon": -73.9226379 }, + { "lat": 40.7376839, "lon": -73.9226452 }, + { "lat": 40.7374785, "lon": -73.9226867 }, + { "lat": 40.7373414, "lon": -73.9227144 }, + { "lat": 40.7372400, "lon": -73.9227349 }, + { "lat": 40.7369803, "lon": -73.9227870 }, + { "lat": 40.7368802, "lon": -73.9228071 }, + { "lat": 40.7366096, "lon": -73.9228620 }, + { "lat": 40.7365192, "lon": -73.9228804 }, + { "lat": 40.7357559, "lon": -73.9230315 }, + { "lat": 40.7357182, "lon": -73.9230405 } + ], + "tags": { + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 681010189, + "bounds": { + "minlat": 40.7371563, + "minlon": -73.9179776, + "maxlat": 40.7372597, + "maxlon": -73.9170885 + }, + "nodes": [ + 42859976, + 10084797206, + 7984116004, + 8316786981, + 10084797211, + 42807700 + ], + "geometry": [ + { "lat": 40.7372597, "lon": -73.9179776 }, + { "lat": 40.7372486, "lon": -73.9178855 }, + { "lat": 40.7372071, "lon": -73.9175198 }, + { "lat": 40.7371738, "lon": -73.9172313 }, + { "lat": 40.7371656, "lon": -73.9171668 }, + { "lat": 40.7371563, "lon": -73.9170885 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "50th Avenue" + } +}, +{ + "type": "way", + "id": 681010190, + "bounds": { + "minlat": 40.7328146, + "minlon": -73.9188740, + "maxlat": 40.7351666, + "maxlon": -73.9183941 + }, + "nodes": [ + 42825232, + 10087484095, + 7984105266, + 7984105258, + 42859982 + ], + "geometry": [ + { "lat": 40.7351666, "lon": -73.9183941 }, + { "lat": 40.7350962, "lon": -73.9184096 }, + { "lat": 40.7341829, "lon": -73.9185929 }, + { "lat": 40.7340705, "lon": -73.9186159 }, + { "lat": 40.7328146, "lon": -73.9188740 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 681042530, + "bounds": { + "minlat": 40.7661220, + "minlon": -73.9973446, + "maxlat": 40.7662059, + "maxlon": -73.9971388 + }, + "nodes": [ + 62915536, + 11017187935 + ], + "geometry": [ + { "lat": 40.7661220, "lon": -73.9971388 }, + { "lat": 40.7662059, "lon": -73.9973446 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "West 49th Street", + "name:ru": "Западная 49-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 681042531, + "bounds": { + "minlat": 40.7661220, + "minlon": -73.9971388, + "maxlat": 40.7667473, + "maxlon": -73.9966812 + }, + "nodes": [ + 62915536, + 62915521, + 247122969, + 11017186437 + ], + "geometry": [ + { "lat": 40.7661220, "lon": -73.9971388 }, + { "lat": 40.7666412, "lon": -73.9967588 }, + { "lat": 40.7666687, "lon": -73.9967387 }, + { "lat": 40.7667473, "lon": -73.9966812 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 681044202, + "bounds": { + "minlat": 40.7589345, + "minlon": -73.9522005, + "maxlat": 40.7591917, + "maxlon": -73.9519572 + }, + "nodes": [ + 2141121124, + 9913669024, + 42448081 + ], + "geometry": [ + { "lat": 40.7591917, "lon": -73.9519572 }, + { "lat": 40.7589628, "lon": -73.9521742 }, + { "lat": 40.7589345, "lon": -73.9522005 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "name_1": "East Road", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 681044203, + "bounds": { + "minlat": 40.7585363, + "minlon": -73.9525810, + "maxlat": 40.7589345, + "maxlon": -73.9522005 + }, + "nodes": [ + 42448081, + 9913669023, + 12825404904, + 10891946378, + 1241864793 + ], + "geometry": [ + { "lat": 40.7589345, "lon": -73.9522005 }, + { "lat": 40.7589081, "lon": -73.9522263 }, + { "lat": 40.7586091, "lon": -73.9525117 }, + { "lat": 40.7585989, "lon": -73.9525214 }, + { "lat": 40.7585363, "lon": -73.9525810 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "name_1": "East Road", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 681044204, + "bounds": { + "minlat": 40.7581060, + "minlon": -73.9530579, + "maxlat": 40.7585363, + "maxlon": -73.9525810 + }, + "nodes": [ + 1241864793, + 9913669021, + 12825397392, + 9189040198, + 13040990367, + 593428028, + 2300353461, + 3785703020, + 6647688988 + ], + "geometry": [ + { "lat": 40.7585363, "lon": -73.9525810 }, + { "lat": 40.7585156, "lon": -73.9526019 }, + { "lat": 40.7584944, "lon": -73.9526221 }, + { "lat": 40.7583466, "lon": -73.9527630 }, + { "lat": 40.7583289, "lon": -73.9527815 }, + { "lat": 40.7582945, "lon": -73.9528175 }, + { "lat": 40.7582455, "lon": -73.9528732 }, + { "lat": 40.7582036, "lon": -73.9529246 }, + { "lat": 40.7581060, "lon": -73.9530579 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "name_1": "East Road", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Main", + "tiger:name_base_1": "East", + "tiger:name_type": "St", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 681044484, + "bounds": { + "minlat": 40.7610278, + "minlon": -73.9506916, + "maxlat": 40.7615188, + "maxlon": -73.9499971 + }, + "nodes": [ + 5487049925, + 9913669031, + 8265114615, + 9913669032, + 3785702996 + ], + "geometry": [ + { "lat": 40.7610278, "lon": -73.9506916 }, + { "lat": 40.7611627, "lon": -73.9505039 }, + { "lat": 40.7611827, "lon": -73.9504771 }, + { "lat": 40.7611996, "lon": -73.9504540 }, + { "lat": 40.7615188, "lon": -73.9499971 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 681044485, + "bounds": { + "minlat": 40.7604557, + "minlon": -73.9514600, + "maxlat": 40.7609342, + "maxlon": -73.9508241 + }, + "nodes": [ + 3785702998, + 9189040195, + 9913669030, + 9913669029, + 5692100568 + ], + "geometry": [ + { "lat": 40.7604557, "lon": -73.9514600 }, + { "lat": 40.7604890, "lon": -73.9514426 }, + { "lat": 40.7606260, "lon": -73.9512608 }, + { "lat": 40.7607257, "lon": -73.9511242 }, + { "lat": 40.7609342, "lon": -73.9508241 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 681044845, + "bounds": { + "minlat": 40.7623843, + "minlon": -73.9494731, + "maxlat": 40.7627542, + "maxlon": -73.9492715 + }, + "nodes": [ + 42426915, + 9913669036, + 9913669037, + 3785702992 + ], + "geometry": [ + { "lat": 40.7623843, "lon": -73.9494731 }, + { "lat": 40.7624046, "lon": -73.9494625 }, + { "lat": 40.7627293, "lon": -73.9492851 }, + { "lat": 40.7627542, "lon": -73.9492715 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 681044846, + "bounds": { + "minlat": 40.7618105, + "minlon": -73.9497680, + "maxlat": 40.7623843, + "maxlon": -73.9494731 + }, + "nodes": [ + 9915145354, + 9913669035, + 42426915 + ], + "geometry": [ + { "lat": 40.7618105, "lon": -73.9497680 }, + { "lat": 40.7623563, "lon": -73.9494877 }, + { "lat": 40.7623843, "lon": -73.9494731 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 681064391, + "bounds": { + "minlat": 40.7251474, + "minlon": -73.9958807, + "maxlat": 40.7251622, + "maxlon": -73.9958189 + }, + "nodes": [ + 1918039880, + 4202908170 + ], + "geometry": [ + { "lat": 40.7251622, "lon": -73.9958807 }, + { "lat": 40.7251474, "lon": -73.9958189 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 681162229, + "bounds": { + "minlat": 40.8223815, + "minlon": -73.9293301, + "maxlat": 40.8232521, + "maxlon": -73.9292662 + }, + "nodes": [ + 6378691544, + 6378691539 + ], + "geometry": [ + { "lat": 40.8223815, "lon": -73.9292662 }, + { "lat": 40.8232521, "lon": -73.9293301 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 681162231, + "bounds": { + "minlat": 40.8222657, + "minlon": -73.9301948, + "maxlat": 40.8233366, + "maxlon": -73.9300945 + }, + "nodes": [ + 6378691546, + 6378691540 + ], + "geometry": [ + { "lat": 40.8222657, "lon": -73.9300945 }, + { "lat": 40.8233366, "lon": -73.9301948 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 681162232, + "bounds": { + "minlat": 40.8233128, + "minlon": -73.9296855, + "maxlat": 40.8233739, + "maxlon": -73.9294345 + }, + "nodes": [ + 6378691543, + 6378691542, + 11158545858 + ], + "geometry": [ + { "lat": 40.8233128, "lon": -73.9294345 }, + { "lat": 40.8233739, "lon": -73.9294508 }, + { "lat": 40.8233621, "lon": -73.9296855 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 681162234, + "bounds": { + "minlat": 40.8222250, + "minlon": -73.9309022, + "maxlat": 40.8222858, + "maxlon": -73.9296811 + }, + "nodes": [ + 595786272, + 6378691546, + 11149727197 + ], + "geometry": [ + { "lat": 40.8222250, "lon": -73.9309022 }, + { "lat": 40.8222657, "lon": -73.9300945 }, + { "lat": 40.8222858, "lon": -73.9296811 } + ], + "tags": { + "highway": "service", + "maxheight": "7'6\"", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 681300035, + "bounds": { + "minlat": 40.8151602, + "minlon": -73.9177556, + "maxlat": 40.8156990, + "maxlon": -73.9167710 + }, + "nodes": [ + 42746065, + 6415815492, + 6415815541, + 42746069 + ], + "geometry": [ + { "lat": 40.8151602, "lon": -73.9177556 }, + { "lat": 40.8152093, "lon": -73.9176530 }, + { "lat": 40.8156303, "lon": -73.9168995 }, + { "lat": 40.8156990, "lon": -73.9167710 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Bergen Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bergen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 681300036, + "bounds": { + "minlat": 40.8160470, + "minlon": -73.9141940, + "maxlat": 40.8162664, + "maxlon": -73.9119420 + }, + "nodes": [ + 42760418, + 13041711460, + 7557464204, + 42760430 + ], + "geometry": [ + { "lat": 40.8162664, "lon": -73.9141940 }, + { "lat": 40.8162524, "lon": -73.9140494 }, + { "lat": 40.8161175, "lon": -73.9126597 }, + { "lat": 40.8160470, "lon": -73.9119420 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxheight": "10'6\"", + "name": "Westchester Avenue", + "name:etymology:wikidata": "Q17091379", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Westchester", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10459", + "tiger:zip_right": "10459", + "wikidata": "Q20979444", + "wikipedia": "en:Westchester Avenue" + } +}, +{ + "type": "way", + "id": 681305531, + "bounds": { + "minlat": 40.8409105, + "minlon": -73.9823876, + "maxlat": 40.8419501, + "maxlon": -73.9804410 + }, + "nodes": [ + 6380115421, + 6380115422, + 6380115423, + 6380115424 + ], + "geometry": [ + { "lat": 40.8414797, "lon": -73.9804410 }, + { "lat": 40.8419402, "lon": -73.9812710 }, + { "lat": 40.8419501, "lon": -73.9813121 }, + { "lat": 40.8409105, "lon": -73.9823876 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 681681780, + "bounds": { + "minlat": 40.8134711, + "minlon": -73.9441122, + "maxlat": 40.8146014, + "maxlon": -73.9414254 + }, + "nodes": [ + 2141026494, + 8758345324, + 10170797794, + 3099327940 + ], + "geometry": [ + { "lat": 40.8146014, "lon": -73.9441122 }, + { "lat": 40.8145522, "lon": -73.9439994 }, + { "lat": 40.8135265, "lon": -73.9415573 }, + { "lat": 40.8134711, "lon": -73.9414254 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 134th Street", + "oneway": "yes", + "parking:lane:both": "parallel" + } +}, +{ + "type": "way", + "id": 681681782, + "bounds": { + "minlat": 40.8146014, + "minlon": -73.9442672, + "maxlat": 40.8146691, + "maxlon": -73.9441122 + }, + "nodes": [ + 42436003, + 2141026494 + ], + "geometry": [ + { "lat": 40.8146691, "lon": -73.9442672 }, + { "lat": 40.8146014, "lon": -73.9441122 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 134th Street", + "oneway": "yes", + "parking:lane:both": "parallel" + } +}, +{ + "type": "way", + "id": 681758658, + "bounds": { + "minlat": 40.7262390, + "minlon": -73.9379420, + "maxlat": 40.7264162, + "maxlon": -73.9360815 + }, + "nodes": [ + 42466853, + 9929587931, + 5482263268, + 9929587936, + 42479405, + 9929587937, + 8097306272, + 13146442836, + 42479406 + ], + "geometry": [ + { "lat": 40.7262390, "lon": -73.9379420 }, + { "lat": 40.7262459, "lon": -73.9378694 }, + { "lat": 40.7262761, "lon": -73.9375491 }, + { "lat": 40.7263185, "lon": -73.9370998 }, + { "lat": 40.7263270, "lon": -73.9370100 }, + { "lat": 40.7263337, "lon": -73.9369455 }, + { "lat": 40.7264099, "lon": -73.9362100 }, + { "lat": 40.7264123, "lon": -73.9361617 }, + { "lat": 40.7264162, "lon": -73.9360815 } + ], + "tags": { + "highway": "residential", + "name": "Nassau Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Nassau", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 681758659, + "bounds": { + "minlat": 40.7242061, + "minlon": -73.9379420, + "maxlat": 40.7262390, + "maxlon": -73.9376210 + }, + "nodes": [ + 42466853, + 9789356982, + 9194920856, + 9789356966, + 42464200 + ], + "geometry": [ + { "lat": 40.7262390, "lon": -73.9379420 }, + { "lat": 40.7261786, "lon": -73.9379326 }, + { "lat": 40.7243291, "lon": -73.9376433 }, + { "lat": 40.7242970, "lon": -73.9376359 }, + { "lat": 40.7242061, "lon": -73.9376210 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Apollo Street", + "note": "confirm side of street for bike lane", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 681758660, + "bounds": { + "minlat": 40.7236021, + "minlon": -73.9389330, + "maxlat": 40.7241698, + "maxlon": -73.9377106 + }, + "nodes": [ + 9929558957, + 12162675478, + 11184578271, + 12162675479, + 12162675480, + 42476675, + 9194920860, + 12162675481, + 9194920861, + 42476673 + ], + "geometry": [ + { "lat": 40.7241698, "lon": -73.9377106 }, + { "lat": 40.7241103, "lon": -73.9378625 }, + { "lat": 40.7240538, "lon": -73.9379983 }, + { "lat": 40.7239990, "lon": -73.9381239 }, + { "lat": 40.7239266, "lon": -73.9382906 }, + { "lat": 40.7238543, "lon": -73.9384458 }, + { "lat": 40.7238127, "lon": -73.9385361 }, + { "lat": 40.7237646, "lon": -73.9386312 }, + { "lat": 40.7237136, "lon": -73.9387236 }, + { "lat": 40.7236021, "lon": -73.9389330 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 681758661, + "bounds": { + "minlat": 40.7242061, + "minlon": -73.9376210, + "maxlat": 40.7245223, + "maxlon": -73.9371013 + }, + "nodes": [ + 5943344514, + 12162675476, + 6384561660, + 6384561659, + 9194920854, + 12162675477, + 6384561658, + 9929558955, + 42464200 + ], + "geometry": [ + { "lat": 40.7245223, "lon": -73.9371013 }, + { "lat": 40.7244825, "lon": -73.9371502 }, + { "lat": 40.7244450, "lon": -73.9371977 }, + { "lat": 40.7244022, "lon": -73.9372593 }, + { "lat": 40.7243590, "lon": -73.9373274 }, + { "lat": 40.7243288, "lon": -73.9373824 }, + { "lat": 40.7242975, "lon": -73.9374508 }, + { "lat": 40.7242688, "lon": -73.9375090 }, + { "lat": 40.7242061, "lon": -73.9376210 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 681758663, + "bounds": { + "minlat": 40.7222806, + "minlon": -73.9410898, + "maxlat": 40.7228790, + "maxlon": -73.9402304 + }, + "nodes": [ + 42476663, + 12162675487, + 12162675488, + 6219006695, + 12162675489, + 12162675490, + 11155242432, + 9937834471, + 42476656 + ], + "geometry": [ + { "lat": 40.7228790, "lon": -73.9402304 }, + { "lat": 40.7228147, "lon": -73.9403343 }, + { "lat": 40.7227374, "lon": -73.9404568 }, + { "lat": 40.7226575, "lon": -73.9405761 }, + { "lat": 40.7226007, "lon": -73.9406586 }, + { "lat": 40.7225164, "lon": -73.9407726 }, + { "lat": 40.7224405, "lon": -73.9408735 }, + { "lat": 40.7223857, "lon": -73.9409459 }, + { "lat": 40.7222806, "lon": -73.9410898 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 682278650, + "bounds": { + "minlat": 40.7526648, + "minlon": -74.0059515, + "maxlat": 40.7533707, + "maxlon": -74.0042686 + }, + "nodes": [ + 42427824, + 8261122843, + 6856689988 + ], + "geometry": [ + { "lat": 40.7526648, "lon": -74.0042686 }, + { "lat": 40.7527205, "lon": -74.0044041 }, + { "lat": 40.7533707, "lon": -74.0059515 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 682359027, + "bounds": { + "minlat": 40.7672140, + "minlon": -73.9966101, + "maxlat": 40.7674596, + "maxlon": -73.9964312 + }, + "nodes": [ + 11017186436, + 4215913811 + ], + "geometry": [ + { "lat": 40.7674596, "lon": -73.9964312 }, + { "lat": 40.7672140, "lon": -73.9966101 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 682359028, + "bounds": { + "minlat": 40.7673726, + "minlon": -73.9964312, + "maxlat": 40.7674596, + "maxlon": -73.9962236 + }, + "nodes": [ + 12153915856, + 11017186436 + ], + "geometry": [ + { "lat": 40.7673726, "lon": -73.9962236 }, + { "lat": 40.7674596, "lon": -73.9964312 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 682359029, + "bounds": { + "minlat": 40.7667473, + "minlon": -73.9966812, + "maxlat": 40.7671920, + "maxlon": -73.9963548 + }, + "nodes": [ + 11017186437, + 7588050921 + ], + "geometry": [ + { "lat": 40.7667473, "lon": -73.9966812 }, + { "lat": 40.7671920, "lon": -73.9963548 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 682359868, + "bounds": { + "minlat": 40.7487771, + "minlon": -73.9699706, + "maxlat": 40.7488839, + "maxlon": -73.9697356 + }, + "nodes": [ + 42455929, + 248708582 + ], + "geometry": [ + { "lat": 40.7488839, "lon": -73.9699706 }, + { "lat": 40.7487771, "lon": -73.9697356 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 682360554, + "bounds": { + "minlat": 40.7573424, + "minlon": -73.9860116, + "maxlat": 40.7579634, + "maxlon": -73.9855335 + }, + "nodes": [ + 42428297, + 6597464486, + 3974095829, + 42439984 + ], + "geometry": [ + { "lat": 40.7579634, "lon": -73.9855335 }, + { "lat": 40.7578917, "lon": -73.9855888 }, + { "lat": 40.7574192, "lon": -73.9859523 }, + { "lat": 40.7573424, "lon": -73.9860116 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "designated", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 682389282, + "bounds": { + "minlat": 40.7529918, + "minlon": -73.9097693, + "maxlat": 40.7530043, + "maxlon": -73.9096500 + }, + "nodes": [ + 7762260246, + 8374786609 + ], + "geometry": [ + { "lat": 40.7529918, "lon": -73.9097693 }, + { "lat": 40.7530043, "lon": -73.9096500 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "flex_post", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 682391369, + "bounds": { + "minlat": 40.7315886, + "minlon": -73.9519711, + "maxlat": 40.7318590, + "maxlon": -73.9519247 + }, + "nodes": [ + 2987758874, + 8097159323, + 4203066842 + ], + "geometry": [ + { "lat": 40.7318590, "lon": -73.9519711 }, + { "lat": 40.7317988, "lon": -73.9519622 }, + { "lat": 40.7315886, "lon": -73.9519247 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post;jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 682398744, + "bounds": { + "minlat": 40.7228930, + "minlon": -73.9145285, + "maxlat": 40.7238542, + "maxlon": -73.9138630 + }, + "nodes": [ + 42855844, + 11406248235, + 9696553956, + 11055680675, + 42854200 + ], + "geometry": [ + { "lat": 40.7238542, "lon": -73.9145285 }, + { "lat": 40.7237768, "lon": -73.9144589 }, + { "lat": 40.7230174, "lon": -73.9139338 }, + { "lat": 40.7229837, "lon": -73.9139147 }, + { "lat": 40.7228930, "lon": -73.9138630 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Rust Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 682398745, + "bounds": { + "minlat": 40.7220717, + "minlon": -73.9165821, + "maxlat": 40.7228170, + "maxlon": -73.9141147 + }, + "nodes": [ + 42854190, + 5481972396, + 6877668382, + 2134455789, + 2134455793, + 2134455794, + 2134455796, + 8288388976 + ], + "geometry": [ + { "lat": 40.7220717, "lon": -73.9165821 }, + { "lat": 40.7222753, "lon": -73.9159079 }, + { "lat": 40.7226941, "lon": -73.9145215 }, + { "lat": 40.7227300, "lon": -73.9144027 }, + { "lat": 40.7227542, "lon": -73.9143225 }, + { "lat": 40.7227895, "lon": -73.9142057 }, + { "lat": 40.7228048, "lon": -73.9141552 }, + { "lat": 40.7228170, "lon": -73.9141147 } + ], + "tags": { + "highway": "tertiary", + "name": "Maspeth Avenue" + } +}, +{ + "type": "way", + "id": 682398746, + "bounds": { + "minlat": 40.7222843, + "minlon": -73.9138630, + "maxlat": 40.7228930, + "maxlon": -73.9134416 + }, + "nodes": [ + 42854200, + 11055680673, + 9696553945, + 42821476 + ], + "geometry": [ + { "lat": 40.7228930, "lon": -73.9138630 }, + { "lat": 40.7228215, "lon": -73.9138228 }, + { "lat": 40.7227655, "lon": -73.9137916 }, + { "lat": 40.7222843, "lon": -73.9134416 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Rust Street", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Rust", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11378" + } +}, +{ + "type": "way", + "id": 682470409, + "bounds": { + "minlat": 40.7107137, + "minlon": -73.9931038, + "maxlat": 40.7107364, + "maxlon": -73.9928508 + }, + "nodes": [ + 9652366149, + 11518199188, + 11519993997, + 11518199191, + 11518199190, + 11518199189, + 9652366147, + 12338894828 + ], + "geometry": [ + { "lat": 40.7107185, "lon": -73.9928508 }, + { "lat": 40.7107137, "lon": -73.9928739 }, + { "lat": 40.7107142, "lon": -73.9928963 }, + { "lat": 40.7107182, "lon": -73.9929240 }, + { "lat": 40.7107271, "lon": -73.9929526 }, + { "lat": 40.7107354, "lon": -73.9929904 }, + { "lat": 40.7107364, "lon": -73.9930293 }, + { "lat": 40.7107245, "lon": -73.9931038 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Cherry Street", + "name:ko": "체리 스트리트", + "name:ru": "Черри-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 682587577, + "bounds": { + "minlat": 40.8314202, + "minlon": -73.9806242, + "maxlat": 40.8376405, + "maxlon": -73.9792294 + }, + "nodes": [ + 103162119, + 103277052, + 103162163, + 103277054, + 103277057, + 103277059, + 103277061, + 103277062, + 103277063, + 103125383, + 103277064, + 103277065, + 103277069, + 103277071, + 103277073, + 103277075, + 103277077, + 103093110, + 103277079, + 103277081, + 103277085, + 103277087, + 103277089, + 103277091, + 103277093, + 103277096, + 103277098, + 13523728887, + 103174026 + ], + "geometry": [ + { "lat": 40.8314202, "lon": -73.9806242 }, + { "lat": 40.8314460, "lon": -73.9805960 }, + { "lat": 40.8315187, "lon": -73.9805158 }, + { "lat": 40.8315660, "lon": -73.9804650 }, + { "lat": 40.8319570, "lon": -73.9802150 }, + { "lat": 40.8321110, "lon": -73.9801320 }, + { "lat": 40.8322020, "lon": -73.9800910 }, + { "lat": 40.8325940, "lon": -73.9799700 }, + { "lat": 40.8327480, "lon": -73.9799000 }, + { "lat": 40.8329650, "lon": -73.9797840 }, + { "lat": 40.8330950, "lon": -73.9797190 }, + { "lat": 40.8331810, "lon": -73.9796950 }, + { "lat": 40.8338340, "lon": -73.9796360 }, + { "lat": 40.8340150, "lon": -73.9796040 }, + { "lat": 40.8344970, "lon": -73.9794840 }, + { "lat": 40.8346670, "lon": -73.9794570 }, + { "lat": 40.8347550, "lon": -73.9794500 }, + { "lat": 40.8351060, "lon": -73.9794550 }, + { "lat": 40.8355450, "lon": -73.9794650 }, + { "lat": 40.8358130, "lon": -73.9795220 }, + { "lat": 40.8362780, "lon": -73.9796230 }, + { "lat": 40.8364200, "lon": -73.9796370 }, + { "lat": 40.8365630, "lon": -73.9796340 }, + { "lat": 40.8367050, "lon": -73.9796140 }, + { "lat": 40.8368730, "lon": -73.9795700 }, + { "lat": 40.8370090, "lon": -73.9795150 }, + { "lat": 40.8371130, "lon": -73.9794620 }, + { "lat": 40.8376040, "lon": -73.9792455 }, + { "lat": 40.8376405, "lon": -73.9792294 } + ], + "tags": { + "highway": "residential", + "name": "Cumbermeade Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cumbermeade", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 682587578, + "bounds": { + "minlat": 40.8312000, + "minlon": -73.9806242, + "maxlat": 40.8314202, + "maxlon": -73.9797042 + }, + "nodes": [ + 103162119, + 103162122, + 103162124, + 7498899600, + 103162126, + 6895111580, + 9605143623 + ], + "geometry": [ + { "lat": 40.8314202, "lon": -73.9806242 }, + { "lat": 40.8313704, "lon": -73.9802533 }, + { "lat": 40.8313123, "lon": -73.9800267 }, + { "lat": 40.8313053, "lon": -73.9800039 }, + { "lat": 40.8312495, "lon": -73.9798228 }, + { "lat": 40.8312186, "lon": -73.9797480 }, + { "lat": 40.8312000, "lon": -73.9797042 } + ], + "tags": { + "Bergen_County_database_ref": "119", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000119", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "1", + "name": "Columbia Avenue", + "oneway": "yes", + "ref": "CR 119", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 682588079, + "bounds": { + "minlat": 40.7428008, + "minlon": -73.9177903, + "maxlat": 40.7429064, + "maxlon": -73.9169205 + }, + "nodes": [ + 2844853150, + 10743722573, + 4636542659, + 7667163195 + ], + "geometry": [ + { "lat": 40.7429064, "lon": -73.9177903 }, + { "lat": 40.7428985, "lon": -73.9177252 }, + { "lat": 40.7428363, "lon": -73.9171366 }, + { "lat": 40.7428008, "lon": -73.9169205 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 682822904, + "bounds": { + "minlat": 40.8245768, + "minlon": -73.9084715, + "maxlat": 40.8249857, + "maxlon": -73.9080284 + }, + "nodes": [ + 7557632337, + 8009144423 + ], + "geometry": [ + { "lat": 40.8245768, "lon": -73.9084715 }, + { "lat": 40.8249857, "lon": -73.9080284 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Boston Road", + "name:etymology:wikidata": "Q100", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Boston", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 682823093, + "bounds": { + "minlat": 40.8224477, + "minlon": -73.9098683, + "maxlat": 40.8225380, + "maxlon": -73.9094593 + }, + "nodes": [ + 42748196, + 13249096558, + 13249096567, + 42748198 + ], + "geometry": [ + { "lat": 40.8225380, "lon": -73.9098683 }, + { "lat": 40.8225026, "lon": -73.9097077 }, + { "lat": 40.8224660, "lon": -73.9095419 }, + { "lat": 40.8224477, "lon": -73.9094593 } + ], + "tags": { + "highway": "residential", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 682832895, + "bounds": { + "minlat": 40.7576743, + "minlon": -73.9536908, + "maxlat": 40.7577332, + "maxlon": -73.9535818 + }, + "nodes": [ + 1241820946, + 1241820956 + ], + "geometry": [ + { "lat": 40.7577332, "lon": -73.9535818 }, + { "lat": 40.7576743, "lon": -73.9536908 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "maxspeed": "15 mph", + "name": "Main Street", + "name_1": "East Road", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Main", + "tiger:name_base_1": "East", + "tiger:name_type": "St", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 682832896, + "bounds": { + "minlat": 40.7575114, + "minlon": -73.9537902, + "maxlat": 40.7576743, + "maxlon": -73.9536610 + }, + "nodes": [ + 1241820975, + 6395503413, + 6395503412, + 6395503411, + 6395503410, + 6395503409, + 6395503408, + 1241820956 + ], + "geometry": [ + { "lat": 40.7575114, "lon": -73.9537902 }, + { "lat": 40.7575163, "lon": -73.9537501 }, + { "lat": 40.7575304, "lon": -73.9537140 }, + { "lat": 40.7575522, "lon": -73.9536855 }, + { "lat": 40.7575797, "lon": -73.9536672 }, + { "lat": 40.7576101, "lon": -73.9536610 }, + { "lat": 40.7576404, "lon": -73.9536676 }, + { "lat": 40.7576743, "lon": -73.9536908 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "maxspeed": "15 mph", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 682850452, + "bounds": { + "minlat": 40.7291043, + "minlon": -74.0107774, + "maxlat": 40.7291289, + "maxlon": -74.0105601 + }, + "nodes": [ + 12162502083, + 12162542907 + ], + "geometry": [ + { "lat": 40.7291043, "lon": -74.0105601 }, + { "lat": 40.7291289, "lon": -74.0107774 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "tertiary", + "lane_markings": "no", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 683038598, + "bounds": { + "minlat": 40.7069628, + "minlon": -73.9567168, + "maxlat": 40.7071141, + "maxlon": -73.9547765 + }, + "nodes": [ + 42478025, + 9772859259, + 42478027, + 9772859261, + 9785910740, + 42478029 + ], + "geometry": [ + { "lat": 40.7071141, "lon": -73.9567168 }, + { "lat": 40.7070505, "lon": -73.9558026 }, + { "lat": 40.7070415, "lon": -73.9556990 }, + { "lat": 40.7070341, "lon": -73.9556143 }, + { "lat": 40.7069784, "lon": -73.9548400 }, + { "lat": 40.7069628, "lon": -73.9547765 } + ], + "tags": { + "highway": "tertiary", + "name": "Division Avenue", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Division", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 683038599, + "bounds": { + "minlat": 40.7071415, + "minlon": -73.9576788, + "maxlat": 40.7071895, + "maxlon": -73.9570820 + }, + "nodes": [ + 598033013, + 6338023994, + 42478023 + ], + "geometry": [ + { "lat": 40.7071895, "lon": -73.9576788 }, + { "lat": 40.7071486, "lon": -73.9571717 }, + { "lat": 40.7071415, "lon": -73.9570820 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Division Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Division", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 683041837, + "bounds": { + "minlat": 40.7132978, + "minlon": -73.9163384, + "maxlat": 40.7135349, + "maxlon": -73.9162122 + }, + "nodes": [ + 6397746196, + 9325520198, + 9744109071, + 4202978775 + ], + "geometry": [ + { "lat": 40.7135349, "lon": -73.9163384 }, + { "lat": 40.7134164, "lon": -73.9162753 }, + { "lat": 40.7133963, "lon": -73.9162646 }, + { "lat": 40.7132978, "lon": -73.9162122 } + ], + "tags": { + "highway": "residential", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 683497789, + "bounds": { + "minlat": 40.7456418, + "minlon": -74.0058294, + "maxlat": 40.7457156, + "maxlon": -74.0056615 + }, + "nodes": [ + 6401966212, + 10168486378, + 6401966213 + ], + "geometry": [ + { "lat": 40.7457156, "lon": -74.0058294 }, + { "lat": 40.7456974, "lon": -74.0057875 }, + { "lat": 40.7456418, "lon": -74.0056615 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 683569582, + "bounds": { + "minlat": 40.7924899, + "minlon": -73.9371425, + "maxlat": 40.7933961, + "maxlon": -73.9350267 + }, + "nodes": [ + 1241323611, + 7924346767, + 11949185517, + 7924346689 + ], + "geometry": [ + { "lat": 40.7924899, "lon": -73.9350267 }, + { "lat": 40.7927300, "lon": -73.9355845 }, + { "lat": 40.7932456, "lon": -73.9367905 }, + { "lat": 40.7933961, "lon": -73.9371425 } + ], + "tags": { + "bicycle": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "East 112th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683838450, + "bounds": { + "minlat": 40.8130270, + "minlon": -73.9920140, + "maxlat": 40.8132190, + "maxlon": -73.9913498 + }, + "nodes": [ + 6405633310, + 7618565475, + 103112564 + ], + "geometry": [ + { "lat": 40.8130270, "lon": -73.9913498 }, + { "lat": 40.8130923, "lon": -73.9915755 }, + { "lat": 40.8132190, "lon": -73.9920140 } + ], + "tags": { + "highway": "residential", + "name": "Main Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_left_1": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 683926414, + "bounds": { + "minlat": 40.7692215, + "minlon": -73.9128677, + "maxlat": 40.7696825, + "maxlon": -73.9124956 + }, + "nodes": [ + 6406731008, + 6406731009 + ], + "geometry": [ + { "lat": 40.7696825, "lon": -73.9124956 }, + { "lat": 40.7692215, "lon": -73.9128677 } + ], + "tags": { + "bridge": "yes", + "cycleway:both": "no", + "foot": "no", + "highway": "residential", + "lanes": "2", + "layer": "1", + "lit": "no", + "maxspeed": "25 mph", + "name": "37th Street", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683926415, + "bounds": { + "minlat": 40.7691804, + "minlon": -73.9129009, + "maxlat": 40.7692215, + "maxlon": -73.9128677 + }, + "nodes": [ + 6406731009, + 42888656 + ], + "geometry": [ + { "lat": 40.7692215, "lon": -73.9128677 }, + { "lat": 40.7691804, "lon": -73.9129009 } + ], + "tags": { + "foot": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "37th Street", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683926426, + "bounds": { + "minlat": 40.7706860, + "minlon": -73.9174110, + "maxlat": 40.7707528, + "maxlon": -73.9173293 + }, + "nodes": [ + 6406731013, + 279604055 + ], + "geometry": [ + { "lat": 40.7707528, "lon": -73.9173293 }, + { "lat": 40.7706860, "lon": -73.9174110 } + ], + "tags": { + "highway": "secondary", + "level": "0", + "maxspeed": "25 mph", + "name": "31st Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683926427, + "bounds": { + "minlat": 40.7707528, + "minlon": -73.9176789, + "maxlat": 40.7710774, + "maxlon": -73.9173293 + }, + "nodes": [ + 6406731013, + 7784017558, + 9179198065, + 5104280319 + ], + "geometry": [ + { "lat": 40.7707528, "lon": -73.9173293 }, + { "lat": 40.7708219, "lon": -73.9174185 }, + { "lat": 40.7708774, "lon": -73.9174868 }, + { "lat": 40.7710774, "lon": -73.9176789 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "level": "0", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683926428, + "bounds": { + "minlat": 40.7704058, + "minlon": -73.9173293, + "maxlat": 40.7707528, + "maxlon": -73.9167768 + }, + "nodes": [ + 9179198063, + 9179198062, + 6406731014, + 9179198061, + 13399317581, + 6406731013 + ], + "geometry": [ + { "lat": 40.7704058, "lon": -73.9167768 }, + { "lat": 40.7704727, "lon": -73.9169102 }, + { "lat": 40.7705344, "lon": -73.9170135 }, + { "lat": 40.7706172, "lon": -73.9171515 }, + { "lat": 40.7706593, "lon": -73.9172067 }, + { "lat": 40.7707528, "lon": -73.9173293 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "level": "0", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "Astoria Boulevard North", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|left|through|through" + } +}, +{ + "type": "way", + "id": 683926446, + "bounds": { + "minlat": 40.7665896, + "minlon": -73.9201042, + "maxlat": 40.7669505, + "maxlon": -73.9197404 + }, + "nodes": [ + 6406731482, + 6406731481, + 6406731480, + 6406731479 + ], + "geometry": [ + { "lat": 40.7669505, "lon": -73.9197404 }, + { "lat": 40.7666346, "lon": -73.9199987 }, + { "lat": 40.7666183, "lon": -73.9200310 }, + { "lat": 40.7665896, "lon": -73.9201042 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 683926447, + "bounds": { + "minlat": 40.7668749, + "minlon": -73.9199129, + "maxlat": 40.7672573, + "maxlon": -73.9192000 + }, + "nodes": [ + 6406731486, + 6406731485, + 11228238877, + 6406731484, + 6406731483 + ], + "geometry": [ + { "lat": 40.7672573, "lon": -73.9198646 }, + { "lat": 40.7672014, "lon": -73.9199129 }, + { "lat": 40.7670784, "lon": -73.9196453 }, + { "lat": 40.7669083, "lon": -73.9192754 }, + { "lat": 40.7668749, "lon": -73.9192000 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 683926448, + "bounds": { + "minlat": 40.7636335, + "minlon": -73.9199866, + "maxlat": 40.7647677, + "maxlon": -73.9188428 + }, + "nodes": [ + 6406731492, + 6406731491, + 6406731490, + 6406731489, + 6406731488, + 6406731487 + ], + "geometry": [ + { "lat": 40.7636335, "lon": -73.9196281 }, + { "lat": 40.7636578, "lon": -73.9197026 }, + { "lat": 40.7637997, "lon": -73.9199866 }, + { "lat": 40.7647677, "lon": -73.9192021 }, + { "lat": 40.7646337, "lon": -73.9189104 }, + { "lat": 40.7646018, "lon": -73.9188428 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 683926474, + "bounds": { + "minlat": 40.7625767, + "minlon": -73.9186965, + "maxlat": 40.7631902, + "maxlon": -73.9178852 + }, + "nodes": [ + 6406731763, + 6406731762, + 6406731749, + 6406731761 + ], + "geometry": [ + { "lat": 40.7625767, "lon": -73.9186965 }, + { "lat": 40.7631902, "lon": -73.9182003 }, + { "lat": 40.7630779, "lon": -73.9179508 }, + { "lat": 40.7630483, "lon": -73.9178852 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 683926475, + "bounds": { + "minlat": 40.7628500, + "minlon": -73.9186509, + "maxlat": 40.7645311, + "maxlon": -73.9172588 + }, + "nodes": [ + 6406731768, + 6406731766, + 6406731765, + 6406731764 + ], + "geometry": [ + { "lat": 40.7645311, "lon": -73.9172588 }, + { "lat": 40.7638698, "lon": -73.9177832 }, + { "lat": 40.7634036, "lon": -73.9181869 }, + { "lat": 40.7628500, "lon": -73.9186509 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 683926476, + "bounds": { + "minlat": 40.7643376, + "minlon": -73.9176537, + "maxlat": 40.7647131, + "maxlon": -73.9168364 + }, + "nodes": [ + 5119625235, + 6406731769, + 6406731768, + 6406731007, + 6406731767 + ], + "geometry": [ + { "lat": 40.7647131, "lon": -73.9176537 }, + { "lat": 40.7646802, "lon": -73.9175825 }, + { "lat": 40.7645311, "lon": -73.9172588 }, + { "lat": 40.7643718, "lon": -73.9169110 }, + { "lat": 40.7643376, "lon": -73.9168364 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "alley", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 683931273, + "bounds": { + "minlat": 40.7524220, + "minlon": -73.9243604, + "maxlat": 40.7589793, + "maxlon": -73.9190094 + }, + "nodes": [ + 42882996, + 3570249844, + 4960208249, + 10763752500, + 6228232696, + 10763752499, + 4960208252, + 3569858158, + 42824162, + 3569858155, + 4960208251, + 6450587452, + 1927807845, + 6450587451, + 4960276048, + 4960276046, + 3570193133, + 3569401943, + 42917869, + 3569401938, + 4960276051, + 4960276052, + 8088590939, + 42917872 + ], + "geometry": [ + { "lat": 40.7589793, "lon": -73.9190094 }, + { "lat": 40.7589144, "lon": -73.9190625 }, + { "lat": 40.7587344, "lon": -73.9192090 }, + { "lat": 40.7578510, "lon": -73.9199283 }, + { "lat": 40.7577946, "lon": -73.9199742 }, + { "lat": 40.7577652, "lon": -73.9199982 }, + { "lat": 40.7569642, "lon": -73.9206515 }, + { "lat": 40.7567604, "lon": -73.9208176 }, + { "lat": 40.7566896, "lon": -73.9208753 }, + { "lat": 40.7566204, "lon": -73.9209317 }, + { "lat": 40.7564182, "lon": -73.9210965 }, + { "lat": 40.7552141, "lon": -73.9220743 }, + { "lat": 40.7551516, "lon": -73.9221287 }, + { "lat": 40.7550843, "lon": -73.9221835 }, + { "lat": 40.7550427, "lon": -73.9222174 }, + { "lat": 40.7548925, "lon": -73.9223398 }, + { "lat": 40.7545664, "lon": -73.9226055 }, + { "lat": 40.7536796, "lon": -73.9233155 }, + { "lat": 40.7536075, "lon": -73.9233766 }, + { "lat": 40.7535352, "lon": -73.9234333 }, + { "lat": 40.7528728, "lon": -73.9239705 }, + { "lat": 40.7526808, "lon": -73.9241205 }, + { "lat": 40.7525821, "lon": -73.9242036 }, + { "lat": 40.7524220, "lon": -73.9243604 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Steinway Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7606937", + "wikipedia": "en:Steinway Street" + } +}, +{ + "type": "way", + "id": 683931274, + "bounds": { + "minlat": 40.7521550, + "minlon": -73.9255231, + "maxlat": 40.7593450, + "maxlon": -73.9197903 + }, + "nodes": [ + 2402842565, + 3570249851, + 6450563911, + 2402842564, + 6450532842, + 3573447543, + 42841770, + 3573447540, + 10118310685, + 13701273873, + 3569858118, + 42841773, + 3569858114, + 5488325081, + 5488325084, + 9189020449, + 3569401909, + 9189020450, + 9189020451, + 42841778 + ], + "geometry": [ + { "lat": 40.7593450, "lon": -73.9197903 }, + { "lat": 40.7592773, "lon": -73.9198453 }, + { "lat": 40.7571226, "lon": -73.9215983 }, + { "lat": 40.7570533, "lon": -73.9216545 }, + { "lat": 40.7569869, "lon": -73.9217100 }, + { "lat": 40.7555850, "lon": -73.9228489 }, + { "lat": 40.7555146, "lon": -73.9229062 }, + { "lat": 40.7554427, "lon": -73.9229647 }, + { "lat": 40.7544073, "lon": -73.9238075 }, + { "lat": 40.7542084, "lon": -73.9239690 }, + { "lat": 40.7540349, "lon": -73.9241098 }, + { "lat": 40.7539733, "lon": -73.9241599 }, + { "lat": 40.7539092, "lon": -73.9242121 }, + { "lat": 40.7534763, "lon": -73.9245642 }, + { "lat": 40.7529905, "lon": -73.9249594 }, + { "lat": 40.7523249, "lon": -73.9254845 }, + { "lat": 40.7522871, "lon": -73.9255041 }, + { "lat": 40.7522469, "lon": -73.9255158 }, + { "lat": 40.7522072, "lon": -73.9255199 }, + { "lat": 40.7521550, "lon": -73.9255231 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "38th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683931275, + "bounds": { + "minlat": 40.7524054, + "minlon": -73.9265506, + "maxlat": 40.7597277, + "maxlon": -73.9205876 + }, + "nodes": [ + 42815838, + 9189020463, + 9189020462, + 8595235425, + 3573447533, + 3573447535, + 42888668, + 3573447536, + 9295341585, + 3573447546, + 42888664, + 3573447549, + 3569858159, + 42824152, + 3569858162, + 9295394239, + 7961545513, + 3570249859, + 42882987 + ], + "geometry": [ + { "lat": 40.7524054, "lon": -73.9265506 }, + { "lat": 40.7524332, "lon": -73.9265127 }, + { "lat": 40.7524610, "lon": -73.9264807 }, + { "lat": 40.7524909, "lon": -73.9264547 }, + { "lat": 40.7542370, "lon": -73.9250530 }, + { "lat": 40.7542744, "lon": -73.9250226 }, + { "lat": 40.7543480, "lon": -73.9249627 }, + { "lat": 40.7544158, "lon": -73.9249075 }, + { "lat": 40.7551459, "lon": -73.9243136 }, + { "lat": 40.7558256, "lon": -73.9237607 }, + { "lat": 40.7558893, "lon": -73.9237089 }, + { "lat": 40.7559531, "lon": -73.9236570 }, + { "lat": 40.7573634, "lon": -73.9225101 }, + { "lat": 40.7574280, "lon": -73.9224573 }, + { "lat": 40.7574979, "lon": -73.9224003 }, + { "lat": 40.7585857, "lon": -73.9215155 }, + { "lat": 40.7592630, "lon": -73.9209645 }, + { "lat": 40.7596542, "lon": -73.9206476 }, + { "lat": 40.7597277, "lon": -73.9205876 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "37th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683931276, + "bounds": { + "minlat": 40.7578000, + "minlon": -73.9232542, + "maxlat": 40.7601082, + "maxlon": -73.9214086 + }, + "nodes": [ + 42882983, + 3570249872, + 5488250134, + 10763752497, + 3569858166, + 42824149 + ], + "geometry": [ + { "lat": 40.7601082, "lon": -73.9214086 }, + { "lat": 40.7600381, "lon": -73.9214646 }, + { "lat": 40.7596202, "lon": -73.9217986 }, + { "lat": 40.7578972, "lon": -73.9231755 }, + { "lat": 40.7578717, "lon": -73.9231953 }, + { "lat": 40.7578000, "lon": -73.9232542 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "name": "36th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683931277, + "bounds": { + "minlat": 40.7581780, + "minlon": -73.9240642, + "maxlat": 40.7604752, + "maxlon": -73.9221955 + }, + "nodes": [ + 42824147, + 3577895805, + 8032268650, + 8032268640, + 7611087794, + 7833503233, + 3570249881, + 42866657 + ], + "geometry": [ + { "lat": 40.7581780, "lon": -73.9240642 }, + { "lat": 40.7582498, "lon": -73.9240051 }, + { "lat": 40.7588600, "lon": -73.9235107 }, + { "lat": 40.7595083, "lon": -73.9229847 }, + { "lat": 40.7598983, "lon": -73.9226683 }, + { "lat": 40.7599115, "lon": -73.9226575 }, + { "lat": 40.7604044, "lon": -73.9222531 }, + { "lat": 40.7604752, "lon": -73.9221955 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lane_markings": "no", + "name": "35th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683931278, + "bounds": { + "minlat": 40.7608441, + "minlon": -73.9229854, + "maxlat": 40.7657719, + "maxlon": -73.9189932 + }, + "nodes": [ + 42874058, + 3570250008, + 7661673743, + 42856541, + 7661673744, + 3570249894, + 42882977 + ], + "geometry": [ + { "lat": 40.7657719, "lon": -73.9189932 }, + { "lat": 40.7657034, "lon": -73.9190485 }, + { "lat": 40.7632704, "lon": -73.9210354 }, + { "lat": 40.7632026, "lon": -73.9210901 }, + { "lat": 40.7631375, "lon": -73.9211422 }, + { "lat": 40.7609219, "lon": -73.9229228 }, + { "lat": 40.7608441, "lon": -73.9229854 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "lane_markings": "no", + "name": "34th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683931280, + "bounds": { + "minlat": 40.7612244, + "minlon": -73.9237843, + "maxlat": 40.7661449, + "maxlon": -73.9197922 + }, + "nodes": [ + 42882975, + 3570249902, + 3570249953, + 42856537, + 7661673745, + 7135719622, + 3570250017, + 42874057 + ], + "geometry": [ + { "lat": 40.7612244, "lon": -73.9237843 }, + { "lat": 40.7612991, "lon": -73.9237211 }, + { "lat": 40.7635091, "lon": -73.9219300 }, + { "lat": 40.7635731, "lon": -73.9218781 }, + { "lat": 40.7636461, "lon": -73.9218189 }, + { "lat": 40.7657925, "lon": -73.9200780 }, + { "lat": 40.7660835, "lon": -73.9198414 }, + { "lat": 40.7661449, "lon": -73.9197922 } + ], + "tags": { + "foot": "yes", + "highway": "secondary", + "lanes": "2", + "name": "33rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683931282, + "bounds": { + "minlat": 40.7615965, + "minlon": -73.9245807, + "maxlat": 40.7665256, + "maxlon": -73.9206020 + }, + "nodes": [ + 42874056, + 6406731693, + 7279116841, + 7661673752, + 42856527, + 7668020442, + 5488242213, + 5488242216, + 3570249912, + 42882974 + ], + "geometry": [ + { "lat": 40.7665256, "lon": -73.9206020 }, + { "lat": 40.7664618, "lon": -73.9206535 }, + { "lat": 40.7657493, "lon": -73.9212296 }, + { "lat": 40.7640423, "lon": -73.9226076 }, + { "lat": 40.7639664, "lon": -73.9226715 }, + { "lat": 40.7638923, "lon": -73.9227303 }, + { "lat": 40.7621612, "lon": -73.9241243 }, + { "lat": 40.7620580, "lon": -73.9242074 }, + { "lat": 40.7616688, "lon": -73.9245251 }, + { "lat": 40.7615965, "lon": -73.9245807 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "lane_markings": "no", + "name": "32nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683931295, + "bounds": { + "minlat": 40.7628239, + "minlon": -73.9218781, + "maxlat": 40.7635731, + "maxlon": -73.9202848 + }, + "nodes": [ + 42856537, + 7668020445, + 7668020446, + 42856541, + 7668020447, + 7668020449, + 42856544 + ], + "geometry": [ + { "lat": 40.7635731, "lon": -73.9218781 }, + { "lat": 40.7635375, "lon": -73.9218025 }, + { "lat": 40.7632362, "lon": -73.9211619 }, + { "lat": 40.7632026, "lon": -73.9210901 }, + { "lat": 40.7631691, "lon": -73.9210195 }, + { "lat": 40.7628585, "lon": -73.9203584 }, + { "lat": 40.7628239, "lon": -73.9202848 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "highway": "living_street", + "lanes": "1", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Apr-Dec: Sa-Su 12:00-20:00)", + "name": "31st Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683931301, + "bounds": { + "minlat": 40.7677404, + "minlon": -73.9191234, + "maxlat": 40.7680365, + "maxlon": -73.9184983 + }, + "nodes": [ + 42832976, + 3570250041, + 42832979 + ], + "geometry": [ + { "lat": 40.7680365, "lon": -73.9191234 }, + { "lat": 40.7677781, "lon": -73.9185805 }, + { "lat": 40.7677404, "lon": -73.9184983 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "name": "28th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 683931306, + "bounds": { + "minlat": 40.7685463, + "minlon": -73.9108223, + "maxlat": 40.7688372, + "maxlon": -73.9090014 + }, + "nodes": [ + 4927558979, + 4925172079, + 42912774, + 5104280310, + 42912776 + ], + "geometry": [ + { "lat": 40.7688372, "lon": -73.9108223 }, + { "lat": 40.7688131, "lon": -73.9106717 }, + { "lat": 40.7687018, "lon": -73.9099752 }, + { "lat": 40.7685792, "lon": -73.9092074 }, + { "lat": 40.7685463, "lon": -73.9090014 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "name": "Astoria Boulevard South", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 683931309, + "bounds": { + "minlat": 40.7694141, + "minlon": -73.9128700, + "maxlat": 40.7697951, + "maxlon": -73.9102637 + }, + "nodes": [ + 42910587, + 4927558982, + 5866672690, + 9179209284, + 42841803, + 42818232, + 5104280311, + 6406731396, + 597443933, + 6406731387, + 12747647423 + ], + "geometry": [ + { "lat": 40.7694141, "lon": -73.9102637 }, + { "lat": 40.7694344, "lon": -73.9103943 }, + { "lat": 40.7694826, "lon": -73.9107001 }, + { "lat": 40.7695450, "lon": -73.9111180 }, + { "lat": 40.7695825, "lon": -73.9113885 }, + { "lat": 40.7696022, "lon": -73.9115365 }, + { "lat": 40.7696983, "lon": -73.9122369 }, + { "lat": 40.7697127, "lon": -73.9123524 }, + { "lat": 40.7697289, "lon": -73.9124529 }, + { "lat": 40.7697449, "lon": -73.9125398 }, + { "lat": 40.7697951, "lon": -73.9128700 } + ], + "tags": { + "foot": "yes", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "name": "Astoria Boulevard North", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 684320307, + "bounds": { + "minlat": 40.7124479, + "minlon": -73.9799187, + "maxlat": 40.7136586, + "maxlon": -73.9797580 + }, + "nodes": [ + 6411125192, + 8310246412, + 5487791440 + ], + "geometry": [ + { "lat": 40.7136586, "lon": -73.9799187 }, + { "lat": 40.7135834, "lon": -73.9799087 }, + { "lat": 40.7124479, "lon": -73.9797580 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 684320317, + "bounds": { + "minlat": 40.7122172, + "minlon": -73.9868576, + "maxlat": 40.7122336, + "maxlon": -73.9866694 + }, + "nodes": [ + 6330018969, + 8233443646, + 8718166994, + 6411125253 + ], + "geometry": [ + { "lat": 40.7122172, "lon": -73.9868576 }, + { "lat": 40.7122309, "lon": -73.9867023 }, + { "lat": 40.7122323, "lon": -73.9866859 }, + { "lat": 40.7122336, "lon": -73.9866694 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 684320318, + "bounds": { + "minlat": 40.7122336, + "minlon": -73.9866694, + "maxlat": 40.7122806, + "maxlon": -73.9861537 + }, + "nodes": [ + 6411125253, + 6411125254 + ], + "geometry": [ + { "lat": 40.7122336, "lon": -73.9866694 }, + { "lat": 40.7122806, "lon": -73.9861537 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 684335994, + "bounds": { + "minlat": 40.7437022, + "minlon": -73.9337568, + "maxlat": 40.7441445, + "maxlon": -73.9336647 + }, + "nodes": [ + 4215833978, + 6411299364 + ], + "geometry": [ + { "lat": 40.7441445, "lon": -73.9336647 }, + { "lat": 40.7437022, "lon": -73.9337568 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Van Dam Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 684336000, + "bounds": { + "minlat": 40.7435977, + "minlon": -73.9337568, + "maxlat": 40.7437022, + "maxlon": -73.9328485 + }, + "nodes": [ + 6411299364, + 10743722749, + 10743722752, + 6411299363 + ], + "geometry": [ + { "lat": 40.7437022, "lon": -73.9337568 }, + { "lat": 40.7436868, "lon": -73.9336225 }, + { "lat": 40.7436067, "lon": -73.9329270 }, + { "lat": 40.7435977, "lon": -73.9328485 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 684336985, + "bounds": { + "minlat": 40.7191689, + "minlon": -73.9189392, + "maxlat": 40.7194865, + "maxlon": -73.9175395 + }, + "nodes": [ + 6411284753, + 6411284752 + ], + "geometry": [ + { "lat": 40.7191689, "lon": -73.9175395 }, + { "lat": 40.7194865, "lon": -73.9189392 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 684336986, + "bounds": { + "minlat": 40.7182624, + "minlon": -73.9163661, + "maxlat": 40.7198118, + "maxlon": -73.9158131 + }, + "nodes": [ + 6411284756, + 7706126094, + 6411284754 + ], + "geometry": [ + { "lat": 40.7182624, "lon": -73.9162386 }, + { "lat": 40.7185148, "lon": -73.9163661 }, + { "lat": 40.7198118, "lon": -73.9158131 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 684336990, + "bounds": { + "minlat": 40.7160824, + "minlon": -73.9168482, + "maxlat": 40.7180934, + "maxlon": -73.9158936 + }, + "nodes": [ + 6411284768, + 10856212657, + 6411284767, + 6411284766 + ], + "geometry": [ + { "lat": 40.7180934, "lon": -73.9168482 }, + { "lat": 40.7180151, "lon": -73.9168107 }, + { "lat": 40.7172229, "lon": -73.9164314 }, + { "lat": 40.7160824, "lon": -73.9158936 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 684336991, + "bounds": { + "minlat": 40.7166658, + "minlon": -73.9173929, + "maxlat": 40.7179438, + "maxlon": -73.9167707 + }, + "nodes": [ + 6411284771, + 10856212658, + 6411284770 + ], + "geometry": [ + { "lat": 40.7179438, "lon": -73.9173929 }, + { "lat": 40.7178660, "lon": -73.9173550 }, + { "lat": 40.7166658, "lon": -73.9167707 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 684441465, + "bounds": { + "minlat": 40.8065918, + "minlon": -74.0018544, + "maxlat": 40.8094954, + "maxlon": -74.0006187 + }, + "nodes": [ + 103870522, + 2010233207, + 103870521, + 103870519, + 5465262627, + 103870514, + 4727867667, + 103870510, + 103870509, + 103870508, + 103870507, + 103870506, + 103870505, + 4727867668, + 103866686 + ], + "geometry": [ + { "lat": 40.8065918, "lon": -74.0018246 }, + { "lat": 40.8067747, "lon": -74.0018544 }, + { "lat": 40.8069295, "lon": -74.0018211 }, + { "lat": 40.8071209, "lon": -74.0016992 }, + { "lat": 40.8073742, "lon": -74.0015271 }, + { "lat": 40.8082493, "lon": -74.0009327 }, + { "lat": 40.8086648, "lon": -74.0006709 }, + { "lat": 40.8087984, "lon": -74.0006287 }, + { "lat": 40.8088683, "lon": -74.0006187 }, + { "lat": 40.8089377, "lon": -74.0006244 }, + { "lat": 40.8090205, "lon": -74.0006556 }, + { "lat": 40.8091180, "lon": -74.0007040 }, + { "lat": 40.8092111, "lon": -74.0007985 }, + { "lat": 40.8094252, "lon": -74.0011245 }, + { "lat": 40.8094954, "lon": -74.0012421 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 684741181, + "bounds": { + "minlat": 40.8159885, + "minlon": -73.9177880, + "maxlat": 40.8160422, + "maxlon": -73.9176913 + }, + "nodes": [ + 6415815570, + 6415815544 + ], + "geometry": [ + { "lat": 40.8160422, "lon": -73.9176913 }, + { "lat": 40.8159885, "lon": -73.9177880 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "3rd Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 684741182, + "bounds": { + "minlat": 40.8160422, + "minlon": -73.9180245, + "maxlat": 40.8161274, + "maxlon": -73.9176913 + }, + "nodes": [ + 6415815569, + 6415815531, + 6415815570 + ], + "geometry": [ + { "lat": 40.8161274, "lon": -73.9180245 }, + { "lat": 40.8160713, "lon": -73.9178034 }, + { "lat": 40.8160422, "lon": -73.9176913 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "turn:lanes": "through|" + } +}, +{ + "type": "way", + "id": 684741183, + "bounds": { + "minlat": 40.8158964, + "minlon": -73.9176913, + "maxlat": 40.8160422, + "maxlon": -73.9172191 + }, + "nodes": [ + 6415815570, + 6415815564, + 9495474020, + 9917864248 + ], + "geometry": [ + { "lat": 40.8160422, "lon": -73.9176913 }, + { "lat": 40.8159993, "lon": -73.9175724 }, + { "lat": 40.8159499, "lon": -73.9174531 }, + { "lat": 40.8158964, "lon": -73.9172191 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 684741187, + "bounds": { + "minlat": 40.8164960, + "minlon": -73.9168720, + "maxlat": 40.8165762, + "maxlon": -73.9167513 + }, + "nodes": [ + 6415815555, + 42733534 + ], + "geometry": [ + { "lat": 40.8164960, "lon": -73.9168720 }, + { "lat": 40.8165762, "lon": -73.9167513 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 684741190, + "bounds": { + "minlat": 40.8161274, + "minlon": -73.9190792, + "maxlat": 40.8164449, + "maxlon": -73.9180245 + }, + "nodes": [ + 42750596, + 6415815568, + 6415815569 + ], + "geometry": [ + { "lat": 40.8164449, "lon": -73.9190792 }, + { "lat": 40.8163464, "lon": -73.9188521 }, + { "lat": 40.8161274, "lon": -73.9180245 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "turn:lanes": "through|" + } +}, +{ + "type": "way", + "id": 684936366, + "bounds": { + "minlat": 40.7100391, + "minlon": -74.0133759, + "maxlat": 40.7100775, + "maxlon": -74.0133248 + }, + "nodes": [ + 6417640523, + 6417640510, + 6417640673, + 6417640662, + 6417640523 + ], + "geometry": [ + { "lat": 40.7100391, "lon": -74.0133759 }, + { "lat": 40.7100775, "lon": -74.0133461 }, + { "lat": 40.7100680, "lon": -74.0133248 }, + { "lat": 40.7100510, "lon": -74.0133378 }, + { "lat": 40.7100391, "lon": -74.0133759 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936367, + "bounds": { + "minlat": 40.7099425, + "minlon": -74.0133877, + "maxlat": 40.7101642, + "maxlon": -74.0130391 + }, + "nodes": [ + 6417640507, + 2824641655, + 6417640291, + 6417640316, + 6417640292, + 6417640315, + 6417640314, + 6417640313, + 6417640312, + 6417640293, + 6417640311, + 6417640310, + 6417640309, + 6417640294, + 2824641628, + 6417640289, + 6417640288, + 6417640287, + 6417640286, + 6417640285, + 6417639684, + 6417639683, + 6417639682, + 6417639681, + 6417639680, + 6431476941, + 6419497811, + 2824641660, + 6417713225, + 6417713226, + 6417713227, + 6417713228, + 6417640501, + 6417640686, + 6417640338, + 6431476940, + 6417640497, + 6417640504, + 6417640506, + 6417640523, + 6417640662, + 6417640665, + 6417640669, + 6417640673, + 6417640510, + 6417640507 + ], + "geometry": [ + { "lat": 40.7100966, "lon": -74.0133877 }, + { "lat": 40.7101277, "lon": -74.0133632 }, + { "lat": 40.7101117, "lon": -74.0133285 }, + { "lat": 40.7101016, "lon": -74.0133362 }, + { "lat": 40.7100810, "lon": -74.0132913 }, + { "lat": 40.7100894, "lon": -74.0132817 }, + { "lat": 40.7100799, "lon": -74.0132740 }, + { "lat": 40.7100706, "lon": -74.0132638 }, + { "lat": 40.7100645, "lon": -74.0132514 }, + { "lat": 40.7100580, "lon": -74.0132370 }, + { "lat": 40.7100540, "lon": -74.0132196 }, + { "lat": 40.7100528, "lon": -74.0132088 }, + { "lat": 40.7100535, "lon": -74.0131969 }, + { "lat": 40.7100412, "lon": -74.0131932 }, + { "lat": 40.7100218, "lon": -74.0131470 }, + { "lat": 40.7100543, "lon": -74.0131240 }, + { "lat": 40.7100606, "lon": -74.0131307 }, + { "lat": 40.7100673, "lon": -74.0131200 }, + { "lat": 40.7100749, "lon": -74.0131103 }, + { "lat": 40.7100840, "lon": -74.0131012 }, + { "lat": 40.7100960, "lon": -74.0130935 }, + { "lat": 40.7101087, "lon": -74.0130868 }, + { "lat": 40.7101196, "lon": -74.0130854 }, + { "lat": 40.7101255, "lon": -74.0130854 }, + { "lat": 40.7101257, "lon": -74.0130737 }, + { "lat": 40.7101608, "lon": -74.0130471 }, + { "lat": 40.7101630, "lon": -74.0130455 }, + { "lat": 40.7101642, "lon": -74.0130443 }, + { "lat": 40.7101622, "lon": -74.0130459 }, + { "lat": 40.7101585, "lon": -74.0130391 }, + { "lat": 40.7100144, "lon": -74.0131444 }, + { "lat": 40.7100296, "lon": -74.0131833 }, + { "lat": 40.7100155, "lon": -74.0131958 }, + { "lat": 40.7099566, "lon": -74.0132679 }, + { "lat": 40.7099606, "lon": -74.0132732 }, + { "lat": 40.7099435, "lon": -74.0132942 }, + { "lat": 40.7099425, "lon": -74.0132955 }, + { "lat": 40.7099539, "lon": -74.0133091 }, + { "lat": 40.7099725, "lon": -74.0132893 }, + { "lat": 40.7100391, "lon": -74.0133759 }, + { "lat": 40.7100510, "lon": -74.0133378 }, + { "lat": 40.7100078, "lon": -74.0132394 }, + { "lat": 40.7100248, "lon": -74.0132264 }, + { "lat": 40.7100680, "lon": -74.0133248 }, + { "lat": 40.7100775, "lon": -74.0133461 }, + { "lat": 40.7100966, "lon": -74.0133877 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936370, + "bounds": { + "minlat": 40.7099023, + "minlon": -74.0142164, + "maxlat": 40.7107162, + "maxlon": -74.0132470 + }, + "nodes": [ + 6417640416, + 5813276180, + 6417640651, + 6417640648, + 6419311312, + 6417640415, + 6419311309, + 6419311313, + 6419311308, + 6417640414, + 5889526044, + 6431476918, + 6417640413, + 6417640443, + 6417640448, + 6417640446, + 6417669190, + 6417640376, + 6417640379, + 6417640412, + 6417640411, + 6417640410, + 6417640409, + 6417640408, + 6417640500, + 6417640498, + 6417640407, + 6417640406, + 6417640405, + 6417640404, + 6417640403, + 6417640402, + 6417640401, + 6417640664, + 6417640663, + 9088260045, + 6417640653, + 6417640656, + 6417640659, + 6417640558, + 8213966247, + 6417640555, + 6417640398, + 6417640397, + 6417640396, + 6417640395, + 6417640394, + 6417640393, + 6417640392, + 6417640391, + 6417640390, + 6417640389, + 6417640388, + 6417640387, + 6417640386, + 6417640384, + 6417640382, + 6417640380, + 8213966236, + 6417640521, + 6417640377, + 6417640375, + 6417640374, + 6417640372, + 6417640370, + 6417640368, + 6417640365, + 8213966242, + 6417640509, + 6417640504, + 6417640497, + 6417640363, + 6419497816, + 6417669273, + 8213966235, + 6417669274, + 6417640366, + 8281922535, + 8281922534, + 6417640371, + 6417640353, + 6431476925, + 6417640351, + 6417640348, + 6417640345, + 6417640342, + 6417640339, + 6417640335, + 8213966237, + 6417640332, + 6417640705, + 6417640702, + 6417640699, + 6417640696, + 6417640693, + 6417640690, + 6417640687, + 6417640683, + 6417640562, + 6417640416 + ], + "geometry": [ + { "lat": 40.7106451, "lon": -74.0142164 }, + { "lat": 40.7106822, "lon": -74.0141976 }, + { "lat": 40.7107162, "lon": -74.0141797 }, + { "lat": 40.7106720, "lon": -74.0140765 }, + { "lat": 40.7106572, "lon": -74.0140575 }, + { "lat": 40.7106465, "lon": -74.0140436 }, + { "lat": 40.7106465, "lon": -74.0140396 }, + { "lat": 40.7106589, "lon": -74.0140556 }, + { "lat": 40.7106709, "lon": -74.0140710 }, + { "lat": 40.7106709, "lon": -74.0140554 }, + { "lat": 40.7106850, "lon": -74.0140427 }, + { "lat": 40.7106960, "lon": -74.0140336 }, + { "lat": 40.7106973, "lon": -74.0140325 }, + { "lat": 40.7106326, "lon": -74.0139017 }, + { "lat": 40.7105140, "lon": -74.0136589 }, + { "lat": 40.7104221, "lon": -74.0134707 }, + { "lat": 40.7103573, "lon": -74.0133336 }, + { "lat": 40.7103128, "lon": -74.0132470 }, + { "lat": 40.7103010, "lon": -74.0132561 }, + { "lat": 40.7103083, "lon": -74.0133164 }, + { "lat": 40.7103195, "lon": -74.0132987 }, + { "lat": 40.7103583, "lon": -74.0133774 }, + { "lat": 40.7103766, "lon": -74.0134092 }, + { "lat": 40.7103731, "lon": -74.0134224 }, + { "lat": 40.7104487, "lon": -74.0135833 }, + { "lat": 40.7104738, "lon": -74.0135994 }, + { "lat": 40.7104855, "lon": -74.0136233 }, + { "lat": 40.7105263, "lon": -74.0137490 }, + { "lat": 40.7105240, "lon": -74.0137833 }, + { "lat": 40.7105483, "lon": -74.0138399 }, + { "lat": 40.7105538, "lon": -74.0138072 }, + { "lat": 40.7105931, "lon": -74.0138883 }, + { "lat": 40.7106477, "lon": -74.0139841 }, + { "lat": 40.7106444, "lon": -74.0139953 }, + { "lat": 40.7106457, "lon": -74.0140273 }, + { "lat": 40.7106459, "lon": -74.0140395 }, + { "lat": 40.7106460, "lon": -74.0140432 }, + { "lat": 40.7106371, "lon": -74.0140323 }, + { "lat": 40.7106150, "lon": -74.0140117 }, + { "lat": 40.7105672, "lon": -74.0138882 }, + { "lat": 40.7105537, "lon": -74.0138951 }, + { "lat": 40.7105428, "lon": -74.0139006 }, + { "lat": 40.7105769, "lon": -74.0140087 }, + { "lat": 40.7105028, "lon": -74.0139646 }, + { "lat": 40.7104377, "lon": -74.0138919 }, + { "lat": 40.7104120, "lon": -74.0137387 }, + { "lat": 40.7104005, "lon": -74.0137190 }, + { "lat": 40.7103881, "lon": -74.0137185 }, + { "lat": 40.7103569, "lon": -74.0137086 }, + { "lat": 40.7103582, "lon": -74.0137315 }, + { "lat": 40.7103662, "lon": -74.0137417 }, + { "lat": 40.7103932, "lon": -74.0137738 }, + { "lat": 40.7104097, "lon": -74.0138297 }, + { "lat": 40.7104156, "lon": -74.0138513 }, + { "lat": 40.7104108, "lon": -74.0138541 }, + { "lat": 40.7103863, "lon": -74.0137919 }, + { "lat": 40.7103618, "lon": -74.0137528 }, + { "lat": 40.7103557, "lon": -74.0137442 }, + { "lat": 40.7103481, "lon": -74.0137574 }, + { "lat": 40.7103429, "lon": -74.0137665 }, + { "lat": 40.7103418, "lon": -74.0137683 }, + { "lat": 40.7102699, "lon": -74.0137328 }, + { "lat": 40.7101841, "lon": -74.0136112 }, + { "lat": 40.7102014, "lon": -74.0135294 }, + { "lat": 40.7101642, "lon": -74.0135312 }, + { "lat": 40.7101548, "lon": -74.0135801 }, + { "lat": 40.7100654, "lon": -74.0134593 }, + { "lat": 40.7100575, "lon": -74.0134490 }, + { "lat": 40.7100423, "lon": -74.0134292 }, + { "lat": 40.7099539, "lon": -74.0133091 }, + { "lat": 40.7099425, "lon": -74.0132955 }, + { "lat": 40.7099301, "lon": -74.0132751 }, + { "lat": 40.7099283, "lon": -74.0132771 }, + { "lat": 40.7099267, "lon": -74.0132791 }, + { "lat": 40.7099135, "lon": -74.0132949 }, + { "lat": 40.7099023, "lon": -74.0133084 }, + { "lat": 40.7101282, "lon": -74.0136388 }, + { "lat": 40.7101767, "lon": -74.0137119 }, + { "lat": 40.7102065, "lon": -74.0137741 }, + { "lat": 40.7102431, "lon": -74.0138555 }, + { "lat": 40.7102617, "lon": -74.0138961 }, + { "lat": 40.7102629, "lon": -74.0138953 }, + { "lat": 40.7102735, "lon": -74.0138879 }, + { "lat": 40.7102544, "lon": -74.0138312 }, + { "lat": 40.7102244, "lon": -74.0137731 }, + { "lat": 40.7102284, "lon": -74.0137290 }, + { "lat": 40.7102514, "lon": -74.0137721 }, + { "lat": 40.7102615, "lon": -74.0137886 }, + { "lat": 40.7102755, "lon": -74.0137907 }, + { "lat": 40.7102883, "lon": -74.0137926 }, + { "lat": 40.7103542, "lon": -74.0138228 }, + { "lat": 40.7104077, "lon": -74.0138955 }, + { "lat": 40.7104515, "lon": -74.0139919 }, + { "lat": 40.7104544, "lon": -74.0140145 }, + { "lat": 40.7105059, "lon": -74.0140077 }, + { "lat": 40.7105961, "lon": -74.0140692 }, + { "lat": 40.7106156, "lon": -74.0141291 }, + { "lat": 40.7106183, "lon": -74.0141286 }, + { "lat": 40.7106343, "lon": -74.0141812 }, + { "lat": 40.7106451, "lon": -74.0142164 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936389, + "bounds": { + "minlat": 40.7101125, + "minlon": -74.0135355, + "maxlat": 40.7101633, + "maxlon": -74.0134199 + }, + "nodes": [ + 6417640525, + 6417640526, + 6417640522, + 6417640524, + 6417640525 + ], + "geometry": [ + { "lat": 40.7101580, "lon": -74.0135355 }, + { "lat": 40.7101125, "lon": -74.0134241 }, + { "lat": 40.7101184, "lon": -74.0134199 }, + { "lat": 40.7101633, "lon": -74.0135318 }, + { "lat": 40.7101580, "lon": -74.0135355 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936392, + "bounds": { + "minlat": 40.7104054, + "minlon": -74.0138518, + "maxlat": 40.7104137, + "maxlon": -74.0138312 + }, + "nodes": [ + 6417640559, + 6417640548, + 6417640550, + 6417640546, + 6417640559 + ], + "geometry": [ + { "lat": 40.7104054, "lon": -74.0138386 }, + { "lat": 40.7104086, "lon": -74.0138312 }, + { "lat": 40.7104137, "lon": -74.0138502 }, + { "lat": 40.7104106, "lon": -74.0138518 }, + { "lat": 40.7104054, "lon": -74.0138386 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936394, + "bounds": { + "minlat": 40.7103639, + "minlon": -74.0138386, + "maxlat": 40.7104086, + "maxlon": -74.0137431 + }, + "nodes": [ + 6417640560, + 6417640561, + 6417640548, + 6417640559, + 6417640554, + 6417640556, + 6417640560 + ], + "geometry": [ + { "lat": 40.7103652, "lon": -74.0137431 }, + { "lat": 40.7103919, "lon": -74.0137752 }, + { "lat": 40.7104086, "lon": -74.0138312 }, + { "lat": 40.7104054, "lon": -74.0138386 }, + { "lat": 40.7103878, "lon": -74.0137908 }, + { "lat": 40.7103639, "lon": -74.0137523 }, + { "lat": 40.7103652, "lon": -74.0137431 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936395, + "bounds": { + "minlat": 40.7103570, + "minlon": -74.0137523, + "maxlat": 40.7103652, + "maxlon": -74.0137364 + }, + "nodes": [ + 6417640556, + 6417640560, + 6417640551, + 6417640553, + 6417640556 + ], + "geometry": [ + { "lat": 40.7103639, "lon": -74.0137523 }, + { "lat": 40.7103652, "lon": -74.0137431 }, + { "lat": 40.7103583, "lon": -74.0137364 }, + { "lat": 40.7103570, "lon": -74.0137434 }, + { "lat": 40.7103639, "lon": -74.0137523 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936398, + "bounds": { + "minlat": 40.7102504, + "minlon": -74.0138869, + "maxlat": 40.7102793, + "maxlon": -74.0137735 + }, + "nodes": [ + 6417640600, + 6417640594, + 6417640590, + 6417640592, + 6417640605, + 6417640595, + 6417640600 + ], + "geometry": [ + { "lat": 40.7102504, "lon": -74.0137735 }, + { "lat": 40.7102603, "lon": -74.0137891 }, + { "lat": 40.7102793, "lon": -74.0138671 }, + { "lat": 40.7102749, "lon": -74.0138869 }, + { "lat": 40.7102562, "lon": -74.0138312 }, + { "lat": 40.7102622, "lon": -74.0138189 }, + { "lat": 40.7102504, "lon": -74.0137735 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936399, + "bounds": { + "minlat": 40.7103419, + "minlon": -74.0141452, + "maxlat": 40.7106139, + "maxlon": -74.0139817 + }, + "nodes": [ + 6417640585, + 6417640586, + 6417640583, + 6417640584, + 6417640581, + 6417640582, + 6417691309, + 6417691310, + 6417691311, + 6417640585 + ], + "geometry": [ + { "lat": 40.7106139, "lon": -74.0141298 }, + { "lat": 40.7105945, "lon": -74.0140702 }, + { "lat": 40.7105059, "lon": -74.0140099 }, + { "lat": 40.7104056, "lon": -74.0140230 }, + { "lat": 40.7103689, "lon": -74.0139856 }, + { "lat": 40.7103419, "lon": -74.0139817 }, + { "lat": 40.7103862, "lon": -74.0140758 }, + { "lat": 40.7105321, "lon": -74.0140621 }, + { "lat": 40.7105594, "lon": -74.0141452 }, + { "lat": 40.7106139, "lon": -74.0141298 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936401, + "bounds": { + "minlat": 40.7102276, + "minlon": -74.0137478, + "maxlat": 40.7102369, + "maxlon": -74.0137320 + }, + "nodes": [ + 6417640597, + 6417640593, + 6417640598, + 6417640597 + ], + "geometry": [ + { "lat": 40.7102276, "lon": -74.0137474 }, + { "lat": 40.7102292, "lon": -74.0137320 }, + { "lat": 40.7102369, "lon": -74.0137478 }, + { "lat": 40.7102276, "lon": -74.0137474 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936408, + "bounds": { + "minlat": 40.7105498, + "minlon": -74.0139953, + "maxlat": 40.7106458, + "maxlon": -74.0138125 + }, + "nodes": [ + 6417640658, + 6417640657, + 6417640654, + 6417640655, + 6417640652, + 6417640664, + 6417640660, + 6417640661, + 6417640658 + ], + "geometry": [ + { "lat": 40.7105684, "lon": -74.0138872 }, + { "lat": 40.7105498, "lon": -74.0138422 }, + { "lat": 40.7105546, "lon": -74.0138125 }, + { "lat": 40.7105917, "lon": -74.0138891 }, + { "lat": 40.7106458, "lon": -74.0139842 }, + { "lat": 40.7106444, "lon": -74.0139953 }, + { "lat": 40.7105832, "lon": -74.0138869 }, + { "lat": 40.7105730, "lon": -74.0138834 }, + { "lat": 40.7105684, "lon": -74.0138872 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936409, + "bounds": { + "minlat": 40.7106371, + "minlon": -74.0140432, + "maxlat": 40.7106460, + "maxlon": -74.0140273 + }, + "nodes": [ + 6417640663, + 6417640656, + 6417640653, + 9088260045, + 6417640663 + ], + "geometry": [ + { "lat": 40.7106457, "lon": -74.0140273 }, + { "lat": 40.7106371, "lon": -74.0140323 }, + { "lat": 40.7106460, "lon": -74.0140432 }, + { "lat": 40.7106459, "lon": -74.0140395 }, + { "lat": 40.7106457, "lon": -74.0140273 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936410, + "bounds": { + "minlat": 40.7104727, + "minlon": -74.0137798, + "maxlat": 40.7105244, + "maxlon": -74.0136004 + }, + "nodes": [ + 6417640674, + 6417640668, + 6417640670, + 6417640666, + 6417640667, + 6417640671, + 6417640672, + 6417640674 + ], + "geometry": [ + { "lat": 40.7104985, "lon": -74.0137173 }, + { "lat": 40.7105225, "lon": -74.0137798 }, + { "lat": 40.7105244, "lon": -74.0137504 }, + { "lat": 40.7105052, "lon": -74.0136916 }, + { "lat": 40.7104838, "lon": -74.0136248 }, + { "lat": 40.7104727, "lon": -74.0136004 }, + { "lat": 40.7105031, "lon": -74.0137087 }, + { "lat": 40.7104985, "lon": -74.0137173 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936412, + "bounds": { + "minlat": 40.7103083, + "minlon": -74.0134216, + "maxlat": 40.7103756, + "maxlon": -74.0133011 + }, + "nodes": [ + 6417640680, + 6417640684, + 6417640682, + 6417640688, + 6417640678, + 6417640679, + 6417640676, + 6417640677, + 6417640680 + ], + "geometry": [ + { "lat": 40.7103083, "lon": -74.0133186 }, + { "lat": 40.7103240, "lon": -74.0133172 }, + { "lat": 40.7103522, "lon": -74.0133746 }, + { "lat": 40.7103458, "lon": -74.0133885 }, + { "lat": 40.7103724, "lon": -74.0134216 }, + { "lat": 40.7103756, "lon": -74.0134099 }, + { "lat": 40.7103573, "lon": -74.0133781 }, + { "lat": 40.7103195, "lon": -74.0133011 }, + { "lat": 40.7103083, "lon": -74.0133186 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936420, + "bounds": { + "minlat": 40.7100423, + "minlon": -74.0135448, + "maxlat": 40.7103426, + "maxlon": -74.0130669 + }, + "nodes": [ + 6417640509, + 6417640507, + 2824641655, + 6417713229, + 6417713230, + 6417640489, + 6417640486, + 6417640483, + 6417640480, + 6417640478, + 6417640476, + 6417640308, + 6417640307, + 6417640475, + 6417640306, + 6417640474, + 6417640305, + 6417640304, + 6417640473, + 6417640303, + 6417640472, + 6417640302, + 6417640301, + 2824641663, + 6417640300, + 6417640423, + 6417640424, + 6417640299, + 6417640298, + 6417640421, + 6417640297, + 6417640420, + 6417640296, + 6417640419, + 6417640295, + 6417640418, + 6417640422, + 5889526049, + 6431476921, + 6417640378, + 6419513827, + 6419513830, + 6417640467, + 6417640464, + 6417640425, + 6417640513, + 6417640459, + 6417640456, + 6417640453, + 6417640450, + 6417640447, + 6417640444, + 6417640518, + 8213966238, + 6417640519, + 6417640439, + 6417640436, + 6417640434, + 6417640431, + 6417640372, + 6417640370, + 6417640427, + 6417640522, + 6417640526, + 6417640365, + 8213966242, + 6417640509 + ], + "geometry": [ + { "lat": 40.7100423, "lon": -74.0134292 }, + { "lat": 40.7100966, "lon": -74.0133877 }, + { "lat": 40.7101277, "lon": -74.0133632 }, + { "lat": 40.7101343, "lon": -74.0133765 }, + { "lat": 40.7101346, "lon": -74.0133872 }, + { "lat": 40.7101410, "lon": -74.0133982 }, + { "lat": 40.7101495, "lon": -74.0134042 }, + { "lat": 40.7101592, "lon": -74.0134062 }, + { "lat": 40.7101677, "lon": -74.0134035 }, + { "lat": 40.7101737, "lon": -74.0133979 }, + { "lat": 40.7101757, "lon": -74.0133940 }, + { "lat": 40.7101859, "lon": -74.0133936 }, + { "lat": 40.7101967, "lon": -74.0133926 }, + { "lat": 40.7102067, "lon": -74.0133870 }, + { "lat": 40.7102171, "lon": -74.0133801 }, + { "lat": 40.7102268, "lon": -74.0133689 }, + { "lat": 40.7102346, "lon": -74.0133565 }, + { "lat": 40.7102410, "lon": -74.0133431 }, + { "lat": 40.7102498, "lon": -74.0133408 }, + { "lat": 40.7102549, "lon": -74.0133382 }, + { "lat": 40.7102598, "lon": -74.0133322 }, + { "lat": 40.7102637, "lon": -74.0133216 }, + { "lat": 40.7102643, "lon": -74.0133099 }, + { "lat": 40.7102603, "lon": -74.0132940 }, + { "lat": 40.7102563, "lon": -74.0132930 }, + { "lat": 40.7102413, "lon": -74.0132517 }, + { "lat": 40.7102488, "lon": -74.0132468 }, + { "lat": 40.7102285, "lon": -74.0131973 }, + { "lat": 40.7102194, "lon": -74.0132035 }, + { "lat": 40.7102170, "lon": -74.0131894 }, + { "lat": 40.7102138, "lon": -74.0131716 }, + { "lat": 40.7102075, "lon": -74.0131531 }, + { "lat": 40.7102011, "lon": -74.0131409 }, + { "lat": 40.7101951, "lon": -74.0131323 }, + { "lat": 40.7101861, "lon": -74.0131222 }, + { "lat": 40.7101915, "lon": -74.0131072 }, + { "lat": 40.7101842, "lon": -74.0130909 }, + { "lat": 40.7102010, "lon": -74.0130775 }, + { "lat": 40.7102145, "lon": -74.0130677 }, + { "lat": 40.7102156, "lon": -74.0130669 }, + { "lat": 40.7102996, "lon": -74.0132556 }, + { "lat": 40.7103070, "lon": -74.0133156 }, + { "lat": 40.7103073, "lon": -74.0133186 }, + { "lat": 40.7103166, "lon": -74.0133544 }, + { "lat": 40.7103426, "lon": -74.0133865 }, + { "lat": 40.7103309, "lon": -74.0134061 }, + { "lat": 40.7103260, "lon": -74.0134121 }, + { "lat": 40.7103015, "lon": -74.0134448 }, + { "lat": 40.7103022, "lon": -74.0134647 }, + { "lat": 40.7102973, "lon": -74.0134855 }, + { "lat": 40.7102885, "lon": -74.0135053 }, + { "lat": 40.7102945, "lon": -74.0135100 }, + { "lat": 40.7102917, "lon": -74.0135162 }, + { "lat": 40.7102799, "lon": -74.0135257 }, + { "lat": 40.7102593, "lon": -74.0135423 }, + { "lat": 40.7102459, "lon": -74.0135448 }, + { "lat": 40.7102374, "lon": -74.0135439 }, + { "lat": 40.7102299, "lon": -74.0135429 }, + { "lat": 40.7102173, "lon": -74.0135383 }, + { "lat": 40.7102014, "lon": -74.0135294 }, + { "lat": 40.7101642, "lon": -74.0135312 }, + { "lat": 40.7101198, "lon": -74.0134190 }, + { "lat": 40.7101184, "lon": -74.0134199 }, + { "lat": 40.7101125, "lon": -74.0134241 }, + { "lat": 40.7100654, "lon": -74.0134593 }, + { "lat": 40.7100575, "lon": -74.0134490 }, + { "lat": 40.7100423, "lon": -74.0134292 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936421, + "bounds": { + "minlat": 40.7102593, + "minlon": -74.0139006, + "maxlat": 40.7105672, + "maxlon": -74.0133865 + }, + "nodes": [ + 6417640555, + 6417640552, + 6417640549, + 6417640395, + 6417640394, + 6417640544, + 6417640541, + 6417640538, + 6417640535, + 6417640532, + 6417640529, + 6417640392, + 6417640391, + 6417640380, + 8213966236, + 6417640521, + 6417640520, + 6417640519, + 8213966238, + 6417640518, + 6417640517, + 6417640516, + 6417640515, + 6417640514, + 6481286027, + 6417640513, + 6417640425, + 6417640511, + 6417640408, + 6417640500, + 6417640508, + 6417640505, + 6417640405, + 6417640404, + 6417640558, + 8213966247, + 6417640555 + ], + "geometry": [ + { "lat": 40.7105428, "lon": -74.0139006 }, + { "lat": 40.7105300, "lon": -74.0138587 }, + { "lat": 40.7104923, "lon": -74.0137799 }, + { "lat": 40.7104120, "lon": -74.0137387 }, + { "lat": 40.7104005, "lon": -74.0137190 }, + { "lat": 40.7104012, "lon": -74.0137150 }, + { "lat": 40.7103908, "lon": -74.0137074 }, + { "lat": 40.7103664, "lon": -74.0136974 }, + { "lat": 40.7103401, "lon": -74.0136665 }, + { "lat": 40.7103214, "lon": -74.0136475 }, + { "lat": 40.7103189, "lon": -74.0136533 }, + { "lat": 40.7103569, "lon": -74.0137086 }, + { "lat": 40.7103582, "lon": -74.0137315 }, + { "lat": 40.7103557, "lon": -74.0137442 }, + { "lat": 40.7103481, "lon": -74.0137574 }, + { "lat": 40.7103429, "lon": -74.0137665 }, + { "lat": 40.7103028, "lon": -74.0136343 }, + { "lat": 40.7102593, "lon": -74.0135423 }, + { "lat": 40.7102799, "lon": -74.0135257 }, + { "lat": 40.7102917, "lon": -74.0135162 }, + { "lat": 40.7103292, "lon": -74.0136200 }, + { "lat": 40.7104604, "lon": -74.0137244 }, + { "lat": 40.7104718, "lon": -74.0137228 }, + { "lat": 40.7103865, "lon": -74.0134905 }, + { "lat": 40.7103591, "lon": -74.0134462 }, + { "lat": 40.7103309, "lon": -74.0134061 }, + { "lat": 40.7103426, "lon": -74.0133865 }, + { "lat": 40.7103718, "lon": -74.0134225 }, + { "lat": 40.7103731, "lon": -74.0134224 }, + { "lat": 40.7104487, "lon": -74.0135833 }, + { "lat": 40.7104970, "lon": -74.0137186 }, + { "lat": 40.7105222, "lon": -74.0137840 }, + { "lat": 40.7105240, "lon": -74.0137833 }, + { "lat": 40.7105483, "lon": -74.0138399 }, + { "lat": 40.7105672, "lon": -74.0138882 }, + { "lat": 40.7105537, "lon": -74.0138951 }, + { "lat": 40.7105428, "lon": -74.0139006 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684936422, + "bounds": { + "minlat": 40.7102615, + "minlon": -74.0140211, + "maxlat": 40.7104544, + "maxlon": -74.0137886 + }, + "nodes": [ + 6417640696, + 6417640617, + 6417640614, + 6417640611, + 6417691308, + 6417640566, + 6419503690, + 6419497808, + 6419497806, + 5813276178, + 6431476924, + 6417640603, + 6417640353, + 6431476925, + 6417640351, + 6417640599, + 6417640596, + 6417640335, + 8213966237, + 6417640332, + 6417640591, + 6417640588, + 6417640568, + 6417640699, + 6417640696 + ], + "geometry": [ + { "lat": 40.7104544, "lon": -74.0140145 }, + { "lat": 40.7104062, "lon": -74.0140211 }, + { "lat": 40.7103697, "lon": -74.0139841 }, + { "lat": 40.7103416, "lon": -74.0139792 }, + { "lat": 40.7103209, "lon": -74.0139357 }, + { "lat": 40.7103174, "lon": -74.0139334 }, + { "lat": 40.7103152, "lon": -74.0139351 }, + { "lat": 40.7103131, "lon": -74.0139368 }, + { "lat": 40.7103101, "lon": -74.0139391 }, + { "lat": 40.7102996, "lon": -74.0139466 }, + { "lat": 40.7102899, "lon": -74.0139536 }, + { "lat": 40.7102889, "lon": -74.0139543 }, + { "lat": 40.7102617, "lon": -74.0138961 }, + { "lat": 40.7102629, "lon": -74.0138953 }, + { "lat": 40.7102735, "lon": -74.0138879 }, + { "lat": 40.7102745, "lon": -74.0138909 }, + { "lat": 40.7102808, "lon": -74.0138663 }, + { "lat": 40.7102615, "lon": -74.0137886 }, + { "lat": 40.7102755, "lon": -74.0137907 }, + { "lat": 40.7102883, "lon": -74.0137926 }, + { "lat": 40.7103044, "lon": -74.0138883 }, + { "lat": 40.7103462, "lon": -74.0139300 }, + { "lat": 40.7104411, "lon": -74.0139919 }, + { "lat": 40.7104515, "lon": -74.0139919 }, + { "lat": 40.7104544, "lon": -74.0140145 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684939457, + "bounds": { + "minlat": 40.7097433, + "minlon": -74.0132048, + "maxlat": 40.7098355, + "maxlon": -74.0130661 + }, + "nodes": [ + 6419487802, + 6417669269, + 6417669270, + 6419487805, + 6417640364, + 6417685285, + 5889526057, + 6419487802 + ], + "geometry": [ + { "lat": 40.7098355, "lon": -74.0131683 }, + { "lat": 40.7097718, "lon": -74.0130661 }, + { "lat": 40.7097584, "lon": -74.0130803 }, + { "lat": 40.7097445, "lon": -74.0130940 }, + { "lat": 40.7097433, "lon": -74.0130950 }, + { "lat": 40.7098055, "lon": -74.0132048 }, + { "lat": 40.7098190, "lon": -74.0131877 }, + { "lat": 40.7098355, "lon": -74.0131683 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684939459, + "bounds": { + "minlat": 40.7106709, + "minlon": -74.0142435, + "maxlat": 40.7107952, + "maxlon": -74.0140325 + }, + "nodes": [ + 6419513803, + 6417669193, + 6431476917, + 6417640445, + 6417640413, + 6431476918, + 5889526044, + 6417640414, + 6419513808, + 6419513803 + ], + "geometry": [ + { "lat": 40.7107759, "lon": -74.0142435 }, + { "lat": 40.7107859, "lon": -74.0142358 }, + { "lat": 40.7107939, "lon": -74.0142294 }, + { "lat": 40.7107952, "lon": -74.0142283 }, + { "lat": 40.7106973, "lon": -74.0140325 }, + { "lat": 40.7106960, "lon": -74.0140336 }, + { "lat": 40.7106850, "lon": -74.0140427 }, + { "lat": 40.7106709, "lon": -74.0140554 }, + { "lat": 40.7106722, "lon": -74.0140569 }, + { "lat": 40.7107759, "lon": -74.0142435 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684939469, + "bounds": { + "minlat": 40.7104251, + "minlon": -74.0136615, + "maxlat": 40.7105339, + "maxlon": -74.0134669 + }, + "nodes": [ + 6419513820, + 10288454350, + 6417669251, + 6417669250, + 6417669249, + 6417669248, + 6417669247, + 10288454349, + 6417669246, + 6417669245, + 6417669244, + 6419513818, + 6419513820 + ], + "geometry": [ + { "lat": 40.7104251, "lon": -74.0134690 }, + { "lat": 40.7104325, "lon": -74.0134669 }, + { "lat": 40.7104407, "lon": -74.0134669 }, + { "lat": 40.7104525, "lon": -74.0134701 }, + { "lat": 40.7104624, "lon": -74.0134770 }, + { "lat": 40.7104716, "lon": -74.0134889 }, + { "lat": 40.7105261, "lon": -74.0135915 }, + { "lat": 40.7105314, "lon": -74.0136065 }, + { "lat": 40.7105339, "lon": -74.0136206 }, + { "lat": 40.7105326, "lon": -74.0136349 }, + { "lat": 40.7105276, "lon": -74.0136493 }, + { "lat": 40.7105189, "lon": -74.0136615 }, + { "lat": 40.7104251, "lon": -74.0134690 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684939474, + "bounds": { + "minlat": 40.7097483, + "minlon": -74.0133084, + "maxlat": 40.7100913, + "maxlon": -74.0128859 + }, + "nodes": [ + 6417669276, + 6431476934, + 8213966243, + 6417685292, + 6417685291, + 6417685290, + 6417685289, + 6431476939, + 6431476945, + 6431476947, + 6431476938, + 6431476949, + 6431476948, + 6431476932, + 6431476937, + 6417685288, + 6417764331, + 6419487804, + 6419487802, + 5889526057, + 6417685285, + 6417669284, + 6431476930, + 6417669283, + 6417669274, + 8213966235, + 6417669273, + 6417669277, + 6417669281, + 6417669280, + 6417669192, + 6417669278, + 6431476935, + 6417669275, + 6417669276 + ], + "geometry": [ + { "lat": 40.7097483, "lon": -74.0129869 }, + { "lat": 40.7097487, "lon": -74.0129885 }, + { "lat": 40.7097535, "lon": -74.0130071 }, + { "lat": 40.7097580, "lon": -74.0130249 }, + { "lat": 40.7100448, "lon": -74.0129222 }, + { "lat": 40.7100467, "lon": -74.0129274 }, + { "lat": 40.7100655, "lon": -74.0129743 }, + { "lat": 40.7100035, "lon": -74.0130362 }, + { "lat": 40.7099720, "lon": -74.0129552 }, + { "lat": 40.7099573, "lon": -74.0129602 }, + { "lat": 40.7099914, "lon": -74.0130481 }, + { "lat": 40.7099361, "lon": -74.0131040 }, + { "lat": 40.7098852, "lon": -74.0129879 }, + { "lat": 40.7098717, "lon": -74.0129928 }, + { "lat": 40.7099256, "lon": -74.0131145 }, + { "lat": 40.7099266, "lon": -74.0131168 }, + { "lat": 40.7098508, "lon": -74.0131898 }, + { "lat": 40.7098494, "lon": -74.0131909 }, + { "lat": 40.7098355, "lon": -74.0131683 }, + { "lat": 40.7098190, "lon": -74.0131877 }, + { "lat": 40.7098055, "lon": -74.0132048 }, + { "lat": 40.7098339, "lon": -74.0132589 }, + { "lat": 40.7098348, "lon": -74.0132580 }, + { "lat": 40.7098557, "lon": -74.0132376 }, + { "lat": 40.7099023, "lon": -74.0133084 }, + { "lat": 40.7099135, "lon": -74.0132949 }, + { "lat": 40.7099267, "lon": -74.0132791 }, + { "lat": 40.7098771, "lon": -74.0132143 }, + { "lat": 40.7100913, "lon": -74.0129885 }, + { "lat": 40.7100825, "lon": -74.0129684 }, + { "lat": 40.7100736, "lon": -74.0129475 }, + { "lat": 40.7100650, "lon": -74.0129269 }, + { "lat": 40.7100480, "lon": -74.0128875 }, + { "lat": 40.7100473, "lon": -74.0128859 }, + { "lat": 40.7097483, "lon": -74.0129869 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 684944660, + "bounds": { + "minlat": 40.7103983, + "minlon": -74.0134122, + "maxlat": 40.7105437, + "maxlon": -74.0133802 + }, + "nodes": [ + 6419513822, + 10288454356, + 10288454360, + 10288454361, + 10288454359, + 10288454362, + 6417761616 + ], + "geometry": [ + { "lat": 40.7103983, "lon": -74.0134122 }, + { "lat": 40.7104142, "lon": -74.0133977 }, + { "lat": 40.7104347, "lon": -74.0133857 }, + { "lat": 40.7104641, "lon": -74.0133802 }, + { "lat": 40.7104919, "lon": -74.0133819 }, + { "lat": 40.7105158, "lon": -74.0133891 }, + { "lat": 40.7105437, "lon": -74.0134042 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "lanes": "2", + "lit": "yes", + "motor_vehicle": "permit", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 684945271, + "bounds": { + "minlat": 40.7101285, + "minlon": -74.0138096, + "maxlat": 40.7101971, + "maxlon": -74.0137592 + }, + "nodes": [ + 6417764328, + 8262936688, + 6419487821 + ], + "geometry": [ + { "lat": 40.7101285, "lon": -74.0138096 }, + { "lat": 40.7101804, "lon": -74.0137714 }, + { "lat": 40.7101971, "lon": -74.0137592 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 685106649, + "bounds": { + "minlat": 40.7103152, + "minlon": -74.0143224, + "maxlat": 40.7106329, + "maxlon": -74.0139334 + }, + "nodes": [ + 6419503685, + 6419503686, + 6419503687, + 6419503688, + 6419503689, + 6417640566, + 6419503690, + 6419503691, + 6419503692, + 6417640565, + 6417640570, + 6417640575, + 6417640576, + 6417640573, + 6417640574, + 6417640571, + 6417640572, + 6419503685 + ], + "geometry": [ + { "lat": 40.7106329, "lon": -74.0141816 }, + { "lat": 40.7106175, "lon": -74.0141326 }, + { "lat": 40.7105575, "lon": -74.0141493 }, + { "lat": 40.7105302, "lon": -74.0140670 }, + { "lat": 40.7103854, "lon": -74.0140794 }, + { "lat": 40.7103174, "lon": -74.0139334 }, + { "lat": 40.7103152, "lon": -74.0139351 }, + { "lat": 40.7103829, "lon": -74.0140836 }, + { "lat": 40.7104913, "lon": -74.0143224 }, + { "lat": 40.7105961, "lon": -74.0142914 }, + { "lat": 40.7105953, "lon": -74.0142869 }, + { "lat": 40.7104923, "lon": -74.0143186 }, + { "lat": 40.7103874, "lon": -74.0140863 }, + { "lat": 40.7105255, "lon": -74.0140731 }, + { "lat": 40.7105537, "lon": -74.0141573 }, + { "lat": 40.7106146, "lon": -74.0141398 }, + { "lat": 40.7106289, "lon": -74.0141828 }, + { "lat": 40.7106329, "lon": -74.0141816 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 685107617, + "bounds": { + "minlat": 40.7106722, + "minlon": -74.0142500, + "maxlat": 40.7107704, + "maxlon": -74.0140643 + }, + "nodes": [ + 6417640650, + 6419513835, + 6419513836, + 6419513837, + 6417640649, + 6417640646, + 6417640650 + ], + "geometry": [ + { "lat": 40.7107401, "lon": -74.0142471 }, + { "lat": 40.7107411, "lon": -74.0142500 }, + { "lat": 40.7107704, "lon": -74.0142411 }, + { "lat": 40.7106725, "lon": -74.0140643 }, + { "lat": 40.7106722, "lon": -74.0140686 }, + { "lat": 40.7107674, "lon": -74.0142392 }, + { "lat": 40.7107401, "lon": -74.0142471 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 685193380, + "bounds": { + "minlat": 40.7253852, + "minlon": -73.9248066, + "maxlat": 40.7262790, + "maxlon": -73.9227162 + }, + "nodes": [ + 6420466823, + 6420466822, + 7712021775 + ], + "geometry": [ + { "lat": 40.7253852, "lon": -73.9227162 }, + { "lat": 40.7261754, "lon": -73.9245638 }, + { "lat": 40.7262790, "lon": -73.9248066 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 685193381, + "bounds": { + "minlat": 40.7253257, + "minlon": -73.9254852, + "maxlat": 40.7269538, + "maxlon": -73.9243178 + }, + "nodes": [ + 6420466832, + 11397394681, + 7712021775, + 7168537551, + 7712051786, + 6420466831, + 6420466830 + ], + "geometry": [ + { "lat": 40.7269538, "lon": -73.9243178 }, + { "lat": 40.7263705, "lon": -73.9247403 }, + { "lat": 40.7262790, "lon": -73.9248066 }, + { "lat": 40.7262702, "lon": -73.9248131 }, + { "lat": 40.7262395, "lon": -73.9248359 }, + { "lat": 40.7259772, "lon": -73.9250305 }, + { "lat": 40.7253257, "lon": -73.9254852 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 685311599, + "bounds": { + "minlat": 40.7130870, + "minlon": -73.9441480, + "maxlat": 40.7133470, + "maxlon": -73.9413850 + }, + "nodes": [ + 42467858, + 9767624913, + 9767624929, + 42502973, + 9767624928, + 9767624943, + 42513623 + ], + "geometry": [ + { "lat": 40.7130870, "lon": -73.9441480 }, + { "lat": 40.7130963, "lon": -73.9440489 }, + { "lat": 40.7132357, "lon": -73.9425541 }, + { "lat": 40.7132440, "lon": -73.9424661 }, + { "lat": 40.7132520, "lon": -73.9423828 }, + { "lat": 40.7133374, "lon": -73.9414902 }, + { "lat": 40.7133470, "lon": -73.9413850 } + ], + "tags": { + "highway": "residential", + "name": "Ainslie Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 685311601, + "bounds": { + "minlat": 40.7102210, + "minlon": -73.9509940, + "maxlat": 40.7109010, + "maxlon": -73.9437880 + }, + "nodes": [ + 42467844, + 9752590860, + 9752590867, + 42535525, + 9752590868, + 9752590871, + 42491169, + 9752590872, + 9752590887, + 42527642, + 9752590888, + 10736651830, + 5481854389, + 8232714854, + 9752590891, + 42520577 + ], + "geometry": [ + { "lat": 40.7109010, "lon": -73.9437880 }, + { "lat": 40.7108904, "lon": -73.9438990 }, + { "lat": 40.7107476, "lon": -73.9453945 }, + { "lat": 40.7107400, "lon": -73.9454750 }, + { "lat": 40.7107315, "lon": -73.9455658 }, + { "lat": 40.7106017, "lon": -73.9469996 }, + { "lat": 40.7105880, "lon": -73.9471040 }, + { "lat": 40.7105780, "lon": -73.9472134 }, + { "lat": 40.7104399, "lon": -73.9486862 }, + { "lat": 40.7104320, "lon": -73.9487710 }, + { "lat": 40.7104231, "lon": -73.9488656 }, + { "lat": 40.7104142, "lon": -73.9489597 }, + { "lat": 40.7103079, "lon": -73.9500783 }, + { "lat": 40.7102381, "lon": -73.9508137 }, + { "lat": 40.7102313, "lon": -73.9508851 }, + { "lat": 40.7102210, "lon": -73.9509940 } + ], + "tags": { + "highway": "residential", + "name": "Maujer Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 685311602, + "bounds": { + "minlat": 40.7109010, + "minlon": -73.9443880, + "maxlat": 40.7145320, + "maxlon": -73.9437880 + }, + "nodes": [ + 42467844, + 9752590861, + 8955500260, + 11229826588, + 5471820443, + 42467848, + 5471820447, + 11229826587, + 5435890979, + 42467850, + 5435890977, + 11229826586, + 9767624912, + 42467858, + 9767624910, + 11229826585, + 9767624873, + 42467863, + 9767624875, + 11229826584, + 6235394667, + 42467872 + ], + "geometry": [ + { "lat": 40.7109010, "lon": -73.9437880 }, + { "lat": 40.7109791, "lon": -73.9438011 }, + { "lat": 40.7111526, "lon": -73.9438299 }, + { "lat": 40.7113668, "lon": -73.9438656 }, + { "lat": 40.7115552, "lon": -73.9438969 }, + { "lat": 40.7116410, "lon": -73.9439110 }, + { "lat": 40.7117290, "lon": -73.9439254 }, + { "lat": 40.7119064, "lon": -73.9439545 }, + { "lat": 40.7123238, "lon": -73.9440231 }, + { "lat": 40.7123780, "lon": -73.9440320 }, + { "lat": 40.7124519, "lon": -73.9440442 }, + { "lat": 40.7128581, "lon": -73.9441104 }, + { "lat": 40.7130341, "lon": -73.9441391 }, + { "lat": 40.7130870, "lon": -73.9441480 }, + { "lat": 40.7131569, "lon": -73.9441595 }, + { "lat": 40.7132676, "lon": -73.9441778 }, + { "lat": 40.7137386, "lon": -73.9442555 }, + { "lat": 40.7137960, "lon": -73.9442650 }, + { "lat": 40.7138679, "lon": -73.9442771 }, + { "lat": 40.7142698, "lon": -73.9443449 }, + { "lat": 40.7144559, "lon": -73.9443763 }, + { "lat": 40.7145320, "lon": -73.9443880 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 685311603, + "bounds": { + "minlat": 40.7116926, + "minlon": -73.9512284, + "maxlat": 40.7122180, + "maxlon": -73.9457170 + }, + "nodes": [ + 42514870, + 9767624867, + 8233048587, + 9767624864, + 42491177, + 9767624823, + 5715697347, + 9767624826, + 42514864, + 9767624847, + 9767624850, + 6235394660, + 7976681097 + ], + "geometry": [ + { "lat": 40.7122180, "lon": -73.9457170 }, + { "lat": 40.7122095, "lon": -73.9458067 }, + { "lat": 40.7120758, "lon": -73.9472103 }, + { "lat": 40.7120684, "lon": -73.9472881 }, + { "lat": 40.7120610, "lon": -73.9473660 }, + { "lat": 40.7120528, "lon": -73.9474517 }, + { "lat": 40.7119185, "lon": -73.9488620 }, + { "lat": 40.7119120, "lon": -73.9489298 }, + { "lat": 40.7119040, "lon": -73.9490140 }, + { "lat": 40.7118953, "lon": -73.9491059 }, + { "lat": 40.7117103, "lon": -73.9510423 }, + { "lat": 40.7117030, "lon": -73.9511096 }, + { "lat": 40.7116926, "lon": -73.9512284 } + ], + "tags": { + "highway": "residential", + "name": "Powers Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Powers", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 685311604, + "bounds": { + "minlat": 40.7122180, + "minlon": -73.9488750, + "maxlat": 40.7212920, + "maxlon": -73.9457170 + }, + "nodes": [ + 42514870, + 9955210398, + 9767624889, + 42525818, + 9767624891, + 9955210403, + 42528046, + 9955210404, + 9795356100, + 42484207, + 9795356098, + 9795355958, + 42518614, + 9955210425, + 9795355938, + 42535559, + 9795355939, + 9795355837, + 42509933, + 9795355839, + 9942799102, + 42505939, + 9942799101, + 5520860788, + 42529769, + 5520860779, + 9945078173, + 42476522, + 8702221553, + 12247713627, + 11139864252, + 42476636, + 9945078167, + 1934649927, + 9939430906, + 42512070, + 9789393785, + 9939430909, + 42532947, + 9939430910, + 42523210, + 5482193517, + 6228788698, + 42466376 + ], + "geometry": [ + { "lat": 40.7122180, "lon": -73.9457170 }, + { "lat": 40.7122847, "lon": -73.9457280 }, + { "lat": 40.7128717, "lon": -73.9458249 }, + { "lat": 40.7129270, "lon": -73.9458340 }, + { "lat": 40.7129955, "lon": -73.9458451 }, + { "lat": 40.7135770, "lon": -73.9459391 }, + { "lat": 40.7136380, "lon": -73.9459490 }, + { "lat": 40.7137073, "lon": -73.9459604 }, + { "lat": 40.7142973, "lon": -73.9460577 }, + { "lat": 40.7143720, "lon": -73.9460700 }, + { "lat": 40.7144611, "lon": -73.9460849 }, + { "lat": 40.7150127, "lon": -73.9461769 }, + { "lat": 40.7150670, "lon": -73.9461860 }, + { "lat": 40.7151343, "lon": -73.9461971 }, + { "lat": 40.7157240, "lon": -73.9462940 }, + { "lat": 40.7157790, "lon": -73.9463030 }, + { "lat": 40.7158415, "lon": -73.9463130 }, + { "lat": 40.7164337, "lon": -73.9464084 }, + { "lat": 40.7164870, "lon": -73.9464170 }, + { "lat": 40.7165560, "lon": -73.9464283 }, + { "lat": 40.7171447, "lon": -73.9465243 }, + { "lat": 40.7171980, "lon": -73.9465330 }, + { "lat": 40.7172674, "lon": -73.9465447 }, + { "lat": 40.7178499, "lon": -73.9466433 }, + { "lat": 40.7179070, "lon": -73.9466530 }, + { "lat": 40.7179695, "lon": -73.9466630 }, + { "lat": 40.7183652, "lon": -73.9467215 }, + { "lat": 40.7184348, "lon": -73.9467345 }, + { "lat": 40.7184902, "lon": -73.9467439 }, + { "lat": 40.7186221, "lon": -73.9467600 }, + { "lat": 40.7187323, "lon": -73.9467734 }, + { "lat": 40.7187967, "lon": -73.9467812 }, + { "lat": 40.7188765, "lon": -73.9467966 }, + { "lat": 40.7195019, "lon": -73.9469176 }, + { "lat": 40.7195304, "lon": -73.9469424 }, + { "lat": 40.7195840, "lon": -73.9469890 }, + { "lat": 40.7196400, "lon": -73.9470484 }, + { "lat": 40.7200727, "lon": -73.9475068 }, + { "lat": 40.7201390, "lon": -73.9475770 }, + { "lat": 40.7201971, "lon": -73.9476375 }, + { "lat": 40.7204725, "lon": -73.9479241 }, + { "lat": 40.7209950, "lon": -73.9485352 }, + { "lat": 40.7211627, "lon": -73.9487271 }, + { "lat": 40.7212920, "lon": -73.9488750 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 685311605, + "bounds": { + "minlat": 40.7118010, + "minlon": -73.9423500, + "maxlat": 40.7125370, + "maxlon": -73.9422280 + }, + "nodes": [ + 42502970, + 9767624977, + 5471820438, + 42502968 + ], + "geometry": [ + { "lat": 40.7125370, "lon": -73.9423500 }, + { "lat": 40.7124835, "lon": -73.9423411 }, + { "lat": 40.7118894, "lon": -73.9422429 }, + { "lat": 40.7118010, "lon": -73.9422280 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 685311606, + "bounds": { + "minlat": 40.7122180, + "minlon": -73.9457170, + "maxlat": 40.7125370, + "maxlon": -73.9423500 + }, + "nodes": [ + 42502970, + 9767624976, + 5435890982, + 42467850, + 5435890980, + 9767624907, + 9767624904, + 42514870 + ], + "geometry": [ + { "lat": 40.7125370, "lon": -73.9423500 }, + { "lat": 40.7125285, "lon": -73.9424402 }, + { "lat": 40.7123877, "lon": -73.9439293 }, + { "lat": 40.7123780, "lon": -73.9440320 }, + { "lat": 40.7123671, "lon": -73.9441460 }, + { "lat": 40.7122312, "lon": -73.9455776 }, + { "lat": 40.7122254, "lon": -73.9456390 }, + { "lat": 40.7122180, "lon": -73.9457170 } + ], + "tags": { + "highway": "residential", + "name": "Powers Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 685311607, + "bounds": { + "minlat": 40.7118010, + "minlon": -73.9422280, + "maxlat": 40.7119003, + "maxlon": -73.9412790 + }, + "nodes": [ + 42502968, + 8842929798, + 12964609433 + ], + "geometry": [ + { "lat": 40.7118010, "lon": -73.9422280 }, + { "lat": 40.7118092, "lon": -73.9421498 }, + { "lat": 40.7119003, "lon": -73.9412790 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "cycleway:right:protection": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "name": "Grand Street", + "sidewalk": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 685311608, + "bounds": { + "minlat": 40.7039234, + "minlon": -73.9422280, + "maxlat": 40.7118010, + "maxlon": -73.9408452 + }, + "nodes": [ + 42502968, + 5471820444, + 9752590850, + 42502965, + 9752590851, + 42485710, + 9752593896, + 42502959, + 9752593895, + 6943637610, + 42502957, + 6943637609, + 6943637854, + 42502953, + 6943637853, + 9752593987, + 42496356, + 9752593988, + 9952734792, + 42476791, + 9952734791, + 9752126951, + 42502948, + 9752126950, + 6858105736, + 8229303535, + 42502945 + ], + "geometry": [ + { "lat": 40.7118010, "lon": -73.9422280 }, + { "lat": 40.7117097, "lon": -73.9422128 }, + { "lat": 40.7111363, "lon": -73.9421177 }, + { "lat": 40.7110600, "lon": -73.9421050 }, + { "lat": 40.7109863, "lon": -73.9420929 }, + { "lat": 40.7096370, "lon": -73.9418730 }, + { "lat": 40.7090244, "lon": -73.9417722 }, + { "lat": 40.7089440, "lon": -73.9417590 }, + { "lat": 40.7088850, "lon": -73.9417490 }, + { "lat": 40.7083009, "lon": -73.9416518 }, + { "lat": 40.7082300, "lon": -73.9416400 }, + { "lat": 40.7081758, "lon": -73.9416310 }, + { "lat": 40.7075791, "lon": -73.9415322 }, + { "lat": 40.7074930, "lon": -73.9415180 }, + { "lat": 40.7074205, "lon": -73.9415063 }, + { "lat": 40.7068280, "lon": -73.9414104 }, + { "lat": 40.7067580, "lon": -73.9413990 }, + { "lat": 40.7067042, "lon": -73.9413901 }, + { "lat": 40.7061207, "lon": -73.9412938 }, + { "lat": 40.7060490, "lon": -73.9412820 }, + { "lat": 40.7059943, "lon": -73.9412722 }, + { "lat": 40.7047027, "lon": -73.9410417 }, + { "lat": 40.7046384, "lon": -73.9410221 }, + { "lat": 40.7045829, "lon": -73.9410052 }, + { "lat": 40.7044600, "lon": -73.9409494 }, + { "lat": 40.7039997, "lon": -73.9408507 }, + { "lat": 40.7039234, "lon": -73.9408452 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 685311609, + "bounds": { + "minlat": 40.7114810, + "minlon": -73.9455960, + "maxlat": 40.7115990, + "maxlon": -73.9443529 + }, + "nodes": [ + 42535541, + 6235394666, + 12964609432 + ], + "geometry": [ + { "lat": 40.7114810, "lon": -73.9455960 }, + { "lat": 40.7114887, "lon": -73.9455126 }, + { "lat": 40.7115990, "lon": -73.9443529 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "cycleway:right:protection": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 685311610, + "bounds": { + "minlat": 40.7114810, + "minlon": -73.9457170, + "maxlat": 40.7122180, + "maxlon": -73.9455960 + }, + "nodes": [ + 42535541, + 5471820449, + 9955210397, + 42514870 + ], + "geometry": [ + { "lat": 40.7114810, "lon": -73.9455960 }, + { "lat": 40.7115685, "lon": -73.9456103 }, + { "lat": 40.7121620, "lon": -73.9457078 }, + { "lat": 40.7122180, "lon": -73.9457170 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q17347125", + "wikipedia": "en:Manhattan Avenue (Brooklyn)" + } +}, +{ + "type": "way", + "id": 685336387, + "bounds": { + "minlat": 40.7899429, + "minlon": -73.9467764, + "maxlat": 40.7915775, + "maxlon": -73.9429284 + }, + "nodes": [ + 42443066, + 2947964867, + 6216628258, + 42450055, + 4970497088, + 7779544999, + 42447179 + ], + "geometry": [ + { "lat": 40.7899429, "lon": -73.9429284 }, + { "lat": 40.7900017, "lon": -73.9430670 }, + { "lat": 40.7908378, "lon": -73.9450418 }, + { "lat": 40.7908925, "lon": -73.9451710 }, + { "lat": 40.7909540, "lon": -73.9453171 }, + { "lat": 40.7915402, "lon": -73.9466863 }, + { "lat": 40.7915775, "lon": -73.9467764 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "20 mph", + "name": "East 105th Street", + "name:ru": "Восточная 105-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 685336629, + "bounds": { + "minlat": 40.7167280, + "minlon": -73.9601960, + "maxlat": 40.7175280, + "maxlon": -73.9589130 + }, + "nodes": [ + 42528570, + 9795044561, + 9795044621, + 42520393 + ], + "geometry": [ + { "lat": 40.7175280, "lon": -73.9601960 }, + { "lat": 40.7174875, "lon": -73.9601310 }, + { "lat": 40.7167727, "lon": -73.9589846 }, + { "lat": 40.7167280, "lon": -73.9589130 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "North 5th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 685336630, + "bounds": { + "minlat": 40.7143340, + "minlon": -73.9589130, + "maxlat": 40.7167280, + "maxlon": -73.9550508 + }, + "nodes": [ + 42520393, + 9795044619, + 6248588453, + 42509247, + 6248588454, + 7043069891, + 6235394636, + 42526505, + 6235394638, + 5481954246, + 5481954242, + 9949550227, + 42480143 + ], + "geometry": [ + { "lat": 40.7167280, "lon": -73.9589130 }, + { "lat": 40.7166898, "lon": -73.9588515 }, + { "lat": 40.7159686, "lon": -73.9576926 }, + { "lat": 40.7159270, "lon": -73.9576260 }, + { "lat": 40.7158880, "lon": -73.9575635 }, + { "lat": 40.7156497, "lon": -73.9571805 }, + { "lat": 40.7152021, "lon": -73.9564608 }, + { "lat": 40.7151440, "lon": -73.9563680 }, + { "lat": 40.7150950, "lon": -73.9562897 }, + { "lat": 40.7147074, "lon": -73.9556683 }, + { "lat": 40.7145989, "lon": -73.9554944 }, + { "lat": 40.7143803, "lon": -73.9551284 }, + { "lat": 40.7143340, "lon": -73.9550508 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "North 5th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 685336824, + "bounds": { + "minlat": 40.7133883, + "minlon": -73.9348086, + "maxlat": 40.7137924, + "maxlon": -73.9331758 + }, + "nodes": [ + 42490339, + 8842929820, + 10923325020, + 5482301712, + 8842929834, + 42524611 + ], + "geometry": [ + { "lat": 40.7133883, "lon": -73.9348086 }, + { "lat": 40.7134076, "lon": -73.9347307 }, + { "lat": 40.7134186, "lon": -73.9346858 }, + { "lat": 40.7137107, "lon": -73.9334928 }, + { "lat": 40.7137584, "lon": -73.9333067 }, + { "lat": 40.7137924, "lon": -73.9331758 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 686125780, + "bounds": { + "minlat": 40.7692505, + "minlon": -73.9609773, + "maxlat": 40.7697470, + "maxlon": -73.9606044 + }, + "nodes": [ + 11355879244, + 3562587899, + 42436486 + ], + "geometry": [ + { "lat": 40.7692505, "lon": -73.9609773 }, + { "lat": 40.7696567, "lon": -73.9606722 }, + { "lat": 40.7697470, "lon": -73.9606044 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "bump;flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||||", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 686125781, + "bounds": { + "minlat": 40.7659377, + "minlon": -73.9698222, + "maxlat": 40.7686501, + "maxlon": -73.9633856 + }, + "nodes": [ + 42447235, + 5542680301, + 10125139625, + 42447069, + 10125139624, + 12834723201, + 10125112335, + 42447230, + 596775979, + 10125112334, + 2792787027, + 42445976, + 2792787021, + 10171007664, + 2792787020, + 42447228 + ], + "geometry": [ + { "lat": 40.7659377, "lon": -73.9633856 }, + { "lat": 40.7660017, "lon": -73.9635307 }, + { "lat": 40.7665680, "lon": -73.9648793 }, + { "lat": 40.7666145, "lon": -73.9649882 }, + { "lat": 40.7666590, "lon": -73.9650911 }, + { "lat": 40.7671898, "lon": -73.9663507 }, + { "lat": 40.7672128, "lon": -73.9664052 }, + { "lat": 40.7672618, "lon": -73.9665220 }, + { "lat": 40.7673370, "lon": -73.9667022 }, + { "lat": 40.7673804, "lon": -73.9668053 }, + { "lat": 40.7679340, "lon": -73.9681155 }, + { "lat": 40.7679741, "lon": -73.9682111 }, + { "lat": 40.7680233, "lon": -73.9683300 }, + { "lat": 40.7680279, "lon": -73.9683397 }, + { "lat": 40.7686050, "lon": -73.9697064 }, + { "lat": 40.7686501, "lon": -73.9698222 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 66th Street", + "name:ru": "Восточная 66-я стрит", + "name_1": "East 66 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 686125782, + "bounds": { + "minlat": 40.7672618, + "minlon": -73.9665220, + "maxlat": 40.7858454, + "maxlon": -73.9529602 + }, + "nodes": [ + 42447230, + 10125112337, + 12834712297, + 10125112344, + 42437428, + 8835701414, + 8835701398, + 42431677, + 8835701374, + 7160272385, + 42455694, + 7160272386, + 10122943677, + 42429685, + 10122943674, + 10125222339, + 42445230, + 10125222337, + 4207313524, + 42436481, + 4207313532, + 10167967045, + 42438795, + 10125222333, + 10167967060, + 42439557, + 10125222332, + 10173084330, + 42430056, + 10125222325, + 10173084343, + 42454691, + 10125222319, + 10125222324, + 42446461, + 10125222317, + 7160238585, + 42436914, + 7160238604, + 10122937138, + 42459137, + 10125180316, + 9563518599, + 42438490, + 9563518594, + 10125180313, + 42452954, + 10125180309, + 3341912576, + 42439395, + 10125180308, + 10156669070, + 42448216, + 10125180301, + 10125180306, + 42435504, + 10125180297, + 8782897305, + 42458766, + 8782927422, + 7924099766, + 42429330, + 7924099717, + 7924099787, + 42454192, + 7924099780, + 7924099700, + 42445736, + 7924099770, + 10125139605, + 7160238602, + 42436541, + 7160238611, + 7158854768, + 42444812, + 7158854740, + 7158854720, + 42456578, + 7158854709, + 7158854730, + 42448729, + 7158854749, + 7158854731, + 42452812, + 7158854754, + 7093532784, + 42444491, + 7093620692, + 7093620696, + 42434168 + ], + "geometry": [ + { "lat": 40.7672618, "lon": -73.9665220 }, + { "lat": 40.7673172, "lon": -73.9664798 }, + { "lat": 40.7677914, "lon": -73.9661383 }, + { "lat": 40.7678298, "lon": -73.9661107 }, + { "lat": 40.7678888, "lon": -73.9660657 }, + { "lat": 40.7679438, "lon": -73.9660250 }, + { "lat": 40.7684577, "lon": -73.9656478 }, + { "lat": 40.7685108, "lon": -73.9656086 }, + { "lat": 40.7685685, "lon": -73.9655676 }, + { "lat": 40.7690812, "lon": -73.9651957 }, + { "lat": 40.7691362, "lon": -73.9651557 }, + { "lat": 40.7691919, "lon": -73.9651126 }, + { "lat": 40.7697082, "lon": -73.9647378 }, + { "lat": 40.7697588, "lon": -73.9646978 }, + { "lat": 40.7698192, "lon": -73.9646533 }, + { "lat": 40.7703212, "lon": -73.9642540 }, + { "lat": 40.7703870, "lon": -73.9642066 }, + { "lat": 40.7704323, "lon": -73.9641741 }, + { "lat": 40.7709682, "lon": -73.9637928 }, + { "lat": 40.7710637, "lon": -73.9637208 }, + { "lat": 40.7711605, "lon": -73.9636478 }, + { "lat": 40.7717070, "lon": -73.9632805 }, + { "lat": 40.7717575, "lon": -73.9632440 }, + { "lat": 40.7718134, "lon": -73.9632028 }, + { "lat": 40.7723338, "lon": -73.9628198 }, + { "lat": 40.7723869, "lon": -73.9627807 }, + { "lat": 40.7724477, "lon": -73.9627363 }, + { "lat": 40.7729694, "lon": -73.9623556 }, + { "lat": 40.7730236, "lon": -73.9623161 }, + { "lat": 40.7730840, "lon": -73.9622723 }, + { "lat": 40.7736049, "lon": -73.9618954 }, + { "lat": 40.7736608, "lon": -73.9618549 }, + { "lat": 40.7737173, "lon": -73.9618136 }, + { "lat": 40.7742404, "lon": -73.9614312 }, + { "lat": 40.7743023, "lon": -73.9613859 }, + { "lat": 40.7743596, "lon": -73.9613442 }, + { "lat": 40.7748773, "lon": -73.9609662 }, + { "lat": 40.7749247, "lon": -73.9609303 }, + { "lat": 40.7749868, "lon": -73.9608854 }, + { "lat": 40.7755224, "lon": -73.9604973 }, + { "lat": 40.7756143, "lon": -73.9604288 }, + { "lat": 40.7757107, "lon": -73.9603598 }, + { "lat": 40.7762386, "lon": -73.9599736 }, + { "lat": 40.7762910, "lon": -73.9599345 }, + { "lat": 40.7763500, "lon": -73.9598913 }, + { "lat": 40.7768772, "lon": -73.9595072 }, + { "lat": 40.7769299, "lon": -73.9594687 }, + { "lat": 40.7769937, "lon": -73.9594224 }, + { "lat": 40.7775090, "lon": -73.9590476 }, + { "lat": 40.7775625, "lon": -73.9590065 }, + { "lat": 40.7776220, "lon": -73.9589631 }, + { "lat": 40.7781446, "lon": -73.9585809 }, + { "lat": 40.7781960, "lon": -73.9585432 }, + { "lat": 40.7782571, "lon": -73.9584988 }, + { "lat": 40.7787748, "lon": -73.9581209 }, + { "lat": 40.7788307, "lon": -73.9580801 }, + { "lat": 40.7788889, "lon": -73.9580378 }, + { "lat": 40.7794095, "lon": -73.9576595 }, + { "lat": 40.7794585, "lon": -73.9576208 }, + { "lat": 40.7795224, "lon": -73.9575725 }, + { "lat": 40.7800457, "lon": -73.9571812 }, + { "lat": 40.7801496, "lon": -73.9571181 }, + { "lat": 40.7802499, "lon": -73.9570447 }, + { "lat": 40.7807659, "lon": -73.9566672 }, + { "lat": 40.7808233, "lon": -73.9566243 }, + { "lat": 40.7808821, "lon": -73.9565826 }, + { "lat": 40.7813955, "lon": -73.9562084 }, + { "lat": 40.7814517, "lon": -73.9561680 }, + { "lat": 40.7815113, "lon": -73.9561255 }, + { "lat": 40.7815422, "lon": -73.9561028 }, + { "lat": 40.7820238, "lon": -73.9557487 }, + { "lat": 40.7820798, "lon": -73.9557062 }, + { "lat": 40.7821351, "lon": -73.9556662 }, + { "lat": 40.7826511, "lon": -73.9552914 }, + { "lat": 40.7827019, "lon": -73.9552544 }, + { "lat": 40.7827647, "lon": -73.9552074 }, + { "lat": 40.7832767, "lon": -73.9548359 }, + { "lat": 40.7833391, "lon": -73.9547909 }, + { "lat": 40.7833944, "lon": -73.9547495 }, + { "lat": 40.7838981, "lon": -73.9543544 }, + { "lat": 40.7839462, "lon": -73.9543201 }, + { "lat": 40.7840085, "lon": -73.9542758 }, + { "lat": 40.7845319, "lon": -73.9539170 }, + { "lat": 40.7845895, "lon": -73.9538777 }, + { "lat": 40.7846477, "lon": -73.9538365 }, + { "lat": 40.7851610, "lon": -73.9534605 }, + { "lat": 40.7852132, "lon": -73.9534225 }, + { "lat": 40.7852721, "lon": -73.9533797 }, + { "lat": 40.7857894, "lon": -73.9530031 }, + { "lat": 40.7858454, "lon": -73.9529602 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 686125784, + "bounds": { + "minlat": 40.7645684, + "minlon": -73.9614573, + "maxlat": 40.7648965, + "maxlon": -73.9612132 + }, + "nodes": [ + 5550244687, + 7946184226, + 8750047669 + ], + "geometry": [ + { "lat": 40.7648965, "lon": -73.9612132 }, + { "lat": 40.7646796, "lon": -73.9613747 }, + { "lat": 40.7645684, "lon": -73.9614573 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 686125787, + "bounds": { + "minlat": 40.7627043, + "minlon": -73.9628257, + "maxlat": 40.7637382, + "maxlon": -73.9620616 + }, + "nodes": [ + 42431659, + 10170658699, + 7946231856, + 8112585811, + 42429981, + 10166384594, + 9496052477 + ], + "geometry": [ + { "lat": 40.7637382, "lon": -73.9620616 }, + { "lat": 40.7636869, "lon": -73.9620988 }, + { "lat": 40.7635757, "lon": -73.9621794 }, + { "lat": 40.7631692, "lon": -73.9624741 }, + { "lat": 40.7631130, "lon": -73.9625150 }, + { "lat": 40.7630625, "lon": -73.9625533 }, + { "lat": 40.7627043, "lon": -73.9628257 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 686125790, + "bounds": { + "minlat": 40.7659377, + "minlon": -73.9633856, + "maxlat": 40.7671880, + "maxlon": -73.9624718 + }, + "nodes": [ + 42447235, + 10166860020, + 10166238427, + 42437436, + 10166238430, + 6670248394, + 42431680 + ], + "geometry": [ + { "lat": 40.7659377, "lon": -73.9633856 }, + { "lat": 40.7659911, "lon": -73.9633456 }, + { "lat": 40.7665062, "lon": -73.9629678 }, + { "lat": 40.7665573, "lon": -73.9629303 }, + { "lat": 40.7666143, "lon": -73.9628885 }, + { "lat": 40.7671319, "lon": -73.9625126 }, + { "lat": 40.7671880, "lon": -73.9624718 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 686167000, + "bounds": { + "minlat": 40.7098856, + "minlon": -74.0130971, + "maxlat": 40.7099857, + "maxlon": -74.0129606 + }, + "nodes": [ + 6431476950, + 6431476951, + 6431476974, + 6431476973, + 6431476972, + 6431476975, + 6431476976, + 6431476971, + 6431476970, + 6431476977, + 6431476952, + 6431476953, + 6431476950 + ], + "geometry": [ + { "lat": 40.7099566, "lon": -74.0129606 }, + { "lat": 40.7099675, "lon": -74.0129894 }, + { "lat": 40.7099628, "lon": -74.0129918 }, + { "lat": 40.7099857, "lon": -74.0130510 }, + { "lat": 40.7099650, "lon": -74.0130720 }, + { "lat": 40.7099364, "lon": -74.0130033 }, + { "lat": 40.7099304, "lon": -74.0130061 }, + { "lat": 40.7099597, "lon": -74.0130772 }, + { "lat": 40.7099403, "lon": -74.0130971 }, + { "lat": 40.7099055, "lon": -74.0130172 }, + { "lat": 40.7098999, "lon": -74.0130193 }, + { "lat": 40.7098856, "lon": -74.0129865 }, + { "lat": 40.7099566, "lon": -74.0129606 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 686167001, + "bounds": { + "minlat": 40.7099728, + "minlon": -74.0130294, + "maxlat": 40.7100604, + "maxlon": -74.0129284 + }, + "nodes": [ + 6431476954, + 6431476933, + 6431476955, + 6431476969, + 6431476963, + 6431476958, + 6431476968, + 6431476967, + 6431476959, + 6431476960, + 6431476965, + 6431476966, + 6431476961, + 6431476962, + 6431476956, + 6431476964, + 6431476957, + 6431476954 + ], + "geometry": [ + { "lat": 40.7100465, "lon": -74.0129284 }, + { "lat": 40.7100470, "lon": -74.0129296 }, + { "lat": 40.7100542, "lon": -74.0129475 }, + { "lat": 40.7100496, "lon": -74.0129501 }, + { "lat": 40.7100604, "lon": -74.0129777 }, + { "lat": 40.7100465, "lon": -74.0129912 }, + { "lat": 40.7100333, "lon": -74.0129580 }, + { "lat": 40.7100281, "lon": -74.0129606 }, + { "lat": 40.7100419, "lon": -74.0129959 }, + { "lat": 40.7100276, "lon": -74.0130099 }, + { "lat": 40.7100117, "lon": -74.0129692 }, + { "lat": 40.7100062, "lon": -74.0129720 }, + { "lat": 40.7100228, "lon": -74.0130146 }, + { "lat": 40.7100077, "lon": -74.0130294 }, + { "lat": 40.7099883, "lon": -74.0129800 }, + { "lat": 40.7099836, "lon": -74.0129827 }, + { "lat": 40.7099728, "lon": -74.0129549 }, + { "lat": 40.7100465, "lon": -74.0129284 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 686167002, + "bounds": { + "minlat": 40.7100506, + "minlon": -74.0129770, + "maxlat": 40.7100643, + "maxlon": -74.0129484 + }, + "nodes": [ + 6431476978, + 6431476979, + 6431476980, + 6431476981, + 6431476978 + ], + "geometry": [ + { "lat": 40.7100544, "lon": -74.0129484 }, + { "lat": 40.7100643, "lon": -74.0129737 }, + { "lat": 40.7100608, "lon": -74.0129770 }, + { "lat": 40.7100506, "lon": -74.0129507 }, + { "lat": 40.7100544, "lon": -74.0129484 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 686167003, + "bounds": { + "minlat": 40.7100289, + "minlon": -74.0129950, + "maxlat": 40.7100459, + "maxlon": -74.0129588 + }, + "nodes": [ + 6431476982, + 6431476983, + 6431476984, + 6431477085, + 6431476982 + ], + "geometry": [ + { "lat": 40.7100331, "lon": -74.0129588 }, + { "lat": 40.7100459, "lon": -74.0129916 }, + { "lat": 40.7100424, "lon": -74.0129950 }, + { "lat": 40.7100289, "lon": -74.0129609 }, + { "lat": 40.7100331, "lon": -74.0129588 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 686167004, + "bounds": { + "minlat": 40.7100073, + "minlon": -74.0130136, + "maxlat": 40.7100269, + "maxlon": -74.0129705 + }, + "nodes": [ + 6431477086, + 6431477087, + 6431477088, + 6431477089, + 6431477086 + ], + "geometry": [ + { "lat": 40.7100114, "lon": -74.0129705 }, + { "lat": 40.7100269, "lon": -74.0130103 }, + { "lat": 40.7100234, "lon": -74.0130136 }, + { "lat": 40.7100073, "lon": -74.0129727 }, + { "lat": 40.7100114, "lon": -74.0129705 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 686167005, + "bounds": { + "minlat": 40.7099839, + "minlon": -74.0130335, + "maxlat": 40.7100071, + "maxlon": -74.0129811 + }, + "nodes": [ + 6431477090, + 6431477091, + 6431477092, + 6431477093, + 6431477090 + ], + "geometry": [ + { "lat": 40.7099880, "lon": -74.0129811 }, + { "lat": 40.7100071, "lon": -74.0130301 }, + { "lat": 40.7100036, "lon": -74.0130335 }, + { "lat": 40.7099839, "lon": -74.0129836 }, + { "lat": 40.7099880, "lon": -74.0129811 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 686167006, + "bounds": { + "minlat": 40.7099641, + "minlon": -74.0130501, + "maxlat": 40.7099899, + "maxlon": -74.0129904 + }, + "nodes": [ + 6431477094, + 6431477095, + 6431477096, + 6431477097, + 6431477094 + ], + "geometry": [ + { "lat": 40.7099680, "lon": -74.0129904 }, + { "lat": 40.7099899, "lon": -74.0130468 }, + { "lat": 40.7099864, "lon": -74.0130501 }, + { "lat": 40.7099641, "lon": -74.0129924 }, + { "lat": 40.7099680, "lon": -74.0129904 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 686167007, + "bounds": { + "minlat": 40.7099318, + "minlon": -74.0130760, + "maxlat": 40.7099639, + "maxlon": -74.0130050 + }, + "nodes": [ + 6431477098, + 6431477099, + 6431477100, + 6431477101, + 6431477098 + ], + "geometry": [ + { "lat": 40.7099361, "lon": -74.0130050 }, + { "lat": 40.7099639, "lon": -74.0130727 }, + { "lat": 40.7099604, "lon": -74.0130760 }, + { "lat": 40.7099318, "lon": -74.0130071 }, + { "lat": 40.7099361, "lon": -74.0130050 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 686167008, + "bounds": { + "minlat": 40.7099006, + "minlon": -74.0131011, + "maxlat": 40.7099395, + "maxlon": -74.0130186 + }, + "nodes": [ + 6431477102, + 6431477103, + 6431477104, + 6431477105, + 6431477102 + ], + "geometry": [ + { "lat": 40.7099052, "lon": -74.0130186 }, + { "lat": 40.7099395, "lon": -74.0130977 }, + { "lat": 40.7099360, "lon": -74.0131011 }, + { "lat": 40.7099006, "lon": -74.0130203 }, + { "lat": 40.7099052, "lon": -74.0130186 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 687164099, + "bounds": { + "minlat": 40.8320535, + "minlon": -73.9968771, + "maxlat": 40.8324862, + "maxlon": -73.9965838 + }, + "nodes": [ + 7700847042, + 6440850987, + 5965428350 + ], + "geometry": [ + { "lat": 40.8324862, "lon": -73.9967916 }, + { "lat": 40.8323649, "lon": -73.9965838 }, + { "lat": 40.8320535, "lon": -73.9968771 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 688065741, + "bounds": { + "minlat": 40.8426816, + "minlon": -73.9068517, + "maxlat": 40.8447889, + "maxlon": -73.9066661 + }, + "nodes": [ + 12041872698, + 13040532885, + 42747336, + 13040487449, + 6223504770, + 42747333, + 5481864324, + 5481864326, + 12737767476, + 12737767470, + 12041872700 + ], + "geometry": [ + { "lat": 40.8447889, "lon": -73.9066661 }, + { "lat": 40.8447524, "lon": -73.9066693 }, + { "lat": 40.8446972, "lon": -73.9066741 }, + { "lat": 40.8446248, "lon": -73.9066805 }, + { "lat": 40.8437727, "lon": -73.9067556 }, + { "lat": 40.8436445, "lon": -73.9067669 }, + { "lat": 40.8430017, "lon": -73.9068235 }, + { "lat": 40.8429099, "lon": -73.9068316 }, + { "lat": 40.8427845, "lon": -73.9068426 }, + { "lat": 40.8427422, "lon": -73.9068464 }, + { "lat": 40.8426816, "lon": -73.9068517 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Monroe Avenue", + "name:etymology:wikidata": "Q11815", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Monroe", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 688065744, + "bounds": { + "minlat": 40.8451940, + "minlon": -73.9093481, + "maxlat": 40.8461578, + "maxlon": -73.9092684 + }, + "nodes": [ + 596669158, + 42735881, + 13047846999, + 3639998160, + 12042617232, + 3639998161, + 12042617234, + 12042617233, + 2329022427 + ], + "geometry": [ + { "lat": 40.8451940, "lon": -73.9093481 }, + { "lat": 40.8452690, "lon": -73.9093414 }, + { "lat": 40.8453281, "lon": -73.9093361 }, + { "lat": 40.8460807, "lon": -73.9092688 }, + { "lat": 40.8460988, "lon": -73.9092684 }, + { "lat": 40.8461178, "lon": -73.9092716 }, + { "lat": 40.8461303, "lon": -73.9092757 }, + { "lat": 40.8461412, "lon": -73.9092822 }, + { "lat": 40.8461578, "lon": -73.9092964 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Morris Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 688065745, + "bounds": { + "minlat": 40.8430704, + "minlon": -73.9095380, + "maxlat": 40.8449421, + "maxlon": -73.9093706 + }, + "nodes": [ + 2408354100, + 12737767483, + 42735877, + 13039063261, + 42735878, + 13039063266, + 596669147 + ], + "geometry": [ + { "lat": 40.8430704, "lon": -73.9095380 }, + { "lat": 40.8431285, "lon": -73.9095328 }, + { "lat": 40.8437796, "lon": -73.9094746 }, + { "lat": 40.8447630, "lon": -73.9093865 }, + { "lat": 40.8448443, "lon": -73.9093794 }, + { "lat": 40.8449035, "lon": -73.9093743 }, + { "lat": 40.8449421, "lon": -73.9093706 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Morris Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 688102862, + "bounds": { + "minlat": 40.8405037, + "minlon": -74.0174299, + "maxlat": 40.8407997, + "maxlon": -74.0168531 + }, + "nodes": [ + 5736211672, + 6451376364, + 6451376365, + 6451376366, + 6451376367, + 6451376368, + 6451376369, + 6451376370, + 6451376371, + 6451376372, + 5736211672 + ], + "geometry": [ + { "lat": 40.8406383, "lon": -74.0174299 }, + { "lat": 40.8405689, "lon": -74.0174023 }, + { "lat": 40.8405310, "lon": -74.0173561 }, + { "lat": 40.8405037, "lon": -74.0168685 }, + { "lat": 40.8405608, "lon": -74.0168531 }, + { "lat": 40.8406388, "lon": -74.0168562 }, + { "lat": 40.8407397, "lon": -74.0168801 }, + { "lat": 40.8407752, "lon": -74.0169294 }, + { "lat": 40.8407997, "lon": -74.0171374 }, + { "lat": 40.8407857, "lon": -74.0173576 }, + { "lat": 40.8406383, "lon": -74.0174299 } + ], + "tags": { + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 688682444, + "bounds": { + "minlat": 40.7714807, + "minlon": -73.9862522, + "maxlat": 40.7717166, + "maxlon": -73.9860839 + }, + "nodes": [ + 6458959584, + 10172942179, + 6458963385 + ], + "geometry": [ + { "lat": 40.7714807, "lon": -73.9862522 }, + { "lat": 40.7715445, "lon": -73.9862067 }, + { "lat": 40.7717166, "lon": -73.9860839 } + ], + "tags": { + "cutting": "yes", + "highway": "service", + "incline": "down", + "lit": "yes", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 689009144, + "bounds": { + "minlat": 40.7747908, + "minlon": -73.9745352, + "maxlat": 40.7770071, + "maxlon": -73.9739973 + }, + "nodes": [ + 9178915161, + 9908460430, + 9178915162, + 42442172, + 9178915163, + 9178915164, + 4331118557, + 7106318820, + 9178915165, + 247224239, + 9178915166, + 4331118559, + 247224240, + 2059303909, + 12815953310, + 2059303900, + 9908460431, + 9178915167, + 2059303889, + 2059303879, + 4257949516, + 9906887515 + ], + "geometry": [ + { "lat": 40.7770071, "lon": -73.9741555 }, + { "lat": 40.7769158, "lon": -73.9741533 }, + { "lat": 40.7768164, "lon": -73.9741420 }, + { "lat": 40.7758173, "lon": -73.9740061 }, + { "lat": 40.7756978, "lon": -73.9739973 }, + { "lat": 40.7756199, "lon": -73.9739978 }, + { "lat": 40.7755361, "lon": -73.9740005 }, + { "lat": 40.7754922, "lon": -73.9740077 }, + { "lat": 40.7754442, "lon": -73.9740156 }, + { "lat": 40.7753658, "lon": -73.9740352 }, + { "lat": 40.7752943, "lon": -73.9740584 }, + { "lat": 40.7752275, "lon": -73.9740857 }, + { "lat": 40.7751492, "lon": -73.9741270 }, + { "lat": 40.7750797, "lon": -73.9741680 }, + { "lat": 40.7750566, "lon": -73.9741848 }, + { "lat": 40.7750172, "lon": -73.9742135 }, + { "lat": 40.7749650, "lon": -73.9742628 }, + { "lat": 40.7749229, "lon": -73.9743094 }, + { "lat": 40.7748849, "lon": -73.9743610 }, + { "lat": 40.7748407, "lon": -73.9744375 }, + { "lat": 40.7748170, "lon": -73.9744816 }, + { "lat": 40.7747908, "lon": -73.9745352 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 689009148, + "bounds": { + "minlat": 40.7786470, + "minlon": -73.9725126, + "maxlat": 40.7786911, + "maxlon": -73.9724391 + }, + "nodes": [ + 6463087961, + 6463087958 + ], + "geometry": [ + { "lat": 40.7786911, "lon": -73.9724391 }, + { "lat": 40.7786470, "lon": -73.9725126 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "bridge": "yes", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 689037620, + "bounds": { + "minlat": 40.7368828, + "minlon": -74.0057566, + "maxlat": 40.7371696, + "maxlon": -74.0055274 + }, + "nodes": [ + 247403147, + 9469550704, + 9469550705, + 9469550706, + 6211334192, + 6211334195, + 6211334202 + ], + "geometry": [ + { "lat": 40.7371696, "lon": -74.0057566 }, + { "lat": 40.7371251, "lon": -74.0057489 }, + { "lat": 40.7370621, "lon": -74.0057226 }, + { "lat": 40.7370041, "lon": -74.0056747 }, + { "lat": 40.7369721, "lon": -74.0056364 }, + { "lat": 40.7369451, "lon": -74.0056038 }, + { "lat": 40.7368828, "lon": -74.0055274 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 689049668, + "bounds": { + "minlat": 40.7717348, + "minlon": -73.9846226, + "maxlat": 40.7720108, + "maxlon": -73.9842623 + }, + "nodes": [ + 6463515519, + 7449171504, + 7449171500, + 3369582874, + 6463515516, + 6463515520, + 6463515521, + 6463515529, + 6463515527, + 6463515519 + ], + "geometry": [ + { "lat": 40.7720108, "lon": -73.9844915 }, + { "lat": 40.7719655, "lon": -73.9845244 }, + { "lat": 40.7718917, "lon": -73.9845780 }, + { "lat": 40.7718303, "lon": -73.9846226 }, + { "lat": 40.7717617, "lon": -73.9844576 }, + { "lat": 40.7717348, "lon": -73.9843933 }, + { "lat": 40.7719153, "lon": -73.9842623 }, + { "lat": 40.7719346, "lon": -73.9843086 }, + { "lat": 40.7719589, "lon": -73.9843668 }, + { "lat": 40.7720108, "lon": -73.9844915 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "name": "The Garden", + "operator": "Lincoln Center for the Performing Arts", + "operator:type": "ngo" + } +}, +{ + "type": "way", + "id": 689240425, + "bounds": { + "minlat": 40.7693681, + "minlon": -73.9840050, + "maxlat": 40.7696565, + "maxlon": -73.9836135 + }, + "nodes": [ + 6465823507, + 10075099513, + 6465823508, + 6465823509, + 6465823514, + 6465823510, + 6465823511, + 10075099511, + 6465823512 + ], + "geometry": [ + { "lat": 40.7696565, "lon": -73.9838843 }, + { "lat": 40.7695711, "lon": -73.9839453 }, + { "lat": 40.7694875, "lon": -73.9840050 }, + { "lat": 40.7694477, "lon": -73.9839805 }, + { "lat": 40.7694036, "lon": -73.9838757 }, + { "lat": 40.7693681, "lon": -73.9837913 }, + { "lat": 40.7693761, "lon": -73.9837341 }, + { "lat": 40.7694576, "lon": -73.9836748 }, + { "lat": 40.7695418, "lon": -73.9836135 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "sidewalk": "no", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 689241492, + "bounds": { + "minlat": 40.7460192, + "minlon": -74.0084134, + "maxlat": 40.7471726, + "maxlon": -74.0082025 + }, + "nodes": [ + 12096569819, + 12096569828, + 10860560356, + 246652083, + 8288560711, + 12096650285 + ], + "geometry": [ + { "lat": 40.7471726, "lon": -74.0082025 }, + { "lat": 40.7471094, "lon": -74.0082141 }, + { "lat": 40.7469528, "lon": -74.0082427 }, + { "lat": 40.7469210, "lon": -74.0082485 }, + { "lat": 40.7464713, "lon": -74.0083307 }, + { "lat": 40.7460192, "lon": -74.0084134 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "service", + "lanes": "3", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 689756068, + "bounds": { + "minlat": 40.8430663, + "minlon": -74.0013526, + "maxlat": 40.8434804, + "maxlon": -74.0010583 + }, + "nodes": [ + 308363346, + 103224098 + ], + "geometry": [ + { "lat": 40.8430663, "lon": -74.0013526 }, + { "lat": 40.8434804, "lon": -74.0010583 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 689756069, + "bounds": { + "minlat": 40.8454364, + "minlon": -73.9996651, + "maxlat": 40.8457893, + "maxlon": -73.9993938 + }, + "nodes": [ + 103224100, + 5976411341, + 5970474367 + ], + "geometry": [ + { "lat": 40.8454364, "lon": -73.9996651 }, + { "lat": 40.8457452, "lon": -73.9994255 }, + { "lat": 40.8457893, "lon": -73.9993938 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 689756071, + "bounds": { + "minlat": 40.8461860, + "minlon": -73.9991080, + "maxlat": 40.8469480, + "maxlon": -73.9985659 + }, + "nodes": [ + 103138711, + 103191323 + ], + "geometry": [ + { "lat": 40.8461860, "lon": -73.9991080 }, + { "lat": 40.8469480, "lon": -73.9985659 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 689756072, + "bounds": { + "minlat": 40.8440876, + "minlon": -74.0006299, + "maxlat": 40.8454364, + "maxlon": -73.9996651 + }, + "nodes": [ + 103149650, + 103153164, + 7652847779, + 103224100 + ], + "geometry": [ + { "lat": 40.8440876, "lon": -74.0006299 }, + { "lat": 40.8446924, "lon": -74.0001815 }, + { "lat": 40.8453746, "lon": -73.9997080 }, + { "lat": 40.8454364, "lon": -73.9996651 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 689762217, + "bounds": { + "minlat": 40.8218132, + "minlon": -73.9905149, + "maxlat": 40.8219097, + "maxlon": -73.9904415 + }, + "nodes": [ + 4205589216, + 6863208964 + ], + "geometry": [ + { "lat": 40.8218132, "lon": -73.9905149 }, + { "lat": 40.8219097, "lon": -73.9904415 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 689762218, + "bounds": { + "minlat": 40.8226915, + "minlon": -73.9898971, + "maxlat": 40.8243906, + "maxlon": -73.9885836 + }, + "nodes": [ + 103213230, + 7595172516, + 7571579911, + 7144105886, + 7576828006, + 7576828005, + 7576827814, + 7144105889, + 7571579910, + 7576827810, + 7571579880, + 13525873320, + 103150101 + ], + "geometry": [ + { "lat": 40.8226915, "lon": -73.9898971 }, + { "lat": 40.8232264, "lon": -73.9894754 }, + { "lat": 40.8234024, "lon": -73.9893367 }, + { "lat": 40.8234479, "lon": -73.9893009 }, + { "lat": 40.8235041, "lon": -73.9892575 }, + { "lat": 40.8237422, "lon": -73.9890740 }, + { "lat": 40.8237625, "lon": -73.9890584 }, + { "lat": 40.8237813, "lon": -73.9890439 }, + { "lat": 40.8237997, "lon": -73.9890300 }, + { "lat": 40.8239069, "lon": -73.9889490 }, + { "lat": 40.8241845, "lon": -73.9887393 }, + { "lat": 40.8243463, "lon": -73.9886171 }, + { "lat": 40.8243906, "lon": -73.9885836 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 689762219, + "bounds": { + "minlat": 40.8226375, + "minlon": -73.9899361, + "maxlat": 40.8226915, + "maxlon": -73.9898971 + }, + "nodes": [ + 103213250, + 103213230 + ], + "geometry": [ + { "lat": 40.8226375, "lon": -73.9899361 }, + { "lat": 40.8226915, "lon": -73.9898971 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 690414969, + "bounds": { + "minlat": 40.7490303, + "minlon": -73.9882353, + "maxlat": 40.7491217, + "maxlon": -73.9880169 + }, + "nodes": [ + 6224277869, + 42430298 + ], + "geometry": [ + { "lat": 40.7490303, "lon": -73.9880169 }, + { "lat": 40.7491217, "lon": -73.9882353 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 690415944, + "bounds": { + "minlat": 40.8665569, + "minlon": -73.9179204, + "maxlat": 40.8668130, + "maxlon": -73.9172050 + }, + "nodes": [ + 6477406870, + 9561208942, + 42427877 + ], + "geometry": [ + { "lat": 40.8665569, "lon": -73.9179204 }, + { "lat": 40.8667235, "lon": -73.9174423 }, + { "lat": 40.8668130, "lon": -73.9172050 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "name": "Sherman Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 690415948, + "bounds": { + "minlat": 40.8664407, + "minlon": -73.9182448, + "maxlat": 40.8665569, + "maxlon": -73.9179204 + }, + "nodes": [ + 6477406867, + 6477406870 + ], + "geometry": [ + { "lat": 40.8664407, "lon": -73.9182448 }, + { "lat": 40.8665569, "lon": -73.9179204 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "name": "Sherman Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 690415951, + "bounds": { + "minlat": 40.8662497, + "minlon": -73.9181118, + "maxlat": 40.8663683, + "maxlon": -73.9178234 + }, + "nodes": [ + 6477406866, + 6477406869 + ], + "geometry": [ + { "lat": 40.8662497, "lon": -73.9181118 }, + { "lat": 40.8663683, "lon": -73.9178234 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 690415953, + "bounds": { + "minlat": 40.8660425, + "minlon": -73.9182448, + "maxlat": 40.8664407, + "maxlon": -73.9178070 + }, + "nodes": [ + 6477406867, + 9561208940, + 6477406866, + 6477406865, + 9561208938, + 3327370783 + ], + "geometry": [ + { "lat": 40.8664407, "lon": -73.9182448 }, + { "lat": 40.8663552, "lon": -73.9181853 }, + { "lat": 40.8662497, "lon": -73.9181118 }, + { "lat": 40.8661107, "lon": -73.9179857 }, + { "lat": 40.8660869, "lon": -73.9179232 }, + { "lat": 40.8660425, "lon": -73.9178070 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 690415955, + "bounds": { + "minlat": 40.8662769, + "minlon": -73.9179204, + "maxlat": 40.8665569, + "maxlon": -73.9176241 + }, + "nodes": [ + 6477406870, + 9561208939, + 6477406869, + 9561208937, + 6477406868 + ], + "geometry": [ + { "lat": 40.8665569, "lon": -73.9179204 }, + { "lat": 40.8664717, "lon": -73.9178766 }, + { "lat": 40.8663683, "lon": -73.9178234 }, + { "lat": 40.8663314, "lon": -73.9177429 }, + { "lat": 40.8662769, "lon": -73.9176241 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 690472184, + "bounds": { + "minlat": 40.8503705, + "minlon": -74.0023761, + "maxlat": 40.8508132, + "maxlon": -74.0019699 + }, + "nodes": [ + 6477912322, + 6477912320, + 6477912321 + ], + "geometry": [ + { "lat": 40.8503705, "lon": -74.0023761 }, + { "lat": 40.8504137, "lon": -74.0023693 }, + { "lat": 40.8508132, "lon": -74.0019699 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 690472185, + "bounds": { + "minlat": 40.8498627, + "minlon": -74.0022395, + "maxlat": 40.8501873, + "maxlon": -74.0019604 + }, + "nodes": [ + 6477912324, + 6477912323, + 8226127110 + ], + "geometry": [ + { "lat": 40.8498627, "lon": -74.0022395 }, + { "lat": 40.8501431, "lon": -74.0019604 }, + { "lat": 40.8501873, "lon": -74.0020412 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 691480071, + "bounds": { + "minlat": 40.7606212, + "minlon": -73.9648675, + "maxlat": 40.7608441, + "maxlon": -73.9643559 + }, + "nodes": [ + 6488698202, + 6186989601, + 6186989596, + 42424089 + ], + "geometry": [ + { "lat": 40.7608441, "lon": -73.9648675 }, + { "lat": 40.7607156, "lon": -73.9645726 }, + { "lat": 40.7606780, "lon": -73.9644870 }, + { "lat": 40.7606212, "lon": -73.9643559 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left|slight_left|through;right", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 692399252, + "bounds": { + "minlat": 40.8363924, + "minlon": -73.9915047, + "maxlat": 40.8364746, + "maxlon": -73.9912793 + }, + "nodes": [ + 6499542572, + 6499542573 + ], + "geometry": [ + { "lat": 40.8363924, "lon": -73.9915047 }, + { "lat": 40.8364746, "lon": -73.9912793 } + ], + "tags": { + "highway": "residential", + "name": "Grantwood Boulevard" + } +}, +{ + "type": "way", + "id": 692399254, + "bounds": { + "minlat": 40.8362809, + "minlon": -73.9918676, + "maxlat": 40.8364630, + "maxlon": -73.9915480 + }, + "nodes": [ + 6499542574, + 6499542575, + 6499542576, + 103134609 + ], + "geometry": [ + { "lat": 40.8362809, "lon": -73.9918676 }, + { "lat": 40.8363458, "lon": -73.9918451 }, + { "lat": 40.8364339, "lon": -73.9917263 }, + { "lat": 40.8364630, "lon": -73.9915480 } + ], + "tags": { + "highway": "residential", + "name": "Oakwood Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakwood", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 693345069, + "bounds": { + "minlat": 40.7477344, + "minlon": -73.9882846, + "maxlat": 40.7480955, + "maxlon": -73.9882190 + }, + "nodes": [ + 11355997382, + 11766442646, + 11766442645, + 11355997384 + ], + "geometry": [ + { "lat": 40.7480955, "lon": -73.9882190 }, + { "lat": 40.7480271, "lon": -73.9882195 }, + { "lat": 40.7477786, "lon": -73.9882677 }, + { "lat": 40.7477344, "lon": -73.9882846 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "living_street", + "lanes": "1", + "lit": "yes", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:left": "no", + "parking:right": "street_side", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 693648911, + "bounds": { + "minlat": 40.8422367, + "minlon": -73.9430310, + "maxlat": 40.8426916, + "maxlon": -73.9424605 + }, + "nodes": [ + 13319858602, + 9908572574, + 42456255, + 9908572575, + 42456252, + 42456249, + 9908572576, + 42456245, + 9908572577, + 9908572578, + 13319823800 + ], + "geometry": [ + { "lat": 40.8426916, "lon": -73.9430310 }, + { "lat": 40.8426254, "lon": -73.9430041 }, + { "lat": 40.8425828, "lon": -73.9429799 }, + { "lat": 40.8425302, "lon": -73.9429373 }, + { "lat": 40.8424874, "lon": -73.9428995 }, + { "lat": 40.8424489, "lon": -73.9428614 }, + { "lat": 40.8424130, "lon": -73.9428126 }, + { "lat": 40.8423778, "lon": -73.9427601 }, + { "lat": 40.8423465, "lon": -73.9427075 }, + { "lat": 40.8423157, "lon": -73.9426440 }, + { "lat": 40.8422367, "lon": -73.9424605 } + ], + "tags": { + "alt_name": "Haven Plaza", + "alt_name:en": "Joe Hintersteiner Place", + "description": "This honorary street name memorializes Joe Hintersteiner.", + "highway": "pedestrian", + "historic": "memorial", + "name": "Haven Avenue", + "note": "There is no wikidata or wikimedia page for Haven Plaza.", + "subject:url": "https://www.facilities.cuimc.columbia.edu/capital-projects/haven-plaza" + } +}, +{ + "type": "way", + "id": 693648914, + "bounds": { + "minlat": 40.8428216, + "minlon": -73.9429517, + "maxlat": 40.8432059, + "maxlon": -73.9420178 + }, + "nodes": [ + 42447419, + 7604384404, + 7604384401, + 42427139 + ], + "geometry": [ + { "lat": 40.8432059, "lon": -73.9429517 }, + { "lat": 40.8431658, "lon": -73.9428540 }, + { "lat": 40.8428610, "lon": -73.9421161 }, + { "lat": 40.8428216, "lon": -73.9420178 } + ], + "tags": { + "bicycle": "designated", + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 169th Street", + "name_1": "West 169 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "169th", + "tiger:name_base_1": "169", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 693648919, + "bounds": { + "minlat": 40.8424736, + "minlon": -73.9433436, + "maxlat": 40.8427338, + "maxlon": -73.9430422 + }, + "nodes": [ + 6512341611, + 8692185211, + 6512341612, + 6512341613, + 6512341614, + 6512341615, + 6512341616 + ], + "geometry": [ + { "lat": 40.8427338, "lon": -73.9430422 }, + { "lat": 40.8427237, "lon": -73.9431296 }, + { "lat": 40.8427116, "lon": -73.9432139 }, + { "lat": 40.8427037, "lon": -73.9432440 }, + { "lat": 40.8426903, "lon": -73.9432654 }, + { "lat": 40.8426694, "lon": -73.9432791 }, + { "lat": 40.8424736, "lon": -73.9433436 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 693648922, + "bounds": { + "minlat": 40.8421854, + "minlon": -73.9434342, + "maxlat": 40.8424736, + "maxlon": -73.9433436 + }, + "nodes": [ + 6512341616, + 6512341617 + ], + "geometry": [ + { "lat": 40.8424736, "lon": -73.9433436 }, + { "lat": 40.8421854, "lon": -73.9434342 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 693648925, + "bounds": { + "minlat": 40.8419647, + "minlon": -73.9434969, + "maxlat": 40.8426916, + "maxlon": -73.9430310 + }, + "nodes": [ + 6512341617, + 6512341618, + 6512341620, + 6512341623, + 6512341624, + 9908572563, + 6512341625, + 9908572564, + 9908572566, + 9908572567, + 9908572568, + 9908572565, + 6512341626, + 9908572569, + 9908572570, + 6512341627, + 9908572572, + 9908572571, + 9908572573, + 6512341628, + 13319858602 + ], + "geometry": [ + { "lat": 40.8421854, "lon": -73.9434342 }, + { "lat": 40.8419896, "lon": -73.9434969 }, + { "lat": 40.8419647, "lon": -73.9433807 }, + { "lat": 40.8419808, "lon": -73.9433583 }, + { "lat": 40.8420011, "lon": -73.9433409 }, + { "lat": 40.8420277, "lon": -73.9433246 }, + { "lat": 40.8420566, "lon": -73.9433116 }, + { "lat": 40.8423310, "lon": -73.9432259 }, + { "lat": 40.8423642, "lon": -73.9432174 }, + { "lat": 40.8423959, "lon": -73.9432174 }, + { "lat": 40.8424315, "lon": -73.9432267 }, + { "lat": 40.8424657, "lon": -73.9432404 }, + { "lat": 40.8425005, "lon": -73.9432605 }, + { "lat": 40.8425226, "lon": -73.9432625 }, + { "lat": 40.8425427, "lon": -73.9432585 }, + { "lat": 40.8426177, "lon": -73.9432312 }, + { "lat": 40.8426347, "lon": -73.9432206 }, + { "lat": 40.8426578, "lon": -73.9431928 }, + { "lat": 40.8426684, "lon": -73.9431626 }, + { "lat": 40.8426791, "lon": -73.9431180 }, + { "lat": 40.8426916, "lon": -73.9430310 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 693838032, + "bounds": { + "minlat": 40.7729730, + "minlon": -73.9821059, + "maxlat": 40.7729979, + "maxlon": -73.9820473 + }, + "nodes": [ + 6173564360, + 9170816532 + ], + "geometry": [ + { "lat": 40.7729979, "lon": -73.9821059 }, + { "lat": 40.7729730, "lon": -73.9820473 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 65th Street", + "name:ru": "Западная 65-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 693941783, + "bounds": { + "minlat": 40.8078972, + "minlon": -73.9349880, + "maxlat": 40.8093528, + "maxlon": -73.9343735 + }, + "nodes": [ + 6516908811, + 9153699983, + 6516908805, + 6515254144, + 6515254143, + 6515254145, + 6532262531, + 373756705 + ], + "geometry": [ + { "lat": 40.8093528, "lon": -73.9349880 }, + { "lat": 40.8091300, "lon": -73.9349267 }, + { "lat": 40.8089198, "lon": -73.9348604 }, + { "lat": 40.8087177, "lon": -73.9347837 }, + { "lat": 40.8085084, "lon": -73.9346956 }, + { "lat": 40.8082852, "lon": -73.9345858 }, + { "lat": 40.8080974, "lon": -73.9344889 }, + { "lat": 40.8078972, "lon": -73.9343735 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD" + } +}, +{ + "type": "way", + "id": 694312424, + "bounds": { + "minlat": 40.7384657, + "minlon": -74.0038696, + "maxlat": 40.7387561, + "maxlon": -74.0038585 + }, + "nodes": [ + 6211334204, + 8307463677, + 8307463673, + 42431500 + ], + "geometry": [ + { "lat": 40.7384657, "lon": -74.0038696 }, + { "lat": 40.7385354, "lon": -74.0038585 }, + { "lat": 40.7387056, "lon": -74.0038597 }, + { "lat": 40.7387561, "lon": -74.0038600 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 4th Street", + "name:ru": "Западная 4-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 694635784, + "bounds": { + "minlat": 40.7353540, + "minlon": -73.9212005, + "maxlat": 40.7354294, + "maxlon": -73.9202609 + }, + "nodes": [ + 42825304, + 9194902531, + 9194902530, + 2874954751, + 9194902529, + 9194902528, + 10084797200, + 42825303 + ], + "geometry": [ + { "lat": 40.7353540, "lon": -73.9202609 }, + { "lat": 40.7353581, "lon": -73.9203707 }, + { "lat": 40.7353647, "lon": -73.9204984 }, + { "lat": 40.7353764, "lon": -73.9206921 }, + { "lat": 40.7353868, "lon": -73.9208196 }, + { "lat": 40.7353976, "lon": -73.9209309 }, + { "lat": 40.7354140, "lon": -73.9210676 }, + { "lat": 40.7354294, "lon": -73.9212005 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Queens-Midtown Expressway", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Laurel Hill", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 695645351, + "bounds": { + "minlat": 40.7981666, + "minlon": -73.9233187, + "maxlat": 40.7984987, + "maxlon": -73.9227152 + }, + "nodes": [ + 6159356505, + 6159356499 + ], + "geometry": [ + { "lat": 40.7981666, "lon": -73.9227152 }, + { "lat": 40.7984987, "lon": -73.9233187 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "oneway": "yes", + "toll": "no", + "turn:lanes": "merge_to_right|none|none", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 696043278, + "bounds": { + "minlat": 40.8713484, + "minlon": -74.0015283, + "maxlat": 40.8719100, + "maxlon": -74.0010007 + }, + "nodes": [ + 103157642, + 6536061752, + 6536061753, + 6536061754, + 6536061755, + 6536061756, + 6536061757, + 6536061758, + 6536061759, + 6536061760, + 6536061761 + ], + "geometry": [ + { "lat": 40.8719100, "lon": -74.0014850 }, + { "lat": 40.8718504, "lon": -74.0014536 }, + { "lat": 40.8718049, "lon": -74.0014146 }, + { "lat": 40.8718099, "lon": -74.0013773 }, + { "lat": 40.8718135, "lon": -74.0013432 }, + { "lat": 40.8718099, "lon": -74.0013189 }, + { "lat": 40.8718000, "lon": -74.0012880 }, + { "lat": 40.8717779, "lon": -74.0012523 }, + { "lat": 40.8715361, "lon": -74.0010007 }, + { "lat": 40.8714183, "lon": -74.0013578 }, + { "lat": 40.8713484, "lon": -74.0015283 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 696043280, + "bounds": { + "minlat": 40.8724756, + "minlon": -74.0008815, + "maxlat": 40.8729178, + "maxlon": -74.0005718 + }, + "nodes": [ + 6536061768, + 6536061769, + 6536061770, + 6536061772, + 6536061771 + ], + "geometry": [ + { "lat": 40.8724756, "lon": -74.0008815 }, + { "lat": 40.8726477, "lon": -74.0007591 }, + { "lat": 40.8727751, "lon": -74.0006525 }, + { "lat": 40.8727963, "lon": -74.0006405 }, + { "lat": 40.8729178, "lon": -74.0005718 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 696043281, + "bounds": { + "minlat": 40.8727413, + "minlon": -74.0006405, + "maxlat": 40.8727963, + "maxlon": -74.0004494 + }, + "nodes": [ + 6536061772, + 9871154471, + 6536061773 + ], + "geometry": [ + { "lat": 40.8727963, "lon": -74.0006405 }, + { "lat": 40.8727582, "lon": -74.0005080 }, + { "lat": 40.8727413, "lon": -74.0004494 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 696043298, + "bounds": { + "minlat": 40.8762557, + "minlon": -74.0071142, + "maxlat": 40.8765754, + "maxlon": -74.0068906 + }, + "nodes": [ + 6536062052, + 6536062053, + 6536062054, + 6536062055, + 6536062056, + 6536062057, + 6536062058, + 6536062059, + 6536062060, + 6536062061, + 4469436732 + ], + "geometry": [ + { "lat": 40.8762557, "lon": -74.0070859 }, + { "lat": 40.8763965, "lon": -74.0069185 }, + { "lat": 40.8764238, "lon": -74.0068955 }, + { "lat": 40.8764462, "lon": -74.0068906 }, + { "lat": 40.8764710, "lon": -74.0068906 }, + { "lat": 40.8764996, "lon": -74.0068939 }, + { "lat": 40.8765282, "lon": -74.0069054 }, + { "lat": 40.8765468, "lon": -74.0069218 }, + { "lat": 40.8765605, "lon": -74.0069448 }, + { "lat": 40.8765679, "lon": -74.0069859 }, + { "lat": 40.8765754, "lon": -74.0071142 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 696043299, + "bounds": { + "minlat": 40.8764349, + "minlon": -74.0031129, + "maxlat": 40.8770319, + "maxlon": -74.0029115 + }, + "nodes": [ + 103302936, + 6536062062, + 6536062063, + 6536062064, + 6536062065, + 6536062066, + 6536062067, + 6536062068, + 6536062069, + 6536062070, + 6536062071, + 6536062072, + 6536062073, + 6536062074, + 6536062075 + ], + "geometry": [ + { "lat": 40.8764349, "lon": -74.0029521 }, + { "lat": 40.8764529, "lon": -74.0029514 }, + { "lat": 40.8764623, "lon": -74.0029514 }, + { "lat": 40.8764751, "lon": -74.0029541 }, + { "lat": 40.8764851, "lon": -74.0029630 }, + { "lat": 40.8764939, "lon": -74.0029745 }, + { "lat": 40.8765623, "lon": -74.0030872 }, + { "lat": 40.8765703, "lon": -74.0030987 }, + { "lat": 40.8765811, "lon": -74.0031085 }, + { "lat": 40.8765965, "lon": -74.0031120 }, + { "lat": 40.8766066, "lon": -74.0031129 }, + { "lat": 40.8766254, "lon": -74.0031111 }, + { "lat": 40.8766401, "lon": -74.0031076 }, + { "lat": 40.8766549, "lon": -74.0031014 }, + { "lat": 40.8770319, "lon": -74.0029115 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 696043331, + "bounds": { + "minlat": 40.8774725, + "minlon": -74.0010745, + "maxlat": 40.8778752, + "maxlon": -74.0006123 + }, + "nodes": [ + 6536062547, + 6536062546, + 6536062545 + ], + "geometry": [ + { "lat": 40.8778752, "lon": -74.0006123 }, + { "lat": 40.8774725, "lon": -74.0008313 }, + { "lat": 40.8775522, "lon": -74.0010745 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 696043336, + "bounds": { + "minlat": 40.8788613, + "minlon": -73.9992936, + "maxlat": 40.8791842, + "maxlon": -73.9986221 + }, + "nodes": [ + 6536062569, + 9814516343, + 6536062568, + 9814516344, + 9814516346, + 6536062567, + 9814516345, + 6536062566 + ], + "geometry": [ + { "lat": 40.8790263, "lon": -73.9992936 }, + { "lat": 40.8788664, "lon": -73.9987514 }, + { "lat": 40.8788613, "lon": -73.9987154 }, + { "lat": 40.8788623, "lon": -73.9986895 }, + { "lat": 40.8789709, "lon": -73.9986221 }, + { "lat": 40.8789874, "lon": -73.9986266 }, + { "lat": 40.8789981, "lon": -73.9986491 }, + { "lat": 40.8791842, "lon": -73.9992036 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 696448437, + "bounds": { + "minlat": 40.7011345, + "minlon": -73.9930486, + "maxlat": 40.7014882, + "maxlon": -73.9928262 + }, + "nodes": [ + 42483450, + 13051540657, + 6540260253, + 11682365847, + 11682365848, + 3204144469, + 11679066135, + 465132518 + ], + "geometry": [ + { "lat": 40.7011345, "lon": -73.9930486 }, + { "lat": 40.7011925, "lon": -73.9930213 }, + { "lat": 40.7013484, "lon": -73.9929492 }, + { "lat": 40.7013855, "lon": -73.9929275 }, + { "lat": 40.7013938, "lon": -73.9929215 }, + { "lat": 40.7014239, "lon": -73.9928998 }, + { "lat": 40.7014570, "lon": -73.9928677 }, + { "lat": 40.7014882, "lon": -73.9928262 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Hicks Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hicks", + "tiger:name_type": "St", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 696491643, + "bounds": { + "minlat": 40.7595749, + "minlon": -73.9995743, + "maxlat": 40.7597017, + "maxlon": -73.9992852 + }, + "nodes": [ + 5481848951, + 8261122956, + 42430664 + ], + "geometry": [ + { "lat": 40.7597017, "lon": -73.9995743 }, + { "lat": 40.7596218, "lon": -73.9993846 }, + { "lat": 40.7595749, "lon": -73.9992852 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "note": "signed as the Lincoln Tunnel truck route from NY 9A northbound", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 696491645, + "bounds": { + "minlat": 40.7576744, + "minlon": -74.0005846, + "maxlat": 40.7582961, + "maxlon": -74.0001285 + }, + "nodes": [ + 42430651, + 4604294526, + 8261122903, + 42430646 + ], + "geometry": [ + { "lat": 40.7582961, "lon": -74.0001285 }, + { "lat": 40.7582408, "lon": -74.0001700 }, + { "lat": 40.7577415, "lon": -74.0005354 }, + { "lat": 40.7576744, "lon": -74.0005846 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "lanes:backward": "3", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 697223502, + "bounds": { + "minlat": 40.7312259, + "minlon": -73.9260349, + "maxlat": 40.7317950, + "maxlon": -73.9256564 + }, + "nodes": [ + 6548383017, + 5978376418 + ], + "geometry": [ + { "lat": 40.7317950, "lon": -73.9256564 }, + { "lat": 40.7312259, "lon": -73.9260349 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 697619149, + "bounds": { + "minlat": 40.7125664, + "minlon": -74.0135650, + "maxlat": 40.7125806, + "maxlon": -74.0135464 + }, + "nodes": [ + 6551500694, + 6551500691, + 6551500692, + 6551500689, + 6551500694 + ], + "geometry": [ + { "lat": 40.7125806, "lon": -74.0135582 }, + { "lat": 40.7125756, "lon": -74.0135464 }, + { "lat": 40.7125664, "lon": -74.0135531 }, + { "lat": 40.7125714, "lon": -74.0135650 }, + { "lat": 40.7125806, "lon": -74.0135582 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619150, + "bounds": { + "minlat": 40.7114241, + "minlon": -74.0141992, + "maxlat": 40.7115017, + "maxlon": -74.0140629 + }, + "nodes": [ + 6551501271, + 7133483558, + 10288472758, + 6551501276, + 6551500690, + 6551501283, + 10288472757, + 7133483559, + 6551501285, + 6551501271 + ], + "geometry": [ + { "lat": 40.7115017, "lon": -74.0141955 }, + { "lat": 40.7114866, "lon": -74.0141596 }, + { "lat": 40.7114795, "lon": -74.0141427 }, + { "lat": 40.7114711, "lon": -74.0141227 }, + { "lat": 40.7114461, "lon": -74.0140629 }, + { "lat": 40.7114241, "lon": -74.0140691 }, + { "lat": 40.7114567, "lon": -74.0141467 }, + { "lat": 40.7114637, "lon": -74.0141635 }, + { "lat": 40.7114787, "lon": -74.0141992 }, + { "lat": 40.7115017, "lon": -74.0141955 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619151, + "bounds": { + "minlat": 40.7125829, + "minlon": -74.0136040, + "maxlat": 40.7125971, + "maxlon": -74.0135854 + }, + "nodes": [ + 6551500702, + 6551500699, + 6551500700, + 6551500697, + 6551500702 + ], + "geometry": [ + { "lat": 40.7125971, "lon": -74.0135973 }, + { "lat": 40.7125921, "lon": -74.0135854 }, + { "lat": 40.7125829, "lon": -74.0135921 }, + { "lat": 40.7125879, "lon": -74.0136040 }, + { "lat": 40.7125971, "lon": -74.0135973 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619152, + "bounds": { + "minlat": 40.7125582, + "minlon": -74.0135455, + "maxlat": 40.7125724, + "maxlon": -74.0135269 + }, + "nodes": [ + 6551500698, + 6551500695, + 6551500696, + 6551500693, + 6551500698 + ], + "geometry": [ + { "lat": 40.7125724, "lon": -74.0135387 }, + { "lat": 40.7125674, "lon": -74.0135269 }, + { "lat": 40.7125582, "lon": -74.0135336 }, + { "lat": 40.7125632, "lon": -74.0135455 }, + { "lat": 40.7125724, "lon": -74.0135387 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619153, + "bounds": { + "minlat": 40.7123741, + "minlon": -74.0136321, + "maxlat": 40.7123883, + "maxlon": -74.0136135 + }, + "nodes": [ + 6551500710, + 6551500707, + 6551500708, + 6551500705, + 6551500710 + ], + "geometry": [ + { "lat": 40.7123883, "lon": -74.0136253 }, + { "lat": 40.7123833, "lon": -74.0136135 }, + { "lat": 40.7123741, "lon": -74.0136202 }, + { "lat": 40.7123791, "lon": -74.0136321 }, + { "lat": 40.7123883, "lon": -74.0136253 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619154, + "bounds": { + "minlat": 40.7125747, + "minlon": -74.0135845, + "maxlat": 40.7125888, + "maxlon": -74.0135659 + }, + "nodes": [ + 6551500706, + 6551500703, + 6551500704, + 6551500701, + 6551500706 + ], + "geometry": [ + { "lat": 40.7125888, "lon": -74.0135778 }, + { "lat": 40.7125838, "lon": -74.0135659 }, + { "lat": 40.7125747, "lon": -74.0135726 }, + { "lat": 40.7125797, "lon": -74.0135845 }, + { "lat": 40.7125888, "lon": -74.0135778 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619155, + "bounds": { + "minlat": 40.7123824, + "minlon": -74.0136516, + "maxlat": 40.7123965, + "maxlon": -74.0136330 + }, + "nodes": [ + 6551500718, + 6551500715, + 6551500716, + 6551500713, + 6551500718 + ], + "geometry": [ + { "lat": 40.7123965, "lon": -74.0136449 }, + { "lat": 40.7123915, "lon": -74.0136330 }, + { "lat": 40.7123824, "lon": -74.0136397 }, + { "lat": 40.7123874, "lon": -74.0136516 }, + { "lat": 40.7123965, "lon": -74.0136449 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619156, + "bounds": { + "minlat": 40.7123659, + "minlon": -74.0136126, + "maxlat": 40.7123801, + "maxlon": -74.0135940 + }, + "nodes": [ + 6551500714, + 6551500711, + 6551500712, + 6551500709, + 6551500714 + ], + "geometry": [ + { "lat": 40.7123801, "lon": -74.0136058 }, + { "lat": 40.7123751, "lon": -74.0135940 }, + { "lat": 40.7123659, "lon": -74.0136007 }, + { "lat": 40.7123709, "lon": -74.0136126 }, + { "lat": 40.7123801, "lon": -74.0136058 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619157, + "bounds": { + "minlat": 40.7123906, + "minlon": -74.0136711, + "maxlat": 40.7124048, + "maxlon": -74.0136525 + }, + "nodes": [ + 6551500726, + 6551500723, + 6551500724, + 6551500721, + 6551500726 + ], + "geometry": [ + { "lat": 40.7124048, "lon": -74.0136644 }, + { "lat": 40.7123998, "lon": -74.0136525 }, + { "lat": 40.7123906, "lon": -74.0136593 }, + { "lat": 40.7123956, "lon": -74.0136711 }, + { "lat": 40.7124048, "lon": -74.0136644 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619158, + "bounds": { + "minlat": 40.7123988, + "minlon": -74.0136906, + "maxlat": 40.7124130, + "maxlon": -74.0136720 + }, + "nodes": [ + 6551500722, + 6551500719, + 6551500720, + 6551500717, + 6551500722 + ], + "geometry": [ + { "lat": 40.7124130, "lon": -74.0136839 }, + { "lat": 40.7124080, "lon": -74.0136720 }, + { "lat": 40.7123988, "lon": -74.0136788 }, + { "lat": 40.7124038, "lon": -74.0136906 }, + { "lat": 40.7124130, "lon": -74.0136839 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619159, + "bounds": { + "minlat": 40.7124777, + "minlon": -74.0134992, + "maxlat": 40.7124918, + "maxlon": -74.0134806 + }, + "nodes": [ + 6551500734, + 6551500731, + 6551500732, + 6551500729, + 6551500734 + ], + "geometry": [ + { "lat": 40.7124918, "lon": -74.0134924 }, + { "lat": 40.7124868, "lon": -74.0134806 }, + { "lat": 40.7124777, "lon": -74.0134873 }, + { "lat": 40.7124827, "lon": -74.0134992 }, + { "lat": 40.7124918, "lon": -74.0134924 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619160, + "bounds": { + "minlat": 40.7124859, + "minlon": -74.0135187, + "maxlat": 40.7125001, + "maxlon": -74.0135001 + }, + "nodes": [ + 6551500730, + 6551500727, + 6551500728, + 6551500725, + 6551500730 + ], + "geometry": [ + { "lat": 40.7125001, "lon": -74.0135120 }, + { "lat": 40.7124951, "lon": -74.0135001 }, + { "lat": 40.7124859, "lon": -74.0135068 }, + { "lat": 40.7124909, "lon": -74.0135187 }, + { "lat": 40.7125001, "lon": -74.0135120 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619161, + "bounds": { + "minlat": 40.7124400, + "minlon": -74.0135841, + "maxlat": 40.7124541, + "maxlon": -74.0135655 + }, + "nodes": [ + 6551500742, + 6551500739, + 6551500740, + 6551500737, + 6551500742 + ], + "geometry": [ + { "lat": 40.7124541, "lon": -74.0135774 }, + { "lat": 40.7124491, "lon": -74.0135655 }, + { "lat": 40.7124400, "lon": -74.0135723 }, + { "lat": 40.7124450, "lon": -74.0135841 }, + { "lat": 40.7124541, "lon": -74.0135774 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619162, + "bounds": { + "minlat": 40.7124235, + "minlon": -74.0135451, + "maxlat": 40.7124377, + "maxlon": -74.0135265 + }, + "nodes": [ + 6551500738, + 6551500735, + 6551500736, + 6551500733, + 6551500738 + ], + "geometry": [ + { "lat": 40.7124377, "lon": -74.0135384 }, + { "lat": 40.7124327, "lon": -74.0135265 }, + { "lat": 40.7124235, "lon": -74.0135332 }, + { "lat": 40.7124285, "lon": -74.0135451 }, + { "lat": 40.7124377, "lon": -74.0135384 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619163, + "bounds": { + "minlat": 40.7122176, + "minlon": -74.0137044, + "maxlat": 40.7122317, + "maxlon": -74.0136858 + }, + "nodes": [ + 6551500750, + 6551500747, + 6551500748, + 6551500745, + 6551500750 + ], + "geometry": [ + { "lat": 40.7122317, "lon": -74.0136976 }, + { "lat": 40.7122267, "lon": -74.0136858 }, + { "lat": 40.7122176, "lon": -74.0136925 }, + { "lat": 40.7122226, "lon": -74.0137044 }, + { "lat": 40.7122317, "lon": -74.0136976 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619164, + "bounds": { + "minlat": 40.7124318, + "minlon": -74.0135646, + "maxlat": 40.7124459, + "maxlon": -74.0135460 + }, + "nodes": [ + 6551500746, + 6551500743, + 6551500744, + 6551500741, + 6551500746 + ], + "geometry": [ + { "lat": 40.7124459, "lon": -74.0135579 }, + { "lat": 40.7124409, "lon": -74.0135460 }, + { "lat": 40.7124318, "lon": -74.0135528 }, + { "lat": 40.7124368, "lon": -74.0135646 }, + { "lat": 40.7124459, "lon": -74.0135579 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619165, + "bounds": { + "minlat": 40.7122258, + "minlon": -74.0137239, + "maxlat": 40.7122400, + "maxlon": -74.0137053 + }, + "nodes": [ + 6551500758, + 6551500755, + 6551500756, + 6551500753, + 6551500758 + ], + "geometry": [ + { "lat": 40.7122400, "lon": -74.0137172 }, + { "lat": 40.7122350, "lon": -74.0137053 }, + { "lat": 40.7122258, "lon": -74.0137120 }, + { "lat": 40.7122308, "lon": -74.0137239 }, + { "lat": 40.7122400, "lon": -74.0137172 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619166, + "bounds": { + "minlat": 40.7122340, + "minlon": -74.0137434, + "maxlat": 40.7122482, + "maxlon": -74.0137248 + }, + "nodes": [ + 6551500754, + 6551500751, + 6551500752, + 6551500749, + 6551500754 + ], + "geometry": [ + { "lat": 40.7122482, "lon": -74.0137367 }, + { "lat": 40.7122432, "lon": -74.0137248 }, + { "lat": 40.7122340, "lon": -74.0137315 }, + { "lat": 40.7122390, "lon": -74.0137434 }, + { "lat": 40.7122482, "lon": -74.0137367 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619167, + "bounds": { + "minlat": 40.7121200, + "minlon": -74.0138147, + "maxlat": 40.7121342, + "maxlon": -74.0137961 + }, + "nodes": [ + 6551500766, + 6551500763, + 6551500764, + 6551500761, + 6551500766 + ], + "geometry": [ + { "lat": 40.7121342, "lon": -74.0138080 }, + { "lat": 40.7121292, "lon": -74.0137961 }, + { "lat": 40.7121200, "lon": -74.0138029 }, + { "lat": 40.7121250, "lon": -74.0138147 }, + { "lat": 40.7121342, "lon": -74.0138080 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619168, + "bounds": { + "minlat": 40.7121036, + "minlon": -74.0137757, + "maxlat": 40.7121178, + "maxlon": -74.0137571 + }, + "nodes": [ + 6551500762, + 6551500759, + 6551500760, + 6551500757, + 6551500762 + ], + "geometry": [ + { "lat": 40.7121178, "lon": -74.0137690 }, + { "lat": 40.7121128, "lon": -74.0137571 }, + { "lat": 40.7121036, "lon": -74.0137638 }, + { "lat": 40.7121086, "lon": -74.0137757 }, + { "lat": 40.7121178, "lon": -74.0137690 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619169, + "bounds": { + "minlat": 40.7121653, + "minlon": -74.0124712, + "maxlat": 40.7121795, + "maxlon": -74.0124526 + }, + "nodes": [ + 6551500774, + 6551500771, + 6551500772, + 6551500769, + 6551500774 + ], + "geometry": [ + { "lat": 40.7121795, "lon": -74.0124645 }, + { "lat": 40.7121745, "lon": -74.0124526 }, + { "lat": 40.7121653, "lon": -74.0124594 }, + { "lat": 40.7121703, "lon": -74.0124712 }, + { "lat": 40.7121795, "lon": -74.0124645 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619170, + "bounds": { + "minlat": 40.7121118, + "minlon": -74.0137952, + "maxlat": 40.7121260, + "maxlon": -74.0137766 + }, + "nodes": [ + 6551500770, + 6551500767, + 6551500768, + 6551500765, + 6551500770 + ], + "geometry": [ + { "lat": 40.7121260, "lon": -74.0137885 }, + { "lat": 40.7121210, "lon": -74.0137766 }, + { "lat": 40.7121118, "lon": -74.0137834 }, + { "lat": 40.7121168, "lon": -74.0137952 }, + { "lat": 40.7121260, "lon": -74.0137885 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619171, + "bounds": { + "minlat": 40.7121094, + "minlon": -74.0123386, + "maxlat": 40.7121236, + "maxlon": -74.0123200 + }, + "nodes": [ + 6551500782, + 6551500779, + 6551500780, + 6551500777, + 6551500782 + ], + "geometry": [ + { "lat": 40.7121236, "lon": -74.0123319 }, + { "lat": 40.7121186, "lon": -74.0123200 }, + { "lat": 40.7121094, "lon": -74.0123268 }, + { "lat": 40.7121144, "lon": -74.0123386 }, + { "lat": 40.7121236, "lon": -74.0123319 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619172, + "bounds": { + "minlat": 40.7121571, + "minlon": -74.0124517, + "maxlat": 40.7121713, + "maxlon": -74.0124331 + }, + "nodes": [ + 6551500778, + 6551500775, + 6551500776, + 6551500773, + 6551500778 + ], + "geometry": [ + { "lat": 40.7121713, "lon": -74.0124450 }, + { "lat": 40.7121663, "lon": -74.0124331 }, + { "lat": 40.7121571, "lon": -74.0124398 }, + { "lat": 40.7121621, "lon": -74.0124517 }, + { "lat": 40.7121713, "lon": -74.0124450 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619173, + "bounds": { + "minlat": 40.7121258, + "minlon": -74.0123777, + "maxlat": 40.7121400, + "maxlon": -74.0123591 + }, + "nodes": [ + 6551500790, + 6551500787, + 6551500788, + 6551500785, + 6551500790 + ], + "geometry": [ + { "lat": 40.7121400, "lon": -74.0123709 }, + { "lat": 40.7121350, "lon": -74.0123591 }, + { "lat": 40.7121258, "lon": -74.0123658 }, + { "lat": 40.7121309, "lon": -74.0123777 }, + { "lat": 40.7121400, "lon": -74.0123709 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619174, + "bounds": { + "minlat": 40.7121012, + "minlon": -74.0123191, + "maxlat": 40.7121153, + "maxlon": -74.0123005 + }, + "nodes": [ + 6551500786, + 6551500783, + 6551500784, + 6551500781, + 6551500786 + ], + "geometry": [ + { "lat": 40.7121153, "lon": -74.0123124 }, + { "lat": 40.7121103, "lon": -74.0123005 }, + { "lat": 40.7121012, "lon": -74.0123072 }, + { "lat": 40.7121062, "lon": -74.0123191 }, + { "lat": 40.7121153, "lon": -74.0123124 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619175, + "bounds": { + "minlat": 40.7120940, + "minlon": -74.0125849, + "maxlat": 40.7121081, + "maxlon": -74.0125663 + }, + "nodes": [ + 6551500798, + 6551500795, + 6551500796, + 6551500793, + 6551500798 + ], + "geometry": [ + { "lat": 40.7121081, "lon": -74.0125782 }, + { "lat": 40.7121031, "lon": -74.0125663 }, + { "lat": 40.7120940, "lon": -74.0125730 }, + { "lat": 40.7120990, "lon": -74.0125849 }, + { "lat": 40.7121081, "lon": -74.0125782 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619176, + "bounds": { + "minlat": 40.7121176, + "minlon": -74.0123582, + "maxlat": 40.7121318, + "maxlon": -74.0123395 + }, + "nodes": [ + 6551500794, + 6551500791, + 6551500792, + 6551500789, + 6551500794 + ], + "geometry": [ + { "lat": 40.7121318, "lon": -74.0123514 }, + { "lat": 40.7121268, "lon": -74.0123395 }, + { "lat": 40.7121176, "lon": -74.0123463 }, + { "lat": 40.7121226, "lon": -74.0123582 }, + { "lat": 40.7121318, "lon": -74.0123514 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619177, + "bounds": { + "minlat": 40.7121022, + "minlon": -74.0126044, + "maxlat": 40.7121164, + "maxlon": -74.0125858 + }, + "nodes": [ + 6551500806, + 6551500803, + 6551500804, + 6551500801, + 6551500806 + ], + "geometry": [ + { "lat": 40.7121164, "lon": -74.0125977 }, + { "lat": 40.7121114, "lon": -74.0125858 }, + { "lat": 40.7121022, "lon": -74.0125925 }, + { "lat": 40.7121072, "lon": -74.0126044 }, + { "lat": 40.7121164, "lon": -74.0125977 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619178, + "bounds": { + "minlat": 40.7121104, + "minlon": -74.0126239, + "maxlat": 40.7121246, + "maxlon": -74.0126053 + }, + "nodes": [ + 6551500802, + 6551500799, + 6551500800, + 6551500797, + 6551500802 + ], + "geometry": [ + { "lat": 40.7121246, "lon": -74.0126172 }, + { "lat": 40.7121196, "lon": -74.0126053 }, + { "lat": 40.7121104, "lon": -74.0126121 }, + { "lat": 40.7121154, "lon": -74.0126239 }, + { "lat": 40.7121246, "lon": -74.0126172 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619179, + "bounds": { + "minlat": 40.7120364, + "minlon": -74.0124470, + "maxlat": 40.7120506, + "maxlon": -74.0124284 + }, + "nodes": [ + 6551500814, + 6551500811, + 6551500812, + 6551500809, + 6551500814 + ], + "geometry": [ + { "lat": 40.7120506, "lon": -74.0124403 }, + { "lat": 40.7120456, "lon": -74.0124284 }, + { "lat": 40.7120364, "lon": -74.0124352 }, + { "lat": 40.7120414, "lon": -74.0124470 }, + { "lat": 40.7120506, "lon": -74.0124403 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619180, + "bounds": { + "minlat": 40.7120200, + "minlon": -74.0124080, + "maxlat": 40.7120342, + "maxlon": -74.0123894 + }, + "nodes": [ + 6551500810, + 6551500807, + 6551500808, + 6551500805, + 6551500810 + ], + "geometry": [ + { "lat": 40.7120342, "lon": -74.0124013 }, + { "lat": 40.7120292, "lon": -74.0123894 }, + { "lat": 40.7120200, "lon": -74.0123961 }, + { "lat": 40.7120250, "lon": -74.0124080 }, + { "lat": 40.7120342, "lon": -74.0124013 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619181, + "bounds": { + "minlat": 40.7119916, + "minlon": -74.0125161, + "maxlat": 40.7120058, + "maxlon": -74.0124975 + }, + "nodes": [ + 6551500822, + 6551500819, + 6551500820, + 6551500817, + 6551500822 + ], + "geometry": [ + { "lat": 40.7120058, "lon": -74.0125093 }, + { "lat": 40.7120008, "lon": -74.0124975 }, + { "lat": 40.7119916, "lon": -74.0125042 }, + { "lat": 40.7119966, "lon": -74.0125161 }, + { "lat": 40.7120058, "lon": -74.0125093 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619182, + "bounds": { + "minlat": 40.7120282, + "minlon": -74.0124275, + "maxlat": 40.7120424, + "maxlon": -74.0124089 + }, + "nodes": [ + 6551500818, + 6551500815, + 6551500816, + 6551500813, + 6551500818 + ], + "geometry": [ + { "lat": 40.7120424, "lon": -74.0124208 }, + { "lat": 40.7120374, "lon": -74.0124089 }, + { "lat": 40.7120282, "lon": -74.0124157 }, + { "lat": 40.7120332, "lon": -74.0124275 }, + { "lat": 40.7120424, "lon": -74.0124208 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619183, + "bounds": { + "minlat": 40.7119999, + "minlon": -74.0125356, + "maxlat": 40.7120140, + "maxlon": -74.0125170 + }, + "nodes": [ + 6551500830, + 6551500827, + 6551500828, + 6551500825, + 6551500830 + ], + "geometry": [ + { "lat": 40.7120140, "lon": -74.0125289 }, + { "lat": 40.7120090, "lon": -74.0125170 }, + { "lat": 40.7119999, "lon": -74.0125237 }, + { "lat": 40.7120049, "lon": -74.0125356 }, + { "lat": 40.7120140, "lon": -74.0125289 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619184, + "bounds": { + "minlat": 40.7120081, + "minlon": -74.0125551, + "maxlat": 40.7120223, + "maxlon": -74.0125365 + }, + "nodes": [ + 6551500826, + 6551500823, + 6551500824, + 6551500821, + 6551500826 + ], + "geometry": [ + { "lat": 40.7120223, "lon": -74.0125484 }, + { "lat": 40.7120173, "lon": -74.0125365 }, + { "lat": 40.7120081, "lon": -74.0125432 }, + { "lat": 40.7120131, "lon": -74.0125551 }, + { "lat": 40.7120223, "lon": -74.0125484 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619185, + "bounds": { + "minlat": 40.7117777, + "minlon": -74.0124360, + "maxlat": 40.7117919, + "maxlon": -74.0124174 + }, + "nodes": [ + 6551500838, + 6551500835, + 6551500836, + 6551500833, + 6551500838 + ], + "geometry": [ + { "lat": 40.7117919, "lon": -74.0124293 }, + { "lat": 40.7117869, "lon": -74.0124174 }, + { "lat": 40.7117777, "lon": -74.0124241 }, + { "lat": 40.7117827, "lon": -74.0124360 }, + { "lat": 40.7117919, "lon": -74.0124293 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619186, + "bounds": { + "minlat": 40.7119007, + "minlon": -74.0125040, + "maxlat": 40.7119149, + "maxlon": -74.0124854 + }, + "nodes": [ + 6551500834, + 6551500831, + 6551500832, + 6551500829, + 6551500834 + ], + "geometry": [ + { "lat": 40.7119149, "lon": -74.0124972 }, + { "lat": 40.7119099, "lon": -74.0124854 }, + { "lat": 40.7119007, "lon": -74.0124921 }, + { "lat": 40.7119057, "lon": -74.0125040 }, + { "lat": 40.7119149, "lon": -74.0124972 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619187, + "bounds": { + "minlat": 40.7117860, + "minlon": -74.0124555, + "maxlat": 40.7118001, + "maxlon": -74.0124369 + }, + "nodes": [ + 6551500846, + 6551500843, + 6551500844, + 6551500841, + 6551500846 + ], + "geometry": [ + { "lat": 40.7118001, "lon": -74.0124488 }, + { "lat": 40.7117951, "lon": -74.0124369 }, + { "lat": 40.7117860, "lon": -74.0124437 }, + { "lat": 40.7117910, "lon": -74.0124555 }, + { "lat": 40.7118001, "lon": -74.0124488 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619188, + "bounds": { + "minlat": 40.7117942, + "minlon": -74.0124750, + "maxlat": 40.7118084, + "maxlon": -74.0124564 + }, + "nodes": [ + 6551500842, + 6551500839, + 6551500840, + 6551500837, + 6551500842 + ], + "geometry": [ + { "lat": 40.7118084, "lon": -74.0124683 }, + { "lat": 40.7118034, "lon": -74.0124564 }, + { "lat": 40.7117942, "lon": -74.0124632 }, + { "lat": 40.7117992, "lon": -74.0124750 }, + { "lat": 40.7118084, "lon": -74.0124683 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619189, + "bounds": { + "minlat": 40.7119927, + "minlon": -74.0127232, + "maxlat": 40.7120069, + "maxlon": -74.0127046 + }, + "nodes": [ + 6551500854, + 6551500851, + 6551500852, + 6551500849, + 6551500854 + ], + "geometry": [ + { "lat": 40.7120069, "lon": -74.0127164 }, + { "lat": 40.7120019, "lon": -74.0127046 }, + { "lat": 40.7119927, "lon": -74.0127113 }, + { "lat": 40.7119977, "lon": -74.0127232 }, + { "lat": 40.7120069, "lon": -74.0127164 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619190, + "bounds": { + "minlat": 40.7119763, + "minlon": -74.0126841, + "maxlat": 40.7119904, + "maxlon": -74.0126655 + }, + "nodes": [ + 6551500850, + 6551500847, + 6551500848, + 6551500845, + 6551500850 + ], + "geometry": [ + { "lat": 40.7119904, "lon": -74.0126774 }, + { "lat": 40.7119854, "lon": -74.0126655 }, + { "lat": 40.7119763, "lon": -74.0126723 }, + { "lat": 40.7119813, "lon": -74.0126841 }, + { "lat": 40.7119904, "lon": -74.0126774 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619191, + "bounds": { + "minlat": 40.7118323, + "minlon": -74.0127864, + "maxlat": 40.7118465, + "maxlon": -74.0127678 + }, + "nodes": [ + 6551500862, + 6551500859, + 6551500860, + 6551500857, + 6551500862 + ], + "geometry": [ + { "lat": 40.7118465, "lon": -74.0127797 }, + { "lat": 40.7118415, "lon": -74.0127678 }, + { "lat": 40.7118323, "lon": -74.0127745 }, + { "lat": 40.7118373, "lon": -74.0127864 }, + { "lat": 40.7118465, "lon": -74.0127797 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619192, + "bounds": { + "minlat": 40.7119845, + "minlon": -74.0127036, + "maxlat": 40.7119986, + "maxlon": -74.0126850 + }, + "nodes": [ + 6551500858, + 6551500855, + 6551500856, + 6551500853, + 6551500858 + ], + "geometry": [ + { "lat": 40.7119986, "lon": -74.0126969 }, + { "lat": 40.7119936, "lon": -74.0126850 }, + { "lat": 40.7119845, "lon": -74.0126918 }, + { "lat": 40.7119895, "lon": -74.0127036 }, + { "lat": 40.7119986, "lon": -74.0126969 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619201, + "bounds": { + "minlat": 40.7116998, + "minlon": -74.0132764, + "maxlat": 40.7117140, + "maxlon": -74.0132578 + }, + "nodes": [ + 6551500902, + 6551500899, + 6551500900, + 6551500897, + 6551500902 + ], + "geometry": [ + { "lat": 40.7117140, "lon": -74.0132697 }, + { "lat": 40.7117090, "lon": -74.0132578 }, + { "lat": 40.7116998, "lon": -74.0132645 }, + { "lat": 40.7117048, "lon": -74.0132764 }, + { "lat": 40.7117140, "lon": -74.0132697 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619203, + "bounds": { + "minlat": 40.7117080, + "minlon": -74.0132959, + "maxlat": 40.7117222, + "maxlon": -74.0132773 + }, + "nodes": [ + 6551500910, + 6551500907, + 6551500908, + 6551500905, + 6551500910 + ], + "geometry": [ + { "lat": 40.7117222, "lon": -74.0132892 }, + { "lat": 40.7117172, "lon": -74.0132773 }, + { "lat": 40.7117080, "lon": -74.0132840 }, + { "lat": 40.7117130, "lon": -74.0132959 }, + { "lat": 40.7117222, "lon": -74.0132892 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619204, + "bounds": { + "minlat": 40.7117162, + "minlon": -74.0133154, + "maxlat": 40.7117304, + "maxlon": -74.0132968 + }, + "nodes": [ + 6551500906, + 6551500903, + 6551500904, + 6551500901, + 6551500906 + ], + "geometry": [ + { "lat": 40.7117304, "lon": -74.0133087 }, + { "lat": 40.7117254, "lon": -74.0132968 }, + { "lat": 40.7117162, "lon": -74.0133036 }, + { "lat": 40.7117212, "lon": -74.0133154 }, + { "lat": 40.7117304, "lon": -74.0133087 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619205, + "bounds": { + "minlat": 40.7118204, + "minlon": -74.0135637, + "maxlat": 40.7118346, + "maxlon": -74.0135451 + }, + "nodes": [ + 6551500918, + 6551500915, + 6551500916, + 6551500913, + 6551500918 + ], + "geometry": [ + { "lat": 40.7118346, "lon": -74.0135569 }, + { "lat": 40.7118296, "lon": -74.0135451 }, + { "lat": 40.7118204, "lon": -74.0135518 }, + { "lat": 40.7118254, "lon": -74.0135637 }, + { "lat": 40.7118346, "lon": -74.0135569 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619206, + "bounds": { + "minlat": 40.7118286, + "minlon": -74.0135832, + "maxlat": 40.7118428, + "maxlon": -74.0135646 + }, + "nodes": [ + 6551500914, + 6551500911, + 6551500912, + 6551500909, + 6551500914 + ], + "geometry": [ + { "lat": 40.7118428, "lon": -74.0135764 }, + { "lat": 40.7118378, "lon": -74.0135646 }, + { "lat": 40.7118286, "lon": -74.0135713 }, + { "lat": 40.7118336, "lon": -74.0135832 }, + { "lat": 40.7118428, "lon": -74.0135764 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619207, + "bounds": { + "minlat": 40.7120313, + "minlon": -74.0139074, + "maxlat": 40.7120455, + "maxlon": -74.0138888 + }, + "nodes": [ + 6551500926, + 6551500923, + 6551500924, + 6551500921, + 6551500926 + ], + "geometry": [ + { "lat": 40.7120455, "lon": -74.0139007 }, + { "lat": 40.7120405, "lon": -74.0138888 }, + { "lat": 40.7120313, "lon": -74.0138956 }, + { "lat": 40.7120363, "lon": -74.0139074 }, + { "lat": 40.7120455, "lon": -74.0139007 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619208, + "bounds": { + "minlat": 40.7120395, + "minlon": -74.0139270, + "maxlat": 40.7120537, + "maxlon": -74.0139084 + }, + "nodes": [ + 6551500922, + 6551500919, + 6551500920, + 6551500917, + 6551500922 + ], + "geometry": [ + { "lat": 40.7120537, "lon": -74.0139202 }, + { "lat": 40.7120487, "lon": -74.0139084 }, + { "lat": 40.7120395, "lon": -74.0139151 }, + { "lat": 40.7120445, "lon": -74.0139270 }, + { "lat": 40.7120537, "lon": -74.0139202 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619209, + "bounds": { + "minlat": 40.7119290, + "minlon": -74.0136636, + "maxlat": 40.7119432, + "maxlon": -74.0136450 + }, + "nodes": [ + 6551500934, + 6551500931, + 6551500932, + 6551500929, + 6551500934 + ], + "geometry": [ + { "lat": 40.7119432, "lon": -74.0136569 }, + { "lat": 40.7119382, "lon": -74.0136450 }, + { "lat": 40.7119290, "lon": -74.0136518 }, + { "lat": 40.7119340, "lon": -74.0136636 }, + { "lat": 40.7119432, "lon": -74.0136569 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619210, + "bounds": { + "minlat": 40.7119126, + "minlon": -74.0136246, + "maxlat": 40.7119267, + "maxlon": -74.0136060 + }, + "nodes": [ + 6551500930, + 6551500927, + 6551500928, + 6551500925, + 6551500930 + ], + "geometry": [ + { "lat": 40.7119267, "lon": -74.0136179 }, + { "lat": 40.7119217, "lon": -74.0136060 }, + { "lat": 40.7119126, "lon": -74.0136127 }, + { "lat": 40.7119176, "lon": -74.0136246 }, + { "lat": 40.7119267, "lon": -74.0136179 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619211, + "bounds": { + "minlat": 40.7118312, + "minlon": -74.0134306, + "maxlat": 40.7118454, + "maxlon": -74.0134120 + }, + "nodes": [ + 6551500942, + 6551500939, + 6551500940, + 6551500937, + 6551500942 + ], + "geometry": [ + { "lat": 40.7118454, "lon": -74.0134239 }, + { "lat": 40.7118404, "lon": -74.0134120 }, + { "lat": 40.7118312, "lon": -74.0134188 }, + { "lat": 40.7118362, "lon": -74.0134306 }, + { "lat": 40.7118454, "lon": -74.0134239 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619212, + "bounds": { + "minlat": 40.7119208, + "minlon": -74.0136441, + "maxlat": 40.7119349, + "maxlon": -74.0136255 + }, + "nodes": [ + 6551500938, + 6551500935, + 6551500936, + 6551500933, + 6551500938 + ], + "geometry": [ + { "lat": 40.7119349, "lon": -74.0136374 }, + { "lat": 40.7119299, "lon": -74.0136255 }, + { "lat": 40.7119208, "lon": -74.0136323 }, + { "lat": 40.7119258, "lon": -74.0136441 }, + { "lat": 40.7119349, "lon": -74.0136374 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619213, + "bounds": { + "minlat": 40.7118394, + "minlon": -74.0134501, + "maxlat": 40.7118536, + "maxlon": -74.0134315 + }, + "nodes": [ + 6551500950, + 6551500947, + 6551500948, + 6551500945, + 6551500950 + ], + "geometry": [ + { "lat": 40.7118536, "lon": -74.0134434 }, + { "lat": 40.7118486, "lon": -74.0134315 }, + { "lat": 40.7118394, "lon": -74.0134383 }, + { "lat": 40.7118444, "lon": -74.0134501 }, + { "lat": 40.7118536, "lon": -74.0134434 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619214, + "bounds": { + "minlat": 40.7118230, + "minlon": -74.0134111, + "maxlat": 40.7118371, + "maxlon": -74.0133925 + }, + "nodes": [ + 6551500946, + 6551500943, + 6551500944, + 6551500941, + 6551500946 + ], + "geometry": [ + { "lat": 40.7118371, "lon": -74.0134044 }, + { "lat": 40.7118321, "lon": -74.0133925 }, + { "lat": 40.7118230, "lon": -74.0133992 }, + { "lat": 40.7118280, "lon": -74.0134111 }, + { "lat": 40.7118371, "lon": -74.0134044 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619215, + "bounds": { + "minlat": 40.7118476, + "minlon": -74.0134697, + "maxlat": 40.7118618, + "maxlon": -74.0134511 + }, + "nodes": [ + 6551500958, + 6551500955, + 6551500956, + 6551500953, + 6551500958 + ], + "geometry": [ + { "lat": 40.7118618, "lon": -74.0134629 }, + { "lat": 40.7118568, "lon": -74.0134511 }, + { "lat": 40.7118476, "lon": -74.0134578 }, + { "lat": 40.7118526, "lon": -74.0134697 }, + { "lat": 40.7118618, "lon": -74.0134629 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619216, + "bounds": { + "minlat": 40.7118559, + "minlon": -74.0134892, + "maxlat": 40.7118700, + "maxlon": -74.0134706 + }, + "nodes": [ + 6551500954, + 6551500951, + 6551500952, + 6551500949, + 6551500954 + ], + "geometry": [ + { "lat": 40.7118700, "lon": -74.0134824 }, + { "lat": 40.7118650, "lon": -74.0134706 }, + { "lat": 40.7118559, "lon": -74.0134773 }, + { "lat": 40.7118609, "lon": -74.0134892 }, + { "lat": 40.7118700, "lon": -74.0134824 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619217, + "bounds": { + "minlat": 40.7117544, + "minlon": -74.0137483, + "maxlat": 40.7117686, + "maxlon": -74.0137297 + }, + "nodes": [ + 6551500966, + 6551500963, + 6551500964, + 6551500961, + 6551500966 + ], + "geometry": [ + { "lat": 40.7117686, "lon": -74.0137415 }, + { "lat": 40.7117636, "lon": -74.0137297 }, + { "lat": 40.7117544, "lon": -74.0137364 }, + { "lat": 40.7117594, "lon": -74.0137483 }, + { "lat": 40.7117686, "lon": -74.0137415 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619218, + "bounds": { + "minlat": 40.7117380, + "minlon": -74.0137092, + "maxlat": 40.7117521, + "maxlon": -74.0136906 + }, + "nodes": [ + 6551500962, + 6551500959, + 6551500960, + 6551500957, + 6551500962 + ], + "geometry": [ + { "lat": 40.7117521, "lon": -74.0137025 }, + { "lat": 40.7117471, "lon": -74.0136906 }, + { "lat": 40.7117380, "lon": -74.0136974 }, + { "lat": 40.7117430, "lon": -74.0137092 }, + { "lat": 40.7117521, "lon": -74.0137025 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619219, + "bounds": { + "minlat": 40.7117038, + "minlon": -74.0137702, + "maxlat": 40.7117179, + "maxlon": -74.0137516 + }, + "nodes": [ + 6551500974, + 6551500971, + 6551500972, + 6551500969, + 6551500974 + ], + "geometry": [ + { "lat": 40.7117179, "lon": -74.0137635 }, + { "lat": 40.7117129, "lon": -74.0137516 }, + { "lat": 40.7117038, "lon": -74.0137583 }, + { "lat": 40.7117088, "lon": -74.0137702 }, + { "lat": 40.7117179, "lon": -74.0137635 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619220, + "bounds": { + "minlat": 40.7117462, + "minlon": -74.0137288, + "maxlat": 40.7117603, + "maxlon": -74.0137102 + }, + "nodes": [ + 6551500970, + 6551500967, + 6551500968, + 6551500965, + 6551500970 + ], + "geometry": [ + { "lat": 40.7117603, "lon": -74.0137220 }, + { "lat": 40.7117553, "lon": -74.0137102 }, + { "lat": 40.7117462, "lon": -74.0137169 }, + { "lat": 40.7117512, "lon": -74.0137288 }, + { "lat": 40.7117603, "lon": -74.0137220 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619221, + "bounds": { + "minlat": 40.7117120, + "minlon": -74.0137897, + "maxlat": 40.7117261, + "maxlon": -74.0137711 + }, + "nodes": [ + 6551500982, + 6551500979, + 6551500980, + 6551500977, + 6551500982 + ], + "geometry": [ + { "lat": 40.7117261, "lon": -74.0137830 }, + { "lat": 40.7117211, "lon": -74.0137711 }, + { "lat": 40.7117120, "lon": -74.0137778 }, + { "lat": 40.7117170, "lon": -74.0137897 }, + { "lat": 40.7117261, "lon": -74.0137830 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619222, + "bounds": { + "minlat": 40.7117202, + "minlon": -74.0138092, + "maxlat": 40.7117344, + "maxlon": -74.0137906 + }, + "nodes": [ + 6551500978, + 6551500975, + 6551500976, + 6551500973, + 6551500978 + ], + "geometry": [ + { "lat": 40.7117344, "lon": -74.0138025 }, + { "lat": 40.7117294, "lon": -74.0137906 }, + { "lat": 40.7117202, "lon": -74.0137974 }, + { "lat": 40.7117252, "lon": -74.0138092 }, + { "lat": 40.7117344, "lon": -74.0138025 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619235, + "bounds": { + "minlat": 40.7115129, + "minlon": -74.0136002, + "maxlat": 40.7115271, + "maxlon": -74.0135816 + }, + "nodes": [ + 6551501038, + 6551501035, + 6551501036, + 6551501033, + 6551501038 + ], + "geometry": [ + { "lat": 40.7115271, "lon": -74.0135935 }, + { "lat": 40.7115221, "lon": -74.0135816 }, + { "lat": 40.7115129, "lon": -74.0135884 }, + { "lat": 40.7115179, "lon": -74.0136002 }, + { "lat": 40.7115271, "lon": -74.0135935 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619236, + "bounds": { + "minlat": 40.7115211, + "minlon": -74.0136198, + "maxlat": 40.7115353, + "maxlon": -74.0136012 + }, + "nodes": [ + 6551501034, + 6551501031, + 6551501032, + 6551501029, + 6551501034 + ], + "geometry": [ + { "lat": 40.7115353, "lon": -74.0136130 }, + { "lat": 40.7115303, "lon": -74.0136012 }, + { "lat": 40.7115211, "lon": -74.0136079 }, + { "lat": 40.7115261, "lon": -74.0136198 }, + { "lat": 40.7115353, "lon": -74.0136130 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619243, + "bounds": { + "minlat": 40.7115284, + "minlon": -74.0138267, + "maxlat": 40.7115425, + "maxlon": -74.0138081 + }, + "nodes": [ + 6551501070, + 6551501067, + 6551501068, + 6551501065, + 6551501070 + ], + "geometry": [ + { "lat": 40.7115425, "lon": -74.0138200 }, + { "lat": 40.7115375, "lon": -74.0138081 }, + { "lat": 40.7115284, "lon": -74.0138149 }, + { "lat": 40.7115334, "lon": -74.0138267 }, + { "lat": 40.7115425, "lon": -74.0138200 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619245, + "bounds": { + "minlat": 40.7115366, + "minlon": -74.0138462, + "maxlat": 40.7115507, + "maxlon": -74.0138276 + }, + "nodes": [ + 6551501078, + 6551501075, + 6551501076, + 6551501073, + 6551501078 + ], + "geometry": [ + { "lat": 40.7115507, "lon": -74.0138395 }, + { "lat": 40.7115457, "lon": -74.0138276 }, + { "lat": 40.7115366, "lon": -74.0138344 }, + { "lat": 40.7115416, "lon": -74.0138462 }, + { "lat": 40.7115507, "lon": -74.0138395 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619246, + "bounds": { + "minlat": 40.7115448, + "minlon": -74.0138658, + "maxlat": 40.7115590, + "maxlon": -74.0138472 + }, + "nodes": [ + 6551501074, + 6551501071, + 6551501072, + 6551501069, + 6551501074 + ], + "geometry": [ + { "lat": 40.7115590, "lon": -74.0138590 }, + { "lat": 40.7115540, "lon": -74.0138472 }, + { "lat": 40.7115448, "lon": -74.0138539 }, + { "lat": 40.7115498, "lon": -74.0138658 }, + { "lat": 40.7115590, "lon": -74.0138590 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619253, + "bounds": { + "minlat": 40.7111474, + "minlon": -74.0140417, + "maxlat": 40.7111615, + "maxlon": -74.0140231 + }, + "nodes": [ + 6551501110, + 6551501107, + 6551501108, + 6551501105, + 6551501110 + ], + "geometry": [ + { "lat": 40.7111615, "lon": -74.0140350 }, + { "lat": 40.7111565, "lon": -74.0140231 }, + { "lat": 40.7111474, "lon": -74.0140299 }, + { "lat": 40.7111524, "lon": -74.0140417 }, + { "lat": 40.7111615, "lon": -74.0140350 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619254, + "bounds": { + "minlat": 40.7111556, + "minlon": -74.0140613, + "maxlat": 40.7111697, + "maxlon": -74.0140427 + }, + "nodes": [ + 6551501106, + 6551501103, + 6551501104, + 6551501101, + 6551501106 + ], + "geometry": [ + { "lat": 40.7111697, "lon": -74.0140545 }, + { "lat": 40.7111647, "lon": -74.0140427 }, + { "lat": 40.7111556, "lon": -74.0140494 }, + { "lat": 40.7111606, "lon": -74.0140613 }, + { "lat": 40.7111697, "lon": -74.0140545 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619255, + "bounds": { + "minlat": 40.7110457, + "minlon": -74.0136562, + "maxlat": 40.7110599, + "maxlon": -74.0136376 + }, + "nodes": [ + 6551501118, + 6551501115, + 6551501116, + 6551501113, + 6551501118 + ], + "geometry": [ + { "lat": 40.7110599, "lon": -74.0136495 }, + { "lat": 40.7110549, "lon": -74.0136376 }, + { "lat": 40.7110457, "lon": -74.0136443 }, + { "lat": 40.7110507, "lon": -74.0136562 }, + { "lat": 40.7110599, "lon": -74.0136495 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619256, + "bounds": { + "minlat": 40.7110539, + "minlon": -74.0136757, + "maxlat": 40.7110681, + "maxlon": -74.0136571 + }, + "nodes": [ + 6551501114, + 6551501111, + 6551501112, + 6551501109, + 6551501114 + ], + "geometry": [ + { "lat": 40.7110681, "lon": -74.0136690 }, + { "lat": 40.7110631, "lon": -74.0136571 }, + { "lat": 40.7110539, "lon": -74.0136639 }, + { "lat": 40.7110589, "lon": -74.0136757 }, + { "lat": 40.7110681, "lon": -74.0136690 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619257, + "bounds": { + "minlat": 40.7110622, + "minlon": -74.0136953, + "maxlat": 40.7110763, + "maxlon": -74.0136766 + }, + "nodes": [ + 6551501126, + 6551501123, + 6551501124, + 6551501121, + 6551501126 + ], + "geometry": [ + { "lat": 40.7110763, "lon": -74.0136885 }, + { "lat": 40.7110713, "lon": -74.0136766 }, + { "lat": 40.7110622, "lon": -74.0136834 }, + { "lat": 40.7110672, "lon": -74.0136953 }, + { "lat": 40.7110763, "lon": -74.0136885 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619258, + "bounds": { + "minlat": 40.7110704, + "minlon": -74.0137148, + "maxlat": 40.7110846, + "maxlon": -74.0136962 + }, + "nodes": [ + 6551501122, + 6551501119, + 6551501120, + 6551501117, + 6551501122 + ], + "geometry": [ + { "lat": 40.7110846, "lon": -74.0137080 }, + { "lat": 40.7110796, "lon": -74.0136962 }, + { "lat": 40.7110704, "lon": -74.0137029 }, + { "lat": 40.7110754, "lon": -74.0137148 }, + { "lat": 40.7110846, "lon": -74.0137080 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619259, + "bounds": { + "minlat": 40.7110176, + "minlon": -74.0140070, + "maxlat": 40.7110318, + "maxlon": -74.0139884 + }, + "nodes": [ + 6551501134, + 6551501131, + 6551501132, + 6551501129, + 6551501134 + ], + "geometry": [ + { "lat": 40.7110318, "lon": -74.0140003 }, + { "lat": 40.7110268, "lon": -74.0139884 }, + { "lat": 40.7110176, "lon": -74.0139951 }, + { "lat": 40.7110226, "lon": -74.0140070 }, + { "lat": 40.7110318, "lon": -74.0140003 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619260, + "bounds": { + "minlat": 40.7110258, + "minlon": -74.0140265, + "maxlat": 40.7110400, + "maxlon": -74.0140079 + }, + "nodes": [ + 6551501130, + 6551501127, + 6551501128, + 6551501125, + 6551501130 + ], + "geometry": [ + { "lat": 40.7110400, "lon": -74.0140198 }, + { "lat": 40.7110350, "lon": -74.0140079 }, + { "lat": 40.7110258, "lon": -74.0140146 }, + { "lat": 40.7110308, "lon": -74.0140265 }, + { "lat": 40.7110400, "lon": -74.0140198 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619261, + "bounds": { + "minlat": 40.7110341, + "minlon": -74.0140460, + "maxlat": 40.7110482, + "maxlon": -74.0140274 + }, + "nodes": [ + 6551501142, + 6551501139, + 6551501140, + 6551501137, + 6551501142 + ], + "geometry": [ + { "lat": 40.7110482, "lon": -74.0140393 }, + { "lat": 40.7110432, "lon": -74.0140274 }, + { "lat": 40.7110341, "lon": -74.0140342 }, + { "lat": 40.7110391, "lon": -74.0140460 }, + { "lat": 40.7110482, "lon": -74.0140393 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619262, + "bounds": { + "minlat": 40.7110423, + "minlon": -74.0140656, + "maxlat": 40.7110564, + "maxlon": -74.0140469 + }, + "nodes": [ + 6551501138, + 6551501135, + 6551501136, + 6551501133, + 6551501138 + ], + "geometry": [ + { "lat": 40.7110564, "lon": -74.0140588 }, + { "lat": 40.7110514, "lon": -74.0140469 }, + { "lat": 40.7110423, "lon": -74.0140537 }, + { "lat": 40.7110473, "lon": -74.0140656 }, + { "lat": 40.7110564, "lon": -74.0140588 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619265, + "bounds": { + "minlat": 40.7107410, + "minlon": -74.0135194, + "maxlat": 40.7107552, + "maxlon": -74.0135008 + }, + "nodes": [ + 6551501158, + 6551501155, + 6551501156, + 6551501153, + 6551501158 + ], + "geometry": [ + { "lat": 40.7107552, "lon": -74.0135127 }, + { "lat": 40.7107502, "lon": -74.0135008 }, + { "lat": 40.7107410, "lon": -74.0135075 }, + { "lat": 40.7107460, "lon": -74.0135194 }, + { "lat": 40.7107552, "lon": -74.0135127 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619267, + "bounds": { + "minlat": 40.7107492, + "minlon": -74.0135389, + "maxlat": 40.7107634, + "maxlon": -74.0135203 + }, + "nodes": [ + 6551501166, + 6551501163, + 6551501164, + 6551501161, + 6551501166 + ], + "geometry": [ + { "lat": 40.7107634, "lon": -74.0135322 }, + { "lat": 40.7107584, "lon": -74.0135203 }, + { "lat": 40.7107492, "lon": -74.0135271 }, + { "lat": 40.7107542, "lon": -74.0135389 }, + { "lat": 40.7107634, "lon": -74.0135322 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619268, + "bounds": { + "minlat": 40.7107575, + "minlon": -74.0135585, + "maxlat": 40.7107716, + "maxlon": -74.0135398 + }, + "nodes": [ + 6551501162, + 6551501159, + 6551501160, + 6551501157, + 6551501162 + ], + "geometry": [ + { "lat": 40.7107716, "lon": -74.0135517 }, + { "lat": 40.7107666, "lon": -74.0135398 }, + { "lat": 40.7107575, "lon": -74.0135466 }, + { "lat": 40.7107625, "lon": -74.0135585 }, + { "lat": 40.7107716, "lon": -74.0135517 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619283, + "bounds": { + "minlat": 40.7107863, + "minlon": -74.0141332, + "maxlat": 40.7113460, + "maxlon": -74.0134986 + }, + "nodes": [ + 6551500310, + 9788812177, + 10288472824, + 6551501232, + 10288472837, + 8213964620, + 6551500086, + 6551500087, + 6551500574, + 10288472964, + 6551502049, + 10288472838, + 6551501227, + 10288472822, + 6551500306, + 6551500311, + 6551500310 + ], + "geometry": [ + { "lat": 40.7113416, "lon": -74.0140770 }, + { "lat": 40.7113460, "lon": -74.0140871 }, + { "lat": 40.7111113, "lon": -74.0141247 }, + { "lat": 40.7110585, "lon": -74.0141332 }, + { "lat": 40.7110477, "lon": -74.0141090 }, + { "lat": 40.7108543, "lon": -74.0136727 }, + { "lat": 40.7107863, "lon": -74.0135108 }, + { "lat": 40.7108034, "lon": -74.0134986 }, + { "lat": 40.7108672, "lon": -74.0136507 }, + { "lat": 40.7108713, "lon": -74.0136598 }, + { "lat": 40.7109211, "lon": -74.0137790 }, + { "lat": 40.7110561, "lon": -74.0141028 }, + { "lat": 40.7110639, "lon": -74.0141215 }, + { "lat": 40.7111072, "lon": -74.0141149 }, + { "lat": 40.7113339, "lon": -74.0140783 }, + { "lat": 40.7113375, "lon": -74.0140777 }, + { "lat": 40.7113416, "lon": -74.0140770 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619284, + "bounds": { + "minlat": 40.7104638, + "minlon": -74.0130445, + "maxlat": 40.7105985, + "maxlon": -74.0127052 + }, + "nodes": [ + 6551501228, + 6551501954, + 10288759688, + 6551501226, + 10288472981, + 8213945021, + 6551501223, + 6551501224, + 10288472980, + 6551501221, + 10288759687, + 6551501228 + ], + "geometry": [ + { "lat": 40.7105653, "lon": -74.0127052 }, + { "lat": 40.7105695, "lon": -74.0127156 }, + { "lat": 40.7105283, "lon": -74.0127306 }, + { "lat": 40.7104767, "lon": -74.0127495 }, + { "lat": 40.7105509, "lon": -74.0129264 }, + { "lat": 40.7105776, "lon": -74.0129899 }, + { "lat": 40.7105985, "lon": -74.0130397 }, + { "lat": 40.7105915, "lon": -74.0130445 }, + { "lat": 40.7105446, "lon": -74.0129308 }, + { "lat": 40.7104638, "lon": -74.0127414 }, + { "lat": 40.7105238, "lon": -74.0127200 }, + { "lat": 40.7105653, "lon": -74.0127052 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619285, + "bounds": { + "minlat": 40.7108543, + "minlon": -74.0141476, + "maxlat": 40.7112629, + "maxlon": -74.0136727 + }, + "nodes": [ + 6551459463, + 6551500498, + 10288472826, + 6551501243, + 10288472835, + 6551501236, + 8213964620, + 10288472836, + 6551501242, + 10288472825, + 6551459463 + ], + "geometry": [ + { "lat": 40.7112570, "lon": -74.0141028 }, + { "lat": 40.7112629, "lon": -74.0141161 }, + { "lat": 40.7111169, "lon": -74.0141381 }, + { "lat": 40.7110545, "lon": -74.0141476 }, + { "lat": 40.7110405, "lon": -74.0141143 }, + { "lat": 40.7108742, "lon": -74.0137199 }, + { "lat": 40.7108543, "lon": -74.0136727 }, + { "lat": 40.7110464, "lon": -74.0141099 }, + { "lat": 40.7110576, "lon": -74.0141354 }, + { "lat": 40.7111121, "lon": -74.0141265 }, + { "lat": 40.7112570, "lon": -74.0141028 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619286, + "bounds": { + "minlat": 40.7108641, + "minlon": -74.0141626, + "maxlat": 40.7111923, + "maxlon": -74.0137199 + }, + "nodes": [ + 6551501239, + 6551501240, + 10288472828, + 6551501237, + 10288472833, + 6551501238, + 6551501235, + 6551500678, + 6551501236, + 10288472834, + 6551501233, + 10288472827, + 6551501239 + ], + "geometry": [ + { "lat": 40.7111873, "lon": -74.0141290 }, + { "lat": 40.7111923, "lon": -74.0141401 }, + { "lat": 40.7111222, "lon": -74.0141508 }, + { "lat": 40.7110480, "lon": -74.0141626 }, + { "lat": 40.7110307, "lon": -74.0141215 }, + { "lat": 40.7109089, "lon": -74.0138313 }, + { "lat": 40.7108641, "lon": -74.0137264 }, + { "lat": 40.7108691, "lon": -74.0137231 }, + { "lat": 40.7108742, "lon": -74.0137199 }, + { "lat": 40.7110392, "lon": -74.0141153 }, + { "lat": 40.7110536, "lon": -74.0141499 }, + { "lat": 40.7111176, "lon": -74.0141398 }, + { "lat": 40.7111873, "lon": -74.0141290 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619287, + "bounds": { + "minlat": 40.7122545, + "minlon": -74.0139307, + "maxlat": 40.7126551, + "maxlon": -74.0134557 + }, + "nodes": [ + 6551501257, + 6551501258, + 6551501255, + 6551501256, + 6551501253, + 6551501254, + 6551501257 + ], + "geometry": [ + { "lat": 40.7124877, "lon": -74.0134610 }, + { "lat": 40.7124950, "lon": -74.0134557 }, + { "lat": 40.7126551, "lon": -74.0138360 }, + { "lat": 40.7122589, "lon": -74.0139307 }, + { "lat": 40.7122545, "lon": -74.0139201 }, + { "lat": 40.7126414, "lon": -74.0138276 }, + { "lat": 40.7124877, "lon": -74.0134610 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619288, + "bounds": { + "minlat": 40.7104791, + "minlon": -74.0132269, + "maxlat": 40.7106863, + "maxlon": -74.0126833 + }, + "nodes": [ + 6551501251, + 6551501967, + 10288759690, + 6551501249, + 10288472984, + 6551501250, + 6551501247, + 10288472982, + 6551501248, + 10288759689, + 6551501251 + ], + "geometry": [ + { "lat": 40.7106610, "lon": -74.0126833 }, + { "lat": 40.7106658, "lon": -74.0126942 }, + { "lat": 40.7105337, "lon": -74.0127433 }, + { "lat": 40.7104921, "lon": -74.0127590 }, + { "lat": 40.7105594, "lon": -74.0129204 }, + { "lat": 40.7106863, "lon": -74.0132218 }, + { "lat": 40.7106789, "lon": -74.0132269 }, + { "lat": 40.7105524, "lon": -74.0129253 }, + { "lat": 40.7104791, "lon": -74.0127508 }, + { "lat": 40.7105290, "lon": -74.0127323 }, + { "lat": 40.7106610, "lon": -74.0126833 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619289, + "bounds": { + "minlat": 40.7124784, + "minlon": -74.0138910, + "maxlat": 40.7126714, + "maxlon": -74.0135550 + }, + "nodes": [ + 6551501269, + 6551501270, + 6551501267, + 6551501268, + 6551501265, + 6551501266, + 6551501269 + ], + "geometry": [ + { "lat": 40.7125412, "lon": -74.0135601 }, + { "lat": 40.7125493, "lon": -74.0135550 }, + { "lat": 40.7126714, "lon": -74.0138459 }, + { "lat": 40.7124828, "lon": -74.0138910 }, + { "lat": 40.7124784, "lon": -74.0138804 }, + { "lat": 40.7126576, "lon": -74.0138375 }, + { "lat": 40.7125412, "lon": -74.0135601 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619290, + "bounds": { + "minlat": 40.7109004, + "minlon": -74.0141776, + "maxlat": 40.7111069, + "maxlon": -74.0138332 + }, + "nodes": [ + 6551501263, + 6551501686, + 6551501261, + 10288472831, + 6551501262, + 6551501259, + 10288472832, + 6551501260, + 6551501263 + ], + "geometry": [ + { "lat": 40.7111043, "lon": -74.0141559 }, + { "lat": 40.7111069, "lon": -74.0141615 }, + { "lat": 40.7110426, "lon": -74.0141776 }, + { "lat": 40.7110222, "lon": -74.0141278 }, + { "lat": 40.7109004, "lon": -74.0138388 }, + { "lat": 40.7109079, "lon": -74.0138332 }, + { "lat": 40.7110293, "lon": -74.0141225 }, + { "lat": 40.7110471, "lon": -74.0141649 }, + { "lat": 40.7111043, "lon": -74.0141559 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619291, + "bounds": { + "minlat": 40.7114711, + "minlon": -74.0141955, + "maxlat": 40.7115259, + "maxlon": -74.0141082 + }, + "nodes": [ + 6551501276, + 6551501273, + 10288472759, + 7133483557, + 6551501274, + 6551501271, + 7133483558, + 10288472758, + 6551501276 + ], + "geometry": [ + { "lat": 40.7114711, "lon": -74.0141227 }, + { "lat": 40.7114909, "lon": -74.0141082 }, + { "lat": 40.7115036, "lon": -74.0141386 }, + { "lat": 40.7115108, "lon": -74.0141557 }, + { "lat": 40.7115259, "lon": -74.0141916 }, + { "lat": 40.7115017, "lon": -74.0141955 }, + { "lat": 40.7114866, "lon": -74.0141596 }, + { "lat": 40.7114795, "lon": -74.0141427 }, + { "lat": 40.7114711, "lon": -74.0141227 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619292, + "bounds": { + "minlat": 40.7114856, + "minlon": -74.0141916, + "maxlat": 40.7115576, + "maxlon": -74.0140767 + }, + "nodes": [ + 6551501273, + 6551501272, + 6551501277, + 10288472760, + 6551501280, + 6551501274, + 7133483557, + 10288472759, + 6551501273 + ], + "geometry": [ + { "lat": 40.7114909, "lon": -74.0141082 }, + { "lat": 40.7114856, "lon": -74.0140956 }, + { "lat": 40.7115115, "lon": -74.0140767 }, + { "lat": 40.7115352, "lon": -74.0141331 }, + { "lat": 40.7115576, "lon": -74.0141864 }, + { "lat": 40.7115259, "lon": -74.0141916 }, + { "lat": 40.7115108, "lon": -74.0141557 }, + { "lat": 40.7115036, "lon": -74.0141386 }, + { "lat": 40.7114909, "lon": -74.0141082 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619293, + "bounds": { + "minlat": 40.7115244, + "minlon": -74.0141859, + "maxlat": 40.7115916, + "maxlon": -74.0140808 + }, + "nodes": [ + 6551501281, + 10288472761, + 6551501282, + 6551501738, + 7133483554, + 10288472762, + 6551501741, + 6551501279, + 6551501281 + ], + "geometry": [ + { "lat": 40.7115244, "lon": -74.0140992 }, + { "lat": 40.7115384, "lon": -74.0141325 }, + { "lat": 40.7115608, "lon": -74.0141859 }, + { "lat": 40.7115916, "lon": -74.0141808 }, + { "lat": 40.7115760, "lon": -74.0141437 }, + { "lat": 40.7115691, "lon": -74.0141272 }, + { "lat": 40.7115610, "lon": -74.0141080 }, + { "lat": 40.7115496, "lon": -74.0140808 }, + { "lat": 40.7115244, "lon": -74.0140992 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619294, + "bounds": { + "minlat": 40.7114994, + "minlon": -74.0141864, + "maxlat": 40.7115608, + "maxlon": -74.0140470 + }, + "nodes": [ + 6551501281, + 10288472761, + 6551501282, + 6551501280, + 10288472760, + 6551501277, + 6551501278, + 6551501275, + 6551501281 + ], + "geometry": [ + { "lat": 40.7115244, "lon": -74.0140992 }, + { "lat": 40.7115384, "lon": -74.0141325 }, + { "lat": 40.7115608, "lon": -74.0141859 }, + { "lat": 40.7115576, "lon": -74.0141864 }, + { "lat": 40.7115352, "lon": -74.0141331 }, + { "lat": 40.7115115, "lon": -74.0140767 }, + { "lat": 40.7114994, "lon": -74.0140479 }, + { "lat": 40.7115025, "lon": -74.0140470 }, + { "lat": 40.7115244, "lon": -74.0140992 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619295, + "bounds": { + "minlat": 40.7112271, + "minlon": -74.0125514, + "maxlat": 40.7113001, + "maxlon": -74.0123694 + }, + "nodes": [ + 6551501287, + 7133507040, + 10285341170, + 6551501286, + 2824641675, + 6551501594, + 10285341164, + 7133507039, + 6551501595, + 6551501287 + ], + "geometry": [ + { "lat": 40.7112483, "lon": -74.0123694 }, + { "lat": 40.7112518, "lon": -74.0123778 }, + { "lat": 40.7112589, "lon": -74.0123948 }, + { "lat": 40.7112877, "lon": -74.0124628 }, + { "lat": 40.7112698, "lon": -74.0124697 }, + { "lat": 40.7113001, "lon": -74.0125514 }, + { "lat": 40.7112377, "lon": -74.0124026 }, + { "lat": 40.7112306, "lon": -74.0123856 }, + { "lat": 40.7112271, "lon": -74.0123773 }, + { "lat": 40.7112483, "lon": -74.0123694 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619296, + "bounds": { + "minlat": 40.7113871, + "minlon": -74.0142054, + "maxlat": 40.7114787, + "maxlon": -74.0140691 + }, + "nodes": [ + 6551501285, + 7133483559, + 10288472757, + 6551501283, + 6551501284, + 6551501739, + 10288472803, + 7133483560, + 6551501734, + 6551501285 + ], + "geometry": [ + { "lat": 40.7114787, "lon": -74.0141992 }, + { "lat": 40.7114637, "lon": -74.0141635 }, + { "lat": 40.7114567, "lon": -74.0141467 }, + { "lat": 40.7114241, "lon": -74.0140691 }, + { "lat": 40.7113871, "lon": -74.0140795 }, + { "lat": 40.7114052, "lon": -74.0141228 }, + { "lat": 40.7114181, "lon": -74.0141534 }, + { "lat": 40.7114253, "lon": -74.0141706 }, + { "lat": 40.7114399, "lon": -74.0142054 }, + { "lat": 40.7114787, "lon": -74.0141992 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619297, + "bounds": { + "minlat": 40.7112696, + "minlon": -74.0124546, + "maxlat": 40.7113290, + "maxlon": -74.0123540 + }, + "nodes": [ + 6551501290, + 6551501288, + 10285341172, + 7133507041, + 6551501289, + 6551501291, + 7133507042, + 10285341171, + 6551501290 + ], + "geometry": [ + { "lat": 40.7113290, "lon": -74.0124470 }, + { "lat": 40.7113092, "lon": -74.0124546 }, + { "lat": 40.7112802, "lon": -74.0123869 }, + { "lat": 40.7112731, "lon": -74.0123698 }, + { "lat": 40.7112696, "lon": -74.0123615 }, + { "lat": 40.7112897, "lon": -74.0123540 }, + { "lat": 40.7112931, "lon": -74.0123622 }, + { "lat": 40.7113003, "lon": -74.0123794 }, + { "lat": 40.7113290, "lon": -74.0124470 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619298, + "bounds": { + "minlat": 40.7112483, + "minlon": -74.0124628, + "maxlat": 40.7113092, + "maxlon": -74.0123615 + }, + "nodes": [ + 6551501288, + 6551501286, + 10285341170, + 7133507040, + 6551501287, + 6551501289, + 7133507041, + 10285341172, + 6551501288 + ], + "geometry": [ + { "lat": 40.7113092, "lon": -74.0124546 }, + { "lat": 40.7112877, "lon": -74.0124628 }, + { "lat": 40.7112589, "lon": -74.0123948 }, + { "lat": 40.7112518, "lon": -74.0123778 }, + { "lat": 40.7112483, "lon": -74.0123694 }, + { "lat": 40.7112696, "lon": -74.0123615 }, + { "lat": 40.7112731, "lon": -74.0123698 }, + { "lat": 40.7112802, "lon": -74.0123869 }, + { "lat": 40.7113092, "lon": -74.0124546 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619299, + "bounds": { + "minlat": 40.7113088, + "minlon": -74.0124397, + "maxlat": 40.7113686, + "maxlon": -74.0123390 + }, + "nodes": [ + 6551501294, + 6551501292, + 10285341174, + 7133507043, + 6551501293, + 6551501295, + 7133507044, + 10285341173, + 6551501294 + ], + "geometry": [ + { "lat": 40.7113686, "lon": -74.0124317 }, + { "lat": 40.7113478, "lon": -74.0124397 }, + { "lat": 40.7113195, "lon": -74.0123723 }, + { "lat": 40.7113122, "lon": -74.0123549 }, + { "lat": 40.7113088, "lon": -74.0123469 }, + { "lat": 40.7113300, "lon": -74.0123390 }, + { "lat": 40.7113333, "lon": -74.0123469 }, + { "lat": 40.7113407, "lon": -74.0123644 }, + { "lat": 40.7113686, "lon": -74.0124317 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619300, + "bounds": { + "minlat": 40.7112897, + "minlon": -74.0124470, + "maxlat": 40.7113478, + "maxlon": -74.0123469 + }, + "nodes": [ + 6551501292, + 6551501290, + 10285341171, + 7133507042, + 6551501291, + 6551501293, + 7133507043, + 10285341174, + 6551501292 + ], + "geometry": [ + { "lat": 40.7113478, "lon": -74.0124397 }, + { "lat": 40.7113290, "lon": -74.0124470 }, + { "lat": 40.7113003, "lon": -74.0123794 }, + { "lat": 40.7112931, "lon": -74.0123622 }, + { "lat": 40.7112897, "lon": -74.0123540 }, + { "lat": 40.7113088, "lon": -74.0123469 }, + { "lat": 40.7113122, "lon": -74.0123549 }, + { "lat": 40.7113195, "lon": -74.0123723 }, + { "lat": 40.7113478, "lon": -74.0124397 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619301, + "bounds": { + "minlat": 40.7113480, + "minlon": -74.0124247, + "maxlat": 40.7114055, + "maxlon": -74.0123255 + }, + "nodes": [ + 6551501298, + 6551501296, + 10285341176, + 7133507045, + 6551501297, + 6551501299, + 7133507046, + 10285341175, + 6551501298 + ], + "geometry": [ + { "lat": 40.7114055, "lon": -74.0124175 }, + { "lat": 40.7113868, "lon": -74.0124247 }, + { "lat": 40.7113587, "lon": -74.0123577 }, + { "lat": 40.7113515, "lon": -74.0123405 }, + { "lat": 40.7113480, "lon": -74.0123323 }, + { "lat": 40.7113664, "lon": -74.0123255 }, + { "lat": 40.7113699, "lon": -74.0123339 }, + { "lat": 40.7113771, "lon": -74.0123509 }, + { "lat": 40.7114055, "lon": -74.0124175 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619302, + "bounds": { + "minlat": 40.7113300, + "minlon": -74.0124317, + "maxlat": 40.7113868, + "maxlon": -74.0123323 + }, + "nodes": [ + 6551501296, + 6551501294, + 10285341173, + 7133507044, + 6551501295, + 6551501297, + 7133507045, + 10285341176, + 6551501296 + ], + "geometry": [ + { "lat": 40.7113868, "lon": -74.0124247 }, + { "lat": 40.7113686, "lon": -74.0124317 }, + { "lat": 40.7113407, "lon": -74.0123644 }, + { "lat": 40.7113333, "lon": -74.0123469 }, + { "lat": 40.7113300, "lon": -74.0123390 }, + { "lat": 40.7113480, "lon": -74.0123323 }, + { "lat": 40.7113515, "lon": -74.0123405 }, + { "lat": 40.7113587, "lon": -74.0123577 }, + { "lat": 40.7113868, "lon": -74.0124247 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619303, + "bounds": { + "minlat": 40.7113876, + "minlon": -74.0124096, + "maxlat": 40.7114438, + "maxlon": -74.0123110 + }, + "nodes": [ + 6551501302, + 6551501300, + 10285341149, + 7133507047, + 6551501301, + 6551501303, + 7133507048, + 10285341148, + 6551501302 + ], + "geometry": [ + { "lat": 40.7114438, "lon": -74.0124028 }, + { "lat": 40.7114263, "lon": -74.0124096 }, + { "lat": 40.7113983, "lon": -74.0123430 }, + { "lat": 40.7113911, "lon": -74.0123260 }, + { "lat": 40.7113876, "lon": -74.0123176 }, + { "lat": 40.7114053, "lon": -74.0123110 }, + { "lat": 40.7114089, "lon": -74.0123197 }, + { "lat": 40.7114159, "lon": -74.0123365 }, + { "lat": 40.7114438, "lon": -74.0124028 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619304, + "bounds": { + "minlat": 40.7113664, + "minlon": -74.0124175, + "maxlat": 40.7114263, + "maxlon": -74.0123176 + }, + "nodes": [ + 6551501300, + 6551501298, + 10285341175, + 7133507046, + 6551501299, + 6551501301, + 7133507047, + 10285341149, + 6551501300 + ], + "geometry": [ + { "lat": 40.7114263, "lon": -74.0124096 }, + { "lat": 40.7114055, "lon": -74.0124175 }, + { "lat": 40.7113771, "lon": -74.0123509 }, + { "lat": 40.7113699, "lon": -74.0123339 }, + { "lat": 40.7113664, "lon": -74.0123255 }, + { "lat": 40.7113876, "lon": -74.0123176 }, + { "lat": 40.7113911, "lon": -74.0123260 }, + { "lat": 40.7113983, "lon": -74.0123430 }, + { "lat": 40.7114263, "lon": -74.0124096 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619305, + "bounds": { + "minlat": 40.7114235, + "minlon": -74.0123960, + "maxlat": 40.7114831, + "maxlon": -74.0122964 + }, + "nodes": [ + 6551501304, + 6551501306, + 10285341151, + 7133507050, + 6551501307, + 6551501305, + 7133507049, + 10285341150, + 6551501304 + ], + "geometry": [ + { "lat": 40.7114616, "lon": -74.0123960 }, + { "lat": 40.7114831, "lon": -74.0123877 }, + { "lat": 40.7114554, "lon": -74.0123218 }, + { "lat": 40.7114484, "lon": -74.0123052 }, + { "lat": 40.7114447, "lon": -74.0122964 }, + { "lat": 40.7114235, "lon": -74.0123043 }, + { "lat": 40.7114272, "lon": -74.0123130 }, + { "lat": 40.7114342, "lon": -74.0123297 }, + { "lat": 40.7114616, "lon": -74.0123960 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619306, + "bounds": { + "minlat": 40.7114053, + "minlon": -74.0124028, + "maxlat": 40.7114616, + "maxlon": -74.0123043 + }, + "nodes": [ + 6551501304, + 6551501302, + 10285341148, + 7133507048, + 6551501303, + 6551501305, + 7133507049, + 10285341150, + 6551501304 + ], + "geometry": [ + { "lat": 40.7114616, "lon": -74.0123960 }, + { "lat": 40.7114438, "lon": -74.0124028 }, + { "lat": 40.7114159, "lon": -74.0123365 }, + { "lat": 40.7114089, "lon": -74.0123197 }, + { "lat": 40.7114053, "lon": -74.0123110 }, + { "lat": 40.7114235, "lon": -74.0123043 }, + { "lat": 40.7114272, "lon": -74.0123130 }, + { "lat": 40.7114342, "lon": -74.0123297 }, + { "lat": 40.7114616, "lon": -74.0123960 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619307, + "bounds": { + "minlat": 40.7114606, + "minlon": -74.0123816, + "maxlat": 40.7115154, + "maxlon": -74.0122844 + }, + "nodes": [ + 6551501310, + 6551501308, + 10285341153, + 7133507051, + 6551501309, + 6551501311, + 7133507052, + 10285341152, + 6551501310 + ], + "geometry": [ + { "lat": 40.7115154, "lon": -74.0123753 }, + { "lat": 40.7114990, "lon": -74.0123816 }, + { "lat": 40.7114713, "lon": -74.0123159 }, + { "lat": 40.7114644, "lon": -74.0122995 }, + { "lat": 40.7114606, "lon": -74.0122905 }, + { "lat": 40.7114768, "lon": -74.0122844 }, + { "lat": 40.7114806, "lon": -74.0122935 }, + { "lat": 40.7114875, "lon": -74.0123099 }, + { "lat": 40.7115154, "lon": -74.0123753 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619308, + "bounds": { + "minlat": 40.7114447, + "minlon": -74.0123877, + "maxlat": 40.7114990, + "maxlon": -74.0122905 + }, + "nodes": [ + 6551501308, + 6551501306, + 10285341151, + 7133507050, + 6551501307, + 6551501309, + 7133507051, + 10285341153, + 6551501308 + ], + "geometry": [ + { "lat": 40.7114990, "lon": -74.0123816 }, + { "lat": 40.7114831, "lon": -74.0123877 }, + { "lat": 40.7114554, "lon": -74.0123218 }, + { "lat": 40.7114484, "lon": -74.0123052 }, + { "lat": 40.7114447, "lon": -74.0122964 }, + { "lat": 40.7114606, "lon": -74.0122905 }, + { "lat": 40.7114644, "lon": -74.0122995 }, + { "lat": 40.7114713, "lon": -74.0123159 }, + { "lat": 40.7114990, "lon": -74.0123816 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619309, + "bounds": { + "minlat": 40.7114981, + "minlon": -74.0123670, + "maxlat": 40.7115520, + "maxlon": -74.0122708 + }, + "nodes": [ + 6551501314, + 6551501312, + 10285341155, + 7133507053, + 6551501313, + 6551501315, + 7133507054, + 10285341154, + 6551501314 + ], + "geometry": [ + { "lat": 40.7115520, "lon": -74.0123612 }, + { "lat": 40.7115371, "lon": -74.0123670 }, + { "lat": 40.7115088, "lon": -74.0123020 }, + { "lat": 40.7115021, "lon": -74.0122861 }, + { "lat": 40.7114981, "lon": -74.0122766 }, + { "lat": 40.7115136, "lon": -74.0122708 }, + { "lat": 40.7115177, "lon": -74.0122806 }, + { "lat": 40.7115243, "lon": -74.0122962 }, + { "lat": 40.7115520, "lon": -74.0123612 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619310, + "bounds": { + "minlat": 40.7114768, + "minlon": -74.0123753, + "maxlat": 40.7115371, + "maxlon": -74.0122766 + }, + "nodes": [ + 6551501312, + 6551501310, + 10285341152, + 7133507052, + 6551501311, + 6551501313, + 7133507053, + 10285341155, + 6551501312 + ], + "geometry": [ + { "lat": 40.7115371, "lon": -74.0123670 }, + { "lat": 40.7115154, "lon": -74.0123753 }, + { "lat": 40.7114875, "lon": -74.0123099 }, + { "lat": 40.7114806, "lon": -74.0122935 }, + { "lat": 40.7114768, "lon": -74.0122844 }, + { "lat": 40.7114981, "lon": -74.0122766 }, + { "lat": 40.7115021, "lon": -74.0122861 }, + { "lat": 40.7115088, "lon": -74.0123020 }, + { "lat": 40.7115371, "lon": -74.0123670 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619311, + "bounds": { + "minlat": 40.7126272, + "minlon": -74.0139493, + "maxlat": 40.7126859, + "maxlon": -74.0138522 + }, + "nodes": [ + 6551501318, + 6551501450, + 10288472747, + 6551501453, + 6551501321, + 10288472742, + 6551501318 + ], + "geometry": [ + { "lat": 40.7126637, "lon": -74.0139493 }, + { "lat": 40.7126859, "lon": -74.0139443 }, + { "lat": 40.7126609, "lon": -74.0138794 }, + { "lat": 40.7126495, "lon": -74.0138522 }, + { "lat": 40.7126272, "lon": -74.0138575 }, + { "lat": 40.7126389, "lon": -74.0138854 }, + { "lat": 40.7126637, "lon": -74.0139493 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619312, + "bounds": { + "minlat": 40.7115136, + "minlon": -74.0123612, + "maxlat": 40.7115554, + "maxlon": -74.0122697 + }, + "nodes": [ + 6551502947, + 6551501314, + 10285341154, + 7133507054, + 6551501315, + 6551502949, + 7133507055, + 10285341156, + 6551502947 + ], + "geometry": [ + { "lat": 40.7115554, "lon": -74.0123599 }, + { "lat": 40.7115520, "lon": -74.0123612 }, + { "lat": 40.7115243, "lon": -74.0122962 }, + { "lat": 40.7115177, "lon": -74.0122806 }, + { "lat": 40.7115136, "lon": -74.0122708 }, + { "lat": 40.7115166, "lon": -74.0122697 }, + { "lat": 40.7115206, "lon": -74.0122793 }, + { "lat": 40.7115272, "lon": -74.0122951 }, + { "lat": 40.7115554, "lon": -74.0123599 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619313, + "bounds": { + "minlat": 40.7126034, + "minlon": -74.0139544, + "maxlat": 40.7126435, + "maxlon": -74.0138625 + }, + "nodes": [ + 6551500137, + 6551584163, + 6551500136, + 6551501331, + 6551501316, + 10288472744, + 6551501320, + 6551501322, + 10288472743, + 6551500137 + ], + "geometry": [ + { "lat": 40.7126223, "lon": -74.0139096 }, + { "lat": 40.7126283, "lon": -74.0139249 }, + { "lat": 40.7126348, "lon": -74.0139404 }, + { "lat": 40.7126405, "lon": -74.0139544 }, + { "lat": 40.7126435, "lon": -74.0139537 }, + { "lat": 40.7126185, "lon": -74.0138910 }, + { "lat": 40.7126065, "lon": -74.0138625 }, + { "lat": 40.7126034, "lon": -74.0138632 }, + { "lat": 40.7126152, "lon": -74.0138921 }, + { "lat": 40.7126223, "lon": -74.0139096 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619314, + "bounds": { + "minlat": 40.7126065, + "minlon": -74.0139537, + "maxlat": 40.7126637, + "maxlon": -74.0138575 + }, + "nodes": [ + 6551501320, + 6551501321, + 10288472742, + 6551501318, + 6551501316, + 10288472744, + 6551501320 + ], + "geometry": [ + { "lat": 40.7126065, "lon": -74.0138625 }, + { "lat": 40.7126272, "lon": -74.0138575 }, + { "lat": 40.7126389, "lon": -74.0138854 }, + { "lat": 40.7126637, "lon": -74.0139493 }, + { "lat": 40.7126435, "lon": -74.0139537 }, + { "lat": 40.7126185, "lon": -74.0138910 }, + { "lat": 40.7126065, "lon": -74.0138625 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619315, + "bounds": { + "minlat": 40.7125605, + "minlon": -74.0139193, + "maxlat": 40.7126024, + "maxlon": -74.0138682 + }, + "nodes": [ + 6551501328, + 6551501327, + 10288472746, + 6551501324, + 6551501326, + 10288472745, + 6551501328 + ], + "geometry": [ + { "lat": 40.7125798, "lon": -74.0139193 }, + { "lat": 40.7126024, "lon": -74.0139142 }, + { "lat": 40.7125951, "lon": -74.0138974 }, + { "lat": 40.7125828, "lon": -74.0138682 }, + { "lat": 40.7125605, "lon": -74.0138735 }, + { "lat": 40.7125730, "lon": -74.0139035 }, + { "lat": 40.7125798, "lon": -74.0139193 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619316, + "bounds": { + "minlat": 40.7125828, + "minlon": -74.0139142, + "maxlat": 40.7126223, + "maxlon": -74.0138632 + }, + "nodes": [ + 6551500137, + 6551501327, + 10288472746, + 6551501324, + 6551501322, + 10288472743, + 6551500137 + ], + "geometry": [ + { "lat": 40.7126223, "lon": -74.0139096 }, + { "lat": 40.7126024, "lon": -74.0139142 }, + { "lat": 40.7125951, "lon": -74.0138974 }, + { "lat": 40.7125828, "lon": -74.0138682 }, + { "lat": 40.7126034, "lon": -74.0138632 }, + { "lat": 40.7126152, "lon": -74.0138921 }, + { "lat": 40.7126223, "lon": -74.0139096 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619317, + "bounds": { + "minlat": 40.7125310, + "minlon": -74.0139709, + "maxlat": 40.7125709, + "maxlon": -74.0138798 + }, + "nodes": [ + 6551501335, + 6551501333, + 10288472813, + 6551459459, + 6551501330, + 6551501332, + 7133483502, + 10288472808, + 6551501335 + ], + "geometry": [ + { "lat": 40.7125677, "lon": -74.0139709 }, + { "lat": 40.7125709, "lon": -74.0139702 }, + { "lat": 40.7125587, "lon": -74.0139401 }, + { "lat": 40.7125468, "lon": -74.0139106 }, + { "lat": 40.7125341, "lon": -74.0138798 }, + { "lat": 40.7125310, "lon": -74.0138805 }, + { "lat": 40.7125439, "lon": -74.0139112 }, + { "lat": 40.7125553, "lon": -74.0139398 }, + { "lat": 40.7125677, "lon": -74.0139709 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619318, + "bounds": { + "minlat": 40.7125341, + "minlon": -74.0139702, + "maxlat": 40.7126405, + "maxlon": -74.0138735 + }, + "nodes": [ + 6551501333, + 6551501331, + 6551500136, + 6551500139, + 6551584164, + 6551500134, + 6551501328, + 10288472745, + 6551501326, + 6551501330, + 6551459459, + 10288472813, + 6551501333 + ], + "geometry": [ + { "lat": 40.7125709, "lon": -74.0139702 }, + { "lat": 40.7126405, "lon": -74.0139544 }, + { "lat": 40.7126348, "lon": -74.0139404 }, + { "lat": 40.7125719, "lon": -74.0139536 }, + { "lat": 40.7125697, "lon": -74.0139379 }, + { "lat": 40.7125672, "lon": -74.0139221 }, + { "lat": 40.7125798, "lon": -74.0139193 }, + { "lat": 40.7125730, "lon": -74.0139035 }, + { "lat": 40.7125605, "lon": -74.0138735 }, + { "lat": 40.7125341, "lon": -74.0138798 }, + { "lat": 40.7125468, "lon": -74.0139106 }, + { "lat": 40.7125587, "lon": -74.0139401 }, + { "lat": 40.7125709, "lon": -74.0139702 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619319, + "bounds": { + "minlat": 40.7124824, + "minlon": -74.0139819, + "maxlat": 40.7125410, + "maxlon": -74.0138868 + }, + "nodes": [ + 6551501338, + 6551501337, + 7133483503, + 6551501334, + 6551501339, + 7133483504, + 6551501338 + ], + "geometry": [ + { "lat": 40.7125191, "lon": -74.0139819 }, + { "lat": 40.7125410, "lon": -74.0139770 }, + { "lat": 40.7125177, "lon": -74.0139183 }, + { "lat": 40.7125047, "lon": -74.0138868 }, + { "lat": 40.7124824, "lon": -74.0138922 }, + { "lat": 40.7124959, "lon": -74.0139243 }, + { "lat": 40.7125191, "lon": -74.0139819 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619320, + "bounds": { + "minlat": 40.7125047, + "minlon": -74.0139770, + "maxlat": 40.7125677, + "maxlon": -74.0138805 + }, + "nodes": [ + 6551501337, + 6551501335, + 10288472808, + 7133483502, + 6551501332, + 6551501334, + 7133483503, + 6551501337 + ], + "geometry": [ + { "lat": 40.7125410, "lon": -74.0139770 }, + { "lat": 40.7125677, "lon": -74.0139709 }, + { "lat": 40.7125553, "lon": -74.0139398 }, + { "lat": 40.7125439, "lon": -74.0139112 }, + { "lat": 40.7125310, "lon": -74.0138805 }, + { "lat": 40.7125047, "lon": -74.0138868 }, + { "lat": 40.7125177, "lon": -74.0139183 }, + { "lat": 40.7125410, "lon": -74.0139770 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619321, + "bounds": { + "minlat": 40.7124477, + "minlon": -74.0139886, + "maxlat": 40.7124928, + "maxlon": -74.0138859 + }, + "nodes": [ + 6551501342, + 6551501340, + 7133483505, + 6551501341, + 6551501343, + 7133483506, + 6551501342 + ], + "geometry": [ + { "lat": 40.7124897, "lon": -74.0139886 }, + { "lat": 40.7124928, "lon": -74.0139879 }, + { "lat": 40.7124697, "lon": -74.0139314 }, + { "lat": 40.7124508, "lon": -74.0138859 }, + { "lat": 40.7124477, "lon": -74.0138867 }, + { "lat": 40.7124668, "lon": -74.0139322 }, + { "lat": 40.7124897, "lon": -74.0139886 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619322, + "bounds": { + "minlat": 40.7124508, + "minlon": -74.0139879, + "maxlat": 40.7125191, + "maxlon": -74.0138796 + }, + "nodes": [ + 6551501340, + 6551501338, + 7133483504, + 6551501339, + 6551501336, + 6551501341, + 7133483505, + 6551501340 + ], + "geometry": [ + { "lat": 40.7124928, "lon": -74.0139879 }, + { "lat": 40.7125191, "lon": -74.0139819 }, + { "lat": 40.7124959, "lon": -74.0139243 }, + { "lat": 40.7124824, "lon": -74.0138922 }, + { "lat": 40.7124771, "lon": -74.0138796 }, + { "lat": 40.7124508, "lon": -74.0138859 }, + { "lat": 40.7124697, "lon": -74.0139314 }, + { "lat": 40.7124928, "lon": -74.0139879 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619323, + "bounds": { + "minlat": 40.7123914, + "minlon": -74.0140013, + "maxlat": 40.7124555, + "maxlon": -74.0138948 + }, + "nodes": [ + 6551501346, + 6551501344, + 7133483507, + 6551501345, + 6551501347, + 7133483508, + 6551501346 + ], + "geometry": [ + { "lat": 40.7124333, "lon": -74.0140013 }, + { "lat": 40.7124555, "lon": -74.0139963 }, + { "lat": 40.7124332, "lon": -74.0139413 }, + { "lat": 40.7124137, "lon": -74.0138948 }, + { "lat": 40.7123914, "lon": -74.0139001 }, + { "lat": 40.7124112, "lon": -74.0139473 }, + { "lat": 40.7124333, "lon": -74.0140013 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619324, + "bounds": { + "minlat": 40.7124137, + "minlon": -74.0139963, + "maxlat": 40.7124897, + "maxlon": -74.0138867 + }, + "nodes": [ + 6551501344, + 6551501342, + 7133483506, + 6551501343, + 6551501345, + 7133483507, + 6551501344 + ], + "geometry": [ + { "lat": 40.7124555, "lon": -74.0139963 }, + { "lat": 40.7124897, "lon": -74.0139886 }, + { "lat": 40.7124668, "lon": -74.0139322 }, + { "lat": 40.7124477, "lon": -74.0138867 }, + { "lat": 40.7124137, "lon": -74.0138948 }, + { "lat": 40.7124332, "lon": -74.0139413 }, + { "lat": 40.7124555, "lon": -74.0139963 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619325, + "bounds": { + "minlat": 40.7123620, + "minlon": -74.0140080, + "maxlat": 40.7124069, + "maxlon": -74.0139064 + }, + "nodes": [ + 6551501350, + 6551501348, + 10288472756, + 6551501349, + 6551501351, + 7133483510, + 6551501350 + ], + "geometry": [ + { "lat": 40.7124037, "lon": -74.0140080 }, + { "lat": 40.7124069, "lon": -74.0140073 }, + { "lat": 40.7123852, "lon": -74.0139544 }, + { "lat": 40.7123651, "lon": -74.0139064 }, + { "lat": 40.7123620, "lon": -74.0139072 }, + { "lat": 40.7123822, "lon": -74.0139553 }, + { "lat": 40.7124037, "lon": -74.0140080 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619326, + "bounds": { + "minlat": 40.7123651, + "minlon": -74.0140073, + "maxlat": 40.7124333, + "maxlon": -74.0139001 + }, + "nodes": [ + 6551501348, + 6551501346, + 7133483508, + 6551501347, + 6551501349, + 10288472756, + 6551501348 + ], + "geometry": [ + { "lat": 40.7124069, "lon": -74.0140073 }, + { "lat": 40.7124333, "lon": -74.0140013 }, + { "lat": 40.7124112, "lon": -74.0139473 }, + { "lat": 40.7123914, "lon": -74.0139001 }, + { "lat": 40.7123651, "lon": -74.0139064 }, + { "lat": 40.7123852, "lon": -74.0139544 }, + { "lat": 40.7124069, "lon": -74.0140073 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619327, + "bounds": { + "minlat": 40.7123073, + "minlon": -74.0140204, + "maxlat": 40.7123713, + "maxlon": -74.0139149 + }, + "nodes": [ + 6551501354, + 6551501352, + 7133483511, + 6551501353, + 6551501355, + 7133483512, + 6551501354 + ], + "geometry": [ + { "lat": 40.7123490, "lon": -74.0140204 }, + { "lat": 40.7123713, "lon": -74.0140153 }, + { "lat": 40.7123501, "lon": -74.0139640 }, + { "lat": 40.7123296, "lon": -74.0139149 }, + { "lat": 40.7123073, "lon": -74.0139202 }, + { "lat": 40.7123281, "lon": -74.0139700 }, + { "lat": 40.7123490, "lon": -74.0140204 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619328, + "bounds": { + "minlat": 40.7123296, + "minlon": -74.0140153, + "maxlat": 40.7124037, + "maxlon": -74.0139072 + }, + "nodes": [ + 6551501352, + 6551501350, + 7133483510, + 6551501351, + 6551501353, + 7133483511, + 6551501352 + ], + "geometry": [ + { "lat": 40.7123713, "lon": -74.0140153 }, + { "lat": 40.7124037, "lon": -74.0140080 }, + { "lat": 40.7123822, "lon": -74.0139553 }, + { "lat": 40.7123620, "lon": -74.0139072 }, + { "lat": 40.7123296, "lon": -74.0139149 }, + { "lat": 40.7123501, "lon": -74.0139640 }, + { "lat": 40.7123713, "lon": -74.0140153 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619329, + "bounds": { + "minlat": 40.7122835, + "minlon": -74.0140257, + "maxlat": 40.7123282, + "maxlon": -74.0139252 + }, + "nodes": [ + 6551501361, + 6551501356, + 10288472753, + 6551501357, + 6551501358, + 7133483514, + 6551501361 + ], + "geometry": [ + { "lat": 40.7123251, "lon": -74.0140257 }, + { "lat": 40.7123282, "lon": -74.0140250 }, + { "lat": 40.7123078, "lon": -74.0139757 }, + { "lat": 40.7122866, "lon": -74.0139252 }, + { "lat": 40.7122835, "lon": -74.0139259 }, + { "lat": 40.7123047, "lon": -74.0139764 }, + { "lat": 40.7123251, "lon": -74.0140257 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619330, + "bounds": { + "minlat": 40.7122866, + "minlon": -74.0140250, + "maxlat": 40.7123490, + "maxlon": -74.0139202 + }, + "nodes": [ + 6551501356, + 6551501354, + 7133483512, + 6551501355, + 6551501357, + 10288472753, + 6551501356 + ], + "geometry": [ + { "lat": 40.7123282, "lon": -74.0140250 }, + { "lat": 40.7123490, "lon": -74.0140204 }, + { "lat": 40.7123281, "lon": -74.0139700 }, + { "lat": 40.7123073, "lon": -74.0139202 }, + { "lat": 40.7122866, "lon": -74.0139252 }, + { "lat": 40.7123078, "lon": -74.0139757 }, + { "lat": 40.7123282, "lon": -74.0140250 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619331, + "bounds": { + "minlat": 40.7122495, + "minlon": -74.0140365, + "maxlat": 40.7123000, + "maxlon": -74.0139553 + }, + "nodes": [ + 6551501364, + 6551501363, + 10288472755, + 6551501360, + 6551501365, + 10288472754, + 6551501364 + ], + "geometry": [ + { "lat": 40.7122777, "lon": -74.0140365 }, + { "lat": 40.7123000, "lon": -74.0140314 }, + { "lat": 40.7122798, "lon": -74.0139828 }, + { "lat": 40.7122683, "lon": -74.0139553 }, + { "lat": 40.7122495, "lon": -74.0139690 }, + { "lat": 40.7122575, "lon": -74.0139881 }, + { "lat": 40.7122777, "lon": -74.0140365 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619332, + "bounds": { + "minlat": 40.7122585, + "minlon": -74.0140314, + "maxlat": 40.7123251, + "maxlon": -74.0139259 + }, + "nodes": [ + 6551501361, + 7133483514, + 6551501358, + 6551501359, + 6551501360, + 10288472755, + 6551501363, + 6551501361 + ], + "geometry": [ + { "lat": 40.7123251, "lon": -74.0140257 }, + { "lat": 40.7123047, "lon": -74.0139764 }, + { "lat": 40.7122835, "lon": -74.0139259 }, + { "lat": 40.7122585, "lon": -74.0139319 }, + { "lat": 40.7122683, "lon": -74.0139553 }, + { "lat": 40.7122798, "lon": -74.0139828 }, + { "lat": 40.7123000, "lon": -74.0140314 }, + { "lat": 40.7123251, "lon": -74.0140257 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619333, + "bounds": { + "minlat": 40.7122029, + "minlon": -74.0140449, + "maxlat": 40.7122566, + "maxlon": -74.0139459 + }, + "nodes": [ + 6551501369, + 6551501389, + 7133483518, + 6551501388, + 6551501367, + 6551501366, + 7133483519, + 6551501369 + ], + "geometry": [ + { "lat": 40.7122401, "lon": -74.0140449 }, + { "lat": 40.7122566, "lon": -74.0140412 }, + { "lat": 40.7122364, "lon": -74.0139931 }, + { "lat": 40.7122166, "lon": -74.0139459 }, + { "lat": 40.7122029, "lon": -74.0139559 }, + { "lat": 40.7122088, "lon": -74.0139701 }, + { "lat": 40.7122201, "lon": -74.0139969 }, + { "lat": 40.7122401, "lon": -74.0140449 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619334, + "bounds": { + "minlat": 40.7122292, + "minlon": -74.0140405, + "maxlat": 40.7122777, + "maxlon": -74.0139566 + }, + "nodes": [ + 6551501386, + 6551501364, + 10288472754, + 6551501365, + 6551501362, + 6551501387, + 7133483517, + 6551501386 + ], + "geometry": [ + { "lat": 40.7122597, "lon": -74.0140405 }, + { "lat": 40.7122777, "lon": -74.0140365 }, + { "lat": 40.7122575, "lon": -74.0139881 }, + { "lat": 40.7122495, "lon": -74.0139690 }, + { "lat": 40.7122443, "lon": -74.0139566 }, + { "lat": 40.7122292, "lon": -74.0139676 }, + { "lat": 40.7122396, "lon": -74.0139924 }, + { "lat": 40.7122597, "lon": -74.0140405 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619335, + "bounds": { + "minlat": 40.7121721, + "minlon": -74.0140534, + "maxlat": 40.7122177, + "maxlon": -74.0139707 + }, + "nodes": [ + 6551501374, + 6551501370, + 6551459461, + 6551501371, + 6551501368, + 6551501375, + 7133483520, + 6551501374 + ], + "geometry": [ + { "lat": 40.7122028, "lon": -74.0140534 }, + { "lat": 40.7122177, "lon": -74.0140500 }, + { "lat": 40.7121978, "lon": -74.0140022 }, + { "lat": 40.7121901, "lon": -74.0139839 }, + { "lat": 40.7121846, "lon": -74.0139707 }, + { "lat": 40.7121721, "lon": -74.0139799 }, + { "lat": 40.7121829, "lon": -74.0140057 }, + { "lat": 40.7122028, "lon": -74.0140534 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619336, + "bounds": { + "minlat": 40.7121901, + "minlon": -74.0140500, + "maxlat": 40.7122401, + "maxlon": -74.0139701 + }, + "nodes": [ + 6551501370, + 6551501369, + 7133483519, + 6551501366, + 6551501371, + 6551459461, + 6551501370 + ], + "geometry": [ + { "lat": 40.7122177, "lon": -74.0140500 }, + { "lat": 40.7122401, "lon": -74.0140449 }, + { "lat": 40.7122201, "lon": -74.0139969 }, + { "lat": 40.7122088, "lon": -74.0139701 }, + { "lat": 40.7121901, "lon": -74.0139839 }, + { "lat": 40.7121978, "lon": -74.0140022 }, + { "lat": 40.7122177, "lon": -74.0140500 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619337, + "bounds": { + "minlat": 40.7120341, + "minlon": -74.0137825, + "maxlat": 40.7120817, + "maxlon": -74.0136910 + }, + "nodes": [ + 6551501378, + 6551502973, + 10288473056, + 6551501555, + 6551501372, + 6551501379, + 10288473058, + 6551501378 + ], + "geometry": [ + { "lat": 40.7120474, "lon": -74.0136910 }, + { "lat": 40.7120341, "lon": -74.0137007 }, + { "lat": 40.7120426, "lon": -74.0137209 }, + { "lat": 40.7120609, "lon": -74.0137644 }, + { "lat": 40.7120685, "lon": -74.0137825 }, + { "lat": 40.7120817, "lon": -74.0137729 }, + { "lat": 40.7120558, "lon": -74.0137111 }, + { "lat": 40.7120474, "lon": -74.0136910 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619338, + "bounds": { + "minlat": 40.7121499, + "minlon": -74.0140576, + "maxlat": 40.7121997, + "maxlon": -74.0139668 + }, + "nodes": [ + 6551501373, + 6551501376, + 10288472752, + 6551501377, + 6551501557, + 7133483522, + 6551501554, + 6551501373 + ], + "geometry": [ + { "lat": 40.7121499, "lon": -74.0139764 }, + { "lat": 40.7121631, "lon": -74.0139668 }, + { "lat": 40.7121798, "lon": -74.0140065 }, + { "lat": 40.7121997, "lon": -74.0140541 }, + { "lat": 40.7121839, "lon": -74.0140576 }, + { "lat": 40.7121641, "lon": -74.0140102 }, + { "lat": 40.7121520, "lon": -74.0139815 }, + { "lat": 40.7121499, "lon": -74.0139764 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619339, + "bounds": { + "minlat": 40.7120500, + "minlon": -74.0137952, + "maxlat": 40.7121070, + "maxlon": -74.0136799 + }, + "nodes": [ + 6551501383, + 6551501380, + 10288473060, + 6551501382, + 6551501381, + 10288473059, + 6551501383 + ], + "geometry": [ + { "lat": 40.7120945, "lon": -74.0137952 }, + { "lat": 40.7121070, "lon": -74.0137860 }, + { "lat": 40.7120709, "lon": -74.0136998 }, + { "lat": 40.7120625, "lon": -74.0136799 }, + { "lat": 40.7120500, "lon": -74.0136891 }, + { "lat": 40.7120584, "lon": -74.0137091 }, + { "lat": 40.7120945, "lon": -74.0137952 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619340, + "bounds": { + "minlat": 40.7120474, + "minlon": -74.0140541, + "maxlat": 40.7122028, + "maxlon": -74.0136891 + }, + "nodes": [ + 6551501381, + 6551501378, + 10288473058, + 6551501379, + 6551501376, + 10288472752, + 6551501377, + 6551501374, + 7133483520, + 6551501375, + 6551501383, + 10288473059, + 6551501381 + ], + "geometry": [ + { "lat": 40.7120500, "lon": -74.0136891 }, + { "lat": 40.7120474, "lon": -74.0136910 }, + { "lat": 40.7120558, "lon": -74.0137111 }, + { "lat": 40.7120817, "lon": -74.0137729 }, + { "lat": 40.7121631, "lon": -74.0139668 }, + { "lat": 40.7121798, "lon": -74.0140065 }, + { "lat": 40.7121997, "lon": -74.0140541 }, + { "lat": 40.7122028, "lon": -74.0140534 }, + { "lat": 40.7121829, "lon": -74.0140057 }, + { "lat": 40.7121721, "lon": -74.0139799 }, + { "lat": 40.7120945, "lon": -74.0137952 }, + { "lat": 40.7120584, "lon": -74.0137091 }, + { "lat": 40.7120500, "lon": -74.0136891 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619341, + "bounds": { + "minlat": 40.7120813, + "minlon": -74.0138201, + "maxlat": 40.7121597, + "maxlon": -74.0136562 + }, + "nodes": [ + 6551501390, + 6551501384, + 10288473062, + 6551502240, + 6551502237, + 6551501385, + 6551501391, + 10288473061, + 6551501390 + ], + "geometry": [ + { "lat": 40.7120950, "lon": -74.0136562 }, + { "lat": 40.7120813, "lon": -74.0136662 }, + { "lat": 40.7120896, "lon": -74.0136859 }, + { "lat": 40.7121115, "lon": -74.0137381 }, + { "lat": 40.7121431, "lon": -74.0138136 }, + { "lat": 40.7121459, "lon": -74.0138201 }, + { "lat": 40.7121597, "lon": -74.0138101 }, + { "lat": 40.7121039, "lon": -74.0136753 }, + { "lat": 40.7120950, "lon": -74.0136562 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619342, + "bounds": { + "minlat": 40.7120625, + "minlon": -74.0137518, + "maxlat": 40.7121115, + "maxlon": -74.0136662 + }, + "nodes": [ + 6551501384, + 6551501382, + 10288473060, + 6551502224, + 6551502240, + 10288473062, + 6551501384 + ], + "geometry": [ + { "lat": 40.7120813, "lon": -74.0136662 }, + { "lat": 40.7120625, "lon": -74.0136799 }, + { "lat": 40.7120709, "lon": -74.0136998 }, + { "lat": 40.7120927, "lon": -74.0137518 }, + { "lat": 40.7121115, "lon": -74.0137381 }, + { "lat": 40.7120896, "lon": -74.0136859 }, + { "lat": 40.7120813, "lon": -74.0136662 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619343, + "bounds": { + "minlat": 40.7120950, + "minlon": -74.0137349, + "maxlat": 40.7121466, + "maxlon": -74.0136432 + }, + "nodes": [ + 6551501397, + 6551501390, + 10288473061, + 6551501392, + 6551501393, + 6551501394, + 10288473063, + 6551501397 + ], + "geometry": [ + { "lat": 40.7121128, "lon": -74.0136432 }, + { "lat": 40.7120950, "lon": -74.0136562 }, + { "lat": 40.7121039, "lon": -74.0136753 }, + { "lat": 40.7121315, "lon": -74.0137349 }, + { "lat": 40.7121466, "lon": -74.0137238 }, + { "lat": 40.7121390, "lon": -74.0137057 }, + { "lat": 40.7121209, "lon": -74.0136626 }, + { "lat": 40.7121128, "lon": -74.0136432 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619344, + "bounds": { + "minlat": 40.7121039, + "minlon": -74.0140412, + "maxlat": 40.7122597, + "maxlon": -74.0136753 + }, + "nodes": [ + 10288473061, + 6551501391, + 6551501388, + 7133483518, + 6551501389, + 6551501386, + 7133483517, + 6551501387, + 6551501392, + 10288473061 + ], + "geometry": [ + { "lat": 40.7121039, "lon": -74.0136753 }, + { "lat": 40.7121597, "lon": -74.0138101 }, + { "lat": 40.7122166, "lon": -74.0139459 }, + { "lat": 40.7122364, "lon": -74.0139931 }, + { "lat": 40.7122566, "lon": -74.0140412 }, + { "lat": 40.7122597, "lon": -74.0140405 }, + { "lat": 40.7122396, "lon": -74.0139924 }, + { "lat": 40.7122292, "lon": -74.0139676 }, + { "lat": 40.7121315, "lon": -74.0137349 }, + { "lat": 40.7121039, "lon": -74.0136753 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619345, + "bounds": { + "minlat": 40.7121316, + "minlon": -74.0137335, + "maxlat": 40.7121967, + "maxlon": -74.0136141 + }, + "nodes": [ + 6551501402, + 6551501398, + 10288473049, + 6551501399, + 6551501396, + 6551501403, + 10288473050, + 6551501402 + ], + "geometry": [ + { "lat": 40.7121526, "lon": -74.0136141 }, + { "lat": 40.7121316, "lon": -74.0136295 }, + { "lat": 40.7121397, "lon": -74.0136487 }, + { "lat": 40.7121578, "lon": -74.0136920 }, + { "lat": 40.7121752, "lon": -74.0137335 }, + { "lat": 40.7121967, "lon": -74.0137178 }, + { "lat": 40.7121610, "lon": -74.0136329 }, + { "lat": 40.7121526, "lon": -74.0136141 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619346, + "bounds": { + "minlat": 40.7121128, + "minlon": -74.0137057, + "maxlat": 40.7121578, + "maxlon": -74.0136295 + }, + "nodes": [ + 6551501398, + 8213964628, + 6551501397, + 10288473063, + 6551501394, + 6551501399, + 10288473049, + 6551501398 + ], + "geometry": [ + { "lat": 40.7121316, "lon": -74.0136295 }, + { "lat": 40.7121187, "lon": -74.0136389 }, + { "lat": 40.7121128, "lon": -74.0136432 }, + { "lat": 40.7121209, "lon": -74.0136626 }, + { "lat": 40.7121390, "lon": -74.0137057 }, + { "lat": 40.7121578, "lon": -74.0136920 }, + { "lat": 40.7121397, "lon": -74.0136487 }, + { "lat": 40.7121316, "lon": -74.0136295 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619347, + "bounds": { + "minlat": 40.7121546, + "minlon": -74.0137409, + "maxlat": 40.7122267, + "maxlon": -74.0135995 + }, + "nodes": [ + 6551501407, + 6551501404, + 10563084404, + 10563084403, + 6551501406, + 10288473051, + 6551502206, + 6551501407 + ], + "geometry": [ + { "lat": 40.7122267, "lon": -74.0137282 }, + { "lat": 40.7122093, "lon": -74.0137409 }, + { "lat": 40.7121628, "lon": -74.0136316 }, + { "lat": 40.7121546, "lon": -74.0136128 }, + { "lat": 40.7121726, "lon": -74.0135995 }, + { "lat": 40.7121805, "lon": -74.0136184 }, + { "lat": 40.7122067, "lon": -74.0136805 }, + { "lat": 40.7122267, "lon": -74.0137282 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619348, + "bounds": { + "minlat": 40.7121526, + "minlon": -74.0139134, + "maxlat": 40.7122813, + "maxlon": -74.0136128 + }, + "nodes": [ + 6551501402, + 10288473050, + 6551501403, + 6551501400, + 6551501401, + 6551501404, + 10563084404, + 10563084403, + 6551501402 + ], + "geometry": [ + { "lat": 40.7121526, "lon": -74.0136141 }, + { "lat": 40.7121610, "lon": -74.0136329 }, + { "lat": 40.7121967, "lon": -74.0137178 }, + { "lat": 40.7122782, "lon": -74.0139134 }, + { "lat": 40.7122813, "lon": -74.0139126 }, + { "lat": 40.7122093, "lon": -74.0137409 }, + { "lat": 40.7121628, "lon": -74.0136316 }, + { "lat": 40.7121546, "lon": -74.0136128 }, + { "lat": 40.7121526, "lon": -74.0136141 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619349, + "bounds": { + "minlat": 40.7121914, + "minlon": -74.0137551, + "maxlat": 40.7122898, + "maxlon": -74.0135658 + }, + "nodes": [ + 6551501412, + 6551501408, + 10288473053, + 6551502222, + 6551502219, + 6551501409, + 6551501413, + 10288473052, + 6551501412 + ], + "geometry": [ + { "lat": 40.7122187, "lon": -74.0135658 }, + { "lat": 40.7121914, "lon": -74.0135858 }, + { "lat": 40.7121992, "lon": -74.0136045 }, + { "lat": 40.7122254, "lon": -74.0136668 }, + { "lat": 40.7122596, "lon": -74.0137482 }, + { "lat": 40.7122625, "lon": -74.0137551 }, + { "lat": 40.7122898, "lon": -74.0137352 }, + { "lat": 40.7122269, "lon": -74.0135839 }, + { "lat": 40.7122187, "lon": -74.0135658 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619350, + "bounds": { + "minlat": 40.7121726, + "minlon": -74.0136805, + "maxlat": 40.7122254, + "maxlon": -74.0135858 + }, + "nodes": [ + 6551502206, + 6551502205, + 6551502222, + 10288473053, + 6551501408, + 6551501406, + 10288473051, + 6551502206 + ], + "geometry": [ + { "lat": 40.7122067, "lon": -74.0136805 }, + { "lat": 40.7122103, "lon": -74.0136779 }, + { "lat": 40.7122254, "lon": -74.0136668 }, + { "lat": 40.7121992, "lon": -74.0136045 }, + { "lat": 40.7121914, "lon": -74.0135858 }, + { "lat": 40.7121726, "lon": -74.0135995 }, + { "lat": 40.7121805, "lon": -74.0136184 }, + { "lat": 40.7122067, "lon": -74.0136805 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619351, + "bounds": { + "minlat": 40.7122187, + "minlon": -74.0136693, + "maxlat": 40.7122877, + "maxlon": -74.0135477 + }, + "nodes": [ + 6551501416, + 10288473054, + 6551501419, + 6551501417, + 6551501414, + 10288473052, + 6551501412, + 6551501416 + ], + "geometry": [ + { "lat": 40.7122435, "lon": -74.0135477 }, + { "lat": 40.7122511, "lon": -74.0135659 }, + { "lat": 40.7122696, "lon": -74.0136100 }, + { "lat": 40.7122877, "lon": -74.0136532 }, + { "lat": 40.7122656, "lon": -74.0136693 }, + { "lat": 40.7122269, "lon": -74.0135839 }, + { "lat": 40.7122187, "lon": -74.0135658 }, + { "lat": 40.7122435, "lon": -74.0135477 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619352, + "bounds": { + "minlat": 40.7122269, + "minlon": -74.0138946, + "maxlat": 40.7123598, + "maxlon": -74.0135839 + }, + "nodes": [ + 10288473052, + 6551501413, + 6551501410, + 6551501411, + 6551501414, + 10288473052 + ], + "geometry": [ + { "lat": 40.7122269, "lon": -74.0135839 }, + { "lat": 40.7122898, "lon": -74.0137352 }, + { "lat": 40.7123567, "lon": -74.0138946 }, + { "lat": 40.7123598, "lon": -74.0138939 }, + { "lat": 40.7122656, "lon": -74.0136693 }, + { "lat": 40.7122269, "lon": -74.0135839 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619353, + "bounds": { + "minlat": 40.7122622, + "minlon": -74.0136470, + "maxlat": 40.7123384, + "maxlon": -74.0135131 + }, + "nodes": [ + 6551501424, + 6551501420, + 10288473055, + 6551501421, + 6551501418, + 6551501425, + 10288473044, + 6551501424 + ], + "geometry": [ + { "lat": 40.7122909, "lon": -74.0135131 }, + { "lat": 40.7122622, "lon": -74.0135341 }, + { "lat": 40.7122698, "lon": -74.0135520 }, + { "lat": 40.7122884, "lon": -74.0135963 }, + { "lat": 40.7123097, "lon": -74.0136470 }, + { "lat": 40.7123384, "lon": -74.0136261 }, + { "lat": 40.7122990, "lon": -74.0135303 }, + { "lat": 40.7122909, "lon": -74.0135131 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619354, + "bounds": { + "minlat": 40.7122435, + "minlon": -74.0136100, + "maxlat": 40.7122884, + "maxlon": -74.0135341 + }, + "nodes": [ + 6551501420, + 10288473055, + 6551501421, + 6551501419, + 10288473054, + 6551501416, + 6551501420 + ], + "geometry": [ + { "lat": 40.7122622, "lon": -74.0135341 }, + { "lat": 40.7122698, "lon": -74.0135520 }, + { "lat": 40.7122884, "lon": -74.0135963 }, + { "lat": 40.7122696, "lon": -74.0136100 }, + { "lat": 40.7122511, "lon": -74.0135659 }, + { "lat": 40.7122435, "lon": -74.0135477 }, + { "lat": 40.7122622, "lon": -74.0135341 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619355, + "bounds": { + "minlat": 40.7122909, + "minlon": -74.0135850, + "maxlat": 40.7123467, + "maxlon": -74.0134971 + }, + "nodes": [ + 6551501429, + 10288473045, + 6551501428, + 6551501424, + 10288473044, + 6551501427, + 6551501429 + ], + "geometry": [ + { "lat": 40.7123467, "lon": -74.0135689 }, + { "lat": 40.7123208, "lon": -74.0135141 }, + { "lat": 40.7123128, "lon": -74.0134971 }, + { "lat": 40.7122909, "lon": -74.0135131 }, + { "lat": 40.7122990, "lon": -74.0135303 }, + { "lat": 40.7123246, "lon": -74.0135850 }, + { "lat": 40.7123467, "lon": -74.0135689 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619356, + "bounds": { + "minlat": 40.7122990, + "minlon": -74.0138741, + "maxlat": 40.7124456, + "maxlon": -74.0135303 + }, + "nodes": [ + 10288473044, + 6551501425, + 6551501422, + 6551501423, + 6551501427, + 10288473044 + ], + "geometry": [ + { "lat": 40.7122990, "lon": -74.0135303 }, + { "lat": 40.7123384, "lon": -74.0136261 }, + { "lat": 40.7124425, "lon": -74.0138741 }, + { "lat": 40.7124456, "lon": -74.0138733 }, + { "lat": 40.7123246, "lon": -74.0135850 }, + { "lat": 40.7122990, "lon": -74.0135303 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619357, + "bounds": { + "minlat": 40.7123345, + "minlon": -74.0136663, + "maxlat": 40.7124343, + "maxlon": -74.0134651 + }, + "nodes": [ + 6551501434, + 6551501430, + 10288473046, + 6551502172, + 6551501431, + 6551501435, + 10288473047, + 6551501434 + ], + "geometry": [ + { "lat": 40.7123566, "lon": -74.0134651 }, + { "lat": 40.7123345, "lon": -74.0134813 }, + { "lat": 40.7123417, "lon": -74.0134986 }, + { "lat": 40.7123774, "lon": -74.0135836 }, + { "lat": 40.7124122, "lon": -74.0136663 }, + { "lat": 40.7124343, "lon": -74.0136501 }, + { "lat": 40.7123640, "lon": -74.0134820 }, + { "lat": 40.7123566, "lon": -74.0134651 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619358, + "bounds": { + "minlat": 40.7123128, + "minlon": -74.0135973, + "maxlat": 40.7123774, + "maxlon": -74.0134813 + }, + "nodes": [ + 6551502923, + 6551502172, + 10288473046, + 6551501430, + 6551501428, + 10288473045, + 6551501429, + 6551502923 + ], + "geometry": [ + { "lat": 40.7123586, "lon": -74.0135973 }, + { "lat": 40.7123774, "lon": -74.0135836 }, + { "lat": 40.7123417, "lon": -74.0134986 }, + { "lat": 40.7123345, "lon": -74.0134813 }, + { "lat": 40.7123128, "lon": -74.0134971 }, + { "lat": 40.7123208, "lon": -74.0135141 }, + { "lat": 40.7123467, "lon": -74.0135689 }, + { "lat": 40.7123586, "lon": -74.0135973 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619359, + "bounds": { + "minlat": 40.7123566, + "minlon": -74.0136334, + "maxlat": 40.7124529, + "maxlon": -74.0134470 + }, + "nodes": [ + 6551501434, + 6551501438, + 10288473048, + 6551502188, + 6551502185, + 6551501436, + 6551501437, + 10288473047, + 6551501434 + ], + "geometry": [ + { "lat": 40.7123566, "lon": -74.0134651 }, + { "lat": 40.7123814, "lon": -74.0134470 }, + { "lat": 40.7123885, "lon": -74.0134638 }, + { "lat": 40.7124126, "lon": -74.0135213 }, + { "lat": 40.7124468, "lon": -74.0136027 }, + { "lat": 40.7124529, "lon": -74.0136172 }, + { "lat": 40.7124307, "lon": -74.0136334 }, + { "lat": 40.7123640, "lon": -74.0134820 }, + { "lat": 40.7123566, "lon": -74.0134651 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619360, + "bounds": { + "minlat": 40.7123640, + "minlon": -74.0138554, + "maxlat": 40.7125231, + "maxlon": -74.0134820 + }, + "nodes": [ + 10288473047, + 6551501435, + 6551501432, + 6551501433, + 6551501437, + 10288473047 + ], + "geometry": [ + { "lat": 40.7123640, "lon": -74.0134820 }, + { "lat": 40.7124343, "lon": -74.0136501 }, + { "lat": 40.7125205, "lon": -74.0138554 }, + { "lat": 40.7125231, "lon": -74.0138535 }, + { "lat": 40.7124307, "lon": -74.0136334 }, + { "lat": 40.7123640, "lon": -74.0134820 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619361, + "bounds": { + "minlat": 40.7124002, + "minlon": -74.0135533, + "maxlat": 40.7124680, + "maxlon": -74.0134205 + }, + "nodes": [ + 6551501444, + 6551501440, + 10288473038, + 6551502204, + 6551501441, + 6551501445, + 10288473037, + 6551501444 + ], + "geometry": [ + { "lat": 40.7124176, "lon": -74.0134205 }, + { "lat": 40.7124002, "lon": -74.0134333 }, + { "lat": 40.7124072, "lon": -74.0134499 }, + { "lat": 40.7124309, "lon": -74.0135073 }, + { "lat": 40.7124506, "lon": -74.0135533 }, + { "lat": 40.7124680, "lon": -74.0135406 }, + { "lat": 40.7124250, "lon": -74.0134367 }, + { "lat": 40.7124176, "lon": -74.0134205 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619362, + "bounds": { + "minlat": 40.7123814, + "minlon": -74.0135213, + "maxlat": 40.7124309, + "maxlon": -74.0134333 + }, + "nodes": [ + 6551501440, + 6551501438, + 10288473048, + 6551502188, + 6551502187, + 6551502204, + 10288473038, + 6551501440 + ], + "geometry": [ + { "lat": 40.7124002, "lon": -74.0134333 }, + { "lat": 40.7123814, "lon": -74.0134470 }, + { "lat": 40.7123885, "lon": -74.0134638 }, + { "lat": 40.7124126, "lon": -74.0135213 }, + { "lat": 40.7124166, "lon": -74.0135183 }, + { "lat": 40.7124309, "lon": -74.0135073 }, + { "lat": 40.7124072, "lon": -74.0134499 }, + { "lat": 40.7124002, "lon": -74.0134333 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619363, + "bounds": { + "minlat": 40.7124176, + "minlon": -74.0135151, + "maxlat": 40.7124781, + "maxlon": -74.0134059 + }, + "nodes": [ + 6551501448, + 10288473039, + 6551502174, + 6551501449, + 6551501446, + 10288473037, + 6551501444, + 6551501448 + ], + "geometry": [ + { "lat": 40.7124376, "lon": -74.0134059 }, + { "lat": 40.7124445, "lon": -74.0134222 }, + { "lat": 40.7124668, "lon": -74.0134754 }, + { "lat": 40.7124781, "lon": -74.0135024 }, + { "lat": 40.7124607, "lon": -74.0135151 }, + { "lat": 40.7124250, "lon": -74.0134367 }, + { "lat": 40.7124176, "lon": -74.0134205 }, + { "lat": 40.7124376, "lon": -74.0134059 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619364, + "bounds": { + "minlat": 40.7124250, + "minlon": -74.0138381, + "maxlat": 40.7125960, + "maxlon": -74.0134367 + }, + "nodes": [ + 10288473037, + 6551501445, + 6551501442, + 6551501443, + 6551501446, + 10288473037 + ], + "geometry": [ + { "lat": 40.7124250, "lon": -74.0134367 }, + { "lat": 40.7124680, "lon": -74.0135406 }, + { "lat": 40.7125929, "lon": -74.0138381 }, + { "lat": 40.7125960, "lon": -74.0138374 }, + { "lat": 40.7124607, "lon": -74.0135151 }, + { "lat": 40.7124250, "lon": -74.0134367 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619365, + "bounds": { + "minlat": 40.7124823, + "minlon": -74.0135231, + "maxlat": 40.7125663, + "maxlon": -74.0133579 + }, + "nodes": [ + 6551501459, + 10288473041, + 6551502137, + 6551502157, + 10288473040, + 6551501460, + 6551501459 + ], + "geometry": [ + { "lat": 40.7124823, "lon": -74.0133733 }, + { "lat": 40.7124890, "lon": -74.0133891 }, + { "lat": 40.7125452, "lon": -74.0135231 }, + { "lat": 40.7125663, "lon": -74.0135077 }, + { "lat": 40.7125100, "lon": -74.0133735 }, + { "lat": 40.7125034, "lon": -74.0133579 }, + { "lat": 40.7124823, "lon": -74.0133733 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619366, + "bounds": { + "minlat": 40.7124376, + "minlon": -74.0134754, + "maxlat": 40.7124856, + "maxlon": -74.0133922 + }, + "nodes": [ + 6551501456, + 10288473042, + 6551501451, + 6551502173, + 6551502174, + 10288473039, + 6551501448, + 6551501456 + ], + "geometry": [ + { "lat": 40.7124564, "lon": -74.0133922 }, + { "lat": 40.7124632, "lon": -74.0134083 }, + { "lat": 40.7124856, "lon": -74.0134617 }, + { "lat": 40.7124706, "lon": -74.0134726 }, + { "lat": 40.7124668, "lon": -74.0134754 }, + { "lat": 40.7124445, "lon": -74.0134222 }, + { "lat": 40.7124376, "lon": -74.0134059 }, + { "lat": 40.7124564, "lon": -74.0133922 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619367, + "bounds": { + "minlat": 40.7125876, + "minlon": -74.0139373, + "maxlat": 40.7127415, + "maxlon": -74.0136087 + }, + "nodes": [ + 6551501461, + 10288472749, + 6551502158, + 6551502138, + 10288472748, + 6551501458, + 6551501461 + ], + "geometry": [ + { "lat": 40.7127415, "lon": -74.0139317 }, + { "lat": 40.7127160, "lon": -74.0138644 }, + { "lat": 40.7126087, "lon": -74.0136087 }, + { "lat": 40.7125876, "lon": -74.0136241 }, + { "lat": 40.7126912, "lon": -74.0138711 }, + { "lat": 40.7127165, "lon": -74.0139373 }, + { "lat": 40.7127415, "lon": -74.0139317 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619368, + "bounds": { + "minlat": 40.7124564, + "minlon": -74.0139443, + "maxlat": 40.7127165, + "maxlon": -74.0133733 + }, + "nodes": [ + 6551501458, + 10288472748, + 6551502138, + 6551502137, + 10288473041, + 6551501459, + 8213964627, + 6551501456, + 10288473042, + 6551501451, + 6551501457, + 6551501454, + 6551501455, + 6551501452, + 6551501453, + 10288472747, + 6551501450, + 6551501458 + ], + "geometry": [ + { "lat": 40.7127165, "lon": -74.0139373 }, + { "lat": 40.7126912, "lon": -74.0138711 }, + { "lat": 40.7125876, "lon": -74.0136241 }, + { "lat": 40.7125452, "lon": -74.0135231 }, + { "lat": 40.7124890, "lon": -74.0133891 }, + { "lat": 40.7124823, "lon": -74.0133733 }, + { "lat": 40.7124753, "lon": -74.0133784 }, + { "lat": 40.7124564, "lon": -74.0133922 }, + { "lat": 40.7124632, "lon": -74.0134083 }, + { "lat": 40.7124856, "lon": -74.0134617 }, + { "lat": 40.7124949, "lon": -74.0134549 }, + { "lat": 40.7125401, "lon": -74.0135596 }, + { "lat": 40.7125496, "lon": -74.0135536 }, + { "lat": 40.7126720, "lon": -74.0138468 }, + { "lat": 40.7126495, "lon": -74.0138522 }, + { "lat": 40.7126609, "lon": -74.0138794 }, + { "lat": 40.7126859, "lon": -74.0139443 }, + { "lat": 40.7127165, "lon": -74.0139373 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619369, + "bounds": { + "minlat": 40.7120485, + "minlon": -74.0139132, + "maxlat": 40.7128376, + "maxlon": -74.0120699 + }, + "nodes": [ + 6551501474, + 6551501470, + 5813259926, + 10282972089, + 11301575772, + 6551501468, + 6551501469, + 8213941368, + 7120288152, + 6551501466, + 6551501467, + 10288472737, + 6551501464, + 6551501465, + 10288472738, + 1431806510, + 10288472741, + 8213941370, + 11301575773, + 6551501474 + ], + "geometry": [ + { "lat": 40.7120485, "lon": -74.0120714 }, + { "lat": 40.7120567, "lon": -74.0120699 }, + { "lat": 40.7120665, "lon": -74.0120720 }, + { "lat": 40.7120760, "lon": -74.0120779 }, + { "lat": 40.7120826, "lon": -74.0120876 }, + { "lat": 40.7120843, "lon": -74.0120901 }, + { "lat": 40.7120936, "lon": -74.0121124 }, + { "lat": 40.7122834, "lon": -74.0125672 }, + { "lat": 40.7123905, "lon": -74.0128211 }, + { "lat": 40.7128193, "lon": -74.0138361 }, + { "lat": 40.7128352, "lon": -74.0138725 }, + { "lat": 40.7128376, "lon": -74.0138835 }, + { "lat": 40.7128369, "lon": -74.0138938 }, + { "lat": 40.7128340, "lon": -74.0139029 }, + { "lat": 40.7128281, "lon": -74.0139097 }, + { "lat": 40.7128234, "lon": -74.0139132 }, + { "lat": 40.7127937, "lon": -74.0138431 }, + { "lat": 40.7122644, "lon": -74.0125819 }, + { "lat": 40.7120592, "lon": -74.0120966 }, + { "lat": 40.7120485, "lon": -74.0120714 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619370, + "bounds": { + "minlat": 40.7125034, + "minlon": -74.0139317, + "maxlat": 40.7127717, + "maxlon": -74.0133394 + }, + "nodes": [ + 6551501480, + 10288472750, + 6551500143, + 6551584165, + 6551500138, + 6551500141, + 6551584166, + 6551500140, + 10288473043, + 6551502976, + 6551501460, + 10288473040, + 6551502157, + 6551502158, + 10288472749, + 6551501461, + 6551501480 + ], + "geometry": [ + { "lat": 40.7127717, "lon": -74.0139249 }, + { "lat": 40.7127457, "lon": -74.0138562 }, + { "lat": 40.7126845, "lon": -74.0137130 }, + { "lat": 40.7126732, "lon": -74.0137212 }, + { "lat": 40.7126624, "lon": -74.0137291 }, + { "lat": 40.7126350, "lon": -74.0136650 }, + { "lat": 40.7126458, "lon": -74.0136570 }, + { "lat": 40.7126569, "lon": -74.0136487 }, + { "lat": 40.7125351, "lon": -74.0133548 }, + { "lat": 40.7125287, "lon": -74.0133394 }, + { "lat": 40.7125034, "lon": -74.0133579 }, + { "lat": 40.7125100, "lon": -74.0133735 }, + { "lat": 40.7125663, "lon": -74.0135077 }, + { "lat": 40.7126087, "lon": -74.0136087 }, + { "lat": 40.7127160, "lon": -74.0138644 }, + { "lat": 40.7127415, "lon": -74.0139317 }, + { "lat": 40.7127717, "lon": -74.0139249 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619371, + "bounds": { + "minlat": 40.7121717, + "minlon": -74.0139249, + "maxlat": 40.7127941, + "maxlon": -74.0124760 + }, + "nodes": [ + 6551502239, + 6551502251, + 8213941371, + 10288472881, + 10288473036, + 10288472751, + 6551501483, + 6551501480, + 10288472750, + 6551500143, + 6551500140, + 10288473043, + 6551502976, + 6551502975, + 6551502965, + 10288472879, + 6551502239 + ], + "geometry": [ + { "lat": 40.7121717, "lon": -74.0124895 }, + { "lat": 40.7121909, "lon": -74.0124760 }, + { "lat": 40.7122425, "lon": -74.0125990 }, + { "lat": 40.7122543, "lon": -74.0126271 }, + { "lat": 40.7125539, "lon": -74.0133409 }, + { "lat": 40.7127677, "lon": -74.0138502 }, + { "lat": 40.7127941, "lon": -74.0139198 }, + { "lat": 40.7127717, "lon": -74.0139249 }, + { "lat": 40.7127457, "lon": -74.0138562 }, + { "lat": 40.7126845, "lon": -74.0137130 }, + { "lat": 40.7126569, "lon": -74.0136487 }, + { "lat": 40.7125351, "lon": -74.0133548 }, + { "lat": 40.7125287, "lon": -74.0133394 }, + { "lat": 40.7125043, "lon": -74.0132811 }, + { "lat": 40.7122414, "lon": -74.0126548 }, + { "lat": 40.7122360, "lon": -74.0126409 }, + { "lat": 40.7121717, "lon": -74.0124895 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619372, + "bounds": { + "minlat": 40.7120250, + "minlon": -74.0139198, + "maxlat": 40.7128234, + "maxlon": -74.0120714 + }, + "nodes": [ + 6551501482, + 6551501477, + 6551501474, + 11301575773, + 8213941370, + 10288472741, + 1431806510, + 6551501472, + 6551501483, + 10288472751, + 10288473036, + 10288472881, + 8213941371, + 6551502251, + 6551502254, + 6551502273, + 6551502276, + 10285341133, + 7133507082, + 6551501482 + ], + "geometry": [ + { "lat": 40.7120250, "lon": -74.0120807 }, + { "lat": 40.7120411, "lon": -74.0120742 }, + { "lat": 40.7120485, "lon": -74.0120714 }, + { "lat": 40.7120592, "lon": -74.0120966 }, + { "lat": 40.7122644, "lon": -74.0125819 }, + { "lat": 40.7127937, "lon": -74.0138431 }, + { "lat": 40.7128234, "lon": -74.0139132 }, + { "lat": 40.7128104, "lon": -74.0139161 }, + { "lat": 40.7127941, "lon": -74.0139198 }, + { "lat": 40.7127677, "lon": -74.0138502 }, + { "lat": 40.7125539, "lon": -74.0133409 }, + { "lat": 40.7122543, "lon": -74.0126271 }, + { "lat": 40.7122425, "lon": -74.0125990 }, + { "lat": 40.7121909, "lon": -74.0124760 }, + { "lat": 40.7121650, "lon": -74.0124142 }, + { "lat": 40.7121516, "lon": -74.0123823 }, + { "lat": 40.7121092, "lon": -74.0122814 }, + { "lat": 40.7120357, "lon": -74.0121061 }, + { "lat": 40.7120283, "lon": -74.0120885 }, + { "lat": 40.7120250, "lon": -74.0120807 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619373, + "bounds": { + "minlat": 40.7121328, + "minlon": -74.0124279, + "maxlat": 40.7121650, + "maxlon": -74.0123823 + }, + "nodes": [ + 6551502242, + 6551502241, + 6551502254, + 6551502273, + 6551502274, + 6551502253, + 6551502242 + ], + "geometry": [ + { "lat": 40.7121462, "lon": -74.0124279 }, + { "lat": 40.7121500, "lon": -74.0124252 }, + { "lat": 40.7121650, "lon": -74.0124142 }, + { "lat": 40.7121516, "lon": -74.0123823 }, + { "lat": 40.7121363, "lon": -74.0123936 }, + { "lat": 40.7121328, "lon": -74.0123961 }, + { "lat": 40.7121462, "lon": -74.0124279 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619374, + "bounds": { + "minlat": 40.7120038, + "minlon": -74.0122951, + "maxlat": 40.7121092, + "maxlon": -74.0120807 + }, + "nodes": [ + 6551502256, + 6551502276, + 10285341133, + 7133507082, + 6551501482, + 6551501485, + 7133507081, + 10285341134, + 6551502256 + ], + "geometry": [ + { "lat": 40.7120904, "lon": -74.0122951 }, + { "lat": 40.7121092, "lon": -74.0122814 }, + { "lat": 40.7120357, "lon": -74.0121061 }, + { "lat": 40.7120283, "lon": -74.0120885 }, + { "lat": 40.7120250, "lon": -74.0120807 }, + { "lat": 40.7120038, "lon": -74.0120886 }, + { "lat": 40.7120072, "lon": -74.0120966 }, + { "lat": 40.7120145, "lon": -74.0121140 }, + { "lat": 40.7120904, "lon": -74.0122951 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619375, + "bounds": { + "minlat": 40.7121783, + "minlon": -74.0126887, + "maxlat": 40.7122161, + "maxlon": -74.0126328 + }, + "nodes": [ + 6551501488, + 6551501487, + 10288472880, + 6551501484, + 6551501491, + 10288472884, + 6551501488 + ], + "geometry": [ + { "lat": 40.7121950, "lon": -74.0126887 }, + { "lat": 40.7122161, "lon": -74.0126733 }, + { "lat": 40.7122104, "lon": -74.0126599 }, + { "lat": 40.7121990, "lon": -74.0126328 }, + { "lat": 40.7121783, "lon": -74.0126489 }, + { "lat": 40.7121895, "lon": -74.0126756 }, + { "lat": 40.7121950, "lon": -74.0126887 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619376, + "bounds": { + "minlat": 40.7119751, + "minlon": -74.0126733, + "maxlat": 40.7122414, + "maxlon": -74.0120886 + }, + "nodes": [ + 6551501487, + 6551502965, + 10288472879, + 6551502239, + 6551502242, + 6551502253, + 6551502256, + 10285341134, + 7133507081, + 6551501485, + 6551501489, + 7133507080, + 10285341135, + 6551501486, + 6551501484, + 10288472880, + 6551501487 + ], + "geometry": [ + { "lat": 40.7122161, "lon": -74.0126733 }, + { "lat": 40.7122414, "lon": -74.0126548 }, + { "lat": 40.7122360, "lon": -74.0126409 }, + { "lat": 40.7121717, "lon": -74.0124895 }, + { "lat": 40.7121462, "lon": -74.0124279 }, + { "lat": 40.7121328, "lon": -74.0123961 }, + { "lat": 40.7120904, "lon": -74.0122951 }, + { "lat": 40.7120145, "lon": -74.0121140 }, + { "lat": 40.7120072, "lon": -74.0120966 }, + { "lat": 40.7120038, "lon": -74.0120886 }, + { "lat": 40.7119751, "lon": -74.0120993 }, + { "lat": 40.7119786, "lon": -74.0121075 }, + { "lat": 40.7119858, "lon": -74.0121247 }, + { "lat": 40.7120390, "lon": -74.0122515 }, + { "lat": 40.7121990, "lon": -74.0126328 }, + { "lat": 40.7122104, "lon": -74.0126599 }, + { "lat": 40.7122161, "lon": -74.0126733 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619377, + "bounds": { + "minlat": 40.7119220, + "minlon": -74.0127082, + "maxlat": 40.7121950, + "maxlon": -74.0121081 + }, + "nodes": [ + 6551501492, + 6551501493, + 7133507079, + 10285341136, + 6551501490, + 6551501491, + 10288472884, + 6551501488, + 6551501497, + 10288472885, + 8213941373, + 6551502291, + 6551502294, + 6551502309, + 6551501495, + 10285341132, + 7133507078, + 6551501492 + ], + "geometry": [ + { "lat": 40.7119220, "lon": -74.0121190 }, + { "lat": 40.7119513, "lon": -74.0121081 }, + { "lat": 40.7119548, "lon": -74.0121164 }, + { "lat": 40.7119620, "lon": -74.0121335 }, + { "lat": 40.7120179, "lon": -74.0122669 }, + { "lat": 40.7121783, "lon": -74.0126489 }, + { "lat": 40.7121895, "lon": -74.0126756 }, + { "lat": 40.7121950, "lon": -74.0126887 }, + { "lat": 40.7121685, "lon": -74.0127082 }, + { "lat": 40.7121633, "lon": -74.0126952 }, + { "lat": 40.7121527, "lon": -74.0126688 }, + { "lat": 40.7121339, "lon": -74.0126244 }, + { "lat": 40.7121045, "lon": -74.0125538 }, + { "lat": 40.7120599, "lon": -74.0124475 }, + { "lat": 40.7120276, "lon": -74.0123706 }, + { "lat": 40.7119327, "lon": -74.0121444 }, + { "lat": 40.7119255, "lon": -74.0121274 }, + { "lat": 40.7119220, "lon": -74.0121190 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619378, + "bounds": { + "minlat": 40.7119513, + "minlon": -74.0122669, + "maxlat": 40.7120390, + "maxlon": -74.0120993 + }, + "nodes": [ + 6551501493, + 6551501489, + 7133507080, + 10285341135, + 6551501486, + 6551501490, + 10285341136, + 7133507079, + 6551501493 + ], + "geometry": [ + { "lat": 40.7119513, "lon": -74.0121081 }, + { "lat": 40.7119751, "lon": -74.0120993 }, + { "lat": 40.7119786, "lon": -74.0121075 }, + { "lat": 40.7119858, "lon": -74.0121247 }, + { "lat": 40.7120390, "lon": -74.0122515 }, + { "lat": 40.7120179, "lon": -74.0122669 }, + { "lat": 40.7119620, "lon": -74.0121335 }, + { "lat": 40.7119548, "lon": -74.0121164 }, + { "lat": 40.7119513, "lon": -74.0121081 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619379, + "bounds": { + "minlat": 40.7121155, + "minlon": -74.0127214, + "maxlat": 40.7121685, + "maxlon": -74.0126244 + }, + "nodes": [ + 6551501496, + 6551501497, + 10288472885, + 8213941373, + 6551502291, + 6551502292, + 6551501494, + 8213941374, + 10288472882, + 6551501496 + ], + "geometry": [ + { "lat": 40.7121503, "lon": -74.0127214 }, + { "lat": 40.7121685, "lon": -74.0127082 }, + { "lat": 40.7121633, "lon": -74.0126952 }, + { "lat": 40.7121527, "lon": -74.0126688 }, + { "lat": 40.7121339, "lon": -74.0126244 }, + { "lat": 40.7121188, "lon": -74.0126353 }, + { "lat": 40.7121155, "lon": -74.0126378 }, + { "lat": 40.7121341, "lon": -74.0126832 }, + { "lat": 40.7121450, "lon": -74.0127088 }, + { "lat": 40.7121503, "lon": -74.0127214 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619380, + "bounds": { + "minlat": 40.7119008, + "minlon": -74.0123842, + "maxlat": 40.7120276, + "maxlon": -74.0121190 + }, + "nodes": [ + 6551502296, + 6551501495, + 10285341132, + 7133507078, + 6551501492, + 6551501499, + 7133507077, + 10285341146, + 6551502296 + ], + "geometry": [ + { "lat": 40.7120091, "lon": -74.0123842 }, + { "lat": 40.7120276, "lon": -74.0123706 }, + { "lat": 40.7119327, "lon": -74.0121444 }, + { "lat": 40.7119255, "lon": -74.0121274 }, + { "lat": 40.7119220, "lon": -74.0121190 }, + { "lat": 40.7119008, "lon": -74.0121269 }, + { "lat": 40.7119042, "lon": -74.0121350 }, + { "lat": 40.7119115, "lon": -74.0121523 }, + { "lat": 40.7120091, "lon": -74.0123842 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619381, + "bounds": { + "minlat": 40.7118585, + "minlon": -74.0127487, + "maxlat": 40.7121503, + "maxlon": -74.0121269 + }, + "nodes": [ + 6551501504, + 6551501496, + 10288472882, + 8213941374, + 6551501494, + 6551502278, + 6551502293, + 6551502296, + 10285341146, + 7133507077, + 6551501499, + 6551501501, + 6551501505, + 6551501502, + 7133507074, + 10285341147, + 6551501503, + 6551501500, + 6551502330, + 6551502327, + 6551501507, + 8213941376, + 10288472883, + 6551501506, + 6551501504 + ], + "geometry": [ + { "lat": 40.7121303, "lon": -74.0127360 }, + { "lat": 40.7121503, "lon": -74.0127214 }, + { "lat": 40.7121450, "lon": -74.0127088 }, + { "lat": 40.7121341, "lon": -74.0126832 }, + { "lat": 40.7121155, "lon": -74.0126378 }, + { "lat": 40.7120857, "lon": -74.0125675 }, + { "lat": 40.7120411, "lon": -74.0124612 }, + { "lat": 40.7120091, "lon": -74.0123842 }, + { "lat": 40.7119115, "lon": -74.0121523 }, + { "lat": 40.7119042, "lon": -74.0121350 }, + { "lat": 40.7119008, "lon": -74.0121269 }, + { "lat": 40.7118812, "lon": -74.0121342 }, + { "lat": 40.7118781, "lon": -74.0121351 }, + { "lat": 40.7118585, "lon": -74.0121426 }, + { "lat": 40.7118621, "lon": -74.0121511 }, + { "lat": 40.7118692, "lon": -74.0121680 }, + { "lat": 40.7118921, "lon": -74.0122225 }, + { "lat": 40.7119400, "lon": -74.0123366 }, + { "lat": 40.7119995, "lon": -74.0124785 }, + { "lat": 40.7120318, "lon": -74.0125554 }, + { "lat": 40.7120778, "lon": -74.0126651 }, + { "lat": 40.7120974, "lon": -74.0127117 }, + { "lat": 40.7121078, "lon": -74.0127366 }, + { "lat": 40.7121129, "lon": -74.0127487 }, + { "lat": 40.7121303, "lon": -74.0127360 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619383, + "bounds": { + "minlat": 40.7119212, + "minlon": -74.0124922, + "maxlat": 40.7119995, + "maxlon": -74.0123366 + }, + "nodes": [ + 6551502330, + 6551502313, + 6551502314, + 6551501511, + 6551501500, + 6551502330 + ], + "geometry": [ + { "lat": 40.7119995, "lon": -74.0124785 }, + { "lat": 40.7119843, "lon": -74.0124896 }, + { "lat": 40.7119807, "lon": -74.0124922 }, + { "lat": 40.7119212, "lon": -74.0123503 }, + { "lat": 40.7119400, "lon": -74.0123366 }, + { "lat": 40.7119995, "lon": -74.0124785 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619384, + "bounds": { + "minlat": 40.7118373, + "minlon": -74.0122362, + "maxlat": 40.7118921, + "maxlon": -74.0121426 + }, + "nodes": [ + 6551501508, + 6551501503, + 10285341147, + 7133507074, + 6551501502, + 6551501509, + 7133507073, + 10285341141, + 6551501508 + ], + "geometry": [ + { "lat": 40.7118733, "lon": -74.0122362 }, + { "lat": 40.7118921, "lon": -74.0122225 }, + { "lat": 40.7118692, "lon": -74.0121680 }, + { "lat": 40.7118621, "lon": -74.0121511 }, + { "lat": 40.7118585, "lon": -74.0121426 }, + { "lat": 40.7118373, "lon": -74.0121505 }, + { "lat": 40.7118409, "lon": -74.0121591 }, + { "lat": 40.7118480, "lon": -74.0121759 }, + { "lat": 40.7118733, "lon": -74.0122362 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619385, + "bounds": { + "minlat": 40.7120591, + "minlon": -74.0127624, + "maxlat": 40.7121129, + "maxlon": -74.0126651 + }, + "nodes": [ + 6551501513, + 6551501506, + 10288472883, + 8213941376, + 6551501507, + 6551501510, + 8213941377, + 10288472890, + 6551501513 + ], + "geometry": [ + { "lat": 40.7120941, "lon": -74.0127624 }, + { "lat": 40.7121129, "lon": -74.0127487 }, + { "lat": 40.7121078, "lon": -74.0127366 }, + { "lat": 40.7120974, "lon": -74.0127117 }, + { "lat": 40.7120778, "lon": -74.0126651 }, + { "lat": 40.7120591, "lon": -74.0126788 }, + { "lat": 40.7120789, "lon": -74.0127261 }, + { "lat": 40.7120891, "lon": -74.0127505 }, + { "lat": 40.7120941, "lon": -74.0127624 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619387, + "bounds": { + "minlat": 40.7118093, + "minlon": -74.0127451, + "maxlat": 40.7120544, + "maxlon": -74.0121598 + }, + "nodes": [ + 8213941378, + 10285341143, + 7133507072, + 6551501512, + 6551501517, + 7133507071, + 10285341142, + 8213941378 + ], + "geometry": [ + { "lat": 40.7120544, "lon": -74.0127451 }, + { "lat": 40.7118229, "lon": -74.0121853 }, + { "lat": 40.7118160, "lon": -74.0121685 }, + { "lat": 40.7118123, "lon": -74.0121598 }, + { "lat": 40.7118093, "lon": -74.0121609 }, + { "lat": 40.7118130, "lon": -74.0121697 }, + { "lat": 40.7118200, "lon": -74.0121863 }, + { "lat": 40.7120544, "lon": -74.0127451 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619388, + "bounds": { + "minlat": 40.7118123, + "minlon": -74.0127805, + "maxlat": 40.7120941, + "maxlon": -74.0121505 + }, + "nodes": [ + 6551501514, + 6551501513, + 10288472890, + 8213941377, + 6551501510, + 6551502311, + 6551502314, + 6551501511, + 6551501508, + 10285341141, + 7133507073, + 6551501509, + 6551501512, + 7133507072, + 10285341143, + 8213941378, + 10288472891, + 6551501514 + ], + "geometry": [ + { "lat": 40.7120693, "lon": -74.0127805 }, + { "lat": 40.7120941, "lon": -74.0127624 }, + { "lat": 40.7120891, "lon": -74.0127505 }, + { "lat": 40.7120789, "lon": -74.0127261 }, + { "lat": 40.7120591, "lon": -74.0126788 }, + { "lat": 40.7120130, "lon": -74.0125691 }, + { "lat": 40.7119807, "lon": -74.0124922 }, + { "lat": 40.7119212, "lon": -74.0123503 }, + { "lat": 40.7118733, "lon": -74.0122362 }, + { "lat": 40.7118480, "lon": -74.0121759 }, + { "lat": 40.7118409, "lon": -74.0121591 }, + { "lat": 40.7118373, "lon": -74.0121505 }, + { "lat": 40.7118123, "lon": -74.0121598 }, + { "lat": 40.7118160, "lon": -74.0121685 }, + { "lat": 40.7118229, "lon": -74.0121853 }, + { "lat": 40.7120544, "lon": -74.0127451 }, + { "lat": 40.7120645, "lon": -74.0127690 }, + { "lat": 40.7120693, "lon": -74.0127805 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619389, + "bounds": { + "minlat": 40.7117630, + "minlon": -74.0123238, + "maxlat": 40.7118429, + "maxlon": -74.0121702 + }, + "nodes": [ + 6551501520, + 6551501519, + 10285341145, + 7133507070, + 6551501516, + 6551501523, + 7133507069, + 10285341144, + 6551501520 + ], + "geometry": [ + { "lat": 40.7118241, "lon": -74.0123238 }, + { "lat": 40.7118429, "lon": -74.0123101 }, + { "lat": 40.7117949, "lon": -74.0121956 }, + { "lat": 40.7117879, "lon": -74.0121790 }, + { "lat": 40.7117842, "lon": -74.0121702 }, + { "lat": 40.7117630, "lon": -74.0121781 }, + { "lat": 40.7117668, "lon": -74.0121871 }, + { "lat": 40.7117737, "lon": -74.0122035 }, + { "lat": 40.7118241, "lon": -74.0123238 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619390, + "bounds": { + "minlat": 40.7117842, + "minlon": -74.0127967, + "maxlat": 40.7120693, + "maxlon": -74.0121609 + }, + "nodes": [ + 6551501516, + 6551501517, + 7133507071, + 10285341142, + 8213941378, + 10288472891, + 6551501514, + 6551501518, + 10288472886, + 8213941379, + 6551502373, + 6551502376, + 6551502337, + 6551502340, + 6551501519, + 10285341145, + 7133507070, + 6551501516 + ], + "geometry": [ + { "lat": 40.7117842, "lon": -74.0121702 }, + { "lat": 40.7118093, "lon": -74.0121609 }, + { "lat": 40.7118130, "lon": -74.0121697 }, + { "lat": 40.7118200, "lon": -74.0121863 }, + { "lat": 40.7120544, "lon": -74.0127451 }, + { "lat": 40.7120645, "lon": -74.0127690 }, + { "lat": 40.7120693, "lon": -74.0127805 }, + { "lat": 40.7120472, "lon": -74.0127967 }, + { "lat": 40.7120424, "lon": -74.0127854 }, + { "lat": 40.7120326, "lon": -74.0127621 }, + { "lat": 40.7120183, "lon": -74.0127280 }, + { "lat": 40.7119841, "lon": -74.0126466 }, + { "lat": 40.7119227, "lon": -74.0125002 }, + { "lat": 40.7119122, "lon": -74.0124751 }, + { "lat": 40.7118429, "lon": -74.0123101 }, + { "lat": 40.7117949, "lon": -74.0121956 }, + { "lat": 40.7117879, "lon": -74.0121790 }, + { "lat": 40.7117842, "lon": -74.0121702 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619391, + "bounds": { + "minlat": 40.7119995, + "minlon": -74.0128104, + "maxlat": 40.7120472, + "maxlon": -74.0127280 + }, + "nodes": [ + 6551501521, + 6551501518, + 10288472886, + 8213941379, + 6551502373, + 6551502357, + 8213941380, + 10288472887, + 6551501521 + ], + "geometry": [ + { "lat": 40.7120284, "lon": -74.0128104 }, + { "lat": 40.7120472, "lon": -74.0127967 }, + { "lat": 40.7120424, "lon": -74.0127854 }, + { "lat": 40.7120326, "lon": -74.0127621 }, + { "lat": 40.7120183, "lon": -74.0127280 }, + { "lat": 40.7119995, "lon": -74.0127417 }, + { "lat": 40.7120141, "lon": -74.0127764 }, + { "lat": 40.7120238, "lon": -74.0127994 }, + { "lat": 40.7120284, "lon": -74.0128104 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619392, + "bounds": { + "minlat": 40.7119039, + "minlon": -74.0126603, + "maxlat": 40.7119841, + "maxlon": -74.0125002 + }, + "nodes": [ + 6551502360, + 6551502359, + 6551502376, + 6551502337, + 6551502338, + 6551502329, + 6551502360 + ], + "geometry": [ + { "lat": 40.7119654, "lon": -74.0126603 }, + { "lat": 40.7119690, "lon": -74.0126576 }, + { "lat": 40.7119841, "lon": -74.0126466 }, + { "lat": 40.7119227, "lon": -74.0125002 }, + { "lat": 40.7119075, "lon": -74.0125113 }, + { "lat": 40.7119039, "lon": -74.0125139 }, + { "lat": 40.7119654, "lon": -74.0126603 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619393, + "bounds": { + "minlat": 40.7117352, + "minlon": -74.0127954, + "maxlat": 40.7119897, + "maxlon": -74.0121874 + }, + "nodes": [ + 6551501524, + 6551501525, + 7133507068, + 10285341138, + 8213941381, + 10285341137, + 7133507067, + 6551501524 + ], + "geometry": [ + { "lat": 40.7117352, "lon": -74.0121884 }, + { "lat": 40.7117380, "lon": -74.0121874 }, + { "lat": 40.7117417, "lon": -74.0121963 }, + { "lat": 40.7117485, "lon": -74.0122128 }, + { "lat": 40.7119897, "lon": -74.0127954 }, + { "lat": 40.7117458, "lon": -74.0122139 }, + { "lat": 40.7117389, "lon": -74.0121973 }, + { "lat": 40.7117352, "lon": -74.0121884 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619394, + "bounds": { + "minlat": 40.7117380, + "minlon": -74.0128282, + "maxlat": 40.7120284, + "maxlon": -74.0121781 + }, + "nodes": [ + 6551501525, + 6551501523, + 7133507069, + 10285341144, + 6551501520, + 6551502332, + 6551502329, + 6551502360, + 6551502357, + 8213941380, + 10288472887, + 6551501521, + 6551501522, + 10288472888, + 8213941381, + 10285341138, + 7133507068, + 6551501525 + ], + "geometry": [ + { "lat": 40.7117380, "lon": -74.0121874 }, + { "lat": 40.7117630, "lon": -74.0121781 }, + { "lat": 40.7117668, "lon": -74.0121871 }, + { "lat": 40.7117737, "lon": -74.0122035 }, + { "lat": 40.7118241, "lon": -74.0123238 }, + { "lat": 40.7118934, "lon": -74.0124888 }, + { "lat": 40.7119039, "lon": -74.0125139 }, + { "lat": 40.7119654, "lon": -74.0126603 }, + { "lat": 40.7119995, "lon": -74.0127417 }, + { "lat": 40.7120141, "lon": -74.0127764 }, + { "lat": 40.7120238, "lon": -74.0127994 }, + { "lat": 40.7120284, "lon": -74.0128104 }, + { "lat": 40.7120036, "lon": -74.0128282 }, + { "lat": 40.7119992, "lon": -74.0128178 }, + { "lat": 40.7119897, "lon": -74.0127954 }, + { "lat": 40.7117485, "lon": -74.0122128 }, + { "lat": 40.7117417, "lon": -74.0121963 }, + { "lat": 40.7117380, "lon": -74.0121874 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619395, + "bounds": { + "minlat": 40.7118010, + "minlon": -74.0127081, + "maxlat": 40.7119099, + "maxlon": -74.0124798 + }, + "nodes": [ + 6551501534, + 6551501527, + 6551502355, + 6551502356, + 6551502339, + 6551501534 + ], + "geometry": [ + { "lat": 40.7118911, "lon": -74.0127081 }, + { "lat": 40.7119099, "lon": -74.0126944 }, + { "lat": 40.7118198, "lon": -74.0124798 }, + { "lat": 40.7118045, "lon": -74.0124910 }, + { "lat": 40.7118010, "lon": -74.0124936 }, + { "lat": 40.7118911, "lon": -74.0127081 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619396, + "bounds": { + "minlat": 40.7116814, + "minlon": -74.0122958, + "maxlat": 40.7117368, + "maxlon": -74.0122007 + }, + "nodes": [ + 6551501535, + 6551501526, + 10285341140, + 7133507066, + 6551501529, + 6551501532, + 7133507065, + 10285341139, + 6551501535 + ], + "geometry": [ + { "lat": 40.7117180, "lon": -74.0122958 }, + { "lat": 40.7117368, "lon": -74.0122821 }, + { "lat": 40.7117133, "lon": -74.0122260 }, + { "lat": 40.7117065, "lon": -74.0122098 }, + { "lat": 40.7117020, "lon": -74.0122007 }, + { "lat": 40.7116814, "lon": -74.0122084 }, + { "lat": 40.7116852, "lon": -74.0122175 }, + { "lat": 40.7116921, "lon": -74.0122339 }, + { "lat": 40.7117180, "lon": -74.0122958 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619397, + "bounds": { + "minlat": 40.7119379, + "minlon": -74.0128631, + "maxlat": 40.7119749, + "maxlon": -74.0128061 + }, + "nodes": [ + 6551501536, + 6551501533, + 10288472889, + 8213941382, + 6551501530, + 6551501537, + 8213941383, + 10288472895, + 6551501536 + ], + "geometry": [ + { "lat": 40.7119562, "lon": -74.0128631 }, + { "lat": 40.7119749, "lon": -74.0128495 }, + { "lat": 40.7119705, "lon": -74.0128391 }, + { "lat": 40.7119614, "lon": -74.0128174 }, + { "lat": 40.7119567, "lon": -74.0128061 }, + { "lat": 40.7119379, "lon": -74.0128198 }, + { "lat": 40.7119429, "lon": -74.0128318 }, + { "lat": 40.7119519, "lon": -74.0128531 }, + { "lat": 40.7119562, "lon": -74.0128631 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619398, + "bounds": { + "minlat": 40.7117020, + "minlon": -74.0128495, + "maxlat": 40.7120036, + "maxlon": -74.0121884 + }, + "nodes": [ + 6551501533, + 6551501522, + 10288472888, + 8213941381, + 10285341137, + 7133507067, + 6551501524, + 6551501529, + 7133507066, + 10285341140, + 6551501526, + 6551502358, + 6551502355, + 6551501527, + 6551501530, + 8213941382, + 10288472889, + 6551501533 + ], + "geometry": [ + { "lat": 40.7119749, "lon": -74.0128495 }, + { "lat": 40.7120036, "lon": -74.0128282 }, + { "lat": 40.7119992, "lon": -74.0128178 }, + { "lat": 40.7119897, "lon": -74.0127954 }, + { "lat": 40.7117458, "lon": -74.0122139 }, + { "lat": 40.7117389, "lon": -74.0121973 }, + { "lat": 40.7117352, "lon": -74.0121884 }, + { "lat": 40.7117020, "lon": -74.0122007 }, + { "lat": 40.7117065, "lon": -74.0122098 }, + { "lat": 40.7117133, "lon": -74.0122260 }, + { "lat": 40.7117368, "lon": -74.0122821 }, + { "lat": 40.7117856, "lon": -74.0123984 }, + { "lat": 40.7118198, "lon": -74.0124798 }, + { "lat": 40.7119099, "lon": -74.0126944 }, + { "lat": 40.7119567, "lon": -74.0128061 }, + { "lat": 40.7119614, "lon": -74.0128174 }, + { "lat": 40.7119705, "lon": -74.0128391 }, + { "lat": 40.7119749, "lon": -74.0128495 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619399, + "bounds": { + "minlat": 40.7116225, + "minlon": -74.0129012, + "maxlat": 40.7119562, + "maxlon": -74.0122084 + }, + "nodes": [ + 6551501539, + 6551501536, + 10288472895, + 8213941383, + 6551501537, + 6551501534, + 6551502339, + 6551502342, + 6551501535, + 10285341139, + 7133507065, + 6551501532, + 6551501538, + 6551501540, + 6551501543, + 7133507062, + 10285341158, + 10288458873, + 6551502386, + 6551502383, + 6551501542, + 10288472893, + 6551501545, + 6551501539 + ], + "geometry": [ + { "lat": 40.7119314, "lon": -74.0128813 }, + { "lat": 40.7119562, "lon": -74.0128631 }, + { "lat": 40.7119519, "lon": -74.0128531 }, + { "lat": 40.7119429, "lon": -74.0128318 }, + { "lat": 40.7119379, "lon": -74.0128198 }, + { "lat": 40.7118911, "lon": -74.0127081 }, + { "lat": 40.7118010, "lon": -74.0124936 }, + { "lat": 40.7117669, "lon": -74.0124122 }, + { "lat": 40.7117180, "lon": -74.0122958 }, + { "lat": 40.7116921, "lon": -74.0122339 }, + { "lat": 40.7116852, "lon": -74.0122175 }, + { "lat": 40.7116814, "lon": -74.0122084 }, + { "lat": 40.7116563, "lon": -74.0122177 }, + { "lat": 40.7116534, "lon": -74.0122188 }, + { "lat": 40.7116225, "lon": -74.0122303 }, + { "lat": 40.7116262, "lon": -74.0122391 }, + { "lat": 40.7116332, "lon": -74.0122557 }, + { "lat": 40.7116839, "lon": -74.0123764 }, + { "lat": 40.7118438, "lon": -74.0127575 }, + { "lat": 40.7118544, "lon": -74.0127826 }, + { "lat": 40.7118917, "lon": -74.0128716 }, + { "lat": 40.7119001, "lon": -74.0128917 }, + { "lat": 40.7119041, "lon": -74.0129012 }, + { "lat": 40.7119314, "lon": -74.0128813 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619401, + "bounds": { + "minlat": 40.7116013, + "minlon": -74.0127712, + "maxlat": 40.7118438, + "maxlon": -74.0122303 + }, + "nodes": [ + 6551502378, + 6551502386, + 10288458873, + 10285341158, + 7133507062, + 6551501543, + 6551501547, + 7133507061, + 10285341159, + 10288458886, + 10288458874, + 6551502378 + ], + "geometry": [ + { "lat": 40.7118250, "lon": -74.0127712 }, + { "lat": 40.7118438, "lon": -74.0127575 }, + { "lat": 40.7116839, "lon": -74.0123764 }, + { "lat": 40.7116332, "lon": -74.0122557 }, + { "lat": 40.7116262, "lon": -74.0122391 }, + { "lat": 40.7116225, "lon": -74.0122303 }, + { "lat": 40.7116013, "lon": -74.0122382 }, + { "lat": 40.7116052, "lon": -74.0122474 }, + { "lat": 40.7116120, "lon": -74.0122636 }, + { "lat": 40.7116786, "lon": -74.0124224 }, + { "lat": 40.7116827, "lon": -74.0124321 }, + { "lat": 40.7118250, "lon": -74.0127712 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619403, + "bounds": { + "minlat": 40.7115549, + "minlon": -74.0129449, + "maxlat": 40.7118853, + "maxlon": -74.0122382 + }, + "nodes": [ + 6551501552, + 6551501550, + 6551501549, + 10288472894, + 6551501546, + 6551502375, + 6551502378, + 10288458874, + 10288458886, + 10285341159, + 7133507061, + 6551501547, + 6551501544, + 6551501551, + 7120288153, + 6551501553, + 7133507057, + 10285341160, + 10288458884, + 10288458875, + 8213941386, + 10288472892, + 6551501552 + ], + "geometry": [ + { "lat": 40.7118443, "lon": -74.0129449 }, + { "lat": 40.7118653, "lon": -74.0129295 }, + { "lat": 40.7118853, "lon": -74.0129149 }, + { "lat": 40.7118815, "lon": -74.0129057 }, + { "lat": 40.7118732, "lon": -74.0128860 }, + { "lat": 40.7118356, "lon": -74.0127963 }, + { "lat": 40.7118250, "lon": -74.0127712 }, + { "lat": 40.7116827, "lon": -74.0124321 }, + { "lat": 40.7116786, "lon": -74.0124224 }, + { "lat": 40.7116120, "lon": -74.0122636 }, + { "lat": 40.7116052, "lon": -74.0122474 }, + { "lat": 40.7116013, "lon": -74.0122382 }, + { "lat": 40.7115816, "lon": -74.0122455 }, + { "lat": 40.7115787, "lon": -74.0122466 }, + { "lat": 40.7115705, "lon": -74.0122496 }, + { "lat": 40.7115549, "lon": -74.0122554 }, + { "lat": 40.7115589, "lon": -74.0122650 }, + { "lat": 40.7115656, "lon": -74.0122809 }, + { "lat": 40.7116325, "lon": -74.0124388 }, + { "lat": 40.7116802, "lon": -74.0125538 }, + { "lat": 40.7118328, "lon": -74.0129174 }, + { "lat": 40.7118407, "lon": -74.0129362 }, + { "lat": 40.7118443, "lon": -74.0129449 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619404, + "bounds": { + "minlat": 40.7118732, + "minlon": -74.0129149, + "maxlat": 40.7119041, + "maxlon": -74.0128716 + }, + "nodes": [ + 6551501549, + 6551501545, + 10288472893, + 6551501542, + 6551501546, + 10288472894, + 6551501549 + ], + "geometry": [ + { "lat": 40.7118853, "lon": -74.0129149 }, + { "lat": 40.7119041, "lon": -74.0129012 }, + { "lat": 40.7119001, "lon": -74.0128917 }, + { "lat": 40.7118917, "lon": -74.0128716 }, + { "lat": 40.7118732, "lon": -74.0128860 }, + { "lat": 40.7118815, "lon": -74.0129057 }, + { "lat": 40.7118853, "lon": -74.0129149 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619407, + "bounds": { + "minlat": 40.7115977, + "minlon": -74.0137781, + "maxlat": 40.7120609, + "maxlon": -74.0126573 + }, + "nodes": [ + 6551501560, + 6551501555, + 10288473056, + 6551502973, + 6551502974, + 10288472897, + 8213941392, + 10288458878, + 6551502960, + 2824641692, + 10288458881, + 8213941393, + 10288472896, + 10288473057, + 6551501560 + ], + "geometry": [ + { "lat": 40.7120421, "lon": -74.0137781 }, + { "lat": 40.7120609, "lon": -74.0137644 }, + { "lat": 40.7120426, "lon": -74.0137209 }, + { "lat": 40.7120341, "lon": -74.0137007 }, + { "lat": 40.7117468, "lon": -74.0130161 }, + { "lat": 40.7117436, "lon": -74.0130086 }, + { "lat": 40.7117367, "lon": -74.0129920 }, + { "lat": 40.7116759, "lon": -74.0128457 }, + { "lat": 40.7115977, "lon": -74.0126573 }, + { "lat": 40.7115978, "lon": -74.0127214 }, + { "lat": 40.7116853, "lon": -74.0129285 }, + { "lat": 40.7117182, "lon": -74.0130064 }, + { "lat": 40.7117250, "lon": -74.0130226 }, + { "lat": 40.7120239, "lon": -74.0137348 }, + { "lat": 40.7120421, "lon": -74.0137781 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619408, + "bounds": { + "minlat": 40.7115336, + "minlon": -74.0129586, + "maxlat": 40.7118443, + "maxlon": -74.0122554 + }, + "nodes": [ + 6551502951, + 6551501552, + 10288472892, + 8213941386, + 10288458875, + 12999340039, + 10285341160, + 7133507057, + 6551501553, + 6551502948, + 7133507056, + 10285341157, + 10285341199, + 10285341200, + 10285341206, + 10285341201, + 10288458885, + 10288458876, + 8213941387, + 10288472900, + 6551502951 + ], + "geometry": [ + { "lat": 40.7118255, "lon": -74.0129586 }, + { "lat": 40.7118443, "lon": -74.0129449 }, + { "lat": 40.7118407, "lon": -74.0129362 }, + { "lat": 40.7118328, "lon": -74.0129174 }, + { "lat": 40.7116802, "lon": -74.0125538 }, + { "lat": 40.7116325, "lon": -74.0124388 }, + { "lat": 40.7115656, "lon": -74.0122809 }, + { "lat": 40.7115589, "lon": -74.0122650 }, + { "lat": 40.7115549, "lon": -74.0122554 }, + { "lat": 40.7115336, "lon": -74.0122633 }, + { "lat": 40.7115377, "lon": -74.0122731 }, + { "lat": 40.7115443, "lon": -74.0122888 }, + { "lat": 40.7115724, "lon": -74.0123534 }, + { "lat": 40.7115856, "lon": -74.0123483 }, + { "lat": 40.7115866, "lon": -74.0123677 }, + { "lat": 40.7115876, "lon": -74.0123890 }, + { "lat": 40.7116095, "lon": -74.0124403 }, + { "lat": 40.7116790, "lon": -74.0126080 }, + { "lat": 40.7118142, "lon": -74.0129318 }, + { "lat": 40.7118219, "lon": -74.0129502 }, + { "lat": 40.7118255, "lon": -74.0129586 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619409, + "bounds": { + "minlat": 40.7115978, + "minlon": -74.0140672, + "maxlat": 40.7121615, + "maxlon": -74.0127214 + }, + "nodes": [ + 6551501562, + 7133483523, + 6551501559, + 6551501560, + 10288473057, + 10288472896, + 8213941393, + 10288458881, + 2824641692, + 6551501564, + 8213941394, + 10288472898, + 10288473086, + 7133483524, + 6551501556, + 6551501562 + ], + "geometry": [ + { "lat": 40.7121615, "lon": -74.0140627 }, + { "lat": 40.7121417, "lon": -74.0140154 }, + { "lat": 40.7121332, "lon": -74.0139952 }, + { "lat": 40.7120421, "lon": -74.0137781 }, + { "lat": 40.7120239, "lon": -74.0137348 }, + { "lat": 40.7117250, "lon": -74.0130226 }, + { "lat": 40.7117182, "lon": -74.0130064 }, + { "lat": 40.7116853, "lon": -74.0129285 }, + { "lat": 40.7115978, "lon": -74.0127214 }, + { "lat": 40.7115979, "lon": -74.0127711 }, + { "lat": 40.7117023, "lon": -74.0130188 }, + { "lat": 40.7117089, "lon": -74.0130346 }, + { "lat": 40.7120073, "lon": -74.0137459 }, + { "lat": 40.7121223, "lon": -74.0140200 }, + { "lat": 40.7121421, "lon": -74.0140672 }, + { "lat": 40.7121615, "lon": -74.0140627 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619410, + "bounds": { + "minlat": 40.7121332, + "minlon": -74.0140627, + "maxlat": 40.7121839, + "maxlon": -74.0139815 + }, + "nodes": [ + 6551501562, + 6551501557, + 7133483522, + 6551501554, + 6551501559, + 7133483523, + 6551501562 + ], + "geometry": [ + { "lat": 40.7121615, "lon": -74.0140627 }, + { "lat": 40.7121839, "lon": -74.0140576 }, + { "lat": 40.7121641, "lon": -74.0140102 }, + { "lat": 40.7121520, "lon": -74.0139815 }, + { "lat": 40.7121332, "lon": -74.0139952 }, + { "lat": 40.7121417, "lon": -74.0140154 }, + { "lat": 40.7121615, "lon": -74.0140627 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619411, + "bounds": { + "minlat": 40.7120463, + "minlon": -74.0140769, + "maxlat": 40.7121225, + "maxlon": -74.0139318 + }, + "nodes": [ + 6551502469, + 6551502481, + 7133483525, + 6551501565, + 6551501566, + 7133483526, + 6551502469 + ], + "geometry": [ + { "lat": 40.7120463, "lon": -74.0139455 }, + { "lat": 40.7120651, "lon": -74.0139318 }, + { "lat": 40.7121039, "lon": -74.0140243 }, + { "lat": 40.7121225, "lon": -74.0140715 }, + { "lat": 40.7121006, "lon": -74.0140769 }, + { "lat": 40.7120810, "lon": -74.0140293 }, + { "lat": 40.7120463, "lon": -74.0139455 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619412, + "bounds": { + "minlat": 40.7115979, + "minlon": -74.0140715, + "maxlat": 40.7121421, + "maxlon": -74.0127711 + }, + "nodes": [ + 6551501565, + 6551501556, + 7133483524, + 10288473086, + 10288472898, + 8213941394, + 6551501564, + 6551501567, + 8213941395, + 10288472899, + 6551501570, + 6551501561, + 6551502528, + 6551502502, + 6551502499, + 10288473085, + 6551501568, + 6551502484, + 6551502481, + 7133483525, + 6551501565 + ], + "geometry": [ + { "lat": 40.7121225, "lon": -74.0140715 }, + { "lat": 40.7121421, "lon": -74.0140672 }, + { "lat": 40.7121223, "lon": -74.0140200 }, + { "lat": 40.7120073, "lon": -74.0137459 }, + { "lat": 40.7117089, "lon": -74.0130346 }, + { "lat": 40.7117023, "lon": -74.0130188 }, + { "lat": 40.7115979, "lon": -74.0127711 }, + { "lat": 40.7116118, "lon": -74.0128526 }, + { "lat": 40.7116869, "lon": -74.0130307 }, + { "lat": 40.7116934, "lon": -74.0130462 }, + { "lat": 40.7117394, "lon": -74.0131558 }, + { "lat": 40.7118346, "lon": -74.0133826 }, + { "lat": 40.7118779, "lon": -74.0134854 }, + { "lat": 40.7119204, "lon": -74.0135870 }, + { "lat": 40.7119546, "lon": -74.0136684 }, + { "lat": 40.7119886, "lon": -74.0137494 }, + { "lat": 40.7119911, "lon": -74.0137553 }, + { "lat": 40.7120392, "lon": -74.0138699 }, + { "lat": 40.7120651, "lon": -74.0139318 }, + { "lat": 40.7121039, "lon": -74.0140243 }, + { "lat": 40.7121225, "lon": -74.0140715 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619413, + "bounds": { + "minlat": 40.7116118, + "minlon": -74.0131695, + "maxlat": 40.7117394, + "maxlon": -74.0128526 + }, + "nodes": [ + 6551501571, + 6551501570, + 10288472899, + 8213941395, + 6551501567, + 6551501573, + 8213941396, + 10288472909, + 6551501571 + ], + "geometry": [ + { "lat": 40.7117207, "lon": -74.0131695 }, + { "lat": 40.7117394, "lon": -74.0131558 }, + { "lat": 40.7116934, "lon": -74.0130462 }, + { "lat": 40.7116869, "lon": -74.0130307 }, + { "lat": 40.7116118, "lon": -74.0128526 }, + { "lat": 40.7116290, "lon": -74.0129533 }, + { "lat": 40.7116684, "lon": -74.0130451 }, + { "lat": 40.7116747, "lon": -74.0130602 }, + { "lat": 40.7117207, "lon": -74.0131695 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619414, + "bounds": { + "minlat": 40.7119358, + "minlon": -74.0137691, + "maxlat": 40.7119911, + "maxlon": -74.0136684 + }, + "nodes": [ + 6551501572, + 6551501568, + 10288473085, + 6551502499, + 6551502500, + 6551502483, + 10288473083, + 6551501572 + ], + "geometry": [ + { "lat": 40.7119723, "lon": -74.0137691 }, + { "lat": 40.7119911, "lon": -74.0137553 }, + { "lat": 40.7119886, "lon": -74.0137494 }, + { "lat": 40.7119546, "lon": -74.0136684 }, + { "lat": 40.7119394, "lon": -74.0136795 }, + { "lat": 40.7119358, "lon": -74.0136822 }, + { "lat": 40.7119579, "lon": -74.0137349 }, + { "lat": 40.7119723, "lon": -74.0137691 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619415, + "bounds": { + "minlat": 40.7116099, + "minlon": -74.0132525, + "maxlat": 40.7117077, + "maxlon": -74.0130466 + }, + "nodes": [ + 6551502440, + 6551502456, + 10288472905, + 8213941398, + 6551501623, + 6551501617, + 8213941399, + 10288472904, + 6551502440 + ], + "geometry": [ + { "lat": 40.7116889, "lon": -74.0132525 }, + { "lat": 40.7117077, "lon": -74.0132388 }, + { "lat": 40.7116432, "lon": -74.0130837 }, + { "lat": 40.7116372, "lon": -74.0130694 }, + { "lat": 40.7116274, "lon": -74.0130466 }, + { "lat": 40.7116099, "lon": -74.0130652 }, + { "lat": 40.7116182, "lon": -74.0130841 }, + { "lat": 40.7116240, "lon": -74.0130980 }, + { "lat": 40.7116889, "lon": -74.0132525 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619416, + "bounds": { + "minlat": 40.7116290, + "minlon": -74.0140813, + "maxlat": 40.7121006, + "maxlon": -74.0129533 + }, + "nodes": [ + 2824641696, + 6551501573, + 8213941396, + 10288472909, + 6551501571, + 6551502504, + 6551502501, + 6551502486, + 6551502483, + 10288473083, + 6551501572, + 6551502472, + 6551502469, + 7133483526, + 6551501566, + 6551501625, + 7133483527, + 10288473081, + 10288472910, + 8213941397, + 2824641696 + ], + "geometry": [ + { "lat": 40.7116422, "lon": -74.0130307 }, + { "lat": 40.7116290, "lon": -74.0129533 }, + { "lat": 40.7116684, "lon": -74.0130451 }, + { "lat": 40.7116747, "lon": -74.0130602 }, + { "lat": 40.7117207, "lon": -74.0131695 }, + { "lat": 40.7118157, "lon": -74.0133959 }, + { "lat": 40.7118591, "lon": -74.0134991 }, + { "lat": 40.7119017, "lon": -74.0136008 }, + { "lat": 40.7119358, "lon": -74.0136822 }, + { "lat": 40.7119579, "lon": -74.0137349 }, + { "lat": 40.7119723, "lon": -74.0137691 }, + { "lat": 40.7120204, "lon": -74.0138837 }, + { "lat": 40.7120463, "lon": -74.0139455 }, + { "lat": 40.7120810, "lon": -74.0140293 }, + { "lat": 40.7121006, "lon": -74.0140769 }, + { "lat": 40.7120820, "lon": -74.0140813 }, + { "lat": 40.7120618, "lon": -74.0140331 }, + { "lat": 40.7119252, "lon": -74.0137072 }, + { "lat": 40.7116590, "lon": -74.0130719 }, + { "lat": 40.7116529, "lon": -74.0130572 }, + { "lat": 40.7116422, "lon": -74.0130307 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619417, + "bounds": { + "minlat": 40.7111022, + "minlon": -74.0138882, + "maxlat": 40.7117317, + "maxlon": -74.0124177 + }, + "nodes": [ + 6551501576, + 6551501579, + 10288473011, + 10288472912, + 8213941408, + 10285341161, + 7133507031, + 6551501578, + 6551501574, + 7133507030, + 10285341177, + 10288473030, + 8213941409, + 10288472911, + 6551502629, + 6551502630, + 6551501577, + 10288472996, + 6551501576 + ], + "geometry": [ + { "lat": 40.7117171, "lon": -74.0138882 }, + { "lat": 40.7117317, "lon": -74.0138839 }, + { "lat": 40.7116615, "lon": -74.0137167 }, + { "lat": 40.7114549, "lon": -74.0132244 }, + { "lat": 40.7114507, "lon": -74.0132143 }, + { "lat": 40.7111273, "lon": -74.0124438 }, + { "lat": 40.7111199, "lon": -74.0124262 }, + { "lat": 40.7111165, "lon": -74.0124177 }, + { "lat": 40.7111022, "lon": -74.0124228 }, + { "lat": 40.7111057, "lon": -74.0124315 }, + { "lat": 40.7111135, "lon": -74.0124500 }, + { "lat": 40.7111583, "lon": -74.0125568 }, + { "lat": 40.7114382, "lon": -74.0132236 }, + { "lat": 40.7114424, "lon": -74.0132337 }, + { "lat": 40.7114764, "lon": -74.0133146 }, + { "lat": 40.7115188, "lon": -74.0134155 }, + { "lat": 40.7116135, "lon": -74.0136413 }, + { "lat": 40.7116549, "lon": -74.0137399 }, + { "lat": 40.7117171, "lon": -74.0138882 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619418, + "bounds": { + "minlat": 40.7110817, + "minlon": -74.0133283, + "maxlat": 40.7114764, + "maxlon": -74.0124228 + }, + "nodes": [ + 6551501574, + 7133507030, + 10285341177, + 10288473030, + 8213941409, + 10288472911, + 6551502629, + 6551502609, + 10288472877, + 6551502985, + 6551502988, + 10288473029, + 6551502970, + 10285341179, + 10285341220, + 6551501882, + 6551501574 + ], + "geometry": [ + { "lat": 40.7111022, "lon": -74.0124228 }, + { "lat": 40.7111057, "lon": -74.0124315 }, + { "lat": 40.7111135, "lon": -74.0124500 }, + { "lat": 40.7111583, "lon": -74.0125568 }, + { "lat": 40.7114382, "lon": -74.0132236 }, + { "lat": 40.7114424, "lon": -74.0132337 }, + { "lat": 40.7114764, "lon": -74.0133146 }, + { "lat": 40.7114576, "lon": -74.0133283 }, + { "lat": 40.7114234, "lon": -74.0132479 }, + { "lat": 40.7114199, "lon": -74.0132383 }, + { "lat": 40.7113969, "lon": -74.0131838 }, + { "lat": 40.7111392, "lon": -74.0125707 }, + { "lat": 40.7111340, "lon": -74.0125583 }, + { "lat": 40.7110985, "lon": -74.0124713 }, + { "lat": 40.7110949, "lon": -74.0124624 }, + { "lat": 40.7110817, "lon": -74.0124301 }, + { "lat": 40.7111022, "lon": -74.0124228 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619419, + "bounds": { + "minlat": 40.7111165, + "minlon": -74.0138839, + "maxlat": 40.7117352, + "maxlon": -74.0124166 + }, + "nodes": [ + 6551501581, + 10288473010, + 10288472913, + 9788951051, + 10285341244, + 10285341162, + 7133507032, + 6551501580, + 6551501578, + 7133507031, + 10285341161, + 8213941408, + 10288472912, + 10288473011, + 6551501579, + 6551501581 + ], + "geometry": [ + { "lat": 40.7117352, "lon": -74.0138829 }, + { "lat": 40.7116628, "lon": -74.0137110 }, + { "lat": 40.7114572, "lon": -74.0132226 }, + { "lat": 40.7114529, "lon": -74.0132124 }, + { "lat": 40.7112990, "lon": -74.0128454 }, + { "lat": 40.7111302, "lon": -74.0124426 }, + { "lat": 40.7111229, "lon": -74.0124250 }, + { "lat": 40.7111195, "lon": -74.0124166 }, + { "lat": 40.7111165, "lon": -74.0124177 }, + { "lat": 40.7111199, "lon": -74.0124262 }, + { "lat": 40.7111273, "lon": -74.0124438 }, + { "lat": 40.7114507, "lon": -74.0132143 }, + { "lat": 40.7114549, "lon": -74.0132244 }, + { "lat": 40.7116615, "lon": -74.0137167 }, + { "lat": 40.7117317, "lon": -74.0138839 }, + { "lat": 40.7117352, "lon": -74.0138829 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619420, + "bounds": { + "minlat": 40.7115947, + "minlon": -74.0138946, + "maxlat": 40.7117171, + "maxlon": -74.0136413 + }, + "nodes": [ + 6551501576, + 10288472996, + 6551501577, + 6551501758, + 10288473012, + 6551501755, + 6551501576 + ], + "geometry": [ + { "lat": 40.7117171, "lon": -74.0138882 }, + { "lat": 40.7116549, "lon": -74.0137399 }, + { "lat": 40.7116135, "lon": -74.0136413 }, + { "lat": 40.7115947, "lon": -74.0136550 }, + { "lat": 40.7116409, "lon": -74.0137654 }, + { "lat": 40.7116950, "lon": -74.0138946 }, + { "lat": 40.7117171, "lon": -74.0138882 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619421, + "bounds": { + "minlat": 40.7117270, + "minlon": -74.0138791, + "maxlat": 40.7117701, + "maxlon": -74.0138140 + }, + "nodes": [ + 6551502548, + 6551502561, + 6551502564, + 6551501584, + 6551501583, + 6551502548 + ], + "geometry": [ + { "lat": 40.7117270, "lon": -74.0138277 }, + { "lat": 40.7117305, "lon": -74.0138251 }, + { "lat": 40.7117458, "lon": -74.0138140 }, + { "lat": 40.7117701, "lon": -74.0138728 }, + { "lat": 40.7117486, "lon": -74.0138791 }, + { "lat": 40.7117270, "lon": -74.0138277 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619422, + "bounds": { + "minlat": 40.7111195, + "minlon": -74.0138829, + "maxlat": 40.7117486, + "maxlon": -74.0124119 + }, + "nodes": [ + 6551501583, + 6551502548, + 6551502547, + 10288473009, + 6551502566, + 6551502565, + 10288472914, + 8213941407, + 10285341243, + 6551502588, + 6551502587, + 6551502385, + 6551502388, + 10285341163, + 7133507033, + 6551501582, + 6551501580, + 7133507032, + 10285341162, + 10285341244, + 9788951051, + 10288472913, + 10288473010, + 6551501581, + 6551501583 + ], + "geometry": [ + { "lat": 40.7117486, "lon": -74.0138791 }, + { "lat": 40.7117270, "lon": -74.0138277 }, + { "lat": 40.7116929, "lon": -74.0137463 }, + { "lat": 40.7116667, "lon": -74.0136838 }, + { "lat": 40.7115865, "lon": -74.0134930 }, + { "lat": 40.7115441, "lon": -74.0133921 }, + { "lat": 40.7114692, "lon": -74.0132136 }, + { "lat": 40.7114649, "lon": -74.0132033 }, + { "lat": 40.7114376, "lon": -74.0131380 }, + { "lat": 40.7113532, "lon": -74.0129370 }, + { "lat": 40.7113108, "lon": -74.0128360 }, + { "lat": 40.7112400, "lon": -74.0126675 }, + { "lat": 40.7112059, "lon": -74.0125861 }, + { "lat": 40.7111435, "lon": -74.0124376 }, + { "lat": 40.7111362, "lon": -74.0124202 }, + { "lat": 40.7111328, "lon": -74.0124119 }, + { "lat": 40.7111195, "lon": -74.0124166 }, + { "lat": 40.7111229, "lon": -74.0124250 }, + { "lat": 40.7111302, "lon": -74.0124426 }, + { "lat": 40.7112990, "lon": -74.0128454 }, + { "lat": 40.7114529, "lon": -74.0132124 }, + { "lat": 40.7114572, "lon": -74.0132226 }, + { "lat": 40.7116628, "lon": -74.0137110 }, + { "lat": 40.7117352, "lon": -74.0138829 }, + { "lat": 40.7117486, "lon": -74.0138791 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619423, + "bounds": { + "minlat": 40.7114376, + "minlon": -74.0133921, + "maxlat": 40.7115629, + "maxlon": -74.0131243 + }, + "nodes": [ + 10285341243, + 6551502608, + 8213941406, + 10288472915, + 6551502585, + 6551502565, + 10288472914, + 8213941407, + 10285341243 + ], + "geometry": [ + { "lat": 40.7114376, "lon": -74.0131380 }, + { "lat": 40.7114564, "lon": -74.0131243 }, + { "lat": 40.7114834, "lon": -74.0131889 }, + { "lat": 40.7114879, "lon": -74.0131996 }, + { "lat": 40.7115629, "lon": -74.0133783 }, + { "lat": 40.7115441, "lon": -74.0133921 }, + { "lat": 40.7114692, "lon": -74.0132136 }, + { "lat": 40.7114649, "lon": -74.0132033 }, + { "lat": 40.7114376, "lon": -74.0131380 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619424, + "bounds": { + "minlat": 40.7115865, + "minlon": -74.0137463, + "maxlat": 40.7117116, + "maxlon": -74.0134793 + }, + "nodes": [ + 6551502566, + 6551502586, + 10288473008, + 6551502563, + 6551502547, + 10288473009, + 6551502566 + ], + "geometry": [ + { "lat": 40.7115865, "lon": -74.0134930 }, + { "lat": 40.7116053, "lon": -74.0134793 }, + { "lat": 40.7116688, "lon": -74.0136307 }, + { "lat": 40.7117116, "lon": -74.0137326 }, + { "lat": 40.7116929, "lon": -74.0137463 }, + { "lat": 40.7116667, "lon": -74.0136838 }, + { "lat": 40.7115865, "lon": -74.0134930 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619425, + "bounds": { + "minlat": 40.7111328, + "minlon": -74.0125861, + "maxlat": 40.7112247, + "maxlon": -74.0124044 + }, + "nodes": [ + 6551501585, + 7133507034, + 10285341165, + 6551502404, + 6551502388, + 10285341163, + 7133507033, + 6551501582, + 6551501585 + ], + "geometry": [ + { "lat": 40.7111542, "lon": -74.0124044 }, + { "lat": 40.7111574, "lon": -74.0124121 }, + { "lat": 40.7111648, "lon": -74.0124297 }, + { "lat": 40.7112247, "lon": -74.0125723 }, + { "lat": 40.7112059, "lon": -74.0125861 }, + { "lat": 40.7111435, "lon": -74.0124376 }, + { "lat": 40.7111362, "lon": -74.0124202 }, + { "lat": 40.7111328, "lon": -74.0124119 }, + { "lat": 40.7111542, "lon": -74.0124044 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619427, + "bounds": { + "minlat": 40.7111683, + "minlon": -74.0138685, + "maxlat": 40.7117883, + "maxlon": -74.0123980 + }, + "nodes": [ + 6551501588, + 7133507036, + 10285341167, + 9789079789, + 10288473006, + 10288473078, + 6551501589, + 6551501586, + 10288473079, + 10288473007, + 10288472916, + 10285341166, + 7133507035, + 6551501587, + 6551501588 + ], + "geometry": [ + { "lat": 40.7111713, "lon": -74.0123980 }, + { "lat": 40.7111747, "lon": -74.0124060 }, + { "lat": 40.7111818, "lon": -74.0124233 }, + { "lat": 40.7115019, "lon": -74.0131892 }, + { "lat": 40.7116643, "lon": -74.0135738 }, + { "lat": 40.7116848, "lon": -74.0136224 }, + { "lat": 40.7117883, "lon": -74.0138676 }, + { "lat": 40.7117850, "lon": -74.0138685 }, + { "lat": 40.7116817, "lon": -74.0136236 }, + { "lat": 40.7116674, "lon": -74.0135897 }, + { "lat": 40.7114993, "lon": -74.0131911 }, + { "lat": 40.7111789, "lon": -74.0124245 }, + { "lat": 40.7111716, "lon": -74.0124070 }, + { "lat": 40.7111683, "lon": -74.0123991 }, + { "lat": 40.7111713, "lon": -74.0123980 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619428, + "bounds": { + "minlat": 40.7111542, + "minlon": -74.0138728, + "maxlat": 40.7117850, + "maxlon": -74.0123991 + }, + "nodes": [ + 6551501587, + 7133507035, + 10285341166, + 10288473004, + 10288472916, + 10288473007, + 10288473079, + 6551501586, + 6551501584, + 6551502564, + 6551502563, + 10288473008, + 6551502586, + 6551502585, + 10288472915, + 8213941406, + 6551502608, + 10285341242, + 6551502607, + 6551502401, + 6551502404, + 10285341165, + 7133507034, + 6551501585, + 6551501587 + ], + "geometry": [ + { "lat": 40.7111683, "lon": -74.0123991 }, + { "lat": 40.7111716, "lon": -74.0124070 }, + { "lat": 40.7111789, "lon": -74.0124245 }, + { "lat": 40.7114946, "lon": -74.0131801 }, + { "lat": 40.7114993, "lon": -74.0131911 }, + { "lat": 40.7116674, "lon": -74.0135897 }, + { "lat": 40.7116817, "lon": -74.0136236 }, + { "lat": 40.7117850, "lon": -74.0138685 }, + { "lat": 40.7117701, "lon": -74.0138728 }, + { "lat": 40.7117458, "lon": -74.0138140 }, + { "lat": 40.7117116, "lon": -74.0137326 }, + { "lat": 40.7116688, "lon": -74.0136307 }, + { "lat": 40.7116053, "lon": -74.0134793 }, + { "lat": 40.7115629, "lon": -74.0133783 }, + { "lat": 40.7114879, "lon": -74.0131996 }, + { "lat": 40.7114834, "lon": -74.0131889 }, + { "lat": 40.7114564, "lon": -74.0131243 }, + { "lat": 40.7113719, "lon": -74.0129232 }, + { "lat": 40.7113296, "lon": -74.0128223 }, + { "lat": 40.7112588, "lon": -74.0126538 }, + { "lat": 40.7112247, "lon": -74.0125723 }, + { "lat": 40.7111648, "lon": -74.0124297 }, + { "lat": 40.7111574, "lon": -74.0124121 }, + { "lat": 40.7111542, "lon": -74.0124044 }, + { "lat": 40.7111683, "lon": -74.0123991 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619429, + "bounds": { + "minlat": 40.7111713, + "minlon": -74.0138676, + "maxlat": 40.7118020, + "maxlon": -74.0123930 + }, + "nodes": [ + 6551501590, + 6551501591, + 6551502530, + 6551502529, + 10288473077, + 10288473005, + 10288472917, + 8213941404, + 6551502415, + 6551502418, + 6551502403, + 6551502945, + 10285341168, + 7133507037, + 6551502944, + 6551501588, + 7133507036, + 10285341167, + 9789079789, + 10288473006, + 10288473078, + 6551501589, + 6551501590 + ], + "geometry": [ + { "lat": 40.7118020, "lon": -74.0138636 }, + { "lat": 40.7117891, "lon": -74.0138332 }, + { "lat": 40.7117612, "lon": -74.0137668 }, + { "lat": 40.7117307, "lon": -74.0136827 }, + { "lat": 40.7117013, "lon": -74.0136142 }, + { "lat": 40.7116422, "lon": -74.0134765 }, + { "lat": 40.7115149, "lon": -74.0131796 }, + { "lat": 40.7115100, "lon": -74.0131682 }, + { "lat": 40.7114466, "lon": -74.0130124 }, + { "lat": 40.7114049, "lon": -74.0129110 }, + { "lat": 40.7112662, "lon": -74.0125873 }, + { "lat": 40.7112402, "lon": -74.0125255 }, + { "lat": 40.7111953, "lon": -74.0124183 }, + { "lat": 40.7111882, "lon": -74.0124012 }, + { "lat": 40.7111847, "lon": -74.0123930 }, + { "lat": 40.7111713, "lon": -74.0123980 }, + { "lat": 40.7111747, "lon": -74.0124060 }, + { "lat": 40.7111818, "lon": -74.0124233 }, + { "lat": 40.7115019, "lon": -74.0131892 }, + { "lat": 40.7116643, "lon": -74.0135738 }, + { "lat": 40.7116848, "lon": -74.0136224 }, + { "lat": 40.7117883, "lon": -74.0138676 }, + { "lat": 40.7118020, "lon": -74.0138636 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619430, + "bounds": { + "minlat": 40.7112662, + "minlon": -74.0129110, + "maxlat": 40.7114218, + "maxlon": -74.0125736 + }, + "nodes": [ + 6551502418, + 6551502438, + 6551502416, + 6551502403, + 6551502418 + ], + "geometry": [ + { "lat": 40.7114049, "lon": -74.0129110 }, + { "lat": 40.7114218, "lon": -74.0128989 }, + { "lat": 40.7112850, "lon": -74.0125736 }, + { "lat": 40.7112662, "lon": -74.0125873 }, + { "lat": 40.7114049, "lon": -74.0129110 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619431, + "bounds": { + "minlat": 40.7114466, + "minlon": -74.0136827, + "maxlat": 40.7117458, + "maxlon": -74.0130002 + }, + "nodes": [ + 6551502415, + 6551502435, + 10288473023, + 8213941403, + 10288472918, + 10288473076, + 6551502545, + 6551502529, + 10288473077, + 10288473005, + 10288472917, + 8213941404, + 6551502415 + ], + "geometry": [ + { "lat": 40.7114466, "lon": -74.0130124 }, + { "lat": 40.7114636, "lon": -74.0130002 }, + { "lat": 40.7115128, "lon": -74.0131168 }, + { "lat": 40.7115285, "lon": -74.0131539 }, + { "lat": 40.7115334, "lon": -74.0131657 }, + { "lat": 40.7117186, "lon": -74.0136070 }, + { "lat": 40.7117458, "lon": -74.0136717 }, + { "lat": 40.7117307, "lon": -74.0136827 }, + { "lat": 40.7117013, "lon": -74.0136142 }, + { "lat": 40.7116422, "lon": -74.0134765 }, + { "lat": 40.7115149, "lon": -74.0131796 }, + { "lat": 40.7115100, "lon": -74.0131682 }, + { "lat": 40.7114466, "lon": -74.0130124 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619432, + "bounds": { + "minlat": 40.7117891, + "minlon": -74.0138636, + "maxlat": 40.7118240, + "maxlon": -74.0138195 + }, + "nodes": [ + 6551501592, + 6551501593, + 6551501590, + 6551501591, + 6551501592 + ], + "geometry": [ + { "lat": 40.7118079, "lon": -74.0138195 }, + { "lat": 40.7118240, "lon": -74.0138573 }, + { "lat": 40.7118020, "lon": -74.0138636 }, + { "lat": 40.7117891, "lon": -74.0138332 }, + { "lat": 40.7118079, "lon": -74.0138195 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619433, + "bounds": { + "minlat": 40.7115509, + "minlon": -74.0138515, + "maxlat": 40.7118474, + "maxlon": -74.0131527 + }, + "nodes": [ + 6551501600, + 6551501603, + 10288473074, + 10288472919, + 10288473075, + 6551501598, + 6551501599, + 6551501600 + ], + "geometry": [ + { "lat": 40.7118474, "lon": -74.0138505 }, + { "lat": 40.7118031, "lon": -74.0137458 }, + { "lat": 40.7117411, "lon": -74.0136000 }, + { "lat": 40.7115509, "lon": -74.0131527 }, + { "lat": 40.7117387, "lon": -74.0136006 }, + { "lat": 40.7118108, "lon": -74.0137724 }, + { "lat": 40.7118439, "lon": -74.0138515 }, + { "lat": 40.7118474, "lon": -74.0138505 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619434, + "bounds": { + "minlat": 40.7112059, + "minlon": -74.0137851, + "maxlat": 40.7118108, + "maxlon": -74.0123773 + }, + "nodes": [ + 6551501597, + 6551501598, + 10288473075, + 10288472919, + 6551501602, + 2824641688, + 10288473024, + 2824641684, + 6551501596, + 6551501594, + 10285341164, + 7133507039, + 6551501595, + 6551502943, + 7133507038, + 10285341169, + 6551502946, + 6551502416, + 6551502438, + 6551502435, + 10288473023, + 8213941403, + 10288472918, + 10288473076, + 6551502545, + 6551502546, + 6551501597 + ], + "geometry": [ + { "lat": 40.7117934, "lon": -74.0137851 }, + { "lat": 40.7118108, "lon": -74.0137724 }, + { "lat": 40.7117387, "lon": -74.0136006 }, + { "lat": 40.7115509, "lon": -74.0131527 }, + { "lat": 40.7115457, "lon": -74.0131405 }, + { "lat": 40.7115432, "lon": -74.0131352 }, + { "lat": 40.7115083, "lon": -74.0130591 }, + { "lat": 40.7114851, "lon": -74.0130083 }, + { "lat": 40.7114193, "lon": -74.0128719 }, + { "lat": 40.7113001, "lon": -74.0125514 }, + { "lat": 40.7112377, "lon": -74.0124026 }, + { "lat": 40.7112306, "lon": -74.0123856 }, + { "lat": 40.7112271, "lon": -74.0123773 }, + { "lat": 40.7112059, "lon": -74.0123851 }, + { "lat": 40.7112094, "lon": -74.0123934 }, + { "lat": 40.7112166, "lon": -74.0124105 }, + { "lat": 40.7112590, "lon": -74.0125117 }, + { "lat": 40.7112850, "lon": -74.0125736 }, + { "lat": 40.7114218, "lon": -74.0128989 }, + { "lat": 40.7114636, "lon": -74.0130002 }, + { "lat": 40.7115128, "lon": -74.0131168 }, + { "lat": 40.7115285, "lon": -74.0131539 }, + { "lat": 40.7115334, "lon": -74.0131657 }, + { "lat": 40.7117186, "lon": -74.0136070 }, + { "lat": 40.7117458, "lon": -74.0136717 }, + { "lat": 40.7117800, "lon": -74.0137531 }, + { "lat": 40.7117934, "lon": -74.0137851 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619435, + "bounds": { + "minlat": 40.7115615, + "minlon": -74.0137054, + "maxlat": 40.7118278, + "maxlon": -74.0130984 + }, + "nodes": [ + 6551501606, + 6551501607, + 10288473073, + 10288472907, + 8213941402, + 6551501604, + 6551501608, + 8213941401, + 10288472906, + 10288473072, + 6551501606 + ], + "geometry": [ + { "lat": 40.7118278, "lon": -74.0136917 }, + { "lat": 40.7118091, "lon": -74.0137054 }, + { "lat": 40.7117641, "lon": -74.0135982 }, + { "lat": 40.7115708, "lon": -74.0131378 }, + { "lat": 40.7115655, "lon": -74.0131251 }, + { "lat": 40.7115615, "lon": -74.0131169 }, + { "lat": 40.7115788, "lon": -74.0130984 }, + { "lat": 40.7115840, "lon": -74.0131107 }, + { "lat": 40.7115895, "lon": -74.0131238 }, + { "lat": 40.7117906, "lon": -74.0136030 }, + { "lat": 40.7118278, "lon": -74.0136917 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619436, + "bounds": { + "minlat": 40.7115432, + "minlon": -74.0137458, + "maxlat": 40.7118207, + "maxlon": -74.0131169 + }, + "nodes": [ + 6551501605, + 6551501607, + 10288473073, + 10288472907, + 8213941402, + 6551501604, + 2824641688, + 6551501602, + 10288472919, + 10288473074, + 6551501603, + 6551501605 + ], + "geometry": [ + { "lat": 40.7118207, "lon": -74.0137330 }, + { "lat": 40.7118091, "lon": -74.0137054 }, + { "lat": 40.7117641, "lon": -74.0135982 }, + { "lat": 40.7115708, "lon": -74.0131378 }, + { "lat": 40.7115655, "lon": -74.0131251 }, + { "lat": 40.7115615, "lon": -74.0131169 }, + { "lat": 40.7115432, "lon": -74.0131352 }, + { "lat": 40.7115457, "lon": -74.0131405 }, + { "lat": 40.7115509, "lon": -74.0131527 }, + { "lat": 40.7117411, "lon": -74.0136000 }, + { "lat": 40.7118031, "lon": -74.0137458 }, + { "lat": 40.7118207, "lon": -74.0137330 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619437, + "bounds": { + "minlat": 40.7116058, + "minlon": -74.0138329, + "maxlat": 40.7119114, + "maxlon": -74.0131117 + }, + "nodes": [ + 10288472908, + 10288473071, + 6551501612, + 6551501613, + 6551501610, + 6551501619, + 10288473070, + 10288472908 + ], + "geometry": [ + { "lat": 40.7116058, "lon": -74.0131117 }, + { "lat": 40.7118169, "lon": -74.0136149 }, + { "lat": 40.7118726, "lon": -74.0137476 }, + { "lat": 40.7119083, "lon": -74.0138329 }, + { "lat": 40.7119114, "lon": -74.0138320 }, + { "lat": 40.7118890, "lon": -74.0137785 }, + { "lat": 40.7118205, "lon": -74.0136173 }, + { "lat": 40.7116058, "lon": -74.0131117 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619438, + "bounds": { + "minlat": 40.7115788, + "minlon": -74.0137595, + "maxlat": 40.7118726, + "maxlon": -74.0130825 + }, + "nodes": [ + 6551501611, + 6551501612, + 10288473071, + 10288472908, + 8213941400, + 6551501614, + 10285341207, + 6551501608, + 8213941401, + 10288472906, + 10288473072, + 6551501609, + 6551501611 + ], + "geometry": [ + { "lat": 40.7118563, "lon": -74.0137595 }, + { "lat": 40.7118726, "lon": -74.0137476 }, + { "lat": 40.7118169, "lon": -74.0136149 }, + { "lat": 40.7116058, "lon": -74.0131117 }, + { "lat": 40.7116001, "lon": -74.0130982 }, + { "lat": 40.7115937, "lon": -74.0130825 }, + { "lat": 40.7115822, "lon": -74.0130947 }, + { "lat": 40.7115788, "lon": -74.0130984 }, + { "lat": 40.7115840, "lon": -74.0131107 }, + { "lat": 40.7115895, "lon": -74.0131238 }, + { "lat": 40.7117906, "lon": -74.0136030 }, + { "lat": 40.7118283, "lon": -74.0136927 }, + { "lat": 40.7118563, "lon": -74.0137595 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619439, + "bounds": { + "minlat": 40.7118354, + "minlon": -74.0137420, + "maxlat": 40.7119131, + "maxlon": -74.0135880 + }, + "nodes": [ + 6551501618, + 6551501621, + 10288473082, + 6551502467, + 6551502455, + 10288473080, + 6551501618 + ], + "geometry": [ + { "lat": 40.7118943, "lon": -74.0137420 }, + { "lat": 40.7119131, "lon": -74.0137283 }, + { "lat": 40.7118907, "lon": -74.0136749 }, + { "lat": 40.7118542, "lon": -74.0135880 }, + { "lat": 40.7118354, "lon": -74.0136017 }, + { "lat": 40.7118522, "lon": -74.0136417 }, + { "lat": 40.7118943, "lon": -74.0137420 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619440, + "bounds": { + "minlat": 40.7115937, + "minlon": -74.0137785, + "maxlat": 40.7119048, + "maxlon": -74.0130652 + }, + "nodes": [ + 6551501619, + 6551501616, + 6551501618, + 10288473080, + 6551502455, + 6551502458, + 6551502437, + 6551502440, + 10288472904, + 8213941399, + 6551501617, + 6551501614, + 8213941400, + 10288472908, + 10288473070, + 6551501619 + ], + "geometry": [ + { "lat": 40.7118890, "lon": -74.0137785 }, + { "lat": 40.7119048, "lon": -74.0137669 }, + { "lat": 40.7118943, "lon": -74.0137420 }, + { "lat": 40.7118522, "lon": -74.0136417 }, + { "lat": 40.7118354, "lon": -74.0136017 }, + { "lat": 40.7118095, "lon": -74.0135399 }, + { "lat": 40.7117231, "lon": -74.0133339 }, + { "lat": 40.7116889, "lon": -74.0132525 }, + { "lat": 40.7116240, "lon": -74.0130980 }, + { "lat": 40.7116182, "lon": -74.0130841 }, + { "lat": 40.7116099, "lon": -74.0130652 }, + { "lat": 40.7115937, "lon": -74.0130825 }, + { "lat": 40.7116001, "lon": -74.0130982 }, + { "lat": 40.7116058, "lon": -74.0131117 }, + { "lat": 40.7118205, "lon": -74.0136173 }, + { "lat": 40.7118890, "lon": -74.0137785 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619441, + "bounds": { + "minlat": 40.7120113, + "minlon": -74.0140911, + "maxlat": 40.7120631, + "maxlon": -74.0140070 + }, + "nodes": [ + 6551501628, + 6551501627, + 7133483528, + 6551501624, + 6551501629, + 7133483529, + 6551501628 + ], + "geometry": [ + { "lat": 40.7120408, "lon": -74.0140911 }, + { "lat": 40.7120631, "lon": -74.0140858 }, + { "lat": 40.7120424, "lon": -74.0140368 }, + { "lat": 40.7120301, "lon": -74.0140070 }, + { "lat": 40.7120113, "lon": -74.0140207 }, + { "lat": 40.7120199, "lon": -74.0140412 }, + { "lat": 40.7120408, "lon": -74.0140911 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619442, + "bounds": { + "minlat": 40.7116274, + "minlon": -74.0140858, + "maxlat": 40.7120820, + "maxlon": -74.0130307 + }, + "nodes": [ + 6551501627, + 6551501625, + 7133483527, + 10288473081, + 10288472910, + 8213941397, + 2824641696, + 6551501623, + 8213941398, + 10288472905, + 6551502456, + 6551502453, + 6551501620, + 6551502467, + 10288473082, + 6551501621, + 6551501624, + 7133483528, + 6551501627 + ], + "geometry": [ + { "lat": 40.7120631, "lon": -74.0140858 }, + { "lat": 40.7120820, "lon": -74.0140813 }, + { "lat": 40.7120618, "lon": -74.0140331 }, + { "lat": 40.7119252, "lon": -74.0137072 }, + { "lat": 40.7116590, "lon": -74.0130719 }, + { "lat": 40.7116529, "lon": -74.0130572 }, + { "lat": 40.7116422, "lon": -74.0130307 }, + { "lat": 40.7116274, "lon": -74.0130466 }, + { "lat": 40.7116372, "lon": -74.0130694 }, + { "lat": 40.7116432, "lon": -74.0130837 }, + { "lat": 40.7117077, "lon": -74.0132388 }, + { "lat": 40.7117418, "lon": -74.0133202 }, + { "lat": 40.7118283, "lon": -74.0135262 }, + { "lat": 40.7118542, "lon": -74.0135880 }, + { "lat": 40.7118907, "lon": -74.0136749 }, + { "lat": 40.7119131, "lon": -74.0137283 }, + { "lat": 40.7120301, "lon": -74.0140070 }, + { "lat": 40.7120424, "lon": -74.0140368 }, + { "lat": 40.7120631, "lon": -74.0140858 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619443, + "bounds": { + "minlat": 40.7119621, + "minlon": -74.0141009, + "maxlat": 40.7120207, + "maxlon": -74.0139986 + }, + "nodes": [ + 6551501634, + 6551501632, + 7133483530, + 6551501633, + 6551501630, + 6551501631, + 6551501635, + 7133483531, + 6551501634 + ], + "geometry": [ + { "lat": 40.7119996, "lon": -74.0141009 }, + { "lat": 40.7120207, "lon": -74.0140959 }, + { "lat": 40.7119994, "lon": -74.0140452 }, + { "lat": 40.7119886, "lon": -74.0140193 }, + { "lat": 40.7119799, "lon": -74.0139986 }, + { "lat": 40.7119621, "lon": -74.0140116 }, + { "lat": 40.7119682, "lon": -74.0140261 }, + { "lat": 40.7119780, "lon": -74.0140494 }, + { "lat": 40.7119996, "lon": -74.0141009 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619444, + "bounds": { + "minlat": 40.7119886, + "minlon": -74.0140959, + "maxlat": 40.7120408, + "maxlon": -74.0140070 + }, + "nodes": [ + 6551501632, + 6551501628, + 7133483529, + 6551501629, + 6551501626, + 6551501633, + 7133483530, + 6551501632 + ], + "geometry": [ + { "lat": 40.7120207, "lon": -74.0140959 }, + { "lat": 40.7120408, "lon": -74.0140911 }, + { "lat": 40.7120199, "lon": -74.0140412 }, + { "lat": 40.7120113, "lon": -74.0140207 }, + { "lat": 40.7120055, "lon": -74.0140070 }, + { "lat": 40.7119886, "lon": -74.0140193 }, + { "lat": 40.7119994, "lon": -74.0140452 }, + { "lat": 40.7120207, "lon": -74.0140959 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619445, + "bounds": { + "minlat": 40.7118985, + "minlon": -74.0141113, + "maxlat": 40.7119773, + "maxlon": -74.0139640 + }, + "nodes": [ + 6551501642, + 6551501641, + 7133483532, + 10288472785, + 6551501638, + 6551501639, + 6551500422, + 6551500426, + 6551501643, + 10288472779, + 7133483533, + 6551501642 + ], + "geometry": [ + { "lat": 40.7119549, "lon": -74.0141113 }, + { "lat": 40.7119773, "lon": -74.0141061 }, + { "lat": 40.7119591, "lon": -74.0140629 }, + { "lat": 40.7119552, "lon": -74.0140538 }, + { "lat": 40.7119491, "lon": -74.0140396 }, + { "lat": 40.7119355, "lon": -74.0140067 }, + { "lat": 40.7119543, "lon": -74.0139929 }, + { "lat": 40.7119422, "lon": -74.0139640 }, + { "lat": 40.7118985, "lon": -74.0139766 }, + { "lat": 40.7119327, "lon": -74.0140582 }, + { "lat": 40.7119370, "lon": -74.0140686 }, + { "lat": 40.7119549, "lon": -74.0141113 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619446, + "bounds": { + "minlat": 40.7119491, + "minlon": -74.0141061, + "maxlat": 40.7119996, + "maxlon": -74.0140261 + }, + "nodes": [ + 6551501641, + 6551501634, + 7133483531, + 6551501635, + 6551501638, + 10288472785, + 7133483532, + 6551501641 + ], + "geometry": [ + { "lat": 40.7119773, "lon": -74.0141061 }, + { "lat": 40.7119996, "lon": -74.0141009 }, + { "lat": 40.7119780, "lon": -74.0140494 }, + { "lat": 40.7119682, "lon": -74.0140261 }, + { "lat": 40.7119491, "lon": -74.0140396 }, + { "lat": 40.7119552, "lon": -74.0140538 }, + { "lat": 40.7119591, "lon": -74.0140629 }, + { "lat": 40.7119773, "lon": -74.0141061 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619447, + "bounds": { + "minlat": 40.7118809, + "minlon": -74.0141213, + "maxlat": 40.7119325, + "maxlon": -74.0140382 + }, + "nodes": [ + 6551501649, + 6551501644, + 6551459462, + 10288472781, + 6551501645, + 6551501646, + 10288472780, + 7133483534, + 6551501649 + ], + "geometry": [ + { "lat": 40.7119100, "lon": -74.0141213 }, + { "lat": 40.7119325, "lon": -74.0141164 }, + { "lat": 40.7119149, "lon": -74.0140744 }, + { "lat": 40.7119100, "lon": -74.0140626 }, + { "lat": 40.7118997, "lon": -74.0140382 }, + { "lat": 40.7118809, "lon": -74.0140519 }, + { "lat": 40.7118873, "lon": -74.0140671 }, + { "lat": 40.7118926, "lon": -74.0140798 }, + { "lat": 40.7119100, "lon": -74.0141213 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619448, + "bounds": { + "minlat": 40.7118766, + "minlon": -74.0141164, + "maxlat": 40.7119549, + "maxlon": -74.0139766 + }, + "nodes": [ + 6551501644, + 6551501642, + 7133483533, + 10288472779, + 6551501643, + 6551501640, + 6551501645, + 10288472781, + 6551459462, + 6551501644 + ], + "geometry": [ + { "lat": 40.7119325, "lon": -74.0141164 }, + { "lat": 40.7119549, "lon": -74.0141113 }, + { "lat": 40.7119370, "lon": -74.0140686 }, + { "lat": 40.7119327, "lon": -74.0140582 }, + { "lat": 40.7118985, "lon": -74.0139766 }, + { "lat": 40.7118766, "lon": -74.0139829 }, + { "lat": 40.7118997, "lon": -74.0140382 }, + { "lat": 40.7119100, "lon": -74.0140626 }, + { "lat": 40.7119149, "lon": -74.0140744 }, + { "lat": 40.7119325, "lon": -74.0141164 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619449, + "bounds": { + "minlat": 40.7118377, + "minlon": -74.0141251, + "maxlat": 40.7118959, + "maxlon": -74.0139931 + }, + "nodes": [ + 6551501654, + 6551501653, + 7133483535, + 10288472783, + 6551501650, + 6551501651, + 6551501648, + 6551501655, + 10288472782, + 7133483536, + 6551501654 + ], + "geometry": [ + { "lat": 40.7118927, "lon": -74.0141251 }, + { "lat": 40.7118959, "lon": -74.0141244 }, + { "lat": 40.7118786, "lon": -74.0140832 }, + { "lat": 40.7118730, "lon": -74.0140699 }, + { "lat": 40.7118602, "lon": -74.0140394 }, + { "lat": 40.7118412, "lon": -74.0139931 }, + { "lat": 40.7118377, "lon": -74.0139942 }, + { "lat": 40.7118512, "lon": -74.0140261 }, + { "lat": 40.7118698, "lon": -74.0140705 }, + { "lat": 40.7118754, "lon": -74.0140838 }, + { "lat": 40.7118927, "lon": -74.0141251 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619450, + "bounds": { + "minlat": 40.7118602, + "minlon": -74.0141244, + "maxlat": 40.7119100, + "maxlon": -74.0140308 + }, + "nodes": [ + 6551501653, + 6551501649, + 7133483534, + 10288472780, + 6551501646, + 6551501647, + 6551501650, + 10288472783, + 7133483535, + 6551501653 + ], + "geometry": [ + { "lat": 40.7118959, "lon": -74.0141244 }, + { "lat": 40.7119100, "lon": -74.0141213 }, + { "lat": 40.7118926, "lon": -74.0140798 }, + { "lat": 40.7118873, "lon": -74.0140671 }, + { "lat": 40.7118809, "lon": -74.0140519 }, + { "lat": 40.7118720, "lon": -74.0140308 }, + { "lat": 40.7118602, "lon": -74.0140394 }, + { "lat": 40.7118730, "lon": -74.0140699 }, + { "lat": 40.7118786, "lon": -74.0140832 }, + { "lat": 40.7118959, "lon": -74.0141244 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619451, + "bounds": { + "minlat": 40.7118270, + "minlon": -74.0141330, + "maxlat": 40.7118777, + "maxlon": -74.0140521 + }, + "nodes": [ + 6551501661, + 6551501656, + 7133483537, + 10288472784, + 6551501657, + 6551501658, + 10288472772, + 7133483538, + 6551501661 + ], + "geometry": [ + { "lat": 40.7118552, "lon": -74.0141330 }, + { "lat": 40.7118777, "lon": -74.0141283 }, + { "lat": 40.7118601, "lon": -74.0140865 }, + { "lat": 40.7118546, "lon": -74.0140734 }, + { "lat": 40.7118457, "lon": -74.0140521 }, + { "lat": 40.7118270, "lon": -74.0140658 }, + { "lat": 40.7118320, "lon": -74.0140778 }, + { "lat": 40.7118377, "lon": -74.0140914 }, + { "lat": 40.7118552, "lon": -74.0141330 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619452, + "bounds": { + "minlat": 40.7118386, + "minlon": -74.0141283, + "maxlat": 40.7118927, + "maxlon": -74.0140261 + }, + "nodes": [ + 6551501656, + 6551501654, + 7133483536, + 10288472782, + 6551501655, + 6551501652, + 6551501657, + 10288472784, + 7133483537, + 6551501656 + ], + "geometry": [ + { "lat": 40.7118777, "lon": -74.0141283 }, + { "lat": 40.7118927, "lon": -74.0141251 }, + { "lat": 40.7118754, "lon": -74.0140838 }, + { "lat": 40.7118698, "lon": -74.0140705 }, + { "lat": 40.7118512, "lon": -74.0140261 }, + { "lat": 40.7118386, "lon": -74.0140352 }, + { "lat": 40.7118457, "lon": -74.0140521 }, + { "lat": 40.7118546, "lon": -74.0140734 }, + { "lat": 40.7118601, "lon": -74.0140865 }, + { "lat": 40.7118777, "lon": -74.0141283 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619453, + "bounds": { + "minlat": 40.7117841, + "minlon": -74.0141366, + "maxlat": 40.7118410, + "maxlon": -74.0140085 + }, + "nodes": [ + 6551501666, + 6551501665, + 7133483539, + 10288472774, + 6551501662, + 6551501663, + 6551501660, + 6551501667, + 10288472773, + 7133483540, + 6551501666 + ], + "geometry": [ + { "lat": 40.7118378, "lon": -74.0141366 }, + { "lat": 40.7118410, "lon": -74.0141360 }, + { "lat": 40.7118237, "lon": -74.0140948 }, + { "lat": 40.7118178, "lon": -74.0140807 }, + { "lat": 40.7118081, "lon": -74.0140576 }, + { "lat": 40.7117879, "lon": -74.0140085 }, + { "lat": 40.7117841, "lon": -74.0140096 }, + { "lat": 40.7117957, "lon": -74.0140363 }, + { "lat": 40.7118145, "lon": -74.0140812 }, + { "lat": 40.7118205, "lon": -74.0140955 }, + { "lat": 40.7118378, "lon": -74.0141366 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619454, + "bounds": { + "minlat": 40.7118081, + "minlon": -74.0141360, + "maxlat": 40.7118552, + "maxlon": -74.0140490 + }, + "nodes": [ + 6551501665, + 6551501661, + 7133483538, + 10288472772, + 6551501658, + 6551501659, + 6551501662, + 10288472774, + 7133483539, + 6551501665 + ], + "geometry": [ + { "lat": 40.7118410, "lon": -74.0141360 }, + { "lat": 40.7118552, "lon": -74.0141330 }, + { "lat": 40.7118377, "lon": -74.0140914 }, + { "lat": 40.7118320, "lon": -74.0140778 }, + { "lat": 40.7118270, "lon": -74.0140658 }, + { "lat": 40.7118199, "lon": -74.0140490 }, + { "lat": 40.7118081, "lon": -74.0140576 }, + { "lat": 40.7118178, "lon": -74.0140807 }, + { "lat": 40.7118237, "lon": -74.0140948 }, + { "lat": 40.7118410, "lon": -74.0141360 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619455, + "bounds": { + "minlat": 40.7117707, + "minlon": -74.0141441, + "maxlat": 40.7118227, + "maxlon": -74.0140605 + }, + "nodes": [ + 6551501673, + 6551501668, + 7133483541, + 10288472776, + 6551501669, + 6551501670, + 10288472775, + 7133483542, + 6551501673 + ], + "geometry": [ + { "lat": 40.7118000, "lon": -74.0141441 }, + { "lat": 40.7118227, "lon": -74.0141396 }, + { "lat": 40.7118055, "lon": -74.0140987 }, + { "lat": 40.7117994, "lon": -74.0140842 }, + { "lat": 40.7117895, "lon": -74.0140605 }, + { "lat": 40.7117707, "lon": -74.0140742 }, + { "lat": 40.7117767, "lon": -74.0140886 }, + { "lat": 40.7117830, "lon": -74.0141036 }, + { "lat": 40.7118000, "lon": -74.0141441 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619456, + "bounds": { + "minlat": 40.7117832, + "minlon": -74.0141396, + "maxlat": 40.7118378, + "maxlon": -74.0140363 + }, + "nodes": [ + 6551501668, + 6551501666, + 7133483540, + 10288472773, + 6551501667, + 6551501664, + 6551501669, + 10288472776, + 7133483541, + 6551501668 + ], + "geometry": [ + { "lat": 40.7118227, "lon": -74.0141396 }, + { "lat": 40.7118378, "lon": -74.0141366 }, + { "lat": 40.7118205, "lon": -74.0140955 }, + { "lat": 40.7118145, "lon": -74.0140812 }, + { "lat": 40.7117957, "lon": -74.0140363 }, + { "lat": 40.7117832, "lon": -74.0140455 }, + { "lat": 40.7117895, "lon": -74.0140605 }, + { "lat": 40.7117994, "lon": -74.0140842 }, + { "lat": 40.7118055, "lon": -74.0140987 }, + { "lat": 40.7118227, "lon": -74.0141396 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619457, + "bounds": { + "minlat": 40.7117310, + "minlon": -74.0141475, + "maxlat": 40.7117857, + "maxlon": -74.0140240 + }, + "nodes": [ + 6551501679, + 6551501677, + 7133483543, + 10288472778, + 6551501674, + 6551500453, + 6551501672, + 6551501676, + 10288472777, + 7133483544, + 6551501679 + ], + "geometry": [ + { "lat": 40.7117825, "lon": -74.0141475 }, + { "lat": 40.7117857, "lon": -74.0141469 }, + { "lat": 40.7117691, "lon": -74.0141073 }, + { "lat": 40.7117625, "lon": -74.0140915 }, + { "lat": 40.7117526, "lon": -74.0140680 }, + { "lat": 40.7117342, "lon": -74.0140240 }, + { "lat": 40.7117310, "lon": -74.0140249 }, + { "lat": 40.7117383, "lon": -74.0140422 }, + { "lat": 40.7117592, "lon": -74.0140920 }, + { "lat": 40.7117660, "lon": -74.0141081 }, + { "lat": 40.7117825, "lon": -74.0141475 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619458, + "bounds": { + "minlat": 40.7117526, + "minlon": -74.0141469, + "maxlat": 40.7118000, + "maxlon": -74.0140594 + }, + "nodes": [ + 6551501677, + 6551501673, + 7133483542, + 10288472775, + 6551501670, + 6551501671, + 6551501674, + 10288472778, + 7133483543, + 6551501677 + ], + "geometry": [ + { "lat": 40.7117857, "lon": -74.0141469 }, + { "lat": 40.7118000, "lon": -74.0141441 }, + { "lat": 40.7117830, "lon": -74.0141036 }, + { "lat": 40.7117767, "lon": -74.0140886 }, + { "lat": 40.7117707, "lon": -74.0140742 }, + { "lat": 40.7117645, "lon": -74.0140594 }, + { "lat": 40.7117526, "lon": -74.0140680 }, + { "lat": 40.7117625, "lon": -74.0140915 }, + { "lat": 40.7117691, "lon": -74.0141073 }, + { "lat": 40.7117857, "lon": -74.0141469 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619459, + "bounds": { + "minlat": 40.7117048, + "minlon": -74.0141545, + "maxlat": 40.7117674, + "maxlon": -74.0140461 + }, + "nodes": [ + 6551501751, + 6551501680, + 7133483545, + 10288472768, + 6551501681, + 6551501678, + 6551501752, + 10288472767, + 7133483546, + 6551501751 + ], + "geometry": [ + { "lat": 40.7117446, "lon": -74.0141545 }, + { "lat": 40.7117674, "lon": -74.0141503 }, + { "lat": 40.7117513, "lon": -74.0141119 }, + { "lat": 40.7117441, "lon": -74.0140949 }, + { "lat": 40.7117258, "lon": -74.0140514 }, + { "lat": 40.7117236, "lon": -74.0140461 }, + { "lat": 40.7117048, "lon": -74.0140598 }, + { "lat": 40.7117216, "lon": -74.0140993 }, + { "lat": 40.7117288, "lon": -74.0141164 }, + { "lat": 40.7117446, "lon": -74.0141545 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619460, + "bounds": { + "minlat": 40.7117258, + "minlon": -74.0141503, + "maxlat": 40.7117825, + "maxlon": -74.0140422 + }, + "nodes": [ + 6551501680, + 6551501679, + 7133483544, + 10288472777, + 6551501676, + 6551501681, + 10288472768, + 7133483545, + 6551501680 + ], + "geometry": [ + { "lat": 40.7117674, "lon": -74.0141503 }, + { "lat": 40.7117825, "lon": -74.0141475 }, + { "lat": 40.7117660, "lon": -74.0141081 }, + { "lat": 40.7117592, "lon": -74.0140920 }, + { "lat": 40.7117383, "lon": -74.0140422 }, + { "lat": 40.7117258, "lon": -74.0140514 }, + { "lat": 40.7117441, "lon": -74.0140949 }, + { "lat": 40.7117513, "lon": -74.0141119 }, + { "lat": 40.7117674, "lon": -74.0141503 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619461, + "bounds": { + "minlat": 40.7110648, + "minlon": -74.0142619, + "maxlat": 40.7111224, + "maxlon": -74.0141687 + }, + "nodes": [ + 6551501684, + 7133483580, + 10288472786, + 6551501687, + 6551501685, + 10288472820, + 7133483581, + 6551501682, + 10285341263, + 6551501684 + ], + "geometry": [ + { "lat": 40.7111224, "lon": -74.0142586 }, + { "lat": 40.7111095, "lon": -74.0142280 }, + { "lat": 40.7111013, "lon": -74.0142084 }, + { "lat": 40.7110850, "lon": -74.0141687 }, + { "lat": 40.7110648, "lon": -74.0141739 }, + { "lat": 40.7110806, "lon": -74.0142118 }, + { "lat": 40.7110885, "lon": -74.0142307 }, + { "lat": 40.7111031, "lon": -74.0142619 }, + { "lat": 40.7111065, "lon": -74.0142613 }, + { "lat": 40.7111224, "lon": -74.0142586 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619462, + "bounds": { + "minlat": 40.7110422, + "minlon": -74.0142661, + "maxlat": 40.7111031, + "maxlon": -74.0141739 + }, + "nodes": [ + 6551501682, + 7133483581, + 10288472820, + 6551501685, + 6551501683, + 10288472821, + 7133483582, + 6551502062, + 6551501682 + ], + "geometry": [ + { "lat": 40.7111031, "lon": -74.0142619 }, + { "lat": 40.7110885, "lon": -74.0142307 }, + { "lat": 40.7110806, "lon": -74.0142118 }, + { "lat": 40.7110648, "lon": -74.0141739 }, + { "lat": 40.7110422, "lon": -74.0141788 }, + { "lat": 40.7110574, "lon": -74.0142152 }, + { "lat": 40.7110647, "lon": -74.0142326 }, + { "lat": 40.7110788, "lon": -74.0142661 }, + { "lat": 40.7111031, "lon": -74.0142619 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619463, + "bounds": { + "minlat": 40.7111041, + "minlon": -74.0142543, + "maxlat": 40.7111578, + "maxlon": -74.0141530 + }, + "nodes": [ + 6551501691, + 7133483578, + 10288472788, + 6551501690, + 6551501688, + 6551501686, + 10288472787, + 7133483579, + 6551501689, + 6551501691 + ], + "geometry": [ + { "lat": 40.7111578, "lon": -74.0142521 }, + { "lat": 40.7111450, "lon": -74.0142217 }, + { "lat": 40.7111368, "lon": -74.0142022 }, + { "lat": 40.7111162, "lon": -74.0141530 }, + { "lat": 40.7111041, "lon": -74.0141549 }, + { "lat": 40.7111069, "lon": -74.0141615 }, + { "lat": 40.7111249, "lon": -74.0142043 }, + { "lat": 40.7111331, "lon": -74.0142239 }, + { "lat": 40.7111459, "lon": -74.0142543 }, + { "lat": 40.7111578, "lon": -74.0142521 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619464, + "bounds": { + "minlat": 40.7110850, + "minlon": -74.0142586, + "maxlat": 40.7111459, + "maxlon": -74.0141615 + }, + "nodes": [ + 6551501689, + 7133483579, + 10288472787, + 6551501686, + 6551501687, + 10288472786, + 7133483580, + 6551501684, + 6551501689 + ], + "geometry": [ + { "lat": 40.7111459, "lon": -74.0142543 }, + { "lat": 40.7111331, "lon": -74.0142239 }, + { "lat": 40.7111249, "lon": -74.0142043 }, + { "lat": 40.7111069, "lon": -74.0141615 }, + { "lat": 40.7110850, "lon": -74.0141687 }, + { "lat": 40.7111013, "lon": -74.0142084 }, + { "lat": 40.7111095, "lon": -74.0142280 }, + { "lat": 40.7111224, "lon": -74.0142586 }, + { "lat": 40.7111459, "lon": -74.0142543 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619465, + "bounds": { + "minlat": 40.7111323, + "minlon": -74.0142493, + "maxlat": 40.7111966, + "maxlon": -74.0141469 + }, + "nodes": [ + 6551501695, + 7133483576, + 10288472790, + 6551501694, + 6551501692, + 10288472789, + 7133483577, + 6551501693, + 6551501695 + ], + "geometry": [ + { "lat": 40.7111966, "lon": -74.0142452 }, + { "lat": 40.7111837, "lon": -74.0142146 }, + { "lat": 40.7111757, "lon": -74.0141955 }, + { "lat": 40.7111553, "lon": -74.0141469 }, + { "lat": 40.7111323, "lon": -74.0141505 }, + { "lat": 40.7111528, "lon": -74.0141995 }, + { "lat": 40.7111609, "lon": -74.0142188 }, + { "lat": 40.7111737, "lon": -74.0142493 }, + { "lat": 40.7111966, "lon": -74.0142452 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619466, + "bounds": { + "minlat": 40.7111162, + "minlon": -74.0142521, + "maxlat": 40.7111737, + "maxlon": -74.0141505 + }, + "nodes": [ + 6551501693, + 7133483577, + 10288472789, + 6551501692, + 10288472823, + 6551501690, + 10288472788, + 7133483578, + 6551501691, + 6551501693 + ], + "geometry": [ + { "lat": 40.7111737, "lon": -74.0142493 }, + { "lat": 40.7111609, "lon": -74.0142188 }, + { "lat": 40.7111528, "lon": -74.0141995 }, + { "lat": 40.7111323, "lon": -74.0141505 }, + { "lat": 40.7111227, "lon": -74.0141520 }, + { "lat": 40.7111162, "lon": -74.0141530 }, + { "lat": 40.7111368, "lon": -74.0142022 }, + { "lat": 40.7111450, "lon": -74.0142217 }, + { "lat": 40.7111578, "lon": -74.0142521 }, + { "lat": 40.7111737, "lon": -74.0142493 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619467, + "bounds": { + "minlat": 40.7111707, + "minlon": -74.0142426, + "maxlat": 40.7112150, + "maxlon": -74.0141440 + }, + "nodes": [ + 6551501699, + 7133483574, + 10288472792, + 6551501698, + 6551501696, + 10288472791, + 7133483575, + 6551501697, + 6551501699 + ], + "geometry": [ + { "lat": 40.7112150, "lon": -74.0142420 }, + { "lat": 40.7112021, "lon": -74.0142112 }, + { "lat": 40.7111942, "lon": -74.0141923 }, + { "lat": 40.7111739, "lon": -74.0141440 }, + { "lat": 40.7111707, "lon": -74.0141445 }, + { "lat": 40.7111910, "lon": -74.0141928 }, + { "lat": 40.7111989, "lon": -74.0142117 }, + { "lat": 40.7112118, "lon": -74.0142426 }, + { "lat": 40.7112150, "lon": -74.0142420 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619468, + "bounds": { + "minlat": 40.7111553, + "minlon": -74.0142452, + "maxlat": 40.7112118, + "maxlon": -74.0141445 + }, + "nodes": [ + 6551501697, + 7133483575, + 10288472791, + 6551501696, + 6551501694, + 10288472790, + 7133483576, + 6551501695, + 6551501697 + ], + "geometry": [ + { "lat": 40.7112118, "lon": -74.0142426 }, + { "lat": 40.7111989, "lon": -74.0142117 }, + { "lat": 40.7111910, "lon": -74.0141928 }, + { "lat": 40.7111707, "lon": -74.0141445 }, + { "lat": 40.7111553, "lon": -74.0141469 }, + { "lat": 40.7111757, "lon": -74.0141955 }, + { "lat": 40.7111837, "lon": -74.0142146 }, + { "lat": 40.7111966, "lon": -74.0142452 }, + { "lat": 40.7112118, "lon": -74.0142426 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619469, + "bounds": { + "minlat": 40.7111877, + "minlon": -74.0142395, + "maxlat": 40.7112531, + "maxlon": -74.0141249 + }, + "nodes": [ + 6551501705, + 7133483572, + 10288472794, + 6551501704, + 6551501702, + 6551501703, + 6551501700, + 10288472793, + 7133483573, + 6551501701, + 6551501705 + ], + "geometry": [ + { "lat": 40.7112531, "lon": -74.0142356 }, + { "lat": 40.7112400, "lon": -74.0142043 }, + { "lat": 40.7112322, "lon": -74.0141857 }, + { "lat": 40.7112066, "lon": -74.0141249 }, + { "lat": 40.7111877, "lon": -74.0141278 }, + { "lat": 40.7111936, "lon": -74.0141409 }, + { "lat": 40.7111887, "lon": -74.0141417 }, + { "lat": 40.7112089, "lon": -74.0141897 }, + { "lat": 40.7112169, "lon": -74.0142087 }, + { "lat": 40.7112298, "lon": -74.0142395 }, + { "lat": 40.7112531, "lon": -74.0142356 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619470, + "bounds": { + "minlat": 40.7111739, + "minlon": -74.0142420, + "maxlat": 40.7112298, + "maxlon": -74.0141417 + }, + "nodes": [ + 6551501701, + 7133483573, + 10288472793, + 6551501700, + 6551501698, + 10288472792, + 7133483574, + 6551501699, + 6551501701 + ], + "geometry": [ + { "lat": 40.7112298, "lon": -74.0142395 }, + { "lat": 40.7112169, "lon": -74.0142087 }, + { "lat": 40.7112089, "lon": -74.0141897 }, + { "lat": 40.7111887, "lon": -74.0141417 }, + { "lat": 40.7111739, "lon": -74.0141440 }, + { "lat": 40.7111942, "lon": -74.0141923 }, + { "lat": 40.7112021, "lon": -74.0142112 }, + { "lat": 40.7112150, "lon": -74.0142420 }, + { "lat": 40.7112298, "lon": -74.0142395 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619471, + "bounds": { + "minlat": 40.7112216, + "minlon": -74.0142332, + "maxlat": 40.7112713, + "maxlon": -74.0141220 + }, + "nodes": [ + 6551501709, + 7133483570, + 10288472796, + 6551501708, + 6551501706, + 10288472795, + 7133483571, + 6551501707, + 6551501709 + ], + "geometry": [ + { "lat": 40.7112713, "lon": -74.0142326 }, + { "lat": 40.7112580, "lon": -74.0142009 }, + { "lat": 40.7112503, "lon": -74.0141826 }, + { "lat": 40.7112248, "lon": -74.0141220 }, + { "lat": 40.7112216, "lon": -74.0141225 }, + { "lat": 40.7112470, "lon": -74.0141831 }, + { "lat": 40.7112548, "lon": -74.0142016 }, + { "lat": 40.7112680, "lon": -74.0142332 }, + { "lat": 40.7112713, "lon": -74.0142326 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619472, + "bounds": { + "minlat": 40.7112066, + "minlon": -74.0142356, + "maxlat": 40.7112680, + "maxlon": -74.0141225 + }, + "nodes": [ + 6551501707, + 7133483571, + 10288472795, + 6551501706, + 6551501704, + 10288472794, + 7133483572, + 6551501705, + 6551501707 + ], + "geometry": [ + { "lat": 40.7112680, "lon": -74.0142332 }, + { "lat": 40.7112548, "lon": -74.0142016 }, + { "lat": 40.7112470, "lon": -74.0141831 }, + { "lat": 40.7112216, "lon": -74.0141225 }, + { "lat": 40.7112066, "lon": -74.0141249 }, + { "lat": 40.7112322, "lon": -74.0141857 }, + { "lat": 40.7112400, "lon": -74.0142043 }, + { "lat": 40.7112531, "lon": -74.0142356 }, + { "lat": 40.7112680, "lon": -74.0142332 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619473, + "bounds": { + "minlat": 40.7112532, + "minlon": -74.0142302, + "maxlat": 40.7113090, + "maxlon": -74.0141384 + }, + "nodes": [ + 6551501715, + 7133483568, + 10288472798, + 6551501714, + 6551501712, + 6551501713, + 10288472797, + 7133483569, + 6551501710, + 6551501715 + ], + "geometry": [ + { "lat": 40.7113090, "lon": -74.0142265 }, + { "lat": 40.7112953, "lon": -74.0141938 }, + { "lat": 40.7112878, "lon": -74.0141761 }, + { "lat": 40.7112782, "lon": -74.0141532 }, + { "lat": 40.7112720, "lon": -74.0141384 }, + { "lat": 40.7112532, "lon": -74.0141521 }, + { "lat": 40.7112650, "lon": -74.0141801 }, + { "lat": 40.7112726, "lon": -74.0141982 }, + { "lat": 40.7112860, "lon": -74.0142302 }, + { "lat": 40.7113090, "lon": -74.0142265 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619474, + "bounds": { + "minlat": 40.7112248, + "minlon": -74.0142326, + "maxlat": 40.7112860, + "maxlon": -74.0141197 + }, + "nodes": [ + 6551501710, + 7133483569, + 10288472797, + 6551501713, + 6551501711, + 6551501708, + 10288472796, + 7133483570, + 6551501709, + 6551501710 + ], + "geometry": [ + { "lat": 40.7112860, "lon": -74.0142302 }, + { "lat": 40.7112726, "lon": -74.0141982 }, + { "lat": 40.7112650, "lon": -74.0141801 }, + { "lat": 40.7112532, "lon": -74.0141521 }, + { "lat": 40.7112396, "lon": -74.0141197 }, + { "lat": 40.7112248, "lon": -74.0141220 }, + { "lat": 40.7112503, "lon": -74.0141826 }, + { "lat": 40.7112580, "lon": -74.0142009 }, + { "lat": 40.7112713, "lon": -74.0142326 }, + { "lat": 40.7112860, "lon": -74.0142302 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619475, + "bounds": { + "minlat": 40.7112727, + "minlon": -74.0142240, + "maxlat": 40.7113277, + "maxlon": -74.0141002 + }, + "nodes": [ + 6551501721, + 7133483566, + 10288472800, + 6551501720, + 6551501718, + 6551501719, + 6551501716, + 10288472799, + 7133483567, + 6551501717, + 6551501721 + ], + "geometry": [ + { "lat": 40.7113277, "lon": -74.0142235 }, + { "lat": 40.7113139, "lon": -74.0141906 }, + { "lat": 40.7113065, "lon": -74.0141729 }, + { "lat": 40.7112975, "lon": -74.0141514 }, + { "lat": 40.7112760, "lon": -74.0141002 }, + { "lat": 40.7112727, "lon": -74.0141007 }, + { "lat": 40.7112909, "lon": -74.0141440 }, + { "lat": 40.7113032, "lon": -74.0141734 }, + { "lat": 40.7113106, "lon": -74.0141910 }, + { "lat": 40.7113245, "lon": -74.0142240 }, + { "lat": 40.7113277, "lon": -74.0142235 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619476, + "bounds": { + "minlat": 40.7112782, + "minlon": -74.0142265, + "maxlat": 40.7113245, + "maxlon": -74.0141440 + }, + "nodes": [ + 6551501717, + 7133483567, + 10288472799, + 6551501716, + 6551501714, + 10288472798, + 7133483568, + 6551501715, + 6551501717 + ], + "geometry": [ + { "lat": 40.7113245, "lon": -74.0142240 }, + { "lat": 40.7113106, "lon": -74.0141910 }, + { "lat": 40.7113032, "lon": -74.0141734 }, + { "lat": 40.7112909, "lon": -74.0141440 }, + { "lat": 40.7112782, "lon": -74.0141532 }, + { "lat": 40.7112878, "lon": -74.0141761 }, + { "lat": 40.7112953, "lon": -74.0141938 }, + { "lat": 40.7113090, "lon": -74.0142265 }, + { "lat": 40.7113245, "lon": -74.0142240 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619477, + "bounds": { + "minlat": 40.7113116, + "minlon": -74.0142211, + "maxlat": 40.7113657, + "maxlon": -74.0141339 + }, + "nodes": [ + 6551501724, + 7133483564, + 10288472802, + 6551501727, + 6551501725, + 10288472801, + 7133483565, + 6551501722, + 6551501724 + ], + "geometry": [ + { "lat": 40.7113657, "lon": -74.0142174 }, + { "lat": 40.7113518, "lon": -74.0141842 }, + { "lat": 40.7113443, "lon": -74.0141663 }, + { "lat": 40.7113306, "lon": -74.0141339 }, + { "lat": 40.7113116, "lon": -74.0141478 }, + { "lat": 40.7113210, "lon": -74.0141704 }, + { "lat": 40.7113285, "lon": -74.0141883 }, + { "lat": 40.7113423, "lon": -74.0142211 }, + { "lat": 40.7113657, "lon": -74.0142174 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619478, + "bounds": { + "minlat": 40.7112975, + "minlon": -74.0142235, + "maxlat": 40.7113423, + "maxlon": -74.0141427 + }, + "nodes": [ + 6551501722, + 7133483565, + 10288472801, + 6551501725, + 6551501723, + 6551501720, + 10288472800, + 7133483566, + 6551501721, + 6551501722 + ], + "geometry": [ + { "lat": 40.7113423, "lon": -74.0142211 }, + { "lat": 40.7113285, "lon": -74.0141883 }, + { "lat": 40.7113210, "lon": -74.0141704 }, + { "lat": 40.7113116, "lon": -74.0141478 }, + { "lat": 40.7113094, "lon": -74.0141427 }, + { "lat": 40.7112975, "lon": -74.0141514 }, + { "lat": 40.7113065, "lon": -74.0141729 }, + { "lat": 40.7113139, "lon": -74.0141906 }, + { "lat": 40.7113277, "lon": -74.0142235 }, + { "lat": 40.7113423, "lon": -74.0142211 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619479, + "bounds": { + "minlat": 40.7113392, + "minlon": -74.0142133, + "maxlat": 40.7113940, + "maxlon": -74.0140898 + }, + "nodes": [ + 6551501733, + 7133483562, + 10288472805, + 6551501732, + 6551501730, + 6551501731, + 6551501728, + 10288472804, + 7133483563, + 6551501729, + 6551501733 + ], + "geometry": [ + { "lat": 40.7113940, "lon": -74.0142128 }, + { "lat": 40.7113798, "lon": -74.0141790 }, + { "lat": 40.7113724, "lon": -74.0141614 }, + { "lat": 40.7113610, "lon": -74.0141341 }, + { "lat": 40.7113424, "lon": -74.0140898 }, + { "lat": 40.7113392, "lon": -74.0140903 }, + { "lat": 40.7113478, "lon": -74.0141109 }, + { "lat": 40.7113693, "lon": -74.0141620 }, + { "lat": 40.7113767, "lon": -74.0141796 }, + { "lat": 40.7113908, "lon": -74.0142133 }, + { "lat": 40.7113940, "lon": -74.0142128 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619480, + "bounds": { + "minlat": 40.7113273, + "minlon": -74.0142174, + "maxlat": 40.7113908, + "maxlon": -74.0141109 + }, + "nodes": [ + 6551501729, + 7133483563, + 10288472804, + 6551501728, + 6551501726, + 6551501727, + 10288472802, + 7133483564, + 6551501724, + 6551501729 + ], + "geometry": [ + { "lat": 40.7113908, "lon": -74.0142133 }, + { "lat": 40.7113767, "lon": -74.0141796 }, + { "lat": 40.7113693, "lon": -74.0141620 }, + { "lat": 40.7113478, "lon": -74.0141109 }, + { "lat": 40.7113273, "lon": -74.0141259 }, + { "lat": 40.7113306, "lon": -74.0141339 }, + { "lat": 40.7113443, "lon": -74.0141663 }, + { "lat": 40.7113518, "lon": -74.0141842 }, + { "lat": 40.7113657, "lon": -74.0142174 }, + { "lat": 40.7113908, "lon": -74.0142133 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619481, + "bounds": { + "minlat": 40.7113859, + "minlon": -74.0142092, + "maxlat": 40.7114399, + "maxlon": -74.0141228 + }, + "nodes": [ + 6551501739, + 6551501736, + 10288472806, + 7133483561, + 6551501737, + 6551501734, + 7133483560, + 10288472803, + 6551501739 + ], + "geometry": [ + { "lat": 40.7114052, "lon": -74.0141228 }, + { "lat": 40.7113859, "lon": -74.0141369 }, + { "lat": 40.7113945, "lon": -74.0141576 }, + { "lat": 40.7114018, "lon": -74.0141749 }, + { "lat": 40.7114162, "lon": -74.0142092 }, + { "lat": 40.7114399, "lon": -74.0142054 }, + { "lat": 40.7114253, "lon": -74.0141706 }, + { "lat": 40.7114181, "lon": -74.0141534 }, + { "lat": 40.7114052, "lon": -74.0141228 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619482, + "bounds": { + "minlat": 40.7113610, + "minlon": -74.0142128, + "maxlat": 40.7114162, + "maxlon": -74.0141208 + }, + "nodes": [ + 6551501737, + 7133483561, + 10288472806, + 6551501736, + 6551501735, + 6551501732, + 10288472805, + 7133483562, + 6551501733, + 6551501737 + ], + "geometry": [ + { "lat": 40.7114162, "lon": -74.0142092 }, + { "lat": 40.7114018, "lon": -74.0141749 }, + { "lat": 40.7113945, "lon": -74.0141576 }, + { "lat": 40.7113859, "lon": -74.0141369 }, + { "lat": 40.7113791, "lon": -74.0141208 }, + { "lat": 40.7113610, "lon": -74.0141341 }, + { "lat": 40.7113724, "lon": -74.0141614 }, + { "lat": 40.7113798, "lon": -74.0141790 }, + { "lat": 40.7113940, "lon": -74.0142128 }, + { "lat": 40.7114162, "lon": -74.0142092 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619483, + "bounds": { + "minlat": 40.7115454, + "minlon": -74.0141770, + "maxlat": 40.7116403, + "maxlon": -74.0139859 + }, + "nodes": [ + 6551501777, + 7133483552, + 10288472764, + 6551501778, + 6551501744, + 2824641690, + 6551501742, + 6551501743, + 10288472763, + 7133483553, + 6551501740, + 6551501777 + ], + "geometry": [ + { "lat": 40.7116403, "lon": -74.0141727 }, + { "lat": 40.7116245, "lon": -74.0141351 }, + { "lat": 40.7116176, "lon": -74.0141188 }, + { "lat": 40.7115619, "lon": -74.0139859 }, + { "lat": 40.7115454, "lon": -74.0139980 }, + { "lat": 40.7115592, "lon": -74.0140310 }, + { "lat": 40.7115538, "lon": -74.0140325 }, + { "lat": 40.7115798, "lon": -74.0140943 }, + { "lat": 40.7115920, "lon": -74.0141232 }, + { "lat": 40.7115990, "lon": -74.0141400 }, + { "lat": 40.7116145, "lon": -74.0141770 }, + { "lat": 40.7116403, "lon": -74.0141727 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619484, + "bounds": { + "minlat": 40.7115610, + "minlon": -74.0141808, + "maxlat": 40.7116145, + "maxlon": -74.0140943 + }, + "nodes": [ + 6551501740, + 7133483553, + 10288472763, + 6551501743, + 6551501741, + 10288472762, + 7133483554, + 6551501738, + 6551501740 + ], + "geometry": [ + { "lat": 40.7116145, "lon": -74.0141770 }, + { "lat": 40.7115990, "lon": -74.0141400 }, + { "lat": 40.7115920, "lon": -74.0141232 }, + { "lat": 40.7115798, "lon": -74.0140943 }, + { "lat": 40.7115610, "lon": -74.0141080 }, + { "lat": 40.7115691, "lon": -74.0141272 }, + { "lat": 40.7115760, "lon": -74.0141437 }, + { "lat": 40.7115916, "lon": -74.0141808 }, + { "lat": 40.7116145, "lon": -74.0141770 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619485, + "bounds": { + "minlat": 40.7115516, + "minlon": -74.0141675, + "maxlat": 40.7116934, + "maxlon": -74.0138706 + }, + "nodes": [ + 6551501748, + 7133483549, + 10288472769, + 10288473016, + 6551502699, + 6551502683, + 10288473019, + 10288472765, + 7133483550, + 6551501745, + 6551501748 + ], + "geometry": [ + { "lat": 40.7116934, "lon": -74.0141636 }, + { "lat": 40.7116773, "lon": -74.0141253 }, + { "lat": 40.7116706, "lon": -74.0141093 }, + { "lat": 40.7116024, "lon": -74.0139468 }, + { "lat": 40.7115704, "lon": -74.0138706 }, + { "lat": 40.7115516, "lon": -74.0138843 }, + { "lat": 40.7116152, "lon": -74.0140357 }, + { "lat": 40.7116478, "lon": -74.0141135 }, + { "lat": 40.7116546, "lon": -74.0141296 }, + { "lat": 40.7116705, "lon": -74.0141675 }, + { "lat": 40.7116934, "lon": -74.0141636 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619486, + "bounds": { + "minlat": 40.7115216, + "minlon": -74.0141721, + "maxlat": 40.7116705, + "maxlon": -74.0138655 + }, + "nodes": [ + 6551501745, + 7133483550, + 10288472765, + 10288473019, + 6551502683, + 6551500356, + 6551501779, + 10288472766, + 7133483551, + 6551501780, + 6551501745 + ], + "geometry": [ + { "lat": 40.7116705, "lon": -74.0141675 }, + { "lat": 40.7116546, "lon": -74.0141296 }, + { "lat": 40.7116478, "lon": -74.0141135 }, + { "lat": 40.7116152, "lon": -74.0140357 }, + { "lat": 40.7115516, "lon": -74.0138843 }, + { "lat": 40.7115437, "lon": -74.0138655 }, + { "lat": 40.7115216, "lon": -74.0138815 }, + { "lat": 40.7116209, "lon": -74.0141182 }, + { "lat": 40.7116278, "lon": -74.0141347 }, + { "lat": 40.7116435, "lon": -74.0141721 }, + { "lat": 40.7116705, "lon": -74.0141675 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619487, + "bounds": { + "minlat": 40.7115553, + "minlon": -74.0141593, + "maxlat": 40.7117446, + "maxlon": -74.0137562 + }, + "nodes": [ + 6551501751, + 7133483546, + 10288472767, + 6551501752, + 6551500458, + 2824641698, + 2824641697, + 6551501753, + 10288473015, + 6551501754, + 6551501768, + 10288473017, + 10288472770, + 7133483547, + 6551501765, + 6551501751 + ], + "geometry": [ + { "lat": 40.7117446, "lon": -74.0141545 }, + { "lat": 40.7117288, "lon": -74.0141164 }, + { "lat": 40.7117216, "lon": -74.0140993 }, + { "lat": 40.7117048, "lon": -74.0140598 }, + { "lat": 40.7116950, "lon": -74.0140353 }, + { "lat": 40.7116933, "lon": -74.0140358 }, + { "lat": 40.7116405, "lon": -74.0139103 }, + { "lat": 40.7116424, "lon": -74.0139098 }, + { "lat": 40.7116086, "lon": -74.0138298 }, + { "lat": 40.7115774, "lon": -74.0137562 }, + { "lat": 40.7115553, "lon": -74.0137723 }, + { "lat": 40.7115991, "lon": -74.0138768 }, + { "lat": 40.7116947, "lon": -74.0141046 }, + { "lat": 40.7117018, "lon": -74.0141214 }, + { "lat": 40.7117177, "lon": -74.0141593 }, + { "lat": 40.7117446, "lon": -74.0141545 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619488, + "bounds": { + "minlat": 40.7115452, + "minlon": -74.0141636, + "maxlat": 40.7117145, + "maxlon": -74.0137978 + }, + "nodes": [ + 6551501766, + 7133483548, + 10288472771, + 10288473018, + 6551501763, + 6551501747, + 6551502699, + 10288473016, + 10288472769, + 7133483549, + 6551501748, + 6551501766 + ], + "geometry": [ + { "lat": 40.7117145, "lon": -74.0141599 }, + { "lat": 40.7116986, "lon": -74.0141219 }, + { "lat": 40.7116916, "lon": -74.0141052 }, + { "lat": 40.7115989, "lon": -74.0138843 }, + { "lat": 40.7115626, "lon": -74.0137978 }, + { "lat": 40.7115452, "lon": -74.0138105 }, + { "lat": 40.7115704, "lon": -74.0138706 }, + { "lat": 40.7116024, "lon": -74.0139468 }, + { "lat": 40.7116706, "lon": -74.0141093 }, + { "lat": 40.7116773, "lon": -74.0141253 }, + { "lat": 40.7116934, "lon": -74.0141636 }, + { "lat": 40.7117145, "lon": -74.0141599 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619489, + "bounds": { + "minlat": 40.7114072, + "minlon": -74.0138984, + "maxlat": 40.7116950, + "maxlon": -74.0132383 + }, + "nodes": [ + 6551501760, + 6551502985, + 10288472877, + 6551502609, + 6551502610, + 6551501758, + 10288473012, + 6551501755, + 6551501757, + 10288472995, + 10288472924, + 6551501760 + ], + "geometry": [ + { "lat": 40.7114072, "lon": -74.0132477 }, + { "lat": 40.7114199, "lon": -74.0132383 }, + { "lat": 40.7114234, "lon": -74.0132479 }, + { "lat": 40.7114576, "lon": -74.0133283 }, + { "lat": 40.7115000, "lon": -74.0134293 }, + { "lat": 40.7115947, "lon": -74.0136550 }, + { "lat": 40.7116409, "lon": -74.0137654 }, + { "lat": 40.7116950, "lon": -74.0138946 }, + { "lat": 40.7116816, "lon": -74.0138984 }, + { "lat": 40.7116318, "lon": -74.0137803 }, + { "lat": 40.7114112, "lon": -74.0132570 }, + { "lat": 40.7114072, "lon": -74.0132477 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619490, + "bounds": { + "minlat": 40.7115704, + "minlon": -74.0139098, + "maxlat": 40.7116634, + "maxlon": -74.0137258 + }, + "nodes": [ + 6551501756, + 6551501759, + 10288473014, + 6551501762, + 6551501753, + 10288473015, + 6551501754, + 6551501756 + ], + "geometry": [ + { "lat": 40.7115704, "lon": -74.0137395 }, + { "lat": 40.7115892, "lon": -74.0137258 }, + { "lat": 40.7116203, "lon": -74.0138004 }, + { "lat": 40.7116634, "lon": -74.0139037 }, + { "lat": 40.7116424, "lon": -74.0139098 }, + { "lat": 40.7116086, "lon": -74.0138298 }, + { "lat": 40.7115774, "lon": -74.0137562 }, + { "lat": 40.7115704, "lon": -74.0137395 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619491, + "bounds": { + "minlat": 40.7113928, + "minlon": -74.0139037, + "maxlat": 40.7116783, + "maxlon": -74.0132502 + }, + "nodes": [ + 6551501767, + 6551501764, + 10288472925, + 10288473013, + 6551501761, + 6551501762, + 10288473014, + 6551501759, + 6551502644, + 6551502643, + 6551501770, + 10288472926, + 6551501767 + ], + "geometry": [ + { "lat": 40.7113928, "lon": -74.0132583 }, + { "lat": 40.7114037, "lon": -74.0132502 }, + { "lat": 40.7114076, "lon": -74.0132595 }, + { "lat": 40.7116297, "lon": -74.0137845 }, + { "lat": 40.7116783, "lon": -74.0138994 }, + { "lat": 40.7116634, "lon": -74.0139037 }, + { "lat": 40.7116203, "lon": -74.0138004 }, + { "lat": 40.7115892, "lon": -74.0137258 }, + { "lat": 40.7115467, "lon": -74.0136246 }, + { "lat": 40.7115208, "lon": -74.0135627 }, + { "lat": 40.7114464, "lon": -74.0133856 }, + { "lat": 40.7113967, "lon": -74.0132676 }, + { "lat": 40.7113928, "lon": -74.0132583 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619492, + "bounds": { + "minlat": 40.7114037, + "minlon": -74.0138994, + "maxlat": 40.7116816, + "maxlon": -74.0132477 + }, + "nodes": [ + 6551501764, + 6551501760, + 10288472924, + 10288472995, + 6551501757, + 6551501761, + 10288473013, + 10288472925, + 6551501764 + ], + "geometry": [ + { "lat": 40.7114037, "lon": -74.0132502 }, + { "lat": 40.7114072, "lon": -74.0132477 }, + { "lat": 40.7114112, "lon": -74.0132570 }, + { "lat": 40.7116318, "lon": -74.0137803 }, + { "lat": 40.7116816, "lon": -74.0138984 }, + { "lat": 40.7116783, "lon": -74.0138994 }, + { "lat": 40.7116297, "lon": -74.0137845 }, + { "lat": 40.7114076, "lon": -74.0132595 }, + { "lat": 40.7114037, "lon": -74.0132502 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619493, + "bounds": { + "minlat": 40.7113733, + "minlon": -74.0133994, + "maxlat": 40.7114464, + "maxlon": -74.0132583 + }, + "nodes": [ + 6551501771, + 6551501770, + 10288472926, + 6551501767, + 6551501772, + 10288472927, + 6551501771 + ], + "geometry": [ + { "lat": 40.7114277, "lon": -74.0133994 }, + { "lat": 40.7114464, "lon": -74.0133856 }, + { "lat": 40.7113967, "lon": -74.0132676 }, + { "lat": 40.7113928, "lon": -74.0132583 }, + { "lat": 40.7113733, "lon": -74.0132728 }, + { "lat": 40.7113773, "lon": -74.0132822 }, + { "lat": 40.7114277, "lon": -74.0133994 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619494, + "bounds": { + "minlat": 40.7113498, + "minlon": -74.0141599, + "maxlat": 40.7117177, + "maxlon": -74.0132889 + }, + "nodes": [ + 6551501781, + 10288472929, + 6551501784, + 6551501769, + 10288472928, + 6551501773, + 6551501768, + 10288473017, + 10288472770, + 7133483547, + 6551501765, + 6551501766, + 7133483548, + 10288472771, + 10288473018, + 6551501763, + 6551501781 + ], + "geometry": [ + { "lat": 40.7114248, "lon": -74.0134695 }, + { "lat": 40.7113538, "lon": -74.0132999 }, + { "lat": 40.7113498, "lon": -74.0132903 }, + { "lat": 40.7113516, "lon": -74.0132889 }, + { "lat": 40.7113557, "lon": -74.0132985 }, + { "lat": 40.7114106, "lon": -74.0134274 }, + { "lat": 40.7115553, "lon": -74.0137723 }, + { "lat": 40.7115991, "lon": -74.0138768 }, + { "lat": 40.7116947, "lon": -74.0141046 }, + { "lat": 40.7117018, "lon": -74.0141214 }, + { "lat": 40.7117177, "lon": -74.0141593 }, + { "lat": 40.7117145, "lon": -74.0141599 }, + { "lat": 40.7116986, "lon": -74.0141219 }, + { "lat": 40.7116916, "lon": -74.0141052 }, + { "lat": 40.7115989, "lon": -74.0138843 }, + { "lat": 40.7115626, "lon": -74.0137978 }, + { "lat": 40.7114248, "lon": -74.0134695 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619495, + "bounds": { + "minlat": 40.7114144, + "minlon": -74.0138029, + "maxlat": 40.7115362, + "maxlon": -74.0135435 + }, + "nodes": [ + 6551500357, + 6551502685, + 6551502702, + 6551501775, + 6551501776, + 6551500357 + ], + "geometry": [ + { "lat": 40.7115175, "lon": -74.0138029 }, + { "lat": 40.7115211, "lon": -74.0138003 }, + { "lat": 40.7115362, "lon": -74.0137891 }, + { "lat": 40.7114331, "lon": -74.0135435 }, + { "lat": 40.7114144, "lon": -74.0135572 }, + { "lat": 40.7115175, "lon": -74.0138029 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619496, + "bounds": { + "minlat": 40.7113516, + "minlon": -74.0134274, + "maxlat": 40.7114327, + "maxlon": -74.0132728 + }, + "nodes": [ + 6551501773, + 6551501774, + 6551501771, + 10288472927, + 6551501772, + 6551501769, + 10288472928, + 6551501773 + ], + "geometry": [ + { "lat": 40.7114106, "lon": -74.0134274 }, + { "lat": 40.7114327, "lon": -74.0134113 }, + { "lat": 40.7114277, "lon": -74.0133994 }, + { "lat": 40.7113773, "lon": -74.0132822 }, + { "lat": 40.7113733, "lon": -74.0132728 }, + { "lat": 40.7113516, "lon": -74.0132889 }, + { "lat": 40.7113557, "lon": -74.0132985 }, + { "lat": 40.7114106, "lon": -74.0134274 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619497, + "bounds": { + "minlat": 40.7113317, + "minlon": -74.0134822, + "maxlat": 40.7114248, + "maxlon": -74.0132903 + }, + "nodes": [ + 6551501783, + 6551501784, + 10288472929, + 6551501781, + 6551501782, + 6551502717, + 6551502720, + 10288472920, + 6551501783 + ], + "geometry": [ + { "lat": 40.7113317, "lon": -74.0133037 }, + { "lat": 40.7113498, "lon": -74.0132903 }, + { "lat": 40.7113538, "lon": -74.0132999 }, + { "lat": 40.7114248, "lon": -74.0134695 }, + { "lat": 40.7114074, "lon": -74.0134822 }, + { "lat": 40.7113952, "lon": -74.0134530 }, + { "lat": 40.7113607, "lon": -74.0133716 }, + { "lat": 40.7113358, "lon": -74.0133134 }, + { "lat": 40.7113317, "lon": -74.0133037 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619498, + "bounds": { + "minlat": 40.7112888, + "minlon": -74.0141727, + "maxlat": 40.7116435, + "maxlon": -74.0133326 + }, + "nodes": [ + 6551501789, + 10288472922, + 6551501790, + 6551501786, + 10288472921, + 6551501787, + 6551501779, + 10288472766, + 7133483551, + 6551501780, + 6551501777, + 7133483552, + 10288472764, + 6551501778, + 6551501789 + ], + "geometry": [ + { "lat": 40.7113709, "lon": -74.0135309 }, + { "lat": 40.7112930, "lon": -74.0133454 }, + { "lat": 40.7112888, "lon": -74.0133355 }, + { "lat": 40.7112929, "lon": -74.0133326 }, + { "lat": 40.7112969, "lon": -74.0133424 }, + { "lat": 40.7113398, "lon": -74.0134485 }, + { "lat": 40.7115216, "lon": -74.0138815 }, + { "lat": 40.7116209, "lon": -74.0141182 }, + { "lat": 40.7116278, "lon": -74.0141347 }, + { "lat": 40.7116435, "lon": -74.0141721 }, + { "lat": 40.7116403, "lon": -74.0141727 }, + { "lat": 40.7116245, "lon": -74.0141351 }, + { "lat": 40.7116176, "lon": -74.0141188 }, + { "lat": 40.7115619, "lon": -74.0139859 }, + { "lat": 40.7113709, "lon": -74.0135309 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619499, + "bounds": { + "minlat": 40.7112929, + "minlon": -74.0134485, + "maxlat": 40.7113620, + "maxlon": -74.0133175 + }, + "nodes": [ + 6551501787, + 6551500361, + 6551502704, + 10288472923, + 6551501785, + 6551501786, + 10288472921, + 6551501787 + ], + "geometry": [ + { "lat": 40.7113398, "lon": -74.0134485 }, + { "lat": 40.7113620, "lon": -74.0134326 }, + { "lat": 40.7113421, "lon": -74.0133854 }, + { "lat": 40.7113173, "lon": -74.0133272 }, + { "lat": 40.7113131, "lon": -74.0133175 }, + { "lat": 40.7112929, "lon": -74.0133326 }, + { "lat": 40.7112969, "lon": -74.0133424 }, + { "lat": 40.7113398, "lon": -74.0134485 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619500, + "bounds": { + "minlat": 40.7113131, + "minlon": -74.0133854, + "maxlat": 40.7113607, + "maxlon": -74.0133037 + }, + "nodes": [ + 6551502704, + 6551502720, + 10288472920, + 6551501783, + 6551501785, + 10288472923, + 6551502704 + ], + "geometry": [ + { "lat": 40.7113421, "lon": -74.0133854 }, + { "lat": 40.7113607, "lon": -74.0133716 }, + { "lat": 40.7113358, "lon": -74.0133134 }, + { "lat": 40.7113317, "lon": -74.0133037 }, + { "lat": 40.7113131, "lon": -74.0133175 }, + { "lat": 40.7113173, "lon": -74.0133272 }, + { "lat": 40.7113421, "lon": -74.0133854 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619501, + "bounds": { + "minlat": 40.7112105, + "minlon": -74.0135213, + "maxlat": 40.7113038, + "maxlon": -74.0133655 + }, + "nodes": [ + 6551501791, + 6551502657, + 10288472937, + 6551501794, + 6551501800, + 10288472933, + 6551501799, + 6551501791 + ], + "geometry": [ + { "lat": 40.7113038, "lon": -74.0134951 }, + { "lat": 40.7112901, "lon": -74.0134627 }, + { "lat": 40.7112526, "lon": -74.0133753 }, + { "lat": 40.7112484, "lon": -74.0133655 }, + { "lat": 40.7112105, "lon": -74.0133936 }, + { "lat": 40.7112148, "lon": -74.0134032 }, + { "lat": 40.7112679, "lon": -74.0135213 }, + { "lat": 40.7113038, "lon": -74.0134951 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619502, + "bounds": { + "minlat": 40.7112674, + "minlon": -74.0135463, + "maxlat": 40.7113709, + "maxlon": -74.0133355 + }, + "nodes": [ + 6551502681, + 6551501789, + 10288472922, + 6551501790, + 6551501793, + 10288472938, + 6551502684, + 6551502681 + ], + "geometry": [ + { "lat": 40.7113498, "lon": -74.0135463 }, + { "lat": 40.7113709, "lon": -74.0135309 }, + { "lat": 40.7112930, "lon": -74.0133454 }, + { "lat": 40.7112888, "lon": -74.0133355 }, + { "lat": 40.7112674, "lon": -74.0133514 }, + { "lat": 40.7112716, "lon": -74.0133612 }, + { "lat": 40.7113089, "lon": -74.0134490 }, + { "lat": 40.7113498, "lon": -74.0135463 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619503, + "bounds": { + "minlat": 40.7113742, + "minlon": -74.0138196, + "maxlat": 40.7114586, + "maxlon": -74.0136493 + }, + "nodes": [ + 6551501797, + 6551500349, + 6551500345, + 6551500346, + 6551501797 + ], + "geometry": [ + { "lat": 40.7114400, "lon": -74.0138196 }, + { "lat": 40.7114586, "lon": -74.0138055 }, + { "lat": 40.7113931, "lon": -74.0136493 }, + { "lat": 40.7113742, "lon": -74.0136630 }, + { "lat": 40.7114400, "lon": -74.0138196 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619504, + "bounds": { + "minlat": 40.7112484, + "minlon": -74.0134627, + "maxlat": 40.7113089, + "maxlon": -74.0133514 + }, + "nodes": [ + 6551502657, + 6551502684, + 10288472938, + 6551501793, + 6551501794, + 10288472937, + 6551502657 + ], + "geometry": [ + { "lat": 40.7112901, "lon": -74.0134627 }, + { "lat": 40.7113089, "lon": -74.0134490 }, + { "lat": 40.7112716, "lon": -74.0133612 }, + { "lat": 40.7112674, "lon": -74.0133514 }, + { "lat": 40.7112484, "lon": -74.0133655 }, + { "lat": 40.7112526, "lon": -74.0133753 }, + { "lat": 40.7112901, "lon": -74.0134627 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619505, + "bounds": { + "minlat": 40.7111747, + "minlon": -74.0135729, + "maxlat": 40.7112753, + "maxlon": -74.0133958 + }, + "nodes": [ + 6551501806, + 6551501808, + 10288472935, + 6551501805, + 10288472930, + 10288472934, + 6551501804, + 6551501806 + ], + "geometry": [ + { "lat": 40.7112404, "lon": -74.0135729 }, + { "lat": 40.7112368, "lon": -74.0135645 }, + { "lat": 40.7111791, "lon": -74.0134302 }, + { "lat": 40.7111747, "lon": -74.0134201 }, + { "lat": 40.7112075, "lon": -74.0133958 }, + { "lat": 40.7112119, "lon": -74.0134057 }, + { "lat": 40.7112753, "lon": -74.0135475 }, + { "lat": 40.7112404, "lon": -74.0135729 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619506, + "bounds": { + "minlat": 40.7112075, + "minlon": -74.0139687, + "maxlat": 40.7114553, + "maxlon": -74.0133936 + }, + "nodes": [ + 6551501804, + 6551501801, + 6551501802, + 6551501799, + 10288472933, + 6551501800, + 10288472930, + 10288472934, + 6551501804 + ], + "geometry": [ + { "lat": 40.7112753, "lon": -74.0135475 }, + { "lat": 40.7114523, "lon": -74.0139687 }, + { "lat": 40.7114553, "lon": -74.0139678 }, + { "lat": 40.7112679, "lon": -74.0135213 }, + { "lat": 40.7112148, "lon": -74.0134032 }, + { "lat": 40.7112105, "lon": -74.0133936 }, + { "lat": 40.7112075, "lon": -74.0133958 }, + { "lat": 40.7112119, "lon": -74.0134057 }, + { "lat": 40.7112753, "lon": -74.0135475 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619507, + "bounds": { + "minlat": 40.7111390, + "minlon": -74.0139922, + "maxlat": 40.7113725, + "maxlon": -74.0134447 + }, + "nodes": [ + 6551501839, + 10288472943, + 6551501813, + 6551500325, + 6551500321, + 6551501842, + 10288472944, + 10288472942, + 6551501839 + ], + "geometry": [ + { "lat": 40.7111415, "lon": -74.0134447 }, + { "lat": 40.7111459, "lon": -74.0134550 }, + { "lat": 40.7112138, "lon": -74.0136132 }, + { "lat": 40.7113725, "lon": -74.0139913 }, + { "lat": 40.7113694, "lon": -74.0139922 }, + { "lat": 40.7112081, "lon": -74.0136078 }, + { "lat": 40.7111434, "lon": -74.0134568 }, + { "lat": 40.7111390, "lon": -74.0134466 }, + { "lat": 40.7111415, "lon": -74.0134447 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619508, + "bounds": { + "minlat": 40.7111556, + "minlon": -74.0135781, + "maxlat": 40.7112368, + "maxlon": -74.0134201 + }, + "nodes": [ + 6551501808, + 10288472935, + 6551501805, + 6551501812, + 10288472936, + 6551501811, + 6551501808 + ], + "geometry": [ + { "lat": 40.7112368, "lon": -74.0135645 }, + { "lat": 40.7111791, "lon": -74.0134302 }, + { "lat": 40.7111747, "lon": -74.0134201 }, + { "lat": 40.7111556, "lon": -74.0134343 }, + { "lat": 40.7111600, "lon": -74.0134445 }, + { "lat": 40.7112181, "lon": -74.0135781 }, + { "lat": 40.7112368, "lon": -74.0135645 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619509, + "bounds": { + "minlat": 40.7112491, + "minlon": -74.0138233, + "maxlat": 40.7113395, + "maxlon": -74.0136385 + }, + "nodes": [ + 6551500333, + 6551501818, + 6551501815, + 6551501816, + 6551500333 + ], + "geometry": [ + { "lat": 40.7113209, "lon": -74.0138233 }, + { "lat": 40.7113395, "lon": -74.0138098 }, + { "lat": 40.7112678, "lon": -74.0136385 }, + { "lat": 40.7112491, "lon": -74.0136520 }, + { "lat": 40.7113209, "lon": -74.0138233 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619510, + "bounds": { + "minlat": 40.7111415, + "minlon": -74.0136132, + "maxlat": 40.7112283, + "maxlon": -74.0134343 + }, + "nodes": [ + 6551501813, + 6551500328, + 6551501811, + 10288472936, + 6551501812, + 6551501839, + 10288472943, + 6551501813 + ], + "geometry": [ + { "lat": 40.7112138, "lon": -74.0136132 }, + { "lat": 40.7112283, "lon": -74.0136023 }, + { "lat": 40.7112181, "lon": -74.0135781 }, + { "lat": 40.7111600, "lon": -74.0134445 }, + { "lat": 40.7111556, "lon": -74.0134343 }, + { "lat": 40.7111415, "lon": -74.0134447 }, + { "lat": 40.7111459, "lon": -74.0134550 }, + { "lat": 40.7112138, "lon": -74.0136132 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619511, + "bounds": { + "minlat": 40.7110338, + "minlon": -74.0136374, + "maxlat": 40.7110937, + "maxlon": -74.0135155 + }, + "nodes": [ + 6551501822, + 6551501821, + 10288472945, + 6551501824, + 6551501849, + 10288472940, + 6551501852, + 6551501822 + ], + "geometry": [ + { "lat": 40.7110937, "lon": -74.0136287 }, + { "lat": 40.7110797, "lon": -74.0135954 }, + { "lat": 40.7110507, "lon": -74.0135262 }, + { "lat": 40.7110462, "lon": -74.0135155 }, + { "lat": 40.7110338, "lon": -74.0135247 }, + { "lat": 40.7110384, "lon": -74.0135355 }, + { "lat": 40.7110817, "lon": -74.0136374 }, + { "lat": 40.7110937, "lon": -74.0136287 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619512, + "bounds": { + "minlat": 40.7110846, + "minlon": -74.0140783, + "maxlat": 40.7113375, + "maxlon": -74.0134853 + }, + "nodes": [ + 6551501828, + 10288472946, + 10288472947, + 6551501838, + 6551500311, + 6551500306, + 6551501827, + 10288472948, + 6551501828 + ], + "geometry": [ + { "lat": 40.7110846, "lon": -74.0134870 }, + { "lat": 40.7110868, "lon": -74.0134853 }, + { "lat": 40.7110913, "lon": -74.0134958 }, + { "lat": 40.7111590, "lon": -74.0136528 }, + { "lat": 40.7113375, "lon": -74.0140777 }, + { "lat": 40.7113339, "lon": -74.0140783 }, + { "lat": 40.7111297, "lon": -74.0135912 }, + { "lat": 40.7110892, "lon": -74.0134976 }, + { "lat": 40.7110846, "lon": -74.0134870 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619513, + "bounds": { + "minlat": 40.7110649, + "minlon": -74.0136062, + "maxlat": 40.7111297, + "maxlon": -74.0134870 + }, + "nodes": [ + 6551501827, + 10288472948, + 6551501828, + 6551501825, + 10288472949, + 6551501826, + 6551501823, + 6551501827 + ], + "geometry": [ + { "lat": 40.7111297, "lon": -74.0135912 }, + { "lat": 40.7110892, "lon": -74.0134976 }, + { "lat": 40.7110846, "lon": -74.0134870 }, + { "lat": 40.7110649, "lon": -74.0135016 }, + { "lat": 40.7110694, "lon": -74.0135123 }, + { "lat": 40.7110988, "lon": -74.0135815 }, + { "lat": 40.7111092, "lon": -74.0136062 }, + { "lat": 40.7111297, "lon": -74.0135912 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619514, + "bounds": { + "minlat": 40.7110462, + "minlon": -74.0135954, + "maxlat": 40.7110988, + "maxlon": -74.0135016 + }, + "nodes": [ + 6551501826, + 10288472949, + 6551501825, + 6551501824, + 10288472945, + 6551501821, + 6551501826 + ], + "geometry": [ + { "lat": 40.7110988, "lon": -74.0135815 }, + { "lat": 40.7110694, "lon": -74.0135123 }, + { "lat": 40.7110649, "lon": -74.0135016 }, + { "lat": 40.7110462, "lon": -74.0135155 }, + { "lat": 40.7110507, "lon": -74.0135262 }, + { "lat": 40.7110797, "lon": -74.0135954 }, + { "lat": 40.7110988, "lon": -74.0135815 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619515, + "bounds": { + "minlat": 40.7111298, + "minlon": -74.0138443, + "maxlat": 40.7112033, + "maxlon": -74.0137009 + }, + "nodes": [ + 6551501835, + 6551501836, + 6551501833, + 6551501834, + 6551501835 + ], + "geometry": [ + { "lat": 40.7111489, "lon": -74.0137009 }, + { "lat": 40.7111298, "lon": -74.0137148 }, + { "lat": 40.7111842, "lon": -74.0138443 }, + { "lat": 40.7112033, "lon": -74.0138304 }, + { "lat": 40.7111489, "lon": -74.0137009 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619516, + "bounds": { + "minlat": 40.7112184, + "minlon": -74.0138463, + "maxlat": 40.7112833, + "maxlon": -74.0137236 + }, + "nodes": [ + 6551501831, + 6551501832, + 6551501829, + 6551501830, + 6551501831 + ], + "geometry": [ + { "lat": 40.7112184, "lon": -74.0137378 }, + { "lat": 40.7112377, "lon": -74.0137236 }, + { "lat": 40.7112833, "lon": -74.0138322 }, + { "lat": 40.7112639, "lon": -74.0138463 }, + { "lat": 40.7112184, "lon": -74.0137378 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619517, + "bounds": { + "minlat": 40.7111245, + "minlon": -74.0136184, + "maxlat": 40.7112081, + "maxlon": -74.0134466 + }, + "nodes": [ + 6551501841, + 6551501842, + 10288472944, + 10288472942, + 6551501843, + 10288472950, + 6551502738, + 6551501841 + ], + "geometry": [ + { "lat": 40.7111936, "lon": -74.0136184 }, + { "lat": 40.7112081, "lon": -74.0136078 }, + { "lat": 40.7111434, "lon": -74.0134568 }, + { "lat": 40.7111390, "lon": -74.0134466 }, + { "lat": 40.7111245, "lon": -74.0134574 }, + { "lat": 40.7111290, "lon": -74.0134676 }, + { "lat": 40.7111583, "lon": -74.0135344 }, + { "lat": 40.7111936, "lon": -74.0136184 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619518, + "bounds": { + "minlat": 40.7110868, + "minlon": -74.0136528, + "maxlat": 40.7111771, + "maxlon": -74.0134719 + }, + "nodes": [ + 6551501840, + 6551500315, + 6551502722, + 10288472951, + 6551501844, + 10288472946, + 10288472947, + 6551501838, + 6551501840 + ], + "geometry": [ + { "lat": 40.7111771, "lon": -74.0136395 }, + { "lat": 40.7111731, "lon": -74.0136299 }, + { "lat": 40.7111389, "lon": -74.0135485 }, + { "lat": 40.7111094, "lon": -74.0134823 }, + { "lat": 40.7111048, "lon": -74.0134719 }, + { "lat": 40.7110868, "lon": -74.0134853 }, + { "lat": 40.7110913, "lon": -74.0134958 }, + { "lat": 40.7111590, "lon": -74.0136528 }, + { "lat": 40.7111771, "lon": -74.0136395 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619519, + "bounds": { + "minlat": 40.7110006, + "minlon": -74.0136322, + "maxlat": 40.7110538, + "maxlon": -74.0135357 + }, + "nodes": [ + 6551502754, + 6551502753, + 6551502774, + 8213941410, + 6551501846, + 6551501860, + 8213941411, + 6551502754 + ], + "geometry": [ + { "lat": 40.7110350, "lon": -74.0136322 }, + { "lat": 40.7110385, "lon": -74.0136296 }, + { "lat": 40.7110538, "lon": -74.0136185 }, + { "lat": 40.7110235, "lon": -74.0135466 }, + { "lat": 40.7110189, "lon": -74.0135357 }, + { "lat": 40.7110006, "lon": -74.0135493 }, + { "lat": 40.7110049, "lon": -74.0135604 }, + { "lat": 40.7110350, "lon": -74.0136322 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619520, + "bounds": { + "minlat": 40.7111048, + "minlon": -74.0135485, + "maxlat": 40.7111583, + "maxlon": -74.0134574 + }, + "nodes": [ + 6551502722, + 6551502738, + 10288472950, + 6551501843, + 6551501844, + 10288472951, + 6551502722 + ], + "geometry": [ + { "lat": 40.7111389, "lon": -74.0135485 }, + { "lat": 40.7111583, "lon": -74.0135344 }, + { "lat": 40.7111290, "lon": -74.0134676 }, + { "lat": 40.7111245, "lon": -74.0134574 }, + { "lat": 40.7111048, "lon": -74.0134719 }, + { "lat": 40.7111094, "lon": -74.0134823 }, + { "lat": 40.7111389, "lon": -74.0135485 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619521, + "bounds": { + "minlat": 40.7110314, + "minlon": -74.0140886, + "maxlat": 40.7112709, + "maxlon": -74.0135247 + }, + "nodes": [ + 6551501851, + 6551501852, + 10288472940, + 6551501849, + 6551501850, + 10288472941, + 6551501847, + 6551501848, + 6551501851 + ], + "geometry": [ + { "lat": 40.7112709, "lon": -74.0140881 }, + { "lat": 40.7110817, "lon": -74.0136374 }, + { "lat": 40.7110384, "lon": -74.0135355 }, + { "lat": 40.7110338, "lon": -74.0135247 }, + { "lat": 40.7110314, "lon": -74.0135265 }, + { "lat": 40.7110359, "lon": -74.0135372 }, + { "lat": 40.7111029, "lon": -74.0136960 }, + { "lat": 40.7112676, "lon": -74.0140886 }, + { "lat": 40.7112709, "lon": -74.0140881 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619522, + "bounds": { + "minlat": 40.7110189, + "minlon": -74.0137053, + "maxlat": 40.7111029, + "maxlon": -74.0135265 + }, + "nodes": [ + 6551501845, + 6551501847, + 10288472941, + 6551501850, + 6551501846, + 8213941410, + 6551502774, + 6551501845 + ], + "geometry": [ + { "lat": 40.7110903, "lon": -74.0137053 }, + { "lat": 40.7111029, "lon": -74.0136960 }, + { "lat": 40.7110359, "lon": -74.0135372 }, + { "lat": 40.7110314, "lon": -74.0135265 }, + { "lat": 40.7110189, "lon": -74.0135357 }, + { "lat": 40.7110235, "lon": -74.0135466 }, + { "lat": 40.7110538, "lon": -74.0136185 }, + { "lat": 40.7110903, "lon": -74.0137053 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619523, + "bounds": { + "minlat": 40.7111976, + "minlon": -74.0140969, + "maxlat": 40.7112291, + "maxlon": -74.0140484 + }, + "nodes": [ + 6551501863, + 6551501857, + 6551501858, + 6551501864, + 6551501863 + ], + "geometry": [ + { "lat": 40.7111976, "lon": -74.0140572 }, + { "lat": 40.7112097, "lon": -74.0140484 }, + { "lat": 40.7112291, "lon": -74.0140946 }, + { "lat": 40.7112143, "lon": -74.0140969 }, + { "lat": 40.7111976, "lon": -74.0140572 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619524, + "bounds": { + "minlat": 40.7111164, + "minlon": -74.0139190, + "maxlat": 40.7111741, + "maxlon": -74.0138123 + }, + "nodes": [ + 6551501855, + 6551501856, + 6551501853, + 6551501854, + 6551501855 + ], + "geometry": [ + { "lat": 40.7111553, "lon": -74.0139190 }, + { "lat": 40.7111741, "lon": -74.0139052 }, + { "lat": 40.7111351, "lon": -74.0138123 }, + { "lat": 40.7111164, "lon": -74.0138261 }, + { "lat": 40.7111553, "lon": -74.0139190 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619525, + "bounds": { + "minlat": 40.7109885, + "minlon": -74.0137114, + "maxlat": 40.7110645, + "maxlon": -74.0135493 + }, + "nodes": [ + 6551501866, + 6551501859, + 6551502754, + 8213941411, + 6551501860, + 6551501865, + 10288472957, + 6551501866 + ], + "geometry": [ + { "lat": 40.7110525, "lon": -74.0137114 }, + { "lat": 40.7110645, "lon": -74.0137026 }, + { "lat": 40.7110350, "lon": -74.0136322 }, + { "lat": 40.7110049, "lon": -74.0135604 }, + { "lat": 40.7110006, "lon": -74.0135493 }, + { "lat": 40.7109885, "lon": -74.0135583 }, + { "lat": 40.7109930, "lon": -74.0135693 }, + { "lat": 40.7110525, "lon": -74.0137114 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619526, + "bounds": { + "minlat": 40.7111558, + "minlon": -74.0140998, + "maxlat": 40.7112111, + "maxlon": -74.0139949 + }, + "nodes": [ + 6551502752, + 6551501862, + 6551501861, + 6551502749, + 6551502752 + ], + "geometry": [ + { "lat": 40.7111558, "lon": -74.0140038 }, + { "lat": 40.7111680, "lon": -74.0139949 }, + { "lat": 40.7112111, "lon": -74.0140974 }, + { "lat": 40.7111961, "lon": -74.0140998 }, + { "lat": 40.7111558, "lon": -74.0140038 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619527, + "bounds": { + "minlat": 40.7109734, + "minlon": -74.0136985, + "maxlat": 40.7110399, + "maxlon": -74.0135604 + }, + "nodes": [ + 6551501869, + 6551501867, + 10288472958, + 10288472955, + 6551501870, + 8213941413, + 6551501869 + ], + "geometry": [ + { "lat": 40.7110277, "lon": -74.0136985 }, + { "lat": 40.7110399, "lon": -74.0136895 }, + { "lat": 40.7109904, "lon": -74.0135715 }, + { "lat": 40.7109857, "lon": -74.0135604 }, + { "lat": 40.7109734, "lon": -74.0135694 }, + { "lat": 40.7109782, "lon": -74.0135806 }, + { "lat": 40.7110277, "lon": -74.0136985 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619528, + "bounds": { + "minlat": 40.7109857, + "minlon": -74.0140974, + "maxlat": 40.7112143, + "maxlon": -74.0135583 + }, + "nodes": [ + 10288472955, + 6551501865, + 10288472957, + 6551501866, + 6551501863, + 6551501864, + 6551501861, + 6551501862, + 6551501867, + 10288472958, + 10288472955 + ], + "geometry": [ + { "lat": 40.7109857, "lon": -74.0135604 }, + { "lat": 40.7109885, "lon": -74.0135583 }, + { "lat": 40.7109930, "lon": -74.0135693 }, + { "lat": 40.7110525, "lon": -74.0137114 }, + { "lat": 40.7111976, "lon": -74.0140572 }, + { "lat": 40.7112143, "lon": -74.0140969 }, + { "lat": 40.7112111, "lon": -74.0140974 }, + { "lat": 40.7111680, "lon": -74.0139949 }, + { "lat": 40.7110399, "lon": -74.0136895 }, + { "lat": 40.7109904, "lon": -74.0135715 }, + { "lat": 40.7109857, "lon": -74.0135604 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619529, + "bounds": { + "minlat": 40.7109420, + "minlon": -74.0137485, + "maxlat": 40.7110200, + "maxlon": -74.0135837 + }, + "nodes": [ + 6551501876, + 6551501873, + 6551501874, + 8213941414, + 6551501871, + 6551502037, + 10288472953, + 6551501876 + ], + "geometry": [ + { "lat": 40.7110079, "lon": -74.0137485 }, + { "lat": 40.7110200, "lon": -74.0137396 }, + { "lat": 40.7110148, "lon": -74.0137274 }, + { "lat": 40.7109592, "lon": -74.0135947 }, + { "lat": 40.7109543, "lon": -74.0135837 }, + { "lat": 40.7109420, "lon": -74.0135927 }, + { "lat": 40.7109468, "lon": -74.0136040 }, + { "lat": 40.7110079, "lon": -74.0137485 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619530, + "bounds": { + "minlat": 40.7109543, + "minlon": -74.0137274, + "maxlat": 40.7110339, + "maxlon": -74.0135694 + }, + "nodes": [ + 6551501874, + 6551501872, + 6551501869, + 8213941413, + 6551501870, + 6551501871, + 8213941414, + 6551501874 + ], + "geometry": [ + { "lat": 40.7110148, "lon": -74.0137274 }, + { "lat": 40.7110339, "lon": -74.0137134 }, + { "lat": 40.7110277, "lon": -74.0136985 }, + { "lat": 40.7109782, "lon": -74.0135806 }, + { "lat": 40.7109734, "lon": -74.0135694 }, + { "lat": 40.7109543, "lon": -74.0135837 }, + { "lat": 40.7109592, "lon": -74.0135947 }, + { "lat": 40.7110148, "lon": -74.0137274 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619531, + "bounds": { + "minlat": 40.7110685, + "minlon": -74.0125667, + "maxlat": 40.7111340, + "maxlon": -74.0124301 + }, + "nodes": [ + 6551501881, + 6551502970, + 10285341179, + 10285341220, + 6551501882, + 7133507028, + 10285341222, + 10285341180, + 6551501881 + ], + "geometry": [ + { "lat": 40.7111224, "lon": -74.0125667 }, + { "lat": 40.7111340, "lon": -74.0125583 }, + { "lat": 40.7110985, "lon": -74.0124713 }, + { "lat": 40.7110949, "lon": -74.0124624 }, + { "lat": 40.7110817, "lon": -74.0124301 }, + { "lat": 40.7110685, "lon": -74.0124349 }, + { "lat": 40.7110819, "lon": -74.0124677 }, + { "lat": 40.7110912, "lon": -74.0124905 }, + { "lat": 40.7111224, "lon": -74.0125667 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619532, + "bounds": { + "minlat": 40.7110618, + "minlon": -74.0139125, + "maxlat": 40.7111116, + "maxlon": -74.0138253 + }, + "nodes": [ + 6551501880, + 6551501877, + 6551501878, + 6551501875, + 6551501880 + ], + "geometry": [ + { "lat": 40.7110925, "lon": -74.0139125 }, + { "lat": 40.7111116, "lon": -74.0138985 }, + { "lat": 40.7110809, "lon": -74.0138253 }, + { "lat": 40.7110618, "lon": -74.0138393 }, + { "lat": 40.7110925, "lon": -74.0139125 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619533, + "bounds": { + "minlat": 40.7110708, + "minlon": -74.0125777, + "maxlat": 40.7111196, + "maxlon": -74.0124514 + }, + "nodes": [ + 6551501887, + 6551501885, + 10285341190, + 10285341221, + 6551500142, + 6551584145, + 6551500147, + 6551501888, + 10285341182, + 6551501887 + ], + "geometry": [ + { "lat": 40.7111074, "lon": -74.0125777 }, + { "lat": 40.7111196, "lon": -74.0125688 }, + { "lat": 40.7110889, "lon": -74.0124949 }, + { "lat": 40.7110782, "lon": -74.0124692 }, + { "lat": 40.7110708, "lon": -74.0124514 }, + { "lat": 40.7110757, "lon": -74.0124703 }, + { "lat": 40.7110803, "lon": -74.0124888 }, + { "lat": 40.7110717, "lon": -74.0124923 }, + { "lat": 40.7110784, "lon": -74.0125084 }, + { "lat": 40.7111074, "lon": -74.0125777 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619534, + "bounds": { + "minlat": 40.7110649, + "minlon": -74.0125688, + "maxlat": 40.7111224, + "maxlon": -74.0124349 + }, + "nodes": [ + 6551500142, + 10285341128, + 7133507028, + 10285341222, + 10285341180, + 6551501881, + 6551501885, + 10285341190, + 10285341221, + 6551500142 + ], + "geometry": [ + { "lat": 40.7110708, "lon": -74.0124514 }, + { "lat": 40.7110649, "lon": -74.0124361 }, + { "lat": 40.7110685, "lon": -74.0124349 }, + { "lat": 40.7110819, "lon": -74.0124677 }, + { "lat": 40.7110912, "lon": -74.0124905 }, + { "lat": 40.7111224, "lon": -74.0125667 }, + { "lat": 40.7111196, "lon": -74.0125688 }, + { "lat": 40.7110889, "lon": -74.0124949 }, + { "lat": 40.7110782, "lon": -74.0124692 }, + { "lat": 40.7110708, "lon": -74.0124514 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619535, + "bounds": { + "minlat": 40.7110041, + "minlon": -74.0126076, + "maxlat": 40.7110886, + "maxlon": -74.0124361 + }, + "nodes": [ + 6551501893, + 10285341128, + 6551500142, + 6551500145, + 6551584146, + 6551501892, + 6551501889, + 10285341191, + 6551501890, + 6551501896, + 10285341185, + 7133507027, + 6551501893 + ], + "geometry": [ + { "lat": 40.7110041, "lon": -74.0124579 }, + { "lat": 40.7110649, "lon": -74.0124361 }, + { "lat": 40.7110708, "lon": -74.0124514 }, + { "lat": 40.7110231, "lon": -74.0124709 }, + { "lat": 40.7110276, "lon": -74.0124901 }, + { "lat": 40.7110319, "lon": -74.0125085 }, + { "lat": 40.7110508, "lon": -74.0125008 }, + { "lat": 40.7110588, "lon": -74.0125200 }, + { "lat": 40.7110886, "lon": -74.0125915 }, + { "lat": 40.7110665, "lon": -74.0126076 }, + { "lat": 40.7110342, "lon": -74.0125307 }, + { "lat": 40.7110078, "lon": -74.0124679 }, + { "lat": 40.7110041, "lon": -74.0124579 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619536, + "bounds": { + "minlat": 40.7110508, + "minlon": -74.0125915, + "maxlat": 40.7111074, + "maxlon": -74.0124923 + }, + "nodes": [ + 6551501890, + 6551501887, + 10285341182, + 6551501888, + 6551501889, + 10285341191, + 6551501890 + ], + "geometry": [ + { "lat": 40.7110886, "lon": -74.0125915 }, + { "lat": 40.7111074, "lon": -74.0125777 }, + { "lat": 40.7110784, "lon": -74.0125084 }, + { "lat": 40.7110717, "lon": -74.0124923 }, + { "lat": 40.7110508, "lon": -74.0125008 }, + { "lat": 40.7110588, "lon": -74.0125200 }, + { "lat": 40.7110886, "lon": -74.0125915 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619537, + "bounds": { + "minlat": 40.7109812, + "minlon": -74.0126222, + "maxlat": 40.7110638, + "maxlon": -74.0124590 + }, + "nodes": [ + 6551501900, + 6551501898, + 10285341186, + 6551501895, + 6551501897, + 10285341187, + 6551501900 + ], + "geometry": [ + { "lat": 40.7110465, "lon": -74.0126222 }, + { "lat": 40.7110638, "lon": -74.0126095 }, + { "lat": 40.7110315, "lon": -74.0125317 }, + { "lat": 40.7110012, "lon": -74.0124590 }, + { "lat": 40.7109812, "lon": -74.0124653 }, + { "lat": 40.7110123, "lon": -74.0125400 }, + { "lat": 40.7110465, "lon": -74.0126222 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619538, + "bounds": { + "minlat": 40.7110012, + "minlon": -74.0126095, + "maxlat": 40.7110665, + "maxlon": -74.0124579 + }, + "nodes": [ + 6551501898, + 6551501896, + 10285341185, + 7133507027, + 6551501893, + 6551501895, + 10285341186, + 6551501898 + ], + "geometry": [ + { "lat": 40.7110638, "lon": -74.0126095 }, + { "lat": 40.7110665, "lon": -74.0126076 }, + { "lat": 40.7110342, "lon": -74.0125307 }, + { "lat": 40.7110078, "lon": -74.0124679 }, + { "lat": 40.7110041, "lon": -74.0124579 }, + { "lat": 40.7110012, "lon": -74.0124590 }, + { "lat": 40.7110315, "lon": -74.0125317 }, + { "lat": 40.7110638, "lon": -74.0126095 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619539, + "bounds": { + "minlat": 40.7109351, + "minlon": -74.0126521, + "maxlat": 40.7110277, + "maxlon": -74.0124738 + }, + "nodes": [ + 6551501904, + 6551501902, + 10285341188, + 6551501899, + 6551501901, + 10285341196, + 6551501904 + ], + "geometry": [ + { "lat": 40.7110056, "lon": -74.0126521 }, + { "lat": 40.7110277, "lon": -74.0126360 }, + { "lat": 40.7109912, "lon": -74.0125491 }, + { "lat": 40.7109597, "lon": -74.0124738 }, + { "lat": 40.7109351, "lon": -74.0124826 }, + { "lat": 40.7109668, "lon": -74.0125597 }, + { "lat": 40.7110056, "lon": -74.0126521 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619540, + "bounds": { + "minlat": 40.7109597, + "minlon": -74.0126360, + "maxlat": 40.7110465, + "maxlon": -74.0124653 + }, + "nodes": [ + 6551501902, + 6551501900, + 10285341187, + 6551501897, + 6551501899, + 10285341188, + 6551501902 + ], + "geometry": [ + { "lat": 40.7110277, "lon": -74.0126360 }, + { "lat": 40.7110465, "lon": -74.0126222 }, + { "lat": 40.7110123, "lon": -74.0125400 }, + { "lat": 40.7109812, "lon": -74.0124653 }, + { "lat": 40.7109597, "lon": -74.0124738 }, + { "lat": 40.7109912, "lon": -74.0125491 }, + { "lat": 40.7110277, "lon": -74.0126360 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619541, + "bounds": { + "minlat": 40.7109081, + "minlon": -74.0126689, + "maxlat": 40.7110029, + "maxlon": -74.0124837 + }, + "nodes": [ + 6551501905, + 10285341225, + 6551501906, + 10285341197, + 6551501903, + 6551501910, + 6551501907, + 6551501908, + 10285341192, + 7133507021, + 6551501905 + ], + "geometry": [ + { "lat": 40.7109081, "lon": -74.0124923 }, + { "lat": 40.7109251, "lon": -74.0124857 }, + { "lat": 40.7109321, "lon": -74.0124837 }, + { "lat": 40.7109639, "lon": -74.0125611 }, + { "lat": 40.7110029, "lon": -74.0126540 }, + { "lat": 40.7109826, "lon": -74.0126689 }, + { "lat": 40.7109717, "lon": -74.0126454 }, + { "lat": 40.7109460, "lon": -74.0125842 }, + { "lat": 40.7109405, "lon": -74.0125711 }, + { "lat": 40.7109124, "lon": -74.0125042 }, + { "lat": 40.7109081, "lon": -74.0124923 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619542, + "bounds": { + "minlat": 40.7109321, + "minlon": -74.0126540, + "maxlat": 40.7110056, + "maxlon": -74.0124826 + }, + "nodes": [ + 6551501903, + 6551501904, + 10285341196, + 6551501901, + 6551501906, + 10285341197, + 6551501903 + ], + "geometry": [ + { "lat": 40.7110029, "lon": -74.0126540 }, + { "lat": 40.7110056, "lon": -74.0126521 }, + { "lat": 40.7109668, "lon": -74.0125597 }, + { "lat": 40.7109351, "lon": -74.0124826 }, + { "lat": 40.7109321, "lon": -74.0124837 }, + { "lat": 40.7109639, "lon": -74.0125611 }, + { "lat": 40.7110029, "lon": -74.0126540 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619543, + "bounds": { + "minlat": 40.7109529, + "minlon": -74.0126832, + "maxlat": 40.7109826, + "maxlon": -74.0126454 + }, + "nodes": [ + 6551501911, + 6551501910, + 6551501907, + 6551501912, + 6551501911 + ], + "geometry": [ + { "lat": 40.7109630, "lon": -74.0126832 }, + { "lat": 40.7109826, "lon": -74.0126689 }, + { "lat": 40.7109717, "lon": -74.0126454 }, + { "lat": 40.7109529, "lon": -74.0126591 }, + { "lat": 40.7109630, "lon": -74.0126832 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619544, + "bounds": { + "minlat": 40.7108864, + "minlon": -74.0125979, + "maxlat": 40.7109460, + "maxlon": -74.0124923 + }, + "nodes": [ + 6551501918, + 6551501908, + 10285341192, + 7133507021, + 6551501905, + 6551501915, + 7133507020, + 10285341193, + 6551501918 + ], + "geometry": [ + { "lat": 40.7109272, "lon": -74.0125979 }, + { "lat": 40.7109460, "lon": -74.0125842 }, + { "lat": 40.7109405, "lon": -74.0125711 }, + { "lat": 40.7109124, "lon": -74.0125042 }, + { "lat": 40.7109081, "lon": -74.0124923 }, + { "lat": 40.7108864, "lon": -74.0125001 }, + { "lat": 40.7108912, "lon": -74.0125121 }, + { "lat": 40.7109197, "lon": -74.0125801 }, + { "lat": 40.7109272, "lon": -74.0125979 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619545, + "bounds": { + "minlat": 40.7108477, + "minlon": -74.0126344, + "maxlat": 40.7109315, + "maxlon": -74.0125001 + }, + "nodes": [ + 6551501919, + 6551501917, + 6551501918, + 10285341193, + 7133507020, + 6551501915, + 2531682686, + 6551501931, + 6551459464, + 6551584149, + 6551459467, + 6551501920, + 10285341194, + 6551501919 + ], + "geometry": [ + { "lat": 40.7108957, "lon": -74.0126344 }, + { "lat": 40.7109315, "lon": -74.0126083 }, + { "lat": 40.7109272, "lon": -74.0125979 }, + { "lat": 40.7109197, "lon": -74.0125801 }, + { "lat": 40.7108912, "lon": -74.0125121 }, + { "lat": 40.7108864, "lon": -74.0125001 }, + { "lat": 40.7108477, "lon": -74.0125139 }, + { "lat": 40.7108544, "lon": -74.0125309 }, + { "lat": 40.7108843, "lon": -74.0125203 }, + { "lat": 40.7108886, "lon": -74.0125409 }, + { "lat": 40.7108928, "lon": -74.0125616 }, + { "lat": 40.7108691, "lon": -74.0125701 }, + { "lat": 40.7108801, "lon": -74.0125973 }, + { "lat": 40.7108957, "lon": -74.0126344 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619546, + "bounds": { + "minlat": 40.7109125, + "minlon": -74.0127094, + "maxlat": 40.7109630, + "maxlon": -74.0126484 + }, + "nodes": [ + 6551501911, + 6551501912, + 6551501909, + 6551501922, + 6551501921, + 8213945022, + 6551501911 + ], + "geometry": [ + { "lat": 40.7109630, "lon": -74.0126832 }, + { "lat": 40.7109529, "lon": -74.0126591 }, + { "lat": 40.7109484, "lon": -74.0126484 }, + { "lat": 40.7109125, "lon": -74.0126745 }, + { "lat": 40.7109272, "lon": -74.0127094 }, + { "lat": 40.7109375, "lon": -74.0127019 }, + { "lat": 40.7109630, "lon": -74.0126832 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619547, + "bounds": { + "minlat": 40.7108712, + "minlon": -74.0127369, + "maxlat": 40.7109245, + "maxlon": -74.0126677 + }, + "nodes": [ + 6551501925, + 6551501926, + 6551501923, + 6551501924, + 6551501928, + 6551501925 + ], + "geometry": [ + { "lat": 40.7108895, "lon": -74.0127369 }, + { "lat": 40.7109245, "lon": -74.0127113 }, + { "lat": 40.7109062, "lon": -74.0126677 }, + { "lat": 40.7108712, "lon": -74.0126933 }, + { "lat": 40.7108750, "lon": -74.0127024 }, + { "lat": 40.7108895, "lon": -74.0127369 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619548, + "bounds": { + "minlat": 40.7108658, + "minlon": -74.0127113, + "maxlat": 40.7109272, + "maxlon": -74.0125701 + }, + "nodes": [ + 6551501926, + 6551501921, + 6551501922, + 6551501919, + 10285341194, + 6551501920, + 6551501927, + 10285341195, + 6551501930, + 6551501923, + 6551501926 + ], + "geometry": [ + { "lat": 40.7109245, "lon": -74.0127113 }, + { "lat": 40.7109272, "lon": -74.0127094 }, + { "lat": 40.7109125, "lon": -74.0126745 }, + { "lat": 40.7108957, "lon": -74.0126344 }, + { "lat": 40.7108801, "lon": -74.0125973 }, + { "lat": 40.7108691, "lon": -74.0125701 }, + { "lat": 40.7108658, "lon": -74.0125712 }, + { "lat": 40.7108772, "lon": -74.0125986 }, + { "lat": 40.7108894, "lon": -74.0126277 }, + { "lat": 40.7109062, "lon": -74.0126677 }, + { "lat": 40.7109245, "lon": -74.0127113 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619549, + "bounds": { + "minlat": 40.7108036, + "minlon": -74.0126533, + "maxlat": 40.7108894, + "maxlon": -74.0125139 + }, + "nodes": [ + 6551459466, + 6551584150, + 6551459465, + 6551501931, + 2531682686, + 6551501933, + 10285341367, + 10285341352, + 6551501936, + 6551501929, + 6551501930, + 10285341195, + 6551501927, + 6551459466 + ], + "geometry": [ + { "lat": 40.7108434, "lon": -74.0125792 }, + { "lat": 40.7108391, "lon": -74.0125585 }, + { "lat": 40.7108346, "lon": -74.0125380 }, + { "lat": 40.7108544, "lon": -74.0125309 }, + { "lat": 40.7108477, "lon": -74.0125139 }, + { "lat": 40.7108036, "lon": -74.0125297 }, + { "lat": 40.7108184, "lon": -74.0125658 }, + { "lat": 40.7108257, "lon": -74.0125836 }, + { "lat": 40.7108516, "lon": -74.0126465 }, + { "lat": 40.7108544, "lon": -74.0126533 }, + { "lat": 40.7108894, "lon": -74.0126277 }, + { "lat": 40.7108772, "lon": -74.0125986 }, + { "lat": 40.7108658, "lon": -74.0125712 }, + { "lat": 40.7108434, "lon": -74.0125792 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619550, + "bounds": { + "minlat": 40.7108563, + "minlon": -74.0127480, + "maxlat": 40.7108895, + "maxlon": -74.0127024 + }, + "nodes": [ + 6551501939, + 6551501928, + 6551501925, + 6551501940, + 6551501939 + ], + "geometry": [ + { "lat": 40.7108563, "lon": -74.0127161 }, + { "lat": 40.7108750, "lon": -74.0127024 }, + { "lat": 40.7108895, "lon": -74.0127369 }, + { "lat": 40.7108744, "lon": -74.0127480 }, + { "lat": 40.7108563, "lon": -74.0127161 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619551, + "bounds": { + "minlat": 40.7107649, + "minlon": -74.0126661, + "maxlat": 40.7108309, + "maxlon": -74.0125375 + }, + "nodes": [ + 6551501988, + 6551501937, + 10285341338, + 6551501938, + 6551501987, + 10285341353, + 6551501988 + ], + "geometry": [ + { "lat": 40.7108163, "lon": -74.0126661 }, + { "lat": 40.7108309, "lon": -74.0126555 }, + { "lat": 40.7107954, "lon": -74.0125699 }, + { "lat": 40.7107820, "lon": -74.0125375 }, + { "lat": 40.7107649, "lon": -74.0125436 }, + { "lat": 40.7107781, "lon": -74.0125751 }, + { "lat": 40.7108163, "lon": -74.0126661 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619552, + "bounds": { + "minlat": 40.7107820, + "minlon": -74.0126602, + "maxlat": 40.7108516, + "maxlon": -74.0125297 + }, + "nodes": [ + 6551501937, + 6551501935, + 6551501936, + 10285341352, + 10285341367, + 6551501933, + 6551501938, + 10285341338, + 6551501937 + ], + "geometry": [ + { "lat": 40.7108309, "lon": -74.0126555 }, + { "lat": 40.7108328, "lon": -74.0126602 }, + { "lat": 40.7108516, "lon": -74.0126465 }, + { "lat": 40.7108257, "lon": -74.0125836 }, + { "lat": 40.7108184, "lon": -74.0125658 }, + { "lat": 40.7108036, "lon": -74.0125297 }, + { "lat": 40.7107820, "lon": -74.0125375 }, + { "lat": 40.7107954, "lon": -74.0125699 }, + { "lat": 40.7108309, "lon": -74.0126555 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619554, + "bounds": { + "minlat": 40.7108367, + "minlon": -74.0127612, + "maxlat": 40.7108744, + "maxlon": -74.0127041 + }, + "nodes": [ + 6551501985, + 6551501942, + 6551501939, + 6551501940, + 6551501986, + 6551501985 + ], + "geometry": [ + { "lat": 40.7108367, "lon": -74.0127147 }, + { "lat": 40.7108512, "lon": -74.0127041 }, + { "lat": 40.7108563, "lon": -74.0127161 }, + { "lat": 40.7108744, "lon": -74.0127480 }, + { "lat": 40.7108562, "lon": -74.0127612 }, + { "lat": 40.7108367, "lon": -74.0127147 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619561, + "bounds": { + "minlat": 40.7105517, + "minlon": -74.0127090, + "maxlat": 40.7106091, + "maxlon": -74.0126121 + }, + "nodes": [ + 6551501960, + 10285341340, + 6551501959, + 6551501957, + 10285341364, + 6551501958, + 6551501960 + ], + "geometry": [ + { "lat": 40.7106091, "lon": -74.0127013 }, + { "lat": 40.7105867, "lon": -74.0126454 }, + { "lat": 40.7105734, "lon": -74.0126121 }, + { "lat": 40.7105517, "lon": -74.0126199 }, + { "lat": 40.7105651, "lon": -74.0126534 }, + { "lat": 40.7105874, "lon": -74.0127090 }, + { "lat": 40.7106091, "lon": -74.0127013 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619562, + "bounds": { + "minlat": 40.7105344, + "minlon": -74.0127156, + "maxlat": 40.7105874, + "maxlon": -74.0126199 + }, + "nodes": [ + 6551501958, + 10285341364, + 6551501957, + 6551501955, + 10285341363, + 6551501228, + 6551501954, + 6551501958 + ], + "geometry": [ + { "lat": 40.7105874, "lon": -74.0127090 }, + { "lat": 40.7105651, "lon": -74.0126534 }, + { "lat": 40.7105517, "lon": -74.0126199 }, + { "lat": 40.7105344, "lon": -74.0126261 }, + { "lat": 40.7105476, "lon": -74.0126598 }, + { "lat": 40.7105653, "lon": -74.0127052 }, + { "lat": 40.7105695, "lon": -74.0127156 }, + { "lat": 40.7105874, "lon": -74.0127090 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619563, + "bounds": { + "minlat": 40.7105872, + "minlon": -74.0126961, + "maxlat": 40.7106259, + "maxlon": -74.0126061 + }, + "nodes": [ + 6551501964, + 10285341342, + 6551501963, + 6551501961, + 10285341341, + 6551501962, + 6551501964 + ], + "geometry": [ + { "lat": 40.7106259, "lon": -74.0126950 }, + { "lat": 40.7106035, "lon": -74.0126393 }, + { "lat": 40.7105901, "lon": -74.0126061 }, + { "lat": 40.7105872, "lon": -74.0126072 }, + { "lat": 40.7106005, "lon": -74.0126403 }, + { "lat": 40.7106229, "lon": -74.0126961 }, + { "lat": 40.7106259, "lon": -74.0126950 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619564, + "bounds": { + "minlat": 40.7105734, + "minlon": -74.0127013, + "maxlat": 40.7106229, + "maxlon": -74.0126072 + }, + "nodes": [ + 6551501962, + 10285341341, + 6551501961, + 6551501959, + 10285341340, + 6551501960, + 6551501962 + ], + "geometry": [ + { "lat": 40.7106229, "lon": -74.0126961 }, + { "lat": 40.7106005, "lon": -74.0126403 }, + { "lat": 40.7105872, "lon": -74.0126072 }, + { "lat": 40.7105734, "lon": -74.0126121 }, + { "lat": 40.7105867, "lon": -74.0126454 }, + { "lat": 40.7106091, "lon": -74.0127013 }, + { "lat": 40.7106229, "lon": -74.0126961 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619565, + "bounds": { + "minlat": 40.7106038, + "minlon": -74.0126900, + "maxlat": 40.7106610, + "maxlon": -74.0125936 + }, + "nodes": [ + 6551501251, + 10285341344, + 6551501969, + 6551501965, + 10285341343, + 6551501966, + 6551501251 + ], + "geometry": [ + { "lat": 40.7106610, "lon": -74.0126833 }, + { "lat": 40.7106383, "lon": -74.0126265 }, + { "lat": 40.7106251, "lon": -74.0125936 }, + { "lat": 40.7106038, "lon": -74.0126012 }, + { "lat": 40.7106171, "lon": -74.0126343 }, + { "lat": 40.7106395, "lon": -74.0126900 }, + { "lat": 40.7106610, "lon": -74.0126833 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619566, + "bounds": { + "minlat": 40.7105901, + "minlon": -74.0126950, + "maxlat": 40.7106395, + "maxlon": -74.0126012 + }, + "nodes": [ + 6551501966, + 10285341343, + 6551501965, + 6551501963, + 10285341342, + 6551501964, + 6551501966 + ], + "geometry": [ + { "lat": 40.7106395, "lon": -74.0126900 }, + { "lat": 40.7106171, "lon": -74.0126343 }, + { "lat": 40.7106038, "lon": -74.0126012 }, + { "lat": 40.7105901, "lon": -74.0126061 }, + { "lat": 40.7106035, "lon": -74.0126393 }, + { "lat": 40.7106259, "lon": -74.0126950 }, + { "lat": 40.7106395, "lon": -74.0126900 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619567, + "bounds": { + "minlat": 40.7106424, + "minlon": -74.0126795, + "maxlat": 40.7106916, + "maxlon": -74.0125826 + }, + "nodes": [ + 6551501973, + 10285341346, + 6551501976, + 6551502015, + 10285341345, + 6551501971, + 6551501973 + ], + "geometry": [ + { "lat": 40.7106916, "lon": -74.0126708 }, + { "lat": 40.7106691, "lon": -74.0126152 }, + { "lat": 40.7106560, "lon": -74.0125826 }, + { "lat": 40.7106424, "lon": -74.0125874 }, + { "lat": 40.7106557, "lon": -74.0126201 }, + { "lat": 40.7106797, "lon": -74.0126795 }, + { "lat": 40.7106916, "lon": -74.0126708 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619568, + "bounds": { + "minlat": 40.7106251, + "minlon": -74.0126988, + "maxlat": 40.7106804, + "maxlon": -74.0125885 + }, + "nodes": [ + 6551501972, + 10285341347, + 6551502016, + 6551501969, + 10285341344, + 6551501251, + 6551501967, + 6551501968, + 6551501972 + ], + "geometry": [ + { "lat": 40.7106804, "lon": -74.0126893 }, + { "lat": 40.7106527, "lon": -74.0126212 }, + { "lat": 40.7106394, "lon": -74.0125885 }, + { "lat": 40.7106251, "lon": -74.0125936 }, + { "lat": 40.7106383, "lon": -74.0126265 }, + { "lat": 40.7106610, "lon": -74.0126833 }, + { "lat": 40.7106658, "lon": -74.0126942 }, + { "lat": 40.7106678, "lon": -74.0126988 }, + { "lat": 40.7106804, "lon": -74.0126893 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619569, + "bounds": { + "minlat": 40.7106776, + "minlon": -74.0126735, + "maxlat": 40.7107382, + "maxlon": -74.0125665 + }, + "nodes": [ + 6551502000, + 10285341349, + 6551501999, + 6551501977, + 10285341348, + 6551501978, + 6551501975, + 6551502000 + ], + "geometry": [ + { "lat": 40.7107382, "lon": -74.0126585 }, + { "lat": 40.7107139, "lon": -74.0125987 }, + { "lat": 40.7107009, "lon": -74.0125665 }, + { "lat": 40.7106776, "lon": -74.0125748 }, + { "lat": 40.7106908, "lon": -74.0126072 }, + { "lat": 40.7107152, "lon": -74.0126675 }, + { "lat": 40.7107177, "lon": -74.0126735 }, + { "lat": 40.7107382, "lon": -74.0126585 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619570, + "bounds": { + "minlat": 40.7106560, + "minlon": -74.0126815, + "maxlat": 40.7107152, + "maxlon": -74.0125748 + }, + "nodes": [ + 6551501978, + 10285341348, + 6551501977, + 6551501976, + 10285341346, + 6551501973, + 6551501974, + 6551501978 + ], + "geometry": [ + { "lat": 40.7107152, "lon": -74.0126675 }, + { "lat": 40.7106908, "lon": -74.0126072 }, + { "lat": 40.7106776, "lon": -74.0125748 }, + { "lat": 40.7106560, "lon": -74.0125826 }, + { "lat": 40.7106691, "lon": -74.0126152 }, + { "lat": 40.7106916, "lon": -74.0126708 }, + { "lat": 40.7106961, "lon": -74.0126815 }, + { "lat": 40.7107152, "lon": -74.0126675 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619571, + "bounds": { + "minlat": 40.7107234, + "minlon": -74.0126437, + "maxlat": 40.7107785, + "maxlon": -74.0125504 + }, + "nodes": [ + 6551501984, + 6551501982, + 10285341350, + 6551501979, + 6551501981, + 10285341354, + 6551501984 + ], + "geometry": [ + { "lat": 40.7107785, "lon": -74.0126296 }, + { "lat": 40.7107592, "lon": -74.0126437 }, + { "lat": 40.7107368, "lon": -74.0125903 }, + { "lat": 40.7107234, "lon": -74.0125584 }, + { "lat": 40.7107459, "lon": -74.0125504 }, + { "lat": 40.7107589, "lon": -74.0125821 }, + { "lat": 40.7107785, "lon": -74.0126296 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619572, + "bounds": { + "minlat": 40.7107038, + "minlon": -74.0126714, + "maxlat": 40.7107652, + "maxlon": -74.0125584 + }, + "nodes": [ + 6551501982, + 6551501980, + 6551502001, + 10285341351, + 6551502002, + 6551501979, + 10285341350, + 6551501982 + ], + "geometry": [ + { "lat": 40.7107592, "lon": -74.0126437 }, + { "lat": 40.7107652, "lon": -74.0126582 }, + { "lat": 40.7107471, "lon": -74.0126714 }, + { "lat": 40.7107169, "lon": -74.0125976 }, + { "lat": 40.7107038, "lon": -74.0125654 }, + { "lat": 40.7107234, "lon": -74.0125584 }, + { "lat": 40.7107368, "lon": -74.0125903 }, + { "lat": 40.7107592, "lon": -74.0126437 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619573, + "bounds": { + "minlat": 40.7107617, + "minlon": -74.0127631, + "maxlat": 40.7108562, + "maxlon": -74.0125436 + }, + "nodes": [ + 6551501994, + 6551501991, + 6551501989, + 10285341355, + 6551501990, + 6551501987, + 10285341353, + 6551501988, + 6551501985, + 6551501986, + 6551501994 + ], + "geometry": [ + { "lat": 40.7108536, "lon": -74.0127631 }, + { "lat": 40.7108341, "lon": -74.0127167 }, + { "lat": 40.7108075, "lon": -74.0126532 }, + { "lat": 40.7107750, "lon": -74.0125762 }, + { "lat": 40.7107617, "lon": -74.0125447 }, + { "lat": 40.7107649, "lon": -74.0125436 }, + { "lat": 40.7107781, "lon": -74.0125751 }, + { "lat": 40.7108163, "lon": -74.0126661 }, + { "lat": 40.7108367, "lon": -74.0127147 }, + { "lat": 40.7108562, "lon": -74.0127612 }, + { "lat": 40.7108536, "lon": -74.0127631 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619574, + "bounds": { + "minlat": 40.7107459, + "minlon": -74.0126638, + "maxlat": 40.7108075, + "maxlon": -74.0125447 + }, + "nodes": [ + 6551501989, + 6551501983, + 6551501984, + 10285341354, + 6551501981, + 6551501990, + 10285341355, + 6551501989 + ], + "geometry": [ + { "lat": 40.7108075, "lon": -74.0126532 }, + { "lat": 40.7107929, "lon": -74.0126638 }, + { "lat": 40.7107785, "lon": -74.0126296 }, + { "lat": 40.7107589, "lon": -74.0125821 }, + { "lat": 40.7107459, "lon": -74.0125504 }, + { "lat": 40.7107617, "lon": -74.0125447 }, + { "lat": 40.7107750, "lon": -74.0125762 }, + { "lat": 40.7108075, "lon": -74.0126532 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619575, + "bounds": { + "minlat": 40.7108025, + "minlon": -74.0127879, + "maxlat": 40.7108390, + "maxlon": -74.0127327 + }, + "nodes": [ + 6551501997, + 6551501996, + 6551501993, + 6551501998, + 6551501997 + ], + "geometry": [ + { "lat": 40.7108197, "lon": -74.0127879 }, + { "lat": 40.7108390, "lon": -74.0127738 }, + { "lat": 40.7108218, "lon": -74.0127327 }, + { "lat": 40.7108025, "lon": -74.0127469 }, + { "lat": 40.7108197, "lon": -74.0127879 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619576, + "bounds": { + "minlat": 40.7108196, + "minlon": -74.0127738, + "maxlat": 40.7108536, + "maxlon": -74.0127167 + }, + "nodes": [ + 6551501996, + 6551501994, + 6551501991, + 6551501992, + 6551501993, + 6551501996 + ], + "geometry": [ + { "lat": 40.7108390, "lon": -74.0127738 }, + { "lat": 40.7108536, "lon": -74.0127631 }, + { "lat": 40.7108341, "lon": -74.0127167 }, + { "lat": 40.7108196, "lon": -74.0127274 }, + { "lat": 40.7108218, "lon": -74.0127327 }, + { "lat": 40.7108390, "lon": -74.0127738 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619577, + "bounds": { + "minlat": 40.7107009, + "minlon": -74.0128031, + "maxlat": 40.7108015, + "maxlon": -74.0125654 + }, + "nodes": [ + 6551502008, + 6551502003, + 6551502004, + 6551502001, + 10285341351, + 6551502002, + 6551501999, + 10285341349, + 6551502000, + 6551502005, + 6551502008 + ], + "geometry": [ + { "lat": 40.7107989, "lon": -74.0128031 }, + { "lat": 40.7108015, "lon": -74.0128012 }, + { "lat": 40.7107741, "lon": -74.0127357 }, + { "lat": 40.7107471, "lon": -74.0126714 }, + { "lat": 40.7107169, "lon": -74.0125976 }, + { "lat": 40.7107038, "lon": -74.0125654 }, + { "lat": 40.7107009, "lon": -74.0125665 }, + { "lat": 40.7107139, "lon": -74.0125987 }, + { "lat": 40.7107382, "lon": -74.0126585 }, + { "lat": 40.7107715, "lon": -74.0127378 }, + { "lat": 40.7107989, "lon": -74.0128031 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619578, + "bounds": { + "minlat": 40.7107741, + "minlon": -74.0128012, + "maxlat": 40.7108197, + "maxlon": -74.0127224 + }, + "nodes": [ + 6551502003, + 6551501997, + 6551501998, + 6551501995, + 6551502004, + 6551502003 + ], + "geometry": [ + { "lat": 40.7108015, "lon": -74.0128012 }, + { "lat": 40.7108197, "lon": -74.0127879 }, + { "lat": 40.7108025, "lon": -74.0127469 }, + { "lat": 40.7107922, "lon": -74.0127224 }, + { "lat": 40.7107741, "lon": -74.0127357 }, + { "lat": 40.7108015, "lon": -74.0128012 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619579, + "bounds": { + "minlat": 40.7107388, + "minlon": -74.0128320, + "maxlat": 40.7107786, + "maxlon": -74.0127693 + }, + "nodes": [ + 6551502014, + 6551502010, + 6551502007, + 6551502011, + 6551502014 + ], + "geometry": [ + { "lat": 40.7107593, "lon": -74.0128320 }, + { "lat": 40.7107786, "lon": -74.0128180 }, + { "lat": 40.7107579, "lon": -74.0127693 }, + { "lat": 40.7107388, "lon": -74.0127832 }, + { "lat": 40.7107593, "lon": -74.0128320 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619580, + "bounds": { + "minlat": 40.7107510, + "minlon": -74.0128180, + "maxlat": 40.7107989, + "maxlon": -74.0127378 + }, + "nodes": [ + 6551502010, + 6551502008, + 6551502005, + 6551502006, + 6551502007, + 6551502010 + ], + "geometry": [ + { "lat": 40.7107786, "lon": -74.0128180 }, + { "lat": 40.7107989, "lon": -74.0128031 }, + { "lat": 40.7107715, "lon": -74.0127378 }, + { "lat": 40.7107510, "lon": -74.0127528 }, + { "lat": 40.7107579, "lon": -74.0127693 }, + { "lat": 40.7107786, "lon": -74.0128180 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619581, + "bounds": { + "minlat": 40.7106394, + "minlon": -74.0128427, + "maxlat": 40.7107474, + "maxlon": -74.0125874 + }, + "nodes": [ + 6551502019, + 6551502018, + 6551502009, + 6551501971, + 10285341345, + 6551502015, + 6551502016, + 10285341347, + 6551501972, + 6551502013, + 6551502019 + ], + "geometry": [ + { "lat": 40.7107447, "lon": -74.0128427 }, + { "lat": 40.7107474, "lon": -74.0128407 }, + { "lat": 40.7107198, "lon": -74.0127749 }, + { "lat": 40.7106797, "lon": -74.0126795 }, + { "lat": 40.7106557, "lon": -74.0126201 }, + { "lat": 40.7106424, "lon": -74.0125874 }, + { "lat": 40.7106394, "lon": -74.0125885 }, + { "lat": 40.7106527, "lon": -74.0126212 }, + { "lat": 40.7106804, "lon": -74.0126893 }, + { "lat": 40.7107065, "lon": -74.0127517 }, + { "lat": 40.7107447, "lon": -74.0128427 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619582, + "bounds": { + "minlat": 40.7107198, + "minlon": -74.0128407, + "maxlat": 40.7107593, + "maxlon": -74.0127661 + }, + "nodes": [ + 6551502018, + 6551502014, + 6551502011, + 6551502012, + 6551502009, + 6551502018 + ], + "geometry": [ + { "lat": 40.7107474, "lon": -74.0128407 }, + { "lat": 40.7107593, "lon": -74.0128320 }, + { "lat": 40.7107388, "lon": -74.0127832 }, + { "lat": 40.7107316, "lon": -74.0127661 }, + { "lat": 40.7107198, "lon": -74.0127749 }, + { "lat": 40.7107474, "lon": -74.0128407 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619583, + "bounds": { + "minlat": 40.7106634, + "minlon": -74.0128744, + "maxlat": 40.7107133, + "maxlon": -74.0127758 + }, + "nodes": [ + 6551502026, + 6551502795, + 6551502022, + 6551502023, + 6551502026 + ], + "geometry": [ + { "lat": 40.7107014, "lon": -74.0128744 }, + { "lat": 40.7107133, "lon": -74.0128656 }, + { "lat": 40.7106756, "lon": -74.0127758 }, + { "lat": 40.7106634, "lon": -74.0127844 }, + { "lat": 40.7107014, "lon": -74.0128744 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619584, + "bounds": { + "minlat": 40.7106940, + "minlon": -74.0128519, + "maxlat": 40.7107447, + "maxlon": -74.0127517 + }, + "nodes": [ + 6551502811, + 6551502019, + 6551502013, + 6551502017, + 6551502811 + ], + "geometry": [ + { "lat": 40.7107320, "lon": -74.0128519 }, + { "lat": 40.7107447, "lon": -74.0128427 }, + { "lat": 40.7107065, "lon": -74.0127517 }, + { "lat": 40.7106940, "lon": -74.0127613 }, + { "lat": 40.7107320, "lon": -74.0128519 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619585, + "bounds": { + "minlat": 40.7106622, + "minlon": -74.0128852, + "maxlat": 40.7106984, + "maxlon": -74.0128188 + }, + "nodes": [ + 6551502029, + 6551502027, + 6551502028, + 6551502025, + 6551502030, + 6551502029 + ], + "geometry": [ + { "lat": 40.7106864, "lon": -74.0128852 }, + { "lat": 40.7106984, "lon": -74.0128764 }, + { "lat": 40.7106742, "lon": -74.0128188 }, + { "lat": 40.7106622, "lon": -74.0128276 }, + { "lat": 40.7106684, "lon": -74.0128424 }, + { "lat": 40.7106864, "lon": -74.0128852 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619586, + "bounds": { + "minlat": 40.7106506, + "minlon": -74.0128764, + "maxlat": 40.7107014, + "maxlon": -74.0127600 + }, + "nodes": [ + 6551502027, + 6551502026, + 6551502023, + 6551502024, + 6551502021, + 6551502028, + 6551502027 + ], + "geometry": [ + { "lat": 40.7106984, "lon": -74.0128764 }, + { "lat": 40.7107014, "lon": -74.0128744 }, + { "lat": 40.7106634, "lon": -74.0127844 }, + { "lat": 40.7106532, "lon": -74.0127600 }, + { "lat": 40.7106506, "lon": -74.0127620 }, + { "lat": 40.7106742, "lon": -74.0128188 }, + { "lat": 40.7106984, "lon": -74.0128764 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619587, + "bounds": { + "minlat": 40.7105803, + "minlon": -74.0129069, + "maxlat": 40.7106673, + "maxlon": -74.0127225 + }, + "nodes": [ + 6551502036, + 6551502034, + 6551502031, + 6551502032, + 6551502033, + 6551502036 + ], + "geometry": [ + { "lat": 40.7106568, "lon": -74.0129069 }, + { "lat": 40.7106673, "lon": -74.0128992 }, + { "lat": 40.7106493, "lon": -74.0128563 }, + { "lat": 40.7105931, "lon": -74.0127225 }, + { "lat": 40.7105803, "lon": -74.0127272 }, + { "lat": 40.7106568, "lon": -74.0129069 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619588, + "bounds": { + "minlat": 40.7106493, + "minlon": -74.0128992, + "maxlat": 40.7106864, + "maxlon": -74.0128424 + }, + "nodes": [ + 6551502034, + 6551502984, + 6551502029, + 6551502030, + 6551502031, + 6551502034 + ], + "geometry": [ + { "lat": 40.7106673, "lon": -74.0128992 }, + { "lat": 40.7106689, "lon": -74.0128981 }, + { "lat": 40.7106864, "lon": -74.0128852 }, + { "lat": 40.7106684, "lon": -74.0128424 }, + { "lat": 40.7106493, "lon": -74.0128563 }, + { "lat": 40.7106673, "lon": -74.0128992 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619589, + "bounds": { + "minlat": 40.7105623, + "minlon": -74.0129191, + "maxlat": 40.7106525, + "maxlon": -74.0127287 + }, + "nodes": [ + 6551502038, + 6551502035, + 6551502655, + 6551502963, + 6551502983, + 6551502038 + ], + "geometry": [ + { "lat": 40.7106525, "lon": -74.0129100 }, + { "lat": 40.7105764, "lon": -74.0127287 }, + { "lat": 40.7105623, "lon": -74.0127339 }, + { "lat": 40.7105968, "lon": -74.0128162 }, + { "lat": 40.7106401, "lon": -74.0129191 }, + { "lat": 40.7106525, "lon": -74.0129100 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619590, + "bounds": { + "minlat": 40.7105764, + "minlon": -74.0129100, + "maxlat": 40.7106568, + "maxlon": -74.0127272 + }, + "nodes": [ + 6551502038, + 6551502036, + 6551502033, + 6551502035, + 6551502038 + ], + "geometry": [ + { "lat": 40.7106525, "lon": -74.0129100 }, + { "lat": 40.7106568, "lon": -74.0129069 }, + { "lat": 40.7105803, "lon": -74.0127272 }, + { "lat": 40.7105764, "lon": -74.0127287 }, + { "lat": 40.7106525, "lon": -74.0129100 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619591, + "bounds": { + "minlat": 40.7111271, + "minlon": -74.0141057, + "maxlat": 40.7111727, + "maxlon": -74.0140240 + }, + "nodes": [ + 6551502042, + 6551502737, + 6551502039, + 6551502040, + 6551502042 + ], + "geometry": [ + { "lat": 40.7111578, "lon": -74.0141057 }, + { "lat": 40.7111727, "lon": -74.0141034 }, + { "lat": 40.7111390, "lon": -74.0140240 }, + { "lat": 40.7111271, "lon": -74.0140326 }, + { "lat": 40.7111578, "lon": -74.0141057 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619592, + "bounds": { + "minlat": 40.7109396, + "minlon": -74.0141063, + "maxlat": 40.7111578, + "maxlon": -74.0135927 + }, + "nodes": [ + 6551502043, + 6551502042, + 6551502040, + 6551501876, + 10288472953, + 6551502037, + 10288472952, + 10288472954, + 6551502940, + 6551502044, + 6551502043 + ], + "geometry": [ + { "lat": 40.7111546, "lon": -74.0141063 }, + { "lat": 40.7111578, "lon": -74.0141057 }, + { "lat": 40.7111271, "lon": -74.0140326 }, + { "lat": 40.7110079, "lon": -74.0137485 }, + { "lat": 40.7109468, "lon": -74.0136040 }, + { "lat": 40.7109420, "lon": -74.0135927 }, + { "lat": 40.7109396, "lon": -74.0135944 }, + { "lat": 40.7109444, "lon": -74.0136058 }, + { "lat": 40.7109838, "lon": -74.0136993 }, + { "lat": 40.7111288, "lon": -74.0140447 }, + { "lat": 40.7111546, "lon": -74.0141063 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619593, + "bounds": { + "minlat": 40.7111005, + "minlon": -74.0141123, + "maxlat": 40.7111393, + "maxlon": -74.0140611 + }, + "nodes": [ + 6551502047, + 6551502045, + 6551502046, + 6551502048, + 6551502047 + ], + "geometry": [ + { "lat": 40.7111162, "lon": -74.0141123 }, + { "lat": 40.7111393, "lon": -74.0141087 }, + { "lat": 40.7111193, "lon": -74.0140611 }, + { "lat": 40.7111005, "lon": -74.0140748 }, + { "lat": 40.7111162, "lon": -74.0141123 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619594, + "bounds": { + "minlat": 40.7111163, + "minlon": -74.0141087, + "maxlat": 40.7111546, + "maxlon": -74.0140447 + }, + "nodes": [ + 6551502045, + 6551502043, + 6551502044, + 6551502041, + 6551502046, + 6551502045 + ], + "geometry": [ + { "lat": 40.7111393, "lon": -74.0141087 }, + { "lat": 40.7111546, "lon": -74.0141063 }, + { "lat": 40.7111288, "lon": -74.0140447 }, + { "lat": 40.7111163, "lon": -74.0140538 }, + { "lat": 40.7111193, "lon": -74.0140611 }, + { "lat": 40.7111393, "lon": -74.0141087 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619595, + "bounds": { + "minlat": 40.7108672, + "minlon": -74.0137790, + "maxlat": 40.7109404, + "maxlon": -74.0136366 + }, + "nodes": [ + 6551502049, + 6551502051, + 8213964619, + 6551502052, + 6551500574, + 10288472964, + 6551502049 + ], + "geometry": [ + { "lat": 40.7109211, "lon": -74.0137790 }, + { "lat": 40.7109404, "lon": -74.0137649 }, + { "lat": 40.7108905, "lon": -74.0136457 }, + { "lat": 40.7108866, "lon": -74.0136366 }, + { "lat": 40.7108672, "lon": -74.0136507 }, + { "lat": 40.7108713, "lon": -74.0136598 }, + { "lat": 40.7109211, "lon": -74.0137790 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619596, + "bounds": { + "minlat": 40.7105262, + "minlon": -74.0141148, + "maxlat": 40.7111162, + "maxlon": -74.0127418 + }, + "nodes": [ + 6551502047, + 10288472841, + 6551502054, + 10288472842, + 8213964618, + 10288472965, + 10288472865, + 10288472977, + 6551502053, + 10288472845, + 6551502646, + 6551502966, + 10288473031, + 8213964617, + 6551502961, + 6551502048, + 6551502047 + ], + "geometry": [ + { "lat": 40.7111162, "lon": -74.0141123 }, + { "lat": 40.7111068, "lon": -74.0141137 }, + { "lat": 40.7111001, "lon": -74.0141148 }, + { "lat": 40.7110862, "lon": -74.0140816 }, + { "lat": 40.7109013, "lon": -74.0136412 }, + { "lat": 40.7109002, "lon": -74.0136386 }, + { "lat": 40.7107497, "lon": -74.0132800 }, + { "lat": 40.7105897, "lon": -74.0128988 }, + { "lat": 40.7105262, "lon": -74.0127474 }, + { "lat": 40.7105342, "lon": -74.0127444 }, + { "lat": 40.7105410, "lon": -74.0127418 }, + { "lat": 40.7105780, "lon": -74.0128299 }, + { "lat": 40.7106249, "lon": -74.0129417 }, + { "lat": 40.7109134, "lon": -74.0136290 }, + { "lat": 40.7109428, "lon": -74.0136992 }, + { "lat": 40.7111005, "lon": -74.0140748 }, + { "lat": 40.7111162, "lon": -74.0141123 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619597, + "bounds": { + "minlat": 40.7105912, + "minlon": -74.0135108, + "maxlat": 40.7108034, + "maxlon": -74.0130401 + }, + "nodes": [ + 6551502076, + 6551502059, + 6551502060, + 6551502057, + 6551502869, + 10288472867, + 6551502870, + 6551500087, + 6551500086, + 10288472866, + 6551502076 + ], + "geometry": [ + { "lat": 40.7105912, "lon": -74.0130459 }, + { "lat": 40.7105996, "lon": -74.0130401 }, + { "lat": 40.7106785, "lon": -74.0132283 }, + { "lat": 40.7106873, "lon": -74.0132219 }, + { "lat": 40.7107131, "lon": -74.0132835 }, + { "lat": 40.7107205, "lon": -74.0133012 }, + { "lat": 40.7107849, "lon": -74.0134545 }, + { "lat": 40.7108034, "lon": -74.0134986 }, + { "lat": 40.7107863, "lon": -74.0135108 }, + { "lat": 40.7107035, "lon": -74.0133136 }, + { "lat": 40.7105912, "lon": -74.0130459 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619598, + "bounds": { + "minlat": 40.7105151, + "minlon": -74.0141167, + "maxlat": 40.7111001, + "maxlon": -74.0127474 + }, + "nodes": [ + 6551502921, + 6551502053, + 10288472977, + 10288472865, + 10288472965, + 8213964618, + 10288472842, + 6551502054, + 6551502793, + 10288472843, + 6551502796, + 6551502051, + 8213964619, + 6551502052, + 6551502886, + 10288472868, + 6551502885, + 6551502900, + 6551502899, + 6551502922, + 10288472978, + 6551502921 + ], + "geometry": [ + { "lat": 40.7105151, "lon": -74.0127515 }, + { "lat": 40.7105262, "lon": -74.0127474 }, + { "lat": 40.7105897, "lon": -74.0128988 }, + { "lat": 40.7107497, "lon": -74.0132800 }, + { "lat": 40.7109002, "lon": -74.0136386 }, + { "lat": 40.7109013, "lon": -74.0136412 }, + { "lat": 40.7110862, "lon": -74.0140816 }, + { "lat": 40.7111001, "lon": -74.0141148 }, + { "lat": 40.7110881, "lon": -74.0141167 }, + { "lat": 40.7110763, "lon": -74.0140885 }, + { "lat": 40.7110261, "lon": -74.0139689 }, + { "lat": 40.7109404, "lon": -74.0137649 }, + { "lat": 40.7108905, "lon": -74.0136457 }, + { "lat": 40.7108866, "lon": -74.0136366 }, + { "lat": 40.7108042, "lon": -74.0134403 }, + { "lat": 40.7107399, "lon": -74.0132872 }, + { "lat": 40.7107324, "lon": -74.0132693 }, + { "lat": 40.7106940, "lon": -74.0131777 }, + { "lat": 40.7106680, "lon": -74.0131159 }, + { "lat": 40.7106260, "lon": -74.0130158 }, + { "lat": 40.7105798, "lon": -74.0129058 }, + { "lat": 40.7105151, "lon": -74.0127515 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619599, + "bounds": { + "minlat": 40.7106489, + "minlon": -74.0133816, + "maxlat": 40.7107016, + "maxlon": -74.0132883 + }, + "nodes": [ + 6551502064, + 6551502070, + 10288472870, + 6551502067, + 6551502061, + 10288472869, + 6551502064 + ], + "geometry": [ + { "lat": 40.7106820, "lon": -74.0133816 }, + { "lat": 40.7107016, "lon": -74.0133673 }, + { "lat": 40.7106847, "lon": -74.0133272 }, + { "lat": 40.7106684, "lon": -74.0132883 }, + { "lat": 40.7106489, "lon": -74.0133026 }, + { "lat": 40.7106651, "lon": -74.0133414 }, + { "lat": 40.7106820, "lon": -74.0133816 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619600, + "bounds": { + "minlat": 40.7107643, + "minlon": -74.0142694, + "maxlat": 40.7110788, + "maxlon": -74.0135628 + }, + "nodes": [ + 6551502813, + 6551502830, + 6551502829, + 8213964621, + 6551502069, + 10288472830, + 10288472821, + 7133483582, + 6551502062, + 6551502066, + 7133483583, + 10288472819, + 10288458866, + 8213964622, + 6551502813 + ], + "geometry": [ + { "lat": 40.7107643, "lon": -74.0135770 }, + { "lat": 40.7107680, "lon": -74.0135743 }, + { "lat": 40.7107836, "lon": -74.0135628 }, + { "lat": 40.7108356, "lon": -74.0136863 }, + { "lat": 40.7108993, "lon": -74.0138384 }, + { "lat": 40.7110211, "lon": -74.0141286 }, + { "lat": 40.7110574, "lon": -74.0142152 }, + { "lat": 40.7110647, "lon": -74.0142326 }, + { "lat": 40.7110788, "lon": -74.0142661 }, + { "lat": 40.7110547, "lon": -74.0142694 }, + { "lat": 40.7110402, "lon": -74.0142349 }, + { "lat": 40.7110326, "lon": -74.0142168 }, + { "lat": 40.7110015, "lon": -74.0141428 }, + { "lat": 40.7108159, "lon": -74.0137006 }, + { "lat": 40.7107643, "lon": -74.0135770 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619601, + "bounds": { + "minlat": 40.7104093, + "minlon": -74.0138384, + "maxlat": 40.7109082, + "maxlon": -74.0126618 + }, + "nodes": [ + 6551502077, + 6551502078, + 10285341358, + 6551502075, + 6551501221, + 10288472979, + 6551502076, + 10288472866, + 6551500086, + 8213964620, + 6551502074, + 6551501235, + 6551502072, + 6551502069, + 8213964621, + 6551502829, + 6551502832, + 6551502070, + 10288472870, + 6551502067, + 6551502868, + 6551502867, + 10285341359, + 6551502077 + ], + "geometry": [ + { "lat": 40.7104093, "lon": -74.0126694 }, + { "lat": 40.7104313, "lon": -74.0126618 }, + { "lat": 40.7104456, "lon": -74.0126973 }, + { "lat": 40.7104630, "lon": -74.0127405 }, + { "lat": 40.7104638, "lon": -74.0127414 }, + { "lat": 40.7105434, "lon": -74.0129317 }, + { "lat": 40.7105912, "lon": -74.0130459 }, + { "lat": 40.7107035, "lon": -74.0133136 }, + { "lat": 40.7107863, "lon": -74.0135108 }, + { "lat": 40.7108543, "lon": -74.0136727 }, + { "lat": 40.7108740, "lon": -74.0137198 }, + { "lat": 40.7108641, "lon": -74.0137264 }, + { "lat": 40.7109082, "lon": -74.0138318 }, + { "lat": 40.7108993, "lon": -74.0138384 }, + { "lat": 40.7108356, "lon": -74.0136863 }, + { "lat": 40.7107836, "lon": -74.0135628 }, + { "lat": 40.7107495, "lon": -74.0134814 }, + { "lat": 40.7107016, "lon": -74.0133673 }, + { "lat": 40.7106847, "lon": -74.0133272 }, + { "lat": 40.7106684, "lon": -74.0132883 }, + { "lat": 40.7104764, "lon": -74.0128309 }, + { "lat": 40.7104659, "lon": -74.0128058 }, + { "lat": 40.7104241, "lon": -74.0127050 }, + { "lat": 40.7104093, "lon": -74.0126694 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619602, + "bounds": { + "minlat": 40.7106342, + "minlon": -74.0142704, + "maxlat": 40.7110547, + "maxlon": -74.0132903 + }, + "nodes": [ + 6551502068, + 6551502065, + 10288472871, + 10288472859, + 8213964623, + 10288472861, + 10285341257, + 10288472818, + 7133483584, + 6551502135, + 6551502066, + 7133483583, + 10288472819, + 10288458866, + 8213964622, + 6551502813, + 6551502063, + 6551502064, + 10288472869, + 6551502061, + 6551502068 + ], + "geometry": [ + { "lat": 40.7106438, "lon": -74.0132903 }, + { "lat": 40.7106342, "lon": -74.0132973 }, + { "lat": 40.7106553, "lon": -74.0133485 }, + { "lat": 40.7107571, "lon": -74.0135959 }, + { "lat": 40.7108062, "lon": -74.0137152 }, + { "lat": 40.7108698, "lon": -74.0138644 }, + { "lat": 40.7108899, "lon": -74.0139117 }, + { "lat": 40.7110184, "lon": -74.0142131 }, + { "lat": 40.7110263, "lon": -74.0142318 }, + { "lat": 40.7110426, "lon": -74.0142704 }, + { "lat": 40.7110547, "lon": -74.0142694 }, + { "lat": 40.7110402, "lon": -74.0142349 }, + { "lat": 40.7110326, "lon": -74.0142168 }, + { "lat": 40.7110015, "lon": -74.0141428 }, + { "lat": 40.7108159, "lon": -74.0137006 }, + { "lat": 40.7107643, "lon": -74.0135770 }, + { "lat": 40.7107299, "lon": -74.0134957 }, + { "lat": 40.7106820, "lon": -74.0133816 }, + { "lat": 40.7106651, "lon": -74.0133414 }, + { "lat": 40.7106489, "lon": -74.0133026 }, + { "lat": 40.7106438, "lon": -74.0132903 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619606, + "bounds": { + "minlat": 40.7108204, + "minlon": -74.0142698, + "maxlat": 40.7110264, + "maxlon": -74.0138279 + }, + "nodes": [ + 6551502092, + 10288472817, + 10285341331, + 7133530786, + 6551502089, + 6551502088, + 6551502085, + 6551502086, + 6419521274, + 7120288154, + 6551502084, + 10285341262, + 6551502081, + 10285341259, + 6551500115, + 6551502096, + 10288472860, + 6551502093, + 6551500111, + 6551500108, + 6551502092 + ], + "geometry": [ + { "lat": 40.7109023, "lon": -74.0139770 }, + { "lat": 40.7110017, "lon": -74.0142113 }, + { "lat": 40.7110063, "lon": -74.0142220 }, + { "lat": 40.7110128, "lon": -74.0142374 }, + { "lat": 40.7110264, "lon": -74.0142698 }, + { "lat": 40.7110217, "lon": -74.0142683 }, + { "lat": 40.7110166, "lon": -74.0142643 }, + { "lat": 40.7110106, "lon": -74.0142565 }, + { "lat": 40.7110059, "lon": -74.0142483 }, + { "lat": 40.7110005, "lon": -74.0142364 }, + { "lat": 40.7109939, "lon": -74.0142217 }, + { "lat": 40.7109907, "lon": -74.0142145 }, + { "lat": 40.7108892, "lon": -74.0139864 }, + { "lat": 40.7108204, "lon": -74.0138417 }, + { "lat": 40.7108325, "lon": -74.0138337 }, + { "lat": 40.7108409, "lon": -74.0138279 }, + { "lat": 40.7108600, "lon": -74.0138715 }, + { "lat": 40.7108789, "lon": -74.0139146 }, + { "lat": 40.7108708, "lon": -74.0139203 }, + { "lat": 40.7108971, "lon": -74.0139809 }, + { "lat": 40.7109023, "lon": -74.0139770 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619608, + "bounds": { + "minlat": 40.7106220, + "minlon": -74.0142705, + "maxlat": 40.7110426, + "maxlon": -74.0132973 + }, + "nodes": [ + 6551500640, + 6551500639, + 6551500594, + 10288472874, + 10288472858, + 8213941369, + 6551584156, + 6551500113, + 6551500110, + 6551502096, + 10288472860, + 6551502093, + 6551500106, + 6551500109, + 10285341258, + 6551502092, + 10288472817, + 10285341331, + 7133530786, + 6551502089, + 6551502090, + 6551502135, + 7133483584, + 10288472818, + 10285341257, + 10288472861, + 8213964623, + 10288472859, + 10288472871, + 6551502065, + 6551500640 + ], + "geometry": [ + { "lat": 40.7106316, "lon": -74.0132992 }, + { "lat": 40.7106220, "lon": -74.0133062 }, + { "lat": 40.7106253, "lon": -74.0133143 }, + { "lat": 40.7106433, "lon": -74.0133572 }, + { "lat": 40.7107178, "lon": -74.0135348 }, + { "lat": 40.7107967, "lon": -74.0137226 }, + { "lat": 40.7108151, "lon": -74.0137663 }, + { "lat": 40.7108231, "lon": -74.0137605 }, + { "lat": 40.7108490, "lon": -74.0138224 }, + { "lat": 40.7108409, "lon": -74.0138279 }, + { "lat": 40.7108600, "lon": -74.0138715 }, + { "lat": 40.7108789, "lon": -74.0139146 }, + { "lat": 40.7108866, "lon": -74.0139097 }, + { "lat": 40.7109124, "lon": -74.0139694 }, + { "lat": 40.7109049, "lon": -74.0139751 }, + { "lat": 40.7109023, "lon": -74.0139770 }, + { "lat": 40.7110017, "lon": -74.0142113 }, + { "lat": 40.7110063, "lon": -74.0142220 }, + { "lat": 40.7110128, "lon": -74.0142374 }, + { "lat": 40.7110264, "lon": -74.0142698 }, + { "lat": 40.7110331, "lon": -74.0142705 }, + { "lat": 40.7110426, "lon": -74.0142704 }, + { "lat": 40.7110263, "lon": -74.0142318 }, + { "lat": 40.7110184, "lon": -74.0142131 }, + { "lat": 40.7108899, "lon": -74.0139117 }, + { "lat": 40.7108698, "lon": -74.0138644 }, + { "lat": 40.7108062, "lon": -74.0137152 }, + { "lat": 40.7107571, "lon": -74.0135959 }, + { "lat": 40.7106553, "lon": -74.0133485 }, + { "lat": 40.7106342, "lon": -74.0132973 }, + { "lat": 40.7106316, "lon": -74.0132992 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619612, + "bounds": { + "minlat": 40.7102864, + "minlon": -74.0128567, + "maxlat": 40.7103622, + "maxlon": -74.0127065 + }, + "nodes": [ + 6551502843, + 6551502831, + 10285341365, + 6551502115, + 10285341251, + 6551502121, + 10285341357, + 6551502843 + ], + "geometry": [ + { "lat": 40.7103622, "lon": -74.0128439 }, + { "lat": 40.7103448, "lon": -74.0128567 }, + { "lat": 40.7103003, "lon": -74.0127520 }, + { "lat": 40.7102864, "lon": -74.0127194 }, + { "lat": 40.7102939, "lon": -74.0127125 }, + { "lat": 40.7103040, "lon": -74.0127065 }, + { "lat": 40.7103201, "lon": -74.0127445 }, + { "lat": 40.7103622, "lon": -74.0128439 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619615, + "bounds": { + "minlat": 40.7125452, + "minlon": -74.0136241, + "maxlat": 40.7125934, + "maxlon": -74.0135189 + }, + "nodes": [ + 6551502155, + 6551502156, + 6551502151, + 6551502152, + 6551502147, + 6551502148, + 6551502143, + 6551502144, + 6551502139, + 6551502140, + 6551502137, + 6551502138, + 6551502155 + ], + "geometry": [ + { "lat": 40.7125934, "lon": -74.0136198 }, + { "lat": 40.7125875, "lon": -74.0136058 }, + { "lat": 40.7125816, "lon": -74.0135917 }, + { "lat": 40.7125793, "lon": -74.0135862 }, + { "lat": 40.7125734, "lon": -74.0135721 }, + { "lat": 40.7125710, "lon": -74.0135666 }, + { "lat": 40.7125651, "lon": -74.0135525 }, + { "lat": 40.7125628, "lon": -74.0135470 }, + { "lat": 40.7125569, "lon": -74.0135329 }, + { "lat": 40.7125510, "lon": -74.0135189 }, + { "lat": 40.7125452, "lon": -74.0135231 }, + { "lat": 40.7125876, "lon": -74.0136241 }, + { "lat": 40.7125934, "lon": -74.0136198 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619617, + "bounds": { + "minlat": 40.7123623, + "minlon": -74.0136979, + "maxlat": 40.7124208, + "maxlon": -74.0135836 + }, + "nodes": [ + 6551502172, + 6551502169, + 6551502935, + 6551502936, + 6551502170, + 6551502167, + 6551502933, + 6551502934, + 6551502168, + 6551502165, + 6551502931, + 6551502932, + 6551502166, + 6551502163, + 6551502929, + 6551502930, + 6551502164, + 6551502161, + 6551502927, + 6551502162, + 6551502159, + 6551502160, + 6551502925, + 6551502926, + 6551502172 + ], + "geometry": [ + { "lat": 40.7123774, "lon": -74.0135836 }, + { "lat": 40.7124208, "lon": -74.0136869 }, + { "lat": 40.7124057, "lon": -74.0136979 }, + { "lat": 40.7124034, "lon": -74.0136924 }, + { "lat": 40.7124143, "lon": -74.0136844 }, + { "lat": 40.7124084, "lon": -74.0136703 }, + { "lat": 40.7123975, "lon": -74.0136783 }, + { "lat": 40.7123952, "lon": -74.0136728 }, + { "lat": 40.7124061, "lon": -74.0136648 }, + { "lat": 40.7124002, "lon": -74.0136507 }, + { "lat": 40.7123893, "lon": -74.0136587 }, + { "lat": 40.7123870, "lon": -74.0136532 }, + { "lat": 40.7123979, "lon": -74.0136452 }, + { "lat": 40.7123920, "lon": -74.0136312 }, + { "lat": 40.7123811, "lon": -74.0136391 }, + { "lat": 40.7123788, "lon": -74.0136338 }, + { "lat": 40.7123897, "lon": -74.0136259 }, + { "lat": 40.7123838, "lon": -74.0136118 }, + { "lat": 40.7123728, "lon": -74.0136198 }, + { "lat": 40.7123706, "lon": -74.0136143 }, + { "lat": 40.7123815, "lon": -74.0136063 }, + { "lat": 40.7123755, "lon": -74.0135922 }, + { "lat": 40.7123646, "lon": -74.0136002 }, + { "lat": 40.7123623, "lon": -74.0135947 }, + { "lat": 40.7123774, "lon": -74.0135836 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619618, + "bounds": { + "minlat": 40.7125510, + "minlon": -74.0136198, + "maxlat": 40.7126087, + "maxlon": -74.0135077 + }, + "nodes": [ + 6551502157, + 6551502158, + 6551502155, + 6551502156, + 6551502153, + 6551502154, + 6551502151, + 6551502152, + 6551502149, + 6551502150, + 6551502147, + 6551502148, + 6551502145, + 6551502146, + 6551502143, + 6551502144, + 6551502141, + 6551502142, + 6551502139, + 6551502140, + 6551502157 + ], + "geometry": [ + { "lat": 40.7125663, "lon": -74.0135077 }, + { "lat": 40.7126087, "lon": -74.0136087 }, + { "lat": 40.7125934, "lon": -74.0136198 }, + { "lat": 40.7125875, "lon": -74.0136058 }, + { "lat": 40.7125984, "lon": -74.0135978 }, + { "lat": 40.7125925, "lon": -74.0135837 }, + { "lat": 40.7125816, "lon": -74.0135917 }, + { "lat": 40.7125793, "lon": -74.0135862 }, + { "lat": 40.7125902, "lon": -74.0135782 }, + { "lat": 40.7125843, "lon": -74.0135641 }, + { "lat": 40.7125734, "lon": -74.0135721 }, + { "lat": 40.7125710, "lon": -74.0135666 }, + { "lat": 40.7125820, "lon": -74.0135586 }, + { "lat": 40.7125761, "lon": -74.0135445 }, + { "lat": 40.7125651, "lon": -74.0135525 }, + { "lat": 40.7125628, "lon": -74.0135470 }, + { "lat": 40.7125738, "lon": -74.0135390 }, + { "lat": 40.7125679, "lon": -74.0135249 }, + { "lat": 40.7125569, "lon": -74.0135329 }, + { "lat": 40.7125510, "lon": -74.0135189 }, + { "lat": 40.7125663, "lon": -74.0135077 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619619, + "bounds": { + "minlat": 40.7124706, + "minlon": -74.0135345, + "maxlat": 40.7125115, + "maxlon": -74.0134617 + }, + "nodes": [ + 6551501451, + 6551502183, + 6551502184, + 6551502181, + 6551502182, + 6551502179, + 6551502180, + 6551502177, + 6551502178, + 6551502175, + 6551502176, + 6551502173, + 6551501451 + ], + "geometry": [ + { "lat": 40.7124856, "lon": -74.0134617 }, + { "lat": 40.7125115, "lon": -74.0135235 }, + { "lat": 40.7124964, "lon": -74.0135345 }, + { "lat": 40.7124905, "lon": -74.0135204 }, + { "lat": 40.7125014, "lon": -74.0135125 }, + { "lat": 40.7124955, "lon": -74.0134984 }, + { "lat": 40.7124846, "lon": -74.0135064 }, + { "lat": 40.7124823, "lon": -74.0135009 }, + { "lat": 40.7124932, "lon": -74.0134929 }, + { "lat": 40.7124873, "lon": -74.0134788 }, + { "lat": 40.7124764, "lon": -74.0134868 }, + { "lat": 40.7124706, "lon": -74.0134726 }, + { "lat": 40.7124856, "lon": -74.0134617 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619620, + "bounds": { + "minlat": 40.7124668, + "minlon": -74.0135372, + "maxlat": 40.7124964, + "maxlon": -74.0134726 + }, + "nodes": [ + 6551502184, + 6551502181, + 6551502180, + 6551502177, + 6551502176, + 6551502173, + 6551502174, + 6551502171, + 6551502184 + ], + "geometry": [ + { "lat": 40.7124964, "lon": -74.0135345 }, + { "lat": 40.7124905, "lon": -74.0135204 }, + { "lat": 40.7124846, "lon": -74.0135064 }, + { "lat": 40.7124823, "lon": -74.0135009 }, + { "lat": 40.7124764, "lon": -74.0134868 }, + { "lat": 40.7124706, "lon": -74.0134726 }, + { "lat": 40.7124668, "lon": -74.0134754 }, + { "lat": 40.7124927, "lon": -74.0135372 }, + { "lat": 40.7124964, "lon": -74.0135345 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619621, + "bounds": { + "minlat": 40.7124166, + "minlon": -74.0136000, + "maxlat": 40.7124656, + "maxlon": -74.0135073 + }, + "nodes": [ + 6551502204, + 6551501441, + 6551500170, + 6551500173, + 6551502199, + 6551502200, + 6551502197, + 6551502198, + 6551502195, + 6551502196, + 6551502193, + 6551502194, + 6551502191, + 6551502192, + 6551502189, + 6551502190, + 6551502187, + 6551502204 + ], + "geometry": [ + { "lat": 40.7124309, "lon": -74.0135073 }, + { "lat": 40.7124506, "lon": -74.0135533 }, + { "lat": 40.7124656, "lon": -74.0135889 }, + { "lat": 40.7124505, "lon": -74.0136000 }, + { "lat": 40.7124446, "lon": -74.0135859 }, + { "lat": 40.7124555, "lon": -74.0135779 }, + { "lat": 40.7124496, "lon": -74.0135638 }, + { "lat": 40.7124387, "lon": -74.0135718 }, + { "lat": 40.7124364, "lon": -74.0135663 }, + { "lat": 40.7124473, "lon": -74.0135583 }, + { "lat": 40.7124414, "lon": -74.0135443 }, + { "lat": 40.7124304, "lon": -74.0135522 }, + { "lat": 40.7124281, "lon": -74.0135467 }, + { "lat": 40.7124391, "lon": -74.0135387 }, + { "lat": 40.7124332, "lon": -74.0135247 }, + { "lat": 40.7124222, "lon": -74.0135327 }, + { "lat": 40.7124166, "lon": -74.0135183 }, + { "lat": 40.7124309, "lon": -74.0135073 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619622, + "bounds": { + "minlat": 40.7124126, + "minlon": -74.0136027, + "maxlat": 40.7124505, + "maxlon": -74.0135183 + }, + "nodes": [ + 6551500173, + 6551502199, + 6551502198, + 6551502195, + 6551502194, + 6551502191, + 6551502190, + 6551502187, + 6551502188, + 6551502185, + 6551500173 + ], + "geometry": [ + { "lat": 40.7124505, "lon": -74.0136000 }, + { "lat": 40.7124446, "lon": -74.0135859 }, + { "lat": 40.7124387, "lon": -74.0135718 }, + { "lat": 40.7124364, "lon": -74.0135663 }, + { "lat": 40.7124304, "lon": -74.0135522 }, + { "lat": 40.7124281, "lon": -74.0135467 }, + { "lat": 40.7124222, "lon": -74.0135327 }, + { "lat": 40.7124166, "lon": -74.0135183 }, + { "lat": 40.7124126, "lon": -74.0135213 }, + { "lat": 40.7124468, "lon": -74.0136027 }, + { "lat": 40.7124505, "lon": -74.0136000 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619623, + "bounds": { + "minlat": 40.7122103, + "minlon": -74.0137592, + "maxlat": 40.7122596, + "maxlon": -74.0136668 + }, + "nodes": [ + 6551502222, + 6551502219, + 6551502220, + 6551502217, + 6551502218, + 6551502215, + 6551502216, + 6551502213, + 6551502214, + 6551502211, + 6551502212, + 6551502209, + 6551502210, + 6551502207, + 6551502208, + 6551502205, + 6551502222 + ], + "geometry": [ + { "lat": 40.7122254, "lon": -74.0136668 }, + { "lat": 40.7122596, "lon": -74.0137482 }, + { "lat": 40.7122445, "lon": -74.0137592 }, + { "lat": 40.7122386, "lon": -74.0137452 }, + { "lat": 40.7122495, "lon": -74.0137372 }, + { "lat": 40.7122436, "lon": -74.0137231 }, + { "lat": 40.7122327, "lon": -74.0137311 }, + { "lat": 40.7122304, "lon": -74.0137256 }, + { "lat": 40.7122413, "lon": -74.0137176 }, + { "lat": 40.7122354, "lon": -74.0137035 }, + { "lat": 40.7122245, "lon": -74.0137115 }, + { "lat": 40.7122222, "lon": -74.0137060 }, + { "lat": 40.7122331, "lon": -74.0136980 }, + { "lat": 40.7122272, "lon": -74.0136839 }, + { "lat": 40.7122163, "lon": -74.0136919 }, + { "lat": 40.7122103, "lon": -74.0136779 }, + { "lat": 40.7122254, "lon": -74.0136668 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619624, + "bounds": { + "minlat": 40.7122067, + "minlon": -74.0137619, + "maxlat": 40.7122445, + "maxlon": -74.0136779 + }, + "nodes": [ + 6551502220, + 6551502217, + 6551502216, + 6551502213, + 6551502212, + 6551502209, + 6551502208, + 6551502205, + 6551502206, + 6551501407, + 6551502203, + 6551502220 + ], + "geometry": [ + { "lat": 40.7122445, "lon": -74.0137592 }, + { "lat": 40.7122386, "lon": -74.0137452 }, + { "lat": 40.7122327, "lon": -74.0137311 }, + { "lat": 40.7122304, "lon": -74.0137256 }, + { "lat": 40.7122245, "lon": -74.0137115 }, + { "lat": 40.7122222, "lon": -74.0137060 }, + { "lat": 40.7122163, "lon": -74.0136919 }, + { "lat": 40.7122103, "lon": -74.0136779 }, + { "lat": 40.7122067, "lon": -74.0136805 }, + { "lat": 40.7122267, "lon": -74.0137282 }, + { "lat": 40.7122408, "lon": -74.0137619 }, + { "lat": 40.7122445, "lon": -74.0137592 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619625, + "bounds": { + "minlat": 40.7120964, + "minlon": -74.0138246, + "maxlat": 40.7121431, + "maxlon": -74.0137381 + }, + "nodes": [ + 6551502240, + 6551502237, + 6551502238, + 6551502235, + 6551502236, + 6551502233, + 6551502234, + 6551502231, + 6551502232, + 6551502229, + 6551502230, + 6551502227, + 6551502228, + 6551502225, + 6551502226, + 6551502223, + 6551502240 + ], + "geometry": [ + { "lat": 40.7121115, "lon": -74.0137381 }, + { "lat": 40.7121431, "lon": -74.0138136 }, + { "lat": 40.7121280, "lon": -74.0138246 }, + { "lat": 40.7121246, "lon": -74.0138165 }, + { "lat": 40.7121356, "lon": -74.0138085 }, + { "lat": 40.7121297, "lon": -74.0137944 }, + { "lat": 40.7121187, "lon": -74.0138024 }, + { "lat": 40.7121164, "lon": -74.0137969 }, + { "lat": 40.7121273, "lon": -74.0137889 }, + { "lat": 40.7121214, "lon": -74.0137748 }, + { "lat": 40.7121105, "lon": -74.0137828 }, + { "lat": 40.7121082, "lon": -74.0137773 }, + { "lat": 40.7121191, "lon": -74.0137693 }, + { "lat": 40.7121132, "lon": -74.0137553 }, + { "lat": 40.7121023, "lon": -74.0137632 }, + { "lat": 40.7120964, "lon": -74.0137492 }, + { "lat": 40.7121115, "lon": -74.0137381 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619626, + "bounds": { + "minlat": 40.7120927, + "minlon": -74.0138273, + "maxlat": 40.7121280, + "maxlon": -74.0137492 + }, + "nodes": [ + 6551502238, + 6551502235, + 6551502234, + 6551502231, + 6551502230, + 6551502227, + 6551502226, + 6551502223, + 6551502224, + 6551502221, + 6551502238 + ], + "geometry": [ + { "lat": 40.7121280, "lon": -74.0138246 }, + { "lat": 40.7121246, "lon": -74.0138165 }, + { "lat": 40.7121187, "lon": -74.0138024 }, + { "lat": 40.7121164, "lon": -74.0137969 }, + { "lat": 40.7121105, "lon": -74.0137828 }, + { "lat": 40.7121082, "lon": -74.0137773 }, + { "lat": 40.7121023, "lon": -74.0137632 }, + { "lat": 40.7120964, "lon": -74.0137492 }, + { "lat": 40.7120927, "lon": -74.0137518 }, + { "lat": 40.7121244, "lon": -74.0138273 }, + { "lat": 40.7121280, "lon": -74.0138246 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619627, + "bounds": { + "minlat": 40.7121500, + "minlon": -74.0124895, + "maxlat": 40.7121909, + "maxlon": -74.0124142 + }, + "nodes": [ + 6551502254, + 6551502251, + 6551502239, + 6551502249, + 6551502250, + 6551502247, + 6551502248, + 6551502245, + 6551502246, + 6551502243, + 6551502244, + 6551502241, + 6551502254 + ], + "geometry": [ + { "lat": 40.7121650, "lon": -74.0124142 }, + { "lat": 40.7121909, "lon": -74.0124760 }, + { "lat": 40.7121717, "lon": -74.0124895 }, + { "lat": 40.7121699, "lon": -74.0124730 }, + { "lat": 40.7121809, "lon": -74.0124650 }, + { "lat": 40.7121749, "lon": -74.0124509 }, + { "lat": 40.7121640, "lon": -74.0124589 }, + { "lat": 40.7121617, "lon": -74.0124534 }, + { "lat": 40.7121726, "lon": -74.0124454 }, + { "lat": 40.7121667, "lon": -74.0124313 }, + { "lat": 40.7121558, "lon": -74.0124393 }, + { "lat": 40.7121500, "lon": -74.0124252 }, + { "lat": 40.7121650, "lon": -74.0124142 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619628, + "bounds": { + "minlat": 40.7121462, + "minlon": -74.0124895, + "maxlat": 40.7121717, + "maxlon": -74.0124252 + }, + "nodes": [ + 6551502239, + 6551502249, + 6551502248, + 6551502245, + 6551502244, + 6551502241, + 6551502242, + 6551502239 + ], + "geometry": [ + { "lat": 40.7121717, "lon": -74.0124895 }, + { "lat": 40.7121699, "lon": -74.0124730 }, + { "lat": 40.7121640, "lon": -74.0124589 }, + { "lat": 40.7121617, "lon": -74.0124534 }, + { "lat": 40.7121558, "lon": -74.0124393 }, + { "lat": 40.7121500, "lon": -74.0124252 }, + { "lat": 40.7121462, "lon": -74.0124279 }, + { "lat": 40.7121717, "lon": -74.0124895 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619629, + "bounds": { + "minlat": 40.7120940, + "minlon": -74.0123936, + "maxlat": 40.7121516, + "maxlon": -74.0122814 + }, + "nodes": [ + 6551502276, + 6551502273, + 6551502274, + 6551502271, + 6551502272, + 6551502269, + 6551502270, + 6551502267, + 6551502268, + 6551502265, + 6551502266, + 6551502263, + 6551502264, + 6551502261, + 6551502262, + 6551502259, + 6551502260, + 6551502257, + 6551502258, + 6551502255, + 6551502276 + ], + "geometry": [ + { "lat": 40.7121092, "lon": -74.0122814 }, + { "lat": 40.7121516, "lon": -74.0123823 }, + { "lat": 40.7121363, "lon": -74.0123936 }, + { "lat": 40.7121304, "lon": -74.0123794 }, + { "lat": 40.7121414, "lon": -74.0123714 }, + { "lat": 40.7121355, "lon": -74.0123574 }, + { "lat": 40.7121245, "lon": -74.0123654 }, + { "lat": 40.7121222, "lon": -74.0123598 }, + { "lat": 40.7121332, "lon": -74.0123518 }, + { "lat": 40.7121273, "lon": -74.0123378 }, + { "lat": 40.7121163, "lon": -74.0123458 }, + { "lat": 40.7121140, "lon": -74.0123402 }, + { "lat": 40.7121249, "lon": -74.0123323 }, + { "lat": 40.7121190, "lon": -74.0123182 }, + { "lat": 40.7121081, "lon": -74.0123262 }, + { "lat": 40.7121058, "lon": -74.0123207 }, + { "lat": 40.7121167, "lon": -74.0123127 }, + { "lat": 40.7121108, "lon": -74.0122986 }, + { "lat": 40.7120999, "lon": -74.0123066 }, + { "lat": 40.7120940, "lon": -74.0122925 }, + { "lat": 40.7121092, "lon": -74.0122814 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619630, + "bounds": { + "minlat": 40.7120904, + "minlon": -74.0123961, + "maxlat": 40.7121363, + "maxlon": -74.0122925 + }, + "nodes": [ + 6551502274, + 6551502271, + 6551502270, + 6551502267, + 6551502266, + 6551502263, + 6551502262, + 6551502259, + 6551502258, + 6551502255, + 6551502256, + 6551502253, + 6551502274 + ], + "geometry": [ + { "lat": 40.7121363, "lon": -74.0123936 }, + { "lat": 40.7121304, "lon": -74.0123794 }, + { "lat": 40.7121245, "lon": -74.0123654 }, + { "lat": 40.7121222, "lon": -74.0123598 }, + { "lat": 40.7121163, "lon": -74.0123458 }, + { "lat": 40.7121140, "lon": -74.0123402 }, + { "lat": 40.7121081, "lon": -74.0123262 }, + { "lat": 40.7121058, "lon": -74.0123207 }, + { "lat": 40.7120999, "lon": -74.0123066 }, + { "lat": 40.7120940, "lon": -74.0122925 }, + { "lat": 40.7120904, "lon": -74.0122951 }, + { "lat": 40.7121328, "lon": -74.0123961 }, + { "lat": 40.7121363, "lon": -74.0123936 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619631, + "bounds": { + "minlat": 40.7120894, + "minlon": -74.0126353, + "maxlat": 40.7121339, + "maxlon": -74.0125538 + }, + "nodes": [ + 6551502294, + 6551502291, + 6551502292, + 6551502289, + 6551502290, + 6551502287, + 6551502288, + 6551502285, + 6551502286, + 6551502283, + 6551502284, + 6551502281, + 6551502282, + 6551502279, + 6551502280, + 6551502277, + 6551502294 + ], + "geometry": [ + { "lat": 40.7121045, "lon": -74.0125538 }, + { "lat": 40.7121339, "lon": -74.0126244 }, + { "lat": 40.7121188, "lon": -74.0126353 }, + { "lat": 40.7121150, "lon": -74.0126257 }, + { "lat": 40.7121259, "lon": -74.0126177 }, + { "lat": 40.7121200, "lon": -74.0126036 }, + { "lat": 40.7121091, "lon": -74.0126116 }, + { "lat": 40.7121068, "lon": -74.0126061 }, + { "lat": 40.7121177, "lon": -74.0125981 }, + { "lat": 40.7121118, "lon": -74.0125840 }, + { "lat": 40.7121009, "lon": -74.0125920 }, + { "lat": 40.7120986, "lon": -74.0125865 }, + { "lat": 40.7121095, "lon": -74.0125785 }, + { "lat": 40.7121036, "lon": -74.0125644 }, + { "lat": 40.7120927, "lon": -74.0125724 }, + { "lat": 40.7120894, "lon": -74.0125648 }, + { "lat": 40.7121045, "lon": -74.0125538 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619632, + "bounds": { + "minlat": 40.7120857, + "minlon": -74.0126378, + "maxlat": 40.7121188, + "maxlon": -74.0125648 + }, + "nodes": [ + 6551502292, + 6551502289, + 6551502288, + 6551502285, + 6551502284, + 6551502281, + 6551502280, + 6551502277, + 6551502278, + 6551501494, + 6551502292 + ], + "geometry": [ + { "lat": 40.7121188, "lon": -74.0126353 }, + { "lat": 40.7121150, "lon": -74.0126257 }, + { "lat": 40.7121091, "lon": -74.0126116 }, + { "lat": 40.7121068, "lon": -74.0126061 }, + { "lat": 40.7121009, "lon": -74.0125920 }, + { "lat": 40.7120986, "lon": -74.0125865 }, + { "lat": 40.7120927, "lon": -74.0125724 }, + { "lat": 40.7120894, "lon": -74.0125648 }, + { "lat": 40.7120857, "lon": -74.0125675 }, + { "lat": 40.7121155, "lon": -74.0126378 }, + { "lat": 40.7121188, "lon": -74.0126353 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619633, + "bounds": { + "minlat": 40.7120128, + "minlon": -74.0124585, + "maxlat": 40.7120599, + "maxlon": -74.0123706 + }, + "nodes": [ + 6551501495, + 6551502309, + 6551502310, + 6551502307, + 6551502308, + 6551502305, + 6551502306, + 6551502303, + 6551502304, + 6551502301, + 6551502302, + 6551502299, + 6551502300, + 6551502297, + 6551502298, + 6551502295, + 6551501495 + ], + "geometry": [ + { "lat": 40.7120276, "lon": -74.0123706 }, + { "lat": 40.7120599, "lon": -74.0124475 }, + { "lat": 40.7120448, "lon": -74.0124585 }, + { "lat": 40.7120410, "lon": -74.0124488 }, + { "lat": 40.7120520, "lon": -74.0124408 }, + { "lat": 40.7120461, "lon": -74.0124267 }, + { "lat": 40.7120351, "lon": -74.0124347 }, + { "lat": 40.7120328, "lon": -74.0124292 }, + { "lat": 40.7120438, "lon": -74.0124212 }, + { "lat": 40.7120378, "lon": -74.0124071 }, + { "lat": 40.7120269, "lon": -74.0124151 }, + { "lat": 40.7120246, "lon": -74.0124096 }, + { "lat": 40.7120355, "lon": -74.0124016 }, + { "lat": 40.7120296, "lon": -74.0123876 }, + { "lat": 40.7120187, "lon": -74.0123955 }, + { "lat": 40.7120128, "lon": -74.0123815 }, + { "lat": 40.7120276, "lon": -74.0123706 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619634, + "bounds": { + "minlat": 40.7120091, + "minlon": -74.0124612, + "maxlat": 40.7120448, + "maxlon": -74.0123815 + }, + "nodes": [ + 6551502310, + 6551502307, + 6551502306, + 6551502303, + 6551502302, + 6551502299, + 6551502298, + 6551502295, + 6551502296, + 6551502293, + 6551502310 + ], + "geometry": [ + { "lat": 40.7120448, "lon": -74.0124585 }, + { "lat": 40.7120410, "lon": -74.0124488 }, + { "lat": 40.7120351, "lon": -74.0124347 }, + { "lat": 40.7120328, "lon": -74.0124292 }, + { "lat": 40.7120269, "lon": -74.0124151 }, + { "lat": 40.7120246, "lon": -74.0124096 }, + { "lat": 40.7120187, "lon": -74.0123955 }, + { "lat": 40.7120128, "lon": -74.0123815 }, + { "lat": 40.7120091, "lon": -74.0123842 }, + { "lat": 40.7120411, "lon": -74.0124612 }, + { "lat": 40.7120448, "lon": -74.0124585 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619635, + "bounds": { + "minlat": 40.7119843, + "minlon": -74.0125664, + "maxlat": 40.7120318, + "maxlon": -74.0124785 + }, + "nodes": [ + 6551502330, + 6551502327, + 6551502328, + 6551502325, + 6551502326, + 6551502323, + 6551502324, + 6551502321, + 6551502322, + 6551502319, + 6551502320, + 6551502317, + 6551502318, + 6551502315, + 6551502316, + 6551502313, + 6551502330 + ], + "geometry": [ + { "lat": 40.7119995, "lon": -74.0124785 }, + { "lat": 40.7120318, "lon": -74.0125554 }, + { "lat": 40.7120167, "lon": -74.0125664 }, + { "lat": 40.7120127, "lon": -74.0125569 }, + { "lat": 40.7120236, "lon": -74.0125489 }, + { "lat": 40.7120177, "lon": -74.0125348 }, + { "lat": 40.7120068, "lon": -74.0125428 }, + { "lat": 40.7120045, "lon": -74.0125373 }, + { "lat": 40.7120154, "lon": -74.0125293 }, + { "lat": 40.7120095, "lon": -74.0125152 }, + { "lat": 40.7119986, "lon": -74.0125232 }, + { "lat": 40.7119962, "lon": -74.0125177 }, + { "lat": 40.7120072, "lon": -74.0125097 }, + { "lat": 40.7120013, "lon": -74.0124956 }, + { "lat": 40.7119903, "lon": -74.0125036 }, + { "lat": 40.7119843, "lon": -74.0124896 }, + { "lat": 40.7119995, "lon": -74.0124785 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619636, + "bounds": { + "minlat": 40.7119807, + "minlon": -74.0125691, + "maxlat": 40.7120167, + "maxlon": -74.0124896 + }, + "nodes": [ + 6551502328, + 6551502325, + 6551502324, + 6551502321, + 6551502320, + 6551502317, + 6551502316, + 6551502313, + 6551502314, + 6551502311, + 6551502328 + ], + "geometry": [ + { "lat": 40.7120167, "lon": -74.0125664 }, + { "lat": 40.7120127, "lon": -74.0125569 }, + { "lat": 40.7120068, "lon": -74.0125428 }, + { "lat": 40.7120045, "lon": -74.0125373 }, + { "lat": 40.7119986, "lon": -74.0125232 }, + { "lat": 40.7119962, "lon": -74.0125177 }, + { "lat": 40.7119903, "lon": -74.0125036 }, + { "lat": 40.7119843, "lon": -74.0124896 }, + { "lat": 40.7119807, "lon": -74.0124922 }, + { "lat": 40.7120130, "lon": -74.0125691 }, + { "lat": 40.7120167, "lon": -74.0125664 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619637, + "bounds": { + "minlat": 40.7118971, + "minlon": -74.0125113, + "maxlat": 40.7119227, + "maxlon": -74.0124751 + }, + "nodes": [ + 6551502340, + 6551502337, + 6551502338, + 6551502335, + 6551502336, + 6551502333, + 6551502334, + 6551502331, + 6551502340 + ], + "geometry": [ + { "lat": 40.7119122, "lon": -74.0124751 }, + { "lat": 40.7119227, "lon": -74.0125002 }, + { "lat": 40.7119075, "lon": -74.0125113 }, + { "lat": 40.7119053, "lon": -74.0125057 }, + { "lat": 40.7119162, "lon": -74.0124977 }, + { "lat": 40.7119103, "lon": -74.0124837 }, + { "lat": 40.7118994, "lon": -74.0124917 }, + { "lat": 40.7118971, "lon": -74.0124861 }, + { "lat": 40.7119122, "lon": -74.0124751 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619638, + "bounds": { + "minlat": 40.7118934, + "minlon": -74.0125139, + "maxlat": 40.7119075, + "maxlon": -74.0124861 + }, + "nodes": [ + 6551502338, + 6551502335, + 6551502334, + 6551502331, + 6551502332, + 6551502329, + 6551502338 + ], + "geometry": [ + { "lat": 40.7119075, "lon": -74.0125113 }, + { "lat": 40.7119053, "lon": -74.0125057 }, + { "lat": 40.7118994, "lon": -74.0124917 }, + { "lat": 40.7118971, "lon": -74.0124861 }, + { "lat": 40.7118934, "lon": -74.0124888 }, + { "lat": 40.7119039, "lon": -74.0125139 }, + { "lat": 40.7119075, "lon": -74.0125113 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619639, + "bounds": { + "minlat": 40.7117705, + "minlon": -74.0124910, + "maxlat": 40.7118198, + "maxlon": -74.0123984 + }, + "nodes": [ + 6551502358, + 6551502355, + 6551502356, + 6551502353, + 6551502354, + 6551502351, + 6551502352, + 6551502349, + 6551502350, + 6551502347, + 6551502348, + 6551502345, + 6551502346, + 6551502343, + 6551502344, + 6551502341, + 6551502358 + ], + "geometry": [ + { "lat": 40.7117856, "lon": -74.0123984 }, + { "lat": 40.7118198, "lon": -74.0124798 }, + { "lat": 40.7118045, "lon": -74.0124910 }, + { "lat": 40.7117988, "lon": -74.0124768 }, + { "lat": 40.7118097, "lon": -74.0124688 }, + { "lat": 40.7118038, "lon": -74.0124547 }, + { "lat": 40.7117929, "lon": -74.0124627 }, + { "lat": 40.7117906, "lon": -74.0124572 }, + { "lat": 40.7118015, "lon": -74.0124492 }, + { "lat": 40.7117956, "lon": -74.0124352 }, + { "lat": 40.7117847, "lon": -74.0124431 }, + { "lat": 40.7117823, "lon": -74.0124376 }, + { "lat": 40.7117933, "lon": -74.0124296 }, + { "lat": 40.7117874, "lon": -74.0124156 }, + { "lat": 40.7117764, "lon": -74.0124236 }, + { "lat": 40.7117705, "lon": -74.0124095 }, + { "lat": 40.7117856, "lon": -74.0123984 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619640, + "bounds": { + "minlat": 40.7117669, + "minlon": -74.0124936, + "maxlat": 40.7118045, + "maxlon": -74.0124095 + }, + "nodes": [ + 6551502356, + 6551502353, + 6551502352, + 6551502349, + 6551502348, + 6551502345, + 6551502344, + 6551502341, + 6551502342, + 6551502339, + 6551502356 + ], + "geometry": [ + { "lat": 40.7118045, "lon": -74.0124910 }, + { "lat": 40.7117988, "lon": -74.0124768 }, + { "lat": 40.7117929, "lon": -74.0124627 }, + { "lat": 40.7117906, "lon": -74.0124572 }, + { "lat": 40.7117847, "lon": -74.0124431 }, + { "lat": 40.7117823, "lon": -74.0124376 }, + { "lat": 40.7117764, "lon": -74.0124236 }, + { "lat": 40.7117705, "lon": -74.0124095 }, + { "lat": 40.7117669, "lon": -74.0124122 }, + { "lat": 40.7118010, "lon": -74.0124936 }, + { "lat": 40.7118045, "lon": -74.0124910 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619641, + "bounds": { + "minlat": 40.7119690, + "minlon": -74.0127390, + "maxlat": 40.7120183, + "maxlon": -74.0126466 + }, + "nodes": [ + 6551502376, + 6551502373, + 6551502374, + 6551502371, + 6551502372, + 6551502369, + 6551502370, + 6551502367, + 6551502368, + 6551502365, + 6551502366, + 6551502363, + 6551502364, + 6551502361, + 6551502362, + 6551502359, + 6551502376 + ], + "geometry": [ + { "lat": 40.7119841, "lon": -74.0126466 }, + { "lat": 40.7120183, "lon": -74.0127280 }, + { "lat": 40.7120032, "lon": -74.0127390 }, + { "lat": 40.7119973, "lon": -74.0127249 }, + { "lat": 40.7120082, "lon": -74.0127169 }, + { "lat": 40.7120023, "lon": -74.0127029 }, + { "lat": 40.7119914, "lon": -74.0127109 }, + { "lat": 40.7119891, "lon": -74.0127053 }, + { "lat": 40.7120000, "lon": -74.0126973 }, + { "lat": 40.7119941, "lon": -74.0126833 }, + { "lat": 40.7119832, "lon": -74.0126913 }, + { "lat": 40.7119808, "lon": -74.0126857 }, + { "lat": 40.7119918, "lon": -74.0126778 }, + { "lat": 40.7119859, "lon": -74.0126637 }, + { "lat": 40.7119749, "lon": -74.0126717 }, + { "lat": 40.7119690, "lon": -74.0126576 }, + { "lat": 40.7119841, "lon": -74.0126466 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619642, + "bounds": { + "minlat": 40.7119654, + "minlon": -74.0127417, + "maxlat": 40.7120032, + "maxlon": -74.0126576 + }, + "nodes": [ + 6551502374, + 6551502371, + 6551502370, + 6551502367, + 6551502366, + 6551502363, + 6551502362, + 6551502359, + 6551502360, + 6551502357, + 6551502374 + ], + "geometry": [ + { "lat": 40.7120032, "lon": -74.0127390 }, + { "lat": 40.7119973, "lon": -74.0127249 }, + { "lat": 40.7119914, "lon": -74.0127109 }, + { "lat": 40.7119891, "lon": -74.0127053 }, + { "lat": 40.7119832, "lon": -74.0126913 }, + { "lat": 40.7119808, "lon": -74.0126857 }, + { "lat": 40.7119749, "lon": -74.0126717 }, + { "lat": 40.7119690, "lon": -74.0126576 }, + { "lat": 40.7119654, "lon": -74.0126603 }, + { "lat": 40.7119995, "lon": -74.0127417 }, + { "lat": 40.7120032, "lon": -74.0127390 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619643, + "bounds": { + "minlat": 40.7118287, + "minlon": -74.0127937, + "maxlat": 40.7118544, + "maxlon": -74.0127575 + }, + "nodes": [ + 6551502386, + 6551502383, + 6551502384, + 6551502381, + 6551502382, + 6551502379, + 6551502380, + 6551502377, + 6551502386 + ], + "geometry": [ + { "lat": 40.7118438, "lon": -74.0127575 }, + { "lat": 40.7118544, "lon": -74.0127826 }, + { "lat": 40.7118393, "lon": -74.0127937 }, + { "lat": 40.7118369, "lon": -74.0127881 }, + { "lat": 40.7118479, "lon": -74.0127802 }, + { "lat": 40.7118420, "lon": -74.0127661 }, + { "lat": 40.7118310, "lon": -74.0127741 }, + { "lat": 40.7118287, "lon": -74.0127686 }, + { "lat": 40.7118438, "lon": -74.0127575 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619644, + "bounds": { + "minlat": 40.7118250, + "minlon": -74.0127963, + "maxlat": 40.7118393, + "maxlon": -74.0127686 + }, + "nodes": [ + 6551502384, + 6551502381, + 6551502380, + 6551502377, + 6551502378, + 6551502375, + 6551502384 + ], + "geometry": [ + { "lat": 40.7118393, "lon": -74.0127937 }, + { "lat": 40.7118369, "lon": -74.0127881 }, + { "lat": 40.7118310, "lon": -74.0127741 }, + { "lat": 40.7118287, "lon": -74.0127686 }, + { "lat": 40.7118250, "lon": -74.0127712 }, + { "lat": 40.7118356, "lon": -74.0127963 }, + { "lat": 40.7118393, "lon": -74.0127937 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619645, + "bounds": { + "minlat": 40.7112096, + "minlon": -74.0126649, + "maxlat": 40.7112588, + "maxlon": -74.0125723 + }, + "nodes": [ + 6551502404, + 6551502401, + 6551502402, + 6551502387, + 6551502404 + ], + "geometry": [ + { "lat": 40.7112247, "lon": -74.0125723 }, + { "lat": 40.7112588, "lon": -74.0126538 }, + { "lat": 40.7112436, "lon": -74.0126649 }, + { "lat": 40.7112096, "lon": -74.0125834 }, + { "lat": 40.7112247, "lon": -74.0125723 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619646, + "bounds": { + "minlat": 40.7112059, + "minlon": -74.0126675, + "maxlat": 40.7112436, + "maxlon": -74.0125834 + }, + "nodes": [ + 6551502402, + 6551502387, + 6551502388, + 6551502385, + 6551502402 + ], + "geometry": [ + { "lat": 40.7112436, "lon": -74.0126649 }, + { "lat": 40.7112096, "lon": -74.0125834 }, + { "lat": 40.7112059, "lon": -74.0125861 }, + { "lat": 40.7112400, "lon": -74.0126675 }, + { "lat": 40.7112436, "lon": -74.0126649 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619647, + "bounds": { + "minlat": 40.7112439, + "minlon": -74.0125846, + "maxlat": 40.7112850, + "maxlon": -74.0125117 + }, + "nodes": [ + 6551502946, + 6551502416, + 6551502413, + 6551502406, + 6551502946 + ], + "geometry": [ + { "lat": 40.7112590, "lon": -74.0125117 }, + { "lat": 40.7112850, "lon": -74.0125736 }, + { "lat": 40.7112699, "lon": -74.0125846 }, + { "lat": 40.7112439, "lon": -74.0125228 }, + { "lat": 40.7112590, "lon": -74.0125117 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619648, + "bounds": { + "minlat": 40.7112402, + "minlon": -74.0125873, + "maxlat": 40.7112699, + "maxlon": -74.0125228 + }, + "nodes": [ + 6551502413, + 6551502406, + 6551502945, + 6551502403, + 6551502413 + ], + "geometry": [ + { "lat": 40.7112699, "lon": -74.0125846 }, + { "lat": 40.7112439, "lon": -74.0125228 }, + { "lat": 40.7112402, "lon": -74.0125255 }, + { "lat": 40.7112662, "lon": -74.0125873 }, + { "lat": 40.7112699, "lon": -74.0125846 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619649, + "bounds": { + "minlat": 40.7114049, + "minlon": -74.0130124, + "maxlat": 40.7114636, + "maxlon": -74.0128989 + }, + "nodes": [ + 6551502438, + 6551502435, + 6551502415, + 6551502418, + 6551502438 + ], + "geometry": [ + { "lat": 40.7114218, "lon": -74.0128989 }, + { "lat": 40.7114636, "lon": -74.0130002 }, + { "lat": 40.7114466, "lon": -74.0130124 }, + { "lat": 40.7114049, "lon": -74.0129110 }, + { "lat": 40.7114218, "lon": -74.0128989 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619651, + "bounds": { + "minlat": 40.7116926, + "minlon": -74.0133313, + "maxlat": 40.7117418, + "maxlon": -74.0132388 + }, + "nodes": [ + 6551502456, + 6551502453, + 6551502454, + 6551502451, + 6551502452, + 6551502449, + 6551502450, + 6551502447, + 6551502448, + 6551502445, + 6551502446, + 6551502443, + 6551502444, + 6551502441, + 6551502442, + 6551502439, + 6551502456 + ], + "geometry": [ + { "lat": 40.7117077, "lon": -74.0132388 }, + { "lat": 40.7117418, "lon": -74.0133202 }, + { "lat": 40.7117267, "lon": -74.0133313 }, + { "lat": 40.7117208, "lon": -74.0133172 }, + { "lat": 40.7117318, "lon": -74.0133092 }, + { "lat": 40.7117259, "lon": -74.0132951 }, + { "lat": 40.7117149, "lon": -74.0133031 }, + { "lat": 40.7117126, "lon": -74.0132976 }, + { "lat": 40.7117235, "lon": -74.0132896 }, + { "lat": 40.7117176, "lon": -74.0132755 }, + { "lat": 40.7117067, "lon": -74.0132835 }, + { "lat": 40.7117044, "lon": -74.0132780 }, + { "lat": 40.7117153, "lon": -74.0132700 }, + { "lat": 40.7117094, "lon": -74.0132559 }, + { "lat": 40.7116985, "lon": -74.0132639 }, + { "lat": 40.7116926, "lon": -74.0132499 }, + { "lat": 40.7117077, "lon": -74.0132388 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619652, + "bounds": { + "minlat": 40.7116889, + "minlon": -74.0133339, + "maxlat": 40.7117267, + "maxlon": -74.0132499 + }, + "nodes": [ + 6551502454, + 6551502451, + 6551502450, + 6551502447, + 6551502446, + 6551502443, + 6551502442, + 6551502439, + 6551502440, + 6551502437, + 6551502454 + ], + "geometry": [ + { "lat": 40.7117267, "lon": -74.0133313 }, + { "lat": 40.7117208, "lon": -74.0133172 }, + { "lat": 40.7117149, "lon": -74.0133031 }, + { "lat": 40.7117126, "lon": -74.0132976 }, + { "lat": 40.7117067, "lon": -74.0132835 }, + { "lat": 40.7117044, "lon": -74.0132780 }, + { "lat": 40.7116985, "lon": -74.0132639 }, + { "lat": 40.7116926, "lon": -74.0132499 }, + { "lat": 40.7116889, "lon": -74.0132525 }, + { "lat": 40.7117231, "lon": -74.0133339 }, + { "lat": 40.7117267, "lon": -74.0133313 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619653, + "bounds": { + "minlat": 40.7118132, + "minlon": -74.0135990, + "maxlat": 40.7118542, + "maxlon": -74.0135262 + }, + "nodes": [ + 6551501620, + 6551502467, + 6551502468, + 6551502465, + 6551502466, + 6551502463, + 6551502464, + 6551502461, + 6551502462, + 6551502459, + 6551502460, + 6551502457, + 6551501620 + ], + "geometry": [ + { "lat": 40.7118283, "lon": -74.0135262 }, + { "lat": 40.7118542, "lon": -74.0135880 }, + { "lat": 40.7118391, "lon": -74.0135990 }, + { "lat": 40.7118332, "lon": -74.0135849 }, + { "lat": 40.7118441, "lon": -74.0135769 }, + { "lat": 40.7118382, "lon": -74.0135629 }, + { "lat": 40.7118273, "lon": -74.0135709 }, + { "lat": 40.7118250, "lon": -74.0135653 }, + { "lat": 40.7118359, "lon": -74.0135574 }, + { "lat": 40.7118300, "lon": -74.0135433 }, + { "lat": 40.7118191, "lon": -74.0135513 }, + { "lat": 40.7118132, "lon": -74.0135372 }, + { "lat": 40.7118283, "lon": -74.0135262 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619654, + "bounds": { + "minlat": 40.7118095, + "minlon": -74.0136017, + "maxlat": 40.7118391, + "maxlon": -74.0135372 + }, + "nodes": [ + 6551502468, + 6551502465, + 6551502464, + 6551502461, + 6551502460, + 6551502457, + 6551502458, + 6551502455, + 6551502468 + ], + "geometry": [ + { "lat": 40.7118391, "lon": -74.0135990 }, + { "lat": 40.7118332, "lon": -74.0135849 }, + { "lat": 40.7118273, "lon": -74.0135709 }, + { "lat": 40.7118250, "lon": -74.0135653 }, + { "lat": 40.7118191, "lon": -74.0135513 }, + { "lat": 40.7118132, "lon": -74.0135372 }, + { "lat": 40.7118095, "lon": -74.0135399 }, + { "lat": 40.7118354, "lon": -74.0136017 }, + { "lat": 40.7118391, "lon": -74.0135990 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619655, + "bounds": { + "minlat": 40.7120241, + "minlon": -74.0139428, + "maxlat": 40.7120651, + "maxlon": -74.0138699 + }, + "nodes": [ + 6551502484, + 6551502481, + 6551502482, + 6551502479, + 6551502480, + 6551502477, + 6551502478, + 6551502475, + 6551502476, + 6551502473, + 6551502474, + 6551502471, + 6551502484 + ], + "geometry": [ + { "lat": 40.7120392, "lon": -74.0138699 }, + { "lat": 40.7120651, "lon": -74.0139318 }, + { "lat": 40.7120500, "lon": -74.0139428 }, + { "lat": 40.7120441, "lon": -74.0139287 }, + { "lat": 40.7120550, "lon": -74.0139207 }, + { "lat": 40.7120491, "lon": -74.0139067 }, + { "lat": 40.7120382, "lon": -74.0139146 }, + { "lat": 40.7120359, "lon": -74.0139091 }, + { "lat": 40.7120468, "lon": -74.0139011 }, + { "lat": 40.7120409, "lon": -74.0138871 }, + { "lat": 40.7120300, "lon": -74.0138951 }, + { "lat": 40.7120241, "lon": -74.0138810 }, + { "lat": 40.7120392, "lon": -74.0138699 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619656, + "bounds": { + "minlat": 40.7120204, + "minlon": -74.0139455, + "maxlat": 40.7120500, + "maxlon": -74.0138810 + }, + "nodes": [ + 6551502482, + 6551502479, + 6551502478, + 6551502475, + 6551502474, + 6551502471, + 6551502472, + 6551502469, + 6551502482 + ], + "geometry": [ + { "lat": 40.7120500, "lon": -74.0139428 }, + { "lat": 40.7120441, "lon": -74.0139287 }, + { "lat": 40.7120382, "lon": -74.0139146 }, + { "lat": 40.7120359, "lon": -74.0139091 }, + { "lat": 40.7120300, "lon": -74.0138951 }, + { "lat": 40.7120241, "lon": -74.0138810 }, + { "lat": 40.7120204, "lon": -74.0138837 }, + { "lat": 40.7120463, "lon": -74.0139455 }, + { "lat": 40.7120500, "lon": -74.0139428 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619657, + "bounds": { + "minlat": 40.7119053, + "minlon": -74.0136795, + "maxlat": 40.7119546, + "maxlon": -74.0135870 + }, + "nodes": [ + 6551502502, + 6551502499, + 6551502500, + 6551502497, + 6551502498, + 6551502495, + 6551502496, + 6551502493, + 6551502494, + 6551502491, + 6551502492, + 6551502489, + 6551502490, + 6551502487, + 6551502488, + 6551502485, + 6551502502 + ], + "geometry": [ + { "lat": 40.7119204, "lon": -74.0135870 }, + { "lat": 40.7119546, "lon": -74.0136684 }, + { "lat": 40.7119394, "lon": -74.0136795 }, + { "lat": 40.7119336, "lon": -74.0136654 }, + { "lat": 40.7119445, "lon": -74.0136574 }, + { "lat": 40.7119386, "lon": -74.0136433 }, + { "lat": 40.7119277, "lon": -74.0136513 }, + { "lat": 40.7119254, "lon": -74.0136458 }, + { "lat": 40.7119363, "lon": -74.0136378 }, + { "lat": 40.7119304, "lon": -74.0136238 }, + { "lat": 40.7119195, "lon": -74.0136317 }, + { "lat": 40.7119171, "lon": -74.0136262 }, + { "lat": 40.7119281, "lon": -74.0136182 }, + { "lat": 40.7119222, "lon": -74.0136042 }, + { "lat": 40.7119112, "lon": -74.0136122 }, + { "lat": 40.7119053, "lon": -74.0135981 }, + { "lat": 40.7119204, "lon": -74.0135870 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619658, + "bounds": { + "minlat": 40.7119017, + "minlon": -74.0136822, + "maxlat": 40.7119394, + "maxlon": -74.0135981 + }, + "nodes": [ + 6551502500, + 6551502497, + 6551502496, + 6551502493, + 6551502492, + 6551502489, + 6551502488, + 6551502485, + 6551502486, + 6551502483, + 6551502500 + ], + "geometry": [ + { "lat": 40.7119394, "lon": -74.0136795 }, + { "lat": 40.7119336, "lon": -74.0136654 }, + { "lat": 40.7119277, "lon": -74.0136513 }, + { "lat": 40.7119254, "lon": -74.0136458 }, + { "lat": 40.7119195, "lon": -74.0136317 }, + { "lat": 40.7119171, "lon": -74.0136262 }, + { "lat": 40.7119112, "lon": -74.0136122 }, + { "lat": 40.7119053, "lon": -74.0135981 }, + { "lat": 40.7119017, "lon": -74.0136008 }, + { "lat": 40.7119358, "lon": -74.0136822 }, + { "lat": 40.7119394, "lon": -74.0136795 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619659, + "bounds": { + "minlat": 40.7118193, + "minlon": -74.0134965, + "maxlat": 40.7118779, + "maxlon": -74.0133822 + }, + "nodes": [ + 6551502527, + 6551502528, + 6551502525, + 6551502526, + 6551502523, + 6551502524, + 6551502521, + 6551502522, + 6551502519, + 6551502520, + 6551502517, + 6551502518, + 6551502515, + 6551502516, + 6551502513, + 6551502514, + 6551502511, + 6551502512, + 6551502509, + 6551502510, + 6551502507, + 6551502508, + 6551502505, + 6551502506, + 6551502527 + ], + "geometry": [ + { "lat": 40.7118344, "lon": -74.0133822 }, + { "lat": 40.7118779, "lon": -74.0134854 }, + { "lat": 40.7118628, "lon": -74.0134965 }, + { "lat": 40.7118605, "lon": -74.0134909 }, + { "lat": 40.7118714, "lon": -74.0134829 }, + { "lat": 40.7118655, "lon": -74.0134689 }, + { "lat": 40.7118546, "lon": -74.0134769 }, + { "lat": 40.7118522, "lon": -74.0134713 }, + { "lat": 40.7118632, "lon": -74.0134634 }, + { "lat": 40.7118573, "lon": -74.0134493 }, + { "lat": 40.7118463, "lon": -74.0134573 }, + { "lat": 40.7118440, "lon": -74.0134518 }, + { "lat": 40.7118550, "lon": -74.0134438 }, + { "lat": 40.7118490, "lon": -74.0134297 }, + { "lat": 40.7118381, "lon": -74.0134377 }, + { "lat": 40.7118359, "lon": -74.0134323 }, + { "lat": 40.7118467, "lon": -74.0134244 }, + { "lat": 40.7118408, "lon": -74.0134103 }, + { "lat": 40.7118299, "lon": -74.0134183 }, + { "lat": 40.7118276, "lon": -74.0134128 }, + { "lat": 40.7118385, "lon": -74.0134048 }, + { "lat": 40.7118326, "lon": -74.0133907 }, + { "lat": 40.7118217, "lon": -74.0133987 }, + { "lat": 40.7118193, "lon": -74.0133932 }, + { "lat": 40.7118344, "lon": -74.0133822 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619660, + "bounds": { + "minlat": 40.7118157, + "minlon": -74.0134991, + "maxlat": 40.7118628, + "maxlon": -74.0133932 + }, + "nodes": [ + 6551502525, + 6551502526, + 6551502521, + 6551502522, + 6551502517, + 6551502518, + 6551502513, + 6551502514, + 6551502509, + 6551502503, + 6551502505, + 6551502506, + 6551502504, + 6551502501, + 6551502525 + ], + "geometry": [ + { "lat": 40.7118628, "lon": -74.0134965 }, + { "lat": 40.7118605, "lon": -74.0134909 }, + { "lat": 40.7118546, "lon": -74.0134769 }, + { "lat": 40.7118522, "lon": -74.0134713 }, + { "lat": 40.7118463, "lon": -74.0134573 }, + { "lat": 40.7118440, "lon": -74.0134518 }, + { "lat": 40.7118381, "lon": -74.0134377 }, + { "lat": 40.7118359, "lon": -74.0134323 }, + { "lat": 40.7118299, "lon": -74.0134183 }, + { "lat": 40.7118276, "lon": -74.0134129 }, + { "lat": 40.7118217, "lon": -74.0133987 }, + { "lat": 40.7118193, "lon": -74.0133932 }, + { "lat": 40.7118157, "lon": -74.0133959 }, + { "lat": 40.7118591, "lon": -74.0134991 }, + { "lat": 40.7118628, "lon": -74.0134965 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619661, + "bounds": { + "minlat": 40.7117307, + "minlon": -74.0137641, + "maxlat": 40.7117800, + "maxlon": -74.0136717 + }, + "nodes": [ + 6551502545, + 6551502546, + 6551502543, + 6551502544, + 6551502541, + 6551502542, + 6551502539, + 6551502540, + 6551502537, + 6551502538, + 6551502535, + 6551502536, + 6551502533, + 6551502534, + 6551502531, + 6551502529, + 6551502545 + ], + "geometry": [ + { "lat": 40.7117458, "lon": -74.0136717 }, + { "lat": 40.7117800, "lon": -74.0137531 }, + { "lat": 40.7117649, "lon": -74.0137641 }, + { "lat": 40.7117590, "lon": -74.0137500 }, + { "lat": 40.7117699, "lon": -74.0137420 }, + { "lat": 40.7117640, "lon": -74.0137280 }, + { "lat": 40.7117531, "lon": -74.0137360 }, + { "lat": 40.7117508, "lon": -74.0137304 }, + { "lat": 40.7117617, "lon": -74.0137225 }, + { "lat": 40.7117558, "lon": -74.0137084 }, + { "lat": 40.7117449, "lon": -74.0137164 }, + { "lat": 40.7117426, "lon": -74.0137109 }, + { "lat": 40.7117535, "lon": -74.0137029 }, + { "lat": 40.7117476, "lon": -74.0136888 }, + { "lat": 40.7117366, "lon": -74.0136968 }, + { "lat": 40.7117307, "lon": -74.0136827 }, + { "lat": 40.7117458, "lon": -74.0136717 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619662, + "bounds": { + "minlat": 40.7117307, + "minlon": -74.0137668, + "maxlat": 40.7117649, + "maxlon": -74.0136827 + }, + "nodes": [ + 6551502543, + 6551502544, + 6551502539, + 6551502540, + 6551502535, + 6551502536, + 6551502531, + 6551502529, + 6551502530, + 6551502543 + ], + "geometry": [ + { "lat": 40.7117649, "lon": -74.0137641 }, + { "lat": 40.7117590, "lon": -74.0137500 }, + { "lat": 40.7117531, "lon": -74.0137360 }, + { "lat": 40.7117508, "lon": -74.0137304 }, + { "lat": 40.7117449, "lon": -74.0137164 }, + { "lat": 40.7117426, "lon": -74.0137109 }, + { "lat": 40.7117366, "lon": -74.0136968 }, + { "lat": 40.7117307, "lon": -74.0136827 }, + { "lat": 40.7117612, "lon": -74.0137668 }, + { "lat": 40.7117649, "lon": -74.0137641 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619663, + "bounds": { + "minlat": 40.7116965, + "minlon": -74.0138251, + "maxlat": 40.7117458, + "maxlon": -74.0137326 + }, + "nodes": [ + 6551502563, + 6551502564, + 6551502561, + 6551502562, + 6551502559, + 6551502560, + 6551502557, + 6551502558, + 6551502555, + 6551502556, + 6551502553, + 6551502554, + 6551502551, + 6551502552, + 6551502549, + 6551502550, + 6551502563 + ], + "geometry": [ + { "lat": 40.7117116, "lon": -74.0137326 }, + { "lat": 40.7117458, "lon": -74.0138140 }, + { "lat": 40.7117305, "lon": -74.0138251 }, + { "lat": 40.7117248, "lon": -74.0138110 }, + { "lat": 40.7117357, "lon": -74.0138030 }, + { "lat": 40.7117298, "lon": -74.0137889 }, + { "lat": 40.7117189, "lon": -74.0137969 }, + { "lat": 40.7117166, "lon": -74.0137914 }, + { "lat": 40.7117275, "lon": -74.0137834 }, + { "lat": 40.7117216, "lon": -74.0137693 }, + { "lat": 40.7117107, "lon": -74.0137773 }, + { "lat": 40.7117084, "lon": -74.0137718 }, + { "lat": 40.7117193, "lon": -74.0137638 }, + { "lat": 40.7117134, "lon": -74.0137497 }, + { "lat": 40.7117024, "lon": -74.0137577 }, + { "lat": 40.7116965, "lon": -74.0137437 }, + { "lat": 40.7117116, "lon": -74.0137326 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619664, + "bounds": { + "minlat": 40.7116929, + "minlon": -74.0138277, + "maxlat": 40.7117305, + "maxlon": -74.0137437 + }, + "nodes": [ + 6551502561, + 6551502562, + 6551502557, + 6551502558, + 6551502553, + 6551502554, + 6551502549, + 6551502550, + 6551502547, + 6551502548, + 6551502561 + ], + "geometry": [ + { "lat": 40.7117305, "lon": -74.0138251 }, + { "lat": 40.7117248, "lon": -74.0138110 }, + { "lat": 40.7117189, "lon": -74.0137969 }, + { "lat": 40.7117166, "lon": -74.0137914 }, + { "lat": 40.7117107, "lon": -74.0137773 }, + { "lat": 40.7117084, "lon": -74.0137718 }, + { "lat": 40.7117024, "lon": -74.0137577 }, + { "lat": 40.7116965, "lon": -74.0137437 }, + { "lat": 40.7116929, "lon": -74.0137463 }, + { "lat": 40.7117270, "lon": -74.0138277 }, + { "lat": 40.7117305, "lon": -74.0138251 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619665, + "bounds": { + "minlat": 40.7115441, + "minlon": -74.0134930, + "maxlat": 40.7116053, + "maxlon": -74.0133783 + }, + "nodes": [ + 6551502585, + 6551502586, + 6551502566, + 6551502565, + 6551502585 + ], + "geometry": [ + { "lat": 40.7115629, "lon": -74.0133783 }, + { "lat": 40.7116053, "lon": -74.0134793 }, + { "lat": 40.7115865, "lon": -74.0134930 }, + { "lat": 40.7115441, "lon": -74.0133921 }, + { "lat": 40.7115629, "lon": -74.0133783 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619667, + "bounds": { + "minlat": 40.7113145, + "minlon": -74.0129344, + "maxlat": 40.7113719, + "maxlon": -74.0128223 + }, + "nodes": [ + 6551502607, + 10285341242, + 6551502605, + 6551502590, + 6551502607 + ], + "geometry": [ + { "lat": 40.7113296, "lon": -74.0128223 }, + { "lat": 40.7113719, "lon": -74.0129232 }, + { "lat": 40.7113567, "lon": -74.0129344 }, + { "lat": 40.7113145, "lon": -74.0128333 }, + { "lat": 40.7113296, "lon": -74.0128223 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "smoothness": "excellent", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619668, + "bounds": { + "minlat": 40.7113108, + "minlon": -74.0129370, + "maxlat": 40.7113567, + "maxlon": -74.0128333 + }, + "nodes": [ + 6551502605, + 6551502590, + 6551502587, + 6551502588, + 6551502605 + ], + "geometry": [ + { "lat": 40.7113567, "lon": -74.0129344 }, + { "lat": 40.7113145, "lon": -74.0128333 }, + { "lat": 40.7113108, "lon": -74.0128360 }, + { "lat": 40.7113532, "lon": -74.0129370 }, + { "lat": 40.7113567, "lon": -74.0129344 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619669, + "bounds": { + "minlat": 40.7114576, + "minlon": -74.0134293, + "maxlat": 40.7115188, + "maxlon": -74.0133146 + }, + "nodes": [ + 6551502629, + 6551502630, + 6551502610, + 6551502609, + 6551502629 + ], + "geometry": [ + { "lat": 40.7114764, "lon": -74.0133146 }, + { "lat": 40.7115188, "lon": -74.0134155 }, + { "lat": 40.7115000, "lon": -74.0134293 }, + { "lat": 40.7114576, "lon": -74.0133283 }, + { "lat": 40.7114764, "lon": -74.0133146 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619671, + "bounds": { + "minlat": 40.7115057, + "minlon": -74.0136356, + "maxlat": 40.7115467, + "maxlon": -74.0135627 + }, + "nodes": [ + 6551502643, + 6551502644, + 6551502641, + 6551502642, + 6551502639, + 6551502640, + 6551502637, + 6551502638, + 6551502635, + 6551502636, + 6551502633, + 6551502634, + 6551502643 + ], + "geometry": [ + { "lat": 40.7115208, "lon": -74.0135627 }, + { "lat": 40.7115467, "lon": -74.0136246 }, + { "lat": 40.7115316, "lon": -74.0136356 }, + { "lat": 40.7115257, "lon": -74.0136215 }, + { "lat": 40.7115366, "lon": -74.0136135 }, + { "lat": 40.7115307, "lon": -74.0135995 }, + { "lat": 40.7115198, "lon": -74.0136075 }, + { "lat": 40.7115175, "lon": -74.0136019 }, + { "lat": 40.7115284, "lon": -74.0135939 }, + { "lat": 40.7115225, "lon": -74.0135799 }, + { "lat": 40.7115116, "lon": -74.0135879 }, + { "lat": 40.7115057, "lon": -74.0135738 }, + { "lat": 40.7115208, "lon": -74.0135627 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619672, + "bounds": { + "minlat": 40.7115020, + "minlon": -74.0136383, + "maxlat": 40.7115316, + "maxlon": -74.0135738 + }, + "nodes": [ + 6551502641, + 6551502642, + 6551502637, + 6551502638, + 6551502633, + 6551502634, + 6551502631, + 6551502632, + 6551502641 + ], + "geometry": [ + { "lat": 40.7115316, "lon": -74.0136356 }, + { "lat": 40.7115257, "lon": -74.0136215 }, + { "lat": 40.7115198, "lon": -74.0136075 }, + { "lat": 40.7115175, "lon": -74.0136019 }, + { "lat": 40.7115116, "lon": -74.0135879 }, + { "lat": 40.7115057, "lon": -74.0135738 }, + { "lat": 40.7115020, "lon": -74.0135765 }, + { "lat": 40.7115279, "lon": -74.0136383 }, + { "lat": 40.7115316, "lon": -74.0136356 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619673, + "bounds": { + "minlat": 40.7105452, + "minlon": -74.0128272, + "maxlat": 40.7105968, + "maxlon": -74.0127339 + }, + "nodes": [ + 6551502655, + 6551502963, + 6551502656, + 6551502645, + 6551502655 + ], + "geometry": [ + { "lat": 40.7105623, "lon": -74.0127339 }, + { "lat": 40.7105968, "lon": -74.0128162 }, + { "lat": 40.7105817, "lon": -74.0128272 }, + { "lat": 40.7105452, "lon": -74.0127403 }, + { "lat": 40.7105623, "lon": -74.0127339 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619674, + "bounds": { + "minlat": 40.7105410, + "minlon": -74.0128299, + "maxlat": 40.7105817, + "maxlon": -74.0127403 + }, + "nodes": [ + 6551502656, + 6551502645, + 6551502646, + 6551502966, + 6551502656 + ], + "geometry": [ + { "lat": 40.7105817, "lon": -74.0128272 }, + { "lat": 40.7105452, "lon": -74.0127403 }, + { "lat": 40.7105410, "lon": -74.0127418 }, + { "lat": 40.7105780, "lon": -74.0128299 }, + { "lat": 40.7105817, "lon": -74.0128272 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619675, + "bounds": { + "minlat": 40.7112901, + "minlon": -74.0135659, + "maxlat": 40.7113523, + "maxlon": -74.0134490 + }, + "nodes": [ + 6551502684, + 6551502681, + 6551500350, + 6551500343, + 6551501791, + 6551502657, + 6551502684 + ], + "geometry": [ + { "lat": 40.7113089, "lon": -74.0134490 }, + { "lat": 40.7113498, "lon": -74.0135463 }, + { "lat": 40.7113523, "lon": -74.0135522 }, + { "lat": 40.7113336, "lon": -74.0135659 }, + { "lat": 40.7113038, "lon": -74.0134951 }, + { "lat": 40.7112901, "lon": -74.0134627 }, + { "lat": 40.7113089, "lon": -74.0134490 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619677, + "bounds": { + "minlat": 40.7115211, + "minlon": -74.0138816, + "maxlat": 40.7115704, + "maxlon": -74.0137891 + }, + "nodes": [ + 6551502702, + 6551502699, + 6551502700, + 6551502697, + 6551502698, + 6551502695, + 6551502696, + 6551502693, + 6551502694, + 6551502691, + 6551502692, + 6551502689, + 6551502690, + 6551502687, + 6551502688, + 6551502685, + 6551502702 + ], + "geometry": [ + { "lat": 40.7115362, "lon": -74.0137891 }, + { "lat": 40.7115704, "lon": -74.0138706 }, + { "lat": 40.7115553, "lon": -74.0138816 }, + { "lat": 40.7115494, "lon": -74.0138675 }, + { "lat": 40.7115603, "lon": -74.0138595 }, + { "lat": 40.7115544, "lon": -74.0138455 }, + { "lat": 40.7115435, "lon": -74.0138534 }, + { "lat": 40.7115412, "lon": -74.0138479 }, + { "lat": 40.7115521, "lon": -74.0138399 }, + { "lat": 40.7115462, "lon": -74.0138259 }, + { "lat": 40.7115353, "lon": -74.0138339 }, + { "lat": 40.7115329, "lon": -74.0138283 }, + { "lat": 40.7115439, "lon": -74.0138203 }, + { "lat": 40.7115380, "lon": -74.0138063 }, + { "lat": 40.7115270, "lon": -74.0138143 }, + { "lat": 40.7115211, "lon": -74.0138003 }, + { "lat": 40.7115362, "lon": -74.0137891 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619678, + "bounds": { + "minlat": 40.7115175, + "minlon": -74.0138843, + "maxlat": 40.7115553, + "maxlon": -74.0138003 + }, + "nodes": [ + 6551502700, + 6551502697, + 6551502696, + 6551502693, + 6551502692, + 6551502689, + 6551502688, + 6551502685, + 6551500357, + 6551500356, + 6551502683, + 6551502700 + ], + "geometry": [ + { "lat": 40.7115553, "lon": -74.0138816 }, + { "lat": 40.7115494, "lon": -74.0138675 }, + { "lat": 40.7115435, "lon": -74.0138534 }, + { "lat": 40.7115412, "lon": -74.0138479 }, + { "lat": 40.7115353, "lon": -74.0138339 }, + { "lat": 40.7115329, "lon": -74.0138283 }, + { "lat": 40.7115270, "lon": -74.0138143 }, + { "lat": 40.7115211, "lon": -74.0138003 }, + { "lat": 40.7115175, "lon": -74.0138029 }, + { "lat": 40.7115437, "lon": -74.0138655 }, + { "lat": 40.7115516, "lon": -74.0138843 }, + { "lat": 40.7115553, "lon": -74.0138816 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619679, + "bounds": { + "minlat": 40.7113421, + "minlon": -74.0134667, + "maxlat": 40.7113952, + "maxlon": -74.0133716 + }, + "nodes": [ + 6551502720, + 6551502717, + 6551500363, + 6551500361, + 6551502704, + 6551502720 + ], + "geometry": [ + { "lat": 40.7113607, "lon": -74.0133716 }, + { "lat": 40.7113952, "lon": -74.0134530 }, + { "lat": 40.7113764, "lon": -74.0134667 }, + { "lat": 40.7113620, "lon": -74.0134326 }, + { "lat": 40.7113421, "lon": -74.0133854 }, + { "lat": 40.7113607, "lon": -74.0133716 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619681, + "bounds": { + "minlat": 40.7111389, + "minlon": -74.0136299, + "maxlat": 40.7111925, + "maxlon": -74.0135344 + }, + "nodes": [ + 6551502738, + 6551500313, + 6551500315, + 6551502722, + 6551502738 + ], + "geometry": [ + { "lat": 40.7111583, "lon": -74.0135344 }, + { "lat": 40.7111925, "lon": -74.0136158 }, + { "lat": 40.7111731, "lon": -74.0136299 }, + { "lat": 40.7111389, "lon": -74.0135485 }, + { "lat": 40.7111583, "lon": -74.0135344 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619683, + "bounds": { + "minlat": 40.7111401, + "minlon": -74.0141027, + "maxlat": 40.7111961, + "maxlon": -74.0140038 + }, + "nodes": [ + 6551502752, + 6551502749, + 6551502750, + 6551502747, + 6551502748, + 6551502745, + 6551502746, + 6551502743, + 6551502744, + 6551502741, + 6551502742, + 6551502739, + 6551502752 + ], + "geometry": [ + { "lat": 40.7111558, "lon": -74.0140038 }, + { "lat": 40.7111961, "lon": -74.0140998 }, + { "lat": 40.7111772, "lon": -74.0141027 }, + { "lat": 40.7111602, "lon": -74.0140630 }, + { "lat": 40.7111711, "lon": -74.0140550 }, + { "lat": 40.7111652, "lon": -74.0140410 }, + { "lat": 40.7111543, "lon": -74.0140489 }, + { "lat": 40.7111520, "lon": -74.0140434 }, + { "lat": 40.7111629, "lon": -74.0140354 }, + { "lat": 40.7111570, "lon": -74.0140214 }, + { "lat": 40.7111460, "lon": -74.0140294 }, + { "lat": 40.7111401, "lon": -74.0140153 }, + { "lat": 40.7111558, "lon": -74.0140038 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619684, + "bounds": { + "minlat": 40.7111365, + "minlon": -74.0141034, + "maxlat": 40.7111772, + "maxlon": -74.0140153 + }, + "nodes": [ + 6551502750, + 6551502747, + 6551502746, + 6551502743, + 6551502742, + 6551502739, + 6551502740, + 6551502737, + 6551502750 + ], + "geometry": [ + { "lat": 40.7111772, "lon": -74.0141027 }, + { "lat": 40.7111602, "lon": -74.0140630 }, + { "lat": 40.7111543, "lon": -74.0140489 }, + { "lat": 40.7111520, "lon": -74.0140434 }, + { "lat": 40.7111460, "lon": -74.0140294 }, + { "lat": 40.7111401, "lon": -74.0140153 }, + { "lat": 40.7111365, "lon": -74.0140180 }, + { "lat": 40.7111727, "lon": -74.0141034 }, + { "lat": 40.7111772, "lon": -74.0141027 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619685, + "bounds": { + "minlat": 40.7110385, + "minlon": -74.0137306, + "maxlat": 40.7110962, + "maxlon": -74.0136185 + }, + "nodes": [ + 6551502774, + 6551501845, + 6551502771, + 6551502772, + 6551502769, + 6551502770, + 6551502767, + 6551502768, + 6551502765, + 6551502766, + 6551502763, + 6551502764, + 6551502761, + 6551502762, + 6551502759, + 6551502760, + 6551502757, + 6551502758, + 6551502755, + 6551502756, + 6551502753, + 6551502774 + ], + "geometry": [ + { "lat": 40.7110538, "lon": -74.0136185 }, + { "lat": 40.7110903, "lon": -74.0137053 }, + { "lat": 40.7110962, "lon": -74.0137194 }, + { "lat": 40.7110809, "lon": -74.0137306 }, + { "lat": 40.7110750, "lon": -74.0137165 }, + { "lat": 40.7110859, "lon": -74.0137085 }, + { "lat": 40.7110800, "lon": -74.0136945 }, + { "lat": 40.7110691, "lon": -74.0137025 }, + { "lat": 40.7110668, "lon": -74.0136969 }, + { "lat": 40.7110777, "lon": -74.0136889 }, + { "lat": 40.7110718, "lon": -74.0136749 }, + { "lat": 40.7110609, "lon": -74.0136829 }, + { "lat": 40.7110585, "lon": -74.0136773 }, + { "lat": 40.7110695, "lon": -74.0136694 }, + { "lat": 40.7110636, "lon": -74.0136553 }, + { "lat": 40.7110526, "lon": -74.0136633 }, + { "lat": 40.7110503, "lon": -74.0136578 }, + { "lat": 40.7110613, "lon": -74.0136498 }, + { "lat": 40.7110554, "lon": -74.0136357 }, + { "lat": 40.7110444, "lon": -74.0136437 }, + { "lat": 40.7110385, "lon": -74.0136296 }, + { "lat": 40.7110538, "lon": -74.0136185 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619686, + "bounds": { + "minlat": 40.7110350, + "minlon": -74.0137332, + "maxlat": 40.7110809, + "maxlon": -74.0136296 + }, + "nodes": [ + 6551502772, + 6551502769, + 6551502768, + 6551502765, + 6551502764, + 6551502761, + 6551502760, + 6551502757, + 6551502756, + 6551502753, + 6551502754, + 6551502751, + 6551502772 + ], + "geometry": [ + { "lat": 40.7110809, "lon": -74.0137306 }, + { "lat": 40.7110750, "lon": -74.0137165 }, + { "lat": 40.7110691, "lon": -74.0137025 }, + { "lat": 40.7110668, "lon": -74.0136969 }, + { "lat": 40.7110609, "lon": -74.0136829 }, + { "lat": 40.7110585, "lon": -74.0136773 }, + { "lat": 40.7110526, "lon": -74.0136633 }, + { "lat": 40.7110503, "lon": -74.0136578 }, + { "lat": 40.7110444, "lon": -74.0136437 }, + { "lat": 40.7110385, "lon": -74.0136296 }, + { "lat": 40.7110350, "lon": -74.0136322 }, + { "lat": 40.7110774, "lon": -74.0137332 }, + { "lat": 40.7110809, "lon": -74.0137306 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619687, + "bounds": { + "minlat": 40.7110104, + "minlon": -74.0141197, + "maxlat": 40.7110881, + "maxlon": -74.0139689 + }, + "nodes": [ + 6551502796, + 10288472843, + 6551502793, + 6551502794, + 10288472844, + 6551502791, + 6551502792, + 6551502789, + 6551502790, + 6551502787, + 6551502788, + 6551502785, + 6551502786, + 6551502783, + 6551502784, + 6551502781, + 6551502782, + 6551502779, + 6551502780, + 6551502777, + 6551502778, + 6551502775, + 6551502796 + ], + "geometry": [ + { "lat": 40.7110261, "lon": -74.0139689 }, + { "lat": 40.7110763, "lon": -74.0140885 }, + { "lat": 40.7110881, "lon": -74.0141167 }, + { "lat": 40.7110688, "lon": -74.0141197 }, + { "lat": 40.7110604, "lon": -74.0140997 }, + { "lat": 40.7110469, "lon": -74.0140673 }, + { "lat": 40.7110578, "lon": -74.0140593 }, + { "lat": 40.7110519, "lon": -74.0140452 }, + { "lat": 40.7110410, "lon": -74.0140532 }, + { "lat": 40.7110387, "lon": -74.0140477 }, + { "lat": 40.7110496, "lon": -74.0140397 }, + { "lat": 40.7110437, "lon": -74.0140257 }, + { "lat": 40.7110327, "lon": -74.0140336 }, + { "lat": 40.7110304, "lon": -74.0140281 }, + { "lat": 40.7110414, "lon": -74.0140201 }, + { "lat": 40.7110355, "lon": -74.0140061 }, + { "lat": 40.7110245, "lon": -74.0140141 }, + { "lat": 40.7110222, "lon": -74.0140085 }, + { "lat": 40.7110331, "lon": -74.0140005 }, + { "lat": 40.7110272, "lon": -74.0139865 }, + { "lat": 40.7110163, "lon": -74.0139945 }, + { "lat": 40.7110104, "lon": -74.0139804 }, + { "lat": 40.7110261, "lon": -74.0139689 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619688, + "bounds": { + "minlat": 40.7110067, + "minlon": -74.0141203, + "maxlat": 40.7110688, + "maxlon": -74.0139804 + }, + "nodes": [ + 6551502794, + 10288472844, + 6551502791, + 6551502790, + 6551502787, + 6551502786, + 6551502783, + 6551502782, + 6551502779, + 6551502778, + 6551502775, + 6551502776, + 10288472839, + 6551502773, + 6551502794 + ], + "geometry": [ + { "lat": 40.7110688, "lon": -74.0141197 }, + { "lat": 40.7110604, "lon": -74.0140997 }, + { "lat": 40.7110469, "lon": -74.0140673 }, + { "lat": 40.7110410, "lon": -74.0140532 }, + { "lat": 40.7110387, "lon": -74.0140477 }, + { "lat": 40.7110327, "lon": -74.0140336 }, + { "lat": 40.7110304, "lon": -74.0140281 }, + { "lat": 40.7110245, "lon": -74.0140141 }, + { "lat": 40.7110222, "lon": -74.0140085 }, + { "lat": 40.7110163, "lon": -74.0139945 }, + { "lat": 40.7110104, "lon": -74.0139804 }, + { "lat": 40.7110067, "lon": -74.0139831 }, + { "lat": 40.7110572, "lon": -74.0141020 }, + { "lat": 40.7110649, "lon": -74.0141203 }, + { "lat": 40.7110688, "lon": -74.0141197 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619689, + "bounds": { + "minlat": 40.7106728, + "minlon": -74.0128630, + "maxlat": 40.7107320, + "maxlon": -74.0127481 + }, + "nodes": [ + 6551502814, + 6551502017, + 6551502811, + 6551502812, + 6551502797, + 6551502814 + ], + "geometry": [ + { "lat": 40.7106885, "lon": -74.0127481 }, + { "lat": 40.7106940, "lon": -74.0127613 }, + { "lat": 40.7107320, "lon": -74.0128519 }, + { "lat": 40.7107169, "lon": -74.0128630 }, + { "lat": 40.7106728, "lon": -74.0127595 }, + { "lat": 40.7106885, "lon": -74.0127481 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619690, + "bounds": { + "minlat": 40.7106697, + "minlon": -74.0128656, + "maxlat": 40.7107169, + "maxlon": -74.0127595 + }, + "nodes": [ + 6551502812, + 6551502797, + 6551500558, + 6551502022, + 6551502795, + 6551502812 + ], + "geometry": [ + { "lat": 40.7107169, "lon": -74.0128630 }, + { "lat": 40.7106728, "lon": -74.0127595 }, + { "lat": 40.7106697, "lon": -74.0127618 }, + { "lat": 40.7106756, "lon": -74.0127758 }, + { "lat": 40.7107133, "lon": -74.0128656 }, + { "lat": 40.7107169, "lon": -74.0128630 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619691, + "bounds": { + "minlat": 40.7107338, + "minlon": -74.0135743, + "maxlat": 40.7107836, + "maxlon": -74.0134814 + }, + "nodes": [ + 6551502832, + 6551502829, + 6551502830, + 6551502827, + 6551502828, + 6551502825, + 6551502826, + 6551502823, + 6551502824, + 6551502821, + 6551502822, + 6551502819, + 6551502820, + 6551502817, + 6551502818, + 6551502815, + 6551502832 + ], + "geometry": [ + { "lat": 40.7107495, "lon": -74.0134814 }, + { "lat": 40.7107836, "lon": -74.0135628 }, + { "lat": 40.7107680, "lon": -74.0135743 }, + { "lat": 40.7107620, "lon": -74.0135602 }, + { "lat": 40.7107730, "lon": -74.0135522 }, + { "lat": 40.7107671, "lon": -74.0135381 }, + { "lat": 40.7107561, "lon": -74.0135461 }, + { "lat": 40.7107538, "lon": -74.0135406 }, + { "lat": 40.7107648, "lon": -74.0135326 }, + { "lat": 40.7107589, "lon": -74.0135186 }, + { "lat": 40.7107479, "lon": -74.0135265 }, + { "lat": 40.7107456, "lon": -74.0135210 }, + { "lat": 40.7107565, "lon": -74.0135130 }, + { "lat": 40.7107506, "lon": -74.0134990 }, + { "lat": 40.7107397, "lon": -74.0135070 }, + { "lat": 40.7107338, "lon": -74.0134929 }, + { "lat": 40.7107495, "lon": -74.0134814 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619692, + "bounds": { + "minlat": 40.7107301, + "minlon": -74.0135770, + "maxlat": 40.7107680, + "maxlon": -74.0134929 + }, + "nodes": [ + 6551502830, + 6551502827, + 6551502826, + 6551502823, + 6551502822, + 6551502819, + 6551502818, + 6551502815, + 6551502816, + 6551502813, + 6551502830 + ], + "geometry": [ + { "lat": 40.7107680, "lon": -74.0135743 }, + { "lat": 40.7107620, "lon": -74.0135602 }, + { "lat": 40.7107561, "lon": -74.0135461 }, + { "lat": 40.7107538, "lon": -74.0135406 }, + { "lat": 40.7107479, "lon": -74.0135265 }, + { "lat": 40.7107456, "lon": -74.0135210 }, + { "lat": 40.7107397, "lon": -74.0135070 }, + { "lat": 40.7107338, "lon": -74.0134929 }, + { "lat": 40.7107301, "lon": -74.0134956 }, + { "lat": 40.7107643, "lon": -74.0135770 }, + { "lat": 40.7107680, "lon": -74.0135743 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619693, + "bounds": { + "minlat": 40.7103448, + "minlon": -74.0129234, + "maxlat": 40.7103905, + "maxlon": -74.0128439 + }, + "nodes": [ + 6551502843, + 6551502857, + 6551502848, + 6551502831, + 6551502843 + ], + "geometry": [ + { "lat": 40.7103622, "lon": -74.0128439 }, + { "lat": 40.7103905, "lon": -74.0129105 }, + { "lat": 40.7103731, "lon": -74.0129234 }, + { "lat": 40.7103448, "lon": -74.0128567 }, + { "lat": 40.7103622, "lon": -74.0128439 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619695, + "bounds": { + "minlat": 40.7103731, + "minlon": -74.0129872, + "maxlat": 40.7104176, + "maxlon": -74.0129105 + }, + "nodes": [ + 6551502857, + 6551502858, + 6551502855, + 6551502848, + 6551502857 + ], + "geometry": [ + { "lat": 40.7103905, "lon": -74.0129105 }, + { "lat": 40.7104176, "lon": -74.0129744 }, + { "lat": 40.7104002, "lon": -74.0129872 }, + { "lat": 40.7103731, "lon": -74.0129234 }, + { "lat": 40.7103905, "lon": -74.0129105 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619697, + "bounds": { + "minlat": 40.7104465, + "minlon": -74.0128450, + "maxlat": 40.7104764, + "maxlon": -74.0128058 + }, + "nodes": [ + 6551502867, + 6551502868, + 6551500590, + 6551502859, + 6551502867 + ], + "geometry": [ + { "lat": 40.7104659, "lon": -74.0128058 }, + { "lat": 40.7104764, "lon": -74.0128309 }, + { "lat": 40.7104571, "lon": -74.0128450 }, + { "lat": 40.7104465, "lon": -74.0128199 }, + { "lat": 40.7104659, "lon": -74.0128058 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619699, + "bounds": { + "minlat": 40.7107168, + "minlon": -74.0134518, + "maxlat": 40.7108042, + "maxlon": -74.0132693 + }, + "nodes": [ + 6551502885, + 10288472868, + 6551502886, + 6551502883, + 10288472872, + 6551502872, + 6551502885 + ], + "geometry": [ + { "lat": 40.7107324, "lon": -74.0132693 }, + { "lat": 40.7107399, "lon": -74.0132872 }, + { "lat": 40.7108042, "lon": -74.0134403 }, + { "lat": 40.7107885, "lon": -74.0134518 }, + { "lat": 40.7107243, "lon": -74.0132986 }, + { "lat": 40.7107168, "lon": -74.0132808 }, + { "lat": 40.7107324, "lon": -74.0132693 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619700, + "bounds": { + "minlat": 40.7107131, + "minlon": -74.0134545, + "maxlat": 40.7107885, + "maxlon": -74.0132808 + }, + "nodes": [ + 6551502883, + 10288472872, + 6551502872, + 6551502869, + 10288472867, + 6551502870, + 6551502883 + ], + "geometry": [ + { "lat": 40.7107885, "lon": -74.0134518 }, + { "lat": 40.7107243, "lon": -74.0132986 }, + { "lat": 40.7107168, "lon": -74.0132808 }, + { "lat": 40.7107131, "lon": -74.0132835 }, + { "lat": 40.7107205, "lon": -74.0133012 }, + { "lat": 40.7107849, "lon": -74.0134545 }, + { "lat": 40.7107885, "lon": -74.0134518 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619701, + "bounds": { + "minlat": 40.7106523, + "minlon": -74.0131891, + "maxlat": 40.7106940, + "maxlon": -74.0131159 + }, + "nodes": [ + 6551502899, + 6551502900, + 6551502897, + 6551502890, + 6551502899 + ], + "geometry": [ + { "lat": 40.7106680, "lon": -74.0131159 }, + { "lat": 40.7106940, "lon": -74.0131777 }, + { "lat": 40.7106783, "lon": -74.0131891 }, + { "lat": 40.7106523, "lon": -74.0131273 }, + { "lat": 40.7106680, "lon": -74.0131159 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619702, + "bounds": { + "minlat": 40.7106487, + "minlon": -74.0131918, + "maxlat": 40.7106783, + "maxlon": -74.0131273 + }, + "nodes": [ + 6551502897, + 6551502890, + 6551502887, + 6551502888, + 6551502897 + ], + "geometry": [ + { "lat": 40.7106783, "lon": -74.0131891 }, + { "lat": 40.7106523, "lon": -74.0131273 }, + { "lat": 40.7106487, "lon": -74.0131300 }, + { "lat": 40.7106746, "lon": -74.0131918 }, + { "lat": 40.7106783, "lon": -74.0131891 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619703, + "bounds": { + "minlat": 40.7104974, + "minlon": -74.0130273, + "maxlat": 40.7106260, + "maxlon": -74.0127515 + }, + "nodes": [ + 6551502921, + 10288472978, + 6551502922, + 6551502919, + 10288472976, + 6551502904, + 6551502921 + ], + "geometry": [ + { "lat": 40.7105151, "lon": -74.0127515 }, + { "lat": 40.7105798, "lon": -74.0129058 }, + { "lat": 40.7106260, "lon": -74.0130158 }, + { "lat": 40.7106104, "lon": -74.0130273 }, + { "lat": 40.7105641, "lon": -74.0129170 }, + { "lat": 40.7104974, "lon": -74.0127581 }, + { "lat": 40.7105151, "lon": -74.0127515 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619704, + "bounds": { + "minlat": 40.7104932, + "minlon": -74.0130299, + "maxlat": 40.7106104, + "maxlon": -74.0127581 + }, + "nodes": [ + 6551502919, + 10288472976, + 6551502904, + 6551502901, + 10288472983, + 6551502902, + 6551502919 + ], + "geometry": [ + { "lat": 40.7106104, "lon": -74.0130273 }, + { "lat": 40.7105641, "lon": -74.0129170 }, + { "lat": 40.7104974, "lon": -74.0127581 }, + { "lat": 40.7104932, "lon": -74.0127596 }, + { "lat": 40.7105604, "lon": -74.0129197 }, + { "lat": 40.7106067, "lon": -74.0130299 }, + { "lat": 40.7106104, "lon": -74.0130273 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619705, + "bounds": { + "minlat": 40.7109273, + "minlon": -74.0137084, + "maxlat": 40.7109838, + "maxlon": -74.0135944 + }, + "nodes": [ + 6551502940, + 6551502937, + 6551502964, + 8213941416, + 6551502986, + 10288472952, + 10288472954, + 6551502940 + ], + "geometry": [ + { "lat": 40.7109838, "lon": -74.0136993 }, + { "lat": 40.7109713, "lon": -74.0137084 }, + { "lat": 40.7109617, "lon": -74.0136854 }, + { "lat": 40.7109322, "lon": -74.0136149 }, + { "lat": 40.7109273, "lon": -74.0136032 }, + { "lat": 40.7109396, "lon": -74.0135944 }, + { "lat": 40.7109444, "lon": -74.0136058 }, + { "lat": 40.7109838, "lon": -74.0136993 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619706, + "bounds": { + "minlat": 40.7123586, + "minlon": -74.0137006, + "maxlat": 40.7124057, + "maxlon": -74.0135947 + }, + "nodes": [ + 6551502935, + 6551502936, + 6551502933, + 6551502934, + 6551502931, + 6551502932, + 6551502929, + 6551502930, + 6551502927, + 6551502162, + 6551502925, + 6551502926, + 6551502923, + 6551502924, + 6551502935 + ], + "geometry": [ + { "lat": 40.7124057, "lon": -74.0136979 }, + { "lat": 40.7124034, "lon": -74.0136924 }, + { "lat": 40.7123975, "lon": -74.0136783 }, + { "lat": 40.7123952, "lon": -74.0136728 }, + { "lat": 40.7123893, "lon": -74.0136587 }, + { "lat": 40.7123870, "lon": -74.0136532 }, + { "lat": 40.7123811, "lon": -74.0136391 }, + { "lat": 40.7123788, "lon": -74.0136338 }, + { "lat": 40.7123728, "lon": -74.0136198 }, + { "lat": 40.7123706, "lon": -74.0136143 }, + { "lat": 40.7123646, "lon": -74.0136002 }, + { "lat": 40.7123623, "lon": -74.0135947 }, + { "lat": 40.7123586, "lon": -74.0135973 }, + { "lat": 40.7124021, "lon": -74.0137006 }, + { "lat": 40.7124057, "lon": -74.0136979 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619707, + "bounds": { + "minlat": 40.7111847, + "minlon": -74.0125255, + "maxlat": 40.7112590, + "maxlon": -74.0123851 + }, + "nodes": [ + 6551502945, + 6551502946, + 10285341169, + 7133507038, + 6551502943, + 6551502944, + 7133507037, + 10285341168, + 6551502945 + ], + "geometry": [ + { "lat": 40.7112402, "lon": -74.0125255 }, + { "lat": 40.7112590, "lon": -74.0125117 }, + { "lat": 40.7112166, "lon": -74.0124105 }, + { "lat": 40.7112094, "lon": -74.0123934 }, + { "lat": 40.7112059, "lon": -74.0123851 }, + { "lat": 40.7111847, "lon": -74.0123930 }, + { "lat": 40.7111882, "lon": -74.0124012 }, + { "lat": 40.7111953, "lon": -74.0124183 }, + { "lat": 40.7112402, "lon": -74.0125255 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619708, + "bounds": { + "minlat": 40.7114851, + "minlon": -74.0131352, + "maxlat": 40.7115432, + "maxlon": -74.0129986 + }, + "nodes": [ + 2824641684, + 10288473024, + 2824641688, + 6551502939, + 10285341198, + 2824641684 + ], + "geometry": [ + { "lat": 40.7114851, "lon": -74.0130083 }, + { "lat": 40.7115083, "lon": -74.0130591 }, + { "lat": 40.7115432, "lon": -74.0131352 }, + { "lat": 40.7115189, "lon": -74.0129986 }, + { "lat": 40.7115058, "lon": -74.0130023 }, + { "lat": 40.7114851, "lon": -74.0130083 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619709, + "bounds": { + "minlat": 40.7115876, + "minlon": -74.0129816, + "maxlat": 40.7118255, + "maxlon": -74.0123890 + }, + "nodes": [ + 2824641693, + 10288458877, + 10288472901, + 6551502955, + 6551502954, + 6551502951, + 10288472900, + 8213941387, + 10288458876, + 12999340042, + 10285341201, + 10288458883, + 2824641693 + ], + "geometry": [ + { "lat": 40.7115939, "lon": -74.0125053 }, + { "lat": 40.7116770, "lon": -74.0127032 }, + { "lat": 40.7117906, "lon": -74.0129735 }, + { "lat": 40.7117940, "lon": -74.0129816 }, + { "lat": 40.7118077, "lon": -74.0129716 }, + { "lat": 40.7118255, "lon": -74.0129586 }, + { "lat": 40.7118219, "lon": -74.0129502 }, + { "lat": 40.7118142, "lon": -74.0129318 }, + { "lat": 40.7116790, "lon": -74.0126080 }, + { "lat": 40.7116095, "lon": -74.0124403 }, + { "lat": 40.7115876, "lon": -74.0123890 }, + { "lat": 40.7115912, "lon": -74.0124566 }, + { "lat": 40.7115939, "lon": -74.0125053 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619711, + "bounds": { + "minlat": 40.7115939, + "minlon": -74.0129933, + "maxlat": 40.7117940, + "maxlon": -74.0125053 + }, + "nodes": [ + 6551502957, + 6551502955, + 10288472901, + 10288458877, + 2824641693, + 6551502958, + 10288458879, + 10288472902, + 6551502957 + ], + "geometry": [ + { "lat": 40.7117780, "lon": -74.0129933 }, + { "lat": 40.7117940, "lon": -74.0129816 }, + { "lat": 40.7117906, "lon": -74.0129735 }, + { "lat": 40.7116770, "lon": -74.0127032 }, + { "lat": 40.7115939, "lon": -74.0125053 }, + { "lat": 40.7115976, "lon": -74.0125736 }, + { "lat": 40.7116759, "lon": -74.0127558 }, + { "lat": 40.7117746, "lon": -74.0129854 }, + { "lat": 40.7117780, "lon": -74.0129933 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "1", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619713, + "bounds": { + "minlat": 40.7115977, + "minlon": -74.0130161, + "maxlat": 40.7117608, + "maxlon": -74.0126140 + }, + "nodes": [ + 6551502974, + 6551502962, + 10288472903, + 8213941391, + 10288458880, + 6551502959, + 6551502960, + 10288458878, + 8213941392, + 10288472897, + 6551502974 + ], + "geometry": [ + { "lat": 40.7117468, "lon": -74.0130161 }, + { "lat": 40.7117608, "lon": -74.0130059 }, + { "lat": 40.7117575, "lon": -74.0129980 }, + { "lat": 40.7117505, "lon": -74.0129813 }, + { "lat": 40.7116750, "lon": -74.0127998 }, + { "lat": 40.7115977, "lon": -74.0126140 }, + { "lat": 40.7115977, "lon": -74.0126573 }, + { "lat": 40.7116759, "lon": -74.0128457 }, + { "lat": 40.7117367, "lon": -74.0129920 }, + { "lat": 40.7117436, "lon": -74.0130086 }, + { "lat": 40.7117468, "lon": -74.0130161 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619714, + "bounds": { + "minlat": 40.7115976, + "minlon": -74.0130059, + "maxlat": 40.7117780, + "maxlon": -74.0125736 + }, + "nodes": [ + 6551502962, + 6551502957, + 10288472902, + 10288458879, + 6551502958, + 10285341202, + 6551502959, + 10288458880, + 8213941391, + 10288472903, + 6551502962 + ], + "geometry": [ + { "lat": 40.7117608, "lon": -74.0130059 }, + { "lat": 40.7117780, "lon": -74.0129933 }, + { "lat": 40.7117746, "lon": -74.0129854 }, + { "lat": 40.7116759, "lon": -74.0127558 }, + { "lat": 40.7115976, "lon": -74.0125736 }, + { "lat": 40.7115977, "lon": -74.0126047 }, + { "lat": 40.7115977, "lon": -74.0126140 }, + { "lat": 40.7116750, "lon": -74.0127998 }, + { "lat": 40.7117505, "lon": -74.0129813 }, + { "lat": 40.7117575, "lon": -74.0129980 }, + { "lat": 40.7117608, "lon": -74.0130059 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619715, + "bounds": { + "minlat": 40.7117780, + "minlon": -74.0132912, + "maxlat": 40.7125043, + "maxlon": -74.0126548 + }, + "nodes": [ + 6551502967, + 6551502968, + 6551502978, + 6551502975, + 6551502965, + 6551501487, + 6551501488, + 6551501497, + 6551501496, + 6551501504, + 6551501506, + 6551501513, + 6551501514, + 6551501518, + 6551501521, + 6551501522, + 6551501533, + 6551501536, + 6551501539, + 6551501545, + 6551501550, + 6551501552, + 6551502951, + 6551502954, + 6551502955, + 6551502957, + 6551502981, + 6551502967 + ], + "geometry": [ + { "lat": 40.7122279, "lon": -74.0127134 }, + { "lat": 40.7122487, "lon": -74.0127223 }, + { "lat": 40.7124890, "lon": -74.0132912 }, + { "lat": 40.7125043, "lon": -74.0132811 }, + { "lat": 40.7122414, "lon": -74.0126548 }, + { "lat": 40.7122161, "lon": -74.0126733 }, + { "lat": 40.7121950, "lon": -74.0126887 }, + { "lat": 40.7121685, "lon": -74.0127082 }, + { "lat": 40.7121503, "lon": -74.0127214 }, + { "lat": 40.7121303, "lon": -74.0127360 }, + { "lat": 40.7121129, "lon": -74.0127487 }, + { "lat": 40.7120941, "lon": -74.0127624 }, + { "lat": 40.7120693, "lon": -74.0127805 }, + { "lat": 40.7120472, "lon": -74.0127967 }, + { "lat": 40.7120284, "lon": -74.0128104 }, + { "lat": 40.7120036, "lon": -74.0128282 }, + { "lat": 40.7119749, "lon": -74.0128495 }, + { "lat": 40.7119562, "lon": -74.0128631 }, + { "lat": 40.7119314, "lon": -74.0128813 }, + { "lat": 40.7119041, "lon": -74.0129012 }, + { "lat": 40.7118653, "lon": -74.0129295 }, + { "lat": 40.7118443, "lon": -74.0129449 }, + { "lat": 40.7118255, "lon": -74.0129586 }, + { "lat": 40.7118077, "lon": -74.0129716 }, + { "lat": 40.7117940, "lon": -74.0129816 }, + { "lat": 40.7117780, "lon": -74.0129933 }, + { "lat": 40.7117945, "lon": -74.0130308 }, + { "lat": 40.7122279, "lon": -74.0127134 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619716, + "bounds": { + "minlat": 40.7105780, + "minlon": -74.0136992, + "maxlat": 40.7109617, + "maxlon": -74.0128162 + }, + "nodes": [ + 6551502966, + 6551502963, + 6551502983, + 10288473032, + 6551502986, + 8213941416, + 6551502964, + 6551502961, + 8213964617, + 10288473031, + 6551502966 + ], + "geometry": [ + { "lat": 40.7105780, "lon": -74.0128299 }, + { "lat": 40.7105968, "lon": -74.0128162 }, + { "lat": 40.7106401, "lon": -74.0129191 }, + { "lat": 40.7106439, "lon": -74.0129281 }, + { "lat": 40.7109273, "lon": -74.0136032 }, + { "lat": 40.7109322, "lon": -74.0136149 }, + { "lat": 40.7109617, "lon": -74.0136854 }, + { "lat": 40.7109428, "lon": -74.0136992 }, + { "lat": 40.7109134, "lon": -74.0136290 }, + { "lat": 40.7106249, "lon": -74.0129417 }, + { "lat": 40.7105780, "lon": -74.0128299 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619717, + "bounds": { + "minlat": 40.7117468, + "minlon": -74.0137007, + "maxlat": 40.7125287, + "maxlon": -74.0129933 + }, + "nodes": [ + 6551502981, + 6551502982, + 6551502979, + 6551502980, + 6551502977, + 6551502978, + 6551502975, + 6551502976, + 8213964627, + 6551501456, + 6551501448, + 6551501444, + 6551501440, + 6551501438, + 6551501434, + 6551501428, + 6551501424, + 6551501420, + 6551501416, + 6551501412, + 6551501408, + 6551501406, + 10563084403, + 6551501402, + 8213964628, + 6551501397, + 6551501390, + 6551501384, + 6551501382, + 6551501381, + 6551502973, + 6551502974, + 6551502962, + 6551502957, + 6551502981 + ], + "geometry": [ + { "lat": 40.7117945, "lon": -74.0130308 }, + { "lat": 40.7117881, "lon": -74.0130587 }, + { "lat": 40.7120288, "lon": -74.0136300 }, + { "lat": 40.7120500, "lon": -74.0136392 }, + { "lat": 40.7124844, "lon": -74.0133201 }, + { "lat": 40.7124890, "lon": -74.0132912 }, + { "lat": 40.7125043, "lon": -74.0132811 }, + { "lat": 40.7125287, "lon": -74.0133394 }, + { "lat": 40.7124753, "lon": -74.0133784 }, + { "lat": 40.7124564, "lon": -74.0133922 }, + { "lat": 40.7124376, "lon": -74.0134059 }, + { "lat": 40.7124176, "lon": -74.0134205 }, + { "lat": 40.7124002, "lon": -74.0134333 }, + { "lat": 40.7123814, "lon": -74.0134470 }, + { "lat": 40.7123566, "lon": -74.0134651 }, + { "lat": 40.7123128, "lon": -74.0134971 }, + { "lat": 40.7122909, "lon": -74.0135131 }, + { "lat": 40.7122622, "lon": -74.0135341 }, + { "lat": 40.7122435, "lon": -74.0135477 }, + { "lat": 40.7122187, "lon": -74.0135658 }, + { "lat": 40.7121914, "lon": -74.0135858 }, + { "lat": 40.7121726, "lon": -74.0135995 }, + { "lat": 40.7121546, "lon": -74.0136128 }, + { "lat": 40.7121526, "lon": -74.0136141 }, + { "lat": 40.7121187, "lon": -74.0136389 }, + { "lat": 40.7121128, "lon": -74.0136432 }, + { "lat": 40.7120950, "lon": -74.0136562 }, + { "lat": 40.7120813, "lon": -74.0136662 }, + { "lat": 40.7120625, "lon": -74.0136799 }, + { "lat": 40.7120500, "lon": -74.0136891 }, + { "lat": 40.7120341, "lon": -74.0137007 }, + { "lat": 40.7117468, "lon": -74.0130161 }, + { "lat": 40.7117608, "lon": -74.0130059 }, + { "lat": 40.7117780, "lon": -74.0129933 }, + { "lat": 40.7117945, "lon": -74.0130308 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619718, + "bounds": { + "minlat": 40.7106689, + "minlon": -74.0131961, + "maxlat": 40.7113969, + "maxlon": -74.0125583 + }, + "nodes": [ + 6551502972, + 6551502969, + 6551502987, + 6551502988, + 10288473029, + 6551502970, + 6551501881, + 6551501885, + 6551501887, + 6551501890, + 6551501902, + 6551501910, + 8213945022, + 6551501921, + 6551501940, + 6551502010, + 6551502812, + 6551502026, + 6551502027, + 6551502984, + 10288473033, + 6551502993, + 6551502972 + ], + "geometry": [ + { "lat": 40.7111183, "lon": -74.0126183 }, + { "lat": 40.7111391, "lon": -74.0126272 }, + { "lat": 40.7113795, "lon": -74.0131961 }, + { "lat": 40.7113969, "lon": -74.0131838 }, + { "lat": 40.7111392, "lon": -74.0125707 }, + { "lat": 40.7111340, "lon": -74.0125583 }, + { "lat": 40.7111224, "lon": -74.0125667 }, + { "lat": 40.7111196, "lon": -74.0125688 }, + { "lat": 40.7111074, "lon": -74.0125777 }, + { "lat": 40.7110886, "lon": -74.0125915 }, + { "lat": 40.7110277, "lon": -74.0126360 }, + { "lat": 40.7109826, "lon": -74.0126689 }, + { "lat": 40.7109375, "lon": -74.0127019 }, + { "lat": 40.7109272, "lon": -74.0127094 }, + { "lat": 40.7108744, "lon": -74.0127480 }, + { "lat": 40.7107786, "lon": -74.0128180 }, + { "lat": 40.7107169, "lon": -74.0128630 }, + { "lat": 40.7107014, "lon": -74.0128744 }, + { "lat": 40.7106984, "lon": -74.0128764 }, + { "lat": 40.7106689, "lon": -74.0128981 }, + { "lat": 40.7106728, "lon": -74.0129072 }, + { "lat": 40.7106850, "lon": -74.0129357 }, + { "lat": 40.7111183, "lon": -74.0126183 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697619719, + "bounds": { + "minlat": 40.7106401, + "minlon": -74.0136032, + "maxlat": 40.7114199, + "maxlon": -74.0128981 + }, + "nodes": [ + 6551502993, + 6551502991, + 6551502992, + 6551502989, + 6551502990, + 6551502987, + 6551502988, + 6551502985, + 6551501760, + 6551501764, + 6551501767, + 6551501772, + 6551501769, + 6551501784, + 6551501783, + 6551501785, + 6551501786, + 6551501790, + 6551501793, + 6551501794, + 6551501800, + 10288472930, + 6551501805, + 6551501812, + 6551501839, + 10288472942, + 6551501843, + 6551501844, + 10288472946, + 6551501828, + 6551501825, + 6551501824, + 6551501849, + 6551501850, + 6551501846, + 6551501860, + 6551501865, + 10288472955, + 6551501870, + 6551501871, + 6551502037, + 10288472952, + 6551502986, + 10288473032, + 6551502983, + 6551502036, + 6551502984, + 10288473033, + 6551502993 + ], + "geometry": [ + { "lat": 40.7106850, "lon": -74.0129357 }, + { "lat": 40.7106785, "lon": -74.0129636 }, + { "lat": 40.7109193, "lon": -74.0135349 }, + { "lat": 40.7109404, "lon": -74.0135441 }, + { "lat": 40.7113749, "lon": -74.0132250 }, + { "lat": 40.7113795, "lon": -74.0131961 }, + { "lat": 40.7113969, "lon": -74.0131838 }, + { "lat": 40.7114199, "lon": -74.0132383 }, + { "lat": 40.7114072, "lon": -74.0132477 }, + { "lat": 40.7114037, "lon": -74.0132502 }, + { "lat": 40.7113928, "lon": -74.0132583 }, + { "lat": 40.7113733, "lon": -74.0132728 }, + { "lat": 40.7113516, "lon": -74.0132889 }, + { "lat": 40.7113498, "lon": -74.0132903 }, + { "lat": 40.7113317, "lon": -74.0133037 }, + { "lat": 40.7113131, "lon": -74.0133175 }, + { "lat": 40.7112929, "lon": -74.0133326 }, + { "lat": 40.7112888, "lon": -74.0133355 }, + { "lat": 40.7112674, "lon": -74.0133514 }, + { "lat": 40.7112484, "lon": -74.0133655 }, + { "lat": 40.7112105, "lon": -74.0133936 }, + { "lat": 40.7112075, "lon": -74.0133958 }, + { "lat": 40.7111747, "lon": -74.0134201 }, + { "lat": 40.7111556, "lon": -74.0134343 }, + { "lat": 40.7111415, "lon": -74.0134447 }, + { "lat": 40.7111390, "lon": -74.0134466 }, + { "lat": 40.7111245, "lon": -74.0134574 }, + { "lat": 40.7111048, "lon": -74.0134719 }, + { "lat": 40.7110868, "lon": -74.0134853 }, + { "lat": 40.7110846, "lon": -74.0134870 }, + { "lat": 40.7110649, "lon": -74.0135016 }, + { "lat": 40.7110462, "lon": -74.0135155 }, + { "lat": 40.7110338, "lon": -74.0135247 }, + { "lat": 40.7110314, "lon": -74.0135265 }, + { "lat": 40.7110189, "lon": -74.0135357 }, + { "lat": 40.7110006, "lon": -74.0135493 }, + { "lat": 40.7109885, "lon": -74.0135583 }, + { "lat": 40.7109857, "lon": -74.0135604 }, + { "lat": 40.7109734, "lon": -74.0135694 }, + { "lat": 40.7109543, "lon": -74.0135837 }, + { "lat": 40.7109420, "lon": -74.0135927 }, + { "lat": 40.7109396, "lon": -74.0135944 }, + { "lat": 40.7109273, "lon": -74.0136032 }, + { "lat": 40.7106439, "lon": -74.0129281 }, + { "lat": 40.7106401, "lon": -74.0129191 }, + { "lat": 40.7106568, "lon": -74.0129069 }, + { "lat": 40.7106689, "lon": -74.0128981 }, + { "lat": 40.7106728, "lon": -74.0129072 }, + { "lat": 40.7106850, "lon": -74.0129357 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697627807, + "bounds": { + "minlat": 40.7102928, + "minlon": -74.0131631, + "maxlat": 40.7103593, + "maxlon": -74.0130439 + }, + "nodes": [ + 6551584085, + 6551499984, + 6551499983, + 6551499982, + 6551499981, + 6551499980, + 6551499979, + 6551499978, + 6551499977, + 6551499976, + 6551499975, + 6551499974, + 6551499973, + 6551499972, + 6551499971, + 6551499970, + 6551499969, + 6551499968, + 6551499967, + 6551499966, + 6551499965, + 6551584085 + ], + "geometry": [ + { "lat": 40.7103425, "lon": -74.0131605 }, + { "lat": 40.7103463, "lon": -74.0131631 }, + { "lat": 40.7103502, "lon": -74.0131627 }, + { "lat": 40.7103537, "lon": -74.0131612 }, + { "lat": 40.7103564, "lon": -74.0131589 }, + { "lat": 40.7103586, "lon": -74.0131534 }, + { "lat": 40.7103593, "lon": -74.0131481 }, + { "lat": 40.7103585, "lon": -74.0131419 }, + { "lat": 40.7103558, "lon": -74.0131325 }, + { "lat": 40.7103476, "lon": -74.0131155 }, + { "lat": 40.7103125, "lon": -74.0130474 }, + { "lat": 40.7103100, "lon": -74.0130445 }, + { "lat": 40.7103067, "lon": -74.0130439 }, + { "lat": 40.7103022, "lon": -74.0130441 }, + { "lat": 40.7102983, "lon": -74.0130462 }, + { "lat": 40.7102951, "lon": -74.0130500 }, + { "lat": 40.7102937, "lon": -74.0130540 }, + { "lat": 40.7102928, "lon": -74.0130587 }, + { "lat": 40.7102930, "lon": -74.0130627 }, + { "lat": 40.7102947, "lon": -74.0130677 }, + { "lat": 40.7103391, "lon": -74.0131560 }, + { "lat": 40.7103425, "lon": -74.0131605 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 697704857, + "bounds": { + "minlat": 40.7127437, + "minlon": -74.0139835, + "maxlat": 40.7129041, + "maxlon": -74.0136005 + }, + "nodes": [ + 10285341119, + 6552385851, + 10285341120, + 1431790465 + ], + "geometry": [ + { "lat": 40.7127437, "lon": -74.0136005 }, + { "lat": 40.7128409, "lon": -74.0138299 }, + { "lat": 40.7128593, "lon": -74.0138741 }, + { "lat": 40.7129041, "lon": -74.0139835 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "no", + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "name:ru": "Фултон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 697704858, + "bounds": { + "minlat": 40.7101431, + "minlon": -74.0133977, + "maxlat": 40.7104142, + "maxlon": -74.0126706 + }, + "nodes": [ + 10288454356, + 10288454358, + 10288454357, + 10288454347, + 10288454367, + 6552385852, + 8213945023, + 10288454354, + 10288454375, + 42422035 + ], + "geometry": [ + { "lat": 40.7104142, "lon": -74.0133977 }, + { "lat": 40.7104112, "lon": -74.0133681 }, + { "lat": 40.7104040, "lon": -74.0133370 }, + { "lat": 40.7103903, "lon": -74.0132960 }, + { "lat": 40.7103202, "lon": -74.0131505 }, + { "lat": 40.7101574, "lon": -74.0128128 }, + { "lat": 40.7101475, "lon": -74.0127770 }, + { "lat": 40.7101431, "lon": -74.0127389 }, + { "lat": 40.7101435, "lon": -74.0127062 }, + { "lat": 40.7101470, "lon": -74.0126706 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "lanes": "1", + "lit": "yes", + "motor_vehicle": "permit", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 697704860, + "bounds": { + "minlat": 40.7105384, + "minlon": -74.0137012, + "maxlat": 40.7106134, + "maxlon": -74.0135264 + }, + "nodes": [ + 6552385860, + 6552385859, + 6552385858, + 8213945027, + 6552385857, + 6552385856, + 6552385861 + ], + "geometry": [ + { "lat": 40.7106134, "lon": -74.0135264 }, + { "lat": 40.7106109, "lon": -74.0135699 }, + { "lat": 40.7106012, "lon": -74.0136041 }, + { "lat": 40.7105953, "lon": -74.0136162 }, + { "lat": 40.7105847, "lon": -74.0136380 }, + { "lat": 40.7105611, "lon": -74.0136738 }, + { "lat": 40.7105384, "lon": -74.0137012 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "lanes": "1", + "lit": "yes", + "motor_vehicle": "permit", + "oneway": "yes", + "surface": "asphalt", + "width": "5.5", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 697704862, + "bounds": { + "minlat": 40.7105746, + "minlon": -74.0143969, + "maxlat": 40.7110047, + "maxlon": -74.0137742 + }, + "nodes": [ + 42422028, + 8213945030, + 10285341330, + 5813276173, + 10285341319, + 10285341326, + 10285341325, + 10285341317, + 6552385869, + 6552385868, + 6552385867, + 6552385866, + 6419513817 + ], + "geometry": [ + { "lat": 40.7110047, "lon": -74.0143969 }, + { "lat": 40.7109206, "lon": -74.0143127 }, + { "lat": 40.7108846, "lon": -74.0142678 }, + { "lat": 40.7108696, "lon": -74.0142418 }, + { "lat": 40.7108344, "lon": -74.0141630 }, + { "lat": 40.7108280, "lon": -74.0141488 }, + { "lat": 40.7107298, "lon": -74.0139313 }, + { "lat": 40.7107229, "lon": -74.0139160 }, + { "lat": 40.7106836, "lon": -74.0138375 }, + { "lat": 40.7106622, "lon": -74.0138063 }, + { "lat": 40.7106365, "lon": -74.0137856 }, + { "lat": 40.7106054, "lon": -74.0137742 }, + { "lat": 40.7105746, "lon": -74.0137746 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "lanes": "2", + "lit": "yes", + "motor_vehicle": "permit", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "right|right" + } +}, +{ + "type": "way", + "id": 697804095, + "bounds": { + "minlat": 40.8469480, + "minlon": -73.9985659, + "maxlat": 40.8482830, + "maxlon": -73.9976200 + }, + "nodes": [ + 103191323, + 103110629, + 103119429 + ], + "geometry": [ + { "lat": 40.8469480, "lon": -73.9985659 }, + { "lat": 40.8476010, "lon": -73.9981000 }, + { "lat": 40.8482830, "lon": -73.9976200 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 697804096, + "bounds": { + "minlat": 40.8492870, + "minlon": -73.9968990, + "maxlat": 40.8498300, + "maxlon": -73.9965100 + }, + "nodes": [ + 103224104, + 103142411 + ], + "geometry": [ + { "lat": 40.8492870, "lon": -73.9968990 }, + { "lat": 40.8498300, "lon": -73.9965100 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 697811897, + "bounds": { + "minlat": 40.8642474, + "minlon": -73.9662921, + "maxlat": 40.8648150, + "maxlon": -73.9657270 + }, + "nodes": [ + 103146585, + 103247212 + ], + "geometry": [ + { "lat": 40.8642474, "lon": -73.9662921 }, + { "lat": 40.8648150, "lon": -73.9657270 } + ], + "tags": { + "highway": "residential", + "name": "Short Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Short", + "tiger:name_type": "St", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 697831404, + "bounds": { + "minlat": 40.8513326, + "minlon": -73.9092086, + "maxlat": 40.8518036, + "maxlon": -73.9084198 + }, + "nodes": [ + 42736319, + 9918211889, + 9918211905, + 42733821 + ], + "geometry": [ + { "lat": 40.8518036, "lon": -73.9092086 }, + { "lat": 40.8517303, "lon": -73.9090759 }, + { "lat": 40.8513696, "lon": -73.9084806 }, + { "lat": 40.8513326, "lon": -73.9084198 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 697831405, + "bounds": { + "minlat": 40.8495095, + "minlon": -73.9110789, + "maxlat": 40.8518036, + "maxlon": -73.9092086 + }, + "nodes": [ + 42736319, + 12739101100, + 9918211906, + 9918211907, + 9918211908, + 9918211909, + 42736323, + 13037331576, + 42736328, + 13037357743 + ], + "geometry": [ + { "lat": 40.8518036, "lon": -73.9092086 }, + { "lat": 40.8517217, "lon": -73.9092829 }, + { "lat": 40.8508209, "lon": -73.9101000 }, + { "lat": 40.8506751, "lon": -73.9102220 }, + { "lat": 40.8505202, "lon": -73.9103500 }, + { "lat": 40.8503578, "lon": -73.9104707 }, + { "lat": 40.8501896, "lon": -73.9105883 }, + { "lat": 40.8501218, "lon": -73.9106426 }, + { "lat": 40.8500190, "lon": -73.9107125 }, + { "lat": 40.8495095, "lon": -73.9110789 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 697859856, + "bounds": { + "minlat": 40.8129128, + "minlon": -73.9903662, + "maxlat": 40.8129301, + "maxlon": -73.9901333 + }, + "nodes": [ + 6553834863, + 103162788 + ], + "geometry": [ + { "lat": 40.8129128, "lon": -73.9901333 }, + { "lat": 40.8129301, "lon": -73.9903662 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 697869822, + "bounds": { + "minlat": 40.8216877, + "minlon": -73.9886434, + "maxlat": 40.8219288, + "maxlon": -73.9882381 + }, + "nodes": [ + 103213244, + 7542575416, + 7238422516, + 7578422376, + 103213246 + ], + "geometry": [ + { "lat": 40.8216877, "lon": -73.9882381 }, + { "lat": 40.8217644, "lon": -73.9883647 }, + { "lat": 40.8218063, "lon": -73.9884339 }, + { "lat": 40.8218733, "lon": -73.9885485 }, + { "lat": 40.8219288, "lon": -73.9886434 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Greenmount Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Greenmount", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 698045032, + "bounds": { + "minlat": 40.7041363, + "minlon": -73.9481455, + "maxlat": 40.7042820, + "maxlon": -73.9478887 + }, + "nodes": [ + 42501132, + 13685892615, + 11026017877, + 42505433 + ], + "geometry": [ + { "lat": 40.7042820, "lon": -73.9481455 }, + { "lat": 40.7042121, "lon": -73.9480218 }, + { "lat": 40.7041845, "lon": -73.9479730 }, + { "lat": 40.7041363, "lon": -73.9478887 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 698045033, + "bounds": { + "minlat": 40.7027701, + "minlon": -73.9478887, + "maxlat": 40.7041363, + "maxlon": -73.9454473 + }, + "nodes": [ + 42505433, + 11026017873, + 42475336, + 9773739319, + 42492008, + 9773739321, + 42491136, + 13685766102, + 42505442 + ], + "geometry": [ + { "lat": 40.7041363, "lon": -73.9478887 }, + { "lat": 40.7040941, "lon": -73.9478128 }, + { "lat": 40.7036668, "lon": -73.9470493 }, + { "lat": 40.7032640, "lon": -73.9463296 }, + { "lat": 40.7032154, "lon": -73.9462428 }, + { "lat": 40.7031709, "lon": -73.9461634 }, + { "lat": 40.7029999, "lon": -73.9458579 }, + { "lat": 40.7029699, "lon": -73.9458043 }, + { "lat": 40.7027701, "lon": -73.9454473 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 698069210, + "bounds": { + "minlat": 40.7434700, + "minlon": -74.0082989, + "maxlat": 40.7439370, + "maxlon": -74.0072380 + }, + "nodes": [ + 3874653357, + 12161232342, + 8261123430, + 42449341 + ], + "geometry": [ + { "lat": 40.7439370, "lon": -74.0082989 }, + { "lat": 40.7435646, "lon": -74.0074318 }, + { "lat": 40.7435323, "lon": -74.0073703 }, + { "lat": 40.7434700, "lon": -74.0072380 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 16th Street", + "name:ru": "Западная 16-я стрит", + "name_1": "West 16 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 698084413, + "bounds": { + "minlat": 40.7889250, + "minlon": -74.0167836, + "maxlat": 40.7891676, + "maxlon": -74.0162990 + }, + "nodes": [ + 103864128, + 7660979502, + 103864129 + ], + "geometry": [ + { "lat": 40.7889250, "lon": -74.0162990 }, + { "lat": 40.7889865, "lon": -74.0164113 }, + { "lat": 40.7891676, "lon": -74.0167836 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "09121076", + "highway": "tertiary", + "name": "60th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "60th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 698084414, + "bounds": { + "minlat": 40.7885103, + "minlon": -74.0163565, + "maxlat": 40.7888536, + "maxlon": -74.0156249 + }, + "nodes": [ + 103864123, + 7675458886, + 103864124 + ], + "geometry": [ + { "lat": 40.7885103, "lon": -74.0156249 }, + { "lat": 40.7888007, "lon": -74.0162516 }, + { "lat": 40.7888536, "lon": -74.0163565 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "09121076", + "highway": "tertiary", + "name": "60th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "60th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 698111495, + "bounds": { + "minlat": 40.8210954, + "minlon": -74.0063108, + "maxlat": 40.8213641, + "maxlon": -74.0062579 + }, + "nodes": [ + 103218369, + 103258600 + ], + "geometry": [ + { "lat": 40.8210954, "lon": -74.0063108 }, + { "lat": 40.8213641, "lon": -74.0062579 } + ], + "tags": { + "highway": "residential", + "name": "Burdette Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Burdette", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 698188195, + "bounds": { + "minlat": 40.8055742, + "minlon": -73.9069806, + "maxlat": 40.8064003, + "maxlon": -73.9057744 + }, + "nodes": [ + 6556998791, + 7564343630, + 6556998786 + ], + "geometry": [ + { "lat": 40.8055742, "lon": -73.9057744 }, + { "lat": 40.8058990, "lon": -73.9062487 }, + { "lat": 40.8064003, "lon": -73.9069806 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 698292453, + "bounds": { + "minlat": 40.8254648, + "minlon": -73.9139702, + "maxlat": 40.8256998, + "maxlon": -73.9131794 + }, + "nodes": [ + 42739726, + 12038455941, + 42739729 + ], + "geometry": [ + { "lat": 40.8256998, "lon": -73.9139702 }, + { "lat": 40.8254949, "lon": -73.9132808 }, + { "lat": 40.8254648, "lon": -73.9131794 } + ], + "tags": { + "highway": "residential", + "name": "East 163rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 698293362, + "bounds": { + "minlat": 40.8504670, + "minlon": -73.9960530, + "maxlat": 40.8511302, + "maxlon": -73.9955807 + }, + "nodes": [ + 103118176, + 5976422977, + 5976782499, + 10801057727 + ], + "geometry": [ + { "lat": 40.8504670, "lon": -73.9960530 }, + { "lat": 40.8508912, "lon": -73.9957509 }, + { "lat": 40.8511223, "lon": -73.9955863 }, + { "lat": 40.8511302, "lon": -73.9955807 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 698295020, + "bounds": { + "minlat": 40.8371376, + "minlon": -73.9204692, + "maxlat": 40.8374369, + "maxlon": -73.9203665 + }, + "nodes": [ + 42742513, + 13036979029, + 11201827391, + 11201827392, + 2052618439, + 42736018 + ], + "geometry": [ + { "lat": 40.8371376, "lon": -73.9204692 }, + { "lat": 40.8372741, "lon": -73.9204032 }, + { "lat": 40.8373198, "lon": -73.9203811 }, + { "lat": 40.8373593, "lon": -73.9203665 }, + { "lat": 40.8373933, "lon": -73.9203726 }, + { "lat": 40.8374369, "lon": -73.9203874 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "River Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 698295236, + "bounds": { + "minlat": 40.8790190, + "minlon": -74.0102805, + "maxlat": 40.8796203, + "maxlon": -74.0082183 + }, + "nodes": [ + 103214417, + 6650620624, + 4771425514, + 4469438833 + ], + "geometry": [ + { "lat": 40.8796203, "lon": -74.0102805 }, + { "lat": 40.8794912, "lon": -74.0098377 }, + { "lat": 40.8792751, "lon": -74.0090966 }, + { "lat": 40.8790190, "lon": -74.0082183 } + ], + "tags": { + "highway": "residential", + "name": "Fycke Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fycke", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 698314261, + "bounds": { + "minlat": 40.8407937, + "minlon": -73.9888815, + "maxlat": 40.8411890, + "maxlon": -73.9884827 + }, + "nodes": [ + 103148029, + 12537534796, + 103227485, + 5978850778 + ], + "geometry": [ + { "lat": 40.8411890, "lon": -73.9884827 }, + { "lat": 40.8409948, "lon": -73.9886950 }, + { "lat": 40.8408424, "lon": -73.9888447 }, + { "lat": 40.8407937, "lon": -73.9888815 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "12th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 698314263, + "bounds": { + "minlat": 40.8405292, + "minlon": -73.9891353, + "maxlat": 40.8407937, + "maxlon": -73.9888815 + }, + "nodes": [ + 5340742199, + 5978850778 + ], + "geometry": [ + { "lat": 40.8405292, "lon": -73.9891353 }, + { "lat": 40.8407937, "lon": -73.9888815 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "12th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 698314264, + "bounds": { + "minlat": 40.8398803, + "minlon": -73.9897713, + "maxlat": 40.8405292, + "maxlon": -73.9891353 + }, + "nodes": [ + 103227482, + 103227483, + 5340742199 + ], + "geometry": [ + { "lat": 40.8398803, "lon": -73.9897713 }, + { "lat": 40.8403170, "lon": -73.9893390 }, + { "lat": 40.8405292, "lon": -73.9891353 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "12th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 698314265, + "bounds": { + "minlat": 40.8404361, + "minlon": -73.9889511, + "maxlat": 40.8406541, + "maxlon": -73.9888153 + }, + "nodes": [ + 5340742198, + 4205620798 + ], + "geometry": [ + { "lat": 40.8404361, "lon": -73.9889511 }, + { "lat": 40.8406541, "lon": -73.9888153 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 698316134, + "bounds": { + "minlat": 40.8416850, + "minlon": -73.9879310, + "maxlat": 40.8423104, + "maxlon": -73.9873344 + }, + "nodes": [ + 103227487, + 103227489 + ], + "geometry": [ + { "lat": 40.8416850, "lon": -73.9879310 }, + { "lat": 40.8423104, "lon": -73.9873344 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "12th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 698316135, + "bounds": { + "minlat": 40.8411890, + "minlon": -73.9884827, + "maxlat": 40.8416850, + "maxlon": -73.9879310 + }, + "nodes": [ + 103148029, + 103227487 + ], + "geometry": [ + { "lat": 40.8411890, "lon": -73.9884827 }, + { "lat": 40.8416850, "lon": -73.9879310 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "12th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 698316136, + "bounds": { + "minlat": 40.8402250, + "minlon": -73.9905399, + "maxlat": 40.8416030, + "maxlon": -73.9892046 + }, + "nodes": [ + 103258703, + 103258705 + ], + "geometry": [ + { "lat": 40.8402250, "lon": -73.9905399 }, + { "lat": 40.8416030, "lon": -73.9892046 } + ], + "tags": { + "highway": "residential", + "name": "11th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "11th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 698881900, + "bounds": { + "minlat": 40.7025753, + "minlon": -73.9916637, + "maxlat": 40.7027701, + "maxlon": -73.9915399 + }, + "nodes": [ + 6562823269, + 6562836991, + 6720137606, + 6562823273, + 6562823274, + 6562823258, + 10726048593, + 6562823282 + ], + "geometry": [ + { "lat": 40.7027701, "lon": -73.9916637 }, + { "lat": 40.7027687, "lon": -73.9916348 }, + { "lat": 40.7027566, "lon": -73.9915966 }, + { "lat": 40.7027355, "lon": -73.9915654 }, + { "lat": 40.7027004, "lon": -73.9915405 }, + { "lat": 40.7026620, "lon": -73.9915399 }, + { "lat": 40.7026491, "lon": -73.9915402 }, + { "lat": 40.7025753, "lon": -73.9915423 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 699843297, + "bounds": { + "minlat": 40.7399442, + "minlon": -73.9756299, + "maxlat": 40.7405824, + "maxlon": -73.9741092 + }, + "nodes": [ + 6572026580, + 42449390 + ], + "geometry": [ + { "lat": 40.7405824, "lon": -73.9756299 }, + { "lat": 40.7399442, "lon": -73.9741092 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 29th Street", + "name:ru": "Восточная 29-я стрит", + "name_1": "East 29 Street", + "oneway": "no", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 700238639, + "bounds": { + "minlat": 40.7019359, + "minlon": -73.9773205, + "maxlat": 40.7027888, + "maxlon": -73.9769093 + }, + "nodes": [ + 7707302644, + 10716574958, + 42473940, + 42473945 + ], + "geometry": [ + { "lat": 40.7019359, "lon": -73.9769093 }, + { "lat": 40.7019960, "lon": -73.9769792 }, + { "lat": 40.7022892, "lon": -73.9773205 }, + { "lat": 40.7027888, "lon": -73.9771388 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "East Way", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Eastway", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 700250055, + "bounds": { + "minlat": 40.8147098, + "minlon": -73.9923431, + "maxlat": 40.8150098, + "maxlon": -73.9920257 + }, + "nodes": [ + 6575843479, + 6575843481, + 6575843480 + ], + "geometry": [ + { "lat": 40.8150098, "lon": -73.9920257 }, + { "lat": 40.8149323, "lon": -73.9920997 }, + { "lat": 40.8147098, "lon": -73.9923431 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 700373676, + "bounds": { + "minlat": 40.7495916, + "minlon": -73.9561952, + "maxlat": 40.7497765, + "maxlon": -73.9556059 + }, + "nodes": [ + 6577182695, + 6577182686, + 2467193002, + 6577159983, + 9375513794, + 6577182701, + 6577182699, + 6577182695 + ], + "geometry": [ + { "lat": 40.7496886, "lon": -73.9561952 }, + { "lat": 40.7497765, "lon": -73.9560926 }, + { "lat": 40.7497129, "lon": -73.9557811 }, + { "lat": 40.7496780, "lon": -73.9556059 }, + { "lat": 40.7496363, "lon": -73.9556453 }, + { "lat": 40.7495916, "lon": -73.9556876 }, + { "lat": 40.7496119, "lon": -73.9557970 }, + { "lat": 40.7496886, "lon": -73.9561952 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "man_made": "pier", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 700551684, + "bounds": { + "minlat": 40.7360666, + "minlon": -73.9596268, + "maxlat": 40.7367161, + "maxlon": -73.9589215 + }, + "nodes": [ + 6578689015, + 9478443457, + 10170251977, + 10170251976, + 7286125115, + 10170251933, + 6578689034 + ], + "geometry": [ + { "lat": 40.7367161, "lon": -73.9596268 }, + { "lat": 40.7366323, "lon": -73.9594458 }, + { "lat": 40.7365216, "lon": -73.9593428 }, + { "lat": 40.7365037, "lon": -73.9593262 }, + { "lat": 40.7361325, "lon": -73.9589763 }, + { "lat": 40.7361147, "lon": -73.9589649 }, + { "lat": 40.7360666, "lon": -73.9589215 } + ], + "tags": { + "highway": "residential", + "name": "Blue Slip", + "sidewalk:both": "separate", + "source": "Mapbox" + } +}, +{ + "type": "way", + "id": 700951338, + "bounds": { + "minlat": 40.7521903, + "minlon": -73.9875372, + "maxlat": 40.7528867, + "maxlon": -73.9873437 + }, + "nodes": [ + 42428268, + 10173490603, + 10169532525, + 42428264 + ], + "geometry": [ + { "lat": 40.7528867, "lon": -73.9873437 }, + { "lat": 40.7528416, "lon": -73.9873651 }, + { "lat": 40.7522545, "lon": -73.9875202 }, + { "lat": 40.7521903, "lon": -73.9875372 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "10 mph", + "maxspeed:conditional": "5 mph @ (09:00-17:00)", + "maxspeed:type": "sign", + "motor_vehicle:conditional": "destination @ (09:00-17:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 700951339, + "bounds": { + "minlat": 40.7514446, + "minlon": -73.9876865, + "maxlat": 40.7521903, + "maxlon": -73.9875372 + }, + "nodes": [ + 42428264, + 10169532524, + 10169532584, + 42428258 + ], + "geometry": [ + { "lat": 40.7521903, "lon": -73.9875372 }, + { "lat": 40.7521164, "lon": -73.9875520 }, + { "lat": 40.7515117, "lon": -73.9876730 }, + { "lat": 40.7514446, "lon": -73.9876865 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (09:00-17:00)", + "motor_vehicle:conditional": "destination @ (09:00-17:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 701982928, + "bounds": { + "minlat": 40.8705271, + "minlon": -74.0143238, + "maxlat": 40.8709405, + "maxlon": -74.0141119 + }, + "nodes": [ + 6592337395, + 6592337396, + 6592337397, + 6592337398, + 6592337399, + 6592337400, + 6592337401, + 6592337403, + 6592337402 + ], + "geometry": [ + { "lat": 40.8705271, "lon": -74.0143238 }, + { "lat": 40.8705582, "lon": -74.0142963 }, + { "lat": 40.8705810, "lon": -74.0142879 }, + { "lat": 40.8706207, "lon": -74.0142829 }, + { "lat": 40.8706437, "lon": -74.0142860 }, + { "lat": 40.8706609, "lon": -74.0142849 }, + { "lat": 40.8707013, "lon": -74.0142701 }, + { "lat": 40.8708359, "lon": -74.0141811 }, + { "lat": 40.8709405, "lon": -74.0141119 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 701982929, + "bounds": { + "minlat": 40.8707188, + "minlon": -74.0141811, + "maxlat": 40.8708359, + "maxlon": -74.0137945 + }, + "nodes": [ + 6592337403, + 6592337404 + ], + "geometry": [ + { "lat": 40.8708359, "lon": -74.0141811 }, + { "lat": 40.8707188, "lon": -74.0137945 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 701982930, + "bounds": { + "minlat": 40.8708299, + "minlon": -74.0141119, + "maxlat": 40.8709405, + "maxlon": -74.0137409 + }, + "nodes": [ + 6592337402, + 6592337405 + ], + "geometry": [ + { "lat": 40.8709405, "lon": -74.0141119 }, + { "lat": 40.8708299, "lon": -74.0137409 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 701982946, + "bounds": { + "minlat": 40.8697057, + "minlon": -74.0122136, + "maxlat": 40.8701964, + "maxlon": -74.0118886 + }, + "nodes": [ + 6592337544, + 6592337545, + 6592337546, + 6592337547 + ], + "geometry": [ + { "lat": 40.8697057, "lon": -74.0120579 }, + { "lat": 40.8701373, "lon": -74.0118886 }, + { "lat": 40.8701964, "lon": -74.0121044 }, + { "lat": 40.8699599, "lon": -74.0122136 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 701982949, + "bounds": { + "minlat": 40.8705846, + "minlon": -74.0126013, + "maxlat": 40.8706559, + "maxlon": -74.0122613 + }, + "nodes": [ + 6592337572, + 6592337573, + 6592337574, + 6592337575, + 6592337576, + 6592337577, + 6592337578, + 6592337579, + 6592337580, + 6592337581, + 6592337582 + ], + "geometry": [ + { "lat": 40.8706528, "lon": -74.0126013 }, + { "lat": 40.8705880, "lon": -74.0123726 }, + { "lat": 40.8705860, "lon": -74.0123561 }, + { "lat": 40.8705846, "lon": -74.0123406 }, + { "lat": 40.8705853, "lon": -74.0123314 }, + { "lat": 40.8705867, "lon": -74.0123205 }, + { "lat": 40.8705929, "lon": -74.0123058 }, + { "lat": 40.8705963, "lon": -74.0123003 }, + { "lat": 40.8706019, "lon": -74.0122930 }, + { "lat": 40.8706067, "lon": -74.0122857 }, + { "lat": 40.8706559, "lon": -74.0122613 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 701982952, + "bounds": { + "minlat": 40.8730548, + "minlon": -74.0126932, + "maxlat": 40.8734787, + "maxlon": -74.0123098 + }, + "nodes": [ + 6592337635, + 6592337636, + 6592337637, + 6592337638, + 6592337639, + 6592337640, + 6592337641, + 6592337642, + 6592337643, + 6592337644, + 6592337645, + 6592337646, + 6592337647, + 6592337648, + 6592337649, + 6592337650, + 6592337651, + 6592337652, + 6592337653, + 6592337654, + 6592337655, + 6592337656, + 6592337657, + 6592337658, + 6592337659, + 6592337660, + 6592337661, + 6592337662, + 6592337663 + ], + "geometry": [ + { "lat": 40.8734009, "lon": -74.0126474 }, + { "lat": 40.8734489, "lon": -74.0125369 }, + { "lat": 40.8734588, "lon": -74.0125028 }, + { "lat": 40.8734678, "lon": -74.0124726 }, + { "lat": 40.8734747, "lon": -74.0124358 }, + { "lat": 40.8734787, "lon": -74.0124122 }, + { "lat": 40.8734787, "lon": -74.0123859 }, + { "lat": 40.8734767, "lon": -74.0123583 }, + { "lat": 40.8734717, "lon": -74.0123360 }, + { "lat": 40.8734598, "lon": -74.0123176 }, + { "lat": 40.8734439, "lon": -74.0123098 }, + { "lat": 40.8734221, "lon": -74.0123137 }, + { "lat": 40.8730915, "lon": -74.0124292 }, + { "lat": 40.8730766, "lon": -74.0124358 }, + { "lat": 40.8730657, "lon": -74.0124476 }, + { "lat": 40.8730568, "lon": -74.0124607 }, + { "lat": 40.8730548, "lon": -74.0124765 }, + { "lat": 40.8730548, "lon": -74.0124962 }, + { "lat": 40.8730548, "lon": -74.0125133 }, + { "lat": 40.8730617, "lon": -74.0125343 }, + { "lat": 40.8730667, "lon": -74.0125422 }, + { "lat": 40.8730746, "lon": -74.0125592 }, + { "lat": 40.8730875, "lon": -74.0125776 }, + { "lat": 40.8730975, "lon": -74.0125881 }, + { "lat": 40.8731094, "lon": -74.0126025 }, + { "lat": 40.8731312, "lon": -74.0126209 }, + { "lat": 40.8731461, "lon": -74.0126341 }, + { "lat": 40.8732116, "lon": -74.0126656 }, + { "lat": 40.8732666, "lon": -74.0126932 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 701982954, + "bounds": { + "minlat": 40.8722293, + "minlon": -74.0122762, + "maxlat": 40.8725184, + "maxlon": -74.0121610 + }, + "nodes": [ + 6592337672, + 13527753050, + 6592337673, + 6592337674, + 6592337675, + 6592337676, + 6592337677, + 6592337678 + ], + "geometry": [ + { "lat": 40.8722293, "lon": -74.0121610 }, + { "lat": 40.8723273, "lon": -74.0122234 }, + { "lat": 40.8723919, "lon": -74.0122645 }, + { "lat": 40.8724078, "lon": -74.0122715 }, + { "lat": 40.8724184, "lon": -74.0122751 }, + { "lat": 40.8724342, "lon": -74.0122762 }, + { "lat": 40.8724475, "lon": -74.0122762 }, + { "lat": 40.8725184, "lon": -74.0122543 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 701982955, + "bounds": { + "minlat": 40.8724542, + "minlon": -74.0124828, + "maxlat": 40.8727359, + "maxlon": -74.0116225 + }, + "nodes": [ + 6592337679, + 6592337678, + 6592337680, + 6592337681, + 6592337682, + 6592337683, + 6592337684, + 6592337685, + 6592337686, + 6592337679 + ], + "geometry": [ + { "lat": 40.8724542, "lon": -74.0118858 }, + { "lat": 40.8725184, "lon": -74.0122543 }, + { "lat": 40.8725583, "lon": -74.0124828 }, + { "lat": 40.8727110, "lon": -74.0124334 }, + { "lat": 40.8727234, "lon": -74.0124259 }, + { "lat": 40.8727325, "lon": -74.0124170 }, + { "lat": 40.8727348, "lon": -74.0124065 }, + { "lat": 40.8727359, "lon": -74.0123945 }, + { "lat": 40.8725945, "lon": -74.0116225 }, + { "lat": 40.8724542, "lon": -74.0118858 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 701982956, + "bounds": { + "minlat": 40.8722026, + "minlon": -74.0119940, + "maxlat": 40.8724542, + "maxlon": -74.0118858 + }, + "nodes": [ + 6592337679, + 13527753049, + 6592337687 + ], + "geometry": [ + { "lat": 40.8724542, "lon": -74.0118858 }, + { "lat": 40.8722801, "lon": -74.0119607 }, + { "lat": 40.8722026, "lon": -74.0119940 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 701982960, + "bounds": { + "minlat": 40.8731247, + "minlon": -74.0130956, + "maxlat": 40.8734795, + "maxlon": -74.0127286 + }, + "nodes": [ + 6592337702, + 6592337703, + 6592337704 + ], + "geometry": [ + { "lat": 40.8731559, "lon": -74.0127286 }, + { "lat": 40.8731247, "lon": -74.0130956 }, + { "lat": 40.8734795, "lon": -74.0129993 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 701982965, + "bounds": { + "minlat": 40.8656955, + "minlon": -74.0143038, + "maxlat": 40.8658013, + "maxlon": -74.0142651 + }, + "nodes": [ + 6592337760, + 103262358 + ], + "geometry": [ + { "lat": 40.8656955, "lon": -74.0143038 }, + { "lat": 40.8658013, "lon": -74.0142651 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 701982966, + "bounds": { + "minlat": 40.8657715, + "minlon": -74.0140115, + "maxlat": 40.8658976, + "maxlon": -74.0139773 + }, + "nodes": [ + 6592337761, + 6592337762 + ], + "geometry": [ + { "lat": 40.8657715, "lon": -74.0140115 }, + { "lat": 40.8658976, "lon": -74.0139773 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 701983007, + "bounds": { + "minlat": 40.8713366, + "minlon": -74.0175266, + "maxlat": 40.8716396, + "maxlon": -74.0173518 + }, + "nodes": [ + 6592337969, + 6592337970, + 6592337971 + ], + "geometry": [ + { "lat": 40.8716396, "lon": -74.0173518 }, + { "lat": 40.8713553, "lon": -74.0174194 }, + { "lat": 40.8713366, "lon": -74.0175266 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 701983010, + "bounds": { + "minlat": 40.8710453, + "minlon": -74.0171326, + "maxlat": 40.8714878, + "maxlon": -74.0169299 + }, + "nodes": [ + 6592337980, + 6592337981 + ], + "geometry": [ + { "lat": 40.8714878, "lon": -74.0169299 }, + { "lat": 40.8710453, "lon": -74.0171326 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 701983014, + "bounds": { + "minlat": 40.8748268, + "minlon": -74.0144983, + "maxlat": 40.8755252, + "maxlon": -74.0136261 + }, + "nodes": [ + 6592338010, + 6592338011, + 6592338012, + 6592338017, + 6592338013, + 6592338014, + 6592338015 + ], + "geometry": [ + { "lat": 40.8751544, "lon": -74.0136261 }, + { "lat": 40.8749421, "lon": -74.0137673 }, + { "lat": 40.8748268, "lon": -74.0138679 }, + { "lat": 40.8748737, "lon": -74.0140284 }, + { "lat": 40.8750330, "lon": -74.0144358 }, + { "lat": 40.8754185, "lon": -74.0142035 }, + { "lat": 40.8755252, "lon": -74.0144983 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 701983015, + "bounds": { + "minlat": 40.8746763, + "minlon": -74.0141458, + "maxlat": 40.8748737, + "maxlon": -74.0140284 + }, + "nodes": [ + 6592338016, + 6592338017 + ], + "geometry": [ + { "lat": 40.8746763, "lon": -74.0141458 }, + { "lat": 40.8748737, "lon": -74.0140284 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 701984145, + "bounds": { + "minlat": 40.8776958, + "minlon": -74.0113685, + "maxlat": 40.8777311, + "maxlon": -74.0112098 + }, + "nodes": [ + 6592348688, + 6592348689 + ], + "geometry": [ + { "lat": 40.8776958, "lon": -74.0112098 }, + { "lat": 40.8777311, "lon": -74.0113685 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 701984146, + "bounds": { + "minlat": 40.8776983, + "minlon": -74.0115144, + "maxlat": 40.8778138, + "maxlon": -74.0113617 + }, + "nodes": [ + 6592348690, + 6592348693, + 6592348694, + 6592348695, + 6592348696, + 6592348697, + 6592348698, + 6592348699, + 6592348700, + 6592348691, + 6592348692, + 6592348701, + 6592348702, + 6592348703, + 6592348704, + 6592348705, + 6592348706, + 6592348707, + 6592348689, + 6592348690 + ], + "geometry": [ + { "lat": 40.8777490, "lon": -74.0113617 }, + { "lat": 40.8777676, "lon": -74.0113627 }, + { "lat": 40.8777851, "lon": -74.0113714 }, + { "lat": 40.8777995, "lon": -74.0113871 }, + { "lat": 40.8778094, "lon": -74.0114080 }, + { "lat": 40.8778138, "lon": -74.0114319 }, + { "lat": 40.8778122, "lon": -74.0114565 }, + { "lat": 40.8778048, "lon": -74.0114791 }, + { "lat": 40.8777923, "lon": -74.0114975 }, + { "lat": 40.8777761, "lon": -74.0115096 }, + { "lat": 40.8777569, "lon": -74.0115144 }, + { "lat": 40.8777376, "lon": -74.0115105 }, + { "lat": 40.8777203, "lon": -74.0114982 }, + { "lat": 40.8777071, "lon": -74.0114791 }, + { "lat": 40.8776995, "lon": -74.0114552 }, + { "lat": 40.8776983, "lon": -74.0114294 }, + { "lat": 40.8777037, "lon": -74.0114045 }, + { "lat": 40.8777151, "lon": -74.0113834 }, + { "lat": 40.8777311, "lon": -74.0113685 }, + { "lat": 40.8777490, "lon": -74.0113617 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 701984147, + "bounds": { + "minlat": 40.8771226, + "minlon": -74.0122750, + "maxlat": 40.8779505, + "maxlon": -74.0114654 + }, + "nodes": [ + 6592348699, + 6592348708, + 6592348709, + 6592348710, + 6592348711, + 6592348712, + 6592348713, + 6592348714, + 6592348715, + 6592348716, + 6592348717, + 6592348718, + 6592348719, + 6592348720, + 6592348721, + 6592348722, + 6592348723, + 6592348724, + 6592348725, + 6592348726, + 6592348727, + 6592348811, + 103214412 + ], + "geometry": [ + { "lat": 40.8778048, "lon": -74.0114791 }, + { "lat": 40.8778485, "lon": -74.0115442 }, + { "lat": 40.8779494, "lon": -74.0118974 }, + { "lat": 40.8779505, "lon": -74.0119347 }, + { "lat": 40.8779505, "lon": -74.0119649 }, + { "lat": 40.8779451, "lon": -74.0119907 }, + { "lat": 40.8779397, "lon": -74.0120108 }, + { "lat": 40.8779310, "lon": -74.0120338 }, + { "lat": 40.8779256, "lon": -74.0120424 }, + { "lat": 40.8779093, "lon": -74.0120596 }, + { "lat": 40.8778952, "lon": -74.0120697 }, + { "lat": 40.8778789, "lon": -74.0120797 }, + { "lat": 40.8774121, "lon": -74.0122750 }, + { "lat": 40.8774023, "lon": -74.0122750 }, + { "lat": 40.8773893, "lon": -74.0122750 }, + { "lat": 40.8773785, "lon": -74.0122721 }, + { "lat": 40.8773665, "lon": -74.0122649 }, + { "lat": 40.8773557, "lon": -74.0122506 }, + { "lat": 40.8773481, "lon": -74.0122420 }, + { "lat": 40.8773405, "lon": -74.0122290 }, + { "lat": 40.8773274, "lon": -74.0121831 }, + { "lat": 40.8773204, "lon": -74.0121582 }, + { "lat": 40.8771226, "lon": -74.0114654 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 701984168, + "bounds": { + "minlat": 40.8803279, + "minlon": -74.0077368, + "maxlat": 40.8805333, + "maxlon": -74.0074209 + }, + "nodes": [ + 6592348903, + 6592348945, + 6592348944, + 6592348943, + 6592348942, + 6592348941, + 6592348940, + 103226675, + 6592348939, + 6592348938, + 6592348937, + 6592348936, + 6592348935, + 6592348934, + 6592348933, + 6592348932, + 6592348931, + 6592348930, + 6592348929, + 6592348928, + 6592348927, + 6592348926, + 6592348925, + 6592348924, + 6592348923, + 6592348922, + 6592348921, + 6592348920, + 6592348919, + 6592348918, + 6592348917, + 6592348916, + 6592348915, + 6592348914, + 6592348913, + 6592348912, + 6592348911, + 6592348910, + 6592348909, + 6592348908, + 6592348907, + 6592348906, + 6592348905, + 6592348904, + 6592348903 + ], + "geometry": [ + { "lat": 40.8805310, "lon": -74.0076191 }, + { "lat": 40.8805021, "lon": -74.0075235 }, + { "lat": 40.8804915, "lon": -74.0074923 }, + { "lat": 40.8804816, "lon": -74.0074732 }, + { "lat": 40.8804778, "lon": -74.0074651 }, + { "lat": 40.8804702, "lon": -74.0074531 }, + { "lat": 40.8804633, "lon": -74.0074430 }, + { "lat": 40.8804534, "lon": -74.0074339 }, + { "lat": 40.8804443, "lon": -74.0074299 }, + { "lat": 40.8804344, "lon": -74.0074249 }, + { "lat": 40.8804230, "lon": -74.0074219 }, + { "lat": 40.8804131, "lon": -74.0074209 }, + { "lat": 40.8804040, "lon": -74.0074219 }, + { "lat": 40.8803895, "lon": -74.0074219 }, + { "lat": 40.8803766, "lon": -74.0074259 }, + { "lat": 40.8803667, "lon": -74.0074339 }, + { "lat": 40.8803576, "lon": -74.0074400 }, + { "lat": 40.8803485, "lon": -74.0074511 }, + { "lat": 40.8803386, "lon": -74.0074651 }, + { "lat": 40.8803325, "lon": -74.0074782 }, + { "lat": 40.8803294, "lon": -74.0074983 }, + { "lat": 40.8803279, "lon": -74.0075114 }, + { "lat": 40.8803279, "lon": -74.0075225 }, + { "lat": 40.8803279, "lon": -74.0075376 }, + { "lat": 40.8803317, "lon": -74.0075577 }, + { "lat": 40.8803644, "lon": -74.0076613 }, + { "lat": 40.8803781, "lon": -74.0076955 }, + { "lat": 40.8803865, "lon": -74.0077066 }, + { "lat": 40.8803926, "lon": -74.0077136 }, + { "lat": 40.8803994, "lon": -74.0077207 }, + { "lat": 40.8804101, "lon": -74.0077257 }, + { "lat": 40.8804222, "lon": -74.0077317 }, + { "lat": 40.8804298, "lon": -74.0077348 }, + { "lat": 40.8804428, "lon": -74.0077368 }, + { "lat": 40.8804519, "lon": -74.0077358 }, + { "lat": 40.8804618, "lon": -74.0077348 }, + { "lat": 40.8804831, "lon": -74.0077257 }, + { "lat": 40.8804975, "lon": -74.0077177 }, + { "lat": 40.8805036, "lon": -74.0077136 }, + { "lat": 40.8805143, "lon": -74.0077016 }, + { "lat": 40.8805196, "lon": -74.0076935 }, + { "lat": 40.8805272, "lon": -74.0076734 }, + { "lat": 40.8805325, "lon": -74.0076573 }, + { "lat": 40.8805333, "lon": -74.0076432 }, + { "lat": 40.8805310, "lon": -74.0076191 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 701984169, + "bounds": { + "minlat": 40.8805272, + "minlon": -74.0083484, + "maxlat": 40.8807410, + "maxlon": -74.0076734 + }, + "nodes": [ + 6592348906, + 6592348946, + 103292816 + ], + "geometry": [ + { "lat": 40.8805272, "lon": -74.0076734 }, + { "lat": 40.8805478, "lon": -74.0077136 }, + { "lat": 40.8807410, "lon": -74.0083484 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 701984170, + "bounds": { + "minlat": 40.8804735, + "minlon": -74.0073032, + "maxlat": 40.8806754, + "maxlon": -74.0066412 + }, + "nodes": [ + 6592348948, + 6592348967, + 6592348952, + 6592348949 + ], + "geometry": [ + { "lat": 40.8806754, "lon": -74.0073032 }, + { "lat": 40.8806565, "lon": -74.0072411 }, + { "lat": 40.8805160, "lon": -74.0067805 }, + { "lat": 40.8804735, "lon": -74.0066412 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 701984171, + "bounds": { + "minlat": 40.8804735, + "minlon": -74.0067805, + "maxlat": 40.8806971, + "maxlon": -74.0065428 + }, + "nodes": [ + 6592348949, + 6592348950, + 6592348951, + 6592348952 + ], + "geometry": [ + { "lat": 40.8804735, "lon": -74.0066412 }, + { "lat": 40.8806537, "lon": -74.0065428 }, + { "lat": 40.8806971, "lon": -74.0066815 }, + { "lat": 40.8805160, "lon": -74.0067805 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 701984172, + "bounds": { + "minlat": 40.8799334, + "minlon": -74.0068851, + "maxlat": 40.8804735, + "maxlon": -74.0066298 + }, + "nodes": [ + 6592348949, + 6592348953, + 6592349011, + 6592348954 + ], + "geometry": [ + { "lat": 40.8804735, "lon": -74.0066412 }, + { "lat": 40.8803807, "lon": -74.0066298 }, + { "lat": 40.8803676, "lon": -74.0066373 }, + { "lat": 40.8799334, "lon": -74.0068851 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 702064598, + "bounds": { + "minlat": 40.8613335, + "minlon": -73.9949598, + "maxlat": 40.8614603, + "maxlon": -73.9948562 + }, + "nodes": [ + 103229102, + 10122889650, + 6137206344 + ], + "geometry": [ + { "lat": 40.8614603, "lon": -73.9948562 }, + { "lat": 40.8614107, "lon": -73.9948967 }, + { "lat": 40.8613335, "lon": -73.9949598 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "sidewalk": "right", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 702064599, + "bounds": { + "minlat": 40.8508174, + "minlon": -74.0012305, + "maxlat": 40.8593240, + "maxlon": -73.9959570 + }, + "nodes": [ + 103155360, + 6117378962, + 10268708154, + 6117378957, + 103215846, + 103296589, + 2468325310, + 103228483, + 6103601799, + 6117378954, + 103164809, + 103296591, + 103296593, + 103296595, + 440215440, + 440215441, + 103296599, + 103137596, + 103296601, + 7643979472, + 103296602, + 103296604, + 103296606, + 103231784, + 103296608, + 11047655230, + 103152179, + 11047655233, + 11047655235, + 11047655240, + 103142417, + 5960556622, + 103296609, + 103296611, + 103238513, + 5960556623, + 5960556941, + 103296613 + ], + "geometry": [ + { "lat": 40.8593240, "lon": -73.9959570 }, + { "lat": 40.8592698, "lon": -73.9959828 }, + { "lat": 40.8590346, "lon": -73.9960948 }, + { "lat": 40.8587067, "lon": -73.9962510 }, + { "lat": 40.8586520, "lon": -73.9962770 }, + { "lat": 40.8582780, "lon": -73.9964420 }, + { "lat": 40.8580234, "lon": -73.9965467 }, + { "lat": 40.8579670, "lon": -73.9965660 }, + { "lat": 40.8575919, "lon": -73.9966966 }, + { "lat": 40.8575745, "lon": -73.9967027 }, + { "lat": 40.8572442, "lon": -73.9968177 }, + { "lat": 40.8567250, "lon": -73.9970520 }, + { "lat": 40.8565570, "lon": -73.9971390 }, + { "lat": 40.8563860, "lon": -73.9972500 }, + { "lat": 40.8561760, "lon": -73.9974170 }, + { "lat": 40.8551050, "lon": -73.9982900 }, + { "lat": 40.8550410, "lon": -73.9983420 }, + { "lat": 40.8546950, "lon": -73.9986160 }, + { "lat": 40.8543340, "lon": -73.9988930 }, + { "lat": 40.8541920, "lon": -73.9989870 }, + { "lat": 40.8539050, "lon": -73.9991770 }, + { "lat": 40.8536940, "lon": -73.9993350 }, + { "lat": 40.8534700, "lon": -73.9994790 }, + { "lat": 40.8533060, "lon": -73.9995930 }, + { "lat": 40.8532210, "lon": -73.9996520 }, + { "lat": 40.8529284, "lon": -73.9998340 }, + { "lat": 40.8527370, "lon": -73.9999530 }, + { "lat": 40.8526674, "lon": -74.0000004 }, + { "lat": 40.8525398, "lon": -74.0000874 }, + { "lat": 40.8522143, "lon": -74.0003091 }, + { "lat": 40.8520864, "lon": -74.0003963 }, + { "lat": 40.8517419, "lon": -74.0006329 }, + { "lat": 40.8516685, "lon": -74.0006833 }, + { "lat": 40.8514656, "lon": -74.0008147 }, + { "lat": 40.8511755, "lon": -74.0010025 }, + { "lat": 40.8511063, "lon": -74.0010454 }, + { "lat": 40.8510609, "lon": -74.0010745 }, + { "lat": 40.8508174, "lon": -74.0012305 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 702071431, + "bounds": { + "minlat": 40.7481734, + "minlon": -73.9526875, + "maxlat": 40.7482492, + "maxlon": -73.9522817 + }, + "nodes": [ + 2991208465, + 11211160238, + 6593073505 + ], + "geometry": [ + { "lat": 40.7481734, "lon": -73.9522817 }, + { "lat": 40.7481926, "lon": -73.9523847 }, + { "lat": 40.7482492, "lon": -73.9526875 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702071432, + "bounds": { + "minlat": 40.7483854, + "minlon": -73.9528699, + "maxlat": 40.7486925, + "maxlon": -73.9527787 + }, + "nodes": [ + 2991208462, + 11622964575, + 6593073506 + ], + "geometry": [ + { "lat": 40.7486925, "lon": -73.9527787 }, + { "lat": 40.7486626, "lon": -73.9527876 }, + { "lat": 40.7483854, "lon": -73.9528699 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702071433, + "bounds": { + "minlat": 40.7482492, + "minlon": -73.9528699, + "maxlat": 40.7483854, + "maxlon": -73.9526875 + }, + "nodes": [ + 6593073506, + 6593073505 + ], + "geometry": [ + { "lat": 40.7483854, "lon": -73.9528699 }, + { "lat": 40.7482492, "lon": -73.9526875 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702071434, + "bounds": { + "minlat": 40.7481151, + "minlon": -73.9527278, + "maxlat": 40.7482492, + "maxlon": -73.9526875 + }, + "nodes": [ + 6593073505, + 6593073507 + ], + "geometry": [ + { "lat": 40.7482492, "lon": -73.9526875 }, + { "lat": 40.7481151, "lon": -73.9527278 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702071435, + "bounds": { + "minlat": 40.7480745, + "minlon": -73.9527278, + "maxlat": 40.7481151, + "maxlon": -73.9525293 + }, + "nodes": [ + 6593073507, + 6593073508 + ], + "geometry": [ + { "lat": 40.7481151, "lon": -73.9527278 }, + { "lat": 40.7480745, "lon": -73.9525293 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702071482, + "bounds": { + "minlat": 40.7488994, + "minlon": -73.9528565, + "maxlat": 40.7491503, + "maxlon": -73.9527738 + }, + "nodes": [ + 2991208457, + 11211160234, + 6593075237 + ], + "geometry": [ + { "lat": 40.7491503, "lon": -73.9527738 }, + { "lat": 40.7490565, "lon": -73.9528047 }, + { "lat": 40.7488994, "lon": -73.9528565 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702071483, + "bounds": { + "minlat": 40.7488994, + "minlon": -73.9541332, + "maxlat": 40.7491413, + "maxlon": -73.9528565 + }, + "nodes": [ + 6593075237, + 6593075238 + ], + "geometry": [ + { "lat": 40.7488994, "lon": -73.9528565 }, + { "lat": 40.7491413, "lon": -73.9541332 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702071484, + "bounds": { + "minlat": 40.7491136, + "minlon": -73.9544289, + "maxlat": 40.7491400, + "maxlon": -73.9542527 + }, + "nodes": [ + 2991208453, + 2991208452 + ], + "geometry": [ + { "lat": 40.7491400, "lon": -73.9544289 }, + { "lat": 40.7491136, "lon": -73.9542527 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702071485, + "bounds": { + "minlat": 40.7491136, + "minlon": -73.9542527, + "maxlat": 40.7491413, + "maxlon": -73.9541332 + }, + "nodes": [ + 2991208452, + 6593075238 + ], + "geometry": [ + { "lat": 40.7491136, "lon": -73.9542527 }, + { "lat": 40.7491413, "lon": -73.9541332 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702073752, + "bounds": { + "minlat": 40.7537793, + "minlon": -73.9845296, + "maxlat": 40.7539292, + "maxlon": -73.9843717 + }, + "nodes": [ + 6593122582, + 6593122583, + 6593122580, + 6593122581, + 6593122582 + ], + "geometry": [ + { "lat": 40.7538086, "lon": -73.9845296 }, + { "lat": 40.7537793, "lon": -73.9844600 }, + { "lat": 40.7538999, "lon": -73.9843717 }, + { "lat": 40.7539292, "lon": -73.9844413 }, + { "lat": 40.7538086, "lon": -73.9845296 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073765, + "bounds": { + "minlat": 40.7540357, + "minlon": -73.9835568, + "maxlat": 40.7542450, + "maxlon": -73.9831786 + }, + "nodes": [ + 6593122650, + 6593122651, + 6593122648, + 6593122649, + 6593122650 + ], + "geometry": [ + { "lat": 40.7541726, "lon": -73.9835568 }, + { "lat": 40.7540357, "lon": -73.9832320 }, + { "lat": 40.7541080, "lon": -73.9831786 }, + { "lat": 40.7542450, "lon": -73.9835040 }, + { "lat": 40.7541726, "lon": -73.9835568 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073767, + "bounds": { + "minlat": 40.7533349, + "minlon": -73.9840698, + "maxlat": 40.7535453, + "maxlon": -73.9836893 + }, + "nodes": [ + 6593122658, + 6593122659, + 6593122656, + 6593122657, + 6593122658 + ], + "geometry": [ + { "lat": 40.7534725, "lon": -73.9840698 }, + { "lat": 40.7533349, "lon": -73.9837419 }, + { "lat": 40.7534068, "lon": -73.9836893 }, + { "lat": 40.7535453, "lon": -73.9840168 }, + { "lat": 40.7534725, "lon": -73.9840698 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073768, + "bounds": { + "minlat": 40.7537255, + "minlon": -73.9844220, + "maxlat": 40.7538847, + "maxlon": -73.9842377 + }, + "nodes": [ + 6593122654, + 6593122655, + 6593122652, + 6593122653, + 6593122654 + ], + "geometry": [ + { "lat": 40.7537255, "lon": -73.9843243 }, + { "lat": 40.7537662, "lon": -73.9844220 }, + { "lat": 40.7538847, "lon": -73.9843345 }, + { "lat": 40.7538438, "lon": -73.9842377 }, + { "lat": 40.7537255, "lon": -73.9843243 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073776, + "bounds": { + "minlat": 40.7539517, + "minlon": -73.9825687, + "maxlat": 40.7540063, + "maxlon": -73.9824688 + }, + "nodes": [ + 6593122756, + 6605262910, + 6593122753, + 6593122754, + 6605262909, + 6593122752, + 6593122756 + ], + "geometry": [ + { "lat": 40.7539517, "lon": -73.9824820 }, + { "lat": 40.7539692, "lon": -73.9825235 }, + { "lat": 40.7539882, "lon": -73.9825687 }, + { "lat": 40.7540063, "lon": -73.9825555 }, + { "lat": 40.7539873, "lon": -73.9825097 }, + { "lat": 40.7539698, "lon": -73.9824688 }, + { "lat": 40.7539517, "lon": -73.9824820 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073777, + "bounds": { + "minlat": 40.7540114, + "minlon": -73.9844245, + "maxlat": 40.7541781, + "maxlon": -73.9842853 + }, + "nodes": [ + 6593122764, + 8375523282, + 6593122761, + 6593122762, + 8375523281, + 6593122759, + 6593122764 + ], + "geometry": [ + { "lat": 40.7541781, "lon": -73.9843115 }, + { "lat": 40.7540999, "lon": -73.9843682 }, + { "lat": 40.7540224, "lon": -73.9844245 }, + { "lat": 40.7540114, "lon": -73.9843982 }, + { "lat": 40.7540894, "lon": -73.9843416 }, + { "lat": 40.7541671, "lon": -73.9842853 }, + { "lat": 40.7541781, "lon": -73.9843115 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073778, + "bounds": { + "minlat": 40.7539754, + "minlon": -73.9825512, + "maxlat": 40.7540301, + "maxlon": -73.9824515 + }, + "nodes": [ + 6593122760, + 6605262908, + 6593122757, + 6593122758, + 6605262907, + 6593122755, + 6593122760 + ], + "geometry": [ + { "lat": 40.7539754, "lon": -73.9824647 }, + { "lat": 40.7539925, "lon": -73.9825057 }, + { "lat": 40.7540121, "lon": -73.9825512 }, + { "lat": 40.7540301, "lon": -73.9825380 }, + { "lat": 40.7540105, "lon": -73.9824919 }, + { "lat": 40.7539934, "lon": -73.9824515 }, + { "lat": 40.7539754, "lon": -73.9824647 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073779, + "bounds": { + "minlat": 40.7535073, + "minlon": -73.9848796, + "maxlat": 40.7547158, + "maxlon": -73.9839189 + }, + "nodes": [ + 6593121929, + 6593121932, + 6593121931, + 6593122803, + 6593122857, + 10173490608, + 6593122863, + 6593122804, + 6593122801, + 6593122802, + 6593122799, + 6593122800, + 6593122797, + 10169532646, + 6593122798, + 6593122795, + 6593122796, + 6593122793, + 6593122794, + 10169532641, + 10169532640, + 6593122791, + 6593122792, + 6593122789, + 6593122790, + 6593122787, + 6593122788, + 6593122785, + 6593122786, + 6593122783, + 6593122784, + 6593122871, + 10173679653, + 6593122872, + 6593122782, + 9590209959, + 6593122779, + 6593122780, + 6593122777, + 8375523279, + 6593122778, + 6593121922, + 6593121921, + 6593121924, + 6593121923, + 6593121926, + 6593121925, + 6593121928, + 6593121927, + 6593121930, + 6593121929 + ], + "geometry": [ + { "lat": 40.7535757, "lon": -73.9847767 }, + { "lat": 40.7535676, "lon": -73.9847582 }, + { "lat": 40.7535655, "lon": -73.9847517 }, + { "lat": 40.7535648, "lon": -73.9847475 }, + { "lat": 40.7535500, "lon": -73.9847449 }, + { "lat": 40.7535244, "lon": -73.9847640 }, + { "lat": 40.7535073, "lon": -73.9847768 }, + { "lat": 40.7535341, "lon": -73.9848388 }, + { "lat": 40.7535388, "lon": -73.9848484 }, + { "lat": 40.7535447, "lon": -73.9848572 }, + { "lat": 40.7535531, "lon": -73.9848662 }, + { "lat": 40.7535585, "lon": -73.9848698 }, + { "lat": 40.7535704, "lon": -73.9848768 }, + { "lat": 40.7535723, "lon": -73.9848769 }, + { "lat": 40.7535811, "lon": -73.9848794 }, + { "lat": 40.7535912, "lon": -73.9848796 }, + { "lat": 40.7536016, "lon": -73.9848774 }, + { "lat": 40.7536092, "lon": -73.9848741 }, + { "lat": 40.7536157, "lon": -73.9848700 }, + { "lat": 40.7540770, "lon": -73.9845345 }, + { "lat": 40.7541931, "lon": -73.9844500 }, + { "lat": 40.7546848, "lon": -73.9840926 }, + { "lat": 40.7546929, "lon": -73.9840856 }, + { "lat": 40.7547008, "lon": -73.9840757 }, + { "lat": 40.7547070, "lon": -73.9840646 }, + { "lat": 40.7547106, "lon": -73.9840552 }, + { "lat": 40.7547149, "lon": -73.9840368 }, + { "lat": 40.7547158, "lon": -73.9840267 }, + { "lat": 40.7547153, "lon": -73.9840139 }, + { "lat": 40.7547128, "lon": -73.9839982 }, + { "lat": 40.7547085, "lon": -73.9839850 }, + { "lat": 40.7546809, "lon": -73.9839189 }, + { "lat": 40.7546592, "lon": -73.9839352 }, + { "lat": 40.7546164, "lon": -73.9839675 }, + { "lat": 40.7546238, "lon": -73.9839853 }, + { "lat": 40.7546175, "lon": -73.9840145 }, + { "lat": 40.7546089, "lon": -73.9840542 }, + { "lat": 40.7545168, "lon": -73.9841206 }, + { "lat": 40.7545188, "lon": -73.9841258 }, + { "lat": 40.7541187, "lon": -73.9844155 }, + { "lat": 40.7536380, "lon": -73.9847636 }, + { "lat": 40.7536304, "lon": -73.9847599 }, + { "lat": 40.7536271, "lon": -73.9847680 }, + { "lat": 40.7536208, "lon": -73.9847753 }, + { "lat": 40.7536052, "lon": -73.9847872 }, + { "lat": 40.7536004, "lon": -73.9847899 }, + { "lat": 40.7535951, "lon": -73.9847909 }, + { "lat": 40.7535892, "lon": -73.9847901 }, + { "lat": 40.7535836, "lon": -73.9847872 }, + { "lat": 40.7535791, "lon": -73.9847826 }, + { "lat": 40.7535757, "lon": -73.9847767 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073780, + "bounds": { + "minlat": 40.7540272, + "minlon": -73.9844621, + "maxlat": 40.7541939, + "maxlon": -73.9843230 + }, + "nodes": [ + 6593122768, + 8375523284, + 6593122765, + 6593122766, + 8375523283, + 6593122763, + 6593122768 + ], + "geometry": [ + { "lat": 40.7541939, "lon": -73.9843492 }, + { "lat": 40.7541150, "lon": -73.9844064 }, + { "lat": 40.7540382, "lon": -73.9844621 }, + { "lat": 40.7540272, "lon": -73.9844359 }, + { "lat": 40.7541045, "lon": -73.9843798 }, + { "lat": 40.7541829, "lon": -73.9843230 }, + { "lat": 40.7541939, "lon": -73.9843492 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073781, + "bounds": { + "minlat": 40.7523283, + "minlon": -73.9847768, + "maxlat": 40.7535500, + "maxlon": -73.9819182 + }, + "nodes": [ + 6593122863, + 9590209962, + 9590209961, + 6593122864, + 10173490605, + 6593122861, + 6593066581, + 6593066579, + 6593066578, + 6593066577, + 6593066576, + 6593066580, + 6593122862, + 6593122859, + 6593123074, + 6593123075, + 6593122860, + 6593123094, + 9590209960, + 6593123095, + 6593123482, + 6593123481, + 6605262902, + 8375523276, + 6593122857, + 10173490608, + 6593122863 + ], + "geometry": [ + { "lat": 40.7535073, "lon": -73.9847768 }, + { "lat": 40.7534042, "lon": -73.9845296 }, + { "lat": 40.7528960, "lon": -73.9833105 }, + { "lat": 40.7523283, "lon": -73.9819488 }, + { "lat": 40.7523353, "lon": -73.9819437 }, + { "lat": 40.7523705, "lon": -73.9819182 }, + { "lat": 40.7524819, "lon": -73.9821837 }, + { "lat": 40.7525137, "lon": -73.9821606 }, + { "lat": 40.7525303, "lon": -73.9822006 }, + { "lat": 40.7525049, "lon": -73.9822192 }, + { "lat": 40.7524972, "lon": -73.9822018 }, + { "lat": 40.7524914, "lon": -73.9822060 }, + { "lat": 40.7524960, "lon": -73.9822184 }, + { "lat": 40.7524904, "lon": -73.9822229 }, + { "lat": 40.7526469, "lon": -73.9825979 }, + { "lat": 40.7526646, "lon": -73.9826403 }, + { "lat": 40.7529148, "lon": -73.9832398 }, + { "lat": 40.7529203, "lon": -73.9832359 }, + { "lat": 40.7529389, "lon": -73.9832804 }, + { "lat": 40.7529565, "lon": -73.9833226 }, + { "lat": 40.7530456, "lon": -73.9835362 }, + { "lat": 40.7530590, "lon": -73.9835682 }, + { "lat": 40.7532110, "lon": -73.9839324 }, + { "lat": 40.7534471, "lon": -73.9844983 }, + { "lat": 40.7535500, "lon": -73.9847449 }, + { "lat": 40.7535244, "lon": -73.9847640 }, + { "lat": 40.7535073, "lon": -73.9847768 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073782, + "bounds": { + "minlat": 40.7523121, + "minlon": -73.9819488, + "maxlat": 40.7535025, + "maxlon": -73.9810366 + }, + "nodes": [ + 6593122858, + 10173679650, + 6593122873, + 6593122855, + 6593122856, + 6593122116, + 6593122073, + 6593122851, + 6593122852, + 6593122849, + 6593121663, + 6593121666, + 6593121665, + 6593121668, + 6593121667, + 6593122843, + 6593122844, + 6611621809, + 7826843769, + 6611621808, + 7826843772, + 6593122040, + 6593122842, + 6593121719, + 6593121720, + 6593121718, + 6593121715, + 6593121713, + 6593122831, + 6593122078, + 6593122861, + 10173490605, + 6593122864, + 6593122829, + 6593122830, + 6593122827, + 6593122828, + 13342733038, + 6593122826, + 6593122823, + 6593122824, + 6593122821, + 6593122822, + 6593122819, + 7826843773, + 7826843774, + 6593122820, + 6593122817, + 4625653597, + 6593122815, + 6593122816, + 6593122813, + 6593122814, + 6593122811, + 6593122812, + 6593122809, + 6593122810, + 6593122807, + 6593122858 + ], + "geometry": [ + { "lat": 40.7535025, "lon": -73.9810954 }, + { "lat": 40.7534630, "lon": -73.9811255 }, + { "lat": 40.7534535, "lon": -73.9811324 }, + { "lat": 40.7534524, "lon": -73.9811293 }, + { "lat": 40.7534375, "lon": -73.9811400 }, + { "lat": 40.7534392, "lon": -73.9811445 }, + { "lat": 40.7533780, "lon": -73.9811899 }, + { "lat": 40.7533767, "lon": -73.9811870 }, + { "lat": 40.7533641, "lon": -73.9811965 }, + { "lat": 40.7533683, "lon": -73.9812073 }, + { "lat": 40.7533660, "lon": -73.9812088 }, + { "lat": 40.7533609, "lon": -73.9812108 }, + { "lat": 40.7533549, "lon": -73.9812103 }, + { "lat": 40.7533521, "lon": -73.9812081 }, + { "lat": 40.7533500, "lon": -73.9812045 }, + { "lat": 40.7530782, "lon": -73.9814034 }, + { "lat": 40.7530771, "lon": -73.9814008 }, + { "lat": 40.7530706, "lon": -73.9814058 }, + { "lat": 40.7529583, "lon": -73.9814932 }, + { "lat": 40.7529146, "lon": -73.9815255 }, + { "lat": 40.7528427, "lon": -73.9815778 }, + { "lat": 40.7527613, "lon": -73.9816292 }, + { "lat": 40.7527573, "lon": -73.9816322 }, + { "lat": 40.7527581, "lon": -73.9816350 }, + { "lat": 40.7524858, "lon": -73.9818343 }, + { "lat": 40.7524860, "lon": -73.9818463 }, + { "lat": 40.7524823, "lon": -73.9818522 }, + { "lat": 40.7524760, "lon": -73.9818577 }, + { "lat": 40.7524699, "lon": -73.9818459 }, + { "lat": 40.7523812, "lon": -73.9819104 }, + { "lat": 40.7523705, "lon": -73.9819182 }, + { "lat": 40.7523353, "lon": -73.9819437 }, + { "lat": 40.7523283, "lon": -73.9819488 }, + { "lat": 40.7523240, "lon": -73.9819385 }, + { "lat": 40.7523187, "lon": -73.9819250 }, + { "lat": 40.7523144, "lon": -73.9819101 }, + { "lat": 40.7523121, "lon": -73.9818988 }, + { "lat": 40.7523137, "lon": -73.9818875 }, + { "lat": 40.7523128, "lon": -73.9818765 }, + { "lat": 40.7523164, "lon": -73.9818656 }, + { "lat": 40.7523214, "lon": -73.9818566 }, + { "lat": 40.7523304, "lon": -73.9818456 }, + { "lat": 40.7523398, "lon": -73.9818369 }, + { "lat": 40.7523476, "lon": -73.9818309 }, + { "lat": 40.7528040, "lon": -73.9814985 }, + { "lat": 40.7529233, "lon": -73.9814124 }, + { "lat": 40.7534168, "lon": -73.9810535 }, + { "lat": 40.7534250, "lon": -73.9810479 }, + { "lat": 40.7534296, "lon": -73.9810452 }, + { "lat": 40.7534405, "lon": -73.9810396 }, + { "lat": 40.7534495, "lon": -73.9810369 }, + { "lat": 40.7534582, "lon": -73.9810366 }, + { "lat": 40.7534668, "lon": -73.9810392 }, + { "lat": 40.7534748, "lon": -73.9810449 }, + { "lat": 40.7534848, "lon": -73.9810582 }, + { "lat": 40.7534878, "lon": -73.9810625 }, + { "lat": 40.7534926, "lon": -73.9810718 }, + { "lat": 40.7534983, "lon": -73.9810847 }, + { "lat": 40.7535025, "lon": -73.9810954 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073783, + "bounds": { + "minlat": 40.7533662, + "minlon": -73.9813788, + "maxlat": 40.7534297, + "maxlon": -73.9812713 + }, + "nodes": [ + 6593122980, + 6593122882, + 6593122883, + 6593122880, + 6593122881, + 6593122071, + 6593122075, + 6593122876, + 6593122877, + 6593122875, + 6593122898, + 6593122899, + 6593122896, + 6593122895, + 6593122892, + 6593122980 + ], + "geometry": [ + { "lat": 40.7534118, "lon": -73.9813732 }, + { "lat": 40.7534103, "lon": -73.9813697 }, + { "lat": 40.7534092, "lon": -73.9813671 }, + { "lat": 40.7534297, "lon": -73.9813519 }, + { "lat": 40.7534265, "lon": -73.9813445 }, + { "lat": 40.7534289, "lon": -73.9813429 }, + { "lat": 40.7534019, "lon": -73.9812785 }, + { "lat": 40.7533995, "lon": -73.9812803 }, + { "lat": 40.7533959, "lon": -73.9812713 }, + { "lat": 40.7533782, "lon": -73.9812840 }, + { "lat": 40.7533770, "lon": -73.9812806 }, + { "lat": 40.7533662, "lon": -73.9812888 }, + { "lat": 40.7533790, "lon": -73.9813186 }, + { "lat": 40.7533922, "lon": -73.9813489 }, + { "lat": 40.7534043, "lon": -73.9813788 }, + { "lat": 40.7534118, "lon": -73.9813732 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073784, + "bounds": { + "minlat": 40.7534535, + "minlon": -73.9839675, + "maxlat": 40.7546809, + "maxlon": -73.9810963 + }, + "nodes": [ + 6593122873, + 10173679650, + 6593122874, + 6605262913, + 9354852638, + 6593122871, + 10173679653, + 6593122872, + 6593122243, + 6593122870, + 6593121199, + 6593121202, + 9590209944, + 11427330653, + 11427330654, + 11427330655, + 11427330652, + 6593122867, + 6593122298, + 6593122868, + 6593122865, + 3391627301, + 6593122866, + 6605262906, + 6593123195, + 6593123198, + 6593122282, + 6593122873 + ], + "geometry": [ + { "lat": 40.7534535, "lon": -73.9811324 }, + { "lat": 40.7534630, "lon": -73.9811255 }, + { "lat": 40.7535032, "lon": -73.9810963 }, + { "lat": 40.7540676, "lon": -73.9824491 }, + { "lat": 40.7545796, "lon": -73.9836761 }, + { "lat": 40.7546809, "lon": -73.9839189 }, + { "lat": 40.7546592, "lon": -73.9839352 }, + { "lat": 40.7546164, "lon": -73.9839675 }, + { "lat": 40.7545897, "lon": -73.9839042 }, + { "lat": 40.7546054, "lon": -73.9838930 }, + { "lat": 40.7545855, "lon": -73.9838453 }, + { "lat": 40.7545729, "lon": -73.9838152 }, + { "lat": 40.7545297, "lon": -73.9837116 }, + { "lat": 40.7544856, "lon": -73.9836059 }, + { "lat": 40.7545026, "lon": -73.9835935 }, + { "lat": 40.7544560, "lon": -73.9834825 }, + { "lat": 40.7544392, "lon": -73.9834948 }, + { "lat": 40.7542026, "lon": -73.9829277 }, + { "lat": 40.7541881, "lon": -73.9829385 }, + { "lat": 40.7541788, "lon": -73.9829454 }, + { "lat": 40.7541637, "lon": -73.9829095 }, + { "lat": 40.7541732, "lon": -73.9829024 }, + { "lat": 40.7541876, "lon": -73.9828917 }, + { "lat": 40.7540175, "lon": -73.9824866 }, + { "lat": 40.7536212, "lon": -73.9815342 }, + { "lat": 40.7536128, "lon": -73.9815142 }, + { "lat": 40.7535966, "lon": -73.9814754 }, + { "lat": 40.7534535, "lon": -73.9811324 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073785, + "bounds": { + "minlat": 40.7525192, + "minlon": -73.9820037, + "maxlat": 40.7534155, + "maxlon": -73.9812679 + }, + "nodes": [ + 6593122995, + 6593122174, + 6593122937, + 6593121744, + 6593121741, + 6593121731, + 6593122956, + 6593122959, + 6593122922, + 6593122923, + 6593122920, + 6593122921, + 6593122918, + 6593122919, + 6593122916, + 6593122917, + 6593122914, + 6593122915, + 6593122912, + 6593122913, + 6593122910, + 6593122911, + 6593122908, + 6593122909, + 6605262898, + 6593122906, + 6593122907, + 6593122904, + 6593122905, + 6593122902, + 6593122903, + 6593122900, + 6593122901, + 6593122898, + 6593122899, + 6593122896, + 6593122897, + 6593122894, + 6593122895, + 6593122892, + 6593122980, + 6593122981, + 6593121682, + 6593121692, + 6593121691, + 6593122995 + ], + "geometry": [ + { "lat": 40.7530871, "lon": -73.9816224 }, + { "lat": 40.7529848, "lon": -73.9816980 }, + { "lat": 40.7528750, "lon": -73.9817776 }, + { "lat": 40.7526869, "lon": -73.9819153 }, + { "lat": 40.7526433, "lon": -73.9819472 }, + { "lat": 40.7526308, "lon": -73.9819563 }, + { "lat": 40.7525662, "lon": -73.9820037 }, + { "lat": 40.7525614, "lon": -73.9819924 }, + { "lat": 40.7525688, "lon": -73.9819873 }, + { "lat": 40.7525570, "lon": -73.9819581 }, + { "lat": 40.7525802, "lon": -73.9819412 }, + { "lat": 40.7525669, "lon": -73.9819094 }, + { "lat": 40.7525430, "lon": -73.9819264 }, + { "lat": 40.7525311, "lon": -73.9818976 }, + { "lat": 40.7525220, "lon": -73.9819043 }, + { "lat": 40.7525198, "lon": -73.9818971 }, + { "lat": 40.7525192, "lon": -73.9818904 }, + { "lat": 40.7525198, "lon": -73.9818844 }, + { "lat": 40.7525229, "lon": -73.9818791 }, + { "lat": 40.7525275, "lon": -73.9818751 }, + { "lat": 40.7528146, "lon": -73.9816651 }, + { "lat": 40.7528296, "lon": -73.9817008 }, + { "lat": 40.7528489, "lon": -73.9816866 }, + { "lat": 40.7528266, "lon": -73.9816338 }, + { "lat": 40.7529277, "lon": -73.9815590 }, + { "lat": 40.7530389, "lon": -73.9814784 }, + { "lat": 40.7530612, "lon": -73.9815314 }, + { "lat": 40.7530804, "lon": -73.9815170 }, + { "lat": 40.7530661, "lon": -73.9814827 }, + { "lat": 40.7533593, "lon": -73.9812691 }, + { "lat": 40.7533640, "lon": -73.9812679 }, + { "lat": 40.7533689, "lon": -73.9812692 }, + { "lat": 40.7533728, "lon": -73.9812721 }, + { "lat": 40.7533770, "lon": -73.9812806 }, + { "lat": 40.7533662, "lon": -73.9812888 }, + { "lat": 40.7533790, "lon": -73.9813186 }, + { "lat": 40.7533567, "lon": -73.9813350 }, + { "lat": 40.7533692, "lon": -73.9813651 }, + { "lat": 40.7533922, "lon": -73.9813489 }, + { "lat": 40.7534043, "lon": -73.9813788 }, + { "lat": 40.7534118, "lon": -73.9813732 }, + { "lat": 40.7534155, "lon": -73.9813820 }, + { "lat": 40.7533507, "lon": -73.9814294 }, + { "lat": 40.7533382, "lon": -73.9814385 }, + { "lat": 40.7532947, "lon": -73.9814704 }, + { "lat": 40.7530871, "lon": -73.9816224 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073786, + "bounds": { + "minlat": 40.7525050, + "minlon": -73.9820020, + "maxlat": 40.7525688, + "maxlon": -73.9818978 + }, + "nodes": [ + 6593122087, + 6593122089, + 6593122891, + 6593122888, + 6593122889, + 6593122916, + 6593122886, + 6593122918, + 6593122923, + 6593122922, + 6593122959, + 6593122887, + 6593122884, + 6593122885, + 6593122087 + ], + "geometry": [ + { "lat": 40.7525330, "lon": -73.9819960 }, + { "lat": 40.7525059, "lon": -73.9819316 }, + { "lat": 40.7525085, "lon": -73.9819294 }, + { "lat": 40.7525050, "lon": -73.9819209 }, + { "lat": 40.7525230, "lon": -73.9819074 }, + { "lat": 40.7525220, "lon": -73.9819043 }, + { "lat": 40.7525311, "lon": -73.9818978 }, + { "lat": 40.7525430, "lon": -73.9819264 }, + { "lat": 40.7525570, "lon": -73.9819581 }, + { "lat": 40.7525688, "lon": -73.9819873 }, + { "lat": 40.7525614, "lon": -73.9819924 }, + { "lat": 40.7525592, "lon": -73.9819868 }, + { "lat": 40.7525381, "lon": -73.9820020 }, + { "lat": 40.7525349, "lon": -73.9819946 }, + { "lat": 40.7525330, "lon": -73.9819960 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073787, + "bounds": { + "minlat": 40.7530871, + "minlon": -73.9817234, + "maxlat": 40.7534921, + "maxlon": -73.9813592 + }, + "nodes": [ + 6593122995, + 6611621818, + 6593122992, + 6593122993, + 6593122990, + 6593122991, + 6593122988, + 6593122989, + 6593122986, + 6593122987, + 6593122984, + 6593122985, + 6593122277, + 6593122983, + 6593122980, + 6593122981, + 6593121681, + 6593121684, + 6593121683, + 6593121686, + 6593121685, + 6593121688, + 6593121687, + 6593121690, + 6593121689, + 6593121678, + 6593121677, + 6593121680, + 6593121679, + 6593121682, + 6593121692, + 6593121695, + 6593121696, + 6593121693, + 6593121694, + 6593121691, + 6593122995 + ], + "geometry": [ + { "lat": 40.7530871, "lon": -73.9816224 }, + { "lat": 40.7530920, "lon": -73.9816338 }, + { "lat": 40.7530942, "lon": -73.9816392 }, + { "lat": 40.7531429, "lon": -73.9816046 }, + { "lat": 40.7531506, "lon": -73.9816033 }, + { "lat": 40.7531620, "lon": -73.9816059 }, + { "lat": 40.7531717, "lon": -73.9816131 }, + { "lat": 40.7531771, "lon": -73.9816258 }, + { "lat": 40.7531771, "lon": -73.9816376 }, + { "lat": 40.7531744, "lon": -73.9816451 }, + { "lat": 40.7531653, "lon": -73.9816556 }, + { "lat": 40.7531925, "lon": -73.9817234 }, + { "lat": 40.7534921, "lon": -73.9815020 }, + { "lat": 40.7534316, "lon": -73.9813592 }, + { "lat": 40.7534118, "lon": -73.9813732 }, + { "lat": 40.7534155, "lon": -73.9813820 }, + { "lat": 40.7534277, "lon": -73.9813730 }, + { "lat": 40.7534373, "lon": -73.9813958 }, + { "lat": 40.7534038, "lon": -73.9814203 }, + { "lat": 40.7534310, "lon": -73.9814851 }, + { "lat": 40.7534651, "lon": -73.9814602 }, + { "lat": 40.7534748, "lon": -73.9814828 }, + { "lat": 40.7533412, "lon": -73.9815806 }, + { "lat": 40.7533213, "lon": -73.9815338 }, + { "lat": 40.7533385, "lon": -73.9815212 }, + { "lat": 40.7533487, "lon": -73.9815454 }, + { "lat": 40.7534138, "lon": -73.9814978 }, + { "lat": 40.7533865, "lon": -73.9814329 }, + { "lat": 40.7533602, "lon": -73.9814522 }, + { "lat": 40.7533507, "lon": -73.9814294 }, + { "lat": 40.7533382, "lon": -73.9814385 }, + { "lat": 40.7533478, "lon": -73.9814613 }, + { "lat": 40.7533215, "lon": -73.9814806 }, + { "lat": 40.7533316, "lon": -73.9815048 }, + { "lat": 40.7533144, "lon": -73.9815174 }, + { "lat": 40.7532947, "lon": -73.9814704 }, + { "lat": 40.7530871, "lon": -73.9816224 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073788, + "bounds": { + "minlat": 40.7525417, + "minlon": -73.9821511, + "maxlat": 40.7528904, + "maxlon": -73.9817776 + }, + "nodes": [ + 6593122958, + 6593122959, + 6593122956, + 6593121734, + 6593121733, + 6593121736, + 6593121735, + 6593121738, + 6593121737, + 6593121740, + 6593121739, + 6593121742, + 6593121727, + 6593121730, + 6593121729, + 6593121732, + 6593121731, + 6593121741, + 6593121748, + 6593121745, + 6593121746, + 6593121743, + 6593121744, + 6593122937, + 6611621816, + 6593122934, + 6593122935, + 6593122932, + 6593122933, + 6593122930, + 6593122931, + 6593122928, + 6593122929, + 6593122926, + 6593122927, + 6593122924, + 6593122925, + 6593122958 + ], + "geometry": [ + { "lat": 40.7525417, "lon": -73.9820072 }, + { "lat": 40.7525614, "lon": -73.9819924 }, + { "lat": 40.7525662, "lon": -73.9820037 }, + { "lat": 40.7525538, "lon": -73.9820127 }, + { "lat": 40.7525633, "lon": -73.9820355 }, + { "lat": 40.7525969, "lon": -73.9820110 }, + { "lat": 40.7526241, "lon": -73.9820758 }, + { "lat": 40.7525900, "lon": -73.9821008 }, + { "lat": 40.7525994, "lon": -73.9821236 }, + { "lat": 40.7527330, "lon": -73.9820258 }, + { "lat": 40.7527135, "lon": -73.9819787 }, + { "lat": 40.7526963, "lon": -73.9819913 }, + { "lat": 40.7527064, "lon": -73.9820155 }, + { "lat": 40.7526414, "lon": -73.9820632 }, + { "lat": 40.7526141, "lon": -73.9819983 }, + { "lat": 40.7526404, "lon": -73.9819791 }, + { "lat": 40.7526308, "lon": -73.9819563 }, + { "lat": 40.7526433, "lon": -73.9819472 }, + { "lat": 40.7526529, "lon": -73.9819700 }, + { "lat": 40.7526792, "lon": -73.9819507 }, + { "lat": 40.7526894, "lon": -73.9819749 }, + { "lat": 40.7527066, "lon": -73.9819623 }, + { "lat": 40.7526869, "lon": -73.9819153 }, + { "lat": 40.7528750, "lon": -73.9817776 }, + { "lat": 40.7528801, "lon": -73.9817907 }, + { "lat": 40.7528825, "lon": -73.9817954 }, + { "lat": 40.7528438, "lon": -73.9818239 }, + { "lat": 40.7528379, "lon": -73.9818314 }, + { "lat": 40.7528339, "lon": -73.9818441 }, + { "lat": 40.7528337, "lon": -73.9818553 }, + { "lat": 40.7528364, "lon": -73.9818664 }, + { "lat": 40.7528418, "lon": -73.9818755 }, + { "lat": 40.7528475, "lon": -73.9818794 }, + { "lat": 40.7528540, "lon": -73.9818794 }, + { "lat": 40.7528629, "lon": -73.9818749 }, + { "lat": 40.7528904, "lon": -73.9819405 }, + { "lat": 40.7526021, "lon": -73.9821511 }, + { "lat": 40.7525417, "lon": -73.9820072 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073789, + "bounds": { + "minlat": 40.7533739, + "minlon": -73.9814904, + "maxlat": 40.7535556, + "maxlon": -73.9811467 + }, + "nodes": [ + 6593121641, + 6593123043, + 6593123040, + 6593122280, + 6593123038, + 6593122070, + 6593123036, + 6593123037, + 6593121645, + 6593121648, + 6593123032, + 6593123033, + 6593121649, + 6593121652, + 6593123028, + 6593123029, + 6593121657, + 6593121660, + 6593123024, + 6593123025, + 6593123022, + 6593123023, + 6593123020, + 6593123021, + 6593123018, + 6593123019, + 6593121655, + 6593121658, + 6593123014, + 6593123015, + 6593121644, + 6593121641 + ], + "geometry": [ + { "lat": 40.7535556, "lon": -73.9814509 }, + { "lat": 40.7535540, "lon": -73.9814521 }, + { "lat": 40.7535555, "lon": -73.9814558 }, + { "lat": 40.7535249, "lon": -73.9814787 }, + { "lat": 40.7535216, "lon": -73.9814713 }, + { "lat": 40.7535194, "lon": -73.9814730 }, + { "lat": 40.7534955, "lon": -73.9814904 }, + { "lat": 40.7534841, "lon": -73.9814633 }, + { "lat": 40.7534975, "lon": -73.9814535 }, + { "lat": 40.7534883, "lon": -73.9814316 }, + { "lat": 40.7534750, "lon": -73.9814414 }, + { "lat": 40.7534489, "lon": -73.9813793 }, + { "lat": 40.7534623, "lon": -73.9813696 }, + { "lat": 40.7534480, "lon": -73.9813356 }, + { "lat": 40.7534373, "lon": -73.9813434 }, + { "lat": 40.7534064, "lon": -73.9812700 }, + { "lat": 40.7534171, "lon": -73.9812621 }, + { "lat": 40.7533956, "lon": -73.9812108 }, + { "lat": 40.7533825, "lon": -73.9812203 }, + { "lat": 40.7533739, "lon": -73.9811987 }, + { "lat": 40.7533781, "lon": -73.9811954 }, + { "lat": 40.7533811, "lon": -73.9812026 }, + { "lat": 40.7534439, "lon": -73.9811570 }, + { "lat": 40.7534410, "lon": -73.9811503 }, + { "lat": 40.7534459, "lon": -73.9811467 }, + { "lat": 40.7534547, "lon": -73.9811675 }, + { "lat": 40.7534408, "lon": -73.9811776 }, + { "lat": 40.7535075, "lon": -73.9813364 }, + { "lat": 40.7535220, "lon": -73.9813258 }, + { "lat": 40.7535480, "lon": -73.9813879 }, + { "lat": 40.7535336, "lon": -73.9813985 }, + { "lat": 40.7535556, "lon": -73.9814509 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073792, + "bounds": { + "minlat": 40.7527694, + "minlon": -73.9816784, + "maxlat": 40.7530950, + "maxlon": -73.9814126 + }, + "nodes": [ + 6593123053, + 6593123050, + 6593123051, + 6593123048, + 6593123049, + 6605262899, + 6593123046, + 6593123047, + 6593123044, + 6593123045, + 6605262900, + 6593123053 + ], + "geometry": [ + { "lat": 40.7530787, "lon": -73.9814126 }, + { "lat": 40.7530950, "lon": -73.9814525 }, + { "lat": 40.7530641, "lon": -73.9814747 }, + { "lat": 40.7530537, "lon": -73.9814492 }, + { "lat": 40.7530307, "lon": -73.9814662 }, + { "lat": 40.7529221, "lon": -73.9815448 }, + { "lat": 40.7528010, "lon": -73.9816336 }, + { "lat": 40.7528114, "lon": -73.9816594 }, + { "lat": 40.7527854, "lon": -73.9816784 }, + { "lat": 40.7527694, "lon": -73.9816388 }, + { "lat": 40.7529167, "lon": -73.9815309 }, + { "lat": 40.7530787, "lon": -73.9814126 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073793, + "bounds": { + "minlat": 40.7528510, + "minlon": -73.9833226, + "maxlat": 40.7533286, + "maxlon": -73.9829518 + }, + "nodes": [ + 6593121751, + 6593123104, + 6593123102, + 6593121099, + 6593121100, + 6593123100, + 6593121749, + 6593121750, + 6593121747, + 6593121752, + 6593123097, + 6593123094, + 9590209960, + 6593123095, + 6593123092, + 6593121540, + 6593121541, + 6593122614, + 9590209957, + 6593122611, + 6593122608, + 6593122598, + 6593122599, + 6593122596, + 6593122597, + 6593122594, + 6593122595, + 6605262903, + 6593123174, + 6593123083, + 6593123080, + 6593123081, + 6593123078, + 6593121758, + 6593121751 + ], + "geometry": [ + { "lat": 40.7530544, "lon": -73.9831004 }, + { "lat": 40.7530700, "lon": -73.9830890 }, + { "lat": 40.7530118, "lon": -73.9829518 }, + { "lat": 40.7529956, "lon": -73.9829630 }, + { "lat": 40.7529906, "lon": -73.9829538 }, + { "lat": 40.7528510, "lon": -73.9830603 }, + { "lat": 40.7529141, "lon": -73.9832032 }, + { "lat": 40.7530320, "lon": -73.9831169 }, + { "lat": 40.7530420, "lon": -73.9831407 }, + { "lat": 40.7529241, "lon": -73.9832270 }, + { "lat": 40.7529260, "lon": -73.9832313 }, + { "lat": 40.7529203, "lon": -73.9832359 }, + { "lat": 40.7529389, "lon": -73.9832804 }, + { "lat": 40.7529565, "lon": -73.9833226 }, + { "lat": 40.7529636, "lon": -73.9833169 }, + { "lat": 40.7529657, "lon": -73.9833216 }, + { "lat": 40.7530121, "lon": -73.9832876 }, + { "lat": 40.7530821, "lon": -73.9832363 }, + { "lat": 40.7530923, "lon": -73.9832289 }, + { "lat": 40.7531040, "lon": -73.9832204 }, + { "lat": 40.7531892, "lon": -73.9831581 }, + { "lat": 40.7532112, "lon": -73.9831420 }, + { "lat": 40.7532964, "lon": -73.9830796 }, + { "lat": 40.7533041, "lon": -73.9830980 }, + { "lat": 40.7533261, "lon": -73.9830819 }, + { "lat": 40.7533184, "lon": -73.9830635 }, + { "lat": 40.7533286, "lon": -73.9830561 }, + { "lat": 40.7533104, "lon": -73.9830126 }, + { "lat": 40.7532884, "lon": -73.9829603 }, + { "lat": 40.7531404, "lon": -73.9830686 }, + { "lat": 40.7531455, "lon": -73.9830813 }, + { "lat": 40.7531037, "lon": -73.9831117 }, + { "lat": 40.7530985, "lon": -73.9830993 }, + { "lat": 40.7530645, "lon": -73.9831243 }, + { "lat": 40.7530544, "lon": -73.9831004 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073794, + "bounds": { + "minlat": 40.7526469, + "minlon": -73.9826824, + "maxlat": 40.7527907, + "maxlon": -73.9825202 + }, + "nodes": [ + 6593066583, + 6593066582, + 6593121917, + 6593123077, + 6593123074, + 6593123075, + 6593123072, + 6593121916, + 6593066583 + ], + "geometry": [ + { "lat": 40.7527907, "lon": -73.9826105 }, + { "lat": 40.7527526, "lon": -73.9825202 }, + { "lat": 40.7526539, "lon": -73.9825927 }, + { "lat": 40.7526507, "lon": -73.9825950 }, + { "lat": 40.7526469, "lon": -73.9825979 }, + { "lat": 40.7526646, "lon": -73.9826403 }, + { "lat": 40.7526718, "lon": -73.9826349 }, + { "lat": 40.7526922, "lon": -73.9826824 }, + { "lat": 40.7527907, "lon": -73.9826105 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073795, + "bounds": { + "minlat": 40.7532920, + "minlon": -73.9829044, + "maxlat": 40.7535631, + "maxlon": -73.9825853 + }, + "nodes": [ + 6593123162, + 6593123159, + 6593123160, + 6593121538, + 6593123158, + 6593123172, + 6593121980, + 6593122158, + 6593121978, + 6593123154, + 6593121976, + 6593123152, + 6593121974, + 6593123150, + 6593123147, + 6593123148, + 6593121967, + 6593123146, + 6593121963, + 6593123144, + 6593121962, + 6593123142, + 6593123139, + 6593123140, + 6593123137, + 6593123138, + 6593121956, + 6593121953, + 6593121954, + 6593121951, + 6593121952, + 6593121949, + 6593123129, + 6593123130, + 6593123127, + 6593123128, + 6593123125, + 6593121981, + 6593121982, + 6593121979, + 6593123121, + 6593123122, + 6593123162 + ], + "geometry": [ + { "lat": 40.7535631, "lon": -73.9827467 }, + { "lat": 40.7534945, "lon": -73.9825853 }, + { "lat": 40.7532920, "lon": -73.9827335 }, + { "lat": 40.7533394, "lon": -73.9828464 }, + { "lat": 40.7533638, "lon": -73.9829044 }, + { "lat": 40.7533932, "lon": -73.9828829 }, + { "lat": 40.7533646, "lon": -73.9828119 }, + { "lat": 40.7533590, "lon": -73.9827995 }, + { "lat": 40.7533706, "lon": -73.9827921 }, + { "lat": 40.7533713, "lon": -73.9827975 }, + { "lat": 40.7533975, "lon": -73.9827765 }, + { "lat": 40.7533955, "lon": -73.9827714 }, + { "lat": 40.7534054, "lon": -73.9827664 }, + { "lat": 40.7534037, "lon": -73.9827624 }, + { "lat": 40.7534148, "lon": -73.9827545 }, + { "lat": 40.7534167, "lon": -73.9827432 }, + { "lat": 40.7534207, "lon": -73.9827314 }, + { "lat": 40.7534263, "lon": -73.9827236 }, + { "lat": 40.7534345, "lon": -73.9827252 }, + { "lat": 40.7534463, "lon": -73.9827297 }, + { "lat": 40.7534591, "lon": -73.9827233 }, + { "lat": 40.7534652, "lon": -73.9827247 }, + { "lat": 40.7534702, "lon": -73.9827196 }, + { "lat": 40.7534719, "lon": -73.9827236 }, + { "lat": 40.7534958, "lon": -73.9827063 }, + { "lat": 40.7534936, "lon": -73.9827018 }, + { "lat": 40.7535027, "lon": -73.9826962 }, + { "lat": 40.7535079, "lon": -73.9827085 }, + { "lat": 40.7534744, "lon": -73.9827334 }, + { "lat": 40.7534751, "lon": -73.9827357 }, + { "lat": 40.7534618, "lon": -73.9827461 }, + { "lat": 40.7534667, "lon": -73.9827565 }, + { "lat": 40.7534703, "lon": -73.9827651 }, + { "lat": 40.7534658, "lon": -73.9827832 }, + { "lat": 40.7534379, "lon": -73.9828006 }, + { "lat": 40.7534225, "lon": -73.9827957 }, + { "lat": 40.7534204, "lon": -73.9827911 }, + { "lat": 40.7534157, "lon": -73.9827801 }, + { "lat": 40.7534031, "lon": -73.9827886 }, + { "lat": 40.7534024, "lon": -73.9827860 }, + { "lat": 40.7533712, "lon": -73.9828073 }, + { "lat": 40.7533959, "lon": -73.9828694 }, + { "lat": 40.7535631, "lon": -73.9827467 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073796, + "bounds": { + "minlat": 40.7534992, + "minlon": -73.9827488, + "maxlat": 40.7539145, + "maxlon": -73.9823298 + }, + "nodes": [ + 6593123119, + 6593122156, + 6593123117, + 6593121106, + 6593121103, + 6593121104, + 6593121105, + 6593123118, + 6593123115, + 6593123116, + 6593123113, + 6593122159, + 6593123114, + 6593123111, + 6593123112, + 6593123109, + 6593122161, + 6593123110, + 6593123107, + 6593123108, + 6593123105, + 6593122160, + 6593123106, + 6593123119 + ], + "geometry": [ + { "lat": 40.7536250, "lon": -73.9827069 }, + { "lat": 40.7535678, "lon": -73.9827488 }, + { "lat": 40.7534992, "lon": -73.9825870 }, + { "lat": 40.7536696, "lon": -73.9824601 }, + { "lat": 40.7536720, "lon": -73.9824653 }, + { "lat": 40.7537581, "lon": -73.9824023 }, + { "lat": 40.7537558, "lon": -73.9823959 }, + { "lat": 40.7538439, "lon": -73.9823298 }, + { "lat": 40.7539145, "lon": -73.9824974 }, + { "lat": 40.7538719, "lon": -73.9825281 }, + { "lat": 40.7538659, "lon": -73.9825134 }, + { "lat": 40.7538553, "lon": -73.9825215 }, + { "lat": 40.7538439, "lon": -73.9825301 }, + { "lat": 40.7538496, "lon": -73.9825432 }, + { "lat": 40.7537647, "lon": -73.9826053 }, + { "lat": 40.7537592, "lon": -73.9825922 }, + { "lat": 40.7537474, "lon": -73.9826011 }, + { "lat": 40.7537366, "lon": -73.9826092 }, + { "lat": 40.7537421, "lon": -73.9826220 }, + { "lat": 40.7536582, "lon": -73.9826834 }, + { "lat": 40.7536520, "lon": -73.9826687 }, + { "lat": 40.7536350, "lon": -73.9826813 }, + { "lat": 40.7536193, "lon": -73.9826929 }, + { "lat": 40.7536250, "lon": -73.9827069 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 702073797, + "bounds": { + "minlat": 40.7536137, + "minlon": -73.9819445, + "maxlat": 40.7537106, + "maxlon": -73.9817518 + }, + "nodes": [ + 6593123177, + 6593123178, + 6593123175, + 6593123176, + 6593123177 + ], + "geometry": [ + { "lat": 40.7537106, "lon": -73.9819270 }, + { "lat": 40.7536378, "lon": -73.9817518 }, + { "lat": 40.7536137, "lon": -73.9817693 }, + { "lat": 40.7536866, "lon": -73.9819445 }, + { "lat": 40.7537106, "lon": -73.9819270 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073798, + "bounds": { + "minlat": 40.7532884, + "minlon": -73.9831538, + "maxlat": 40.7537073, + "maxlon": -73.9827118 + }, + "nodes": [ + 6593122595, + 6605262903, + 6593123174, + 6593123158, + 6593123172, + 6593123169, + 6593123170, + 6593123233, + 6605262904, + 6593122603, + 6593122600, + 6593121182, + 6593121089, + 6593121218, + 6593121092, + 6593123167, + 6593123168, + 6593123165, + 6605262897, + 6593121998, + 6593123163, + 6593123164, + 6593121095, + 6593121094, + 6593121085, + 6593122592, + 6593122595 + ], + "geometry": [ + { "lat": 40.7533286, "lon": -73.9830561 }, + { "lat": 40.7533104, "lon": -73.9830126 }, + { "lat": 40.7532884, "lon": -73.9829603 }, + { "lat": 40.7533638, "lon": -73.9829044 }, + { "lat": 40.7533932, "lon": -73.9828829 }, + { "lat": 40.7535380, "lon": -73.9827769 }, + { "lat": 40.7535669, "lon": -73.9827557 }, + { "lat": 40.7536269, "lon": -73.9827118 }, + { "lat": 40.7536494, "lon": -73.9827654 }, + { "lat": 40.7536673, "lon": -73.9828080 }, + { "lat": 40.7536944, "lon": -73.9828726 }, + { "lat": 40.7537051, "lon": -73.9828973 }, + { "lat": 40.7537073, "lon": -73.9829029 }, + { "lat": 40.7536813, "lon": -73.9829236 }, + { "lat": 40.7536787, "lon": -73.9829180 }, + { "lat": 40.7536643, "lon": -73.9829284 }, + { "lat": 40.7536604, "lon": -73.9829189 }, + { "lat": 40.7536572, "lon": -73.9829212 }, + { "lat": 40.7535378, "lon": -73.9830075 }, + { "lat": 40.7534138, "lon": -73.9830954 }, + { "lat": 40.7534109, "lon": -73.9830974 }, + { "lat": 40.7534175, "lon": -73.9831133 }, + { "lat": 40.7534014, "lon": -73.9831256 }, + { "lat": 40.7534034, "lon": -73.9831304 }, + { "lat": 40.7533702, "lon": -73.9831538 }, + { "lat": 40.7533557, "lon": -73.9831206 }, + { "lat": 40.7533286, "lon": -73.9830561 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073800, + "bounds": { + "minlat": 40.7535025, + "minlon": -73.9828189, + "maxlat": 40.7539837, + "maxlon": -73.9814424 + }, + "nodes": [ + 6593123233, + 6593122157, + 6593123230, + 6593123231, + 6593122164, + 6593123228, + 6593123229, + 6593122162, + 6593123226, + 6593123227, + 6593123224, + 6593123225, + 6593122110, + 6593123223, + 6593123220, + 6593123221, + 6593122112, + 6593122111, + 6593123216, + 6593123217, + 6593123214, + 6593123215, + 6593123212, + 6593123213, + 6593123210, + 6593123211, + 6593123208, + 6593123209, + 6593123206, + 6593123207, + 6593121636, + 6593121633, + 6593123203, + 6593121124, + 6593121642, + 6593121639, + 6593121640, + 6593123200, + 6593123197, + 6593123198, + 6593123195, + 6593123196, + 6593123193, + 6593123194, + 6593122123, + 6593122126, + 6593531892, + 6593531894, + 6593531897, + 6593531898, + 6593531896, + 6593531895, + 6593121546, + 6593121545, + 6605262915, + 6593121634, + 6593122624, + 9590209940, + 6593122621, + 6593122618, + 6593122167, + 6593122606, + 6593122607, + 6593122604, + 6593122605, + 6593122602, + 6593122603, + 6605262904, + 6593123233 + ], + "geometry": [ + { "lat": 40.7536269, "lon": -73.9827118 }, + { "lat": 40.7536430, "lon": -73.9826999 }, + { "lat": 40.7536590, "lon": -73.9826880 }, + { "lat": 40.7537442, "lon": -73.9826256 }, + { "lat": 40.7537551, "lon": -73.9826177 }, + { "lat": 40.7537662, "lon": -73.9826095 }, + { "lat": 40.7538520, "lon": -73.9825467 }, + { "lat": 40.7538632, "lon": -73.9825391 }, + { "lat": 40.7538736, "lon": -73.9825320 }, + { "lat": 40.7539182, "lon": -73.9824994 }, + { "lat": 40.7538461, "lon": -73.9823279 }, + { "lat": 40.7536879, "lon": -73.9819475 }, + { "lat": 40.7537145, "lon": -73.9819282 }, + { "lat": 40.7537169, "lon": -73.9819259 }, + { "lat": 40.7537122, "lon": -73.9819148 }, + { "lat": 40.7537210, "lon": -73.9819084 }, + { "lat": 40.7537196, "lon": -73.9819050 }, + { "lat": 40.7536982, "lon": -73.9818549 }, + { "lat": 40.7536968, "lon": -73.9818514 }, + { "lat": 40.7536887, "lon": -73.9818574 }, + { "lat": 40.7536412, "lon": -73.9817446 }, + { "lat": 40.7536123, "lon": -73.9817657 }, + { "lat": 40.7535025, "lon": -73.9815018 }, + { "lat": 40.7535627, "lon": -73.9814581 }, + { "lat": 40.7535598, "lon": -73.9814511 }, + { "lat": 40.7535717, "lon": -73.9814424 }, + { "lat": 40.7535799, "lon": -73.9814620 }, + { "lat": 40.7535335, "lon": -73.9814955 }, + { "lat": 40.7535537, "lon": -73.9815449 }, + { "lat": 40.7535528, "lon": -73.9815492 }, + { "lat": 40.7535499, "lon": -73.9815538 }, + { "lat": 40.7536035, "lon": -73.9816813 }, + { "lat": 40.7536089, "lon": -73.9816789 }, + { "lat": 40.7536125, "lon": -73.9816804 }, + { "lat": 40.7536156, "lon": -73.9816851 }, + { "lat": 40.7536320, "lon": -73.9816731 }, + { "lat": 40.7535750, "lon": -73.9815373 }, + { "lat": 40.7536021, "lon": -73.9815176 }, + { "lat": 40.7536035, "lon": -73.9815210 }, + { "lat": 40.7536128, "lon": -73.9815142 }, + { "lat": 40.7536212, "lon": -73.9815342 }, + { "lat": 40.7536121, "lon": -73.9815414 }, + { "lat": 40.7537101, "lon": -73.9817749 }, + { "lat": 40.7536970, "lon": -73.9817847 }, + { "lat": 40.7536986, "lon": -73.9817881 }, + { "lat": 40.7537608, "lon": -73.9819363 }, + { "lat": 40.7537539, "lon": -73.9819414 }, + { "lat": 40.7537329, "lon": -73.9819569 }, + { "lat": 40.7537351, "lon": -73.9819620 }, + { "lat": 40.7537361, "lon": -73.9819656 }, + { "lat": 40.7537357, "lon": -73.9819708 }, + { "lat": 40.7537341, "lon": -73.9819747 }, + { "lat": 40.7537317, "lon": -73.9819769 }, + { "lat": 40.7539446, "lon": -73.9824831 }, + { "lat": 40.7539634, "lon": -73.9825279 }, + { "lat": 40.7539837, "lon": -73.9825762 }, + { "lat": 40.7539137, "lon": -73.9826275 }, + { "lat": 40.7539032, "lon": -73.9826352 }, + { "lat": 40.7538919, "lon": -73.9826436 }, + { "lat": 40.7538067, "lon": -73.9827060 }, + { "lat": 40.7537963, "lon": -73.9827136 }, + { "lat": 40.7537847, "lon": -73.9827221 }, + { "lat": 40.7536995, "lon": -73.9827844 }, + { "lat": 40.7537072, "lon": -73.9828028 }, + { "lat": 40.7536852, "lon": -73.9828189 }, + { "lat": 40.7536775, "lon": -73.9828005 }, + { "lat": 40.7536673, "lon": -73.9828080 }, + { "lat": 40.7536494, "lon": -73.9827654 }, + { "lat": 40.7536269, "lon": -73.9827118 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073801, + "bounds": { + "minlat": 40.7533274, + "minlon": -73.9842407, + "maxlat": 40.7542195, + "maxlon": -73.9829243 + }, + "nodes": [ + 6593121817, + 6593121820, + 6593121815, + 9590209953, + 6593123320, + 6593121821, + 6593121824, + 6593123315, + 6593123316, + 6593121990, + 9590209950, + 6593123314, + 6593123311, + 6593123312, + 6593123309, + 6593123310, + 6593123307, + 6593123308, + 6593123305, + 6593123306, + 6593123303, + 6593123304, + 6593123301, + 6593123302, + 6593123299, + 6593123300, + 6593123297, + 9590209949, + 6593122021, + 6593123295, + 6593123296, + 6593121831, + 6593121834, + 6593123291, + 6593123292, + 6593121827, + 6593121830, + 6593123287, + 6593123288, + 6593121823, + 6593121826, + 9590209947, + 1289222426, + 6593123284, + 6593123282, + 6593123283, + 1289222444, + 1289222409, + 1289222422, + 1289222400, + 1289222418, + 1289222442, + 6593123280, + 6593123281, + 6593123279, + 1289222450, + 6593123278, + 1289222411, + 6593123277, + 1289222391, + 6593123276, + 1289222395, + 1289222393, + 6593123275, + 1289222434, + 1289222403, + 6593123274, + 1289222405, + 6593123273, + 1289222419, + 1289222438, + 1289222410, + 1289222453, + 1289222398, + 6593123271, + 6593123272, + 6593123269, + 6593123270, + 1289222421, + 9590209948, + 6593121813, + 6593121816, + 6593121811, + 6593123362, + 6593123365, + 6593121818, + 6593121817 + ], + "geometry": [ + { "lat": 40.7534752, "lon": -73.9836340 }, + { "lat": 40.7536157, "lon": -73.9839684 }, + { "lat": 40.7535823, "lon": -73.9839928 }, + { "lat": 40.7535925, "lon": -73.9840177 }, + { "lat": 40.7536013, "lon": -73.9840389 }, + { "lat": 40.7536337, "lon": -73.9840152 }, + { "lat": 40.7537284, "lon": -73.9842407 }, + { "lat": 40.7537996, "lon": -73.9841894 }, + { "lat": 40.7537947, "lon": -73.9841777 }, + { "lat": 40.7537993, "lon": -73.9841740 }, + { "lat": 40.7538379, "lon": -73.9841453 }, + { "lat": 40.7538535, "lon": -73.9841336 }, + { "lat": 40.7538514, "lon": -73.9841169 }, + { "lat": 40.7538499, "lon": -73.9840940 }, + { "lat": 40.7538519, "lon": -73.9840639 }, + { "lat": 40.7538568, "lon": -73.9840325 }, + { "lat": 40.7538672, "lon": -73.9840018 }, + { "lat": 40.7538841, "lon": -73.9839704 }, + { "lat": 40.7539019, "lon": -73.9839489 }, + { "lat": 40.7539266, "lon": -73.9839325 }, + { "lat": 40.7539469, "lon": -73.9839221 }, + { "lat": 40.7539677, "lon": -73.9839162 }, + { "lat": 40.7539895, "lon": -73.9839162 }, + { "lat": 40.7540158, "lon": -73.9839227 }, + { "lat": 40.7540396, "lon": -73.9839332 }, + { "lat": 40.7540623, "lon": -73.9839489 }, + { "lat": 40.7540812, "lon": -73.9839685 }, + { "lat": 40.7540962, "lon": -73.9839577 }, + { "lat": 40.7541219, "lon": -73.9839392 }, + { "lat": 40.7541265, "lon": -73.9839364 }, + { "lat": 40.7541310, "lon": -73.9839477 }, + { "lat": 40.7542195, "lon": -73.9838829 }, + { "lat": 40.7541248, "lon": -73.9836574 }, + { "lat": 40.7541560, "lon": -73.9836346 }, + { "lat": 40.7541367, "lon": -73.9835886 }, + { "lat": 40.7541068, "lon": -73.9836106 }, + { "lat": 40.7539663, "lon": -73.9832762 }, + { "lat": 40.7539972, "lon": -73.9832536 }, + { "lat": 40.7539795, "lon": -73.9832116 }, + { "lat": 40.7539487, "lon": -73.9832342 }, + { "lat": 40.7538185, "lon": -73.9829243 }, + { "lat": 40.7538006, "lon": -73.9829375 }, + { "lat": 40.7537472, "lon": -73.9829767 }, + { "lat": 40.7537540, "lon": -73.9829899 }, + { "lat": 40.7537644, "lon": -73.9830021 }, + { "lat": 40.7537766, "lon": -73.9830082 }, + { "lat": 40.7537886, "lon": -73.9830081 }, + { "lat": 40.7538016, "lon": -73.9830028 }, + { "lat": 40.7538066, "lon": -73.9829995 }, + { "lat": 40.7541647, "lon": -73.9838563 }, + { "lat": 40.7540917, "lon": -73.9839068 }, + { "lat": 40.7540770, "lon": -73.9838936 }, + { "lat": 40.7540605, "lon": -73.9838809 }, + { "lat": 40.7540411, "lon": -73.9838694 }, + { "lat": 40.7540232, "lon": -73.9838618 }, + { "lat": 40.7540029, "lon": -73.9838564 }, + { "lat": 40.7539826, "lon": -73.9838542 }, + { "lat": 40.7539608, "lon": -73.9838553 }, + { "lat": 40.7539363, "lon": -73.9838610 }, + { "lat": 40.7539154, "lon": -73.9838696 }, + { "lat": 40.7538969, "lon": -73.9838806 }, + { "lat": 40.7538724, "lon": -73.9839010 }, + { "lat": 40.7538554, "lon": -73.9839206 }, + { "lat": 40.7538365, "lon": -73.9839505 }, + { "lat": 40.7538234, "lon": -73.9839809 }, + { "lat": 40.7538155, "lon": -73.9840092 }, + { "lat": 40.7538107, "lon": -73.9840435 }, + { "lat": 40.7538101, "lon": -73.9840704 }, + { "lat": 40.7538123, "lon": -73.9840995 }, + { "lat": 40.7538137, "lon": -73.9841123 }, + { "lat": 40.7537368, "lon": -73.9841709 }, + { "lat": 40.7533754, "lon": -73.9833127 }, + { "lat": 40.7533841, "lon": -73.9833053 }, + { "lat": 40.7533909, "lon": -73.9832971 }, + { "lat": 40.7533972, "lon": -73.9832846 }, + { "lat": 40.7533999, "lon": -73.9832684 }, + { "lat": 40.7533989, "lon": -73.9832561 }, + { "lat": 40.7533968, "lon": -73.9832471 }, + { "lat": 40.7533924, "lon": -73.9832345 }, + { "lat": 40.7533456, "lon": -73.9832688 }, + { "lat": 40.7533274, "lon": -73.9832821 }, + { "lat": 40.7534576, "lon": -73.9835920 }, + { "lat": 40.7534242, "lon": -73.9836164 }, + { "lat": 40.7534171, "lon": -73.9836217 }, + { "lat": 40.7534345, "lon": -73.9836630 }, + { "lat": 40.7534418, "lon": -73.9836584 }, + { "lat": 40.7534752, "lon": -73.9836340 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073802, + "bounds": { + "minlat": 40.7532790, + "minlon": -73.9833066, + "maxlat": 40.7538498, + "maxlon": -73.9828617 + }, + "nodes": [ + 6593121814, + 6593121813, + 9590209948, + 1289222421, + 1289222426, + 9590209947, + 6593121826, + 6593123262, + 6593123263, + 6593123260, + 6593123261, + 6593123258, + 6593123259, + 6593123256, + 6593123257, + 6593123254, + 6605274741, + 6593123255, + 6593123252, + 6593123253, + 6593123250, + 6593123251, + 6593123248, + 6620972628, + 6593123249, + 6593121814 + ], + "geometry": [ + { "lat": 40.7532940, "lon": -73.9833066 }, + { "lat": 40.7533274, "lon": -73.9832821 }, + { "lat": 40.7533456, "lon": -73.9832688 }, + { "lat": 40.7533924, "lon": -73.9832345 }, + { "lat": 40.7537472, "lon": -73.9829767 }, + { "lat": 40.7538006, "lon": -73.9829375 }, + { "lat": 40.7538185, "lon": -73.9829243 }, + { "lat": 40.7538498, "lon": -73.9829014 }, + { "lat": 40.7538329, "lon": -73.9828617 }, + { "lat": 40.7537188, "lon": -73.9829466 }, + { "lat": 40.7537095, "lon": -73.9829506 }, + { "lat": 40.7537012, "lon": -73.9829508 }, + { "lat": 40.7536920, "lon": -73.9829483 }, + { "lat": 40.7536857, "lon": -73.9829442 }, + { "lat": 40.7536800, "lon": -73.9829371 }, + { "lat": 40.7536764, "lon": -73.9829310 }, + { "lat": 40.7535458, "lon": -73.9830276 }, + { "lat": 40.7534114, "lon": -73.9831271 }, + { "lat": 40.7534143, "lon": -73.9831423 }, + { "lat": 40.7534145, "lon": -73.9831528 }, + { "lat": 40.7534113, "lon": -73.9831636 }, + { "lat": 40.7534051, "lon": -73.9831754 }, + { "lat": 40.7533980, "lon": -73.9831832 }, + { "lat": 40.7533858, "lon": -73.9831922 }, + { "lat": 40.7532790, "lon": -73.9832707 }, + { "lat": 40.7532940, "lon": -73.9833066 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073803, + "bounds": { + "minlat": 40.7532297, + "minlon": -73.9843034, + "maxlat": 40.7536958, + "maxlon": -73.9831304 + }, + "nodes": [ + 6593121503, + 6593121502, + 6593121505, + 6593121504, + 6593121507, + 6593121506, + 6593121509, + 6593121508, + 6593121511, + 6593121510, + 6593121513, + 6593121512, + 6593121515, + 6593123364, + 6593122256, + 6593123365, + 6593123362, + 6593123363, + 6593123360, + 6593123361, + 6593123358, + 6593123359, + 6593123357, + 6593121094, + 6593121085, + 6593123356, + 6593121795, + 6593121760, + 6593121759, + 6593121762, + 6593121761, + 6593121764, + 6593121763, + 6593121766, + 6593121765, + 6593121768, + 6593121767, + 6593121770, + 6593121769, + 6593121772, + 6593121771, + 6593123438, + 6593123433, + 6593121500, + 6593121503 + ], + "geometry": [ + { "lat": 40.7535778, "lon": -73.9840897 }, + { "lat": 40.7535649, "lon": -73.9840992 }, + { "lat": 40.7535844, "lon": -73.9841456 }, + { "lat": 40.7535973, "lon": -73.9841362 }, + { "lat": 40.7536081, "lon": -73.9841618 }, + { "lat": 40.7535952, "lon": -73.9841713 }, + { "lat": 40.7536156, "lon": -73.9842194 }, + { "lat": 40.7536285, "lon": -73.9842100 }, + { "lat": 40.7536394, "lon": -73.9842355 }, + { "lat": 40.7536264, "lon": -73.9842451 }, + { "lat": 40.7536439, "lon": -73.9842871 }, + { "lat": 40.7536568, "lon": -73.9842777 }, + { "lat": 40.7536676, "lon": -73.9843034 }, + { "lat": 40.7536958, "lon": -73.9842824 }, + { "lat": 40.7535862, "lon": -73.9840227 }, + { "lat": 40.7534345, "lon": -73.9836630 }, + { "lat": 40.7534171, "lon": -73.9836217 }, + { "lat": 40.7532678, "lon": -73.9832679 }, + { "lat": 40.7533926, "lon": -73.9831760 }, + { "lat": 40.7534005, "lon": -73.9831668 }, + { "lat": 40.7534057, "lon": -73.9831570 }, + { "lat": 40.7534073, "lon": -73.9831494 }, + { "lat": 40.7534066, "lon": -73.9831397 }, + { "lat": 40.7534034, "lon": -73.9831304 }, + { "lat": 40.7533702, "lon": -73.9831538 }, + { "lat": 40.7532297, "lon": -73.9832594 }, + { "lat": 40.7532637, "lon": -73.9833403 }, + { "lat": 40.7532894, "lon": -73.9834030 }, + { "lat": 40.7533002, "lon": -73.9834286 }, + { "lat": 40.7532873, "lon": -73.9834380 }, + { "lat": 40.7533067, "lon": -73.9834843 }, + { "lat": 40.7533196, "lon": -73.9834749 }, + { "lat": 40.7533304, "lon": -73.9835005 }, + { "lat": 40.7533175, "lon": -73.9835099 }, + { "lat": 40.7533378, "lon": -73.9835580 }, + { "lat": 40.7533507, "lon": -73.9835485 }, + { "lat": 40.7533616, "lon": -73.9835740 }, + { "lat": 40.7533486, "lon": -73.9835836 }, + { "lat": 40.7533660, "lon": -73.9836255 }, + { "lat": 40.7533789, "lon": -73.9836161 }, + { "lat": 40.7533897, "lon": -73.9836417 }, + { "lat": 40.7534090, "lon": -73.9836877 }, + { "lat": 40.7535478, "lon": -73.9840181 }, + { "lat": 40.7535670, "lon": -73.9840641 }, + { "lat": 40.7535778, "lon": -73.9840897 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073804, + "bounds": { + "minlat": 40.7530821, + "minlon": -73.9833342, + "maxlat": 40.7533638, + "maxlon": -73.9831225 + }, + "nodes": [ + 6593121086, + 6593122593, + 6593122598, + 6593122608, + 6593122609, + 6593122610, + 6593122611, + 9590209957, + 6593122614, + 6593123334, + 6593123335, + 6593123330, + 6593122036, + 6593123328, + 6593123329, + 9590209958, + 6593123326, + 6593123327, + 6593122033, + 6593123325, + 6593123323, + 6593121087, + 6593121086 + ], + "geometry": [ + { "lat": 40.7533532, "lon": -73.9831225 }, + { "lat": 40.7532383, "lon": -73.9832065 }, + { "lat": 40.7532112, "lon": -73.9831420 }, + { "lat": 40.7531892, "lon": -73.9831581 }, + { "lat": 40.7532163, "lon": -73.9832226 }, + { "lat": 40.7531311, "lon": -73.9832850 }, + { "lat": 40.7531040, "lon": -73.9832204 }, + { "lat": 40.7530923, "lon": -73.9832289 }, + { "lat": 40.7530821, "lon": -73.9832363 }, + { "lat": 40.7531091, "lon": -73.9833010 }, + { "lat": 40.7530892, "lon": -73.9833162 }, + { "lat": 40.7530955, "lon": -73.9833314 }, + { "lat": 40.7530994, "lon": -73.9833284 }, + { "lat": 40.7531027, "lon": -73.9833259 }, + { "lat": 40.7531065, "lon": -73.9833342 }, + { "lat": 40.7531295, "lon": -73.9833177 }, + { "lat": 40.7531473, "lon": -73.9833048 }, + { "lat": 40.7531440, "lon": -73.9832972 }, + { "lat": 40.7531480, "lon": -73.9832944 }, + { "lat": 40.7531515, "lon": -73.9832917 }, + { "lat": 40.7531552, "lon": -73.9832999 }, + { "lat": 40.7533638, "lon": -73.9831469 }, + { "lat": 40.7533532, "lon": -73.9831225 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073805, + "bounds": { + "minlat": 40.7530229, + "minlon": -73.9847073, + "maxlat": 40.7540135, + "maxlon": -73.9833857 + }, + "nodes": [ + 6593121897, + 6593121898, + 6593121895, + 6593122663, + 6593122660, + 6593123510, + 6593121183, + 6593121137, + 6593121890, + 6593121139, + 6593121138, + 6593121881, + 6593121886, + 6593121141, + 6593123506, + 6593121549, + 6593121550, + 6594190584, + 6594202985, + 6594202986, + 6594190583, + 6594190580, + 6593123501, + 6593123502, + 6593122050, + 6593123500, + 6593123497, + 8375523275, + 6593123498, + 6593123495, + 6593123496, + 6593121471, + 6593121470, + 6593122054, + 6593123492, + 6593123489, + 6593123490, + 6593123487, + 6593122053, + 6593121794, + 6593121791, + 6593122058, + 6593123484, + 6593123481, + 6593123482, + 6593123479, + 6593122057, + 6593121812, + 6593520159, + 6593520160, + 6593121809, + 6593121804, + 6593121801, + 6593121808, + 6593121776, + 6593121773, + 6593121790, + 6593121787, + 6593121488, + 6593121489, + 6593121498, + 6593121499, + 6593121483, + 6593121480, + 6593121481, + 6593121474, + 6593121475, + 6593121472, + 6593121473, + 6593121476, + 6593121477, + 6593121478, + 6593121479, + 6593121484, + 6593121485, + 6593121486, + 6593121516, + 6593121517, + 6593121529, + 6593121530, + 9590209954, + 6593121892, + 6593121889, + 6593121897 + ], + "geometry": [ + { "lat": 40.7535698, "lon": -73.9846236 }, + { "lat": 40.7536459, "lon": -73.9846525 }, + { "lat": 40.7536636, "lon": -73.9846396 }, + { "lat": 40.7536984, "lon": -73.9846141 }, + { "lat": 40.7538077, "lon": -73.9845345 }, + { "lat": 40.7539328, "lon": -73.9844425 }, + { "lat": 40.7539011, "lon": -73.9843670 }, + { "lat": 40.7539364, "lon": -73.9843412 }, + { "lat": 40.7539474, "lon": -73.9843675 }, + { "lat": 40.7539650, "lon": -73.9843546 }, + { "lat": 40.7539747, "lon": -73.9843776 }, + { "lat": 40.7539571, "lon": -73.9843905 }, + { "lat": 40.7539681, "lon": -73.9844167 }, + { "lat": 40.7539857, "lon": -73.9844038 }, + { "lat": 40.7539996, "lon": -73.9843942 }, + { "lat": 40.7540135, "lon": -73.9844292 }, + { "lat": 40.7536562, "lon": -73.9846870 }, + { "lat": 40.7536615, "lon": -73.9846995 }, + { "lat": 40.7536518, "lon": -73.9847073 }, + { "lat": 40.7536488, "lon": -73.9847006 }, + { "lat": 40.7536455, "lon": -73.9846934 }, + { "lat": 40.7536398, "lon": -73.9846808 }, + { "lat": 40.7535573, "lon": -73.9846494 }, + { "lat": 40.7534914, "lon": -73.9844925 }, + { "lat": 40.7534704, "lon": -73.9845065 }, + { "lat": 40.7534693, "lon": -73.9845039 }, + { "lat": 40.7534615, "lon": -73.9845098 }, + { "lat": 40.7534544, "lon": -73.9844929 }, + { "lat": 40.7534456, "lon": -73.9844718 }, + { "lat": 40.7534534, "lon": -73.9844660 }, + { "lat": 40.7534515, "lon": -73.9844615 }, + { "lat": 40.7534720, "lon": -73.9844465 }, + { "lat": 40.7533611, "lon": -73.9841823 }, + { "lat": 40.7533405, "lon": -73.9841974 }, + { "lat": 40.7533388, "lon": -73.9841925 }, + { "lat": 40.7533335, "lon": -73.9841966 }, + { "lat": 40.7532740, "lon": -73.9840548 }, + { "lat": 40.7532791, "lon": -73.9840511 }, + { "lat": 40.7532771, "lon": -73.9840464 }, + { "lat": 40.7532977, "lon": -73.9840314 }, + { "lat": 40.7530939, "lon": -73.9835461 }, + { "lat": 40.7530755, "lon": -73.9835596 }, + { "lat": 40.7530743, "lon": -73.9835569 }, + { "lat": 40.7530590, "lon": -73.9835682 }, + { "lat": 40.7530456, "lon": -73.9835362 }, + { "lat": 40.7530611, "lon": -73.9835246 }, + { "lat": 40.7530600, "lon": -73.9835219 }, + { "lat": 40.7530781, "lon": -73.9835087 }, + { "lat": 40.7530699, "lon": -73.9834892 }, + { "lat": 40.7530595, "lon": -73.9834964 }, + { "lat": 40.7530229, "lon": -73.9834064 }, + { "lat": 40.7530502, "lon": -73.9833857 }, + { "lat": 40.7530960, "lon": -73.9834956 }, + { "lat": 40.7531626, "lon": -73.9834468 }, + { "lat": 40.7531783, "lon": -73.9834843 }, + { "lat": 40.7531118, "lon": -73.9835330 }, + { "lat": 40.7532120, "lon": -73.9837717 }, + { "lat": 40.7532786, "lon": -73.9837230 }, + { "lat": 40.7532979, "lon": -73.9837690 }, + { "lat": 40.7532313, "lon": -73.9838177 }, + { "lat": 40.7533070, "lon": -73.9839981 }, + { "lat": 40.7533736, "lon": -73.9839493 }, + { "lat": 40.7533923, "lon": -73.9839939 }, + { "lat": 40.7533712, "lon": -73.9840094 }, + { "lat": 40.7533810, "lon": -73.9840326 }, + { "lat": 40.7533566, "lon": -73.9840505 }, + { "lat": 40.7533469, "lon": -73.9840272 }, + { "lat": 40.7533258, "lon": -73.9840427 }, + { "lat": 40.7533355, "lon": -73.9840659 }, + { "lat": 40.7533603, "lon": -73.9841249 }, + { "lat": 40.7533701, "lon": -73.9841481 }, + { "lat": 40.7533912, "lon": -73.9841327 }, + { "lat": 40.7533814, "lon": -73.9841094 }, + { "lat": 40.7534058, "lon": -73.9840916 }, + { "lat": 40.7534155, "lon": -73.9841149 }, + { "lat": 40.7534367, "lon": -73.9840994 }, + { "lat": 40.7534560, "lon": -73.9841454 }, + { "lat": 40.7533894, "lon": -73.9841941 }, + { "lat": 40.7534899, "lon": -73.9844334 }, + { "lat": 40.7535565, "lon": -73.9843847 }, + { "lat": 40.7535673, "lon": -73.9844105 }, + { "lat": 40.7535758, "lon": -73.9844307 }, + { "lat": 40.7535092, "lon": -73.9844794 }, + { "lat": 40.7535698, "lon": -73.9846236 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073806, + "bounds": { + "minlat": 40.7531097, + "minlon": -73.9846396, + "maxlat": 40.7539011, + "maxlon": -73.9833081 + }, + "nodes": [ + 6593121802, + 6593121793, + 6593121796, + 6593121795, + 6593121760, + 6593121757, + 6593121774, + 6593121771, + 6593123438, + 6593122656, + 6593122659, + 6593123435, + 6593123436, + 6593123433, + 6593121500, + 6593121501, + 6593121514, + 6593121515, + 6593121178, + 9590209951, + 6593121181, + 6593121838, + 6593121837, + 6593121840, + 6593121839, + 6593121842, + 6593121841, + 6593121844, + 6593121835, + 6593122655, + 6593122652, + 6593121180, + 6593121183, + 6593122662, + 6593122661, + 6593122663, + 6593121895, + 6593121896, + 6593121893, + 6593121894, + 6593121891, + 6593121892, + 9590209954, + 6593121530, + 6593121527, + 6593121528, + 6593121525, + 6593121526, + 6593121523, + 6593121524, + 6593123410, + 6593121522, + 6593121520, + 6593121521, + 6593121518, + 6593121519, + 6593121516, + 6593121486, + 6593121487, + 6593121484, + 6593121479, + 6593121476, + 6593121473, + 6593121474, + 6593121481, + 6593121482, + 6593121483, + 6593121499, + 6593121496, + 6593121497, + 6593121494, + 6593121495, + 6593121492, + 6593121493, + 6593121490, + 6593121491, + 6593121488, + 6593121787, + 6593121788, + 6593121785, + 6593121786, + 6593121783, + 6593121784, + 6593121781, + 6593123388, + 6593121779, + 6593121780, + 6593121777, + 6593121778, + 6593121775, + 6593121776, + 6593121808, + 6593121805, + 6593121806, + 6593123380, + 9590209964, + 6593123381, + 6593121800, + 6593121799, + 6593121802 + ], + "geometry": [ + { "lat": 40.7531974, "lon": -73.9834214 }, + { "lat": 40.7532608, "lon": -73.9833749 }, + { "lat": 40.7532503, "lon": -73.9833501 }, + { "lat": 40.7532637, "lon": -73.9833403 }, + { "lat": 40.7532894, "lon": -73.9834030 }, + { "lat": 40.7532131, "lon": -73.9834588 }, + { "lat": 40.7533134, "lon": -73.9836976 }, + { "lat": 40.7533897, "lon": -73.9836417 }, + { "lat": 40.7534090, "lon": -73.9836877 }, + { "lat": 40.7534068, "lon": -73.9836893 }, + { "lat": 40.7533349, "lon": -73.9837419 }, + { "lat": 40.7533327, "lon": -73.9837435 }, + { "lat": 40.7534715, "lon": -73.9840739 }, + { "lat": 40.7535478, "lon": -73.9840181 }, + { "lat": 40.7535670, "lon": -73.9840641 }, + { "lat": 40.7534907, "lon": -73.9841199 }, + { "lat": 40.7535912, "lon": -73.9843593 }, + { "lat": 40.7536676, "lon": -73.9843034 }, + { "lat": 40.7538260, "lon": -73.9841858 }, + { "lat": 40.7538355, "lon": -73.9842096 }, + { "lat": 40.7538448, "lon": -73.9842328 }, + { "lat": 40.7537214, "lon": -73.9843228 }, + { "lat": 40.7536618, "lon": -73.9843673 }, + { "lat": 40.7536689, "lon": -73.9843845 }, + { "lat": 40.7536372, "lon": -73.9844079 }, + { "lat": 40.7536301, "lon": -73.9843909 }, + { "lat": 40.7536106, "lon": -73.9844052 }, + { "lat": 40.7536529, "lon": -73.9845059 }, + { "lat": 40.7537637, "lon": -73.9844236 }, + { "lat": 40.7537662, "lon": -73.9844220 }, + { "lat": 40.7538847, "lon": -73.9843345 }, + { "lat": 40.7538870, "lon": -73.9843333 }, + { "lat": 40.7539011, "lon": -73.9843670 }, + { "lat": 40.7537756, "lon": -73.9844590 }, + { "lat": 40.7536667, "lon": -73.9845387 }, + { "lat": 40.7536984, "lon": -73.9846141 }, + { "lat": 40.7536636, "lon": -73.9846396 }, + { "lat": 40.7536017, "lon": -73.9844924 }, + { "lat": 40.7535905, "lon": -73.9845006 }, + { "lat": 40.7535751, "lon": -73.9844637 }, + { "lat": 40.7535862, "lon": -73.9844555 }, + { "lat": 40.7535758, "lon": -73.9844307 }, + { "lat": 40.7535673, "lon": -73.9844105 }, + { "lat": 40.7535565, "lon": -73.9843847 }, + { "lat": 40.7535457, "lon": -73.9843590 }, + { "lat": 40.7535345, "lon": -73.9843672 }, + { "lat": 40.7535169, "lon": -73.9843252 }, + { "lat": 40.7535283, "lon": -73.9843168 }, + { "lat": 40.7535174, "lon": -73.9842913 }, + { "lat": 40.7535060, "lon": -73.9842995 }, + { "lat": 40.7534858, "lon": -73.9842515 }, + { "lat": 40.7534970, "lon": -73.9842431 }, + { "lat": 40.7534862, "lon": -73.9842175 }, + { "lat": 40.7534750, "lon": -73.9842257 }, + { "lat": 40.7534555, "lon": -73.9841793 }, + { "lat": 40.7534667, "lon": -73.9841710 }, + { "lat": 40.7534560, "lon": -73.9841454 }, + { "lat": 40.7534367, "lon": -73.9840994 }, + { "lat": 40.7534269, "lon": -73.9840761 }, + { "lat": 40.7534058, "lon": -73.9840916 }, + { "lat": 40.7533814, "lon": -73.9841094 }, + { "lat": 40.7533603, "lon": -73.9841249 }, + { "lat": 40.7533355, "lon": -73.9840659 }, + { "lat": 40.7533566, "lon": -73.9840505 }, + { "lat": 40.7533810, "lon": -73.9840326 }, + { "lat": 40.7534021, "lon": -73.9840172 }, + { "lat": 40.7533923, "lon": -73.9839939 }, + { "lat": 40.7533736, "lon": -73.9839493 }, + { "lat": 40.7533624, "lon": -73.9839223 }, + { "lat": 40.7533512, "lon": -73.9839306 }, + { "lat": 40.7533298, "lon": -73.9838800 }, + { "lat": 40.7533410, "lon": -73.9838717 }, + { "lat": 40.7533297, "lon": -73.9838447 }, + { "lat": 40.7533184, "lon": -73.9838530 }, + { "lat": 40.7532980, "lon": -73.9838042 }, + { "lat": 40.7533092, "lon": -73.9837960 }, + { "lat": 40.7532979, "lon": -73.9837690 }, + { "lat": 40.7532786, "lon": -73.9837230 }, + { "lat": 40.7532679, "lon": -73.9836974 }, + { "lat": 40.7532566, "lon": -73.9837056 }, + { "lat": 40.7532392, "lon": -73.9836637 }, + { "lat": 40.7532505, "lon": -73.9836553 }, + { "lat": 40.7532396, "lon": -73.9836298 }, + { "lat": 40.7532284, "lon": -73.9836381 }, + { "lat": 40.7532082, "lon": -73.9835899 }, + { "lat": 40.7532193, "lon": -73.9835818 }, + { "lat": 40.7532086, "lon": -73.9835562 }, + { "lat": 40.7531973, "lon": -73.9835644 }, + { "lat": 40.7531779, "lon": -73.9835181 }, + { "lat": 40.7531891, "lon": -73.9835099 }, + { "lat": 40.7531783, "lon": -73.9834843 }, + { "lat": 40.7531626, "lon": -73.9834468 }, + { "lat": 40.7531347, "lon": -73.9833806 }, + { "lat": 40.7531271, "lon": -73.9833862 }, + { "lat": 40.7531097, "lon": -73.9833448 }, + { "lat": 40.7531335, "lon": -73.9833273 }, + { "lat": 40.7531598, "lon": -73.9833081 }, + { "lat": 40.7531772, "lon": -73.9833495 }, + { "lat": 40.7531696, "lon": -73.9833551 }, + { "lat": 40.7531974, "lon": -73.9834214 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073807, + "bounds": { + "minlat": 40.7538260, + "minlon": -73.9844038, + "maxlat": 40.7542175, + "maxlon": -73.9839600 + }, + "nodes": [ + 6593121183, + 6593121180, + 6593121181, + 9590209951, + 6593121178, + 9590209952, + 6593123537, + 6593121179, + 6593121176, + 6593121177, + 6593121174, + 6593121175, + 6593121172, + 6593121173, + 6593121170, + 6593121171, + 6593121168, + 6593121169, + 6593121166, + 6593121167, + 6593121164, + 6593121165, + 6593121162, + 6593121163, + 6593121160, + 6593121161, + 6593121158, + 6593121159, + 6593121156, + 6593121157, + 6593121154, + 6593121155, + 6593121152, + 6593121153, + 6593121150, + 6593121151, + 6593121148, + 6593121149, + 6593121146, + 6593121147, + 6593121144, + 6593121134, + 8375523277, + 6593121248, + 9590209946, + 6593121245, + 6593121259, + 6593121260, + 6593121256, + 6593121145, + 6593121142, + 6593121143, + 6593121254, + 6593121251, + 6593121250, + 6593121247, + 8375523280, + 6593121140, + 6593121141, + 6593121138, + 6593121139, + 6593121136, + 6593121137, + 6593121183 + ], + "geometry": [ + { "lat": 40.7539011, "lon": -73.9843670 }, + { "lat": 40.7538870, "lon": -73.9843333 }, + { "lat": 40.7538448, "lon": -73.9842328 }, + { "lat": 40.7538355, "lon": -73.9842096 }, + { "lat": 40.7538260, "lon": -73.9841858 }, + { "lat": 40.7538471, "lon": -73.9841701 }, + { "lat": 40.7538740, "lon": -73.9841500 }, + { "lat": 40.7539392, "lon": -73.9841014 }, + { "lat": 40.7539415, "lon": -73.9841116 }, + { "lat": 40.7539462, "lon": -73.9841250 }, + { "lat": 40.7539508, "lon": -73.9841327 }, + { "lat": 40.7539589, "lon": -73.9841423 }, + { "lat": 40.7539560, "lon": -73.9841484 }, + { "lat": 40.7539555, "lon": -73.9841518 }, + { "lat": 40.7539561, "lon": -73.9841572 }, + { "lat": 40.7539583, "lon": -73.9841615 }, + { "lat": 40.7539619, "lon": -73.9841652 }, + { "lat": 40.7539677, "lon": -73.9841656 }, + { "lat": 40.7539717, "lon": -73.9841631 }, + { "lat": 40.7539740, "lon": -73.9841585 }, + { "lat": 40.7539749, "lon": -73.9841523 }, + { "lat": 40.7539824, "lon": -73.9841540 }, + { "lat": 40.7539901, "lon": -73.9841539 }, + { "lat": 40.7539997, "lon": -73.9841511 }, + { "lat": 40.7540076, "lon": -73.9841460 }, + { "lat": 40.7540147, "lon": -73.9841382 }, + { "lat": 40.7540218, "lon": -73.9841266 }, + { "lat": 40.7540256, "lon": -73.9841175 }, + { "lat": 40.7540304, "lon": -73.9841195 }, + { "lat": 40.7540320, "lon": -73.9841195 }, + { "lat": 40.7540361, "lon": -73.9841183 }, + { "lat": 40.7540395, "lon": -73.9841147 }, + { "lat": 40.7540415, "lon": -73.9841090 }, + { "lat": 40.7540409, "lon": -73.9841025 }, + { "lat": 40.7540384, "lon": -73.9840974 }, + { "lat": 40.7540343, "lon": -73.9840938 }, + { "lat": 40.7540297, "lon": -73.9840944 }, + { "lat": 40.7540293, "lon": -73.9840828 }, + { "lat": 40.7540270, "lon": -73.9840687 }, + { "lat": 40.7540220, "lon": -73.9840556 }, + { "lat": 40.7540155, "lon": -73.9840452 }, + { "lat": 40.7540813, "lon": -73.9839965 }, + { "lat": 40.7541048, "lon": -73.9839791 }, + { "lat": 40.7541306, "lon": -73.9839600 }, + { "lat": 40.7541426, "lon": -73.9839887 }, + { "lat": 40.7541510, "lon": -73.9840086 }, + { "lat": 40.7541933, "lon": -73.9841092 }, + { "lat": 40.7542066, "lon": -73.9841434 }, + { "lat": 40.7542175, "lon": -73.9841694 }, + { "lat": 40.7541823, "lon": -73.9841952 }, + { "lat": 40.7541714, "lon": -73.9841692 }, + { "lat": 40.7541537, "lon": -73.9841821 }, + { "lat": 40.7541648, "lon": -73.9842084 }, + { "lat": 40.7541744, "lon": -73.9842314 }, + { "lat": 40.7541854, "lon": -73.9842576 }, + { "lat": 40.7541684, "lon": -73.9842700 }, + { "lat": 40.7540853, "lon": -73.9843312 }, + { "lat": 40.7540003, "lon": -73.9843937 }, + { "lat": 40.7539857, "lon": -73.9844038 }, + { "lat": 40.7539747, "lon": -73.9843776 }, + { "lat": 40.7539650, "lon": -73.9843546 }, + { "lat": 40.7539540, "lon": -73.9843283 }, + { "lat": 40.7539364, "lon": -73.9843412 }, + { "lat": 40.7539011, "lon": -73.9843670 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073808, + "bounds": { + "minlat": 40.7538658, + "minlon": -73.9841500, + "maxlat": 40.7540813, + "maxlon": -73.9839381 + }, + "nodes": [ + 6593121144, + 6593121134, + 6593121135, + 6593121132, + 6593121133, + 6593121130, + 6593121131, + 6593121128, + 6593121129, + 6593121126, + 6593121127, + 6593123541, + 6593123542, + 6593123539, + 6593123540, + 6593123537, + 6593121179, + 6593123538, + 6593123535, + 6593123536, + 6593123533, + 6593123534, + 6593123531, + 6593123532, + 6593123529, + 6593123530, + 6593123527, + 6593123528, + 6593123525, + 6593123526, + 6593123523, + 6593123524, + 6593123521, + 6593123522, + 6593123519, + 6593123520, + 6593123517, + 6593123518, + 6593123515, + 6593123516, + 6593123513, + 6593121144 + ], + "geometry": [ + { "lat": 40.7540155, "lon": -73.9840452 }, + { "lat": 40.7540813, "lon": -73.9839965 }, + { "lat": 40.7540565, "lon": -73.9839708 }, + { "lat": 40.7540297, "lon": -73.9839511 }, + { "lat": 40.7540094, "lon": -73.9839413 }, + { "lat": 40.7539916, "lon": -73.9839381 }, + { "lat": 40.7539693, "lon": -73.9839381 }, + { "lat": 40.7539431, "lon": -73.9839459 }, + { "lat": 40.7539168, "lon": -73.9839616 }, + { "lat": 40.7538985, "lon": -73.9839806 }, + { "lat": 40.7538836, "lon": -73.9840054 }, + { "lat": 40.7538732, "lon": -73.9840316 }, + { "lat": 40.7538673, "lon": -73.9840603 }, + { "lat": 40.7538658, "lon": -73.9840917 }, + { "lat": 40.7538678, "lon": -73.9841198 }, + { "lat": 40.7538740, "lon": -73.9841500 }, + { "lat": 40.7539392, "lon": -73.9841014 }, + { "lat": 40.7539394, "lon": -73.9840930 }, + { "lat": 40.7539398, "lon": -73.9840828 }, + { "lat": 40.7539342, "lon": -73.9840816 }, + { "lat": 40.7539306, "lon": -73.9840775 }, + { "lat": 40.7539291, "lon": -73.9840726 }, + { "lat": 40.7539285, "lon": -73.9840657 }, + { "lat": 40.7539307, "lon": -73.9840603 }, + { "lat": 40.7539347, "lon": -73.9840569 }, + { "lat": 40.7539408, "lon": -73.9840559 }, + { "lat": 40.7539453, "lon": -73.9840580 }, + { "lat": 40.7539500, "lon": -73.9840486 }, + { "lat": 40.7539576, "lon": -73.9840391 }, + { "lat": 40.7539660, "lon": -73.9840327 }, + { "lat": 40.7539752, "lon": -73.9840290 }, + { "lat": 40.7539838, "lon": -73.9840279 }, + { "lat": 40.7539932, "lon": -73.9840291 }, + { "lat": 40.7539945, "lon": -73.9840217 }, + { "lat": 40.7539983, "lon": -73.9840171 }, + { "lat": 40.7540030, "lon": -73.9840151 }, + { "lat": 40.7540077, "lon": -73.9840164 }, + { "lat": 40.7540120, "lon": -73.9840212 }, + { "lat": 40.7540133, "lon": -73.9840271 }, + { "lat": 40.7540124, "lon": -73.9840336 }, + { "lat": 40.7540100, "lon": -73.9840388 }, + { "lat": 40.7540155, "lon": -73.9840452 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073809, + "bounds": { + "minlat": 40.7544702, + "minlon": -73.9841081, + "maxlat": 40.7546108, + "maxlon": -73.9838152 + }, + "nodes": [ + 6593121207, + 6593121208, + 6593121205, + 6593121206, + 8375523271, + 6593121203, + 6593121204, + 6593121201, + 6593121202, + 6593121199, + 6593122246, + 6593121200, + 6593121197, + 6593121198, + 6593121195, + 6593121196, + 8375523270, + 6593121194, + 6593121207 + ], + "geometry": [ + { "lat": 40.7545109, "lon": -73.9841081 }, + { "lat": 40.7544702, "lon": -73.9840130 }, + { "lat": 40.7544934, "lon": -73.9839950 }, + { "lat": 40.7544981, "lon": -73.9839881 }, + { "lat": 40.7545036, "lon": -73.9839588 }, + { "lat": 40.7545127, "lon": -73.9839165 }, + { "lat": 40.7545118, "lon": -73.9839058 }, + { "lat": 40.7544974, "lon": -73.9838711 }, + { "lat": 40.7545729, "lon": -73.9838152 }, + { "lat": 40.7545855, "lon": -73.9838453 }, + { "lat": 40.7545762, "lon": -73.9838520 }, + { "lat": 40.7545667, "lon": -73.9838589 }, + { "lat": 40.7545635, "lon": -73.9838613 }, + { "lat": 40.7545831, "lon": -73.9839061 }, + { "lat": 40.7545781, "lon": -73.9839097 }, + { "lat": 40.7546108, "lon": -73.9839872 }, + { "lat": 40.7546061, "lon": -73.9840091 }, + { "lat": 40.7545982, "lon": -73.9840453 }, + { "lat": 40.7545109, "lon": -73.9841081 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073810, + "bounds": { + "minlat": 40.7536971, + "minlon": -73.9828954, + "maxlat": 40.7540081, + "maxlon": -73.9826463 + }, + "nodes": [ + 6593121090, + 6593121192, + 6593121193, + 6593122170, + 6593121190, + 6593121191, + 6593121188, + 6593121189, + 9590209939, + 6593121186, + 6593121187, + 6593121184, + 6593121185, + 9590209955, + 6593121091, + 6593121090 + ], + "geometry": [ + { "lat": 40.7536971, "lon": -73.9828706 }, + { "lat": 40.7538118, "lon": -73.9827866 }, + { "lat": 40.7537926, "lon": -73.9827409 }, + { "lat": 40.7538043, "lon": -73.9827323 }, + { "lat": 40.7538146, "lon": -73.9827248 }, + { "lat": 40.7538338, "lon": -73.9827705 }, + { "lat": 40.7539190, "lon": -73.9827082 }, + { "lat": 40.7538998, "lon": -73.9826624 }, + { "lat": 40.7539109, "lon": -73.9826543 }, + { "lat": 40.7539218, "lon": -73.9826463 }, + { "lat": 40.7539410, "lon": -73.9826920 }, + { "lat": 40.7539973, "lon": -73.9826509 }, + { "lat": 40.7540081, "lon": -73.9826764 }, + { "lat": 40.7539412, "lon": -73.9827261 }, + { "lat": 40.7537077, "lon": -73.9828954 }, + { "lat": 40.7536971, "lon": -73.9828706 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073811, + "bounds": { + "minlat": 40.7538863, + "minlon": -73.9843031, + "maxlat": 40.7544686, + "maxlon": -73.9826316 + }, + "nodes": [ + 6593121336, + 6593121333, + 6593121334, + 6593121331, + 6593121332, + 6593121329, + 6593121330, + 9590209943, + 6593121327, + 6593121328, + 6593121325, + 6593121326, + 6593121345, + 9354852639, + 6593121348, + 6593121349, + 6593121352, + 6593121323, + 6593121354, + 6593121353, + 6593121358, + 6593121357, + 6593121362, + 6593121361, + 6593121324, + 6593121363, + 6593121366, + 6593121321, + 6593121322, + 6593121319, + 6593121320, + 6593121317, + 6593121318, + 6593121315, + 6593121316, + 6593121313, + 6593121314, + 6593121311, + 6593121312, + 6593121309, + 6593121310, + 6593121307, + 6593121308, + 6593121305, + 6593121306, + 6593121303, + 6593121304, + 6593121301, + 6593121302, + 6593121299, + 6593121300, + 6593121297, + 6593121298, + 6593121295, + 6593121296, + 6593121293, + 6593121294, + 6593121465, + 6593121462, + 6593121943, + 6593121942, + 6593520153, + 6593520155, + 6593520154, + 6593121291, + 9590209956, + 6593122030, + 6593121289, + 6593121290, + 6593121287, + 6593121288, + 6593121285, + 6593121286, + 6593121283, + 6593121284, + 6593121281, + 6593121282, + 6593121279, + 6593121280, + 6593121277, + 6593121278, + 6593121275, + 6593121276, + 6593121273, + 6593121274, + 9590209945, + 6593121271, + 6593121272, + 6593121269, + 6593121270, + 6593121267, + 6593121268, + 6593121265, + 6593121266, + 6593121263, + 6593121264, + 6593121261, + 6593121262, + 6593121259, + 6593121260, + 6593121257, + 6593121258, + 6593121255, + 6593121256, + 6593121253, + 6593121254, + 6593121251, + 6593121252, + 6593121249, + 6593121250, + 6593121247, + 6593121336 + ], + "geometry": [ + { "lat": 40.7541828, "lon": -73.9843031 }, + { "lat": 40.7544579, "lon": -73.9841017 }, + { "lat": 40.7544123, "lon": -73.9839930 }, + { "lat": 40.7544424, "lon": -73.9839708 }, + { "lat": 40.7544465, "lon": -73.9839678 }, + { "lat": 40.7544592, "lon": -73.9839576 }, + { "lat": 40.7544622, "lon": -73.9839527 }, + { "lat": 40.7544644, "lon": -73.9839432 }, + { "lat": 40.7544686, "lon": -73.9839252 }, + { "lat": 40.7544676, "lon": -73.9839183 }, + { "lat": 40.7544572, "lon": -73.9838936 }, + { "lat": 40.7544538, "lon": -73.9838878 }, + { "lat": 40.7544214, "lon": -73.9838107 }, + { "lat": 40.7544143, "lon": -73.9837938 }, + { "lat": 40.7544023, "lon": -73.9837651 }, + { "lat": 40.7543017, "lon": -73.9835258 }, + { "lat": 40.7542824, "lon": -73.9834798 }, + { "lat": 40.7542727, "lon": -73.9834566 }, + { "lat": 40.7542938, "lon": -73.9834411 }, + { "lat": 40.7543181, "lon": -73.9834233 }, + { "lat": 40.7543392, "lon": -73.9834078 }, + { "lat": 40.7543145, "lon": -73.9833489 }, + { "lat": 40.7542934, "lon": -73.9833643 }, + { "lat": 40.7542690, "lon": -73.9833822 }, + { "lat": 40.7542479, "lon": -73.9833976 }, + { "lat": 40.7542381, "lon": -73.9833744 }, + { "lat": 40.7542194, "lon": -73.9833297 }, + { "lat": 40.7542081, "lon": -73.9833029 }, + { "lat": 40.7542192, "lon": -73.9832947 }, + { "lat": 40.7541980, "lon": -73.9832439 }, + { "lat": 40.7541868, "lon": -73.9832521 }, + { "lat": 40.7541755, "lon": -73.9832252 }, + { "lat": 40.7541867, "lon": -73.9832169 }, + { "lat": 40.7541662, "lon": -73.9831682 }, + { "lat": 40.7541550, "lon": -73.9831764 }, + { "lat": 40.7541436, "lon": -73.9831494 }, + { "lat": 40.7541545, "lon": -73.9831415 }, + { "lat": 40.7541352, "lon": -73.9830955 }, + { "lat": 40.7541243, "lon": -73.9831035 }, + { "lat": 40.7541135, "lon": -73.9830779 }, + { "lat": 40.7541248, "lon": -73.9830696 }, + { "lat": 40.7541071, "lon": -73.9830279 }, + { "lat": 40.7540957, "lon": -73.9830361 }, + { "lat": 40.7540851, "lon": -73.9830105 }, + { "lat": 40.7540963, "lon": -73.9830023 }, + { "lat": 40.7540762, "lon": -73.9829541 }, + { "lat": 40.7540650, "lon": -73.9829623 }, + { "lat": 40.7540542, "lon": -73.9829367 }, + { "lat": 40.7540655, "lon": -73.9829285 }, + { "lat": 40.7540460, "lon": -73.9828822 }, + { "lat": 40.7540348, "lon": -73.9828904 }, + { "lat": 40.7540240, "lon": -73.9828648 }, + { "lat": 40.7541275, "lon": -73.9827901 }, + { "lat": 40.7541114, "lon": -73.9827521 }, + { "lat": 40.7540083, "lon": -73.9828273 }, + { "lat": 40.7539805, "lon": -73.9827610 }, + { "lat": 40.7540083, "lon": -73.9827406 }, + { "lat": 40.7539979, "lon": -73.9827148 }, + { "lat": 40.7540825, "lon": -73.9826524 }, + { "lat": 40.7540738, "lon": -73.9826316 }, + { "lat": 40.7540091, "lon": -73.9826789 }, + { "lat": 40.7540109, "lon": -73.9826833 }, + { "lat": 40.7539730, "lon": -73.9827115 }, + { "lat": 40.7539769, "lon": -73.9827230 }, + { "lat": 40.7539749, "lon": -73.9827247 }, + { "lat": 40.7539487, "lon": -73.9827441 }, + { "lat": 40.7539249, "lon": -73.9827617 }, + { "lat": 40.7539380, "lon": -73.9827921 }, + { "lat": 40.7539457, "lon": -73.9827865 }, + { "lat": 40.7539735, "lon": -73.9828528 }, + { "lat": 40.7539101, "lon": -73.9828992 }, + { "lat": 40.7538997, "lon": -73.9828743 }, + { "lat": 40.7538863, "lon": -73.9828841 }, + { "lat": 40.7539130, "lon": -73.9829461 }, + { "lat": 40.7539893, "lon": -73.9828902 }, + { "lat": 40.7540895, "lon": -73.9831289 }, + { "lat": 40.7540132, "lon": -73.9831848 }, + { "lat": 40.7540326, "lon": -73.9832307 }, + { "lat": 40.7541089, "lon": -73.9831749 }, + { "lat": 40.7542477, "lon": -73.9835053 }, + { "lat": 40.7541714, "lon": -73.9835611 }, + { "lat": 40.7541907, "lon": -73.9836071 }, + { "lat": 40.7542670, "lon": -73.9835512 }, + { "lat": 40.7543675, "lon": -73.9837906 }, + { "lat": 40.7542912, "lon": -73.9838464 }, + { "lat": 40.7543027, "lon": -73.9838738 }, + { "lat": 40.7543103, "lon": -73.9838920 }, + { "lat": 40.7543866, "lon": -73.9838361 }, + { "lat": 40.7544289, "lon": -73.9839367 }, + { "lat": 40.7543526, "lon": -73.9839926 }, + { "lat": 40.7543221, "lon": -73.9839200 }, + { "lat": 40.7542913, "lon": -73.9839427 }, + { "lat": 40.7542737, "lon": -73.9839556 }, + { "lat": 40.7542931, "lon": -73.9840018 }, + { "lat": 40.7543107, "lon": -73.9839889 }, + { "lat": 40.7543217, "lon": -73.9840151 }, + { "lat": 40.7543041, "lon": -73.9840280 }, + { "lat": 40.7542735, "lon": -73.9840504 }, + { "lat": 40.7541933, "lon": -73.9841092 }, + { "lat": 40.7542066, "lon": -73.9841434 }, + { "lat": 40.7543838, "lon": -73.9840137 }, + { "lat": 40.7544155, "lon": -73.9840892 }, + { "lat": 40.7542383, "lon": -73.9842189 }, + { "lat": 40.7542175, "lon": -73.9841694 }, + { "lat": 40.7541824, "lon": -73.9841955 }, + { "lat": 40.7541648, "lon": -73.9842084 }, + { "lat": 40.7541744, "lon": -73.9842314 }, + { "lat": 40.7541920, "lon": -73.9842185 }, + { "lat": 40.7542031, "lon": -73.9842447 }, + { "lat": 40.7541854, "lon": -73.9842576 }, + { "lat": 40.7541684, "lon": -73.9842700 }, + { "lat": 40.7541828, "lon": -73.9843031 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073812, + "bounds": { + "minlat": 40.7536813, + "minlon": -73.9840504, + "maxlat": 40.7543221, + "maxlon": -73.9827997 + }, + "nodes": [ + 6593121248, + 9590209946, + 6593121245, + 6593121246, + 6593121262, + 6593121261, + 6593121266, + 6593121265, + 6593121243, + 6593121244, + 6593121268, + 6593121267, + 6593121271, + 9590209945, + 6593121274, + 6593121241, + 6593121242, + 6593121239, + 6593121240, + 6593121237, + 6593121238, + 6593121235, + 6593121236, + 6593121233, + 6593121234, + 6593121231, + 6593121232, + 6593121275, + 6593121278, + 6593121279, + 6593121282, + 6593121229, + 6593121230, + 6593121227, + 6593121228, + 6593121225, + 6593121226, + 6593121223, + 6593121224, + 6593121221, + 6593121222, + 6593121219, + 6593121220, + 6593121283, + 6593121286, + 6593121217, + 6593121089, + 6593121218, + 6593121215, + 6593121216, + 6593121213, + 6593121214, + 6593121211, + 6593121212, + 6593121209, + 6593121210, + 6593121248 + ], + "geometry": [ + { "lat": 40.7541306, "lon": -73.9839600 }, + { "lat": 40.7541426, "lon": -73.9839887 }, + { "lat": 40.7541510, "lon": -73.9840086 }, + { "lat": 40.7542313, "lon": -73.9839499 }, + { "lat": 40.7542735, "lon": -73.9840504 }, + { "lat": 40.7543041, "lon": -73.9840280 }, + { "lat": 40.7542931, "lon": -73.9840018 }, + { "lat": 40.7542737, "lon": -73.9839556 }, + { "lat": 40.7542626, "lon": -73.9839294 }, + { "lat": 40.7542803, "lon": -73.9839165 }, + { "lat": 40.7542913, "lon": -73.9839427 }, + { "lat": 40.7543221, "lon": -73.9839200 }, + { "lat": 40.7543103, "lon": -73.9838920 }, + { "lat": 40.7543027, "lon": -73.9838738 }, + { "lat": 40.7542912, "lon": -73.9838464 }, + { "lat": 40.7542804, "lon": -73.9838207 }, + { "lat": 40.7542933, "lon": -73.9838113 }, + { "lat": 40.7542755, "lon": -73.9837695 }, + { "lat": 40.7542625, "lon": -73.9837789 }, + { "lat": 40.7542519, "lon": -73.9837532 }, + { "lat": 40.7542648, "lon": -73.9837438 }, + { "lat": 40.7542446, "lon": -73.9836954 }, + { "lat": 40.7542317, "lon": -73.9837049 }, + { "lat": 40.7542209, "lon": -73.9836792 }, + { "lat": 40.7542338, "lon": -73.9836697 }, + { "lat": 40.7542143, "lon": -73.9836233 }, + { "lat": 40.7542014, "lon": -73.9836328 }, + { "lat": 40.7541907, "lon": -73.9836071 }, + { "lat": 40.7541714, "lon": -73.9835611 }, + { "lat": 40.7540326, "lon": -73.9832307 }, + { "lat": 40.7540132, "lon": -73.9831848 }, + { "lat": 40.7540025, "lon": -73.9831592 }, + { "lat": 40.7540153, "lon": -73.9831497 }, + { "lat": 40.7539976, "lon": -73.9831080 }, + { "lat": 40.7539846, "lon": -73.9831174 }, + { "lat": 40.7539740, "lon": -73.9830918 }, + { "lat": 40.7539869, "lon": -73.9830824 }, + { "lat": 40.7539668, "lon": -73.9830342 }, + { "lat": 40.7539539, "lon": -73.9830436 }, + { "lat": 40.7539432, "lon": -73.9830180 }, + { "lat": 40.7539560, "lon": -73.9830086 }, + { "lat": 40.7539366, "lon": -73.9829623 }, + { "lat": 40.7539237, "lon": -73.9829717 }, + { "lat": 40.7539130, "lon": -73.9829461 }, + { "lat": 40.7538863, "lon": -73.9828841 }, + { "lat": 40.7538509, "lon": -73.9827997 }, + { "lat": 40.7537073, "lon": -73.9829029 }, + { "lat": 40.7536813, "lon": -73.9829236 }, + { "lat": 40.7536889, "lon": -73.9829370 }, + { "lat": 40.7536928, "lon": -73.9829403 }, + { "lat": 40.7536981, "lon": -73.9829421 }, + { "lat": 40.7537048, "lon": -73.9829424 }, + { "lat": 40.7537107, "lon": -73.9829414 }, + { "lat": 40.7537172, "lon": -73.9829378 }, + { "lat": 40.7538350, "lon": -73.9828504 }, + { "lat": 40.7542617, "lon": -73.9838641 }, + { "lat": 40.7541306, "lon": -73.9839600 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073814, + "bounds": { + "minlat": 40.7542194, + "minlon": -73.9838107, + "maxlat": 40.7545281, + "maxlon": -73.9832635 + }, + "nodes": [ + 6593121376, + 6593121373, + 6593121374, + 6593121371, + 6593121372, + 6593122250, + 6593121369, + 6593121370, + 6593121367, + 6593121368, + 6593121365, + 6593121366, + 6593121363, + 6593121364, + 6593121361, + 6593121362, + 6593121359, + 6593121360, + 6593121357, + 6593121358, + 6593121355, + 6593121356, + 6593121353, + 6593121354, + 6593121351, + 6593121352, + 6593121349, + 6593121350, + 6593121347, + 6593121348, + 9354852639, + 6593121345, + 6593121346, + 6593121343, + 6593121344, + 6593121341, + 6593121342, + 6593121339, + 8375523274, + 6593121340, + 6593121337, + 6593121338, + 6593121335, + 6593121376 + ], + "geometry": [ + { "lat": 40.7544795, "lon": -73.9836971 }, + { "lat": 40.7543740, "lon": -73.9834458 }, + { "lat": 40.7543954, "lon": -73.9834301 }, + { "lat": 40.7543938, "lon": -73.9834263 }, + { "lat": 40.7543999, "lon": -73.9834215 }, + { "lat": 40.7543696, "lon": -73.9833489 }, + { "lat": 40.7543376, "lon": -73.9832724 }, + { "lat": 40.7543317, "lon": -73.9832765 }, + { "lat": 40.7543301, "lon": -73.9832726 }, + { "lat": 40.7543175, "lon": -73.9832818 }, + { "lat": 40.7543099, "lon": -73.9832635 }, + { "lat": 40.7542194, "lon": -73.9833297 }, + { "lat": 40.7542381, "lon": -73.9833744 }, + { "lat": 40.7542592, "lon": -73.9833589 }, + { "lat": 40.7542690, "lon": -73.9833822 }, + { "lat": 40.7542934, "lon": -73.9833643 }, + { "lat": 40.7542836, "lon": -73.9833411 }, + { "lat": 40.7543047, "lon": -73.9833256 }, + { "lat": 40.7543145, "lon": -73.9833489 }, + { "lat": 40.7543392, "lon": -73.9834078 }, + { "lat": 40.7543490, "lon": -73.9834311 }, + { "lat": 40.7543279, "lon": -73.9834465 }, + { "lat": 40.7543181, "lon": -73.9834233 }, + { "lat": 40.7542938, "lon": -73.9834411 }, + { "lat": 40.7543035, "lon": -73.9834644 }, + { "lat": 40.7542824, "lon": -73.9834798 }, + { "lat": 40.7543017, "lon": -73.9835258 }, + { "lat": 40.7543683, "lon": -73.9834770 }, + { "lat": 40.7544689, "lon": -73.9837164 }, + { "lat": 40.7544023, "lon": -73.9837651 }, + { "lat": 40.7544143, "lon": -73.9837938 }, + { "lat": 40.7544214, "lon": -73.9838107 }, + { "lat": 40.7544877, "lon": -73.9837622 }, + { "lat": 40.7544903, "lon": -73.9837682 }, + { "lat": 40.7545250, "lon": -73.9837428 }, + { "lat": 40.7545240, "lon": -73.9837404 }, + { "lat": 40.7545230, "lon": -73.9837380 }, + { "lat": 40.7545281, "lon": -73.9837341 }, + { "lat": 40.7545214, "lon": -73.9837175 }, + { "lat": 40.7545073, "lon": -73.9836831 }, + { "lat": 40.7545018, "lon": -73.9836871 }, + { "lat": 40.7545007, "lon": -73.9836846 }, + { "lat": 40.7544997, "lon": -73.9836822 }, + { "lat": 40.7544795, "lon": -73.9836971 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702073827, + "bounds": { + "minlat": 40.7472832, + "minlon": -73.9547756, + "maxlat": 40.7479119, + "maxlon": -73.9545758 + }, + "nodes": [ + 6593067855, + 13807659452, + 13807659444, + 13807659458, + 11191795436, + 2802423160 + ], + "geometry": [ + { "lat": 40.7479119, "lon": -73.9545758 }, + { "lat": 40.7478837, "lon": -73.9545848 }, + { "lat": 40.7476037, "lon": -73.9546738 }, + { "lat": 40.7473987, "lon": -73.9547389 }, + { "lat": 40.7473474, "lon": -73.9547552 }, + { "lat": 40.7472832, "lon": -73.9547756 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702074222, + "bounds": { + "minlat": 40.7456740, + "minlon": -73.9540905, + "maxlat": 40.7459875, + "maxlon": -73.9539911 + }, + "nodes": [ + 6593120160, + 11211159858, + 6593120161 + ], + "geometry": [ + { "lat": 40.7459875, "lon": -73.9539911 }, + { "lat": 40.7457371, "lon": -73.9540705 }, + { "lat": 40.7456740, "lon": -73.9540905 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702074223, + "bounds": { + "minlat": 40.7459875, + "minlon": -73.9541713, + "maxlat": 40.7460230, + "maxlon": -73.9539911 + }, + "nodes": [ + 5481857870, + 6593120160 + ], + "geometry": [ + { "lat": 40.7460230, "lon": -73.9541713 }, + { "lat": 40.7459875, "lon": -73.9539911 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702075844, + "bounds": { + "minlat": 40.7428324, + "minlon": -73.9532100, + "maxlat": 40.7428629, + "maxlon": -73.9530572 + }, + "nodes": [ + 6593131310, + 6593131311 + ], + "geometry": [ + { "lat": 40.7428324, "lon": -73.9530572 }, + { "lat": 40.7428629, "lon": -73.9532100 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702075883, + "bounds": { + "minlat": 40.7544591, + "minlon": -73.9839969, + "maxlat": 40.7545000, + "maxlon": -73.9838785 + }, + "nodes": [ + 6593143192, + 6593143191, + 6593143190, + 9590209942, + 6593143189, + 6593143188, + 6593143187, + 6593143186, + 6593143185, + 6593143184, + 8375523272, + 6593143183, + 6593143182, + 6593143181, + 6593143192 + ], + "geometry": [ + { "lat": 40.7544646, "lon": -73.9839969 }, + { "lat": 40.7544843, "lon": -73.9839823 }, + { "lat": 40.7544867, "lon": -73.9839781 }, + { "lat": 40.7544919, "lon": -73.9839540 }, + { "lat": 40.7545000, "lon": -73.9839162 }, + { "lat": 40.7544990, "lon": -73.9839085 }, + { "lat": 40.7544865, "lon": -73.9838785 }, + { "lat": 40.7544745, "lon": -73.9838866 }, + { "lat": 40.7544853, "lon": -73.9839139 }, + { "lat": 40.7544865, "lon": -73.9839230 }, + { "lat": 40.7544806, "lon": -73.9839493 }, + { "lat": 40.7544764, "lon": -73.9839679 }, + { "lat": 40.7544732, "lon": -73.9839729 }, + { "lat": 40.7544591, "lon": -73.9839846 }, + { "lat": 40.7544646, "lon": -73.9839969 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702076082, + "bounds": { + "minlat": 40.7433364, + "minlon": -73.9528211, + "maxlat": 40.7434075, + "maxlon": -73.9524457 + }, + "nodes": [ + 6593110082, + 6593110083 + ], + "geometry": [ + { "lat": 40.7434075, "lon": -73.9528211 }, + { "lat": 40.7433364, "lon": -73.9524457 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702076083, + "bounds": { + "minlat": 40.7431637, + "minlon": -73.9525012, + "maxlat": 40.7433364, + "maxlon": -73.9524457 + }, + "nodes": [ + 6593110083, + 11622964712, + 5481866280 + ], + "geometry": [ + { "lat": 40.7433364, "lon": -73.9524457 }, + { "lat": 40.7432177, "lon": -73.9524838 }, + { "lat": 40.7431637, "lon": -73.9525012 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702076755, + "bounds": { + "minlat": 40.7424505, + "minlon": -73.9540991, + "maxlat": 40.7427367, + "maxlon": -73.9539828 + }, + "nodes": [ + 6795905097, + 13299962229, + 9179070565, + 11211160256, + 6593145588 + ], + "geometry": [ + { "lat": 40.7424505, "lon": -73.9539828 }, + { "lat": 40.7425899, "lon": -73.9540202 }, + { "lat": 40.7426248, "lon": -73.9540314 }, + { "lat": 40.7426587, "lon": -73.9540567 }, + { "lat": 40.7427367, "lon": -73.9540991 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "secondary", + "name": "Vernon Boulevard", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 702123106, + "bounds": { + "minlat": 40.7421073, + "minlon": -73.9524700, + "maxlat": 40.7424007, + "maxlon": -73.9523707 + }, + "nodes": [ + 6593516415, + 11211160246, + 6593516416 + ], + "geometry": [ + { "lat": 40.7424007, "lon": -73.9523707 }, + { "lat": 40.7423340, "lon": -73.9523933 }, + { "lat": 40.7421073, "lon": -73.9524700 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702125691, + "bounds": { + "minlat": 40.7537539, + "minlon": -73.9822891, + "maxlat": 40.7539230, + "maxlon": -73.9819246 + }, + "nodes": [ + 6593531893, + 6593121543, + 6593122125, + 6593122126, + 6593531892, + 6593531893 + ], + "geometry": [ + { "lat": 40.7538999, "lon": -73.9822891 }, + { "lat": 40.7539230, "lon": -73.9822727 }, + { "lat": 40.7537768, "lon": -73.9819246 }, + { "lat": 40.7537608, "lon": -73.9819363 }, + { "lat": 40.7537539, "lon": -73.9819414 }, + { "lat": 40.7538999, "lon": -73.9822891 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "metal" + } +}, +{ + "type": "way", + "id": 702132138, + "bounds": { + "minlat": 40.7523812, + "minlon": -73.9821981, + "maxlat": 40.7525954, + "maxlon": -73.9818459 + }, + "nodes": [ + 6593556753, + 6593121699, + 6593121698, + 6593121697, + 6593121700, + 6593121703, + 6593121702, + 6593121701, + 6593556754, + 6593556755, + 6593121710, + 6593121709, + 6593121712, + 6593121713, + 6593122831, + 6605262911, + 6593122078, + 6593121705, + 6593121708, + 6593121707, + 6593556758, + 6593556759, + 6593556753 + ], + "geometry": [ + { "lat": 40.7525954, "lon": -73.9821508 }, + { "lat": 40.7525832, "lon": -73.9821200 }, + { "lat": 40.7525677, "lon": -73.9821314 }, + { "lat": 40.7525585, "lon": -73.9821095 }, + { "lat": 40.7525740, "lon": -73.9820981 }, + { "lat": 40.7525480, "lon": -73.9820361 }, + { "lat": 40.7525324, "lon": -73.9820474 }, + { "lat": 40.7525181, "lon": -73.9820135 }, + { "lat": 40.7525289, "lon": -73.9820056 }, + { "lat": 40.7524982, "lon": -73.9819320 }, + { "lat": 40.7524873, "lon": -73.9819400 }, + { "lat": 40.7524657, "lon": -73.9818886 }, + { "lat": 40.7524833, "lon": -73.9818758 }, + { "lat": 40.7524760, "lon": -73.9818577 }, + { "lat": 40.7524699, "lon": -73.9818459 }, + { "lat": 40.7524292, "lon": -73.9818754 }, + { "lat": 40.7523812, "lon": -73.9819104 }, + { "lat": 40.7523935, "lon": -73.9819415 }, + { "lat": 40.7524204, "lon": -73.9819218 }, + { "lat": 40.7525187, "lon": -73.9821558 }, + { "lat": 40.7525161, "lon": -73.9821577 }, + { "lat": 40.7525329, "lon": -73.9821981 }, + { "lat": 40.7525954, "lon": -73.9821508 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702196144, + "bounds": { + "minlat": 40.7537173, + "minlon": -73.9847012, + "maxlat": 40.7537474, + "maxlon": -73.9846735 + }, + "nodes": [ + 6594233015, + 6594233016, + 6594233017, + 6594233018, + 6594233015 + ], + "geometry": [ + { "lat": 40.7537474, "lon": -73.9846819 }, + { "lat": 40.7537206, "lon": -73.9847012 }, + { "lat": 40.7537173, "lon": -73.9846930 }, + { "lat": 40.7537440, "lon": -73.9846735 }, + { "lat": 40.7537474, "lon": -73.9846819 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 702228728, + "bounds": { + "minlat": 40.7399280, + "minlon": -73.9574920, + "maxlat": 40.7404088, + "maxlon": -73.9573397 + }, + "nodes": [ + 3656009587, + 12207265356, + 11211160518, + 6594493305 + ], + "geometry": [ + { "lat": 40.7404088, "lon": -73.9573397 }, + { "lat": 40.7403807, "lon": -73.9573486 }, + { "lat": 40.7403508, "lon": -73.9573581 }, + { "lat": 40.7399280, "lon": -73.9574920 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702228729, + "bounds": { + "minlat": 40.7398549, + "minlon": -73.9570869, + "maxlat": 40.7403320, + "maxlon": -73.9569455 + }, + "nodes": [ + 6594493306, + 11211160519, + 13018810282, + 6594493307 + ], + "geometry": [ + { "lat": 40.7403320, "lon": -73.9569455 }, + { "lat": 40.7402688, "lon": -73.9569642 }, + { "lat": 40.7399465, "lon": -73.9570597 }, + { "lat": 40.7398549, "lon": -73.9570869 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702228730, + "bounds": { + "minlat": 40.7398549, + "minlon": -73.9574920, + "maxlat": 40.7399280, + "maxlon": -73.9570869 + }, + "nodes": [ + 6594493305, + 6594493307 + ], + "geometry": [ + { "lat": 40.7399280, "lon": -73.9574920 }, + { "lat": 40.7398549, "lon": -73.9570869 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702230284, + "bounds": { + "minlat": 40.7403350, + "minlon": -73.9548247, + "maxlat": 40.7403396, + "maxlon": -73.9540312 + }, + "nodes": [ + 6594515849, + 11211160514, + 6594515841, + 6594504798 + ], + "geometry": [ + { "lat": 40.7403350, "lon": -73.9548247 }, + { "lat": 40.7403361, "lon": -73.9546191 }, + { "lat": 40.7403363, "lon": -73.9545907 }, + { "lat": 40.7403396, "lon": -73.9540312 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702230285, + "bounds": { + "minlat": 40.7399982, + "minlon": -73.9540714, + "maxlat": 40.7403396, + "maxlon": -73.9540312 + }, + "nodes": [ + 6594504798, + 6594504799 + ], + "geometry": [ + { "lat": 40.7403396, "lon": -73.9540312 }, + { "lat": 40.7399982, "lon": -73.9540714 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702230286, + "bounds": { + "minlat": 40.7399616, + "minlon": -73.9540714, + "maxlat": 40.7399982, + "maxlon": -73.9535672 + }, + "nodes": [ + 6594504799, + 6594504800 + ], + "geometry": [ + { "lat": 40.7399982, "lon": -73.9540714 }, + { "lat": 40.7399616, "lon": -73.9535672 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702231512, + "bounds": { + "minlat": 40.7401201, + "minlon": -73.9538193, + "maxlat": 40.7401811, + "maxlon": -73.9534733 + }, + "nodes": [ + 6594515835, + 6594515836 + ], + "geometry": [ + { "lat": 40.7401811, "lon": -73.9538193 }, + { "lat": 40.7401201, "lon": -73.9534733 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702231513, + "bounds": { + "minlat": 40.7402644, + "minlon": -73.9532775, + "maxlat": 40.7403457, + "maxlon": -73.9528752 + }, + "nodes": [ + 6594515837, + 6594515838, + 6594515839 + ], + "geometry": [ + { "lat": 40.7403457, "lon": -73.9532775 }, + { "lat": 40.7403068, "lon": -73.9530850 }, + { "lat": 40.7402644, "lon": -73.9528752 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702231517, + "bounds": { + "minlat": 40.7401811, + "minlon": -73.9538193, + "maxlat": 40.7406463, + "maxlon": -73.9536730 + }, + "nodes": [ + 6594515843, + 11211160511, + 6594515835 + ], + "geometry": [ + { "lat": 40.7406463, "lon": -73.9536730 }, + { "lat": 40.7406016, "lon": -73.9536881 }, + { "lat": 40.7401811, "lon": -73.9538193 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702231518, + "bounds": { + "minlat": 40.7403457, + "minlon": -73.9532775, + "maxlat": 40.7405809, + "maxlon": -73.9531980 + }, + "nodes": [ + 6594515844, + 11211160503, + 6594515837 + ], + "geometry": [ + { "lat": 40.7405809, "lon": -73.9531980 }, + { "lat": 40.7405360, "lon": -73.9532119 }, + { "lat": 40.7403457, "lon": -73.9532775 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702231519, + "bounds": { + "minlat": 40.7403068, + "minlon": -73.9530850, + "maxlat": 40.7405435, + "maxlon": -73.9530068 + }, + "nodes": [ + 6594515845, + 11211160504, + 6594515838 + ], + "geometry": [ + { "lat": 40.7405435, "lon": -73.9530068 }, + { "lat": 40.7404963, "lon": -73.9530224 }, + { "lat": 40.7403068, "lon": -73.9530850 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702231520, + "bounds": { + "minlat": 40.7402644, + "minlon": -73.9528752, + "maxlat": 40.7405017, + "maxlon": -73.9527935 + }, + "nodes": [ + 6594515846, + 11211160505, + 6594515839 + ], + "geometry": [ + { "lat": 40.7405017, "lon": -73.9527935 }, + { "lat": 40.7404519, "lon": -73.9528107 }, + { "lat": 40.7402644, "lon": -73.9528752 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702232012, + "bounds": { + "minlat": 40.7398010, + "minlon": -73.9533024, + "maxlat": 40.7400501, + "maxlon": -73.9525946 + }, + "nodes": [ + 9690651009, + 13040919565, + 6594514419, + 13701213256 + ], + "geometry": [ + { "lat": 40.7399364, "lon": -73.9525946 }, + { "lat": 40.7399480, "lon": -73.9526533 }, + { "lat": 40.7400501, "lon": -73.9532269 }, + { "lat": 40.7398010, "lon": -73.9533024 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702232385, + "bounds": { + "minlat": 40.7398252, + "minlon": -73.9526072, + "maxlat": 40.7398986, + "maxlon": -73.9522244 + }, + "nodes": [ + 597237260, + 6594504094 + ], + "geometry": [ + { "lat": 40.7398986, "lon": -73.9526072 }, + { "lat": 40.7398252, "lon": -73.9522244 } + ], + "tags": { + "highway": "unclassified", + "name": "11th Street" + } +}, +{ + "type": "way", + "id": 702232386, + "bounds": { + "minlat": 40.7396198, + "minlon": -73.9522908, + "maxlat": 40.7403553, + "maxlon": -73.9520389 + }, + "nodes": [ + 597237382, + 6594504094, + 6594514208 + ], + "geometry": [ + { "lat": 40.7403553, "lon": -73.9520389 }, + { "lat": 40.7398252, "lon": -73.9522244 }, + { "lat": 40.7396198, "lon": -73.9522908 } + ], + "tags": { + "highway": "unclassified", + "name": "11th Street" + } +}, +{ + "type": "way", + "id": 702232584, + "bounds": { + "minlat": 40.7393518, + "minlon": -73.9506982, + "maxlat": 40.7397309, + "maxlon": -73.9506694 + }, + "nodes": [ + 6594517294, + 6594515931 + ], + "geometry": [ + { "lat": 40.7397309, "lon": -73.9506694 }, + { "lat": 40.7393518, "lon": -73.9506982 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702268380, + "bounds": { + "minlat": 40.7418871, + "minlon": -73.9509123, + "maxlat": 40.7419262, + "maxlon": -73.9503196 + }, + "nodes": [ + 2986363076, + 2986363078 + ], + "geometry": [ + { "lat": 40.7418871, "lon": -73.9509123 }, + { "lat": 40.7419262, "lon": -73.9503196 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702274241, + "bounds": { + "minlat": 40.7414300, + "minlon": -73.9534214, + "maxlat": 40.7415505, + "maxlon": -73.9528380 + }, + "nodes": [ + 6166333240, + 9179070531, + 9179070530, + 5676408048 + ], + "geometry": [ + { "lat": 40.7414300, "lon": -73.9528380 }, + { "lat": 40.7414455, "lon": -73.9529318 }, + { "lat": 40.7414755, "lon": -73.9530844 }, + { "lat": 40.7415505, "lon": -73.9534214 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 702274242, + "bounds": { + "minlat": 40.7414300, + "minlon": -73.9533432, + "maxlat": 40.7414312, + "maxlon": -73.9528380 + }, + "nodes": [ + 6594863446, + 6166333240 + ], + "geometry": [ + { "lat": 40.7414312, "lon": -73.9533432 }, + { "lat": 40.7414300, "lon": -73.9528380 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 702303180, + "bounds": { + "minlat": 40.7428631, + "minlon": -73.9512128, + "maxlat": 40.7429006, + "maxlon": -73.9510573 + }, + "nodes": [ + 6595149752, + 13001353983, + 6595149753 + ], + "geometry": [ + { "lat": 40.7429006, "lon": -73.9512128 }, + { "lat": 40.7428738, "lon": -73.9511019 }, + { "lat": 40.7428631, "lon": -73.9510573 } + ], + "tags": { + "highway": "residential", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 702304284, + "bounds": { + "minlat": 40.7436421, + "minlon": -73.9521657, + "maxlat": 40.7438187, + "maxlon": -73.9521097 + }, + "nodes": [ + 5481866294, + 11622964709, + 2987785567, + 6595146730 + ], + "geometry": [ + { "lat": 40.7438187, "lon": -73.9521097 }, + { "lat": 40.7437598, "lon": -73.9521292 }, + { "lat": 40.7437369, "lon": -73.9521368 }, + { "lat": 40.7436421, "lon": -73.9521657 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702304285, + "bounds": { + "minlat": 40.7436421, + "minlon": -73.9527827, + "maxlat": 40.7437559, + "maxlon": -73.9521657 + }, + "nodes": [ + 6595146730, + 6595146731 + ], + "geometry": [ + { "lat": 40.7436421, "lon": -73.9521657 }, + { "lat": 40.7437559, "lon": -73.9527827 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702438354, + "bounds": { + "minlat": 40.7453914, + "minlon": -73.9503441, + "maxlat": 40.7455814, + "maxlon": -73.9502878 + }, + "nodes": [ + 6596431871, + 6596431873, + 6596431872 + ], + "geometry": [ + { "lat": 40.7455814, "lon": -73.9502878 }, + { "lat": 40.7454629, "lon": -73.9503229 }, + { "lat": 40.7453914, "lon": -73.9503441 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702438355, + "bounds": { + "minlat": 40.7454629, + "minlon": -73.9505648, + "maxlat": 40.7455101, + "maxlon": -73.9503229 + }, + "nodes": [ + 5481857862, + 11232397926, + 6596431873 + ], + "geometry": [ + { "lat": 40.7455101, "lon": -73.9505648 }, + { "lat": 40.7454887, "lon": -73.9504551 }, + { "lat": 40.7454629, "lon": -73.9503229 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702438356, + "bounds": { + "minlat": 40.7451760, + "minlon": -73.9504058, + "maxlat": 40.7453558, + "maxlon": -73.9503522 + }, + "nodes": [ + 6596431874, + 6596431877, + 6596431875 + ], + "geometry": [ + { "lat": 40.7453558, "lon": -73.9503522 }, + { "lat": 40.7452751, "lon": -73.9503762 }, + { "lat": 40.7451760, "lon": -73.9504058 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702438357, + "bounds": { + "minlat": 40.7452751, + "minlon": -73.9506254, + "maxlat": 40.7453262, + "maxlon": -73.9503762 + }, + "nodes": [ + 5481857858, + 11232397925, + 6596431877 + ], + "geometry": [ + { "lat": 40.7453262, "lon": -73.9506254 }, + { "lat": 40.7453042, "lon": -73.9505181 }, + { "lat": 40.7452751, "lon": -73.9503762 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 702438693, + "bounds": { + "minlat": 40.7449005, + "minlon": -73.9500712, + "maxlat": 40.7452004, + "maxlon": -73.9499056 + }, + "nodes": [ + 6596463729, + 6903150556, + 6903150555, + 11622964653, + 6596463730 + ], + "geometry": [ + { "lat": 40.7452004, "lon": -73.9499056 }, + { "lat": 40.7450202, "lon": -73.9499708 }, + { "lat": 40.7449827, "lon": -73.9500463 }, + { "lat": 40.7449601, "lon": -73.9500531 }, + { "lat": 40.7449005, "lon": -73.9500712 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 702438695, + "bounds": { + "minlat": 40.7447860, + "minlon": -73.9494975, + "maxlat": 40.7450896, + "maxlon": -73.9494039 + }, + "nodes": [ + 6596463732, + 6845684601, + 11232397921, + 6596463733 + ], + "geometry": [ + { "lat": 40.7450896, "lon": -73.9494039 }, + { "lat": 40.7448841, "lon": -73.9494673 }, + { "lat": 40.7448474, "lon": -73.9494786 }, + { "lat": 40.7447860, "lon": -73.9494975 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 702523345, + "bounds": { + "minlat": 40.7427794, + "minlon": -73.9485310, + "maxlat": 40.7434902, + "maxlon": -73.9482767 + }, + "nodes": [ + 6597261582, + 2472708660, + 12129022031, + 2883441824, + 2883441823, + 2883441822, + 12129021737, + 2883441821, + 12129021738, + 2472708662, + 12129021739, + 12129021740, + 12129021751, + 2883441820, + 12129021752, + 12129021753, + 12129021754, + 12129021755, + 2472708664 + ], + "geometry": [ + { "lat": 40.7434902, "lon": -73.9485310 }, + { "lat": 40.7434473, "lon": -73.9485263 }, + { "lat": 40.7433385, "lon": -73.9485087 }, + { "lat": 40.7432704, "lon": -73.9484977 }, + { "lat": 40.7432093, "lon": -73.9484861 }, + { "lat": 40.7431441, "lon": -73.9484741 }, + { "lat": 40.7430769, "lon": -73.9484604 }, + { "lat": 40.7430548, "lon": -73.9484523 }, + { "lat": 40.7430335, "lon": -73.9484438 }, + { "lat": 40.7430126, "lon": -73.9484297 }, + { "lat": 40.7429919, "lon": -73.9484123 }, + { "lat": 40.7429536, "lon": -73.9483712 }, + { "lat": 40.7429334, "lon": -73.9483458 }, + { "lat": 40.7429142, "lon": -73.9483282 }, + { "lat": 40.7428953, "lon": -73.9483151 }, + { "lat": 40.7428713, "lon": -73.9482999 }, + { "lat": 40.7428422, "lon": -73.9482849 }, + { "lat": 40.7428118, "lon": -73.9482767 }, + { "lat": 40.7427794, "lon": -73.9482777 } + ], + "tags": { + "access": "no", + "highway": "service", + "maxspeed": "5 mph", + "name": "Arch Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 703309350, + "bounds": { + "minlat": 40.8367561, + "minlon": -74.0150872, + "maxlat": 40.8371256, + "maxlon": -74.0140907 + }, + "nodes": [ + 6604725760, + 6604725761, + 6604725762, + 6604725763 + ], + "geometry": [ + { "lat": 40.8371256, "lon": -74.0150872 }, + { "lat": 40.8369902, "lon": -74.0149009 }, + { "lat": 40.8368751, "lon": -74.0143573 }, + { "lat": 40.8367561, "lon": -74.0140907 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 703352641, + "bounds": { + "minlat": 40.8372837, + "minlon": -74.0047866, + "maxlat": 40.8375351, + "maxlon": -74.0043236 + }, + "nodes": [ + 5773256355, + 6605072945, + 6605072946, + 6605072947, + 6605072948, + 6605072949, + 6605072959 + ], + "geometry": [ + { "lat": 40.8375351, "lon": -74.0043236 }, + { "lat": 40.8374549, "lon": -74.0043685 }, + { "lat": 40.8374415, "lon": -74.0044631 }, + { "lat": 40.8374357, "lon": -74.0045528 }, + { "lat": 40.8373908, "lon": -74.0046788 }, + { "lat": 40.8373176, "lon": -74.0047557 }, + { "lat": 40.8372837, "lon": -74.0047866 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 703391042, + "bounds": { + "minlat": 40.8824999, + "minlon": -73.9853659, + "maxlat": 40.8826463, + "maxlon": -73.9852046 + }, + "nodes": [ + 6605469540, + 6622018072, + 6605469541 + ], + "geometry": [ + { "lat": 40.8824999, "lon": -73.9853659 }, + { "lat": 40.8825670, "lon": -73.9852900 }, + { "lat": 40.8826463, "lon": -73.9852046 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 703409702, + "bounds": { + "minlat": 40.8756084, + "minlon": -73.9531730, + "maxlat": 40.8760703, + "maxlon": -73.9523278 + }, + "nodes": [ + 103215730, + 6605713591, + 6605713592, + 6605713593, + 6605713606, + 6605713594, + 6605713607, + 6605713595 + ], + "geometry": [ + { "lat": 40.8756084, "lon": -73.9523278 }, + { "lat": 40.8756990, "lon": -73.9525871 }, + { "lat": 40.8757533, "lon": -73.9526033 }, + { "lat": 40.8758058, "lon": -73.9526820 }, + { "lat": 40.8758363, "lon": -73.9527336 }, + { "lat": 40.8759275, "lon": -73.9528882 }, + { "lat": 40.8760239, "lon": -73.9530805 }, + { "lat": 40.8760703, "lon": -73.9531730 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 703409703, + "bounds": { + "minlat": 40.8752532, + "minlon": -73.9528045, + "maxlat": 40.8756990, + "maxlon": -73.9525871 + }, + "nodes": [ + 6605713591, + 6605713603, + 6605713604, + 6605713605 + ], + "geometry": [ + { "lat": 40.8756990, "lon": -73.9525871 }, + { "lat": 40.8756745, "lon": -73.9526299 }, + { "lat": 40.8756106, "lon": -73.9526658 }, + { "lat": 40.8752532, "lon": -73.9528045 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 703409704, + "bounds": { + "minlat": 40.8756781, + "minlon": -73.9540682, + "maxlat": 40.8764774, + "maxlon": -73.9531730 + }, + "nodes": [ + 6605713595, + 6605713596, + 9286167821, + 6605713597, + 9286167823, + 6605713598, + 9286167819, + 6605713599, + 6605713608 + ], + "geometry": [ + { "lat": 40.8760703, "lon": -73.9531730 }, + { "lat": 40.8764774, "lon": -73.9538712 }, + { "lat": 40.8763185, "lon": -73.9539498 }, + { "lat": 40.8762314, "lon": -73.9539929 }, + { "lat": 40.8761451, "lon": -73.9540207 }, + { "lat": 40.8760106, "lon": -73.9540639 }, + { "lat": 40.8759774, "lon": -73.9540682 }, + { "lat": 40.8759514, "lon": -73.9540592 }, + { "lat": 40.8756781, "lon": -73.9535637 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 703409705, + "bounds": { + "minlat": 40.8756781, + "minlon": -73.9535637, + "maxlat": 40.8760703, + "maxlon": -73.9531730 + }, + "nodes": [ + 6605713595, + 9286167820, + 9286167822, + 6605713608 + ], + "geometry": [ + { "lat": 40.8760703, "lon": -73.9531730 }, + { "lat": 40.8759535, "lon": -73.9532894 }, + { "lat": 40.8758144, "lon": -73.9534280 }, + { "lat": 40.8756781, "lon": -73.9535637 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 703812854, + "bounds": { + "minlat": 40.8770862, + "minlon": -73.9827492, + "maxlat": 40.8773496, + "maxlon": -73.9824202 + }, + "nodes": [ + 6608999456, + 13525915009, + 6608999457, + 6608999458, + 6608999459 + ], + "geometry": [ + { "lat": 40.8773496, "lon": -73.9827492 }, + { "lat": 40.8773100, "lon": -73.9826812 }, + { "lat": 40.8771786, "lon": -73.9824551 }, + { "lat": 40.8771328, "lon": -73.9824458 }, + { "lat": 40.8770862, "lon": -73.9824202 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 703913492, + "bounds": { + "minlat": 40.8692498, + "minlon": -73.9740796, + "maxlat": 40.8696410, + "maxlon": -73.9734930 + }, + "nodes": [ + 103171664, + 6609745927, + 6609745941, + 6609745928, + 6609745929, + 6609745930, + 6609745933, + 6609745931, + 6609745942, + 6609745932 + ], + "geometry": [ + { "lat": 40.8696410, "lon": -73.9740796 }, + { "lat": 40.8695554, "lon": -73.9740458 }, + { "lat": 40.8695377, "lon": -73.9740440 }, + { "lat": 40.8694628, "lon": -73.9740366 }, + { "lat": 40.8693986, "lon": -73.9739203 }, + { "lat": 40.8692575, "lon": -73.9736763 }, + { "lat": 40.8692533, "lon": -73.9736243 }, + { "lat": 40.8692498, "lon": -73.9735808 }, + { "lat": 40.8692663, "lon": -73.9735539 }, + { "lat": 40.8693038, "lon": -73.9734930 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 703913493, + "bounds": { + "minlat": 40.8684423, + "minlon": -73.9741600, + "maxlat": 40.8692533, + "maxlon": -73.9736243 + }, + "nodes": [ + 6609745933, + 6609745934, + 6609745935, + 6609745936, + 6609745937, + 6609745938, + 6609745939, + 6609745940 + ], + "geometry": [ + { "lat": 40.8692533, "lon": -73.9736243 }, + { "lat": 40.8691621, "lon": -73.9736256 }, + { "lat": 40.8690807, "lon": -73.9736531 }, + { "lat": 40.8689477, "lon": -73.9737395 }, + { "lat": 40.8687656, "lon": -73.9738726 }, + { "lat": 40.8686095, "lon": -73.9739986 }, + { "lat": 40.8684658, "lon": -73.9741094 }, + { "lat": 40.8684423, "lon": -73.9741600 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 703933352, + "bounds": { + "minlat": 40.8279459, + "minlon": -73.9726212, + "maxlat": 40.8279638, + "maxlon": -73.9725767 + }, + "nodes": [ + 6609862672, + 5662656743 + ], + "geometry": [ + { "lat": 40.8279638, "lon": -73.9726212 }, + { "lat": 40.8279459, "lon": -73.9725767 } + ], + "tags": { + "access": "private", + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 703933353, + "bounds": { + "minlat": 40.8281636, + "minlon": -73.9727443, + "maxlat": 40.8284465, + "maxlon": -73.9725519 + }, + "nodes": [ + 1752676675, + 103116810 + ], + "geometry": [ + { "lat": 40.8281636, "lon": -73.9727443 }, + { "lat": 40.8284465, "lon": -73.9725519 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 703933354, + "bounds": { + "minlat": 40.8276641, + "minlon": -73.9725767, + "maxlat": 40.8279459, + "maxlon": -73.9717882 + }, + "nodes": [ + 5662656743, + 103108094 + ], + "geometry": [ + { "lat": 40.8279459, "lon": -73.9725767 }, + { "lat": 40.8276641, "lon": -73.9717882 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 703934955, + "bounds": { + "minlat": 40.7800412, + "minlon": -74.0155537, + "maxlat": 40.7814869, + "maxlon": -74.0148299 + }, + "nodes": [ + 6609911660, + 7613768279, + 6609911661, + 6609911662, + 6609911663, + 6609911664, + 6609911665 + ], + "geometry": [ + { "lat": 40.7814869, "lon": -74.0150403 }, + { "lat": 40.7814333, "lon": -74.0149529 }, + { "lat": 40.7813580, "lon": -74.0148299 }, + { "lat": 40.7808378, "lon": -74.0152519 }, + { "lat": 40.7804598, "lon": -74.0155537 }, + { "lat": 40.7801808, "lon": -74.0153435 }, + { "lat": 40.7800412, "lon": -74.0154747 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 703934956, + "bounds": { + "minlat": 40.7797391, + "minlon": -74.0153435, + "maxlat": 40.7801808, + "maxlon": -74.0148173 + }, + "nodes": [ + 6609911664, + 6609911666, + 7613768277, + 6609911667 + ], + "geometry": [ + { "lat": 40.7801808, "lon": -74.0153435 }, + { "lat": 40.7799034, "lon": -74.0151529 }, + { "lat": 40.7797765, "lon": -74.0148937 }, + { "lat": 40.7797391, "lon": -74.0148173 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 704467675, + "bounds": { + "minlat": 40.8404674, + "minlon": -74.0079280, + "maxlat": 40.8416805, + "maxlon": -74.0058150 + }, + "nodes": [ + 6615844726, + 6615844727, + 6615844728, + 6615844729 + ], + "geometry": [ + { "lat": 40.8416805, "lon": -74.0079280 }, + { "lat": 40.8410152, "lon": -74.0068177 }, + { "lat": 40.8405537, "lon": -74.0060020 }, + { "lat": 40.8404674, "lon": -74.0058150 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 704500137, + "bounds": { + "minlat": 40.8691869, + "minlon": -73.9574701, + "maxlat": 40.8693139, + "maxlon": -73.9572430 + }, + "nodes": [ + 6616072819, + 6616072823 + ], + "geometry": [ + { "lat": 40.8691869, "lon": -73.9572430 }, + { "lat": 40.8693139, "lon": -73.9574701 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 704500138, + "bounds": { + "minlat": 40.8696902, + "minlon": -73.9582056, + "maxlat": 40.8697218, + "maxlon": -73.9581505 + }, + "nodes": [ + 6616072824, + 6616072825 + ], + "geometry": [ + { "lat": 40.8696902, "lon": -73.9581505 }, + { "lat": 40.8697218, "lon": -73.9582056 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 704500139, + "bounds": { + "minlat": 40.8695720, + "minlon": -73.9572066, + "maxlat": 40.8697627, + "maxlon": -73.9570119 + }, + "nodes": [ + 6616072822, + 6643904895 + ], + "geometry": [ + { "lat": 40.8697627, "lon": -73.9570119 }, + { "lat": 40.8695720, "lon": -73.9572066 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 704500140, + "bounds": { + "minlat": 40.8697627, + "minlon": -73.9588146, + "maxlat": 40.8705050, + "maxlon": -73.9570119 + }, + "nodes": [ + 6616072820, + 6616072821, + 6616072826, + 6616072822 + ], + "geometry": [ + { "lat": 40.8700711, "lon": -73.9588146 }, + { "lat": 40.8705050, "lon": -73.9583953 }, + { "lat": 40.8701692, "lon": -73.9577696 }, + { "lat": 40.8697627, "lon": -73.9570119 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 704500141, + "bounds": { + "minlat": 40.8697218, + "minlon": -73.9582056, + "maxlat": 40.8702828, + "maxlon": -73.9576593 + }, + "nodes": [ + 6616072825, + 6616072826, + 6616072827 + ], + "geometry": [ + { "lat": 40.8697218, "lon": -73.9582056 }, + { "lat": 40.8701692, "lon": -73.9577696 }, + { "lat": 40.8702828, "lon": -73.9576593 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 704500142, + "bounds": { + "minlat": 40.8693139, + "minlon": -73.9581505, + "maxlat": 40.8696902, + "maxlon": -73.9574701 + }, + "nodes": [ + 6616072823, + 6616072824 + ], + "geometry": [ + { "lat": 40.8693139, "lon": -73.9574701 }, + { "lat": 40.8696902, "lon": -73.9581505 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 704500143, + "bounds": { + "minlat": 40.8697218, + "minlon": -73.9588146, + "maxlat": 40.8700711, + "maxlon": -73.9582056 + }, + "nodes": [ + 6616072825, + 6616072820 + ], + "geometry": [ + { "lat": 40.8697218, "lon": -73.9582056 }, + { "lat": 40.8700711, "lon": -73.9588146 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 704522535, + "bounds": { + "minlat": 40.8788956, + "minlon": -73.9638179, + "maxlat": 40.8805343, + "maxlon": -73.9618101 + }, + "nodes": [ + 6616347960, + 6616347961, + 6616347962, + 6616347963, + 6616347964, + 6616347965, + 6616347966, + 6616347967, + 6616347968, + 6616347969, + 6616347970, + 6616347971, + 6616347972, + 6616347973, + 6616347974, + 6616347975, + 6616347976, + 6616347970 + ], + "geometry": [ + { "lat": 40.8805343, "lon": -73.9638179 }, + { "lat": 40.8804353, "lon": -73.9636871 }, + { "lat": 40.8803368, "lon": -73.9636358 }, + { "lat": 40.8801135, "lon": -73.9636233 }, + { "lat": 40.8797834, "lon": -73.9630522 }, + { "lat": 40.8795297, "lon": -73.9626862 }, + { "lat": 40.8794071, "lon": -73.9625185 }, + { "lat": 40.8793201, "lon": -73.9624575 }, + { "lat": 40.8792080, "lon": -73.9623729 }, + { "lat": 40.8791241, "lon": -73.9622246 }, + { "lat": 40.8790413, "lon": -73.9620444 }, + { "lat": 40.8790371, "lon": -73.9619335 }, + { "lat": 40.8790151, "lon": -73.9618226 }, + { "lat": 40.8789407, "lon": -73.9618101 }, + { "lat": 40.8788956, "lon": -73.9618961 }, + { "lat": 40.8789281, "lon": -73.9620167 }, + { "lat": 40.8789816, "lon": -73.9620430 }, + { "lat": 40.8790413, "lon": -73.9620444 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 704563096, + "bounds": { + "minlat": 40.8486186, + "minlon": -74.0132813, + "maxlat": 40.8494807, + "maxlon": -74.0118525 + }, + "nodes": [ + 5674744903, + 6616684025, + 6616684026, + 6616684027, + 6616684028, + 6616684029, + 6616684030, + 6616684031, + 6616684035 + ], + "geometry": [ + { "lat": 40.8494807, "lon": -74.0118525 }, + { "lat": 40.8493106, "lon": -74.0119996 }, + { "lat": 40.8491871, "lon": -74.0120764 }, + { "lat": 40.8490273, "lon": -74.0121245 }, + { "lat": 40.8488529, "lon": -74.0121389 }, + { "lat": 40.8486458, "lon": -74.0121293 }, + { "lat": 40.8486186, "lon": -74.0122453 }, + { "lat": 40.8486320, "lon": -74.0123404 }, + { "lat": 40.8487928, "lon": -74.0132813 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 704563097, + "bounds": { + "minlat": 40.8476086, + "minlon": -74.0137609, + "maxlat": 40.8486458, + "maxlon": -74.0120701 + }, + "nodes": [ + 6616684029, + 6616684036, + 6616684037, + 6616684038, + 6616684039, + 6616684040, + 6616684041, + 6616684042, + 6616684043, + 6616684044, + 6616684045, + 6616684046, + 6616684047, + 103161052 + ], + "geometry": [ + { "lat": 40.8486458, "lon": -74.0121293 }, + { "lat": 40.8485853, "lon": -74.0120701 }, + { "lat": 40.8484743, "lon": -74.0120855 }, + { "lat": 40.8482922, "lon": -74.0121152 }, + { "lat": 40.8481307, "lon": -74.0121546 }, + { "lat": 40.8478605, "lon": -74.0122335 }, + { "lat": 40.8477881, "lon": -74.0123367 }, + { "lat": 40.8476086, "lon": -74.0123955 }, + { "lat": 40.8476561, "lon": -74.0126839 }, + { "lat": 40.8477231, "lon": -74.0130426 }, + { "lat": 40.8477734, "lon": -74.0133062 }, + { "lat": 40.8478487, "lon": -74.0134083 }, + { "lat": 40.8479024, "lon": -74.0136142 }, + { "lat": 40.8479430, "lon": -74.0137609 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 704732573, + "bounds": { + "minlat": 40.8786246, + "minlon": -73.9768961, + "maxlat": 40.8793110, + "maxlon": -73.9757431 + }, + "nodes": [ + 6618226734, + 6618226735, + 6618226736, + 6618226737, + 6618226738, + 6618226739, + 6618226740, + 6618226741, + 6618226742, + 6618226745, + 6618226743, + 6618226744 + ], + "geometry": [ + { "lat": 40.8791756, "lon": -73.9757431 }, + { "lat": 40.8791027, "lon": -73.9757998 }, + { "lat": 40.8790752, "lon": -73.9758778 }, + { "lat": 40.8790791, "lon": -73.9759800 }, + { "lat": 40.8793110, "lon": -73.9764427 }, + { "lat": 40.8793110, "lon": -73.9765276 }, + { "lat": 40.8792861, "lon": -73.9766436 }, + { "lat": 40.8789167, "lon": -73.9768880 }, + { "lat": 40.8788813, "lon": -73.9768961 }, + { "lat": 40.8788518, "lon": -73.9768887 }, + { "lat": 40.8788014, "lon": -73.9768152 }, + { "lat": 40.8786246, "lon": -73.9765163 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 705205273, + "bounds": { + "minlat": 40.8371412, + "minlon": -74.0052915, + "maxlat": 40.8375034, + "maxlon": -74.0047866 + }, + "nodes": [ + 6605072959, + 6605072958, + 6605072957, + 6605072956, + 6605072955, + 6605072954, + 6605072953, + 6605072952, + 6605072951, + 6605072950, + 6605072959 + ], + "geometry": [ + { "lat": 40.8372837, "lon": -74.0047866 }, + { "lat": 40.8373908, "lon": -74.0049492 }, + { "lat": 40.8374734, "lon": -74.0050732 }, + { "lat": 40.8375034, "lon": -74.0051749 }, + { "lat": 40.8374677, "lon": -74.0052444 }, + { "lat": 40.8373758, "lon": -74.0052915 }, + { "lat": 40.8373251, "lon": -74.0052394 }, + { "lat": 40.8371900, "lon": -74.0050509 }, + { "lat": 40.8371412, "lon": -74.0049517 }, + { "lat": 40.8372576, "lon": -74.0048103 }, + { "lat": 40.8372837, "lon": -74.0047866 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 705223734, + "bounds": { + "minlat": 40.7778034, + "minlon": -73.9821878, + "maxlat": 40.7779528, + "maxlon": -73.9821832 + }, + "nodes": [ + 1061531448, + 8727756025, + 9177424867 + ], + "geometry": [ + { "lat": 40.7779528, "lon": -73.9821878 }, + { "lat": 40.7778631, "lon": -73.9821846 }, + { "lat": 40.7778034, "lon": -73.9821832 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 705223736, + "bounds": { + "minlat": 40.7779528, + "minlon": -73.9823956, + "maxlat": 40.7780382, + "maxlon": -73.9821878 + }, + "nodes": [ + 1061531448, + 3235708632, + 10586962113 + ], + "geometry": [ + { "lat": 40.7779528, "lon": -73.9821878 }, + { "lat": 40.7779951, "lon": -73.9822916 }, + { "lat": 40.7780382, "lon": -73.9823956 } + ], + "tags": { + "covered": "no", + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "West 71st Street", + "name:ru": "Западная 71-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:markings": "no", + "parking:both:orientation": "parallel", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 705223737, + "bounds": { + "minlat": 40.7775253, + "minlon": -73.9823934, + "maxlat": 40.7778034, + "maxlon": -73.9821832 + }, + "nodes": [ + 9584468481, + 5115907023, + 9177424867 + ], + "geometry": [ + { "lat": 40.7775253, "lon": -73.9823934 }, + { "lat": 40.7777050, "lon": -73.9822757 }, + { "lat": 40.7778034, "lon": -73.9821832 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "4", + "lit": "yes", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 705961792, + "bounds": { + "minlat": 40.7385901, + "minlon": -73.9618497, + "maxlat": 40.7394672, + "maxlon": -73.9613317 + }, + "nodes": [ + 6633335896, + 6644311495, + 6644311493, + 11196902810, + 6644311498, + 11196902814, + 6644311500, + 5749889401 + ], + "geometry": [ + { "lat": 40.7385901, "lon": -73.9613317 }, + { "lat": 40.7386011, "lon": -73.9613546 }, + { "lat": 40.7386159, "lon": -73.9613754 }, + { "lat": 40.7386272, "lon": -73.9613856 }, + { "lat": 40.7393704, "lon": -73.9618214 }, + { "lat": 40.7394153, "lon": -73.9618409 }, + { "lat": 40.7394367, "lon": -73.9618497 }, + { "lat": 40.7394672, "lon": -73.9618480 } + ], + "tags": { + "highway": "residential", + "name": "57th Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 705963548, + "bounds": { + "minlat": 40.7408018, + "minlon": -73.9593763, + "maxlat": 40.7421891, + "maxlon": -73.9589108 + }, + "nodes": [ + 42852816, + 11196970698, + 13701145180, + 12125828399, + 11196970678, + 42786626 + ], + "geometry": [ + { "lat": 40.7421891, "lon": -73.9589108 }, + { "lat": 40.7420898, "lon": -73.9589441 }, + { "lat": 40.7417713, "lon": -73.9590511 }, + { "lat": 40.7415583, "lon": -73.9591224 }, + { "lat": 40.7408757, "lon": -73.9593515 }, + { "lat": 40.7408018, "lon": -73.9593763 } + ], + "tags": { + "highway": "residential", + "name": "2nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 705964772, + "bounds": { + "minlat": 40.7385840, + "minlon": -73.9613317, + "maxlat": 40.7400321, + "maxlon": -73.9596411 + }, + "nodes": [ + 11203867478, + 12641851136, + 6633355337, + 6633355338, + 6633355336, + 6644311491, + 6644311503, + 6644311497, + 6644311494, + 6633335896 + ], + "geometry": [ + { "lat": 40.7400321, "lon": -73.9596411 }, + { "lat": 40.7391369, "lon": -73.9599425 }, + { "lat": 40.7391262, "lon": -73.9599472 }, + { "lat": 40.7390828, "lon": -73.9600015 }, + { "lat": 40.7390466, "lon": -73.9600604 }, + { "lat": 40.7390213, "lon": -73.9601298 }, + { "lat": 40.7386104, "lon": -73.9611950 }, + { "lat": 40.7385916, "lon": -73.9612502 }, + { "lat": 40.7385840, "lon": -73.9613015 }, + { "lat": 40.7385901, "lon": -73.9613317 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "name": "2nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 705964774, + "bounds": { + "minlat": 40.7390828, + "minlon": -73.9613169, + "maxlat": 40.7397865, + "maxlon": -73.9600015 + }, + "nodes": [ + 6633355338, + 11196970673, + 8018964702, + 11196970672, + 5749889413 + ], + "geometry": [ + { "lat": 40.7390828, "lon": -73.9600015 }, + { "lat": 40.7391424, "lon": -73.9601122 }, + { "lat": 40.7397079, "lon": -73.9611700 }, + { "lat": 40.7397392, "lon": -73.9612284 }, + { "lat": 40.7397865, "lon": -73.9613169 } + ], + "tags": { + "check_date:cycleway": "2023-05-21", + "cycleway": "no", + "highway": "residential", + "name": "56th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706015228, + "bounds": { + "minlat": 40.7459682, + "minlon": -73.9731241, + "maxlat": 40.7473123, + "maxlon": -73.9711001 + }, + "nodes": [ + 106706946, + 106706943, + 7684215081, + 106706942, + 106706941, + 106706940, + 7684215082, + 106706939, + 106706938 + ], + "geometry": [ + { "lat": 40.7473123, "lon": -73.9711001 }, + { "lat": 40.7464943, "lon": -73.9716642 }, + { "lat": 40.7463639, "lon": -73.9717881 }, + { "lat": 40.7462460, "lon": -73.9719460 }, + { "lat": 40.7461393, "lon": -73.9721440 }, + { "lat": 40.7460515, "lon": -73.9723791 }, + { "lat": 40.7459913, "lon": -73.9726434 }, + { "lat": 40.7459682, "lon": -73.9728807 }, + { "lat": 40.7459742, "lon": -73.9731241 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "layer": "-2", + "lit": "24/7", + "maxheight": "12'1\"", + "maxspeed": "40 mph", + "maxwidth": "8'6\"", + "name": "Queens-Midtown Tunnel", + "oneway": "yes", + "ref": "I 495", + "short_name": "Midtown Tunnel", + "surface": "asphalt", + "toll": "yes", + "tunnel": "yes", + "wikidata": "Q125138", + "wikipedia": "en:Queens–Midtown Tunnel" + } +}, +{ + "type": "way", + "id": 706171311, + "bounds": { + "minlat": 40.8821523, + "minlon": -74.0099319, + "maxlat": 40.8823953, + "maxlon": -74.0098779 + }, + "nodes": [ + 6635342718, + 6635342719, + 6635342720 + ], + "geometry": [ + { "lat": 40.8821523, "lon": -74.0099100 }, + { "lat": 40.8822240, "lon": -74.0098779 }, + { "lat": 40.8823953, "lon": -74.0099319 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706171312, + "bounds": { + "minlat": 40.8816636, + "minlon": -74.0117528, + "maxlat": 40.8821870, + "maxlon": -74.0108300 + }, + "nodes": [ + 6635342721, + 6635342722, + 6635342723, + 6635342724 + ], + "geometry": [ + { "lat": 40.8821870, "lon": -74.0117528 }, + { "lat": 40.8819958, "lon": -74.0113099 }, + { "lat": 40.8818558, "lon": -74.0108300 }, + { "lat": 40.8816636, "lon": -74.0108857 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706171314, + "bounds": { + "minlat": 40.8823793, + "minlon": -74.0101470, + "maxlat": 40.8830631, + "maxlon": -74.0097275 + }, + "nodes": [ + 6635342729, + 6635342730, + 6635342731, + 6635342732, + 6635342733, + 6635342734, + 6635342735, + 6635342736, + 6635342737, + 6635342738, + 6635342739, + 6635342740, + 6635342741, + 6635342742, + 6635342743, + 6635342744, + 6635342745, + 6635342746 + ], + "geometry": [ + { "lat": 40.8830631, "lon": -74.0097275 }, + { "lat": 40.8829789, "lon": -74.0099861 }, + { "lat": 40.8829682, "lon": -74.0100145 }, + { "lat": 40.8829583, "lon": -74.0100287 }, + { "lat": 40.8829512, "lon": -74.0100382 }, + { "lat": 40.8829261, "lon": -74.0100630 }, + { "lat": 40.8828564, "lon": -74.0101163 }, + { "lat": 40.8828376, "lon": -74.0101305 }, + { "lat": 40.8828090, "lon": -74.0101435 }, + { "lat": 40.8827929, "lon": -74.0101470 }, + { "lat": 40.8827776, "lon": -74.0101470 }, + { "lat": 40.8827508, "lon": -74.0101435 }, + { "lat": 40.8826605, "lon": -74.0100997 }, + { "lat": 40.8825871, "lon": -74.0100642 }, + { "lat": 40.8825451, "lon": -74.0100417 }, + { "lat": 40.8825075, "lon": -74.0100204 }, + { "lat": 40.8824914, "lon": -74.0100157 }, + { "lat": 40.8823793, "lon": -74.0099747 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 706171316, + "bounds": { + "minlat": 40.8823247, + "minlon": -74.0093322, + "maxlat": 40.8825286, + "maxlon": -74.0092613 + }, + "nodes": [ + 6103107248, + 6635342752, + 6635344724, + 6635342753, + 6635342754, + 6635342755 + ], + "geometry": [ + { "lat": 40.8825286, "lon": -74.0092613 }, + { "lat": 40.8824631, "lon": -74.0092668 }, + { "lat": 40.8824431, "lon": -74.0092699 }, + { "lat": 40.8824176, "lon": -74.0092737 }, + { "lat": 40.8823800, "lon": -74.0092909 }, + { "lat": 40.8823247, "lon": -74.0093322 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706171317, + "bounds": { + "minlat": 40.8819010, + "minlon": -74.0098352, + "maxlat": 40.8820567, + "maxlon": -74.0093833 + }, + "nodes": [ + 6635342756, + 6635342757 + ], + "geometry": [ + { "lat": 40.8820567, "lon": -74.0098352 }, + { "lat": 40.8819010, "lon": -74.0093833 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706171318, + "bounds": { + "minlat": 40.8822636, + "minlon": -74.0095513, + "maxlat": 40.8823976, + "maxlon": -74.0091486 + }, + "nodes": [ + 6635342758, + 6635342755, + 6635342759 + ], + "geometry": [ + { "lat": 40.8823976, "lon": -74.0095513 }, + { "lat": 40.8823247, "lon": -74.0093322 }, + { "lat": 40.8822636, "lon": -74.0091486 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706171319, + "bounds": { + "minlat": 40.8820567, + "minlon": -74.0098352, + "maxlat": 40.8823976, + "maxlon": -74.0095513 + }, + "nodes": [ + 6635342758, + 6635342760, + 6635342761, + 6635342766, + 6635342762, + 6635342764, + 6635342763, + 6635342756 + ], + "geometry": [ + { "lat": 40.8823976, "lon": -74.0095513 }, + { "lat": 40.8823639, "lon": -74.0096097 }, + { "lat": 40.8823247, "lon": -74.0096561 }, + { "lat": 40.8823037, "lon": -74.0096806 }, + { "lat": 40.8822833, "lon": -74.0097043 }, + { "lat": 40.8821877, "lon": -74.0097658 }, + { "lat": 40.8821058, "lon": -74.0098185 }, + { "lat": 40.8820567, "lon": -74.0098352 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706171320, + "bounds": { + "minlat": 40.8819010, + "minlon": -74.0093833, + "maxlat": 40.8822636, + "maxlon": -74.0091486 + }, + "nodes": [ + 6635342757, + 6635342765, + 6635342767, + 6635342759 + ], + "geometry": [ + { "lat": 40.8819010, "lon": -74.0093833 }, + { "lat": 40.8820277, "lon": -74.0093013 }, + { "lat": 40.8821452, "lon": -74.0092252 }, + { "lat": 40.8822636, "lon": -74.0091486 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706171321, + "bounds": { + "minlat": 40.8820277, + "minlon": -74.0097658, + "maxlat": 40.8821877, + "maxlon": -74.0093013 + }, + "nodes": [ + 6635342765, + 6635342764 + ], + "geometry": [ + { "lat": 40.8820277, "lon": -74.0093013 }, + { "lat": 40.8821877, "lon": -74.0097658 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 706171322, + "bounds": { + "minlat": 40.8821452, + "minlon": -74.0096806, + "maxlat": 40.8823037, + "maxlon": -74.0092252 + }, + "nodes": [ + 6635342766, + 6635342767 + ], + "geometry": [ + { "lat": 40.8823037, "lon": -74.0096806 }, + { "lat": 40.8821452, "lon": -74.0092252 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706533807, + "bounds": { + "minlat": 40.8821895, + "minlon": -74.0084848, + "maxlat": 40.8826571, + "maxlon": -74.0080288 + }, + "nodes": [ + 6639265216, + 6639265217, + 13527712081, + 6639265218 + ], + "geometry": [ + { "lat": 40.8821895, "lon": -74.0082109 }, + { "lat": 40.8825188, "lon": -74.0080288 }, + { "lat": 40.8826302, "lon": -74.0083960 }, + { "lat": 40.8826571, "lon": -74.0084848 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 706533816, + "bounds": { + "minlat": 40.8811062, + "minlon": -74.0091013, + "maxlat": 40.8815844, + "maxlon": -74.0086421 + }, + "nodes": [ + 6639265255, + 6639265256, + 6639265257 + ], + "geometry": [ + { "lat": 40.8815844, "lon": -74.0091013 }, + { "lat": 40.8814490, "lon": -74.0086421 }, + { "lat": 40.8811062, "lon": -74.0088075 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 706533818, + "bounds": { + "minlat": 40.8816260, + "minlon": -74.0090200, + "maxlat": 40.8817243, + "maxlon": -74.0087392 + }, + "nodes": [ + 6639265272, + 6639265273 + ], + "geometry": [ + { "lat": 40.8817243, "lon": -74.0090200 }, + { "lat": 40.8816260, "lon": -74.0087392 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706533819, + "bounds": { + "minlat": 40.8820992, + "minlon": -74.0085589, + "maxlat": 40.8821752, + "maxlon": -74.0081658 + }, + "nodes": [ + 6639265274, + 6639265275, + 6639265276, + 6639265277, + 6639265278, + 6639265279, + 6639265280, + 6639265281, + 6639265282, + 6639265283 + ], + "geometry": [ + { "lat": 40.8821752, "lon": -74.0081658 }, + { "lat": 40.8821404, "lon": -74.0081867 }, + { "lat": 40.8821278, "lon": -74.0081967 }, + { "lat": 40.8821177, "lon": -74.0082134 }, + { "lat": 40.8821110, "lon": -74.0082289 }, + { "lat": 40.8821043, "lon": -74.0082489 }, + { "lat": 40.8821001, "lon": -74.0082656 }, + { "lat": 40.8820992, "lon": -74.0082845 }, + { "lat": 40.8820992, "lon": -74.0083067 }, + { "lat": 40.8821715, "lon": -74.0085589 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 706533820, + "bounds": { + "minlat": 40.8818556, + "minlon": -74.0084034, + "maxlat": 40.8820992, + "maxlon": -74.0083056 + }, + "nodes": [ + 6639265282, + 6639265284, + 6639265285 + ], + "geometry": [ + { "lat": 40.8820992, "lon": -74.0083067 }, + { "lat": 40.8820236, "lon": -74.0083056 }, + { "lat": 40.8818556, "lon": -74.0084034 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 706833044, + "bounds": { + "minlat": 40.7212770, + "minlon": -73.9848308, + "maxlat": 40.7242664, + "maxlon": -73.9777880 + }, + "nodes": [ + 42455051, + 7977832451, + 7977832469, + 42455083, + 7977832466, + 9109840962, + 7983809931, + 8309479334, + 42455175, + 8309479331, + 8309479325, + 42455396 + ], + "geometry": [ + { "lat": 40.7242664, "lon": -73.9848308 }, + { "lat": 40.7242229, "lon": -73.9847294 }, + { "lat": 40.7233119, "lon": -73.9826031 }, + { "lat": 40.7232780, "lon": -73.9825240 }, + { "lat": 40.7232491, "lon": -73.9824541 }, + { "lat": 40.7228703, "lon": -73.9815557 }, + { "lat": 40.7226880, "lon": -73.9811227 }, + { "lat": 40.7223281, "lon": -73.9802680 }, + { "lat": 40.7222831, "lon": -73.9801612 }, + { "lat": 40.7222459, "lon": -73.9800733 }, + { "lat": 40.7213193, "lon": -73.9778880 }, + { "lat": 40.7212770, "lon": -73.9777880 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "20 mph", + "name": "East 4th Street", + "name:ru": "Восточная 4-я стрит", + "name_1": "East 4 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 706833045, + "bounds": { + "minlat": 40.7283024, + "minlon": -73.9975197, + "maxlat": 40.7291535, + "maxlon": -73.9957862 + }, + "nodes": [ + 12009866806, + 3957463101, + 42440548, + 1692433936, + 1692433937, + 12009866805 + ], + "geometry": [ + { "lat": 40.7283024, "lon": -73.9957862 }, + { "lat": 40.7284628, "lon": -73.9961129 }, + { "lat": 40.7285692, "lon": -73.9963296 }, + { "lat": 40.7289446, "lon": -73.9970942 }, + { "lat": 40.7289764, "lon": -73.9971591 }, + { "lat": 40.7291535, "lon": -73.9975197 } + ], + "tags": { + "alt_name:ko": "웨스트 3번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 3rd Street", + "name:ko": "웨스트 3rd 스트리트", + "name:ru": "Западная 3-я стрит", + "name_1": "West 3 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706833046, + "bounds": { + "minlat": 40.7293265, + "minlon": -74.0001225, + "maxlat": 40.7304314, + "maxlon": -73.9978721 + }, + "nodes": [ + 42440553, + 8309478922, + 8309478974, + 42436793, + 8309478976, + 8309478969, + 42439537, + 8309478972, + 8309478964, + 1692433940 + ], + "geometry": [ + { "lat": 40.7293265, "lon": -73.9978721 }, + { "lat": 40.7293795, "lon": -73.9979816 }, + { "lat": 40.7296595, "lon": -73.9985503 }, + { "lat": 40.7296860, "lon": -73.9986042 }, + { "lat": 40.7297113, "lon": -73.9986558 }, + { "lat": 40.7300316, "lon": -73.9993080 }, + { "lat": 40.7300598, "lon": -73.9993655 }, + { "lat": 40.7300908, "lon": -73.9994286 }, + { "lat": 40.7304002, "lon": -74.0000590 }, + { "lat": 40.7304314, "lon": -74.0001225 } + ], + "tags": { + "alt_name:ko": "웨스트 3번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 3rd Street", + "name:ko": "웨스트 3rd 스트리트", + "name:ru": "Западная 3-я стрит", + "name_1": "West 3 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706833047, + "bounds": { + "minlat": 40.7304314, + "minlon": -74.0014113, + "maxlat": 40.7310625, + "maxlon": -74.0001225 + }, + "nodes": [ + 1692433940, + 8309478967, + 4016646249, + 4320108989, + 42430217 + ], + "geometry": [ + { "lat": 40.7304314, "lon": -74.0001225 }, + { "lat": 40.7304595, "lon": -74.0001798 }, + { "lat": 40.7309192, "lon": -74.0011159 }, + { "lat": 40.7310090, "lon": -74.0012990 }, + { "lat": 40.7310625, "lon": -74.0014113 } + ], + "tags": { + "alt_name:ko": "웨스트 3번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 3rd Street", + "name:ko": "웨스트 3rd 스트리트", + "name:ru": "Западная 3-я стрит", + "name_1": "West 3 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706953900, + "bounds": { + "minlat": 40.8722173, + "minlon": -74.0036682, + "maxlat": 40.8724033, + "maxlon": -74.0031869 + }, + "nodes": [ + 6643339518, + 6643339519, + 6643339520 + ], + "geometry": [ + { "lat": 40.8722173, "lon": -74.0031869 }, + { "lat": 40.8723514, "lon": -74.0036329 }, + { "lat": 40.8724033, "lon": -74.0036682 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 706957303, + "bounds": { + "minlat": 40.7434708, + "minlon": -73.9390513, + "maxlat": 40.7447061, + "maxlon": -73.9388203 + }, + "nodes": [ + 6643399521, + 6643399525, + 9293172173, + 8994094852, + 6643399522 + ], + "geometry": [ + { "lat": 40.7447061, "lon": -73.9388203 }, + { "lat": 40.7436619, "lon": -73.9390149 }, + { "lat": 40.7435898, "lon": -73.9390284 }, + { "lat": 40.7435527, "lon": -73.9390354 }, + { "lat": 40.7434708, "lon": -73.9390513 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 706957304, + "bounds": { + "minlat": 40.7442619, + "minlon": -73.9386074, + "maxlat": 40.7442880, + "maxlon": -73.9384144 + }, + "nodes": [ + 6643399524, + 9293172174, + 8994094856, + 5481972188 + ], + "geometry": [ + { "lat": 40.7442880, "lon": -73.9386074 }, + { "lat": 40.7442761, "lon": -73.9385150 }, + { "lat": 40.7442715, "lon": -73.9384907 }, + { "lat": 40.7442619, "lon": -73.9384144 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 706957305, + "bounds": { + "minlat": 40.7446315, + "minlon": -73.9390665, + "maxlat": 40.7448013, + "maxlon": -73.9385506 + }, + "nodes": [ + 5481972198, + 6643399521, + 9293172175 + ], + "geometry": [ + { "lat": 40.7446315, "lon": -73.9390665 }, + { "lat": 40.7447061, "lon": -73.9388203 }, + { "lat": 40.7448013, "lon": -73.9385506 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 706957306, + "bounds": { + "minlat": 40.7436267, + "minlon": -73.9392516, + "maxlat": 40.7436947, + "maxlon": -73.9387393 + }, + "nodes": [ + 5481972197, + 6643399525, + 5481972193 + ], + "geometry": [ + { "lat": 40.7436947, "lon": -73.9392516 }, + { "lat": 40.7436619, "lon": -73.9390149 }, + { "lat": 40.7436267, "lon": -73.9387393 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 706962628, + "bounds": { + "minlat": 40.7463577, + "minlon": -73.9405840, + "maxlat": 40.7477306, + "maxlon": -73.9397314 + }, + "nodes": [ + 6643455983, + 9982698545, + 9982698544, + 6643401273, + 6643455984 + ], + "geometry": [ + { "lat": 40.7477306, "lon": -73.9405840 }, + { "lat": 40.7476678, "lon": -73.9405471 }, + { "lat": 40.7476462, "lon": -73.9405341 }, + { "lat": 40.7467561, "lon": -73.9399741 }, + { "lat": 40.7463577, "lon": -73.9397314 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Dutch Kills Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 706964353, + "bounds": { + "minlat": 40.7466764, + "minlon": -73.9401855, + "maxlat": 40.7467561, + "maxlon": -73.9399741 + }, + "nodes": [ + 6643401273, + 11211159824, + 6643401274 + ], + "geometry": [ + { "lat": 40.7467561, "lon": -73.9399741 }, + { "lat": 40.7467219, "lon": -73.9400607 }, + { "lat": 40.7466764, "lon": -73.9401855 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 706964354, + "bounds": { + "minlat": 40.7462725, + "minlon": -73.9403314, + "maxlat": 40.7469573, + "maxlon": -73.9399717 + }, + "nodes": [ + 6643401275, + 6643401274, + 6643401276 + ], + "geometry": [ + { "lat": 40.7469573, "lon": -73.9403314 }, + { "lat": 40.7466764, "lon": -73.9401855 }, + { "lat": 40.7462725, "lon": -73.9399717 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 706999155, + "bounds": { + "minlat": 40.8693139, + "minlon": -73.9574701, + "maxlat": 40.8695074, + "maxlon": -73.9572725 + }, + "nodes": [ + 6643904894, + 6616072823 + ], + "geometry": [ + { "lat": 40.8695074, "lon": -73.9572725 }, + { "lat": 40.8693139, "lon": -73.9574701 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 707030139, + "bounds": { + "minlat": 40.7403319, + "minlon": -73.9595328, + "maxlat": 40.7403477, + "maxlon": -73.9594482 + }, + "nodes": [ + 6644311078, + 6644311079 + ], + "geometry": [ + { "lat": 40.7403477, "lon": -73.9595328 }, + { "lat": 40.7403319, "lon": -73.9594482 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 707030140, + "bounds": { + "minlat": 40.7397726, + "minlon": -73.9596127, + "maxlat": 40.7401161, + "maxlon": -73.9577991 + }, + "nodes": [ + 42823482, + 6644311080, + 11203867451, + 11211160536, + 11203867457, + 11203867456, + 11203867455, + 11203867454 + ], + "geometry": [ + { "lat": 40.7401161, "lon": -73.9596127 }, + { "lat": 40.7401012, "lon": -73.9595259 }, + { "lat": 40.7400929, "lon": -73.9594832 }, + { "lat": 40.7397782, "lon": -73.9579283 }, + { "lat": 40.7397756, "lon": -73.9579158 }, + { "lat": 40.7397726, "lon": -73.9578702 }, + { "lat": 40.7397837, "lon": -73.9578286 }, + { "lat": 40.7398031, "lon": -73.9577991 } + ], + "tags": { + "access": "destination", + "highway": "residential", + "maxspeed": "5 mph", + "name": "Malt Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 707030166, + "bounds": { + "minlat": 40.7422833, + "minlon": -73.9598748, + "maxlat": 40.7423756, + "maxlon": -73.9593875 + }, + "nodes": [ + 9982771556, + 9982771555 + ], + "geometry": [ + { "lat": 40.7423756, "lon": -73.9598748 }, + { "lat": 40.7422833, "lon": -73.9593875 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "source": "Bing", + "surface": "asphalt", + "turn:lanes:backward": "right" + } +}, +{ + "type": "way", + "id": 707062548, + "bounds": { + "minlat": 40.7389550, + "minlon": -73.9425426, + "maxlat": 40.7390221, + "maxlon": -73.9422022 + }, + "nodes": [ + 9982697923, + 277046510 + ], + "geometry": [ + { "lat": 40.7390221, "lon": -73.9425426 }, + { "lat": 40.7389550, "lon": -73.9422022 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "retractable", + "bridge:name": "Borden Avenue Bridge", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "no", + "surface": "concrete", + "wikidata": "Q48743392", + "wikipedia": "en:Borden Avenue Bridge" + } +}, +{ + "type": "way", + "id": 707402359, + "bounds": { + "minlat": 40.7668703, + "minlon": -73.9452122, + "maxlat": 40.7674576, + "maxlon": -73.9447830 + }, + "nodes": [ + 1241986580, + 8265114689, + 8265114747, + 6647688901 + ], + "geometry": [ + { "lat": 40.7668703, "lon": -73.9448076 }, + { "lat": 40.7669478, "lon": -73.9447830 }, + { "lat": 40.7671598, "lon": -73.9449615 }, + { "lat": 40.7674576, "lon": -73.9452122 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 707402363, + "bounds": { + "minlat": 40.7578383, + "minlon": -73.9534585, + "maxlat": 40.7581214, + "maxlon": -73.9530579 + }, + "nodes": [ + 6647688988, + 6647688987, + 6647688986, + 8265114369, + 6647688985, + 6647688984, + 6647688983, + 6647688982, + 6647688981, + 6647688980, + 6647688979, + 8265114370, + 6647688978, + 6647688977, + 6647688976 + ], + "geometry": [ + { "lat": 40.7581060, "lon": -73.9530579 }, + { "lat": 40.7581175, "lon": -73.9530987 }, + { "lat": 40.7581214, "lon": -73.9531851 }, + { "lat": 40.7581197, "lon": -73.9532336 }, + { "lat": 40.7581191, "lon": -73.9532491 }, + { "lat": 40.7581129, "lon": -73.9533020 }, + { "lat": 40.7580968, "lon": -73.9533477 }, + { "lat": 40.7580713, "lon": -73.9533985 }, + { "lat": 40.7580429, "lon": -73.9534250 }, + { "lat": 40.7580128, "lon": -73.9534443 }, + { "lat": 40.7579836, "lon": -73.9534575 }, + { "lat": 40.7579568, "lon": -73.9534582 }, + { "lat": 40.7579451, "lon": -73.9534585 }, + { "lat": 40.7579068, "lon": -73.9534544 }, + { "lat": 40.7578383, "lon": -73.9534336 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 707488994, + "bounds": { + "minlat": 40.8811807, + "minlon": -73.9990253, + "maxlat": 40.8813815, + "maxlon": -73.9987615 + }, + "nodes": [ + 6648422666, + 6648422667, + 6648422668, + 6648422669, + 6648422670, + 6648422671, + 6648422672, + 103123225, + 6648422655, + 6648422658, + 6648422659, + 6648422660, + 6648422661, + 6648422662, + 6648422663, + 6648422664, + 6648422665, + 6648422656, + 6648422657, + 6648422666 + ], + "geometry": [ + { "lat": 40.8811877, "lon": -73.9988438 }, + { "lat": 40.8812055, "lon": -73.9988051 }, + { "lat": 40.8812321, "lon": -73.9987765 }, + { "lat": 40.8812644, "lon": -73.9987615 }, + { "lat": 40.8812986, "lon": -73.9987617 }, + { "lat": 40.8813309, "lon": -73.9987770 }, + { "lat": 40.8813573, "lon": -73.9988058 }, + { "lat": 40.8813749, "lon": -73.9988447 }, + { "lat": 40.8813815, "lon": -73.9988861 }, + { "lat": 40.8813779, "lon": -73.9989282 }, + { "lat": 40.8813645, "lon": -73.9989666 }, + { "lat": 40.8813426, "lon": -73.9989976 }, + { "lat": 40.8813145, "lon": -73.9990178 }, + { "lat": 40.8812830, "lon": -73.9990253 }, + { "lat": 40.8812513, "lon": -73.9990194 }, + { "lat": 40.8812227, "lon": -73.9990006 }, + { "lat": 40.8812000, "lon": -73.9989707 }, + { "lat": 40.8811855, "lon": -73.9989330 }, + { "lat": 40.8811807, "lon": -73.9988881 }, + { "lat": 40.8811877, "lon": -73.9988438 } + ], + "tags": { + "highway": "residential", + "name": "Tulip Circle", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 707488995, + "bounds": { + "minlat": 40.8814629, + "minlon": -73.9999083, + "maxlat": 40.8816965, + "maxlon": -73.9996488 + }, + "nodes": [ + 103182854, + 6648422673, + 6648422674, + 6648422675, + 6648422676, + 6648422677, + 6648422678, + 6648422679, + 6648422680, + 6648422681, + 6648422682, + 6648422683, + 6648422684, + 6648422685, + 6648422686, + 6648422687, + 6648422688, + 6648422689, + 6648422690, + 6648422691, + 6648422692, + 103182854 + ], + "geometry": [ + { "lat": 40.8816965, "lon": -73.9997354 }, + { "lat": 40.8816870, "lon": -73.9997729 }, + { "lat": 40.8816723, "lon": -73.9998119 }, + { "lat": 40.8816482, "lon": -73.9998488 }, + { "lat": 40.8816219, "lon": -73.9998744 }, + { "lat": 40.8815908, "lon": -73.9998919 }, + { "lat": 40.8815660, "lon": -73.9999032 }, + { "lat": 40.8815412, "lon": -73.9999083 }, + { "lat": 40.8815203, "lon": -73.9999073 }, + { "lat": 40.8815009, "lon": -73.9998991 }, + { "lat": 40.8814815, "lon": -73.9998765 }, + { "lat": 40.8814683, "lon": -73.9998447 }, + { "lat": 40.8814629, "lon": -73.9998057 }, + { "lat": 40.8814652, "lon": -73.9997606 }, + { "lat": 40.8814815, "lon": -73.9997165 }, + { "lat": 40.8814994, "lon": -73.9996950 }, + { "lat": 40.8815311, "lon": -73.9996673 }, + { "lat": 40.8815645, "lon": -73.9996519 }, + { "lat": 40.8815893, "lon": -73.9996488 }, + { "lat": 40.8816087, "lon": -73.9996570 }, + { "lat": 40.8816402, "lon": -73.9996721 }, + { "lat": 40.8816965, "lon": -73.9997354 } + ], + "tags": { + "highway": "residential", + "name": "Azalea Court", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 707488996, + "bounds": { + "minlat": 40.8802829, + "minlon": -73.9979834, + "maxlat": 40.8805090, + "maxlon": -73.9976209 + }, + "nodes": [ + 103093360, + 6648422693, + 6648422694, + 6648422695, + 6648422696, + 6648422697, + 6648422698, + 6648422699, + 6648422700, + 6648422701, + 6648422702, + 6648422703, + 6648422704, + 6648422705, + 6648422706, + 6648422707, + 6648422708, + 6648422709, + 6648422710, + 6648422711, + 6648422712, + 6648422713, + 6648422714, + 6648422715, + 103093360 + ], + "geometry": [ + { "lat": 40.8804138, "lon": -73.9979834 }, + { "lat": 40.8804044, "lon": -73.9979579 }, + { "lat": 40.8802999, "lon": -73.9978041 }, + { "lat": 40.8802894, "lon": -73.9977868 }, + { "lat": 40.8802842, "lon": -73.9977678 }, + { "lat": 40.8802829, "lon": -73.9977419 }, + { "lat": 40.8802829, "lon": -73.9977160 }, + { "lat": 40.8802868, "lon": -73.9976935 }, + { "lat": 40.8802986, "lon": -73.9976659 }, + { "lat": 40.8803143, "lon": -73.9976451 }, + { "lat": 40.8803312, "lon": -73.9976313 }, + { "lat": 40.8803495, "lon": -73.9976209 }, + { "lat": 40.8803691, "lon": -73.9976209 }, + { "lat": 40.8803874, "lon": -73.9976261 }, + { "lat": 40.8804044, "lon": -73.9976330 }, + { "lat": 40.8804946, "lon": -73.9977384 }, + { "lat": 40.8805037, "lon": -73.9977592 }, + { "lat": 40.8805090, "lon": -73.9977886 }, + { "lat": 40.8805090, "lon": -73.9978128 }, + { "lat": 40.8805077, "lon": -73.9978352 }, + { "lat": 40.8805011, "lon": -73.9978560 }, + { "lat": 40.8804920, "lon": -73.9978802 }, + { "lat": 40.8804815, "lon": -73.9979061 }, + { "lat": 40.8804698, "lon": -73.9979268 }, + { "lat": 40.8804138, "lon": -73.9979834 } + ], + "tags": { + "highway": "residential", + "name": "Glenwood Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 707488997, + "bounds": { + "minlat": 40.8808259, + "minlon": -73.9981309, + "maxlat": 40.8810961, + "maxlon": -73.9978630 + }, + "nodes": [ + 103139830, + 6648422716, + 6648422717, + 6648422718, + 6648422719, + 6648422720, + 6648422721, + 6648422722, + 6648422723, + 6648422724, + 6648422725, + 6648422726, + 6648422727, + 6648422728, + 6648422729, + 6648422730, + 6648422731, + 6648422732, + 6648422733, + 6648422734, + 6648422735, + 6648422736, + 6648422737, + 6648422738, + 6648422739, + 6648422740, + 6648422741, + 6648422742, + 6648422743, + 103139830 + ], + "geometry": [ + { "lat": 40.8810961, "lon": -73.9979091 }, + { "lat": 40.8810932, "lon": -73.9979342 }, + { "lat": 40.8810831, "lon": -73.9979668 }, + { "lat": 40.8810731, "lon": -73.9979981 }, + { "lat": 40.8810621, "lon": -73.9980235 }, + { "lat": 40.8810476, "lon": -73.9980428 }, + { "lat": 40.8810275, "lon": -73.9980621 }, + { "lat": 40.8810074, "lon": -73.9980790 }, + { "lat": 40.8809855, "lon": -73.9980935 }, + { "lat": 40.8809308, "lon": -73.9981212 }, + { "lat": 40.8809144, "lon": -73.9981284 }, + { "lat": 40.8808989, "lon": -73.9981309 }, + { "lat": 40.8808852, "lon": -73.9981309 }, + { "lat": 40.8808715, "lon": -73.9981284 }, + { "lat": 40.8808596, "lon": -73.9981188 }, + { "lat": 40.8808469, "lon": -73.9981043 }, + { "lat": 40.8808368, "lon": -73.9980838 }, + { "lat": 40.8808295, "lon": -73.9980573 }, + { "lat": 40.8808259, "lon": -73.9980319 }, + { "lat": 40.8808277, "lon": -73.9980042 }, + { "lat": 40.8808323, "lon": -73.9979837 }, + { "lat": 40.8808423, "lon": -73.9979632 }, + { "lat": 40.8808560, "lon": -73.9979451 }, + { "lat": 40.8808952, "lon": -73.9979125 }, + { "lat": 40.8809718, "lon": -73.9978703 }, + { "lat": 40.8809892, "lon": -73.9978642 }, + { "lat": 40.8810083, "lon": -73.9978630 }, + { "lat": 40.8810247, "lon": -73.9978666 }, + { "lat": 40.8810421, "lon": -73.9978727 }, + { "lat": 40.8810961, "lon": -73.9979091 } + ], + "tags": { + "highway": "residential", + "name": "Dogwood Lane", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 707488998, + "bounds": { + "minlat": 40.8806826, + "minlon": -73.9979125, + "maxlat": 40.8808952, + "maxlon": -73.9974293 + }, + "nodes": [ + 6648422738, + 6786804610, + 6648422744, + 6648422745, + 6786804288, + 6648422746 + ], + "geometry": [ + { "lat": 40.8808952, "lon": -73.9979125 }, + { "lat": 40.8808777, "lon": -73.9978578 }, + { "lat": 40.8808172, "lon": -73.9976694 }, + { "lat": 40.8807357, "lon": -73.9975975 }, + { "lat": 40.8806909, "lon": -73.9974555 }, + { "lat": 40.8806826, "lon": -73.9974293 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 707488999, + "bounds": { + "minlat": 40.8809048, + "minlon": -74.0002376, + "maxlat": 40.8811095, + "maxlon": -74.0000041 + }, + "nodes": [ + 103246038, + 6648422747, + 6648422748, + 6648422749, + 6648422750, + 6648422751, + 6648422752, + 6648422753, + 6648422754, + 6648422755, + 6648422756, + 6648422757, + 6648422758, + 6648422759, + 6648422760, + 6648422761, + 6648422762, + 6648422763, + 6648422764, + 6648422765, + 6648422766, + 6648422767, + 6648422768, + 6648422769, + 6648422770, + 6648422771, + 6648422772, + 6648422773, + 6648422774, + 6648422775, + 6648422776, + 6648422777, + 6648422778, + 6648422779, + 6648422780, + 6648422781, + 6648422782, + 6648422783, + 103246038 + ], + "geometry": [ + { "lat": 40.8809219, "lon": -74.0002197 }, + { "lat": 40.8809134, "lon": -74.0002035 }, + { "lat": 40.8809081, "lon": -74.0001835 }, + { "lat": 40.8809055, "lon": -74.0001660 }, + { "lat": 40.8809048, "lon": -74.0001417 }, + { "lat": 40.8809062, "lon": -74.0001216 }, + { "lat": 40.8809101, "lon": -74.0000990 }, + { "lat": 40.8809180, "lon": -74.0000798 }, + { "lat": 40.8809325, "lon": -74.0000572 }, + { "lat": 40.8809470, "lon": -74.0000432 }, + { "lat": 40.8809621, "lon": -74.0000310 }, + { "lat": 40.8809747, "lon": -74.0000214 }, + { "lat": 40.8809872, "lon": -74.0000153 }, + { "lat": 40.8809964, "lon": -74.0000119 }, + { "lat": 40.8810056, "lon": -74.0000084 }, + { "lat": 40.8810189, "lon": -74.0000050 }, + { "lat": 40.8810321, "lon": -74.0000041 }, + { "lat": 40.8810447, "lon": -74.0000041 }, + { "lat": 40.8810612, "lon": -74.0000076 }, + { "lat": 40.8810797, "lon": -74.0000198 }, + { "lat": 40.8810923, "lon": -74.0000347 }, + { "lat": 40.8811015, "lon": -74.0000557 }, + { "lat": 40.8811075, "lon": -74.0000740 }, + { "lat": 40.8811095, "lon": -74.0000915 }, + { "lat": 40.8811095, "lon": -74.0001116 }, + { "lat": 40.8811061, "lon": -74.0001335 }, + { "lat": 40.8811002, "lon": -74.0001562 }, + { "lat": 40.8810896, "lon": -74.0001798 }, + { "lat": 40.8810777, "lon": -74.0001965 }, + { "lat": 40.8810632, "lon": -74.0002096 }, + { "lat": 40.8810460, "lon": -74.0002201 }, + { "lat": 40.8810262, "lon": -74.0002279 }, + { "lat": 40.8810063, "lon": -74.0002341 }, + { "lat": 40.8809918, "lon": -74.0002358 }, + { "lat": 40.8809759, "lon": -74.0002376 }, + { "lat": 40.8809587, "lon": -74.0002367 }, + { "lat": 40.8809448, "lon": -74.0002358 }, + { "lat": 40.8809309, "lon": -74.0002314 }, + { "lat": 40.8809219, "lon": -74.0002197 } + ], + "tags": { + "highway": "residential", + "name": "Sanford Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 707489000, + "bounds": { + "minlat": 40.8806532, + "minlon": -73.9994067, + "maxlat": 40.8808714, + "maxlon": -73.9991475 + }, + "nodes": [ + 6648422785, + 6648422786, + 6648422787, + 6648422788, + 6648422789, + 6648422790, + 6648422791, + 6648422792, + 6648422793, + 6648422794, + 6648422795, + 6648422796, + 6648422797, + 6648422798, + 6648422799, + 6648422800, + 6648422801, + 6648422802, + 6648422803, + 6648422804, + 6648422805, + 6648422806, + 6648422807, + 6648422808, + 6648422809, + 6648422810, + 6648422811, + 6648422785 + ], + "geometry": [ + { "lat": 40.8806839, "lon": -73.9994067 }, + { "lat": 40.8806732, "lon": -73.9993894 }, + { "lat": 40.8806675, "lon": -73.9993705 }, + { "lat": 40.8806570, "lon": -73.9993226 }, + { "lat": 40.8806532, "lon": -73.9992886 }, + { "lat": 40.8806542, "lon": -73.9992621 }, + { "lat": 40.8806580, "lon": -73.9992394 }, + { "lat": 40.8806666, "lon": -73.9992180 }, + { "lat": 40.8806771, "lon": -73.9992054 }, + { "lat": 40.8806866, "lon": -73.9991979 }, + { "lat": 40.8807028, "lon": -73.9991865 }, + { "lat": 40.8807819, "lon": -73.9991525 }, + { "lat": 40.8807981, "lon": -73.9991500 }, + { "lat": 40.8808114, "lon": -73.9991475 }, + { "lat": 40.8808295, "lon": -73.9991475 }, + { "lat": 40.8808428, "lon": -73.9991538 }, + { "lat": 40.8808505, "lon": -73.9991676 }, + { "lat": 40.8808571, "lon": -73.9991890 }, + { "lat": 40.8808705, "lon": -73.9992420 }, + { "lat": 40.8808714, "lon": -73.9992596 }, + { "lat": 40.8808714, "lon": -73.9992772 }, + { "lat": 40.8808657, "lon": -73.9992924 }, + { "lat": 40.8808590, "lon": -73.9993024 }, + { "lat": 40.8808505, "lon": -73.9993138 }, + { "lat": 40.8808381, "lon": -73.9993239 }, + { "lat": 40.8808257, "lon": -73.9993339 }, + { "lat": 40.8808085, "lon": -73.9993428 }, + { "lat": 40.8806839, "lon": -73.9994067 } + ], + "tags": { + "highway": "residential", + "name": "Delavan Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 707654587, + "bounds": { + "minlat": 40.7916046, + "minlon": -74.0039305, + "maxlat": 40.7917303, + "maxlon": -74.0035801 + }, + "nodes": [ + 6650006663, + 7468583878, + 6650006664, + 6650006668 + ], + "geometry": [ + { "lat": 40.7917303, "lon": -74.0039305 }, + { "lat": 40.7917038, "lon": -74.0038723 }, + { "lat": 40.7916046, "lon": -74.0036543 }, + { "lat": 40.7916926, "lon": -74.0035801 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 707654588, + "bounds": { + "minlat": 40.7917434, + "minlon": -74.0035364, + "maxlat": 40.7917902, + "maxlon": -74.0034990 + }, + "nodes": [ + 6650006665, + 6650006666 + ], + "geometry": [ + { "lat": 40.7917434, "lon": -74.0035364 }, + { "lat": 40.7917902, "lon": -74.0034990 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 707654589, + "bounds": { + "minlat": 40.7917902, + "minlon": -74.0034990, + "maxlat": 40.7918508, + "maxlon": -74.0034457 + }, + "nodes": [ + 6650006666, + 7468583877, + 6650006667 + ], + "geometry": [ + { "lat": 40.7917902, "lon": -74.0034990 }, + { "lat": 40.7918200, "lon": -74.0034728 }, + { "lat": 40.7918508, "lon": -74.0034457 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 707654590, + "bounds": { + "minlat": 40.7916926, + "minlon": -74.0035801, + "maxlat": 40.7917434, + "maxlon": -74.0035364 + }, + "nodes": [ + 6650006668, + 6650006665 + ], + "geometry": [ + { "lat": 40.7916926, "lon": -74.0035801 }, + { "lat": 40.7917434, "lon": -74.0035364 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 707771436, + "bounds": { + "minlat": 40.8796996, + "minlon": -74.0100477, + "maxlat": 40.8799863, + "maxlon": -74.0088783 + }, + "nodes": [ + 6650620615, + 6650620616, + 6650620617, + 6650620618 + ], + "geometry": [ + { "lat": 40.8799863, "lon": -74.0100477 }, + { "lat": 40.8798355, "lon": -74.0095845 }, + { "lat": 40.8798986, "lon": -74.0095481 }, + { "lat": 40.8796996, "lon": -74.0088783 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 708347494, + "bounds": { + "minlat": 40.7965540, + "minlon": -73.9946290, + "maxlat": 40.7970464, + "maxlon": -73.9943469 + }, + "nodes": [ + 103861841, + 103861842, + 103861843 + ], + "geometry": [ + { "lat": 40.7965540, "lon": -73.9946290 }, + { "lat": 40.7966310, "lon": -73.9946040 }, + { "lat": 40.7970464, "lon": -73.9943469 } + ], + "tags": { + "highway": "residential", + "name": "Riverview Circle", + "name_1": "River View Circle", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Riverview", + "tiger:name_base_1": "River View", + "tiger:name_type": "Cir", + "tiger:name_type_1": "Cir", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 708347496, + "bounds": { + "minlat": 40.7971209, + "minlon": -73.9942895, + "maxlat": 40.7973404, + "maxlon": -73.9933296 + }, + "nodes": [ + 2308993447, + 103879356, + 103879357, + 103859512 + ], + "geometry": [ + { "lat": 40.7971209, "lon": -73.9942895 }, + { "lat": 40.7972990, "lon": -73.9940910 }, + { "lat": 40.7973404, "lon": -73.9939474 }, + { "lat": 40.7971641, "lon": -73.9933296 } + ], + "tags": { + "highway": "residential", + "name": "Cove Lane North", + "name_1": "North Cove Lane", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Cove", + "tiger:name_base_1": "Cove", + "tiger:name_direction_prefix_1": "N", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Ln", + "tiger:name_type_1": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 708353351, + "bounds": { + "minlat": 40.7545676, + "minlon": -74.0022379, + "maxlat": 40.7550212, + "maxlon": -74.0011781 + }, + "nodes": [ + 11141800809, + 6656258478, + 4900161556 + ], + "geometry": [ + { "lat": 40.7545676, "lon": -74.0011781 }, + { "lat": 40.7547660, "lon": -74.0016290 }, + { "lat": 40.7550212, "lon": -74.0022379 } + ], + "tags": { + "highway": "unclassified", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left;through|through" + } +}, +{ + "type": "way", + "id": 708353352, + "bounds": { + "minlat": 40.7545174, + "minlon": -74.0010655, + "maxlat": 40.7558116, + "maxlon": -73.9999743 + }, + "nodes": [ + 6636032331, + 11141800594, + 6636002370, + 3270031002, + 5165644104, + 10691086274, + 13146582777, + 3270031028 + ], + "geometry": [ + { "lat": 40.7545174, "lon": -74.0010655 }, + { "lat": 40.7545755, "lon": -74.0010160 }, + { "lat": 40.7550746, "lon": -74.0005925 }, + { "lat": 40.7551660, "lon": -74.0005225 }, + { "lat": 40.7552445, "lon": -74.0004545 }, + { "lat": 40.7557516, "lon": -74.0000253 }, + { "lat": 40.7557524, "lon": -74.0000244 }, + { "lat": 40.7558116, "lon": -73.9999743 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Hudson Boulevard East", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q16980469", + "wikipedia": "en:Hudson Park and Boulevard" + } +}, +{ + "type": "way", + "id": 708353365, + "bounds": { + "minlat": 40.7525159, + "minlon": -74.0022894, + "maxlat": 40.7526267, + "maxlon": -74.0020293 + }, + "nodes": [ + 6656308648, + 6656308649 + ], + "geometry": [ + { "lat": 40.7526267, "lon": -74.0022894 }, + { "lat": 40.7525159, "lon": -74.0020293 } + ], + "tags": { + "bicycle": "yes", + "covered": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 708353366, + "bounds": { + "minlat": 40.7523103, + "minlon": -74.0020293, + "maxlat": 40.7525159, + "maxlon": -74.0015407 + }, + "nodes": [ + 6656308649, + 11512412931, + 1918048623, + 11327620169, + 9497340689 + ], + "geometry": [ + { "lat": 40.7525159, "lon": -74.0020293 }, + { "lat": 40.7524970, "lon": -74.0019849 }, + { "lat": 40.7524126, "lon": -74.0017869 }, + { "lat": 40.7523765, "lon": -74.0016999 }, + { "lat": 40.7523103, "lon": -74.0015407 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 708353367, + "bounds": { + "minlat": 40.7520747, + "minlon": -74.0012032, + "maxlat": 40.7521702, + "maxlon": -74.0009801 + }, + "nodes": [ + 2823833594, + 9421123764, + 42437693 + ], + "geometry": [ + { "lat": 40.7521702, "lon": -74.0012032 }, + { "lat": 40.7521336, "lon": -74.0011176 }, + { "lat": 40.7520747, "lon": -74.0009801 } + ], + "tags": { + "bicycle": "yes", + "covered": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 708353983, + "bounds": { + "minlat": 40.7542445, + "minlon": -74.0029219, + "maxlat": 40.7547660, + "maxlon": -74.0016290 + }, + "nodes": [ + 6656315591, + 12152012264, + 6656315595, + 8261122131, + 8261122132, + 8261122128, + 11141800565, + 8261122130, + 6656258480, + 11136560295, + 11136560294, + 12152012265, + 9913533690, + 8261122511, + 6656258478 + ], + "geometry": [ + { "lat": 40.7545211, "lon": -74.0029219 }, + { "lat": 40.7544606, "lon": -74.0027760 }, + { "lat": 40.7542654, "lon": -74.0023052 }, + { "lat": 40.7542533, "lon": -74.0022665 }, + { "lat": 40.7542476, "lon": -74.0022311 }, + { "lat": 40.7542445, "lon": -74.0021993 }, + { "lat": 40.7542466, "lon": -74.0021850 }, + { "lat": 40.7542499, "lon": -74.0021633 }, + { "lat": 40.7542602, "lon": -74.0021299 }, + { "lat": 40.7542788, "lon": -74.0020930 }, + { "lat": 40.7543054, "lon": -74.0020578 }, + { "lat": 40.7543339, "lon": -74.0020306 }, + { "lat": 40.7546848, "lon": -74.0017058 }, + { "lat": 40.7547099, "lon": -74.0016826 }, + { "lat": 40.7547660, "lon": -74.0016290 } + ], + "tags": { + "bicycle": "yes", + "foot": "yes", + "highway": "living_street", + "lanes": "1", + "motor_vehicle": "destination", + "name": "Hudson Boulevard West", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 709066787, + "bounds": { + "minlat": 40.7424742, + "minlon": -73.9538853, + "maxlat": 40.7426931, + "maxlon": -73.9527543 + }, + "nodes": [ + 42826926, + 5033544743, + 5033544740, + 10225954368, + 42844233 + ], + "geometry": [ + { "lat": 40.7426931, "lon": -73.9538853 }, + { "lat": 40.7425810, "lon": -73.9533061 }, + { "lat": 40.7425496, "lon": -73.9531439 }, + { "lat": 40.7425168, "lon": -73.9529536 }, + { "lat": 40.7424742, "lon": -73.9527543 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "50th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "50th", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 709066788, + "bounds": { + "minlat": 40.7426931, + "minlon": -73.9540991, + "maxlat": 40.7427367, + "maxlon": -73.9538853 + }, + "nodes": [ + 6593145588, + 42826926 + ], + "geometry": [ + { "lat": 40.7427367, "lon": -73.9540991 }, + { "lat": 40.7426931, "lon": -73.9538853 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "50th Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "50th", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 709066789, + "bounds": { + "minlat": 40.7427318, + "minlon": -73.9510573, + "maxlat": 40.7428631, + "maxlon": -73.9504735 + }, + "nodes": [ + 6595149753, + 9179070602, + 42832462 + ], + "geometry": [ + { "lat": 40.7428631, "lon": -73.9510573 }, + { "lat": 40.7427518, "lon": -73.9505816 }, + { "lat": 40.7427318, "lon": -73.9504735 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 709355577, + "bounds": { + "minlat": 40.7688168, + "minlon": -73.9813914, + "maxlat": 40.7699178, + "maxlon": -73.9805837 + }, + "nodes": [ + 9170790593, + 9170790594, + 9170790592, + 7837165575, + 42421969, + 7837165545, + 7837165520, + 5706568625 + ], + "geometry": [ + { "lat": 40.7688168, "lon": -73.9813914 }, + { "lat": 40.7688860, "lon": -73.9813567 }, + { "lat": 40.7689391, "lon": -73.9813233 }, + { "lat": 40.7692409, "lon": -73.9811003 }, + { "lat": 40.7692956, "lon": -73.9810586 }, + { "lat": 40.7693514, "lon": -73.9810148 }, + { "lat": 40.7698597, "lon": -73.9806229 }, + { "lat": 40.7699178, "lon": -73.9805837 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 709899700, + "bounds": { + "minlat": 40.8625031, + "minlon": -73.9604472, + "maxlat": 40.8632941, + "maxlon": -73.9591282 + }, + "nodes": [ + 103281348, + 103238939, + 103255714 + ], + "geometry": [ + { "lat": 40.8625031, "lon": -73.9591282 }, + { "lat": 40.8628977, "lon": -73.9597786 }, + { "lat": 40.8632941, "lon": -73.9604472 } + ], + "tags": { + "highway": "residential", + "name": "Washington Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Washington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 709899701, + "bounds": { + "minlat": 40.8625031, + "minlon": -73.9591282, + "maxlat": 40.8645559, + "maxlon": -73.9563684 + }, + "nodes": [ + 103281348, + 103302556, + 440215035, + 103302560, + 103302562, + 103302564, + 103302566, + 103302568, + 103302572, + 103195238 + ], + "geometry": [ + { "lat": 40.8625031, "lon": -73.9591282 }, + { "lat": 40.8635530, "lon": -73.9579830 }, + { "lat": 40.8636180, "lon": -73.9579290 }, + { "lat": 40.8644882, "lon": -73.9572246 }, + { "lat": 40.8645239, "lon": -73.9571872 }, + { "lat": 40.8645529, "lon": -73.9571272 }, + { "lat": 40.8645559, "lon": -73.9570670 }, + { "lat": 40.8645462, "lon": -73.9570020 }, + { "lat": 40.8645130, "lon": -73.9569397 }, + { "lat": 40.8641941, "lon": -73.9563684 } + ], + "tags": { + "highway": "residential", + "name": "8th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "8th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 710067903, + "bounds": { + "minlat": 40.8725690, + "minlon": -73.9542096, + "maxlat": 40.8728002, + "maxlon": -73.9537954 + }, + "nodes": [ + 6676163364, + 6676163372 + ], + "geometry": [ + { "lat": 40.8725690, "lon": -73.9537954 }, + { "lat": 40.8728002, "lon": -73.9542096 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 710067904, + "bounds": { + "minlat": 40.8718901, + "minlon": -73.9549516, + "maxlat": 40.8721691, + "maxlon": -73.9544383 + }, + "nodes": [ + 6676163370, + 11083194407, + 6676163368, + 6676163367 + ], + "geometry": [ + { "lat": 40.8721691, "lon": -73.9549516 }, + { "lat": 40.8721494, "lon": -73.9549143 }, + { "lat": 40.8721181, "lon": -73.9548551 }, + { "lat": 40.8718901, "lon": -73.9544383 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 710067905, + "bounds": { + "minlat": 40.8721691, + "minlon": -73.9557803, + "maxlat": 40.8732985, + "maxlon": -73.9548342 + }, + "nodes": [ + 6676163371, + 6676163365, + 10081535279, + 10081535283, + 10081535275, + 10081535271, + 6676163366, + 6676163369, + 6676163370 + ], + "geometry": [ + { "lat": 40.8731418, "lon": -73.9548342 }, + { "lat": 40.8732985, "lon": -73.9551209 }, + { "lat": 40.8731642, "lon": -73.9552549 }, + { "lat": 40.8730238, "lon": -73.9553949 }, + { "lat": 40.8729007, "lon": -73.9555176 }, + { "lat": 40.8727611, "lon": -73.9556568 }, + { "lat": 40.8726373, "lon": -73.9557803 }, + { "lat": 40.8722299, "lon": -73.9550669 }, + { "lat": 40.8721691, "lon": -73.9549516 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 710067906, + "bounds": { + "minlat": 40.8728002, + "minlon": -73.9548342, + "maxlat": 40.8731418, + "maxlon": -73.9542096 + }, + "nodes": [ + 6676163372, + 11083194406, + 6676163371 + ], + "geometry": [ + { "lat": 40.8728002, "lon": -73.9542096 }, + { "lat": 40.8728293, "lon": -73.9542628 }, + { "lat": 40.8731418, "lon": -73.9548342 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 710371834, + "bounds": { + "minlat": 40.7116499, + "minlon": -73.9969569, + "maxlat": 40.7120847, + "maxlon": -73.9968626 + }, + "nodes": [ + 42437124, + 11504448343, + 4158807591, + 11504448342, + 12339006655 + ], + "geometry": [ + { "lat": 40.7120847, "lon": -73.9969466 }, + { "lat": 40.7120349, "lon": -73.9969554 }, + { "lat": 40.7119963, "lon": -73.9969569 }, + { "lat": 40.7119673, "lon": -73.9969536 }, + { "lat": 40.7116499, "lon": -73.9968626 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Street", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 스트리트", + "oneway": "yes", + "parking:left": "street_side", + "parking:left:direction": "back_in", + "parking:left:orientation": "diagonal", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 710571377, + "bounds": { + "minlat": 40.7963169, + "minlon": -73.9494370, + "maxlat": 40.7966725, + "maxlon": -73.9488163 + }, + "nodes": [ + 6680686117, + 6680686118, + 6680686119, + 6680686120, + 7123798411, + 7123798416, + 7123798389, + 7123741176, + 7123741184, + 6680686121, + 7123798398, + 6680686122, + 6961054461, + 2762352144, + 2762352102, + 2762352166, + 6680686124, + 6961054475, + 7123798421, + 7123741183, + 7123798399, + 7123798397, + 7123798413, + 7123741182, + 7123798407, + 6680686117 + ], + "geometry": [ + { "lat": 40.7966070, "lon": -73.9489479 }, + { "lat": 40.7965781, "lon": -73.9489947 }, + { "lat": 40.7965537, "lon": -73.9490895 }, + { "lat": 40.7965477, "lon": -73.9492159 }, + { "lat": 40.7965603, "lon": -73.9492684 }, + { "lat": 40.7965782, "lon": -73.9493033 }, + { "lat": 40.7965870, "lon": -73.9493193 }, + { "lat": 40.7965924, "lon": -73.9493352 }, + { "lat": 40.7965938, "lon": -73.9493629 }, + { "lat": 40.7965879, "lon": -73.9493793 }, + { "lat": 40.7965261, "lon": -73.9494149 }, + { "lat": 40.7964823, "lon": -73.9494370 }, + { "lat": 40.7964589, "lon": -73.9493858 }, + { "lat": 40.7964166, "lon": -73.9492743 }, + { "lat": 40.7963169, "lon": -73.9490333 }, + { "lat": 40.7965878, "lon": -73.9488371 }, + { "lat": 40.7966104, "lon": -73.9488264 }, + { "lat": 40.7966308, "lon": -73.9488163 }, + { "lat": 40.7966565, "lon": -73.9488449 }, + { "lat": 40.7966631, "lon": -73.9488508 }, + { "lat": 40.7966725, "lon": -73.9488591 }, + { "lat": 40.7966716, "lon": -73.9488711 }, + { "lat": 40.7966663, "lon": -73.9488803 }, + { "lat": 40.7966505, "lon": -73.9489010 }, + { "lat": 40.7966308, "lon": -73.9489208 }, + { "lat": 40.7966070, "lon": -73.9489479 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 710571381, + "bounds": { + "minlat": 40.7611001, + "minlon": -73.9694138, + "maxlat": 40.7613339, + "maxlon": -73.9690351 + }, + "nodes": [ + 2657430052, + 6680686161, + 2657430068, + 2657430072, + 2657430083, + 2657430088, + 2718017801, + 2657430096, + 2657430093, + 2657430089, + 2657430086, + 2657430077, + 2657430066, + 2657430060, + 2657430056, + 2657430052 + ], + "geometry": [ + { "lat": 40.7612089, "lon": -73.9694138 }, + { "lat": 40.7611001, "lon": -73.9691776 }, + { "lat": 40.7612842, "lon": -73.9690351 }, + { "lat": 40.7612959, "lon": -73.9690595 }, + { "lat": 40.7613111, "lon": -73.9690942 }, + { "lat": 40.7613263, "lon": -73.9691274 }, + { "lat": 40.7613339, "lon": -73.9691637 }, + { "lat": 40.7613338, "lon": -73.9692040 }, + { "lat": 40.7613290, "lon": -73.9692359 }, + { "lat": 40.7613214, "lon": -73.9692753 }, + { "lat": 40.7613116, "lon": -73.9693041 }, + { "lat": 40.7612966, "lon": -73.9693340 }, + { "lat": 40.7612755, "lon": -73.9693611 }, + { "lat": 40.7612542, "lon": -73.9693785 }, + { "lat": 40.7612331, "lon": -73.9693949 }, + { "lat": 40.7612089, "lon": -73.9694138 } + ], + "tags": { + "area": "yes", + "area:highway": "pedestrian", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 710571382, + "bounds": { + "minlat": 40.7650784, + "minlon": -73.9613510, + "maxlat": 40.7651705, + "maxlon": -73.9613336 + }, + "nodes": [ + 6680686164, + 10597902946, + 6914116750, + 6914116758 + ], + "geometry": [ + { "lat": 40.7650784, "lon": -73.9613510 }, + { "lat": 40.7651470, "lon": -73.9613368 }, + { "lat": 40.7651579, "lon": -73.9613346 }, + { "lat": 40.7651705, "lon": -73.9613336 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 710571383, + "bounds": { + "minlat": 40.7664607, + "minlon": -73.9612694, + "maxlat": 40.7667656, + "maxlon": -73.9607473 + }, + "nodes": [ + 6680686171, + 10166238423, + 6680686172, + 6680686173, + 6680686174, + 6680686175, + 10166238424, + 6680686176 + ], + "geometry": [ + { "lat": 40.7666809, "lon": -73.9612694 }, + { "lat": 40.7667326, "lon": -73.9611943 }, + { "lat": 40.7667642, "lon": -73.9611485 }, + { "lat": 40.7667656, "lon": -73.9610823 }, + { "lat": 40.7666542, "lon": -73.9607937 }, + { "lat": 40.7666083, "lon": -73.9607514 }, + { "lat": 40.7665394, "lon": -73.9607494 }, + { "lat": 40.7664607, "lon": -73.9607473 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 710571385, + "bounds": { + "minlat": 40.7670353, + "minlon": -73.9621502, + "maxlat": 40.7673731, + "maxlon": -73.9617308 + }, + "nodes": [ + 2723796476, + 2723796560, + 2723796526, + 2723796513, + 6680686183, + 2723796476 + ], + "geometry": [ + { "lat": 40.7671453, "lon": -73.9621502 }, + { "lat": 40.7673731, "lon": -73.9619848 }, + { "lat": 40.7672993, "lon": -73.9618088 }, + { "lat": 40.7672665, "lon": -73.9617308 }, + { "lat": 40.7670353, "lon": -73.9618883 }, + { "lat": 40.7671453, "lon": -73.9621502 } + ], + "tags": { + "area": "yes", + "area:highway": "pedestrian", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 710571387, + "bounds": { + "minlat": 40.7589600, + "minlon": -73.9694455, + "maxlat": 40.7593687, + "maxlon": -73.9684914 + }, + "nodes": [ + 42448379, + 11336621690, + 5266098185 + ], + "geometry": [ + { "lat": 40.7589600, "lon": -73.9684914 }, + { "lat": 40.7590133, "lon": -73.9686160 }, + { "lat": 40.7593687, "lon": -73.9694455 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 55th Street", + "name:ru": "Восточная 55-я стрит", + "name_1": "East 55 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "10", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 710571388, + "bounds": { + "minlat": 40.7589600, + "minlon": -73.9684914, + "maxlat": 40.7596014, + "maxlon": -73.9680635 + }, + "nodes": [ + 42448379, + 10125255947, + 6680686988, + 9140903900, + 42443615 + ], + "geometry": [ + { "lat": 40.7589600, "lon": -73.9684914 }, + { "lat": 40.7590254, "lon": -73.9684619 }, + { "lat": 40.7592413, "lon": -73.9683323 }, + { "lat": 40.7595402, "lon": -73.9681071 }, + { "lat": 40.7596014, "lon": -73.9680635 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 710571389, + "bounds": { + "minlat": 40.7589600, + "minlon": -73.9684914, + "maxlat": 40.7595538, + "maxlon": -73.9679487 + }, + "nodes": [ + 42448379, + 10125255948, + 6680686986, + 11043182110, + 9140903899, + 6680686184 + ], + "geometry": [ + { "lat": 40.7589600, "lon": -73.9684914 }, + { "lat": 40.7590137, "lon": -73.9684342 }, + { "lat": 40.7591949, "lon": -73.9682422 }, + { "lat": 40.7592078, "lon": -73.9682316 }, + { "lat": 40.7594939, "lon": -73.9679977 }, + { "lat": 40.7595538, "lon": -73.9679487 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 710571390, + "bounds": { + "minlat": 40.7600623, + "minlon": -73.9674539, + "maxlat": 40.7602235, + "maxlon": -73.9670715 + }, + "nodes": [ + 6680686985, + 10125255944, + 11043134785 + ], + "geometry": [ + { "lat": 40.7602235, "lon": -73.9674539 }, + { "lat": 40.7601992, "lon": -73.9673964 }, + { "lat": 40.7600623, "lon": -73.9670715 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 710571391, + "bounds": { + "minlat": 40.7602235, + "minlon": -73.9674539, + "maxlat": 40.7609399, + "maxlon": -73.9670376 + }, + "nodes": [ + 6680686985, + 6680686987, + 9177540204, + 8133385386, + 9649576882, + 42449971 + ], + "geometry": [ + { "lat": 40.7602235, "lon": -73.9674539 }, + { "lat": 40.7603231, "lon": -73.9673852 }, + { "lat": 40.7605454, "lon": -73.9672227 }, + { "lat": 40.7607126, "lon": -73.9671026 }, + { "lat": 40.7608634, "lon": -73.9670590 }, + { "lat": 40.7609399, "lon": -73.9670376 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 710571392, + "bounds": { + "minlat": 40.7566914, + "minlon": -73.9679487, + "maxlat": 40.7595538, + "maxlon": -73.9611654 + }, + "nodes": [ + 6680686184, + 10125255946, + 9216586542, + 42442960, + 9216586545, + 8393007180, + 8393007191, + 10121802241, + 42443618, + 10121802242, + 9988058436, + 13701222341, + 7248638330, + 42440567 + ], + "geometry": [ + { "lat": 40.7595538, "lon": -73.9679487 }, + { "lat": 40.7595271, "lon": -73.9678840 }, + { "lat": 40.7587002, "lon": -73.9659221 }, + { "lat": 40.7586470, "lon": -73.9657958 }, + { "lat": 40.7585865, "lon": -73.9656513 }, + { "lat": 40.7584664, "lon": -73.9653695 }, + { "lat": 40.7582417, "lon": -73.9648430 }, + { "lat": 40.7577027, "lon": -73.9635653 }, + { "lat": 40.7576367, "lon": -73.9634088 }, + { "lat": 40.7575820, "lon": -73.9632775 }, + { "lat": 40.7575025, "lon": -73.9630914 }, + { "lat": 40.7573185, "lon": -73.9626542 }, + { "lat": 40.7567462, "lon": -73.9612943 }, + { "lat": 40.7566914, "lon": -73.9611654 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 56th Street", + "name:ru": "Восточная 56-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 710571393, + "bounds": { + "minlat": 40.7595538, + "minlon": -73.9679487, + "maxlat": 40.7602235, + "maxlon": -73.9674539 + }, + "nodes": [ + 6680686184, + 9140903902, + 10125255942, + 6680686985 + ], + "geometry": [ + { "lat": 40.7595538, "lon": -73.9679487 }, + { "lat": 40.7596109, "lon": -73.9679054 }, + { "lat": 40.7601247, "lon": -73.9675269 }, + { "lat": 40.7602235, "lon": -73.9674539 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through;right|right", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 710686782, + "bounds": { + "minlat": 40.8768014, + "minlon": -74.0073127, + "maxlat": 40.8775164, + "maxlon": -74.0064840 + }, + "nodes": [ + 4469436719, + 6681614083, + 6681614084, + 6681618585, + 6681618586, + 6681618587, + 6681618588, + 6681618589, + 6681618590, + 6681618591, + 6681618592, + 6681618593, + 6681618594 + ], + "geometry": [ + { "lat": 40.8775164, "lon": -74.0073127 }, + { "lat": 40.8773152, "lon": -74.0065998 }, + { "lat": 40.8773013, "lon": -74.0065740 }, + { "lat": 40.8772860, "lon": -74.0065483 }, + { "lat": 40.8772680, "lon": -74.0065336 }, + { "lat": 40.8772458, "lon": -74.0065245 }, + { "lat": 40.8772208, "lon": -74.0065208 }, + { "lat": 40.8771944, "lon": -74.0065189 }, + { "lat": 40.8771513, "lon": -74.0065263 }, + { "lat": 40.8771166, "lon": -74.0065373 }, + { "lat": 40.8770763, "lon": -74.0065520 }, + { "lat": 40.8768527, "lon": -74.0066640 }, + { "lat": 40.8768014, "lon": -74.0064840 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 711147864, + "bounds": { + "minlat": 40.7514585, + "minlon": -74.0033228, + "maxlat": 40.7522624, + "maxlon": -74.0014183 + }, + "nodes": [ + 42427821, + 8261122859, + 6865730145, + 8585752282, + 11165901278 + ], + "geometry": [ + { "lat": 40.7514585, "lon": -74.0014183 }, + { "lat": 40.7515220, "lon": -74.0015624 }, + { "lat": 40.7517635, "lon": -74.0021408 }, + { "lat": 40.7522169, "lon": -74.0032131 }, + { "lat": 40.7522624, "lon": -74.0033228 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 711147865, + "bounds": { + "minlat": 40.7502754, + "minlon": -73.9992405, + "maxlat": 40.7505373, + "maxlon": -73.9986119 + }, + "nodes": [ + 5545401594, + 10171484170, + 2703228467 + ], + "geometry": [ + { "lat": 40.7502754, "lon": -73.9986119 }, + { "lat": 40.7503189, "lon": -73.9987242 }, + { "lat": 40.7505373, "lon": -73.9992405 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 711363473, + "bounds": { + "minlat": 40.7116718, + "minlon": -73.9935027, + "maxlat": 40.7116892, + "maxlon": -73.9933337 + }, + "nodes": [ + 12338873508, + 496707005, + 7787627723 + ], + "geometry": [ + { "lat": 40.7116718, "lon": -73.9935027 }, + { "lat": 40.7116837, "lon": -73.9933858 }, + { "lat": 40.7116892, "lon": -73.9933337 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Monroe Street", + "name:etymology:wikidata": "Q11815", + "name:ko": "먼로 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_parking", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 711365829, + "bounds": { + "minlat": 40.8735731, + "minlon": -74.0132058, + "maxlat": 40.8739354, + "maxlon": -74.0125110 + }, + "nodes": [ + 6593345186, + 6688222637, + 6688222638, + 6688222639 + ], + "geometry": [ + { "lat": 40.8738030, "lon": -74.0125110 }, + { "lat": 40.8738240, "lon": -74.0126475 }, + { "lat": 40.8739354, "lon": -74.0129783 }, + { "lat": 40.8735731, "lon": -74.0132058 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 711924577, + "bounds": { + "minlat": 40.7419507, + "minlon": -73.9724455, + "maxlat": 40.7431778, + "maxlon": -73.9720697 + }, + "nodes": [ + 1478572240, + 9141034872, + 589099682, + 9141034873, + 589099688, + 9141034874, + 9141034875, + 589099692, + 9141034876, + 42445392 + ], + "geometry": [ + { "lat": 40.7419507, "lon": -73.9724414 }, + { "lat": 40.7420061, "lon": -73.9724455 }, + { "lat": 40.7420567, "lon": -73.9724452 }, + { "lat": 40.7421381, "lon": -73.9724378 }, + { "lat": 40.7423605, "lon": -73.9723889 }, + { "lat": 40.7424940, "lon": -73.9723548 }, + { "lat": 40.7426244, "lon": -73.9723145 }, + { "lat": 40.7427864, "lon": -73.9722540 }, + { "lat": 40.7429465, "lon": -73.9721847 }, + { "lat": 40.7431778, "lon": -73.9720697 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "FDR Drive Service Road East;Fdr Drive Service Road East", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 712129587, + "bounds": { + "minlat": 40.7168095, + "minlon": -73.9919235, + "maxlat": 40.7168547, + "maxlon": -73.9917724 + }, + "nodes": [ + 6695729258, + 6695729263, + 6695729259 + ], + "geometry": [ + { "lat": 40.7168095, "lon": -73.9917724 }, + { "lat": 40.7168319, "lon": -73.9918474 }, + { "lat": 40.7168547, "lon": -73.9919235 } + ], + "tags": { + "foot": "permissive", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 712129588, + "bounds": { + "minlat": 40.7168547, + "minlon": -73.9923567, + "maxlat": 40.7169980, + "maxlon": -73.9919235 + }, + "nodes": [ + 6695729259, + 6695729260, + 6695729262 + ], + "geometry": [ + { "lat": 40.7168547, "lon": -73.9919235 }, + { "lat": 40.7168771, "lon": -73.9919527 }, + { "lat": 40.7169980, "lon": -73.9923567 } + ], + "tags": { + "foot": "permissive", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 712156463, + "bounds": { + "minlat": 40.7649858, + "minlon": -73.9539504, + "maxlat": 40.7652254, + "maxlon": -73.9533799 + }, + "nodes": [ + 6695964688, + 9906953439, + 9906953440, + 6695964689 + ], + "geometry": [ + { "lat": 40.7652254, "lon": -73.9539504 }, + { "lat": 40.7652095, "lon": -73.9539123 }, + { "lat": 40.7651978, "lon": -73.9538846 }, + { "lat": 40.7649858, "lon": -73.9533799 } + ], + "tags": { + "bicycle": "dismount", + "highway": "unclassified", + "lanes": "2", + "name": "East 70th Street", + "name:ru": "Восточная 70-я стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 712156464, + "bounds": { + "minlat": 40.7646208, + "minlon": -73.9531890, + "maxlat": 40.7649057, + "maxlon": -73.9525109 + }, + "nodes": [ + 3786876211, + 13081646993, + 8109512240, + 371206270 + ], + "geometry": [ + { "lat": 40.7649057, "lon": -73.9531890 }, + { "lat": 40.7648671, "lon": -73.9530971 }, + { "lat": 40.7646511, "lon": -73.9525831 }, + { "lat": 40.7646208, "lon": -73.9525109 } + ], + "tags": { + "access": "private", + "bicycle": "private", + "highway": "unclassified", + "lanes": "1", + "name": "East 70th Street", + "name:ru": "Восточная 70-я стрит", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 712156465, + "bounds": { + "minlat": 40.7649057, + "minlon": -73.9533799, + "maxlat": 40.7649858, + "maxlon": -73.9531890 + }, + "nodes": [ + 6695964689, + 3786876211 + ], + "geometry": [ + { "lat": 40.7649858, "lon": -73.9533799 }, + { "lat": 40.7649057, "lon": -73.9531890 } + ], + "tags": { + "bicycle": "dismount", + "highway": "unclassified", + "lanes": "2", + "name": "East 70th Street", + "name:ru": "Восточная 70-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 712343085, + "bounds": { + "minlat": 40.7371168, + "minlon": -73.9741861, + "maxlat": 40.7371759, + "maxlon": -73.9740283 + }, + "nodes": [ + 589100164, + 4401241766, + 1577583880 + ], + "geometry": [ + { "lat": 40.7371759, "lon": -73.9741861 }, + { "lat": 40.7371372, "lon": -73.9740826 }, + { "lat": 40.7371168, "lon": -73.9740283 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 713812499, + "bounds": { + "minlat": 40.8074402, + "minlon": -74.0167655, + "maxlat": 40.8076108, + "maxlon": -74.0164972 + }, + "nodes": [ + 6711084305, + 6711084306, + 6711084307 + ], + "geometry": [ + { "lat": 40.8074402, "lon": -74.0165376 }, + { "lat": 40.8074939, "lon": -74.0164972 }, + { "lat": 40.8076108, "lon": -74.0167655 } + ], + "tags": { + "hgv": "no", + "highway": "service", + "maxheight": "6'9\"", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 713812500, + "bounds": { + "minlat": 40.8073924, + "minlon": -74.0168427, + "maxlat": 40.8075093, + "maxlon": -74.0165376 + }, + "nodes": [ + 6711084309, + 6711084308, + 6711084305 + ], + "geometry": [ + { "lat": 40.8075093, "lon": -74.0168427 }, + { "lat": 40.8073924, "lon": -74.0165760 }, + { "lat": 40.8074402, "lon": -74.0165376 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 713812501, + "bounds": { + "minlat": 40.8076418, + "minlon": -74.0171742, + "maxlat": 40.8077943, + "maxlon": -74.0167702 + }, + "nodes": [ + 6711084310, + 6711084311, + 6711084312 + ], + "geometry": [ + { "lat": 40.8077943, "lon": -74.0171742 }, + { "lat": 40.8076418, "lon": -74.0168276 }, + { "lat": 40.8077219, "lon": -74.0167702 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 713812502, + "bounds": { + "minlat": 40.8074431, + "minlon": -74.0172237, + "maxlat": 40.8076716, + "maxlon": -74.0168985 + }, + "nodes": [ + 6711084313, + 6711084314, + 6711084315 + ], + "geometry": [ + { "lat": 40.8076716, "lon": -74.0172237 }, + { "lat": 40.8075277, "lon": -74.0168985 }, + { "lat": 40.8074431, "lon": -74.0169594 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 713812503, + "bounds": { + "minlat": 40.8077213, + "minlon": -74.0173205, + "maxlat": 40.8079142, + "maxlon": -74.0171769 + }, + "nodes": [ + 5243593078, + 6711084316, + 6711084317 + ], + "geometry": [ + { "lat": 40.8077213, "lon": -74.0171769 }, + { "lat": 40.8077670, "lon": -74.0173205 }, + { "lat": 40.8079142, "lon": -74.0172115 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 713812504, + "bounds": { + "minlat": 40.8079142, + "minlon": -74.0188925, + "maxlat": 40.8085890, + "maxlon": -74.0172115 + }, + "nodes": [ + 6711084321, + 6711084317 + ], + "geometry": [ + { "lat": 40.8085890, "lon": -74.0188925 }, + { "lat": 40.8079142, "lon": -74.0172115 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 713812505, + "bounds": { + "minlat": 40.8079142, + "minlon": -74.0172115, + "maxlat": 40.8081657, + "maxlon": -74.0170237 + }, + "nodes": [ + 6711084317, + 6711084325, + 6711084323 + ], + "geometry": [ + { "lat": 40.8079142, "lon": -74.0172115 }, + { "lat": 40.8080239, "lon": -74.0171297 }, + { "lat": 40.8081657, "lon": -74.0170237 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 713812506, + "bounds": { + "minlat": 40.8076725, + "minlon": -74.0187726, + "maxlat": 40.8087374, + "maxlon": -74.0163309 + }, + "nodes": [ + 6711084324, + 6711084325, + 6711084326 + ], + "geometry": [ + { "lat": 40.8087374, "lon": -74.0187726 }, + { "lat": 40.8080239, "lon": -74.0171297 }, + { "lat": 40.8076725, "lon": -74.0163309 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 713812507, + "bounds": { + "minlat": 40.8088821, + "minlon": -74.0186609, + "maxlat": 40.8090100, + "maxlon": -74.0185603 + }, + "nodes": [ + 6711084320, + 6711084327 + ], + "geometry": [ + { "lat": 40.8088821, "lon": -74.0186609 }, + { "lat": 40.8090100, "lon": -74.0185603 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 713812508, + "bounds": { + "minlat": 40.8084659, + "minlon": -74.0185603, + "maxlat": 40.8090100, + "maxlon": -74.0177097 + }, + "nodes": [ + 6711084327, + 6711084328, + 6711084329 + ], + "geometry": [ + { "lat": 40.8090100, "lon": -74.0185603 }, + { "lat": 40.8088460, "lon": -74.0181918 }, + { "lat": 40.8084659, "lon": -74.0177097 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 713812509, + "bounds": { + "minlat": 40.8075678, + "minlon": -74.0188925, + "maxlat": 40.8088821, + "maxlon": -74.0162255 + }, + "nodes": [ + 6711084317, + 6711084312, + 6711084318, + 6711084326, + 6711084319, + 6711084323, + 6711084329, + 6711084320, + 6711084324, + 6711084321 + ], + "geometry": [ + { "lat": 40.8079142, "lon": -74.0172115 }, + { "lat": 40.8077219, "lon": -74.0167702 }, + { "lat": 40.8075678, "lon": -74.0164076 }, + { "lat": 40.8076725, "lon": -74.0163309 }, + { "lat": 40.8078164, "lon": -74.0162255 }, + { "lat": 40.8081657, "lon": -74.0170237 }, + { "lat": 40.8084659, "lon": -74.0177097 }, + { "lat": 40.8088821, "lon": -74.0186609 }, + { "lat": 40.8087374, "lon": -74.0187726 }, + { "lat": 40.8085890, "lon": -74.0188925 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 713812510, + "bounds": { + "minlat": 40.8077670, + "minlon": -74.0188925, + "maxlat": 40.8085890, + "maxlon": -74.0173205 + }, + "nodes": [ + 6711084321, + 6711084322, + 6711084316 + ], + "geometry": [ + { "lat": 40.8085890, "lon": -74.0188925 }, + { "lat": 40.8084161, "lon": -74.0188160 }, + { "lat": 40.8077670, "lon": -74.0173205 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 713812511, + "bounds": { + "minlat": 40.8071665, + "minlon": -74.0173214, + "maxlat": 40.8077670, + "maxlon": -74.0166758 + }, + "nodes": [ + 6711084316, + 6711084333, + 6711084330, + 6711084331, + 6711084332, + 6711084315, + 6711084333 + ], + "geometry": [ + { "lat": 40.8077670, "lon": -74.0173205 }, + { "lat": 40.8076035, "lon": -74.0173209 }, + { "lat": 40.8073915, "lon": -74.0173214 }, + { "lat": 40.8071665, "lon": -74.0167864 }, + { "lat": 40.8073172, "lon": -74.0166758 }, + { "lat": 40.8074431, "lon": -74.0169594 }, + { "lat": 40.8076035, "lon": -74.0173209 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 713812512, + "bounds": { + "minlat": 40.8072449, + "minlon": -74.0173214, + "maxlat": 40.8073915, + "maxlon": -74.0173211 + }, + "nodes": [ + 6711084330, + 5680919477 + ], + "geometry": [ + { "lat": 40.8073915, "lon": -74.0173214 }, + { "lat": 40.8072449, "lon": -74.0173211 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 713812513, + "bounds": { + "minlat": 40.8070518, + "minlon": -74.0168679, + "maxlat": 40.8071665, + "maxlon": -74.0167864 + }, + "nodes": [ + 6711084331, + 6711084334 + ], + "geometry": [ + { "lat": 40.8071665, "lon": -74.0167864 }, + { "lat": 40.8070518, "lon": -74.0168679 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 713812514, + "bounds": { + "minlat": 40.8076976, + "minlon": -74.0191063, + "maxlat": 40.8096005, + "maxlon": -74.0158600 + }, + "nodes": [ + 5680919467, + 5680919468, + 5680919469, + 5680919470, + 5680919471, + 5680919472 + ], + "geometry": [ + { "lat": 40.8096005, "lon": -74.0191063 }, + { "lat": 40.8089076, "lon": -74.0179638 }, + { "lat": 40.8085750, "lon": -74.0175317 }, + { "lat": 40.8079164, "lon": -74.0161345 }, + { "lat": 40.8077821, "lon": -74.0159700 }, + { "lat": 40.8076976, "lon": -74.0158600 } + ], + "tags": { + "hgv": "destination", + "highway": "service" + } +}, +{ + "type": "way", + "id": 713812515, + "bounds": { + "minlat": 40.8070518, + "minlon": -74.0173211, + "maxlat": 40.8072449, + "maxlon": -74.0168679 + }, + "nodes": [ + 6711084334, + 5680919477 + ], + "geometry": [ + { "lat": 40.8070518, "lon": -74.0168679 }, + { "lat": 40.8072449, "lon": -74.0173211 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 714993623, + "bounds": { + "minlat": 40.7690170, + "minlon": -73.9931476, + "maxlat": 40.7693636, + "maxlon": -73.9923216 + }, + "nodes": [ + 42430739, + 10084943016, + 5481880260, + 9145411581 + ], + "geometry": [ + { "lat": 40.7690170, "lon": -73.9923216 }, + { "lat": 40.7690871, "lon": -73.9924881 }, + { "lat": 40.7692126, "lon": -73.9927859 }, + { "lat": 40.7693636, "lon": -73.9931476 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "use_sidepath", + "highway": "unclassified", + "lanes": "1", + "name": "West 55th Street", + "name:ru": "Западная 55-я стрит", + "name_1": "West 55 Street", + "oneway": "yes", + "shoulder": "right", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 715074787, + "bounds": { + "minlat": 40.7415314, + "minlon": -73.9396226, + "maxlat": 40.7415832, + "maxlon": -73.9391439 + }, + "nodes": [ + 6721049155, + 6721049156 + ], + "geometry": [ + { "lat": 40.7415832, "lon": -73.9396226 }, + { "lat": 40.7415314, "lon": -73.9391439 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715074788, + "bounds": { + "minlat": 40.7413246, + "minlon": -73.9391770, + "maxlat": 40.7415314, + "maxlon": -73.9391439 + }, + "nodes": [ + 6721049156, + 6721049157 + ], + "geometry": [ + { "lat": 40.7415314, "lon": -73.9391439 }, + { "lat": 40.7413246, "lon": -73.9391770 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715075039, + "bounds": { + "minlat": 40.7405854, + "minlon": -73.9387972, + "maxlat": 40.7411842, + "maxlon": -73.9385316 + }, + "nodes": [ + 6721049753, + 10762203003, + 6721049752, + 2340430335 + ], + "geometry": [ + { "lat": 40.7405854, "lon": -73.9385316 }, + { "lat": 40.7406414, "lon": -73.9385341 }, + { "lat": 40.7406787, "lon": -73.9385343 }, + { "lat": 40.7411842, "lon": -73.9387972 } + ], + "tags": { + "highway": "unclassified", + "name": "29th Street" + } +}, +{ + "type": "way", + "id": 715076656, + "bounds": { + "minlat": 40.7430780, + "minlon": -73.9382771, + "maxlat": 40.7431202, + "maxlon": -73.9379077 + }, + "nodes": [ + 6721064388, + 5481972201, + 6721064389 + ], + "geometry": [ + { "lat": 40.7431202, "lon": -73.9382771 }, + { "lat": 40.7430856, "lon": -73.9379749 }, + { "lat": 40.7430780, "lon": -73.9379077 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715076657, + "bounds": { + "minlat": 40.7430911, + "minlon": -73.9378371, + "maxlat": 40.7431109, + "maxlon": -73.9376972 + }, + "nodes": [ + 6721064390, + 6893477633, + 10762202986, + 6721064391 + ], + "geometry": [ + { "lat": 40.7431109, "lon": -73.9378371 }, + { "lat": 40.7431069, "lon": -73.9378068 }, + { "lat": 40.7431030, "lon": -73.9377797 }, + { "lat": 40.7430911, "lon": -73.9376972 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715076658, + "bounds": { + "minlat": 40.7430780, + "minlon": -73.9379077, + "maxlat": 40.7431109, + "maxlon": -73.9378371 + }, + "nodes": [ + 6721064389, + 6721064390 + ], + "geometry": [ + { "lat": 40.7430780, "lon": -73.9379077 }, + { "lat": 40.7431109, "lon": -73.9378371 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715077979, + "bounds": { + "minlat": 40.7423231, + "minlon": -73.9374969, + "maxlat": 40.7425353, + "maxlon": -73.9374580 + }, + "nodes": [ + 6721057420, + 6721057421 + ], + "geometry": [ + { "lat": 40.7425353, "lon": -73.9374580 }, + { "lat": 40.7423231, "lon": -73.9374969 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715077980, + "bounds": { + "minlat": 40.7422879, + "minlon": -73.9371995, + "maxlat": 40.7432369, + "maxlon": -73.9370296 + }, + "nodes": [ + 13316567867, + 13316567868, + 6721057422, + 6721057424, + 6721057423 + ], + "geometry": [ + { "lat": 40.7432369, "lon": -73.9370296 }, + { "lat": 40.7431540, "lon": -73.9370389 }, + { "lat": 40.7431311, "lon": -73.9370424 }, + { "lat": 40.7425312, "lon": -73.9371541 }, + { "lat": 40.7422879, "lon": -73.9371995 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715077981, + "bounds": { + "minlat": 40.7424921, + "minlon": -73.9371541, + "maxlat": 40.7425312, + "maxlon": -73.9368564 + }, + "nodes": [ + 6721057424, + 10762202985, + 6721057425 + ], + "geometry": [ + { "lat": 40.7425312, "lon": -73.9371541 }, + { "lat": 40.7425039, "lon": -73.9369466 }, + { "lat": 40.7424921, "lon": -73.9368564 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715077982, + "bounds": { + "minlat": 40.7388739, + "minlon": -73.9374267, + "maxlat": 40.7389387, + "maxlon": -73.9368644 + }, + "nodes": [ + 6721057426, + 6721057427 + ], + "geometry": [ + { "lat": 40.7389387, "lon": -73.9374267 }, + { "lat": 40.7388739, "lon": -73.9368644 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715077983, + "bounds": { + "minlat": 40.7386504, + "minlon": -73.9369074, + "maxlat": 40.7388739, + "maxlon": -73.9368644 + }, + "nodes": [ + 6721057427, + 5482246011, + 5482246014 + ], + "geometry": [ + { "lat": 40.7388739, "lon": -73.9368644 }, + { "lat": 40.7387746, "lon": -73.9368835 }, + { "lat": 40.7386504, "lon": -73.9369074 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715079799, + "bounds": { + "minlat": 40.7327375, + "minlon": -73.9390521, + "maxlat": 40.7330993, + "maxlon": -73.9388456 + }, + "nodes": [ + 6721056935, + 5481983900, + 5481983897, + 6721056936 + ], + "geometry": [ + { "lat": 40.7330993, "lon": -73.9390521 }, + { "lat": 40.7330494, "lon": -73.9390236 }, + { "lat": 40.7328901, "lon": -73.9389327 }, + { "lat": 40.7327375, "lon": -73.9388456 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715079800, + "bounds": { + "minlat": 40.7326115, + "minlon": -73.9393847, + "maxlat": 40.7329753, + "maxlon": -73.9391808 + }, + "nodes": [ + 6721056937, + 6721056938 + ], + "geometry": [ + { "lat": 40.7329753, "lon": -73.9393847 }, + { "lat": 40.7326115, "lon": -73.9391808 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715079801, + "bounds": { + "minlat": 40.7326115, + "minlon": -73.9391808, + "maxlat": 40.7327375, + "maxlon": -73.9388456 + }, + "nodes": [ + 6721056938, + 6721056936 + ], + "geometry": [ + { "lat": 40.7326115, "lon": -73.9391808 }, + { "lat": 40.7327375, "lon": -73.9388456 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715079802, + "bounds": { + "minlat": 40.7329753, + "minlon": -73.9393847, + "maxlat": 40.7330993, + "maxlon": -73.9390521 + }, + "nodes": [ + 6721056937, + 5481983904, + 6721056935 + ], + "geometry": [ + { "lat": 40.7329753, "lon": -73.9393847 }, + { "lat": 40.7330242, "lon": -73.9392535 }, + { "lat": 40.7330993, "lon": -73.9390521 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715079899, + "bounds": { + "minlat": 40.7324255, + "minlon": -73.9373864, + "maxlat": 40.7328981, + "maxlon": -73.9370552 + }, + "nodes": [ + 6721052062, + 6721052065, + 6721052063, + 6721052067 + ], + "geometry": [ + { "lat": 40.7328981, "lon": -73.9373864 }, + { "lat": 40.7325285, "lon": -73.9370913 }, + { "lat": 40.7324833, "lon": -73.9370552 }, + { "lat": 40.7324255, "lon": -73.9371906 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 715079900, + "bounds": { + "minlat": 40.7325285, + "minlon": -73.9370913, + "maxlat": 40.7328648, + "maxlon": -73.9365213 + }, + "nodes": [ + 6721052064, + 11211159797, + 6879940810, + 6721052065 + ], + "geometry": [ + { "lat": 40.7328648, "lon": -73.9365213 }, + { "lat": 40.7328113, "lon": -73.9366134 }, + { "lat": 40.7328001, "lon": -73.9366326 }, + { "lat": 40.7325285, "lon": -73.9370913 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 715082241, + "bounds": { + "minlat": 40.7293527, + "minlon": -73.9354295, + "maxlat": 40.7298315, + "maxlon": -73.9336625 + }, + "nodes": [ + 6721102898, + 6721102902, + 6721102899 + ], + "geometry": [ + { "lat": 40.7298315, "lon": -73.9354295 }, + { "lat": 40.7296829, "lon": -73.9350022 }, + { "lat": 40.7293527, "lon": -73.9336625 } + ], + "tags": { + "highway": "residential", + "name": "Railroad Avenue" + } +}, +{ + "type": "way", + "id": 715082242, + "bounds": { + "minlat": 40.7303559, + "minlon": -73.9351103, + "maxlat": 40.7310415, + "maxlon": -73.9343229 + }, + "nodes": [ + 597663709, + 11211159646, + 6721102901 + ], + "geometry": [ + { "lat": 40.7310415, "lon": -73.9343229 }, + { "lat": 40.7309712, "lon": -73.9344036 }, + { "lat": 40.7303559, "lon": -73.9351103 } + ], + "tags": { + "highway": "residential", + "name": "Railroad Avenue" + } +}, +{ + "type": "way", + "id": 715082243, + "bounds": { + "minlat": 40.7298315, + "minlon": -73.9354295, + "maxlat": 40.7303559, + "maxlon": -73.9351103 + }, + "nodes": [ + 6721102901, + 597663711, + 2134456041, + 6721102898 + ], + "geometry": [ + { "lat": 40.7303559, "lon": -73.9351103 }, + { "lat": 40.7300231, "lon": -73.9353129 }, + { "lat": 40.7299885, "lon": -73.9353339 }, + { "lat": 40.7298315, "lon": -73.9354295 } + ], + "tags": { + "highway": "residential", + "name": "Railroad Avenue" + } +}, +{ + "type": "way", + "id": 715088072, + "bounds": { + "minlat": 40.7316052, + "minlon": -73.9427665, + "maxlat": 40.7370137, + "maxlon": -73.9374794 + }, + "nodes": [ + 279156836, + 279156835, + 12132163425, + 12132163426, + 12132163427, + 12132163428, + 12132163429, + 279156834, + 12132163430, + 12132163431, + 279156833, + 12132163432, + 12132163433, + 12132163434, + 12132163435, + 12132163436, + 279156832, + 12132163437, + 12132163438, + 12132163439, + 279156831, + 12132163440, + 12132163441, + 490152383, + 12132163442, + 12132163443, + 9982697976, + 9982697979, + 9982697985, + 279157230, + 9982697986, + 9982697987, + 9982697977, + 9982697988, + 9982697989, + 9982697978, + 597294543, + 8549558988, + 12132163444, + 12132163445, + 12132163446, + 6909063453, + 12132163447, + 12132163448, + 12132163449, + 12132163450, + 6721155692 + ], + "geometry": [ + { "lat": 40.7370137, "lon": -73.9427665 }, + { "lat": 40.7369436, "lon": -73.9426096 }, + { "lat": 40.7368665, "lon": -73.9424439 }, + { "lat": 40.7367793, "lon": -73.9422615 }, + { "lat": 40.7366955, "lon": -73.9421023 }, + { "lat": 40.7365937, "lon": -73.9419180 }, + { "lat": 40.7365048, "lon": -73.9417621 }, + { "lat": 40.7364071, "lon": -73.9416081 }, + { "lat": 40.7362806, "lon": -73.9414200 }, + { "lat": 40.7361483, "lon": -73.9412480 }, + { "lat": 40.7360242, "lon": -73.9411004 }, + { "lat": 40.7359032, "lon": -73.9409626 }, + { "lat": 40.7357906, "lon": -73.9408409 }, + { "lat": 40.7356538, "lon": -73.9406962 }, + { "lat": 40.7353832, "lon": -73.9404168 }, + { "lat": 40.7353002, "lon": -73.9403179 }, + { "lat": 40.7351980, "lon": -73.9401889 }, + { "lat": 40.7349962, "lon": -73.9399152 }, + { "lat": 40.7349216, "lon": -73.9398201 }, + { "lat": 40.7348542, "lon": -73.9397396 }, + { "lat": 40.7347829, "lon": -73.9396641 }, + { "lat": 40.7346981, "lon": -73.9395869 }, + { "lat": 40.7346152, "lon": -73.9395180 }, + { "lat": 40.7345214, "lon": -73.9394456 }, + { "lat": 40.7344102, "lon": -73.9393618 }, + { "lat": 40.7343189, "lon": -73.9392971 }, + { "lat": 40.7341016, "lon": -73.9391580 }, + { "lat": 40.7340790, "lon": -73.9391438 }, + { "lat": 40.7340480, "lon": -73.9391334 }, + { "lat": 40.7340169, "lon": -73.9391240 }, + { "lat": 40.7339855, "lon": -73.9391184 }, + { "lat": 40.7339585, "lon": -73.9391091 }, + { "lat": 40.7339255, "lon": -73.9390927 }, + { "lat": 40.7338923, "lon": -73.9390715 }, + { "lat": 40.7338461, "lon": -73.9390366 }, + { "lat": 40.7337999, "lon": -73.9389961 }, + { "lat": 40.7337490, "lon": -73.9389494 }, + { "lat": 40.7336988, "lon": -73.9389080 }, + { "lat": 40.7334914, "lon": -73.9387581 }, + { "lat": 40.7333540, "lon": -73.9386584 }, + { "lat": 40.7331856, "lon": -73.9385491 }, + { "lat": 40.7325015, "lon": -73.9381013 }, + { "lat": 40.7319476, "lon": -73.9377064 }, + { "lat": 40.7318500, "lon": -73.9376403 }, + { "lat": 40.7317558, "lon": -73.9375815 }, + { "lat": 40.7316764, "lon": -73.9375305 }, + { "lat": 40.7316052, "lon": -73.9374794 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Railroad Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 715088632, + "bounds": { + "minlat": 40.7319721, + "minlon": -73.9371860, + "maxlat": 40.7326610, + "maxlon": -73.9363177 + }, + "nodes": [ + 5482230612, + 11211159650, + 6721112606 + ], + "geometry": [ + { "lat": 40.7326610, "lon": -73.9363177 }, + { "lat": 40.7326012, "lon": -73.9363930 }, + { "lat": 40.7319721, "lon": -73.9371860 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 715088633, + "bounds": { + "minlat": 40.7316052, + "minlon": -73.9374794, + "maxlat": 40.7319721, + "maxlon": -73.9371860 + }, + "nodes": [ + 6721112606, + 5907097341, + 5907097358, + 42839760, + 6721155692 + ], + "geometry": [ + { "lat": 40.7319721, "lon": -73.9371860 }, + { "lat": 40.7317687, "lon": -73.9373493 }, + { "lat": 40.7317132, "lon": -73.9373935 }, + { "lat": 40.7316682, "lon": -73.9374293 }, + { "lat": 40.7316052, "lon": -73.9374794 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 715088634, + "bounds": { + "minlat": 40.7311066, + "minlon": -73.9374774, + "maxlat": 40.7315114, + "maxlon": -73.9371748 + }, + "nodes": [ + 6721112607, + 6721112608 + ], + "geometry": [ + { "lat": 40.7315114, "lon": -73.9374774 }, + { "lat": 40.7311066, "lon": -73.9371748 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 715088635, + "bounds": { + "minlat": 40.7305144, + "minlon": -73.9375879, + "maxlat": 40.7311066, + "maxlon": -73.9371748 + }, + "nodes": [ + 6721112608, + 6721112609 + ], + "geometry": [ + { "lat": 40.7311066, "lon": -73.9371748 }, + { "lat": 40.7305144, "lon": -73.9375879 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 715088636, + "bounds": { + "minlat": 40.7301057, + "minlon": -73.9375879, + "maxlat": 40.7305144, + "maxlon": -73.9368722 + }, + "nodes": [ + 6721112609, + 6721112610 + ], + "geometry": [ + { "lat": 40.7305144, "lon": -73.9375879 }, + { "lat": 40.7301057, "lon": -73.9368722 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 715088637, + "bounds": { + "minlat": 40.7315114, + "minlon": -73.9374794, + "maxlat": 40.7316052, + "maxlon": -73.9374774 + }, + "nodes": [ + 6721155692, + 6721112607 + ], + "geometry": [ + { "lat": 40.7316052, "lon": -73.9374794 }, + { "lat": 40.7315114, "lon": -73.9374774 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 715101313, + "bounds": { + "minlat": 40.7322030, + "minlon": -73.9365297, + "maxlat": 40.7325331, + "maxlon": -73.9361926 + }, + "nodes": [ + 6721346252, + 11211159649, + 6721346253 + ], + "geometry": [ + { "lat": 40.7325331, "lon": -73.9361926 }, + { "lat": 40.7324630, "lon": -73.9362642 }, + { "lat": 40.7322030, "lon": -73.9365297 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715101317, + "bounds": { + "minlat": 40.7331176, + "minlon": -73.9378408, + "maxlat": 40.7334333, + "maxlon": -73.9370866 + }, + "nodes": [ + 6721346264, + 11211159798, + 7154432140, + 6721346265 + ], + "geometry": [ + { "lat": 40.7334333, "lon": -73.9370866 }, + { "lat": 40.7333889, "lon": -73.9371890 }, + { "lat": 40.7333856, "lon": -73.9371965 }, + { "lat": 40.7331176, "lon": -73.9378408 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 715103007, + "bounds": { + "minlat": 40.7354681, + "minlon": -73.9387552, + "maxlat": 40.7356689, + "maxlon": -73.9386278 + }, + "nodes": [ + 6721411010, + 6721411011 + ], + "geometry": [ + { "lat": 40.7356689, "lon": -73.9387552 }, + { "lat": 40.7354681, "lon": -73.9386278 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715103008, + "bounds": { + "minlat": 40.7356015, + "minlon": -73.9383658, + "maxlat": 40.7358074, + "maxlon": -73.9382414 + }, + "nodes": [ + 5481983890, + 6721411012 + ], + "geometry": [ + { "lat": 40.7358074, "lon": -73.9383658 }, + { "lat": 40.7356015, "lon": -73.9382414 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715103009, + "bounds": { + "minlat": 40.7354681, + "minlon": -73.9386278, + "maxlat": 40.7356015, + "maxlon": -73.9382414 + }, + "nodes": [ + 6721411011, + 5481983885, + 6721411012 + ], + "geometry": [ + { "lat": 40.7354681, "lon": -73.9386278 }, + { "lat": 40.7355411, "lon": -73.9384164 }, + { "lat": 40.7356015, "lon": -73.9382414 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715103010, + "bounds": { + "minlat": 40.7352850, + "minlon": -73.9387694, + "maxlat": 40.7354442, + "maxlon": -73.9383413 + }, + "nodes": [ + 6721411013, + 11211159748, + 6721411014 + ], + "geometry": [ + { "lat": 40.7352850, "lon": -73.9387694 }, + { "lat": 40.7353114, "lon": -73.9386984 }, + { "lat": 40.7354442, "lon": -73.9383413 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715103011, + "bounds": { + "minlat": 40.7353426, + "minlon": -73.9383413, + "maxlat": 40.7354442, + "maxlon": -73.9382835 + }, + "nodes": [ + 6721411014, + 6721411015 + ], + "geometry": [ + { "lat": 40.7354442, "lon": -73.9383413 }, + { "lat": 40.7353426, "lon": -73.9382835 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715103012, + "bounds": { + "minlat": 40.7360576, + "minlon": -73.9377105, + "maxlat": 40.7362941, + "maxlon": -73.9371176 + }, + "nodes": [ + 42908540, + 11211159745, + 6903168839, + 6721411019, + 5482246000, + 6721411017 + ], + "geometry": [ + { "lat": 40.7362941, "lon": -73.9371176 }, + { "lat": 40.7362585, "lon": -73.9371871 }, + { "lat": 40.7362464, "lon": -73.9372108 }, + { "lat": 40.7362141, "lon": -73.9373085 }, + { "lat": 40.7361369, "lon": -73.9375067 }, + { "lat": 40.7360576, "lon": -73.9377105 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715103013, + "bounds": { + "minlat": 40.7357688, + "minlon": -73.9377105, + "maxlat": 40.7360576, + "maxlon": -73.9375265 + }, + "nodes": [ + 6721411017, + 6721411018 + ], + "geometry": [ + { "lat": 40.7360576, "lon": -73.9377105 }, + { "lat": 40.7357688, "lon": -73.9375265 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715103014, + "bounds": { + "minlat": 40.7359261, + "minlon": -73.9373085, + "maxlat": 40.7362141, + "maxlon": -73.9371192 + }, + "nodes": [ + 6721411019, + 6721411020 + ], + "geometry": [ + { "lat": 40.7362141, "lon": -73.9373085 }, + { "lat": 40.7359261, "lon": -73.9371192 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715103015, + "bounds": { + "minlat": 40.7357688, + "minlon": -73.9375265, + "maxlat": 40.7359261, + "maxlon": -73.9371192 + }, + "nodes": [ + 6721411018, + 5482246004, + 6721411020 + ], + "geometry": [ + { "lat": 40.7357688, "lon": -73.9375265 }, + { "lat": 40.7358485, "lon": -73.9373202 }, + { "lat": 40.7359261, "lon": -73.9371192 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 715293376, + "bounds": { + "minlat": 40.8619590, + "minlon": -73.9949692, + "maxlat": 40.8623067, + "maxlon": -73.9943780 + }, + "nodes": [ + 103146282, + 103146278 + ], + "geometry": [ + { "lat": 40.8619590, "lon": -73.9943780 }, + { "lat": 40.8623067, "lon": -73.9949692 } + ], + "tags": { + "highway": "residential", + "name": "Maple Street", + "oneway": "yes", + "sidewalk": "left", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 715293377, + "bounds": { + "minlat": 40.8614603, + "minlon": -73.9948562, + "maxlat": 40.8619590, + "maxlon": -73.9943780 + }, + "nodes": [ + 103146282, + 103296581, + 103229102 + ], + "geometry": [ + { "lat": 40.8619590, "lon": -73.9943780 }, + { "lat": 40.8615910, "lon": -73.9947390 }, + { "lat": 40.8614603, "lon": -73.9948562 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 715293378, + "bounds": { + "minlat": 40.8611895, + "minlon": -73.9943780, + "maxlat": 40.8619590, + "maxlon": -73.9930778 + }, + "nodes": [ + 103146282, + 10261740702, + 8076425408, + 103146284 + ], + "geometry": [ + { "lat": 40.8619590, "lon": -73.9943780 }, + { "lat": 40.8619331, "lon": -73.9943254 }, + { "lat": 40.8619080, "lon": -73.9942928 }, + { "lat": 40.8611895, "lon": -73.9930778 } + ], + "tags": { + "highway": "residential", + "name": "Maple Street", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Maple", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 715453562, + "bounds": { + "minlat": 40.7011002, + "minlon": -73.9350890, + "maxlat": 40.7017500, + "maxlon": -73.9347993 + }, + "nodes": [ + 42500467, + 9950989268, + 9950989278, + 42500482 + ], + "geometry": [ + { "lat": 40.7017500, "lon": -73.9350890 }, + { "lat": 40.7017052, "lon": -73.9350691 }, + { "lat": 40.7011565, "lon": -73.9348256 }, + { "lat": 40.7011002, "lon": -73.9347993 } + ], + "tags": { + "highway": "residential", + "name": "Stanwix Street", + "name:etymology:wikidata": "Q6258878", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 716131037, + "bounds": { + "minlat": 40.8725690, + "minlon": -73.9537954, + "maxlat": 40.8727480, + "maxlon": -73.9536596 + }, + "nodes": [ + 6676163364, + 7930268875, + 103215723 + ], + "geometry": [ + { "lat": 40.8725690, "lon": -73.9537954 }, + { "lat": 40.8726641, "lon": -73.9537218 }, + { "lat": 40.8727480, "lon": -73.9536596 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "4", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 716733045, + "bounds": { + "minlat": 40.8510227, + "minlon": -74.0170440, + "maxlat": 40.8514335, + "maxlon": -74.0166533 + }, + "nodes": [ + 5220596284, + 5220596285, + 5220596282, + 103270544 + ], + "geometry": [ + { "lat": 40.8514172, "lon": -74.0166533 }, + { "lat": 40.8514075, "lon": -74.0166844 }, + { "lat": 40.8514335, "lon": -74.0168711 }, + { "lat": 40.8510227, "lon": -74.0170440 } + ], + "tags": { + "highway": "residential", + "name": "Hobart Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hobart", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 717464180, + "bounds": { + "minlat": 40.8566144, + "minlon": -73.9167040, + "maxlat": 40.8566913, + "maxlon": -73.9161996 + }, + "nodes": [ + 6738008933, + 8253495156, + 6738008934 + ], + "geometry": [ + { "lat": 40.8566144, "lon": -73.9161996 }, + { "lat": 40.8566283, "lon": -73.9163004 }, + { "lat": 40.8566913, "lon": -73.9167040 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 717464181, + "bounds": { + "minlat": 40.8566144, + "minlon": -73.9161996, + "maxlat": 40.8606330, + "maxlon": -73.9109461 + }, + "nodes": [ + 6738008933, + 2809052656, + 9918291096, + 2809052657, + 9918291097, + 2809052658, + 9918291098, + 42743090, + 2809052659, + 9918291099, + 2901172240, + 9918291100, + 2809052660, + 9918291101, + 9918291102, + 2901172243, + 9918291103, + 2901172244, + 9918291104, + 42742765, + 9918291105, + 1764763633, + 10135688261, + 42743099, + 1891639902, + 42743103 + ], + "geometry": [ + { "lat": 40.8566144, "lon": -73.9161996 }, + { "lat": 40.8582804, "lon": -73.9157896 }, + { "lat": 40.8583501, "lon": -73.9157685 }, + { "lat": 40.8584159, "lon": -73.9157419 }, + { "lat": 40.8584730, "lon": -73.9157089 }, + { "lat": 40.8585203, "lon": -73.9156768 }, + { "lat": 40.8585758, "lon": -73.9156275 }, + { "lat": 40.8586275, "lon": -73.9155757 }, + { "lat": 40.8586744, "lon": -73.9155202 }, + { "lat": 40.8587175, "lon": -73.9154600 }, + { "lat": 40.8587605, "lon": -73.9153843 }, + { "lat": 40.8588016, "lon": -73.9153014 }, + { "lat": 40.8588506, "lon": -73.9151784 }, + { "lat": 40.8592683, "lon": -73.9140173 }, + { "lat": 40.8593092, "lon": -73.9139100 }, + { "lat": 40.8593503, "lon": -73.9138063 }, + { "lat": 40.8593982, "lon": -73.9137006 }, + { "lat": 40.8594463, "lon": -73.9136016 }, + { "lat": 40.8595854, "lon": -73.9133319 }, + { "lat": 40.8596267, "lon": -73.9132706 }, + { "lat": 40.8596719, "lon": -73.9131992 }, + { "lat": 40.8601387, "lon": -73.9123786 }, + { "lat": 40.8602357, "lon": -73.9121338 }, + { "lat": 40.8603640, "lon": -73.9116110 }, + { "lat": 40.8604984, "lon": -73.9112165 }, + { "lat": 40.8606330, "lon": -73.9109461 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 717537135, + "bounds": { + "minlat": 40.7759320, + "minlon": -73.9485819, + "maxlat": 40.7765538, + "maxlon": -73.9471206 + }, + "nodes": [ + 9906879191, + 7834025534, + 42428037 + ], + "geometry": [ + { "lat": 40.7765538, "lon": -73.9485819 }, + { "lat": 40.7759868, "lon": -73.9472510 }, + { "lat": 40.7759320, "lon": -73.9471206 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 717625447, + "bounds": { + "minlat": 40.7605973, + "minlon": -73.9823472, + "maxlat": 40.7623476, + "maxlon": -73.9781816 + }, + "nodes": [ + 42440009, + 10171379109, + 4784141042, + 3932923799, + 1828749426, + 3971196633, + 10172941224, + 42430363, + 3974095842, + 10693758908, + 1745856010, + 3976005755, + 6958055831 + ], + "geometry": [ + { "lat": 40.7623476, "lon": -73.9823472 }, + { "lat": 40.7622974, "lon": -73.9822278 }, + { "lat": 40.7622837, "lon": -73.9821950 }, + { "lat": 40.7618886, "lon": -73.9812549 }, + { "lat": 40.7618645, "lon": -73.9811973 }, + { "lat": 40.7615860, "lon": -73.9805346 }, + { "lat": 40.7612132, "lon": -73.9796473 }, + { "lat": 40.7611565, "lon": -73.9795126 }, + { "lat": 40.7610949, "lon": -73.9793660 }, + { "lat": 40.7608372, "lon": -73.9787526 }, + { "lat": 40.7608045, "lon": -73.9786747 }, + { "lat": 40.7607445, "lon": -73.9785320 }, + { "lat": 40.7605973, "lon": -73.9781816 } + ], + "tags": { + "cycleway:right": "track", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 52nd Street", + "name:ru": "Западная 52-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 717625448, + "bounds": { + "minlat": 40.7623476, + "minlon": -73.9832608, + "maxlat": 40.7627381, + "maxlon": -73.9823472 + }, + "nodes": [ + 42428312, + 12991873791, + 10171379113, + 3977886872, + 3977886869, + 10171379106, + 42440009 + ], + "geometry": [ + { "lat": 40.7627381, "lon": -73.9832608 }, + { "lat": 40.7626902, "lon": -73.9831608 }, + { "lat": 40.7626581, "lon": -73.9830937 }, + { "lat": 40.7626431, "lon": -73.9830625 }, + { "lat": 40.7624134, "lon": -73.9825139 }, + { "lat": 40.7624054, "lon": -73.9824936 }, + { "lat": 40.7623476, "lon": -73.9823472 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 52nd Street", + "name:ru": "Западная 52-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 717634370, + "bounds": { + "minlat": 40.7693636, + "minlon": -73.9936985, + "maxlat": 40.7695978, + "maxlon": -73.9931476 + }, + "nodes": [ + 9145411581, + 5481839858, + 9320463274 + ], + "geometry": [ + { "lat": 40.7693636, "lon": -73.9931476 }, + { "lat": 40.7695678, "lon": -73.9936254 }, + { "lat": 40.7695978, "lon": -73.9936985 } + ], + "tags": { + "bicycle": "yes", + "bicycle:lanes": "|designated||", + "cycleway": "lane", + "foot": "use_sidepath", + "highway": "unclassified", + "lanes": "3", + "motor_vehicle:lanes": "yes|no|yes|yes", + "name": "West 55th Street", + "name:ru": "Западная 55-я стрит", + "name_1": "West 55 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 717634371, + "bounds": { + "minlat": 40.7699411, + "minlon": -73.9947846, + "maxlat": 40.7700328, + "maxlon": -73.9945360 + }, + "nodes": [ + 61275380, + 9140924713 + ], + "geometry": [ + { "lat": 40.7699411, "lon": -73.9945360 }, + { "lat": 40.7700328, "lon": -73.9947846 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "foot": "use_sidepath", + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 55th Street", + "name:ru": "Западная 55-я стрит", + "name_1": "West 55 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 717634745, + "bounds": { + "minlat": 40.7706262, + "minlon": -73.9944205, + "maxlat": 40.7707028, + "maxlon": -73.9942294 + }, + "nodes": [ + 61273004, + 247123612 + ], + "geometry": [ + { "lat": 40.7707028, "lon": -73.9944205 }, + { "lat": 40.7706262, "lon": -73.9942294 } + ], + "tags": { + "foot": "no", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 56th Street", + "name:ru": "Западная 56-я стрит", + "name_1": "West 56 Street", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 718202496, + "bounds": { + "minlat": 40.7630723, + "minlon": -73.9244390, + "maxlat": 40.7631336, + "maxlon": -73.9242909 + }, + "nodes": [ + 6744695384, + 6744698185, + 6744698186 + ], + "geometry": [ + { "lat": 40.7630723, "lon": -73.9242909 }, + { "lat": 40.7630848, "lon": -73.9243294 }, + { "lat": 40.7631336, "lon": -73.9244390 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 718206684, + "bounds": { + "minlat": 40.7439040, + "minlon": -73.9282427, + "maxlat": 40.7439235, + "maxlon": -73.9280349 + }, + "nodes": [ + 6167106127, + 11272980329, + 6166708802 + ], + "geometry": [ + { "lat": 40.7439235, "lon": -73.9282427 }, + { "lat": 40.7439126, "lon": -73.9281270 }, + { "lat": 40.7439040, "lon": -73.9280349 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 718490116, + "bounds": { + "minlat": 40.7623658, + "minlon": -73.9566545, + "maxlat": 40.7628769, + "maxlon": -73.9562843 + }, + "nodes": [ + 4999169400, + 4999169399 + ], + "geometry": [ + { "lat": 40.7623658, "lon": -73.9566545 }, + { "lat": 40.7628769, "lon": -73.9562843 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 718934560, + "bounds": { + "minlat": 40.8315313, + "minlon": -73.9201091, + "maxlat": 40.8321296, + "maxlon": -73.9197378 + }, + "nodes": [ + 6750387038, + 13534990403, + 13036655654, + 42741397, + 13534990402, + 4207900885 + ], + "geometry": [ + { "lat": 40.8321296, "lon": -73.9197378 }, + { "lat": 40.8320482, "lon": -73.9197918 }, + { "lat": 40.8320056, "lon": -73.9198187 }, + { "lat": 40.8318885, "lon": -73.9198926 }, + { "lat": 40.8318251, "lon": -73.9199327 }, + { "lat": 40.8315313, "lon": -73.9201091 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 720151651, + "bounds": { + "minlat": 40.8108696, + "minlon": -73.9886138, + "maxlat": 40.8109898, + "maxlon": -73.9883608 + }, + "nodes": [ + 6758967298, + 6758967299, + 6758967300 + ], + "geometry": [ + { "lat": 40.8109887, "lon": -73.9883608 }, + { "lat": 40.8109898, "lon": -73.9885054 }, + { "lat": 40.8108696, "lon": -73.9886138 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 720151652, + "bounds": { + "minlat": 40.8109887, + "minlon": -73.9883608, + "maxlat": 40.8124296, + "maxlon": -73.9872965 + }, + "nodes": [ + 6758967298, + 10135155516, + 6758967301, + 6758967302, + 6758967303 + ], + "geometry": [ + { "lat": 40.8109887, "lon": -73.9883608 }, + { "lat": 40.8110101, "lon": -73.9883324 }, + { "lat": 40.8110834, "lon": -73.9882377 }, + { "lat": 40.8111419, "lon": -73.9881605 }, + { "lat": 40.8124296, "lon": -73.9872965 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 720246382, + "bounds": { + "minlat": 40.7434902, + "minlon": -73.9485310, + "maxlat": 40.7446302, + "maxlon": -73.9480779 + }, + "nodes": [ + 6759653056, + 12129014099, + 12129014098, + 6759653058, + 12129014097, + 6759653057, + 12129014096, + 12129014095, + 12129014094, + 12129014091, + 12129014093, + 6759653055, + 12129014092, + 12129014090, + 12129014089, + 6597261582 + ], + "geometry": [ + { "lat": 40.7446302, "lon": -73.9480779 }, + { "lat": 40.7446035, "lon": -73.9481338 }, + { "lat": 40.7445742, "lon": -73.9481874 }, + { "lat": 40.7445404, "lon": -73.9482432 }, + { "lat": 40.7445018, "lon": -73.9482935 }, + { "lat": 40.7444653, "lon": -73.9483309 }, + { "lat": 40.7444113, "lon": -73.9483678 }, + { "lat": 40.7443565, "lon": -73.9483928 }, + { "lat": 40.7443036, "lon": -73.9484136 }, + { "lat": 40.7442316, "lon": -73.9484340 }, + { "lat": 40.7441285, "lon": -73.9484587 }, + { "lat": 40.7440492, "lon": -73.9484771 }, + { "lat": 40.7439753, "lon": -73.9484883 }, + { "lat": 40.7436158, "lon": -73.9485202 }, + { "lat": 40.7435468, "lon": -73.9485283 }, + { "lat": 40.7434902, "lon": -73.9485310 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "maxspeed": "5 mph", + "motor_vehicle": "private", + "name": "Arch Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 720246383, + "bounds": { + "minlat": 40.7445423, + "minlon": -73.9482040, + "maxlat": 40.7448206, + "maxlon": -73.9480196 + }, + "nodes": [ + 42819655, + 9569475039, + 12129014100, + 6759653056, + 2992247844 + ], + "geometry": [ + { "lat": 40.7448206, "lon": -73.9482040 }, + { "lat": 40.7447248, "lon": -73.9481405 }, + { "lat": 40.7446775, "lon": -73.9481092 }, + { "lat": 40.7446302, "lon": -73.9480779 }, + { "lat": 40.7445423, "lon": -73.9480196 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "motor_vehicle": "private", + "name": "Arch Street", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 720247463, + "bounds": { + "minlat": 40.7442068, + "minlon": -73.9464221, + "maxlat": 40.7446798, + "maxlon": -73.9457171 + }, + "nodes": [ + 5481972184, + 10116418485, + 6759742315, + 13238833076, + 13238833075, + 13238833074, + 13238833073 + ], + "geometry": [ + { "lat": 40.7442778, "lon": -73.9457171 }, + { "lat": 40.7442068, "lon": -73.9458981 }, + { "lat": 40.7443498, "lon": -73.9464221 }, + { "lat": 40.7445426, "lon": -73.9463333 }, + { "lat": 40.7446386, "lon": -73.9461006 }, + { "lat": 40.7446485, "lon": -73.9460761 }, + { "lat": 40.7446798, "lon": -73.9459953 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 720248380, + "bounds": { + "minlat": 40.7457467, + "minlon": -73.9468181, + "maxlat": 40.7460208, + "maxlon": -73.9467268 + }, + "nodes": [ + 5481972168, + 11623120700, + 6759757000 + ], + "geometry": [ + { "lat": 40.7457467, "lon": -73.9468181 }, + { "lat": 40.7458035, "lon": -73.9467992 }, + { "lat": 40.7460208, "lon": -73.9467268 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 720248381, + "bounds": { + "minlat": 40.7459863, + "minlon": -73.9467268, + "maxlat": 40.7460208, + "maxlon": -73.9465632 + }, + "nodes": [ + 6759757000, + 6759757001 + ], + "geometry": [ + { "lat": 40.7460208, "lon": -73.9467268 }, + { "lat": 40.7459863, "lon": -73.9465632 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 720248382, + "bounds": { + "minlat": 40.7457130, + "minlon": -73.9466521, + "maxlat": 40.7459863, + "maxlon": -73.9465632 + }, + "nodes": [ + 6759757001, + 11623120642, + 5481972165 + ], + "geometry": [ + { "lat": 40.7459863, "lon": -73.9465632 }, + { "lat": 40.7457703, "lon": -73.9466335 }, + { "lat": 40.7457130, "lon": -73.9466521 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 720325930, + "bounds": { + "minlat": 40.7249041, + "minlon": -73.9333748, + "maxlat": 40.7253323, + "maxlon": -73.9318993 + }, + "nodes": [ + 6219006699, + 7573166324, + 12162652787, + 9194902732, + 12162652786, + 9194902731, + 11872982287, + 9194902728, + 476025204 + ], + "geometry": [ + { "lat": 40.7249041, "lon": -73.9333748 }, + { "lat": 40.7249665, "lon": -73.9330967 }, + { "lat": 40.7249909, "lon": -73.9329978 }, + { "lat": 40.7250239, "lon": -73.9328697 }, + { "lat": 40.7250640, "lon": -73.9327279 }, + { "lat": 40.7251054, "lon": -73.9325884 }, + { "lat": 40.7251508, "lon": -73.9324513 }, + { "lat": 40.7252031, "lon": -73.9323003 }, + { "lat": 40.7253323, "lon": -73.9318993 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 720392290, + "bounds": { + "minlat": 40.7259965, + "minlon": -73.9302165, + "maxlat": 40.7266101, + "maxlon": -73.9299316 + }, + "nodes": [ + 4456513140, + 11070270066, + 4695098061, + 42530438 + ], + "geometry": [ + { "lat": 40.7259965, "lon": -73.9299316 }, + { "lat": 40.7260166, "lon": -73.9299409 }, + { "lat": 40.7265863, "lon": -73.9302054 }, + { "lat": 40.7266101, "lon": -73.9302165 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Scott Avenue" + } +}, +{ + "type": "way", + "id": 720392291, + "bounds": { + "minlat": 40.7249011, + "minlon": -73.9313569, + "maxlat": 40.7253136, + "maxlon": -73.9311751 + }, + "nodes": [ + 42509697, + 4022525304 + ], + "geometry": [ + { "lat": 40.7249011, "lon": -73.9311751 }, + { "lat": 40.7253136, "lon": -73.9313569 } + ], + "tags": { + "highway": "unclassified", + "lane_markings": "no", + "name": "Gardner Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 720392292, + "bounds": { + "minlat": 40.7256724, + "minlon": -73.9311342, + "maxlat": 40.7259965, + "maxlon": -73.9299316 + }, + "nodes": [ + 4456513140, + 11286430025 + ], + "geometry": [ + { "lat": 40.7259965, "lon": -73.9299316 }, + { "lat": 40.7256724, "lon": -73.9311342 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Cherry Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 720479937, + "bounds": { + "minlat": 40.7466130, + "minlon": -73.9476083, + "maxlat": 40.7473679, + "maxlon": -73.9438229 + }, + "nodes": [ + 2971841370, + 9982698550, + 9982698549, + 2971841369, + 9982745666, + 9982745664, + 9982745663, + 6761543544, + 9982745665, + 8334173123, + 42825906 + ], + "geometry": [ + { "lat": 40.7466130, "lon": -73.9438229 }, + { "lat": 40.7466210, "lon": -73.9438460 }, + { "lat": 40.7466332, "lon": -73.9438808 }, + { "lat": 40.7466439, "lon": -73.9439160 }, + { "lat": 40.7466542, "lon": -73.9439546 }, + { "lat": 40.7468883, "lon": -73.9451423 }, + { "lat": 40.7468979, "lon": -73.9451913 }, + { "lat": 40.7469204, "lon": -73.9453036 }, + { "lat": 40.7469408, "lon": -73.9454112 }, + { "lat": 40.7473452, "lon": -73.9474897 }, + { "lat": 40.7473679, "lon": -73.9476083 } + ], + "tags": { + "cycleway:left": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "45th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 720858121, + "bounds": { + "minlat": 40.8129107, + "minlon": -73.9924441, + "maxlat": 40.8131546, + "maxlon": -73.9921606 + }, + "nodes": [ + 6763640463, + 6763640464, + 6763640465 + ], + "geometry": [ + { "lat": 40.8129107, "lon": -73.9921606 }, + { "lat": 40.8130470, "lon": -73.9924441 }, + { "lat": 40.8131546, "lon": -73.9923732 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 721033275, + "bounds": { + "minlat": 40.8336637, + "minlon": -73.9718167, + "maxlat": 40.8339057, + "maxlon": -73.9717188 + }, + "nodes": [ + 3656109226, + 6765201740 + ], + "geometry": [ + { "lat": 40.8339057, "lon": -73.9717188 }, + { "lat": 40.8336637, "lon": -73.9718167 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 721121126, + "bounds": { + "minlat": 40.7947564, + "minlon": -73.9980470, + "maxlat": 40.7960289, + "maxlon": -73.9967864 + }, + "nodes": [ + 6765879171, + 6765879172, + 6765879173, + 6765879174, + 6765879175, + 6765879176 + ], + "geometry": [ + { "lat": 40.7947564, "lon": -73.9971073 }, + { "lat": 40.7949003, "lon": -73.9979940 }, + { "lat": 40.7949840, "lon": -73.9980470 }, + { "lat": 40.7959583, "lon": -73.9977633 }, + { "lat": 40.7960289, "lon": -73.9976255 }, + { "lat": 40.7959041, "lon": -73.9967864 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 721777588, + "bounds": { + "minlat": 40.8163138, + "minlon": -73.9156715, + "maxlat": 40.8164638, + "maxlon": -73.9146560 + }, + "nodes": [ + 5482340614, + 13040495337, + 6415815558 + ], + "geometry": [ + { "lat": 40.8163138, "lon": -73.9146560 }, + { "lat": 40.8164439, "lon": -73.9155452 }, + { "lat": 40.8164638, "lon": -73.9156715 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Westchester Avenue", + "name:etymology:wikidata": "Q17091379", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Westchester", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10459", + "tiger:zip_right": "10459", + "wikidata": "Q20979444", + "wikipedia": "en:Westchester Avenue" + } +}, +{ + "type": "way", + "id": 721893630, + "bounds": { + "minlat": 40.7816151, + "minlon": -74.0084731, + "maxlat": 40.7823152, + "maxlon": -74.0076019 + }, + "nodes": [ + 6771752380, + 6771752381, + 6771752382, + 12364532718, + 6771776390, + 6771752383, + 12364532719, + 6771752384, + 6771776385, + 6771752381 + ], + "geometry": [ + { "lat": 40.7818329, "lon": -74.0076019 }, + { "lat": 40.7817636, "lon": -74.0077728 }, + { "lat": 40.7823152, "lon": -74.0081534 }, + { "lat": 40.7821682, "lon": -74.0083070 }, + { "lat": 40.7821080, "lon": -74.0083699 }, + { "lat": 40.7819988, "lon": -74.0084731 }, + { "lat": 40.7817520, "lon": -74.0080136 }, + { "lat": 40.7816151, "lon": -74.0077588 }, + { "lat": 40.7816628, "lon": -74.0077191 }, + { "lat": 40.7817636, "lon": -74.0077728 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 721893631, + "bounds": { + "minlat": 40.7814765, + "minlon": -74.0086061, + "maxlat": 40.7818241, + "maxlon": -74.0078454 + }, + "nodes": [ + 6771776389, + 6771776388 + ], + "geometry": [ + { "lat": 40.7814765, "lon": -74.0078454 }, + { "lat": 40.7818241, "lon": -74.0086061 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 721893632, + "bounds": { + "minlat": 40.7817599, + "minlon": -74.0095177, + "maxlat": 40.7827215, + "maxlon": -74.0087724 + }, + "nodes": [ + 103856491, + 6771776391, + 6771776392, + 6771776393, + 6771776394, + 6771776395, + 6771776396 + ], + "geometry": [ + { "lat": 40.7817599, "lon": -74.0090195 }, + { "lat": 40.7819937, "lon": -74.0095177 }, + { "lat": 40.7823359, "lon": -74.0092539 }, + { "lat": 40.7824280, "lon": -74.0092213 }, + { "lat": 40.7827215, "lon": -74.0089615 }, + { "lat": 40.7826349, "lon": -74.0087724 }, + { "lat": 40.7823293, "lon": -74.0090221 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 721971883, + "bounds": { + "minlat": 40.8081583, + "minlon": -73.9278700, + "maxlat": 40.8087308, + "maxlon": -73.9265383 + }, + "nodes": [ + 42732852, + 11427300167, + 9163759287, + 7553904074, + 7553904073, + 4207700492 + ], + "geometry": [ + { "lat": 40.8081583, "lon": -73.9265383 }, + { "lat": 40.8082183, "lon": -73.9266622 }, + { "lat": 40.8082299, "lon": -73.9266863 }, + { "lat": 40.8083977, "lon": -73.9270803 }, + { "lat": 40.8085302, "lon": -73.9273921 }, + { "lat": 40.8087308, "lon": -73.9278700 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 722441539, + "bounds": { + "minlat": 40.7700816, + "minlon": -73.9189980, + "maxlat": 40.7703090, + "maxlon": -73.9181169 + }, + "nodes": [ + 42935204, + 9376232974, + 5104280318, + 6406731477, + 42849714 + ], + "geometry": [ + { "lat": 40.7703090, "lon": -73.9189980 }, + { "lat": 40.7702295, "lon": -73.9186876 }, + { "lat": 40.7701387, "lon": -73.9183329 }, + { "lat": 40.7701142, "lon": -73.9182347 }, + { "lat": 40.7700816, "lon": -73.9181169 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Astoria Boulevard South", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 722791584, + "bounds": { + "minlat": 40.7512755, + "minlon": -73.9433505, + "maxlat": 40.7513628, + "maxlon": -73.9431754 + }, + "nodes": [ + 5487864349, + 8315072976, + 6779904963 + ], + "geometry": [ + { "lat": 40.7513628, "lon": -73.9433505 }, + { "lat": 40.7513357, "lon": -73.9432962 }, + { "lat": 40.7512755, "lon": -73.9431754 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 722791586, + "bounds": { + "minlat": 40.7503464, + "minlon": -73.9429359, + "maxlat": 40.7505402, + "maxlon": -73.9425629 + }, + "nodes": [ + 6779904968, + 11520108753, + 6779904969 + ], + "geometry": [ + { "lat": 40.7505402, "lon": -73.9429359 }, + { "lat": 40.7504933, "lon": -73.9428457 }, + { "lat": 40.7503464, "lon": -73.9425629 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 722791589, + "bounds": { + "minlat": 40.7506555, + "minlon": -73.9431235, + "maxlat": 40.7507731, + "maxlon": -73.9428340 + }, + "nodes": [ + 42920894, + 8315072927, + 6779904978 + ], + "geometry": [ + { "lat": 40.7506555, "lon": -73.9428340 }, + { "lat": 40.7506764, "lon": -73.9429379 }, + { "lat": 40.7507731, "lon": -73.9431235 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 722996633, + "bounds": { + "minlat": 40.7233829, + "minlon": -73.9871050, + "maxlat": 40.7237651, + "maxlon": -73.9861928 + }, + "nodes": [ + 6781574663, + 6781574664 + ], + "geometry": [ + { "lat": 40.7237651, "lon": -73.9871050 }, + { "lat": 40.7233829, "lon": -73.9861928 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 722996634, + "bounds": { + "minlat": 40.7232384, + "minlon": -73.9862972, + "maxlat": 40.7235064, + "maxlon": -73.9861037 + }, + "nodes": [ + 4505948473, + 6781574664, + 8309479306, + 6781574665 + ], + "geometry": [ + { "lat": 40.7235064, "lon": -73.9861037 }, + { "lat": 40.7233829, "lon": -73.9861928 }, + { "lat": 40.7233380, "lon": -73.9862251 }, + { "lat": 40.7232384, "lon": -73.9862972 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 723323622, + "bounds": { + "minlat": 40.8235700, + "minlon": -73.9554447, + "maxlat": 40.8253994, + "maxlon": -73.9537502 + }, + "nodes": [ + 6979088367, + 11937720193, + 6885524034, + 12952255691, + 595353044, + 12952255688, + 12952255690, + 595353041, + 12952255689, + 12952255682, + 595353038, + 6885524035, + 595353035, + 595353032, + 595353029, + 6885524036, + 10170703026, + 7491182059 + ], + "geometry": [ + { "lat": 40.8253994, "lon": -73.9537502 }, + { "lat": 40.8253505, "lon": -73.9538648 }, + { "lat": 40.8253034, "lon": -73.9539586 }, + { "lat": 40.8252393, "lon": -73.9540772 }, + { "lat": 40.8251528, "lon": -73.9542130 }, + { "lat": 40.8250871, "lon": -73.9543057 }, + { "lat": 40.8250275, "lon": -73.9543844 }, + { "lat": 40.8249799, "lon": -73.9544416 }, + { "lat": 40.8249229, "lon": -73.9545091 }, + { "lat": 40.8248114, "lon": -73.9546148 }, + { "lat": 40.8247249, "lon": -73.9546950 }, + { "lat": 40.8245724, "lon": -73.9548151 }, + { "lat": 40.8244428, "lon": -73.9549112 }, + { "lat": 40.8242094, "lon": -73.9550775 }, + { "lat": 40.8239902, "lon": -73.9552170 }, + { "lat": 40.8236662, "lon": -73.9553884 }, + { "lat": 40.8236149, "lon": -73.9554184 }, + { "lat": 40.8235700, "lon": -73.9554447 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 723485436, + "bounds": { + "minlat": 40.7520018, + "minlon": -73.9397739, + "maxlat": 40.7522240, + "maxlon": -73.9393394 + }, + "nodes": [ + 6785719785, + 7792387283, + 6785719786 + ], + "geometry": [ + { "lat": 40.7522240, "lon": -73.9397739 }, + { "lat": 40.7520259, "lon": -73.9393839 }, + { "lat": 40.7520018, "lon": -73.9393394 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 723720308, + "bounds": { + "minlat": 40.7521080, + "minlon": -73.9451046, + "maxlat": 40.7524881, + "maxlon": -73.9442350 + }, + "nodes": [ + 3785649062, + 7768202175, + 42793624 + ], + "geometry": [ + { "lat": 40.7524881, "lon": -73.9451046 }, + { "lat": 40.7521673, "lon": -73.9443723 }, + { "lat": 40.7521080, "lon": -73.9442350 } + ], + "tags": { + "highway": "secondary", + "name": "Queens Plaza South" + } +}, +{ + "type": "way", + "id": 723835782, + "bounds": { + "minlat": 40.8195420, + "minlon": -73.9135200, + "maxlat": 40.8223259, + "maxlon": -73.9107011 + }, + "nodes": [ + 42761092, + 42768547, + 471222669, + 9990066030, + 2844501752, + 471222670, + 42730063, + 42768540, + 42744092, + 13547349199, + 42760885, + 13249081109, + 42768536 + ], + "geometry": [ + { "lat": 40.8223259, "lon": -73.9107011 }, + { "lat": 40.8222983, "lon": -73.9108502 }, + { "lat": 40.8222475, "lon": -73.9110972 }, + { "lat": 40.8222129, "lon": -73.9112720 }, + { "lat": 40.8221942, "lon": -73.9113662 }, + { "lat": 40.8221668, "lon": -73.9114893 }, + { "lat": 40.8220639, "lon": -73.9117739 }, + { "lat": 40.8214860, "lon": -73.9121680 }, + { "lat": 40.8208610, "lon": -73.9125700 }, + { "lat": 40.8201956, "lon": -73.9130206 }, + { "lat": 40.8201330, "lon": -73.9130630 }, + { "lat": 40.8195793, "lon": -73.9134911 }, + { "lat": 40.8195420, "lon": -73.9135200 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Third Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 723945877, + "bounds": { + "minlat": 40.8587130, + "minlon": -73.9302597, + "maxlat": 40.8587815, + "maxlon": -73.9302155 + }, + "nodes": [ + 6789770917, + 9561253083, + 6789770918 + ], + "geometry": [ + { "lat": 40.8587815, "lon": -73.9302155 }, + { "lat": 40.8587326, "lon": -73.9302470 }, + { "lat": 40.8587130, "lon": -73.9302597 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 723945878, + "bounds": { + "minlat": 40.8582865, + "minlon": -73.9305439, + "maxlat": 40.8587130, + "maxlon": -73.9302597 + }, + "nodes": [ + 6789770918, + 6789770919, + 6789770920 + ], + "geometry": [ + { "lat": 40.8587130, "lon": -73.9302597 }, + { "lat": 40.8585766, "lon": -73.9303482 }, + { "lat": 40.8582865, "lon": -73.9305439 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 723955424, + "bounds": { + "minlat": 40.7085569, + "minlon": -73.9326529, + "maxlat": 40.7088579, + "maxlon": -73.9314754 + }, + "nodes": [ + 6789842924, + 9767625290, + 6789842928, + 6789842927 + ], + "geometry": [ + { "lat": 40.7085569, "lon": -73.9326529 }, + { "lat": 40.7085753, "lon": -73.9325810 }, + { "lat": 40.7085948, "lon": -73.9325045 }, + { "lat": 40.7088579, "lon": -73.9314754 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 723955425, + "bounds": { + "minlat": 40.7079772, + "minlon": -73.9309699, + "maxlat": 40.7084853, + "maxlon": -73.9307478 + }, + "nodes": [ + 6789842929, + 9767625286, + 6789842936, + 6789842930, + 6789842931, + 6789842932, + 6789842933, + 6789842937, + 6789842934, + 6789842935 + ], + "geometry": [ + { "lat": 40.7079772, "lon": -73.9308859 }, + { "lat": 40.7080485, "lon": -73.9309121 }, + { "lat": 40.7080791, "lon": -73.9309234 }, + { "lat": 40.7082054, "lon": -73.9309699 }, + { "lat": 40.7082595, "lon": -73.9309590 }, + { "lat": 40.7082953, "lon": -73.9308772 }, + { "lat": 40.7083287, "lon": -73.9307858 }, + { "lat": 40.7083492, "lon": -73.9307532 }, + { "lat": 40.7083813, "lon": -73.9307478 }, + { "lat": 40.7084853, "lon": -73.9308021 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 723957043, + "bounds": { + "minlat": 40.7910235, + "minlon": -74.0009914, + "maxlat": 40.7922072, + "maxlon": -74.0005012 + }, + "nodes": [ + 103876638, + 10258506686, + 103867981, + 10258506680, + 103876642, + 7209743400, + 103876647, + 103876650, + 103876652, + 752619658, + 7468537638, + 752619534 + ], + "geometry": [ + { "lat": 40.7910235, "lon": -74.0007476 }, + { "lat": 40.7912595, "lon": -74.0005991 }, + { "lat": 40.7913218, "lon": -74.0005673 }, + { "lat": 40.7913875, "lon": -74.0005337 }, + { "lat": 40.7914727, "lon": -74.0005012 }, + { "lat": 40.7914955, "lon": -74.0005033 }, + { "lat": 40.7916255, "lon": -74.0005152 }, + { "lat": 40.7916920, "lon": -74.0005335 }, + { "lat": 40.7918084, "lon": -74.0005953 }, + { "lat": 40.7919391, "lon": -74.0007317 }, + { "lat": 40.7920989, "lon": -74.0009230 }, + { "lat": 40.7922072, "lon": -74.0009914 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 723957044, + "bounds": { + "minlat": 40.7908468, + "minlon": -73.9999665, + "maxlat": 40.7908797, + "maxlon": -73.9999406 + }, + "nodes": [ + 6789853609, + 6789853610 + ], + "geometry": [ + { "lat": 40.7908797, "lon": -73.9999665 }, + { "lat": 40.7908468, "lon": -73.9999406 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 723957045, + "bounds": { + "minlat": 40.7902711, + "minlon": -74.0000995, + "maxlat": 40.7908468, + "maxlon": -73.9998978 + }, + "nodes": [ + 6789853610, + 5751042508, + 5751042509, + 6789853612 + ], + "geometry": [ + { "lat": 40.7908468, "lon": -73.9999406 }, + { "lat": 40.7907896, "lon": -73.9998978 }, + { "lat": 40.7903025, "lon": -74.0000393 }, + { "lat": 40.7902711, "lon": -74.0000995 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 723957046, + "bounds": { + "minlat": 40.7902371, + "minlon": -74.0004585, + "maxlat": 40.7903153, + "maxlon": -74.0001382 + }, + "nodes": [ + 6789853611, + 5751042510, + 5751042511, + 6789853613 + ], + "geometry": [ + { "lat": 40.7902509, "lon": -74.0001382 }, + { "lat": 40.7902371, "lon": -74.0001647 }, + { "lat": 40.7902641, "lon": -74.0004062 }, + { "lat": 40.7903153, "lon": -74.0004585 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 723957047, + "bounds": { + "minlat": 40.7902509, + "minlon": -74.0001382, + "maxlat": 40.7902711, + "maxlon": -74.0000995 + }, + "nodes": [ + 6789853612, + 6789853611 + ], + "geometry": [ + { "lat": 40.7902711, "lon": -74.0000995 }, + { "lat": 40.7902509, "lon": -74.0001382 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 723957048, + "bounds": { + "minlat": 40.7903456, + "minlon": -74.0010741, + "maxlat": 40.7905217, + "maxlon": -74.0004894 + }, + "nodes": [ + 6789853614, + 5751042512, + 6789853608, + 7468537711, + 5751042513 + ], + "geometry": [ + { "lat": 40.7903456, "lon": -74.0004894 }, + { "lat": 40.7903995, "lon": -74.0005443 }, + { "lat": 40.7904314, "lon": -74.0006184 }, + { "lat": 40.7905003, "lon": -74.0009662 }, + { "lat": 40.7905217, "lon": -74.0010741 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 723957049, + "bounds": { + "minlat": 40.7903153, + "minlon": -74.0004894, + "maxlat": 40.7903456, + "maxlon": -74.0004585 + }, + "nodes": [ + 6789853613, + 6789853614 + ], + "geometry": [ + { "lat": 40.7903153, "lon": -74.0004585 }, + { "lat": 40.7903456, "lon": -74.0004894 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 724260302, + "bounds": { + "minlat": 40.8419093, + "minlon": -73.9941359, + "maxlat": 40.8423232, + "maxlon": -73.9934140 + }, + "nodes": [ + 103238953, + 103255677 + ], + "geometry": [ + { "lat": 40.8419093, "lon": -73.9934140 }, + { "lat": 40.8423232, "lon": -73.9941359 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "East Homestead Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Homestead", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650" + } +}, +{ + "type": "way", + "id": 724268268, + "bounds": { + "minlat": 40.7618356, + "minlon": -73.9331309, + "maxlat": 40.7622619, + "maxlon": -73.9327718 + }, + "nodes": [ + 6792378553, + 6792378554, + 6792378555 + ], + "geometry": [ + { "lat": 40.7622619, "lon": -73.9327718 }, + { "lat": 40.7621859, "lon": -73.9328313 }, + { "lat": 40.7618356, "lon": -73.9331309 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 724268269, + "bounds": { + "minlat": 40.7607399, + "minlon": -73.9341018, + "maxlat": 40.7611899, + "maxlon": -73.9337017 + }, + "nodes": [ + 6792378556, + 6792378557, + 6792378558 + ], + "geometry": [ + { "lat": 40.7607399, "lon": -73.9341018 }, + { "lat": 40.7608334, "lon": -73.9340187 }, + { "lat": 40.7611899, "lon": -73.9337017 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 724396641, + "bounds": { + "minlat": 40.7479020, + "minlon": -73.9548689, + "maxlat": 40.7480473, + "maxlon": -73.9547296 + }, + "nodes": [ + 2991227233, + 6540816592, + 2991227240, + 11191825543, + 6793599438, + 6793599439, + 2991227233 + ], + "geometry": [ + { "lat": 40.7480473, "lon": -73.9548203 }, + { "lat": 40.7480052, "lon": -73.9548360 }, + { "lat": 40.7479223, "lon": -73.9548689 }, + { "lat": 40.7479182, "lon": -73.9548505 }, + { "lat": 40.7479020, "lon": -73.9547781 }, + { "lat": 40.7480270, "lon": -73.9547296 }, + { "lat": 40.7480473, "lon": -73.9548203 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 724428590, + "bounds": { + "minlat": 40.7366884, + "minlon": -73.9108467, + "maxlat": 40.7381390, + "maxlon": -73.9103764 + }, + "nodes": [ + 6793880148, + 7827752531, + 10088171225, + 10088171226, + 10088171227, + 9888620867, + 10088171228, + 9888620868, + 9888620864 + ], + "geometry": [ + { "lat": 40.7381390, "lon": -73.9108467 }, + { "lat": 40.7378457, "lon": -73.9108232 }, + { "lat": 40.7377602, "lon": -73.9108174 }, + { "lat": 40.7376853, "lon": -73.9108049 }, + { "lat": 40.7376099, "lon": -73.9107849 }, + { "lat": 40.7375428, "lon": -73.9107654 }, + { "lat": 40.7374543, "lon": -73.9107304 }, + { "lat": 40.7373685, "lon": -73.9106921 }, + { "lat": 40.7366884, "lon": -73.9103764 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Veronica Avenue" + } +}, +{ + "type": "way", + "id": 724618280, + "bounds": { + "minlat": 40.7424732, + "minlon": -73.9546226, + "maxlat": 40.7425528, + "maxlon": -73.9542046 + }, + "nodes": [ + 6795905102, + 11435872572, + 6795905103 + ], + "geometry": [ + { "lat": 40.7425528, "lon": -73.9546226 }, + { "lat": 40.7424921, "lon": -73.9543041 }, + { "lat": 40.7424732, "lon": -73.9542046 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 724882331, + "bounds": { + "minlat": 40.8368400, + "minlon": -73.9706310, + "maxlat": 40.8394415, + "maxlon": -73.9702113 + }, + "nodes": [ + 103137166, + 13511982630, + 103137167, + 13511982634, + 103137168, + 103137169, + 8219505240, + 7697903101, + 103137171, + 7697903108, + 103137172, + 7697903106, + 103137173, + 103113253, + 3882414957, + 3882414963 + ], + "geometry": [ + { "lat": 40.8368400, "lon": -73.9706310 }, + { "lat": 40.8371204, "lon": -73.9705268 }, + { "lat": 40.8372220, "lon": -73.9704890 }, + { "lat": 40.8373136, "lon": -73.9704511 }, + { "lat": 40.8373430, "lon": -73.9704390 }, + { "lat": 40.8375080, "lon": -73.9703810 }, + { "lat": 40.8375699, "lon": -73.9703646 }, + { "lat": 40.8376729, "lon": -73.9703374 }, + { "lat": 40.8377310, "lon": -73.9703220 }, + { "lat": 40.8377914, "lon": -73.9703109 }, + { "lat": 40.8379000, "lon": -73.9702910 }, + { "lat": 40.8379215, "lon": -73.9702885 }, + { "lat": 40.8383330, "lon": -73.9702400 }, + { "lat": 40.8386540, "lon": -73.9702210 }, + { "lat": 40.8391604, "lon": -73.9702148 }, + { "lat": 40.8394415, "lon": -73.9702113 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 725041844, + "bounds": { + "minlat": 40.7625911, + "minlon": -73.9298580, + "maxlat": 40.7630668, + "maxlon": -73.9294285 + }, + "nodes": [ + 6799076714, + 6799076715, + 2883487948, + 6799076716, + 6799076717, + 6799076718 + ], + "geometry": [ + { "lat": 40.7625911, "lon": -73.9298580 }, + { "lat": 40.7626596, "lon": -73.9298020 }, + { "lat": 40.7628472, "lon": -73.9296382 }, + { "lat": 40.7629309, "lon": -73.9295623 }, + { "lat": 40.7630385, "lon": -73.9294582 }, + { "lat": 40.7630668, "lon": -73.9294285 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 725343016, + "bounds": { + "minlat": 40.8487655, + "minlon": -74.0198015, + "maxlat": 40.8498032, + "maxlon": -74.0193403 + }, + "nodes": [ + 6801941571, + 6801941572, + 6801941573, + 6801941574, + 6801941575, + 6801941576 + ], + "geometry": [ + { "lat": 40.8487655, "lon": -74.0198015 }, + { "lat": 40.8489941, "lon": -74.0197091 }, + { "lat": 40.8492222, "lon": -74.0197880 }, + { "lat": 40.8496184, "lon": -74.0197473 }, + { "lat": 40.8498032, "lon": -74.0196287 }, + { "lat": 40.8497054, "lon": -74.0193403 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 725343017, + "bounds": { + "minlat": 40.8489941, + "minlon": -74.0197091, + "maxlat": 40.8497054, + "maxlon": -74.0190483 + }, + "nodes": [ + 6801941576, + 6801941578, + 6801941579, + 6840605466, + 6801941580, + 6801941572 + ], + "geometry": [ + { "lat": 40.8497054, "lon": -74.0193403 }, + { "lat": 40.8496024, "lon": -74.0190483 }, + { "lat": 40.8493039, "lon": -74.0192270 }, + { "lat": 40.8491439, "lon": -74.0194478 }, + { "lat": 40.8490629, "lon": -74.0195597 }, + { "lat": 40.8489941, "lon": -74.0197091 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 725427651, + "bounds": { + "minlat": 40.8510807, + "minlon": -73.9697550, + "maxlat": 40.8511290, + "maxlon": -73.9693212 + }, + "nodes": [ + 5179132348, + 103254094 + ], + "geometry": [ + { "lat": 40.8510807, "lon": -73.9693212 }, + { "lat": 40.8511290, "lon": -73.9697550 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 725771860, + "bounds": { + "minlat": 40.7357482, + "minlon": -73.9813207, + "maxlat": 40.7362564, + "maxlon": -73.9809846 + }, + "nodes": [ + 6804917575, + 10166118093, + 6804917580, + 6804917576, + 6804917577, + 6804917578, + 6804917579 + ], + "geometry": [ + { "lat": 40.7362564, "lon": -73.9809846 }, + { "lat": 40.7361890, "lon": -73.9810344 }, + { "lat": 40.7361657, "lon": -73.9810519 }, + { "lat": 40.7359359, "lon": -73.9812235 }, + { "lat": 40.7358595, "lon": -73.9810696 }, + { "lat": 40.7357482, "lon": -73.9811518 }, + { "lat": 40.7358248, "lon": -73.9813207 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 725771861, + "bounds": { + "minlat": 40.7352285, + "minlon": -73.9803927, + "maxlat": 40.7358267, + "maxlon": -73.9799682 + }, + "nodes": [ + 6804917581, + 10166118084, + 6804917584, + 6804927285, + 6804917582, + 10166118077, + 6804917583 + ], + "geometry": [ + { "lat": 40.7358267, "lon": -73.9799682 }, + { "lat": 40.7357614, "lon": -73.9800154 }, + { "lat": 40.7357328, "lon": -73.9800359 }, + { "lat": 40.7356071, "lon": -73.9801256 }, + { "lat": 40.7353181, "lon": -73.9803319 }, + { "lat": 40.7352852, "lon": -73.9803508 }, + { "lat": 40.7352285, "lon": -73.9803927 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 725816958, + "bounds": { + "minlat": 40.8493663, + "minlon": -73.9831631, + "maxlat": 40.8496977, + "maxlon": -73.9825776 + }, + "nodes": [ + 103193342, + 103314462 + ], + "geometry": [ + { "lat": 40.8493663, "lon": -73.9825776 }, + { "lat": 40.8496977, "lon": -73.9831631 } + ], + "tags": { + "highway": "residential", + "name": "Stillwell Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Stillwell", + "tiger:name_type": "Ave", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 725873410, + "bounds": { + "minlat": 40.7733726, + "minlon": -73.9935650, + "maxlat": 40.7734708, + "maxlon": -73.9934458 + }, + "nodes": [ + 3831470692, + 6805763828, + 6824330588, + 6824330587, + 6824330586, + 3831470685, + 6805763814, + 6805763821, + 6805763818, + 6805763819, + 6805763820, + 6805763817, + 6805763815, + 6805763816, + 3831470692 + ], + "geometry": [ + { "lat": 40.7734337, "lon": -73.9934621 }, + { "lat": 40.7734219, "lon": -73.9934552 }, + { "lat": 40.7734132, "lon": -73.9934458 }, + { "lat": 40.7733726, "lon": -73.9935153 }, + { "lat": 40.7734046, "lon": -73.9935428 }, + { "lat": 40.7734107, "lon": -73.9935453 }, + { "lat": 40.7734204, "lon": -73.9935504 }, + { "lat": 40.7734403, "lon": -73.9935622 }, + { "lat": 40.7734506, "lon": -73.9935650 }, + { "lat": 40.7734593, "lon": -73.9935626 }, + { "lat": 40.7734658, "lon": -73.9935569 }, + { "lat": 40.7734705, "lon": -73.9935489 }, + { "lat": 40.7734708, "lon": -73.9935380 }, + { "lat": 40.7734362, "lon": -73.9934795 }, + { "lat": 40.7734337, "lon": -73.9934621 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "fine_gravel" + } +}, +{ + "type": "way", + "id": 726199152, + "bounds": { + "minlat": 40.7509421, + "minlon": -73.9326380, + "maxlat": 40.7519027, + "maxlon": -73.9322345 + }, + "nodes": [ + 4443931196, + 8088590998, + 6808438973, + 4443930254 + ], + "geometry": [ + { "lat": 40.7519027, "lon": -73.9326380 }, + { "lat": 40.7517992, "lon": -73.9326119 }, + { "lat": 40.7514950, "lon": -73.9325283 }, + { "lat": 40.7509421, "lon": -73.9322345 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 726200988, + "bounds": { + "minlat": 40.7507665, + "minlon": -73.9337792, + "maxlat": 40.7515694, + "maxlon": -73.9328636 + }, + "nodes": [ + 42849753, + 8088591002, + 6808477095, + 6808477096 + ], + "geometry": [ + { "lat": 40.7515694, "lon": -73.9337792 }, + { "lat": 40.7514826, "lon": -73.9336760 }, + { "lat": 40.7510673, "lon": -73.9331948 }, + { "lat": 40.7507665, "lon": -73.9328636 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 726260732, + "bounds": { + "minlat": 40.7519020, + "minlon": -73.9222343, + "maxlat": 40.7527848, + "maxlon": -73.9220600 + }, + "nodes": [ + 5488325077, + 6808640510 + ], + "geometry": [ + { "lat": 40.7527848, "lon": -73.9220600 }, + { "lat": 40.7519020, "lon": -73.9222343 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 726260735, + "bounds": { + "minlat": 40.7517974, + "minlon": -73.9226021, + "maxlat": 40.7519020, + "maxlon": -73.9222343 + }, + "nodes": [ + 6833045384, + 6808640518, + 6808640519, + 6808640520, + 6808640510 + ], + "geometry": [ + { "lat": 40.7518682, "lon": -73.9226021 }, + { "lat": 40.7517974, "lon": -73.9224288 }, + { "lat": 40.7518034, "lon": -73.9223228 }, + { "lat": 40.7518421, "lon": -73.9222544 }, + { "lat": 40.7519020, "lon": -73.9222343 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 726286031, + "bounds": { + "minlat": 40.7517072, + "minlon": -73.9217631, + "maxlat": 40.7517720, + "maxlon": -73.9209471 + }, + "nodes": [ + 5867098609, + 6808725055, + 7857650526 + ], + "geometry": [ + { "lat": 40.7517294, "lon": -73.9209471 }, + { "lat": 40.7517720, "lon": -73.9214927 }, + { "lat": 40.7517072, "lon": -73.9217631 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 726286033, + "bounds": { + "minlat": 40.7509753, + "minlon": -73.9248404, + "maxlat": 40.7516237, + "maxlon": -73.9199900 + }, + "nodes": [ + 5888828876, + 8593852975, + 10553286658, + 6808725056, + 6808725057, + 10553297515, + 10762298291, + 6808725058, + 10553286659, + 10553297514, + 5867098618, + 7857650529 + ], + "geometry": [ + { "lat": 40.7509753, "lon": -73.9199900 }, + { "lat": 40.7509869, "lon": -73.9200950 }, + { "lat": 40.7510240, "lon": -73.9204297 }, + { "lat": 40.7510354, "lon": -73.9205324 }, + { "lat": 40.7515220, "lon": -73.9213103 }, + { "lat": 40.7516216, "lon": -73.9216349 }, + { "lat": 40.7516195, "lon": -73.9217916 }, + { "lat": 40.7516158, "lon": -73.9220578 }, + { "lat": 40.7516167, "lon": -73.9221279 }, + { "lat": 40.7516237, "lon": -73.9226702 }, + { "lat": 40.7515125, "lon": -73.9247853 }, + { "lat": 40.7514798, "lon": -73.9248404 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 726559993, + "bounds": { + "minlat": 40.7493931, + "minlon": -73.9522251, + "maxlat": 40.7495327, + "maxlon": -73.9514830 + }, + "nodes": [ + 6810164260, + 9982771944, + 6810164261 + ], + "geometry": [ + { "lat": 40.7495327, "lon": -73.9522251 }, + { "lat": 40.7495138, "lon": -73.9521246 }, + { "lat": 40.7493931, "lon": -73.9514830 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 726559994, + "bounds": { + "minlat": 40.7493931, + "minlon": -73.9514830, + "maxlat": 40.7495689, + "maxlon": -73.9514227 + }, + "nodes": [ + 6810164261, + 7746800888, + 6810164262 + ], + "geometry": [ + { "lat": 40.7493931, "lon": -73.9514830 }, + { "lat": 40.7495140, "lon": -73.9514415 }, + { "lat": 40.7495689, "lon": -73.9514227 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 726568951, + "bounds": { + "minlat": 40.7524399, + "minlon": -73.9513288, + "maxlat": 40.7526419, + "maxlon": -73.9509023 + }, + "nodes": [ + 42826843, + 5034184388, + 6810283632 + ], + "geometry": [ + { "lat": 40.7524399, "lon": -73.9509023 }, + { "lat": 40.7524854, "lon": -73.9509982 }, + { "lat": 40.7526419, "lon": -73.9513288 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 726568952, + "bounds": { + "minlat": 40.7524518, + "minlon": -73.9514876, + "maxlat": 40.7526419, + "maxlon": -73.9513288 + }, + "nodes": [ + 6810283632, + 2462253844 + ], + "geometry": [ + { "lat": 40.7526419, "lon": -73.9513288 }, + { "lat": 40.7524518, "lon": -73.9514876 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 726936062, + "bounds": { + "minlat": 40.7721284, + "minlon": -74.0127787, + "maxlat": 40.7723599, + "maxlon": -74.0121280 + }, + "nodes": [ + 3611168123, + 3611168124, + 3611168129, + 3611168132 + ], + "geometry": [ + { "lat": 40.7721284, "lon": -74.0127787 }, + { "lat": 40.7721904, "lon": -74.0125449 }, + { "lat": 40.7723145, "lon": -74.0122292 }, + { "lat": 40.7723599, "lon": -74.0121280 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 727135244, + "bounds": { + "minlat": 40.8290195, + "minlon": -73.9448276, + "maxlat": 40.8315742, + "maxlon": -73.9429722 + }, + "nodes": [ + 42442638, + 11218910737, + 11221649600, + 42442642, + 11221649599, + 13703344142, + 11218896946, + 42442645, + 11218896945, + 11193685108, + 42438024, + 11193685106, + 11193685091, + 42442651 + ], + "geometry": [ + { "lat": 40.8290195, "lon": -73.9448276 }, + { "lat": 40.8290635, "lon": -73.9447953 }, + { "lat": 40.8295860, "lon": -73.9444138 }, + { "lat": 40.8296401, "lon": -73.9443743 }, + { "lat": 40.8296979, "lon": -73.9443321 }, + { "lat": 40.8300316, "lon": -73.9440884 }, + { "lat": 40.8302140, "lon": -73.9439552 }, + { "lat": 40.8302699, "lon": -73.9439142 }, + { "lat": 40.8303188, "lon": -73.9438786 }, + { "lat": 40.8308405, "lon": -73.9434975 }, + { "lat": 40.8308881, "lon": -73.9434627 }, + { "lat": 40.8309538, "lon": -73.9434146 }, + { "lat": 40.8314629, "lon": -73.9430525 }, + { "lat": 40.8315742, "lon": -73.9429722 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 727644278, + "bounds": { + "minlat": 40.7227332, + "minlon": -74.0044383, + "maxlat": 40.7236874, + "maxlon": -74.0036454 + }, + "nodes": [ + 42432135, + 8231938418, + 12187433944, + 8231938424, + 42436770, + 8231938425, + 12187433945, + 8231935500, + 42436763 + ], + "geometry": [ + { "lat": 40.7236874, "lon": -74.0036454 }, + { "lat": 40.7236452, "lon": -74.0036832 }, + { "lat": 40.7235725, "lon": -74.0037487 }, + { "lat": 40.7235326, "lon": -74.0037808 }, + { "lat": 40.7234576, "lon": -74.0038418 }, + { "lat": 40.7233921, "lon": -74.0038934 }, + { "lat": 40.7228249, "lon": -74.0043749 }, + { "lat": 40.7227747, "lon": -74.0044039 }, + { "lat": 40.7227332, "lon": -74.0044383 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Thompson Street", + "name:etymology:wikidata": "Q3568998", + "name:ko": "톰슨 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12070954", + "wikipedia": "en:Thompson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 727644279, + "bounds": { + "minlat": 40.7236874, + "minlon": -74.0043800, + "maxlat": 40.7240550, + "maxlon": -74.0036454 + }, + "nodes": [ + 42432135, + 8231938419, + 4890320282, + 42432127 + ], + "geometry": [ + { "lat": 40.7236874, "lon": -74.0036454 }, + { "lat": 40.7237127, "lon": -74.0036964 }, + { "lat": 40.7240295, "lon": -74.0043294 }, + { "lat": 40.7240550, "lon": -74.0043800 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 727644280, + "bounds": { + "minlat": 40.7295644, + "minlon": -73.9980762, + "maxlat": 40.7302937, + "maxlon": -73.9965723 + }, + "nodes": [ + 42436796, + 3584752231, + 3584752208, + 42452396, + 3584752205, + 3584752198, + 42433587 + ], + "geometry": [ + { "lat": 40.7302937, "lon": -73.9980762 }, + { "lat": 40.7302615, "lon": -73.9980152 }, + { "lat": 40.7299980, "lon": -73.9974698 }, + { "lat": 40.7299438, "lon": -73.9973576 }, + { "lat": 40.7298946, "lon": -73.9972558 }, + { "lat": 40.7295944, "lon": -73.9966343 }, + { "lat": 40.7295644, "lon": -73.9965723 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Washington Square South", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "parking:left": "no", + "parking:left:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 727649619, + "bounds": { + "minlat": 40.7256521, + "minlon": -73.9944754, + "maxlat": 40.7258473, + "maxlon": -73.9937550 + }, + "nodes": [ + 1692433914, + 12187431488, + 12187431487, + 5824300192, + 1692433911 + ], + "geometry": [ + { "lat": 40.7258473, "lon": -73.9944754 }, + { "lat": 40.7258338, "lon": -73.9944363 }, + { "lat": 40.7258253, "lon": -73.9944067 }, + { "lat": 40.7257190, "lon": -73.9940029 }, + { "lat": 40.7256521, "lon": -73.9937550 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Bleecker Street", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 727649620, + "bounds": { + "minlat": 40.7334463, + "minlon": -73.9988635, + "maxlat": 40.7348352, + "maxlon": -73.9955159 + }, + "nodes": [ + 42457721, + 12179564380, + 12179564381, + 12179564382, + 42430241, + 8309479733, + 12179524681, + 8309479729, + 42430857 + ], + "geometry": [ + { "lat": 40.7348352, "lon": -73.9988635 }, + { "lat": 40.7348296, "lon": -73.9988383 }, + { "lat": 40.7348200, "lon": -73.9988038 }, + { "lat": 40.7348094, "lon": -73.9987695 }, + { "lat": 40.7347874, "lon": -73.9987127 }, + { "lat": 40.7347385, "lon": -73.9985880 }, + { "lat": 40.7335064, "lon": -73.9956574 }, + { "lat": 40.7334844, "lon": -73.9956051 }, + { "lat": 40.7334463, "lon": -73.9955159 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 10th Street", + "name:ru": "Западная 10-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 727702632, + "bounds": { + "minlat": 40.7538916, + "minlon": -73.9769749, + "maxlat": 40.7543510, + "maxlon": -73.9758894 + }, + "nodes": [ + 6819525294, + 11507279904, + 420591228, + 10125247893, + 42443810 + ], + "geometry": [ + { "lat": 40.7538916, "lon": -73.9758894 }, + { "lat": 40.7539390, "lon": -73.9759999 }, + { "lat": 40.7540508, "lon": -73.9762627 }, + { "lat": 40.7543200, "lon": -73.9769024 }, + { "lat": 40.7543510, "lon": -73.9769749 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 45th Street", + "name:ru": "Восточная 45-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 727702633, + "bounds": { + "minlat": 40.7538223, + "minlon": -73.9758894, + "maxlat": 40.7538916, + "maxlon": -73.9757211 + }, + "nodes": [ + 6819525295, + 11509720173, + 6819525294 + ], + "geometry": [ + { "lat": 40.7538223, "lon": -73.9757211 }, + { "lat": 40.7538331, "lon": -73.9757473 }, + { "lat": 40.7538916, "lon": -73.9758894 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxheight": "12'5\"", + "name": "East 45th Street", + "name:ru": "Восточная 45-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 728122200, + "bounds": { + "minlat": 40.8177401, + "minlon": -73.9445008, + "maxlat": 40.8184378, + "maxlon": -73.9439919 + }, + "nodes": [ + 6823179309, + 6823179308, + 6823179306, + 10171324750, + 6823179315, + 10171324753, + 6823179298, + 6823179312 + ], + "geometry": [ + { "lat": 40.8184378, "lon": -73.9439919 }, + { "lat": 40.8183673, "lon": -73.9440433 }, + { "lat": 40.8181509, "lon": -73.9442012 }, + { "lat": 40.8181068, "lon": -73.9442333 }, + { "lat": 40.8180573, "lon": -73.9442694 }, + { "lat": 40.8180124, "lon": -73.9443017 }, + { "lat": 40.8179637, "lon": -73.9443377 }, + { "lat": 40.8177401, "lon": -73.9445008 } + ], + "tags": { + "access": "private", + "highway": "service", + "noname": "yes", + "service": "alley" + } +}, +{ + "type": "way", + "id": 728122201, + "bounds": { + "minlat": 40.8182784, + "minlon": -73.9428540, + "maxlat": 40.8185854, + "maxlon": -73.9426345 + }, + "nodes": [ + 6823179297, + 6823179303, + 10172899278, + 6823179316 + ], + "geometry": [ + { "lat": 40.8185854, "lon": -73.9426345 }, + { "lat": 40.8183651, "lon": -73.9427929 }, + { "lat": 40.8183375, "lon": -73.9428124 }, + { "lat": 40.8182784, "lon": -73.9428540 } + ], + "tags": { + "access": "private", + "highway": "service", + "noname": "yes", + "service": "alley" + } +}, +{ + "type": "way", + "id": 728122203, + "bounds": { + "minlat": 40.8173386, + "minlon": -73.9435540, + "maxlat": 40.8176531, + "maxlon": -73.9433122 + }, + "nodes": [ + 13450020366, + 13450020365, + 6823179302, + 6823179310, + 6823179304 + ], + "geometry": [ + { "lat": 40.8176531, "lon": -73.9433122 }, + { "lat": 40.8176012, "lon": -73.9433517 }, + { "lat": 40.8175608, "lon": -73.9433825 }, + { "lat": 40.8174484, "lon": -73.9434715 }, + { "lat": 40.8173386, "lon": -73.9435540 } + ], + "tags": { + "access": "private", + "highway": "service", + "noname": "yes", + "service": "alley" + } +}, +{ + "type": "way", + "id": 728122205, + "bounds": { + "minlat": 40.8178764, + "minlon": -73.9431520, + "maxlat": 40.8180451, + "maxlon": -73.9430271 + }, + "nodes": [ + 6823179299, + 6823179296, + 6823179311 + ], + "geometry": [ + { "lat": 40.8180451, "lon": -73.9430271 }, + { "lat": 40.8179686, "lon": -73.9430838 }, + { "lat": 40.8178764, "lon": -73.9431520 } + ], + "tags": { + "access": "private", + "highway": "service", + "noname": "yes", + "service": "alley" + } +}, +{ + "type": "way", + "id": 728835432, + "bounds": { + "minlat": 40.7172108, + "minlon": -73.9378294, + "maxlat": 40.7201499, + "maxlon": -73.9365453 + }, + "nodes": [ + 2805340010, + 42490369, + 42490375, + 42490377, + 9937834432, + 42490380, + 9937834431, + 9695771707, + 42490467 + ], + "geometry": [ + { "lat": 40.7172108, "lon": -73.9365453 }, + { "lat": 40.7174411, "lon": -73.9366467 }, + { "lat": 40.7181014, "lon": -73.9369490 }, + { "lat": 40.7187922, "lon": -73.9372582 }, + { "lat": 40.7193910, "lon": -73.9375068 }, + { "lat": 40.7194569, "lon": -73.9375342 }, + { "lat": 40.7195473, "lon": -73.9375727 }, + { "lat": 40.7200986, "lon": -73.9378075 }, + { "lat": 40.7201499, "lon": -73.9378294 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "2", + "name": "Morgan Avenue", + "oneway": "no", + "surface": "asphalt", + "traffic_signals": "signal" + } +}, +{ + "type": "way", + "id": 728846835, + "bounds": { + "minlat": 40.7765864, + "minlon": -73.9875237, + "maxlat": 40.7770450, + "maxlon": -73.9868270 + }, + "nodes": [ + 6828500177, + 6828500178, + 10742000943, + 6828500179, + 10742000935, + 3377387918, + 3377387919 + ], + "geometry": [ + { "lat": 40.7765864, "lon": -73.9868270 }, + { "lat": 40.7766477, "lon": -73.9869675 }, + { "lat": 40.7766610, "lon": -73.9869984 }, + { "lat": 40.7768316, "lon": -73.9873962 }, + { "lat": 40.7768870, "lon": -73.9874060 }, + { "lat": 40.7769357, "lon": -73.9875237 }, + { "lat": 40.7770450, "lon": -73.9874361 } + ], + "tags": { + "highway": "service", + "maxheight": "8'", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 728903861, + "bounds": { + "minlat": 40.7521425, + "minlon": -73.9243007, + "maxlat": 40.7525450, + "maxlon": -73.9237264 + }, + "nodes": [ + 6828923471, + 8088590992, + 10609398744, + 6828923470, + 10609398738, + 10609398739, + 10609398740, + 10609398741, + 10609398743, + 10609398745, + 10609398746, + 11645913697, + 10609398742 + ], + "geometry": [ + { "lat": 40.7525450, "lon": -73.9238351 }, + { "lat": 40.7524285, "lon": -73.9237931 }, + { "lat": 40.7524055, "lon": -73.9237843 }, + { "lat": 40.7522543, "lon": -73.9237264 }, + { "lat": 40.7521425, "lon": -73.9242647 }, + { "lat": 40.7521488, "lon": -73.9242818 }, + { "lat": 40.7521686, "lon": -73.9242915 }, + { "lat": 40.7522839, "lon": -73.9243007 }, + { "lat": 40.7522914, "lon": -73.9242998 }, + { "lat": 40.7523144, "lon": -73.9242973 }, + { "lat": 40.7523453, "lon": -73.9242954 }, + { "lat": 40.7523560, "lon": -73.9242941 }, + { "lat": 40.7524398, "lon": -73.9242853 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729125920, + "bounds": { + "minlat": 40.6989848, + "minlon": -73.9268910, + "maxlat": 40.7036670, + "maxlon": -73.9186095 + }, + "nodes": [ + 42501187, + 9799250854, + 9753035534, + 42471599, + 9753035535, + 9753035578, + 42509649, + 9753035577, + 9753035590, + 42536212, + 9753035589, + 9753035596, + 42536210, + 9753035597, + 9753035635, + 42521479, + 9753035636, + 10087025126, + 42477867, + 10087025125, + 9704024958, + 42506544, + 9704024956, + 42492398, + 9704024942, + 42516312, + 9704024947, + 9744131192, + 42528515, + 9744131193, + 9743987269, + 42530350 + ], + "geometry": [ + { "lat": 40.6989848, "lon": -73.9186095 }, + { "lat": 40.6990222, "lon": -73.9186805 }, + { "lat": 40.6993591, "lon": -73.9193196 }, + { "lat": 40.6993920, "lon": -73.9193770 }, + { "lat": 40.6994320, "lon": -73.9194472 }, + { "lat": 40.6997854, "lon": -73.9200664 }, + { "lat": 40.6998200, "lon": -73.9201270 }, + { "lat": 40.6998622, "lon": -73.9202014 }, + { "lat": 40.7002115, "lon": -73.9208174 }, + { "lat": 40.7002470, "lon": -73.9208800 }, + { "lat": 40.7002866, "lon": -73.9209495 }, + { "lat": 40.7006411, "lon": -73.9215713 }, + { "lat": 40.7006750, "lon": -73.9216310 }, + { "lat": 40.7007181, "lon": -73.9217073 }, + { "lat": 40.7010656, "lon": -73.9223196 }, + { "lat": 40.7011020, "lon": -73.9223840 }, + { "lat": 40.7011473, "lon": -73.9224635 }, + { "lat": 40.7014976, "lon": -73.9230763 }, + { "lat": 40.7015300, "lon": -73.9231330 }, + { "lat": 40.7015742, "lon": -73.9232098 }, + { "lat": 40.7019241, "lon": -73.9238176 }, + { "lat": 40.7019598, "lon": -73.9238790 }, + { "lat": 40.7020019, "lon": -73.9239534 }, + { "lat": 40.7023880, "lon": -73.9246360 }, + { "lat": 40.7027694, "lon": -73.9253163 }, + { "lat": 40.7028126, "lon": -73.9253929 }, + { "lat": 40.7028485, "lon": -73.9254555 }, + { "lat": 40.7032058, "lon": -73.9260819 }, + { "lat": 40.7032390, "lon": -73.9261400 }, + { "lat": 40.7032826, "lon": -73.9262175 }, + { "lat": 40.7036350, "lon": -73.9268345 }, + { "lat": 40.7036670, "lon": -73.9268910 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Knickerbocker Avenue", + "name:etymology:wikidata": "Q55609555", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Knickerbocker", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "tiger:zip_right": "11207" + } +}, +{ + "type": "way", + "id": 729364359, + "bounds": { + "minlat": 40.7517950, + "minlon": -73.9228187, + "maxlat": 40.7521154, + "maxlon": -73.9228046 + }, + "nodes": [ + 6833045379, + 6833045380 + ], + "geometry": [ + { "lat": 40.7521154, "lon": -73.9228187 }, + { "lat": 40.7517950, "lon": -73.9228046 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729364360, + "bounds": { + "minlat": 40.7517351, + "minlon": -73.9244273, + "maxlat": 40.7517950, + "maxlon": -73.9228046 + }, + "nodes": [ + 6833045380, + 6833045381 + ], + "geometry": [ + { "lat": 40.7517950, "lon": -73.9228046 }, + { "lat": 40.7517351, "lon": -73.9244273 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729364361, + "bounds": { + "minlat": 40.7524564, + "minlon": -73.9230514, + "maxlat": 40.7527097, + "maxlon": -73.9229548 + }, + "nodes": [ + 6833045382, + 8088590990, + 6833045383 + ], + "geometry": [ + { "lat": 40.7527097, "lon": -73.9230514 }, + { "lat": 40.7526055, "lon": -73.9230116 }, + { "lat": 40.7524564, "lon": -73.9229548 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729364362, + "bounds": { + "minlat": 40.7521154, + "minlon": -73.9229548, + "maxlat": 40.7524564, + "maxlon": -73.9228187 + }, + "nodes": [ + 6833045383, + 6833045379 + ], + "geometry": [ + { "lat": 40.7524564, "lon": -73.9229548 }, + { "lat": 40.7521154, "lon": -73.9228187 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "service": "parking_aisle", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 729364364, + "bounds": { + "minlat": 40.7525372, + "minlon": -73.9215845, + "maxlat": 40.7530594, + "maxlon": -73.9214780 + }, + "nodes": [ + 42920473, + 8088590988, + 9373239975, + 9373239977, + 6833058490 + ], + "geometry": [ + { "lat": 40.7530594, "lon": -73.9214902 }, + { "lat": 40.7529460, "lon": -73.9214814 }, + { "lat": 40.7529175, "lon": -73.9214780 }, + { "lat": 40.7527831, "lon": -73.9215156 }, + { "lat": 40.7525372, "lon": -73.9215845 } + ], + "tags": { + "highway": "service", + "lit": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729364365, + "bounds": { + "minlat": 40.7524539, + "minlon": -73.9215845, + "maxlat": 40.7525372, + "maxlon": -73.9208965 + }, + "nodes": [ + 6833058490, + 6833058493, + 3810161523, + 6833058491 + ], + "geometry": [ + { "lat": 40.7525372, "lon": -73.9215845 }, + { "lat": 40.7525063, "lon": -73.9213294 }, + { "lat": 40.7524811, "lon": -73.9211209 }, + { "lat": 40.7524539, "lon": -73.9208965 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729364366, + "bounds": { + "minlat": 40.7525063, + "minlon": -73.9213294, + "maxlat": 40.7528877, + "maxlon": -73.9212653 + }, + "nodes": [ + 6833058492, + 9373239976, + 6833058493 + ], + "geometry": [ + { "lat": 40.7528877, "lon": -73.9212653 }, + { "lat": 40.7528666, "lon": -73.9212688 }, + { "lat": 40.7525063, "lon": -73.9213294 } + ], + "tags": { + "highway": "service", + "lit": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729364367, + "bounds": { + "minlat": 40.7524539, + "minlon": -73.9208965, + "maxlat": 40.7529771, + "maxlon": -73.9207959 + }, + "nodes": [ + 6833058494, + 6295183175, + 6833058491 + ], + "geometry": [ + { "lat": 40.7529771, "lon": -73.9207959 }, + { "lat": 40.7527152, "lon": -73.9208463 }, + { "lat": 40.7524539, "lon": -73.9208965 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729364368, + "bounds": { + "minlat": 40.7528877, + "minlon": -73.9212653, + "maxlat": 40.7529771, + "maxlon": -73.9207959 + }, + "nodes": [ + 6833058492, + 3810161547, + 6833058494 + ], + "geometry": [ + { "lat": 40.7528877, "lon": -73.9212653 }, + { "lat": 40.7529320, "lon": -73.9210329 }, + { "lat": 40.7529771, "lon": -73.9207959 } + ], + "tags": { + "highway": "service", + "lit": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729365636, + "bounds": { + "minlat": 40.7534372, + "minlon": -73.9187549, + "maxlat": 40.7536694, + "maxlon": -73.9186670 + }, + "nodes": [ + 3569858112, + 8088642735, + 6833067828 + ], + "geometry": [ + { "lat": 40.7536694, "lon": -73.9187549 }, + { "lat": 40.7535587, "lon": -73.9187161 }, + { "lat": 40.7534372, "lon": -73.9186670 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729365637, + "bounds": { + "minlat": 40.7530846, + "minlon": -73.9186670, + "maxlat": 40.7534372, + "maxlon": -73.9186121 + }, + "nodes": [ + 6833067828, + 6833067829 + ], + "geometry": [ + { "lat": 40.7534372, "lon": -73.9186670 }, + { "lat": 40.7530846, "lon": -73.9186121 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729365638, + "bounds": { + "minlat": 40.7529129, + "minlon": -73.9194373, + "maxlat": 40.7532913, + "maxlon": -73.9186121 + }, + "nodes": [ + 6833067829, + 6833067830, + 13511882311 + ], + "geometry": [ + { "lat": 40.7530846, "lon": -73.9186121 }, + { "lat": 40.7529129, "lon": -73.9193805 }, + { "lat": 40.7532913, "lon": -73.9194373 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729365641, + "bounds": { + "minlat": 40.7536352, + "minlon": -73.9176084, + "maxlat": 40.7538599, + "maxlon": -73.9175687 + }, + "nodes": [ + 42885751, + 8088642731, + 6833067833 + ], + "geometry": [ + { "lat": 40.7538599, "lon": -73.9176084 }, + { "lat": 40.7537452, "lon": -73.9175927 }, + { "lat": 40.7536352, "lon": -73.9175687 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729366581, + "bounds": { + "minlat": 40.7530781, + "minlon": -73.9179310, + "maxlat": 40.7535792, + "maxlon": -73.9178541 + }, + "nodes": [ + 6833062392, + 6833062393 + ], + "geometry": [ + { "lat": 40.7535792, "lon": -73.9178541 }, + { "lat": 40.7530781, "lon": -73.9179310 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729366582, + "bounds": { + "minlat": 40.7523441, + "minlon": -73.9174328, + "maxlat": 40.7525567, + "maxlon": -73.9153846 + }, + "nodes": [ + 6833062401, + 3778141121, + 6833062394 + ], + "geometry": [ + { "lat": 40.7525567, "lon": -73.9174328 }, + { "lat": 40.7523937, "lon": -73.9158127 }, + { "lat": 40.7523441, "lon": -73.9153846 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729366583, + "bounds": { + "minlat": 40.7524859, + "minlon": -73.9173062, + "maxlat": 40.7527315, + "maxlon": -73.9151979 + }, + "nodes": [ + 6833062395, + 3778141138, + 6833062399, + 6833062396 + ], + "geometry": [ + { "lat": 40.7527315, "lon": -73.9173062 }, + { "lat": 40.7525571, "lon": -73.9157780 }, + { "lat": 40.7525046, "lon": -73.9153503 }, + { "lat": 40.7524859, "lon": -73.9151979 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729366584, + "bounds": { + "minlat": 40.7526728, + "minlon": -73.9171729, + "maxlat": 40.7529011, + "maxlon": -73.9151604 + }, + "nodes": [ + 6833062397, + 3778141100, + 6833062398 + ], + "geometry": [ + { "lat": 40.7529011, "lon": -73.9171729 }, + { "lat": 40.7527411, "lon": -73.9157417 }, + { "lat": 40.7526728, "lon": -73.9151604 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729366585, + "bounds": { + "minlat": 40.7524859, + "minlon": -73.9151979, + "maxlat": 40.7526728, + "maxlon": -73.9151604 + }, + "nodes": [ + 6833062398, + 6833062396 + ], + "geometry": [ + { "lat": 40.7526728, "lon": -73.9151604 }, + { "lat": 40.7524859, "lon": -73.9151979 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729366586, + "bounds": { + "minlat": 40.7525567, + "minlon": -73.9174328, + "maxlat": 40.7530080, + "maxlon": -73.9170889 + }, + "nodes": [ + 6833062402, + 6833062397, + 6833062395, + 6833062401 + ], + "geometry": [ + { "lat": 40.7530080, "lon": -73.9170889 }, + { "lat": 40.7529011, "lon": -73.9171729 }, + { "lat": 40.7527315, "lon": -73.9173062 }, + { "lat": 40.7525567, "lon": -73.9174328 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729366587, + "bounds": { + "minlat": 40.7522766, + "minlon": -73.9153991, + "maxlat": 40.7525046, + "maxlon": -73.9153503 + }, + "nodes": [ + 6833062405, + 6833062394, + 6833062399 + ], + "geometry": [ + { "lat": 40.7522766, "lon": -73.9153991 }, + { "lat": 40.7523441, "lon": -73.9153846 }, + { "lat": 40.7525046, "lon": -73.9153503 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729366588, + "bounds": { + "minlat": 40.7515412, + "minlon": -73.9175846, + "maxlat": 40.7518173, + "maxlon": -73.9151203 + }, + "nodes": [ + 3778141124, + 8593852984, + 6833062400 + ], + "geometry": [ + { "lat": 40.7515412, "lon": -73.9151203 }, + { "lat": 40.7515541, "lon": -73.9152352 }, + { "lat": 40.7518173, "lon": -73.9175846 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729366589, + "bounds": { + "minlat": 40.7518173, + "minlon": -73.9175846, + "maxlat": 40.7525567, + "maxlon": -73.9174328 + }, + "nodes": [ + 6833062400, + 6833062401 + ], + "geometry": [ + { "lat": 40.7518173, "lon": -73.9175846 }, + { "lat": 40.7525567, "lon": -73.9174328 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729366590, + "bounds": { + "minlat": 40.7527548, + "minlon": -73.9170889, + "maxlat": 40.7530080, + "maxlon": -73.9148752 + }, + "nodes": [ + 6833062402, + 5978468931, + 3778141144, + 8593852970, + 3778141132 + ], + "geometry": [ + { "lat": 40.7530080, "lon": -73.9170889 }, + { "lat": 40.7529767, "lon": -73.9168146 }, + { "lat": 40.7528510, "lon": -73.9157164 }, + { "lat": 40.7527684, "lon": -73.9149944 }, + { "lat": 40.7527548, "lon": -73.9148752 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729366592, + "bounds": { + "minlat": 40.7522272, + "minlon": -73.9153991, + "maxlat": 40.7522766, + "maxlon": -73.9149818 + }, + "nodes": [ + 6833062405, + 8593852977, + 3778141147 + ], + "geometry": [ + { "lat": 40.7522766, "lon": -73.9153991 }, + { "lat": 40.7522407, "lon": -73.9150960 }, + { "lat": 40.7522272, "lon": -73.9149818 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729367019, + "bounds": { + "minlat": 40.7530343, + "minlon": -73.9175071, + "maxlat": 40.7536144, + "maxlon": -73.9172845 + }, + "nodes": [ + 6833078141, + 13234121112, + 13234121113, + 6833078142 + ], + "geometry": [ + { "lat": 40.7536144, "lon": -73.9172845 }, + { "lat": 40.7532197, "lon": -73.9173715 }, + { "lat": 40.7530998, "lon": -73.9174385 }, + { "lat": 40.7530343, "lon": -73.9175071 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729367020, + "bounds": { + "minlat": 40.7526411, + "minlon": -73.9176359, + "maxlat": 40.7530343, + "maxlon": -73.9175071 + }, + "nodes": [ + 6833078142, + 6833078147, + 6833078149, + 6833078143 + ], + "geometry": [ + { "lat": 40.7530343, "lon": -73.9175071 }, + { "lat": 40.7529636, "lon": -73.9175228 }, + { "lat": 40.7527614, "lon": -73.9175605 }, + { "lat": 40.7526411, "lon": -73.9176359 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729367021, + "bounds": { + "minlat": 40.7521657, + "minlon": -73.9177244, + "maxlat": 40.7526411, + "maxlon": -73.9176359 + }, + "nodes": [ + 6833078143, + 6833078156, + 6833078154, + 6833078152, + 6833078144 + ], + "geometry": [ + { "lat": 40.7526411, "lon": -73.9176359 }, + { "lat": 40.7526235, "lon": -73.9176391 }, + { "lat": 40.7524834, "lon": -73.9176652 }, + { "lat": 40.7523460, "lon": -73.9176908 }, + { "lat": 40.7521657, "lon": -73.9177244 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729367022, + "bounds": { + "minlat": 40.7536144, + "minlon": -73.9175687, + "maxlat": 40.7536352, + "maxlon": -73.9172845 + }, + "nodes": [ + 6833067833, + 6833078141 + ], + "geometry": [ + { "lat": 40.7536352, "lon": -73.9175687 }, + { "lat": 40.7536144, "lon": -73.9172845 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729367023, + "bounds": { + "minlat": 40.7530343, + "minlon": -73.9179310, + "maxlat": 40.7530781, + "maxlon": -73.9175071 + }, + "nodes": [ + 6833062393, + 6833078142 + ], + "geometry": [ + { "lat": 40.7530781, "lon": -73.9179310 }, + { "lat": 40.7530343, "lon": -73.9175071 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729367025, + "bounds": { + "minlat": 40.7527614, + "minlon": -73.9179752, + "maxlat": 40.7528067, + "maxlon": -73.9175605 + }, + "nodes": [ + 6833078148, + 6833078149 + ], + "geometry": [ + { "lat": 40.7528067, "lon": -73.9179752 }, + { "lat": 40.7527614, "lon": -73.9175605 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729367026, + "bounds": { + "minlat": 40.7521657, + "minlon": -73.9180838, + "maxlat": 40.7522043, + "maxlon": -73.9177244 + }, + "nodes": [ + 6833078150, + 6833078144 + ], + "geometry": [ + { "lat": 40.7522043, "lon": -73.9180838 }, + { "lat": 40.7521657, "lon": -73.9177244 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729367027, + "bounds": { + "minlat": 40.7523460, + "minlon": -73.9180395, + "maxlat": 40.7523821, + "maxlon": -73.9176908 + }, + "nodes": [ + 6833078151, + 6833078152 + ], + "geometry": [ + { "lat": 40.7523821, "lon": -73.9180395 }, + { "lat": 40.7523460, "lon": -73.9176908 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729367028, + "bounds": { + "minlat": 40.7524834, + "minlon": -73.9180207, + "maxlat": 40.7525192, + "maxlon": -73.9176652 + }, + "nodes": [ + 6833078153, + 6833078154 + ], + "geometry": [ + { "lat": 40.7525192, "lon": -73.9180207 }, + { "lat": 40.7524834, "lon": -73.9176652 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729367029, + "bounds": { + "minlat": 40.7526235, + "minlon": -73.9180020, + "maxlat": 40.7526645, + "maxlon": -73.9176391 + }, + "nodes": [ + 6833078155, + 6833078156 + ], + "geometry": [ + { "lat": 40.7526645, "lon": -73.9180020 }, + { "lat": 40.7526235, "lon": -73.9176391 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 729761770, + "bounds": { + "minlat": 40.8407269, + "minlon": -73.9380766, + "maxlat": 40.8408834, + "maxlon": -73.9376783 + }, + "nodes": [ + 6836035818, + 6836035819, + 6836035821, + 6836035820 + ], + "geometry": [ + { "lat": 40.8408834, "lon": -73.9380766 }, + { "lat": 40.8408511, "lon": -73.9379812 }, + { "lat": 40.8408384, "lon": -73.9379502 }, + { "lat": 40.8407269, "lon": -73.9376783 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 729972918, + "bounds": { + "minlat": 40.7476401, + "minlon": -73.9767589, + "maxlat": 40.7488906, + "maxlon": -73.9758481 + }, + "nodes": [ + 42449685, + 10171137635, + 5254378183, + 12187343192, + 10125260555, + 42449938, + 10125260552, + 12187343194, + 12187343197, + 10125260553, + 42445661 + ], + "geometry": [ + { "lat": 40.7476401, "lon": -73.9767589 }, + { "lat": 40.7477012, "lon": -73.9767166 }, + { "lat": 40.7480288, "lon": -73.9764763 }, + { "lat": 40.7481664, "lon": -73.9763758 }, + { "lat": 40.7481993, "lon": -73.9763522 }, + { "lat": 40.7482498, "lon": -73.9763154 }, + { "lat": 40.7483132, "lon": -73.9762701 }, + { "lat": 40.7483313, "lon": -73.9762570 }, + { "lat": 40.7487868, "lon": -73.9759233 }, + { "lat": 40.7488165, "lon": -73.9759018 }, + { "lat": 40.7488906, "lon": -73.9758481 } + ], + "tags": { + "bus:lanes": "|||designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 729972920, + "bounds": { + "minlat": 40.7262337, + "minlon": -73.9990701, + "maxlat": 40.7266087, + "maxlon": -73.9983091 + }, + "nodes": [ + 5799117244, + 5829907366, + 13519263281, + 42433581 + ], + "geometry": [ + { "lat": 40.7262337, "lon": -73.9983091 }, + { "lat": 40.7262668, "lon": -73.9983762 }, + { "lat": 40.7264146, "lon": -73.9986762 }, + { "lat": 40.7266087, "lon": -73.9990701 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 729972921, + "bounds": { + "minlat": 40.7255850, + "minlon": -73.9972458, + "maxlat": 40.7257096, + "maxlon": -73.9969929 + }, + "nodes": [ + 3594715134, + 4202908172 + ], + "geometry": [ + { "lat": 40.7255850, "lon": -73.9969929 }, + { "lat": 40.7257096, "lon": -73.9972458 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 729972924, + "bounds": { + "minlat": 40.7281435, + "minlon": -74.0029583, + "maxlat": 40.7282330, + "maxlon": -74.0027662 + }, + "nodes": [ + 3891963915, + 4321748234, + 4679523601, + 8821481439, + 3891963913 + ], + "geometry": [ + { "lat": 40.7281435, "lon": -74.0029583 }, + { "lat": 40.7281740, "lon": -74.0029040 }, + { "lat": 40.7282083, "lon": -74.0028515 }, + { "lat": 40.7282211, "lon": -74.0028109 }, + { "lat": 40.7282330, "lon": -74.0027662 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "sidewalk:right:surface": "concrete", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 730036152, + "bounds": { + "minlat": 40.7386731, + "minlon": -74.0036511, + "maxlat": 40.7387578, + "maxlon": -74.0035532 + }, + "nodes": [ + 4816137911, + 6211334197, + 42431844 + ], + "geometry": [ + { "lat": 40.7386731, "lon": -74.0036511 }, + { "lat": 40.7387083, "lon": -74.0036113 }, + { "lat": 40.7387578, "lon": -74.0035532 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 730041759, + "bounds": { + "minlat": 40.8200102, + "minlon": -73.9269466, + "maxlat": 40.8201642, + "maxlon": -73.9267772 + }, + "nodes": [ + 6839004633, + 7557697911, + 5468179331 + ], + "geometry": [ + { "lat": 40.8201642, "lon": -73.9267772 }, + { "lat": 40.8201178, "lon": -73.9268925 }, + { "lat": 40.8200102, "lon": -73.9269466 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 730139534, + "bounds": { + "minlat": 40.7898899, + "minlon": -74.0047978, + "maxlat": 40.7904650, + "maxlon": -74.0043126 + }, + "nodes": [ + 6839986746, + 7468537707, + 7468537706, + 6839986747 + ], + "geometry": [ + { "lat": 40.7904650, "lon": -74.0043126 }, + { "lat": 40.7904298, "lon": -74.0043423 }, + { "lat": 40.7899330, "lon": -74.0047615 }, + { "lat": 40.7898899, "lon": -74.0047978 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 730191436, + "bounds": { + "minlat": 40.8399566, + "minlon": -73.9428931, + "maxlat": 40.8402353, + "maxlon": -73.9425136 + }, + "nodes": [ + 6840573381, + 8767474546, + 6840573382, + 6840573383, + 8767474545, + 6840573384 + ], + "geometry": [ + { "lat": 40.8399566, "lon": -73.9426210 }, + { "lat": 40.8400417, "lon": -73.9425727 }, + { "lat": 40.8401457, "lon": -73.9425136 }, + { "lat": 40.8402353, "lon": -73.9426369 }, + { "lat": 40.8401547, "lon": -73.9427909 }, + { "lat": 40.8401012, "lon": -73.9428931 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 730193655, + "bounds": { + "minlat": 40.8497054, + "minlon": -74.0193403, + "maxlat": 40.8498607, + "maxlon": -74.0192497 + }, + "nodes": [ + 6801941577, + 6840605465, + 6801941576 + ], + "geometry": [ + { "lat": 40.8498607, "lon": -74.0192497 }, + { "lat": 40.8498025, "lon": -74.0192837 }, + { "lat": 40.8497054, "lon": -74.0193403 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 730300445, + "bounds": { + "minlat": 40.7107237, + "minlon": -73.9850618, + "maxlat": 40.7130809, + "maxlon": -73.9846738 + }, + "nodes": [ + 42438531, + 11038072084, + 11038072085, + 11038072083, + 6411125196, + 11038072202, + 11038072103, + 11038072197, + 8310246620, + 42437505, + 8310246501, + 11038072618, + 42438523, + 11038072622, + 9010266060, + 8310246493, + 42437773 + ], + "geometry": [ + { "lat": 40.7107237, "lon": -73.9847040 }, + { "lat": 40.7107364, "lon": -73.9847018 }, + { "lat": 40.7107522, "lon": -73.9846894 }, + { "lat": 40.7107710, "lon": -73.9846769 }, + { "lat": 40.7107831, "lon": -73.9846738 }, + { "lat": 40.7111987, "lon": -73.9847353 }, + { "lat": 40.7112389, "lon": -73.9847412 }, + { "lat": 40.7112967, "lon": -73.9847498 }, + { "lat": 40.7116426, "lon": -73.9848006 }, + { "lat": 40.7117120, "lon": -73.9848136 }, + { "lat": 40.7118168, "lon": -73.9848271 }, + { "lat": 40.7123344, "lon": -73.9849032 }, + { "lat": 40.7123674, "lon": -73.9849081 }, + { "lat": 40.7124183, "lon": -73.9849155 }, + { "lat": 40.7129492, "lon": -73.9849925 }, + { "lat": 40.7129992, "lon": -73.9849997 }, + { "lat": 40.7130809, "lon": -73.9850618 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Montgomery Street", + "name:etymology:wikidata": "Q444947", + "name:ko": "몽고메리 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 730895492, + "bounds": { + "minlat": 40.7887043, + "minlon": -73.9387678, + "maxlat": 40.7890856, + "maxlon": -73.9378563 + }, + "nodes": [ + 5481998054, + 5482216773, + 4980851608, + 42433513 + ], + "geometry": [ + { "lat": 40.7890856, "lon": -73.9387678 }, + { "lat": 40.7888764, "lon": -73.9382695 }, + { "lat": 40.7887352, "lon": -73.9379333 }, + { "lat": 40.7887043, "lon": -73.9378563 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "network": "lcn", + "parking:lane:width": "13'", + "route": "bicycle", + "sidewalk": "both" + } +}, +{ + "type": "way", + "id": 731124237, + "bounds": { + "minlat": 40.8122110, + "minlon": -73.9358632, + "maxlat": 40.8135574, + "maxlon": -73.9348884 + }, + "nodes": [ + 589928053, + 371337187 + ], + "geometry": [ + { "lat": 40.8122110, "lon": -73.9358632 }, + { "lat": 40.8135574, "lon": -73.9348884 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 731554884, + "bounds": { + "minlat": 40.8505392, + "minlon": -73.9646978, + "maxlat": 40.8505511, + "maxlon": -73.9645110 + }, + "nodes": [ + 5449437035, + 5449437036, + 5449437034 + ], + "geometry": [ + { "lat": 40.8505511, "lon": -73.9646978 }, + { "lat": 40.8505428, "lon": -73.9646322 }, + { "lat": 40.8505392, "lon": -73.9645110 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 731554885, + "bounds": { + "minlat": 40.8504214, + "minlon": -73.9648185, + "maxlat": 40.8505511, + "maxlon": -73.9646978 + }, + "nodes": [ + 5449437368, + 5449437366, + 5449437367, + 5449437035 + ], + "geometry": [ + { "lat": 40.8504214, "lon": -73.9648185 }, + { "lat": 40.8504710, "lon": -73.9648112 }, + { "lat": 40.8505285, "lon": -73.9647511 }, + { "lat": 40.8505511, "lon": -73.9646978 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 731554886, + "bounds": { + "minlat": 40.8505392, + "minlon": -73.9645110, + "maxlat": 40.8506042, + "maxlon": -73.9645024 + }, + "nodes": [ + 5449437034, + 5449436924 + ], + "geometry": [ + { "lat": 40.8505392, "lon": -73.9645110 }, + { "lat": 40.8506042, "lon": -73.9645024 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "oneway": "no", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 731554887, + "bounds": { + "minlat": 40.8506042, + "minlon": -73.9645024, + "maxlat": 40.8509460, + "maxlon": -73.9644585 + }, + "nodes": [ + 5449436924, + 5449436928 + ], + "geometry": [ + { "lat": 40.8506042, "lon": -73.9645024 }, + { "lat": 40.8509460, "lon": -73.9644585 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "oneway": "no", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 731554888, + "bounds": { + "minlat": 40.8527137, + "minlon": -73.9641712, + "maxlat": 40.8529279, + "maxlon": -73.9640969 + }, + "nodes": [ + 6851079673, + 7930462142, + 7930462139, + 7930462135, + 4204765790 + ], + "geometry": [ + { "lat": 40.8527137, "lon": -73.9641712 }, + { "lat": 40.8527660, "lon": -73.9641570 }, + { "lat": 40.8528154, "lon": -73.9641406 }, + { "lat": 40.8528754, "lon": -73.9641180 }, + { "lat": 40.8529279, "lon": -73.9640969 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "maxheight": "13'2\"", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 731768037, + "bounds": { + "minlat": 40.8784550, + "minlon": -73.9161217, + "maxlat": 40.8795567, + "maxlon": -73.9145188 + }, + "nodes": [ + 42733316, + 13068228267, + 6852635235, + 6852635236, + 6852635239, + 6852635237, + 7941613936, + 6852635238, + 7941613934, + 7941613935 + ], + "geometry": [ + { "lat": 40.8785709, "lon": -73.9161217 }, + { "lat": 40.8784986, "lon": -73.9160662 }, + { "lat": 40.8784550, "lon": -73.9160327 }, + { "lat": 40.8784662, "lon": -73.9158646 }, + { "lat": 40.8788318, "lon": -73.9152932 }, + { "lat": 40.8791353, "lon": -73.9148189 }, + { "lat": 40.8793429, "lon": -73.9145770 }, + { "lat": 40.8793959, "lon": -73.9145188 }, + { "lat": 40.8794824, "lon": -73.9145261 }, + { "lat": 40.8795567, "lon": -73.9145297 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 731768038, + "bounds": { + "minlat": 40.8788318, + "minlon": -73.9152932, + "maxlat": 40.8788923, + "maxlon": -73.9149748 + }, + "nodes": [ + 6852635239, + 6852635240, + 6852635241 + ], + "geometry": [ + { "lat": 40.8788318, "lon": -73.9152932 }, + { "lat": 40.8788490, "lon": -73.9151440 }, + { "lat": 40.8788923, "lon": -73.9149748 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 731768039, + "bounds": { + "minlat": 40.8788923, + "minlon": -73.9149748, + "maxlat": 40.8789404, + "maxlon": -73.9148870 + }, + "nodes": [ + 6852635241, + 6852635242 + ], + "geometry": [ + { "lat": 40.8788923, "lon": -73.9149748 }, + { "lat": 40.8789404, "lon": -73.9148870 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 731768040, + "bounds": { + "minlat": 40.8789404, + "minlon": -73.9148870, + "maxlat": 40.8791353, + "maxlon": -73.9148189 + }, + "nodes": [ + 6852635242, + 6852635243, + 6852635237 + ], + "geometry": [ + { "lat": 40.8789404, "lon": -73.9148870 }, + { "lat": 40.8789831, "lon": -73.9148337 }, + { "lat": 40.8791353, "lon": -73.9148189 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 731775079, + "bounds": { + "minlat": 40.7714177, + "minlon": -73.9160319, + "maxlat": 40.7715194, + "maxlon": -73.9159123 + }, + "nodes": [ + 6852671484, + 6852698185 + ], + "geometry": [ + { "lat": 40.7714177, "lon": -73.9160319 }, + { "lat": 40.7715194, "lon": -73.9159123 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 731777319, + "bounds": { + "minlat": 40.8690232, + "minlon": -73.9069914, + "maxlat": 40.8701749, + "maxlon": -73.9054738 + }, + "nodes": [ + 6852698194, + 6852698195, + 6852698196, + 6852698197, + 6852698198, + 6852698199, + 6852698200, + 6852698201, + 6852698202, + 6852698203, + 6852698204 + ], + "geometry": [ + { "lat": 40.8701749, "lon": -73.9054998 }, + { "lat": 40.8701166, "lon": -73.9054738 }, + { "lat": 40.8700635, "lon": -73.9054886 }, + { "lat": 40.8699685, "lon": -73.9056124 }, + { "lat": 40.8698833, "lon": -73.9057620 }, + { "lat": 40.8697743, "lon": -73.9058803 }, + { "lat": 40.8696445, "lon": -73.9060431 }, + { "lat": 40.8694292, "lon": -73.9062756 }, + { "lat": 40.8691917, "lon": -73.9065768 }, + { "lat": 40.8690506, "lon": -73.9067745 }, + { "lat": 40.8690232, "lon": -73.9069914 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 731779426, + "bounds": { + "minlat": 40.8163461, + "minlon": -73.9234869, + "maxlat": 40.8170580, + "maxlon": -73.9229182 + }, + "nodes": [ + 6852715614, + 12040837259, + 6852715616, + 6852715618, + 12040837260, + 6852715619 + ], + "geometry": [ + { "lat": 40.8170580, "lon": -73.9229182 }, + { "lat": 40.8170400, "lon": -73.9230518 }, + { "lat": 40.8170122, "lon": -73.9232579 }, + { "lat": 40.8165401, "lon": -73.9234869 }, + { "lat": 40.8164409, "lon": -73.9234151 }, + { "lat": 40.8163461, "lon": -73.9233465 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 731791671, + "bounds": { + "minlat": 40.7176285, + "minlon": -73.9522440, + "maxlat": 40.7178361, + "maxlon": -73.9520378 + }, + "nodes": [ + 6852820330, + 9789424758, + 6852820331, + 6852820332, + 6852820333, + 6852820334, + 9789424759, + 6852820335 + ], + "geometry": [ + { "lat": 40.7176285, "lon": -73.9522130 }, + { "lat": 40.7176387, "lon": -73.9521166 }, + { "lat": 40.7176436, "lon": -73.9520700 }, + { "lat": 40.7176786, "lon": -73.9520378 }, + { "lat": 40.7178114, "lon": -73.9520596 }, + { "lat": 40.7178361, "lon": -73.9521004 }, + { "lat": 40.7178311, "lon": -73.9521466 }, + { "lat": 40.7178205, "lon": -73.9522440 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 731901948, + "bounds": { + "minlat": 40.8171511, + "minlon": -73.9258360, + "maxlat": 40.8175183, + "maxlon": -73.9253786 + }, + "nodes": [ + 6853667900, + 6853667901, + 12110035536, + 12110035543, + 12110035537, + 6853667902, + 12110035538, + 12110035539, + 12110035540, + 12110035541, + 12110035542 + ], + "geometry": [ + { "lat": 40.8175183, "lon": -73.9255955 }, + { "lat": 40.8174077, "lon": -73.9254487 }, + { "lat": 40.8173583, "lon": -73.9253935 }, + { "lat": 40.8173272, "lon": -73.9253786 }, + { "lat": 40.8173008, "lon": -73.9253799 }, + { "lat": 40.8172479, "lon": -73.9254008 }, + { "lat": 40.8171757, "lon": -73.9254609 }, + { "lat": 40.8171519, "lon": -73.9255076 }, + { "lat": 40.8171511, "lon": -73.9255645 }, + { "lat": 40.8171634, "lon": -73.9256326 }, + { "lat": 40.8172388, "lon": -73.9258360 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 731902069, + "bounds": { + "minlat": 40.7111247, + "minlon": -73.9677104, + "maxlat": 40.7113416, + "maxlon": -73.9674839 + }, + "nodes": [ + 6853667356, + 9990599437, + 6853667360, + 6853667357, + 6853667358, + 6853667359, + 6853667360 + ], + "geometry": [ + { "lat": 40.7111247, "lon": -73.9674839 }, + { "lat": 40.7111374, "lon": -73.9675436 }, + { "lat": 40.7111472, "lon": -73.9675897 }, + { "lat": 40.7111729, "lon": -73.9677104 }, + { "lat": 40.7113416, "lon": -73.9676429 }, + { "lat": 40.7113117, "lon": -73.9675272 }, + { "lat": 40.7111472, "lon": -73.9675897 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 731911494, + "bounds": { + "minlat": 40.8817559, + "minlon": -73.9164875, + "maxlat": 40.8823894, + "maxlon": -73.9155524 + }, + "nodes": [ + 1545521310, + 13041409092, + 6853710650, + 6853710651, + 6853710652, + 6853710653, + 6853710654, + 6853710655, + 6853710656, + 6853710657, + 6853710658 + ], + "geometry": [ + { "lat": 40.8818069, "lon": -73.9164875 }, + { "lat": 40.8817865, "lon": -73.9164266 }, + { "lat": 40.8817742, "lon": -73.9163898 }, + { "lat": 40.8817559, "lon": -73.9163093 }, + { "lat": 40.8818107, "lon": -73.9161940 }, + { "lat": 40.8819040, "lon": -73.9160196 }, + { "lat": 40.8819425, "lon": -73.9159097 }, + { "lat": 40.8820378, "lon": -73.9158292 }, + { "lat": 40.8821372, "lon": -73.9157997 }, + { "lat": 40.8822812, "lon": -73.9156522 }, + { "lat": 40.8823894, "lon": -73.9155524 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 731930637, + "bounds": { + "minlat": 40.7448107, + "minlon": -73.9340600, + "maxlat": 40.7451663, + "maxlon": -73.9339896 + }, + "nodes": [ + 6853863063, + 8315072934, + 6853863064 + ], + "geometry": [ + { "lat": 40.7448107, "lon": -73.9340600 }, + { "lat": 40.7449300, "lon": -73.9340365 }, + { "lat": 40.7451663, "lon": -73.9339896 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 731935498, + "bounds": { + "minlat": 40.8780821, + "minlon": -73.9173980, + "maxlat": 40.8781466, + "maxlon": -73.9171119 + }, + "nodes": [ + 6853941383, + 13068228280, + 6853941384, + 6853953685, + 7287444230 + ], + "geometry": [ + { "lat": 40.8781466, "lon": -73.9173980 }, + { "lat": 40.8781154, "lon": -73.9173345 }, + { "lat": 40.8780908, "lon": -73.9172844 }, + { "lat": 40.8780821, "lon": -73.9172080 }, + { "lat": 40.8781314, "lon": -73.9171119 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 731946110, + "bounds": { + "minlat": 40.8375765, + "minlon": -73.9222345, + "maxlat": 40.8376532, + "maxlon": -73.9216454 + }, + "nodes": [ + 2912071057, + 10245831941, + 6854018912, + 8822151469 + ], + "geometry": [ + { "lat": 40.8375765, "lon": -73.9222345 }, + { "lat": 40.8376167, "lon": -73.9220640 }, + { "lat": 40.8376532, "lon": -73.9219050 }, + { "lat": 40.8375872, "lon": -73.9216454 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 731949023, + "bounds": { + "minlat": 40.8318532, + "minlon": -73.9379571, + "maxlat": 40.8345440, + "maxlon": -73.9356257 + }, + "nodes": [ + 2504882412, + 13535318294, + 13535318280, + 750105212, + 13535318243, + 2504882430, + 13535318242, + 13535318241, + 2504882428, + 13535318240, + 13535318239, + 2504882423, + 13535318238, + 13535318237, + 2504882437, + 13535318236, + 13535318235, + 2504882435, + 13535318234, + 13535318233, + 2504882433, + 13535318232, + 13535318231, + 2504882432, + 13535318230, + 13535318229, + 750105217, + 5444713927, + 9520382013, + 2554917306, + 13535333008, + 5444713922, + 13535318226, + 2554917298, + 13535318227, + 13535318228, + 2313365627 + ], + "geometry": [ + { "lat": 40.8345440, "lon": -73.9361631 }, + { "lat": 40.8342329, "lon": -73.9365716 }, + { "lat": 40.8334995, "lon": -73.9375346 }, + { "lat": 40.8333323, "lon": -73.9377542 }, + { "lat": 40.8332572, "lon": -73.9378521 }, + { "lat": 40.8332295, "lon": -73.9378848 }, + { "lat": 40.8332028, "lon": -73.9379071 }, + { "lat": 40.8331733, "lon": -73.9379253 }, + { "lat": 40.8331363, "lon": -73.9379462 }, + { "lat": 40.8331078, "lon": -73.9379520 }, + { "lat": 40.8330796, "lon": -73.9379561 }, + { "lat": 40.8330544, "lon": -73.9379571 }, + { "lat": 40.8330251, "lon": -73.9379529 }, + { "lat": 40.8329935, "lon": -73.9379464 }, + { "lat": 40.8329633, "lon": -73.9379346 }, + { "lat": 40.8329286, "lon": -73.9379186 }, + { "lat": 40.8328938, "lon": -73.9378978 }, + { "lat": 40.8328612, "lon": -73.9378743 }, + { "lat": 40.8328261, "lon": -73.9378459 }, + { "lat": 40.8328014, "lon": -73.9378223 }, + { "lat": 40.8327844, "lon": -73.9378022 }, + { "lat": 40.8327690, "lon": -73.9377801 }, + { "lat": 40.8327569, "lon": -73.9377556 }, + { "lat": 40.8327500, "lon": -73.9377347 }, + { "lat": 40.8327358, "lon": -73.9376484 }, + { "lat": 40.8327281, "lon": -73.9376126 }, + { "lat": 40.8327177, "lon": -73.9375825 }, + { "lat": 40.8324952, "lon": -73.9370570 }, + { "lat": 40.8324231, "lon": -73.9368867 }, + { "lat": 40.8322942, "lon": -73.9365824 }, + { "lat": 40.8322480, "lon": -73.9365147 }, + { "lat": 40.8321510, "lon": -73.9363726 }, + { "lat": 40.8321224, "lon": -73.9363219 }, + { "lat": 40.8320972, "lon": -73.9362677 }, + { "lat": 40.8320037, "lon": -73.9360403 }, + { "lat": 40.8318895, "lon": -73.9357163 }, + { "lat": 40.8318532, "lon": -73.9356257 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 731949024, + "bounds": { + "minlat": 40.8331166, + "minlon": -73.9357910, + "maxlat": 40.8334155, + "maxlon": -73.9357628 + }, + "nodes": [ + 6854080995, + 6854080996 + ], + "geometry": [ + { "lat": 40.8334155, "lon": -73.9357910 }, + { "lat": 40.8331166, "lon": -73.9357628 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 731972739, + "bounds": { + "minlat": 40.8774870, + "minlon": -73.9188909, + "maxlat": 40.8776581, + "maxlon": -73.9188051 + }, + "nodes": [ + 5490835773, + 6854199424 + ], + "geometry": [ + { "lat": 40.8774870, "lon": -73.9188051 }, + { "lat": 40.8776581, "lon": -73.9188909 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 731973894, + "bounds": { + "minlat": 40.8544641, + "minlon": -73.9280789, + "maxlat": 40.8546860, + "maxlon": -73.9277347 + }, + "nodes": [ + 6854245786, + 8740550728, + 6854245787, + 6854245788, + 6854245789, + 6854245790, + 6854245791, + 6854245792, + 8740550729, + 6854245793 + ], + "geometry": [ + { "lat": 40.8545635, "lon": -73.9280789 }, + { "lat": 40.8545184, "lon": -73.9279810 }, + { "lat": 40.8544704, "lon": -73.9278768 }, + { "lat": 40.8544641, "lon": -73.9278407 }, + { "lat": 40.8544685, "lon": -73.9278095 }, + { "lat": 40.8545014, "lon": -73.9277692 }, + { "lat": 40.8545462, "lon": -73.9277413 }, + { "lat": 40.8545772, "lon": -73.9277347 }, + { "lat": 40.8546439, "lon": -73.9278914 }, + { "lat": 40.8546860, "lon": -73.9279904 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 732028842, + "bounds": { + "minlat": 40.7496425, + "minlon": -73.9179626, + "maxlat": 40.7501311, + "maxlon": -73.9154002 + }, + "nodes": [ + 2699913200, + 42815099, + 10074125225, + 42815107 + ], + "geometry": [ + { "lat": 40.7496425, "lon": -73.9179626 }, + { "lat": 40.7498648, "lon": -73.9167978 }, + { "lat": 40.7501091, "lon": -73.9155280 }, + { "lat": 40.7501311, "lon": -73.9154002 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Barnett Avenue", + "name_1": "38th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 732028843, + "bounds": { + "minlat": 40.7492586, + "minlon": -73.9174560, + "maxlat": 40.7493679, + "maxlon": -73.9165210 + }, + "nodes": [ + 42892863, + 11467993921, + 11467993919, + 42833548 + ], + "geometry": [ + { "lat": 40.7492586, "lon": -73.9165210 }, + { "lat": 40.7492699, "lon": -73.9166174 }, + { "lat": 40.7493565, "lon": -73.9173581 }, + { "lat": 40.7493679, "lon": -73.9174560 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "39th Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 732127277, + "bounds": { + "minlat": 40.7513348, + "minlon": -73.9144375, + "maxlat": 40.7514801, + "maxlon": -73.9138381 + }, + "nodes": [ + 2883385962, + 6855479985, + 6855470184 + ], + "geometry": [ + { "lat": 40.7513348, "lon": -73.9144375 }, + { "lat": 40.7514560, "lon": -73.9139377 }, + { "lat": 40.7514801, "lon": -73.9138381 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 732127278, + "bounds": { + "minlat": 40.7513736, + "minlon": -73.9138381, + "maxlat": 40.7514801, + "maxlon": -73.9131790 + }, + "nodes": [ + 6855470184, + 8276857145, + 2883385951 + ], + "geometry": [ + { "lat": 40.7514801, "lon": -73.9138381 }, + { "lat": 40.7514329, "lon": -73.9135458 }, + { "lat": 40.7513736, "lon": -73.9131790 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 732127279, + "bounds": { + "minlat": 40.7514560, + "minlon": -73.9139377, + "maxlat": 40.7516284, + "maxlon": -73.9138971 + }, + "nodes": [ + 6855479985, + 6855479986 + ], + "geometry": [ + { "lat": 40.7514560, "lon": -73.9139377 }, + { "lat": 40.7516284, "lon": -73.9138971 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732127280, + "bounds": { + "minlat": 40.7516284, + "minlon": -73.9138971, + "maxlat": 40.7518164, + "maxlon": -73.9137132 + }, + "nodes": [ + 2883385967, + 13234010394, + 6855479986 + ], + "geometry": [ + { "lat": 40.7518164, "lon": -73.9137132 }, + { "lat": 40.7516805, "lon": -73.9138487 }, + { "lat": 40.7516284, "lon": -73.9138971 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732127281, + "bounds": { + "minlat": 40.7528159, + "minlon": -73.9134523, + "maxlat": 40.7529535, + "maxlon": -73.9126144 + }, + "nodes": [ + 6855479987, + 2883385981 + ], + "geometry": [ + { "lat": 40.7529535, "lon": -73.9134523 }, + { "lat": 40.7528159, "lon": -73.9126144 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 732127282, + "bounds": { + "minlat": 40.7531186, + "minlon": -73.9133954, + "maxlat": 40.7532216, + "maxlon": -73.9127861 + }, + "nodes": [ + 2883385987, + 6855479988 + ], + "geometry": [ + { "lat": 40.7532216, "lon": -73.9133954 }, + { "lat": 40.7531186, "lon": -73.9127861 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 732127283, + "bounds": { + "minlat": 40.7529541, + "minlon": -73.9134232, + "maxlat": 40.7532950, + "maxlon": -73.9125221 + }, + "nodes": [ + 6855479989, + 12187074526, + 6855479990, + 8088642718, + 7762273785 + ], + "geometry": [ + { "lat": 40.7530907, "lon": -73.9134232 }, + { "lat": 40.7530808, "lon": -73.9133648 }, + { "lat": 40.7529541, "lon": -73.9126144 }, + { "lat": 40.7531839, "lon": -73.9125517 }, + { "lat": 40.7532950, "lon": -73.9125221 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 732127284, + "bounds": { + "minlat": 40.7531765, + "minlon": -73.9135668, + "maxlat": 40.7534588, + "maxlon": -73.9134813 + }, + "nodes": [ + 9851251039, + 6855479992, + 12187074527, + 8088642720, + 7762273788 + ], + "geometry": [ + { "lat": 40.7531765, "lon": -73.9135668 }, + { "lat": 40.7532686, "lon": -73.9135287 }, + { "lat": 40.7533127, "lon": -73.9135131 }, + { "lat": 40.7533454, "lon": -73.9135015 }, + { "lat": 40.7534588, "lon": -73.9134813 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "level": "0", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732127285, + "bounds": { + "minlat": 40.7522425, + "minlon": -73.9137051, + "maxlat": 40.7532686, + "maxlon": -73.9134897 + }, + "nodes": [ + 6855479993, + 7707137695, + 9851251038, + 6855479992 + ], + "geometry": [ + { "lat": 40.7522425, "lon": -73.9137051 }, + { "lat": 40.7531668, "lon": -73.9134897 }, + { "lat": 40.7532095, "lon": -73.9134950 }, + { "lat": 40.7532686, "lon": -73.9135287 } + ], + "tags": { + "highway": "service", + "level": "0", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732127286, + "bounds": { + "minlat": 40.7518565, + "minlon": -73.9137802, + "maxlat": 40.7522425, + "maxlon": -73.9137051 + }, + "nodes": [ + 6855479993, + 6855479994 + ], + "geometry": [ + { "lat": 40.7522425, "lon": -73.9137051 }, + { "lat": 40.7518565, "lon": -73.9137802 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "service": "parking_aisle", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 732127287, + "bounds": { + "minlat": 40.7514079, + "minlon": -73.9143615, + "maxlat": 40.7518565, + "maxlon": -73.9137802 + }, + "nodes": [ + 6855479995, + 13185910965, + 13185910968, + 13185910967, + 6855479994 + ], + "geometry": [ + { "lat": 40.7514079, "lon": -73.9143615 }, + { "lat": 40.7514540, "lon": -73.9142521 }, + { "lat": 40.7515109, "lon": -73.9141783 }, + { "lat": 40.7517608, "lon": -73.9138564 }, + { "lat": 40.7518565, "lon": -73.9137802 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 732230231, + "bounds": { + "minlat": 40.8254648, + "minlon": -73.9131794, + "maxlat": 40.8257771, + "maxlon": -73.9130145 + }, + "nodes": [ + 42739729, + 12038455961, + 471222806 + ], + "geometry": [ + { "lat": 40.8254648, "lon": -73.9131794 }, + { "lat": 40.8255246, "lon": -73.9131485 }, + { "lat": 40.8257771, "lon": -73.9130145 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "cycleway:both:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Melrose Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Melrose", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 732254814, + "bounds": { + "minlat": 40.7525321, + "minlon": -74.0061724, + "maxlat": 40.7533707, + "maxlon": -74.0049111 + }, + "nodes": [ + 6856689988, + 9143542432, + 6856689989, + 6856689996, + 6856689990, + 6856689991, + 6856689992, + 6856689993, + 6856689994, + 6856689995 + ], + "geometry": [ + { "lat": 40.7533707, "lon": -74.0059515 }, + { "lat": 40.7533210, "lon": -74.0059907 }, + { "lat": 40.7532863, "lon": -74.0060173 }, + { "lat": 40.7531770, "lon": -74.0060898 }, + { "lat": 40.7530572, "lon": -74.0061724 }, + { "lat": 40.7529739, "lon": -74.0061228 }, + { "lat": 40.7525321, "lon": -74.0050361 }, + { "lat": 40.7525386, "lon": -74.0049844 }, + { "lat": 40.7526195, "lon": -74.0049111 }, + { "lat": 40.7526579, "lon": -74.0049176 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 732254815, + "bounds": { + "minlat": 40.7526579, + "minlon": -74.0060898, + "maxlat": 40.7531770, + "maxlon": -74.0049176 + }, + "nodes": [ + 6856689995, + 6856689996 + ], + "geometry": [ + { "lat": 40.7526579, "lon": -74.0049176 }, + { "lat": 40.7531770, "lon": -74.0060898 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 732254816, + "bounds": { + "minlat": 40.7530572, + "minlon": -74.0069897, + "maxlat": 40.7534632, + "maxlon": -74.0061724 + }, + "nodes": [ + 6856689990, + 6856689997, + 6856689998, + 6856689999, + 6856690000, + 6856690001, + 6856690002, + 6856690003, + 6856690004, + 6856690005, + 6856689997 + ], + "geometry": [ + { "lat": 40.7530572, "lon": -74.0061724 }, + { "lat": 40.7531708, "lon": -74.0064248 }, + { "lat": 40.7532378, "lon": -74.0063817 }, + { "lat": 40.7532737, "lon": -74.0063763 }, + { "lat": 40.7534542, "lon": -74.0067924 }, + { "lat": 40.7534632, "lon": -74.0068798 }, + { "lat": 40.7532680, "lon": -74.0069897 }, + { "lat": 40.7532214, "lon": -74.0069800 }, + { "lat": 40.7530753, "lon": -74.0066049 }, + { "lat": 40.7530802, "lon": -74.0065208 }, + { "lat": 40.7531708, "lon": -74.0064248 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 732258263, + "bounds": { + "minlat": 40.7101960, + "minlon": -73.9631645, + "maxlat": 40.7102155, + "maxlon": -73.9631074 + }, + "nodes": [ + 6856740160, + 42468747 + ], + "geometry": [ + { "lat": 40.7101960, "lon": -73.9631074 }, + { "lat": 40.7102155, "lon": -73.9631645 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 732258395, + "bounds": { + "minlat": 40.7647527, + "minlon": -73.9634207, + "maxlat": 40.7650566, + "maxlon": -73.9630915 + }, + "nodes": [ + 6856746324, + 10166171511, + 6856746325, + 6856746330, + 6856746331, + 6856746336, + 10166171508, + 6856746335 + ], + "geometry": [ + { "lat": 40.7650566, "lon": -73.9632450 }, + { "lat": 40.7650003, "lon": -73.9632847 }, + { "lat": 40.7649303, "lon": -73.9633332 }, + { "lat": 40.7648147, "lon": -73.9634207 }, + { "lat": 40.7647527, "lon": -73.9632701 }, + { "lat": 40.7648694, "lon": -73.9631833 }, + { "lat": 40.7649366, "lon": -73.9631329 }, + { "lat": 40.7649920, "lon": -73.9630915 } + ], + "tags": { + "highway": "service", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 732258396, + "bounds": { + "minlat": 40.7648694, + "minlon": -73.9633332, + "maxlat": 40.7649303, + "maxlon": -73.9631833 + }, + "nodes": [ + 6856746325, + 6856746336 + ], + "geometry": [ + { "lat": 40.7649303, "lon": -73.9633332 }, + { "lat": 40.7648694, "lon": -73.9631833 } + ], + "tags": { + "highway": "service", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 732258679, + "bounds": { + "minlat": 40.7695601, + "minlon": -73.9506562, + "maxlat": 40.7696339, + "maxlon": -73.9503336 + }, + "nodes": [ + 6856727460, + 6856727461, + 6856727462, + 6856727463, + 6856727464 + ], + "geometry": [ + { "lat": 40.7696339, "lon": -73.9503336 }, + { "lat": 40.7695953, "lon": -73.9504156 }, + { "lat": 40.7695717, "lon": -73.9504887 }, + { "lat": 40.7695601, "lon": -73.9505853 }, + { "lat": 40.7695677, "lon": -73.9506562 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 732258680, + "bounds": { + "minlat": 40.7696407, + "minlon": -73.9509488, + "maxlat": 40.7698834, + "maxlon": -73.9508626 + }, + "nodes": [ + 6856727465, + 6856727466, + 6856727467, + 6856727468, + 6856727469 + ], + "geometry": [ + { "lat": 40.7696407, "lon": -73.9508626 }, + { "lat": 40.7696903, "lon": -73.9509291 }, + { "lat": 40.7697453, "lon": -73.9509488 }, + { "lat": 40.7698165, "lon": -73.9509434 }, + { "lat": 40.7698834, "lon": -73.9509239 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 732258681, + "bounds": { + "minlat": 40.7695677, + "minlon": -73.9508626, + "maxlat": 40.7696407, + "maxlon": -73.9506562 + }, + "nodes": [ + 6856727464, + 6856727465 + ], + "geometry": [ + { "lat": 40.7695677, "lon": -73.9506562 }, + { "lat": 40.7696407, "lon": -73.9508626 } + ], + "tags": { + "highway": "service", + "maxheight": "below_default", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 732259175, + "bounds": { + "minlat": 40.7449375, + "minlon": -73.9444881, + "maxlat": 40.7450744, + "maxlon": -73.9441533 + }, + "nodes": [ + 6856749494, + 11211159709, + 6856749495 + ], + "geometry": [ + { "lat": 40.7450744, "lon": -73.9441533 }, + { "lat": 40.7450449, "lon": -73.9442224 }, + { "lat": 40.7449375, "lon": -73.9444881 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 732260336, + "bounds": { + "minlat": 40.7779758, + "minlon": -73.9862512, + "maxlat": 40.7781552, + "maxlon": -73.9858149 + }, + "nodes": [ + 6856776749, + 8250895294, + 6856776750 + ], + "geometry": [ + { "lat": 40.7779758, "lon": -73.9858149 }, + { "lat": 40.7780377, "lon": -73.9859663 }, + { "lat": 40.7781552, "lon": -73.9862512 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 732265552, + "bounds": { + "minlat": 40.6998590, + "minlon": -73.9842732, + "maxlat": 40.7002770, + "maxlon": -73.9842562 + }, + "nodes": [ + 6856828450, + 11710115902, + 10722387835, + 6856828454, + 6856828451 + ], + "geometry": [ + { "lat": 40.6998590, "lon": -73.9842732 }, + { "lat": 40.6998955, "lon": -73.9842716 }, + { "lat": 40.6999152, "lon": -73.9842707 }, + { "lat": 40.6999363, "lon": -73.9842695 }, + { "lat": 40.7002770, "lon": -73.9842562 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 732279399, + "bounds": { + "minlat": 40.7226820, + "minlon": -73.9923656, + "maxlat": 40.7229663, + "maxlon": -73.9915373 + }, + "nodes": [ + 6906849816, + 9598797427, + 6856984004, + 6906849814, + 6906849813, + 12886502683, + 6906849812, + 6906849815, + 6856984005 + ], + "geometry": [ + { "lat": 40.7226820, "lon": -73.9915373 }, + { "lat": 40.7227163, "lon": -73.9916517 }, + { "lat": 40.7227204, "lon": -73.9916658 }, + { "lat": 40.7227482, "lon": -73.9916824 }, + { "lat": 40.7227723, "lon": -73.9917062 }, + { "lat": 40.7227777, "lon": -73.9917183 }, + { "lat": 40.7227883, "lon": -73.9917418 }, + { "lat": 40.7228015, "lon": -73.9917867 }, + { "lat": 40.7229663, "lon": -73.9923656 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 732303667, + "bounds": { + "minlat": 40.7017660, + "minlon": -73.9450747, + "maxlat": 40.7020287, + "maxlon": -73.9447628 + }, + "nodes": [ + 6857235908, + 9752179206, + 6857235909 + ], + "geometry": [ + { "lat": 40.7017660, "lon": -73.9447628 }, + { "lat": 40.7019873, "lon": -73.9450256 }, + { "lat": 40.7020287, "lon": -73.9450747 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732303668, + "bounds": { + "minlat": 40.7017857, + "minlon": -73.9456910, + "maxlat": 40.7019992, + "maxlon": -73.9454455 + }, + "nodes": [ + 6857235910, + 9755354468, + 6857235911 + ], + "geometry": [ + { "lat": 40.7019992, "lon": -73.9456910 }, + { "lat": 40.7018463, "lon": -73.9455152 }, + { "lat": 40.7017857, "lon": -73.9454455 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732377033, + "bounds": { + "minlat": 40.7044600, + "minlon": -73.9409494, + "maxlat": 40.7047301, + "maxlon": -73.9399642 + }, + "nodes": [ + 6858105736, + 6858105737, + 6858105738, + 6858105742, + 6858105743 + ], + "geometry": [ + { "lat": 40.7044600, "lon": -73.9409494 }, + { "lat": 40.7044645, "lon": -73.9408772 }, + { "lat": 40.7045467, "lon": -73.9399642 }, + { "lat": 40.7046778, "lon": -73.9399856 }, + { "lat": 40.7047301, "lon": -73.9399942 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732377035, + "bounds": { + "minlat": 40.7036569, + "minlon": -73.9389560, + "maxlat": 40.7037142, + "maxlon": -73.9387796 + }, + "nodes": [ + 6858105747, + 6858105751 + ], + "geometry": [ + { "lat": 40.7037142, "lon": -73.9389560 }, + { "lat": 40.7036569, "lon": -73.9387796 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 732378484, + "bounds": { + "minlat": 40.7785823, + "minlon": -73.9865723, + "maxlat": 40.7789279, + "maxlon": -73.9859622 + }, + "nodes": [ + 6858150177, + 9900217951, + 9072484219, + 6858150178, + 6858153385, + 9072484218, + 6858150179, + 6858150180, + 9072484217, + 6858150181, + 6858150184, + 9900217952, + 6858150182, + 6858150183 + ], + "geometry": [ + { "lat": 40.7787034, "lon": -73.9859622 }, + { "lat": 40.7786137, "lon": -73.9860289 }, + { "lat": 40.7786024, "lon": -73.9860368 }, + { "lat": 40.7785883, "lon": -73.9860609 }, + { "lat": 40.7785828, "lon": -73.9860932 }, + { "lat": 40.7785823, "lon": -73.9861282 }, + { "lat": 40.7785948, "lon": -73.9861768 }, + { "lat": 40.7787440, "lon": -73.9865336 }, + { "lat": 40.7787612, "lon": -73.9865585 }, + { "lat": 40.7787802, "lon": -73.9865723 }, + { "lat": 40.7788162, "lon": -73.9865715 }, + { "lat": 40.7788384, "lon": -73.9865628 }, + { "lat": 40.7788495, "lon": -73.9865584 }, + { "lat": 40.7789279, "lon": -73.9865084 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 732512705, + "bounds": { + "minlat": 40.7542905, + "minlon": -73.9476101, + "maxlat": 40.7545038, + "maxlon": -73.9469847 + }, + "nodes": [ + 42819709, + 6859408308, + 8219332980, + 6859408309, + 6859408310 + ], + "geometry": [ + { "lat": 40.7542976, "lon": -73.9469847 }, + { "lat": 40.7542905, "lon": -73.9470804 }, + { "lat": 40.7542972, "lon": -73.9471067 }, + { "lat": 40.7543080, "lon": -73.9471489 }, + { "lat": 40.7545038, "lon": -73.9476101 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 732512706, + "bounds": { + "minlat": 40.7547199, + "minlon": -73.9486512, + "maxlat": 40.7550500, + "maxlon": -73.9478942 + }, + "nodes": [ + 6859408311, + 6859408315, + 12500501937, + 6859408314 + ], + "geometry": [ + { "lat": 40.7550500, "lon": -73.9486512 }, + { "lat": 40.7550101, "lon": -73.9485597 }, + { "lat": 40.7549861, "lon": -73.9485047 }, + { "lat": 40.7547199, "lon": -73.9478942 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732512707, + "bounds": { + "minlat": 40.7549046, + "minlon": -73.9488323, + "maxlat": 40.7550500, + "maxlon": -73.9486512 + }, + "nodes": [ + 6859408311, + 13080929986, + 13080929980, + 607954922 + ], + "geometry": [ + { "lat": 40.7550500, "lon": -73.9486512 }, + { "lat": 40.7550156, "lon": -73.9487248 }, + { "lat": 40.7549592, "lon": -73.9487788 }, + { "lat": 40.7549046, "lon": -73.9488323 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard" + } +}, +{ + "type": "way", + "id": 732537383, + "bounds": { + "minlat": 40.7075964, + "minlon": -74.0053938, + "maxlat": 40.7080976, + "maxlon": -74.0051471 + }, + "nodes": [ + 11369418296, + 11369418295 + ], + "geometry": [ + { "lat": 40.7080976, "lon": -74.0053938 }, + { "lat": 40.7075964, "lon": -74.0051471 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 732539476, + "bounds": { + "minlat": 40.7221194, + "minlon": -73.9902455, + "maxlat": 40.7222058, + "maxlon": -73.9899409 + }, + "nodes": [ + 6859551126, + 8307642266, + 6859551127, + 6859551128 + ], + "geometry": [ + { "lat": 40.7221194, "lon": -73.9899409 }, + { "lat": 40.7221371, "lon": -73.9900034 }, + { "lat": 40.7221420, "lon": -73.9900206 }, + { "lat": 40.7222058, "lon": -73.9902455 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 732543747, + "bounds": { + "minlat": 40.7102348, + "minlon": -74.0175292, + "maxlat": 40.7103411, + "maxlon": -74.0174886 + }, + "nodes": [ + 6859615805, + 11422120125, + 6859615811, + 6859615806 + ], + "geometry": [ + { "lat": 40.7103411, "lon": -74.0174886 }, + { "lat": 40.7102810, "lon": -74.0175116 }, + { "lat": 40.7102585, "lon": -74.0175202 }, + { "lat": 40.7102348, "lon": -74.0175292 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 732543748, + "bounds": { + "minlat": 40.7100745, + "minlon": -74.0175906, + "maxlat": 40.7102348, + "maxlon": -74.0175292 + }, + "nodes": [ + 6859615806, + 6859615807 + ], + "geometry": [ + { "lat": 40.7102348, "lon": -74.0175292 }, + { "lat": 40.7100745, "lon": -74.0175906 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "sidewalk:right": "separate", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 732543749, + "bounds": { + "minlat": 40.7098477, + "minlon": -74.0176251, + "maxlat": 40.7100745, + "maxlon": -74.0170584 + }, + "nodes": [ + 6859615807, + 6859615808, + 11422119911, + 11422119912, + 6859615809, + 6859615810, + 11422119914, + 11422119913, + 6859615812, + 6859615814 + ], + "geometry": [ + { "lat": 40.7100745, "lon": -74.0175906 }, + { "lat": 40.7099831, "lon": -74.0176251 }, + { "lat": 40.7099713, "lon": -74.0176228 }, + { "lat": 40.7099588, "lon": -74.0176142 }, + { "lat": 40.7099528, "lon": -74.0175993 }, + { "lat": 40.7098478, "lon": -74.0171446 }, + { "lat": 40.7098477, "lon": -74.0171248 }, + { "lat": 40.7098524, "lon": -74.0171093 }, + { "lat": 40.7098620, "lon": -74.0170963 }, + { "lat": 40.7099547, "lon": -74.0170584 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 732543750, + "bounds": { + "minlat": 40.7102202, + "minlon": -74.0175250, + "maxlat": 40.7103502, + "maxlon": -74.0169529 + }, + "nodes": [ + 6859615817, + 6859615805, + 11422119938 + ], + "geometry": [ + { "lat": 40.7102202, "lon": -74.0169529 }, + { "lat": 40.7103411, "lon": -74.0174886 }, + { "lat": 40.7103502, "lon": -74.0175250 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Albany Street", + "name:etymology:wikidata": "Q24861", + "name:ko": "앨버니 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29110247", + "wikipedia": "en:Albany Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 732543751, + "bounds": { + "minlat": 40.7099547, + "minlon": -74.0170584, + "maxlat": 40.7101117, + "maxlon": -74.0169947 + }, + "nodes": [ + 6859615814, + 6859615818, + 6859615815 + ], + "geometry": [ + { "lat": 40.7099547, "lon": -74.0170584 }, + { "lat": 40.7101025, "lon": -74.0169987 }, + { "lat": 40.7101117, "lon": -74.0169947 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "sidewalk:right": "separate", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 732543752, + "bounds": { + "minlat": 40.7101117, + "minlon": -74.0169947, + "maxlat": 40.7102202, + "maxlon": -74.0169529 + }, + "nodes": [ + 6859615815, + 6859615816, + 11422120124, + 6859615817 + ], + "geometry": [ + { "lat": 40.7101117, "lon": -74.0169947 }, + { "lat": 40.7101375, "lon": -74.0169848 }, + { "lat": 40.7101595, "lon": -74.0169763 }, + { "lat": 40.7102202, "lon": -74.0169529 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 732552256, + "bounds": { + "minlat": 40.7053781, + "minlon": -73.9501140, + "maxlat": 40.7055237, + "maxlon": -73.9497458 + }, + "nodes": [ + 6859710890, + 9755354476, + 6859710891, + 6859710892 + ], + "geometry": [ + { "lat": 40.7053781, "lon": -73.9501140 }, + { "lat": 40.7054499, "lon": -73.9500393 }, + { "lat": 40.7055000, "lon": -73.9499871 }, + { "lat": 40.7055237, "lon": -73.9497458 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 732552257, + "bounds": { + "minlat": 40.7083892, + "minlon": -73.9521206, + "maxlat": 40.7086572, + "maxlon": -73.9519626 + }, + "nodes": [ + 6859710893, + 9755354462, + 6859710895, + 6859710894 + ], + "geometry": [ + { "lat": 40.7086572, "lon": -73.9519626 }, + { "lat": 40.7086016, "lon": -73.9519954 }, + { "lat": 40.7085902, "lon": -73.9520021 }, + { "lat": 40.7083892, "lon": -73.9521206 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 732554707, + "bounds": { + "minlat": 40.7307731, + "minlon": -73.9165824, + "maxlat": 40.7309390, + "maxlon": -73.9158000 + }, + "nodes": [ + 7824536280, + 6859748689, + 7824536279, + 277390487 + ], + "geometry": [ + { "lat": 40.7309390, "lon": -73.9165824 }, + { "lat": 40.7308675, "lon": -73.9163213 }, + { "lat": 40.7308515, "lon": -73.9161089 }, + { "lat": 40.7307731, "lon": -73.9158000 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 732583622, + "bounds": { + "minlat": 40.8064239, + "minlon": -73.9282116, + "maxlat": 40.8065888, + "maxlon": -73.9278097 + }, + "nodes": [ + 6860068227, + 6860068228, + 11427300087, + 6860068229 + ], + "geometry": [ + { "lat": 40.8065888, "lon": -73.9282116 }, + { "lat": 40.8064917, "lon": -73.9279727 }, + { "lat": 40.8064693, "lon": -73.9279189 }, + { "lat": 40.8064239, "lon": -73.9278097 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732585912, + "bounds": { + "minlat": 40.8143449, + "minlon": -73.9349775, + "maxlat": 40.8144861, + "maxlon": -73.9346348 + }, + "nodes": [ + 6860035683, + 9557110417, + 6860099886, + 6860099885 + ], + "geometry": [ + { "lat": 40.8143449, "lon": -73.9346348 }, + { "lat": 40.8143814, "lon": -73.9347242 }, + { "lat": 40.8144328, "lon": -73.9348486 }, + { "lat": 40.8144861, "lon": -73.9349775 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732585913, + "bounds": { + "minlat": 40.8144328, + "minlon": -73.9348486, + "maxlat": 40.8145515, + "maxlon": -73.9347669 + }, + "nodes": [ + 6860099886, + 6860099887 + ], + "geometry": [ + { "lat": 40.8144328, "lon": -73.9348486 }, + { "lat": 40.8145515, "lon": -73.9347669 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732644748, + "bounds": { + "minlat": 40.7914309, + "minlon": -73.9478373, + "maxlat": 40.7918810, + "maxlon": -73.9475064 + }, + "nodes": [ + 6860586785, + 7779545028, + 6860586786 + ], + "geometry": [ + { "lat": 40.7914309, "lon": -73.9478373 }, + { "lat": 40.7918277, "lon": -73.9475456 }, + { "lat": 40.7918810, "lon": -73.9475064 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 732652063, + "bounds": { + "minlat": 40.7667483, + "minlon": -73.9346100, + "maxlat": 40.7674112, + "maxlon": -73.9335776 + }, + "nodes": [ + 6860614023, + 6860614024, + 6860614032, + 6860614025, + 6860614026, + 6860614027, + 6860614028, + 6860614029, + 6860614030, + 6860614031 + ], + "geometry": [ + { "lat": 40.7674112, "lon": -73.9346100 }, + { "lat": 40.7673661, "lon": -73.9345354 }, + { "lat": 40.7673195, "lon": -73.9344476 }, + { "lat": 40.7672524, "lon": -73.9343213 }, + { "lat": 40.7671743, "lon": -73.9343994 }, + { "lat": 40.7670051, "lon": -73.9340603 }, + { "lat": 40.7671932, "lon": -73.9338916 }, + { "lat": 40.7671991, "lon": -73.9338557 }, + { "lat": 40.7670678, "lon": -73.9335776 }, + { "lat": 40.7667483, "lon": -73.9338791 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 732652352, + "bounds": { + "minlat": 40.8434758, + "minlon": -73.9390982, + "maxlat": 40.8435957, + "maxlon": -73.9386908 + }, + "nodes": [ + 6860638330, + 9166213999, + 6860638332, + 6860638331 + ], + "geometry": [ + { "lat": 40.8435957, "lon": -73.9390982 }, + { "lat": 40.8435584, "lon": -73.9389715 }, + { "lat": 40.8435505, "lon": -73.9389447 }, + { "lat": 40.8434758, "lon": -73.9386908 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 732660401, + "bounds": { + "minlat": 40.8650728, + "minlon": -73.9180011, + "maxlat": 40.8657691, + "maxlon": -73.9175867 + }, + "nodes": [ + 6860593881, + 9561160014, + 6860708387, + 6860593882, + 6860593883, + 8288079885, + 6860593884, + 6860708385, + 6860708386 + ], + "geometry": [ + { "lat": 40.8657691, "lon": -73.9180011 }, + { "lat": 40.8656997, "lon": -73.9178460 }, + { "lat": 40.8656981, "lon": -73.9178423 }, + { "lat": 40.8656526, "lon": -73.9177405 }, + { "lat": 40.8656229, "lon": -73.9176792 }, + { "lat": 40.8655920, "lon": -73.9176314 }, + { "lat": 40.8655774, "lon": -73.9176087 }, + { "lat": 40.8655390, "lon": -73.9175867 }, + { "lat": 40.8650728, "lon": -73.9178006 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 732660402, + "bounds": { + "minlat": 40.8655390, + "minlon": -73.9175867, + "maxlat": 40.8661659, + "maxlon": -73.9170479 + }, + "nodes": [ + 6860708385, + 8288079884, + 6860708388, + 6860708389, + 6860708390 + ], + "geometry": [ + { "lat": 40.8655390, "lon": -73.9175867 }, + { "lat": 40.8656471, "lon": -73.9174437 }, + { "lat": 40.8656823, "lon": -73.9173971 }, + { "lat": 40.8658283, "lon": -73.9172699 }, + { "lat": 40.8661659, "lon": -73.9170479 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 732786565, + "bounds": { + "minlat": 40.8177800, + "minlon": -73.9225778, + "maxlat": 40.8218553, + "maxlon": -73.9206688 + }, + "nodes": [ + 5441161229, + 42733524, + 7180965897, + 42735697, + 42735701, + 4619139021, + 9910711710, + 42735703, + 9910711711, + 42735705, + 7043030223, + 7043030226, + 11335643752, + 11335643756, + 42735711, + 1661202365, + 9910723118, + 9910723119, + 1661202371 + ], + "geometry": [ + { "lat": 40.8177800, "lon": -73.9225778 }, + { "lat": 40.8180450, "lon": -73.9224560 }, + { "lat": 40.8181600, "lon": -73.9224042 }, + { "lat": 40.8187960, "lon": -73.9221180 }, + { "lat": 40.8195270, "lon": -73.9217840 }, + { "lat": 40.8196133, "lon": -73.9217448 }, + { "lat": 40.8201326, "lon": -73.9215162 }, + { "lat": 40.8202003, "lon": -73.9214864 }, + { "lat": 40.8202919, "lon": -73.9214453 }, + { "lat": 40.8208540, "lon": -73.9211862 }, + { "lat": 40.8209448, "lon": -73.9211453 }, + { "lat": 40.8210885, "lon": -73.9210783 }, + { "lat": 40.8213025, "lon": -73.9209790 }, + { "lat": 40.8213605, "lon": -73.9209521 }, + { "lat": 40.8214972, "lon": -73.9208887 }, + { "lat": 40.8217394, "lon": -73.9207739 }, + { "lat": 40.8217807, "lon": -73.9207478 }, + { "lat": 40.8218180, "lon": -73.9207133 }, + { "lat": 40.8218553, "lon": -73.9206688 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Morris Avenue", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 732794019, + "bounds": { + "minlat": 40.8036319, + "minlon": -73.9633898, + "maxlat": 40.8039719, + "maxlon": -73.9631418 + }, + "nodes": [ + 42442571, + 6814307791, + 7618358570, + 13768329861 + ], + "geometry": [ + { "lat": 40.8036319, "lon": -73.9633898 }, + { "lat": 40.8036825, "lon": -73.9633524 }, + { "lat": 40.8039267, "lon": -73.9631748 }, + { "lat": 40.8039719, "lon": -73.9631418 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 732920351, + "bounds": { + "minlat": 40.7472032, + "minlon": -73.9696495, + "maxlat": 40.7474416, + "maxlon": -73.9689848 + }, + "nodes": [ + 6863027982, + 6863027983, + 6863027984, + 12431193864, + 6863068085, + 6863068086 + ], + "geometry": [ + { "lat": 40.7472032, "lon": -73.9696495 }, + { "lat": 40.7474416, "lon": -73.9694634 }, + { "lat": 40.7474061, "lon": -73.9694055 }, + { "lat": 40.7473651, "lon": -73.9692641 }, + { "lat": 40.7472978, "lon": -73.9690319 }, + { "lat": 40.7472812, "lon": -73.9689848 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 732935754, + "bounds": { + "minlat": 40.8217391, + "minlon": -73.9912873, + "maxlat": 40.8222822, + "maxlon": -73.9903302 + }, + "nodes": [ + 6863208960, + 6863208961, + 6863208963, + 6863208962 + ], + "geometry": [ + { "lat": 40.8220561, "lon": -73.9903302 }, + { "lat": 40.8222822, "lon": -73.9907651 }, + { "lat": 40.8221346, "lon": -73.9909049 }, + { "lat": 40.8217391, "lon": -73.9912873 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 732935755, + "bounds": { + "minlat": 40.8219097, + "minlon": -73.9909049, + "maxlat": 40.8221346, + "maxlon": -73.9904415 + }, + "nodes": [ + 6863208963, + 6863208964 + ], + "geometry": [ + { "lat": 40.8221346, "lon": -73.9909049 }, + { "lat": 40.8219097, "lon": -73.9904415 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 732935756, + "bounds": { + "minlat": 40.8219097, + "minlon": -73.9904415, + "maxlat": 40.8220561, + "maxlon": -73.9903302 + }, + "nodes": [ + 6863208964, + 6863208960 + ], + "geometry": [ + { "lat": 40.8219097, "lon": -73.9904415 }, + { "lat": 40.8220561, "lon": -73.9903302 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 732935757, + "bounds": { + "minlat": 40.8220561, + "minlon": -73.9903302, + "maxlat": 40.8226375, + "maxlon": -73.9899361 + }, + "nodes": [ + 6863208960, + 7576366437, + 7576366380, + 7576366436, + 103213250 + ], + "geometry": [ + { "lat": 40.8220561, "lon": -73.9903302 }, + { "lat": 40.8221192, "lon": -73.9902874 }, + { "lat": 40.8221938, "lon": -73.9902369 }, + { "lat": 40.8225171, "lon": -73.9900177 }, + { "lat": 40.8226375, "lon": -73.9899361 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 732937318, + "bounds": { + "minlat": 40.8088520, + "minlon": -73.9160457, + "maxlat": 40.8090176, + "maxlon": -73.9153983 + }, + "nodes": [ + 6863247285, + 6863247287 + ], + "geometry": [ + { "lat": 40.8090176, "lon": -73.9160457 }, + { "lat": 40.8088520, "lon": -73.9153983 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732937546, + "bounds": { + "minlat": 40.7703102, + "minlon": -73.9211558, + "maxlat": 40.7704814, + "maxlon": -73.9209125 + }, + "nodes": [ + 6863237729, + 6863237733, + 6863237730, + 6863237731, + 6863237732 + ], + "geometry": [ + { "lat": 40.7704814, "lon": -73.9211558 }, + { "lat": 40.7704483, "lon": -73.9211105 }, + { "lat": 40.7704339, "lon": -73.9210908 }, + { "lat": 40.7703789, "lon": -73.9210150 }, + { "lat": 40.7703102, "lon": -73.9209125 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 732954840, + "bounds": { + "minlat": 40.7185017, + "minlon": -73.9558308, + "maxlat": 40.7186884, + "maxlon": -73.9555560 + }, + "nodes": [ + 6863402547, + 9794890346, + 6863402550, + 6863402548, + 6909434776, + 6863402549 + ], + "geometry": [ + { "lat": 40.7185017, "lon": -73.9558308 }, + { "lat": 40.7185473, "lon": -73.9557813 }, + { "lat": 40.7185622, "lon": -73.9557651 }, + { "lat": 40.7185867, "lon": -73.9557384 }, + { "lat": 40.7185925, "lon": -73.9556602 }, + { "lat": 40.7186884, "lon": -73.9555560 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 732973706, + "bounds": { + "minlat": 40.8147885, + "minlon": -73.9372216, + "maxlat": 40.8150204, + "maxlon": -73.9370542 + }, + "nodes": [ + 6863600902, + 9557110347, + 6863600903, + 6863600904 + ], + "geometry": [ + { "lat": 40.8150204, "lon": -73.9370542 }, + { "lat": 40.8149665, "lon": -73.9370936 }, + { "lat": 40.8149449, "lon": -73.9371094 }, + { "lat": 40.8147885, "lon": -73.9372216 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732973707, + "bounds": { + "minlat": 40.8154838, + "minlon": -73.9389658, + "maxlat": 40.8157429, + "maxlon": -73.9387908 + }, + "nodes": [ + 6863600905, + 9557110348, + 6863600906, + 6863600907 + ], + "geometry": [ + { "lat": 40.8157429, "lon": -73.9387908 }, + { "lat": 40.8156944, "lon": -73.9388235 }, + { "lat": 40.8156697, "lon": -73.9388402 }, + { "lat": 40.8154838, "lon": -73.9389658 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732975062, + "bounds": { + "minlat": 40.7032148, + "minlon": -73.9695871, + "maxlat": 40.7037243, + "maxlon": -73.9690594 + }, + "nodes": [ + 6863619419, + 6863619420 + ], + "geometry": [ + { "lat": 40.7032148, "lon": -73.9695871 }, + { "lat": 40.7037243, "lon": -73.9690594 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 732982212, + "bounds": { + "minlat": 40.8483482, + "minlon": -73.9227013, + "maxlat": 40.8483808, + "maxlon": -73.9226367 + }, + "nodes": [ + 6863700047, + 6863700048 + ], + "geometry": [ + { "lat": 40.8483482, "lon": -73.9226367 }, + { "lat": 40.8483808, "lon": -73.9227013 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 732982213, + "bounds": { + "minlat": 40.8483808, + "minlon": -73.9227682, + "maxlat": 40.8484143, + "maxlon": -73.9227013 + }, + "nodes": [ + 6863700048, + 6863700059 + ], + "geometry": [ + { "lat": 40.8483808, "lon": -73.9227013 }, + { "lat": 40.8484143, "lon": -73.9227682 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 732982214, + "bounds": { + "minlat": 40.8483193, + "minlon": -73.9230251, + "maxlat": 40.8488015, + "maxlon": -73.9225169 + }, + "nodes": [ + 6863700059, + 6863700058, + 6863700049, + 6863700050, + 6863700051, + 6863700052, + 6863700053, + 6863700054, + 6863700055, + 6863700056, + 6863700057, + 6863700058 + ], + "geometry": [ + { "lat": 40.8484143, "lon": -73.9227682 }, + { "lat": 40.8484242, "lon": -73.9227880 }, + { "lat": 40.8483328, "lon": -73.9228608 }, + { "lat": 40.8483193, "lon": -73.9229023 }, + { "lat": 40.8483377, "lon": -73.9229633 }, + { "lat": 40.8483703, "lon": -73.9230210 }, + { "lat": 40.8483974, "lon": -73.9230251 }, + { "lat": 40.8487928, "lon": -73.9226592 }, + { "lat": 40.8488015, "lon": -73.9226332 }, + { "lat": 40.8487615, "lon": -73.9225193 }, + { "lat": 40.8487443, "lon": -73.9225169 }, + { "lat": 40.8484242, "lon": -73.9227880 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 733021956, + "bounds": { + "minlat": 40.8094888, + "minlon": -73.9292204, + "maxlat": 40.8095499, + "maxlon": -73.9291406 + }, + "nodes": [ + 7554088552, + 42747177 + ], + "geometry": [ + { "lat": 40.8094888, "lon": -73.9291406 }, + { "lat": 40.8095499, "lon": -73.9292204 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "East 135th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 733021958, + "bounds": { + "minlat": 40.8095499, + "minlon": -73.9292204, + "maxlat": 40.8098839, + "maxlon": -73.9287765 + }, + "nodes": [ + 7554088550, + 9163759299, + 42747177 + ], + "geometry": [ + { "lat": 40.8098839, "lon": -73.9287765 }, + { "lat": 40.8096255, "lon": -73.9291302 }, + { "lat": 40.8095499, "lon": -73.9292204 } + ], + "tags": { + "alt_name": "Third Avenue", + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "secondary", + "horse": "no", + "lanes": "4", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "turn:lanes": "through|through|through|through", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 733021959, + "bounds": { + "minlat": 40.8096310, + "minlon": -73.9300946, + "maxlat": 40.8102333, + "maxlon": -73.9293273 + }, + "nodes": [ + 595801157, + 11722400623, + 10255325985, + 42747174 + ], + "geometry": [ + { "lat": 40.8096310, "lon": -73.9293273 }, + { "lat": 40.8096808, "lon": -73.9293903 }, + { "lat": 40.8098122, "lon": -73.9295581 }, + { "lat": 40.8102333, "lon": -73.9300946 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 733169904, + "bounds": { + "minlat": 40.8230590, + "minlon": -73.9541978, + "maxlat": 40.8236692, + "maxlon": -73.9537405 + }, + "nodes": [ + 6865755471, + 10170703028, + 6865755472, + 6865755473, + 10168100467, + 6865755474 + ], + "geometry": [ + { "lat": 40.8230590, "lon": -73.9541978 }, + { "lat": 40.8231103, "lon": -73.9541585 }, + { "lat": 40.8231444, "lon": -73.9541324 }, + { "lat": 40.8236116, "lon": -73.9537830 }, + { "lat": 40.8236289, "lon": -73.9537702 }, + { "lat": 40.8236692, "lon": -73.9537405 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 733171369, + "bounds": { + "minlat": 40.7518609, + "minlon": -74.0019943, + "maxlat": 40.7520656, + "maxlon": -74.0016770 + }, + "nodes": [ + 6865730150, + 11512412894, + 11512412891, + 11512412903, + 11512412905, + 11512412904, + 6865730149, + 6865730148, + 11512412901, + 11512412902, + 11512412900, + 11512412890, + 11512412893, + 6865730147 + ], + "geometry": [ + { "lat": 40.7519588, "lon": -74.0019943 }, + { "lat": 40.7519024, "lon": -74.0018640 }, + { "lat": 40.7518648, "lon": -74.0017775 }, + { "lat": 40.7518609, "lon": -74.0017602 }, + { "lat": 40.7518625, "lon": -74.0017444 }, + { "lat": 40.7518675, "lon": -74.0017315 }, + { "lat": 40.7518765, "lon": -74.0017223 }, + { "lat": 40.7519306, "lon": -74.0016834 }, + { "lat": 40.7519416, "lon": -74.0016781 }, + { "lat": 40.7519529, "lon": -74.0016770 }, + { "lat": 40.7519621, "lon": -74.0016825 }, + { "lat": 40.7519716, "lon": -74.0016978 }, + { "lat": 40.7520094, "lon": -74.0017870 }, + { "lat": 40.7520656, "lon": -74.0019152 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 733172221, + "bounds": { + "minlat": 40.7109771, + "minlon": -73.9832930, + "maxlat": 40.7112288, + "maxlon": -73.9825223 + }, + "nodes": [ + 6865794111, + 8310246542, + 6865794114, + 6865794112, + 6865794113 + ], + "geometry": [ + { "lat": 40.7111792, "lon": -73.9832930 }, + { "lat": 40.7111848, "lon": -73.9832177 }, + { "lat": 40.7111894, "lon": -73.9831547 }, + { "lat": 40.7112288, "lon": -73.9825564 }, + { "lat": 40.7109771, "lon": -73.9825223 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 733172350, + "bounds": { + "minlat": 40.7770126, + "minlon": -73.9101612, + "maxlat": 40.7773666, + "maxlon": -73.9096649 + }, + "nodes": [ + 6865795494, + 9776116485, + 6865795496 + ], + "geometry": [ + { "lat": 40.7770126, "lon": -73.9096649 }, + { "lat": 40.7770755, "lon": -73.9097531 }, + { "lat": 40.7773666, "lon": -73.9101612 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 733272033, + "bounds": { + "minlat": 40.7687643, + "minlon": -73.9344627, + "maxlat": 40.7691287, + "maxlon": -73.9342269 + }, + "nodes": [ + 6866836872, + 7733801877, + 6866836876 + ], + "geometry": [ + { "lat": 40.7691287, "lon": -73.9342269 }, + { "lat": 40.7690600, "lon": -73.9342714 }, + { "lat": 40.7687643, "lon": -73.9344627 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 733310407, + "bounds": { + "minlat": 40.7081434, + "minlon": -73.9587612, + "maxlat": 40.7082232, + "maxlon": -73.9580809 + }, + "nodes": [ + 6867303246, + 9779538386, + 6867303249, + 6867303247, + 6867303248 + ], + "geometry": [ + { "lat": 40.7081434, "lon": -73.9580809 }, + { "lat": 40.7081545, "lon": -73.9581693 }, + { "lat": 40.7081632, "lon": -73.9582388 }, + { "lat": 40.7082019, "lon": -73.9585474 }, + { "lat": 40.7082232, "lon": -73.9587612 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 733332973, + "bounds": { + "minlat": 40.8179509, + "minlon": -73.9605452, + "maxlat": 40.8180852, + "maxlon": -73.9604157 + }, + "nodes": [ + 6867580414, + 595314028 + ], + "geometry": [ + { "lat": 40.8179509, "lon": -73.9604157 }, + { "lat": 40.8180852, "lon": -73.9605452 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 733393249, + "bounds": { + "minlat": 40.8084658, + "minlon": -73.9653822, + "maxlat": 40.8086847, + "maxlon": -73.9648621 + }, + "nodes": [ + 3579426871, + 10169289725, + 595314040 + ], + "geometry": [ + { "lat": 40.8084658, "lon": -73.9648621 }, + { "lat": 40.8085089, "lon": -73.9649638 }, + { "lat": 40.8086847, "lon": -73.9653822 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "1", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "name_1": "West 116 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 733393250, + "bounds": { + "minlat": 40.8086847, + "minlon": -73.9657902, + "maxlat": 40.8088175, + "maxlon": -73.9653822 + }, + "nodes": [ + 595314040, + 7785881434, + 5004570632 + ], + "geometry": [ + { "lat": 40.8086847, "lon": -73.9653822 }, + { "lat": 40.8088102, "lon": -73.9656758 }, + { "lat": 40.8088175, "lon": -73.9657902 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "1", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "name_1": "West 116 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 733393251, + "bounds": { + "minlat": 40.8088175, + "minlon": -73.9657902, + "maxlat": 40.8089139, + "maxlon": -73.9657230 + }, + "nodes": [ + 5004570632, + 5004570652 + ], + "geometry": [ + { "lat": 40.8088175, "lon": -73.9657902 }, + { "lat": 40.8089139, "lon": -73.9657230 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 733432851, + "bounds": { + "minlat": 40.7004488, + "minlon": -73.9507580, + "maxlat": 40.7004825, + "maxlon": -73.9504961 + }, + "nodes": [ + 42482207, + 9755373238, + 42491998 + ], + "geometry": [ + { "lat": 40.7004488, "lon": -73.9507580 }, + { "lat": 40.7004570, "lon": -73.9506506 }, + { "lat": 40.7004825, "lon": -73.9504961 } + ], + "tags": { + "highway": "residential", + "name": "Wallabout Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wallabout", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 733432852, + "bounds": { + "minlat": 40.7004488, + "minlon": -73.9578924, + "maxlat": 40.7068208, + "maxlon": -73.9507580 + }, + "nodes": [ + 42482207, + 9755373240, + 9755373225, + 42475322, + 9755373224, + 9755373266, + 42482202, + 9632404900, + 9755354498, + 42482198, + 9755354499, + 9755373335, + 42482192, + 9755373334, + 9755373343, + 42477581, + 9755373342, + 9755373350, + 42482183, + 9755373349, + 9772859192, + 42482042, + 9772859194, + 9772859208, + 42482178, + 9772859206, + 9772859222, + 42482174, + 9772859220, + 9772859234, + 42482168, + 9772859236, + 6338023992, + 42482165, + 6338023991, + 598033010 + ], + "geometry": [ + { "lat": 40.7004488, "lon": -73.9507580 }, + { "lat": 40.7005162, "lon": -73.9508398 }, + { "lat": 40.7008740, "lon": -73.9512345 }, + { "lat": 40.7009220, "lon": -73.9512880 }, + { "lat": 40.7009753, "lon": -73.9513464 }, + { "lat": 40.7014360, "lon": -73.9518510 }, + { "lat": 40.7014914, "lon": -73.9519117 }, + { "lat": 40.7015591, "lon": -73.9519893 }, + { "lat": 40.7020002, "lon": -73.9524929 }, + { "lat": 40.7020510, "lon": -73.9525510 }, + { "lat": 40.7021094, "lon": -73.9526160 }, + { "lat": 40.7025670, "lon": -73.9531254 }, + { "lat": 40.7026170, "lon": -73.9531810 }, + { "lat": 40.7026775, "lon": -73.9532487 }, + { "lat": 40.7031316, "lon": -73.9537567 }, + { "lat": 40.7031810, "lon": -73.9538120 }, + { "lat": 40.7032422, "lon": -73.9538801 }, + { "lat": 40.7036982, "lon": -73.9543877 }, + { "lat": 40.7037470, "lon": -73.9544420 }, + { "lat": 40.7038057, "lon": -73.9545071 }, + { "lat": 40.7042662, "lon": -73.9550219 }, + { "lat": 40.7043120, "lon": -73.9550740 }, + { "lat": 40.7043690, "lon": -73.9551380 }, + { "lat": 40.7048261, "lon": -73.9556482 }, + { "lat": 40.7048760, "lon": -73.9557040 }, + { "lat": 40.7049352, "lon": -73.9557705 }, + { "lat": 40.7053906, "lon": -73.9562825 }, + { "lat": 40.7054390, "lon": -73.9563370 }, + { "lat": 40.7054977, "lon": -73.9564026 }, + { "lat": 40.7059547, "lon": -73.9569130 }, + { "lat": 40.7060030, "lon": -73.9569670 }, + { "lat": 40.7060655, "lon": -73.9570367 }, + { "lat": 40.7065181, "lon": -73.9575415 }, + { "lat": 40.7065680, "lon": -73.9575970 }, + { "lat": 40.7066231, "lon": -73.9576631 }, + { "lat": 40.7068208, "lon": -73.9578924 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:zip_left": "11216", + "tiger:zip_right": "11216" + } +}, +{ + "type": "way", + "id": 733482517, + "bounds": { + "minlat": 40.8809260, + "minlon": -73.9519595, + "maxlat": 40.8810065, + "maxlon": -73.9516664 + }, + "nodes": [ + 6869076034, + 6869076033, + 9239519758, + 6869076031, + 6869076030 + ], + "geometry": [ + { "lat": 40.8810065, "lon": -73.9516664 }, + { "lat": 40.8809795, "lon": -73.9517197 }, + { "lat": 40.8809555, "lon": -73.9517704 }, + { "lat": 40.8809417, "lon": -73.9518187 }, + { "lat": 40.8809260, "lon": -73.9519595 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 733482518, + "bounds": { + "minlat": 40.8808091, + "minlon": -73.9517556, + "maxlat": 40.8810065, + "maxlon": -73.9516664 + }, + "nodes": [ + 6869076037, + 6869076036, + 6869076035, + 6869076034 + ], + "geometry": [ + { "lat": 40.8808091, "lon": -73.9517556 }, + { "lat": 40.8808895, "lon": -73.9517126 }, + { "lat": 40.8809500, "lon": -73.9516849 }, + { "lat": 40.8810065, "lon": -73.9516664 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 733482519, + "bounds": { + "minlat": 40.8810065, + "minlon": -73.9516664, + "maxlat": 40.8815196, + "maxlon": -73.9512489 + }, + "nodes": [ + 6869076034, + 6869076039, + 6869076040, + 6869076041, + 6869076042 + ], + "geometry": [ + { "lat": 40.8810065, "lon": -73.9516664 }, + { "lat": 40.8810490, "lon": -73.9516495 }, + { "lat": 40.8811591, "lon": -73.9516032 }, + { "lat": 40.8811213, "lon": -73.9513868 }, + { "lat": 40.8815196, "lon": -73.9512489 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 733482520, + "bounds": { + "minlat": 40.8815196, + "minlon": -73.9512489, + "maxlat": 40.8816437, + "maxlon": -73.9511976 + }, + "nodes": [ + 6869076042, + 6869076044 + ], + "geometry": [ + { "lat": 40.8815196, "lon": -73.9512489 }, + { "lat": 40.8816437, "lon": -73.9511976 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 733482521, + "bounds": { + "minlat": 40.8814600, + "minlon": -73.9512489, + "maxlat": 40.8815196, + "maxlon": -73.9509502 + }, + "nodes": [ + 6869076042, + 6869076043 + ], + "geometry": [ + { "lat": 40.8815196, "lon": -73.9512489 }, + { "lat": 40.8814600, "lon": -73.9509502 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 733482522, + "bounds": { + "minlat": 40.8814600, + "minlon": -73.9509502, + "maxlat": 40.8816147, + "maxlon": -73.9508985 + }, + "nodes": [ + 6869076043, + 103215753, + 8219593590, + 4204301394 + ], + "geometry": [ + { "lat": 40.8814600, "lon": -73.9509502 }, + { "lat": 40.8815167, "lon": -73.9509313 }, + { "lat": 40.8815727, "lon": -73.9509126 }, + { "lat": 40.8816147, "lon": -73.9508985 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Sylvan Avenue", + "rcn_ref": "9", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 733482523, + "bounds": { + "minlat": 40.8813220, + "minlon": -73.9519048, + "maxlat": 40.8814221, + "maxlon": -73.9515361 + }, + "nodes": [ + 6869076045, + 6869076046 + ], + "geometry": [ + { "lat": 40.8814221, "lon": -73.9519048 }, + { "lat": 40.8813220, "lon": -73.9515361 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 733498322, + "bounds": { + "minlat": 40.8400087, + "minlon": -73.9285811, + "maxlat": 40.8401179, + "maxlon": -73.9281355 + }, + "nodes": [ + 3809984323, + 6880887436, + 6869267800, + 6869267799 + ], + "geometry": [ + { "lat": 40.8401179, "lon": -73.9285811 }, + { "lat": 40.8401016, "lon": -73.9285210 }, + { "lat": 40.8400620, "lon": -73.9283566 }, + { "lat": 40.8400087, "lon": -73.9281355 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 733498323, + "bounds": { + "minlat": 40.8398145, + "minlon": -73.9284789, + "maxlat": 40.8400620, + "maxlon": -73.9283566 + }, + "nodes": [ + 6869267800, + 6869267801 + ], + "geometry": [ + { "lat": 40.8400620, "lon": -73.9283566 }, + { "lat": 40.8398145, "lon": -73.9284789 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 733660376, + "bounds": { + "minlat": 40.7564870, + "minlon": -73.9400400, + "maxlat": 40.7569850, + "maxlon": -73.9395821 + }, + "nodes": [ + 5487837584, + 7746705680, + 7987870306, + 7746705681, + 42825876 + ], + "geometry": [ + { "lat": 40.7569850, "lon": -73.9395821 }, + { "lat": 40.7569300, "lon": -73.9396326 }, + { "lat": 40.7568863, "lon": -73.9396728 }, + { "lat": 40.7568353, "lon": -73.9397197 }, + { "lat": 40.7564870, "lon": -73.9400400 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 733661498, + "bounds": { + "minlat": 40.7552340, + "minlon": -73.9412390, + "maxlat": 40.7562896, + "maxlon": -73.9402289 + }, + "nodes": [ + 5487837582, + 13701213612, + 11623207004, + 7734652586, + 42825879 + ], + "geometry": [ + { "lat": 40.7562896, "lon": -73.9402289 }, + { "lat": 40.7558435, "lon": -73.9406557 }, + { "lat": 40.7554071, "lon": -73.9410733 }, + { "lat": 40.7553061, "lon": -73.9411700 }, + { "lat": 40.7552340, "lon": -73.9412390 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lit": "yes", + "name": "21st Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 733667933, + "bounds": { + "minlat": 40.7536401, + "minlon": -73.9963969, + "maxlat": 40.7551147, + "maxlon": -73.9929120 + }, + "nodes": [ + 427842070, + 8261123406, + 5481856931, + 7752042640, + 42444964, + 8288270450, + 8657749388, + 5175213312, + 9530100567 + ], + "geometry": [ + { "lat": 40.7551147, "lon": -73.9963969 }, + { "lat": 40.7550896, "lon": -73.9963336 }, + { "lat": 40.7548375, "lon": -73.9957363 }, + { "lat": 40.7547328, "lon": -73.9954914 }, + { "lat": 40.7546861, "lon": -73.9953826 }, + { "lat": 40.7546212, "lon": -73.9952343 }, + { "lat": 40.7543669, "lon": -73.9946458 }, + { "lat": 40.7542803, "lon": -73.9944393 }, + { "lat": 40.7536401, "lon": -73.9929120 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 36th Street", + "name:ru": "Западная 36-я стрит", + "name_1": "West 36 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 733699206, + "bounds": { + "minlat": 40.8188982, + "minlon": -73.9515764, + "maxlat": 40.8191496, + "maxlon": -73.9505227 + }, + "nodes": [ + 5487817604, + 5487817594, + 5487817596, + 5487817603, + 5487817602, + 5487817601, + 5487817600 + ], + "geometry": [ + { "lat": 40.8191496, "lon": -73.9505227 }, + { "lat": 40.8190982, "lon": -73.9507966 }, + { "lat": 40.8189771, "lon": -73.9513542 }, + { "lat": 40.8189353, "lon": -73.9515468 }, + { "lat": 40.8189256, "lon": -73.9515690 }, + { "lat": 40.8189130, "lon": -73.9515757 }, + { "lat": 40.8188982, "lon": -73.9515764 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 733736167, + "bounds": { + "minlat": 40.8108516, + "minlon": -73.9384604, + "maxlat": 40.8108996, + "maxlon": -73.9383430 + }, + "nodes": [ + 5481922056, + 5481922055 + ], + "geometry": [ + { "lat": 40.8108996, "lon": -73.9384604 }, + { "lat": 40.8108516, "lon": -73.9383430 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 733736650, + "bounds": { + "minlat": 40.7066530, + "minlon": -73.9511193, + "maxlat": 40.7109607, + "maxlon": -73.9504060 + }, + "nodes": [ + 42514959, + 9755373443, + 5481854379, + 9752593875, + 42520569, + 9752593874, + 9582402616, + 9752593861, + 42474162, + 9752593860, + 5481854381, + 42520572, + 4593135573, + 42490951, + 9752590899, + 42496941, + 9752590900, + 42504297, + 9959904543, + 42520577, + 9959904545, + 5379075749, + 42520579 + ], + "geometry": [ + { "lat": 40.7066530, "lon": -73.9504060 }, + { "lat": 40.7067699, "lon": -73.9504263 }, + { "lat": 40.7069864, "lon": -73.9504640 }, + { "lat": 40.7073445, "lon": -73.9505208 }, + { "lat": 40.7074296, "lon": -73.9505355 }, + { "lat": 40.7074809, "lon": -73.9505450 }, + { "lat": 40.7077586, "lon": -73.9505907 }, + { "lat": 40.7081007, "lon": -73.9506483 }, + { "lat": 40.7081672, "lon": -73.9506595 }, + { "lat": 40.7082591, "lon": -73.9506758 }, + { "lat": 40.7083406, "lon": -73.9506870 }, + { "lat": 40.7088030, "lon": -73.9507600 }, + { "lat": 40.7089968, "lon": -73.9507922 }, + { "lat": 40.7092113, "lon": -73.9508279 }, + { "lat": 40.7094624, "lon": -73.9508671 }, + { "lat": 40.7095130, "lon": -73.9508750 }, + { "lat": 40.7095864, "lon": -73.9508876 }, + { "lat": 40.7099910, "lon": -73.9509560 }, + { "lat": 40.7101731, "lon": -73.9509861 }, + { "lat": 40.7102210, "lon": -73.9509940 }, + { "lat": 40.7102915, "lon": -73.9510060 }, + { "lat": 40.7108711, "lon": -73.9511048 }, + { "lat": 40.7109607, "lon": -73.9511193 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 733931105, + "bounds": { + "minlat": 40.8745136, + "minlon": -73.9977755, + "maxlat": 40.8780614, + "maxlon": -73.9935571 + }, + "nodes": [ + 6873602517, + 6873602534, + 6873602535, + 6873602536, + 6873602537, + 6873602538, + 6873602539, + 6873602540, + 6873602541, + 6873602542, + 6873602543, + 6873602544, + 6873602545, + 6873602546, + 6873602547, + 6873602548, + 6873602549, + 6873602550, + 6873602551, + 6873602552, + 6873602553, + 6873602554, + 6873602555, + 6873602556, + 6873602557, + 6873602558, + 6873602559, + 6873602560, + 6873602561, + 6873602562, + 6873602563, + 6873602564, + 6873602565, + 6873602566, + 6873602567, + 6873602568, + 6873602569, + 6873602570, + 6873602571, + 6873602572, + 6873602573, + 6873602574, + 6873602575, + 6873602576, + 6873602577, + 6873602578, + 6873602579, + 6873602580, + 6873602581, + 6873602582, + 6873602583, + 6873602634, + 6873602584, + 6873602585, + 6873602586, + 6873602587, + 6873602588, + 6873602589, + 6873602590, + 6873602600, + 6873602601, + 6873602602, + 6873602603, + 6873602604, + 6873602605, + 6873602606, + 6873602607, + 6873602608, + 6873602609, + 6873602610, + 6873602611, + 6873602612, + 6873602613, + 6873602614, + 6873602615, + 6873602616, + 6873602617, + 6873602618, + 6873602619, + 6873602620, + 6873602621 + ], + "geometry": [ + { "lat": 40.8780614, "lon": -73.9935571 }, + { "lat": 40.8778374, "lon": -73.9936919 }, + { "lat": 40.8777986, "lon": -73.9937334 }, + { "lat": 40.8777509, "lon": -73.9938031 }, + { "lat": 40.8776932, "lon": -73.9938844 }, + { "lat": 40.8776505, "lon": -73.9939342 }, + { "lat": 40.8776358, "lon": -73.9939658 }, + { "lat": 40.8776232, "lon": -73.9940076 }, + { "lat": 40.8776158, "lon": -73.9940495 }, + { "lat": 40.8776179, "lon": -73.9940970 }, + { "lat": 40.8776190, "lon": -73.9941388 }, + { "lat": 40.8776221, "lon": -73.9941793 }, + { "lat": 40.8776200, "lon": -73.9942268 }, + { "lat": 40.8776095, "lon": -73.9942770 }, + { "lat": 40.8775968, "lon": -73.9943175 }, + { "lat": 40.8774733, "lon": -73.9945659 }, + { "lat": 40.8772433, "lon": -73.9950237 }, + { "lat": 40.8772137, "lon": -73.9950781 }, + { "lat": 40.8771884, "lon": -73.9951060 }, + { "lat": 40.8771589, "lon": -73.9951270 }, + { "lat": 40.8771240, "lon": -73.9951437 }, + { "lat": 40.8770966, "lon": -73.9951521 }, + { "lat": 40.8770692, "lon": -73.9951521 }, + { "lat": 40.8770364, "lon": -73.9951493 }, + { "lat": 40.8770016, "lon": -73.9951437 }, + { "lat": 40.8768138, "lon": -73.9950432 }, + { "lat": 40.8767874, "lon": -73.9950237 }, + { "lat": 40.8767705, "lon": -73.9950083 }, + { "lat": 40.8767536, "lon": -73.9949790 }, + { "lat": 40.8767431, "lon": -73.9949441 }, + { "lat": 40.8766639, "lon": -73.9946776 }, + { "lat": 40.8766481, "lon": -73.9946455 }, + { "lat": 40.8766207, "lon": -73.9946008 }, + { "lat": 40.8765995, "lon": -73.9945673 }, + { "lat": 40.8765816, "lon": -73.9945422 }, + { "lat": 40.8765605, "lon": -73.9945240 }, + { "lat": 40.8765288, "lon": -73.9945087 }, + { "lat": 40.8764602, "lon": -73.9944766 }, + { "lat": 40.8764223, "lon": -73.9944612 }, + { "lat": 40.8763927, "lon": -73.9944543 }, + { "lat": 40.8763663, "lon": -73.9944445 }, + { "lat": 40.8763410, "lon": -73.9944333 }, + { "lat": 40.8763178, "lon": -73.9944194 }, + { "lat": 40.8762861, "lon": -73.9943984 }, + { "lat": 40.8762513, "lon": -73.9943789 }, + { "lat": 40.8762175, "lon": -73.9943635 }, + { "lat": 40.8761289, "lon": -73.9943231 }, + { "lat": 40.8760803, "lon": -73.9943147 }, + { "lat": 40.8760392, "lon": -73.9943147 }, + { "lat": 40.8759959, "lon": -73.9943259 }, + { "lat": 40.8759453, "lon": -73.9943482 }, + { "lat": 40.8759033, "lon": -73.9943753 }, + { "lat": 40.8758957, "lon": -73.9943803 }, + { "lat": 40.8758598, "lon": -73.9944166 }, + { "lat": 40.8758133, "lon": -73.9944961 }, + { "lat": 40.8755991, "lon": -73.9948758 }, + { "lat": 40.8755326, "lon": -73.9950153 }, + { "lat": 40.8752002, "lon": -73.9955708 }, + { "lat": 40.8751137, "lon": -73.9956922 }, + { "lat": 40.8750551, "lon": -73.9957818 }, + { "lat": 40.8748939, "lon": -73.9959881 }, + { "lat": 40.8748396, "lon": -73.9960669 }, + { "lat": 40.8747888, "lon": -73.9961410 }, + { "lat": 40.8747555, "lon": -73.9961943 }, + { "lat": 40.8747152, "lon": -73.9962638 }, + { "lat": 40.8746871, "lon": -73.9963195 }, + { "lat": 40.8746661, "lon": -73.9964029 }, + { "lat": 40.8746293, "lon": -73.9966092 }, + { "lat": 40.8746048, "lon": -73.9969174 }, + { "lat": 40.8745995, "lon": -73.9970356 }, + { "lat": 40.8746030, "lon": -73.9971144 }, + { "lat": 40.8746065, "lon": -73.9971885 }, + { "lat": 40.8746030, "lon": -73.9972581 }, + { "lat": 40.8745820, "lon": -73.9973322 }, + { "lat": 40.8745469, "lon": -73.9974064 }, + { "lat": 40.8745277, "lon": -73.9974435 }, + { "lat": 40.8745171, "lon": -73.9974898 }, + { "lat": 40.8745136, "lon": -73.9975292 }, + { "lat": 40.8745189, "lon": -73.9975825 }, + { "lat": 40.8745294, "lon": -73.9976335 }, + { "lat": 40.8745772, "lon": -73.9977755 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 733931108, + "bounds": { + "minlat": 40.8797554, + "minlon": -73.9944469, + "maxlat": 40.8800653, + "maxlon": -73.9943074 + }, + "nodes": [ + 6873602622, + 6873602629, + 6873602623 + ], + "geometry": [ + { "lat": 40.8800653, "lon": -73.9943074 }, + { "lat": 40.8799303, "lon": -73.9943681 }, + { "lat": 40.8797554, "lon": -73.9944469 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 733931109, + "bounds": { + "minlat": 40.8797554, + "minlon": -73.9945906, + "maxlat": 40.8798876, + "maxlon": -73.9944469 + }, + "nodes": [ + 6873602623, + 6873602624 + ], + "geometry": [ + { "lat": 40.8797554, "lon": -73.9944469 }, + { "lat": 40.8798876, "lon": -73.9945906 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 733931110, + "bounds": { + "minlat": 40.8789335, + "minlon": -73.9944469, + "maxlat": 40.8797554, + "maxlon": -73.9932306 + }, + "nodes": [ + 6873602623, + 6873602625, + 6873602626, + 6873602627, + 6873602628 + ], + "geometry": [ + { "lat": 40.8797554, "lon": -73.9944469 }, + { "lat": 40.8795216, "lon": -73.9939915 }, + { "lat": 40.8792863, "lon": -73.9936167 }, + { "lat": 40.8791035, "lon": -73.9934105 }, + { "lat": 40.8789335, "lon": -73.9932306 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 733931111, + "bounds": { + "minlat": 40.8789041, + "minlon": -73.9943681, + "maxlat": 40.8799303, + "maxlon": -73.9929427 + }, + "nodes": [ + 6873602629, + 6873602630, + 6873602631, + 6873602632, + 6873602633 + ], + "geometry": [ + { "lat": 40.8799303, "lon": -73.9943681 }, + { "lat": 40.8798543, "lon": -73.9941733 }, + { "lat": 40.8797183, "lon": -73.9939278 }, + { "lat": 40.8793896, "lon": -73.9934274 }, + { "lat": 40.8789041, "lon": -73.9929427 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 734178991, + "bounds": { + "minlat": 40.8719841, + "minlon": -74.0202566, + "maxlat": 40.8721199, + "maxlon": -74.0199209 + }, + "nodes": [ + 6875540105, + 6875540104, + 6875540106 + ], + "geometry": [ + { "lat": 40.8721199, "lon": -74.0202566 }, + { "lat": 40.8720912, "lon": -74.0201856 }, + { "lat": 40.8719841, "lon": -74.0199209 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 734178992, + "bounds": { + "minlat": 40.8721073, + "minlon": -74.0201611, + "maxlat": 40.8722130, + "maxlon": -74.0198926 + }, + "nodes": [ + 6875540107, + 6875540108 + ], + "geometry": [ + { "lat": 40.8722130, "lon": -74.0201611 }, + { "lat": 40.8721073, "lon": -74.0198926 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 734362352, + "bounds": { + "minlat": 40.7671170, + "minlon": -73.9537404, + "maxlat": 40.7673856, + "maxlon": -73.9534135 + }, + "nodes": [ + 6877054643, + 7136749243, + 6877054644, + 6877054645, + 6877054646, + 6877054647, + 6877054648, + 6877054649, + 7136749244, + 6877054650 + ], + "geometry": [ + { "lat": 40.7671170, "lon": -73.9535596 }, + { "lat": 40.7671714, "lon": -73.9536857 }, + { "lat": 40.7671823, "lon": -73.9537110 }, + { "lat": 40.7672172, "lon": -73.9537348 }, + { "lat": 40.7672543, "lon": -73.9537404 }, + { "lat": 40.7673612, "lon": -73.9536621 }, + { "lat": 40.7673835, "lon": -73.9536201 }, + { "lat": 40.7673856, "lon": -73.9535684 }, + { "lat": 40.7673725, "lon": -73.9535389 }, + { "lat": 40.7673167, "lon": -73.9534135 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 734364931, + "bounds": { + "minlat": 40.7069335, + "minlon": -73.9687150, + "maxlat": 40.7071603, + "maxlon": -73.9686359 + }, + "nodes": [ + 6877134698, + 10011208631, + 6877134699 + ], + "geometry": [ + { "lat": 40.7069335, "lon": -73.9687150 }, + { "lat": 40.7070018, "lon": -73.9686912 }, + { "lat": 40.7071603, "lon": -73.9686359 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 734366303, + "bounds": { + "minlat": 40.7724833, + "minlon": -73.9242242, + "maxlat": 40.7726301, + "maxlon": -73.9238992 + }, + "nodes": [ + 6877115183, + 6877115184, + 6877171085 + ], + "geometry": [ + { "lat": 40.7724833, "lon": -73.9238992 }, + { "lat": 40.7725188, "lon": -73.9239777 }, + { "lat": 40.7726301, "lon": -73.9242242 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 734373518, + "bounds": { + "minlat": 40.7838994, + "minlon": -73.9749406, + "maxlat": 40.7841919, + "maxlon": -73.9747296 + }, + "nodes": [ + 6877248400, + 10039878626, + 6877248401 + ], + "geometry": [ + { "lat": 40.7838994, "lon": -73.9749406 }, + { "lat": 40.7841363, "lon": -73.9747697 }, + { "lat": 40.7841919, "lon": -73.9747296 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 734413890, + "bounds": { + "minlat": 40.7226941, + "minlon": -73.9155504, + "maxlat": 40.7236942, + "maxlon": -73.9145215 + }, + "nodes": [ + 6877668375, + 7712061144, + 7712061145, + 7712061143, + 6877668382 + ], + "geometry": [ + { "lat": 40.7236942, "lon": -73.9155504 }, + { "lat": 40.7236237, "lon": -73.9153277 }, + { "lat": 40.7234628, "lon": -73.9150926 }, + { "lat": 40.7231933, "lon": -73.9148306 }, + { "lat": 40.7226941, "lon": -73.9145215 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 734438757, + "bounds": { + "minlat": 40.8352626, + "minlon": -73.9991831, + "maxlat": 40.8356722, + "maxlon": -73.9988134 + }, + "nodes": [ + 6877956699, + 6877956703, + 6877956700, + 6877956701, + 6877956702, + 6877956703 + ], + "geometry": [ + { "lat": 40.8352626, "lon": -73.9990399 }, + { "lat": 40.8354059, "lon": -73.9989049 }, + { "lat": 40.8355032, "lon": -73.9988134 }, + { "lat": 40.8356722, "lon": -73.9990983 }, + { "lat": 40.8355836, "lon": -73.9991831 }, + { "lat": 40.8354059, "lon": -73.9989049 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 734438758, + "bounds": { + "minlat": 40.8347795, + "minlon": -73.9981854, + "maxlat": 40.8349255, + "maxlon": -73.9980588 + }, + "nodes": [ + 6877956704, + 6877956705 + ], + "geometry": [ + { "lat": 40.8347795, "lon": -73.9981854 }, + { "lat": 40.8349255, "lon": -73.9980588 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 734461866, + "bounds": { + "minlat": 40.7512714, + "minlon": -73.9993048, + "maxlat": 40.7517346, + "maxlon": -73.9985688 + }, + "nodes": [ + 6878240302, + 11509890692, + 10173309981, + 11509890693, + 6878240303, + 11509842326, + 6878240304, + 6878240305 + ], + "geometry": [ + { "lat": 40.7512714, "lon": -73.9986004 }, + { "lat": 40.7513144, "lon": -73.9985869 }, + { "lat": 40.7513299, "lon": -73.9985822 }, + { "lat": 40.7513514, "lon": -73.9985763 }, + { "lat": 40.7513786, "lon": -73.9985688 }, + { "lat": 40.7514139, "lon": -73.9985808 }, + { "lat": 40.7514353, "lon": -73.9986123 }, + { "lat": 40.7517346, "lon": -73.9993048 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 734461867, + "bounds": { + "minlat": 40.7564116, + "minlon": -73.9963951, + "maxlat": 40.7566370, + "maxlon": -73.9962315 + }, + "nodes": [ + 6878240308, + 6878240309, + 13684712583, + 6878240310 + ], + "geometry": [ + { "lat": 40.7566370, "lon": -73.9962315 }, + { "lat": 40.7565982, "lon": -73.9962593 }, + { "lat": 40.7565830, "lon": -73.9962704 }, + { "lat": 40.7564116, "lon": -73.9963951 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 734461868, + "bounds": { + "minlat": 40.7538164, + "minlon": -73.9952465, + "maxlat": 40.7543669, + "maxlon": -73.9946458 + }, + "nodes": [ + 6878240311, + 8660596929, + 6878240314, + 6878240312, + 6878240313, + 8657749389, + 8657749387, + 8660596953, + 8657749388 + ], + "geometry": [ + { "lat": 40.7538164, "lon": -73.9952465 }, + { "lat": 40.7538811, "lon": -73.9952009 }, + { "lat": 40.7539057, "lon": -73.9951835 }, + { "lat": 40.7539100, "lon": -73.9951805 }, + { "lat": 40.7540954, "lon": -73.9950433 }, + { "lat": 40.7540977, "lon": -73.9950162 }, + { "lat": 40.7540434, "lon": -73.9948808 }, + { "lat": 40.7543106, "lon": -73.9946867 }, + { "lat": 40.7543669, "lon": -73.9946458 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 734463052, + "bounds": { + "minlat": 40.8039787, + "minlon": -73.9937041, + "maxlat": 40.8040738, + "maxlon": -73.9934005 + }, + "nodes": [ + 6878261992, + 13886816682, + 6878261993, + 6878261994 + ], + "geometry": [ + { "lat": 40.8039787, "lon": -73.9934005 }, + { "lat": 40.8040103, "lon": -73.9935062 }, + { "lat": 40.8040290, "lon": -73.9935687 }, + { "lat": 40.8040738, "lon": -73.9937041 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 734463053, + "bounds": { + "minlat": 40.8039787, + "minlon": -73.9934005, + "maxlat": 40.8040659, + "maxlon": -73.9933451 + }, + "nodes": [ + 6878261992, + 103137017, + 4205751592 + ], + "geometry": [ + { "lat": 40.8039787, "lon": -73.9934005 }, + { "lat": 40.8040279, "lon": -73.9933705 }, + { "lat": 40.8040659, "lon": -73.9933451 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 734463054, + "bounds": { + "minlat": 40.8041402, + "minlon": -73.9932982, + "maxlat": 40.8042691, + "maxlon": -73.9932167 + }, + "nodes": [ + 5481963178, + 308698267 + ], + "geometry": [ + { "lat": 40.8041402, "lon": -73.9932982 }, + { "lat": 40.8042691, "lon": -73.9932167 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "6", + "lanes:backward": "2", + "lanes:forward": "4", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|slight_left|through|through;right" + } +}, +{ + "type": "way", + "id": 734470101, + "bounds": { + "minlat": 40.8266987, + "minlon": -73.9510678, + "maxlat": 40.8269846, + "maxlon": -73.9508351 + }, + "nodes": [ + 6878336547, + 11193743258, + 6878336548 + ], + "geometry": [ + { "lat": 40.8269846, "lon": -73.9508351 }, + { "lat": 40.8267927, "lon": -73.9509913 }, + { "lat": 40.8266987, "lon": -73.9510678 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 734477242, + "bounds": { + "minlat": 40.8615912, + "minlon": -73.9598623, + "maxlat": 40.8619705, + "maxlon": -73.9593263 + }, + "nodes": [ + 6878424777, + 6878424778, + 6878424779, + 6878424780 + ], + "geometry": [ + { "lat": 40.8618120, "lon": -73.9598623 }, + { "lat": 40.8615912, "lon": -73.9594909 }, + { "lat": 40.8617519, "lon": -73.9593263 }, + { "lat": 40.8619705, "lon": -73.9596942 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 734490922, + "bounds": { + "minlat": 40.8348757, + "minlon": -74.0027266, + "maxlat": 40.8355047, + "maxlon": -74.0022717 + }, + "nodes": [ + 103173222, + 12016315322, + 6878613207, + 6878613202, + 6878613203, + 6878613204, + 6878613205, + 6878613206 + ], + "geometry": [ + { "lat": 40.8355047, "lon": -74.0027266 }, + { "lat": 40.8354523, "lon": -74.0026345 }, + { "lat": 40.8352472, "lon": -74.0022738 }, + { "lat": 40.8352460, "lon": -74.0022717 }, + { "lat": 40.8351527, "lon": -74.0023508 }, + { "lat": 40.8350522, "lon": -74.0024500 }, + { "lat": 40.8350157, "lon": -74.0024393 }, + { "lat": 40.8348757, "lon": -74.0025654 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 734490923, + "bounds": { + "minlat": 40.8352472, + "minlon": -74.0022738, + "maxlat": 40.8354252, + "maxlon": -74.0019667 + }, + "nodes": [ + 6878613207, + 6878613208, + 6878613209, + 6878613210 + ], + "geometry": [ + { "lat": 40.8352472, "lon": -74.0022738 }, + { "lat": 40.8354013, "lon": -74.0020694 }, + { "lat": 40.8353872, "lon": -74.0020041 }, + { "lat": 40.8354252, "lon": -74.0019667 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 734490924, + "bounds": { + "minlat": 40.8325140, + "minlon": -74.0028610, + "maxlat": 40.8327826, + "maxlon": -74.0023421 + }, + "nodes": [ + 6878613211, + 6878613212 + ], + "geometry": [ + { "lat": 40.8325140, "lon": -74.0023421 }, + { "lat": 40.8327826, "lon": -74.0028610 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 734521116, + "bounds": { + "minlat": 40.7386210, + "minlon": -73.9232319, + "maxlat": 40.7386867, + "maxlon": -73.9226571 + }, + "nodes": [ + 3798032438, + 3798032445 + ], + "geometry": [ + { "lat": 40.7386210, "lon": -73.9226571 }, + { "lat": 40.7386867, "lon": -73.9232319 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 734521117, + "bounds": { + "minlat": 40.7384449, + "minlon": -73.9226877, + "maxlat": 40.7384672, + "maxlon": -73.9224924 + }, + "nodes": [ + 3798032439, + 10743722449, + 6878961960 + ], + "geometry": [ + { "lat": 40.7384672, "lon": -73.9226877 }, + { "lat": 40.7384566, "lon": -73.9225948 }, + { "lat": 40.7384449, "lon": -73.9224924 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 734524286, + "bounds": { + "minlat": 40.7356567, + "minlon": -73.9367642, + "maxlat": 40.7357486, + "maxlon": -73.9367086 + }, + "nodes": [ + 1056085659, + 42866381 + ], + "geometry": [ + { "lat": 40.7356567, "lon": -73.9367086 }, + { "lat": 40.7357486, "lon": -73.9367642 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Starr Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 734531057, + "bounds": { + "minlat": 40.8300551, + "minlon": -73.9194518, + "maxlat": 40.8305966, + "maxlon": -73.9180830 + }, + "nodes": [ + 42731631, + 13018326315, + 12697054962, + 42781404, + 12697054970, + 42767100 + ], + "geometry": [ + { "lat": 40.8300551, "lon": -73.9180830 }, + { "lat": 40.8300884, "lon": -73.9181633 }, + { "lat": 40.8303697, "lon": -73.9188426 }, + { "lat": 40.8303971, "lon": -73.9189089 }, + { "lat": 40.8304252, "lon": -73.9189889 }, + { "lat": 40.8305966, "lon": -73.9194518 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "name": "East 165th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 734533005, + "bounds": { + "minlat": 40.7131079, + "minlon": -73.9131643, + "maxlat": 40.7131767, + "maxlon": -73.9131524 + }, + "nodes": [ + 6252541279, + 6252541280 + ], + "geometry": [ + { "lat": 40.7131079, "lon": -73.9131643 }, + { "lat": 40.7131767, "lon": -73.9131524 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 734561425, + "bounds": { + "minlat": 40.8353625, + "minlon": -73.9446690, + "maxlat": 40.8396107, + "maxlon": -73.9432984 + }, + "nodes": [ + 5552273903, + 8725182300, + 42427128, + 5552274521, + 8725182304, + 9935939358, + 42427126, + 9935939359, + 9935939363, + 42427122, + 9935939362, + 9935939366, + 42427115, + 9935939365, + 9935939369, + 42427112, + 42427109, + 9935939370, + 42427107, + 42427105, + 42427102, + 42427101, + 42427100, + 42427099, + 42427097, + 42427093, + 42427091, + 42427088, + 9935939381, + 42427086 + ], + "geometry": [ + { "lat": 40.8396107, "lon": -73.9432984 }, + { "lat": 40.8392625, "lon": -73.9434314 }, + { "lat": 40.8391740, "lon": -73.9434650 }, + { "lat": 40.8391098, "lon": -73.9434915 }, + { "lat": 40.8390608, "lon": -73.9435103 }, + { "lat": 40.8385461, "lon": -73.9437178 }, + { "lat": 40.8384634, "lon": -73.9437512 }, + { "lat": 40.8384238, "lon": -73.9437665 }, + { "lat": 40.8378470, "lon": -73.9439935 }, + { "lat": 40.8377866, "lon": -73.9440172 }, + { "lat": 40.8377242, "lon": -73.9440419 }, + { "lat": 40.8371490, "lon": -73.9442693 }, + { "lat": 40.8370771, "lon": -73.9442977 }, + { "lat": 40.8370213, "lon": -73.9443199 }, + { "lat": 40.8364477, "lon": -73.9445481 }, + { "lat": 40.8363811, "lon": -73.9445746 }, + { "lat": 40.8363340, "lon": -73.9446000 }, + { "lat": 40.8363236, "lon": -73.9446042 }, + { "lat": 40.8362250, "lon": -73.9446440 }, + { "lat": 40.8361370, "lon": -73.9446630 }, + { "lat": 40.8360300, "lon": -73.9446690 }, + { "lat": 40.8359200, "lon": -73.9446540 }, + { "lat": 40.8358200, "lon": -73.9446230 }, + { "lat": 40.8357150, "lon": -73.9445690 }, + { "lat": 40.8356320, "lon": -73.9445080 }, + { "lat": 40.8355420, "lon": -73.9444220 }, + { "lat": 40.8354750, "lon": -73.9443370 }, + { "lat": 40.8354235, "lon": -73.9442383 }, + { "lat": 40.8354006, "lon": -73.9441791 }, + { "lat": 40.8353625, "lon": -73.9440835 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "secondary", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 734619074, + "bounds": { + "minlat": 40.7367175, + "minlon": -73.9505795, + "maxlat": 40.7368365, + "maxlon": -73.9502067 + }, + "nodes": [ + 2473605183, + 2473603064, + 42469151 + ], + "geometry": [ + { "lat": 40.7368365, "lon": -73.9505795 }, + { "lat": 40.7367939, "lon": -73.9504444 }, + { "lat": 40.7367175, "lon": -73.9502067 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Paidge Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 734619075, + "bounds": { + "minlat": 40.7364464, + "minlon": -73.9508332, + "maxlat": 40.7366690, + "maxlon": -73.9503826 + }, + "nodes": [ + 2473605178, + 2473605179, + 2473605180, + 2473605181, + 2473605182 + ], + "geometry": [ + { "lat": 40.7365754, "lon": -73.9508332 }, + { "lat": 40.7364464, "lon": -73.9508157 }, + { "lat": 40.7364870, "lon": -73.9503826 }, + { "lat": 40.7365836, "lon": -73.9504013 }, + { "lat": 40.7366690, "lon": -73.9506763 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 734620438, + "bounds": { + "minlat": 40.7140100, + "minlon": -73.9323315, + "maxlat": 40.7141357, + "maxlon": -73.9318388 + }, + "nodes": [ + 1275778461, + 8842568841 + ], + "geometry": [ + { "lat": 40.7140100, "lon": -73.9323315 }, + { "lat": 40.7141357, "lon": -73.9318388 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 734630166, + "bounds": { + "minlat": 40.7184755, + "minlon": -73.9406535, + "maxlat": 40.7186810, + "maxlon": -73.9404954 + }, + "nodes": [ + 7722378705, + 9695771672, + 7722378702 + ], + "geometry": [ + { "lat": 40.7186810, "lon": -73.9404954 }, + { "lat": 40.7185810, "lon": -73.9405683 }, + { "lat": 40.7184755, "lon": -73.9406535 } + ], + "tags": { + "highway": "residential", + "name": "Woodpoint Road" + } +}, +{ + "type": "way", + "id": 734632829, + "bounds": { + "minlat": 40.7138171, + "minlon": -73.9211019, + "maxlat": 40.7138453, + "maxlon": -73.9206930 + }, + "nodes": [ + 5515218192, + 42809915 + ], + "geometry": [ + { "lat": 40.7138453, "lon": -73.9211019 }, + { "lat": 40.7138171, "lon": -73.9206930 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 734640621, + "bounds": { + "minlat": 40.8615543, + "minlon": -73.9247646, + "maxlat": 40.8616359, + "maxlon": -73.9247102 + }, + "nodes": [ + 1764400286, + 42432785 + ], + "geometry": [ + { "lat": 40.8616359, "lon": -73.9247646 }, + { "lat": 40.8615543, "lon": -73.9247102 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "name": "Dyckman Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "turn:lanes:backward": "left|", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 734714679, + "bounds": { + "minlat": 40.7751379, + "minlon": -73.9851381, + "maxlat": 40.7757934, + "maxlon": -73.9838950 + }, + "nodes": [ + 6880596135, + 7050687078, + 6880596136, + 7050687020, + 6880596137 + ], + "geometry": [ + { "lat": 40.7751379, "lon": -73.9851381 }, + { "lat": 40.7752180, "lon": -73.9850795 }, + { "lat": 40.7757934, "lon": -73.9846594 }, + { "lat": 40.7755452, "lon": -73.9840512 }, + { "lat": 40.7754781, "lon": -73.9838950 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 734864200, + "bounds": { + "minlat": 40.8609738, + "minlon": -73.9246251, + "maxlat": 40.8614332, + "maxlon": -73.9243436 + }, + "nodes": [ + 6882378484, + 6882396892, + 4207702054 + ], + "geometry": [ + { "lat": 40.8614332, "lon": -73.9246251 }, + { "lat": 40.8614012, "lon": -73.9246067 }, + { "lat": 40.8609738, "lon": -73.9243436 } + ], + "tags": { + "alt_name": "West 200th Street", + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "name": "Dyckman Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:alt_name_base": "W 200th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "turn:lanes:backward": "left|", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 734864201, + "bounds": { + "minlat": 40.8615543, + "minlon": -73.9247102, + "maxlat": 40.8616676, + "maxlon": -73.9244087 + }, + "nodes": [ + 42432785, + 13300249174, + 6882396885, + 1764400310 + ], + "geometry": [ + { "lat": 40.8615543, "lon": -73.9247102 }, + { "lat": 40.8615673, "lon": -73.9246762 }, + { "lat": 40.8616011, "lon": -73.9245879 }, + { "lat": 40.8616676, "lon": -73.9244087 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Nagle Avenue", + "oneway": "yes", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 734864202, + "bounds": { + "minlat": 40.8612972, + "minlon": -73.9255794, + "maxlat": 40.8616359, + "maxlon": -73.9247646 + }, + "nodes": [ + 1764400286, + 4321038136, + 1764400295, + 1764400297 + ], + "geometry": [ + { "lat": 40.8616359, "lon": -73.9247646 }, + { "lat": 40.8615727, "lon": -73.9249378 }, + { "lat": 40.8613657, "lon": -73.9254936 }, + { "lat": 40.8612972, "lon": -73.9255794 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Nagle Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 734864203, + "bounds": { + "minlat": 40.8615058, + "minlon": -73.9248490, + "maxlat": 40.8616359, + "maxlon": -73.9247646 + }, + "nodes": [ + 1764400286, + 2093008357 + ], + "geometry": [ + { "lat": 40.8616359, "lon": -73.9247646 }, + { "lat": 40.8615058, "lon": -73.9248490 } + ], + "tags": { + "highway": "secondary", + "name": "Fort George Hill", + "name:etymology:wikidata": "Q1438535", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort George Hill", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 734864204, + "bounds": { + "minlat": 40.8616676, + "minlon": -73.9244087, + "maxlat": 40.8618235, + "maxlon": -73.9241374 + }, + "nodes": [ + 1764400310, + 1764400288 + ], + "geometry": [ + { "lat": 40.8616676, "lon": -73.9244087 }, + { "lat": 40.8618235, "lon": -73.9241374 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Nagle Avenue", + "oneway": "yes", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 734864205, + "bounds": { + "minlat": 40.8615058, + "minlon": -73.9248490, + "maxlat": 40.8615543, + "maxlon": -73.9247102 + }, + "nodes": [ + 2093008357, + 42432785 + ], + "geometry": [ + { "lat": 40.8615058, "lon": -73.9248490 }, + { "lat": 40.8615543, "lon": -73.9247102 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Nagle Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 734864207, + "bounds": { + "minlat": 40.8614188, + "minlon": -73.9251086, + "maxlat": 40.8615058, + "maxlon": -73.9248490 + }, + "nodes": [ + 1764400300, + 4321038135, + 2093008357 + ], + "geometry": [ + { "lat": 40.8614188, "lon": -73.9251086 }, + { "lat": 40.8614780, "lon": -73.9249310 }, + { "lat": 40.8615058, "lon": -73.9248490 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Nagle Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 734871771, + "bounds": { + "minlat": 40.8571635, + "minlon": -73.9282354, + "maxlat": 40.8610468, + "maxlon": -73.9249627 + }, + "nodes": [ + 6882378422, + 593717769, + 6882378425, + 6882378424, + 593717766, + 6882378423, + 593717761, + 6882378426, + 593717760, + 6882378427, + 593717758, + 6882378428, + 593717755, + 593717752, + 1763748992, + 6882378429, + 42459325, + 7701213196, + 6882378430, + 4207702052, + 4207702051, + 9563795370, + 42453586 + ], + "geometry": [ + { "lat": 40.8610468, "lon": -73.9249627 }, + { "lat": 40.8608396, "lon": -73.9250232 }, + { "lat": 40.8606756, "lon": -73.9250694 }, + { "lat": 40.8605378, "lon": -73.9251209 }, + { "lat": 40.8603518, "lon": -73.9252087 }, + { "lat": 40.8601346, "lon": -73.9253422 }, + { "lat": 40.8598926, "lon": -73.9255361 }, + { "lat": 40.8596984, "lon": -73.9257161 }, + { "lat": 40.8595122, "lon": -73.9259679 }, + { "lat": 40.8591764, "lon": -73.9265641 }, + { "lat": 40.8590699, "lon": -73.9267191 }, + { "lat": 40.8589126, "lon": -73.9268556 }, + { "lat": 40.8587540, "lon": -73.9269427 }, + { "lat": 40.8583448, "lon": -73.9270769 }, + { "lat": 40.8580935, "lon": -73.9271824 }, + { "lat": 40.8578241, "lon": -73.9273870 }, + { "lat": 40.8576584, "lon": -73.9275605 }, + { "lat": 40.8576318, "lon": -73.9275991 }, + { "lat": 40.8575407, "lon": -73.9277315 }, + { "lat": 40.8574373, "lon": -73.9279240 }, + { "lat": 40.8572932, "lon": -73.9281225 }, + { "lat": 40.8572149, "lon": -73.9281906 }, + { "lat": 40.8571635, "lon": -73.9282354 } + ], + "tags": { + "highway": "secondary", + "name": "Fort George Hill", + "name:etymology:wikidata": "Q1438535", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort George Hill", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 734880198, + "bounds": { + "minlat": 40.8802115, + "minlon": -73.9105323, + "maxlat": 40.8804528, + "maxlon": -73.9103766 + }, + "nodes": [ + 1544756440, + 6882537212, + 1544756339, + 5927463177, + 42746781 + ], + "geometry": [ + { "lat": 40.8802115, "lon": -73.9103766 }, + { "lat": 40.8802526, "lon": -73.9104072 }, + { "lat": 40.8803317, "lon": -73.9104641 }, + { "lat": 40.8804085, "lon": -73.9104995 }, + { "lat": 40.8804528, "lon": -73.9105323 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "name": "West 230th Street", + "oneway": "yes", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 734880199, + "bounds": { + "minlat": 40.8804929, + "minlon": -73.9102564, + "maxlat": 40.8807022, + "maxlon": -73.9100078 + }, + "nodes": [ + 1544756314, + 10207247497, + 1544756317 + ], + "geometry": [ + { "lat": 40.8804929, "lon": -73.9102564 }, + { "lat": 40.8806576, "lon": -73.9100571 }, + { "lat": 40.8807022, "lon": -73.9100078 } + ], + "tags": { + "highway": "secondary", + "name": "Riverdale Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 735022796, + "bounds": { + "minlat": 40.7442563, + "minlon": -73.9581704, + "maxlat": 40.7446939, + "maxlon": -73.9576206 + }, + "nodes": [ + 6883849614, + 2847059559, + 2847059591, + 6883849616, + 6883869761, + 6883869768, + 6883849614 + ], + "geometry": [ + { "lat": 40.7443324, "lon": -73.9581385 }, + { "lat": 40.7442563, "lon": -73.9577527 }, + { "lat": 40.7446545, "lon": -73.9576206 }, + { "lat": 40.7446939, "lon": -73.9578092 }, + { "lat": 40.7443974, "lon": -73.9581661 }, + { "lat": 40.7443645, "lon": -73.9581704 }, + { "lat": 40.7443324, "lon": -73.9581385 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 735025403, + "bounds": { + "minlat": 40.7688891, + "minlon": -73.9645695, + "maxlat": 40.7690953, + "maxlon": -73.9644209 + }, + "nodes": [ + 6883897069, + 10171234756, + 6883897043, + 6883897051 + ], + "geometry": [ + { "lat": 40.7688891, "lon": -73.9645695 }, + { "lat": 40.7689466, "lon": -73.9645302 }, + { "lat": 40.7689622, "lon": -73.9645196 }, + { "lat": 40.7690953, "lon": -73.9644209 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 735034318, + "bounds": { + "minlat": 40.7920832, + "minlon": -73.9755293, + "maxlat": 40.7927000, + "maxlon": -73.9750829 + }, + "nodes": [ + 42431067, + 9492556536, + 9492542191, + 42431078 + ], + "geometry": [ + { "lat": 40.7920832, "lon": -73.9755293 }, + { "lat": 40.7921341, "lon": -73.9754929 }, + { "lat": 40.7926462, "lon": -73.9751230 }, + { "lat": 40.7927000, "lon": -73.9750829 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 735088056, + "bounds": { + "minlat": 40.7534130, + "minlon": -73.9277770, + "maxlat": 40.7536136, + "maxlon": -73.9272109 + }, + "nodes": [ + 6884584464, + 6884584465, + 6884584470, + 6884584466, + 6884584467, + 6884584468, + 6884584469 + ], + "geometry": [ + { "lat": 40.7536136, "lon": -73.9277770 }, + { "lat": 40.7535814, "lon": -73.9277042 }, + { "lat": 40.7535637, "lon": -73.9276645 }, + { "lat": 40.7534403, "lon": -73.9273884 }, + { "lat": 40.7534403, "lon": -73.9273387 }, + { "lat": 40.7534438, "lon": -73.9272876 }, + { "lat": 40.7534130, "lon": -73.9272109 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 735173275, + "bounds": { + "minlat": 40.8235401, + "minlon": -73.9553367, + "maxlat": 40.8236481, + "maxlon": -73.9552907 + }, + "nodes": [ + 42441950, + 10170703024, + 6885524030 + ], + "geometry": [ + { "lat": 40.8235401, "lon": -73.9553367 }, + { "lat": 40.8235872, "lon": -73.9553166 }, + { "lat": 40.8236481, "lon": -73.9552907 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "oneway": "yes", + "tiger:cfcc": "A45;A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_base_1": "Riverside", + "tiger:name_direction_suffix_1": "E", + "tiger:name_type": "Dr", + "tiger:name_type_1": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 735173276, + "bounds": { + "minlat": 40.8264089, + "minlon": -73.9526191, + "maxlat": 40.8271028, + "maxlon": -73.9520649 + }, + "nodes": [ + 42434264, + 11193743283, + 11193723034, + 42441953, + 11193723031 + ], + "geometry": [ + { "lat": 40.8271028, "lon": -73.9520649 }, + { "lat": 40.8270185, "lon": -73.9521340 }, + { "lat": 40.8265100, "lon": -73.9525325 }, + { "lat": 40.8264614, "lon": -73.9525777 }, + { "lat": 40.8264089, "lon": -73.9526191 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 735173541, + "bounds": { + "minlat": 40.8236481, + "minlon": -73.9552907, + "maxlat": 40.8253330, + "maxlon": -73.9536789 + }, + "nodes": [ + 6885524030, + 6885524029, + 6885524028, + 6885524027, + 6885524026, + 6885524025, + 12952255683, + 12952255684, + 6885524024, + 12952255685, + 6885524023, + 12952255686, + 6885524022, + 12952255687, + 11937720192, + 6885524021, + 6979088365 + ], + "geometry": [ + { "lat": 40.8236481, "lon": -73.9552907 }, + { "lat": 40.8239612, "lon": -73.9551300 }, + { "lat": 40.8241767, "lon": -73.9549929 }, + { "lat": 40.8244081, "lon": -73.9548280 }, + { "lat": 40.8245344, "lon": -73.9547344 }, + { "lat": 40.8246902, "lon": -73.9546073 }, + { "lat": 40.8248276, "lon": -73.9544883 }, + { "lat": 40.8248964, "lon": -73.9544163 }, + { "lat": 40.8249448, "lon": -73.9543605 }, + { "lat": 40.8250166, "lon": -73.9542698 }, + { "lat": 40.8250984, "lon": -73.9541525 }, + { "lat": 40.8251704, "lon": -73.9540380 }, + { "lat": 40.8252154, "lon": -73.9539559 }, + { "lat": 40.8252498, "lon": -73.9538823 }, + { "lat": 40.8252868, "lon": -73.9537770 }, + { "lat": 40.8253058, "lon": -73.9537325 }, + { "lat": 40.8253330, "lon": -73.9536789 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 735177514, + "bounds": { + "minlat": 40.8638024, + "minlon": -73.9854658, + "maxlat": 40.8643889, + "maxlon": -73.9847678 + }, + "nodes": [ + 6885572368, + 10233515888, + 6885572370, + 6885572374, + 6885572376 + ], + "geometry": [ + { "lat": 40.8638024, "lon": -73.9854658 }, + { "lat": 40.8640484, "lon": -73.9853124 }, + { "lat": 40.8641931, "lon": -73.9852096 }, + { "lat": 40.8641076, "lon": -73.9849831 }, + { "lat": 40.8643889, "lon": -73.9847678 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 735190566, + "bounds": { + "minlat": 40.7840907, + "minlon": -74.0183727, + "maxlat": 40.7845738, + "maxlon": -74.0180095 + }, + "nodes": [ + 6885754298, + 7617909994, + 6885754299, + 6885754300, + 7617909995, + 6885754301 + ], + "geometry": [ + { "lat": 40.7845738, "lon": -74.0180095 }, + { "lat": 40.7845522, "lon": -74.0180246 }, + { "lat": 40.7845359, "lon": -74.0180360 }, + { "lat": 40.7841593, "lon": -74.0183156 }, + { "lat": 40.7841312, "lon": -74.0183390 }, + { "lat": 40.7840907, "lon": -74.0183727 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 735190567, + "bounds": { + "minlat": 40.7848484, + "minlon": -74.0173456, + "maxlat": 40.7853909, + "maxlon": -74.0171651 + }, + "nodes": [ + 6885754302, + 7657468950, + 6885754303, + 6885754304, + 103862120, + 6885754305, + 6885754306, + 6885754307 + ], + "geometry": [ + { "lat": 40.7848484, "lon": -74.0173360 }, + { "lat": 40.7848760, "lon": -74.0173149 }, + { "lat": 40.7848894, "lon": -74.0173047 }, + { "lat": 40.7850761, "lon": -74.0171651 }, + { "lat": 40.7851626, "lon": -74.0172415 }, + { "lat": 40.7851993, "lon": -74.0172739 }, + { "lat": 40.7852379, "lon": -74.0173456 }, + { "lat": 40.7853909, "lon": -74.0172246 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 735190568, + "bounds": { + "minlat": 40.7854362, + "minlon": -74.0159534, + "maxlat": 40.7855843, + "maxlon": -74.0156391 + }, + "nodes": [ + 6885754308, + 7657469016, + 6885754309 + ], + "geometry": [ + { "lat": 40.7855843, "lon": -74.0159534 }, + { "lat": 40.7855513, "lon": -74.0158834 }, + { "lat": 40.7854362, "lon": -74.0156391 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735190569, + "bounds": { + "minlat": 40.7813135, + "minlon": -74.0155776, + "maxlat": 40.7818303, + "maxlon": -74.0152429 + }, + "nodes": [ + 6885754310, + 7613768278, + 6885754311, + 6885754312, + 6885754313 + ], + "geometry": [ + { "lat": 40.7818303, "lon": -74.0152429 }, + { "lat": 40.7817872, "lon": -74.0152747 }, + { "lat": 40.7816251, "lon": -74.0153946 }, + { "lat": 40.7813812, "lon": -74.0155776 }, + { "lat": 40.7813135, "lon": -74.0154205 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735240549, + "bounds": { + "minlat": 40.8496639, + "minlon": -73.9069227, + "maxlat": 40.8504660, + "maxlon": -73.9060899 + }, + "nodes": [ + 2028361263, + 9920174008, + 11492469861, + 2028327974, + 2028361245, + 2028361261 + ], + "geometry": [ + { "lat": 40.8496639, "lon": -73.9060899 }, + { "lat": 40.8497185, "lon": -73.9061432 }, + { "lat": 40.8498071, "lon": -73.9062336 }, + { "lat": 40.8501110, "lon": -73.9065401 }, + { "lat": 40.8504257, "lon": -73.9068706 }, + { "lat": 40.8504660, "lon": -73.9069227 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 735244182, + "bounds": { + "minlat": 40.7777202, + "minlon": -74.0139236, + "maxlat": 40.7779856, + "maxlon": -74.0136897 + }, + "nodes": [ + 6886303410, + 7320650769, + 6886303411, + 6886303412, + 7320650770, + 6886303413 + ], + "geometry": [ + { "lat": 40.7777202, "lon": -74.0136897 }, + { "lat": 40.7777443, "lon": -74.0137901 }, + { "lat": 40.7777677, "lon": -74.0138874 }, + { "lat": 40.7778919, "lon": -74.0139236 }, + { "lat": 40.7779352, "lon": -74.0139030 }, + { "lat": 40.7779856, "lon": -74.0138741 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735407208, + "bounds": { + "minlat": 40.7954524, + "minlon": -73.9960601, + "maxlat": 40.7960758, + "maxlon": -73.9953460 + }, + "nodes": [ + 6888029207, + 6888029199, + 6888029200, + 6888029201, + 6888029202, + 6888029203, + 6888029204, + 6888029206, + 6888029205 + ], + "geometry": [ + { "lat": 40.7954729, "lon": -73.9955970 }, + { "lat": 40.7956721, "lon": -73.9954897 }, + { "lat": 40.7959293, "lon": -73.9953460 }, + { "lat": 40.7959534, "lon": -73.9953477 }, + { "lat": 40.7960758, "lon": -73.9956751 }, + { "lat": 40.7960665, "lon": -73.9958024 }, + { "lat": 40.7956418, "lon": -73.9960025 }, + { "lat": 40.7955849, "lon": -73.9960198 }, + { "lat": 40.7954524, "lon": -73.9960601 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 735408075, + "bounds": { + "minlat": 40.8070246, + "minlon": -73.9913173, + "maxlat": 40.8071026, + "maxlon": -73.9912467 + }, + "nodes": [ + 5482328594, + 6888063811 + ], + "geometry": [ + { "lat": 40.8070246, "lon": -73.9913173 }, + { "lat": 40.8071026, "lon": -73.9912467 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735408076, + "bounds": { + "minlat": 40.8072619, + "minlon": -73.9911118, + "maxlat": 40.8073215, + "maxlon": -73.9910636 + }, + "nodes": [ + 6888063812, + 6888063813 + ], + "geometry": [ + { "lat": 40.8072619, "lon": -73.9911118 }, + { "lat": 40.8073215, "lon": -73.9910636 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735408077, + "bounds": { + "minlat": 40.8071026, + "minlon": -73.9912467, + "maxlat": 40.8072619, + "maxlon": -73.9911118 + }, + "nodes": [ + 6888063811, + 6888063812 + ], + "geometry": [ + { "lat": 40.8071026, "lon": -73.9912467 }, + { "lat": 40.8072619, "lon": -73.9911118 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 735408078, + "bounds": { + "minlat": 40.8072336, + "minlon": -73.9910047, + "maxlat": 40.8072958, + "maxlon": -73.9908669 + }, + "nodes": [ + 6888063814, + 10907806293 + ], + "geometry": [ + { "lat": 40.8072336, "lon": -73.9908669 }, + { "lat": 40.8072958, "lon": -73.9910047 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 735408079, + "bounds": { + "minlat": 40.8077685, + "minlon": -73.9915779, + "maxlat": 40.8078448, + "maxlon": -73.9915037 + }, + "nodes": [ + 6888063816, + 5482328593 + ], + "geometry": [ + { "lat": 40.8077685, "lon": -73.9915779 }, + { "lat": 40.8078448, "lon": -73.9915037 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735408080, + "bounds": { + "minlat": 40.8077075, + "minlon": -73.9916364, + "maxlat": 40.8077685, + "maxlon": -73.9915779 + }, + "nodes": [ + 6888063815, + 6888063816 + ], + "geometry": [ + { "lat": 40.8077075, "lon": -73.9916364 }, + { "lat": 40.8077685, "lon": -73.9915779 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 735408081, + "bounds": { + "minlat": 40.8070246, + "minlon": -73.9919570, + "maxlat": 40.8076185, + "maxlon": -73.9913173 + }, + "nodes": [ + 5482328597, + 5482328596, + 5482328595, + 5482328590, + 5482328588, + 5482328594 + ], + "geometry": [ + { "lat": 40.8076185, "lon": -73.9917237 }, + { "lat": 40.8073505, "lon": -73.9919570 }, + { "lat": 40.8072921, "lon": -73.9918839 }, + { "lat": 40.8071991, "lon": -73.9916869 }, + { "lat": 40.8071077, "lon": -73.9914934 }, + { "lat": 40.8070246, "lon": -73.9913173 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735408082, + "bounds": { + "minlat": 40.8078448, + "minlon": -73.9916036, + "maxlat": 40.8079077, + "maxlon": -73.9915037 + }, + "nodes": [ + 5482328593, + 5482328592 + ], + "geometry": [ + { "lat": 40.8078448, "lon": -73.9915037 }, + { "lat": 40.8079077, "lon": -73.9916036 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 735423013, + "bounds": { + "minlat": 40.8599613, + "minlon": -73.9899593, + "maxlat": 40.8603405, + "maxlon": -73.9891339 + }, + "nodes": [ + 6888187034, + 6888187035, + 6888187036, + 6888187041, + 6888187037, + 6888187038, + 6888187039, + 6888187040 + ], + "geometry": [ + { "lat": 40.8600674, "lon": -73.9891339 }, + { "lat": 40.8601623, "lon": -73.9893306 }, + { "lat": 40.8603339, "lon": -73.9896011 }, + { "lat": 40.8603405, "lon": -73.9896300 }, + { "lat": 40.8603339, "lon": -73.9896558 }, + { "lat": 40.8600550, "lon": -73.9899541 }, + { "lat": 40.8600318, "lon": -73.9899593 }, + { "lat": 40.8599613, "lon": -73.9898415 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735423692, + "bounds": { + "minlat": 40.8820503, + "minlon": -73.9806534, + "maxlat": 40.8824784, + "maxlon": -73.9802089 + }, + "nodes": [ + 6888241311, + 6888241312 + ], + "geometry": [ + { "lat": 40.8820503, "lon": -73.9806534 }, + { "lat": 40.8824784, "lon": -73.9802089 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735423693, + "bounds": { + "minlat": 40.8818154, + "minlon": -73.9806534, + "maxlat": 40.8820503, + "maxlon": -73.9802533 + }, + "nodes": [ + 6888241311, + 6888241313 + ], + "geometry": [ + { "lat": 40.8820503, "lon": -73.9806534 }, + { "lat": 40.8818154, "lon": -73.9802533 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 735423694, + "bounds": { + "minlat": 40.8818154, + "minlon": -73.9802533, + "maxlat": 40.8822558, + "maxlon": -73.9798231 + }, + "nodes": [ + 6888241314, + 6888241313 + ], + "geometry": [ + { "lat": 40.8822558, "lon": -73.9798231 }, + { "lat": 40.8818154, "lon": -73.9802533 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735423695, + "bounds": { + "minlat": 40.8815275, + "minlon": -73.9802533, + "maxlat": 40.8818154, + "maxlon": -73.9798217 + }, + "nodes": [ + 6888241313, + 6888241315, + 6888241316, + 6888241317 + ], + "geometry": [ + { "lat": 40.8818154, "lon": -73.9802533 }, + { "lat": 40.8817600, "lon": -73.9801874 }, + { "lat": 40.8817022, "lon": -73.9801511 }, + { "lat": 40.8815275, "lon": -73.9798217 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735423696, + "bounds": { + "minlat": 40.8807621, + "minlon": -73.9793367, + "maxlat": 40.8808931, + "maxlon": -73.9789765 + }, + "nodes": [ + 6888241321, + 6888241320, + 6888241319, + 13525915096, + 6888241318 + ], + "geometry": [ + { "lat": 40.8808931, "lon": -73.9793367 }, + { "lat": 40.8808436, "lon": -73.9792573 }, + { "lat": 40.8808012, "lon": -73.9791329 }, + { "lat": 40.8807865, "lon": -73.9790740 }, + { "lat": 40.8807621, "lon": -73.9789765 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 735423697, + "bounds": { + "minlat": 40.8808931, + "minlon": -73.9797589, + "maxlat": 40.8814907, + "maxlon": -73.9791278 + }, + "nodes": [ + 6888241321, + 6888241322, + 6888241323, + 6888241324, + 6888241325, + 6888241326, + 6888241327, + 6888241328, + 6888241329 + ], + "geometry": [ + { "lat": 40.8808931, "lon": -73.9793367 }, + { "lat": 40.8809631, "lon": -73.9793705 }, + { "lat": 40.8810863, "lon": -73.9795424 }, + { "lat": 40.8811972, "lon": -73.9797300 }, + { "lat": 40.8812372, "lon": -73.9797589 }, + { "lat": 40.8814598, "lon": -73.9795632 }, + { "lat": 40.8814907, "lon": -73.9795059 }, + { "lat": 40.8813255, "lon": -73.9792012 }, + { "lat": 40.8813043, "lon": -73.9791278 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735423698, + "bounds": { + "minlat": 40.8810427, + "minlon": -73.9791278, + "maxlat": 40.8813043, + "maxlon": -73.9787429 + }, + "nodes": [ + 6888241332, + 6888241331, + 6888241330, + 6888241329 + ], + "geometry": [ + { "lat": 40.8810427, "lon": -73.9787429 }, + { "lat": 40.8810818, "lon": -73.9788120 }, + { "lat": 40.8811492, "lon": -73.9788782 }, + { "lat": 40.8813043, "lon": -73.9791278 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 735431562, + "bounds": { + "minlat": 40.7865158, + "minlon": -74.0030714, + "maxlat": 40.7865851, + "maxlon": -74.0029477 + }, + "nodes": [ + 6888297177, + 6888297178 + ], + "geometry": [ + { "lat": 40.7865158, "lon": -74.0029477 }, + { "lat": 40.7865851, "lon": -74.0030714 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735431563, + "bounds": { + "minlat": 40.7865851, + "minlon": -74.0030714, + "maxlat": 40.7869860, + "maxlon": -74.0025645 + }, + "nodes": [ + 6888297178, + 6888297181, + 6888297182 + ], + "geometry": [ + { "lat": 40.7865851, "lon": -74.0030714 }, + { "lat": 40.7869860, "lon": -74.0026911 }, + { "lat": 40.7869708, "lon": -74.0025645 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735431564, + "bounds": { + "minlat": 40.7865851, + "minlon": -74.0031452, + "maxlat": 40.7871363, + "maxlon": -74.0030714 + }, + "nodes": [ + 6888297178, + 6888297183, + 6888297179, + 6888297180 + ], + "geometry": [ + { "lat": 40.7865851, "lon": -74.0030714 }, + { "lat": 40.7867227, "lon": -74.0030943 }, + { "lat": 40.7870525, "lon": -74.0031452 }, + { "lat": 40.7871363, "lon": -74.0031083 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 735431565, + "bounds": { + "minlat": 40.7877659, + "minlon": -74.0026121, + "maxlat": 40.7884320, + "maxlon": -74.0015053 + }, + "nodes": [ + 6888297184, + 6888324290, + 6888324285, + 6888324286, + 6888324287, + 6888324288, + 6888324289 + ], + "geometry": [ + { "lat": 40.7882740, "lon": -74.0015053 }, + { "lat": 40.7883646, "lon": -74.0017231 }, + { "lat": 40.7884238, "lon": -74.0018691 }, + { "lat": 40.7884320, "lon": -74.0020148 }, + { "lat": 40.7883652, "lon": -74.0021354 }, + { "lat": 40.7879607, "lon": -74.0024502 }, + { "lat": 40.7877659, "lon": -74.0026121 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 735456801, + "bounds": { + "minlat": 40.8802813, + "minlon": -73.9738114, + "maxlat": 40.8805794, + "maxlon": -73.9735062 + }, + "nodes": [ + 6888578189, + 6888578190, + 6888578191, + 6888578192, + 6888578193 + ], + "geometry": [ + { "lat": 40.8803041, "lon": -73.9738114 }, + { "lat": 40.8802813, "lon": -73.9737425 }, + { "lat": 40.8803306, "lon": -73.9736733 }, + { "lat": 40.8805024, "lon": -73.9735806 }, + { "lat": 40.8805794, "lon": -73.9735062 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 735476168, + "bounds": { + "minlat": 40.8237107, + "minlon": -73.9758671, + "maxlat": 40.8239054, + "maxlon": -73.9754783 + }, + "nodes": [ + 5688937320, + 6888732417 + ], + "geometry": [ + { "lat": 40.8237107, "lon": -73.9754783 }, + { "lat": 40.8239054, "lon": -73.9758671 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 735664735, + "bounds": { + "minlat": 40.7869260, + "minlon": -74.0098917, + "maxlat": 40.7870791, + "maxlon": -74.0095514 + }, + "nodes": [ + 6889737989, + 6889737990, + 6889737991, + 6905080093, + 7678131018, + 6889737992 + ], + "geometry": [ + { "lat": 40.7869921, "lon": -74.0098437 }, + { "lat": 40.7870195, "lon": -74.0098917 }, + { "lat": 40.7870791, "lon": -74.0098401 }, + { "lat": 40.7869793, "lon": -74.0096519 }, + { "lat": 40.7869619, "lon": -74.0096192 }, + { "lat": 40.7869260, "lon": -74.0095514 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 735665397, + "bounds": { + "minlat": 40.8778160, + "minlon": -73.9818597, + "maxlat": 40.8779447, + "maxlon": -73.9816327 + }, + "nodes": [ + 12298744486, + 6889705667 + ], + "geometry": [ + { "lat": 40.8779447, "lon": -73.9818597 }, + { "lat": 40.8778160, "lon": -73.9816327 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 735879116, + "bounds": { + "minlat": 40.7945742, + "minlon": -74.0124315, + "maxlat": 40.7949988, + "maxlon": -74.0120394 + }, + "nodes": [ + 6890653280, + 7674820854, + 6890764685, + 6890653281, + 6890653282, + 6890653283, + 6890764686, + 7674820855, + 6890653284 + ], + "geometry": [ + { "lat": 40.7949988, "lon": -74.0122904 }, + { "lat": 40.7949626, "lon": -74.0123177 }, + { "lat": 40.7949405, "lon": -74.0123343 }, + { "lat": 40.7948289, "lon": -74.0124182 }, + { "lat": 40.7947829, "lon": -74.0124315 }, + { "lat": 40.7947477, "lon": -74.0124182 }, + { "lat": 40.7946413, "lon": -74.0121858 }, + { "lat": 40.7946213, "lon": -74.0121422 }, + { "lat": 40.7945742, "lon": -74.0120394 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 735879117, + "bounds": { + "minlat": 40.7974152, + "minlon": -74.0129597, + "maxlat": 40.7975767, + "maxlon": -74.0126208 + }, + "nodes": [ + 6890764687, + 7653964068, + 6890764689, + 6890764688 + ], + "geometry": [ + { "lat": 40.7975767, "lon": -74.0129597 }, + { "lat": 40.7975516, "lon": -74.0129083 }, + { "lat": 40.7975462, "lon": -74.0128972 }, + { "lat": 40.7974152, "lon": -74.0126208 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 736011352, + "bounds": { + "minlat": 40.8530708, + "minlon": -73.9941510, + "maxlat": 40.8531209, + "maxlon": -73.9940599 + }, + "nodes": [ + 6891318601, + 6891318602 + ], + "geometry": [ + { "lat": 40.8531209, "lon": -73.9941510 }, + { "lat": 40.8530708, "lon": -73.9940599 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736011353, + "bounds": { + "minlat": 40.8524208, + "minlon": -73.9940599, + "maxlat": 40.8530708, + "maxlon": -73.9936325 + }, + "nodes": [ + 6891318602, + 6891318605, + 6891318606, + 6891318607, + 6891318608, + 6891318609 + ], + "geometry": [ + { "lat": 40.8530708, "lon": -73.9940599 }, + { "lat": 40.8530099, "lon": -73.9940317 }, + { "lat": 40.8527994, "lon": -73.9936429 }, + { "lat": 40.8527817, "lon": -73.9936325 }, + { "lat": 40.8527610, "lon": -73.9936351 }, + { "lat": 40.8524208, "lon": -73.9939680 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736011354, + "bounds": { + "minlat": 40.8532896, + "minlon": -73.9946289, + "maxlat": 40.8536091, + "maxlon": -73.9940279 + }, + "nodes": [ + 6891318610, + 6891318611 + ], + "geometry": [ + { "lat": 40.8532896, "lon": -73.9940279 }, + { "lat": 40.8536091, "lon": -73.9946289 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736152017, + "bounds": { + "minlat": 40.8778515, + "minlon": -73.9904853, + "maxlat": 40.8781120, + "maxlon": -73.9900670 + }, + "nodes": [ + 6892095102, + 6892095103, + 6892095104, + 6892095105 + ], + "geometry": [ + { "lat": 40.8780540, "lon": -73.9904853 }, + { "lat": 40.8781120, "lon": -73.9901192 }, + { "lat": 40.8779312, "lon": -73.9900670 }, + { "lat": 40.8778515, "lon": -73.9904259 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736152018, + "bounds": { + "minlat": 40.8781120, + "minlon": -73.9905810, + "maxlat": 40.8787204, + "maxlon": -73.9897612 + }, + "nodes": [ + 6892095103, + 6892095106, + 6892095107, + 6892095108, + 6892095109, + 103260470 + ], + "geometry": [ + { "lat": 40.8781120, "lon": -73.9901192 }, + { "lat": 40.8781424, "lon": -73.9900171 }, + { "lat": 40.8785592, "lon": -73.9897612 }, + { "lat": 40.8787204, "lon": -73.9902333 }, + { "lat": 40.8784505, "lon": -73.9904539 }, + { "lat": 40.8782874, "lon": -73.9905810 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736152019, + "bounds": { + "minlat": 40.8782056, + "minlon": -73.9905297, + "maxlat": 40.8784505, + "maxlon": -73.9903771 + }, + "nodes": [ + 6892095109, + 6892095110, + 6892095111 + ], + "geometry": [ + { "lat": 40.8784505, "lon": -73.9904539 }, + { "lat": 40.8783832, "lon": -73.9903771 }, + { "lat": 40.8782056, "lon": -73.9905297 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736160440, + "bounds": { + "minlat": 40.7889426, + "minlon": -74.0157600, + "maxlat": 40.7891087, + "maxlon": -74.0152781 + }, + "nodes": [ + 6892169694, + 7675458894, + 6892169697, + 6892169695, + 6892169696 + ], + "geometry": [ + { "lat": 40.7889478, "lon": -74.0152781 }, + { "lat": 40.7889724, "lon": -74.0153253 }, + { "lat": 40.7889807, "lon": -74.0153412 }, + { "lat": 40.7891087, "lon": -74.0156297 }, + { "lat": 40.7889426, "lon": -74.0157600 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 736232983, + "bounds": { + "minlat": 40.8805629, + "minlon": -73.9636725, + "maxlat": 40.8809687, + "maxlon": -73.9623919 + }, + "nodes": [ + 6892723786, + 6892723787, + 6892723794, + 6892723788, + 6892723789, + 6892723790, + 6892723791, + 6892723795, + 6892723792, + 6892723793 + ], + "geometry": [ + { "lat": 40.8806718, "lon": -73.9636725 }, + { "lat": 40.8805788, "lon": -73.9635094 }, + { "lat": 40.8805629, "lon": -73.9634302 }, + { "lat": 40.8805717, "lon": -73.9633365 }, + { "lat": 40.8807452, "lon": -73.9630692 }, + { "lat": 40.8808809, "lon": -73.9628669 }, + { "lat": 40.8809687, "lon": -73.9626573 }, + { "lat": 40.8809604, "lon": -73.9625450 }, + { "lat": 40.8809331, "lon": -73.9624938 }, + { "lat": 40.8807747, "lon": -73.9623919 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 736234558, + "bounds": { + "minlat": 40.8090458, + "minlon": -74.0162196, + "maxlat": 40.8096873, + "maxlon": -74.0157635 + }, + "nodes": [ + 6892714559, + 6892714560, + 6892714561, + 6892714562, + 6892714563 + ], + "geometry": [ + { "lat": 40.8090458, "lon": -74.0162196 }, + { "lat": 40.8091286, "lon": -74.0161243 }, + { "lat": 40.8094369, "lon": -74.0158028 }, + { "lat": 40.8094896, "lon": -74.0157635 }, + { "lat": 40.8096873, "lon": -74.0160955 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 736235296, + "bounds": { + "minlat": 40.8321203, + "minlon": -74.0055672, + "maxlat": 40.8325789, + "maxlon": -74.0047580 + }, + "nodes": [ + 6892698782, + 6892698783 + ], + "geometry": [ + { "lat": 40.8325789, "lon": -74.0055672 }, + { "lat": 40.8321203, "lon": -74.0047580 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736239715, + "bounds": { + "minlat": 40.8201017, + "minlon": -73.9423008, + "maxlat": 40.8203993, + "maxlon": -73.9420894 + }, + "nodes": [ + 6892765814, + 10171385461, + 6892765815, + 6892765816 + ], + "geometry": [ + { "lat": 40.8203993, "lon": -73.9420894 }, + { "lat": 40.8203476, "lon": -73.9421250 }, + { "lat": 40.8203106, "lon": -73.9421504 }, + { "lat": 40.8201017, "lon": -73.9423008 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 736259996, + "bounds": { + "minlat": 40.8585818, + "minlon": -73.9797223, + "maxlat": 40.8586162, + "maxlon": -73.9784606 + }, + "nodes": [ + 299121240, + 6892945744, + 7376099622, + 103148144 + ], + "geometry": [ + { "lat": 40.8586013, "lon": -73.9797223 }, + { "lat": 40.8586162, "lon": -73.9791793 }, + { "lat": 40.8585883, "lon": -73.9785954 }, + { "lat": 40.8585818, "lon": -73.9784606 } + ], + "tags": { + "highway": "residential", + "name": "Caspar Lane" + } +}, +{ + "type": "way", + "id": 736262356, + "bounds": { + "minlat": 40.8377844, + "minlon": -73.9114380, + "maxlat": 40.8378603, + "maxlon": -73.9113940 + }, + "nodes": [ + 2408359292, + 42735861 + ], + "geometry": [ + { "lat": 40.8377844, "lon": -73.9114380 }, + { "lat": 40.8378603, "lon": -73.9113940 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Morris Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 736262358, + "bounds": { + "minlat": 40.8379352, + "minlon": -73.9126729, + "maxlat": 40.8384164, + "maxlon": -73.9113493 + }, + "nodes": [ + 2408359297, + 13000992556, + 2408359298, + 2408366149, + 2327276567, + 2408359286, + 2408364032, + 5762102221, + 2327276582 + ], + "geometry": [ + { "lat": 40.8379352, "lon": -73.9113493 }, + { "lat": 40.8379875, "lon": -73.9114570 }, + { "lat": 40.8379962, "lon": -73.9114752 }, + { "lat": 40.8382427, "lon": -73.9121111 }, + { "lat": 40.8382791, "lon": -73.9122171 }, + { "lat": 40.8382989, "lon": -73.9122751 }, + { "lat": 40.8383711, "lon": -73.9125281 }, + { "lat": 40.8383896, "lon": -73.9125873 }, + { "lat": 40.8384164, "lon": -73.9126729 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 736262359, + "bounds": { + "minlat": 40.8379352, + "minlon": -73.9113493, + "maxlat": 40.8412540, + "maxlon": -73.9093940 + }, + "nodes": [ + 2408359297, + 5762102218, + 5481864213, + 42735864, + 13036453975, + 13036982527, + 42735867, + 13036982515, + 42735870 + ], + "geometry": [ + { "lat": 40.8379352, "lon": -73.9113493 }, + { "lat": 40.8380027, "lon": -73.9113114 }, + { "lat": 40.8389236, "lon": -73.9107669 }, + { "lat": 40.8389980, "lon": -73.9107240 }, + { "lat": 40.8390770, "lon": -73.9106825 }, + { "lat": 40.8401330, "lon": -73.9101270 }, + { "lat": 40.8401970, "lon": -73.9100940 }, + { "lat": 40.8402822, "lon": -73.9100376 }, + { "lat": 40.8412540, "lon": -73.9093940 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Morris Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 736262360, + "bounds": { + "minlat": 40.8376193, + "minlon": -73.9113940, + "maxlat": 40.8378603, + "maxlon": -73.9108771 + }, + "nodes": [ + 42735861, + 13000975548, + 2408359285 + ], + "geometry": [ + { "lat": 40.8378603, "lon": -73.9113940 }, + { "lat": 40.8378174, "lon": -73.9113007 }, + { "lat": 40.8376193, "lon": -73.9108771 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 736262361, + "bounds": { + "minlat": 40.8378603, + "minlon": -73.9113940, + "maxlat": 40.8379352, + "maxlon": -73.9113493 + }, + "nodes": [ + 42735861, + 2408359297 + ], + "geometry": [ + { "lat": 40.8378603, "lon": -73.9113940 }, + { "lat": 40.8379352, "lon": -73.9113493 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Morris Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 736265293, + "bounds": { + "minlat": 40.8413114, + "minlon": -73.9967880, + "maxlat": 40.8414153, + "maxlon": -73.9963895 + }, + "nodes": [ + 6892934880, + 6892992389, + 6892934881, + 6892934882 + ], + "geometry": [ + { "lat": 40.8414153, "lon": -73.9967880 }, + { "lat": 40.8413512, "lon": -73.9965832 }, + { "lat": 40.8413264, "lon": -73.9964610 }, + { "lat": 40.8413114, "lon": -73.9963895 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736265294, + "bounds": { + "minlat": 40.8413264, + "minlon": -73.9965515, + "maxlat": 40.8415535, + "maxlon": -73.9964610 + }, + "nodes": [ + 11444863313, + 6892992388, + 6892934881 + ], + "geometry": [ + { "lat": 40.8415535, "lon": -73.9965515 }, + { "lat": 40.8414762, "lon": -73.9964641 }, + { "lat": 40.8413264, "lon": -73.9964610 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736265295, + "bounds": { + "minlat": 40.8413164, + "minlon": -73.9963114, + "maxlat": 40.8415334, + "maxlon": -73.9961700 + }, + "nodes": [ + 6892934883, + 6892934884, + 6892992385 + ], + "geometry": [ + { "lat": 40.8413164, "lon": -73.9963114 }, + { "lat": 40.8413399, "lon": -73.9961915 }, + { "lat": 40.8415334, "lon": -73.9961700 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736265296, + "bounds": { + "minlat": 40.8413114, + "minlon": -73.9963895, + "maxlat": 40.8413164, + "maxlon": -73.9963114 + }, + "nodes": [ + 6892934882, + 6892934883 + ], + "geometry": [ + { "lat": 40.8413114, "lon": -73.9963895 }, + { "lat": 40.8413164, "lon": -73.9963114 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736265297, + "bounds": { + "minlat": 40.8415334, + "minlon": -73.9961755, + "maxlat": 40.8416367, + "maxlon": -73.9961700 + }, + "nodes": [ + 6892992385, + 11444863345 + ], + "geometry": [ + { "lat": 40.8415334, "lon": -73.9961700 }, + { "lat": 40.8416367, "lon": -73.9961755 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736267762, + "bounds": { + "minlat": 40.7721904, + "minlon": -74.0125449, + "maxlat": 40.7728253, + "maxlon": -74.0115179 + }, + "nodes": [ + 3611168124, + 7010805851, + 7010805847, + 7010805846, + 6892997304, + 6892997305, + 6892997306, + 7010805845, + 7010805848, + 7010805849, + 7010805850, + 7010805852, + 2404083432 + ], + "geometry": [ + { "lat": 40.7721904, "lon": -74.0125449 }, + { "lat": 40.7722693, "lon": -74.0124646 }, + { "lat": 40.7723665, "lon": -74.0123243 }, + { "lat": 40.7724850, "lon": -74.0121854 }, + { "lat": 40.7725903, "lon": -74.0122346 }, + { "lat": 40.7726779, "lon": -74.0121713 }, + { "lat": 40.7727864, "lon": -74.0120673 }, + { "lat": 40.7728253, "lon": -74.0120013 }, + { "lat": 40.7727865, "lon": -74.0117651 }, + { "lat": 40.7727656, "lon": -74.0116553 }, + { "lat": 40.7727131, "lon": -74.0115970 }, + { "lat": 40.7726786, "lon": -74.0115731 }, + { "lat": 40.7725988, "lon": -74.0115179 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736289516, + "bounds": { + "minlat": 40.8253217, + "minlon": -73.9099066, + "maxlat": 40.8258542, + "maxlon": -73.9082017 + }, + "nodes": [ + 42730080, + 8184243025, + 12038478828, + 42742384 + ], + "geometry": [ + { "lat": 40.8258542, "lon": -73.9099066 }, + { "lat": 40.8258253, "lon": -73.9098243 }, + { "lat": 40.8253406, "lon": -73.9083321 }, + { "lat": 40.8253217, "lon": -73.9082017 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "East 164th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "164th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 736297372, + "bounds": { + "minlat": 40.8060630, + "minlon": -73.9468445, + "maxlat": 40.8071315, + "maxlon": -73.9460569 + }, + "nodes": [ + 3099326118, + 10170875057, + 10170875066, + 3099326119, + 10170875068, + 4207724575 + ], + "geometry": [ + { "lat": 40.8071315, "lon": -73.9460569 }, + { "lat": 40.8070792, "lon": -73.9460961 }, + { "lat": 40.8065811, "lon": -73.9464701 }, + { "lat": 40.8065066, "lon": -73.9465260 }, + { "lat": 40.8064514, "lon": -73.9465657 }, + { "lat": 40.8060630, "lon": -73.9468445 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 736297373, + "bounds": { + "minlat": 40.8070675, + "minlon": -73.9459054, + "maxlat": 40.8074052, + "maxlon": -73.9456603 + }, + "nodes": [ + 42453241, + 10170875055, + 4212658373 + ], + "geometry": [ + { "lat": 40.8070675, "lon": -73.9459054 }, + { "lat": 40.8071396, "lon": -73.9458531 }, + { "lat": 40.8074052, "lon": -73.9456603 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 736421923, + "bounds": { + "minlat": 40.8482924, + "minlon": -73.9699995, + "maxlat": 40.8484875, + "maxlon": -73.9696056 + }, + "nodes": [ + 6894763522, + 6894763523, + 6894763524, + 6894763525 + ], + "geometry": [ + { "lat": 40.8482924, "lon": -73.9696056 }, + { "lat": 40.8484074, "lon": -73.9699876 }, + { "lat": 40.8484356, "lon": -73.9699995 }, + { "lat": 40.8484875, "lon": -73.9699760 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736432569, + "bounds": { + "minlat": 40.8153311, + "minlon": -73.9904160, + "maxlat": 40.8156074, + "maxlon": -73.9902640 + }, + "nodes": [ + 6894870361, + 6894870363 + ], + "geometry": [ + { "lat": 40.8153311, "lon": -73.9904160 }, + { "lat": 40.8156074, "lon": -73.9902640 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 736432570, + "bounds": { + "minlat": 40.8156074, + "minlon": -73.9902640, + "maxlat": 40.8156592, + "maxlon": -73.9902336 + }, + "nodes": [ + 6894870363, + 6894870362 + ], + "geometry": [ + { "lat": 40.8156074, "lon": -73.9902640 }, + { "lat": 40.8156592, "lon": -73.9902336 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 736437087, + "bounds": { + "minlat": 40.8527042, + "minlon": -73.9686968, + "maxlat": 40.8529950, + "maxlon": -73.9685145 + }, + "nodes": [ + 6894909018, + 6894909020, + 6894909019 + ], + "geometry": [ + { "lat": 40.8527042, "lon": -73.9686968 }, + { "lat": 40.8527937, "lon": -73.9686407 }, + { "lat": 40.8529950, "lon": -73.9685145 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 736437088, + "bounds": { + "minlat": 40.8526127, + "minlon": -73.9686968, + "maxlat": 40.8527042, + "maxlon": -73.9684136 + }, + "nodes": [ + 6894909018, + 5179132367 + ], + "geometry": [ + { "lat": 40.8527042, "lon": -73.9686968 }, + { "lat": 40.8526127, "lon": -73.9684136 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxheight:signed": "no", + "name": "Central Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 736437089, + "bounds": { + "minlat": 40.8523972, + "minlon": -73.9684136, + "maxlat": 40.8526127, + "maxlon": -73.9675061 + }, + "nodes": [ + 5179132367, + 298810341 + ], + "geometry": [ + { "lat": 40.8526127, "lon": -73.9684136 }, + { "lat": 40.8523972, "lon": -73.9675061 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxheight:signed": "no", + "name": "Central Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 736437090, + "bounds": { + "minlat": 40.8527039, + "minlon": -73.9691147, + "maxlat": 40.8528155, + "maxlon": -73.9690465 + }, + "nodes": [ + 5179132364, + 6902027601 + ], + "geometry": [ + { "lat": 40.8528155, "lon": -73.9690465 }, + { "lat": 40.8527039, "lon": -73.9691147 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 736442022, + "bounds": { + "minlat": 40.7838816, + "minlon": -74.0107843, + "maxlat": 40.7839549, + "maxlon": -74.0106872 + }, + "nodes": [ + 6894944688, + 7468537463, + 6894944689 + ], + "geometry": [ + { "lat": 40.7839549, "lon": -74.0107843 }, + { "lat": 40.7839061, "lon": -74.0106951 }, + { "lat": 40.7838816, "lon": -74.0106872 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 736442023, + "bounds": { + "minlat": 40.7837817, + "minlon": -74.0106872, + "maxlat": 40.7838816, + "maxlon": -74.0105207 + }, + "nodes": [ + 6894944689, + 6894944701, + 6894944702 + ], + "geometry": [ + { "lat": 40.7838816, "lon": -74.0106872 }, + { "lat": 40.7838656, "lon": -74.0106635 }, + { "lat": 40.7837817, "lon": -74.0105207 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 736442024, + "bounds": { + "minlat": 40.7838734, + "minlon": -74.0106951, + "maxlat": 40.7844492, + "maxlon": -74.0101279 + }, + "nodes": [ + 7468537463, + 6894944690, + 6894944691, + 6894944692, + 6894944693, + 6894944694, + 6894944695, + 6894944696, + 6894944697, + 6894944698, + 6894944699, + 7468537462, + 6894944700 + ], + "geometry": [ + { "lat": 40.7839061, "lon": -74.0106951 }, + { "lat": 40.7839032, "lon": -74.0106264 }, + { "lat": 40.7838746, "lon": -74.0105628 }, + { "lat": 40.7838734, "lon": -74.0105431 }, + { "lat": 40.7838803, "lon": -74.0105272 }, + { "lat": 40.7842983, "lon": -74.0101341 }, + { "lat": 40.7843105, "lon": -74.0101279 }, + { "lat": 40.7843207, "lon": -74.0101279 }, + { "lat": 40.7843343, "lon": -74.0101330 }, + { "lat": 40.7843474, "lon": -74.0101397 }, + { "lat": 40.7843576, "lon": -74.0101542 }, + { "lat": 40.7843948, "lon": -74.0102193 }, + { "lat": 40.7844492, "lon": -74.0103147 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736442025, + "bounds": { + "minlat": 40.7831756, + "minlon": -74.0114478, + "maxlat": 40.7837863, + "maxlon": -74.0107451 + }, + "nodes": [ + 6894944703, + 7468537465, + 6894944704, + 6894944705, + 6894944706, + 6894944707, + 6894944708, + 6894944709, + 6894944710, + 6894944711, + 6894944712, + 6894944713, + 7468537464, + 6894944714 + ], + "geometry": [ + { "lat": 40.7832652, "lon": -74.0114478 }, + { "lat": 40.7832219, "lon": -74.0113611 }, + { "lat": 40.7832115, "lon": -74.0113402 }, + { "lat": 40.7831842, "lon": -74.0112807 }, + { "lat": 40.7831756, "lon": -74.0112454 }, + { "lat": 40.7831789, "lon": -74.0112178 }, + { "lat": 40.7831885, "lon": -74.0111965 }, + { "lat": 40.7836621, "lon": -74.0107465 }, + { "lat": 40.7836734, "lon": -74.0107451 }, + { "lat": 40.7836814, "lon": -74.0107465 }, + { "lat": 40.7836911, "lon": -74.0107543 }, + { "lat": 40.7837007, "lon": -74.0107663 }, + { "lat": 40.7837422, "lon": -74.0108546 }, + { "lat": 40.7837863, "lon": -74.0109482 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736442026, + "bounds": { + "minlat": 40.7854322, + "minlon": -74.0072618, + "maxlat": 40.7857105, + "maxlon": -74.0068220 + }, + "nodes": [ + 6894944715, + 7468537480, + 6894944716, + 6894944717, + 6894944718, + 10277288820, + 6894944719, + 6894944720, + 6894944721, + 6894944725, + 6894944722, + 6894944723, + 7468537479, + 6894944724 + ], + "geometry": [ + { "lat": 40.7857105, "lon": -74.0072050 }, + { "lat": 40.7856202, "lon": -74.0072402 }, + { "lat": 40.7855590, "lon": -74.0072582 }, + { "lat": 40.7855257, "lon": -74.0072618 }, + { "lat": 40.7854880, "lon": -74.0072598 }, + { "lat": 40.7854713, "lon": -74.0072541 }, + { "lat": 40.7854603, "lon": -74.0072503 }, + { "lat": 40.7854436, "lon": -74.0072336 }, + { "lat": 40.7854357, "lon": -74.0072073 }, + { "lat": 40.7854322, "lon": -74.0071771 }, + { "lat": 40.7854349, "lon": -74.0071425 }, + { "lat": 40.7854563, "lon": -74.0070414 }, + { "lat": 40.7854888, "lon": -74.0069423 }, + { "lat": 40.7855407, "lon": -74.0068220 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736443956, + "bounds": { + "minlat": 40.7993396, + "minlon": -73.9966526, + "maxlat": 40.7996201, + "maxlon": -73.9964782 + }, + "nodes": [ + 13158817605, + 6894952175, + 13158817604, + 13158817602, + 13158817603 + ], + "geometry": [ + { "lat": 40.7996201, "lon": -73.9966526 }, + { "lat": 40.7995889, "lon": -73.9965533 }, + { "lat": 40.7995815, "lon": -73.9965330 }, + { "lat": 40.7995533, "lon": -73.9964782 }, + { "lat": 40.7993396, "lon": -73.9964934 } + ], + "tags": { + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 736446398, + "bounds": { + "minlat": 40.7275338, + "minlon": -73.9602428, + "maxlat": 40.7281928, + "maxlon": -73.9601474 + }, + "nodes": [ + 6894978284, + 6895004585, + 11924946003 + ], + "geometry": [ + { "lat": 40.7281928, "lon": -73.9602428 }, + { "lat": 40.7280492, "lon": -73.9602219 }, + { "lat": 40.7275338, "lon": -73.9601474 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736446399, + "bounds": { + "minlat": 40.7276356, + "minlon": -73.9592237, + "maxlat": 40.7282933, + "maxlon": -73.9591245 + }, + "nodes": [ + 6895004591, + 11924946001 + ], + "geometry": [ + { "lat": 40.7282933, "lon": -73.9592237 }, + { "lat": 40.7276356, "lon": -73.9591245 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736446541, + "bounds": { + "minlat": 40.8603310, + "minlon": -73.9738505, + "maxlat": 40.8614367, + "maxlon": -73.9730505 + }, + "nodes": [ + 6895002509, + 6895002510, + 7387138112, + 6895002511, + 6895002512, + 6895002513, + 6895002514, + 6895002515, + 6895002516, + 6895002517, + 6895002518, + 103184379 + ], + "geometry": [ + { "lat": 40.8609546, "lon": -73.9730505 }, + { "lat": 40.8610093, "lon": -73.9730704 }, + { "lat": 40.8610714, "lon": -73.9730909 }, + { "lat": 40.8611306, "lon": -73.9731019 }, + { "lat": 40.8614367, "lon": -73.9735667 }, + { "lat": 40.8609820, "lon": -73.9737036 }, + { "lat": 40.8608709, "lon": -73.9737069 }, + { "lat": 40.8607940, "lon": -73.9736985 }, + { "lat": 40.8605826, "lon": -73.9738505 }, + { "lat": 40.8605197, "lon": -73.9738396 }, + { "lat": 40.8604562, "lon": -73.9738220 }, + { "lat": 40.8603310, "lon": -73.9736900 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 736446542, + "bounds": { + "minlat": 40.8603310, + "minlon": -73.9736900, + "maxlat": 40.8605262, + "maxlon": -73.9734861 + }, + "nodes": [ + 103184379, + 8386447807 + ], + "geometry": [ + { "lat": 40.8603310, "lon": -73.9736900 }, + { "lat": 40.8605262, "lon": -73.9734861 } + ], + "tags": { + "highway": "residential", + "name": "Ellery Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ellery", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 736446543, + "bounds": { + "minlat": 40.8603633, + "minlon": -73.9722142, + "maxlat": 40.8604619, + "maxlon": -73.9720434 + }, + "nodes": [ + 6895002519, + 6895002527, + 6895002521 + ], + "geometry": [ + { "lat": 40.8604619, "lon": -73.9722142 }, + { "lat": 40.8604198, "lon": -73.9721412 }, + { "lat": 40.8603633, "lon": -73.9720434 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 736446544, + "bounds": { + "minlat": 40.8603282, + "minlon": -73.9720434, + "maxlat": 40.8604914, + "maxlon": -73.9716361 + }, + "nodes": [ + 6895002521, + 6895002522, + 6895002523 + ], + "geometry": [ + { "lat": 40.8603633, "lon": -73.9720434 }, + { "lat": 40.8604914, "lon": -73.9719099 }, + { "lat": 40.8603282, "lon": -73.9716361 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 736446545, + "bounds": { + "minlat": 40.8598510, + "minlon": -73.9718456, + "maxlat": 40.8601977, + "maxlon": -73.9714030 + }, + "nodes": [ + 6895002524, + 6895002525, + 13525924940, + 6895002526 + ], + "geometry": [ + { "lat": 40.8601977, "lon": -73.9717564 }, + { "lat": 40.8601097, "lon": -73.9718456 }, + { "lat": 40.8598976, "lon": -73.9714826 }, + { "lat": 40.8598510, "lon": -73.9714030 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 736446546, + "bounds": { + "minlat": 40.8599139, + "minlon": -73.9717564, + "maxlat": 40.8601977, + "maxlon": -73.9712620 + }, + "nodes": [ + 6895002520, + 13525924941, + 6895002524 + ], + "geometry": [ + { "lat": 40.8599139, "lon": -73.9712620 }, + { "lat": 40.8599778, "lon": -73.9713732 }, + { "lat": 40.8601977, "lon": -73.9717564 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 736446548, + "bounds": { + "minlat": 40.8599139, + "minlon": -73.9712620, + "maxlat": 40.8600068, + "maxlon": -73.9711229 + }, + "nodes": [ + 6895002520, + 76463558 + ], + "geometry": [ + { "lat": 40.8599139, "lon": -73.9712620 }, + { "lat": 40.8600068, "lon": -73.9711229 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "ref": "US 9W", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 736446549, + "bounds": { + "minlat": 40.8601977, + "minlon": -73.9720434, + "maxlat": 40.8603633, + "maxlon": -73.9717564 + }, + "nodes": [ + 6895002521, + 6895002524 + ], + "geometry": [ + { "lat": 40.8603633, "lon": -73.9720434 }, + { "lat": 40.8601977, "lon": -73.9717564 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 736450061, + "bounds": { + "minlat": 40.8531975, + "minlon": -73.9749014, + "maxlat": 40.8532945, + "maxlon": -73.9747164 + }, + "nodes": [ + 6895010041, + 6895010042 + ], + "geometry": [ + { "lat": 40.8532945, "lon": -73.9749014 }, + { "lat": 40.8531975, "lon": -73.9747164 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736450062, + "bounds": { + "minlat": 40.8535470, + "minlon": -73.9750963, + "maxlat": 40.8537579, + "maxlon": -73.9748777 + }, + "nodes": [ + 6895010043, + 6895010044 + ], + "geometry": [ + { "lat": 40.8535470, "lon": -73.9750963 }, + { "lat": 40.8537579, "lon": -73.9748777 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736450063, + "bounds": { + "minlat": 40.8534777, + "minlon": -73.9714425, + "maxlat": 40.8538185, + "maxlon": -73.9712397 + }, + "nodes": [ + 6895010045, + 6895010057, + 6895010046, + 6895010047, + 6895010048, + 6895010049, + 6895010050, + 6895010051, + 6895010052, + 6895010053, + 6895010054, + 6895010055 + ], + "geometry": [ + { "lat": 40.8538185, "lon": -73.9712397 }, + { "lat": 40.8538155, "lon": -73.9712708 }, + { "lat": 40.8538064, "lon": -73.9713296 }, + { "lat": 40.8537920, "lon": -73.9713722 }, + { "lat": 40.8537624, "lon": -73.9714112 }, + { "lat": 40.8537052, "lon": -73.9714338 }, + { "lat": 40.8536540, "lon": -73.9714425 }, + { "lat": 40.8536159, "lon": -73.9714390 }, + { "lat": 40.8535804, "lon": -73.9714269 }, + { "lat": 40.8535463, "lon": -73.9714104 }, + { "lat": 40.8535134, "lon": -73.9713817 }, + { "lat": 40.8534777, "lon": -73.9713053 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736450064, + "bounds": { + "minlat": 40.8538155, + "minlon": -73.9717354, + "maxlat": 40.8541177, + "maxlon": -73.9712708 + }, + "nodes": [ + 6895010056, + 6895010057 + ], + "geometry": [ + { "lat": 40.8541177, "lon": -73.9717354 }, + { "lat": 40.8538155, "lon": -73.9712708 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736451096, + "bounds": { + "minlat": 40.7886804, + "minlon": -74.0024334, + "maxlat": 40.7888672, + "maxlon": -74.0020045 + }, + "nodes": [ + 6895035608, + 7468537710, + 6895035609 + ], + "geometry": [ + { "lat": 40.7888672, "lon": -74.0024334 }, + { "lat": 40.7888175, "lon": -74.0023193 }, + { "lat": 40.7886804, "lon": -74.0020045 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736451097, + "bounds": { + "minlat": 40.7891694, + "minlon": -74.0024613, + "maxlat": 40.7894634, + "maxlon": -74.0022081 + }, + "nodes": [ + 6895035610, + 7468537709, + 6895035611, + 6895035612, + 6895035613 + ], + "geometry": [ + { "lat": 40.7891694, "lon": -74.0022081 }, + { "lat": 40.7892267, "lon": -74.0023168 }, + { "lat": 40.7893028, "lon": -74.0024613 }, + { "lat": 40.7894232, "lon": -74.0023786 }, + { "lat": 40.7894634, "lon": -74.0024465 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736458065, + "bounds": { + "minlat": 40.8310572, + "minlon": -73.9797480, + "maxlat": 40.8312186, + "maxlon": -73.9794684 + }, + "nodes": [ + 6895111580, + 6895111581, + 6964853586, + 6895111582 + ], + "geometry": [ + { "lat": 40.8312186, "lon": -73.9797480 }, + { "lat": 40.8310572, "lon": -73.9797291 }, + { "lat": 40.8310729, "lon": -73.9795314 }, + { "lat": 40.8310900, "lon": -73.9794684 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 736458066, + "bounds": { + "minlat": 40.8306986, + "minlon": -73.9801061, + "maxlat": 40.8310572, + "maxlon": -73.9797291 + }, + "nodes": [ + 6895111581, + 6895111583 + ], + "geometry": [ + { "lat": 40.8310572, "lon": -73.9797291 }, + { "lat": 40.8306986, "lon": -73.9801061 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 736458067, + "bounds": { + "minlat": 40.8308558, + "minlon": -73.9830447, + "maxlat": 40.8309373, + "maxlon": -73.9826326 + }, + "nodes": [ + 6895111584, + 6895127585 + ], + "geometry": [ + { "lat": 40.8308558, "lon": -73.9826326 }, + { "lat": 40.8309373, "lon": -73.9830447 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736458068, + "bounds": { + "minlat": 40.8301639, + "minlon": -73.9793080, + "maxlat": 40.8306172, + "maxlon": -73.9785461 + }, + "nodes": [ + 6895127586, + 6895127587, + 6895127588, + 6895127589, + 6895127590, + 11726537991 + ], + "geometry": [ + { "lat": 40.8306172, "lon": -73.9785461 }, + { "lat": 40.8305454, "lon": -73.9786482 }, + { "lat": 40.8305505, "lon": -73.9788836 }, + { "lat": 40.8304393, "lon": -73.9790740 }, + { "lat": 40.8303024, "lon": -73.9792427 }, + { "lat": 40.8301639, "lon": -73.9793080 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 736458069, + "bounds": { + "minlat": 40.8308811, + "minlon": -73.9826181, + "maxlat": 40.8310764, + "maxlon": -73.9823069 + }, + "nodes": [ + 6895127596, + 6895127597, + 6895127598, + 6895127599 + ], + "geometry": [ + { "lat": 40.8310764, "lon": -73.9823069 }, + { "lat": 40.8309160, "lon": -73.9824591 }, + { "lat": 40.8308811, "lon": -73.9825283 }, + { "lat": 40.8309000, "lon": -73.9826181 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 736464166, + "bounds": { + "minlat": 40.7657497, + "minlon": -73.9923676, + "maxlat": 40.7663953, + "maxlon": -73.9919226 + }, + "nodes": [ + 6895152829, + 9140940662, + 10085669005, + 6895152832, + 6895152831, + 10090614593, + 6895152830 + ], + "geometry": [ + { "lat": 40.7663953, "lon": -73.9919226 }, + { "lat": 40.7663513, "lon": -73.9919543 }, + { "lat": 40.7663280, "lon": -73.9919712 }, + { "lat": 40.7663117, "lon": -73.9919829 }, + { "lat": 40.7658269, "lon": -73.9923109 }, + { "lat": 40.7658123, "lon": -73.9923216 }, + { "lat": 40.7657497, "lon": -73.9923676 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 736470631, + "bounds": { + "minlat": 40.8353022, + "minlon": -73.9413241, + "maxlat": 40.8357552, + "maxlon": -73.9409459 + }, + "nodes": [ + 6895256408, + 9680498873, + 6895256409, + 6895256410, + 6895256411, + 6895256412, + 6895256413 + ], + "geometry": [ + { "lat": 40.8357552, "lon": -73.9411412 }, + { "lat": 40.8357047, "lon": -73.9411815 }, + { "lat": 40.8356833, "lon": -73.9411985 }, + { "lat": 40.8354986, "lon": -73.9413202 }, + { "lat": 40.8354450, "lon": -73.9413241 }, + { "lat": 40.8353849, "lon": -73.9411439 }, + { "lat": 40.8353022, "lon": -73.9409459 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 736495202, + "bounds": { + "minlat": 40.8646971, + "minlon": -73.9720658, + "maxlat": 40.8654524, + "maxlon": -73.9719819 + }, + "nodes": [ + 6895517072, + 7376909215, + 6895517073 + ], + "geometry": [ + { "lat": 40.8654524, "lon": -73.9719819 }, + { "lat": 40.8652840, "lon": -73.9720006 }, + { "lat": 40.8646971, "lon": -73.9720658 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 736495203, + "bounds": { + "minlat": 40.8644039, + "minlon": -73.9737046, + "maxlat": 40.8649047, + "maxlon": -73.9736113 + }, + "nodes": [ + 6895517074, + 6895517075, + 6895517076, + 12670658581, + 6895517077, + 12670658582, + 6895517078 + ], + "geometry": [ + { "lat": 40.8644039, "lon": -73.9737046 }, + { "lat": 40.8645294, "lon": -73.9736411 }, + { "lat": 40.8645860, "lon": -73.9736143 }, + { "lat": 40.8646087, "lon": -73.9736120 }, + { "lat": 40.8646323, "lon": -73.9736113 }, + { "lat": 40.8648694, "lon": -73.9736516 }, + { "lat": 40.8649047, "lon": -73.9736462 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736495204, + "bounds": { + "minlat": 40.8649869, + "minlon": -73.9736804, + "maxlat": 40.8669060, + "maxlon": -73.9731674 + }, + "nodes": [ + 6895517079, + 10942953960, + 10942953952, + 7373684778, + 10942953979, + 10942953977, + 10942953989, + 6895517080, + 6895517081, + 10942953962, + 10942953948, + 10942953957, + 6895517082, + 6895517083, + 298917891 + ], + "geometry": [ + { "lat": 40.8649869, "lon": -73.9736209 }, + { "lat": 40.8653013, "lon": -73.9735252 }, + { "lat": 40.8654021, "lon": -73.9734920 }, + { "lat": 40.8657758, "lon": -73.9733653 }, + { "lat": 40.8658726, "lon": -73.9733345 }, + { "lat": 40.8659790, "lon": -73.9733026 }, + { "lat": 40.8660774, "lon": -73.9732747 }, + { "lat": 40.8661705, "lon": -73.9732486 }, + { "lat": 40.8665211, "lon": -73.9731700 }, + { "lat": 40.8665355, "lon": -73.9731674 }, + { "lat": 40.8665504, "lon": -73.9731683 }, + { "lat": 40.8665689, "lon": -73.9731757 }, + { "lat": 40.8665846, "lon": -73.9731890 }, + { "lat": 40.8665967, "lon": -73.9732055 }, + { "lat": 40.8669060, "lon": -73.9736804 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736495205, + "bounds": { + "minlat": 40.8649047, + "minlon": -73.9736462, + "maxlat": 40.8649869, + "maxlon": -73.9736209 + }, + "nodes": [ + 6895517078, + 6895517079 + ], + "geometry": [ + { "lat": 40.8649047, "lon": -73.9736462 }, + { "lat": 40.8649869, "lon": -73.9736209 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 736500686, + "bounds": { + "minlat": 40.8166171, + "minlon": -73.9821717, + "maxlat": 40.8167038, + "maxlon": -73.9820929 + }, + "nodes": [ + 6895570653, + 6895570654 + ], + "geometry": [ + { "lat": 40.8167038, "lon": -73.9820929 }, + { "lat": 40.8166171, "lon": -73.9821717 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 736500687, + "bounds": { + "minlat": 40.8161808, + "minlon": -73.9822014, + "maxlat": 40.8166171, + "maxlon": -73.9814852 + }, + "nodes": [ + 6895570654, + 5753156001, + 5753156002, + 6895570655, + 5753156003, + 5753156004, + 5753156005 + ], + "geometry": [ + { "lat": 40.8166171, "lon": -73.9821717 }, + { "lat": 40.8165845, "lon": -73.9822014 }, + { "lat": 40.8164477, "lon": -73.9821765 }, + { "lat": 40.8164275, "lon": -73.9821377 }, + { "lat": 40.8163062, "lon": -73.9819044 }, + { "lat": 40.8163204, "lon": -73.9817361 }, + { "lat": 40.8161808, "lon": -73.9814852 } + ], + "tags": { + "highway": "service", + "layer": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 736500688, + "bounds": { + "minlat": 40.8162771, + "minlon": -73.9822801, + "maxlat": 40.8164275, + "maxlon": -73.9821377 + }, + "nodes": [ + 6895570655, + 6895570657, + 6895570656 + ], + "geometry": [ + { "lat": 40.8164275, "lon": -73.9821377 }, + { "lat": 40.8163493, "lon": -73.9822118 }, + { "lat": 40.8162771, "lon": -73.9822801 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736500689, + "bounds": { + "minlat": 40.8161629, + "minlon": -73.9822118, + "maxlat": 40.8163493, + "maxlon": -73.9820346 + }, + "nodes": [ + 6895570657, + 6895570658, + 6895570659 + ], + "geometry": [ + { "lat": 40.8163493, "lon": -73.9822118 }, + { "lat": 40.8162476, "lon": -73.9820346 }, + { "lat": 40.8161629, "lon": -73.9821088 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736500690, + "bounds": { + "minlat": 40.8167245, + "minlon": -73.9818540, + "maxlat": 40.8168945, + "maxlon": -73.9816820 + }, + "nodes": [ + 6895570660, + 6895570662, + 6895570661 + ], + "geometry": [ + { "lat": 40.8167245, "lon": -73.9818540 }, + { "lat": 40.8168163, "lon": -73.9817611 }, + { "lat": 40.8168945, "lon": -73.9816820 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736500691, + "bounds": { + "minlat": 40.8167192, + "minlon": -73.9817611, + "maxlat": 40.8168163, + "maxlon": -73.9815025 + }, + "nodes": [ + 6895570662, + 6895570663, + 6895570664 + ], + "geometry": [ + { "lat": 40.8168163, "lon": -73.9817611 }, + { "lat": 40.8167192, "lon": -73.9815702 }, + { "lat": 40.8167833, "lon": -73.9815025 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736515806, + "bounds": { + "minlat": 40.8815199, + "minlon": -73.9880463, + "maxlat": 40.8826541, + "maxlon": -73.9869850 + }, + "nodes": [ + 3603219694, + 12022129411, + 12022129410, + 12022129415, + 12022129414, + 12022129416, + 6895720812, + 12022129417, + 6895720813, + 12022129418, + 12022129419, + 6895720814, + 6895720817, + 12022129420, + 12022129421, + 12022129422, + 12022129423, + 12022129424, + 12022129425 + ], + "geometry": [ + { "lat": 40.8815199, "lon": -73.9878290 }, + { "lat": 40.8815397, "lon": -73.9877637 }, + { "lat": 40.8815493, "lon": -73.9877332 }, + { "lat": 40.8815601, "lon": -73.9877044 }, + { "lat": 40.8815708, "lon": -73.9876801 }, + { "lat": 40.8815866, "lon": -73.9876536 }, + { "lat": 40.8816055, "lon": -73.9876266 }, + { "lat": 40.8817642, "lon": -73.9874379 }, + { "lat": 40.8821157, "lon": -73.9870594 }, + { "lat": 40.8821388, "lon": -73.9870370 }, + { "lat": 40.8821668, "lon": -73.9870110 }, + { "lat": 40.8821982, "lon": -73.9869850 }, + { "lat": 40.8826529, "lon": -73.9879411 }, + { "lat": 40.8826541, "lon": -73.9879607 }, + { "lat": 40.8826502, "lon": -73.9879830 }, + { "lat": 40.8826455, "lon": -73.9880004 }, + { "lat": 40.8826362, "lon": -73.9880183 }, + { "lat": 40.8826264, "lon": -73.9880340 }, + { "lat": 40.8826150, "lon": -73.9880463 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 736515807, + "bounds": { + "minlat": 40.8811733, + "minlon": -73.9876350, + "maxlat": 40.8822015, + "maxlon": -73.9866927 + }, + "nodes": [ + 6895720818, + 6895720827, + 6895720819, + 6895720823, + 6895720820, + 6895720821, + 6895720822 + ], + "geometry": [ + { "lat": 40.8822015, "lon": -73.9866927 }, + { "lat": 40.8820530, "lon": -73.9868603 }, + { "lat": 40.8818245, "lon": -73.9871182 }, + { "lat": 40.8817647, "lon": -73.9872086 }, + { "lat": 40.8816469, "lon": -73.9873866 }, + { "lat": 40.8814101, "lon": -73.9876350 }, + { "lat": 40.8811733, "lon": -73.9872233 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736515808, + "bounds": { + "minlat": 40.8814135, + "minlon": -73.9872086, + "maxlat": 40.8817647, + "maxlon": -73.9866528 + }, + "nodes": [ + 6895720823, + 6895720824 + ], + "geometry": [ + { "lat": 40.8817647, "lon": -73.9872086 }, + { "lat": 40.8814135, "lon": -73.9866528 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736515809, + "bounds": { + "minlat": 40.8819599, + "minlon": -73.9866372, + "maxlat": 40.8820832, + "maxlon": -73.9865097 + }, + "nodes": [ + 6895720825, + 6895720826 + ], + "geometry": [ + { "lat": 40.8820832, "lon": -73.9865097 }, + { "lat": 40.8819599, "lon": -73.9866372 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736515810, + "bounds": { + "minlat": 40.8816283, + "minlon": -73.9868542, + "maxlat": 40.8820220, + "maxlon": -73.9864193 + }, + "nodes": [ + 6895720828, + 6895720829, + 6895720830, + 6895720831, + 6895720833 + ], + "geometry": [ + { "lat": 40.8820220, "lon": -73.9867859 }, + { "lat": 40.8818347, "lon": -73.9868542 }, + { "lat": 40.8816283, "lon": -73.9865611 }, + { "lat": 40.8817806, "lon": -73.9864403 }, + { "lat": 40.8817848, "lon": -73.9864193 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736515811, + "bounds": { + "minlat": 40.8817848, + "minlon": -73.9866372, + "maxlat": 40.8819599, + "maxlon": -73.9864193 + }, + "nodes": [ + 6895720826, + 6895720833 + ], + "geometry": [ + { "lat": 40.8819599, "lon": -73.9866372 }, + { "lat": 40.8817848, "lon": -73.9864193 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736515812, + "bounds": { + "minlat": 40.8819599, + "minlon": -73.9868603, + "maxlat": 40.8820530, + "maxlon": -73.9866372 + }, + "nodes": [ + 6895720826, + 6895720828, + 6895720827 + ], + "geometry": [ + { "lat": 40.8819599, "lon": -73.9866372 }, + { "lat": 40.8820220, "lon": -73.9867859 }, + { "lat": 40.8820530, "lon": -73.9868603 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736515813, + "bounds": { + "minlat": 40.8817848, + "minlon": -73.9864193, + "maxlat": 40.8818435, + "maxlon": -73.9861321 + }, + "nodes": [ + 6895720833, + 6895720832 + ], + "geometry": [ + { "lat": 40.8817848, "lon": -73.9864193 }, + { "lat": 40.8818435, "lon": -73.9861321 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736526352, + "bounds": { + "minlat": 40.7891950, + "minlon": -74.0102284, + "maxlat": 40.7897671, + "maxlon": -74.0097349 + }, + "nodes": [ + 6895858590, + 7678131160, + 6895858591, + 6895858592, + 7678131159, + 6895858593 + ], + "geometry": [ + { "lat": 40.7891950, "lon": -74.0102284 }, + { "lat": 40.7892348, "lon": -74.0102016 }, + { "lat": 40.7892558, "lon": -74.0101874 }, + { "lat": 40.7897144, "lon": -74.0097850 }, + { "lat": 40.7897310, "lon": -74.0097692 }, + { "lat": 40.7897671, "lon": -74.0097349 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 736526353, + "bounds": { + "minlat": 40.7891950, + "minlon": -74.0195760, + "maxlat": 40.7935190, + "maxlon": -74.0102284 + }, + "nodes": [ + 6895858590, + 7678131064, + 103855607, + 7678131042, + 7678131070, + 103864946, + 7678131033, + 7678131031, + 103864948, + 7678103748, + 103864949, + 103864951, + 7678103727, + 103864952, + 7660979657, + 103864953, + 103864954, + 103864955, + 4517038481, + 7660979639, + 103864957, + 7660979637, + 7660979634, + 103864959, + 7660979626, + 103861927, + 7660979612, + 7660979614, + 103864961, + 7473610413, + 7473610415, + 103864963, + 7473610357, + 7473610349, + 103864965 + ], + "geometry": [ + { "lat": 40.7891950, "lon": -74.0102284 }, + { "lat": 40.7893899, "lon": -74.0106489 }, + { "lat": 40.7894292, "lon": -74.0107337 }, + { "lat": 40.7894723, "lon": -74.0108276 }, + { "lat": 40.7897507, "lon": -74.0114370 }, + { "lat": 40.7897815, "lon": -74.0115045 }, + { "lat": 40.7898188, "lon": -74.0115855 }, + { "lat": 40.7900936, "lon": -74.0121828 }, + { "lat": 40.7901411, "lon": -74.0122860 }, + { "lat": 40.7901957, "lon": -74.0124048 }, + { "lat": 40.7905061, "lon": -74.0130445 }, + { "lat": 40.7908403, "lon": -74.0137612 }, + { "lat": 40.7911676, "lon": -74.0144716 }, + { "lat": 40.7912092, "lon": -74.0145911 }, + { "lat": 40.7912493, "lon": -74.0147113 }, + { "lat": 40.7913880, "lon": -74.0150200 }, + { "lat": 40.7915435, "lon": -74.0153599 }, + { "lat": 40.7917150, "lon": -74.0157510 }, + { "lat": 40.7917203, "lon": -74.0157627 }, + { "lat": 40.7917444, "lon": -74.0158157 }, + { "lat": 40.7919265, "lon": -74.0162129 }, + { "lat": 40.7919568, "lon": -74.0162792 }, + { "lat": 40.7920331, "lon": -74.0164412 }, + { "lat": 40.7920580, "lon": -74.0164940 }, + { "lat": 40.7923826, "lon": -74.0171784 }, + { "lat": 40.7924090, "lon": -74.0172340 }, + { "lat": 40.7924373, "lon": -74.0172934 }, + { "lat": 40.7927302, "lon": -74.0179072 }, + { "lat": 40.7927553, "lon": -74.0179597 }, + { "lat": 40.7927843, "lon": -74.0180247 }, + { "lat": 40.7930585, "lon": -74.0186037 }, + { "lat": 40.7930980, "lon": -74.0186870 }, + { "lat": 40.7931310, "lon": -74.0187567 }, + { "lat": 40.7934420, "lon": -74.0194134 }, + { "lat": 40.7935190, "lon": -74.0195760 } + ], + "tags": { + "highway": "residential", + "name": "62nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "62nd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 736526354, + "bounds": { + "minlat": 40.7870606, + "minlon": -74.0097349, + "maxlat": 40.7897671, + "maxlon": -74.0038885 + }, + "nodes": [ + 6895858593, + 7678131163, + 7678131165, + 103862604, + 7658692267, + 7588135071, + 7658692261, + 103872293, + 7468537558, + 7468537561, + 103860863 + ], + "geometry": [ + { "lat": 40.7897671, "lon": -74.0097349 }, + { "lat": 40.7897482, "lon": -74.0096949 }, + { "lat": 40.7893420, "lon": -74.0088334 }, + { "lat": 40.7892890, "lon": -74.0087210 }, + { "lat": 40.7892592, "lon": -74.0086549 }, + { "lat": 40.7884621, "lon": -74.0068872 }, + { "lat": 40.7884104, "lon": -74.0067726 }, + { "lat": 40.7883645, "lon": -74.0066709 }, + { "lat": 40.7883167, "lon": -74.0065689 }, + { "lat": 40.7871106, "lon": -74.0039951 }, + { "lat": 40.7870606, "lon": -74.0038885 } + ], + "tags": { + "highway": "residential", + "name": "63rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "63rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 736526355, + "bounds": { + "minlat": 40.7897671, + "minlon": -74.0097940, + "maxlat": 40.7897950, + "maxlon": -74.0097349 + }, + "nodes": [ + 103872294, + 6895858593 + ], + "geometry": [ + { "lat": 40.7897950, "lon": -74.0097940 }, + { "lat": 40.7897671, "lon": -74.0097349 } + ], + "tags": { + "highway": "residential", + "name": "63rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "63rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 736529547, + "bounds": { + "minlat": 40.8733737, + "minlon": -73.9744384, + "maxlat": 40.8735330, + "maxlon": -73.9740130 + }, + "nodes": [ + 530806274, + 6895886557, + 6895886558 + ], + "geometry": [ + { "lat": 40.8734904, "lon": -73.9744384 }, + { "lat": 40.8735330, "lon": -73.9741250 }, + { "lat": 40.8733737, "lon": -73.9740130 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736529548, + "bounds": { + "minlat": 40.8735330, + "minlon": -73.9742247, + "maxlat": 40.8736954, + "maxlon": -73.9741250 + }, + "nodes": [ + 6895886557, + 6895886559 + ], + "geometry": [ + { "lat": 40.8735330, "lon": -73.9741250 }, + { "lat": 40.8736954, "lon": -73.9742247 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736530669, + "bounds": { + "minlat": 40.8349112, + "minlon": -74.0000270, + "maxlat": 40.8353747, + "maxlon": -73.9993257 + }, + "nodes": [ + 5750735820, + 6895888068, + 6895888069, + 6895888070, + 6895888071, + 6895888072 + ], + "geometry": [ + { "lat": 40.8353747, "lon": -74.0000270 }, + { "lat": 40.8351775, "lon": -73.9996940 }, + { "lat": 40.8351419, "lon": -73.9996531 }, + { "lat": 40.8351078, "lon": -73.9996429 }, + { "lat": 40.8350722, "lon": -73.9996245 }, + { "lat": 40.8349112, "lon": -73.9993257 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736536478, + "bounds": { + "minlat": 40.8699431, + "minlon": -73.9568302, + "maxlat": 40.8704200, + "maxlon": -73.9563430 + }, + "nodes": [ + 6895957637, + 6895957638 + ], + "geometry": [ + { "lat": 40.8704200, "lon": -73.9563430 }, + { "lat": 40.8699431, "lon": -73.9568302 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 736536479, + "bounds": { + "minlat": 40.8704200, + "minlon": -73.9580478, + "maxlat": 40.8711766, + "maxlon": -73.9563281 + }, + "nodes": [ + 6895957637, + 9287376892, + 6895957639, + 9287376899, + 9287376896, + 9287376894, + 6895957640, + 6895957641, + 9287376893, + 6895957644 + ], + "geometry": [ + { "lat": 40.8704200, "lon": -73.9563430 }, + { "lat": 40.8704458, "lon": -73.9563281 }, + { "lat": 40.8704716, "lon": -73.9563449 }, + { "lat": 40.8709229, "lon": -73.9571462 }, + { "lat": 40.8710178, "lon": -73.9573148 }, + { "lat": 40.8711162, "lon": -73.9574894 }, + { "lat": 40.8711766, "lon": -73.9575967 }, + { "lat": 40.8707187, "lon": -73.9580455 }, + { "lat": 40.8706790, "lon": -73.9580478 }, + { "lat": 40.8706415, "lon": -73.9580157 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 736536480, + "bounds": { + "minlat": 40.8699431, + "minlon": -73.9575275, + "maxlat": 40.8703270, + "maxlon": -73.9568302 + }, + "nodes": [ + 6895957638, + 6895957643 + ], + "geometry": [ + { "lat": 40.8699431, "lon": -73.9568302 }, + { "lat": 40.8703270, "lon": -73.9575275 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 736536481, + "bounds": { + "minlat": 40.8705383, + "minlon": -73.9581148, + "maxlat": 40.8706415, + "maxlon": -73.9580157 + }, + "nodes": [ + 6895957644, + 6895957645 + ], + "geometry": [ + { "lat": 40.8706415, "lon": -73.9580157 }, + { "lat": 40.8705383, "lon": -73.9581148 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736540680, + "bounds": { + "minlat": 40.8566507, + "minlon": -73.9761706, + "maxlat": 40.8567860, + "maxlon": -73.9759139 + }, + "nodes": [ + 6896007127, + 6896007128, + 6896007129, + 6896007130 + ], + "geometry": [ + { "lat": 40.8566507, "lon": -73.9759139 }, + { "lat": 40.8567021, "lon": -73.9760695 }, + { "lat": 40.8567263, "lon": -73.9761062 }, + { "lat": 40.8567860, "lon": -73.9761706 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736540681, + "bounds": { + "minlat": 40.8567263, + "minlon": -73.9761062, + "maxlat": 40.8573188, + "maxlon": -73.9755741 + }, + "nodes": [ + 6896007129, + 6896007131, + 6896007132, + 6896007133, + 6896007134, + 6896007135, + 6896007136, + 7417938949 + ], + "geometry": [ + { "lat": 40.8567263, "lon": -73.9761062 }, + { "lat": 40.8568007, "lon": -73.9760540 }, + { "lat": 40.8569970, "lon": -73.9758526 }, + { "lat": 40.8572444, "lon": -73.9755741 }, + { "lat": 40.8573188, "lon": -73.9757376 }, + { "lat": 40.8572184, "lon": -73.9758561 }, + { "lat": 40.8572453, "lon": -73.9759000 }, + { "lat": 40.8572497, "lon": -73.9759942 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736544236, + "bounds": { + "minlat": 40.8114499, + "minlon": -74.0047819, + "maxlat": 40.8116383, + "maxlon": -74.0043819 + }, + "nodes": [ + 6896030081, + 7475993708, + 6896054286, + 6896054287, + 6896030082 + ], + "geometry": [ + { "lat": 40.8114499, "lon": -74.0043819 }, + { "lat": 40.8114771, "lon": -74.0044393 }, + { "lat": 40.8115756, "lon": -74.0046476 }, + { "lat": 40.8115931, "lon": -74.0046850 }, + { "lat": 40.8116383, "lon": -74.0047819 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736544237, + "bounds": { + "minlat": 40.8115934, + "minlon": -74.0046260, + "maxlat": 40.8117552, + "maxlon": -74.0042432 + }, + "nodes": [ + 6896030083, + 7475993707, + 6896054285, + 6896030084 + ], + "geometry": [ + { "lat": 40.8115934, "lon": -74.0042432 }, + { "lat": 40.8116283, "lon": -74.0043254 }, + { "lat": 40.8117208, "lon": -74.0045436 }, + { "lat": 40.8117552, "lon": -74.0046260 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736544238, + "bounds": { + "minlat": 40.8115756, + "minlon": -74.0046476, + "maxlat": 40.8117208, + "maxlon": -74.0045436 + }, + "nodes": [ + 6896054285, + 6896054286 + ], + "geometry": [ + { "lat": 40.8117208, "lon": -74.0045436 }, + { "lat": 40.8115756, "lon": -74.0046476 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736544239, + "bounds": { + "minlat": 40.8113245, + "minlon": -74.0049380, + "maxlat": 40.8115931, + "maxlon": -74.0046850 + }, + "nodes": [ + 6896054288, + 7475993709, + 6896054287 + ], + "geometry": [ + { "lat": 40.8113245, "lon": -74.0049380 }, + { "lat": 40.8113614, "lon": -74.0049032 }, + { "lat": 40.8115931, "lon": -74.0046850 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 736544240, + "bounds": { + "minlat": 40.8105214, + "minlon": -74.0042550, + "maxlat": 40.8107413, + "maxlon": -74.0036351 + }, + "nodes": [ + 2813943268, + 7475993759, + 6896054289, + 7475993760, + 6896054290 + ], + "geometry": [ + { "lat": 40.8107413, "lon": -74.0042550 }, + { "lat": 40.8106873, "lon": -74.0042126 }, + { "lat": 40.8106666, "lon": -74.0041964 }, + { "lat": 40.8105393, "lon": -74.0037045 }, + { "lat": 40.8105214, "lon": -74.0036351 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 736547818, + "bounds": { + "minlat": 40.8505011, + "minlon": -73.9704723, + "maxlat": 40.8506187, + "maxlon": -73.9700397 + }, + "nodes": [ + 6896079417, + 6896079418 + ], + "geometry": [ + { "lat": 40.8506187, "lon": -73.9704723 }, + { "lat": 40.8505011, "lon": -73.9700397 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737190727, + "bounds": { + "minlat": 40.8443699, + "minlon": -74.0154659, + "maxlat": 40.8447697, + "maxlon": -74.0139083 + }, + "nodes": [ + 6901623410, + 7552876161, + 6901623395, + 6901623412, + 7552876158, + 7552876170, + 6901623413, + 7552876169, + 6901623396, + 7552876166, + 6901623397, + 10936329907, + 6901623398, + 6901623399, + 6901623409, + 6901623400, + 6901623403, + 6901623404, + 6901623405, + 6901623406, + 6901623407, + 6901623408, + 6901623409 + ], + "geometry": [ + { "lat": 40.8446591, "lon": -74.0139083 }, + { "lat": 40.8446257, "lon": -74.0139183 }, + { "lat": 40.8443699, "lon": -74.0139905 }, + { "lat": 40.8444165, "lon": -74.0142087 }, + { "lat": 40.8444322, "lon": -74.0142859 }, + { "lat": 40.8444326, "lon": -74.0143189 }, + { "lat": 40.8444338, "lon": -74.0143843 }, + { "lat": 40.8444504, "lon": -74.0144784 }, + { "lat": 40.8444678, "lon": -74.0145774 }, + { "lat": 40.8444595, "lon": -74.0146340 }, + { "lat": 40.8444607, "lon": -74.0146617 }, + { "lat": 40.8445153, "lon": -74.0149823 }, + { "lat": 40.8445225, "lon": -74.0150184 }, + { "lat": 40.8445487, "lon": -74.0150888 }, + { "lat": 40.8445856, "lon": -74.0153014 }, + { "lat": 40.8446137, "lon": -74.0154659 }, + { "lat": 40.8447370, "lon": -74.0154315 }, + { "lat": 40.8447570, "lon": -74.0154041 }, + { "lat": 40.8447697, "lon": -74.0153477 }, + { "lat": 40.8447686, "lon": -74.0153050 }, + { "lat": 40.8447516, "lon": -74.0152716 }, + { "lat": 40.8447171, "lon": -74.0152632 }, + { "lat": 40.8445856, "lon": -74.0153014 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737190728, + "bounds": { + "minlat": 40.8444165, + "minlon": -74.0142087, + "maxlat": 40.8446988, + "maxlon": -74.0139083 + }, + "nodes": [ + 6901623410, + 11445102199, + 6901623411, + 10927887427, + 10927887422, + 6901623412 + ], + "geometry": [ + { "lat": 40.8446591, "lon": -74.0139083 }, + { "lat": 40.8446691, "lon": -74.0139644 }, + { "lat": 40.8446988, "lon": -74.0141320 }, + { "lat": 40.8446714, "lon": -74.0141394 }, + { "lat": 40.8446497, "lon": -74.0141453 }, + { "lat": 40.8444165, "lon": -74.0142087 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737190729, + "bounds": { + "minlat": 40.8444338, + "minlon": -74.0143843, + "maxlat": 40.8445688, + "maxlon": -74.0143454 + }, + "nodes": [ + 6901623413, + 6901623414 + ], + "geometry": [ + { "lat": 40.8444338, "lon": -74.0143843 }, + { "lat": 40.8445688, "lon": -74.0143454 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 737190730, + "bounds": { + "minlat": 40.8446854, + "minlon": -74.0143108, + "maxlat": 40.8447196, + "maxlon": -74.0141320 + }, + "nodes": [ + 6901623415, + 7552876157, + 6901623416, + 7552876171, + 6901623417, + 6901623411 + ], + "geometry": [ + { "lat": 40.8446854, "lon": -74.0143108 }, + { "lat": 40.8447060, "lon": -74.0143029 }, + { "lat": 40.8447159, "lon": -74.0142899 }, + { "lat": 40.8447196, "lon": -74.0142684 }, + { "lat": 40.8447149, "lon": -74.0142371 }, + { "lat": 40.8446988, "lon": -74.0141320 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 737190731, + "bounds": { + "minlat": 40.8445688, + "minlon": -74.0143454, + "maxlat": 40.8446854, + "maxlon": -74.0143108 + }, + "nodes": [ + 6901623414, + 6901623415 + ], + "geometry": [ + { "lat": 40.8445688, "lon": -74.0143454 }, + { "lat": 40.8446854, "lon": -74.0143108 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 737190732, + "bounds": { + "minlat": 40.8443496, + "minlon": -74.0139905, + "maxlat": 40.8446149, + "maxlon": -74.0132817 + }, + "nodes": [ + 6901623395, + 6901623418, + 7552876163, + 6901623419, + 7552876159, + 6901623420, + 6901623422, + 13785951907, + 13785951908 + ], + "geometry": [ + { "lat": 40.8443699, "lon": -74.0139905 }, + { "lat": 40.8443496, "lon": -74.0138763 }, + { "lat": 40.8443930, "lon": -74.0137062 }, + { "lat": 40.8444196, "lon": -74.0136019 }, + { "lat": 40.8444294, "lon": -74.0135488 }, + { "lat": 40.8444041, "lon": -74.0133505 }, + { "lat": 40.8444593, "lon": -74.0133450 }, + { "lat": 40.8445947, "lon": -74.0132899 }, + { "lat": 40.8446149, "lon": -74.0132817 } + ], + "tags": { + "highway": "service", + "lanes": "2" + } +}, +{ + "type": "way", + "id": 737190733, + "bounds": { + "minlat": 40.8444196, + "minlon": -74.0136019, + "maxlat": 40.8446611, + "maxlon": -74.0135962 + }, + "nodes": [ + 6901623424, + 6901623419 + ], + "geometry": [ + { "lat": 40.8446611, "lon": -74.0135962 }, + { "lat": 40.8444196, "lon": -74.0136019 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 737202991, + "bounds": { + "minlat": 40.8017601, + "minlon": -73.9927773, + "maxlat": 40.8020085, + "maxlon": -73.9922123 + }, + "nodes": [ + 5481963195, + 6901752151 + ], + "geometry": [ + { "lat": 40.8020085, "lon": -73.9927773 }, + { "lat": 40.8017601, "lon": -73.9922123 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737221008, + "bounds": { + "minlat": 40.8150150, + "minlon": -74.0105119, + "maxlat": 40.8156269, + "maxlon": -74.0099528 + }, + "nodes": [ + 6901964070, + 6901964071 + ], + "geometry": [ + { "lat": 40.8150150, "lon": -74.0105119 }, + { "lat": 40.8156269, "lon": -74.0099528 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737221009, + "bounds": { + "minlat": 40.8153893, + "minlon": -74.0121081, + "maxlat": 40.8162578, + "maxlon": -74.0110699 + }, + "nodes": [ + 103882328, + 6901964072, + 6901964073, + 6901964074, + 6901964075, + 6901964076 + ], + "geometry": [ + { "lat": 40.8153893, "lon": -74.0111778 }, + { "lat": 40.8155055, "lon": -74.0110699 }, + { "lat": 40.8156578, "lon": -74.0112586 }, + { "lat": 40.8159604, "lon": -74.0118638 }, + { "lat": 40.8161613, "lon": -74.0119240 }, + { "lat": 40.8162578, "lon": -74.0121081 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737221010, + "bounds": { + "minlat": 40.8156578, + "minlon": -74.0112586, + "maxlat": 40.8162390, + "maxlon": -74.0106959 + }, + "nodes": [ + 6901964073, + 6901964077 + ], + "geometry": [ + { "lat": 40.8156578, "lon": -74.0112586 }, + { "lat": 40.8162390, "lon": -74.0106959 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737224068, + "bounds": { + "minlat": 40.8441947, + "minlon": -73.9724782, + "maxlat": 40.8447521, + "maxlon": -73.9719041 + }, + "nodes": [ + 6901994432, + 13523703010, + 6901994433, + 6901994434, + 6901994435, + 6901994436, + 6901994437, + 6901994438 + ], + "geometry": [ + { "lat": 40.8442485, "lon": -73.9724782 }, + { "lat": 40.8442110, "lon": -73.9723603 }, + { "lat": 40.8441947, "lon": -73.9723093 }, + { "lat": 40.8442883, "lon": -73.9722138 }, + { "lat": 40.8444280, "lon": -73.9721058 }, + { "lat": 40.8445050, "lon": -73.9720494 }, + { "lat": 40.8446329, "lon": -73.9719946 }, + { "lat": 40.8447521, "lon": -73.9719041 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 737225752, + "bounds": { + "minlat": 40.8531855, + "minlon": -73.9692352, + "maxlat": 40.8534676, + "maxlon": -73.9687346 + }, + "nodes": [ + 6902027593, + 12824924119, + 6902027594, + 6902027595, + 12824924120, + 6902027597 + ], + "geometry": [ + { "lat": 40.8533145, "lon": -73.9687346 }, + { "lat": 40.8533723, "lon": -73.9688927 }, + { "lat": 40.8534676, "lon": -73.9691530 }, + { "lat": 40.8533392, "lon": -73.9692352 }, + { "lat": 40.8532432, "lon": -73.9689728 }, + { "lat": 40.8531855, "lon": -73.9688153 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737225753, + "bounds": { + "minlat": 40.8530975, + "minlon": -73.9693625, + "maxlat": 40.8533667, + "maxlon": -73.9688717 + }, + "nodes": [ + 6902027598, + 12824924121, + 6902027599, + 6979693068, + 6902027595 + ], + "geometry": [ + { "lat": 40.8530975, "lon": -73.9688717 }, + { "lat": 40.8531563, "lon": -73.9690265 }, + { "lat": 40.8532840, "lon": -73.9693625 }, + { "lat": 40.8533667, "lon": -73.9693076 }, + { "lat": 40.8533392, "lon": -73.9692352 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737236882, + "bounds": { + "minlat": 40.8432419, + "minlon": -73.9833525, + "maxlat": 40.8434576, + "maxlon": -73.9829907 + }, + "nodes": [ + 6902148558, + 6902148559 + ], + "geometry": [ + { "lat": 40.8432419, "lon": -73.9829907 }, + { "lat": 40.8434576, "lon": -73.9833525 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737236883, + "bounds": { + "minlat": 40.8433227, + "minlon": -73.9832393, + "maxlat": 40.8435140, + "maxlon": -73.9829099 + }, + "nodes": [ + 6902148560, + 6902148561 + ], + "geometry": [ + { "lat": 40.8433227, "lon": -73.9829099 }, + { "lat": 40.8435140, "lon": -73.9832393 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737236884, + "bounds": { + "minlat": 40.8436151, + "minlon": -73.9830629, + "maxlat": 40.8440715, + "maxlon": -73.9823039 + }, + "nodes": [ + 6902148562, + 6902148563, + 6902148564, + 6902148565 + ], + "geometry": [ + { "lat": 40.8439284, "lon": -73.9823039 }, + { "lat": 40.8440715, "lon": -73.9825382 }, + { "lat": 40.8440566, "lon": -73.9825961 }, + { "lat": 40.8436151, "lon": -73.9830629 } + ], + "tags": { + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 737236885, + "bounds": { + "minlat": 40.8433877, + "minlon": -73.9831796, + "maxlat": 40.8435919, + "maxlon": -73.9828449 + }, + "nodes": [ + 6902148566, + 6902148567 + ], + "geometry": [ + { "lat": 40.8433877, "lon": -73.9828449 }, + { "lat": 40.8435919, "lon": -73.9831796 } + ], + "tags": { + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 737236886, + "bounds": { + "minlat": 40.8421974, + "minlon": -73.9823355, + "maxlat": 40.8433372, + "maxlon": -73.9809540 + }, + "nodes": [ + 6902148568, + 6902148569, + 6902148570, + 6902148571, + 6902148572, + 6902148573 + ], + "geometry": [ + { "lat": 40.8430051, "lon": -73.9809540 }, + { "lat": 40.8433329, "lon": -73.9814882 }, + { "lat": 40.8433372, "lon": -73.9815277 }, + { "lat": 40.8425605, "lon": -73.9823276 }, + { "lat": 40.8425383, "lon": -73.9823355 }, + { "lat": 40.8421974, "lon": -73.9817693 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 737236887, + "bounds": { + "minlat": 40.8418881, + "minlon": -73.9811470, + "maxlat": 40.8421085, + "maxlon": -73.9801840 + }, + "nodes": [ + 6902148574, + 6902148575, + 6902148576, + 6902148577, + 6902148578, + 6902148579 + ], + "geometry": [ + { "lat": 40.8418881, "lon": -73.9801840 }, + { "lat": 40.8420143, "lon": -73.9806261 }, + { "lat": 40.8420587, "lon": -73.9807914 }, + { "lat": 40.8420542, "lon": -73.9809697 }, + { "lat": 40.8420632, "lon": -73.9810673 }, + { "lat": 40.8421085, "lon": -73.9811470 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737244532, + "bounds": { + "minlat": 40.8771267, + "minlon": -73.9730250, + "maxlat": 40.8779424, + "maxlon": -73.9723990 + }, + "nodes": [ + 6902227717, + 6902227718, + 6902227719, + 6902227720, + 6902227721, + 6902227722, + 6902227723, + 6902227724 + ], + "geometry": [ + { "lat": 40.8771267, "lon": -73.9730250 }, + { "lat": 40.8771603, "lon": -73.9729612 }, + { "lat": 40.8771939, "lon": -73.9729237 }, + { "lat": 40.8773858, "lon": -73.9728502 }, + { "lat": 40.8774330, "lon": -73.9728308 }, + { "lat": 40.8775410, "lon": -73.9727822 }, + { "lat": 40.8776061, "lon": -73.9727309 }, + { "lat": 40.8779424, "lon": -73.9723990 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737244880, + "bounds": { + "minlat": 40.8504595, + "minlon": -74.0136052, + "maxlat": 40.8504888, + "maxlon": -74.0130712 + }, + "nodes": [ + 103161067, + 10936388946, + 10936388939, + 6902221525, + 10936388931 + ], + "geometry": [ + { "lat": 40.8504595, "lon": -74.0130712 }, + { "lat": 40.8504799, "lon": -74.0132393 }, + { "lat": 40.8504857, "lon": -74.0133024 }, + { "lat": 40.8504887, "lon": -74.0133655 }, + { "lat": 40.8504888, "lon": -74.0136052 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737244881, + "bounds": { + "minlat": 40.8499107, + "minlon": -74.0136153, + "maxlat": 40.8511691, + "maxlon": -74.0131120 + }, + "nodes": [ + 10936388928, + 10936388931, + 10936388941, + 10936388927, + 10936388938, + 10936388924, + 6902221527, + 6902221526, + 10936388951, + 10936388930, + 6902221525, + 10936388952, + 10936388950, + 6902221528 + ], + "geometry": [ + { "lat": 40.8499142, "lon": -74.0136153 }, + { "lat": 40.8504888, "lon": -74.0136052 }, + { "lat": 40.8505212, "lon": -74.0136046 }, + { "lat": 40.8505524, "lon": -74.0136005 }, + { "lat": 40.8505849, "lon": -74.0135891 }, + { "lat": 40.8511691, "lon": -74.0133154 }, + { "lat": 40.8511165, "lon": -74.0131120 }, + { "lat": 40.8507678, "lon": -74.0132737 }, + { "lat": 40.8507246, "lon": -74.0132898 }, + { "lat": 40.8505200, "lon": -74.0133577 }, + { "lat": 40.8504887, "lon": -74.0133655 }, + { "lat": 40.8504598, "lon": -74.0133703 }, + { "lat": 40.8504293, "lon": -74.0133725 }, + { "lat": 40.8499107, "lon": -74.0133844 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737265886, + "bounds": { + "minlat": 40.8425960, + "minlon": -74.0045607, + "maxlat": 40.8430073, + "maxlon": -74.0040604 + }, + "nodes": [ + 6902436412, + 6902436413, + 6902436414, + 6902436415, + 6902436416, + 6902436417, + 6902436418, + 6902436419 + ], + "geometry": [ + { "lat": 40.8425960, "lon": -74.0043225 }, + { "lat": 40.8427891, "lon": -74.0041135 }, + { "lat": 40.8428441, "lon": -74.0040629 }, + { "lat": 40.8428991, "lon": -74.0040604 }, + { "lat": 40.8430073, "lon": -74.0043055 }, + { "lat": 40.8429628, "lon": -74.0043431 }, + { "lat": 40.8428509, "lon": -74.0044469 }, + { "lat": 40.8427332, "lon": -74.0045607 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 737269102, + "bounds": { + "minlat": 40.8600722, + "minlon": -73.9791003, + "maxlat": 40.8615938, + "maxlon": -73.9772034 + }, + "nodes": [ + 6902502703, + 6902502702, + 6902459682, + 6902459683, + 6902459684, + 6902502685, + 6902502686, + 6902502687, + 6902502688, + 6902502689, + 6902502690, + 6902502691, + 6902502692, + 6902502693, + 6902502694, + 6902502695, + 6902502696, + 6902502697, + 6902502698, + 6902502699, + 518971818 + ], + "geometry": [ + { "lat": 40.8600722, "lon": -73.9791003 }, + { "lat": 40.8602075, "lon": -73.9790466 }, + { "lat": 40.8602779, "lon": -73.9790626 }, + { "lat": 40.8606028, "lon": -73.9789294 }, + { "lat": 40.8606450, "lon": -73.9788736 }, + { "lat": 40.8606799, "lon": -73.9788185 }, + { "lat": 40.8607295, "lon": -73.9787318 }, + { "lat": 40.8607652, "lon": -73.9785943 }, + { "lat": 40.8608075, "lon": -73.9784354 }, + { "lat": 40.8608595, "lon": -73.9783237 }, + { "lat": 40.8609374, "lon": -73.9782248 }, + { "lat": 40.8610219, "lon": -73.9781604 }, + { "lat": 40.8612039, "lon": -73.9780788 }, + { "lat": 40.8613826, "lon": -73.9780057 }, + { "lat": 40.8614703, "lon": -73.9779499 }, + { "lat": 40.8615418, "lon": -73.9778640 }, + { "lat": 40.8615938, "lon": -73.9777179 }, + { "lat": 40.8615873, "lon": -73.9775890 }, + { "lat": 40.8615548, "lon": -73.9774386 }, + { "lat": 40.8614963, "lon": -73.9773183 }, + { "lat": 40.8614339, "lon": -73.9772034 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737269103, + "bounds": { + "minlat": 40.8605735, + "minlon": -73.9788736, + "maxlat": 40.8606450, + "maxlon": -73.9785857 + }, + "nodes": [ + 6902459684, + 6902502701 + ], + "geometry": [ + { "lat": 40.8606450, "lon": -73.9788736 }, + { "lat": 40.8605735, "lon": -73.9785857 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737278976, + "bounds": { + "minlat": 40.8713005, + "minlon": -74.0047734, + "maxlat": 40.8713330, + "maxlon": -74.0046832 + }, + "nodes": [ + 6902585213, + 6902585212 + ], + "geometry": [ + { "lat": 40.8713330, "lon": -74.0046832 }, + { "lat": 40.8713005, "lon": -74.0047734 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 737278977, + "bounds": { + "minlat": 40.8711875, + "minlon": -74.0050461, + "maxlat": 40.8713005, + "maxlon": -74.0047734 + }, + "nodes": [ + 6902585212, + 1158148645, + 4469429059 + ], + "geometry": [ + { "lat": 40.8713005, "lon": -74.0047734 }, + { "lat": 40.8712349, "lon": -74.0049550 }, + { "lat": 40.8711875, "lon": -74.0050461 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 737278978, + "bounds": { + "minlat": 40.8718487, + "minlon": -74.0053540, + "maxlat": 40.8719205, + "maxlon": -74.0053113 + }, + "nodes": [ + 6902585214, + 6902585215 + ], + "geometry": [ + { "lat": 40.8719205, "lon": -74.0053540 }, + { "lat": 40.8718487, "lon": -74.0053113 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 737278979, + "bounds": { + "minlat": 40.8716593, + "minlon": -74.0053414, + "maxlat": 40.8718487, + "maxlon": -74.0052916 + }, + "nodes": [ + 6902585215, + 4469440007, + 4469440008, + 4469440009, + 4469440005 + ], + "geometry": [ + { "lat": 40.8718487, "lon": -74.0053113 }, + { "lat": 40.8718238, "lon": -74.0052965 }, + { "lat": 40.8717555, "lon": -74.0052916 }, + { "lat": 40.8717170, "lon": -74.0053091 }, + { "lat": 40.8716593, "lon": -74.0053414 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737280220, + "bounds": { + "minlat": 40.8680646, + "minlon": -73.9710943, + "maxlat": 40.8681905, + "maxlon": -73.9708867 + }, + "nodes": [ + 6902588118, + 6902588121, + 6902588116 + ], + "geometry": [ + { "lat": 40.8681905, "lon": -73.9710943 }, + { "lat": 40.8681450, "lon": -73.9710249 }, + { "lat": 40.8680646, "lon": -73.9708867 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 737280221, + "bounds": { + "minlat": 40.8699590, + "minlon": -73.9685770, + "maxlat": 40.8707710, + "maxlon": -73.9677990 + }, + "nodes": [ + 103191978, + 103275590, + 103275592 + ], + "geometry": [ + { "lat": 40.8699590, "lon": -73.9685770 }, + { "lat": 40.8705230, "lon": -73.9680360 }, + { "lat": 40.8707710, "lon": -73.9677990 } + ], + "tags": { + "highway": "residential", + "name": "Adele Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Adele", + "tiger:name_type": "Ct", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 737298115, + "bounds": { + "minlat": 40.8166787, + "minlon": -73.9896373, + "maxlat": 40.8168167, + "maxlon": -73.9890547 + }, + "nodes": [ + 6902796084, + 6902819085 + ], + "geometry": [ + { "lat": 40.8166787, "lon": -73.9890547 }, + { "lat": 40.8168167, "lon": -73.9896373 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737299979, + "bounds": { + "minlat": 40.8444498, + "minlon": -74.0090758, + "maxlat": 40.8446215, + "maxlon": -74.0089632 + }, + "nodes": [ + 6902805651, + 6902805650 + ], + "geometry": [ + { "lat": 40.8446215, "lon": -74.0089632 }, + { "lat": 40.8444498, "lon": -74.0090758 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 737299980, + "bounds": { + "minlat": 40.8444753, + "minlon": -74.0094491, + "maxlat": 40.8447008, + "maxlon": -74.0093247 + }, + "nodes": [ + 11101364200, + 6902805652 + ], + "geometry": [ + { "lat": 40.8444753, "lon": -74.0093247 }, + { "lat": 40.8447008, "lon": -74.0094491 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 737299981, + "bounds": { + "minlat": 40.8449225, + "minlon": -74.0096172, + "maxlat": 40.8449452, + "maxlon": -74.0091662 + }, + "nodes": [ + 6902805658, + 11101364198, + 11101364197, + 11101364195, + 6902805659 + ], + "geometry": [ + { "lat": 40.8449225, "lon": -74.0091662 }, + { "lat": 40.8449287, "lon": -74.0092905 }, + { "lat": 40.8449347, "lon": -74.0094082 }, + { "lat": 40.8449407, "lon": -74.0095274 }, + { "lat": 40.8449452, "lon": -74.0096172 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 737322502, + "bounds": { + "minlat": 40.8765895, + "minlon": -73.9526064, + "maxlat": 40.8771311, + "maxlon": -73.9520719 + }, + "nodes": [ + 543224579, + 6903047154, + 6903047155, + 6903047156, + 6903047157 + ], + "geometry": [ + { "lat": 40.8771311, "lon": -73.9523831 }, + { "lat": 40.8770665, "lon": -73.9524072 }, + { "lat": 40.8768605, "lon": -73.9526064 }, + { "lat": 40.8766255, "lon": -73.9522080 }, + { "lat": 40.8765895, "lon": -73.9520719 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737322503, + "bounds": { + "minlat": 40.8772792, + "minlon": -73.9526558, + "maxlat": 40.8775420, + "maxlon": -73.9524373 + }, + "nodes": [ + 6903047158, + 6903047159, + 6903047160 + ], + "geometry": [ + { "lat": 40.8772792, "lon": -73.9526558 }, + { "lat": 40.8773986, "lon": -73.9525693 }, + { "lat": 40.8775420, "lon": -73.9524373 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737322504, + "bounds": { + "minlat": 40.8777968, + "minlon": -73.9523502, + "maxlat": 40.8779686, + "maxlon": -73.9522044 + }, + "nodes": [ + 6903047161, + 6903047162, + 6903047163 + ], + "geometry": [ + { "lat": 40.8779686, "lon": -73.9522642 }, + { "lat": 40.8778763, "lon": -73.9523502 }, + { "lat": 40.8777968, "lon": -73.9522044 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737355374, + "bounds": { + "minlat": 40.7004050, + "minlon": -73.9446170, + "maxlat": 40.7005481, + "maxlon": -73.9444084 + }, + "nodes": [ + 42467503, + 9752127053, + 42467502 + ], + "geometry": [ + { "lat": 40.7005481, "lon": -73.9444084 }, + { "lat": 40.7004744, "lon": -73.9445158 }, + { "lat": 40.7004050, "lon": -73.9446170 } + ], + "tags": { + "highway": "residential", + "name": "Thornton Street", + "name:etymology:wikidata": "Q1368351", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Thornton", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 737355375, + "bounds": { + "minlat": 40.7005481, + "minlon": -73.9450140, + "maxlat": 40.7010910, + "maxlon": -73.9444084 + }, + "nodes": [ + 42467503, + 9752127054, + 9752126461, + 42499146 + ], + "geometry": [ + { "lat": 40.7005481, "lon": -73.9444084 }, + { "lat": 40.7005981, "lon": -73.9444641 }, + { "lat": 40.7010447, "lon": -73.9449624 }, + { "lat": 40.7010910, "lon": -73.9450140 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "name": "Throop Avenue", + "name:etymology:wikidata": "Q881026", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Throop", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11221", + "tiger:zip_right": "11221" + } +}, +{ + "type": "way", + "id": 737431023, + "bounds": { + "minlat": 40.7048957, + "minlon": -74.0140357, + "maxlat": 40.7058049, + "maxlon": -74.0133569 + }, + "nodes": [ + 10316226053, + 10316226129, + 10316226192, + 10316226228, + 42428362, + 42428361, + 42428355, + 10316226191, + 7072589169 + ], + "geometry": [ + { "lat": 40.7058049, "lon": -74.0133569 }, + { "lat": 40.7056788, "lon": -74.0134671 }, + { "lat": 40.7054452, "lon": -74.0136585 }, + { "lat": 40.7053501, "lon": -74.0137392 }, + { "lat": 40.7052054, "lon": -74.0138537 }, + { "lat": 40.7051075, "lon": -74.0139268 }, + { "lat": 40.7050282, "lon": -74.0139736 }, + { "lat": 40.7049682, "lon": -74.0140044 }, + { "lat": 40.7048957, "lon": -74.0140357 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|designated", + "busway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:zip_left": "10003", + "tiger:zip_right": "10003", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 737501978, + "bounds": { + "minlat": 40.8453706, + "minlon": -73.9810006, + "maxlat": 40.8454958, + "maxlon": -73.9808559 + }, + "nodes": [ + 6904881277, + 6904881276 + ], + "geometry": [ + { "lat": 40.8454958, "lon": -73.9810006 }, + { "lat": 40.8453706, "lon": -73.9808559 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 737501979, + "bounds": { + "minlat": 40.8453704, + "minlon": -73.9815010, + "maxlat": 40.8457014, + "maxlon": -73.9807824 + }, + "nodes": [ + 6904881278, + 6904881282, + 6904881279, + 6904881277, + 6904881280 + ], + "geometry": [ + { "lat": 40.8455626, "lon": -73.9815010 }, + { "lat": 40.8453704, "lon": -73.9811701 }, + { "lat": 40.8453728, "lon": -73.9811215 }, + { "lat": 40.8454958, "lon": -73.9810006 }, + { "lat": 40.8457014, "lon": -73.9807824 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737501980, + "bounds": { + "minlat": 40.8454369, + "minlon": -73.9810006, + "maxlat": 40.8454958, + "maxlon": -73.9807895 + }, + "nodes": [ + 6904881281, + 6904881277 + ], + "geometry": [ + { "lat": 40.8454369, "lon": -73.9807895 }, + { "lat": 40.8454958, "lon": -73.9810006 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 737552319, + "bounds": { + "minlat": 40.8782583, + "minlon": -73.9851605, + "maxlat": 40.8786378, + "maxlon": -73.9844868 + }, + "nodes": [ + 6905434405, + 6905434413, + 6905434406, + 6905434415, + 6905434407, + 6905434408, + 6905434409, + 6905434410, + 6905434411, + 6905434414, + 6905434412 + ], + "geometry": [ + { "lat": 40.8784894, "lon": -73.9844868 }, + { "lat": 40.8785241, "lon": -73.9846058 }, + { "lat": 40.8786035, "lon": -73.9848775 }, + { "lat": 40.8786378, "lon": -73.9850212 }, + { "lat": 40.8786310, "lon": -73.9850427 }, + { "lat": 40.8785351, "lon": -73.9851409 }, + { "lat": 40.8784970, "lon": -73.9851605 }, + { "lat": 40.8784765, "lon": -73.9851549 }, + { "lat": 40.8783170, "lon": -73.9847759 }, + { "lat": 40.8783008, "lon": -73.9847341 }, + { "lat": 40.8782583, "lon": -73.9846171 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 737576601, + "bounds": { + "minlat": 40.7539859, + "minlon": -73.9987478, + "maxlat": 40.7543070, + "maxlon": -73.9984789 + }, + "nodes": [ + 6905716423, + 8261123368, + 6905716424, + 11144700435, + 11144700433, + 11144700434, + 11144700432 + ], + "geometry": [ + { "lat": 40.7543070, "lon": -73.9984789 }, + { "lat": 40.7542147, "lon": -73.9985431 }, + { "lat": 40.7541849, "lon": -73.9985634 }, + { "lat": 40.7540827, "lon": -73.9986339 }, + { "lat": 40.7539946, "lon": -73.9986948 }, + { "lat": 40.7539859, "lon": -73.9987160 }, + { "lat": 40.7539990, "lon": -73.9987478 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 737576602, + "bounds": { + "minlat": 40.7583320, + "minlon": -73.9973122, + "maxlat": 40.7586082, + "maxlon": -73.9967920 + }, + "nodes": [ + 11142778058, + 6905716427, + 6905716428, + 11142778059 + ], + "geometry": [ + { "lat": 40.7586082, "lon": -73.9972521 }, + { "lat": 40.7585268, "lon": -73.9973122 }, + { "lat": 40.7583320, "lon": -73.9968520 }, + { "lat": 40.7584133, "lon": -73.9967920 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 737623212, + "bounds": { + "minlat": 40.7040920, + "minlon": -73.9283950, + "maxlat": 40.7045260, + "maxlon": -73.9276440 + }, + "nodes": [ + 42525548, + 10086973606, + 6909046759, + 42484352 + ], + "geometry": [ + { "lat": 40.7040920, "lon": -73.9276440 }, + { "lat": 40.7041387, "lon": -73.9277248 }, + { "lat": 40.7044734, "lon": -73.9283039 }, + { "lat": 40.7045260, "lon": -73.9283950 } + ], + "tags": { + "cycleway:both": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Knickerbocker Avenue", + "name:etymology:wikidata": "Q55609555", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Knickerbocker", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11207", + "tiger:zip_right": "11207" + } +}, +{ + "type": "way", + "id": 737623213, + "bounds": { + "minlat": 40.7038640, + "minlon": -73.9276440, + "maxlat": 40.7040920, + "maxlon": -73.9272442 + }, + "nodes": [ + 11844828441, + 10086973607, + 42525548 + ], + "geometry": [ + { "lat": 40.7038640, "lon": -73.9272442 }, + { "lat": 40.7040614, "lon": -73.9275898 }, + { "lat": 40.7040920, "lon": -73.9276440 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Knickerbocker Avenue", + "name:etymology:wikidata": "Q55609555", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 737685748, + "bounds": { + "minlat": 40.6998891, + "minlon": -73.9556986, + "maxlat": 40.7044708, + "maxlon": -73.9488091 + }, + "nodes": [ + 42499132, + 6245642074, + 6245642073, + 42519640, + 6245642071, + 6245642062, + 42519635, + 6245642061, + 9755354496, + 42482198, + 9755354497, + 9351682806, + 9351722053, + 3699342269, + 9755373247, + 42519630, + 9755373248, + 8617784300, + 9755372103, + 42492062 + ], + "geometry": [ + { "lat": 40.7044708, "lon": -73.9488091 }, + { "lat": 40.7044375, "lon": -73.9488609 }, + { "lat": 40.7036288, "lon": -73.9501164 }, + { "lat": 40.7035560, "lon": -73.9502250 }, + { "lat": 40.7034812, "lon": -73.9503482 }, + { "lat": 40.7033452, "lon": -73.9505512 }, + { "lat": 40.7032870, "lon": -73.9506410 }, + { "lat": 40.7032377, "lon": -73.9507171 }, + { "lat": 40.7020991, "lon": -73.9524767 }, + { "lat": 40.7020510, "lon": -73.9525510 }, + { "lat": 40.7020057, "lon": -73.9526211 }, + { "lat": 40.7017423, "lon": -73.9530282 }, + { "lat": 40.7012370, "lon": -73.9538093 }, + { "lat": 40.7010267, "lon": -73.9541344 }, + { "lat": 40.7008625, "lon": -73.9543882 }, + { "lat": 40.7008160, "lon": -73.9544600 }, + { "lat": 40.7007692, "lon": -73.9545306 }, + { "lat": 40.6999940, "lon": -73.9556986 }, + { "lat": 40.6999567, "lon": -73.9556969 }, + { "lat": 40.6998891, "lon": -73.9556937 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Middleton Street", + "name:etymology:wikidata": "Q657569", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 737690737, + "bounds": { + "minlat": 40.7053781, + "minlon": -73.9502183, + "maxlat": 40.7054366, + "maxlon": -73.9501140 + }, + "nodes": [ + 42477588, + 9755373380, + 6859710890 + ], + "geometry": [ + { "lat": 40.7054366, "lon": -73.9502183 }, + { "lat": 40.7053828, "lon": -73.9501225 }, + { "lat": 40.7053781, "lon": -73.9501140 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 737690738, + "bounds": { + "minlat": 40.7042820, + "minlon": -73.9501140, + "maxlat": 40.7053781, + "maxlon": -73.9481455 + }, + "nodes": [ + 6859710890, + 42476777, + 13495812383, + 9755373365, + 13685735399, + 42505420, + 9755373366, + 42499129, + 598033005, + 13685735400, + 42501132 + ], + "geometry": [ + { "lat": 40.7053781, "lon": -73.9501140 }, + { "lat": 40.7052222, "lon": -73.9498349 }, + { "lat": 40.7051284, "lon": -73.9496656 }, + { "lat": 40.7050675, "lon": -73.9495564 }, + { "lat": 40.7050469, "lon": -73.9495192 }, + { "lat": 40.7050197, "lon": -73.9494703 }, + { "lat": 40.7049935, "lon": -73.9494238 }, + { "lat": 40.7047945, "lon": -73.9490689 }, + { "lat": 40.7045127, "lon": -73.9485600 }, + { "lat": 40.7044523, "lon": -73.9484515 }, + { "lat": 40.7042820, "lon": -73.9481455 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 737839068, + "bounds": { + "minlat": 40.7725939, + "minlon": -73.9225309, + "maxlat": 40.7728638, + "maxlon": -73.9219019 + }, + "nodes": [ + 6908562507, + 6908562508, + 6908562509 + ], + "geometry": [ + { "lat": 40.7728638, "lon": -73.9225309 }, + { "lat": 40.7726231, "lon": -73.9219699 }, + { "lat": 40.7725939, "lon": -73.9219019 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 737839069, + "bounds": { + "minlat": 40.7763063, + "minlon": -73.9204335, + "maxlat": 40.7765046, + "maxlon": -73.9200262 + }, + "nodes": [ + 6908562510, + 6908562511, + 6908562512, + 6908562513 + ], + "geometry": [ + { "lat": 40.7764337, "lon": -73.9204335 }, + { "lat": 40.7765046, "lon": -73.9203345 }, + { "lat": 40.7763497, "lon": -73.9200920 }, + { "lat": 40.7763063, "lon": -73.9200262 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737839070, + "bounds": { + "minlat": 40.7765046, + "minlon": -73.9203345, + "maxlat": 40.7765771, + "maxlon": -73.9202405 + }, + "nodes": [ + 6908562511, + 6908562515 + ], + "geometry": [ + { "lat": 40.7765046, "lon": -73.9203345 }, + { "lat": 40.7765771, "lon": -73.9202405 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 737839072, + "bounds": { + "minlat": 40.7751747, + "minlon": -73.9195449, + "maxlat": 40.7756475, + "maxlon": -73.9188460 + }, + "nodes": [ + 6908562527, + 6908562528, + 6908562532, + 6908562533 + ], + "geometry": [ + { "lat": 40.7756475, "lon": -73.9195449 }, + { "lat": 40.7756110, "lon": -73.9194909 }, + { "lat": 40.7752196, "lon": -73.9189124 }, + { "lat": 40.7751747, "lon": -73.9188460 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 737846753, + "bounds": { + "minlat": 40.7142097, + "minlon": -73.9362618, + "maxlat": 40.7144954, + "maxlon": -73.9362446 + }, + "nodes": [ + 6908682216, + 6908682217, + 6908682218 + ], + "geometry": [ + { "lat": 40.7144954, "lon": -73.9362446 }, + { "lat": 40.7144294, "lon": -73.9362509 }, + { "lat": 40.7142097, "lon": -73.9362618 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 737846755, + "bounds": { + "minlat": 40.7137924, + "minlon": -73.9331758, + "maxlat": 40.7140100, + "maxlon": -73.9323315 + }, + "nodes": [ + 42524611, + 8842929836, + 6908682220, + 1275778461 + ], + "geometry": [ + { "lat": 40.7137924, "lon": -73.9331758 }, + { "lat": 40.7138151, "lon": -73.9330917 }, + { "lat": 40.7138832, "lon": -73.9328237 }, + { "lat": 40.7140100, "lon": -73.9323315 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "track", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through;right", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 737848081, + "bounds": { + "minlat": 40.8176429, + "minlon": -73.9416622, + "maxlat": 40.8179560, + "maxlon": -73.9412490 + }, + "nodes": [ + 6908683481, + 8758345318, + 6908683483, + 9557104503, + 6908683484 + ], + "geometry": [ + { "lat": 40.8179560, "lon": -73.9416622 }, + { "lat": 40.8179130, "lon": -73.9415604 }, + { "lat": 40.8177835, "lon": -73.9412490 }, + { "lat": 40.8177010, "lon": -73.9413088 }, + { "lat": 40.8176429, "lon": -73.9413510 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 737864246, + "bounds": { + "minlat": 40.7375907, + "minlon": -73.9254596, + "maxlat": 40.7378030, + "maxlon": -73.9236128 + }, + "nodes": [ + 7827752532, + 10743722341, + 10743722338, + 6908928767, + 10743722347, + 10743722344, + 6908928770 + ], + "geometry": [ + { "lat": 40.7378030, "lon": -73.9254596 }, + { "lat": 40.7377957, "lon": -73.9253958 }, + { "lat": 40.7377056, "lon": -73.9246131 }, + { "lat": 40.7376973, "lon": -73.9245405 }, + { "lat": 40.7376892, "lon": -73.9244699 }, + { "lat": 40.7375987, "lon": -73.9236822 }, + { "lat": 40.7375907, "lon": -73.9236128 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 737871152, + "bounds": { + "minlat": 40.7185952, + "minlon": -73.9199284, + "maxlat": 40.7187147, + "maxlon": -73.9193484 + }, + "nodes": [ + 6909036700, + 6909036702 + ], + "geometry": [ + { "lat": 40.7187147, "lon": -73.9199284 }, + { "lat": 40.7185952, "lon": -73.9193484 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 737873102, + "bounds": { + "minlat": 40.7044734, + "minlon": -73.9283039, + "maxlat": 40.7049640, + "maxlon": -73.9279836 + }, + "nodes": [ + 42504156, + 9755789386, + 6909046757, + 9755789385, + 6909046759 + ], + "geometry": [ + { "lat": 40.7049640, "lon": -73.9281090 }, + { "lat": 40.7049013, "lon": -73.9280551 }, + { "lat": 40.7048181, "lon": -73.9279836 }, + { "lat": 40.7045406, "lon": -73.9282415 }, + { "lat": 40.7044734, "lon": -73.9283039 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 737942306, + "bounds": { + "minlat": 40.7766806, + "minlon": -73.9762587, + "maxlat": 40.7768930, + "maxlon": -73.9760548 + }, + "nodes": [ + 6909727971, + 6909727958, + 6909727943, + 6909727931, + 6909727918, + 6909727904, + 6909727892, + 6909719782, + 6909727995, + 6909727981, + 6909727966, + 6909727953, + 6909727939, + 6909727926, + 6909727913, + 6909727899, + 6909727888, + 6909727975, + 6909727989, + 6909727974, + 6909727960, + 6909727946, + 6909727934, + 6909727921, + 6909727907, + 6909727895, + 6909727885, + 6909727998, + 6909727983, + 6909727968, + 6909727955, + 6909727941, + 6909727928, + 6909727915, + 6909727902, + 6909727890, + 6909719779, + 6909727991, + 6909727977, + 6909727963, + 6909727920, + 6909727909, + 6909727906, + 6909727952, + 6909727938, + 6909727894, + 6909719781, + 6909727925, + 6909727912, + 6909719784, + 6909727994, + 6909727988, + 6909727973, + 6909727959, + 6909727980, + 6909727997, + 6909727945, + 6909727933, + 6909727919, + 6909727965, + 6909727905, + 6909727893, + 6909727961, + 6909727996, + 6909727982, + 6909727954, + 6909727967, + 6909727887, + 6909727940, + 6909727927, + 6909727914, + 6909719775, + 6909727901, + 6909727889, + 6909719778, + 6909727985, + 6909727990, + 6909727949, + 6909727962, + 6909727976, + 6909727935, + 6909727986, + 6909727971 + ], + "geometry": [ + { "lat": 40.7767390, "lon": -73.9762545 }, + { "lat": 40.7767344, "lon": -73.9762566 }, + { "lat": 40.7767321, "lon": -73.9762573 }, + { "lat": 40.7767285, "lon": -73.9762582 }, + { "lat": 40.7767252, "lon": -73.9762586 }, + { "lat": 40.7767217, "lon": -73.9762587 }, + { "lat": 40.7767177, "lon": -73.9762582 }, + { "lat": 40.7767138, "lon": -73.9762574 }, + { "lat": 40.7767108, "lon": -73.9762564 }, + { "lat": 40.7767077, "lon": -73.9762549 }, + { "lat": 40.7767044, "lon": -73.9762530 }, + { "lat": 40.7767002, "lon": -73.9762500 }, + { "lat": 40.7766969, "lon": -73.9762469 }, + { "lat": 40.7766944, "lon": -73.9762441 }, + { "lat": 40.7766913, "lon": -73.9762400 }, + { "lat": 40.7766894, "lon": -73.9762369 }, + { "lat": 40.7766878, "lon": -73.9762340 }, + { "lat": 40.7766864, "lon": -73.9762310 }, + { "lat": 40.7766847, "lon": -73.9762268 }, + { "lat": 40.7766833, "lon": -73.9762224 }, + { "lat": 40.7766822, "lon": -73.9762182 }, + { "lat": 40.7766813, "lon": -73.9762132 }, + { "lat": 40.7766808, "lon": -73.9762082 }, + { "lat": 40.7766806, "lon": -73.9762040 }, + { "lat": 40.7766807, "lon": -73.9761999 }, + { "lat": 40.7766810, "lon": -73.9761955 }, + { "lat": 40.7766815, "lon": -73.9761913 }, + { "lat": 40.7766820, "lon": -73.9761888 }, + { "lat": 40.7766827, "lon": -73.9761856 }, + { "lat": 40.7766838, "lon": -73.9761815 }, + { "lat": 40.7766857, "lon": -73.9761762 }, + { "lat": 40.7766868, "lon": -73.9761739 }, + { "lat": 40.7766881, "lon": -73.9761712 }, + { "lat": 40.7766900, "lon": -73.9761677 }, + { "lat": 40.7766921, "lon": -73.9761646 }, + { "lat": 40.7766945, "lon": -73.9761615 }, + { "lat": 40.7766970, "lon": -73.9761586 }, + { "lat": 40.7766994, "lon": -73.9761564 }, + { "lat": 40.7767014, "lon": -73.9761547 }, + { "lat": 40.7767033, "lon": -73.9761534 }, + { "lat": 40.7768292, "lon": -73.9760625 }, + { "lat": 40.7768311, "lon": -73.9760611 }, + { "lat": 40.7768339, "lon": -73.9760593 }, + { "lat": 40.7768366, "lon": -73.9760579 }, + { "lat": 40.7768403, "lon": -73.9760565 }, + { "lat": 40.7768421, "lon": -73.9760559 }, + { "lat": 40.7768451, "lon": -73.9760552 }, + { "lat": 40.7768492, "lon": -73.9760548 }, + { "lat": 40.7768513, "lon": -73.9760548 }, + { "lat": 40.7768558, "lon": -73.9760552 }, + { "lat": 40.7768597, "lon": -73.9760560 }, + { "lat": 40.7768637, "lon": -73.9760575 }, + { "lat": 40.7768678, "lon": -73.9760595 }, + { "lat": 40.7768702, "lon": -73.9760611 }, + { "lat": 40.7768733, "lon": -73.9760634 }, + { "lat": 40.7768749, "lon": -73.9760648 }, + { "lat": 40.7768767, "lon": -73.9760666 }, + { "lat": 40.7768797, "lon": -73.9760699 }, + { "lat": 40.7768822, "lon": -73.9760734 }, + { "lat": 40.7768842, "lon": -73.9760765 }, + { "lat": 40.7768857, "lon": -73.9760793 }, + { "lat": 40.7768878, "lon": -73.9760838 }, + { "lat": 40.7768889, "lon": -73.9760866 }, + { "lat": 40.7768900, "lon": -73.9760899 }, + { "lat": 40.7768910, "lon": -73.9760936 }, + { "lat": 40.7768915, "lon": -73.9760960 }, + { "lat": 40.7768923, "lon": -73.9761011 }, + { "lat": 40.7768928, "lon": -73.9761053 }, + { "lat": 40.7768930, "lon": -73.9761102 }, + { "lat": 40.7768928, "lon": -73.9761153 }, + { "lat": 40.7768924, "lon": -73.9761199 }, + { "lat": 40.7768916, "lon": -73.9761246 }, + { "lat": 40.7768907, "lon": -73.9761287 }, + { "lat": 40.7768895, "lon": -73.9761326 }, + { "lat": 40.7768877, "lon": -73.9761375 }, + { "lat": 40.7768855, "lon": -73.9761423 }, + { "lat": 40.7768838, "lon": -73.9761454 }, + { "lat": 40.7768813, "lon": -73.9761491 }, + { "lat": 40.7768780, "lon": -73.9761532 }, + { "lat": 40.7768740, "lon": -73.9761571 }, + { "lat": 40.7768703, "lon": -73.9761601 }, + { "lat": 40.7767425, "lon": -73.9762523 }, + { "lat": 40.7767390, "lon": -73.9762545 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 737942308, + "bounds": { + "minlat": 40.7765319, + "minlon": -73.9763438, + "maxlat": 40.7766583, + "maxlon": -73.9762518 + }, + "nodes": [ + 2745345882, + 6909727972 + ], + "geometry": [ + { "lat": 40.7765319, "lon": -73.9763438 }, + { "lat": 40.7766583, "lon": -73.9762518 } + ], + "tags": { + "access": "private", + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 737942311, + "bounds": { + "minlat": 40.7769333, + "minlon": -73.9764967, + "maxlat": 40.7772465, + "maxlon": -73.9762717 + }, + "nodes": [ + 6909727944, + 6909727969, + 3269834162 + ], + "geometry": [ + { "lat": 40.7769333, "lon": -73.9764967 }, + { "lat": 40.7771963, "lon": -73.9763078 }, + { "lat": 40.7772465, "lon": -73.9762717 } + ], + "tags": { + "foot": "permissive", + "highway": "service", + "incline": "up", + "maxspeed": "5 mph", + "service": "parking" + } +}, +{ + "type": "way", + "id": 737942312, + "bounds": { + "minlat": 40.7766583, + "minlon": -73.9762518, + "maxlat": 40.7766864, + "maxlon": -73.9762310 + }, + "nodes": [ + 6909727972, + 6909727975 + ], + "geometry": [ + { "lat": 40.7766583, "lon": -73.9762518 }, + { "lat": 40.7766864, "lon": -73.9762310 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 737942313, + "bounds": { + "minlat": 40.7764173, + "minlon": -73.9764274, + "maxlat": 40.7765319, + "maxlon": -73.9763438 + }, + "nodes": [ + 6909727932, + 8319193840, + 2745345882 + ], + "geometry": [ + { "lat": 40.7764173, "lon": -73.9764274 }, + { "lat": 40.7765060, "lon": -73.9763627 }, + { "lat": 40.7765319, "lon": -73.9763438 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 738023850, + "bounds": { + "minlat": 40.7046539, + "minlon": -74.0133273, + "maxlat": 40.7050087, + "maxlon": -74.0133047 + }, + "nodes": [ + 42428529, + 10316226183, + 7685535237, + 11050101116, + 42428527 + ], + "geometry": [ + { "lat": 40.7050087, "lon": -74.0133273 }, + { "lat": 40.7050013, "lon": -74.0133268 }, + { "lat": 40.7047987, "lon": -74.0133156 }, + { "lat": 40.7046872, "lon": -74.0133080 }, + { "lat": 40.7046539, "lon": -74.0133047 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 738361812, + "bounds": { + "minlat": 40.7968378, + "minlon": -73.9692223, + "maxlat": 40.7971580, + "maxlon": -73.9689026 + }, + "nodes": [ + 6913843956, + 11296201231, + 6913843958, + 6913843951, + 6913843946, + 6913843950, + 6913843957, + 6913843952, + 6913843947, + 6913843945, + 6913843953 + ], + "geometry": [ + { "lat": 40.7968378, "lon": -73.9690173 }, + { "lat": 40.7968998, "lon": -73.9689709 }, + { "lat": 40.7969167, "lon": -73.9689583 }, + { "lat": 40.7969830, "lon": -73.9689087 }, + { "lat": 40.7969952, "lon": -73.9689028 }, + { "lat": 40.7970073, "lon": -73.9689026 }, + { "lat": 40.7970162, "lon": -73.9689070 }, + { "lat": 40.7970248, "lon": -73.9689131 }, + { "lat": 40.7970324, "lon": -73.9689235 }, + { "lat": 40.7970380, "lon": -73.9689354 }, + { "lat": 40.7971580, "lon": -73.9692223 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 738382682, + "bounds": { + "minlat": 40.7651785, + "minlon": -73.9615905, + "maxlat": 40.7652421, + "maxlon": -73.9615077 + }, + "nodes": [ + 6914116739, + 6680686168, + 6914116761, + 10597902947, + 6914116752, + 6680686169, + 6680686170 + ], + "geometry": [ + { "lat": 40.7652421, "lon": -73.9615077 }, + { "lat": 40.7652368, "lon": -73.9615174 }, + { "lat": 40.7652310, "lon": -73.9615264 }, + { "lat": 40.7652284, "lon": -73.9615301 }, + { "lat": 40.7652238, "lon": -73.9615364 }, + { "lat": 40.7652144, "lon": -73.9615487 }, + { "lat": 40.7651785, "lon": -73.9615905 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 738382686, + "bounds": { + "minlat": 40.7651705, + "minlon": -73.9615077, + "maxlat": 40.7652477, + "maxlon": -73.9613332 + }, + "nodes": [ + 6914116758, + 6914116740, + 6914116762, + 6914116759, + 6914116746, + 6914116737, + 6914116765, + 6914116754, + 6914116743, + 6680686165, + 6680686166, + 6680686167, + 6914116734, + 6914116756, + 6914116745, + 6914116749, + 6914116739 + ], + "geometry": [ + { "lat": 40.7651705, "lon": -73.9613336 }, + { "lat": 40.7651750, "lon": -73.9613332 }, + { "lat": 40.7651801, "lon": -73.9613333 }, + { "lat": 40.7651866, "lon": -73.9613353 }, + { "lat": 40.7651912, "lon": -73.9613377 }, + { "lat": 40.7651947, "lon": -73.9613408 }, + { "lat": 40.7652036, "lon": -73.9613510 }, + { "lat": 40.7652104, "lon": -73.9613614 }, + { "lat": 40.7652211, "lon": -73.9613844 }, + { "lat": 40.7652357, "lon": -73.9614230 }, + { "lat": 40.7652426, "lon": -73.9614403 }, + { "lat": 40.7652462, "lon": -73.9614547 }, + { "lat": 40.7652477, "lon": -73.9614671 }, + { "lat": 40.7652477, "lon": -73.9614773 }, + { "lat": 40.7652471, "lon": -73.9614889 }, + { "lat": 40.7652452, "lon": -73.9614982 }, + { "lat": 40.7652421, "lon": -73.9615077 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 738603183, + "bounds": { + "minlat": 40.7550854, + "minlon": -73.9916920, + "maxlat": 40.7552630, + "maxlon": -73.9914732 + }, + "nodes": [ + 2709630112, + 2709630121, + 2709629971, + 4637412950, + 4637412949, + 2709630112 + ], + "geometry": [ + { "lat": 40.7550854, "lon": -73.9915627 }, + { "lat": 40.7552081, "lon": -73.9914732 }, + { "lat": 40.7552630, "lon": -73.9916025 }, + { "lat": 40.7552021, "lon": -73.9916470 }, + { "lat": 40.7551405, "lon": -73.9916920 }, + { "lat": 40.7550854, "lon": -73.9915627 } + ], + "tags": { + "access": "permissive", + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 738705103, + "bounds": { + "minlat": 40.7949618, + "minlon": -74.0042888, + "maxlat": 40.7952123, + "maxlon": -74.0037121 + }, + "nodes": [ + 6917350536, + 7678472863, + 6917350537, + 6917350538, + 6917350539, + 7678472864, + 6917350540 + ], + "geometry": [ + { "lat": 40.7952123, "lon": -74.0037121 }, + { "lat": 40.7951718, "lon": -74.0037435 }, + { "lat": 40.7949837, "lon": -74.0038891 }, + { "lat": 40.7949618, "lon": -74.0039234 }, + { "lat": 40.7949645, "lon": -74.0039553 }, + { "lat": 40.7950731, "lon": -74.0041882 }, + { "lat": 40.7951200, "lon": -74.0042888 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 738705115, + "bounds": { + "minlat": 40.7946370, + "minlon": -74.0030233, + "maxlat": 40.7948236, + "maxlon": -74.0028705 + }, + "nodes": [ + 6917350609, + 7678472861, + 6917350610 + ], + "geometry": [ + { "lat": 40.7948236, "lon": -74.0028705 }, + { "lat": 40.7947809, "lon": -74.0029055 }, + { "lat": 40.7946370, "lon": -74.0030233 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 738705116, + "bounds": { + "minlat": 40.7947216, + "minlon": -74.0033330, + "maxlat": 40.7949426, + "maxlon": -74.0031173 + }, + "nodes": [ + 6917350611, + 7678472862, + 6917350612, + 6917350613 + ], + "geometry": [ + { "lat": 40.7949426, "lon": -74.0031173 }, + { "lat": 40.7948962, "lon": -74.0031528 }, + { "lat": 40.7947216, "lon": -74.0032863 }, + { "lat": 40.7947435, "lon": -74.0033330 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 738705122, + "bounds": { + "minlat": 40.7944150, + "minlon": -74.0025877, + "maxlat": 40.7946119, + "maxlon": -74.0024336 + }, + "nodes": [ + 6917350642, + 7678472860, + 6917350643 + ], + "geometry": [ + { "lat": 40.7946119, "lon": -74.0024336 }, + { "lat": 40.7945744, "lon": -74.0024630 }, + { "lat": 40.7944150, "lon": -74.0025877 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 738705148, + "bounds": { + "minlat": 40.7954640, + "minlon": -74.0059722, + "maxlat": 40.7956759, + "maxlon": -74.0057996 + }, + "nodes": [ + 6917350791, + 7678477509, + 6917350792 + ], + "geometry": [ + { "lat": 40.7954640, "lon": -74.0059722 }, + { "lat": 40.7955028, "lon": -74.0059407 }, + { "lat": 40.7956759, "lon": -74.0057996 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 738705162, + "bounds": { + "minlat": 40.7957076, + "minlon": -74.0053218, + "maxlat": 40.7958860, + "maxlon": -74.0051749 + }, + "nodes": [ + 6917350858, + 7678477508, + 6917350859 + ], + "geometry": [ + { "lat": 40.7958860, "lon": -74.0051749 }, + { "lat": 40.7958581, "lon": -74.0051978 }, + { "lat": 40.7957076, "lon": -74.0053218 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 738705166, + "bounds": { + "minlat": 40.7955088, + "minlon": -74.0049891, + "maxlat": 40.7957187, + "maxlon": -74.0048228 + }, + "nodes": [ + 6917350874, + 7678477507, + 6917350875 + ], + "geometry": [ + { "lat": 40.7957187, "lon": -74.0048228 }, + { "lat": 40.7956927, "lon": -74.0048434 }, + { "lat": 40.7955088, "lon": -74.0049891 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 738705171, + "bounds": { + "minlat": 40.7955419, + "minlon": -74.0035862, + "maxlat": 40.7958674, + "maxlon": -74.0032252 + }, + "nodes": [ + 6917350902, + 7678477603, + 6917350901, + 6917350900, + 12517662657, + 12517662658, + 12517662659, + 12517662660, + 12517662661, + 12517662662, + 12517662663, + 12517662664, + 12517662665 + ], + "geometry": [ + { "lat": 40.7958674, "lon": -74.0033859 }, + { "lat": 40.7958311, "lon": -74.0034098 }, + { "lat": 40.7956478, "lon": -74.0035753 }, + { "lat": 40.7956280, "lon": -74.0035862 }, + { "lat": 40.7956150, "lon": -74.0035855 }, + { "lat": 40.7955970, "lon": -74.0035773 }, + { "lat": 40.7955841, "lon": -74.0035577 }, + { "lat": 40.7955470, "lon": -74.0034757 }, + { "lat": 40.7955419, "lon": -74.0034491 }, + { "lat": 40.7955481, "lon": -74.0034163 }, + { "lat": 40.7955654, "lon": -74.0033982 }, + { "lat": 40.7957560, "lon": -74.0032522 }, + { "lat": 40.7957919, "lon": -74.0032252 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 738884215, + "bounds": { + "minlat": 40.7958750, + "minlon": -73.9988427, + "maxlat": 40.7961080, + "maxlon": -73.9986507 + }, + "nodes": [ + 12517760026, + 12517760027, + 6918402338, + 12517760029, + 12517760028, + 7468583887, + 6918402339 + ], + "geometry": [ + { "lat": 40.7958750, "lon": -73.9986507 }, + { "lat": 40.7959571, "lon": -73.9988270 }, + { "lat": 40.7959662, "lon": -73.9988392 }, + { "lat": 40.7959783, "lon": -73.9988427 }, + { "lat": 40.7959917, "lon": -73.9988348 }, + { "lat": 40.7960737, "lon": -73.9987664 }, + { "lat": 40.7961080, "lon": -73.9987406 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 738973807, + "bounds": { + "minlat": 40.8088184, + "minlon": -73.9600067, + "maxlat": 40.8089023, + "maxlon": -73.9598066 + }, + "nodes": [ + 6919167828, + 6919167808 + ], + "geometry": [ + { "lat": 40.8088184, "lon": -73.9598066 }, + { "lat": 40.8089023, "lon": -73.9600067 } + ], + "tags": { + "access": "private", + "access:delivery": "no", + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 738973808, + "bounds": { + "minlat": 40.8087550, + "minlon": -73.9602609, + "maxlat": 40.8089139, + "maxlon": -73.9600067 + }, + "nodes": [ + 6919167808, + 6919167809, + 6919167807, + 6919167819 + ], + "geometry": [ + { "lat": 40.8089023, "lon": -73.9600067 }, + { "lat": 40.8089083, "lon": -73.9600323 }, + { "lat": 40.8089139, "lon": -73.9601418 }, + { "lat": 40.8087550, "lon": -73.9602609 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 739030941, + "bounds": { + "minlat": 40.7629715, + "minlon": -73.9490990, + "maxlat": 40.7633794, + "maxlon": -73.9485345 + }, + "nodes": [ + 42426931, + 42426671, + 9189040213, + 9913669040, + 8265114653 + ], + "geometry": [ + { "lat": 40.7629715, "lon": -73.9490990 }, + { "lat": 40.7630050, "lon": -73.9490561 }, + { "lat": 40.7630422, "lon": -73.9490063 }, + { "lat": 40.7633576, "lon": -73.9485651 }, + { "lat": 40.7633794, "lon": -73.9485345 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 739579636, + "bounds": { + "minlat": 40.8233160, + "minlon": -73.9762726, + "maxlat": 40.8237331, + "maxlon": -73.9756771 + }, + "nodes": [ + 6924899651, + 6924899652, + 6924899653, + 6924899654 + ], + "geometry": [ + { "lat": 40.8237331, "lon": -73.9762726 }, + { "lat": 40.8236170, "lon": -73.9760937 }, + { "lat": 40.8235147, "lon": -73.9760622 }, + { "lat": 40.8233160, "lon": -73.9756771 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 739579637, + "bounds": { + "minlat": 40.8233160, + "minlon": -73.9756771, + "maxlat": 40.8233879, + "maxlon": -73.9756393 + }, + "nodes": [ + 6924899654, + 5362499439 + ], + "geometry": [ + { "lat": 40.8233160, "lon": -73.9756771 }, + { "lat": 40.8233879, "lon": -73.9756393 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 739579638, + "bounds": { + "minlat": 40.8233879, + "minlon": -73.9756393, + "maxlat": 40.8235898, + "maxlon": -73.9755333 + }, + "nodes": [ + 5362499439, + 5362499308, + 103137121 + ], + "geometry": [ + { "lat": 40.8233879, "lon": -73.9756393 }, + { "lat": 40.8235725, "lon": -73.9755424 }, + { "lat": 40.8235898, "lon": -73.9755333 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 739591695, + "bounds": { + "minlat": 40.7129093, + "minlon": -73.9869665, + "maxlat": 40.7131988, + "maxlon": -73.9838874 + }, + "nodes": [ + 42437770, + 8231945175, + 9010266062, + 7196173211, + 42437773, + 5804425630, + 9010266059, + 8310246531, + 42432000 + ], + "geometry": [ + { "lat": 40.7129093, "lon": -73.9869665 }, + { "lat": 40.7129244, "lon": -73.9868106 }, + { "lat": 40.7130721, "lon": -73.9852583 }, + { "lat": 40.7130767, "lon": -73.9852014 }, + { "lat": 40.7130809, "lon": -73.9850618 }, + { "lat": 40.7130870, "lon": -73.9849145 }, + { "lat": 40.7130928, "lon": -73.9848595 }, + { "lat": 40.7131852, "lon": -73.9839843 }, + { "lat": 40.7131988, "lon": -73.9838874 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "foot": "use_sidepath", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 739732371, + "bounds": { + "minlat": 40.8603837, + "minlon": -73.9700769, + "maxlat": 40.8606265, + "maxlon": -73.9699471 + }, + "nodes": [ + 6926319203, + 6926319202 + ], + "geometry": [ + { "lat": 40.8603837, "lon": -73.9700769 }, + { "lat": 40.8606265, "lon": -73.9699471 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 739732372, + "bounds": { + "minlat": 40.8599817, + "minlon": -73.9708066, + "maxlat": 40.8603837, + "maxlon": -73.9700769 + }, + "nodes": [ + 6926319203, + 6926319204, + 10862438298, + 13525924944, + 1952055197 + ], + "geometry": [ + { "lat": 40.8603837, "lon": -73.9700769 }, + { "lat": 40.8599817, "lon": -73.9703857 }, + { "lat": 40.8600635, "lon": -73.9705375 }, + { "lat": 40.8601474, "lon": -73.9706933 }, + { "lat": 40.8602084, "lon": -73.9708066 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 739911954, + "bounds": { + "minlat": 40.7614359, + "minlon": -73.9978497, + "maxlat": 40.7614999, + "maxlon": -73.9978033 + }, + "nodes": [ + 42430677, + 7280430895 + ], + "geometry": [ + { "lat": 40.7614999, "lon": -73.9978033 }, + { "lat": 40.7614359, "lon": -73.9978497 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 739911955, + "bounds": { + "minlat": 40.7609247, + "minlon": -73.9954293, + "maxlat": 40.7613062, + "maxlon": -73.9945259 + }, + "nodes": [ + 593921869, + 10168047537, + 42443563 + ], + "geometry": [ + { "lat": 40.7613062, "lon": -73.9954293 }, + { "lat": 40.7609841, "lon": -73.9946665 }, + { "lat": 40.7609247, "lon": -73.9945259 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "unclassified", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 739911956, + "bounds": { + "minlat": 40.7610298, + "minlon": -73.9978033, + "maxlat": 40.7614999, + "maxlon": -73.9966945 + }, + "nodes": [ + 6928075146, + 10899164836, + 10166505392, + 42430677 + ], + "geometry": [ + { "lat": 40.7610298, "lon": -73.9966945 }, + { "lat": 40.7612913, "lon": -73.9973205 }, + { "lat": 40.7614434, "lon": -73.9976845 }, + { "lat": 40.7614999, "lon": -73.9978033 } + ], + "tags": { + "bicycle": "yes", + "bicycle:lanes": "|designated|", + "cycleway": "lane", + "highway": "residential", + "motor_vehicle:lanes": "yes|no|yes", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 739911957, + "bounds": { + "minlat": 40.7614999, + "minlon": -74.0002895, + "maxlat": 40.7625524, + "maxlon": -73.9978033 + }, + "nodes": [ + 42430677, + 10166505394, + 12154605910, + 3874681637, + 62915525 + ], + "geometry": [ + { "lat": 40.7614999, "lon": -73.9978033 }, + { "lat": 40.7615693, "lon": -73.9979524 }, + { "lat": 40.7624824, "lon": -74.0001114 }, + { "lat": 40.7625034, "lon": -74.0001649 }, + { "lat": 40.7625524, "lon": -74.0002895 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 740085319, + "bounds": { + "minlat": 40.7857321, + "minlon": -73.9811521, + "maxlat": 40.7876839, + "maxlon": -73.9764355 + }, + "nodes": [ + 42437305, + 6929267035, + 6207264919, + 10039927883, + 7182045954, + 1061531550, + 42428663, + 7182045940, + 8727756068, + 42431030, + 8727756065, + 9168918197, + 9168918198, + 10039656209, + 9168918199, + 9168918200, + 42437312 + ], + "geometry": [ + { "lat": 40.7857321, "lon": -73.9764355 }, + { "lat": 40.7857621, "lon": -73.9765064 }, + { "lat": 40.7857730, "lon": -73.9765323 }, + { "lat": 40.7857881, "lon": -73.9765681 }, + { "lat": 40.7863399, "lon": -73.9778746 }, + { "lat": 40.7863807, "lon": -73.9779716 }, + { "lat": 40.7864652, "lon": -73.9781723 }, + { "lat": 40.7865059, "lon": -73.9782654 }, + { "lat": 40.7868804, "lon": -73.9791535 }, + { "lat": 40.7869367, "lon": -73.9792880 }, + { "lat": 40.7869891, "lon": -73.9794135 }, + { "lat": 40.7876519, "lon": -73.9809840 }, + { "lat": 40.7876616, "lon": -73.9810147 }, + { "lat": 40.7876684, "lon": -73.9810394 }, + { "lat": 40.7876741, "lon": -73.9810600 }, + { "lat": 40.7876795, "lon": -73.9811029 }, + { "lat": 40.7876839, "lon": -73.9811521 } + ], + "tags": { + "alt_name": "West 83 Street", + "highway": "residential", + "lane_markings": "no", + "name": "West 83rd Street", + "name:ru": "Западная 83-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 740085321, + "bounds": { + "minlat": 40.7857321, + "minlon": -73.9764355, + "maxlat": 40.7870011, + "maxlon": -73.9755093 + }, + "nodes": [ + 42437305, + 10039927891, + 10039932487, + 42421806, + 10039932485, + 10039932497, + 42442475 + ], + "geometry": [ + { "lat": 40.7857321, "lon": -73.9764355 }, + { "lat": 40.7857951, "lon": -73.9763895 }, + { "lat": 40.7863135, "lon": -73.9760112 }, + { "lat": 40.7863627, "lon": -73.9759753 }, + { "lat": 40.7864303, "lon": -73.9759259 }, + { "lat": 40.7869515, "lon": -73.9755455 }, + { "lat": 40.7870011, "lon": -73.9755093 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 740399603, + "bounds": { + "minlat": 40.8263772, + "minlon": -73.9793474, + "maxlat": 40.8267086, + "maxlon": -73.9789328 + }, + "nodes": [ + 6932010928, + 6932010931, + 6932010929, + 6932010930 + ], + "geometry": [ + { "lat": 40.8263772, "lon": -73.9789328 }, + { "lat": 40.8264617, "lon": -73.9789487 }, + { "lat": 40.8267086, "lon": -73.9789953 }, + { "lat": 40.8266618, "lon": -73.9793474 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 740633186, + "bounds": { + "minlat": 40.8235897, + "minlon": -73.9542110, + "maxlat": 40.8238272, + "maxlon": -73.9539773 + }, + "nodes": [ + 6934113725, + 10168100466, + 6934113726, + 6934113727, + 6934113728 + ], + "geometry": [ + { "lat": 40.8238272, "lon": -73.9541172 }, + { "lat": 40.8237817, "lon": -73.9541506 }, + { "lat": 40.8237589, "lon": -73.9541673 }, + { "lat": 40.8236874, "lon": -73.9542110 }, + { "lat": 40.8235897, "lon": -73.9539773 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 740669834, + "bounds": { + "minlat": 40.7092958, + "minlon": -73.9329869, + "maxlat": 40.7102542, + "maxlon": -73.9314651 + }, + "nodes": [ + 42490322, + 6934484789, + 6934478984, + 6934484785, + 6934484786, + 6934484787, + 6934484788, + 6934484790, + 6934484791 + ], + "geometry": [ + { "lat": 40.7092958, "lon": -73.9329869 }, + { "lat": 40.7092989, "lon": -73.9329055 }, + { "lat": 40.7093232, "lon": -73.9328118 }, + { "lat": 40.7093825, "lon": -73.9325806 }, + { "lat": 40.7094870, "lon": -73.9324329 }, + { "lat": 40.7095968, "lon": -73.9320048 }, + { "lat": 40.7098062, "lon": -73.9319029 }, + { "lat": 40.7099196, "lon": -73.9314651 }, + { "lat": 40.7102542, "lon": -73.9316137 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 740770261, + "bounds": { + "minlat": 40.7975063, + "minlon": -73.9608420, + "maxlat": 40.7975997, + "maxlon": -73.9607464 + }, + "nodes": [ + 6935388008, + 11296286342, + 6935388034, + 6935388014, + 6935388058, + 6935388040, + 6935388011, + 6935388037, + 6935388061 + ], + "geometry": [ + { "lat": 40.7975063, "lon": -73.9608420 }, + { "lat": 40.7975559, "lon": -73.9608044 }, + { "lat": 40.7975769, "lon": -73.9607893 }, + { "lat": 40.7975792, "lon": -73.9607870 }, + { "lat": 40.7975816, "lon": -73.9607839 }, + { "lat": 40.7975837, "lon": -73.9607804 }, + { "lat": 40.7975854, "lon": -73.9607773 }, + { "lat": 40.7975894, "lon": -73.9607679 }, + { "lat": 40.7975997, "lon": -73.9607464 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 740909715, + "bounds": { + "minlat": 40.7020649, + "minlon": -73.9406776, + "maxlat": 40.7027680, + "maxlon": -73.9401054 + }, + "nodes": [ + 6936641088, + 6936641089, + 6936641090, + 6936641091 + ], + "geometry": [ + { "lat": 40.7027209, "lon": -73.9406776 }, + { "lat": 40.7027317, "lon": -73.9405712 }, + { "lat": 40.7027680, "lon": -73.9402132 }, + { "lat": 40.7020649, "lon": -73.9401054 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 740909716, + "bounds": { + "minlat": 40.7020147, + "minlon": -73.9405754, + "maxlat": 40.7023680, + "maxlon": -73.9403139 + }, + "nodes": [ + 6936641092, + 6936641093, + 6936641094, + 6936641095 + ], + "geometry": [ + { "lat": 40.7020147, "lon": -73.9405754 }, + { "lat": 40.7020231, "lon": -73.9404599 }, + { "lat": 40.7020356, "lon": -73.9403139 }, + { "lat": 40.7023680, "lon": -73.9403642 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 741680829, + "bounds": { + "minlat": 40.7572389, + "minlon": -73.9251289, + "maxlat": 40.7573280, + "maxlon": -73.9249397 + }, + "nodes": [ + 10670430934, + 10670430933 + ], + "geometry": [ + { "lat": 40.7573280, "lon": -73.9251289 }, + { "lat": 40.7572389, "lon": -73.9249397 } + ], + "tags": { + "access": "private", + "highway": "service", + "motor_vehicle": "private", + "oneway": "no", + "service": "driveway", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 741733330, + "bounds": { + "minlat": 40.7643262, + "minlon": -73.9463572, + "maxlat": 40.7649372, + "maxlon": -73.9458404 + }, + "nodes": [ + 5212861629, + 11442895657 + ], + "geometry": [ + { "lat": 40.7643262, "lon": -73.9463572 }, + { "lat": 40.7649372, "lon": -73.9458404 } + ], + "tags": { + "covered": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "East Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 741733331, + "bounds": { + "minlat": 40.7649451, + "minlon": -73.9458337, + "maxlat": 40.7649862, + "maxlon": -73.9457989 + }, + "nodes": [ + 5212861636, + 8265114802, + 1241986496 + ], + "geometry": [ + { "lat": 40.7649451, "lon": -73.9458337 }, + { "lat": 40.7649619, "lon": -73.9458194 }, + { "lat": 40.7649862, "lon": -73.9457989 } + ], + "tags": { + "highway": "pedestrian", + "layer": "-1", + "name": "East Road" + } +}, +{ + "type": "way", + "id": 742007046, + "bounds": { + "minlat": 40.7802795, + "minlon": -73.9716576, + "maxlat": 40.7806903, + "maxlon": -73.9714837 + }, + "nodes": [ + 6946139606, + 1989096591, + 6946139595, + 248709625, + 6946139610, + 6946139605, + 1989096596, + 9170771796, + 1946814073, + 6946139598 + ], + "geometry": [ + { "lat": 40.7802795, "lon": -73.9714837 }, + { "lat": 40.7803194, "lon": -73.9715211 }, + { "lat": 40.7803552, "lon": -73.9715549 }, + { "lat": 40.7803957, "lon": -73.9715863 }, + { "lat": 40.7804333, "lon": -73.9716059 }, + { "lat": 40.7804792, "lon": -73.9716230 }, + { "lat": 40.7805234, "lon": -73.9716358 }, + { "lat": 40.7805730, "lon": -73.9716456 }, + { "lat": 40.7806294, "lon": -73.9716513 }, + { "lat": 40.7806903, "lon": -73.9716576 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "maxspeed:advisory:backward": "20 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 742007048, + "bounds": { + "minlat": 40.7775705, + "minlon": -73.9648425, + "maxlat": 40.7777416, + "maxlon": -73.9646152 + }, + "nodes": [ + 7103600835, + 1740694097 + ], + "geometry": [ + { "lat": 40.7775705, "lon": -73.9646152 }, + { "lat": 40.7777416, "lon": -73.9648425 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 742007049, + "bounds": { + "minlat": 40.7772871, + "minlon": -73.9646152, + "maxlat": 40.7775705, + "maxlon": -73.9642517 + }, + "nodes": [ + 1834852936, + 9906879201, + 9906879202, + 9170771808, + 7103600835 + ], + "geometry": [ + { "lat": 40.7772871, "lon": -73.9642517 }, + { "lat": 40.7773702, "lon": -73.9643646 }, + { "lat": 40.7774401, "lon": -73.9644515 }, + { "lat": 40.7775108, "lon": -73.9645393 }, + { "lat": 40.7775705, "lon": -73.9646152 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "layer": "-1", + "lit": "yes", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|right", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 742102602, + "bounds": { + "minlat": 40.8272248, + "minlon": -74.0185978, + "maxlat": 40.8293310, + "maxlon": -74.0162123 + }, + "nodes": [ + 6947587570, + 6947587571, + 6947587572, + 6947587573, + 6947587574, + 6947587575, + 6947587576, + 6947602895, + 6947602896, + 6947602897 + ], + "geometry": [ + { "lat": 40.8273449, "lon": -74.0181941 }, + { "lat": 40.8274458, "lon": -74.0182271 }, + { "lat": 40.8275857, "lon": -74.0183179 }, + { "lat": 40.8285184, "lon": -74.0185978 }, + { "lat": 40.8290494, "lon": -74.0184245 }, + { "lat": 40.8291082, "lon": -74.0183424 }, + { "lat": 40.8293310, "lon": -74.0168292 }, + { "lat": 40.8281530, "lon": -74.0164579 }, + { "lat": 40.8280305, "lon": -74.0164443 }, + { "lat": 40.8272248, "lon": -74.0162123 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 742102603, + "bounds": { + "minlat": 40.8271824, + "minlon": -74.0165039, + "maxlat": 40.8289438, + "maxlon": -74.0149528 + }, + "nodes": [ + 6947587577, + 6947587578, + 6947587579, + 6947587580, + 6947587581, + 6947587582, + 6947587583, + 6947587584, + 6947602885, + 6947602886, + 6947602887, + 6947602888, + 6947602889, + 6947602890, + 6947602891, + 6947602892, + 6947602893, + 6947602894 + ], + "geometry": [ + { "lat": 40.8271824, "lon": -74.0149528 }, + { "lat": 40.8272911, "lon": -74.0149612 }, + { "lat": 40.8278051, "lon": -74.0149858 }, + { "lat": 40.8279137, "lon": -74.0150178 }, + { "lat": 40.8284155, "lon": -74.0151607 }, + { "lat": 40.8288915, "lon": -74.0152957 }, + { "lat": 40.8289272, "lon": -74.0153264 }, + { "lat": 40.8289438, "lon": -74.0153901 }, + { "lat": 40.8288246, "lon": -74.0160921 }, + { "lat": 40.8287600, "lon": -74.0164695 }, + { "lat": 40.8287007, "lon": -74.0165039 }, + { "lat": 40.8286465, "lon": -74.0164896 }, + { "lat": 40.8282893, "lon": -74.0163873 }, + { "lat": 40.8282061, "lon": -74.0164074 }, + { "lat": 40.8279241, "lon": -74.0163271 }, + { "lat": 40.8278525, "lon": -74.0162688 }, + { "lat": 40.8273513, "lon": -74.0161092 }, + { "lat": 40.8272183, "lon": -74.0160576 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 742208073, + "bounds": { + "minlat": 40.7931120, + "minlon": -74.0053067, + "maxlat": 40.7934170, + "maxlon": -74.0050605 + }, + "nodes": [ + 6948550063, + 7653989006, + 6948550064 + ], + "geometry": [ + { "lat": 40.7934170, "lon": -74.0050605 }, + { "lat": 40.7933780, "lon": -74.0050919 }, + { "lat": 40.7931120, "lon": -74.0053067 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 742215272, + "bounds": { + "minlat": 40.7491239, + "minlon": -73.9745202, + "maxlat": 40.7497428, + "maxlon": -73.9740737 + }, + "nodes": [ + 11337295598, + 9987259769, + 12187390450, + 4136147003, + 42432458 + ], + "geometry": [ + { "lat": 40.7491239, "lon": -73.9745202 }, + { "lat": 40.7491819, "lon": -73.9744784 }, + { "lat": 40.7496532, "lon": -73.9741384 }, + { "lat": 40.7496794, "lon": -73.9741194 }, + { "lat": 40.7497428, "lon": -73.9740737 } + ], + "tags": { + "highway": "unclassified", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Tunnel Exit Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|none|right" + } +}, +{ + "type": "way", + "id": 742223038, + "bounds": { + "minlat": 40.8004474, + "minlon": -73.9946701, + "maxlat": 40.8007894, + "maxlon": -73.9945640 + }, + "nodes": [ + 103864259, + 6948739071, + 6948739068, + 6948739069, + 6948739070 + ], + "geometry": [ + { "lat": 40.8004474, "lon": -73.9946244 }, + { "lat": 40.8005075, "lon": -73.9946644 }, + { "lat": 40.8005162, "lon": -73.9946701 }, + { "lat": 40.8005952, "lon": -73.9946701 }, + { "lat": 40.8007894, "lon": -73.9945640 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 742223039, + "bounds": { + "minlat": 40.8014445, + "minlon": -73.9940242, + "maxlat": 40.8016667, + "maxlon": -73.9936628 + }, + "nodes": [ + 6948739072, + 13886816678, + 6948739075, + 6948739073, + 6948739074 + ], + "geometry": [ + { "lat": 40.8016667, "lon": -73.9936628 }, + { "lat": 40.8016664, "lon": -73.9937801 }, + { "lat": 40.8016663, "lon": -73.9938107 }, + { "lat": 40.8016662, "lon": -73.9938579 }, + { "lat": 40.8014445, "lon": -73.9940242 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 742223040, + "bounds": { + "minlat": 40.8016667, + "minlon": -73.9936628, + "maxlat": 40.8017144, + "maxlon": -73.9936609 + }, + "nodes": [ + 6948739072, + 5156502415 + ], + "geometry": [ + { "lat": 40.8016667, "lon": -73.9936628 }, + { "lat": 40.8017144, "lon": -73.9936609 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "shared_lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 742223041, + "bounds": { + "minlat": 40.8017144, + "minlon": -73.9936683, + "maxlat": 40.8018303, + "maxlon": -73.9936609 + }, + "nodes": [ + 5156502415, + 103137003 + ], + "geometry": [ + { "lat": 40.8017144, "lon": -73.9936609 }, + { "lat": 40.8018303, "lon": -73.9936683 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "shared_lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 742224093, + "bounds": { + "minlat": 40.8704758, + "minlon": -74.0131317, + "maxlat": 40.8707687, + "maxlon": -74.0126102 + }, + "nodes": [ + 6948768776, + 6948768777, + 6948768778, + 6948768779, + 6948768780, + 6948768781, + 6948768782, + 6948768783, + 6948768784 + ], + "geometry": [ + { "lat": 40.8706329, "lon": -74.0126102 }, + { "lat": 40.8707616, "lon": -74.0129639 }, + { "lat": 40.8707679, "lon": -74.0129920 }, + { "lat": 40.8707687, "lon": -74.0130167 }, + { "lat": 40.8707608, "lon": -74.0130390 }, + { "lat": 40.8707474, "lon": -74.0130531 }, + { "lat": 40.8707288, "lon": -74.0130672 }, + { "lat": 40.8706063, "lon": -74.0131317 }, + { "lat": 40.8704758, "lon": -74.0126808 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 742304364, + "bounds": { + "minlat": 40.7793238, + "minlon": -73.9197261, + "maxlat": 40.7798566, + "maxlon": -73.9190635 + }, + "nodes": [ + 6949440390, + 2753135616, + 7787351808, + 6949440391 + ], + "geometry": [ + { "lat": 40.7793238, "lon": -73.9197261 }, + { "lat": 40.7795569, "lon": -73.9194362 }, + { "lat": 40.7798168, "lon": -73.9191131 }, + { "lat": 40.7798566, "lon": -73.9190635 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 742336683, + "bounds": { + "minlat": 40.7829566, + "minlon": -73.9572833, + "maxlat": 40.7832443, + "maxlon": -73.9569930 + }, + "nodes": [ + 6949740442, + 7160238613, + 6949740426, + 6949740436, + 7160238616, + 6949740430 + ], + "geometry": [ + { "lat": 40.7829566, "lon": -73.9572833 }, + { "lat": 40.7829767, "lon": -73.9571311 }, + { "lat": 40.7829848, "lon": -73.9570701 }, + { "lat": 40.7830950, "lon": -73.9569930 }, + { "lat": 40.7831384, "lon": -73.9570159 }, + { "lat": 40.7832443, "lon": -73.9570719 } + ], + "tags": { + "access": "delivery", + "highway": "service", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 742639174, + "bounds": { + "minlat": 40.7528421, + "minlon": -73.9574057, + "maxlat": 40.7556966, + "maxlon": -73.9544144 + }, + "nodes": [ + 2300353444, + 9189040199, + 2300353442, + 2460850823, + 9189040200, + 42452767, + 9189040201, + 9012991088, + 9913659967, + 7964276900, + 7800922813, + 6323386765, + 10891946377, + 7800922794, + 2463309921, + 9913659968, + 9913659969, + 9913659970, + 9913659971, + 9913659972, + 9012991085, + 9913659974, + 9913659973, + 2300353437, + 2460850822, + 9189040203, + 9913659975, + 2460850820, + 2460850821, + 9189040204, + 9913659976, + 42447242 + ], + "geometry": [ + { "lat": 40.7556966, "lon": -73.9544144 }, + { "lat": 40.7556619, "lon": -73.9544810 }, + { "lat": 40.7556202, "lon": -73.9545565 }, + { "lat": 40.7555763, "lon": -73.9546233 }, + { "lat": 40.7555254, "lon": -73.9546942 }, + { "lat": 40.7554707, "lon": -73.9547607 }, + { "lat": 40.7554144, "lon": -73.9548185 }, + { "lat": 40.7553568, "lon": -73.9548756 }, + { "lat": 40.7552812, "lon": -73.9549462 }, + { "lat": 40.7549281, "lon": -73.9552753 }, + { "lat": 40.7547801, "lon": -73.9554153 }, + { "lat": 40.7547447, "lon": -73.9554502 }, + { "lat": 40.7544236, "lon": -73.9557467 }, + { "lat": 40.7539020, "lon": -73.9562284 }, + { "lat": 40.7538672, "lon": -73.9562632 }, + { "lat": 40.7537109, "lon": -73.9564069 }, + { "lat": 40.7536101, "lon": -73.9565039 }, + { "lat": 40.7535139, "lon": -73.9566001 }, + { "lat": 40.7534106, "lon": -73.9567093 }, + { "lat": 40.7532957, "lon": -73.9568316 }, + { "lat": 40.7531956, "lon": -73.9569416 }, + { "lat": 40.7531431, "lon": -73.9569977 }, + { "lat": 40.7530879, "lon": -73.9570538 }, + { "lat": 40.7528852, "lon": -73.9572612 }, + { "lat": 40.7528718, "lon": -73.9572759 }, + { "lat": 40.7528625, "lon": -73.9572883 }, + { "lat": 40.7528526, "lon": -73.9573074 }, + { "lat": 40.7528449, "lon": -73.9573286 }, + { "lat": 40.7528421, "lon": -73.9573505 }, + { "lat": 40.7528425, "lon": -73.9573700 }, + { "lat": 40.7528454, "lon": -73.9573927 }, + { "lat": 40.7528494, "lon": -73.9574057 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "no", + "highway": "unclassified", + "lanes": "1", + "lcn": "yes", + "maxspeed": "15 mph", + "name": "East Loop Road", + "name_1": "Main Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East", + "tiger:name_base_1": "Main", + "tiger:name_type": "Rd", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "width": "32'0\"" + } +}, +{ + "type": "way", + "id": 742811215, + "bounds": { + "minlat": 40.7921940, + "minlon": -73.9988663, + "maxlat": 40.7923852, + "maxlon": -73.9982697 + }, + "nodes": [ + 6953649479, + 6953649480, + 6953649481 + ], + "geometry": [ + { "lat": 40.7921940, "lon": -73.9982697 }, + { "lat": 40.7922445, "lon": -73.9984187 }, + { "lat": 40.7923852, "lon": -73.9988663 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 743206718, + "bounds": { + "minlat": 40.8371639, + "minlon": -73.9900606, + "maxlat": 40.8393700, + "maxlon": -73.9890390 + }, + "nodes": [ + 103295496, + 103318258, + 103318256, + 440215430 + ], + "geometry": [ + { "lat": 40.8393700, "lon": -73.9890390 }, + { "lat": 40.8375920, "lon": -73.9897890 }, + { "lat": 40.8372760, "lon": -73.9899850 }, + { "lat": 40.8371639, "lon": -73.9900606 } + ], + "tags": { + "highway": "residential", + "name": "Morningside Lane", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morningside", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 743229596, + "bounds": { + "minlat": 40.7620167, + "minlon": -73.9368086, + "maxlat": 40.7624609, + "maxlon": -73.9365022 + }, + "nodes": [ + 6956959120, + 6956959121, + 6956959122 + ], + "geometry": [ + { "lat": 40.7620167, "lon": -73.9368086 }, + { "lat": 40.7621129, "lon": -73.9367422 }, + { "lat": 40.7624609, "lon": -73.9365022 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 743229757, + "bounds": { + "minlat": 40.8350790, + "minlon": -73.9987150, + "maxlat": 40.8352227, + "maxlon": -73.9985764 + }, + "nodes": [ + 6877956706, + 6877956707 + ], + "geometry": [ + { "lat": 40.8352227, "lon": -73.9985764 }, + { "lat": 40.8350790, "lon": -73.9987150 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 743229758, + "bounds": { + "minlat": 40.8349255, + "minlon": -73.9985764, + "maxlat": 40.8352227, + "maxlon": -73.9980588 + }, + "nodes": [ + 6877956705, + 6877956706 + ], + "geometry": [ + { "lat": 40.8349255, "lon": -73.9980588 }, + { "lat": 40.8352227, "lon": -73.9985764 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 743338895, + "bounds": { + "minlat": 40.7820431, + "minlon": -73.9082164, + "maxlat": 40.7820891, + "maxlon": -73.9081558 + }, + "nodes": [ + 6957887080, + 6957887079 + ], + "geometry": [ + { "lat": 40.7820431, "lon": -73.9082164 }, + { "lat": 40.7820891, "lon": -73.9081558 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service", + "name": "27th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 743338896, + "bounds": { + "minlat": 40.7816621, + "minlon": -73.9086700, + "maxlat": 40.7820431, + "maxlon": -73.9082164 + }, + "nodes": [ + 5622072716, + 6957887080 + ], + "geometry": [ + { "lat": 40.7816621, "lon": -73.9086700 }, + { "lat": 40.7820431, "lon": -73.9082164 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "27th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 743358442, + "bounds": { + "minlat": 40.7599826, + "minlon": -73.9781816, + "maxlat": 40.7605973, + "maxlon": -73.9767177 + }, + "nodes": [ + 6958055831, + 8675870231, + 10842005392 + ], + "geometry": [ + { "lat": 40.7605973, "lon": -73.9781816 }, + { "lat": 40.7605358, "lon": -73.9780353 }, + { "lat": 40.7599826, "lon": -73.9767177 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 52nd Street", + "name:ru": "Западная 52-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 743358443, + "bounds": { + "minlat": 40.7567951, + "minlon": -73.9714431, + "maxlat": 40.7577574, + "maxlon": -73.9691579 + }, + "nodes": [ + 42446994, + 11070055768, + 10125255959, + 42449961, + 10125255960, + 10125255963, + 6958055832 + ], + "geometry": [ + { "lat": 40.7577574, "lon": -73.9714431 }, + { "lat": 40.7577181, "lon": -73.9713489 }, + { "lat": 40.7571471, "lon": -73.9699801 }, + { "lat": 40.7570985, "lon": -73.9698517 }, + { "lat": 40.7570416, "lon": -73.9697036 }, + { "lat": 40.7568465, "lon": -73.9692444 }, + { "lat": 40.7567951, "lon": -73.9691579 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 52nd Street", + "name:ru": "Восточная 52-я стрит", + "name_1": "East 52 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 743358444, + "bounds": { + "minlat": 40.7577574, + "minlon": -73.9731554, + "maxlat": 40.7584847, + "maxlon": -73.9714431 + }, + "nodes": [ + 596775914, + 42452875, + 10125233918, + 3790180110, + 3977886216, + 42446994 + ], + "geometry": [ + { "lat": 40.7584847, "lon": -73.9731554 }, + { "lat": 40.7584106, "lon": -73.9729808 }, + { "lat": 40.7583579, "lon": -73.9728570 }, + { "lat": 40.7580701, "lon": -73.9721792 }, + { "lat": 40.7578094, "lon": -73.9715655 }, + { "lat": 40.7577574, "lon": -73.9714431 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 52nd Street", + "name:ru": "Восточная 52-я стрит", + "name_1": "East 52 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 743358445, + "bounds": { + "minlat": 40.7551314, + "minlon": -73.9691579, + "maxlat": 40.7567951, + "maxlon": -73.9652321 + }, + "nodes": [ + 6958055832, + 10121802262, + 42442955, + 6175849568, + 10121802259, + 10121802258, + 42452882 + ], + "geometry": [ + { "lat": 40.7567951, "lon": -73.9691579 }, + { "lat": 40.7561971, "lon": -73.9677400 }, + { "lat": 40.7561457, "lon": -73.9676181 }, + { "lat": 40.7560855, "lon": -73.9674704 }, + { "lat": 40.7552209, "lon": -73.9654256 }, + { "lat": 40.7551996, "lon": -73.9653751 }, + { "lat": 40.7551314, "lon": -73.9652321 } + ], + "tags": { + "cycleway:right": "track", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 52nd Street", + "name:ru": "Восточная 52-я стрит", + "name_1": "East 52 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 744181148, + "bounds": { + "minlat": 40.8314645, + "minlon": -73.9796281, + "maxlat": 40.8316916, + "maxlon": -73.9789908 + }, + "nodes": [ + 6964853591, + 6964853590, + 6964853589, + 6964853588 + ], + "geometry": [ + { "lat": 40.8314645, "lon": -73.9789908 }, + { "lat": 40.8315363, "lon": -73.9792728 }, + { "lat": 40.8315962, "lon": -73.9792473 }, + { "lat": 40.8316916, "lon": -73.9796281 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 744181149, + "bounds": { + "minlat": 40.8313598, + "minlon": -73.9797857, + "maxlat": 40.8316916, + "maxlon": -73.9796281 + }, + "nodes": [ + 6964853587, + 6964853588 + ], + "geometry": [ + { "lat": 40.8313598, "lon": -73.9797857 }, + { "lat": 40.8316916, "lon": -73.9796281 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 744181150, + "bounds": { + "minlat": 40.8278313, + "minlon": -73.9833010, + "maxlat": 40.8291734, + "maxlon": -73.9809537 + }, + "nodes": [ + 6964853592, + 7538966444, + 7538966604, + 7538914183, + 7538748020, + 103168720 + ], + "geometry": [ + { "lat": 40.8278313, "lon": -73.9809537 }, + { "lat": 40.8279723, "lon": -73.9812002 }, + { "lat": 40.8280462, "lon": -73.9813296 }, + { "lat": 40.8280782, "lon": -73.9813855 }, + { "lat": 40.8291363, "lon": -73.9832361 }, + { "lat": 40.8291734, "lon": -73.9833010 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Franklin Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Franklin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 744181151, + "bounds": { + "minlat": 40.8281893, + "minlon": -73.9807549, + "maxlat": 40.8284703, + "maxlon": -73.9805989 + }, + "nodes": [ + 103226492, + 7538747878 + ], + "geometry": [ + { "lat": 40.8284703, "lon": -73.9805989 }, + { "lat": 40.8281893, "lon": -73.9807549 } + ], + "tags": { + "cycleway:right": "no", + "highway": "secondary", + "lanes": "2", + "name": "Palisade Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 744181152, + "bounds": { + "minlat": 40.8271172, + "minlon": -73.9813078, + "maxlat": 40.8277607, + "maxlon": -73.9808560 + }, + "nodes": [ + 1854444492, + 6964853600, + 5340819436, + 9432927273, + 103168718 + ], + "geometry": [ + { "lat": 40.8271172, "lon": -73.9813078 }, + { "lat": 40.8271925, "lon": -73.9812206 }, + { "lat": 40.8274940, "lon": -73.9810170 }, + { "lat": 40.8275445, "lon": -73.9809865 }, + { "lat": 40.8277607, "lon": -73.9808560 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "highway": "secondary", + "lanes": "2", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 744186214, + "bounds": { + "minlat": 40.8562255, + "minlon": -73.9797439, + "maxlat": 40.8563509, + "maxlon": -73.9794644 + }, + "nodes": [ + 6964899048, + 6964899049 + ], + "geometry": [ + { "lat": 40.8563509, "lon": -73.9797439 }, + { "lat": 40.8562255, "lon": -73.9794644 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 744186215, + "bounds": { + "minlat": 40.8533614, + "minlon": -73.9717850, + "maxlat": 40.8534867, + "maxlon": -73.9716404 + }, + "nodes": [ + 6964899050, + 6964899051 + ], + "geometry": [ + { "lat": 40.8533614, "lon": -73.9717850 }, + { "lat": 40.8534867, "lon": -73.9716404 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744186216, + "bounds": { + "minlat": 40.8534205, + "minlon": -73.9716404, + "maxlat": 40.8534867, + "maxlon": -73.9715392 + }, + "nodes": [ + 6964899051, + 6964899052 + ], + "geometry": [ + { "lat": 40.8534867, "lon": -73.9716404 }, + { "lat": 40.8534205, "lon": -73.9715392 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 744186217, + "bounds": { + "minlat": 40.8539253, + "minlon": -73.9719591, + "maxlat": 40.8541177, + "maxlon": -73.9717354 + }, + "nodes": [ + 6895010056, + 6964899054, + 6964899053 + ], + "geometry": [ + { "lat": 40.8541177, "lon": -73.9717354 }, + { "lat": 40.8540431, "lon": -73.9718221 }, + { "lat": 40.8539253, "lon": -73.9719591 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744186218, + "bounds": { + "minlat": 40.8538394, + "minlon": -73.9718221, + "maxlat": 40.8540431, + "maxlon": -73.9715091 + }, + "nodes": [ + 6964899054, + 6964899055 + ], + "geometry": [ + { "lat": 40.8540431, "lon": -73.9718221 }, + { "lat": 40.8538394, "lon": -73.9715091 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 744186219, + "bounds": { + "minlat": 40.8538730, + "minlon": -73.9715949, + "maxlat": 40.8541387, + "maxlon": -73.9712230 + }, + "nodes": [ + 103174607, + 6964899056, + 6964899057, + 6964899060 + ], + "geometry": [ + { "lat": 40.8538730, "lon": -73.9712230 }, + { "lat": 40.8539473, "lon": -73.9713621 }, + { "lat": 40.8541029, "lon": -73.9715949 }, + { "lat": 40.8541387, "lon": -73.9715580 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744186221, + "bounds": { + "minlat": 40.8541387, + "minlon": -73.9719978, + "maxlat": 40.8546950, + "maxlon": -73.9715580 + }, + "nodes": [ + 6964899060, + 6964899061, + 6964899059, + 6964899067 + ], + "geometry": [ + { "lat": 40.8541387, "lon": -73.9715580 }, + { "lat": 40.8544211, "lon": -73.9719978 }, + { "lat": 40.8545247, "lon": -73.9718890 }, + { "lat": 40.8546950, "lon": -73.9717973 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 744186222, + "bounds": { + "minlat": 40.8546950, + "minlon": -73.9719255, + "maxlat": 40.8548990, + "maxlon": -73.9717887 + }, + "nodes": [ + 6964899067, + 6964899068, + 6964899069 + ], + "geometry": [ + { "lat": 40.8546950, "lon": -73.9717973 }, + { "lat": 40.8547624, "lon": -73.9719255 }, + { "lat": 40.8548990, "lon": -73.9717887 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 744186223, + "bounds": { + "minlat": 40.8548288, + "minlon": -73.9717887, + "maxlat": 40.8548990, + "maxlon": -73.9716578 + }, + "nodes": [ + 6964899063, + 6964899069 + ], + "geometry": [ + { "lat": 40.8548288, "lon": -73.9716578 }, + { "lat": 40.8548990, "lon": -73.9717887 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 744186224, + "bounds": { + "minlat": 40.8456684, + "minlon": -73.9782403, + "maxlat": 40.8459374, + "maxlon": -73.9777907 + }, + "nodes": [ + 103186451, + 6964899071, + 6964899072, + 6964899073, + 6964899074, + 6964899075, + 6964899076 + ], + "geometry": [ + { "lat": 40.8456933, "lon": -73.9782403 }, + { "lat": 40.8456862, "lon": -73.9781420 }, + { "lat": 40.8456684, "lon": -73.9780933 }, + { "lat": 40.8456889, "lon": -73.9780355 }, + { "lat": 40.8457558, "lon": -73.9779724 }, + { "lat": 40.8458691, "lon": -73.9778713 }, + { "lat": 40.8459374, "lon": -73.9777907 } + ], + "tags": { + "highway": "residential", + "name": "Center Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 744189546, + "bounds": { + "minlat": 40.8336762, + "minlon": -73.9840515, + "maxlat": 40.8337701, + "maxlon": -73.9836269 + }, + "nodes": [ + 6964897177, + 6964897178, + 6964897179, + 6964897180 + ], + "geometry": [ + { "lat": 40.8337701, "lon": -73.9840515 }, + { "lat": 40.8336958, "lon": -73.9838252 }, + { "lat": 40.8336762, "lon": -73.9837226 }, + { "lat": 40.8336865, "lon": -73.9836269 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744189547, + "bounds": { + "minlat": 40.8338159, + "minlon": -73.9840024, + "maxlat": 40.8338932, + "maxlon": -73.9835502 + }, + "nodes": [ + 6964897181, + 6964897182, + 6964897183, + 6964897184 + ], + "geometry": [ + { "lat": 40.8338932, "lon": -73.9840024 }, + { "lat": 40.8338186, "lon": -73.9837117 }, + { "lat": 40.8338172, "lon": -73.9836152 }, + { "lat": 40.8338159, "lon": -73.9835502 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744189549, + "bounds": { + "minlat": 40.8339804, + "minlon": -73.9839057, + "maxlat": 40.8341185, + "maxlon": -73.9834816 + }, + "nodes": [ + 6964929489, + 6964929490, + 6964929491 + ], + "geometry": [ + { "lat": 40.8341185, "lon": -73.9839057 }, + { "lat": 40.8340097, "lon": -73.9834816 }, + { "lat": 40.8339804, "lon": -73.9834925 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744189550, + "bounds": { + "minlat": 40.8311904, + "minlon": -73.9866490, + "maxlat": 40.8313155, + "maxlon": -73.9863612 + }, + "nodes": [ + 6964929493, + 6964929494 + ], + "geometry": [ + { "lat": 40.8311904, "lon": -73.9863612 }, + { "lat": 40.8313155, "lon": -73.9866490 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744189551, + "bounds": { + "minlat": 40.8312970, + "minlon": -73.9865296, + "maxlat": 40.8314059, + "maxlon": -73.9862787 + }, + "nodes": [ + 6964929495, + 6964929496 + ], + "geometry": [ + { "lat": 40.8312970, "lon": -73.9862787 }, + { "lat": 40.8314059, "lon": -73.9865296 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744189552, + "bounds": { + "minlat": 40.8314097, + "minlon": -73.9864935, + "maxlat": 40.8315485, + "maxlon": -73.9861914 + }, + "nodes": [ + 6964929497, + 6964929498 + ], + "geometry": [ + { "lat": 40.8314097, "lon": -73.9861914 }, + { "lat": 40.8315485, "lon": -73.9864935 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744189553, + "bounds": { + "minlat": 40.8313803, + "minlon": -73.9871333, + "maxlat": 40.8315174, + "maxlon": -73.9868332 + }, + "nodes": [ + 6964929499, + 6964929500 + ], + "geometry": [ + { "lat": 40.8315174, "lon": -73.9871333 }, + { "lat": 40.8313803, "lon": -73.9868332 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744189554, + "bounds": { + "minlat": 40.8314665, + "minlon": -73.9870646, + "maxlat": 40.8316039, + "maxlon": -73.9867534 + }, + "nodes": [ + 6964929501, + 6964929502 + ], + "geometry": [ + { "lat": 40.8314665, "lon": -73.9867534 }, + { "lat": 40.8316039, "lon": -73.9870646 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744189555, + "bounds": { + "minlat": 40.8316467, + "minlon": -73.9862243, + "maxlat": 40.8318530, + "maxlon": -73.9860716 + }, + "nodes": [ + 6964929503, + 6964929504 + ], + "geometry": [ + { "lat": 40.8316467, "lon": -73.9862243 }, + { "lat": 40.8318530, "lon": -73.9860716 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744189556, + "bounds": { + "minlat": 40.8313677, + "minlon": -73.9855848, + "maxlat": 40.8315754, + "maxlon": -73.9854819 + }, + "nodes": [ + 6964929505, + 6964929506 + ], + "geometry": [ + { "lat": 40.8313677, "lon": -73.9855848 }, + { "lat": 40.8315754, "lon": -73.9854819 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744189557, + "bounds": { + "minlat": 40.8301087, + "minlon": -73.9855966, + "maxlat": 40.8304152, + "maxlon": -73.9848484 + }, + "nodes": [ + 103245957, + 6964929516 + ], + "geometry": [ + { "lat": 40.8304152, "lon": -73.9855966 }, + { "lat": 40.8301087, "lon": -73.9848484 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 744189558, + "bounds": { + "minlat": 40.8299597, + "minlon": -73.9849831, + "maxlat": 40.8301087, + "maxlon": -73.9848484 + }, + "nodes": [ + 6964929516, + 6964929517 + ], + "geometry": [ + { "lat": 40.8301087, "lon": -73.9848484 }, + { "lat": 40.8299597, "lon": -73.9849831 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 744189559, + "bounds": { + "minlat": 40.8314294, + "minlon": -73.9849388, + "maxlat": 40.8317517, + "maxlon": -73.9845122 + }, + "nodes": [ + 6964929518, + 6964929519, + 6964929520 + ], + "geometry": [ + { "lat": 40.8317517, "lon": -73.9849388 }, + { "lat": 40.8316410, "lon": -73.9845122 }, + { "lat": 40.8314294, "lon": -73.9846080 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 744189560, + "bounds": { + "minlat": 40.8316410, + "minlon": -73.9845122, + "maxlat": 40.8317325, + "maxlon": -73.9844714 + }, + "nodes": [ + 6964929519, + 6964929522 + ], + "geometry": [ + { "lat": 40.8316410, "lon": -73.9845122 }, + { "lat": 40.8317325, "lon": -73.9844714 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 744189561, + "bounds": { + "minlat": 40.8314294, + "minlon": -73.9850320, + "maxlat": 40.8315332, + "maxlon": -73.9846080 + }, + "nodes": [ + 6964929520, + 6964929521 + ], + "geometry": [ + { "lat": 40.8314294, "lon": -73.9846080 }, + { "lat": 40.8315332, "lon": -73.9850320 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 744189562, + "bounds": { + "minlat": 40.8313765, + "minlon": -73.9843980, + "maxlat": 40.8314812, + "maxlon": -73.9840281 + }, + "nodes": [ + 6964929523, + 6964929524 + ], + "geometry": [ + { "lat": 40.8313765, "lon": -73.9840281 }, + { "lat": 40.8314812, "lon": -73.9843980 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744189563, + "bounds": { + "minlat": 40.8316865, + "minlon": -73.9858469, + "maxlat": 40.8319468, + "maxlon": -73.9855879 + }, + "nodes": [ + 6964929525, + 6964929526, + 6964929527, + 6964929528 + ], + "geometry": [ + { "lat": 40.8317572, "lon": -73.9858469 }, + { "lat": 40.8319468, "lon": -73.9856988 }, + { "lat": 40.8318950, "lon": -73.9855879 }, + { "lat": 40.8316865, "lon": -73.9856878 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 744189564, + "bounds": { + "minlat": 40.8316374, + "minlon": -73.9926400, + "maxlat": 40.8318611, + "maxlon": -73.9922319 + }, + "nodes": [ + 6964929530, + 6964929531 + ], + "geometry": [ + { "lat": 40.8318611, "lon": -73.9926400 }, + { "lat": 40.8316374, "lon": -73.9922319 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744191262, + "bounds": { + "minlat": 40.8346070, + "minlon": -73.9847855, + "maxlat": 40.8346417, + "maxlon": -73.9846287 + }, + "nodes": [ + 6964944029, + 6964944030 + ], + "geometry": [ + { "lat": 40.8346417, "lon": -73.9847855 }, + { "lat": 40.8346070, "lon": -73.9846287 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744191263, + "bounds": { + "minlat": 40.8346166, + "minlon": -73.9842626, + "maxlat": 40.8348002, + "maxlon": -73.9841916 + }, + "nodes": [ + 6964944031, + 6964944032 + ], + "geometry": [ + { "lat": 40.8348002, "lon": -73.9841916 }, + { "lat": 40.8346166, "lon": -73.9842626 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744191266, + "bounds": { + "minlat": 40.8349486, + "minlon": -73.9840536, + "maxlat": 40.8350926, + "maxlon": -73.9835474 + }, + "nodes": [ + 6964944041, + 6964944042, + 6964944043 + ], + "geometry": [ + { "lat": 40.8350926, "lon": -73.9840536 }, + { "lat": 40.8350264, "lon": -73.9838689 }, + { "lat": 40.8349486, "lon": -73.9835474 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744191270, + "bounds": { + "minlat": 40.8353135, + "minlon": -73.9837141, + "maxlat": 40.8353925, + "maxlon": -73.9833904 + }, + "nodes": [ + 6964944056, + 6964944057 + ], + "geometry": [ + { "lat": 40.8353135, "lon": -73.9833904 }, + { "lat": 40.8353925, "lon": -73.9837141 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 744575412, + "bounds": { + "minlat": 40.8182534, + "minlon": -74.0127192, + "maxlat": 40.8189817, + "maxlon": -74.0112179 + }, + "nodes": [ + 4606021655, + 6968642616, + 6968642622, + 6968642617, + 6968642618, + 6968642619, + 6968642620 + ], + "geometry": [ + { "lat": 40.8189817, "lon": -74.0112179 }, + { "lat": 40.8189746, "lon": -74.0112878 }, + { "lat": 40.8188858, "lon": -74.0114097 }, + { "lat": 40.8186171, "lon": -74.0117787 }, + { "lat": 40.8182534, "lon": -74.0121705 }, + { "lat": 40.8182534, "lon": -74.0122324 }, + { "lat": 40.8185172, "lon": -74.0127192 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 744575413, + "bounds": { + "minlat": 40.8186171, + "minlon": -74.0123314, + "maxlat": 40.8189121, + "maxlon": -74.0117787 + }, + "nodes": [ + 6968642617, + 6968642621 + ], + "geometry": [ + { "lat": 40.8186171, "lon": -74.0117787 }, + { "lat": 40.8189121, "lon": -74.0123314 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 744575414, + "bounds": { + "minlat": 40.8188858, + "minlon": -74.0120076, + "maxlat": 40.8195053, + "maxlon": -74.0114097 + }, + "nodes": [ + 6968642622, + 6968642623, + 6968642624, + 6968642625 + ], + "geometry": [ + { "lat": 40.8188858, "lon": -74.0114097 }, + { "lat": 40.8191822, "lon": -74.0119952 }, + { "lat": 40.8192118, "lon": -74.0120076 }, + { "lat": 40.8195053, "lon": -74.0117580 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 744650324, + "bounds": { + "minlat": 40.8380072, + "minlon": -74.0120042, + "maxlat": 40.8384214, + "maxlon": -74.0100041 + }, + "nodes": [ + 6969360734, + 6969360735, + 6969360736, + 6969360743, + 6969360737, + 6969360738, + 6969360739, + 6969360740, + 6969360741, + 6969360742, + 6969360743 + ], + "geometry": [ + { "lat": 40.8380072, "lon": -74.0120042 }, + { "lat": 40.8380492, "lon": -74.0117929 }, + { "lat": 40.8380661, "lon": -74.0117319 }, + { "lat": 40.8383433, "lon": -74.0108957 }, + { "lat": 40.8384091, "lon": -74.0106972 }, + { "lat": 40.8384214, "lon": -74.0106281 }, + { "lat": 40.8384183, "lon": -74.0105671 }, + { "lat": 40.8381661, "lon": -74.0100041 }, + { "lat": 40.8380108, "lon": -74.0101220 }, + { "lat": 40.8382522, "lon": -74.0106952 }, + { "lat": 40.8383433, "lon": -74.0108957 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 744878370, + "bounds": { + "minlat": 40.8262055, + "minlon": -73.9744768, + "maxlat": 40.8265691, + "maxlon": -73.9743168 + }, + "nodes": [ + 6972088008, + 6972088009, + 6972088010, + 6972088011, + 6972088012 + ], + "geometry": [ + { "lat": 40.8262055, "lon": -73.9743789 }, + { "lat": 40.8262891, "lon": -73.9743168 }, + { "lat": 40.8263562, "lon": -73.9743869 }, + { "lat": 40.8264163, "lon": -73.9744768 }, + { "lat": 40.8265691, "lon": -73.9743343 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 744966475, + "bounds": { + "minlat": 40.8392443, + "minlon": -73.9132198, + "maxlat": 40.8395137, + "maxlon": -73.9130946 + }, + "nodes": [ + 2408355548, + 13535816395, + 2408355553 + ], + "geometry": [ + { "lat": 40.8392443, "lon": -73.9132198 }, + { "lat": 40.8393782, "lon": -73.9131565 }, + { "lat": 40.8395137, "lon": -73.9130946 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 745210837, + "bounds": { + "minlat": 40.8230894, + "minlon": -73.9372451, + "maxlat": 40.8240028, + "maxlon": -73.9350676 + }, + "nodes": [ + 6975790928, + 8758299308, + 6975790929, + 7043607054, + 6975790930 + ], + "geometry": [ + { "lat": 40.8240028, "lon": -73.9372451 }, + { "lat": 40.8239564, "lon": -73.9371277 }, + { "lat": 40.8238154, "lon": -73.9367722 }, + { "lat": 40.8232139, "lon": -73.9353662 }, + { "lat": 40.8230894, "lon": -73.9350676 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 745348498, + "bounds": { + "minlat": 40.7824048, + "minlon": -74.0130033, + "maxlat": 40.7828809, + "maxlon": -74.0123219 + }, + "nodes": [ + 6977104130, + 7658684712, + 6977104131, + 6977104132, + 7658684710, + 6977104133 + ], + "geometry": [ + { "lat": 40.7824048, "lon": -74.0130033 }, + { "lat": 40.7824462, "lon": -74.0129687 }, + { "lat": 40.7826178, "lon": -74.0128252 }, + { "lat": 40.7825047, "lon": -74.0126065 }, + { "lat": 40.7828542, "lon": -74.0123421 }, + { "lat": 40.7828809, "lon": -74.0123219 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 745348499, + "bounds": { + "minlat": 40.7823007, + "minlon": -74.0127778, + "maxlat": 40.7825047, + "maxlon": -74.0126065 + }, + "nodes": [ + 6977104132, + 7658684711, + 6977104134 + ], + "geometry": [ + { "lat": 40.7825047, "lon": -74.0126065 }, + { "lat": 40.7823422, "lon": -74.0127429 }, + { "lat": 40.7823007, "lon": -74.0127778 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 745528452, + "bounds": { + "minlat": 40.8652598, + "minlon": -73.9277837, + "maxlat": 40.8655188, + "maxlon": -73.9272948 + }, + "nodes": [ + 595729841, + 2052329270, + 13320061238 + ], + "geometry": [ + { "lat": 40.8652598, "lon": -73.9277837 }, + { "lat": 40.8654184, "lon": -73.9274931 }, + { "lat": 40.8655188, "lon": -73.9272948 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 745528453, + "bounds": { + "minlat": 40.8651182, + "minlon": -73.9280485, + "maxlat": 40.8652540, + "maxlon": -73.9277946 + }, + "nodes": [ + 9561386479, + 13320061239 + ], + "geometry": [ + { "lat": 40.8651182, "lon": -73.9280485 }, + { "lat": 40.8652540, "lon": -73.9277946 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 745617597, + "bounds": { + "minlat": 40.8253330, + "minlon": -73.9537502, + "maxlat": 40.8253994, + "maxlon": -73.9536789 + }, + "nodes": [ + 6979088367, + 6979088365 + ], + "geometry": [ + { "lat": 40.8253994, "lon": -73.9537502 }, + { "lat": 40.8253330, "lon": -73.9536789 } + ], + "tags": { + "highway": "residential", + "name": "West 142nd Street", + "name_1": "West 142 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "142nd", + "tiger:name_base_1": "142", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 745617598, + "bounds": { + "minlat": 40.8253994, + "minlon": -73.9537502, + "maxlat": 40.8258457, + "maxlon": -73.9530658 + }, + "nodes": [ + 42441952, + 6885524032, + 6885524031, + 12952255693, + 12952255692, + 6885524033, + 6979088367 + ], + "geometry": [ + { "lat": 40.8258457, "lon": -73.9530658 }, + { "lat": 40.8257896, "lon": -73.9531247 }, + { "lat": 40.8256339, "lon": -73.9533010 }, + { "lat": 40.8255863, "lon": -73.9533730 }, + { "lat": 40.8255137, "lon": -73.9534941 }, + { "lat": 40.8254900, "lon": -73.9535443 }, + { "lat": 40.8253994, "lon": -73.9537502 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 745617599, + "bounds": { + "minlat": 40.8253330, + "minlon": -73.9536789, + "maxlat": 40.8258092, + "maxlon": -73.9529804 + }, + "nodes": [ + 6979088365, + 6885524020, + 12952282860, + 6885524019, + 12952282859, + 6885524018, + 12952282847 + ], + "geometry": [ + { "lat": 40.8253330, "lon": -73.9536789 }, + { "lat": 40.8254356, "lon": -73.9534567 }, + { "lat": 40.8255014, "lon": -73.9533466 }, + { "lat": 40.8255753, "lon": -73.9532336 }, + { "lat": 40.8256409, "lon": -73.9531491 }, + { "lat": 40.8257529, "lon": -73.9530312 }, + { "lat": 40.8258092, "lon": -73.9529804 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 745621052, + "bounds": { + "minlat": 40.7857000, + "minlon": -74.0197604, + "maxlat": 40.7859554, + "maxlon": -74.0195712 + }, + "nodes": [ + 6979106676, + 7617909933, + 6979106678, + 6979106677 + ], + "geometry": [ + { "lat": 40.7859554, "lon": -74.0195712 }, + { "lat": 40.7859180, "lon": -74.0195998 }, + { "lat": 40.7858995, "lon": -74.0196134 }, + { "lat": 40.7857000, "lon": -74.0197604 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 745675478, + "bounds": { + "minlat": 40.8484968, + "minlon": -73.9306162, + "maxlat": 40.8486982, + "maxlon": -73.9304689 + }, + "nodes": [ + 42442738, + 9566869991, + 42442741 + ], + "geometry": [ + { "lat": 40.8484968, "lon": -73.9306162 }, + { "lat": 40.8486399, "lon": -73.9305115 }, + { "lat": 40.8486982, "lon": -73.9304689 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "secondary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 745864500, + "bounds": { + "minlat": 40.7235878, + "minlon": -73.9513851, + "maxlat": 40.7240970, + "maxlon": -73.9509780 + }, + "nodes": [ + 6980674614, + 6980674613, + 6039536258, + 6039536257, + 9789343605, + 42520377 + ], + "geometry": [ + { "lat": 40.7235878, "lon": -73.9513449 }, + { "lat": 40.7236646, "lon": -73.9513835 }, + { "lat": 40.7237206, "lon": -73.9513851 }, + { "lat": 40.7237448, "lon": -73.9513737 }, + { "lat": 40.7240375, "lon": -73.9510448 }, + { "lat": 40.7240970, "lon": -73.9509780 } + ], + "tags": { + "highway": "residential", + "loc_name": "Bedford Slip", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 746635597, + "bounds": { + "minlat": 40.7759832, + "minlon": -73.9320828, + "maxlat": 40.7771369, + "maxlon": -73.9314677 + }, + "nodes": [ + 6987137100, + 7768475540, + 6987137101 + ], + "geometry": [ + { "lat": 40.7759832, "lon": -73.9320828 }, + { "lat": 40.7760535, "lon": -73.9320453 }, + { "lat": 40.7771369, "lon": -73.9314677 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 747212443, + "bounds": { + "minlat": 40.7394574, + "minlon": -73.9506694, + "maxlat": 40.7397309, + "maxlon": -73.9502335 + }, + "nodes": [ + 6594517294, + 5849669677, + 6991706311 + ], + "geometry": [ + { "lat": 40.7397309, "lon": -73.9506694 }, + { "lat": 40.7395624, "lon": -73.9503988 }, + { "lat": 40.7394574, "lon": -73.9502335 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 747825744, + "bounds": { + "minlat": 40.7966023, + "minlon": -73.9742913, + "maxlat": 40.7969827, + "maxlon": -73.9741018 + }, + "nodes": [ + 6996574387, + 2029349943, + 595314123, + 2029349937, + 2029349935, + 2029349933, + 6996564318, + 42441382 + ], + "geometry": [ + { "lat": 40.7969827, "lon": -73.9741018 }, + { "lat": 40.7969287, "lon": -73.9741082 }, + { "lat": 40.7968684, "lon": -73.9741209 }, + { "lat": 40.7968199, "lon": -73.9741387 }, + { "lat": 40.7967715, "lon": -73.9741645 }, + { "lat": 40.7967140, "lon": -73.9742017 }, + { "lat": 40.7966559, "lon": -73.9742462 }, + { "lat": 40.7966023, "lon": -73.9742913 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:backward": "none|merge_to_left", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 747825750, + "bounds": { + "minlat": 40.7961187, + "minlon": -73.9748911, + "maxlat": 40.7966023, + "maxlon": -73.9742913 + }, + "nodes": [ + 42441382, + 6996574513, + 2029349932, + 2029349926, + 9168918359, + 2029349921, + 9168918358, + 595314119 + ], + "geometry": [ + { "lat": 40.7966023, "lon": -73.9742913 }, + { "lat": 40.7965506, "lon": -73.9743414 }, + { "lat": 40.7964647, "lon": -73.9744240 }, + { "lat": 40.7964124, "lon": -73.9744824 }, + { "lat": 40.7963513, "lon": -73.9745530 }, + { "lat": 40.7962940, "lon": -73.9746220 }, + { "lat": 40.7962385, "lon": -73.9747006 }, + { "lat": 40.7961187, "lon": -73.9748911 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 747908051, + "bounds": { + "minlat": 40.7488839, + "minlon": -73.9705351, + "maxlat": 40.7491240, + "maxlon": -73.9699706 + }, + "nodes": [ + 6997311896, + 3569749107, + 42455929 + ], + "geometry": [ + { "lat": 40.7491240, "lon": -73.9705351 }, + { "lat": 40.7489203, "lon": -73.9700536 }, + { "lat": 40.7488839, "lon": -73.9699706 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxheight:signed": "no", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "|merge_to_left", + "turn:lanes:forward": "left|", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 747908052, + "bounds": { + "minlat": 40.7496650, + "minlon": -73.9721997, + "maxlat": 40.7498334, + "maxlon": -73.9718154 + }, + "nodes": [ + 42442937, + 4011396596, + 11440124181, + 6997311897 + ], + "geometry": [ + { "lat": 40.7498334, "lon": -73.9721997 }, + { "lat": 40.7497715, "lon": -73.9720631 }, + { "lat": 40.7497481, "lon": -73.9720082 }, + { "lat": 40.7496650, "lon": -73.9718154 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|yes|designated", + "busway": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through|", + "turn:lanes:forward": "left|through", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 747908053, + "bounds": { + "minlat": 40.7491240, + "minlon": -73.9718154, + "maxlat": 40.7496650, + "maxlon": -73.9705351 + }, + "nodes": [ + 6997311897, + 6997311896 + ], + "geometry": [ + { "lat": 40.7496650, "lon": -73.9718154 }, + { "lat": 40.7491240, "lon": -73.9705351 } + ], + "tags": { + "bus:lanes": "yes|designated", + "busway": "lane", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 748610102, + "bounds": { + "minlat": 40.8737398, + "minlon": -73.9550011, + "maxlat": 40.8743466, + "maxlon": -73.9543566 + }, + "nodes": [ + 7000992650, + 7000992651, + 7000992652, + 7000992653, + 7000992654 + ], + "geometry": [ + { "lat": 40.8743466, "lon": -73.9550011 }, + { "lat": 40.8741434, "lon": -73.9546115 }, + { "lat": 40.8740045, "lon": -73.9543566 }, + { "lat": 40.8738189, "lon": -73.9545283 }, + { "lat": 40.8737398, "lon": -73.9546017 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 749710223, + "bounds": { + "minlat": 40.8062740, + "minlon": -73.9263975, + "maxlat": 40.8114982, + "maxlon": -73.9141000 + }, + "nodes": [ + 42743521, + 13809174867, + 10154430609, + 7043090372, + 42763143, + 9908650975, + 9908650973, + 42761025, + 9908650972, + 9632503728, + 5309056465, + 9908621367, + 42761235, + 9908621368, + 12040821214, + 13729948275, + 12040821209, + 5482371874, + 9908621509, + 42732872, + 9908621511, + 12040837175, + 9163778725, + 9163778726, + 9163778727, + 2826997295 + ], + "geometry": [ + { "lat": 40.8062740, "lon": -73.9141000 }, + { "lat": 40.8063168, "lon": -73.9142013 }, + { "lat": 40.8065836, "lon": -73.9148325 }, + { "lat": 40.8066169, "lon": -73.9149114 }, + { "lat": 40.8075060, "lon": -73.9170150 }, + { "lat": 40.8075539, "lon": -73.9171161 }, + { "lat": 40.8082252, "lon": -73.9186981 }, + { "lat": 40.8082698, "lon": -73.9188073 }, + { "lat": 40.8083089, "lon": -73.9189016 }, + { "lat": 40.8085640, "lon": -73.9195090 }, + { "lat": 40.8087160, "lon": -73.9198701 }, + { "lat": 40.8097322, "lon": -73.9222800 }, + { "lat": 40.8097761, "lon": -73.9223837 }, + { "lat": 40.8098218, "lon": -73.9224930 }, + { "lat": 40.8098373, "lon": -73.9225295 }, + { "lat": 40.8101109, "lon": -73.9231755 }, + { "lat": 40.8101612, "lon": -73.9232944 }, + { "lat": 40.8105146, "lon": -73.9241289 }, + { "lat": 40.8106794, "lon": -73.9245261 }, + { "lat": 40.8107290, "lon": -73.9246451 }, + { "lat": 40.8107833, "lon": -73.9247734 }, + { "lat": 40.8110925, "lon": -73.9254964 }, + { "lat": 40.8114042, "lon": -73.9262282 }, + { "lat": 40.8114377, "lon": -73.9262908 }, + { "lat": 40.8114669, "lon": -73.9263491 }, + { "lat": 40.8114982, "lon": -73.9263975 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 139th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "139th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 749710224, + "bounds": { + "minlat": 40.8047194, + "minlon": -73.9124649, + "maxlat": 40.8051645, + "maxlon": -73.9114740 + }, + "nodes": [ + 596271051, + 9156970116, + 7672343318, + 12088432097, + 9156979717, + 596271056, + 13003720151, + 42753396 + ], + "geometry": [ + { "lat": 40.8051645, "lon": -73.9114740 }, + { "lat": 40.8050311, "lon": -73.9117693 }, + { "lat": 40.8049777, "lon": -73.9118922 }, + { "lat": 40.8049218, "lon": -73.9120170 }, + { "lat": 40.8049106, "lon": -73.9120419 }, + { "lat": 40.8048368, "lon": -73.9122089 }, + { "lat": 40.8047645, "lon": -73.9123672 }, + { "lat": 40.8047194, "lon": -73.9124649 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 749923140, + "bounds": { + "minlat": 40.7918074, + "minlon": -73.9634292, + "maxlat": 40.7919263, + "maxlon": -73.9630405 + }, + "nodes": [ + 7012450754, + 9906892378, + 9906892379, + 595704145 + ], + "geometry": [ + { "lat": 40.7918074, "lon": -73.9630405 }, + { "lat": 40.7918683, "lon": -73.9632540 }, + { "lat": 40.7918975, "lon": -73.9633464 }, + { "lat": 40.7919263, "lon": -73.9634292 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "foot": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxheight:forward": "9'11\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "oneway": "yes", + "parking:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 749923141, + "bounds": { + "minlat": 40.7919263, + "minlon": -73.9641772, + "maxlat": 40.7923773, + "maxlon": -73.9634292 + }, + "nodes": [ + 595704145, + 6907095260, + 7106607086, + 7106580380, + 7106607089, + 9170867871, + 7779666010, + 42425232 + ], + "geometry": [ + { "lat": 40.7919263, "lon": -73.9634292 }, + { "lat": 40.7919576, "lon": -73.9634914 }, + { "lat": 40.7920007, "lon": -73.9635580 }, + { "lat": 40.7921279, "lon": -73.9637498 }, + { "lat": 40.7921800, "lon": -73.9638324 }, + { "lat": 40.7922349, "lon": -73.9639274 }, + { "lat": 40.7923052, "lon": -73.9640597 }, + { "lat": 40.7923773, "lon": -73.9641772 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "foot": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxheight": "9'11\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "oneway": "yes", + "parking:both": "no", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 750041545, + "bounds": { + "minlat": 40.8278635, + "minlon": -73.9804801, + "maxlat": 40.8279956, + "maxlon": -73.9804516 + }, + "nodes": [ + 5691967821, + 7533716666 + ], + "geometry": [ + { "lat": 40.8279956, "lon": -73.9804801 }, + { "lat": 40.8278635, "lon": -73.9804516 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Winston Drive", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Winston", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 750072313, + "bounds": { + "minlat": 40.7183918, + "minlon": -73.9798974, + "maxlat": 40.7186757, + "maxlon": -73.9795564 + }, + "nodes": [ + 7013873967, + 8310246393, + 13302408458, + 7013873968, + 7013873969, + 7013873970 + ], + "geometry": [ + { "lat": 40.7183918, "lon": -73.9795564 }, + { "lat": 40.7184306, "lon": -73.9796617 }, + { "lat": 40.7184355, "lon": -73.9796849 }, + { "lat": 40.7184890, "lon": -73.9798205 }, + { "lat": 40.7186316, "lon": -73.9797515 }, + { "lat": 40.7186757, "lon": -73.9798974 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 750106974, + "bounds": { + "minlat": 40.7724552, + "minlon": -74.0127390, + "maxlat": 40.7727298, + "maxlon": -74.0124642 + }, + "nodes": [ + 2325759408, + 7014207498, + 7014207499, + 7014207500, + 7014207501 + ], + "geometry": [ + { "lat": 40.7727298, "lon": -74.0127390 }, + { "lat": 40.7726613, "lon": -74.0125876 }, + { "lat": 40.7726075, "lon": -74.0125876 }, + { "lat": 40.7725344, "lon": -74.0126399 }, + { "lat": 40.7724552, "lon": -74.0124642 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 750163057, + "bounds": { + "minlat": 40.7011409, + "minlon": -73.9923636, + "maxlat": 40.7015508, + "maxlon": -73.9916089 + }, + "nodes": [ + 465132520, + 10739408405, + 7014570038, + 13765677499, + 7014570039, + 13765677500, + 7014570040, + 7014570041, + 7014570042, + 7014570043, + 7014570044, + 7014570045, + 7014570046, + 7014570047, + 10245966669, + 7014570048 + ], + "geometry": [ + { "lat": 40.7015508, "lon": -73.9923636 }, + { "lat": 40.7014882, "lon": -73.9923407 }, + { "lat": 40.7014572, "lon": -73.9923294 }, + { "lat": 40.7014031, "lon": -73.9923141 }, + { "lat": 40.7013958, "lon": -73.9923090 }, + { "lat": 40.7013932, "lon": -73.9922954 }, + { "lat": 40.7014065, "lon": -73.9921788 }, + { "lat": 40.7013919, "lon": -73.9921117 }, + { "lat": 40.7012755, "lon": -73.9919658 }, + { "lat": 40.7011808, "lon": -73.9918373 }, + { "lat": 40.7011489, "lon": -73.9917871 }, + { "lat": 40.7011409, "lon": -73.9917649 }, + { "lat": 40.7011423, "lon": -73.9917352 }, + { "lat": 40.7011674, "lon": -73.9917045 }, + { "lat": 40.7011845, "lon": -73.9916737 }, + { "lat": 40.7012292, "lon": -73.9916089 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 750381542, + "bounds": { + "minlat": 40.8598335, + "minlon": -73.9298795, + "maxlat": 40.8604837, + "maxlon": -73.9295436 + }, + "nodes": [ + 7016431217, + 9561314707, + 7016431218, + 7016431220, + 7016431221 + ], + "geometry": [ + { "lat": 40.8598335, "lon": -73.9295436 }, + { "lat": 40.8599274, "lon": -73.9296028 }, + { "lat": 40.8599607, "lon": -73.9296238 }, + { "lat": 40.8603657, "lon": -73.9298795 }, + { "lat": 40.8604837, "lon": -73.9295527 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 750397940, + "bounds": { + "minlat": 40.8096632, + "minlon": -73.9934721, + "maxlat": 40.8098828, + "maxlon": -73.9933280 + }, + "nodes": [ + 7016571778, + 7016571779 + ], + "geometry": [ + { "lat": 40.8096632, "lon": -73.9934721 }, + { "lat": 40.8098828, "lon": -73.9933280 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 750397941, + "bounds": { + "minlat": 40.8097614, + "minlon": -73.9930963, + "maxlat": 40.8098197, + "maxlon": -73.9929406 + }, + "nodes": [ + 7016571780, + 7016571781 + ], + "geometry": [ + { "lat": 40.8097614, "lon": -73.9929406 }, + { "lat": 40.8098197, "lon": -73.9930963 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 750437045, + "bounds": { + "minlat": 40.7131572, + "minlon": -73.9605067, + "maxlat": 40.7132486, + "maxlon": -73.9602815 + }, + "nodes": [ + 7016889831, + 10011195535, + 7016889833, + 7016889832 + ], + "geometry": [ + { "lat": 40.7131572, "lon": -73.9602815 }, + { "lat": 40.7131887, "lon": -73.9603591 }, + { "lat": 40.7132007, "lon": -73.9603887 }, + { "lat": 40.7132486, "lon": -73.9605067 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 751393516, + "bounds": { + "minlat": 40.8004358, + "minlon": -73.9578742, + "maxlat": 40.8009879, + "maxlon": -73.9575823 + }, + "nodes": [ + 7024230434, + 12016010901, + 7024230438, + 7024230431, + 7024230443, + 7024230436, + 11296188165, + 12016010902, + 7024230446 + ], + "geometry": [ + { "lat": 40.8004358, "lon": -73.9576591 }, + { "lat": 40.8004946, "lon": -73.9576232 }, + { "lat": 40.8005222, "lon": -73.9576063 }, + { "lat": 40.8006166, "lon": -73.9575823 }, + { "lat": 40.8007076, "lon": -73.9575911 }, + { "lat": 40.8008236, "lon": -73.9576584 }, + { "lat": 40.8009215, "lon": -73.9577869 }, + { "lat": 40.8009416, "lon": -73.9578133 }, + { "lat": 40.8009879, "lon": -73.9578742 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 751519253, + "bounds": { + "minlat": 40.7791748, + "minlon": -74.0127567, + "maxlat": 40.7795750, + "maxlon": -74.0122850 + }, + "nodes": [ + 7025587910, + 7468537700, + 7025587911, + 7025587912, + 7025587913, + 7025587914, + 7025587915, + 7025587916, + 7025587917, + 7025587918, + 7025587919, + 7468537701, + 7025587920 + ], + "geometry": [ + { "lat": 40.7791748, "lon": -74.0124528 }, + { "lat": 40.7792266, "lon": -74.0124094 }, + { "lat": 40.7792926, "lon": -74.0123541 }, + { "lat": 40.7793826, "lon": -74.0122860 }, + { "lat": 40.7794196, "lon": -74.0122850 }, + { "lat": 40.7794527, "lon": -74.0122941 }, + { "lat": 40.7794819, "lon": -74.0123348 }, + { "lat": 40.7795435, "lon": -74.0124516 }, + { "lat": 40.7795750, "lon": -74.0125380 }, + { "lat": 40.7795727, "lon": -74.0125573 }, + { "lat": 40.7795589, "lon": -74.0125777 }, + { "lat": 40.7793696, "lon": -74.0127194 }, + { "lat": 40.7793198, "lon": -74.0127567 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 751548900, + "bounds": { + "minlat": 40.7824114, + "minlon": -74.0147535, + "maxlat": 40.7828290, + "maxlon": -74.0143097 + }, + "nodes": [ + 7025877575, + 7617909996, + 7025877576, + 7025877577, + 7025877578, + 7025877579 + ], + "geometry": [ + { "lat": 40.7824114, "lon": -74.0143097 }, + { "lat": 40.7824338, "lon": -74.0143943 }, + { "lat": 40.7824418, "lon": -74.0144242 }, + { "lat": 40.7825293, "lon": -74.0146309 }, + { "lat": 40.7825832, "lon": -74.0147535 }, + { "lat": 40.7828290, "lon": -74.0145538 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 751784379, + "bounds": { + "minlat": 40.8297465, + "minlon": -73.9724406, + "maxlat": 40.8298498, + "maxlon": -73.9718986 + }, + "nodes": [ + 7027800260, + 7672312273, + 7027800261, + 7027800262, + 7027800263 + ], + "geometry": [ + { "lat": 40.8298498, "lon": -73.9718986 }, + { "lat": 40.8298269, "lon": -73.9720184 }, + { "lat": 40.8298174, "lon": -73.9720681 }, + { "lat": 40.8297625, "lon": -73.9723486 }, + { "lat": 40.8297465, "lon": -73.9724406 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 751784380, + "bounds": { + "minlat": 40.8298498, + "minlon": -73.9719227, + "maxlat": 40.8299216, + "maxlon": -73.9718986 + }, + "nodes": [ + 7027800260, + 4205789011 + ], + "geometry": [ + { "lat": 40.8298498, "lon": -73.9718986 }, + { "lat": 40.8299216, "lon": -73.9719227 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 751784381, + "bounds": { + "minlat": 40.8298033, + "minlon": -73.9718986, + "maxlat": 40.8298498, + "maxlon": -73.9718830 + }, + "nodes": [ + 5362451467, + 7027800260 + ], + "geometry": [ + { "lat": 40.8298033, "lon": -73.9718830 }, + { "lat": 40.8298498, "lon": -73.9718986 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 751984672, + "bounds": { + "minlat": 40.8261001, + "minlon": -73.9207339, + "maxlat": 40.8262423, + "maxlon": -73.9202932 + }, + "nodes": [ + 13267216289, + 7029503714, + 12163704742, + 7029503723, + 7029503719 + ], + "geometry": [ + { "lat": 40.8262423, "lon": -73.9207339 }, + { "lat": 40.8262030, "lon": -73.9206086 }, + { "lat": 40.8261564, "lon": -73.9204671 }, + { "lat": 40.8261343, "lon": -73.9204011 }, + { "lat": 40.8261001, "lon": -73.9202932 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 751984673, + "bounds": { + "minlat": 40.8261786, + "minlon": -73.9207181, + "maxlat": 40.8262820, + "maxlon": -73.9202471 + }, + "nodes": [ + 42731617, + 7029503724, + 12163704743, + 9910729387, + 7029503713 + ], + "geometry": [ + { "lat": 40.8261786, "lon": -73.9202471 }, + { "lat": 40.8261901, "lon": -73.9203574 }, + { "lat": 40.8262064, "lon": -73.9204248 }, + { "lat": 40.8262444, "lon": -73.9205899 }, + { "lat": 40.8262820, "lon": -73.9207181 } + ], + "tags": { + "busway:right": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 751984674, + "bounds": { + "minlat": 40.8237172, + "minlon": -73.9132578, + "maxlat": 40.8240134, + "maxlon": -73.9122075 + }, + "nodes": [ + 9917683059, + 471221429, + 9917683060, + 9917683062, + 42748177 + ], + "geometry": [ + { "lat": 40.8240134, "lon": -73.9132578 }, + { "lat": 40.8237372, "lon": -73.9123551 }, + { "lat": 40.8237238, "lon": -73.9122956 }, + { "lat": 40.8237214, "lon": -73.9122574 }, + { "lat": 40.8237172, "lon": -73.9122075 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 751984675, + "bounds": { + "minlat": 40.8260338, + "minlon": -73.9202932, + "maxlat": 40.8261001, + "maxlon": -73.9200857 + }, + "nodes": [ + 7029503719, + 7029503726, + 7029503718 + ], + "geometry": [ + { "lat": 40.8261001, "lon": -73.9202932 }, + { "lat": 40.8260715, "lon": -73.9202049 }, + { "lat": 40.8260338, "lon": -73.9200857 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 751984676, + "bounds": { + "minlat": 40.8256646, + "minlon": -73.9204269, + "maxlat": 40.8261001, + "maxlon": -73.9202932 + }, + "nodes": [ + 7029503719, + 12038479025, + 7564382196, + 7564382197, + 5539543954 + ], + "geometry": [ + { "lat": 40.8261001, "lon": -73.9202932 }, + { "lat": 40.8260445, "lon": -73.9203237 }, + { "lat": 40.8260104, "lon": -73.9203424 }, + { "lat": 40.8258771, "lon": -73.9203143 }, + { "lat": 40.8256646, "lon": -73.9204269 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 751984677, + "bounds": { + "minlat": 40.8257251, + "minlon": -73.9200857, + "maxlat": 40.8260338, + "maxlon": -73.9188800 + }, + "nodes": [ + 7029503718, + 13018344350, + 12163704747, + 7029503727, + 9910729386, + 7029503715, + 7029503716, + 7029503717 + ], + "geometry": [ + { "lat": 40.8260338, "lon": -73.9200857 }, + { "lat": 40.8260192, "lon": -73.9200396 }, + { "lat": 40.8258703, "lon": -73.9195701 }, + { "lat": 40.8258430, "lon": -73.9194843 }, + { "lat": 40.8258307, "lon": -73.9194427 }, + { "lat": 40.8258163, "lon": -73.9193903 }, + { "lat": 40.8257754, "lon": -73.9192258 }, + { "lat": 40.8257251, "lon": -73.9188800 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 751984684, + "bounds": { + "minlat": 40.8264819, + "minlon": -73.9211006, + "maxlat": 40.8326080, + "maxlon": -73.9176090 + }, + "nodes": [ + 2408448899, + 9917683040, + 42732911, + 13033441583, + 42739694, + 13033441570, + 2829127625, + 13036753051, + 42742392, + 13036753048, + 13018326301, + 11118481026, + 42781404, + 13018326307, + 7104267533, + 8187805325, + 13036711393, + 42768828, + 13036711399, + 8187805234, + 13038896176, + 42747568 + ], + "geometry": [ + { "lat": 40.8264819, "lon": -73.9211006 }, + { "lat": 40.8265381, "lon": -73.9210666 }, + { "lat": 40.8272110, "lon": -73.9206940 }, + { "lat": 40.8280396, "lon": -73.9202345 }, + { "lat": 40.8281000, "lon": -73.9202010 }, + { "lat": 40.8281653, "lon": -73.9201650 }, + { "lat": 40.8291144, "lon": -73.9196425 }, + { "lat": 40.8296172, "lon": -73.9193605 }, + { "lat": 40.8297020, "lon": -73.9193130 }, + { "lat": 40.8297726, "lon": -73.9192716 }, + { "lat": 40.8302197, "lon": -73.9190091 }, + { "lat": 40.8302823, "lon": -73.9189723 }, + { "lat": 40.8303971, "lon": -73.9189089 }, + { "lat": 40.8304635, "lon": -73.9188697 }, + { "lat": 40.8309228, "lon": -73.9185988 }, + { "lat": 40.8313381, "lon": -73.9183560 }, + { "lat": 40.8313642, "lon": -73.9183408 }, + { "lat": 40.8314220, "lon": -73.9183070 }, + { "lat": 40.8314912, "lon": -73.9182663 }, + { "lat": 40.8325179, "lon": -73.9176620 }, + { "lat": 40.8325492, "lon": -73.9176437 }, + { "lat": 40.8326080, "lon": -73.9176090 } + ], + "tags": { + "highway": "residential", + "name": "Sheridan Avenue", + "name:etymology:wikidata": "Q355452", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sheridan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 751984685, + "bounds": { + "minlat": 40.8264819, + "minlon": -73.9224902, + "maxlat": 40.8269250, + "maxlon": -73.9211006 + }, + "nodes": [ + 2408448899, + 2411145324, + 13052222526, + 12163704734, + 5762096230, + 2408446154 + ], + "geometry": [ + { "lat": 40.8264819, "lon": -73.9211006 }, + { "lat": 40.8265066, "lon": -73.9211991 }, + { "lat": 40.8267353, "lon": -73.9219025 }, + { "lat": 40.8268720, "lon": -73.9223231 }, + { "lat": 40.8268931, "lon": -73.9223881 }, + { "lat": 40.8269250, "lon": -73.9224902 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 752012309, + "bounds": { + "minlat": 40.8248590, + "minlon": -73.9121150, + "maxlat": 40.8251197, + "maxlon": -73.9112930 + }, + "nodes": [ + 471223464, + 9917683078, + 42739733 + ], + "geometry": [ + { "lat": 40.8251197, "lon": -73.9121150 }, + { "lat": 40.8248940, "lon": -73.9114011 }, + { "lat": 40.8248590, "lon": -73.9112930 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 163rd Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 752035072, + "bounds": { + "minlat": 40.7625620, + "minlon": -74.0013229, + "maxlat": 40.7627069, + "maxlon": -74.0010629 + }, + "nodes": [ + 7029870573, + 7029870572, + 7029870567, + 7029870571, + 7029870570, + 7029870568, + 7029870569 + ], + "geometry": [ + { "lat": 40.7627069, "lon": -74.0010629 }, + { "lat": 40.7626890, "lon": -74.0011543 }, + { "lat": 40.7626854, "lon": -74.0012395 }, + { "lat": 40.7626874, "lon": -74.0013229 }, + { "lat": 40.7626509, "lon": -74.0012864 }, + { "lat": 40.7626026, "lon": -74.0012655 }, + { "lat": 40.7625620, "lon": -74.0012678 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 752165194, + "bounds": { + "minlat": 40.8275807, + "minlon": -73.9736195, + "maxlat": 40.8278155, + "maxlon": -73.9730926 + }, + "nodes": [ + 7030913390, + 12068970354, + 7030913391, + 7030913392, + 12068970352, + 12068970351, + 12068970353, + 7030913393, + 7030913395 + ], + "geometry": [ + { "lat": 40.8276086, "lon": -73.9730926 }, + { "lat": 40.8276813, "lon": -73.9732862 }, + { "lat": 40.8277149, "lon": -73.9733341 }, + { "lat": 40.8277848, "lon": -73.9733778 }, + { "lat": 40.8278021, "lon": -73.9733948 }, + { "lat": 40.8278122, "lon": -73.9734165 }, + { "lat": 40.8278155, "lon": -73.9734440 }, + { "lat": 40.8278095, "lon": -73.9734677 }, + { "lat": 40.8275807, "lon": -73.9736195 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 752165195, + "bounds": { + "minlat": 40.8275422, + "minlon": -73.9734461, + "maxlat": 40.8277149, + "maxlon": -73.9733341 + }, + "nodes": [ + 7030913391, + 7030913398 + ], + "geometry": [ + { "lat": 40.8277149, "lon": -73.9733341 }, + { "lat": 40.8275422, "lon": -73.9734461 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 752165196, + "bounds": { + "minlat": 40.8274379, + "minlon": -73.9734461, + "maxlat": 40.8275422, + "maxlon": -73.9732037 + }, + "nodes": [ + 7030913398, + 7030913399 + ], + "geometry": [ + { "lat": 40.8275422, "lon": -73.9734461 }, + { "lat": 40.8274379, "lon": -73.9732037 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 752165197, + "bounds": { + "minlat": 40.8272996, + "minlon": -73.9738065, + "maxlat": 40.8275015, + "maxlon": -73.9736728 + }, + "nodes": [ + 7030913396, + 7030913397 + ], + "geometry": [ + { "lat": 40.8275015, "lon": -73.9736728 }, + { "lat": 40.8272996, "lon": -73.9738065 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 752165198, + "bounds": { + "minlat": 40.8275015, + "minlon": -73.9736728, + "maxlat": 40.8275807, + "maxlon": -73.9736195 + }, + "nodes": [ + 7030913395, + 7030913396 + ], + "geometry": [ + { "lat": 40.8275807, "lon": -73.9736195 }, + { "lat": 40.8275015, "lon": -73.9736728 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 752841623, + "bounds": { + "minlat": 40.7057964, + "minlon": -73.9357800, + "maxlat": 40.7058607, + "maxlon": -73.9354309 + }, + "nodes": [ + 7034559395, + 7034559396, + 7034559397 + ], + "geometry": [ + { "lat": 40.7058607, "lon": -73.9354309 }, + { "lat": 40.7058444, "lon": -73.9355115 }, + { "lat": 40.7057964, "lon": -73.9357800 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 753233073, + "bounds": { + "minlat": 40.8748797, + "minlon": -73.9091753, + "maxlat": 40.8754084, + "maxlon": -73.9084602 + }, + "nodes": [ + 7037961247, + 10128431597, + 7037961248, + 10128431595, + 10128431593, + 7037961249, + 7037961250, + 7037961251, + 7037961252, + 10128431594, + 10128431596, + 7037961254, + 7037961255 + ], + "geometry": [ + { "lat": 40.8749137, "lon": -73.9091753 }, + { "lat": 40.8748919, "lon": -73.9090439 }, + { "lat": 40.8748797, "lon": -73.9089699 }, + { "lat": 40.8748800, "lon": -73.9089170 }, + { "lat": 40.8748873, "lon": -73.9088693 }, + { "lat": 40.8749312, "lon": -73.9087908 }, + { "lat": 40.8751527, "lon": -73.9085170 }, + { "lat": 40.8752001, "lon": -73.9084763 }, + { "lat": 40.8752380, "lon": -73.9084614 }, + { "lat": 40.8752833, "lon": -73.9084602 }, + { "lat": 40.8753254, "lon": -73.9084860 }, + { "lat": 40.8753438, "lon": -73.9084973 }, + { "lat": 40.8754084, "lon": -73.9085458 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753233074, + "bounds": { + "minlat": 40.8738994, + "minlon": -73.9066896, + "maxlat": 40.8745457, + "maxlon": -73.9062839 + }, + "nodes": [ + 7037961256, + 10128431637, + 7037961257, + 10128431633, + 7037961258, + 10128431634, + 7037961259, + 10128431635, + 7037961260, + 10128431636, + 7037961261 + ], + "geometry": [ + { "lat": 40.8738994, "lon": -73.9065278 }, + { "lat": 40.8739547, "lon": -73.9065879 }, + { "lat": 40.8740301, "lon": -73.9066701 }, + { "lat": 40.8740700, "lon": -73.9066896 }, + { "lat": 40.8741085, "lon": -73.9066854 }, + { "lat": 40.8744781, "lon": -73.9065440 }, + { "lat": 40.8745095, "lon": -73.9065146 }, + { "lat": 40.8745325, "lon": -73.9064602 }, + { "lat": 40.8745422, "lon": -73.9064118 }, + { "lat": 40.8745434, "lon": -73.9063684 }, + { "lat": 40.8745457, "lon": -73.9062839 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753233075, + "bounds": { + "minlat": 40.8739640, + "minlon": -73.9088352, + "maxlat": 40.8744544, + "maxlon": -73.9084124 + }, + "nodes": [ + 7037961264, + 10128431626, + 7037961265, + 7037961266, + 8393678990, + 8393678986 + ], + "geometry": [ + { "lat": 40.8739640, "lon": -73.9088352 }, + { "lat": 40.8740434, "lon": -73.9087346 }, + { "lat": 40.8741088, "lon": -73.9086518 }, + { "lat": 40.8741906, "lon": -73.9085987 }, + { "lat": 40.8743246, "lon": -73.9085041 }, + { "lat": 40.8744544, "lon": -73.9084124 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 753308748, + "bounds": { + "minlat": 40.7421037, + "minlon": -73.9079270, + "maxlat": 40.7424374, + "maxlon": -73.9075878 + }, + "nodes": [ + 7038557972, + 10046772059, + 7038557965, + 9950268712, + 10046772061, + 9950327929, + 10046772060, + 9950327800, + 9950327868 + ], + "geometry": [ + { "lat": 40.7423176, "lon": -73.9075992 }, + { "lat": 40.7423707, "lon": -73.9075878 }, + { "lat": 40.7424013, "lon": -73.9076133 }, + { "lat": 40.7424328, "lon": -73.9077136 }, + { "lat": 40.7424374, "lon": -73.9078171 }, + { "lat": 40.7424329, "lon": -73.9078343 }, + { "lat": 40.7424179, "lon": -73.9078427 }, + { "lat": 40.7421788, "lon": -73.9079089 }, + { "lat": 40.7421037, "lon": -73.9079270 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753308749, + "bounds": { + "minlat": 40.7422937, + "minlon": -73.9075992, + "maxlat": 40.7423176, + "maxlon": -73.9073907 + }, + "nodes": [ + 7038557972, + 9950327946, + 7038557973 + ], + "geometry": [ + { "lat": 40.7423176, "lon": -73.9075992 }, + { "lat": 40.7423035, "lon": -73.9074760 }, + { "lat": 40.7422937, "lon": -73.9073907 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753317023, + "bounds": { + "minlat": 40.8065371, + "minlon": -73.9199053, + "maxlat": 40.8066272, + "maxlon": -73.9196799 + }, + "nodes": [ + 7038610349, + 7038610350, + 7038610351 + ], + "geometry": [ + { "lat": 40.8066272, "lon": -73.9199053 }, + { "lat": 40.8065782, "lon": -73.9197809 }, + { "lat": 40.8065371, "lon": -73.9196799 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753552051, + "bounds": { + "minlat": 40.7914866, + "minlon": -73.9208166, + "maxlat": 40.7916992, + "maxlon": -73.9204951 + }, + "nodes": [ + 7745092460, + 7745092459 + ], + "geometry": [ + { "lat": 40.7916992, "lon": -73.9208166 }, + { "lat": 40.7914866, "lon": -73.9204951 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Daniel Rey Square", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 753552052, + "bounds": { + "minlat": 40.7914866, + "minlon": -73.9204951, + "maxlat": 40.7919628, + "maxlon": -73.9199222 + }, + "nodes": [ + 7745092459, + 3044777590, + 3044777588, + 3044777587 + ], + "geometry": [ + { "lat": 40.7914866, "lon": -73.9204951 }, + { "lat": 40.7916019, "lon": -73.9203563 }, + { "lat": 40.7917702, "lon": -73.9201540 }, + { "lat": 40.7919628, "lon": -73.9199222 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Berry Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 753552053, + "bounds": { + "minlat": 40.7908467, + "minlon": -73.9179635, + "maxlat": 40.7912001, + "maxlon": -73.9175411 + }, + "nodes": [ + 3044777615, + 3044777616 + ], + "geometry": [ + { "lat": 40.7908467, "lon": -73.9179635 }, + { "lat": 40.7912001, "lon": -73.9175411 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Kaminsky Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 753552055, + "bounds": { + "minlat": 40.7905622, + "minlon": -73.9179635, + "maxlat": 40.7908467, + "maxlon": -73.9175382 + }, + "nodes": [ + 3044777617, + 3044777613, + 3044777615 + ], + "geometry": [ + { "lat": 40.7905622, "lon": -73.9175382 }, + { "lat": 40.7907572, "lon": -73.9178298 }, + { "lat": 40.7908467, "lon": -73.9179635 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Brunn Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 753552056, + "bounds": { + "minlat": 40.7889336, + "minlon": -73.9308184, + "maxlat": 40.7892642, + "maxlon": -73.9303446 + }, + "nodes": [ + 3036229840, + 3036229543, + 8745054539, + 7734664094 + ], + "geometry": [ + { "lat": 40.7889336, "lon": -73.9308184 }, + { "lat": 40.7890188, "lon": -73.9306147 }, + { "lat": 40.7891582, "lon": -73.9304201 }, + { "lat": 40.7892642, "lon": -73.9303446 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753552058, + "bounds": { + "minlat": 40.7890162, + "minlon": -73.9248126, + "maxlat": 40.7892111, + "maxlon": -73.9243566 + }, + "nodes": [ + 3041969975, + 3041969976 + ], + "geometry": [ + { "lat": 40.7890162, "lon": -73.9243566 }, + { "lat": 40.7892111, "lon": -73.9248126 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "E Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 753552059, + "bounds": { + "minlat": 40.7913279, + "minlon": -73.9199599, + "maxlat": 40.7915554, + "maxlon": -73.9196850 + }, + "nodes": [ + 3044774802, + 3044774803 + ], + "geometry": [ + { "lat": 40.7915554, "lon": -73.9196850 }, + { "lat": 40.7913279, "lon": -73.9199599 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Galanaugh Lane", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 753552061, + "bounds": { + "minlat": 40.7915381, + "minlon": -73.9202617, + "maxlat": 40.7919317, + "maxlon": -73.9197974 + }, + "nodes": [ + 3044774801, + 3044777579, + 3044777596, + 3044774800 + ], + "geometry": [ + { "lat": 40.7915381, "lon": -73.9202617 }, + { "lat": 40.7917704, "lon": -73.9199877 }, + { "lat": 40.7919085, "lon": -73.9198247 }, + { "lat": 40.7919317, "lon": -73.9197974 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Keyahas Court", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 753572855, + "bounds": { + "minlat": 40.7586233, + "minlon": -73.9678936, + "maxlat": 40.7589145, + "maxlon": -73.9673968 + }, + "nodes": [ + 2711232786, + 2711232789, + 2711232792, + 2711232793, + 2711232781, + 2711232769, + 2711232786 + ], + "geometry": [ + { "lat": 40.7588019, "lon": -73.9678936 }, + { "lat": 40.7588634, "lon": -73.9678494 }, + { "lat": 40.7588729, "lon": -73.9678722 }, + { "lat": 40.7589145, "lon": -73.9678421 }, + { "lat": 40.7587277, "lon": -73.9673968 }, + { "lat": 40.7586233, "lon": -73.9674726 }, + { "lat": 40.7588019, "lon": -73.9678936 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 753679787, + "bounds": { + "minlat": 40.7804655, + "minlon": -73.9548431, + "maxlat": 40.7805204, + "maxlon": -73.9547141 + }, + "nodes": [ + 7041713701, + 7924099809, + 7041713705 + ], + "geometry": [ + { "lat": 40.7804655, "lon": -73.9547141 }, + { "lat": 40.7804771, "lon": -73.9547384 }, + { "lat": 40.7805204, "lon": -73.9548431 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 753806249, + "bounds": { + "minlat": 40.8263857, + "minlon": -73.9174727, + "maxlat": 40.8266802, + "maxlon": -73.9173198 + }, + "nodes": [ + 7042952020, + 7042952021, + 7042952022 + ], + "geometry": [ + { "lat": 40.8263857, "lon": -73.9174727 }, + { "lat": 40.8264460, "lon": -73.9174413 }, + { "lat": 40.8266802, "lon": -73.9173198 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753806254, + "bounds": { + "minlat": 40.8789763, + "minlon": -73.9161834, + "maxlat": 40.8794552, + "maxlon": -73.9157471 + }, + "nodes": [ + 7042945035, + 7042945036 + ], + "geometry": [ + { "lat": 40.8794552, "lon": -73.9161834 }, + { "lat": 40.8789763, "lon": -73.9157471 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 753806479, + "bounds": { + "minlat": 40.8167668, + "minlon": -73.9095686, + "maxlat": 40.8168806, + "maxlon": -73.9091682 + }, + "nodes": [ + 7042929681, + 7042929683, + 7042957086 + ], + "geometry": [ + { "lat": 40.8167668, "lon": -73.9095686 }, + { "lat": 40.8168350, "lon": -73.9093285 }, + { "lat": 40.8168806, "lon": -73.9091682 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753806480, + "bounds": { + "minlat": 40.8166128, + "minlon": -73.9094166, + "maxlat": 40.8168350, + "maxlon": -73.9093285 + }, + "nodes": [ + 7042929683, + 7042957087 + ], + "geometry": [ + { "lat": 40.8168350, "lon": -73.9093285 }, + { "lat": 40.8166128, "lon": -73.9094166 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753806481, + "bounds": { + "minlat": 40.8133031, + "minlon": -73.9106797, + "maxlat": 40.8135552, + "maxlon": -73.9105942 + }, + "nodes": [ + 7042957088, + 10127019004, + 7042957089 + ], + "geometry": [ + { "lat": 40.8135552, "lon": -73.9105942 }, + { "lat": 40.8134458, "lon": -73.9106313 }, + { "lat": 40.8133031, "lon": -73.9106797 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753806631, + "bounds": { + "minlat": 40.8058948, + "minlon": -73.9203957, + "maxlat": 40.8059629, + "maxlon": -73.9202190 + }, + "nodes": [ + 7042955051, + 7042955052, + 7042955053 + ], + "geometry": [ + { "lat": 40.8059629, "lon": -73.9203957 }, + { "lat": 40.8059099, "lon": -73.9202669 }, + { "lat": 40.8058948, "lon": -73.9202190 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753806632, + "bounds": { + "minlat": 40.8046290, + "minlon": -73.9181817, + "maxlat": 40.8048826, + "maxlon": -73.9178339 + }, + "nodes": [ + 7042955057, + 13039080737, + 7042955061 + ], + "geometry": [ + { "lat": 40.8046290, "lon": -73.9181817 }, + { "lat": 40.8046794, "lon": -73.9181126 }, + { "lat": 40.8048826, "lon": -73.9178339 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753806813, + "bounds": { + "minlat": 40.8233786, + "minlon": -73.9230060, + "maxlat": 40.8237368, + "maxlon": -73.9218913 + }, + "nodes": [ + 7042954911, + 13033568964, + 5356400999 + ], + "geometry": [ + { "lat": 40.8237368, "lon": -73.9230060 }, + { "lat": 40.8237159, "lon": -73.9229434 }, + { "lat": 40.8233786, "lon": -73.9218913 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 753808865, + "bounds": { + "minlat": 40.8009393, + "minlon": -73.9208377, + "maxlat": 40.8021515, + "maxlon": -73.9179768 + }, + "nodes": [ + 7042953075, + 7042953076, + 9047273968, + 11427299990, + 7554016044 + ], + "geometry": [ + { "lat": 40.8009393, "lon": -73.9179768 }, + { "lat": 40.8013499, "lon": -73.9189705 }, + { "lat": 40.8018031, "lon": -73.9200169 }, + { "lat": 40.8021106, "lon": -73.9207413 }, + { "lat": 40.8021515, "lon": -73.9208377 } + ], + "tags": { + "highway": "service", + "name": "East 130th Street", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 753809123, + "bounds": { + "minlat": 40.8228473, + "minlon": -73.9174444, + "maxlat": 40.8230511, + "maxlon": -73.9172890 + }, + "nodes": [ + 7042965806, + 7042965807, + 7042965808 + ], + "geometry": [ + { "lat": 40.8230511, "lon": -73.9172890 }, + { "lat": 40.8229451, "lon": -73.9173475 }, + { "lat": 40.8228473, "lon": -73.9174444 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753810005, + "bounds": { + "minlat": 40.8119565, + "minlon": -73.9235595, + "maxlat": 40.8121588, + "maxlon": -73.9230802 + }, + "nodes": [ + 7042982062, + 12040821267, + 7042982064 + ], + "geometry": [ + { "lat": 40.8121588, "lon": -73.9235595 }, + { "lat": 40.8121178, "lon": -73.9234623 }, + { "lat": 40.8119565, "lon": -73.9230802 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753811108, + "bounds": { + "minlat": 40.8021533, + "minlon": -73.9123638, + "maxlat": 40.8024376, + "maxlon": -73.9121510 + }, + "nodes": [ + 7042980643, + 7042980644, + 7042980645 + ], + "geometry": [ + { "lat": 40.8024376, "lon": -73.9121510 }, + { "lat": 40.8022368, "lon": -73.9123005 }, + { "lat": 40.8021533, "lon": -73.9123638 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753811109, + "bounds": { + "minlat": 40.8045379, + "minlon": -73.9149109, + "maxlat": 40.8047681, + "maxlon": -73.9147404 + }, + "nodes": [ + 7042980646, + 13003843609, + 7042980647, + 7042980648 + ], + "geometry": [ + { "lat": 40.8047681, "lon": -73.9147404 }, + { "lat": 40.8047257, "lon": -73.9147716 }, + { "lat": 40.8047091, "lon": -73.9147841 }, + { "lat": 40.8045379, "lon": -73.9149109 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753811110, + "bounds": { + "minlat": 40.8077721, + "minlon": -73.9167400, + "maxlat": 40.8079142, + "maxlon": -73.9163700 + }, + "nodes": [ + 7042980650, + 7042980651, + 7042980652 + ], + "geometry": [ + { "lat": 40.8079142, "lon": -73.9167400 }, + { "lat": 40.8078661, "lon": -73.9166158 }, + { "lat": 40.8077721, "lon": -73.9163700 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753811111, + "bounds": { + "minlat": 40.8073828, + "minlon": -73.9160797, + "maxlat": 40.8078529, + "maxlon": -73.9154050 + }, + "nodes": [ + 7042980653, + 7042980654, + 7042980655, + 7042980656, + 7042980657 + ], + "geometry": [ + { "lat": 40.8078529, "lon": -73.9159205 }, + { "lat": 40.8077612, "lon": -73.9159833 }, + { "lat": 40.8076371, "lon": -73.9160797 }, + { "lat": 40.8073828, "lon": -73.9154816 }, + { "lat": 40.8074783, "lon": -73.9154050 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753814705, + "bounds": { + "minlat": 40.8468085, + "minlon": -73.9077818, + "maxlat": 40.8470767, + "maxlon": -73.9077553 + }, + "nodes": [ + 7042990870, + 11492469812, + 7042990872, + 7042990871 + ], + "geometry": [ + { "lat": 40.8468085, "lon": -73.9077818 }, + { "lat": 40.8468712, "lon": -73.9077755 }, + { "lat": 40.8468988, "lon": -73.9077728 }, + { "lat": 40.8470767, "lon": -73.9077553 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753814706, + "bounds": { + "minlat": 40.8464152, + "minlon": -73.9077926, + "maxlat": 40.8466797, + "maxlon": -73.9074067 + }, + "nodes": [ + 7042990873, + 13001055656, + 7042990881, + 7059662885, + 7042990874, + 7042990875, + 7042990876, + 7042990877, + 7042990878, + 7042990879, + 7059634584, + 13001055658, + 7042990880 + ], + "geometry": [ + { "lat": 40.8464152, "lon": -73.9074281 }, + { "lat": 40.8464153, "lon": -73.9075196 }, + { "lat": 40.8464153, "lon": -73.9075417 }, + { "lat": 40.8464275, "lon": -73.9077513 }, + { "lat": 40.8464350, "lon": -73.9077781 }, + { "lat": 40.8464505, "lon": -73.9077926 }, + { "lat": 40.8466526, "lon": -73.9077828 }, + { "lat": 40.8466653, "lon": -73.9077777 }, + { "lat": 40.8466747, "lon": -73.9077587 }, + { "lat": 40.8466797, "lon": -73.9077354 }, + { "lat": 40.8466676, "lon": -73.9075341 }, + { "lat": 40.8466653, "lon": -73.9074960 }, + { "lat": 40.8466599, "lon": -73.9074067 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753817391, + "bounds": { + "minlat": 40.8208150, + "minlon": -73.9211453, + "maxlat": 40.8210885, + "maxlon": -73.9205401 + }, + "nodes": [ + 7043030223, + 12480685982, + 7043030227, + 7043030224, + 7043030225, + 7043030228, + 12480685983, + 7043030226 + ], + "geometry": [ + { "lat": 40.8209448, "lon": -73.9211453 }, + { "lat": 40.8209175, "lon": -73.9210339 }, + { "lat": 40.8209157, "lon": -73.9210266 }, + { "lat": 40.8208150, "lon": -73.9206058 }, + { "lat": 40.8209598, "lon": -73.9205401 }, + { "lat": 40.8210604, "lon": -73.9209577 }, + { "lat": 40.8210626, "lon": -73.9209670 }, + { "lat": 40.8210885, "lon": -73.9210783 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753817733, + "bounds": { + "minlat": 40.8800709, + "minlon": -73.9194909, + "maxlat": 40.8805051, + "maxlon": -73.9190893 + }, + "nodes": [ + 7043037933, + 10130977070, + 7043037934 + ], + "geometry": [ + { "lat": 40.8805051, "lon": -73.9194909 }, + { "lat": 40.8804594, "lon": -73.9194486 }, + { "lat": 40.8800709, "lon": -73.9190893 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753817734, + "bounds": { + "minlat": 40.8767040, + "minlon": -73.9182869, + "maxlat": 40.8767738, + "maxlon": -73.9180158 + }, + "nodes": [ + 42733226, + 10132643447, + 7043037935, + 7043037936, + 7043037937, + 7043037938, + 7043037939 + ], + "geometry": [ + { "lat": 40.8767379, "lon": -73.9182869 }, + { "lat": 40.8767237, "lon": -73.9182482 }, + { "lat": 40.8767074, "lon": -73.9182036 }, + { "lat": 40.8767040, "lon": -73.9181673 }, + { "lat": 40.8767114, "lon": -73.9181219 }, + { "lat": 40.8767394, "lon": -73.9180584 }, + { "lat": 40.8767738, "lon": -73.9180158 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 753817735, + "bounds": { + "minlat": 40.8767738, + "minlon": -73.9180158, + "maxlat": 40.8768379, + "maxlon": -73.9179325 + }, + "nodes": [ + 7043037939, + 7043037940 + ], + "geometry": [ + { "lat": 40.8767738, "lon": -73.9180158 }, + { "lat": 40.8768379, "lon": -73.9179325 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 753817736, + "bounds": { + "minlat": 40.8768379, + "minlon": -73.9179325, + "maxlat": 40.8772060, + "maxlon": -73.9177483 + }, + "nodes": [ + 7043037940, + 7043037941, + 7043037942, + 7043037943, + 10752535880, + 7043037944, + 7043037945, + 7043037946 + ], + "geometry": [ + { "lat": 40.8768379, "lon": -73.9179325 }, + { "lat": 40.8768875, "lon": -73.9178913 }, + { "lat": 40.8769510, "lon": -73.9178497 }, + { "lat": 40.8770737, "lon": -73.9177566 }, + { "lat": 40.8770983, "lon": -73.9177483 }, + { "lat": 40.8771157, "lon": -73.9177521 }, + { "lat": 40.8771530, "lon": -73.9177659 }, + { "lat": 40.8772060, "lon": -73.9178225 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 753818978, + "bounds": { + "minlat": 40.8352772, + "minlon": -73.9101461, + "maxlat": 40.8353912, + "maxlon": -73.9098463 + }, + "nodes": [ + 7043038853, + 7043038854, + 13746493081, + 7043038855 + ], + "geometry": [ + { "lat": 40.8353912, "lon": -73.9101461 }, + { "lat": 40.8353143, "lon": -73.9099414 }, + { "lat": 40.8353045, "lon": -73.9099162 }, + { "lat": 40.8352772, "lon": -73.9098463 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753822234, + "bounds": { + "minlat": 40.8693472, + "minlon": -73.9072797, + "maxlat": 40.8698735, + "maxlon": -73.9070075 + }, + "nodes": [ + 7043045077, + 7043045078, + 7043045079, + 7043045080 + ], + "geometry": [ + { "lat": 40.8698735, "lon": -73.9072797 }, + { "lat": 40.8697955, "lon": -73.9070091 }, + { "lat": 40.8697551, "lon": -73.9070075 }, + { "lat": 40.8693472, "lon": -73.9071808 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 753823361, + "bounds": { + "minlat": 40.7153949, + "minlon": -73.9574360, + "maxlat": 40.7156497, + "maxlon": -73.9571805 + }, + "nodes": [ + 7043069891, + 12864471193, + 7043069892, + 7043069894, + 7043069893 + ], + "geometry": [ + { "lat": 40.7156497, "lon": -73.9571805 }, + { "lat": 40.7155994, "lon": -73.9572328 }, + { "lat": 40.7155913, "lon": -73.9572412 }, + { "lat": 40.7155462, "lon": -73.9572893 }, + { "lat": 40.7153949, "lon": -73.9574360 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753823362, + "bounds": { + "minlat": 40.7155462, + "minlon": -73.9577336, + "maxlat": 40.7157265, + "maxlon": -73.9572893 + }, + "nodes": [ + 7043069894, + 7043069899, + 7043069895, + 7043069896, + 7043069897, + 7043069898 + ], + "geometry": [ + { "lat": 40.7155462, "lon": -73.9572893 }, + { "lat": 40.7156384, "lon": -73.9574258 }, + { "lat": 40.7157192, "lon": -73.9575456 }, + { "lat": 40.7157265, "lon": -73.9575664 }, + { "lat": 40.7157259, "lon": -73.9575928 }, + { "lat": 40.7155907, "lon": -73.9577336 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753823363, + "bounds": { + "minlat": 40.7154871, + "minlon": -73.9576056, + "maxlat": 40.7156384, + "maxlon": -73.9574258 + }, + "nodes": [ + 7043069899, + 7043069900 + ], + "geometry": [ + { "lat": 40.7156384, "lon": -73.9574258 }, + { "lat": 40.7154871, "lon": -73.9576056 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753824963, + "bounds": { + "minlat": 40.8243917, + "minlon": -73.9278680, + "maxlat": 40.8245250, + "maxlon": -73.9274123 + }, + "nodes": [ + 7043070572, + 7043070573, + 8344261126, + 7043070574, + 7043070575 + ], + "geometry": [ + { "lat": 40.8245250, "lon": -73.9278680 }, + { "lat": 40.8244851, "lon": -73.9277500 }, + { "lat": 40.8244524, "lon": -73.9276396 }, + { "lat": 40.8244287, "lon": -73.9275544 }, + { "lat": 40.8243917, "lon": -73.9274123 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753826087, + "bounds": { + "minlat": 40.8084244, + "minlon": -73.9120993, + "maxlat": 40.8086550, + "maxlon": -73.9118330 + }, + "nodes": [ + 7043106189, + 7043106192, + 7043106190, + 7043106191 + ], + "geometry": [ + { "lat": 40.8086159, "lon": -73.9118330 }, + { "lat": 40.8086384, "lon": -73.9119268 }, + { "lat": 40.8086550, "lon": -73.9119959 }, + { "lat": 40.8084244, "lon": -73.9120993 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753827530, + "bounds": { + "minlat": 40.8011458, + "minlon": -73.9088445, + "maxlat": 40.8016830, + "maxlon": -73.9083259 + }, + "nodes": [ + 7043090352, + 7043090364 + ], + "geometry": [ + { "lat": 40.8011458, "lon": -73.9088445 }, + { "lat": 40.8016830, "lon": -73.9083259 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753827531, + "bounds": { + "minlat": 40.8014869, + "minlon": -73.9083259, + "maxlat": 40.8016830, + "maxlon": -73.9079540 + }, + "nodes": [ + 7043090359, + 12313043300, + 7043090364 + ], + "geometry": [ + { "lat": 40.8014869, "lon": -73.9079540 }, + { "lat": 40.8015304, "lon": -73.9080366 }, + { "lat": 40.8016830, "lon": -73.9083259 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753827532, + "bounds": { + "minlat": 40.8065936, + "minlon": -73.9147102, + "maxlat": 40.8069086, + "maxlon": -73.9139306 + }, + "nodes": [ + 7043090365, + 7043090370 + ], + "geometry": [ + { "lat": 40.8065936, "lon": -73.9139306 }, + { "lat": 40.8069086, "lon": -73.9147102 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753827533, + "bounds": { + "minlat": 40.8057860, + "minlon": -73.9129310, + "maxlat": 40.8061766, + "maxlon": -73.9127066 + }, + "nodes": [ + 7043090373, + 13038908724, + 7043090374, + 7043090375 + ], + "geometry": [ + { "lat": 40.8057860, "lon": -73.9129310 }, + { "lat": 40.8058485, "lon": -73.9128951 }, + { "lat": 40.8058645, "lon": -73.9128859 }, + { "lat": 40.8061766, "lon": -73.9127066 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753827534, + "bounds": { + "minlat": 40.8039385, + "minlon": -73.9118177, + "maxlat": 40.8040287, + "maxlon": -73.9115677 + }, + "nodes": [ + 7043090376, + 13003835719, + 7043090377, + 7043090378 + ], + "geometry": [ + { "lat": 40.8039385, "lon": -73.9115677 }, + { "lat": 40.8039614, "lon": -73.9116405 }, + { "lat": 40.8039710, "lon": -73.9116709 }, + { "lat": 40.8040287, "lon": -73.9118177 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753834560, + "bounds": { + "minlat": 40.8806565, + "minlon": -73.9081060, + "maxlat": 40.8808527, + "maxlon": -73.9079312 + }, + "nodes": [ + 7043169394, + 13020770627, + 7043169395, + 7043169396 + ], + "geometry": [ + { "lat": 40.8806565, "lon": -73.9081060 }, + { "lat": 40.8807307, "lon": -73.9080403 }, + { "lat": 40.8807496, "lon": -73.9080236 }, + { "lat": 40.8808527, "lon": -73.9079312 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753836217, + "bounds": { + "minlat": 40.8656660, + "minlon": -73.9074463, + "maxlat": 40.8667297, + "maxlon": -73.9071802 + }, + "nodes": [ + 7043182803, + 7043182804, + 7043182805, + 7043182806, + 7043182807, + 7043182808 + ], + "geometry": [ + { "lat": 40.8656660, "lon": -73.9074463 }, + { "lat": 40.8661429, "lon": -73.9071802 }, + { "lat": 40.8662347, "lon": -73.9072453 }, + { "lat": 40.8663176, "lon": -73.9073579 }, + { "lat": 40.8663826, "lon": -73.9073756 }, + { "lat": 40.8667297, "lon": -73.9072572 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 753846728, + "bounds": { + "minlat": 40.8207663, + "minlon": -73.9295061, + "maxlat": 40.8208949, + "maxlon": -73.9289117 + }, + "nodes": [ + 7043272427, + 10079555988, + 7043272428 + ], + "geometry": [ + { "lat": 40.8208949, "lon": -73.9295061 }, + { "lat": 40.8208338, "lon": -73.9292297 }, + { "lat": 40.8207663, "lon": -73.9289117 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753862064, + "bounds": { + "minlat": 40.7793167, + "minlon": -74.0108055, + "maxlat": 40.7794044, + "maxlon": -74.0106034 + }, + "nodes": [ + 103856485, + 7043377403 + ], + "geometry": [ + { "lat": 40.7794044, "lon": -74.0108055 }, + { "lat": 40.7793167, "lon": -74.0106034 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 753862065, + "bounds": { + "minlat": 40.7787880, + "minlon": -74.0106745, + "maxlat": 40.7793167, + "maxlon": -74.0097177 + }, + "nodes": [ + 7043377403, + 7043377404, + 7043377405 + ], + "geometry": [ + { "lat": 40.7793167, "lon": -74.0106034 }, + { "lat": 40.7792232, "lon": -74.0106745 }, + { "lat": 40.7787880, "lon": -74.0097177 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 753880304, + "bounds": { + "minlat": 40.8364785, + "minlon": -73.9290163, + "maxlat": 40.8369449, + "maxlon": -73.9287879 + }, + "nodes": [ + 7043507584, + 7043521585, + 7043521586, + 7043521587, + 7043521588, + 7043521589, + 7043521590 + ], + "geometry": [ + { "lat": 40.8364785, "lon": -73.9288722 }, + { "lat": 40.8365714, "lon": -73.9289948 }, + { "lat": 40.8366137, "lon": -73.9290161 }, + { "lat": 40.8366702, "lon": -73.9290125 }, + { "lat": 40.8367266, "lon": -73.9289815 }, + { "lat": 40.8369118, "lon": -73.9287879 }, + { "lat": 40.8369449, "lon": -73.9290163 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 753884974, + "bounds": { + "minlat": 40.8317605, + "minlon": -73.9415251, + "maxlat": 40.8320721, + "maxlon": -73.9410779 + }, + "nodes": [ + 7043552827, + 7043552828, + 7043552829, + 7043552830, + 7043552831, + 7043552832, + 11291880593, + 7043552833 + ], + "geometry": [ + { "lat": 40.8320381, "lon": -73.9413444 }, + { "lat": 40.8320721, "lon": -73.9414389 }, + { "lat": 40.8320559, "lon": -73.9414778 }, + { "lat": 40.8319899, "lon": -73.9415251 }, + { "lat": 40.8318810, "lon": -73.9414569 }, + { "lat": 40.8317956, "lon": -73.9412569 }, + { "lat": 40.8317872, "lon": -73.9412143 }, + { "lat": 40.8317605, "lon": -73.9410779 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 753884976, + "bounds": { + "minlat": 40.8317605, + "minlon": -73.9410779, + "maxlat": 40.8320757, + "maxlon": -73.9409759 + }, + "nodes": [ + 7043552833, + 7043552825, + 5475725288 + ], + "geometry": [ + { "lat": 40.8317605, "lon": -73.9410779 }, + { "lat": 40.8319588, "lon": -73.9410137 }, + { "lat": 40.8320757, "lon": -73.9409759 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "parking:lane:both": "parallel", + "rcn_ref": "9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 753885439, + "bounds": { + "minlat": 40.7841705, + "minlon": -74.0097149, + "maxlat": 40.7842833, + "maxlon": -74.0094933 + }, + "nodes": [ + 7043560005, + 7468537461, + 7043560007, + 7043560006 + ], + "geometry": [ + { "lat": 40.7841705, "lon": -74.0094933 }, + { "lat": 40.7842235, "lon": -74.0095973 }, + { "lat": 40.7842397, "lon": -74.0096291 }, + { "lat": 40.7842833, "lon": -74.0097149 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753886652, + "bounds": { + "minlat": 40.7781204, + "minlon": -74.0158908, + "maxlat": 40.7784432, + "maxlon": -74.0156246 + }, + "nodes": [ + 7043553241, + 7320650772, + 7043553242, + 7043553243 + ], + "geometry": [ + { "lat": 40.7781204, "lon": -74.0158908 }, + { "lat": 40.7781591, "lon": -74.0158591 }, + { "lat": 40.7781798, "lon": -74.0158421 }, + { "lat": 40.7784432, "lon": -74.0156246 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753886653, + "bounds": { + "minlat": 40.7786236, + "minlon": -74.0154831, + "maxlat": 40.7787086, + "maxlon": -74.0154202 + }, + "nodes": [ + 7095294127, + 7043553245, + 7320650771, + 7043553246 + ], + "geometry": [ + { "lat": 40.7786236, "lon": -74.0154831 }, + { "lat": 40.7786405, "lon": -74.0154710 }, + { "lat": 40.7786641, "lon": -74.0154534 }, + { "lat": 40.7787086, "lon": -74.0154202 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753886654, + "bounds": { + "minlat": 40.7784432, + "minlon": -74.0156246, + "maxlat": 40.7786236, + "maxlon": -74.0154831 + }, + "nodes": [ + 7043553243, + 7095294127 + ], + "geometry": [ + { "lat": 40.7784432, "lon": -74.0156246 }, + { "lat": 40.7786236, "lon": -74.0154831 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 753894569, + "bounds": { + "minlat": 40.8221539, + "minlon": -73.9362713, + "maxlat": 40.8224787, + "maxlon": -73.9355541 + }, + "nodes": [ + 7043607048, + 9557088497, + 7043607049, + 7043607050, + 7043607051, + 7043607055, + 7043607052, + 7043607053 + ], + "geometry": [ + { "lat": 40.8221539, "lon": -73.9362713 }, + { "lat": 40.8222151, "lon": -73.9362262 }, + { "lat": 40.8224602, "lon": -73.9360456 }, + { "lat": 40.8224787, "lon": -73.9359996 }, + { "lat": 40.8224779, "lon": -73.9359420 }, + { "lat": 40.8224740, "lon": -73.9359032 }, + { "lat": 40.8224705, "lon": -73.9358697 }, + { "lat": 40.8223471, "lon": -73.9355541 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 753894570, + "bounds": { + "minlat": 40.8224740, + "minlon": -73.9359032, + "maxlat": 40.8232139, + "maxlon": -73.9353662 + }, + "nodes": [ + 7043607054, + 7043607055 + ], + "geometry": [ + { "lat": 40.8232139, "lon": -73.9353662 }, + { "lat": 40.8224740, "lon": -73.9359032 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 753939012, + "bounds": { + "minlat": 40.8195929, + "minlon": -73.9191618, + "maxlat": 40.8200449, + "maxlon": -73.9188660 + }, + "nodes": [ + 7043950438, + 7043950439, + 7043950440, + 7043950441 + ], + "geometry": [ + { "lat": 40.8195929, "lon": -73.9191618 }, + { "lat": 40.8197808, "lon": -73.9190881 }, + { "lat": 40.8198424, "lon": -73.9189486 }, + { "lat": 40.8200449, "lon": -73.9188660 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 753976420, + "bounds": { + "minlat": 40.8502635, + "minlon": -73.9438969, + "maxlat": 40.8506620, + "maxlon": -73.9433206 + }, + "nodes": [ + 7044189234, + 7044189235, + 12067234221, + 13105274176, + 12067234222, + 7044189236, + 12067234220, + 12067234219, + 12067234218 + ], + "geometry": [ + { "lat": 40.8506620, "lon": -73.9438969 }, + { "lat": 40.8505437, "lon": -73.9437867 }, + { "lat": 40.8505093, "lon": -73.9437415 }, + { "lat": 40.8504976, "lon": -73.9437189 }, + { "lat": 40.8504774, "lon": -73.9436796 }, + { "lat": 40.8503779, "lon": -73.9434638 }, + { "lat": 40.8503481, "lon": -73.9434129 }, + { "lat": 40.8503189, "lon": -73.9433757 }, + { "lat": 40.8502635, "lon": -73.9433206 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "unpaved" + } +}, +{ + "type": "way", + "id": 754030532, + "bounds": { + "minlat": 40.8312722, + "minlon": -73.9132295, + "maxlat": 40.8318366, + "maxlon": -73.9126556 + }, + "nodes": [ + 7044464250, + 12038440293, + 7044464251, + 7044464252, + 10647808920, + 7044464253, + 10647808905, + 7044464254, + 10647808906, + 7044464255, + 7044464256, + 7044464257, + 10647808907 + ], + "geometry": [ + { "lat": 40.8312722, "lon": -73.9132295 }, + { "lat": 40.8313034, "lon": -73.9131029 }, + { "lat": 40.8313224, "lon": -73.9130255 }, + { "lat": 40.8313479, "lon": -73.9128439 }, + { "lat": 40.8313904, "lon": -73.9126877 }, + { "lat": 40.8314213, "lon": -73.9126556 }, + { "lat": 40.8314467, "lon": -73.9126569 }, + { "lat": 40.8314991, "lon": -73.9127162 }, + { "lat": 40.8315586, "lon": -73.9128031 }, + { "lat": 40.8316130, "lon": -73.9128200 }, + { "lat": 40.8316997, "lon": -73.9127703 }, + { "lat": 40.8317095, "lon": -73.9127285 }, + { "lat": 40.8318366, "lon": -73.9126567 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754030533, + "bounds": { + "minlat": 40.8311994, + "minlon": -73.9128439, + "maxlat": 40.8313479, + "maxlon": -73.9124692 + }, + "nodes": [ + 7044464252, + 10647808928, + 7044464258, + 7044464259 + ], + "geometry": [ + { "lat": 40.8313479, "lon": -73.9128439 }, + { "lat": 40.8313175, "lon": -73.9128026 }, + { "lat": 40.8313091, "lon": -73.9127912 }, + { "lat": 40.8311994, "lon": -73.9124692 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 754030534, + "bounds": { + "minlat": 40.8322158, + "minlon": -73.9100624, + "maxlat": 40.8324050, + "maxlon": -73.9098770 + }, + "nodes": [ + 7044464260, + 12038056022, + 7044464261, + 7044464262 + ], + "geometry": [ + { "lat": 40.8324050, "lon": -73.9100020 }, + { "lat": 40.8323373, "lon": -73.9100345 }, + { "lat": 40.8322794, "lon": -73.9100624 }, + { "lat": 40.8322158, "lon": -73.9098770 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 754030535, + "bounds": { + "minlat": 40.8319374, + "minlon": -73.9102609, + "maxlat": 40.8322794, + "maxlon": -73.9100624 + }, + "nodes": [ + 7044464261, + 7044464265 + ], + "geometry": [ + { "lat": 40.8322794, "lon": -73.9100624 }, + { "lat": 40.8319374, "lon": -73.9102609 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 754034497, + "bounds": { + "minlat": 40.8444540, + "minlon": -73.9152065, + "maxlat": 40.8447824, + "maxlon": -73.9148028 + }, + "nodes": [ + 7044558817, + 7044558818, + 7044558819, + 7044558820, + 7044558821, + 7044558822 + ], + "geometry": [ + { "lat": 40.8444540, "lon": -73.9150212 }, + { "lat": 40.8446317, "lon": -73.9148784 }, + { "lat": 40.8447405, "lon": -73.9148028 }, + { "lat": 40.8447786, "lon": -73.9148860 }, + { "lat": 40.8447824, "lon": -73.9150070 }, + { "lat": 40.8445285, "lon": -73.9152065 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 754141925, + "bounds": { + "minlat": 40.8171665, + "minlon": -73.9503154, + "maxlat": 40.8176710, + "maxlon": -73.9500764 + }, + "nodes": [ + 7045489986, + 11296306917, + 7045489987, + 7045489988, + 7045489989, + 7045489990, + 7045489991 + ], + "geometry": [ + { "lat": 40.8171665, "lon": -73.9500764 }, + { "lat": 40.8171755, "lon": -73.9501493 }, + { "lat": 40.8171802, "lon": -73.9501872 }, + { "lat": 40.8172062, "lon": -73.9502933 }, + { "lat": 40.8172317, "lon": -73.9503126 }, + { "lat": 40.8172764, "lon": -73.9503154 }, + { "lat": 40.8176710, "lon": -73.9500845 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754143138, + "bounds": { + "minlat": 40.8604111, + "minlon": -73.9259733, + "maxlat": 40.8606554, + "maxlon": -73.9256897 + }, + "nodes": [ + 7045498716, + 9561344680, + 7045498717, + 7045498718, + 7045498719, + 7045498720, + 7045498721, + 7045498722, + 7045498723, + 7045498724, + 7045498725, + 9561344681, + 7045498726 + ], + "geometry": [ + { "lat": 40.8606222, "lon": -73.9256897 }, + { "lat": 40.8606438, "lon": -73.9257510 }, + { "lat": 40.8606500, "lon": -73.9257717 }, + { "lat": 40.8606554, "lon": -73.9258384 }, + { "lat": 40.8606466, "lon": -73.9258733 }, + { "lat": 40.8606267, "lon": -73.9259167 }, + { "lat": 40.8605915, "lon": -73.9259624 }, + { "lat": 40.8605663, "lon": -73.9259733 }, + { "lat": 40.8605323, "lon": -73.9259717 }, + { "lat": 40.8605026, "lon": -73.9259551 }, + { "lat": 40.8604709, "lon": -73.9259375 }, + { "lat": 40.8604620, "lon": -73.9259303 }, + { "lat": 40.8604111, "lon": -73.9258888 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754155012, + "bounds": { + "minlat": 40.8622850, + "minlon": -73.9220949, + "maxlat": 40.8627510, + "maxlon": -73.9214906 + }, + "nodes": [ + 7045648147, + 9561344654, + 7045648148, + 7045648149, + 7045648150, + 7045648151 + ], + "geometry": [ + { "lat": 40.8627510, "lon": -73.9216229 }, + { "lat": 40.8626196, "lon": -73.9215350 }, + { "lat": 40.8625863, "lon": -73.9215127 }, + { "lat": 40.8625357, "lon": -73.9214906 }, + { "lat": 40.8625139, "lon": -73.9214997 }, + { "lat": 40.8622850, "lon": -73.9220949 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754155013, + "bounds": { + "minlat": 40.8620871, + "minlon": -73.9226002, + "maxlat": 40.8624663, + "maxlon": -73.9222555 + }, + "nodes": [ + 7045648152, + 9561344655, + 7045648153, + 7045648154, + 7045648155, + 7045648156, + 7045648157 + ], + "geometry": [ + { "lat": 40.8624663, "lon": -73.9224014 }, + { "lat": 40.8623287, "lon": -73.9223022 }, + { "lat": 40.8623170, "lon": -73.9222937 }, + { "lat": 40.8622457, "lon": -73.9222587 }, + { "lat": 40.8622281, "lon": -73.9222555 }, + { "lat": 40.8622105, "lon": -73.9222704 }, + { "lat": 40.8620871, "lon": -73.9226002 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754167504, + "bounds": { + "minlat": 40.8531842, + "minlon": -73.9655722, + "maxlat": 40.8534643, + "maxlon": -73.9650451 + }, + "nodes": [ + 7045784795, + 7045784796, + 7045784797, + 7045784798, + 7045784799, + 7045784804, + 7045784800 + ], + "geometry": [ + { "lat": 40.8531842, "lon": -73.9650451 }, + { "lat": 40.8532077, "lon": -73.9651279 }, + { "lat": 40.8532602, "lon": -73.9654438 }, + { "lat": 40.8532800, "lon": -73.9655056 }, + { "lat": 40.8533027, "lon": -73.9655253 }, + { "lat": 40.8533908, "lon": -73.9655508 }, + { "lat": 40.8534643, "lon": -73.9655722 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754167505, + "bounds": { + "minlat": 40.8533908, + "minlon": -73.9655508, + "maxlat": 40.8535487, + "maxlon": -73.9650408 + }, + "nodes": [ + 3257513404, + 7045784801, + 7045784805, + 7045784802, + 7045784803, + 7045784804 + ], + "geometry": [ + { "lat": 40.8535487, "lon": -73.9650408 }, + { "lat": 40.8535013, "lon": -73.9650741 }, + { "lat": 40.8534969, "lon": -73.9650794 }, + { "lat": 40.8534220, "lon": -73.9651689 }, + { "lat": 40.8534229, "lon": -73.9653531 }, + { "lat": 40.8533908, "lon": -73.9655508 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754167506, + "bounds": { + "minlat": 40.8548754, + "minlon": -73.9639716, + "maxlat": 40.8551861, + "maxlon": -73.9636281 + }, + "nodes": [ + 5449397631, + 7045784807, + 7045784808, + 7045784809, + 7045784815, + 7045784810, + 7045784817, + 7045784816, + 7045784811, + 7045784812, + 7045784813, + 7045784814, + 5449400759 + ], + "geometry": [ + { "lat": 40.8548754, "lon": -73.9638151 }, + { "lat": 40.8550134, "lon": -73.9637112 }, + { "lat": 40.8550690, "lon": -73.9636684 }, + { "lat": 40.8551074, "lon": -73.9636322 }, + { "lat": 40.8551334, "lon": -73.9636281 }, + { "lat": 40.8551456, "lon": -73.9636444 }, + { "lat": 40.8551697, "lon": -73.9636742 }, + { "lat": 40.8551836, "lon": -73.9637222 }, + { "lat": 40.8551861, "lon": -73.9637474 }, + { "lat": 40.8551642, "lon": -73.9637763 }, + { "lat": 40.8550942, "lon": -73.9638614 }, + { "lat": 40.8550505, "lon": -73.9639049 }, + { "lat": 40.8549609, "lon": -73.9639716 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 754170857, + "bounds": { + "minlat": 40.7780010, + "minlon": -74.0116832, + "maxlat": 40.7782057, + "maxlon": -74.0114817 + }, + "nodes": [ + 7045779039, + 7045779041, + 7278552840, + 7045779042 + ], + "geometry": [ + { "lat": 40.7782057, "lon": -74.0114817 }, + { "lat": 40.7781392, "lon": -74.0115418 }, + { "lat": 40.7780421, "lon": -74.0116398 }, + { "lat": 40.7780010, "lon": -74.0116832 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754170858, + "bounds": { + "minlat": 40.7782983, + "minlon": -74.0095208, + "maxlat": 40.7784345, + "maxlon": -74.0094225 + }, + "nodes": [ + 7045779043, + 7045779044, + 7045779045 + ], + "geometry": [ + { "lat": 40.7784345, "lon": -74.0094225 }, + { "lat": 40.7783114, "lon": -74.0095121 }, + { "lat": 40.7782983, "lon": -74.0095208 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754170859, + "bounds": { + "minlat": 40.7782304, + "minlon": -74.0095720, + "maxlat": 40.7782983, + "maxlon": -74.0095026 + }, + "nodes": [ + 7045779045, + 7045779046, + 7045779051, + 7045779047, + 7045779048, + 7045779049, + 7045779052, + 7045779050, + 7045779045 + ], + "geometry": [ + { "lat": 40.7782983, "lon": -74.0095208 }, + { "lat": 40.7782962, "lon": -74.0095356 }, + { "lat": 40.7782626, "lon": -74.0095656 }, + { "lat": 40.7782554, "lon": -74.0095720 }, + { "lat": 40.7782304, "lon": -74.0095653 }, + { "lat": 40.7782406, "lon": -74.0095316 }, + { "lat": 40.7782723, "lon": -74.0095054 }, + { "lat": 40.7782758, "lon": -74.0095026 }, + { "lat": 40.7782983, "lon": -74.0095208 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 754170860, + "bounds": { + "minlat": 40.7774949, + "minlon": -74.0101585, + "maxlat": 40.7783974, + "maxlon": -74.0090300 + }, + "nodes": [ + 7045779048, + 7045779053, + 7045779054, + 7045779055, + 7045779056, + 7045779057, + 7045779058, + 7045779059, + 7045779060, + 7045779061, + 7045779062, + 7045779063, + 7045779064, + 7045779065, + 7045779066 + ], + "geometry": [ + { "lat": 40.7782304, "lon": -74.0095653 }, + { "lat": 40.7781831, "lon": -74.0096013 }, + { "lat": 40.7779213, "lon": -74.0090576 }, + { "lat": 40.7779031, "lon": -74.0090398 }, + { "lat": 40.7778822, "lon": -74.0090300 }, + { "lat": 40.7778627, "lon": -74.0090353 }, + { "lat": 40.7775165, "lon": -74.0093001 }, + { "lat": 40.7775050, "lon": -74.0093187 }, + { "lat": 40.7774949, "lon": -74.0093508 }, + { "lat": 40.7775037, "lon": -74.0094023 }, + { "lat": 40.7778407, "lon": -74.0101362 }, + { "lat": 40.7778567, "lon": -74.0101585 }, + { "lat": 40.7778745, "lon": -74.0101562 }, + { "lat": 40.7779092, "lon": -74.0101480 }, + { "lat": 40.7783974, "lon": -74.0097465 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754215597, + "bounds": { + "minlat": 40.8534434, + "minlon": -73.9664967, + "maxlat": 40.8536935, + "maxlon": -73.9660957 + }, + "nodes": [ + 7046240927, + 7046240928, + 7046240929, + 7046240930, + 7046240931 + ], + "geometry": [ + { "lat": 40.8536935, "lon": -73.9664603 }, + { "lat": 40.8536292, "lon": -73.9664765 }, + { "lat": 40.8535309, "lon": -73.9664967 }, + { "lat": 40.8534650, "lon": -73.9661725 }, + { "lat": 40.8534434, "lon": -73.9660957 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754220393, + "bounds": { + "minlat": 40.8685255, + "minlon": -73.9155019, + "maxlat": 40.8692300, + "maxlon": -73.9132538 + }, + "nodes": [ + 7046287192, + 7046287193, + 7046287194, + 7046287195, + 7676246615, + 7046287196, + 7046287197, + 7676246620, + 7046287198 + ], + "geometry": [ + { "lat": 40.8687351, "lon": -73.9132538 }, + { "lat": 40.8686219, "lon": -73.9133386 }, + { "lat": 40.8685919, "lon": -73.9133648 }, + { "lat": 40.8691070, "lon": -73.9145287 }, + { "lat": 40.8691709, "lon": -73.9147167 }, + { "lat": 40.8692300, "lon": -73.9148904 }, + { "lat": 40.8692064, "lon": -73.9149854 }, + { "lat": 40.8686707, "lon": -73.9153917 }, + { "lat": 40.8685255, "lon": -73.9155019 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754221302, + "bounds": { + "minlat": 40.8397327, + "minlon": -73.9267959, + "maxlat": 40.8397932, + "maxlon": -73.9263738 + }, + "nodes": [ + 7046208530, + 7046208532, + 7046208531 + ], + "geometry": [ + { "lat": 40.8397327, "lon": -73.9267959 }, + { "lat": 40.8397777, "lon": -73.9264819 }, + { "lat": 40.8397932, "lon": -73.9263738 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754224086, + "bounds": { + "minlat": 40.7513790, + "minlon": -73.9478851, + "maxlat": 40.7516657, + "maxlon": -73.9477048 + }, + "nodes": [ + 7046317815, + 11623153685, + 7046317816, + 7046317817, + 7046317818 + ], + "geometry": [ + { "lat": 40.7516657, "lon": -73.9477048 }, + { "lat": 40.7516005, "lon": -73.9477602 }, + { "lat": 40.7515734, "lon": -73.9477832 }, + { "lat": 40.7514551, "lon": -73.9478851 }, + { "lat": 40.7513790, "lon": -73.9477383 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 754255586, + "bounds": { + "minlat": 40.8458452, + "minlon": -73.9651718, + "maxlat": 40.8461306, + "maxlon": -73.9646354 + }, + "nodes": [ + 7046600454, + 7046600455, + 7046600456, + 7046600457, + 7046600458, + 7046600459, + 7046600460, + 7046600461 + ], + "geometry": [ + { "lat": 40.8458452, "lon": -73.9651718 }, + { "lat": 40.8458521, "lon": -73.9651433 }, + { "lat": 40.8458830, "lon": -73.9650762 }, + { "lat": 40.8459201, "lon": -73.9650078 }, + { "lat": 40.8459929, "lon": -73.9648580 }, + { "lat": 40.8460448, "lon": -73.9647487 }, + { "lat": 40.8460793, "lon": -73.9646950 }, + { "lat": 40.8461306, "lon": -73.9646354 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 754299136, + "bounds": { + "minlat": 40.7413681, + "minlon": -73.9472065, + "maxlat": 40.7417881, + "maxlon": -73.9471370 + }, + "nodes": [ + 42910339, + 7046958200, + 7046958201, + 13779772850, + 7046958202 + ], + "geometry": [ + { "lat": 40.7413681, "lon": -73.9471493 }, + { "lat": 40.7414504, "lon": -73.9471731 }, + { "lat": 40.7415239, "lon": -73.9472065 }, + { "lat": 40.7415472, "lon": -73.9472004 }, + { "lat": 40.7417881, "lon": -73.9471370 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 754436970, + "bounds": { + "minlat": 40.8791911, + "minlon": -73.9092852, + "maxlat": 40.8794587, + "maxlon": -73.9086963 + }, + "nodes": [ + 7048096537, + 13068319285, + 7048096538, + 13068319295, + 7048096539 + ], + "geometry": [ + { "lat": 40.8791911, "lon": -73.9092852 }, + { "lat": 40.8792560, "lon": -73.9092005 }, + { "lat": 40.8794587, "lon": -73.9089359 }, + { "lat": 40.8793585, "lon": -73.9087661 }, + { "lat": 40.8793174, "lon": -73.9086963 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 754436971, + "bounds": { + "minlat": 40.8794587, + "minlon": -73.9091664, + "maxlat": 40.8795843, + "maxlon": -73.9089359 + }, + "nodes": [ + 7048096538, + 7048096540, + 7048096541, + 7048096542 + ], + "geometry": [ + { "lat": 40.8794587, "lon": -73.9089359 }, + { "lat": 40.8795026, "lon": -73.9090000 }, + { "lat": 40.8795409, "lon": -73.9090947 }, + { "lat": 40.8795843, "lon": -73.9091664 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 754436972, + "bounds": { + "minlat": 40.8795843, + "minlon": -73.9092438, + "maxlat": 40.8796424, + "maxlon": -73.9091664 + }, + "nodes": [ + 7048096542, + 7048096543 + ], + "geometry": [ + { "lat": 40.8795843, "lon": -73.9091664 }, + { "lat": 40.8796424, "lon": -73.9092438 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 754436973, + "bounds": { + "minlat": 40.8796424, + "minlon": -73.9094493, + "maxlat": 40.8797482, + "maxlon": -73.9092438 + }, + "nodes": [ + 7048096543, + 7048096544, + 13020770632, + 7048096545 + ], + "geometry": [ + { "lat": 40.8796424, "lon": -73.9092438 }, + { "lat": 40.8796711, "lon": -73.9092922 }, + { "lat": 40.8797166, "lon": -73.9093849 }, + { "lat": 40.8797482, "lon": -73.9094493 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 754447750, + "bounds": { + "minlat": 40.8107570, + "minlon": -73.9188315, + "maxlat": 40.8110369, + "maxlon": -73.9186728 + }, + "nodes": [ + 7048190806, + 7048190807, + 7048190808 + ], + "geometry": [ + { "lat": 40.8107570, "lon": -73.9188315 }, + { "lat": 40.8108411, "lon": -73.9187838 }, + { "lat": 40.8110369, "lon": -73.9186728 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 754763814, + "bounds": { + "minlat": 40.7759268, + "minlon": -73.9855277, + "maxlat": 40.7764786, + "maxlon": -73.9850423 + }, + "nodes": [ + 1722116476, + 1722116521, + 1722116535, + 1722116499, + 1722116505, + 3377387937, + 1722116508, + 1722116513, + 1722116504, + 1722116492, + 1722116468, + 1722116482, + 1722116476 + ], + "geometry": [ + { "lat": 40.7759268, "lon": -73.9853840 }, + { "lat": 40.7759533, "lon": -73.9853297 }, + { "lat": 40.7763585, "lon": -73.9850436 }, + { "lat": 40.7764062, "lon": -73.9850423 }, + { "lat": 40.7764502, "lon": -73.9850730 }, + { "lat": 40.7764663, "lon": -73.9851110 }, + { "lat": 40.7764712, "lon": -73.9851227 }, + { "lat": 40.7764786, "lon": -73.9851776 }, + { "lat": 40.7764631, "lon": -73.9852247 }, + { "lat": 40.7764332, "lon": -73.9852616 }, + { "lat": 40.7760650, "lon": -73.9855277 }, + { "lat": 40.7759930, "lon": -73.9855248 }, + { "lat": 40.7759268, "lon": -73.9853840 } + ], + "tags": { + "addr:city": "New York", + "addr:housenumber": "160", + "addr:postcode": "10023", + "addr:state": "NY", + "addr:street": "West End Avenue", + "highway": "service", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 754854200, + "bounds": { + "minlat": 40.8605248, + "minlon": -73.9761445, + "maxlat": 40.8605476, + "maxlon": -73.9758808 + }, + "nodes": [ + 7051523761, + 7051523762, + 7051523763 + ], + "geometry": [ + { "lat": 40.8605270, "lon": -73.9758808 }, + { "lat": 40.8605476, "lon": -73.9760011 }, + { "lat": 40.8605248, "lon": -73.9761445 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 754854201, + "bounds": { + "minlat": 40.8605248, + "minlon": -73.9761525, + "maxlat": 40.8605272, + "maxlon": -73.9761445 + }, + "nodes": [ + 7051523763, + 7373684968 + ], + "geometry": [ + { "lat": 40.8605248, "lon": -73.9761445 }, + { "lat": 40.8605272, "lon": -73.9761525 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 755066207, + "bounds": { + "minlat": 40.8752222, + "minlon": -73.9523278, + "maxlat": 40.8756084, + "maxlon": -73.9513713 + }, + "nodes": [ + 103215730, + 7053473376, + 7053473377, + 7053473378 + ], + "geometry": [ + { "lat": 40.8756084, "lon": -73.9523278 }, + { "lat": 40.8755041, "lon": -73.9520808 }, + { "lat": 40.8752222, "lon": -73.9515859 }, + { "lat": 40.8754564, "lon": -73.9513713 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 755170981, + "bounds": { + "minlat": 40.8054318, + "minlon": -73.9163321, + "maxlat": 40.8057394, + "maxlon": -73.9161113 + }, + "nodes": [ + 7054352712, + 13038865342, + 7054352713, + 7054352714 + ], + "geometry": [ + { "lat": 40.8054318, "lon": -73.9163321 }, + { "lat": 40.8055042, "lon": -73.9162793 }, + { "lat": 40.8055326, "lon": -73.9162585 }, + { "lat": 40.8057394, "lon": -73.9161113 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 755262745, + "bounds": { + "minlat": 40.8801924, + "minlon": -74.0119421, + "maxlat": 40.8803868, + "maxlon": -74.0116846 + }, + "nodes": [ + 7055132170, + 7055132171, + 7055132172, + 7055132173, + 7055132174, + 7055132175, + 7055132176, + 7055132177, + 103286936, + 7055132160, + 7055132163, + 7055132164, + 7055132165, + 7055132166, + 7055132167, + 7055132168, + 7055132169, + 7055132161, + 7055132162, + 7055132170 + ], + "geometry": [ + { "lat": 40.8801924, "lon": -74.0117942 }, + { "lat": 40.8802021, "lon": -74.0117540 }, + { "lat": 40.8802211, "lon": -74.0117201 }, + { "lat": 40.8802473, "lon": -74.0116961 }, + { "lat": 40.8802779, "lon": -74.0116846 }, + { "lat": 40.8803098, "lon": -74.0116866 }, + { "lat": 40.8803394, "lon": -74.0117022 }, + { "lat": 40.8803637, "lon": -74.0117295 }, + { "lat": 40.8803801, "lon": -74.0117657 }, + { "lat": 40.8803868, "lon": -74.0118078 }, + { "lat": 40.8803827, "lon": -74.0118504 }, + { "lat": 40.8803682, "lon": -74.0118890 }, + { "lat": 40.8803450, "lon": -74.0119191 }, + { "lat": 40.8803156, "lon": -74.0119375 }, + { "lat": 40.8802833, "lon": -74.0119421 }, + { "lat": 40.8802516, "lon": -74.0119325 }, + { "lat": 40.8802240, "lon": -74.0119096 }, + { "lat": 40.8802037, "lon": -74.0118760 }, + { "lat": 40.8801929, "lon": -74.0118364 }, + { "lat": 40.8801924, "lon": -74.0117942 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 755709407, + "bounds": { + "minlat": 40.7842901, + "minlon": -73.9465916, + "maxlat": 40.7849455, + "maxlon": -73.9450560 + }, + "nodes": [ + 7067139595, + 7138030356, + 9906275218, + 3900964267, + 7058672148, + 6070217080, + 42443056 + ], + "geometry": [ + { "lat": 40.7842901, "lon": -73.9450560 }, + { "lat": 40.7844404, "lon": -73.9454140 }, + { "lat": 40.7846928, "lon": -73.9460032 }, + { "lat": 40.7847387, "lon": -73.9461103 }, + { "lat": 40.7848469, "lon": -73.9463722 }, + { "lat": 40.7848834, "lon": -73.9464592 }, + { "lat": 40.7849455, "lon": -73.9465916 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 97th Street", + "name:ru": "Восточная 97-я стрит", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 755781967, + "bounds": { + "minlat": 40.7495506, + "minlon": -73.9135722, + "maxlat": 40.7497676, + "maxlon": -73.9117141 + }, + "nodes": [ + 7059062006, + 8239602775, + 8239602763, + 7059062007 + ], + "geometry": [ + { "lat": 40.7497676, "lon": -73.9135722 }, + { "lat": 40.7497597, "lon": -73.9135048 }, + { "lat": 40.7495595, "lon": -73.9117899 }, + { "lat": 40.7495506, "lon": -73.9117141 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 755794279, + "bounds": { + "minlat": 40.8329426, + "minlon": -73.9265818, + "maxlat": 40.8330606, + "maxlon": -73.9262471 + }, + "nodes": [ + 7059183403, + 7059183405, + 7059183404 + ], + "geometry": [ + { "lat": 40.8330606, "lon": -73.9265818 }, + { "lat": 40.8330307, "lon": -73.9264971 }, + { "lat": 40.8329426, "lon": -73.9262471 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 755832714, + "bounds": { + "minlat": 40.8382883, + "minlon": -74.0068949, + "maxlat": 40.8385503, + "maxlon": -74.0064086 + }, + "nodes": [ + 7059495723, + 7059495724 + ], + "geometry": [ + { "lat": 40.8385503, "lon": -74.0068949 }, + { "lat": 40.8382883, "lon": -74.0064086 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 755832715, + "bounds": { + "minlat": 40.8374983, + "minlon": -74.0074829, + "maxlat": 40.8385503, + "maxlon": -74.0068949 + }, + "nodes": [ + 7059495723, + 12016147241 + ], + "geometry": [ + { "lat": 40.8385503, "lon": -74.0068949 }, + { "lat": 40.8374983, "lon": -74.0074829 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "40 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 755855917, + "bounds": { + "minlat": 40.8221539, + "minlon": -73.9380514, + "maxlat": 40.8228991, + "maxlon": -73.9362713 + }, + "nodes": [ + 7043607048, + 8758299309, + 2141026495 + ], + "geometry": [ + { "lat": 40.8221539, "lon": -73.9362713 }, + { "lat": 40.8228491, "lon": -73.9379339 }, + { "lat": 40.8228991, "lon": -73.9380514 } + ], + "tags": { + "highway": "residential", + "name": "West 147th Street", + "name_1": "West 147 Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 755866908, + "bounds": { + "minlat": 40.7285351, + "minlon": -73.9929723, + "maxlat": 40.7287244, + "maxlon": -73.9925758 + }, + "nodes": [ + 7059780018, + 8309479124, + 7059780019, + 7059780020 + ], + "geometry": [ + { "lat": 40.7285351, "lon": -73.9925758 }, + { "lat": 40.7285915, "lon": -73.9926993 }, + { "lat": 40.7286112, "lon": -73.9927423 }, + { "lat": 40.7287244, "lon": -73.9929723 } + ], + "tags": { + "highway": "service", + "smoothness": "intermediate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 755880754, + "bounds": { + "minlat": 40.7646648, + "minlon": -73.9377107, + "maxlat": 40.7647529, + "maxlon": -73.9373068 + }, + "nodes": [ + 7059887697, + 7059887698, + 7059887699, + 7059887700, + 7059887701 + ], + "geometry": [ + { "lat": 40.7647529, "lon": -73.9377107 }, + { "lat": 40.7647204, "lon": -73.9376259 }, + { "lat": 40.7646949, "lon": -73.9375377 }, + { "lat": 40.7647363, "lon": -73.9375153 }, + { "lat": 40.7646648, "lon": -73.9373068 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 755880755, + "bounds": { + "minlat": 40.7647725, + "minlon": -73.9376240, + "maxlat": 40.7648921, + "maxlon": -73.9372409 + }, + "nodes": [ + 7059887702, + 7059887703, + 7059887704 + ], + "geometry": [ + { "lat": 40.7648921, "lon": -73.9376240 }, + { "lat": 40.7648649, "lon": -73.9375354 }, + { "lat": 40.7647725, "lon": -73.9372409 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 755916685, + "bounds": { + "minlat": 40.7376661, + "minlon": -73.9746643, + "maxlat": 40.7377899, + "maxlon": -73.9745937 + }, + "nodes": [ + 7060180745, + 7060180746, + 7060180747 + ], + "geometry": [ + { "lat": 40.7377899, "lon": -73.9746643 }, + { "lat": 40.7377466, "lon": -73.9746591 }, + { "lat": 40.7376661, "lon": -73.9745937 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 755931248, + "bounds": { + "minlat": 40.7671733, + "minlon": -73.9957519, + "maxlat": 40.7674014, + "maxlon": -73.9955763 + }, + "nodes": [ + 7060282622, + 10111219493, + 7060282623, + 7060282624 + ], + "geometry": [ + { "lat": 40.7671733, "lon": -73.9957519 }, + { "lat": 40.7672331, "lon": -73.9957084 }, + { "lat": 40.7672562, "lon": -73.9956917 }, + { "lat": 40.7674014, "lon": -73.9955763 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 755935006, + "bounds": { + "minlat": 40.8461559, + "minlon": -73.9767861, + "maxlat": 40.8464570, + "maxlon": -73.9764928 + }, + "nodes": [ + 7060317059, + 7060317060 + ], + "geometry": [ + { "lat": 40.8464570, "lon": -73.9764928 }, + { "lat": 40.8461559, "lon": -73.9767861 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 755935007, + "bounds": { + "minlat": 40.8459271, + "minlon": -73.9765597, + "maxlat": 40.8463441, + "maxlon": -73.9762876 + }, + "nodes": [ + 7060317061, + 7060317062, + 7060317063 + ], + "geometry": [ + { "lat": 40.8463441, "lon": -73.9762876 }, + { "lat": 40.8460419, "lon": -73.9765597 }, + { "lat": 40.8459271, "lon": -73.9763507 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 756154799, + "bounds": { + "minlat": 40.8321591, + "minlon": -73.9098770, + "maxlat": 40.8322158, + "maxlon": -73.9096919 + }, + "nodes": [ + 7044464262, + 12038056028, + 7062529351 + ], + "geometry": [ + { "lat": 40.8322158, "lon": -73.9098770 }, + { "lat": 40.8322047, "lon": -73.9098407 }, + { "lat": 40.8321591, "lon": -73.9096919 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 756449373, + "bounds": { + "minlat": 40.8821514, + "minlon": -73.9164248, + "maxlat": 40.8844982, + "maxlon": -73.9148803 + }, + "nodes": [ + 7065518743, + 1581505593, + 10763690744, + 1581505551, + 252127475, + 10763690741, + 1581505603, + 10763690740, + 1581505516, + 1581505536, + 1581505584, + 12411864526, + 252127476, + 252127489, + 12064274947, + 12064274948, + 12064274949, + 1581505569 + ], + "geometry": [ + { "lat": 40.8844982, "lon": -73.9148803 }, + { "lat": 40.8844266, "lon": -73.9149451 }, + { "lat": 40.8843278, "lon": -73.9150282 }, + { "lat": 40.8842249, "lon": -73.9151060 }, + { "lat": 40.8840638, "lon": -73.9152112 }, + { "lat": 40.8839733, "lon": -73.9152592 }, + { "lat": 40.8838827, "lon": -73.9153040 }, + { "lat": 40.8838003, "lon": -73.9153406 }, + { "lat": 40.8837178, "lon": -73.9153707 }, + { "lat": 40.8835461, "lon": -73.9154252 }, + { "lat": 40.8833345, "lon": -73.9155136 }, + { "lat": 40.8832343, "lon": -73.9155570 }, + { "lat": 40.8831311, "lon": -73.9156196 }, + { "lat": 40.8828444, "lon": -73.9158228 }, + { "lat": 40.8825726, "lon": -73.9160305 }, + { "lat": 40.8824786, "lon": -73.9161071 }, + { "lat": 40.8823860, "lon": -73.9161880 }, + { "lat": 40.8821514, "lon": -73.9164248 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 756449859, + "bounds": { + "minlat": 40.7948722, + "minlon": -73.9726685, + "maxlat": 40.7950316, + "maxlon": -73.9722805 + }, + "nodes": [ + 7065533341, + 4205805398 + ], + "geometry": [ + { "lat": 40.7950316, "lon": -73.9726685 }, + { "lat": 40.7948722, "lon": -73.9722805 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "West 96th Street", + "name:ru": "Западная 96-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 756467857, + "bounds": { + "minlat": 40.8735745, + "minlon": -73.9075928, + "maxlat": 40.8740043, + "maxlon": -73.9074346 + }, + "nodes": [ + 7065653443, + 10128431629, + 7065653444, + 7065653445, + 7065653446 + ], + "geometry": [ + { "lat": 40.8735745, "lon": -73.9075928 }, + { "lat": 40.8736701, "lon": -73.9075584 }, + { "lat": 40.8737292, "lon": -73.9075372 }, + { "lat": 40.8737768, "lon": -73.9075535 }, + { "lat": 40.8740043, "lon": -73.9074346 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 756632802, + "bounds": { + "minlat": 40.7841159, + "minlon": -73.9450560, + "maxlat": 40.7842901, + "maxlon": -73.9446411 + }, + "nodes": [ + 7067139597, + 13703478421, + 6181709393, + 7067139595 + ], + "geometry": [ + { "lat": 40.7841159, "lon": -73.9446411 }, + { "lat": 40.7841580, "lon": -73.9447458 }, + { "lat": 40.7841837, "lon": -73.9448098 }, + { "lat": 40.7842901, "lon": -73.9450560 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 97th Street", + "name:ru": "Восточная 97-я стрит", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 756765009, + "bounds": { + "minlat": 40.7785617, + "minlon": -73.9517323, + "maxlat": 40.7787298, + "maxlon": -73.9515061 + }, + "nodes": [ + 7068067126, + 7134855836, + 7068067129, + 7068067132, + 7068067134, + 7068067127, + 7068067137, + 7068067130, + 7068067140, + 7068067139, + 7068067123, + 7068067138, + 7134855787, + 7068067131 + ], + "geometry": [ + { "lat": 40.7786600, "lon": -73.9515061 }, + { "lat": 40.7786059, "lon": -73.9515454 }, + { "lat": 40.7785765, "lon": -73.9515668 }, + { "lat": 40.7785698, "lon": -73.9515827 }, + { "lat": 40.7785623, "lon": -73.9516032 }, + { "lat": 40.7785617, "lon": -73.9516213 }, + { "lat": 40.7785648, "lon": -73.9516374 }, + { "lat": 40.7785966, "lon": -73.9517176 }, + { "lat": 40.7786065, "lon": -73.9517267 }, + { "lat": 40.7786125, "lon": -73.9517318 }, + { "lat": 40.7786221, "lon": -73.9517323 }, + { "lat": 40.7786397, "lon": -73.9517274 }, + { "lat": 40.7786743, "lon": -73.9517058 }, + { "lat": 40.7787298, "lon": -73.9516712 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 756846688, + "bounds": { + "minlat": 40.8240406, + "minlon": -73.9766056, + "maxlat": 40.8244574, + "maxlon": -73.9760273 + }, + "nodes": [ + 5362546554, + 7068877536, + 7068877537 + ], + "geometry": [ + { "lat": 40.8241486, "lon": -73.9766056 }, + { "lat": 40.8240406, "lon": -73.9762877 }, + { "lat": 40.8244574, "lon": -73.9760273 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 756846689, + "bounds": { + "minlat": 40.8237231, + "minlon": -73.9764725, + "maxlat": 40.8240406, + "maxlon": -73.9762877 + }, + "nodes": [ + 7068877536, + 7068877538 + ], + "geometry": [ + { "lat": 40.8240406, "lon": -73.9762877 }, + { "lat": 40.8237231, "lon": -73.9764725 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 756855384, + "bounds": { + "minlat": 40.7727862, + "minlon": -73.9932091, + "maxlat": 40.7739469, + "maxlon": -73.9920933 + }, + "nodes": [ + 595254573, + 11591924806, + 7787811321, + 7835476333, + 7068984193, + 7117112628, + 7068984192, + 12154508783, + 247123651 + ], + "geometry": [ + { "lat": 40.7739469, "lon": -73.9920933 }, + { "lat": 40.7738950, "lon": -73.9921527 }, + { "lat": 40.7735985, "lon": -73.9924885 }, + { "lat": 40.7735333, "lon": -73.9925626 }, + { "lat": 40.7734062, "lon": -73.9926899 }, + { "lat": 40.7731940, "lon": -73.9928890 }, + { "lat": 40.7730120, "lon": -73.9930439 }, + { "lat": 40.7728576, "lon": -73.9931551 }, + { "lat": 40.7727862, "lon": -73.9932091 } + ], + "tags": { + "construction:highway": "residential", + "highway": "service", + "motor_vehicle": "no", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 756858882, + "bounds": { + "minlat": 40.8179704, + "minlon": -73.9460091, + "maxlat": 40.8185955, + "maxlon": -73.9455480 + }, + "nodes": [ + 7069015231, + 10187641088, + 7069015232, + 7069015233, + 10743755870, + 7069015234 + ], + "geometry": [ + { "lat": 40.8179704, "lon": -73.9460091 }, + { "lat": 40.8180320, "lon": -73.9459629 }, + { "lat": 40.8180505, "lon": -73.9459490 }, + { "lat": 40.8185310, "lon": -73.9456002 }, + { "lat": 40.8185488, "lon": -73.9455858 }, + { "lat": 40.8185955, "lon": -73.9455480 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 756858883, + "bounds": { + "minlat": 40.8214388, + "minlon": -73.9442408, + "maxlat": 40.8219760, + "maxlon": -73.9438726 + }, + "nodes": [ + 7069015235, + 7069015236, + 10743755879, + 7069015237 + ], + "geometry": [ + { "lat": 40.8214388, "lon": -73.9442408 }, + { "lat": 40.8219074, "lon": -73.9439196 }, + { "lat": 40.8219205, "lon": -73.9439106 }, + { "lat": 40.8219760, "lon": -73.9438726 } + ], + "tags": { + "access": "permit", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 756859826, + "bounds": { + "minlat": 40.8056781, + "minlon": -73.9126726, + "maxlat": 40.8061352, + "maxlon": -73.9123802 + }, + "nodes": [ + 7068979476, + 13038908725, + 7068979478, + 7068979477 + ], + "geometry": [ + { "lat": 40.8056781, "lon": -73.9126726 }, + { "lat": 40.8057404, "lon": -73.9126300 }, + { "lat": 40.8058295, "lon": -73.9125689 }, + { "lat": 40.8061352, "lon": -73.9123802 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 756859827, + "bounds": { + "minlat": 40.8053632, + "minlon": -73.9131754, + "maxlat": 40.8057720, + "maxlon": -73.9128975 + }, + "nodes": [ + 7068979479, + 7068979480, + 13003839296, + 7068979481 + ], + "geometry": [ + { "lat": 40.8053632, "lon": -73.9131754 }, + { "lat": 40.8056785, "lon": -73.9129611 }, + { "lat": 40.8057178, "lon": -73.9129343 }, + { "lat": 40.8057720, "lon": -73.9128975 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 756864512, + "bounds": { + "minlat": 40.8065067, + "minlon": -73.9930614, + "maxlat": 40.8069448, + "maxlon": -73.9926742 + }, + "nodes": [ + 7069076335, + 7069076344, + 7069076336, + 7069076337, + 7069076343, + 7069076338 + ], + "geometry": [ + { "lat": 40.8069020, "lon": -73.9926742 }, + { "lat": 40.8069292, "lon": -73.9928100 }, + { "lat": 40.8069448, "lon": -73.9928883 }, + { "lat": 40.8065493, "lon": -73.9930614 }, + { "lat": 40.8065291, "lon": -73.9929734 }, + { "lat": 40.8065067, "lon": -73.9928821 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 756864513, + "bounds": { + "minlat": 40.8062040, + "minlon": -73.9933544, + "maxlat": 40.8065688, + "maxlon": -73.9930090 + }, + "nodes": [ + 7069076337, + 7069076339, + 7069076340, + 7069076342, + 7069076341 + ], + "geometry": [ + { "lat": 40.8065493, "lon": -73.9930614 }, + { "lat": 40.8065688, "lon": -73.9932421 }, + { "lat": 40.8063161, "lon": -73.9933544 }, + { "lat": 40.8062409, "lon": -73.9931227 }, + { "lat": 40.8062040, "lon": -73.9930090 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 756896255, + "bounds": { + "minlat": 40.8489497, + "minlon": -73.9672325, + "maxlat": 40.8493164, + "maxlon": -73.9670938 + }, + "nodes": [ + 7069321122, + 7069321123, + 7069321124, + 7069321121 + ], + "geometry": [ + { "lat": 40.8489497, "lon": -73.9671963 }, + { "lat": 40.8489865, "lon": -73.9672313 }, + { "lat": 40.8490186, "lon": -73.9672325 }, + { "lat": 40.8493164, "lon": -73.9670938 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 756921029, + "bounds": { + "minlat": 40.8280732, + "minlon": -73.9731561, + "maxlat": 40.8282817, + "maxlon": -73.9728028 + }, + "nodes": [ + 7069550952, + 7069550953 + ], + "geometry": [ + { "lat": 40.8280732, "lon": -73.9728028 }, + { "lat": 40.8282817, "lon": -73.9731561 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 756921030, + "bounds": { + "minlat": 40.8280732, + "minlon": -73.9728028, + "maxlat": 40.8281636, + "maxlon": -73.9727443 + }, + "nodes": [ + 7069550952, + 1752676675 + ], + "geometry": [ + { "lat": 40.8280732, "lon": -73.9728028 }, + { "lat": 40.8281636, "lon": -73.9727443 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 756925994, + "bounds": { + "minlat": 40.7766663, + "minlon": -74.0197582, + "maxlat": 40.7768706, + "maxlon": -74.0194867 + }, + "nodes": [ + 7069578517, + 7387619999, + 7069578518, + 7069578519, + 7069578522, + 7069578520 + ], + "geometry": [ + { "lat": 40.7766663, "lon": -74.0197582 }, + { "lat": 40.7767014, "lon": -74.0197310 }, + { "lat": 40.7768550, "lon": -74.0196117 }, + { "lat": 40.7768659, "lon": -74.0195830 }, + { "lat": 40.7768706, "lon": -74.0195375 }, + { "lat": 40.7768613, "lon": -74.0194867 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 756925995, + "bounds": { + "minlat": 40.7766471, + "minlon": -74.0190075, + "maxlat": 40.7767821, + "maxlon": -74.0189069 + }, + "nodes": [ + 440243650, + 4205799648 + ], + "geometry": [ + { "lat": 40.7766471, "lon": -74.0190075 }, + { "lat": 40.7767821, "lon": -74.0189069 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09101116", + "highway": "secondary", + "lanes": "2", + "name": "Park Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 756926462, + "bounds": { + "minlat": 40.7766471, + "minlon": -74.0194867, + "maxlat": 40.7768613, + "maxlon": -74.0190075 + }, + "nodes": [ + 7069578520, + 7069578521, + 7387620000, + 440243650 + ], + "geometry": [ + { "lat": 40.7768613, "lon": -74.0194867 }, + { "lat": 40.7767115, "lon": -74.0191428 }, + { "lat": 40.7766891, "lon": -74.0190959 }, + { "lat": 40.7766471, "lon": -74.0190075 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 756991583, + "bounds": { + "minlat": 40.7882355, + "minlon": -73.9405592, + "maxlat": 40.7889397, + "maxlon": -73.9388346 + }, + "nodes": [ + 7069881624, + 3519902039, + 13703504333, + 7069881623, + 6191027339, + 42456101 + ], + "geometry": [ + { "lat": 40.7882355, "lon": -73.9388346 }, + { "lat": 40.7883627, "lon": -73.9391395 }, + { "lat": 40.7887865, "lon": -73.9401397 }, + { "lat": 40.7888672, "lon": -73.9403301 }, + { "lat": 40.7888989, "lon": -73.9404239 }, + { "lat": 40.7889397, "lon": -73.9405592 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 105th Street", + "name:ru": "Восточная 105-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 757108674, + "bounds": { + "minlat": 40.7982974, + "minlon": -74.0198484, + "maxlat": 40.7987720, + "maxlon": -74.0194636 + }, + "nodes": [ + 7070917008, + 7070917009 + ], + "geometry": [ + { "lat": 40.7982974, "lon": -74.0198484 }, + { "lat": 40.7987720, "lon": -74.0194636 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 757109157, + "bounds": { + "minlat": 40.8633790, + "minlon": -73.9218261, + "maxlat": 40.8637291, + "maxlon": -73.9210051 + }, + "nodes": [ + 7070909371, + 9561399401, + 7070909375, + 7070909372, + 7070909373, + 7070909374 + ], + "geometry": [ + { "lat": 40.8637291, "lon": -73.9210051 }, + { "lat": 40.8636938, "lon": -73.9211024 }, + { "lat": 40.8636799, "lon": -73.9211406 }, + { "lat": 40.8635209, "lon": -73.9215789 }, + { "lat": 40.8634632, "lon": -73.9215945 }, + { "lat": 40.8633790, "lon": -73.9218261 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 757111891, + "bounds": { + "minlat": 40.8822779, + "minlon": -73.9893622, + "maxlat": 40.8829290, + "maxlon": -73.9889860 + }, + "nodes": [ + 3603219702, + 12022129395, + 12022129394, + 12022129392, + 7070944227, + 7070944243, + 7070944228, + 7070944229, + 7070944230, + 7070944240 + ], + "geometry": [ + { "lat": 40.8822779, "lon": -73.9893482 }, + { "lat": 40.8823090, "lon": -73.9893565 }, + { "lat": 40.8823250, "lon": -73.9893596 }, + { "lat": 40.8823390, "lon": -73.9893622 }, + { "lat": 40.8824177, "lon": -73.9893587 }, + { "lat": 40.8825116, "lon": -73.9893085 }, + { "lat": 40.8825699, "lon": -73.9892774 }, + { "lat": 40.8827162, "lon": -73.9891303 }, + { "lat": 40.8828499, "lon": -73.9890541 }, + { "lat": 40.8829290, "lon": -73.9889860 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 757111894, + "bounds": { + "minlat": 40.8822403, + "minlon": -73.9893085, + "maxlat": 40.8825116, + "maxlon": -73.9888601 + }, + "nodes": [ + 7070944242, + 7070944243 + ], + "geometry": [ + { "lat": 40.8822403, "lon": -73.9888601 }, + { "lat": 40.8825116, "lon": -73.9893085 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 757121885, + "bounds": { + "minlat": 40.8005968, + "minlon": -73.9942323, + "maxlat": 40.8011260, + "maxlon": -73.9940272 + }, + "nodes": [ + 7071027378, + 7071027379, + 7071027380, + 7071027381 + ], + "geometry": [ + { "lat": 40.8005968, "lon": -73.9942283 }, + { "lat": 40.8007308, "lon": -73.9942323 }, + { "lat": 40.8007980, "lon": -73.9942145 }, + { "lat": 40.8011260, "lon": -73.9940272 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 757167623, + "bounds": { + "minlat": 40.7154847, + "minlon": -73.9549613, + "maxlat": 40.7157251, + "maxlon": -73.9543362 + }, + "nodes": [ + 7071198461, + 9789424735, + 7071198465, + 7071198462, + 9949556558, + 7071198464 + ], + "geometry": [ + { "lat": 40.7157251, "lon": -73.9543362 }, + { "lat": 40.7156781, "lon": -73.9543834 }, + { "lat": 40.7156594, "lon": -73.9544022 }, + { "lat": 40.7154847, "lon": -73.9545788 }, + { "lat": 40.7154887, "lon": -73.9546528 }, + { "lat": 40.7156838, "lon": -73.9549613 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 757209614, + "bounds": { + "minlat": 40.8371457, + "minlon": -73.9247701, + "maxlat": 40.8372586, + "maxlon": -73.9245217 + }, + "nodes": [ + 7071361935, + 7071361937, + 7071361936 + ], + "geometry": [ + { "lat": 40.8371457, "lon": -73.9245217 }, + { "lat": 40.8371912, "lon": -73.9246218 }, + { "lat": 40.8372586, "lon": -73.9247701 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 757209927, + "bounds": { + "minlat": 40.8601919, + "minlon": -73.9261216, + "maxlat": 40.8602888, + "maxlon": -73.9259438 + }, + "nodes": [ + 7071351523, + 9561253082, + 7071351524, + 7071351525, + 7071351526, + 7071351527 + ], + "geometry": [ + { "lat": 40.8602888, "lon": -73.9261216 }, + { "lat": 40.8602450, "lon": -73.9260866 }, + { "lat": 40.8602355, "lon": -73.9260788 }, + { "lat": 40.8601953, "lon": -73.9260456 }, + { "lat": 40.8601919, "lon": -73.9260180 }, + { "lat": 40.8602229, "lon": -73.9259438 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 757215122, + "bounds": { + "minlat": 40.7111275, + "minlon": -73.9871493, + "maxlat": 40.7114939, + "maxlon": -73.9870843 + }, + "nodes": [ + 7071398758, + 8310246587, + 7071398759, + 7071398760 + ], + "geometry": [ + { "lat": 40.7114939, "lon": -73.9871493 }, + { "lat": 40.7114152, "lon": -73.9871353 }, + { "lat": 40.7113882, "lon": -73.9871305 }, + { "lat": 40.7111275, "lon": -73.9870843 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 757218830, + "bounds": { + "minlat": 40.8424871, + "minlon": -73.9691786, + "maxlat": 40.8426862, + "maxlon": -73.9687333 + }, + "nodes": [ + 7071428756, + 7292367291, + 7071428757, + 7292367317, + 7071428758 + ], + "geometry": [ + { "lat": 40.8424871, "lon": -73.9687333 }, + { "lat": 40.8425307, "lon": -73.9688054 }, + { "lat": 40.8426862, "lon": -73.9690627 }, + { "lat": 40.8426381, "lon": -73.9691243 }, + { "lat": 40.8425958, "lon": -73.9691786 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 757221348, + "bounds": { + "minlat": 40.8215528, + "minlon": -74.0100670, + "maxlat": 40.8229718, + "maxlon": -74.0098888 + }, + "nodes": [ + 5837332144, + 7071457323, + 7071457324, + 7071457325, + 7071457326, + 7071457327, + 7071457328 + ], + "geometry": [ + { "lat": 40.8215528, "lon": -74.0100133 }, + { "lat": 40.8217170, "lon": -74.0098968 }, + { "lat": 40.8217683, "lon": -74.0098888 }, + { "lat": 40.8219350, "lon": -74.0099087 }, + { "lat": 40.8220821, "lon": -74.0099480 }, + { "lat": 40.8222282, "lon": -74.0099601 }, + { "lat": 40.8229718, "lon": -74.0100670 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 757221371, + "bounds": { + "minlat": 40.8453128, + "minlon": -73.9793983, + "maxlat": 40.8457533, + "maxlon": -73.9789444 + }, + "nodes": [ + 7071445831, + 7071445832 + ], + "geometry": [ + { "lat": 40.8457533, "lon": -73.9789444 }, + { "lat": 40.8453128, "lon": -73.9793983 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 757227299, + "bounds": { + "minlat": 40.8817616, + "minlon": -73.9821803, + "maxlat": 40.8824551, + "maxlon": -73.9817138 + }, + "nodes": [ + 7071506643, + 7071506644, + 7071506650, + 7071506652, + 7071506645, + 7071506646 + ], + "geometry": [ + { "lat": 40.8824551, "lon": -73.9821803 }, + { "lat": 40.8823494, "lon": -73.9820675 }, + { "lat": 40.8823334, "lon": -73.9820382 }, + { "lat": 40.8822560, "lon": -73.9818966 }, + { "lat": 40.8821561, "lon": -73.9817138 }, + { "lat": 40.8817616, "lon": -73.9821007 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 757227300, + "bounds": { + "minlat": 40.8818958, + "minlon": -73.9823374, + "maxlat": 40.8823334, + "maxlon": -73.9820382 + }, + "nodes": [ + 7071506647, + 7071506648, + 7071506649, + 7071506650 + ], + "geometry": [ + { "lat": 40.8818958, "lon": -73.9823374 }, + { "lat": 40.8820477, "lon": -73.9822036 }, + { "lat": 40.8821218, "lon": -73.9822036 }, + { "lat": 40.8823334, "lon": -73.9820382 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 757227301, + "bounds": { + "minlat": 40.8820116, + "minlon": -73.9822036, + "maxlat": 40.8822560, + "maxlon": -73.9818966 + }, + "nodes": [ + 7071506648, + 7071506651, + 7071506652 + ], + "geometry": [ + { "lat": 40.8820477, "lon": -73.9822036 }, + { "lat": 40.8820116, "lon": -73.9821296 }, + { "lat": 40.8822560, "lon": -73.9818966 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 757229973, + "bounds": { + "minlat": 40.8714514, + "minlon": -73.9563010, + "maxlat": 40.8725654, + "maxlon": -73.9545529 + }, + "nodes": [ + 7071523207, + 7071523220, + 7071523208, + 7071523209, + 7071523210, + 7071523211, + 11290489569, + 11290480967, + 7071523212, + 7071523213, + 11290480968, + 7071523214, + 7071523215, + 7071523216, + 7071523219, + 7071523217, + 7071523218 + ], + "geometry": [ + { "lat": 40.8717809, "lon": -73.9545529 }, + { "lat": 40.8719232, "lon": -73.9548019 }, + { "lat": 40.8720052, "lon": -73.9549478 }, + { "lat": 40.8721786, "lon": -73.9552594 }, + { "lat": 40.8723146, "lon": -73.9555190 }, + { "lat": 40.8724200, "lon": -73.9557197 }, + { "lat": 40.8724368, "lon": -73.9557535 }, + { "lat": 40.8725208, "lon": -73.9559229 }, + { "lat": 40.8725654, "lon": -73.9560129 }, + { "lat": 40.8722815, "lon": -73.9563010 }, + { "lat": 40.8722159, "lon": -73.9562167 }, + { "lat": 40.8721659, "lon": -73.9561523 }, + { "lat": 40.8719525, "lon": -73.9557978 }, + { "lat": 40.8717886, "lon": -73.9554946 }, + { "lat": 40.8715924, "lon": -73.9551415 }, + { "lat": 40.8715771, "lon": -73.9551141 }, + { "lat": 40.8714514, "lon": -73.9548986 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 757229974, + "bounds": { + "minlat": 40.8715924, + "minlon": -73.9551415, + "maxlat": 40.8719232, + "maxlon": -73.9548019 + }, + "nodes": [ + 7071523220, + 7071523219 + ], + "geometry": [ + { "lat": 40.8719232, "lon": -73.9548019 }, + { "lat": 40.8715924, "lon": -73.9551415 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 757306560, + "bounds": { + "minlat": 40.7839154, + "minlon": -74.0114038, + "maxlat": 40.7840305, + "maxlon": -74.0113135 + }, + "nodes": [ + 7072202599, + 7658692344, + 7072202603 + ], + "geometry": [ + { "lat": 40.7840305, "lon": -74.0113135 }, + { "lat": 40.7839974, "lon": -74.0113394 }, + { "lat": 40.7839154, "lon": -74.0114038 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 757306561, + "bounds": { + "minlat": 40.7834974, + "minlon": -74.0116398, + "maxlat": 40.7835725, + "maxlon": -74.0115099 + }, + "nodes": [ + 7072202600, + 7072202601 + ], + "geometry": [ + { "lat": 40.7835725, "lon": -74.0116398 }, + { "lat": 40.7834974, "lon": -74.0115099 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 757306562, + "bounds": { + "minlat": 40.7835725, + "minlon": -74.0116485, + "maxlat": 40.7839154, + "maxlon": -74.0112070 + }, + "nodes": [ + 7072202602, + 7072202603, + 7072202604, + 7072202600 + ], + "geometry": [ + { "lat": 40.7838275, "lon": -74.0112070 }, + { "lat": 40.7839154, "lon": -74.0114038 }, + { "lat": 40.7836070, "lon": -74.0116485 }, + { "lat": 40.7835725, "lon": -74.0116398 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 757306563, + "bounds": { + "minlat": 40.7834974, + "minlon": -74.0115099, + "maxlat": 40.7838275, + "maxlon": -74.0112070 + }, + "nodes": [ + 7072202601, + 7072202602 + ], + "geometry": [ + { "lat": 40.7834974, "lon": -74.0115099 }, + { "lat": 40.7838275, "lon": -74.0112070 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 757359118, + "bounds": { + "minlat": 40.7040707, + "minlon": -74.0133047, + "maxlat": 40.7046539, + "maxlon": -74.0132054 + }, + "nodes": [ + 42428527, + 7685535238, + 11050101008, + 42428524 + ], + "geometry": [ + { "lat": 40.7046539, "lon": -74.0133047 }, + { "lat": 40.7045815, "lon": -74.0132943 }, + { "lat": 40.7041055, "lon": -74.0132113 }, + { "lat": 40.7040707, "lon": -74.0132054 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left": "street_side", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 757703379, + "bounds": { + "minlat": 40.7929337, + "minlon": -73.9495058, + "maxlat": 40.7936162, + "maxlon": -73.9480080 + }, + "nodes": [ + 42446138, + 7076060071, + 7076060065, + 7076060066, + 9178805721 + ], + "geometry": [ + { "lat": 40.7936162, "lon": -73.9495058 }, + { "lat": 40.7935363, "lon": -73.9494177 }, + { "lat": 40.7929884, "lon": -73.9481182 }, + { "lat": 40.7929560, "lon": -73.9480532 }, + { "lat": 40.7929337, "lon": -73.9480080 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 757703380, + "bounds": { + "minlat": 40.7917317, + "minlon": -73.9471533, + "maxlat": 40.7923882, + "maxlon": -73.9466971 + }, + "nodes": [ + 7076060069, + 7779508895, + 6860586788, + 6860586789, + 7779545011, + 6860586790 + ], + "geometry": [ + { "lat": 40.7923882, "lon": -73.9466971 }, + { "lat": 40.7923187, "lon": -73.9467475 }, + { "lat": 40.7922784, "lon": -73.9467772 }, + { "lat": 40.7918131, "lon": -73.9471010 }, + { "lat": 40.7917934, "lon": -73.9471135 }, + { "lat": 40.7917317, "lon": -73.9471533 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 757713701, + "bounds": { + "minlat": 40.7772962, + "minlon": -73.9634772, + "maxlat": 40.7774582, + "maxlon": -73.9632552 + }, + "nodes": [ + 7076310729, + 7076310726, + 7076310730, + 7076310732, + 7076310727, + 7076310731 + ], + "geometry": [ + { "lat": 40.7774582, "lon": -73.9633809 }, + { "lat": 40.7773954, "lon": -73.9633046 }, + { "lat": 40.7773513, "lon": -73.9632552 }, + { "lat": 40.7772962, "lon": -73.9632916 }, + { "lat": 40.7773092, "lon": -73.9633665 }, + { "lat": 40.7773253, "lon": -73.9634772 } + ], + "tags": { + "access": "destination", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 758009881, + "bounds": { + "minlat": 40.7839947, + "minlon": -74.0112337, + "maxlat": 40.7842786, + "maxlon": -74.0107552 + }, + "nodes": [ + 7078955413, + 7658692345, + 7078955414, + 7078955415, + 7078955419 + ], + "geometry": [ + { "lat": 40.7839947, "lon": -74.0112337 }, + { "lat": 40.7840379, "lon": -74.0111992 }, + { "lat": 40.7842097, "lon": -74.0110621 }, + { "lat": 40.7841258, "lon": -74.0108836 }, + { "lat": 40.7842786, "lon": -74.0107552 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758009882, + "bounds": { + "minlat": 40.7842786, + "minlon": -74.0112574, + "maxlat": 40.7845958, + "maxlon": -74.0106844 + }, + "nodes": [ + 7078955419, + 7078955416, + 7078955417, + 7078955418, + 7078955419 + ], + "geometry": [ + { "lat": 40.7842786, "lon": -74.0107552 }, + { "lat": 40.7843674, "lon": -74.0106844 }, + { "lat": 40.7845958, "lon": -74.0111844 }, + { "lat": 40.7845134, "lon": -74.0112574 }, + { "lat": 40.7842786, "lon": -74.0107552 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 758009883, + "bounds": { + "minlat": 40.7841682, + "minlon": -74.0112755, + "maxlat": 40.7842680, + "maxlon": -74.0110621 + }, + "nodes": [ + 7078955414, + 7078955420, + 7078955421 + ], + "geometry": [ + { "lat": 40.7842097, "lon": -74.0110621 }, + { "lat": 40.7842680, "lon": -74.0111950 }, + { "lat": 40.7841682, "lon": -74.0112755 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758010005, + "bounds": { + "minlat": 40.7958560, + "minlon": -74.0121650, + "maxlat": 40.7959301, + "maxlon": -74.0119858 + }, + "nodes": [ + 7078961207, + 7653989005, + 7078961218, + 7078961216 + ], + "geometry": [ + { "lat": 40.7959301, "lon": -74.0121650 }, + { "lat": 40.7959085, "lon": -74.0121131 }, + { "lat": 40.7958971, "lon": -74.0120858 }, + { "lat": 40.7958560, "lon": -74.0119858 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 758010006, + "bounds": { + "minlat": 40.7957691, + "minlon": -74.0119858, + "maxlat": 40.7959225, + "maxlon": -74.0117026 + }, + "nodes": [ + 7078961216, + 7078961208, + 7078961209, + 7078961210, + 7078961211, + 7078961212, + 7078961213, + 7078961214, + 7078961217, + 7078961215, + 7078961216 + ], + "geometry": [ + { "lat": 40.7958560, "lon": -74.0119858 }, + { "lat": 40.7957691, "lon": -74.0117747 }, + { "lat": 40.7957698, "lon": -74.0117518 }, + { "lat": 40.7958281, "lon": -74.0117026 }, + { "lat": 40.7958420, "lon": -74.0117049 }, + { "lat": 40.7958630, "lon": -74.0117304 }, + { "lat": 40.7959194, "lon": -74.0118621 }, + { "lat": 40.7959225, "lon": -74.0118886 }, + { "lat": 40.7959193, "lon": -74.0119100 }, + { "lat": 40.7959167, "lon": -74.0119134 }, + { "lat": 40.7958560, "lon": -74.0119858 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 758014113, + "bounds": { + "minlat": 40.7591419, + "minlon": -73.9120816, + "maxlat": 40.7593113, + "maxlon": -73.9117047 + }, + "nodes": [ + 7078997754, + 7078997757, + 8593804427, + 7078997756 + ], + "geometry": [ + { "lat": 40.7591419, "lon": -73.9117047 }, + { "lat": 40.7592660, "lon": -73.9119823 }, + { "lat": 40.7592826, "lon": -73.9120187 }, + { "lat": 40.7593113, "lon": -73.9120816 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758028571, + "bounds": { + "minlat": 40.8405668, + "minlon": -73.9706221, + "maxlat": 40.8408146, + "maxlon": -73.9699299 + }, + "nodes": [ + 7079131272, + 7672312278, + 7079131273, + 7079131274, + 7079131276, + 7079131275 + ], + "geometry": [ + { "lat": 40.8405668, "lon": -73.9706221 }, + { "lat": 40.8406212, "lon": -73.9705891 }, + { "lat": 40.8407815, "lon": -73.9704919 }, + { "lat": 40.8408146, "lon": -73.9704474 }, + { "lat": 40.8407486, "lon": -73.9702289 }, + { "lat": 40.8406584, "lon": -73.9699299 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758028572, + "bounds": { + "minlat": 40.8404370, + "minlon": -73.9702880, + "maxlat": 40.8407486, + "maxlon": -73.9702064 + }, + "nodes": [ + 7079131276, + 7079131277, + 7672312277, + 7079131278 + ], + "geometry": [ + { "lat": 40.8407486, "lon": -73.9702289 }, + { "lat": 40.8405724, "lon": -73.9702064 }, + { "lat": 40.8404962, "lon": -73.9702523 }, + { "lat": 40.8404370, "lon": -73.9702880 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758031839, + "bounds": { + "minlat": 40.7397397, + "minlon": -73.9364239, + "maxlat": 40.7399459, + "maxlon": -73.9355200 + }, + "nodes": [ + 7079159414, + 10762203023, + 7079159422, + 7079159417, + 10118310680, + 7079159415, + 10762203020, + 7079159416 + ], + "geometry": [ + { "lat": 40.7399459, "lon": -73.9364239 }, + { "lat": 40.7399325, "lon": -73.9363540 }, + { "lat": 40.7399254, "lon": -73.9363166 }, + { "lat": 40.7398960, "lon": -73.9362092 }, + { "lat": 40.7397609, "lon": -73.9356668 }, + { "lat": 40.7397511, "lon": -73.9356257 }, + { "lat": 40.7397481, "lon": -73.9355983 }, + { "lat": 40.7397397, "lon": -73.9355200 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 758041546, + "bounds": { + "minlat": 40.7091455, + "minlon": -73.9311798, + "maxlat": 40.7119278, + "maxlon": -73.9279080 + }, + "nodes": [ + 7412849581, + 9767625280, + 7079225444, + 7079225445, + 5510296568, + 13730004806, + 13730004807, + 10750978718, + 10003499553, + 5510294998, + 10003499546, + 10003499549, + 10003499548, + 10003499547 + ], + "geometry": [ + { "lat": 40.7119278, "lon": -73.9288950 }, + { "lat": 40.7119042, "lon": -73.9289880 }, + { "lat": 40.7118901, "lon": -73.9290433 }, + { "lat": 40.7113401, "lon": -73.9311702 }, + { "lat": 40.7113159, "lon": -73.9311798 }, + { "lat": 40.7107964, "lon": -73.9309549 }, + { "lat": 40.7107265, "lon": -73.9309532 }, + { "lat": 40.7100247, "lon": -73.9306249 }, + { "lat": 40.7092510, "lon": -73.9302861 }, + { "lat": 40.7091522, "lon": -73.9302407 }, + { "lat": 40.7091455, "lon": -73.9301443 }, + { "lat": 40.7096780, "lon": -73.9280228 }, + { "lat": 40.7096833, "lon": -73.9280019 }, + { "lat": 40.7097073, "lon": -73.9279080 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 758044378, + "bounds": { + "minlat": 40.8393853, + "minlon": -74.0085745, + "maxlat": 40.8398411, + "maxlon": -74.0077287 + }, + "nodes": [ + 5772293403, + 7079261123 + ], + "geometry": [ + { "lat": 40.8393853, "lon": -74.0077287 }, + { "lat": 40.8398411, "lon": -74.0085745 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 758044379, + "bounds": { + "minlat": 40.8398411, + "minlon": -74.0087295, + "maxlat": 40.8399221, + "maxlon": -74.0085745 + }, + "nodes": [ + 7079261123, + 7079261124 + ], + "geometry": [ + { "lat": 40.8398411, "lon": -74.0085745 }, + { "lat": 40.8399221, "lon": -74.0087295 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758061133, + "bounds": { + "minlat": 40.7064096, + "minlon": -73.9442851, + "maxlat": 40.7064880, + "maxlon": -73.9442722 + }, + "nodes": [ + 7079402995, + 9755354463, + 7079402996 + ], + "geometry": [ + { "lat": 40.7064880, "lon": -73.9442851 }, + { "lat": 40.7064310, "lon": -73.9442757 }, + { "lat": 40.7064096, "lon": -73.9442722 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758061134, + "bounds": { + "minlat": 40.7061881, + "minlon": -73.9442722, + "maxlat": 40.7064096, + "maxlon": -73.9440664 + }, + "nodes": [ + 7079402996, + 7079402997, + 7079402998 + ], + "geometry": [ + { "lat": 40.7064096, "lon": -73.9442722 }, + { "lat": 40.7061881, "lon": -73.9442348 }, + { "lat": 40.7062066, "lon": -73.9440664 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 758127647, + "bounds": { + "minlat": 40.7253741, + "minlon": -74.0067125, + "maxlat": 40.7257657, + "maxlon": -74.0066451 + }, + "nodes": [ + 7079923150, + 10960927617, + 7079923151 + ], + "geometry": [ + { "lat": 40.7257657, "lon": -74.0066451 }, + { "lat": 40.7256911, "lon": -74.0066579 }, + { "lat": 40.7253741, "lon": -74.0067125 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758127648, + "bounds": { + "minlat": 40.7251093, + "minlon": -74.0067581, + "maxlat": 40.7253741, + "maxlon": -74.0067125 + }, + "nodes": [ + 7079923151, + 8304498433, + 7079923153 + ], + "geometry": [ + { "lat": 40.7253741, "lon": -74.0067125 }, + { "lat": 40.7251692, "lon": -74.0067477 }, + { "lat": 40.7251093, "lon": -74.0067581 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758167602, + "bounds": { + "minlat": 40.7861908, + "minlon": -73.9400932, + "maxlat": 40.7862649, + "maxlon": -73.9400433 + }, + "nodes": [ + 7080329522, + 8822573000, + 7080329520 + ], + "geometry": [ + { "lat": 40.7862649, "lon": -73.9400433 }, + { "lat": 40.7862140, "lon": -73.9400792 }, + { "lat": 40.7861908, "lon": -73.9400932 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 758167603, + "bounds": { + "minlat": 40.7861721, + "minlon": -73.9400510, + "maxlat": 40.7862430, + "maxlon": -73.9399925 + }, + "nodes": [ + 7080329531, + 8822572940, + 7080329528 + ], + "geometry": [ + { "lat": 40.7861721, "lon": -73.9400510 }, + { "lat": 40.7861939, "lon": -73.9400311 }, + { "lat": 40.7862430, "lon": -73.9399925 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 758267395, + "bounds": { + "minlat": 40.8155145, + "minlon": -73.9823900, + "maxlat": 40.8156416, + "maxlon": -73.9821922 + }, + "nodes": [ + 4205589200, + 7081512516, + 7081512517 + ], + "geometry": [ + { "lat": 40.8155145, "lon": -73.9821922 }, + { "lat": 40.8155981, "lon": -73.9823269 }, + { "lat": 40.8156416, "lon": -73.9823900 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758267396, + "bounds": { + "minlat": 40.8154491, + "minlon": -73.9828641, + "maxlat": 40.8157872, + "maxlon": -73.9823900 + }, + "nodes": [ + 7081512517, + 7081512511, + 7081512512, + 7081512513, + 7081512514, + 7081512518 + ], + "geometry": [ + { "lat": 40.8156416, "lon": -73.9823900 }, + { "lat": 40.8156682, "lon": -73.9824282 }, + { "lat": 40.8157872, "lon": -73.9826148 }, + { "lat": 40.8155774, "lon": -73.9828641 }, + { "lat": 40.8154694, "lon": -73.9827095 }, + { "lat": 40.8154491, "lon": -73.9826814 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 758267397, + "bounds": { + "minlat": 40.8153837, + "minlon": -73.9826814, + "maxlat": 40.8155981, + "maxlon": -73.9823269 + }, + "nodes": [ + 7081512518, + 7081512515, + 7081512516 + ], + "geometry": [ + { "lat": 40.8154491, "lon": -73.9826814 }, + { "lat": 40.8153837, "lon": -73.9825748 }, + { "lat": 40.8155981, "lon": -73.9823269 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758270769, + "bounds": { + "minlat": 40.8813265, + "minlon": -73.9090005, + "maxlat": 40.8815575, + "maxlon": -73.9085750 + }, + "nodes": [ + 7081562641, + 7081562643, + 12991055074, + 7081562640 + ], + "geometry": [ + { "lat": 40.8813265, "lon": -73.9085750 }, + { "lat": 40.8815227, "lon": -73.9089365 }, + { "lat": 40.8815273, "lon": -73.9089449 }, + { "lat": 40.8815575, "lon": -73.9090005 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 758278163, + "bounds": { + "minlat": 40.8761074, + "minlon": -74.0203666, + "maxlat": 40.8764465, + "maxlon": -74.0196742 + }, + "nodes": [ + 7081638780, + 7081638781, + 7081638782, + 7081638783 + ], + "geometry": [ + { "lat": 40.8764465, "lon": -74.0202914 }, + { "lat": 40.8762451, "lon": -74.0196742 }, + { "lat": 40.8761074, "lon": -74.0197070 }, + { "lat": 40.8762392, "lon": -74.0203666 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 758278164, + "bounds": { + "minlat": 40.8756340, + "minlon": -74.0200627, + "maxlat": 40.8761074, + "maxlon": -74.0197070 + }, + "nodes": [ + 7081638782, + 7081638784, + 7081638785 + ], + "geometry": [ + { "lat": 40.8761074, "lon": -74.0197070 }, + { "lat": 40.8756685, "lon": -74.0198692 }, + { "lat": 40.8756340, "lon": -74.0200627 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758278175, + "bounds": { + "minlat": 40.8749699, + "minlon": -74.0200242, + "maxlat": 40.8756116, + "maxlon": -74.0196613 + }, + "nodes": [ + 7006293683, + 7081638832, + 7081638904, + 7081638833 + ], + "geometry": [ + { "lat": 40.8749699, "lon": -74.0200242 }, + { "lat": 40.8753239, "lon": -74.0198794 }, + { "lat": 40.8755908, "lon": -74.0196771 }, + { "lat": 40.8756116, "lon": -74.0196613 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758294167, + "bounds": { + "minlat": 40.8023668, + "minlon": -73.9355964, + "maxlat": 40.8025234, + "maxlon": -73.9352120 + }, + "nodes": [ + 7081737068, + 7081737064, + 7081737069 + ], + "geometry": [ + { "lat": 40.8025234, "lon": -73.9355964 }, + { "lat": 40.8024259, "lon": -73.9353576 }, + { "lat": 40.8023668, "lon": -73.9352120 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758294170, + "bounds": { + "minlat": 40.8019441, + "minlon": -73.9356931, + "maxlat": 40.8022869, + "maxlon": -73.9354488 + }, + "nodes": [ + 7081737071, + 10170841825, + 7081737067 + ], + "geometry": [ + { "lat": 40.8022869, "lon": -73.9354488 }, + { "lat": 40.8020008, "lon": -73.9356527 }, + { "lat": 40.8019441, "lon": -73.9356931 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758308785, + "bounds": { + "minlat": 40.8294579, + "minlon": -73.9807279, + "maxlat": 40.8296835, + "maxlon": -73.9800415 + }, + "nodes": [ + 7081878840, + 7081878841, + 7081878842, + 7081878843 + ], + "geometry": [ + { "lat": 40.8294579, "lon": -73.9800415 }, + { "lat": 40.8296835, "lon": -73.9804694 }, + { "lat": 40.8296814, "lon": -73.9805180 }, + { "lat": 40.8294890, "lon": -73.9807279 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 758572656, + "bounds": { + "minlat": 40.7421137, + "minlon": -73.9306575, + "maxlat": 40.7424943, + "maxlon": -73.9305862 + }, + "nodes": [ + 5482217736, + 10743722154, + 7084532197, + 7084532192 + ], + "geometry": [ + { "lat": 40.7424943, "lon": -73.9305862 }, + { "lat": 40.7424093, "lon": -73.9306019 }, + { "lat": 40.7422927, "lon": -73.9306235 }, + { "lat": 40.7421137, "lon": -73.9306575 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 758572657, + "bounds": { + "minlat": 40.7419978, + "minlon": -73.9310571, + "maxlat": 40.7423352, + "maxlon": -73.9309901 + }, + "nodes": [ + 7084532193, + 7084532194 + ], + "geometry": [ + { "lat": 40.7423352, "lon": -73.9309901 }, + { "lat": 40.7419978, "lon": -73.9310571 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 758572658, + "bounds": { + "minlat": 40.7419755, + "minlon": -73.9305475, + "maxlat": 40.7422783, + "maxlon": -73.9304992 + }, + "nodes": [ + 7084532195, + 7084532196 + ], + "geometry": [ + { "lat": 40.7422783, "lon": -73.9304992 }, + { "lat": 40.7419755, "lon": -73.9305475 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 758572659, + "bounds": { + "minlat": 40.7422783, + "minlon": -73.9309901, + "maxlat": 40.7423352, + "maxlon": -73.9304992 + }, + "nodes": [ + 7084532193, + 5482217729, + 7084532197, + 7084532195 + ], + "geometry": [ + { "lat": 40.7423352, "lon": -73.9309901 }, + { "lat": 40.7423125, "lon": -73.9307940 }, + { "lat": 40.7422927, "lon": -73.9306235 }, + { "lat": 40.7422783, "lon": -73.9304992 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 758575657, + "bounds": { + "minlat": 40.7438005, + "minlon": -73.9268150, + "maxlat": 40.7439447, + "maxlon": -73.9267907 + }, + "nodes": [ + 7084590492, + 10743722668, + 7084590493 + ], + "geometry": [ + { "lat": 40.7439447, "lon": -73.9267907 }, + { "lat": 40.7438493, "lon": -73.9268069 }, + { "lat": 40.7438005, "lon": -73.9268150 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758575658, + "bounds": { + "minlat": 40.7430384, + "minlon": -73.9272394, + "maxlat": 40.7431546, + "maxlon": -73.9263540 + }, + "nodes": [ + 5482367307, + 10743722658, + 7084590503, + 7084590497, + 10743722663, + 5482367308 + ], + "geometry": [ + { "lat": 40.7431546, "lon": -73.9272394 }, + { "lat": 40.7431463, "lon": -73.9271653 }, + { "lat": 40.7431287, "lon": -73.9270093 }, + { "lat": 40.7431031, "lon": -73.9267815 }, + { "lat": 40.7430548, "lon": -73.9264622 }, + { "lat": 40.7430384, "lon": -73.9263540 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758575659, + "bounds": { + "minlat": 40.7434398, + "minlon": -73.9267211, + "maxlat": 40.7436034, + "maxlon": -73.9266876 + }, + "nodes": [ + 7084590494, + 7084590495 + ], + "geometry": [ + { "lat": 40.7436034, "lon": -73.9266876 }, + { "lat": 40.7434398, "lon": -73.9267211 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758575660, + "bounds": { + "minlat": 40.7435530, + "minlon": -73.9266876, + "maxlat": 40.7436034, + "maxlon": -73.9262505 + }, + "nodes": [ + 5482367302, + 10743722666, + 7084590494 + ], + "geometry": [ + { "lat": 40.7435530, "lon": -73.9262505 }, + { "lat": 40.7435646, "lon": -73.9263612 }, + { "lat": 40.7436034, "lon": -73.9266876 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 758575661, + "bounds": { + "minlat": 40.7433889, + "minlon": -73.9267211, + "maxlat": 40.7434398, + "maxlon": -73.9262838 + }, + "nodes": [ + 7084590495, + 10743722665, + 5482367299 + ], + "geometry": [ + { "lat": 40.7434398, "lon": -73.9267211 }, + { "lat": 40.7434014, "lon": -73.9263907 }, + { "lat": 40.7433889, "lon": -73.9262838 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 758575662, + "bounds": { + "minlat": 40.7432136, + "minlon": -73.9267506, + "maxlat": 40.7432641, + "maxlon": -73.9263194 + }, + "nodes": [ + 7084590496, + 10743722664, + 5482367306 + ], + "geometry": [ + { "lat": 40.7432641, "lon": -73.9267506 }, + { "lat": 40.7432262, "lon": -73.9264269 }, + { "lat": 40.7432136, "lon": -73.9263194 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758575663, + "bounds": { + "minlat": 40.7431031, + "minlon": -73.9267815, + "maxlat": 40.7432641, + "maxlon": -73.9267506 + }, + "nodes": [ + 7084590496, + 7084590497 + ], + "geometry": [ + { "lat": 40.7432641, "lon": -73.9267506 }, + { "lat": 40.7431031, "lon": -73.9267815 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758575664, + "bounds": { + "minlat": 40.7432864, + "minlon": -73.9270497, + "maxlat": 40.7437223, + "maxlon": -73.9269759 + }, + "nodes": [ + 7084590498, + 7084590499 + ], + "geometry": [ + { "lat": 40.7437223, "lon": -73.9269759 }, + { "lat": 40.7432864, "lon": -73.9270497 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 758575665, + "bounds": { + "minlat": 40.7432539, + "minlon": -73.9268150, + "maxlat": 40.7437081, + "maxlon": -73.9267251 + }, + "nodes": [ + 7084590500, + 7084590501 + ], + "geometry": [ + { "lat": 40.7432539, "lon": -73.9268150 }, + { "lat": 40.7437081, "lon": -73.9267251 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 758575666, + "bounds": { + "minlat": 40.7437223, + "minlon": -73.9269759, + "maxlat": 40.7438005, + "maxlon": -73.9268150 + }, + "nodes": [ + 7084590493, + 7084590498 + ], + "geometry": [ + { "lat": 40.7438005, "lon": -73.9268150 }, + { "lat": 40.7437223, "lon": -73.9269759 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 758575667, + "bounds": { + "minlat": 40.7437081, + "minlon": -73.9268150, + "maxlat": 40.7438005, + "maxlon": -73.9267251 + }, + "nodes": [ + 7084590501, + 7084590493 + ], + "geometry": [ + { "lat": 40.7437081, "lon": -73.9267251 }, + { "lat": 40.7438005, "lon": -73.9268150 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 758575668, + "bounds": { + "minlat": 40.7432021, + "minlon": -73.9269920, + "maxlat": 40.7432539, + "maxlon": -73.9268150 + }, + "nodes": [ + 7084590502, + 7084590500 + ], + "geometry": [ + { "lat": 40.7432021, "lon": -73.9269920 }, + { "lat": 40.7432539, "lon": -73.9268150 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 758575669, + "bounds": { + "minlat": 40.7432021, + "minlon": -73.9270497, + "maxlat": 40.7432864, + "maxlon": -73.9269920 + }, + "nodes": [ + 7084590499, + 7084590502 + ], + "geometry": [ + { "lat": 40.7432864, "lon": -73.9270497 }, + { "lat": 40.7432021, "lon": -73.9269920 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 758575670, + "bounds": { + "minlat": 40.7431287, + "minlon": -73.9270093, + "maxlat": 40.7432021, + "maxlon": -73.9269920 + }, + "nodes": [ + 7084590502, + 7084590503 + ], + "geometry": [ + { "lat": 40.7432021, "lon": -73.9269920 }, + { "lat": 40.7431287, "lon": -73.9270093 } + ], + "tags": { + "highway": "service", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 758576410, + "bounds": { + "minlat": 40.7434780, + "minlon": -73.9257080, + "maxlat": 40.7438100, + "maxlon": -73.9256343 + }, + "nodes": [ + 7084525141, + 10743722649, + 7084525142 + ], + "geometry": [ + { "lat": 40.7438100, "lon": -73.9256343 }, + { "lat": 40.7437202, "lon": -73.9256543 }, + { "lat": 40.7434780, "lon": -73.9257080 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758576411, + "bounds": { + "minlat": 40.7434618, + "minlon": -73.9257080, + "maxlat": 40.7434780, + "maxlon": -73.9255685 + }, + "nodes": [ + 7084525142, + 7084525143 + ], + "geometry": [ + { "lat": 40.7434780, "lon": -73.9257080 }, + { "lat": 40.7434618, "lon": -73.9255685 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758627829, + "bounds": { + "minlat": 40.8787363, + "minlon": -73.9081411, + "maxlat": 40.8790602, + "maxlon": -73.9076088 + }, + "nodes": [ + 7085395427, + 13038890015, + 7085395428, + 7085395429, + 7085395430, + 7085395431 + ], + "geometry": [ + { "lat": 40.8787363, "lon": -73.9076088 }, + { "lat": 40.8787888, "lon": -73.9077112 }, + { "lat": 40.8788063, "lon": -73.9077454 }, + { "lat": 40.8789148, "lon": -73.9079284 }, + { "lat": 40.8789600, "lon": -73.9079718 }, + { "lat": 40.8790602, "lon": -73.9081411 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 758642677, + "bounds": { + "minlat": 40.7961449, + "minlon": -73.9962137, + "maxlat": 40.7965195, + "maxlon": -73.9958491 + }, + "nodes": [ + 5482013584, + 7085570314, + 7085570315, + 5482013587 + ], + "geometry": [ + { "lat": 40.7961449, "lon": -73.9960380 }, + { "lat": 40.7961895, "lon": -73.9959596 }, + { "lat": 40.7963719, "lon": -73.9958491 }, + { "lat": 40.7965195, "lon": -73.9962137 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758644368, + "bounds": { + "minlat": 40.8151780, + "minlon": -73.9320022, + "maxlat": 40.8151842, + "maxlon": -73.9311935 + }, + "nodes": [ + 7085574261, + 13004515406, + 7085574262 + ], + "geometry": [ + { "lat": 40.8151842, "lon": -73.9320022 }, + { "lat": 40.8151785, "lon": -73.9312615 }, + { "lat": 40.8151780, "lon": -73.9311935 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758644369, + "bounds": { + "minlat": 40.8140357, + "minlon": -73.9316567, + "maxlat": 40.8142290, + "maxlon": -73.9315356 + }, + "nodes": [ + 7085574264, + 13004501593, + 7085574271, + 7085574265 + ], + "geometry": [ + { "lat": 40.8140357, "lon": -73.9316567 }, + { "lat": 40.8140818, "lon": -73.9316261 }, + { "lat": 40.8141388, "lon": -73.9315883 }, + { "lat": 40.8142290, "lon": -73.9315356 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758644370, + "bounds": { + "minlat": 40.8142018, + "minlon": -73.9320484, + "maxlat": 40.8146204, + "maxlon": -73.9320323 + }, + "nodes": [ + 7085574269, + 13004501594, + 7085574270, + 7557653510 + ], + "geometry": [ + { "lat": 40.8142018, "lon": -73.9320484 }, + { "lat": 40.8142552, "lon": -73.9320463 }, + { "lat": 40.8143229, "lon": -73.9320437 }, + { "lat": 40.8146204, "lon": -73.9320323 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 758648887, + "bounds": { + "minlat": 40.7912990, + "minlon": -74.0111975, + "maxlat": 40.7915025, + "maxlon": -74.0108195 + }, + "nodes": [ + 7085632627, + 7678131138, + 7085632628, + 7085632629 + ], + "geometry": [ + { "lat": 40.7915025, "lon": -74.0111975 }, + { "lat": 40.7914735, "lon": -74.0111525 }, + { "lat": 40.7914536, "lon": -74.0111216 }, + { "lat": 40.7912990, "lon": -74.0108195 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 758691816, + "bounds": { + "minlat": 40.8412271, + "minlon": -74.0034379, + "maxlat": 40.8414505, + "maxlon": -74.0032039 + }, + "nodes": [ + 7085979718, + 7085979719 + ], + "geometry": [ + { "lat": 40.8412271, "lon": -74.0034379 }, + { "lat": 40.8414505, "lon": -74.0032039 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758705573, + "bounds": { + "minlat": 40.8270946, + "minlon": -73.9747245, + "maxlat": 40.8272997, + "maxlon": -73.9743825 + }, + "nodes": [ + 7086141070, + 7086141071 + ], + "geometry": [ + { "lat": 40.8272997, "lon": -73.9747245 }, + { "lat": 40.8270946, "lon": -73.9743825 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758844254, + "bounds": { + "minlat": 40.8440166, + "minlon": -74.0131700, + "maxlat": 40.8445838, + "maxlon": -74.0124248 + }, + "nodes": [ + 6901623423, + 12065809138, + 7087387894, + 7087387902, + 7087387895, + 7087387896, + 7087387897, + 7087387898, + 7087387903, + 7087387899, + 10936791198, + 298567562 + ], + "geometry": [ + { "lat": 40.8445838, "lon": -74.0131700 }, + { "lat": 40.8444007, "lon": -74.0130154 }, + { "lat": 40.8443632, "lon": -74.0129916 }, + { "lat": 40.8442786, "lon": -74.0129724 }, + { "lat": 40.8440503, "lon": -74.0129207 }, + { "lat": 40.8440235, "lon": -74.0128715 }, + { "lat": 40.8440166, "lon": -74.0126106 }, + { "lat": 40.8440982, "lon": -74.0125710 }, + { "lat": 40.8443402, "lon": -74.0125274 }, + { "lat": 40.8443587, "lon": -74.0125193 }, + { "lat": 40.8443753, "lon": -74.0125061 }, + { "lat": 40.8444725, "lon": -74.0124248 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 758844255, + "bounds": { + "minlat": 40.8442786, + "minlon": -74.0133505, + "maxlat": 40.8444041, + "maxlon": -74.0129724 + }, + "nodes": [ + 6901623420, + 7087387901, + 7087387902 + ], + "geometry": [ + { "lat": 40.8444041, "lon": -74.0133505 }, + { "lat": 40.8442938, "lon": -74.0132632 }, + { "lat": 40.8442786, "lon": -74.0129724 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758844256, + "bounds": { + "minlat": 40.8443402, + "minlon": -74.0129916, + "maxlat": 40.8443632, + "maxlon": -74.0125274 + }, + "nodes": [ + 7087387894, + 7087387903 + ], + "geometry": [ + { "lat": 40.8443632, "lon": -74.0129916 }, + { "lat": 40.8443402, "lon": -74.0125274 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758859100, + "bounds": { + "minlat": 40.8622047, + "minlon": -73.9675898, + "maxlat": 40.8626592, + "maxlon": -73.9664835 + }, + "nodes": [ + 7087519303, + 7087519304, + 7087519305, + 7087519306, + 7087519307, + 7087519308, + 7087519309 + ], + "geometry": [ + { "lat": 40.8623513, "lon": -73.9675898 }, + { "lat": 40.8623419, "lon": -73.9674449 }, + { "lat": 40.8622870, "lon": -73.9673316 }, + { "lat": 40.8622227, "lon": -73.9672012 }, + { "lat": 40.8622047, "lon": -73.9670821 }, + { "lat": 40.8624500, "lon": -73.9667533 }, + { "lat": 40.8626592, "lon": -73.9664835 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758863578, + "bounds": { + "minlat": 40.8660024, + "minlon": -73.9744075, + "maxlat": 40.8667074, + "maxlon": -73.9739032 + }, + "nodes": [ + 7087554942, + 7087554943, + 7087554944, + 7087554945, + 12670658589, + 7087554946, + 7087554947, + 7087554948, + 12670658588, + 7087554949, + 12670658587, + 7087554950, + 7087554952, + 7087554951 + ], + "geometry": [ + { "lat": 40.8660024, "lon": -73.9741380 }, + { "lat": 40.8660811, "lon": -73.9742462 }, + { "lat": 40.8661757, "lon": -73.9743356 }, + { "lat": 40.8662429, "lon": -73.9743872 }, + { "lat": 40.8662725, "lon": -73.9744020 }, + { "lat": 40.8663109, "lon": -73.9744075 }, + { "lat": 40.8665639, "lon": -73.9743156 }, + { "lat": 40.8666223, "lon": -73.9742892 }, + { "lat": 40.8666478, "lon": -73.9742652 }, + { "lat": 40.8666696, "lon": -73.9742327 }, + { "lat": 40.8666893, "lon": -73.9741927 }, + { "lat": 40.8667043, "lon": -73.9741308 }, + { "lat": 40.8667074, "lon": -73.9740634 }, + { "lat": 40.8666818, "lon": -73.9739032 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758863579, + "bounds": { + "minlat": 40.8668564, + "minlon": -73.9743013, + "maxlat": 40.8672459, + "maxlon": -73.9739623 + }, + "nodes": [ + 7087554963, + 7087554962, + 12670658585, + 7087554961, + 12670658586, + 7087554960, + 7087554959, + 12670658583, + 7087554958, + 12670658584, + 7087554957, + 7087554956, + 7087554955, + 7373684769, + 7087554954, + 7087554963 + ], + "geometry": [ + { "lat": 40.8672117, "lon": -73.9739623 }, + { "lat": 40.8668759, "lon": -73.9740790 }, + { "lat": 40.8668671, "lon": -73.9740881 }, + { "lat": 40.8668604, "lon": -73.9740995 }, + { "lat": 40.8668564, "lon": -73.9741163 }, + { "lat": 40.8668567, "lon": -73.9741334 }, + { "lat": 40.8668832, "lon": -73.9742686 }, + { "lat": 40.8668891, "lon": -73.9742819 }, + { "lat": 40.8668978, "lon": -73.9742928 }, + { "lat": 40.8669087, "lon": -73.9743007 }, + { "lat": 40.8669207, "lon": -73.9743013 }, + { "lat": 40.8672212, "lon": -73.9742022 }, + { "lat": 40.8672422, "lon": -73.9741720 }, + { "lat": 40.8672434, "lon": -73.9741579 }, + { "lat": 40.8672459, "lon": -73.9741297 }, + { "lat": 40.8672117, "lon": -73.9739623 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 758863580, + "bounds": { + "minlat": 40.8673451, + "minlon": -73.9740832, + "maxlat": 40.8674365, + "maxlon": -73.9736573 + }, + "nodes": [ + 7087554964, + 7087554965, + 7373684766 + ], + "geometry": [ + { "lat": 40.8673451, "lon": -73.9736573 }, + { "lat": 40.8674198, "lon": -73.9740410 }, + { "lat": 40.8674365, "lon": -73.9740832 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 758880895, + "bounds": { + "minlat": 40.8207191, + "minlon": -73.9243645, + "maxlat": 40.8211256, + "maxlon": -73.9232079 + }, + "nodes": [ + 7069303134, + 7557517342 + ], + "geometry": [ + { "lat": 40.8211256, "lon": -73.9243645 }, + { "lat": 40.8207191, "lon": -73.9232079 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 758923988, + "bounds": { + "minlat": 40.8533411, + "minlon": -73.9936863, + "maxlat": 40.8537581, + "maxlon": -73.9931160 + }, + "nodes": [ + 7088158241, + 7088158242, + 7088158243, + 7088158244, + 7088158245, + 7088158246 + ], + "geometry": [ + { "lat": 40.8537581, "lon": -73.9936863 }, + { "lat": 40.8536468, "lon": -73.9934346 }, + { "lat": 40.8535811, "lon": -73.9933479 }, + { "lat": 40.8535204, "lon": -73.9933414 }, + { "lat": 40.8534773, "lon": -73.9933336 }, + { "lat": 40.8533411, "lon": -73.9931160 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 759233078, + "bounds": { + "minlat": 40.7544074, + "minlon": -73.9692682, + "maxlat": 40.7546272, + "maxlon": -73.9690041 + }, + "nodes": [ + 2711393518, + 7091751721, + 2711393529, + 7091751719, + 2711393518 + ], + "geometry": [ + { "lat": 40.7544687, "lon": -73.9692682 }, + { "lat": 40.7544074, "lon": -73.9691144 }, + { "lat": 40.7545654, "lon": -73.9690041 }, + { "lat": 40.7546272, "lon": -73.9691528 }, + { "lat": 40.7544687, "lon": -73.9692682 } + ], + "tags": { + "access": "permissive", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Sterling Plaza POPS", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 759400661, + "bounds": { + "minlat": 40.7912460, + "minlon": -73.9526563, + "maxlat": 40.7914921, + "maxlon": -73.9524356 + }, + "nodes": [ + 7093408637, + 7093408651, + 7093408634, + 7093408642, + 7093408648, + 7093408631, + 7093408639, + 7093408651 + ], + "geometry": [ + { "lat": 40.7914921, "lon": -73.9524356 }, + { "lat": 40.7914405, "lon": -73.9524857 }, + { "lat": 40.7913441, "lon": -73.9526170 }, + { "lat": 40.7912922, "lon": -73.9526563 }, + { "lat": 40.7912460, "lon": -73.9526380 }, + { "lat": 40.7912466, "lon": -73.9525770 }, + { "lat": 40.7913035, "lon": -73.9525351 }, + { "lat": 40.7914405, "lon": -73.9524857 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 759419356, + "bounds": { + "minlat": 40.7858454, + "minlon": -73.9529602, + "maxlat": 40.7865093, + "maxlon": -73.9524444 + }, + "nodes": [ + 42434168, + 7093620710, + 6254816594, + 42457660 + ], + "geometry": [ + { "lat": 40.7858454, "lon": -73.9529602 }, + { "lat": 40.7858998, "lon": -73.9529179 }, + { "lat": 40.7864123, "lon": -73.9525197 }, + { "lat": 40.7865093, "lon": -73.9524444 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 759486002, + "bounds": { + "minlat": 40.7480478, + "minlon": -73.9685194, + "maxlat": 40.7482181, + "maxlon": -73.9683096 + }, + "nodes": [ + 7094702343, + 7094702344, + 7094702345, + 7094702347, + 11003445335, + 11003445336, + 7094702346 + ], + "geometry": [ + { "lat": 40.7482181, "lon": -73.9685194 }, + { "lat": 40.7481505, "lon": -73.9684507 }, + { "lat": 40.7481255, "lon": -73.9684105 }, + { "lat": 40.7480962, "lon": -73.9683429 }, + { "lat": 40.7480793, "lon": -73.9683226 }, + { "lat": 40.7480636, "lon": -73.9683119 }, + { "lat": 40.7480478, "lon": -73.9683096 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 759494694, + "bounds": { + "minlat": 40.8380072, + "minlon": -74.0120042, + "maxlat": 40.8396251, + "maxlon": -74.0108535 + }, + "nodes": [ + 6969360734, + 7094787499, + 7094787494, + 7094787495, + 7094787496, + 7094787497, + 7094787498 + ], + "geometry": [ + { "lat": 40.8380072, "lon": -74.0120042 }, + { "lat": 40.8382304, "lon": -74.0119687 }, + { "lat": 40.8382980, "lon": -74.0119541 }, + { "lat": 40.8383545, "lon": -74.0119478 }, + { "lat": 40.8385789, "lon": -74.0118708 }, + { "lat": 40.8389543, "lon": -74.0116535 }, + { "lat": 40.8396251, "lon": -74.0108535 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 759494695, + "bounds": { + "minlat": 40.8399159, + "minlon": -74.0073545, + "maxlat": 40.8404439, + "maxlon": -74.0067903 + }, + "nodes": [ + 7094787500, + 7094787501, + 7094787502, + 7094787503, + 7094787504 + ], + "geometry": [ + { "lat": 40.8400246, "lon": -74.0073545 }, + { "lat": 40.8404439, "lon": -74.0069237 }, + { "lat": 40.8403613, "lon": -74.0067903 }, + { "lat": 40.8402501, "lon": -74.0068858 }, + { "lat": 40.8399159, "lon": -74.0071646 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 759494696, + "bounds": { + "minlat": 40.8371183, + "minlon": -74.0068794, + "maxlat": 40.8373778, + "maxlon": -74.0064640 + }, + "nodes": [ + 7094787505, + 7094787506, + 7094787507, + 7094787508 + ], + "geometry": [ + { "lat": 40.8371183, "lon": -74.0064640 }, + { "lat": 40.8371886, "lon": -74.0065873 }, + { "lat": 40.8372898, "lon": -74.0067880 }, + { "lat": 40.8373778, "lon": -74.0068794 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 759494697, + "bounds": { + "minlat": 40.8381132, + "minlon": -74.0060546, + "maxlat": 40.8384379, + "maxlon": -74.0054633 + }, + "nodes": [ + 7094787513, + 7094787514, + 7094787515 + ], + "geometry": [ + { "lat": 40.8384379, "lon": -74.0060546 }, + { "lat": 40.8383911, "lon": -74.0059546 }, + { "lat": 40.8381132, "lon": -74.0054633 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 759494698, + "bounds": { + "minlat": 40.8373778, + "minlon": -74.0068794, + "maxlat": 40.8384379, + "maxlon": -74.0060546 + }, + "nodes": [ + 7094787508, + 7094787509, + 7094787510, + 7094787511, + 7094787512, + 7094787513 + ], + "geometry": [ + { "lat": 40.8373778, "lon": -74.0068794 }, + { "lat": 40.8374359, "lon": -74.0068485 }, + { "lat": 40.8375436, "lon": -74.0067615 }, + { "lat": 40.8380933, "lon": -74.0063400 }, + { "lat": 40.8384015, "lon": -74.0061000 }, + { "lat": 40.8384379, "lon": -74.0060546 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 759494699, + "bounds": { + "minlat": 40.8384308, + "minlon": -74.0056784, + "maxlat": 40.8388898, + "maxlon": -74.0051430 + }, + "nodes": [ + 7094787516, + 7094787518, + 7094787517 + ], + "geometry": [ + { "lat": 40.8384308, "lon": -74.0051430 }, + { "lat": 40.8387161, "lon": -74.0056784 }, + { "lat": 40.8388898, "lon": -74.0055367 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 759494700, + "bounds": { + "minlat": 40.8385328, + "minlon": -74.0057634, + "maxlat": 40.8387161, + "maxlon": -74.0056784 + }, + "nodes": [ + 7094787518, + 7094787519, + 7094787520 + ], + "geometry": [ + { "lat": 40.8387161, "lon": -74.0056784 }, + { "lat": 40.8386119, "lon": -74.0057404 }, + { "lat": 40.8385328, "lon": -74.0057634 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 759531902, + "bounds": { + "minlat": 40.8812466, + "minlon": -73.9713732, + "maxlat": 40.8816326, + "maxlon": -73.9710233 + }, + "nodes": [ + 7095129682, + 7095129683 + ], + "geometry": [ + { "lat": 40.8812466, "lon": -73.9713732 }, + { "lat": 40.8816326, "lon": -73.9710233 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 759531903, + "bounds": { + "minlat": 40.8809538, + "minlon": -73.9711383, + "maxlat": 40.8814742, + "maxlon": -73.9706961 + }, + "nodes": [ + 103138380, + 7095129684, + 7095141485, + 7095141486, + 7095141487 + ], + "geometry": [ + { "lat": 40.8809538, "lon": -73.9711383 }, + { "lat": 40.8810236, "lon": -73.9711144 }, + { "lat": 40.8812968, "lon": -73.9708654 }, + { "lat": 40.8814603, "lon": -73.9707274 }, + { "lat": 40.8814742, "lon": -73.9706961 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 759531904, + "bounds": { + "minlat": 40.8806425, + "minlon": -73.9704450, + "maxlat": 40.8810566, + "maxlon": -73.9701580 + }, + "nodes": [ + 7095141488, + 7095141493 + ], + "geometry": [ + { "lat": 40.8806425, "lon": -73.9704450 }, + { "lat": 40.8810566, "lon": -73.9701580 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 759605877, + "bounds": { + "minlat": 40.7466357, + "minlon": -73.9292830, + "maxlat": 40.7468088, + "maxlon": -73.9288777 + }, + "nodes": [ + 10762202928, + 7095808409, + 7095826100, + 7095826101, + 7095808410, + 7095808411 + ], + "geometry": [ + { "lat": 40.7468088, "lon": -73.9292830 }, + { "lat": 40.7467818, "lon": -73.9290319 }, + { "lat": 40.7467610, "lon": -73.9289447 }, + { "lat": 40.7467237, "lon": -73.9289005 }, + { "lat": 40.7466762, "lon": -73.9288777 }, + { "lat": 40.7466357, "lon": -73.9288848 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 759607006, + "bounds": { + "minlat": 40.7466606, + "minlon": -73.9293871, + "maxlat": 40.7467647, + "maxlon": -73.9284433 + }, + "nodes": [ + 7095826102, + 10762202927, + 7095826104, + 10762202923, + 7095826103 + ], + "geometry": [ + { "lat": 40.7467647, "lon": -73.9293871 }, + { "lat": 40.7467546, "lon": -73.9292954 }, + { "lat": 40.7466841, "lon": -73.9286574 }, + { "lat": 40.7466682, "lon": -73.9285122 }, + { "lat": 40.7466606, "lon": -73.9284433 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 759607007, + "bounds": { + "minlat": 40.7463216, + "minlon": -73.9287248, + "maxlat": 40.7466841, + "maxlon": -73.9286574 + }, + "nodes": [ + 7095826104, + 7095826105 + ], + "geometry": [ + { "lat": 40.7466841, "lon": -73.9286574 }, + { "lat": 40.7463216, "lon": -73.9287248 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 759607008, + "bounds": { + "minlat": 40.7463216, + "minlon": -73.9294594, + "maxlat": 40.7464024, + "maxlon": -73.9287248 + }, + "nodes": [ + 7095826106, + 10762202926, + 7095826105 + ], + "geometry": [ + { "lat": 40.7464024, "lon": -73.9294594 }, + { "lat": 40.7463917, "lon": -73.9293622 }, + { "lat": 40.7463216, "lon": -73.9287248 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 759704489, + "bounds": { + "minlat": 40.7518563, + "minlon": -73.9652298, + "maxlat": 40.7519650, + "maxlon": -73.9651664 + }, + "nodes": [ + 5220467776, + 7096725573, + 7096725571, + 10994926357, + 7096725572 + ], + "geometry": [ + { "lat": 40.7518563, "lon": -73.9652298 }, + { "lat": 40.7518878, "lon": -73.9652272 }, + { "lat": 40.7519187, "lon": -73.9652097 }, + { "lat": 40.7519424, "lon": -73.9651914 }, + { "lat": 40.7519650, "lon": -73.9651664 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 759762470, + "bounds": { + "minlat": 40.7678314, + "minlon": -73.9601212, + "maxlat": 40.7679411, + "maxlon": -73.9600412 + }, + "nodes": [ + 7097336611, + 10171234739, + 7097336609 + ], + "geometry": [ + { "lat": 40.7678314, "lon": -73.9601212 }, + { "lat": 40.7678818, "lon": -73.9600844 }, + { "lat": 40.7679411, "lon": -73.9600412 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 759960576, + "bounds": { + "minlat": 40.8036763, + "minlon": -73.9605551, + "maxlat": 40.8037194, + "maxlon": -73.9604371 + }, + "nodes": [ + 7099250764, + 8251054463, + 8379863175, + 7099250754 + ], + "geometry": [ + { "lat": 40.8037194, "lon": -73.9605551 }, + { "lat": 40.8037114, "lon": -73.9605404 }, + { "lat": 40.8036927, "lon": -73.9605033 }, + { "lat": 40.8036763, "lon": -73.9604371 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 759960578, + "bounds": { + "minlat": 40.8037194, + "minlon": -73.9610493, + "maxlat": 40.8039292, + "maxlon": -73.9605551 + }, + "nodes": [ + 7099250736, + 7099250764 + ], + "geometry": [ + { "lat": 40.8039292, "lon": -73.9610493 }, + { "lat": 40.8037194, "lon": -73.9605551 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 760136439, + "bounds": { + "minlat": 40.8341341, + "minlon": -73.9989803, + "maxlat": 40.8346744, + "maxlon": -73.9978760 + }, + "nodes": [ + 7101015665, + 7101015666, + 7700847043, + 7700847044, + 7700847045, + 7700847046, + 7700847047 + ], + "geometry": [ + { "lat": 40.8341341, "lon": -73.9978760 }, + { "lat": 40.8346621, "lon": -73.9988263 }, + { "lat": 40.8346744, "lon": -73.9988689 }, + { "lat": 40.8346744, "lon": -73.9989058 }, + { "lat": 40.8346657, "lon": -73.9989278 }, + { "lat": 40.8346490, "lon": -73.9989436 }, + { "lat": 40.8345290, "lon": -73.9989803 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 760136440, + "bounds": { + "minlat": 40.8329920, + "minlon": -73.9985140, + "maxlat": 40.8349680, + "maxlon": -73.9970390 + }, + "nodes": [ + 7101015669, + 103224171, + 103224172, + 7872475859, + 103224173, + 103224174, + 103224175, + 103224177, + 103224178, + 7101015665, + 103224179, + 103206961 + ], + "geometry": [ + { "lat": 40.8329920, "lon": -73.9984486 }, + { "lat": 40.8330210, "lon": -73.9984793 }, + { "lat": 40.8330592, "lon": -73.9984923 }, + { "lat": 40.8330755, "lon": -73.9984942 }, + { "lat": 40.8332470, "lon": -73.9985140 }, + { "lat": 40.8333730, "lon": -73.9984860 }, + { "lat": 40.8334960, "lon": -73.9984380 }, + { "lat": 40.8336140, "lon": -73.9983710 }, + { "lat": 40.8337240, "lon": -73.9982850 }, + { "lat": 40.8341341, "lon": -73.9978760 }, + { "lat": 40.8344350, "lon": -73.9975760 }, + { "lat": 40.8349680, "lon": -73.9970390 } + ], + "tags": { + "highway": "residential", + "name": "Bruce Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bruce", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 760136441, + "bounds": { + "minlat": 40.8319482, + "minlon": -73.9994322, + "maxlat": 40.8329920, + "maxlon": -73.9984486 + }, + "nodes": [ + 7101015671, + 7217546454, + 8530324551, + 103272861, + 7101015668, + 7101015670, + 7101015669 + ], + "geometry": [ + { "lat": 40.8319482, "lon": -73.9994322 }, + { "lat": 40.8320909, "lon": -73.9993059 }, + { "lat": 40.8322542, "lon": -73.9991613 }, + { "lat": 40.8322776, "lon": -73.9991406 }, + { "lat": 40.8326510, "lon": -73.9987736 }, + { "lat": 40.8329043, "lon": -73.9985358 }, + { "lat": 40.8329920, "lon": -73.9984486 } + ], + "tags": { + "access": "private", + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Walnut", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 760268966, + "bounds": { + "minlat": 40.7709797, + "minlon": -73.9508928, + "maxlat": 40.7710442, + "maxlon": -73.9507474 + }, + "nodes": [ + 7102342429, + 7103815229, + 7102342431 + ], + "geometry": [ + { "lat": 40.7709797, "lon": -73.9507474 }, + { "lat": 40.7710329, "lon": -73.9508672 }, + { "lat": 40.7710442, "lon": -73.9508928 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 760433110, + "bounds": { + "minlat": 40.7790791, + "minlon": -73.9693377, + "maxlat": 40.7792672, + "maxlon": -73.9688949 + }, + "nodes": [ + 1170604778, + 7103649691 + ], + "geometry": [ + { "lat": 40.7790791, "lon": -73.9688949 }, + { "lat": 40.7792672, "lon": -73.9693377 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tunnel": "yes", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 760433111, + "bounds": { + "minlat": 40.7798324, + "minlon": -73.9712810, + "maxlat": 40.7801181, + "maxlon": -73.9708512 + }, + "nodes": [ + 6946139599, + 9906879208, + 248709626 + ], + "geometry": [ + { "lat": 40.7798324, "lon": -73.9708512 }, + { "lat": 40.7798775, "lon": -73.9709228 }, + { "lat": 40.7801181, "lon": -73.9712810 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tunnel": "yes", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 760433114, + "bounds": { + "minlat": 40.7778999, + "minlon": -73.9662579, + "maxlat": 40.7781497, + "maxlon": -73.9650860 + }, + "nodes": [ + 7103600841, + 6946139608, + 42440398, + 1834852939, + 6946139602, + 9170771806, + 1834852944, + 9906879203, + 1834852937, + 1834852941, + 1834852940, + 1834852938, + 9906879204, + 1834852946, + 248709733 + ], + "geometry": [ + { "lat": 40.7778999, "lon": -73.9650860 }, + { "lat": 40.7779415, "lon": -73.9651670 }, + { "lat": 40.7779746, "lon": -73.9652395 }, + { "lat": 40.7780057, "lon": -73.9653204 }, + { "lat": 40.7780328, "lon": -73.9653979 }, + { "lat": 40.7780575, "lon": -73.9654793 }, + { "lat": 40.7780789, "lon": -73.9655660 }, + { "lat": 40.7780964, "lon": -73.9656473 }, + { "lat": 40.7781109, "lon": -73.9657361 }, + { "lat": 40.7781225, "lon": -73.9658251 }, + { "lat": 40.7781296, "lon": -73.9659303 }, + { "lat": 40.7781312, "lon": -73.9660194 }, + { "lat": 40.7781339, "lon": -73.9660988 }, + { "lat": 40.7781399, "lon": -73.9661845 }, + { "lat": 40.7781497, "lon": -73.9662579 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 760433117, + "bounds": { + "minlat": 40.7781497, + "minlon": -73.9667472, + "maxlat": 40.7782575, + "maxlon": -73.9662579 + }, + "nodes": [ + 248709733, + 9906879205, + 248709714 + ], + "geometry": [ + { "lat": 40.7781497, "lon": -73.9662579 }, + { "lat": 40.7781629, "lon": -73.9663251 }, + { "lat": 40.7782575, "lon": -73.9667472 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight": "10'10\"", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tunnel": "yes", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 760433119, + "bounds": { + "minlat": 40.7792672, + "minlon": -73.9708512, + "maxlat": 40.7798324, + "maxlon": -73.9693377 + }, + "nodes": [ + 7103649691, + 1170604773, + 9170771802, + 9170771801, + 3477289889, + 9170771800, + 7103600816, + 9906879207, + 1170604734, + 9170771799, + 6946139593, + 42445598, + 6946139599 + ], + "geometry": [ + { "lat": 40.7792672, "lon": -73.9693377 }, + { "lat": 40.7793314, "lon": -73.9694872 }, + { "lat": 40.7793660, "lon": -73.9695735 }, + { "lat": 40.7793976, "lon": -73.9696657 }, + { "lat": 40.7794267, "lon": -73.9697586 }, + { "lat": 40.7795446, "lon": -73.9701653 }, + { "lat": 40.7795839, "lon": -73.9702887 }, + { "lat": 40.7796131, "lon": -73.9703732 }, + { "lat": 40.7796475, "lon": -73.9704675 }, + { "lat": 40.7796863, "lon": -73.9705609 }, + { "lat": 40.7797253, "lon": -73.9706454 }, + { "lat": 40.7797715, "lon": -73.9707388 }, + { "lat": 40.7798324, "lon": -73.9708512 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 760433120, + "bounds": { + "minlat": 40.7801181, + "minlon": -73.9714837, + "maxlat": 40.7802795, + "maxlon": -73.9712810 + }, + "nodes": [ + 248709626, + 9906879209, + 9170771797, + 6946139606 + ], + "geometry": [ + { "lat": 40.7801181, "lon": -73.9712810 }, + { "lat": 40.7801741, "lon": -73.9713564 }, + { "lat": 40.7802296, "lon": -73.9714294 }, + { "lat": 40.7802795, "lon": -73.9714837 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxheight:backward": "9'4\"", + "maxheight:forward": "10'2\"", + "maxspeed": "25 mph", + "maxspeed:advisory:backward": "20 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 760433122, + "bounds": { + "minlat": 40.7777416, + "minlon": -73.9650860, + "maxlat": 40.7778999, + "maxlon": -73.9648425 + }, + "nodes": [ + 1740694097, + 9170771807, + 1834852947, + 7103600841 + ], + "geometry": [ + { "lat": 40.7777416, "lon": -73.9648425 }, + { "lat": 40.7777912, "lon": -73.9649145 }, + { "lat": 40.7778489, "lon": -73.9649991 }, + { "lat": 40.7778999, "lon": -73.9650860 } + ], + "tags": { + "alt_name": "Transverse Road 2", + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight": "11'5\"", + "maxheight:backward": "10'2\"", + "maxheight:forward": "9'4\"", + "maxspeed": "25 mph", + "name": "79th Street Transverse", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tunnel": "yes", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 760435870, + "bounds": { + "minlat": 40.7513916, + "minlon": -73.9380973, + "maxlat": 40.7515991, + "maxlon": -73.9379165 + }, + "nodes": [ + 7103675571, + 8315072923, + 7103675573 + ], + "geometry": [ + { "lat": 40.7513916, "lon": -73.9380973 }, + { "lat": 40.7515481, "lon": -73.9379608 }, + { "lat": 40.7515991, "lon": -73.9379165 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 760481582, + "bounds": { + "minlat": 40.8302762, + "minlon": -73.9217727, + "maxlat": 40.8303291, + "maxlon": -73.9216172 + }, + "nodes": [ + 7104267527, + 7104267528 + ], + "geometry": [ + { "lat": 40.8303291, "lon": -73.9217727 }, + { "lat": 40.8302762, "lon": -73.9216172 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 760481583, + "bounds": { + "minlat": 40.8310179, + "minlon": -73.9192366, + "maxlat": 40.8311348, + "maxlon": -73.9188723 + }, + "nodes": [ + 7104267529, + 13036753029, + 7104267531 + ], + "geometry": [ + { "lat": 40.8311348, "lon": -73.9192366 }, + { "lat": 40.8311124, "lon": -73.9191668 }, + { "lat": 40.8310179, "lon": -73.9188723 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 760481585, + "bounds": { + "minlat": 40.8313448, + "minlon": -73.9198457, + "maxlat": 40.8316020, + "maxlon": -73.9191124 + }, + "nodes": [ + 2408446168, + 12739350609, + 13036753020, + 7104267534 + ], + "geometry": [ + { "lat": 40.8316020, "lon": -73.9198457 }, + { "lat": 40.8315747, "lon": -73.9197675 }, + { "lat": 40.8313680, "lon": -73.9191785 }, + { "lat": 40.8313448, "lon": -73.9191124 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 760483571, + "bounds": { + "minlat": 40.8324307, + "minlon": -73.9975160, + "maxlat": 40.8327389, + "maxlon": -73.9972110 + }, + "nodes": [ + 7104269430, + 7104269431, + 7104269432 + ], + "geometry": [ + { "lat": 40.8324307, "lon": -73.9975160 }, + { "lat": 40.8324796, "lon": -73.9974711 }, + { "lat": 40.8327389, "lon": -73.9972110 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 760700388, + "bounds": { + "minlat": 40.7793770, + "minlon": -73.9734592, + "maxlat": 40.7794183, + "maxlon": -73.9733832 + }, + "nodes": [ + 6579395875, + 3248830966 + ], + "geometry": [ + { "lat": 40.7794183, "lon": -73.9734592 }, + { "lat": 40.7793770, "lon": -73.9733832 } + ], + "tags": { + "bicycle": "yes", + "hgv": "no", + "highway": "pedestrian", + "lit": "yes", + "name": "West 77th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 760700390, + "bounds": { + "minlat": 40.7790754, + "minlon": -73.9733832, + "maxlat": 40.7793770, + "maxlon": -73.9730802 + }, + "nodes": [ + 3248830966, + 3248830967 + ], + "geometry": [ + { "lat": 40.7793770, "lon": -73.9733832 }, + { "lat": 40.7790754, "lon": -73.9730802 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "yes", + "bridge": "yes", + "foot": "yes", + "hgv": "no", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "name": "West 77th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 760700391, + "bounds": { + "minlat": 40.7783652, + "minlon": -73.9730802, + "maxlat": 40.7790754, + "maxlon": -73.9728854 + }, + "nodes": [ + 3248830967, + 429450537, + 7104620804, + 7104620811, + 2217030172, + 2217030171, + 6579408989, + 429450538, + 6579395880, + 2217030169, + 42424229 + ], + "geometry": [ + { "lat": 40.7790754, "lon": -73.9730802 }, + { "lat": 40.7789851, "lon": -73.9730027 }, + { "lat": 40.7789101, "lon": -73.9729499 }, + { "lat": 40.7788699, "lon": -73.9729234 }, + { "lat": 40.7788151, "lon": -73.9729022 }, + { "lat": 40.7787343, "lon": -73.9728854 }, + { "lat": 40.7786739, "lon": -73.9728892 }, + { "lat": 40.7786168, "lon": -73.9729011 }, + { "lat": 40.7785267, "lon": -73.9729317 }, + { "lat": 40.7784492, "lon": -73.9729677 }, + { "lat": 40.7783652, "lon": -73.9730123 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "yes", + "foot": "yes", + "hgv": "no", + "highway": "pedestrian", + "lit": "yes", + "name": "West 77th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 760711170, + "bounds": { + "minlat": 40.7915667, + "minlon": -73.9645552, + "maxlat": 40.7917489, + "maxlon": -73.9627520 + }, + "nodes": [ + 595703322, + 9916159541, + 2057103301, + 2057103295, + 9906892377, + 2057103285, + 2057103283, + 9906892376, + 2057103287, + 2057103297, + 2057103315, + 9906892375, + 2057103319, + 2057103322, + 2057103323, + 2057103321, + 2057103317, + 42431293 + ], + "geometry": [ + { "lat": 40.7916252, "lon": -73.9645552 }, + { "lat": 40.7916097, "lon": -73.9645019 }, + { "lat": 40.7915944, "lon": -73.9644379 }, + { "lat": 40.7915820, "lon": -73.9643696 }, + { "lat": 40.7915730, "lon": -73.9643073 }, + { "lat": 40.7915684, "lon": -73.9642488 }, + { "lat": 40.7915667, "lon": -73.9641908 }, + { "lat": 40.7915698, "lon": -73.9641382 }, + { "lat": 40.7915771, "lon": -73.9640787 }, + { "lat": 40.7915895, "lon": -73.9640082 }, + { "lat": 40.7917280, "lon": -73.9632947 }, + { "lat": 40.7917389, "lon": -73.9632282 }, + { "lat": 40.7917447, "lon": -73.9631654 }, + { "lat": 40.7917489, "lon": -73.9631021 }, + { "lat": 40.7917487, "lon": -73.9630406 }, + { "lat": 40.7917441, "lon": -73.9629816 }, + { "lat": 40.7917379, "lon": -73.9629320 }, + { "lat": 40.7917087, "lon": -73.9627520 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "destination": "East Side", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxheight": "9'11\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 760727183, + "bounds": { + "minlat": 40.7915777, + "minlon": -73.9626941, + "maxlat": 40.7916893, + "maxlon": -73.9623723 + }, + "nodes": [ + 42443194, + 9170867868, + 7106607090 + ], + "geometry": [ + { "lat": 40.7915777, "lon": -73.9623723 }, + { "lat": 40.7916341, "lon": -73.9625320 }, + { "lat": 40.7916893, "lon": -73.9626941 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "layer": "-1", + "maxheight": "9'11\"", + "maxheight:physical": "12'5\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "parking:both": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 760727184, + "bounds": { + "minlat": 40.7889623, + "minlon": -73.9570893, + "maxlat": 40.7893529, + "maxlon": -73.9561398 + }, + "nodes": [ + 2059119488, + 9170867857, + 2059119493, + 42443263 + ], + "geometry": [ + { "lat": 40.7889623, "lon": -73.9561398 }, + { "lat": 40.7891557, "lon": -73.9565515 }, + { "lat": 40.7892689, "lon": -73.9568245 }, + { "lat": 40.7893529, "lon": -73.9570893 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "cycleway:both": "no", + "destination": "West Side", + "foot": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxheight": "9'11\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "oneway": "yes", + "parking:both": "no", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 760727187, + "bounds": { + "minlat": 40.7879006, + "minlon": -73.9562367, + "maxlat": 40.7882241, + "maxlon": -73.9557669 + }, + "nodes": [ + 2059119474, + 2059119473, + 2059119472, + 2059119471, + 2059119469, + 2059119468, + 9170867860, + 595703330, + 42443268 + ], + "geometry": [ + { "lat": 40.7882241, "lon": -73.9562367 }, + { "lat": 40.7881777, "lon": -73.9562106 }, + { "lat": 40.7881391, "lon": -73.9561820 }, + { "lat": 40.7881016, "lon": -73.9561426 }, + { "lat": 40.7880652, "lon": -73.9560996 }, + { "lat": 40.7880290, "lon": -73.9560492 }, + { "lat": 40.7879893, "lon": -73.9559842 }, + { "lat": 40.7879439, "lon": -73.9558808 }, + { "lat": 40.7879006, "lon": -73.9557669 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxheight": "9'11\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 760727188, + "bounds": { + "minlat": 40.7893529, + "minlon": -73.9571774, + "maxlat": 40.7893891, + "maxlon": -73.9570893 + }, + "nodes": [ + 42443263, + 7106580382 + ], + "geometry": [ + { "lat": 40.7893529, "lon": -73.9570893 }, + { "lat": 40.7893891, "lon": -73.9571774 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxheight": "9'11\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 760727192, + "bounds": { + "minlat": 40.7893891, + "minlon": -73.9576393, + "maxlat": 40.7895856, + "maxlon": -73.9571774 + }, + "nodes": [ + 7106580382, + 7106580378 + ], + "geometry": [ + { "lat": 40.7893891, "lon": -73.9571774 }, + { "lat": 40.7895856, "lon": -73.9576393 } + ], + "tags": { + "alt_name": "Transverse Number Four", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "layer": "-1", + "lit": "yes", + "maxheight": "9'11\"", + "maxheight:physical:backward": "11'6\"", + "maxheight:physical:forward": "12'5\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "parking:both": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 760727194, + "bounds": { + "minlat": 40.7895856, + "minlon": -73.9623723, + "maxlat": 40.7915777, + "maxlon": -73.9576393 + }, + "nodes": [ + 7106580378, + 42443256, + 42443253, + 9906892372, + 9170867862, + 42443249, + 2059119522, + 9906892373, + 42443245, + 2059119523, + 5596409839, + 42443240, + 42443236, + 9170867863, + 42443234, + 2059119525, + 42443230, + 2059119533, + 9906892374, + 42443227, + 2059119540, + 42443223, + 2059119546, + 42443220, + 42443213, + 9170867864, + 2059119558, + 42443210, + 9170867865, + 42443207, + 42443201, + 9170867866, + 42443197, + 9170867867, + 42443194 + ], + "geometry": [ + { "lat": 40.7895856, "lon": -73.9576393 }, + { "lat": 40.7899230, "lon": -73.9584300 }, + { "lat": 40.7899530, "lon": -73.9585100 }, + { "lat": 40.7899803, "lon": -73.9585823 }, + { "lat": 40.7900092, "lon": -73.9586694 }, + { "lat": 40.7900341, "lon": -73.9587506 }, + { "lat": 40.7900605, "lon": -73.9588413 }, + { "lat": 40.7900823, "lon": -73.9589232 }, + { "lat": 40.7901034, "lon": -73.9590100 }, + { "lat": 40.7901233, "lon": -73.9591053 }, + { "lat": 40.7901490, "lon": -73.9592261 }, + { "lat": 40.7902022, "lon": -73.9595141 }, + { "lat": 40.7902212, "lon": -73.9596027 }, + { "lat": 40.7902444, "lon": -73.9597115 }, + { "lat": 40.7902718, "lon": -73.9598110 }, + { "lat": 40.7903029, "lon": -73.9599137 }, + { "lat": 40.7903388, "lon": -73.9600164 }, + { "lat": 40.7903767, "lon": -73.9601151 }, + { "lat": 40.7904169, "lon": -73.9602077 }, + { "lat": 40.7904622, "lon": -73.9603010 }, + { "lat": 40.7905080, "lon": -73.9603889 }, + { "lat": 40.7905574, "lon": -73.9604779 }, + { "lat": 40.7906080, "lon": -73.9605620 }, + { "lat": 40.7906607, "lon": -73.9606436 }, + { "lat": 40.7909365, "lon": -73.9610436 }, + { "lat": 40.7909884, "lon": -73.9611255 }, + { "lat": 40.7910409, "lon": -73.9612147 }, + { "lat": 40.7910935, "lon": -73.9613082 }, + { "lat": 40.7911563, "lon": -73.9614248 }, + { "lat": 40.7912159, "lon": -73.9615425 }, + { "lat": 40.7912858, "lon": -73.9616836 }, + { "lat": 40.7913623, "lon": -73.9618473 }, + { "lat": 40.7914343, "lon": -73.9620036 }, + { "lat": 40.7914919, "lon": -73.9621451 }, + { "lat": 40.7915777, "lon": -73.9623723 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxheight": "9'11\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "parking:both": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 760727197, + "bounds": { + "minlat": 40.7882241, + "minlon": -73.9564093, + "maxlat": 40.7888413, + "maxlon": -73.9562367 + }, + "nodes": [ + 2059119483, + 7099250744, + 7099250737, + 2059119479, + 2059119477, + 595703328, + 595703329, + 2059119475, + 2059119474 + ], + "geometry": [ + { "lat": 40.7888413, "lon": -73.9564093 }, + { "lat": 40.7887877, "lon": -73.9563759 }, + { "lat": 40.7887306, "lon": -73.9563467 }, + { "lat": 40.7886657, "lon": -73.9563196 }, + { "lat": 40.7885935, "lon": -73.9562999 }, + { "lat": 40.7885132, "lon": -73.9562846 }, + { "lat": 40.7883331, "lon": -73.9562607 }, + { "lat": 40.7882765, "lon": -73.9562515 }, + { "lat": 40.7882241, "lon": -73.9562367 } + ], + "tags": { + "alt_name": "Transverse Road 4", + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxheight": "9'11\"", + "maxspeed": "25 mph", + "name": "97th Street Transverse", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 760748048, + "bounds": { + "minlat": 40.7843689, + "minlon": -73.9673488, + "maxlat": 40.7845594, + "maxlon": -73.9670266 + }, + "nodes": [ + 2059304015, + 2059304018 + ], + "geometry": [ + { "lat": 40.7843689, "lon": -73.9670266 }, + { "lat": 40.7845594, "lon": -73.9673488 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "maxheight": "10'5\"", + "maxheight:physical:backward": "11'3\"", + "maxheight:physical:forward": "10'11\"", + "maxspeed": "25 mph", + "name": "86th Street Transverse", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tunnel": "yes", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 760748052, + "bounds": { + "minlat": 40.7845594, + "minlon": -73.9681080, + "maxlat": 40.7849038, + "maxlon": -73.9673488 + }, + "nodes": [ + 2059304018, + 2059304019, + 2059304020, + 2059304021, + 375858660, + 9906895080, + 2059304022, + 2059304023, + 2059304024 + ], + "geometry": [ + { "lat": 40.7845594, "lon": -73.9673488 }, + { "lat": 40.7846658, "lon": -73.9675276 }, + { "lat": 40.7847114, "lon": -73.9676138 }, + { "lat": 40.7847550, "lon": -73.9676972 }, + { "lat": 40.7847928, "lon": -73.9677784 }, + { "lat": 40.7848238, "lon": -73.9678551 }, + { "lat": 40.7848497, "lon": -73.9679254 }, + { "lat": 40.7848792, "lon": -73.9680177 }, + { "lat": 40.7849038, "lon": -73.9681080 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxheight": "10'5\"", + "maxspeed": "25 mph", + "name": "86th Street Transverse", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 761147765, + "bounds": { + "minlat": 40.8788630, + "minlon": -73.9902755, + "maxlat": 40.8798308, + "maxlon": -73.9899720 + }, + "nodes": [ + 7111366826, + 7111366827, + 7111366828, + 7111366829, + 7111366830, + 7111366831, + 7111366832, + 7111366849 + ], + "geometry": [ + { "lat": 40.8798308, "lon": -73.9901127 }, + { "lat": 40.8797383, "lon": -73.9901943 }, + { "lat": 40.8796860, "lon": -73.9902234 }, + { "lat": 40.8795588, "lon": -73.9902755 }, + { "lat": 40.8792739, "lon": -73.9902738 }, + { "lat": 40.8791357, "lon": -73.9902473 }, + { "lat": 40.8790356, "lon": -73.9901832 }, + { "lat": 40.8788630, "lon": -73.9899720 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761147766, + "bounds": { + "minlat": 40.8784058, + "minlon": -73.9893989, + "maxlat": 40.8787245, + "maxlon": -73.9878832 + }, + "nodes": [ + 7111366839, + 7111366840, + 7111366841, + 7111366842, + 7111366843, + 7111366844, + 7111366845, + 7111366847, + 7111366846 + ], + "geometry": [ + { "lat": 40.8787245, "lon": -73.9893989 }, + { "lat": 40.8785854, "lon": -73.9890327 }, + { "lat": 40.8784132, "lon": -73.9885989 }, + { "lat": 40.8784058, "lon": -73.9884831 }, + { "lat": 40.8784229, "lon": -73.9882898 }, + { "lat": 40.8784503, "lon": -73.9880396 }, + { "lat": 40.8784934, "lon": -73.9879699 }, + { "lat": 40.8785034, "lon": -73.9879586 }, + { "lat": 40.8785706, "lon": -73.9878832 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 761147767, + "bounds": { + "minlat": 40.8788630, + "minlon": -73.9899720, + "maxlat": 40.8793883, + "maxlon": -73.9893281 + }, + "nodes": [ + 7111366849, + 7111366850, + 7111366851, + 7111366852, + 7111366853, + 7111366854, + 7111366856, + 7111366855 + ], + "geometry": [ + { "lat": 40.8788630, "lon": -73.9899720 }, + { "lat": 40.8789407, "lon": -73.9898936 }, + { "lat": 40.8791162, "lon": -73.9897172 }, + { "lat": 40.8791230, "lon": -73.9896862 }, + { "lat": 40.8791081, "lon": -73.9896095 }, + { "lat": 40.8791286, "lon": -73.9895661 }, + { "lat": 40.8793131, "lon": -73.9893970 }, + { "lat": 40.8793883, "lon": -73.9893281 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 761147768, + "bounds": { + "minlat": 40.8786713, + "minlon": -73.9899720, + "maxlat": 40.8791663, + "maxlon": -73.9889359 + }, + "nodes": [ + 7111366849, + 7111366833, + 7111366834, + 7111366835, + 7111366836, + 7111366839, + 7111366837, + 7111366848, + 7111366838 + ], + "geometry": [ + { "lat": 40.8788630, "lon": -73.9899720 }, + { "lat": 40.8788534, "lon": -73.9899602 }, + { "lat": 40.8787230, "lon": -73.9896919 }, + { "lat": 40.8786713, "lon": -73.9895305 }, + { "lat": 40.8786752, "lon": -73.9894510 }, + { "lat": 40.8787245, "lon": -73.9893989 }, + { "lat": 40.8789497, "lon": -73.9891606 }, + { "lat": 40.8791065, "lon": -73.9889980 }, + { "lat": 40.8791663, "lon": -73.9889359 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 761148699, + "bounds": { + "minlat": 40.8429741, + "minlon": -73.9808907, + "maxlat": 40.8430681, + "maxlon": -73.9807359 + }, + "nodes": [ + 7111343882, + 7111343883 + ], + "geometry": [ + { "lat": 40.8430681, "lon": -73.9808907 }, + { "lat": 40.8429741, "lon": -73.9807359 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 761148700, + "bounds": { + "minlat": 40.8429741, + "minlon": -73.9807359, + "maxlat": 40.8440839, + "maxlon": -73.9796501 + }, + "nodes": [ + 7111343883, + 7111343884, + 7111378985 + ], + "geometry": [ + { "lat": 40.8429741, "lon": -73.9807359 }, + { "lat": 40.8437334, "lon": -73.9799994 }, + { "lat": 40.8440839, "lon": -73.9796501 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761148701, + "bounds": { + "minlat": 40.8440839, + "minlon": -73.9797861, + "maxlat": 40.8441676, + "maxlon": -73.9796501 + }, + "nodes": [ + 7111378985, + 7111378986 + ], + "geometry": [ + { "lat": 40.8440839, "lon": -73.9796501 }, + { "lat": 40.8441676, "lon": -73.9797861 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 761149373, + "bounds": { + "minlat": 40.8217870, + "minlon": -73.9773709, + "maxlat": 40.8219909, + "maxlon": -73.9769728 + }, + "nodes": [ + 103125589, + 7111373183, + 7111373184, + 7111387285 + ], + "geometry": [ + { "lat": 40.8219909, "lon": -73.9773709 }, + { "lat": 40.8219060, "lon": -73.9772050 }, + { "lat": 40.8218426, "lon": -73.9770772 }, + { "lat": 40.8217870, "lon": -73.9769728 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761149374, + "bounds": { + "minlat": 40.8196717, + "minlon": -73.9812497, + "maxlat": 40.8199776, + "maxlon": -73.9805366 + }, + "nodes": [ + 103115576, + 7111387286, + 7111387287, + 7111387288, + 7111387289, + 7111387290, + 7111387291, + 7111387314, + 7111387292, + 7111387293, + 7111387294, + 7111387295, + 7111387296, + 7111387297, + 7111387298, + 7111387299, + 7111387300, + 7111387301, + 7111387302, + 7111387303, + 7111387304, + 7111387305, + 7111387306, + 7111387307, + 7111387308, + 7111387309, + 7111387310, + 7111387311, + 7111387312, + 7111387313 + ], + "geometry": [ + { "lat": 40.8196717, "lon": -73.9805366 }, + { "lat": 40.8197492, "lon": -73.9807190 }, + { "lat": 40.8197668, "lon": -73.9807754 }, + { "lat": 40.8197768, "lon": -73.9808401 }, + { "lat": 40.8197755, "lon": -73.9808865 }, + { "lat": 40.8197555, "lon": -73.9809247 }, + { "lat": 40.8197287, "lon": -73.9809625 }, + { "lat": 40.8197032, "lon": -73.9809983 }, + { "lat": 40.8197010, "lon": -73.9810296 }, + { "lat": 40.8197195, "lon": -73.9810506 }, + { "lat": 40.8197496, "lon": -73.9810616 }, + { "lat": 40.8197793, "lon": -73.9810424 }, + { "lat": 40.8198835, "lon": -73.9809512 }, + { "lat": 40.8199211, "lon": -73.9809330 }, + { "lat": 40.8199450, "lon": -73.9809280 }, + { "lat": 40.8199651, "lon": -73.9809413 }, + { "lat": 40.8199764, "lon": -73.9809628 }, + { "lat": 40.8199776, "lon": -73.9809927 }, + { "lat": 40.8199751, "lon": -73.9810142 }, + { "lat": 40.8199638, "lon": -73.9810292 }, + { "lat": 40.8199174, "lon": -73.9810574 }, + { "lat": 40.8198609, "lon": -73.9810988 }, + { "lat": 40.8198333, "lon": -73.9811370 }, + { "lat": 40.8198220, "lon": -73.9811652 }, + { "lat": 40.8198157, "lon": -73.9812083 }, + { "lat": 40.8198245, "lon": -73.9812381 }, + { "lat": 40.8198408, "lon": -73.9812497 }, + { "lat": 40.8198571, "lon": -73.9812497 }, + { "lat": 40.8198835, "lon": -73.9812497 }, + { "lat": 40.8199337, "lon": -73.9812149 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761149785, + "bounds": { + "minlat": 40.8142519, + "minlon": -73.9864558, + "maxlat": 40.8146470, + "maxlon": -73.9860319 + }, + "nodes": [ + 103161839, + 7111387178, + 7596426700, + 7111387179, + 7111387180 + ], + "geometry": [ + { "lat": 40.8146470, "lon": -73.9860319 }, + { "lat": 40.8143623, "lon": -73.9863075 }, + { "lat": 40.8143327, "lon": -73.9863432 }, + { "lat": 40.8142795, "lon": -73.9864070 }, + { "lat": 40.8142519, "lon": -73.9864558 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761149786, + "bounds": { + "minlat": 40.8131547, + "minlon": -73.9903323, + "maxlat": 40.8132060, + "maxlon": -73.9900875 + }, + "nodes": [ + 4205744824, + 7111396885 + ], + "geometry": [ + { "lat": 40.8132060, "lon": -73.9903323 }, + { "lat": 40.8131547, "lon": -73.9900875 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 761149787, + "bounds": { + "minlat": 40.8130455, + "minlon": -73.9900875, + "maxlat": 40.8131547, + "maxlon": -73.9895662 + }, + "nodes": [ + 7111396885, + 7111396886 + ], + "geometry": [ + { "lat": 40.8131547, "lon": -73.9900875 }, + { "lat": 40.8130455, "lon": -73.9895662 } + ], + "tags": { + "access": "private", + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 761149788, + "bounds": { + "minlat": 40.8130273, + "minlon": -73.9895662, + "maxlat": 40.8135356, + "maxlon": -73.9889963 + }, + "nodes": [ + 7111396886, + 7111387181, + 7111387182, + 7111387183, + 7111387184 + ], + "geometry": [ + { "lat": 40.8130455, "lon": -73.9895662 }, + { "lat": 40.8130273, "lon": -73.9894797 }, + { "lat": 40.8131025, "lon": -73.9893650 }, + { "lat": 40.8133994, "lon": -73.9889982 }, + { "lat": 40.8135356, "lon": -73.9889963 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 761149789, + "bounds": { + "minlat": 40.8107561, + "minlon": -73.9910561, + "maxlat": 40.8109291, + "maxlon": -73.9907493 + }, + "nodes": [ + 7111396893, + 7111396892, + 7111396891, + 7111396890, + 7111396889, + 7111396888, + 7111396887 + ], + "geometry": [ + { "lat": 40.8107867, "lon": -73.9910561 }, + { "lat": 40.8107561, "lon": -73.9907991 }, + { "lat": 40.8107699, "lon": -73.9907493 }, + { "lat": 40.8107864, "lon": -73.9907675 }, + { "lat": 40.8108260, "lon": -73.9909073 }, + { "lat": 40.8108922, "lon": -73.9909353 }, + { "lat": 40.8109291, "lon": -73.9910175 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 761149790, + "bounds": { + "minlat": 40.8107276, + "minlon": -73.9907493, + "maxlat": 40.8107699, + "maxlon": -73.9906010 + }, + "nodes": [ + 7111396891, + 7111396894 + ], + "geometry": [ + { "lat": 40.8107699, "lon": -73.9907493 }, + { "lat": 40.8107276, "lon": -73.9906010 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 761162223, + "bounds": { + "minlat": 40.8438434, + "minlon": -73.9704585, + "maxlat": 40.8442635, + "maxlon": -73.9703210 + }, + "nodes": [ + 5108657310, + 7111500469, + 7111500470, + 7111500471 + ], + "geometry": [ + { "lat": 40.8442635, "lon": -73.9704585 }, + { "lat": 40.8440672, "lon": -73.9704275 }, + { "lat": 40.8439548, "lon": -73.9704093 }, + { "lat": 40.8438434, "lon": -73.9703210 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 761162224, + "bounds": { + "minlat": 40.8419128, + "minlon": -73.9683822, + "maxlat": 40.8422268, + "maxlon": -73.9683337 + }, + "nodes": [ + 7111500472, + 7111500473, + 7111500474, + 7111500475 + ], + "geometry": [ + { "lat": 40.8419128, "lon": -73.9683822 }, + { "lat": 40.8420053, "lon": -73.9683337 }, + { "lat": 40.8421449, "lon": -73.9683361 }, + { "lat": 40.8422268, "lon": -73.9683796 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761162728, + "bounds": { + "minlat": 40.8249717, + "minlon": -73.9752828, + "maxlat": 40.8254340, + "maxlon": -73.9746431 + }, + "nodes": [ + 7111519220, + 7111519221, + 7111519225, + 7111519222, + 7111519223, + 7111519224, + 7111519225 + ], + "geometry": [ + { "lat": 40.8249717, "lon": -73.9746431 }, + { "lat": 40.8250385, "lon": -73.9748007 }, + { "lat": 40.8250843, "lon": -73.9748798 }, + { "lat": 40.8253178, "lon": -73.9752828 }, + { "lat": 40.8254340, "lon": -73.9751637 }, + { "lat": 40.8252015, "lon": -73.9747612 }, + { "lat": 40.8250843, "lon": -73.9748798 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 761162729, + "bounds": { + "minlat": 40.8248217, + "minlon": -73.9752703, + "maxlat": 40.8250718, + "maxlon": -73.9747603 + }, + "nodes": [ + 5340890589, + 7111519226, + 7111519227 + ], + "geometry": [ + { "lat": 40.8248217, "lon": -73.9747603 }, + { "lat": 40.8250718, "lon": -73.9752158 }, + { "lat": 40.8250257, "lon": -73.9752703 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 761162730, + "bounds": { + "minlat": 40.8249717, + "minlon": -73.9746431, + "maxlat": 40.8255083, + "maxlon": -73.9742955 + }, + "nodes": [ + 7111519220, + 5362484708, + 5362484688, + 4205789004 + ], + "geometry": [ + { "lat": 40.8249717, "lon": -73.9746431 }, + { "lat": 40.8250310, "lon": -73.9745977 }, + { "lat": 40.8251750, "lon": -73.9744931 }, + { "lat": 40.8255083, "lon": -73.9742955 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 761162731, + "bounds": { + "minlat": 40.8248217, + "minlon": -73.9747603, + "maxlat": 40.8249717, + "maxlon": -73.9746431 + }, + "nodes": [ + 5340890589, + 7111519220 + ], + "geometry": [ + { "lat": 40.8248217, "lon": -73.9747603 }, + { "lat": 40.8249717, "lon": -73.9746431 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 761169151, + "bounds": { + "minlat": 40.7374361, + "minlon": -73.9917669, + "maxlat": 40.7376832, + "maxlon": -73.9915521 + }, + "nodes": [ + 7111566463, + 8310246279, + 7111566464, + 7111566465 + ], + "geometry": [ + { "lat": 40.7376832, "lon": -73.9916634 }, + { "lat": 40.7376247, "lon": -73.9917009 }, + { "lat": 40.7375236, "lon": -73.9917669 }, + { "lat": 40.7374361, "lon": -73.9915521 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761176434, + "bounds": { + "minlat": 40.8543331, + "minlon": -73.9711751, + "maxlat": 40.8544272, + "maxlon": -73.9709190 + }, + "nodes": [ + 7111601877, + 7111601878, + 7111601879, + 7111601880, + 7111601881 + ], + "geometry": [ + { "lat": 40.8544140, "lon": -73.9709190 }, + { "lat": 40.8544272, "lon": -73.9710123 }, + { "lat": 40.8544049, "lon": -73.9710736 }, + { "lat": 40.8543567, "lon": -73.9711432 }, + { "lat": 40.8543331, "lon": -73.9711751 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761176435, + "bounds": { + "minlat": 40.8539692, + "minlon": -73.9713107, + "maxlat": 40.8540195, + "maxlon": -73.9711782 + }, + "nodes": [ + 7111637685, + 7111637686 + ], + "geometry": [ + { "lat": 40.8540195, "lon": -73.9713107 }, + { "lat": 40.8539692, "lon": -73.9711782 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761176436, + "bounds": { + "minlat": 40.8542237, + "minlon": -73.9712748, + "maxlat": 40.8543331, + "maxlon": -73.9711751 + }, + "nodes": [ + 7111601881, + 7111601882 + ], + "geometry": [ + { "lat": 40.8543331, "lon": -73.9711751 }, + { "lat": 40.8542237, "lon": -73.9712748 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 761176437, + "bounds": { + "minlat": 40.8539473, + "minlon": -73.9713621, + "maxlat": 40.8542237, + "maxlon": -73.9712748 + }, + "nodes": [ + 7111601882, + 7111601883, + 7111601884, + 7111637685, + 6964899056 + ], + "geometry": [ + { "lat": 40.8542237, "lon": -73.9712748 }, + { "lat": 40.8541319, "lon": -73.9713178 }, + { "lat": 40.8540784, "lon": -73.9713260 }, + { "lat": 40.8540195, "lon": -73.9713107 }, + { "lat": 40.8539473, "lon": -73.9713621 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761176438, + "bounds": { + "minlat": 40.8527119, + "minlon": -73.9700367, + "maxlat": 40.8527546, + "maxlon": -73.9697591 + }, + "nodes": [ + 7111637688, + 7111637687 + ], + "geometry": [ + { "lat": 40.8527546, "lon": -73.9697591 }, + { "lat": 40.8527119, "lon": -73.9700367 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 761176439, + "bounds": { + "minlat": 40.8527039, + "minlon": -73.9697591, + "maxlat": 40.8528939, + "maxlon": -73.9691147 + }, + "nodes": [ + 7111637688, + 7111637689, + 7111637690, + 7111637691, + 12824924122, + 6902027601 + ], + "geometry": [ + { "lat": 40.8527546, "lon": -73.9697591 }, + { "lat": 40.8528858, "lon": -73.9696790 }, + { "lat": 40.8528932, "lon": -73.9696630 }, + { "lat": 40.8528939, "lon": -73.9696426 }, + { "lat": 40.8527605, "lon": -73.9692721 }, + { "lat": 40.8527039, "lon": -73.9691147 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761176440, + "bounds": { + "minlat": 40.8519801, + "minlon": -73.9695600, + "maxlat": 40.8527039, + "maxlon": -73.9691147 + }, + "nodes": [ + 6902027601, + 7111637697, + 10026273691, + 103205068 + ], + "geometry": [ + { "lat": 40.8527039, "lon": -73.9691147 }, + { "lat": 40.8524100, "lon": -73.9692960 }, + { "lat": 40.8521277, "lon": -73.9694694 }, + { "lat": 40.8519801, "lon": -73.9695600 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 761176441, + "bounds": { + "minlat": 40.8525719, + "minlon": -73.9700658, + "maxlat": 40.8527546, + "maxlon": -73.9697054 + }, + "nodes": [ + 7111637692, + 7111637694, + 7111637696, + 7111637693, + 7111637695, + 7111637688 + ], + "geometry": [ + { "lat": 40.8526648, "lon": -73.9700658 }, + { "lat": 40.8525719, "lon": -73.9697644 }, + { "lat": 40.8526754, "lon": -73.9697065 }, + { "lat": 40.8526823, "lon": -73.9697054 }, + { "lat": 40.8526896, "lon": -73.9697083 }, + { "lat": 40.8527546, "lon": -73.9697591 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761176442, + "bounds": { + "minlat": 40.8524100, + "minlon": -73.9697644, + "maxlat": 40.8525719, + "maxlon": -73.9692960 + }, + "nodes": [ + 7111637697, + 12824924123, + 7111637694 + ], + "geometry": [ + { "lat": 40.8524100, "lon": -73.9692960 }, + { "lat": 40.8524651, "lon": -73.9694553 }, + { "lat": 40.8525719, "lon": -73.9697644 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761176443, + "bounds": { + "minlat": 40.8508026, + "minlon": -73.9668772, + "maxlat": 40.8509912, + "maxlon": -73.9668096 + }, + "nodes": [ + 7111637699, + 10002778581, + 7111637701, + 7111637700 + ], + "geometry": [ + { "lat": 40.8508026, "lon": -73.9668772 }, + { "lat": 40.8508788, "lon": -73.9668607 }, + { "lat": 40.8508864, "lon": -73.9668591 }, + { "lat": 40.8509912, "lon": -73.9668096 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 761176444, + "bounds": { + "minlat": 40.8502666, + "minlon": -73.9662142, + "maxlat": 40.8507142, + "maxlon": -73.9660168 + }, + "nodes": [ + 7111637703, + 7111637704, + 7111637705, + 7111637706, + 7111637707, + 7111637708, + 7111637716, + 7111637709, + 7111637710 + ], + "geometry": [ + { "lat": 40.8502666, "lon": -73.9660168 }, + { "lat": 40.8503168, "lon": -73.9661986 }, + { "lat": 40.8503220, "lon": -73.9662093 }, + { "lat": 40.8503323, "lon": -73.9662142 }, + { "lat": 40.8503470, "lon": -73.9662132 }, + { "lat": 40.8503874, "lon": -73.9661918 }, + { "lat": 40.8504190, "lon": -73.9661774 }, + { "lat": 40.8506316, "lon": -73.9660800 }, + { "lat": 40.8507142, "lon": -73.9660658 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761176445, + "bounds": { + "minlat": 40.8504190, + "minlon": -73.9666447, + "maxlat": 40.8507649, + "maxlon": -73.9661774 + }, + "nodes": [ + 7111637711, + 7111637712, + 7111637713, + 7111637714, + 7111637715, + 7111637716 + ], + "geometry": [ + { "lat": 40.8507649, "lon": -73.9665573 }, + { "lat": 40.8504952, "lon": -73.9666417 }, + { "lat": 40.8504740, "lon": -73.9666447 }, + { "lat": 40.8504584, "lon": -73.9666343 }, + { "lat": 40.8504484, "lon": -73.9666137 }, + { "lat": 40.8504190, "lon": -73.9661774 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761176446, + "bounds": { + "minlat": 40.8507967, + "minlon": -73.9714125, + "maxlat": 40.8509439, + "maxlon": -73.9710167 + }, + "nodes": [ + 7111637717, + 7111637718, + 7111637719, + 7111637720, + 7111637721, + 7111637722, + 7111637723, + 7111637724, + 7111637725 + ], + "geometry": [ + { "lat": 40.8509439, "lon": -73.9714125 }, + { "lat": 40.8508106, "lon": -73.9711582 }, + { "lat": 40.8507998, "lon": -73.9711162 }, + { "lat": 40.8507967, "lon": -73.9710823 }, + { "lat": 40.8507967, "lon": -73.9710495 }, + { "lat": 40.8508044, "lon": -73.9710341 }, + { "lat": 40.8508207, "lon": -73.9710228 }, + { "lat": 40.8508456, "lon": -73.9710167 }, + { "lat": 40.8509193, "lon": -73.9710310 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761176447, + "bounds": { + "minlat": 40.8509193, + "minlon": -73.9712941, + "maxlat": 40.8510674, + "maxlon": -73.9710310 + }, + "nodes": [ + 7111637725, + 7111637726 + ], + "geometry": [ + { "lat": 40.8509193, "lon": -73.9710310 }, + { "lat": 40.8510674, "lon": -73.9712941 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 761176448, + "bounds": { + "minlat": 40.8506620, + "minlon": -73.9709201, + "maxlat": 40.8507700, + "maxlon": -73.9704600 + }, + "nodes": [ + 103205059, + 7111637727 + ], + "geometry": [ + { "lat": 40.8506620, "lon": -73.9704600 }, + { "lat": 40.8507700, "lon": -73.9709201 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761181440, + "bounds": { + "minlat": 40.8286654, + "minlon": -73.9871111, + "maxlat": 40.8289865, + "maxlon": -73.9863694 + }, + "nodes": [ + 7111640160, + 7111640161, + 7111640162, + 7111640163 + ], + "geometry": [ + { "lat": 40.8286654, "lon": -73.9863694 }, + { "lat": 40.8287665, "lon": -73.9865860 }, + { "lat": 40.8288735, "lon": -73.9868086 }, + { "lat": 40.8289865, "lon": -73.9871111 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 761181443, + "bounds": { + "minlat": 40.8294840, + "minlon": -73.9856424, + "maxlat": 40.8298303, + "maxlon": -73.9852570 + }, + "nodes": [ + 7111640173, + 7111640174, + 7111640175, + 7111640176 + ], + "geometry": [ + { "lat": 40.8294840, "lon": -73.9854926 }, + { "lat": 40.8297437, "lon": -73.9852570 }, + { "lat": 40.8298303, "lon": -73.9854235 }, + { "lat": 40.8295700, "lon": -73.9856424 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 761181444, + "bounds": { + "minlat": 40.8298303, + "minlon": -73.9858296, + "maxlat": 40.8299630, + "maxlon": -73.9854235 + }, + "nodes": [ + 7111640175, + 7111640177, + 7111640178 + ], + "geometry": [ + { "lat": 40.8298303, "lon": -73.9854235 }, + { "lat": 40.8299530, "lon": -73.9856597 }, + { "lat": 40.8299630, "lon": -73.9858296 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 761183476, + "bounds": { + "minlat": 40.8119860, + "minlon": -73.9323265, + "maxlat": 40.8120151, + "maxlon": -73.9321558 + }, + "nodes": [ + 7111683122, + 13020167781, + 7111683123, + 7111683124 + ], + "geometry": [ + { "lat": 40.8119860, "lon": -73.9321558 }, + { "lat": 40.8119954, "lon": -73.9322332 }, + { "lat": 40.8120005, "lon": -73.9322752 }, + { "lat": 40.8120151, "lon": -73.9323265 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 761183724, + "bounds": { + "minlat": 40.7616303, + "minlon": -73.9344022, + "maxlat": 40.7620878, + "maxlon": -73.9338091 + }, + "nodes": [ + 7111672673, + 7111672675, + 7111672676 + ], + "geometry": [ + { "lat": 40.7620878, "lon": -73.9338091 }, + { "lat": 40.7619218, "lon": -73.9341086 }, + { "lat": 40.7616303, "lon": -73.9344022 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 761183988, + "bounds": { + "minlat": 40.7174787, + "minlon": -73.9604940, + "maxlat": 40.7176273, + "maxlon": -73.9603550 + }, + "nodes": [ + 7111665349, + 9795044556, + 7111665350, + 7111665351 + ], + "geometry": [ + { "lat": 40.7176273, "lon": -73.9603550 }, + { "lat": 40.7175774, "lon": -73.9604051 }, + { "lat": 40.7175679, "lon": -73.9604145 }, + { "lat": 40.7174787, "lon": -73.9604940 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 761201399, + "bounds": { + "minlat": 40.8475739, + "minlon": -73.9713481, + "maxlat": 40.8483695, + "maxlon": -73.9708356 + }, + "nodes": [ + 7111829392, + 7111829393, + 7111829394, + 7111829395, + 7111829396, + 7111829397, + 7111829398, + 7111829399 + ], + "geometry": [ + { "lat": 40.8475739, "lon": -73.9708356 }, + { "lat": 40.8476558, "lon": -73.9709745 }, + { "lat": 40.8477629, "lon": -73.9711628 }, + { "lat": 40.8478484, "lon": -73.9713421 }, + { "lat": 40.8478769, "lon": -73.9713481 }, + { "lat": 40.8480502, "lon": -73.9712035 }, + { "lat": 40.8482052, "lon": -73.9710920 }, + { "lat": 40.8483695, "lon": -73.9709760 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 761204935, + "bounds": { + "minlat": 40.8252519, + "minlon": -74.0119598, + "maxlat": 40.8261961, + "maxlon": -74.0107791 + }, + "nodes": [ + 7111846878, + 7111846879, + 7111846880, + 7111846881, + 7111846882, + 7111846883, + 7111846884, + 7111868485, + 7111868486, + 7111868487, + 7111868488, + 7111868489 + ], + "geometry": [ + { "lat": 40.8261961, "lon": -74.0107791 }, + { "lat": 40.8260858, "lon": -74.0107805 }, + { "lat": 40.8258162, "lon": -74.0108052 }, + { "lat": 40.8256817, "lon": -74.0108935 }, + { "lat": 40.8256228, "lon": -74.0109225 }, + { "lat": 40.8254725, "lon": -74.0108633 }, + { "lat": 40.8254391, "lon": -74.0108633 }, + { "lat": 40.8254163, "lon": -74.0108854 }, + { "lat": 40.8253706, "lon": -74.0110968 }, + { "lat": 40.8253917, "lon": -74.0111630 }, + { "lat": 40.8254084, "lon": -74.0112454 }, + { "lat": 40.8252519, "lon": -74.0119598 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 761384356, + "bounds": { + "minlat": 40.7033139, + "minlon": -73.9134745, + "maxlat": 40.7035213, + "maxlon": -73.9131242 + }, + "nodes": [ + 7113579447, + 9761722131, + 7113579448, + 7113579449 + ], + "geometry": [ + { "lat": 40.7033139, "lon": -73.9131242 }, + { "lat": 40.7033525, "lon": -73.9131909 }, + { "lat": 40.7033735, "lon": -73.9132271 }, + { "lat": 40.7035213, "lon": -73.9134745 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 761417313, + "bounds": { + "minlat": 40.7131203, + "minlon": -73.9932864, + "maxlat": 40.7133944, + "maxlon": -73.9932525 + }, + "nodes": [ + 7113914108, + 8279851196, + 7113914109, + 7113914110 + ], + "geometry": [ + { "lat": 40.7131203, "lon": -73.9932525 }, + { "lat": 40.7131938, "lon": -73.9932616 }, + { "lat": 40.7132077, "lon": -73.9932632 }, + { "lat": 40.7133944, "lon": -73.9932864 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 761426068, + "bounds": { + "minlat": 40.8767920, + "minlon": -73.9707253, + "maxlat": 40.8772880, + "maxlon": -73.9703643 + }, + "nodes": [ + 7114041774, + 7114041775, + 7114041776, + 7114041777, + 6300702727 + ], + "geometry": [ + { "lat": 40.8767920, "lon": -73.9707253 }, + { "lat": 40.8771895, "lon": -73.9703879 }, + { "lat": 40.8772232, "lon": -73.9703722 }, + { "lat": 40.8772667, "lon": -73.9703643 }, + { "lat": 40.8772880, "lon": -73.9704080 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761428570, + "bounds": { + "minlat": 40.8762874, + "minlon": -73.9834699, + "maxlat": 40.8766680, + "maxlon": -73.9826407 + }, + "nodes": [ + 7114045970, + 13525915005, + 7114045971, + 7114045972 + ], + "geometry": [ + { "lat": 40.8766680, "lon": -73.9834699 }, + { "lat": 40.8766235, "lon": -73.9834020 }, + { "lat": 40.8762874, "lon": -73.9828890 }, + { "lat": 40.8765228, "lon": -73.9826407 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761428571, + "bounds": { + "minlat": 40.8765228, + "minlon": -73.9832385, + "maxlat": 40.8768896, + "maxlon": -73.9826407 + }, + "nodes": [ + 7114045972, + 13525915006, + 7114045973 + ], + "geometry": [ + { "lat": 40.8765228, "lon": -73.9826407 }, + { "lat": 40.8768429, "lon": -73.9831624 }, + { "lat": 40.8768896, "lon": -73.9832385 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 761428572, + "bounds": { + "minlat": 40.8757564, + "minlon": -73.9850382, + "maxlat": 40.8760926, + "maxlon": -73.9848297 + }, + "nodes": [ + 7114045974, + 7114045975 + ], + "geometry": [ + { "lat": 40.8757564, "lon": -73.9850382 }, + { "lat": 40.8760926, "lon": -73.9848297 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761611070, + "bounds": { + "minlat": 40.8818237, + "minlon": -73.9535345, + "maxlat": 40.8822918, + "maxlon": -73.9532248 + }, + "nodes": [ + 7115788416, + 7115788417, + 7115788418, + 7115788419, + 7115788420, + 7115788421 + ], + "geometry": [ + { "lat": 40.8818237, "lon": -73.9535345 }, + { "lat": 40.8821215, "lon": -73.9532498 }, + { "lat": 40.8821504, "lon": -73.9532277 }, + { "lat": 40.8821861, "lon": -73.9532248 }, + { "lat": 40.8822172, "lon": -73.9532410 }, + { "lat": 40.8822918, "lon": -73.9533647 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761611071, + "bounds": { + "minlat": 40.8823665, + "minlon": -73.9549925, + "maxlat": 40.8830010, + "maxlon": -73.9541287 + }, + "nodes": [ + 7115788422, + 7115788423, + 7115788424, + 7115788425, + 7115788426, + 7115788427, + 7115788428, + 7115788429, + 7115788430, + 7115788431 + ], + "geometry": [ + { "lat": 40.8823665, "lon": -73.9544823 }, + { "lat": 40.8827051, "lon": -73.9541355 }, + { "lat": 40.8827214, "lon": -73.9541287 }, + { "lat": 40.8827412, "lon": -73.9541343 }, + { "lat": 40.8827549, "lon": -73.9541514 }, + { "lat": 40.8829949, "lon": -73.9545860 }, + { "lat": 40.8830001, "lon": -73.9546088 }, + { "lat": 40.8830010, "lon": -73.9546349 }, + { "lat": 40.8829932, "lon": -73.9546554 }, + { "lat": 40.8826583, "lon": -73.9549925 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 761611072, + "bounds": { + "minlat": 40.8822260, + "minlon": -73.9572047, + "maxlat": 40.8826737, + "maxlon": -73.9565902 + }, + "nodes": [ + 7115788432, + 7115788433, + 7115788434, + 7115788435, + 7115788436, + 7115788437 + ], + "geometry": [ + { "lat": 40.8822260, "lon": -73.9565902 }, + { "lat": 40.8825179, "lon": -73.9571399 }, + { "lat": 40.8825549, "lon": -73.9571875 }, + { "lat": 40.8825868, "lon": -73.9572047 }, + { "lat": 40.8826258, "lon": -73.9572007 }, + { "lat": 40.8826737, "lon": -73.9571650 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 761611256, + "bounds": { + "minlat": 40.8417797, + "minlon": -74.0207400, + "maxlat": 40.8420582, + "maxlon": -74.0197892 + }, + "nodes": [ + 7115808261, + 7115808260, + 7115808259, + 7115808258, + 7115808257, + 7115808256, + 7115808255, + 7115808254 + ], + "geometry": [ + { "lat": 40.8419165, "lon": -74.0207400 }, + { "lat": 40.8417797, "lon": -74.0198914 }, + { "lat": 40.8417887, "lon": -74.0198343 }, + { "lat": 40.8418168, "lon": -74.0197985 }, + { "lat": 40.8418530, "lon": -74.0197892 }, + { "lat": 40.8418891, "lon": -74.0198064 }, + { "lat": 40.8419182, "lon": -74.0198595 }, + { "lat": 40.8420582, "lon": -74.0206935 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 761614670, + "bounds": { + "minlat": 40.7162487, + "minlon": -73.9798924, + "maxlat": 40.7167314, + "maxlon": -73.9797081 + }, + "nodes": [ + 7115850093, + 7115850094, + 7115850095, + 7115850096, + 7115850097 + ], + "geometry": [ + { "lat": 40.7162487, "lon": -73.9798924 }, + { "lat": 40.7163572, "lon": -73.9798243 }, + { "lat": 40.7165791, "lon": -73.9797097 }, + { "lat": 40.7166073, "lon": -73.9797081 }, + { "lat": 40.7167314, "lon": -73.9797210 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 761614671, + "bounds": { + "minlat": 40.7190528, + "minlon": -73.9802379, + "maxlat": 40.7201467, + "maxlon": -73.9796718 + }, + "nodes": [ + 7115850098, + 7115850099, + 7115850100 + ], + "geometry": [ + { "lat": 40.7201467, "lon": -73.9796718 }, + { "lat": 40.7200712, "lon": -73.9797098 }, + { "lat": 40.7190528, "lon": -73.9802379 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 761619056, + "bounds": { + "minlat": 40.7143253, + "minlon": -73.9934246, + "maxlat": 40.7145929, + "maxlon": -73.9933448 + }, + "nodes": [ + 7115898917, + 7115898918, + 7477044564, + 7115898920 + ], + "geometry": [ + { "lat": 40.7143253, "lon": -73.9934154 }, + { "lat": 40.7143813, "lon": -73.9934230 }, + { "lat": 40.7144287, "lon": -73.9934246 }, + { "lat": 40.7145929, "lon": -73.9933448 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 761619341, + "bounds": { + "minlat": 40.8245986, + "minlon": -73.9749325, + "maxlat": 40.8248217, + "maxlon": -73.9747603 + }, + "nodes": [ + 103130962, + 5340890589 + ], + "geometry": [ + { "lat": 40.8245986, "lon": -73.9749325 }, + { "lat": 40.8248217, "lon": -73.9747603 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 761621532, + "bounds": { + "minlat": 40.7956425, + "minlon": -73.9640015, + "maxlat": 40.7960976, + "maxlon": -73.9636893 + }, + "nodes": [ + 7115910327, + 7115910328 + ], + "geometry": [ + { "lat": 40.7956425, "lon": -73.9640015 }, + { "lat": 40.7960976, "lon": -73.9636893 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 761742154, + "bounds": { + "minlat": 40.7727220, + "minlon": -73.9924557, + "maxlat": 40.7727928, + "maxlon": -73.9924483 + }, + "nodes": [ + 7117112643, + 7787811320 + ], + "geometry": [ + { "lat": 40.7727928, "lon": -73.9924483 }, + { "lat": 40.7727220, "lon": -73.9924557 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 761781584, + "bounds": { + "minlat": 40.8794115, + "minlon": -74.0125136, + "maxlat": 40.8795741, + "maxlon": -74.0124284 + }, + "nodes": [ + 7117505394, + 7117505395 + ], + "geometry": [ + { "lat": 40.8795741, "lon": -74.0124284 }, + { "lat": 40.8794115, "lon": -74.0125136 } + ], + "tags": { + "highway": "residential", + "name": "Joseph Court" + } +}, +{ + "type": "way", + "id": 762117681, + "bounds": { + "minlat": 40.7931355, + "minlon": -73.9639152, + "maxlat": 40.7936354, + "maxlon": -73.9635479 + }, + "nodes": [ + 3602667598, + 3602667600, + 3602667602, + 3602667603 + ], + "geometry": [ + { "lat": 40.7931355, "lon": -73.9639152 }, + { "lat": 40.7933073, "lon": -73.9637897 }, + { "lat": 40.7934760, "lon": -73.9636682 }, + { "lat": 40.7936354, "lon": -73.9635479 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 762141353, + "bounds": { + "minlat": 40.8615728, + "minlon": -73.9240018, + "maxlat": 40.8619896, + "maxlon": -73.9235566 + }, + "nodes": [ + 7120723135, + 9561344656, + 7120723139, + 7120723136, + 7120723137, + 7120723138 + ], + "geometry": [ + { "lat": 40.8619896, "lon": -73.9236890 }, + { "lat": 40.8618524, "lon": -73.9235996 }, + { "lat": 40.8618329, "lon": -73.9235869 }, + { "lat": 40.8617775, "lon": -73.9235566 }, + { "lat": 40.8617346, "lon": -73.9235844 }, + { "lat": 40.8615728, "lon": -73.9240018 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 762167416, + "bounds": { + "minlat": 40.7031710, + "minlon": -73.9328150, + "maxlat": 40.7035770, + "maxlon": -73.9326980 + }, + "nodes": [ + 42518762, + 9744012775, + 42504116 + ], + "geometry": [ + { "lat": 40.7035770, "lon": -73.9328150 }, + { "lat": 40.7032508, "lon": -73.9327171 }, + { "lat": 40.7031710, "lon": -73.9326980 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Bogart Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bogart", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 762547248, + "bounds": { + "minlat": 40.8167549, + "minlon": -73.9543361, + "maxlat": 40.8169824, + "maxlon": -73.9537851 + }, + "nodes": [ + 7124965415, + 10055115546, + 7124965416 + ], + "geometry": [ + { "lat": 40.8167549, "lon": -73.9537851 }, + { "lat": 40.8168158, "lon": -73.9539327 }, + { "lat": 40.8169824, "lon": -73.9543361 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 762547249, + "bounds": { + "minlat": 40.8155777, + "minlon": -73.9553551, + "maxlat": 40.8158723, + "maxlon": -73.9546577 + }, + "nodes": [ + 7124965421, + 10055115547, + 7124965414 + ], + "geometry": [ + { "lat": 40.8155777, "lon": -73.9546577 }, + { "lat": 40.8156369, "lon": -73.9547978 }, + { "lat": 40.8158723, "lon": -73.9553551 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 762763157, + "bounds": { + "minlat": 40.8206674, + "minlon": -74.0158181, + "maxlat": 40.8215222, + "maxlon": -74.0146899 + }, + "nodes": [ + 103882282, + 7127355659, + 7127355660, + 7127355661, + 7127355662, + 10980602990 + ], + "geometry": [ + { "lat": 40.8206674, "lon": -74.0155095 }, + { "lat": 40.8208655, "lon": -74.0158181 }, + { "lat": 40.8210789, "lon": -74.0155826 }, + { "lat": 40.8211865, "lon": -74.0154388 }, + { "lat": 40.8215222, "lon": -74.0149959 }, + { "lat": 40.8212973, "lon": -74.0146899 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 762763158, + "bounds": { + "minlat": 40.8186538, + "minlon": -74.0149511, + "maxlat": 40.8200044, + "maxlon": -74.0130807 + }, + "nodes": [ + 7127355663, + 7127355666, + 7127355664, + 7127355665, + 8606482754, + 8606482755, + 8606482756, + 8606482757, + 8606482758, + 8606482759, + 8606482760, + 8606482764, + 8606482761, + 8606482762, + 8606482763, + 103880411 + ], + "geometry": [ + { "lat": 40.8200044, "lon": -74.0144009 }, + { "lat": 40.8199280, "lon": -74.0143065 }, + { "lat": 40.8198835, "lon": -74.0142516 }, + { "lat": 40.8195461, "lon": -74.0136602 }, + { "lat": 40.8192311, "lon": -74.0130807 }, + { "lat": 40.8190869, "lon": -74.0131268 }, + { "lat": 40.8189485, "lon": -74.0132153 }, + { "lat": 40.8186538, "lon": -74.0135142 }, + { "lat": 40.8190333, "lon": -74.0142162 }, + { "lat": 40.8190378, "lon": -74.0143519 }, + { "lat": 40.8193836, "lon": -74.0149415 }, + { "lat": 40.8194303, "lon": -74.0149511 }, + { "lat": 40.8194749, "lon": -74.0149329 }, + { "lat": 40.8195654, "lon": -74.0148703 }, + { "lat": 40.8198590, "lon": -74.0145755 }, + { "lat": 40.8199571, "lon": -74.0145312 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 762768273, + "bounds": { + "minlat": 40.7300057, + "minlon": -73.9337622, + "maxlat": 40.7303715, + "maxlon": -73.9333401 + }, + "nodes": [ + 7127447351, + 7127447353, + 11211159645, + 7127447352 + ], + "geometry": [ + { "lat": 40.7300057, "lon": -73.9337622 }, + { "lat": 40.7302940, "lon": -73.9334296 }, + { "lat": 40.7303088, "lon": -73.9334125 }, + { "lat": 40.7303715, "lon": -73.9333401 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 762768274, + "bounds": { + "minlat": 40.7315496, + "minlon": -73.9366002, + "maxlat": 40.7321308, + "maxlon": -73.9357830 + }, + "nodes": [ + 7127447354, + 11211159648, + 7127447355 + ], + "geometry": [ + { "lat": 40.7315496, "lon": -73.9366002 }, + { "lat": 40.7320706, "lon": -73.9358677 }, + { "lat": 40.7321308, "lon": -73.9357830 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 762773860, + "bounds": { + "minlat": 40.7418041, + "minlon": -73.9344948, + "maxlat": 40.7419408, + "maxlon": -73.9341355 + }, + "nodes": [ + 7127557278, + 10743722173, + 7127557279, + 7127557280, + 7127557281 + ], + "geometry": [ + { "lat": 40.7418998, "lon": -73.9341355 }, + { "lat": 40.7419152, "lon": -73.9342715 }, + { "lat": 40.7419204, "lon": -73.9343170 }, + { "lat": 40.7419408, "lon": -73.9344638 }, + { "lat": 40.7418041, "lon": -73.9344948 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 762789729, + "bounds": { + "minlat": 40.8045772, + "minlon": -74.0215535, + "maxlat": 40.8079951, + "maxlon": -74.0195749 + }, + "nodes": [ + 7127730169, + 6339133067, + 7127730170, + 6339133068, + 6339133069, + 6339133070, + 6339133071, + 6339133072, + 6339133073, + 6339133074, + 6339133075 + ], + "geometry": [ + { "lat": 40.8045772, "lon": -74.0215535 }, + { "lat": 40.8049653, "lon": -74.0214224 }, + { "lat": 40.8049927, "lon": -74.0214008 }, + { "lat": 40.8058601, "lon": -74.0207181 }, + { "lat": 40.8065727, "lon": -74.0202085 }, + { "lat": 40.8073602, "lon": -74.0196493 }, + { "lat": 40.8076121, "lon": -74.0195749 }, + { "lat": 40.8079442, "lon": -74.0197307 }, + { "lat": 40.8079951, "lon": -74.0200280 }, + { "lat": 40.8078799, "lon": -74.0202792 }, + { "lat": 40.8071084, "lon": -74.0208703 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 762795996, + "bounds": { + "minlat": 40.7460197, + "minlon": -73.9103679, + "maxlat": 40.7461487, + "maxlon": -73.9098452 + }, + "nodes": [ + 7127815234, + 10762233916, + 7127815238 + ], + "geometry": [ + { "lat": 40.7460197, "lon": -73.9098452 }, + { "lat": 40.7460399, "lon": -73.9099252 }, + { "lat": 40.7461487, "lon": -73.9103679 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 762813972, + "bounds": { + "minlat": 40.8538309, + "minlon": -73.9700838, + "maxlat": 40.8542029, + "maxlon": -73.9697534 + }, + "nodes": [ + 103280492, + 7127895878, + 7127895879, + 7127895880 + ], + "geometry": [ + { "lat": 40.8542029, "lon": -73.9698852 }, + { "lat": 40.8538784, "lon": -73.9700838 }, + { "lat": 40.8538309, "lon": -73.9699509 }, + { "lat": 40.8541482, "lon": -73.9697534 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 762816190, + "bounds": { + "minlat": 40.8793252, + "minlon": -73.9103280, + "maxlat": 40.8798654, + "maxlon": -73.9100496 + }, + "nodes": [ + 7128005637, + 10132643592, + 7128005643, + 7128005638, + 7128005639, + 7128005640, + 7128005641 + ], + "geometry": [ + { "lat": 40.8798654, "lon": -73.9101718 }, + { "lat": 40.8798100, "lon": -73.9102482 }, + { "lat": 40.8797877, "lon": -73.9102788 }, + { "lat": 40.8797519, "lon": -73.9103280 }, + { "lat": 40.8796936, "lon": -73.9102960 }, + { "lat": 40.8794841, "lon": -73.9100496 }, + { "lat": 40.8793252, "lon": -73.9102844 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 762816191, + "bounds": { + "minlat": 40.8795252, + "minlon": -73.9105377, + "maxlat": 40.8796936, + "maxlon": -73.9102960 + }, + "nodes": [ + 7128005639, + 7128005642 + ], + "geometry": [ + { "lat": 40.8796936, "lon": -73.9102960 }, + { "lat": 40.8795252, "lon": -73.9105377 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 763015191, + "bounds": { + "minlat": 40.8408974, + "minlon": -73.9983795, + "maxlat": 40.8413112, + "maxlon": -73.9976684 + }, + "nodes": [ + 7130110345, + 7130110348, + 7130110346, + 7130110347 + ], + "geometry": [ + { "lat": 40.8408974, "lon": -73.9983795 }, + { "lat": 40.8410000, "lon": -73.9982753 }, + { "lat": 40.8413112, "lon": -73.9979593 }, + { "lat": 40.8412987, "lon": -73.9976684 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763015192, + "bounds": { + "minlat": 40.8408526, + "minlon": -73.9982753, + "maxlat": 40.8410000, + "maxlon": -73.9979961 + }, + "nodes": [ + 7130110348, + 7130110351, + 7130110349, + 7130110350 + ], + "geometry": [ + { "lat": 40.8410000, "lon": -73.9982753 }, + { "lat": 40.8409297, "lon": -73.9981781 }, + { "lat": 40.8409053, "lon": -73.9980969 }, + { "lat": 40.8408526, "lon": -73.9979961 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763015193, + "bounds": { + "minlat": 40.8408263, + "minlon": -73.9982608, + "maxlat": 40.8409297, + "maxlon": -73.9981781 + }, + "nodes": [ + 7130110351, + 7130110352 + ], + "geometry": [ + { "lat": 40.8409297, "lon": -73.9981781 }, + { "lat": 40.8408263, "lon": -73.9982608 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 763015194, + "bounds": { + "minlat": 40.8408145, + "minlon": -73.9978815, + "maxlat": 40.8408562, + "maxlon": -73.9973591 + }, + "nodes": [ + 7130110353, + 12692393425, + 12692393412, + 12692393413, + 7130110354 + ], + "geometry": [ + { "lat": 40.8408562, "lon": -73.9973591 }, + { "lat": 40.8408166, "lon": -73.9977320 }, + { "lat": 40.8408145, "lon": -73.9977600 }, + { "lat": 40.8408166, "lon": -73.9977904 }, + { "lat": 40.8408328, "lon": -73.9978815 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763017903, + "bounds": { + "minlat": 40.8343490, + "minlon": -73.9744700, + "maxlat": 40.8348409, + "maxlon": -73.9744240 + }, + "nodes": [ + 7130161687, + 7130161688, + 7130161689, + 7130161690 + ], + "geometry": [ + { "lat": 40.8343490, "lon": -73.9744700 }, + { "lat": 40.8344133, "lon": -73.9744664 }, + { "lat": 40.8346236, "lon": -73.9744503 }, + { "lat": 40.8348409, "lon": -73.9744240 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763031209, + "bounds": { + "minlat": 40.8814116, + "minlon": -73.9632075, + "maxlat": 40.8819500, + "maxlon": -73.9625286 + }, + "nodes": [ + 7130252621, + 7130252622, + 7130252623, + 7130252624, + 7130252625, + 7130252626, + 7130252627, + 7130252628, + 7130252629, + 7130252630 + ], + "geometry": [ + { "lat": 40.8817532, "lon": -73.9625286 }, + { "lat": 40.8818493, "lon": -73.9626995 }, + { "lat": 40.8819303, "lon": -73.9628368 }, + { "lat": 40.8819500, "lon": -73.9628916 }, + { "lat": 40.8819334, "lon": -73.9629623 }, + { "lat": 40.8816831, "lon": -73.9632075 }, + { "lat": 40.8816022, "lon": -73.9632016 }, + { "lat": 40.8815531, "lon": -73.9631536 }, + { "lat": 40.8814779, "lon": -73.9630239 }, + { "lat": 40.8814116, "lon": -73.9628899 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763121491, + "bounds": { + "minlat": 40.7486200, + "minlon": -74.0081941, + "maxlat": 40.7493636, + "maxlon": -74.0078547 + }, + "nodes": [ + 8703673335, + 10911890470, + 246579749, + 12161224698, + 246579750, + 12161224697, + 12161224696, + 246580298 + ], + "geometry": [ + { "lat": 40.7493636, "lon": -74.0081941 }, + { "lat": 40.7492526, "lon": -74.0081348 }, + { "lat": 40.7491127, "lon": -74.0080593 }, + { "lat": 40.7490071, "lon": -74.0079991 }, + { "lat": 40.7489266, "lon": -74.0079580 }, + { "lat": 40.7488477, "lon": -74.0079242 }, + { "lat": 40.7486953, "lon": -74.0078733 }, + { "lat": 40.7486200, "lon": -74.0078547 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 763121492, + "bounds": { + "minlat": 40.7479993, + "minlon": -74.0078547, + "maxlat": 40.7486200, + "maxlon": -74.0078202 + }, + "nodes": [ + 246580298, + 12161232252, + 246651647, + 12161232253, + 12161232254, + 246579752, + 12161232255, + 9143574619, + 12161232256, + 246579753 + ], + "geometry": [ + { "lat": 40.7486200, "lon": -74.0078547 }, + { "lat": 40.7485591, "lon": -74.0078419 }, + { "lat": 40.7484971, "lon": -74.0078314 }, + { "lat": 40.7484266, "lon": -74.0078249 }, + { "lat": 40.7483583, "lon": -74.0078213 }, + { "lat": 40.7482900, "lon": -74.0078202 }, + { "lat": 40.7482277, "lon": -74.0078206 }, + { "lat": 40.7481553, "lon": -74.0078223 }, + { "lat": 40.7480870, "lon": -74.0078280 }, + { "lat": 40.7479993, "lon": -74.0078415 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no" + } +}, +{ + "type": "way", + "id": 763126559, + "bounds": { + "minlat": 40.7617130, + "minlon": -74.0013436, + "maxlat": 40.7619764, + "maxlon": -74.0010599 + }, + "nodes": [ + 373930484, + 12154605920, + 8765412915, + 247119598, + 62915549 + ], + "geometry": [ + { "lat": 40.7617130, "lon": -74.0013436 }, + { "lat": 40.7617784, "lon": -74.0012798 }, + { "lat": 40.7618422, "lon": -74.0012148 }, + { "lat": 40.7618695, "lon": -74.0011876 }, + { "lat": 40.7619764, "lon": -74.0010599 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "||||right" + } +}, +{ + "type": "way", + "id": 763166050, + "bounds": { + "minlat": 40.8312422, + "minlon": -74.0026147, + "maxlat": 40.8313987, + "maxlon": -74.0025115 + }, + "nodes": [ + 7131436032, + 7131436033, + 7131436034, + 7131436035 + ], + "geometry": [ + { "lat": 40.8313987, "lon": -74.0025115 }, + { "lat": 40.8313533, "lon": -74.0025585 }, + { "lat": 40.8313102, "lon": -74.0025921 }, + { "lat": 40.8312422, "lon": -74.0026147 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763166051, + "bounds": { + "minlat": 40.8299603, + "minlon": -74.0027903, + "maxlat": 40.8304259, + "maxlon": -74.0024267 + }, + "nodes": [ + 7131436036, + 7131436037, + 7131436038, + 7131436039, + 7131436040, + 7131436041, + 7131436042, + 7131436043 + ], + "geometry": [ + { "lat": 40.8299603, "lon": -74.0027903 }, + { "lat": 40.8301056, "lon": -74.0026572 }, + { "lat": 40.8302210, "lon": -74.0025415 }, + { "lat": 40.8302860, "lon": -74.0024740 }, + { "lat": 40.8303198, "lon": -74.0024442 }, + { "lat": 40.8303556, "lon": -74.0024293 }, + { "lat": 40.8303934, "lon": -74.0024267 }, + { "lat": 40.8304259, "lon": -74.0024512 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 763274963, + "bounds": { + "minlat": 40.8165732, + "minlon": -73.9844820, + "maxlat": 40.8171646, + "maxlon": -73.9840808 + }, + "nodes": [ + 7132345276, + 7132345277, + 7132345278, + 7132345279, + 7132345280, + 7132345281, + 7132345282, + 7132345283, + 7132345284 + ], + "geometry": [ + { "lat": 40.8171646, "lon": -73.9844820 }, + { "lat": 40.8171248, "lon": -73.9843873 }, + { "lat": 40.8170851, "lon": -73.9843168 }, + { "lat": 40.8169860, "lon": -73.9841700 }, + { "lat": 40.8169272, "lon": -73.9841154 }, + { "lat": 40.8168509, "lon": -73.9840808 }, + { "lat": 40.8167693, "lon": -73.9840816 }, + { "lat": 40.8166440, "lon": -73.9841168 }, + { "lat": 40.8165732, "lon": -73.9841456 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 763288717, + "bounds": { + "minlat": 40.8676663, + "minlon": -73.9581683, + "maxlat": 40.8678153, + "maxlon": -73.9580110 + }, + "nodes": [ + 7132418481, + 7132418482 + ], + "geometry": [ + { "lat": 40.8676663, "lon": -73.9581683 }, + { "lat": 40.8678153, "lon": -73.9580110 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763288718, + "bounds": { + "minlat": 40.8678153, + "minlon": -73.9582132, + "maxlat": 40.8679271, + "maxlon": -73.9580110 + }, + "nodes": [ + 7132472588, + 7132418482 + ], + "geometry": [ + { "lat": 40.8679271, "lon": -73.9582132 }, + { "lat": 40.8678153, "lon": -73.9580110 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763288719, + "bounds": { + "minlat": 40.8680392, + "minlon": -73.9579946, + "maxlat": 40.8680874, + "maxlon": -73.9578974 + }, + "nodes": [ + 7132472585, + 7132472586 + ], + "geometry": [ + { "lat": 40.8680392, "lon": -73.9578974 }, + { "lat": 40.8680874, "lon": -73.9579946 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 763288720, + "bounds": { + "minlat": 40.8678153, + "minlon": -73.9580110, + "maxlat": 40.8680392, + "maxlon": -73.9578377 + }, + "nodes": [ + 7132418482, + 7132418483, + 7132418484, + 7132472585 + ], + "geometry": [ + { "lat": 40.8678153, "lon": -73.9580110 }, + { "lat": 40.8678668, "lon": -73.9579283 }, + { "lat": 40.8679606, "lon": -73.9578377 }, + { "lat": 40.8680392, "lon": -73.9578974 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 763288721, + "bounds": { + "minlat": 40.8679271, + "minlon": -73.9582132, + "maxlat": 40.8681041, + "maxlon": -73.9579946 + }, + "nodes": [ + 7132472586, + 7132472587, + 7132472588 + ], + "geometry": [ + { "lat": 40.8680874, "lon": -73.9579946 }, + { "lat": 40.8681041, "lon": -73.9580409 }, + { "lat": 40.8679271, "lon": -73.9582132 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 763299975, + "bounds": { + "minlat": 40.7849764, + "minlon": -73.9826519, + "maxlat": 40.7850612, + "maxlon": -73.9825606 + }, + "nodes": [ + 4906056159, + 42422592 + ], + "geometry": [ + { "lat": 40.7850612, "lon": -73.9825606 }, + { "lat": 40.7849764, "lon": -73.9826519 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 763303893, + "bounds": { + "minlat": 40.7945890, + "minlon": -73.9745870, + "maxlat": 40.7949459, + "maxlon": -73.9737051 + }, + "nodes": [ + 7132609426, + 10063038995, + 9492542197, + 42431096 + ], + "geometry": [ + { "lat": 40.7949459, "lon": -73.9745870 }, + { "lat": 40.7948306, "lon": -73.9743017 }, + { "lat": 40.7946420, "lon": -73.9738351 }, + { "lat": 40.7945890, "lon": -73.9737051 } + ], + "tags": { + "alt_name": "West 95 Street", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 95th Street", + "name:ru": "Западная 95-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4646040", + "wikipedia": "en:95th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 763303894, + "bounds": { + "minlat": 40.7948687, + "minlon": -73.9765627, + "maxlat": 40.7954937, + "maxlon": -73.9760092 + }, + "nodes": [ + 42441867, + 42441870, + 9168918332, + 42441872, + 12992263820, + 42441875, + 2029349869, + 42425348 + ], + "geometry": [ + { "lat": 40.7948687, "lon": -73.9765627 }, + { "lat": 40.7949691, "lon": -73.9765008 }, + { "lat": 40.7950738, "lon": -73.9764278 }, + { "lat": 40.7951914, "lon": -73.9763392 }, + { "lat": 40.7952865, "lon": -73.9762554 }, + { "lat": 40.7953576, "lon": -73.9761834 }, + { "lat": 40.7954516, "lon": -73.9760747 }, + { "lat": 40.7954937, "lon": -73.9760092 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 763320782, + "bounds": { + "minlat": 40.8134090, + "minlon": -73.9414254, + "maxlat": 40.8134711, + "maxlon": -73.9412802 + }, + "nodes": [ + 3099327940, + 42436001 + ], + "geometry": [ + { "lat": 40.8134711, "lon": -73.9414254 }, + { "lat": 40.8134090, "lon": -73.9412802 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 134th Street", + "oneway": "yes", + "parking:lane:both": "parallel" + } +}, +{ + "type": "way", + "id": 763320783, + "bounds": { + "minlat": 40.8134711, + "minlon": -73.9414254, + "maxlat": 40.8137798, + "maxlon": -73.9411989 + }, + "nodes": [ + 7132743058, + 8421869591, + 3099327940 + ], + "geometry": [ + { "lat": 40.8137798, "lon": -73.9411989 }, + { "lat": 40.8135325, "lon": -73.9413724 }, + { "lat": 40.8134711, "lon": -73.9414254 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 763320784, + "bounds": { + "minlat": 40.8131474, + "minlon": -73.9416670, + "maxlat": 40.8134711, + "maxlon": -73.9414254 + }, + "nodes": [ + 3099327940, + 10170797791, + 7132743059 + ], + "geometry": [ + { "lat": 40.8134711, "lon": -73.9414254 }, + { "lat": 40.8134136, "lon": -73.9414683 }, + { "lat": 40.8131474, "lon": -73.9416670 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 763320785, + "bounds": { + "minlat": 40.8129498, + "minlon": -73.9416137, + "maxlat": 40.8134090, + "maxlon": -73.9412802 + }, + "nodes": [ + 5481922072, + 10170797792, + 42436001 + ], + "geometry": [ + { "lat": 40.8129498, "lon": -73.9416137 }, + { "lat": 40.8133461, "lon": -73.9413259 }, + { "lat": 40.8134090, "lon": -73.9412802 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 763320786, + "bounds": { + "minlat": 40.8134090, + "minlon": -73.9412802, + "maxlat": 40.8137701, + "maxlon": -73.9410068 + }, + "nodes": [ + 42436001, + 10170797788, + 4205440398 + ], + "geometry": [ + { "lat": 40.8134090, "lon": -73.9412802 }, + { "lat": 40.8134750, "lon": -73.9412302 }, + { "lat": 40.8137701, "lon": -73.9410068 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 763331301, + "bounds": { + "minlat": 40.8411223, + "minlon": -73.9398646, + "maxlat": 40.8414936, + "maxlon": -73.9395896 + }, + "nodes": [ + 7132814245, + 9421812819, + 42428978 + ], + "geometry": [ + { "lat": 40.8414936, "lon": -73.9395896 }, + { "lat": 40.8411964, "lon": -73.9398089 }, + { "lat": 40.8411223, "lon": -73.9398646 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 763331302, + "bounds": { + "minlat": 40.8416786, + "minlon": -73.9394169, + "maxlat": 40.8417297, + "maxlon": -73.9392999 + }, + "nodes": [ + 42428980, + 2499757467 + ], + "geometry": [ + { "lat": 40.8416786, "lon": -73.9392999 }, + { "lat": 40.8417297, "lon": -73.9394169 } + ], + "tags": { + "highway": "residential", + "name": "West 169th Street", + "name_1": "West 169 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "169th", + "tiger:name_base_1": "169", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 763331303, + "bounds": { + "minlat": 40.8417297, + "minlon": -73.9420126, + "maxlat": 40.8428194, + "maxlon": -73.9394169 + }, + "nodes": [ + 2499757467, + 2829930872, + 9566927264, + 9567002588, + 13317716992 + ], + "geometry": [ + { "lat": 40.8417297, "lon": -73.9394169 }, + { "lat": 40.8417565, "lon": -73.9394814 }, + { "lat": 40.8417695, "lon": -73.9395125 }, + { "lat": 40.8427789, "lon": -73.9419173 }, + { "lat": 40.8428194, "lon": -73.9420126 } + ], + "tags": { + "alt_name": "Edith Kamiat Place", + "description": "This honorary street name memorializes Edith Kamiat", + "highway": "residential", + "historic": "memorial", + "name": "West 169th Street", + "name_1": "West 169 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "169th", + "tiger:name_base_1": "169", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 763331304, + "bounds": { + "minlat": 40.8414250, + "minlon": -73.9394464, + "maxlat": 40.8416725, + "maxlon": -73.9393035 + }, + "nodes": [ + 7132814246, + 9566927261, + 13320061248 + ], + "geometry": [ + { "lat": 40.8414250, "lon": -73.9394464 }, + { "lat": 40.8416139, "lon": -73.9393376 }, + { "lat": 40.8416725, "lon": -73.9393035 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary sreet name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 763335103, + "bounds": { + "minlat": 40.8709944, + "minlon": -73.9141039, + "maxlat": 40.8711588, + "maxlon": -73.9139795 + }, + "nodes": [ + 7132855261, + 9561126011, + 42429704 + ], + "geometry": [ + { "lat": 40.8709944, "lon": -73.9141039 }, + { "lat": 40.8710696, "lon": -73.9140470 }, + { "lat": 40.8711588, "lon": -73.9139795 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 763335104, + "bounds": { + "minlat": 40.8707886, + "minlon": -73.9146585, + "maxlat": 40.8711394, + "maxlon": -73.9142122 + }, + "nodes": [ + 9561126014, + 13320061233 + ], + "geometry": [ + { "lat": 40.8711394, "lon": -73.9142122 }, + { "lat": 40.8707886, "lon": -73.9146585 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "highway": "primary", + "historic": "memorial", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 763335105, + "bounds": { + "minlat": 40.8709231, + "minlon": -73.9144084, + "maxlat": 40.8711588, + "maxlon": -73.9139795 + }, + "nodes": [ + 7132855263, + 9561126013, + 42429704 + ], + "geometry": [ + { "lat": 40.8709231, "lon": -73.9144084 }, + { "lat": 40.8710904, "lon": -73.9141044 }, + { "lat": 40.8711588, "lon": -73.9139795 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "turn:lanes": "through|through", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 763384726, + "bounds": { + "minlat": 40.8529880, + "minlon": -73.9183412, + "maxlat": 40.8530760, + "maxlon": -73.9182204 + }, + "nodes": [ + 42743079, + 9918264492, + 4720620198 + ], + "geometry": [ + { "lat": 40.8530760, "lon": -73.9182204 }, + { "lat": 40.8530320, "lon": -73.9182779 }, + { "lat": 40.8529880, "lon": -73.9183412 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 763399409, + "bounds": { + "minlat": 40.8460665, + "minlon": -73.9171167, + "maxlat": 40.8464621, + "maxlon": -73.9168628 + }, + "nodes": [ + 2907939288, + 12527797824, + 8499522116, + 42737547 + ], + "geometry": [ + { "lat": 40.8460665, "lon": -73.9171167 }, + { "lat": 40.8463467, "lon": -73.9169438 }, + { "lat": 40.8463683, "lon": -73.9169298 }, + { "lat": 40.8464621, "lon": -73.9168628 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 763399410, + "bounds": { + "minlat": 40.8452906, + "minlon": -73.9171704, + "maxlat": 40.8454091, + "maxlon": -73.9171220 + }, + "nodes": [ + 596668954, + 12089567410, + 12089567409, + 12089567411, + 12046949291, + 12046949292, + 42737543 + ], + "geometry": [ + { "lat": 40.8452906, "lon": -73.9171704 }, + { "lat": 40.8453227, "lon": -73.9171507 }, + { "lat": 40.8453327, "lon": -73.9171458 }, + { "lat": 40.8453501, "lon": -73.9171375 }, + { "lat": 40.8453679, "lon": -73.9171308 }, + { "lat": 40.8453862, "lon": -73.9171265 }, + { "lat": 40.8454091, "lon": -73.9171220 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 763511377, + "bounds": { + "minlat": 40.7362159, + "minlon": -73.9769315, + "maxlat": 40.7364900, + "maxlon": -73.9765340 + }, + "nodes": [ + 7134524482, + 7134524483, + 7134524484, + 7134583585, + 7134583586, + 7134583587 + ], + "geometry": [ + { "lat": 40.7362159, "lon": -73.9769315 }, + { "lat": 40.7363139, "lon": -73.9768628 }, + { "lat": 40.7363602, "lon": -73.9768299 }, + { "lat": 40.7363795, "lon": -73.9768021 }, + { "lat": 40.7364517, "lon": -73.9765728 }, + { "lat": 40.7364900, "lon": -73.9765340 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 763511378, + "bounds": { + "minlat": 40.7364900, + "minlon": -73.9765340, + "maxlat": 40.7365090, + "maxlon": -73.9765146 + }, + "nodes": [ + 7134583587, + 7134583588 + ], + "geometry": [ + { "lat": 40.7364900, "lon": -73.9765340 }, + { "lat": 40.7365090, "lon": -73.9765146 } + ], + "tags": { + "access": "private", + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 763511379, + "bounds": { + "minlat": 40.7365090, + "minlon": -73.9765146, + "maxlat": 40.7369555, + "maxlon": -73.9760782 + }, + "nodes": [ + 7134583588, + 7134583589, + 7134583590, + 7134583592, + 7134583591 + ], + "geometry": [ + { "lat": 40.7365090, "lon": -73.9765146 }, + { "lat": 40.7365452, "lon": -73.9764833 }, + { "lat": 40.7365602, "lon": -73.9763574 }, + { "lat": 40.7367832, "lon": -73.9761999 }, + { "lat": 40.7369555, "lon": -73.9760782 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 763511380, + "bounds": { + "minlat": 40.7365452, + "minlon": -73.9765272, + "maxlat": 40.7368361, + "maxlon": -73.9761999 + }, + "nodes": [ + 7134583592, + 7134583593, + 7134583594, + 7134583595, + 7134583596, + 7134583589 + ], + "geometry": [ + { "lat": 40.7367832, "lon": -73.9761999 }, + { "lat": 40.7368361, "lon": -73.9763216 }, + { "lat": 40.7368267, "lon": -73.9763986 }, + { "lat": 40.7366540, "lon": -73.9765272 }, + { "lat": 40.7366026, "lon": -73.9765234 }, + { "lat": 40.7365452, "lon": -73.9764833 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 763524107, + "bounds": { + "minlat": 40.7850130, + "minlon": -74.0103424, + "maxlat": 40.7851639, + "maxlon": -74.0102718 + }, + "nodes": [ + 7134796477, + 7658692202, + 7134796478 + ], + "geometry": [ + { "lat": 40.7851639, "lon": -74.0102718 }, + { "lat": 40.7851162, "lon": -74.0102941 }, + { "lat": 40.7850130, "lon": -74.0103424 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763524108, + "bounds": { + "minlat": 40.7846198, + "minlon": -74.0105875, + "maxlat": 40.7850130, + "maxlon": -74.0101602 + }, + "nodes": [ + 7134796478, + 7134796479, + 7134796480, + 7134796481, + 7134796482, + 7134796483, + 7134796484, + 7134802685, + 7134802686, + 7134802687, + 7134802688, + 7134802689, + 7134802690, + 7134796478 + ], + "geometry": [ + { "lat": 40.7850130, "lon": -74.0103424 }, + { "lat": 40.7847732, "lon": -74.0105521 }, + { "lat": 40.7847270, "lon": -74.0105840 }, + { "lat": 40.7846948, "lon": -74.0105875 }, + { "lat": 40.7846734, "lon": -74.0105769 }, + { "lat": 40.7846251, "lon": -74.0104796 }, + { "lat": 40.7846198, "lon": -74.0104583 }, + { "lat": 40.7846271, "lon": -74.0104283 }, + { "lat": 40.7846560, "lon": -74.0103920 }, + { "lat": 40.7848717, "lon": -74.0101894 }, + { "lat": 40.7848998, "lon": -74.0101602 }, + { "lat": 40.7849306, "lon": -74.0101646 }, + { "lat": 40.7849601, "lon": -74.0101982 }, + { "lat": 40.7850130, "lon": -74.0103424 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 763530687, + "bounds": { + "minlat": 40.7795103, + "minlon": -73.9528014, + "maxlat": 40.7796720, + "maxlon": -73.9526852 + }, + "nodes": [ + 7134855791, + 7134855799 + ], + "geometry": [ + { "lat": 40.7796720, "lon": -73.9526852 }, + { "lat": 40.7795103, "lon": -73.9528014 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 763530691, + "bounds": { + "minlat": 40.7796720, + "minlon": -73.9526852, + "maxlat": 40.7799104, + "maxlon": -73.9525139 + }, + "nodes": [ + 7134855824, + 7134855830, + 7134855791 + ], + "geometry": [ + { "lat": 40.7799104, "lon": -73.9525139 }, + { "lat": 40.7798568, "lon": -73.9525524 }, + { "lat": 40.7796720, "lon": -73.9526852 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 763530715, + "bounds": { + "minlat": 40.7792775, + "minlon": -73.9529686, + "maxlat": 40.7795103, + "maxlon": -73.9528014 + }, + "nodes": [ + 7134855799, + 7134839379, + 7134855796 + ], + "geometry": [ + { "lat": 40.7795103, "lon": -73.9528014 }, + { "lat": 40.7793399, "lon": -73.9529238 }, + { "lat": 40.7792775, "lon": -73.9529686 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 763533250, + "bounds": { + "minlat": 40.8515234, + "minlon": -73.9313902, + "maxlat": 40.8517488, + "maxlon": -73.9311005 + }, + "nodes": [ + 7134871414, + 7134871408, + 7134871409, + 7134871410, + 7134871411, + 7134871412 + ], + "geometry": [ + { "lat": 40.8515791, "lon": -73.9313902 }, + { "lat": 40.8517455, "lon": -73.9312553 }, + { "lat": 40.8517488, "lon": -73.9312348 }, + { "lat": 40.8516915, "lon": -73.9311007 }, + { "lat": 40.8516792, "lon": -73.9311005 }, + { "lat": 40.8515234, "lon": -73.9312090 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 763533251, + "bounds": { + "minlat": 40.8505854, + "minlon": -73.9285677, + "maxlat": 40.8510165, + "maxlon": -73.9282378 + }, + "nodes": [ + 7134871415, + 7134871417, + 9566892696, + 7134871416 + ], + "geometry": [ + { "lat": 40.8505854, "lon": -73.9285677 }, + { "lat": 40.8509477, "lon": -73.9282904 }, + { "lat": 40.8509548, "lon": -73.9282850 }, + { "lat": 40.8510165, "lon": -73.9282378 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 763537805, + "bounds": { + "minlat": 40.7253313, + "minlon": -73.9129885, + "maxlat": 40.7253733, + "maxlon": -73.9123264 + }, + "nodes": [ + 7134903127, + 7134903129, + 7134903128 + ], + "geometry": [ + { "lat": 40.7253313, "lon": -73.9123264 }, + { "lat": 40.7253391, "lon": -73.9124494 }, + { "lat": 40.7253733, "lon": -73.9129885 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 763572095, + "bounds": { + "minlat": 40.8652603, + "minlon": -73.9647349, + "maxlat": 40.8655496, + "maxlon": -73.9641261 + }, + "nodes": [ + 7135019469, + 7135019470, + 7135019471, + 7135019472 + ], + "geometry": [ + { "lat": 40.8655496, "lon": -73.9647349 }, + { "lat": 40.8655073, "lon": -73.9646166 }, + { "lat": 40.8653794, "lon": -73.9643450 }, + { "lat": 40.8652603, "lon": -73.9641261 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763586140, + "bounds": { + "minlat": 40.8043286, + "minlon": -73.9226260, + "maxlat": 40.8043924, + "maxlon": -73.9224663 + }, + "nodes": [ + 7135100757, + 11427300207, + 7135100758 + ], + "geometry": [ + { "lat": 40.8043924, "lon": -73.9226260 }, + { "lat": 40.8043612, "lon": -73.9225479 }, + { "lat": 40.8043286, "lon": -73.9224663 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 763586141, + "bounds": { + "minlat": 40.8042216, + "minlon": -73.9224663, + "maxlat": 40.8045416, + "maxlon": -73.9220316 + }, + "nodes": [ + 7135100758, + 7135100760, + 7135100761, + 7135100762, + 11427299914, + 7135100763 + ], + "geometry": [ + { "lat": 40.8043286, "lon": -73.9224663 }, + { "lat": 40.8042762, "lon": -73.9224497 }, + { "lat": 40.8042216, "lon": -73.9223004 }, + { "lat": 40.8042592, "lon": -73.9222442 }, + { "lat": 40.8044353, "lon": -73.9221116 }, + { "lat": 40.8045416, "lon": -73.9220316 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 763586142, + "bounds": { + "minlat": 40.8043286, + "minlon": -73.9224663, + "maxlat": 40.8046296, + "maxlon": -73.9222416 + }, + "nodes": [ + 7135100758, + 11427299915, + 7135100759 + ], + "geometry": [ + { "lat": 40.8043286, "lon": -73.9224663 }, + { "lat": 40.8045239, "lon": -73.9223205 }, + { "lat": 40.8046296, "lon": -73.9222416 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 763589245, + "bounds": { + "minlat": 40.8737593, + "minlon": -73.9761230, + "maxlat": 40.8740503, + "maxlon": -73.9761004 + }, + "nodes": [ + 7135115083, + 7135115084 + ], + "geometry": [ + { "lat": 40.8740503, "lon": -73.9761230 }, + { "lat": 40.8737593, "lon": -73.9761004 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763589246, + "bounds": { + "minlat": 40.8733184, + "minlon": -73.9750710, + "maxlat": 40.8735613, + "maxlon": -73.9748130 + }, + "nodes": [ + 530806264, + 7135130885 + ], + "geometry": [ + { "lat": 40.8735613, "lon": -73.9748130 }, + { "lat": 40.8733184, "lon": -73.9750710 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763722443, + "bounds": { + "minlat": 40.7657925, + "minlon": -73.9204830, + "maxlat": 40.7659609, + "maxlon": -73.9200780 + }, + "nodes": [ + 7135719622, + 6406731677, + 7135719623, + 7135719624 + ], + "geometry": [ + { "lat": 40.7657925, "lon": -73.9200780 }, + { "lat": 40.7658332, "lon": -73.9201623 }, + { "lat": 40.7659609, "lon": -73.9204267 }, + { "lat": 40.7658965, "lon": -73.9204830 } + ], + "tags": { + "highway": "service", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 763738854, + "bounds": { + "minlat": 40.7339017, + "minlon": -73.9200813, + "maxlat": 40.7345256, + "maxlon": -73.9199527 + }, + "nodes": [ + 7135830119, + 10762284706, + 7135830120 + ], + "geometry": [ + { "lat": 40.7339017, "lon": -73.9200813 }, + { "lat": 40.7339541, "lon": -73.9200705 }, + { "lat": 40.7345256, "lon": -73.9199527 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 763852188, + "bounds": { + "minlat": 40.8359861, + "minlon": -74.0160489, + "maxlat": 40.8361136, + "maxlon": -74.0157146 + }, + "nodes": [ + 103277584, + 7136480023, + 7136480024 + ], + "geometry": [ + { "lat": 40.8360832, "lon": -74.0157146 }, + { "lat": 40.8359861, "lon": -74.0158082 }, + { "lat": 40.8361136, "lon": -74.0160489 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763852189, + "bounds": { + "minlat": 40.8361136, + "minlon": -74.0160489, + "maxlat": 40.8362158, + "maxlon": -74.0159529 + }, + "nodes": [ + 7136480024, + 7136480026 + ], + "geometry": [ + { "lat": 40.8361136, "lon": -74.0160489 }, + { "lat": 40.8362158, "lon": -74.0159529 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 763852190, + "bounds": { + "minlat": 40.8352884, + "minlon": -74.0168233, + "maxlat": 40.8361136, + "maxlon": -74.0160489 + }, + "nodes": [ + 7136480024, + 7136480027, + 7136480025 + ], + "geometry": [ + { "lat": 40.8361136, "lon": -74.0160489 }, + { "lat": 40.8353702, "lon": -74.0167504 }, + { "lat": 40.8352884, "lon": -74.0168233 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 763852191, + "bounds": { + "minlat": 40.8358393, + "minlon": -74.0177647, + "maxlat": 40.8361670, + "maxlon": -74.0175002 + }, + "nodes": [ + 7136480028, + 7136480029, + 7136480030 + ], + "geometry": [ + { "lat": 40.8358393, "lon": -74.0177647 }, + { "lat": 40.8360847, "lon": -74.0175002 }, + { "lat": 40.8361670, "lon": -74.0176336 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 763909981, + "bounds": { + "minlat": 40.7677545, + "minlon": -73.9532891, + "maxlat": 40.7680349, + "maxlon": -73.9529384 + }, + "nodes": [ + 7136749255, + 7136749241, + 7136749237, + 7136749264, + 7136749247, + 7136749268, + 7136749265, + 7136749259, + 7136749266, + 7136749242, + 7136749238, + 7136749260 + ], + "geometry": [ + { "lat": 40.7679704, "lon": -73.9529384 }, + { "lat": 40.7680234, "lon": -73.9530635 }, + { "lat": 40.7680335, "lon": -73.9530874 }, + { "lat": 40.7680349, "lon": -73.9531357 }, + { "lat": 40.7680264, "lon": -73.9531766 }, + { "lat": 40.7680138, "lon": -73.9532021 }, + { "lat": 40.7679055, "lon": -73.9532835 }, + { "lat": 40.7678820, "lon": -73.9532891 }, + { "lat": 40.7678547, "lon": -73.9532842 }, + { "lat": 40.7678274, "lon": -73.9532647 }, + { "lat": 40.7678084, "lon": -73.9532206 }, + { "lat": 40.7677545, "lon": -73.9530947 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 763948785, + "bounds": { + "minlat": 40.8722965, + "minlon": -74.0193418, + "maxlat": 40.8728481, + "maxlon": -74.0189402 + }, + "nodes": [ + 7137114078, + 7137114079, + 7137114080, + 7137114081, + 7137114082, + 7137114083, + 7137114084, + 7137114085, + 7137114086 + ], + "geometry": [ + { "lat": 40.8728481, "lon": -74.0193418 }, + { "lat": 40.8727162, "lon": -74.0189878 }, + { "lat": 40.8727067, "lon": -74.0189678 }, + { "lat": 40.8726934, "lon": -74.0189540 }, + { "lat": 40.8726764, "lon": -74.0189440 }, + { "lat": 40.8726546, "lon": -74.0189402 }, + { "lat": 40.8726319, "lon": -74.0189427 }, + { "lat": 40.8726064, "lon": -74.0189528 }, + { "lat": 40.8722965, "lon": -74.0191582 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 763971141, + "bounds": { + "minlat": 40.7371030, + "minlon": -73.9771965, + "maxlat": 40.7379874, + "maxlon": -73.9750826 + }, + "nodes": [ + 7137281963, + 7137281962, + 3601295704, + 7137281967, + 9832349994, + 13837909587, + 3111984536, + 13837909588, + 9968663365 + ], + "geometry": [ + { "lat": 40.7371030, "lon": -73.9750826 }, + { "lat": 40.7371435, "lon": -73.9751836 }, + { "lat": 40.7371791, "lon": -73.9752672 }, + { "lat": 40.7372139, "lon": -73.9753472 }, + { "lat": 40.7372893, "lon": -73.9755264 }, + { "lat": 40.7374625, "lon": -73.9759437 }, + { "lat": 40.7376853, "lon": -73.9764803 }, + { "lat": 40.7378121, "lon": -73.9767809 }, + { "lat": 40.7379874, "lon": -73.9771965 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 25th Street", + "name:ru": "Восточная 25-я стрит", + "name_1": "East 25 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 763971142, + "bounds": { + "minlat": 40.7370721, + "minlon": -73.9750826, + "maxlat": 40.7371030, + "maxlon": -73.9748309 + }, + "nodes": [ + 7137281959, + 9141034863, + 9141034862, + 9141034861, + 7137281963 + ], + "geometry": [ + { "lat": 40.7370745, "lon": -73.9748309 }, + { "lat": 40.7370721, "lon": -73.9748637 }, + { "lat": 40.7370730, "lon": -73.9749044 }, + { "lat": 40.7370785, "lon": -73.9749456 }, + { "lat": 40.7371030, "lon": -73.9750826 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 25th Street", + "name:ru": "Восточная 25-я стрит", + "name_1": "East 25 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 764046068, + "bounds": { + "minlat": 40.7837503, + "minlon": -73.9459059, + "maxlat": 40.7844404, + "maxlon": -73.9454140 + }, + "nodes": [ + 5653832464, + 7138030369, + 7138043089, + 7138030356 + ], + "geometry": [ + { "lat": 40.7837503, "lon": -73.9459059 }, + { "lat": 40.7838546, "lon": -73.9458312 }, + { "lat": 40.7843787, "lon": -73.9454572 }, + { "lat": 40.7844404, "lon": -73.9454140 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 764046069, + "bounds": { + "minlat": 40.7834389, + "minlon": -73.9455926, + "maxlat": 40.7837936, + "maxlon": -73.9450648 + }, + "nodes": [ + 7138030353, + 7138043087, + 7138030375, + 7138043092, + 7138030355, + 7138030351, + 7138030352, + 7138043085, + 7138030348, + 7138030365, + 7138043094, + 7138043091, + 7138043096 + ], + "geometry": [ + { "lat": 40.7834389, "lon": -73.9451695 }, + { "lat": 40.7835415, "lon": -73.9450926 }, + { "lat": 40.7836054, "lon": -73.9450648 }, + { "lat": 40.7836500, "lon": -73.9450686 }, + { "lat": 40.7836811, "lon": -73.9450937 }, + { "lat": 40.7837072, "lon": -73.9451233 }, + { "lat": 40.7837865, "lon": -73.9453181 }, + { "lat": 40.7837936, "lon": -73.9453525 }, + { "lat": 40.7837933, "lon": -73.9453929 }, + { "lat": 40.7837850, "lon": -73.9454420 }, + { "lat": 40.7837702, "lon": -73.9454803 }, + { "lat": 40.7837218, "lon": -73.9455179 }, + { "lat": 40.7836181, "lon": -73.9455926 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 764130077, + "bounds": { + "minlat": 40.8160228, + "minlon": -74.0197272, + "maxlat": 40.8177336, + "maxlon": -74.0154691 + }, + "nodes": [ + 8218941735, + 8218941734, + 8218941733, + 8218941732, + 9814297611, + 8218941731, + 8218941730, + 8218941729, + 9814297609, + 9814297606, + 9814297604, + 9814297602, + 8218941728, + 8218941727, + 8218941726, + 8218941725, + 8218941724, + 7138798268, + 9814297603, + 9814297605, + 9814297608, + 9814297610, + 9814297612, + 7138798269, + 7138798270, + 7138798271, + 7138798272, + 7138798273, + 7138798274, + 7138798275, + 7138798277 + ], + "geometry": [ + { "lat": 40.8172504, "lon": -74.0184192 }, + { "lat": 40.8177159, "lon": -74.0194465 }, + { "lat": 40.8177336, "lon": -74.0195118 }, + { "lat": 40.8177057, "lon": -74.0195696 }, + { "lat": 40.8175905, "lon": -74.0196566 }, + { "lat": 40.8175296, "lon": -74.0197026 }, + { "lat": 40.8174737, "lon": -74.0197272 }, + { "lat": 40.8174234, "lon": -74.0197223 }, + { "lat": 40.8173597, "lon": -74.0197008 }, + { "lat": 40.8171187, "lon": -74.0196195 }, + { "lat": 40.8169154, "lon": -74.0195508 }, + { "lat": 40.8166671, "lon": -74.0194670 }, + { "lat": 40.8163620, "lon": -74.0193640 }, + { "lat": 40.8163117, "lon": -74.0193357 }, + { "lat": 40.8162856, "lon": -74.0192877 }, + { "lat": 40.8162931, "lon": -74.0192113 }, + { "lat": 40.8163219, "lon": -74.0191682 }, + { "lat": 40.8164830, "lon": -74.0190520 }, + { "lat": 40.8165062, "lon": -74.0190344 }, + { "lat": 40.8166428, "lon": -74.0189309 }, + { "lat": 40.8167894, "lon": -74.0188197 }, + { "lat": 40.8169490, "lon": -74.0186986 }, + { "lat": 40.8171168, "lon": -74.0185714 }, + { "lat": 40.8171542, "lon": -74.0185430 }, + { "lat": 40.8171970, "lon": -74.0184659 }, + { "lat": 40.8171834, "lon": -74.0183656 }, + { "lat": 40.8170161, "lon": -74.0179801 }, + { "lat": 40.8169830, "lon": -74.0178181 }, + { "lat": 40.8164908, "lon": -74.0165817 }, + { "lat": 40.8160979, "lon": -74.0156718 }, + { "lat": 40.8160228, "lon": -74.0154691 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 764130078, + "bounds": { + "minlat": 40.8159618, + "minlon": -74.0154691, + "maxlat": 40.8160228, + "maxlon": -74.0153046 + }, + "nodes": [ + 7138798277, + 7138798276 + ], + "geometry": [ + { "lat": 40.8160228, "lon": -74.0154691 }, + { "lat": 40.8159618, "lon": -74.0153046 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 764186908, + "bounds": { + "minlat": 40.8180355, + "minlon": -74.0078520, + "maxlat": 40.8183643, + "maxlon": -74.0070458 + }, + "nodes": [ + 7139376170, + 7139376171, + 7139376172 + ], + "geometry": [ + { "lat": 40.8183643, "lon": -74.0078520 }, + { "lat": 40.8183441, "lon": -74.0076118 }, + { "lat": 40.8180355, "lon": -74.0070458 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 764689682, + "bounds": { + "minlat": 40.8234479, + "minlon": -73.9896119, + "maxlat": 40.8239496, + "maxlon": -73.9890439 + }, + "nodes": [ + 7144105886, + 7144105887, + 7144105888, + 7144105889 + ], + "geometry": [ + { "lat": 40.8234479, "lon": -73.9893009 }, + { "lat": 40.8236070, "lon": -73.9896119 }, + { "lat": 40.8239496, "lon": -73.9893603 }, + { "lat": 40.8237813, "lon": -73.9890439 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 764769704, + "bounds": { + "minlat": 40.8795841, + "minlon": -73.9845468, + "maxlat": 40.8798130, + "maxlon": -73.9838838 + }, + "nodes": [ + 7144151037, + 7144151039, + 7144151038 + ], + "geometry": [ + { "lat": 40.8798130, "lon": -73.9845468 }, + { "lat": 40.8796413, "lon": -73.9840539 }, + { "lat": 40.8795841, "lon": -73.9838838 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 764848766, + "bounds": { + "minlat": 40.8812508, + "minlon": -73.9790301, + "maxlat": 40.8814383, + "maxlon": -73.9785834 + }, + "nodes": [ + 7144559591, + 13525915094, + 7144559594, + 7144559592 + ], + "geometry": [ + { "lat": 40.8812508, "lon": -73.9785834 }, + { "lat": 40.8812822, "lon": -73.9786612 }, + { "lat": 40.8813380, "lon": -73.9787993 }, + { "lat": 40.8814383, "lon": -73.9790301 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 764874359, + "bounds": { + "minlat": 40.7184562, + "minlon": -74.0112146, + "maxlat": 40.7188998, + "maxlon": -74.0111266 + }, + "nodes": [ + 7144807588, + 8304498015, + 7144807589 + ], + "geometry": [ + { "lat": 40.7188998, "lon": -74.0111266 }, + { "lat": 40.7188103, "lon": -74.0111444 }, + { "lat": 40.7184562, "lon": -74.0112146 } + ], + "tags": { + "foot": "yes", + "highway": "service", + "motor_vehicle": "no", + "name": "Washington Walk", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 워크", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 764874360, + "bounds": { + "minlat": 40.7201591, + "minlon": -74.0117337, + "maxlat": 40.7202832, + "maxlon": -74.0116984 + }, + "nodes": [ + 7144807590, + 11466637364, + 8304497776, + 7144807592 + ], + "geometry": [ + { "lat": 40.7202832, "lon": -74.0117154 }, + { "lat": 40.7202109, "lon": -74.0117289 }, + { "lat": 40.7201870, "lon": -74.0117337 }, + { "lat": 40.7201591, "lon": -74.0116984 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 764874361, + "bounds": { + "minlat": 40.7198149, + "minlon": -74.0117757, + "maxlat": 40.7201591, + "maxlon": -74.0116984 + }, + "nodes": [ + 7144807592, + 7144807591 + ], + "geometry": [ + { "lat": 40.7201591, "lon": -74.0116984 }, + { "lat": 40.7198149, "lon": -74.0117757 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 764886143, + "bounds": { + "minlat": 40.7100398, + "minlon": -73.9689340, + "maxlat": 40.7100932, + "maxlon": -73.9685018 + }, + "nodes": [ + 42469451, + 10053847493, + 7144886933 + ], + "geometry": [ + { "lat": 40.7100398, "lon": -73.9685018 }, + { "lat": 40.7100543, "lon": -73.9686191 }, + { "lat": 40.7100932, "lon": -73.9689340 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 764886587, + "bounds": { + "minlat": 40.8727640, + "minlon": -73.9531955, + "maxlat": 40.8728721, + "maxlon": -73.9530685 + }, + "nodes": [ + 7144899431, + 7144899432, + 7144899433, + 7144899434 + ], + "geometry": [ + { "lat": 40.8728721, "lon": -73.9530685 }, + { "lat": 40.8727754, "lon": -73.9531581 }, + { "lat": 40.8727667, "lon": -73.9531703 }, + { "lat": 40.8727640, "lon": -73.9531955 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 764886588, + "bounds": { + "minlat": 40.8721843, + "minlon": -73.9530147, + "maxlat": 40.8723277, + "maxlon": -73.9527482 + }, + "nodes": [ + 7144899446, + 7144899447 + ], + "geometry": [ + { "lat": 40.8723277, "lon": -73.9530147 }, + { "lat": 40.8721843, "lon": -73.9527482 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 764886589, + "bounds": { + "minlat": 40.8723277, + "minlon": -73.9534304, + "maxlat": 40.8727862, + "maxlon": -73.9530147 + }, + "nodes": [ + 7144899434, + 7144899435, + 7144899436, + 7144899437, + 7144899438, + 7144899439, + 7144899440, + 7144899441, + 7144899442, + 7144899443, + 7144899444, + 7144899445, + 9284736481, + 8417911922, + 7144899446 + ], + "geometry": [ + { "lat": 40.8727640, "lon": -73.9531955 }, + { "lat": 40.8727710, "lon": -73.9532393 }, + { "lat": 40.8727862, "lon": -73.9532902 }, + { "lat": 40.8727841, "lon": -73.9533075 }, + { "lat": 40.8727765, "lon": -73.9533268 }, + { "lat": 40.8727613, "lon": -73.9533505 }, + { "lat": 40.8726733, "lon": -73.9534119 }, + { "lat": 40.8726420, "lon": -73.9534227 }, + { "lat": 40.8726157, "lon": -73.9534304 }, + { "lat": 40.8725893, "lon": -73.9534304 }, + { "lat": 40.8725671, "lon": -73.9534151 }, + { "lat": 40.8725465, "lon": -73.9533836 }, + { "lat": 40.8725267, "lon": -73.9533501 }, + { "lat": 40.8725045, "lon": -73.9533127 }, + { "lat": 40.8723277, "lon": -73.9530147 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 765037368, + "bounds": { + "minlat": 40.8043419, + "minlon": -73.9156362, + "maxlat": 40.8044562, + "maxlon": -73.9153779 + }, + "nodes": [ + 7155589553, + 13038865334, + 7155589554, + 7155589552 + ], + "geometry": [ + { "lat": 40.8043419, "lon": -73.9153779 }, + { "lat": 40.8043942, "lon": -73.9154961 }, + { "lat": 40.8044066, "lon": -73.9155241 }, + { "lat": 40.8044562, "lon": -73.9156362 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 765062304, + "bounds": { + "minlat": 40.7285458, + "minlon": -73.9780553, + "maxlat": 40.7286358, + "maxlon": -73.9779904 + }, + "nodes": [ + 7145875534, + 8309479472, + 8836185937 + ], + "geometry": [ + { "lat": 40.7285458, "lon": -73.9780553 }, + { "lat": 40.7286024, "lon": -73.9780145 }, + { "lat": 40.7286358, "lon": -73.9779904 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 765062305, + "bounds": { + "minlat": 40.7241167, + "minlon": -73.9754288, + "maxlat": 40.7242172, + "maxlon": -73.9751545 + }, + "nodes": [ + 7165645298, + 8303782536, + 7145875537 + ], + "geometry": [ + { "lat": 40.7242172, "lon": -73.9754288 }, + { "lat": 40.7241805, "lon": -73.9753286 }, + { "lat": 40.7241167, "lon": -73.9751545 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 765104369, + "bounds": { + "minlat": 40.7980379, + "minlon": -73.9651448, + "maxlat": 40.7983678, + "maxlon": -73.9648977 + }, + "nodes": [ + 7146086674, + 10166004104, + 7571274531, + 7571274533, + 7146086678 + ], + "geometry": [ + { "lat": 40.7983678, "lon": -73.9648977 }, + { "lat": 40.7982852, "lon": -73.9649595 }, + { "lat": 40.7982004, "lon": -73.9650230 }, + { "lat": 40.7980761, "lon": -73.9651161 }, + { "lat": 40.7980379, "lon": -73.9651448 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 765104372, + "bounds": { + "minlat": 40.7977421, + "minlon": -73.9647259, + "maxlat": 40.7978771, + "maxlon": -73.9646321 + }, + "nodes": [ + 7146086676, + 7146086677 + ], + "geometry": [ + { "lat": 40.7978771, "lon": -73.9646321 }, + { "lat": 40.7977421, "lon": -73.9647259 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 765134101, + "bounds": { + "minlat": 40.8360570, + "minlon": -73.9068371, + "maxlat": 40.8363925, + "maxlon": -73.9066399 + }, + "nodes": [ + 5549749416, + 7146288205 + ], + "geometry": [ + { "lat": 40.8360570, "lon": -73.9068371 }, + { "lat": 40.8363925, "lon": -73.9066399 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 765145018, + "bounds": { + "minlat": 40.7103389, + "minlon": -73.9599366, + "maxlat": 40.7108057, + "maxlon": -73.9587989 + }, + "nodes": [ + 1692483461, + 4726242985, + 9968376581, + 9968376580, + 5832458672, + 9968376579, + 6663064626, + 6248588471, + 42526525 + ], + "geometry": [ + { "lat": 40.7103389, "lon": -73.9587989 }, + { "lat": 40.7103874, "lon": -73.9588629 }, + { "lat": 40.7104130, "lon": -73.9589039 }, + { "lat": 40.7104406, "lon": -73.9589549 }, + { "lat": 40.7104706, "lon": -73.9590193 }, + { "lat": 40.7104973, "lon": -73.9590812 }, + { "lat": 40.7105219, "lon": -73.9591432 }, + { "lat": 40.7107713, "lon": -73.9598291 }, + { "lat": 40.7108057, "lon": -73.9599366 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "South 4th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 765149016, + "bounds": { + "minlat": 40.7001835, + "minlon": -73.9621854, + "maxlat": 40.7002740, + "maxlon": -73.9621464 + }, + "nodes": [ + 42469400, + 10142828160 + ], + "geometry": [ + { "lat": 40.7002740, "lon": -73.9621464 }, + { "lat": 40.7001835, "lon": -73.9621854 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Williamsburg Street West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Williamsburg", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 765274319, + "bounds": { + "minlat": 40.7286600, + "minlon": -73.9757574, + "maxlat": 40.7298362, + "maxlon": -73.9748867 + }, + "nodes": [ + 1927758595, + 4161568863, + 1989931105, + 1989931122, + 387184982, + 9142398642, + 1739869219 + ], + "geometry": [ + { "lat": 40.7298362, "lon": -73.9748867 }, + { "lat": 40.7297918, "lon": -73.9749174 }, + { "lat": 40.7295361, "lon": -73.9751024 }, + { "lat": 40.7290570, "lon": -73.9754528 }, + { "lat": 40.7286797, "lon": -73.9757257 }, + { "lat": 40.7286659, "lon": -73.9757400 }, + { "lat": 40.7286600, "lon": -73.9757574 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C Service Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 765274320, + "bounds": { + "minlat": 40.7305250, + "minlon": -73.9741791, + "maxlat": 40.7308911, + "maxlon": -73.9739414 + }, + "nodes": [ + 370896902, + 1739869205, + 1739869234, + 1739869236, + 1739869231, + 370896903, + 4161569146 + ], + "geometry": [ + { "lat": 40.7305250, "lon": -73.9741791 }, + { "lat": 40.7306280, "lon": -73.9740849 }, + { "lat": 40.7306946, "lon": -73.9740405 }, + { "lat": 40.7307461, "lon": -73.9740093 }, + { "lat": 40.7307975, "lon": -73.9739817 }, + { "lat": 40.7308459, "lon": -73.9739591 }, + { "lat": 40.7308911, "lon": -73.9739414 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 765274321, + "bounds": { + "minlat": 40.7305250, + "minlon": -73.9741791, + "maxlat": 40.7310019, + "maxlon": -73.9740521 + }, + "nodes": [ + 4161568888, + 9142398636, + 4161568989, + 7147636390, + 7147636391, + 7147636392, + 7147636393, + 7147636394, + 7147636395, + 370896902 + ], + "geometry": [ + { "lat": 40.7310019, "lon": -73.9740570 }, + { "lat": 40.7309672, "lon": -73.9740534 }, + { "lat": 40.7309338, "lon": -73.9740521 }, + { "lat": 40.7308624, "lon": -73.9740590 }, + { "lat": 40.7308119, "lon": -73.9740715 }, + { "lat": 40.7307609, "lon": -73.9740854 }, + { "lat": 40.7307140, "lon": -73.9741018 }, + { "lat": 40.7306723, "lon": -73.9741178 }, + { "lat": 40.7306366, "lon": -73.9741325 }, + { "lat": 40.7305250, "lon": -73.9741791 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 765314929, + "bounds": { + "minlat": 40.7747921, + "minlon": -74.0125279, + "maxlat": 40.7752270, + "maxlon": -74.0113455 + }, + "nodes": [ + 5964467343, + 7147999457, + 7147999458, + 7147999459 + ], + "geometry": [ + { "lat": 40.7747921, "lon": -74.0113455 }, + { "lat": 40.7747946, "lon": -74.0114664 }, + { "lat": 40.7749860, "lon": -74.0119273 }, + { "lat": 40.7752270, "lon": -74.0125279 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 765329897, + "bounds": { + "minlat": 40.7480199, + "minlon": -74.0009431, + "maxlat": 40.7482886, + "maxlon": -74.0007582 + }, + "nodes": [ + 7148114561, + 11145365989, + 7148114563, + 7148114562 + ], + "geometry": [ + { "lat": 40.7480199, "lon": -74.0009431 }, + { "lat": 40.7480737, "lon": -74.0009046 }, + { "lat": 40.7480934, "lon": -74.0008912 }, + { "lat": 40.7482886, "lon": -74.0007582 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 765600349, + "bounds": { + "minlat": 40.8211295, + "minlon": -73.9993832, + "maxlat": 40.8214215, + "maxlon": -73.9991325 + }, + "nodes": [ + 7150378844, + 7150378845, + 7150378846, + 7150378847, + 7150378848 + ], + "geometry": [ + { "lat": 40.8214215, "lon": -73.9993832 }, + { "lat": 40.8212886, "lon": -73.9991325 }, + { "lat": 40.8212498, "lon": -73.9991377 }, + { "lat": 40.8211954, "lon": -73.9991616 }, + { "lat": 40.8211295, "lon": -73.9991967 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 765611625, + "bounds": { + "minlat": 40.8675700, + "minlon": -73.9265943, + "maxlat": 40.8677476, + "maxlon": -73.9262329 + }, + "nodes": [ + 7150484631, + 9561561655, + 7150484632, + 7150484633 + ], + "geometry": [ + { "lat": 40.8675700, "lon": -73.9265943 }, + { "lat": 40.8676097, "lon": -73.9265350 }, + { "lat": 40.8676247, "lon": -73.9265126 }, + { "lat": 40.8677476, "lon": -73.9262329 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 765672306, + "bounds": { + "minlat": 40.8773654, + "minlon": -73.9914142, + "maxlat": 40.8784717, + "maxlon": -73.9904846 + }, + "nodes": [ + 7151030064, + 7151030083, + 7151030080, + 7151030065, + 7151030081, + 7151030066, + 7151030067, + 7151030068, + 7151030069, + 7151030070, + 7151030071, + 7151030072, + 7151030073, + 7151030074, + 7151030075, + 7151030076, + 7151030077 + ], + "geometry": [ + { "lat": 40.8784717, "lon": -73.9912764 }, + { "lat": 40.8783594, "lon": -73.9913443 }, + { "lat": 40.8782304, "lon": -73.9914142 }, + { "lat": 40.8782144, "lon": -73.9914133 }, + { "lat": 40.8782006, "lon": -73.9913998 }, + { "lat": 40.8781033, "lon": -73.9911227 }, + { "lat": 40.8780593, "lon": -73.9910555 }, + { "lat": 40.8779861, "lon": -73.9909910 }, + { "lat": 40.8779076, "lon": -73.9909435 }, + { "lat": 40.8778168, "lon": -73.9908960 }, + { "lat": 40.8778073, "lon": -73.9908575 }, + { "lat": 40.8778141, "lon": -73.9908253 }, + { "lat": 40.8774687, "lon": -73.9906927 }, + { "lat": 40.8774181, "lon": -73.9906507 }, + { "lat": 40.8773931, "lon": -73.9906282 }, + { "lat": 40.8773810, "lon": -73.9905845 }, + { "lat": 40.8773654, "lon": -73.9904846 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 765672307, + "bounds": { + "minlat": 40.8778141, + "minlon": -73.9908253, + "maxlat": 40.8778912, + "maxlon": -73.9904375 + }, + "nodes": [ + 7151030072, + 7151030078, + 7151030082, + 7151030079 + ], + "geometry": [ + { "lat": 40.8778141, "lon": -73.9908253 }, + { "lat": 40.8778245, "lon": -73.9907991 }, + { "lat": 40.8778721, "lon": -73.9905427 }, + { "lat": 40.8778912, "lon": -73.9904375 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 765860288, + "bounds": { + "minlat": 40.7047152, + "minlon": -73.9645901, + "maxlat": 40.7051044, + "maxlon": -73.9642039 + }, + "nodes": [ + 7152793378, + 8253507371, + 7152793379, + 7152793380 + ], + "geometry": [ + { "lat": 40.7051044, "lon": -73.9643599 }, + { "lat": 40.7050564, "lon": -73.9643086 }, + { "lat": 40.7049584, "lon": -73.9642039 }, + { "lat": 40.7047152, "lon": -73.9645901 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 765861452, + "bounds": { + "minlat": 40.8500247, + "minlon": -73.9196796, + "maxlat": 40.8503188, + "maxlon": -73.9190415 + }, + "nodes": [ + 2808764475, + 13036593807, + 7152772084, + 7152772083 + ], + "geometry": [ + { "lat": 40.8500247, "lon": -73.9190415 }, + { "lat": 40.8500599, "lon": -73.9191193 }, + { "lat": 40.8500693, "lon": -73.9191402 }, + { "lat": 40.8503188, "lon": -73.9196796 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 765868912, + "bounds": { + "minlat": 40.7408098, + "minlon": -73.9414966, + "maxlat": 40.7410228, + "maxlon": -73.9414339 + }, + "nodes": [ + 7152878901, + 8926818354, + 7152878903 + ], + "geometry": [ + { "lat": 40.7410228, "lon": -73.9414339 }, + { "lat": 40.7409499, "lon": -73.9414559 }, + { "lat": 40.7408098, "lon": -73.9414966 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 765870688, + "bounds": { + "minlat": 40.8095960, + "minlon": -74.0083865, + "maxlat": 40.8099610, + "maxlon": -74.0080180 + }, + "nodes": [ + 103872658, + 7475993586, + 7152890121, + 7152890122 + ], + "geometry": [ + { "lat": 40.8095960, "lon": -74.0083865 }, + { "lat": 40.8096397, "lon": -74.0083457 }, + { "lat": 40.8097699, "lon": -74.0082241 }, + { "lat": 40.8099610, "lon": -74.0080180 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 765891296, + "bounds": { + "minlat": 40.8586114, + "minlon": -73.9911042, + "maxlat": 40.8589976, + "maxlon": -73.9907128 + }, + "nodes": [ + 7153087453, + 7153087454 + ], + "geometry": [ + { "lat": 40.8589976, "lon": -73.9907128 }, + { "lat": 40.8586114, "lon": -73.9911042 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 765901843, + "bounds": { + "minlat": 40.7028871, + "minlon": -73.9619518, + "maxlat": 40.7032044, + "maxlon": -73.9606861 + }, + "nodes": [ + 7153159875, + 9776829322, + 7153159876 + ], + "geometry": [ + { "lat": 40.7028871, "lon": -73.9606861 }, + { "lat": 40.7029085, "lon": -73.9607714 }, + { "lat": 40.7032044, "lon": -73.9619518 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 765904898, + "bounds": { + "minlat": 40.7023115, + "minlon": -73.9324964, + "maxlat": 40.7027309, + "maxlon": -73.9317307 + }, + "nodes": [ + 7153236306, + 9755788626, + 13701117132, + 13701117130, + 13701117127, + 9755788625, + 7153236305 + ], + "geometry": [ + { "lat": 40.7023115, "lon": -73.9317307 }, + { "lat": 40.7023593, "lon": -73.9318179 }, + { "lat": 40.7024333, "lon": -73.9319530 }, + { "lat": 40.7025348, "lon": -73.9321383 }, + { "lat": 40.7026332, "lon": -73.9323180 }, + { "lat": 40.7027022, "lon": -73.9324440 }, + { "lat": 40.7027309, "lon": -73.9324964 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 765904899, + "bounds": { + "minlat": 40.7001435, + "minlon": -73.9358560, + "maxlat": 40.7004682, + "maxlon": -73.9357018 + }, + "nodes": [ + 7153236308, + 9744012821, + 7153236307 + ], + "geometry": [ + { "lat": 40.7001435, "lon": -73.9357018 }, + { "lat": 40.7002088, "lon": -73.9357328 }, + { "lat": 40.7004682, "lon": -73.9358560 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 765904902, + "bounds": { + "minlat": 40.6999919, + "minlon": -73.9309368, + "maxlat": 40.7002583, + "maxlon": -73.9305116 + }, + "nodes": [ + 7153236314, + 9755788658, + 7153236313, + 5487729359 + ], + "geometry": [ + { "lat": 40.6999919, "lon": -73.9305116 }, + { "lat": 40.7000283, "lon": -73.9305807 }, + { "lat": 40.7002156, "lon": -73.9309368 }, + { "lat": 40.7002583, "lon": -73.9309320 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 765910649, + "bounds": { + "minlat": 40.7070458, + "minlon": -73.9207430, + "maxlat": 40.7074823, + "maxlon": -73.9200097 + }, + "nodes": [ + 7153297692, + 9755788641, + 8403423321, + 7153297691 + ], + "geometry": [ + { "lat": 40.7074823, "lon": -73.9207430 }, + { "lat": 40.7074504, "lon": -73.9206895 }, + { "lat": 40.7070848, "lon": -73.9200753 }, + { "lat": 40.7070458, "lon": -73.9200097 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 765910650, + "bounds": { + "minlat": 40.7062742, + "minlon": -73.9166132, + "maxlat": 40.7069335, + "maxlon": -73.9159199 + }, + "nodes": [ + 7153297694, + 9592286294, + 9214830627, + 9592286295, + 7153297693 + ], + "geometry": [ + { "lat": 40.7062742, "lon": -73.9166132 }, + { "lat": 40.7063306, "lon": -73.9165532 }, + { "lat": 40.7063935, "lon": -73.9164862 }, + { "lat": 40.7064174, "lon": -73.9164473 }, + { "lat": 40.7069335, "lon": -73.9159199 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 765910656, + "bounds": { + "minlat": 40.7033615, + "minlon": -73.9197519, + "maxlat": 40.7037735, + "maxlon": -73.9190033 + }, + "nodes": [ + 7153297711, + 9755788628, + 9755788629, + 7153297706 + ], + "geometry": [ + { "lat": 40.7037735, "lon": -73.9197519 }, + { "lat": 40.7037434, "lon": -73.9196971 }, + { "lat": 40.7033963, "lon": -73.9190666 }, + { "lat": 40.7033615, "lon": -73.9190033 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 765917977, + "bounds": { + "minlat": 40.7132699, + "minlon": -73.9833948, + "maxlat": 40.7139783, + "maxlon": -73.9832906 + }, + "nodes": [ + 7153367758, + 8310246489, + 7153367761, + 7153367760, + 8310246510, + 7153367759 + ], + "geometry": [ + { "lat": 40.7132699, "lon": -73.9832906 }, + { "lat": 40.7133532, "lon": -73.9833029 }, + { "lat": 40.7133880, "lon": -73.9833080 }, + { "lat": 40.7138839, "lon": -73.9833809 }, + { "lat": 40.7139088, "lon": -73.9833846 }, + { "lat": 40.7139783, "lon": -73.9833948 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 765920309, + "bounds": { + "minlat": 40.7469154, + "minlon": -73.9274274, + "maxlat": 40.7469640, + "maxlon": -73.9270438 + }, + "nodes": [ + 7153388593, + 10762202936, + 7153388594 + ], + "geometry": [ + { "lat": 40.7469640, "lon": -73.9274274 }, + { "lat": 40.7469554, "lon": -73.9273593 }, + { "lat": 40.7469154, "lon": -73.9270438 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 765949576, + "bounds": { + "minlat": 40.7925210, + "minlon": -74.0180791, + "maxlat": 40.7926165, + "maxlon": -74.0177747 + }, + "nodes": [ + 7153703087, + 7660979606, + 7153703088, + 7153703089, + 7153703090 + ], + "geometry": [ + { "lat": 40.7926165, "lon": -74.0180791 }, + { "lat": 40.7925952, "lon": -74.0180387 }, + { "lat": 40.7925210, "lon": -74.0178981 }, + { "lat": 40.7925273, "lon": -74.0178064 }, + { "lat": 40.7925658, "lon": -74.0177747 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 765984455, + "bounds": { + "minlat": 40.7018837, + "minlon": -73.9809633, + "maxlat": 40.7030528, + "maxlon": -73.9802228 + }, + "nodes": [ + 42500309, + 10554499068, + 10042577616, + 7154021057, + 7707712201, + 10554494195, + 10554494196, + 10554494197, + 10554494198, + 10554494199, + 10554494200, + 10554499022, + 10554494201 + ], + "geometry": [ + { "lat": 40.7030528, "lon": -73.9802502 }, + { "lat": 40.7029443, "lon": -73.9802255 }, + { "lat": 40.7029322, "lon": -73.9802228 }, + { "lat": 40.7026980, "lon": -73.9802553 }, + { "lat": 40.7025836, "lon": -73.9803369 }, + { "lat": 40.7024105, "lon": -73.9805835 }, + { "lat": 40.7023680, "lon": -73.9806351 }, + { "lat": 40.7021922, "lon": -73.9807952 }, + { "lat": 40.7020507, "lon": -73.9809120 }, + { "lat": 40.7019991, "lon": -73.9809571 }, + { "lat": 40.7019622, "lon": -73.9809633 }, + { "lat": 40.7019061, "lon": -73.9809241 }, + { "lat": 40.7018837, "lon": -73.9809085 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 765984456, + "bounds": { + "minlat": 40.7028610, + "minlon": -73.9795561, + "maxlat": 40.7029886, + "maxlon": -73.9787766 + }, + "nodes": [ + 7154021059, + 7154021058 + ], + "geometry": [ + { "lat": 40.7029886, "lon": -73.9795561 }, + { "lat": 40.7028610, "lon": -73.9787766 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 765984457, + "bounds": { + "minlat": 40.7037295, + "minlon": -73.9795206, + "maxlat": 40.7038900, + "maxlon": -73.9785506 + }, + "nodes": [ + 7154021061, + 7154021060 + ], + "geometry": [ + { "lat": 40.7038900, "lon": -73.9795206 }, + { "lat": 40.7037295, "lon": -73.9785506 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 765984461, + "bounds": { + "minlat": 40.7043450, + "minlon": -73.9845830, + "maxlat": 40.7047841, + "maxlon": -73.9845675 + }, + "nodes": [ + 42479465, + 8262936216, + 3469169226, + 7154021068 + ], + "geometry": [ + { "lat": 40.7043450, "lon": -73.9845830 }, + { "lat": 40.7043929, "lon": -73.9845813 }, + { "lat": 40.7044159, "lon": -73.9845817 }, + { "lat": 40.7047841, "lon": -73.9845675 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "John", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 765996372, + "bounds": { + "minlat": 40.7036451, + "minlon": -73.9642800, + "maxlat": 40.7042010, + "maxlon": -73.9636233 + }, + "nodes": [ + 42475759, + 9776814806, + 12623189749, + 12623189750, + 9776829209, + 7154127347 + ], + "geometry": [ + { "lat": 40.7042010, "lon": -73.9642800 }, + { "lat": 40.7041417, "lon": -73.9642099 }, + { "lat": 40.7041084, "lon": -73.9641706 }, + { "lat": 40.7037240, "lon": -73.9637165 }, + { "lat": 40.7037150, "lon": -73.9637059 }, + { "lat": 40.7036451, "lon": -73.9636233 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 766002181, + "bounds": { + "minlat": 40.7059145, + "minlon": -73.9502895, + "maxlat": 40.7066949, + "maxlon": -73.9498269 + }, + "nodes": [ + 42496426, + 9752593922, + 7154190646, + 7154190644, + 9752593921, + 7154190641 + ], + "geometry": [ + { "lat": 40.7059145, "lon": -73.9502895 }, + { "lat": 40.7059256, "lon": -73.9501706 }, + { "lat": 40.7059507, "lon": -73.9499021 }, + { "lat": 40.7060267, "lon": -73.9498269 }, + { "lat": 40.7066115, "lon": -73.9499266 }, + { "lat": 40.7066949, "lon": -73.9499408 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 766004654, + "bounds": { + "minlat": 40.7036304, + "minlon": -73.9459420, + "maxlat": 40.7037573, + "maxlon": -73.9446442 + }, + "nodes": [ + 7154209450, + 9752593947, + 7154209449 + ], + "geometry": [ + { "lat": 40.7036304, "lon": -73.9459420 }, + { "lat": 40.7036416, "lon": -73.9458279 }, + { "lat": 40.7037573, "lon": -73.9446442 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 766150260, + "bounds": { + "minlat": 40.7975453, + "minlon": -74.0152663, + "maxlat": 40.7976537, + "maxlon": -74.0149575 + }, + "nodes": [ + 7155610008, + 7474498923, + 7155610011, + 7155610009, + 7155610012, + 7155610010 + ], + "geometry": [ + { "lat": 40.7976537, "lon": -74.0152663 }, + { "lat": 40.7976149, "lon": -74.0151329 }, + { "lat": 40.7976020, "lon": -74.0150886 }, + { "lat": 40.7975950, "lon": -74.0150681 }, + { "lat": 40.7975886, "lon": -74.0150515 }, + { "lat": 40.7975453, "lon": -74.0149575 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 766150261, + "bounds": { + "minlat": 40.7976537, + "minlon": -74.0152663, + "maxlat": 40.8019902, + "maxlon": -74.0129544 + }, + "nodes": [ + 7155610008, + 11252572400, + 7999314022, + 440243575, + 7474498765, + 440243571, + 7474498789, + 8219290840, + 7673337724, + 7155610013, + 440243572, + 440243551, + 103872895, + 7155610018, + 103872900, + 103872903, + 103872905, + 7474498829, + 7155610020, + 7155610022, + 4531503850, + 5560675494, + 7474498824, + 103867950, + 7474498909, + 8318955077, + 8318955062, + 7474498906, + 103872907, + 4205672690 + ], + "geometry": [ + { "lat": 40.7976537, "lon": -74.0152663 }, + { "lat": 40.7977129, "lon": -74.0152502 }, + { "lat": 40.7978837, "lon": -74.0152036 }, + { "lat": 40.7979410, "lon": -74.0151880 }, + { "lat": 40.7980275, "lon": -74.0151569 }, + { "lat": 40.7981720, "lon": -74.0151050 }, + { "lat": 40.7982011, "lon": -74.0150946 }, + { "lat": 40.7982286, "lon": -74.0150848 }, + { "lat": 40.7983632, "lon": -74.0150368 }, + { "lat": 40.7983951, "lon": -74.0150254 }, + { "lat": 40.7987410, "lon": -74.0149020 }, + { "lat": 40.7987730, "lon": -74.0148890 }, + { "lat": 40.7989706, "lon": -74.0148029 }, + { "lat": 40.7991883, "lon": -74.0147191 }, + { "lat": 40.7993020, "lon": -74.0146700 }, + { "lat": 40.7997810, "lon": -74.0144050 }, + { "lat": 40.7999590, "lon": -74.0142930 }, + { "lat": 40.8000406, "lon": -74.0142416 }, + { "lat": 40.8000962, "lon": -74.0142065 }, + { "lat": 40.8002566, "lon": -74.0141053 }, + { "lat": 40.8002857, "lon": -74.0140869 }, + { "lat": 40.8003167, "lon": -74.0140674 }, + { "lat": 40.8008801, "lon": -74.0137120 }, + { "lat": 40.8009420, "lon": -74.0136730 }, + { "lat": 40.8010065, "lon": -74.0136321 }, + { "lat": 40.8010379, "lon": -74.0136122 }, + { "lat": 40.8011582, "lon": -74.0135360 }, + { "lat": 40.8016083, "lon": -74.0132510 }, + { "lat": 40.8016730, "lon": -74.0132100 }, + { "lat": 40.8019902, "lon": -74.0129544 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 766150262, + "bounds": { + "minlat": 40.7985987, + "minlon": -74.0148029, + "maxlat": 40.7989706, + "maxlon": -74.0145811 + }, + "nodes": [ + 103872895, + 7474498913, + 7155610014, + 7155610015, + 7155610016, + 7155610017 + ], + "geometry": [ + { "lat": 40.7989706, "lon": -74.0148029 }, + { "lat": 40.7989178, "lon": -74.0146849 }, + { "lat": 40.7988776, "lon": -74.0145951 }, + { "lat": 40.7988648, "lon": -74.0145861 }, + { "lat": 40.7988527, "lon": -74.0145811 }, + { "lat": 40.7985987, "lon": -74.0147279 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 766150263, + "bounds": { + "minlat": 40.7990651, + "minlon": -74.0147191, + "maxlat": 40.7991883, + "maxlon": -74.0142788 + }, + "nodes": [ + 7155610018, + 7474498912, + 7155610019 + ], + "geometry": [ + { "lat": 40.7991883, "lon": -74.0147191 }, + { "lat": 40.7991497, "lon": -74.0145811 }, + { "lat": 40.7990651, "lon": -74.0142788 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 766150264, + "bounds": { + "minlat": 40.7999017, + "minlon": -74.0142065, + "maxlat": 40.8000962, + "maxlon": -74.0137216 + }, + "nodes": [ + 7155610020, + 7474498911, + 7155610021 + ], + "geometry": [ + { "lat": 40.8000962, "lon": -74.0142065 }, + { "lat": 40.8000485, "lon": -74.0140875 }, + { "lat": 40.7999017, "lon": -74.0137216 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 766150265, + "bounds": { + "minlat": 40.8000108, + "minlon": -74.0141053, + "maxlat": 40.8002566, + "maxlon": -74.0135459 + }, + "nodes": [ + 7155610022, + 7474498910, + 7155610023 + ], + "geometry": [ + { "lat": 40.8002566, "lon": -74.0141053 }, + { "lat": 40.8002060, "lon": -74.0139902 }, + { "lat": 40.8000108, "lon": -74.0135459 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 766188001, + "bounds": { + "minlat": 40.7879344, + "minlon": -74.0187473, + "maxlat": 40.7882167, + "maxlon": -74.0184844 + }, + "nodes": [ + 7156033568, + 7657469035, + 7156033569, + 7156033570 + ], + "geometry": [ + { "lat": 40.7879344, "lon": -74.0184844 }, + { "lat": 40.7879604, "lon": -74.0185337 }, + { "lat": 40.7880732, "lon": -74.0187473 }, + { "lat": 40.7882167, "lon": -74.0186116 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 766496231, + "bounds": { + "minlat": 40.7839203, + "minlon": -73.9505812, + "maxlat": 40.7840033, + "maxlon": -73.9505221 + }, + "nodes": [ + 7158854729, + 7158854734, + 7158854774 + ], + "geometry": [ + { "lat": 40.7840033, "lon": -73.9505221 }, + { "lat": 40.7839431, "lon": -73.9505649 }, + { "lat": 40.7839203, "lon": -73.9505812 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 766513402, + "bounds": { + "minlat": 40.8145901, + "minlon": -74.0035667, + "maxlat": 40.8146407, + "maxlon": -74.0034145 + }, + "nodes": [ + 7159043004, + 12456223735, + 7159043005 + ], + "geometry": [ + { "lat": 40.8146407, "lon": -74.0034145 }, + { "lat": 40.8146039, "lon": -74.0035253 }, + { "lat": 40.8145901, "lon": -74.0035667 } + ], + "tags": { + "access": "destination", + "highway": "service" + } +}, +{ + "type": "way", + "id": 766513403, + "bounds": { + "minlat": 40.8164613, + "minlon": -74.0078063, + "maxlat": 40.8168578, + "maxlon": -74.0066342 + }, + "nodes": [ + 7159043030, + 7159043032, + 7159043033, + 7159043034, + 7159043035, + 7159043036, + 7159043037, + 7159043038, + 7159048506 + ], + "geometry": [ + { "lat": 40.8168075, "lon": -74.0066342 }, + { "lat": 40.8168503, "lon": -74.0067606 }, + { "lat": 40.8168578, "lon": -74.0068587 }, + { "lat": 40.8168213, "lon": -74.0069336 }, + { "lat": 40.8165280, "lon": -74.0071432 }, + { "lat": 40.8164713, "lon": -74.0072197 }, + { "lat": 40.8164613, "lon": -74.0072846 }, + { "lat": 40.8164613, "lon": -74.0073312 }, + { "lat": 40.8165805, "lon": -74.0078063 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 766513404, + "bounds": { + "minlat": 40.8129365, + "minlon": -74.0053091, + "maxlat": 40.8146106, + "maxlon": -74.0038461 + }, + "nodes": [ + 7159043006, + 7159043040, + 7159043041, + 7159043042 + ], + "geometry": [ + { "lat": 40.8146106, "lon": -74.0038461 }, + { "lat": 40.8144516, "lon": -74.0040070 }, + { "lat": 40.8141891, "lon": -74.0043198 }, + { "lat": 40.8129365, "lon": -74.0053091 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 766513405, + "bounds": { + "minlat": 40.8128388, + "minlon": -74.0057580, + "maxlat": 40.8129365, + "maxlon": -74.0053091 + }, + "nodes": [ + 7159043042, + 7159043043, + 7159043044, + 7159043045 + ], + "geometry": [ + { "lat": 40.8129365, "lon": -74.0053091 }, + { "lat": 40.8128929, "lon": -74.0054529 }, + { "lat": 40.8128388, "lon": -74.0056431 }, + { "lat": 40.8128530, "lon": -74.0057580 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 766513406, + "bounds": { + "minlat": 40.8127347, + "minlon": -74.0057580, + "maxlat": 40.8129365, + "maxlon": -74.0053091 + }, + "nodes": [ + 7159043045, + 7159043046, + 7159043042 + ], + "geometry": [ + { "lat": 40.8128530, "lon": -74.0057580 }, + { "lat": 40.8127347, "lon": -74.0054453 }, + { "lat": 40.8129365, "lon": -74.0053091 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 766513407, + "bounds": { + "minlat": 40.8128530, + "minlon": -74.0078654, + "maxlat": 40.8139365, + "maxlon": -74.0057580 + }, + "nodes": [ + 7159043045, + 7159048507, + 7159043066, + 7159043047 + ], + "geometry": [ + { "lat": 40.8128530, "lon": -74.0057580 }, + { "lat": 40.8131327, "lon": -74.0063019 }, + { "lat": 40.8136100, "lon": -74.0072304 }, + { "lat": 40.8139365, "lon": -74.0078654 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 766513408, + "bounds": { + "minlat": 40.8139062, + "minlon": -74.0080437, + "maxlat": 40.8140562, + "maxlon": -74.0078460 + }, + "nodes": [ + 7159043057, + 7159043058, + 7159043059, + 7159043060, + 7159043061, + 7159043062, + 7159043063, + 7159043064, + 7159043065, + 7159043047, + 7159043048, + 7159043052, + 7159043053, + 7159043054, + 7159043055, + 7159043056, + 7159043049, + 7159043050, + 7159043051, + 7159043057 + ], + "geometry": [ + { "lat": 40.8140197, "lon": -74.0080304 }, + { "lat": 40.8139962, "lon": -74.0080426 }, + { "lat": 40.8139709, "lon": -74.0080437 }, + { "lat": 40.8139467, "lon": -74.0080336 }, + { "lat": 40.8139265, "lon": -74.0080135 }, + { "lat": 40.8139125, "lon": -74.0079857 }, + { "lat": 40.8139062, "lon": -74.0079533 }, + { "lat": 40.8139085, "lon": -74.0079200 }, + { "lat": 40.8139190, "lon": -74.0078895 }, + { "lat": 40.8139365, "lon": -74.0078654 }, + { "lat": 40.8139576, "lon": -74.0078510 }, + { "lat": 40.8139810, "lon": -74.0078460 }, + { "lat": 40.8140045, "lon": -74.0078510 }, + { "lat": 40.8140256, "lon": -74.0078653 }, + { "lat": 40.8140423, "lon": -74.0078877 }, + { "lat": 40.8140528, "lon": -74.0079158 }, + { "lat": 40.8140562, "lon": -74.0079468 }, + { "lat": 40.8140516, "lon": -74.0079797 }, + { "lat": 40.8140390, "lon": -74.0080087 }, + { "lat": 40.8140197, "lon": -74.0080304 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 766513409, + "bounds": { + "minlat": 40.8136100, + "minlon": -74.0090243, + "maxlat": 40.8151877, + "maxlon": -74.0070766 + }, + "nodes": [ + 7159043066, + 7159043067, + 7159043068, + 7159043069, + 7159043070, + 7159043071, + 7159043072, + 7159043073, + 7159043074, + 7159043075, + 7159043076, + 7159043077, + 7159043078, + 7159043079, + 7159043080, + 7159043081, + 7159043082, + 7159043083, + 7159048505, + 7159043084, + 7159048490 + ], + "geometry": [ + { "lat": 40.8136100, "lon": -74.0072304 }, + { "lat": 40.8137255, "lon": -74.0072461 }, + { "lat": 40.8142858, "lon": -74.0070766 }, + { "lat": 40.8144440, "lon": -74.0071011 }, + { "lat": 40.8146065, "lon": -74.0072254 }, + { "lat": 40.8147020, "lon": -74.0073836 }, + { "lat": 40.8147362, "lon": -74.0075023 }, + { "lat": 40.8147476, "lon": -74.0076850 }, + { "lat": 40.8147220, "lon": -74.0078639 }, + { "lat": 40.8146322, "lon": -74.0080598 }, + { "lat": 40.8143927, "lon": -74.0085232 }, + { "lat": 40.8143328, "lon": -74.0086513 }, + { "lat": 40.8143228, "lon": -74.0087718 }, + { "lat": 40.8143485, "lon": -74.0088830 }, + { "lat": 40.8144026, "lon": -74.0089659 }, + { "lat": 40.8144967, "lon": -74.0090243 }, + { "lat": 40.8146806, "lon": -74.0090035 }, + { "lat": 40.8148759, "lon": -74.0089131 }, + { "lat": 40.8149112, "lon": -74.0088822 }, + { "lat": 40.8149985, "lon": -74.0088058 }, + { "lat": 40.8151877, "lon": -74.0085469 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 766513410, + "bounds": { + "minlat": 40.8151637, + "minlon": -74.0085660, + "maxlat": 40.8152932, + "maxlon": -74.0083946 + }, + "nodes": [ + 7159048497, + 7159048498, + 7159048499, + 7159048500, + 7159048501, + 7159048502, + 7159048503, + 7159048490, + 7159048485, + 7159048486, + 7159048491, + 7159048492, + 7159048493, + 7159048494, + 7159048495, + 7159048496, + 7159048487, + 7159048488, + 7159048489, + 7159048497 + ], + "geometry": [ + { "lat": 40.8152154, "lon": -74.0083958 }, + { "lat": 40.8151959, "lon": -74.0084057 }, + { "lat": 40.8151797, "lon": -74.0084233 }, + { "lat": 40.8151686, "lon": -74.0084467 }, + { "lat": 40.8151637, "lon": -74.0084735 }, + { "lat": 40.8151655, "lon": -74.0085010 }, + { "lat": 40.8151738, "lon": -74.0085264 }, + { "lat": 40.8151877, "lon": -74.0085469 }, + { "lat": 40.8152070, "lon": -74.0085611 }, + { "lat": 40.8152286, "lon": -74.0085660 }, + { "lat": 40.8152503, "lon": -74.0085611 }, + { "lat": 40.8152695, "lon": -74.0085469 }, + { "lat": 40.8152841, "lon": -74.0085251 }, + { "lat": 40.8152922, "lon": -74.0084981 }, + { "lat": 40.8152932, "lon": -74.0084690 }, + { "lat": 40.8152867, "lon": -74.0084412 }, + { "lat": 40.8152736, "lon": -74.0084179 }, + { "lat": 40.8152564, "lon": -74.0084022 }, + { "lat": 40.8152363, "lon": -74.0083946 }, + { "lat": 40.8152154, "lon": -74.0083958 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 766513411, + "bounds": { + "minlat": 40.8149112, + "minlon": -74.0092133, + "maxlat": 40.8150703, + "maxlon": -74.0088822 + }, + "nodes": [ + 7159048504, + 7159048505 + ], + "geometry": [ + { "lat": 40.8150703, "lon": -74.0092133 }, + { "lat": 40.8149112, "lon": -74.0088822 } + ], + "tags": { + "access": "destination", + "highway": "service" + } +}, +{ + "type": "way", + "id": 766513412, + "bounds": { + "minlat": 40.8165805, + "minlon": -74.0081671, + "maxlat": 40.8166769, + "maxlon": -74.0078063 + }, + "nodes": [ + 7159048506, + 103223988 + ], + "geometry": [ + { "lat": 40.8165805, "lon": -74.0078063 }, + { "lat": 40.8166769, "lon": -74.0081671 } + ], + "tags": { + "access": "destination", + "highway": "service" + } +}, +{ + "type": "way", + "id": 766513413, + "bounds": { + "minlat": 40.8145898, + "minlon": -74.0066342, + "maxlat": 40.8171789, + "maxlon": -74.0035667 + }, + "nodes": [ + 7159043005, + 12456261940, + 7159043006, + 7159043007, + 7159043008, + 7159043009, + 7159043010, + 7159043011, + 7159043012, + 7159043013, + 7159043014, + 7159043015, + 7159043016, + 7159043017, + 7159043018, + 7159043019, + 7159043020, + 7159043021, + 7159043022, + 7159043023, + 7159043024, + 7159043025, + 7159043026, + 7159043027, + 7159043028, + 7159043029, + 7159043030, + 7159043031 + ], + "geometry": [ + { "lat": 40.8145901, "lon": -74.0035667 }, + { "lat": 40.8145898, "lon": -74.0036071 }, + { "lat": 40.8146106, "lon": -74.0038461 }, + { "lat": 40.8153332, "lon": -74.0042437 }, + { "lat": 40.8156152, "lon": -74.0043485 }, + { "lat": 40.8157726, "lon": -74.0043418 }, + { "lat": 40.8159526, "lon": -74.0043219 }, + { "lat": 40.8160257, "lon": -74.0043202 }, + { "lat": 40.8160496, "lon": -74.0043551 }, + { "lat": 40.8160559, "lon": -74.0044267 }, + { "lat": 40.8160307, "lon": -74.0044666 }, + { "lat": 40.8153710, "lon": -74.0050206 }, + { "lat": 40.8152463, "lon": -74.0051769 }, + { "lat": 40.8151356, "lon": -74.0053017 }, + { "lat": 40.8150437, "lon": -74.0053449 }, + { "lat": 40.8149454, "lon": -74.0053749 }, + { "lat": 40.8149077, "lon": -74.0054165 }, + { "lat": 40.8148976, "lon": -74.0054947 }, + { "lat": 40.8149039, "lon": -74.0055762 }, + { "lat": 40.8150348, "lon": -74.0056610 }, + { "lat": 40.8152287, "lon": -74.0058773 }, + { "lat": 40.8157374, "lon": -74.0064978 }, + { "lat": 40.8157814, "lon": -74.0065211 }, + { "lat": 40.8158469, "lon": -74.0065061 }, + { "lat": 40.8160382, "lon": -74.0064861 }, + { "lat": 40.8165016, "lon": -74.0065127 }, + { "lat": 40.8168075, "lon": -74.0066342 }, + { "lat": 40.8171789, "lon": -74.0065177 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 766513414, + "bounds": { + "minlat": 40.8131327, + "minlon": -74.0063019, + "maxlat": 40.8149039, + "maxlon": -74.0055762 + }, + "nodes": [ + 7159048507, + 7159048508, + 7159048509, + 7159048510, + 7159048511, + 7159048512, + 7159043022 + ], + "geometry": [ + { "lat": 40.8131327, "lon": -74.0063019 }, + { "lat": 40.8139683, "lon": -74.0060575 }, + { "lat": 40.8142962, "lon": -74.0058540 }, + { "lat": 40.8145058, "lon": -74.0058201 }, + { "lat": 40.8146412, "lon": -74.0058126 }, + { "lat": 40.8147937, "lon": -74.0057128 }, + { "lat": 40.8149039, "lon": -74.0055762 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 766800719, + "bounds": { + "minlat": 40.8079339, + "minlon": -73.9093908, + "maxlat": 40.8080637, + "maxlon": -73.9090088 + }, + "nodes": [ + 7161462751, + 7161462752, + 7161462753 + ], + "geometry": [ + { "lat": 40.8080637, "lon": -73.9093908 }, + { "lat": 40.8079632, "lon": -73.9091251 }, + { "lat": 40.8079339, "lon": -73.9090088 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 766827552, + "bounds": { + "minlat": 40.7617441, + "minlon": -73.9316617, + "maxlat": 40.7619258, + "maxlon": -73.9315195 + }, + "nodes": [ + 7161757926, + 7161757927, + 7161757928 + ], + "geometry": [ + { "lat": 40.7617441, "lon": -73.9316617 }, + { "lat": 40.7618281, "lon": -73.9315923 }, + { "lat": 40.7619258, "lon": -73.9315195 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 766864661, + "bounds": { + "minlat": 40.8373833, + "minlon": -73.9915772, + "maxlat": 40.8376031, + "maxlon": -73.9914176 + }, + "nodes": [ + 7162150107, + 7162150106, + 7162150105, + 7162150104, + 7162150103, + 7162150102 + ], + "geometry": [ + { "lat": 40.8373848, "lon": -73.9915772 }, + { "lat": 40.8373833, "lon": -73.9914392 }, + { "lat": 40.8373982, "lon": -73.9914176 }, + { "lat": 40.8375755, "lon": -73.9914176 }, + { "lat": 40.8375925, "lon": -73.9914410 }, + { "lat": 40.8376031, "lon": -73.9915658 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 766864662, + "bounds": { + "minlat": 40.8370343, + "minlon": -73.9915317, + "maxlat": 40.8373982, + "maxlon": -73.9913960 + }, + "nodes": [ + 7162150113, + 7162150112, + 7162150111, + 7162150110, + 7162150109, + 7162150108, + 7162150105 + ], + "geometry": [ + { "lat": 40.8370343, "lon": -73.9915317 }, + { "lat": 40.8370542, "lon": -73.9914129 }, + { "lat": 40.8370918, "lon": -73.9913960 }, + { "lat": 40.8371379, "lon": -73.9914007 }, + { "lat": 40.8372174, "lon": -73.9914148 }, + { "lat": 40.8372883, "lon": -73.9914176 }, + { "lat": 40.8373982, "lon": -73.9914176 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 766864663, + "bounds": { + "minlat": 40.8363271, + "minlon": -73.9913960, + "maxlat": 40.8370918, + "maxlon": -73.9910786 + }, + "nodes": [ + 7162150121, + 7162150120, + 7162150119, + 7162150118, + 7162150117, + 7162150116, + 7162150115, + 7162150114, + 7162150111 + ], + "geometry": [ + { "lat": 40.8363271, "lon": -73.9911683 }, + { "lat": 40.8364410, "lon": -73.9910786 }, + { "lat": 40.8364807, "lon": -73.9910786 }, + { "lat": 40.8365516, "lon": -73.9910899 }, + { "lat": 40.8368126, "lon": -73.9911630 }, + { "lat": 40.8369701, "lon": -73.9912549 }, + { "lat": 40.8370481, "lon": -73.9912999 }, + { "lat": 40.8370708, "lon": -73.9913542 }, + { "lat": 40.8370918, "lon": -73.9913960 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 766864664, + "bounds": { + "minlat": 40.8375755, + "minlon": -73.9915368, + "maxlat": 40.8378045, + "maxlon": -73.9912040 + }, + "nodes": [ + 7162150122, + 7162150123, + 7162150124, + 7162150125, + 7162150126, + 7162150127, + 7162150104 + ], + "geometry": [ + { "lat": 40.8378045, "lon": -73.9915368 }, + { "lat": 40.8377835, "lon": -73.9912934 }, + { "lat": 40.8377721, "lon": -73.9912374 }, + { "lat": 40.8377346, "lon": -73.9912083 }, + { "lat": 40.8376898, "lon": -73.9912040 }, + { "lat": 40.8376417, "lon": -73.9912481 }, + { "lat": 40.8375755, "lon": -73.9914176 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 767372817, + "bounds": { + "minlat": 40.7144648, + "minlon": -73.9824653, + "maxlat": 40.7147078, + "maxlon": -73.9816369 + }, + "nodes": [ + 42445630, + 7499263660, + 11040080974, + 11038072584, + 8270654723, + 4375208206 + ], + "geometry": [ + { "lat": 40.7144648, "lon": -73.9816369 }, + { "lat": 40.7144868, "lon": -73.9817122 }, + { "lat": 40.7145728, "lon": -73.9820051 }, + { "lat": 40.7146037, "lon": -73.9821104 }, + { "lat": 40.7146867, "lon": -73.9823936 }, + { "lat": 40.7147078, "lon": -73.9824653 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 767398932, + "bounds": { + "minlat": 40.7299155, + "minlon": -73.9889177, + "maxlat": 40.7300742, + "maxlon": -73.9875244 + }, + "nodes": [ + 42443298, + 4235734221, + 4235734225, + 3892040209, + 12179565620, + 12179565621, + 3892037907, + 12179565622, + 12179565623, + 3892039873, + 12179565624, + 3892037906 + ], + "geometry": [ + { "lat": 40.7299155, "lon": -73.9889177 }, + { "lat": 40.7299252, "lon": -73.9887974 }, + { "lat": 40.7299406, "lon": -73.9886035 }, + { "lat": 40.7299884, "lon": -73.9877332 }, + { "lat": 40.7299905, "lon": -73.9877071 }, + { "lat": 40.7299962, "lon": -73.9876763 }, + { "lat": 40.7300021, "lon": -73.9876505 }, + { "lat": 40.7300096, "lon": -73.9876275 }, + { "lat": 40.7300210, "lon": -73.9875972 }, + { "lat": 40.7300343, "lon": -73.9875735 }, + { "lat": 40.7300507, "lon": -73.9875513 }, + { "lat": 40.7300742, "lon": -73.9875244 } + ], + "tags": { + "attraction": "yes", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Stuyvesant Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7629278", + "wikipedia": "en:Stuyvesant Street" + } +}, +{ + "type": "way", + "id": 767398933, + "bounds": { + "minlat": 40.7301479, + "minlon": -73.9900586, + "maxlat": 40.7303951, + "maxlon": -73.9894820 + }, + "nodes": [ + 42449017, + 4235733235, + 42449014 + ], + "geometry": [ + { "lat": 40.7301479, "lon": -73.9894820 }, + { "lat": 40.7302050, "lon": -73.9896110 }, + { "lat": 40.7303951, "lon": -73.9900586 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 9th Street", + "name:ru": "Восточная 9-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 767398934, + "bounds": { + "minlat": 40.7298259, + "minlon": -73.9889177, + "maxlat": 40.7299155, + "maxlon": -73.9886967 + }, + "nodes": [ + 4235734223, + 12179565619, + 8309479249, + 42443298 + ], + "geometry": [ + { "lat": 40.7298259, "lon": -73.9886967 }, + { "lat": 40.7298405, "lon": -73.9887327 }, + { "lat": 40.7298740, "lon": -73.9888190 }, + { "lat": 40.7299155, "lon": -73.9889177 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 9th Street", + "name:ru": "Восточная 9-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 767432545, + "bounds": { + "minlat": 40.7418542, + "minlon": -73.9457448, + "maxlat": 40.7420803, + "maxlon": -73.9457247 + }, + "nodes": [ + 7165385855, + 8793041746, + 7165385856, + 7165385857 + ], + "geometry": [ + { "lat": 40.7418542, "lon": -73.9457439 }, + { "lat": 40.7419267, "lon": -73.9457319 }, + { "lat": 40.7419702, "lon": -73.9457247 }, + { "lat": 40.7420803, "lon": -73.9457448 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 767432546, + "bounds": { + "minlat": 40.7416478, + "minlon": -73.9447209, + "maxlat": 40.7424989, + "maxlon": -73.9446227 + }, + "nodes": [ + 42808177, + 8793041752, + 7165385859, + 7165385860, + 7165385861, + 7165385862 + ], + "geometry": [ + { "lat": 40.7416478, "lon": -73.9446821 }, + { "lat": 40.7417422, "lon": -73.9447209 }, + { "lat": 40.7417788, "lon": -73.9447134 }, + { "lat": 40.7420671, "lon": -73.9446516 }, + { "lat": 40.7423413, "lon": -73.9446227 }, + { "lat": 40.7424989, "lon": -73.9446564 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 767456098, + "bounds": { + "minlat": 40.7080292, + "minlon": -73.9270054, + "maxlat": 40.7086132, + "maxlon": -73.9264859 + }, + "nodes": [ + 2133350141, + 9755788655, + 7165638027, + 7165638023 + ], + "geometry": [ + { "lat": 40.7086132, "lon": -73.9270054 }, + { "lat": 40.7085532, "lon": -73.9269899 }, + { "lat": 40.7085386, "lon": -73.9269859 }, + { "lat": 40.7080292, "lon": -73.9264859 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 767456099, + "bounds": { + "minlat": 40.7078420, + "minlon": -73.9272120, + "maxlat": 40.7082955, + "maxlon": -73.9269193 + }, + "nodes": [ + 42487182, + 9755788646, + 7165638025, + 7165638026 + ], + "geometry": [ + { "lat": 40.7078420, "lon": -73.9272120 }, + { "lat": 40.7078533, "lon": -73.9271428 }, + { "lat": 40.7078896, "lon": -73.9269193 }, + { "lat": 40.7082955, "lon": -73.9270785 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 767528716, + "bounds": { + "minlat": 40.7675499, + "minlon": -73.9246273, + "maxlat": 40.7681892, + "maxlon": -73.9241506 + }, + "nodes": [ + 7166349486, + 7166349488, + 7166349494, + 7166349495, + 7166349489, + 7166349487 + ], + "geometry": [ + { "lat": 40.7681892, "lon": -73.9241506 }, + { "lat": 40.7681296, "lon": -73.9241966 }, + { "lat": 40.7678812, "lon": -73.9243895 }, + { "lat": 40.7678222, "lon": -73.9244194 }, + { "lat": 40.7676000, "lon": -73.9245884 }, + { "lat": 40.7675499, "lon": -73.9246273 } + ], + "tags": { + "access": "no", + "covered": "no", + "highway": "service", + "motor_vehicle": "designated", + "oneway": "yes", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 767683100, + "bounds": { + "minlat": 40.7517968, + "minlon": -73.9993807, + "maxlat": 40.7522065, + "maxlon": -73.9984053 + }, + "nodes": [ + 593973909, + 12152867565, + 10171326400, + 427840998 + ], + "geometry": [ + { "lat": 40.7517968, "lon": -73.9984053 }, + { "lat": 40.7521619, "lon": -73.9992729 }, + { "lat": 40.7521825, "lon": -73.9993207 }, + { "lat": 40.7522065, "lon": -73.9993807 } + ], + "tags": { + "alt_name": "West 31 Street", + "hgv": "local", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 31st Street", + "name:ru": "Западная 31-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 767683107, + "bounds": { + "minlat": 40.7502936, + "minlon": -73.9950984, + "maxlat": 40.7504000, + "maxlon": -73.9948451 + }, + "nodes": [ + 4443775465, + 7699762581, + 7167585630 + ], + "geometry": [ + { "lat": 40.7502936, "lon": -73.9948451 }, + { "lat": 40.7503535, "lon": -73.9949883 }, + { "lat": 40.7504000, "lon": -73.9950984 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 31st Street", + "name:ru": "Западная 31-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 767683108, + "bounds": { + "minlat": 40.7505139, + "minlon": -73.9977245, + "maxlat": 40.7515074, + "maxlon": -73.9953701 + }, + "nodes": [ + 7167585627, + 8262309042, + 4557517549 + ], + "geometry": [ + { "lat": 40.7505139, "lon": -73.9953701 }, + { "lat": 40.7514400, "lon": -73.9975618 }, + { "lat": 40.7515074, "lon": -73.9977245 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 31st Street", + "name:ru": "Западная 31-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 767683109, + "bounds": { + "minlat": 40.7504000, + "minlon": -73.9953701, + "maxlat": 40.7505139, + "maxlon": -73.9950984 + }, + "nodes": [ + 7167585630, + 2308965779, + 7167585627 + ], + "geometry": [ + { "lat": 40.7504000, "lon": -73.9950984 }, + { "lat": 40.7504677, "lon": -73.9952596 }, + { "lat": 40.7505139, "lon": -73.9953701 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 31st Street", + "name:ru": "Западная 31-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 767683110, + "bounds": { + "minlat": 40.7503170, + "minlon": -73.9954661, + "maxlat": 40.7505139, + "maxlon": -73.9953139 + }, + "nodes": [ + 7167585626, + 7167585628, + 8660001951, + 7167585627 + ], + "geometry": [ + { "lat": 40.7503170, "lon": -73.9953139 }, + { "lat": 40.7503793, "lon": -73.9954661 }, + { "lat": 40.7504557, "lon": -73.9954116 }, + { "lat": 40.7505139, "lon": -73.9953701 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 767683111, + "bounds": { + "minlat": 40.7502689, + "minlon": -73.9953139, + "maxlat": 40.7504000, + "maxlon": -73.9950984 + }, + "nodes": [ + 7167585630, + 8660001940, + 7167585629, + 7167585626 + ], + "geometry": [ + { "lat": 40.7504000, "lon": -73.9950984 }, + { "lat": 40.7503425, "lon": -73.9951396 }, + { "lat": 40.7502689, "lon": -73.9951924 }, + { "lat": 40.7503170, "lon": -73.9953139 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 767683112, + "bounds": { + "minlat": 40.7499526, + "minlon": -73.9950935, + "maxlat": 40.7502936, + "maxlon": -73.9948451 + }, + "nodes": [ + 9469803474, + 7699762582, + 4443775465 + ], + "geometry": [ + { "lat": 40.7499526, "lon": -73.9950935 }, + { "lat": 40.7502378, "lon": -73.9948868 }, + { "lat": 40.7502936, "lon": -73.9948451 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 767683113, + "bounds": { + "minlat": 40.7487267, + "minlon": -73.9952961, + "maxlat": 40.7496742, + "maxlon": -73.9930688 + }, + "nodes": [ + 4443775464, + 10170593079, + 13701232575, + 5481859789, + 9567470137 + ], + "geometry": [ + { "lat": 40.7496742, "lon": -73.9952961 }, + { "lat": 40.7496195, "lon": -73.9951675 }, + { "lat": 40.7489991, "lon": -73.9937093 }, + { "lat": 40.7488679, "lon": -73.9934008 }, + { "lat": 40.7487267, "lon": -73.9930688 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 767683114, + "bounds": { + "minlat": 40.7502936, + "minlon": -73.9948451, + "maxlat": 40.7508820, + "maxlon": -73.9944155 + }, + "nodes": [ + 4443775465, + 8660001944, + 10691086244, + 8262309024 + ], + "geometry": [ + { "lat": 40.7502936, "lon": -73.9948451 }, + { "lat": 40.7503677, "lon": -73.9947909 }, + { "lat": 40.7507920, "lon": -73.9944811 }, + { "lat": 40.7508820, "lon": -73.9944155 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 767729564, + "bounds": { + "minlat": 40.8091488, + "minlon": -73.9592110, + "maxlat": 40.8093443, + "maxlon": -73.9587510 + }, + "nodes": [ + 7168010780, + 7004347450, + 1504153626 + ], + "geometry": [ + { "lat": 40.8091488, "lon": -73.9587510 }, + { "lat": 40.8092899, "lon": -73.9590828 }, + { "lat": 40.8093443, "lon": -73.9592110 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "West 120th Street", + "name:ru": "Западная 120-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 767744333, + "bounds": { + "minlat": 40.8339241, + "minlon": -73.9086518, + "maxlat": 40.8351889, + "maxlon": -73.9079570 + }, + "nodes": [ + 42764738, + 10126901990, + 7192323939, + 13700803270, + 7168210396 + ], + "geometry": [ + { "lat": 40.8339241, "lon": -73.9086518 }, + { "lat": 40.8339938, "lon": -73.9086125 }, + { "lat": 40.8347752, "lon": -73.9081807 }, + { "lat": 40.8351838, "lon": -73.9079595 }, + { "lat": 40.8351889, "lon": -73.9079570 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "Webster Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 767990686, + "bounds": { + "minlat": 40.7527961, + "minlon": -74.0004526, + "maxlat": 40.7539186, + "maxlon": -73.9996344 + }, + "nodes": [ + 9492618960, + 9492618961, + 8261122522, + 42446668 + ], + "geometry": [ + { "lat": 40.7527961, "lon": -74.0004526 }, + { "lat": 40.7536514, "lon": -73.9998307 }, + { "lat": 40.7538668, "lon": -73.9996722 }, + { "lat": 40.7539186, "lon": -73.9996344 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 768005915, + "bounds": { + "minlat": 40.7101608, + "minlon": -73.9237833, + "maxlat": 40.7104666, + "maxlon": -73.9236408 + }, + "nodes": [ + 7170714065, + 7170714066, + 7170714067 + ], + "geometry": [ + { "lat": 40.7101608, "lon": -73.9236408 }, + { "lat": 40.7102370, "lon": -73.9236763 }, + { "lat": 40.7104666, "lon": -73.9237833 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 768042832, + "bounds": { + "minlat": 40.8622140, + "minlon": -73.9173439, + "maxlat": 40.8628290, + "maxlon": -73.9163730 + }, + "nodes": [ + 7171114289, + 9561557554, + 7171114295, + 7171114290, + 7171114291, + 7171114292, + 7171114293, + 7171114294, + 7171114296, + 9561557553, + 42440502 + ], + "geometry": [ + { "lat": 40.8628290, "lon": -73.9171007 }, + { "lat": 40.8627682, "lon": -73.9171397 }, + { "lat": 40.8627669, "lon": -73.9171406 }, + { "lat": 40.8624501, "lon": -73.9173439 }, + { "lat": 40.8622140, "lon": -73.9167465 }, + { "lat": 40.8622265, "lon": -73.9166430 }, + { "lat": 40.8622583, "lon": -73.9165829 }, + { "lat": 40.8623956, "lon": -73.9164659 }, + { "lat": 40.8624483, "lon": -73.9164275 }, + { "lat": 40.8624604, "lon": -73.9164187 }, + { "lat": 40.8625230, "lon": -73.9163730 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 768381525, + "bounds": { + "minlat": 40.7678493, + "minlon": -73.9814690, + "maxlat": 40.7681044, + "maxlon": -73.9813905 + }, + "nodes": [ + 1825841688, + 1825841739, + 1825841745, + 9170790597, + 9969200086, + 9170790598, + 9969200087, + 9170790599, + 9969200088, + 4347550071 + ], + "geometry": [ + { "lat": 40.7678493, "lon": -73.9814690 }, + { "lat": 40.7678827, "lon": -73.9814435 }, + { "lat": 40.7679159, "lon": -73.9814243 }, + { "lat": 40.7679599, "lon": -73.9814057 }, + { "lat": 40.7679823, "lon": -73.9813991 }, + { "lat": 40.7680056, "lon": -73.9813942 }, + { "lat": 40.7680349, "lon": -73.9813909 }, + { "lat": 40.7680644, "lon": -73.9813905 }, + { "lat": 40.7680826, "lon": -73.9813918 }, + { "lat": 40.7681044, "lon": -73.9813948 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "junction": "circular", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Circle", + "name:etymology:wikidata": "Q7322", + "name:ja": "コロンバスサークル", + "name:ko": "콜럼버스 서클", + "name:ru": "Коламбус-сёркл", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109968" + } +}, +{ + "type": "way", + "id": 768407616, + "bounds": { + "minlat": 40.7085310, + "minlon": -74.0058072, + "maxlat": 40.7088725, + "maxlon": -74.0053465 + }, + "nodes": [ + 11374285204, + 42454708 + ], + "geometry": [ + { "lat": 40.7088725, "lon": -74.0053465 }, + { "lat": 40.7085310, "lon": -74.0058072 } + ], + "tags": { + "access": "delivery", + "foot": "yes", + "highway": "service", + "maxspeed": "20 mph", + "name": "Ryders Alley", + "name:ko": "라이더즈 앨리", + "oneway": "yes", + "service": "alley", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 768413721, + "bounds": { + "minlat": 40.7854900, + "minlon": -74.0124051, + "maxlat": 40.7859880, + "maxlon": -74.0120760 + }, + "nodes": [ + 7174014492, + 7675116976, + 7174014493, + 7174014494, + 7174014495, + 7174014496, + 7174014497 + ], + "geometry": [ + { "lat": 40.7859880, "lon": -74.0120760 }, + { "lat": 40.7859559, "lon": -74.0120992 }, + { "lat": 40.7859355, "lon": -74.0121139 }, + { "lat": 40.7858365, "lon": -74.0121840 }, + { "lat": 40.7857620, "lon": -74.0122024 }, + { "lat": 40.7856917, "lon": -74.0122520 }, + { "lat": 40.7854900, "lon": -74.0124051 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 768413722, + "bounds": { + "minlat": 40.7870604, + "minlon": -74.0104184, + "maxlat": 40.7871717, + "maxlon": -74.0100518 + }, + "nodes": [ + 7174014498, + 7678131020, + 7174014499, + 7174014500, + 7174014501, + 7174014502 + ], + "geometry": [ + { "lat": 40.7871717, "lon": -74.0104184 }, + { "lat": 40.7871521, "lon": -74.0103766 }, + { "lat": 40.7871187, "lon": -74.0103054 }, + { "lat": 40.7870604, "lon": -74.0101849 }, + { "lat": 40.7870638, "lon": -74.0101262 }, + { "lat": 40.7871531, "lon": -74.0100518 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 768413723, + "bounds": { + "minlat": 40.7861054, + "minlon": -74.0104719, + "maxlat": 40.7864157, + "maxlon": -74.0102230 + }, + "nodes": [ + 7174014503, + 7678131021, + 7174014504, + 7174014505 + ], + "geometry": [ + { "lat": 40.7861054, "lon": -74.0104719 }, + { "lat": 40.7861672, "lon": -74.0104204 }, + { "lat": 40.7862032, "lon": -74.0103904 }, + { "lat": 40.7864157, "lon": -74.0102230 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 768413724, + "bounds": { + "minlat": 40.7862414, + "minlon": -74.0107616, + "maxlat": 40.7865389, + "maxlon": -74.0102230 + }, + "nodes": [ + 7174014505, + 7174014506, + 7174014507, + 7174014508, + 7174014509, + 7174014510, + 7174014511, + 7678131022, + 7174014512 + ], + "geometry": [ + { "lat": 40.7864157, "lon": -74.0102230 }, + { "lat": 40.7865247, "lon": -74.0104493 }, + { "lat": 40.7865389, "lon": -74.0105410 }, + { "lat": 40.7865134, "lon": -74.0105896 }, + { "lat": 40.7864659, "lon": -74.0106476 }, + { "lat": 40.7864001, "lon": -74.0106878 }, + { "lat": 40.7863406, "lon": -74.0106887 }, + { "lat": 40.7863056, "lon": -74.0107144 }, + { "lat": 40.7862414, "lon": -74.0107616 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 768413725, + "bounds": { + "minlat": 40.7873864, + "minlon": -74.0101668, + "maxlat": 40.7875569, + "maxlon": -74.0098286 + }, + "nodes": [ + 7174014513, + 7678131019, + 7174014514, + 7174014515, + 7174014516 + ], + "geometry": [ + { "lat": 40.7874857, "lon": -74.0101668 }, + { "lat": 40.7874651, "lon": -74.0101279 }, + { "lat": 40.7874308, "lon": -74.0100632 }, + { "lat": 40.7873864, "lon": -74.0099667 }, + { "lat": 40.7875569, "lon": -74.0098286 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 768463780, + "bounds": { + "minlat": 40.7774819, + "minlon": -74.0140986, + "maxlat": 40.7775381, + "maxlon": -74.0137618 + }, + "nodes": [ + 7174430725, + 7320650768, + 7174430726, + 7174430727, + 7174430728 + ], + "geometry": [ + { "lat": 40.7775193, "lon": -74.0137618 }, + { "lat": 40.7775324, "lon": -74.0138819 }, + { "lat": 40.7775381, "lon": -74.0139339 }, + { "lat": 40.7775165, "lon": -74.0140142 }, + { "lat": 40.7774819, "lon": -74.0140986 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 768463781, + "bounds": { + "minlat": 40.7775193, + "minlon": -74.0137618, + "maxlat": 40.7775966, + "maxlon": -74.0137340 + }, + "nodes": [ + 7174430725, + 4205818431 + ], + "geometry": [ + { "lat": 40.7775193, "lon": -74.0137618 }, + { "lat": 40.7775966, "lon": -74.0137340 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 768465073, + "bounds": { + "minlat": 40.7077632, + "minlon": -73.9673330, + "maxlat": 40.7078793, + "maxlon": -73.9670609 + }, + "nodes": [ + 7174439832, + 9785653131, + 7174439838, + 7174439833, + 7174439834, + 7174439835, + 7174439836, + 7174439837 + ], + "geometry": [ + { "lat": 40.7078793, "lon": -73.9673330 }, + { "lat": 40.7078716, "lon": -73.9672562 }, + { "lat": 40.7078686, "lon": -73.9672268 }, + { "lat": 40.7078630, "lon": -73.9671713 }, + { "lat": 40.7078523, "lon": -73.9670865 }, + { "lat": 40.7078369, "lon": -73.9670662 }, + { "lat": 40.7078221, "lon": -73.9670609 }, + { "lat": 40.7077632, "lon": -73.9670715 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 769192725, + "bounds": { + "minlat": 40.7719903, + "minlon": -73.9230416, + "maxlat": 40.7722371, + "maxlon": -73.9223702 + }, + "nodes": [ + 7180375843, + 7180375844, + 7180375845, + 7180375846, + 7180375847, + 7180375848, + 7180375849 + ], + "geometry": [ + { "lat": 40.7719903, "lon": -73.9223702 }, + { "lat": 40.7720208, "lon": -73.9224366 }, + { "lat": 40.7721801, "lon": -73.9227743 }, + { "lat": 40.7721894, "lon": -73.9228081 }, + { "lat": 40.7721876, "lon": -73.9228414 }, + { "lat": 40.7721624, "lon": -73.9228753 }, + { "lat": 40.7722371, "lon": -73.9230416 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 769208710, + "bounds": { + "minlat": 40.7063907, + "minlon": -73.9463911, + "maxlat": 40.7064571, + "maxlon": -73.9457065 + }, + "nodes": [ + 8403336512, + 9752593983, + 7180491017, + 7180491018 + ], + "geometry": [ + { "lat": 40.7063907, "lon": -73.9463911 }, + { "lat": 40.7064023, "lon": -73.9462832 }, + { "lat": 40.7064065, "lon": -73.9462358 }, + { "lat": 40.7064571, "lon": -73.9457065 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 769260868, + "bounds": { + "minlat": 40.8181600, + "minlon": -73.9231542, + "maxlat": 40.8183880, + "maxlon": -73.9224042 + }, + "nodes": [ + 7180965897, + 7180965899, + 9215520913, + 7180965898 + ], + "geometry": [ + { "lat": 40.8181600, "lon": -73.9224042 }, + { "lat": 40.8182074, "lon": -73.9225505 }, + { "lat": 40.8183067, "lon": -73.9228486 }, + { "lat": 40.8183880, "lon": -73.9231542 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 769562978, + "bounds": { + "minlat": 40.8810980, + "minlon": -73.9848610, + "maxlat": 40.8818744, + "maxlon": -73.9841496 + }, + "nodes": [ + 7183509535, + 7183509536, + 7183509537, + 7183509538, + 7183509539, + 7183509540, + 7183509541, + 7183509542, + 12022105701, + 12022105699, + 7183509543 + ], + "geometry": [ + { "lat": 40.8810980, "lon": -73.9841496 }, + { "lat": 40.8811598, "lon": -73.9842481 }, + { "lat": 40.8813054, "lon": -73.9843189 }, + { "lat": 40.8814173, "lon": -73.9844271 }, + { "lat": 40.8815611, "lon": -73.9847602 }, + { "lat": 40.8815922, "lon": -73.9848610 }, + { "lat": 40.8817249, "lon": -73.9847806 }, + { "lat": 40.8816282, "lon": -73.9844625 }, + { "lat": 40.8818109, "lon": -73.9843453 }, + { "lat": 40.8818271, "lon": -73.9843349 }, + { "lat": 40.8818744, "lon": -73.9843090 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 769562979, + "bounds": { + "minlat": 40.8815922, + "minlon": -73.9858532, + "maxlat": 40.8823806, + "maxlon": -73.9848610 + }, + "nodes": [ + 3631828078, + 12022105704, + 12022105705, + 7183509544, + 7183509545, + 7183509546, + 7183509547, + 7183509548, + 7183509549, + 7183509550, + 7183509551, + 7183509540 + ], + "geometry": [ + { "lat": 40.8823073, "lon": -73.9851017 }, + { "lat": 40.8822414, "lon": -73.9851315 }, + { "lat": 40.8822131, "lon": -73.9851557 }, + { "lat": 40.8821695, "lon": -73.9851932 }, + { "lat": 40.8823806, "lon": -73.9855676 }, + { "lat": 40.8820943, "lon": -73.9858532 }, + { "lat": 40.8820206, "lon": -73.9857926 }, + { "lat": 40.8818676, "lon": -73.9855156 }, + { "lat": 40.8816721, "lon": -73.9851575 }, + { "lat": 40.8816476, "lon": -73.9851044 }, + { "lat": 40.8816533, "lon": -73.9850157 }, + { "lat": 40.8815922, "lon": -73.9848610 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 769564123, + "bounds": { + "minlat": 40.7281684, + "minlon": -73.9609716, + "maxlat": 40.7292633, + "maxlon": -73.9605237 + }, + "nodes": [ + 7183519620, + 7183519621, + 7183519622, + 7183519623, + 7183519624, + 7183519625, + 7183519626, + 7183519627, + 5053904474, + 9478398300 + ], + "geometry": [ + { "lat": 40.7281684, "lon": -73.9605237 }, + { "lat": 40.7283183, "lon": -73.9605402 }, + { "lat": 40.7283654, "lon": -73.9605849 }, + { "lat": 40.7283802, "lon": -73.9606267 }, + { "lat": 40.7284037, "lon": -73.9606830 }, + { "lat": 40.7284472, "lon": -73.9607316 }, + { "lat": 40.7285105, "lon": -73.9607598 }, + { "lat": 40.7287737, "lon": -73.9608914 }, + { "lat": 40.7289791, "lon": -73.9609250 }, + { "lat": 40.7292633, "lon": -73.9609716 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 769632718, + "bounds": { + "minlat": 40.8185045, + "minlon": -73.9572409, + "maxlat": 40.8190919, + "maxlon": -73.9566934 + }, + "nodes": [ + 7184120291, + 10129073615, + 7184120293, + 13703551244, + 13703551243, + 13703551242, + 13703551241, + 13703551239, + 13703551240 + ], + "geometry": [ + { "lat": 40.8190919, "lon": -73.9566934 }, + { "lat": 40.8190287, "lon": -73.9567388 }, + { "lat": 40.8187711, "lon": -73.9569238 }, + { "lat": 40.8186410, "lon": -73.9570226 }, + { "lat": 40.8186313, "lon": -73.9570393 }, + { "lat": 40.8185927, "lon": -73.9571698 }, + { "lat": 40.8185841, "lon": -73.9571822 }, + { "lat": 40.8185524, "lon": -73.9572056 }, + { "lat": 40.8185045, "lon": -73.9572409 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 769815509, + "bounds": { + "minlat": 40.7626114, + "minlon": -73.9336043, + "maxlat": 40.7629273, + "maxlon": -73.9329278 + }, + "nodes": [ + 7185923464, + 7788535905, + 7788535906 + ], + "geometry": [ + { "lat": 40.7626114, "lon": -73.9329278 }, + { "lat": 40.7627722, "lon": -73.9332721 }, + { "lat": 40.7629273, "lon": -73.9336043 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 769896797, + "bounds": { + "minlat": 40.8468246, + "minlon": -73.9248967, + "maxlat": 40.8468740, + "maxlon": -73.9247335 + }, + "nodes": [ + 60919657, + 13068069584, + 7187321359, + 7187321358 + ], + "geometry": [ + { "lat": 40.8468740, "lon": -73.9248967 }, + { "lat": 40.8468461, "lon": -73.9248045 }, + { "lat": 40.8468351, "lon": -73.9247682 }, + { "lat": 40.8468246, "lon": -73.9247335 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 769896798, + "bounds": { + "minlat": 40.8467884, + "minlon": -73.9247335, + "maxlat": 40.8468246, + "maxlon": -73.9246042 + }, + "nodes": [ + 7187321358, + 7187321355 + ], + "geometry": [ + { "lat": 40.8468246, "lon": -73.9247335 }, + { "lat": 40.8467884, "lon": -73.9246042 } + ], + "tags": { + "access": "private", + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 769896799, + "bounds": { + "minlat": 40.8467490, + "minlon": -73.9246042, + "maxlat": 40.8472280, + "maxlon": -73.9241637 + }, + "nodes": [ + 7187321355, + 7187321356, + 7187321357 + ], + "geometry": [ + { "lat": 40.8467884, "lon": -73.9246042 }, + { "lat": 40.8467490, "lon": -73.9244226 }, + { "lat": 40.8472280, "lon": -73.9241637 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 770098910, + "bounds": { + "minlat": 40.8755619, + "minlon": -73.9080852, + "maxlat": 40.8757704, + "maxlon": -73.9077554 + }, + "nodes": [ + 7189214950, + 10128431584, + 7189214951, + 7189214952 + ], + "geometry": [ + { "lat": 40.8757704, "lon": -73.9080852 }, + { "lat": 40.8757122, "lon": -73.9079912 }, + { "lat": 40.8756695, "lon": -73.9079224 }, + { "lat": 40.8755619, "lon": -73.9077554 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 770105180, + "bounds": { + "minlat": 40.7380947, + "minlon": -73.9548070, + "maxlat": 40.7385090, + "maxlon": -73.9545199 + }, + "nodes": [ + 7189258821, + 8097082930, + 2473602912, + 7189258822, + 7189258823 + ], + "geometry": [ + { "lat": 40.7380947, "lon": -73.9545199 }, + { "lat": 40.7381528, "lon": -73.9545322 }, + { "lat": 40.7381747, "lon": -73.9545369 }, + { "lat": 40.7385090, "lon": -73.9546079 }, + { "lat": 40.7384810, "lon": -73.9548070 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 770115118, + "bounds": { + "minlat": 40.7621236, + "minlon": -73.9324753, + "maxlat": 40.7623181, + "maxlon": -73.9323187 + }, + "nodes": [ + 7189336917, + 7189336920, + 7189336921 + ], + "geometry": [ + { "lat": 40.7623181, "lon": -73.9323187 }, + { "lat": 40.7622093, "lon": -73.9324060 }, + { "lat": 40.7621236, "lon": -73.9324753 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 770218224, + "bounds": { + "minlat": 40.8282300, + "minlon": -73.9878666, + "maxlat": 40.8284892, + "maxlon": -73.9876917 + }, + "nodes": [ + 7189854491, + 7189854492 + ], + "geometry": [ + { "lat": 40.8282300, "lon": -73.9878666 }, + { "lat": 40.8284892, "lon": -73.9876917 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 770383956, + "bounds": { + "minlat": 40.7059280, + "minlon": -73.9407713, + "maxlat": 40.7061663, + "maxlon": -73.9400278 + }, + "nodes": [ + 7191266548, + 7191266553, + 7191266558, + 7191266549, + 7191266550, + 7191266559, + 7191266552, + 7191266551 + ], + "geometry": [ + { "lat": 40.7061663, "lon": -73.9400547 }, + { "lat": 40.7061171, "lon": -73.9400466 }, + { "lat": 40.7060832, "lon": -73.9400410 }, + { "lat": 40.7059926, "lon": -73.9400278 }, + { "lat": 40.7059280, "lon": -73.9407434 }, + { "lat": 40.7060087, "lon": -73.9407567 }, + { "lat": 40.7060466, "lon": -73.9407629 }, + { "lat": 40.7060978, "lon": -73.9407713 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 770524298, + "bounds": { + "minlat": 40.7153045, + "minlon": -74.0146236, + "maxlat": 40.7154525, + "maxlon": -74.0136849 + }, + "nodes": [ + 246866810, + 11292548512, + 11439633457, + 11439633460, + 11439633461, + 3588508439 + ], + "geometry": [ + { "lat": 40.7153045, "lon": -74.0136849 }, + { "lat": 40.7153175, "lon": -74.0137651 }, + { "lat": 40.7154399, "lon": -74.0145504 }, + { "lat": 40.7154462, "lon": -74.0145877 }, + { "lat": 40.7154507, "lon": -74.0146135 }, + { "lat": 40.7154525, "lon": -74.0146236 } + ], + "tags": { + "highway": "residential", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through;right", + "turn:lanes:forward": "through|through" + } +}, +{ + "type": "way", + "id": 770524299, + "bounds": { + "minlat": 40.7136173, + "minlon": -74.0134218, + "maxlat": 40.7144270, + "maxlon": -74.0116170 + }, + "nodes": [ + 272194254, + 8279851499, + 8279851504, + 42459493, + 8279851506, + 10282972382, + 10282972381, + 4143838197, + 4599130008, + 5815248551, + 42453398 + ], + "geometry": [ + { "lat": 40.7136173, "lon": -74.0116170 }, + { "lat": 40.7137219, "lon": -74.0118441 }, + { "lat": 40.7138921, "lon": -74.0122234 }, + { "lat": 40.7139387, "lon": -74.0123263 }, + { "lat": 40.7139856, "lon": -74.0124254 }, + { "lat": 40.7140236, "lon": -74.0125127 }, + { "lat": 40.7141309, "lon": -74.0127801 }, + { "lat": 40.7141615, "lon": -74.0128512 }, + { "lat": 40.7143294, "lon": -74.0132167 }, + { "lat": 40.7143564, "lon": -74.0132752 }, + { "lat": 40.7144270, "lon": -74.0134218 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Barclay Street", + "name:etymology:wikidata": "Q94355342", + "name:ko": "바클레이 스트리트", + "name:ru": "Баркли-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14622883" + } +}, +{ + "type": "way", + "id": 770545627, + "bounds": { + "minlat": 40.7381614, + "minlon": -73.9543682, + "maxlat": 40.7388943, + "maxlon": -73.9537921 + }, + "nodes": [ + 7192302742, + 8097025095, + 7192302743, + 7192302744, + 7192302745, + 7192302746 + ], + "geometry": [ + { "lat": 40.7381614, "lon": -73.9537921 }, + { "lat": 40.7382242, "lon": -73.9537987 }, + { "lat": 40.7382920, "lon": -73.9538059 }, + { "lat": 40.7388651, "lon": -73.9539091 }, + { "lat": 40.7388943, "lon": -73.9539322 }, + { "lat": 40.7388791, "lon": -73.9543682 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 770552818, + "bounds": { + "minlat": 40.7824533, + "minlon": -74.0183084, + "maxlat": 40.7826326, + "maxlon": -74.0179194 + }, + "nodes": [ + 7192358959, + 7613768198, + 7192358960, + 7192358961 + ], + "geometry": [ + { "lat": 40.7826326, "lon": -74.0183084 }, + { "lat": 40.7826082, "lon": -74.0182556 }, + { "lat": 40.7825920, "lon": -74.0182203 }, + { "lat": 40.7824533, "lon": -74.0179194 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 770562657, + "bounds": { + "minlat": 40.7574920, + "minlon": -73.9435256, + "maxlat": 40.7576417, + "maxlon": -73.9432748 + }, + "nodes": [ + 7192439083, + 8334074891, + 7192439084, + 7192452885 + ], + "geometry": [ + { "lat": 40.7576417, "lon": -73.9435256 }, + { "lat": 40.7576056, "lon": -73.9434651 }, + { "lat": 40.7575894, "lon": -73.9434379 }, + { "lat": 40.7574920, "lon": -73.9432748 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 770594596, + "bounds": { + "minlat": 40.8062510, + "minlon": -73.9191601, + "maxlat": 40.8064427, + "maxlon": -73.9186762 + }, + "nodes": [ + 7192687948, + 7192687951, + 7192687949, + 7192687950 + ], + "geometry": [ + { "lat": 40.8064427, "lon": -73.9186762 }, + { "lat": 40.8063282, "lon": -73.9187583 }, + { "lat": 40.8062510, "lon": -73.9188141 }, + { "lat": 40.8063911, "lon": -73.9191601 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 770920070, + "bounds": { + "minlat": 40.7058934, + "minlon": -73.9454604, + "maxlat": 40.7059596, + "maxlon": -73.9447277 + }, + "nodes": [ + 6212365419, + 9755354470, + 6212365420 + ], + "geometry": [ + { "lat": 40.7058934, "lon": -73.9454604 }, + { "lat": 40.7059485, "lon": -73.9448483 }, + { "lat": 40.7059596, "lon": -73.9447277 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 771185247, + "bounds": { + "minlat": 40.7082859, + "minlon": -73.9669521, + "maxlat": 40.7086463, + "maxlon": -73.9666661 + }, + "nodes": [ + 7199113279, + 9785653100, + 7199113282, + 7199134688, + 7199113283, + 7199113284, + 9785653099, + 7199134686 + ], + "geometry": [ + { "lat": 40.7083108, "lon": -73.9669521 }, + { "lat": 40.7083745, "lon": -73.9669397 }, + { "lat": 40.7086405, "lon": -73.9668881 }, + { "lat": 40.7086463, "lon": -73.9668778 }, + { "lat": 40.7086236, "lon": -73.9666737 }, + { "lat": 40.7086158, "lon": -73.9666661 }, + { "lat": 40.7083479, "lon": -73.9667181 }, + { "lat": 40.7082859, "lon": -73.9667301 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 771186609, + "bounds": { + "minlat": 40.8505763, + "minlon": -73.9670058, + "maxlat": 40.8508026, + "maxlon": -73.9668772 + }, + "nodes": [ + 7111637699, + 7199108150, + 7199108151 + ], + "geometry": [ + { "lat": 40.8508026, "lon": -73.9668772 }, + { "lat": 40.8507202, "lon": -73.9669289 }, + { "lat": 40.8505763, "lon": -73.9670058 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 771219031, + "bounds": { + "minlat": 40.8809015, + "minlon": -73.9889311, + "maxlat": 40.8811844, + "maxlon": -73.9883484 + }, + "nodes": [ + 7199429708, + 12022129432, + 7199429709 + ], + "geometry": [ + { "lat": 40.8811844, "lon": -73.9889311 }, + { "lat": 40.8809368, "lon": -73.9884212 }, + { "lat": 40.8809015, "lon": -73.9883484 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 771448380, + "bounds": { + "minlat": 40.8335883, + "minlon": -73.9153487, + "maxlat": 40.8337033, + "maxlon": -73.9149802 + }, + "nodes": [ + 2408379348, + 13031082323, + 42755581 + ], + "geometry": [ + { "lat": 40.8337033, "lon": -73.9153487 }, + { "lat": 40.8336147, "lon": -73.9150639 }, + { "lat": 40.8335883, "lon": -73.9149802 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "highway": "tertiary", + "name": "East 167th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 771645128, + "bounds": { + "minlat": 40.7295747, + "minlon": -73.9422914, + "maxlat": 40.7296309, + "maxlon": -73.9416701 + }, + "nodes": [ + 7203597812, + 9788947424, + 7203597813, + 7203597814 + ], + "geometry": [ + { "lat": 40.7295747, "lon": -73.9422914 }, + { "lat": 40.7295827, "lon": -73.9422032 }, + { "lat": 40.7295880, "lon": -73.9421446 }, + { "lat": 40.7296309, "lon": -73.9416701 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 771759765, + "bounds": { + "minlat": 40.7508474, + "minlon": -73.9786572, + "maxlat": 40.7508814, + "maxlon": -73.9785793 + }, + "nodes": [ + 3639382767, + 561042199 + ], + "geometry": [ + { "lat": 40.7508814, "lon": -73.9786572 }, + { "lat": 40.7508474, "lon": -73.9785793 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 40th Street", + "name:ru": "Восточная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 771759766, + "bounds": { + "minlat": 40.7508257, + "minlon": -73.9787540, + "maxlat": 40.7508814, + "maxlon": -73.9786572 + }, + "nodes": [ + 3639382767, + 3639382768 + ], + "geometry": [ + { "lat": 40.7508814, "lon": -73.9786572 }, + { "lat": 40.7508257, "lon": -73.9787540 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q7137641", + "wikipedia": "en:Park Avenue Viaduct" + } +}, +{ + "type": "way", + "id": 771759767, + "bounds": { + "minlat": 40.7508814, + "minlon": -73.9787069, + "maxlat": 40.7509032, + "maxlon": -73.9786572 + }, + "nodes": [ + 561042198, + 3639382767 + ], + "geometry": [ + { "lat": 40.7509032, "lon": -73.9787069 }, + { "lat": 40.7508814, "lon": -73.9786572 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 40th Street", + "name:ru": "Восточная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 771759768, + "bounds": { + "minlat": 40.7508257, + "minlon": -73.9787540, + "maxlat": 40.7509032, + "maxlon": -73.9787069 + }, + "nodes": [ + 561042198, + 3639382768 + ], + "geometry": [ + { "lat": 40.7509032, "lon": -73.9787069 }, + { "lat": 40.7508257, "lon": -73.9787540 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 771759769, + "bounds": { + "minlat": 40.7502720, + "minlon": -73.9791501, + "maxlat": 40.7508257, + "maxlon": -73.9787540 + }, + "nodes": [ + 3639382768, + 12181374953, + 8122411171, + 561042195 + ], + "geometry": [ + { "lat": 40.7508257, "lon": -73.9787540 }, + { "lat": 40.7503691, "lon": -73.9790830 }, + { "lat": 40.7503266, "lon": -73.9791122 }, + { "lat": 40.7502720, "lon": -73.9791501 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 771791131, + "bounds": { + "minlat": 40.8307459, + "minlon": -73.9711444, + "maxlat": 40.8308228, + "maxlon": -73.9708948 + }, + "nodes": [ + 5315234555, + 5362451469 + ], + "geometry": [ + { "lat": 40.8307459, "lon": -73.9708948 }, + { "lat": 40.8308228, "lon": -73.9711444 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 771801658, + "bounds": { + "minlat": 40.8311439, + "minlon": -73.9993059, + "maxlat": 40.8321454, + "maxlon": -73.9963969 + }, + "nodes": [ + 7205168896, + 7205168897, + 7205168898, + 7205168899, + 7205168900, + 7205168901, + 7205168902, + 7205168903, + 7205168904, + 7205168905, + 7205168906, + 7205168907, + 7205168908, + 7205168909, + 7205168910, + 7205168911, + 7205168912, + 7205168913, + 7205168914, + 7205168915, + 7217546451, + 7217546452, + 7217546453, + 7217546454 + ], + "geometry": [ + { "lat": 40.8316027, "lon": -73.9963969 }, + { "lat": 40.8315428, "lon": -73.9965643 }, + { "lat": 40.8314165, "lon": -73.9967279 }, + { "lat": 40.8313040, "lon": -73.9969428 }, + { "lat": 40.8311902, "lon": -73.9972866 }, + { "lat": 40.8311514, "lon": -73.9974320 }, + { "lat": 40.8311439, "lon": -73.9975775 }, + { "lat": 40.8311777, "lon": -73.9977080 }, + { "lat": 40.8313090, "lon": -73.9977841 }, + { "lat": 40.8314572, "lon": -73.9977593 }, + { "lat": 40.8315520, "lon": -73.9976503 }, + { "lat": 40.8316200, "lon": -73.9975605 }, + { "lat": 40.8317086, "lon": -73.9974815 }, + { "lat": 40.8318343, "lon": -73.9974352 }, + { "lat": 40.8319888, "lon": -73.9975006 }, + { "lat": 40.8320815, "lon": -73.9976068 }, + { "lat": 40.8321434, "lon": -73.9978328 }, + { "lat": 40.8321454, "lon": -73.9979771 }, + { "lat": 40.8321083, "lon": -73.9981405 }, + { "lat": 40.8319497, "lon": -73.9983529 }, + { "lat": 40.8319064, "lon": -73.9984727 }, + { "lat": 40.8319007, "lon": -73.9986509 }, + { "lat": 40.8319502, "lon": -73.9989481 }, + { "lat": 40.8320909, "lon": -73.9993059 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 771808225, + "bounds": { + "minlat": 40.8313974, + "minlon": -73.9761650, + "maxlat": 40.8316811, + "maxlon": -73.9754558 + }, + "nodes": [ + 7205234186, + 11366283351, + 7205234187, + 7205234188, + 7205234189, + 7205234190, + 7205234191 + ], + "geometry": [ + { "lat": 40.8316811, "lon": -73.9761650 }, + { "lat": 40.8316450, "lon": -73.9760994 }, + { "lat": 40.8314497, "lon": -73.9757445 }, + { "lat": 40.8314112, "lon": -73.9756754 }, + { "lat": 40.8313974, "lon": -73.9755981 }, + { "lat": 40.8314051, "lon": -73.9755229 }, + { "lat": 40.8314466, "lon": -73.9754558 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 771808226, + "bounds": { + "minlat": 40.8310178, + "minlon": -73.9762790, + "maxlat": 40.8314610, + "maxlon": -73.9754264 + }, + "nodes": [ + 103125363, + 7205234192, + 7205234193, + 7292367705, + 7292367706, + 7292367701, + 7292367707, + 7292367708, + 7292367702, + 7292367709, + 7292367703, + 7292367710, + 7292367704, + 7205234193 + ], + "geometry": [ + { "lat": 40.8314610, "lon": -73.9762790 }, + { "lat": 40.8312343, "lon": -73.9758351 }, + { "lat": 40.8311186, "lon": -73.9755802 }, + { "lat": 40.8311291, "lon": -73.9755332 }, + { "lat": 40.8311320, "lon": -73.9754830 }, + { "lat": 40.8311143, "lon": -73.9754444 }, + { "lat": 40.8310875, "lon": -73.9754264 }, + { "lat": 40.8310512, "lon": -73.9754268 }, + { "lat": 40.8310283, "lon": -73.9754460 }, + { "lat": 40.8310178, "lon": -73.9754975 }, + { "lat": 40.8310271, "lon": -73.9755376 }, + { "lat": 40.8310514, "lon": -73.9755725 }, + { "lat": 40.8310855, "lon": -73.9755861 }, + { "lat": 40.8311186, "lon": -73.9755802 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 771818490, + "bounds": { + "minlat": 40.8256393, + "minlon": -74.0117994, + "maxlat": 40.8262120, + "maxlon": -74.0110620 + }, + "nodes": [ + 5758186222, + 7205293552, + 7205293553, + 7205293554, + 7205293555 + ], + "geometry": [ + { "lat": 40.8262120, "lon": -74.0110620 }, + { "lat": 40.8261649, "lon": -74.0111293 }, + { "lat": 40.8261989, "lon": -74.0117609 }, + { "lat": 40.8256506, "lon": -74.0117994 }, + { "lat": 40.8256393, "lon": -74.0115856 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 771939270, + "bounds": { + "minlat": 40.7471827, + "minlon": -73.9710392, + "maxlat": 40.7475533, + "maxlon": -73.9707856 + }, + "nodes": [ + 12154055788, + 3569749100, + 42453011 + ], + "geometry": [ + { "lat": 40.7471827, "lon": -73.9710392 }, + { "lat": 40.7474838, "lon": -73.9708343 }, + { "lat": 40.7475533, "lon": -73.9707856 } + ], + "tags": { + "alt_name:ko": "1번가", + "bicycle:lanes": "designated|no|designated|no|no|yes|no", + "bus:lanes": "no|yes|no|yes|yes|yes|designated", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "no|yes|no|yes|yes|yes|no", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 771968111, + "bounds": { + "minlat": 40.7412226, + "minlon": -73.9760545, + "maxlat": 40.7415116, + "maxlon": -73.9758475 + }, + "nodes": [ + 7206738484, + 7736945406, + 7206766285 + ], + "geometry": [ + { "lat": 40.7415116, "lon": -73.9758475 }, + { "lat": 40.7414244, "lon": -73.9759147 }, + { "lat": 40.7412226, "lon": -73.9760545 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 771968276, + "bounds": { + "minlat": 40.7409059, + "minlon": -73.9764016, + "maxlat": 40.7411386, + "maxlon": -73.9762283 + }, + "nodes": [ + 7206761675, + 8119192803, + 7206761676 + ], + "geometry": [ + { "lat": 40.7409059, "lon": -73.9764016 }, + { "lat": 40.7409671, "lon": -73.9763563 }, + { "lat": 40.7411386, "lon": -73.9762283 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 771999882, + "bounds": { + "minlat": 40.7461288, + "minlon": -73.9790384, + "maxlat": 40.7462336, + "maxlon": -73.9789580 + }, + "nodes": [ + 3934635613, + 10169157379, + 3934635614 + ], + "geometry": [ + { "lat": 40.7461288, "lon": -73.9790384 }, + { "lat": 40.7461999, "lon": -73.9789838 }, + { "lat": 40.7462336, "lon": -73.9789580 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 772084673, + "bounds": { + "minlat": 40.7978241, + "minlon": -74.0105019, + "maxlat": 40.7982412, + "maxlon": -74.0102511 + }, + "nodes": [ + 7207762885, + 7207762886, + 7207762887, + 7653964067, + 7207762888 + ], + "geometry": [ + { "lat": 40.7978241, "lon": -74.0103775 }, + { "lat": 40.7978801, "lon": -74.0104957 }, + { "lat": 40.7978989, "lon": -74.0105019 }, + { "lat": 40.7981945, "lon": -74.0102853 }, + { "lat": 40.7982412, "lon": -74.0102511 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 772084674, + "bounds": { + "minlat": 40.7975380, + "minlon": -74.0100233, + "maxlat": 40.7976317, + "maxlon": -74.0098020 + }, + "nodes": [ + 7207762889, + 7653964066, + 7207762890 + ], + "geometry": [ + { "lat": 40.7975380, "lon": -74.0098020 }, + { "lat": 40.7975858, "lon": -74.0099150 }, + { "lat": 40.7976317, "lon": -74.0100233 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 772095589, + "bounds": { + "minlat": 40.7102565, + "minlon": -73.9335085, + "maxlat": 40.7107198, + "maxlon": -73.9324260 + }, + "nodes": [ + 7207857461, + 9767625295, + 7207857463, + 7207857464, + 7208632136, + 7208632135, + 7207857462 + ], + "geometry": [ + { "lat": 40.7104609, "lon": -73.9335085 }, + { "lat": 40.7104807, "lon": -73.9334316 }, + { "lat": 40.7107198, "lon": -73.9325015 }, + { "lat": 40.7105444, "lon": -73.9324260 }, + { "lat": 40.7104454, "lon": -73.9325882 }, + { "lat": 40.7103906, "lon": -73.9327999 }, + { "lat": 40.7102565, "lon": -73.9327399 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 772101390, + "bounds": { + "minlat": 40.7911167, + "minlon": -73.9370361, + "maxlat": 40.7915826, + "maxlon": -73.9367215 + }, + "nodes": [ + 7207886763, + 7207886764 + ], + "geometry": [ + { "lat": 40.7915826, "lon": -73.9367215 }, + { "lat": 40.7911167, "lon": -73.9370361 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 772162991, + "bounds": { + "minlat": 40.8236498, + "minlon": -74.0085981, + "maxlat": 40.8237376, + "maxlon": -74.0079623 + }, + "nodes": [ + 7208553412, + 7208553413 + ], + "geometry": [ + { "lat": 40.8237376, "lon": -74.0085981 }, + { "lat": 40.8236498, "lon": -74.0079623 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 772266899, + "bounds": { + "minlat": 40.7522866, + "minlon": -73.9328269, + "maxlat": 40.7526526, + "maxlon": -73.9321474 + }, + "nodes": [ + 42892937, + 10168540996, + 13702917040, + 3569401913, + 12356895901 + ], + "geometry": [ + { "lat": 40.7522866, "lon": -73.9321474 }, + { "lat": 40.7524679, "lon": -73.9324814 }, + { "lat": 40.7525286, "lon": -73.9325934 }, + { "lat": 40.7526313, "lon": -73.9327830 }, + { "lat": 40.7526526, "lon": -73.9328269 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "name": "39th Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 772266900, + "bounds": { + "minlat": 40.7527446, + "minlon": -73.9367890, + "maxlat": 40.7547625, + "maxlon": -73.9330094 + }, + "nodes": [ + 42818570, + 8699111938, + 10744391843, + 42872030, + 10744391808, + 42817415, + 10744391810, + 8315005334, + 42833344, + 8314985380, + 8230397449, + 8315005325, + 42892933, + 8250499948, + 3569401917, + 12356895902 + ], + "geometry": [ + { "lat": 40.7547625, "lon": -73.9367890 }, + { "lat": 40.7547231, "lon": -73.9367153 }, + { "lat": 40.7543817, "lon": -73.9360841 }, + { "lat": 40.7543410, "lon": -73.9360090 }, + { "lat": 40.7539757, "lon": -73.9353078 }, + { "lat": 40.7539432, "lon": -73.9352454 }, + { "lat": 40.7539039, "lon": -73.9351706 }, + { "lat": 40.7535686, "lon": -73.9345321 }, + { "lat": 40.7535337, "lon": -73.9344657 }, + { "lat": 40.7534966, "lon": -73.9343984 }, + { "lat": 40.7533147, "lon": -73.9340685 }, + { "lat": 40.7531522, "lon": -73.9337739 }, + { "lat": 40.7531145, "lon": -73.9337053 }, + { "lat": 40.7530812, "lon": -73.9336436 }, + { "lat": 40.7527604, "lon": -73.9330398 }, + { "lat": 40.7527446, "lon": -73.9330094 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "39th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 772266901, + "bounds": { + "minlat": 40.7520309, + "minlon": -73.9312628, + "maxlat": 40.7533800, + "maxlon": -73.9289487 + }, + "nodes": [ + 42876782, + 8595235419, + 3569401925, + 42876788, + 3569401923, + 8593804495, + 42876791, + 8593804434, + 13702980102, + 8088590955, + 42866674, + 42876795 + ], + "geometry": [ + { "lat": 40.7533800, "lon": -73.9312628 }, + { "lat": 40.7533411, "lon": -73.9311892 }, + { "lat": 40.7530103, "lon": -73.9305670 }, + { "lat": 40.7529723, "lon": -73.9304956 }, + { "lat": 40.7529280, "lon": -73.9304124 }, + { "lat": 40.7525981, "lon": -73.9297927 }, + { "lat": 40.7525611, "lon": -73.9297231 }, + { "lat": 40.7525229, "lon": -73.9296496 }, + { "lat": 40.7524178, "lon": -73.9294480 }, + { "lat": 40.7522036, "lon": -73.9290503 }, + { "lat": 40.7521455, "lon": -73.9289511 }, + { "lat": 40.7520309, "lon": -73.9289487 } + ], + "tags": { + "highway": "residential", + "name": "38th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 772266902, + "bounds": { + "minlat": 40.7538196, + "minlon": -73.9358181, + "maxlat": 40.7558105, + "maxlon": -73.9320836 + }, + "nodes": [ + 42818567, + 5031422310, + 8314985377, + 42872034, + 8314985410, + 10763718157, + 42817412, + 10763718159, + 8314985388, + 42833340, + 8315005323, + 42828247, + 8595235439, + 42876779, + 8595235455, + 3569401950, + 12356889765 + ], + "geometry": [ + { "lat": 40.7558105, "lon": -73.9358181 }, + { "lat": 40.7557609, "lon": -73.9357219 }, + { "lat": 40.7554333, "lon": -73.9351181 }, + { "lat": 40.7553910, "lon": -73.9350400 }, + { "lat": 40.7553573, "lon": -73.9349766 }, + { "lat": 40.7550520, "lon": -73.9344042 }, + { "lat": 40.7550150, "lon": -73.9343350 }, + { "lat": 40.7549816, "lon": -73.9342720 }, + { "lat": 40.7546468, "lon": -73.9336418 }, + { "lat": 40.7546055, "lon": -73.9335642 }, + { "lat": 40.7545728, "lon": -73.9335027 }, + { "lat": 40.7545300, "lon": -73.9334220 }, + { "lat": 40.7542325, "lon": -73.9328679 }, + { "lat": 40.7541953, "lon": -73.9327986 }, + { "lat": 40.7541575, "lon": -73.9327266 }, + { "lat": 40.7538521, "lon": -73.9321451 }, + { "lat": 40.7538196, "lon": -73.9320836 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "residential", + "name": "38th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 772266903, + "bounds": { + "minlat": 40.7519333, + "minlon": -73.9335473, + "maxlat": 40.7526930, + "maxlon": -73.9329100 + }, + "nodes": [ + 42849749, + 3569401914, + 10891946386, + 3573487195 + ], + "geometry": [ + { "lat": 40.7526930, "lon": -73.9329100 }, + { "lat": 40.7526398, "lon": -73.9329548 }, + { "lat": 40.7526235, "lon": -73.9329689 }, + { "lat": 40.7519333, "lon": -73.9335473 } + ], + "tags": { + "cycleway": "track", + "highway": "secondary", + "maxheight": "12'6\"", + "name": "31st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 772266904, + "bounds": { + "minlat": 40.7690571, + "minlon": -73.9080078, + "maxlat": 40.7696710, + "maxlon": -73.9072572 + }, + "nodes": [ + 42920422, + 8246459587, + 9236602771, + 42910603 + ], + "geometry": [ + { "lat": 40.7696710, "lon": -73.9072572 }, + { "lat": 40.7691822, "lon": -73.9078584 }, + { "lat": 40.7691359, "lon": -73.9079137 }, + { "lat": 40.7690571, "lon": -73.9080078 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "42nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 772266905, + "bounds": { + "minlat": 40.7536694, + "minlon": -73.9187822, + "maxlat": 40.7682450, + "maxlon": -73.9070862 + }, + "nodes": [ + 597443959, + 9179209268, + 3570224408, + 9179209267, + 7659491434, + 7085444384, + 8374908563, + 3570224406, + 42842492, + 3570224403, + 3570249974, + 42833012, + 3570249966, + 4971251537, + 4971251551, + 7746622571, + 3570249932, + 42874076, + 3570249927, + 42810501, + 5904717694, + 10088095141, + 7661232272, + 42856569, + 7661232271, + 6450631977, + 6450631973, + 6450572735, + 3570249823, + 42883008, + 3570249820, + 10763787852, + 3569858138, + 42824174, + 3569858133, + 10774470179, + 10774472406, + 10774470204, + 10774470202, + 13188236356, + 10774470200, + 5540344272, + 10774472414, + 10774470192, + 5540344273, + 8866964404, + 9189020424, + 3569401949, + 9189020425, + 9189020426, + 3569858112 + ], + "geometry": [ + { "lat": 40.7682450, "lon": -73.9070862 }, + { "lat": 40.7681973, "lon": -73.9071002 }, + { "lat": 40.7681653, "lon": -73.9071133 }, + { "lat": 40.7681266, "lon": -73.9071335 }, + { "lat": 40.7680908, "lon": -73.9071609 }, + { "lat": 40.7679714, "lon": -73.9072571 }, + { "lat": 40.7667600, "lon": -73.9082509 }, + { "lat": 40.7665207, "lon": -73.9084456 }, + { "lat": 40.7664552, "lon": -73.9084988 }, + { "lat": 40.7663893, "lon": -73.9085524 }, + { "lat": 40.7640505, "lon": -73.9104521 }, + { "lat": 40.7639807, "lon": -73.9105091 }, + { "lat": 40.7639126, "lon": -73.9105645 }, + { "lat": 40.7636445, "lon": -73.9107855 }, + { "lat": 40.7627412, "lon": -73.9115202 }, + { "lat": 40.7627325, "lon": -73.9115273 }, + { "lat": 40.7624685, "lon": -73.9117421 }, + { "lat": 40.7624055, "lon": -73.9117934 }, + { "lat": 40.7623312, "lon": -73.9118538 }, + { "lat": 40.7620248, "lon": -73.9121031 }, + { "lat": 40.7609214, "lon": -73.9130008 }, + { "lat": 40.7599093, "lon": -73.9138241 }, + { "lat": 40.7598919, "lon": -73.9138382 }, + { "lat": 40.7598215, "lon": -73.9138956 }, + { "lat": 40.7597584, "lon": -73.9139469 }, + { "lat": 40.7594364, "lon": -73.9142281 }, + { "lat": 40.7593763, "lon": -73.9142765 }, + { "lat": 40.7593081, "lon": -73.9143296 }, + { "lat": 40.7575478, "lon": -73.9157450 }, + { "lat": 40.7574730, "lon": -73.9158059 }, + { "lat": 40.7574059, "lon": -73.9158605 }, + { "lat": 40.7552865, "lon": -73.9175845 }, + { "lat": 40.7552560, "lon": -73.9176093 }, + { "lat": 40.7551902, "lon": -73.9176628 }, + { "lat": 40.7551238, "lon": -73.9177168 }, + { "lat": 40.7548608, "lon": -73.9179305 }, + { "lat": 40.7547842, "lon": -73.9179930 }, + { "lat": 40.7546677, "lon": -73.9180878 }, + { "lat": 40.7545512, "lon": -73.9181826 }, + { "lat": 40.7544809, "lon": -73.9182398 }, + { "lat": 40.7544345, "lon": -73.9182775 }, + { "lat": 40.7543477, "lon": -73.9183481 }, + { "lat": 40.7543395, "lon": -73.9183548 }, + { "lat": 40.7543175, "lon": -73.9183727 }, + { "lat": 40.7542265, "lon": -73.9184467 }, + { "lat": 40.7538634, "lon": -73.9187363 }, + { "lat": 40.7538148, "lon": -73.9187700 }, + { "lat": 40.7537879, "lon": -73.9187806 }, + { "lat": 40.7537578, "lon": -73.9187822 }, + { "lat": 40.7537258, "lon": -73.9187768 }, + { "lat": 40.7536694, "lon": -73.9187549 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "highway": "residential", + "lit": "yes", + "name": "44th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 772266906, + "bounds": { + "minlat": 40.7533407, + "minlon": -73.9202162, + "maxlat": 40.7683932, + "maxlon": -73.9080218 + }, + "nodes": [ + 8839866846, + 8088590928, + 3569401952, + 42900657, + 8593804442, + 10774470169, + 10774470171, + 10774470173, + 10774470175, + 10774470177, + 10774470178, + 10763787851, + 3569858141, + 42824172, + 3569858146, + 10774472437, + 3570249824, + 42883005, + 3570249827, + 8593722415, + 8593804581, + 11782744930, + 7661232269, + 42856566, + 7661232268, + 13121092346, + 13121092341, + 3570249935, + 42874074, + 3570249940, + 7048074369, + 3570249977, + 42833009, + 3570249982, + 5482180844, + 13713179777, + 6453096669, + 42842491, + 6453096670, + 5867036843, + 8017938290, + 42900647 + ], + "geometry": [ + { "lat": 40.7533407, "lon": -73.9202162 }, + { "lat": 40.7534826, "lon": -73.9201573 }, + { "lat": 40.7539469, "lon": -73.9197771 }, + { "lat": 40.7540215, "lon": -73.9197165 }, + { "lat": 40.7540884, "lon": -73.9196621 }, + { "lat": 40.7546923, "lon": -73.9191693 }, + { "lat": 40.7548093, "lon": -73.9190740 }, + { "lat": 40.7549259, "lon": -73.9189790 }, + { "lat": 40.7550425, "lon": -73.9188841 }, + { "lat": 40.7551589, "lon": -73.9187893 }, + { "lat": 40.7552290, "lon": -73.9187322 }, + { "lat": 40.7554720, "lon": -73.9185330 }, + { "lat": 40.7554908, "lon": -73.9185177 }, + { "lat": 40.7555621, "lon": -73.9184597 }, + { "lat": 40.7556229, "lon": -73.9184103 }, + { "lat": 40.7563287, "lon": -73.9178362 }, + { "lat": 40.7577804, "lon": -73.9166551 }, + { "lat": 40.7578467, "lon": -73.9166012 }, + { "lat": 40.7579250, "lon": -73.9165404 }, + { "lat": 40.7586724, "lon": -73.9159383 }, + { "lat": 40.7596582, "lon": -73.9151441 }, + { "lat": 40.7600557, "lon": -73.9148242 }, + { "lat": 40.7601002, "lon": -73.9147883 }, + { "lat": 40.7602021, "lon": -73.9147143 }, + { "lat": 40.7602954, "lon": -73.9146235 }, + { "lat": 40.7607052, "lon": -73.9142877 }, + { "lat": 40.7618562, "lon": -73.9133445 }, + { "lat": 40.7626974, "lon": -73.9126551 }, + { "lat": 40.7627774, "lon": -73.9125902 }, + { "lat": 40.7628379, "lon": -73.9125408 }, + { "lat": 40.7632280, "lon": -73.9122236 }, + { "lat": 40.7642883, "lon": -73.9113614 }, + { "lat": 40.7643556, "lon": -73.9113068 }, + { "lat": 40.7644257, "lon": -73.9112498 }, + { "lat": 40.7649293, "lon": -73.9108395 }, + { "lat": 40.7649713, "lon": -73.9108083 }, + { "lat": 40.7667663, "lon": -73.9093450 }, + { "lat": 40.7668270, "lon": -73.9092956 }, + { "lat": 40.7668972, "lon": -73.9092385 }, + { "lat": 40.7673884, "lon": -73.9088388 }, + { "lat": 40.7683337, "lon": -73.9080698 }, + { "lat": 40.7683932, "lon": -73.9080218 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 772266907, + "bounds": { + "minlat": 40.7682450, + "minlon": -73.9080218, + "maxlat": 40.7683932, + "maxlon": -73.9070862 + }, + "nodes": [ + 42900647, + 7085445189, + 7659491432, + 5104280308, + 3570224410, + 597443959 + ], + "geometry": [ + { "lat": 40.7683932, "lon": -73.9080218 }, + { "lat": 40.7683351, "lon": -73.9076634 }, + { "lat": 40.7682797, "lon": -73.9073177 }, + { "lat": 40.7682664, "lon": -73.9072340 }, + { "lat": 40.7682577, "lon": -73.9071789 }, + { "lat": 40.7682450, "lon": -73.9070862 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "name": "Astoria Boulevard South", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 772266908, + "bounds": { + "minlat": 40.7680856, + "minlon": -73.9070862, + "maxlat": 40.7682450, + "maxlon": -73.9060991 + }, + "nodes": [ + 597443959, + 6453087471, + 42885742 + ], + "geometry": [ + { "lat": 40.7682450, "lon": -73.9070862 }, + { "lat": 40.7682330, "lon": -73.9069955 }, + { "lat": 40.7680856, "lon": -73.9060991 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "name": "Astoria Boulevard South", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 772266909, + "bounds": { + "minlat": 40.7739412, + "minlon": -73.9216442, + "maxlat": 40.7828566, + "maxlon": -73.9107522 + }, + "nodes": [ + 42861235, + 7787345557, + 3025036824, + 7787351856, + 11114783728, + 3025036819, + 6450583538, + 42818188, + 6450583537, + 6908562527, + 8288329104, + 8288329101, + 8288329092, + 8288329112, + 11107973914, + 7783823899, + 6450635317, + 42861232, + 6450635320, + 11114804477, + 11114805877, + 42861229, + 9847943993, + 42861221, + 9847967665, + 1331886626, + 3778418342, + 7846454030, + 42861216, + 7846454036, + 2307002079, + 7829717823, + 2307002076, + 7779193098, + 7777095372, + 42861213 + ], + "geometry": [ + { "lat": 40.7739412, "lon": -73.9216442 }, + { "lat": 40.7740083, "lon": -73.9215618 }, + { "lat": 40.7740333, "lon": -73.9215314 }, + { "lat": 40.7747299, "lon": -73.9206726 }, + { "lat": 40.7747887, "lon": -73.9206001 }, + { "lat": 40.7751297, "lon": -73.9201797 }, + { "lat": 40.7753623, "lon": -73.9198931 }, + { "lat": 40.7754160, "lon": -73.9198270 }, + { "lat": 40.7754831, "lon": -73.9197452 }, + { "lat": 40.7756475, "lon": -73.9195449 }, + { "lat": 40.7756996, "lon": -73.9194815 }, + { "lat": 40.7757980, "lon": -73.9193615 }, + { "lat": 40.7767851, "lon": -73.9181585 }, + { "lat": 40.7767929, "lon": -73.9181490 }, + { "lat": 40.7772213, "lon": -73.9176268 }, + { "lat": 40.7774004, "lon": -73.9174086 }, + { "lat": 40.7774376, "lon": -73.9173633 }, + { "lat": 40.7774940, "lon": -73.9172945 }, + { "lat": 40.7775507, "lon": -73.9172251 }, + { "lat": 40.7777675, "lon": -73.9169598 }, + { "lat": 40.7780753, "lon": -73.9165831 }, + { "lat": 40.7782820, "lon": -73.9163300 }, + { "lat": 40.7792112, "lon": -73.9151969 }, + { "lat": 40.7792621, "lon": -73.9151352 }, + { "lat": 40.7793192, "lon": -73.9150625 }, + { "lat": 40.7794138, "lon": -73.9149448 }, + { "lat": 40.7808245, "lon": -73.9132378 }, + { "lat": 40.7810482, "lon": -73.9129663 }, + { "lat": 40.7810949, "lon": -73.9129106 }, + { "lat": 40.7811581, "lon": -73.9128274 }, + { "lat": 40.7813638, "lon": -73.9125644 }, + { "lat": 40.7818143, "lon": -73.9120168 }, + { "lat": 40.7826781, "lon": -73.9109667 }, + { "lat": 40.7827655, "lon": -73.9108617 }, + { "lat": 40.7828008, "lon": -73.9108192 }, + { "lat": 40.7828566, "lon": -73.9107522 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "24th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 772266913, + "bounds": { + "minlat": 40.7566318, + "minlon": -73.9313490, + "maxlat": 40.7573288, + "maxlon": -73.9298557 + }, + "nodes": [ + 42833332, + 3569401991, + 3863095001, + 3569401986, + 42935217, + 3569401983, + 3569401978, + 12356856283 + ], + "geometry": [ + { "lat": 40.7573288, "lon": -73.9313490 }, + { "lat": 40.7573053, "lon": -73.9312985 }, + { "lat": 40.7570735, "lon": -73.9308021 }, + { "lat": 40.7569984, "lon": -73.9306395 }, + { "lat": 40.7569662, "lon": -73.9305722 }, + { "lat": 40.7569312, "lon": -73.9304972 }, + { "lat": 40.7566548, "lon": -73.9299049 }, + { "lat": 40.7566318, "lon": -73.9298557 } + ], + "tags": { + "highway": "tertiary", + "lit": "yes", + "name": "36th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 772266914, + "bounds": { + "minlat": 40.7516275, + "minlon": -73.9431090, + "maxlat": 40.7520162, + "maxlon": -73.9427440 + }, + "nodes": [ + 2355624816, + 7768202161, + 276069438 + ], + "geometry": [ + { "lat": 40.7520162, "lon": -73.9427440 }, + { "lat": 40.7516817, "lon": -73.9430581 }, + { "lat": 40.7516275, "lon": -73.9431090 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "22nd Street", + "name_1": "Harry Suna Place", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 772281797, + "bounds": { + "minlat": 40.8119536, + "minlon": -73.9153891, + "maxlat": 40.8122070, + "maxlon": -73.9150389 + }, + "nodes": [ + 7238545827, + 12650993290, + 7209725800, + 7209725801 + ], + "geometry": [ + { "lat": 40.8119536, "lon": -73.9153891 }, + { "lat": 40.8120125, "lon": -73.9153585 }, + { "lat": 40.8122070, "lon": -73.9152573 }, + { "lat": 40.8121339, "lon": -73.9150389 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 772283135, + "bounds": { + "minlat": 40.7914955, + "minlon": -74.0008502, + "maxlat": 40.7916339, + "maxlon": -74.0005033 + }, + "nodes": [ + 7209743400, + 7468583880, + 7209743401, + 7209743402 + ], + "geometry": [ + { "lat": 40.7914955, "lon": -74.0005033 }, + { "lat": 40.7915446, "lon": -74.0006505 }, + { "lat": 40.7915486, "lon": -74.0006624 }, + { "lat": 40.7916339, "lon": -74.0008502 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 772285146, + "bounds": { + "minlat": 40.8358750, + "minlon": -74.0139568, + "maxlat": 40.8377928, + "maxlon": -74.0104806 + }, + "nodes": [ + 7209763566, + 7209763567, + 7209763568, + 7209763569, + 7209763570, + 7209763571, + 7209763572, + 7209763573, + 7209763574, + 7209763575, + 7209763576, + 7209763577, + 7209763578, + 7209763579 + ], + "geometry": [ + { "lat": 40.8372313, "lon": -74.0139568 }, + { "lat": 40.8371410, "lon": -74.0139225 }, + { "lat": 40.8370909, "lon": -74.0138875 }, + { "lat": 40.8370568, "lon": -74.0138335 }, + { "lat": 40.8368907, "lon": -74.0134353 }, + { "lat": 40.8358750, "lon": -74.0110795 }, + { "lat": 40.8359792, "lon": -74.0110070 }, + { "lat": 40.8360992, "lon": -74.0109135 }, + { "lat": 40.8365144, "lon": -74.0106005 }, + { "lat": 40.8368051, "lon": -74.0104887 }, + { "lat": 40.8368774, "lon": -74.0104806 }, + { "lat": 40.8369727, "lon": -74.0105903 }, + { "lat": 40.8376448, "lon": -74.0121819 }, + { "lat": 40.8377928, "lon": -74.0123350 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 772285147, + "bounds": { + "minlat": 40.8355967, + "minlon": -74.0115100, + "maxlat": 40.8358750, + "maxlon": -74.0110795 + }, + "nodes": [ + 103125756, + 7209763580, + 7209763581, + 7209763582, + 7209763571 + ], + "geometry": [ + { "lat": 40.8355967, "lon": -74.0115100 }, + { "lat": 40.8356226, "lon": -74.0113677 }, + { "lat": 40.8356467, "lon": -74.0113040 }, + { "lat": 40.8357023, "lon": -74.0112093 }, + { "lat": 40.8358750, "lon": -74.0110795 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 772394487, + "bounds": { + "minlat": 40.8431163, + "minlon": -74.0034855, + "maxlat": 40.8434081, + "maxlon": -74.0030724 + }, + "nodes": [ + 7211336225, + 7211336226, + 7211336227, + 7211336228, + 7211336229 + ], + "geometry": [ + { "lat": 40.8431163, "lon": -74.0034855 }, + { "lat": 40.8433026, "lon": -74.0033096 }, + { "lat": 40.8433505, "lon": -74.0031969 }, + { "lat": 40.8433535, "lon": -74.0030941 }, + { "lat": 40.8434081, "lon": -74.0030724 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 772521609, + "bounds": { + "minlat": 40.7804580, + "minlon": -73.9168213, + "maxlat": 40.7820366, + "maxlon": -73.9149134 + }, + "nodes": [ + 2302449632, + 2302449646, + 42825959, + 7846480426, + 42825962, + 42825970, + 10763811186, + 7803848544, + 42825975 + ], + "geometry": [ + { "lat": 40.7820366, "lon": -73.9149134 }, + { "lat": 40.7819340, "lon": -73.9150374 }, + { "lat": 40.7815828, "lon": -73.9154619 }, + { "lat": 40.7815163, "lon": -73.9155394 }, + { "lat": 40.7814543, "lon": -73.9156172 }, + { "lat": 40.7810052, "lon": -73.9161600 }, + { "lat": 40.7805439, "lon": -73.9167176 }, + { "lat": 40.7805174, "lon": -73.9167496 }, + { "lat": 40.7804580, "lon": -73.9168213 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "21st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11106", + "tiger:zip_right": "11106" + } +}, +{ + "type": "way", + "id": 772989454, + "bounds": { + "minlat": 40.8339124, + "minlon": -73.9844287, + "maxlat": 40.8340237, + "maxlon": -73.9839948 + }, + "nodes": [ + 6960272479, + 7217189209, + 7217189208 + ], + "geometry": [ + { "lat": 40.8339124, "lon": -73.9839948 }, + { "lat": 40.8339360, "lon": -73.9840870 }, + { "lat": 40.8340237, "lon": -73.9844287 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 773022569, + "bounds": { + "minlat": 40.8316027, + "minlon": -73.9963969, + "maxlat": 40.8348974, + "maxlon": -73.9938821 + }, + "nodes": [ + 7205168896, + 103185078, + 8530362413, + 103185080, + 103185082, + 103185084, + 103185085, + 103185086, + 103185087, + 103156980, + 103185091, + 13524441808, + 103185092 + ], + "geometry": [ + { "lat": 40.8316027, "lon": -73.9963969 }, + { "lat": 40.8316770, "lon": -73.9963500 }, + { "lat": 40.8324688, "lon": -73.9958411 }, + { "lat": 40.8325110, "lon": -73.9958140 }, + { "lat": 40.8326460, "lon": -73.9957120 }, + { "lat": 40.8328200, "lon": -73.9955640 }, + { "lat": 40.8331260, "lon": -73.9952620 }, + { "lat": 40.8336773, "lon": -73.9946832 }, + { "lat": 40.8339759, "lon": -73.9944033 }, + { "lat": 40.8342310, "lon": -73.9941502 }, + { "lat": 40.8345560, "lon": -73.9939604 }, + { "lat": 40.8347627, "lon": -73.9938979 }, + { "lat": 40.8348974, "lon": -73.9938821 } + ], + "tags": { + "highway": "residential", + "name": "Oak Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oak", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 773022570, + "bounds": { + "minlat": 40.8314600, + "minlon": -73.9964870, + "maxlat": 40.8316027, + "maxlon": -73.9963969 + }, + "nodes": [ + 103101263, + 7205168896 + ], + "geometry": [ + { "lat": 40.8314600, "lon": -73.9964870 }, + { "lat": 40.8316027, "lon": -73.9963969 } + ], + "tags": { + "highway": "residential", + "name": "Oak Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oak", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 773023187, + "bounds": { + "minlat": 40.8359027, + "minlon": -74.0087735, + "maxlat": 40.8361485, + "maxlon": -74.0086040 + }, + "nodes": [ + 7217542438, + 7217542439, + 7217542440, + 7217542441, + 7217542442 + ], + "geometry": [ + { "lat": 40.8361485, "lon": -74.0086772 }, + { "lat": 40.8360010, "lon": -74.0087735 }, + { "lat": 40.8359822, "lon": -74.0087712 }, + { "lat": 40.8359608, "lon": -74.0087520 }, + { "lat": 40.8359027, "lon": -74.0086040 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 773068101, + "bounds": { + "minlat": 40.7053634, + "minlon": -74.0107013, + "maxlat": 40.7056435, + "maxlon": -74.0106415 + }, + "nodes": [ + 7217916613, + 7217916615 + ], + "geometry": [ + { "lat": 40.7056435, "lon": -74.0107013 }, + { "lat": 40.7053634, "lon": -74.0106415 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 773068102, + "bounds": { + "minlat": 40.7052136, + "minlon": -74.0106415, + "maxlat": 40.7053634, + "maxlon": -74.0106123 + }, + "nodes": [ + 7217916615, + 7217916616 + ], + "geometry": [ + { "lat": 40.7053634, "lon": -74.0106415 }, + { "lat": 40.7052136, "lon": -74.0106123 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 773068103, + "bounds": { + "minlat": 40.7050978, + "minlon": -74.0106123, + "maxlat": 40.7052136, + "maxlon": -74.0105887 + }, + "nodes": [ + 7217916616, + 11051851523, + 8276468863, + 11051851519, + 7217916614 + ], + "geometry": [ + { "lat": 40.7052136, "lon": -74.0106123 }, + { "lat": 40.7051523, "lon": -74.0106005 }, + { "lat": 40.7051442, "lon": -74.0105989 }, + { "lat": 40.7051363, "lon": -74.0105972 }, + { "lat": 40.7050978, "lon": -74.0105887 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 773071275, + "bounds": { + "minlat": 40.8579223, + "minlon": -73.9225464, + "maxlat": 40.8595101, + "maxlon": -73.9217635 + }, + "nodes": [ + 1764424330, + 8725139246, + 7217951234, + 7217951235, + 7217951236, + 7217951237, + 7217951238, + 7217951239, + 7217951240, + 7217951241, + 7217951242, + 7217951243, + 7217951244 + ], + "geometry": [ + { "lat": 40.8595101, "lon": -73.9225464 }, + { "lat": 40.8594592, "lon": -73.9224452 }, + { "lat": 40.8594222, "lon": -73.9223948 }, + { "lat": 40.8593534, "lon": -73.9223424 }, + { "lat": 40.8592687, "lon": -73.9222946 }, + { "lat": 40.8592087, "lon": -73.9222440 }, + { "lat": 40.8590506, "lon": -73.9220336 }, + { "lat": 40.8589804, "lon": -73.9219763 }, + { "lat": 40.8588192, "lon": -73.9218711 }, + { "lat": 40.8587336, "lon": -73.9218282 }, + { "lat": 40.8585845, "lon": -73.9217652 }, + { "lat": 40.8580423, "lon": -73.9217635 }, + { "lat": 40.8579223, "lon": -73.9218031 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 773574566, + "bounds": { + "minlat": 40.8101084, + "minlon": -73.9877767, + "maxlat": 40.8101735, + "maxlon": -73.9875136 + }, + "nodes": [ + 5482328544, + 5482328543, + 103220231 + ], + "geometry": [ + { "lat": 40.8101735, "lon": -73.9877767 }, + { "lat": 40.8101084, "lon": -73.9876105 }, + { "lat": 40.8101274, "lon": -73.9875136 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Independence Way", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Independence", + "tiger:name_type": "Way", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 773574568, + "bounds": { + "minlat": 40.8101453, + "minlon": -73.9880339, + "maxlat": 40.8103789, + "maxlon": -73.9877240 + }, + "nodes": [ + 7220729555, + 7220729551, + 5482328547, + 7220729560, + 7220729567, + 7220729549, + 7220729569, + 7220729558, + 7220729565, + 7220729548, + 5482328544, + 7220729557, + 7220729553, + 5482328541, + 7220729571, + 7220729556, + 7220729562, + 7220729564, + 7220729570, + 7220729554, + 5482328538, + 7220729555 + ], + "geometry": [ + { "lat": 40.8103194, "lon": -73.9880142 }, + { "lat": 40.8102888, "lon": -73.9880300 }, + { "lat": 40.8102561, "lon": -73.9880339 }, + { "lat": 40.8102239, "lon": -73.9880258 }, + { "lat": 40.8101947, "lon": -73.9880062 }, + { "lat": 40.8101707, "lon": -73.9879767 }, + { "lat": 40.8101538, "lon": -73.9879395 }, + { "lat": 40.8101453, "lon": -73.9878977 }, + { "lat": 40.8101459, "lon": -73.9878544 }, + { "lat": 40.8101555, "lon": -73.9878130 }, + { "lat": 40.8101735, "lon": -73.9877767 }, + { "lat": 40.8101965, "lon": -73.9877499 }, + { "lat": 40.8102240, "lon": -73.9877319 }, + { "lat": 40.8102541, "lon": -73.9877240 }, + { "lat": 40.8102942, "lon": -73.9877296 }, + { "lat": 40.8103305, "lon": -73.9877529 }, + { "lat": 40.8103588, "lon": -73.9877910 }, + { "lat": 40.8103755, "lon": -73.9878395 }, + { "lat": 40.8103789, "lon": -73.9878926 }, + { "lat": 40.8103685, "lon": -73.9879441 }, + { "lat": 40.8103455, "lon": -73.9879879 }, + { "lat": 40.8103194, "lon": -73.9880142 } + ], + "tags": { + "highway": "residential", + "junction": "roundabout", + "lanes": "1", + "name": "Independence Way", + "oneway": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 773574569, + "bounds": { + "minlat": 40.8103455, + "minlon": -73.9884619, + "maxlat": 40.8105503, + "maxlon": -73.9879879 + }, + "nodes": [ + 5482328538, + 5482328537, + 7672269067, + 103137045 + ], + "geometry": [ + { "lat": 40.8103455, "lon": -73.9879879 }, + { "lat": 40.8105419, "lon": -73.9883226 }, + { "lat": 40.8105436, "lon": -73.9883506 }, + { "lat": 40.8105503, "lon": -73.9884619 } + ], + "tags": { + "highway": "residential", + "name": "Independence Way", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Independence", + "tiger:name_type": "Way", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 773717873, + "bounds": { + "minlat": 40.8217585, + "minlon": -73.9777705, + "maxlat": 40.8221103, + "maxlon": -73.9773709 + }, + "nodes": [ + 7221969645, + 7221969646, + 7221969647, + 7221969648, + 7221969649, + 7221969650, + 103125589 + ], + "geometry": [ + { "lat": 40.8221103, "lon": -73.9775913 }, + { "lat": 40.8220192, "lon": -73.9776881 }, + { "lat": 40.8219569, "lon": -73.9777705 }, + { "lat": 40.8217585, "lon": -73.9775713 }, + { "lat": 40.8218431, "lon": -73.9774666 }, + { "lat": 40.8219261, "lon": -73.9774025 }, + { "lat": 40.8219909, "lon": -73.9773709 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 773742508, + "bounds": { + "minlat": 40.7498403, + "minlon": -73.9433914, + "maxlat": 40.7500388, + "maxlon": -73.9430347 + }, + "nodes": [ + 7222195531, + 11520108755, + 7222195535, + 7222195532 + ], + "geometry": [ + { "lat": 40.7500388, "lon": -73.9433914 }, + { "lat": 40.7499877, "lon": -73.9433028 }, + { "lat": 40.7499746, "lon": -73.9432800 }, + { "lat": 40.7498403, "lon": -73.9430347 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 773742509, + "bounds": { + "minlat": 40.7496158, + "minlon": -73.9429020, + "maxlat": 40.7497691, + "maxlon": -73.9426484 + }, + "nodes": [ + 7222195533, + 7222195541, + 11520108754, + 7222195534 + ], + "geometry": [ + { "lat": 40.7497691, "lon": -73.9429020 }, + { "lat": 40.7497334, "lon": -73.9428430 }, + { "lat": 40.7496539, "lon": -73.9427114 }, + { "lat": 40.7496158, "lon": -73.9426484 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 773742510, + "bounds": { + "minlat": 40.7497691, + "minlon": -73.9430347, + "maxlat": 40.7498403, + "maxlon": -73.9429020 + }, + "nodes": [ + 7222195532, + 7222195533 + ], + "geometry": [ + { "lat": 40.7498403, "lon": -73.9430347 }, + { "lat": 40.7497691, "lon": -73.9429020 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 773742511, + "bounds": { + "minlat": 40.7496008, + "minlon": -73.9433225, + "maxlat": 40.7497581, + "maxlon": -73.9428430 + }, + "nodes": [ + 7222195537, + 7222195538, + 7222195539, + 7222195540, + 7222195541 + ], + "geometry": [ + { "lat": 40.7497581, "lon": -73.9433225 }, + { "lat": 40.7496032, "lon": -73.9429894 }, + { "lat": 40.7496008, "lon": -73.9429715 }, + { "lat": 40.7496048, "lon": -73.9429525 }, + { "lat": 40.7497334, "lon": -73.9428430 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 773746864, + "bounds": { + "minlat": 40.7027711, + "minlon": -73.9358341, + "maxlat": 40.7029956, + "maxlon": -73.9357588 + }, + "nodes": [ + 7222262821, + 9752179208, + 7222262822, + 7222262823 + ], + "geometry": [ + { "lat": 40.7029956, "lon": -73.9358341 }, + { "lat": 40.7029486, "lon": -73.9358183 }, + { "lat": 40.7029111, "lon": -73.9358057 }, + { "lat": 40.7027711, "lon": -73.9357588 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 773869139, + "bounds": { + "minlat": 40.7103324, + "minlon": -73.9602473, + "maxlat": 40.7107534, + "maxlon": -73.9599727 + }, + "nodes": [ + 4726244589, + 9663197930, + 486872574, + 9968376578, + 9968376577, + 486872578 + ], + "geometry": [ + { "lat": 40.7107534, "lon": -73.9599727 }, + { "lat": 40.7107196, "lon": -73.9599944 }, + { "lat": 40.7104101, "lon": -73.9601817 }, + { "lat": 40.7103785, "lon": -73.9602037 }, + { "lat": 40.7103550, "lon": -73.9602235 }, + { "lat": 40.7103324, "lon": -73.9602473 } + ], + "tags": { + "bicycle": "no", + "cycleway:both": "no", + "destination": "Williamsburg Bridge", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "moped": "no", + "name": "Roebling Street", + "name:etymology:wikidata": "Q77237", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 773921722, + "bounds": { + "minlat": 40.7073555, + "minlon": -73.9524747, + "maxlat": 40.7076024, + "maxlon": -73.9523114 + }, + "nodes": [ + 7223938216, + 9755354479, + 7223938218, + 7223938217 + ], + "geometry": [ + { "lat": 40.7073555, "lon": -73.9524747 }, + { "lat": 40.7074149, "lon": -73.9524354 }, + { "lat": 40.7074409, "lon": -73.9524183 }, + { "lat": 40.7076024, "lon": -73.9523114 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 773990098, + "bounds": { + "minlat": 40.7330448, + "minlon": -73.9520223, + "maxlat": 40.7330796, + "maxlon": -73.9516274 + }, + "nodes": [ + 4203066845, + 8097159402, + 7224197200, + 7224197201 + ], + "geometry": [ + { "lat": 40.7330448, "lon": -73.9520223 }, + { "lat": 40.7330553, "lon": -73.9519262 }, + { "lat": 40.7330575, "lon": -73.9519079 }, + { "lat": 40.7330796, "lon": -73.9516274 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 773994483, + "bounds": { + "minlat": 40.8246473, + "minlon": -73.9307552, + "maxlat": 40.8252859, + "maxlon": -73.9307122 + }, + "nodes": [ + 7224263618, + 7224263619, + 7224263620, + 7224263621 + ], + "geometry": [ + { "lat": 40.8246473, "lon": -73.9307552 }, + { "lat": 40.8248017, "lon": -73.9307394 }, + { "lat": 40.8249623, "lon": -73.9307122 }, + { "lat": 40.8252859, "lon": -73.9307163 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 774182372, + "bounds": { + "minlat": 40.8430681, + "minlon": -73.9814856, + "maxlat": 40.8437774, + "maxlon": -73.9808907 + }, + "nodes": [ + 7111343882, + 7464928527, + 7225115588, + 7225115589, + 7225115590, + 7225115591, + 7225115592 + ], + "geometry": [ + { "lat": 40.8430681, "lon": -73.9808907 }, + { "lat": 40.8431065, "lon": -73.9809571 }, + { "lat": 40.8431913, "lon": -73.9811038 }, + { "lat": 40.8434206, "lon": -73.9814856 }, + { "lat": 40.8436676, "lon": -73.9812718 }, + { "lat": 40.8437352, "lon": -73.9812553 }, + { "lat": 40.8437774, "lon": -73.9813152 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 774182373, + "bounds": { + "minlat": 40.8444060, + "minlon": -73.9820137, + "maxlat": 40.8444622, + "maxlon": -73.9817835 + }, + "nodes": [ + 7225115593, + 10753063096, + 7225115594, + 7225115595 + ], + "geometry": [ + { "lat": 40.8444486, "lon": -73.9817835 }, + { "lat": 40.8444622, "lon": -73.9818722 }, + { "lat": 40.8444565, "lon": -73.9819264 }, + { "lat": 40.8444060, "lon": -73.9820137 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 774182374, + "bounds": { + "minlat": 40.8441539, + "minlon": -73.9821251, + "maxlat": 40.8443145, + "maxlon": -73.9820783 + }, + "nodes": [ + 7225115596, + 10753063095, + 7225115597, + 7225115598 + ], + "geometry": [ + { "lat": 40.8443145, "lon": -73.9821090 }, + { "lat": 40.8442143, "lon": -73.9821251 }, + { "lat": 40.8441917, "lon": -73.9821201 }, + { "lat": 40.8441539, "lon": -73.9820783 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 774182375, + "bounds": { + "minlat": 40.8443145, + "minlon": -73.9821090, + "maxlat": 40.8444060, + "maxlon": -73.9820137 + }, + "nodes": [ + 7225115595, + 7225115596 + ], + "geometry": [ + { "lat": 40.8444060, "lon": -73.9820137 }, + { "lat": 40.8443145, "lon": -73.9821090 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 774183096, + "bounds": { + "minlat": 40.7030023, + "minlon": -73.9431343, + "maxlat": 40.7033098, + "maxlon": -73.9430597 + }, + "nodes": [ + 7225120406, + 9752202117, + 7225120407 + ], + "geometry": [ + { "lat": 40.7030023, "lon": -73.9430597 }, + { "lat": 40.7030659, "lon": -73.9430751 }, + { "lat": 40.7033098, "lon": -73.9431343 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 774186838, + "bounds": { + "minlat": 40.7158623, + "minlon": -73.9790697, + "maxlat": 40.7162768, + "maxlon": -73.9784977 + }, + "nodes": [ + 7225137650, + 7225137654, + 7225137651, + 7225137652, + 7225137653 + ], + "geometry": [ + { "lat": 40.7158623, "lon": -73.9786147 }, + { "lat": 40.7159704, "lon": -73.9785607 }, + { "lat": 40.7160209, "lon": -73.9785355 }, + { "lat": 40.7160996, "lon": -73.9784977 }, + { "lat": 40.7162768, "lon": -73.9790697 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 774399852, + "bounds": { + "minlat": 40.7854198, + "minlon": -74.0065468, + "maxlat": 40.7864630, + "maxlon": -74.0055405 + }, + "nodes": [ + 7225960648, + 7468537506, + 7225960649 + ], + "geometry": [ + { "lat": 40.7854198, "lon": -74.0065468 }, + { "lat": 40.7854857, "lon": -74.0064828 }, + { "lat": 40.7864630, "lon": -74.0055405 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 774498631, + "bounds": { + "minlat": 40.8083786, + "minlon": -73.9239348, + "maxlat": 40.8085909, + "maxlon": -73.9233905 + }, + "nodes": [ + 7226424406, + 9908621370, + 11882279851, + 7553907606, + 5482371888 + ], + "geometry": [ + { "lat": 40.8083786, "lon": -73.9233905 }, + { "lat": 40.8084289, "lon": -73.9235209 }, + { "lat": 40.8084441, "lon": -73.9235598 }, + { "lat": 40.8085052, "lon": -73.9237185 }, + { "lat": 40.8085909, "lon": -73.9239348 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 774514978, + "bounds": { + "minlat": 40.8322458, + "minlon": -73.9270308, + "maxlat": 40.8324759, + "maxlon": -73.9264097 + }, + "nodes": [ + 7226470540, + 7226470541, + 7226470542 + ], + "geometry": [ + { "lat": 40.8324759, "lon": -73.9270308 }, + { "lat": 40.8324484, "lon": -73.9269509 }, + { "lat": 40.8322458, "lon": -73.9264097 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 774520909, + "bounds": { + "minlat": 40.7865794, + "minlon": -74.0170328, + "maxlat": 40.7873515, + "maxlon": -74.0166778 + }, + "nodes": [ + 7226569122, + 7675116934, + 7226569130, + 7226569135, + 7226569123, + 7226569124, + 7226569125, + 7226569126, + 7226569127, + 7226569128, + 7675116935, + 7226569129 + ], + "geometry": [ + { "lat": 40.7873515, "lon": -74.0167237 }, + { "lat": 40.7873062, "lon": -74.0167586 }, + { "lat": 40.7872126, "lon": -74.0168307 }, + { "lat": 40.7870745, "lon": -74.0169377 }, + { "lat": 40.7869523, "lon": -74.0170321 }, + { "lat": 40.7869370, "lon": -74.0170328 }, + { "lat": 40.7869242, "lon": -74.0170240 }, + { "lat": 40.7867767, "lon": -74.0166893 }, + { "lat": 40.7867649, "lon": -74.0166778 }, + { "lat": 40.7867486, "lon": -74.0166825 }, + { "lat": 40.7866241, "lon": -74.0167789 }, + { "lat": 40.7865794, "lon": -74.0168135 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 774520910, + "bounds": { + "minlat": 40.7869045, + "minlon": -74.0169377, + "maxlat": 40.7872126, + "maxlon": -74.0164486 + }, + "nodes": [ + 7226569130, + 7226569131, + 7226569137, + 7226569132, + 7226569133, + 7226569136, + 7226569134, + 7226569135 + ], + "geometry": [ + { "lat": 40.7872126, "lon": -74.0168307 }, + { "lat": 40.7870406, "lon": -74.0164611 }, + { "lat": 40.7870296, "lon": -74.0164486 }, + { "lat": 40.7870186, "lon": -74.0164511 }, + { "lat": 40.7869109, "lon": -74.0165347 }, + { "lat": 40.7869046, "lon": -74.0165481 }, + { "lat": 40.7869045, "lon": -74.0165628 }, + { "lat": 40.7870745, "lon": -74.0169377 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 774523056, + "bounds": { + "minlat": 40.7932800, + "minlon": -74.0172469, + "maxlat": 40.7936538, + "maxlon": -74.0170337 + }, + "nodes": [ + 103886598, + 7668140065, + 7226579284, + 7226588085, + 7226588086 + ], + "geometry": [ + { "lat": 40.7936538, "lon": -74.0172469 }, + { "lat": 40.7936373, "lon": -74.0172126 }, + { "lat": 40.7936145, "lon": -74.0171651 }, + { "lat": 40.7935432, "lon": -74.0170337 }, + { "lat": 40.7932800, "lon": -74.0172442 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 774529742, + "bounds": { + "minlat": 40.8128110, + "minlon": -73.9230010, + "maxlat": 40.8130124, + "maxlon": -73.9224901 + }, + "nodes": [ + 42732884, + 12040821266, + 7226602744 + ], + "geometry": [ + { "lat": 40.8130124, "lon": -73.9230010 }, + { "lat": 40.8129556, "lon": -73.9228569 }, + { "lat": 40.8128110, "lon": -73.9224901 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 774535187, + "bounds": { + "minlat": 40.7171839, + "minlon": -73.9382420, + "maxlat": 40.7172951, + "maxlon": -73.9378367 + }, + "nodes": [ + 7226686486, + 9695771735, + 7226686489, + 7226686487 + ], + "geometry": [ + { "lat": 40.7171839, "lon": -73.9382420 }, + { "lat": 40.7172217, "lon": -73.9381042 }, + { "lat": 40.7172586, "lon": -73.9379693 }, + { "lat": 40.7172951, "lon": -73.9378367 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 774535188, + "bounds": { + "minlat": 40.7172586, + "minlon": -73.9380553, + "maxlat": 40.7174521, + "maxlon": -73.9379693 + }, + "nodes": [ + 7226686488, + 7226686489 + ], + "geometry": [ + { "lat": 40.7174521, "lon": -73.9380553 }, + { "lat": 40.7172586, "lon": -73.9379693 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 774884170, + "bounds": { + "minlat": 40.8653531, + "minlon": -73.9082019, + "maxlat": 40.8656002, + "maxlon": -73.9076367 + }, + "nodes": [ + 1396352590, + 10170163940, + 7229288595, + 7229288596 + ], + "geometry": [ + { "lat": 40.8656002, "lon": -73.9082019 }, + { "lat": 40.8655813, "lon": -73.9081624 }, + { "lat": 40.8655537, "lon": -73.9081046 }, + { "lat": 40.8653531, "lon": -73.9076367 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 774894394, + "bounds": { + "minlat": 40.8144110, + "minlon": -73.9919184, + "maxlat": 40.8145740, + "maxlon": -73.9914553 + }, + "nodes": [ + 7229404566, + 7229404567, + 7229404568, + 7229404569 + ], + "geometry": [ + { "lat": 40.8144110, "lon": -73.9914553 }, + { "lat": 40.8144462, "lon": -73.9915913 }, + { "lat": 40.8145123, "lon": -73.9918055 }, + { "lat": 40.8145740, "lon": -73.9919184 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 774904792, + "bounds": { + "minlat": 40.7834715, + "minlon": -74.0170284, + "maxlat": 40.7835311, + "maxlon": -74.0169824 + }, + "nodes": [ + 7229534509, + 7617909993, + 7260570500 + ], + "geometry": [ + { "lat": 40.7834715, "lon": -74.0170284 }, + { "lat": 40.7835079, "lon": -74.0170003 }, + { "lat": 40.7835311, "lon": -74.0169824 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 774905943, + "bounds": { + "minlat": 40.7996144, + "minlon": -74.0185601, + "maxlat": 40.7997429, + "maxlon": -74.0181883 + }, + "nodes": [ + 7229559514, + 7229559515, + 7229559516, + 7229559517, + 7229559518 + ], + "geometry": [ + { "lat": 40.7997218, "lon": -74.0185601 }, + { "lat": 40.7996198, "lon": -74.0183439 }, + { "lat": 40.7996144, "lon": -74.0183235 }, + { "lat": 40.7996275, "lon": -74.0183012 }, + { "lat": 40.7997429, "lon": -74.0181883 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 774911995, + "bounds": { + "minlat": 40.8018792, + "minlon": -73.9930896, + "maxlat": 40.8037220, + "maxlon": -73.9914335 + }, + "nodes": [ + 7229615653, + 5156502412, + 5481963195, + 5156502411, + 10801121163, + 10801121165, + 5156502410, + 5156502409, + 5156502408, + 10801121160, + 5156502407, + 5156502406, + 5481963125, + 6901174545, + 5156502405, + 5156502404 + ], + "geometry": [ + { "lat": 40.8018792, "lon": -73.9930896 }, + { "lat": 40.8019266, "lon": -73.9928824 }, + { "lat": 40.8020085, "lon": -73.9927773 }, + { "lat": 40.8020708, "lon": -73.9926973 }, + { "lat": 40.8021358, "lon": -73.9926430 }, + { "lat": 40.8022411, "lon": -73.9925551 }, + { "lat": 40.8023022, "lon": -73.9925042 }, + { "lat": 40.8025540, "lon": -73.9922789 }, + { "lat": 40.8027834, "lon": -73.9921340 }, + { "lat": 40.8028448, "lon": -73.9920930 }, + { "lat": 40.8029763, "lon": -73.9920053 }, + { "lat": 40.8033397, "lon": -73.9917237 }, + { "lat": 40.8034299, "lon": -73.9916615 }, + { "lat": 40.8034544, "lon": -73.9916446 }, + { "lat": 40.8035691, "lon": -73.9915654 }, + { "lat": 40.8037220, "lon": -73.9914335 } + ], + "tags": { + "highway": "residential", + "name": "Somerset Lane" + } +}, +{ + "type": "way", + "id": 774912554, + "bounds": { + "minlat": 40.8239165, + "minlon": -73.9404615, + "maxlat": 40.8245480, + "maxlon": -73.9400167 + }, + "nodes": [ + 7229615769, + 11218442111, + 7229615770, + 7425728705, + 7229615771, + 11218442112, + 7229615772 + ], + "geometry": [ + { "lat": 40.8245480, "lon": -73.9400167 }, + { "lat": 40.8244983, "lon": -73.9400491 }, + { "lat": 40.8244773, "lon": -73.9400628 }, + { "lat": 40.8240448, "lon": -73.9403619 }, + { "lat": 40.8239918, "lon": -73.9403985 }, + { "lat": 40.8239815, "lon": -73.9404071 }, + { "lat": 40.8239165, "lon": -73.9404615 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 774932127, + "bounds": { + "minlat": 40.7112897, + "minlon": -73.9341074, + "maxlat": 40.7121051, + "maxlon": -73.9326947 + }, + "nodes": [ + 7229794598, + 9767625296, + 7229794599, + 7229794602, + 7229794603, + 7229794604, + 7229794610, + 7229794606, + 9767549608, + 7229794607 + ], + "geometry": [ + { "lat": 40.7117996, "lon": -73.9341074 }, + { "lat": 40.7118203, "lon": -73.9340272 }, + { "lat": 40.7118569, "lon": -73.9338858 }, + { "lat": 40.7120401, "lon": -73.9331762 }, + { "lat": 40.7121051, "lon": -73.9329244 }, + { "lat": 40.7115938, "lon": -73.9326947 }, + { "lat": 40.7113464, "lon": -73.9336664 }, + { "lat": 40.7113202, "lon": -73.9337619 }, + { "lat": 40.7113097, "lon": -73.9338002 }, + { "lat": 40.7112897, "lon": -73.9338728 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 774932128, + "bounds": { + "minlat": 40.7113464, + "minlon": -73.9338858, + "maxlat": 40.7118569, + "maxlon": -73.9336664 + }, + "nodes": [ + 7229794599, + 7229794609, + 7229794610 + ], + "geometry": [ + { "lat": 40.7118569, "lon": -73.9338858 }, + { "lat": 40.7118110, "lon": -73.9338652 }, + { "lat": 40.7113464, "lon": -73.9336664 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 774995232, + "bounds": { + "minlat": 40.8783765, + "minlon": -73.9105574, + "maxlat": 40.8790752, + "maxlon": -73.9090280 + }, + "nodes": [ + 42735471, + 10868090802, + 7230395043, + 7230395062, + 7927343773, + 7230395055, + 7230395060, + 7230395039, + 7230395050, + 7927343779, + 7927343780, + 7927343781, + 7927343782, + 7927343783, + 7927355385, + 7927355386, + 7927355387, + 7927355388, + 7927355389 + ], + "geometry": [ + { "lat": 40.8789790, "lon": -73.9090280 }, + { "lat": 40.8788953, "lon": -73.9091214 }, + { "lat": 40.8788799, "lon": -73.9091413 }, + { "lat": 40.8788545, "lon": -73.9091709 }, + { "lat": 40.8787930, "lon": -73.9092424 }, + { "lat": 40.8787476, "lon": -73.9092952 }, + { "lat": 40.8787046, "lon": -73.9093467 }, + { "lat": 40.8786933, "lon": -73.9094176 }, + { "lat": 40.8786998, "lon": -73.9094981 }, + { "lat": 40.8787590, "lon": -73.9096876 }, + { "lat": 40.8787932, "lon": -73.9097458 }, + { "lat": 40.8788009, "lon": -73.9097803 }, + { "lat": 40.8787993, "lon": -73.9098129 }, + { "lat": 40.8787909, "lon": -73.9098454 }, + { "lat": 40.8783856, "lon": -73.9102597 }, + { "lat": 40.8783765, "lon": -73.9103173 }, + { "lat": 40.8785174, "lon": -73.9105574 }, + { "lat": 40.8785610, "lon": -73.9105547 }, + { "lat": 40.8790752, "lon": -73.9098934 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 774995233, + "bounds": { + "minlat": 40.8788889, + "minlon": -73.9097920, + "maxlat": 40.8789683, + "maxlon": -73.9096900 + }, + "nodes": [ + 7230395049, + 7230395045 + ], + "geometry": [ + { "lat": 40.8788889, "lon": -73.9096900 }, + { "lat": 40.8789683, "lon": -73.9097920 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 774995235, + "bounds": { + "minlat": 40.8786998, + "minlon": -73.9096900, + "maxlat": 40.8788889, + "maxlon": -73.9094981 + }, + "nodes": [ + 7230395050, + 7230395049 + ], + "geometry": [ + { "lat": 40.8786998, "lon": -73.9094981 }, + { "lat": 40.8788889, "lon": -73.9096900 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 774995236, + "bounds": { + "minlat": 40.8789683, + "minlon": -73.9099005, + "maxlat": 40.8792402, + "maxlon": -73.9096203 + }, + "nodes": [ + 7230395045, + 7230395057, + 7927355389, + 7230395040, + 7230395058, + 7230395046, + 7230395059, + 7230395041, + 7230395056, + 7230395042 + ], + "geometry": [ + { "lat": 40.8789683, "lon": -73.9097920 }, + { "lat": 40.8790451, "lon": -73.9098852 }, + { "lat": 40.8790752, "lon": -73.9098934 }, + { "lat": 40.8791015, "lon": -73.9099005 }, + { "lat": 40.8791435, "lon": -73.9098968 }, + { "lat": 40.8791767, "lon": -73.9098686 }, + { "lat": 40.8792056, "lon": -73.9098164 }, + { "lat": 40.8792326, "lon": -73.9097654 }, + { "lat": 40.8792402, "lon": -73.9097024 }, + { "lat": 40.8791942, "lon": -73.9096203 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 775085864, + "bounds": { + "minlat": 40.8788799, + "minlon": -73.9096203, + "maxlat": 40.8791942, + "maxlon": -73.9091413 + }, + "nodes": [ + 7230395042, + 7230395061, + 7230395043 + ], + "geometry": [ + { "lat": 40.8791942, "lon": -73.9096203 }, + { "lat": 40.8789465, "lon": -73.9092740 }, + { "lat": 40.8788799, "lon": -73.9091413 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 775152624, + "bounds": { + "minlat": 40.7622049, + "minlon": -73.9301732, + "maxlat": 40.7624757, + "maxlon": -73.9296076 + }, + "nodes": [ + 7231859936, + 7231859937, + 7231859938 + ], + "geometry": [ + { "lat": 40.7622049, "lon": -73.9296076 }, + { "lat": 40.7622616, "lon": -73.9297261 }, + { "lat": 40.7624757, "lon": -73.9301732 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 775163364, + "bounds": { + "minlat": 40.8817905, + "minlon": -73.9739669, + "maxlat": 40.8820522, + "maxlon": -73.9734805 + }, + "nodes": [ + 7231950520, + 7231950521 + ], + "geometry": [ + { "lat": 40.8817905, "lon": -73.9734805 }, + { "lat": 40.8820522, "lon": -73.9739669 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 775168934, + "bounds": { + "minlat": 40.8230611, + "minlon": -73.9148842, + "maxlat": 40.8233581, + "maxlon": -73.9147276 + }, + "nodes": [ + 7232014023, + 7232014024, + 12040069764, + 7232014025 + ], + "geometry": [ + { "lat": 40.8230611, "lon": -73.9148842 }, + { "lat": 40.8231062, "lon": -73.9148604 }, + { "lat": 40.8231155, "lon": -73.9148555 }, + { "lat": 40.8233581, "lon": -73.9147276 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 775740583, + "bounds": { + "minlat": 40.8365457, + "minlon": -73.9907695, + "maxlat": 40.8366177, + "maxlon": -73.9904166 + }, + "nodes": [ + 103318252, + 5108654381, + 440215427 + ], + "geometry": [ + { "lat": 40.8365457, "lon": -73.9904166 }, + { "lat": 40.8366014, "lon": -73.9906921 }, + { "lat": 40.8366177, "lon": -73.9907695 } + ], + "tags": { + "highway": "residential", + "name": "Morningside Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Morningside", + "tiger:name_type": "Ln", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 775839460, + "bounds": { + "minlat": 40.7029473, + "minlon": -73.9437314, + "maxlat": 40.7033098, + "maxlon": -73.9431343 + }, + "nodes": [ + 7237785937, + 9752179216, + 7237785938, + 7225120407 + ], + "geometry": [ + { "lat": 40.7029473, "lon": -73.9436731 }, + { "lat": 40.7030040, "lon": -73.9436837 }, + { "lat": 40.7032581, "lon": -73.9437314 }, + { "lat": 40.7033098, "lon": -73.9431343 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 775867533, + "bounds": { + "minlat": 40.7208653, + "minlon": -73.9372956, + "maxlat": 40.7210320, + "maxlon": -73.9372239 + }, + "nodes": [ + 7238090459, + 9937834429, + 7238090458 + ], + "geometry": [ + { "lat": 40.7210320, "lon": -73.9372956 }, + { "lat": 40.7209950, "lon": -73.9372797 }, + { "lat": 40.7208653, "lon": -73.9372239 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 775870283, + "bounds": { + "minlat": 40.7149266, + "minlon": -73.9387245, + "maxlat": 40.7149917, + "maxlon": -73.9373499 + }, + "nodes": [ + 7238110480, + 9695771677, + 7238110479, + 7238110478 + ], + "geometry": [ + { "lat": 40.7149917, "lon": -73.9387245 }, + { "lat": 40.7149885, "lon": -73.9386693 }, + { "lat": 40.7149591, "lon": -73.9381573 }, + { "lat": 40.7149266, "lon": -73.9373499 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 775870285, + "bounds": { + "minlat": 40.7183488, + "minlon": -73.9275180, + "maxlat": 40.7187795, + "maxlon": -73.9269303 + }, + "nodes": [ + 10225788170, + 10225788178, + 10225788176, + 7238128890 + ], + "geometry": [ + { "lat": 40.7184135, "lon": -73.9274025 }, + { "lat": 40.7186774, "lon": -73.9275180 }, + { "lat": 40.7187795, "lon": -73.9271284 }, + { "lat": 40.7183488, "lon": -73.9269303 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 775870286, + "bounds": { + "minlat": 40.7195416, + "minlon": -73.9263068, + "maxlat": 40.7208512, + "maxlon": -73.9256748 + }, + "nodes": [ + 7707191987, + 7238128895, + 9937797985, + 7238128892 + ], + "geometry": [ + { "lat": 40.7208512, "lon": -73.9263068 }, + { "lat": 40.7203134, "lon": -73.9260473 }, + { "lat": 40.7196532, "lon": -73.9257302 }, + { "lat": 40.7195416, "lon": -73.9256748 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 775887206, + "bounds": { + "minlat": 40.8387508, + "minlon": -73.9235916, + "maxlat": 40.8390588, + "maxlon": -73.9229301 + }, + "nodes": [ + 7238252611, + 7238252612, + 7238252613, + 7238252614, + 7238252615 + ], + "geometry": [ + { "lat": 40.8390588, "lon": -73.9235916 }, + { "lat": 40.8389553, "lon": -73.9233367 }, + { "lat": 40.8388771, "lon": -73.9232147 }, + { "lat": 40.8387960, "lon": -73.9230310 }, + { "lat": 40.8387508, "lon": -73.9229301 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 775904974, + "bounds": { + "minlat": 40.8209617, + "minlon": -73.9888818, + "maxlat": 40.8218063, + "maxlon": -73.9882619 + }, + "nodes": [ + 7238422511, + 7238422512, + 7238422513, + 7238422514, + 7238422515, + 7238422516 + ], + "geometry": [ + { "lat": 40.8209617, "lon": -73.9882619 }, + { "lat": 40.8210685, "lon": -73.9884814 }, + { "lat": 40.8212490, "lon": -73.9888462 }, + { "lat": 40.8212866, "lon": -73.9888796 }, + { "lat": 40.8213503, "lon": -73.9888818 }, + { "lat": 40.8218063, "lon": -73.9884339 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 776143055, + "bounds": { + "minlat": 40.7630710, + "minlon": -73.9317665, + "maxlat": 40.7632115, + "maxlon": -73.9314565 + }, + "nodes": [ + 7241615158, + 7746705673, + 7241615160 + ], + "geometry": [ + { "lat": 40.7632115, "lon": -73.9317665 }, + { "lat": 40.7631492, "lon": -73.9316290 }, + { "lat": 40.7630710, "lon": -73.9314565 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 776399272, + "bounds": { + "minlat": 40.7173639, + "minlon": -73.9402764, + "maxlat": 40.7175396, + "maxlon": -73.9396447 + }, + "nodes": [ + 7244003656, + 9695721709, + 7244003659 + ], + "geometry": [ + { "lat": 40.7173639, "lon": -73.9402764 }, + { "lat": 40.7173782, "lon": -73.9401463 }, + { "lat": 40.7175396, "lon": -73.9396447 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 776401747, + "bounds": { + "minlat": 40.8494875, + "minlon": -73.9725590, + "maxlat": 40.8497489, + "maxlon": -73.9719492 + }, + "nodes": [ + 7244015655, + 7428323502, + 7244015656 + ], + "geometry": [ + { "lat": 40.8497489, "lon": -73.9725590 }, + { "lat": 40.8497284, "lon": -73.9725112 }, + { "lat": 40.8494875, "lon": -73.9719492 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 776405751, + "bounds": { + "minlat": 40.8297031, + "minlon": -73.9187626, + "maxlat": 40.8298757, + "maxlon": -73.9182708 + }, + "nodes": [ + 7244071386, + 13036753052, + 7244071387 + ], + "geometry": [ + { "lat": 40.8298757, "lon": -73.9187626 }, + { "lat": 40.8297344, "lon": -73.9183599 }, + { "lat": 40.8297031, "lon": -73.9182708 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 776456605, + "bounds": { + "minlat": 40.8810432, + "minlon": -73.9185594, + "maxlat": 40.8813370, + "maxlon": -73.9181251 + }, + "nodes": [ + 7244529482, + 7244529483 + ], + "geometry": [ + { "lat": 40.8813370, "lon": -73.9185594 }, + { "lat": 40.8810432, "lon": -73.9181251 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 776496871, + "bounds": { + "minlat": 40.8758627, + "minlon": -73.9512422, + "maxlat": 40.8760644, + "maxlon": -73.9508854 + }, + "nodes": [ + 7244968730, + 8414599716, + 7244968731 + ], + "geometry": [ + { "lat": 40.8758627, "lon": -73.9508854 }, + { "lat": 40.8759550, "lon": -73.9510561 }, + { "lat": 40.8760644, "lon": -73.9512422 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 776614287, + "bounds": { + "minlat": 40.7696883, + "minlon": -73.9876048, + "maxlat": 40.7698032, + "maxlon": -73.9875202 + }, + "nodes": [ + 8448399422, + 7644293507 + ], + "geometry": [ + { "lat": 40.7696883, "lon": -73.9876048 }, + { "lat": 40.7698032, "lon": -73.9875202 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "driveway", + "surface": "paved", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 776677856, + "bounds": { + "minlat": 40.8300172, + "minlon": -73.9363673, + "maxlat": 40.8304141, + "maxlon": -73.9355237 + }, + "nodes": [ + 7246782894, + 7246782895, + 7246782897, + 11298492868, + 42424576 + ], + "geometry": [ + { "lat": 40.8300172, "lon": -73.9355237 }, + { "lat": 40.8302629, "lon": -73.9360791 }, + { "lat": 40.8303399, "lon": -73.9361567 }, + { "lat": 40.8303560, "lon": -73.9362003 }, + { "lat": 40.8304141, "lon": -73.9363673 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 776719654, + "bounds": { + "minlat": 40.7592633, + "minlon": -73.9519977, + "maxlat": 40.7595727, + "maxlon": -73.9516374 + }, + "nodes": [ + 2141121132, + 7247181404, + 7247181405, + 7247181406, + 7247181407, + 7247181408, + 7247181409, + 7247181410, + 7247181411, + 7247181412, + 7247181413, + 8265114440, + 7247181414, + 7247181415 + ], + "geometry": [ + { "lat": 40.7595186, "lon": -73.9516374 }, + { "lat": 40.7595620, "lon": -73.9517315 }, + { "lat": 40.7595699, "lon": -73.9517513 }, + { "lat": 40.7595727, "lon": -73.9517804 }, + { "lat": 40.7595701, "lon": -73.9518039 }, + { "lat": 40.7595656, "lon": -73.9518213 }, + { "lat": 40.7595503, "lon": -73.9518448 }, + { "lat": 40.7593868, "lon": -73.9519930 }, + { "lat": 40.7593715, "lon": -73.9519963 }, + { "lat": 40.7593614, "lon": -73.9519977 }, + { "lat": 40.7593426, "lon": -73.9519917 }, + { "lat": 40.7593296, "lon": -73.9519801 }, + { "lat": 40.7593101, "lon": -73.9519628 }, + { "lat": 40.7592633, "lon": -73.9518874 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 776723863, + "bounds": { + "minlat": 40.8327401, + "minlon": -73.9919416, + "maxlat": 40.8331132, + "maxlon": -73.9913336 + }, + "nodes": [ + 7247225806, + 13527758494, + 7247225807, + 7247225808, + 7247225809, + 7247225810, + 7247225811, + 7247225812, + 7247225813, + 7247225814, + 7247225815, + 7247225816, + 7247225817, + 7247225818 + ], + "geometry": [ + { "lat": 40.8329481, "lon": -73.9913336 }, + { "lat": 40.8330127, "lon": -73.9914352 }, + { "lat": 40.8330465, "lon": -73.9914884 }, + { "lat": 40.8330890, "lon": -73.9915606 }, + { "lat": 40.8331089, "lon": -73.9916075 }, + { "lat": 40.8331132, "lon": -73.9916465 }, + { "lat": 40.8331080, "lon": -73.9916774 }, + { "lat": 40.8330942, "lon": -73.9917026 }, + { "lat": 40.8330612, "lon": -73.9917415 }, + { "lat": 40.8330040, "lon": -73.9917988 }, + { "lat": 40.8329399, "lon": -73.9918537 }, + { "lat": 40.8328715, "lon": -73.9918961 }, + { "lat": 40.8328030, "lon": -73.9919213 }, + { "lat": 40.8327401, "lon": -73.9919416 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 776858323, + "bounds": { + "minlat": 40.7612490, + "minlon": -73.9721939, + "maxlat": 40.7614708, + "maxlon": -73.9718847 + }, + "nodes": [ + 8914958309, + 11299075976, + 7248575866, + 7248575878, + 11299075977, + 7248586387 + ], + "geometry": [ + { "lat": 40.7612490, "lon": -73.9719719 }, + { "lat": 40.7613072, "lon": -73.9719323 }, + { "lat": 40.7613770, "lon": -73.9718847 }, + { "lat": 40.7614708, "lon": -73.9721036 }, + { "lat": 40.7613998, "lon": -73.9721532 }, + { "lat": 40.7613415, "lon": -73.9721939 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxheight": "9'5\"", + "oneway": "yes", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 776890557, + "bounds": { + "minlat": 40.7007540, + "minlon": -73.9627849, + "maxlat": 40.7008158, + "maxlon": -73.9626289 + }, + "nodes": [ + 7248919875, + 9776829340, + 7248919876, + 7248919879 + ], + "geometry": [ + { "lat": 40.7007540, "lon": -73.9627849 }, + { "lat": 40.7007886, "lon": -73.9627297 }, + { "lat": 40.7008158, "lon": -73.9626903 }, + { "lat": 40.7007649, "lon": -73.9626289 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 776890558, + "bounds": { + "minlat": 40.7007060, + "minlon": -73.9626289, + "maxlat": 40.7007649, + "maxlon": -73.9625580 + }, + "nodes": [ + 7248919879, + 7248919880 + ], + "geometry": [ + { "lat": 40.7007649, "lon": -73.9626289 }, + { "lat": 40.7007060, "lon": -73.9625580 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 776890559, + "bounds": { + "minlat": 40.7006068, + "minlon": -73.9625993, + "maxlat": 40.7007060, + "maxlon": -73.9625103 + }, + "nodes": [ + 7248919880, + 7248919881, + 9776829339, + 7248919878 + ], + "geometry": [ + { "lat": 40.7007060, "lon": -73.9625580 }, + { "lat": 40.7006663, "lon": -73.9625103 }, + { "lat": 40.7006429, "lon": -73.9625441 }, + { "lat": 40.7006068, "lon": -73.9625993 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 776890560, + "bounds": { + "minlat": 40.7006270, + "minlon": -73.9625103, + "maxlat": 40.7007249, + "maxlon": -73.9623053 + }, + "nodes": [ + 7248919881, + 7248919882, + 9776829344, + 7248919883 + ], + "geometry": [ + { "lat": 40.7006663, "lon": -73.9625103 }, + { "lat": 40.7007249, "lon": -73.9624256 }, + { "lat": 40.7006712, "lon": -73.9623610 }, + { "lat": 40.7006270, "lon": -73.9623053 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 776891421, + "bounds": { + "minlat": 40.7143715, + "minlon": -73.9157347, + "maxlat": 40.7155429, + "maxlon": -73.9143105 + }, + "nodes": [ + 7248977677, + 9755788620, + 7248977678, + 7248977679 + ], + "geometry": [ + { "lat": 40.7143715, "lon": -73.9143105 }, + { "lat": 40.7144493, "lon": -73.9144055 }, + { "lat": 40.7148731, "lon": -73.9149227 }, + { "lat": 40.7155429, "lon": -73.9157347 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 776896494, + "bounds": { + "minlat": 40.8532801, + "minlon": -74.0203650, + "maxlat": 40.8534393, + "maxlon": -74.0197375 + }, + "nodes": [ + 7249039275, + 7249039276, + 7249039277, + 7249039278 + ], + "geometry": [ + { "lat": 40.8532801, "lon": -74.0203650 }, + { "lat": 40.8534148, "lon": -74.0202454 }, + { "lat": 40.8534393, "lon": -74.0201606 }, + { "lat": 40.8533081, "lon": -74.0197375 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 776913022, + "bounds": { + "minlat": 40.8191939, + "minlon": -73.9881124, + "maxlat": 40.8192641, + "maxlon": -73.9877713 + }, + "nodes": [ + 7249252908, + 7249252909 + ], + "geometry": [ + { "lat": 40.8191939, "lon": -73.9877713 }, + { "lat": 40.8192641, "lon": -73.9881124 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 776915127, + "bounds": { + "minlat": 40.8158518, + "minlon": -73.9235899, + "maxlat": 40.8160082, + "maxlon": -73.9229708 + }, + "nodes": [ + 7249274765, + 12040837232, + 7249274768 + ], + "geometry": [ + { "lat": 40.8160082, "lon": -73.9235899 }, + { "lat": 40.8159804, "lon": -73.9234798 }, + { "lat": 40.8158518, "lon": -73.9229708 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 776918299, + "bounds": { + "minlat": 40.7541125, + "minlon": -73.9094543, + "maxlat": 40.7542658, + "maxlon": -73.9091310 + }, + "nodes": [ + 7249269950, + 7249269951, + 7249269952 + ], + "geometry": [ + { "lat": 40.7541125, "lon": -73.9091310 }, + { "lat": 40.7541688, "lon": -73.9092496 }, + { "lat": 40.7542658, "lon": -73.9094543 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 776922449, + "bounds": { + "minlat": 40.7343566, + "minlon": -73.9442873, + "maxlat": 40.7354787, + "maxlon": -73.9435952 + }, + "nodes": [ + 7249337122, + 7249337123, + 7249337124 + ], + "geometry": [ + { "lat": 40.7354787, "lon": -73.9435952 }, + { "lat": 40.7347450, "lon": -73.9440592 }, + { "lat": 40.7343566, "lon": -73.9442873 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 776925621, + "bounds": { + "minlat": 40.8465503, + "minlon": -73.9311059, + "maxlat": 40.8468270, + "maxlon": -73.9307067 + }, + "nodes": [ + 12065306242, + 12065306239, + 12065306238, + 7249365349, + 7249365351, + 12065306241, + 7249365350, + 12065306237 + ], + "geometry": [ + { "lat": 40.8468270, "lon": -73.9307067 }, + { "lat": 40.8467807, "lon": -73.9307913 }, + { "lat": 40.8467649, "lon": -73.9308107 }, + { "lat": 40.8467466, "lon": -73.9308263 }, + { "lat": 40.8467262, "lon": -73.9308418 }, + { "lat": 40.8466906, "lon": -73.9308669 }, + { "lat": 40.8465503, "lon": -73.9309658 }, + { "lat": 40.8466101, "lon": -73.9311059 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 776983924, + "bounds": { + "minlat": 40.8725780, + "minlon": -73.9177338, + "maxlat": 40.8739112, + "maxlon": -73.9173640 + }, + "nodes": [ + 7249923670, + 7249923671, + 9561143923, + 7249923672, + 7249923673, + 7249923674, + 7249923675, + 7249923676, + 7249923677, + 7249923678, + 7249923679, + 11540180869, + 7249923680, + 11548968328, + 11540156266, + 11540156267, + 11540156268 + ], + "geometry": [ + { "lat": 40.8725780, "lon": -73.9173697 }, + { "lat": 40.8726646, "lon": -73.9173640 }, + { "lat": 40.8726790, "lon": -73.9173651 }, + { "lat": 40.8726955, "lon": -73.9173663 }, + { "lat": 40.8727305, "lon": -73.9173817 }, + { "lat": 40.8727520, "lon": -73.9173971 }, + { "lat": 40.8728225, "lon": -73.9174826 }, + { "lat": 40.8729506, "lon": -73.9176282 }, + { "lat": 40.8730281, "lon": -73.9176798 }, + { "lat": 40.8730898, "lon": -73.9177052 }, + { "lat": 40.8731858, "lon": -73.9177338 }, + { "lat": 40.8732576, "lon": -73.9177234 }, + { "lat": 40.8733180, "lon": -73.9177147 }, + { "lat": 40.8733994, "lon": -73.9176651 }, + { "lat": 40.8735216, "lon": -73.9175905 }, + { "lat": 40.8737050, "lon": -73.9174566 }, + { "lat": 40.8739112, "lon": -73.9177197 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 777001661, + "bounds": { + "minlat": 40.7346598, + "minlon": -73.9447929, + "maxlat": 40.7359485, + "maxlon": -73.9439853 + }, + "nodes": [ + 7250063780, + 7250063781, + 7250063782, + 7250063783, + 7250063784, + 7250083485, + 7250083486 + ], + "geometry": [ + { "lat": 40.7346598, "lon": -73.9447929 }, + { "lat": 40.7348521, "lon": -73.9446311 }, + { "lat": 40.7350268, "lon": -73.9445177 }, + { "lat": 40.7350766, "lon": -73.9444614 }, + { "lat": 40.7353022, "lon": -73.9443259 }, + { "lat": 40.7353937, "lon": -73.9442991 }, + { "lat": 40.7359485, "lon": -73.9439853 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 777027312, + "bounds": { + "minlat": 40.7982110, + "minlon": -74.0032192, + "maxlat": 40.7984025, + "maxlon": -74.0030472 + }, + "nodes": [ + 7250289719, + 7678477443, + 7250289720, + 7250289721 + ], + "geometry": [ + { "lat": 40.7982110, "lon": -74.0032192 }, + { "lat": 40.7982522, "lon": -74.0031818 }, + { "lat": 40.7983097, "lon": -74.0031296 }, + { "lat": 40.7984025, "lon": -74.0030472 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 777027313, + "bounds": { + "minlat": 40.7981088, + "minlon": -74.0030016, + "maxlat": 40.7982956, + "maxlon": -74.0028528 + }, + "nodes": [ + 7250289722, + 7678477442, + 7250289726, + 7250289723, + 7250289724, + 7250289725 + ], + "geometry": [ + { "lat": 40.7981088, "lon": -74.0030016 }, + { "lat": 40.7981518, "lon": -74.0029689 }, + { "lat": 40.7981600, "lon": -74.0029627 }, + { "lat": 40.7981855, "lon": -74.0029433 }, + { "lat": 40.7982230, "lon": -74.0029064 }, + { "lat": 40.7982956, "lon": -74.0028528 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 777386528, + "bounds": { + "minlat": 40.8810986, + "minlon": -73.9533205, + "maxlat": 40.8814676, + "maxlon": -73.9529140 + }, + "nodes": [ + 5719809847, + 7991113590, + 9239519764, + 103187020 + ], + "geometry": [ + { "lat": 40.8810986, "lon": -73.9533205 }, + { "lat": 40.8811350, "lon": -73.9532802 }, + { "lat": 40.8814047, "lon": -73.9529731 }, + { "lat": 40.8814676, "lon": -73.9529140 } + ], + "tags": { + "highway": "residential", + "name": "Floyd Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Floyd", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 777613996, + "bounds": { + "minlat": 40.8816182, + "minlon": -73.9832500, + "maxlat": 40.8829474, + "maxlon": -73.9821307 + }, + "nodes": [ + 7256921775, + 7256921765, + 7256921776, + 7256921766, + 7256921767, + 7256921768, + 7256921769, + 7256921770, + 7256921771, + 7256921772, + 7256921773, + 7256921774 + ], + "geometry": [ + { "lat": 40.8816182, "lon": -73.9830435 }, + { "lat": 40.8816504, "lon": -73.9831063 }, + { "lat": 40.8816629, "lon": -73.9831296 }, + { "lat": 40.8817270, "lon": -73.9832500 }, + { "lat": 40.8818728, "lon": -73.9831497 }, + { "lat": 40.8819515, "lon": -73.9831892 }, + { "lat": 40.8822249, "lon": -73.9830301 }, + { "lat": 40.8825195, "lon": -73.9828517 }, + { "lat": 40.8829474, "lon": -73.9825605 }, + { "lat": 40.8828257, "lon": -73.9822404 }, + { "lat": 40.8826463, "lon": -73.9823436 }, + { "lat": 40.8825349, "lon": -73.9821307 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 777613997, + "bounds": { + "minlat": 40.8816182, + "minlon": -73.9830435, + "maxlat": 40.8819228, + "maxlon": -73.9828323 + }, + "nodes": [ + 7256921775, + 7256921777 + ], + "geometry": [ + { "lat": 40.8816182, "lon": -73.9830435 }, + { "lat": 40.8819228, "lon": -73.9828323 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 777613998, + "bounds": { + "minlat": 40.8818305, + "minlon": -73.9828323, + "maxlat": 40.8819228, + "maxlon": -73.9825990 + }, + "nodes": [ + 7256921777, + 4207692889 + ], + "geometry": [ + { "lat": 40.8819228, "lon": -73.9828323 }, + { "lat": 40.8818305, "lon": -73.9825990 } + ], + "tags": { + "access": "customers", + "covered": "no", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 777613999, + "bounds": { + "minlat": 40.8807586, + "minlon": -73.9831806, + "maxlat": 40.8811376, + "maxlon": -73.9818657 + }, + "nodes": [ + 7256921778, + 13525915032, + 7256921783, + 7256921779, + 7256921780, + 7256921781, + 7256921784, + 13525915041, + 7256921782 + ], + "geometry": [ + { "lat": 40.8808818, "lon": -73.9831806 }, + { "lat": 40.8808667, "lon": -73.9831099 }, + { "lat": 40.8808645, "lon": -73.9830997 }, + { "lat": 40.8808421, "lon": -73.9829949 }, + { "lat": 40.8811376, "lon": -73.9826731 }, + { "lat": 40.8807586, "lon": -73.9820297 }, + { "lat": 40.8808557, "lon": -73.9819451 }, + { "lat": 40.8808723, "lon": -73.9819287 }, + { "lat": 40.8809360, "lon": -73.9818657 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 777628725, + "bounds": { + "minlat": 40.7106171, + "minlon": -73.9431357, + "maxlat": 40.7109626, + "maxlon": -73.9428794 + }, + "nodes": [ + 7257058083, + 9752590858, + 7257058084, + 7257100485, + 7257100486 + ], + "geometry": [ + { "lat": 40.7109626, "lon": -73.9431357 }, + { "lat": 40.7108890, "lon": -73.9431006 }, + { "lat": 40.7108021, "lon": -73.9430511 }, + { "lat": 40.7107371, "lon": -73.9429378 }, + { "lat": 40.7106171, "lon": -73.9428794 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 777633690, + "bounds": { + "minlat": 40.8252091, + "minlon": -73.9172878, + "maxlat": 40.8257105, + "maxlon": -73.9167812 + }, + "nodes": [ + 7257137825, + 7257137826, + 7257137827, + 7257137828, + 7257137829, + 7257137830, + 7257137832, + 12038478927, + 7257137831 + ], + "geometry": [ + { "lat": 40.8256537, "lon": -73.9167812 }, + { "lat": 40.8257105, "lon": -73.9169487 }, + { "lat": 40.8257068, "lon": -73.9169854 }, + { "lat": 40.8256936, "lon": -73.9170189 }, + { "lat": 40.8256743, "lon": -73.9170412 }, + { "lat": 40.8256224, "lon": -73.9170747 }, + { "lat": 40.8254143, "lon": -73.9171786 }, + { "lat": 40.8253077, "lon": -73.9172353 }, + { "lat": 40.8252091, "lon": -73.9172878 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 777634831, + "bounds": { + "minlat": 40.7098975, + "minlon": -73.9453347, + "maxlat": 40.7101832, + "maxlon": -73.9436712 + }, + "nodes": [ + 13232730049, + 13232730048, + 7257110360, + 7257110361, + 7257110362, + 7257110364, + 9755354481, + 7257110365 + ], + "geometry": [ + { "lat": 40.7101832, "lon": -73.9436712 }, + { "lat": 40.7101712, "lon": -73.9437833 }, + { "lat": 40.7101673, "lon": -73.9438192 }, + { "lat": 40.7100280, "lon": -73.9452001 }, + { "lat": 40.7099108, "lon": -73.9451834 }, + { "lat": 40.7099057, "lon": -73.9452287 }, + { "lat": 40.7099036, "lon": -73.9452564 }, + { "lat": 40.7098975, "lon": -73.9453347 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 777634832, + "bounds": { + "minlat": 40.7093580, + "minlon": -73.9452441, + "maxlat": 40.7095234, + "maxlon": -73.9435637 + }, + "nodes": [ + 7257110366, + 9752593848, + 7257110367, + 7257110368, + 9752593843, + 7257110369 + ], + "geometry": [ + { "lat": 40.7095234, "lon": -73.9435637 }, + { "lat": 40.7095129, "lon": -73.9436809 }, + { "lat": 40.7095095, "lon": -73.9437184 }, + { "lat": 40.7093710, "lon": -73.9450949 }, + { "lat": 40.7093647, "lon": -73.9451672 }, + { "lat": 40.7093580, "lon": -73.9452441 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 777647850, + "bounds": { + "minlat": 40.7376738, + "minlon": -73.9379951, + "maxlat": 40.7377575, + "maxlon": -73.9377800 + }, + "nodes": [ + 7257272785, + 13048014421, + 7257272786 + ], + "geometry": [ + { "lat": 40.7376738, "lon": -73.9379951 }, + { "lat": 40.7377041, "lon": -73.9379172 }, + { "lat": 40.7377575, "lon": -73.9377800 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 777891755, + "bounds": { + "minlat": 40.8339632, + "minlon": -73.9724257, + "maxlat": 40.8341541, + "maxlon": -73.9719891 + }, + "nodes": [ + 7259829436, + 7672312188, + 7259829435, + 7259829437, + 7259829438 + ], + "geometry": [ + { "lat": 40.8339632, "lon": -73.9719891 }, + { "lat": 40.8339963, "lon": -73.9720753 }, + { "lat": 40.8340305, "lon": -73.9721645 }, + { "lat": 40.8340975, "lon": -73.9721676 }, + { "lat": 40.8341541, "lon": -73.9724257 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 777897123, + "bounds": { + "minlat": 40.8411615, + "minlon": -73.9988206, + "maxlat": 40.8414780, + "maxlon": -73.9985689 + }, + "nodes": [ + 5978850768, + 7259873844, + 7259873840, + 7259873834 + ], + "geometry": [ + { "lat": 40.8411615, "lon": -73.9988206 }, + { "lat": 40.8412363, "lon": -73.9987582 }, + { "lat": 40.8414108, "lon": -73.9986126 }, + { "lat": 40.8414780, "lon": -73.9985689 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 777897124, + "bounds": { + "minlat": 40.8414567, + "minlon": -73.9993136, + "maxlat": 40.8414699, + "maxlon": -73.9990654 + }, + "nodes": [ + 7259873835, + 7259873836, + 7259873841 + ], + "geometry": [ + { "lat": 40.8414567, "lon": -73.9993136 }, + { "lat": 40.8414699, "lon": -73.9991581 }, + { "lat": 40.8414670, "lon": -73.9990654 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 777897125, + "bounds": { + "minlat": 40.8414108, + "minlon": -73.9990654, + "maxlat": 40.8414670, + "maxlon": -73.9986126 + }, + "nodes": [ + 7259873841, + 7259873837, + 7259873838, + 7259873839, + 7259873840 + ], + "geometry": [ + { "lat": 40.8414670, "lon": -73.9990654 }, + { "lat": 40.8414646, "lon": -73.9989909 }, + { "lat": 40.8414620, "lon": -73.9988759 }, + { "lat": 40.8414313, "lon": -73.9986860 }, + { "lat": 40.8414108, "lon": -73.9986126 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 777897126, + "bounds": { + "minlat": 40.8412363, + "minlon": -73.9990654, + "maxlat": 40.8414670, + "maxlon": -73.9987582 + }, + "nodes": [ + 7259873841, + 7259873842, + 7259873843, + 7259873844 + ], + "geometry": [ + { "lat": 40.8414670, "lon": -73.9990654 }, + { "lat": 40.8414012, "lon": -73.9989932 }, + { "lat": 40.8413055, "lon": -73.9989235 }, + { "lat": 40.8412363, "lon": -73.9987582 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 777897127, + "bounds": { + "minlat": 40.8409910, + "minlon": -73.9967456, + "maxlat": 40.8410478, + "maxlon": -73.9960992 + }, + "nodes": [ + 7259873847, + 7259873846, + 7259873849, + 7259873845 + ], + "geometry": [ + { "lat": 40.8410478, "lon": -73.9960992 }, + { "lat": 40.8410066, "lon": -73.9965708 }, + { "lat": 40.8409910, "lon": -73.9966697 }, + { "lat": 40.8410095, "lon": -73.9967456 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 777897128, + "bounds": { + "minlat": 40.8409751, + "minlon": -73.9960992, + "maxlat": 40.8410478, + "maxlon": -73.9958345 + }, + "nodes": [ + 7259873847, + 7259873848, + 766720053 + ], + "geometry": [ + { "lat": 40.8410478, "lon": -73.9960992 }, + { "lat": 40.8410014, "lon": -73.9960228 }, + { "lat": 40.8409751, "lon": -73.9958345 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 777897129, + "bounds": { + "minlat": 40.8410095, + "minlon": -73.9970408, + "maxlat": 40.8411752, + "maxlon": -73.9967456 + }, + "nodes": [ + 7259873845, + 103208156 + ], + "geometry": [ + { "lat": 40.8410095, "lon": -73.9967456 }, + { "lat": 40.8411752, "lon": -73.9970408 } + ], + "tags": { + "highway": "service", + "name": "East Ruby Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 777898793, + "bounds": { + "minlat": 40.8191146, + "minlon": -74.0075489, + "maxlat": 40.8196552, + "maxlon": -74.0073296 + }, + "nodes": [ + 7259896920, + 7259896921, + 7259896922, + 7259896923, + 7259896924 + ], + "geometry": [ + { "lat": 40.8191146, "lon": -74.0075489 }, + { "lat": 40.8192189, "lon": -74.0074910 }, + { "lat": 40.8192857, "lon": -74.0074746 }, + { "lat": 40.8193678, "lon": -74.0074191 }, + { "lat": 40.8196552, "lon": -74.0073296 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 777913619, + "bounds": { + "minlat": 40.7597508, + "minlon": -73.9089962, + "maxlat": 40.7607234, + "maxlon": -73.9082052 + }, + "nodes": [ + 7259995704, + 7259995705, + 7259995709 + ], + "geometry": [ + { "lat": 40.7607234, "lon": -73.9082052 }, + { "lat": 40.7606502, "lon": -73.9082648 }, + { "lat": 40.7597508, "lon": -73.9089962 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 777953699, + "bounds": { + "minlat": 40.8268221, + "minlon": -73.9197290, + "maxlat": 40.8270992, + "maxlon": -73.9188623 + }, + "nodes": [ + 42731620, + 12038479043, + 7260432322, + 7260432323, + 13033466793, + 42732934 + ], + "geometry": [ + { "lat": 40.8270992, "lon": -73.9197290 }, + { "lat": 40.8270765, "lon": -73.9196580 }, + { "lat": 40.8270695, "lon": -73.9196361 }, + { "lat": 40.8268580, "lon": -73.9189747 }, + { "lat": 40.8268477, "lon": -73.9189424 }, + { "lat": 40.8268221, "lon": -73.9188623 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 777966730, + "bounds": { + "minlat": 40.7835311, + "minlon": -74.0169824, + "maxlat": 40.7837272, + "maxlon": -74.0168311 + }, + "nodes": [ + 7260570500, + 7229534510 + ], + "geometry": [ + { "lat": 40.7835311, "lon": -74.0169824 }, + { "lat": 40.7837272, "lon": -74.0168311 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 778007333, + "bounds": { + "minlat": 40.8163297, + "minlon": -73.9587912, + "maxlat": 40.8167172, + "maxlon": -73.9578477 + }, + "nodes": [ + 2541754794, + 7732654931, + 10050036790, + 12529272684 + ], + "geometry": [ + { "lat": 40.8163297, "lon": -73.9578477 }, + { "lat": 40.8163681, "lon": -73.9579439 }, + { "lat": 40.8164094, "lon": -73.9580458 }, + { "lat": 40.8167172, "lon": -73.9587912 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 129th Street", + "name_1": "West 129 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 778007334, + "bounds": { + "minlat": 40.8179163, + "minlon": -73.9529452, + "maxlat": 40.8186141, + "maxlon": -73.9524433 + }, + "nodes": [ + 12761970583, + 10170977549, + 42435997, + 10170977547, + 13006171695 + ], + "geometry": [ + { "lat": 40.8179163, "lon": -73.9529452 }, + { "lat": 40.8181648, "lon": -73.9527699 }, + { "lat": 40.8182343, "lon": -73.9527209 }, + { "lat": 40.8182718, "lon": -73.9526935 }, + { "lat": 40.8186141, "lon": -73.9524433 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 778282648, + "bounds": { + "minlat": 40.8356178, + "minlon": -74.0188327, + "maxlat": 40.8363428, + "maxlon": -74.0182278 + }, + "nodes": [ + 7263805319, + 7263805320, + 7263805321, + 7263805322, + 7263805323, + 7263805324, + 7263805325, + 7263805326 + ], + "geometry": [ + { "lat": 40.8356178, "lon": -74.0182278 }, + { "lat": 40.8359798, "lon": -74.0188097 }, + { "lat": 40.8359926, "lon": -74.0188218 }, + { "lat": 40.8360220, "lon": -74.0188327 }, + { "lat": 40.8360513, "lon": -74.0188291 }, + { "lat": 40.8363126, "lon": -74.0185407 }, + { "lat": 40.8363263, "lon": -74.0184995 }, + { "lat": 40.8363428, "lon": -74.0184328 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 778282649, + "bounds": { + "minlat": 40.8363230, + "minlon": -74.0184328, + "maxlat": 40.8363483, + "maxlon": -74.0181390 + }, + "nodes": [ + 7263805326, + 7263805327, + 7263805328, + 103198931 + ], + "geometry": [ + { "lat": 40.8363428, "lon": -74.0184328 }, + { "lat": 40.8363483, "lon": -74.0183698 }, + { "lat": 40.8363483, "lon": -74.0183286 }, + { "lat": 40.8363230, "lon": -74.0181390 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 778461872, + "bounds": { + "minlat": 40.7372233, + "minlon": -73.9377100, + "maxlat": 40.7374445, + "maxlon": -73.9371457 + }, + "nodes": [ + 7257272787, + 13048014419, + 7265420383 + ], + "geometry": [ + { "lat": 40.7374445, "lon": -73.9371457 }, + { "lat": 40.7372550, "lon": -73.9376291 }, + { "lat": 40.7372233, "lon": -73.9377100 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 778466008, + "bounds": { + "minlat": 40.8065917, + "minlon": -74.0164263, + "maxlat": 40.8071719, + "maxlon": -74.0159492 + }, + "nodes": [ + 7265483739, + 7265483740, + 7265483741, + 7265483742, + 7265483743, + 7265483744 + ], + "geometry": [ + { "lat": 40.8065917, "lon": -74.0164263 }, + { "lat": 40.8066362, "lon": -74.0163947 }, + { "lat": 40.8070420, "lon": -74.0160712 }, + { "lat": 40.8070823, "lon": -74.0160244 }, + { "lat": 40.8071310, "lon": -74.0159762 }, + { "lat": 40.8071719, "lon": -74.0159492 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 778478271, + "bounds": { + "minlat": 40.8618067, + "minlon": -73.9216730, + "maxlat": 40.8622397, + "maxlon": -73.9208687 + }, + "nodes": [ + 7265584430, + 7265584431, + 7265584432, + 7265584433, + 7265584434, + 7265584436, + 9561344652, + 7265584435 + ], + "geometry": [ + { "lat": 40.8621605, "lon": -73.9216730 }, + { "lat": 40.8622374, "lon": -73.9215251 }, + { "lat": 40.8622397, "lon": -73.9214527 }, + { "lat": 40.8622106, "lon": -73.9213464 }, + { "lat": 40.8619671, "lon": -73.9211308 }, + { "lat": 40.8619101, "lon": -73.9210376 }, + { "lat": 40.8618786, "lon": -73.9209862 }, + { "lat": 40.8618067, "lon": -73.9208687 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 778756862, + "bounds": { + "minlat": 40.8425517, + "minlon": -74.0024608, + "maxlat": 40.8428001, + "maxlon": -74.0022281 + }, + "nodes": [ + 7271115891, + 7271115892 + ], + "geometry": [ + { "lat": 40.8425517, "lon": -74.0024608 }, + { "lat": 40.8428001, "lon": -74.0022281 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 778756863, + "bounds": { + "minlat": 40.8426684, + "minlon": -74.0026726, + "maxlat": 40.8429148, + "maxlon": -74.0024056 + }, + "nodes": [ + 7271115893, + 7271115894 + ], + "geometry": [ + { "lat": 40.8426684, "lon": -74.0026726 }, + { "lat": 40.8429148, "lon": -74.0024056 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 778759356, + "bounds": { + "minlat": 40.8815519, + "minlon": -73.9715610, + "maxlat": 40.8819136, + "maxlon": -73.9712299 + }, + "nodes": [ + 7271130676, + 7271130677, + 7271130678, + 7271130679, + 7271130680, + 7271130681 + ], + "geometry": [ + { "lat": 40.8815519, "lon": -73.9715610 }, + { "lat": 40.8816125, "lon": -73.9714813 }, + { "lat": 40.8816777, "lon": -73.9714050 }, + { "lat": 40.8817422, "lon": -73.9713499 }, + { "lat": 40.8818347, "lon": -73.9712816 }, + { "lat": 40.8819136, "lon": -73.9712299 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 778762715, + "bounds": { + "minlat": 40.8813901, + "minlon": -73.9623551, + "maxlat": 40.8819205, + "maxlon": -73.9619712 + }, + "nodes": [ + 7271149282, + 7271149283, + 7271149284, + 7271168485, + 7271168486, + 7271168487, + 7271168488, + 7271168489, + 7271168490, + 7271168491, + 7271168492, + 7271168493, + 7271168494, + 7271168495, + 7271168485 + ], + "geometry": [ + { "lat": 40.8819205, "lon": -73.9623551 }, + { "lat": 40.8818847, "lon": -73.9622918 }, + { "lat": 40.8818191, "lon": -73.9621831 }, + { "lat": 40.8817835, "lon": -73.9621446 }, + { "lat": 40.8817576, "lon": -73.9621167 }, + { "lat": 40.8817058, "lon": -73.9620761 }, + { "lat": 40.8815666, "lon": -73.9619862 }, + { "lat": 40.8815261, "lon": -73.9619712 }, + { "lat": 40.8814144, "lon": -73.9620739 }, + { "lat": 40.8813901, "lon": -73.9621489 }, + { "lat": 40.8813934, "lon": -73.9622174 }, + { "lat": 40.8814306, "lon": -73.9622709 }, + { "lat": 40.8814613, "lon": -73.9622773 }, + { "lat": 40.8815245, "lon": -73.9622816 }, + { "lat": 40.8817835, "lon": -73.9621446 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 778762962, + "bounds": { + "minlat": 40.7074841, + "minlon": -73.9341842, + "maxlat": 40.7080507, + "maxlon": -73.9339286 + }, + "nodes": [ + 42496377, + 9755371960, + 9767549606 + ], + "geometry": [ + { "lat": 40.7074841, "lon": -73.9339286 }, + { "lat": 40.7075626, "lon": -73.9339641 }, + { "lat": 40.7080507, "lon": -73.9341842 } + ], + "tags": { + "highway": "residential", + "name": "Bogart Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 778763788, + "bounds": { + "minlat": 40.8627547, + "minlon": -73.9255660, + "maxlat": 40.8630304, + "maxlon": -73.9249426 + }, + "nodes": [ + 7271168431, + 9561420874, + 7271168432, + 7271168433, + 7271168434, + 9561420875, + 7271168435 + ], + "geometry": [ + { "lat": 40.8627547, "lon": -73.9249426 }, + { "lat": 40.8628310, "lon": -73.9249890 }, + { "lat": 40.8630174, "lon": -73.9251159 }, + { "lat": 40.8630280, "lon": -73.9251284 }, + { "lat": 40.8630304, "lon": -73.9251463 }, + { "lat": 40.8629260, "lon": -73.9254397 }, + { "lat": 40.8628811, "lon": -73.9255660 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 778783015, + "bounds": { + "minlat": 40.8059889, + "minlon": -73.9147000, + "maxlat": 40.8061602, + "maxlon": -73.9142579 + }, + "nodes": [ + 7271351527, + 7271351529, + 7271351528 + ], + "geometry": [ + { "lat": 40.8059889, "lon": -73.9142579 }, + { "lat": 40.8060417, "lon": -73.9143940 }, + { "lat": 40.8061602, "lon": -73.9147000 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 778788929, + "bounds": { + "minlat": 40.7257330, + "minlon": -73.9852256, + "maxlat": 40.7259462, + "maxlon": -73.9850815 + }, + "nodes": [ + 7271387072, + 7271387073, + 7271387076, + 7271387074 + ], + "geometry": [ + { "lat": 40.7259462, "lon": -73.9850815 }, + { "lat": 40.7258897, "lon": -73.9851197 }, + { "lat": 40.7258714, "lon": -73.9851320 }, + { "lat": 40.7257330, "lon": -73.9852256 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 778788964, + "bounds": { + "minlat": 40.8122358, + "minlon": -74.0117173, + "maxlat": 40.8123973, + "maxlon": -74.0115564 + }, + "nodes": [ + 103867750, + 103858398 + ], + "geometry": [ + { "lat": 40.8122358, "lon": -74.0117173 }, + { "lat": 40.8123973, "lon": -74.0115564 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 778793639, + "bounds": { + "minlat": 40.7267276, + "minlon": -73.9084905, + "maxlat": 40.7270436, + "maxlon": -73.9080356 + }, + "nodes": [ + 7271432596, + 7271432597, + 11925728885, + 42916205 + ], + "geometry": [ + { "lat": 40.7270436, "lon": -73.9084905 }, + { "lat": 40.7267980, "lon": -73.9081387 }, + { "lat": 40.7267913, "lon": -73.9081289 }, + { "lat": 40.7267276, "lon": -73.9080356 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 778801059, + "bounds": { + "minlat": 40.8356336, + "minlon": -73.9710018, + "maxlat": 40.8358601, + "maxlon": -73.9706480 + }, + "nodes": [ + 7271518636, + 7271518637, + 7271518638, + 7271518639, + 7271518640, + 7271518641 + ], + "geometry": [ + { "lat": 40.8356336, "lon": -73.9710018 }, + { "lat": 40.8357248, "lon": -73.9709333 }, + { "lat": 40.8357671, "lon": -73.9708918 }, + { "lat": 40.8358048, "lon": -73.9708490 }, + { "lat": 40.8358494, "lon": -73.9707199 }, + { "lat": 40.8358601, "lon": -73.9706480 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 778805115, + "bounds": { + "minlat": 40.7151848, + "minlon": -73.9560943, + "maxlat": 40.7154037, + "maxlon": -73.9557223 + }, + "nodes": [ + 7271544524, + 12864471192, + 7271544527, + 7271544525, + 7271544526 + ], + "geometry": [ + { "lat": 40.7154037, "lon": -73.9560943 }, + { "lat": 40.7153563, "lon": -73.9560110 }, + { "lat": 40.7153391, "lon": -73.9559809 }, + { "lat": 40.7152519, "lon": -73.9558277 }, + { "lat": 40.7151848, "lon": -73.9557223 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 778807460, + "bounds": { + "minlat": 40.8487711, + "minlon": -74.0207768, + "maxlat": 40.8489301, + "maxlon": -74.0198778 + }, + "nodes": [ + 103177559, + 10936283619, + 299383737 + ], + "geometry": [ + { "lat": 40.8489301, "lon": -74.0207768 }, + { "lat": 40.8489005, "lon": -74.0206902 }, + { "lat": 40.8487711, "lon": -74.0198778 } + ], + "tags": { + "highway": "secondary", + "name": "East Winant Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Winant", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 779113091, + "bounds": { + "minlat": 40.7054587, + "minlon": -73.9346790, + "maxlat": 40.7057071, + "maxlon": -73.9345116 + }, + "nodes": [ + 7274450677, + 9755788627, + 12986178741, + 12986178742, + 7274450676 + ], + "geometry": [ + { "lat": 40.7054587, "lon": -73.9345116 }, + { "lat": 40.7055288, "lon": -73.9345348 }, + { "lat": 40.7056184, "lon": -73.9345645 }, + { "lat": 40.7056435, "lon": -73.9346579 }, + { "lat": 40.7057071, "lon": -73.9346790 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 779448220, + "bounds": { + "minlat": 40.7779112, + "minlon": -74.0115418, + "maxlat": 40.7781392, + "maxlon": -74.0110820 + }, + "nodes": [ + 7045779041, + 7278552839 + ], + "geometry": [ + { "lat": 40.7781392, "lon": -74.0115418 }, + { "lat": 40.7779112, "lon": -74.0110820 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 779448291, + "bounds": { + "minlat": 40.7920063, + "minlon": -74.0145899, + "maxlat": 40.7921911, + "maxlon": -74.0141715 + }, + "nodes": [ + 7278552194, + 7278552196 + ], + "geometry": [ + { "lat": 40.7921911, "lon": -74.0145899 }, + { "lat": 40.7920063, "lon": -74.0141715 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 779448292, + "bounds": { + "minlat": 40.7919969, + "minlon": -74.0141715, + "maxlat": 40.7920063, + "maxlon": -74.0141503 + }, + "nodes": [ + 7278552196, + 7278552197 + ], + "geometry": [ + { "lat": 40.7920063, "lon": -74.0141715 }, + { "lat": 40.7919969, "lon": -74.0141503 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 779448293, + "bounds": { + "minlat": 40.7919402, + "minlon": -74.0141503, + "maxlat": 40.7919969, + "maxlon": -74.0140218 + }, + "nodes": [ + 7278552197, + 7668140057, + 7278552195 + ], + "geometry": [ + { "lat": 40.7919969, "lon": -74.0141503 }, + { "lat": 40.7919874, "lon": -74.0141287 }, + { "lat": 40.7919402, "lon": -74.0140218 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 779448294, + "bounds": { + "minlat": 40.7903143, + "minlon": -74.0161527, + "maxlat": 40.7911400, + "maxlon": -74.0154506 + }, + "nodes": [ + 7278552198, + 7660979648, + 7278552199, + 7278552200, + 7278552201, + 7278552202, + 7278552199 + ], + "geometry": [ + { "lat": 40.7903143, "lon": -74.0158664 }, + { "lat": 40.7903383, "lon": -74.0159177 }, + { "lat": 40.7903791, "lon": -74.0160047 }, + { "lat": 40.7910761, "lon": -74.0154506 }, + { "lat": 40.7911400, "lon": -74.0155885 }, + { "lat": 40.7904472, "lon": -74.0161527 }, + { "lat": 40.7903791, "lon": -74.0160047 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 779452156, + "bounds": { + "minlat": 40.8044747, + "minlon": -73.9926007, + "maxlat": 40.8052137, + "maxlon": -73.9920194 + }, + "nodes": [ + 5482410811, + 8700984436, + 5482410783, + 5482410791 + ], + "geometry": [ + { "lat": 40.8052137, "lon": -73.9920281 }, + { "lat": 40.8051087, "lon": -73.9920194 }, + { "lat": 40.8047349, "lon": -73.9923517 }, + { "lat": 40.8044747, "lon": -73.9926007 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 779517299, + "bounds": { + "minlat": 40.7657493, + "minlon": -73.9215416, + "maxlat": 40.7659320, + "maxlon": -73.9212296 + }, + "nodes": [ + 7279116841, + 7279116842, + 7279116844, + 7279116843 + ], + "geometry": [ + { "lat": 40.7657493, "lon": -73.9212296 }, + { "lat": 40.7657874, "lon": -73.9212873 }, + { "lat": 40.7658028, "lon": -73.9213173 }, + { "lat": 40.7659320, "lon": -73.9215416 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 779565562, + "bounds": { + "minlat": 40.7532956, + "minlon": -73.9384372, + "maxlat": 40.7534393, + "maxlon": -73.9381567 + }, + "nodes": [ + 7279610742, + 8490352095, + 7279610743 + ], + "geometry": [ + { "lat": 40.7534393, "lon": -73.9384372 }, + { "lat": 40.7533185, "lon": -73.9381989 }, + { "lat": 40.7532956, "lon": -73.9381567 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 779565563, + "bounds": { + "minlat": 40.7530467, + "minlon": -73.9382296, + "maxlat": 40.7532158, + "maxlon": -73.9378903 + }, + "nodes": [ + 7279610744, + 10744391828, + 7279610746 + ], + "geometry": [ + { "lat": 40.7532158, "lon": -73.9382296 }, + { "lat": 40.7531775, "lon": -73.9381461 }, + { "lat": 40.7530467, "lon": -73.9378903 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 779661114, + "bounds": { + "minlat": 40.7608557, + "minlon": -73.9983473, + "maxlat": 40.7612491, + "maxlon": -73.9980383 + }, + "nodes": [ + 9140954081, + 9140941065, + 9140954080, + 5542715078, + 42430673 + ], + "geometry": [ + { "lat": 40.7612491, "lon": -73.9980383 }, + { "lat": 40.7611040, "lon": -73.9981552 }, + { "lat": 40.7609945, "lon": -73.9982444 }, + { "lat": 40.7609554, "lon": -73.9982770 }, + { "lat": 40.7608557, "lon": -73.9983473 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 780086889, + "bounds": { + "minlat": 40.8202645, + "minlon": -73.9068567, + "maxlat": 40.8203800, + "maxlon": -73.9063756 + }, + "nodes": [ + 7283943661, + 7283943662, + 7557648745 + ], + "geometry": [ + { "lat": 40.8203800, "lon": -73.9068567 }, + { "lat": 40.8203290, "lon": -73.9066465 }, + { "lat": 40.8202645, "lon": -73.9063756 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 780105837, + "bounds": { + "minlat": 40.8677514, + "minlon": -73.9906981, + "maxlat": 40.8686514, + "maxlon": -73.9895236 + }, + "nodes": [ + 103297868, + 7284133030, + 10243168150, + 7284133031, + 7284133032, + 7284133033, + 7284133034, + 7284133035, + 7284133036, + 7284133037, + 7284133038, + 7284133039, + 103297868 + ], + "geometry": [ + { "lat": 40.8686514, "lon": -73.9901248 }, + { "lat": 40.8686254, "lon": -73.9899774 }, + { "lat": 40.8685917, "lon": -73.9898975 }, + { "lat": 40.8684339, "lon": -73.9895236 }, + { "lat": 40.8680400, "lon": -73.9897701 }, + { "lat": 40.8677578, "lon": -73.9899689 }, + { "lat": 40.8677514, "lon": -73.9900514 }, + { "lat": 40.8679500, "lon": -73.9905120 }, + { "lat": 40.8680522, "lon": -73.9906981 }, + { "lat": 40.8682090, "lon": -73.9905621 }, + { "lat": 40.8684255, "lon": -73.9904244 }, + { "lat": 40.8686016, "lon": -73.9902919 }, + { "lat": 40.8686514, "lon": -73.9901248 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 780170619, + "bounds": { + "minlat": 40.7020765, + "minlon": -73.9423855, + "maxlat": 40.7023460, + "maxlon": -73.9423367 + }, + "nodes": [ + 7284726692, + 9752127003, + 42467807 + ], + "geometry": [ + { "lat": 40.7020765, "lon": -73.9423367 }, + { "lat": 40.7022901, "lon": -73.9423754 }, + { "lat": 40.7023460, "lon": -73.9423855 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Graham Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Graham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 780170620, + "bounds": { + "minlat": 40.7023460, + "minlon": -73.9424950, + "maxlat": 40.7030530, + "maxlon": -73.9423855 + }, + "nodes": [ + 42467807, + 9752127005, + 11229826595, + 9752126986, + 42467811 + ], + "geometry": [ + { "lat": 40.7023460, "lon": -73.9423855 }, + { "lat": 40.7024148, "lon": -73.9423961 }, + { "lat": 40.7026056, "lon": -73.9424257 }, + { "lat": 40.7029941, "lon": -73.9424859 }, + { "lat": 40.7030530, "lon": -73.9424950 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Graham Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Graham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 780170621, + "bounds": { + "minlat": 40.7030530, + "minlon": -73.9426206, + "maxlat": 40.7037702, + "maxlon": -73.9424950 + }, + "nodes": [ + 42467811, + 9752126983, + 7589674465, + 42467814 + ], + "geometry": [ + { "lat": 40.7030530, "lon": -73.9424950 }, + { "lat": 40.7031210, "lon": -73.9425071 }, + { "lat": 40.7037098, "lon": -73.9426116 }, + { "lat": 40.7037702, "lon": -73.9426206 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Graham Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Graham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 780170622, + "bounds": { + "minlat": 40.7016390, + "minlon": -73.9423367, + "maxlat": 40.7020765, + "maxlon": -73.9422576 + }, + "nodes": [ + 42467803, + 9752127012, + 11229826597, + 7284726692 + ], + "geometry": [ + { "lat": 40.7016390, "lon": -73.9422576 }, + { "lat": 40.7017078, "lon": -73.9422715 }, + { "lat": 40.7020698, "lon": -73.9423355 }, + { "lat": 40.7020765, "lon": -73.9423367 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Graham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 780424007, + "bounds": { + "minlat": 40.8782184, + "minlon": -73.9169794, + "maxlat": 40.8785220, + "maxlon": -73.9168060 + }, + "nodes": [ + 7287444231, + 6853953686, + 6853953687, + 6853953688, + 6853953689, + 13068228278, + 6853953690 + ], + "geometry": [ + { "lat": 40.8782184, "lon": -73.9169530 }, + { "lat": 40.8782630, "lon": -73.9168780 }, + { "lat": 40.8783229, "lon": -73.9168146 }, + { "lat": 40.8783763, "lon": -73.9168060 }, + { "lat": 40.8784340, "lon": -73.9168420 }, + { "lat": 40.8784813, "lon": -73.9169158 }, + { "lat": 40.8785220, "lon": -73.9169794 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 780424008, + "bounds": { + "minlat": 40.8781314, + "minlon": -73.9171119, + "maxlat": 40.8782184, + "maxlon": -73.9169530 + }, + "nodes": [ + 7287444230, + 7287444231 + ], + "geometry": [ + { "lat": 40.8781314, "lon": -73.9171119 }, + { "lat": 40.8782184, "lon": -73.9169530 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 780656720, + "bounds": { + "minlat": 40.8115494, + "minlon": -73.9889379, + "maxlat": 40.8116756, + "maxlon": -73.9885130 + }, + "nodes": [ + 7289750203, + 7289750204 + ], + "geometry": [ + { "lat": 40.8116756, "lon": -73.9889379 }, + { "lat": 40.8115494, "lon": -73.9885130 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 780661677, + "bounds": { + "minlat": 40.8420898, + "minlon": -73.9823780, + "maxlat": 40.8423374, + "maxlon": -73.9821340 + }, + "nodes": [ + 7289786802, + 7289786803 + ], + "geometry": [ + { "lat": 40.8423374, "lon": -73.9821340 }, + { "lat": 40.8420898, "lon": -73.9823780 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 780662536, + "bounds": { + "minlat": 40.8397559, + "minlon": -73.9820575, + "maxlat": 40.8400264, + "maxlon": -73.9817909 + }, + "nodes": [ + 7289795207, + 7289795208 + ], + "geometry": [ + { "lat": 40.8400264, "lon": -73.9817909 }, + { "lat": 40.8397559, "lon": -73.9820575 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 780736594, + "bounds": { + "minlat": 40.8490594, + "minlon": -73.9837588, + "maxlat": 40.8492941, + "maxlon": -73.9835768 + }, + "nodes": [ + 7290151283, + 7290151284, + 7290200885, + 7290200886, + 7290200888, + 7290200889 + ], + "geometry": [ + { "lat": 40.8492941, "lon": -73.9835927 }, + { "lat": 40.8492852, "lon": -73.9837451 }, + { "lat": 40.8492625, "lon": -73.9837588 }, + { "lat": 40.8490692, "lon": -73.9837414 }, + { "lat": 40.8490594, "lon": -73.9836898 }, + { "lat": 40.8490655, "lon": -73.9835768 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 780736595, + "bounds": { + "minlat": 40.8487418, + "minlon": -73.9838494, + "maxlat": 40.8487484, + "maxlon": -73.9835614 + }, + "nodes": [ + 2395509024, + 7290200887 + ], + "geometry": [ + { "lat": 40.8487484, "lon": -73.9835614 }, + { "lat": 40.8487418, "lon": -73.9838494 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 780799718, + "bounds": { + "minlat": 40.8592338, + "minlon": -73.9716390, + "maxlat": 40.8595664, + "maxlon": -73.9714117 + }, + "nodes": [ + 7290670735, + 7290670736, + 13525924942, + 7298101932 + ], + "geometry": [ + { "lat": 40.8592338, "lon": -73.9716390 }, + { "lat": 40.8594447, "lon": -73.9714117 }, + { "lat": 40.8595419, "lon": -73.9715693 }, + { "lat": 40.8595664, "lon": -73.9716091 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 780799719, + "bounds": { + "minlat": 40.8587430, + "minlon": -73.9716829, + "maxlat": 40.8589711, + "maxlon": -73.9714498 + }, + "nodes": [ + 7290670738, + 7290670739 + ], + "geometry": [ + { "lat": 40.8587430, "lon": -73.9716829 }, + { "lat": 40.8589711, "lon": -73.9714498 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 780994477, + "bounds": { + "minlat": 40.8403739, + "minlon": -73.9751689, + "maxlat": 40.8406718, + "maxlon": -73.9748939 + }, + "nodes": [ + 7292367112, + 7292367113 + ], + "geometry": [ + { "lat": 40.8406718, "lon": -73.9748939 }, + { "lat": 40.8403739, "lon": -73.9751689 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 780994488, + "bounds": { + "minlat": 40.8390541, + "minlon": -73.9749310, + "maxlat": 40.8394325, + "maxlon": -73.9748024 + }, + "nodes": [ + 5108635199, + 7292367196, + 7292367197 + ], + "geometry": [ + { "lat": 40.8394325, "lon": -73.9748024 }, + { "lat": 40.8393874, "lon": -73.9748045 }, + { "lat": 40.8390541, "lon": -73.9749310 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 780994489, + "bounds": { + "minlat": 40.8372377, + "minlon": -73.9786547, + "maxlat": 40.8373071, + "maxlon": -73.9782571 + }, + "nodes": [ + 7292367198, + 7292367199, + 7292367205, + 7292367200, + 13523728868, + 7292367201 + ], + "geometry": [ + { "lat": 40.8372377, "lon": -73.9786547 }, + { "lat": 40.8372874, "lon": -73.9785630 }, + { "lat": 40.8373064, "lon": -73.9784910 }, + { "lat": 40.8373071, "lon": -73.9784839 }, + { "lat": 40.8373038, "lon": -73.9783815 }, + { "lat": 40.8372999, "lon": -73.9782571 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 780994490, + "bounds": { + "minlat": 40.8373064, + "minlon": -73.9786049, + "maxlat": 40.8380622, + "maxlon": -73.9783854 + }, + "nodes": [ + 103166405, + 13523728870, + 7937598129, + 7937598128, + 7937598127, + 7292367202, + 7292367203, + 7292367204, + 7292367205 + ], + "geometry": [ + { "lat": 40.8380622, "lon": -73.9783854 }, + { "lat": 40.8379713, "lon": -73.9784188 }, + { "lat": 40.8379580, "lon": -73.9784237 }, + { "lat": 40.8379000, "lon": -73.9784108 }, + { "lat": 40.8378714, "lon": -73.9785455 }, + { "lat": 40.8378260, "lon": -73.9786018 }, + { "lat": 40.8375040, "lon": -73.9786049 }, + { "lat": 40.8374058, "lon": -73.9784863 }, + { "lat": 40.8373064, "lon": -73.9784910 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 781311947, + "bounds": { + "minlat": 40.7876861, + "minlon": -73.9764311, + "maxlat": 40.7882886, + "maxlon": -73.9750103 + }, + "nodes": [ + 42442480, + 6207264917, + 10039783370, + 1061531603 + ], + "geometry": [ + { "lat": 40.7876861, "lon": -73.9750103 }, + { "lat": 40.7877475, "lon": -73.9751496 }, + { "lat": 40.7882390, "lon": -73.9763107 }, + { "lat": 40.7882886, "lon": -73.9764311 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 86th Street", + "name:ru": "Западная 86-я стрит", + "name_1": "West 86 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 781311948, + "bounds": { + "minlat": 40.7921309, + "minlon": -73.9717771, + "maxlat": 40.7936681, + "maxlon": -73.9706595 + }, + "nodes": [ + 42442514, + 8687882667, + 5482687363, + 8687882689, + 42436990, + 8687882687, + 8687882700, + 42442528, + 8687882727, + 9457151138 + ], + "geometry": [ + { "lat": 40.7921309, "lon": -73.9717771 }, + { "lat": 40.7921870, "lon": -73.9717330 }, + { "lat": 40.7925279, "lon": -73.9714899 }, + { "lat": 40.7927043, "lon": -73.9713634 }, + { "lat": 40.7927633, "lon": -73.9713214 }, + { "lat": 40.7928123, "lon": -73.9712873 }, + { "lat": 40.7933332, "lon": -73.9709059 }, + { "lat": 40.7933852, "lon": -73.9708683 }, + { "lat": 40.7934461, "lon": -73.9708242 }, + { "lat": 40.7936681, "lon": -73.9706595 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 781565888, + "bounds": { + "minlat": 40.7706419, + "minlon": -74.0152000, + "maxlat": 40.7706883, + "maxlon": -74.0150421 + }, + "nodes": [ + 7297022996, + 7297023002 + ], + "geometry": [ + { "lat": 40.7706419, "lon": -74.0150421 }, + { "lat": 40.7706883, "lon": -74.0152000 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 781565889, + "bounds": { + "minlat": 40.7705585, + "minlon": -74.0153489, + "maxlat": 40.7706428, + "maxlon": -74.0150795 + }, + "nodes": [ + 7297022999, + 7297023003, + 7297023001 + ], + "geometry": [ + { "lat": 40.7706428, "lon": -74.0153489 }, + { "lat": 40.7706085, "lon": -74.0152411 }, + { "lat": 40.7705585, "lon": -74.0150795 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 781676886, + "bounds": { + "minlat": 40.8590914, + "minlon": -73.9721244, + "maxlat": 40.8599139, + "maxlon": -73.9712620 + }, + "nodes": [ + 299386521, + 7298101931, + 7921644079, + 7921644075, + 7921644063, + 7298101932, + 7921644083, + 7298101919, + 12020552539, + 6895002520 + ], + "geometry": [ + { "lat": 40.8590914, "lon": -73.9721244 }, + { "lat": 40.8592665, "lon": -73.9719428 }, + { "lat": 40.8593599, "lon": -73.9718415 }, + { "lat": 40.8594463, "lon": -73.9717475 }, + { "lat": 40.8595303, "lon": -73.9716517 }, + { "lat": 40.8595664, "lon": -73.9716091 }, + { "lat": 40.8596145, "lon": -73.9715517 }, + { "lat": 40.8596943, "lon": -73.9714579 }, + { "lat": 40.8597520, "lon": -73.9713868 }, + { "lat": 40.8599139, "lon": -73.9712620 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 781676887, + "bounds": { + "minlat": 40.8589045, + "minlon": -73.9723219, + "maxlat": 40.8590914, + "maxlon": -73.9721244 + }, + "nodes": [ + 7298101920, + 12020552507, + 299386521 + ], + "geometry": [ + { "lat": 40.8589045, "lon": -73.9723219 }, + { "lat": 40.8589704, "lon": -73.9722479 }, + { "lat": 40.8590914, "lon": -73.9721244 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 781676888, + "bounds": { + "minlat": 40.8582065, + "minlon": -73.9730655, + "maxlat": 40.8589045, + "maxlon": -73.9723219 + }, + "nodes": [ + 76465486, + 12020552510, + 7298101920 + ], + "geometry": [ + { "lat": 40.8582065, "lon": -73.9730655 }, + { "lat": 40.8588037, "lon": -73.9724292 }, + { "lat": 40.8589045, "lon": -73.9723219 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "destination:ref:lanes": "NJ 4 West|", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 781676890, + "bounds": { + "minlat": 40.8579725, + "minlon": -73.9733172, + "maxlat": 40.8582065, + "maxlon": -73.9730655 + }, + "nodes": [ + 7921644067, + 76465486 + ], + "geometry": [ + { "lat": 40.8579725, "lon": -73.9733172 }, + { "lat": 40.8582065, "lon": -73.9730655 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 781731090, + "bounds": { + "minlat": 40.7373803, + "minlon": -73.9304543, + "maxlat": 40.7375149, + "maxlon": -73.9303436 + }, + "nodes": [ + 7298611010, + 10743722274, + 7298611017 + ], + "geometry": [ + { "lat": 40.7375149, "lon": -73.9304543 }, + { "lat": 40.7374593, "lon": -73.9304086 }, + { "lat": 40.7373803, "lon": -73.9303436 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 781756952, + "bounds": { + "minlat": 40.8823384, + "minlon": -73.9774749, + "maxlat": 40.8830312, + "maxlon": -73.9770881 + }, + "nodes": [ + 103295948, + 7298822447, + 7298822448, + 7298822449, + 6888241310 + ], + "geometry": [ + { "lat": 40.8823384, "lon": -73.9774749 }, + { "lat": 40.8824515, "lon": -73.9773935 }, + { "lat": 40.8827615, "lon": -73.9771933 }, + { "lat": 40.8829984, "lon": -73.9770881 }, + { "lat": 40.8830312, "lon": -73.9771025 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 781780364, + "bounds": { + "minlat": 40.8453934, + "minlon": -73.9901948, + "maxlat": 40.8456848, + "maxlon": -73.9899242 + }, + "nodes": [ + 7299073196, + 7299073197, + 7299073198 + ], + "geometry": [ + { "lat": 40.8456848, "lon": -73.9900626 }, + { "lat": 40.8455569, "lon": -73.9901948 }, + { "lat": 40.8453934, "lon": -73.9899242 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 781952211, + "bounds": { + "minlat": 40.7738939, + "minlon": -74.0114483, + "maxlat": 40.7739823, + "maxlon": -74.0113827 + }, + "nodes": [ + 7300717264, + 7300717269, + 7300717265 + ], + "geometry": [ + { "lat": 40.7738939, "lon": -74.0114483 }, + { "lat": 40.7739605, "lon": -74.0113989 }, + { "lat": 40.7739823, "lon": -74.0113827 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 781952212, + "bounds": { + "minlat": 40.7737095, + "minlon": -74.0110361, + "maxlat": 40.7737968, + "maxlon": -74.0109705 + }, + "nodes": [ + 7300717266, + 7300717273, + 7300717267 + ], + "geometry": [ + { "lat": 40.7737095, "lon": -74.0110361 }, + { "lat": 40.7737824, "lon": -74.0109813 }, + { "lat": 40.7737968, "lon": -74.0109705 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 781995946, + "bounds": { + "minlat": 40.8607512, + "minlon": -73.9693030, + "maxlat": 40.8608777, + "maxlon": -73.9686957 + }, + "nodes": [ + 7301162504, + 7301162505, + 7301162506, + 7301162507, + 7301162508, + 7301162509 + ], + "geometry": [ + { "lat": 40.8608435, "lon": -73.9693030 }, + { "lat": 40.8607739, "lon": -73.9692357 }, + { "lat": 40.8607512, "lon": -73.9691908 }, + { "lat": 40.8607553, "lon": -73.9690901 }, + { "lat": 40.8608623, "lon": -73.9687487 }, + { "lat": 40.8608777, "lon": -73.9686957 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 781995947, + "bounds": { + "minlat": 40.8608777, + "minlon": -73.9687634, + "maxlat": 40.8609982, + "maxlon": -73.9686957 + }, + "nodes": [ + 7301162514, + 7301162509 + ], + "geometry": [ + { "lat": 40.8609982, "lon": -73.9687634 }, + { "lat": 40.8608777, "lon": -73.9686957 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 781995952, + "bounds": { + "minlat": 40.8605548, + "minlon": -73.9692005, + "maxlat": 40.8607728, + "maxlon": -73.9686182 + }, + "nodes": [ + 7301162506, + 7301162515, + 7301162516, + 7301162517, + 7301162518, + 7301162519, + 7301162520, + 7301162510 + ], + "geometry": [ + { "lat": 40.8607512, "lon": -73.9691908 }, + { "lat": 40.8606811, "lon": -73.9692005 }, + { "lat": 40.8606047, "lon": -73.9691593 }, + { "lat": 40.8605548, "lon": -73.9690830 }, + { "lat": 40.8605712, "lon": -73.9689789 }, + { "lat": 40.8606273, "lon": -73.9688356 }, + { "lat": 40.8607107, "lon": -73.9686841 }, + { "lat": 40.8607728, "lon": -73.9686182 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 782279948, + "bounds": { + "minlat": 40.8177879, + "minlon": -73.9907479, + "maxlat": 40.8182523, + "maxlon": -73.9903251 + }, + "nodes": [ + 7304780619, + 7304780620, + 7304780621, + 7304780622, + 7304780623, + 7304780624, + 7304780626, + 7304780627, + 7304780628, + 7304780629 + ], + "geometry": [ + { "lat": 40.8182523, "lon": -73.9905338 }, + { "lat": 40.8181857, "lon": -73.9905740 }, + { "lat": 40.8178729, "lon": -73.9907398 }, + { "lat": 40.8178474, "lon": -73.9907479 }, + { "lat": 40.8178333, "lon": -73.9907393 }, + { "lat": 40.8177879, "lon": -73.9906279 }, + { "lat": 40.8177898, "lon": -73.9905576 }, + { "lat": 40.8179288, "lon": -73.9904511 }, + { "lat": 40.8180887, "lon": -73.9903585 }, + { "lat": 40.8181395, "lon": -73.9903251 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 782279949, + "bounds": { + "minlat": 40.8181395, + "minlon": -73.9905338, + "maxlat": 40.8182523, + "maxlon": -73.9903251 + }, + "nodes": [ + 7304780629, + 7304780619 + ], + "geometry": [ + { "lat": 40.8181395, "lon": -73.9903251 }, + { "lat": 40.8182523, "lon": -73.9905338 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 782279950, + "bounds": { + "minlat": 40.8182523, + "minlon": -73.9968413, + "maxlat": 40.8215806, + "maxlon": -73.9905338 + }, + "nodes": [ + 7304780619, + 103133902, + 7608036211, + 13524700370, + 103239538, + 13524700354, + 103239006, + 103156485, + 103166213 + ], + "geometry": [ + { "lat": 40.8182523, "lon": -73.9905338 }, + { "lat": 40.8183184, "lon": -73.9906577 }, + { "lat": 40.8191208, "lon": -73.9921645 }, + { "lat": 40.8192940, "lon": -73.9924898 }, + { "lat": 40.8193312, "lon": -73.9925597 }, + { "lat": 40.8193743, "lon": -73.9926426 }, + { "lat": 40.8208009, "lon": -73.9953905 }, + { "lat": 40.8211730, "lon": -73.9961460 }, + { "lat": 40.8215806, "lon": -73.9968413 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 782285364, + "bounds": { + "minlat": 40.7118432, + "minlon": -73.9092634, + "maxlat": 40.7123487, + "maxlon": -73.9087492 + }, + "nodes": [ + 7304862181, + 9747646490, + 7304870589, + 7304862182, + 7304862183, + 7304862184, + 7304870590, + 7304870585, + 7304870586, + 7304870587, + 7304870588 + ], + "geometry": [ + { "lat": 40.7123487, "lon": -73.9087492 }, + { "lat": 40.7123395, "lon": -73.9088255 }, + { "lat": 40.7123348, "lon": -73.9088650 }, + { "lat": 40.7123285, "lon": -73.9089180 }, + { "lat": 40.7123020, "lon": -73.9089716 }, + { "lat": 40.7122736, "lon": -73.9090145 }, + { "lat": 40.7120168, "lon": -73.9092628 }, + { "lat": 40.7119985, "lon": -73.9092634 }, + { "lat": 40.7119878, "lon": -73.9092471 }, + { "lat": 40.7119406, "lon": -73.9091746 }, + { "lat": 40.7118432, "lon": -73.9090264 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 782381322, + "bounds": { + "minlat": 40.8497634, + "minlon": -73.9150054, + "maxlat": 40.8501253, + "maxlon": -73.9146855 + }, + "nodes": [ + 7305820751, + 7305820752, + 7305820753, + 7305820755, + 12739115602, + 7305820754 + ], + "geometry": [ + { "lat": 40.8497634, "lon": -73.9150054 }, + { "lat": 40.8498304, "lon": -73.9148865 }, + { "lat": 40.8498919, "lon": -73.9148469 }, + { "lat": 40.8500322, "lon": -73.9147489 }, + { "lat": 40.8500474, "lon": -73.9147385 }, + { "lat": 40.8501253, "lon": -73.9146855 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 782571408, + "bounds": { + "minlat": 40.8734956, + "minlon": -73.9873728, + "maxlat": 40.8743427, + "maxlon": -73.9858357 + }, + "nodes": [ + 7307803370, + 7307803371, + 10234828588, + 7307803372, + 8919502800, + 10234828585, + 7307803373, + 10234904137, + 7307803374, + 10234828593, + 7307803375, + 7307803376, + 7307803377, + 7307803378, + 7307803379, + 10234828535, + 7307803380, + 7307803381, + 7307803382, + 7307803383 + ], + "geometry": [ + { "lat": 40.8743427, "lon": -73.9858357 }, + { "lat": 40.8741212, "lon": -73.9859334 }, + { "lat": 40.8740875, "lon": -73.9859508 }, + { "lat": 40.8740330, "lon": -73.9859788 }, + { "lat": 40.8739374, "lon": -73.9860261 }, + { "lat": 40.8737298, "lon": -73.9861389 }, + { "lat": 40.8737082, "lon": -73.9861523 }, + { "lat": 40.8736380, "lon": -73.9862183 }, + { "lat": 40.8735732, "lon": -73.9862791 }, + { "lat": 40.8735638, "lon": -73.9863033 }, + { "lat": 40.8735202, "lon": -73.9864043 }, + { "lat": 40.8735051, "lon": -73.9864718 }, + { "lat": 40.8734956, "lon": -73.9865294 }, + { "lat": 40.8735125, "lon": -73.9866343 }, + { "lat": 40.8736375, "lon": -73.9870149 }, + { "lat": 40.8736492, "lon": -73.9870769 }, + { "lat": 40.8736564, "lon": -73.9871150 }, + { "lat": 40.8736735, "lon": -73.9872251 }, + { "lat": 40.8736792, "lon": -73.9872652 }, + { "lat": 40.8737227, "lon": -73.9873728 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 782591024, + "bounds": { + "minlat": 40.8423397, + "minlon": -73.9234439, + "maxlat": 40.8424794, + "maxlon": -73.9230860 + }, + "nodes": [ + 7308243661, + 7308243662, + 7308243663 + ], + "geometry": [ + { "lat": 40.8423397, "lon": -73.9230860 }, + { "lat": 40.8423842, "lon": -73.9231786 }, + { "lat": 40.8424794, "lon": -73.9234439 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 782591025, + "bounds": { + "minlat": 40.8424760, + "minlon": -73.9239155, + "maxlat": 40.8427545, + "maxlon": -73.9235957 + }, + "nodes": [ + 7308243664, + 7308243665, + 7308243666, + 7308243667, + 7308243668, + 7308243669 + ], + "geometry": [ + { "lat": 40.8427545, "lon": -73.9239155 }, + { "lat": 40.8427052, "lon": -73.9238179 }, + { "lat": 40.8426184, "lon": -73.9236141 }, + { "lat": 40.8425955, "lon": -73.9235957 }, + { "lat": 40.8425705, "lon": -73.9235994 }, + { "lat": 40.8424760, "lon": -73.9236719 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 783787945, + "bounds": { + "minlat": 40.7913085, + "minlon": -73.9366136, + "maxlat": 40.7915137, + "maxlon": -73.9361233 + }, + "nodes": [ + 7320943370, + 7924346800, + 7925258722, + 596800103 + ], + "geometry": [ + { "lat": 40.7915137, "lon": -73.9366136 }, + { "lat": 40.7914973, "lon": -73.9365744 }, + { "lat": 40.7913318, "lon": -73.9361782 }, + { "lat": 40.7913085, "lon": -73.9361233 } + ], + "tags": { + "alt_name": "Tito Puente Way", + "highway": "residential", + "name": "East 110th Street", + "name:etymology:wikidata": "Q317122", + "name:ru": "Восточная 110-я стрит", + "sidewalk:both": "separate", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 784001401, + "bounds": { + "minlat": 40.8123250, + "minlon": -73.9603328, + "maxlat": 40.8135285, + "maxlon": -73.9594609 + }, + "nodes": [ + 7323388257, + 12011547029, + 7323388262, + 7323388258, + 7323388260 + ], + "geometry": [ + { "lat": 40.8123250, "lon": -73.9603328 }, + { "lat": 40.8123734, "lon": -73.9602977 }, + { "lat": 40.8123907, "lon": -73.9602852 }, + { "lat": 40.8124231, "lon": -73.9602617 }, + { "lat": 40.8135285, "lon": -73.9594609 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle", + "source": "digitalglobe" + } +}, +{ + "type": "way", + "id": 784943222, + "bounds": { + "minlat": 40.7808299, + "minlon": -73.9713383, + "maxlat": 40.7812533, + "maxlon": -73.9712130 + }, + "nodes": [ + 7333509705, + 7333509718, + 7333394070 + ], + "geometry": [ + { "lat": 40.7812533, "lon": -73.9712130 }, + { "lat": 40.7810411, "lon": -73.9712767 }, + { "lat": 40.7808299, "lon": -73.9713383 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 784943226, + "bounds": { + "minlat": 40.7810213, + "minlon": -73.9712767, + "maxlat": 40.7810411, + "maxlon": -73.9711605 + }, + "nodes": [ + 3602653022, + 7333509718 + ], + "geometry": [ + { "lat": 40.7810213, "lon": -73.9711605 }, + { "lat": 40.7810411, "lon": -73.9712767 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 784943238, + "bounds": { + "minlat": 40.7735987, + "minlon": -73.9911026, + "maxlat": 40.7738152, + "maxlon": -73.9908260 + }, + "nodes": [ + 7333394024, + 7333394080, + 7333394033, + 7333509715, + 7333394049, + 7333394061, + 7334614874, + 7333509733, + 7333509713, + 7333509698, + 7333394083, + 7333394055, + 7333509722, + 7333394043, + 7333509736, + 7333394079, + 7333394066, + 7333394054, + 7333394045, + 7333394024 + ], + "geometry": [ + { "lat": 40.7735989, "lon": -73.9908939 }, + { "lat": 40.7736355, "lon": -73.9908680 }, + { "lat": 40.7736516, "lon": -73.9908565 }, + { "lat": 40.7736592, "lon": -73.9908753 }, + { "lat": 40.7736658, "lon": -73.9908916 }, + { "lat": 40.7737570, "lon": -73.9908260 }, + { "lat": 40.7738152, "lon": -73.9909607 }, + { "lat": 40.7737971, "lon": -73.9909757 }, + { "lat": 40.7738010, "lon": -73.9909862 }, + { "lat": 40.7738035, "lon": -73.9909934 }, + { "lat": 40.7736989, "lon": -73.9910697 }, + { "lat": 40.7736827, "lon": -73.9910815 }, + { "lat": 40.7736538, "lon": -73.9911026 }, + { "lat": 40.7736473, "lon": -73.9910879 }, + { "lat": 40.7735987, "lon": -73.9909666 }, + { "lat": 40.7736229, "lon": -73.9909495 }, + { "lat": 40.7736183, "lon": -73.9909390 }, + { "lat": 40.7736143, "lon": -73.9909287 }, + { "lat": 40.7736086, "lon": -73.9909165 }, + { "lat": 40.7735989, "lon": -73.9908939 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 784988232, + "bounds": { + "minlat": 40.7291294, + "minlon": -73.9534226, + "maxlat": 40.7295713, + "maxlon": -73.9530698 + }, + "nodes": [ + 7333968478, + 8097159423, + 7333968479, + 7333968480, + 7333968481, + 7333968482, + 7333968483, + 7333968484 + ], + "geometry": [ + { "lat": 40.7295713, "lon": -73.9530698 }, + { "lat": 40.7295476, "lon": -73.9531479 }, + { "lat": 40.7295405, "lon": -73.9531713 }, + { "lat": 40.7294628, "lon": -73.9534226 }, + { "lat": 40.7294061, "lon": -73.9533913 }, + { "lat": 40.7293558, "lon": -73.9533629 }, + { "lat": 40.7292688, "lon": -73.9533155 }, + { "lat": 40.7291294, "lon": -73.9532434 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 785016267, + "bounds": { + "minlat": 40.7125262, + "minlon": -74.0145948, + "maxlat": 40.7125862, + "maxlon": -74.0143239 + }, + "nodes": [ + 7334235840, + 7334235841, + 7334235842 + ], + "geometry": [ + { "lat": 40.7125262, "lon": -74.0143239 }, + { "lat": 40.7125700, "lon": -74.0145214 }, + { "lat": 40.7125862, "lon": -74.0145948 } + ], + "tags": { + "access": "permit", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 785019247, + "bounds": { + "minlat": 40.8366011, + "minlon": -73.9277198, + "maxlat": 40.8367449, + "maxlon": -73.9273075 + }, + "nodes": [ + 7334236229, + 12504046473, + 7334236230 + ], + "geometry": [ + { "lat": 40.8367449, "lon": -73.9277198 }, + { "lat": 40.8366550, "lon": -73.9274619 }, + { "lat": 40.8366011, "lon": -73.9273075 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 786982251, + "bounds": { + "minlat": 40.7330245, + "minlon": -74.0108097, + "maxlat": 40.7334335, + "maxlon": -74.0105913 + }, + "nodes": [ + 7357220720, + 7357220721, + 7357220722, + 7357220723, + 7357220724, + 7357220725, + 7357220726, + 2567573382, + 2567573377, + 2567573348, + 2567573346, + 7357220727, + 7357220728, + 7357220729, + 7357220730, + 7357220731, + 7357220732, + 7357220733, + 7357220734, + 7357220736, + 7357220735, + 7357220720 + ], + "geometry": [ + { "lat": 40.7334335, "lon": -74.0106472 }, + { "lat": 40.7334119, "lon": -74.0106546 }, + { "lat": 40.7333889, "lon": -74.0106684 }, + { "lat": 40.7333688, "lon": -74.0106867 }, + { "lat": 40.7333500, "lon": -74.0107069 }, + { "lat": 40.7333333, "lon": -74.0107317 }, + { "lat": 40.7333097, "lon": -74.0107831 }, + { "lat": 40.7331886, "lon": -74.0107929 }, + { "lat": 40.7331727, "lon": -74.0106841 }, + { "lat": 40.7331268, "lon": -74.0106872 }, + { "lat": 40.7331282, "lon": -74.0107996 }, + { "lat": 40.7330245, "lon": -74.0108097 }, + { "lat": 40.7330607, "lon": -74.0107418 }, + { "lat": 40.7331170, "lon": -74.0106693 }, + { "lat": 40.7331768, "lon": -74.0106261 }, + { "lat": 40.7332401, "lon": -74.0106041 }, + { "lat": 40.7333062, "lon": -74.0105940 }, + { "lat": 40.7333507, "lon": -74.0105913 }, + { "lat": 40.7334056, "lon": -74.0105940 }, + { "lat": 40.7334064, "lon": -74.0106047 }, + { "lat": 40.7334252, "lon": -74.0106015 }, + { "lat": 40.7334335, "lon": -74.0106472 } + ], + "tags": { + "highway": "pedestrian", + "leisure": "outdoor_seating", + "lit": "yes", + "name": "West Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 787034328, + "bounds": { + "minlat": 40.7684567, + "minlon": -74.0164101, + "maxlat": 40.7686688, + "maxlon": -74.0158697 + }, + "nodes": [ + 3588875424, + 307870566, + 307870562 + ], + "geometry": [ + { "lat": 40.7686688, "lon": -74.0164101 }, + { "lat": 40.7686277, "lon": -74.0163067 }, + { "lat": 40.7684567, "lon": -74.0158697 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Oxford Landing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 787506428, + "bounds": { + "minlat": 40.7382830, + "minlon": -73.9809801, + "maxlat": 40.7384292, + "maxlon": -73.9806305 + }, + "nodes": [ + 4207683796, + 8119462483, + 7362999643 + ], + "geometry": [ + { "lat": 40.7382830, "lon": -73.9806305 }, + { "lat": 40.7383379, "lon": -73.9807631 }, + { "lat": 40.7384292, "lon": -73.9809801 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 787929901, + "bounds": { + "minlat": 40.7734294, + "minlon": -74.0200351, + "maxlat": 40.7735496, + "maxlon": -74.0196881 + }, + "nodes": [ + 7366578091, + 5462260627, + 5462251719, + 5462251720 + ], + "geometry": [ + { "lat": 40.7735123, "lon": -74.0200351 }, + { "lat": 40.7734941, "lon": -74.0199694 }, + { "lat": 40.7734294, "lon": -74.0197599 }, + { "lat": 40.7735496, "lon": -74.0196881 } + ], + "tags": { + "covered": "no", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 787929903, + "bounds": { + "minlat": 40.7729961, + "minlon": -74.0201863, + "maxlat": 40.7731889, + "maxlon": -74.0198665 + }, + "nodes": [ + 5462260624, + 5462260625, + 5462260626 + ], + "geometry": [ + { "lat": 40.7731889, "lon": -74.0198665 }, + { "lat": 40.7731015, "lon": -74.0200079 }, + { "lat": 40.7729961, "lon": -74.0201863 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 787960604, + "bounds": { + "minlat": 40.8472464, + "minlon": -73.9796134, + "maxlat": 40.8472612, + "maxlon": -73.9792792 + }, + "nodes": [ + 7366850533, + 7366850537, + 7366850534 + ], + "geometry": [ + { "lat": 40.8472612, "lon": -73.9796134 }, + { "lat": 40.8472545, "lon": -73.9794604 }, + { "lat": 40.8472464, "lon": -73.9792792 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 787960605, + "bounds": { + "minlat": 40.8472464, + "minlon": -73.9794604, + "maxlat": 40.8474309, + "maxlon": -73.9792640 + }, + "nodes": [ + 7366850534, + 7366850535, + 7366850536, + 7366850537 + ], + "geometry": [ + { "lat": 40.8472464, "lon": -73.9792792 }, + { "lat": 40.8473686, "lon": -73.9792640 }, + { "lat": 40.8474309, "lon": -73.9794103 }, + { "lat": 40.8472545, "lon": -73.9794604 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 788046653, + "bounds": { + "minlat": 40.8668874, + "minlon": -73.9647150, + "maxlat": 40.8672624, + "maxlon": -73.9639556 + }, + "nodes": [ + 7367583629, + 7367583636, + 7367583634, + 7367583631, + 7367583633 + ], + "geometry": [ + { "lat": 40.8668874, "lon": -73.9639556 }, + { "lat": 40.8670424, "lon": -73.9642751 }, + { "lat": 40.8671026, "lon": -73.9643857 }, + { "lat": 40.8672205, "lon": -73.9645860 }, + { "lat": 40.8672624, "lon": -73.9647150 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788046654, + "bounds": { + "minlat": 40.8668605, + "minlon": -73.9646348, + "maxlat": 40.8671026, + "maxlon": -73.9643857 + }, + "nodes": [ + 7367583634, + 7367583635 + ], + "geometry": [ + { "lat": 40.8671026, "lon": -73.9643857 }, + { "lat": 40.8668605, "lon": -73.9646348 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788046655, + "bounds": { + "minlat": 40.8667937, + "minlon": -73.9645146, + "maxlat": 40.8670424, + "maxlon": -73.9642751 + }, + "nodes": [ + 7367583636, + 7367583637 + ], + "geometry": [ + { "lat": 40.8670424, "lon": -73.9642751 }, + { "lat": 40.8667937, "lon": -73.9645146 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788046701, + "bounds": { + "minlat": 40.8648576, + "minlon": -73.9648331, + "maxlat": 40.8651178, + "maxlon": -73.9645361 + }, + "nodes": [ + 7367594944, + 7367594996, + 7367594948, + 7367594945, + 7367594946, + 7367594947 + ], + "geometry": [ + { "lat": 40.8648576, "lon": -73.9645361 }, + { "lat": 40.8649190, "lon": -73.9646370 }, + { "lat": 40.8650233, "lon": -73.9648084 }, + { "lat": 40.8650384, "lon": -73.9648331 }, + { "lat": 40.8651178, "lon": -73.9646382 }, + { "lat": 40.8650768, "lon": -73.9645694 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788046702, + "bounds": { + "minlat": 40.8645259, + "minlon": -73.9652333, + "maxlat": 40.8650233, + "maxlon": -73.9648084 + }, + "nodes": [ + 7367594948, + 7367594949, + 7367594950, + 7367595011, + 7367594951 + ], + "geometry": [ + { "lat": 40.8650233, "lon": -73.9648084 }, + { "lat": 40.8647404, "lon": -73.9648670 }, + { "lat": 40.8646566, "lon": -73.9650868 }, + { "lat": 40.8645510, "lon": -73.9652053 }, + { "lat": 40.8645259, "lon": -73.9652333 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788253907, + "bounds": { + "minlat": 40.8039945, + "minlon": -73.9278992, + "maxlat": 40.8045502, + "maxlon": -73.9267883 + }, + "nodes": [ + 42761200, + 42761217 + ], + "geometry": [ + { "lat": 40.8039945, "lon": -73.9278992 }, + { "lat": 40.8045502, "lon": -73.9267883 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Willis Avenue Bridge", + "destination:lanes:forward": "Major Deegan Expressway North;Willis Avenue|Major Deegan Expressway North;Willis Avenue|Major Deegan Expressway North;Willis Avenue;Bruckner Expressway East;Bruckner Boulevad|Bruckner Expressway East;Bruckner Boulevard", + "destination:ref:lanes:forward": "I 87 North|I 87 North|I 87 North;I 278 East|I 278 East", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "4", + "layer": "1", + "maxspeed": "30 mph", + "name": "Willis Avenue Bridge", + "oneway": "yes", + "sidewalk": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "slight_left|slight_left|slight_left;slight_right|none", + "wikidata": "Q2581529", + "wikipedia": "en:Willis Avenue Bridge" + } +}, +{ + "type": "way", + "id": 788253913, + "bounds": { + "minlat": 40.8059847, + "minlon": -73.9250833, + "maxlat": 40.8066930, + "maxlon": -73.9245664 + }, + "nodes": [ + 7369741444, + 4215812468 + ], + "geometry": [ + { "lat": 40.8059847, "lon": -73.9250833 }, + { "lat": 40.8066930, "lon": -73.9245664 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Willis Avenue Bridge", + "oneway": "yes", + "sidewalk": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 788278347, + "bounds": { + "minlat": 40.7447254, + "minlon": -73.9888344, + "maxlat": 40.7450990, + "maxlon": -73.9887720 + }, + "nodes": [ + 11355997388, + 11766442647, + 11355997389 + ], + "geometry": [ + { "lat": 40.7450990, "lon": -73.9887752 }, + { "lat": 40.7450258, "lon": -73.9887720 }, + { "lat": 40.7447254, "lon": -73.9888344 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 788278348, + "bounds": { + "minlat": 40.7446783, + "minlon": -73.9880716, + "maxlat": 40.7450063, + "maxlon": -73.9873007 + }, + "nodes": [ + 5481897723, + 10167162599, + 42438544 + ], + "geometry": [ + { "lat": 40.7450063, "lon": -73.9880716 }, + { "lat": 40.7447286, "lon": -73.9874189 }, + { "lat": 40.7446783, "lon": -73.9873007 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 28th Street", + "name:ru": "Западная 28-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 788278350, + "bounds": { + "minlat": 40.7462399, + "minlon": -73.9885524, + "maxlat": 40.7465988, + "maxlon": -73.9884909 + }, + "nodes": [ + 11355997385, + 11766442641, + 11355997386 + ], + "geometry": [ + { "lat": 40.7465988, "lon": -73.9884909 }, + { "lat": 40.7464798, "lon": -73.9885031 }, + { "lat": 40.7462399, "lon": -73.9885524 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 788278353, + "bounds": { + "minlat": 40.7436380, + "minlon": -73.9889816, + "maxlat": 40.7437973, + "maxlon": -73.9886206 + }, + "nodes": [ + 7369969947, + 3009534483, + 10943102727 + ], + "geometry": [ + { "lat": 40.7437973, "lon": -73.9889816 }, + { "lat": 40.7437660, "lon": -73.9889108 }, + { "lat": 40.7436380, "lon": -73.9886206 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 788393594, + "bounds": { + "minlat": 40.8104071, + "minlon": -73.9065595, + "maxlat": 40.8105629, + "maxlon": -73.9061699 + }, + "nodes": [ + 7370993952, + 7370993953, + 13247432510, + 7370993954, + 7370993955, + 7370993956, + 7370993957 + ], + "geometry": [ + { "lat": 40.8105258, "lon": -73.9065595 }, + { "lat": 40.8104574, "lon": -73.9064582 }, + { "lat": 40.8104483, "lon": -73.9064459 }, + { "lat": 40.8104188, "lon": -73.9064059 }, + { "lat": 40.8104071, "lon": -73.9063824 }, + { "lat": 40.8105173, "lon": -73.9062356 }, + { "lat": 40.8105629, "lon": -73.9061699 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788602261, + "bounds": { + "minlat": 40.7415506, + "minlon": -73.9895966, + "maxlat": 40.7421628, + "maxlon": -73.9891459 + }, + "nodes": [ + 10177726960, + 10610255907, + 6243559673, + 3009534459, + 42437881 + ], + "geometry": [ + { "lat": 40.7421628, "lon": -73.9891459 }, + { "lat": 40.7419554, "lon": -73.9893011 }, + { "lat": 40.7419147, "lon": -73.9893315 }, + { "lat": 40.7416543, "lon": -73.9895216 }, + { "lat": 40.7415506, "lon": -73.9895966 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through;right", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 788677968, + "bounds": { + "minlat": 40.8624377, + "minlon": -73.9661761, + "maxlat": 40.8626058, + "maxlon": -73.9659211 + }, + "nodes": [ + 7373529702, + 7373529703, + 7373529704, + 7373529705, + 7373529706, + 7373529707, + 7373529708, + 7373529709, + 7373529710, + 7373529711, + 7373529712, + 7373529713, + 7373529714, + 7373529715, + 7373529716, + 7373529717, + 5753470513 + ], + "geometry": [ + { "lat": 40.8624882, "lon": -73.9661761 }, + { "lat": 40.8624556, "lon": -73.9661114 }, + { "lat": 40.8624419, "lon": -73.9660767 }, + { "lat": 40.8624377, "lon": -73.9660350 }, + { "lat": 40.8624398, "lon": -73.9659975 }, + { "lat": 40.8624482, "lon": -73.9659697 }, + { "lat": 40.8624640, "lon": -73.9659419 }, + { "lat": 40.8624787, "lon": -73.9659322 }, + { "lat": 40.8625007, "lon": -73.9659211 }, + { "lat": 40.8625207, "lon": -73.9659211 }, + { "lat": 40.8625354, "lon": -73.9659252 }, + { "lat": 40.8625585, "lon": -73.9659391 }, + { "lat": 40.8625764, "lon": -73.9659544 }, + { "lat": 40.8625890, "lon": -73.9659683 }, + { "lat": 40.8626006, "lon": -73.9659947 }, + { "lat": 40.8626058, "lon": -73.9660197 }, + { "lat": 40.8626038, "lon": -73.9660666 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 788677984, + "bounds": { + "minlat": 40.8626146, + "minlon": -73.9636610, + "maxlat": 40.8626955, + "maxlon": -73.9635159 + }, + "nodes": [ + 530475795, + 7373529837 + ], + "geometry": [ + { "lat": 40.8626146, "lon": -73.9635159 }, + { "lat": 40.8626955, "lon": -73.9636610 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788677985, + "bounds": { + "minlat": 40.8614177, + "minlon": -73.9666984, + "maxlat": 40.8624434, + "maxlon": -73.9636583 + }, + "nodes": [ + 76463663, + 7373529846, + 76463664, + 7921643443, + 76463665, + 7921643423, + 76463666, + 12021383248, + 7921643402, + 12021383249, + 7814317985, + 7921584382, + 76463667, + 12021383250, + 7921584362, + 7921584355, + 12021383251, + 76463668, + 76463669, + 12021383252, + 7921643437, + 12021383253, + 76463670, + 7921643416, + 12021383254, + 76463671, + 7921643395, + 12021383255, + 7921643431, + 7921584375, + 76463672, + 76463673, + 12021383256, + 12021383257, + 76463674, + 12021383258, + 7921584369, + 12021383259, + 12021383260, + 76463675, + 13769018757, + 13769018759, + 60810969 + ], + "geometry": [ + { "lat": 40.8624434, "lon": -73.9636583 }, + { "lat": 40.8623866, "lon": -73.9636941 }, + { "lat": 40.8622270, "lon": -73.9637948 }, + { "lat": 40.8621913, "lon": -73.9638188 }, + { "lat": 40.8621546, "lon": -73.9638427 }, + { "lat": 40.8621214, "lon": -73.9638710 }, + { "lat": 40.8620942, "lon": -73.9639016 }, + { "lat": 40.8620660, "lon": -73.9639411 }, + { "lat": 40.8620463, "lon": -73.9639772 }, + { "lat": 40.8620296, "lon": -73.9640147 }, + { "lat": 40.8620175, "lon": -73.9640551 }, + { "lat": 40.8620094, "lon": -73.9640922 }, + { "lat": 40.8620035, "lon": -73.9641394 }, + { "lat": 40.8620025, "lon": -73.9641898 }, + { "lat": 40.8620073, "lon": -73.9642399 }, + { "lat": 40.8620144, "lon": -73.9642870 }, + { "lat": 40.8620235, "lon": -73.9643390 }, + { "lat": 40.8620346, "lon": -73.9643993 }, + { "lat": 40.8621470, "lon": -73.9649793 }, + { "lat": 40.8621558, "lon": -73.9650359 }, + { "lat": 40.8621597, "lon": -73.9650881 }, + { "lat": 40.8621596, "lon": -73.9651341 }, + { "lat": 40.8621559, "lon": -73.9651845 }, + { "lat": 40.8621493, "lon": -73.9652371 }, + { "lat": 40.8621351, "lon": -73.9652859 }, + { "lat": 40.8621171, "lon": -73.9653318 }, + { "lat": 40.8620943, "lon": -73.9653799 }, + { "lat": 40.8620722, "lon": -73.9654169 }, + { "lat": 40.8620478, "lon": -73.9654501 }, + { "lat": 40.8620199, "lon": -73.9654842 }, + { "lat": 40.8619954, "lon": -73.9655093 }, + { "lat": 40.8617762, "lon": -73.9657433 }, + { "lat": 40.8617361, "lon": -73.9657918 }, + { "lat": 40.8616990, "lon": -73.9658431 }, + { "lat": 40.8616703, "lon": -73.9658854 }, + { "lat": 40.8616361, "lon": -73.9659403 }, + { "lat": 40.8616060, "lon": -73.9659957 }, + { "lat": 40.8615794, "lon": -73.9660546 }, + { "lat": 40.8615570, "lon": -73.9661116 }, + { "lat": 40.8615335, "lon": -73.9661796 }, + { "lat": 40.8614811, "lon": -73.9663661 }, + { "lat": 40.8614513, "lon": -73.9665078 }, + { "lat": 40.8614177, "lon": -73.9666984 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "destination:ref": "US 9W South", + "highway": "primary", + "lanes": "2", + "maxspeed:advisory": "15 mph", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 788677986, + "bounds": { + "minlat": 40.8623866, + "minlon": -73.9638455, + "maxlat": 40.8626955, + "maxlon": -73.9636610 + }, + "nodes": [ + 7373529837, + 7373529838, + 7373529839, + 7373529840, + 7373529841, + 7373529842, + 7373529843, + 7373529844, + 7373529845, + 7373529846 + ], + "geometry": [ + { "lat": 40.8626955, "lon": -73.9636610 }, + { "lat": 40.8625119, "lon": -73.9638368 }, + { "lat": 40.8625010, "lon": -73.9638445 }, + { "lat": 40.8624907, "lon": -73.9638455 }, + { "lat": 40.8624769, "lon": -73.9638426 }, + { "lat": 40.8624543, "lon": -73.9638339 }, + { "lat": 40.8624411, "lon": -73.9638233 }, + { "lat": 40.8624316, "lon": -73.9638050 }, + { "lat": 40.8624156, "lon": -73.9637732 }, + { "lat": 40.8623866, "lon": -73.9636941 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 788677987, + "bounds": { + "minlat": 40.8626955, + "minlon": -73.9638492, + "maxlat": 40.8628931, + "maxlon": -73.9636610 + }, + "nodes": [ + 7373529837, + 7373529834, + 7373529835, + 7373529836 + ], + "geometry": [ + { "lat": 40.8626955, "lon": -73.9636610 }, + { "lat": 40.8627106, "lon": -73.9636880 }, + { "lat": 40.8628366, "lon": -73.9638492 }, + { "lat": 40.8628931, "lon": -73.9638129 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788677995, + "bounds": { + "minlat": 40.8628621, + "minlon": -73.9637191, + "maxlat": 40.8630978, + "maxlon": -73.9632341 + }, + "nodes": [ + 76463640, + 7373529876, + 7373529877 + ], + "geometry": [ + { "lat": 40.8628621, "lon": -73.9632341 }, + { "lat": 40.8629256, "lon": -73.9634172 }, + { "lat": 40.8630978, "lon": -73.9637191 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788677996, + "bounds": { + "minlat": 40.8629640, + "minlon": -73.9635291, + "maxlat": 40.8631029, + "maxlon": -73.9631726 + }, + "nodes": [ + 7373529878, + 7373529879 + ], + "geometry": [ + { "lat": 40.8629640, "lon": -73.9631726 }, + { "lat": 40.8631029, "lon": -73.9635291 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697742, + "bounds": { + "minlat": 40.8683211, + "minlon": -73.9743704, + "maxlat": 40.8684555, + "maxlon": -73.9741600 + }, + "nodes": [ + 6609745940, + 7373661868, + 7373661869, + 7373661870, + 7373661871, + 7373661872, + 7373661873, + 7373661874, + 7373661875, + 7373661876, + 7373661877, + 7373661878, + 7373661879, + 7373661880, + 7373661881, + 7373661882, + 7373661883, + 7373661884, + 7373684485, + 7373684486, + 7373684487, + 7373684488, + 7373684489, + 7373684490, + 7373684491, + 6609745940 + ], + "geometry": [ + { "lat": 40.8684423, "lon": -73.9741600 }, + { "lat": 40.8684433, "lon": -73.9741747 }, + { "lat": 40.8684494, "lon": -73.9742017 }, + { "lat": 40.8684514, "lon": -73.9742142 }, + { "lat": 40.8684548, "lon": -73.9742367 }, + { "lat": 40.8684555, "lon": -73.9742609 }, + { "lat": 40.8684514, "lon": -73.9743031 }, + { "lat": 40.8684460, "lon": -73.9743327 }, + { "lat": 40.8684378, "lon": -73.9743498 }, + { "lat": 40.8684283, "lon": -73.9743615 }, + { "lat": 40.8684127, "lon": -73.9743695 }, + { "lat": 40.8683978, "lon": -73.9743704 }, + { "lat": 40.8683795, "lon": -73.9743695 }, + { "lat": 40.8683700, "lon": -73.9743660 }, + { "lat": 40.8683476, "lon": -73.9743516 }, + { "lat": 40.8683319, "lon": -73.9743336 }, + { "lat": 40.8683251, "lon": -73.9743121 }, + { "lat": 40.8683211, "lon": -73.9742843 }, + { "lat": 40.8683258, "lon": -73.9742546 }, + { "lat": 40.8683333, "lon": -73.9742367 }, + { "lat": 40.8683462, "lon": -73.9742178 }, + { "lat": 40.8683727, "lon": -73.9741927 }, + { "lat": 40.8683869, "lon": -73.9741828 }, + { "lat": 40.8684073, "lon": -73.9741756 }, + { "lat": 40.8684249, "lon": -73.9741684 }, + { "lat": 40.8684423, "lon": -73.9741600 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 788697753, + "bounds": { + "minlat": 40.8669398, + "minlon": -73.9731269, + "maxlat": 40.8673828, + "maxlon": -73.9726896 + }, + "nodes": [ + 7373684560, + 7373684561, + 7373684562, + 7373684563, + 7373684564, + 7373684565, + 7373684566, + 7373684567, + 7373684568, + 7373684569, + 7373684570, + 7373684571, + 7373684572, + 7373684573, + 7373684574, + 7373684575, + 7373684576, + 7373684577, + 7373684578, + 7373684579, + 7373684580, + 7373684581, + 7373684582, + 7373684583, + 7373684584, + 7373684585, + 7373684586, + 7373684587, + 7373684588, + 7373684589, + 7373684590, + 7373684591, + 7373684560 + ], + "geometry": [ + { "lat": 40.8670601, "lon": -73.9731151 }, + { "lat": 40.8670459, "lon": -73.9731234 }, + { "lat": 40.8670343, "lon": -73.9731269 }, + { "lat": 40.8670218, "lon": -73.9731269 }, + { "lat": 40.8670102, "lon": -73.9731234 }, + { "lat": 40.8669986, "lon": -73.9731080 }, + { "lat": 40.8669656, "lon": -73.9730432 }, + { "lat": 40.8669523, "lon": -73.9730079 }, + { "lat": 40.8669451, "lon": -73.9729819 }, + { "lat": 40.8669425, "lon": -73.9729584 }, + { "lat": 40.8669398, "lon": -73.9729336 }, + { "lat": 40.8669398, "lon": -73.9729089 }, + { "lat": 40.8669407, "lon": -73.9728853 }, + { "lat": 40.8669425, "lon": -73.9728641 }, + { "lat": 40.8669443, "lon": -73.9728417 }, + { "lat": 40.8669496, "lon": -73.9728228 }, + { "lat": 40.8669558, "lon": -73.9728087 }, + { "lat": 40.8669665, "lon": -73.9727981 }, + { "lat": 40.8669826, "lon": -73.9727910 }, + { "lat": 40.8671332, "lon": -73.9727309 }, + { "lat": 40.8672286, "lon": -73.9726944 }, + { "lat": 40.8672419, "lon": -73.9726896 }, + { "lat": 40.8672553, "lon": -73.9726896 }, + { "lat": 40.8672651, "lon": -73.9726932 }, + { "lat": 40.8672776, "lon": -73.9727026 }, + { "lat": 40.8672856, "lon": -73.9727144 }, + { "lat": 40.8672927, "lon": -73.9727285 }, + { "lat": 40.8673828, "lon": -73.9729560 }, + { "lat": 40.8671216, "lon": -73.9730597 }, + { "lat": 40.8671074, "lon": -73.9730750 }, + { "lat": 40.8670976, "lon": -73.9730880 }, + { "lat": 40.8670797, "lon": -73.9731021 }, + { "lat": 40.8670601, "lon": -73.9731151 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 788697757, + "bounds": { + "minlat": 40.8668440, + "minlon": -73.9713100, + "maxlat": 40.8671156, + "maxlon": -73.9710447 + }, + "nodes": [ + 7373684605, + 103220032 + ], + "geometry": [ + { "lat": 40.8671156, "lon": -73.9710447 }, + { "lat": 40.8668440, "lon": -73.9713100 } + ], + "tags": { + "highway": "residential", + "name": "Ridge Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ridge", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 788697758, + "bounds": { + "minlat": 40.8658977, + "minlon": -73.9716222, + "maxlat": 40.8659476, + "maxlon": -73.9708856 + }, + "nodes": [ + 3531038483, + 7373684626, + 3531038484, + 7373684625, + 7373684627 + ], + "geometry": [ + { "lat": 40.8659281, "lon": -73.9716222 }, + { "lat": 40.8659476, "lon": -73.9715709 }, + { "lat": 40.8659329, "lon": -73.9713909 }, + { "lat": 40.8659221, "lon": -73.9712358 }, + { "lat": 40.8658977, "lon": -73.9708856 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697759, + "bounds": { + "minlat": 40.8646967, + "minlon": -73.9716740, + "maxlat": 40.8652063, + "maxlon": -73.9712214 + }, + "nodes": [ + 3531038451, + 7373684645, + 7373684650, + 3531038457 + ], + "geometry": [ + { "lat": 40.8646967, "lon": -73.9716740 }, + { "lat": 40.8647288, "lon": -73.9716455 }, + { "lat": 40.8650914, "lon": -73.9713234 }, + { "lat": 40.8652063, "lon": -73.9712214 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Hilltop Court" + } +}, +{ + "type": "way", + "id": 788697760, + "bounds": { + "minlat": 40.8645978, + "minlon": -73.9722737, + "maxlat": 40.8646967, + "maxlon": -73.9716740 + }, + "nodes": [ + 3531038451, + 7373684629, + 7373684630, + 7373684631, + 7373684632, + 7373684633, + 7373684634, + 7373684635, + 7373684636, + 7373684637, + 7373684638, + 7373684639, + 7373684640, + 7373684641, + 7373684642, + 7373684643, + 7373684644 + ], + "geometry": [ + { "lat": 40.8646967, "lon": -73.9716740 }, + { "lat": 40.8646767, "lon": -73.9716947 }, + { "lat": 40.8646603, "lon": -73.9717189 }, + { "lat": 40.8646470, "lon": -73.9717515 }, + { "lat": 40.8646394, "lon": -73.9717799 }, + { "lat": 40.8646369, "lon": -73.9718066 }, + { "lat": 40.8646344, "lon": -73.9718383 }, + { "lat": 40.8646327, "lon": -73.9718880 }, + { "lat": 40.8646344, "lon": -73.9719292 }, + { "lat": 40.8646325, "lon": -73.9719560 }, + { "lat": 40.8646255, "lon": -73.9719843 }, + { "lat": 40.8646173, "lon": -73.9720077 }, + { "lat": 40.8646079, "lon": -73.9720336 }, + { "lat": 40.8645990, "lon": -73.9720603 }, + { "lat": 40.8645978, "lon": -73.9720886 }, + { "lat": 40.8646016, "lon": -73.9721254 }, + { "lat": 40.8646142, "lon": -73.9722737 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Hilltop Court", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 788697761, + "bounds": { + "minlat": 40.8647288, + "minlon": -73.9716991, + "maxlat": 40.8649959, + "maxlon": -73.9715765 + }, + "nodes": [ + 7373684645, + 7373684646, + 7373684647, + 7373684648, + 7373684649 + ], + "geometry": [ + { "lat": 40.8647288, "lon": -73.9716455 }, + { "lat": 40.8647791, "lon": -73.9716991 }, + { "lat": 40.8649688, "lon": -73.9716807 }, + { "lat": 40.8649959, "lon": -73.9716329 }, + { "lat": 40.8649934, "lon": -73.9715765 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697762, + "bounds": { + "minlat": 40.8647266, + "minlon": -73.9714592, + "maxlat": 40.8650914, + "maxlon": -73.9712051 + }, + "nodes": [ + 7373684650, + 8289473630, + 7373684651, + 7373684652, + 7373684653, + 7373684654, + 7373684655, + 7373684656, + 7373684657 + ], + "geometry": [ + { "lat": 40.8650914, "lon": -73.9713234 }, + { "lat": 40.8650373, "lon": -73.9712456 }, + { "lat": 40.8650205, "lon": -73.9712214 }, + { "lat": 40.8650066, "lon": -73.9712127 }, + { "lat": 40.8649943, "lon": -73.9712062 }, + { "lat": 40.8649795, "lon": -73.9712051 }, + { "lat": 40.8649664, "lon": -73.9712084 }, + { "lat": 40.8647266, "lon": -73.9713311 }, + { "lat": 40.8647652, "lon": -73.9714592 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697763, + "bounds": { + "minlat": 40.8643710, + "minlon": -73.9716060, + "maxlat": 40.8645206, + "maxlon": -73.9711354 + }, + "nodes": [ + 7373684658, + 7373684659 + ], + "geometry": [ + { "lat": 40.8643710, "lon": -73.9711354 }, + { "lat": 40.8645206, "lon": -73.9716060 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697764, + "bounds": { + "minlat": 40.8637127, + "minlon": -73.9721782, + "maxlat": 40.8637441, + "maxlon": -73.9716686 + }, + "nodes": [ + 7373684660, + 7373684661 + ], + "geometry": [ + { "lat": 40.8637441, "lon": -73.9721782 }, + { "lat": 40.8637127, "lon": -73.9716686 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697765, + "bounds": { + "minlat": 40.8631928, + "minlon": -73.9718833, + "maxlat": 40.8634594, + "maxlon": -73.9717339 + }, + "nodes": [ + 103094710, + 7373684662, + 7373684663, + 7373684664, + 7373684665 + ], + "geometry": [ + { "lat": 40.8631928, "lon": -73.9718409 }, + { "lat": 40.8632346, "lon": -73.9718833 }, + { "lat": 40.8634360, "lon": -73.9718644 }, + { "lat": 40.8634594, "lon": -73.9718249 }, + { "lat": 40.8634542, "lon": -73.9717339 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697766, + "bounds": { + "minlat": 40.8678240, + "minlon": -73.9745517, + "maxlat": 40.8679328, + "maxlon": -73.9740233 + }, + "nodes": [ + 7373684666, + 7373684667 + ], + "geometry": [ + { "lat": 40.8679328, "lon": -73.9745517 }, + { "lat": 40.8678240, "lon": -73.9740233 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 788697767, + "bounds": { + "minlat": 40.8676608, + "minlon": -73.9746092, + "maxlat": 40.8677713, + "maxlon": -73.9740788 + }, + "nodes": [ + 7373684668, + 7373684669 + ], + "geometry": [ + { "lat": 40.8677713, "lon": -73.9746092 }, + { "lat": 40.8676608, "lon": -73.9740788 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 788697768, + "bounds": { + "minlat": 40.8676693, + "minlon": -73.9740537, + "maxlat": 40.8677347, + "maxlon": -73.9737308 + }, + "nodes": [ + 7373684670, + 7373684671 + ], + "geometry": [ + { "lat": 40.8677347, "lon": -73.9740537 }, + { "lat": 40.8676693, "lon": -73.9737308 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 788697769, + "bounds": { + "minlat": 40.8678189, + "minlon": -73.9740026, + "maxlat": 40.8678850, + "maxlon": -73.9736834 + }, + "nodes": [ + 7373684672, + 7373684673 + ], + "geometry": [ + { "lat": 40.8678850, "lon": -73.9740026 }, + { "lat": 40.8678189, "lon": -73.9736834 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 788697770, + "bounds": { + "minlat": 40.8675100, + "minlon": -73.9741078, + "maxlat": 40.8675754, + "maxlon": -73.9737810 + }, + "nodes": [ + 7373684674, + 7373684675 + ], + "geometry": [ + { "lat": 40.8675754, "lon": -73.9741078 }, + { "lat": 40.8675100, "lon": -73.9737810 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 788697771, + "bounds": { + "minlat": 40.8674942, + "minlon": -73.9746505, + "maxlat": 40.8680802, + "maxlon": -73.9739804 + }, + "nodes": [ + 7087554967, + 7087554968, + 7087554969, + 7087554970, + 7087554971, + 7373684668, + 7373684666, + 7087554972, + 7087554973, + 7087554974, + 7087554975, + 7087554976, + 7087554977, + 7373684672, + 7373684667, + 7373684670, + 7373684669, + 7373684674, + 7087554967 + ], + "geometry": [ + { "lat": 40.8674942, "lon": -73.9741354 }, + { "lat": 40.8675256, "lon": -73.9741857 }, + { "lat": 40.8676161, "lon": -73.9746207 }, + { "lat": 40.8676310, "lon": -73.9746442 }, + { "lat": 40.8676551, "lon": -73.9746505 }, + { "lat": 40.8677713, "lon": -73.9746092 }, + { "lat": 40.8679328, "lon": -73.9745517 }, + { "lat": 40.8680546, "lon": -73.9745084 }, + { "lat": 40.8680743, "lon": -73.9744846 }, + { "lat": 40.8680802, "lon": -73.9744513 }, + { "lat": 40.8679890, "lon": -73.9740184 }, + { "lat": 40.8679720, "lon": -73.9739900 }, + { "lat": 40.8679503, "lon": -73.9739804 }, + { "lat": 40.8678850, "lon": -73.9740026 }, + { "lat": 40.8678240, "lon": -73.9740233 }, + { "lat": 40.8677347, "lon": -73.9740537 }, + { "lat": 40.8676608, "lon": -73.9740788 }, + { "lat": 40.8675754, "lon": -73.9741078 }, + { "lat": 40.8674942, "lon": -73.9741354 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697788, + "bounds": { + "minlat": 40.8672434, + "minlon": -73.9741615, + "maxlat": 40.8674365, + "maxlon": -73.9740832 + }, + "nodes": [ + 7373684766, + 7373684767, + 7373684768, + 7373684769 + ], + "geometry": [ + { "lat": 40.8674365, "lon": -73.9740832 }, + { "lat": 40.8674053, "lon": -73.9741172 }, + { "lat": 40.8672876, "lon": -73.9741615 }, + { "lat": 40.8672434, "lon": -73.9741579 } + ], + "tags": { + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 788697806, + "bounds": { + "minlat": 40.8638169, + "minlon": -73.9750810, + "maxlat": 40.8638598, + "maxlon": -73.9748269 + }, + "nodes": [ + 7373684932, + 7373684878 + ], + "geometry": [ + { "lat": 40.8638169, "lon": -73.9748269 }, + { "lat": 40.8638598, "lon": -73.9750810 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697807, + "bounds": { + "minlat": 40.8636523, + "minlon": -73.9751401, + "maxlat": 40.8640065, + "maxlon": -73.9750392 + }, + "nodes": [ + 7373684896, + 7373684878, + 7373684879 + ], + "geometry": [ + { "lat": 40.8636523, "lon": -73.9751401 }, + { "lat": 40.8638598, "lon": -73.9750810 }, + { "lat": 40.8640065, "lon": -73.9750392 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697808, + "bounds": { + "minlat": 40.8636523, + "minlon": -73.9753302, + "maxlat": 40.8640372, + "maxlon": -73.9750392 + }, + "nodes": [ + 7373684879, + 7373684880, + 7373684881, + 7373684882, + 7373684883, + 7373684884, + 7373684885, + 7373684886, + 7373684887, + 7373684888, + 7373684889, + 7373684890, + 7373684891, + 7373684892, + 7373684893, + 7373684894, + 7373684895, + 7373684896 + ], + "geometry": [ + { "lat": 40.8640065, "lon": -73.9750392 }, + { "lat": 40.8640349, "lon": -73.9751778 }, + { "lat": 40.8640372, "lon": -73.9751946 }, + { "lat": 40.8640364, "lon": -73.9752094 }, + { "lat": 40.8640304, "lon": -73.9752253 }, + { "lat": 40.8640199, "lon": -73.9752371 }, + { "lat": 40.8640057, "lon": -73.9752500 }, + { "lat": 40.8639892, "lon": -73.9752589 }, + { "lat": 40.8639608, "lon": -73.9752698 }, + { "lat": 40.8637789, "lon": -73.9753243 }, + { "lat": 40.8637631, "lon": -73.9753282 }, + { "lat": 40.8637414, "lon": -73.9753302 }, + { "lat": 40.8637235, "lon": -73.9753262 }, + { "lat": 40.8637085, "lon": -73.9753173 }, + { "lat": 40.8636943, "lon": -73.9753035 }, + { "lat": 40.8636823, "lon": -73.9752896 }, + { "lat": 40.8636755, "lon": -73.9752708 }, + { "lat": 40.8636523, "lon": -73.9751401 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 788697813, + "bounds": { + "minlat": 40.8634679, + "minlon": -73.9754618, + "maxlat": 40.8638548, + "maxlon": -73.9749315 + }, + "nodes": [ + 7373684931, + 7373684915, + 7373684916, + 7373684917 + ], + "geometry": [ + { "lat": 40.8634679, "lon": -73.9749315 }, + { "lat": 40.8635786, "lon": -73.9754618 }, + { "lat": 40.8638108, "lon": -73.9754067 }, + { "lat": 40.8638548, "lon": -73.9754303 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697816, + "bounds": { + "minlat": 40.8601399, + "minlon": -73.9764621, + "maxlat": 40.8605799, + "maxlon": -73.9762950 + }, + "nodes": [ + 7373684937, + 7373684938, + 7373684939, + 7373684940, + 7373684941, + 7373684942, + 7373684967 + ], + "geometry": [ + { "lat": 40.8605799, "lon": -73.9763304 }, + { "lat": 40.8602915, "lon": -73.9764570 }, + { "lat": 40.8602750, "lon": -73.9764621 }, + { "lat": 40.8602614, "lon": -73.9764621 }, + { "lat": 40.8602362, "lon": -73.9764493 }, + { "lat": 40.8602148, "lon": -73.9764223 }, + { "lat": 40.8601399, "lon": -73.9762950 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 788697817, + "bounds": { + "minlat": 40.8598169, + "minlon": -73.9770984, + "maxlat": 40.8599765, + "maxlon": -73.9765039 + }, + "nodes": [ + 11445776620, + 11445776619 + ], + "geometry": [ + { "lat": 40.8599765, "lon": -73.9770984 }, + { "lat": 40.8598169, "lon": -73.9765039 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 788697818, + "bounds": { + "minlat": 40.8596549, + "minlon": -73.9771152, + "maxlat": 40.8598169, + "maxlon": -73.9765039 + }, + "nodes": [ + 11445776619, + 7373684949, + 7373684947, + 7373684948 + ], + "geometry": [ + { "lat": 40.8598169, "lon": -73.9765039 }, + { "lat": 40.8597006, "lon": -73.9765585 }, + { "lat": 40.8596549, "lon": -73.9765798 }, + { "lat": 40.8598026, "lon": -73.9771152 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 788697819, + "bounds": { + "minlat": 40.8596398, + "minlon": -73.9765585, + "maxlat": 40.8597006, + "maxlon": -73.9763600 + }, + "nodes": [ + 7373684949, + 7373684951, + 13829857324, + 7373684955, + 11445776618 + ], + "geometry": [ + { "lat": 40.8597006, "lon": -73.9765585 }, + { "lat": 40.8596793, "lon": -73.9764871 }, + { "lat": 40.8596730, "lon": -73.9764662 }, + { "lat": 40.8596607, "lon": -73.9764250 }, + { "lat": 40.8596398, "lon": -73.9763600 } + ], + "tags": { + "highway": "service", + "level": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 788697820, + "bounds": { + "minlat": 40.8594465, + "minlon": -73.9771465, + "maxlat": 40.8596793, + "maxlon": -73.9764871 + }, + "nodes": [ + 7373684951, + 7373684952, + 7373684953, + 7373684954 + ], + "geometry": [ + { "lat": 40.8596793, "lon": -73.9764871 }, + { "lat": 40.8594465, "lon": -73.9766060 }, + { "lat": 40.8595573, "lon": -73.9769931 }, + { "lat": 40.8596747, "lon": -73.9771465 } + ], + "tags": { + "highway": "service", + "level": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 788697821, + "bounds": { + "minlat": 40.8598980, + "minlon": -73.9764235, + "maxlat": 40.8600202, + "maxlon": -73.9762921 + }, + "nodes": [ + 7373684956, + 7373684957, + 7373684958, + 7373684959, + 7373684960, + 7373684961, + 7373684962, + 7373684963, + 7373684946 + ], + "geometry": [ + { "lat": 40.8599754, "lon": -73.9762921 }, + { "lat": 40.8599912, "lon": -73.9762921 }, + { "lat": 40.8600057, "lon": -73.9762921 }, + { "lat": 40.8600149, "lon": -73.9763078 }, + { "lat": 40.8600202, "lon": -73.9763374 }, + { "lat": 40.8600149, "lon": -73.9763549 }, + { "lat": 40.8599991, "lon": -73.9763740 }, + { "lat": 40.8599714, "lon": -73.9763897 }, + { "lat": 40.8598980, "lon": -73.9764235 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697822, + "bounds": { + "minlat": 40.8600202, + "minlon": -73.9763374, + "maxlat": 40.8601399, + "maxlon": -73.9762950 + }, + "nodes": [ + 7373684960, + 7373684967 + ], + "geometry": [ + { "lat": 40.8600202, "lon": -73.9763374 }, + { "lat": 40.8601399, "lon": -73.9762950 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697823, + "bounds": { + "minlat": 40.8601399, + "minlon": -73.9762950, + "maxlat": 40.8605272, + "maxlon": -73.9761525 + }, + "nodes": [ + 7373684967, + 7373684968 + ], + "geometry": [ + { "lat": 40.8601399, "lon": -73.9762950 }, + { "lat": 40.8605272, "lon": -73.9761525 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 788697824, + "bounds": { + "minlat": 40.8605272, + "minlon": -73.9763304, + "maxlat": 40.8605799, + "maxlon": -73.9761525 + }, + "nodes": [ + 7373684968, + 7373684937 + ], + "geometry": [ + { "lat": 40.8605272, "lon": -73.9761525 }, + { "lat": 40.8605799, "lon": -73.9763304 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697825, + "bounds": { + "minlat": 40.8598554, + "minlon": -73.9772948, + "maxlat": 40.8607069, + "maxlon": -73.9763304 + }, + "nodes": [ + 7373684937, + 7051523768, + 7051523769, + 7373684976, + 7051523770, + 7051523771, + 7373684943, + 7373684944 + ], + "geometry": [ + { "lat": 40.8605799, "lon": -73.9763304 }, + { "lat": 40.8606480, "lon": -73.9765603 }, + { "lat": 40.8607069, "lon": -73.9769054 }, + { "lat": 40.8607060, "lon": -73.9769842 }, + { "lat": 40.8606721, "lon": -73.9770346 }, + { "lat": 40.8603621, "lon": -73.9771860 }, + { "lat": 40.8600637, "lon": -73.9772512 }, + { "lat": 40.8598554, "lon": -73.9772948 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788697826, + "bounds": { + "minlat": 40.8601875, + "minlon": -73.9761445, + "maxlat": 40.8605248, + "maxlon": -73.9760340 + }, + "nodes": [ + 7051523763, + 7051523764, + 7051523765, + 7051523766, + 7051523767 + ], + "geometry": [ + { "lat": 40.8605248, "lon": -73.9761445 }, + { "lat": 40.8604486, "lon": -73.9760649 }, + { "lat": 40.8603642, "lon": -73.9760418 }, + { "lat": 40.8602786, "lon": -73.9760649 }, + { "lat": 40.8601875, "lon": -73.9760340 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 788697828, + "bounds": { + "minlat": 40.8605248, + "minlon": -73.9761445, + "maxlat": 40.8608681, + "maxlon": -73.9759585 + }, + "nodes": [ + 7051523763, + 7373684969, + 7373684972, + 7373684970, + 7373684971 + ], + "geometry": [ + { "lat": 40.8605248, "lon": -73.9761445 }, + { "lat": 40.8606889, "lon": -73.9760722 }, + { "lat": 40.8607037, "lon": -73.9760453 }, + { "lat": 40.8607152, "lon": -73.9760243 }, + { "lat": 40.8608681, "lon": -73.9759585 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 788697829, + "bounds": { + "minlat": 40.8607037, + "minlon": -73.9769842, + "maxlat": 40.8608654, + "maxlon": -73.9760453 + }, + "nodes": [ + 7373684972, + 7373684973, + 7373684974, + 7373684975, + 7373684976 + ], + "geometry": [ + { "lat": 40.8607037, "lon": -73.9760453 }, + { "lat": 40.8607306, "lon": -73.9761105 }, + { "lat": 40.8608654, "lon": -73.9768500 }, + { "lat": 40.8607948, "lon": -73.9769242 }, + { "lat": 40.8607060, "lon": -73.9769842 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 788946684, + "bounds": { + "minlat": 40.8612764, + "minlon": -73.9761860, + "maxlat": 40.8613715, + "maxlon": -73.9755521 + }, + "nodes": [ + 13754077759, + 7376099417 + ], + "geometry": [ + { "lat": 40.8612764, "lon": -73.9755521 }, + { "lat": 40.8613715, "lon": -73.9761860 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788946699, + "bounds": { + "minlat": 40.8586817, + "minlon": -73.9803125, + "maxlat": 40.8588979, + "maxlon": -73.9799527 + }, + "nodes": [ + 7376099536, + 7376099537, + 7376099538 + ], + "geometry": [ + { "lat": 40.8588979, "lon": -73.9803125 }, + { "lat": 40.8587967, "lon": -73.9799527 }, + { "lat": 40.8586817, "lon": -73.9800097 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788946702, + "bounds": { + "minlat": 40.8586162, + "minlon": -73.9791941, + "maxlat": 40.8589822, + "maxlon": -73.9790346 + }, + "nodes": [ + 6892945744, + 7376099553, + 7376099554 + ], + "geometry": [ + { "lat": 40.8586162, "lon": -73.9791793 }, + { "lat": 40.8586737, "lon": -73.9791941 }, + { "lat": 40.8589822, "lon": -73.9790346 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788946719, + "bounds": { + "minlat": 40.8586537, + "minlon": -73.9784209, + "maxlat": 40.8586548, + "maxlon": -73.9779458 + }, + "nodes": [ + 7376099637, + 7376099638 + ], + "geometry": [ + { "lat": 40.8586537, "lon": -73.9784209 }, + { "lat": 40.8586548, "lon": -73.9779458 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 788946720, + "bounds": { + "minlat": 40.8587497, + "minlon": -73.9783473, + "maxlat": 40.8587871, + "maxlon": -73.9779479 + }, + "nodes": [ + 7376099639, + 7376099640, + 7376099641 + ], + "geometry": [ + { "lat": 40.8587871, "lon": -73.9783473 }, + { "lat": 40.8587567, "lon": -73.9781791 }, + { "lat": 40.8587497, "lon": -73.9779479 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 789031444, + "bounds": { + "minlat": 40.8565131, + "minlon": -73.9796823, + "maxlat": 40.8568694, + "maxlon": -73.9792972 + }, + "nodes": [ + 5449467661, + 5449467667, + 5449467659, + 5449467655, + 5449467669, + 5449467666 + ], + "geometry": [ + { "lat": 40.8565131, "lon": -73.9796823 }, + { "lat": 40.8565532, "lon": -73.9796556 }, + { "lat": 40.8567236, "lon": -73.9795424 }, + { "lat": 40.8567744, "lon": -73.9794794 }, + { "lat": 40.8568146, "lon": -73.9794174 }, + { "lat": 40.8568694, "lon": -73.9792972 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 789031445, + "bounds": { + "minlat": 40.8560765, + "minlon": -73.9795652, + "maxlat": 40.8563757, + "maxlon": -73.9793627 + }, + "nodes": [ + 5449467662, + 6964899049, + 5449467652 + ], + "geometry": [ + { "lat": 40.8563757, "lon": -73.9793627 }, + { "lat": 40.8562255, "lon": -73.9794644 }, + { "lat": 40.8560765, "lon": -73.9795652 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 789031446, + "bounds": { + "minlat": 40.8560765, + "minlon": -73.9798468, + "maxlat": 40.8561992, + "maxlon": -73.9795652 + }, + "nodes": [ + 5449467652, + 5449467672 + ], + "geometry": [ + { "lat": 40.8560765, "lon": -73.9795652 }, + { "lat": 40.8561992, "lon": -73.9798468 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 789031447, + "bounds": { + "minlat": 40.8563757, + "minlon": -73.9796823, + "maxlat": 40.8565131, + "maxlon": -73.9793627 + }, + "nodes": [ + 5449467661, + 5449467662 + ], + "geometry": [ + { "lat": 40.8565131, "lon": -73.9796823 }, + { "lat": 40.8563757, "lon": -73.9793627 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 789050684, + "bounds": { + "minlat": 40.8652536, + "minlon": -73.9720006, + "maxlat": 40.8652840, + "maxlon": -73.9714965 + }, + "nodes": [ + 7376909215, + 7376909216 + ], + "geometry": [ + { "lat": 40.8652840, "lon": -73.9720006 }, + { "lat": 40.8652536, "lon": -73.9714965 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 789050695, + "bounds": { + "minlat": 40.8652800, + "minlon": -73.9707537, + "maxlat": 40.8658193, + "maxlon": -73.9702284 + }, + "nodes": [ + 7376909258, + 7376909259, + 7376909260, + 7376909261, + 7376909262 + ], + "geometry": [ + { "lat": 40.8652800, "lon": -73.9702284 }, + { "lat": 40.8656492, "lon": -73.9704673 }, + { "lat": 40.8656701, "lon": -73.9704864 }, + { "lat": 40.8656893, "lon": -73.9705139 }, + { "lat": 40.8658193, "lon": -73.9707537 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 789063816, + "bounds": { + "minlat": 40.8592732, + "minlon": -73.9730136, + "maxlat": 40.8597016, + "maxlon": -73.9722205 + }, + "nodes": [ + 7377058249, + 7377058272, + 7377058270, + 7377058250, + 7377058251, + 7377058254, + 7377058263, + 7377058264, + 7377058266, + 7377058268 + ], + "geometry": [ + { "lat": 40.8597016, "lon": -73.9730136 }, + { "lat": 40.8595964, "lon": -73.9728294 }, + { "lat": 40.8594941, "lon": -73.9726504 }, + { "lat": 40.8594669, "lon": -73.9726029 }, + { "lat": 40.8594416, "lon": -73.9725603 }, + { "lat": 40.8593936, "lon": -73.9726120 }, + { "lat": 40.8592732, "lon": -73.9724155 }, + { "lat": 40.8593131, "lon": -73.9723614 }, + { "lat": 40.8593210, "lon": -73.9723371 }, + { "lat": 40.8594439, "lon": -73.9722205 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 789063817, + "bounds": { + "minlat": 40.8594941, + "minlon": -73.9726504, + "maxlat": 40.8596263, + "maxlon": -73.9725197 + }, + "nodes": [ + 7377058269, + 7377058270 + ], + "geometry": [ + { "lat": 40.8596263, "lon": -73.9725197 }, + { "lat": 40.8594941, "lon": -73.9726504 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 789063818, + "bounds": { + "minlat": 40.8595964, + "minlon": -73.9728294, + "maxlat": 40.8597356, + "maxlon": -73.9726992 + }, + "nodes": [ + 7377058271, + 7377058272 + ], + "geometry": [ + { "lat": 40.8597356, "lon": -73.9726992 }, + { "lat": 40.8595964, "lon": -73.9728294 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 789063819, + "bounds": { + "minlat": 40.8593131, + "minlon": -73.9725603, + "maxlat": 40.8594416, + "maxlon": -73.9723614 + }, + "nodes": [ + 7377058251, + 7377058273, + 7377058274, + 7377058264 + ], + "geometry": [ + { "lat": 40.8594416, "lon": -73.9725603 }, + { "lat": 40.8593998, "lon": -73.9724956 }, + { "lat": 40.8593630, "lon": -73.9724386 }, + { "lat": 40.8593131, "lon": -73.9723614 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 789063823, + "bounds": { + "minlat": 40.8597688, + "minlon": -73.9726995, + "maxlat": 40.8599936, + "maxlon": -73.9723058 + }, + "nodes": [ + 7377058283, + 7377058284 + ], + "geometry": [ + { "lat": 40.8599936, "lon": -73.9726995 }, + { "lat": 40.8597688, "lon": -73.9723058 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 789063824, + "bounds": { + "minlat": 40.8595003, + "minlon": -73.9723130, + "maxlat": 40.8597521, + "maxlon": -73.9720477 + }, + "nodes": [ + 7377058285, + 7377058290, + 7377058287, + 7377058286 + ], + "geometry": [ + { "lat": 40.8595003, "lon": -73.9723130 }, + { "lat": 40.8596023, "lon": -73.9722055 }, + { "lat": 40.8597354, "lon": -73.9720653 }, + { "lat": 40.8597521, "lon": -73.9720477 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 789063825, + "bounds": { + "minlat": 40.8595304, + "minlon": -73.9722055, + "maxlat": 40.8597354, + "maxlon": -73.9719440 + }, + "nodes": [ + 7377058287, + 7377058288, + 7377058289, + 7377058290 + ], + "geometry": [ + { "lat": 40.8597354, "lon": -73.9720653 }, + { "lat": 40.8596663, "lon": -73.9719440 }, + { "lat": 40.8595304, "lon": -73.9720793 }, + { "lat": 40.8596023, "lon": -73.9722055 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 789063826, + "bounds": { + "minlat": 40.8597155, + "minlon": -73.9718816, + "maxlat": 40.8598866, + "maxlon": -73.9716115 + }, + "nodes": [ + 7377058291, + 13525924939, + 7377058292 + ], + "geometry": [ + { "lat": 40.8597155, "lon": -73.9716115 }, + { "lat": 40.8597491, "lon": -73.9716645 }, + { "lat": 40.8598866, "lon": -73.9718816 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 789063830, + "bounds": { + "minlat": 40.8603028, + "minlon": -73.9708817, + "maxlat": 40.8604606, + "maxlon": -73.9708486 + }, + "nodes": [ + 1952055196, + 7377058307, + 7377058308, + 7377058309, + 7377058310, + 7377058306 + ], + "geometry": [ + { "lat": 40.8603028, "lon": -73.9708732 }, + { "lat": 40.8603471, "lon": -73.9708817 }, + { "lat": 40.8603802, "lon": -73.9708817 }, + { "lat": 40.8604091, "lon": -73.9708761 }, + { "lat": 40.8604439, "lon": -73.9708592 }, + { "lat": 40.8604606, "lon": -73.9708486 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 789063831, + "bounds": { + "minlat": 40.8604606, + "minlon": -73.9710008, + "maxlat": 40.8604753, + "maxlon": -73.9708486 + }, + "nodes": [ + 1952055217, + 7377058311, + 7377058312, + 7377058306 + ], + "geometry": [ + { "lat": 40.8604753, "lon": -73.9710008 }, + { "lat": 40.8604685, "lon": -73.9709512 }, + { "lat": 40.8604651, "lon": -73.9709086 }, + { "lat": 40.8604606, "lon": -73.9708486 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 789063832, + "bounds": { + "minlat": 40.8603028, + "minlon": -73.9710008, + "maxlat": 40.8604753, + "maxlon": -73.9708732 + }, + "nodes": [ + 1952055217, + 1952055190, + 1952055196 + ], + "geometry": [ + { "lat": 40.8604753, "lon": -73.9710008 }, + { "lat": 40.8603452, "lon": -73.9709405 }, + { "lat": 40.8603028, "lon": -73.9708732 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "yes", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 789063833, + "bounds": { + "minlat": 40.8612351, + "minlon": -73.9694207, + "maxlat": 40.8613180, + "maxlon": -73.9692227 + }, + "nodes": [ + 1952055191, + 7377058313 + ], + "geometry": [ + { "lat": 40.8612351, "lon": -73.9694207 }, + { "lat": 40.8613180, "lon": -73.9692227 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 789063834, + "bounds": { + "minlat": 40.8611602, + "minlon": -73.9694235, + "maxlat": 40.8616446, + "maxlon": -73.9689827 + }, + "nodes": [ + 7377058313, + 7377058314, + 7377058315, + 7377058316, + 7377058317, + 7377058318, + 7377058319, + 7377058320, + 7377058321, + 7377058322, + 7377058323, + 7377058324, + 7377058325, + 7377058326, + 7377058313 + ], + "geometry": [ + { "lat": 40.8613180, "lon": -73.9692227 }, + { "lat": 40.8612306, "lon": -73.9691476 }, + { "lat": 40.8612026, "lon": -73.9691240 }, + { "lat": 40.8611771, "lon": -73.9690982 }, + { "lat": 40.8611627, "lon": -73.9690690 }, + { "lat": 40.8611602, "lon": -73.9690444 }, + { "lat": 40.8611670, "lon": -73.9690152 }, + { "lat": 40.8611788, "lon": -73.9690006 }, + { "lat": 40.8611924, "lon": -73.9689883 }, + { "lat": 40.8612111, "lon": -73.9689827 }, + { "lat": 40.8612365, "lon": -73.9689883 }, + { "lat": 40.8612713, "lon": -73.9690107 }, + { "lat": 40.8616446, "lon": -73.9693035 }, + { "lat": 40.8615852, "lon": -73.9694235 }, + { "lat": 40.8613180, "lon": -73.9692227 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 789303792, + "bounds": { + "minlat": 40.7613954, + "minlon": -73.9307947, + "maxlat": 40.7615717, + "maxlon": -73.9304146 + }, + "nodes": [ + 7380188035, + 7380188036, + 7380188037 + ], + "geometry": [ + { "lat": 40.7613954, "lon": -73.9304146 }, + { "lat": 40.7614456, "lon": -73.9305229 }, + { "lat": 40.7615717, "lon": -73.9307947 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 789634640, + "bounds": { + "minlat": 40.7710474, + "minlon": -73.9899959, + "maxlat": 40.7722404, + "maxlon": -73.9871245 + }, + "nodes": [ + 1241742743, + 7341373901, + 12110077284, + 12110077277, + 8694312977, + 7581159579, + 7590906826, + 7581159581, + 7591060184, + 2061592973 + ], + "geometry": [ + { "lat": 40.7710474, "lon": -73.9871245 }, + { "lat": 40.7710981, "lon": -73.9872930 }, + { "lat": 40.7713015, "lon": -73.9877767 }, + { "lat": 40.7713766, "lon": -73.9879556 }, + { "lat": 40.7715842, "lon": -73.9884493 }, + { "lat": 40.7716553, "lon": -73.9886158 }, + { "lat": 40.7717300, "lon": -73.9887980 }, + { "lat": 40.7720673, "lon": -73.9895924 }, + { "lat": 40.7721818, "lon": -73.9898664 }, + { "lat": 40.7722404, "lon": -73.9899959 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 60th Street", + "name:ru": "Западная 60-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 790027968, + "bounds": { + "minlat": 40.7132370, + "minlon": -73.9294780, + "maxlat": 40.7136400, + "maxlon": -73.9279060 + }, + "nodes": [ + 42496931, + 9959635952, + 12847161648, + 42496935 + ], + "geometry": [ + { "lat": 40.7132370, "lon": -73.9294780 }, + { "lat": 40.7132589, "lon": -73.9293926 }, + { "lat": 40.7136149, "lon": -73.9280039 }, + { "lat": 40.7136400, "lon": -73.9279060 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Ten Eyck Street", + "name:etymology:wikidata": "Q120719529", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Ten Eyck", + "tiger:name_type": "St", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 790170151, + "bounds": { + "minlat": 40.8641356, + "minlon": -73.9686788, + "maxlat": 40.8645127, + "maxlon": -73.9682863 + }, + "nodes": [ + 7387137999, + 7387138000 + ], + "geometry": [ + { "lat": 40.8641356, "lon": -73.9686788 }, + { "lat": 40.8645127, "lon": -73.9682863 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 790170152, + "bounds": { + "minlat": 40.8641958, + "minlon": -73.9687813, + "maxlat": 40.8645777, + "maxlon": -73.9682863 + }, + "nodes": [ + 7387138000, + 7387138001, + 7387138002 + ], + "geometry": [ + { "lat": 40.8645127, "lon": -73.9682863 }, + { "lat": 40.8645777, "lon": -73.9684001 }, + { "lat": 40.8641958, "lon": -73.9687813 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 790212529, + "bounds": { + "minlat": 40.8646393, + "minlon": -73.9607294, + "maxlat": 40.8649870, + "maxlon": -73.9600830 + }, + "nodes": [ + 7387444131, + 7387444133, + 7387444132 + ], + "geometry": [ + { "lat": 40.8649870, "lon": -73.9607294 }, + { "lat": 40.8647467, "lon": -73.9602825 }, + { "lat": 40.8646393, "lon": -73.9600830 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 790212530, + "bounds": { + "minlat": 40.8645460, + "minlon": -73.9605007, + "maxlat": 40.8647467, + "maxlon": -73.9602825 + }, + "nodes": [ + 7387444133, + 7387444135, + 7387444134 + ], + "geometry": [ + { "lat": 40.8647467, "lon": -73.9602825 }, + { "lat": 40.8645880, "lon": -73.9604550 }, + { "lat": 40.8645460, "lon": -73.9605007 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 790212531, + "bounds": { + "minlat": 40.8645880, + "minlon": -73.9606574, + "maxlat": 40.8647157, + "maxlon": -73.9604550 + }, + "nodes": [ + 7387444135, + 7387444136 + ], + "geometry": [ + { "lat": 40.8645880, "lon": -73.9604550 }, + { "lat": 40.8647157, "lon": -73.9606574 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 790212546, + "bounds": { + "minlat": 40.8644456, + "minlon": -73.9615936, + "maxlat": 40.8646607, + "maxlon": -73.9612248 + }, + "nodes": [ + 7387503105, + 7387503106 + ], + "geometry": [ + { "lat": 40.8646607, "lon": -73.9615936 }, + { "lat": 40.8644456, "lon": -73.9612248 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 790212547, + "bounds": { + "minlat": 40.8646089, + "minlon": -73.9619007, + "maxlat": 40.8647584, + "maxlon": -73.9616464 + }, + "nodes": [ + 7387503107, + 7387503108 + ], + "geometry": [ + { "lat": 40.8647584, "lon": -73.9619007 }, + { "lat": 40.8646089, "lon": -73.9616464 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 790212548, + "bounds": { + "minlat": 40.8641572, + "minlon": -73.9618780, + "maxlat": 40.8645864, + "maxlon": -73.9612801 + }, + "nodes": [ + 7387503109, + 7387503110, + 7387503111, + 7387503112 + ], + "geometry": [ + { "lat": 40.8643896, "lon": -73.9618780 }, + { "lat": 40.8641572, "lon": -73.9614854 }, + { "lat": 40.8643387, "lon": -73.9612801 }, + { "lat": 40.8645864, "lon": -73.9616700 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 790212551, + "bounds": { + "minlat": 40.8639001, + "minlon": -73.9614694, + "maxlat": 40.8642225, + "maxlon": -73.9611198 + }, + "nodes": [ + 7387503121, + 7387503122 + ], + "geometry": [ + { "lat": 40.8639001, "lon": -73.9614694 }, + { "lat": 40.8642225, "lon": -73.9611198 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 790212552, + "bounds": { + "minlat": 40.8637927, + "minlon": -73.9612897, + "maxlat": 40.8641275, + "maxlon": -73.9609286 + }, + "nodes": [ + 7387503123, + 7387503124 + ], + "geometry": [ + { "lat": 40.8637927, "lon": -73.9612897 }, + { "lat": 40.8641275, "lon": -73.9609286 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 790325083, + "bounds": { + "minlat": 40.8362390, + "minlon": -73.9992270, + "maxlat": 40.8384289, + "maxlon": -73.9970432 + }, + "nodes": [ + 103139589, + 103139591, + 13524430675, + 103139594, + 13524430673, + 13524430687, + 103139596, + 13524430688, + 103139598 + ], + "geometry": [ + { "lat": 40.8362390, "lon": -73.9992270 }, + { "lat": 40.8367771, "lon": -73.9986689 }, + { "lat": 40.8372812, "lon": -73.9981883 }, + { "lat": 40.8373292, "lon": -73.9981406 }, + { "lat": 40.8373829, "lon": -73.9980860 }, + { "lat": 40.8378267, "lon": -73.9976350 }, + { "lat": 40.8378752, "lon": -73.9975862 }, + { "lat": 40.8379273, "lon": -73.9975347 }, + { "lat": 40.8384289, "lon": -73.9970432 } + ], + "tags": { + "Bergen_County_database_ref": "31", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000031", + "highway": "tertiary", + "name": "Shaler Boulevard", + "ref": "CR 31", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Shaler", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 790325084, + "bounds": { + "minlat": 40.8372362, + "minlon": -74.0043840, + "maxlat": 40.8391930, + "maxlon": -74.0009641 + }, + "nodes": [ + 103206964, + 12016315325, + 12016315324, + 12016315177, + 12016315178, + 103159289, + 12016315176, + 12016315175, + 12016147281, + 12016147285, + 103206966 + ], + "geometry": [ + { "lat": 40.8372362, "lon": -74.0009641 }, + { "lat": 40.8372842, "lon": -74.0010485 }, + { "lat": 40.8373044, "lon": -74.0010834 }, + { "lat": 40.8378846, "lon": -74.0020990 }, + { "lat": 40.8379027, "lon": -74.0021317 }, + { "lat": 40.8379410, "lon": -74.0022027 }, + { "lat": 40.8379838, "lon": -74.0022736 }, + { "lat": 40.8380021, "lon": -74.0023057 }, + { "lat": 40.8391276, "lon": -74.0042718 }, + { "lat": 40.8391436, "lon": -74.0042993 }, + { "lat": 40.8391930, "lon": -74.0043840 } + ], + "tags": { + "highway": "residential", + "name": "Virgil Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Virgil", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 790325085, + "bounds": { + "minlat": 40.8349680, + "minlon": -73.9970390, + "maxlat": 40.8360461, + "maxlon": -73.9958962 + }, + "nodes": [ + 103206961, + 103156981, + 103224180 + ], + "geometry": [ + { "lat": 40.8349680, "lon": -73.9970390 }, + { "lat": 40.8354930, "lon": -73.9964850 }, + { "lat": 40.8360461, "lon": -73.9958962 } + ], + "tags": { + "highway": "residential", + "name": "Bruce Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bruce", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 790568583, + "bounds": { + "minlat": 40.8632147, + "minlon": -73.9579830, + "maxlat": 40.8635530, + "maxlon": -73.9576596 + }, + "nodes": [ + 103302556, + 7390935159, + 7390935160 + ], + "geometry": [ + { "lat": 40.8635530, "lon": -73.9579830 }, + { "lat": 40.8633616, "lon": -73.9576596 }, + { "lat": 40.8632147, "lon": -73.9578085 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 790863497, + "bounds": { + "minlat": 40.8618753, + "minlon": -73.9596026, + "maxlat": 40.8623133, + "maxlon": -73.9588036 + }, + "nodes": [ + 7393404727, + 7393404728, + 7393404729 + ], + "geometry": [ + { "lat": 40.8620567, "lon": -73.9596026 }, + { "lat": 40.8618753, "lon": -73.9592707 }, + { "lat": 40.8623133, "lon": -73.9588036 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 790863516, + "bounds": { + "minlat": 40.8621399, + "minlon": -73.9621512, + "maxlat": 40.8622899, + "maxlon": -73.9616919 + }, + "nodes": [ + 7393424531, + 7393424532, + 7393424533, + 7393424534, + 7393424535, + 7393424536, + 7393424537, + 7393424538 + ], + "geometry": [ + { "lat": 40.8621399, "lon": -73.9616919 }, + { "lat": 40.8621427, "lon": -73.9617633 }, + { "lat": 40.8621464, "lon": -73.9617899 }, + { "lat": 40.8621537, "lon": -73.9618177 }, + { "lat": 40.8621638, "lon": -73.9618455 }, + { "lat": 40.8621784, "lon": -73.9618733 }, + { "lat": 40.8622899, "lon": -73.9620739 }, + { "lat": 40.8621802, "lon": -73.9621512 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 790870127, + "bounds": { + "minlat": 40.8505607, + "minlon": -73.9852509, + "maxlat": 40.8507747, + "maxlon": -73.9850914 + }, + "nodes": [ + 7393466954, + 7393466955, + 7393466956, + 7393466957, + 7393466958 + ], + "geometry": [ + { "lat": 40.8507747, "lon": -73.9850965 }, + { "lat": 40.8506833, "lon": -73.9850914 }, + { "lat": 40.8506440, "lon": -73.9851120 }, + { "lat": 40.8506103, "lon": -73.9851510 }, + { "lat": 40.8505607, "lon": -73.9852509 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 790870128, + "bounds": { + "minlat": 40.8501997, + "minlon": -73.9859171, + "maxlat": 40.8506206, + "maxlon": -73.9856098 + }, + "nodes": [ + 4695808180, + 4695808179, + 4695808177, + 4695808178 + ], + "geometry": [ + { "lat": 40.8506206, "lon": -73.9859171 }, + { "lat": 40.8504357, "lon": -73.9857832 }, + { "lat": 40.8503237, "lon": -73.9856998 }, + { "lat": 40.8501997, "lon": -73.9856098 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 790870129, + "bounds": { + "minlat": 40.8497226, + "minlon": -73.9856098, + "maxlat": 40.8501997, + "maxlon": -73.9848395 + }, + "nodes": [ + 4695808178, + 7393466965, + 4695808175, + 4695808174, + 4695808183, + 4695808184 + ], + "geometry": [ + { "lat": 40.8501997, "lon": -73.9856098 }, + { "lat": 40.8501253, "lon": -73.9854882 }, + { "lat": 40.8499233, "lon": -73.9851580 }, + { "lat": 40.8498954, "lon": -73.9851130 }, + { "lat": 40.8498427, "lon": -73.9850281 }, + { "lat": 40.8497226, "lon": -73.9848395 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 790870131, + "bounds": { + "minlat": 40.8500189, + "minlon": -73.9856098, + "maxlat": 40.8504449, + "maxlon": -73.9851588 + }, + "nodes": [ + 7393466965, + 7393466966, + 7393466967, + 7393466968, + 7393466969, + 7393466970, + 7393466971, + 7393466972, + 7393466973, + 7393466974, + 7393466975, + 7393466976, + 7393466977, + 7393466978, + 7393466979, + 7393466980, + 7393466981, + 7393466982, + 7393466983, + 7393466984, + 7393482985, + 7393482986, + 7393482987, + 7393482988, + 4695808178 + ], + "geometry": [ + { "lat": 40.8501253, "lon": -73.9854882 }, + { "lat": 40.8500196, "lon": -73.9852550 }, + { "lat": 40.8500189, "lon": -73.9852446 }, + { "lat": 40.8500202, "lon": -73.9852290 }, + { "lat": 40.8500248, "lon": -73.9852108 }, + { "lat": 40.8500307, "lon": -73.9851952 }, + { "lat": 40.8500386, "lon": -73.9851805 }, + { "lat": 40.8500458, "lon": -73.9851710 }, + { "lat": 40.8500556, "lon": -73.9851640 }, + { "lat": 40.8500674, "lon": -73.9851606 }, + { "lat": 40.8500805, "lon": -73.9851588 }, + { "lat": 40.8500969, "lon": -73.9851588 }, + { "lat": 40.8503335, "lon": -73.9851744 }, + { "lat": 40.8503492, "lon": -73.9851770 }, + { "lat": 40.8503597, "lon": -73.9851840 }, + { "lat": 40.8503702, "lon": -73.9851935 }, + { "lat": 40.8503781, "lon": -73.9852065 }, + { "lat": 40.8504377, "lon": -73.9853105 }, + { "lat": 40.8504416, "lon": -73.9853209 }, + { "lat": 40.8504436, "lon": -73.9853321 }, + { "lat": 40.8504449, "lon": -73.9853451 }, + { "lat": 40.8504436, "lon": -73.9853555 }, + { "lat": 40.8504364, "lon": -73.9853676 }, + { "lat": 40.8504272, "lon": -73.9853789 }, + { "lat": 40.8501997, "lon": -73.9856098 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 790870132, + "bounds": { + "minlat": 40.8506815, + "minlon": -73.9858400, + "maxlat": 40.8508308, + "maxlon": -73.9853331 + }, + "nodes": [ + 4695808176, + 7393482989, + 7393482990, + 7393482991, + 7393482992, + 7393482993, + 7393482994, + 7393482995, + 7393482996, + 7393482997, + 7393482998, + 7393482999, + 7393483000, + 7393483001, + 12692293516, + 7393483002 + ], + "geometry": [ + { "lat": 40.8506837, "lon": -73.9853331 }, + { "lat": 40.8506815, "lon": -73.9853486 }, + { "lat": 40.8506815, "lon": -73.9853617 }, + { "lat": 40.8506852, "lon": -73.9853756 }, + { "lat": 40.8506914, "lon": -73.9853896 }, + { "lat": 40.8506995, "lon": -73.9853994 }, + { "lat": 40.8508178, "lon": -73.9855312 }, + { "lat": 40.8508233, "lon": -73.9855402 }, + { "lat": 40.8508277, "lon": -73.9855558 }, + { "lat": 40.8508302, "lon": -73.9855713 }, + { "lat": 40.8508308, "lon": -73.9855877 }, + { "lat": 40.8508295, "lon": -73.9856049 }, + { "lat": 40.8508240, "lon": -73.9856221 }, + { "lat": 40.8508172, "lon": -73.9856410 }, + { "lat": 40.8507044, "lon": -73.9857609 }, + { "lat": 40.8507055, "lon": -73.9858400 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 791193342, + "bounds": { + "minlat": 40.7529847, + "minlon": -73.9973944, + "maxlat": 40.7531492, + "maxlon": -73.9972791 + }, + "nodes": [ + 7396482976, + 8261123363, + 7396482978 + ], + "geometry": [ + { "lat": 40.7529847, "lon": -73.9973944 }, + { "lat": 40.7530345, "lon": -73.9973593 }, + { "lat": 40.7531492, "lon": -73.9972791 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 791203012, + "bounds": { + "minlat": 40.7176477, + "minlon": -73.9788283, + "maxlat": 40.7185927, + "maxlon": -73.9785344 + }, + "nodes": [ + 7396594063, + 4300994839, + 7396594065, + 7396594066, + 7396594067 + ], + "geometry": [ + { "lat": 40.7185927, "lon": -73.9785344 }, + { "lat": 40.7183825, "lon": -73.9786420 }, + { "lat": 40.7182861, "lon": -73.9786913 }, + { "lat": 40.7180184, "lon": -73.9788283 }, + { "lat": 40.7176477, "lon": -73.9788128 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 791258752, + "bounds": { + "minlat": 40.7092218, + "minlon": -73.9649487, + "maxlat": 40.7096307, + "maxlon": -73.9646033 + }, + "nodes": [ + 7397166301, + 9779538195, + 7397166302, + 7397166305, + 7397166306, + 7397166307 + ], + "geometry": [ + { "lat": 40.7096307, "lon": -73.9648801 }, + { "lat": 40.7095793, "lon": -73.9648900 }, + { "lat": 40.7095466, "lon": -73.9648963 }, + { "lat": 40.7092742, "lon": -73.9649487 }, + { "lat": 40.7092587, "lon": -73.9649335 }, + { "lat": 40.7092218, "lon": -73.9646033 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 791269085, + "bounds": { + "minlat": 40.7313913, + "minlon": -73.9205185, + "maxlat": 40.7317098, + "maxlon": -73.9203969 + }, + "nodes": [ + 7397278518, + 13247290272, + 7397278520 + ], + "geometry": [ + { "lat": 40.7313913, "lon": -73.9205185 }, + { "lat": 40.7314535, "lon": -73.9204948 }, + { "lat": 40.7317098, "lon": -73.9203969 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 791295128, + "bounds": { + "minlat": 40.8312982, + "minlon": -73.9072485, + "maxlat": 40.8314818, + "maxlon": -73.9071378 + }, + "nodes": [ + 7397544476, + 9520895954, + 7397544477, + 12038478865, + 7397544478 + ], + "geometry": [ + { "lat": 40.8312982, "lon": -73.9072485 }, + { "lat": 40.8313451, "lon": -73.9072195 }, + { "lat": 40.8313829, "lon": -73.9071962 }, + { "lat": 40.8313956, "lon": -73.9071887 }, + { "lat": 40.8314818, "lon": -73.9071378 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 791295129, + "bounds": { + "minlat": 40.8239235, + "minlon": -73.9081520, + "maxlat": 40.8242590, + "maxlon": -73.9080208 + }, + "nodes": [ + 7397544479, + 7397544480 + ], + "geometry": [ + { "lat": 40.8239235, "lon": -73.9081520 }, + { "lat": 40.8242590, "lon": -73.9080208 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 791295131, + "bounds": { + "minlat": 40.8240447, + "minlon": -73.9065142, + "maxlat": 40.8241514, + "maxlon": -73.9060310 + }, + "nodes": [ + 7397554087, + 7397554089, + 7397554088 + ], + "geometry": [ + { "lat": 40.8241514, "lon": -73.9065142 }, + { "lat": 40.8241255, "lon": -73.9063970 }, + { "lat": 40.8240447, "lon": -73.9060310 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 791592900, + "bounds": { + "minlat": 40.8563187, + "minlon": -73.9710567, + "maxlat": 40.8566326, + "maxlon": -73.9707570 + }, + "nodes": [ + 7400259248, + 7400259249 + ], + "geometry": [ + { "lat": 40.8566326, "lon": -73.9707570 }, + { "lat": 40.8563187, "lon": -73.9710567 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 791592901, + "bounds": { + "minlat": 40.8562010, + "minlon": -73.9710567, + "maxlat": 40.8563187, + "maxlon": -73.9708640 + }, + "nodes": [ + 7400259249, + 7400259250 + ], + "geometry": [ + { "lat": 40.8563187, "lon": -73.9710567 }, + { "lat": 40.8562010, "lon": -73.9708640 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 791592902, + "bounds": { + "minlat": 40.8560659, + "minlon": -73.9711949, + "maxlat": 40.8564150, + "maxlon": -73.9707345 + }, + "nodes": [ + 7400259251, + 7400259252, + 7400259250, + 7400259253, + 7400259254 + ], + "geometry": [ + { "lat": 40.8564150, "lon": -73.9708858 }, + { "lat": 40.8563277, "lon": -73.9707345 }, + { "lat": 40.8562010, "lon": -73.9708640 }, + { "lat": 40.8560659, "lon": -73.9709816 }, + { "lat": 40.8561952, "lon": -73.9711949 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 791592906, + "bounds": { + "minlat": 40.8563637, + "minlon": -73.9702444, + "maxlat": 40.8566919, + "maxlon": -73.9699875 + }, + "nodes": [ + 7400259267, + 7400259268, + 7400259269 + ], + "geometry": [ + { "lat": 40.8563637, "lon": -73.9702444 }, + { "lat": 40.8564721, "lon": -73.9702136 }, + { "lat": 40.8566919, "lon": -73.9699875 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 791592907, + "bounds": { + "minlat": 40.8564184, + "minlon": -73.9699875, + "maxlat": 40.8566919, + "maxlon": -73.9694947 + }, + "nodes": [ + 7400259269, + 7400259271, + 7400259270 + ], + "geometry": [ + { "lat": 40.8566919, "lon": -73.9699875 }, + { "lat": 40.8565987, "lon": -73.9698197 }, + { "lat": 40.8564184, "lon": -73.9694947 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 791592908, + "bounds": { + "minlat": 40.8563043, + "minlon": -73.9701425, + "maxlat": 40.8565987, + "maxlon": -73.9698197 + }, + "nodes": [ + 7400259271, + 7400259272, + 7400259273 + ], + "geometry": [ + { "lat": 40.8565987, "lon": -73.9698197 }, + { "lat": 40.8563690, "lon": -73.9700355 }, + { "lat": 40.8563043, "lon": -73.9701425 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 791679861, + "bounds": { + "minlat": 40.7111203, + "minlon": -73.9812438, + "maxlat": 40.7114810, + "maxlon": -73.9812006 + }, + "nodes": [ + 7401172013, + 8310246541, + 7401172015, + 7401172014 + ], + "geometry": [ + { "lat": 40.7114810, "lon": -73.9812438 }, + { "lat": 40.7114341, "lon": -73.9812382 }, + { "lat": 40.7114184, "lon": -73.9812363 }, + { "lat": 40.7111203, "lon": -73.9812006 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 791745397, + "bounds": { + "minlat": 40.7648892, + "minlon": -73.9262005, + "maxlat": 40.7654102, + "maxlon": -73.9257080 + }, + "nodes": [ + 5780075955, + 7791569955, + 7401727228, + 7401727229, + 7401727230, + 7401727231 + ], + "geometry": [ + { "lat": 40.7654102, "lon": -73.9257080 }, + { "lat": 40.7653208, "lon": -73.9257755 }, + { "lat": 40.7652321, "lon": -73.9258426 }, + { "lat": 40.7651569, "lon": -73.9259068 }, + { "lat": 40.7651162, "lon": -73.9260259 }, + { "lat": 40.7648892, "lon": -73.9262005 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 792262310, + "bounds": { + "minlat": 40.8568365, + "minlon": -73.9711112, + "maxlat": 40.8570500, + "maxlon": -73.9708658 + }, + "nodes": [ + 7407033537, + 7407033538 + ], + "geometry": [ + { "lat": 40.8568365, "lon": -73.9711112 }, + { "lat": 40.8570500, "lon": -73.9708658 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 792298898, + "bounds": { + "minlat": 40.8562397, + "minlon": -73.9750151, + "maxlat": 40.8564850, + "maxlon": -73.9745849 + }, + "nodes": [ + 7407574852, + 7407633290, + 7407574855, + 7407574853 + ], + "geometry": [ + { "lat": 40.8564850, "lon": -73.9750151 }, + { "lat": 40.8564446, "lon": -73.9749441 }, + { "lat": 40.8562658, "lon": -73.9746308 }, + { "lat": 40.8562397, "lon": -73.9745849 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 792748572, + "bounds": { + "minlat": 40.7106903, + "minlon": -73.9307570, + "maxlat": 40.7112076, + "maxlon": -73.9285713 + }, + "nodes": [ + 42505695, + 9767625281, + 7412849582, + 5510296569, + 7412849583, + 5510296571 + ], + "geometry": [ + { "lat": 40.7112076, "lon": -73.9285713 }, + { "lat": 40.7111801, "lon": -73.9286781 }, + { "lat": 40.7111553, "lon": -73.9287744 }, + { "lat": 40.7107751, "lon": -73.9302510 }, + { "lat": 40.7106903, "lon": -73.9305802 }, + { "lat": 40.7110846, "lon": -73.9307570 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 792748573, + "bounds": { + "minlat": 40.7112076, + "minlon": -73.9285713, + "maxlat": 40.7116130, + "maxlon": -73.9269970 + }, + "nodes": [ + 42505695, + 9767625139, + 9325509493, + 9325509492, + 9767625136, + 42511148 + ], + "geometry": [ + { "lat": 40.7112076, "lon": -73.9285713 }, + { "lat": 40.7112295, "lon": -73.9284862 }, + { "lat": 40.7112468, "lon": -73.9284189 }, + { "lat": 40.7115715, "lon": -73.9271580 }, + { "lat": 40.7115861, "lon": -73.9271013 }, + { "lat": 40.7116130, "lon": -73.9269970 } + ], + "tags": { + "highway": "residential", + "name": "Scholes Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 792752974, + "bounds": { + "minlat": 40.8592529, + "minlon": -73.9656409, + "maxlat": 40.8594381, + "maxlon": -73.9655113 + }, + "nodes": [ + 7412927702, + 13157356968, + 7412927703, + 7412927704 + ], + "geometry": [ + { "lat": 40.8592529, "lon": -73.9656409 }, + { "lat": 40.8592912, "lon": -73.9656017 }, + { "lat": 40.8593341, "lon": -73.9655579 }, + { "lat": 40.8594381, "lon": -73.9655113 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 792752994, + "bounds": { + "minlat": 40.8589324, + "minlon": -73.9659014, + "maxlat": 40.8592891, + "maxlon": -73.9657068 + }, + "nodes": [ + 7412927828, + 13157356974, + 7412927829 + ], + "geometry": [ + { "lat": 40.8592891, "lon": -73.9657068 }, + { "lat": 40.8592378, "lon": -73.9657348 }, + { "lat": 40.8589324, "lon": -73.9659014 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 792886646, + "bounds": { + "minlat": 40.8371112, + "minlon": -73.9711709, + "maxlat": 40.8376733, + "maxlon": -73.9708730 + }, + "nodes": [ + 7414336216, + 7414336217, + 7414336218, + 7414336219, + 7414336220, + 7414336221, + 7414336222 + ], + "geometry": [ + { "lat": 40.8371112, "lon": -73.9711709 }, + { "lat": 40.8371536, "lon": -73.9711533 }, + { "lat": 40.8372869, "lon": -73.9711104 }, + { "lat": 40.8373531, "lon": -73.9710628 }, + { "lat": 40.8373708, "lon": -73.9710015 }, + { "lat": 40.8373930, "lon": -73.9709741 }, + { "lat": 40.8376733, "lon": -73.9708730 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 792949803, + "bounds": { + "minlat": 40.7102638, + "minlon": -73.9302510, + "maxlat": 40.7107751, + "maxlon": -73.9300218 + }, + "nodes": [ + 5510296569, + 5510294997 + ], + "geometry": [ + { "lat": 40.7107751, "lon": -73.9302510 }, + { "lat": 40.7102638, "lon": -73.9300218 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 793085064, + "bounds": { + "minlat": 40.8572343, + "minlon": -73.9786480, + "maxlat": 40.8577625, + "maxlon": -73.9782625 + }, + "nodes": [ + 7416056110, + 7416056111, + 7416056112, + 7416056113, + 7416056114 + ], + "geometry": [ + { "lat": 40.8572343, "lon": -73.9786480 }, + { "lat": 40.8574923, "lon": -73.9783870 }, + { "lat": 40.8576665, "lon": -73.9782625 }, + { "lat": 40.8577187, "lon": -73.9784066 }, + { "lat": 40.8577625, "lon": -73.9783785 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 793240211, + "bounds": { + "minlat": 40.7099540, + "minlon": -73.9306249, + "maxlat": 40.7105330, + "maxlon": -73.9282680 + }, + "nodes": [ + 10750978718, + 10750978717, + 42529185, + 7417311498, + 9767625282, + 42505693 + ], + "geometry": [ + { "lat": 40.7100247, "lon": -73.9306249 }, + { "lat": 40.7100170, "lon": -73.9304060 }, + { "lat": 40.7099540, "lon": -73.9302889 }, + { "lat": 40.7104406, "lon": -73.9284564 }, + { "lat": 40.7104885, "lon": -73.9283588 }, + { "lat": 40.7105330, "lon": -73.9282680 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 793430134, + "bounds": { + "minlat": 40.8567066, + "minlon": -73.9754162, + "maxlat": 40.8568649, + "maxlon": -73.9753142 + }, + "nodes": [ + 7419012845, + 7419012846, + 7419012847 + ], + "geometry": [ + { "lat": 40.8568649, "lon": -73.9754162 }, + { "lat": 40.8567385, "lon": -73.9753659 }, + { "lat": 40.8567066, "lon": -73.9753142 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 793600729, + "bounds": { + "minlat": 40.8530256, + "minlon": -73.9834856, + "maxlat": 40.8531831, + "maxlon": -73.9833378 + }, + "nodes": [ + 7422339114, + 7422339115 + ], + "geometry": [ + { "lat": 40.8530256, "lon": -73.9834856 }, + { "lat": 40.8531831, "lon": -73.9833378 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 793807472, + "bounds": { + "minlat": 40.8527028, + "minlon": -73.9167590, + "maxlat": 40.8528870, + "maxlon": -73.9164249 + }, + "nodes": [ + 42779042, + 13036604050, + 7425309906, + 7425309907 + ], + "geometry": [ + { "lat": 40.8528870, "lon": -73.9167590 }, + { "lat": 40.8528542, "lon": -73.9166987 }, + { "lat": 40.8528418, "lon": -73.9166760 }, + { "lat": 40.8527028, "lon": -73.9164249 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 793854162, + "bounds": { + "minlat": 40.8239999, + "minlon": -73.9403619, + "maxlat": 40.8243754, + "maxlon": -73.9399349 + }, + "nodes": [ + 7425728705, + 7425728706, + 7425728707, + 7425728708, + 7425728709 + ], + "geometry": [ + { "lat": 40.8240448, "lon": -73.9403619 }, + { "lat": 40.8239999, "lon": -73.9402312 }, + { "lat": 40.8240050, "lon": -73.9401695 }, + { "lat": 40.8242414, "lon": -73.9400193 }, + { "lat": 40.8243754, "lon": -73.9399349 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 793864964, + "bounds": { + "minlat": 40.8525580, + "minlon": -73.9088950, + "maxlat": 40.8527291, + "maxlon": -73.9085205 + }, + "nodes": [ + 7425867404, + 13031219710, + 7425867405, + 7425867406 + ], + "geometry": [ + { "lat": 40.8525580, "lon": -73.9085205 }, + { "lat": 40.8525985, "lon": -73.9086049 }, + { "lat": 40.8526369, "lon": -73.9086848 }, + { "lat": 40.8527291, "lon": -73.9088950 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794192838, + "bounds": { + "minlat": 40.8520413, + "minlon": -73.9839907, + "maxlat": 40.8523001, + "maxlon": -73.9837815 + }, + "nodes": [ + 103177103, + 103273063, + 5108610099 + ], + "geometry": [ + { "lat": 40.8523001, "lon": -73.9837864 }, + { "lat": 40.8520509, "lon": -73.9837815 }, + { "lat": 40.8520413, "lon": -73.9839907 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Lee Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lee", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 794192839, + "bounds": { + "minlat": 40.8514404, + "minlon": -73.9835089, + "maxlat": 40.8517447, + "maxlon": -73.9835077 + }, + "nodes": [ + 103246872, + 103246873 + ], + "geometry": [ + { "lat": 40.8517447, "lon": -73.9835089 }, + { "lat": 40.8514404, "lon": -73.9835077 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Jacey Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jacey", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 794192867, + "bounds": { + "minlat": 40.8533809, + "minlon": -73.9829044, + "maxlat": 40.8536456, + "maxlon": -73.9827098 + }, + "nodes": [ + 7427964135, + 7427964136, + 7427964137 + ], + "geometry": [ + { "lat": 40.8536456, "lon": -73.9827098 }, + { "lat": 40.8535135, "lon": -73.9827924 }, + { "lat": 40.8533809, "lon": -73.9829044 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 794221643, + "bounds": { + "minlat": 40.8490077, + "minlon": -73.9833396, + "maxlat": 40.8492380, + "maxlon": -73.9829274 + }, + "nodes": [ + 7428253997, + 7428253998 + ], + "geometry": [ + { "lat": 40.8490077, "lon": -73.9829274 }, + { "lat": 40.8492380, "lon": -73.9833396 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 794228764, + "bounds": { + "minlat": 40.8529014, + "minlon": -73.9718553, + "maxlat": 40.8531074, + "maxlon": -73.9715380 + }, + "nodes": [ + 7428313918, + 5362322580 + ], + "geometry": [ + { "lat": 40.8531074, "lon": -73.9718553 }, + { "lat": 40.8529014, "lon": -73.9715380 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 794228791, + "bounds": { + "minlat": 40.8545696, + "minlon": -73.9710550, + "maxlat": 40.8546262, + "maxlon": -73.9708295 + }, + "nodes": [ + 7428323254, + 7428323256, + 7428323255 + ], + "geometry": [ + { "lat": 40.8545696, "lon": -73.9708295 }, + { "lat": 40.8545871, "lon": -73.9709723 }, + { "lat": 40.8546262, "lon": -73.9710550 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 794228792, + "bounds": { + "minlat": 40.8546262, + "minlon": -73.9713724, + "maxlat": 40.8548650, + "maxlon": -73.9710550 + }, + "nodes": [ + 7428323255, + 7428323257 + ], + "geometry": [ + { "lat": 40.8546262, "lon": -73.9710550 }, + { "lat": 40.8548650, "lon": -73.9713724 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794228793, + "bounds": { + "minlat": 40.8548650, + "minlon": -73.9716804, + "maxlat": 40.8550905, + "maxlon": -73.9713724 + }, + "nodes": [ + 7428323257, + 7428323258 + ], + "geometry": [ + { "lat": 40.8548650, "lon": -73.9713724 }, + { "lat": 40.8550905, "lon": -73.9716804 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 794228823, + "bounds": { + "minlat": 40.8486857, + "minlon": -73.9716660, + "maxlat": 40.8490352, + "maxlon": -73.9713938 + }, + "nodes": [ + 7428323462, + 7428323463 + ], + "geometry": [ + { "lat": 40.8486857, "lon": -73.9716660 }, + { "lat": 40.8490352, "lon": -73.9713938 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 794231236, + "bounds": { + "minlat": 40.8388456, + "minlon": -73.9827372, + "maxlat": 40.8390982, + "maxlon": -73.9824716 + }, + "nodes": [ + 7428336480, + 7428336481, + 7428336482 + ], + "geometry": [ + { "lat": 40.8390982, "lon": -73.9827372 }, + { "lat": 40.8389618, "lon": -73.9824716 }, + { "lat": 40.8388456, "lon": -73.9825866 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 794398550, + "bounds": { + "minlat": 40.8729418, + "minlon": -73.9527434, + "maxlat": 40.8735935, + "maxlon": -73.9519410 + }, + "nodes": [ + 7430140935, + 7430140936, + 7430140937, + 7430140938, + 7430140939, + 7430140940, + 7430140941, + 7430140942 + ], + "geometry": [ + { "lat": 40.8732348, "lon": -73.9519410 }, + { "lat": 40.8734171, "lon": -73.9522212 }, + { "lat": 40.8735056, "lon": -73.9523170 }, + { "lat": 40.8735935, "lon": -73.9525032 }, + { "lat": 40.8732401, "lon": -73.9527434 }, + { "lat": 40.8730750, "lon": -73.9524639 }, + { "lat": 40.8729850, "lon": -73.9522499 }, + { "lat": 40.8729418, "lon": -73.9521436 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 794545895, + "bounds": { + "minlat": 40.8500815, + "minlon": -73.9709620, + "maxlat": 40.8504348, + "maxlon": -73.9705125 + }, + "nodes": [ + 7431516892, + 7431516893, + 7431516894 + ], + "geometry": [ + { "lat": 40.8503727, "lon": -73.9705125 }, + { "lat": 40.8504348, "lon": -73.9708517 }, + { "lat": 40.8500815, "lon": -73.9709620 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 794590940, + "bounds": { + "minlat": 40.8754809, + "minlon": -73.9980593, + "maxlat": 40.8803604, + "maxlon": -73.9952167 + }, + "nodes": [ + 7431934770, + 7431934771, + 7431934772, + 7431934773, + 7431934774, + 7431934775, + 7431934776, + 7431934777, + 7431934778, + 7431934779, + 7431934780, + 7431934781, + 7431934782, + 7431934783, + 7431934784, + 7431936985, + 7431936986, + 7431936987, + 7431936988, + 7431936989, + 7431936990, + 7431936991, + 7431936992, + 7431936993, + 7431936994, + 7431936995, + 7431936996, + 7431936997, + 7431936998, + 7431936999, + 7431937000, + 7431937001, + 7431937002, + 7431937003, + 7431937004, + 7431937005, + 7431937006, + 7431937007, + 7431937008, + 7431937009, + 7431937010, + 7431937011, + 7431937012, + 7431937013, + 7431937014, + 7431937015, + 7431937016, + 7431937017, + 7431937018, + 7431937019, + 7431937020, + 7431937021, + 7431937022, + 7431937023, + 7431937024, + 7431937025, + 7431937026, + 7431937027, + 7431937028, + 7431937029, + 7431937030, + 7431937031, + 7431937032, + 7431937033, + 7431937034, + 7431937035, + 7431937036, + 7431937037, + 7431937038, + 7431937039, + 7431937040, + 7431937041, + 7431937042, + 7431937043, + 7431937044, + 7431937045, + 7431937046, + 7431937047, + 7431937048, + 7431937049, + 7431937050, + 7431937051, + 7431937052, + 7431937053, + 7431937054, + 7431937055, + 7431937056, + 7431937057, + 7431937058, + 7431937059, + 7431937060, + 7431937061, + 7431937062, + 7431937063, + 7431937064, + 7431937065, + 7431937066, + 7431937067, + 7431937068, + 7431937069, + 7431937070, + 7431937071, + 7431937072, + 7431937073, + 7431937074, + 7431937075, + 7431937076, + 7431937077, + 7431937078, + 7431937079 + ], + "geometry": [ + { "lat": 40.8802275, "lon": -73.9952167 }, + { "lat": 40.8802468, "lon": -73.9952589 }, + { "lat": 40.8802782, "lon": -73.9953380 }, + { "lat": 40.8802980, "lon": -73.9954165 }, + { "lat": 40.8803117, "lon": -73.9954903 }, + { "lat": 40.8803304, "lon": -73.9955888 }, + { "lat": 40.8803451, "lon": -73.9956726 }, + { "lat": 40.8803604, "lon": -73.9957866 }, + { "lat": 40.8802838, "lon": -73.9958027 }, + { "lat": 40.8802204, "lon": -73.9958108 }, + { "lat": 40.8801550, "lon": -73.9958215 }, + { "lat": 40.8800911, "lon": -73.9958302 }, + { "lat": 40.8800227, "lon": -73.9958409 }, + { "lat": 40.8799451, "lon": -73.9958517 }, + { "lat": 40.8798721, "lon": -73.9958637 }, + { "lat": 40.8798098, "lon": -73.9958778 }, + { "lat": 40.8797195, "lon": -73.9958946 }, + { "lat": 40.8796668, "lon": -73.9959047 }, + { "lat": 40.8796252, "lon": -73.9959134 }, + { "lat": 40.8795918, "lon": -73.9959228 }, + { "lat": 40.8795715, "lon": -73.9959301 }, + { "lat": 40.8795228, "lon": -73.9959670 }, + { "lat": 40.8795010, "lon": -73.9959925 }, + { "lat": 40.8794772, "lon": -73.9960133 }, + { "lat": 40.8794483, "lon": -73.9960354 }, + { "lat": 40.8794244, "lon": -73.9960562 }, + { "lat": 40.8793798, "lon": -73.9960917 }, + { "lat": 40.8793530, "lon": -73.9961112 }, + { "lat": 40.8793144, "lon": -73.9961427 }, + { "lat": 40.8792673, "lon": -73.9961688 }, + { "lat": 40.8792211, "lon": -73.9962004 }, + { "lat": 40.8791801, "lon": -73.9962426 }, + { "lat": 40.8791415, "lon": -73.9962788 }, + { "lat": 40.8791167, "lon": -73.9963177 }, + { "lat": 40.8790903, "lon": -73.9963586 }, + { "lat": 40.8790624, "lon": -73.9963955 }, + { "lat": 40.8790351, "lon": -73.9964263 }, + { "lat": 40.8790173, "lon": -73.9964525 }, + { "lat": 40.8789889, "lon": -73.9964914 }, + { "lat": 40.8789621, "lon": -73.9965169 }, + { "lat": 40.8789148, "lon": -73.9965438 }, + { "lat": 40.8788822, "lon": -73.9965579 }, + { "lat": 40.8788018, "lon": -73.9965917 }, + { "lat": 40.8787259, "lon": -73.9966104 }, + { "lat": 40.8786650, "lon": -73.9966279 }, + { "lat": 40.8786023, "lon": -73.9966478 }, + { "lat": 40.8785520, "lon": -73.9966524 }, + { "lat": 40.8785079, "lon": -73.9966524 }, + { "lat": 40.8784646, "lon": -73.9966583 }, + { "lat": 40.8784117, "lon": -73.9966898 }, + { "lat": 40.8783622, "lon": -73.9967155 }, + { "lat": 40.8783269, "lon": -73.9967283 }, + { "lat": 40.8782395, "lon": -73.9967692 }, + { "lat": 40.8781910, "lon": -73.9968042 }, + { "lat": 40.8781301, "lon": -73.9968766 }, + { "lat": 40.8780771, "lon": -73.9969034 }, + { "lat": 40.8780197, "lon": -73.9969280 }, + { "lat": 40.8779659, "lon": -73.9969525 }, + { "lat": 40.8779191, "lon": -73.9969770 }, + { "lat": 40.8778220, "lon": -73.9970249 }, + { "lat": 40.8777567, "lon": -73.9970622 }, + { "lat": 40.8777116, "lon": -73.9970961 }, + { "lat": 40.8776640, "lon": -73.9971241 }, + { "lat": 40.8775677, "lon": -73.9971778 }, + { "lat": 40.8775174, "lon": -73.9972070 }, + { "lat": 40.8774636, "lon": -73.9972584 }, + { "lat": 40.8774345, "lon": -73.9973121 }, + { "lat": 40.8774018, "lon": -73.9973518 }, + { "lat": 40.8773373, "lon": -73.9973809 }, + { "lat": 40.8772667, "lon": -73.9974043 }, + { "lat": 40.8772138, "lon": -73.9974241 }, + { "lat": 40.8771917, "lon": -73.9974860 }, + { "lat": 40.8771034, "lon": -73.9975747 }, + { "lat": 40.8770328, "lon": -73.9976191 }, + { "lat": 40.8769578, "lon": -73.9976658 }, + { "lat": 40.8768871, "lon": -73.9977113 }, + { "lat": 40.8768192, "lon": -73.9977686 }, + { "lat": 40.8767609, "lon": -73.9978281 }, + { "lat": 40.8766929, "lon": -73.9979063 }, + { "lat": 40.8766029, "lon": -73.9979565 }, + { "lat": 40.8765226, "lon": -73.9979787 }, + { "lat": 40.8764422, "lon": -73.9979904 }, + { "lat": 40.8763937, "lon": -73.9979962 }, + { "lat": 40.8763372, "lon": -73.9980172 }, + { "lat": 40.8762763, "lon": -73.9980301 }, + { "lat": 40.8762259, "lon": -73.9980324 }, + { "lat": 40.8761871, "lon": -73.9980114 }, + { "lat": 40.8761553, "lon": -73.9979845 }, + { "lat": 40.8761165, "lon": -73.9979554 }, + { "lat": 40.8760662, "lon": -73.9979320 }, + { "lat": 40.8760150, "lon": -73.9979320 }, + { "lat": 40.8759735, "lon": -73.9979518 }, + { "lat": 40.8759205, "lon": -73.9979647 }, + { "lat": 40.8758896, "lon": -73.9979472 }, + { "lat": 40.8758693, "lon": -73.9979087 }, + { "lat": 40.8758525, "lon": -73.9978549 }, + { "lat": 40.8758411, "lon": -73.9978117 }, + { "lat": 40.8758163, "lon": -73.9977440 }, + { "lat": 40.8757899, "lon": -73.9977090 }, + { "lat": 40.8757660, "lon": -73.9976892 }, + { "lat": 40.8757422, "lon": -73.9976775 }, + { "lat": 40.8757069, "lon": -73.9976716 }, + { "lat": 40.8756680, "lon": -73.9976787 }, + { "lat": 40.8756257, "lon": -73.9977113 }, + { "lat": 40.8755895, "lon": -73.9977686 }, + { "lat": 40.8755762, "lon": -73.9978176 }, + { "lat": 40.8755586, "lon": -73.9978771 }, + { "lat": 40.8755391, "lon": -73.9979378 }, + { "lat": 40.8755180, "lon": -73.9979892 }, + { "lat": 40.8754809, "lon": -73.9980593 } + ], + "tags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794595045, + "bounds": { + "minlat": 40.8729617, + "minlon": -73.9993497, + "maxlat": 40.8765282, + "maxlon": -73.9957756 + }, + "nodes": [ + 7431968642, + 7431968643, + 7431968644, + 7431968645, + 7431968646, + 7431968647, + 7431968648, + 7431968649, + 7431968650, + 7431968651, + 7431968652, + 7431968653, + 7431968654, + 7431968655, + 7431968656, + 7431968657, + 7431968658, + 7431968659, + 7431968660, + 7431968661, + 7431968662, + 7431968663, + 7431968664, + 7431968665, + 7431968666, + 7431968667, + 7431968668, + 7431968669, + 7431968670, + 7431968671, + 7431968672, + 7431968673, + 7431968674, + 7431968675, + 7431968676, + 7431968677, + 7431968678, + 7431968679, + 7431968680, + 7431968681, + 7431968682, + 7431968683, + 7431968684, + 7431968685, + 7431968686, + 7431968687, + 7431968688, + 7431968689, + 7431968690, + 7431968691, + 7431968692, + 6873602621, + 7431968693, + 7431968694, + 7431968695, + 7431968696, + 7431968697, + 7431968698, + 7431968699, + 7431968700, + 7431968701, + 7431968702, + 7431968703, + 7431968704, + 7431968705, + 7431968706, + 7431968707, + 7431968708, + 7432035336, + 7431968709, + 7431968710, + 7431968711, + 7431968712, + 7431968713, + 7431968714, + 7431968715, + 7431968716, + 7431968717, + 7431968718, + 7431968719, + 7431968720, + 7431968721, + 7431968729, + 7431968722, + 7431968723, + 7431968724, + 7431968725, + 7431968726, + 7431968727, + 7431968728 + ], + "geometry": [ + { "lat": 40.8741878, "lon": -73.9987703 }, + { "lat": 40.8741442, "lon": -73.9987716 }, + { "lat": 40.8740864, "lon": -73.9987931 }, + { "lat": 40.8740275, "lon": -73.9988628 }, + { "lat": 40.8739697, "lon": -73.9989339 }, + { "lat": 40.8739190, "lon": -73.9989876 }, + { "lat": 40.8738602, "lon": -73.9990560 }, + { "lat": 40.8738196, "lon": -73.9991069 }, + { "lat": 40.8737314, "lon": -73.9991847 }, + { "lat": 40.8736848, "lon": -73.9992263 }, + { "lat": 40.8735935, "lon": -73.9992799 }, + { "lat": 40.8734891, "lon": -73.9993188 }, + { "lat": 40.8734059, "lon": -73.9993349 }, + { "lat": 40.8732984, "lon": -73.9993443 }, + { "lat": 40.8732193, "lon": -73.9993497 }, + { "lat": 40.8731473, "lon": -73.9993349 }, + { "lat": 40.8731037, "lon": -73.9993081 }, + { "lat": 40.8730702, "lon": -73.9992799 }, + { "lat": 40.8730429, "lon": -73.9992182 }, + { "lat": 40.8730175, "lon": -73.9991471 }, + { "lat": 40.8729993, "lon": -73.9990640 }, + { "lat": 40.8729780, "lon": -73.9989607 }, + { "lat": 40.8729617, "lon": -73.9988923 }, + { "lat": 40.8729851, "lon": -73.9988052 }, + { "lat": 40.8730297, "lon": -73.9987193 }, + { "lat": 40.8730692, "lon": -73.9986523 }, + { "lat": 40.8731138, "lon": -73.9985638 }, + { "lat": 40.8731737, "lon": -73.9984793 }, + { "lat": 40.8732203, "lon": -73.9983948 }, + { "lat": 40.8732822, "lon": -73.9983103 }, + { "lat": 40.8733238, "lon": -73.9982486 }, + { "lat": 40.8733795, "lon": -73.9981628 }, + { "lat": 40.8734110, "lon": -73.9981091 }, + { "lat": 40.8734718, "lon": -73.9980501 }, + { "lat": 40.8735246, "lon": -73.9980381 }, + { "lat": 40.8735824, "lon": -73.9980327 }, + { "lat": 40.8736361, "lon": -73.9980246 }, + { "lat": 40.8736797, "lon": -73.9980327 }, + { "lat": 40.8737142, "lon": -73.9980515 }, + { "lat": 40.8737527, "lon": -73.9981051 }, + { "lat": 40.8737963, "lon": -73.9981507 }, + { "lat": 40.8738551, "lon": -73.9981802 }, + { "lat": 40.8739403, "lon": -73.9981842 }, + { "lat": 40.8740326, "lon": -73.9981655 }, + { "lat": 40.8740924, "lon": -73.9981400 }, + { "lat": 40.8741715, "lon": -73.9980850 }, + { "lat": 40.8742334, "lon": -73.9980314 }, + { "lat": 40.8743013, "lon": -73.9979697 }, + { "lat": 40.8743652, "lon": -73.9979133 }, + { "lat": 40.8744271, "lon": -73.9978651 }, + { "lat": 40.8745153, "lon": -73.9978047 }, + { "lat": 40.8745772, "lon": -73.9977755 }, + { "lat": 40.8746208, "lon": -73.9977551 }, + { "lat": 40.8746776, "lon": -73.9977403 }, + { "lat": 40.8747414, "lon": -73.9977095 }, + { "lat": 40.8748094, "lon": -73.9976693 }, + { "lat": 40.8748794, "lon": -73.9976290 }, + { "lat": 40.8749514, "lon": -73.9976022 }, + { "lat": 40.8750426, "lon": -73.9975807 }, + { "lat": 40.8751177, "lon": -73.9974989 }, + { "lat": 40.8752018, "lon": -73.9974453 }, + { "lat": 40.8752900, "lon": -73.9974252 }, + { "lat": 40.8753580, "lon": -73.9974064 }, + { "lat": 40.8754168, "lon": -73.9973474 }, + { "lat": 40.8754949, "lon": -73.9972602 }, + { "lat": 40.8755628, "lon": -73.9972253 }, + { "lat": 40.8756145, "lon": -73.9972093 }, + { "lat": 40.8756987, "lon": -73.9971583 }, + { "lat": 40.8757335, "lon": -73.9971347 }, + { "lat": 40.8757758, "lon": -73.9971060 }, + { "lat": 40.8758762, "lon": -73.9970175 }, + { "lat": 40.8759593, "lon": -73.9969464 }, + { "lat": 40.8760263, "lon": -73.9968619 }, + { "lat": 40.8760922, "lon": -73.9967747 }, + { "lat": 40.8761520, "lon": -73.9966862 }, + { "lat": 40.8762017, "lon": -73.9965923 }, + { "lat": 40.8762341, "lon": -73.9964931 }, + { "lat": 40.8762757, "lon": -73.9963670 }, + { "lat": 40.8763122, "lon": -73.9962960 }, + { "lat": 40.8763365, "lon": -73.9962061 }, + { "lat": 40.8763548, "lon": -73.9961458 }, + { "lat": 40.8764035, "lon": -73.9961270 }, + { "lat": 40.8764471, "lon": -73.9961256 }, + { "lat": 40.8764704, "lon": -73.9961028 }, + { "lat": 40.8765018, "lon": -73.9960626 }, + { "lat": 40.8765191, "lon": -73.9959996 }, + { "lat": 40.8765282, "lon": -73.9959151 }, + { "lat": 40.8765191, "lon": -73.9958722 }, + { "lat": 40.8765191, "lon": -73.9958239 }, + { "lat": 40.8765272, "lon": -73.9957756 } + ], + "tags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794597780, + "bounds": { + "minlat": 40.8758739, + "minlon": -73.9940245, + "maxlat": 40.8770764, + "maxlon": -73.9921621 + }, + "nodes": [ + 6873602684, + 7432017004, + 7432017005, + 6873602682, + 6873602680, + 6873602679, + 7432017006, + 6873602675, + 7432017007, + 7432017008, + 7432017009, + 7432017010, + 7432017011, + 7432017012, + 6873602668, + 7432017013, + 7432017014, + 7432017015, + 440214503, + 6873602662, + 7432017016, + 6873602659, + 6873602656, + 6873602653, + 7432017018, + 7432017019, + 6873602647, + 7432017020, + 6873602642, + 6873602639, + 7432017021 + ], + "geometry": [ + { "lat": 40.8770764, "lon": -73.9923558 }, + { "lat": 40.8770509, "lon": -73.9923053 }, + { "lat": 40.8770191, "lon": -73.9922470 }, + { "lat": 40.8769896, "lon": -73.9921951 }, + { "lat": 40.8769354, "lon": -73.9921650 }, + { "lat": 40.8768898, "lon": -73.9921621 }, + { "lat": 40.8768178, "lon": -73.9921792 }, + { "lat": 40.8767260, "lon": -73.9922324 }, + { "lat": 40.8766844, "lon": -73.9922749 }, + { "lat": 40.8766520, "lon": -73.9923252 }, + { "lat": 40.8766126, "lon": -73.9923921 }, + { "lat": 40.8765832, "lon": -73.9924424 }, + { "lat": 40.8765421, "lon": -73.9925131 }, + { "lat": 40.8764776, "lon": -73.9926373 }, + { "lat": 40.8764537, "lon": -73.9927303 }, + { "lat": 40.8764463, "lon": -73.9928506 }, + { "lat": 40.8764498, "lon": -73.9929447 }, + { "lat": 40.8764554, "lon": -73.9930155 }, + { "lat": 40.8764610, "lon": -73.9931310 }, + { "lat": 40.8764797, "lon": -73.9933258 }, + { "lat": 40.8764780, "lon": -73.9934404 }, + { "lat": 40.8764678, "lon": -73.9935726 }, + { "lat": 40.8764341, "lon": -73.9937089 }, + { "lat": 40.8763734, "lon": -73.9937691 }, + { "lat": 40.8761781, "lon": -73.9938607 }, + { "lat": 40.8760958, "lon": -73.9938978 }, + { "lat": 40.8760295, "lon": -73.9939097 }, + { "lat": 40.8759666, "lon": -73.9939060 }, + { "lat": 40.8759080, "lon": -73.9939140 }, + { "lat": 40.8758739, "lon": -73.9939672 }, + { "lat": 40.8758774, "lon": -73.9940245 } + ], + "tags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794597805, + "bounds": { + "minlat": 40.8755710, + "minlon": -73.9930235, + "maxlat": 40.8779006, + "maxlon": -73.9907728 + }, + "nodes": [ + 7432017551, + 7432017552, + 7432017553, + 7432017554, + 7432017555, + 7432017556, + 7432017557, + 7432017558, + 7432017559, + 7432017560, + 7432017561, + 7432017562, + 7432017563, + 7432017564, + 7432017565, + 7432017566, + 7432017567, + 7432017568, + 7432017569, + 7432017570, + 7432017571, + 7432017572, + 7432017573, + 7432017574, + 7432017575, + 7432017576, + 7432017577, + 7432017578, + 7432017579, + 7432017580, + 7432017581, + 7432017582, + 7432017583, + 7432017584, + 7432017585, + 7432017586, + 7432017587, + 7432017588, + 7432017589, + 7432017590, + 7432017591, + 7432017592, + 7432017593, + 7432017594, + 7432017595, + 7432017596, + 7432017597, + 7432017598, + 7432017599, + 7432017600, + 7432017601, + 7432017602, + 7432017603, + 7432017604, + 7432017605, + 7432017606, + 7432017607, + 7432017608, + 7432017609, + 7432017610, + 7432017611, + 7432017612, + 7432017613 + ], + "geometry": [ + { "lat": 40.8755710, "lon": -73.9930235 }, + { "lat": 40.8755826, "lon": -73.9929450 }, + { "lat": 40.8755931, "lon": -73.9928479 }, + { "lat": 40.8756199, "lon": -73.9927370 }, + { "lat": 40.8756409, "lon": -73.9926476 }, + { "lat": 40.8756851, "lon": -73.9925275 }, + { "lat": 40.8757247, "lon": -73.9924351 }, + { "lat": 40.8757655, "lon": -73.9923365 }, + { "lat": 40.8757993, "lon": -73.9922486 }, + { "lat": 40.8758331, "lon": -73.9921393 }, + { "lat": 40.8758540, "lon": -73.9920669 }, + { "lat": 40.8758936, "lon": -73.9919683 }, + { "lat": 40.8759321, "lon": -73.9919328 }, + { "lat": 40.8759659, "lon": -73.9918990 }, + { "lat": 40.8760183, "lon": -73.9918327 }, + { "lat": 40.8760614, "lon": -73.9917973 }, + { "lat": 40.8761150, "lon": -73.9917680 }, + { "lat": 40.8761592, "lon": -73.9917865 }, + { "lat": 40.8762128, "lon": -73.9917665 }, + { "lat": 40.8762431, "lon": -73.9917202 }, + { "lat": 40.8762641, "lon": -73.9916602 }, + { "lat": 40.8762687, "lon": -73.9915955 }, + { "lat": 40.8762489, "lon": -73.9915369 }, + { "lat": 40.8762279, "lon": -73.9915000 }, + { "lat": 40.8762047, "lon": -73.9914430 }, + { "lat": 40.8761860, "lon": -73.9913829 }, + { "lat": 40.8761790, "lon": -73.9913243 }, + { "lat": 40.8762047, "lon": -73.9912612 }, + { "lat": 40.8762408, "lon": -73.9912304 }, + { "lat": 40.8762920, "lon": -73.9911841 }, + { "lat": 40.8763374, "lon": -73.9911456 }, + { "lat": 40.8763759, "lon": -73.9911148 }, + { "lat": 40.8764132, "lon": -73.9910902 }, + { "lat": 40.8764528, "lon": -73.9910440 }, + { "lat": 40.8764889, "lon": -73.9910024 }, + { "lat": 40.8765355, "lon": -73.9909500 }, + { "lat": 40.8765727, "lon": -73.9909130 }, + { "lat": 40.8766100, "lon": -73.9908807 }, + { "lat": 40.8766776, "lon": -73.9908499 }, + { "lat": 40.8767510, "lon": -73.9908083 }, + { "lat": 40.8768034, "lon": -73.9907898 }, + { "lat": 40.8768802, "lon": -73.9907805 }, + { "lat": 40.8769397, "lon": -73.9907728 }, + { "lat": 40.8770002, "lon": -73.9907867 }, + { "lat": 40.8770759, "lon": -73.9907882 }, + { "lat": 40.8771214, "lon": -73.9908021 }, + { "lat": 40.8771924, "lon": -73.9908160 }, + { "lat": 40.8772658, "lon": -73.9908391 }, + { "lat": 40.8773031, "lon": -73.9908483 }, + { "lat": 40.8773369, "lon": -73.9908714 }, + { "lat": 40.8773788, "lon": -73.9909269 }, + { "lat": 40.8774137, "lon": -73.9909947 }, + { "lat": 40.8774405, "lon": -73.9910609 }, + { "lat": 40.8774708, "lon": -73.9911117 }, + { "lat": 40.8775104, "lon": -73.9911672 }, + { "lat": 40.8775465, "lon": -73.9912334 }, + { "lat": 40.8775861, "lon": -73.9912920 }, + { "lat": 40.8776374, "lon": -73.9913444 }, + { "lat": 40.8776793, "lon": -73.9913890 }, + { "lat": 40.8777667, "lon": -73.9914661 }, + { "lat": 40.8778074, "lon": -73.9915030 }, + { "lat": 40.8778540, "lon": -73.9915508 }, + { "lat": 40.8779006, "lon": -73.9915939 } + ], + "tags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794598898, + "bounds": { + "minlat": 40.8783789, + "minlon": -73.9927929, + "maxlat": 40.8784287, + "maxlon": -73.9925137 + }, + "nodes": [ + 7432028597, + 7432028598, + 7432028599, + 7432028600, + 7432028601, + 7432028602, + 3743162383 + ], + "geometry": [ + { "lat": 40.8783921, "lon": -73.9925137 }, + { "lat": 40.8783789, "lon": -73.9926436 }, + { "lat": 40.8783806, "lon": -73.9926797 }, + { "lat": 40.8783849, "lon": -73.9927065 }, + { "lat": 40.8783946, "lon": -73.9927294 }, + { "lat": 40.8784126, "lon": -73.9927591 }, + { "lat": 40.8784287, "lon": -73.9927929 } + ], + "tags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794598899, + "bounds": { + "minlat": 40.8785443, + "minlon": -73.9952167, + "maxlat": 40.8802275, + "maxlon": -73.9930566 + }, + "nodes": [ + 3743162384, + 7432028603, + 7432028604, + 8986300012, + 7432028605, + 7432028606, + 7432028607, + 7432028608, + 7432028609, + 7432028610, + 7432028611, + 7432028612, + 7432028613, + 7432028614, + 7432028615, + 7432028616, + 7432028617, + 7432028618, + 7432028619, + 7432028620, + 7432028621, + 7432028622, + 7432028623, + 7432028624, + 7432028625, + 7432028626, + 7432028627, + 7432028628, + 7432028629, + 7432028630, + 7432028631, + 7431934770 + ], + "geometry": [ + { "lat": 40.8785443, "lon": -73.9930566 }, + { "lat": 40.8785545, "lon": -73.9930814 }, + { "lat": 40.8785784, "lon": -73.9931442 }, + { "lat": 40.8786288, "lon": -73.9932387 }, + { "lat": 40.8786375, "lon": -73.9932551 }, + { "lat": 40.8786870, "lon": -73.9933520 }, + { "lat": 40.8787373, "lon": -73.9934571 }, + { "lat": 40.8787885, "lon": -73.9935470 }, + { "lat": 40.8788582, "lon": -73.9936555 }, + { "lat": 40.8788970, "lon": -73.9937513 }, + { "lat": 40.8789571, "lon": -73.9938155 }, + { "lat": 40.8790401, "lon": -73.9939112 }, + { "lat": 40.8791204, "lon": -73.9940221 }, + { "lat": 40.8792042, "lon": -73.9941237 }, + { "lat": 40.8792837, "lon": -73.9942159 }, + { "lat": 40.8793287, "lon": -73.9942755 }, + { "lat": 40.8793755, "lon": -73.9943339 }, + { "lat": 40.8794055, "lon": -73.9943841 }, + { "lat": 40.8794638, "lon": -73.9943829 }, + { "lat": 40.8795141, "lon": -73.9944238 }, + { "lat": 40.8795732, "lon": -73.9944926 }, + { "lat": 40.8796465, "lon": -73.9945498 }, + { "lat": 40.8796844, "lon": -73.9946234 }, + { "lat": 40.8797462, "lon": -73.9947460 }, + { "lat": 40.8797877, "lon": -73.9948557 }, + { "lat": 40.8798513, "lon": -73.9949760 }, + { "lat": 40.8799078, "lon": -73.9950250 }, + { "lat": 40.8799705, "lon": -73.9950565 }, + { "lat": 40.8800481, "lon": -73.9950752 }, + { "lat": 40.8801090, "lon": -73.9951021 }, + { "lat": 40.8801691, "lon": -73.9951651 }, + { "lat": 40.8802275, "lon": -73.9952167 } + ], + "tags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794599620, + "bounds": { + "minlat": 40.8757335, + "minlon": -73.9974083, + "maxlat": 40.8802275, + "maxlon": -73.9952167 + }, + "nodes": [ + 7431934770, + 7432035290, + 7432035291, + 7432035292, + 7432035293, + 7432035294, + 7432035295, + 7432035296, + 7432035297, + 7432035298, + 7432035299, + 7432035300, + 7432035301, + 7432035302, + 7432035303, + 7432035304, + 7432035305, + 7432035306, + 7432035307, + 7432035308, + 7432035309, + 7432035310, + 7432035311, + 7432035312, + 7432035313, + 7432035314, + 7432035315, + 7432035316, + 7432035317, + 7432035318, + 7432035319, + 7432035320, + 7432035321, + 7432035322, + 7432035323, + 7432035324, + 7432035325, + 7432035326, + 7432035327, + 7432035328, + 7432035329, + 7432035330, + 7432035331, + 7432035332, + 7432035333, + 7432035334, + 7432035335, + 7432035336 + ], + "geometry": [ + { "lat": 40.8802275, "lon": -73.9952167 }, + { "lat": 40.8801458, "lon": -73.9952272 }, + { "lat": 40.8800328, "lon": -73.9952770 }, + { "lat": 40.8799283, "lon": -73.9953034 }, + { "lat": 40.8798031, "lon": -73.9953308 }, + { "lat": 40.8796932, "lon": -73.9953684 }, + { "lat": 40.8796256, "lon": -73.9954081 }, + { "lat": 40.8795134, "lon": -73.9954609 }, + { "lat": 40.8794411, "lon": -73.9954985 }, + { "lat": 40.8793674, "lon": -73.9955148 }, + { "lat": 40.8792506, "lon": -73.9955138 }, + { "lat": 40.8791560, "lon": -73.9955168 }, + { "lat": 40.8790077, "lon": -73.9955432 }, + { "lat": 40.8789209, "lon": -73.9955687 }, + { "lat": 40.8788095, "lon": -73.9956073 }, + { "lat": 40.8787226, "lon": -73.9956408 }, + { "lat": 40.8786027, "lon": -73.9956886 }, + { "lat": 40.8784467, "lon": -73.9957729 }, + { "lat": 40.8783607, "lon": -73.9958299 }, + { "lat": 40.8782323, "lon": -73.9959427 }, + { "lat": 40.8781270, "lon": -73.9960281 }, + { "lat": 40.8780233, "lon": -73.9961012 }, + { "lat": 40.8779757, "lon": -73.9961378 }, + { "lat": 40.8779142, "lon": -73.9961876 }, + { "lat": 40.8777889, "lon": -73.9962821 }, + { "lat": 40.8776829, "lon": -73.9963594 }, + { "lat": 40.8775822, "lon": -73.9964346 }, + { "lat": 40.8774777, "lon": -73.9965240 }, + { "lat": 40.8773440, "lon": -73.9966460 }, + { "lat": 40.8771849, "lon": -73.9967852 }, + { "lat": 40.8770335, "lon": -73.9968909 }, + { "lat": 40.8769367, "lon": -73.9969316 }, + { "lat": 40.8767991, "lon": -73.9969885 }, + { "lat": 40.8766930, "lon": -73.9970434 }, + { "lat": 40.8766139, "lon": -73.9971044 }, + { "lat": 40.8765847, "lon": -73.9971288 }, + { "lat": 40.8764817, "lon": -73.9972081 }, + { "lat": 40.8763764, "lon": -73.9972904 }, + { "lat": 40.8762727, "lon": -73.9973575 }, + { "lat": 40.8761705, "lon": -73.9974083 }, + { "lat": 40.8760844, "lon": -73.9973666 }, + { "lat": 40.8760414, "lon": -73.9973097 }, + { "lat": 40.8760175, "lon": -73.9972558 }, + { "lat": 40.8759668, "lon": -73.9971979 }, + { "lat": 40.8759099, "lon": -73.9971532 }, + { "lat": 40.8758638, "lon": -73.9971481 }, + { "lat": 40.8758039, "lon": -73.9971450 }, + { "lat": 40.8757335, "lon": -73.9971347 } + ], + "tags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794612400, + "bounds": { + "minlat": 40.8810578, + "minlon": -73.9926558, + "maxlat": 40.8831442, + "maxlon": -73.9912351 + }, + "nodes": [ + 7432093198, + 7432135230, + 7432135231, + 7432135232, + 7432135233, + 7432135234, + 7432135235, + 7432135236, + 7432135237, + 7432135238, + 7432135239, + 7432135240, + 7432135241, + 7432135242, + 7432135243, + 7432135244, + 7432135245, + 7432135246, + 7432135247, + 7432135248, + 7432135249, + 7432135250, + 7432135251, + 7432135252, + 7432135253, + 7432135254, + 7432135255, + 7432135256, + 7432135257, + 7432135258, + 7432135259, + 7432135260, + 7432135261, + 7432135262, + 7432135263, + 7432135264, + 7432135265, + 7432135266, + 7432135267, + 7432135268, + 7432135269, + 3743155731 + ], + "geometry": [ + { "lat": 40.8831442, "lon": -73.9912513 }, + { "lat": 40.8831057, "lon": -73.9912351 }, + { "lat": 40.8830685, "lon": -73.9912398 }, + { "lat": 40.8830196, "lon": -73.9912467 }, + { "lat": 40.8829683, "lon": -73.9912559 }, + { "lat": 40.8829264, "lon": -73.9912606 }, + { "lat": 40.8828821, "lon": -73.9912675 }, + { "lat": 40.8828338, "lon": -73.9912706 }, + { "lat": 40.8827889, "lon": -73.9912721 }, + { "lat": 40.8827074, "lon": -73.9912767 }, + { "lat": 40.8826789, "lon": -73.9912883 }, + { "lat": 40.8826102, "lon": -73.9913291 }, + { "lat": 40.8825513, "lon": -73.9913738 }, + { "lat": 40.8824820, "lon": -73.9914331 }, + { "lat": 40.8824255, "lon": -73.9914731 }, + { "lat": 40.8823574, "lon": -73.9915232 }, + { "lat": 40.8823091, "lon": -73.9915509 }, + { "lat": 40.8822642, "lon": -73.9915810 }, + { "lat": 40.8821711, "lon": -73.9916511 }, + { "lat": 40.8821198, "lon": -73.9916981 }, + { "lat": 40.8820575, "lon": -73.9917412 }, + { "lat": 40.8820138, "lon": -73.9917728 }, + { "lat": 40.8819201, "lon": -73.9918429 }, + { "lat": 40.8818519, "lon": -73.9918991 }, + { "lat": 40.8817879, "lon": -73.9919499 }, + { "lat": 40.8817057, "lon": -73.9920262 }, + { "lat": 40.8816661, "lon": -73.9920539 }, + { "lat": 40.8816347, "lon": -73.9920716 }, + { "lat": 40.8815823, "lon": -73.9921102 }, + { "lat": 40.8815357, "lon": -73.9921394 }, + { "lat": 40.8815008, "lon": -73.9921787 }, + { "lat": 40.8814542, "lon": -73.9922188 }, + { "lat": 40.8813802, "lon": -73.9922919 }, + { "lat": 40.8813243, "lon": -73.9923405 }, + { "lat": 40.8812818, "lon": -73.9923774 }, + { "lat": 40.8812276, "lon": -73.9924275 }, + { "lat": 40.8811839, "lon": -73.9924799 }, + { "lat": 40.8811567, "lon": -73.9925187 }, + { "lat": 40.8811314, "lon": -73.9925632 }, + { "lat": 40.8811054, "lon": -73.9926068 }, + { "lat": 40.8810850, "lon": -73.9926330 }, + { "lat": 40.8810578, "lon": -73.9926558 } + ], + "tags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794612409, + "bounds": { + "minlat": 40.8807296, + "minlon": -73.9940104, + "maxlat": 40.8810871, + "maxlon": -73.9927006 + }, + "nodes": [ + 3743155730, + 7432139952, + 7432139953, + 7432139954, + 7432139955, + 7432139956, + 7432139957, + 7432139958, + 7432139959, + 7432139960, + 7432139961, + 7432139962, + 7432139963, + 7432139964, + 7432139965, + 7432139966, + 7432139967, + 7432139968, + 7432139969, + 7432139970, + 7432139971, + 7432139972, + 7432139973, + 8359055295, + 3743155665 + ], + "geometry": [ + { "lat": 40.8809864, "lon": -73.9927006 }, + { "lat": 40.8809604, "lon": -73.9927203 }, + { "lat": 40.8809531, "lon": -73.9927557 }, + { "lat": 40.8809818, "lon": -73.9928867 }, + { "lat": 40.8810032, "lon": -73.9930220 }, + { "lat": 40.8810073, "lon": -73.9931574 }, + { "lat": 40.8809999, "lon": -73.9932450 }, + { "lat": 40.8809825, "lon": -73.9933105 }, + { "lat": 40.8809270, "lon": -73.9934167 }, + { "lat": 40.8808715, "lon": -73.9934768 }, + { "lat": 40.8808220, "lon": -73.9935352 }, + { "lat": 40.8807818, "lon": -73.9935759 }, + { "lat": 40.8807544, "lon": -73.9936405 }, + { "lat": 40.8807464, "lon": -73.9937502 }, + { "lat": 40.8807336, "lon": -73.9938812 }, + { "lat": 40.8807296, "lon": -73.9939838 }, + { "lat": 40.8807718, "lon": -73.9940077 }, + { "lat": 40.8808534, "lon": -73.9940104 }, + { "lat": 40.8809103, "lon": -73.9940059 }, + { "lat": 40.8809357, "lon": -73.9939989 }, + { "lat": 40.8809627, "lon": -73.9939869 }, + { "lat": 40.8809834, "lon": -73.9939756 }, + { "lat": 40.8810464, "lon": -73.9939285 }, + { "lat": 40.8810652, "lon": -73.9939190 }, + { "lat": 40.8810871, "lon": -73.9939154 } + ], + "tags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794613061, + "bounds": { + "minlat": 40.8807549, + "minlon": -73.9954949, + "maxlat": 40.8845204, + "maxlon": -73.9936465 + }, + "nodes": [ + 7432141897, + 7432141898, + 7432141899, + 7432141900, + 7432141901, + 7432141902, + 7432141903, + 7432141904, + 7432141905, + 7432141906, + 7432141907, + 7432141908, + 7432141909, + 7432141910, + 7432141911, + 7432141912, + 7432141913, + 7432141914, + 7432141915, + 7432141916, + 7432141917, + 7432141918, + 7432141919, + 7432141920, + 7432141921, + 7432141922, + 7432141923, + 7432141924, + 7432141925, + 7432141926, + 7432141927, + 7432141928, + 7432141929, + 7432141930, + 7432141931, + 7432141932, + 7432141933, + 7432141934, + 7432141935, + 7432141936, + 7432141937, + 7432141938, + 7432141939, + 7432141940, + 7432141941, + 7432141942, + 7432141943 + ], + "geometry": [ + { "lat": 40.8807549, "lon": -73.9950604 }, + { "lat": 40.8807803, "lon": -73.9951728 }, + { "lat": 40.8808070, "lon": -73.9952834 }, + { "lat": 40.8808465, "lon": -73.9953940 }, + { "lat": 40.8808967, "lon": -73.9954674 }, + { "lat": 40.8809830, "lon": -73.9954940 }, + { "lat": 40.8810552, "lon": -73.9954949 }, + { "lat": 40.8811368, "lon": -73.9954497 }, + { "lat": 40.8812318, "lon": -73.9953719 }, + { "lat": 40.8812706, "lon": -73.9953330 }, + { "lat": 40.8813288, "lon": -73.9952949 }, + { "lat": 40.8814272, "lon": -73.9952489 }, + { "lat": 40.8815202, "lon": -73.9952091 }, + { "lat": 40.8816807, "lon": -73.9951471 }, + { "lat": 40.8817730, "lon": -73.9951162 }, + { "lat": 40.8818613, "lon": -73.9950914 }, + { "lat": 40.8819396, "lon": -73.9950711 }, + { "lat": 40.8819904, "lon": -73.9950454 }, + { "lat": 40.8820413, "lon": -73.9950073 }, + { "lat": 40.8821008, "lon": -73.9949658 }, + { "lat": 40.8821724, "lon": -73.9949100 }, + { "lat": 40.8822480, "lon": -73.9948552 }, + { "lat": 40.8823276, "lon": -73.9947693 }, + { "lat": 40.8823818, "lon": -73.9946941 }, + { "lat": 40.8824594, "lon": -73.9945986 }, + { "lat": 40.8825820, "lon": -73.9944630 }, + { "lat": 40.8826233, "lon": -73.9944499 }, + { "lat": 40.8827296, "lon": -73.9944013 }, + { "lat": 40.8827979, "lon": -73.9943597 }, + { "lat": 40.8828788, "lon": -73.9943181 }, + { "lat": 40.8829832, "lon": -73.9942783 }, + { "lat": 40.8830828, "lon": -73.9942482 }, + { "lat": 40.8831925, "lon": -73.9942084 }, + { "lat": 40.8832681, "lon": -73.9941765 }, + { "lat": 40.8833778, "lon": -73.9941314 }, + { "lat": 40.8834521, "lon": -73.9940978 }, + { "lat": 40.8835531, "lon": -73.9940482 }, + { "lat": 40.8836340, "lon": -73.9940173 }, + { "lat": 40.8837752, "lon": -73.9939535 }, + { "lat": 40.8838588, "lon": -73.9939208 }, + { "lat": 40.8839953, "lon": -73.9938730 }, + { "lat": 40.8840648, "lon": -73.9938359 }, + { "lat": 40.8841812, "lon": -73.9937748 }, + { "lat": 40.8842836, "lon": -73.9937129 }, + { "lat": 40.8843752, "lon": -73.9936766 }, + { "lat": 40.8844374, "lon": -73.9936625 }, + { "lat": 40.8845204, "lon": -73.9936465 } + ], + "tags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794713616, + "bounds": { + "minlat": 40.7942670, + "minlon": -74.0177550, + "maxlat": 40.7944969, + "maxlon": -74.0175848 + }, + "nodes": [ + 103883255, + 7473610402, + 7433092156, + 7433092157 + ], + "geometry": [ + { "lat": 40.7942670, "lon": -74.0177550 }, + { "lat": 40.7943264, "lon": -74.0177255 }, + { "lat": 40.7943468, "lon": -74.0177153 }, + { "lat": 40.7944969, "lon": -74.0175848 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794713617, + "bounds": { + "minlat": 40.7944855, + "minlon": -74.0170671, + "maxlat": 40.7947602, + "maxlon": -74.0168144 + }, + "nodes": [ + 7433092158, + 7474498696, + 7433092159 + ], + "geometry": [ + { "lat": 40.7944855, "lon": -74.0170671 }, + { "lat": 40.7945309, "lon": -74.0170253 }, + { "lat": 40.7947602, "lon": -74.0168144 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 794793030, + "bounds": { + "minlat": 40.7790151, + "minlon": -74.0164465, + "maxlat": 40.7791381, + "maxlon": -74.0163512 + }, + "nodes": [ + 7433920659, + 7433920662, + 7433920660, + 7433920661 + ], + "geometry": [ + { "lat": 40.7791381, "lon": -74.0163512 }, + { "lat": 40.7790922, "lon": -74.0163872 }, + { "lat": 40.7790848, "lon": -74.0163914 }, + { "lat": 40.7790151, "lon": -74.0164465 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 794805875, + "bounds": { + "minlat": 40.8041334, + "minlon": -73.9536022, + "maxlat": 40.8044592, + "maxlon": -73.9533622 + }, + "nodes": [ + 7433986962, + 11296195562, + 7433986963 + ], + "geometry": [ + { "lat": 40.8041334, "lon": -73.9536022 }, + { "lat": 40.8044030, "lon": -73.9534036 }, + { "lat": 40.8044592, "lon": -73.9533622 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 794846706, + "bounds": { + "minlat": 40.8555756, + "minlon": -73.9830268, + "maxlat": 40.8556649, + "maxlon": -73.9829970 + }, + "nodes": [ + 11043396694, + 5362388583, + 5362388582, + 7434430590 + ], + "geometry": [ + { "lat": 40.8555756, "lon": -73.9830137 }, + { "lat": 40.8555927, "lon": -73.9829970 }, + { "lat": 40.8556475, "lon": -73.9830037 }, + { "lat": 40.8556649, "lon": -73.9830268 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 794846707, + "bounds": { + "minlat": 40.8556649, + "minlon": -73.9831050, + "maxlat": 40.8558316, + "maxlon": -73.9830268 + }, + "nodes": [ + 7434430590, + 5362388581, + 5362388579, + 5362388586 + ], + "geometry": [ + { "lat": 40.8556649, "lon": -73.9830268 }, + { "lat": 40.8556860, "lon": -73.9830547 }, + { "lat": 40.8557237, "lon": -73.9830773 }, + { "lat": 40.8558316, "lon": -73.9831050 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 794846708, + "bounds": { + "minlat": 40.8556649, + "minlon": -73.9830268, + "maxlat": 40.8559110, + "maxlon": -73.9827762 + }, + "nodes": [ + 7434430590, + 7434430592, + 7434430604, + 7434430591 + ], + "geometry": [ + { "lat": 40.8556649, "lon": -73.9830268 }, + { "lat": 40.8557480, "lon": -73.9829422 }, + { "lat": 40.8558341, "lon": -73.9828545 }, + { "lat": 40.8559110, "lon": -73.9827762 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 794846709, + "bounds": { + "minlat": 40.8556536, + "minlon": -73.9829422, + "maxlat": 40.8558341, + "maxlon": -73.9826938 + }, + "nodes": [ + 7434430592, + 7434430593, + 7434430594, + 7434430595, + 7434430596, + 7434430597, + 7434430598, + 7434430599, + 7434430600, + 7434430601, + 7434430602, + 7434430603, + 7434430604 + ], + "geometry": [ + { "lat": 40.8557480, "lon": -73.9829422 }, + { "lat": 40.8556575, "lon": -73.9827958 }, + { "lat": 40.8556544, "lon": -73.9827815 }, + { "lat": 40.8556536, "lon": -73.9827611 }, + { "lat": 40.8556567, "lon": -73.9827438 }, + { "lat": 40.8556652, "lon": -73.9827234 }, + { "lat": 40.8556768, "lon": -73.9827091 }, + { "lat": 40.8556930, "lon": -73.9826979 }, + { "lat": 40.8557115, "lon": -73.9826938 }, + { "lat": 40.8557285, "lon": -73.9826958 }, + { "lat": 40.8557431, "lon": -73.9827009 }, + { "lat": 40.8557578, "lon": -73.9827173 }, + { "lat": 40.8558341, "lon": -73.9828545 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 794846735, + "bounds": { + "minlat": 40.8539937, + "minlon": -73.9812203, + "maxlat": 40.8541949, + "maxlon": -73.9807266 + }, + "nodes": [ + 7434430735, + 7434430736, + 7434430737 + ], + "geometry": [ + { "lat": 40.8541575, "lon": -73.9812203 }, + { "lat": 40.8539937, "lon": -73.9809239 }, + { "lat": 40.8541949, "lon": -73.9807266 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 794846780, + "bounds": { + "minlat": 40.8558363, + "minlon": -73.9826497, + "maxlat": 40.8562366, + "maxlon": -73.9822341 + }, + "nodes": [ + 7434430967, + 7434430968, + 7434430969, + 7434430970, + 7434430971, + 7434430972, + 7434430973, + 7434430974, + 7434430975, + 7434430976, + 7434430977, + 7434430978, + 7434430979 + ], + "geometry": [ + { "lat": 40.8558363, "lon": -73.9826497 }, + { "lat": 40.8561293, "lon": -73.9823517 }, + { "lat": 40.8561410, "lon": -73.9823439 }, + { "lat": 40.8561565, "lon": -73.9823371 }, + { "lat": 40.8561741, "lon": -73.9823342 }, + { "lat": 40.8561940, "lon": -73.9823303 }, + { "lat": 40.8562072, "lon": -73.9823283 }, + { "lat": 40.8562182, "lon": -73.9823225 }, + { "lat": 40.8562292, "lon": -73.9823099 }, + { "lat": 40.8562329, "lon": -73.9822973 }, + { "lat": 40.8562366, "lon": -73.9822817 }, + { "lat": 40.8562366, "lon": -73.9822632 }, + { "lat": 40.8562329, "lon": -73.9822341 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 794846781, + "bounds": { + "minlat": 40.8561886, + "minlon": -73.9822341, + "maxlat": 40.8562329, + "maxlon": -73.9822108 + }, + "nodes": [ + 7434430979, + 7434430980, + 7434430981, + 7434430982, + 7434430983, + 7434430984 + ], + "geometry": [ + { "lat": 40.8562329, "lon": -73.9822341 }, + { "lat": 40.8562270, "lon": -73.9822224 }, + { "lat": 40.8562182, "lon": -73.9822137 }, + { "lat": 40.8562087, "lon": -73.9822108 }, + { "lat": 40.8561969, "lon": -73.9822108 }, + { "lat": 40.8561886, "lon": -73.9822137 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 794846782, + "bounds": { + "minlat": 40.8560121, + "minlon": -73.9822341, + "maxlat": 40.8562329, + "maxlon": -73.9821146 + }, + "nodes": [ + 7434430979, + 7434430989, + 7434430990, + 7434430991, + 7434430992, + 7434430993, + 7434430994, + 7434430995, + 7434430996, + 7434430997, + 7434430998, + 7434430999, + 7434431000, + 7434431001, + 7434431002, + 7434431003 + ], + "geometry": [ + { "lat": 40.8562329, "lon": -73.9822341 }, + { "lat": 40.8562263, "lon": -73.9821923 }, + { "lat": 40.8562211, "lon": -73.9821680 }, + { "lat": 40.8562145, "lon": -73.9821447 }, + { "lat": 40.8562065, "lon": -73.9821243 }, + { "lat": 40.8561962, "lon": -73.9821165 }, + { "lat": 40.8561829, "lon": -73.9821146 }, + { "lat": 40.8561704, "lon": -73.9821175 }, + { "lat": 40.8561572, "lon": -73.9821253 }, + { "lat": 40.8561462, "lon": -73.9821331 }, + { "lat": 40.8561366, "lon": -73.9821437 }, + { "lat": 40.8561264, "lon": -73.9821544 }, + { "lat": 40.8561146, "lon": -73.9821651 }, + { "lat": 40.8560992, "lon": -73.9821748 }, + { "lat": 40.8560801, "lon": -73.9821884 }, + { "lat": 40.8560121, "lon": -73.9822340 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 794864554, + "bounds": { + "minlat": 40.8517148, + "minlon": -73.9745644, + "maxlat": 40.8520715, + "maxlon": -73.9741117 + }, + "nodes": [ + 5449464623, + 7434604714, + 7434604715, + 7434604716 + ], + "geometry": [ + { "lat": 40.8520715, "lon": -73.9745644 }, + { "lat": 40.8520408, "lon": -73.9744501 }, + { "lat": 40.8518415, "lon": -73.9741117 }, + { "lat": 40.8517148, "lon": -73.9742372 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 794864555, + "bounds": { + "minlat": 40.8516049, + "minlon": -73.9747225, + "maxlat": 40.8518536, + "maxlon": -73.9744587 + }, + "nodes": [ + 7434604717, + 7434604718 + ], + "geometry": [ + { "lat": 40.8518536, "lon": -73.9744587 }, + { "lat": 40.8516049, "lon": -73.9747225 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 794864556, + "bounds": { + "minlat": 40.8515313, + "minlon": -73.9746132, + "maxlat": 40.8517913, + "maxlon": -73.9743464 + }, + "nodes": [ + 5108605286, + 7434604719 + ], + "geometry": [ + { "lat": 40.8517913, "lon": -73.9743464 }, + { "lat": 40.8515313, "lon": -73.9746132 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 794864557, + "bounds": { + "minlat": 40.8514305, + "minlon": -73.9744411, + "maxlat": 40.8516741, + "maxlon": -73.9741791 + }, + "nodes": [ + 7434604720, + 7434604721 + ], + "geometry": [ + { "lat": 40.8516741, "lon": -73.9741791 }, + { "lat": 40.8514305, "lon": -73.9744411 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 794864579, + "bounds": { + "minlat": 40.8493087, + "minlon": -73.9758211, + "maxlat": 40.8496285, + "maxlon": -73.9749893 + }, + "nodes": [ + 5449457239, + 7434604830, + 7434604827, + 7434604828 + ], + "geometry": [ + { "lat": 40.8493087, "lon": -73.9749893 }, + { "lat": 40.8495438, "lon": -73.9754215 }, + { "lat": 40.8496285, "lon": -73.9755774 }, + { "lat": 40.8493770, "lon": -73.9758211 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 794864580, + "bounds": { + "minlat": 40.8492861, + "minlon": -73.9756501, + "maxlat": 40.8495438, + "maxlon": -73.9754215 + }, + "nodes": [ + 7434604829, + 7434604830 + ], + "geometry": [ + { "lat": 40.8492861, "lon": -73.9756501 }, + { "lat": 40.8495438, "lon": -73.9754215 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 794864603, + "bounds": { + "minlat": 40.8512660, + "minlon": -73.9735757, + "maxlat": 40.8514277, + "maxlon": -73.9731160 + }, + "nodes": [ + 7434604955, + 9719956009, + 7434604954, + 9719956010, + 7434604953 + ], + "geometry": [ + { "lat": 40.8512660, "lon": -73.9735757 }, + { "lat": 40.8514243, "lon": -73.9734022 }, + { "lat": 40.8514276, "lon": -73.9733939 }, + { "lat": 40.8514277, "lon": -73.9733846 }, + { "lat": 40.8512666, "lon": -73.9731160 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 795247338, + "bounds": { + "minlat": 40.8334840, + "minlon": -73.9224767, + "maxlat": 40.8336959, + "maxlon": -73.9218501 + }, + "nodes": [ + 7438069667, + 7438069668, + 7560954610, + 7438069670 + ], + "geometry": [ + { "lat": 40.8336959, "lon": -73.9224767 }, + { "lat": 40.8336621, "lon": -73.9223729 }, + { "lat": 40.8336236, "lon": -73.9222547 }, + { "lat": 40.8334840, "lon": -73.9218501 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 795478809, + "bounds": { + "minlat": 40.8527175, + "minlon": -73.9759520, + "maxlat": 40.8529579, + "maxlon": -73.9757122 + }, + "nodes": [ + 7440135186, + 7440135187 + ], + "geometry": [ + { "lat": 40.8529579, "lon": -73.9757122 }, + { "lat": 40.8527175, "lon": -73.9759520 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 795602991, + "bounds": { + "minlat": 40.7717612, + "minlon": -74.0143320, + "maxlat": 40.7722242, + "maxlon": -74.0134833 + }, + "nodes": [ + 7441554306, + 7441554307, + 7441554308, + 11071540434, + 11071540435, + 11071540438, + 11071540440, + 11071540436, + 11071540437 + ], + "geometry": [ + { "lat": 40.7722242, "lon": -74.0134833 }, + { "lat": 40.7721738, "lon": -74.0135230 }, + { "lat": 40.7720754, "lon": -74.0135961 }, + { "lat": 40.7720450, "lon": -74.0135305 }, + { "lat": 40.7717612, "lon": -74.0137558 }, + { "lat": 40.7718469, "lon": -74.0139429 }, + { "lat": 40.7719327, "lon": -74.0141301 }, + { "lat": 40.7720253, "lon": -74.0143320 }, + { "lat": 40.7721552, "lon": -74.0142448 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 795725940, + "bounds": { + "minlat": 40.8420130, + "minlon": -73.9229047, + "maxlat": 40.8422609, + "maxlon": -73.9226807 + }, + "nodes": [ + 7442778110, + 7442778111, + 7442778112 + ], + "geometry": [ + { "lat": 40.8422609, "lon": -73.9226807 }, + { "lat": 40.8422130, "lon": -73.9229047 }, + { "lat": 40.8420130, "lon": -73.9228207 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 795725941, + "bounds": { + "minlat": 40.8423624, + "minlon": -73.9229467, + "maxlat": 40.8424211, + "maxlon": -73.9227447 + }, + "nodes": [ + 7442778113, + 7442778114 + ], + "geometry": [ + { "lat": 40.8424211, "lon": -73.9227447 }, + { "lat": 40.8423624, "lon": -73.9229467 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 795725942, + "bounds": { + "minlat": 40.8422130, + "minlon": -73.9229467, + "maxlat": 40.8423624, + "maxlon": -73.9229047 + }, + "nodes": [ + 7442778114, + 7442778111 + ], + "geometry": [ + { "lat": 40.8423624, "lon": -73.9229467 }, + { "lat": 40.8422130, "lon": -73.9229047 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 795725943, + "bounds": { + "minlat": 40.8420097, + "minlon": -73.9231666, + "maxlat": 40.8421132, + "maxlon": -73.9228207 + }, + "nodes": [ + 11054511869, + 13312772250, + 7442778117, + 13312772249, + 11054511866, + 7442778116, + 7442778112 + ], + "geometry": [ + { "lat": 40.8421132, "lon": -73.9231372 }, + { "lat": 40.8420819, "lon": -73.9231633 }, + { "lat": 40.8420749, "lon": -73.9231666 }, + { "lat": 40.8420696, "lon": -73.9231599 }, + { "lat": 40.8420527, "lon": -73.9231116 }, + { "lat": 40.8420097, "lon": -73.9230028 }, + { "lat": 40.8420130, "lon": -73.9228207 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 795742785, + "bounds": { + "minlat": 40.8481333, + "minlon": -73.9693826, + "maxlat": 40.8481713, + "maxlon": -73.9691886 + }, + "nodes": [ + 5750610020, + 7442910269, + 7442910270 + ], + "geometry": [ + { "lat": 40.8481494, "lon": -73.9693826 }, + { "lat": 40.8481713, "lon": -73.9693438 }, + { "lat": 40.8481333, "lon": -73.9691886 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 795742786, + "bounds": { + "minlat": 40.8477699, + "minlon": -73.9695042, + "maxlat": 40.8479253, + "maxlon": -73.9689270 + }, + "nodes": [ + 5750610018, + 7442910271, + 7442910272, + 7442910273 + ], + "geometry": [ + { "lat": 40.8478867, "lon": -73.9695042 }, + { "lat": 40.8478705, "lon": -73.9693822 }, + { "lat": 40.8477699, "lon": -73.9690038 }, + { "lat": 40.8479253, "lon": -73.9689270 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 795742787, + "bounds": { + "minlat": 40.8481494, + "minlon": -73.9696377, + "maxlat": 40.8482231, + "maxlon": -73.9693826 + }, + "nodes": [ + 5750613521, + 10002778631, + 5750610020 + ], + "geometry": [ + { "lat": 40.8482231, "lon": -73.9696377 }, + { "lat": 40.8481988, "lon": -73.9695535 }, + { "lat": 40.8481494, "lon": -73.9693826 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 795742798, + "bounds": { + "minlat": 40.8493334, + "minlon": -73.9696269, + "maxlat": 40.8494776, + "maxlon": -73.9691119 + }, + "nodes": [ + 7442921414, + 7442921415, + 7442921416 + ], + "geometry": [ + { "lat": 40.8493575, "lon": -73.9691119 }, + { "lat": 40.8494776, "lon": -73.9695607 }, + { "lat": 40.8493334, "lon": -73.9696269 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 795742800, + "bounds": { + "minlat": 40.8495725, + "minlon": -73.9694711, + "maxlat": 40.8497002, + "maxlon": -73.9690122 + }, + "nodes": [ + 7442921421, + 7442921422 + ], + "geometry": [ + { "lat": 40.8495725, "lon": -73.9690122 }, + { "lat": 40.8497002, "lon": -73.9694711 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 795742807, + "bounds": { + "minlat": 40.8516119, + "minlon": -73.9703964, + "maxlat": 40.8520598, + "maxlon": -73.9701217 + }, + "nodes": [ + 7442921451, + 9719956012, + 7442921452 + ], + "geometry": [ + { "lat": 40.8516119, "lon": -73.9703964 }, + { "lat": 40.8520549, "lon": -73.9701285 }, + { "lat": 40.8520598, "lon": -73.9701217 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 795742816, + "bounds": { + "minlat": 40.8521141, + "minlon": -73.9715148, + "maxlat": 40.8522961, + "maxlon": -73.9713697 + }, + "nodes": [ + 7442921492, + 7442921493, + 7442921494 + ], + "geometry": [ + { "lat": 40.8521141, "lon": -73.9713697 }, + { "lat": 40.8521946, "lon": -73.9715148 }, + { "lat": 40.8522961, "lon": -73.9714164 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 795742817, + "bounds": { + "minlat": 40.8514516, + "minlon": -73.9713665, + "maxlat": 40.8517681, + "maxlon": -73.9708350 + }, + "nodes": [ + 7442921495, + 7442921496, + 7442921497 + ], + "geometry": [ + { "lat": 40.8514516, "lon": -73.9713665 }, + { "lat": 40.8517681, "lon": -73.9710345 }, + { "lat": 40.8516580, "lon": -73.9708350 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 795829096, + "bounds": { + "minlat": 40.7710811, + "minlon": -73.9936786, + "maxlat": 40.7712271, + "maxlon": -73.9935659 + }, + "nodes": [ + 7443621689, + 10083846593, + 7443621690 + ], + "geometry": [ + { "lat": 40.7712271, "lon": -73.9935659 }, + { "lat": 40.7711304, "lon": -73.9936406 }, + { "lat": 40.7710811, "lon": -73.9936786 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 795829201, + "bounds": { + "minlat": 40.7709765, + "minlon": -73.9933432, + "maxlat": 40.7710944, + "maxlon": -73.9932531 + }, + "nodes": [ + 7443617343, + 10083846592, + 7443617344 + ], + "geometry": [ + { "lat": 40.7710944, "lon": -73.9932531 }, + { "lat": 40.7709988, "lon": -73.9933262 }, + { "lat": 40.7709765, "lon": -73.9933432 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 796257317, + "bounds": { + "minlat": 40.8169103, + "minlon": -73.9365766, + "maxlat": 40.8171962, + "maxlon": -73.9363728 + }, + "nodes": [ + 42447348, + 8212384276, + 5674032293 + ], + "geometry": [ + { "lat": 40.8171962, "lon": -73.9363728 }, + { "lat": 40.8170928, "lon": -73.9364504 }, + { "lat": 40.8169103, "lon": -73.9365766 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796257318, + "bounds": { + "minlat": 40.8165896, + "minlon": -73.9361421, + "maxlat": 40.8169430, + "maxlon": -73.9358858 + }, + "nodes": [ + 7169239273, + 8212384275, + 7446873797 + ], + "geometry": [ + { "lat": 40.8169430, "lon": -73.9358858 }, + { "lat": 40.8168787, "lon": -73.9359324 }, + { "lat": 40.8165896, "lon": -73.9361421 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796465326, + "bounds": { + "minlat": 40.8164644, + "minlon": -73.9384836, + "maxlat": 40.8167181, + "maxlon": -73.9383054 + }, + "nodes": [ + 7448765230, + 8212384267, + 7448765231 + ], + "geometry": [ + { "lat": 40.8167181, "lon": -73.9383054 }, + { "lat": 40.8165441, "lon": -73.9384275 }, + { "lat": 40.8164644, "lon": -73.9384836 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472951, + "bounds": { + "minlat": 40.8126692, + "minlon": -73.9411047, + "maxlat": 40.8130342, + "maxlon": -73.9408555 + }, + "nodes": [ + 7448919041, + 7448919047, + 7448919042 + ], + "geometry": [ + { "lat": 40.8130342, "lon": -73.9408555 }, + { "lat": 40.8128081, "lon": -73.9410094 }, + { "lat": 40.8126692, "lon": -73.9411047 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472952, + "bounds": { + "minlat": 40.8131205, + "minlon": -73.9406999, + "maxlat": 40.8133752, + "maxlon": -73.9405202 + }, + "nodes": [ + 7448919043, + 7448919044 + ], + "geometry": [ + { "lat": 40.8133752, "lon": -73.9405202 }, + { "lat": 40.8131205, "lon": -73.9406999 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472953, + "bounds": { + "minlat": 40.8128610, + "minlon": -73.9416137, + "maxlat": 40.8129498, + "maxlon": -73.9413898 + }, + "nodes": [ + 5481922072, + 9559444350, + 7448919045 + ], + "geometry": [ + { "lat": 40.8129498, "lon": -73.9416137 }, + { "lat": 40.8129149, "lon": -73.9415239 }, + { "lat": 40.8128610, "lon": -73.9413898 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472954, + "bounds": { + "minlat": 40.8128081, + "minlon": -73.9412136, + "maxlat": 40.8128830, + "maxlon": -73.9410094 + }, + "nodes": [ + 7448919046, + 7448919047 + ], + "geometry": [ + { "lat": 40.8128830, "lon": -73.9412136 }, + { "lat": 40.8128081, "lon": -73.9410094 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472955, + "bounds": { + "minlat": 40.8126692, + "minlon": -73.9413128, + "maxlat": 40.8127500, + "maxlon": -73.9411047 + }, + "nodes": [ + 7448919048, + 7448919042 + ], + "geometry": [ + { "lat": 40.8127500, "lon": -73.9413128 }, + { "lat": 40.8126692, "lon": -73.9411047 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472956, + "bounds": { + "minlat": 40.8127500, + "minlon": -73.9413898, + "maxlat": 40.8128610, + "maxlon": -73.9413128 + }, + "nodes": [ + 7448919045, + 7448919048 + ], + "geometry": [ + { "lat": 40.8128610, "lon": -73.9413898 }, + { "lat": 40.8127500, "lon": -73.9413128 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472957, + "bounds": { + "minlat": 40.8128610, + "minlon": -73.9413898, + "maxlat": 40.8128830, + "maxlon": -73.9412136 + }, + "nodes": [ + 7448919046, + 7448919045 + ], + "geometry": [ + { "lat": 40.8128830, "lon": -73.9412136 }, + { "lat": 40.8128610, "lon": -73.9413898 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472958, + "bounds": { + "minlat": 40.8130342, + "minlon": -73.9408555, + "maxlat": 40.8131205, + "maxlon": -73.9406999 + }, + "nodes": [ + 7448919041, + 7448919044 + ], + "geometry": [ + { "lat": 40.8130342, "lon": -73.9408555 }, + { "lat": 40.8131205, "lon": -73.9406999 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472959, + "bounds": { + "minlat": 40.8121535, + "minlon": -73.9413598, + "maxlat": 40.8123278, + "maxlon": -73.9409311 + }, + "nodes": [ + 7448919049, + 7448919050 + ], + "geometry": [ + { "lat": 40.8123278, "lon": -73.9413598 }, + { "lat": 40.8121535, "lon": -73.9409311 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472960, + "bounds": { + "minlat": 40.8123278, + "minlon": -73.9413598, + "maxlat": 40.8125825, + "maxlon": -73.9411841 + }, + "nodes": [ + 7448919051, + 7448919049 + ], + "geometry": [ + { "lat": 40.8125825, "lon": -73.9411841 }, + { "lat": 40.8123278, "lon": -73.9413598 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472961, + "bounds": { + "minlat": 40.8117817, + "minlon": -73.9412463, + "maxlat": 40.8121044, + "maxlon": -73.9410433 + }, + "nodes": [ + 7448919052, + 9353002803, + 9559444349, + 7448919053 + ], + "geometry": [ + { "lat": 40.8121044, "lon": -73.9410433 }, + { "lat": 40.8118904, "lon": -73.9411778 }, + { "lat": 40.8118773, "lon": -73.9411860 }, + { "lat": 40.8117817, "lon": -73.9412463 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472962, + "bounds": { + "minlat": 40.8121044, + "minlon": -73.9410433, + "maxlat": 40.8122729, + "maxlon": -73.9406583 + }, + "nodes": [ + 5481922106, + 7448919055, + 7448919050, + 7448919052 + ], + "geometry": [ + { "lat": 40.8122729, "lon": -73.9406583 }, + { "lat": 40.8121646, "lon": -73.9409057 }, + { "lat": 40.8121535, "lon": -73.9409311 }, + { "lat": 40.8121044, "lon": -73.9410433 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472963, + "bounds": { + "minlat": 40.8118462, + "minlon": -73.9409057, + "maxlat": 40.8121646, + "maxlon": -73.9401381 + }, + "nodes": [ + 7448919055, + 7448919056 + ], + "geometry": [ + { "lat": 40.8121646, "lon": -73.9409057 }, + { "lat": 40.8118462, "lon": -73.9401381 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472964, + "bounds": { + "minlat": 40.8120671, + "minlon": -73.9402454, + "maxlat": 40.8122979, + "maxlon": -73.9396999 + }, + "nodes": [ + 7448919057, + 7448919058 + ], + "geometry": [ + { "lat": 40.8122979, "lon": -73.9402454 }, + { "lat": 40.8120671, "lon": -73.9396999 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472965, + "bounds": { + "minlat": 40.8119974, + "minlon": -73.9397465, + "maxlat": 40.8124725, + "maxlon": -73.9394286 + }, + "nodes": [ + 5481922094, + 7448919058, + 7448919062, + 7448919064, + 7448919059 + ], + "geometry": [ + { "lat": 40.8119974, "lon": -73.9397465 }, + { "lat": 40.8120671, "lon": -73.9396999 }, + { "lat": 40.8122280, "lon": -73.9395924 }, + { "lat": 40.8124053, "lon": -73.9394736 }, + { "lat": 40.8124725, "lon": -73.9394286 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472966, + "bounds": { + "minlat": 40.8125161, + "minlon": -73.9391604, + "maxlat": 40.8128115, + "maxlon": -73.9389646 + }, + "nodes": [ + 7448919060, + 7448919061 + ], + "geometry": [ + { "lat": 40.8128115, "lon": -73.9389646 }, + { "lat": 40.8125161, "lon": -73.9391604 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472967, + "bounds": { + "minlat": 40.8119792, + "minlon": -73.9402165, + "maxlat": 40.8124836, + "maxlon": -73.9389847 + }, + "nodes": [ + 7448919582, + 7448919583, + 7448919062, + 7448919063 + ], + "geometry": [ + { "lat": 40.8124836, "lon": -73.9402165 }, + { "lat": 40.8124497, "lon": -73.9401337 }, + { "lat": 40.8122280, "lon": -73.9395924 }, + { "lat": 40.8119792, "lon": -73.9389847 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472968, + "bounds": { + "minlat": 40.8121426, + "minlon": -73.9394736, + "maxlat": 40.8124053, + "maxlon": -73.9388613 + }, + "nodes": [ + 7448919064, + 7448919065 + ], + "geometry": [ + { "lat": 40.8124053, "lon": -73.9394736 }, + { "lat": 40.8121426, "lon": -73.9388613 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472969, + "bounds": { + "minlat": 40.8115792, + "minlon": -73.9398591, + "maxlat": 40.8119426, + "maxlon": -73.9396083 + }, + "nodes": [ + 7448919066, + 5481922095 + ], + "geometry": [ + { "lat": 40.8115792, "lon": -73.9398591 }, + { "lat": 40.8119426, "lon": -73.9396083 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472970, + "bounds": { + "minlat": 40.8116412, + "minlon": -73.9399825, + "maxlat": 40.8119974, + "maxlon": -73.9397465 + }, + "nodes": [ + 5481922094, + 7448919067 + ], + "geometry": [ + { "lat": 40.8119974, "lon": -73.9397465 }, + { "lat": 40.8116412, "lon": -73.9399825 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472971, + "bounds": { + "minlat": 40.8115671, + "minlon": -73.9399651, + "maxlat": 40.8115792, + "maxlon": -73.9398591 + }, + "nodes": [ + 5481922098, + 7448919066 + ], + "geometry": [ + { "lat": 40.8115671, "lon": -73.9399651 }, + { "lat": 40.8115792, "lon": -73.9398591 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472972, + "bounds": { + "minlat": 40.8115671, + "minlon": -73.9399825, + "maxlat": 40.8116412, + "maxlon": -73.9399651 + }, + "nodes": [ + 7448919067, + 5481922098 + ], + "geometry": [ + { "lat": 40.8116412, "lon": -73.9399825 }, + { "lat": 40.8115671, "lon": -73.9399651 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472973, + "bounds": { + "minlat": 40.8124725, + "minlon": -73.9394286, + "maxlat": 40.8125161, + "maxlon": -73.9391604 + }, + "nodes": [ + 7448919061, + 7448919059 + ], + "geometry": [ + { "lat": 40.8125161, "lon": -73.9391604 }, + { "lat": 40.8124725, "lon": -73.9394286 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472974, + "bounds": { + "minlat": 40.8131093, + "minlon": -73.9400143, + "maxlat": 40.8133342, + "maxlon": -73.9398631 + }, + "nodes": [ + 7448919068, + 7448919069 + ], + "geometry": [ + { "lat": 40.8133342, "lon": -73.9398631 }, + { "lat": 40.8131093, "lon": -73.9400143 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472975, + "bounds": { + "minlat": 40.8130419, + "minlon": -73.9398538, + "maxlat": 40.8132784, + "maxlon": -73.9396901 + }, + "nodes": [ + 7448919070, + 7448919071 + ], + "geometry": [ + { "lat": 40.8130419, "lon": -73.9398538 }, + { "lat": 40.8132784, "lon": -73.9396901 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472976, + "bounds": { + "minlat": 40.8130419, + "minlon": -73.9400143, + "maxlat": 40.8131093, + "maxlon": -73.9398538 + }, + "nodes": [ + 7448919069, + 7448919070 + ], + "geometry": [ + { "lat": 40.8131093, "lon": -73.9400143 }, + { "lat": 40.8130419, "lon": -73.9398538 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472977, + "bounds": { + "minlat": 40.8133342, + "minlon": -73.9398631, + "maxlat": 40.8134002, + "maxlon": -73.9397290 + }, + "nodes": [ + 5481922119, + 7448919068 + ], + "geometry": [ + { "lat": 40.8134002, "lon": -73.9397290 }, + { "lat": 40.8133342, "lon": -73.9398631 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472978, + "bounds": { + "minlat": 40.8132784, + "minlon": -73.9397290, + "maxlat": 40.8134002, + "maxlon": -73.9396901 + }, + "nodes": [ + 7448919071, + 5481922119 + ], + "geometry": [ + { "lat": 40.8132784, "lon": -73.9396901 }, + { "lat": 40.8134002, "lon": -73.9397290 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472979, + "bounds": { + "minlat": 40.8127577, + "minlon": -73.9383504, + "maxlat": 40.8129898, + "maxlon": -73.9381956 + }, + "nodes": [ + 2328595430, + 9559444341, + 7448919073 + ], + "geometry": [ + { "lat": 40.8129898, "lon": -73.9381956 }, + { "lat": 40.8128917, "lon": -73.9382602 }, + { "lat": 40.8127577, "lon": -73.9383504 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472980, + "bounds": { + "minlat": 40.8125598, + "minlon": -73.9386092, + "maxlat": 40.8127435, + "maxlon": -73.9384831 + }, + "nodes": [ + 7448919074, + 7448919075 + ], + "geometry": [ + { "lat": 40.8127435, "lon": -73.9384831 }, + { "lat": 40.8125598, "lon": -73.9386092 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472981, + "bounds": { + "minlat": 40.8124867, + "minlon": -73.9384335, + "maxlat": 40.8126633, + "maxlon": -73.9383101 + }, + "nodes": [ + 7448919077, + 7448919076 + ], + "geometry": [ + { "lat": 40.8124867, "lon": -73.9384335 }, + { "lat": 40.8126633, "lon": -73.9383101 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472982, + "bounds": { + "minlat": 40.8124741, + "minlon": -73.9386092, + "maxlat": 40.8125598, + "maxlon": -73.9384335 + }, + "nodes": [ + 7448919075, + 7448919078, + 7448919077 + ], + "geometry": [ + { "lat": 40.8125598, "lon": -73.9386092 }, + { "lat": 40.8124741, "lon": -73.9385509 }, + { "lat": 40.8124867, "lon": -73.9384335 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472983, + "bounds": { + "minlat": 40.8127435, + "minlon": -73.9384831, + "maxlat": 40.8127577, + "maxlon": -73.9383504 + }, + "nodes": [ + 7448919073, + 7448919074 + ], + "geometry": [ + { "lat": 40.8127577, "lon": -73.9383504 }, + { "lat": 40.8127435, "lon": -73.9384831 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472984, + "bounds": { + "minlat": 40.8126633, + "minlon": -73.9383504, + "maxlat": 40.8127577, + "maxlon": -73.9383101 + }, + "nodes": [ + 7448919076, + 7448919073 + ], + "geometry": [ + { "lat": 40.8126633, "lon": -73.9383101 }, + { "lat": 40.8127577, "lon": -73.9383504 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796472985, + "bounds": { + "minlat": 40.8115026, + "minlon": -73.9410768, + "maxlat": 40.8118041, + "maxlon": -73.9405681 + }, + "nodes": [ + 7448919081, + 9559444348, + 10754692019, + 10754692011, + 10754692017, + 7448919079, + 10754692018, + 10754692012, + 10754692013, + 10754692016, + 7448919080, + 10754692015, + 10754692014, + 9559444347, + 7448919082 + ], + "geometry": [ + { "lat": 40.8117108, "lon": -73.9410768 }, + { "lat": 40.8117758, "lon": -73.9409443 }, + { "lat": 40.8118010, "lon": -73.9408935 }, + { "lat": 40.8118028, "lon": -73.9408884 }, + { "lat": 40.8118039, "lon": -73.9408822 }, + { "lat": 40.8118041, "lon": -73.9408755 }, + { "lat": 40.8118034, "lon": -73.9408700 }, + { "lat": 40.8118016, "lon": -73.9408640 }, + { "lat": 40.8116832, "lon": -73.9405804 }, + { "lat": 40.8116796, "lon": -73.9405752 }, + { "lat": 40.8116750, "lon": -73.9405719 }, + { "lat": 40.8116697, "lon": -73.9405693 }, + { "lat": 40.8116629, "lon": -73.9405681 }, + { "lat": 40.8116190, "lon": -73.9405706 }, + { "lat": 40.8115026, "lon": -73.9405791 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 796472988, + "bounds": { + "minlat": 40.8117368, + "minlon": -73.9386234, + "maxlat": 40.8119782, + "maxlon": -73.9384529 + }, + "nodes": [ + 7448919083, + 7448919084 + ], + "geometry": [ + { "lat": 40.8119782, "lon": -73.9384529 }, + { "lat": 40.8117368, "lon": -73.9386234 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 796472989, + "bounds": { + "minlat": 40.8119180, + "minlon": -73.9384529, + "maxlat": 40.8119782, + "maxlon": -73.9382621 + }, + "nodes": [ + 7448934385, + 9559444342, + 7448919083 + ], + "geometry": [ + { "lat": 40.8119180, "lon": -73.9382621 }, + { "lat": 40.8119602, "lon": -73.9383940 }, + { "lat": 40.8119782, "lon": -73.9384529 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 796472990, + "bounds": { + "minlat": 40.8116372, + "minlon": -73.9386234, + "maxlat": 40.8117368, + "maxlon": -73.9384692 + }, + "nodes": [ + 7448919084, + 9559444343, + 7448934386 + ], + "geometry": [ + { "lat": 40.8117368, "lon": -73.9386234 }, + { "lat": 40.8117079, "lon": -73.9385793 }, + { "lat": 40.8116372, "lon": -73.9384692 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 796472991, + "bounds": { + "minlat": 40.8128773, + "minlon": -73.9402460, + "maxlat": 40.8131093, + "maxlon": -73.9400143 + }, + "nodes": [ + 7448919069, + 7448934387, + 7448919054 + ], + "geometry": [ + { "lat": 40.8131093, "lon": -73.9400143 }, + { "lat": 40.8129862, "lon": -73.9400966 }, + { "lat": 40.8128773, "lon": -73.9402460 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 796474984, + "bounds": { + "minlat": 40.8122979, + "minlon": -73.9402454, + "maxlat": 40.8124497, + "maxlon": -73.9401337 + }, + "nodes": [ + 7448919583, + 7448919057 + ], + "geometry": [ + { "lat": 40.8124497, "lon": -73.9401337 }, + { "lat": 40.8122979, "lon": -73.9402454 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 796501578, + "bounds": { + "minlat": 40.7716696, + "minlon": -73.9859779, + "maxlat": 40.7717401, + "maxlon": -73.9858647 + }, + "nodes": [ + 7449199747, + 7449199748, + 7449199749, + 6479461807, + 6479461806, + 7449199747 + ], + "geometry": [ + { "lat": 40.7717401, "lon": -73.9859535 }, + { "lat": 40.7717064, "lon": -73.9859779 }, + { "lat": 40.7716779, "lon": -73.9859091 }, + { "lat": 40.7716696, "lon": -73.9858891 }, + { "lat": 40.7717032, "lon": -73.9858647 }, + { "lat": 40.7717401, "lon": -73.9859535 } + ], + "tags": { + "access": "private", + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "horse": "no", + "motor_vehicle": "no" + } +}, +{ + "type": "way", + "id": 796755980, + "bounds": { + "minlat": 40.8689276, + "minlon": -73.9071247, + "maxlat": 40.8697049, + "maxlon": -73.9062486 + }, + "nodes": [ + 42719558, + 6852698204, + 2979499763, + 2979499764, + 13185912235, + 42719562 + ], + "geometry": [ + { "lat": 40.8689276, "lon": -73.9071247 }, + { "lat": 40.8690232, "lon": -73.9069914 }, + { "lat": 40.8692069, "lon": -73.9067507 }, + { "lat": 40.8693884, "lon": -73.9065214 }, + { "lat": 40.8695660, "lon": -73.9063382 }, + { "lat": 40.8697049, "lon": -73.9062486 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Heath Avenue", + "name:etymology:wikidata": "Q323758", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Heath", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 796949292, + "bounds": { + "minlat": 40.8107987, + "minlon": -73.9890495, + "maxlat": 40.8109860, + "maxlon": -73.9888660 + }, + "nodes": [ + 103181711, + 7453360238, + 7453360239, + 7453360240, + 7453360241, + 7453360242, + 7453360243, + 103181713 + ], + "geometry": [ + { "lat": 40.8107987, "lon": -73.9889891 }, + { "lat": 40.8108415, "lon": -73.9890411 }, + { "lat": 40.8108669, "lon": -73.9890495 }, + { "lat": 40.8109022, "lon": -73.9890343 }, + { "lat": 40.8109467, "lon": -73.9889915 }, + { "lat": 40.8109762, "lon": -73.9889464 }, + { "lat": 40.8109831, "lon": -73.9889197 }, + { "lat": 40.8109860, "lon": -73.9888660 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 797032454, + "bounds": { + "minlat": 40.7016416, + "minlon": -74.0095048, + "maxlat": 40.7018786, + "maxlon": -74.0092161 + }, + "nodes": [ + 8276468959, + 7454274563, + 11014606992, + 11014606991, + 11014606990, + 11014606993, + 5178357338, + 8276468958, + 11014606989 + ], + "geometry": [ + { "lat": 40.7018786, "lon": -74.0093281 }, + { "lat": 40.7017253, "lon": -74.0092179 }, + { "lat": 40.7017092, "lon": -74.0092161 }, + { "lat": 40.7016961, "lon": -74.0092212 }, + { "lat": 40.7016426, "lon": -74.0093463 }, + { "lat": 40.7016416, "lon": -74.0093691 }, + { "lat": 40.7016489, "lon": -74.0093850 }, + { "lat": 40.7018079, "lon": -74.0094992 }, + { "lat": 40.7018156, "lon": -74.0095048 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 797133877, + "bounds": { + "minlat": 40.8098556, + "minlon": -73.9366338, + "maxlat": 40.8100568, + "maxlon": -73.9364934 + }, + "nodes": [ + 7455120789, + 9559433224, + 7455120790 + ], + "geometry": [ + { "lat": 40.8098556, "lon": -73.9366338 }, + { "lat": 40.8099366, "lon": -73.9365779 }, + { "lat": 40.8100568, "lon": -73.9364934 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 797133878, + "bounds": { + "minlat": 40.8100060, + "minlon": -73.9366284, + "maxlat": 40.8101105, + "maxlon": -73.9363655 + }, + "nodes": [ + 7455120791, + 7455120790, + 7455120792 + ], + "geometry": [ + { "lat": 40.8101105, "lon": -73.9366284 }, + { "lat": 40.8100568, "lon": -73.9364934 }, + { "lat": 40.8100060, "lon": -73.9363655 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 797133945, + "bounds": { + "minlat": 40.8434989, + "minlon": -73.9805648, + "maxlat": 40.8435557, + "maxlon": -73.9804579 + }, + "nodes": [ + 7455134457, + 7455134459 + ], + "geometry": [ + { "lat": 40.8434989, "lon": -73.9804579 }, + { "lat": 40.8435557, "lon": -73.9805648 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 797133946, + "bounds": { + "minlat": 40.8435557, + "minlon": -73.9809184, + "maxlat": 40.8441716, + "maxlon": -73.9802975 + }, + "nodes": [ + 7455134459, + 7455134463, + 7455134460, + 7455134461 + ], + "geometry": [ + { "lat": 40.8435557, "lon": -73.9805648 }, + { "lat": 40.8436848, "lon": -73.9804363 }, + { "lat": 40.8438244, "lon": -73.9802975 }, + { "lat": 40.8441716, "lon": -73.9809184 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 797133947, + "bounds": { + "minlat": 40.8436848, + "minlon": -73.9808809, + "maxlat": 40.8439434, + "maxlon": -73.9804363 + }, + "nodes": [ + 7455134462, + 7455134463 + ], + "geometry": [ + { "lat": 40.8439434, "lon": -73.9808809 }, + { "lat": 40.8436848, "lon": -73.9804363 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 797133948, + "bounds": { + "minlat": 40.8435557, + "minlon": -73.9810853, + "maxlat": 40.8438319, + "maxlon": -73.9805648 + }, + "nodes": [ + 7455134459, + 7455134458 + ], + "geometry": [ + { "lat": 40.8435557, "lon": -73.9805648 }, + { "lat": 40.8438319, "lon": -73.9810853 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 797133950, + "bounds": { + "minlat": 40.8451190, + "minlon": -73.9787297, + "maxlat": 40.8451808, + "maxlon": -73.9783918 + }, + "nodes": [ + 7455134464, + 7455134465, + 7455134466 + ], + "geometry": [ + { "lat": 40.8451808, "lon": -73.9787297 }, + { "lat": 40.8451757, "lon": -73.9784996 }, + { "lat": 40.8451190, "lon": -73.9783918 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 797133954, + "bounds": { + "minlat": 40.8458315, + "minlon": -73.9802843, + "maxlat": 40.8459418, + "maxlon": -73.9800929 + }, + "nodes": [ + 7455134479, + 7455134484 + ], + "geometry": [ + { "lat": 40.8459418, "lon": -73.9802843 }, + { "lat": 40.8458315, "lon": -73.9800929 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 797133955, + "bounds": { + "minlat": 40.8458315, + "minlon": -73.9800929, + "maxlat": 40.8460576, + "maxlon": -73.9797747 + }, + "nodes": [ + 7455134482, + 7455134483, + 10135251988, + 7455134484 + ], + "geometry": [ + { "lat": 40.8460031, "lon": -73.9797747 }, + { "lat": 40.8460576, "lon": -73.9798642 }, + { "lat": 40.8459563, "lon": -73.9799666 }, + { "lat": 40.8458315, "lon": -73.9800929 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 797133956, + "bounds": { + "minlat": 40.8460031, + "minlon": -73.9797747, + "maxlat": 40.8460632, + "maxlon": -73.9797151 + }, + "nodes": [ + 7455134482, + 7455134481 + ], + "geometry": [ + { "lat": 40.8460031, "lon": -73.9797747 }, + { "lat": 40.8460632, "lon": -73.9797151 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 797133957, + "bounds": { + "minlat": 40.8456559, + "minlon": -73.9799305, + "maxlat": 40.8459376, + "maxlon": -73.9793400 + }, + "nodes": [ + 7455134485, + 7455134486, + 7455134487 + ], + "geometry": [ + { "lat": 40.8457675, "lon": -73.9793400 }, + { "lat": 40.8459376, "lon": -73.9796382 }, + { "lat": 40.8456559, "lon": -73.9799305 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 797133958, + "bounds": { + "minlat": 40.8450373, + "minlon": -73.9803055, + "maxlat": 40.8451875, + "maxlon": -73.9800608 + }, + "nodes": [ + 7455134488, + 7455134489 + ], + "geometry": [ + { "lat": 40.8451875, "lon": -73.9803055 }, + { "lat": 40.8450373, "lon": -73.9800608 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 797133959, + "bounds": { + "minlat": 40.8451772, + "minlon": -73.9801761, + "maxlat": 40.8453187, + "maxlon": -73.9799227 + }, + "nodes": [ + 7455134490, + 7455134491 + ], + "geometry": [ + { "lat": 40.8453187, "lon": -73.9801761 }, + { "lat": 40.8451772, "lon": -73.9799227 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 797133960, + "bounds": { + "minlat": 40.8445626, + "minlon": -73.9813232, + "maxlat": 40.8450555, + "maxlon": -73.9807555 + }, + "nodes": [ + 7455134492, + 7455134493, + 7455134494, + 7455134495 + ], + "geometry": [ + { "lat": 40.8445626, "lon": -73.9811697 }, + { "lat": 40.8449612, "lon": -73.9807555 }, + { "lat": 40.8450555, "lon": -73.9809091 }, + { "lat": 40.8446532, "lon": -73.9813232 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 797152815, + "bounds": { + "minlat": 40.8419071, + "minlon": -73.9823780, + "maxlat": 40.8420898, + "maxlon": -73.9820638 + }, + "nodes": [ + 7289786803, + 7289786799 + ], + "geometry": [ + { "lat": 40.8420898, "lon": -73.9823780 }, + { "lat": 40.8419071, "lon": -73.9820638 } + ], + "tags": { + "highway": "service", + "level": "-1" + } +}, +{ + "type": "way", + "id": 797153359, + "bounds": { + "minlat": 40.8437225, + "minlon": -73.9819296, + "maxlat": 40.8441972, + "maxlon": -73.9813705 + }, + "nodes": [ + 7455286784, + 7455310390, + 7455310387, + 7455310385, + 7455310386 + ], + "geometry": [ + { "lat": 40.8437225, "lon": -73.9813705 }, + { "lat": 40.8438075, "lon": -73.9815220 }, + { "lat": 40.8439107, "lon": -73.9817058 }, + { "lat": 40.8440364, "lon": -73.9819296 }, + { "lat": 40.8441972, "lon": -73.9817769 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 797153360, + "bounds": { + "minlat": 40.8438075, + "minlon": -73.9817058, + "maxlat": 40.8440614, + "maxlon": -73.9813748 + }, + "nodes": [ + 7455310387, + 7455310388, + 7455310389, + 7455310390 + ], + "geometry": [ + { "lat": 40.8439107, "lon": -73.9817058 }, + { "lat": 40.8440614, "lon": -73.9815592 }, + { "lat": 40.8439587, "lon": -73.9813748 }, + { "lat": 40.8438075, "lon": -73.9815220 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 797234297, + "bounds": { + "minlat": 40.8251221, + "minlon": -73.9840635, + "maxlat": 40.8254801, + "maxlon": -73.9836289 + }, + "nodes": [ + 7456056076, + 7456056077, + 7456056078, + 7456056079 + ], + "geometry": [ + { "lat": 40.8251221, "lon": -73.9838736 }, + { "lat": 40.8253744, "lon": -73.9836289 }, + { "lat": 40.8254801, "lon": -73.9838193 }, + { "lat": 40.8252284, "lon": -73.9840635 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 797355350, + "bounds": { + "minlat": 40.8038695, + "minlon": -73.9204250, + "maxlat": 40.8041690, + "maxlon": -73.9202053 + }, + "nodes": [ + 7457285512, + 11427299963, + 7457285515, + 7457285513, + 7457285514 + ], + "geometry": [ + { "lat": 40.8038695, "lon": -73.9204250 }, + { "lat": 40.8039710, "lon": -73.9203474 }, + { "lat": 40.8039954, "lon": -73.9203288 }, + { "lat": 40.8040411, "lon": -73.9202990 }, + { "lat": 40.8041690, "lon": -73.9202053 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 797647487, + "bounds": { + "minlat": 40.7533157, + "minlon": -73.9455263, + "maxlat": 40.7535523, + "maxlon": -73.9453399 + }, + "nodes": [ + 7460196697, + 7833495869, + 7460196695 + ], + "geometry": [ + { "lat": 40.7535523, "lon": -73.9453399 }, + { "lat": 40.7534373, "lon": -73.9454305 }, + { "lat": 40.7533157, "lon": -73.9455263 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 797654744, + "bounds": { + "minlat": 40.7002824, + "minlon": -73.9855211, + "maxlat": 40.7005263, + "maxlon": -73.9851906 + }, + "nodes": [ + 1258945392, + 11708944185, + 559865265, + 2034474321 + ], + "geometry": [ + { "lat": 40.7005263, "lon": -73.9855211 }, + { "lat": 40.7004415, "lon": -73.9853993 }, + { "lat": 40.7003418, "lon": -73.9852632 }, + { "lat": 40.7002824, "lon": -73.9851906 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "none|Tillary Street;Manhattan Bridge;Holland Tunnel|Manhattan Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 797654746, + "bounds": { + "minlat": 40.7010057, + "minlon": -73.9868901, + "maxlat": 40.7010513, + "maxlon": -73.9866681 + }, + "nodes": [ + 598054699, + 11708907035, + 559865261 + ], + "geometry": [ + { "lat": 40.7010513, "lon": -73.9868901 }, + { "lat": 40.7010301, "lon": -73.9867820 }, + { "lat": 40.7010057, "lon": -73.9866681 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 797654747, + "bounds": { + "minlat": 40.7011961, + "minlon": -73.9885355, + "maxlat": 40.7013108, + "maxlon": -73.9878070 + }, + "nodes": [ + 598054732, + 598054733 + ], + "geometry": [ + { "lat": 40.7013108, "lon": -73.9885355 }, + { "lat": 40.7011961, "lon": -73.9878070 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 797654748, + "bounds": { + "minlat": 40.7013872, + "minlon": -73.9887527, + "maxlat": 40.7014213, + "maxlon": -73.9885323 + }, + "nodes": [ + 598054737, + 598054730 + ], + "geometry": [ + { "lat": 40.7013872, "lon": -73.9885323 }, + { "lat": 40.7014213, "lon": -73.9887527 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 797654749, + "bounds": { + "minlat": 40.7013453, + "minlon": -73.9895791, + "maxlat": 40.7014716, + "maxlon": -73.9887647 + }, + "nodes": [ + 451074847, + 598054731 + ], + "geometry": [ + { "lat": 40.7014716, "lon": -73.9895791 }, + { "lat": 40.7013453, "lon": -73.9887647 } + ], + "tags": { + "bicycle": "no", + "embankment": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 797654750, + "bounds": { + "minlat": 40.7015379, + "minlon": -73.9898002, + "maxlat": 40.7015666, + "maxlon": -73.9895751 + }, + "nodes": [ + 451019508, + 598054734 + ], + "geometry": [ + { "lat": 40.7015379, "lon": -73.9895751 }, + { "lat": 40.7015666, "lon": -73.9898002 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxheight": "12'4\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 797654751, + "bounds": { + "minlat": 40.7014213, + "minlon": -73.9895751, + "maxlat": 40.7015379, + "maxlon": -73.9887527 + }, + "nodes": [ + 598054730, + 11673036974, + 451019508 + ], + "geometry": [ + { "lat": 40.7014213, "lon": -73.9887527 }, + { "lat": 40.7014872, "lon": -73.9892117 }, + { "lat": 40.7015379, "lon": -73.9895751 } + ], + "tags": { + "bicycle": "no", + "embankment": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxheight": "12'4\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 797654752, + "bounds": { + "minlat": 40.7015666, + "minlon": -73.9899673, + "maxlat": 40.7015856, + "maxlon": -73.9898002 + }, + "nodes": [ + 598054734, + 451019504 + ], + "geometry": [ + { "lat": 40.7015666, "lon": -73.9898002 }, + { "lat": 40.7015856, "lon": -73.9899673 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "Brooklyn-Queens Expressway;Verrazano Narrows Bridge|Brooklyn-Queens Expressway;Verrazano Narrows Bridge|Cadman Plaza West;Brooklyn Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxheight": "12'4\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "turn:lanes": "||slight_right" + } +}, +{ + "type": "way", + "id": 797654753, + "bounds": { + "minlat": 40.7011681, + "minlon": -73.9878070, + "maxlat": 40.7011961, + "maxlon": -73.9876232 + }, + "nodes": [ + 598054733, + 451074853 + ], + "geometry": [ + { "lat": 40.7011961, "lon": -73.9878070 }, + { "lat": 40.7011681, "lon": -73.9876232 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 797654754, + "bounds": { + "minlat": 40.7013108, + "minlon": -73.9887647, + "maxlat": 40.7013453, + "maxlon": -73.9885355 + }, + "nodes": [ + 598054731, + 598054732 + ], + "geometry": [ + { "lat": 40.7013453, "lon": -73.9887647 }, + { "lat": 40.7013108, "lon": -73.9885355 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 797654755, + "bounds": { + "minlat": 40.7006812, + "minlon": -73.9866681, + "maxlat": 40.7010057, + "maxlon": -73.9857925 + }, + "nodes": [ + 559865261, + 11708907034, + 1258945411, + 559865262, + 1258945385, + 1258945523, + 11708907052, + 559865263 + ], + "geometry": [ + { "lat": 40.7010057, "lon": -73.9866681 }, + { "lat": 40.7009829, "lon": -73.9865773 }, + { "lat": 40.7009478, "lon": -73.9864535 }, + { "lat": 40.7008972, "lon": -73.9862996 }, + { "lat": 40.7008444, "lon": -73.9861583 }, + { "lat": 40.7007950, "lon": -73.9860367 }, + { "lat": 40.7007361, "lon": -73.9859090 }, + { "lat": 40.7006812, "lon": -73.9857925 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "turn:lanes": "none|none|right" + } +}, +{ + "type": "way", + "id": 797700477, + "bounds": { + "minlat": 40.8418449, + "minlon": -73.9819988, + "maxlat": 40.8420817, + "maxlon": -73.9815414 + }, + "nodes": [ + 7460714582, + 7460714583, + 7460714584 + ], + "geometry": [ + { "lat": 40.8419712, "lon": -73.9819988 }, + { "lat": 40.8418449, "lon": -73.9817752 }, + { "lat": 40.8420817, "lon": -73.9815414 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 797700478, + "bounds": { + "minlat": 40.8400185, + "minlon": -73.9817772, + "maxlat": 40.8401612, + "maxlon": -73.9816467 + }, + "nodes": [ + 7460714585, + 7460714586 + ], + "geometry": [ + { "lat": 40.8401612, "lon": -73.9816467 }, + { "lat": 40.8400185, "lon": -73.9817772 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 797700479, + "bounds": { + "minlat": 40.8402178, + "minlon": -73.9821238, + "maxlat": 40.8403937, + "maxlon": -73.9817351 + }, + "nodes": [ + 7460714587, + 7460714588, + 7460714589 + ], + "geometry": [ + { "lat": 40.8402178, "lon": -73.9821238 }, + { "lat": 40.8403937, "lon": -73.9819561 }, + { "lat": 40.8402726, "lon": -73.9817351 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 798005986, + "bounds": { + "minlat": 40.8531784, + "minlon": -73.9650154, + "maxlat": 40.8533985, + "maxlon": -73.9647087 + }, + "nodes": [ + 7463681566, + 7463681567, + 7463681568, + 7463681569 + ], + "geometry": [ + { "lat": 40.8532436, "lon": -73.9650154 }, + { "lat": 40.8531784, "lon": -73.9648403 }, + { "lat": 40.8531977, "lon": -73.9647830 }, + { "lat": 40.8533985, "lon": -73.9647087 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 798086207, + "bounds": { + "minlat": 40.8435913, + "minlon": -73.9822405, + "maxlat": 40.8439918, + "maxlon": -73.9815025 + }, + "nodes": [ + 7464374539, + 7464374540 + ], + "geometry": [ + { "lat": 40.8439918, "lon": -73.9822405 }, + { "lat": 40.8435913, "lon": -73.9815025 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 798086208, + "bounds": { + "minlat": 40.8424297, + "minlon": -73.9833861, + "maxlat": 40.8428467, + "maxlon": -73.9826717 + }, + "nodes": [ + 7464374541, + 7464384469, + 7464384461, + 7464374542 + ], + "geometry": [ + { "lat": 40.8424297, "lon": -73.9826717 }, + { "lat": 40.8424693, "lon": -73.9827396 }, + { "lat": 40.8428178, "lon": -73.9833366 }, + { "lat": 40.8428467, "lon": -73.9833861 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 798103158, + "bounds": { + "minlat": 40.7384527, + "minlon": -73.9276289, + "maxlat": 40.7386004, + "maxlon": -73.9272434 + }, + "nodes": [ + 42896805, + 7725582175, + 8443229849, + 10084797148, + 42896812 + ], + "geometry": [ + { "lat": 40.7384527, "lon": -73.9276289 }, + { "lat": 40.7384691, "lon": -73.9275855 }, + { "lat": 40.7385333, "lon": -73.9274169 }, + { "lat": 40.7385541, "lon": -73.9273617 }, + { "lat": 40.7386004, "lon": -73.9272434 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Greenpoint Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 798103159, + "bounds": { + "minlat": 40.7386004, + "minlon": -73.9272434, + "maxlat": 40.7398781, + "maxlon": -73.9243285 + }, + "nodes": [ + 42896812, + 10084797147, + 11155242457, + 10084797151, + 42864383, + 10084797152, + 11155242456, + 10084797155, + 42896819, + 10084797156, + 11155242455, + 11155242452, + 10083107658, + 42880316 + ], + "geometry": [ + { "lat": 40.7386004, "lon": -73.9272434 }, + { "lat": 40.7386526, "lon": -73.9271158 }, + { "lat": 40.7387059, "lon": -73.9269940 }, + { "lat": 40.7390209, "lon": -73.9262733 }, + { "lat": 40.7390734, "lon": -73.9261603 }, + { "lat": 40.7391161, "lon": -73.9260642 }, + { "lat": 40.7391845, "lon": -73.9259072 }, + { "lat": 40.7394810, "lon": -73.9252270 }, + { "lat": 40.7395317, "lon": -73.9251161 }, + { "lat": 40.7395690, "lon": -73.9250341 }, + { "lat": 40.7396239, "lon": -73.9249087 }, + { "lat": 40.7398181, "lon": -73.9244646 }, + { "lat": 40.7398280, "lon": -73.9244418 }, + { "lat": 40.7398781, "lon": -73.9243285 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Greenpoint Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 798103160, + "bounds": { + "minlat": 40.7376895, + "minlon": -73.9272966, + "maxlat": 40.7383317, + "maxlon": -73.9216968 + }, + "nodes": [ + 42910064, + 10084797159, + 8443229857, + 42864385, + 42904606, + 10084797167, + 42910076, + 10084797174, + 42910082, + 10084797171, + 42900636, + 10084797177, + 10160109214, + 42838362, + 10084797175, + 42910092 + ], + "geometry": [ + { "lat": 40.7383317, "lon": -73.9272966 }, + { "lat": 40.7383247, "lon": -73.9271927 }, + { "lat": 40.7383164, "lon": -73.9271245 }, + { "lat": 40.7382279, "lon": -73.9263311 }, + { "lat": 40.7381212, "lon": -73.9254014 }, + { "lat": 40.7380214, "lon": -73.9245554 }, + { "lat": 40.7380119, "lon": -73.9244750 }, + { "lat": 40.7380026, "lon": -73.9243964 }, + { "lat": 40.7379026, "lon": -73.9235457 }, + { "lat": 40.7378089, "lon": -73.9227287 }, + { "lat": 40.7377956, "lon": -73.9226223 }, + { "lat": 40.7377833, "lon": -73.9225172 }, + { "lat": 40.7377781, "lon": -73.9224718 }, + { "lat": 40.7377325, "lon": -73.9220711 }, + { "lat": 40.7376988, "lon": -73.9217693 }, + { "lat": 40.7376895, "lon": -73.9216968 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "50th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 798222129, + "bounds": { + "minlat": 40.7879084, + "minlon": -73.9517278, + "maxlat": 40.7968119, + "maxlon": -73.9452335 + }, + "nodes": [ + 596776546, + 7096507171, + 7803460157, + 596776314, + 7803460147, + 6217820592, + 596776325, + 7781090350, + 6223478653, + 596776386, + 6223478655, + 6223478649, + 596776349, + 6223478651, + 6223478645, + 596775808, + 6223478647, + 6223478641, + 596776201, + 7076060066, + 6223478643, + 6254630502, + 596775819, + 6254630445, + 6254630450, + 596776413, + 6254630421, + 6254630473, + 596775825, + 6254630480, + 6254630478, + 596776224, + 6254630507, + 8735320750, + 5481897033, + 7921574439, + 596776231, + 596776166 + ], + "geometry": [ + { "lat": 40.7968119, "lon": -73.9452335 }, + { "lat": 40.7967478, "lon": -73.9452824 }, + { "lat": 40.7962323, "lon": -73.9456578 }, + { "lat": 40.7961828, "lon": -73.9456927 }, + { "lat": 40.7961189, "lon": -73.9457406 }, + { "lat": 40.7956064, "lon": -73.9461149 }, + { "lat": 40.7955395, "lon": -73.9461625 }, + { "lat": 40.7954782, "lon": -73.9462064 }, + { "lat": 40.7949793, "lon": -73.9465713 }, + { "lat": 40.7949177, "lon": -73.9466169 }, + { "lat": 40.7948612, "lon": -73.9466575 }, + { "lat": 40.7943479, "lon": -73.9470307 }, + { "lat": 40.7942889, "lon": -73.9470750 }, + { "lat": 40.7942334, "lon": -73.9471127 }, + { "lat": 40.7937181, "lon": -73.9474882 }, + { "lat": 40.7936506, "lon": -73.9475371 }, + { "lat": 40.7935997, "lon": -73.9475748 }, + { "lat": 40.7930847, "lon": -73.9479585 }, + { "lat": 40.7930118, "lon": -73.9480120 }, + { "lat": 40.7929560, "lon": -73.9480532 }, + { "lat": 40.7928880, "lon": -73.9481025 }, + { "lat": 40.7923671, "lon": -73.9484778 }, + { "lat": 40.7923046, "lon": -73.9485228 }, + { "lat": 40.7922499, "lon": -73.9485634 }, + { "lat": 40.7917462, "lon": -73.9489344 }, + { "lat": 40.7916755, "lon": -73.9489842 }, + { "lat": 40.7916159, "lon": -73.9490261 }, + { "lat": 40.7911135, "lon": -73.9493957 }, + { "lat": 40.7910474, "lon": -73.9494429 }, + { "lat": 40.7909919, "lon": -73.9494841 }, + { "lat": 40.7904874, "lon": -73.9498515 }, + { "lat": 40.7904213, "lon": -73.9499026 }, + { "lat": 40.7903651, "lon": -73.9499427 }, + { "lat": 40.7896966, "lon": -73.9504222 }, + { "lat": 40.7891636, "lon": -73.9508115 }, + { "lat": 40.7890141, "lon": -73.9509197 }, + { "lat": 40.7885529, "lon": -73.9512551 }, + { "lat": 40.7879084, "lon": -73.9517278 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 798519710, + "bounds": { + "minlat": 40.8453067, + "minlon": -73.9774837, + "maxlat": 40.8457410, + "maxlon": -73.9772012 + }, + "nodes": [ + 7468464592, + 7468464593, + 7468464594 + ], + "geometry": [ + { "lat": 40.8453067, "lon": -73.9774837 }, + { "lat": 40.8456021, "lon": -73.9772012 }, + { "lat": 40.8457410, "lon": -73.9774604 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 798519711, + "bounds": { + "minlat": 40.8451974, + "minlon": -73.9772783, + "maxlat": 40.8454976, + "maxlon": -73.9769879 + }, + "nodes": [ + 7468464595, + 7468464596 + ], + "geometry": [ + { "lat": 40.8451974, "lon": -73.9772783 }, + { "lat": 40.8454976, "lon": -73.9769879 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 798519714, + "bounds": { + "minlat": 40.8449913, + "minlon": -73.9779720, + "maxlat": 40.8452889, + "maxlon": -73.9774503 + }, + "nodes": [ + 7468464621, + 7468464622, + 7468464623 + ], + "geometry": [ + { "lat": 40.8452889, "lon": -73.9774503 }, + { "lat": 40.8449913, "lon": -73.9777309 }, + { "lat": 40.8451261, "lon": -73.9779720 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 798519715, + "bounds": { + "minlat": 40.8447635, + "minlon": -73.9775316, + "maxlat": 40.8451734, + "maxlon": -73.9772330 + }, + "nodes": [ + 7468464624, + 7468464625, + 7468464626 + ], + "geometry": [ + { "lat": 40.8451734, "lon": -73.9772330 }, + { "lat": 40.8448757, "lon": -73.9775316 }, + { "lat": 40.8447635, "lon": -73.9773204 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 798537365, + "bounds": { + "minlat": 40.8421635, + "minlon": -73.9735350, + "maxlat": 40.8423957, + "maxlon": -73.9733283 + }, + "nodes": [ + 7468613301, + 7468613302 + ], + "geometry": [ + { "lat": 40.8421635, "lon": -73.9735350 }, + { "lat": 40.8423957, "lon": -73.9733283 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798621014, + "bounds": { + "minlat": 40.8398506, + "minlon": -73.9812930, + "maxlat": 40.8402195, + "maxlon": -73.9806501 + }, + "nodes": [ + 7469385879, + 7469385880, + 7469385881, + 7469385882 + ], + "geometry": [ + { "lat": 40.8402195, "lon": -73.9806501 }, + { "lat": 40.8398506, "lon": -73.9810139 }, + { "lat": 40.8399561, "lon": -73.9812030 }, + { "lat": 40.8399810, "lon": -73.9812930 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 798621049, + "bounds": { + "minlat": 40.8386334, + "minlon": -73.9819538, + "maxlat": 40.8386727, + "maxlon": -73.9817272 + }, + "nodes": [ + 7469386089, + 7469386090 + ], + "geometry": [ + { "lat": 40.8386727, "lon": -73.9819538 }, + { "lat": 40.8386334, "lon": -73.9817272 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 798621050, + "bounds": { + "minlat": 40.8385458, + "minlon": -73.9817272, + "maxlat": 40.8387905, + "maxlon": -73.9812412 + }, + "nodes": [ + 7469386090, + 7469386091, + 7469386092, + 7469386093, + 7469386094, + 7469386099, + 7469386095, + 4205772575 + ], + "geometry": [ + { "lat": 40.8386334, "lon": -73.9817272 }, + { "lat": 40.8386179, "lon": -73.9817095 }, + { "lat": 40.8386004, "lon": -73.9816795 }, + { "lat": 40.8385458, "lon": -73.9815595 }, + { "lat": 40.8387283, "lon": -73.9813783 }, + { "lat": 40.8387446, "lon": -73.9813305 }, + { "lat": 40.8387535, "lon": -73.9813053 }, + { "lat": 40.8387905, "lon": -73.9812412 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 798621051, + "bounds": { + "minlat": 40.8388314, + "minlon": -73.9816113, + "maxlat": 40.8389371, + "maxlon": -73.9815078 + }, + "nodes": [ + 7469386096, + 13525434309, + 7469386100, + 7469386097 + ], + "geometry": [ + { "lat": 40.8389371, "lon": -73.9815078 }, + { "lat": 40.8388913, "lon": -73.9815526 }, + { "lat": 40.8388695, "lon": -73.9815740 }, + { "lat": 40.8388314, "lon": -73.9816113 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 798621052, + "bounds": { + "minlat": 40.8388314, + "minlon": -73.9816509, + "maxlat": 40.8388405, + "maxlon": -73.9816113 + }, + "nodes": [ + 7469386097, + 7469386101 + ], + "geometry": [ + { "lat": 40.8388314, "lon": -73.9816113 }, + { "lat": 40.8388405, "lon": -73.9816509 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 798621053, + "bounds": { + "minlat": 40.8387446, + "minlon": -73.9815740, + "maxlat": 40.8388695, + "maxlon": -73.9813305 + }, + "nodes": [ + 7469386099, + 7469386100 + ], + "geometry": [ + { "lat": 40.8387446, "lon": -73.9813305 }, + { "lat": 40.8388695, "lon": -73.9815740 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 798621054, + "bounds": { + "minlat": 40.8386334, + "minlon": -73.9817272, + "maxlat": 40.8386654, + "maxlon": -73.9817161 + }, + "nodes": [ + 7469386090, + 11013376368 + ], + "geometry": [ + { "lat": 40.8386334, "lon": -73.9817272 }, + { "lat": 40.8386654, "lon": -73.9817161 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 798621055, + "bounds": { + "minlat": 40.8388405, + "minlon": -73.9818622, + "maxlat": 40.8388890, + "maxlon": -73.9816509 + }, + "nodes": [ + 7469386101, + 7469386098 + ], + "geometry": [ + { "lat": 40.8388405, "lon": -73.9816509 }, + { "lat": 40.8388890, "lon": -73.9818622 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 798863965, + "bounds": { + "minlat": 40.8061994, + "minlon": -73.9379277, + "maxlat": 40.8063541, + "maxlon": -73.9375538 + }, + "nodes": [ + 3627799978, + 10169411291, + 7471385589 + ], + "geometry": [ + { "lat": 40.8063541, "lon": -73.9379277 }, + { "lat": 40.8063266, "lon": -73.9378614 }, + { "lat": 40.8061994, "lon": -73.9375538 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798863966, + "bounds": { + "minlat": 40.8058761, + "minlon": -73.9377814, + "maxlat": 40.8063826, + "maxlon": -73.9374260 + }, + "nodes": [ + 7471385590, + 7471385589, + 7471385591 + ], + "geometry": [ + { "lat": 40.8063826, "lon": -73.9374260 }, + { "lat": 40.8061994, "lon": -73.9375538 }, + { "lat": 40.8058761, "lon": -73.9377814 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798863967, + "bounds": { + "minlat": 40.8063826, + "minlon": -73.9376875, + "maxlat": 40.8064882, + "maxlon": -73.9374260 + }, + "nodes": [ + 7471385592, + 7471385590 + ], + "geometry": [ + { "lat": 40.8064882, "lon": -73.9376875 }, + { "lat": 40.8063826, "lon": -73.9374260 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798863968, + "bounds": { + "minlat": 40.8058649, + "minlon": -73.9380791, + "maxlat": 40.8059431, + "maxlon": -73.9378780 + }, + "nodes": [ + 7471385593, + 7471385594 + ], + "geometry": [ + { "lat": 40.8059431, "lon": -73.9380791 }, + { "lat": 40.8058649, "lon": -73.9378780 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798863969, + "bounds": { + "minlat": 40.8058649, + "minlon": -73.9378780, + "maxlat": 40.8058761, + "maxlon": -73.9377814 + }, + "nodes": [ + 7471385594, + 7471385591 + ], + "geometry": [ + { "lat": 40.8058649, "lon": -73.9378780 }, + { "lat": 40.8058761, "lon": -73.9377814 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798864397, + "bounds": { + "minlat": 40.8108881, + "minlon": -73.9353165, + "maxlat": 40.8109129, + "maxlon": -73.9351109 + }, + "nodes": [ + 7471359472, + 9559433219, + 7471359473 + ], + "geometry": [ + { "lat": 40.8109129, "lon": -73.9353165 }, + { "lat": 40.8108976, "lon": -73.9351894 }, + { "lat": 40.8108881, "lon": -73.9351109 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798864398, + "bounds": { + "minlat": 40.8109129, + "minlon": -73.9353165, + "maxlat": 40.8110388, + "maxlon": -73.9352923 + }, + "nodes": [ + 7471359474, + 7471359472 + ], + "geometry": [ + { "lat": 40.8110388, "lon": -73.9352923 }, + { "lat": 40.8109129, "lon": -73.9353165 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798885899, + "bounds": { + "minlat": 40.8043809, + "minlon": -73.9404126, + "maxlat": 40.8044620, + "maxlon": -73.9402051 + }, + "nodes": [ + 7471678528, + 7471678529 + ], + "geometry": [ + { "lat": 40.8044620, "lon": -73.9404126 }, + { "lat": 40.8043809, "lon": -73.9402051 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798885900, + "bounds": { + "minlat": 40.8043737, + "minlon": -73.9401565, + "maxlat": 40.8044508, + "maxlon": -73.9399674 + }, + "nodes": [ + 7471678532, + 7471678530 + ], + "geometry": [ + { "lat": 40.8044508, "lon": -73.9401565 }, + { "lat": 40.8043737, "lon": -73.9399674 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798885901, + "bounds": { + "minlat": 40.8040570, + "minlon": -73.9401873, + "maxlat": 40.8043737, + "maxlon": -73.9399674 + }, + "nodes": [ + 7471678530, + 7471678531 + ], + "geometry": [ + { "lat": 40.8043737, "lon": -73.9399674 }, + { "lat": 40.8040570, "lon": -73.9401873 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798885902, + "bounds": { + "minlat": 40.8039666, + "minlon": -73.9404933, + "maxlat": 40.8044508, + "maxlon": -73.9401565 + }, + "nodes": [ + 7471678532, + 7471678529, + 5481977592, + 7471678534, + 10170656868, + 7471678533 + ], + "geometry": [ + { "lat": 40.8044508, "lon": -73.9401565 }, + { "lat": 40.8043809, "lon": -73.9402051 }, + { "lat": 40.8042149, "lon": -73.9403206 }, + { "lat": 40.8041334, "lon": -73.9403773 }, + { "lat": 40.8040234, "lon": -73.9404538 }, + { "lat": 40.8039666, "lon": -73.9404933 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798885903, + "bounds": { + "minlat": 40.8040570, + "minlon": -73.9403773, + "maxlat": 40.8041334, + "maxlon": -73.9401873 + }, + "nodes": [ + 7471678534, + 7471678531 + ], + "geometry": [ + { "lat": 40.8041334, "lon": -73.9403773 }, + { "lat": 40.8040570, "lon": -73.9401873 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798885904, + "bounds": { + "minlat": 40.8033424, + "minlon": -73.9409601, + "maxlat": 40.8038722, + "maxlon": -73.9405884 + }, + "nodes": [ + 7471678536, + 7471678540, + 10170656849, + 7471678537 + ], + "geometry": [ + { "lat": 40.8038722, "lon": -73.9405884 }, + { "lat": 40.8034606, "lon": -73.9408716 }, + { "lat": 40.8033949, "lon": -73.9409208 }, + { "lat": 40.8033424, "lon": -73.9409601 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798885905, + "bounds": { + "minlat": 40.8033798, + "minlon": -73.9406782, + "maxlat": 40.8037920, + "maxlon": -73.9403952 + }, + "nodes": [ + 7471678538, + 7471678539 + ], + "geometry": [ + { "lat": 40.8037920, "lon": -73.9403952 }, + { "lat": 40.8033798, "lon": -73.9406782 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798885906, + "bounds": { + "minlat": 40.8033798, + "minlon": -73.9408716, + "maxlat": 40.8034606, + "maxlon": -73.9406782 + }, + "nodes": [ + 7471678540, + 7471678539 + ], + "geometry": [ + { "lat": 40.8034606, "lon": -73.9408716 }, + { "lat": 40.8033798, "lon": -73.9406782 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798885907, + "bounds": { + "minlat": 40.8037920, + "minlon": -73.9405884, + "maxlat": 40.8038722, + "maxlon": -73.9403952 + }, + "nodes": [ + 7471678536, + 7471678538 + ], + "geometry": [ + { "lat": 40.8038722, "lon": -73.9405884 }, + { "lat": 40.8037920, "lon": -73.9403952 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798885910, + "bounds": { + "minlat": 40.8041412, + "minlon": -73.9389528, + "maxlat": 40.8044975, + "maxlon": -73.9386558 + }, + "nodes": [ + 7471678548, + 10170656877, + 7471678549 + ], + "geometry": [ + { "lat": 40.8044975, "lon": -73.9386558 }, + { "lat": 40.8041948, "lon": -73.9389082 }, + { "lat": 40.8041412, "lon": -73.9389528 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 798885911, + "bounds": { + "minlat": 40.8042610, + "minlon": -73.9392412, + "maxlat": 40.8044092, + "maxlon": -73.9391373 + }, + "nodes": [ + 5481977604, + 10170656878, + 7471678550 + ], + "geometry": [ + { "lat": 40.8042610, "lon": -73.9392412 }, + { "lat": 40.8043179, "lon": -73.9392013 }, + { "lat": 40.8044092, "lon": -73.9391373 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 798885912, + "bounds": { + "minlat": 40.8039534, + "minlon": -73.9389562, + "maxlat": 40.8040967, + "maxlon": -73.9388487 + }, + "nodes": [ + 6859831864, + 10170656874, + 6859831868, + 7471678551 + ], + "geometry": [ + { "lat": 40.8040967, "lon": -73.9388487 }, + { "lat": 40.8040417, "lon": -73.9388900 }, + { "lat": 40.8040221, "lon": -73.9389047 }, + { "lat": 40.8039534, "lon": -73.9389562 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798885913, + "bounds": { + "minlat": 40.8023626, + "minlon": -73.9394108, + "maxlat": 40.8026141, + "maxlon": -73.9392377 + }, + "nodes": [ + 5481977609, + 10170656870, + 7471678552 + ], + "geometry": [ + { "lat": 40.8026141, "lon": -73.9392377 }, + { "lat": 40.8025621, "lon": -73.9392735 }, + { "lat": 40.8023626, "lon": -73.9394108 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798885914, + "bounds": { + "minlat": 40.8023626, + "minlon": -73.9399459, + "maxlat": 40.8025789, + "maxlon": -73.9394108 + }, + "nodes": [ + 7471678553, + 7471678552 + ], + "geometry": [ + { "lat": 40.8025789, "lon": -73.9399459 }, + { "lat": 40.8023626, "lon": -73.9394108 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798886458, + "bounds": { + "minlat": 40.8024259, + "minlon": -73.9353576, + "maxlat": 40.8025790, + "maxlon": -73.9352494 + }, + "nodes": [ + 7081737063, + 11214344811, + 7081737064 + ], + "geometry": [ + { "lat": 40.8025790, "lon": -73.9352494 }, + { "lat": 40.8025251, "lon": -73.9352875 }, + { "lat": 40.8024259, "lon": -73.9353576 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798906961, + "bounds": { + "minlat": 40.8046100, + "minlon": -73.9333363, + "maxlat": 40.8049549, + "maxlon": -73.9325023 + }, + "nodes": [ + 7471851442, + 7471851443 + ], + "geometry": [ + { "lat": 40.8049549, "lon": -73.9333363 }, + { "lat": 40.8046100, "lon": -73.9325023 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798906962, + "bounds": { + "minlat": 40.8045105, + "minlon": -73.9333284, + "maxlat": 40.8048262, + "maxlon": -73.9325694 + }, + "nodes": [ + 7471851444, + 7471851445 + ], + "geometry": [ + { "lat": 40.8048262, "lon": -73.9333284 }, + { "lat": 40.8045105, "lon": -73.9325694 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798906963, + "bounds": { + "minlat": 40.8049978, + "minlon": -73.9333391, + "maxlat": 40.8051587, + "maxlon": -73.9332200 + }, + "nodes": [ + 5482291276, + 10170641447, + 7471851446 + ], + "geometry": [ + { "lat": 40.8051587, "lon": -73.9332200 }, + { "lat": 40.8050850, "lon": -73.9332746 }, + { "lat": 40.8049978, "lon": -73.9333391 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798906964, + "bounds": { + "minlat": 40.8048262, + "minlon": -73.9333391, + "maxlat": 40.8049978, + "maxlon": -73.9333284 + }, + "nodes": [ + 7471851446, + 7471851442, + 7471851444 + ], + "geometry": [ + { "lat": 40.8049978, "lon": -73.9333391 }, + { "lat": 40.8049549, "lon": -73.9333363 }, + { "lat": 40.8048262, "lon": -73.9333284 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798906965, + "bounds": { + "minlat": 40.8045105, + "minlon": -73.9325694, + "maxlat": 40.8046100, + "maxlon": -73.9325023 + }, + "nodes": [ + 7471851443, + 7471851445 + ], + "geometry": [ + { "lat": 40.8046100, "lon": -73.9325023 }, + { "lat": 40.8045105, "lon": -73.9325694 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798915733, + "bounds": { + "minlat": 40.8026118, + "minlon": -73.9308128, + "maxlat": 40.8032879, + "maxlon": -73.9306318 + }, + "nodes": [ + 7471942373, + 9153702831, + 7471942378, + 7926756699, + 7926756852, + 9153702832, + 7926756883, + 7471942374, + 9153702834, + 9153702833, + 6515269079 + ], + "geometry": [ + { "lat": 40.8032879, "lon": -73.9308128 }, + { "lat": 40.8032676, "lon": -73.9307796 }, + { "lat": 40.8032394, "lon": -73.9307508 }, + { "lat": 40.8032084, "lon": -73.9307330 }, + { "lat": 40.8029947, "lon": -73.9306420 }, + { "lat": 40.8029445, "lon": -73.9306318 }, + { "lat": 40.8028927, "lon": -73.9306336 }, + { "lat": 40.8028443, "lon": -73.9306437 }, + { "lat": 40.8027999, "lon": -73.9306634 }, + { "lat": 40.8027447, "lon": -73.9307003 }, + { "lat": 40.8026118, "lon": -73.9307963 } + ], + "tags": { + "alt_name:ko": "1번가", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 798930995, + "bounds": { + "minlat": 40.7997705, + "minlon": -73.9306326, + "maxlat": 40.8001234, + "maxlon": -73.9302249 + }, + "nodes": [ + 42438095, + 9153742603, + 7925258888, + 7472040137, + 7925259014, + 7472040138, + 7925258881, + 42438112 + ], + "geometry": [ + { "lat": 40.8001234, "lon": -73.9306326 }, + { "lat": 40.8000880, "lon": -73.9305563 }, + { "lat": 40.8000554, "lon": -73.9304929 }, + { "lat": 40.8000179, "lon": -73.9304352 }, + { "lat": 40.7999588, "lon": -73.9303623 }, + { "lat": 40.7999017, "lon": -73.9303104 }, + { "lat": 40.7998371, "lon": -73.9302623 }, + { "lat": 40.7997705, "lon": -73.9302249 } + ], + "tags": { + "highway": "residential", + "name": "Paladino Avenue", + "name_1": "Pleasant Avenue", + "old_name:1811-1879": "Avenue A", + "old_name:1879-1954": "Pleasant Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 798930996, + "bounds": { + "minlat": 40.7982376, + "minlon": -73.9302249, + "maxlat": 40.7997705, + "maxlon": -73.9296500 + }, + "nodes": [ + 42438112, + 7473604328, + 7925258999, + 7473604349, + 9153742604, + 42438118 + ], + "geometry": [ + { "lat": 40.7997705, "lon": -73.9302249 }, + { "lat": 40.7997111, "lon": -73.9302001 }, + { "lat": 40.7990276, "lon": -73.9299371 }, + { "lat": 40.7986585, "lon": -73.9297946 }, + { "lat": 40.7984570, "lon": -73.9297223 }, + { "lat": 40.7982376, "lon": -73.9296500 } + ], + "tags": { + "highway": "residential", + "name": "Paladino Avenue", + "name_1": "Pleasant Avenue", + "old_name:1811-1879": "Avenue A", + "old_name:1879-1954": "Pleasant Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 798930997, + "bounds": { + "minlat": 40.7970729, + "minlon": -73.9299191, + "maxlat": 40.7982376, + "maxlon": -73.9295440 + }, + "nodes": [ + 42438118, + 42438121, + 7925259035, + 42438124, + 42438126, + 6407227996, + 42438131, + 9906259301, + 42438132, + 42438135, + 9153742605, + 42438137, + 42438142, + 42438145, + 7925258947, + 7925258512, + 42432324 + ], + "geometry": [ + { "lat": 40.7982376, "lon": -73.9296500 }, + { "lat": 40.7980538, "lon": -73.9296032 }, + { "lat": 40.7978931, "lon": -73.9295714 }, + { "lat": 40.7977666, "lon": -73.9295576 }, + { "lat": 40.7976010, "lon": -73.9295440 }, + { "lat": 40.7973252, "lon": -73.9295458 }, + { "lat": 40.7972544, "lon": -73.9295549 }, + { "lat": 40.7972208, "lon": -73.9295614 }, + { "lat": 40.7971883, "lon": -73.9295764 }, + { "lat": 40.7971595, "lon": -73.9295975 }, + { "lat": 40.7971343, "lon": -73.9296255 }, + { "lat": 40.7971087, "lon": -73.9296594 }, + { "lat": 40.7970887, "lon": -73.9296997 }, + { "lat": 40.7970786, "lon": -73.9297395 }, + { "lat": 40.7970731, "lon": -73.9297866 }, + { "lat": 40.7970729, "lon": -73.9298391 }, + { "lat": 40.7970767, "lon": -73.9299191 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Paladino Avenue", + "name_1": "Pleasant Avenue", + "old_name:1811-1879": "Avenue A", + "old_name:1879-1954": "Pleasant Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 798933125, + "bounds": { + "minlat": 40.8002970, + "minlon": -73.9314857, + "maxlat": 40.8004419, + "maxlon": -73.9313837 + }, + "nodes": [ + 7472058110, + 7925258852, + 7472058111 + ], + "geometry": [ + { "lat": 40.8004419, "lon": -73.9313837 }, + { "lat": 40.8003880, "lon": -73.9314231 }, + { "lat": 40.8002970, "lon": -73.9314857 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798933126, + "bounds": { + "minlat": 40.8003285, + "minlon": -73.9318091, + "maxlat": 40.8004726, + "maxlon": -73.9314544 + }, + "nodes": [ + 42438090, + 7925258909, + 7925258614, + 7472058113 + ], + "geometry": [ + { "lat": 40.8004726, "lon": -73.9314544 }, + { "lat": 40.8004188, "lon": -73.9314956 }, + { "lat": 40.8003285, "lon": -73.9315602 }, + { "lat": 40.8004275, "lon": -73.9318091 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798933127, + "bounds": { + "minlat": 40.7998793, + "minlon": -73.9314857, + "maxlat": 40.8002970, + "maxlon": -73.9305071 + }, + "nodes": [ + 7472058111, + 7472058114 + ], + "geometry": [ + { "lat": 40.8002970, "lon": -73.9314857 }, + { "lat": 40.7998793, "lon": -73.9305071 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798933130, + "bounds": { + "minlat": 40.8011530, + "minlon": -73.9334906, + "maxlat": 40.8015633, + "maxlon": -73.9331973 + }, + "nodes": [ + 7472058123, + 9166170273, + 7472058124 + ], + "geometry": [ + { "lat": 40.8015633, "lon": -73.9331973 }, + { "lat": 40.8015109, "lon": -73.9332379 }, + { "lat": 40.8011530, "lon": -73.9334906 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798933132, + "bounds": { + "minlat": 40.7993583, + "minlon": -73.9336991, + "maxlat": 40.7996731, + "maxlon": -73.9329598 + }, + "nodes": [ + 7472058130, + 7472058137, + 13239384174, + 7927318995, + 7472058131 + ], + "geometry": [ + { "lat": 40.7993583, "lon": -73.9329598 }, + { "lat": 40.7993869, "lon": -73.9330730 }, + { "lat": 40.7993995, "lon": -73.9330910 }, + { "lat": 40.7994352, "lon": -73.9331422 }, + { "lat": 40.7996731, "lon": -73.9336991 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 798933133, + "bounds": { + "minlat": 40.7996731, + "minlon": -73.9336991, + "maxlat": 40.7998934, + "maxlon": -73.9335464 + }, + "nodes": [ + 7472058132, + 7472058131 + ], + "geometry": [ + { "lat": 40.7998934, "lon": -73.9335464 }, + { "lat": 40.7996731, "lon": -73.9336991 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799102519, + "bounds": { + "minlat": 40.7997827, + "minlon": -73.9347941, + "maxlat": 40.8007405, + "maxlon": -73.9326483 + }, + "nodes": [ + 3931534871, + 13239384169, + 7473475548, + 7473528872, + 7473475549, + 7473528857, + 8796962490, + 7473528862, + 7473475550, + 11805832618 + ], + "geometry": [ + { "lat": 40.8007405, "lon": -73.9347941 }, + { "lat": 40.8007223, "lon": -73.9347480 }, + { "lat": 40.8006131, "lon": -73.9344720 }, + { "lat": 40.8005905, "lon": -73.9343055 }, + { "lat": 40.8005843, "lon": -73.9341797 }, + { "lat": 40.8005353, "lon": -73.9340871 }, + { "lat": 40.8001993, "lon": -73.9334608 }, + { "lat": 40.7999988, "lon": -73.9330870 }, + { "lat": 40.7998315, "lon": -73.9327571 }, + { "lat": 40.7997827, "lon": -73.9326483 } + ], + "tags": { + "emergency": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 799120486, + "bounds": { + "minlat": 40.7965742, + "minlon": -73.9346539, + "maxlat": 40.7968882, + "maxlon": -73.9344242 + }, + "nodes": [ + 5482321448, + 9372214671, + 9372214667, + 9372214674, + 9372214666, + 8797068779, + 5871240090 + ], + "geometry": [ + { "lat": 40.7968882, "lon": -73.9344242 }, + { "lat": 40.7968357, "lon": -73.9344626 }, + { "lat": 40.7967897, "lon": -73.9344963 }, + { "lat": 40.7967256, "lon": -73.9345432 }, + { "lat": 40.7966871, "lon": -73.9345713 }, + { "lat": 40.7966328, "lon": -73.9346110 }, + { "lat": 40.7965742, "lon": -73.9346539 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799120489, + "bounds": { + "minlat": 40.7954768, + "minlon": -73.9386877, + "maxlat": 40.7957596, + "maxlon": -73.9381036 + }, + "nodes": [ + 4207962274, + 6175905197, + 9166170279, + 7473666321, + 7473666322, + 7473666323 + ], + "geometry": [ + { "lat": 40.7957596, "lon": -73.9386877 }, + { "lat": 40.7957188, "lon": -73.9385894 }, + { "lat": 40.7957077, "lon": -73.9385538 }, + { "lat": 40.7956840, "lon": -73.9384845 }, + { "lat": 40.7955824, "lon": -73.9383557 }, + { "lat": 40.7954768, "lon": -73.9381036 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799120490, + "bounds": { + "minlat": 40.7954768, + "minlon": -73.9381036, + "maxlat": 40.7956738, + "maxlon": -73.9379641 + }, + "nodes": [ + 7473666324, + 7473666323 + ], + "geometry": [ + { "lat": 40.7956738, "lon": -73.9379641 }, + { "lat": 40.7954768, "lon": -73.9381036 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799120491, + "bounds": { + "minlat": 40.7956626, + "minlon": -73.9378501, + "maxlat": 40.7960242, + "maxlon": -73.9376001 + }, + "nodes": [ + 7473666325, + 7924346657, + 7473666326 + ], + "geometry": [ + { "lat": 40.7960242, "lon": -73.9376001 }, + { "lat": 40.7959428, "lon": -73.9376567 }, + { "lat": 40.7956626, "lon": -73.9378501 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799225631, + "bounds": { + "minlat": 40.6999641, + "minlon": -73.9960582, + "maxlat": 40.7004518, + "maxlon": -73.9955046 + }, + "nodes": [ + 451020312, + 11685272858, + 7474533543, + 7474533542, + 11685272857, + 451020314, + 451020319 + ], + "geometry": [ + { "lat": 40.6999641, "lon": -73.9960582 }, + { "lat": 40.7000364, "lon": -73.9959850 }, + { "lat": 40.7001214, "lon": -73.9958956 }, + { "lat": 40.7002514, "lon": -73.9957483 }, + { "lat": 40.7003461, "lon": -73.9956343 }, + { "lat": 40.7004156, "lon": -73.9955524 }, + { "lat": 40.7004518, "lon": -73.9955046 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxheight": "12'9\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_base_2": "Gowanus", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy" + } +}, +{ + "type": "way", + "id": 799228781, + "bounds": { + "minlat": 40.8026544, + "minlon": -73.9514490, + "maxlat": 40.8032757, + "maxlon": -73.9499885 + }, + "nodes": [ + 5481882794, + 5481882790 + ], + "geometry": [ + { "lat": 40.8032757, "lon": -73.9514490 }, + { "lat": 40.8026544, "lon": -73.9499885 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799228782, + "bounds": { + "minlat": 40.8026544, + "minlon": -73.9499885, + "maxlat": 40.8029486, + "maxlon": -73.9497814 + }, + "nodes": [ + 5481882790, + 9508164355, + 10168729761, + 5481882789 + ], + "geometry": [ + { "lat": 40.8026544, "lon": -73.9499885 }, + { "lat": 40.8028549, "lon": -73.9498474 }, + { "lat": 40.8028967, "lon": -73.9498179 }, + { "lat": 40.8029486, "lon": -73.9497814 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799229023, + "bounds": { + "minlat": 40.8017219, + "minlon": -73.9468719, + "maxlat": 40.8020254, + "maxlon": -73.9466585 + }, + "nodes": [ + 7474577916, + 10168729748, + 7474577917 + ], + "geometry": [ + { "lat": 40.8020254, "lon": -73.9466585 }, + { "lat": 40.8017838, "lon": -73.9468284 }, + { "lat": 40.8017219, "lon": -73.9468719 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799229872, + "bounds": { + "minlat": 40.7928461, + "minlon": -73.9393628, + "maxlat": 40.7932827, + "maxlon": -73.9383087 + }, + "nodes": [ + 7474595500, + 7474595504, + 7474595501 + ], + "geometry": [ + { "lat": 40.7932827, "lon": -73.9393628 }, + { "lat": 40.7929980, "lon": -73.9386738 }, + { "lat": 40.7928461, "lon": -73.9383087 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799229873, + "bounds": { + "minlat": 40.7926441, + "minlon": -73.9395586, + "maxlat": 40.7929913, + "maxlon": -73.9387311 + }, + "nodes": [ + 7474595502, + 7474595505, + 7474595503 + ], + "geometry": [ + { "lat": 40.7929913, "lon": -73.9395586 }, + { "lat": 40.7927052, "lon": -73.9388768 }, + { "lat": 40.7926441, "lon": -73.9387311 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799229874, + "bounds": { + "minlat": 40.7927052, + "minlon": -73.9388768, + "maxlat": 40.7931622, + "maxlon": -73.9385600 + }, + "nodes": [ + 5481998068, + 7924346908, + 7474595504, + 5481998060, + 7474595505 + ], + "geometry": [ + { "lat": 40.7931622, "lon": -73.9385600 }, + { "lat": 40.7931101, "lon": -73.9385961 }, + { "lat": 40.7929980, "lon": -73.9386738 }, + { "lat": 40.7928651, "lon": -73.9387662 }, + { "lat": 40.7927052, "lon": -73.9388768 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799229875, + "bounds": { + "minlat": 40.7929913, + "minlon": -73.9395586, + "maxlat": 40.7932827, + "maxlon": -73.9393628 + }, + "nodes": [ + 7474595500, + 5481998061, + 7474595502 + ], + "geometry": [ + { "lat": 40.7932827, "lon": -73.9393628 }, + { "lat": 40.7931505, "lon": -73.9394516 }, + { "lat": 40.7929913, "lon": -73.9395586 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799234248, + "bounds": { + "minlat": 40.7924469, + "minlon": -73.9377232, + "maxlat": 40.7928134, + "maxlon": -73.9368828 + }, + "nodes": [ + 7474626839, + 5481998058, + 8736179630, + 4980851600, + 42456110 + ], + "geometry": [ + { "lat": 40.7924469, "lon": -73.9368828 }, + { "lat": 40.7925337, "lon": -73.9370875 }, + { "lat": 40.7927390, "lon": -73.9375574 }, + { "lat": 40.7927592, "lon": -73.9376089 }, + { "lat": 40.7928134, "lon": -73.9377232 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "name": "East 111th Street", + "name:ru": "Восточная 111-я стрит", + "oneway": "yes", + "parking:condition:left:time_interval": "Tu, Fr 00:00-11:30, 11:00-24:00;Mo, We, Fr, Sa, Su 00:00-24:00", + "parking:condition:right:time_interval": "Mo, Th 00:00-11:30, 13:00-24:00;Tu, We, Fr-Su 00:00-24:00", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 799234250, + "bounds": { + "minlat": 40.7913085, + "minlon": -73.9361233, + "maxlat": 40.7919070, + "maxlon": -73.9355757 + }, + "nodes": [ + 6402593827, + 7785929593, + 9153742609, + 9153742610, + 3786724015, + 9153742611, + 9153742612, + 7785880673, + 9906259302, + 9178958188, + 9906259303, + 596800103 + ], + "geometry": [ + { "lat": 40.7919070, "lon": -73.9356492 }, + { "lat": 40.7918879, "lon": -73.9356114 }, + { "lat": 40.7918699, "lon": -73.9355893 }, + { "lat": 40.7918518, "lon": -73.9355781 }, + { "lat": 40.7918336, "lon": -73.9355757 }, + { "lat": 40.7918189, "lon": -73.9355799 }, + { "lat": 40.7918047, "lon": -73.9355904 }, + { "lat": 40.7917881, "lon": -73.9356125 }, + { "lat": 40.7914933, "lon": -73.9359408 }, + { "lat": 40.7914407, "lon": -73.9359945 }, + { "lat": 40.7913731, "lon": -73.9360619 }, + { "lat": 40.7913085, "lon": -73.9361233 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 799234251, + "bounds": { + "minlat": 40.7895887, + "minlon": -73.9374595, + "maxlat": 40.7913085, + "maxlon": -73.9361233 + }, + "nodes": [ + 596800103, + 9178958187, + 9906259304, + 9906259305, + 7474626841, + 9906259306, + 9178958185, + 9906259307, + 9178958186, + 9906259308, + 7474626840, + 8830405061, + 371216381 + ], + "geometry": [ + { "lat": 40.7913085, "lon": -73.9361233 }, + { "lat": 40.7912222, "lon": -73.9362019 }, + { "lat": 40.7911447, "lon": -73.9362709 }, + { "lat": 40.7910659, "lon": -73.9363380 }, + { "lat": 40.7905333, "lon": -73.9367607 }, + { "lat": 40.7904842, "lon": -73.9368093 }, + { "lat": 40.7904356, "lon": -73.9368591 }, + { "lat": 40.7903842, "lon": -73.9369152 }, + { "lat": 40.7903341, "lon": -73.9369654 }, + { "lat": 40.7902919, "lon": -73.9370030 }, + { "lat": 40.7902322, "lon": -73.9370456 }, + { "lat": 40.7898279, "lon": -73.9373373 }, + { "lat": 40.7895887, "lon": -73.9374595 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 799234252, + "bounds": { + "minlat": 40.7886466, + "minlon": -73.9387740, + "maxlat": 40.7887929, + "maxlon": -73.9384193 + }, + "nodes": [ + 7474626842, + 5482216772 + ], + "geometry": [ + { "lat": 40.7887929, "lon": -73.9387740 }, + { "lat": 40.7886466, "lon": -73.9384193 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799234254, + "bounds": { + "minlat": 40.7915826, + "minlon": -73.9372379, + "maxlat": 40.7917756, + "maxlon": -73.9367215 + }, + "nodes": [ + 42426804, + 7924346982, + 7207886763 + ], + "geometry": [ + { "lat": 40.7917756, "lon": -73.9372379 }, + { "lat": 40.7917482, "lon": -73.9371647 }, + { "lat": 40.7915826, "lon": -73.9367215 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799234255, + "bounds": { + "minlat": 40.7907071, + "minlon": -73.9370361, + "maxlat": 40.7911167, + "maxlon": -73.9368399 + }, + "nodes": [ + 7207886764, + 7207886770 + ], + "geometry": [ + { "lat": 40.7911167, "lon": -73.9370361 }, + { "lat": 40.7907071, "lon": -73.9368399 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 799234256, + "bounds": { + "minlat": 40.7901759, + "minlon": -73.9372494, + "maxlat": 40.7907071, + "maxlon": -73.9368399 + }, + "nodes": [ + 7207886770, + 7207886776 + ], + "geometry": [ + { "lat": 40.7907071, "lon": -73.9368399 }, + { "lat": 40.7901759, "lon": -73.9372494 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 799234257, + "bounds": { + "minlat": 40.7896348, + "minlon": -73.9379977, + "maxlat": 40.7901759, + "maxlon": -73.9372494 + }, + "nodes": [ + 7207886776, + 7207886775, + 7207886774, + 7207886773 + ], + "geometry": [ + { "lat": 40.7901759, "lon": -73.9372494 }, + { "lat": 40.7901138, "lon": -73.9374335 }, + { "lat": 40.7900379, "lon": -73.9376897 }, + { "lat": 40.7896348, "lon": -73.9379977 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 799234258, + "bounds": { + "minlat": 40.7919090, + "minlon": -73.9375566, + "maxlat": 40.7925337, + "maxlon": -73.9370875 + }, + "nodes": [ + 5481998059, + 7924346720, + 7924346641, + 5481998058 + ], + "geometry": [ + { "lat": 40.7919090, "lon": -73.9375566 }, + { "lat": 40.7919801, "lon": -73.9375035 }, + { "lat": 40.7924847, "lon": -73.9371179 }, + { "lat": 40.7925337, "lon": -73.9370875 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799234432, + "bounds": { + "minlat": 40.7907585, + "minlon": -73.9395913, + "maxlat": 40.7910441, + "maxlon": -73.9394608 + }, + "nodes": [ + 7474589657, + 7777426426, + 7779533943, + 8833477384, + 8833471072, + 7474589658 + ], + "geometry": [ + { "lat": 40.7910441, "lon": -73.9394608 }, + { "lat": 40.7909688, "lon": -73.9395117 }, + { "lat": 40.7909499, "lon": -73.9395244 }, + { "lat": 40.7908984, "lon": -73.9395592 }, + { "lat": 40.7908482, "lon": -73.9395303 }, + { "lat": 40.7907585, "lon": -73.9395913 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799235286, + "bounds": { + "minlat": 40.7918918, + "minlon": -73.9432870, + "maxlat": 40.7922857, + "maxlon": -73.9423093 + }, + "nodes": [ + 5481998030, + 8253759219, + 5481998026 + ], + "geometry": [ + { "lat": 40.7922857, "lon": -73.9432870 }, + { "lat": 40.7919678, "lon": -73.9424980 }, + { "lat": 40.7918918, "lon": -73.9423093 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799236379, + "bounds": { + "minlat": 40.8015190, + "minlon": -74.0067960, + "maxlat": 40.8017753, + "maxlon": -74.0066100 + }, + "nodes": [ + 103866670, + 4727867805, + 103866668 + ], + "geometry": [ + { "lat": 40.8017753, "lon": -74.0066100 }, + { "lat": 40.8016772, "lon": -74.0066804 }, + { "lat": 40.8015190, "lon": -74.0067960 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680; Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721; Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093; 07087", + "tiger:zip_right": "07047:07087:07093; 07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 799236520, + "bounds": { + "minlat": 40.7935251, + "minlon": -73.9446858, + "maxlat": 40.7936056, + "maxlon": -73.9444891 + }, + "nodes": [ + 5481998076, + 7474643938 + ], + "geometry": [ + { "lat": 40.7936056, "lon": -73.9446858 }, + { "lat": 40.7935251, "lon": -73.9444891 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799236526, + "bounds": { + "minlat": 40.7943262, + "minlon": -73.9477319, + "maxlat": 40.7944556, + "maxlon": -73.9476411 + }, + "nodes": [ + 6256723732, + 7474643947 + ], + "geometry": [ + { "lat": 40.7944556, "lon": -73.9476411 }, + { "lat": 40.7943262, "lon": -73.9477319 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799236527, + "bounds": { + "minlat": 40.7943262, + "minlon": -73.9480792, + "maxlat": 40.7944729, + "maxlon": -73.9477319 + }, + "nodes": [ + 7474643947, + 7474643948 + ], + "geometry": [ + { "lat": 40.7943262, "lon": -73.9477319 }, + { "lat": 40.7944729, "lon": -73.9480792 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799242913, + "bounds": { + "minlat": 40.7757787, + "minlon": -73.9828530, + "maxlat": 40.7759756, + "maxlon": -73.9827410 + }, + "nodes": [ + 7474730014, + 9914795537, + 7474730002, + 7474730036, + 7474716550 + ], + "geometry": [ + { "lat": 40.7757787, "lon": -73.9828530 }, + { "lat": 40.7758380, "lon": -73.9828071 }, + { "lat": 40.7759110, "lon": -73.9827507 }, + { "lat": 40.7759431, "lon": -73.9827410 }, + { "lat": 40.7759756, "lon": -73.9827664 } + ], + "tags": { + "covered": "no", + "highway": "service", + "service": "driveway", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 799242915, + "bounds": { + "minlat": 40.7759756, + "minlon": -73.9828300, + "maxlat": 40.7760032, + "maxlon": -73.9827664 + }, + "nodes": [ + 7474716550, + 7474729990 + ], + "geometry": [ + { "lat": 40.7759756, "lon": -73.9827664 }, + { "lat": 40.7760032, "lon": -73.9828300 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "driveway", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 799242923, + "bounds": { + "minlat": 40.7758435, + "minlon": -73.9830102, + "maxlat": 40.7760032, + "maxlon": -73.9828300 + }, + "nodes": [ + 7474729990, + 7474730024, + 7474716538, + 9914795538, + 7474716574 + ], + "geometry": [ + { "lat": 40.7760032, "lon": -73.9828300 }, + { "lat": 40.7759999, "lon": -73.9828702 }, + { "lat": 40.7759799, "lon": -73.9829107 }, + { "lat": 40.7759035, "lon": -73.9829664 }, + { "lat": 40.7758435, "lon": -73.9830102 } + ], + "tags": { + "covered": "no", + "highway": "service", + "service": "driveway", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 799242924, + "bounds": { + "minlat": 40.7758883, + "minlon": -73.9831193, + "maxlat": 40.7759570, + "maxlon": -73.9830691 + }, + "nodes": [ + 7474729999, + 9914795539, + 7474716560 + ], + "geometry": [ + { "lat": 40.7758883, "lon": -73.9831193 }, + { "lat": 40.7759483, "lon": -73.9830754 }, + { "lat": 40.7759570, "lon": -73.9830691 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 799403767, + "bounds": { + "minlat": 40.7165240, + "minlon": -73.9833897, + "maxlat": 40.7166900, + "maxlon": -73.9833646 + }, + "nodes": [ + 5173488749, + 8310245587, + 42427340 + ], + "geometry": [ + { "lat": 40.7165240, "lon": -73.9833897 }, + { "lat": 40.7165800, "lon": -73.9833646 }, + { "lat": 40.7166900, "lon": -73.9833893 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Pitt Street", + "name:etymology:wikidata": "Q208663", + "name:ko": "피트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 799403768, + "bounds": { + "minlat": 40.7169647, + "minlon": -73.9822530, + "maxlat": 40.7173440, + "maxlon": -73.9820623 + }, + "nodes": [ + 7476371570, + 5174909928, + 1228990855, + 1228990862 + ], + "geometry": [ + { "lat": 40.7169647, "lon": -73.9822530 }, + { "lat": 40.7170795, "lon": -73.9821973 }, + { "lat": 40.7171834, "lon": -73.9821468 }, + { "lat": 40.7173440, "lon": -73.9820623 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 799407328, + "bounds": { + "minlat": 40.7151586, + "minlon": -73.9833893, + "maxlat": 40.7166900, + "maxlon": -73.9783672 + }, + "nodes": [ + 42427340, + 8310245597, + 42435538, + 8310245599, + 42435541, + 13191020088, + 8310245632, + 42435544, + 42435548, + 8310245615, + 42435550, + 8310245613, + 42435553 + ], + "geometry": [ + { "lat": 40.7166900, "lon": -73.9833893 }, + { "lat": 40.7164597, "lon": -73.9826400 }, + { "lat": 40.7164371, "lon": -73.9825651 }, + { "lat": 40.7164149, "lon": -73.9824922 }, + { "lat": 40.7161801, "lon": -73.9817219 }, + { "lat": 40.7159734, "lon": -73.9810431 }, + { "lat": 40.7159463, "lon": -73.9809541 }, + { "lat": 40.7159233, "lon": -73.9808785 }, + { "lat": 40.7156668, "lon": -73.9800361 }, + { "lat": 40.7154524, "lon": -73.9793321 }, + { "lat": 40.7154169, "lon": -73.9792153 }, + { "lat": 40.7153851, "lon": -73.9791110 }, + { "lat": 40.7151586, "lon": -73.9783672 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 799480719, + "bounds": { + "minlat": 40.7117169, + "minlon": -74.0008524, + "maxlat": 40.7130104, + "maxlon": -74.0008202 + }, + "nodes": [ + 7477036738, + 11396764740, + 11396764739, + 7477036739, + 1730318417, + 11394592647, + 7476968854 + ], + "geometry": [ + { "lat": 40.7117169, "lon": -74.0008524 }, + { "lat": 40.7117422, "lon": -74.0008376 }, + { "lat": 40.7117736, "lon": -74.0008254 }, + { "lat": 40.7118066, "lon": -74.0008202 }, + { "lat": 40.7121755, "lon": -74.0008207 }, + { "lat": 40.7128991, "lon": -74.0008310 }, + { "lat": 40.7130104, "lon": -74.0008309 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 799480720, + "bounds": { + "minlat": 40.7171177, + "minlon": -73.9985901, + "maxlat": 40.7181633, + "maxlon": -73.9979382 + }, + "nodes": [ + 42435451, + 8307641544, + 8307641591, + 9929740886, + 42435456 + ], + "geometry": [ + { "lat": 40.7171177, "lon": -73.9985901 }, + { "lat": 40.7172148, "lon": -73.9985323 }, + { "lat": 40.7181135, "lon": -73.9979696 }, + { "lat": 40.7181156, "lon": -73.9979682 }, + { "lat": 40.7181633, "lon": -73.9979382 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Mulberry Street", + "name:en": "Mulberry Street", + "name:ko": "멀베리 스트리트", + "name:ru": "Малберри-стрит", + "name:zh": "摩比利街", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1934308", + "wikipedia": "en:Mulberry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 799482403, + "bounds": { + "minlat": 40.7137594, + "minlon": -73.9999190, + "maxlat": 40.7140773, + "maxlon": -73.9994469 + }, + "nodes": [ + 7477038792, + 4885973779, + 7477038789, + 11398317054, + 11398317053, + 11398317056, + 7477038790, + 11398317057, + 11398317052, + 9910232445, + 7477038791, + 11398317055, + 4885973778, + 3234401386 + ], + "geometry": [ + { "lat": 40.7140773, "lon": -73.9998632 }, + { "lat": 40.7140164, "lon": -73.9999158 }, + { "lat": 40.7140055, "lon": -73.9999190 }, + { "lat": 40.7139943, "lon": -73.9999180 }, + { "lat": 40.7138082, "lon": -73.9998486 }, + { "lat": 40.7137845, "lon": -73.9998358 }, + { "lat": 40.7137664, "lon": -73.9998147 }, + { "lat": 40.7137594, "lon": -73.9997788 }, + { "lat": 40.7137603, "lon": -73.9997419 }, + { "lat": 40.7137820, "lon": -73.9996337 }, + { "lat": 40.7138037, "lon": -73.9995259 }, + { "lat": 40.7138103, "lon": -73.9995124 }, + { "lat": 40.7138200, "lon": -73.9995031 }, + { "lat": 40.7138796, "lon": -73.9994469 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 799486398, + "bounds": { + "minlat": 40.7121755, + "minlon": -74.0008207, + "maxlat": 40.7129712, + "maxlon": -73.9993671 + }, + "nodes": [ + 1730318420, + 1730318414, + 11399612933, + 11399612934, + 1730318426, + 9925815179, + 1730318428, + 1730318427, + 11399612932, + 11399612931, + 1730318419, + 11399612962, + 11399612961, + 11399612930, + 1730318409, + 11399612929, + 1730318405, + 1730318403, + 11399612928, + 1730318411, + 4885969252, + 1730318417 + ], + "geometry": [ + { "lat": 40.7129712, "lon": -73.9993671 }, + { "lat": 40.7127199, "lon": -73.9995384 }, + { "lat": 40.7127007, "lon": -73.9995579 }, + { "lat": 40.7126821, "lon": -73.9995846 }, + { "lat": 40.7126705, "lon": -73.9996185 }, + { "lat": 40.7125820, "lon": -73.9999784 }, + { "lat": 40.7125587, "lon": -74.0000711 }, + { "lat": 40.7125143, "lon": -74.0002686 }, + { "lat": 40.7124969, "lon": -74.0003304 }, + { "lat": 40.7124687, "lon": -74.0003885 }, + { "lat": 40.7124363, "lon": -74.0004383 }, + { "lat": 40.7124203, "lon": -74.0004553 }, + { "lat": 40.7124044, "lon": -74.0004723 }, + { "lat": 40.7123931, "lon": -74.0004843 }, + { "lat": 40.7123527, "lon": -74.0005203 }, + { "lat": 40.7123018, "lon": -74.0005541 }, + { "lat": 40.7122417, "lon": -74.0006001 }, + { "lat": 40.7122080, "lon": -74.0006397 }, + { "lat": 40.7121839, "lon": -74.0006910 }, + { "lat": 40.7121761, "lon": -74.0007378 }, + { "lat": 40.7121759, "lon": -74.0007564 }, + { "lat": 40.7121755, "lon": -74.0008207 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 799488172, + "bounds": { + "minlat": 40.7126966, + "minlon": -73.9989681, + "maxlat": 40.7129724, + "maxlon": -73.9987898 + }, + "nodes": [ + 11401559269, + 11497504775, + 7477081376, + 11497504770, + 7477081377 + ], + "geometry": [ + { "lat": 40.7129724, "lon": -73.9989681 }, + { "lat": 40.7127783, "lon": -73.9988953 }, + { "lat": 40.7127513, "lon": -73.9988852 }, + { "lat": 40.7127325, "lon": -73.9988524 }, + { "lat": 40.7126966, "lon": -73.9987898 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799492341, + "bounds": { + "minlat": 40.7115917, + "minlon": -74.0031747, + "maxlat": 40.7121025, + "maxlon": -74.0024375 + }, + "nodes": [ + 7477074115, + 9369042132, + 9364519672, + 9364519673, + 7477074116, + 9369042133, + 8262309650, + 9369042203, + 11396764766, + 278639868 + ], + "geometry": [ + { "lat": 40.7120958, "lon": -74.0031747 }, + { "lat": 40.7121025, "lon": -74.0030898 }, + { "lat": 40.7120915, "lon": -74.0030275 }, + { "lat": 40.7120644, "lon": -74.0029601 }, + { "lat": 40.7120262, "lon": -74.0029089 }, + { "lat": 40.7117057, "lon": -74.0026406 }, + { "lat": 40.7116386, "lon": -74.0025838 }, + { "lat": 40.7116194, "lon": -74.0025516 }, + { "lat": 40.7116035, "lon": -74.0024987 }, + { "lat": 40.7115917, "lon": -74.0024375 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 799503339, + "bounds": { + "minlat": 40.7408333, + "minlon": -73.9406821, + "maxlat": 40.7408758, + "maxlon": -73.9404662 + }, + "nodes": [ + 7477262846, + 7477262847 + ], + "geometry": [ + { "lat": 40.7408758, "lon": -73.9406821 }, + { "lat": 40.7408333, "lon": -73.9404662 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "bascule", + "highway": "unclassified", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Hunters Point Bridge", + "oneway": "no", + "operator": "New York City Department of Transportation", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "49th", + "tiger:name_base_1": "Hunters Point", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 799503340, + "bounds": { + "minlat": 40.7407752, + "minlon": -73.9404662, + "maxlat": 40.7408333, + "maxlon": -73.9401590 + }, + "nodes": [ + 7477262847, + 9981973328, + 42832489 + ], + "geometry": [ + { "lat": 40.7408333, "lon": -73.9404662 }, + { "lat": 40.7408148, "lon": -73.9403683 }, + { "lat": 40.7407752, "lon": -73.9401590 } + ], + "tags": { + "bridge": "yes", + "highway": "unclassified", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Hunters Point Bridge", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "49th", + "tiger:name_base_1": "Hunters Point", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 799503342, + "bounds": { + "minlat": 40.7390196, + "minlon": -73.9526108, + "maxlat": 40.7394230, + "maxlon": -73.9524744 + }, + "nodes": [ + 7477262849, + 276317945 + ], + "geometry": [ + { "lat": 40.7390196, "lon": -73.9526108 }, + { "lat": 40.7394230, "lon": -73.9524744 } + ], + "tags": { + "bicycle": "no", + "bridge": "movable", + "bridge:movable": "bascule", + "bridge:name": "Pulaski Bridge", + "foot": "no", + "highway": "primary", + "lanes": "3", + "layer": "1", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "operator": "New York City Department of Transportation", + "surface": "concrete", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 799503343, + "bounds": { + "minlat": 40.7390417, + "minlon": -73.9527244, + "maxlat": 40.7394456, + "maxlon": -73.9525898 + }, + "nodes": [ + 42867013, + 7477262850 + ], + "geometry": [ + { "lat": 40.7394456, "lon": -73.9525898 }, + { "lat": 40.7390417, "lon": -73.9527244 } + ], + "tags": { + "bicycle": "no", + "bridge": "movable", + "bridge:movable": "bascule", + "bridge:name": "Pulaski Bridge", + "foot": "no", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "operator": "New York City Department of Transportation", + "surface": "concrete", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 799503348, + "bounds": { + "minlat": 40.7331605, + "minlon": -73.9406784, + "maxlat": 40.7333837, + "maxlon": -73.9400626 + }, + "nodes": [ + 7477262853, + 7477262852 + ], + "geometry": [ + { "lat": 40.7331605, "lon": -73.9406784 }, + { "lat": 40.7333837, "lon": -73.9400626 } + ], + "tags": { + "bridge": "movable", + "bridge:alt_name": "J. J. Byrne Memorial Bridge", + "bridge:movable": "bascule", + "bridge:name": "Greenpoint Avenue Bridge", + "cycleway": "lane", + "cycleway:both:buffer": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "operator": "New York City Department of Transportation", + "parking:lane:both": "no_parking", + "surface": "concrete", + "wikidata": "Q1028093", + "wikipedia": "en:Greenpoint Avenue Bridge" + } +}, +{ + "type": "way", + "id": 799503349, + "bounds": { + "minlat": 40.7327804, + "minlon": -73.9420147, + "maxlat": 40.7331605, + "maxlon": -73.9406784 + }, + "nodes": [ + 2422186262, + 9982697970, + 9192032656, + 6762361545, + 6762361544, + 2422186259, + 5242718100, + 9192032655, + 9192032654, + 7477262853 + ], + "geometry": [ + { "lat": 40.7327804, "lon": -73.9420147 }, + { "lat": 40.7327969, "lon": -73.9419155 }, + { "lat": 40.7328159, "lon": -73.9418020 }, + { "lat": 40.7328421, "lon": -73.9416794 }, + { "lat": 40.7328753, "lon": -73.9415413 }, + { "lat": 40.7329105, "lon": -73.9414095 }, + { "lat": 40.7329479, "lon": -73.9412810 }, + { "lat": 40.7329899, "lon": -73.9411535 }, + { "lat": 40.7330361, "lon": -73.9410248 }, + { "lat": 40.7331605, "lon": -73.9406784 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Greenpoint Avenue Bridge", + "cycleway": "lane", + "cycleway:both:buffer": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "surface": "concrete", + "wikidata": "Q1028093", + "wikipedia": "en:Greenpoint Avenue Bridge" + } +}, +{ + "type": "way", + "id": 799503350, + "bounds": { + "minlat": 40.7143284, + "minlon": -73.9310692, + "maxlat": 40.7143936, + "maxlon": -73.9308007 + }, + "nodes": [ + 7477262854, + 42484134 + ], + "geometry": [ + { "lat": 40.7143284, "lon": -73.9310692 }, + { "lat": 40.7143936, "lon": -73.9308007 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Metropolitan Avenue Bridge", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk:both": "separate", + "turn:lanes:backward": "through|right", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 799503351, + "bounds": { + "minlat": 40.7142560, + "minlon": -73.9313674, + "maxlat": 40.7143284, + "maxlon": -73.9310692 + }, + "nodes": [ + 7477262855, + 7477262854 + ], + "geometry": [ + { "lat": 40.7142560, "lon": -73.9313674 }, + { "lat": 40.7143284, "lon": -73.9310692 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "bascule", + "bridge:name": "Metropolitan Avenue Bridge", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "operator": "New York City Department of Transportation", + "sidewalk:both": "separate", + "turn:lanes:backward": "through|right", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 799505574, + "bounds": { + "minlat": 40.8738382, + "minlon": -73.9107065, + "maxlat": 40.8740632, + "maxlon": -73.9104120 + }, + "nodes": [ + 7477194670, + 1399181886 + ], + "geometry": [ + { "lat": 40.8738382, "lon": -73.9107065 }, + { "lat": 40.8740632, "lon": -73.9104120 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Broadway Bridge", + "bridge:wikidata": "Q922869", + "bridge:wikipedia": "en:Broadway Bridge (Manhattan)", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q922869", + "wikipedia": "en:Broadway Bridge (Manhattan)" + } +}, +{ + "type": "way", + "id": 799505575, + "bounds": { + "minlat": 40.8733451, + "minlon": -73.9115765, + "maxlat": 40.8739199, + "maxlon": -73.9108286 + }, + "nodes": [ + 7477194671, + 7477194672 + ], + "geometry": [ + { "lat": 40.8739199, "lon": -73.9108286 }, + { "lat": 40.8733451, "lon": -73.9115765 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "lift", + "bridge:name": "Broadway Bridge", + "bridge:wikidata": "Q922869", + "bridge:wikipedia": "en:Broadway Bridge (Manhattan)", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "operator": "New York City Department of Transportation", + "ref": "US 9", + "sidewalk": "separate", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q922869", + "wikipedia": "en:Broadway Bridge (Manhattan)" + } +}, +{ + "type": "way", + "id": 799505579, + "bounds": { + "minlat": 40.8732622, + "minlon": -73.9114601, + "maxlat": 40.8738382, + "maxlon": -73.9107065 + }, + "nodes": [ + 7477194676, + 7477194670 + ], + "geometry": [ + { "lat": 40.8732622, "lon": -73.9114601 }, + { "lat": 40.8738382, "lon": -73.9107065 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "lift", + "bridge:name": "Broadway Bridge", + "bridge:wikidata": "Q922869", + "bridge:wikipedia": "en:Broadway Bridge (Manhattan)", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "operator": "New York City Department of Transportation", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q922869", + "wikipedia": "en:Broadway Bridge (Manhattan)" + } +}, +{ + "type": "way", + "id": 799505583, + "bounds": { + "minlat": 40.8732847, + "minlon": -73.9116550, + "maxlat": 40.8733451, + "maxlon": -73.9115765 + }, + "nodes": [ + 7477194672, + 1544809877 + ], + "geometry": [ + { "lat": 40.8733451, "lon": -73.9115765 }, + { "lat": 40.8732847, "lon": -73.9116550 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Broadway Bridge", + "bridge:wikidata": "Q922869", + "bridge:wikipedia": "en:Broadway Bridge (Manhattan)", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk": "separate", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q922869", + "wikipedia": "en:Broadway Bridge (Manhattan)" + } +}, +{ + "type": "way", + "id": 799505584, + "bounds": { + "minlat": 40.8624493, + "minlon": -73.9144353, + "maxlat": 40.8625887, + "maxlon": -73.9141075 + }, + "nodes": [ + 7477194678, + 42731058 + ], + "geometry": [ + { "lat": 40.8625887, "lon": -73.9144353 }, + { "lat": 40.8624493, "lon": -73.9141075 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "University Heights Bridge", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "University Heights Bridge", + "name:etymology:wikidata": "Q3551341", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q7894726", + "wikipedia": "en:University Heights Bridge" + } +}, +{ + "type": "way", + "id": 799505585, + "bounds": { + "minlat": 40.8629446, + "minlon": -73.9158603, + "maxlat": 40.8631901, + "maxlon": -73.9152782 + }, + "nodes": [ + 42431262, + 7612920600, + 7477194677 + ], + "geometry": [ + { "lat": 40.8631901, "lon": -73.9158603 }, + { "lat": 40.8631790, "lon": -73.9158341 }, + { "lat": 40.8629446, "lon": -73.9152782 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "University Heights Bridge", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "University Heights Bridge", + "name:etymology:wikidata": "Q3551341", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q7894726", + "wikipedia": "en:University Heights Bridge" + } +}, +{ + "type": "way", + "id": 799505586, + "bounds": { + "minlat": 40.8280476, + "minlon": -73.9345792, + "maxlat": 40.8281627, + "maxlon": -73.9330881 + }, + "nodes": [ + 595776445, + 7612920602, + 371337239 + ], + "geometry": [ + { "lat": 40.8281627, "lon": -73.9330881 }, + { "lat": 40.8280522, "lon": -73.9345193 }, + { "lat": 40.8280476, "lon": -73.9345792 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "swing", + "bridge:name": "Macombs Dam Bridge", + "ele": "2", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "Macombs Dam Bridge", + "name:etymology:wikidata": "Q6724819", + "oneway": "no", + "operator": "New York City Department of Transportation", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs Dam", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "turn:lanes:forward": "left;right|right", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 799505587, + "bounds": { + "minlat": 40.8267401, + "minlon": -73.9366137, + "maxlat": 40.8271890, + "maxlon": -73.9355215 + }, + "nodes": [ + 42449139, + 11218598686, + 13535333113, + 13038933152, + 371337226 + ], + "geometry": [ + { "lat": 40.8271890, "lon": -73.9366137 }, + { "lat": 40.8271577, "lon": -73.9365298 }, + { "lat": 40.8271516, "lon": -73.9365152 }, + { "lat": 40.8267734, "lon": -73.9356019 }, + { "lat": 40.8267401, "lon": -73.9355215 } + ], + "tags": { + "highway": "pedestrian", + "name": "West 153rd Street", + "name_1": "West 153 Street", + "surface": "paved", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West 153rd;153rd", + "tiger:name_base_1": "153", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 799505593, + "bounds": { + "minlat": 40.8194940, + "minlon": -73.9336744, + "maxlat": 40.8195220, + "maxlon": -73.9325498 + }, + "nodes": [ + 1669480024, + 42439115 + ], + "geometry": [ + { "lat": 40.8195220, "lon": -73.9325498 }, + { "lat": 40.8194940, "lon": -73.9336744 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "swing", + "bridge:name": "145th Street Bridge", + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "layer": "2", + "maxspeed": "25 mph", + "name": "145th Street Bridge", + "oneway": "no", + "operator": "New York City Department of Transportation", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "145th St", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "wikidata": "Q4549789", + "wikipedia": "en:145th Street Bridge" + } +}, +{ + "type": "way", + "id": 799505594, + "bounds": { + "minlat": 40.8194470, + "minlon": -73.9325498, + "maxlat": 40.8195220, + "maxlon": -73.9316774 + }, + "nodes": [ + 3982552826, + 9166288604, + 6166823893, + 9903127428, + 1669480024 + ], + "geometry": [ + { "lat": 40.8194470, "lon": -73.9316774 }, + { "lat": 40.8195126, "lon": -73.9323820 }, + { "lat": 40.8195180, "lon": -73.9324431 }, + { "lat": 40.8195207, "lon": -73.9324964 }, + { "lat": 40.8195220, "lon": -73.9325498 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "145th Street Bridge", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "layer": "2", + "maxspeed": "25 mph", + "name": "145th Street Bridge", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "145th St", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "wikidata": "Q4549789", + "wikipedia": "en:145th Street Bridge" + } +}, +{ + "type": "way", + "id": 799505597, + "bounds": { + "minlat": 40.8037129, + "minlon": -73.9284613, + "maxlat": 40.8039945, + "maxlon": -73.9278992 + }, + "nodes": [ + 7477194684, + 42761200 + ], + "geometry": [ + { "lat": 40.8037129, "lon": -73.9284613 }, + { "lat": 40.8039945, "lon": -73.9278992 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Willis Avenue Bridge", + "destination:lanes:forward": "Major Deegan Expressway North;Willis Avenue|Major Deegan Expressway North;Willis Avenue|Major Deegan Expressway North;Willis Avenue;Bruckner Expressway East;Bruckner Boulevad|Bruckner Expressway East;Bruckner Boulevard", + "destination:ref:lanes:forward": "I 87 North|I 87 North|I 87 North;I 278 East|I 278 East", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "4", + "layer": "1", + "maxspeed": "30 mph", + "name": "Willis Avenue Bridge", + "oneway": "yes", + "sidewalk": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "surface": "paved", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Willis Avenue", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "toll": "no", + "website": "https://www.nyc.gov/html/dot/html/infrastructure/willis-ave-bridge.shtml", + "wikidata": "Q2581529", + "wikipedia": "en:Willis Avenue Bridge" + } +}, +{ + "type": "way", + "id": 799505598, + "bounds": { + "minlat": 40.8140809, + "minlon": -73.9337093, + "maxlat": 40.8141169, + "maxlon": -73.9325951 + }, + "nodes": [ + 7477281988, + 7477281986 + ], + "geometry": [ + { "lat": 40.8141169, "lon": -73.9337093 }, + { "lat": 40.8140809, "lon": -73.9325951 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "swing", + "bridge:name": "Madison Avenue Bridge", + "hgv": "local", + "highway": "secondary", + "layer": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "operator": "New York City Department of Transportation", + "wikidata": "Q3751430", + "wikipedia": "en:Madison Avenue Bridge" + } +}, +{ + "type": "way", + "id": 799505599, + "bounds": { + "minlat": 40.8141604, + "minlon": -73.9337071, + "maxlat": 40.8141930, + "maxlon": -73.9325884 + }, + "nodes": [ + 7477281985, + 7477281987 + ], + "geometry": [ + { "lat": 40.8141604, "lon": -73.9325884 }, + { "lat": 40.8141930, "lon": -73.9337071 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "swing", + "bridge:name": "Madison Avenue Bridge", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "operator": "New York City Department of Transportation", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY:New York, NY", + "tiger:name_base": "138th:Madison:Madison Avenue", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave:Brg:St", + "tiger:reviewed": "no", + "tiger:zip_left": "10037:10454", + "tiger:zip_right": "10037:10454", + "wikidata": "Q3751430", + "wikipedia": "en:Madison Avenue Bridge" + } +}, +{ + "type": "way", + "id": 799505600, + "bounds": { + "minlat": 40.8141930, + "minlon": -73.9341955, + "maxlat": 40.8142114, + "maxlon": -73.9337071 + }, + "nodes": [ + 7477281987, + 5843576975 + ], + "geometry": [ + { "lat": 40.8141930, "lon": -73.9337071 }, + { "lat": 40.8142114, "lon": -73.9341955 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Madison Avenue Bridge", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "turn:lanes": "left;through|through", + "wikidata": "Q3751430", + "wikipedia": "en:Madison Avenue Bridge" + } +}, +{ + "type": "way", + "id": 799505601, + "bounds": { + "minlat": 40.8140171, + "minlon": -73.9325951, + "maxlat": 40.8140809, + "maxlon": -73.9321061 + }, + "nodes": [ + 7477281986, + 9163775412, + 9163775411, + 371337192, + 6166835726, + 9903106220, + 373762191 + ], + "geometry": [ + { "lat": 40.8140809, "lon": -73.9325951 }, + { "lat": 40.8140713, "lon": -73.9323113 }, + { "lat": 40.8140654, "lon": -73.9322578 }, + { "lat": 40.8140578, "lon": -73.9322187 }, + { "lat": 40.8140420, "lon": -73.9321674 }, + { "lat": 40.8140291, "lon": -73.9321346 }, + { "lat": 40.8140171, "lon": -73.9321061 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Madison Avenue Bridge", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "wikidata": "Q3751430", + "wikipedia": "en:Madison Avenue Bridge" + } +}, +{ + "type": "way", + "id": 799505608, + "bounds": { + "minlat": 40.8073091, + "minlon": -73.9330914, + "maxlat": 40.8077903, + "maxlon": -73.9319782 + }, + "nodes": [ + 7477281993, + 7477281996 + ], + "geometry": [ + { "lat": 40.8077903, "lon": -73.9319782 }, + { "lat": 40.8073091, "lon": -73.9330914 } + ], + "tags": { + "bicycle": "no", + "bridge": "movable", + "bridge:movable": "swing", + "bridge:name": "Third Avenue Bridge", + "destination:lanes:forward": "2nd Avenue|2nd Avenue|Lexington Avenue|Lexington Avenue|FDR Drive South", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "5", + "layer": "2", + "maxspeed": "25 mph", + "name": "Third Avenue Bridge", + "oneway": "yes", + "operator": "New York City Department of Transportation", + "sidewalk:both": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "3rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "toll": "no", + "wikidata": "Q7784766", + "wikipedia": "en:Third Avenue Bridge (New York City)" + } +}, +{ + "type": "way", + "id": 799505611, + "bounds": { + "minlat": 40.8068247, + "minlon": -73.9342092, + "maxlat": 40.8073091, + "maxlon": -73.9330914 + }, + "nodes": [ + 7477281996, + 13370511098, + 371337140 + ], + "geometry": [ + { "lat": 40.8073091, "lon": -73.9330914 }, + { "lat": 40.8068753, "lon": -73.9340924 }, + { "lat": 40.8068247, "lon": -73.9342092 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Third Avenue Bridge", + "destination:lanes:forward": "2nd Avenue|2nd Avenue|Lexington Avenue|Lexington Avenue|FDR Drive South", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "5", + "layer": "2", + "maxspeed": "25 mph", + "name": "Third Avenue Bridge", + "oneway": "yes", + "sidewalk": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "toll": "no", + "turn:lanes": "left|left|right|right|right", + "wikidata": "Q7784766", + "wikipedia": "en:Third Avenue Bridge (New York City)" + } +}, +{ + "type": "way", + "id": 799514724, + "bounds": { + "minlat": 40.7007775, + "minlon": -73.9910857, + "maxlat": 40.7008046, + "maxlon": -73.9908805 + }, + "nodes": [ + 5649546987, + 42519809 + ], + "geometry": [ + { "lat": 40.7008046, "lon": -73.9910857 }, + { "lat": 40.7007775, "lon": -73.9908805 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 799523226, + "bounds": { + "minlat": 40.8797410, + "minlon": -73.9210438, + "maxlat": 40.8799740, + "maxlon": -73.9207652 + }, + "nodes": [ + 7477473197, + 7477473198, + 10130977126 + ], + "geometry": [ + { "lat": 40.8797410, "lon": -73.9207652 }, + { "lat": 40.8799017, "lon": -73.9209101 }, + { "lat": 40.8799740, "lon": -73.9210438 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799523227, + "bounds": { + "minlat": 40.8799948, + "minlon": -73.9207366, + "maxlat": 40.8800478, + "maxlon": -73.9205500 + }, + "nodes": [ + 7477473200, + 7477473201, + 7477473202 + ], + "geometry": [ + { "lat": 40.8799948, "lon": -73.9205500 }, + { "lat": 40.8800391, "lon": -73.9206329 }, + { "lat": 40.8800478, "lon": -73.9207366 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799558306, + "bounds": { + "minlat": 40.8038579, + "minlon": -73.9507771, + "maxlat": 40.8041206, + "maxlon": -73.9505964 + }, + "nodes": [ + 7477877422, + 10187932990, + 7477877424 + ], + "geometry": [ + { "lat": 40.8041206, "lon": -73.9505964 }, + { "lat": 40.8040718, "lon": -73.9506300 }, + { "lat": 40.8038579, "lon": -73.9507771 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799597265, + "bounds": { + "minlat": 40.7449520, + "minlon": -73.9520612, + "maxlat": 40.7452633, + "maxlon": -73.9519490 + }, + "nodes": [ + 7478317589, + 7478317591, + 11211159861, + 7478317590 + ], + "geometry": [ + { "lat": 40.7449520, "lon": -73.9520612 }, + { "lat": 40.7451736, "lon": -73.9519796 }, + { "lat": 40.7452036, "lon": -73.9519694 }, + { "lat": 40.7452633, "lon": -73.9519490 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 799614209, + "bounds": { + "minlat": 40.8269425, + "minlon": -73.9761812, + "maxlat": 40.8270588, + "maxlon": -73.9758851 + }, + "nodes": [ + 7478472956, + 7478472957 + ], + "geometry": [ + { "lat": 40.8269425, "lon": -73.9758851 }, + { "lat": 40.8270588, "lon": -73.9761812 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 799614210, + "bounds": { + "minlat": 40.8265157, + "minlon": -73.9749172, + "maxlat": 40.8267734, + "maxlon": -73.9746487 + }, + "nodes": [ + 7478472958, + 7478472959 + ], + "geometry": [ + { "lat": 40.8265157, "lon": -73.9749172 }, + { "lat": 40.8267734, "lon": -73.9746487 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 799708569, + "bounds": { + "minlat": 40.8459534, + "minlon": -73.9849983, + "maxlat": 40.8460516, + "maxlon": -73.9848370 + }, + "nodes": [ + 7478977978, + 7478977979 + ], + "geometry": [ + { "lat": 40.8459534, "lon": -73.9848370 }, + { "lat": 40.8460516, "lon": -73.9849983 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 799813239, + "bounds": { + "minlat": 40.7109437, + "minlon": -73.9922317, + "maxlat": 40.7121483, + "maxlon": -73.9919892 + }, + "nodes": [ + 42437481, + 7787627742, + 7787627750, + 7787627738, + 7480272384, + 7787627725, + 9530140478 + ], + "geometry": [ + { "lat": 40.7109437, "lon": -73.9919892 }, + { "lat": 40.7110188, "lon": -73.9920153 }, + { "lat": 40.7111839, "lon": -73.9920706 }, + { "lat": 40.7112725, "lon": -73.9920962 }, + { "lat": 40.7113424, "lon": -73.9921090 }, + { "lat": 40.7117251, "lon": -73.9921676 }, + { "lat": 40.7121483, "lon": -73.9922317 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 799813242, + "bounds": { + "minlat": 40.7111223, + "minlon": -73.9925563, + "maxlat": 40.7124636, + "maxlon": -73.9923229 + }, + "nodes": [ + 3212472978, + 8279851249, + 42448440, + 7787627736, + 7787627731, + 482807377, + 11648331580, + 7787627740, + 9530140907 + ], + "geometry": [ + { "lat": 40.7124636, "lon": -73.9925563 }, + { "lat": 40.7123725, "lon": -73.9925438 }, + { "lat": 40.7117454, "lon": -73.9924507 }, + { "lat": 40.7117006, "lon": -73.9924440 }, + { "lat": 40.7114126, "lon": -73.9924021 }, + { "lat": 40.7112906, "lon": -73.9923822 }, + { "lat": 40.7112045, "lon": -73.9923581 }, + { "lat": 40.7111399, "lon": -73.9923316 }, + { "lat": 40.7111223, "lon": -73.9923229 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 799813243, + "bounds": { + "minlat": 40.7121232, + "minlon": -73.9930957, + "maxlat": 40.7124218, + "maxlon": -73.9930486 + }, + "nodes": [ + 7480301992, + 12334332199, + 8279851253, + 3316834250 + ], + "geometry": [ + { "lat": 40.7121232, "lon": -73.9930486 }, + { "lat": 40.7123191, "lon": -73.9930794 }, + { "lat": 40.7123449, "lon": -73.9930835 }, + { "lat": 40.7124218, "lon": -73.9930957 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 799818237, + "bounds": { + "minlat": 40.7227513, + "minlon": -73.9886041, + "maxlat": 40.7228463, + "maxlon": -73.9885922 + }, + "nodes": [ + 7480301867, + 7480301866 + ], + "geometry": [ + { "lat": 40.7227513, "lon": -73.9886041 }, + { "lat": 40.7228463, "lon": -73.9885922 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through||right", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 799819816, + "bounds": { + "minlat": 40.7143695, + "minlon": -73.9928559, + "maxlat": 40.7147010, + "maxlon": -73.9928102 + }, + "nodes": [ + 7480346927, + 8821523713, + 7480346928, + 7480301987 + ], + "geometry": [ + { "lat": 40.7147010, "lon": -73.9928559 }, + { "lat": 40.7145040, "lon": -73.9928271 }, + { "lat": 40.7144440, "lon": -73.9928183 }, + { "lat": 40.7143695, "lon": -73.9928102 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 799825253, + "bounds": { + "minlat": 40.7158245, + "minlon": -73.9950346, + "maxlat": 40.7159115, + "maxlon": -73.9948751 + }, + "nodes": [ + 4477147270, + 11495928470, + 11495928469, + 11495928468, + 4477147269 + ], + "geometry": [ + { "lat": 40.7159115, "lon": -73.9950346 }, + { "lat": 40.7158959, "lon": -73.9950178 }, + { "lat": 40.7158746, "lon": -73.9949828 }, + { "lat": 40.7158491, "lon": -73.9949336 }, + { "lat": 40.7158245, "lon": -73.9948751 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 799825254, + "bounds": { + "minlat": 40.7156470, + "minlon": -73.9948751, + "maxlat": 40.7158245, + "maxlon": -73.9944104 + }, + "nodes": [ + 4477147269, + 7480410407 + ], + "geometry": [ + { "lat": 40.7158245, "lon": -73.9948751 }, + { "lat": 40.7156470, "lon": -73.9944104 } + ], + "tags": { + "cycleway:both": "no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 799833492, + "bounds": { + "minlat": 40.7110869, + "minlon": -73.9874917, + "maxlat": 40.7111275, + "maxlon": -73.9870843 + }, + "nodes": [ + 7071398760, + 7071398763 + ], + "geometry": [ + { "lat": 40.7111275, "lon": -73.9870843 }, + { "lat": 40.7110869, "lon": -73.9874917 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 799833493, + "bounds": { + "minlat": 40.7110581, + "minlon": -73.9910093, + "maxlat": 40.7112524, + "maxlon": -73.9896443 + }, + "nodes": [ + 4487582555, + 12362840772, + 12363017361, + 42436563, + 8372982780, + 8518556687, + 9567864091, + 9663511457 + ], + "geometry": [ + { "lat": 40.7112524, "lon": -73.9896443 }, + { "lat": 40.7112439, "lon": -73.9897281 }, + { "lat": 40.7112394, "lon": -73.9897939 }, + { "lat": 40.7112188, "lon": -73.9899392 }, + { "lat": 40.7112058, "lon": -73.9900289 }, + { "lat": 40.7111502, "lon": -73.9902592 }, + { "lat": 40.7110739, "lon": -73.9908691 }, + { "lat": 40.7110581, "lon": -73.9910093 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Cherry Street", + "name:ko": "체리 스트리트", + "name:ru": "Черри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 799833496, + "bounds": { + "minlat": 40.7105597, + "minlon": -73.9941336, + "maxlat": 40.7106341, + "maxlon": -73.9941270 + }, + "nodes": [ + 5799766717, + 11518199187, + 11518199185, + 5799766718 + ], + "geometry": [ + { "lat": 40.7105597, "lon": -73.9941336 }, + { "lat": 40.7105784, "lon": -73.9941308 }, + { "lat": 40.7106050, "lon": -73.9941270 }, + { "lat": 40.7106341, "lon": -73.9941278 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 800039569, + "bounds": { + "minlat": 40.8333501, + "minlon": -74.0022681, + "maxlat": 40.8336350, + "maxlon": -74.0017150 + }, + "nodes": [ + 7482028598, + 7482028599, + 7482028600, + 7482028601, + 7482028602 + ], + "geometry": [ + { "lat": 40.8336350, "lon": -74.0022681 }, + { "lat": 40.8335581, "lon": -74.0021088 }, + { "lat": 40.8334854, "lon": -74.0020292 }, + { "lat": 40.8334252, "lon": -74.0019001 }, + { "lat": 40.8333501, "lon": -74.0017150 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 800131296, + "bounds": { + "minlat": 40.8393767, + "minlon": -73.9748024, + "maxlat": 40.8394325, + "maxlon": -73.9745729 + }, + "nodes": [ + 5108635199, + 5108635190 + ], + "geometry": [ + { "lat": 40.8394325, "lon": -73.9748024 }, + { "lat": 40.8393767, "lon": -73.9745729 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 800131297, + "bounds": { + "minlat": 40.8395791, + "minlon": -73.9747839, + "maxlat": 40.8400864, + "maxlon": -73.9743348 + }, + "nodes": [ + 5108627369, + 7483002909, + 7483002910 + ], + "geometry": [ + { "lat": 40.8400864, "lon": -73.9743348 }, + { "lat": 40.8400570, "lon": -73.9743774 }, + { "lat": 40.8395791, "lon": -73.9747839 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 800149081, + "bounds": { + "minlat": 40.8386751, + "minlon": -73.9774929, + "maxlat": 40.8388318, + "maxlon": -73.9772529 + }, + "nodes": [ + 7483150830, + 7483150831, + 7483150832 + ], + "geometry": [ + { "lat": 40.8388318, "lon": -73.9774929 }, + { "lat": 40.8387793, "lon": -73.9774126 }, + { "lat": 40.8386751, "lon": -73.9772529 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 800384717, + "bounds": { + "minlat": 40.7259848, + "minlon": -73.9733499, + "maxlat": 40.7264159, + "maxlon": -73.9730207 + }, + "nodes": [ + 4301088429, + 7485403922, + 3716628973 + ], + "geometry": [ + { "lat": 40.7259848, "lon": -73.9733499 }, + { "lat": 40.7260990, "lon": -73.9732372 }, + { "lat": 40.7264159, "lon": -73.9730207 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 800410406, + "bounds": { + "minlat": 40.8494978, + "minlon": -73.9388049, + "maxlat": 40.8496208, + "maxlon": -73.9382023 + }, + "nodes": [ + 7485731543, + 9563821102, + 7485731544, + 7485731545 + ], + "geometry": [ + { "lat": 40.8496208, "lon": -73.9388049 }, + { "lat": 40.8495985, "lon": -73.9387113 }, + { "lat": 40.8495841, "lon": -73.9386506 }, + { "lat": 40.8494978, "lon": -73.9382023 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 800419375, + "bounds": { + "minlat": 40.8195471, + "minlon": -73.9883514, + "maxlat": 40.8196887, + "maxlon": -73.9881836 + }, + "nodes": [ + 7485850873, + 7485850874, + 7485850875 + ], + "geometry": [ + { "lat": 40.8196569, "lon": -73.9881836 }, + { "lat": 40.8196887, "lon": -73.9883104 }, + { "lat": 40.8195471, "lon": -73.9883514 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 800493407, + "bounds": { + "minlat": 40.8372719, + "minlon": -73.9780363, + "maxlat": 40.8374194, + "maxlon": -73.9779955 + }, + "nodes": [ + 7486936707, + 7486936708 + ], + "geometry": [ + { "lat": 40.8374194, "lon": -73.9779955 }, + { "lat": 40.8372719, "lon": -73.9780363 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 800522122, + "bounds": { + "minlat": 40.8333057, + "minlon": -73.9753148, + "maxlat": 40.8334307, + "maxlon": -73.9745248 + }, + "nodes": [ + 6901839938, + 7487268660 + ], + "geometry": [ + { "lat": 40.8334307, "lon": -73.9753148 }, + { "lat": 40.8333057, "lon": -73.9745248 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 800813556, + "bounds": { + "minlat": 40.7120435, + "minlon": -73.9938922, + "maxlat": 40.7123573, + "maxlon": -73.9938426 + }, + "nodes": [ + 7490239500, + 8279851255, + 12336821027, + 7490239501 + ], + "geometry": [ + { "lat": 40.7123573, "lon": -73.9938922 }, + { "lat": 40.7122844, "lon": -73.9938807 }, + { "lat": 40.7122702, "lon": -73.9938785 }, + { "lat": 40.7120435, "lon": -73.9938426 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 800817473, + "bounds": { + "minlat": 40.7227090, + "minlon": -73.9884461, + "maxlat": 40.7232759, + "maxlon": -73.9870950 + }, + "nodes": [ + 42440702, + 4241743153, + 42443513 + ], + "geometry": [ + { "lat": 40.7227090, "lon": -73.9870950 }, + { "lat": 40.7232277, "lon": -73.9883312 }, + { "lat": 40.7232759, "lon": -73.9884461 } + ], + "tags": { + "alt_name:ko": "이스트 1번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 1st Street", + "name:en": "East 1st Street", + "name:ko": "이스트 1st 스트리트", + "name:ru": "Восточная 1-я стрит", + "name_1": "East 1 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 800818413, + "bounds": { + "minlat": 40.7257330, + "minlon": -73.9855905, + "maxlat": 40.7258836, + "maxlon": -73.9852256 + }, + "nodes": [ + 7271387074, + 7271387075 + ], + "geometry": [ + { "lat": 40.7257330, "lon": -73.9852256 }, + { "lat": 40.7258836, "lon": -73.9855905 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 800923647, + "bounds": { + "minlat": 40.8229693, + "minlon": -73.9557438, + "maxlat": 40.8234539, + "maxlon": -73.9555025 + }, + "nodes": [ + 10055059295, + 10055142723, + 7491182050 + ], + "geometry": [ + { "lat": 40.8234539, "lon": -73.9555025 }, + { "lat": 40.8230174, "lon": -73.9557199 }, + { "lat": 40.8229693, "lon": -73.9557438 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "bridge": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "tiger:cfcc": "A45;A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_base_1": "Riverside", + "tiger:name_direction_suffix_1": "E", + "tiger:name_type": "Dr", + "tiger:name_type_1": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 800923648, + "bounds": { + "minlat": 40.8228306, + "minlon": -73.9558115, + "maxlat": 40.8229693, + "maxlon": -73.9557438 + }, + "nodes": [ + 7491182050, + 10055059290 + ], + "geometry": [ + { "lat": 40.8229693, "lon": -73.9557438 }, + { "lat": 40.8228306, "lon": -73.9558115 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "bridge": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "layer": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "note": "clearance on southside is 12'6\"; on north side is 12'8\"", + "oneway": "yes", + "tiger:cfcc": "A45;A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_base_1": "Riverside", + "tiger:name_direction_suffix_1": "E", + "tiger:name_type": "Dr", + "tiger:name_type_1": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 800923650, + "bounds": { + "minlat": 40.8211600, + "minlon": -73.9574917, + "maxlat": 40.8225750, + "maxlon": -73.9559559 + }, + "nodes": [ + 7491182054, + 12952282893, + 10168100446, + 7491182055, + 7491225319, + 10055013018, + 7620631148 + ], + "geometry": [ + { "lat": 40.8225750, "lon": -73.9559559 }, + { "lat": 40.8224693, "lon": -73.9560335 }, + { "lat": 40.8223182, "lon": -73.9561642 }, + { "lat": 40.8222735, "lon": -73.9562099 }, + { "lat": 40.8217442, "lon": -73.9568342 }, + { "lat": 40.8212349, "lon": -73.9574177 }, + { "lat": 40.8211600, "lon": -73.9574917 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 801280630, + "bounds": { + "minlat": 40.7065470, + "minlon": -73.9341406, + "maxlat": 40.7069489, + "maxlon": -73.9337566 + }, + "nodes": [ + 7493940432, + 9755354473, + 7493940436, + 7493940433, + 7493940434, + 7493940435 + ], + "geometry": [ + { "lat": 40.7069489, "lon": -73.9337566 }, + { "lat": 40.7069314, "lon": -73.9338235 }, + { "lat": 40.7069303, "lon": -73.9338280 }, + { "lat": 40.7068450, "lon": -73.9341381 }, + { "lat": 40.7068154, "lon": -73.9341406 }, + { "lat": 40.7065470, "lon": -73.9340624 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 801313142, + "bounds": { + "minlat": 40.8798142, + "minlon": -73.9823310, + "maxlat": 40.8808697, + "maxlon": -73.9809202 + }, + "nodes": [ + 12023838847, + 13525915042, + 7494385343, + 7494385337, + 7494385338, + 7494385342, + 7494385340, + 13525915043, + 7494385341 + ], + "geometry": [ + { "lat": 40.8808697, "lon": -73.9817471 }, + { "lat": 40.8808091, "lon": -73.9818065 }, + { "lat": 40.8807190, "lon": -73.9818949 }, + { "lat": 40.8802735, "lon": -73.9823310 }, + { "lat": 40.8798142, "lon": -73.9814692 }, + { "lat": 40.8802416, "lon": -73.9810501 }, + { "lat": 40.8802763, "lon": -73.9810298 }, + { "lat": 40.8803396, "lon": -73.9809744 }, + { "lat": 40.8804015, "lon": -73.9809202 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 801313143, + "bounds": { + "minlat": 40.8802416, + "minlon": -73.9818949, + "maxlat": 40.8807190, + "maxlon": -73.9810501 + }, + "nodes": [ + 7494385342, + 7494385343 + ], + "geometry": [ + { "lat": 40.8802416, "lon": -73.9810501 }, + { "lat": 40.8807190, "lon": -73.9818949 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 801313144, + "bounds": { + "minlat": 40.8798658, + "minlon": -73.9811968, + "maxlat": 40.8803266, + "maxlon": -73.9807886 + }, + "nodes": [ + 7494385344, + 13525915044, + 7494385345 + ], + "geometry": [ + { "lat": 40.8803266, "lon": -73.9807886 }, + { "lat": 40.8802710, "lon": -73.9808378 }, + { "lat": 40.8798658, "lon": -73.9811968 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 801345662, + "bounds": { + "minlat": 40.8309722, + "minlon": -73.9788448, + "maxlat": 40.8311065, + "maxlon": -73.9785999 + }, + "nodes": [ + 7494742031, + 7494742032 + ], + "geometry": [ + { "lat": 40.8309722, "lon": -73.9785999 }, + { "lat": 40.8311065, "lon": -73.9788448 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801345681, + "bounds": { + "minlat": 40.8309194, + "minlon": -73.9791374, + "maxlat": 40.8310848, + "maxlon": -73.9788207 + }, + "nodes": [ + 9692073852, + 103162155 + ], + "geometry": [ + { "lat": 40.8309194, "lon": -73.9788207 }, + { "lat": 40.8310848, "lon": -73.9791374 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Kensington Drive", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 801345682, + "bounds": { + "minlat": 40.8307977, + "minlon": -73.9792090, + "maxlat": 40.8309523, + "maxlon": -73.9789326 + }, + "nodes": [ + 103162133, + 7494742120, + 9692073851 + ], + "geometry": [ + { "lat": 40.8309523, "lon": -73.9792090 }, + { "lat": 40.8308454, "lon": -73.9790173 }, + { "lat": 40.8307977, "lon": -73.9789326 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Kensington Drive", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 801384579, + "bounds": { + "minlat": 40.8301500, + "minlon": -73.9799015, + "maxlat": 40.8301808, + "maxlon": -73.9796691 + }, + "nodes": [ + 7495121661, + 7495121662, + 7495121663, + 7495121664, + 7495121665, + 7495121666 + ], + "geometry": [ + { "lat": 40.8301585, "lon": -73.9796691 }, + { "lat": 40.8301500, "lon": -73.9797394 }, + { "lat": 40.8301500, "lon": -73.9797792 }, + { "lat": 40.8301593, "lon": -73.9798323 }, + { "lat": 40.8301722, "lon": -73.9798769 }, + { "lat": 40.8301808, "lon": -73.9799015 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 801384580, + "bounds": { + "minlat": 40.8299308, + "minlon": -73.9799015, + "maxlat": 40.8301808, + "maxlon": -73.9797749 + }, + "nodes": [ + 7495121666, + 7495121667, + 7495121668, + 7495121669, + 7495121670, + 4205794190 + ], + "geometry": [ + { "lat": 40.8301808, "lon": -73.9799015 }, + { "lat": 40.8301098, "lon": -73.9798418 }, + { "lat": 40.8300811, "lon": -73.9798181 }, + { "lat": 40.8300438, "lon": -73.9797992 }, + { "lat": 40.8300044, "lon": -73.9797830 }, + { "lat": 40.8299308, "lon": -73.9797749 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 801384581, + "bounds": { + "minlat": 40.8301808, + "minlon": -73.9800779, + "maxlat": 40.8302798, + "maxlon": -73.9799015 + }, + "nodes": [ + 7495121666, + 7495121677, + 7495121674, + 7495121672 + ], + "geometry": [ + { "lat": 40.8301808, "lon": -73.9799015 }, + { "lat": 40.8301893, "lon": -73.9799166 }, + { "lat": 40.8302556, "lon": -73.9800348 }, + { "lat": 40.8302798, "lon": -73.9800779 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 801384582, + "bounds": { + "minlat": 40.8300553, + "minlon": -73.9802428, + "maxlat": 40.8302556, + "maxlon": -73.9800348 + }, + "nodes": [ + 7495121673, + 7495121674 + ], + "geometry": [ + { "lat": 40.8300553, "lon": -73.9802428 }, + { "lat": 40.8302556, "lon": -73.9800348 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 801384583, + "bounds": { + "minlat": 40.8301893, + "minlon": -73.9800779, + "maxlat": 40.8304140, + "maxlon": -73.9798181 + }, + "nodes": [ + 7495121672, + 7495121675, + 7495121676, + 7495121677 + ], + "geometry": [ + { "lat": 40.8302798, "lon": -73.9800779 }, + { "lat": 40.8304140, "lon": -73.9799347 }, + { "lat": 40.8303465, "lon": -73.9798181 }, + { "lat": 40.8301893, "lon": -73.9799166 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 801384591, + "bounds": { + "minlat": 40.8303763, + "minlon": -73.9802482, + "maxlat": 40.8306356, + "maxlon": -73.9799876 + }, + "nodes": [ + 7495121706, + 7495121707 + ], + "geometry": [ + { "lat": 40.8306356, "lon": -73.9799876 }, + { "lat": 40.8303763, "lon": -73.9802482 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801410966, + "bounds": { + "minlat": 40.8013912, + "minlon": -73.9314819, + "maxlat": 40.8017651, + "maxlon": -73.9312131 + }, + "nodes": [ + 7495360334, + 7929465192, + 7641820943 + ], + "geometry": [ + { "lat": 40.8013912, "lon": -73.9314819 }, + { "lat": 40.8016466, "lon": -73.9312979 }, + { "lat": 40.8017651, "lon": -73.9312131 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:both": "no", + "sidewalk:both": "separate", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 801411751, + "bounds": { + "minlat": 40.8003256, + "minlon": -73.9286436, + "maxlat": 40.8007378, + "maxlon": -73.9276635 + }, + "nodes": [ + 7495347010, + 7495347012 + ], + "geometry": [ + { "lat": 40.8003256, "lon": -73.9276635 }, + { "lat": 40.8007378, "lon": -73.9286436 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "lift", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "hgv": "local", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "no", + "toll": "no", + "unsigned_ref": "NY 900G", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 801411752, + "bounds": { + "minlat": 40.7996693, + "minlon": -73.9277440, + "maxlat": 40.8002495, + "maxlon": -73.9263711 + }, + "nodes": [ + 7495347011, + 277481436 + ], + "geometry": [ + { "lat": 40.8002495, "lon": -73.9277440 }, + { "lat": 40.7996693, "lon": -73.9263711 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "destination:lanes": "Bronx;Randalls Island|Queens|Queens", + "hgv": "local", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxheight": "13'5\"", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "no", + "toll": "yes", + "turn:lanes": "|right|right", + "unsigned_ref": "NY 900G", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 801411753, + "bounds": { + "minlat": 40.8007378, + "minlon": -73.9291874, + "maxlat": 40.8009666, + "maxlon": -73.9286436 + }, + "nodes": [ + 7495347012, + 277482762 + ], + "geometry": [ + { "lat": 40.8007378, "lon": -73.9286436 }, + { "lat": 40.8009666, "lon": -73.9291874 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "destination:lanes": "Franklin D. Roosevelt River Drive South|Franklin D. Roosevelt River Drive South;125th Street;2nd Avenue|125th Street;2nd Avenue;Harlem River Drive North", + "hgv": "local", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "toll": "no", + "turn:lanes": "|through;slight_right|slight_right", + "unsigned_ref": "NY 900G", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 801411754, + "bounds": { + "minlat": 40.8002495, + "minlon": -73.9286997, + "maxlat": 40.8006541, + "maxlon": -73.9277440 + }, + "nodes": [ + 7495347013, + 7495347011 + ], + "geometry": [ + { "lat": 40.8006541, "lon": -73.9286997 }, + { "lat": 40.8002495, "lon": -73.9277440 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "lift", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "hgv": "local", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "maxheight": "13'5\"", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "no", + "toll": "yes", + "unsigned_ref": "NY 900G", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 801544809, + "bounds": { + "minlat": 40.8112134, + "minlon": -73.9992779, + "maxlat": 40.8113807, + "maxlon": -73.9988399 + }, + "nodes": [ + 7497044171, + 7497044172 + ], + "geometry": [ + { "lat": 40.8113807, "lon": -73.9992779 }, + { "lat": 40.8112134, "lon": -73.9988399 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 801581401, + "bounds": { + "minlat": 40.8140946, + "minlon": -73.9907685, + "maxlat": 40.8143630, + "maxlon": -73.9906361 + }, + "nodes": [ + 7497403073, + 7497403074 + ], + "geometry": [ + { "lat": 40.8143630, "lon": -73.9906361 }, + { "lat": 40.8140946, "lon": -73.9907685 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 801581402, + "bounds": { + "minlat": 40.8136467, + "minlon": -73.9903825, + "maxlat": 40.8140637, + "maxlon": -73.9900987 + }, + "nodes": [ + 7497403080, + 7497403079, + 7497403078, + 7497403077, + 7497403076, + 7497403075 + ], + "geometry": [ + { "lat": 40.8140451, "lon": -73.9900987 }, + { "lat": 40.8140637, "lon": -73.9901974 }, + { "lat": 40.8140499, "lon": -73.9902496 }, + { "lat": 40.8137224, "lon": -73.9903825 }, + { "lat": 40.8136928, "lon": -73.9903695 }, + { "lat": 40.8136467, "lon": -73.9902397 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 801678971, + "bounds": { + "minlat": 40.7124479, + "minlon": -73.9797580, + "maxlat": 40.7125159, + "maxlon": -73.9785063 + }, + "nodes": [ + 5487791440, + 7498432135 + ], + "geometry": [ + { "lat": 40.7124479, "lon": -73.9797580 }, + { "lat": 40.7125159, "lon": -73.9785063 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801680803, + "bounds": { + "minlat": 40.7136979, + "minlon": -73.9796274, + "maxlat": 40.7138456, + "maxlon": -73.9795320 + }, + "nodes": [ + 7499043385, + 9297579600, + 4492750460, + 42437786 + ], + "geometry": [ + { "lat": 40.7136979, "lon": -73.9796274 }, + { "lat": 40.7137298, "lon": -73.9795958 }, + { "lat": 40.7137646, "lon": -73.9795700 }, + { "lat": 40.7138456, "lon": -73.9795320 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 801683551, + "bounds": { + "minlat": 40.7144672, + "minlon": -73.9790295, + "maxlat": 40.7147396, + "maxlon": -73.9781215 + }, + "nodes": [ + 7498470460, + 7498470461 + ], + "geometry": [ + { "lat": 40.7147396, "lon": -73.9790295 }, + { "lat": 40.7144672, "lon": -73.9781215 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801683553, + "bounds": { + "minlat": 40.7144672, + "minlon": -73.9781215, + "maxlat": 40.7144947, + "maxlon": -73.9778226 + }, + "nodes": [ + 7498470461, + 5377706604 + ], + "geometry": [ + { "lat": 40.7144672, "lon": -73.9781215 }, + { "lat": 40.7144947, "lon": -73.9778226 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801714801, + "bounds": { + "minlat": 40.8315290, + "minlon": -73.9821273, + "maxlat": 40.8317677, + "maxlon": -73.9819106 + }, + "nodes": [ + 7498899404, + 7498899405, + 7498899406, + 7498899407, + 7498899408 + ], + "geometry": [ + { "lat": 40.8317677, "lon": -73.9819106 }, + { "lat": 40.8316976, "lon": -73.9819637 }, + { "lat": 40.8316340, "lon": -73.9820616 }, + { "lat": 40.8315848, "lon": -73.9821120 }, + { "lat": 40.8315290, "lon": -73.9821273 } + ], + "tags": { + "covered": "no", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 801741751, + "bounds": { + "minlat": 40.7122675, + "minlon": -73.9800360, + "maxlat": 40.7129701, + "maxlon": -73.9799454 + }, + "nodes": [ + 5721705550, + 8310246413, + 7499128088 + ], + "geometry": [ + { "lat": 40.7129701, "lon": -73.9800360 }, + { "lat": 40.7123264, "lon": -73.9799530 }, + { "lat": 40.7122675, "lon": -73.9799454 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801743403, + "bounds": { + "minlat": 40.8315762, + "minlon": -73.9834418, + "maxlat": 40.8321044, + "maxlon": -73.9829478 + }, + "nodes": [ + 7499148992, + 7499148993, + 7499148994, + 7499149006, + 7499148995, + 7499148996, + 7499148997, + 7499148998, + 7499148999, + 7499149000, + 7499149001, + 7499149002, + 7499149003, + 7499149098, + 7499149004, + 7499149005 + ], + "geometry": [ + { "lat": 40.8321044, "lon": -73.9834418 }, + { "lat": 40.8320979, "lon": -73.9833930 }, + { "lat": 40.8320962, "lon": -73.9833344 }, + { "lat": 40.8320956, "lon": -73.9832790 }, + { "lat": 40.8320954, "lon": -73.9832649 }, + { "lat": 40.8320897, "lon": -73.9831965 }, + { "lat": 40.8320823, "lon": -73.9831379 }, + { "lat": 40.8320642, "lon": -73.9830868 }, + { "lat": 40.8320313, "lon": -73.9830260 }, + { "lat": 40.8319911, "lon": -73.9829739 }, + { "lat": 40.8319615, "lon": -73.9829565 }, + { "lat": 40.8319286, "lon": -73.9829478 }, + { "lat": 40.8318949, "lon": -73.9829489 }, + { "lat": 40.8318761, "lon": -73.9829560 }, + { "lat": 40.8316320, "lon": -73.9830477 }, + { "lat": 40.8315762, "lon": -73.9830999 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 801743404, + "bounds": { + "minlat": 40.8320956, + "minlon": -73.9832790, + "maxlat": 40.8322951, + "maxlon": -73.9831748 + }, + "nodes": [ + 7499149006, + 7499149007, + 7499149008 + ], + "geometry": [ + { "lat": 40.8320956, "lon": -73.9832790 }, + { "lat": 40.8322178, "lon": -73.9832432 }, + { "lat": 40.8322951, "lon": -73.9831748 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 801743419, + "bounds": { + "minlat": 40.8318096, + "minlon": -73.9829560, + "maxlat": 40.8318761, + "maxlon": -73.9825520 + }, + "nodes": [ + 7499149098, + 7499149099 + ], + "geometry": [ + { "lat": 40.8318761, "lon": -73.9829560 }, + { "lat": 40.8318096, "lon": -73.9825520 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 801756857, + "bounds": { + "minlat": 40.7123174, + "minlon": -73.9857043, + "maxlat": 40.7123674, + "maxlon": -73.9849081 + }, + "nodes": [ + 7499234455, + 8718166993, + 8233443653, + 11038072110, + 42438523 + ], + "geometry": [ + { "lat": 40.7123174, "lon": -73.9857043 }, + { "lat": 40.7123595, "lon": -73.9851330 }, + { "lat": 40.7123635, "lon": -73.9850793 }, + { "lat": 40.7123655, "lon": -73.9849920 }, + { "lat": 40.7123674, "lon": -73.9849081 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801761945, + "bounds": { + "minlat": 40.7155743, + "minlon": -73.9853831, + "maxlat": 40.7157427, + "maxlon": -73.9853029 + }, + "nodes": [ + 7499271058, + 7238376721, + 7499271064, + 7499271059 + ], + "geometry": [ + { "lat": 40.7157427, "lon": -73.9853029 }, + { "lat": 40.7156753, "lon": -73.9853345 }, + { "lat": 40.7156681, "lon": -73.9853379 }, + { "lat": 40.7155743, "lon": -73.9853831 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801761946, + "bounds": { + "minlat": 40.7157427, + "minlon": -73.9855846, + "maxlat": 40.7158291, + "maxlon": -73.9853029 + }, + "nodes": [ + 7499271060, + 7499271063, + 7499271058 + ], + "geometry": [ + { "lat": 40.7158291, "lon": -73.9855846 }, + { "lat": 40.7157647, "lon": -73.9853746 }, + { "lat": 40.7157427, "lon": -73.9853029 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801761947, + "bounds": { + "minlat": 40.7158931, + "minlon": -73.9855195, + "maxlat": 40.7159567, + "maxlon": -73.9853110 + }, + "nodes": [ + 7499271061, + 7499271062 + ], + "geometry": [ + { "lat": 40.7159567, "lon": -73.9855195 }, + { "lat": 40.7158931, "lon": -73.9853110 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801761948, + "bounds": { + "minlat": 40.7158291, + "minlon": -73.9855846, + "maxlat": 40.7159567, + "maxlon": -73.9855195 + }, + "nodes": [ + 7499271061, + 7499271060 + ], + "geometry": [ + { "lat": 40.7159567, "lon": -73.9855195 }, + { "lat": 40.7158291, "lon": -73.9855846 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801761949, + "bounds": { + "minlat": 40.7157647, + "minlon": -73.9853746, + "maxlat": 40.7158931, + "maxlon": -73.9853110 + }, + "nodes": [ + 7499271062, + 7499271063 + ], + "geometry": [ + { "lat": 40.7158931, "lon": -73.9853110 }, + { "lat": 40.7157647, "lon": -73.9853746 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801764674, + "bounds": { + "minlat": 40.7145093, + "minlon": -73.9847081, + "maxlat": 40.7147078, + "maxlon": -73.9824653 + }, + "nodes": [ + 42433554, + 5804713722, + 5481948052, + 8270654737, + 8270654725, + 8270654736, + 11038072379, + 11038072380, + 4375208206 + ], + "geometry": [ + { "lat": 40.7145093, "lon": -73.9847081 }, + { "lat": 40.7145153, "lon": -73.9845407 }, + { "lat": 40.7145372, "lon": -73.9842698 }, + { "lat": 40.7146391, "lon": -73.9829801 }, + { "lat": 40.7146609, "lon": -73.9827449 }, + { "lat": 40.7146773, "lon": -73.9826074 }, + { "lat": 40.7146862, "lon": -73.9825391 }, + { "lat": 40.7146957, "lon": -73.9824978 }, + { "lat": 40.7147078, "lon": -73.9824653 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "note": "This segment is oneway as of 2019 STOP CHANGING IT", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 801775867, + "bounds": { + "minlat": 40.8330116, + "minlon": -73.9839041, + "maxlat": 40.8332213, + "maxlon": -73.9838131 + }, + "nodes": [ + 7499421520, + 7499421521 + ], + "geometry": [ + { "lat": 40.8330116, "lon": -73.9839041 }, + { "lat": 40.8332213, "lon": -73.9838131 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 801918545, + "bounds": { + "minlat": 40.7171005, + "minlon": -73.9829775, + "maxlat": 40.7174266, + "maxlon": -73.9826968 + }, + "nodes": [ + 4300940094, + 7500756893, + 7500756894, + 7500756896, + 8236341514, + 7500756895, + 7500756892 + ], + "geometry": [ + { "lat": 40.7171005, "lon": -73.9826968 }, + { "lat": 40.7171582, "lon": -73.9828369 }, + { "lat": 40.7171848, "lon": -73.9828819 }, + { "lat": 40.7172169, "lon": -73.9829138 }, + { "lat": 40.7172427, "lon": -73.9829333 }, + { "lat": 40.7172854, "lon": -73.9829552 }, + { "lat": 40.7174266, "lon": -73.9829775 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "parking:both": "no", + "surface": "asphalt", + "turn": "right", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 802055636, + "bounds": { + "minlat": 40.7522423, + "minlon": -73.9994670, + "maxlat": 40.7523081, + "maxlon": -73.9994189 + }, + "nodes": [ + 7502121832, + 10171326403, + 427841062 + ], + "geometry": [ + { "lat": 40.7523081, "lon": -73.9994189 }, + { "lat": 40.7522952, "lon": -73.9994279 }, + { "lat": 40.7522423, "lon": -73.9994670 } + ], + "tags": { + "hgv": "local", + "highway": "motorway", + "lanes": "2", + "name": "Lincoln Tunnel Expressway", + "name:etymology:wikidata": "Q91", + "old_ref": "I 495", + "oneway": "yes", + "ref": "NY 495", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 802125669, + "bounds": { + "minlat": 40.7691124, + "minlon": -73.9808882, + "maxlat": 40.7692432, + "maxlon": -73.9807115 + }, + "nodes": [ + 2710141733, + 3734955717, + 2710141705, + 2710141721, + 2710141733 + ], + "geometry": [ + { "lat": 40.7692432, "lon": -73.9808308 }, + { "lat": 40.7691958, "lon": -73.9807115 }, + { "lat": 40.7691124, "lon": -73.9807689 }, + { "lat": 40.7691598, "lon": -73.9808882 }, + { "lat": 40.7692432, "lon": -73.9808308 } + ], + "tags": { + "area": "yes", + "bicycle": "dismount", + "highway": "pedestrian", + "horse": "no", + "level": "1", + "lit": "yes", + "surface": "paving_stones", + "surface:colour": "red" + } +}, +{ + "type": "way", + "id": 802292177, + "bounds": { + "minlat": 40.7717854, + "minlon": -73.9798319, + "maxlat": 40.7720393, + "maxlon": -73.9792016 + }, + "nodes": [ + 7504495668, + 9902399066, + 7784826680, + 7802856365 + ], + "geometry": [ + { "lat": 40.7720393, "lon": -73.9798319 }, + { "lat": 40.7720240, "lon": -73.9797962 }, + { "lat": 40.7718246, "lon": -73.9793225 }, + { "lat": 40.7717854, "lon": -73.9792016 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 65th Street", + "name:ru": "Западная 65-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "turn:lanes": "left|through|" + } +}, +{ + "type": "way", + "id": 802292178, + "bounds": { + "minlat": 40.7713495, + "minlon": -73.9795207, + "maxlat": 40.7717854, + "maxlon": -73.9792016 + }, + "nodes": [ + 9915560878, + 7802856375, + 7802856365 + ], + "geometry": [ + { "lat": 40.7713495, "lon": -73.9795207 }, + { "lat": 40.7717335, "lon": -73.9792408 }, + { "lat": 40.7717854, "lon": -73.9792016 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:lane:right": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 802343836, + "bounds": { + "minlat": 40.8556365, + "minlon": -73.9122803, + "maxlat": 40.8559945, + "maxlon": -73.9120027 + }, + "nodes": [ + 7505073494, + 7505073495, + 7505073496 + ], + "geometry": [ + { "lat": 40.8559945, "lon": -73.9120027 }, + { "lat": 40.8559147, "lon": -73.9120626 }, + { "lat": 40.8556365, "lon": -73.9122803 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 802378872, + "bounds": { + "minlat": 40.8664144, + "minlon": -74.0152233, + "maxlat": 40.8666078, + "maxlon": -74.0147443 + }, + "nodes": [ + 7505454800, + 7505454801, + 7505454802, + 7505454803, + 7505454804 + ], + "geometry": [ + { "lat": 40.8664144, "lon": -74.0147565 }, + { "lat": 40.8664727, "lon": -74.0147443 }, + { "lat": 40.8665077, "lon": -74.0147526 }, + { "lat": 40.8665383, "lon": -74.0148143 }, + { "lat": 40.8666078, "lon": -74.0152233 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 802378873, + "bounds": { + "minlat": 40.8666115, + "minlon": -74.0152060, + "maxlat": 40.8666723, + "maxlon": -74.0148341 + }, + "nodes": [ + 7505454805, + 7505454806, + 7505454807 + ], + "geometry": [ + { "lat": 40.8666723, "lon": -74.0152060 }, + { "lat": 40.8666396, "lon": -74.0150137 }, + { "lat": 40.8666115, "lon": -74.0148341 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 802378874, + "bounds": { + "minlat": 40.8657610, + "minlon": -74.0154520, + "maxlat": 40.8660194, + "maxlon": -74.0151500 + }, + "nodes": [ + 7505454808, + 7505454809, + 7505454810, + 7505454811, + 7505454812, + 7505454813, + 7505454814, + 7505454815, + 7505454816, + 7505454817 + ], + "geometry": [ + { "lat": 40.8657901, "lon": -74.0154520 }, + { "lat": 40.8657610, "lon": -74.0153222 }, + { "lat": 40.8657668, "lon": -74.0152573 }, + { "lat": 40.8657770, "lon": -74.0152207 }, + { "lat": 40.8658164, "lon": -74.0151693 }, + { "lat": 40.8659199, "lon": -74.0151500 }, + { "lat": 40.8659573, "lon": -74.0151532 }, + { "lat": 40.8659773, "lon": -74.0151777 }, + { "lat": 40.8660016, "lon": -74.0152734 }, + { "lat": 40.8660194, "lon": -74.0153903 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 802378875, + "bounds": { + "minlat": 40.8659199, + "minlon": -74.0151777, + "maxlat": 40.8659773, + "maxlon": -74.0148859 + }, + "nodes": [ + 7505454815, + 7505454818, + 7505454819, + 7505454820 + ], + "geometry": [ + { "lat": 40.8659773, "lon": -74.0151777 }, + { "lat": 40.8659729, "lon": -74.0151115 }, + { "lat": 40.8659403, "lon": -74.0149039 }, + { "lat": 40.8659199, "lon": -74.0148859 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 802510876, + "bounds": { + "minlat": 40.7472842, + "minlon": -73.9346934, + "maxlat": 40.7478231, + "maxlon": -73.9328195 + }, + "nodes": [ + 5888829897, + 7506712216, + 7506712217, + 7506712218, + 7506712219, + 7506712220, + 7506712221, + 7506712222, + 7506712223, + 7506712224, + 7506712225, + 7506712226 + ], + "geometry": [ + { "lat": 40.7478231, "lon": -73.9328195 }, + { "lat": 40.7477727, "lon": -73.9328328 }, + { "lat": 40.7477462, "lon": -73.9328755 }, + { "lat": 40.7477138, "lon": -73.9330424 }, + { "lat": 40.7476933, "lon": -73.9330653 }, + { "lat": 40.7475888, "lon": -73.9331316 }, + { "lat": 40.7475579, "lon": -73.9332378 }, + { "lat": 40.7474918, "lon": -73.9335232 }, + { "lat": 40.7474595, "lon": -73.9337736 }, + { "lat": 40.7474379, "lon": -73.9339575 }, + { "lat": 40.7473539, "lon": -73.9343293 }, + { "lat": 40.7472842, "lon": -73.9346934 } + ], + "tags": { + "highway": "service", + "lit": "yes" + } +}, +{ + "type": "way", + "id": 802570908, + "bounds": { + "minlat": 40.8303404, + "minlon": -74.0133419, + "maxlat": 40.8307046, + "maxlon": -74.0119299 + }, + "nodes": [ + 7507263585, + 7507263586, + 9909793086, + 7507263587, + 9909793083, + 7507263588, + 9909793084, + 9909793081, + 9909793085, + 7507263589, + 7507263590, + 9909793082, + 7507263591, + 7507263592 + ], + "geometry": [ + { "lat": 40.8304917, "lon": -74.0119299 }, + { "lat": 40.8305243, "lon": -74.0121108 }, + { "lat": 40.8307012, "lon": -74.0130704 }, + { "lat": 40.8307046, "lon": -74.0130964 }, + { "lat": 40.8307042, "lon": -74.0131174 }, + { "lat": 40.8307011, "lon": -74.0131378 }, + { "lat": 40.8306946, "lon": -74.0131601 }, + { "lat": 40.8306865, "lon": -74.0131783 }, + { "lat": 40.8306732, "lon": -74.0131964 }, + { "lat": 40.8306600, "lon": -74.0132114 }, + { "lat": 40.8306276, "lon": -74.0132360 }, + { "lat": 40.8306028, "lon": -74.0132510 }, + { "lat": 40.8305780, "lon": -74.0132625 }, + { "lat": 40.8303404, "lon": -74.0133419 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 802673068, + "bounds": { + "minlat": 40.8332404, + "minlon": -73.9789069, + "maxlat": 40.8332532, + "maxlon": -73.9784685 + }, + "nodes": [ + 7508363703, + 13525443304, + 7508363704 + ], + "geometry": [ + { "lat": 40.8332404, "lon": -73.9784685 }, + { "lat": 40.8332436, "lon": -73.9785775 }, + { "lat": 40.8332532, "lon": -73.9789069 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 802673069, + "bounds": { + "minlat": 40.8331189, + "minlon": -73.9790105, + "maxlat": 40.8333596, + "maxlon": -73.9789006 + }, + "nodes": [ + 7508363705, + 7508363706, + 7508363707, + 7508363704, + 7508363708 + ], + "geometry": [ + { "lat": 40.8331189, "lon": -73.9790105 }, + { "lat": 40.8331925, "lon": -73.9789915 }, + { "lat": 40.8332292, "lon": -73.9789407 }, + { "lat": 40.8332532, "lon": -73.9789069 }, + { "lat": 40.8333596, "lon": -73.9789006 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 802673080, + "bounds": { + "minlat": 40.8341534, + "minlon": -73.9786214, + "maxlat": 40.8341596, + "maxlon": -73.9784215 + }, + "nodes": [ + 7508363767, + 13525443305, + 7508363768 + ], + "geometry": [ + { "lat": 40.8341534, "lon": -73.9784215 }, + { "lat": 40.8341569, "lon": -73.9785331 }, + { "lat": 40.8341596, "lon": -73.9786214 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 802673081, + "bounds": { + "minlat": 40.8340762, + "minlon": -73.9789063, + "maxlat": 40.8342572, + "maxlon": -73.9786214 + }, + "nodes": [ + 7508363768, + 7508363769, + 7508363770, + 7508363771, + 7508363772, + 7508363773, + 7508363774, + 7508363775, + 7508363776, + 7508363777, + 7508363778, + 7508363779, + 7508363780, + 7508363781, + 7508363782, + 7508363783, + 7508363784, + 7508363785, + 7508363786, + 7508363787, + 7508363788, + 7508363789, + 7508363790, + 7508363791, + 7508363792, + 7508363793, + 7508363794, + 7508363795, + 7508363796, + 7508363797, + 7508363798, + 7508363768 + ], + "geometry": [ + { "lat": 40.8341596, "lon": -73.9786214 }, + { "lat": 40.8341800, "lon": -73.9786252 }, + { "lat": 40.8341970, "lon": -73.9786327 }, + { "lat": 40.8342202, "lon": -73.9786459 }, + { "lat": 40.8342368, "lon": -73.9786596 }, + { "lat": 40.8342482, "lon": -73.9786765 }, + { "lat": 40.8342524, "lon": -73.9786972 }, + { "lat": 40.8342572, "lon": -73.9788506 }, + { "lat": 40.8342553, "lon": -73.9788618 }, + { "lat": 40.8342510, "lon": -73.9788737 }, + { "lat": 40.8342434, "lon": -73.9788831 }, + { "lat": 40.8342268, "lon": -73.9788938 }, + { "lat": 40.8342122, "lon": -73.9789000 }, + { "lat": 40.8341894, "lon": -73.9789032 }, + { "lat": 40.8341402, "lon": -73.9789063 }, + { "lat": 40.8341302, "lon": -73.9789063 }, + { "lat": 40.8341212, "lon": -73.9789032 }, + { "lat": 40.8341084, "lon": -73.9788925 }, + { "lat": 40.8340999, "lon": -73.9788819 }, + { "lat": 40.8340914, "lon": -73.9788675 }, + { "lat": 40.8340843, "lon": -73.9788506 }, + { "lat": 40.8340795, "lon": -73.9788299 }, + { "lat": 40.8340762, "lon": -73.9787222 }, + { "lat": 40.8340776, "lon": -73.9786997 }, + { "lat": 40.8340814, "lon": -73.9786809 }, + { "lat": 40.8340923, "lon": -73.9786634 }, + { "lat": 40.8341009, "lon": -73.9786521 }, + { "lat": 40.8341165, "lon": -73.9786383 }, + { "lat": 40.8341269, "lon": -73.9786315 }, + { "lat": 40.8341402, "lon": -73.9786258 }, + { "lat": 40.8341506, "lon": -73.9786227 }, + { "lat": 40.8341596, "lon": -73.9786214 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 802686834, + "bounds": { + "minlat": 40.8335883, + "minlon": -73.9149802, + "maxlat": 40.8356000, + "maxlon": -73.9137930 + }, + "nodes": [ + 42755588, + 13031082345, + 5481921468, + 5481921477, + 5481921471, + 5481921473, + 12739350647, + 42755581 + ], + "geometry": [ + { "lat": 40.8356000, "lon": -73.9137930 }, + { "lat": 40.8355282, "lon": -73.9138354 }, + { "lat": 40.8353633, "lon": -73.9139327 }, + { "lat": 40.8352425, "lon": -73.9140040 }, + { "lat": 40.8346382, "lon": -73.9143606 }, + { "lat": 40.8340047, "lon": -73.9147345 }, + { "lat": 40.8336745, "lon": -73.9149293 }, + { "lat": 40.8335883, "lon": -73.9149802 } + ], + "tags": { + "highway": "residential", + "name": "Grant Avenue", + "name:etymology:wikidata": "Q34836", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grant", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 802686835, + "bounds": { + "minlat": 40.8341880, + "minlon": -73.9137930, + "maxlat": 40.8356000, + "maxlon": -73.9095740 + }, + "nodes": [ + 42755588, + 13031082342, + 13031182837, + 42735857, + 13031182840, + 5481921494, + 13031202597, + 42756654, + 13031229902, + 13746493071, + 42743942, + 13746493094, + 13746493093, + 42782633, + 12038440356, + 12038379546, + 42746992 + ], + "geometry": [ + { "lat": 40.8356000, "lon": -73.9137930 }, + { "lat": 40.8355758, "lon": -73.9137218 }, + { "lat": 40.8353364, "lon": -73.9130164 }, + { "lat": 40.8352970, "lon": -73.9129000 }, + { "lat": 40.8352643, "lon": -73.9128020 }, + { "lat": 40.8351978, "lon": -73.9126054 }, + { "lat": 40.8350427, "lon": -73.9121450 }, + { "lat": 40.8350130, "lon": -73.9120570 }, + { "lat": 40.8349874, "lon": -73.9119816 }, + { "lat": 40.8347490, "lon": -73.9112795 }, + { "lat": 40.8347220, "lon": -73.9112000 }, + { "lat": 40.8346969, "lon": -73.9111259 }, + { "lat": 40.8344592, "lon": -73.9104251 }, + { "lat": 40.8344310, "lon": -73.9103420 }, + { "lat": 40.8344059, "lon": -73.9102627 }, + { "lat": 40.8342219, "lon": -73.9096813 }, + { "lat": 40.8341880, "lon": -73.9095740 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "horse": "yes", + "motor_vehicle": "yes", + "name": "East 169th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 802760378, + "bounds": { + "minlat": 40.7349204, + "minlon": -73.9366575, + "maxlat": 40.7351538, + "maxlon": -73.9365056 + }, + "nodes": [ + 7509146402, + 11910725526, + 7509146403 + ], + "geometry": [ + { "lat": 40.7351538, "lon": -73.9366575 }, + { "lat": 40.7349913, "lon": -73.9365518 }, + { "lat": 40.7349204, "lon": -73.9365056 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 802923583, + "bounds": { + "minlat": 40.8255535, + "minlon": -73.9745728, + "maxlat": 40.8257237, + "maxlon": -73.9742694 + }, + "nodes": [ + 7510674627, + 7510674629, + 7510674628 + ], + "geometry": [ + { "lat": 40.8255535, "lon": -73.9742694 }, + { "lat": 40.8256104, "lon": -73.9743708 }, + { "lat": 40.8257237, "lon": -73.9745728 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 802952831, + "bounds": { + "minlat": 40.8803360, + "minlon": -73.9801278, + "maxlat": 40.8808623, + "maxlon": -73.9794833 + }, + "nodes": [ + 7511014012, + 13525915101, + 7511014013, + 7511014014, + 7511014015, + 7511014016, + 7511014017 + ], + "geometry": [ + { "lat": 40.8803360, "lon": -73.9795862 }, + { "lat": 40.8803870, "lon": -73.9795367 }, + { "lat": 40.8804153, "lon": -73.9795091 }, + { "lat": 40.8804629, "lon": -73.9794833 }, + { "lat": 40.8805032, "lon": -73.9794946 }, + { "lat": 40.8805326, "lon": -73.9795285 }, + { "lat": 40.8808623, "lon": -73.9801278 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 803024464, + "bounds": { + "minlat": 40.7398722, + "minlon": -73.9905253, + "maxlat": 40.7402774, + "maxlon": -73.9895636 + }, + "nodes": [ + 42428192, + 12072425146, + 4687262941, + 12181309681, + 7781136145, + 42443671 + ], + "geometry": [ + { "lat": 40.7398722, "lon": -73.9895636 }, + { "lat": 40.7399054, "lon": -73.9896415 }, + { "lat": 40.7399220, "lon": -73.9896794 }, + { "lat": 40.7402069, "lon": -73.9903582 }, + { "lat": 40.7402251, "lon": -73.9904002 }, + { "lat": 40.7402774, "lon": -73.9905253 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 21st Street", + "name:ru": "Восточная 21-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 803024465, + "bounds": { + "minlat": 40.7386557, + "minlon": -73.9899031, + "maxlat": 40.7396352, + "maxlon": -73.9896275 + }, + "nodes": [ + 12068953116, + 12181309650, + 8569048152, + 42428183, + 8569048150, + 8569045585 + ], + "geometry": [ + { "lat": 40.7396352, "lon": -73.9896275 }, + { "lat": 40.7392954, "lon": -73.9897168 }, + { "lat": 40.7392427, "lon": -73.9897306 }, + { "lat": 40.7391688, "lon": -73.9897506 }, + { "lat": 40.7391077, "lon": -73.9897671 }, + { "lat": 40.7386557, "lon": -73.9899031 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "12.5", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 803047266, + "bounds": { + "minlat": 40.7550539, + "minlon": -73.9874470, + "maxlat": 40.7553730, + "maxlon": -73.9866712 + }, + "nodes": [ + 42428283, + 10173032939, + 10168088451, + 42439972 + ], + "geometry": [ + { "lat": 40.7550539, "lon": -73.9866712 }, + { "lat": 40.7551000, "lon": -73.9867793 }, + { "lat": 40.7553227, "lon": -73.9873252 }, + { "lat": 40.7553730, "lon": -73.9874470 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 803047267, + "bounds": { + "minlat": 40.7543353, + "minlon": -73.9868976, + "maxlat": 40.7550539, + "maxlon": -73.9866712 + }, + "nodes": [ + 42428283, + 10173032938, + 10173490587, + 42428277 + ], + "geometry": [ + { "lat": 40.7550539, "lon": -73.9866712 }, + { "lat": 40.7549879, "lon": -73.9866913 }, + { "lat": 40.7544089, "lon": -73.9868730 }, + { "lat": 40.7543353, "lon": -73.9868976 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (09:00-17:00)", + "motor_vehicle:conditional": "destination @ (09:00-17:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 803060436, + "bounds": { + "minlat": 40.7729859, + "minlon": -73.9461964, + "maxlat": 40.7768958, + "maxlon": -73.9433989 + }, + "nodes": [ + 42448257, + 7135169195, + 6352970543, + 42435522, + 6352970533, + 5163273892, + 42451766, + 5163273872, + 5163273900, + 42429348, + 6352970550, + 6352970531, + 42451773, + 6352970515, + 4813662469, + 6352970530, + 42445757, + 6352970542, + 4813662468, + 13437117823, + 13437117818, + 4813662467, + 6352970546, + 4813662470, + 4813662471, + 42436556 + ], + "geometry": [ + { "lat": 40.7729859, "lon": -73.9461964 }, + { "lat": 40.7730492, "lon": -73.9461550 }, + { "lat": 40.7735666, "lon": -73.9457744 }, + { "lat": 40.7736238, "lon": -73.9457297 }, + { "lat": 40.7736842, "lon": -73.9456836 }, + { "lat": 40.7741984, "lon": -73.9453058 }, + { "lat": 40.7742524, "lon": -73.9452680 }, + { "lat": 40.7743201, "lon": -73.9452210 }, + { "lat": 40.7748487, "lon": -73.9448444 }, + { "lat": 40.7749461, "lon": -73.9447748 }, + { "lat": 40.7750425, "lon": -73.9447102 }, + { "lat": 40.7755670, "lon": -73.9443205 }, + { "lat": 40.7756198, "lon": -73.9442812 }, + { "lat": 40.7756745, "lon": -73.9442341 }, + { "lat": 40.7761341, "lon": -73.9438988 }, + { "lat": 40.7761890, "lon": -73.9438615 }, + { "lat": 40.7762511, "lon": -73.9438310 }, + { "lat": 40.7763130, "lon": -73.9438014 }, + { "lat": 40.7763547, "lon": -73.9437692 }, + { "lat": 40.7765097, "lon": -73.9436559 }, + { "lat": 40.7766334, "lon": -73.9435598 }, + { "lat": 40.7767838, "lon": -73.9434469 }, + { "lat": 40.7768263, "lon": -73.9434168 }, + { "lat": 40.7768514, "lon": -73.9434068 }, + { "lat": 40.7768734, "lon": -73.9434006 }, + { "lat": 40.7768958, "lon": -73.9433989 } + ], + "tags": { + "highway": "residential", + "name": "East End Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4122377", + "wikipedia": "en:East End Avenue" + } +}, +{ + "type": "way", + "id": 803110016, + "bounds": { + "minlat": 40.7212346, + "minlon": -73.9877644, + "maxlat": 40.7224119, + "maxlon": -73.9871601 + }, + "nodes": [ + 1919595911, + 4598752825, + 3314293707, + 42432066 + ], + "geometry": [ + { "lat": 40.7224119, "lon": -73.9871601 }, + { "lat": 40.7223290, "lon": -73.9872054 }, + { "lat": 40.7212844, "lon": -73.9877385 }, + { "lat": 40.7212346, "lon": -73.9877644 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Ludlow Street", + "name:etymology:wikidata": "Q4821485", + "name:ko": "러들로 스트리트", + "name:ru": "Ладлоу-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3935980", + "wikipedia": "en:Ludlow Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 803110017, + "bounds": { + "minlat": 40.7221638, + "minlon": -73.9868775, + "maxlat": 40.7223300, + "maxlon": -73.9863339 + }, + "nodes": [ + 9181587104, + 1919595929, + 4598752866, + 9166033061 + ], + "geometry": [ + { "lat": 40.7223300, "lon": -73.9868775 }, + { "lat": 40.7222236, "lon": -73.9865191 }, + { "lat": 40.7222071, "lon": -73.9864655 }, + { "lat": 40.7221638, "lon": -73.9863339 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 803130123, + "bounds": { + "minlat": 40.7706803, + "minlon": -73.9828817, + "maxlat": 40.7708310, + "maxlon": -73.9827741 + }, + "nodes": [ + 7512568050, + 9904385879, + 7512568049 + ], + "geometry": [ + { "lat": 40.7706803, "lon": -73.9828817 }, + { "lat": 40.7707771, "lon": -73.9828127 }, + { "lat": 40.7708310, "lon": -73.9827741 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 803130126, + "bounds": { + "minlat": 40.7705137, + "minlon": -73.9831766, + "maxlat": 40.7708070, + "maxlon": -73.9828461 + }, + "nodes": [ + 3226919188, + 3226919185, + 3226919173, + 3226919163, + 3226919161, + 3226918459, + 3226918440, + 3226918432, + 3226918422, + 3226918418, + 3226918423, + 3226918417, + 2710204102, + 2710204087, + 2710204116, + 7512568050, + 2710204118, + 2710204126, + 2710204130, + 2710204131, + 7512568051, + 7512568054, + 3226919188 + ], + "geometry": [ + { "lat": 40.7708070, "lon": -73.9830285 }, + { "lat": 40.7707983, "lon": -73.9830346 }, + { "lat": 40.7707671, "lon": -73.9830574 }, + { "lat": 40.7707492, "lon": -73.9830706 }, + { "lat": 40.7707437, "lon": -73.9830574 }, + { "lat": 40.7707366, "lon": -73.9830626 }, + { "lat": 40.7707050, "lon": -73.9830858 }, + { "lat": 40.7706855, "lon": -73.9831001 }, + { "lat": 40.7706540, "lon": -73.9831232 }, + { "lat": 40.7706493, "lon": -73.9831267 }, + { "lat": 40.7706549, "lon": -73.9831399 }, + { "lat": 40.7706033, "lon": -73.9831766 }, + { "lat": 40.7705397, "lon": -73.9830258 }, + { "lat": 40.7705137, "lon": -73.9829582 }, + { "lat": 40.7706654, "lon": -73.9828461 }, + { "lat": 40.7706803, "lon": -73.9828817 }, + { "lat": 40.7706934, "lon": -73.9829128 }, + { "lat": 40.7707327, "lon": -73.9828842 }, + { "lat": 40.7707432, "lon": -73.9828871 }, + { "lat": 40.7707514, "lon": -73.9828967 }, + { "lat": 40.7707920, "lon": -73.9829930 }, + { "lat": 40.7707995, "lon": -73.9830107 }, + { "lat": 40.7708070, "lon": -73.9830285 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 803183834, + "bounds": { + "minlat": 40.8543682, + "minlon": -73.9846707, + "maxlat": 40.8544990, + "maxlon": -73.9843955 + }, + "nodes": [ + 7513033162, + 7513033163, + 7513033164, + 7513033165, + 7513033166, + 7513033167, + 7513033168 + ], + "geometry": [ + { "lat": 40.8544990, "lon": -73.9843955 }, + { "lat": 40.8544860, "lon": -73.9844235 }, + { "lat": 40.8544898, "lon": -73.9844781 }, + { "lat": 40.8544890, "lon": -73.9845384 }, + { "lat": 40.8544717, "lon": -73.9845755 }, + { "lat": 40.8544248, "lon": -73.9846294 }, + { "lat": 40.8543682, "lon": -73.9846707 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 803183835, + "bounds": { + "minlat": 40.8540647, + "minlon": -73.9847525, + "maxlat": 40.8542078, + "maxlon": -73.9846125 + }, + "nodes": [ + 7513033169, + 7513033170, + 7513033171, + 10236688096, + 7513033172, + 7513033173 + ], + "geometry": [ + { "lat": 40.8542078, "lon": -73.9847464 }, + { "lat": 40.8541494, "lon": -73.9847525 }, + { "lat": 40.8541225, "lon": -73.9847393 }, + { "lat": 40.8541081, "lon": -73.9847115 }, + { "lat": 40.8540938, "lon": -73.9846840 }, + { "lat": 40.8540647, "lon": -73.9846125 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 803183836, + "bounds": { + "minlat": 40.8542078, + "minlon": -73.9847464, + "maxlat": 40.8543682, + "maxlon": -73.9846707 + }, + "nodes": [ + 7513033168, + 7513033169 + ], + "geometry": [ + { "lat": 40.8543682, "lon": -73.9846707 }, + { "lat": 40.8542078, "lon": -73.9847464 } + ], + "tags": { + "access": "customers", + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 803189336, + "bounds": { + "minlat": 40.7941724, + "minlon": -74.0105234, + "maxlat": 40.7945925, + "maxlon": -74.0102186 + }, + "nodes": [ + 7513096689, + 7678243109, + 7513096690, + 7513096691, + 7513096692 + ], + "geometry": [ + { "lat": 40.7941724, "lon": -74.0105234 }, + { "lat": 40.7942202, "lon": -74.0104845 }, + { "lat": 40.7943692, "lon": -74.0103633 }, + { "lat": 40.7944462, "lon": -74.0103300 }, + { "lat": 40.7945925, "lon": -74.0102186 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 803250618, + "bounds": { + "minlat": 40.8661401, + "minlon": -73.9738967, + "maxlat": 40.8665576, + "maxlon": -73.9734762 + }, + "nodes": [ + 7513705679, + 7513705680, + 10562008958, + 7513705681, + 10562008961, + 10562008965, + 7513705682, + 7513705683, + 7513705684, + 10562008962, + 7513732185, + 10562008955, + 7513732186 + ], + "geometry": [ + { "lat": 40.8665576, "lon": -73.9737903 }, + { "lat": 40.8664780, "lon": -73.9736679 }, + { "lat": 40.8664373, "lon": -73.9736441 }, + { "lat": 40.8663974, "lon": -73.9736208 }, + { "lat": 40.8663875, "lon": -73.9735848 }, + { "lat": 40.8663688, "lon": -73.9735169 }, + { "lat": 40.8663591, "lon": -73.9734816 }, + { "lat": 40.8663283, "lon": -73.9734762 }, + { "lat": 40.8661553, "lon": -73.9735277 }, + { "lat": 40.8661523, "lon": -73.9735818 }, + { "lat": 40.8661469, "lon": -73.9736794 }, + { "lat": 40.8661524, "lon": -73.9737748 }, + { "lat": 40.8661401, "lon": -73.9738967 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 803663338, + "bounds": { + "minlat": 40.8386961, + "minlon": -73.9384497, + "maxlat": 40.8388975, + "maxlon": -73.9382849 + }, + "nodes": [ + 7517627712, + 7517627714, + 9566997281, + 7517627713 + ], + "geometry": [ + { "lat": 40.8386961, "lon": -73.9384497 }, + { "lat": 40.8388055, "lon": -73.9383601 }, + { "lat": 40.8388311, "lon": -73.9383392 }, + { "lat": 40.8388975, "lon": -73.9382849 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 803773829, + "bounds": { + "minlat": 40.8379711, + "minlon": -73.9837221, + "maxlat": 40.8381100, + "maxlon": -73.9834762 + }, + "nodes": [ + 7518672165, + 7518672166 + ], + "geometry": [ + { "lat": 40.8381100, "lon": -73.9837221 }, + { "lat": 40.8379711, "lon": -73.9834762 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 804078256, + "bounds": { + "minlat": 40.7528180, + "minlon": -73.9763930, + "maxlat": 40.7538000, + "maxlon": -73.9756686 + }, + "nodes": [ + 42444047, + 10170668447, + 3842775635, + 7520841184 + ], + "geometry": [ + { "lat": 40.7538000, "lon": -73.9756686 }, + { "lat": 40.7537407, "lon": -73.9757125 }, + { "lat": 40.7537016, "lon": -73.9757412 }, + { "lat": 40.7528180, "lon": -73.9763930 } + ], + "tags": { + "access": "no", + "goods": "yes", + "highway": "service", + "name": "Depew Place", + "name:etymology:wikidata": "Q5088222", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 804149110, + "bounds": { + "minlat": 40.8385862, + "minlon": -74.0091121, + "maxlat": 40.8390624, + "maxlon": -74.0082239 + }, + "nodes": [ + 7521645912, + 7521645913, + 7521645914 + ], + "geometry": [ + { "lat": 40.8390624, "lon": -74.0091121 }, + { "lat": 40.8388588, "lon": -74.0087372 }, + { "lat": 40.8385862, "lon": -74.0082239 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 804217615, + "bounds": { + "minlat": 40.8570586, + "minlon": -73.9816622, + "maxlat": 40.8572097, + "maxlon": -73.9814393 + }, + "nodes": [ + 7522302284, + 7522320685 + ], + "geometry": [ + { "lat": 40.8572097, "lon": -73.9816622 }, + { "lat": 40.8570586, "lon": -73.9814393 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 804397125, + "bounds": { + "minlat": 40.7987027, + "minlon": -73.9462215, + "maxlat": 40.7988787, + "maxlon": -73.9457923 + }, + "nodes": [ + 7523953830, + 6223478801, + 7523953831 + ], + "geometry": [ + { "lat": 40.7988787, "lon": -73.9462215 }, + { "lat": 40.7987481, "lon": -73.9459005 }, + { "lat": 40.7987027, "lon": -73.9457923 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 804397126, + "bounds": { + "minlat": 40.7984389, + "minlon": -73.9467143, + "maxlat": 40.7987772, + "maxlon": -73.9464750 + }, + "nodes": [ + 7523953832, + 7523953833 + ], + "geometry": [ + { "lat": 40.7987772, "lon": -73.9464750 }, + { "lat": 40.7984389, "lon": -73.9467143 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 804397127, + "bounds": { + "minlat": 40.7981844, + "minlon": -73.9467143, + "maxlat": 40.7984389, + "maxlon": -73.9466226 + }, + "nodes": [ + 7523953833, + 7523953834 + ], + "geometry": [ + { "lat": 40.7984389, "lon": -73.9467143 }, + { "lat": 40.7981844, "lon": -73.9466226 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 804397128, + "bounds": { + "minlat": 40.7980390, + "minlon": -73.9466226, + "maxlat": 40.7981844, + "maxlon": -73.9462758 + }, + "nodes": [ + 7523953834, + 6223478799, + 7523953835 + ], + "geometry": [ + { "lat": 40.7981844, "lon": -73.9466226 }, + { "lat": 40.7980861, "lon": -73.9463843 }, + { "lat": 40.7980390, "lon": -73.9462758 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 804397129, + "bounds": { + "minlat": 40.7987772, + "minlon": -73.9464750, + "maxlat": 40.7988787, + "maxlon": -73.9462215 + }, + "nodes": [ + 7523953832, + 7523953830 + ], + "geometry": [ + { "lat": 40.7987772, "lon": -73.9464750 }, + { "lat": 40.7988787, "lon": -73.9462215 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 804397134, + "bounds": { + "minlat": 40.7979488, + "minlon": -73.9449528, + "maxlat": 40.7981732, + "maxlon": -73.9444003 + }, + "nodes": [ + 7523953837, + 5481978548, + 6270715241, + 5481978555 + ], + "geometry": [ + { "lat": 40.7981732, "lon": -73.9449528 }, + { "lat": 40.7980828, "lon": -73.9447296 }, + { "lat": 40.7979794, "lon": -73.9444743 }, + { "lat": 40.7979488, "lon": -73.9444003 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 804397135, + "bounds": { + "minlat": 40.7977843, + "minlon": -73.9452345, + "maxlat": 40.7981732, + "maxlon": -73.9449528 + }, + "nodes": [ + 7523953837, + 7523953838 + ], + "geometry": [ + { "lat": 40.7981732, "lon": -73.9449528 }, + { "lat": 40.7977843, "lon": -73.9452345 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 804397136, + "bounds": { + "minlat": 40.7975580, + "minlon": -73.9452345, + "maxlat": 40.7977843, + "maxlon": -73.9446868 + }, + "nodes": [ + 7523953838, + 5481978549, + 7523953840, + 7523953839 + ], + "geometry": [ + { "lat": 40.7977843, "lon": -73.9452345 }, + { "lat": 40.7976906, "lon": -73.9450084 }, + { "lat": 40.7975858, "lon": -73.9447551 }, + { "lat": 40.7975580, "lon": -73.9446868 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 804521765, + "bounds": { + "minlat": 40.7153571, + "minlon": -73.9942500, + "maxlat": 40.7156185, + "maxlon": -73.9933988 + }, + "nodes": [ + 7480410410, + 7480410400, + 7480410401, + 42440798 + ], + "geometry": [ + { "lat": 40.7153571, "lon": -73.9933988 }, + { "lat": 40.7153785, "lon": -73.9934654 }, + { "lat": 40.7155948, "lon": -73.9941728 }, + { "lat": 40.7156185, "lon": -73.9942500 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 804521766, + "bounds": { + "minlat": 40.7156185, + "minlon": -73.9944104, + "maxlat": 40.7156470, + "maxlon": -73.9942500 + }, + "nodes": [ + 7480410407, + 7480410394, + 11495928555, + 42440798 + ], + "geometry": [ + { "lat": 40.7156470, "lon": -73.9944104 }, + { "lat": 40.7156337, "lon": -73.9943628 }, + { "lat": 40.7156233, "lon": -73.9943038 }, + { "lat": 40.7156185, "lon": -73.9942500 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 805014178, + "bounds": { + "minlat": 40.8256764, + "minlon": -73.9937559, + "maxlat": 40.8259087, + "maxlon": -73.9932565 + }, + "nodes": [ + 103259849, + 7529710579, + 7529710580 + ], + "geometry": [ + { "lat": 40.8258379, "lon": -73.9937559 }, + { "lat": 40.8259087, "lon": -73.9936889 }, + { "lat": 40.8256764, "lon": -73.9932565 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805082955, + "bounds": { + "minlat": 40.7700365, + "minlon": -73.9411695, + "maxlat": 40.7710648, + "maxlon": -73.9403979 + }, + "nodes": [ + 7529896577, + 7529896578 + ], + "geometry": [ + { "lat": 40.7710648, "lon": -73.9403979 }, + { "lat": 40.7700365, "lon": -73.9411695 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805082957, + "bounds": { + "minlat": 40.7699526, + "minlon": -73.9417280, + "maxlat": 40.7703739, + "maxlon": -73.9411378 + }, + "nodes": [ + 13701362418, + 7529909886, + 7529909887, + 7529909902, + 7529896578, + 7529909888 + ], + "geometry": [ + { "lat": 40.7703739, "lon": -73.9417280 }, + { "lat": 40.7702555, "lon": -73.9414709 }, + { "lat": 40.7701697, "lon": -73.9412976 }, + { "lat": 40.7700848, "lon": -73.9412159 }, + { "lat": 40.7700365, "lon": -73.9411695 }, + { "lat": 40.7699526, "lon": -73.9411378 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805082958, + "bounds": { + "minlat": 40.7697013, + "minlon": -73.9412786, + "maxlat": 40.7699401, + "maxlon": -73.9408835 + }, + "nodes": [ + 593416866, + 9913669078, + 7529909927, + 9913669079, + 9913669080, + 7529909889, + 9913669081, + 9913669082, + 9913669083, + 9913669084, + 7529909890 + ], + "geometry": [ + { "lat": 40.7697013, "lon": -73.9412786 }, + { "lat": 40.7697244, "lon": -73.9411594 }, + { "lat": 40.7697357, "lon": -73.9411142 }, + { "lat": 40.7697491, "lon": -73.9410773 }, + { "lat": 40.7697702, "lon": -73.9410348 }, + { "lat": 40.7697924, "lon": -73.9409980 }, + { "lat": 40.7698127, "lon": -73.9409715 }, + { "lat": 40.7698309, "lon": -73.9409532 }, + { "lat": 40.7698499, "lon": -73.9409386 }, + { "lat": 40.7698950, "lon": -73.9409110 }, + { "lat": 40.7699401, "lon": -73.9408835 } + ], + "tags": { + "highway": "service", + "maxspeed": "15 mph", + "name": "East Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 805082960, + "bounds": { + "minlat": 40.7697013, + "minlon": -73.9412786, + "maxlat": 40.7699526, + "maxlon": -73.9411378 + }, + "nodes": [ + 7529909888, + 9913669088, + 9913669087, + 9913669086, + 9913669085, + 593416866 + ], + "geometry": [ + { "lat": 40.7699526, "lon": -73.9411378 }, + { "lat": 40.7699398, "lon": -73.9411491 }, + { "lat": 40.7699214, "lon": -73.9411604 }, + { "lat": 40.7699059, "lon": -73.9411680 }, + { "lat": 40.7698652, "lon": -73.9411837 }, + { "lat": 40.7697013, "lon": -73.9412786 } + ], + "tags": { + "highway": "service", + "maxspeed": "15 mph", + "name": "East Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 805082961, + "bounds": { + "minlat": 40.7699401, + "minlon": -73.9411378, + "maxlat": 40.7699810, + "maxlon": -73.9408835 + }, + "nodes": [ + 7529909890, + 9913669093, + 7529909928, + 9913669092, + 9913669091, + 9913669090, + 9913669089, + 7529909888 + ], + "geometry": [ + { "lat": 40.7699401, "lon": -73.9408835 }, + { "lat": 40.7699717, "lon": -73.9409705 }, + { "lat": 40.7699802, "lon": -73.9410062 }, + { "lat": 40.7699810, "lon": -73.9410338 }, + { "lat": 40.7699779, "lon": -73.9410665 }, + { "lat": 40.7699701, "lon": -73.9410990 }, + { "lat": 40.7699611, "lon": -73.9411231 }, + { "lat": 40.7699526, "lon": -73.9411378 } + ], + "tags": { + "highway": "service", + "maxspeed": "15 mph", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 805082962, + "bounds": { + "minlat": 40.7693367, + "minlon": -73.9416710, + "maxlat": 40.7696330, + "maxlon": -73.9416092 + }, + "nodes": [ + 5540146342, + 7529909905, + 7529909894 + ], + "geometry": [ + { "lat": 40.7696330, "lon": -73.9416710 }, + { "lat": 40.7695082, "lon": -73.9416092 }, + { "lat": 40.7693367, "lon": -73.9416136 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 805082963, + "bounds": { + "minlat": 40.7696330, + "minlon": -73.9418927, + "maxlat": 40.7697370, + "maxlon": -73.9416710 + }, + "nodes": [ + 7529909895, + 5540146342 + ], + "geometry": [ + { "lat": 40.7697370, "lon": -73.9418927 }, + { "lat": 40.7696330, "lon": -73.9416710 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805082965, + "bounds": { + "minlat": 40.7697877, + "minlon": -73.9414474, + "maxlat": 40.7700848, + "maxlon": -73.9412159 + }, + "nodes": [ + 7529909902, + 7529909903 + ], + "geometry": [ + { "lat": 40.7700848, "lon": -73.9412159 }, + { "lat": 40.7697877, "lon": -73.9414474 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805082966, + "bounds": { + "minlat": 40.7697013, + "minlon": -73.9414474, + "maxlat": 40.7697877, + "maxlon": -73.9412786 + }, + "nodes": [ + 7529909903, + 593416866 + ], + "geometry": [ + { "lat": 40.7697877, "lon": -73.9414474 }, + { "lat": 40.7697013, "lon": -73.9412786 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805082967, + "bounds": { + "minlat": 40.7697370, + "minlon": -73.9421220, + "maxlat": 40.7698446, + "maxlon": -73.9418927 + }, + "nodes": [ + 7529909895, + 7529909904 + ], + "geometry": [ + { "lat": 40.7697370, "lon": -73.9418927 }, + { "lat": 40.7698446, "lon": -73.9421220 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805082968, + "bounds": { + "minlat": 40.7689217, + "minlon": -73.9424380, + "maxlat": 40.7693534, + "maxlon": -73.9418251 + }, + "nodes": [ + 7529909906, + 7529909908 + ], + "geometry": [ + { "lat": 40.7693534, "lon": -73.9418251 }, + { "lat": 40.7689217, "lon": -73.9424380 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805082969, + "bounds": { + "minlat": 40.7692588, + "minlon": -73.9418251, + "maxlat": 40.7693534, + "maxlon": -73.9417056 + }, + "nodes": [ + 7529909906, + 8265115087, + 7529909907 + ], + "geometry": [ + { "lat": 40.7693534, "lon": -73.9418251 }, + { "lat": 40.7692942, "lon": -73.9417441 }, + { "lat": 40.7692588, "lon": -73.9417056 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805082971, + "bounds": { + "minlat": 40.7687802, + "minlon": -73.9424380, + "maxlat": 40.7689217, + "maxlon": -73.9423840 + }, + "nodes": [ + 7529909908, + 8265115088, + 7529909909 + ], + "geometry": [ + { "lat": 40.7689217, "lon": -73.9424380 }, + { "lat": 40.7688154, "lon": -73.9423974 }, + { "lat": 40.7687802, "lon": -73.9423840 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805082979, + "bounds": { + "minlat": 40.7697271, + "minlon": -73.9439756, + "maxlat": 40.7701807, + "maxlon": -73.9436705 + }, + "nodes": [ + 5487813184, + 8265114891, + 7529909931, + 7529909930 + ], + "geometry": [ + { "lat": 40.7701807, "lon": -73.9439756 }, + { "lat": 40.7701451, "lon": -73.9439547 }, + { "lat": 40.7700480, "lon": -73.9438908 }, + { "lat": 40.7697271, "lon": -73.9436705 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805082980, + "bounds": { + "minlat": 40.7698994, + "minlon": -73.9440523, + "maxlat": 40.7700480, + "maxlon": -73.9438908 + }, + "nodes": [ + 5487813177, + 7529909931 + ], + "geometry": [ + { "lat": 40.7698994, "lon": -73.9440523 }, + { "lat": 40.7700480, "lon": -73.9438908 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805082981, + "bounds": { + "minlat": 40.7694702, + "minlon": -73.9441788, + "maxlat": 40.7697993, + "maxlon": -73.9436530 + }, + "nodes": [ + 7529909932, + 5487813182, + 7529909934, + 7529909933 + ], + "geometry": [ + { "lat": 40.7697993, "lon": -73.9441788 }, + { "lat": 40.7695862, "lon": -73.9438384 }, + { "lat": 40.7695526, "lon": -73.9437846 }, + { "lat": 40.7694702, "lon": -73.9436530 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805082982, + "bounds": { + "minlat": 40.7695526, + "minlon": -73.9437846, + "maxlat": 40.7697271, + "maxlon": -73.9436705 + }, + "nodes": [ + 7529909930, + 7529909934 + ], + "geometry": [ + { "lat": 40.7697271, "lon": -73.9436705 }, + { "lat": 40.7695526, "lon": -73.9437846 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805082983, + "bounds": { + "minlat": 40.7697993, + "minlon": -73.9441788, + "maxlat": 40.7698994, + "maxlon": -73.9440523 + }, + "nodes": [ + 7529909932, + 5487813177 + ], + "geometry": [ + { "lat": 40.7697993, "lon": -73.9441788 }, + { "lat": 40.7698994, "lon": -73.9440523 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805109409, + "bounds": { + "minlat": 40.7710136, + "minlon": -73.9406560, + "maxlat": 40.7712193, + "maxlon": -73.9402566 + }, + "nodes": [ + 7529956853, + 7529896577, + 7529909892 + ], + "geometry": [ + { "lat": 40.7712193, "lon": -73.9406560 }, + { "lat": 40.7710648, "lon": -73.9403979 }, + { "lat": 40.7710136, "lon": -73.9402566 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805109411, + "bounds": { + "minlat": 40.7716261, + "minlon": -73.9415856, + "maxlat": 40.7718608, + "maxlon": -73.9414114 + }, + "nodes": [ + 7529956855, + 7529956856 + ], + "geometry": [ + { "lat": 40.7718608, "lon": -73.9414114 }, + { "lat": 40.7716261, "lon": -73.9415856 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805109412, + "bounds": { + "minlat": 40.7713052, + "minlon": -73.9415641, + "maxlat": 40.7714778, + "maxlon": -73.9411046 + }, + "nodes": [ + 7529956857, + 7530016542, + 8265115006, + 7529956858 + ], + "geometry": [ + { "lat": 40.7714778, "lon": -73.9415641 }, + { "lat": 40.7714589, "lon": -73.9415230 }, + { "lat": 40.7713508, "lon": -73.9413150 }, + { "lat": 40.7713052, "lon": -73.9411046 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805109413, + "bounds": { + "minlat": 40.7712193, + "minlon": -73.9407233, + "maxlat": 40.7713448, + "maxlon": -73.9406560 + }, + "nodes": [ + 7529956859, + 8265115010, + 7529956853 + ], + "geometry": [ + { "lat": 40.7713448, "lon": -73.9407233 }, + { "lat": 40.7712735, "lon": -73.9406997 }, + { "lat": 40.7712193, "lon": -73.9406560 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805109414, + "bounds": { + "minlat": 40.7713052, + "minlon": -73.9411046, + "maxlat": 40.7713915, + "maxlon": -73.9408332 + }, + "nodes": [ + 7529956858, + 7530016541, + 8265115009, + 7529956860 + ], + "geometry": [ + { "lat": 40.7713052, "lon": -73.9411046 }, + { "lat": 40.7713307, "lon": -73.9409916 }, + { "lat": 40.7713791, "lon": -73.9408924 }, + { "lat": 40.7713915, "lon": -73.9408332 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805109415, + "bounds": { + "minlat": 40.7713448, + "minlon": -73.9408332, + "maxlat": 40.7713915, + "maxlon": -73.9407233 + }, + "nodes": [ + 7529956860, + 7529956859 + ], + "geometry": [ + { "lat": 40.7713915, "lon": -73.9408332 }, + { "lat": 40.7713448, "lon": -73.9407233 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805109416, + "bounds": { + "minlat": 40.7714778, + "minlon": -73.9415892, + "maxlat": 40.7716261, + "maxlon": -73.9415641 + }, + "nodes": [ + 7529956856, + 11759521529, + 7529956857 + ], + "geometry": [ + { "lat": 40.7716261, "lon": -73.9415856 }, + { "lat": 40.7715519, "lon": -73.9415892 }, + { "lat": 40.7714778, "lon": -73.9415641 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805109417, + "bounds": { + "minlat": 40.7701483, + "minlon": -73.9430032, + "maxlat": 40.7702966, + "maxlon": -73.9426894 + }, + "nodes": [ + 7529956861, + 7529956862 + ], + "geometry": [ + { "lat": 40.7702966, "lon": -73.9430032 }, + { "lat": 40.7701483, "lon": -73.9426894 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805109418, + "bounds": { + "minlat": 40.7699157, + "minlon": -73.9431172, + "maxlat": 40.7702438, + "maxlon": -73.9428637 + }, + "nodes": [ + 7529956863, + 7529956864 + ], + "geometry": [ + { "lat": 40.7702438, "lon": -73.9431172 }, + { "lat": 40.7699157, "lon": -73.9428637 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805109419, + "bounds": { + "minlat": 40.7699157, + "minlon": -73.9428637, + "maxlat": 40.7701483, + "maxlon": -73.9426894 + }, + "nodes": [ + 7529956862, + 7529956864 + ], + "geometry": [ + { "lat": 40.7701483, "lon": -73.9426894 }, + { "lat": 40.7699157, "lon": -73.9428637 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805109421, + "bounds": { + "minlat": 40.7702438, + "minlon": -73.9431172, + "maxlat": 40.7702966, + "maxlon": -73.9430032 + }, + "nodes": [ + 7529956863, + 7529976571, + 7529956866, + 7529956861 + ], + "geometry": [ + { "lat": 40.7702438, "lon": -73.9431172 }, + { "lat": 40.7702695, "lon": -73.9430617 }, + { "lat": 40.7702739, "lon": -73.9430521 }, + { "lat": 40.7702966, "lon": -73.9430032 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805116526, + "bounds": { + "minlat": 40.7713307, + "minlon": -73.9412277, + "maxlat": 40.7714873, + "maxlon": -73.9409916 + }, + "nodes": [ + 7530016540, + 8265115008, + 7530016541 + ], + "geometry": [ + { "lat": 40.7714873, "lon": -73.9412277 }, + { "lat": 40.7714261, "lon": -73.9411109 }, + { "lat": 40.7713307, "lon": -73.9409916 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805116527, + "bounds": { + "minlat": 40.7714589, + "minlon": -73.9415230, + "maxlat": 40.7714968, + "maxlon": -73.9412277 + }, + "nodes": [ + 7530016540, + 8265115007, + 7530016542 + ], + "geometry": [ + { "lat": 40.7714873, "lon": -73.9412277 }, + { "lat": 40.7714968, "lon": -73.9413979 }, + { "lat": 40.7714589, "lon": -73.9415230 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805122965, + "bounds": { + "minlat": 40.7704079, + "minlon": -73.9436706, + "maxlat": 40.7709567, + "maxlon": -73.9428666 + }, + "nodes": [ + 9913669130, + 9913669131, + 9913669132, + 9913669133, + 593419202, + 9913669134, + 9913669135, + 2896419846, + 9913669136, + 9913669137, + 9913669138, + 9913669139, + 593419199, + 7529976543, + 9913669140, + 9913669141, + 9913669142 + ], + "geometry": [ + { "lat": 40.7709098, "lon": -73.9428666 }, + { "lat": 40.7709240, "lon": -73.9428949 }, + { "lat": 40.7709345, "lon": -73.9429203 }, + { "lat": 40.7709437, "lon": -73.9429473 }, + { "lat": 40.7709496, "lon": -73.9429773 }, + { "lat": 40.7709546, "lon": -73.9430066 }, + { "lat": 40.7709567, "lon": -73.9430295 }, + { "lat": 40.7709550, "lon": -73.9430565 }, + { "lat": 40.7709492, "lon": -73.9430801 }, + { "lat": 40.7709384, "lon": -73.9431057 }, + { "lat": 40.7709260, "lon": -73.9431311 }, + { "lat": 40.7709087, "lon": -73.9431547 }, + { "lat": 40.7708900, "lon": -73.9431763 }, + { "lat": 40.7705915, "lon": -73.9434552 }, + { "lat": 40.7705569, "lon": -73.9434915 }, + { "lat": 40.7704947, "lon": -73.9435639 }, + { "lat": 40.7704079, "lon": -73.9436706 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "10 mph", + "name": "West Road", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 805122967, + "bounds": { + "minlat": 40.7703951, + "minlon": -73.9434552, + "maxlat": 40.7705915, + "maxlon": -73.9433515 + }, + "nodes": [ + 7529976543, + 8265114904, + 9913669143, + 8265114902, + 9913669144, + 9913669145, + 8265114903, + 7529976544 + ], + "geometry": [ + { "lat": 40.7705915, "lon": -73.9434552 }, + { "lat": 40.7705430, "lon": -73.9434445 }, + { "lat": 40.7705144, "lon": -73.9434341 }, + { "lat": 40.7704873, "lon": -73.9434218 }, + { "lat": 40.7704610, "lon": -73.9434055 }, + { "lat": 40.7704490, "lon": -73.9433964 }, + { "lat": 40.7704317, "lon": -73.9433834 }, + { "lat": 40.7703951, "lon": -73.9433515 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "10 mph", + "name": "West Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 805122978, + "bounds": { + "minlat": 40.7702695, + "minlon": -73.9431235, + "maxlat": 40.7703855, + "maxlon": -73.9430617 + }, + "nodes": [ + 7529976570, + 8265114949, + 7529976571 + ], + "geometry": [ + { "lat": 40.7703855, "lon": -73.9431235 }, + { "lat": 40.7703383, "lon": -73.9430982 }, + { "lat": 40.7702695, "lon": -73.9430617 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 805206081, + "bounds": { + "minlat": 40.7471329, + "minlon": -73.9169252, + "maxlat": 40.7472409, + "maxlon": -73.9160021 + }, + "nodes": [ + 42797003, + 10762233987, + 7530789565, + 10762233993, + 7530789523 + ], + "geometry": [ + { "lat": 40.7472409, "lon": -73.9169252 }, + { "lat": 40.7472336, "lon": -73.9168623 }, + { "lat": 40.7471899, "lon": -73.9164869 }, + { "lat": 40.7471469, "lon": -73.9161214 }, + { "lat": 40.7471329, "lon": -73.9160021 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "1" + } +}, +{ + "type": "way", + "id": 805206082, + "bounds": { + "minlat": 40.7470396, + "minlon": -73.9178994, + "maxlat": 40.7471423, + "maxlon": -73.9169660 + }, + "nodes": [ + 7530789524, + 10762233997, + 7530789542, + 7530789576, + 10762234004, + 42797019 + ], + "geometry": [ + { "lat": 40.7471423, "lon": -73.9178994 }, + { "lat": 40.7471341, "lon": -73.9178251 }, + { "lat": 40.7470926, "lon": -73.9174498 }, + { "lat": 40.7470787, "lon": -73.9173239 }, + { "lat": 40.7470489, "lon": -73.9170510 }, + { "lat": 40.7470396, "lon": -73.9169660 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "service": "alley", + "width": "1" + } +}, +{ + "type": "way", + "id": 805206083, + "bounds": { + "minlat": 40.7475916, + "minlon": -73.9187364, + "maxlat": 40.7476959, + "maxlon": -73.9178092 + }, + "nodes": [ + 7530789526, + 10762234037, + 7530789552, + 10762234032, + 7530789527 + ], + "geometry": [ + { "lat": 40.7476959, "lon": -73.9187364 }, + { "lat": 40.7476877, "lon": -73.9186631 }, + { "lat": 40.7476453, "lon": -73.9182860 }, + { "lat": 40.7476004, "lon": -73.9178874 }, + { "lat": 40.7475916, "lon": -73.9178092 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "surface": "concrete", + "width": "2" + } +}, +{ + "type": "way", + "id": 805206084, + "bounds": { + "minlat": 40.7477400, + "minlon": -73.9177584, + "maxlat": 40.7478440, + "maxlon": -73.9168250 + }, + "nodes": [ + 7530789528, + 10762233998, + 7530789554, + 10762234003, + 7530789529 + ], + "geometry": [ + { "lat": 40.7478440, "lon": -73.9177584 }, + { "lat": 40.7478362, "lon": -73.9176890 }, + { "lat": 40.7477933, "lon": -73.9173057 }, + { "lat": 40.7477496, "lon": -73.9169112 }, + { "lat": 40.7477400, "lon": -73.9168250 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "service": "alley", + "width": "2" + } +}, +{ + "type": "way", + "id": 805206085, + "bounds": { + "minlat": 40.7485164, + "minlon": -73.9195022, + "maxlat": 40.7486260, + "maxlon": -73.9185711 + }, + "nodes": [ + 7530789530, + 10762234027, + 7530789538, + 10762234020, + 7530789531 + ], + "geometry": [ + { "lat": 40.7486260, "lon": -73.9195022 }, + { "lat": 40.7486162, "lon": -73.9194191 }, + { "lat": 40.7485734, "lon": -73.9190555 }, + { "lat": 40.7485285, "lon": -73.9186737 }, + { "lat": 40.7485164, "lon": -73.9185711 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "2" + } +}, +{ + "type": "way", + "id": 805206086, + "bounds": { + "minlat": 40.7476312, + "minlon": -73.9196791, + "maxlat": 40.7477378, + "maxlon": -73.9187495 + }, + "nodes": [ + 7530789532, + 10762234026, + 7530789541, + 10762234021, + 7530789533 + ], + "geometry": [ + { "lat": 40.7477378, "lon": -73.9196791 }, + { "lat": 40.7477285, "lon": -73.9195981 }, + { "lat": 40.7476862, "lon": -73.9192294 }, + { "lat": 40.7476417, "lon": -73.9188409 }, + { "lat": 40.7476312, "lon": -73.9187495 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "2" + } +}, +{ + "type": "way", + "id": 805206087, + "bounds": { + "minlat": 40.7483304, + "minlon": -73.9185875, + "maxlat": 40.7484348, + "maxlon": -73.9176608 + }, + "nodes": [ + 7530789534, + 10762234038, + 7530789556, + 10762234031, + 7530789535 + ], + "geometry": [ + { "lat": 40.7484348, "lon": -73.9185875 }, + { "lat": 40.7484262, "lon": -73.9185111 }, + { "lat": 40.7483850, "lon": -73.9181455 }, + { "lat": 40.7483405, "lon": -73.9177507 }, + { "lat": 40.7483304, "lon": -73.9176608 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "2" + } +}, +{ + "type": "way", + "id": 805206088, + "bounds": { + "minlat": 40.7477422, + "minlon": -73.9168015, + "maxlat": 40.7478533, + "maxlon": -73.9158773 + }, + "nodes": [ + 42798342, + 10762233988, + 7530789561, + 10762233992, + 42805120 + ], + "geometry": [ + { "lat": 40.7478533, "lon": -73.9168015 }, + { "lat": 40.7478458, "lon": -73.9167392 }, + { "lat": 40.7477994, "lon": -73.9163542 }, + { "lat": 40.7477546, "lon": -73.9159806 }, + { "lat": 40.7477422, "lon": -73.9158773 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "2" + } +}, +{ + "type": "way", + "id": 805206089, + "bounds": { + "minlat": 40.7484161, + "minlon": -73.9190870, + "maxlat": 40.7487034, + "maxlon": -73.9190294 + }, + "nodes": [ + 7530789536, + 7530789538, + 7530789537 + ], + "geometry": [ + { "lat": 40.7487034, "lon": -73.9190294 }, + { "lat": 40.7485734, "lon": -73.9190555 }, + { "lat": 40.7484161, "lon": -73.9190870 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley" + } +}, +{ + "type": "way", + "id": 805206090, + "bounds": { + "minlat": 40.7475575, + "minlon": -73.9192550, + "maxlat": 40.7479774, + "maxlon": -73.9191715 + }, + "nodes": [ + 7530789539, + 7530789541, + 7530789540 + ], + "geometry": [ + { "lat": 40.7479774, "lon": -73.9191715 }, + { "lat": 40.7476862, "lon": -73.9192294 }, + { "lat": 40.7475575, "lon": -73.9192550 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley" + } +}, +{ + "type": "way", + "id": 805206091, + "bounds": { + "minlat": 40.7467367, + "minlon": -73.9176753, + "maxlat": 40.7470926, + "maxlon": -73.9172726 + }, + "nodes": [ + 7530789542, + 7530789543, + 7530789544, + 7530789545, + 7530789546, + 7530789547, + 7530789548, + 7530789543 + ], + "geometry": [ + { "lat": 40.7470926, "lon": -73.9174498 }, + { "lat": 40.7469497, "lon": -73.9174794 }, + { "lat": 40.7469729, "lon": -73.9176631 }, + { "lat": 40.7469173, "lon": -73.9176753 }, + { "lat": 40.7467367, "lon": -73.9175120 }, + { "lat": 40.7468523, "lon": -73.9172896 }, + { "lat": 40.7469229, "lon": -73.9172726 }, + { "lat": 40.7469497, "lon": -73.9174794 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley" + } +}, +{ + "type": "way", + "id": 805206092, + "bounds": { + "minlat": 40.7465127, + "minlon": -73.9175567, + "maxlat": 40.7467367, + "maxlon": -73.9175120 + }, + "nodes": [ + 7530789546, + 10762233995, + 7530789549 + ], + "geometry": [ + { "lat": 40.7467367, "lon": -73.9175120 }, + { "lat": 40.7466059, "lon": -73.9175381 }, + { "lat": 40.7465127, "lon": -73.9175567 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "layer": "-1", + "motor_vehicle": "no", + "service": "alley" + } +}, +{ + "type": "way", + "id": 805206093, + "bounds": { + "minlat": 40.7474954, + "minlon": -73.9183155, + "maxlat": 40.7477959, + "maxlon": -73.9182562 + }, + "nodes": [ + 7530789550, + 7530789552, + 7530789551 + ], + "geometry": [ + { "lat": 40.7477959, "lon": -73.9182562 }, + { "lat": 40.7476453, "lon": -73.9182860 }, + { "lat": 40.7474954, "lon": -73.9183155 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "1" + } +}, +{ + "type": "way", + "id": 805206094, + "bounds": { + "minlat": 40.7476364, + "minlon": -73.9173390, + "maxlat": 40.7479325, + "maxlon": -73.9172761 + }, + "nodes": [ + 4312176716, + 7530789554, + 7530789553 + ], + "geometry": [ + { "lat": 40.7479325, "lon": -73.9172761 }, + { "lat": 40.7477933, "lon": -73.9173057 }, + { "lat": 40.7476364, "lon": -73.9173390 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "1" + } +}, +{ + "type": "way", + "id": 805206095, + "bounds": { + "minlat": 40.7482356, + "minlon": -73.9181777, + "maxlat": 40.7485489, + "maxlon": -73.9181144 + }, + "nodes": [ + 7530789557, + 7530789556, + 7530789555 + ], + "geometry": [ + { "lat": 40.7485489, "lon": -73.9181144 }, + { "lat": 40.7483850, "lon": -73.9181455 }, + { "lat": 40.7482356, "lon": -73.9181777 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "1" + } +}, +{ + "type": "way", + "id": 805206097, + "bounds": { + "minlat": 40.7484968, + "minlon": -73.9162265, + "maxlat": 40.7485943, + "maxlon": -73.9162097 + }, + "nodes": [ + 4312183410, + 7530789559, + 4312183409 + ], + "geometry": [ + { "lat": 40.7485943, "lon": -73.9162097 }, + { "lat": 40.7485385, "lon": -73.9162201 }, + { "lat": 40.7484968, "lon": -73.9162265 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "1" + } +}, +{ + "type": "way", + "id": 805206098, + "bounds": { + "minlat": 40.7476680, + "minlon": -73.9163844, + "maxlat": 40.7479574, + "maxlon": -73.9163185 + }, + "nodes": [ + 4312183408, + 7530789561, + 7530789560 + ], + "geometry": [ + { "lat": 40.7479574, "lon": -73.9163185 }, + { "lat": 40.7477994, "lon": -73.9163542 }, + { "lat": 40.7476680, "lon": -73.9163844 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "1" + } +}, +{ + "type": "way", + "id": 805206099, + "bounds": { + "minlat": 40.7477001, + "minlon": -73.9158662, + "maxlat": 40.7478017, + "maxlon": -73.9149390 + }, + "nodes": [ + 7530789562, + 10762221371, + 7667155784, + 7530789563 + ], + "geometry": [ + { "lat": 40.7478017, "lon": -73.9158662 }, + { "lat": 40.7477922, "lon": -73.9157788 }, + { "lat": 40.7477090, "lon": -73.9150120 }, + { "lat": 40.7477001, "lon": -73.9149390 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 805206100, + "bounds": { + "minlat": 40.7463540, + "minlon": -73.9161557, + "maxlat": 40.7477422, + "maxlon": -73.9158773 + }, + "nodes": [ + 42805120, + 42798340, + 10774439437, + 7530789523, + 4614980640, + 10074123173, + 42859957 + ], + "geometry": [ + { "lat": 40.7477422, "lon": -73.9158773 }, + { "lat": 40.7474380, "lon": -73.9159410 }, + { "lat": 40.7473957, "lon": -73.9159495 }, + { "lat": 40.7471329, "lon": -73.9160021 }, + { "lat": 40.7469614, "lon": -73.9160364 }, + { "lat": 40.7464433, "lon": -73.9161380 }, + { "lat": 40.7463540, "lon": -73.9161557 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxheight": "11'5\"", + "maxspeed": "20 mph", + "name": "48th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 805206101, + "bounds": { + "minlat": 40.7471899, + "minlon": -73.9164869, + "maxlat": 40.7473466, + "maxlon": -73.9164492 + }, + "nodes": [ + 7530789564, + 7530789565 + ], + "geometry": [ + { "lat": 40.7473466, "lon": -73.9164492 }, + { "lat": 40.7471899, "lon": -73.9164869 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "1" + } +}, +{ + "type": "way", + "id": 805206103, + "bounds": { + "minlat": 40.7469590, + "minlon": -73.9198110, + "maxlat": 40.7470752, + "maxlon": -73.9188850 + }, + "nodes": [ + 7530789568, + 10762234025, + 7530789573, + 10762234022, + 7530789569 + ], + "geometry": [ + { "lat": 40.7470752, "lon": -73.9198110 }, + { "lat": 40.7470657, "lon": -73.9197350 }, + { "lat": 40.7470195, "lon": -73.9193669 }, + { "lat": 40.7469698, "lon": -73.9189708 }, + { "lat": 40.7469590, "lon": -73.9188850 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "1" + } +}, +{ + "type": "way", + "id": 805206104, + "bounds": { + "minlat": 40.7468779, + "minlon": -73.9188791, + "maxlat": 40.7469880, + "maxlon": -73.9179524 + }, + "nodes": [ + 7530789570, + 10762234036, + 7530789575, + 10762234033, + 7530789571 + ], + "geometry": [ + { "lat": 40.7469880, "lon": -73.9188791 }, + { "lat": 40.7469786, "lon": -73.9187997 }, + { "lat": 40.7469356, "lon": -73.9184379 }, + { "lat": 40.7468876, "lon": -73.9180344 }, + { "lat": 40.7468779, "lon": -73.9179524 } + ], + "tags": { + "access": "private", + "highway": "service", + "motor_vehicle": "no", + "service": "alley", + "width": "1" + } +}, +{ + "type": "way", + "id": 805253319, + "bounds": { + "minlat": 40.8817560, + "minlon": -73.9534173, + "maxlat": 40.8820534, + "maxlon": -73.9526715 + }, + "nodes": [ + 7531347162, + 7531347163, + 7936517751 + ], + "geometry": [ + { "lat": 40.8817862, "lon": -73.9526715 }, + { "lat": 40.8820534, "lon": -73.9531578 }, + { "lat": 40.8817560, "lon": -73.9534173 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805340391, + "bounds": { + "minlat": 40.8787533, + "minlon": -73.9158016, + "maxlat": 40.8788318, + "maxlon": -73.9157156 + }, + "nodes": [ + 7532175317, + 11998094746, + 7532175318 + ], + "geometry": [ + { "lat": 40.8787533, "lon": -73.9157156 }, + { "lat": 40.8787803, "lon": -73.9157452 }, + { "lat": 40.8788318, "lon": -73.9158016 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805465679, + "bounds": { + "minlat": 40.7182046, + "minlon": -73.9594722, + "maxlat": 40.7185202, + "maxlon": -73.9591333 + }, + "nodes": [ + 11701389388, + 11701389387 + ], + "geometry": [ + { "lat": 40.7185202, "lon": -73.9591333 }, + { "lat": 40.7182046, "lon": -73.9594722 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 805465680, + "bounds": { + "minlat": 40.7105221, + "minlon": -73.9662060, + "maxlat": 40.7106085, + "maxlon": -73.9654805 + }, + "nodes": [ + 4207788765, + 9779538170, + 4207788766 + ], + "geometry": [ + { "lat": 40.7105221, "lon": -73.9654805 }, + { "lat": 40.7105345, "lon": -73.9655846 }, + { "lat": 40.7106085, "lon": -73.9662060 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 805465681, + "bounds": { + "minlat": 40.7213970, + "minlon": -73.9584601, + "maxlat": 40.7229006, + "maxlon": -73.9560380 + }, + "nodes": [ + 42514549, + 9794890677, + 9998760562, + 9779533064, + 42506300, + 3285697439, + 9998760559 + ], + "geometry": [ + { "lat": 40.7213970, "lon": -73.9560380 }, + { "lat": 40.7214454, "lon": -73.9561216 }, + { "lat": 40.7222214, "lon": -73.9573650 }, + { "lat": 40.7222440, "lon": -73.9574014 }, + { "lat": 40.7222828, "lon": -73.9574639 }, + { "lat": 40.7223286, "lon": -73.9575378 }, + { "lat": 40.7229006, "lon": -73.9584601 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North 12th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "12th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 805465682, + "bounds": { + "minlat": 40.7213970, + "minlon": -73.9560380, + "maxlat": 40.7224522, + "maxlon": -73.9547639 + }, + "nodes": [ + 42514549, + 9794890676, + 42488169, + 9864855684, + 11069869467, + 12092679822, + 12089563048, + 9864855685, + 42479249 + ], + "geometry": [ + { "lat": 40.7213970, "lon": -73.9560380 }, + { "lat": 40.7214489, "lon": -73.9559777 }, + { "lat": 40.7219494, "lon": -73.9554455 }, + { "lat": 40.7222955, "lon": -73.9550678 }, + { "lat": 40.7223539, "lon": -73.9549916 }, + { "lat": 40.7223959, "lon": -73.9549166 }, + { "lat": 40.7224148, "lon": -73.9548734 }, + { "lat": 40.7224178, "lon": -73.9548675 }, + { "lat": 40.7224522, "lon": -73.9547639 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 805532974, + "bounds": { + "minlat": 40.8266902, + "minlon": -73.9801903, + "maxlat": 40.8269173, + "maxlon": -73.9799598 + }, + "nodes": [ + 7533716667, + 7533716668 + ], + "geometry": [ + { "lat": 40.8269173, "lon": -73.9799598 }, + { "lat": 40.8266902, "lon": -73.9801903 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 805581228, + "bounds": { + "minlat": 40.7054557, + "minlon": -73.9479830, + "maxlat": 40.7056044, + "maxlon": -73.9462609 + }, + "nodes": [ + 42476783, + 9752593941, + 5487724343, + 5487724348, + 9752593910, + 42476779 + ], + "geometry": [ + { "lat": 40.7056044, "lon": -73.9462609 }, + { "lat": 40.7055932, "lon": -73.9463895 }, + { "lat": 40.7055363, "lon": -73.9470496 }, + { "lat": 40.7055220, "lon": -73.9472145 }, + { "lat": 40.7054665, "lon": -73.9478579 }, + { "lat": 40.7054557, "lon": -73.9479830 } + ], + "tags": { + "highway": "residential", + "name": "Boerum Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 805581229, + "bounds": { + "minlat": 40.7034220, + "minlon": -73.9462609, + "maxlat": 40.7056044, + "maxlon": -73.9459090 + }, + "nodes": [ + 42476783, + 9752593944, + 6212365403, + 6212365400, + 9282161493, + 7154209450, + 9755373066, + 42491139 + ], + "geometry": [ + { "lat": 40.7056044, "lon": -73.9462609 }, + { "lat": 40.7055151, "lon": -73.9462505 }, + { "lat": 40.7051586, "lon": -73.9461923 }, + { "lat": 40.7048907, "lon": -73.9461486 }, + { "lat": 40.7041501, "lon": -73.9460272 }, + { "lat": 40.7036304, "lon": -73.9459420 }, + { "lat": 40.7034974, "lon": -73.9459209 }, + { "lat": 40.7034220, "lon": -73.9459090 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Leonard Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 805581230, + "bounds": { + "minlat": 40.7070110, + "minlon": -73.9465230, + "maxlat": 40.7076540, + "maxlon": -73.9398380 + }, + "nodes": [ + 42491149, + 9959900695, + 6212365433, + 42523544, + 6212365435, + 6943638508, + 42467828, + 6943638505, + 6943637855, + 42502953, + 6943637852, + 6943630243, + 42513657 + ], + "geometry": [ + { "lat": 40.7070110, "lon": -73.9465230 }, + { "lat": 40.7070211, "lon": -73.9464198 }, + { "lat": 40.7071608, "lon": -73.9450175 }, + { "lat": 40.7071690, "lon": -73.9449040 }, + { "lat": 40.7071779, "lon": -73.9448126 }, + { "lat": 40.7073246, "lon": -73.9433095 }, + { "lat": 40.7073350, "lon": -73.9432020 }, + { "lat": 40.7073450, "lon": -73.9430964 }, + { "lat": 40.7074846, "lon": -73.9416069 }, + { "lat": 40.7074930, "lon": -73.9415180 }, + { "lat": 40.7075007, "lon": -73.9414379 }, + { "lat": 40.7076430, "lon": -73.9399524 }, + { "lat": 40.7076540, "lon": -73.9398380 } + ], + "tags": { + "highway": "residential", + "name": "Montrose Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 805581231, + "bounds": { + "minlat": 40.7056044, + "minlon": -73.9465230, + "maxlat": 40.7070110, + "maxlon": -73.9462609 + }, + "nodes": [ + 42491149, + 7196199126, + 8403336512, + 6212365417, + 9752593942, + 42476783 + ], + "geometry": [ + { "lat": 40.7070110, "lon": -73.9465230 }, + { "lat": 40.7069392, "lon": -73.9464818 }, + { "lat": 40.7063907, "lon": -73.9463911 }, + { "lat": 40.7058063, "lon": -73.9462944 }, + { "lat": 40.7057011, "lon": -73.9462769 }, + { "lat": 40.7056044, "lon": -73.9462609 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Leonard Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 805586462, + "bounds": { + "minlat": 40.7226360, + "minlon": -73.9541830, + "maxlat": 40.7234878, + "maxlon": -73.9516433 + }, + "nodes": [ + 42479254, + 5481933812, + 42479259, + 42479268, + 12096336755, + 42479273, + 12096336756, + 9789402806, + 42479277 + ], + "geometry": [ + { "lat": 40.7226360, "lon": -73.9541830 }, + { "lat": 40.7226974, "lon": -73.9539997 }, + { "lat": 40.7227736, "lon": -73.9537792 }, + { "lat": 40.7229256, "lon": -73.9533185 }, + { "lat": 40.7231928, "lon": -73.9525191 }, + { "lat": 40.7232026, "lon": -73.9524918 }, + { "lat": 40.7232092, "lon": -73.9524724 }, + { "lat": 40.7234581, "lon": -73.9517352 }, + { "lat": 40.7234878, "lon": -73.9516433 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "maxspeed:conditional": "20 mph @ (Mo-Fr 07:00-18:00)", + "name": "Nassau Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 805626709, + "bounds": { + "minlat": 40.8255617, + "minlon": -73.9933014, + "maxlat": 40.8265379, + "maxlon": -73.9924190 + }, + "nodes": [ + 7534353938, + 7529710580, + 7534353939, + 7534353940 + ], + "geometry": [ + { "lat": 40.8265379, "lon": -73.9924190 }, + { "lat": 40.8256764, "lon": -73.9932565 }, + { "lat": 40.8256302, "lon": -73.9933014 }, + { "lat": 40.8255617, "lon": -73.9931822 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 805878053, + "bounds": { + "minlat": 40.7148609, + "minlon": -74.0099652, + "maxlat": 40.7150491, + "maxlon": -74.0097936 + }, + "nodes": [ + 7536025163, + 12350936592, + 8279851489, + 11461123801, + 11461123802, + 7536025164, + 11461123800, + 8279851490, + 12350936588, + 7536025166 + ], + "geometry": [ + { "lat": 40.7148609, "lon": -74.0097936 }, + { "lat": 40.7148902, "lon": -74.0098592 }, + { "lat": 40.7148990, "lon": -74.0098790 }, + { "lat": 40.7149311, "lon": -74.0099509 }, + { "lat": 40.7149415, "lon": -74.0099625 }, + { "lat": 40.7149550, "lon": -74.0099652 }, + { "lat": 40.7149696, "lon": -74.0099577 }, + { "lat": 40.7149960, "lon": -74.0099372 }, + { "lat": 40.7150137, "lon": -74.0099234 }, + { "lat": 40.7150491, "lon": -74.0098959 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 806098200, + "bounds": { + "minlat": 40.8286158, + "minlon": -73.9808968, + "maxlat": 40.8292400, + "maxlon": -73.9805185 + }, + "nodes": [ + 7538220850, + 7538220851, + 8971272838, + 7533932724, + 7533932723, + 7533932722 + ], + "geometry": [ + { "lat": 40.8292400, "lon": -73.9805418 }, + { "lat": 40.8290457, "lon": -73.9807392 }, + { "lat": 40.8290118, "lon": -73.9806784 }, + { "lat": 40.8287845, "lon": -73.9808968 }, + { "lat": 40.8286444, "lon": -73.9806426 }, + { "lat": 40.8286158, "lon": -73.9805185 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806168788, + "bounds": { + "minlat": 40.8281893, + "minlon": -73.9810957, + "maxlat": 40.8286341, + "maxlon": -73.9807549 + }, + "nodes": [ + 7538747878, + 7538747879, + 7538747880, + 7538747881, + 7538747882 + ], + "geometry": [ + { "lat": 40.8281893, "lon": -73.9807549 }, + { "lat": 40.8283778, "lon": -73.9810957 }, + { "lat": 40.8284670, "lon": -73.9810162 }, + { "lat": 40.8285141, "lon": -73.9810104 }, + { "lat": 40.8286341, "lon": -73.9808923 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806168789, + "bounds": { + "minlat": 40.8284670, + "minlon": -73.9810162, + "maxlat": 40.8284907, + "maxlon": -73.9809657 + }, + "nodes": [ + 7538747880, + 7538747883, + 11013287210 + ], + "geometry": [ + { "lat": 40.8284670, "lon": -73.9810162 }, + { "lat": 40.8284763, "lon": -73.9809800 }, + { "lat": 40.8284907, "lon": -73.9809657 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806168816, + "bounds": { + "minlat": 40.8282741, + "minlon": -73.9839182, + "maxlat": 40.8284130, + "maxlon": -73.9836639 + }, + "nodes": [ + 7538748024, + 7111640164 + ], + "geometry": [ + { "lat": 40.8284130, "lon": -73.9839182 }, + { "lat": 40.8282741, "lon": -73.9836639 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806168817, + "bounds": { + "minlat": 40.8281338, + "minlon": -73.9840284, + "maxlat": 40.8282924, + "maxlon": -73.9837048 + }, + "nodes": [ + 7111640168, + 7538748025, + 7538748026 + ], + "geometry": [ + { "lat": 40.8281338, "lon": -73.9837048 }, + { "lat": 40.8281759, "lon": -73.9838143 }, + { "lat": 40.8282924, "lon": -73.9840284 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806168818, + "bounds": { + "minlat": 40.8280625, + "minlon": -73.9837048, + "maxlat": 40.8282741, + "maxlon": -73.9834726 + }, + "nodes": [ + 7111640168, + 7538748027, + 7538748028, + 7111640164 + ], + "geometry": [ + { "lat": 40.8281338, "lon": -73.9837048 }, + { "lat": 40.8280625, "lon": -73.9835746 }, + { "lat": 40.8281640, "lon": -73.9834726 }, + { "lat": 40.8282741, "lon": -73.9836639 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 806169764, + "bounds": { + "minlat": 40.8006933, + "minlon": -73.9535577, + "maxlat": 40.8019538, + "maxlon": -73.9505653 + }, + "nodes": [ + 42448506, + 2141026523, + 8758345345, + 10165996978, + 42433165, + 10165996991, + 8807518807, + 3099326121, + 42453216 + ], + "geometry": [ + { "lat": 40.8019538, "lon": -73.9535577 }, + { "lat": 40.8018838, "lon": -73.9533927 }, + { "lat": 40.8018398, "lon": -73.9532904 }, + { "lat": 40.8015925, "lon": -73.9527051 }, + { "lat": 40.8015271, "lon": -73.9525498 }, + { "lat": 40.8014696, "lon": -73.9524178 }, + { "lat": 40.8007902, "lon": -73.9507950 }, + { "lat": 40.8007573, "lon": -73.9507166 }, + { "lat": 40.8006933, "lon": -73.9505653 } + ], + "tags": { + "highway": "residential", + "name": "West 114th Street", + "name:ru": "Западная 114-я стрит", + "name_1": "West 114 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806169765, + "bounds": { + "minlat": 40.8031162, + "minlon": -73.9563200, + "maxlat": 40.8069824, + "maxlon": -73.9534985 + }, + "nodes": [ + 42435755, + 11298975875, + 10173400460, + 42435761, + 10173400459, + 11298975872, + 42435763, + 11298975871, + 11298919668, + 42435766, + 11298919667, + 5481863728, + 11298919664, + 4708064890, + 11298919663, + 10127369912, + 42435775, + 10127369910, + 11298919659, + 42429741 + ], + "geometry": [ + { "lat": 40.8031162, "lon": -73.9563200 }, + { "lat": 40.8031768, "lon": -73.9562760 }, + { "lat": 40.8037010, "lon": -73.9558956 }, + { "lat": 40.8037455, "lon": -73.9558634 }, + { "lat": 40.8038073, "lon": -73.9558181 }, + { "lat": 40.8043253, "lon": -73.9554376 }, + { "lat": 40.8044178, "lon": -73.9553696 }, + { "lat": 40.8045217, "lon": -73.9552935 }, + { "lat": 40.8050432, "lon": -73.9549113 }, + { "lat": 40.8050938, "lon": -73.9548742 }, + { "lat": 40.8051604, "lon": -73.9548257 }, + { "lat": 40.8053359, "lon": -73.9546981 }, + { "lat": 40.8056722, "lon": -73.9544524 }, + { "lat": 40.8057280, "lon": -73.9544117 }, + { "lat": 40.8057913, "lon": -73.9543656 }, + { "lat": 40.8062975, "lon": -73.9539976 }, + { "lat": 40.8063523, "lon": -73.9539576 }, + { "lat": 40.8064100, "lon": -73.9539156 }, + { "lat": 40.8069295, "lon": -73.9535370 }, + { "lat": 40.8069824, "lon": -73.9534985 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 806186790, + "bounds": { + "minlat": 40.8297911, + "minlon": -73.9848484, + "maxlat": 40.8301087, + "maxlon": -73.9845702 + }, + "nodes": [ + 6964929516, + 6964929508, + 6964929509, + 6964929510 + ], + "geometry": [ + { "lat": 40.8301087, "lon": -73.9848484 }, + { "lat": 40.8300923, "lon": -73.9848107 }, + { "lat": 40.8299605, "lon": -73.9845702 }, + { "lat": 40.8297911, "lon": -73.9846967 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806186791, + "bounds": { + "minlat": 40.8296500, + "minlon": -73.9852087, + "maxlat": 40.8299888, + "maxlon": -73.9846967 + }, + "nodes": [ + 6964929510, + 6964929511, + 6964929512, + 6964929513, + 6964929514, + 6964929515, + 6964929517, + 6964929510 + ], + "geometry": [ + { "lat": 40.8297911, "lon": -73.9846967 }, + { "lat": 40.8296500, "lon": -73.9848397 }, + { "lat": 40.8298539, "lon": -73.9852087 }, + { "lat": 40.8299213, "lon": -73.9851569 }, + { "lat": 40.8299025, "lon": -73.9851216 }, + { "lat": 40.8299888, "lon": -73.9850325 }, + { "lat": 40.8299597, "lon": -73.9849831 }, + { "lat": 40.8297911, "lon": -73.9846967 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806186804, + "bounds": { + "minlat": 40.8291875, + "minlon": -73.9874487, + "maxlat": 40.8293324, + "maxlon": -73.9866961 + }, + "nodes": [ + 7538917857, + 7538917891, + 7538917858, + 7538917860, + 7538917861, + 7538917862 + ], + "geometry": [ + { "lat": 40.8293324, "lon": -73.9874487 }, + { "lat": 40.8293188, "lon": -73.9873991 }, + { "lat": 40.8291973, "lon": -73.9869534 }, + { "lat": 40.8291875, "lon": -73.9868775 }, + { "lat": 40.8292333, "lon": -73.9868144 }, + { "lat": 40.8292323, "lon": -73.9866961 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 806186805, + "bounds": { + "minlat": 40.8291973, + "minlon": -73.9869534, + "maxlat": 40.8296012, + "maxlon": -73.9865816 + }, + "nodes": [ + 7538917858, + 7538917859 + ], + "geometry": [ + { "lat": 40.8291973, "lon": -73.9869534 }, + { "lat": 40.8296012, "lon": -73.9865816 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 806186812, + "bounds": { + "minlat": 40.8293188, + "minlon": -73.9873991, + "maxlat": 40.8298884, + "maxlon": -73.9869530 + }, + "nodes": [ + 7538917891, + 7538917892, + 7538917893, + 7538917894 + ], + "geometry": [ + { "lat": 40.8293188, "lon": -73.9873991 }, + { "lat": 40.8294080, "lon": -73.9871959 }, + { "lat": 40.8297572, "lon": -73.9869530 }, + { "lat": 40.8298884, "lon": -73.9870809 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 806186822, + "bounds": { + "minlat": 40.8274577, + "minlon": -73.9864653, + "maxlat": 40.8276997, + "maxlon": -73.9862376 + }, + "nodes": [ + 7538917951, + 7538917952 + ], + "geometry": [ + { "lat": 40.8274577, "lon": -73.9864653 }, + { "lat": 40.8276997, "lon": -73.9862376 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 806186823, + "bounds": { + "minlat": 40.8276997, + "minlon": -73.9864016, + "maxlat": 40.8277929, + "maxlon": -73.9862376 + }, + "nodes": [ + 7538917952, + 11013291464 + ], + "geometry": [ + { "lat": 40.8276997, "lon": -73.9862376 }, + { "lat": 40.8277929, "lon": -73.9864016 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806193317, + "bounds": { + "minlat": 40.8273985, + "minlon": -73.9818118, + "maxlat": 40.8279723, + "maxlon": -73.9812002 + }, + "nodes": [ + 7538966444, + 7538966445, + 7538966447, + 7538966446 + ], + "geometry": [ + { "lat": 40.8279723, "lon": -73.9812002 }, + { "lat": 40.8279022, "lon": -73.9813265 }, + { "lat": 40.8276570, "lon": -73.9815627 }, + { "lat": 40.8273985, "lon": -73.9818118 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 806193318, + "bounds": { + "minlat": 40.8274518, + "minlon": -73.9815985, + "maxlat": 40.8276570, + "maxlon": -73.9815004 + }, + "nodes": [ + 7538966447, + 7538966448, + 7538966449, + 7538966450, + 7538966451, + 7538966452, + 11013363514 + ], + "geometry": [ + { "lat": 40.8276570, "lon": -73.9815627 }, + { "lat": 40.8276273, "lon": -73.9815220 }, + { "lat": 40.8276062, "lon": -73.9815073 }, + { "lat": 40.8275881, "lon": -73.9815012 }, + { "lat": 40.8275688, "lon": -73.9815004 }, + { "lat": 40.8275489, "lon": -73.9815058 }, + { "lat": 40.8274518, "lon": -73.9815985 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806195278, + "bounds": { + "minlat": 40.7972671, + "minlon": -73.9435412, + "maxlat": 40.7985430, + "maxlon": -73.9405201 + }, + "nodes": [ + 42435396, + 4983782408, + 10197544083, + 7096519004, + 42435395, + 7096519012, + 6908565323, + 7096507155 + ], + "geometry": [ + { "lat": 40.7972671, "lon": -73.9405201 }, + { "lat": 40.7973412, "lon": -73.9406467 }, + { "lat": 40.7975629, "lon": -73.9411826 }, + { "lat": 40.7979131, "lon": -73.9420293 }, + { "lat": 40.7979500, "lon": -73.9421243 }, + { "lat": 40.7979850, "lon": -73.9422150 }, + { "lat": 40.7981055, "lon": -73.9425066 }, + { "lat": 40.7985430, "lon": -73.9435412 } + ], + "tags": { + "highway": "residential", + "name": "East 115th Street", + "name:ru": "Восточная 115-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806195279, + "bounds": { + "minlat": 40.7972671, + "minlon": -73.9405201, + "maxlat": 40.7979386, + "maxlon": -73.9400272 + }, + "nodes": [ + 42435396, + 4983782410, + 10166326199, + 42450071 + ], + "geometry": [ + { "lat": 40.7972671, "lon": -73.9405201 }, + { "lat": 40.7973307, "lon": -73.9404711 }, + { "lat": 40.7978593, "lon": -73.9400851 }, + { "lat": 40.7979386, "lon": -73.9400272 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 806195280, + "bounds": { + "minlat": 40.7878011, + "minlon": -73.9514729, + "maxlat": 40.7985684, + "maxlon": -73.9436083 + }, + "nodes": [ + 42453577, + 42445258, + 42458960, + 8735320753, + 42438947, + 6254630438, + 42430477, + 6254630501, + 6254630404, + 42434894, + 6254630482, + 6254630417, + 42436614, + 6254630439, + 6254630448, + 42459041, + 6254630457, + 6254630511, + 7076060068, + 42450460, + 6254630424, + 6256723720, + 42445817, + 6223478644, + 13713924050, + 6256725798, + 42436641, + 6256723691, + 7781090323, + 42459180, + 7781090326, + 7781090338, + 42434382, + 7781090346, + 7803460133, + 42458112, + 7803460132, + 7096518987, + 42449413, + 7096519022, + 596775855, + 13703505268, + 596775851, + 7924346770, + 42435392 + ], + "geometry": [ + { "lat": 40.7878011, "lon": -73.9514729 }, + { "lat": 40.7884393, "lon": -73.9510061 }, + { "lat": 40.7890550, "lon": -73.9505513 }, + { "lat": 40.7894674, "lon": -73.9502506 }, + { "lat": 40.7896807, "lon": -73.9500938 }, + { "lat": 40.7902577, "lon": -73.9496762 }, + { "lat": 40.7903128, "lon": -73.9496374 }, + { "lat": 40.7903734, "lon": -73.9495915 }, + { "lat": 40.7908839, "lon": -73.9492196 }, + { "lat": 40.7909386, "lon": -73.9491789 }, + { "lat": 40.7910050, "lon": -73.9491347 }, + { "lat": 40.7915111, "lon": -73.9487639 }, + { "lat": 40.7915693, "lon": -73.9487212 }, + { "lat": 40.7916317, "lon": -73.9486783 }, + { "lat": 40.7921392, "lon": -73.9483036 }, + { "lat": 40.7921962, "lon": -73.9482635 }, + { "lat": 40.7922585, "lon": -73.9482184 }, + { "lat": 40.7927762, "lon": -73.9478355 }, + { "lat": 40.7928444, "lon": -73.9477848 }, + { "lat": 40.7929011, "lon": -73.9477434 }, + { "lat": 40.7929713, "lon": -73.9476917 }, + { "lat": 40.7934930, "lon": -73.9473132 }, + { "lat": 40.7935411, "lon": -73.9472775 }, + { "lat": 40.7936079, "lon": -73.9472291 }, + { "lat": 40.7937806, "lon": -73.9471028 }, + { "lat": 40.7941219, "lon": -73.9468532 }, + { "lat": 40.7941810, "lon": -73.9468139 }, + { "lat": 40.7942371, "lon": -73.9467737 }, + { "lat": 40.7947512, "lon": -73.9463989 }, + { "lat": 40.7948058, "lon": -73.9463574 }, + { "lat": 40.7948703, "lon": -73.9463114 }, + { "lat": 40.7953735, "lon": -73.9459423 }, + { "lat": 40.7954276, "lon": -73.9459003 }, + { "lat": 40.7954972, "lon": -73.9458493 }, + { "lat": 40.7960097, "lon": -73.9454733 }, + { "lat": 40.7960700, "lon": -73.9454293 }, + { "lat": 40.7961206, "lon": -73.9453935 }, + { "lat": 40.7966377, "lon": -73.9450213 }, + { "lat": 40.7967023, "lon": -73.9449726 }, + { "lat": 40.7967623, "lon": -73.9449292 }, + { "lat": 40.7972998, "lon": -73.9445401 }, + { "lat": 40.7977296, "lon": -73.9442271 }, + { "lat": 40.7979898, "lon": -73.9440376 }, + { "lat": 40.7985128, "lon": -73.9436499 }, + { "lat": 40.7985684, "lon": -73.9436083 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 806316963, + "bounds": { + "minlat": 40.7197278, + "minlon": -73.9077507, + "maxlat": 40.7200229, + "maxlon": -73.9065022 + }, + "nodes": [ + 7540162438, + 12889324185, + 7540162439, + 7540162440, + 12889324186, + 7540162441 + ], + "geometry": [ + { "lat": 40.7197650, "lon": -73.9065022 }, + { "lat": 40.7198395, "lon": -73.9065073 }, + { "lat": 40.7200229, "lon": -73.9065196 }, + { "lat": 40.7199920, "lon": -73.9077507 }, + { "lat": 40.7197924, "lon": -73.9077395 }, + { "lat": 40.7197278, "lon": -73.9077333 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 806325243, + "bounds": { + "minlat": 40.7449741, + "minlon": -73.9272540, + "maxlat": 40.7453752, + "maxlon": -73.9268855 + }, + "nodes": [ + 5482216910, + 10774405539, + 7540226579, + 7540226580, + 7540226581 + ], + "geometry": [ + { "lat": 40.7449741, "lon": -73.9268855 }, + { "lat": 40.7449781, "lon": -73.9269566 }, + { "lat": 40.7449846, "lon": -73.9270249 }, + { "lat": 40.7450064, "lon": -73.9272540 }, + { "lat": 40.7453752, "lon": -73.9271683 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 806341215, + "bounds": { + "minlat": 40.7093360, + "minlon": -74.0167650, + "maxlat": 40.7096754, + "maxlon": -74.0165566 + }, + "nodes": [ + 42440639, + 4876645531, + 889585230, + 889584936 + ], + "geometry": [ + { "lat": 40.7093360, "lon": -74.0167650 }, + { "lat": 40.7093937, "lon": -74.0167264 }, + { "lat": 40.7094910, "lon": -74.0166613 }, + { "lat": 40.7096754, "lon": -74.0165566 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "South End Avenue", + "name:ko": "사우스 엔드 애비뉴", + "network": "lcn", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806341216, + "bounds": { + "minlat": 40.7088234, + "minlon": -74.0169509, + "maxlat": 40.7093360, + "maxlon": -74.0159333 + }, + "nodes": [ + 42440628, + 4876645555, + 2807977106, + 2807977105, + 11418076979, + 11418076978, + 2807977107, + 42440630, + 2807977108, + 2807977109, + 11418076980, + 42440634, + 2807977110, + 4876645541, + 42440639 + ], + "geometry": [ + { "lat": 40.7090728, "lon": -74.0169509 }, + { "lat": 40.7090342, "lon": -74.0168244 }, + { "lat": 40.7088352, "lon": -74.0161782 }, + { "lat": 40.7088250, "lon": -74.0161366 }, + { "lat": 40.7088234, "lon": -74.0160961 }, + { "lat": 40.7088330, "lon": -74.0160618 }, + { "lat": 40.7088509, "lon": -74.0160296 }, + { "lat": 40.7088758, "lon": -74.0160109 }, + { "lat": 40.7090707, "lon": -74.0159342 }, + { "lat": 40.7090975, "lon": -74.0159333 }, + { "lat": 40.7091248, "lon": -74.0159477 }, + { "lat": 40.7091477, "lon": -74.0159754 }, + { "lat": 40.7091620, "lon": -74.0160162 }, + { "lat": 40.7093039, "lon": -74.0166253 }, + { "lat": 40.7093360, "lon": -74.0167650 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Rector Place", + "name:ko": "렉터 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806341217, + "bounds": { + "minlat": 40.7090728, + "minlon": -74.0169509, + "maxlat": 40.7093360, + "maxlon": -74.0167650 + }, + "nodes": [ + 42440628, + 11418076985, + 10612369340, + 42440639 + ], + "geometry": [ + { "lat": 40.7090728, "lon": -74.0169509 }, + { "lat": 40.7091055, "lon": -74.0169263 }, + { "lat": 40.7092929, "lon": -74.0167944 }, + { "lat": 40.7093360, "lon": -74.0167650 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "South End Avenue", + "name:ko": "사우스 엔드 애비뉴", + "network": "lcn", + "oneway": "no", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806463252, + "bounds": { + "minlat": 40.7396572, + "minlon": -74.0078497, + "maxlat": 40.7402675, + "maxlon": -74.0063902 + }, + "nodes": [ + 8262308727, + 12162436969, + 8262308613, + 42431151 + ], + "geometry": [ + { "lat": 40.7402675, "lon": -74.0078497 }, + { "lat": 40.7396929, "lon": -74.0064755 }, + { "lat": 40.7396844, "lon": -74.0064552 }, + { "lat": 40.7396572, "lon": -74.0063902 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (We-Fr 14:00-22:00; Sa-Su 12:00-22:00))", + "name": "Little West 12th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 806472903, + "bounds": { + "minlat": 40.7409858, + "minlon": -74.0087032, + "maxlat": 40.7414615, + "maxlon": -74.0075681 + }, + "nodes": [ + 8262308724, + 10168276337, + 4599130018, + 4872626641, + 42429431 + ], + "geometry": [ + { "lat": 40.7409858, "lon": -74.0075681 }, + { "lat": 40.7413095, "lon": -74.0083420 }, + { "lat": 40.7413888, "lon": -74.0085305 }, + { "lat": 40.7414163, "lon": -74.0085957 }, + { "lat": 40.7414615, "lon": -74.0087032 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "name_1": "West 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 806481489, + "bounds": { + "minlat": 40.8120554, + "minlon": -73.9359818, + "maxlat": 40.8121376, + "maxlon": -73.9359166 + }, + "nodes": [ + 42437929, + 9559342279, + 7541804760 + ], + "geometry": [ + { "lat": 40.8120554, "lon": -73.9359818 }, + { "lat": 40.8121195, "lon": -73.9359340 }, + { "lat": 40.8121376, "lon": -73.9359166 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806488743, + "bounds": { + "minlat": 40.7431966, + "minlon": -73.9564373, + "maxlat": 40.7438786, + "maxlon": -73.9562086 + }, + "nodes": [ + 42832449, + 9982774474, + 5481866288, + 9179070562, + 42866850 + ], + "geometry": [ + { "lat": 40.7438786, "lon": -73.9562086 }, + { "lat": 40.7438168, "lon": -73.9562297 }, + { "lat": 40.7435705, "lon": -73.9563135 }, + { "lat": 40.7432494, "lon": -73.9564233 }, + { "lat": 40.7431966, "lon": -73.9564373 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "5th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 806493783, + "bounds": { + "minlat": 40.7436366, + "minlon": -73.9214533, + "maxlat": 40.7468906, + "maxlon": -73.9208044 + }, + "nodes": [ + 2844853158, + 5370619791, + 9607672559, + 10774439629, + 10069693826, + 42817789, + 10069693817, + 5482369538, + 10069648916, + 10069648915, + 10069648911, + 42900618 + ], + "geometry": [ + { "lat": 40.7436366, "lon": -73.9214533 }, + { "lat": 40.7437433, "lon": -73.9214300 }, + { "lat": 40.7438547, "lon": -73.9214076 }, + { "lat": 40.7440638, "lon": -73.9213676 }, + { "lat": 40.7451514, "lon": -73.9211598 }, + { "lat": 40.7452437, "lon": -73.9211389 }, + { "lat": 40.7453134, "lon": -73.9211229 }, + { "lat": 40.7458905, "lon": -73.9210058 }, + { "lat": 40.7460622, "lon": -73.9209698 }, + { "lat": 40.7467779, "lon": -73.9208273 }, + { "lat": 40.7468150, "lon": -73.9208201 }, + { "lat": 40.7468906, "lon": -73.9208044 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806493784, + "bounds": { + "minlat": 40.7468906, + "minlon": -73.9245100, + "maxlat": 40.7473181, + "maxlon": -73.9208044 + }, + "nodes": [ + 42900618, + 10069648910, + 42920480, + 10069673342, + 42938181, + 10069673341, + 42904586, + 42864393 + ], + "geometry": [ + { "lat": 40.7468906, "lon": -73.9208044 }, + { "lat": 40.7469038, "lon": -73.9209142 }, + { "lat": 40.7469987, "lon": -73.9217391 }, + { "lat": 40.7470926, "lon": -73.9225679 }, + { "lat": 40.7471026, "lon": -73.9226561 }, + { "lat": 40.7471119, "lon": -73.9227370 }, + { "lat": 40.7472100, "lon": -73.9235823 }, + { "lat": 40.7473181, "lon": -73.9245100 } + ], + "tags": { + "access": "yes", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806493785, + "bounds": { + "minlat": 40.7473181, + "minlon": -73.9252344, + "maxlat": 40.7474014, + "maxlon": -73.9245100 + }, + "nodes": [ + 42864393, + 11177302956 + ], + "geometry": [ + { "lat": 40.7473181, "lon": -73.9245100 }, + { "lat": 40.7474014, "lon": -73.9252344 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 806572248, + "bounds": { + "minlat": 40.8216682, + "minlon": -73.9882381, + "maxlat": 40.8217602, + "maxlon": -73.9878416 + }, + "nodes": [ + 103213244, + 7542575405, + 7542575406, + 7542575407, + 7542575408, + 7542575409, + 7542575410, + 7542575411, + 7542575412, + 7542575413, + 7542575414, + 13539905105, + 7542575415 + ], + "geometry": [ + { "lat": 40.8216877, "lon": -73.9882381 }, + { "lat": 40.8216734, "lon": -73.9882063 }, + { "lat": 40.8216682, "lon": -73.9881842 }, + { "lat": 40.8216723, "lon": -73.9881662 }, + { "lat": 40.8216859, "lon": -73.9881524 }, + { "lat": 40.8217090, "lon": -73.9881441 }, + { "lat": 40.8217267, "lon": -73.9881344 }, + { "lat": 40.8217424, "lon": -73.9881234 }, + { "lat": 40.8217550, "lon": -73.9881054 }, + { "lat": 40.8217592, "lon": -73.9880805 }, + { "lat": 40.8217602, "lon": -73.9880584 }, + { "lat": 40.8217550, "lon": -73.9879381 }, + { "lat": 40.8217509, "lon": -73.9878416 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 806572249, + "bounds": { + "minlat": 40.8217644, + "minlon": -73.9883647, + "maxlat": 40.8219056, + "maxlon": -73.9882325 + }, + "nodes": [ + 7542575416, + 7542575417 + ], + "geometry": [ + { "lat": 40.8217644, "lon": -73.9883647 }, + { "lat": 40.8219056, "lon": -73.9882325 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 806572250, + "bounds": { + "minlat": 40.8218735, + "minlon": -73.9883704, + "maxlat": 40.8219792, + "maxlon": -73.9881724 + }, + "nodes": [ + 7542575418, + 7542575417, + 7542575419 + ], + "geometry": [ + { "lat": 40.8219792, "lon": -73.9883704 }, + { "lat": 40.8219056, "lon": -73.9882325 }, + { "lat": 40.8218735, "lon": -73.9881724 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 806572260, + "bounds": { + "minlat": 40.8206845, + "minlon": -73.9872401, + "maxlat": 40.8216504, + "maxlon": -73.9859080 + }, + "nodes": [ + 7542575540, + 7542575457, + 7542575458, + 7542575526, + 7542575459, + 7542575460, + 7542575461, + 7542575462, + 7542575463, + 7542575464, + 7542575465 + ], + "geometry": [ + { "lat": 40.8216504, "lon": -73.9859080 }, + { "lat": 40.8214359, "lon": -73.9861187 }, + { "lat": 40.8206845, "lon": -73.9868567 }, + { "lat": 40.8207993, "lon": -73.9870574 }, + { "lat": 40.8208820, "lon": -73.9872019 }, + { "lat": 40.8208969, "lon": -73.9872190 }, + { "lat": 40.8209179, "lon": -73.9872295 }, + { "lat": 40.8209398, "lon": -73.9872375 }, + { "lat": 40.8209707, "lon": -73.9872401 }, + { "lat": 40.8210016, "lon": -73.9872401 }, + { "lat": 40.8211921, "lon": -73.9872124 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 806572268, + "bounds": { + "minlat": 40.8198365, + "minlon": -73.9877795, + "maxlat": 40.8200146, + "maxlon": -73.9874702 + }, + "nodes": [ + 7542575502, + 7542575504, + 7542575503 + ], + "geometry": [ + { "lat": 40.8198365, "lon": -73.9874702 }, + { "lat": 40.8199218, "lon": -73.9876182 }, + { "lat": 40.8200146, "lon": -73.9877795 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 806572269, + "bounds": { + "minlat": 40.8197732, + "minlon": -73.9877417, + "maxlat": 40.8199218, + "maxlon": -73.9876182 + }, + "nodes": [ + 7542575504, + 7542575505 + ], + "geometry": [ + { "lat": 40.8199218, "lon": -73.9876182 }, + { "lat": 40.8197732, "lon": -73.9877417 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 806681302, + "bounds": { + "minlat": 40.7611128, + "minlon": -73.9392862, + "maxlat": 40.7612349, + "maxlon": -73.9389523 + }, + "nodes": [ + 7543443848, + 7543443849, + 7543443850, + 7543443851 + ], + "geometry": [ + { "lat": 40.7611128, "lon": -73.9389523 }, + { "lat": 40.7611458, "lon": -73.9390466 }, + { "lat": 40.7611532, "lon": -73.9390620 }, + { "lat": 40.7612349, "lon": -73.9392862 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 806710823, + "bounds": { + "minlat": 40.8300663, + "minlon": -73.9764170, + "maxlat": 40.8304250, + "maxlon": -73.9760145 + }, + "nodes": [ + 7543767344, + 7543767345, + 7543767346, + 7543767347, + 7543767348, + 7543767349 + ], + "geometry": [ + { "lat": 40.8304250, "lon": -73.9764170 }, + { "lat": 40.8302732, "lon": -73.9761812 }, + { "lat": 40.8301933, "lon": -73.9760570 }, + { "lat": 40.8301710, "lon": -73.9760188 }, + { "lat": 40.8301479, "lon": -73.9760145 }, + { "lat": 40.8300663, "lon": -73.9760897 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807095282, + "bounds": { + "minlat": 40.7970352, + "minlon": -74.0092761, + "maxlat": 40.7972643, + "maxlon": -74.0090647 + }, + "nodes": [ + 7547453505, + 7678477605, + 7547453507, + 7547453506 + ], + "geometry": [ + { "lat": 40.7970352, "lon": -74.0092761 }, + { "lat": 40.7970718, "lon": -74.0092423 }, + { "lat": 40.7970848, "lon": -74.0092303 }, + { "lat": 40.7972643, "lon": -74.0090647 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 807106555, + "bounds": { + "minlat": 40.7402001, + "minlon": -73.9344641, + "maxlat": 40.7402832, + "maxlon": -73.9337912 + }, + "nodes": [ + 7547561073, + 10743722207, + 7547561074, + 7547561075 + ], + "geometry": [ + { "lat": 40.7402832, "lon": -73.9344641 }, + { "lat": 40.7402663, "lon": -73.9343271 }, + { "lat": 40.7402602, "lon": -73.9342782 }, + { "lat": 40.7402001, "lon": -73.9337912 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 807297867, + "bounds": { + "minlat": 40.8033966, + "minlon": -74.0199789, + "maxlat": 40.8041447, + "maxlon": -74.0194962 + }, + "nodes": [ + 7549385651, + 7551817342, + 7552284410, + 7551817343, + 7551817344, + 7549385682, + 7549408387, + 7549408399, + 5752813101 + ], + "geometry": [ + { "lat": 40.8041447, "lon": -74.0195905 }, + { "lat": 40.8041083, "lon": -74.0196204 }, + { "lat": 40.8040660, "lon": -74.0196553 }, + { "lat": 40.8040373, "lon": -74.0196789 }, + { "lat": 40.8039489, "lon": -74.0194962 }, + { "lat": 40.8038022, "lon": -74.0196243 }, + { "lat": 40.8036673, "lon": -74.0197404 }, + { "lat": 40.8035196, "lon": -74.0198713 }, + { "lat": 40.8033966, "lon": -74.0199789 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807297868, + "bounds": { + "minlat": 40.8047745, + "minlon": -74.0193764, + "maxlat": 40.8051966, + "maxlon": -74.0187159 + }, + "nodes": [ + 6307669777, + 7549408388, + 7549385673, + 7549408395, + 6200109381, + 7549385644 + ], + "geometry": [ + { "lat": 40.8051966, "lon": -74.0193023 }, + { "lat": 40.8051662, "lon": -74.0192418 }, + { "lat": 40.8049007, "lon": -74.0187159 }, + { "lat": 40.8047745, "lon": -74.0188245 }, + { "lat": 40.8050170, "lon": -74.0193237 }, + { "lat": 40.8050426, "lon": -74.0193764 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807297869, + "bounds": { + "minlat": 40.8045982, + "minlon": -74.0195985, + "maxlat": 40.8047833, + "maxlon": -74.0192122 + }, + "nodes": [ + 5752813098, + 6200109364, + 7552284391, + 5752813111 + ], + "geometry": [ + { "lat": 40.8047833, "lon": -74.0195985 }, + { "lat": 40.8047307, "lon": -74.0194854 }, + { "lat": 40.8046244, "lon": -74.0192661 }, + { "lat": 40.8045982, "lon": -74.0192122 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807297871, + "bounds": { + "minlat": 40.8044560, + "minlon": -74.0198217, + "maxlat": 40.8046934, + "maxlon": -74.0193308 + }, + "nodes": [ + 5752813099, + 7552284395, + 7552284393, + 7549408401 + ], + "geometry": [ + { "lat": 40.8046934, "lon": -74.0198217 }, + { "lat": 40.8046638, "lon": -74.0197605 }, + { "lat": 40.8044820, "lon": -74.0193846 }, + { "lat": 40.8044560, "lon": -74.0193308 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807297872, + "bounds": { + "minlat": 40.8040373, + "minlon": -74.0201705, + "maxlat": 40.8042753, + "maxlon": -74.0196789 + }, + "nodes": [ + 7552269829, + 7552284412, + 7551817346, + 7551817343 + ], + "geometry": [ + { "lat": 40.8042753, "lon": -74.0201705 }, + { "lat": 40.8042434, "lon": -74.0201048 }, + { "lat": 40.8040659, "lon": -74.0197379 }, + { "lat": 40.8040373, "lon": -74.0196789 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807297877, + "bounds": { + "minlat": 40.8043133, + "minlon": -74.0199426, + "maxlat": 40.8045485, + "maxlon": -74.0194498 + }, + "nodes": [ + 7549385678, + 7552284394, + 7552284392, + 7549385652 + ], + "geometry": [ + { "lat": 40.8045485, "lon": -74.0199426 }, + { "lat": 40.8045192, "lon": -74.0198813 }, + { "lat": 40.8043379, "lon": -74.0195014 }, + { "lat": 40.8043133, "lon": -74.0194498 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807297878, + "bounds": { + "minlat": 40.8035196, + "minlon": -74.0205308, + "maxlat": 40.8038433, + "maxlon": -74.0198713 + }, + "nodes": [ + 7549385650, + 7552114793, + 7552284415, + 7549408399 + ], + "geometry": [ + { "lat": 40.8038433, "lon": -74.0205308 }, + { "lat": 40.8038167, "lon": -74.0204766 }, + { "lat": 40.8035426, "lon": -74.0199183 }, + { "lat": 40.8035196, "lon": -74.0198713 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807297879, + "bounds": { + "minlat": 40.8038022, + "minlon": -74.0202971, + "maxlat": 40.8041235, + "maxlon": -74.0196243 + }, + "nodes": [ + 7549408411, + 7552284418, + 7551817345, + 7552284413, + 7549385682 + ], + "geometry": [ + { "lat": 40.8041235, "lon": -74.0202971 }, + { "lat": 40.8040941, "lon": -74.0202355 }, + { "lat": 40.8039167, "lon": -74.0198640 }, + { "lat": 40.8038269, "lon": -74.0196759 }, + { "lat": 40.8038022, "lon": -74.0196243 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807297882, + "bounds": { + "minlat": 40.8041738, + "minlon": -74.0200584, + "maxlat": 40.8044096, + "maxlon": -74.0195662 + }, + "nodes": [ + 7549385683, + 7552284411, + 7552284389, + 7549385657 + ], + "geometry": [ + { "lat": 40.8044096, "lon": -74.0200584 }, + { "lat": 40.8043777, "lon": -74.0199919 }, + { "lat": 40.8042000, "lon": -74.0196209 }, + { "lat": 40.8041738, "lon": -74.0195662 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807297883, + "bounds": { + "minlat": 40.8040547, + "minlon": -74.0195905, + "maxlat": 40.8045982, + "maxlon": -74.0189958 + }, + "nodes": [ + 7549385651, + 7549408400, + 7549385647, + 7549385672, + 7549408394, + 7549385643, + 7549385666, + 7552284390, + 5752813111 + ], + "geometry": [ + { "lat": 40.8041447, "lon": -74.0195905 }, + { "lat": 40.8040547, "lon": -74.0194051 }, + { "lat": 40.8040573, "lon": -74.0193535 }, + { "lat": 40.8040680, "lon": -74.0193081 }, + { "lat": 40.8044413, "lon": -74.0189987 }, + { "lat": 40.8044737, "lon": -74.0189958 }, + { "lat": 40.8045031, "lon": -74.0190172 }, + { "lat": 40.8045837, "lon": -74.0191824 }, + { "lat": 40.8045982, "lon": -74.0192122 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807297884, + "bounds": { + "minlat": 40.8036673, + "minlon": -74.0204092, + "maxlat": 40.8039891, + "maxlon": -74.0197404 + }, + "nodes": [ + 7552269828, + 7552284417, + 7552284414, + 7549408387 + ], + "geometry": [ + { "lat": 40.8039891, "lon": -74.0204092 }, + { "lat": 40.8039598, "lon": -74.0203483 }, + { "lat": 40.8036928, "lon": -74.0197934 }, + { "lat": 40.8036673, "lon": -74.0197404 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807309194, + "bounds": { + "minlat": 40.8084123, + "minlon": -74.0156401, + "maxlat": 40.8086842, + "maxlon": -74.0152155 + }, + "nodes": [ + 7549492874, + 5813807529, + 12456223751, + 103867741 + ], + "geometry": [ + { "lat": 40.8086842, "lon": -74.0156401 }, + { "lat": 40.8086634, "lon": -74.0156068 }, + { "lat": 40.8084929, "lon": -74.0153412 }, + { "lat": 40.8084123, "lon": -74.0152155 } + ], + "tags": { + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "83rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "83rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 807309195, + "bounds": { + "minlat": 40.8089591, + "minlon": -74.0146945, + "maxlat": 40.8111160, + "maxlon": -74.0127410 + }, + "nodes": [ + 103860891, + 103867176, + 12456223756, + 13325885485, + 13325885482, + 103867743, + 13535872950, + 10023463253 + ], + "geometry": [ + { "lat": 40.8089591, "lon": -74.0146945 }, + { "lat": 40.8095666, "lon": -74.0141342 }, + { "lat": 40.8096690, "lon": -74.0140418 }, + { "lat": 40.8103548, "lon": -74.0134233 }, + { "lat": 40.8105119, "lon": -74.0132816 }, + { "lat": 40.8107523, "lon": -74.0130648 }, + { "lat": 40.8110263, "lon": -74.0128208 }, + { "lat": 40.8111160, "lon": -74.0127410 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 807309196, + "bounds": { + "minlat": 40.8078459, + "minlon": -74.0157231, + "maxlat": 40.8084123, + "maxlon": -74.0152155 + }, + "nodes": [ + 103860068, + 12456262125, + 103867741 + ], + "geometry": [ + { "lat": 40.8078459, "lon": -74.0157231 }, + { "lat": 40.8083744, "lon": -74.0152495 }, + { "lat": 40.8084123, "lon": -74.0152155 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 807309197, + "bounds": { + "minlat": 40.8017151, + "minlon": -74.0209492, + "maxlat": 40.8029092, + "maxlon": -74.0199352 + }, + "nodes": [ + 9665975765, + 103867727, + 13525592729, + 103867728 + ], + "geometry": [ + { "lat": 40.8017151, "lon": -74.0209492 }, + { "lat": 40.8025433, "lon": -74.0202593 }, + { "lat": 40.8028277, "lon": -74.0200074 }, + { "lat": 40.8029092, "lon": -74.0199352 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 807309198, + "bounds": { + "minlat": 40.8035681, + "minlon": -74.0195261, + "maxlat": 40.8045451, + "maxlon": -74.0186989 + }, + "nodes": [ + 5344617787, + 13525592760, + 5344617792, + 5344617793 + ], + "geometry": [ + { "lat": 40.8045451, "lon": -74.0186989 }, + { "lat": 40.8044790, "lon": -74.0187569 }, + { "lat": 40.8040605, "lon": -74.0191238 }, + { "lat": 40.8035681, "lon": -74.0195261 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 807371089, + "bounds": { + "minlat": 40.8045404, + "minlon": -73.9323855, + "maxlat": 40.8048030, + "maxlon": -73.9322716 + }, + "nodes": [ + 3786728751, + 3786728752, + 3786728753, + 3786728754, + 3786728756, + 3786728757, + 3786728758, + 9153702826, + 42443119 + ], + "geometry": [ + { "lat": 40.8048030, "lon": -73.9323855 }, + { "lat": 40.8047761, "lon": -73.9323431 }, + { "lat": 40.8047525, "lon": -73.9323146 }, + { "lat": 40.8047226, "lon": -73.9322920 }, + { "lat": 40.8046982, "lon": -73.9322772 }, + { "lat": 40.8046701, "lon": -73.9322716 }, + { "lat": 40.8046359, "lon": -73.9322727 }, + { "lat": 40.8045959, "lon": -73.9322876 }, + { "lat": 40.8045404, "lon": -73.9323176 } + ], + "tags": { + "cycleway:right:buffer": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 128th Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "right|right" + } +}, +{ + "type": "way", + "id": 807547221, + "bounds": { + "minlat": 40.7700280, + "minlon": -73.9836529, + "maxlat": 40.7703081, + "maxlon": -73.9834546 + }, + "nodes": [ + 7551756698, + 9904582909, + 7551756699 + ], + "geometry": [ + { "lat": 40.7703081, "lon": -73.9834546 }, + { "lat": 40.7702512, "lon": -73.9834949 }, + { "lat": 40.7700280, "lon": -73.9836529 } + ], + "tags": { + "covered": "no", + "highway": "service", + "incline": "0%", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 807547223, + "bounds": { + "minlat": 40.7702395, + "minlon": -73.9835227, + "maxlat": 40.7704326, + "maxlon": -73.9832212 + }, + "nodes": [ + 7551756702, + 9904552704, + 7551756703, + 7798271091, + 7551756704, + 9904552705, + 7551756705 + ], + "geometry": [ + { "lat": 40.7702395, "lon": -73.9832922 }, + { "lat": 40.7702985, "lon": -73.9832488 }, + { "lat": 40.7703360, "lon": -73.9832212 }, + { "lat": 40.7703453, "lon": -73.9832430 }, + { "lat": 40.7704326, "lon": -73.9834477 }, + { "lat": 40.7703946, "lon": -73.9834771 }, + { "lat": 40.7703356, "lon": -73.9835227 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807606506, + "bounds": { + "minlat": 40.8053428, + "minlon": -74.0190292, + "maxlat": 40.8056721, + "maxlon": -74.0183584 + }, + "nodes": [ + 7552284398, + 7552284397 + ], + "geometry": [ + { "lat": 40.8056721, "lon": -74.0190292 }, + { "lat": 40.8053428, "lon": -74.0183584 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807606507, + "bounds": { + "minlat": 40.8054777, + "minlon": -74.0189113, + "maxlat": 40.8058072, + "maxlon": -74.0182376 + }, + "nodes": [ + 7552284400, + 7552284399 + ], + "geometry": [ + { "lat": 40.8058072, "lon": -74.0189113 }, + { "lat": 40.8054777, "lon": -74.0182376 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807606508, + "bounds": { + "minlat": 40.8056118, + "minlon": -74.0187914, + "maxlat": 40.8059447, + "maxlon": -74.0181177 + }, + "nodes": [ + 7552284402, + 7552284401 + ], + "geometry": [ + { "lat": 40.8059447, "lon": -74.0187914 }, + { "lat": 40.8056118, "lon": -74.0181177 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807606509, + "bounds": { + "minlat": 40.8057566, + "minlon": -74.0186650, + "maxlat": 40.8060896, + "maxlon": -74.0179882 + }, + "nodes": [ + 7552284404, + 7552284403 + ], + "geometry": [ + { "lat": 40.8060896, "lon": -74.0186650 }, + { "lat": 40.8057566, "lon": -74.0179882 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807606510, + "bounds": { + "minlat": 40.8058971, + "minlon": -74.0185381, + "maxlat": 40.8062351, + "maxlon": -74.0178624 + }, + "nodes": [ + 7552284406, + 7552284405 + ], + "geometry": [ + { "lat": 40.8062351, "lon": -74.0185381 }, + { "lat": 40.8058971, "lon": -74.0178624 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807606511, + "bounds": { + "minlat": 40.8060321, + "minlon": -74.0184245, + "maxlat": 40.8063653, + "maxlon": -74.0177416 + }, + "nodes": [ + 6307669775, + 7552284407 + ], + "geometry": [ + { "lat": 40.8063653, "lon": -74.0184245 }, + { "lat": 40.8060321, "lon": -74.0177416 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807606512, + "bounds": { + "minlat": 40.8061514, + "minlon": -74.0175546, + "maxlat": 40.8063223, + "maxlon": -74.0172231 + }, + "nodes": [ + 103867738, + 7552284408 + ], + "geometry": [ + { "lat": 40.8061514, "lon": -74.0172231 }, + { "lat": 40.8063223, "lon": -74.0175546 } + ], + "tags": { + "highway": "service", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "oneway": "no", + "service": "driveway", + "surface": "asphalt", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 807606513, + "bounds": { + "minlat": 40.8052012, + "minlon": -74.0191516, + "maxlat": 40.8055318, + "maxlon": -74.0184842 + }, + "nodes": [ + 6307669774, + 7552284409 + ], + "geometry": [ + { "lat": 40.8055318, "lon": -74.0191516 }, + { "lat": 40.8052012, "lon": -74.0184842 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807606514, + "bounds": { + "minlat": 40.8051169, + "minlon": -74.0184511, + "maxlat": 40.8052390, + "maxlon": -74.0182090 + }, + "nodes": [ + 5752813110, + 5752813109 + ], + "geometry": [ + { "lat": 40.8051169, "lon": -74.0182090 }, + { "lat": 40.8052390, "lon": -74.0184511 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807606515, + "bounds": { + "minlat": 40.8045451, + "minlon": -74.0194673, + "maxlat": 40.8049334, + "maxlon": -74.0186989 + }, + "nodes": [ + 5344617787, + 13525592754, + 7552284396, + 5748467002 + ], + "geometry": [ + { "lat": 40.8045451, "lon": -74.0186989 }, + { "lat": 40.8045953, "lon": -74.0187982 }, + { "lat": 40.8048854, "lon": -74.0193722 }, + { "lat": 40.8049334, "lon": -74.0194673 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807606516, + "bounds": { + "minlat": 40.8033966, + "minlon": -74.0206392, + "maxlat": 40.8037134, + "maxlon": -74.0199789 + }, + "nodes": [ + 5752813100, + 7552284416, + 6200109351, + 5752813101 + ], + "geometry": [ + { "lat": 40.8037134, "lon": -74.0206392 }, + { "lat": 40.8036869, "lon": -74.0205839 }, + { "lat": 40.8034409, "lon": -74.0200712 }, + { "lat": 40.8033966, "lon": -74.0199789 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807647330, + "bounds": { + "minlat": 40.8273814, + "minlon": -73.9863330, + "maxlat": 40.8276997, + "maxlon": -73.9861215 + }, + "nodes": [ + 7552640082, + 7552640083, + 7552640084, + 7552734285, + 7552734286, + 7552734287, + 7552734288, + 7538917952 + ], + "geometry": [ + { "lat": 40.8273814, "lon": -73.9863330 }, + { "lat": 40.8275992, "lon": -73.9861379 }, + { "lat": 40.8276152, "lon": -73.9861254 }, + { "lat": 40.8276313, "lon": -73.9861215 }, + { "lat": 40.8276474, "lon": -73.9861254 }, + { "lat": 40.8276591, "lon": -73.9861360 }, + { "lat": 40.8276927, "lon": -73.9861969 }, + { "lat": 40.8276997, "lon": -73.9862376 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 807650997, + "bounds": { + "minlat": 40.8263665, + "minlon": -73.9860839, + "maxlat": 40.8269336, + "maxlon": -73.9855529 + }, + "nodes": [ + 7552766736, + 7552766737 + ], + "geometry": [ + { "lat": 40.8263665, "lon": -73.9860839 }, + { "lat": 40.8269336, "lon": -73.9855529 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 807689678, + "bounds": { + "minlat": 40.8253263, + "minlon": -73.9842362, + "maxlat": 40.8255760, + "maxlon": -73.9839774 + }, + "nodes": [ + 7553077154, + 7553077155 + ], + "geometry": [ + { "lat": 40.8253263, "lon": -73.9842362 }, + { "lat": 40.8255760, "lon": -73.9839774 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807689679, + "bounds": { + "minlat": 40.8254306, + "minlon": -73.9844203, + "maxlat": 40.8256839, + "maxlon": -73.9841744 + }, + "nodes": [ + 7553077156, + 7553077157 + ], + "geometry": [ + { "lat": 40.8254306, "lon": -73.9844203 }, + { "lat": 40.8256839, "lon": -73.9841744 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807775054, + "bounds": { + "minlat": 40.8098909, + "minlon": -73.9279574, + "maxlat": 40.8109714, + "maxlon": -73.9271386 + }, + "nodes": [ + 8706869342, + 9163759303, + 7553826301, + 7553826303, + 11427300121, + 9908636611, + 3638058983 + ], + "geometry": [ + { "lat": 40.8098909, "lon": -73.9279574 }, + { "lat": 40.8100577, "lon": -73.9277900 }, + { "lat": 40.8102870, "lon": -73.9276225 }, + { "lat": 40.8106805, "lon": -73.9273459 }, + { "lat": 40.8107532, "lon": -73.9272941 }, + { "lat": 40.8108516, "lon": -73.9272227 }, + { "lat": 40.8109714, "lon": -73.9271386 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 807775055, + "bounds": { + "minlat": 40.8101019, + "minlon": -73.9285461, + "maxlat": 40.8104864, + "maxlon": -73.9280105 + }, + "nodes": [ + 42737695, + 4831004965 + ], + "geometry": [ + { "lat": 40.8104864, "lon": -73.9280105 }, + { "lat": 40.8101019, "lon": -73.9285461 } + ], + "tags": { + "alt_name": "Third Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 807775057, + "bounds": { + "minlat": 40.8100320, + "minlon": -73.9276225, + "maxlat": 40.8102870, + "maxlon": -73.9270133 + }, + "nodes": [ + 7553826301, + 11427300118, + 5482271963, + 7553826307, + 7553826302 + ], + "geometry": [ + { "lat": 40.8102870, "lon": -73.9276225 }, + { "lat": 40.8102430, "lon": -73.9275176 }, + { "lat": 40.8101850, "lon": -73.9273794 }, + { "lat": 40.8101012, "lon": -73.9271789 }, + { "lat": 40.8100320, "lon": -73.9270133 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807775058, + "bounds": { + "minlat": 40.8105780, + "minlon": -73.9273459, + "maxlat": 40.8106805, + "maxlon": -73.9271068 + }, + "nodes": [ + 7553826303, + 11427300117, + 7553826304 + ], + "geometry": [ + { "lat": 40.8106805, "lon": -73.9273459 }, + { "lat": 40.8106323, "lon": -73.9272334 }, + { "lat": 40.8105780, "lon": -73.9271068 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807775059, + "bounds": { + "minlat": 40.8104613, + "minlon": -73.9270830, + "maxlat": 40.8106115, + "maxlon": -73.9267156 + }, + "nodes": [ + 5482271964, + 7553826306, + 7553826305 + ], + "geometry": [ + { "lat": 40.8106115, "lon": -73.9270830 }, + { "lat": 40.8105317, "lon": -73.9268877 }, + { "lat": 40.8104613, "lon": -73.9267156 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807775060, + "bounds": { + "minlat": 40.8101012, + "minlon": -73.9271789, + "maxlat": 40.8105317, + "maxlon": -73.9268877 + }, + "nodes": [ + 7553826306, + 7553826307 + ], + "geometry": [ + { "lat": 40.8105317, "lon": -73.9268877 }, + { "lat": 40.8101012, "lon": -73.9271789 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807775061, + "bounds": { + "minlat": 40.8100320, + "minlon": -73.9270133, + "maxlat": 40.8104613, + "maxlon": -73.9267156 + }, + "nodes": [ + 7553826305, + 7553826302 + ], + "geometry": [ + { "lat": 40.8104613, "lon": -73.9267156 }, + { "lat": 40.8100320, "lon": -73.9270133 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781327, + "bounds": { + "minlat": 40.8099868, + "minlon": -73.9260002, + "maxlat": 40.8103267, + "maxlon": -73.9257636 + }, + "nodes": [ + 5482372321, + 11427300125, + 7553904066, + 7553904064 + ], + "geometry": [ + { "lat": 40.8103267, "lon": -73.9257636 }, + { "lat": 40.8102447, "lon": -73.9258203 }, + { "lat": 40.8101282, "lon": -73.9259008 }, + { "lat": 40.8099868, "lon": -73.9260002 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781328, + "bounds": { + "minlat": 40.8101282, + "minlon": -73.9262000, + "maxlat": 40.8102456, + "maxlon": -73.9259008 + }, + "nodes": [ + 7553904065, + 7553904066 + ], + "geometry": [ + { "lat": 40.8102456, "lon": -73.9262000 }, + { "lat": 40.8101282, "lon": -73.9259008 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781329, + "bounds": { + "minlat": 40.8099868, + "minlon": -73.9263073, + "maxlat": 40.8101096, + "maxlon": -73.9260002 + }, + "nodes": [ + 7553904067, + 7553904064 + ], + "geometry": [ + { "lat": 40.8101096, "lon": -73.9263073 }, + { "lat": 40.8099868, "lon": -73.9260002 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781331, + "bounds": { + "minlat": 40.8085959, + "minlon": -73.9272493, + "maxlat": 40.8087228, + "maxlon": -73.9269489 + }, + "nodes": [ + 7553904071, + 7553904072 + ], + "geometry": [ + { "lat": 40.8087228, "lon": -73.9272493 }, + { "lat": 40.8085959, "lon": -73.9269489 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781332, + "bounds": { + "minlat": 40.8085302, + "minlon": -73.9273921, + "maxlat": 40.8087228, + "maxlon": -73.9272493 + }, + "nodes": [ + 7553904071, + 11427300109, + 7553904073 + ], + "geometry": [ + { "lat": 40.8087228, "lon": -73.9272493 }, + { "lat": 40.8086056, "lon": -73.9273362 }, + { "lat": 40.8085302, "lon": -73.9273921 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781333, + "bounds": { + "minlat": 40.8083977, + "minlon": -73.9270803, + "maxlat": 40.8085959, + "maxlon": -73.9269489 + }, + "nodes": [ + 7553904072, + 11427300108, + 7553904074 + ], + "geometry": [ + { "lat": 40.8085959, "lon": -73.9269489 }, + { "lat": 40.8084776, "lon": -73.9270273 }, + { "lat": 40.8083977, "lon": -73.9270803 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781335, + "bounds": { + "minlat": 40.8092527, + "minlon": -73.9282347, + "maxlat": 40.8095107, + "maxlon": -73.9275900 + }, + "nodes": [ + 7553904079, + 11427300119, + 7553904083, + 7553904080 + ], + "geometry": [ + { "lat": 40.8095107, "lon": -73.9282347 }, + { "lat": 40.8094535, "lon": -73.9280933 }, + { "lat": 40.8093983, "lon": -73.9279570 }, + { "lat": 40.8092527, "lon": -73.9275900 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781336, + "bounds": { + "minlat": 40.8088373, + "minlon": -73.9281227, + "maxlat": 40.8090314, + "maxlon": -73.9279963 + }, + "nodes": [ + 7553904081, + 11427300110, + 7553904082 + ], + "geometry": [ + { "lat": 40.8088373, "lon": -73.9281227 }, + { "lat": 40.8089187, "lon": -73.9280697 }, + { "lat": 40.8090314, "lon": -73.9279963 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781337, + "bounds": { + "minlat": 40.8090963, + "minlon": -73.9281599, + "maxlat": 40.8093983, + "maxlon": -73.9279570 + }, + "nodes": [ + 7553904083, + 7553907585, + 7553904084 + ], + "geometry": [ + { "lat": 40.8093983, "lon": -73.9279570 }, + { "lat": 40.8092457, "lon": -73.9280596 }, + { "lat": 40.8090963, "lon": -73.9281599 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781338, + "bounds": { + "minlat": 40.8090994, + "minlon": -73.9280596, + "maxlat": 40.8092457, + "maxlon": -73.9276946 + }, + "nodes": [ + 7553907585, + 7553907586 + ], + "geometry": [ + { "lat": 40.8092457, "lon": -73.9280596 }, + { "lat": 40.8090994, "lon": -73.9276946 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781339, + "bounds": { + "minlat": 40.8090314, + "minlon": -73.9281599, + "maxlat": 40.8090963, + "maxlon": -73.9279963 + }, + "nodes": [ + 7553904084, + 7553904082 + ], + "geometry": [ + { "lat": 40.8090963, "lon": -73.9281599 }, + { "lat": 40.8090314, "lon": -73.9279963 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781346, + "bounds": { + "minlat": 40.8078529, + "minlon": -73.9242939, + "maxlat": 40.8080698, + "maxlon": -73.9237746 + }, + "nodes": [ + 7553907604, + 7553907607, + 11882279852, + 7553907605 + ], + "geometry": [ + { "lat": 40.8080698, "lon": -73.9242939 }, + { "lat": 40.8079818, "lon": -73.9240759 }, + { "lat": 40.8079222, "lon": -73.9239394 }, + { "lat": 40.8078529, "lon": -73.9237746 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781347, + "bounds": { + "minlat": 40.8080698, + "minlon": -73.9242939, + "maxlat": 40.8085909, + "maxlon": -73.9239348 + }, + "nodes": [ + 5482371888, + 7553907604 + ], + "geometry": [ + { "lat": 40.8085909, "lon": -73.9239348 }, + { "lat": 40.8080698, "lon": -73.9242939 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781348, + "bounds": { + "minlat": 40.8079818, + "minlon": -73.9240759, + "maxlat": 40.8085052, + "maxlon": -73.9237185 + }, + "nodes": [ + 7553907606, + 7553907607 + ], + "geometry": [ + { "lat": 40.8085052, "lon": -73.9237185 }, + { "lat": 40.8079818, "lon": -73.9240759 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781350, + "bounds": { + "minlat": 40.8090524, + "minlon": -73.9245513, + "maxlat": 40.8096437, + "maxlon": -73.9241528 + }, + "nodes": [ + 5482371886, + 11427300142, + 5482371876, + 7553907614, + 5482371878, + 7553907613 + ], + "geometry": [ + { "lat": 40.8096437, "lon": -73.9241528 }, + { "lat": 40.8095601, "lon": -73.9242042 }, + { "lat": 40.8094342, "lon": -73.9242817 }, + { "lat": 40.8092883, "lon": -73.9243847 }, + { "lat": 40.8091381, "lon": -73.9244908 }, + { "lat": 40.8090524, "lon": -73.9245513 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781351, + "bounds": { + "minlat": 40.8091509, + "minlon": -73.9243847, + "maxlat": 40.8092883, + "maxlon": -73.9240645 + }, + "nodes": [ + 7553907614, + 7553907615 + ], + "geometry": [ + { "lat": 40.8092883, "lon": -73.9243847 }, + { "lat": 40.8091509, "lon": -73.9240645 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781352, + "bounds": { + "minlat": 40.8087387, + "minlon": -73.9244897, + "maxlat": 40.8089468, + "maxlon": -73.9239787 + }, + "nodes": [ + 7553907616, + 7553907617 + ], + "geometry": [ + { "lat": 40.8089468, "lon": -73.9244897 }, + { "lat": 40.8087387, "lon": -73.9239787 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781353, + "bounds": { + "minlat": 40.8087387, + "minlon": -73.9239787, + "maxlat": 40.8093747, + "maxlon": -73.9235191 + }, + "nodes": [ + 7553907618, + 11427300141, + 5482371877, + 7553907617 + ], + "geometry": [ + { "lat": 40.8093747, "lon": -73.9235191 }, + { "lat": 40.8092955, "lon": -73.9235763 }, + { "lat": 40.8088859, "lon": -73.9238724 }, + { "lat": 40.8087387, "lon": -73.9239787 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807781354, + "bounds": { + "minlat": 40.8089468, + "minlon": -73.9245513, + "maxlat": 40.8090524, + "maxlon": -73.9244897 + }, + "nodes": [ + 7553907613, + 7553907616 + ], + "geometry": [ + { "lat": 40.8090524, "lon": -73.9245513 }, + { "lat": 40.8089468, "lon": -73.9244897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807790687, + "bounds": { + "minlat": 40.8028900, + "minlon": -73.9261953, + "maxlat": 40.8035763, + "maxlon": -73.9257017 + }, + "nodes": [ + 7553992421, + 5370086786, + 7553992422 + ], + "geometry": [ + { "lat": 40.8035763, "lon": -73.9257017 }, + { "lat": 40.8031119, "lon": -73.9260357 }, + { "lat": 40.8028900, "lon": -73.9261953 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807790688, + "bounds": { + "minlat": 40.8028900, + "minlon": -73.9270643, + "maxlat": 40.8032656, + "maxlon": -73.9261953 + }, + "nodes": [ + 7553992423, + 7553992422 + ], + "geometry": [ + { "lat": 40.8032656, "lon": -73.9270643 }, + { "lat": 40.8028900, "lon": -73.9261953 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807790689, + "bounds": { + "minlat": 40.8032656, + "minlon": -73.9270857, + "maxlat": 40.8034480, + "maxlon": -73.9270643 + }, + "nodes": [ + 7553992417, + 7553992423 + ], + "geometry": [ + { "lat": 40.8034480, "lon": -73.9270857 }, + { "lat": 40.8032656, "lon": -73.9270643 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807790690, + "bounds": { + "minlat": 40.8052567, + "minlon": -73.9257450, + "maxlat": 40.8058941, + "maxlon": -73.9252371 + }, + "nodes": [ + 3529496430, + 9908642162, + 9163759243, + 9163759244, + 9163759245, + 5370086778 + ], + "geometry": [ + { "lat": 40.8058941, "lon": -73.9252371 }, + { "lat": 40.8057992, "lon": -73.9253119 }, + { "lat": 40.8055292, "lon": -73.9255032 }, + { "lat": 40.8054493, "lon": -73.9255655 }, + { "lat": 40.8053518, "lon": -73.9256551 }, + { "lat": 40.8052567, "lon": -73.9257450 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue" + } +}, +{ + "type": "way", + "id": 807790691, + "bounds": { + "minlat": 40.8048039, + "minlon": -73.9261039, + "maxlat": 40.8052567, + "maxlon": -73.9257450 + }, + "nodes": [ + 5370086778, + 5370086776 + ], + "geometry": [ + { "lat": 40.8052567, "lon": -73.9257450 }, + { "lat": 40.8048039, "lon": -73.9261039 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807790692, + "bounds": { + "minlat": 40.8033174, + "minlon": -73.9230022, + "maxlat": 40.8037870, + "maxlon": -73.9222037 + }, + "nodes": [ + 7553992432, + 7553992431, + 7553992433, + 5370086774 + ], + "geometry": [ + { "lat": 40.8035088, "lon": -73.9222037 }, + { "lat": 40.8037870, "lon": -73.9228640 }, + { "lat": 40.8035901, "lon": -73.9230022 }, + { "lat": 40.8033174, "lon": -73.9223459 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807790695, + "bounds": { + "minlat": 40.8052507, + "minlon": -73.9285278, + "maxlat": 40.8061942, + "maxlon": -73.9279760 + }, + "nodes": [ + 42732838, + 9908629945, + 7554071449, + 9908629937, + 9908629938, + 9908629939, + 9908629940, + 7553992434 + ], + "geometry": [ + { "lat": 40.8061942, "lon": -73.9279760 }, + { "lat": 40.8061138, "lon": -73.9280328 }, + { "lat": 40.8054648, "lon": -73.9284910 }, + { "lat": 40.8054118, "lon": -73.9285172 }, + { "lat": 40.8053724, "lon": -73.9285278 }, + { "lat": 40.8053294, "lon": -73.9285225 }, + { "lat": 40.8052897, "lon": -73.9285111 }, + { "lat": 40.8052507, "lon": -73.9284897 } + ], + "tags": { + "highway": "service", + "name": "Alexander Avenue", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807790696, + "bounds": { + "minlat": 40.8000079, + "minlon": -73.9176197, + "maxlat": 40.8012220, + "maxlon": -73.9159673 + }, + "nodes": [ + 5370086809, + 7553992436, + 7734784500, + 5370086812 + ], + "geometry": [ + { "lat": 40.8012220, "lon": -73.9176197 }, + { "lat": 40.8008961, "lon": -73.9171814 }, + { "lat": 40.8008778, "lon": -73.9171563 }, + { "lat": 40.8000079, "lon": -73.9159673 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794455, + "bounds": { + "minlat": 40.8012220, + "minlon": -73.9206080, + "maxlat": 40.8024678, + "maxlon": -73.9176197 + }, + "nodes": [ + 7554016032, + 11427299988, + 7554016033, + 5370086809 + ], + "geometry": [ + { "lat": 40.8024678, "lon": -73.9206080 }, + { "lat": 40.8024210, "lon": -73.9204958 }, + { "lat": 40.8012723, "lon": -73.9177403 }, + { "lat": 40.8012220, "lon": -73.9176197 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794456, + "bounds": { + "minlat": 40.8018201, + "minlon": -73.9211672, + "maxlat": 40.8029288, + "maxlon": -73.9202800 + }, + "nodes": [ + 7553992429, + 11427300004, + 7554016032, + 9047273967, + 5370086819, + 7554016044, + 7554016042, + 7554016036 + ], + "geometry": [ + { "lat": 40.8029288, "lon": -73.9202800 }, + { "lat": 40.8028669, "lon": -73.9203241 }, + { "lat": 40.8024678, "lon": -73.9206080 }, + { "lat": 40.8023219, "lon": -73.9207127 }, + { "lat": 40.8021962, "lon": -73.9208053 }, + { "lat": 40.8021515, "lon": -73.9208377 }, + { "lat": 40.8020025, "lon": -73.9209447 }, + { "lat": 40.8018201, "lon": -73.9211672 } + ], + "tags": { + "foot": "permissive", + "highway": "service", + "motor_vehicle": "permissive", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 807794457, + "bounds": { + "minlat": 40.7993674, + "minlon": -73.9190933, + "maxlat": 40.8012723, + "maxlon": -73.9177403 + }, + "nodes": [ + 7554016033, + 9047273962, + 7554016034, + 7554016035, + 7042953075, + 7554016037 + ], + "geometry": [ + { "lat": 40.8012723, "lon": -73.9177403 }, + { "lat": 40.8011217, "lon": -73.9178464 }, + { "lat": 40.8009896, "lon": -73.9179394 }, + { "lat": 40.8009694, "lon": -73.9179536 }, + { "lat": 40.8009393, "lon": -73.9179768 }, + { "lat": 40.7993674, "lon": -73.9190933 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794458, + "bounds": { + "minlat": 40.7993674, + "minlon": -73.9212020, + "maxlat": 40.8018201, + "maxlon": -73.9190933 + }, + "nodes": [ + 7554016036, + 10267150287, + 7554016040, + 7554016039, + 7554016038, + 7554016037 + ], + "geometry": [ + { "lat": 40.8018201, "lon": -73.9211672 }, + { "lat": 40.8017131, "lon": -73.9212020 }, + { "lat": 40.8004008, "lon": -73.9205448 }, + { "lat": 40.8000045, "lon": -73.9202262 }, + { "lat": 40.7996366, "lon": -73.9197441 }, + { "lat": 40.7993674, "lon": -73.9190933 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794459, + "bounds": { + "minlat": 40.8020025, + "minlon": -73.9284897, + "maxlat": 40.8052507, + "maxlon": -73.9209447 + }, + "nodes": [ + 7553992434, + 9908629942, + 9908629943, + 9908629944, + 9908629941, + 13521056944, + 10267150286, + 7554016042 + ], + "geometry": [ + { "lat": 40.8052507, "lon": -73.9284897 }, + { "lat": 40.8052157, "lon": -73.9284497 }, + { "lat": 40.8051733, "lon": -73.9283879 }, + { "lat": 40.8051295, "lon": -73.9283081 }, + { "lat": 40.8050998, "lon": -73.9282386 }, + { "lat": 40.8047895, "lon": -73.9275079 }, + { "lat": 40.8022612, "lon": -73.9215539 }, + { "lat": 40.8020025, "lon": -73.9209447 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794460, + "bounds": { + "minlat": 40.8021515, + "minlon": -73.9241101, + "maxlat": 40.8034986, + "maxlon": -73.9208377 + }, + "nodes": [ + 7554016043, + 7554016044 + ], + "geometry": [ + { "lat": 40.8034986, "lon": -73.9241101 }, + { "lat": 40.8021515, "lon": -73.9208377 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794461, + "bounds": { + "minlat": 40.7980039, + "minlon": -73.9156080, + "maxlat": 40.7998287, + "maxlon": -73.9130076 + }, + "nodes": [ + 6288655642, + 13327641516, + 8929677632, + 7554016048, + 7554016052, + 1241563591, + 1241563633, + 1241563612 + ], + "geometry": [ + { "lat": 40.7998287, "lon": -73.9130076 }, + { "lat": 40.7997581, "lon": -73.9130802 }, + { "lat": 40.7996961, "lon": -73.9131439 }, + { "lat": 40.7995605, "lon": -73.9132903 }, + { "lat": 40.7986452, "lon": -73.9146902 }, + { "lat": 40.7986333, "lon": -73.9147073 }, + { "lat": 40.7984724, "lon": -73.9149376 }, + { "lat": 40.7980039, "lon": -73.9156080 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794462, + "bounds": { + "minlat": 40.7973512, + "minlon": -73.9149376, + "maxlat": 40.7984724, + "maxlon": -73.9134472 + }, + "nodes": [ + 1241563633, + 1241563635, + 1241563583, + 7554016054, + 1241563609, + 7554016045 + ], + "geometry": [ + { "lat": 40.7984724, "lon": -73.9149376 }, + { "lat": 40.7982552, "lon": -73.9146488 }, + { "lat": 40.7980404, "lon": -73.9143634 }, + { "lat": 40.7978977, "lon": -73.9141764 }, + { "lat": 40.7978856, "lon": -73.9141575 }, + { "lat": 40.7973512, "lon": -73.9134472 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794463, + "bounds": { + "minlat": 40.7973268, + "minlon": -73.9156080, + "maxlat": 40.7980039, + "maxlon": -73.9134472 + }, + "nodes": [ + 1241563612, + 1241563577, + 1241563651, + 7554016046, + 8929677654, + 7554016047, + 8929677653, + 7554016045 + ], + "geometry": [ + { "lat": 40.7980039, "lon": -73.9156080 }, + { "lat": 40.7978115, "lon": -73.9152243 }, + { "lat": 40.7976487, "lon": -73.9148965 }, + { "lat": 40.7975136, "lon": -73.9146247 }, + { "lat": 40.7974263, "lon": -73.9143578 }, + { "lat": 40.7973552, "lon": -73.9140802 }, + { "lat": 40.7973268, "lon": -73.9137758 }, + { "lat": 40.7973512, "lon": -73.9134472 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794465, + "bounds": { + "minlat": 40.7986223, + "minlon": -73.9132903, + "maxlat": 40.7995605, + "maxlon": -73.9116515 + }, + "nodes": [ + 7554016048, + 7554016050, + 7554016055, + 8929677633, + 7554016049 + ], + "geometry": [ + { "lat": 40.7995605, "lon": -73.9132903 }, + { "lat": 40.7992794, "lon": -73.9128021 }, + { "lat": 40.7990892, "lon": -73.9124735 }, + { "lat": 40.7986381, "lon": -73.9117308 }, + { "lat": 40.7986223, "lon": -73.9116515 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794466, + "bounds": { + "minlat": 40.7986223, + "minlon": -73.9116515, + "maxlat": 40.7988654, + "maxlon": -73.9113807 + }, + "nodes": [ + 7554016049, + 8929677634, + 8929677630, + 8929677626, + 1241563587 + ], + "geometry": [ + { "lat": 40.7986223, "lon": -73.9116515 }, + { "lat": 40.7986426, "lon": -73.9115904 }, + { "lat": 40.7986975, "lon": -73.9115333 }, + { "lat": 40.7987983, "lon": -73.9114351 }, + { "lat": 40.7988654, "lon": -73.9113807 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794467, + "bounds": { + "minlat": 40.7982548, + "minlon": -73.9142170, + "maxlat": 40.7992794, + "maxlon": -73.9128021 + }, + "nodes": [ + 7554016050, + 1241563614, + 7554016051 + ], + "geometry": [ + { "lat": 40.7992794, "lon": -73.9128021 }, + { "lat": 40.7991742, "lon": -73.9129558 }, + { "lat": 40.7982548, "lon": -73.9142170 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807794468, + "bounds": { + "minlat": 40.7982548, + "minlon": -73.9146902, + "maxlat": 40.7986452, + "maxlon": -73.9142170 + }, + "nodes": [ + 7554016052, + 1241563613, + 1241563580, + 7554016051 + ], + "geometry": [ + { "lat": 40.7986452, "lon": -73.9146902 }, + { "lat": 40.7984784, "lon": -73.9144895 }, + { "lat": 40.7983692, "lon": -73.9143579 }, + { "lat": 40.7982548, "lon": -73.9142170 } + ], + "tags": { + "highway": "service", + "name": "East 129 Street", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794469, + "bounds": { + "minlat": 40.7984784, + "minlon": -73.9144895, + "maxlat": 40.7993532, + "maxlon": -73.9132648 + }, + "nodes": [ + 7554016053, + 1241563613 + ], + "geometry": [ + { "lat": 40.7993532, "lon": -73.9132648 }, + { "lat": 40.7984784, "lon": -73.9144895 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807794470, + "bounds": { + "minlat": 40.7991742, + "minlon": -73.9132648, + "maxlat": 40.7993532, + "maxlon": -73.9129558 + }, + "nodes": [ + 1241563614, + 1241563649, + 7554016053 + ], + "geometry": [ + { "lat": 40.7991742, "lon": -73.9129558 }, + { "lat": 40.7992623, "lon": -73.9131069 }, + { "lat": 40.7993532, "lon": -73.9132648 } + ], + "tags": { + "highway": "service", + "name": "East 130 Street", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807794473, + "bounds": { + "minlat": 40.7974247, + "minlon": -73.9125943, + "maxlat": 40.7986180, + "maxlon": -73.9109528 + }, + "nodes": [ + 7554016069, + 7554016070 + ], + "geometry": [ + { "lat": 40.7986180, "lon": -73.9109528 }, + { "lat": 40.7974247, "lon": -73.9125943 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807799772, + "bounds": { + "minlat": 40.8061556, + "minlon": -73.9259312, + "maxlat": 40.8066419, + "maxlon": -73.9253432 + }, + "nodes": [ + 8763736063, + 8763736076, + 8763736077, + 12016663311, + 12016663310, + 7554071437, + 7554071440, + 7554071441, + 12016663312, + 7554071438, + 8763736075, + 8763736073 + ], + "geometry": [ + { "lat": 40.8061556, "lon": -73.9255607 }, + { "lat": 40.8061729, "lon": -73.9255239 }, + { "lat": 40.8063274, "lon": -73.9254257 }, + { "lat": 40.8063933, "lon": -73.9254176 }, + { "lat": 40.8064365, "lon": -73.9254238 }, + { "lat": 40.8065517, "lon": -73.9253432 }, + { "lat": 40.8066419, "lon": -73.9255724 }, + { "lat": 40.8065448, "lon": -73.9256449 }, + { "lat": 40.8065353, "lon": -73.9257247 }, + { "lat": 40.8065078, "lon": -73.9258070 }, + { "lat": 40.8063336, "lon": -73.9259312 }, + { "lat": 40.8062972, "lon": -73.9259218 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807799777, + "bounds": { + "minlat": 40.8082728, + "minlon": -73.9310878, + "maxlat": 40.8094099, + "maxlon": -73.9296227 + }, + "nodes": [ + 595801158, + 12915390399, + 595801159, + 7554071444, + 11882279684, + 7554071445 + ], + "geometry": [ + { "lat": 40.8094099, "lon": -73.9296227 }, + { "lat": 40.8093550, "lon": -73.9296983 }, + { "lat": 40.8089453, "lon": -73.9302259 }, + { "lat": 40.8084342, "lon": -73.9308935 }, + { "lat": 40.8083876, "lon": -73.9309496 }, + { "lat": 40.8082728, "lon": -73.9310878 } + ], + "tags": { + "alt_name": "Third Avenue", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 807799778, + "bounds": { + "minlat": 40.8076602, + "minlon": -73.9307167, + "maxlat": 40.8081118, + "maxlon": -73.9296056 + }, + "nodes": [ + 11881123100, + 2348236916, + 9908636602, + 13235287684 + ], + "geometry": [ + { "lat": 40.8081118, "lon": -73.9307167 }, + { "lat": 40.8080797, "lon": -73.9306372 }, + { "lat": 40.8076888, "lon": -73.9297274 }, + { "lat": 40.8076602, "lon": -73.9296056 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 807799779, + "bounds": { + "minlat": 40.8077491, + "minlon": -73.9307098, + "maxlat": 40.8082841, + "maxlon": -73.9295356 + }, + "nodes": [ + 42749813, + 9908636603, + 9908636614, + 11881123103, + 7554071448 + ], + "geometry": [ + { "lat": 40.8077491, "lon": -73.9295356 }, + { "lat": 40.8078340, "lon": -73.9296331 }, + { "lat": 40.8082250, "lon": -73.9305703 }, + { "lat": 40.8082504, "lon": -73.9306332 }, + { "lat": 40.8082841, "lon": -73.9307098 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 807802020, + "bounds": { + "minlat": 40.8093831, + "minlon": -73.9322333, + "maxlat": 40.8103785, + "maxlon": -73.9308779 + }, + "nodes": [ + 5482247614, + 13017048843, + 7554077962, + 5482247611, + 7554077965, + 7554077964, + 7554077968, + 7554077960 + ], + "geometry": [ + { "lat": 40.8103785, "lon": -73.9308779 }, + { "lat": 40.8103365, "lon": -73.9309353 }, + { "lat": 40.8101334, "lon": -73.9312130 }, + { "lat": 40.8099126, "lon": -73.9315134 }, + { "lat": 40.8098793, "lon": -73.9315585 }, + { "lat": 40.8097293, "lon": -73.9317625 }, + { "lat": 40.8095192, "lon": -73.9320482 }, + { "lat": 40.8093831, "lon": -73.9322333 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807802021, + "bounds": { + "minlat": 40.8101334, + "minlon": -73.9320207, + "maxlat": 40.8107592, + "maxlon": -73.9312130 + }, + "nodes": [ + 7554077961, + 7554077962 + ], + "geometry": [ + { "lat": 40.8107592, "lon": -73.9320207 }, + { "lat": 40.8101334, "lon": -73.9312130 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807802022, + "bounds": { + "minlat": 40.8097293, + "minlon": -73.9324452, + "maxlat": 40.8110216, + "maxlon": -73.9316914 + }, + "nodes": [ + 2408979626, + 13017048845, + 7554077961, + 5482247610, + 7554077970, + 7554077963, + 7554077964 + ], + "geometry": [ + { "lat": 40.8110216, "lon": -73.9316914 }, + { "lat": 40.8109820, "lon": -73.9317410 }, + { "lat": 40.8107592, "lon": -73.9320207 }, + { "lat": 40.8105241, "lon": -73.9323144 }, + { "lat": 40.8104388, "lon": -73.9324210 }, + { "lat": 40.8102581, "lon": -73.9324452 }, + { "lat": 40.8097293, "lon": -73.9317625 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807802025, + "bounds": { + "minlat": 40.8090603, + "minlon": -73.9320482, + "maxlat": 40.8098793, + "maxlon": -73.9309780 + }, + "nodes": [ + 7554077968, + 7554077967, + 7554077966, + 7554077965 + ], + "geometry": [ + { "lat": 40.8095192, "lon": -73.9320482 }, + { "lat": 40.8090603, "lon": -73.9314527 }, + { "lat": 40.8094298, "lon": -73.9309780 }, + { "lat": 40.8098793, "lon": -73.9315585 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807802028, + "bounds": { + "minlat": 40.8104550, + "minlon": -73.9294339, + "maxlat": 40.8107419, + "maxlon": -73.9290392 + }, + "nodes": [ + 7554077971, + 11882279887, + 7554077972 + ], + "geometry": [ + { "lat": 40.8107419, "lon": -73.9294339 }, + { "lat": 40.8107040, "lon": -73.9293817 }, + { "lat": 40.8104550, "lon": -73.9290392 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807802029, + "bounds": { + "minlat": 40.8117731, + "minlon": -73.9307369, + "maxlat": 40.8119547, + "maxlon": -73.9304971 + }, + "nodes": [ + 2408984075, + 11882279919, + 5482250721, + 7554077973 + ], + "geometry": [ + { "lat": 40.8119547, "lon": -73.9307369 }, + { "lat": 40.8119107, "lon": -73.9306786 }, + { "lat": 40.8118539, "lon": -73.9306035 }, + { "lat": 40.8117731, "lon": -73.9304971 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807802030, + "bounds": { + "minlat": 40.8114640, + "minlon": -73.9309244, + "maxlat": 40.8117731, + "maxlon": -73.9304971 + }, + "nodes": [ + 7554077973, + 7554077974 + ], + "geometry": [ + { "lat": 40.8117731, "lon": -73.9304971 }, + { "lat": 40.8114640, "lon": -73.9309244 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807802031, + "bounds": { + "minlat": 40.8114640, + "minlon": -73.9309811, + "maxlat": 40.8115934, + "maxlon": -73.9309244 + }, + "nodes": [ + 5482250723, + 7554077974 + ], + "geometry": [ + { "lat": 40.8115934, "lon": -73.9309811 }, + { "lat": 40.8114640, "lon": -73.9309244 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807802032, + "bounds": { + "minlat": 40.8119547, + "minlon": -73.9307369, + "maxlat": 40.8123544, + "maxlon": -73.9298317 + }, + "nodes": [ + 2408984075, + 9910711687, + 5482247588 + ], + "geometry": [ + { "lat": 40.8119547, "lon": -73.9307369 }, + { "lat": 40.8119864, "lon": -73.9306753 }, + { "lat": 40.8123544, "lon": -73.9298317 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 807802033, + "bounds": { + "minlat": 40.8123544, + "minlon": -73.9298317, + "maxlat": 40.8125697, + "maxlon": -73.9292631 + }, + "nodes": [ + 5482247588, + 9910711689, + 9163775399, + 42779702 + ], + "geometry": [ + { "lat": 40.8123544, "lon": -73.9298317 }, + { "lat": 40.8124103, "lon": -73.9296588 }, + { "lat": 40.8125214, "lon": -73.9293892 }, + { "lat": 40.8125697, "lon": -73.9292631 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "through;right", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 807802034, + "bounds": { + "minlat": 40.8106186, + "minlon": -73.9308638, + "maxlat": 40.8108830, + "maxlon": -73.9305921 + }, + "nodes": [ + 3647575601, + 42747169 + ], + "geometry": [ + { "lat": 40.8106186, "lon": -73.9305921 }, + { "lat": 40.8108830, "lon": -73.9308638 } + ], + "tags": { + "highway": "residential", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 807805272, + "bounds": { + "minlat": 40.8110317, + "minlon": -73.9303807, + "maxlat": 40.8113190, + "maxlon": -73.9300359 + }, + "nodes": [ + 7554088545, + 7554088546 + ], + "geometry": [ + { "lat": 40.8113190, "lon": -73.9300359 }, + { "lat": 40.8110317, "lon": -73.9303807 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807805273, + "bounds": { + "minlat": 40.8120151, + "minlon": -73.9323265, + "maxlat": 40.8124000, + "maxlon": -73.9322662 + }, + "nodes": [ + 7111683124, + 7111683127 + ], + "geometry": [ + { "lat": 40.8120151, "lon": -73.9323265 }, + { "lat": 40.8124000, "lon": -73.9322662 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 807805274, + "bounds": { + "minlat": 40.8094888, + "minlon": -73.9291406, + "maxlat": 40.8098839, + "maxlon": -73.9287765 + }, + "nodes": [ + 7554088550, + 9163759300, + 7554088552 + ], + "geometry": [ + { "lat": 40.8098839, "lon": -73.9287765 }, + { "lat": 40.8095683, "lon": -73.9290632 }, + { "lat": 40.8094888, "lon": -73.9291406 } + ], + "tags": { + "highway": "secondary", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no" + } +}, +{ + "type": "way", + "id": 807815591, + "bounds": { + "minlat": 40.8066324, + "minlon": -73.9105617, + "maxlat": 40.8067432, + "maxlon": -73.9105040 + }, + "nodes": [ + 7554161852, + 5859955144, + 7554161856 + ], + "geometry": [ + { "lat": 40.8067432, "lon": -73.9105040 }, + { "lat": 40.8067274, "lon": -73.9105123 }, + { "lat": 40.8066324, "lon": -73.9105617 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807815593, + "bounds": { + "minlat": 40.8080101, + "minlon": -73.9066524, + "maxlat": 40.8083836, + "maxlon": -73.9061160 + }, + "nodes": [ + 7554161858, + 7554161859 + ], + "geometry": [ + { "lat": 40.8083836, "lon": -73.9061160 }, + { "lat": 40.8080101, "lon": -73.9066524 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807815594, + "bounds": { + "minlat": 40.8080101, + "minlon": -73.9071701, + "maxlat": 40.8081136, + "maxlon": -73.9066524 + }, + "nodes": [ + 7554161860, + 7554161859 + ], + "geometry": [ + { "lat": 40.8081136, "lon": -73.9071701 }, + { "lat": 40.8080101, "lon": -73.9066524 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807815595, + "bounds": { + "minlat": 40.8077380, + "minlon": -73.9079823, + "maxlat": 40.8077917, + "maxlon": -73.9077172 + }, + "nodes": [ + 7042943583, + 13247558405, + 7554161862 + ], + "geometry": [ + { "lat": 40.8077917, "lon": -73.9079823 }, + { "lat": 40.8077630, "lon": -73.9078406 }, + { "lat": 40.8077380, "lon": -73.9077172 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807815596, + "bounds": { + "minlat": 40.8077380, + "minlon": -73.9077172, + "maxlat": 40.8081136, + "maxlon": -73.9071701 + }, + "nodes": [ + 7554161860, + 7554161862 + ], + "geometry": [ + { "lat": 40.8081136, "lon": -73.9071701 }, + { "lat": 40.8077380, "lon": -73.9077172 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807815597, + "bounds": { + "minlat": 40.8075086, + "minlon": -73.9077843, + "maxlat": 40.8077380, + "maxlon": -73.9077172 + }, + "nodes": [ + 7554161862, + 7554161863 + ], + "geometry": [ + { "lat": 40.8077380, "lon": -73.9077172 }, + { "lat": 40.8075086, "lon": -73.9077843 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807815598, + "bounds": { + "minlat": 40.8071939, + "minlon": -73.9077843, + "maxlat": 40.8075086, + "maxlon": -73.9074061 + }, + "nodes": [ + 7554161863, + 7554161864 + ], + "geometry": [ + { "lat": 40.8075086, "lon": -73.9077843 }, + { "lat": 40.8071939, "lon": -73.9074061 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807868262, + "bounds": { + "minlat": 40.8265107, + "minlon": -73.9868987, + "maxlat": 40.8267610, + "maxlon": -73.9867749 + }, + "nodes": [ + 7554624981, + 7554624982 + ], + "geometry": [ + { "lat": 40.8267610, "lon": -73.9867749 }, + { "lat": 40.8265107, "lon": -73.9868987 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 807868263, + "bounds": { + "minlat": 40.8260647, + "minlon": -73.9869423, + "maxlat": 40.8262652, + "maxlon": -73.9867582 + }, + "nodes": [ + 7554624983, + 7554624984 + ], + "geometry": [ + { "lat": 40.8260647, "lon": -73.9869423 }, + { "lat": 40.8262652, "lon": -73.9867582 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 807868288, + "bounds": { + "minlat": 40.8246078, + "minlon": -73.9843453, + "maxlat": 40.8247844, + "maxlon": -73.9839797 + }, + "nodes": [ + 7554631961, + 7554631962, + 7554631963 + ], + "geometry": [ + { "lat": 40.8246815, "lon": -73.9839797 }, + { "lat": 40.8247844, "lon": -73.9842034 }, + { "lat": 40.8246078, "lon": -73.9843453 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807868305, + "bounds": { + "minlat": 40.8249693, + "minlon": -73.9841859, + "maxlat": 40.8251854, + "maxlon": -73.9839866 + }, + "nodes": [ + 7554632056, + 7554632057 + ], + "geometry": [ + { "lat": 40.8251854, "lon": -73.9839866 }, + { "lat": 40.8249693, "lon": -73.9841859 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 807901280, + "bounds": { + "minlat": 40.8148659, + "minlon": -73.9224355, + "maxlat": 40.8150639, + "maxlon": -73.9220389 + }, + "nodes": [ + 7554998274, + 6881378616 + ], + "geometry": [ + { "lat": 40.8148659, "lon": -73.9224355 }, + { "lat": 40.8150639, "lon": -73.9220389 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807901282, + "bounds": { + "minlat": 40.8119347, + "minlon": -73.9255654, + "maxlat": 40.8141852, + "maxlon": -73.9211913 + }, + "nodes": [ + 42762551, + 11217140025, + 11217140026, + 42768504, + 11217140028, + 11217140030, + 42733954, + 11217140031, + 42768499, + 11217140032, + 42743421, + 11217140034, + 11217140035, + 42768489 + ], + "geometry": [ + { "lat": 40.8141852, "lon": -73.9211913 }, + { "lat": 40.8141398, "lon": -73.9212794 }, + { "lat": 40.8137991, "lon": -73.9219527 }, + { "lat": 40.8137491, "lon": -73.9220508 }, + { "lat": 40.8137037, "lon": -73.9221399 }, + { "lat": 40.8133672, "lon": -73.9227867 }, + { "lat": 40.8133225, "lon": -73.9228726 }, + { "lat": 40.8132271, "lon": -73.9230520 }, + { "lat": 40.8128642, "lon": -73.9237512 }, + { "lat": 40.8128049, "lon": -73.9238663 }, + { "lat": 40.8123840, "lon": -73.9246830 }, + { "lat": 40.8123562, "lon": -73.9247348 }, + { "lat": 40.8119818, "lon": -73.9254684 }, + { "lat": 40.8119347, "lon": -73.9255654 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 807901283, + "bounds": { + "minlat": 40.8141852, + "minlon": -73.9221979, + "maxlat": 40.8152390, + "maxlon": -73.9211913 + }, + "nodes": [ + 42762551, + 11217140022, + 6881378640, + 6881378616, + 7554998283, + 42756673 + ], + "geometry": [ + { "lat": 40.8141852, "lon": -73.9211913 }, + { "lat": 40.8142390, "lon": -73.9213096 }, + { "lat": 40.8146203, "lon": -73.9216328 }, + { "lat": 40.8150639, "lon": -73.9220389 }, + { "lat": 40.8151338, "lon": -73.9221017 }, + { "lat": 40.8152390, "lon": -73.9221979 } + ], + "tags": { + "highway": "residential", + "name": "East 145th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "145th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 807901284, + "bounds": { + "minlat": 40.8147155, + "minlon": -73.9229016, + "maxlat": 40.8148689, + "maxlon": -73.9225795 + }, + "nodes": [ + 7554998275, + 7554998276 + ], + "geometry": [ + { "lat": 40.8147155, "lon": -73.9229016 }, + { "lat": 40.8148689, "lon": -73.9225795 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807901285, + "bounds": { + "minlat": 40.8148659, + "minlon": -73.9225795, + "maxlat": 40.8148689, + "maxlon": -73.9224355 + }, + "nodes": [ + 7554998276, + 7555003324, + 7554998274 + ], + "geometry": [ + { "lat": 40.8148689, "lon": -73.9225795 }, + { "lat": 40.8148683, "lon": -73.9225502 }, + { "lat": 40.8148659, "lon": -73.9224355 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807904079, + "bounds": { + "minlat": 40.8117373, + "minlon": -73.9274532, + "maxlat": 40.8122865, + "maxlon": -73.9267335 + }, + "nodes": [ + 7554858679, + 11217150140, + 9632503722, + 12040837165, + 7554858682 + ], + "geometry": [ + { "lat": 40.8117373, "lon": -73.9267335 }, + { "lat": 40.8118009, "lon": -73.9268136 }, + { "lat": 40.8121950, "lon": -73.9273333 }, + { "lat": 40.8122365, "lon": -73.9273940 }, + { "lat": 40.8122865, "lon": -73.9274532 } + ], + "tags": { + "highway": "residential", + "name": "East 139th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 807904080, + "bounds": { + "minlat": 40.8117373, + "minlon": -73.9267335, + "maxlat": 40.8120134, + "maxlon": -73.9264845 + }, + "nodes": [ + 7554858683, + 9163759316, + 11217150141, + 7554858679 + ], + "geometry": [ + { "lat": 40.8120134, "lon": -73.9264845 }, + { "lat": 40.8118304, "lon": -73.9266611 }, + { "lat": 40.8117997, "lon": -73.9266864 }, + { "lat": 40.8117373, "lon": -73.9267335 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 807904081, + "bounds": { + "minlat": 40.8116231, + "minlon": -73.9266924, + "maxlat": 40.8120134, + "maxlon": -73.9264845 + }, + "nodes": [ + 7554858680, + 7554858681, + 11217150142, + 9163778722, + 7554858683 + ], + "geometry": [ + { "lat": 40.8116231, "lon": -73.9266924 }, + { "lat": 40.8116811, "lon": -73.9266576 }, + { "lat": 40.8117463, "lon": -73.9266182 }, + { "lat": 40.8117814, "lon": -73.9265966 }, + { "lat": 40.8120134, "lon": -73.9264845 } + ], + "tags": { + "highway": "residential", + "name": "Morris Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 807905475, + "bounds": { + "minlat": 40.8147056, + "minlon": -73.9185583, + "maxlat": 40.8151602, + "maxlon": -73.9177556 + }, + "nodes": [ + 7555037308, + 595491230, + 6415814876, + 42746065 + ], + "geometry": [ + { "lat": 40.8147056, "lon": -73.9185583 }, + { "lat": 40.8147640, "lon": -73.9184543 }, + { "lat": 40.8151214, "lon": -73.9178275 }, + { "lat": 40.8151602, "lon": -73.9177556 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bergen Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bergen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 807905476, + "bounds": { + "minlat": 40.8136021, + "minlon": -73.9154592, + "maxlat": 40.8143050, + "maxlon": -73.9133473 + }, + "nodes": [ + 9908651015, + 42761060, + 9908651016, + 9908651019, + 9908651020, + 42763165 + ], + "geometry": [ + { "lat": 40.8143050, "lon": -73.9154592 }, + { "lat": 40.8142690, "lon": -73.9153481 }, + { "lat": 40.8142325, "lon": -73.9152427 }, + { "lat": 40.8136568, "lon": -73.9135118 }, + { "lat": 40.8136360, "lon": -73.9134488 }, + { "lat": 40.8136021, "lon": -73.9133473 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 148th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "148th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 807905839, + "bounds": { + "minlat": 40.8111361, + "minlon": -73.9152778, + "maxlat": 40.8114501, + "maxlon": -73.9151075 + }, + "nodes": [ + 7555030369, + 7555030379, + 13899977841, + 7555030370 + ], + "geometry": [ + { "lat": 40.8114501, "lon": -73.9151075 }, + { "lat": 40.8112553, "lon": -73.9152132 }, + { "lat": 40.8111983, "lon": -73.9152441 }, + { "lat": 40.8111361, "lon": -73.9152778 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807905840, + "bounds": { + "minlat": 40.8112002, + "minlon": -73.9154718, + "maxlat": 40.8115131, + "maxlon": -73.9152979 + }, + "nodes": [ + 7555030371, + 7555030373, + 13899977842, + 7555030372 + ], + "geometry": [ + { "lat": 40.8115131, "lon": -73.9152979 }, + { "lat": 40.8113192, "lon": -73.9154057 }, + { "lat": 40.8112628, "lon": -73.9154370 }, + { "lat": 40.8112002, "lon": -73.9154718 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807905841, + "bounds": { + "minlat": 40.8111945, + "minlon": -73.9154057, + "maxlat": 40.8113192, + "maxlon": -73.9150302 + }, + "nodes": [ + 7555030373, + 7555030379, + 7555030374 + ], + "geometry": [ + { "lat": 40.8113192, "lon": -73.9154057 }, + { "lat": 40.8112553, "lon": -73.9152132 }, + { "lat": 40.8111945, "lon": -73.9150302 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807905842, + "bounds": { + "minlat": 40.8111945, + "minlon": -73.9150302, + "maxlat": 40.8113923, + "maxlon": -73.9149264 + }, + "nodes": [ + 7555030375, + 7555030374 + ], + "geometry": [ + { "lat": 40.8113923, "lon": -73.9149264 }, + { "lat": 40.8111945, "lon": -73.9150302 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807906362, + "bounds": { + "minlat": 40.8127917, + "minlon": -73.9262872, + "maxlat": 40.8129597, + "maxlon": -73.9261750 + }, + "nodes": [ + 5482327054, + 5482327053 + ], + "geometry": [ + { "lat": 40.8127917, "lon": -73.9262872 }, + { "lat": 40.8129597, "lon": -73.9261750 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807910721, + "bounds": { + "minlat": 40.8043373, + "minlon": -73.9157189, + "maxlat": 40.8048520, + "maxlon": -73.9153608 + }, + "nodes": [ + 7555027609, + 7155589552, + 7555027610 + ], + "geometry": [ + { "lat": 40.8048520, "lon": -73.9153608 }, + { "lat": 40.8044562, "lon": -73.9156362 }, + { "lat": 40.8043373, "lon": -73.9157189 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807910726, + "bounds": { + "minlat": 40.8048826, + "minlon": -73.9178873, + "maxlat": 40.8051597, + "maxlon": -73.9178339 + }, + "nodes": [ + 7042955061, + 7042955063 + ], + "geometry": [ + { "lat": 40.8048826, "lon": -73.9178339 }, + { "lat": 40.8051597, "lon": -73.9178873 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807911243, + "bounds": { + "minlat": 40.8062257, + "minlon": -73.9198988, + "maxlat": 40.8065371, + "maxlon": -73.9196799 + }, + "nodes": [ + 7038610351, + 7038610353 + ], + "geometry": [ + { "lat": 40.8065371, "lon": -73.9196799 }, + { "lat": 40.8062257, "lon": -73.9198988 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807911244, + "bounds": { + "minlat": 40.8056618, + "minlon": -73.9202190, + "maxlat": 40.8058948, + "maxlon": -73.9201907 + }, + "nodes": [ + 7042955053, + 7042955056 + ], + "geometry": [ + { "lat": 40.8058948, "lon": -73.9202190 }, + { "lat": 40.8056618, "lon": -73.9201907 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807912010, + "bounds": { + "minlat": 40.8066169, + "minlon": -73.9149114, + "maxlat": 40.8069086, + "maxlon": -73.9147102 + }, + "nodes": [ + 7043090370, + 7043090371, + 7043090372 + ], + "geometry": [ + { "lat": 40.8069086, "lon": -73.9147102 }, + { "lat": 40.8066933, "lon": -73.9148588 }, + { "lat": 40.8066169, "lon": -73.9149114 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807926166, + "bounds": { + "minlat": 40.8252218, + "minlon": -73.9871612, + "maxlat": 40.8254006, + "maxlon": -73.9869819 + }, + "nodes": [ + 7555222398, + 7555222399 + ], + "geometry": [ + { "lat": 40.8254006, "lon": -73.9869819 }, + { "lat": 40.8252218, "lon": -73.9871612 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 807926169, + "bounds": { + "minlat": 40.8245026, + "minlon": -73.9857637, + "maxlat": 40.8247034, + "maxlon": -73.9856352 + }, + "nodes": [ + 7555222407, + 12394165141, + 7555222408, + 12394165116 + ], + "geometry": [ + { "lat": 40.8247034, "lon": -73.9856352 }, + { "lat": 40.8246265, "lon": -73.9856656 }, + { "lat": 40.8245471, "lon": -73.9857344 }, + { "lat": 40.8245026, "lon": -73.9857637 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 807947564, + "bounds": { + "minlat": 40.8450820, + "minlon": -73.9398302, + "maxlat": 40.8452308, + "maxlon": -73.9397054 + }, + "nodes": [ + 7555419446, + 9166214000, + 7555419448, + 7555419447 + ], + "geometry": [ + { "lat": 40.8450820, "lon": -73.9398302 }, + { "lat": 40.8451404, "lon": -73.9397812 }, + { "lat": 40.8451585, "lon": -73.9397660 }, + { "lat": 40.8452308, "lon": -73.9397054 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 807968826, + "bounds": { + "minlat": 40.7368365, + "minlon": -73.9522456, + "maxlat": 40.7373671, + "maxlon": -73.9505795 + }, + "nodes": [ + 2475239554, + 2475239577, + 2475239549, + 2475239582, + 2475239557, + 9922459787, + 42469148, + 2473605183 + ], + "geometry": [ + { "lat": 40.7373671, "lon": -73.9522456 }, + { "lat": 40.7373228, "lon": -73.9521071 }, + { "lat": 40.7372417, "lon": -73.9518546 }, + { "lat": 40.7372265, "lon": -73.9518093 }, + { "lat": 40.7370840, "lon": -73.9513577 }, + { "lat": 40.7370792, "lon": -73.9513424 }, + { "lat": 40.7370457, "lon": -73.9512301 }, + { "lat": 40.7368365, "lon": -73.9505795 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Paidge Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 808018725, + "bounds": { + "minlat": 40.8788107, + "minlon": -73.9189796, + "maxlat": 40.8793127, + "maxlon": -73.9182832 + }, + "nodes": [ + 1545167946, + 7556003395, + 7556003396, + 7556003397, + 7556003398, + 7556003399 + ], + "geometry": [ + { "lat": 40.8793104, "lon": -73.9182832 }, + { "lat": 40.8793127, "lon": -73.9184968 }, + { "lat": 40.8792620, "lon": -73.9186483 }, + { "lat": 40.8791819, "lon": -73.9187408 }, + { "lat": 40.8789172, "lon": -73.9189112 }, + { "lat": 40.8788107, "lon": -73.9189796 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 808055022, + "bounds": { + "minlat": 40.7744405, + "minlon": -73.9846511, + "maxlat": 40.7748013, + "maxlon": -73.9843888 + }, + "nodes": [ + 7556282024, + 7050687017, + 42439464 + ], + "geometry": [ + { "lat": 40.7744405, "lon": -73.9846511 }, + { "lat": 40.7747361, "lon": -73.9844357 }, + { "lat": 40.7748013, "lon": -73.9843888 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 808055023, + "bounds": { + "minlat": 40.7748013, + "minlon": -73.9843888, + "maxlat": 40.7772886, + "maxlon": -73.9825693 + }, + "nodes": [ + 42439464, + 7050687016, + 7050687027, + 42429999, + 7050687025, + 6880596137, + 7050687034, + 42442417, + 7050687033, + 3377383055, + 1733614298, + 3377383057, + 5115916411, + 42442422 + ], + "geometry": [ + { "lat": 40.7748013, "lon": -73.9843888 }, + { "lat": 40.7748760, "lon": -73.9843351 }, + { "lat": 40.7753605, "lon": -73.9839792 }, + { "lat": 40.7754121, "lon": -73.9839423 }, + { "lat": 40.7754531, "lon": -73.9839133 }, + { "lat": 40.7754781, "lon": -73.9838950 }, + { "lat": 40.7759861, "lon": -73.9835249 }, + { "lat": 40.7760400, "lon": -73.9834857 }, + { "lat": 40.7760999, "lon": -73.9834415 }, + { "lat": 40.7765917, "lon": -73.9830822 }, + { "lat": 40.7766527, "lon": -73.9830397 }, + { "lat": 40.7767243, "lon": -73.9829900 }, + { "lat": 40.7772375, "lon": -73.9826128 }, + { "lat": 40.7772886, "lon": -73.9825693 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 808055026, + "bounds": { + "minlat": 40.7752328, + "minlon": -73.9835102, + "maxlat": 40.7758631, + "maxlon": -73.9830580 + }, + "nodes": [ + 7556282021, + 9910082174, + 9447754640, + 9447754637, + 12738609984, + 7556282027 + ], + "geometry": [ + { "lat": 40.7752328, "lon": -73.9835102 }, + { "lat": 40.7752958, "lon": -73.9834650 }, + { "lat": 40.7754509, "lon": -73.9833537 }, + { "lat": 40.7756351, "lon": -73.9832216 }, + { "lat": 40.7758058, "lon": -73.9831001 }, + { "lat": 40.7758631, "lon": -73.9830580 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 808190576, + "bounds": { + "minlat": 40.7687105, + "minlon": -73.9888559, + "maxlat": 40.7689036, + "maxlon": -73.9887161 + }, + "nodes": [ + 7557417147, + 12427653345 + ], + "geometry": [ + { "lat": 40.7687105, "lon": -73.9888559 }, + { "lat": 40.7689036, "lon": -73.9887161 } + ], + "tags": { + "change:lanes": "no|not_left|yes|yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "name_1": "10 Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 808190577, + "bounds": { + "minlat": 40.7676461, + "minlon": -73.9896266, + "maxlat": 40.7678263, + "maxlon": -73.9894950 + }, + "nodes": [ + 7557417108, + 3998699925, + 42440966 + ], + "geometry": [ + { "lat": 40.7676461, "lon": -73.9896266 }, + { "lat": 40.7677611, "lon": -73.9895435 }, + { "lat": 40.7678263, "lon": -73.9894950 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "name_1": "10 Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 808190578, + "bounds": { + "minlat": 40.7700992, + "minlon": -73.9878187, + "maxlat": 40.7704036, + "maxlon": -73.9875948 + }, + "nodes": [ + 7557417154, + 9441141805, + 42440935 + ], + "geometry": [ + { "lat": 40.7700992, "lon": -73.9878187 }, + { "lat": 40.7703540, "lon": -73.9876313 }, + { "lat": 40.7704036, "lon": -73.9875948 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "name_1": "10 Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 808190579, + "bounds": { + "minlat": 40.7663977, + "minlon": -73.9905314, + "maxlat": 40.7665639, + "maxlon": -73.9904136 + }, + "nodes": [ + 7557417119, + 6534229348, + 42449550 + ], + "geometry": [ + { "lat": 40.7663977, "lon": -73.9905314 }, + { "lat": 40.7665088, "lon": -73.9904541 }, + { "lat": 40.7665639, "lon": -73.9904136 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through||", + "width": "60'", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 808190584, + "bounds": { + "minlat": 40.7678263, + "minlon": -73.9894950, + "maxlat": 40.7687105, + "maxlon": -73.9888559 + }, + "nodes": [ + 42440966, + 3998699927, + 3998699929, + 42431563, + 3998699931, + 7557417147 + ], + "geometry": [ + { "lat": 40.7678263, "lon": -73.9894950 }, + { "lat": 40.7678753, "lon": -73.9894583 }, + { "lat": 40.7683899, "lon": -73.9890883 }, + { "lat": 40.7684455, "lon": -73.9890489 }, + { "lat": 40.7685018, "lon": -73.9890075 }, + { "lat": 40.7687105, "lon": -73.9888559 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "name_1": "10 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 808190587, + "bounds": { + "minlat": 40.7653085, + "minlon": -73.9913292, + "maxlat": 40.7659445, + "maxlon": -73.9908549 + }, + "nodes": [ + 42454042, + 10090624299, + 10085807107, + 42446363 + ], + "geometry": [ + { "lat": 40.7653085, "lon": -73.9913292 }, + { "lat": 40.7653703, "lon": -73.9912841 }, + { "lat": 40.7658781, "lon": -73.9909054 }, + { "lat": 40.7659445, "lon": -73.9908549 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "69'6\"", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 808190588, + "bounds": { + "minlat": 40.7665639, + "minlon": -73.9904136, + "maxlat": 40.7671828, + "maxlon": -73.9899624 + }, + "nodes": [ + 42449550, + 6534229346, + 6534229345, + 42450434 + ], + "geometry": [ + { "lat": 40.7665639, "lon": -73.9904136 }, + { "lat": 40.7666218, "lon": -73.9903712 }, + { "lat": 40.7671325, "lon": -73.9899990 }, + { "lat": 40.7671828, "lon": -73.9899624 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "60'", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 808192821, + "bounds": { + "minlat": 40.8240331, + "minlon": -73.9851524, + "maxlat": 40.8245767, + "maxlon": -73.9845300 + }, + "nodes": [ + 7557435062, + 7557435063, + 103264115 + ], + "geometry": [ + { "lat": 40.8240331, "lon": -73.9845300 }, + { "lat": 40.8243900, "lon": -73.9851524 }, + { "lat": 40.8245767, "lon": -73.9849745 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 808194438, + "bounds": { + "minlat": 40.8242293, + "minlon": -73.9867705, + "maxlat": 40.8244430, + "maxlon": -73.9865834 + }, + "nodes": [ + 7557454823, + 7557454824 + ], + "geometry": [ + { "lat": 40.8244430, "lon": -73.9865834 }, + { "lat": 40.8242293, "lon": -73.9867705 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 808194439, + "bounds": { + "minlat": 40.8241689, + "minlon": -73.9870896, + "maxlat": 40.8243956, + "maxlon": -73.9866424 + }, + "nodes": [ + 7557454825, + 7557454826, + 7557454824, + 7557454827 + ], + "geometry": [ + { "lat": 40.8243956, "lon": -73.9870896 }, + { "lat": 40.8243134, "lon": -73.9869377 }, + { "lat": 40.8242293, "lon": -73.9867705 }, + { "lat": 40.8241689, "lon": -73.9866424 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808194473, + "bounds": { + "minlat": 40.8233330, + "minlon": -73.9868505, + "maxlat": 40.8235225, + "maxlon": -73.9863573 + }, + "nodes": [ + 7557454988, + 7557454989, + 7557454990 + ], + "geometry": [ + { "lat": 40.8235225, "lon": -73.9868505 }, + { "lat": 40.8233732, "lon": -73.9864619 }, + { "lat": 40.8233330, "lon": -73.9863573 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808194474, + "bounds": { + "minlat": 40.8232286, + "minlon": -73.9869539, + "maxlat": 40.8233763, + "maxlon": -73.9865711 + }, + "nodes": [ + 7557454991, + 7557454992 + ], + "geometry": [ + { "lat": 40.8233763, "lon": -73.9869539 }, + { "lat": 40.8232286, "lon": -73.9865711 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808196868, + "bounds": { + "minlat": 40.8152559, + "minlon": -73.9126284, + "maxlat": 40.8153288, + "maxlon": -73.9123928 + }, + "nodes": [ + 7557474510, + 5482340608 + ], + "geometry": [ + { "lat": 40.8153288, "lon": -73.9126284 }, + { "lat": 40.8152559, "lon": -73.9123928 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808196870, + "bounds": { + "minlat": 40.8146301, + "minlon": -73.9140319, + "maxlat": 40.8149805, + "maxlon": -73.9138415 + }, + "nodes": [ + 7557474517, + 5482340600, + 13041667478, + 5482340604 + ], + "geometry": [ + { "lat": 40.8149805, "lon": -73.9138415 }, + { "lat": 40.8148047, "lon": -73.9139365 }, + { "lat": 40.8147329, "lon": -73.9139757 }, + { "lat": 40.8146301, "lon": -73.9140319 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808196871, + "bounds": { + "minlat": 40.8147522, + "minlon": -73.9137806, + "maxlat": 40.8149304, + "maxlon": -73.9136854 + }, + "nodes": [ + 7557474518, + 5482340601 + ], + "geometry": [ + { "lat": 40.8149304, "lon": -73.9136854 }, + { "lat": 40.8147522, "lon": -73.9137806 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808196872, + "bounds": { + "minlat": 40.8149304, + "minlon": -73.9138415, + "maxlat": 40.8149805, + "maxlon": -73.9136854 + }, + "nodes": [ + 7557474517, + 7557474518 + ], + "geometry": [ + { "lat": 40.8149805, "lon": -73.9138415 }, + { "lat": 40.8149304, "lon": -73.9136854 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808196874, + "bounds": { + "minlat": 40.8147270, + "minlon": -73.9143252, + "maxlat": 40.8149511, + "maxlon": -73.9142086 + }, + "nodes": [ + 7557474521, + 13041667479, + 7557474522 + ], + "geometry": [ + { "lat": 40.8149511, "lon": -73.9142086 }, + { "lat": 40.8148308, "lon": -73.9142712 }, + { "lat": 40.8147270, "lon": -73.9143252 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808196875, + "bounds": { + "minlat": 40.8149112, + "minlon": -73.9147495, + "maxlat": 40.8153067, + "maxlon": -73.9139919 + }, + "nodes": [ + 7557474521, + 10865471802, + 10865471803, + 10865471804, + 5482340598, + 7557474525, + 10865487006, + 10865487005, + 7557474524, + 13041711463, + 7557474523 + ], + "geometry": [ + { "lat": 40.8149511, "lon": -73.9142086 }, + { "lat": 40.8149116, "lon": -73.9140872 }, + { "lat": 40.8149112, "lon": -73.9140652 }, + { "lat": 40.8149155, "lon": -73.9140482 }, + { "lat": 40.8149251, "lon": -73.9140338 }, + { "lat": 40.8150030, "lon": -73.9139919 }, + { "lat": 40.8150217, "lon": -73.9139924 }, + { "lat": 40.8150445, "lon": -73.9140059 }, + { "lat": 40.8150600, "lon": -73.9140261 }, + { "lat": 40.8152663, "lon": -73.9146309 }, + { "lat": 40.8153067, "lon": -73.9147495 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808197776, + "bounds": { + "minlat": 40.8227447, + "minlon": -73.9862406, + "maxlat": 40.8230116, + "maxlon": -73.9855639 + }, + "nodes": [ + 7557491302, + 7557491303, + 7557491304 + ], + "geometry": [ + { "lat": 40.8227447, "lon": -73.9855639 }, + { "lat": 40.8230116, "lon": -73.9860474 }, + { "lat": 40.8228112, "lon": -73.9862406 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 808197784, + "bounds": { + "minlat": 40.8222029, + "minlon": -73.9868668, + "maxlat": 40.8225397, + "maxlon": -73.9863827 + }, + "nodes": [ + 7557491365, + 7557491366, + 7557491367, + 7557491368, + 7557491369 + ], + "geometry": [ + { "lat": 40.8222029, "lon": -73.9868668 }, + { "lat": 40.8223519, "lon": -73.9867754 }, + { "lat": 40.8225397, "lon": -73.9866353 }, + { "lat": 40.8225011, "lon": -73.9865331 }, + { "lat": 40.8224072, "lon": -73.9863827 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 808198357, + "bounds": { + "minlat": 40.8123456, + "minlon": -73.9102115, + "maxlat": 40.8124873, + "maxlon": -73.9098680 + }, + "nodes": [ + 5487854699, + 7557486554 + ], + "geometry": [ + { "lat": 40.8123456, "lon": -73.9098680 }, + { "lat": 40.8124873, "lon": -73.9102115 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808198362, + "bounds": { + "minlat": 40.8181370, + "minlon": -73.9121452, + "maxlat": 40.8181746, + "maxlon": -73.9118917 + }, + "nodes": [ + 5482340585, + 7557486568 + ], + "geometry": [ + { "lat": 40.8181746, "lon": -73.9121452 }, + { "lat": 40.8181370, "lon": -73.9118917 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808198878, + "bounds": { + "minlat": 40.8161175, + "minlon": -73.9126597, + "maxlat": 40.8165062, + "maxlon": -73.9125881 + }, + "nodes": [ + 7557464203, + 7557464204 + ], + "geometry": [ + { "lat": 40.8165062, "lon": -73.9125881 }, + { "lat": 40.8161175, "lon": -73.9126597 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808198880, + "bounds": { + "minlat": 40.8187437, + "minlon": -73.9240827, + "maxlat": 40.8191573, + "maxlon": -73.9239145 + }, + "nodes": [ + 7557464209, + 5487843494, + 7557464208 + ], + "geometry": [ + { "lat": 40.8187437, "lon": -73.9240827 }, + { "lat": 40.8189276, "lon": -73.9240090 }, + { "lat": 40.8191573, "lon": -73.9239145 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 808198881, + "bounds": { + "minlat": 40.8187437, + "minlon": -73.9244781, + "maxlat": 40.8188428, + "maxlon": -73.9240827 + }, + "nodes": [ + 13232762731, + 7557464209 + ], + "geometry": [ + { "lat": 40.8188428, "lon": -73.9244781 }, + { "lat": 40.8187437, "lon": -73.9240827 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 808201728, + "bounds": { + "minlat": 40.8211610, + "minlon": -73.9258484, + "maxlat": 40.8212251, + "maxlon": -73.9256737 + }, + "nodes": [ + 42741423, + 12162740249, + 12162740248, + 2408448891 + ], + "geometry": [ + { "lat": 40.8212251, "lon": -73.9258484 }, + { "lat": 40.8211921, "lon": -73.9257681 }, + { "lat": 40.8211749, "lon": -73.9257223 }, + { "lat": 40.8211610, "lon": -73.9256737 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 153rd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 808201730, + "bounds": { + "minlat": 40.8199534, + "minlon": -73.9250176, + "maxlat": 40.8211256, + "maxlon": -73.9243645 + }, + "nodes": [ + 7069303134, + 7557517344 + ], + "geometry": [ + { "lat": 40.8211256, "lon": -73.9243645 }, + { "lat": 40.8199534, "lon": -73.9250176 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 808201731, + "bounds": { + "minlat": 40.8199348, + "minlon": -73.9250176, + "maxlat": 40.8202761, + "maxlon": -73.9237650 + }, + "nodes": [ + 7557517344, + 7557517347, + 7557517346, + 7557517345, + 7557517343 + ], + "geometry": [ + { "lat": 40.8199534, "lon": -73.9250176 }, + { "lat": 40.8199348, "lon": -73.9247774 }, + { "lat": 40.8199610, "lon": -73.9245317 }, + { "lat": 40.8200930, "lon": -73.9241028 }, + { "lat": 40.8202761, "lon": -73.9237650 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 808201732, + "bounds": { + "minlat": 40.8212762, + "minlon": -73.9224989, + "maxlat": 40.8223729, + "maxlon": -73.9207985 + }, + "nodes": [ + 7557517348, + 13185824065, + 7557517351, + 7557517352, + 7557517350, + 7557517349 + ], + "geometry": [ + { "lat": 40.8212767, "lon": -73.9224989 }, + { "lat": 40.8212762, "lon": -73.9223859 }, + { "lat": 40.8213305, "lon": -73.9222971 }, + { "lat": 40.8218860, "lon": -73.9214899 }, + { "lat": 40.8221165, "lon": -73.9210488 }, + { "lat": 40.8223729, "lon": -73.9207985 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 808202195, + "bounds": { + "minlat": 40.8210017, + "minlon": -73.9233266, + "maxlat": 40.8213957, + "maxlon": -73.9228525 + }, + "nodes": [ + 7557500160, + 3695220269, + 3695220271 + ], + "geometry": [ + { "lat": 40.8213957, "lon": -73.9233266 }, + { "lat": 40.8211810, "lon": -73.9230683 }, + { "lat": 40.8210017, "lon": -73.9228525 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 808202196, + "bounds": { + "minlat": 40.8208606, + "minlon": -73.9241432, + "maxlat": 40.8212037, + "maxlon": -73.9231708 + }, + "nodes": [ + 7557500161, + 7557500162 + ], + "geometry": [ + { "lat": 40.8212037, "lon": -73.9241432 }, + { "lat": 40.8208606, "lon": -73.9231708 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808202197, + "bounds": { + "minlat": 40.8208257, + "minlon": -73.9231708, + "maxlat": 40.8208606, + "maxlon": -73.9230738 + }, + "nodes": [ + 10635464416, + 7557500162 + ], + "geometry": [ + { "lat": 40.8208257, "lon": -73.9230738 }, + { "lat": 40.8208606, "lon": -73.9231708 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808202198, + "bounds": { + "minlat": 40.8232016, + "minlon": -73.9211344, + "maxlat": 40.8244361, + "maxlon": -73.9204696 + }, + "nodes": [ + 5356400997, + 5356401001, + 5356401003, + 5356401005, + 5356401007, + 5356401009, + 5356401011, + 5356401013, + 5356401015, + 7557500164 + ], + "geometry": [ + { "lat": 40.8244361, "lon": -73.9204696 }, + { "lat": 40.8243724, "lon": -73.9205039 }, + { "lat": 40.8242429, "lon": -73.9205737 }, + { "lat": 40.8240825, "lon": -73.9206600 }, + { "lat": 40.8239346, "lon": -73.9207397 }, + { "lat": 40.8237831, "lon": -73.9208213 }, + { "lat": 40.8236330, "lon": -73.9209021 }, + { "lat": 40.8234899, "lon": -73.9209792 }, + { "lat": 40.8233330, "lon": -73.9210636 }, + { "lat": 40.8232016, "lon": -73.9211344 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808202199, + "bounds": { + "minlat": 40.8233786, + "minlon": -73.9218913, + "maxlat": 40.8246066, + "maxlon": -73.9212395 + }, + "nodes": [ + 5356401000, + 5356401002, + 5356401004, + 5356401006, + 5356401008, + 5356401010, + 5356401012, + 5356401014, + 7557500165, + 5356400999 + ], + "geometry": [ + { "lat": 40.8246066, "lon": -73.9212395 }, + { "lat": 40.8244732, "lon": -73.9213103 }, + { "lat": 40.8243116, "lon": -73.9213961 }, + { "lat": 40.8241696, "lon": -73.9214714 }, + { "lat": 40.8240158, "lon": -73.9215531 }, + { "lat": 40.8238688, "lon": -73.9216311 }, + { "lat": 40.8237186, "lon": -73.9217109 }, + { "lat": 40.8235645, "lon": -73.9217926 }, + { "lat": 40.8234343, "lon": -73.9218617 }, + { "lat": 40.8233786, "lon": -73.9218913 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808202200, + "bounds": { + "minlat": 40.8232016, + "minlon": -73.9218617, + "maxlat": 40.8234343, + "maxlon": -73.9211344 + }, + "nodes": [ + 7557500165, + 7557500164 + ], + "geometry": [ + { "lat": 40.8234343, "lon": -73.9218617 }, + { "lat": 40.8232016, "lon": -73.9211344 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808215732, + "bounds": { + "minlat": 40.8228063, + "minlon": -73.9160142, + "maxlat": 40.8230382, + "maxlon": -73.9152520 + }, + "nodes": [ + 7557632333, + 7557632334 + ], + "geometry": [ + { "lat": 40.8230382, "lon": -73.9160142 }, + { "lat": 40.8228063, "lon": -73.9152520 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808215733, + "bounds": { + "minlat": 40.8228063, + "minlon": -73.9152520, + "maxlat": 40.8231236, + "maxlon": -73.9150879 + }, + "nodes": [ + 5482222778, + 12040128171, + 7557632334 + ], + "geometry": [ + { "lat": 40.8231236, "lon": -73.9150879 }, + { "lat": 40.8230715, "lon": -73.9151148 }, + { "lat": 40.8228063, "lon": -73.9152520 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808215734, + "bounds": { + "minlat": 40.8220594, + "minlon": -73.9158394, + "maxlat": 40.8222258, + "maxlon": -73.9152869 + }, + "nodes": [ + 7557632335, + 7557632336 + ], + "geometry": [ + { "lat": 40.8222258, "lon": -73.9158394 }, + { "lat": 40.8220594, "lon": -73.9152869 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808215735, + "bounds": { + "minlat": 40.8222258, + "minlon": -73.9159352, + "maxlat": 40.8223245, + "maxlon": -73.9158394 + }, + "nodes": [ + 7557632335, + 5482222775 + ], + "geometry": [ + { "lat": 40.8222258, "lon": -73.9158394 }, + { "lat": 40.8223245, "lon": -73.9159352 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808215737, + "bounds": { + "minlat": 40.8249217, + "minlon": -73.9066354, + "maxlat": 40.8253401, + "maxlon": -73.9064750 + }, + "nodes": [ + 5482222798, + 7557632338 + ], + "geometry": [ + { "lat": 40.8253401, "lon": -73.9064750 }, + { "lat": 40.8249217, "lon": -73.9066354 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216915, + "bounds": { + "minlat": 40.8246780, + "minlon": -73.9095394, + "maxlat": 40.8247591, + "maxlon": -73.9092806 + }, + "nodes": [ + 5482222750, + 5482222749 + ], + "geometry": [ + { "lat": 40.8246780, "lon": -73.9092806 }, + { "lat": 40.8247591, "lon": -73.9095394 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216916, + "bounds": { + "minlat": 40.8244096, + "minlon": -73.9097214, + "maxlat": 40.8247591, + "maxlon": -73.9095394 + }, + "nodes": [ + 5482222749, + 12039986422, + 7557648828 + ], + "geometry": [ + { "lat": 40.8247591, "lon": -73.9095394 }, + { "lat": 40.8245040, "lon": -73.9096722 }, + { "lat": 40.8244096, "lon": -73.9097214 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216917, + "bounds": { + "minlat": 40.8242039, + "minlon": -73.9108174, + "maxlat": 40.8244690, + "maxlon": -73.9099035 + }, + "nodes": [ + 42730077, + 9977850231, + 9917683074, + 9917683083, + 9917683086, + 9917683082, + 9917683087, + 9917683088, + 7557648829 + ], + "geometry": [ + { "lat": 40.8242039, "lon": -73.9108174 }, + { "lat": 40.8242477, "lon": -73.9106869 }, + { "lat": 40.8243309, "lon": -73.9104395 }, + { "lat": 40.8243735, "lon": -73.9102959 }, + { "lat": 40.8243961, "lon": -73.9102273 }, + { "lat": 40.8244188, "lon": -73.9101587 }, + { "lat": 40.8244313, "lon": -73.9101165 }, + { "lat": 40.8244401, "lon": -73.9100757 }, + { "lat": 40.8244690, "lon": -73.9099035 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Elton Avenue", + "oneway": "yes", + "sidewalk:right": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 808216918, + "bounds": { + "minlat": 40.8243317, + "minlon": -73.9094750, + "maxlat": 40.8246780, + "maxlon": -73.9092806 + }, + "nodes": [ + 5482222750, + 12039986421, + 7557648830 + ], + "geometry": [ + { "lat": 40.8246780, "lon": -73.9092806 }, + { "lat": 40.8244260, "lon": -73.9094333 }, + { "lat": 40.8243317, "lon": -73.9094750 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216920, + "bounds": { + "minlat": 40.8255802, + "minlon": -73.9109208, + "maxlat": 40.8256532, + "maxlon": -73.9107089 + }, + "nodes": [ + 7557648832, + 7557648833 + ], + "geometry": [ + { "lat": 40.8256532, "lon": -73.9109208 }, + { "lat": 40.8255802, "lon": -73.9107089 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216921, + "bounds": { + "minlat": 40.8252522, + "minlon": -73.9108870, + "maxlat": 40.8255802, + "maxlon": -73.9107089 + }, + "nodes": [ + 7557648833, + 7557648834 + ], + "geometry": [ + { "lat": 40.8255802, "lon": -73.9107089 }, + { "lat": 40.8252522, "lon": -73.9108870 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216922, + "bounds": { + "minlat": 40.8250805, + "minlon": -73.9110978, + "maxlat": 40.8253184, + "maxlon": -73.9103370 + }, + "nodes": [ + 7557648835, + 7557648834, + 7557648841, + 7557648836, + 12038478839, + 8404331295 + ], + "geometry": [ + { "lat": 40.8253184, "lon": -73.9110978 }, + { "lat": 40.8252522, "lon": -73.9108870 }, + { "lat": 40.8252169, "lon": -73.9107743 }, + { "lat": 40.8251560, "lon": -73.9105801 }, + { "lat": 40.8251105, "lon": -73.9104335 }, + { "lat": 40.8250805, "lon": -73.9103370 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216923, + "bounds": { + "minlat": 40.8249571, + "minlon": -73.9108779, + "maxlat": 40.8250220, + "maxlon": -73.9106821 + }, + "nodes": [ + 7557648837, + 7557648838 + ], + "geometry": [ + { "lat": 40.8250220, "lon": -73.9108779 }, + { "lat": 40.8249571, "lon": -73.9106821 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216924, + "bounds": { + "minlat": 40.8253184, + "minlon": -73.9110978, + "maxlat": 40.8256532, + "maxlon": -73.9109208 + }, + "nodes": [ + 7557648832, + 6166458443, + 7557648840, + 7557648835 + ], + "geometry": [ + { "lat": 40.8256532, "lon": -73.9109208 }, + { "lat": 40.8255273, "lon": -73.9109873 }, + { "lat": 40.8254482, "lon": -73.9110292 }, + { "lat": 40.8253184, "lon": -73.9110978 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216925, + "bounds": { + "minlat": 40.8253724, + "minlon": -73.9114566, + "maxlat": 40.8254482, + "maxlon": -73.9110292 + }, + "nodes": [ + 5540168254, + 12038479092, + 7557648840 + ], + "geometry": [ + { "lat": 40.8253724, "lon": -73.9114566 }, + { "lat": 40.8253919, "lon": -73.9113468 }, + { "lat": 40.8254482, "lon": -73.9110292 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216926, + "bounds": { + "minlat": 40.8249571, + "minlon": -73.9106821, + "maxlat": 40.8251560, + "maxlon": -73.9105801 + }, + "nodes": [ + 7557648836, + 7557648838 + ], + "geometry": [ + { "lat": 40.8251560, "lon": -73.9105801 }, + { "lat": 40.8249571, "lon": -73.9106821 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216927, + "bounds": { + "minlat": 40.8250220, + "minlon": -73.9108779, + "maxlat": 40.8252169, + "maxlon": -73.9107743 + }, + "nodes": [ + 7557648841, + 7557648837 + ], + "geometry": [ + { "lat": 40.8252169, "lon": -73.9107743 }, + { "lat": 40.8250220, "lon": -73.9108779 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216928, + "bounds": { + "minlat": 40.8251276, + "minlon": -73.9110978, + "maxlat": 40.8253184, + "maxlon": -73.9110415 + }, + "nodes": [ + 7557648835, + 7557648842 + ], + "geometry": [ + { "lat": 40.8253184, "lon": -73.9110978 }, + { "lat": 40.8251276, "lon": -73.9110415 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216930, + "bounds": { + "minlat": 40.8272880, + "minlon": -73.9119799, + "maxlat": 40.8273087, + "maxlon": -73.9117428 + }, + "nodes": [ + 7557648849, + 12038479090, + 5482222773 + ], + "geometry": [ + { "lat": 40.8273087, "lon": -73.9119799 }, + { "lat": 40.8272982, "lon": -73.9118591 }, + { "lat": 40.8272880, "lon": -73.9117428 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216931, + "bounds": { + "minlat": 40.8248150, + "minlon": -73.9097808, + "maxlat": 40.8249632, + "maxlon": -73.9097057 + }, + "nodes": [ + 5540230537, + 7557648850 + ], + "geometry": [ + { "lat": 40.8248150, "lon": -73.9097808 }, + { "lat": 40.8249632, "lon": -73.9097057 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216932, + "bounds": { + "minlat": 40.8243421, + "minlon": -73.9069001, + "maxlat": 40.8245207, + "maxlon": -73.9068277 + }, + "nodes": [ + 7557648851, + 7557648852 + ], + "geometry": [ + { "lat": 40.8245207, "lon": -73.9068277 }, + { "lat": 40.8243421, "lon": -73.9069001 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216933, + "bounds": { + "minlat": 40.8244760, + "minlon": -73.9068277, + "maxlat": 40.8245207, + "maxlon": -73.9066346 + }, + "nodes": [ + 7557648851, + 5482222732 + ], + "geometry": [ + { "lat": 40.8245207, "lon": -73.9068277 }, + { "lat": 40.8244760, "lon": -73.9066346 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216934, + "bounds": { + "minlat": 40.8242757, + "minlon": -73.9066878, + "maxlat": 40.8243304, + "maxlon": -73.9064635 + }, + "nodes": [ + 7557648853, + 5482222733 + ], + "geometry": [ + { "lat": 40.8243304, "lon": -73.9066878 }, + { "lat": 40.8242757, "lon": -73.9064635 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216939, + "bounds": { + "minlat": 40.8206409, + "minlon": -73.9074689, + "maxlat": 40.8210593, + "maxlon": -73.9072944 + }, + "nodes": [ + 5482340573, + 7557648859 + ], + "geometry": [ + { "lat": 40.8210593, "lon": -73.9072944 }, + { "lat": 40.8206409, "lon": -73.9074689 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808216940, + "bounds": { + "minlat": 40.8206409, + "minlon": -73.9079267, + "maxlat": 40.8207526, + "maxlon": -73.9074689 + }, + "nodes": [ + 5482340575, + 7557648859 + ], + "geometry": [ + { "lat": 40.8207526, "lon": -73.9079267 }, + { "lat": 40.8206409, "lon": -73.9074689 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808217072, + "bounds": { + "minlat": 40.8200846, + "minlon": -73.9070005, + "maxlat": 40.8201488, + "maxlon": -73.9067451 + }, + "nodes": [ + 7557648746, + 7557648747 + ], + "geometry": [ + { "lat": 40.8201488, "lon": -73.9070005 }, + { "lat": 40.8200846, "lon": -73.9067451 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808217073, + "bounds": { + "minlat": 40.8205838, + "minlon": -73.9067806, + "maxlat": 40.8206420, + "maxlon": -73.9065438 + }, + "nodes": [ + 7557648748, + 7557648749 + ], + "geometry": [ + { "lat": 40.8206420, "lon": -73.9067806 }, + { "lat": 40.8205838, "lon": -73.9065438 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808217074, + "bounds": { + "minlat": 40.8190669, + "minlon": -73.9118393, + "maxlat": 40.8196182, + "maxlon": -73.9116884 + }, + "nodes": [ + 5482340590, + 7557648750 + ], + "geometry": [ + { "lat": 40.8196182, "lon": -73.9116884 }, + { "lat": 40.8190669, "lon": -73.9118393 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808222276, + "bounds": { + "minlat": 40.8106362, + "minlon": -73.9239416, + "maxlat": 40.8107708, + "maxlon": -73.9236150 + }, + "nodes": [ + 5482371872, + 5482371871 + ], + "geometry": [ + { "lat": 40.8107708, "lon": -73.9239416 }, + { "lat": 40.8106362, "lon": -73.9236150 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808222277, + "bounds": { + "minlat": 40.8105134, + "minlon": -73.9237008, + "maxlat": 40.8106362, + "maxlon": -73.9236150 + }, + "nodes": [ + 5482371871, + 5482371869 + ], + "geometry": [ + { "lat": 40.8106362, "lon": -73.9236150 }, + { "lat": 40.8105134, "lon": -73.9237008 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808222278, + "bounds": { + "minlat": 40.8142196, + "minlon": -73.9315356, + "maxlat": 40.8142290, + "maxlon": -73.9312418 + }, + "nodes": [ + 7085574265, + 7085574267, + 13004515405, + 7085574266 + ], + "geometry": [ + { "lat": 40.8142290, "lon": -73.9315356 }, + { "lat": 40.8142230, "lon": -73.9313626 }, + { "lat": 40.8142223, "lon": -73.9313384 }, + { "lat": 40.8142196, "lon": -73.9312418 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808222279, + "bounds": { + "minlat": 40.8135879, + "minlon": -73.9323221, + "maxlat": 40.8139888, + "maxlon": -73.9314410 + }, + "nodes": [ + 595801199, + 12994188096, + 12994188099, + 9051549340, + 595801202 + ], + "geometry": [ + { "lat": 40.8139888, "lon": -73.9323221 }, + { "lat": 40.8139423, "lon": -73.9322133 }, + { "lat": 40.8138971, "lon": -73.9321138 }, + { "lat": 40.8136232, "lon": -73.9315158 }, + { "lat": 40.8135879, "lon": -73.9314410 } + ], + "tags": { + "highway": "unclassified", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 808222280, + "bounds": { + "minlat": 40.8139888, + "minlon": -73.9323221, + "maxlat": 40.8142458, + "maxlon": -73.9323062 + }, + "nodes": [ + 595801197, + 595801199 + ], + "geometry": [ + { "lat": 40.8142458, "lon": -73.9323062 }, + { "lat": 40.8139888, "lon": -73.9323221 } + ], + "tags": { + "highway": "unclassified", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 808222281, + "bounds": { + "minlat": 40.8141388, + "minlon": -73.9320437, + "maxlat": 40.8143229, + "maxlon": -73.9315883 + }, + "nodes": [ + 7085574270, + 7085574271 + ], + "geometry": [ + { "lat": 40.8143229, "lon": -73.9320437 }, + { "lat": 40.8141388, "lon": -73.9315883 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808222282, + "bounds": { + "minlat": 40.8154121, + "minlon": -73.9320540, + "maxlat": 40.8161318, + "maxlon": -73.9320513 + }, + "nodes": [ + 7557653511, + 7557653515, + 7557653512 + ], + "geometry": [ + { "lat": 40.8161318, "lon": -73.9320513 }, + { "lat": 40.8157567, "lon": -73.9320527 }, + { "lat": 40.8154121, "lon": -73.9320540 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808222283, + "bounds": { + "minlat": 40.8154075, + "minlon": -73.9317165, + "maxlat": 40.8161257, + "maxlon": -73.9317138 + }, + "nodes": [ + 7557653513, + 7557653516, + 7557653514 + ], + "geometry": [ + { "lat": 40.8161257, "lon": -73.9317165 }, + { "lat": 40.8157547, "lon": -73.9317151 }, + { "lat": 40.8154075, "lon": -73.9317138 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808222284, + "bounds": { + "minlat": 40.8157547, + "minlon": -73.9320527, + "maxlat": 40.8157567, + "maxlon": -73.9317151 + }, + "nodes": [ + 7557653515, + 7557653516 + ], + "geometry": [ + { "lat": 40.8157567, "lon": -73.9320527 }, + { "lat": 40.8157547, "lon": -73.9317151 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808222285, + "bounds": { + "minlat": 40.8153999, + "minlon": -73.9320540, + "maxlat": 40.8154121, + "maxlon": -73.9311948 + }, + "nodes": [ + 7557653512, + 7557653514, + 13004515407, + 7557653517 + ], + "geometry": [ + { "lat": 40.8154121, "lon": -73.9320540 }, + { "lat": 40.8154075, "lon": -73.9317138 }, + { "lat": 40.8154012, "lon": -73.9312814 }, + { "lat": 40.8153999, "lon": -73.9311948 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808222286, + "bounds": { + "minlat": 40.8144978, + "minlon": -73.9311975, + "maxlat": 40.8159997, + "maxlon": -73.9311495 + }, + "nodes": [ + 595793809, + 9163819532, + 9163819531, + 7557653517, + 7085574262, + 529292924 + ], + "geometry": [ + { "lat": 40.8159997, "lon": -73.9311877 }, + { "lat": 40.8159228, "lon": -73.9311949 }, + { "lat": 40.8158456, "lon": -73.9311975 }, + { "lat": 40.8153999, "lon": -73.9311948 }, + { "lat": 40.8151780, "lon": -73.9311935 }, + { "lat": 40.8144978, "lon": -73.9311495 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Exterior Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 808224762, + "bounds": { + "minlat": 40.8191085, + "minlon": -73.9292073, + "maxlat": 40.8224093, + "maxlon": -73.9279194 + }, + "nodes": [ + 4207899735, + 13329984715, + 10637286563, + 13329965800, + 42733551, + 13329965798, + 42734150, + 2611678496, + 1213919118 + ], + "geometry": [ + { "lat": 40.8191085, "lon": -73.9292073 }, + { "lat": 40.8191774, "lon": -73.9291820 }, + { "lat": 40.8193624, "lon": -73.9291141 }, + { "lat": 40.8199596, "lon": -73.9288713 }, + { "lat": 40.8200162, "lon": -73.9288483 }, + { "lat": 40.8200819, "lon": -73.9288231 }, + { "lat": 40.8219579, "lon": -73.9281025 }, + { "lat": 40.8222202, "lon": -73.9279951 }, + { "lat": 40.8224093, "lon": -73.9279194 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "name": "Gerard Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 808224763, + "bounds": { + "minlat": 40.8185896, + "minlon": -73.9282771, + "maxlat": 40.8187803, + "maxlon": -73.9273865 + }, + "nodes": [ + 42733691, + 9917864249, + 4207899732, + 9903127449, + 42741436 + ], + "geometry": [ + { "lat": 40.8187803, "lon": -73.9282771 }, + { "lat": 40.8187598, "lon": -73.9281975 }, + { "lat": 40.8185921, "lon": -73.9275432 }, + { "lat": 40.8185900, "lon": -73.9274832 }, + { "lat": 40.8185896, "lon": -73.9273865 } + ], + "tags": { + "busway:right": "lane", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455" + } +}, +{ + "type": "way", + "id": 808224764, + "bounds": { + "minlat": 40.8171472, + "minlon": -73.9309685, + "maxlat": 40.8172409, + "maxlon": -73.9309072 + }, + "nodes": [ + 595790188, + 7557695127 + ], + "geometry": [ + { "lat": 40.8171472, "lon": -73.9309685 }, + { "lat": 40.8172409, "lon": -73.9309072 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 808436900, + "bounds": { + "minlat": 40.8223902, + "minlon": -73.9210391, + "maxlat": 40.8228518, + "maxlon": -73.9206797 + }, + "nodes": [ + 7559717914, + 12038479018, + 7559717915, + 7559717916, + 7559717917, + 7559717918 + ], + "geometry": [ + { "lat": 40.8228518, "lon": -73.9206797 }, + { "lat": 40.8228065, "lon": -73.9207072 }, + { "lat": 40.8227657, "lon": -73.9207320 }, + { "lat": 40.8227180, "lon": -73.9207615 }, + { "lat": 40.8227444, "lon": -73.9208474 }, + { "lat": 40.8223902, "lon": -73.9210391 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 808473896, + "bounds": { + "minlat": 40.7558116, + "minlon": -74.0007876, + "maxlat": 40.7561911, + "maxlon": -73.9999743 + }, + "nodes": [ + 3270031028, + 9421943122, + 10691086273, + 6634486307, + 5165632724, + 11153451719, + 5481855027, + 593915274 + ], + "geometry": [ + { "lat": 40.7558116, "lon": -73.9999743 }, + { "lat": 40.7558424, "lon": -74.0000473 }, + { "lat": 40.7559696, "lon": -74.0003194 }, + { "lat": 40.7559927, "lon": -74.0003727 }, + { "lat": 40.7560242, "lon": -74.0004455 }, + { "lat": 40.7560607, "lon": -74.0005185 }, + { "lat": 40.7561238, "lon": -74.0006439 }, + { "lat": 40.7561911, "lon": -74.0007876 } + ], + "tags": { + "highway": "unclassified", + "name": "West 35th Street", + "name:ru": "Западная 35-я стрит", + "name_1": "West 35 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 808473897, + "bounds": { + "minlat": 40.7558116, + "minlon": -73.9999743, + "maxlat": 40.7564056, + "maxlon": -73.9994672 + }, + "nodes": [ + 3270031028, + 8261044796, + 11153451620, + 6634486387, + 3270031030 + ], + "geometry": [ + { "lat": 40.7558116, "lon": -73.9999743 }, + { "lat": 40.7558691, "lon": -73.9999232 }, + { "lat": 40.7563049, "lon": -73.9995521 }, + { "lat": 40.7563461, "lon": -73.9995171 }, + { "lat": 40.7564056, "lon": -73.9994672 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Hudson Boulevard East", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q16980469", + "wikipedia": "en:Hudson Park and Boulevard" + } +}, +{ + "type": "way", + "id": 808562604, + "bounds": { + "minlat": 40.8166191, + "minlon": -73.9278638, + "maxlat": 40.8167641, + "maxlon": -73.9273051 + }, + "nodes": [ + 7560793123, + 7560793124 + ], + "geometry": [ + { "lat": 40.8167641, "lon": -73.9278638 }, + { "lat": 40.8166191, "lon": -73.9273051 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808562605, + "bounds": { + "minlat": 40.8164424, + "minlon": -73.9273796, + "maxlat": 40.8168270, + "maxlon": -73.9272174 + }, + "nodes": [ + 7560793125, + 7560793124, + 7560793126 + ], + "geometry": [ + { "lat": 40.8168270, "lon": -73.9272174 }, + { "lat": 40.8166191, "lon": -73.9273051 }, + { "lat": 40.8164424, "lon": -73.9273796 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808562606, + "bounds": { + "minlat": 40.8167844, + "minlon": -73.9272174, + "maxlat": 40.8168270, + "maxlon": -73.9270566 + }, + "nodes": [ + 7560793125, + 7560793127 + ], + "geometry": [ + { "lat": 40.8168270, "lon": -73.9272174 }, + { "lat": 40.8167844, "lon": -73.9270566 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808572848, + "bounds": { + "minlat": 40.8264476, + "minlon": -73.9118061, + "maxlat": 40.8277596, + "maxlon": -73.9116734 + }, + "nodes": [ + 2827547780, + 5482222773, + 12038478787, + 7560827238 + ], + "geometry": [ + { "lat": 40.8264476, "lon": -73.9118061 }, + { "lat": 40.8272880, "lon": -73.9117428 }, + { "lat": 40.8276387, "lon": -73.9117036 }, + { "lat": 40.8277596, "lon": -73.9116734 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Brook Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 808572849, + "bounds": { + "minlat": 40.8278766, + "minlon": -73.9120185, + "maxlat": 40.8284680, + "maxlon": -73.9118198 + }, + "nodes": [ + 8187805321, + 8187805319, + 42776419 + ], + "geometry": [ + { "lat": 40.8284680, "lon": -73.9118198 }, + { "lat": 40.8279381, "lon": -73.9119755 }, + { "lat": 40.8278766, "lon": -73.9120185 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Webster Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left|none", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 808576737, + "bounds": { + "minlat": 40.8268636, + "minlon": -73.9072840, + "maxlat": 40.8270005, + "maxlon": -73.9070734 + }, + "nodes": [ + 7560880424, + 7560880425 + ], + "geometry": [ + { "lat": 40.8270005, "lon": -73.9072840 }, + { "lat": 40.8268636, "lon": -73.9070734 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808576738, + "bounds": { + "minlat": 40.8315560, + "minlon": -73.9233875, + "maxlat": 40.8318742, + "maxlon": -73.9232042 + }, + "nodes": [ + 7560880426, + 7560880431, + 7560880427 + ], + "geometry": [ + { "lat": 40.8318742, "lon": -73.9232042 }, + { "lat": 40.8316235, "lon": -73.9233486 }, + { "lat": 40.8315560, "lon": -73.9233875 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808576739, + "bounds": { + "minlat": 40.8307262, + "minlon": -73.9239496, + "maxlat": 40.8315782, + "maxlon": -73.9234510 + }, + "nodes": [ + 7560880428, + 2611678509 + ], + "geometry": [ + { "lat": 40.8315782, "lon": -73.9234510 }, + { "lat": 40.8307262, "lon": -73.9239496 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808576740, + "bounds": { + "minlat": 40.8306639, + "minlon": -73.9237691, + "maxlat": 40.8315193, + "maxlon": -73.9232820 + }, + "nodes": [ + 7560880429, + 7560880430 + ], + "geometry": [ + { "lat": 40.8315193, "lon": -73.9232820 }, + { "lat": 40.8306639, "lon": -73.9237691 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808576741, + "bounds": { + "minlat": 40.8314320, + "minlon": -73.9233486, + "maxlat": 40.8316235, + "maxlon": -73.9227885 + }, + "nodes": [ + 7560880431, + 7560880436, + 7560880432 + ], + "geometry": [ + { "lat": 40.8316235, "lon": -73.9233486 }, + { "lat": 40.8314855, "lon": -73.9229448 }, + { "lat": 40.8314320, "lon": -73.9227885 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808576742, + "bounds": { + "minlat": 40.8315518, + "minlon": -73.9230621, + "maxlat": 40.8316674, + "maxlon": -73.9227161 + }, + "nodes": [ + 7560880433, + 7560880435, + 7560880434 + ], + "geometry": [ + { "lat": 40.8316674, "lon": -73.9230621 }, + { "lat": 40.8316052, "lon": -73.9228760 }, + { "lat": 40.8315518, "lon": -73.9227161 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808576743, + "bounds": { + "minlat": 40.8314855, + "minlon": -73.9229448, + "maxlat": 40.8316052, + "maxlon": -73.9228760 + }, + "nodes": [ + 7560880435, + 7560880436 + ], + "geometry": [ + { "lat": 40.8316052, "lon": -73.9228760 }, + { "lat": 40.8314855, "lon": -73.9229448 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808576744, + "bounds": { + "minlat": 40.8315193, + "minlon": -73.9234510, + "maxlat": 40.8315782, + "maxlon": -73.9232820 + }, + "nodes": [ + 7560880429, + 7560880427, + 7560880428 + ], + "geometry": [ + { "lat": 40.8315193, "lon": -73.9232820 }, + { "lat": 40.8315560, "lon": -73.9233875 }, + { "lat": 40.8315782, "lon": -73.9234510 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808576745, + "bounds": { + "minlat": 40.8306507, + "minlon": -73.9235824, + "maxlat": 40.8307664, + "maxlon": -73.9232471 + }, + "nodes": [ + 7560880437, + 7560880439, + 7560880438 + ], + "geometry": [ + { "lat": 40.8307664, "lon": -73.9235824 }, + { "lat": 40.8307170, "lon": -73.9234394 }, + { "lat": 40.8306507, "lon": -73.9232471 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808576746, + "bounds": { + "minlat": 40.8305776, + "minlon": -73.9235191, + "maxlat": 40.8307170, + "maxlon": -73.9234394 + }, + "nodes": [ + 7560880439, + 7560880440 + ], + "geometry": [ + { "lat": 40.8307170, "lon": -73.9234394 }, + { "lat": 40.8305776, "lon": -73.9235191 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808580326, + "bounds": { + "minlat": 40.8303273, + "minlon": -73.9287522, + "maxlat": 40.8304073, + "maxlon": -73.9284992 + }, + "nodes": [ + 7560954605, + 13038489950, + 7566282528 + ], + "geometry": [ + { "lat": 40.8304073, "lon": -73.9287522 }, + { "lat": 40.8303510, "lon": -73.9285742 }, + { "lat": 40.8303273, "lon": -73.9284992 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808580327, + "bounds": { + "minlat": 40.8336236, + "minlon": -73.9222547, + "maxlat": 40.8340057, + "maxlon": -73.9220422 + }, + "nodes": [ + 7560954609, + 7560954610 + ], + "geometry": [ + { "lat": 40.8340057, "lon": -73.9220422 }, + { "lat": 40.8336236, "lon": -73.9222547 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808580328, + "bounds": { + "minlat": 40.8312971, + "minlon": -73.9290432, + "maxlat": 40.8382020, + "maxlon": -73.9237070 + }, + "nodes": [ + 42757285, + 42757290, + 42757294, + 13809338813, + 42746315, + 42757300, + 42736640, + 7071361935, + 8265637375, + 8454214958, + 42757307 + ], + "geometry": [ + { "lat": 40.8312971, "lon": -73.9290432 }, + { "lat": 40.8319004, "lon": -73.9285672 }, + { "lat": 40.8325027, "lon": -73.9281027 }, + { "lat": 40.8325544, "lon": -73.9280628 }, + { "lat": 40.8339183, "lon": -73.9270109 }, + { "lat": 40.8350522, "lon": -73.9261364 }, + { "lat": 40.8363068, "lon": -73.9251688 }, + { "lat": 40.8371457, "lon": -73.9245217 }, + { "lat": 40.8376720, "lon": -73.9241157 }, + { "lat": 40.8380873, "lon": -73.9237955 }, + { "lat": 40.8382020, "lon": -73.9237070 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Woodycrest Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Woodycrest", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 808580329, + "bounds": { + "minlat": 40.8302231, + "minlon": -73.9285033, + "maxlat": 40.8309970, + "maxlon": -73.9281080 + }, + "nodes": [ + 42771460, + 9910738437, + 7566282528, + 9910738438, + 9910738436, + 9910738435, + 2912071090 + ], + "geometry": [ + { "lat": 40.8309970, "lon": -73.9281080 }, + { "lat": 40.8303630, "lon": -73.9284833 }, + { "lat": 40.8303273, "lon": -73.9284992 }, + { "lat": 40.8303050, "lon": -73.9285032 }, + { "lat": 40.8302884, "lon": -73.9285033 }, + { "lat": 40.8302577, "lon": -73.9284939 }, + { "lat": 40.8302231, "lon": -73.9284799 } + ], + "tags": { + "highway": "residential", + "name": "Anderson Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 808611020, + "bounds": { + "minlat": 40.7090747, + "minlon": -74.0010181, + "maxlat": 40.7093054, + "maxlon": -74.0007289 + }, + "nodes": [ + 7561173749, + 4158752889 + ], + "geometry": [ + { "lat": 40.7093054, "lon": -74.0010181 }, + { "lat": 40.7090747, "lon": -74.0007289 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bus": "no", + "embankment": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 808611021, + "bounds": { + "minlat": 40.7091794, + "minlon": -74.0008738, + "maxlat": 40.7094096, + "maxlon": -74.0005853 + }, + "nodes": [ + 4158752891, + 7561173748 + ], + "geometry": [ + { "lat": 40.7091794, "lon": -74.0005853 }, + { "lat": 40.7094096, "lon": -74.0008738 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bus": "no", + "embankment": "yes", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 808611027, + "bounds": { + "minlat": 40.7006709, + "minlon": -73.9904111, + "maxlat": 40.7008451, + "maxlon": -73.9901327 + }, + "nodes": [ + 42461379, + 12030168880, + 7561173754 + ], + "geometry": [ + { "lat": 40.7008451, "lon": -73.9904111 }, + { "lat": 40.7007136, "lon": -73.9902009 }, + { "lat": 40.7006709, "lon": -73.9901327 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "destination": "Adams Street", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "1", + "layer": "1", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41:A49:A63", + "tiger:county": "Kings, NY;New York, NY", + "tiger:name_base": "Brooklyn", + "tiger:name_type": "Brg", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 808611034, + "bounds": { + "minlat": 40.7004983, + "minlon": -73.9901171, + "maxlat": 40.7008726, + "maxlon": -73.9896319 + }, + "nodes": [ + 7561173758, + 10001058381, + 10001058379, + 10001058380, + 10001058378, + 12017409712, + 486819533 + ], + "geometry": [ + { "lat": 40.7004983, "lon": -73.9896319 }, + { "lat": 40.7005909, "lon": -73.9897713 }, + { "lat": 40.7006457, "lon": -73.9898491 }, + { "lat": 40.7007192, "lon": -73.9899491 }, + { "lat": 40.7007925, "lon": -73.9900445 }, + { "lat": 40.7008376, "lon": -73.9900889 }, + { "lat": 40.7008726, "lon": -73.9901171 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "1", + "layer": "1", + "maxspeed": "30 mph", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41:A49:A63", + "tiger:county": "Kings, NY;New York, NY", + "tiger:name_base": "Brooklyn", + "tiger:name_type": "Brg" + } +}, +{ + "type": "way", + "id": 808611036, + "bounds": { + "minlat": 40.6991821, + "minlon": -73.9896431, + "maxlat": 40.7003348, + "maxlon": -73.9886794 + }, + "nodes": [ + 7561173760, + 10001058406, + 248607214, + 451030964, + 10001058405, + 451030970, + 10001058404, + 451030974, + 10001058403, + 451030980, + 451030985, + 10001058402, + 10001058401, + 451031000, + 10001058400, + 451031004, + 10001058399, + 42470330 + ], + "geometry": [ + { "lat": 40.7003348, "lon": -73.9896431 }, + { "lat": 40.7000572, "lon": -73.9892005 }, + { "lat": 40.7000054, "lon": -73.9891225 }, + { "lat": 40.6999608, "lon": -73.9890587 }, + { "lat": 40.6999096, "lon": -73.9890019 }, + { "lat": 40.6998591, "lon": -73.9889493 }, + { "lat": 40.6998045, "lon": -73.9889006 }, + { "lat": 40.6997480, "lon": -73.9888546 }, + { "lat": 40.6996895, "lon": -73.9888116 }, + { "lat": 40.6996273, "lon": -73.9887752 }, + { "lat": 40.6995651, "lon": -73.9887448 }, + { "lat": 40.6995157, "lon": -73.9887251 }, + { "lat": 40.6994600, "lon": -73.9887065 }, + { "lat": 40.6993922, "lon": -73.9886915 }, + { "lat": 40.6993419, "lon": -73.9886830 }, + { "lat": 40.6992928, "lon": -73.9886798 }, + { "lat": 40.6992438, "lon": -73.9886794 }, + { "lat": 40.6991821, "lon": -73.9886813 } + ], + "tags": { + "bicycle": "use_sidepath", + "bus": "no", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "1", + "maxspeed": "30 mph", + "name": "Brooklyn Bridge Boulevard", + "name:etymology:wikidata": "Q125006", + "name:etymology:wikipedia": "en:Brooklyn Bridge", + "noref": "yes", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41:A49:A63", + "tiger:county": "Kings, NY;New York, NY", + "tiger:name_base": "Brooklyn", + "tiger:name_type": "Brg" + } +}, +{ + "type": "way", + "id": 808611037, + "bounds": { + "minlat": 40.7008451, + "minlon": -73.9906417, + "maxlat": 40.7010207, + "maxlon": -73.9904111 + }, + "nodes": [ + 7561173766, + 42461379 + ], + "geometry": [ + { "lat": 40.7010207, "lon": -73.9906417 }, + { "lat": 40.7008451, "lon": -73.9904111 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "embankment": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right|right" + } +}, +{ + "type": "way", + "id": 808611038, + "bounds": { + "minlat": 40.7011883, + "minlon": -73.9913686, + "maxlat": 40.7016143, + "maxlon": -73.9908509 + }, + "nodes": [ + 3026465865, + 7561173769 + ], + "geometry": [ + { "lat": 40.7016143, "lon": -73.9913686 }, + { "lat": 40.7011883, "lon": -73.9908509 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "embankment": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right|right" + } +}, +{ + "type": "way", + "id": 808611041, + "bounds": { + "minlat": 40.7014484, + "minlon": -73.9910385, + "maxlat": 40.7016011, + "maxlon": -73.9908426 + }, + "nodes": [ + 7561173770, + 3026465866 + ], + "geometry": [ + { "lat": 40.7014484, "lon": -73.9908426 }, + { "lat": 40.7016011, "lon": -73.9910385 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "embankment": "yes", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 808611042, + "bounds": { + "minlat": 40.7012877, + "minlon": -73.9908426, + "maxlat": 40.7014484, + "maxlon": -73.9906344 + }, + "nodes": [ + 7561173767, + 7561173770 + ], + "geometry": [ + { "lat": 40.7012877, "lon": -73.9906344 }, + { "lat": 40.7014484, "lon": -73.9908426 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 808611043, + "bounds": { + "minlat": 40.7016143, + "minlon": -73.9915600, + "maxlat": 40.7017684, + "maxlon": -73.9913686 + }, + "nodes": [ + 7561173774, + 3026465865 + ], + "geometry": [ + { "lat": 40.7017684, "lon": -73.9915600 }, + { "lat": 40.7016143, "lon": -73.9913686 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "layer": "3", + "maxspeed": "25 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right|right" + } +}, +{ + "type": "way", + "id": 808611046, + "bounds": { + "minlat": 40.7017539, + "minlon": -73.9919670, + "maxlat": 40.7023210, + "maxlon": -73.9912304 + }, + "nodes": [ + 7561173773, + 4158751332 + ], + "geometry": [ + { "lat": 40.7017539, "lon": -73.9912304 }, + { "lat": 40.7023210, "lon": -73.9919670 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "embankment": "yes", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 808614659, + "bounds": { + "minlat": 40.7829377, + "minlon": -73.9294078, + "maxlat": 40.7833561, + "maxlon": -73.9290944 + }, + "nodes": [ + 7561204347, + 7561204349 + ], + "geometry": [ + { "lat": 40.7829377, "lon": -73.9290944 }, + { "lat": 40.7833561, "lon": -73.9294078 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 808614660, + "bounds": { + "minlat": 40.7828762, + "minlon": -73.9295555, + "maxlat": 40.7832964, + "maxlon": -73.9292340 + }, + "nodes": [ + 42456367, + 7561204348 + ], + "geometry": [ + { "lat": 40.7832964, "lon": -73.9295555 }, + { "lat": 40.7828762, "lon": -73.9292340 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Queens, NY", + "tiger:name_base": "Robert F. Kennedy", + "tiger:name_type": "Brg", + "toll": "no", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 808614661, + "bounds": { + "minlat": 40.7763943, + "minlon": -73.9292340, + "maxlat": 40.7828762, + "maxlon": -73.9242942 + }, + "nodes": [ + 7561204348, + 3786957259 + ], + "geometry": [ + { "lat": 40.7828762, "lon": -73.9292340 }, + { "lat": 40.7763943, "lon": -73.9242942 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "lit": "yes", + "maxheight": "14'0\"", + "maxspeed": "40 mph", + "maxwidth": "12'0\"", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Queens, NY", + "tiger:name_base": "Robert F. Kennedy", + "tiger:name_type": "Brg", + "toll": "no", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 808614662, + "bounds": { + "minlat": 40.7764555, + "minlon": -73.9290944, + "maxlat": 40.7829377, + "maxlon": -73.9241513 + }, + "nodes": [ + 7561204352, + 7561204347 + ], + "geometry": [ + { "lat": 40.7764555, "lon": -73.9241513 }, + { "lat": 40.7829377, "lon": -73.9290944 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "lit": "yes", + "maxheight": "14'0\"", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 808614665, + "bounds": { + "minlat": 40.7759963, + "minlon": -73.9242942, + "maxlat": 40.7763943, + "maxlon": -73.9239923 + }, + "nodes": [ + 3786957259, + 7561204356 + ], + "geometry": [ + { "lat": 40.7763943, "lon": -73.9242942 }, + { "lat": 40.7759963, "lon": -73.9239923 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "toll": "no", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 808614666, + "bounds": { + "minlat": 40.7760686, + "minlon": -73.9241513, + "maxlat": 40.7764555, + "maxlon": -73.9238531 + }, + "nodes": [ + 7561204355, + 7561204352 + ], + "geometry": [ + { "lat": 40.7760686, "lon": -73.9238531 }, + { "lat": 40.7764555, "lon": -73.9241513 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 808614669, + "bounds": { + "minlat": 40.7727334, + "minlon": -73.9238531, + "maxlat": 40.7760686, + "maxlon": -73.9203593 + }, + "nodes": [ + 11685092477, + 100662005, + 3778263940, + 100662006, + 9179198021, + 3778263927, + 100662008, + 3778263945, + 3778263934, + 9179198020, + 3778263947, + 7561204355 + ], + "geometry": [ + { "lat": 40.7727334, "lon": -73.9203593 }, + { "lat": 40.7734834, "lon": -73.9214296 }, + { "lat": 40.7736345, "lon": -73.9216374 }, + { "lat": 40.7738030, "lon": -73.9218561 }, + { "lat": 40.7739481, "lon": -73.9220365 }, + { "lat": 40.7741102, "lon": -73.9222204 }, + { "lat": 40.7742776, "lon": -73.9223999 }, + { "lat": 40.7744481, "lon": -73.9225737 }, + { "lat": 40.7746267, "lon": -73.9227380 }, + { "lat": 40.7748138, "lon": -73.9228954 }, + { "lat": 40.7749890, "lon": -73.9230361 }, + { "lat": 40.7760686, "lon": -73.9238531 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 808614670, + "bounds": { + "minlat": 40.7755364, + "minlon": -73.9239923, + "maxlat": 40.7759963, + "maxlon": -73.9236687 + }, + "nodes": [ + 7561204356, + 8771171514, + 8771171515 + ], + "geometry": [ + { "lat": 40.7759963, "lon": -73.9239923 }, + { "lat": 40.7757919, "lon": -73.9238471 }, + { "lat": 40.7755364, "lon": -73.9236687 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "toll": "no", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 808627660, + "bounds": { + "minlat": 40.8553639, + "minlon": -73.9768749, + "maxlat": 40.8556556, + "maxlon": -73.9762286 + }, + "nodes": [ + 7561327498, + 7561327499, + 7561327500 + ], + "geometry": [ + { "lat": 40.8553639, "lon": -73.9762286 }, + { "lat": 40.8555400, "lon": -73.9765399 }, + { "lat": 40.8556556, "lon": -73.9768749 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 808960386, + "bounds": { + "minlat": 40.8222679, + "minlon": -73.9139072, + "maxlat": 40.8224175, + "maxlon": -73.9134304 + }, + "nodes": [ + 7564284923, + 7564284924 + ], + "geometry": [ + { "lat": 40.8224175, "lon": -73.9139072 }, + { "lat": 40.8222679, "lon": -73.9134304 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808960387, + "bounds": { + "minlat": 40.8225372, + "minlon": -73.9142049, + "maxlat": 40.8228115, + "maxlon": -73.9140707 + }, + "nodes": [ + 7564284925, + 12040128177, + 7564284926 + ], + "geometry": [ + { "lat": 40.8228115, "lon": -73.9140707 }, + { "lat": 40.8227570, "lon": -73.9140973 }, + { "lat": 40.8225372, "lon": -73.9142049 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808960388, + "bounds": { + "minlat": 40.8224601, + "minlon": -73.9142049, + "maxlat": 40.8225372, + "maxlon": -73.9139555 + }, + "nodes": [ + 7564284926, + 7564284927 + ], + "geometry": [ + { "lat": 40.8225372, "lon": -73.9142049 }, + { "lat": 40.8224601, "lon": -73.9139555 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808960389, + "bounds": { + "minlat": 40.8224175, + "minlon": -73.9139555, + "maxlat": 40.8224601, + "maxlon": -73.9139072 + }, + "nodes": [ + 7564284927, + 7564284923 + ], + "geometry": [ + { "lat": 40.8224601, "lon": -73.9139555 }, + { "lat": 40.8224175, "lon": -73.9139072 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808960390, + "bounds": { + "minlat": 40.8180770, + "minlon": -73.9149739, + "maxlat": 40.8182034, + "maxlon": -73.9149530 + }, + "nodes": [ + 2912071212, + 42768534 + ], + "geometry": [ + { "lat": 40.8182034, "lon": -73.9149739 }, + { "lat": 40.8180770, "lon": -73.9149530 } + ], + "tags": { + "highway": "residential", + "name": "Elton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Elton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 808960391, + "bounds": { + "minlat": 40.8182034, + "minlon": -73.9149739, + "maxlat": 40.8204065, + "maxlon": -73.9139589 + }, + "nodes": [ + 42760883, + 13249068294, + 42776241, + 13249068296, + 13249095724, + 42780968, + 13249095722, + 8454351327, + 13249081125, + 42749757, + 12040128437, + 2912071212 + ], + "geometry": [ + { "lat": 40.8204065, "lon": -73.9139589 }, + { "lat": 40.8198142, "lon": -73.9142287 }, + { "lat": 40.8197459, "lon": -73.9142598 }, + { "lat": 40.8196940, "lon": -73.9142836 }, + { "lat": 40.8191535, "lon": -73.9145310 }, + { "lat": 40.8190963, "lon": -73.9145572 }, + { "lat": 40.8190397, "lon": -73.9145831 }, + { "lat": 40.8185648, "lon": -73.9148005 }, + { "lat": 40.8185132, "lon": -73.9148242 }, + { "lat": 40.8184620, "lon": -73.9148476 }, + { "lat": 40.8183930, "lon": -73.9148813 }, + { "lat": 40.8182034, "lon": -73.9149739 } + ], + "tags": { + "highway": "residential", + "name": "Elton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Elton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 808960392, + "bounds": { + "minlat": 40.8201330, + "minlon": -73.9139589, + "maxlat": 40.8204065, + "maxlon": -73.9130630 + }, + "nodes": [ + 42760883, + 8454351331, + 42760885 + ], + "geometry": [ + { "lat": 40.8204065, "lon": -73.9139589 }, + { "lat": 40.8202077, "lon": -73.9131692 }, + { "lat": 40.8201330, "lon": -73.9130630 } + ], + "tags": { + "highway": "residential", + "name": "East 156th Street", + "name_1": "Thurman Munson Way", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "156th", + "tiger:name_base_1": "Thurman Munson", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:name_type_1": "Way" + } +}, +{ + "type": "way", + "id": 808960394, + "bounds": { + "minlat": 40.8147793, + "minlon": -73.9187408, + "maxlat": 40.8153363, + "maxlon": -73.9181739 + }, + "nodes": [ + 7564284929, + 5914730212, + 7695510435, + 9908621415, + 7695510437, + 7695510438, + 9908621416, + 42761255 + ], + "geometry": [ + { "lat": 40.8147793, "lon": -73.9187408 }, + { "lat": 40.8148384, "lon": -73.9186395 }, + { "lat": 40.8152875, "lon": -73.9183113 }, + { "lat": 40.8153082, "lon": -73.9182927 }, + { "lat": 40.8153230, "lon": -73.9182743 }, + { "lat": 40.8153334, "lon": -73.9182464 }, + { "lat": 40.8153363, "lon": -73.9182157 }, + { "lat": 40.8153301, "lon": -73.9181739 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (10:30-18:00)", + "name": "Willis Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 808960395, + "bounds": { + "minlat": 40.8147056, + "minlon": -73.9187408, + "maxlat": 40.8147793, + "maxlon": -73.9185583 + }, + "nodes": [ + 7555037308, + 6415814882, + 7564284929 + ], + "geometry": [ + { "lat": 40.8147056, "lon": -73.9185583 }, + { "lat": 40.8147248, "lon": -73.9186060 }, + { "lat": 40.8147793, "lon": -73.9187408 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 147th Street", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 808964041, + "bounds": { + "minlat": 40.8104972, + "minlon": -73.9164409, + "maxlat": 40.8105595, + "maxlon": -73.9162477 + }, + "nodes": [ + 5482371844, + 7564276422 + ], + "geometry": [ + { "lat": 40.8104972, "lon": -73.9162477 }, + { "lat": 40.8105595, "lon": -73.9164409 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808964043, + "bounds": { + "minlat": 40.8087212, + "minlon": -73.9097207, + "maxlat": 40.8094623, + "maxlon": -73.9094463 + }, + "nodes": [ + 5175586412, + 5487854682, + 5487854680, + 5859955150, + 42755225 + ], + "geometry": [ + { "lat": 40.8087212, "lon": -73.9097207 }, + { "lat": 40.8091204, "lon": -73.9095729 }, + { "lat": 40.8093112, "lon": -73.9095023 }, + { "lat": 40.8093638, "lon": -73.9094828 }, + { "lat": 40.8094623, "lon": -73.9094463 } + ], + "tags": { + "highway": "residential", + "name": "Concord Avenue", + "name:etymology:wikidata": "Q523240", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concord", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 808964044, + "bounds": { + "minlat": 40.8085083, + "minlon": -73.9094463, + "maxlat": 40.8094623, + "maxlon": -73.9049818 + }, + "nodes": [ + 42755225, + 5487854678, + 42768279, + 42766931, + 42766727, + 42761274, + 7554161857, + 8575396963, + 42753410 + ], + "geometry": [ + { "lat": 40.8094623, "lon": -73.9094463 }, + { "lat": 40.8093881, "lon": -73.9090879 }, + { "lat": 40.8092720, "lon": -73.9085278 }, + { "lat": 40.8090663, "lon": -73.9075347 }, + { "lat": 40.8088950, "lon": -73.9067076 }, + { "lat": 40.8087929, "lon": -73.9062150 }, + { "lat": 40.8087490, "lon": -73.9060028 }, + { "lat": 40.8085591, "lon": -73.9051081 }, + { "lat": 40.8085083, "lon": -73.9049818 } + ], + "tags": { + "highway": "residential", + "name": "East 144th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "144th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454" + } +}, +{ + "type": "way", + "id": 808964045, + "bounds": { + "minlat": 40.8094623, + "minlon": -73.9094463, + "maxlat": 40.8130536, + "maxlon": -73.9081620 + }, + "nodes": [ + 42755225, + 5859955149, + 8575187635, + 42755231, + 8575187641, + 42755235, + 9917835166, + 42755244 + ], + "geometry": [ + { "lat": 40.8094623, "lon": -73.9094463 }, + { "lat": 40.8095924, "lon": -73.9093997 }, + { "lat": 40.8102449, "lon": -73.9091658 }, + { "lat": 40.8103364, "lon": -73.9091330 }, + { "lat": 40.8104269, "lon": -73.9091005 }, + { "lat": 40.8115951, "lon": -73.9086817 }, + { "lat": 40.8129389, "lon": -73.9082029 }, + { "lat": 40.8130536, "lon": -73.9081620 } + ], + "tags": { + "highway": "residential", + "name": "Concord Avenue", + "name:etymology:wikidata": "Q523240", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concord", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 808964354, + "bounds": { + "minlat": 40.8154573, + "minlon": -73.9108390, + "maxlat": 40.8155296, + "maxlon": -73.9104626 + }, + "nodes": [ + 5482340565, + 13238490934 + ], + "geometry": [ + { "lat": 40.8155296, "lon": -73.9108390 }, + { "lat": 40.8154573, "lon": -73.9104626 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808964355, + "bounds": { + "minlat": 40.8161291, + "minlon": -73.9109102, + "maxlat": 40.8161885, + "maxlon": -73.9101954 + }, + "nodes": [ + 5482340577, + 7564274225 + ], + "geometry": [ + { "lat": 40.8161885, "lon": -73.9109102 }, + { "lat": 40.8161291, "lon": -73.9101954 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808964356, + "bounds": { + "minlat": 40.8163041, + "minlon": -73.9086731, + "maxlat": 40.8167638, + "maxlon": -73.9078564 + }, + "nodes": [ + 5482340568, + 5482340567 + ], + "geometry": [ + { "lat": 40.8163041, "lon": -73.9086731 }, + { "lat": 40.8167638, "lon": -73.9078564 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808964790, + "bounds": { + "minlat": 40.8182999, + "minlon": -73.9077276, + "maxlat": 40.8184957, + "maxlon": -73.9076466 + }, + "nodes": [ + 7564286439, + 7564286440 + ], + "geometry": [ + { "lat": 40.8184957, "lon": -73.9076466 }, + { "lat": 40.8182999, "lon": -73.9077276 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808964791, + "bounds": { + "minlat": 40.8182999, + "minlon": -73.9082265, + "maxlat": 40.8184196, + "maxlon": -73.9077276 + }, + "nodes": [ + 7564286441, + 7564286440 + ], + "geometry": [ + { "lat": 40.8184196, "lon": -73.9082265 }, + { "lat": 40.8182999, "lon": -73.9077276 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808964901, + "bounds": { + "minlat": 40.8170697, + "minlon": -73.9069577, + "maxlat": 40.8175127, + "maxlon": -73.9068360 + }, + "nodes": [ + 7564310283, + 7564310284, + 7564324485 + ], + "geometry": [ + { "lat": 40.8175127, "lon": -73.9068370 }, + { "lat": 40.8172001, "lon": -73.9069577 }, + { "lat": 40.8170697, "lon": -73.9068360 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808971543, + "bounds": { + "minlat": 40.8249858, + "minlon": -73.9984845, + "maxlat": 40.8265781, + "maxlon": -73.9970929 + }, + "nodes": [ + 103147955, + 6964814871, + 3659315911, + 3659315913, + 103209155, + 103209156, + 103209157, + 103209158, + 13515941203, + 103196360 + ], + "geometry": [ + { "lat": 40.8249858, "lon": -73.9970929 }, + { "lat": 40.8250905, "lon": -73.9972471 }, + { "lat": 40.8253341, "lon": -73.9976838 }, + { "lat": 40.8254619, "lon": -73.9979048 }, + { "lat": 40.8255026, "lon": -73.9979735 }, + { "lat": 40.8255326, "lon": -73.9980115 }, + { "lat": 40.8255895, "lon": -73.9980584 }, + { "lat": 40.8256534, "lon": -73.9980944 }, + { "lat": 40.8261499, "lon": -73.9983039 }, + { "lat": 40.8265781, "lon": -73.9984845 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "name": "Edgewater Avenue", + "ref": "CR 50", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd;Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022;07657", + "tiger:zip_right": "07010;07657" + } +}, +{ + "type": "way", + "id": 808971623, + "bounds": { + "minlat": 40.8144511, + "minlon": -73.9069392, + "maxlat": 40.8146120, + "maxlon": -73.9066772 + }, + "nodes": [ + 13809174747, + 7564343610, + 7564343611 + ], + "geometry": [ + { "lat": 40.8146120, "lon": -73.9069001 }, + { "lat": 40.8145070, "lon": -73.9069392 }, + { "lat": 40.8144511, "lon": -73.9066772 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808971643, + "bounds": { + "minlat": 40.8016830, + "minlon": -73.9083699, + "maxlat": 40.8022358, + "maxlon": -73.9079129 + }, + "nodes": [ + 7043090364, + 7564343638, + 7043090358 + ], + "geometry": [ + { "lat": 40.8016830, "lon": -73.9083259 }, + { "lat": 40.8017817, "lon": -73.9083699 }, + { "lat": 40.8022358, "lon": -73.9079129 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808979752, + "bounds": { + "minlat": 40.8130992, + "minlon": -73.9294736, + "maxlat": 40.8132819, + "maxlon": -73.9292436 + }, + "nodes": [ + 5482250733, + 5482250732 + ], + "geometry": [ + { "lat": 40.8130992, "lon": -73.9294736 }, + { "lat": 40.8132819, "lon": -73.9292436 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808979753, + "bounds": { + "minlat": 40.8259416, + "minlon": -73.9206491, + "maxlat": 40.8260049, + "maxlon": -73.9204520 + }, + "nodes": [ + 5539543957, + 7564382195 + ], + "geometry": [ + { "lat": 40.8259416, "lon": -73.9204520 }, + { "lat": 40.8260049, "lon": -73.9206491 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 808979754, + "bounds": { + "minlat": 40.8253453, + "minlon": -73.9210058, + "maxlat": 40.8260049, + "maxlon": -73.9206491 + }, + "nodes": [ + 7564382195, + 5539543964 + ], + "geometry": [ + { "lat": 40.8260049, "lon": -73.9206491 }, + { "lat": 40.8253453, "lon": -73.9210058 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808979755, + "bounds": { + "minlat": 40.8250301, + "minlon": -73.9204993, + "maxlat": 40.8258623, + "maxlon": -73.9200608 + }, + "nodes": [ + 7564382198, + 7564382206, + 7564382199 + ], + "geometry": [ + { "lat": 40.8258623, "lon": -73.9200608 }, + { "lat": 40.8255417, "lon": -73.9202297 }, + { "lat": 40.8250301, "lon": -73.9204993 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808979756, + "bounds": { + "minlat": 40.8249597, + "minlon": -73.9209741, + "maxlat": 40.8251793, + "maxlon": -73.9202867 + }, + "nodes": [ + 7564382200, + 5539543958, + 7564382203, + 7564382199, + 5539543967 + ], + "geometry": [ + { "lat": 40.8251793, "lon": -73.9209741 }, + { "lat": 40.8251496, "lon": -73.9208795 }, + { "lat": 40.8250880, "lon": -73.9206812 }, + { "lat": 40.8250301, "lon": -73.9204993 }, + { "lat": 40.8249597, "lon": -73.9202867 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808979757, + "bounds": { + "minlat": 40.8257917, + "minlon": -73.9200608, + "maxlat": 40.8258623, + "maxlon": -73.9198347 + }, + "nodes": [ + 7564382198, + 5539543975 + ], + "geometry": [ + { "lat": 40.8258623, "lon": -73.9200608 }, + { "lat": 40.8257917, "lon": -73.9198347 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808979758, + "bounds": { + "minlat": 40.8251793, + "minlon": -73.9210058, + "maxlat": 40.8253453, + "maxlon": -73.9209741 + }, + "nodes": [ + 5539543964, + 7564382200 + ], + "geometry": [ + { "lat": 40.8253453, "lon": -73.9210058 }, + { "lat": 40.8251793, "lon": -73.9209741 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808979759, + "bounds": { + "minlat": 40.8254686, + "minlon": -73.9204269, + "maxlat": 40.8256646, + "maxlon": -73.9203869 + }, + "nodes": [ + 5539543954, + 11078222097, + 7564382202, + 5539543979 + ], + "geometry": [ + { "lat": 40.8256646, "lon": -73.9204269 }, + { "lat": 40.8256325, "lon": -73.9204204 }, + { "lat": 40.8256003, "lon": -73.9204138 }, + { "lat": 40.8254686, "lon": -73.9203869 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808979760, + "bounds": { + "minlat": 40.8251885, + "minlon": -73.9205384, + "maxlat": 40.8254686, + "maxlon": -73.9203869 + }, + "nodes": [ + 5539543979, + 7564382201 + ], + "geometry": [ + { "lat": 40.8254686, "lon": -73.9203869 }, + { "lat": 40.8251885, "lon": -73.9205384 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808979761, + "bounds": { + "minlat": 40.8250880, + "minlon": -73.9206812, + "maxlat": 40.8256003, + "maxlon": -73.9204138 + }, + "nodes": [ + 7564382202, + 7564382203 + ], + "geometry": [ + { "lat": 40.8256003, "lon": -73.9204138 }, + { "lat": 40.8250880, "lon": -73.9206812 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808979762, + "bounds": { + "minlat": 40.8254672, + "minlon": -73.9203304, + "maxlat": 40.8255755, + "maxlon": -73.9200074 + }, + "nodes": [ + 7564382204, + 7564382206, + 7564382205 + ], + "geometry": [ + { "lat": 40.8255755, "lon": -73.9203304 }, + { "lat": 40.8255417, "lon": -73.9202297 }, + { "lat": 40.8254672, "lon": -73.9200074 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808980023, + "bounds": { + "minlat": 40.8271489, + "minlon": -73.9195836, + "maxlat": 40.8273681, + "maxlon": -73.9188877 + }, + "nodes": [ + 7564389619, + 12038479042, + 7564389620 + ], + "geometry": [ + { "lat": 40.8273681, "lon": -73.9195836 }, + { "lat": 40.8273454, "lon": -73.9195116 }, + { "lat": 40.8271489, "lon": -73.9188877 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 808980024, + "bounds": { + "minlat": 40.8269776, + "minlon": -73.9193008, + "maxlat": 40.8271428, + "maxlon": -73.9187776 + }, + "nodes": [ + 7564389621, + 13033445108, + 7564389622 + ], + "geometry": [ + { "lat": 40.8269776, "lon": -73.9187776 }, + { "lat": 40.8270057, "lon": -73.9188665 }, + { "lat": 40.8271428, "lon": -73.9193008 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809013917, + "bounds": { + "minlat": 40.7729216, + "minlon": -73.9857560, + "maxlat": 40.7735306, + "maxlon": -73.9853181 + }, + "nodes": [ + 7050687076, + 432736824, + 42442410 + ], + "geometry": [ + { "lat": 40.7729216, "lon": -73.9857560 }, + { "lat": 40.7734853, "lon": -73.9853551 }, + { "lat": 40.7735306, "lon": -73.9853181 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "parking:left": "no", + "parking:left:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 809013918, + "bounds": { + "minlat": 40.7735306, + "minlon": -73.9853181, + "maxlat": 40.7741641, + "maxlon": -73.9848524 + }, + "nodes": [ + 42442410, + 7050687070, + 7050687055, + 42442415 + ], + "geometry": [ + { "lat": 40.7735306, "lon": -73.9853181 }, + { "lat": 40.7736045, "lon": -73.9852623 }, + { "lat": 40.7740817, "lon": -73.9849140 }, + { "lat": 40.7741641, "lon": -73.9848524 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 809013919, + "bounds": { + "minlat": 40.7713667, + "minlon": -73.9866770, + "maxlat": 40.7716605, + "maxlon": -73.9859786 + }, + "nodes": [ + 6791166002, + 6458959584, + 5118033532, + 42421982 + ], + "geometry": [ + { "lat": 40.7713667, "lon": -73.9859786 }, + { "lat": 40.7714807, "lon": -73.9862522 }, + { "lat": 40.7716133, "lon": -73.9865657 }, + { "lat": 40.7716605, "lon": -73.9866770 } + ], + "tags": { + "alt_name": "Power Memorial Way", + "covered": "no", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 61st Street", + "name:ru": "Западная 61-я стрит", + "name_1": "West 61 Street", + "oneway": "no", + "parking:lane:left": "parallel", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 809161223, + "bounds": { + "minlat": 40.7466553, + "minlon": -73.9515131, + "maxlat": 40.7469740, + "maxlon": -73.9514087 + }, + "nodes": [ + 2472142353, + 11211159707, + 7566111244 + ], + "geometry": [ + { "lat": 40.7466553, "lon": -73.9515131 }, + { "lat": 40.7467140, "lon": -73.9514939 }, + { "lat": 40.7469740, "lon": -73.9514087 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809349500, + "bounds": { + "minlat": 40.8256090, + "minlon": -73.9883477, + "maxlat": 40.8258210, + "maxlon": -73.9881372 + }, + "nodes": [ + 7567593085, + 7567593087, + 7567593089, + 7567593086 + ], + "geometry": [ + { "lat": 40.8258210, "lon": -73.9881372 }, + { "lat": 40.8257077, "lon": -73.9882496 }, + { "lat": 40.8256168, "lon": -73.9883399 }, + { "lat": 40.8256090, "lon": -73.9883477 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 809349501, + "bounds": { + "minlat": 40.8257077, + "minlon": -73.9884333, + "maxlat": 40.8258091, + "maxlon": -73.9882496 + }, + "nodes": [ + 7567593087, + 7567593088 + ], + "geometry": [ + { "lat": 40.8257077, "lon": -73.9882496 }, + { "lat": 40.8258091, "lon": -73.9884333 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809349502, + "bounds": { + "minlat": 40.8256168, + "minlon": -73.9885244, + "maxlat": 40.8257213, + "maxlon": -73.9883399 + }, + "nodes": [ + 7567593089, + 7567593090 + ], + "geometry": [ + { "lat": 40.8256168, "lon": -73.9883399 }, + { "lat": 40.8257213, "lon": -73.9885244 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809476259, + "bounds": { + "minlat": 40.7895385, + "minlon": -74.0151018, + "maxlat": 40.7897004, + "maxlon": -74.0147966 + }, + "nodes": [ + 7568803783, + 7675458892, + 7568803784 + ], + "geometry": [ + { "lat": 40.7895385, "lon": -74.0147966 }, + { "lat": 40.7895669, "lon": -74.0148502 }, + { "lat": 40.7897004, "lon": -74.0151018 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 809476260, + "bounds": { + "minlat": 40.7897004, + "minlon": -74.0151018, + "maxlat": 40.7900152, + "maxlon": -74.0148586 + }, + "nodes": [ + 7568803784, + 7675458893, + 7568813585 + ], + "geometry": [ + { "lat": 40.7897004, "lon": -74.0151018 }, + { "lat": 40.7899675, "lon": -74.0148955 }, + { "lat": 40.7900152, "lon": -74.0148586 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 809725375, + "bounds": { + "minlat": 40.8246610, + "minlon": -73.9881550, + "maxlat": 40.8249475, + "maxlon": -73.9875095 + }, + "nodes": [ + 7570838117, + 13525873329, + 7570838118, + 7570838119 + ], + "geometry": [ + { "lat": 40.8249475, "lon": -73.9881550 }, + { "lat": 40.8249061, "lon": -73.9880720 }, + { "lat": 40.8246705, "lon": -73.9875998 }, + { "lat": 40.8246610, "lon": -73.9875095 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 809725376, + "bounds": { + "minlat": 40.8245115, + "minlon": -73.9878409, + "maxlat": 40.8246194, + "maxlon": -73.9875266 + }, + "nodes": [ + 7570838120, + 7570838121, + 7570838122 + ], + "geometry": [ + { "lat": 40.8246194, "lon": -73.9878409 }, + { "lat": 40.8245183, "lon": -73.9876213 }, + { "lat": 40.8245115, "lon": -73.9875266 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809796894, + "bounds": { + "minlat": 40.7973937, + "minlon": -73.9663290, + "maxlat": 40.7976946, + "maxlon": -73.9659704 + }, + "nodes": [ + 7571274525, + 9654489350, + 11990880715, + 11990880713, + 11990880716, + 7571274524, + 7571274526 + ], + "geometry": [ + { "lat": 40.7973937, "lon": -73.9663290 }, + { "lat": 40.7974983, "lon": -73.9663235 }, + { "lat": 40.7975369, "lon": -73.9663166 }, + { "lat": 40.7975545, "lon": -73.9663112 }, + { "lat": 40.7975780, "lon": -73.9662971 }, + { "lat": 40.7976946, "lon": -73.9662119 }, + { "lat": 40.7975971, "lon": -73.9659704 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809796897, + "bounds": { + "minlat": 40.7980096, + "minlon": -73.9650230, + "maxlat": 40.7982004, + "maxlon": -73.9645602 + }, + "nodes": [ + 7571274531, + 7571274532 + ], + "geometry": [ + { "lat": 40.7982004, "lon": -73.9650230 }, + { "lat": 40.7980096, "lon": -73.9645602 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809796898, + "bounds": { + "minlat": 40.7978771, + "minlon": -73.9651161, + "maxlat": 40.7980761, + "maxlon": -73.9646321 + }, + "nodes": [ + 7571274533, + 7146086676 + ], + "geometry": [ + { "lat": 40.7980761, "lon": -73.9651161 }, + { "lat": 40.7978771, "lon": -73.9646321 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809796899, + "bounds": { + "minlat": 40.7982776, + "minlon": -73.9671272, + "maxlat": 40.7985077, + "maxlon": -73.9664605 + }, + "nodes": [ + 42442559, + 9654214268, + 7571274537, + 7571274535 + ], + "geometry": [ + { "lat": 40.7985077, "lon": -73.9671272 }, + { "lat": 40.7984920, "lon": -73.9669836 }, + { "lat": 40.7982960, "lon": -73.9665053 }, + { "lat": 40.7982776, "lon": -73.9664605 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809796900, + "bounds": { + "minlat": 40.7982960, + "minlon": -73.9665053, + "maxlat": 40.7984411, + "maxlon": -73.9664082 + }, + "nodes": [ + 7571274536, + 12468185081, + 7571274537 + ], + "geometry": [ + { "lat": 40.7984411, "lon": -73.9664082 }, + { "lat": 40.7983254, "lon": -73.9664856 }, + { "lat": 40.7982960, "lon": -73.9665053 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809796906, + "bounds": { + "minlat": 40.7957201, + "minlon": -73.9641876, + "maxlat": 40.7965810, + "maxlon": -73.9635733 + }, + "nodes": [ + 7571274553, + 7571274555, + 7571274556, + 7571274554 + ], + "geometry": [ + { "lat": 40.7965810, "lon": -73.9635733 }, + { "lat": 40.7962248, "lon": -73.9638267 }, + { "lat": 40.7961688, "lon": -73.9638665 }, + { "lat": 40.7957201, "lon": -73.9641876 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 809796907, + "bounds": { + "minlat": 40.7959894, + "minlon": -73.9638665, + "maxlat": 40.7961688, + "maxlon": -73.9634199 + }, + "nodes": [ + 7571274556, + 7115910328, + 10172891601, + 7115910322 + ], + "geometry": [ + { "lat": 40.7961688, "lon": -73.9638665 }, + { "lat": 40.7960976, "lon": -73.9636893 }, + { "lat": 40.7960337, "lon": -73.9635302 }, + { "lat": 40.7959894, "lon": -73.9634199 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 809796908, + "bounds": { + "minlat": 40.7956425, + "minlon": -73.9641876, + "maxlat": 40.7957201, + "maxlon": -73.9640015 + }, + "nodes": [ + 7571274554, + 7115910327 + ], + "geometry": [ + { "lat": 40.7957201, "lon": -73.9641876 }, + { "lat": 40.7956425, "lon": -73.9640015 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 809818578, + "bounds": { + "minlat": 40.7953661, + "minlon": -73.9674272, + "maxlat": 40.7955448, + "maxlon": -73.9670024 + }, + "nodes": [ + 7571410124, + 8395708460, + 6859714455 + ], + "geometry": [ + { "lat": 40.7955448, "lon": -73.9674272 }, + { "lat": 40.7954540, "lon": -73.9672120 }, + { "lat": 40.7953661, "lon": -73.9670024 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809818579, + "bounds": { + "minlat": 40.7945296, + "minlon": -73.9680933, + "maxlat": 40.7947199, + "maxlon": -73.9676254 + }, + "nodes": [ + 7571410125, + 8344003068, + 6859714449, + 6859714450 + ], + "geometry": [ + { "lat": 40.7947199, "lon": -73.9680933 }, + { "lat": 40.7946191, "lon": -73.9678455 }, + { "lat": 40.7945916, "lon": -73.9677779 }, + { "lat": 40.7945296, "lon": -73.9676254 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809818580, + "bounds": { + "minlat": 40.7946547, + "minlon": -73.9680339, + "maxlat": 40.7948638, + "maxlon": -73.9675350 + }, + "nodes": [ + 3262539807, + 1852323307 + ], + "geometry": [ + { "lat": 40.7948638, "lon": -73.9680339 }, + { "lat": 40.7946547, "lon": -73.9675350 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809818581, + "bounds": { + "minlat": 40.7948638, + "minlon": -73.9680339, + "maxlat": 40.7954926, + "maxlon": -73.9675836 + }, + "nodes": [ + 3262539815, + 3262539807 + ], + "geometry": [ + { "lat": 40.7954926, "lon": -73.9675836 }, + { "lat": 40.7948638, "lon": -73.9680339 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809818583, + "bounds": { + "minlat": 40.7967238, + "minlon": -73.9667525, + "maxlat": 40.7973877, + "maxlon": -73.9662807 + }, + "nodes": [ + 7571410130, + 7571410116, + 7571410131 + ], + "geometry": [ + { "lat": 40.7973877, "lon": -73.9662807 }, + { "lat": 40.7972894, "lon": -73.9663508 }, + { "lat": 40.7967238, "lon": -73.9667525 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809826502, + "bounds": { + "minlat": 40.7963492, + "minlon": -73.9676091, + "maxlat": 40.7968156, + "maxlon": -73.9672977 + }, + "nodes": [ + 7571420012, + 11296201255, + 7571420013 + ], + "geometry": [ + { "lat": 40.7963492, "lon": -73.9676091 }, + { "lat": 40.7964347, "lon": -73.9675647 }, + { "lat": 40.7968156, "lon": -73.9672977 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 809826503, + "bounds": { + "minlat": 40.7966319, + "minlon": -73.9672977, + "maxlat": 40.7968156, + "maxlon": -73.9668414 + }, + "nodes": [ + 7571420013, + 7571420014 + ], + "geometry": [ + { "lat": 40.7968156, "lon": -73.9672977 }, + { "lat": 40.7966319, "lon": -73.9668414 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809826505, + "bounds": { + "minlat": 40.7954860, + "minlon": -73.9683277, + "maxlat": 40.7966303, + "maxlon": -73.9656255 + }, + "nodes": [ + 11296201227, + 7571420012, + 4604258204, + 7571410127, + 3262539813, + 7120586340, + 7120586339, + 11263350555, + 42443403 + ], + "geometry": [ + { "lat": 40.7966303, "lon": -73.9683277 }, + { "lat": 40.7963492, "lon": -73.9676091 }, + { "lat": 40.7960809, "lon": -73.9670200 }, + { "lat": 40.7960332, "lon": -73.9669376 }, + { "lat": 40.7958950, "lon": -73.9666064 }, + { "lat": 40.7958765, "lon": -73.9665620 }, + { "lat": 40.7957210, "lon": -73.9661890 }, + { "lat": 40.7955337, "lon": -73.9657399 }, + { "lat": 40.7954860, "lon": -73.9656255 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 100th Street", + "name:ru": "Западная 100-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 809826506, + "bounds": { + "minlat": 40.7947885, + "minlon": -73.9654994, + "maxlat": 40.7954194, + "maxlon": -73.9642909 + }, + "nodes": [ + 7083286370, + 11296201249, + 3602672707, + 7083341698, + 42447273 + ], + "geometry": [ + { "lat": 40.7954194, "lon": -73.9654994 }, + { "lat": 40.7954173, "lon": -73.9654932 }, + { "lat": 40.7952463, "lon": -73.9651719 }, + { "lat": 40.7948363, "lon": -73.9643963 }, + { "lat": 40.7947885, "lon": -73.9642909 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 100th Street", + "name:ru": "Западная 100-я стрит", + "name_1": "West 100 Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 809826507, + "bounds": { + "minlat": 40.7966303, + "minlon": -73.9698184, + "maxlat": 40.7971801, + "maxlon": -73.9683277 + }, + "nodes": [ + 1061531596, + 7004447597, + 6913843956, + 11296201230, + 42442552, + 11296201227 + ], + "geometry": [ + { "lat": 40.7971801, "lon": -73.9698184 }, + { "lat": 40.7971388, "lon": -73.9697212 }, + { "lat": 40.7968378, "lon": -73.9690173 }, + { "lat": 40.7966801, "lon": -73.9686225 }, + { "lat": 40.7966412, "lon": -73.9684577 }, + { "lat": 40.7966303, "lon": -73.9683277 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 100th Street", + "name:ru": "Западная 100-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 809831189, + "bounds": { + "minlat": 40.7947047, + "minlon": -73.9674380, + "maxlat": 40.7947843, + "maxlon": -73.9672457 + }, + "nodes": [ + 3262539811, + 6899463975, + 3262539812 + ], + "geometry": [ + { "lat": 40.7947047, "lon": -73.9672457 }, + { "lat": 40.7947611, "lon": -73.9673819 }, + { "lat": 40.7947843, "lon": -73.9674380 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809831190, + "bounds": { + "minlat": 40.7947047, + "minlon": -73.9672457, + "maxlat": 40.7950274, + "maxlon": -73.9670122 + }, + "nodes": [ + 3262539810, + 3262539811 + ], + "geometry": [ + { "lat": 40.7950274, "lon": -73.9670122 }, + { "lat": 40.7947047, "lon": -73.9672457 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809839894, + "bounds": { + "minlat": 40.7947323, + "minlon": -73.9655516, + "maxlat": 40.7952463, + "maxlon": -73.9651719 + }, + "nodes": [ + 3602672706, + 7083341707, + 3602672707 + ], + "geometry": [ + { "lat": 40.7947323, "lon": -73.9655516 }, + { "lat": 40.7951459, "lon": -73.9652485 }, + { "lat": 40.7952463, "lon": -73.9651719 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 809839895, + "bounds": { + "minlat": 40.7941563, + "minlon": -73.9655121, + "maxlat": 40.7944550, + "maxlon": -73.9647814 + }, + "nodes": [ + 3602667609, + 7571414446 + ], + "geometry": [ + { "lat": 40.7944550, "lon": -73.9655121 }, + { "lat": 40.7941563, "lon": -73.9647814 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809839898, + "bounds": { + "minlat": 40.7939495, + "minlon": -73.9658690, + "maxlat": 40.7945103, + "maxlon": -73.9654847 + }, + "nodes": [ + 3602667608, + 3602667606, + 3602667635, + 3602667609, + 12919500802, + 7571414441 + ], + "geometry": [ + { "lat": 40.7939495, "lon": -73.9658690 }, + { "lat": 40.7941301, "lon": -73.9657415 }, + { "lat": 40.7942887, "lon": -73.9656295 }, + { "lat": 40.7944550, "lon": -73.9655121 }, + { "lat": 40.7944862, "lon": -73.9654930 }, + { "lat": 40.7945103, "lon": -73.9654847 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809839899, + "bounds": { + "minlat": 40.7936539, + "minlon": -73.9651410, + "maxlat": 40.7938376, + "maxlon": -73.9650126 + }, + "nodes": [ + 3602667605, + 3602667607 + ], + "geometry": [ + { "lat": 40.7938376, "lon": -73.9650126 }, + { "lat": 40.7936539, "lon": -73.9651410 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809839900, + "bounds": { + "minlat": 40.7939923, + "minlon": -73.9648931, + "maxlat": 40.7941563, + "maxlon": -73.9647814 + }, + "nodes": [ + 7571414446, + 3602667636 + ], + "geometry": [ + { "lat": 40.7941563, "lon": -73.9647814 }, + { "lat": 40.7939923, "lon": -73.9648931 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 809839901, + "bounds": { + "minlat": 40.7941730, + "minlon": -73.9628541, + "maxlat": 40.7942085, + "maxlon": -73.9626863 + }, + "nodes": [ + 7571414447, + 42425570 + ], + "geometry": [ + { "lat": 40.7941730, "lon": -73.9626863 }, + { "lat": 40.7942085, "lon": -73.9628541 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "hgv": "no", + "highway": "service", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West 100th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 809841022, + "bounds": { + "minlat": 40.8241845, + "minlon": -73.9888921, + "maxlat": 40.8244815, + "maxlon": -73.9887393 + }, + "nodes": [ + 7571579880, + 7571579881, + 7571579883, + 7571579882 + ], + "geometry": [ + { "lat": 40.8241845, "lon": -73.9887393 }, + { "lat": 40.8242508, "lon": -73.9888921 }, + { "lat": 40.8243236, "lon": -73.9888786 }, + { "lat": 40.8244815, "lon": -73.9887518 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 810031831, + "bounds": { + "minlat": 40.7703941, + "minlon": -73.9959494, + "maxlat": 40.7705687, + "maxlon": -73.9957229 + }, + "nodes": [ + 7573194605, + 7573194604, + 7573194606, + 7573194607, + 7573194608, + 7573194609, + 7573194610, + 7573194611, + 7573194612, + 7573194613, + 7573194625, + 7573194614, + 5600219300, + 7573194615, + 7573194616, + 5600219304, + 7573194605 + ], + "geometry": [ + { "lat": 40.7705687, "lon": -73.9957988 }, + { "lat": 40.7705509, "lon": -73.9958099 }, + { "lat": 40.7705372, "lon": -73.9958202 }, + { "lat": 40.7705255, "lon": -73.9958348 }, + { "lat": 40.7705109, "lon": -73.9958570 }, + { "lat": 40.7704983, "lon": -73.9958806 }, + { "lat": 40.7704892, "lon": -73.9959007 }, + { "lat": 40.7704769, "lon": -73.9959235 }, + { "lat": 40.7704711, "lon": -73.9959305 }, + { "lat": 40.7704603, "lon": -73.9959387 }, + { "lat": 40.7704522, "lon": -73.9959449 }, + { "lat": 40.7704462, "lon": -73.9959494 }, + { "lat": 40.7704156, "lon": -73.9958774 }, + { "lat": 40.7703941, "lon": -73.9958247 }, + { "lat": 40.7705363, "lon": -73.9957229 }, + { "lat": 40.7705575, "lon": -73.9957724 }, + { "lat": 40.7705687, "lon": -73.9957988 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 810031832, + "bounds": { + "minlat": 40.7703503, + "minlon": -73.9958561, + "maxlat": 40.7705363, + "maxlon": -73.9956759 + }, + "nodes": [ + 7573194616, + 7573194617, + 7573194618, + 7573194619, + 7573194620, + 7573194621, + 7573194622, + 7573194623, + 247071743, + 7573194615, + 7573194616 + ], + "geometry": [ + { "lat": 40.7705363, "lon": -73.9957229 }, + { "lat": 40.7705173, "lon": -73.9956759 }, + { "lat": 40.7704892, "lon": -73.9956860 }, + { "lat": 40.7704545, "lon": -73.9957099 }, + { "lat": 40.7704218, "lon": -73.9957399 }, + { "lat": 40.7703956, "lon": -73.9957678 }, + { "lat": 40.7703695, "lon": -73.9958044 }, + { "lat": 40.7703541, "lon": -73.9958303 }, + { "lat": 40.7703503, "lon": -73.9958561 }, + { "lat": 40.7703941, "lon": -73.9958247 }, + { "lat": 40.7705363, "lon": -73.9957229 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 810031833, + "bounds": { + "minlat": 40.7704568, + "minlon": -73.9960058, + "maxlat": 40.7706120, + "maxlon": -73.9958260 + }, + "nodes": [ + 7573194626, + 7573194627, + 7573194628, + 7573194629, + 7573194630, + 7573194631, + 7573194599, + 7573194603, + 7573194632, + 5600219302, + 5600219301, + 7573194626 + ], + "geometry": [ + { "lat": 40.7704568, "lon": -73.9959744 }, + { "lat": 40.7704860, "lon": -73.9959561 }, + { "lat": 40.7704994, "lon": -73.9959367 }, + { "lat": 40.7705088, "lon": -73.9959110 }, + { "lat": 40.7705225, "lon": -73.9958827 }, + { "lat": 40.7705316, "lon": -73.9958663 }, + { "lat": 40.7705413, "lon": -73.9958550 }, + { "lat": 40.7705629, "lon": -73.9958382 }, + { "lat": 40.7705802, "lon": -73.9958260 }, + { "lat": 40.7706120, "lon": -73.9959008 }, + { "lat": 40.7704701, "lon": -73.9960058 }, + { "lat": 40.7704568, "lon": -73.9959744 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "level": "-1", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 810034545, + "bounds": { + "minlat": 40.8449421, + "minlon": -73.9093706, + "maxlat": 40.8451940, + "maxlon": -73.9093481 + }, + "nodes": [ + 596669147, + 596669158 + ], + "geometry": [ + { "lat": 40.8449421, "lon": -73.9093706 }, + { "lat": 40.8451940, "lon": -73.9093481 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "lanes": "2", + "layer": "1", + "name": "Morris Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 810053242, + "bounds": { + "minlat": 40.7690089, + "minlon": -73.9959130, + "maxlat": 40.7690734, + "maxlon": -73.9957496 + }, + "nodes": [ + 7573345223, + 7573345224, + 7573345225 + ], + "geometry": [ + { "lat": 40.7690734, "lon": -73.9959130 }, + { "lat": 40.7690378, "lon": -73.9958245 }, + { "lat": 40.7690089, "lon": -73.9957496 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 810068699, + "bounds": { + "minlat": 40.7933664, + "minlon": -73.9665537, + "maxlat": 40.7938539, + "maxlon": -73.9661904 + }, + "nodes": [ + 3602667614, + 3602667617, + 7801775745 + ], + "geometry": [ + { "lat": 40.7938539, "lon": -73.9661904 }, + { "lat": 40.7934930, "lon": -73.9664570 }, + { "lat": 40.7933664, "lon": -73.9665537 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 810068700, + "bounds": { + "minlat": 40.7933664, + "minlon": -73.9670321, + "maxlat": 40.7935554, + "maxlon": -73.9665537 + }, + "nodes": [ + 7801775745, + 7502904720, + 42443388 + ], + "geometry": [ + { "lat": 40.7933664, "lon": -73.9665537 }, + { "lat": 40.7934988, "lon": -73.9668889 }, + { "lat": 40.7935554, "lon": -73.9670321 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 97th Street", + "name:ru": "Западная 97-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 810068702, + "bounds": { + "minlat": 40.7932882, + "minlon": -73.9665537, + "maxlat": 40.7933664, + "maxlon": -73.9662869 + }, + "nodes": [ + 7801775726, + 9906921242, + 9906921243, + 9150552668, + 9906921244, + 7801775745 + ], + "geometry": [ + { "lat": 40.7932882, "lon": -73.9662869 }, + { "lat": 40.7933074, "lon": -73.9663432 }, + { "lat": 40.7933234, "lon": -73.9664003 }, + { "lat": 40.7933367, "lon": -73.9664625 }, + { "lat": 40.7933504, "lon": -73.9665110 }, + { "lat": 40.7933664, "lon": -73.9665537 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "2", + "name": "West 97th Street", + "name:ru": "Западная 97-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 810071011, + "bounds": { + "minlat": 40.7943717, + "minlon": -73.9642909, + "maxlat": 40.7947885, + "maxlon": -73.9633047 + }, + "nodes": [ + 42447273, + 7083286369, + 9915643014 + ], + "geometry": [ + { "lat": 40.7947885, "lon": -73.9642909 }, + { "lat": 40.7947448, "lon": -73.9641975 }, + { "lat": 40.7943717, "lon": -73.9633047 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 100th Street", + "name:ru": "Западная 100-я стрит", + "name_1": "West 100 Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 810350215, + "bounds": { + "minlat": 40.8221938, + "minlon": -73.9906405, + "maxlat": 40.8226515, + "maxlon": -73.9902369 + }, + "nodes": [ + 7576366380, + 7576366381, + 7576366382, + 7576366383, + 7576366384 + ], + "geometry": [ + { "lat": 40.8221938, "lon": -73.9902369 }, + { "lat": 40.8222691, "lon": -73.9903765 }, + { "lat": 40.8223551, "lon": -73.9905360 }, + { "lat": 40.8224115, "lon": -73.9906405 }, + { "lat": 40.8226515, "lon": -73.9904145 } + ], + "tags": { + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 810386525, + "bounds": { + "minlat": 40.8235911, + "minlon": -73.9890584, + "maxlat": 40.8239069, + "maxlon": -73.9885845 + }, + "nodes": [ + 7576827810, + 7576827811, + 7576827812, + 7576827813, + 7576827814 + ], + "geometry": [ + { "lat": 40.8239069, "lon": -73.9889490 }, + { "lat": 40.8238611, "lon": -73.9888278 }, + { "lat": 40.8237303, "lon": -73.9885845 }, + { "lat": 40.8235911, "lon": -73.9887210 }, + { "lat": 40.8237625, "lon": -73.9890584 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 810537411, + "bounds": { + "minlat": 40.8224612, + "minlon": -73.9886558, + "maxlat": 40.8229015, + "maxlon": -73.9877570 + }, + "nodes": [ + 7578396567, + 13539905106, + 7578396568, + 7578396569 + ], + "geometry": [ + { "lat": 40.8224612, "lon": -73.9877570 }, + { "lat": 40.8224674, "lon": -73.9878408 }, + { "lat": 40.8224717, "lon": -73.9878985 }, + { "lat": 40.8229015, "lon": -73.9886558 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 810591980, + "bounds": { + "minlat": 40.8213946, + "minlon": -73.9906831, + "maxlat": 40.8216334, + "maxlon": -73.9905132 + }, + "nodes": [ + 7578880232, + 7578880233, + 7578880234 + ], + "geometry": [ + { "lat": 40.8213946, "lon": -73.9906353 }, + { "lat": 40.8215487, "lon": -73.9905132 }, + { "lat": 40.8216334, "lon": -73.9906831 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 810591987, + "bounds": { + "minlat": 40.8221920, + "minlon": -73.9896663, + "maxlat": 40.8223928, + "maxlon": -73.9894828 + }, + "nodes": [ + 7578880271, + 7578880272 + ], + "geometry": [ + { "lat": 40.8223928, "lon": -73.9894828 }, + { "lat": 40.8221920, "lon": -73.9896663 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 810591988, + "bounds": { + "minlat": 40.8217892, + "minlon": -73.9900493, + "maxlat": 40.8220798, + "maxlon": -73.9897341 + }, + "nodes": [ + 7578880273, + 7578880274, + 7578880275 + ], + "geometry": [ + { "lat": 40.8217892, "lon": -73.9897341 }, + { "lat": 40.8219600, "lon": -73.9900493 }, + { "lat": 40.8220798, "lon": -73.9899359 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 810864821, + "bounds": { + "minlat": 40.7716553, + "minlon": -73.9886158, + "maxlat": 40.7717271, + "maxlon": -73.9885640 + }, + "nodes": [ + 7581159579, + 10064946339, + 7581159583 + ], + "geometry": [ + { "lat": 40.7716553, "lon": -73.9886158 }, + { "lat": 40.7717153, "lon": -73.9885725 }, + { "lat": 40.7717271, "lon": -73.9885640 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 810864822, + "bounds": { + "minlat": 40.7715406, + "minlon": -73.9900096, + "maxlat": 40.7720673, + "maxlon": -73.9895924 + }, + "nodes": [ + 7581159581, + 10064960469, + 7581159578, + 7581159577 + ], + "geometry": [ + { "lat": 40.7720673, "lon": -73.9895924 }, + { "lat": 40.7720095, "lon": -73.9896331 }, + { "lat": 40.7715406, "lon": -73.9899637 }, + { "lat": 40.7715623, "lon": -73.9900096 } + ], + "tags": { + "covered": "no", + "highway": "service", + "lit": "no", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 810894243, + "bounds": { + "minlat": 40.8177155, + "minlon": -73.9906279, + "maxlat": 40.8179204, + "maxlon": -73.9901671 + }, + "nodes": [ + 7304780624, + 7581460821, + 7581460822, + 7581460823 + ], + "geometry": [ + { "lat": 40.8177879, "lon": -73.9906279 }, + { "lat": 40.8177155, "lon": -73.9904611 }, + { "lat": 40.8178180, "lon": -73.9902412 }, + { "lat": 40.8179204, "lon": -73.9901671 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 810907388, + "bounds": { + "minlat": 40.8487236, + "minlon": -73.9303061, + "maxlat": 40.8492978, + "maxlon": -73.9293290 + }, + "nodes": [ + 7581538677, + 9566892697, + 7581538678, + 7581538679, + 7581538680, + 7581538681, + 7581538682, + 7581538683 + ], + "geometry": [ + { "lat": 40.8489209, "lon": -73.9303061 }, + { "lat": 40.8488669, "lon": -73.9301821 }, + { "lat": 40.8488480, "lon": -73.9301409 }, + { "lat": 40.8487311, "lon": -73.9298432 }, + { "lat": 40.8487236, "lon": -73.9297874 }, + { "lat": 40.8487323, "lon": -73.9297545 }, + { "lat": 40.8489175, "lon": -73.9296099 }, + { "lat": 40.8492978, "lon": -73.9293290 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812307033, + "bounds": { + "minlat": 40.7920327, + "minlon": -73.9412937, + "maxlat": 40.7921841, + "maxlon": -73.9409325 + }, + "nodes": [ + 7587374458, + 7587374461, + 7777321753, + 7587374462, + 7587374460, + 7587374459 + ], + "geometry": [ + { "lat": 40.7921841, "lon": -73.9412937 }, + { "lat": 40.7921507, "lon": -73.9412156 }, + { "lat": 40.7921337, "lon": -73.9411734 }, + { "lat": 40.7921205, "lon": -73.9411407 }, + { "lat": 40.7920608, "lon": -73.9410024 }, + { "lat": 40.7920327, "lon": -73.9409325 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812332423, + "bounds": { + "minlat": 40.7193739, + "minlon": -73.9826296, + "maxlat": 40.7196334, + "maxlon": -73.9825007 + }, + "nodes": [ + 7587615313, + 8310245644, + 7587615314, + 7587615315 + ], + "geometry": [ + { "lat": 40.7196334, "lon": -73.9825007 }, + { "lat": 40.7195863, "lon": -73.9825244 }, + { "lat": 40.7195762, "lon": -73.9825297 }, + { "lat": 40.7193739, "lon": -73.9826296 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812374523, + "bounds": { + "minlat": 40.7867448, + "minlon": -74.0049765, + "maxlat": 40.7869106, + "maxlon": -74.0048454 + }, + "nodes": [ + 7587758095, + 7587758098, + 7587758096, + 7587758097 + ], + "geometry": [ + { "lat": 40.7867448, "lon": -74.0049765 }, + { "lat": 40.7867993, "lon": -74.0049333 }, + { "lat": 40.7868376, "lon": -74.0049029 }, + { "lat": 40.7869106, "lon": -74.0048454 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 812392533, + "bounds": { + "minlat": 40.7670640, + "minlon": -73.9963548, + "maxlat": 40.7672448, + "maxlon": -73.9959207 + }, + "nodes": [ + 7588050919, + 10111253357, + 7588050923, + 7588050920, + 7588050924, + 7588050922, + 7588050921 + ], + "geometry": [ + { "lat": 40.7672448, "lon": -73.9959207 }, + { "lat": 40.7671895, "lon": -73.9959620 }, + { "lat": 40.7671743, "lon": -73.9959733 }, + { "lat": 40.7670640, "lon": -73.9960557 }, + { "lat": 40.7671252, "lon": -73.9961987 }, + { "lat": 40.7671368, "lon": -73.9962258 }, + { "lat": 40.7671920, "lon": -73.9963548 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 812399990, + "bounds": { + "minlat": 40.7879498, + "minlon": -74.0090602, + "maxlat": 40.7880906, + "maxlon": -74.0087420 + }, + "nodes": [ + 7588135064, + 7678131069, + 7588135067, + 7588135065, + 7588135066 + ], + "geometry": [ + { "lat": 40.7879498, "lon": -74.0087420 }, + { "lat": 40.7879786, "lon": -74.0088036 }, + { "lat": 40.7879934, "lon": -74.0088353 }, + { "lat": 40.7880292, "lon": -74.0089121 }, + { "lat": 40.7880906, "lon": -74.0090602 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812399991, + "bounds": { + "minlat": 40.7875131, + "minlon": -74.0089222, + "maxlat": 40.7877199, + "maxlon": -74.0084748 + }, + "nodes": [ + 7588135068, + 7658692253, + 7588135070, + 7658692254, + 7588135069 + ], + "geometry": [ + { "lat": 40.7875131, "lon": -74.0084748 }, + { "lat": 40.7875356, "lon": -74.0085242 }, + { "lat": 40.7876828, "lon": -74.0088467 }, + { "lat": 40.7876986, "lon": -74.0088788 }, + { "lat": 40.7877199, "lon": -74.0089222 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812399992, + "bounds": { + "minlat": 40.7881286, + "minlon": -74.0070499, + "maxlat": 40.7884621, + "maxlon": -74.0068566 + }, + "nodes": [ + 7588135071, + 7658692350, + 7588135072, + 7658692349, + 7588135073 + ], + "geometry": [ + { "lat": 40.7884621, "lon": -74.0068872 }, + { "lat": 40.7884127, "lon": -74.0069220 }, + { "lat": 40.7882309, "lon": -74.0070499 }, + { "lat": 40.7881727, "lon": -74.0069400 }, + { "lat": 40.7881286, "lon": -74.0068566 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812399993, + "bounds": { + "minlat": 40.7895108, + "minlon": -74.0075807, + "maxlat": 40.7903023, + "maxlon": -74.0071797 + }, + "nodes": [ + 7588135074, + 7658692351, + 7588135078, + 7588135075, + 7588135076, + 7588135079, + 7658692352, + 7588135077 + ], + "geometry": [ + { "lat": 40.7895108, "lon": -74.0074460 }, + { "lat": 40.7895576, "lon": -74.0074110 }, + { "lat": 40.7895902, "lon": -74.0073866 }, + { "lat": 40.7898476, "lon": -74.0071797 }, + { "lat": 40.7901139, "lon": -74.0075807 }, + { "lat": 40.7902586, "lon": -74.0074607 }, + { "lat": 40.7902780, "lon": -74.0074452 }, + { "lat": 40.7903023, "lon": -74.0074258 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812405351, + "bounds": { + "minlat": 40.8120437, + "minlon": -73.9904508, + "maxlat": 40.8129128, + "maxlon": -73.9901333 + }, + "nodes": [ + 7588192458, + 7588192459, + 7588192460, + 7588192461, + 6553834863 + ], + "geometry": [ + { "lat": 40.8120682, "lon": -73.9904508 }, + { "lat": 40.8120437, "lon": -73.9902907 }, + { "lat": 40.8120862, "lon": -73.9902092 }, + { "lat": 40.8126459, "lon": -73.9901593 }, + { "lat": 40.8129128, "lon": -73.9901333 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 812405352, + "bounds": { + "minlat": 40.8154105, + "minlon": -73.9897266, + "maxlat": 40.8155116, + "maxlon": -73.9894512 + }, + "nodes": [ + 7588192462, + 7588192463, + 7588192464 + ], + "geometry": [ + { "lat": 40.8154105, "lon": -73.9897266 }, + { "lat": 40.8155116, "lon": -73.9896279 }, + { "lat": 40.8154335, "lon": -73.9894512 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812415094, + "bounds": { + "minlat": 40.7884768, + "minlon": -74.0179093, + "maxlat": 40.7886374, + "maxlon": -74.0175592 + }, + "nodes": [ + 7588288486, + 7657469058, + 7657469031, + 7588288491 + ], + "geometry": [ + { "lat": 40.7886374, "lon": -74.0179093 }, + { "lat": 40.7886210, "lon": -74.0178735 }, + { "lat": 40.7885509, "lon": -74.0177207 }, + { "lat": 40.7884768, "lon": -74.0175592 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812415095, + "bounds": { + "minlat": 40.7875511, + "minlon": -74.0186703, + "maxlat": 40.7884768, + "maxlon": -74.0175592 + }, + "nodes": [ + 7588288489, + 7657469059, + 7657469032, + 7588288490, + 7588288491 + ], + "geometry": [ + { "lat": 40.7877071, "lon": -74.0186703 }, + { "lat": 40.7876881, "lon": -74.0186271 }, + { "lat": 40.7876209, "lon": -74.0184749 }, + { "lat": 40.7875511, "lon": -74.0183166 }, + { "lat": 40.7884768, "lon": -74.0175592 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 812431543, + "bounds": { + "minlat": 40.8561550, + "minlon": -73.9332865, + "maxlat": 40.8562721, + "maxlon": -73.9329358 + }, + "nodes": [ + 7588472450, + 7588472451, + 7588472452, + 7588472453, + 7588472454, + 7588472455 + ], + "geometry": [ + { "lat": 40.8561550, "lon": -73.9329358 }, + { "lat": 40.8561962, "lon": -73.9330744 }, + { "lat": 40.8562062, "lon": -73.9331283 }, + { "lat": 40.8562326, "lon": -73.9331913 }, + { "lat": 40.8562610, "lon": -73.9332476 }, + { "lat": 40.8562721, "lon": -73.9332865 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812449254, + "bounds": { + "minlat": 40.7658475, + "minlon": -73.9252511, + "maxlat": 40.7662824, + "maxlon": -73.9249771 + }, + "nodes": [ + 7588638469, + 7588638471, + 7588638470, + 7588638472 + ], + "geometry": [ + { "lat": 40.7662824, "lon": -73.9249771 }, + { "lat": 40.7662362, "lon": -73.9250150 }, + { "lat": 40.7659413, "lon": -73.9252511 }, + { "lat": 40.7658475, "lon": -73.9250511 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 812528456, + "bounds": { + "minlat": 40.8476913, + "minlon": -73.9127619, + "maxlat": 40.8478714, + "maxlon": -73.9123659 + }, + "nodes": [ + 42736336, + 7589205532, + 7589205533 + ], + "geometry": [ + { "lat": 40.8476913, "lon": -73.9123659 }, + { "lat": 40.8477794, "lon": -73.9125221 }, + { "lat": 40.8478714, "lon": -73.9127619 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812528457, + "bounds": { + "minlat": 40.8474583, + "minlon": -73.9129254, + "maxlat": 40.8478714, + "maxlon": -73.9125323 + }, + "nodes": [ + 7589205533, + 7589205534, + 13701329106, + 13701329105, + 7589205535, + 7589205536, + 7589205537 + ], + "geometry": [ + { "lat": 40.8478714, "lon": -73.9127619 }, + { "lat": 40.8476617, "lon": -73.9129177 }, + { "lat": 40.8476394, "lon": -73.9129254 }, + { "lat": 40.8476168, "lon": -73.9129140 }, + { "lat": 40.8476011, "lon": -73.9128965 }, + { "lat": 40.8475581, "lon": -73.9127938 }, + { "lat": 40.8474583, "lon": -73.9125323 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 812528458, + "bounds": { + "minlat": 40.8473651, + "minlon": -73.9125491, + "maxlat": 40.8474903, + "maxlon": -73.9121268 + }, + "nodes": [ + 13701329104, + 7589205539, + 7589205544, + 7589205540, + 7589205545, + 7589205541 + ], + "geometry": [ + { "lat": 40.8474355, "lon": -73.9125491 }, + { "lat": 40.8473651, "lon": -73.9123756 }, + { "lat": 40.8474711, "lon": -73.9123006 }, + { "lat": 40.8474903, "lon": -73.9122864 }, + { "lat": 40.8474604, "lon": -73.9122084 }, + { "lat": 40.8474282, "lon": -73.9121268 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812528459, + "bounds": { + "minlat": 40.8474282, + "minlon": -73.9121268, + "maxlat": 40.8475553, + "maxlon": -73.9120366 + }, + "nodes": [ + 7589205541, + 7589205542 + ], + "geometry": [ + { "lat": 40.8474282, "lon": -73.9121268 }, + { "lat": 40.8475553, "lon": -73.9120366 } + ], + "tags": { + "access": "customers", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 812528460, + "bounds": { + "minlat": 40.8474711, + "minlon": -73.9124710, + "maxlat": 40.8475438, + "maxlon": -73.9123006 + }, + "nodes": [ + 7589205543, + 7589205544 + ], + "geometry": [ + { "lat": 40.8475438, "lon": -73.9124710 }, + { "lat": 40.8474711, "lon": -73.9123006 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812528461, + "bounds": { + "minlat": 40.8474604, + "minlon": -73.9122084, + "maxlat": 40.8475880, + "maxlon": -73.9121188 + }, + "nodes": [ + 7589205545, + 7589205546 + ], + "geometry": [ + { "lat": 40.8474604, "lon": -73.9122084 }, + { "lat": 40.8475880, "lon": -73.9121188 } + ], + "tags": { + "access": "customers", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 812589502, + "bounds": { + "minlat": 40.7977006, + "minlon": -73.9334189, + "maxlat": 40.7979450, + "maxlon": -73.9332508 + }, + "nodes": [ + 7589801929, + 13327531963, + 7589801930 + ], + "geometry": [ + { "lat": 40.7977006, "lon": -73.9334189 }, + { "lat": 40.7977350, "lon": -73.9333952 }, + { "lat": 40.7979450, "lon": -73.9332508 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812692699, + "bounds": { + "minlat": 40.8127376, + "minlon": -73.9544838, + "maxlat": 40.8131165, + "maxlon": -73.9541395 + }, + "nodes": [ + 7590761557, + 10173362942, + 12397082598, + 10171069618, + 12397082596, + 7590761559 + ], + "geometry": [ + { "lat": 40.8127376, "lon": -73.9544838 }, + { "lat": 40.8127821, "lon": -73.9544083 }, + { "lat": 40.8127910, "lon": -73.9544011 }, + { "lat": 40.8130709, "lon": -73.9541743 }, + { "lat": 40.8130852, "lon": -73.9541634 }, + { "lat": 40.8131165, "lon": -73.9541395 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 812711451, + "bounds": { + "minlat": 40.7716259, + "minlon": -73.9888699, + "maxlat": 40.7717300, + "maxlon": -73.9887980 + }, + "nodes": [ + 7590906825, + 10064960468, + 7590906826 + ], + "geometry": [ + { "lat": 40.7716259, "lon": -73.9888699 }, + { "lat": 40.7716773, "lon": -73.9888344 }, + { "lat": 40.7717300, "lon": -73.9887980 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 812723099, + "bounds": { + "minlat": 40.7626710, + "minlon": -73.9310009, + "maxlat": 40.7628604, + "maxlon": -73.9305927 + }, + "nodes": [ + 7591076216, + 7591076218, + 7591076217 + ], + "geometry": [ + { "lat": 40.7628604, "lon": -73.9310009 }, + { "lat": 40.7627699, "lon": -73.9308059 }, + { "lat": 40.7626710, "lon": -73.9305927 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 812723100, + "bounds": { + "minlat": 40.7627699, + "minlon": -73.9308059, + "maxlat": 40.7629553, + "maxlon": -73.9306527 + }, + "nodes": [ + 7591076218, + 7591076219, + 7591076220 + ], + "geometry": [ + { "lat": 40.7627699, "lon": -73.9308059 }, + { "lat": 40.7628738, "lon": -73.9307201 }, + { "lat": 40.7629553, "lon": -73.9306527 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 812738719, + "bounds": { + "minlat": 40.8250518, + "minlon": -73.9828536, + "maxlat": 40.8252673, + "maxlon": -73.9825679 + }, + "nodes": [ + 7591274495, + 7591274496, + 7591274497, + 7591274498, + 7591274499, + 7591274500 + ], + "geometry": [ + { "lat": 40.8252673, "lon": -73.9828536 }, + { "lat": 40.8251931, "lon": -73.9828019 }, + { "lat": 40.8251817, "lon": -73.9827933 }, + { "lat": 40.8251722, "lon": -73.9827822 }, + { "lat": 40.8251615, "lon": -73.9827665 }, + { "lat": 40.8250518, "lon": -73.9825679 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 812740366, + "bounds": { + "minlat": 40.8151210, + "minlon": -74.0029517, + "maxlat": 40.8154475, + "maxlon": -74.0025525 + }, + "nodes": [ + 7591277324, + 7591277325, + 7591277326, + 7591277327, + 7591277329, + 7591277328 + ], + "geometry": [ + { "lat": 40.8151210, "lon": -74.0026372 }, + { "lat": 40.8152725, "lon": -74.0028642 }, + { "lat": 40.8153659, "lon": -74.0029517 }, + { "lat": 40.8154475, "lon": -74.0029221 }, + { "lat": 40.8154014, "lon": -74.0027336 }, + { "lat": 40.8153625, "lon": -74.0025525 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812740367, + "bounds": { + "minlat": 40.8154014, + "minlon": -74.0027336, + "maxlat": 40.8157373, + "maxlon": -74.0024372 + }, + "nodes": [ + 7591277329, + 7591277330, + 7591277331 + ], + "geometry": [ + { "lat": 40.8154014, "lon": -74.0027336 }, + { "lat": 40.8157373, "lon": -74.0026232 }, + { "lat": 40.8156970, "lon": -74.0024372 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812765552, + "bounds": { + "minlat": 40.8088649, + "minlon": -73.9319495, + "maxlat": 40.8092500, + "maxlon": -73.9313286 + }, + "nodes": [ + 12069336848, + 12069336847, + 12069336846 + ], + "geometry": [ + { "lat": 40.8092500, "lon": -73.9319495 }, + { "lat": 40.8088972, "lon": -73.9314720 }, + { "lat": 40.8088649, "lon": -73.9313286 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 812765553, + "bounds": { + "minlat": 40.8124000, + "minlon": -73.9322662, + "maxlat": 40.8131275, + "maxlon": -73.9319130 + }, + "nodes": [ + 7111683127, + 7591586310, + 7591586311, + 7591586312, + 7591586313, + 7591586314, + 7591586315, + 7591586316, + 7591586317 + ], + "geometry": [ + { "lat": 40.8124000, "lon": -73.9322662 }, + { "lat": 40.8124663, "lon": -73.9320830 }, + { "lat": 40.8125534, "lon": -73.9320332 }, + { "lat": 40.8126580, "lon": -73.9320048 }, + { "lat": 40.8128254, "lon": -73.9319818 }, + { "lat": 40.8128980, "lon": -73.9319361 }, + { "lat": 40.8129826, "lon": -73.9319130 }, + { "lat": 40.8130866, "lon": -73.9319142 }, + { "lat": 40.8131275, "lon": -73.9319473 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 812773216, + "bounds": { + "minlat": 40.8423623, + "minlon": -74.0030739, + "maxlat": 40.8427702, + "maxlon": -74.0025390 + }, + "nodes": [ + 7591669950, + 7591669949, + 7591669948, + 7591669947 + ], + "geometry": [ + { "lat": 40.8425948, "lon": -74.0025390 }, + { "lat": 40.8423623, "lon": -74.0027536 }, + { "lat": 40.8425364, "lon": -74.0030739 }, + { "lat": 40.8427702, "lon": -74.0028573 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 812936280, + "bounds": { + "minlat": 40.7335770, + "minlon": -74.0073392, + "maxlat": 40.7364388, + "maxlon": -74.0066141 + }, + "nodes": [ + 42436134, + 8429031342, + 12162494504, + 10166176731, + 42436135, + 10166176729, + 12162483593, + 12162483594, + 10168907021, + 42436139, + 10168907023, + 12162483579, + 11401831102, + 42436142, + 10168907018, + 11608874768, + 11608874767, + 42436146 + ], + "geometry": [ + { "lat": 40.7335770, "lon": -74.0073392 }, + { "lat": 40.7336580, "lon": -74.0073203 }, + { "lat": 40.7342089, "lon": -74.0071843 }, + { "lat": 40.7342511, "lon": -74.0071740 }, + { "lat": 40.7343066, "lon": -74.0071547 }, + { "lat": 40.7343586, "lon": -74.0071360 }, + { "lat": 40.7344879, "lon": -74.0071028 }, + { "lat": 40.7349126, "lon": -74.0069959 }, + { "lat": 40.7349570, "lon": -74.0069847 }, + { "lat": 40.7350121, "lon": -74.0069712 }, + { "lat": 40.7350804, "lon": -74.0069541 }, + { "lat": 40.7356126, "lon": -74.0068162 }, + { "lat": 40.7356675, "lon": -74.0068033 }, + { "lat": 40.7357351, "lon": -74.0067852 }, + { "lat": 40.7358099, "lon": -74.0067668 }, + { "lat": 40.7363381, "lon": -74.0066356 }, + { "lat": 40.7363892, "lon": -74.0066243 }, + { "lat": 40.7364388, "lon": -74.0066141 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 812936282, + "bounds": { + "minlat": 40.7256907, + "minlon": -74.0090892, + "maxlat": 40.7260025, + "maxlon": -74.0058541 + }, + "nodes": [ + 42436088, + 8307641937, + 42442288, + 8307641935, + 42436355, + 8307641879, + 4560056040, + 7079923150, + 13519263278, + 5173374393, + 4616536351 + ], + "geometry": [ + { "lat": 40.7260025, "lon": -74.0090892 }, + { "lat": 40.7259933, "lon": -74.0089965 }, + { "lat": 40.7259304, "lon": -74.0083464 }, + { "lat": 40.7258666, "lon": -74.0076869 }, + { "lat": 40.7258538, "lon": -74.0075543 }, + { "lat": 40.7258416, "lon": -74.0074285 }, + { "lat": 40.7257750, "lon": -74.0067426 }, + { "lat": 40.7257657, "lon": -74.0066451 }, + { "lat": 40.7257105, "lon": -74.0060634 }, + { "lat": 40.7256976, "lon": -74.0059272 }, + { "lat": 40.7256907, "lon": -74.0058541 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 812939218, + "bounds": { + "minlat": 40.7048531, + "minlon": -74.0089272, + "maxlat": 40.7055443, + "maxlon": -74.0079409 + }, + "nodes": [ + 42444414, + 11053183494, + 7139624444, + 42442107, + 11042989810, + 42444409, + 42444407, + 5105692798, + 42444403, + 10344043185, + 1251958257 + ], + "geometry": [ + { "lat": 40.7055443, "lon": -74.0079409 }, + { "lat": 40.7055224, "lon": -74.0079560 }, + { "lat": 40.7055000, "lon": -74.0079732 }, + { "lat": 40.7054413, "lon": -74.0080313 }, + { "lat": 40.7053449, "lon": -74.0081367 }, + { "lat": 40.7052525, "lon": -74.0082400 }, + { "lat": 40.7051697, "lon": -74.0083521 }, + { "lat": 40.7051001, "lon": -74.0084688 }, + { "lat": 40.7050287, "lon": -74.0085953 }, + { "lat": 40.7049377, "lon": -74.0087604 }, + { "lat": 40.7048531, "lon": -74.0089272 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 812949647, + "bounds": { + "minlat": 40.7633820, + "minlon": -73.9932376, + "maxlat": 40.7677520, + "maxlon": -73.9829033 + }, + "nodes": [ + 42428313, + 8785244252, + 10142214276, + 10087052495, + 42435705, + 10087002409, + 2351532363, + 1815133244, + 3463810249, + 6534229347, + 42449550, + 6534229349, + 8307463101, + 42430722 + ], + "geometry": [ + { "lat": 40.7633820, "lon": -73.9829033 }, + { "lat": 40.7634128, "lon": -73.9829765 }, + { "lat": 40.7639421, "lon": -73.9842275 }, + { "lat": 40.7641074, "lon": -73.9846181 }, + { "lat": 40.7641596, "lon": -73.9847413 }, + { "lat": 40.7642201, "lon": -73.9848837 }, + { "lat": 40.7653112, "lon": -73.9874490 }, + { "lat": 40.7653658, "lon": -73.9875752 }, + { "lat": 40.7654274, "lon": -73.9877173 }, + { "lat": 40.7665169, "lon": -73.9903032 }, + { "lat": 40.7665639, "lon": -73.9904136 }, + { "lat": 40.7666213, "lon": -73.9905494 }, + { "lat": 40.7677045, "lon": -73.9931306 }, + { "lat": 40.7677520, "lon": -73.9932376 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "West 53rd Street", + "name:ru": "Западная 53-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 812949648, + "bounds": { + "minlat": 40.7620858, + "minlon": -73.9836782, + "maxlat": 40.7627381, + "maxlon": -73.9832608 + }, + "nodes": [ + 42428312, + 9140940654, + 3977886871, + 3977886866, + 42428310 + ], + "geometry": [ + { "lat": 40.7627381, "lon": -73.9832608 }, + { "lat": 40.7626983, "lon": -73.9832839 }, + { "lat": 40.7626707, "lon": -73.9832991 }, + { "lat": 40.7621546, "lon": -73.9836347 }, + { "lat": 40.7620858, "lon": -73.9836782 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 812965805, + "bounds": { + "minlat": 40.7113599, + "minlon": -73.9614138, + "maxlat": 40.7181400, + "maxlon": -73.9552510 + }, + "nodes": [ + 42492546, + 6248588437, + 9945679624, + 6248588435, + 42509239, + 6248588434, + 6248588447, + 42480069, + 6248588444, + 6248588450, + 42506181, + 6248588448, + 6248588455, + 42509247, + 6248588452, + 9785615225, + 42473953, + 9785568202, + 11378800218, + 6248588462, + 42484180, + 6248588463, + 42489991, + 42489014, + 5680584627, + 42509258, + 5680584633, + 9767625382, + 42504284, + 9767625380, + 7016889831, + 9768177646, + 42509264, + 9768177645, + 9785615335, + 42474126, + 9785615336, + 9767625365, + 42509273 + ], + "geometry": [ + { "lat": 40.7181400, "lon": -73.9552510 }, + { "lat": 40.7180940, "lon": -73.9553005 }, + { "lat": 40.7179453, "lon": -73.9554606 }, + { "lat": 40.7176410, "lon": -73.9557881 }, + { "lat": 40.7175890, "lon": -73.9558440 }, + { "lat": 40.7175412, "lon": -73.9558952 }, + { "lat": 40.7170832, "lon": -73.9563842 }, + { "lat": 40.7170320, "lon": -73.9564390 }, + { "lat": 40.7169860, "lon": -73.9564886 }, + { "lat": 40.7165324, "lon": -73.9569778 }, + { "lat": 40.7164830, "lon": -73.9570310 }, + { "lat": 40.7164359, "lon": -73.9570814 }, + { "lat": 40.7159772, "lon": -73.9575726 }, + { "lat": 40.7159270, "lon": -73.9576260 }, + { "lat": 40.7158784, "lon": -73.9576785 }, + { "lat": 40.7154329, "lon": -73.9581757 }, + { "lat": 40.7153744, "lon": -73.9582409 }, + { "lat": 40.7153318, "lon": -73.9582846 }, + { "lat": 40.7151553, "lon": -73.9584658 }, + { "lat": 40.7148995, "lon": -73.9587284 }, + { "lat": 40.7148331, "lon": -73.9588018 }, + { "lat": 40.7147638, "lon": -73.9588821 }, + { "lat": 40.7143946, "lon": -73.9592931 }, + { "lat": 40.7142108, "lon": -73.9594927 }, + { "lat": 40.7139628, "lon": -73.9597433 }, + { "lat": 40.7138913, "lon": -73.9598080 }, + { "lat": 40.7138302, "lon": -73.9598629 }, + { "lat": 40.7133969, "lon": -73.9601310 }, + { "lat": 40.7133450, "lon": -73.9601630 }, + { "lat": 40.7132990, "lon": -73.9601920 }, + { "lat": 40.7131572, "lon": -73.9602815 }, + { "lat": 40.7127790, "lon": -73.9605202 }, + { "lat": 40.7127138, "lon": -73.9605614 }, + { "lat": 40.7126576, "lon": -73.9605967 }, + { "lat": 40.7120311, "lon": -73.9609900 }, + { "lat": 40.7119690, "lon": -73.9610290 }, + { "lat": 40.7119162, "lon": -73.9610624 }, + { "lat": 40.7114144, "lon": -73.9613797 }, + { "lat": 40.7113599, "lon": -73.9614138 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "Driggs Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Driggs", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 812965806, + "bounds": { + "minlat": 40.7165454, + "minlon": -73.9552510, + "maxlat": 40.7181400, + "maxlon": -73.9526780 + }, + "nodes": [ + 42492546, + 6248588440, + 6248588900, + 42492547, + 6248588902, + 8617784307, + 6235394614, + 42480130 + ], + "geometry": [ + { "lat": 40.7181400, "lon": -73.9552510 }, + { "lat": 40.7181006, "lon": -73.9551876 }, + { "lat": 40.7174127, "lon": -73.9540817 }, + { "lat": 40.7173570, "lon": -73.9539920 }, + { "lat": 40.7173088, "lon": -73.9539141 }, + { "lat": 40.7166245, "lon": -73.9528060 }, + { "lat": 40.7165996, "lon": -73.9527657 }, + { "lat": 40.7165454, "lon": -73.9526780 } + ], + "tags": { + "highway": "residential", + "name": "North 9th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "9th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 812965807, + "bounds": { + "minlat": 40.7209683, + "minlon": -73.9564985, + "maxlat": 40.7212835, + "maxlon": -73.9561599 + }, + "nodes": [ + 11701389397, + 11701389398 + ], + "geometry": [ + { "lat": 40.7209683, "lon": -73.9564985 }, + { "lat": 40.7212835, "lon": -73.9561599 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 812965808, + "bounds": { + "minlat": 40.7181400, + "minlon": -73.9578200, + "maxlat": 40.7197400, + "maxlon": -73.9552510 + }, + "nodes": [ + 42492540, + 9794890450, + 9794890334, + 42492544, + 9794890332, + 6863402547, + 6248588438, + 42492546 + ], + "geometry": [ + { "lat": 40.7197400, "lon": -73.9578200 }, + { "lat": 40.7196981, "lon": -73.9577527 }, + { "lat": 40.7189842, "lon": -73.9566045 }, + { "lat": 40.7189410, "lon": -73.9565350 }, + { "lat": 40.7189053, "lon": -73.9564778 }, + { "lat": 40.7185017, "lon": -73.9558308 }, + { "lat": 40.7181829, "lon": -73.9553197 }, + { "lat": 40.7181400, "lon": -73.9552510 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "North 9th Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "9th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 813024048, + "bounds": { + "minlat": 40.7225202, + "minlon": -73.9617862, + "maxlat": 40.7240501, + "maxlon": -73.9593279 + }, + "nodes": [ + 5070304978, + 9794890498, + 9794890499, + 42469520 + ], + "geometry": [ + { "lat": 40.7240501, "lon": -73.9617862 }, + { "lat": 40.7226234, "lon": -73.9594936 }, + { "lat": 40.7225788, "lon": -73.9594219 }, + { "lat": 40.7225202, "lon": -73.9593279 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 813024440, + "bounds": { + "minlat": 40.7230751, + "minlon": -73.9589598, + "maxlat": 40.7232118, + "maxlon": -73.9587393 + }, + "nodes": [ + 42469528, + 9789402675, + 9794890510, + 7594046743 + ], + "geometry": [ + { "lat": 40.7230751, "lon": -73.9587393 }, + { "lat": 40.7231345, "lon": -73.9588351 }, + { "lat": 40.7231575, "lon": -73.9588721 }, + { "lat": 40.7232118, "lon": -73.9589598 } + ], + "tags": { + "highway": "residential", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 813024441, + "bounds": { + "minlat": 40.7232118, + "minlon": -73.9615487, + "maxlat": 40.7248259, + "maxlon": -73.9589598 + }, + "nodes": [ + 7594046743, + 7594046744 + ], + "geometry": [ + { "lat": 40.7232118, "lon": -73.9589598 }, + { "lat": 40.7248259, "lon": -73.9615487 } + ], + "tags": { + "access": "no", + "highway": "residential", + "name": "North 12th Street" + } +}, +{ + "type": "way", + "id": 813034443, + "bounds": { + "minlat": 40.8125153, + "minlon": -73.9518195, + "maxlat": 40.8128726, + "maxlon": -73.9509880 + }, + "nodes": [ + 7594173331, + 10171865608, + 10173362968, + 7594173332 + ], + "geometry": [ + { "lat": 40.8128726, "lon": -73.9518195 }, + { "lat": 40.8128449, "lon": -73.9517551 }, + { "lat": 40.8125673, "lon": -73.9511090 }, + { "lat": 40.8125153, "lon": -73.9509880 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 813041783, + "bounds": { + "minlat": 40.8268836, + "minlon": -74.0067129, + "maxlat": 40.8270102, + "maxlon": -74.0063755 + }, + "nodes": [ + 7594276840, + 7594276841 + ], + "geometry": [ + { "lat": 40.8268836, "lon": -74.0063755 }, + { "lat": 40.8270102, "lon": -74.0067129 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 813041784, + "bounds": { + "minlat": 40.8236527, + "minlon": -74.0088436, + "maxlat": 40.8237376, + "maxlon": -74.0085981 + }, + "nodes": [ + 7208553412, + 7594276845, + 7594276842 + ], + "geometry": [ + { "lat": 40.8237376, "lon": -74.0085981 }, + { "lat": 40.8236980, "lon": -74.0087273 }, + { "lat": 40.8236527, "lon": -74.0088436 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 813041785, + "bounds": { + "minlat": 40.8235440, + "minlon": -74.0088436, + "maxlat": 40.8236527, + "maxlon": -74.0086014 + }, + "nodes": [ + 7594276842, + 7594276843, + 103224009 + ], + "geometry": [ + { "lat": 40.8236527, "lon": -74.0088436 }, + { "lat": 40.8235976, "lon": -74.0087549 }, + { "lat": 40.8235440, "lon": -74.0086014 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 813041786, + "bounds": { + "minlat": 40.8233130, + "minlon": -74.0095778, + "maxlat": 40.8236527, + "maxlon": -74.0088436 + }, + "nodes": [ + 7594276842, + 7594276846, + 7594276847, + 7594276848, + 7594276849 + ], + "geometry": [ + { "lat": 40.8236527, "lon": -74.0088436 }, + { "lat": 40.8236325, "lon": -74.0090464 }, + { "lat": 40.8235980, "lon": -74.0091703 }, + { "lat": 40.8234881, "lon": -74.0093559 }, + { "lat": 40.8233130, "lon": -74.0095778 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813041787, + "bounds": { + "minlat": 40.8225765, + "minlon": -74.0089711, + "maxlat": 40.8226524, + "maxlon": -74.0087107 + }, + "nodes": [ + 7594276850, + 7594276851, + 7594276852 + ], + "geometry": [ + { "lat": 40.8226524, "lon": -74.0087107 }, + { "lat": 40.8226179, "lon": -74.0088366 }, + { "lat": 40.8225765, "lon": -74.0089711 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 813041788, + "bounds": { + "minlat": 40.8224500, + "minlon": -74.0089711, + "maxlat": 40.8225765, + "maxlon": -74.0087312 + }, + "nodes": [ + 7594276852, + 7594276854, + 7594276853 + ], + "geometry": [ + { "lat": 40.8225765, "lon": -74.0089711 }, + { "lat": 40.8225178, "lon": -74.0088592 }, + { "lat": 40.8224500, "lon": -74.0087312 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 813041789, + "bounds": { + "minlat": 40.8225765, + "minlon": -74.0093559, + "maxlat": 40.8234881, + "maxlon": -74.0089711 + }, + "nodes": [ + 7594276852, + 7594276855, + 10020624844, + 7594276862, + 7594276856, + 7594276857, + 7594276858, + 7594276859, + 8230880038, + 7594276860, + 7594276861, + 7594276848 + ], + "geometry": [ + { "lat": 40.8225765, "lon": -74.0089711 }, + { "lat": 40.8225885, "lon": -74.0092302 }, + { "lat": 40.8227163, "lon": -74.0092231 }, + { "lat": 40.8228763, "lon": -74.0092133 }, + { "lat": 40.8229330, "lon": -74.0092125 }, + { "lat": 40.8229996, "lon": -74.0092947 }, + { "lat": 40.8230442, "lon": -74.0093162 }, + { "lat": 40.8231179, "lon": -74.0093097 }, + { "lat": 40.8232619, "lon": -74.0092847 }, + { "lat": 40.8233373, "lon": -74.0092562 }, + { "lat": 40.8233774, "lon": -74.0092655 }, + { "lat": 40.8234881, "lon": -74.0093559 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813044902, + "bounds": { + "minlat": 40.7932184, + "minlon": -74.0150846, + "maxlat": 40.7933931, + "maxlon": -74.0147016 + }, + "nodes": [ + 7594316608, + 7674820852, + 7594316609 + ], + "geometry": [ + { "lat": 40.7933931, "lon": -74.0150846 }, + { "lat": 40.7933779, "lon": -74.0150514 }, + { "lat": 40.7932184, "lon": -74.0147016 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 813044903, + "bounds": { + "minlat": 40.7937385, + "minlon": -74.0154502, + "maxlat": 40.7939449, + "maxlon": -74.0148004 + }, + "nodes": [ + 7594316610, + 7674820850, + 7594316611, + 7594316612, + 7674820849, + 7594316613 + ], + "geometry": [ + { "lat": 40.7937385, "lon": -74.0154502 }, + { "lat": 40.7937763, "lon": -74.0154161 }, + { "lat": 40.7939347, "lon": -74.0152733 }, + { "lat": 40.7939449, "lon": -74.0151490 }, + { "lat": 40.7937948, "lon": -74.0148485 }, + { "lat": 40.7937708, "lon": -74.0148004 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 813044904, + "bounds": { + "minlat": 40.7937992, + "minlon": -74.0137151, + "maxlat": 40.7940474, + "maxlon": -74.0135270 + }, + "nodes": [ + 7594316614, + 7674820851, + 7594316615 + ], + "geometry": [ + { "lat": 40.7937992, "lon": -74.0137151 }, + { "lat": 40.7938341, "lon": -74.0136887 }, + { "lat": 40.7940474, "lon": -74.0135270 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 813056028, + "bounds": { + "minlat": 40.8196870, + "minlon": -73.9439764, + "maxlat": 40.8200221, + "maxlon": -73.9432686 + }, + "nodes": [ + 7594452129, + 10743755867, + 7594452132, + 7594452130, + 7594452131 + ], + "geometry": [ + { "lat": 40.8200221, "lon": -73.9439764 }, + { "lat": 40.8199632, "lon": -73.9438655 }, + { "lat": 40.8199457, "lon": -73.9438325 }, + { "lat": 40.8199238, "lon": -73.9437850 }, + { "lat": 40.8196870, "lon": -73.9432686 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 813064712, + "bounds": { + "minlat": 40.8024530, + "minlon": -73.9574293, + "maxlat": 40.8026754, + "maxlon": -73.9572280 + }, + "nodes": [ + 7594535789, + 12014020431, + 11296200791, + 7594535791, + 12014020429, + 12014020430, + 7594535790 + ], + "geometry": [ + { "lat": 40.8026754, "lon": -73.9572280 }, + { "lat": 40.8026446, "lon": -73.9572491 }, + { "lat": 40.8026239, "lon": -73.9572632 }, + { "lat": 40.8026104, "lon": -73.9572729 }, + { "lat": 40.8025817, "lon": -73.9572945 }, + { "lat": 40.8025410, "lon": -73.9573640 }, + { "lat": 40.8024530, "lon": -73.9574293 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813069581, + "bounds": { + "minlat": 40.8394966, + "minlon": -73.9255271, + "maxlat": 40.8396988, + "maxlon": -73.9250591 + }, + "nodes": [ + 7594609001, + 7594609002, + 7594609003, + 7594609004, + 7594609005 + ], + "geometry": [ + { "lat": 40.8396988, "lon": -73.9255271 }, + { "lat": 40.8396606, "lon": -73.9253960 }, + { "lat": 40.8396200, "lon": -73.9252914 }, + { "lat": 40.8395640, "lon": -73.9251700 }, + { "lat": 40.8394966, "lon": -73.9250591 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 813120978, + "bounds": { + "minlat": 40.8262063, + "minlon": -73.9880551, + "maxlat": 40.8265154, + "maxlon": -73.9878547 + }, + "nodes": [ + 7595172513, + 7595172514, + 7595172515 + ], + "geometry": [ + { "lat": 40.8265154, "lon": -73.9878547 }, + { "lat": 40.8262731, "lon": -73.9880551 }, + { "lat": 40.8262063, "lon": -73.9879384 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 813120979, + "bounds": { + "minlat": 40.8227443, + "minlon": -73.9894754, + "maxlat": 40.8232264, + "maxlon": -73.9891637 + }, + "nodes": [ + 7595172516, + 7595172517, + 7595172518, + 7595172519 + ], + "geometry": [ + { "lat": 40.8232264, "lon": -73.9894754 }, + { "lat": 40.8231511, "lon": -73.9893139 }, + { "lat": 40.8230523, "lon": -73.9891637 }, + { "lat": 40.8227443, "lon": -73.9894124 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 813123198, + "bounds": { + "minlat": 40.7151883, + "minlon": -73.9877072, + "maxlat": 40.7153924, + "maxlon": -73.9870854 + }, + "nodes": [ + 7595185930, + 7595185931, + 7595185932, + 7595185933, + 7595185934 + ], + "geometry": [ + { "lat": 40.7151883, "lon": -73.9870854 }, + { "lat": 40.7152072, "lon": -73.9871759 }, + { "lat": 40.7152146, "lon": -73.9872026 }, + { "lat": 40.7152980, "lon": -73.9874282 }, + { "lat": 40.7153924, "lon": -73.9877072 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 813330102, + "bounds": { + "minlat": 40.7684180, + "minlon": -73.9847672, + "maxlat": 40.7685732, + "maxlon": -73.9845403 + }, + "nodes": [ + 7597291064, + 10075114644, + 7597291065, + 7597291066, + 7597291067, + 7597291068, + 7597291074 + ], + "geometry": [ + { "lat": 40.7684180, "lon": -73.9847672 }, + { "lat": 40.7685088, "lon": -73.9847016 }, + { "lat": 40.7685282, "lon": -73.9846876 }, + { "lat": 40.7685498, "lon": -73.9846652 }, + { "lat": 40.7685662, "lon": -73.9846290 }, + { "lat": 40.7685732, "lon": -73.9845790 }, + { "lat": 40.7685572, "lon": -73.9845403 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "sidewalk": "no" + } +}, +{ + "type": "way", + "id": 813330103, + "bounds": { + "minlat": 40.7685325, + "minlon": -73.9845403, + "maxlat": 40.7685572, + "maxlon": -73.9844806 + }, + "nodes": [ + 7597291074, + 7597291077, + 7597291075 + ], + "geometry": [ + { "lat": 40.7685572, "lon": -73.9845403 }, + { "lat": 40.7685435, "lon": -73.9845072 }, + { "lat": 40.7685325, "lon": -73.9844806 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "sidewalk": "no" + } +}, +{ + "type": "way", + "id": 813330104, + "bounds": { + "minlat": 40.7683144, + "minlon": -73.9845131, + "maxlat": 40.7685325, + "maxlon": -73.9844157 + }, + "nodes": [ + 7597291075, + 7597291069, + 7597291070, + 7597291071, + 7597291072, + 10075114642, + 7597291073 + ], + "geometry": [ + { "lat": 40.7685325, "lon": -73.9844806 }, + { "lat": 40.7685172, "lon": -73.9844434 }, + { "lat": 40.7684880, "lon": -73.9844211 }, + { "lat": 40.7684541, "lon": -73.9844157 }, + { "lat": 40.7684250, "lon": -73.9844311 }, + { "lat": 40.7684028, "lon": -73.9844475 }, + { "lat": 40.7683144, "lon": -73.9845131 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "sidewalk": "no" + } +}, +{ + "type": "way", + "id": 813457486, + "bounds": { + "minlat": 40.8161536, + "minlon": -73.9848219, + "maxlat": 40.8162552, + "maxlon": -73.9843678 + }, + "nodes": [ + 7598551416, + 7598551417 + ], + "geometry": [ + { "lat": 40.8162552, "lon": -73.9848219 }, + { "lat": 40.8161536, "lon": -73.9843678 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 813467797, + "bounds": { + "minlat": 40.8140490, + "minlon": -73.9362392, + "maxlat": 40.8146523, + "maxlon": -73.9348455 + }, + "nodes": [ + 7732243573, + 8236461972, + 7732243582, + 7598638611, + 12688865135, + 9163819572, + 9163819573, + 589927965 + ], + "geometry": [ + { "lat": 40.8146523, "lon": -73.9362392 }, + { "lat": 40.8146047, "lon": -73.9361180 }, + { "lat": 40.8145374, "lon": -73.9359229 }, + { "lat": 40.8141204, "lon": -73.9349447 }, + { "lat": 40.8141134, "lon": -73.9349281 }, + { "lat": 40.8140935, "lon": -73.9348863 }, + { "lat": 40.8140735, "lon": -73.9348623 }, + { "lat": 40.8140490, "lon": -73.9348455 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 813473322, + "bounds": { + "minlat": 40.8146041, + "minlon": -73.9588548, + "maxlat": 40.8146322, + "maxlon": -73.9587812 + }, + "nodes": [ + 13819649098, + 10050007136, + 7732654839 + ], + "geometry": [ + { "lat": 40.8146322, "lon": -73.9588548 }, + { "lat": 40.8146175, "lon": -73.9588165 }, + { "lat": 40.8146041, "lon": -73.9587812 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 813473323, + "bounds": { + "minlat": 40.8142482, + "minlon": -73.9587537, + "maxlat": 40.8145933, + "maxlon": -73.9586236 + }, + "nodes": [ + 7598688496, + 7598688497 + ], + "geometry": [ + { "lat": 40.8145933, "lon": -73.9587537 }, + { "lat": 40.8142482, "lon": -73.9586236 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 813473324, + "bounds": { + "minlat": 40.8133586, + "minlon": -73.9584466, + "maxlat": 40.8137499, + "maxlon": -73.9583099 + }, + "nodes": [ + 7598688498, + 7598688499 + ], + "geometry": [ + { "lat": 40.8137499, "lon": -73.9584466 }, + { "lat": 40.8133586, "lon": -73.9583099 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 813473325, + "bounds": { + "minlat": 40.8133067, + "minlon": -73.9583481, + "maxlat": 40.8133586, + "maxlon": -73.9583099 + }, + "nodes": [ + 7598688499, + 10055105483, + 13897041835 + ], + "geometry": [ + { "lat": 40.8133586, "lon": -73.9583099 }, + { "lat": 40.8133386, "lon": -73.9583240 }, + { "lat": 40.8133067, "lon": -73.9583481 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 813473326, + "bounds": { + "minlat": 40.8136560, + "minlon": -73.9568969, + "maxlat": 40.8137287, + "maxlon": -73.9567559 + }, + "nodes": [ + 6871927725, + 7598688501 + ], + "geometry": [ + { "lat": 40.8137287, "lon": -73.9567559 }, + { "lat": 40.8136560, "lon": -73.9568969 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813473327, + "bounds": { + "minlat": 40.8131138, + "minlon": -73.9568969, + "maxlat": 40.8136560, + "maxlon": -73.9567455 + }, + "nodes": [ + 7598688501, + 7598688502, + 10055105486, + 7598688503 + ], + "geometry": [ + { "lat": 40.8136560, "lon": -73.9568969 }, + { "lat": 40.8134980, "lon": -73.9567670 }, + { "lat": 40.8132744, "lon": -73.9567455 }, + { "lat": 40.8131138, "lon": -73.9568041 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813473329, + "bounds": { + "minlat": 40.8130113, + "minlon": -73.9570012, + "maxlat": 40.8134132, + "maxlon": -73.9568470 + }, + "nodes": [ + 7598688513, + 7598688516, + 7598688514 + ], + "geometry": [ + { "lat": 40.8134132, "lon": -73.9570012 }, + { "lat": 40.8130924, "lon": -73.9568819 }, + { "lat": 40.8130113, "lon": -73.9568470 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813473330, + "bounds": { + "minlat": 40.8129089, + "minlon": -73.9568470, + "maxlat": 40.8130113, + "maxlon": -73.9566148 + }, + "nodes": [ + 7598688514, + 7087063686, + 7598688515 + ], + "geometry": [ + { "lat": 40.8130113, "lon": -73.9568470 }, + { "lat": 40.8129672, "lon": -73.9567471 }, + { "lat": 40.8129089, "lon": -73.9566148 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813473331, + "bounds": { + "minlat": 40.8130924, + "minlon": -73.9568819, + "maxlat": 40.8131138, + "maxlon": -73.9568041 + }, + "nodes": [ + 7598688503, + 7598688516 + ], + "geometry": [ + { "lat": 40.8131138, "lon": -73.9568041 }, + { "lat": 40.8130924, "lon": -73.9568819 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813506664, + "bounds": { + "minlat": 40.8101168, + "minlon": -73.9605437, + "maxlat": 40.8124135, + "maxlon": -73.9551034 + }, + "nodes": [ + 6993051350, + 10106642888, + 6791440575, + 42438928, + 6886295096, + 7323388257, + 6223571520, + 6886294935, + 1506599377 + ], + "geometry": [ + { "lat": 40.8101168, "lon": -73.9551034 }, + { "lat": 40.8111207, "lon": -73.9574471 }, + { "lat": 40.8112218, "lon": -73.9576830 }, + { "lat": 40.8112717, "lon": -73.9578050 }, + { "lat": 40.8113262, "lon": -73.9579371 }, + { "lat": 40.8123250, "lon": -73.9603328 }, + { "lat": 40.8123550, "lon": -73.9604030 }, + { "lat": 40.8123747, "lon": -73.9604505 }, + { "lat": 40.8124135, "lon": -73.9605437 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 123rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 813506667, + "bounds": { + "minlat": 40.8109159, + "minlon": -73.9546917, + "maxlat": 40.8111861, + "maxlon": -73.9544514 + }, + "nodes": [ + 7598970688, + 7598970687, + 11979323601, + 11979323602, + 11979323600 + ], + "geometry": [ + { "lat": 40.8109159, "lon": -73.9546917 }, + { "lat": 40.8111139, "lon": -73.9545536 }, + { "lat": 40.8111422, "lon": -73.9545136 }, + { "lat": 40.8111596, "lon": -73.9544890 }, + { "lat": 40.8111861, "lon": -73.9544514 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813506668, + "bounds": { + "minlat": 40.8108033, + "minlon": -73.9546917, + "maxlat": 40.8109159, + "maxlon": -73.9544251 + }, + "nodes": [ + 7598970688, + 10171069635, + 7598970689 + ], + "geometry": [ + { "lat": 40.8109159, "lon": -73.9546917 }, + { "lat": 40.8108567, "lon": -73.9545514 }, + { "lat": 40.8108033, "lon": -73.9544251 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813506670, + "bounds": { + "minlat": 40.8120457, + "minlon": -73.9557821, + "maxlat": 40.8121623, + "maxlon": -73.9552162 + }, + "nodes": [ + 7598970690, + 6824030329, + 7598970691 + ], + "geometry": [ + { "lat": 40.8120457, "lon": -73.9557821 }, + { "lat": 40.8121296, "lon": -73.9553737 }, + { "lat": 40.8121623, "lon": -73.9552162 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813506671, + "bounds": { + "minlat": 40.8118731, + "minlon": -73.9557177, + "maxlat": 40.8120077, + "maxlon": -73.9550848 + }, + "nodes": [ + 7598970692, + 6823995459, + 7598970693 + ], + "geometry": [ + { "lat": 40.8118731, "lon": -73.9557177 }, + { "lat": 40.8119728, "lon": -73.9552376 }, + { "lat": 40.8120077, "lon": -73.9550848 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813506672, + "bounds": { + "minlat": 40.8118731, + "minlon": -73.9557821, + "maxlat": 40.8120457, + "maxlon": -73.9557177 + }, + "nodes": [ + 7598970690, + 7598970692 + ], + "geometry": [ + { "lat": 40.8120457, "lon": -73.9557821 }, + { "lat": 40.8118731, "lon": -73.9557177 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 813727586, + "bounds": { + "minlat": 40.7456811, + "minlon": -73.9724756, + "maxlat": 40.7472356, + "maxlon": -73.9709446 + }, + "nodes": [ + 6166413701, + 6166413702, + 7684215083, + 6166413703, + 6166413704, + 6166413707 + ], + "geometry": [ + { "lat": 40.7456811, "lon": -73.9724756 }, + { "lat": 40.7457695, "lon": -73.9722384 }, + { "lat": 40.7458799, "lon": -73.9720650 }, + { "lat": 40.7459888, "lon": -73.9719297 }, + { "lat": 40.7461556, "lon": -73.9717330 }, + { "lat": 40.7472356, "lon": -73.9709446 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "layer": "-2", + "lit": "24/7", + "maxheight": "12'1\"", + "maxspeed": "40 mph", + "maxwidth": "8'6\"", + "name": "Queens-Midtown Tunnel", + "oneway": "yes", + "ref": "I 495", + "short_name": "Midtown Tunnel", + "toll": "yes", + "tunnel": "yes", + "wikidata": "Q125138", + "wikipedia": "en:Queens–Midtown Tunnel" + } +}, +{ + "type": "way", + "id": 813956617, + "bounds": { + "minlat": 40.7268652, + "minlon": -73.9799131, + "maxlat": 40.7287460, + "maxlon": -73.9785360 + }, + "nodes": [ + 42430924, + 4216045798, + 12179582410, + 8309479494, + 42455007, + 8309479493, + 8309479486, + 42446562, + 8309479485, + 8309479478, + 42436947 + ], + "geometry": [ + { "lat": 40.7268652, "lon": -73.9799131 }, + { "lat": 40.7269223, "lon": -73.9798737 }, + { "lat": 40.7269682, "lon": -73.9798396 }, + { "lat": 40.7274157, "lon": -73.9795070 }, + { "lat": 40.7274680, "lon": -73.9794690 }, + { "lat": 40.7275208, "lon": -73.9794301 }, + { "lat": 40.7280595, "lon": -73.9790323 }, + { "lat": 40.7281060, "lon": -73.9789980 }, + { "lat": 40.7281570, "lon": -73.9789612 }, + { "lat": 40.7286924, "lon": -73.9785748 }, + { "lat": 40.7287460, "lon": -73.9785360 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Avenue B", + "name:ru": "Авеню B", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2873530", + "wikipedia": "en:Avenue B (Manhattan)" + } +}, +{ + "type": "way", + "id": 813956618, + "bounds": { + "minlat": 40.7224980, + "minlon": -73.9816370, + "maxlat": 40.7244940, + "maxlon": -73.9768930 + }, + "nodes": [ + 42444832, + 7977832455, + 5575804213, + 7977873288, + 42444833, + 7977873285, + 13191032161, + 8386250193, + 8309479366, + 42444835 + ], + "geometry": [ + { "lat": 40.7244940, "lon": -73.9816370 }, + { "lat": 40.7244592, "lon": -73.9815542 }, + { "lat": 40.7240299, "lon": -73.9805329 }, + { "lat": 40.7235449, "lon": -73.9793792 }, + { "lat": 40.7235008, "lon": -73.9792747 }, + { "lat": 40.7234648, "lon": -73.9791873 }, + { "lat": 40.7230169, "lon": -73.9781247 }, + { "lat": 40.7227864, "lon": -73.9775777 }, + { "lat": 40.7225419, "lon": -73.9769972 }, + { "lat": 40.7224980, "lon": -73.9768930 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 6th Street", + "name:ru": "Восточная 6-я стрит", + "name_1": "East 6 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 813970415, + "bounds": { + "minlat": 40.7434315, + "minlon": -73.9989693, + "maxlat": 40.7446300, + "maxlon": -73.9961302 + }, + "nodes": [ + 42434271, + 10171509274, + 10171337719, + 42434270 + ], + "geometry": [ + { "lat": 40.7446300, "lon": -73.9989693 }, + { "lat": 40.7445752, "lon": -73.9988392 }, + { "lat": 40.7434847, "lon": -73.9962562 }, + { "lat": 40.7434315, "lon": -73.9961302 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 22nd Street", + "name:ru": "Западная 22-я стрит", + "name_1": "West 22 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 813970416, + "bounds": { + "minlat": 40.7424120, + "minlon": -73.9968701, + "maxlat": 40.7434315, + "maxlon": -73.9961302 + }, + "nodes": [ + 42434270, + 10171337716, + 12181309677, + 9683231687, + 42439836, + 9683231688, + 7956044489 + ], + "geometry": [ + { "lat": 40.7434315, "lon": -73.9961302 }, + { "lat": 40.7433692, "lon": -73.9961725 }, + { "lat": 40.7429181, "lon": -73.9965019 }, + { "lat": 40.7428707, "lon": -73.9965365 }, + { "lat": 40.7428254, "lon": -73.9965699 }, + { "lat": 40.7427589, "lon": -73.9966178 }, + { "lat": 40.7424120, "lon": -73.9968701 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 813970417, + "bounds": { + "minlat": 40.7422328, + "minlon": -73.9961302, + "maxlat": 40.7434315, + "maxlon": -73.9932916 + }, + "nodes": [ + 42434270, + 10171337717, + 10171337670, + 42430269 + ], + "geometry": [ + { "lat": 40.7434315, "lon": -73.9961302 }, + { "lat": 40.7433786, "lon": -73.9960048 }, + { "lat": 40.7422922, "lon": -73.9934289 }, + { "lat": 40.7422328, "lon": -73.9932916 } + ], + "tags": { + "alt_name": "West 22 Street", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 22nd Street", + "name:ru": "Западная 22-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 813972136, + "bounds": { + "minlat": 40.7346235, + "minlon": -73.9878233, + "maxlat": 40.7352981, + "maxlon": -73.9862217 + }, + "nodes": [ + 42434354, + 9507816955, + 12183283838, + 12183286725, + 9507816957, + 42449890 + ], + "geometry": [ + { "lat": 40.7352981, "lon": -73.9878233 }, + { "lat": 40.7352625, "lon": -73.9877274 }, + { "lat": 40.7350332, "lon": -73.9871826 }, + { "lat": 40.7346978, "lon": -73.9863897 }, + { "lat": 40.7346832, "lon": -73.9863552 }, + { "lat": 40.7346235, "lon": -73.9862217 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 16th Street", + "name:ru": "Восточная 16-я стрит", + "name_1": "East 16 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 813993495, + "bounds": { + "minlat": 40.7372597, + "minlon": -73.9216968, + "maxlat": 40.7376895, + "maxlon": -73.9179776 + }, + "nodes": [ + 42910092, + 8237218721, + 5482411057, + 8237218720, + 42885762, + 10084797193, + 42833591, + 2874954764, + 42904473, + 2874954763, + 10084797205, + 42859976 + ], + "geometry": [ + { "lat": 40.7376895, "lon": -73.9216968 }, + { "lat": 40.7376802, "lon": -73.9216124 }, + { "lat": 40.7376326, "lon": -73.9211951 }, + { "lat": 40.7375918, "lon": -73.9208447 }, + { "lat": 40.7375829, "lon": -73.9207671 }, + { "lat": 40.7375736, "lon": -73.9206844 }, + { "lat": 40.7374744, "lon": -73.9198397 }, + { "lat": 40.7374227, "lon": -73.9193901 }, + { "lat": 40.7373652, "lon": -73.9189029 }, + { "lat": 40.7373184, "lon": -73.9184844 }, + { "lat": 40.7372733, "lon": -73.9180889 }, + { "lat": 40.7372597, "lon": -73.9179776 } + ], + "tags": { + "access": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle:conditional": "no @ (08:00-20:00)", + "name": "50th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 813993496, + "bounds": { + "minlat": 40.7355313, + "minlon": -73.9221309, + "maxlat": 40.7376895, + "maxlon": -73.9216968 + }, + "nodes": [ + 42910092, + 10084797188, + 5482411051, + 10774439670, + 10084797192, + 10084797189, + 10084797190, + 42825302 + ], + "geometry": [ + { "lat": 40.7376895, "lon": -73.9216968 }, + { "lat": 40.7376066, "lon": -73.9217137 }, + { "lat": 40.7372091, "lon": -73.9217945 }, + { "lat": 40.7370741, "lon": -73.9218214 }, + { "lat": 40.7362922, "lon": -73.9219775 }, + { "lat": 40.7356472, "lon": -73.9221062 }, + { "lat": 40.7356006, "lon": -73.9221155 }, + { "lat": 40.7355313, "lon": -73.9221309 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "44th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 814002681, + "bounds": { + "minlat": 40.7594828, + "minlon": -73.9619465, + "maxlat": 40.7599564, + "maxlon": -73.9606065 + }, + "nodes": [ + 3944770822, + 371034144, + 3785591418, + 3785591419, + 3785591420, + 371037076, + 3785591422, + 3785591421, + 371037077 + ], + "geometry": [ + { "lat": 40.7599564, "lon": -73.9619465 }, + { "lat": 40.7598930, "lon": -73.9617942 }, + { "lat": 40.7598295, "lon": -73.9616369 }, + { "lat": 40.7597809, "lon": -73.9615072 }, + { "lat": 40.7597423, "lon": -73.9613818 }, + { "lat": 40.7596782, "lon": -73.9611690 }, + { "lat": 40.7595800, "lon": -73.9608601 }, + { "lat": 40.7595303, "lon": -73.9607303 }, + { "lat": 40.7594828, "lon": -73.9606065 } + ], + "tags": { + "access:conditional": "no @ (Mo-Fr 06:00-09:30); yes @ (Mo-Fr 06:00-09:30 AND occupants>1)", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "maxspeed": "35 mph", + "moped": "no", + "name": "Ed Koch Queensboro Bridge Upper Level", + "note": "Upper level", + "oneway": "reversible", + "oneway:conditional": "yes @ (Mo-Fr 00:00-06:00,09:30-24:00; Sa-Su); -1 @ (Mo-Fr 06:00-09:30)", + "wikidata": "Q125157", + "wikipedia": "en:Queensboro Bridge" + } +}, +{ + "type": "way", + "id": 814045356, + "bounds": { + "minlat": 40.8197526, + "minlon": -73.9888436, + "maxlat": 40.8198055, + "maxlon": -73.9886434 + }, + "nodes": [ + 7604240932, + 7604240933 + ], + "geometry": [ + { "lat": 40.8198055, "lon": -73.9888436 }, + { "lat": 40.8197526, "lon": -73.9886434 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814045373, + "bounds": { + "minlat": 40.8184797, + "minlon": -73.9890111, + "maxlat": 40.8186243, + "maxlon": -73.9889707 + }, + "nodes": [ + 103276536, + 7604260316, + 7604260317 + ], + "geometry": [ + { "lat": 40.8184797, "lon": -73.9889825 }, + { "lat": 40.8185258, "lon": -73.9890111 }, + { "lat": 40.8186243, "lon": -73.9889707 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814048796, + "bounds": { + "minlat": 40.8198894, + "minlon": -73.9891321, + "maxlat": 40.8200351, + "maxlon": -73.9888063 + }, + "nodes": [ + 7604297609, + 7604297610, + 7604297611 + ], + "geometry": [ + { "lat": 40.8198894, "lon": -73.9888063 }, + { "lat": 40.8199320, "lon": -73.9889268 }, + { "lat": 40.8200351, "lon": -73.9891321 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814054676, + "bounds": { + "minlat": 40.8462182, + "minlon": -73.9400565, + "maxlat": 40.8465308, + "maxlon": -73.9384437 + }, + "nodes": [ + 42429002, + 7604384302, + 7604384329, + 42427159 + ], + "geometry": [ + { "lat": 40.8462182, "lon": -73.9384437 }, + { "lat": 40.8462414, "lon": -73.9385925 }, + { "lat": 40.8465063, "lon": -73.9399371 }, + { "lat": 40.8465308, "lon": -73.9400565 } + ], + "tags": { + "highway": "residential", + "name": "West 175th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "175th", + "tiger:name_base_1": "175", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 814127470, + "bounds": { + "minlat": 40.7657508, + "minlon": -73.9459606, + "maxlat": 40.7660873, + "maxlon": -73.9453207 + }, + "nodes": [ + 7605140220, + 7605140221 + ], + "geometry": [ + { "lat": 40.7660873, "lon": -73.9459606 }, + { "lat": 40.7657508, "lon": -73.9453207 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814208942, + "bounds": { + "minlat": 40.8429832, + "minlon": -73.9081693, + "maxlat": 40.8433042, + "maxlon": -73.9079061 + }, + "nodes": [ + 7605646530, + 12737767481, + 7605646531, + 7605646532, + 7605646537, + 7605646533, + 7605646534, + 12737767480, + 7605646535 + ], + "geometry": [ + { "lat": 40.8429952, "lon": -73.9081693 }, + { "lat": 40.8430571, "lon": -73.9081626 }, + { "lat": 40.8432882, "lon": -73.9081378 }, + { "lat": 40.8433042, "lon": -73.9081110 }, + { "lat": 40.8432987, "lon": -73.9080257 }, + { "lat": 40.8432919, "lon": -73.9079198 }, + { "lat": 40.8432778, "lon": -73.9079061 }, + { "lat": 40.8430446, "lon": -73.9079237 }, + { "lat": 40.8429832, "lon": -73.9079283 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814259709, + "bounds": { + "minlat": 40.7072908, + "minlon": -74.0016856, + "maxlat": 40.7077643, + "maxlon": -74.0013145 + }, + "nodes": [ + 42433212, + 8279851782, + 9907939571, + 8279851747, + 42433218 + ], + "geometry": [ + { "lat": 40.7077643, "lon": -74.0016856 }, + { "lat": 40.7077098, "lon": -74.0016444 }, + { "lat": 40.7073768, "lon": -74.0013868 }, + { "lat": 40.7073498, "lon": -74.0013664 }, + { "lat": 40.7072908, "lon": -74.0013145 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Peck Slip", + "name:etymology:wikidata": "Q128782864", + "name:ko": "펙 슬립", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 814259710, + "bounds": { + "minlat": 40.7072195, + "minlon": -74.0027472, + "maxlat": 40.7077643, + "maxlon": -74.0016856 + }, + "nodes": [ + 42433212, + 8279851784, + 10311946295, + 8279851773, + 42452620 + ], + "geometry": [ + { "lat": 40.7077643, "lon": -74.0016856 }, + { "lat": 40.7077237, "lon": -74.0017649 }, + { "lat": 40.7072673, "lon": -74.0026543 }, + { "lat": 40.7072555, "lon": -74.0026772 }, + { "lat": 40.7072195, "lon": -74.0027472 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Front Street", + "name:ko": "프론트 스트리트", + "name:ru": "Фронт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q4493022", + "wikipedia": "en:Front Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 814278018, + "bounds": { + "minlat": 40.7653085, + "minlon": -73.9941564, + "maxlat": 40.7664978, + "maxlon": -73.9913292 + }, + "nodes": [ + 42454042, + 10090631696, + 6863266396, + 6895152830, + 13385680414, + 10111318245, + 10111318242, + 10090622110, + 42430707 + ], + "geometry": [ + { "lat": 40.7653085, "lon": -73.9913292 }, + { "lat": 40.7653673, "lon": -73.9914669 }, + { "lat": 40.7655785, "lon": -73.9919614 }, + { "lat": 40.7657497, "lon": -73.9923676 }, + { "lat": 40.7661831, "lon": -73.9934040 }, + { "lat": 40.7663529, "lon": -73.9938100 }, + { "lat": 40.7664092, "lon": -73.9939445 }, + { "lat": 40.7664512, "lon": -73.9940449 }, + { "lat": 40.7664978, "lon": -73.9941564 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 814278019, + "bounds": { + "minlat": 40.7616052, + "minlon": -73.9903162, + "maxlat": 40.7622326, + "maxlon": -73.9898591 + }, + "nodes": [ + 42443532, + 10171089669, + 8646554912, + 42445020 + ], + "geometry": [ + { "lat": 40.7622326, "lon": -73.9898591 }, + { "lat": 40.7621830, "lon": -73.9898952 }, + { "lat": 40.7616706, "lon": -73.9902685 }, + { "lat": 40.7616052, "lon": -73.9903162 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 814278021, + "bounds": { + "minlat": 40.7641124, + "minlon": -73.9913292, + "maxlat": 40.7653085, + "maxlon": -73.9884895 + }, + "nodes": [ + 42445025, + 3463815148, + 10090656448, + 42454042 + ], + "geometry": [ + { "lat": 40.7641124, "lon": -73.9884895 }, + { "lat": 40.7641734, "lon": -73.9886322 }, + { "lat": 40.7652584, "lon": -73.9912103 }, + { "lat": 40.7653085, "lon": -73.9913292 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 814284748, + "bounds": { + "minlat": 40.8160584, + "minlon": -73.9422181, + "maxlat": 40.8171915, + "maxlon": -73.9395348 + }, + "nodes": [ + 2141026542, + 8758345320, + 12042558392, + 12042558393, + 9557110358, + 3099327976 + ], + "geometry": [ + { "lat": 40.8171915, "lon": -73.9422181 }, + { "lat": 40.8171405, "lon": -73.9420989 }, + { "lat": 40.8167875, "lon": -73.9412624 }, + { "lat": 40.8164059, "lon": -73.9403583 }, + { "lat": 40.8161001, "lon": -73.9396337 }, + { "lat": 40.8160584, "lon": -73.9395348 } + ], + "tags": { + "highway": "residential", + "name": "West 138th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 814334330, + "bounds": { + "minlat": 40.6904560, + "minlon": -73.9320440, + "maxlat": 40.7020020, + "maxlon": -73.9117480 + }, + "nodes": [ + 42479515, + 9744012630, + 7984090577, + 9744012623, + 42484345, + 9744012622, + 9705748046, + 42486712, + 9705748041, + 9705748031, + 42486715, + 9705748036, + 9743987289, + 42486716, + 9743987288, + 42486718, + 6252542701, + 42486722, + 42486724, + 9753035689, + 42486727, + 42486728, + 42477894, + 42477862, + 42486735, + 9796891726, + 42486739, + 42486742, + 9796891718, + 10219770215, + 42486743, + 10219770214, + 9795578720, + 42486746, + 9795578718, + 9795578716, + 42486749, + 9795578714, + 9795578694, + 42471586, + 9795578692, + 9795578680, + 42486754, + 9795578678, + 9799250782, + 42486759, + 9799250752, + 9799250764, + 42477543, + 9799250762, + 9799250703, + 42486764, + 10221597064, + 9799250689, + 42486769, + 9799250687, + 9799250720, + 42486774, + 9799250722, + 9799250737, + 42486778, + 9799250735, + 9795578742, + 42486781, + 9795578744, + 9795578760, + 42486693, + 9795578758, + 9795578862, + 42486785, + 9795578864, + 9795578879, + 42479004, + 9795578877, + 9795578906, + 42486789, + 9795578904, + 9235919579, + 42486791, + 9235919575, + 10221597106, + 42486793 + ], + "geometry": [ + { "lat": 40.7020020, "lon": -73.9320440 }, + { "lat": 40.7019670, "lon": -73.9319827 }, + { "lat": 40.7017441, "lon": -73.9315913 }, + { "lat": 40.7016128, "lon": -73.9313598 }, + { "lat": 40.7015737, "lon": -73.9312911 }, + { "lat": 40.7015401, "lon": -73.9312321 }, + { "lat": 40.7011805, "lon": -73.9306005 }, + { "lat": 40.7011453, "lon": -73.9305388 }, + { "lat": 40.7011199, "lon": -73.9304942 }, + { "lat": 40.7007646, "lon": -73.9298701 }, + { "lat": 40.7007180, "lon": -73.9297870 }, + { "lat": 40.7006818, "lon": -73.9297232 }, + { "lat": 40.7003315, "lon": -73.9291078 }, + { "lat": 40.7002900, "lon": -73.9290350 }, + { "lat": 40.7002550, "lon": -73.9289737 }, + { "lat": 40.6998610, "lon": -73.9282830 }, + { "lat": 40.6998401, "lon": -73.9282476 }, + { "lat": 40.6995850, "lon": -73.9277970 }, + { "lat": 40.6994390, "lon": -73.9275320 }, + { "lat": 40.6992068, "lon": -73.9271321 }, + { "lat": 40.6991590, "lon": -73.9270490 }, + { "lat": 40.6990150, "lon": -73.9267820 }, + { "lat": 40.6987380, "lon": -73.9263050 }, + { "lat": 40.6985800, "lon": -73.9260240 }, + { "lat": 40.6983100, "lon": -73.9255640 }, + { "lat": 40.6982061, "lon": -73.9253610 }, + { "lat": 40.6981652, "lon": -73.9252738 }, + { "lat": 40.6981006, "lon": -73.9251631 }, + { "lat": 40.6980444, "lon": -73.9250677 }, + { "lat": 40.6977724, "lon": -73.9246058 }, + { "lat": 40.6977309, "lon": -73.9245353 }, + { "lat": 40.6976910, "lon": -73.9244652 }, + { "lat": 40.6973406, "lon": -73.9238492 }, + { "lat": 40.6972990, "lon": -73.9237760 }, + { "lat": 40.6972646, "lon": -73.9237156 }, + { "lat": 40.6969137, "lon": -73.9230999 }, + { "lat": 40.6968710, "lon": -73.9230250 }, + { "lat": 40.6968344, "lon": -73.9229606 }, + { "lat": 40.6964851, "lon": -73.9223452 }, + { "lat": 40.6964430, "lon": -73.9222710 }, + { "lat": 40.6964096, "lon": -73.9222124 }, + { "lat": 40.6960569, "lon": -73.9215935 }, + { "lat": 40.6960150, "lon": -73.9215200 }, + { "lat": 40.6959811, "lon": -73.9214603 }, + { "lat": 40.6956298, "lon": -73.9208423 }, + { "lat": 40.6955870, "lon": -73.9207670 }, + { "lat": 40.6955522, "lon": -73.9207058 }, + { "lat": 40.6952019, "lon": -73.9200900 }, + { "lat": 40.6951570, "lon": -73.9200110 }, + { "lat": 40.6951198, "lon": -73.9199463 }, + { "lat": 40.6947732, "lon": -73.9193444 }, + { "lat": 40.6947310, "lon": -73.9192710 }, + { "lat": 40.6946948, "lon": -73.9192067 }, + { "lat": 40.6943447, "lon": -73.9185844 }, + { "lat": 40.6943040, "lon": -73.9185120 }, + { "lat": 40.6942694, "lon": -73.9184512 }, + { "lat": 40.6939207, "lon": -73.9178379 }, + { "lat": 40.6938770, "lon": -73.9177610 }, + { "lat": 40.6938403, "lon": -73.9176966 }, + { "lat": 40.6934928, "lon": -73.9170860 }, + { "lat": 40.6934490, "lon": -73.9170090 }, + { "lat": 40.6934175, "lon": -73.9169536 }, + { "lat": 40.6930665, "lon": -73.9163353 }, + { "lat": 40.6930220, "lon": -73.9162570 }, + { "lat": 40.6929885, "lon": -73.9161982 }, + { "lat": 40.6926383, "lon": -73.9155828 }, + { "lat": 40.6925940, "lon": -73.9155050 }, + { "lat": 40.6925624, "lon": -73.9154496 }, + { "lat": 40.6922095, "lon": -73.9148303 }, + { "lat": 40.6921660, "lon": -73.9147540 }, + { "lat": 40.6921327, "lon": -73.9146957 }, + { "lat": 40.6917809, "lon": -73.9140790 }, + { "lat": 40.6917370, "lon": -73.9140020 }, + { "lat": 40.6917067, "lon": -73.9139486 }, + { "lat": 40.6913536, "lon": -73.9133267 }, + { "lat": 40.6913100, "lon": -73.9132500 }, + { "lat": 40.6912777, "lon": -73.9131933 }, + { "lat": 40.6909282, "lon": -73.9125793 }, + { "lat": 40.6908830, "lon": -73.9125000 }, + { "lat": 40.6908488, "lon": -73.9124398 }, + { "lat": 40.6904984, "lon": -73.9118227 }, + { "lat": 40.6904560, "lon": -73.9117480 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Central Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Central", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 814334331, + "bounds": { + "minlat": 40.7008635, + "minlon": -73.9331617, + "maxlat": 40.7020020, + "maxlon": -73.9320440 + }, + "nodes": [ + 42479515, + 9744012629, + 8228286030, + 9743987309, + 42479511 + ], + "geometry": [ + { "lat": 40.7020020, "lon": -73.9320440 }, + { "lat": 40.7019458, "lon": -73.9320977 }, + { "lat": 40.7015279, "lon": -73.9324979 }, + { "lat": 40.7009034, "lon": -73.9330924 }, + { "lat": 40.7008635, "lon": -73.9331617 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Noll Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Noll", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 814433531, + "bounds": { + "minlat": 40.7513407, + "minlon": -73.9354122, + "maxlat": 40.7516147, + "maxlon": -73.9351656 + }, + "nodes": [ + 7607521053, + 8315005318, + 7607521054, + 7607521055 + ], + "geometry": [ + { "lat": 40.7513407, "lon": -73.9354122 }, + { "lat": 40.7513890, "lon": -73.9353667 }, + { "lat": 40.7514043, "lon": -73.9353523 }, + { "lat": 40.7516147, "lon": -73.9351656 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 814464724, + "bounds": { + "minlat": 40.8206916, + "minlon": -73.9914094, + "maxlat": 40.8207913, + "maxlon": -73.9911153 + }, + "nodes": [ + 7607890614, + 13524700366, + 7607890615, + 7607890616, + 7607890617 + ], + "geometry": [ + { "lat": 40.8207913, "lon": -73.9914094 }, + { "lat": 40.8207330, "lon": -73.9913061 }, + { "lat": 40.8206916, "lon": -73.9912329 }, + { "lat": 40.8207771, "lon": -73.9911624 }, + { "lat": 40.8207549, "lon": -73.9911153 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814469982, + "bounds": { + "minlat": 40.8200243, + "minlon": -73.9918438, + "maxlat": 40.8202463, + "maxlon": -73.9915149 + }, + "nodes": [ + 7607948243, + 13524700368, + 7607948244, + 7607948245, + 7607948246 + ], + "geometry": [ + { "lat": 40.8202463, "lon": -73.9918438 }, + { "lat": 40.8201993, "lon": -73.9917411 }, + { "lat": 40.8201855, "lon": -73.9917109 }, + { "lat": 40.8200800, "lon": -73.9915149 }, + { "lat": 40.8200243, "lon": -73.9915673 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814550423, + "bounds": { + "minlat": 40.8802862, + "minlon": -73.9791993, + "maxlat": 40.8805071, + "maxlon": -73.9787514 + }, + "nodes": [ + 7608756666, + 13525915066, + 7608756668 + ], + "geometry": [ + { "lat": 40.8805071, "lon": -73.9791993 }, + { "lat": 40.8804709, "lon": -73.9791258 }, + { "lat": 40.8802862, "lon": -73.9787514 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814612602, + "bounds": { + "minlat": 40.7359015, + "minlon": -73.9852920, + "maxlat": 40.7388377, + "maxlon": -73.9831493 + }, + "nodes": [ + 12183286730, + 12183286731, + 10172843054, + 42449893, + 10172843050, + 12183286733, + 12181309642, + 4132605205, + 42439170, + 4132605206, + 12181309643, + 12181309696, + 4132605215, + 390519635, + 4132605231, + 12181309697, + 12183286735, + 4132605267, + 42440326, + 4132605269, + 12183286736, + 12183286739, + 4132605270, + 42448701 + ], + "geometry": [ + { "lat": 40.7359015, "lon": -73.9852920 }, + { "lat": 40.7362812, "lon": -73.9850161 }, + { "lat": 40.7363229, "lon": -73.9849858 }, + { "lat": 40.7363822, "lon": -73.9849431 }, + { "lat": 40.7364404, "lon": -73.9849004 }, + { "lat": 40.7364840, "lon": -73.9848687 }, + { "lat": 40.7368688, "lon": -73.9845847 }, + { "lat": 40.7369141, "lon": -73.9845519 }, + { "lat": 40.7369675, "lon": -73.9845133 }, + { "lat": 40.7370263, "lon": -73.9844707 }, + { "lat": 40.7370656, "lon": -73.9844423 }, + { "lat": 40.7374500, "lon": -73.9841609 }, + { "lat": 40.7374980, "lon": -73.9841264 }, + { "lat": 40.7375568, "lon": -73.9840840 }, + { "lat": 40.7376108, "lon": -73.9840452 }, + { "lat": 40.7376553, "lon": -73.9840131 }, + { "lat": 40.7380755, "lon": -73.9837059 }, + { "lat": 40.7381127, "lon": -73.9836791 }, + { "lat": 40.7381714, "lon": -73.9836359 }, + { "lat": 40.7382212, "lon": -73.9836012 }, + { "lat": 40.7382699, "lon": -73.9835663 }, + { "lat": 40.7386899, "lon": -73.9832582 }, + { "lat": 40.7387350, "lon": -73.9832250 }, + { "lat": 40.7388377, "lon": -73.9831493 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "21", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 814612603, + "bounds": { + "minlat": 40.7340120, + "minlon": -73.9862217, + "maxlat": 40.7346235, + "maxlon": -73.9847730 + }, + "nodes": [ + 42449890, + 9507816947, + 9558758494, + 4191917276, + 42455465 + ], + "geometry": [ + { "lat": 40.7346235, "lon": -73.9862217 }, + { "lat": 40.7345631, "lon": -73.9860826 }, + { "lat": 40.7340636, "lon": -73.9848957 }, + { "lat": 40.7340407, "lon": -73.9848412 }, + { "lat": 40.7340120, "lon": -73.9847730 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 07:30-15:30)", + "name": "East 16th Street", + "name:ru": "Восточная 16-я стрит", + "name_1": "East 16 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 814636121, + "bounds": { + "minlat": 40.7256160, + "minlon": -73.9444980, + "maxlat": 40.7262390, + "maxlon": -73.9379420 + }, + "nodes": [ + 42472689, + 6732842576, + 8672287444, + 9929559000, + 42479378, + 9929559001, + 6732842580, + 42479382, + 6732842582, + 6732842584, + 42479388, + 6732845686, + 9929559012, + 42479397, + 9929559011, + 9929587919, + 42479402, + 9929587918, + 11163164199, + 11404288871, + 11163164200, + 9929587925, + 42479403, + 9929587924, + 9929587930, + 42466853 + ], + "geometry": [ + { "lat": 40.7256160, "lon": -73.9444980 }, + { "lat": 40.7256239, "lon": -73.9444196 }, + { "lat": 40.7256282, "lon": -73.9443755 }, + { "lat": 40.7256997, "lon": -73.9436524 }, + { "lat": 40.7257080, "lon": -73.9435690 }, + { "lat": 40.7257153, "lon": -73.9434886 }, + { "lat": 40.7257851, "lon": -73.9427223 }, + { "lat": 40.7257930, "lon": -73.9426360 }, + { "lat": 40.7258000, "lon": -73.9425600 }, + { "lat": 40.7258729, "lon": -73.9417842 }, + { "lat": 40.7258820, "lon": -73.9416870 }, + { "lat": 40.7258901, "lon": -73.9416023 }, + { "lat": 40.7259647, "lon": -73.9408242 }, + { "lat": 40.7259730, "lon": -73.9407380 }, + { "lat": 40.7259804, "lon": -73.9406609 }, + { "lat": 40.7260536, "lon": -73.9398935 }, + { "lat": 40.7260620, "lon": -73.9398050 }, + { "lat": 40.7260697, "lon": -73.9397251 }, + { "lat": 40.7260846, "lon": -73.9395699 }, + { "lat": 40.7261118, "lon": -73.9392849 }, + { "lat": 40.7261160, "lon": -73.9392412 }, + { "lat": 40.7261427, "lon": -73.9389628 }, + { "lat": 40.7261510, "lon": -73.9388760 }, + { "lat": 40.7261585, "lon": -73.9387967 }, + { "lat": 40.7262305, "lon": -73.9380323 }, + { "lat": 40.7262390, "lon": -73.9379420 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "name": "Nassau Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 814636122, + "bounds": { + "minlat": 40.7256160, + "minlon": -73.9455170, + "maxlat": 40.7317578, + "maxlon": -73.9444980 + }, + "nodes": [ + 42472689, + 6732842575, + 9788947347, + 42472693, + 9788947349, + 9927158590, + 42472696, + 9927158591, + 42472698, + 13515590845, + 9788947299, + 2422186263 + ], + "geometry": [ + { "lat": 40.7256160, "lon": -73.9444980 }, + { "lat": 40.7256967, "lon": -73.9445109 }, + { "lat": 40.7274185, "lon": -73.9447957 }, + { "lat": 40.7274931, "lon": -73.9448080 }, + { "lat": 40.7275497, "lon": -73.9448182 }, + { "lat": 40.7292896, "lon": -73.9451061 }, + { "lat": 40.7293490, "lon": -73.9451160 }, + { "lat": 40.7294259, "lon": -73.9451285 }, + { "lat": 40.7306010, "lon": -73.9453190 }, + { "lat": 40.7316129, "lon": -73.9454895 }, + { "lat": 40.7316605, "lon": -73.9454976 }, + { "lat": 40.7317578, "lon": -73.9455170 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Russell Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 814636123, + "bounds": { + "minlat": 40.7227831, + "minlon": -73.9470065, + "maxlat": 40.7229758, + "maxlon": -73.9453607 + }, + "nodes": [ + 42478902, + 10994894241, + 5482000017, + 9765784217, + 42509202, + 6228788705, + 2987758893 + ], + "geometry": [ + { "lat": 40.7229758, "lon": -73.9453607 }, + { "lat": 40.7229206, "lon": -73.9458321 }, + { "lat": 40.7229048, "lon": -73.9459672 }, + { "lat": 40.7228761, "lon": -73.9462124 }, + { "lat": 40.7228676, "lon": -73.9462848 }, + { "lat": 40.7227952, "lon": -73.9468982 }, + { "lat": 40.7227831, "lon": -73.9470065 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "15 mph", + "maxspeed:type": "sign", + "name": "Driggs Avenue", + "note": "school speed zone", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 814812365, + "bounds": { + "minlat": 40.8196442, + "minlon": -73.9274534, + "maxlat": 40.8199765, + "maxlon": -73.9273024 + }, + "nodes": [ + 7610855254, + 13330101337, + 7610855256, + 7610855255 + ], + "geometry": [ + { "lat": 40.8196442, "lon": -73.9274534 }, + { "lat": 40.8196958, "lon": -73.9274276 }, + { "lat": 40.8197139, "lon": -73.9274185 }, + { "lat": 40.8199765, "lon": -73.9273024 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 814813354, + "bounds": { + "minlat": 40.8064974, + "minlon": -74.0036296, + "maxlat": 40.8067919, + "maxlon": -74.0032799 + }, + "nodes": [ + 7610879144, + 7610879145, + 7610879146, + 7610879147, + 7610879148 + ], + "geometry": [ + { "lat": 40.8067919, "lon": -74.0035616 }, + { "lat": 40.8066917, "lon": -74.0036296 }, + { "lat": 40.8066564, "lon": -74.0036260 }, + { "lat": 40.8066280, "lon": -74.0035795 }, + { "lat": 40.8064974, "lon": -74.0032799 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814813649, + "bounds": { + "minlat": 40.8125067, + "minlon": -73.9995880, + "maxlat": 40.8126402, + "maxlon": -73.9992583 + }, + "nodes": [ + 7610882312, + 13523912763, + 7610882313 + ], + "geometry": [ + { "lat": 40.8125067, "lon": -73.9992583 }, + { "lat": 40.8125320, "lon": -73.9993207 }, + { "lat": 40.8126402, "lon": -73.9995880 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 814813650, + "bounds": { + "minlat": 40.8126485, + "minlon": -73.9994827, + "maxlat": 40.8128158, + "maxlon": -73.9991422 + }, + "nodes": [ + 7610882314, + 13523912764, + 7610882315 + ], + "geometry": [ + { "lat": 40.8126485, "lon": -73.9991422 }, + { "lat": 40.8126809, "lon": -73.9992081 }, + { "lat": 40.8128158, "lon": -73.9994827 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814815734, + "bounds": { + "minlat": 40.8161946, + "minlon": -73.9913312, + "maxlat": 40.8165423, + "maxlon": -73.9911595 + }, + "nodes": [ + 7610899334, + 7610899335, + 7610899336 + ], + "geometry": [ + { "lat": 40.8161946, "lon": -73.9913312 }, + { "lat": 40.8163876, "lon": -73.9912157 }, + { "lat": 40.8165423, "lon": -73.9911595 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814828740, + "bounds": { + "minlat": 40.7577315, + "minlon": -73.9432175, + "maxlat": 40.7579196, + "maxlon": -73.9429062 + }, + "nodes": [ + 7611008711, + 8334074880, + 7611008713, + 7611008712 + ], + "geometry": [ + { "lat": 40.7579196, "lon": -73.9432175 }, + { "lat": 40.7578833, "lon": -73.9431574 }, + { "lat": 40.7578609, "lon": -73.9431204 }, + { "lat": 40.7577315, "lon": -73.9429062 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 814840327, + "bounds": { + "minlat": 40.7229840, + "minlon": -73.9886268, + "maxlat": 40.7230637, + "maxlon": -73.9885643 + }, + "nodes": [ + 5798966629, + 4241748518 + ], + "geometry": [ + { "lat": 40.7229840, "lon": -73.9886268 }, + { "lat": 40.7230637, "lon": -73.9885643 } + ], + "tags": { + "alt_name:ko": "1번가", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 814840328, + "bounds": { + "minlat": 40.7223371, + "minlon": -73.9887515, + "maxlat": 40.7227513, + "maxlon": -73.9886041 + }, + "nodes": [ + 7611187236, + 8821475417, + 7480301867 + ], + "geometry": [ + { "lat": 40.7223371, "lon": -73.9887515 }, + { "lat": 40.7226990, "lon": -73.9886176 }, + { "lat": 40.7227513, "lon": -73.9886041 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through||right", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 814841667, + "bounds": { + "minlat": 40.7130782, + "minlon": -74.0008469, + "maxlat": 40.7132065, + "maxlon": -74.0008317 + }, + "nodes": [ + 7476968855, + 7476968856, + 7498248235 + ], + "geometry": [ + { "lat": 40.7130782, "lon": -74.0008317 }, + { "lat": 40.7131876, "lon": -74.0008384 }, + { "lat": 40.7132065, "lon": -74.0008469 } + ], + "tags": { + "access": "no", + "bicycle": "dismount", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "yes", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 814841668, + "bounds": { + "minlat": 40.7130104, + "minlon": -74.0008317, + "maxlat": 40.7130782, + "maxlon": -74.0008309 + }, + "nodes": [ + 7476968854, + 7611215247, + 7476968855 + ], + "geometry": [ + { "lat": 40.7130104, "lon": -74.0008309 }, + { "lat": 40.7130431, "lon": -74.0008313 }, + { "lat": 40.7130782, "lon": -74.0008317 } + ], + "tags": { + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "lanes": "2", + "motor_vehicle": "private", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 814848068, + "bounds": { + "minlat": 40.7216564, + "minlon": -73.9489338, + "maxlat": 40.7217003, + "maxlon": -73.9485189 + }, + "nodes": [ + 7611228951, + 11762478208, + 7611228953, + 7611228952 + ], + "geometry": [ + { "lat": 40.7216564, "lon": -73.9489338 }, + { "lat": 40.7216637, "lon": -73.9488650 }, + { "lat": 40.7216680, "lon": -73.9488244 }, + { "lat": 40.7217003, "lon": -73.9485189 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 814941350, + "bounds": { + "minlat": 40.8166503, + "minlon": -74.0098754, + "maxlat": 40.8179057, + "maxlon": -74.0089102 + }, + "nodes": [ + 7612325101, + 7612325102, + 7612325103, + 7612325104 + ], + "geometry": [ + { "lat": 40.8179057, "lon": -74.0092336 }, + { "lat": 40.8175941, "lon": -74.0094777 }, + { "lat": 40.8171399, "lon": -74.0098754 }, + { "lat": 40.8166503, "lon": -74.0089102 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814941351, + "bounds": { + "minlat": 40.8180522, + "minlon": -74.0095038, + "maxlat": 40.8184839, + "maxlon": -74.0090741 + }, + "nodes": [ + 7612325105, + 7612325106, + 7612325107, + 7612325108, + 7612325109, + 7612325110, + 10021423320, + 7612325111, + 7612325112, + 7612325107 + ], + "geometry": [ + { "lat": 40.8180522, "lon": -74.0095038 }, + { "lat": 40.8181067, "lon": -74.0094624 }, + { "lat": 40.8182097, "lon": -74.0093937 }, + { "lat": 40.8182719, "lon": -74.0094988 }, + { "lat": 40.8184045, "lon": -74.0093826 }, + { "lat": 40.8184839, "lon": -74.0093039 }, + { "lat": 40.8183873, "lon": -74.0091202 }, + { "lat": 40.8183631, "lon": -74.0090741 }, + { "lat": 40.8181809, "lon": -74.0092699 }, + { "lat": 40.8182097, "lon": -74.0093937 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 814941352, + "bounds": { + "minlat": 40.8142543, + "minlon": -74.0134929, + "maxlat": 40.8159002, + "maxlon": -74.0102423 + }, + "nodes": [ + 7612325113, + 10926141774, + 7612325114, + 10926141766, + 7612325115, + 7612325116, + 7612325117, + 7612325118, + 10926141768, + 10926141769, + 10926141773, + 10926141770, + 10926141771, + 10926141772, + 10926141767, + 10926141766 + ], + "geometry": [ + { "lat": 40.8152254, "lon": -74.0134929 }, + { "lat": 40.8153882, "lon": -74.0133286 }, + { "lat": 40.8154289, "lon": -74.0132875 }, + { "lat": 40.8153523, "lon": -74.0131378 }, + { "lat": 40.8149847, "lon": -74.0124188 }, + { "lat": 40.8148809, "lon": -74.0122032 }, + { "lat": 40.8149319, "lon": -74.0119370 }, + { "lat": 40.8142543, "lon": -74.0105448 }, + { "lat": 40.8146039, "lon": -74.0102423 }, + { "lat": 40.8147934, "lon": -74.0106041 }, + { "lat": 40.8149085, "lon": -74.0107159 }, + { "lat": 40.8150135, "lon": -74.0107217 }, + { "lat": 40.8158062, "lon": -74.0122171 }, + { "lat": 40.8158195, "lon": -74.0124823 }, + { "lat": 40.8159002, "lon": -74.0126208 }, + { "lat": 40.8153523, "lon": -74.0131378 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 814941353, + "bounds": { + "minlat": 40.8133786, + "minlon": -74.0109850, + "maxlat": 40.8137574, + "maxlon": -74.0107999 + }, + "nodes": [ + 7612325125, + 7612325124, + 7612325123, + 7612325122, + 7612325121, + 7612325120 + ], + "geometry": [ + { "lat": 40.8133786, "lon": -74.0109850 }, + { "lat": 40.8134677, "lon": -74.0109083 }, + { "lat": 40.8135563, "lon": -74.0108313 }, + { "lat": 40.8136166, "lon": -74.0108130 }, + { "lat": 40.8136671, "lon": -74.0108871 }, + { "lat": 40.8137574, "lon": -74.0107999 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 814941354, + "bounds": { + "minlat": 40.8132830, + "minlon": -74.0109850, + "maxlat": 40.8133786, + "maxlon": -74.0107614 + }, + "nodes": [ + 7612325127, + 12456262126, + 7612325125 + ], + "geometry": [ + { "lat": 40.8132830, "lon": -74.0107614 }, + { "lat": 40.8133381, "lon": -74.0108902 }, + { "lat": 40.8133786, "lon": -74.0109850 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 815019389, + "bounds": { + "minlat": 40.7176751, + "minlon": -73.9866412, + "maxlat": 40.7179207, + "maxlon": -73.9859886 + }, + "nodes": [ + 486867548, + 7476387562, + 12195869750, + 7612925053 + ], + "geometry": [ + { "lat": 40.7179207, "lon": -73.9866412 }, + { "lat": 40.7178912, "lon": -73.9865590 }, + { "lat": 40.7178367, "lon": -73.9864131 }, + { "lat": 40.7176751, "lon": -73.9859886 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "moped": "no", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 815019390, + "bounds": { + "minlat": 40.7175333, + "minlon": -73.9859886, + "maxlat": 40.7176751, + "maxlon": -73.9858645 + }, + "nodes": [ + 7612925053, + 8310245543, + 7476387556 + ], + "geometry": [ + { "lat": 40.7176751, "lon": -73.9859886 }, + { "lat": 40.7175975, "lon": -73.9859207 }, + { "lat": 40.7175333, "lon": -73.9858645 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 815069676, + "bounds": { + "minlat": 40.8172549, + "minlon": -73.9899659, + "maxlat": 40.8173191, + "maxlon": -73.9897222 + }, + "nodes": [ + 7613378198, + 7613378199 + ], + "geometry": [ + { "lat": 40.8173191, "lon": -73.9899659 }, + { "lat": 40.8172549, "lon": -73.9897222 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 815069683, + "bounds": { + "minlat": 40.8163545, + "minlon": -73.9899275, + "maxlat": 40.8165700, + "maxlon": -73.9897779 + }, + "nodes": [ + 7613378237, + 7613378239, + 7613378238 + ], + "geometry": [ + { "lat": 40.8163545, "lon": -73.9899275 }, + { "lat": 40.8165426, "lon": -73.9897969 }, + { "lat": 40.8165700, "lon": -73.9897779 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 815069684, + "bounds": { + "minlat": 40.8165426, + "minlon": -73.9902558, + "maxlat": 40.8167628, + "maxlon": -73.9897969 + }, + "nodes": [ + 7613378239, + 7613378240, + 7613378241, + 7613378242 + ], + "geometry": [ + { "lat": 40.8165426, "lon": -73.9897969 }, + { "lat": 40.8166718, "lon": -73.9900662 }, + { "lat": 40.8167094, "lon": -73.9901446 }, + { "lat": 40.8167628, "lon": -73.9902558 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 815158226, + "bounds": { + "minlat": 40.8144814, + "minlon": -73.9912840, + "maxlat": 40.8147611, + "maxlon": -73.9909315 + }, + "nodes": [ + 7614292246, + 7614292247, + 7614292248 + ], + "geometry": [ + { "lat": 40.8144814, "lon": -73.9910236 }, + { "lat": 40.8146593, "lon": -73.9909315 }, + { "lat": 40.8147611, "lon": -73.9912840 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 815158250, + "bounds": { + "minlat": 40.8142496, + "minlon": -73.9914938, + "maxlat": 40.8143271, + "maxlon": -73.9912052 + }, + "nodes": [ + 7614292418, + 7614292419 + ], + "geometry": [ + { "lat": 40.8143271, "lon": -73.9914938 }, + { "lat": 40.8142496, "lon": -73.9912052 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 815158254, + "bounds": { + "minlat": 40.8142242, + "minlon": -73.9909598, + "maxlat": 40.8144313, + "maxlon": -73.9908599 + }, + "nodes": [ + 7614292436, + 7614292437 + ], + "geometry": [ + { "lat": 40.8144313, "lon": -73.9908599 }, + { "lat": 40.8142242, "lon": -73.9909598 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 815158255, + "bounds": { + "minlat": 40.8135493, + "minlon": -73.9906493, + "maxlat": 40.8136114, + "maxlon": -73.9902628 + }, + "nodes": [ + 7614292438, + 7614292439, + 7614292440 + ], + "geometry": [ + { "lat": 40.8135493, "lon": -73.9902628 }, + { "lat": 40.8135508, "lon": -73.9904071 }, + { "lat": 40.8136114, "lon": -73.9906493 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 815541793, + "bounds": { + "minlat": 40.8154172, + "minlon": -73.9537893, + "maxlat": 40.8156746, + "maxlon": -73.9536137 + }, + "nodes": [ + 7180979635, + 10171276010, + 7616666748 + ], + "geometry": [ + { "lat": 40.8154172, "lon": -73.9537893 }, + { "lat": 40.8154814, "lon": -73.9537455 }, + { "lat": 40.8156746, "lon": -73.9536137 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815541794, + "bounds": { + "minlat": 40.8156746, + "minlon": -73.9537920, + "maxlat": 40.8157507, + "maxlon": -73.9536137 + }, + "nodes": [ + 7616666749, + 7616666748 + ], + "geometry": [ + { "lat": 40.8157507, "lon": -73.9537920 }, + { "lat": 40.8156746, "lon": -73.9536137 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815541795, + "bounds": { + "minlat": 40.8155924, + "minlon": -73.9539020, + "maxlat": 40.8157507, + "maxlon": -73.9537920 + }, + "nodes": [ + 7616666749, + 7616666750 + ], + "geometry": [ + { "lat": 40.8157507, "lon": -73.9537920 }, + { "lat": 40.8155924, "lon": -73.9539020 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815541797, + "bounds": { + "minlat": 40.8174393, + "minlon": -73.9555907, + "maxlat": 40.8184840, + "maxlon": -73.9552918 + }, + "nodes": [ + 595313982, + 10302073274, + 10302073267, + 8238946739, + 7124965419, + 10129081639, + 42434101 + ], + "geometry": [ + { "lat": 40.8174393, "lon": -73.9555907 }, + { "lat": 40.8175049, "lon": -73.9555723 }, + { "lat": 40.8178319, "lon": -73.9554806 }, + { "lat": 40.8183468, "lon": -73.9553361 }, + { "lat": 40.8183812, "lon": -73.9553265 }, + { "lat": 40.8184090, "lon": -73.9553171 }, + { "lat": 40.8184840, "lon": -73.9552918 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Old Broadway", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 815541798, + "bounds": { + "minlat": 40.8171514, + "minlon": -73.9557098, + "maxlat": 40.8172531, + "maxlon": -73.9554335 + }, + "nodes": [ + 7616666755, + 10054975854, + 7616666756 + ], + "geometry": [ + { "lat": 40.8172531, "lon": -73.9557098 }, + { "lat": 40.8172116, "lon": -73.9555971 }, + { "lat": 40.8171514, "lon": -73.9554335 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815541799, + "bounds": { + "minlat": 40.8171514, + "minlon": -73.9554335, + "maxlat": 40.8174310, + "maxlon": -73.9552666 + }, + "nodes": [ + 7616666757, + 7616666756 + ], + "geometry": [ + { "lat": 40.8174310, "lon": -73.9552666 }, + { "lat": 40.8171514, "lon": -73.9554335 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815541802, + "bounds": { + "minlat": 40.8187841, + "minlon": -73.9606497, + "maxlat": 40.8191395, + "maxlon": -73.9598117 + }, + "nodes": [ + 7616666766, + 10128785462, + 10128785465, + 7616666776, + 7616666768, + 10128799315, + 42438228 + ], + "geometry": [ + { "lat": 40.8191395, "lon": -73.9606497 }, + { "lat": 40.8191251, "lon": -73.9606151 }, + { "lat": 40.8191223, "lon": -73.9606085 }, + { "lat": 40.8191212, "lon": -73.9606058 }, + { "lat": 40.8188727, "lon": -73.9600135 }, + { "lat": 40.8188236, "lon": -73.9599017 }, + { "lat": 40.8187841, "lon": -73.9598117 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815541803, + "bounds": { + "minlat": 40.8187061, + "minlon": -73.9601445, + "maxlat": 40.8191354, + "maxlon": -73.9598093 + }, + "nodes": [ + 7616666767, + 7616666773, + 7616666768, + 7616666770 + ], + "geometry": [ + { "lat": 40.8191354, "lon": -73.9598093 }, + { "lat": 40.8190104, "lon": -73.9599064 }, + { "lat": 40.8188727, "lon": -73.9600135 }, + { "lat": 40.8187061, "lon": -73.9601445 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815541804, + "bounds": { + "minlat": 40.8186157, + "minlon": -73.9608459, + "maxlat": 40.8188553, + "maxlon": -73.9602760 + }, + "nodes": [ + 7616666775, + 7616666769 + ], + "geometry": [ + { "lat": 40.8188553, "lon": -73.9608459 }, + { "lat": 40.8186157, "lon": -73.9602760 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815541805, + "bounds": { + "minlat": 40.8186157, + "minlon": -73.9602760, + "maxlat": 40.8187061, + "maxlon": -73.9601445 + }, + "nodes": [ + 7616666769, + 7616666770 + ], + "geometry": [ + { "lat": 40.8186157, "lon": -73.9602760 }, + { "lat": 40.8187061, "lon": -73.9601445 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815541806, + "bounds": { + "minlat": 40.8191354, + "minlon": -73.9603766, + "maxlat": 40.8193749, + "maxlon": -73.9598093 + }, + "nodes": [ + 7616666771, + 7616666767 + ], + "geometry": [ + { "lat": 40.8193749, "lon": -73.9603766 }, + { "lat": 40.8191354, "lon": -73.9598093 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815541807, + "bounds": { + "minlat": 40.8190104, + "minlon": -73.9604856, + "maxlat": 40.8192542, + "maxlon": -73.9599064 + }, + "nodes": [ + 7616666772, + 7616666773 + ], + "geometry": [ + { "lat": 40.8192542, "lon": -73.9604856 }, + { "lat": 40.8190104, "lon": -73.9599064 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815541808, + "bounds": { + "minlat": 40.8187061, + "minlon": -73.9607497, + "maxlat": 40.8189618, + "maxlon": -73.9601445 + }, + "nodes": [ + 7616666774, + 7616666770 + ], + "geometry": [ + { "lat": 40.8189618, "lon": -73.9607497 }, + { "lat": 40.8187061, "lon": -73.9601445 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815541809, + "bounds": { + "minlat": 40.8188553, + "minlon": -73.9608459, + "maxlat": 40.8193749, + "maxlon": -73.9603766 + }, + "nodes": [ + 7616666771, + 7616666772, + 7616666776, + 7616666774, + 7616666775 + ], + "geometry": [ + { "lat": 40.8193749, "lon": -73.9603766 }, + { "lat": 40.8192542, "lon": -73.9604856 }, + { "lat": 40.8191212, "lon": -73.9606058 }, + { "lat": 40.8189618, "lon": -73.9607497 }, + { "lat": 40.8188553, "lon": -73.9608459 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815544993, + "bounds": { + "minlat": 40.8159022, + "minlon": -73.9608250, + "maxlat": 40.8175360, + "maxlon": -73.9604858 + }, + "nodes": [ + 7616688918, + 10049860708, + 7732571894, + 7732571895, + 7732571896, + 7732571891, + 7732571893, + 7732571890, + 7732571892, + 7732571889, + 7732571897, + 7732571898, + 7732571899, + 7732571888, + 7732571900, + 7732571901, + 7616688922, + 10049857025, + 7732571904, + 42441077 + ], + "geometry": [ + { "lat": 40.8175360, "lon": -73.9607211 }, + { "lat": 40.8174716, "lon": -73.9607503 }, + { "lat": 40.8174543, "lon": -73.9607581 }, + { "lat": 40.8173822, "lon": -73.9607841 }, + { "lat": 40.8172946, "lon": -73.9608088 }, + { "lat": 40.8172316, "lon": -73.9608205 }, + { "lat": 40.8171407, "lon": -73.9608250 }, + { "lat": 40.8170596, "lon": -73.9608109 }, + { "lat": 40.8169943, "lon": -73.9607875 }, + { "lat": 40.8167025, "lon": -73.9606172 }, + { "lat": 40.8166087, "lon": -73.9605701 }, + { "lat": 40.8165410, "lon": -73.9605397 }, + { "lat": 40.8164739, "lon": -73.9605207 }, + { "lat": 40.8163984, "lon": -73.9605017 }, + { "lat": 40.8163140, "lon": -73.9604885 }, + { "lat": 40.8162547, "lon": -73.9604858 }, + { "lat": 40.8161483, "lon": -73.9604932 }, + { "lat": 40.8160055, "lon": -73.9605270 }, + { "lat": 40.8159673, "lon": -73.9605373 }, + { "lat": 40.8159022, "lon": -73.9605612 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "incline": "up", + "lane_markings": "no", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk": "left", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 815546101, + "bounds": { + "minlat": 40.8155460, + "minlon": -73.9569253, + "maxlat": 40.8157920, + "maxlon": -73.9566127 + }, + "nodes": [ + 42446218, + 10055110508, + 42451540 + ], + "geometry": [ + { "lat": 40.8155460, "lon": -73.9569253 }, + { "lat": 40.8155976, "lon": -73.9568278 }, + { "lat": 40.8157920, "lon": -73.9566127 } + ], + "tags": { + "highway": "residential", + "name": "Old Broadway", + "oneway": "yes", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 815546102, + "bounds": { + "minlat": 40.8161849, + "minlon": -73.9577315, + "maxlat": 40.8162833, + "maxlon": -73.9574840 + }, + "nodes": [ + 7260975615, + 10050036785, + 561035344 + ], + "geometry": [ + { "lat": 40.8161849, "lon": -73.9574840 }, + { "lat": 40.8162418, "lon": -73.9576237 }, + { "lat": 40.8162833, "lon": -73.9577315 } + ], + "tags": { + "highway": "residential", + "name": "West 126th Street", + "name_1": "West 126 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 815563981, + "bounds": { + "minlat": 40.8153727, + "minlon": -73.9917076, + "maxlat": 40.8158391, + "maxlon": -73.9909789 + }, + "nodes": [ + 7616856215, + 7616856216, + 7616856217, + 7616856218 + ], + "geometry": [ + { "lat": 40.8153727, "lon": -73.9909789 }, + { "lat": 40.8156875, "lon": -73.9915188 }, + { "lat": 40.8157175, "lon": -73.9914879 }, + { "lat": 40.8158391, "lon": -73.9917076 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 815728793, + "bounds": { + "minlat": 40.8030995, + "minlon": -73.9631748, + "maxlat": 40.8039267, + "maxlon": -73.9615761 + }, + "nodes": [ + 7618358570, + 11842255544, + 8251054450, + 7618358579, + 7618358572, + 7618358581, + 7618358571 + ], + "geometry": [ + { "lat": 40.8039267, "lon": -73.9631748 }, + { "lat": 40.8038759, "lon": -73.9630803 }, + { "lat": 40.8038613, "lon": -73.9630532 }, + { "lat": 40.8033605, "lon": -73.9621337 }, + { "lat": 40.8032521, "lon": -73.9619343 }, + { "lat": 40.8032206, "lon": -73.9618605 }, + { "lat": 40.8030995, "lon": -73.9615761 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 815728794, + "bounds": { + "minlat": 40.8031409, + "minlon": -73.9636752, + "maxlat": 40.8032364, + "maxlon": -73.9633872 + }, + "nodes": [ + 7618358575, + 8379863195, + 6839169599, + 11762193076, + 7618358576 + ], + "geometry": [ + { "lat": 40.8032364, "lon": -73.9636752 }, + { "lat": 40.8031977, "lon": -73.9635786 }, + { "lat": 40.8031851, "lon": -73.9635475 }, + { "lat": 40.8031409, "lon": -73.9634365 }, + { "lat": 40.8031432, "lon": -73.9633872 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 815728795, + "bounds": { + "minlat": 40.8025209, + "minlon": -73.9631888, + "maxlat": 40.8031929, + "maxlon": -73.9615888 + }, + "nodes": [ + 7618358577, + 7618358580, + 7618358582, + 7618358578 + ], + "geometry": [ + { "lat": 40.8031929, "lon": -73.9631888 }, + { "lat": 40.8029003, "lon": -73.9624714 }, + { "lat": 40.8027650, "lon": -73.9621625 }, + { "lat": 40.8025209, "lon": -73.9615888 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 815728796, + "bounds": { + "minlat": 40.8031432, + "minlon": -73.9633872, + "maxlat": 40.8031929, + "maxlon": -73.9631888 + }, + "nodes": [ + 7618358577, + 11762193077, + 7618358576 + ], + "geometry": [ + { "lat": 40.8031929, "lon": -73.9631888 }, + { "lat": 40.8031856, "lon": -73.9632637 }, + { "lat": 40.8031432, "lon": -73.9633872 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 815728799, + "bounds": { + "minlat": 40.8055682, + "minlon": -73.9603984, + "maxlat": 40.8056055, + "maxlon": -73.9603710 + }, + "nodes": [ + 12005607671, + 10171340195, + 13796206800 + ], + "geometry": [ + { "lat": 40.8056055, "lon": -73.9603710 }, + { "lat": 40.8055881, "lon": -73.9603838 }, + { "lat": 40.8055682, "lon": -73.9603984 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 815744212, + "bounds": { + "minlat": 40.8134136, + "minlon": -73.9918667, + "maxlat": 40.8135285, + "maxlon": -73.9914335 + }, + "nodes": [ + 7618565293, + 7618565294 + ], + "geometry": [ + { "lat": 40.8135285, "lon": -73.9918667 }, + { "lat": 40.8134136, "lon": -73.9914335 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 815936373, + "bounds": { + "minlat": 40.8033426, + "minlon": -73.9528149, + "maxlat": 40.8034963, + "maxlon": -73.9527154 + }, + "nodes": [ + 1695379703, + 9150629536, + 10171493828, + 7620445877 + ], + "geometry": [ + { "lat": 40.8034963, "lon": -73.9527154 }, + { "lat": 40.8034621, "lon": -73.9527296 }, + { "lat": 40.8034458, "lon": -73.9527399 }, + { "lat": 40.8033426, "lon": -73.9528149 } + ], + "tags": { + "highway": "tertiary", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 815936374, + "bounds": { + "minlat": 40.8033426, + "minlon": -73.9553696, + "maxlat": 40.8044178, + "maxlon": -73.9528149 + }, + "nodes": [ + 42435763, + 11298975870, + 7620445877 + ], + "geometry": [ + { "lat": 40.8044178, "lon": -73.9553696 }, + { "lat": 40.8043735, "lon": -73.9552643 }, + { "lat": 40.8033426, "lon": -73.9528149 } + ], + "tags": { + "highway": "tertiary", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "sidewalk:both": "separate", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 815944275, + "bounds": { + "minlat": 40.8126263, + "minlon": -73.9926135, + "maxlat": 40.8127689, + "maxlon": -73.9922768 + }, + "nodes": [ + 7620500354, + 7620500355, + 7620500356 + ], + "geometry": [ + { "lat": 40.8126687, "lon": -73.9922768 }, + { "lat": 40.8127689, "lon": -73.9924764 }, + { "lat": 40.8126263, "lon": -73.9926135 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 815945401, + "bounds": { + "minlat": 40.8016421, + "minlon": -73.9519768, + "maxlat": 40.8018675, + "maxlon": -73.9514377 + }, + "nodes": [ + 7620497459, + 7620497460 + ], + "geometry": [ + { "lat": 40.8018675, "lon": -73.9519768 }, + { "lat": 40.8016421, "lon": -73.9514377 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815945402, + "bounds": { + "minlat": 40.8016421, + "minlon": -73.9514377, + "maxlat": 40.8018252, + "maxlon": -73.9513081 + }, + "nodes": [ + 5481882798, + 10168729765, + 7620497460 + ], + "geometry": [ + { "lat": 40.8018252, "lon": -73.9513081 }, + { "lat": 40.8017742, "lon": -73.9513443 }, + { "lat": 40.8016421, "lon": -73.9514377 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815945404, + "bounds": { + "minlat": 40.8017376, + "minlon": -73.9465883, + "maxlat": 40.8019375, + "maxlon": -73.9464488 + }, + "nodes": [ + 7620497465, + 7620497466 + ], + "geometry": [ + { "lat": 40.8019375, "lon": -73.9464488 }, + { "lat": 40.8017376, "lon": -73.9465883 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815945405, + "bounds": { + "minlat": 40.8019375, + "minlon": -73.9466585, + "maxlat": 40.8020254, + "maxlon": -73.9464488 + }, + "nodes": [ + 7474577916, + 7620497465 + ], + "geometry": [ + { "lat": 40.8020254, "lon": -73.9466585 }, + { "lat": 40.8019375, "lon": -73.9464488 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947006, + "bounds": { + "minlat": 40.8009319, + "minlon": -73.9427100, + "maxlat": 40.8013086, + "maxlon": -73.9424423 + }, + "nodes": [ + 7620520351, + 5481978541 + ], + "geometry": [ + { "lat": 40.8013086, "lon": -73.9424423 }, + { "lat": 40.8009319, "lon": -73.9427100 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947007, + "bounds": { + "minlat": 40.8008566, + "minlon": -73.9425313, + "maxlat": 40.8012294, + "maxlon": -73.9422598 + }, + "nodes": [ + 7620520353, + 5481978543 + ], + "geometry": [ + { "lat": 40.8012294, "lon": -73.9422598 }, + { "lat": 40.8008566, "lon": -73.9425313 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947008, + "bounds": { + "minlat": 40.8012294, + "minlon": -73.9424423, + "maxlat": 40.8013086, + "maxlon": -73.9422598 + }, + "nodes": [ + 7620520351, + 7620520353 + ], + "geometry": [ + { "lat": 40.8013086, "lon": -73.9424423 }, + { "lat": 40.8012294, "lon": -73.9422598 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947009, + "bounds": { + "minlat": 40.8007127, + "minlon": -73.9414700, + "maxlat": 40.8010024, + "maxlon": -73.9412587 + }, + "nodes": [ + 5481978540, + 10170646975, + 7620520357, + 7620520354 + ], + "geometry": [ + { "lat": 40.8010024, "lon": -73.9412587 }, + { "lat": 40.8009460, "lon": -73.9413029 }, + { "lat": 40.8008833, "lon": -73.9413532 }, + { "lat": 40.8007127, "lon": -73.9414700 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947010, + "bounds": { + "minlat": 40.8006213, + "minlon": -73.9418924, + "maxlat": 40.8010000, + "maxlon": -73.9416282 + }, + "nodes": [ + 7620520355, + 7620520356 + ], + "geometry": [ + { "lat": 40.8010000, "lon": -73.9416282 }, + { "lat": 40.8006213, "lon": -73.9418924 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947011, + "bounds": { + "minlat": 40.8008833, + "minlon": -73.9416282, + "maxlat": 40.8010000, + "maxlon": -73.9413532 + }, + "nodes": [ + 7620520355, + 5481978532, + 7620520357 + ], + "geometry": [ + { "lat": 40.8010000, "lon": -73.9416282 }, + { "lat": 40.8009474, "lon": -73.9415043 }, + { "lat": 40.8008833, "lon": -73.9413532 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947012, + "bounds": { + "minlat": 40.8005683, + "minlon": -73.9418924, + "maxlat": 40.8006213, + "maxlon": -73.9417702 + }, + "nodes": [ + 7620520356, + 5481978534 + ], + "geometry": [ + { "lat": 40.8006213, "lon": -73.9418924 }, + { "lat": 40.8005683, "lon": -73.9417702 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947014, + "bounds": { + "minlat": 40.8015970, + "minlon": -73.9421649, + "maxlat": 40.8019309, + "maxlon": -73.9419313 + }, + "nodes": [ + 7620520363, + 7620520364 + ], + "geometry": [ + { "lat": 40.8019309, "lon": -73.9419313 }, + { "lat": 40.8015970, "lon": -73.9421649 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947015, + "bounds": { + "minlat": 40.8015452, + "minlon": -73.9420399, + "maxlat": 40.8018772, + "maxlon": -73.9417959 + }, + "nodes": [ + 7620520365, + 7620520366 + ], + "geometry": [ + { "lat": 40.8018772, "lon": -73.9417959 }, + { "lat": 40.8015452, "lon": -73.9420399 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947016, + "bounds": { + "minlat": 40.8018772, + "minlon": -73.9419313, + "maxlat": 40.8019309, + "maxlon": -73.9417959 + }, + "nodes": [ + 7620520363, + 7620520365 + ], + "geometry": [ + { "lat": 40.8019309, "lon": -73.9419313 }, + { "lat": 40.8018772, "lon": -73.9417959 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947017, + "bounds": { + "minlat": 40.8015452, + "minlon": -73.9422210, + "maxlat": 40.8016203, + "maxlon": -73.9420399 + }, + "nodes": [ + 7620520367, + 7620520364, + 7620520366 + ], + "geometry": [ + { "lat": 40.8016203, "lon": -73.9422210 }, + { "lat": 40.8015970, "lon": -73.9421649 }, + { "lat": 40.8015452, "lon": -73.9420399 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947018, + "bounds": { + "minlat": 40.8014564, + "minlon": -73.9423405, + "maxlat": 40.8016203, + "maxlon": -73.9422210 + }, + "nodes": [ + 7620520367, + 10170646985, + 7620520368 + ], + "geometry": [ + { "lat": 40.8016203, "lon": -73.9422210 }, + { "lat": 40.8015144, "lon": -73.9422982 }, + { "lat": 40.8014564, "lon": -73.9423405 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947019, + "bounds": { + "minlat": 40.8013989, + "minlon": -73.9408430, + "maxlat": 40.8014507, + "maxlon": -73.9407190 + }, + "nodes": [ + 7620520369, + 7620520370 + ], + "geometry": [ + { "lat": 40.8014507, "lon": -73.9408430 }, + { "lat": 40.8013989, "lon": -73.9407190 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947020, + "bounds": { + "minlat": 40.8013035, + "minlon": -73.9409094, + "maxlat": 40.8013543, + "maxlon": -73.9407827 + }, + "nodes": [ + 7620520371, + 7620520372 + ], + "geometry": [ + { "lat": 40.8013543, "lon": -73.9409094 }, + { "lat": 40.8013035, "lon": -73.9407827 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947021, + "bounds": { + "minlat": 40.8014289, + "minlon": -73.9406103, + "maxlat": 40.8015168, + "maxlon": -73.9405480 + }, + "nodes": [ + 7620520373, + 10170647001, + 7620520374 + ], + "geometry": [ + { "lat": 40.8015168, "lon": -73.9405480 }, + { "lat": 40.8014650, "lon": -73.9405849 }, + { "lat": 40.8014289, "lon": -73.9406103 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947022, + "bounds": { + "minlat": 40.8013035, + "minlon": -73.9407827, + "maxlat": 40.8013989, + "maxlon": -73.9407190 + }, + "nodes": [ + 7620520370, + 7620520372 + ], + "geometry": [ + { "lat": 40.8013989, "lon": -73.9407190 }, + { "lat": 40.8013035, "lon": -73.9407827 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947023, + "bounds": { + "minlat": 40.8013989, + "minlon": -73.9407190, + "maxlat": 40.8014289, + "maxlon": -73.9406103 + }, + "nodes": [ + 7620520370, + 7620520374 + ], + "geometry": [ + { "lat": 40.8013989, "lon": -73.9407190 }, + { "lat": 40.8014289, "lon": -73.9406103 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947024, + "bounds": { + "minlat": 40.8019729, + "minlon": -73.9402014, + "maxlat": 40.8021501, + "maxlon": -73.9400750 + }, + "nodes": [ + 5481978523, + 10170656822, + 7620520375 + ], + "geometry": [ + { "lat": 40.8021501, "lon": -73.9400750 }, + { "lat": 40.8020959, "lon": -73.9401136 }, + { "lat": 40.8019729, "lon": -73.9402014 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947025, + "bounds": { + "minlat": 40.8016005, + "minlon": -73.9407477, + "maxlat": 40.8020628, + "maxlon": -73.9404120 + }, + "nodes": [ + 7620520376, + 10170647003, + 7620520377 + ], + "geometry": [ + { "lat": 40.8020628, "lon": -73.9404120 }, + { "lat": 40.8016679, "lon": -73.9406988 }, + { "lat": 40.8016005, "lon": -73.9407477 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947026, + "bounds": { + "minlat": 40.8019729, + "minlon": -73.9404120, + "maxlat": 40.8020628, + "maxlon": -73.9402014 + }, + "nodes": [ + 7620520376, + 7620520375 + ], + "geometry": [ + { "lat": 40.8020628, "lon": -73.9404120 }, + { "lat": 40.8019729, "lon": -73.9402014 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815947449, + "bounds": { + "minlat": 40.7979608, + "minlon": -73.9426125, + "maxlat": 40.7981055, + "maxlon": -73.9425066 + }, + "nodes": [ + 6908565323, + 7924346784, + 7620522026 + ], + "geometry": [ + { "lat": 40.7981055, "lon": -73.9425066 }, + { "lat": 40.7980403, "lon": -73.9425542 }, + { "lat": 40.7979608, "lon": -73.9426125 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815949434, + "bounds": { + "minlat": 40.8123883, + "minlon": -73.9910685, + "maxlat": 40.8125972, + "maxlon": -73.9908205 + }, + "nodes": [ + 7620544885, + 7620544886 + ], + "geometry": [ + { "lat": 40.8125972, "lon": -73.9910685 }, + { "lat": 40.8123883, "lon": -73.9908205 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 815949435, + "bounds": { + "minlat": 40.8121046, + "minlon": -73.9914758, + "maxlat": 40.8124321, + "maxlon": -73.9911164 + }, + "nodes": [ + 7620544887, + 7620544888, + 7620544889, + 7620544890, + 7620544891, + 7620544892, + 7620544893, + 7620544894 + ], + "geometry": [ + { "lat": 40.8123218, "lon": -73.9914758 }, + { "lat": 40.8121046, "lon": -73.9911394 }, + { "lat": 40.8122180, "lon": -73.9911180 }, + { "lat": 40.8122327, "lon": -73.9911164 }, + { "lat": 40.8122474, "lon": -73.9911180 }, + { "lat": 40.8122632, "lon": -73.9911228 }, + { "lat": 40.8122773, "lon": -73.9911317 }, + { "lat": 40.8124321, "lon": -73.9913127 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 815956875, + "bounds": { + "minlat": 40.8126984, + "minlon": -73.9592020, + "maxlat": 40.8134467, + "maxlon": -73.9574484 + }, + "nodes": [ + 7620561446, + 7323388268, + 6880376112, + 7620561447 + ], + "geometry": [ + { "lat": 40.8134467, "lon": -73.9592020 }, + { "lat": 40.8134330, "lon": -73.9591699 }, + { "lat": 40.8127478, "lon": -73.9575600 }, + { "lat": 40.8126984, "lon": -73.9574484 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 815956876, + "bounds": { + "minlat": 40.8134467, + "minlon": -73.9592020, + "maxlat": 40.8136031, + "maxlon": -73.9591591 + }, + "nodes": [ + 7620561448, + 7323388267, + 7620561446 + ], + "geometry": [ + { "lat": 40.8136031, "lon": -73.9591591 }, + { "lat": 40.8135369, "lon": -73.9591772 }, + { "lat": 40.8134467, "lon": -73.9592020 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 815956877, + "bounds": { + "minlat": 40.8127680, + "minlon": -73.9574002, + "maxlat": 40.8128028, + "maxlon": -73.9573761 + }, + "nodes": [ + 13819650468, + 7323390442, + 13819650469 + ], + "geometry": [ + { "lat": 40.8127680, "lon": -73.9574002 }, + { "lat": 40.8127852, "lon": -73.9573883 }, + { "lat": 40.8128028, "lon": -73.9573761 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 815957441, + "bounds": { + "minlat": 40.8122983, + "minlon": -73.9556965, + "maxlat": 40.8141405, + "maxlon": -73.9541041 + }, + "nodes": [ + 6929267022, + 5481863736, + 7590761557, + 42436739, + 10173250034, + 42442586 + ], + "geometry": [ + { "lat": 40.8122983, "lon": -73.9541041 }, + { "lat": 40.8125126, "lon": -73.9542893 }, + { "lat": 40.8127376, "lon": -73.9544838 }, + { "lat": 40.8134085, "lon": -73.9550501 }, + { "lat": 40.8140461, "lon": -73.9556149 }, + { "lat": 40.8141405, "lon": -73.9556965 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "no", + "highway": "residential", + "name": "West 126th Street", + "oneway": "yes", + "oneway:bicycle": "no" + } +}, +{ + "type": "way", + "id": 815958386, + "bounds": { + "minlat": 40.8213327, + "minlon": -73.9586191, + "maxlat": 40.8216922, + "maxlon": -73.9579208 + }, + "nodes": [ + 2383895311, + 13247384049, + 7620631151, + 9094916641 + ], + "geometry": [ + { "lat": 40.8213327, "lon": -73.9579208 }, + { "lat": 40.8214006, "lon": -73.9580696 }, + { "lat": 40.8216069, "lon": -73.9585216 }, + { "lat": 40.8216922, "lon": -73.9586191 } + ], + "tags": { + "highway": "residential", + "name": "West 135th Street" + } +}, +{ + "type": "way", + "id": 815958387, + "bounds": { + "minlat": 40.8216922, + "minlon": -73.9589485, + "maxlat": 40.8224473, + "maxlon": -73.9586191 + }, + "nodes": [ + 1332860750, + 2395270093, + 9094916641 + ], + "geometry": [ + { "lat": 40.8224473, "lon": -73.9589485 }, + { "lat": 40.8217400, "lon": -73.9586380 }, + { "lat": 40.8216922, "lon": -73.9586191 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 816033467, + "bounds": { + "minlat": 40.7719182, + "minlon": -74.0129276, + "maxlat": 40.7720959, + "maxlon": -74.0121827 + }, + "nodes": [ + 3611168122, + 7621170854, + 7621170855, + 7621170856, + 7621170857, + 7621170858, + 7621170859, + 7621170860 + ], + "geometry": [ + { "lat": 40.7719885, "lon": -74.0129276 }, + { "lat": 40.7719308, "lon": -74.0127910 }, + { "lat": 40.7719182, "lon": -74.0126851 }, + { "lat": 40.7719323, "lon": -74.0125461 }, + { "lat": 40.7719559, "lon": -74.0124506 }, + { "lat": 40.7720015, "lon": -74.0123903 }, + { "lat": 40.7720314, "lon": -74.0123509 }, + { "lat": 40.7720959, "lon": -74.0121827 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 816077351, + "bounds": { + "minlat": 40.8121711, + "minlon": -74.0054843, + "maxlat": 40.8128929, + "maxlon": -74.0046860 + }, + "nodes": [ + 7621602994, + 12456261982, + 7621603004, + 7621602995, + 7621602996, + 7621602997, + 7621602998, + 7621602999, + 7621603000, + 7621603001, + 7621603002, + 7621603005, + 12456261967, + 7621603003 + ], + "geometry": [ + { "lat": 40.8121711, "lon": -74.0050905 }, + { "lat": 40.8121940, "lon": -74.0051482 }, + { "lat": 40.8122005, "lon": -74.0051644 }, + { "lat": 40.8123034, "lon": -74.0054226 }, + { "lat": 40.8123738, "lon": -74.0054843 }, + { "lat": 40.8125132, "lon": -74.0054183 }, + { "lat": 40.8127951, "lon": -74.0051985 }, + { "lat": 40.8128915, "lon": -74.0051144 }, + { "lat": 40.8128929, "lon": -74.0050654 }, + { "lat": 40.8128687, "lon": -74.0049928 }, + { "lat": 40.8128052, "lon": -74.0048260 }, + { "lat": 40.8127780, "lon": -74.0047560 }, + { "lat": 40.8127724, "lon": -74.0047416 }, + { "lat": 40.8127508, "lon": -74.0046860 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 816077352, + "bounds": { + "minlat": 40.8117807, + "minlon": -74.0057168, + "maxlat": 40.8122015, + "maxlon": -74.0051448 + }, + "nodes": [ + 7621603006, + 12456261955, + 7621603007, + 7621603008 + ], + "geometry": [ + { "lat": 40.8120965, "lon": -74.0051448 }, + { "lat": 40.8121218, "lon": -74.0051934 }, + { "lat": 40.8122015, "lon": -74.0053465 }, + { "lat": 40.8117807, "lon": -74.0057168 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 816111205, + "bounds": { + "minlat": 40.7213317, + "minlon": -73.9419099, + "maxlat": 40.7217054, + "maxlon": -73.9413714 + }, + "nodes": [ + 42476534, + 6235394693, + 12162675496, + 12162675495, + 8318348535 + ], + "geometry": [ + { "lat": 40.7213317, "lon": -73.9419099 }, + { "lat": 40.7213775, "lon": -73.9418327 }, + { "lat": 40.7214232, "lon": -73.9417654 }, + { "lat": 40.7214873, "lon": -73.9416756 }, + { "lat": 40.7217054, "lon": -73.9413714 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 816111206, + "bounds": { + "minlat": 40.7208383, + "minlon": -73.9428264, + "maxlat": 40.7211437, + "maxlon": -73.9427770 + }, + "nodes": [ + 42476532, + 8702221550, + 42476648 + ], + "geometry": [ + { "lat": 40.7208383, "lon": -73.9427770 }, + { "lat": 40.7210887, "lon": -73.9428153 }, + { "lat": 40.7211437, "lon": -73.9428264 } + ], + "tags": { + "highway": "residential", + "name": "North Henry Street" + } +}, +{ + "type": "way", + "id": 816111207, + "bounds": { + "minlat": 40.7202770, + "minlon": -73.9427770, + "maxlat": 40.7208383, + "maxlon": -73.9426780 + }, + "nodes": [ + 42503829, + 6235394683, + 6235394685, + 42476532 + ], + "geometry": [ + { "lat": 40.7202770, "lon": -73.9426780 }, + { "lat": 40.7203528, "lon": -73.9426912 }, + { "lat": 40.7207361, "lon": -73.9427597 }, + { "lat": 40.7208383, "lon": -73.9427770 } + ], + "tags": { + "highway": "residential", + "name": "North Henry Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Henry", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 816141176, + "bounds": { + "minlat": 40.8291955, + "minlon": -73.9452475, + "maxlat": 40.8294833, + "maxlon": -73.9450159 + }, + "nodes": [ + 7622258565, + 11218896943, + 7622258567, + 7622258566 + ], + "geometry": [ + { "lat": 40.8291955, "lon": -73.9452475 }, + { "lat": 40.8292409, "lon": -73.9452108 }, + { "lat": 40.8292824, "lon": -73.9451773 }, + { "lat": 40.8294833, "lon": -73.9450159 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 816200550, + "bounds": { + "minlat": 40.7511890, + "minlon": -73.9151896, + "maxlat": 40.7531162, + "maxlon": -73.9148018 + }, + "nodes": [ + 13199538709, + 12556925965, + 3778141132, + 12556925964, + 3778141147, + 3778141124, + 42859923, + 10762234050, + 42816214 + ], + "geometry": [ + { "lat": 40.7531162, "lon": -73.9148018 }, + { "lat": 40.7528385, "lon": -73.9148582 }, + { "lat": 40.7527548, "lon": -73.9148752 }, + { "lat": 40.7526884, "lon": -73.9148886 }, + { "lat": 40.7522272, "lon": -73.9149818 }, + { "lat": 40.7515412, "lon": -73.9151203 }, + { "lat": 40.7514390, "lon": -73.9151410 }, + { "lat": 40.7512816, "lon": -73.9151716 }, + { "lat": 40.7511890, "lon": -73.9151896 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "48th Street", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 816232245, + "bounds": { + "minlat": 40.8148716, + "minlon": -73.9198741, + "maxlat": 40.8155433, + "maxlon": -73.9185885 + }, + "nodes": [ + 42768516, + 13040521970, + 42768512, + 12801909508 + ], + "geometry": [ + { "lat": 40.8155433, "lon": -73.9185885 }, + { "lat": 40.8154931, "lon": -73.9186845 }, + { "lat": 40.8150883, "lon": -73.9194594 }, + { "lat": 40.8148716, "lon": -73.9198741 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 816451444, + "bounds": { + "minlat": 40.8083412, + "minlon": -73.9870210, + "maxlat": 40.8087432, + "maxlon": -73.9864290 + }, + "nodes": [ + 5482328577, + 7625358389, + 5482328584, + 5482328582, + 5482328583 + ], + "geometry": [ + { "lat": 40.8084762, "lon": -73.9870210 }, + { "lat": 40.8084509, "lon": -73.9869643 }, + { "lat": 40.8083412, "lon": -73.9867187 }, + { "lat": 40.8085818, "lon": -73.9865453 }, + { "lat": 40.8087432, "lon": -73.9864290 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Marquis Court" + } +}, +{ + "type": "way", + "id": 816475614, + "bounds": { + "minlat": 40.7042193, + "minlon": -73.9317272, + "maxlat": 40.7049230, + "maxlon": -73.9315418 + }, + "nodes": [ + 7625582421, + 9755751810, + 7625582425, + 7625582422, + 7625582423, + 9959630898, + 7625582424 + ], + "geometry": [ + { "lat": 40.7049230, "lon": -73.9317272 }, + { "lat": 40.7048697, "lon": -73.9317134 }, + { "lat": 40.7048449, "lon": -73.9317070 }, + { "lat": 40.7047668, "lon": -73.9316869 }, + { "lat": 40.7043446, "lon": -73.9315779 }, + { "lat": 40.7042870, "lon": -73.9315613 }, + { "lat": 40.7042193, "lon": -73.9315418 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 816654536, + "bounds": { + "minlat": 40.8099488, + "minlon": -73.9931631, + "maxlat": 40.8101424, + "maxlon": -73.9928170 + }, + "nodes": [ + 7627281582, + 7627281583 + ], + "geometry": [ + { "lat": 40.8099488, "lon": -73.9928170 }, + { "lat": 40.8101424, "lon": -73.9931631 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 816658344, + "bounds": { + "minlat": 40.8083191, + "minlon": -73.9939584, + "maxlat": 40.8085858, + "maxlon": -73.9937732 + }, + "nodes": [ + 103132694, + 7627332503 + ], + "geometry": [ + { "lat": 40.8085858, "lon": -73.9937732 }, + { "lat": 40.8083191, "lon": -73.9939584 } + ], + "tags": { + "highway": "residential", + "name": "Cedar Street" + } +}, +{ + "type": "way", + "id": 816658345, + "bounds": { + "minlat": 40.8078850, + "minlon": -73.9943360, + "maxlat": 40.8082068, + "maxlon": -73.9939705 + }, + "nodes": [ + 103140541, + 7627332504, + 7627332505 + ], + "geometry": [ + { "lat": 40.8078850, "lon": -73.9943360 }, + { "lat": 40.8079599, "lon": -73.9942328 }, + { "lat": 40.8082068, "lon": -73.9939705 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 817014811, + "bounds": { + "minlat": 40.7706845, + "minlon": -73.9813705, + "maxlat": 40.7706855, + "maxlon": -73.9812633 + }, + "nodes": [ + 7630577032, + 7630577049 + ], + "geometry": [ + { "lat": 40.7706845, "lon": -73.9812633 }, + { "lat": 40.7706855, "lon": -73.9813705 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 817014812, + "bounds": { + "minlat": 40.7710153, + "minlon": -73.9812537, + "maxlat": 40.7713699, + "maxlon": -73.9809925 + }, + "nodes": [ + 7630577022, + 10032212258, + 7630577040 + ], + "geometry": [ + { "lat": 40.7710153, "lon": -73.9812537 }, + { "lat": 40.7710789, "lon": -73.9812068 }, + { "lat": 40.7713699, "lon": -73.9809925 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 817076969, + "bounds": { + "minlat": 40.7416696, + "minlon": -73.9801305, + "maxlat": 40.7418681, + "maxlon": -73.9799832 + }, + "nodes": [ + 7631032409, + 10166970903, + 7631032410, + 7631032411 + ], + "geometry": [ + { "lat": 40.7416696, "lon": -73.9801305 }, + { "lat": 40.7417264, "lon": -73.9800884 }, + { "lat": 40.7417673, "lon": -73.9800582 }, + { "lat": 40.7418681, "lon": -73.9799832 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 817079678, + "bounds": { + "minlat": 40.8137987, + "minlon": -74.0205529, + "maxlat": 40.8140486, + "maxlon": -74.0194702 + }, + "nodes": [ + 7631060706, + 7631060707, + 8218941721, + 7631060708, + 7631060709, + 7631060710 + ], + "geometry": [ + { "lat": 40.8137987, "lon": -74.0194702 }, + { "lat": 40.8138176, "lon": -74.0196976 }, + { "lat": 40.8138290, "lon": -74.0198275 }, + { "lat": 40.8138443, "lon": -74.0200006 }, + { "lat": 40.8139055, "lon": -74.0201919 }, + { "lat": 40.8140486, "lon": -74.0205529 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 817097352, + "bounds": { + "minlat": 40.8142220, + "minlon": -73.9279118, + "maxlat": 40.8143651, + "maxlon": -73.9275136 + }, + "nodes": [ + 7631216011, + 13040572391, + 7631216012, + 7631216013 + ], + "geometry": [ + { "lat": 40.8143651, "lon": -73.9279118 }, + { "lat": 40.8143395, "lon": -73.9278532 }, + { "lat": 40.8143287, "lon": -73.9278283 }, + { "lat": 40.8142220, "lon": -73.9275136 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 817149871, + "bounds": { + "minlat": 40.7716653, + "minlon": -73.9862474, + "maxlat": 40.7717343, + "maxlon": -73.9861688 + }, + "nodes": [ + 7631760370, + 7631760357, + 7631760359, + 7631760367, + 7631760355, + 7631760375, + 7631760370 + ], + "geometry": [ + { "lat": 40.7717343, "lon": -73.9862099 }, + { "lat": 40.7717092, "lon": -73.9862280 }, + { "lat": 40.7716823, "lon": -73.9862474 }, + { "lat": 40.7716653, "lon": -73.9862063 }, + { "lat": 40.7716753, "lon": -73.9861991 }, + { "lat": 40.7717173, "lon": -73.9861688 }, + { "lat": 40.7717343, "lon": -73.9862099 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "seasonal": "no", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 817474101, + "bounds": { + "minlat": 40.8488459, + "minlon": -73.9698537, + "maxlat": 40.8489774, + "maxlon": -73.9693490 + }, + "nodes": [ + 7634571965, + 7634571966 + ], + "geometry": [ + { "lat": 40.8488459, "lon": -73.9693490 }, + { "lat": 40.8489774, "lon": -73.9698537 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 817474102, + "bounds": { + "minlat": 40.8485619, + "minlon": -73.9699443, + "maxlat": 40.8487138, + "maxlon": -73.9694807 + }, + "nodes": [ + 7634571967, + 7634571968, + 7634571969, + 7634571970, + 7634571971 + ], + "geometry": [ + { "lat": 40.8485619, "lon": -73.9694807 }, + { "lat": 40.8486305, "lon": -73.9697679 }, + { "lat": 40.8486560, "lon": -73.9698417 }, + { "lat": 40.8486863, "lon": -73.9698329 }, + { "lat": 40.8487138, "lon": -73.9699443 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 817484459, + "bounds": { + "minlat": 40.8572625, + "minlon": -73.9819913, + "maxlat": 40.8575737, + "maxlon": -73.9816030 + }, + "nodes": [ + 7634718710, + 7634718720, + 7634718711, + 9928818980, + 7634718712, + 7634718713, + 7634718714, + 7634718715, + 7634718716, + 7634718717, + 7634718718, + 7634718721, + 7634718719 + ], + "geometry": [ + { "lat": 40.8572625, "lon": -73.9818127 }, + { "lat": 40.8573088, "lon": -73.9818607 }, + { "lat": 40.8573235, "lon": -73.9818862 }, + { "lat": 40.8573723, "lon": -73.9819507 }, + { "lat": 40.8573809, "lon": -73.9819621 }, + { "lat": 40.8574236, "lon": -73.9819855 }, + { "lat": 40.8574633, "lon": -73.9819913 }, + { "lat": 40.8575148, "lon": -73.9819446 }, + { "lat": 40.8575693, "lon": -73.9818940 }, + { "lat": 40.8575737, "lon": -73.9818454 }, + { "lat": 40.8575531, "lon": -73.9817442 }, + { "lat": 40.8575050, "lon": -73.9816560 }, + { "lat": 40.8574723, "lon": -73.9816030 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 817484460, + "bounds": { + "minlat": 40.8573088, + "minlon": -73.9818607, + "maxlat": 40.8575050, + "maxlon": -73.9816560 + }, + "nodes": [ + 7634718720, + 7634718721 + ], + "geometry": [ + { "lat": 40.8573088, "lon": -73.9818607 }, + { "lat": 40.8575050, "lon": -73.9816560 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 817495058, + "bounds": { + "minlat": 40.8822740, + "minlon": -73.9687944, + "maxlat": 40.8827027, + "maxlon": -73.9684596 + }, + "nodes": [ + 103267383, + 7634833695 + ], + "geometry": [ + { "lat": 40.8822740, "lon": -73.9687944 }, + { "lat": 40.8827027, "lon": -73.9684596 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 817500593, + "bounds": { + "minlat": 40.8291464, + "minlon": -73.9792336, + "maxlat": 40.8293984, + "maxlon": -73.9789237 + }, + "nodes": [ + 7634888702, + 7634888703, + 7634888704, + 7634888705 + ], + "geometry": [ + { "lat": 40.8292229, "lon": -73.9792336 }, + { "lat": 40.8293984, "lon": -73.9790664 }, + { "lat": 40.8293225, "lon": -73.9789237 }, + { "lat": 40.8291464, "lon": -73.9790937 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 817578560, + "bounds": { + "minlat": 40.8493524, + "minlon": -73.9703568, + "maxlat": 40.8494267, + "maxlon": -73.9698395 + }, + "nodes": [ + 7635623421, + 7635623422, + 7635623423 + ], + "geometry": [ + { "lat": 40.8494201, "lon": -73.9703568 }, + { "lat": 40.8494267, "lon": -73.9701798 }, + { "lat": 40.8493524, "lon": -73.9698395 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 817578561, + "bounds": { + "minlat": 40.8485870, + "minlon": -73.9705408, + "maxlat": 40.8486482, + "maxlon": -73.9701677 + }, + "nodes": [ + 7635623424, + 7635623425 + ], + "geometry": [ + { "lat": 40.8485870, "lon": -73.9701677 }, + { "lat": 40.8486482, "lon": -73.9705408 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 818087529, + "bounds": { + "minlat": 40.8005337, + "minlon": -73.9504932, + "maxlat": 40.8007901, + "maxlon": -73.9498857 + }, + "nodes": [ + 7640495254, + 6223478850, + 7640495255 + ], + "geometry": [ + { "lat": 40.8007901, "lon": -73.9504932 }, + { "lat": 40.8007424, "lon": -73.9503805 }, + { "lat": 40.8005337, "lon": -73.9498857 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 818087530, + "bounds": { + "minlat": 40.7997113, + "minlon": -73.9503849, + "maxlat": 40.8005337, + "maxlon": -73.9498340 + }, + "nodes": [ + 7640495255, + 8807524498, + 8807524426, + 8807524583, + 8807410275, + 2339621215, + 8807524457, + 7640495257 + ], + "geometry": [ + { "lat": 40.8005337, "lon": -73.9498857 }, + { "lat": 40.8005082, "lon": -73.9498510 }, + { "lat": 40.8004736, "lon": -73.9498354 }, + { "lat": 40.8004324, "lon": -73.9498340 }, + { "lat": 40.8001361, "lon": -73.9500507 }, + { "lat": 40.7997989, "lon": -73.9502969 }, + { "lat": 40.7997231, "lon": -73.9503510 }, + { "lat": 40.7997113, "lon": -73.9503849 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 818087531, + "bounds": { + "minlat": 40.7997061, + "minlon": -73.9511089, + "maxlat": 40.7999742, + "maxlon": -73.9503849 + }, + "nodes": [ + 7640495256, + 6223478851, + 8807524578, + 8807524458, + 7640495257 + ], + "geometry": [ + { "lat": 40.7999742, "lon": -73.9511089 }, + { "lat": 40.7999182, "lon": -73.9509705 }, + { "lat": 40.7997093, "lon": -73.9504693 }, + { "lat": 40.7997061, "lon": -73.9504268 }, + { "lat": 40.7997113, "lon": -73.9503849 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 818129152, + "bounds": { + "minlat": 40.7437104, + "minlon": -73.9764278, + "maxlat": 40.7440001, + "maxlon": -73.9762042 + }, + "nodes": [ + 7640856881, + 12926045993, + 7735190136, + 7735190141, + 7735190139, + 7735190140, + 7640871299, + 7735190142, + 7640871305, + 7735190143, + 3817760668, + 7640871318, + 7640856884, + 7735190134, + 7735190133, + 7735190132, + 7735190135, + 7640856881 + ], + "geometry": [ + { "lat": 40.7437767, "lon": -73.9764278 }, + { "lat": 40.7437695, "lon": -73.9764088 }, + { "lat": 40.7437611, "lon": -73.9763863 }, + { "lat": 40.7437594, "lon": -73.9763821 }, + { "lat": 40.7437375, "lon": -73.9763697 }, + { "lat": 40.7437149, "lon": -73.9763673 }, + { "lat": 40.7437104, "lon": -73.9763557 }, + { "lat": 40.7439179, "lon": -73.9762060 }, + { "lat": 40.7439325, "lon": -73.9762042 }, + { "lat": 40.7439727, "lon": -73.9762289 }, + { "lat": 40.7439908, "lon": -73.9762711 }, + { "lat": 40.7440001, "lon": -73.9762930 }, + { "lat": 40.7439775, "lon": -73.9763082 }, + { "lat": 40.7439656, "lon": -73.9763162 }, + { "lat": 40.7439617, "lon": -73.9763060 }, + { "lat": 40.7439569, "lon": -73.9763031 }, + { "lat": 40.7439497, "lon": -73.9763032 }, + { "lat": 40.7437767, "lon": -73.9764278 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 818142711, + "bounds": { + "minlat": 40.7647075, + "minlon": -73.9608471, + "maxlat": 40.7648365, + "maxlon": -73.9607727 + }, + "nodes": [ + 7640863616, + 11296226518, + 7640863612 + ], + "geometry": [ + { "lat": 40.7647075, "lon": -73.9608471 }, + { "lat": 40.7647722, "lon": -73.9608098 }, + { "lat": 40.7648365, "lon": -73.9607727 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 818182930, + "bounds": { + "minlat": 40.7599916, + "minlon": -73.9648028, + "maxlat": 40.7603611, + "maxlon": -73.9645392 + }, + "nodes": [ + 7641360304, + 4918486117, + 42442961 + ], + "geometry": [ + { "lat": 40.7603611, "lon": -73.9645392 }, + { "lat": 40.7600473, "lon": -73.9647641 }, + { "lat": 40.7599916, "lon": -73.9648028 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through|", + "width": "21", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 818252752, + "bounds": { + "minlat": 40.7228463, + "minlon": -73.9886268, + "maxlat": 40.7229840, + "maxlon": -73.9885922 + }, + "nodes": [ + 7480301866, + 5798966629 + ], + "geometry": [ + { "lat": 40.7228463, "lon": -73.9885922 }, + { "lat": 40.7229840, "lon": -73.9886268 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "no", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 818255303, + "bounds": { + "minlat": 40.7212541, + "minlon": -73.9934835, + "maxlat": 40.7216253, + "maxlon": -73.9922542 + }, + "nodes": [ + 42437113, + 8231896504, + 42431712, + 12196062113, + 8231896515, + 1773076778 + ], + "geometry": [ + { "lat": 40.7212541, "lon": -73.9922542 }, + { "lat": 40.7212920, "lon": -73.9923775 }, + { "lat": 40.7213953, "lon": -73.9927139 }, + { "lat": 40.7215748, "lon": -73.9932981 }, + { "lat": 40.7215938, "lon": -73.9933679 }, + { "lat": 40.7216253, "lon": -73.9934835 } + ], + "tags": { + "cycleway:right": "lane", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "name:ko": "리빙턴 스트리트", + "oneway": "yes", + "parking:lane:right": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 818274836, + "bounds": { + "minlat": 40.8387376, + "minlon": -73.9443902, + "maxlat": 40.8389538, + "maxlon": -73.9440651 + }, + "nodes": [ + 7641990526, + 8725219054, + 7641990527, + 7641990528, + 7641990529, + 7641990530, + 7641990531, + 7641990532, + 7641990533 + ], + "geometry": [ + { "lat": 40.8387376, "lon": -73.9443902 }, + { "lat": 40.8388112, "lon": -73.9443380 }, + { "lat": 40.8388407, "lon": -73.9443171 }, + { "lat": 40.8389538, "lon": -73.9442366 }, + { "lat": 40.8389494, "lon": -73.9441891 }, + { "lat": 40.8389222, "lon": -73.9441072 }, + { "lat": 40.8388919, "lon": -73.9440651 }, + { "lat": 40.8388358, "lon": -73.9441043 }, + { "lat": 40.8387448, "lon": -73.9441844 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 818513468, + "bounds": { + "minlat": 40.8539137, + "minlon": -73.9989870, + "maxlat": 40.8541920, + "maxlon": -73.9985655 + }, + "nodes": [ + 7643979472, + 7643979473 + ], + "geometry": [ + { "lat": 40.8541920, "lon": -73.9989870 }, + { "lat": 40.8539137, "lon": -73.9985655 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 818557076, + "bounds": { + "minlat": 40.7698032, + "minlon": -73.9875202, + "maxlat": 40.7700648, + "maxlon": -73.9873285 + }, + "nodes": [ + 7644293507, + 7644293504, + 7644293506 + ], + "geometry": [ + { "lat": 40.7698032, "lon": -73.9875202 }, + { "lat": 40.7699346, "lon": -73.9874240 }, + { "lat": 40.7700648, "lon": -73.9873285 } + ], + "tags": { + "covered": "arcade", + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "driveway", + "surface": "paved", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 818557077, + "bounds": { + "minlat": 40.7700648, + "minlon": -73.9873285, + "maxlat": 40.7701688, + "maxlon": -73.9872514 + }, + "nodes": [ + 7644293506, + 8448399423 + ], + "geometry": [ + { "lat": 40.7700648, "lon": -73.9873285 }, + { "lat": 40.7701688, "lon": -73.9872514 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "driveway", + "surface": "paved", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 818625731, + "bounds": { + "minlat": 40.7236312, + "minlon": -73.9178562, + "maxlat": 40.7242327, + "maxlon": -73.9176361 + }, + "nodes": [ + 7644827951, + 7644827952 + ], + "geometry": [ + { "lat": 40.7236312, "lon": -73.9178562 }, + { "lat": 40.7242327, "lon": -73.9176361 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 818955746, + "bounds": { + "minlat": 40.8182158, + "minlon": -73.9975692, + "maxlat": 40.8183787, + "maxlon": -73.9972483 + }, + "nodes": [ + 7647954847, + 7647954848, + 7647954849 + ], + "geometry": [ + { "lat": 40.8183787, "lon": -73.9975692 }, + { "lat": 40.8182838, "lon": -73.9973816 }, + { "lat": 40.8182158, "lon": -73.9972483 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 818955747, + "bounds": { + "minlat": 40.8179811, + "minlon": -73.9970304, + "maxlat": 40.8181474, + "maxlon": -73.9968754 + }, + "nodes": [ + 7647954850, + 7647954851, + 7647954852, + 7647954853, + 7647954854 + ], + "geometry": [ + { "lat": 40.8179811, "lon": -73.9968754 }, + { "lat": 40.8180219, "lon": -73.9969410 }, + { "lat": 40.8180636, "lon": -73.9969947 }, + { "lat": 40.8181079, "lon": -73.9970304 }, + { "lat": 40.8181474, "lon": -73.9970090 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 819016614, + "bounds": { + "minlat": 40.7550598, + "minlon": -73.9943779, + "maxlat": 40.7552962, + "maxlon": -73.9941932 + }, + "nodes": [ + 7648640949, + 8660596948, + 7648640950 + ], + "geometry": [ + { "lat": 40.7550598, "lon": -73.9943779 }, + { "lat": 40.7551262, "lon": -73.9943261 }, + { "lat": 40.7552962, "lon": -73.9941932 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 819074877, + "bounds": { + "minlat": 40.7531793, + "minlon": -73.9666164, + "maxlat": 40.7532346, + "maxlon": -73.9665625 + }, + "nodes": [ + 3831856763, + 595105499 + ], + "geometry": [ + { "lat": 40.7531793, "lon": -73.9666164 }, + { "lat": 40.7532346, "lon": -73.9665625 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "highway": "primary", + "name": "1st Avenue Tunnel", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 819074878, + "bounds": { + "minlat": 40.7533202, + "minlon": -73.9665034, + "maxlat": 40.7536872, + "maxlon": -73.9662667 + }, + "nodes": [ + 5993830853, + 5993830852, + 6133355290 + ], + "geometry": [ + { "lat": 40.7533202, "lon": -73.9665034 }, + { "lat": 40.7535268, "lon": -73.9663513 }, + { "lat": 40.7536872, "lon": -73.9662667 } + ], + "tags": { + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 819087647, + "bounds": { + "minlat": 40.7939399, + "minlon": -74.0021465, + "maxlat": 40.7941031, + "maxlon": -74.0016953 + }, + "nodes": [ + 7649372577, + 7649372578, + 7649372579, + 7649372580, + 7649372581 + ], + "geometry": [ + { "lat": 40.7941031, "lon": -74.0021465 }, + { "lat": 40.7940584, "lon": -74.0020224 }, + { "lat": 40.7939752, "lon": -74.0018167 }, + { "lat": 40.7939399, "lon": -74.0017292 }, + { "lat": 40.7939841, "lon": -74.0016953 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 819332510, + "bounds": { + "minlat": 40.7213707, + "minlon": -73.9128040, + "maxlat": 40.7214213, + "maxlon": -73.9126340 + }, + "nodes": [ + 7651475658, + 13233974037, + 7651475659, + 13233974038 + ], + "geometry": [ + { "lat": 40.7213707, "lon": -73.9128040 }, + { "lat": 40.7213910, "lon": -73.9127351 }, + { "lat": 40.7213963, "lon": -73.9127175 }, + { "lat": 40.7214213, "lon": -73.9126340 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 819386040, + "bounds": { + "minlat": 40.8380518, + "minlon": -74.0053047, + "maxlat": 40.8382693, + "maxlon": -74.0049053 + }, + "nodes": [ + 7651977478, + 7651977479, + 7651977480 + ], + "geometry": [ + { "lat": 40.8382693, "lon": -74.0053047 }, + { "lat": 40.8381183, "lon": -74.0050294 }, + { "lat": 40.8380518, "lon": -74.0049053 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 819413531, + "bounds": { + "minlat": 40.8658490, + "minlon": -73.9608620, + "maxlat": 40.8660736, + "maxlon": -73.9605689 + }, + "nodes": [ + 9284797898, + 9284797899, + 7652321328, + 7652321327, + 9284797900 + ], + "geometry": [ + { "lat": 40.8659238, "lon": -73.9608620 }, + { "lat": 40.8658490, "lon": -73.9607221 }, + { "lat": 40.8658921, "lon": -73.9606814 }, + { "lat": 40.8660142, "lon": -73.9605689 }, + { "lat": 40.8660736, "lon": -73.9606793 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 819608681, + "bounds": { + "minlat": 40.7481953, + "minlon": -73.9936912, + "maxlat": 40.7482605, + "maxlon": -73.9936450 + }, + "nodes": [ + 7653745283, + 10170593085, + 7653745266 + ], + "geometry": [ + { "lat": 40.7482605, "lon": -73.9936450 }, + { "lat": 40.7482521, "lon": -73.9936510 }, + { "lat": 40.7481953, "lon": -73.9936912 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 819700957, + "bounds": { + "minlat": 40.8193387, + "minlon": -73.9253670, + "maxlat": 40.8199534, + "maxlon": -73.9245663 + }, + "nodes": [ + 7557517344, + 7654826174, + 7654826165, + 1661234029, + 7654826167, + 7654826168, + 7654826169, + 7654826170, + 7654826171, + 7654826172, + 7654826173 + ], + "geometry": [ + { "lat": 40.8199534, "lon": -73.9250176 }, + { "lat": 40.8198989, "lon": -73.9250379 }, + { "lat": 40.8195778, "lon": -73.9253294 }, + { "lat": 40.8195143, "lon": -73.9253670 }, + { "lat": 40.8194372, "lon": -73.9253589 }, + { "lat": 40.8193925, "lon": -73.9253107 }, + { "lat": 40.8193387, "lon": -73.9250371 }, + { "lat": 40.8193661, "lon": -73.9249660 }, + { "lat": 40.8196493, "lon": -73.9247434 }, + { "lat": 40.8197213, "lon": -73.9246173 }, + { "lat": 40.8197975, "lon": -73.9245663 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 819703585, + "bounds": { + "minlat": 40.8264115, + "minlon": -73.9148945, + "maxlat": 40.8268601, + "maxlon": -73.9146387 + }, + "nodes": [ + 7654847354, + 7654847356, + 7654847355 + ], + "geometry": [ + { "lat": 40.8264115, "lon": -73.9148945 }, + { "lat": 40.8265084, "lon": -73.9148392 }, + { "lat": 40.8268601, "lon": -73.9146387 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 819780855, + "bounds": { + "minlat": 40.8223975, + "minlon": -73.9190678, + "maxlat": 40.8229228, + "maxlon": -73.9184949 + }, + "nodes": [ + 3659273379, + 13547349184, + 7655628564, + 7655628565, + 7655628572, + 7655628566, + 7655628567, + 7655628568, + 7655628569, + 7655628570, + 7655628571, + 7655628572 + ], + "geometry": [ + { "lat": 40.8229228, "lon": -73.9190678 }, + { "lat": 40.8228603, "lon": -73.9189990 }, + { "lat": 40.8228075, "lon": -73.9189409 }, + { "lat": 40.8227562, "lon": -73.9188755 }, + { "lat": 40.8227136, "lon": -73.9188141 }, + { "lat": 40.8226970, "lon": -73.9187903 }, + { "lat": 40.8226458, "lon": -73.9187074 }, + { "lat": 40.8226078, "lon": -73.9186432 }, + { "lat": 40.8225336, "lon": -73.9184949 }, + { "lat": 40.8223975, "lon": -73.9185977 }, + { "lat": 40.8225760, "lon": -73.9189678 }, + { "lat": 40.8227136, "lon": -73.9188141 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 819802368, + "bounds": { + "minlat": 40.8343055, + "minlon": -74.0118966, + "maxlat": 40.8345504, + "maxlon": -74.0117131 + }, + "nodes": [ + 7655813553, + 7655813554, + 7655813555, + 7655813556, + 7655813558 + ], + "geometry": [ + { "lat": 40.8345504, "lon": -74.0118966 }, + { "lat": 40.8345200, "lon": -74.0117390 }, + { "lat": 40.8344915, "lon": -74.0117131 }, + { "lat": 40.8344345, "lon": -74.0117178 }, + { "lat": 40.8343055, "lon": -74.0117734 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 819802369, + "bounds": { + "minlat": 40.8341764, + "minlon": -74.0118289, + "maxlat": 40.8343055, + "maxlon": -74.0117734 + }, + "nodes": [ + 7655813557, + 7655813558 + ], + "geometry": [ + { "lat": 40.8341764, "lon": -74.0118289 }, + { "lat": 40.8343055, "lon": -74.0117734 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 819812180, + "bounds": { + "minlat": 40.7763580, + "minlon": -74.0151929, + "maxlat": 40.7764632, + "maxlon": -74.0149220 + }, + "nodes": [ + 7655850965, + 7655850966, + 7655850967 + ], + "geometry": [ + { "lat": 40.7763580, "lon": -74.0149220 }, + { "lat": 40.7764440, "lon": -74.0151446 }, + { "lat": 40.7764632, "lon": -74.0151929 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 819859811, + "bounds": { + "minlat": 40.8695906, + "minlon": -73.9566790, + "maxlat": 40.8711379, + "maxlon": -73.9548451 + }, + "nodes": [ + 103213791, + 9283344606, + 9283344607, + 7656292683, + 7656292684, + 7656323485, + 7656323486, + 7656323487, + 7656323488, + 7656323489, + 7656323490, + 7656323491 + ], + "geometry": [ + { "lat": 40.8697591, "lon": -73.9566790 }, + { "lat": 40.8696757, "lon": -73.9565586 }, + { "lat": 40.8696153, "lon": -73.9564454 }, + { "lat": 40.8695906, "lon": -73.9563393 }, + { "lat": 40.8695984, "lon": -73.9562638 }, + { "lat": 40.8696979, "lon": -73.9561275 }, + { "lat": 40.8699328, "lon": -73.9559609 }, + { "lat": 40.8701141, "lon": -73.9558466 }, + { "lat": 40.8702818, "lon": -73.9556982 }, + { "lat": 40.8705720, "lon": -73.9554212 }, + { "lat": 40.8709208, "lon": -73.9550758 }, + { "lat": 40.8711379, "lon": -73.9548451 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 819859812, + "bounds": { + "minlat": 40.8673280, + "minlon": -73.9566270, + "maxlat": 40.8711379, + "maxlon": -73.9541657 + }, + "nodes": [ + 7656323491, + 7656323494, + 7656323495, + 7656323496, + 7656323497, + 7656323498, + 7656323499, + 9283355937, + 7656323500, + 7656323501, + 9283355939, + 7656323502, + 7958583262, + 7656323503, + 9283355945, + 7656323504, + 9283355943, + 7656323505, + 9283355948, + 9283344605, + 9283344604, + 9283356054, + 7656323506, + 9283344602, + 7656323507, + 7656323508, + 9283356055, + 9283344603, + 9283344601, + 10059377482, + 7656323509 + ], + "geometry": [ + { "lat": 40.8711379, "lon": -73.9548451 }, + { "lat": 40.8709169, "lon": -73.9542679 }, + { "lat": 40.8708722, "lon": -73.9541657 }, + { "lat": 40.8707307, "lon": -73.9542520 }, + { "lat": 40.8706072, "lon": -73.9543027 }, + { "lat": 40.8704062, "lon": -73.9543201 }, + { "lat": 40.8702283, "lon": -73.9543681 }, + { "lat": 40.8699953, "lon": -73.9545014 }, + { "lat": 40.8698856, "lon": -73.9545641 }, + { "lat": 40.8697785, "lon": -73.9546295 }, + { "lat": 40.8696655, "lon": -73.9547123 }, + { "lat": 40.8694490, "lon": -73.9548670 }, + { "lat": 40.8692593, "lon": -73.9549904 }, + { "lat": 40.8690667, "lon": -73.9551150 }, + { "lat": 40.8688703, "lon": -73.9552637 }, + { "lat": 40.8686697, "lon": -73.9554373 }, + { "lat": 40.8684267, "lon": -73.9556801 }, + { "lat": 40.8683750, "lon": -73.9557242 }, + { "lat": 40.8679129, "lon": -73.9561695 }, + { "lat": 40.8676241, "lon": -73.9564479 }, + { "lat": 40.8675038, "lon": -73.9565503 }, + { "lat": 40.8674769, "lon": -73.9565719 }, + { "lat": 40.8674083, "lon": -73.9566270 }, + { "lat": 40.8673596, "lon": -73.9564278 }, + { "lat": 40.8673280, "lon": -73.9562286 }, + { "lat": 40.8673331, "lon": -73.9560051 }, + { "lat": 40.8673424, "lon": -73.9558574 }, + { "lat": 40.8673533, "lon": -73.9556841 }, + { "lat": 40.8673582, "lon": -73.9553883 }, + { "lat": 40.8673400, "lon": -73.9549590 }, + { "lat": 40.8673347, "lon": -73.9548332 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 819859813, + "bounds": { + "minlat": 40.8674083, + "minlon": -73.9580990, + "maxlat": 40.8683111, + "maxlon": -73.9566270 + }, + "nodes": [ + 7656323506, + 7656323510, + 7656323511, + 7656323512, + 9283356056, + 7656323513, + 4204737889 + ], + "geometry": [ + { "lat": 40.8674083, "lon": -73.9566270 }, + { "lat": 40.8674854, "lon": -73.9568159 }, + { "lat": 40.8676139, "lon": -73.9570233 }, + { "lat": 40.8678417, "lon": -73.9572719 }, + { "lat": 40.8680208, "lon": -73.9575876 }, + { "lat": 40.8680973, "lon": -73.9577225 }, + { "lat": 40.8683111, "lon": -73.9580990 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 819998617, + "bounds": { + "minlat": 40.7876209, + "minlon": -74.0184749, + "maxlat": 40.7885509, + "maxlon": -74.0177207 + }, + "nodes": [ + 7657469031, + 7657469032 + ], + "geometry": [ + { "lat": 40.7885509, "lon": -74.0177207 }, + { "lat": 40.7876209, "lon": -74.0184749 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 820103378, + "bounds": { + "minlat": 40.8719018, + "minlon": -74.0127358, + "maxlat": 40.8722269, + "maxlon": -74.0089435 + }, + "nodes": [ + 4472892621, + 10947500748, + 567269885, + 10947500735, + 10947500738, + 10947500750, + 10947500743, + 567269886, + 567269887, + 10947500744, + 10947500740, + 567269888, + 10947500734, + 10947500747, + 567269889, + 10947500737, + 10940833245, + 567269890, + 10940833251, + 567269892, + 10940833259, + 10940833288, + 10940833267, + 4205863450 + ], + "geometry": [ + { "lat": 40.8722269, "lon": -74.0127358 }, + { "lat": 40.8721951, "lon": -74.0125824 }, + { "lat": 40.8721693, "lon": -74.0124452 }, + { "lat": 40.8721186, "lon": -74.0121714 }, + { "lat": 40.8720923, "lon": -74.0120365 }, + { "lat": 40.8720667, "lon": -74.0119018 }, + { "lat": 40.8720412, "lon": -74.0117579 }, + { "lat": 40.8720186, "lon": -74.0116207 }, + { "lat": 40.8719991, "lon": -74.0114822 }, + { "lat": 40.8719819, "lon": -74.0113408 }, + { "lat": 40.8719679, "lon": -74.0112006 }, + { "lat": 40.8719564, "lon": -74.0110620 }, + { "lat": 40.8719472, "lon": -74.0109192 }, + { "lat": 40.8719416, "lon": -74.0107815 }, + { "lat": 40.8719383, "lon": -74.0106376 }, + { "lat": 40.8719375, "lon": -74.0104965 }, + { "lat": 40.8719389, "lon": -74.0103534 }, + { "lat": 40.8719463, "lon": -74.0096443 }, + { "lat": 40.8719461, "lon": -74.0095040 }, + { "lat": 40.8719442, "lon": -74.0093650 }, + { "lat": 40.8719398, "lon": -74.0092237 }, + { "lat": 40.8719330, "lon": -74.0091484 }, + { "lat": 40.8719129, "lon": -74.0090314 }, + { "lat": 40.8719018, "lon": -74.0089435 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 820181395, + "bounds": { + "minlat": 40.8095627, + "minlon": -73.9521051, + "maxlat": 40.8096546, + "maxlon": -73.9520405 + }, + "nodes": [ + 5481863722, + 10171069701, + 7658609427 + ], + "geometry": [ + { "lat": 40.8096546, "lon": -73.9520405 }, + { "lat": 40.8096049, "lon": -73.9520766 }, + { "lat": 40.8095627, "lon": -73.9521051 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820181396, + "bounds": { + "minlat": 40.8091557, + "minlon": -73.9522956, + "maxlat": 40.8095353, + "maxlon": -73.9520354 + }, + "nodes": [ + 7658609428, + 7658609429 + ], + "geometry": [ + { "lat": 40.8095353, "lon": -73.9520354 }, + { "lat": 40.8091557, "lon": -73.9522956 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820181397, + "bounds": { + "minlat": 40.8095353, + "minlon": -73.9521051, + "maxlat": 40.8095627, + "maxlon": -73.9520354 + }, + "nodes": [ + 7658609427, + 7658609428 + ], + "geometry": [ + { "lat": 40.8095627, "lon": -73.9521051 }, + { "lat": 40.8095353, "lon": -73.9520354 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820184149, + "bounds": { + "minlat": 40.8084819, + "minlon": -73.9526789, + "maxlat": 40.8085950, + "maxlon": -73.9524108 + }, + "nodes": [ + 7658581157, + 11298975879, + 12423311559, + 5481863725 + ], + "geometry": [ + { "lat": 40.8085950, "lon": -73.9526789 }, + { "lat": 40.8085380, "lon": -73.9525396 }, + { "lat": 40.8085229, "lon": -73.9525049 }, + { "lat": 40.8084819, "lon": -73.9524108 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820187558, + "bounds": { + "minlat": 40.7839134, + "minlon": -74.0130376, + "maxlat": 40.7839906, + "maxlon": -74.0128570 + }, + "nodes": [ + 7658684726, + 7658684734, + 103862596 + ], + "geometry": [ + { "lat": 40.7839134, "lon": -74.0128570 }, + { "lat": 40.7839576, "lon": -74.0129604 }, + { "lat": 40.7839906, "lon": -74.0130376 } + ], + "tags": { + "highway": "residential", + "name": "56th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "56th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 820187559, + "bounds": { + "minlat": 40.7838907, + "minlon": -74.0128570, + "maxlat": 40.7839134, + "maxlon": -74.0128074 + }, + "nodes": [ + 4499303039, + 7658684726 + ], + "geometry": [ + { "lat": 40.7838907, "lon": -74.0128074 }, + { "lat": 40.7839134, "lon": -74.0128570 } + ], + "tags": { + "highway": "residential", + "name": "56th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "56th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 820246943, + "bounds": { + "minlat": 40.7743821, + "minlon": -73.9074607, + "maxlat": 40.7756150, + "maxlon": -73.9059613 + }, + "nodes": [ + 7659224076, + 7659224077 + ], + "geometry": [ + { "lat": 40.7756150, "lon": -73.9059613 }, + { "lat": 40.7743821, "lon": -73.9074607 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820246944, + "bounds": { + "minlat": 40.7741539, + "minlon": -73.9074607, + "maxlat": 40.7743821, + "maxlon": -73.9071398 + }, + "nodes": [ + 7659224077, + 9776150560, + 3144560089 + ], + "geometry": [ + { "lat": 40.7743821, "lon": -73.9074607 }, + { "lat": 40.7741925, "lon": -73.9071941 }, + { "lat": 40.7741539, "lon": -73.9071398 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820246945, + "bounds": { + "minlat": 40.7737888, + "minlon": -73.9086149, + "maxlat": 40.7740306, + "maxlon": -73.9082626 + }, + "nodes": [ + 5867036831, + 9242368799, + 7659224081, + 5867036832 + ], + "geometry": [ + { "lat": 40.7737888, "lon": -73.9082626 }, + { "lat": 40.7739851, "lon": -73.9085485 }, + { "lat": 40.7740098, "lon": -73.9085846 }, + { "lat": 40.7740306, "lon": -73.9086149 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820248535, + "bounds": { + "minlat": 40.7717156, + "minlon": -73.9111453, + "maxlat": 40.7719507, + "maxlon": -73.9107988 + }, + "nodes": [ + 5324930920, + 9242368805, + 7659298995, + 5324931121 + ], + "geometry": [ + { "lat": 40.7717156, "lon": -73.9107988 }, + { "lat": 40.7719097, "lon": -73.9110849 }, + { "lat": 40.7719344, "lon": -73.9111213 }, + { "lat": 40.7719507, "lon": -73.9111453 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820248536, + "bounds": { + "minlat": 40.7706363, + "minlon": -73.9120996, + "maxlat": 40.7717156, + "maxlon": -73.9107988 + }, + "nodes": [ + 5324930915, + 5324930920 + ], + "geometry": [ + { "lat": 40.7706363, "lon": -73.9120996 }, + { "lat": 40.7717156, "lon": -73.9107988 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820248537, + "bounds": { + "minlat": 40.7705908, + "minlon": -73.9122396, + "maxlat": 40.7706363, + "maxlon": -73.9120996 + }, + "nodes": [ + 5324930913, + 7659298987, + 5324930915 + ], + "geometry": [ + { "lat": 40.7705908, "lon": -73.9122396 }, + { "lat": 40.7705942, "lon": -73.9121696 }, + { "lat": 40.7706363, "lon": -73.9120996 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820248538, + "bounds": { + "minlat": 40.7710343, + "minlon": -73.9129012, + "maxlat": 40.7723063, + "maxlon": -73.9113802 + }, + "nodes": [ + 2883612561, + 2883612565, + 2883612568 + ], + "geometry": [ + { "lat": 40.7710343, "lon": -73.9129012 }, + { "lat": 40.7718416, "lon": -73.9119193 }, + { "lat": 40.7723063, "lon": -73.9113802 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820248539, + "bounds": { + "minlat": 40.7725641, + "minlon": -73.9120716, + "maxlat": 40.7727991, + "maxlon": -73.9117290 + }, + "nodes": [ + 7659298988, + 9242368767, + 7659298989 + ], + "geometry": [ + { "lat": 40.7727991, "lon": -73.9120716 }, + { "lat": 40.7726029, "lon": -73.9117856 }, + { "lat": 40.7725641, "lon": -73.9117290 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820248540, + "bounds": { + "minlat": 40.7715610, + "minlon": -73.9136192, + "maxlat": 40.7727991, + "maxlon": -73.9120716 + }, + "nodes": [ + 7659298988, + 5324928517, + 2883612566, + 7659298990 + ], + "geometry": [ + { "lat": 40.7727991, "lon": -73.9120716 }, + { "lat": 40.7720592, "lon": -73.9129964 }, + { "lat": 40.7719804, "lon": -73.9130950 }, + { "lat": 40.7715610, "lon": -73.9136192 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820248541, + "bounds": { + "minlat": 40.7713140, + "minlon": -73.9139796, + "maxlat": 40.7717935, + "maxlon": -73.9132566 + }, + "nodes": [ + 11619734110, + 11619734111, + 7659298990, + 9242368769, + 7659298991 + ], + "geometry": [ + { "lat": 40.7717935, "lon": -73.9139796 }, + { "lat": 40.7717565, "lon": -73.9139221 }, + { "lat": 40.7715610, "lon": -73.9136192 }, + { "lat": 40.7713511, "lon": -73.9133110 }, + { "lat": 40.7713140, "lon": -73.9132566 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820248542, + "bounds": { + "minlat": 40.7707917, + "minlon": -73.9132728, + "maxlat": 40.7713007, + "maxlon": -73.9125628 + }, + "nodes": [ + 2883612563, + 7659293845, + 9242368775, + 2883612561, + 9242368777, + 5324930911 + ], + "geometry": [ + { "lat": 40.7713007, "lon": -73.9132728 }, + { "lat": 40.7712819, "lon": -73.9132466 }, + { "lat": 40.7712564, "lon": -73.9132110 }, + { "lat": 40.7710343, "lon": -73.9129012 }, + { "lat": 40.7708319, "lon": -73.9126188 }, + { "lat": 40.7707917, "lon": -73.9125628 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820248544, + "bounds": { + "minlat": 40.7696825, + "minlon": -73.9124956, + "maxlat": 40.7700277, + "maxlon": -73.9121721 + }, + "nodes": [ + 42818227, + 6406731078, + 6406731415, + 597443933, + 6406731008 + ], + "geometry": [ + { "lat": 40.7700277, "lon": -73.9121721 }, + { "lat": 40.7699865, "lon": -73.9122258 }, + { "lat": 40.7698063, "lon": -73.9123777 }, + { "lat": 40.7697289, "lon": -73.9124529 }, + { "lat": 40.7696825, "lon": -73.9124956 } + ], + "tags": { + "highway": "residential", + "name": "37th Street" + } +}, +{ + "type": "way", + "id": 820259747, + "bounds": { + "minlat": 40.7703057, + "minlon": -73.9165405, + "maxlat": 40.7704363, + "maxlon": -73.9160810 + }, + "nodes": [ + 3778263939, + 2087152385, + 6406731053, + 42905185 + ], + "geometry": [ + { "lat": 40.7703057, "lon": -73.9160810 }, + { "lat": 40.7703721, "lon": -73.9163569 }, + { "lat": 40.7703898, "lon": -73.9164268 }, + { "lat": 40.7704363, "lon": -73.9165405 } + ], + "tags": { + "foot": "no", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Astoria Boulevard North", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 820259748, + "bounds": { + "minlat": 40.7699569, + "minlon": -73.9144805, + "maxlat": 40.7700472, + "maxlon": -73.9144077 + }, + "nodes": [ + 42866632, + 597443931 + ], + "geometry": [ + { "lat": 40.7700472, "lon": -73.9144077 }, + { "lat": 40.7699569, "lon": -73.9144805 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:right": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "35th Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820264099, + "bounds": { + "minlat": 40.7694413, + "minlon": -73.9155396, + "maxlat": 40.7695983, + "maxlon": -73.9154877 + }, + "nodes": [ + 3020369631, + 6406731445, + 7659376760, + 7659376756 + ], + "geometry": [ + { "lat": 40.7695983, "lon": -73.9154877 }, + { "lat": 40.7695053, "lon": -73.9155199 }, + { "lat": 40.7694642, "lon": -73.9155342 }, + { "lat": 40.7694413, "lon": -73.9155396 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820264100, + "bounds": { + "minlat": 40.7693318, + "minlon": -73.9158513, + "maxlat": 40.7694923, + "maxlon": -73.9157279 + }, + "nodes": [ + 7659376757, + 7659376758 + ], + "geometry": [ + { "lat": 40.7694923, "lon": -73.9157279 }, + { "lat": 40.7693318, "lon": -73.9158513 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820264101, + "bounds": { + "minlat": 40.7692495, + "minlon": -73.9156810, + "maxlat": 40.7694413, + "maxlon": -73.9155396 + }, + "nodes": [ + 7659376756, + 7659376759 + ], + "geometry": [ + { "lat": 40.7694413, "lon": -73.9155396 }, + { "lat": 40.7692495, "lon": -73.9156810 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820264102, + "bounds": { + "minlat": 40.7694642, + "minlon": -73.9157279, + "maxlat": 40.7694923, + "maxlon": -73.9155342 + }, + "nodes": [ + 7659376757, + 7659376760 + ], + "geometry": [ + { "lat": 40.7694923, "lon": -73.9157279 }, + { "lat": 40.7694642, "lon": -73.9155342 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820264103, + "bounds": { + "minlat": 40.7694913, + "minlon": -73.9161477, + "maxlat": 40.7696940, + "maxlon": -73.9161093 + }, + "nodes": [ + 3020369619, + 7732086292, + 7659376761 + ], + "geometry": [ + { "lat": 40.7696940, "lon": -73.9161093 }, + { "lat": 40.7696053, "lon": -73.9161268 }, + { "lat": 40.7694913, "lon": -73.9161477 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 820264104, + "bounds": { + "minlat": 40.7694637, + "minlon": -73.9168064, + "maxlat": 40.7696436, + "maxlon": -73.9166707 + }, + "nodes": [ + 7659376762, + 7659376763 + ], + "geometry": [ + { "lat": 40.7696436, "lon": -73.9166707 }, + { "lat": 40.7694637, "lon": -73.9168064 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820264105, + "bounds": { + "minlat": 40.7696284, + "minlon": -73.9165849, + "maxlat": 40.7697919, + "maxlon": -73.9165391 + }, + "nodes": [ + 13098035648, + 7732086329, + 7659376767 + ], + "geometry": [ + { "lat": 40.7697919, "lon": -73.9165391 }, + { "lat": 40.7696704, "lon": -73.9165742 }, + { "lat": 40.7696284, "lon": -73.9165849 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820264106, + "bounds": { + "minlat": 40.7693816, + "minlon": -73.9170106, + "maxlat": 40.7695584, + "maxlon": -73.9166291 + }, + "nodes": [ + 7659376765, + 7659376763, + 6406731458, + 7659376766 + ], + "geometry": [ + { "lat": 40.7693816, "lon": -73.9166291 }, + { "lat": 40.7694637, "lon": -73.9168064 }, + { "lat": 40.7695262, "lon": -73.9169412 }, + { "lat": 40.7695584, "lon": -73.9170106 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820264107, + "bounds": { + "minlat": 40.7696284, + "minlon": -73.9166707, + "maxlat": 40.7696436, + "maxlon": -73.9165849 + }, + "nodes": [ + 7659376762, + 7659376767 + ], + "geometry": [ + { "lat": 40.7696436, "lon": -73.9166707 }, + { "lat": 40.7696284, "lon": -73.9165849 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820264108, + "bounds": { + "minlat": 40.7694913, + "minlon": -73.9165849, + "maxlat": 40.7696284, + "maxlon": -73.9161477 + }, + "nodes": [ + 7659376767, + 7659376768, + 7659376761 + ], + "geometry": [ + { "lat": 40.7696284, "lon": -73.9165849 }, + { "lat": 40.7695211, "lon": -73.9163436 }, + { "lat": 40.7694913, "lon": -73.9161477 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820271029, + "bounds": { + "minlat": 40.7741160, + "minlon": -73.9905569, + "maxlat": 40.7741864, + "maxlon": -73.9905071 + }, + "nodes": [ + 7659477360, + 10098677141, + 7659477361 + ], + "geometry": [ + { "lat": 40.7741160, "lon": -73.9905569 }, + { "lat": 40.7741735, "lon": -73.9905162 }, + { "lat": 40.7741864, "lon": -73.9905071 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820272721, + "bounds": { + "minlat": 40.7681206, + "minlon": -73.9076799, + "maxlat": 40.7683351, + "maxlon": -73.9075909 + }, + "nodes": [ + 7085445189, + 7659491435, + 7659491431 + ], + "geometry": [ + { "lat": 40.7683351, "lon": -73.9076634 }, + { "lat": 40.7682617, "lon": -73.9076799 }, + { "lat": 40.7681206, "lon": -73.9075909 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820272722, + "bounds": { + "minlat": 40.7681642, + "minlon": -73.9073469, + "maxlat": 40.7682797, + "maxlon": -73.9073177 + }, + "nodes": [ + 7659491432, + 8017901172, + 7659491433 + ], + "geometry": [ + { "lat": 40.7682797, "lon": -73.9073177 }, + { "lat": 40.7682047, "lon": -73.9073357 }, + { "lat": 40.7681642, "lon": -73.9073469 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820272723, + "bounds": { + "minlat": 40.7680908, + "minlon": -73.9073469, + "maxlat": 40.7681642, + "maxlon": -73.9071609 + }, + "nodes": [ + 7659491433, + 8017901164, + 7659491434 + ], + "geometry": [ + { "lat": 40.7681642, "lon": -73.9073469 }, + { "lat": 40.7681198, "lon": -73.9072387 }, + { "lat": 40.7680908, "lon": -73.9071609 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820272724, + "bounds": { + "minlat": 40.7679714, + "minlon": -73.9075909, + "maxlat": 40.7681206, + "maxlon": -73.9072571 + }, + "nodes": [ + 7659491431, + 6453096672, + 7085444384 + ], + "geometry": [ + { "lat": 40.7681206, "lon": -73.9075909 }, + { "lat": 40.7680028, "lon": -73.9073327 }, + { "lat": 40.7679714, "lon": -73.9072571 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820408831, + "bounds": { + "minlat": 40.7576985, + "minlon": -73.9074798, + "maxlat": 40.7583293, + "maxlon": -73.9073050 + }, + "nodes": [ + 42935096, + 11649744866, + 42819560 + ], + "geometry": [ + { "lat": 40.7576985, "lon": -73.9074798 }, + { "lat": 40.7578943, "lon": -73.9074653 }, + { "lat": 40.7583293, "lon": -73.9073050 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "54th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820408832, + "bounds": { + "minlat": 40.7569692, + "minlon": -73.9077166, + "maxlat": 40.7576815, + "maxlon": -73.9007897 + }, + "nodes": [ + 2503677679, + 7668020424, + 2503677681, + 7668020423, + 42856610, + 6450781353, + 42855355, + 6450781357, + 42856620, + 13670886534, + 7916189154, + 13670886537, + 42856632, + 10259329902, + 10259329899, + 7668020421, + 42856636, + 7668020420, + 42844394, + 7661770904, + 1414020922 + ], + "geometry": [ + { "lat": 40.7569692, "lon": -73.9077166 }, + { "lat": 40.7569867, "lon": -73.9074526 }, + { "lat": 40.7569950, "lon": -73.9073726 }, + { "lat": 40.7570042, "lon": -73.9072845 }, + { "lat": 40.7570934, "lon": -73.9064690 }, + { "lat": 40.7571788, "lon": -73.9056496 }, + { "lat": 40.7571871, "lon": -73.9055754 }, + { "lat": 40.7571971, "lon": -73.9054869 }, + { "lat": 40.7572570, "lon": -73.9048474 }, + { "lat": 40.7573048, "lon": -73.9043849 }, + { "lat": 40.7573362, "lon": -73.9040970 }, + { "lat": 40.7573532, "lon": -73.9039240 }, + { "lat": 40.7573783, "lon": -73.9036784 }, + { "lat": 40.7573821, "lon": -73.9036492 }, + { "lat": 40.7574169, "lon": -73.9033185 }, + { "lat": 40.7574647, "lon": -73.9028616 }, + { "lat": 40.7574725, "lon": -73.9027867 }, + { "lat": 40.7574806, "lon": -73.9027096 }, + { "lat": 40.7575650, "lon": -73.9019032 }, + { "lat": 40.7575784, "lon": -73.9017747 }, + { "lat": 40.7576815, "lon": -73.9007897 } + ], + "tags": { + "cycleway": "lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "31st Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820408834, + "bounds": { + "minlat": 40.7583293, + "minlon": -73.9073050, + "maxlat": 40.7591602, + "maxlon": -73.9066887 + }, + "nodes": [ + 7660653654, + 7659708986, + 3749657914, + 42819560 + ], + "geometry": [ + { "lat": 40.7591602, "lon": -73.9066887 }, + { "lat": 40.7589240, "lon": -73.9068399 }, + { "lat": 40.7587554, "lon": -73.9069835 }, + { "lat": 40.7583293, "lon": -73.9073050 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Hobart Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820422936, + "bounds": { + "minlat": 40.7558063, + "minlon": -73.9071618, + "maxlat": 40.7559935, + "maxlon": -73.9053603 + }, + "nodes": [ + 7660830658, + 8593804483, + 8256260715, + 8593804422, + 7660830660, + 8805601712, + 7660830662, + 6450781371, + 7660830659 + ], + "geometry": [ + { "lat": 40.7558063, "lon": -73.9071618 }, + { "lat": 40.7558150, "lon": -73.9070779 }, + { "lat": 40.7558529, "lon": -73.9067131 }, + { "lat": 40.7558918, "lon": -73.9063389 }, + { "lat": 40.7559005, "lon": -73.9062553 }, + { "lat": 40.7559088, "lon": -73.9061755 }, + { "lat": 40.7559484, "lon": -73.9057945 }, + { "lat": 40.7559859, "lon": -73.9054336 }, + { "lat": 40.7559935, "lon": -73.9053603 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820423467, + "bounds": { + "minlat": 40.7530144, + "minlon": -73.9111133, + "maxlat": 40.7537363, + "maxlon": -73.9108430 + }, + "nodes": [ + 2520377379, + 9188971686, + 11643674653, + 12046186746, + 8088605711, + 9188971687, + 7660838295, + 9188971688, + 3938728150 + ], + "geometry": [ + { "lat": 40.7537363, "lon": -73.9111133 }, + { "lat": 40.7536032, "lon": -73.9110625 }, + { "lat": 40.7535136, "lon": -73.9110182 }, + { "lat": 40.7534970, "lon": -73.9110094 }, + { "lat": 40.7532156, "lon": -73.9108608 }, + { "lat": 40.7531811, "lon": -73.9108477 }, + { "lat": 40.7531444, "lon": -73.9108430 }, + { "lat": 40.7531004, "lon": -73.9108475 }, + { "lat": 40.7530144, "lon": -73.9108699 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Newtown Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820424902, + "bounds": { + "minlat": 40.7555979, + "minlon": -73.9090061, + "maxlat": 40.7558463, + "maxlon": -73.9083535 + }, + "nodes": [ + 2520377428, + 13716404536, + 13716404535, + 13716404534, + 13716404533, + 7707137692, + 13716404532 + ], + "geometry": [ + { "lat": 40.7558463, "lon": -73.9090061 }, + { "lat": 40.7557330, "lon": -73.9087556 }, + { "lat": 40.7556787, "lon": -73.9086382 }, + { "lat": 40.7556533, "lon": -73.9085685 }, + { "lat": 40.7556375, "lon": -73.9085189 }, + { "lat": 40.7556288, "lon": -73.9084851 }, + { "lat": 40.7555979, "lon": -73.9083535 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 820427263, + "bounds": { + "minlat": 40.7537243, + "minlon": -73.9129939, + "maxlat": 40.7538218, + "maxlon": -73.9127794 + }, + "nodes": [ + 7660889400, + 7660889401 + ], + "geometry": [ + { "lat": 40.7538218, "lon": -73.9129939 }, + { "lat": 40.7537243, "lon": -73.9127794 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820427264, + "bounds": { + "minlat": 40.7538218, + "minlon": -73.9129939, + "maxlat": 40.7539717, + "maxlon": -73.9128758 + }, + "nodes": [ + 3778141102, + 7660889400 + ], + "geometry": [ + { "lat": 40.7539717, "lon": -73.9128758 }, + { "lat": 40.7538218, "lon": -73.9129939 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820427265, + "bounds": { + "minlat": 40.7535545, + "minlon": -73.9128089, + "maxlat": 40.7535759, + "maxlon": -73.9126430 + }, + "nodes": [ + 7660889402, + 7660889399 + ], + "geometry": [ + { "lat": 40.7535759, "lon": -73.9128089 }, + { "lat": 40.7535545, "lon": -73.9126430 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820427266, + "bounds": { + "minlat": 40.7535759, + "minlon": -73.9128089, + "maxlat": 40.7537243, + "maxlon": -73.9127794 + }, + "nodes": [ + 7660889402, + 7660889401 + ], + "geometry": [ + { "lat": 40.7535759, "lon": -73.9128089 }, + { "lat": 40.7537243, "lon": -73.9127794 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820427267, + "bounds": { + "minlat": 40.7542839, + "minlon": -73.9121696, + "maxlat": 40.7544563, + "maxlon": -73.9117835 + }, + "nodes": [ + 3778141131, + 7660889403, + 8593804435, + 3778141148 + ], + "geometry": [ + { "lat": 40.7544563, "lon": -73.9121696 }, + { "lat": 40.7543739, "lon": -73.9119851 }, + { "lat": 40.7543183, "lon": -73.9118606 }, + { "lat": 40.7542839, "lon": -73.9117835 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820427268, + "bounds": { + "minlat": 40.7544888, + "minlon": -73.9123897, + "maxlat": 40.7550069, + "maxlon": -73.9119861 + }, + "nodes": [ + 7660889404, + 7660889405 + ], + "geometry": [ + { "lat": 40.7550069, "lon": -73.9119861 }, + { "lat": 40.7544888, "lon": -73.9123897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820427269, + "bounds": { + "minlat": 40.7546170, + "minlon": -73.9119861, + "maxlat": 40.7550069, + "maxlon": -73.9117900 + }, + "nodes": [ + 7660889404, + 3778141150, + 3778141151 + ], + "geometry": [ + { "lat": 40.7550069, "lon": -73.9119861 }, + { "lat": 40.7548090, "lon": -73.9118865 }, + { "lat": 40.7546170, "lon": -73.9117900 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820427270, + "bounds": { + "minlat": 40.7538637, + "minlon": -73.9129867, + "maxlat": 40.7541452, + "maxlon": -73.9123948 + }, + "nodes": [ + 7660889407, + 8593804497, + 7660889408 + ], + "geometry": [ + { "lat": 40.7541452, "lon": -73.9129867 }, + { "lat": 40.7541146, "lon": -73.9129224 }, + { "lat": 40.7538637, "lon": -73.9123948 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820427271, + "bounds": { + "minlat": 40.7540932, + "minlon": -73.9124521, + "maxlat": 40.7541478, + "maxlon": -73.9122106 + }, + "nodes": [ + 3778141103, + 3778141130 + ], + "geometry": [ + { "lat": 40.7540932, "lon": -73.9122106 }, + { "lat": 40.7541478, "lon": -73.9124521 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820427272, + "bounds": { + "minlat": 40.7542229, + "minlon": -73.9123391, + "maxlat": 40.7543326, + "maxlon": -73.9122559 + }, + "nodes": [ + 7660889409, + 7660889410 + ], + "geometry": [ + { "lat": 40.7542229, "lon": -73.9123391 }, + { "lat": 40.7543326, "lon": -73.9122559 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820427273, + "bounds": { + "minlat": 40.7544888, + "minlon": -73.9126581, + "maxlat": 40.7545497, + "maxlon": -73.9123897 + }, + "nodes": [ + 7660889411, + 8593804535, + 7660889412, + 7660889405 + ], + "geometry": [ + { "lat": 40.7545497, "lon": -73.9126581 }, + { "lat": 40.7545243, "lon": -73.9126059 }, + { "lat": 40.7545043, "lon": -73.9125648 }, + { "lat": 40.7544888, "lon": -73.9123897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820427274, + "bounds": { + "minlat": 40.7543326, + "minlon": -73.9123897, + "maxlat": 40.7544888, + "maxlon": -73.9122559 + }, + "nodes": [ + 7660889410, + 7660889405 + ], + "geometry": [ + { "lat": 40.7543326, "lon": -73.9122559 }, + { "lat": 40.7544888, "lon": -73.9123897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 820435799, + "bounds": { + "minlat": 40.7917080, + "minlon": -74.0167774, + "maxlat": 40.7917325, + "maxlon": -74.0167575 + }, + "nodes": [ + 7660979600, + 7660979601 + ], + "geometry": [ + { "lat": 40.7917080, "lon": -74.0167774 }, + { "lat": 40.7917325, "lon": -74.0167575 } + ], + "tags": { + "highway": "residential", + "name": "Polk Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Polk", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 820435800, + "bounds": { + "minlat": 40.7917325, + "minlon": -74.0167575, + "maxlat": 40.7920580, + "maxlon": -74.0164940 + }, + "nodes": [ + 7660979601, + 7660979624, + 103864959 + ], + "geometry": [ + { "lat": 40.7917325, "lon": -74.0167575 }, + { "lat": 40.7920153, "lon": -74.0165286 }, + { "lat": 40.7920580, "lon": -74.0164940 } + ], + "tags": { + "highway": "residential", + "name": "Polk Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Polk", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 820451956, + "bounds": { + "minlat": 40.7538646, + "minlon": -73.9083395, + "maxlat": 40.7550032, + "maxlon": -73.9081291 + }, + "nodes": [ + 7661119492, + 8593804466, + 7661119493 + ], + "geometry": [ + { "lat": 40.7550032, "lon": -73.9083395 }, + { "lat": 40.7539646, "lon": -73.9081476 }, + { "lat": 40.7538646, "lon": -73.9081291 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820451957, + "bounds": { + "minlat": 40.7550032, + "minlon": -73.9085724, + "maxlat": 40.7550462, + "maxlon": -73.9083395 + }, + "nodes": [ + 7660830668, + 8593804563, + 7661119492 + ], + "geometry": [ + { "lat": 40.7550462, "lon": -73.9085724 }, + { "lat": 40.7550261, "lon": -73.9084638 }, + { "lat": 40.7550032, "lon": -73.9083395 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820451958, + "bounds": { + "minlat": 40.7542826, + "minlon": -73.9090114, + "maxlat": 40.7552920, + "maxlon": -73.9084650 + }, + "nodes": [ + 42819566, + 7668020477, + 7660830668, + 7660838290, + 2520377432, + 8593722404, + 42819569 + ], + "geometry": [ + { "lat": 40.7552920, "lon": -73.9084650 }, + { "lat": 40.7552443, "lon": -73.9084814 }, + { "lat": 40.7550462, "lon": -73.9085724 }, + { "lat": 40.7549413, "lon": -73.9086157 }, + { "lat": 40.7546291, "lon": -73.9087773 }, + { "lat": 40.7543579, "lon": -73.9089595 }, + { "lat": 40.7542826, "lon": -73.9090114 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "51st Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820453578, + "bounds": { + "minlat": 40.7530862, + "minlon": -73.9089598, + "maxlat": 40.7535582, + "maxlon": -73.9088757 + }, + "nodes": [ + 3786044398, + 8088629368, + 7762260261 + ], + "geometry": [ + { "lat": 40.7535582, "lon": -73.9089598 }, + { "lat": 40.7532017, "lon": -73.9088956 }, + { "lat": 40.7530862, "lon": -73.9088757 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820453579, + "bounds": { + "minlat": 40.7536470, + "minlon": -73.9087926, + "maxlat": 40.7539167, + "maxlon": -73.9085934 + }, + "nodes": [ + 7661121864, + 7661121865 + ], + "geometry": [ + { "lat": 40.7539167, "lon": -73.9085934 }, + { "lat": 40.7536470, "lon": -73.9087926 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820453580, + "bounds": { + "minlat": 40.7538276, + "minlon": -73.9085934, + "maxlat": 40.7539167, + "maxlon": -73.9083948 + }, + "nodes": [ + 7661121864, + 7661121866 + ], + "geometry": [ + { "lat": 40.7539167, "lon": -73.9085934 }, + { "lat": 40.7538276, "lon": -73.9083948 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820453581, + "bounds": { + "minlat": 40.7535742, + "minlon": -73.9087926, + "maxlat": 40.7536470, + "maxlon": -73.9087791 + }, + "nodes": [ + 7661121865, + 7661121867 + ], + "geometry": [ + { "lat": 40.7536470, "lon": -73.9087926 }, + { "lat": 40.7535742, "lon": -73.9087791 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820453584, + "bounds": { + "minlat": 40.7536247, + "minlon": -73.9085551, + "maxlat": 40.7536484, + "maxlon": -73.9082341 + }, + "nodes": [ + 7661121871, + 8718502632, + 13442438585, + 13442438584, + 13442438583, + 7661121872 + ], + "geometry": [ + { "lat": 40.7536247, "lon": -73.9085551 }, + { "lat": 40.7536422, "lon": -73.9083638 }, + { "lat": 40.7536484, "lon": -73.9082922 }, + { "lat": 40.7536443, "lon": -73.9082634 }, + { "lat": 40.7536377, "lon": -73.9082459 }, + { "lat": 40.7536279, "lon": -73.9082341 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820453585, + "bounds": { + "minlat": 40.7531637, + "minlon": -73.9082341, + "maxlat": 40.7536279, + "maxlon": -73.9081558 + }, + "nodes": [ + 7661121872, + 8088629366, + 7661121873 + ], + "geometry": [ + { "lat": 40.7536279, "lon": -73.9082341 }, + { "lat": 40.7532881, "lon": -73.9081748 }, + { "lat": 40.7531637, "lon": -73.9081558 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 820456804, + "bounds": { + "minlat": 40.7531850, + "minlon": -73.9099338, + "maxlat": 40.7532560, + "maxlon": -73.9097965 + }, + "nodes": [ + 7661187836, + 8593804542, + 7661187837 + ], + "geometry": [ + { "lat": 40.7532560, "lon": -73.9099338 }, + { "lat": 40.7532086, "lon": -73.9098449 }, + { "lat": 40.7531850, "lon": -73.9097965 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820460201, + "bounds": { + "minlat": 40.7601426, + "minlon": -73.9097136, + "maxlat": 40.7607907, + "maxlon": -73.9091932 + }, + "nodes": [ + 7661226110, + 7661226111 + ], + "geometry": [ + { "lat": 40.7607907, "lon": -73.9091932 }, + { "lat": 40.7601426, "lon": -73.9097136 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820460202, + "bounds": { + "minlat": 40.7599842, + "minlon": -73.9097136, + "maxlat": 40.7601426, + "maxlon": -73.9095781 + }, + "nodes": [ + 7661226111, + 7661226112 + ], + "geometry": [ + { "lat": 40.7601426, "lon": -73.9097136 }, + { "lat": 40.7599842, "lon": -73.9095781 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820460203, + "bounds": { + "minlat": 40.7599063, + "minlon": -73.9095781, + "maxlat": 40.7599842, + "maxlon": -73.9093966 + }, + "nodes": [ + 7661226112, + 8595235417, + 7661226113 + ], + "geometry": [ + { "lat": 40.7599842, "lon": -73.9095781 }, + { "lat": 40.7599336, "lon": -73.9094602 }, + { "lat": 40.7599063, "lon": -73.9093966 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820476350, + "bounds": { + "minlat": 40.7710475, + "minlon": -73.9921933, + "maxlat": 40.7710862, + "maxlon": -73.9921017 + }, + "nodes": [ + 7661292939, + 10311344331, + 7661292940 + ], + "geometry": [ + { "lat": 40.7710862, "lon": -73.9921933 }, + { "lat": 40.7710591, "lon": -73.9921291 }, + { "lat": 40.7710475, "lon": -73.9921017 } + ], + "tags": { + "covered": "no", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 820476351, + "bounds": { + "minlat": 40.7715416, + "minlon": -73.9924983, + "maxlat": 40.7716311, + "maxlon": -73.9924373 + }, + "nodes": [ + 7661292942, + 10082657583, + 7661292943 + ], + "geometry": [ + { "lat": 40.7715416, "lon": -73.9924983 }, + { "lat": 40.7715724, "lon": -73.9924773 }, + { "lat": 40.7716311, "lon": -73.9924373 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 820529775, + "bounds": { + "minlat": 40.7686704, + "minlon": -73.9344627, + "maxlat": 40.7687643, + "maxlon": -73.9342247 + }, + "nodes": [ + 6866836876, + 6866836877 + ], + "geometry": [ + { "lat": 40.7687643, "lon": -73.9344627 }, + { "lat": 40.7686704, "lon": -73.9342247 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820529776, + "bounds": { + "minlat": 40.7688761, + "minlon": -73.9352514, + "maxlat": 40.7690265, + "maxlon": -73.9348917 + }, + "nodes": [ + 5753505459, + 5753505462 + ], + "geometry": [ + { "lat": 40.7688761, "lon": -73.9348917 }, + { "lat": 40.7690265, "lon": -73.9352514 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 820799974, + "bounds": { + "minlat": 40.7430970, + "minlon": -73.9521619, + "maxlat": 40.7433298, + "maxlon": -73.9520734 + }, + "nodes": [ + 7662619987, + 11622964711, + 7662619989, + 7662619988 + ], + "geometry": [ + { "lat": 40.7430970, "lon": -73.9521619 }, + { "lat": 40.7431501, "lon": -73.9521426 }, + { "lat": 40.7431849, "lon": -73.9521300 }, + { "lat": 40.7433298, "lon": -73.9520734 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 820817333, + "bounds": { + "minlat": 40.8208932, + "minlon": -73.9383297, + "maxlat": 40.8212718, + "maxlon": -73.9378456 + }, + "nodes": [ + 4205440421, + 9557088488, + 7662671174, + 7662671175, + 7662671176, + 7662671177, + 7662671182, + 7662671178, + 7662671179, + 7662671180, + 9557088487, + 7662671181 + ], + "geometry": [ + { "lat": 40.8212718, "lon": -73.9381912 }, + { "lat": 40.8211733, "lon": -73.9382618 }, + { "lat": 40.8210496, "lon": -73.9383297 }, + { "lat": 40.8210257, "lon": -73.9383211 }, + { "lat": 40.8210061, "lon": -73.9382886 }, + { "lat": 40.8209027, "lon": -73.9380279 }, + { "lat": 40.8208932, "lon": -73.9380053 }, + { "lat": 40.8209031, "lon": -73.9379781 }, + { "lat": 40.8209425, "lon": -73.9379494 }, + { "lat": 40.8209920, "lon": -73.9379158 }, + { "lat": 40.8210213, "lon": -73.9379018 }, + { "lat": 40.8211261, "lon": -73.9378456 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 820858328, + "bounds": { + "minlat": 40.8749349, + "minlon": -74.0121547, + "maxlat": 40.8751807, + "maxlon": -74.0118838 + }, + "nodes": [ + 7663069761, + 7663069762, + 7663069763, + 7663069764, + 7663069765, + 7663069766, + 7663069767 + ], + "geometry": [ + { "lat": 40.8751807, "lon": -74.0120938 }, + { "lat": 40.8751327, "lon": -74.0119235 }, + { "lat": 40.8751068, "lon": -74.0118838 }, + { "lat": 40.8750265, "lon": -74.0118865 }, + { "lat": 40.8749391, "lon": -74.0119226 }, + { "lat": 40.8749349, "lon": -74.0119697 }, + { "lat": 40.8749731, "lon": -74.0121547 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821138316, + "bounds": { + "minlat": 40.7489654, + "minlon": -73.9104870, + "maxlat": 40.7490706, + "maxlon": -73.9099506 + }, + "nodes": [ + 7667086996, + 7667084771, + 7667086997 + ], + "geometry": [ + { "lat": 40.7490706, "lon": -73.9104870 }, + { "lat": 40.7490038, "lon": -73.9100531 }, + { "lat": 40.7489654, "lon": -73.9099506 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 821141973, + "bounds": { + "minlat": 40.7536331, + "minlon": -73.9145488, + "maxlat": 40.7559709, + "maxlon": -73.9126108 + }, + "nodes": [ + 8088642722, + 9188971707, + 8088629381, + 12046186747, + 8593793994, + 2402842566 + ], + "geometry": [ + { "lat": 40.7536331, "lon": -73.9145488 }, + { "lat": 40.7536975, "lon": -73.9144683 }, + { "lat": 40.7537471, "lon": -73.9144243 }, + { "lat": 40.7539999, "lon": -73.9142182 }, + { "lat": 40.7559020, "lon": -73.9126676 }, + { "lat": 40.7559709, "lon": -73.9126108 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "48th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete:plates", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 821141974, + "bounds": { + "minlat": 40.7537807, + "minlon": -73.9152649, + "maxlat": 40.7540712, + "maxlon": -73.9146889 + }, + "nodes": [ + 6450837704, + 9188971709, + 9188971708, + 8593804450, + 42824187 + ], + "geometry": [ + { "lat": 40.7537807, "lon": -73.9146889 }, + { "lat": 40.7538083, "lon": -73.9147093 }, + { "lat": 40.7538238, "lon": -73.9147334 }, + { "lat": 40.7540486, "lon": -73.9151922 }, + { "lat": 40.7540712, "lon": -73.9152649 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "highway": "residential", + "lit": "yes", + "name": "34th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 821154009, + "bounds": { + "minlat": 40.7476901, + "minlon": -73.9259163, + "maxlat": 40.7478636, + "maxlon": -73.9259097 + }, + "nodes": [ + 5867098661, + 5867098662 + ], + "geometry": [ + { "lat": 40.7476901, "lon": -73.9259097 }, + { "lat": 40.7478636, "lon": -73.9259163 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 821155073, + "bounds": { + "minlat": 40.7482041, + "minlon": -73.9228562, + "maxlat": 40.7483781, + "maxlon": -73.9217631 + }, + "nodes": [ + 5444865949, + 12374111079, + 5444865956 + ], + "geometry": [ + { "lat": 40.7483781, "lon": -73.9217631 }, + { "lat": 40.7482445, "lon": -73.9224918 }, + { "lat": 40.7482041, "lon": -73.9228562 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 821158114, + "bounds": { + "minlat": 40.7458503, + "minlon": -73.9321505, + "maxlat": 40.7460027, + "maxlon": -73.9319412 + }, + "nodes": [ + 5482217753, + 5482217752, + 5482217751 + ], + "geometry": [ + { "lat": 40.7460027, "lon": -73.9319412 }, + { "lat": 40.7458503, "lon": -73.9319694 }, + { "lat": 40.7458711, "lon": -73.9321505 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 821160458, + "bounds": { + "minlat": 40.7438544, + "minlon": -73.9147431, + "maxlat": 40.7439326, + "maxlon": -73.9140711 + }, + "nodes": [ + 5481946360, + 10762233955, + 7667245263 + ], + "geometry": [ + { "lat": 40.7439326, "lon": -73.9147431 }, + { "lat": 40.7439245, "lon": -73.9146733 }, + { "lat": 40.7438544, "lon": -73.9140711 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 821160459, + "bounds": { + "minlat": 40.7438544, + "minlon": -73.9140711, + "maxlat": 40.7442314, + "maxlon": -73.9137556 + }, + "nodes": [ + 7667245263, + 11539481402, + 7667245264, + 10762233962, + 6349964621 + ], + "geometry": [ + { "lat": 40.7438544, "lon": -73.9140711 }, + { "lat": 40.7439163, "lon": -73.9139861 }, + { "lat": 40.7442314, "lon": -73.9139142 }, + { "lat": 40.7442180, "lon": -73.9138280 }, + { "lat": 40.7442068, "lon": -73.9137556 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 821162339, + "bounds": { + "minlat": 40.7461487, + "minlon": -73.9109177, + "maxlat": 40.7462566, + "maxlon": -73.9103679 + }, + "nodes": [ + 7667246350, + 7127815238 + ], + "geometry": [ + { "lat": 40.7462566, "lon": -73.9109177 }, + { "lat": 40.7461487, "lon": -73.9103679 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 821162340, + "bounds": { + "minlat": 40.7461487, + "minlon": -73.9103679, + "maxlat": 40.7465269, + "maxlon": -73.9102941 + }, + "nodes": [ + 7667246352, + 7127815238 + ], + "geometry": [ + { "lat": 40.7465269, "lon": -73.9102941 }, + { "lat": 40.7461487, "lon": -73.9103679 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 821278619, + "bounds": { + "minlat": 40.8168163, + "minlon": -73.9591103, + "maxlat": 40.8171879, + "maxlon": -73.9586210 + }, + "nodes": [ + 7668264638, + 7668264639, + 7732571912, + 7668264640, + 7668264641, + 7668264638 + ], + "geometry": [ + { "lat": 40.8171879, "lon": -73.9589355 }, + { "lat": 40.8169470, "lon": -73.9591103 }, + { "lat": 40.8168660, "lon": -73.9589155 }, + { "lat": 40.8168163, "lon": -73.9587958 }, + { "lat": 40.8170573, "lon": -73.9586210 }, + { "lat": 40.8171879, "lon": -73.9589355 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "leisure": "park", + "name": "The Plaza", + "operator": "Columbia University" + } +}, +{ + "type": "way", + "id": 821333951, + "bounds": { + "minlat": 40.7166976, + "minlon": -73.9855314, + "maxlat": 40.7170348, + "maxlon": -73.9853580 + }, + "nodes": [ + 7668835409, + 8310245552, + 7668835410, + 7668835411 + ], + "geometry": [ + { "lat": 40.7166976, "lon": -73.9855314 }, + { "lat": 40.7167606, "lon": -73.9854990 }, + { "lat": 40.7167716, "lon": -73.9854934 }, + { "lat": 40.7170348, "lon": -73.9853580 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 821333952, + "bounds": { + "minlat": 40.7166530, + "minlon": -73.9846058, + "maxlat": 40.7167092, + "maxlon": -73.9844001 + }, + "nodes": [ + 7668835412, + 8310245551, + 7668835413, + 7668835414 + ], + "geometry": [ + { "lat": 40.7166530, "lon": -73.9844001 }, + { "lat": 40.7166735, "lon": -73.9844746 }, + { "lat": 40.7166807, "lon": -73.9845009 }, + { "lat": 40.7167092, "lon": -73.9846058 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 821339613, + "bounds": { + "minlat": 40.8274158, + "minlon": -73.9165960, + "maxlat": 40.8275746, + "maxlon": -73.9165092 + }, + "nodes": [ + 7668870509, + 7668870511, + 7668870510 + ], + "geometry": [ + { "lat": 40.8274158, "lon": -73.9165960 }, + { "lat": 40.8275339, "lon": -73.9165314 }, + { "lat": 40.8275746, "lon": -73.9165092 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821340752, + "bounds": { + "minlat": 40.7941898, + "minlon": -73.9389923, + "maxlat": 40.7944841, + "maxlon": -73.9387864 + }, + "nodes": [ + 7668880139, + 7924346786, + 7668880140 + ], + "geometry": [ + { "lat": 40.7941898, "lon": -73.9389923 }, + { "lat": 40.7942877, "lon": -73.9389238 }, + { "lat": 40.7944841, "lon": -73.9387864 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 821349853, + "bounds": { + "minlat": 40.8185584, + "minlon": -73.9116769, + "maxlat": 40.8189511, + "maxlon": -73.9108912 + }, + "nodes": [ + 7668940838, + 7668940839, + 7668940840, + 7668940841, + 7668940842, + 7668940843, + 7668940844, + 7668940845, + 7668940846, + 7668940847, + 7668940848, + 7668940849, + 7668940850, + 7668940851, + 7668940852, + 7668940853, + 7668940854, + 7668940855, + 7668940856, + 7668940857, + 7668940858, + 7668940859, + 7668940860, + 7668940844 + ], + "geometry": [ + { "lat": 40.8185584, "lon": -73.9108912 }, + { "lat": 40.8185839, "lon": -73.9110393 }, + { "lat": 40.8186244, "lon": -73.9112249 }, + { "lat": 40.8186506, "lon": -73.9112909 }, + { "lat": 40.8186898, "lon": -73.9113491 }, + { "lat": 40.8187422, "lon": -73.9114058 }, + { "lat": 40.8187988, "lon": -73.9114136 }, + { "lat": 40.8188410, "lon": -73.9113979 }, + { "lat": 40.8188835, "lon": -73.9113894 }, + { "lat": 40.8189016, "lon": -73.9113936 }, + { "lat": 40.8189251, "lon": -73.9114133 }, + { "lat": 40.8189440, "lon": -73.9114631 }, + { "lat": 40.8189511, "lon": -73.9115150 }, + { "lat": 40.8189409, "lon": -73.9115679 }, + { "lat": 40.8189094, "lon": -73.9116302 }, + { "lat": 40.8188741, "lon": -73.9116655 }, + { "lat": 40.8188372, "lon": -73.9116759 }, + { "lat": 40.8188003, "lon": -73.9116769 }, + { "lat": 40.8187665, "lon": -73.9116541 }, + { "lat": 40.8187555, "lon": -73.9116188 }, + { "lat": 40.8187492, "lon": -73.9115731 }, + { "lat": 40.8187508, "lon": -73.9115410 }, + { "lat": 40.8187602, "lon": -73.9115046 }, + { "lat": 40.8187988, "lon": -73.9114136 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821356235, + "bounds": { + "minlat": 40.8037458, + "minlon": -73.9214212, + "maxlat": 40.8041926, + "maxlon": -73.9208251 + }, + "nodes": [ + 7038610359, + 11427299933, + 7707148389, + 7707148388, + 7707148387, + 7668989444, + 7668989445, + 11427299932, + 7038610362 + ], + "geometry": [ + { "lat": 40.8041926, "lon": -73.9212026 }, + { "lat": 40.8040896, "lon": -73.9212808 }, + { "lat": 40.8039553, "lon": -73.9213828 }, + { "lat": 40.8038906, "lon": -73.9214212 }, + { "lat": 40.8038591, "lon": -73.9214036 }, + { "lat": 40.8038354, "lon": -73.9213669 }, + { "lat": 40.8037458, "lon": -73.9210530 }, + { "lat": 40.8039303, "lon": -73.9209072 }, + { "lat": 40.8040343, "lon": -73.9208251 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821356236, + "bounds": { + "minlat": 40.8031027, + "minlon": -73.9206906, + "maxlat": 40.8034416, + "maxlon": -73.9202548 + }, + "nodes": [ + 7668989446, + 11427299952, + 7668989447, + 7668989448, + 7668989449, + 7668989450 + ], + "geometry": [ + { "lat": 40.8031027, "lon": -73.9206906 }, + { "lat": 40.8031558, "lon": -73.9206528 }, + { "lat": 40.8031694, "lon": -73.9206431 }, + { "lat": 40.8032052, "lon": -73.9205342 }, + { "lat": 40.8031990, "lon": -73.9204459 }, + { "lat": 40.8034416, "lon": -73.9202548 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 821356237, + "bounds": { + "minlat": 40.8035628, + "minlon": -73.9217960, + "maxlat": 40.8039087, + "maxlon": -73.9215554 + }, + "nodes": [ + 7668989451, + 11427299953, + 7668989452, + 7668989453 + ], + "geometry": [ + { "lat": 40.8035628, "lon": -73.9217960 }, + { "lat": 40.8036271, "lon": -73.9217490 }, + { "lat": 40.8036346, "lon": -73.9217435 }, + { "lat": 40.8039087, "lon": -73.9215554 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821363047, + "bounds": { + "minlat": 40.7916679, + "minlon": -73.9393581, + "maxlat": 40.7917923, + "maxlon": -73.9392015 + }, + "nodes": [ + 7669057712, + 7777426435, + 7669057713, + 7669057714 + ], + "geometry": [ + { "lat": 40.7917923, "lon": -73.9392015 }, + { "lat": 40.7917438, "lon": -73.9392514 }, + { "lat": 40.7916966, "lon": -73.9392993 }, + { "lat": 40.7916679, "lon": -73.9393581 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821403633, + "bounds": { + "minlat": 40.8035888, + "minlon": -73.9109497, + "maxlat": 40.8039016, + "maxlon": -73.9106226 + }, + "nodes": [ + 7669379551, + 13038955237, + 7669379552, + 7669379553, + 7669379554 + ], + "geometry": [ + { "lat": 40.8039016, "lon": -73.9106226 }, + { "lat": 40.8038255, "lon": -73.9106890 }, + { "lat": 40.8038117, "lon": -73.9107010 }, + { "lat": 40.8037156, "lon": -73.9107770 }, + { "lat": 40.8035888, "lon": -73.9109497 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821409314, + "bounds": { + "minlat": 40.8132823, + "minlon": -73.9096996, + "maxlat": 40.8136424, + "maxlon": -73.9091871 + }, + "nodes": [ + 7669422135, + 7669422136, + 7669422137, + 7669422138, + 7669422139 + ], + "geometry": [ + { "lat": 40.8132823, "lon": -73.9092717 }, + { "lat": 40.8135282, "lon": -73.9091871 }, + { "lat": 40.8135763, "lon": -73.9092295 }, + { "lat": 40.8136424, "lon": -73.9095885 }, + { "lat": 40.8133701, "lon": -73.9096996 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 821409315, + "bounds": { + "minlat": 40.8134902, + "minlon": -73.9091871, + "maxlat": 40.8135282, + "maxlon": -73.9089891 + }, + "nodes": [ + 7669422136, + 7669422140 + ], + "geometry": [ + { "lat": 40.8135282, "lon": -73.9091871 }, + { "lat": 40.8134902, "lon": -73.9089891 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 821457471, + "bounds": { + "minlat": 40.8177156, + "minlon": -73.9220312, + "maxlat": 40.8179137, + "maxlon": -73.9219440 + }, + "nodes": [ + 7669855390, + 7669855391, + 7669855392 + ], + "geometry": [ + { "lat": 40.8179137, "lon": -73.9219440 }, + { "lat": 40.8178607, "lon": -73.9219755 }, + { "lat": 40.8177156, "lon": -73.9220312 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821483848, + "bounds": { + "minlat": 40.8285113, + "minlon": -73.9374328, + "maxlat": 40.8289780, + "maxlon": -73.9362368 + }, + "nodes": [ + 7670739115, + 11218600928, + 7670739116, + 7670739117, + 7670739118, + 7670739119, + 7670739120, + 7670739121, + 7670739122 + ], + "geometry": [ + { "lat": 40.8289780, "lon": -73.9374328 }, + { "lat": 40.8289248, "lon": -73.9373043 }, + { "lat": 40.8289148, "lon": -73.9372800 }, + { "lat": 40.8288720, "lon": -73.9371914 }, + { "lat": 40.8288471, "lon": -73.9370858 }, + { "lat": 40.8287859, "lon": -73.9369205 }, + { "lat": 40.8286556, "lon": -73.9366015 }, + { "lat": 40.8285785, "lon": -73.9363990 }, + { "lat": 40.8285113, "lon": -73.9362368 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821695091, + "bounds": { + "minlat": 40.7497852, + "minlon": -73.9400604, + "maxlat": 40.7499428, + "maxlon": -73.9397330 + }, + "nodes": [ + 7672241249, + 8315072966, + 7672241250 + ], + "geometry": [ + { "lat": 40.7499428, "lon": -73.9400604 }, + { "lat": 40.7499139, "lon": -73.9400004 }, + { "lat": 40.7497852, "lon": -73.9397330 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821710004, + "bounds": { + "minlat": 40.8052272, + "minlon": -73.9114736, + "maxlat": 40.8058009, + "maxlon": -73.9110263 + }, + "nodes": [ + 7403861008, + 13038971547, + 7672343311, + 7672343312, + 7672343313, + 13038908741, + 7403861013 + ], + "geometry": [ + { "lat": 40.8058009, "lon": -73.9110263 }, + { "lat": 40.8057531, "lon": -73.9110498 }, + { "lat": 40.8056598, "lon": -73.9110957 }, + { "lat": 40.8055334, "lon": -73.9112830 }, + { "lat": 40.8054183, "lon": -73.9114736 }, + { "lat": 40.8052911, "lon": -73.9113752 }, + { "lat": 40.8052272, "lon": -73.9113311 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821710005, + "bounds": { + "minlat": 40.8049777, + "minlon": -73.9119355, + "maxlat": 40.8052425, + "maxlon": -73.9116475 + }, + "nodes": [ + 7672343318, + 7672343315, + 7672343316, + 13003699402, + 7672343317 + ], + "geometry": [ + { "lat": 40.8049777, "lon": -73.9118922 }, + { "lat": 40.8050398, "lon": -73.9119355 }, + { "lat": 40.8051555, "lon": -73.9117802 }, + { "lat": 40.8051943, "lon": -73.9117211 }, + { "lat": 40.8052425, "lon": -73.9116475 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821710006, + "bounds": { + "minlat": 40.8049056, + "minlon": -73.9118922, + "maxlat": 40.8049777, + "maxlon": -73.9118437 + }, + "nodes": [ + 7672343318, + 7672343319 + ], + "geometry": [ + { "lat": 40.8049777, "lon": -73.9118922 }, + { "lat": 40.8049056, "lon": -73.9118437 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 821741385, + "bounds": { + "minlat": 40.8070109, + "minlon": -73.9240358, + "maxlat": 40.8074954, + "maxlon": -73.9236303 + }, + "nodes": [ + 5482371897, + 7672646849, + 7672646851, + 11882279854, + 7672646850 + ], + "geometry": [ + { "lat": 40.8070109, "lon": -73.9238635 }, + { "lat": 40.8073244, "lon": -73.9236303 }, + { "lat": 40.8074311, "lon": -73.9238877 }, + { "lat": 40.8074513, "lon": -73.9239344 }, + { "lat": 40.8074954, "lon": -73.9240358 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821741386, + "bounds": { + "minlat": 40.8072870, + "minlon": -73.9241424, + "maxlat": 40.8074311, + "maxlon": -73.9238877 + }, + "nodes": [ + 7672646851, + 7672646852, + 10208744246, + 7672646853 + ], + "geometry": [ + { "lat": 40.8074311, "lon": -73.9238877 }, + { "lat": 40.8072870, "lon": -73.9239838 }, + { "lat": 40.8073084, "lon": -73.9240381 }, + { "lat": 40.8073495, "lon": -73.9241424 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821751520, + "bounds": { + "minlat": 40.8205195, + "minlon": -73.9304144, + "maxlat": 40.8208052, + "maxlon": -73.9296537 + }, + "nodes": [ + 7672826905, + 7672826906, + 7672826907, + 7931142275 + ], + "geometry": [ + { "lat": 40.8205195, "lon": -73.9296537 }, + { "lat": 40.8206486, "lon": -73.9302356 }, + { "lat": 40.8207023, "lon": -73.9304144 }, + { "lat": 40.8208052, "lon": -73.9304121 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821757093, + "bounds": { + "minlat": 40.8246242, + "minlon": -73.9765078, + "maxlat": 40.8249171, + "maxlon": -73.9761711 + }, + "nodes": [ + 7672892598, + 7672892599, + 7672892600, + 7672892601, + 7672892602 + ], + "geometry": [ + { "lat": 40.8246242, "lon": -73.9763134 }, + { "lat": 40.8246854, "lon": -73.9765078 }, + { "lat": 40.8249047, "lon": -73.9763646 }, + { "lat": 40.8249171, "lon": -73.9763122 }, + { "lat": 40.8248558, "lon": -73.9761711 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 821774220, + "bounds": { + "minlat": 40.8429772, + "minlon": -73.9225973, + "maxlat": 40.8431066, + "maxlon": -73.9222307 + }, + "nodes": [ + 2912067297, + 7673060332, + 7673060333 + ], + "geometry": [ + { "lat": 40.8431066, "lon": -73.9225973 }, + { "lat": 40.8430774, "lon": -73.9225169 }, + { "lat": 40.8429772, "lon": -73.9222307 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 821799972, + "bounds": { + "minlat": 40.7982578, + "minlon": -74.0150368, + "maxlat": 40.7983632, + "maxlon": -74.0146520 + }, + "nodes": [ + 7673337721, + 7673337723, + 7673337722, + 7673337724 + ], + "geometry": [ + { "lat": 40.7982578, "lon": -74.0146520 }, + { "lat": 40.7983245, "lon": -74.0148883 }, + { "lat": 40.7983313, "lon": -74.0149123 }, + { "lat": 40.7983632, "lon": -74.0150368 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 822072342, + "bounds": { + "minlat": 40.7897447, + "minlon": -73.9661041, + "maxlat": 40.7903702, + "maxlon": -73.9656483 + }, + "nodes": [ + 42435319, + 7123525315, + 7123525301, + 42435323 + ], + "geometry": [ + { "lat": 40.7897447, "lon": -73.9661041 }, + { "lat": 40.7897946, "lon": -73.9660676 }, + { "lat": 40.7903238, "lon": -73.9656836 }, + { "lat": 40.7903702, "lon": -73.9656483 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 822073481, + "bounds": { + "minlat": 40.7688848, + "minlon": -73.9102637, + "maxlat": 40.7694141, + "maxlon": -73.9069064 + }, + "nodes": [ + 42865836, + 4927558987, + 11619602952, + 42910603, + 42910593, + 3864473657, + 3864473658, + 4927558981, + 42910587 + ], + "geometry": [ + { "lat": 40.7688848, "lon": -73.9069064 }, + { "lat": 40.7689049, "lon": -73.9070279 }, + { "lat": 40.7689481, "lon": -73.9073059 }, + { "lat": 40.7690571, "lon": -73.9080078 }, + { "lat": 40.7692292, "lon": -73.9091090 }, + { "lat": 40.7693220, "lon": -73.9096814 }, + { "lat": 40.7693634, "lon": -73.9099392 }, + { "lat": 40.7693936, "lon": -73.9101337 }, + { "lat": 40.7694141, "lon": -73.9102637 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "name": "Astoria Boulevard North", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 822073659, + "bounds": { + "minlat": 40.7711360, + "minlon": -73.9268125, + "maxlat": 40.7716398, + "maxlon": -73.9264090 + }, + "nodes": [ + 42826033, + 13633949675, + 11619032902, + 42826038 + ], + "geometry": [ + { "lat": 40.7716398, "lon": -73.9264090 }, + { "lat": 40.7714862, "lon": -73.9265320 }, + { "lat": 40.7713490, "lon": -73.9266419 }, + { "lat": 40.7711360, "lon": -73.9268125 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 822074170, + "bounds": { + "minlat": 40.7739965, + "minlon": -73.9264143, + "maxlat": 40.7750208, + "maxlon": -73.9245333 + }, + "nodes": [ + 7746695025, + 7756491605, + 7722330240, + 6452944036, + 42828372 + ], + "geometry": [ + { "lat": 40.7739965, "lon": -73.9245333 }, + { "lat": 40.7740623, "lon": -73.9246544 }, + { "lat": 40.7749638, "lon": -73.9263103 }, + { "lat": 40.7749939, "lon": -73.9263655 }, + { "lat": 40.7750208, "lon": -73.9264143 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "25th Road", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 822074171, + "bounds": { + "minlat": 40.7739965, + "minlon": -73.9245333, + "maxlat": 40.7745522, + "maxlon": -73.9240805 + }, + "nodes": [ + 6452806846, + 11427746924, + 11427746919, + 7746695026, + 7746695025 + ], + "geometry": [ + { "lat": 40.7745522, "lon": -73.9240805 }, + { "lat": 40.7744313, "lon": -73.9241791 }, + { "lat": 40.7742253, "lon": -73.9243470 }, + { "lat": 40.7740588, "lon": -73.9244828 }, + { "lat": 40.7739965, "lon": -73.9245333 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 822092040, + "bounds": { + "minlat": 40.8397338, + "minlon": -73.9367824, + "maxlat": 40.8402905, + "maxlon": -73.9355081 + }, + "nodes": [ + 7675910661, + 7675910662, + 7675910670, + 7675910667, + 7675910663, + 7675910669, + 7675910664, + 7675910671, + 7675910665, + 7675910666 + ], + "geometry": [ + { "lat": 40.8400329, "lon": -73.9367824 }, + { "lat": 40.8399861, "lon": -73.9366862 }, + { "lat": 40.8399617, "lon": -73.9366295 }, + { "lat": 40.8397978, "lon": -73.9362494 }, + { "lat": 40.8397338, "lon": -73.9361010 }, + { "lat": 40.8402465, "lon": -73.9357367 }, + { "lat": 40.8402905, "lon": -73.9357053 }, + { "lat": 40.8402724, "lon": -73.9356470 }, + { "lat": 40.8402543, "lon": -73.9355887 }, + { "lat": 40.8402235, "lon": -73.9355081 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 822092041, + "bounds": { + "minlat": 40.8397978, + "minlon": -73.9362494, + "maxlat": 40.8403061, + "maxlon": -73.9357367 + }, + "nodes": [ + 7675910667, + 7675910668, + 7675910669 + ], + "geometry": [ + { "lat": 40.8397978, "lon": -73.9362494 }, + { "lat": 40.8403061, "lon": -73.9358699 }, + { "lat": 40.8402465, "lon": -73.9357367 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 822122551, + "bounds": { + "minlat": 40.8686417, + "minlon": -73.9153917, + "maxlat": 40.8691709, + "maxlon": -73.9147167 + }, + "nodes": [ + 7676246615, + 7676246616, + 7676246617, + 7676246618, + 7676246619, + 7676246620 + ], + "geometry": [ + { "lat": 40.8691709, "lon": -73.9147167 }, + { "lat": 40.8689425, "lon": -73.9148640 }, + { "lat": 40.8687768, "lon": -73.9149989 }, + { "lat": 40.8686987, "lon": -73.9151619 }, + { "lat": 40.8686417, "lon": -73.9153231 }, + { "lat": 40.8686707, "lon": -73.9153917 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 822128685, + "bounds": { + "minlat": 40.7190131, + "minlon": -73.9759525, + "maxlat": 40.7191104, + "maxlon": -73.9754312 + }, + "nodes": [ + 370893397, + 9181587082, + 4205946595 + ], + "geometry": [ + { "lat": 40.7190131, "lon": -73.9754312 }, + { "lat": 40.7190325, "lon": -73.9755367 }, + { "lat": 40.7191104, "lon": -73.9759525 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 822128686, + "bounds": { + "minlat": 40.7187961, + "minlon": -73.9751131, + "maxlat": 40.7189791, + "maxlon": -73.9750822 + }, + "nodes": [ + 42454391, + 42457401 + ], + "geometry": [ + { "lat": 40.7189791, "lon": -73.9750822 }, + { "lat": 40.7187961, "lon": -73.9751131 } + ], + "tags": { + "cycleway:right": "no", + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 822128687, + "bounds": { + "minlat": 40.7188934, + "minlon": -73.9754842, + "maxlat": 40.7190131, + "maxlon": -73.9754312 + }, + "nodes": [ + 42446398, + 370893397 + ], + "geometry": [ + { "lat": 40.7188934, "lon": -73.9754842 }, + { "lat": 40.7190131, "lon": -73.9754312 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Mangin Street", + "name:etymology:wikidata": "Q6280621", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 822258153, + "bounds": { + "minlat": 40.7627576, + "minlon": -73.9267302, + "maxlat": 40.7630423, + "maxlon": -73.9261341 + }, + "nodes": [ + 7677611009, + 7791569956, + 7677611010 + ], + "geometry": [ + { "lat": 40.7630423, "lon": -73.9267302 }, + { "lat": 40.7630148, "lon": -73.9266725 }, + { "lat": 40.7627576, "lon": -73.9261341 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 822410923, + "bounds": { + "minlat": 40.7933599, + "minlon": -74.0039580, + "maxlat": 40.7936182, + "maxlon": -74.0037573 + }, + "nodes": [ + 7679053326, + 7679053330, + 7679053327, + 7679053329, + 7679053328 + ], + "geometry": [ + { "lat": 40.7936182, "lon": -74.0037573 }, + { "lat": 40.7935987, "lon": -74.0037707 }, + { "lat": 40.7935858, "lon": -74.0037795 }, + { "lat": 40.7935593, "lon": -74.0038005 }, + { "lat": 40.7933599, "lon": -74.0039580 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 822435717, + "bounds": { + "minlat": 40.8146060, + "minlon": -73.9835659, + "maxlat": 40.8149975, + "maxlon": -73.9828827 + }, + "nodes": [ + 7679292214, + 7679292220, + 7679292215, + 7679292216, + 7679292217, + 7679292219, + 7679292218 + ], + "geometry": [ + { "lat": 40.8146060, "lon": -73.9835454 }, + { "lat": 40.8147075, "lon": -73.9835551 }, + { "lat": 40.8147577, "lon": -73.9835659 }, + { "lat": 40.8148346, "lon": -73.9833417 }, + { "lat": 40.8149975, "lon": -73.9830786 }, + { "lat": 40.8149597, "lon": -73.9830161 }, + { "lat": 40.8148790, "lon": -73.9828827 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 822444155, + "bounds": { + "minlat": 40.8088322, + "minlon": -73.9267033, + "maxlat": 40.8091349, + "maxlon": -73.9260414 + }, + "nodes": [ + 7679369206, + 11427300132, + 7679369207, + 7679369209, + 7679369208 + ], + "geometry": [ + { "lat": 40.8088322, "lon": -73.9260414 }, + { "lat": 40.8088966, "lon": -73.9261863 }, + { "lat": 40.8089257, "lon": -73.9262517 }, + { "lat": 40.8090549, "lon": -73.9265389 }, + { "lat": 40.8091349, "lon": -73.9267033 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 822484845, + "bounds": { + "minlat": 40.8405797, + "minlon": -73.9946840, + "maxlat": 40.8407998, + "maxlon": -73.9936820 + }, + "nodes": [ + 103134585, + 7679769710, + 7679769711, + 7679769712, + 7679769713, + 7679769714, + 7679769715 + ], + "geometry": [ + { "lat": 40.8407350, "lon": -73.9936820 }, + { "lat": 40.8406937, "lon": -73.9937055 }, + { "lat": 40.8405797, "lon": -73.9937858 }, + { "lat": 40.8405928, "lon": -73.9939415 }, + { "lat": 40.8406511, "lon": -73.9941663 }, + { "lat": 40.8407754, "lon": -73.9946209 }, + { "lat": 40.8407998, "lon": -73.9946840 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 822540475, + "bounds": { + "minlat": 40.8066031, + "minlon": -73.9447999, + "maxlat": 40.8068657, + "maxlon": -73.9446070 + }, + "nodes": [ + 7680219837, + 11296130435, + 7680219838, + 7680219839 + ], + "geometry": [ + { "lat": 40.8066031, "lon": -73.9447999 }, + { "lat": 40.8066585, "lon": -73.9447615 }, + { "lat": 40.8066851, "lon": -73.9447431 }, + { "lat": 40.8068657, "lon": -73.9446070 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 822540476, + "bounds": { + "minlat": 40.8068111, + "minlon": -73.9452950, + "maxlat": 40.8070689, + "maxlon": -73.9449513 + }, + "nodes": [ + 7680219840, + 11296130436, + 7680219841, + 7680219842, + 7680219843, + 7680219844 + ], + "geometry": [ + { "lat": 40.8068111, "lon": -73.9452950 }, + { "lat": 40.8068732, "lon": -73.9452488 }, + { "lat": 40.8068914, "lon": -73.9452353 }, + { "lat": 40.8069865, "lon": -73.9451761 }, + { "lat": 40.8070689, "lon": -73.9451159 }, + { "lat": 40.8070013, "lon": -73.9449513 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 822646326, + "bounds": { + "minlat": 40.7112105, + "minlon": -73.9381051, + "maxlat": 40.7113035, + "maxlon": -73.9377394 + }, + "nodes": [ + 7681103493, + 9755354478, + 7681103494 + ], + "geometry": [ + { "lat": 40.7113035, "lon": -73.9377394 }, + { "lat": 40.7112821, "lon": -73.9378235 }, + { "lat": 40.7112105, "lon": -73.9381051 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 822826662, + "bounds": { + "minlat": 40.7013503, + "minlon": -74.0129488, + "maxlat": 40.7017093, + "maxlon": -74.0124260 + }, + "nodes": [ + 3762548367, + 3762544572, + 7682535137, + 3762544571, + 7682535136, + 3762544569, + 7682535135, + 3762544567, + 3762544565, + 3762544564, + 3762544562, + 3762544563, + 7682535009, + 8276468925, + 7682535008, + 11014606910, + 11014607150, + 7682535093, + 3762871803, + 7682535006, + 7682535005, + 7682535004, + 7682535003, + 7682535002, + 7682535001, + 7682535000, + 7682534999, + 7682534998, + 7682534997, + 7682534996, + 7682534995, + 7682534994, + 7682534993, + 7682534992, + 11014606859, + 11014606860, + 7682534991, + 7682534990, + 11014606858, + 7682534989, + 7682534988, + 7682534987, + 11014606862, + 7682534986, + 7682534985, + 2234823240, + 4024142478, + 2234823245, + 2234823251, + 2234823256, + 2234823261, + 2234823269, + 2234823272, + 2234823275, + 7580661057, + 3762548364, + 3762548367 + ], + "geometry": [ + { "lat": 40.7017093, "lon": -74.0129004 }, + { "lat": 40.7017079, "lon": -74.0128759 }, + { "lat": 40.7017046, "lon": -74.0128608 }, + { "lat": 40.7016968, "lon": -74.0128429 }, + { "lat": 40.7016891, "lon": -74.0128300 }, + { "lat": 40.7016768, "lon": -74.0128173 }, + { "lat": 40.7016675, "lon": -74.0128102 }, + { "lat": 40.7016580, "lon": -74.0128031 }, + { "lat": 40.7016431, "lon": -74.0127971 }, + { "lat": 40.7016322, "lon": -74.0127946 }, + { "lat": 40.7015764, "lon": -74.0127764 }, + { "lat": 40.7015885, "lon": -74.0127117 }, + { "lat": 40.7015739, "lon": -74.0127062 }, + { "lat": 40.7015777, "lon": -74.0126817 }, + { "lat": 40.7015810, "lon": -74.0126614 }, + { "lat": 40.7015482, "lon": -74.0126500 }, + { "lat": 40.7015207, "lon": -74.0126395 }, + { "lat": 40.7015038, "lon": -74.0126295 }, + { "lat": 40.7014981, "lon": -74.0126467 }, + { "lat": 40.7014914, "lon": -74.0126635 }, + { "lat": 40.7014822, "lon": -74.0126553 }, + { "lat": 40.7014689, "lon": -74.0126412 }, + { "lat": 40.7014532, "lon": -74.0126207 }, + { "lat": 40.7014405, "lon": -74.0125943 }, + { "lat": 40.7014311, "lon": -74.0125715 }, + { "lat": 40.7014224, "lon": -74.0125389 }, + { "lat": 40.7014186, "lon": -74.0125158 }, + { "lat": 40.7014173, "lon": -74.0124994 }, + { "lat": 40.7014148, "lon": -74.0124823 }, + { "lat": 40.7014107, "lon": -74.0124695 }, + { "lat": 40.7014057, "lon": -74.0124605 }, + { "lat": 40.7013952, "lon": -74.0124484 }, + { "lat": 40.7013772, "lon": -74.0124327 }, + { "lat": 40.7013665, "lon": -74.0124260 }, + { "lat": 40.7013546, "lon": -74.0124704 }, + { "lat": 40.7013568, "lon": -74.0124809 }, + { "lat": 40.7013633, "lon": -74.0124901 }, + { "lat": 40.7013960, "lon": -74.0125021 }, + { "lat": 40.7013712, "lon": -74.0126178 }, + { "lat": 40.7013722, "lon": -74.0126229 }, + { "lat": 40.7014130, "lon": -74.0126388 }, + { "lat": 40.7013960, "lon": -74.0127181 }, + { "lat": 40.7013585, "lon": -74.0127029 }, + { "lat": 40.7013551, "lon": -74.0127047 }, + { "lat": 40.7013503, "lon": -74.0127274 }, + { "lat": 40.7014946, "lon": -74.0128242 }, + { "lat": 40.7015185, "lon": -74.0128344 }, + { "lat": 40.7015296, "lon": -74.0128391 }, + { "lat": 40.7015622, "lon": -74.0128438 }, + { "lat": 40.7015984, "lon": -74.0128433 }, + { "lat": 40.7016248, "lon": -74.0128503 }, + { "lat": 40.7016449, "lon": -74.0128662 }, + { "lat": 40.7016614, "lon": -74.0128875 }, + { "lat": 40.7016743, "lon": -74.0129187 }, + { "lat": 40.7016811, "lon": -74.0129488 }, + { "lat": 40.7016785, "lon": -74.0129034 }, + { "lat": 40.7017093, "lon": -74.0129004 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 822831218, + "bounds": { + "minlat": 40.7006949, + "minlon": -74.0135873, + "maxlat": 40.7010458, + "maxlon": -74.0135055 + }, + "nodes": [ + 7682576632, + 7682576631, + 6136264767, + 9168415884, + 1805328663, + 7682576630, + 1805328661, + 2234823232, + 7682576632 + ], + "geometry": [ + { "lat": 40.7010458, "lon": -74.0135457 }, + { "lat": 40.7010431, "lon": -74.0135781 }, + { "lat": 40.7009602, "lon": -74.0135873 }, + { "lat": 40.7008324, "lon": -74.0135725 }, + { "lat": 40.7006949, "lon": -74.0135565 }, + { "lat": 40.7006988, "lon": -74.0135055 }, + { "lat": 40.7007193, "lon": -74.0135085 }, + { "lat": 40.7010051, "lon": -74.0135511 }, + { "lat": 40.7010458, "lon": -74.0135457 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 822831222, + "bounds": { + "minlat": 40.7010472, + "minlon": -74.0148349, + "maxlat": 40.7012923, + "maxlon": -74.0135449 + }, + "nodes": [ + 7682576672, + 7682576671, + 7682576670, + 7682576669, + 7682576668, + 9168415901, + 7682576667, + 7682576666, + 7682576665, + 7682576664, + 7682576663, + 7682576662, + 7682576661, + 7682576660, + 7682576659, + 7682576658, + 7682576657, + 7682576656, + 7682576655, + 6326858993, + 9168415889, + 7682576654, + 7682576653, + 7682576652, + 7682576651, + 11016696187, + 7682576650, + 7682576649, + 7682576648, + 7682576647, + 9168415885, + 9168415888, + 6136264775, + 6136264763, + 6136264778, + 6136264765, + 6136264776, + 6136264762, + 6136264764, + 11014607130, + 6136264771, + 7682576646, + 1805328723, + 7682576672 + ], + "geometry": [ + { "lat": 40.7010859, "lon": -74.0135638 }, + { "lat": 40.7010849, "lon": -74.0136534 }, + { "lat": 40.7010839, "lon": -74.0137547 }, + { "lat": 40.7010854, "lon": -74.0138405 }, + { "lat": 40.7010910, "lon": -74.0139196 }, + { "lat": 40.7010977, "lon": -74.0139617 }, + { "lat": 40.7011062, "lon": -74.0140155 }, + { "lat": 40.7011159, "lon": -74.0140665 }, + { "lat": 40.7011210, "lon": -74.0141127 }, + { "lat": 40.7011245, "lon": -74.0141536 }, + { "lat": 40.7011362, "lon": -74.0142260 }, + { "lat": 40.7011688, "lon": -74.0143910 }, + { "lat": 40.7011952, "lon": -74.0144976 }, + { "lat": 40.7012308, "lon": -74.0146197 }, + { "lat": 40.7012608, "lon": -74.0147109 }, + { "lat": 40.7012882, "lon": -74.0147833 }, + { "lat": 40.7012923, "lon": -74.0147953 }, + { "lat": 40.7012918, "lon": -74.0148074 }, + { "lat": 40.7012856, "lon": -74.0148210 }, + { "lat": 40.7012754, "lon": -74.0148349 }, + { "lat": 40.7012617, "lon": -74.0148011 }, + { "lat": 40.7012359, "lon": -74.0147310 }, + { "lat": 40.7011998, "lon": -74.0146217 }, + { "lat": 40.7011342, "lon": -74.0143776 }, + { "lat": 40.7011118, "lon": -74.0143848 }, + { "lat": 40.7011048, "lon": -74.0143464 }, + { "lat": 40.7010964, "lon": -74.0143002 }, + { "lat": 40.7011159, "lon": -74.0142944 }, + { "lat": 40.7010869, "lon": -74.0141375 }, + { "lat": 40.7010679, "lon": -74.0141437 }, + { "lat": 40.7010472, "lon": -74.0140295 }, + { "lat": 40.7010534, "lon": -74.0140277 }, + { "lat": 40.7010762, "lon": -74.0140218 }, + { "lat": 40.7010645, "lon": -74.0139678 }, + { "lat": 40.7010585, "lon": -74.0139402 }, + { "lat": 40.7010735, "lon": -74.0139364 }, + { "lat": 40.7010683, "lon": -74.0139002 }, + { "lat": 40.7010647, "lon": -74.0138410 }, + { "lat": 40.7010626, "lon": -74.0137124 }, + { "lat": 40.7010637, "lon": -74.0136654 }, + { "lat": 40.7010657, "lon": -74.0135756 }, + { "lat": 40.7010492, "lon": -74.0135774 }, + { "lat": 40.7010520, "lon": -74.0135449 }, + { "lat": 40.7010859, "lon": -74.0135638 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 822831223, + "bounds": { + "minlat": 40.7008737, + "minlon": -74.0149000, + "maxlat": 40.7011974, + "maxlon": -74.0140487 + }, + "nodes": [ + 2824828398, + 7682577598, + 7682577597, + 7682577596, + 7682577595, + 7682577594, + 7682577593, + 7682577592, + 7682577591, + 7682577590, + 7682577589, + 7682577588, + 7682577587, + 7682577586, + 7682577585, + 7682576684, + 7682576683, + 7682576682, + 7682576681, + 7682576680, + 7682576679, + 9168415898, + 7682576678, + 7682576677, + 7682576676, + 7682576675, + 7682576674, + 9168454046, + 2824828404, + 2824828400, + 2824828398 + ], + "geometry": [ + { "lat": 40.7009460, "lon": -74.0140616 }, + { "lat": 40.7009427, "lon": -74.0140487 }, + { "lat": 40.7008810, "lon": -74.0140671 }, + { "lat": 40.7008757, "lon": -74.0140712 }, + { "lat": 40.7008737, "lon": -74.0140752 }, + { "lat": 40.7008739, "lon": -74.0140812 }, + { "lat": 40.7008757, "lon": -74.0140876 }, + { "lat": 40.7008798, "lon": -74.0140909 }, + { "lat": 40.7008841, "lon": -74.0140906 }, + { "lat": 40.7008904, "lon": -74.0140883 }, + { "lat": 40.7009373, "lon": -74.0140728 }, + { "lat": 40.7009494, "lon": -74.0141382 }, + { "lat": 40.7009115, "lon": -74.0141506 }, + { "lat": 40.7009075, "lon": -74.0141556 }, + { "lat": 40.7009064, "lon": -74.0141617 }, + { "lat": 40.7009077, "lon": -74.0141684 }, + { "lat": 40.7009131, "lon": -74.0141912 }, + { "lat": 40.7009151, "lon": -74.0141949 }, + { "lat": 40.7009184, "lon": -74.0141965 }, + { "lat": 40.7009240, "lon": -74.0141962 }, + { "lat": 40.7009479, "lon": -74.0141902 }, + { "lat": 40.7009833, "lon": -74.0143818 }, + { "lat": 40.7010752, "lon": -74.0148792 }, + { "lat": 40.7010945, "lon": -74.0148745 }, + { "lat": 40.7010986, "lon": -74.0149000 }, + { "lat": 40.7011383, "lon": -74.0148872 }, + { "lat": 40.7011356, "lon": -74.0148737 }, + { "lat": 40.7011974, "lon": -74.0148552 }, + { "lat": 40.7011918, "lon": -74.0148246 }, + { "lat": 40.7010905, "lon": -74.0148566 }, + { "lat": 40.7009460, "lon": -74.0140616 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 822831224, + "bounds": { + "minlat": 40.7007204, + "minlon": -74.0144674, + "maxlat": 40.7011325, + "maxlon": -74.0139544 + }, + "nodes": [ + 4206998241, + 9168415901, + 11016696183, + 6136264763, + 4206998238, + 4206998237, + 7682576625, + 7682577601, + 7682576626, + 7682577600, + 7682576624, + 7682577599, + 7682577605, + 7682576627, + 7682576628, + 7682576629, + 7682577604, + 7682577603, + 7682577602 + ], + "geometry": [ + { "lat": 40.7011325, "lon": -74.0139544 }, + { "lat": 40.7010977, "lon": -74.0139617 }, + { "lat": 40.7010851, "lon": -74.0139640 }, + { "lat": 40.7010645, "lon": -74.0139678 }, + { "lat": 40.7008491, "lon": -74.0140372 }, + { "lat": 40.7007410, "lon": -74.0140950 }, + { "lat": 40.7007298, "lon": -74.0141043 }, + { "lat": 40.7007234, "lon": -74.0141174 }, + { "lat": 40.7007206, "lon": -74.0141318 }, + { "lat": 40.7007204, "lon": -74.0141496 }, + { "lat": 40.7007260, "lon": -74.0141684 }, + { "lat": 40.7007326, "lon": -74.0141885 }, + { "lat": 40.7008336, "lon": -74.0144196 }, + { "lat": 40.7008462, "lon": -74.0144416 }, + { "lat": 40.7008559, "lon": -74.0144530 }, + { "lat": 40.7008670, "lon": -74.0144621 }, + { "lat": 40.7008823, "lon": -74.0144664 }, + { "lat": 40.7008948, "lon": -74.0144674 }, + { "lat": 40.7009240, "lon": -74.0144582 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Coast Guard Access", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 822831225, + "bounds": { + "minlat": 40.7008491, + "minlon": -74.0149567, + "maxlat": 40.7010242, + "maxlon": -74.0140372 + }, + "nodes": [ + 6136264770, + 7682577602, + 9168415899, + 4206998238 + ], + "geometry": [ + { "lat": 40.7010242, "lon": -74.0149567 }, + { "lat": 40.7009240, "lon": -74.0144582 }, + { "lat": 40.7009136, "lon": -74.0143997 }, + { "lat": 40.7008491, "lon": -74.0140372 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 823152484, + "bounds": { + "minlat": 40.7031357, + "minlon": -74.0144385, + "maxlat": 40.7031662, + "maxlon": -74.0139049 + }, + "nodes": [ + 7685162940, + 7685162938, + 11382519405, + 11382528877, + 11382519406, + 42444353 + ], + "geometry": [ + { "lat": 40.7031357, "lon": -74.0139049 }, + { "lat": 40.7031627, "lon": -74.0142383 }, + { "lat": 40.7031659, "lon": -74.0143098 }, + { "lat": 40.7031660, "lon": -74.0143278 }, + { "lat": 40.7031662, "lon": -74.0143738 }, + { "lat": 40.7031643, "lon": -74.0144385 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "cycleway:both:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "turn:lanes": "left|right", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 823197995, + "bounds": { + "minlat": 40.7047277, + "minlon": -74.0139474, + "maxlat": 40.7053506, + "maxlon": -74.0135470 + }, + "nodes": [ + 7685535326, + 7685535333, + 7685535265, + 7685535266, + 7685535267, + 7685535268, + 7685535269, + 7685535270, + 7685535271, + 7685535241, + 7685535272, + 7685535273, + 7685535274, + 7685535275, + 7685535276, + 7685535277, + 7685535278, + 7685535279, + 7685535280, + 7685535281, + 7685535282, + 7685535283, + 7685535284, + 7685535285, + 7685535286, + 7685535287, + 7685535288, + 7685535289, + 7685535290, + 7685535291, + 7685535292, + 9898775046, + 7685535311, + 7685535328, + 7685535310, + 7685535309, + 7685535308, + 7685535307, + 7685535306, + 1251958153, + 9898775045, + 7685535305, + 7685535304, + 7072589176, + 7685535303, + 7072589177, + 7685535302, + 10316226075, + 10316226076, + 7685535300, + 1251958261, + 7685535299, + 7685535298, + 1251958161, + 7685535327, + 7685539649, + 7685535326 + ], + "geometry": [ + { "lat": 40.7053504, "lon": -74.0135470 }, + { "lat": 40.7053434, "lon": -74.0135495 }, + { "lat": 40.7053344, "lon": -74.0135528 }, + { "lat": 40.7053343, "lon": -74.0135615 }, + { "lat": 40.7053339, "lon": -74.0135682 }, + { "lat": 40.7053275, "lon": -74.0135934 }, + { "lat": 40.7053179, "lon": -74.0136172 }, + { "lat": 40.7053044, "lon": -74.0136430 }, + { "lat": 40.7052813, "lon": -74.0136738 }, + { "lat": 40.7052597, "lon": -74.0137017 }, + { "lat": 40.7052289, "lon": -74.0137379 }, + { "lat": 40.7051905, "lon": -74.0137771 }, + { "lat": 40.7051524, "lon": -74.0138113 }, + { "lat": 40.7051173, "lon": -74.0138405 }, + { "lat": 40.7050901, "lon": -74.0138599 }, + { "lat": 40.7050572, "lon": -74.0138816 }, + { "lat": 40.7050300, "lon": -74.0138970 }, + { "lat": 40.7050102, "lon": -74.0139072 }, + { "lat": 40.7049827, "lon": -74.0139178 }, + { "lat": 40.7049590, "lon": -74.0139233 }, + { "lat": 40.7049397, "lon": -74.0139253 }, + { "lat": 40.7049148, "lon": -74.0139236 }, + { "lat": 40.7048919, "lon": -74.0139176 }, + { "lat": 40.7048639, "lon": -74.0139035 }, + { "lat": 40.7048352, "lon": -74.0138861 }, + { "lat": 40.7048159, "lon": -74.0138713 }, + { "lat": 40.7047938, "lon": -74.0138445 }, + { "lat": 40.7047767, "lon": -74.0138187 }, + { "lat": 40.7047620, "lon": -74.0137888 }, + { "lat": 40.7047539, "lon": -74.0137664 }, + { "lat": 40.7047465, "lon": -74.0137394 }, + { "lat": 40.7047373, "lon": -74.0137425 }, + { "lat": 40.7047277, "lon": -74.0137457 }, + { "lat": 40.7047389, "lon": -74.0137909 }, + { "lat": 40.7047612, "lon": -74.0138371 }, + { "lat": 40.7047823, "lon": -74.0138676 }, + { "lat": 40.7048151, "lon": -74.0139002 }, + { "lat": 40.7048441, "lon": -74.0139220 }, + { "lat": 40.7048710, "lon": -74.0139357 }, + { "lat": 40.7048959, "lon": -74.0139431 }, + { "lat": 40.7049090, "lon": -74.0139448 }, + { "lat": 40.7049287, "lon": -74.0139474 }, + { "lat": 40.7049577, "lon": -74.0139461 }, + { "lat": 40.7049872, "lon": -74.0139401 }, + { "lat": 40.7050212, "lon": -74.0139287 }, + { "lat": 40.7050721, "lon": -74.0139015 }, + { "lat": 40.7051087, "lon": -74.0138774 }, + { "lat": 40.7051667, "lon": -74.0138334 }, + { "lat": 40.7052184, "lon": -74.0137863 }, + { "lat": 40.7052601, "lon": -74.0137382 }, + { "lat": 40.7052856, "lon": -74.0137030 }, + { "lat": 40.7053095, "lon": -74.0136702 }, + { "lat": 40.7053268, "lon": -74.0136437 }, + { "lat": 40.7053360, "lon": -74.0136237 }, + { "lat": 40.7053454, "lon": -74.0135959 }, + { "lat": 40.7053506, "lon": -74.0135706 }, + { "lat": 40.7053504, "lon": -74.0135470 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 823197996, + "bounds": { + "minlat": 40.7047203, + "minlon": -74.0137126, + "maxlat": 40.7053451, + "maxlon": -74.0133783 + }, + "nodes": [ + 7685535325, + 10316226231, + 7685535208, + 7685535209, + 7685535210, + 7685535211, + 7685535212, + 7685535213, + 7685535214, + 7685535215, + 7685535216, + 7685535217, + 7685535218, + 7685535219, + 7685535220, + 7685535221, + 7685535222, + 7685535223, + 7685535224, + 7685535225, + 7685535226, + 7685535227, + 7685535228, + 7685535229, + 7685535230, + 7685535231, + 9898775047, + 7685539648, + 7685535312, + 7685535313, + 7685535314, + 7685535315, + 7685539647, + 7685535316, + 7685539646, + 7685535317, + 7685539645, + 1251958176, + 7685539644, + 1280366094, + 7685535319, + 7685535318, + 7685539643, + 10316226185, + 7072589180, + 7072589179, + 7072589181, + 7685535320, + 7685535321, + 7685539642, + 1251958263, + 7685535322, + 1251958243, + 7685539641, + 7685535323, + 7685535324, + 7685535325 + ], + "geometry": [ + { "lat": 40.7053451, "lon": -74.0135136 }, + { "lat": 40.7053367, "lon": -74.0135163 }, + { "lat": 40.7053298, "lon": -74.0135186 }, + { "lat": 40.7053179, "lon": -74.0134918 }, + { "lat": 40.7053046, "lon": -74.0134727 }, + { "lat": 40.7052848, "lon": -74.0134566 }, + { "lat": 40.7052584, "lon": -74.0134412 }, + { "lat": 40.7052157, "lon": -74.0134241 }, + { "lat": 40.7051753, "lon": -74.0134123 }, + { "lat": 40.7051389, "lon": -74.0134060 }, + { "lat": 40.7050911, "lon": -74.0133989 }, + { "lat": 40.7050736, "lon": -74.0133979 }, + { "lat": 40.7050368, "lon": -74.0134013 }, + { "lat": 40.7049836, "lon": -74.0134066 }, + { "lat": 40.7049386, "lon": -74.0134150 }, + { "lat": 40.7048868, "lon": -74.0134281 }, + { "lat": 40.7048624, "lon": -74.0134395 }, + { "lat": 40.7048413, "lon": -74.0134532 }, + { "lat": 40.7048212, "lon": -74.0134707 }, + { "lat": 40.7047948, "lon": -74.0135005 }, + { "lat": 40.7047727, "lon": -74.0135347 }, + { "lat": 40.7047600, "lon": -74.0135662 }, + { "lat": 40.7047508, "lon": -74.0136004 }, + { "lat": 40.7047445, "lon": -74.0136393 }, + { "lat": 40.7047404, "lon": -74.0136792 }, + { "lat": 40.7047414, "lon": -74.0137064 }, + { "lat": 40.7047329, "lon": -74.0137090 }, + { "lat": 40.7047210, "lon": -74.0137126 }, + { "lat": 40.7047203, "lon": -74.0136775 }, + { "lat": 40.7047235, "lon": -74.0136393 }, + { "lat": 40.7047307, "lon": -74.0135932 }, + { "lat": 40.7047404, "lon": -74.0135565 }, + { "lat": 40.7047549, "lon": -74.0135213 }, + { "lat": 40.7047676, "lon": -74.0135002 }, + { "lat": 40.7047840, "lon": -74.0134780 }, + { "lat": 40.7047953, "lon": -74.0134633 }, + { "lat": 40.7048129, "lon": -74.0134468 }, + { "lat": 40.7048408, "lon": -74.0134269 }, + { "lat": 40.7048605, "lon": -74.0134167 }, + { "lat": 40.7048909, "lon": -74.0134041 }, + { "lat": 40.7049172, "lon": -74.0133954 }, + { "lat": 40.7049492, "lon": -74.0133877 }, + { "lat": 40.7049947, "lon": -74.0133807 }, + { "lat": 40.7050025, "lon": -74.0133801 }, + { "lat": 40.7050218, "lon": -74.0133785 }, + { "lat": 40.7050603, "lon": -74.0133783 }, + { "lat": 40.7050847, "lon": -74.0133785 }, + { "lat": 40.7051261, "lon": -74.0133808 }, + { "lat": 40.7051656, "lon": -74.0133874 }, + { "lat": 40.7051999, "lon": -74.0133954 }, + { "lat": 40.7052245, "lon": -74.0134038 }, + { "lat": 40.7052672, "lon": -74.0134212 }, + { "lat": 40.7052955, "lon": -74.0134387 }, + { "lat": 40.7053093, "lon": -74.0134506 }, + { "lat": 40.7053242, "lon": -74.0134687 }, + { "lat": 40.7053339, "lon": -74.0134854 }, + { "lat": 40.7053451, "lon": -74.0135136 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 823197997, + "bounds": { + "minlat": 40.7050626, + "minlon": -74.0136374, + "maxlat": 40.7053504, + "maxlon": -74.0135136 + }, + "nodes": [ + 7685535264, + 7685535265, + 7685535333, + 7685535326, + 10316226060, + 7685535325, + 10316226231, + 7685535208, + 7685535207, + 7685535206, + 7685535205, + 7685535204, + 7685535203, + 9898775048, + 7685539652, + 7685481801, + 7685481827, + 7685539653, + 9898775049, + 7685535260, + 7685535261, + 7685535262, + 7685535263, + 7685535264 + ], + "geometry": [ + { "lat": 40.7052980, "lon": -74.0135657 }, + { "lat": 40.7053344, "lon": -74.0135528 }, + { "lat": 40.7053434, "lon": -74.0135495 }, + { "lat": 40.7053504, "lon": -74.0135470 }, + { "lat": 40.7053492, "lon": -74.0135326 }, + { "lat": 40.7053451, "lon": -74.0135136 }, + { "lat": 40.7053367, "lon": -74.0135163 }, + { "lat": 40.7053298, "lon": -74.0135186 }, + { "lat": 40.7052917, "lon": -74.0135327 }, + { "lat": 40.7052899, "lon": -74.0135243 }, + { "lat": 40.7051112, "lon": -74.0135773 }, + { "lat": 40.7051122, "lon": -74.0135870 }, + { "lat": 40.7050881, "lon": -74.0135954 }, + { "lat": 40.7050735, "lon": -74.0136007 }, + { "lat": 40.7050626, "lon": -74.0136046 }, + { "lat": 40.7050652, "lon": -74.0136119 }, + { "lat": 40.7050672, "lon": -74.0136210 }, + { "lat": 40.7050686, "lon": -74.0136374 }, + { "lat": 40.7050795, "lon": -74.0136344 }, + { "lat": 40.7050962, "lon": -74.0136299 }, + { "lat": 40.7051191, "lon": -74.0136226 }, + { "lat": 40.7051214, "lon": -74.0136316 }, + { "lat": 40.7052988, "lon": -74.0135716 }, + { "lat": 40.7052980, "lon": -74.0135657 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "fine_gravel" + } +}, +{ + "type": "way", + "id": 823197998, + "bounds": { + "minlat": 40.7047210, + "minlon": -74.0138029, + "maxlat": 40.7050978, + "maxlon": -74.0134975 + }, + "nodes": [ + 7685535260, + 9898775049, + 7685539653, + 7685481826, + 7685481825, + 7685481824, + 7685481823, + 7685481822, + 7685481821, + 7685481820, + 7685481819, + 7685481818, + 7685481817, + 7685481816, + 7685481815, + 7685481814, + 7685481813, + 7685481812, + 7685481811, + 7685481810, + 7685481809, + 7685481808, + 7685481807, + 7685481806, + 7685481805, + 7685481804, + 7685481803, + 7685481802, + 7685539652, + 9898775048, + 7685535203, + 7685535202, + 7685535201, + 7685535200, + 7685539651, + 7685535199, + 7685535198, + 7685535197, + 7685535196, + 7685535195, + 7685535194, + 7685535193, + 7685539650, + 7685535192, + 7685535191, + 7685535190, + 7685535189, + 7685535188, + 7685535236, + 7685535235, + 7685535234, + 7685535233, + 7685535232, + 7685535231, + 9898775047, + 7685539648, + 1280366091, + 7685535311, + 9898775046, + 7685535292, + 7685535293, + 7685535294, + 7685535295, + 7685535296, + 7685535297, + 7685535244, + 7685535245, + 7685535246, + 7685535247, + 7685535248, + 7685535249, + 7685535250, + 7685535251, + 7685535252, + 7685535253, + 7685535254, + 7685535255, + 7685535256, + 7685535257, + 7685535258, + 7685535259, + 7685535260 + ], + "geometry": [ + { "lat": 40.7050962, "lon": -74.0136299 }, + { "lat": 40.7050795, "lon": -74.0136344 }, + { "lat": 40.7050686, "lon": -74.0136374 }, + { "lat": 40.7050696, "lon": -74.0136492 }, + { "lat": 40.7050670, "lon": -74.0136773 }, + { "lat": 40.7050594, "lon": -74.0137038 }, + { "lat": 40.7050473, "lon": -74.0137273 }, + { "lat": 40.7050313, "lon": -74.0137462 }, + { "lat": 40.7050124, "lon": -74.0137597 }, + { "lat": 40.7049916, "lon": -74.0137669 }, + { "lat": 40.7049701, "lon": -74.0137674 }, + { "lat": 40.7049491, "lon": -74.0137613 }, + { "lat": 40.7049298, "lon": -74.0137487 }, + { "lat": 40.7049133, "lon": -74.0137305 }, + { "lat": 40.7049005, "lon": -74.0137077 }, + { "lat": 40.7048922, "lon": -74.0136816 }, + { "lat": 40.7048888, "lon": -74.0136536 }, + { "lat": 40.7048905, "lon": -74.0136253 }, + { "lat": 40.7048972, "lon": -74.0135983 }, + { "lat": 40.7049085, "lon": -74.0135742 }, + { "lat": 40.7049238, "lon": -74.0135543 }, + { "lat": 40.7049423, "lon": -74.0135398 }, + { "lat": 40.7049628, "lon": -74.0135313 }, + { "lat": 40.7049843, "lon": -74.0135296 }, + { "lat": 40.7050054, "lon": -74.0135345 }, + { "lat": 40.7050251, "lon": -74.0135459 }, + { "lat": 40.7050422, "lon": -74.0135631 }, + { "lat": 40.7050557, "lon": -74.0135852 }, + { "lat": 40.7050626, "lon": -74.0136046 }, + { "lat": 40.7050735, "lon": -74.0136007 }, + { "lat": 40.7050881, "lon": -74.0135954 }, + { "lat": 40.7050764, "lon": -74.0135615 }, + { "lat": 40.7050622, "lon": -74.0135377 }, + { "lat": 40.7050436, "lon": -74.0135183 }, + { "lat": 40.7050329, "lon": -74.0135102 }, + { "lat": 40.7050141, "lon": -74.0135019 }, + { "lat": 40.7049907, "lon": -74.0134975 }, + { "lat": 40.7049643, "lon": -74.0134975 }, + { "lat": 40.7049442, "lon": -74.0135015 }, + { "lat": 40.7049239, "lon": -74.0135112 }, + { "lat": 40.7049074, "lon": -74.0135253 }, + { "lat": 40.7048959, "lon": -74.0135394 }, + { "lat": 40.7048876, "lon": -74.0135515 }, + { "lat": 40.7048792, "lon": -74.0135679 }, + { "lat": 40.7048728, "lon": -74.0135823 }, + { "lat": 40.7048670, "lon": -74.0136018 }, + { "lat": 40.7048632, "lon": -74.0136246 }, + { "lat": 40.7048624, "lon": -74.0136454 }, + { "lat": 40.7048637, "lon": -74.0136675 }, + { "lat": 40.7048380, "lon": -74.0136745 }, + { "lat": 40.7048365, "lon": -74.0136668 }, + { "lat": 40.7047767, "lon": -74.0136856 }, + { "lat": 40.7047783, "lon": -74.0136950 }, + { "lat": 40.7047414, "lon": -74.0137064 }, + { "lat": 40.7047329, "lon": -74.0137090 }, + { "lat": 40.7047210, "lon": -74.0137126 }, + { "lat": 40.7047243, "lon": -74.0137297 }, + { "lat": 40.7047277, "lon": -74.0137457 }, + { "lat": 40.7047373, "lon": -74.0137425 }, + { "lat": 40.7047465, "lon": -74.0137394 }, + { "lat": 40.7047825, "lon": -74.0137278 }, + { "lat": 40.7047839, "lon": -74.0137351 }, + { "lat": 40.7048448, "lon": -74.0137154 }, + { "lat": 40.7048432, "lon": -74.0137070 }, + { "lat": 40.7048695, "lon": -74.0136984 }, + { "lat": 40.7048743, "lon": -74.0137174 }, + { "lat": 40.7048873, "lon": -74.0137453 }, + { "lat": 40.7049010, "lon": -74.0137647 }, + { "lat": 40.7049214, "lon": -74.0137821 }, + { "lat": 40.7049397, "lon": -74.0137929 }, + { "lat": 40.7049575, "lon": -74.0137999 }, + { "lat": 40.7049758, "lon": -74.0138029 }, + { "lat": 40.7049968, "lon": -74.0138013 }, + { "lat": 40.7050179, "lon": -74.0137952 }, + { "lat": 40.7050393, "lon": -74.0137845 }, + { "lat": 40.7050586, "lon": -74.0137667 }, + { "lat": 40.7050759, "lon": -74.0137422 }, + { "lat": 40.7050863, "lon": -74.0137201 }, + { "lat": 40.7050934, "lon": -74.0136973 }, + { "lat": 40.7050970, "lon": -74.0136745 }, + { "lat": 40.7050978, "lon": -74.0136594 }, + { "lat": 40.7050962, "lon": -74.0136299 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "fine_gravel" + } +}, +{ + "type": "way", + "id": 823201417, + "bounds": { + "minlat": 40.7048963, + "minlon": -74.0137420, + "maxlat": 40.7056725, + "maxlon": -74.0133497 + }, + "nodes": [ + 7072589180, + 10316226184, + 7685580207, + 10316226009, + 10316226010, + 7685580206, + 10316226182, + 10316226127, + 7685580205, + 7685580204, + 7685580203, + 10316226002, + 7685580202, + 7685580201, + 7685580200, + 7685580199, + 7685580198, + 10316226001, + 7685580197, + 10316226000, + 10316225999, + 7685580196, + 7685580186, + 10316225998, + 7685580190, + 7685580188, + 10316226007, + 10316226080, + 10316226082, + 10316226084, + 10316226086, + 10316226087, + 10316226088, + 7685535300, + 10316226085, + 10316226083, + 10316226081, + 10316226079, + 10316226003, + 10316226004, + 10316226005, + 7685580214, + 10316226006, + 7685580216, + 7685580213, + 7685580212, + 7685580211, + 7685580187, + 7685580210, + 7685580209, + 7685580208, + 7685535320, + 7072589181, + 7072589179, + 7072589180 + ], + "geometry": [ + { "lat": 40.7050218, "lon": -74.0133785 }, + { "lat": 40.7050025, "lon": -74.0133786 }, + { "lat": 40.7048963, "lon": -74.0133791 }, + { "lat": 40.7049179, "lon": -74.0133542 }, + { "lat": 40.7049239, "lon": -74.0133512 }, + { "lat": 40.7049321, "lon": -74.0133497 }, + { "lat": 40.7050018, "lon": -74.0133540 }, + { "lat": 40.7050050, "lon": -74.0133542 }, + { "lat": 40.7050131, "lon": -74.0133547 }, + { "lat": 40.7050975, "lon": -74.0133560 }, + { "lat": 40.7051777, "lon": -74.0133640 }, + { "lat": 40.7052387, "lon": -74.0133701 }, + { "lat": 40.7053098, "lon": -74.0133771 }, + { "lat": 40.7053982, "lon": -74.0133819 }, + { "lat": 40.7054499, "lon": -74.0133817 }, + { "lat": 40.7054947, "lon": -74.0133770 }, + { "lat": 40.7055344, "lon": -74.0133734 }, + { "lat": 40.7055963, "lon": -74.0133636 }, + { "lat": 40.7056377, "lon": -74.0133605 }, + { "lat": 40.7056492, "lon": -74.0133625 }, + { "lat": 40.7056593, "lon": -74.0133696 }, + { "lat": 40.7056668, "lon": -74.0133820 }, + { "lat": 40.7056700, "lon": -74.0133896 }, + { "lat": 40.7056725, "lon": -74.0134051 }, + { "lat": 40.7056711, "lon": -74.0134150 }, + { "lat": 40.7056652, "lon": -74.0134234 }, + { "lat": 40.7056323, "lon": -74.0134500 }, + { "lat": 40.7055659, "lon": -74.0135044 }, + { "lat": 40.7054892, "lon": -74.0135677 }, + { "lat": 40.7054032, "lon": -74.0136372 }, + { "lat": 40.7053245, "lon": -74.0137032 }, + { "lat": 40.7052826, "lon": -74.0137396 }, + { "lat": 40.7052728, "lon": -74.0137420 }, + { "lat": 40.7052601, "lon": -74.0137382 }, + { "lat": 40.7054008, "lon": -74.0136178 }, + { "lat": 40.7054839, "lon": -74.0135524 }, + { "lat": 40.7055600, "lon": -74.0134906 }, + { "lat": 40.7056268, "lon": -74.0134383 }, + { "lat": 40.7056413, "lon": -74.0134269 }, + { "lat": 40.7056481, "lon": -74.0134184 }, + { "lat": 40.7056525, "lon": -74.0134111 }, + { "lat": 40.7056531, "lon": -74.0134021 }, + { "lat": 40.7056512, "lon": -74.0133936 }, + { "lat": 40.7056489, "lon": -74.0133879 }, + { "lat": 40.7056427, "lon": -74.0133830 }, + { "lat": 40.7056284, "lon": -74.0133834 }, + { "lat": 40.7055959, "lon": -74.0133894 }, + { "lat": 40.7055113, "lon": -74.0134026 }, + { "lat": 40.7054277, "lon": -74.0134050 }, + { "lat": 40.7053733, "lon": -74.0134013 }, + { "lat": 40.7052810, "lon": -74.0133942 }, + { "lat": 40.7051261, "lon": -74.0133808 }, + { "lat": 40.7050847, "lon": -74.0133785 }, + { "lat": 40.7050603, "lon": -74.0133783 }, + { "lat": 40.7050218, "lon": -74.0133785 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 823201418, + "bounds": { + "minlat": 40.7051261, + "minlon": -74.0137382, + "maxlat": 40.7056531, + "maxlon": -74.0133808 + }, + "nodes": [ + 7685535300, + 10316226085, + 10316226083, + 10316226081, + 10316226079, + 10316226003, + 10316226004, + 10316226005, + 7685580214, + 10316226006, + 7685580216, + 7685580213, + 7685580212, + 7685580211, + 7685580187, + 7685580210, + 7685580209, + 7685580208, + 7685535320, + 7685535321, + 7685539642, + 1251958263, + 7685535322, + 1251958243, + 7685539641, + 7685535323, + 7685535324, + 7685535325, + 10316226060, + 7685535326, + 7685539649, + 7685535327, + 1251958161, + 7685535298, + 7685535299, + 1251958261, + 7685535300 + ], + "geometry": [ + { "lat": 40.7052601, "lon": -74.0137382 }, + { "lat": 40.7054008, "lon": -74.0136178 }, + { "lat": 40.7054839, "lon": -74.0135524 }, + { "lat": 40.7055600, "lon": -74.0134906 }, + { "lat": 40.7056268, "lon": -74.0134383 }, + { "lat": 40.7056413, "lon": -74.0134269 }, + { "lat": 40.7056481, "lon": -74.0134184 }, + { "lat": 40.7056525, "lon": -74.0134111 }, + { "lat": 40.7056531, "lon": -74.0134021 }, + { "lat": 40.7056512, "lon": -74.0133936 }, + { "lat": 40.7056489, "lon": -74.0133879 }, + { "lat": 40.7056427, "lon": -74.0133830 }, + { "lat": 40.7056284, "lon": -74.0133834 }, + { "lat": 40.7055959, "lon": -74.0133894 }, + { "lat": 40.7055113, "lon": -74.0134026 }, + { "lat": 40.7054277, "lon": -74.0134050 }, + { "lat": 40.7053733, "lon": -74.0134013 }, + { "lat": 40.7052810, "lon": -74.0133942 }, + { "lat": 40.7051261, "lon": -74.0133808 }, + { "lat": 40.7051656, "lon": -74.0133874 }, + { "lat": 40.7051999, "lon": -74.0133954 }, + { "lat": 40.7052245, "lon": -74.0134038 }, + { "lat": 40.7052672, "lon": -74.0134212 }, + { "lat": 40.7052955, "lon": -74.0134387 }, + { "lat": 40.7053093, "lon": -74.0134506 }, + { "lat": 40.7053242, "lon": -74.0134687 }, + { "lat": 40.7053339, "lon": -74.0134854 }, + { "lat": 40.7053451, "lon": -74.0135136 }, + { "lat": 40.7053492, "lon": -74.0135326 }, + { "lat": 40.7053504, "lon": -74.0135470 }, + { "lat": 40.7053506, "lon": -74.0135706 }, + { "lat": 40.7053454, "lon": -74.0135959 }, + { "lat": 40.7053360, "lon": -74.0136237 }, + { "lat": 40.7053268, "lon": -74.0136437 }, + { "lat": 40.7053095, "lon": -74.0136702 }, + { "lat": 40.7052856, "lon": -74.0137030 }, + { "lat": 40.7052601, "lon": -74.0137382 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Evacuation Day Plaza", + "name:etymology:wikidata": "Q3133590", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 823213787, + "bounds": { + "minlat": 40.7036373, + "minlon": -74.0138800, + "maxlat": 40.7036955, + "maxlon": -74.0137956 + }, + "nodes": [ + 7685651601, + 7685651600, + 7685651599, + 7685651598, + 7685651597, + 7685651596, + 7685651595, + 7685651594, + 7685651593, + 7685651592, + 7685651591, + 7685651590, + 7685651589, + 7685651625, + 7685651624, + 7685651623, + 7685651622, + 7685651601 + ], + "geometry": [ + { "lat": 40.7036936, "lon": -74.0137956 }, + { "lat": 40.7036584, "lon": -74.0137966 }, + { "lat": 40.7036484, "lon": -74.0138002 }, + { "lat": 40.7036419, "lon": -74.0138066 }, + { "lat": 40.7036383, "lon": -74.0138157 }, + { "lat": 40.7036373, "lon": -74.0138311 }, + { "lat": 40.7036378, "lon": -74.0138482 }, + { "lat": 40.7036401, "lon": -74.0138640 }, + { "lat": 40.7036437, "lon": -74.0138710 }, + { "lat": 40.7036502, "lon": -74.0138771 }, + { "lat": 40.7036566, "lon": -74.0138800 }, + { "lat": 40.7036716, "lon": -74.0138800 }, + { "lat": 40.7036955, "lon": -74.0138791 }, + { "lat": 40.7036952, "lon": -74.0138652 }, + { "lat": 40.7036670, "lon": -74.0138660 }, + { "lat": 40.7036661, "lon": -74.0138120 }, + { "lat": 40.7036938, "lon": -74.0138113 }, + { "lat": 40.7036936, "lon": -74.0137956 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 823277492, + "bounds": { + "minlat": 40.7563285, + "minlon": -73.9539251, + "maxlat": 40.7563797, + "maxlon": -73.9536532 + }, + "nodes": [ + 593428068, + 7686087005, + 7686087006, + 7686087007, + 7686087008 + ], + "geometry": [ + { "lat": 40.7563290, "lon": -73.9536532 }, + { "lat": 40.7563706, "lon": -73.9537443 }, + { "lat": 40.7563797, "lon": -73.9538148 }, + { "lat": 40.7563580, "lon": -73.9538769 }, + { "lat": 40.7563285, "lon": -73.9539251 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 823308246, + "bounds": { + "minlat": 40.7952020, + "minlon": -74.0166545, + "maxlat": 40.7954922, + "maxlon": -74.0164316 + }, + "nodes": [ + 7686381515, + 7686381516, + 7686381517, + 7686381518, + 7686381519, + 7686381520, + 7686381521 + ], + "geometry": [ + { "lat": 40.7952020, "lon": -74.0165472 }, + { "lat": 40.7953250, "lon": -74.0164400 }, + { "lat": 40.7953453, "lon": -74.0164316 }, + { "lat": 40.7953668, "lon": -74.0164333 }, + { "lat": 40.7953909, "lon": -74.0164484 }, + { "lat": 40.7954399, "lon": -74.0165395 }, + { "lat": 40.7954922, "lon": -74.0166545 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 823308292, + "bounds": { + "minlat": 40.8357999, + "minlon": -73.9209000, + "maxlat": 40.8370104, + "maxlon": -73.9200823 + }, + "nodes": [ + 7686390438, + 12998404096, + 7686390439, + 7686390440, + 7686390441, + 13703451970, + 13703451968, + 7686390442, + 13703451969, + 7686390443, + 7686390444, + 7686390446, + 7686390448, + 12998545817, + 7686390449 + ], + "geometry": [ + { "lat": 40.8357999, "lon": -73.9200823 }, + { "lat": 40.8358242, "lon": -73.9201514 }, + { "lat": 40.8358342, "lon": -73.9201797 }, + { "lat": 40.8360825, "lon": -73.9209000 }, + { "lat": 40.8363211, "lon": -73.9207629 }, + { "lat": 40.8363678, "lon": -73.9207242 }, + { "lat": 40.8364561, "lon": -73.9206693 }, + { "lat": 40.8364775, "lon": -73.9206389 }, + { "lat": 40.8364875, "lon": -73.9205955 }, + { "lat": 40.8368580, "lon": -73.9203778 }, + { "lat": 40.8369207, "lon": -73.9203414 }, + { "lat": 40.8368624, "lon": -73.9201861 }, + { "lat": 40.8369373, "lon": -73.9201417 }, + { "lat": 40.8369583, "lon": -73.9201309 }, + { "lat": 40.8370104, "lon": -73.9201040 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 823308293, + "bounds": { + "minlat": 40.8344925, + "minlon": -73.9189327, + "maxlat": 40.8347875, + "maxlon": -73.9187764 + }, + "nodes": [ + 7686390450, + 12739350638, + 7686390452, + 7686390451 + ], + "geometry": [ + { "lat": 40.8347875, "lon": -73.9187764 }, + { "lat": 40.8347411, "lon": -73.9188029 }, + { "lat": 40.8347267, "lon": -73.9188112 }, + { "lat": 40.8344925, "lon": -73.9189327 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 823326428, + "bounds": { + "minlat": 40.8534653, + "minlon": -73.9332448, + "maxlat": 40.8538793, + "maxlon": -73.9329427 + }, + "nodes": [ + 7686600775, + 7686600777, + 9563795399, + 7686600776 + ], + "geometry": [ + { "lat": 40.8538793, "lon": -73.9329427 }, + { "lat": 40.8538358, "lon": -73.9329745 }, + { "lat": 40.8538125, "lon": -73.9329915 }, + { "lat": 40.8534653, "lon": -73.9332448 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 823362784, + "bounds": { + "minlat": 40.7640008, + "minlon": -73.9474560, + "maxlat": 40.7640977, + "maxlon": -73.9473569 + }, + "nodes": [ + 5212739096, + 2300353500 + ], + "geometry": [ + { "lat": 40.7640008, "lon": -73.9474560 }, + { "lat": 40.7640977, "lon": -73.9473569 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed": "10 mph", + "name": "Roosevelt Island Bridge", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 823362786, + "bounds": { + "minlat": 40.7639641, + "minlon": -73.9473569, + "maxlat": 40.7641510, + "maxlon": -73.9467820 + }, + "nodes": [ + 2300353500, + 3785702981, + 9915262009, + 3785702980, + 3785702979, + 9915262007, + 1241986438, + 2300353499, + 1241986710, + 9915262008, + 5212739088, + 1241986499 + ], + "geometry": [ + { "lat": 40.7640977, "lon": -73.9473569 }, + { "lat": 40.7641129, "lon": -73.9473392 }, + { "lat": 40.7641271, "lon": -73.9473172 }, + { "lat": 40.7641370, "lon": -73.9472944 }, + { "lat": 40.7641451, "lon": -73.9472684 }, + { "lat": 40.7641495, "lon": -73.9472421 }, + { "lat": 40.7641510, "lon": -73.9472154 }, + { "lat": 40.7641474, "lon": -73.9471916 }, + { "lat": 40.7641411, "lon": -73.9471649 }, + { "lat": 40.7641300, "lon": -73.9471366 }, + { "lat": 40.7640949, "lon": -73.9470589 }, + { "lat": 40.7639641, "lon": -73.9467820 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Roosevelt Island Bridge", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 823374905, + "bounds": { + "minlat": 40.7923120, + "minlon": -74.0161892, + "maxlat": 40.7924297, + "maxlon": -74.0159131 + }, + "nodes": [ + 7687124420, + 7687124421, + 7687124422 + ], + "geometry": [ + { "lat": 40.7924297, "lon": -74.0161892 }, + { "lat": 40.7923298, "lon": -74.0159615 }, + { "lat": 40.7923120, "lon": -74.0159131 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 823375029, + "bounds": { + "minlat": 40.8487670, + "minlon": -73.9705064, + "maxlat": 40.8494201, + "maxlon": -73.9703568 + }, + "nodes": [ + 7635623421, + 103205046, + 103205044, + 7930656822, + 1957898057 + ], + "geometry": [ + { "lat": 40.8494201, "lon": -73.9703568 }, + { "lat": 40.8493225, "lon": -73.9703651 }, + { "lat": 40.8492188, "lon": -73.9703844 }, + { "lat": 40.8491214, "lon": -73.9704070 }, + { "lat": 40.8487670, "lon": -73.9705064 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 823375030, + "bounds": { + "minlat": 40.8494201, + "minlon": -73.9703568, + "maxlat": 40.8495019, + "maxlon": -73.9703557 + }, + "nodes": [ + 1957898027, + 7635623421 + ], + "geometry": [ + { "lat": 40.8495019, "lon": -73.9703557 }, + { "lat": 40.8494201, "lon": -73.9703568 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 823381574, + "bounds": { + "minlat": 40.8517124, + "minlon": -73.9979032, + "maxlat": 40.8518918, + "maxlon": -73.9977145 + }, + "nodes": [ + 7687186406, + 7687186409, + 7687186407 + ], + "geometry": [ + { "lat": 40.8517124, "lon": -73.9979032 }, + { "lat": 40.8517941, "lon": -73.9978172 }, + { "lat": 40.8518918, "lon": -73.9977145 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 823381575, + "bounds": { + "minlat": 40.8517941, + "minlon": -73.9981777, + "maxlat": 40.8520032, + "maxlon": -73.9978172 + }, + "nodes": [ + 7687186408, + 7687186409 + ], + "geometry": [ + { "lat": 40.8520032, "lon": -73.9981777 }, + { "lat": 40.8517941, "lon": -73.9978172 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 823391519, + "bounds": { + "minlat": 40.7036104, + "minlon": -74.0139096, + "maxlat": 40.7036398, + "maxlon": -74.0139082 + }, + "nodes": [ + 7687295646, + 9939135583 + ], + "geometry": [ + { "lat": 40.7036104, "lon": -74.0139096 }, + { "lat": 40.7036398, "lon": -74.0139082 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 823422457, + "bounds": { + "minlat": 40.8533349, + "minlon": -73.9989501, + "maxlat": 40.8536107, + "maxlon": -73.9984888 + }, + "nodes": [ + 7687570216, + 7687570217 + ], + "geometry": [ + { "lat": 40.8533349, "lon": -73.9984888 }, + { "lat": 40.8536107, "lon": -73.9989501 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 823568944, + "bounds": { + "minlat": 40.7017119, + "minlon": -74.0126162, + "maxlat": 40.7017789, + "maxlon": -74.0123682 + }, + "nodes": [ + 7689143055, + 11041048611, + 8276469234, + 8847099759, + 11041048613, + 8795511197 + ], + "geometry": [ + { "lat": 40.7017119, "lon": -74.0126162 }, + { "lat": 40.7017183, "lon": -74.0125759 }, + { "lat": 40.7017230, "lon": -74.0125335 }, + { "lat": 40.7017415, "lon": -74.0124135 }, + { "lat": 40.7017553, "lon": -74.0123885 }, + { "lat": 40.7017789, "lon": -74.0123682 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "lit": "yes", + "oneway": "yes", + "service": "driveway", + "sidewalk": "no", + "smoothness": "excellent", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 823712001, + "bounds": { + "minlat": 40.8823058, + "minlon": -73.9561453, + "maxlat": 40.8827650, + "maxlon": -73.9552038 + }, + "nodes": [ + 7690668265, + 7690668268, + 7690668270, + 7690668274, + 7690668275, + 7690668276 + ], + "geometry": [ + { "lat": 40.8827650, "lon": -73.9561453 }, + { "lat": 40.8824733, "lon": -73.9556210 }, + { "lat": 40.8823058, "lon": -73.9553256 }, + { "lat": 40.8823251, "lon": -73.9552879 }, + { "lat": 40.8823805, "lon": -73.9552438 }, + { "lat": 40.8823812, "lon": -73.9552038 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 823712002, + "bounds": { + "minlat": 40.8824733, + "minlon": -73.9556210, + "maxlat": 40.8828145, + "maxlon": -73.9552683 + }, + "nodes": [ + 7690668268, + 7690668269 + ], + "geometry": [ + { "lat": 40.8824733, "lon": -73.9556210 }, + { "lat": 40.8828145, "lon": -73.9552683 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 823712003, + "bounds": { + "minlat": 40.8822812, + "minlon": -73.9552681, + "maxlat": 40.8826312, + "maxlon": -73.9549440 + }, + "nodes": [ + 7690668271, + 7690668272, + 7690668276, + 7690668273 + ], + "geometry": [ + { "lat": 40.8822812, "lon": -73.9552681 }, + { "lat": 40.8823660, "lon": -73.9551989 }, + { "lat": 40.8823812, "lon": -73.9552038 }, + { "lat": 40.8826312, "lon": -73.9549440 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 823712004, + "bounds": { + "minlat": 40.8821329, + "minlon": -73.9552681, + "maxlat": 40.8822812, + "maxlon": -73.9550061 + }, + "nodes": [ + 7690668271, + 7690668266 + ], + "geometry": [ + { "lat": 40.8822812, "lon": -73.9552681 }, + { "lat": 40.8821329, "lon": -73.9550061 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 823712005, + "bounds": { + "minlat": 40.8821329, + "minlon": -73.9550061, + "maxlat": 40.8824803, + "maxlon": -73.9546829 + }, + "nodes": [ + 7690668267, + 10696506184, + 7690668266 + ], + "geometry": [ + { "lat": 40.8824803, "lon": -73.9546829 }, + { "lat": 40.8821504, "lon": -73.9549635 }, + { "lat": 40.8821329, "lon": -73.9550061 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 823760129, + "bounds": { + "minlat": 40.7003168, + "minlon": -73.9455193, + "maxlat": 40.7007500, + "maxlon": -73.9454351 + }, + "nodes": [ + 7691087921, + 9752179213, + 9752179214, + 7691087922 + ], + "geometry": [ + { "lat": 40.7007500, "lon": -73.9455193 }, + { "lat": 40.7006982, "lon": -73.9455092 }, + { "lat": 40.7003932, "lon": -73.9454500 }, + { "lat": 40.7003168, "lon": -73.9454351 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 823792533, + "bounds": { + "minlat": 40.8106820, + "minlon": -73.9105128, + "maxlat": 40.8107722, + "maxlon": -73.9099904 + }, + "nodes": [ + 7691374331, + 10127019162, + 7691374332, + 7691374333, + 7691374334, + 7691374335 + ], + "geometry": [ + { "lat": 40.8106820, "lon": -73.9099904 }, + { "lat": 40.8107008, "lon": -73.9100788 }, + { "lat": 40.8107080, "lon": -73.9101126 }, + { "lat": 40.8107328, "lon": -73.9102615 }, + { "lat": 40.8107470, "lon": -73.9104062 }, + { "lat": 40.8107722, "lon": -73.9105128 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824027502, + "bounds": { + "minlat": 40.8709295, + "minlon": -73.9091404, + "maxlat": 40.8731846, + "maxlon": -73.9077082 + }, + "nodes": [ + 7693557775, + 7693557776, + 7693557777, + 7693557778, + 7693557779, + 7693557780, + 7693557781, + 7693557782, + 7693557783, + 7693557784 + ], + "geometry": [ + { "lat": 40.8731846, "lon": -73.9091404 }, + { "lat": 40.8730347, "lon": -73.9090788 }, + { "lat": 40.8722060, "lon": -73.9084978 }, + { "lat": 40.8717700, "lon": -73.9083627 }, + { "lat": 40.8717091, "lon": -73.9083082 }, + { "lat": 40.8715422, "lon": -73.9080952 }, + { "lat": 40.8714244, "lon": -73.9079082 }, + { "lat": 40.8713380, "lon": -73.9077446 }, + { "lat": 40.8712633, "lon": -73.9077082 }, + { "lat": 40.8709295, "lon": -73.9077835 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824031892, + "bounds": { + "minlat": 40.8332663, + "minlon": -73.9490922, + "maxlat": 40.8338656, + "maxlon": -73.9485393 + }, + "nodes": [ + 7693632085, + 11191773505, + 7693632086, + 12140122265, + 7693632087, + 12140122264, + 7693632088, + 12140122266, + 12140122267, + 7693632089, + 7693632090 + ], + "geometry": [ + { "lat": 40.8338656, "lon": -73.9485393 }, + { "lat": 40.8338086, "lon": -73.9485852 }, + { "lat": 40.8336826, "lon": -73.9486866 }, + { "lat": 40.8336777, "lon": -73.9487359 }, + { "lat": 40.8336624, "lon": -73.9487822 }, + { "lat": 40.8336276, "lon": -73.9488417 }, + { "lat": 40.8335676, "lon": -73.9489057 }, + { "lat": 40.8334870, "lon": -73.9489864 }, + { "lat": 40.8334417, "lon": -73.9490230 }, + { "lat": 40.8333960, "lon": -73.9490471 }, + { "lat": 40.8332663, "lon": -73.9490922 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 824031893, + "bounds": { + "minlat": 40.8320543, + "minlon": -73.9490583, + "maxlat": 40.8336826, + "maxlon": -73.9476349 + }, + "nodes": [ + 7693632091, + 11191773490, + 7693632092, + 12208668180, + 7693632093, + 7693632094, + 7693632095, + 12140122283, + 12140122280, + 12140122282, + 7693632096, + 12140122281, + 12140122279, + 7693632097, + 7693632098, + 12140122278, + 7693632099, + 12140122277, + 12140122276, + 12614282524, + 7693632100, + 12140122275, + 7693632101, + 12140122274, + 7693632102, + 7693632103, + 12140122272, + 7693632104, + 12140122273, + 12140122271, + 7693632105, + 7693632106, + 12140122269, + 12140122268, + 12140122270, + 7693632107, + 7693632108, + 7693632109, + 12208668179, + 7693632110, + 12208668183, + 7693632111, + 12208668181, + 12208668182, + 7693632112, + 12140122250, + 7693632113, + 12140122249, + 7693632114, + 12140122246, + 7693632115, + 12140122247, + 12140122245, + 12140122248, + 12140122244, + 7693632116, + 7693632117, + 12140122256, + 12140122258, + 7693632118, + 12140122257, + 12140122255, + 12140122259, + 7693632119, + 12140122260, + 7693632120, + 7693632121, + 12614282523, + 7693632122, + 7693632123, + 12140122263, + 12140122261, + 12140122262, + 7693632124, + 7693632086 + ], + "geometry": [ + { "lat": 40.8320543, "lon": -73.9481783 }, + { "lat": 40.8321214, "lon": -73.9481286 }, + { "lat": 40.8321332, "lon": -73.9481199 }, + { "lat": 40.8321682, "lon": -73.9481133 }, + { "lat": 40.8321842, "lon": -73.9481196 }, + { "lat": 40.8322062, "lon": -73.9481680 }, + { "lat": 40.8322759, "lon": -73.9483252 }, + { "lat": 40.8322859, "lon": -73.9483376 }, + { "lat": 40.8323003, "lon": -73.9483432 }, + { "lat": 40.8323132, "lon": -73.9483429 }, + { "lat": 40.8323269, "lon": -73.9483403 }, + { "lat": 40.8323403, "lon": -73.9483289 }, + { "lat": 40.8323528, "lon": -73.9483084 }, + { "lat": 40.8323676, "lon": -73.9482737 }, + { "lat": 40.8324601, "lon": -73.9482023 }, + { "lat": 40.8326275, "lon": -73.9480606 }, + { "lat": 40.8327006, "lon": -73.9480083 }, + { "lat": 40.8327574, "lon": -73.9479765 }, + { "lat": 40.8328142, "lon": -73.9479527 }, + { "lat": 40.8328653, "lon": -73.9479322 }, + { "lat": 40.8329277, "lon": -73.9479072 }, + { "lat": 40.8329540, "lon": -73.9478865 }, + { "lat": 40.8329794, "lon": -73.9478591 }, + { "lat": 40.8330669, "lon": -73.9477383 }, + { "lat": 40.8331115, "lon": -73.9477025 }, + { "lat": 40.8332199, "lon": -73.9476413 }, + { "lat": 40.8332454, "lon": -73.9476349 }, + { "lat": 40.8332718, "lon": -73.9476353 }, + { "lat": 40.8332948, "lon": -73.9476438 }, + { "lat": 40.8333136, "lon": -73.9476635 }, + { "lat": 40.8333459, "lon": -73.9477150 }, + { "lat": 40.8333736, "lon": -73.9477826 }, + { "lat": 40.8333801, "lon": -73.9478103 }, + { "lat": 40.8333805, "lon": -73.9478379 }, + { "lat": 40.8333758, "lon": -73.9478594 }, + { "lat": 40.8333711, "lon": -73.9478740 }, + { "lat": 40.8332380, "lon": -73.9480833 }, + { "lat": 40.8331126, "lon": -73.9482754 }, + { "lat": 40.8330516, "lon": -73.9483737 }, + { "lat": 40.8329783, "lon": -73.9484440 }, + { "lat": 40.8329119, "lon": -73.9484891 }, + { "lat": 40.8328448, "lon": -73.9485203 }, + { "lat": 40.8327355, "lon": -73.9485296 }, + { "lat": 40.8326752, "lon": -73.9485256 }, + { "lat": 40.8326250, "lon": -73.9485529 }, + { "lat": 40.8325746, "lon": -73.9485938 }, + { "lat": 40.8325290, "lon": -73.9486420 }, + { "lat": 40.8325029, "lon": -73.9486880 }, + { "lat": 40.8324828, "lon": -73.9487374 }, + { "lat": 40.8324770, "lon": -73.9487921 }, + { "lat": 40.8324824, "lon": -73.9488468 }, + { "lat": 40.8324889, "lon": -73.9488795 }, + { "lat": 40.8325005, "lon": -73.9489092 }, + { "lat": 40.8325125, "lon": -73.9489293 }, + { "lat": 40.8325282, "lon": -73.9489416 }, + { "lat": 40.8325798, "lon": -73.9489650 }, + { "lat": 40.8327503, "lon": -73.9490154 }, + { "lat": 40.8328336, "lon": -73.9490535 }, + { "lat": 40.8328519, "lon": -73.9490583 }, + { "lat": 40.8328731, "lon": -73.9490567 }, + { "lat": 40.8328892, "lon": -73.9490504 }, + { "lat": 40.8329091, "lon": -73.9490396 }, + { "lat": 40.8329689, "lon": -73.9489892 }, + { "lat": 40.8330115, "lon": -73.9489185 }, + { "lat": 40.8330397, "lon": -73.9488852 }, + { "lat": 40.8330738, "lon": -73.9488666 }, + { "lat": 40.8331834, "lon": -73.9488506 }, + { "lat": 40.8332313, "lon": -73.9488127 }, + { "lat": 40.8333903, "lon": -73.9486872 }, + { "lat": 40.8335371, "lon": -73.9485976 }, + { "lat": 40.8335616, "lon": -73.9485925 }, + { "lat": 40.8335877, "lon": -73.9485933 }, + { "lat": 40.8336126, "lon": -73.9486010 }, + { "lat": 40.8336375, "lon": -73.9486185 }, + { "lat": 40.8336826, "lon": -73.9486866 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824071311, + "bounds": { + "minlat": 40.8396410, + "minlon": -73.9289848, + "maxlat": 40.8397594, + "maxlon": -73.9287355 + }, + "nodes": [ + 7694073466, + 7694073470, + 7694073467, + 7694073468, + 7694073469 + ], + "geometry": [ + { "lat": 40.8396903, "lon": -73.9287355 }, + { "lat": 40.8397397, "lon": -73.9288214 }, + { "lat": 40.8397594, "lon": -73.9288703 }, + { "lat": 40.8397517, "lon": -73.9289072 }, + { "lat": 40.8396410, "lon": -73.9289848 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824076847, + "bounds": { + "minlat": 40.8121917, + "minlon": -73.9147594, + "maxlat": 40.8124680, + "maxlon": -73.9146022 + }, + "nodes": [ + 7694113164, + 7694113166, + 12647571649, + 7694113165 + ], + "geometry": [ + { "lat": 40.8121917, "lon": -73.9147594 }, + { "lat": 40.8123901, "lon": -73.9146469 }, + { "lat": 40.8124140, "lon": -73.9146332 }, + { "lat": 40.8124680, "lon": -73.9146022 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824080840, + "bounds": { + "minlat": 40.8612939, + "minlon": -73.9192803, + "maxlat": 40.8617522, + "maxlon": -73.9188472 + }, + "nodes": [ + 7694163699, + 9561566533, + 7694163700, + 7694163701, + 7694163702, + 7694163703 + ], + "geometry": [ + { "lat": 40.8612939, "lon": -73.9192803 }, + { "lat": 40.8613589, "lon": -73.9192276 }, + { "lat": 40.8613785, "lon": -73.9192117 }, + { "lat": 40.8615019, "lon": -73.9190801 }, + { "lat": 40.8615578, "lon": -73.9190172 }, + { "lat": 40.8617522, "lon": -73.9188472 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824089582, + "bounds": { + "minlat": 40.8451115, + "minlon": -73.9387583, + "maxlat": 40.8451225, + "maxlon": -73.9385852 + }, + "nodes": [ + 7694273190, + 7694273191, + 7694273205, + 7694273206 + ], + "geometry": [ + { "lat": 40.8451115, "lon": -73.9387583 }, + { "lat": 40.8451197, "lon": -73.9386304 }, + { "lat": 40.8451211, "lon": -73.9386080 }, + { "lat": 40.8451225, "lon": -73.9385852 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824089583, + "bounds": { + "minlat": 40.8452449, + "minlon": -73.9387231, + "maxlat": 40.8452510, + "maxlon": -73.9385581 + }, + "nodes": [ + 7694273195, + 7694273196, + 7694273197, + 7694273204, + 7694273198 + ], + "geometry": [ + { "lat": 40.8452510, "lon": -73.9387231 }, + { "lat": 40.8452485, "lon": -73.9386255 }, + { "lat": 40.8452478, "lon": -73.9385961 }, + { "lat": 40.8452465, "lon": -73.9385783 }, + { "lat": 40.8452449, "lon": -73.9385581 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824089584, + "bounds": { + "minlat": 40.8451313, + "minlon": -73.9384739, + "maxlat": 40.8452196, + "maxlon": -73.9384404 + }, + "nodes": [ + 7694273202, + 7694273203 + ], + "geometry": [ + { "lat": 40.8452196, "lon": -73.9384404 }, + { "lat": 40.8451313, "lon": -73.9384739 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824089585, + "bounds": { + "minlat": 40.8451211, + "minlon": -73.9386080, + "maxlat": 40.8452465, + "maxlon": -73.9385783 + }, + "nodes": [ + 7694273204, + 7694273205 + ], + "geometry": [ + { "lat": 40.8452465, "lon": -73.9385783 }, + { "lat": 40.8451211, "lon": -73.9386080 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824089586, + "bounds": { + "minlat": 40.8452370, + "minlon": -73.9385581, + "maxlat": 40.8452449, + "maxlon": -73.9384747 + }, + "nodes": [ + 7694273198, + 7694273199 + ], + "geometry": [ + { "lat": 40.8452449, "lon": -73.9385581 }, + { "lat": 40.8452370, "lon": -73.9384747 } + ], + "tags": { + "access": "customers", + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 824089587, + "bounds": { + "minlat": 40.8451776, + "minlon": -73.9384747, + "maxlat": 40.8452370, + "maxlon": -73.9383497 + }, + "nodes": [ + 7694273199, + 7694273202, + 7694273200, + 7694273201 + ], + "geometry": [ + { "lat": 40.8452370, "lon": -73.9384747 }, + { "lat": 40.8452196, "lon": -73.9384404 }, + { "lat": 40.8451999, "lon": -73.9384014 }, + { "lat": 40.8451776, "lon": -73.9383497 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824089588, + "bounds": { + "minlat": 40.8451225, + "minlon": -73.9385852, + "maxlat": 40.8451280, + "maxlon": -73.9384974 + }, + "nodes": [ + 7694273206, + 7694273192 + ], + "geometry": [ + { "lat": 40.8451225, "lon": -73.9385852 }, + { "lat": 40.8451280, "lon": -73.9384974 } + ], + "tags": { + "access": "customers", + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 824089589, + "bounds": { + "minlat": 40.8451146, + "minlon": -73.9384974, + "maxlat": 40.8451350, + "maxlon": -73.9383949 + }, + "nodes": [ + 7694273192, + 7694273203, + 7694273193, + 7694273194 + ], + "geometry": [ + { "lat": 40.8451280, "lon": -73.9384974 }, + { "lat": 40.8451313, "lon": -73.9384739 }, + { "lat": 40.8451350, "lon": -73.9384480 }, + { "lat": 40.8451146, "lon": -73.9383949 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824118662, + "bounds": { + "minlat": 40.8234566, + "minlon": -73.9550663, + "maxlat": 40.8236344, + "maxlon": -73.9546314 + }, + "nodes": [ + 7694624897, + 7694624895, + 13528599226 + ], + "geometry": [ + { "lat": 40.8236344, "lon": -73.9550663 }, + { "lat": 40.8235228, "lon": -73.9547932 }, + { "lat": 40.8234566, "lon": -73.9546314 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824118663, + "bounds": { + "minlat": 40.8231931, + "minlon": -73.9545152, + "maxlat": 40.8233448, + "maxlon": -73.9544051 + }, + "nodes": [ + 7694624899, + 10170703029, + 7694624903, + 7694624901 + ], + "geometry": [ + { "lat": 40.8231931, "lon": -73.9545152 }, + { "lat": 40.8232452, "lon": -73.9544773 }, + { "lat": 40.8232880, "lon": -73.9544463 }, + { "lat": 40.8233448, "lon": -73.9544051 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824131109, + "bounds": { + "minlat": 40.8429375, + "minlon": -73.9256319, + "maxlat": 40.8431486, + "maxlon": -73.9253368 + }, + "nodes": [ + 7694727330, + 13146697898, + 7694727332, + 7694727331 + ], + "geometry": [ + { "lat": 40.8429375, "lon": -73.9253368 }, + { "lat": 40.8429866, "lon": -73.9254054 }, + { "lat": 40.8430007, "lon": -73.9254251 }, + { "lat": 40.8431486, "lon": -73.9256319 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824228543, + "bounds": { + "minlat": 40.8142235, + "minlon": -73.9206672, + "maxlat": 40.8143463, + "maxlon": -73.9202655 + }, + "nodes": [ + 7695520226, + 7695520228, + 7695520224, + 7695520227, + 7695520225 + ], + "geometry": [ + { "lat": 40.8142235, "lon": -73.9205398 }, + { "lat": 40.8142819, "lon": -73.9206672 }, + { "lat": 40.8143463, "lon": -73.9204593 }, + { "lat": 40.8142909, "lon": -73.9203283 }, + { "lat": 40.8142651, "lon": -73.9202655 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 824228544, + "bounds": { + "minlat": 40.8142235, + "minlon": -73.9205398, + "maxlat": 40.8142909, + "maxlon": -73.9203283 + }, + "nodes": [ + 7695520226, + 7695520227 + ], + "geometry": [ + { "lat": 40.8142235, "lon": -73.9205398 }, + { "lat": 40.8142909, "lon": -73.9203283 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 824228545, + "bounds": { + "minlat": 40.8142819, + "minlon": -73.9208338, + "maxlat": 40.8143702, + "maxlon": -73.9206672 + }, + "nodes": [ + 7695520228, + 12040128386, + 7695520229 + ], + "geometry": [ + { "lat": 40.8142819, "lon": -73.9206672 }, + { "lat": 40.8143170, "lon": -73.9207333 }, + { "lat": 40.8143702, "lon": -73.9208338 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 824233276, + "bounds": { + "minlat": 40.8155863, + "minlon": -73.9205012, + "maxlat": 40.8156539, + "maxlon": -73.9199881 + }, + "nodes": [ + 7695582350, + 7695582351, + 7695582353, + 12040128299, + 7695582352 + ], + "geometry": [ + { "lat": 40.8156067, "lon": -73.9205012 }, + { "lat": 40.8156539, "lon": -73.9202484 }, + { "lat": 40.8156165, "lon": -73.9201044 }, + { "lat": 40.8156079, "lon": -73.9200714 }, + { "lat": 40.8155863, "lon": -73.9199881 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 824233279, + "bounds": { + "minlat": 40.8152000, + "minlon": -73.9204322, + "maxlat": 40.8152712, + "maxlon": -73.9201673 + }, + "nodes": [ + 7695582354, + 7695582355, + 12040128300, + 7695582356 + ], + "geometry": [ + { "lat": 40.8152712, "lon": -73.9204322 }, + { "lat": 40.8152337, "lon": -73.9202928 }, + { "lat": 40.8152230, "lon": -73.9202528 }, + { "lat": 40.8152000, "lon": -73.9201673 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 824235154, + "bounds": { + "minlat": 40.8160022, + "minlon": -73.9203695, + "maxlat": 40.8162971, + "maxlon": -73.9197179 + }, + "nodes": [ + 7695597321, + 12040128304, + 7695597316, + 7695597317, + 7695597318, + 7695597320, + 12040837271, + 7695597319 + ], + "geometry": [ + { "lat": 40.8162000, "lon": -73.9197179 }, + { "lat": 40.8162191, "lon": -73.9197939 }, + { "lat": 40.8162249, "lon": -73.9198171 }, + { "lat": 40.8162971, "lon": -73.9201013 }, + { "lat": 40.8162646, "lon": -73.9202448 }, + { "lat": 40.8160601, "lon": -73.9203427 }, + { "lat": 40.8160468, "lon": -73.9203489 }, + { "lat": 40.8160022, "lon": -73.9203695 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 824414110, + "bounds": { + "minlat": 40.8376729, + "minlon": -73.9705479, + "maxlat": 40.8379453, + "maxlon": -73.9702885 + }, + "nodes": [ + 7697903101, + 7697903111, + 7697903102, + 7697903103, + 7697903107, + 7697903104, + 7697903105, + 7697903109, + 7697903106 + ], + "geometry": [ + { "lat": 40.8376729, "lon": -73.9703374 }, + { "lat": 40.8376825, "lon": -73.9704057 }, + { "lat": 40.8376993, "lon": -73.9705349 }, + { "lat": 40.8377085, "lon": -73.9705479 }, + { "lat": 40.8378228, "lon": -73.9705129 }, + { "lat": 40.8379302, "lon": -73.9704789 }, + { "lat": 40.8379453, "lon": -73.9704295 }, + { "lat": 40.8379339, "lon": -73.9703583 }, + { "lat": 40.8379215, "lon": -73.9702885 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 824414111, + "bounds": { + "minlat": 40.8377914, + "minlon": -73.9705129, + "maxlat": 40.8378228, + "maxlon": -73.9703109 + }, + "nodes": [ + 7697903107, + 7697903110, + 7697903108 + ], + "geometry": [ + { "lat": 40.8378228, "lon": -73.9705129 }, + { "lat": 40.8378025, "lon": -73.9703830 }, + { "lat": 40.8377914, "lon": -73.9703109 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 824434816, + "bounds": { + "minlat": 40.7688361, + "minlon": -73.9433364, + "maxlat": 40.7688922, + "maxlon": -73.9430953 + }, + "nodes": [ + 1241986437, + 9915145350 + ], + "geometry": [ + { "lat": 40.7688922, "lon": -73.9433364 }, + { "lat": 40.7688361, "lon": -73.9430953 } + ], + "tags": { + "highway": "service", + "maxspeed": "10 mph", + "name": "The Octagon", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 824719781, + "bounds": { + "minlat": 40.8352264, + "minlon": -73.9996594, + "maxlat": 40.8354754, + "maxlon": -73.9994163 + }, + "nodes": [ + 7700847048, + 7700847049 + ], + "geometry": [ + { "lat": 40.8354754, "lon": -73.9994163 }, + { "lat": 40.8352264, "lon": -73.9996594 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 824720013, + "bounds": { + "minlat": 40.8297225, + "minlon": -73.9399594, + "maxlat": 40.8298737, + "maxlon": -73.9397672 + }, + "nodes": [ + 7700835526, + 11218718864, + 7700835527, + 7700835528 + ], + "geometry": [ + { "lat": 40.8298737, "lon": -73.9397672 }, + { "lat": 40.8298322, "lon": -73.9398490 }, + { "lat": 40.8298179, "lon": -73.9398773 }, + { "lat": 40.8297225, "lon": -73.9399594 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824743018, + "bounds": { + "minlat": 40.8392944, + "minlon": -74.0049203, + "maxlat": 40.8395116, + "maxlon": -74.0046220 + }, + "nodes": [ + 7701027533, + 7701027534, + 10753759182, + 10753759183, + 10753759180, + 10753759181, + 10753759184, + 10753759185, + 7701027535, + 7701027536 + ], + "geometry": [ + { "lat": 40.8395116, "lon": -74.0048307 }, + { "lat": 40.8393984, "lon": -74.0049167 }, + { "lat": 40.8393844, "lon": -74.0049203 }, + { "lat": 40.8393716, "lon": -74.0049162 }, + { "lat": 40.8393620, "lon": -74.0049068 }, + { "lat": 40.8392944, "lon": -74.0047617 }, + { "lat": 40.8392957, "lon": -74.0047460 }, + { "lat": 40.8393046, "lon": -74.0047302 }, + { "lat": 40.8393119, "lon": -74.0047170 }, + { "lat": 40.8394149, "lon": -74.0046220 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 824755159, + "bounds": { + "minlat": 40.8575403, + "minlon": -73.9287830, + "maxlat": 40.8578670, + "maxlon": -73.9275991 + }, + "nodes": [ + 7701213196, + 9561253095, + 7701213197, + 7701213198, + 7701213199, + 7701213200, + 7701213201, + 7701213202 + ], + "geometry": [ + { "lat": 40.8576318, "lon": -73.9275991 }, + { "lat": 40.8576845, "lon": -73.9276702 }, + { "lat": 40.8577046, "lon": -73.9276972 }, + { "lat": 40.8578529, "lon": -73.9280708 }, + { "lat": 40.8578670, "lon": -73.9281502 }, + { "lat": 40.8575403, "lon": -73.9285728 }, + { "lat": 40.8576074, "lon": -73.9287830 }, + { "lat": 40.8577893, "lon": -73.9285635 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824758897, + "bounds": { + "minlat": 40.8811502, + "minlon": -73.9786483, + "maxlat": 40.8817226, + "maxlon": -73.9780259 + }, + "nodes": [ + 7701246548, + 13525915069, + 7701246549, + 7701246550, + 7701246551, + 7701246552, + 7701246553, + 7701246554, + 7701246555, + 7701246556, + 13525915072, + 7701246557 + ], + "geometry": [ + { "lat": 40.8811615, "lon": -73.9786483 }, + { "lat": 40.8811655, "lon": -73.9785486 }, + { "lat": 40.8811700, "lon": -73.9784374 }, + { "lat": 40.8811513, "lon": -73.9783761 }, + { "lat": 40.8811502, "lon": -73.9783265 }, + { "lat": 40.8811667, "lon": -73.9782827 }, + { "lat": 40.8815452, "lon": -73.9780375 }, + { "lat": 40.8815883, "lon": -73.9780259 }, + { "lat": 40.8816192, "lon": -73.9780346 }, + { "lat": 40.8816468, "lon": -73.9780667 }, + { "lat": 40.8816942, "lon": -73.9782076 }, + { "lat": 40.8817226, "lon": -73.9782918 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 824795597, + "bounds": { + "minlat": 40.7773633, + "minlon": -74.0186868, + "maxlat": 40.7775591, + "maxlon": -74.0183298 + }, + "nodes": [ + 7701663797, + 7387632518, + 7701663798 + ], + "geometry": [ + { "lat": 40.7773633, "lon": -74.0183298 }, + { "lat": 40.7774174, "lon": -74.0184281 }, + { "lat": 40.7775591, "lon": -74.0186868 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824797555, + "bounds": { + "minlat": 40.8778800, + "minlon": -73.9826174, + "maxlat": 40.8780696, + "maxlon": -73.9821611 + }, + "nodes": [ + 7701684515, + 13525892975, + 7701684519, + 7701684516, + 7701684517 + ], + "geometry": [ + { "lat": 40.8778800, "lon": -73.9821611 }, + { "lat": 40.8779235, "lon": -73.9822364 }, + { "lat": 40.8779996, "lon": -73.9823681 }, + { "lat": 40.8780696, "lon": -73.9824888 }, + { "lat": 40.8779507, "lon": -73.9826174 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824797556, + "bounds": { + "minlat": 40.8778751, + "minlon": -73.9825031, + "maxlat": 40.8779996, + "maxlon": -73.9823681 + }, + "nodes": [ + 7701684518, + 7701684519 + ], + "geometry": [ + { "lat": 40.8778751, "lon": -73.9825031 }, + { "lat": 40.8779996, "lon": -73.9823681 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824797557, + "bounds": { + "minlat": 40.8780696, + "minlon": -73.9825123, + "maxlat": 40.8782440, + "maxlon": -73.9824051 + }, + "nodes": [ + 7701684516, + 7701684520, + 7701684521, + 7701684522 + ], + "geometry": [ + { "lat": 40.8780696, "lon": -73.9824888 }, + { "lat": 40.8780958, "lon": -73.9825001 }, + { "lat": 40.8781421, "lon": -73.9825123 }, + { "lat": 40.8782440, "lon": -73.9824051 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 824797696, + "bounds": { + "minlat": 40.8307498, + "minlon": -73.9722422, + "maxlat": 40.8307737, + "maxlon": -73.9720845 + }, + "nodes": [ + 5689881732, + 5689881731 + ], + "geometry": [ + { "lat": 40.8307737, "lon": -73.9720845 }, + { "lat": 40.8307498, "lon": -73.9722422 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825236402, + "bounds": { + "minlat": 40.7710944, + "minlon": -73.9935659, + "maxlat": 40.7712271, + "maxlon": -73.9932531 + }, + "nodes": [ + 7443617343, + 7443621689 + ], + "geometry": [ + { "lat": 40.7710944, "lon": -73.9932531 }, + { "lat": 40.7712271, "lon": -73.9935659 } + ], + "tags": { + "access": "designated", + "foot": "designated", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "name_1": "West 57 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 825292094, + "bounds": { + "minlat": 40.7186589, + "minlon": -73.9151160, + "maxlat": 40.7192860, + "maxlon": -73.9148009 + }, + "nodes": [ + 10006612429, + 7706126092, + 7706126093 + ], + "geometry": [ + { "lat": 40.7192860, "lon": -73.9151160 }, + { "lat": 40.7190388, "lon": -73.9149923 }, + { "lat": 40.7186589, "lon": -73.9148009 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292095, + "bounds": { + "minlat": 40.7191704, + "minlon": -73.9187407, + "maxlat": 40.7193300, + "maxlon": -73.9179897 + }, + "nodes": [ + 5482677602, + 5482677601 + ], + "geometry": [ + { "lat": 40.7193300, "lon": -73.9187407 }, + { "lat": 40.7191704, "lon": -73.9179897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292096, + "bounds": { + "minlat": 40.7181692, + "minlon": -73.9191606, + "maxlat": 40.7193300, + "maxlon": -73.9187407 + }, + "nodes": [ + 5482677603, + 5482677602 + ], + "geometry": [ + { "lat": 40.7181692, "lon": -73.9191606 }, + { "lat": 40.7193300, "lon": -73.9187407 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292097, + "bounds": { + "minlat": 40.7178153, + "minlon": -73.9191606, + "maxlat": 40.7181692, + "maxlon": -73.9189940 + }, + "nodes": [ + 5482677603, + 7706126096 + ], + "geometry": [ + { "lat": 40.7181692, "lon": -73.9191606 }, + { "lat": 40.7178153, "lon": -73.9189940 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292098, + "bounds": { + "minlat": 40.7177737, + "minlon": -73.9187928, + "maxlat": 40.7178570, + "maxlon": -73.9184522 + }, + "nodes": [ + 7706126097, + 5482677607 + ], + "geometry": [ + { "lat": 40.7177737, "lon": -73.9187928 }, + { "lat": 40.7178570, "lon": -73.9184522 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292099, + "bounds": { + "minlat": 40.7177737, + "minlon": -73.9189940, + "maxlat": 40.7178153, + "maxlon": -73.9187928 + }, + "nodes": [ + 7706126096, + 7706126097 + ], + "geometry": [ + { "lat": 40.7178153, "lon": -73.9189940 }, + { "lat": 40.7177737, "lon": -73.9187928 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292100, + "bounds": { + "minlat": 40.7189447, + "minlon": -73.9215463, + "maxlat": 40.7194205, + "maxlon": -73.9213868 + }, + "nodes": [ + 5482677610, + 5482677608 + ], + "geometry": [ + { "lat": 40.7189447, "lon": -73.9215463 }, + { "lat": 40.7194205, "lon": -73.9213868 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825292101, + "bounds": { + "minlat": 40.7187913, + "minlon": -73.9215463, + "maxlat": 40.7189447, + "maxlon": -73.9208409 + }, + "nodes": [ + 5482677612, + 5482677610 + ], + "geometry": [ + { "lat": 40.7187913, "lon": -73.9208409 }, + { "lat": 40.7189447, "lon": -73.9215463 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825292102, + "bounds": { + "minlat": 40.7136163, + "minlon": -73.9175944, + "maxlat": 40.7144982, + "maxlon": -73.9169840 + }, + "nodes": [ + 7706126098, + 9755789235, + 5482675510 + ], + "geometry": [ + { "lat": 40.7144982, "lon": -73.9169840 }, + { "lat": 40.7136942, "lon": -73.9175405 }, + { "lat": 40.7136163, "lon": -73.9175944 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825292103, + "bounds": { + "minlat": 40.7157174, + "minlon": -73.9196071, + "maxlat": 40.7170175, + "maxlon": -73.9174466 + }, + "nodes": [ + 5482677953, + 10264974722, + 5482677952 + ], + "geometry": [ + { "lat": 40.7170175, "lon": -73.9196071 }, + { "lat": 40.7166287, "lon": -73.9189609 }, + { "lat": 40.7157174, "lon": -73.9174466 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292104, + "bounds": { + "minlat": 40.7151085, + "minlon": -73.9180830, + "maxlat": 40.7157174, + "maxlon": -73.9174466 + }, + "nodes": [ + 5482677952, + 7706126120, + 7706126121, + 7706126099 + ], + "geometry": [ + { "lat": 40.7157174, "lon": -73.9174466 }, + { "lat": 40.7152460, "lon": -73.9179393 }, + { "lat": 40.7152193, "lon": -73.9179672 }, + { "lat": 40.7151085, "lon": -73.9180830 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292105, + "bounds": { + "minlat": 40.7137454, + "minlon": -73.9195876, + "maxlat": 40.7148604, + "maxlon": -73.9182359 + }, + "nodes": [ + 7706126100, + 9755788621, + 9794690540, + 7706126101 + ], + "geometry": [ + { "lat": 40.7137454, "lon": -73.9195876 }, + { "lat": 40.7138217, "lon": -73.9194951 }, + { "lat": 40.7138493, "lon": -73.9194616 }, + { "lat": 40.7148604, "lon": -73.9182359 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292106, + "bounds": { + "minlat": 40.7148604, + "minlon": -73.9182359, + "maxlat": 40.7151085, + "maxlon": -73.9180830 + }, + "nodes": [ + 7706126099, + 7706126101 + ], + "geometry": [ + { "lat": 40.7151085, "lon": -73.9180830 }, + { "lat": 40.7148604, "lon": -73.9182359 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292107, + "bounds": { + "minlat": 40.7151365, + "minlon": -73.9201735, + "maxlat": 40.7153991, + "maxlon": -73.9201143 + }, + "nodes": [ + 7706126102, + 7712065394 + ], + "geometry": [ + { "lat": 40.7153991, "lon": -73.9201143 }, + { "lat": 40.7151365, "lon": -73.9201735 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292108, + "bounds": { + "minlat": 40.7140532, + "minlon": -73.9210005, + "maxlat": 40.7142618, + "maxlon": -73.9205204 + }, + "nodes": [ + 5482677927, + 7706126103, + 5482677921, + 7706126104 + ], + "geometry": [ + { "lat": 40.7142618, "lon": -73.9210005 }, + { "lat": 40.7141875, "lon": -73.9208294 }, + { "lat": 40.7141156, "lon": -73.9206640 }, + { "lat": 40.7140532, "lon": -73.9205204 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292109, + "bounds": { + "minlat": 40.7145355, + "minlon": -73.9206603, + "maxlat": 40.7147351, + "maxlon": -73.9201676 + }, + "nodes": [ + 7706126105, + 7706126108, + 7706126107, + 7706126106 + ], + "geometry": [ + { "lat": 40.7147351, "lon": -73.9206603 }, + { "lat": 40.7146670, "lon": -73.9204923 }, + { "lat": 40.7145977, "lon": -73.9203210 }, + { "lat": 40.7145355, "lon": -73.9201676 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292110, + "bounds": { + "minlat": 40.7155042, + "minlon": -73.9205780, + "maxlat": 40.7160995, + "maxlon": -73.9203933 + }, + "nodes": [ + 7706126109, + 7712065396, + 7706126110 + ], + "geometry": [ + { "lat": 40.7160995, "lon": -73.9203933 }, + { "lat": 40.7155529, "lon": -73.9205588 }, + { "lat": 40.7155042, "lon": -73.9205780 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292111, + "bounds": { + "minlat": 40.7153991, + "minlon": -73.9205780, + "maxlat": 40.7155042, + "maxlon": -73.9201143 + }, + "nodes": [ + 7706126110, + 7706126102 + ], + "geometry": [ + { "lat": 40.7155042, "lon": -73.9205780 }, + { "lat": 40.7153991, "lon": -73.9201143 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292112, + "bounds": { + "minlat": 40.7161809, + "minlon": -73.9217634, + "maxlat": 40.7167385, + "maxlon": -73.9208090 + }, + "nodes": [ + 5482677949, + 10856212661, + 9353053462, + 7706126111 + ], + "geometry": [ + { "lat": 40.7167385, "lon": -73.9217634 }, + { "lat": 40.7166664, "lon": -73.9217340 }, + { "lat": 40.7166338, "lon": -73.9217207 }, + { "lat": 40.7161809, "lon": -73.9208090 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292113, + "bounds": { + "minlat": 40.7160995, + "minlon": -73.9208090, + "maxlat": 40.7161809, + "maxlon": -73.9203933 + }, + "nodes": [ + 7706126111, + 7706126109 + ], + "geometry": [ + { "lat": 40.7161809, "lon": -73.9208090 }, + { "lat": 40.7160995, "lon": -73.9203933 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292114, + "bounds": { + "minlat": 40.7161524, + "minlon": -73.9246768, + "maxlat": 40.7175551, + "maxlon": -73.9240699 + }, + "nodes": [ + 7706126112, + 5482675476, + 10840566518, + 7706126113 + ], + "geometry": [ + { "lat": 40.7175551, "lon": -73.9246768 }, + { "lat": 40.7163313, "lon": -73.9241483 }, + { "lat": 40.7162138, "lon": -73.9240968 }, + { "lat": 40.7161524, "lon": -73.9240699 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292115, + "bounds": { + "minlat": 40.7159285, + "minlon": -73.9255526, + "maxlat": 40.7173348, + "maxlon": -73.9249207 + }, + "nodes": [ + 7706126114, + 10840566519, + 7706126115 + ], + "geometry": [ + { "lat": 40.7173348, "lon": -73.9255526 }, + { "lat": 40.7159947, "lon": -73.9249504 }, + { "lat": 40.7159285, "lon": -73.9249207 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292116, + "bounds": { + "minlat": 40.7173348, + "minlon": -73.9255526, + "maxlat": 40.7175551, + "maxlon": -73.9246768 + }, + "nodes": [ + 7706126114, + 7706126112 + ], + "geometry": [ + { "lat": 40.7173348, "lon": -73.9255526 }, + { "lat": 40.7175551, "lon": -73.9246768 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292117, + "bounds": { + "minlat": 40.7148887, + "minlon": -73.9267014, + "maxlat": 40.7157297, + "maxlon": -73.9254546 + }, + "nodes": [ + 5482675490, + 9755751803, + 7706126116, + 13287694868, + 13287694867, + 13287694866 + ], + "geometry": [ + { "lat": 40.7157297, "lon": -73.9256766 }, + { "lat": 40.7156778, "lon": -73.9256516 }, + { "lat": 40.7152680, "lon": -73.9254546 }, + { "lat": 40.7151797, "lon": -73.9255147 }, + { "lat": 40.7149081, "lon": -73.9266092 }, + { "lat": 40.7148887, "lon": -73.9267014 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292118, + "bounds": { + "minlat": 40.7152679, + "minlon": -73.9288511, + "maxlat": 40.7171896, + "maxlon": -73.9270982 + }, + "nodes": [ + 9984788630, + 9984788629, + 9984788628, + 9984788627, + 9984788626, + 9984788625, + 9984788624, + 9984788623, + 7706126117, + 10840566517, + 5482303009 + ], + "geometry": [ + { "lat": 40.7165091, "lon": -73.9288115 }, + { "lat": 40.7166038, "lon": -73.9288511 }, + { "lat": 40.7167294, "lon": -73.9287661 }, + { "lat": 40.7168378, "lon": -73.9286231 }, + { "lat": 40.7168963, "lon": -73.9284846 }, + { "lat": 40.7171896, "lon": -73.9273689 }, + { "lat": 40.7165819, "lon": -73.9270982 }, + { "lat": 40.7165005, "lon": -73.9274338 }, + { "lat": 40.7163760, "lon": -73.9279303 }, + { "lat": 40.7153452, "lon": -73.9274797 }, + { "lat": 40.7152679, "lon": -73.9274458 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825292119, + "bounds": { + "minlat": 40.7151800, + "minlon": -73.9280161, + "maxlat": 40.7156584, + "maxlon": -73.9277887 + }, + "nodes": [ + 7706126118, + 10840566512, + 7706126119 + ], + "geometry": [ + { "lat": 40.7156584, "lon": -73.9280161 }, + { "lat": 40.7152566, "lon": -73.9278248 }, + { "lat": 40.7151800, "lon": -73.9277887 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825293069, + "bounds": { + "minlat": 40.7109820, + "minlon": -73.9397770, + "maxlat": 40.7114388, + "maxlon": -73.9390966 + }, + "nodes": [ + 11107443443, + 7706121929, + 8931303496, + 8931303499, + 8931303504, + 8931303495, + 8931303498, + 8931303503, + 8931303504 + ], + "geometry": [ + { "lat": 40.7114388, "lon": -73.9390966 }, + { "lat": 40.7114095, "lon": -73.9392193 }, + { "lat": 40.7113485, "lon": -73.9392771 }, + { "lat": 40.7113099, "lon": -73.9394267 }, + { "lat": 40.7112569, "lon": -73.9394623 }, + { "lat": 40.7110454, "lon": -73.9393792 }, + { "lat": 40.7109820, "lon": -73.9397024 }, + { "lat": 40.7111890, "lon": -73.9397770 }, + { "lat": 40.7112569, "lon": -73.9394623 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825294367, + "bounds": { + "minlat": 40.7111526, + "minlon": -73.9438299, + "maxlat": 40.7116799, + "maxlon": -73.9434297 + }, + "nodes": [ + 8955500260, + 9752590857, + 7706137522, + 8842929854, + 7706137521 + ], + "geometry": [ + { "lat": 40.7111526, "lon": -73.9438299 }, + { "lat": 40.7111624, "lon": -73.9437250 }, + { "lat": 40.7111895, "lon": -73.9434297 }, + { "lat": 40.7115923, "lon": -73.9434921 }, + { "lat": 40.7116799, "lon": -73.9435051 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825361816, + "bounds": { + "minlat": 40.7027720, + "minlon": -74.0123461, + "maxlat": 40.7031210, + "maxlon": -74.0115923 + }, + "nodes": [ + 7706695379, + 7706695243, + 7706695240, + 9448202423, + 7706695239, + 7706695238, + 7706695237, + 7706695236, + 7706695235, + 7706695234, + 7706695233, + 7706695232, + 7706695231, + 7706695230, + 7706695229, + 7706695228, + 7706695227, + 7706695223, + 7706695220, + 11041048712, + 7706695219, + 7706695218, + 7706695217, + 7706695216, + 7706695214, + 7706695387, + 7706695386, + 7706695213, + 7706695385, + 7706695212, + 7706695384, + 7706695383, + 7706695382, + 7706695381, + 7706695380, + 7706695379 + ], + "geometry": [ + { "lat": 40.7031210, "lon": -74.0116261 }, + { "lat": 40.7031035, "lon": -74.0116069 }, + { "lat": 40.7030959, "lon": -74.0116031 }, + { "lat": 40.7030551, "lon": -74.0115958 }, + { "lat": 40.7030335, "lon": -74.0115923 }, + { "lat": 40.7030248, "lon": -74.0115928 }, + { "lat": 40.7030123, "lon": -74.0115978 }, + { "lat": 40.7030016, "lon": -74.0116065 }, + { "lat": 40.7029917, "lon": -74.0116179 }, + { "lat": 40.7029863, "lon": -74.0116268 }, + { "lat": 40.7029798, "lon": -74.0116404 }, + { "lat": 40.7029765, "lon": -74.0116525 }, + { "lat": 40.7029760, "lon": -74.0116662 }, + { "lat": 40.7029795, "lon": -74.0116867 }, + { "lat": 40.7029312, "lon": -74.0118657 }, + { "lat": 40.7029109, "lon": -74.0119281 }, + { "lat": 40.7028564, "lon": -74.0120691 }, + { "lat": 40.7028138, "lon": -74.0121648 }, + { "lat": 40.7027877, "lon": -74.0122238 }, + { "lat": 40.7027748, "lon": -74.0122535 }, + { "lat": 40.7027720, "lon": -74.0122707 }, + { "lat": 40.7027751, "lon": -74.0122896 }, + { "lat": 40.7027833, "lon": -74.0123055 }, + { "lat": 40.7027931, "lon": -74.0123161 }, + { "lat": 40.7028083, "lon": -74.0123255 }, + { "lat": 40.7028557, "lon": -74.0123461 }, + { "lat": 40.7028514, "lon": -74.0123378 }, + { "lat": 40.7028483, "lon": -74.0123309 }, + { "lat": 40.7028463, "lon": -74.0123230 }, + { "lat": 40.7028468, "lon": -74.0123144 }, + { "lat": 40.7028484, "lon": -74.0123056 }, + { "lat": 40.7030216, "lon": -74.0116339 }, + { "lat": 40.7030288, "lon": -74.0116216 }, + { "lat": 40.7030370, "lon": -74.0116163 }, + { "lat": 40.7030500, "lon": -74.0116150 }, + { "lat": 40.7031210, "lon": -74.0116261 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825361817, + "bounds": { + "minlat": 40.7025343, + "minlon": -74.0129647, + "maxlat": 40.7030908, + "maxlon": -74.0123492 + }, + "nodes": [ + 7706695370, + 11014607153, + 7706695279, + 7706695278, + 7706695277, + 7706695276, + 7706695275, + 8304779703, + 7706695274, + 7706695273, + 7706695272, + 7706695271, + 7706695270, + 7706695269, + 7706695268, + 7706695267, + 7706695266, + 11352850898, + 7706695265, + 7706695264, + 7706695263, + 7706695262, + 7706695261, + 7706695260, + 7706695259, + 7706695258, + 7706695257, + 7706695256, + 7706695255, + 7706695254, + 7706695253, + 7706695252, + 7706695251, + 7706695250, + 7706695249, + 7706695248, + 7706695247, + 7706695244, + 7706695245, + 7706695355, + 7706695246, + 7706695356, + 7706695303, + 7706695304, + 7706695313, + 7706695314, + 7706695308, + 7706695309, + 7706695357, + 7706695358, + 7706695359, + 7706695360, + 7706695361, + 7706695362, + 7706695363, + 7706695344, + 7706695345, + 7706695339, + 7706695340, + 7706695329, + 7706695330, + 7706695334, + 7706695335, + 7706695364, + 7706695365, + 7706695366, + 7706695367, + 7706695368, + 7706695369, + 7706695370 + ], + "geometry": [ + { "lat": 40.7030908, "lon": -74.0128809 }, + { "lat": 40.7030906, "lon": -74.0129000 }, + { "lat": 40.7030888, "lon": -74.0129376 }, + { "lat": 40.7030870, "lon": -74.0129517 }, + { "lat": 40.7030845, "lon": -74.0129594 }, + { "lat": 40.7030799, "lon": -74.0129627 }, + { "lat": 40.7030705, "lon": -74.0129647 }, + { "lat": 40.7030655, "lon": -74.0129638 }, + { "lat": 40.7030342, "lon": -74.0129577 }, + { "lat": 40.7030303, "lon": -74.0129550 }, + { "lat": 40.7030245, "lon": -74.0129476 }, + { "lat": 40.7030184, "lon": -74.0129433 }, + { "lat": 40.7030098, "lon": -74.0129389 }, + { "lat": 40.7027391, "lon": -74.0128621 }, + { "lat": 40.7027289, "lon": -74.0128635 }, + { "lat": 40.7027208, "lon": -74.0128689 }, + { "lat": 40.7027121, "lon": -74.0128695 }, + { "lat": 40.7026422, "lon": -74.0128518 }, + { "lat": 40.7025723, "lon": -74.0128340 }, + { "lat": 40.7025586, "lon": -74.0128293 }, + { "lat": 40.7025521, "lon": -74.0128225 }, + { "lat": 40.7025444, "lon": -74.0128065 }, + { "lat": 40.7025367, "lon": -74.0127844 }, + { "lat": 40.7025343, "lon": -74.0127564 }, + { "lat": 40.7025357, "lon": -74.0127307 }, + { "lat": 40.7025393, "lon": -74.0127133 }, + { "lat": 40.7026481, "lon": -74.0124632 }, + { "lat": 40.7026587, "lon": -74.0124518 }, + { "lat": 40.7026826, "lon": -74.0124337 }, + { "lat": 40.7026887, "lon": -74.0124290 }, + { "lat": 40.7026969, "lon": -74.0124149 }, + { "lat": 40.7027284, "lon": -74.0123505 }, + { "lat": 40.7027309, "lon": -74.0123495 }, + { "lat": 40.7027337, "lon": -74.0123492 }, + { "lat": 40.7027364, "lon": -74.0123502 }, + { "lat": 40.7027609, "lon": -74.0123730 }, + { "lat": 40.7027955, "lon": -74.0123986 }, + { "lat": 40.7028373, "lon": -74.0124248 }, + { "lat": 40.7028300, "lon": -74.0124271 }, + { "lat": 40.7028245, "lon": -74.0124303 }, + { "lat": 40.7028203, "lon": -74.0124347 }, + { "lat": 40.7028168, "lon": -74.0124410 }, + { "lat": 40.7027976, "lon": -74.0125128 }, + { "lat": 40.7027917, "lon": -74.0125346 }, + { "lat": 40.7027596, "lon": -74.0126545 }, + { "lat": 40.7027538, "lon": -74.0126762 }, + { "lat": 40.7027386, "lon": -74.0127329 }, + { "lat": 40.7027328, "lon": -74.0127546 }, + { "lat": 40.7027283, "lon": -74.0127715 }, + { "lat": 40.7027250, "lon": -74.0127877 }, + { "lat": 40.7027250, "lon": -74.0128004 }, + { "lat": 40.7027284, "lon": -74.0128127 }, + { "lat": 40.7027338, "lon": -74.0128216 }, + { "lat": 40.7027457, "lon": -74.0128315 }, + { "lat": 40.7027580, "lon": -74.0128367 }, + { "lat": 40.7027774, "lon": -74.0128417 }, + { "lat": 40.7027945, "lon": -74.0128464 }, + { "lat": 40.7028355, "lon": -74.0128573 }, + { "lat": 40.7028526, "lon": -74.0128619 }, + { "lat": 40.7029358, "lon": -74.0128839 }, + { "lat": 40.7029530, "lon": -74.0128885 }, + { "lat": 40.7029879, "lon": -74.0128975 }, + { "lat": 40.7030050, "lon": -74.0129022 }, + { "lat": 40.7030287, "lon": -74.0129071 }, + { "lat": 40.7030504, "lon": -74.0129079 }, + { "lat": 40.7030605, "lon": -74.0129067 }, + { "lat": 40.7030673, "lon": -74.0129049 }, + { "lat": 40.7030793, "lon": -74.0128966 }, + { "lat": 40.7030830, "lon": -74.0128928 }, + { "lat": 40.7030908, "lon": -74.0128809 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825365728, + "bounds": { + "minlat": 40.7048690, + "minlon": -74.0168478, + "maxlat": 40.7049989, + "maxlon": -74.0164885 + }, + "nodes": [ + 7706733747, + 7706733746, + 4876524528, + 7706733745, + 7706733744, + 7706733743, + 7706733742, + 7706733741, + 7706733740, + 7706733739, + 7706733738, + 7706733737, + 7706733736, + 7706733735, + 4876524531, + 7706733734, + 7706733733, + 7706733732, + 7706733731, + 7706733730, + 7706733729, + 7706733728, + 7706733727, + 7706733726, + 7706733725, + 7706733724, + 7706733723, + 7706733722, + 7706733721, + 7706733720, + 7706733719, + 7706733718, + 7706733717, + 7706733716, + 7706733715, + 7706733714, + 7706733713, + 7706733712, + 7706733747 + ], + "geometry": [ + { "lat": 40.7049885, "lon": -74.0168258 }, + { "lat": 40.7049305, "lon": -74.0168466 }, + { "lat": 40.7049193, "lon": -74.0168478 }, + { "lat": 40.7049087, "lon": -74.0168466 }, + { "lat": 40.7048959, "lon": -74.0168405 }, + { "lat": 40.7048837, "lon": -74.0168285 }, + { "lat": 40.7048726, "lon": -74.0168077 }, + { "lat": 40.7048695, "lon": -74.0167876 }, + { "lat": 40.7048690, "lon": -74.0167500 }, + { "lat": 40.7048797, "lon": -74.0165455 }, + { "lat": 40.7048848, "lon": -74.0165187 }, + { "lat": 40.7048944, "lon": -74.0164986 }, + { "lat": 40.7049056, "lon": -74.0164925 }, + { "lat": 40.7049198, "lon": -74.0164885 }, + { "lat": 40.7049415, "lon": -74.0164887 }, + { "lat": 40.7049604, "lon": -74.0164888 }, + { "lat": 40.7049652, "lon": -74.0164897 }, + { "lat": 40.7049681, "lon": -74.0164929 }, + { "lat": 40.7049686, "lon": -74.0164977 }, + { "lat": 40.7049679, "lon": -74.0165043 }, + { "lat": 40.7049655, "lon": -74.0165101 }, + { "lat": 40.7049511, "lon": -74.0165381 }, + { "lat": 40.7049459, "lon": -74.0165534 }, + { "lat": 40.7049419, "lon": -74.0165703 }, + { "lat": 40.7049372, "lon": -74.0165981 }, + { "lat": 40.7049360, "lon": -74.0166223 }, + { "lat": 40.7049364, "lon": -74.0166363 }, + { "lat": 40.7049375, "lon": -74.0166573 }, + { "lat": 40.7049397, "lon": -74.0166726 }, + { "lat": 40.7049442, "lon": -74.0166930 }, + { "lat": 40.7049562, "lon": -74.0167321 }, + { "lat": 40.7049707, "lon": -74.0167621 }, + { "lat": 40.7049820, "lon": -74.0167795 }, + { "lat": 40.7049923, "lon": -74.0167923 }, + { "lat": 40.7049980, "lon": -74.0168010 }, + { "lat": 40.7049989, "lon": -74.0168083 }, + { "lat": 40.7049975, "lon": -74.0168166 }, + { "lat": 40.7049947, "lon": -74.0168226 }, + { "lat": 40.7049885, "lon": -74.0168258 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 825365735, + "bounds": { + "minlat": 40.7045416, + "minlon": -74.0142564, + "maxlat": 40.7048957, + "maxlon": -74.0140357 + }, + "nodes": [ + 7072589169, + 42428348, + 8821315491, + 42428346, + 10316226201, + 9898775055, + 588546891 + ], + "geometry": [ + { "lat": 40.7048957, "lon": -74.0140357 }, + { "lat": 40.7047673, "lon": -74.0140881 }, + { "lat": 40.7047109, "lon": -74.0141165 }, + { "lat": 40.7046491, "lon": -74.0141638 }, + { "lat": 40.7045992, "lon": -74.0142055 }, + { "lat": 40.7045536, "lon": -74.0142458 }, + { "lat": 40.7045416, "lon": -74.0142564 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:zip_left": "10003", + "tiger:zip_right": "10003", + "turn:lanes": "through|right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 825365738, + "bounds": { + "minlat": 40.7045899, + "minlon": -74.0143956, + "maxlat": 40.7046302, + "maxlon": -74.0143320 + }, + "nodes": [ + 7706733883, + 10316226130, + 7706733870, + 7706733871, + 10316226131, + 7706733882, + 7706733881, + 7706733880, + 7706733879, + 7706733878, + 7706733877, + 7706733876, + 7706733875, + 7706733874, + 7706733883 + ], + "geometry": [ + { "lat": 40.7045929, "lon": -74.0143626 }, + { "lat": 40.7046020, "lon": -74.0143829 }, + { "lat": 40.7046076, "lon": -74.0143956 }, + { "lat": 40.7046302, "lon": -74.0143781 }, + { "lat": 40.7046247, "lon": -74.0143659 }, + { "lat": 40.7046155, "lon": -74.0143451 }, + { "lat": 40.7046128, "lon": -74.0143385 }, + { "lat": 40.7046082, "lon": -74.0143335 }, + { "lat": 40.7046030, "lon": -74.0143320 }, + { "lat": 40.7045988, "lon": -74.0143329 }, + { "lat": 40.7045950, "lon": -74.0143359 }, + { "lat": 40.7045921, "lon": -74.0143410 }, + { "lat": 40.7045899, "lon": -74.0143478 }, + { "lat": 40.7045904, "lon": -74.0143550 }, + { "lat": 40.7045929, "lon": -74.0143626 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 825365741, + "bounds": { + "minlat": 40.7047314, + "minlon": -74.0149077, + "maxlat": 40.7047704, + "maxlon": -74.0148420 + }, + "nodes": [ + 7706733890, + 10612369330, + 7706733886, + 7706733889, + 10316226132, + 7706733897, + 7706733896, + 7706733895, + 7706733894, + 7706733893, + 7706733892, + 7706733891, + 7706733890 + ], + "geometry": [ + { "lat": 40.7047406, "lon": -74.0148957 }, + { "lat": 40.7047367, "lon": -74.0148771 }, + { "lat": 40.7047314, "lon": -74.0148532 }, + { "lat": 40.7047612, "lon": -74.0148420 }, + { "lat": 40.7047666, "lon": -74.0148671 }, + { "lat": 40.7047704, "lon": -74.0148845 }, + { "lat": 40.7047704, "lon": -74.0148882 }, + { "lat": 40.7047686, "lon": -74.0148963 }, + { "lat": 40.7047639, "lon": -74.0149041 }, + { "lat": 40.7047583, "lon": -74.0149072 }, + { "lat": 40.7047534, "lon": -74.0149077 }, + { "lat": 40.7047448, "lon": -74.0149036 }, + { "lat": 40.7047406, "lon": -74.0148957 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 825365743, + "bounds": { + "minlat": 40.7048599, + "minlon": -74.0155849, + "maxlat": 40.7048925, + "maxlon": -74.0155345 + }, + "nodes": [ + 7706733921, + 9371204348, + 7706733910, + 7706733909, + 9371204347, + 7706733920, + 7706733919, + 7706733918, + 7706733917, + 7706733916, + 7706739264, + 7706733915, + 7706733914, + 7706733913, + 7706733912, + 7706733911, + 7706733921 + ], + "geometry": [ + { "lat": 40.7048615, "lon": -74.0155612 }, + { "lat": 40.7048607, "lon": -74.0155500 }, + { "lat": 40.7048599, "lon": -74.0155381 }, + { "lat": 40.7048910, "lon": -74.0155345 }, + { "lat": 40.7048918, "lon": -74.0155461 }, + { "lat": 40.7048925, "lon": -74.0155576 }, + { "lat": 40.7048924, "lon": -74.0155648 }, + { "lat": 40.7048898, "lon": -74.0155759 }, + { "lat": 40.7048860, "lon": -74.0155819 }, + { "lat": 40.7048820, "lon": -74.0155846 }, + { "lat": 40.7048792, "lon": -74.0155847 }, + { "lat": 40.7048761, "lon": -74.0155849 }, + { "lat": 40.7048705, "lon": -74.0155829 }, + { "lat": 40.7048665, "lon": -74.0155779 }, + { "lat": 40.7048637, "lon": -74.0155725 }, + { "lat": 40.7048619, "lon": -74.0155672 }, + { "lat": 40.7048615, "lon": -74.0155612 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 825365745, + "bounds": { + "minlat": 40.7048694, + "minlon": -74.0157844, + "maxlat": 40.7049041, + "maxlon": -74.0157189 + }, + "nodes": [ + 7706733942, + 9371204333, + 7706733925, + 7706733924, + 9371204332, + 7706733940, + 7706733939, + 7706733938, + 7706733937, + 7706733936, + 7706733935, + 7706739265, + 7706733934, + 7706733933, + 7706733932, + 7706733931, + 7706733930, + 7706733929, + 7706733942 + ], + "geometry": [ + { "lat": 40.7049036, "lon": -74.0157458 }, + { "lat": 40.7049038, "lon": -74.0157632 }, + { "lat": 40.7049041, "lon": -74.0157836 }, + { "lat": 40.7048701, "lon": -74.0157844 }, + { "lat": 40.7048698, "lon": -74.0157644 }, + { "lat": 40.7048696, "lon": -74.0157466 }, + { "lat": 40.7048694, "lon": -74.0157388 }, + { "lat": 40.7048709, "lon": -74.0157316 }, + { "lat": 40.7048735, "lon": -74.0157254 }, + { "lat": 40.7048774, "lon": -74.0157210 }, + { "lat": 40.7048827, "lon": -74.0157190 }, + { "lat": 40.7048848, "lon": -74.0157190 }, + { "lat": 40.7048879, "lon": -74.0157189 }, + { "lat": 40.7048923, "lon": -74.0157199 }, + { "lat": 40.7048962, "lon": -74.0157224 }, + { "lat": 40.7048996, "lon": -74.0157266 }, + { "lat": 40.7049018, "lon": -74.0157324 }, + { "lat": 40.7049028, "lon": -74.0157381 }, + { "lat": 40.7049036, "lon": -74.0157458 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 825365746, + "bounds": { + "minlat": 40.7048340, + "minlon": -74.0163346, + "maxlat": 40.7048698, + "maxlon": -74.0162508 + }, + "nodes": [ + 7706733947, + 10297616001, + 7706733927, + 7706733922, + 10297616000, + 7706733958, + 7706733956, + 7706733955, + 7706733954, + 7706733943, + 7706733953, + 7706733944, + 7706733952, + 7706733951, + 7706733945, + 9371193690, + 7706733950, + 7706733949, + 9371193689, + 7706733948, + 7706733947 + ], + "geometry": [ + { "lat": 40.7048659, "lon": -74.0163117 }, + { "lat": 40.7048677, "lon": -74.0162846 }, + { "lat": 40.7048698, "lon": -74.0162545 }, + { "lat": 40.7048383, "lon": -74.0162508 }, + { "lat": 40.7048363, "lon": -74.0162803 }, + { "lat": 40.7048344, "lon": -74.0163080 }, + { "lat": 40.7048340, "lon": -74.0163141 }, + { "lat": 40.7048341, "lon": -74.0163190 }, + { "lat": 40.7048349, "lon": -74.0163223 }, + { "lat": 40.7048359, "lon": -74.0163250 }, + { "lat": 40.7048380, "lon": -74.0163284 }, + { "lat": 40.7048405, "lon": -74.0163313 }, + { "lat": 40.7048439, "lon": -74.0163335 }, + { "lat": 40.7048484, "lon": -74.0163346 }, + { "lat": 40.7048526, "lon": -74.0163346 }, + { "lat": 40.7048560, "lon": -74.0163331 }, + { "lat": 40.7048587, "lon": -74.0163311 }, + { "lat": 40.7048614, "lon": -74.0163279 }, + { "lat": 40.7048637, "lon": -74.0163236 }, + { "lat": 40.7048654, "lon": -74.0163190 }, + { "lat": 40.7048659, "lon": -74.0163117 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 825366868, + "bounds": { + "minlat": 40.7050024, + "minlon": -74.0167709, + "maxlat": 40.7051882, + "maxlon": -74.0164893 + }, + "nodes": [ + 4899841660, + 4899841659, + 7706739248, + 246899801, + 10944870434, + 246900041, + 10944870435, + 7706739230, + 7706739229, + 7706739223, + 7706739247, + 7706739246, + 7706739245, + 7706739244, + 7706739243, + 7706739242, + 7706739241, + 7706739240, + 7706739239, + 7706739238, + 7706739237, + 7706739236, + 7706739235, + 7706739234, + 7706739233, + 11385942401, + 7706739232, + 11385942402, + 11385942403, + 4899841660 + ], + "geometry": [ + { "lat": 40.7051214, "lon": -74.0167565 }, + { "lat": 40.7051157, "lon": -74.0167298 }, + { "lat": 40.7051110, "lon": -74.0167312 }, + { "lat": 40.7051000, "lon": -74.0166823 }, + { "lat": 40.7050825, "lon": -74.0166046 }, + { "lat": 40.7050763, "lon": -74.0165774 }, + { "lat": 40.7050736, "lon": -74.0165654 }, + { "lat": 40.7050665, "lon": -74.0165338 }, + { "lat": 40.7051882, "lon": -74.0164939 }, + { "lat": 40.7051874, "lon": -74.0164893 }, + { "lat": 40.7050637, "lon": -74.0165213 }, + { "lat": 40.7050507, "lon": -74.0165247 }, + { "lat": 40.7050375, "lon": -74.0165327 }, + { "lat": 40.7050266, "lon": -74.0165448 }, + { "lat": 40.7050129, "lon": -74.0165683 }, + { "lat": 40.7050055, "lon": -74.0165904 }, + { "lat": 40.7050024, "lon": -74.0166166 }, + { "lat": 40.7050032, "lon": -74.0166360 }, + { "lat": 40.7050075, "lon": -74.0166615 }, + { "lat": 40.7050154, "lon": -74.0166856 }, + { "lat": 40.7050271, "lon": -74.0167125 }, + { "lat": 40.7050434, "lon": -74.0167356 }, + { "lat": 40.7050589, "lon": -74.0167500 }, + { "lat": 40.7050830, "lon": -74.0167627 }, + { "lat": 40.7051021, "lon": -74.0167678 }, + { "lat": 40.7051213, "lon": -74.0167709 }, + { "lat": 40.7051395, "lon": -74.0167683 }, + { "lat": 40.7051298, "lon": -74.0167671 }, + { "lat": 40.7051242, "lon": -74.0167627 }, + { "lat": 40.7051214, "lon": -74.0167565 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 825366869, + "bounds": { + "minlat": 40.7061345, + "minlon": -74.0163771, + "maxlat": 40.7063232, + "maxlon": -74.0162987 + }, + "nodes": [ + 4899841689, + 7706739258, + 7706739257, + 7706739255, + 7706739253, + 11385942359, + 11385942360, + 7706739252, + 7706739251, + 7706739262, + 4899841666, + 7706739249, + 4899841683, + 7706739250, + 7706739259, + 4899841689 + ], + "geometry": [ + { "lat": 40.7061459, "lon": -74.0163771 }, + { "lat": 40.7063186, "lon": -74.0163118 }, + { "lat": 40.7063232, "lon": -74.0163085 }, + { "lat": 40.7063232, "lon": -74.0163028 }, + { "lat": 40.7063194, "lon": -74.0162987 }, + { "lat": 40.7063048, "lon": -74.0162994 }, + { "lat": 40.7062661, "lon": -74.0163032 }, + { "lat": 40.7062180, "lon": -74.0163114 }, + { "lat": 40.7061722, "lon": -74.0163204 }, + { "lat": 40.7061345, "lon": -74.0163286 }, + { "lat": 40.7061441, "lon": -74.0163315 }, + { "lat": 40.7061504, "lon": -74.0163379 }, + { "lat": 40.7061537, "lon": -74.0163473 }, + { "lat": 40.7061538, "lon": -74.0163588 }, + { "lat": 40.7061514, "lon": -74.0163688 }, + { "lat": 40.7061459, "lon": -74.0163771 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 825412560, + "bounds": { + "minlat": 40.7196751, + "minlon": -73.9311037, + "maxlat": 40.7201507, + "maxlon": -73.9292173 + }, + "nodes": [ + 7707097681, + 5482302990, + 5482302989, + 5482302972 + ], + "geometry": [ + { "lat": 40.7196751, "lon": -73.9311037 }, + { "lat": 40.7199045, "lon": -73.9301931 }, + { "lat": 40.7200965, "lon": -73.9294331 }, + { "lat": 40.7201507, "lon": -73.9292173 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825412561, + "bounds": { + "minlat": 40.7192173, + "minlon": -73.9301931, + "maxlat": 40.7199045, + "maxlon": -73.9298882 + }, + "nodes": [ + 7707191997, + 5482302980, + 5482302969, + 6348483236, + 5482302990 + ], + "geometry": [ + { "lat": 40.7192173, "lon": -73.9298882 }, + { "lat": 40.7193502, "lon": -73.9299451 }, + { "lat": 40.7195221, "lon": -73.9300221 }, + { "lat": 40.7197195, "lon": -73.9301103 }, + { "lat": 40.7199045, "lon": -73.9301931 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825412562, + "bounds": { + "minlat": 40.7192426, + "minlon": -73.9295797, + "maxlat": 40.7194775, + "maxlon": -73.9286108 + }, + "nodes": [ + 5482302949, + 5482302947 + ], + "geometry": [ + { "lat": 40.7194775, "lon": -73.9286108 }, + { "lat": 40.7192426, "lon": -73.9295797 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825412563, + "bounds": { + "minlat": 40.7190416, + "minlon": -73.9295797, + "maxlat": 40.7192426, + "maxlon": -73.9294918 + }, + "nodes": [ + 5482302947, + 5482302946 + ], + "geometry": [ + { "lat": 40.7192426, "lon": -73.9295797 }, + { "lat": 40.7190416, "lon": -73.9294918 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825412564, + "bounds": { + "minlat": 40.7187964, + "minlon": -73.9297760, + "maxlat": 40.7190048, + "maxlon": -73.9295807 + }, + "nodes": [ + 5482302957, + 13084420332, + 13084420328 + ], + "geometry": [ + { "lat": 40.7187964, "lon": -73.9295807 }, + { "lat": 40.7189918, "lon": -73.9296841 }, + { "lat": 40.7190048, "lon": -73.9297760 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825412565, + "bounds": { + "minlat": 40.7197921, + "minlon": -73.9286483, + "maxlat": 40.7199101, + "maxlon": -73.9281964 + }, + "nodes": [ + 7707097683, + 7707097684 + ], + "geometry": [ + { "lat": 40.7197921, "lon": -73.9286483 }, + { "lat": 40.7199101, "lon": -73.9281964 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825412566, + "bounds": { + "minlat": 40.7196832, + "minlon": -73.9286483, + "maxlat": 40.7197921, + "maxlon": -73.9285977 + }, + "nodes": [ + 7707097683, + 7707191985 + ], + "geometry": [ + { "lat": 40.7197921, "lon": -73.9286483 }, + { "lat": 40.7196832, "lon": -73.9285977 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825412567, + "bounds": { + "minlat": 40.7197961, + "minlon": -73.9281964, + "maxlat": 40.7199101, + "maxlon": -73.9281408 + }, + "nodes": [ + 7707097684, + 7707191986 + ], + "geometry": [ + { "lat": 40.7199101, "lon": -73.9281964 }, + { "lat": 40.7197961, "lon": -73.9281408 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825412568, + "bounds": { + "minlat": 40.7204305, + "minlon": -73.9279657, + "maxlat": 40.7208512, + "maxlon": -73.9263068 + }, + "nodes": [ + 7707191988, + 7707191989, + 7707191987 + ], + "geometry": [ + { "lat": 40.7204305, "lon": -73.9279657 }, + { "lat": 40.7204458, "lon": -73.9278978 }, + { "lat": 40.7208512, "lon": -73.9263068 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825412569, + "bounds": { + "minlat": 40.7199181, + "minlon": -73.9278978, + "maxlat": 40.7204458, + "maxlon": -73.9276469 + }, + "nodes": [ + 7707191989, + 7707191990 + ], + "geometry": [ + { "lat": 40.7204458, "lon": -73.9278978 }, + { "lat": 40.7199181, "lon": -73.9276469 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825412570, + "bounds": { + "minlat": 40.7203556, + "minlon": -73.9299472, + "maxlat": 40.7205984, + "maxlon": -73.9289613 + }, + "nodes": [ + 6348483242, + 7707191991, + 5482302987 + ], + "geometry": [ + { "lat": 40.7203556, "lon": -73.9299472 }, + { "lat": 40.7204949, "lon": -73.9293709 }, + { "lat": 40.7205984, "lon": -73.9289613 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825412571, + "bounds": { + "minlat": 40.7201507, + "minlon": -73.9293709, + "maxlat": 40.7204949, + "maxlon": -73.9292173 + }, + "nodes": [ + 5482302972, + 7707191992, + 7707191991 + ], + "geometry": [ + { "lat": 40.7201507, "lon": -73.9292173 }, + { "lat": 40.7202111, "lon": -73.9292442 }, + { "lat": 40.7204949, "lon": -73.9293709 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825412572, + "bounds": { + "minlat": 40.7202111, + "minlon": -73.9292442, + "maxlat": 40.7203248, + "maxlon": -73.9287918 + }, + "nodes": [ + 7707191992, + 5482302975, + 7707191993 + ], + "geometry": [ + { "lat": 40.7202111, "lon": -73.9292442 }, + { "lat": 40.7202450, "lon": -73.9291090 }, + { "lat": 40.7203248, "lon": -73.9287918 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825412573, + "bounds": { + "minlat": 40.7203248, + "minlon": -73.9287918, + "maxlat": 40.7203678, + "maxlon": -73.9287695 + }, + "nodes": [ + 5482302977, + 7707191993 + ], + "geometry": [ + { "lat": 40.7203678, "lon": -73.9287695 }, + { "lat": 40.7203248, "lon": -73.9287918 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825412574, + "bounds": { + "minlat": 40.7205250, + "minlon": -73.9289613, + "maxlat": 40.7205984, + "maxlon": -73.9282031 + }, + "nodes": [ + 5482302987, + 7707191996, + 7707191994 + ], + "geometry": [ + { "lat": 40.7205984, "lon": -73.9289613 }, + { "lat": 40.7205303, "lon": -73.9282578 }, + { "lat": 40.7205250, "lon": -73.9282031 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825412575, + "bounds": { + "minlat": 40.7204305, + "minlon": -73.9282031, + "maxlat": 40.7205250, + "maxlon": -73.9279657 + }, + "nodes": [ + 7707191994, + 7707191988 + ], + "geometry": [ + { "lat": 40.7205250, "lon": -73.9282031 }, + { "lat": 40.7204305, "lon": -73.9279657 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825412576, + "bounds": { + "minlat": 40.7205303, + "minlon": -73.9285531, + "maxlat": 40.7211765, + "maxlon": -73.9282578 + }, + "nodes": [ + 7707191995, + 7707191996 + ], + "geometry": [ + { "lat": 40.7211765, "lon": -73.9285531 }, + { "lat": 40.7205303, "lon": -73.9282578 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825412577, + "bounds": { + "minlat": 40.7189617, + "minlon": -73.9303486, + "maxlat": 40.7191545, + "maxlon": -73.9298094 + }, + "nodes": [ + 13084420331, + 13084420330, + 7707191998 + ], + "geometry": [ + { "lat": 40.7191545, "lon": -73.9298094 }, + { "lat": 40.7190422, "lon": -73.9300313 }, + { "lat": 40.7189617, "lon": -73.9303486 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825412578, + "bounds": { + "minlat": 40.7187737, + "minlon": -73.9306358, + "maxlat": 40.7189475, + "maxlon": -73.9305581 + }, + "nodes": [ + 7707192000, + 7707191999 + ], + "geometry": [ + { "lat": 40.7189475, "lon": -73.9306358 }, + { "lat": 40.7187737, "lon": -73.9305581 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825412579, + "bounds": { + "minlat": 40.7187737, + "minlon": -73.9305581, + "maxlat": 40.7188458, + "maxlon": -73.9302939 + }, + "nodes": [ + 7707191999, + 7707192002 + ], + "geometry": [ + { "lat": 40.7187737, "lon": -73.9305581 }, + { "lat": 40.7188458, "lon": -73.9302939 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825412580, + "bounds": { + "minlat": 40.7189475, + "minlon": -73.9306358, + "maxlat": 40.7190156, + "maxlon": -73.9303743 + }, + "nodes": [ + 7707192000, + 7707192001 + ], + "geometry": [ + { "lat": 40.7189475, "lon": -73.9306358 }, + { "lat": 40.7190156, "lon": -73.9303743 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825412581, + "bounds": { + "minlat": 40.7188458, + "minlon": -73.9303743, + "maxlat": 40.7190156, + "maxlon": -73.9302939 + }, + "nodes": [ + 7707192001, + 7707191998, + 7707192002 + ], + "geometry": [ + { "lat": 40.7190156, "lon": -73.9303743 }, + { "lat": 40.7189617, "lon": -73.9303486 }, + { "lat": 40.7188458, "lon": -73.9302939 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825413366, + "bounds": { + "minlat": 40.7234043, + "minlon": -73.9340271, + "maxlat": 40.7246452, + "maxlon": -73.9291949 + }, + "nodes": [ + 42505675, + 42516101, + 42509694, + 13701138937, + 7721413153 + ], + "geometry": [ + { "lat": 40.7234043, "lon": -73.9340271 }, + { "lat": 40.7238144, "lon": -73.9324440 }, + { "lat": 40.7242196, "lon": -73.9308795 }, + { "lat": 40.7246212, "lon": -73.9292898 }, + { "lat": 40.7246452, "lon": -73.9291949 } + ], + "tags": { + "highway": "unclassified", + "name": "Lombardy Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825414758, + "bounds": { + "minlat": 40.7200870, + "minlon": -73.9354882, + "maxlat": 40.7202718, + "maxlon": -73.9353985 + }, + "nodes": [ + 7707192825, + 10689800949, + 7707192826 + ], + "geometry": [ + { "lat": 40.7202718, "lon": -73.9354882 }, + { "lat": 40.7201739, "lon": -73.9354407 }, + { "lat": 40.7200870, "lon": -73.9353985 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825414759, + "bounds": { + "minlat": 40.7200179, + "minlon": -73.9356694, + "maxlat": 40.7200870, + "maxlon": -73.9353985 + }, + "nodes": [ + 7707192826, + 7707192827 + ], + "geometry": [ + { "lat": 40.7200870, "lon": -73.9353985 }, + { "lat": 40.7200179, "lon": -73.9356694 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825414760, + "bounds": { + "minlat": 40.7194304, + "minlon": -73.9356694, + "maxlat": 40.7200179, + "maxlon": -73.9353971 + }, + "nodes": [ + 7707192827, + 5482302925, + 7707192828 + ], + "geometry": [ + { "lat": 40.7200179, "lon": -73.9356694 }, + { "lat": 40.7196036, "lon": -73.9354774 }, + { "lat": 40.7194304, "lon": -73.9353971 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825414761, + "bounds": { + "minlat": 40.7194304, + "minlon": -73.9353971, + "maxlat": 40.7195015, + "maxlon": -73.9351235 + }, + "nodes": [ + 7707192828, + 7707192829 + ], + "geometry": [ + { "lat": 40.7194304, "lon": -73.9353971 }, + { "lat": 40.7195015, "lon": -73.9351235 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825414764, + "bounds": { + "minlat": 40.7174253, + "minlon": -73.9330837, + "maxlat": 40.7175808, + "maxlon": -73.9324499 + }, + "nodes": [ + 5482301709, + 7707192840, + 7707192838 + ], + "geometry": [ + { "lat": 40.7174253, "lon": -73.9330837 }, + { "lat": 40.7175528, "lon": -73.9325622 }, + { "lat": 40.7175808, "lon": -73.9324499 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825414765, + "bounds": { + "minlat": 40.7172634, + "minlon": -73.9330075, + "maxlat": 40.7173948, + "maxlon": -73.9324883 + }, + "nodes": [ + 5482301708, + 7707192839 + ], + "geometry": [ + { "lat": 40.7172634, "lon": -73.9330075 }, + { "lat": 40.7173948, "lon": -73.9324883 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825414766, + "bounds": { + "minlat": 40.7173948, + "minlon": -73.9325622, + "maxlat": 40.7175528, + "maxlon": -73.9324883 + }, + "nodes": [ + 7707192839, + 7707192840 + ], + "geometry": [ + { "lat": 40.7173948, "lon": -73.9324883 }, + { "lat": 40.7175528, "lon": -73.9325622 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825414767, + "bounds": { + "minlat": 40.7163600, + "minlon": -73.9325419, + "maxlat": 40.7177732, + "maxlon": -73.9318660 + }, + "nodes": [ + 5482301711, + 9937797984, + 7707192838, + 7707192841 + ], + "geometry": [ + { "lat": 40.7177732, "lon": -73.9325419 }, + { "lat": 40.7176792, "lon": -73.9324970 }, + { "lat": 40.7175808, "lon": -73.9324499 }, + { "lat": 40.7163600, "lon": -73.9318660 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825415685, + "bounds": { + "minlat": 40.7042690, + "minlon": -73.9478195, + "maxlat": 40.7044581, + "maxlon": -73.9478101 + }, + "nodes": [ + 5849457172, + 9983487199 + ], + "geometry": [ + { "lat": 40.7042690, "lon": -73.9478101 }, + { "lat": 40.7044581, "lon": -73.9478195 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825423366, + "bounds": { + "minlat": 40.7001168, + "minlon": -73.9758457, + "maxlat": 40.7013686, + "maxlon": -73.9750396 + }, + "nodes": [ + 3656001502, + 42489621 + ], + "geometry": [ + { "lat": 40.7013686, "lon": -73.9750396 }, + { "lat": 40.7001168, "lon": -73.9758457 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "4th Street" + } +}, +{ + "type": "way", + "id": 825423367, + "bounds": { + "minlat": 40.7013686, + "minlon": -73.9755024, + "maxlat": 40.7015548, + "maxlon": -73.9750396 + }, + "nodes": [ + 3656001503, + 3656001502 + ], + "geometry": [ + { "lat": 40.7015548, "lon": -73.9755024 }, + { "lat": 40.7013686, "lon": -73.9750396 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "4th Street" + } +}, +{ + "type": "way", + "id": 825423368, + "bounds": { + "minlat": 40.6995845, + "minlon": -73.9766296, + "maxlat": 40.7001168, + "maxlon": -73.9758457 + }, + "nodes": [ + 7707254808, + 9998755700, + 42517622, + 9998755699, + 42489621 + ], + "geometry": [ + { "lat": 40.6995845, "lon": -73.9766296 }, + { "lat": 40.6998028, "lon": -73.9762902 }, + { "lat": 40.6998380, "lon": -73.9762091 }, + { "lat": 40.6998730, "lon": -73.9761078 }, + { "lat": 40.7001168, "lon": -73.9758457 } + ], + "tags": { + "access": "private", + "covered": "no", + "highway": "service", + "name": "4th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 825472913, + "bounds": { + "minlat": 40.6998498, + "minlon": -73.9838943, + "maxlat": 40.7005328, + "maxlon": -73.9838325 + }, + "nodes": [ + 494509210, + 11710116896, + 11710116897, + 11710116898, + 11710116895, + 10722387836, + 494509211 + ], + "geometry": [ + { "lat": 40.7005328, "lon": -73.9838943 }, + { "lat": 40.7005255, "lon": -73.9838658 }, + { "lat": 40.7005129, "lon": -73.9838471 }, + { "lat": 40.7004944, "lon": -73.9838357 }, + { "lat": 40.7004767, "lon": -73.9838325 }, + { "lat": 40.6999019, "lon": -73.9838627 }, + { "lat": 40.6998498, "lon": -73.9838663 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825472914, + "bounds": { + "minlat": 40.7010208, + "minlon": -73.9855549, + "maxlat": 40.7014036, + "maxlon": -73.9849197 + }, + "nodes": [ + 11708944466, + 7707712190, + 11708944467 + ], + "geometry": [ + { "lat": 40.7014036, "lon": -73.9855327 }, + { "lat": 40.7010432, "lon": -73.9855549 }, + { "lat": 40.7010208, "lon": -73.9849197 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Talman Street", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825472916, + "bounds": { + "minlat": 40.7044143, + "minlon": -73.9793641, + "maxlat": 40.7053211, + "maxlon": -73.9791052 + }, + "nodes": [ + 3590804725, + 3590804726 + ], + "geometry": [ + { "lat": 40.7044143, "lon": -73.9793641 }, + { "lat": 40.7053211, "lon": -73.9791052 } + ], + "tags": { + "access": "private", + "foot": "private", + "highway": "unclassified", + "name": "West Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 825472917, + "bounds": { + "minlat": 40.7033605, + "minlon": -73.9796791, + "maxlat": 40.7044143, + "maxlon": -73.9793641 + }, + "nodes": [ + 7707712200, + 7154021061, + 3590804725 + ], + "geometry": [ + { "lat": 40.7033605, "lon": -73.9796791 }, + { "lat": 40.7038900, "lon": -73.9795206 }, + { "lat": 40.7044143, "lon": -73.9793641 } + ], + "tags": { + "access": "private", + "foot": "private", + "highway": "unclassified", + "name": "West Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 825474707, + "bounds": { + "minlat": 40.7006108, + "minlon": -73.9800937, + "maxlat": 40.7015553, + "maxlon": -73.9797391 + }, + "nodes": [ + 7707722473, + 9645288217, + 7707722474, + 8392587063, + 7707722461, + 5487796371, + 5487796370, + 7707722476, + 7707722458 + ], + "geometry": [ + { "lat": 40.7006179, "lon": -73.9800937 }, + { "lat": 40.7006143, "lon": -73.9799956 }, + { "lat": 40.7006108, "lon": -73.9798975 }, + { "lat": 40.7008191, "lon": -73.9798844 }, + { "lat": 40.7009454, "lon": -73.9798764 }, + { "lat": 40.7010743, "lon": -73.9798522 }, + { "lat": 40.7012436, "lon": -73.9798124 }, + { "lat": 40.7014062, "lon": -73.9797742 }, + { "lat": 40.7015553, "lon": -73.9797391 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825474710, + "bounds": { + "minlat": 40.7001673, + "minlon": -73.9804329, + "maxlat": 40.7006108, + "maxlon": -73.9798975 + }, + "nodes": [ + 5487796388, + 10004163927, + 8668364467, + 7707722460, + 7910177136, + 6562835936, + 7910177135, + 7707722474 + ], + "geometry": [ + { "lat": 40.7001790, "lon": -73.9804329 }, + { "lat": 40.7001750, "lon": -73.9803068 }, + { "lat": 40.7001712, "lon": -73.9801897 }, + { "lat": 40.7001673, "lon": -73.9800674 }, + { "lat": 40.7002008, "lon": -73.9799709 }, + { "lat": 40.7002697, "lon": -73.9799261 }, + { "lat": 40.7005221, "lon": -73.9799152 }, + { "lat": 40.7006108, "lon": -73.9798975 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825474713, + "bounds": { + "minlat": 40.7007908, + "minlon": -73.9804981, + "maxlat": 40.7016748, + "maxlon": -73.9786989 + }, + "nodes": [ + 7707722461, + 5487796367, + 7707722462, + 5487796374, + 5487796369, + 5487796368, + 5487796375, + 7707722458, + 7707722459, + 5487796376 + ], + "geometry": [ + { "lat": 40.7009454, "lon": -73.9798764 }, + { "lat": 40.7008195, "lon": -73.9791646 }, + { "lat": 40.7007908, "lon": -73.9790020 }, + { "lat": 40.7008943, "lon": -73.9788316 }, + { "lat": 40.7010635, "lon": -73.9787854 }, + { "lat": 40.7012360, "lon": -73.9787399 }, + { "lat": 40.7013914, "lon": -73.9786989 }, + { "lat": 40.7015553, "lon": -73.9797391 }, + { "lat": 40.7016022, "lon": -73.9800409 }, + { "lat": 40.7016748, "lon": -73.9804981 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825474714, + "bounds": { + "minlat": 40.7003909, + "minlon": -73.9794955, + "maxlat": 40.7008195, + "maxlon": -73.9791173 + }, + "nodes": [ + 5487796367, + 5487796366, + 7707722463 + ], + "geometry": [ + { "lat": 40.7008195, "lon": -73.9791646 }, + { "lat": 40.7003909, "lon": -73.9791173 }, + { "lat": 40.7004034, "lon": -73.9794955 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825474717, + "bounds": { + "minlat": 40.7006179, + "minlon": -73.9800937, + "maxlat": 40.7010795, + "maxlon": -73.9800789 + }, + "nodes": [ + 7707722475, + 7707722473 + ], + "geometry": [ + { "lat": 40.7010795, "lon": -73.9800789 }, + { "lat": 40.7006179, "lon": -73.9800937 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825476413, + "bounds": { + "minlat": 40.7014105, + "minlon": -73.9811895, + "maxlat": 40.7018963, + "maxlon": -73.9808245 + }, + "nodes": [ + 598050842, + 10253436253, + 6424527336 + ], + "geometry": [ + { "lat": 40.7018963, "lon": -73.9811895 }, + { "lat": 40.7014623, "lon": -73.9808635 }, + { "lat": 40.7014105, "lon": -73.9808245 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Hudson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 825478207, + "bounds": { + "minlat": 40.7003855, + "minlon": -73.9683117, + "maxlat": 40.7020489, + "maxlon": -73.9682133 + }, + "nodes": [ + 4758928093, + 4758928120, + 4758928118, + 4758928116, + 4758928114, + 4758928094, + 4758928111, + 4758928109, + 4758928107, + 4758928105, + 4758928103, + 4758928095 + ], + "geometry": [ + { "lat": 40.7003855, "lon": -73.9683117 }, + { "lat": 40.7005583, "lon": -73.9683015 }, + { "lat": 40.7007174, "lon": -73.9682921 }, + { "lat": 40.7008836, "lon": -73.9682822 }, + { "lat": 40.7010482, "lon": -73.9682725 }, + { "lat": 40.7012121, "lon": -73.9682628 }, + { "lat": 40.7013765, "lon": -73.9682531 }, + { "lat": 40.7015342, "lon": -73.9682430 }, + { "lat": 40.7017142, "lon": -73.9682331 }, + { "lat": 40.7018802, "lon": -73.9682233 }, + { "lat": 40.7020275, "lon": -73.9682146 }, + { "lat": 40.7020489, "lon": -73.9682133 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825478208, + "bounds": { + "minlat": 40.7020489, + "minlon": -73.9682133, + "maxlat": 40.7021936, + "maxlon": -73.9675033 + }, + "nodes": [ + 4758928095, + 4758928096, + 4758928097, + 4758928098, + 4758928099, + 4758928100, + 12806321135, + 4758928101 + ], + "geometry": [ + { "lat": 40.7020489, "lon": -73.9682133 }, + { "lat": 40.7021019, "lon": -73.9681974 }, + { "lat": 40.7021478, "lon": -73.9681656 }, + { "lat": 40.7021767, "lon": -73.9681210 }, + { "lat": 40.7021912, "lon": -73.9680733 }, + { "lat": 40.7021936, "lon": -73.9679842 }, + { "lat": 40.7021776, "lon": -73.9675380 }, + { "lat": 40.7021764, "lon": -73.9675033 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825478209, + "bounds": { + "minlat": 40.7003628, + "minlon": -73.9683117, + "maxlat": 40.7003855, + "maxlon": -73.9676065 + }, + "nodes": [ + 4758928093, + 7711046930, + 4758928090 + ], + "geometry": [ + { "lat": 40.7003855, "lon": -73.9683117 }, + { "lat": 40.7003821, "lon": -73.9682043 }, + { "lat": 40.7003628, "lon": -73.9676065 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825478210, + "bounds": { + "minlat": 40.6995779, + "minlon": -73.9684119, + "maxlat": 40.7002490, + "maxlon": -73.9683743 + }, + "nodes": [ + 7707737419, + 7707737420 + ], + "geometry": [ + { "lat": 40.7002490, "lon": -73.9683743 }, + { "lat": 40.6995779, "lon": -73.9684119 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825478211, + "bounds": { + "minlat": 40.7002490, + "minlon": -73.9683743, + "maxlat": 40.7003855, + "maxlon": -73.9683117 + }, + "nodes": [ + 4758928093, + 7707737419 + ], + "geometry": [ + { "lat": 40.7003855, "lon": -73.9683117 }, + { "lat": 40.7002490, "lon": -73.9683743 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825603518, + "bounds": { + "minlat": 40.7369612, + "minlon": -73.9284554, + "maxlat": 40.7370687, + "maxlon": -73.9275703 + }, + "nodes": [ + 7708763529, + 10743722320, + 10743722323, + 7708763530 + ], + "geometry": [ + { "lat": 40.7369612, "lon": -73.9275703 }, + { "lat": 40.7369730, "lon": -73.9276765 }, + { "lat": 40.7370600, "lon": -73.9283836 }, + { "lat": 40.7370687, "lon": -73.9284554 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 825635680, + "bounds": { + "minlat": 40.8747964, + "minlon": -73.9755931, + "maxlat": 40.8748259, + "maxlon": -73.9752899 + }, + "nodes": [ + 7709015412, + 7709015413 + ], + "geometry": [ + { "lat": 40.8747964, "lon": -73.9755931 }, + { "lat": 40.8748259, "lon": -73.9752899 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825694160, + "bounds": { + "minlat": 40.8297847, + "minlon": -74.0052493, + "maxlat": 40.8301048, + "maxlon": -74.0047895 + }, + "nodes": [ + 7709351046, + 7709351047, + 7709351048, + 7709351049, + 7709351050, + 7709351051, + 7709351052 + ], + "geometry": [ + { "lat": 40.8299361, "lon": -74.0047895 }, + { "lat": 40.8301020, "lon": -74.0050846 }, + { "lat": 40.8301048, "lon": -74.0051445 }, + { "lat": 40.8300623, "lon": -74.0052268 }, + { "lat": 40.8299986, "lon": -74.0052493 }, + { "lat": 40.8299533, "lon": -74.0052250 }, + { "lat": 40.8297847, "lon": -74.0049320 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 825751984, + "bounds": { + "minlat": 40.8201482, + "minlon": -73.9531174, + "maxlat": 40.8212245, + "maxlon": -73.9523998 + }, + "nodes": [ + 13564503824, + 13564503823, + 13564503822, + 13564503825, + 13564503826, + 7709922532, + 10170977573, + 7148243501 + ], + "geometry": [ + { "lat": 40.8211219, "lon": -73.9523998 }, + { "lat": 40.8212245, "lon": -73.9526479 }, + { "lat": 40.8207897, "lon": -73.9529658 }, + { "lat": 40.8207208, "lon": -73.9529552 }, + { "lat": 40.8206460, "lon": -73.9527811 }, + { "lat": 40.8202451, "lon": -73.9530519 }, + { "lat": 40.8201999, "lon": -73.9530824 }, + { "lat": 40.8201482, "lon": -73.9531174 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 825769433, + "bounds": { + "minlat": 40.7616016, + "minlon": -73.9359370, + "maxlat": 40.7625762, + "maxlon": -73.9350567 + }, + "nodes": [ + 7710100127, + 7710100128, + 7710100131 + ], + "geometry": [ + { "lat": 40.7616016, "lon": -73.9359370 }, + { "lat": 40.7616980, "lon": -73.9358499 }, + { "lat": 40.7625762, "lon": -73.9350567 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825814678, + "bounds": { + "minlat": 40.8798728, + "minlon": -73.9912910, + "maxlat": 40.8802655, + "maxlon": -73.9908854 + }, + "nodes": [ + 7710539814, + 7719420599, + 7710539815 + ], + "geometry": [ + { "lat": 40.8802655, "lon": -73.9908854 }, + { "lat": 40.8802247, "lon": -73.9909276 }, + { "lat": 40.8798728, "lon": -73.9912910 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 825837786, + "bounds": { + "minlat": 40.7646547, + "minlon": -73.9406330, + "maxlat": 40.7649546, + "maxlon": -73.9397680 + }, + "nodes": [ + 7710779644, + 7710779645, + 11118539511, + 7710779647, + 7710779648 + ], + "geometry": [ + { "lat": 40.7649546, "lon": -73.9406330 }, + { "lat": 40.7649183, "lon": -73.9405287 }, + { "lat": 40.7646832, "lon": -73.9398502 }, + { "lat": 40.7646777, "lon": -73.9398343 }, + { "lat": 40.7646547, "lon": -73.9397680 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825848867, + "bounds": { + "minlat": 40.8088789, + "minlon": -74.0162815, + "maxlat": 40.8090018, + "maxlon": -74.0161499 + }, + "nodes": [ + 7710797404, + 7710797405 + ], + "geometry": [ + { "lat": 40.8090018, "lon": -74.0161499 }, + { "lat": 40.8088789, "lon": -74.0162815 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825848868, + "bounds": { + "minlat": 40.8079822, + "minlon": -74.0162815, + "maxlat": 40.8088789, + "maxlon": -74.0154934 + }, + "nodes": [ + 7710797414, + 7710797413, + 7710797412, + 7710797411, + 7710797410, + 7710797409, + 7710797408, + 7710797407, + 7710797406, + 7710797405 + ], + "geometry": [ + { "lat": 40.8080826, "lon": -74.0161397 }, + { "lat": 40.8079822, "lon": -74.0159768 }, + { "lat": 40.8079961, "lon": -74.0158770 }, + { "lat": 40.8082029, "lon": -74.0156747 }, + { "lat": 40.8083808, "lon": -74.0154934 }, + { "lat": 40.8084653, "lon": -74.0155709 }, + { "lat": 40.8086478, "lon": -74.0158782 }, + { "lat": 40.8087427, "lon": -74.0161239 }, + { "lat": 40.8088143, "lon": -74.0162369 }, + { "lat": 40.8088789, "lon": -74.0162815 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 825848869, + "bounds": { + "minlat": 40.8080826, + "minlon": -74.0167255, + "maxlat": 40.8084296, + "maxlon": -74.0161397 + }, + "nodes": [ + 7710797416, + 7710797415, + 7710797414 + ], + "geometry": [ + { "lat": 40.8084296, "lon": -74.0167255 }, + { "lat": 40.8082566, "lon": -74.0165153 }, + { "lat": 40.8080826, "lon": -74.0161397 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 825848870, + "bounds": { + "minlat": 40.8084296, + "minlon": -74.0167255, + "maxlat": 40.8088789, + "maxlon": -74.0162815 + }, + "nodes": [ + 7710797416, + 7710797417, + 7710797418, + 7710797405 + ], + "geometry": [ + { "lat": 40.8084296, "lon": -74.0167255 }, + { "lat": 40.8085320, "lon": -74.0166611 }, + { "lat": 40.8087119, "lon": -74.0164720 }, + { "lat": 40.8088789, "lon": -74.0162815 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 825863484, + "bounds": { + "minlat": 40.7089538, + "minlon": -73.9690315, + "maxlat": 40.7092420, + "maxlon": -73.9689192 + }, + "nodes": [ + 7710939884, + 9132411773, + 7710943986, + 7710939883, + 7710943985 + ], + "geometry": [ + { "lat": 40.7092420, "lon": -73.9689202 }, + { "lat": 40.7092039, "lon": -73.9689197 }, + { "lat": 40.7091651, "lon": -73.9689192 }, + { "lat": 40.7090056, "lon": -73.9690190 }, + { "lat": 40.7089538, "lon": -73.9690315 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825863485, + "bounds": { + "minlat": 40.7089467, + "minlon": -73.9689192, + "maxlat": 40.7091651, + "maxlon": -73.9689182 + }, + "nodes": [ + 7710943986, + 7710943987 + ], + "geometry": [ + { "lat": 40.7091651, "lon": -73.9689192 }, + { "lat": 40.7089467, "lon": -73.9689182 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825863486, + "bounds": { + "minlat": 40.7089122, + "minlon": -73.9690315, + "maxlat": 40.7089538, + "maxlon": -73.9689182 + }, + "nodes": [ + 7710943985, + 7710943989, + 7710943988, + 7710943991, + 7710943990, + 7710943987 + ], + "geometry": [ + { "lat": 40.7089538, "lon": -73.9690315 }, + { "lat": 40.7089231, "lon": -73.9690214 }, + { "lat": 40.7089122, "lon": -73.9689926 }, + { "lat": 40.7089152, "lon": -73.9689617 }, + { "lat": 40.7089239, "lon": -73.9689363 }, + { "lat": 40.7089467, "lon": -73.9689182 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825868573, + "bounds": { + "minlat": 40.7049872, + "minlon": -73.9709243, + "maxlat": 40.7070132, + "maxlon": -73.9706918 + }, + "nodes": [ + 7710968250, + 7710968251, + 42466708 + ], + "geometry": [ + { "lat": 40.7070132, "lon": -73.9708170 }, + { "lat": 40.7058076, "lon": -73.9709243 }, + { "lat": 40.7049872, "lon": -73.9706918 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "K Avenue" + } +}, +{ + "type": "way", + "id": 825868574, + "bounds": { + "minlat": 40.7049872, + "minlon": -73.9719805, + "maxlat": 40.7059196, + "maxlon": -73.9706918 + }, + "nodes": [ + 42466708, + 7983556937, + 7983556944, + 42466710 + ], + "geometry": [ + { "lat": 40.7049872, "lon": -73.9706918 }, + { "lat": 40.7052970, "lon": -73.9711200 }, + { "lat": 40.7057910, "lon": -73.9718027 }, + { "lat": 40.7059196, "lon": -73.9719805 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Railroad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Railroad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 825868575, + "bounds": { + "minlat": 40.7046683, + "minlon": -73.9706918, + "maxlat": 40.7049872, + "maxlon": -73.9705486 + }, + "nodes": [ + 42466706, + 42466708 + ], + "geometry": [ + { "lat": 40.7046683, "lon": -73.9705486 }, + { "lat": 40.7049872, "lon": -73.9706918 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Railroad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Railroad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 825868576, + "bounds": { + "minlat": 40.7042822, + "minlon": -73.9724649, + "maxlat": 40.7053736, + "maxlon": -73.9709207 + }, + "nodes": [ + 7710968253, + 4999422778, + 7710968262, + 7710968258, + 7710968252 + ], + "geometry": [ + { "lat": 40.7042822, "lon": -73.9709207 }, + { "lat": 40.7044277, "lon": -73.9711256 }, + { "lat": 40.7046278, "lon": -73.9714073 }, + { "lat": 40.7050020, "lon": -73.9719343 }, + { "lat": 40.7053736, "lon": -73.9724649 } + ], + "tags": { + "access": "destination", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825868577, + "bounds": { + "minlat": 40.7040702, + "minlon": -73.9726198, + "maxlat": 40.7052436, + "maxlon": -73.9709440 + }, + "nodes": [ + 7710968254, + 7710968261, + 7710968266, + 7710968265, + 9998827364, + 6027848377 + ], + "geometry": [ + { "lat": 40.7052436, "lon": -73.9726198 }, + { "lat": 40.7048572, "lon": -73.9720930 }, + { "lat": 40.7046995, "lon": -73.9718731 }, + { "lat": 40.7044802, "lon": -73.9715743 }, + { "lat": 40.7041524, "lon": -73.9711500 }, + { "lat": 40.7040702, "lon": -73.9709440 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825868578, + "bounds": { + "minlat": 40.7047626, + "minlon": -73.9727610, + "maxlat": 40.7051337, + "maxlon": -73.9722125 + }, + "nodes": [ + 7710968255, + 7710968256 + ], + "geometry": [ + { "lat": 40.7051337, "lon": -73.9727610 }, + { "lat": 40.7047626, "lon": -73.9722125 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825868579, + "bounds": { + "minlat": 40.7040702, + "minlon": -73.9709440, + "maxlat": 40.7046683, + "maxlon": -73.9705486 + }, + "nodes": [ + 42466706, + 11037567978, + 7710968257, + 7710968253, + 11037567977, + 6027848377 + ], + "geometry": [ + { "lat": 40.7046683, "lon": -73.9705486 }, + { "lat": 40.7045967, "lon": -73.9706381 }, + { "lat": 40.7043688, "lon": -73.9709230 }, + { "lat": 40.7042822, "lon": -73.9709207 }, + { "lat": 40.7041827, "lon": -73.9709311 }, + { "lat": 40.7040702, "lon": -73.9709440 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Gee Avenue" + } +}, +{ + "type": "way", + "id": 825868580, + "bounds": { + "minlat": 40.7047626, + "minlon": -73.9722125, + "maxlat": 40.7050020, + "maxlon": -73.9719343 + }, + "nodes": [ + 7710968256, + 7710968261, + 7710968258 + ], + "geometry": [ + { "lat": 40.7047626, "lon": -73.9722125 }, + { "lat": 40.7048572, "lon": -73.9720930 }, + { "lat": 40.7050020, "lon": -73.9719343 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825868581, + "bounds": { + "minlat": 40.7054494, + "minlon": -73.9723714, + "maxlat": 40.7059196, + "maxlon": -73.9719805 + }, + "nodes": [ + 42466710, + 7710968259, + 7710968260 + ], + "geometry": [ + { "lat": 40.7059196, "lon": -73.9719805 }, + { "lat": 40.7057248, "lon": -73.9722387 }, + { "lat": 40.7054494, "lon": -73.9723714 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825868582, + "bounds": { + "minlat": 40.7043666, + "minlon": -73.9717102, + "maxlat": 40.7046278, + "maxlon": -73.9714073 + }, + "nodes": [ + 7710968262, + 7710968265, + 7710968263 + ], + "geometry": [ + { "lat": 40.7046278, "lon": -73.9714073 }, + { "lat": 40.7044802, "lon": -73.9715743 }, + { "lat": 40.7043666, "lon": -73.9717102 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825868583, + "bounds": { + "minlat": 40.7043666, + "minlon": -73.9719530, + "maxlat": 40.7045303, + "maxlon": -73.9717102 + }, + "nodes": [ + 7710968264, + 7710968263 + ], + "geometry": [ + { "lat": 40.7045303, "lon": -73.9719530 }, + { "lat": 40.7043666, "lon": -73.9717102 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825868584, + "bounds": { + "minlat": 40.7045303, + "minlon": -73.9719753, + "maxlat": 40.7046995, + "maxlon": -73.9718731 + }, + "nodes": [ + 7710968266, + 7710968267, + 7710968264 + ], + "geometry": [ + { "lat": 40.7046995, "lon": -73.9718731 }, + { "lat": 40.7046116, "lon": -73.9719753 }, + { "lat": 40.7045303, "lon": -73.9719530 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825868585, + "bounds": { + "minlat": 40.7051337, + "minlon": -73.9727610, + "maxlat": 40.7054494, + "maxlon": -73.9723714 + }, + "nodes": [ + 7710968260, + 7710968252, + 7710968254, + 13718284692, + 7710968255 + ], + "geometry": [ + { "lat": 40.7054494, "lon": -73.9723714 }, + { "lat": 40.7053736, "lon": -73.9724649 }, + { "lat": 40.7052436, "lon": -73.9726198 }, + { "lat": 40.7051850, "lon": -73.9726951 }, + { "lat": 40.7051337, "lon": -73.9727610 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825875762, + "bounds": { + "minlat": 40.7002255, + "minlon": -73.9682116, + "maxlat": 40.7003821, + "maxlon": -73.9682043 + }, + "nodes": [ + 7711046930, + 4758945522 + ], + "geometry": [ + { "lat": 40.7003821, "lon": -73.9682043 }, + { "lat": 40.7002255, "lon": -73.9682116 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825875763, + "bounds": { + "minlat": 40.7003071, + "minlon": -73.9685076, + "maxlat": 40.7023557, + "maxlon": -73.9682176 + }, + "nodes": [ + 4758938137, + 9998827357, + 8855131441, + 9998827358, + 9998827359, + 9998827360, + 9998827361, + 8855131440, + 7711046931 + ], + "geometry": [ + { "lat": 40.7003071, "lon": -73.9685076 }, + { "lat": 40.7003298, "lon": -73.9685052 }, + { "lat": 40.7021256, "lon": -73.9684000 }, + { "lat": 40.7021512, "lon": -73.9683965 }, + { "lat": 40.7021747, "lon": -73.9683882 }, + { "lat": 40.7021969, "lon": -73.9683781 }, + { "lat": 40.7022194, "lon": -73.9683645 }, + { "lat": 40.7022380, "lon": -73.9683490 }, + { "lat": 40.7023557, "lon": -73.9682176 } + ], + "tags": { + "access": "private", + "cycleway": "lane", + "highway": "unclassified", + "name": "Assembly Road", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Market", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 825875764, + "bounds": { + "minlat": 40.7023557, + "minlon": -73.9682176, + "maxlat": 40.7030986, + "maxlon": -73.9674255 + }, + "nodes": [ + 7711046933, + 7711046932, + 4758931799, + 9998827363, + 7711046931 + ], + "geometry": [ + { "lat": 40.7030986, "lon": -73.9674255 }, + { "lat": 40.7028673, "lon": -73.9676557 }, + { "lat": 40.7025754, "lon": -73.9679658 }, + { "lat": 40.7024868, "lon": -73.9680650 }, + { "lat": 40.7023557, "lon": -73.9682176 } + ], + "tags": { + "access": "private", + "bicycle": "private", + "cycleway": "shared_lane", + "highway": "unclassified", + "name": "Assembly Road", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825875766, + "bounds": { + "minlat": 40.7030986, + "minlon": -73.9674255, + "maxlat": 40.7039004, + "maxlon": -73.9673484 + }, + "nodes": [ + 7711046935, + 9998827367, + 9998827368, + 9998827366, + 9998827369, + 9998827370, + 9998827371, + 7711046933 + ], + "geometry": [ + { "lat": 40.7039004, "lon": -73.9673610 }, + { "lat": 40.7035778, "lon": -73.9673484 }, + { "lat": 40.7032531, "lon": -73.9673589 }, + { "lat": 40.7032159, "lon": -73.9673628 }, + { "lat": 40.7031855, "lon": -73.9673720 }, + { "lat": 40.7031546, "lon": -73.9673846 }, + { "lat": 40.7031250, "lon": -73.9674019 }, + { "lat": 40.7030986, "lon": -73.9674255 } + ], + "tags": { + "access": "private", + "cycleway": "shared_lane", + "highway": "unclassified", + "lanes": "4", + "name": "Washington Avenue", + "name:etymology:wikidata": "Q23", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825875767, + "bounds": { + "minlat": 40.7039004, + "minlon": -73.9673610, + "maxlat": 40.7042303, + "maxlon": -73.9672023 + }, + "nodes": [ + 9998897921, + 7711046936, + 9776829152, + 9998827374, + 9220204635, + 9998827373, + 9998827372, + 7711046935 + ], + "geometry": [ + { "lat": 40.7042303, "lon": -73.9672023 }, + { "lat": 40.7041704, "lon": -73.9672564 }, + { "lat": 40.7041275, "lon": -73.9672905 }, + { "lat": 40.7040774, "lon": -73.9673308 }, + { "lat": 40.7040531, "lon": -73.9673447 }, + { "lat": 40.7040293, "lon": -73.9673540 }, + { "lat": 40.7039987, "lon": -73.9673569 }, + { "lat": 40.7039004, "lon": -73.9673610 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "Washington Avenue", + "name:etymology:wikidata": "Q23", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825898627, + "bounds": { + "minlat": 40.6999262, + "minlon": -73.9650818, + "maxlat": 40.7012699, + "maxlon": -73.9631535 + }, + "nodes": [ + 7711206091, + 7711206095 + ], + "geometry": [ + { "lat": 40.7012699, "lon": -73.9650818 }, + { "lat": 40.6999262, "lon": -73.9631535 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Neilson Street" + } +}, +{ + "type": "way", + "id": 825898629, + "bounds": { + "minlat": 40.7012699, + "minlon": -73.9653112, + "maxlat": 40.7013152, + "maxlon": -73.9650818 + }, + "nodes": [ + 7711046934, + 7711206091 + ], + "geometry": [ + { "lat": 40.7013152, "lon": -73.9653112 }, + { "lat": 40.7012699, "lon": -73.9650818 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Neilson Street" + } +}, +{ + "type": "way", + "id": 825898633, + "bounds": { + "minlat": 40.6983888, + "minlon": -73.9650275, + "maxlat": 40.7000017, + "maxlon": -73.9643097 + }, + "nodes": [ + 7711206103, + 11065677154, + 11065677153, + 7711206105, + 7711206109, + 11272620202, + 7711206106 + ], + "geometry": [ + { "lat": 40.6998955, "lon": -73.9650275 }, + { "lat": 40.6999817, "lon": -73.9649573 }, + { "lat": 40.7000017, "lon": -73.9648496 }, + { "lat": 40.6999601, "lon": -73.9643097 }, + { "lat": 40.6990420, "lon": -73.9644855 }, + { "lat": 40.6990069, "lon": -73.9645261 }, + { "lat": 40.6983888, "lon": -73.9646503 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 825900103, + "bounds": { + "minlat": 40.7004855, + "minlon": -73.9638206, + "maxlat": 40.7008505, + "maxlon": -73.9633553 + }, + "nodes": [ + 5487808167, + 5487808188 + ], + "geometry": [ + { "lat": 40.7004855, "lon": -73.9638206 }, + { "lat": 40.7008505, "lon": -73.9633553 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825900104, + "bounds": { + "minlat": 40.7003947, + "minlon": -73.9638206, + "maxlat": 40.7004855, + "maxlon": -73.9636985 + }, + "nodes": [ + 5487808171, + 5487808167 + ], + "geometry": [ + { "lat": 40.7003947, "lon": -73.9636985 }, + { "lat": 40.7004855, "lon": -73.9638206 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825900105, + "bounds": { + "minlat": 40.7003234, + "minlon": -73.9635799, + "maxlat": 40.7006636, + "maxlon": -73.9631195 + }, + "nodes": [ + 5487808174, + 5487808173 + ], + "geometry": [ + { "lat": 40.7003234, "lon": -73.9635799 }, + { "lat": 40.7006636, "lon": -73.9631195 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825900106, + "bounds": { + "minlat": 40.7002456, + "minlon": -73.9635799, + "maxlat": 40.7003234, + "maxlon": -73.9634706 + }, + "nodes": [ + 5487808179, + 5487808174 + ], + "geometry": [ + { "lat": 40.7002456, "lon": -73.9634706 }, + { "lat": 40.7003234, "lon": -73.9635799 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825900107, + "bounds": { + "minlat": 40.7001581, + "minlon": -73.9633392, + "maxlat": 40.7004880, + "maxlon": -73.9628980 + }, + "nodes": [ + 5487808181, + 5487808182 + ], + "geometry": [ + { "lat": 40.7004880, "lon": -73.9628980 }, + { "lat": 40.7001581, "lon": -73.9633392 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825900108, + "bounds": { + "minlat": 40.7000788, + "minlon": -73.9632319, + "maxlat": 40.7004072, + "maxlon": -73.9627961 + }, + "nodes": [ + 5487808187, + 5487808186 + ], + "geometry": [ + { "lat": 40.7004072, "lon": -73.9627961 }, + { "lat": 40.7000788, "lon": -73.9632319 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825900109, + "bounds": { + "minlat": 40.7010524, + "minlon": -73.9653112, + "maxlat": 40.7013152, + "maxlon": -73.9652633 + }, + "nodes": [ + 7711046934, + 7711199530 + ], + "geometry": [ + { "lat": 40.7013152, "lon": -73.9653112 }, + { "lat": 40.7010524, "lon": -73.9652633 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825912772, + "bounds": { + "minlat": 40.7021025, + "minlon": -73.9350073, + "maxlat": 40.7024002, + "maxlon": -73.9348668 + }, + "nodes": [ + 7193273720, + 9744012825, + 7711304342 + ], + "geometry": [ + { "lat": 40.7024002, "lon": -73.9350073 }, + { "lat": 40.7023292, "lon": -73.9349738 }, + { "lat": 40.7021025, "lon": -73.9348668 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825912773, + "bounds": { + "minlat": 40.7077816, + "minlon": -73.9245360, + "maxlat": 40.7099290, + "maxlon": -73.9237478 + }, + "nodes": [ + 1275778402, + 5777671162, + 9747567472, + 10066773548, + 42487188, + 10066773549, + 9744109112, + 42496398, + 9744109111, + 5436391859, + 5436391845, + 5436391858, + 42502281 + ], + "geometry": [ + { "lat": 40.7077816, "lon": -73.9237478 }, + { "lat": 40.7078471, "lon": -73.9238252 }, + { "lat": 40.7078710, "lon": -73.9238572 }, + { "lat": 40.7083007, "lon": -73.9239850 }, + { "lat": 40.7083610, "lon": -73.9240030 }, + { "lat": 40.7084390, "lon": -73.9240234 }, + { "lat": 40.7089973, "lon": -73.9241694 }, + { "lat": 40.7090654, "lon": -73.9241840 }, + { "lat": 40.7091424, "lon": -73.9242008 }, + { "lat": 40.7091709, "lon": -73.9242054 }, + { "lat": 40.7098351, "lon": -73.9244951 }, + { "lat": 40.7098647, "lon": -73.9245079 }, + { "lat": 40.7099290, "lon": -73.9245360 } + ], + "tags": { + "highway": "residential", + "name": "Gardner Avenue", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825912774, + "bounds": { + "minlat": 40.7131227, + "minlon": -73.9158549, + "maxlat": 40.7134185, + "maxlon": -73.9152849 + }, + "nodes": [ + 9744131391, + 12998864423, + 9755788617, + 10686537781, + 7711304349, + 7711304352, + 7711304353, + 5482330027 + ], + "geometry": [ + { "lat": 40.7134185, "lon": -73.9158549 }, + { "lat": 40.7133838, "lon": -73.9158266 }, + { "lat": 40.7133610, "lon": -73.9158079 }, + { "lat": 40.7133377, "lon": -73.9157895 }, + { "lat": 40.7132803, "lon": -73.9157443 }, + { "lat": 40.7132027, "lon": -73.9156705 }, + { "lat": 40.7131543, "lon": -73.9155867 }, + { "lat": 40.7131227, "lon": -73.9152849 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825912775, + "bounds": { + "minlat": 40.7152652, + "minlon": -73.9126690, + "maxlat": 40.7165263, + "maxlon": -73.9111936 + }, + "nodes": [ + 2902486213, + 597676733, + 597676734, + 597676682, + 597676529, + 597676548 + ], + "geometry": [ + { "lat": 40.7152652, "lon": -73.9126690 }, + { "lat": 40.7153248, "lon": -73.9124274 }, + { "lat": 40.7157269, "lon": -73.9119834 }, + { "lat": 40.7162689, "lon": -73.9114311 }, + { "lat": 40.7164371, "lon": -73.9112877 }, + { "lat": 40.7165263, "lon": -73.9111936 } + ], + "tags": { + "highway": "residential", + "name": "Flushing Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 825912776, + "bounds": { + "minlat": 40.7131227, + "minlon": -73.9152849, + "maxlat": 40.7133351, + "maxlon": -73.9150701 + }, + "nodes": [ + 5482330031, + 5482330027 + ], + "geometry": [ + { "lat": 40.7133351, "lon": -73.9150701 }, + { "lat": 40.7131227, "lon": -73.9152849 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825915748, + "bounds": { + "minlat": 40.7185232, + "minlon": -73.9084075, + "maxlat": 40.7188318, + "maxlon": -73.9078690 + }, + "nodes": [ + 13008491479, + 2996303748, + 9820869301, + 2996303641, + 2996303759 + ], + "geometry": [ + { "lat": 40.7188318, "lon": -73.9078690 }, + { "lat": 40.7187313, "lon": -73.9080657 }, + { "lat": 40.7185930, "lon": -73.9082936 }, + { "lat": 40.7185720, "lon": -73.9083278 }, + { "lat": 40.7185232, "lon": -73.9084075 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Flushing Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 825927711, + "bounds": { + "minlat": 40.7080048, + "minlon": -73.9250125, + "maxlat": 40.7082514, + "maxlon": -73.9246155 + }, + "nodes": [ + 7283907120, + 9755788656, + 13716437693, + 13716437692, + 13716437691, + 13716437690 + ], + "geometry": [ + { "lat": 40.7081956, "lon": -73.9250125 }, + { "lat": 40.7081356, "lon": -73.9249933 }, + { "lat": 40.7080048, "lon": -73.9249541 }, + { "lat": 40.7080572, "lon": -73.9246155 }, + { "lat": 40.7081911, "lon": -73.9246532 }, + { "lat": 40.7082514, "lon": -73.9246716 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825932036, + "bounds": { + "minlat": 40.7150621, + "minlon": -73.9284149, + "maxlat": 40.7154253, + "maxlon": -73.9282489 + }, + "nodes": [ + 7711430781, + 9755788662, + 10840566516, + 5482302994 + ], + "geometry": [ + { "lat": 40.7154253, "lon": -73.9284149 }, + { "lat": 40.7151551, "lon": -73.9282914 }, + { "lat": 40.7151387, "lon": -73.9282839 }, + { "lat": 40.7150621, "lon": -73.9282489 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995322, + "bounds": { + "minlat": 40.7290996, + "minlon": -73.9295892, + "maxlat": 40.7293340, + "maxlon": -73.9295111 + }, + "nodes": [ + 7712008320, + 7712008321 + ], + "geometry": [ + { "lat": 40.7293340, "lon": -73.9295111 }, + { "lat": 40.7290996, "lon": -73.9295892 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995323, + "bounds": { + "minlat": 40.7286994, + "minlon": -73.9291027, + "maxlat": 40.7293196, + "maxlon": -73.9289539 + }, + "nodes": [ + 7712008322, + 11740134693, + 7712008323 + ], + "geometry": [ + { "lat": 40.7293196, "lon": -73.9289574 }, + { "lat": 40.7291890, "lon": -73.9289539 }, + { "lat": 40.7286994, "lon": -73.9291027 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995324, + "bounds": { + "minlat": 40.7285956, + "minlon": -73.9291027, + "maxlat": 40.7286994, + "maxlon": -73.9285928 + }, + "nodes": [ + 7712008323, + 7712008324 + ], + "geometry": [ + { "lat": 40.7286994, "lon": -73.9291027 }, + { "lat": 40.7285956, "lon": -73.9285928 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995326, + "bounds": { + "minlat": 40.7291627, + "minlon": -73.9307057, + "maxlat": 40.7293556, + "maxlon": -73.9299623 + }, + "nodes": [ + 7712008328, + 7712008329, + 11740134686, + 11740134687 + ], + "geometry": [ + { "lat": 40.7293556, "lon": -73.9299623 }, + { "lat": 40.7291627, "lon": -73.9300278 }, + { "lat": 40.7292616, "lon": -73.9306015 }, + { "lat": 40.7292970, "lon": -73.9307057 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995329, + "bounds": { + "minlat": 40.7284483, + "minlon": -73.9273366, + "maxlat": 40.7288887, + "maxlon": -73.9264096 + }, + "nodes": [ + 7712008338, + 11740106061, + 13399338476, + 7712008339, + 13399338477 + ], + "geometry": [ + { "lat": 40.7288887, "lon": -73.9264096 }, + { "lat": 40.7288159, "lon": -73.9264409 }, + { "lat": 40.7285936, "lon": -73.9265363 }, + { "lat": 40.7284483, "lon": -73.9265987 }, + { "lat": 40.7286124, "lon": -73.9273366 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825995330, + "bounds": { + "minlat": 40.7289270, + "minlon": -73.9260286, + "maxlat": 40.7290538, + "maxlon": -73.9255526 + }, + "nodes": [ + 6863638924, + 7712008340 + ], + "geometry": [ + { "lat": 40.7290538, "lon": -73.9260286 }, + { "lat": 40.7289270, "lon": -73.9255526 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995331, + "bounds": { + "minlat": 40.7290745, + "minlon": -73.9249733, + "maxlat": 40.7292257, + "maxlon": -73.9242810 + }, + "nodes": [ + 7712008341, + 8549558994, + 7712008342 + ], + "geometry": [ + { "lat": 40.7292257, "lon": -73.9249733 }, + { "lat": 40.7290959, "lon": -73.9243811 }, + { "lat": 40.7290745, "lon": -73.9242810 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995332, + "bounds": { + "minlat": 40.7288547, + "minlon": -73.9250497, + "maxlat": 40.7290093, + "maxlon": -73.9243647 + }, + "nodes": [ + 7712008343, + 8549558989, + 5482425984 + ], + "geometry": [ + { "lat": 40.7290093, "lon": -73.9250497 }, + { "lat": 40.7288748, "lon": -73.9244563 }, + { "lat": 40.7288547, "lon": -73.9243647 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995333, + "bounds": { + "minlat": 40.7290093, + "minlon": -73.9250497, + "maxlat": 40.7292257, + "maxlon": -73.9249733 + }, + "nodes": [ + 7712008341, + 5482425980, + 7712008343 + ], + "geometry": [ + { "lat": 40.7292257, "lon": -73.9249733 }, + { "lat": 40.7291236, "lon": -73.9250094 }, + { "lat": 40.7290093, "lon": -73.9250497 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995335, + "bounds": { + "minlat": 40.7284197, + "minlon": -73.9230297, + "maxlat": 40.7288522, + "maxlon": -73.9228586 + }, + "nodes": [ + 42833539, + 7712008348 + ], + "geometry": [ + { "lat": 40.7288522, "lon": -73.9228586 }, + { "lat": 40.7284197, "lon": -73.9230297 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995336, + "bounds": { + "minlat": 40.7284197, + "minlon": -73.9239242, + "maxlat": 40.7294164, + "maxlon": -73.9230297 + }, + "nodes": [ + 7712008348, + 7712008349, + 13716577250 + ], + "geometry": [ + { "lat": 40.7284197, "lon": -73.9230297 }, + { "lat": 40.7286160, "lon": -73.9239242 }, + { "lat": 40.7294164, "lon": -73.9236116 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995338, + "bounds": { + "minlat": 40.7278090, + "minlon": -73.9196614, + "maxlat": 40.7286237, + "maxlon": -73.9193550 + }, + "nodes": [ + 5482425970, + 5482425969 + ], + "geometry": [ + { "lat": 40.7286237, "lon": -73.9193550 }, + { "lat": 40.7278090, "lon": -73.9196614 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825995339, + "bounds": { + "minlat": 40.7264911, + "minlon": -73.9198996, + "maxlat": 40.7267876, + "maxlon": -73.9185125 + }, + "nodes": [ + 7712008354, + 5482634972, + 13506411300 + ], + "geometry": [ + { "lat": 40.7267876, "lon": -73.9198996 }, + { "lat": 40.7265920, "lon": -73.9189809 }, + { "lat": 40.7264911, "lon": -73.9185125 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995340, + "bounds": { + "minlat": 40.7256408, + "minlon": -73.9202241, + "maxlat": 40.7257834, + "maxlon": -73.9196032 + }, + "nodes": [ + 7712008356, + 7712008357 + ], + "geometry": [ + { "lat": 40.7257834, "lon": -73.9202241 }, + { "lat": 40.7256408, "lon": -73.9196032 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995341, + "bounds": { + "minlat": 40.7257834, + "minlon": -73.9209175, + "maxlat": 40.7258403, + "maxlon": -73.9202241 + }, + "nodes": [ + 7712008356, + 7712008358 + ], + "geometry": [ + { "lat": 40.7257834, "lon": -73.9202241 }, + { "lat": 40.7258403, "lon": -73.9209175 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995342, + "bounds": { + "minlat": 40.7254470, + "minlon": -73.9217302, + "maxlat": 40.7256300, + "maxlon": -73.9214767 + }, + "nodes": [ + 7712008359, + 7712008360 + ], + "geometry": [ + { "lat": 40.7256300, "lon": -73.9217302 }, + { "lat": 40.7254470, "lon": -73.9214767 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995343, + "bounds": { + "minlat": 40.7250689, + "minlon": -73.9214767, + "maxlat": 40.7254470, + "maxlon": -73.9198003 + }, + "nodes": [ + 7712008360, + 8670752320, + 3628898331 + ], + "geometry": [ + { "lat": 40.7254470, "lon": -73.9214767 }, + { "lat": 40.7251870, "lon": -73.9203240 }, + { "lat": 40.7250689, "lon": -73.9198003 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995344, + "bounds": { + "minlat": 40.7239052, + "minlon": -73.9205849, + "maxlat": 40.7244690, + "maxlon": -73.9203999 + }, + "nodes": [ + 7712008362, + 7712008375, + 7712008361 + ], + "geometry": [ + { "lat": 40.7239052, "lon": -73.9205849 }, + { "lat": 40.7243795, "lon": -73.9204290 }, + { "lat": 40.7244690, "lon": -73.9203999 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995345, + "bounds": { + "minlat": 40.7239428, + "minlon": -73.9207579, + "maxlat": 40.7245026, + "maxlon": -73.9205779 + }, + "nodes": [ + 7712008363, + 7712008364 + ], + "geometry": [ + { "lat": 40.7245026, "lon": -73.9205779 }, + { "lat": 40.7239428, "lon": -73.9207579 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995346, + "bounds": { + "minlat": 40.7239703, + "minlon": -73.9203904, + "maxlat": 40.7243463, + "maxlon": -73.9202724 + }, + "nodes": [ + 7712008365, + 7712008366 + ], + "geometry": [ + { "lat": 40.7243463, "lon": -73.9202724 }, + { "lat": 40.7239703, "lon": -73.9203904 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995347, + "bounds": { + "minlat": 40.7239052, + "minlon": -73.9207579, + "maxlat": 40.7239428, + "maxlon": -73.9205849 + }, + "nodes": [ + 7712008364, + 7712008362 + ], + "geometry": [ + { "lat": 40.7239428, "lon": -73.9207579 }, + { "lat": 40.7239052, "lon": -73.9205849 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995348, + "bounds": { + "minlat": 40.7239052, + "minlon": -73.9205849, + "maxlat": 40.7239703, + "maxlon": -73.9203904 + }, + "nodes": [ + 7712008362, + 7712008366 + ], + "geometry": [ + { "lat": 40.7239052, "lon": -73.9205849 }, + { "lat": 40.7239703, "lon": -73.9203904 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995350, + "bounds": { + "minlat": 40.7243463, + "minlon": -73.9204290, + "maxlat": 40.7243795, + "maxlon": -73.9202724 + }, + "nodes": [ + 7712008365, + 7712008375 + ], + "geometry": [ + { "lat": 40.7243463, "lon": -73.9202724 }, + { "lat": 40.7243795, "lon": -73.9204290 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995351, + "bounds": { + "minlat": 40.7243801, + "minlon": -73.9215782, + "maxlat": 40.7246490, + "maxlon": -73.9203999 + }, + "nodes": [ + 7712008361, + 7712008363, + 7712008377, + 8509164454, + 8509164449, + 8509164450, + 8509164451, + 8509164452, + 8509164453, + 8509164454 + ], + "geometry": [ + { "lat": 40.7244690, "lon": -73.9203999 }, + { "lat": 40.7245026, "lon": -73.9205779 }, + { "lat": 40.7245364, "lon": -73.9207565 }, + { "lat": 40.7245618, "lon": -73.9209134 }, + { "lat": 40.7246490, "lon": -73.9214521 }, + { "lat": 40.7246205, "lon": -73.9215246 }, + { "lat": 40.7244765, "lon": -73.9215782 }, + { "lat": 40.7244403, "lon": -73.9215623 }, + { "lat": 40.7243801, "lon": -73.9212070 }, + { "lat": 40.7245618, "lon": -73.9209134 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995352, + "bounds": { + "minlat": 40.7247335, + "minlon": -73.9201195, + "maxlat": 40.7249327, + "maxlon": -73.9200525 + }, + "nodes": [ + 7712008378, + 7712008379 + ], + "geometry": [ + { "lat": 40.7249327, "lon": -73.9200525 }, + { "lat": 40.7247335, "lon": -73.9201195 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995353, + "bounds": { + "minlat": 40.7245953, + "minlon": -73.9203636, + "maxlat": 40.7247335, + "maxlon": -73.9201195 + }, + "nodes": [ + 7712008379, + 7712008380 + ], + "geometry": [ + { "lat": 40.7247335, "lon": -73.9201195 }, + { "lat": 40.7245953, "lon": -73.9203636 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825995355, + "bounds": { + "minlat": 40.7280907, + "minlon": -73.9243270, + "maxlat": 40.7284126, + "maxlon": -73.9227937 + }, + "nodes": [ + 7712036585, + 7712036586 + ], + "geometry": [ + { "lat": 40.7284126, "lon": -73.9243270 }, + { "lat": 40.7280907, "lon": -73.9227937 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995356, + "bounds": { + "minlat": 40.7280907, + "minlon": -73.9227937, + "maxlat": 40.7286107, + "maxlon": -73.9226047 + }, + "nodes": [ + 7712036587, + 7712036586 + ], + "geometry": [ + { "lat": 40.7286107, "lon": -73.9226047 }, + { "lat": 40.7280907, "lon": -73.9227937 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995357, + "bounds": { + "minlat": 40.7280785, + "minlon": -73.9226047, + "maxlat": 40.7286107, + "maxlon": -73.9200998 + }, + "nodes": [ + 7712036587, + 7712036588 + ], + "geometry": [ + { "lat": 40.7286107, "lon": -73.9226047 }, + { "lat": 40.7280785, "lon": -73.9200998 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995358, + "bounds": { + "minlat": 40.7273909, + "minlon": -73.9203504, + "maxlat": 40.7280785, + "maxlon": -73.9200998 + }, + "nodes": [ + 7712036588, + 5482634998, + 7712036589 + ], + "geometry": [ + { "lat": 40.7280785, "lon": -73.9200998 }, + { "lat": 40.7275976, "lon": -73.9202750 }, + { "lat": 40.7273909, "lon": -73.9203504 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995359, + "bounds": { + "minlat": 40.7278388, + "minlon": -73.9245267, + "maxlat": 40.7284126, + "maxlon": -73.9243270 + }, + "nodes": [ + 7712036585, + 7712036592, + 7712036590 + ], + "geometry": [ + { "lat": 40.7284126, "lon": -73.9243270 }, + { "lat": 40.7282310, "lon": -73.9243902 }, + { "lat": 40.7278388, "lon": -73.9245267 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995360, + "bounds": { + "minlat": 40.7282532, + "minlon": -73.9245052, + "maxlat": 40.7284721, + "maxlon": -73.9245051 + }, + "nodes": [ + 42876193, + 7712036591 + ], + "geometry": [ + { "lat": 40.7284721, "lon": -73.9245051 }, + { "lat": 40.7282532, "lon": -73.9245052 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995361, + "bounds": { + "minlat": 40.7282310, + "minlon": -73.9245052, + "maxlat": 40.7282532, + "maxlon": -73.9243902 + }, + "nodes": [ + 7712036591, + 7712036592 + ], + "geometry": [ + { "lat": 40.7282532, "lon": -73.9245052 }, + { "lat": 40.7282310, "lon": -73.9243902 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995362, + "bounds": { + "minlat": 40.7277138, + "minlon": -73.9245267, + "maxlat": 40.7278388, + "maxlon": -73.9240281 + }, + "nodes": [ + 7712036590, + 7712036593 + ], + "geometry": [ + { "lat": 40.7278388, "lon": -73.9245267 }, + { "lat": 40.7277138, "lon": -73.9240281 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995363, + "bounds": { + "minlat": 40.7264320, + "minlon": -73.9206962, + "maxlat": 40.7273370, + "maxlon": -73.9203424 + }, + "nodes": [ + 7712036594, + 7712036595 + ], + "geometry": [ + { "lat": 40.7273370, "lon": -73.9203424 }, + { "lat": 40.7264320, "lon": -73.9206962 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995364, + "bounds": { + "minlat": 40.7264320, + "minlon": -73.9231100, + "maxlat": 40.7269714, + "maxlon": -73.9206962 + }, + "nodes": [ + 7712036595, + 7712036600, + 7712036602, + 7712036604, + 7712036596 + ], + "geometry": [ + { "lat": 40.7264320, "lon": -73.9206962 }, + { "lat": 40.7265520, "lon": -73.9212329 }, + { "lat": 40.7267267, "lon": -73.9220150 }, + { "lat": 40.7268871, "lon": -73.9227328 }, + { "lat": 40.7269714, "lon": -73.9231100 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995365, + "bounds": { + "minlat": 40.7269714, + "minlon": -73.9232467, + "maxlat": 40.7273929, + "maxlon": -73.9231100 + }, + "nodes": [ + 7712036596, + 7712036597 + ], + "geometry": [ + { "lat": 40.7269714, "lon": -73.9231100 }, + { "lat": 40.7273929, "lon": -73.9232467 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995366, + "bounds": { + "minlat": 40.7273929, + "minlon": -73.9239075, + "maxlat": 40.7275341, + "maxlon": -73.9232467 + }, + "nodes": [ + 7712036597, + 7712036598 + ], + "geometry": [ + { "lat": 40.7273929, "lon": -73.9232467 }, + { "lat": 40.7275341, "lon": -73.9239075 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995367, + "bounds": { + "minlat": 40.7275341, + "minlon": -73.9240281, + "maxlat": 40.7277138, + "maxlon": -73.9239075 + }, + "nodes": [ + 7712036598, + 7712036593 + ], + "geometry": [ + { "lat": 40.7275341, "lon": -73.9239075 }, + { "lat": 40.7277138, "lon": -73.9240281 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995368, + "bounds": { + "minlat": 40.7265520, + "minlon": -73.9212329, + "maxlat": 40.7271085, + "maxlon": -73.9210299 + }, + "nodes": [ + 7712036599, + 7712036600 + ], + "geometry": [ + { "lat": 40.7271085, "lon": -73.9210299 }, + { "lat": 40.7265520, "lon": -73.9212329 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995369, + "bounds": { + "minlat": 40.7267267, + "minlon": -73.9220150, + "maxlat": 40.7273055, + "maxlon": -73.9218073 + }, + "nodes": [ + 7712036601, + 7712036602 + ], + "geometry": [ + { "lat": 40.7273055, "lon": -73.9218073 }, + { "lat": 40.7267267, "lon": -73.9220150 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825995370, + "bounds": { + "minlat": 40.7268871, + "minlon": -73.9227328, + "maxlat": 40.7274548, + "maxlon": -73.9225257 + }, + "nodes": [ + 7712036603, + 7712036604 + ], + "geometry": [ + { "lat": 40.7274548, "lon": -73.9225257 }, + { "lat": 40.7268871, "lon": -73.9227328 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825996941, + "bounds": { + "minlat": 40.7276450, + "minlon": -73.9189057, + "maxlat": 40.7284661, + "maxlon": -73.9186107 + }, + "nodes": [ + 5482425972, + 5482425971 + ], + "geometry": [ + { "lat": 40.7276450, "lon": -73.9189057 }, + { "lat": 40.7284661, "lon": -73.9186107 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 825996942, + "bounds": { + "minlat": 40.7261754, + "minlon": -73.9245638, + "maxlat": 40.7265249, + "maxlon": -73.9243211 + }, + "nodes": [ + 6420466822, + 6420466824 + ], + "geometry": [ + { "lat": 40.7261754, "lon": -73.9245638 }, + { "lat": 40.7265249, "lon": -73.9243211 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825996943, + "bounds": { + "minlat": 40.7258074, + "minlon": -73.9243211, + "maxlat": 40.7265249, + "maxlon": -73.9225736 + }, + "nodes": [ + 6420466825, + 6420466824 + ], + "geometry": [ + { "lat": 40.7258074, "lon": -73.9225736 }, + { "lat": 40.7265249, "lon": -73.9243211 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825996944, + "bounds": { + "minlat": 40.7253852, + "minlon": -73.9227162, + "maxlat": 40.7258074, + "maxlon": -73.9225736 + }, + "nodes": [ + 6420466823, + 6420466825 + ], + "geometry": [ + { "lat": 40.7253852, "lon": -73.9227162 }, + { "lat": 40.7258074, "lon": -73.9225736 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825996945, + "bounds": { + "minlat": 40.7244695, + "minlon": -73.9235317, + "maxlat": 40.7249640, + "maxlon": -73.9229210 + }, + "nodes": [ + 6420466827, + 13366310652, + 13366310653, + 13366310651, + 13366310654 + ], + "geometry": [ + { "lat": 40.7244964, "lon": -73.9235317 }, + { "lat": 40.7244695, "lon": -73.9233922 }, + { "lat": 40.7244800, "lon": -73.9232806 }, + { "lat": 40.7245205, "lon": -73.9232225 }, + { "lat": 40.7249640, "lon": -73.9229210 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 825996947, + "bounds": { + "minlat": 40.7244964, + "minlon": -73.9254852, + "maxlat": 40.7253257, + "maxlon": -73.9235317 + }, + "nodes": [ + 6420466830, + 6420466827 + ], + "geometry": [ + { "lat": 40.7253257, "lon": -73.9254852 }, + { "lat": 40.7244964, "lon": -73.9235317 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825996950, + "bounds": { + "minlat": 40.7253704, + "minlon": -73.9259864, + "maxlat": 40.7270415, + "maxlon": -73.9246363 + }, + "nodes": [ + 7712051785, + 13366310658, + 13366310657, + 13366310659, + 13366310656, + 13366310655, + 7712051785, + 7712051786 + ], + "geometry": [ + { "lat": 40.7263296, "lon": -73.9250475 }, + { "lat": 40.7253704, "lon": -73.9257362 }, + { "lat": 40.7255913, "lon": -73.9259864 }, + { "lat": 40.7264584, "lon": -73.9253560 }, + { "lat": 40.7270415, "lon": -73.9249320 }, + { "lat": 40.7269157, "lon": -73.9246363 }, + { "lat": 40.7263296, "lon": -73.9250475 }, + { "lat": 40.7262395, "lon": -73.9248359 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825996951, + "bounds": { + "minlat": 40.7272410, + "minlon": -73.9274676, + "maxlat": 40.7277616, + "maxlon": -73.9271149 + }, + "nodes": [ + 7712051787, + 5482635014, + 5482635011, + 5482635008, + 7712051788 + ], + "geometry": [ + { "lat": 40.7277616, "lon": -73.9271149 }, + { "lat": 40.7276593, "lon": -73.9271853 }, + { "lat": 40.7275036, "lon": -73.9272904 }, + { "lat": 40.7273692, "lon": -73.9273811 }, + { "lat": 40.7272410, "lon": -73.9274676 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825996952, + "bounds": { + "minlat": 40.7273980, + "minlon": -73.9276020, + "maxlat": 40.7277852, + "maxlon": -73.9273298 + }, + "nodes": [ + 7712051789, + 7712051790 + ], + "geometry": [ + { "lat": 40.7277852, "lon": -73.9273298 }, + { "lat": 40.7273980, "lon": -73.9276020 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825996953, + "bounds": { + "minlat": 40.7274955, + "minlon": -73.9268859, + "maxlat": 40.7277364, + "maxlon": -73.9262891 + }, + "nodes": [ + 7712051791, + 7712051792 + ], + "geometry": [ + { "lat": 40.7277364, "lon": -73.9268859 }, + { "lat": 40.7274955, "lon": -73.9262891 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825996954, + "bounds": { + "minlat": 40.7274955, + "minlon": -73.9262891, + "maxlat": 40.7276932, + "maxlon": -73.9261599 + }, + "nodes": [ + 7712051793, + 10087637189, + 8549558982, + 7712051792 + ], + "geometry": [ + { "lat": 40.7276932, "lon": -73.9261599 }, + { "lat": 40.7276248, "lon": -73.9262033 }, + { "lat": 40.7276027, "lon": -73.9262173 }, + { "lat": 40.7274955, "lon": -73.9262891 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825996956, + "bounds": { + "minlat": 40.7269173, + "minlon": -73.9276020, + "maxlat": 40.7273980, + "maxlon": -73.9271903 + }, + "nodes": [ + 7712051790, + 7712051788, + 5482635005, + 7712051800 + ], + "geometry": [ + { "lat": 40.7273980, "lon": -73.9276020 }, + { "lat": 40.7272410, "lon": -73.9274676 }, + { "lat": 40.7272301, "lon": -73.9274582 }, + { "lat": 40.7269173, "lon": -73.9271903 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825996957, + "bounds": { + "minlat": 40.7265422, + "minlon": -73.9269972, + "maxlat": 40.7267758, + "maxlon": -73.9268410 + }, + "nodes": [ + 7712051801, + 7712051802 + ], + "geometry": [ + { "lat": 40.7267758, "lon": -73.9268410 }, + { "lat": 40.7265422, "lon": -73.9269972 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825996958, + "bounds": { + "minlat": 40.7267758, + "minlon": -73.9271903, + "maxlat": 40.7269173, + "maxlon": -73.9268410 + }, + "nodes": [ + 7712051800, + 7712051801 + ], + "geometry": [ + { "lat": 40.7269173, "lon": -73.9271903 }, + { "lat": 40.7267758, "lon": -73.9268410 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825996959, + "bounds": { + "minlat": 40.7277364, + "minlon": -73.9273298, + "maxlat": 40.7277852, + "maxlon": -73.9268859 + }, + "nodes": [ + 7712051791, + 7712051787, + 7712051789 + ], + "geometry": [ + { "lat": 40.7277364, "lon": -73.9268859 }, + { "lat": 40.7277616, "lon": -73.9271149 }, + { "lat": 40.7277852, "lon": -73.9273298 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825996961, + "bounds": { + "minlat": 40.7259068, + "minlon": -73.9265305, + "maxlat": 40.7262068, + "maxlon": -73.9260687 + }, + "nodes": [ + 7712051815, + 4695098042 + ], + "geometry": [ + { "lat": 40.7262068, "lon": -73.9265305 }, + { "lat": 40.7259068, "lon": -73.9260687 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825996962, + "bounds": { + "minlat": 40.7262068, + "minlon": -73.9269972, + "maxlat": 40.7265422, + "maxlon": -73.9265305 + }, + "nodes": [ + 7712051815, + 7712051802 + ], + "geometry": [ + { "lat": 40.7262068, "lon": -73.9265305 }, + { "lat": 40.7265422, "lon": -73.9269972 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 825996963, + "bounds": { + "minlat": 40.7265422, + "minlon": -73.9278045, + "maxlat": 40.7273858, + "maxlon": -73.9269972 + }, + "nodes": [ + 7712051802, + 7712051816 + ], + "geometry": [ + { "lat": 40.7265422, "lon": -73.9269972 }, + { "lat": 40.7273858, "lon": -73.9278045 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825996964, + "bounds": { + "minlat": 40.7273858, + "minlon": -73.9278045, + "maxlat": 40.7279000, + "maxlon": -73.9274304 + }, + "nodes": [ + 7712051816, + 7712051817 + ], + "geometry": [ + { "lat": 40.7273858, "lon": -73.9278045 }, + { "lat": 40.7279000, "lon": -73.9274304 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825996965, + "bounds": { + "minlat": 40.7278173, + "minlon": -73.9274304, + "maxlat": 40.7279000, + "maxlon": -73.9266137 + }, + "nodes": [ + 7712051817, + 42900574 + ], + "geometry": [ + { "lat": 40.7279000, "lon": -73.9274304 }, + { "lat": 40.7278173, "lon": -73.9266137 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 825998246, + "bounds": { + "minlat": 40.7313483, + "minlon": -73.9203181, + "maxlat": 40.7318242, + "maxlon": -73.9201531 + }, + "nodes": [ + 7397278512, + 13247290271, + 7712061134 + ], + "geometry": [ + { "lat": 40.7313483, "lon": -73.9203181 }, + { "lat": 40.7314110, "lon": -73.9202980 }, + { "lat": 40.7318242, "lon": -73.9201531 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825998247, + "bounds": { + "minlat": 40.7318242, + "minlon": -73.9201531, + "maxlat": 40.7319690, + "maxlon": -73.9199764 + }, + "nodes": [ + 7712061134, + 7712061135 + ], + "geometry": [ + { "lat": 40.7318242, "lon": -73.9201531 }, + { "lat": 40.7319690, "lon": -73.9199764 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825998248, + "bounds": { + "minlat": 40.7224424, + "minlon": -73.9186898, + "maxlat": 40.7233510, + "maxlon": -73.9183665 + }, + "nodes": [ + 7712061136, + 5482425948 + ], + "geometry": [ + { "lat": 40.7233510, "lon": -73.9183665 }, + { "lat": 40.7224424, "lon": -73.9186898 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 825998249, + "bounds": { + "minlat": 40.7222753, + "minlon": -73.9163019, + "maxlat": 40.7229989, + "maxlon": -73.9159079 + }, + "nodes": [ + 7712061137, + 5481972392, + 5481972390, + 5481972388, + 7712061138, + 5481972396 + ], + "geometry": [ + { "lat": 40.7229989, "lon": -73.9163019 }, + { "lat": 40.7229125, "lon": -73.9162549 }, + { "lat": 40.7227422, "lon": -73.9161622 }, + { "lat": 40.7226063, "lon": -73.9160882 }, + { "lat": 40.7224481, "lon": -73.9160021 }, + { "lat": 40.7222753, "lon": -73.9159079 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826000486, + "bounds": { + "minlat": 40.7177494, + "minlon": -73.9181049, + "maxlat": 40.7199901, + "maxlon": -73.9172123 + }, + "nodes": [ + 7712061251, + 6411284753, + 2825689936, + 11001678388, + 42871287 + ], + "geometry": [ + { "lat": 40.7199901, "lon": -73.9172123 }, + { "lat": 40.7191689, "lon": -73.9175395 }, + { "lat": 40.7179309, "lon": -73.9180326 }, + { "lat": 40.7178619, "lon": -73.9180601 }, + { "lat": 40.7177494, "lon": -73.9181049 } + ], + "tags": { + "highway": "residential", + "name": "Page Place", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Page", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "11378", + "tiger:zip_left_1": "11378", + "tiger:zip_right": "11378", + "tiger:zip_right_1": "11378" + } +}, +{ + "type": "way", + "id": 826000487, + "bounds": { + "minlat": 40.7194865, + "minlon": -73.9189392, + "maxlat": 40.7201990, + "maxlon": -73.9186817 + }, + "nodes": [ + 6411284752, + 6411284751 + ], + "geometry": [ + { "lat": 40.7194865, "lon": -73.9189392 }, + { "lat": 40.7201990, "lon": -73.9186817 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826000488, + "bounds": { + "minlat": 40.7200547, + "minlon": -73.9183565, + "maxlat": 40.7202210, + "maxlon": -73.9176156 + }, + "nodes": [ + 5482677964, + 5482677963 + ], + "geometry": [ + { "lat": 40.7200547, "lon": -73.9176156 }, + { "lat": 40.7202210, "lon": -73.9183565 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826000489, + "bounds": { + "minlat": 40.7218452, + "minlon": -73.9171042, + "maxlat": 40.7218980, + "maxlon": -73.9168628 + }, + "nodes": [ + 7712061253, + 7712061254 + ], + "geometry": [ + { "lat": 40.7218980, "lon": -73.9171042 }, + { "lat": 40.7218452, "lon": -73.9168628 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826000490, + "bounds": { + "minlat": 40.7215050, + "minlon": -73.9169352, + "maxlat": 40.7218452, + "maxlon": -73.9168628 + }, + "nodes": [ + 7712061254, + 7712061256 + ], + "geometry": [ + { "lat": 40.7218452, "lon": -73.9168628 }, + { "lat": 40.7215050, "lon": -73.9169352 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826000491, + "bounds": { + "minlat": 40.7215647, + "minlon": -73.9172155, + "maxlat": 40.7218980, + "maxlon": -73.9171042 + }, + "nodes": [ + 7712061253, + 7712061255 + ], + "geometry": [ + { "lat": 40.7218980, "lon": -73.9171042 }, + { "lat": 40.7215647, "lon": -73.9172155 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826000492, + "bounds": { + "minlat": 40.7215050, + "minlon": -73.9172155, + "maxlat": 40.7215647, + "maxlon": -73.9169352 + }, + "nodes": [ + 7712061255, + 7712061257, + 7712061256 + ], + "geometry": [ + { "lat": 40.7215647, "lon": -73.9172155 }, + { "lat": 40.7215372, "lon": -73.9171084 }, + { "lat": 40.7215050, "lon": -73.9169352 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826000493, + "bounds": { + "minlat": 40.7200547, + "minlon": -73.9176156, + "maxlat": 40.7210000, + "maxlon": -73.9172897 + }, + "nodes": [ + 5482677964, + 5482677582 + ], + "geometry": [ + { "lat": 40.7200547, "lon": -73.9176156 }, + { "lat": 40.7210000, "lon": -73.9172897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826000494, + "bounds": { + "minlat": 40.7210000, + "minlon": -73.9172897, + "maxlat": 40.7215372, + "maxlon": -73.9171084 + }, + "nodes": [ + 7712061257, + 5482677582 + ], + "geometry": [ + { "lat": 40.7215372, "lon": -73.9171084 }, + { "lat": 40.7210000, "lon": -73.9172897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826000495, + "bounds": { + "minlat": 40.7204611, + "minlon": -73.9210273, + "maxlat": 40.7207243, + "maxlon": -73.9198102 + }, + "nodes": [ + 7712061258, + 7712061264, + 5827997695, + 7712061259 + ], + "geometry": [ + { "lat": 40.7207243, "lon": -73.9210273 }, + { "lat": 40.7207013, "lon": -73.9209207 }, + { "lat": 40.7206930, "lon": -73.9208822 }, + { "lat": 40.7204611, "lon": -73.9198102 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826000496, + "bounds": { + "minlat": 40.7205922, + "minlon": -73.9222192, + "maxlat": 40.7206467, + "maxlon": -73.9219829 + }, + "nodes": [ + 7712061260, + 7712061261 + ], + "geometry": [ + { "lat": 40.7206467, "lon": -73.9222192 }, + { "lat": 40.7205922, "lon": -73.9219829 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826000497, + "bounds": { + "minlat": 40.7203015, + "minlon": -73.9220881, + "maxlat": 40.7207203, + "maxlon": -73.9219365 + }, + "nodes": [ + 7712061262, + 7712061261, + 7712061263 + ], + "geometry": [ + { "lat": 40.7207203, "lon": -73.9219365 }, + { "lat": 40.7205922, "lon": -73.9219829 }, + { "lat": 40.7203015, "lon": -73.9220881 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826000502, + "bounds": { + "minlat": 40.7218342, + "minlon": -73.9225452, + "maxlat": 40.7220153, + "maxlon": -73.9217595 + }, + "nodes": [ + 7712061274, + 7712061275 + ], + "geometry": [ + { "lat": 40.7220153, "lon": -73.9225452 }, + { "lat": 40.7218342, "lon": -73.9217595 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 826001549, + "bounds": { + "minlat": 40.7149521, + "minlon": -73.9197742, + "maxlat": 40.7149786, + "maxlon": -73.9192163 + }, + "nodes": [ + 7712065392, + 7712065393 + ], + "geometry": [ + { "lat": 40.7149786, "lon": -73.9197742 }, + { "lat": 40.7149521, "lon": -73.9192163 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826001550, + "bounds": { + "minlat": 40.7149786, + "minlon": -73.9201735, + "maxlat": 40.7151365, + "maxlon": -73.9197742 + }, + "nodes": [ + 7712065392, + 7722357208, + 5482677932, + 5482677922, + 7712065394 + ], + "geometry": [ + { "lat": 40.7149786, "lon": -73.9197742 }, + { "lat": 40.7149889, "lon": -73.9198001 }, + { "lat": 40.7150030, "lon": -73.9198359 }, + { "lat": 40.7150639, "lon": -73.9199900 }, + { "lat": 40.7151365, "lon": -73.9201735 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826001551, + "bounds": { + "minlat": 40.7141875, + "minlon": -73.9208294, + "maxlat": 40.7151365, + "maxlon": -73.9201735 + }, + "nodes": [ + 7712065394, + 7706126108, + 7706126103 + ], + "geometry": [ + { "lat": 40.7151365, "lon": -73.9201735 }, + { "lat": 40.7146670, "lon": -73.9204923 }, + { "lat": 40.7141875, "lon": -73.9208294 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826001552, + "bounds": { + "minlat": 40.7155529, + "minlon": -73.9217200, + "maxlat": 40.7157618, + "maxlon": -73.9205588 + }, + "nodes": [ + 7712065395, + 7712065396 + ], + "geometry": [ + { "lat": 40.7157618, "lon": -73.9217200 }, + { "lat": 40.7155529, "lon": -73.9205588 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826003969, + "bounds": { + "minlat": 40.7144986, + "minlon": -73.9575340, + "maxlat": 40.7146704, + "maxlon": -73.9569334 + }, + "nodes": [ + 42526508, + 42473959, + 9785615241, + 9785615290, + 42484186 + ], + "geometry": [ + { "lat": 40.7146704, "lon": -73.9569334 }, + { "lat": 40.7146464, "lon": -73.9570476 }, + { "lat": 40.7146261, "lon": -73.9571145 }, + { "lat": 40.7145520, "lon": -73.9573583 }, + { "lat": 40.7144986, "lon": -73.9575340 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Roebling Street", + "name:etymology:wikidata": "Q77237", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Roebling", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 826003970, + "bounds": { + "minlat": 40.7142594, + "minlon": -73.9622061, + "maxlat": 40.7178711, + "maxlon": -73.9565569 + }, + "nodes": [ + 6530806540, + 7923125557, + 7923125558, + 9785615239, + 42473959, + 9785615240, + 9785615227, + 42473953, + 9785615226, + 9795044633, + 42473952, + 9795044557, + 9789424763, + 42473951, + 9789424766, + 8468038706, + 9795044551, + 42473950 + ], + "geometry": [ + { "lat": 40.7142594, "lon": -73.9565925 }, + { "lat": 40.7143059, "lon": -73.9565704 }, + { "lat": 40.7143358, "lon": -73.9565569 }, + { "lat": 40.7145782, "lon": -73.9569398 }, + { "lat": 40.7146464, "lon": -73.9570476 }, + { "lat": 40.7147204, "lon": -73.9571677 }, + { "lat": 40.7153301, "lon": -73.9581683 }, + { "lat": 40.7153744, "lon": -73.9582409 }, + { "lat": 40.7154135, "lon": -73.9583016 }, + { "lat": 40.7161433, "lon": -73.9594414 }, + { "lat": 40.7161791, "lon": -73.9595041 }, + { "lat": 40.7162197, "lon": -73.9595687 }, + { "lat": 40.7169449, "lon": -73.9607143 }, + { "lat": 40.7169851, "lon": -73.9607779 }, + { "lat": 40.7170343, "lon": -73.9608577 }, + { "lat": 40.7178007, "lon": -73.9620999 }, + { "lat": 40.7178327, "lon": -73.9621483 }, + { "lat": 40.7178711, "lon": -73.9622061 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "North 4th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 826004903, + "bounds": { + "minlat": 40.7139621, + "minlon": -73.9245596, + "maxlat": 40.7140364, + "maxlon": -73.9245207 + }, + "nodes": [ + 42474031, + 5330321649 + ], + "geometry": [ + { "lat": 40.7139621, "lon": -73.9245207 }, + { "lat": 40.7140364, "lon": -73.9245596 } + ], + "tags": { + "highway": "residential", + "name": "Scott Avenue" + } +}, +{ + "type": "way", + "id": 826004904, + "bounds": { + "minlat": 40.7139621, + "minlon": -73.9245207, + "maxlat": 40.7140101, + "maxlon": -73.9239340 + }, + "nodes": [ + 42474031, + 42477655 + ], + "geometry": [ + { "lat": 40.7139621, "lon": -73.9245207 }, + { "lat": 40.7140101, "lon": -73.9239340 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Metropolitan Avenue", + "oneway": "yes", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 826004905, + "bounds": { + "minlat": 40.7141127, + "minlon": -73.9275097, + "maxlat": 40.7142259, + "maxlon": -73.9263646 + }, + "nodes": [ + 1275778479, + 5423609568, + 5515218191, + 8676803844, + 4205919102 + ], + "geometry": [ + { "lat": 40.7141127, "lon": -73.9263646 }, + { "lat": 40.7141224, "lon": -73.9264897 }, + { "lat": 40.7141583, "lon": -73.9268664 }, + { "lat": 40.7142223, "lon": -73.9274700 }, + { "lat": 40.7142259, "lon": -73.9275097 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 826005615, + "bounds": { + "minlat": 40.7141759, + "minlon": -73.9236794, + "maxlat": 40.7143436, + "maxlon": -73.9236244 + }, + "nodes": [ + 5482675496, + 5482675494 + ], + "geometry": [ + { "lat": 40.7143436, "lon": -73.9236794 }, + { "lat": 40.7141759, "lon": -73.9236244 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826005616, + "bounds": { + "minlat": 40.7141116, + "minlon": -73.9236244, + "maxlat": 40.7141759, + "maxlon": -73.9225218 + }, + "nodes": [ + 5482675494, + 5482675499, + 7712120183 + ], + "geometry": [ + { "lat": 40.7141759, "lon": -73.9236244 }, + { "lat": 40.7141408, "lon": -73.9230230 }, + { "lat": 40.7141116, "lon": -73.9225218 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826005617, + "bounds": { + "minlat": 40.7141116, + "minlon": -73.9225218, + "maxlat": 40.7142796, + "maxlon": -73.9225086 + }, + "nodes": [ + 7712120183, + 5482675497 + ], + "geometry": [ + { "lat": 40.7141116, "lon": -73.9225218 }, + { "lat": 40.7142796, "lon": -73.9225086 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826005618, + "bounds": { + "minlat": 40.7135541, + "minlon": -73.9129085, + "maxlat": 40.7147282, + "maxlon": -73.9117347 + }, + "nodes": [ + 7712150385, + 42847253, + 9589021583, + 9759984076, + 42847258, + 9759984055, + 9696553938, + 9696553954, + 9759984052, + 42847263 + ], + "geometry": [ + { "lat": 40.7135541, "lon": -73.9129085 }, + { "lat": 40.7136067, "lon": -73.9128559 }, + { "lat": 40.7140988, "lon": -73.9123640 }, + { "lat": 40.7141351, "lon": -73.9123280 }, + { "lat": 40.7141774, "lon": -73.9122854 }, + { "lat": 40.7142270, "lon": -73.9122357 }, + { "lat": 40.7142583, "lon": -73.9122045 }, + { "lat": 40.7146340, "lon": -73.9118288 }, + { "lat": 40.7146758, "lon": -73.9117869 }, + { "lat": 40.7147282, "lon": -73.9117347 } + ], + "tags": { + "highway": "residential", + "name": "Nurge Avenue", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 826005619, + "bounds": { + "minlat": 40.7131843, + "minlon": -73.9107224, + "maxlat": 40.7132894, + "maxlon": -73.9107142 + }, + "nodes": [ + 7712150386, + 9747646516, + 5515218205 + ], + "geometry": [ + { "lat": 40.7131843, "lon": -73.9107224 }, + { "lat": 40.7132596, "lon": -73.9107180 }, + { "lat": 40.7132894, "lon": -73.9107142 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 826026509, + "bounds": { + "minlat": 40.8574204, + "minlon": -73.9289184, + "maxlat": 40.8576074, + "maxlon": -73.9287830 + }, + "nodes": [ + 1762373649, + 9561253096, + 7712302722, + 7701213201 + ], + "geometry": [ + { "lat": 40.8574204, "lon": -73.9289184 }, + { "lat": 40.8574861, "lon": -73.9288848 }, + { "lat": 40.8575374, "lon": -73.9288585 }, + { "lat": 40.8576074, "lon": -73.9287830 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 826052213, + "bounds": { + "minlat": 40.7050766, + "minlon": -73.9366723, + "maxlat": 40.7053802, + "maxlon": -73.9365582 + }, + "nodes": [ + 7712601178, + 9744012801, + 7712601180, + 7712601179 + ], + "geometry": [ + { "lat": 40.7050766, "lon": -73.9365582 }, + { "lat": 40.7051360, "lon": -73.9365770 }, + { "lat": 40.7051765, "lon": -73.9365898 }, + { "lat": 40.7053802, "lon": -73.9366723 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 826081976, + "bounds": { + "minlat": 40.8273203, + "minlon": -73.9368375, + "maxlat": 40.8275166, + "maxlon": -73.9365554 + }, + "nodes": [ + 12994121392, + 11218600931, + 7712934593, + 7712934594 + ], + "geometry": [ + { "lat": 40.8273203, "lon": -73.9365554 }, + { "lat": 40.8273669, "lon": -73.9366093 }, + { "lat": 40.8273952, "lon": -73.9366362 }, + { "lat": 40.8275166, "lon": -73.9368375 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 826104280, + "bounds": { + "minlat": 40.8779996, + "minlon": -74.0141970, + "maxlat": 40.8783920, + "maxlon": -74.0139935 + }, + "nodes": [ + 103197530, + 7713181473 + ], + "geometry": [ + { "lat": 40.8783920, "lon": -74.0139935 }, + { "lat": 40.8779996, "lon": -74.0141970 } + ], + "tags": { + "highway": "service", + "name": "Albin Street" + } +}, +{ + "type": "way", + "id": 826111488, + "bounds": { + "minlat": 40.8328028, + "minlon": -73.9981627, + "maxlat": 40.8336207, + "maxlon": -73.9974299 + }, + "nodes": [ + 7713263986, + 7713263987, + 7713263988, + 7713263989, + 7713263990, + 7713263991, + 7713263992, + 7713263993, + 7713263994 + ], + "geometry": [ + { "lat": 40.8328028, "lon": -73.9981627 }, + { "lat": 40.8329935, "lon": -73.9979647 }, + { "lat": 40.8330191, "lon": -73.9979507 }, + { "lat": 40.8330509, "lon": -73.9979507 }, + { "lat": 40.8330765, "lon": -73.9979507 }, + { "lat": 40.8331092, "lon": -73.9979461 }, + { "lat": 40.8331357, "lon": -73.9979297 }, + { "lat": 40.8335094, "lon": -73.9975398 }, + { "lat": 40.8336207, "lon": -73.9974299 } + ], + "tags": { + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 826297458, + "bounds": { + "minlat": 40.7075260, + "minlon": -73.9570400, + "maxlat": 40.7078446, + "maxlon": -73.9568324 + }, + "nodes": [ + 42520704, + 6245642039, + 11055051873 + ], + "geometry": [ + { "lat": 40.7075260, "lon": -73.9570400 }, + { "lat": 40.7078273, "lon": -73.9568457 }, + { "lat": 40.7078446, "lon": -73.9568324 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 826299428, + "bounds": { + "minlat": 40.7035525, + "minlon": -73.9634827, + "maxlat": 40.7037322, + "maxlon": -73.9632877 + }, + "nodes": [ + 7714840242, + 9776829313, + 7714840243 + ], + "geometry": [ + { "lat": 40.7037322, "lon": -73.9634827 }, + { "lat": 40.7036723, "lon": -73.9634177 }, + { "lat": 40.7035525, "lon": -73.9632877 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826539002, + "bounds": { + "minlat": 40.7004779, + "minlon": -73.9122380, + "maxlat": 40.7006799, + "maxlon": -73.9118724 + }, + "nodes": [ + 7717125044, + 9761722219, + 10308503064, + 7717125045 + ], + "geometry": [ + { "lat": 40.7006799, "lon": -73.9122380 }, + { "lat": 40.7006518, "lon": -73.9121871 }, + { "lat": 40.7006381, "lon": -73.9121623 }, + { "lat": 40.7004779, "lon": -73.9118724 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826539003, + "bounds": { + "minlat": 40.7004238, + "minlon": -73.9116515, + "maxlat": 40.7006148, + "maxlon": -73.9113137 + }, + "nodes": [ + 7717125046, + 10308503063, + 9761722216, + 7717125047 + ], + "geometry": [ + { "lat": 40.7006148, "lon": -73.9116515 }, + { "lat": 40.7004776, "lon": -73.9114068 }, + { "lat": 40.7004656, "lon": -73.9113860 }, + { "lat": 40.7004238, "lon": -73.9113137 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 826539004, + "bounds": { + "minlat": 40.7004835, + "minlon": -73.9117851, + "maxlat": 40.7006148, + "maxlon": -73.9116515 + }, + "nodes": [ + 7717125046, + 5482368598 + ], + "geometry": [ + { "lat": 40.7006148, "lon": -73.9116515 }, + { "lat": 40.7004835, "lon": -73.9117851 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826539005, + "bounds": { + "minlat": 40.7004779, + "minlon": -73.9118724, + "maxlat": 40.7004835, + "maxlon": -73.9117851 + }, + "nodes": [ + 7717125045, + 5482368598 + ], + "geometry": [ + { "lat": 40.7004779, "lon": -73.9118724 }, + { "lat": 40.7004835, "lon": -73.9117851 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 826539007, + "bounds": { + "minlat": 40.7002534, + "minlon": -73.9113815, + "maxlat": 40.7003567, + "maxlon": -73.9112037 + }, + "nodes": [ + 5482373247, + 11128557565, + 10308503061, + 5482373242 + ], + "geometry": [ + { "lat": 40.7003567, "lon": -73.9113815 }, + { "lat": 40.7003270, "lon": -73.9113302 }, + { "lat": 40.7003130, "lon": -73.9113061 }, + { "lat": 40.7002534, "lon": -73.9112037 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 826539008, + "bounds": { + "minlat": 40.7003999, + "minlon": -73.9109123, + "maxlat": 40.7005421, + "maxlon": -73.9106592 + }, + "nodes": [ + 5482373241, + 5482373240, + 7717125055 + ], + "geometry": [ + { "lat": 40.7005421, "lon": -73.9109123 }, + { "lat": 40.7004453, "lon": -73.9107401 }, + { "lat": 40.7003999, "lon": -73.9106592 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 826539009, + "bounds": { + "minlat": 40.7001234, + "minlon": -73.9110348, + "maxlat": 40.7003999, + "maxlon": -73.9106592 + }, + "nodes": [ + 7717125055, + 7717125056, + 7717125057, + 5482373239 + ], + "geometry": [ + { "lat": 40.7003999, "lon": -73.9106592 }, + { "lat": 40.7002220, "lon": -73.9106807 }, + { "lat": 40.7001234, "lon": -73.9107813 }, + { "lat": 40.7001547, "lon": -73.9110348 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827054969, + "bounds": { + "minlat": 40.7246452, + "minlon": -73.9291949, + "maxlat": 40.7249234, + "maxlon": -73.9281622 + }, + "nodes": [ + 7721413153, + 8509404563, + 7707177042 + ], + "geometry": [ + { "lat": 40.7246452, "lon": -73.9291949 }, + { "lat": 40.7247616, "lon": -73.9287870 }, + { "lat": 40.7249234, "lon": -73.9281622 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Lombardy Street" + } +}, +{ + "type": "way", + "id": 827102723, + "bounds": { + "minlat": 40.7073472, + "minlon": -73.9140003, + "maxlat": 40.7074847, + "maxlon": -73.9137551 + }, + "nodes": [ + 7721911515, + 7721911518, + 6024770758, + 7721911516 + ], + "geometry": [ + { "lat": 40.7074847, "lon": -73.9140003 }, + { "lat": 40.7074426, "lon": -73.9139252 }, + { "lat": 40.7073892, "lon": -73.9138301 }, + { "lat": 40.7073472, "lon": -73.9137551 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827102724, + "bounds": { + "minlat": 40.7074426, + "minlon": -73.9139252, + "maxlat": 40.7076910, + "maxlon": -73.9136777 + }, + "nodes": [ + 7721911517, + 7721911518 + ], + "geometry": [ + { "lat": 40.7076910, "lon": -73.9136777 }, + { "lat": 40.7074426, "lon": -73.9139252 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827103795, + "bounds": { + "minlat": 40.7024994, + "minlon": -73.9182614, + "maxlat": 40.7029119, + "maxlon": -73.9174881 + }, + "nodes": [ + 7721927440, + 9503349098, + 9755788643, + 7721927441 + ], + "geometry": [ + { "lat": 40.7029119, "lon": -73.9182614 }, + { "lat": 40.7028778, "lon": -73.9181975 }, + { "lat": 40.7025416, "lon": -73.9175671 }, + { "lat": 40.7024994, "lon": -73.9174881 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827117208, + "bounds": { + "minlat": 40.7013554, + "minlon": -74.0121954, + "maxlat": 40.7015047, + "maxlon": -74.0121162 + }, + "nodes": [ + 7722035783, + 7722035782, + 7722035781, + 7722035772, + 7722035779, + 7722035771, + 7722035780, + 7722035778, + 7722035777, + 7722035774, + 7722035770, + 7722035776, + 7722035769, + 7722035773, + 7722035768, + 7722035775, + 9647427532, + 9647427531, + 9647427533, + 7722035783 + ], + "geometry": [ + { "lat": 40.7015047, "lon": -74.0121752 }, + { "lat": 40.7015020, "lon": -74.0121830 }, + { "lat": 40.7014991, "lon": -74.0121891 }, + { "lat": 40.7014954, "lon": -74.0121926 }, + { "lat": 40.7014916, "lon": -74.0121947 }, + { "lat": 40.7014881, "lon": -74.0121954 }, + { "lat": 40.7014833, "lon": -74.0121948 }, + { "lat": 40.7014712, "lon": -74.0121909 }, + { "lat": 40.7013696, "lon": -74.0121504 }, + { "lat": 40.7013636, "lon": -74.0121467 }, + { "lat": 40.7013610, "lon": -74.0121437 }, + { "lat": 40.7013589, "lon": -74.0121406 }, + { "lat": 40.7013568, "lon": -74.0121355 }, + { "lat": 40.7013554, "lon": -74.0121287 }, + { "lat": 40.7013556, "lon": -74.0121222 }, + { "lat": 40.7013568, "lon": -74.0121162 }, + { "lat": 40.7013601, "lon": -74.0121175 }, + { "lat": 40.7014361, "lon": -74.0121478 }, + { "lat": 40.7015010, "lon": -74.0121737 }, + { "lat": 40.7015047, "lon": -74.0121752 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827117210, + "bounds": { + "minlat": 40.7011347, + "minlon": -74.0126510, + "maxlat": 40.7015147, + "maxlon": -74.0111982 + }, + "nodes": [ + 461710440, + 11014606882, + 2824828425, + 2824828428, + 4156349594, + 7722040206, + 11014606885, + 11014606886, + 11014606884, + 11014606883, + 7722040205, + 11014606887, + 11014606888, + 7722040204, + 11014606930, + 10107898854, + 11014606878, + 11014606881, + 11014606880, + 11014606879, + 10107898853, + 7722040203, + 7722040202, + 7722040201, + 7722040200, + 7722040199, + 7722040198, + 7722040197, + 7722040196, + 7722040195, + 10107898855, + 7722040194, + 7722035758, + 7722040193, + 7722040192, + 11014606890, + 607912662, + 11014606891, + 11014606892, + 11014606895, + 11014606894, + 11014606893, + 11014606896, + 11014606856, + 11014606855, + 11014606898, + 11014606899, + 11014606901, + 11014606900, + 11014606897, + 11014606903, + 11014606906, + 11014606905, + 11014606904, + 7682533626, + 2234823233, + 2234823234, + 11014606902, + 1805328737, + 11014606877, + 1805328747, + 7682533622, + 461710432, + 10107930167, + 10107930169, + 11014606852, + 11014606927, + 461710440 + ], + "geometry": [ + { "lat": 40.7014325, "lon": -74.0113733 }, + { "lat": 40.7014219, "lon": -74.0113691 }, + { "lat": 40.7014272, "lon": -74.0113421 }, + { "lat": 40.7014586, "lon": -74.0111982 }, + { "lat": 40.7014901, "lon": -74.0112108 }, + { "lat": 40.7015138, "lon": -74.0112204 }, + { "lat": 40.7015120, "lon": -74.0112325 }, + { "lat": 40.7015126, "lon": -74.0112409 }, + { "lat": 40.7015147, "lon": -74.0112507 }, + { "lat": 40.7015146, "lon": -74.0112607 }, + { "lat": 40.7014814, "lon": -74.0114082 }, + { "lat": 40.7014770, "lon": -74.0114188 }, + { "lat": 40.7014629, "lon": -74.0114282 }, + { "lat": 40.7014571, "lon": -74.0114383 }, + { "lat": 40.7014475, "lon": -74.0114787 }, + { "lat": 40.7013639, "lon": -74.0118329 }, + { "lat": 40.7013519, "lon": -74.0118865 }, + { "lat": 40.7013481, "lon": -74.0118943 }, + { "lat": 40.7013416, "lon": -74.0118985 }, + { "lat": 40.7013368, "lon": -74.0119104 }, + { "lat": 40.7012852, "lon": -74.0121355 }, + { "lat": 40.7012740, "lon": -74.0121829 }, + { "lat": 40.7012679, "lon": -74.0122238 }, + { "lat": 40.7012689, "lon": -74.0122389 }, + { "lat": 40.7012717, "lon": -74.0122496 }, + { "lat": 40.7012765, "lon": -74.0122580 }, + { "lat": 40.7012882, "lon": -74.0122674 }, + { "lat": 40.7013172, "lon": -74.0122814 }, + { "lat": 40.7013202, "lon": -74.0122868 }, + { "lat": 40.7013208, "lon": -74.0122908 }, + { "lat": 40.7013135, "lon": -74.0123226 }, + { "lat": 40.7013060, "lon": -74.0123502 }, + { "lat": 40.7013035, "lon": -74.0123528 }, + { "lat": 40.7013007, "lon": -74.0123542 }, + { "lat": 40.7012978, "lon": -74.0123544 }, + { "lat": 40.7012653, "lon": -74.0123417 }, + { "lat": 40.7012603, "lon": -74.0123601 }, + { "lat": 40.7012560, "lon": -74.0123811 }, + { "lat": 40.7012866, "lon": -74.0123929 }, + { "lat": 40.7012901, "lon": -74.0123960 }, + { "lat": 40.7012931, "lon": -74.0124033 }, + { "lat": 40.7012938, "lon": -74.0124096 }, + { "lat": 40.7012912, "lon": -74.0124215 }, + { "lat": 40.7012821, "lon": -74.0124181 }, + { "lat": 40.7012758, "lon": -74.0124476 }, + { "lat": 40.7012858, "lon": -74.0124514 }, + { "lat": 40.7012822, "lon": -74.0124624 }, + { "lat": 40.7012767, "lon": -74.0124671 }, + { "lat": 40.7012694, "lon": -74.0124665 }, + { "lat": 40.7012575, "lon": -74.0124624 }, + { "lat": 40.7012281, "lon": -74.0125861 }, + { "lat": 40.7012286, "lon": -74.0125982 }, + { "lat": 40.7012341, "lon": -74.0126150 }, + { "lat": 40.7012355, "lon": -74.0126284 }, + { "lat": 40.7012308, "lon": -74.0126510 }, + { "lat": 40.7011457, "lon": -74.0125951 }, + { "lat": 40.7011521, "lon": -74.0125707 }, + { "lat": 40.7011347, "lon": -74.0125624 }, + { "lat": 40.7011535, "lon": -74.0124715 }, + { "lat": 40.7011669, "lon": -74.0124140 }, + { "lat": 40.7011921, "lon": -74.0123001 }, + { "lat": 40.7011945, "lon": -74.0122937 }, + { "lat": 40.7012216, "lon": -74.0123048 }, + { "lat": 40.7012617, "lon": -74.0121277 }, + { "lat": 40.7013313, "lon": -74.0118205 }, + { "lat": 40.7013739, "lon": -74.0116322 }, + { "lat": 40.7014117, "lon": -74.0114653 }, + { "lat": 40.7014325, "lon": -74.0113733 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 827157385, + "bounds": { + "minlat": 40.7025593, + "minlon": -73.9444228, + "maxlat": 40.7025860, + "maxlon": -73.9441365 + }, + "nodes": [ + 7722348485, + 9752179211, + 7722348486 + ], + "geometry": [ + { "lat": 40.7025860, "lon": -73.9441365 }, + { "lat": 40.7025717, "lon": -73.9442900 }, + { "lat": 40.7025593, "lon": -73.9444228 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827157386, + "bounds": { + "minlat": 40.7028713, + "minlon": -73.9453013, + "maxlat": 40.7029442, + "maxlon": -73.9444872 + }, + "nodes": [ + 7722348490, + 7722348489, + 5487724371, + 5487724369, + 7722348487 + ], + "geometry": [ + { "lat": 40.7028713, "lon": -73.9453013 }, + { "lat": 40.7028759, "lon": -73.9452496 }, + { "lat": 40.7029069, "lon": -73.9449035 }, + { "lat": 40.7029248, "lon": -73.9447038 }, + { "lat": 40.7029442, "lon": -73.9444872 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827157387, + "bounds": { + "minlat": 40.7024158, + "minlon": -73.9444872, + "maxlat": 40.7029442, + "maxlon": -73.9443988 + }, + "nodes": [ + 7722348487, + 7722348486, + 7722348488 + ], + "geometry": [ + { "lat": 40.7029442, "lon": -73.9444872 }, + { "lat": 40.7025593, "lon": -73.9444228 }, + { "lat": 40.7024158, "lon": -73.9443988 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827157388, + "bounds": { + "minlat": 40.7024158, + "minlon": -73.9452496, + "maxlat": 40.7028759, + "maxlon": -73.9443988 + }, + "nodes": [ + 7722348489, + 5487724370, + 5487724372, + 7722348488 + ], + "geometry": [ + { "lat": 40.7028759, "lon": -73.9452496 }, + { "lat": 40.7026632, "lon": -73.9448556 }, + { "lat": 40.7025414, "lon": -73.9446301 }, + { "lat": 40.7024158, "lon": -73.9443988 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827157389, + "bounds": { + "minlat": 40.7027701, + "minlon": -73.9454473, + "maxlat": 40.7028713, + "maxlon": -73.9453013 + }, + "nodes": [ + 42505442, + 9752179212, + 7722348490 + ], + "geometry": [ + { "lat": 40.7027701, "lon": -73.9454473 }, + { "lat": 40.7028297, "lon": -73.9453613 }, + { "lat": 40.7028713, "lon": -73.9453013 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827162476, + "bounds": { + "minlat": 40.7102073, + "minlon": -73.9383200, + "maxlat": 40.7125374, + "maxlon": -73.9372252 + }, + "nodes": [ + 6967834376, + 42474050, + 42474051, + 7681103493, + 7706121928, + 42474052, + 8842929810, + 42474056 + ], + "geometry": [ + { "lat": 40.7102073, "lon": -73.9372252 }, + { "lat": 40.7104518, "lon": -73.9373399 }, + { "lat": 40.7111817, "lon": -73.9376822 }, + { "lat": 40.7113035, "lon": -73.9377394 }, + { "lat": 40.7117170, "lon": -73.9379333 }, + { "lat": 40.7118153, "lon": -73.9379795 }, + { "lat": 40.7124449, "lon": -73.9382751 }, + { "lat": 40.7125374, "lon": -73.9383200 } + ], + "tags": { + "highway": "residential", + "name": "Waterbury Street", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 827162478, + "bounds": { + "minlat": 40.7183974, + "minlon": -73.9407149, + "maxlat": 40.7184179, + "maxlon": -73.9404508 + }, + "nodes": [ + 7722378703, + 9695771776, + 7722378706 + ], + "geometry": [ + { "lat": 40.7183974, "lon": -73.9407149 }, + { "lat": 40.7184106, "lon": -73.9405453 }, + { "lat": 40.7184179, "lon": -73.9404508 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 827162479, + "bounds": { + "minlat": 40.7150716, + "minlon": -73.9421684, + "maxlat": 40.7151201, + "maxlon": -73.9421615 + }, + "nodes": [ + 7722378708, + 7722378710 + ], + "geometry": [ + { "lat": 40.7151201, "lon": -73.9421684 }, + { "lat": 40.7150716, "lon": -73.9421615 } + ], + "tags": { + "highway": "residential", + "name": "Woodpoint Road", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 827162480, + "bounds": { + "minlat": 40.7006446, + "minlon": -73.9384622, + "maxlat": 40.7039308, + "maxlon": -73.9364567 + }, + "nodes": [ + 4660922282, + 42513681, + 6907298758, + 9646979733, + 42509036, + 9646979740, + 2548031990, + 42513684, + 7034559411, + 42504109, + 2762439692, + 42513686, + 9301423398, + 42513688 + ], + "geometry": [ + { "lat": 40.7039308, "lon": -73.9384622 }, + { "lat": 40.7036465, "lon": -73.9379919 }, + { "lat": 40.7034919, "lon": -73.9377657 }, + { "lat": 40.7034191, "lon": -73.9376944 }, + { "lat": 40.7033720, "lon": -73.9376480 }, + { "lat": 40.7033106, "lon": -73.9376102 }, + { "lat": 40.7032056, "lon": -73.9375450 }, + { "lat": 40.7027090, "lon": -73.9373222 }, + { "lat": 40.7019877, "lon": -73.9370258 }, + { "lat": 40.7019084, "lon": -73.9369881 }, + { "lat": 40.7018226, "lon": -73.9369474 }, + { "lat": 40.7013018, "lon": -73.9367327 }, + { "lat": 40.7007021, "lon": -73.9364854 }, + { "lat": 40.7006446, "lon": -73.9364567 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Bushwick Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827162481, + "bounds": { + "minlat": 40.7039308, + "minlon": -73.9385365, + "maxlat": 40.7039968, + "maxlon": -73.9384622 + }, + "nodes": [ + 4660922282, + 7722378721 + ], + "geometry": [ + { "lat": 40.7039308, "lon": -73.9384622 }, + { "lat": 40.7039968, "lon": -73.9385365 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Bushwick Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827162482, + "bounds": { + "minlat": 40.7048659, + "minlon": -73.9394657, + "maxlat": 40.7052611, + "maxlon": -73.9394069 + }, + "nodes": [ + 7722378719, + 8548018139, + 4660922258 + ], + "geometry": [ + { "lat": 40.7052611, "lon": -73.9394380 }, + { "lat": 40.7051716, "lon": -73.9394657 }, + { "lat": 40.7048659, "lon": -73.9394069 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Bushwick Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 827162483, + "bounds": { + "minlat": 40.7044455, + "minlon": -73.9390786, + "maxlat": 40.7045916, + "maxlon": -73.9390068 + }, + "nodes": [ + 7722378715, + 9704064496, + 7722378720 + ], + "geometry": [ + { "lat": 40.7044455, "lon": -73.9390068 }, + { "lat": 40.7045314, "lon": -73.9390476 }, + { "lat": 40.7045916, "lon": -73.9390786 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Bushwick Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827162484, + "bounds": { + "minlat": 40.7039234, + "minlon": -73.9408452, + "maxlat": 40.7040632, + "maxlon": -73.9393208 + }, + "nodes": [ + 3539722831, + 2548031991, + 42502945 + ], + "geometry": [ + { "lat": 40.7040632, "lon": -73.9393208 }, + { "lat": 40.7039252, "lon": -73.9407719 }, + { "lat": 40.7039234, "lon": -73.9408452 } + ], + "tags": { + "highway": "residential", + "name": "Moore Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 827162486, + "bounds": { + "minlat": 40.7034979, + "minlon": -73.9390724, + "maxlat": 40.7040187, + "maxlon": -73.9389276 + }, + "nodes": [ + 7722378722, + 6858105746, + 7722378723, + 6858105747, + 10780996098, + 10780996097, + 10780996096, + 7722378724, + 10780996095, + 7722378725 + ], + "geometry": [ + { "lat": 40.7040187, "lon": -73.9389276 }, + { "lat": 40.7039721, "lon": -73.9389353 }, + { "lat": 40.7039555, "lon": -73.9389378 }, + { "lat": 40.7037142, "lon": -73.9389560 }, + { "lat": 40.7036935, "lon": -73.9389749 }, + { "lat": 40.7036776, "lon": -73.9390114 }, + { "lat": 40.7036629, "lon": -73.9390572 }, + { "lat": 40.7036442, "lon": -73.9390724 }, + { "lat": 40.7036190, "lon": -73.9390715 }, + { "lat": 40.7034979, "lon": -73.9390434 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 827466843, + "bounds": { + "minlat": 40.7238542, + "minlon": -73.9145285, + "maxlat": 40.7238775, + "maxlon": -73.9142521 + }, + "nodes": [ + 42855845, + 11055685728, + 11055685727, + 42855844 + ], + "geometry": [ + { "lat": 40.7238543, "lon": -73.9142521 }, + { "lat": 40.7238764, "lon": -73.9143105 }, + { "lat": 40.7238775, "lon": -73.9143873 }, + { "lat": 40.7238542, "lon": -73.9145285 } + ], + "tags": { + "highway": "residential", + "name": "56th Terrace", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 827466844, + "bounds": { + "minlat": 40.7229705, + "minlon": -73.9126493, + "maxlat": 40.7232341, + "maxlon": -73.9101187 + }, + "nodes": [ + 4396951668, + 42825392, + 42854215, + 7963468572, + 11055680678, + 42854207 + ], + "geometry": [ + { "lat": 40.7229705, "lon": -73.9101187 }, + { "lat": 40.7229811, "lon": -73.9106686 }, + { "lat": 40.7231199, "lon": -73.9120759 }, + { "lat": 40.7231787, "lon": -73.9123714 }, + { "lat": 40.7232137, "lon": -73.9125471 }, + { "lat": 40.7232341, "lon": -73.9126493 } + ], + "tags": { + "highway": "tertiary", + "name": "Maspeth Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 827466846, + "bounds": { + "minlat": 40.7260782, + "minlon": -73.9068641, + "maxlat": 40.7266428, + "maxlon": -73.9065794 + }, + "nodes": [ + 5481971962, + 13247403956, + 7725251760, + 9990029725, + 9990029724, + 7725251755 + ], + "geometry": [ + { "lat": 40.7266428, "lon": -73.9068110 }, + { "lat": 40.7265944, "lon": -73.9068151 }, + { "lat": 40.7264790, "lon": -73.9068249 }, + { "lat": 40.7261403, "lon": -73.9068641 }, + { "lat": 40.7260995, "lon": -73.9068091 }, + { "lat": 40.7260782, "lon": -73.9065794 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466847, + "bounds": { + "minlat": 40.7259195, + "minlon": -73.9065971, + "maxlat": 40.7264599, + "maxlon": -73.9065369 + }, + "nodes": [ + 7725251756, + 7725251755, + 13247403954, + 7725251757 + ], + "geometry": [ + { "lat": 40.7264599, "lon": -73.9065369 }, + { "lat": 40.7260782, "lon": -73.9065794 }, + { "lat": 40.7259859, "lon": -73.9065897 }, + { "lat": 40.7259195, "lon": -73.9065971 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466849, + "bounds": { + "minlat": 40.7264542, + "minlon": -73.9068249, + "maxlat": 40.7264790, + "maxlon": -73.9064526 + }, + "nodes": [ + 7725251760, + 7725251756, + 7725251759 + ], + "geometry": [ + { "lat": 40.7264790, "lon": -73.9068249 }, + { "lat": 40.7264599, "lon": -73.9065369 }, + { "lat": 40.7264542, "lon": -73.9064526 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466852, + "bounds": { + "minlat": 40.7259558, + "minlon": -73.9071124, + "maxlat": 40.7262189, + "maxlon": -73.9070897 + }, + "nodes": [ + 7725251771, + 10021763474, + 13247403953, + 7725251772 + ], + "geometry": [ + { "lat": 40.7262189, "lon": -73.9070897 }, + { "lat": 40.7260824, "lon": -73.9071015 }, + { "lat": 40.7260205, "lon": -73.9071068 }, + { "lat": 40.7259558, "lon": -73.9071124 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466853, + "bounds": { + "minlat": 40.7259872, + "minlon": -73.9075700, + "maxlat": 40.7262725, + "maxlon": -73.9075430 + }, + "nodes": [ + 7725251773, + 10021763473, + 13247403952, + 7725251774 + ], + "geometry": [ + { "lat": 40.7262725, "lon": -73.9075430 }, + { "lat": 40.7261066, "lon": -73.9075587 }, + { "lat": 40.7260511, "lon": -73.9075640 }, + { "lat": 40.7259872, "lon": -73.9075700 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466854, + "bounds": { + "minlat": 40.7262896, + "minlon": -73.9076207, + "maxlat": 40.7266962, + "maxlon": -73.9075744 + }, + "nodes": [ + 5481969192, + 13247403955, + 9990029728, + 9990029726, + 7725251775 + ], + "geometry": [ + { "lat": 40.7266962, "lon": -73.9075744 }, + { "lat": 40.7266484, "lon": -73.9075804 }, + { "lat": 40.7266021, "lon": -73.9075862 }, + { "lat": 40.7263284, "lon": -73.9076207 }, + { "lat": 40.7262896, "lon": -73.9075881 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466855, + "bounds": { + "minlat": 40.7262189, + "minlon": -73.9075881, + "maxlat": 40.7262896, + "maxlon": -73.9070897 + }, + "nodes": [ + 7725251775, + 7725251773, + 9990029727, + 7725251771 + ], + "geometry": [ + { "lat": 40.7262896, "lon": -73.9075881 }, + { "lat": 40.7262725, "lon": -73.9075430 }, + { "lat": 40.7262448, "lon": -73.9071209 }, + { "lat": 40.7262189, "lon": -73.9070897 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466857, + "bounds": { + "minlat": 40.7262426, + "minlon": -73.9111046, + "maxlat": 40.7267864, + "maxlon": -73.9110351 + }, + "nodes": [ + 7725251779, + 11925728891, + 5481966773 + ], + "geometry": [ + { "lat": 40.7267864, "lon": -73.9110351 }, + { "lat": 40.7263211, "lon": -73.9110946 }, + { "lat": 40.7262426, "lon": -73.9111046 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466858, + "bounds": { + "minlat": 40.7266428, + "minlon": -73.9075553, + "maxlat": 40.7270997, + "maxlon": -73.9068110 + }, + "nodes": [ + 5481971927, + 11925728884, + 5481971922, + 5481971926, + 11925728882, + 5481971962 + ], + "geometry": [ + { "lat": 40.7270997, "lon": -73.9075553 }, + { "lat": 40.7270535, "lon": -73.9074796 }, + { "lat": 40.7269966, "lon": -73.9073864 }, + { "lat": 40.7267354, "lon": -73.9069620 }, + { "lat": 40.7267177, "lon": -73.9069331 }, + { "lat": 40.7266428, "lon": -73.9068110 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466859, + "bounds": { + "minlat": 40.7291221, + "minlon": -73.9112986, + "maxlat": 40.7294872, + "maxlon": -73.9107249 + }, + "nodes": [ + 7725251781, + 7725251782 + ], + "geometry": [ + { "lat": 40.7294872, "lon": -73.9112986 }, + { "lat": 40.7291221, "lon": -73.9107249 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466860, + "bounds": { + "minlat": 40.7290075, + "minlon": -73.9114270, + "maxlat": 40.7293779, + "maxlon": -73.9108547 + }, + "nodes": [ + 7725251783, + 7725251784 + ], + "geometry": [ + { "lat": 40.7293779, "lon": -73.9114270 }, + { "lat": 40.7290075, "lon": -73.9108547 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466861, + "bounds": { + "minlat": 40.7292598, + "minlon": -73.9115659, + "maxlat": 40.7294872, + "maxlon": -73.9112986 + }, + "nodes": [ + 7725251781, + 7725251783, + 7725287385 + ], + "geometry": [ + { "lat": 40.7294872, "lon": -73.9112986 }, + { "lat": 40.7293779, "lon": -73.9114270 }, + { "lat": 40.7292598, "lon": -73.9115659 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466862, + "bounds": { + "minlat": 40.7293574, + "minlon": -73.9117174, + "maxlat": 40.7294608, + "maxlon": -73.9115990 + }, + "nodes": [ + 7725287386, + 5481965994 + ], + "geometry": [ + { "lat": 40.7294608, "lon": -73.9115990 }, + { "lat": 40.7293574, "lon": -73.9117174 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466864, + "bounds": { + "minlat": 40.7290075, + "minlon": -73.9108547, + "maxlat": 40.7292095, + "maxlon": -73.9106058 + }, + "nodes": [ + 5481965997, + 11925728894, + 7725251782, + 7725251784 + ], + "geometry": [ + { "lat": 40.7292095, "lon": -73.9106058 }, + { "lat": 40.7291637, "lon": -73.9106682 }, + { "lat": 40.7291221, "lon": -73.9107249 }, + { "lat": 40.7290075, "lon": -73.9108547 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466865, + "bounds": { + "minlat": 40.7272036, + "minlon": -73.9121267, + "maxlat": 40.7272276, + "maxlon": -73.9111108 + }, + "nodes": [ + 7725287395, + 11925728892, + 7725287396 + ], + "geometry": [ + { "lat": 40.7272276, "lon": -73.9121267 }, + { "lat": 40.7272246, "lon": -73.9119983 }, + { "lat": 40.7272036, "lon": -73.9111108 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 827466866, + "bounds": { + "minlat": 40.7285269, + "minlon": -73.9083532, + "maxlat": 40.7297871, + "maxlon": -73.9057083 + }, + "nodes": [ + 42786767, + 759335959, + 8251952397, + 10203936809, + 42786771 + ], + "geometry": [ + { "lat": 40.7297871, "lon": -73.9083532 }, + { "lat": 40.7291796, "lon": -73.9070673 }, + { "lat": 40.7286211, "lon": -73.9059145 }, + { "lat": 40.7285714, "lon": -73.9058127 }, + { "lat": 40.7285269, "lon": -73.9057083 } + ], + "tags": { + "highway": "residential", + "name": "54th Avenue", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 827466867, + "bounds": { + "minlat": 40.7409532, + "minlon": -73.9077123, + "maxlat": 40.7410533, + "maxlon": -73.9069194 + }, + "nodes": [ + 7725287398, + 10203222030, + 12908215031, + 7725287399 + ], + "geometry": [ + { "lat": 40.7410533, "lon": -73.9077123 }, + { "lat": 40.7410417, "lon": -73.9076208 }, + { "lat": 40.7410193, "lon": -73.9074430 }, + { "lat": 40.7409532, "lon": -73.9069194 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827466868, + "bounds": { + "minlat": 40.7407002, + "minlon": -73.9070334, + "maxlat": 40.7409532, + "maxlon": -73.9069194 + }, + "nodes": [ + 7725287399, + 7725287400 + ], + "geometry": [ + { "lat": 40.7409532, "lon": -73.9069194 }, + { "lat": 40.7407002, "lon": -73.9070334 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827471483, + "bounds": { + "minlat": 40.7368684, + "minlon": -73.9074780, + "maxlat": 40.7406260, + "maxlon": -73.9073471 + }, + "nodes": [ + 42860672, + 8392882422, + 12908215038, + 42880479, + 12908215060, + 8626128259, + 10087484110, + 42825314 + ], + "geometry": [ + { "lat": 40.7406260, "lon": -73.9073471 }, + { "lat": 40.7399810, "lon": -73.9073672 }, + { "lat": 40.7386784, "lon": -73.9074099 }, + { "lat": 40.7386090, "lon": -73.9074122 }, + { "lat": 40.7385536, "lon": -73.9074143 }, + { "lat": 40.7369896, "lon": -73.9074744 }, + { "lat": 40.7369569, "lon": -73.9074754 }, + { "lat": 40.7368684, "lon": -73.9074780 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "58th Lane", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827471484, + "bounds": { + "minlat": 40.7284653, + "minlon": -73.9120654, + "maxlat": 40.7284737, + "maxlon": -73.9118028 + }, + "nodes": [ + 6819995538, + 11925728893, + 6819995539, + 7725309771 + ], + "geometry": [ + { "lat": 40.7284737, "lon": -73.9120654 }, + { "lat": 40.7284699, "lon": -73.9119427 }, + { "lat": 40.7284693, "lon": -73.9119236 }, + { "lat": 40.7284653, "lon": -73.9118028 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 827471485, + "bounds": { + "minlat": 40.7284737, + "minlon": -73.9149920, + "maxlat": 40.7285435, + "maxlon": -73.9120654 + }, + "nodes": [ + 7725309772, + 13250172723, + 6819995538 + ], + "geometry": [ + { "lat": 40.7285435, "lon": -73.9149920 }, + { "lat": 40.7284763, "lon": -73.9121767 }, + { "lat": 40.7284737, "lon": -73.9120654 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "54th Avenue", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 827471486, + "bounds": { + "minlat": 40.7279740, + "minlon": -73.9150334, + "maxlat": 40.7285435, + "maxlon": -73.9149920 + }, + "nodes": [ + 7725309772, + 13443778425, + 42823471 + ], + "geometry": [ + { "lat": 40.7285435, "lon": -73.9149920 }, + { "lat": 40.7280521, "lon": -73.9150277 }, + { "lat": 40.7279740, "lon": -73.9150334 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "56th Street", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 827476349, + "bounds": { + "minlat": 40.7046134, + "minlon": -74.0182541, + "maxlat": 40.7048525, + "maxlon": -74.0178324 + }, + "nodes": [ + 7725312128, + 7725312125, + 7725312124, + 7725312123, + 7725312127, + 7725312122, + 7725312121, + 7725312120, + 7725312126, + 7725312119, + 7725312118, + 7725312117, + 7725312116, + 7725312113, + 7725312115, + 7725312112, + 7725334451, + 607907621, + 7725300249, + 7725300246, + 7725300248, + 7725300245, + 7725300247, + 7725300244, + 7725276116, + 7725276113, + 7725276114, + 8279851723, + 8279851722, + 7725276103, + 7725276101, + 5526135153, + 5526135154, + 5526135146, + 5526135147, + 5526135155, + 5526135156, + 5526135157, + 5526135158, + 5526135159, + 7725334452, + 7725157354, + 7725312128 + ], + "geometry": [ + { "lat": 40.7048525, "lon": -74.0178507 }, + { "lat": 40.7048328, "lon": -74.0178364 }, + { "lat": 40.7048105, "lon": -74.0178324 }, + { "lat": 40.7047887, "lon": -74.0178393 }, + { "lat": 40.7047701, "lon": -74.0178561 }, + { "lat": 40.7047581, "lon": -74.0178785 }, + { "lat": 40.7047525, "lon": -74.0179048 }, + { "lat": 40.7047538, "lon": -74.0179322 }, + { "lat": 40.7047620, "lon": -74.0179573 }, + { "lat": 40.7047305, "lon": -74.0179758 }, + { "lat": 40.7047257, "lon": -74.0179624 }, + { "lat": 40.7047201, "lon": -74.0179657 }, + { "lat": 40.7046944, "lon": -74.0181679 }, + { "lat": 40.7046699, "lon": -74.0181648 }, + { "lat": 40.7046453, "lon": -74.0181676 }, + { "lat": 40.7046201, "lon": -74.0181768 }, + { "lat": 40.7046134, "lon": -74.0181812 }, + { "lat": 40.7046202, "lon": -74.0182075 }, + { "lat": 40.7046324, "lon": -74.0182541 }, + { "lat": 40.7046499, "lon": -74.0182329 }, + { "lat": 40.7046710, "lon": -74.0182185 }, + { "lat": 40.7046917, "lon": -74.0182123 }, + { "lat": 40.7047129, "lon": -74.0182128 }, + { "lat": 40.7047383, "lon": -74.0181357 }, + { "lat": 40.7047272, "lon": -74.0181297 }, + { "lat": 40.7047667, "lon": -74.0180034 }, + { "lat": 40.7048032, "lon": -74.0180232 }, + { "lat": 40.7048062, "lon": -74.0179957 }, + { "lat": 40.7048078, "lon": -74.0179815 }, + { "lat": 40.7048088, "lon": -74.0179720 }, + { "lat": 40.7047931, "lon": -74.0179304 }, + { "lat": 40.7048054, "lon": -74.0179228 }, + { "lat": 40.7048015, "lon": -74.0179148 }, + { "lat": 40.7047997, "lon": -74.0179051 }, + { "lat": 40.7048005, "lon": -74.0178957 }, + { "lat": 40.7048034, "lon": -74.0178871 }, + { "lat": 40.7048083, "lon": -74.0178801 }, + { "lat": 40.7048146, "lon": -74.0178756 }, + { "lat": 40.7048217, "lon": -74.0178739 }, + { "lat": 40.7048288, "lon": -74.0178753 }, + { "lat": 40.7048316, "lon": -74.0178772 }, + { "lat": 40.7048429, "lon": -74.0178629 }, + { "lat": 40.7048525, "lon": -74.0178507 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827476350, + "bounds": { + "minlat": 40.7048032, + "minlon": -74.0180304, + "maxlat": 40.7048825, + "maxlon": -74.0178344 + }, + "nodes": [ + 7725312103, + 7725312102, + 7725312101, + 7725312100, + 7725312097, + 7725312099, + 7725312096, + 7725312098, + 7725312095, + 12400793681, + 7725276106, + 7725276109, + 12400793682, + 7725276114, + 8279851723, + 8279851722, + 7725276103, + 7725276102, + 7725276100, + 5526135149, + 5526135148, + 5526135145, + 5526135144, + 5526135162, + 5526135161, + 5526135160, + 7725334452, + 7725157354, + 7725312128, + 7725312129, + 7725312130, + 7725312131, + 7725312103 + ], + "geometry": [ + { "lat": 40.7048777, "lon": -74.0178419 }, + { "lat": 40.7048714, "lon": -74.0178576 }, + { "lat": 40.7048747, "lon": -74.0178629 }, + { "lat": 40.7048650, "lon": -74.0178733 }, + { "lat": 40.7048726, "lon": -74.0178897 }, + { "lat": 40.7048769, "lon": -74.0179081 }, + { "lat": 40.7048776, "lon": -74.0179263 }, + { "lat": 40.7048751, "lon": -74.0179443 }, + { "lat": 40.7048825, "lon": -74.0179560 }, + { "lat": 40.7048732, "lon": -74.0179695 }, + { "lat": 40.7048592, "lon": -74.0179900 }, + { "lat": 40.7048434, "lon": -74.0180304 }, + { "lat": 40.7048212, "lon": -74.0180264 }, + { "lat": 40.7048032, "lon": -74.0180232 }, + { "lat": 40.7048062, "lon": -74.0179957 }, + { "lat": 40.7048078, "lon": -74.0179815 }, + { "lat": 40.7048088, "lon": -74.0179720 }, + { "lat": 40.7048373, "lon": -74.0179532 }, + { "lat": 40.7048289, "lon": -74.0179310 }, + { "lat": 40.7048332, "lon": -74.0179289 }, + { "lat": 40.7048390, "lon": -74.0179225 }, + { "lat": 40.7048429, "lon": -74.0179140 }, + { "lat": 40.7048444, "lon": -74.0179042 }, + { "lat": 40.7048434, "lon": -74.0178948 }, + { "lat": 40.7048403, "lon": -74.0178863 }, + { "lat": 40.7048352, "lon": -74.0178796 }, + { "lat": 40.7048316, "lon": -74.0178772 }, + { "lat": 40.7048429, "lon": -74.0178629 }, + { "lat": 40.7048525, "lon": -74.0178507 }, + { "lat": 40.7048601, "lon": -74.0178424 }, + { "lat": 40.7048623, "lon": -74.0178459 }, + { "lat": 40.7048727, "lon": -74.0178344 }, + { "lat": 40.7048777, "lon": -74.0178419 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827476351, + "bounds": { + "minlat": 40.7047781, + "minlon": -74.0181598, + "maxlat": 40.7049308, + "maxlon": -74.0179173 + }, + "nodes": [ + 7725312087, + 7725312086, + 7725312085, + 7725300284, + 7725300283, + 7725300282, + 7725300281, + 7725300275, + 7725300276, + 7725300277, + 7725300278, + 7725300279, + 7725300274, + 7725300273, + 7725300272, + 7725300242, + 7725300243, + 7725276114, + 12400793682, + 7725276109, + 7725276104, + 7725276112, + 7725276111, + 7725276110, + 7725276105, + 7725276107, + 7725276106, + 12400793681, + 7725312095, + 7725312094, + 7725312093, + 7725312104, + 7725312087 + ], + "geometry": [ + { "lat": 40.7049291, "lon": -74.0179243 }, + { "lat": 40.7049244, "lon": -74.0179399 }, + { "lat": 40.7049275, "lon": -74.0179449 }, + { "lat": 40.7048967, "lon": -74.0179791 }, + { "lat": 40.7049308, "lon": -74.0180318 }, + { "lat": 40.7049122, "lon": -74.0180539 }, + { "lat": 40.7049282, "lon": -74.0180787 }, + { "lat": 40.7049145, "lon": -74.0180925 }, + { "lat": 40.7049064, "lon": -74.0180800 }, + { "lat": 40.7048965, "lon": -74.0180931 }, + { "lat": 40.7049038, "lon": -74.0181092 }, + { "lat": 40.7049089, "lon": -74.0181042 }, + { "lat": 40.7049126, "lon": -74.0181128 }, + { "lat": 40.7048863, "lon": -74.0181598 }, + { "lat": 40.7048255, "lon": -74.0181102 }, + { "lat": 40.7048192, "lon": -74.0181314 }, + { "lat": 40.7047781, "lon": -74.0181032 }, + { "lat": 40.7048032, "lon": -74.0180232 }, + { "lat": 40.7048212, "lon": -74.0180264 }, + { "lat": 40.7048434, "lon": -74.0180304 }, + { "lat": 40.7048557, "lon": -74.0180388 }, + { "lat": 40.7048391, "lon": -74.0180684 }, + { "lat": 40.7048707, "lon": -74.0180994 }, + { "lat": 40.7048931, "lon": -74.0180597 }, + { "lat": 40.7048780, "lon": -74.0180450 }, + { "lat": 40.7048910, "lon": -74.0180116 }, + { "lat": 40.7048592, "lon": -74.0179900 }, + { "lat": 40.7048732, "lon": -74.0179695 }, + { "lat": 40.7048825, "lon": -74.0179560 }, + { "lat": 40.7049137, "lon": -74.0179221 }, + { "lat": 40.7049165, "lon": -74.0179265 }, + { "lat": 40.7049247, "lon": -74.0179173 }, + { "lat": 40.7049291, "lon": -74.0179243 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827476352, + "bounds": { + "minlat": 40.7047416, + "minlon": -74.0180902, + "maxlat": 40.7050502, + "maxlon": -74.0176073 + }, + "nodes": [ + 7725334453, + 7725334455, + 8279851576, + 7725276184, + 7725295487, + 7725295488, + 7725295491, + 9371193659, + 7725295492, + 7725295495, + 2824986185, + 2824986182, + 2824986183, + 7725312089, + 7725312088, + 7725312087, + 7725312104, + 7725312103, + 7725312131, + 7725312132, + 7725334453 + ], + "geometry": [ + { "lat": 40.7047416, "lon": -74.0176296 }, + { "lat": 40.7047622, "lon": -74.0176073 }, + { "lat": 40.7047795, "lon": -74.0176363 }, + { "lat": 40.7047953, "lon": -74.0176626 }, + { "lat": 40.7048880, "lon": -74.0178078 }, + { "lat": 40.7049038, "lon": -74.0178294 }, + { "lat": 40.7049414, "lon": -74.0178883 }, + { "lat": 40.7049504, "lon": -74.0179016 }, + { "lat": 40.7049578, "lon": -74.0179126 }, + { "lat": 40.7050502, "lon": -74.0180572 }, + { "lat": 40.7050488, "lon": -74.0180902 }, + { "lat": 40.7050016, "lon": -74.0180609 }, + { "lat": 40.7050042, "lon": -74.0180547 }, + { "lat": 40.7049944, "lon": -74.0180483 }, + { "lat": 40.7049991, "lon": -74.0180328 }, + { "lat": 40.7049291, "lon": -74.0179243 }, + { "lat": 40.7049247, "lon": -74.0179173 }, + { "lat": 40.7048777, "lon": -74.0178419 }, + { "lat": 40.7048727, "lon": -74.0178344 }, + { "lat": 40.7047840, "lon": -74.0176942 }, + { "lat": 40.7047416, "lon": -74.0176296 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827476353, + "bounds": { + "minlat": 40.7055854, + "minlon": -74.0181649, + "maxlat": 40.7058414, + "maxlon": -74.0180520 + }, + "nodes": [ + 7725335901, + 7725335902, + 7725335903, + 11374486392, + 7725334454, + 7725157367, + 7725157368, + 1430380104, + 7725334476, + 9371193660, + 7725335899, + 7725335900, + 9371193662, + 7725335901 + ], + "geometry": [ + { "lat": 40.7056123, "lon": -74.0181649 }, + { "lat": 40.7056162, "lon": -74.0180953 }, + { "lat": 40.7058399, "lon": -74.0181168 }, + { "lat": 40.7058406, "lon": -74.0181015 }, + { "lat": 40.7058414, "lon": -74.0180831 }, + { "lat": 40.7058257, "lon": -74.0180844 }, + { "lat": 40.7057438, "lon": -74.0180797 }, + { "lat": 40.7056391, "lon": -74.0180636 }, + { "lat": 40.7055903, "lon": -74.0180520 }, + { "lat": 40.7055897, "lon": -74.0180761 }, + { "lat": 40.7055892, "lon": -74.0180930 }, + { "lat": 40.7055854, "lon": -74.0181626 }, + { "lat": 40.7056001, "lon": -74.0181639 }, + { "lat": 40.7056123, "lon": -74.0181649 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 827476354, + "bounds": { + "minlat": 40.7049877, + "minlon": -74.0177918, + "maxlat": 40.7050692, + "maxlon": -74.0176957 + }, + "nodes": [ + 7725295504, + 7725295505, + 9371193658, + 246872857, + 7725334478, + 9371193657, + 7725295502, + 7725295503, + 7725295504 + ], + "geometry": [ + { "lat": 40.7050031, "lon": -74.0177918 }, + { "lat": 40.7050435, "lon": -74.0177468 }, + { "lat": 40.7050555, "lon": -74.0177329 }, + { "lat": 40.7050692, "lon": -74.0177171 }, + { "lat": 40.7050523, "lon": -74.0176957 }, + { "lat": 40.7050392, "lon": -74.0177106 }, + { "lat": 40.7050281, "lon": -74.0177233 }, + { "lat": 40.7049877, "lon": -74.0177682 }, + { "lat": 40.7050031, "lon": -74.0177918 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827476355, + "bounds": { + "minlat": 40.7047555, + "minlon": -74.0186319, + "maxlat": 40.7058360, + "maxlon": -74.0173890 + }, + "nodes": [ + 7725295498, + 7725295497, + 9369136024, + 246872859, + 7728058580, + 246872858, + 2053820744, + 7725157372, + 7725334478, + 9371193657, + 7725295502, + 7725295501, + 7725295500, + 7725295503, + 7725295504, + 7725295507, + 7725295506, + 7725295505, + 9371193658, + 246872857, + 7208978990, + 246872856, + 7725157371, + 7725157370, + 246872855, + 7725157369, + 7725334476, + 9371193660, + 7725335899, + 7725335898, + 7725335897, + 7725335900, + 9371193662, + 7725335901, + 7725335904, + 7208978583, + 7725335907, + 7725335906, + 7725335905, + 7725335896, + 7725335895, + 7725335894, + 7725335893, + 7725335892, + 7725335891, + 7725335890, + 7725335889, + 7725335837, + 7725335839, + 7725335840, + 7725335841, + 7725334475, + 7725335799, + 7725335796, + 7725334474, + 7725335804, + 7725335803, + 7725334473, + 9371193663, + 7725320016, + 7725320011, + 7725305781, + 7725320040, + 7725320039, + 7725320038, + 7725320037, + 2824986197, + 2824986199, + 7725334472, + 7725334471, + 6894104479, + 7725334470, + 7725334469, + 7725334468, + 7725334467, + 6894104481, + 7725334466, + 7725334465, + 7725396346, + 2824986194, + 2824986193, + 9371193661, + 2824986189, + 7725334464, + 7725334463, + 7725334462, + 6894106291, + 7725334461, + 7725334460, + 7725334459, + 7725334458, + 7725334457, + 7725334456, + 2824986185, + 7725295495, + 7725295494, + 7725295493, + 7725295492, + 9371193659, + 7725295491, + 7725295490, + 7725295489, + 7725295488, + 7725295487, + 7725295486, + 7725295485, + 7725276184, + 8279851576, + 7725334455, + 7725276183, + 7725276182, + 7725157347, + 7725295496, + 7725295499, + 7725295498 + ], + "geometry": [ + { "lat": 40.7048736, "lon": -74.0174845 }, + { "lat": 40.7048323, "lon": -74.0174202 }, + { "lat": 40.7048487, "lon": -74.0174035 }, + { "lat": 40.7048629, "lon": -74.0173890 }, + { "lat": 40.7048868, "lon": -74.0174427 }, + { "lat": 40.7049214, "lon": -74.0175057 }, + { "lat": 40.7049752, "lon": -74.0175902 }, + { "lat": 40.7050322, "lon": -74.0176700 }, + { "lat": 40.7050523, "lon": -74.0176957 }, + { "lat": 40.7050392, "lon": -74.0177106 }, + { "lat": 40.7050281, "lon": -74.0177233 }, + { "lat": 40.7049100, "lon": -74.0175383 }, + { "lat": 40.7048695, "lon": -74.0175832 }, + { "lat": 40.7049877, "lon": -74.0177682 }, + { "lat": 40.7050031, "lon": -74.0177918 }, + { "lat": 40.7051212, "lon": -74.0179768 }, + { "lat": 40.7051617, "lon": -74.0179318 }, + { "lat": 40.7050435, "lon": -74.0177468 }, + { "lat": 40.7050555, "lon": -74.0177329 }, + { "lat": 40.7050692, "lon": -74.0177171 }, + { "lat": 40.7051120, "lon": -74.0177666 }, + { "lat": 40.7052279, "lon": -74.0178698 }, + { "lat": 40.7053026, "lon": -74.0179255 }, + { "lat": 40.7053809, "lon": -74.0179711 }, + { "lat": 40.7054810, "lon": -74.0180167 }, + { "lat": 40.7055685, "lon": -74.0180469 }, + { "lat": 40.7055903, "lon": -74.0180520 }, + { "lat": 40.7055897, "lon": -74.0180761 }, + { "lat": 40.7055892, "lon": -74.0180930 }, + { "lat": 40.7053661, "lon": -74.0180715 }, + { "lat": 40.7053623, "lon": -74.0181411 }, + { "lat": 40.7055854, "lon": -74.0181626 }, + { "lat": 40.7056001, "lon": -74.0181639 }, + { "lat": 40.7056123, "lon": -74.0181649 }, + { "lat": 40.7058360, "lon": -74.0181864 }, + { "lat": 40.7058349, "lon": -74.0182165 }, + { "lat": 40.7058339, "lon": -74.0182421 }, + { "lat": 40.7057306, "lon": -74.0182321 }, + { "lat": 40.7057268, "lon": -74.0183018 }, + { "lat": 40.7057004, "lon": -74.0182996 }, + { "lat": 40.7057042, "lon": -74.0182300 }, + { "lat": 40.7055245, "lon": -74.0182126 }, + { "lat": 40.7055206, "lon": -74.0182823 }, + { "lat": 40.7054981, "lon": -74.0182781 }, + { "lat": 40.7055019, "lon": -74.0182085 }, + { "lat": 40.7053595, "lon": -74.0181948 }, + { "lat": 40.7053557, "lon": -74.0182644 }, + { "lat": 40.7054342, "lon": -74.0182720 }, + { "lat": 40.7053876, "lon": -74.0183226 }, + { "lat": 40.7054628, "lon": -74.0184433 }, + { "lat": 40.7054747, "lon": -74.0184305 }, + { "lat": 40.7054939, "lon": -74.0184602 }, + { "lat": 40.7054858, "lon": -74.0184691 }, + { "lat": 40.7054906, "lon": -74.0184766 }, + { "lat": 40.7055105, "lon": -74.0185042 }, + { "lat": 40.7055301, "lon": -74.0184834 }, + { "lat": 40.7055669, "lon": -74.0185679 }, + { "lat": 40.7055827, "lon": -74.0185970 }, + { "lat": 40.7055731, "lon": -74.0186144 }, + { "lat": 40.7055634, "lon": -74.0186319 }, + { "lat": 40.7055031, "lon": -74.0185773 }, + { "lat": 40.7054919, "lon": -74.0186000 }, + { "lat": 40.7054396, "lon": -74.0185186 }, + { "lat": 40.7053984, "lon": -74.0184546 }, + { "lat": 40.7053346, "lon": -74.0184988 }, + { "lat": 40.7052965, "lon": -74.0184583 }, + { "lat": 40.7053078, "lon": -74.0184400 }, + { "lat": 40.7053365, "lon": -74.0184300 }, + { "lat": 40.7053522, "lon": -74.0184120 }, + { "lat": 40.7053588, "lon": -74.0184214 }, + { "lat": 40.7053713, "lon": -74.0184058 }, + { "lat": 40.7053806, "lon": -74.0183942 }, + { "lat": 40.7053240, "lon": -74.0183074 }, + { "lat": 40.7053306, "lon": -74.0182993 }, + { "lat": 40.7052558, "lon": -74.0181840 }, + { "lat": 40.7052380, "lon": -74.0182038 }, + { "lat": 40.7052182, "lon": -74.0182259 }, + { "lat": 40.7052279, "lon": -74.0182413 }, + { "lat": 40.7052045, "lon": -74.0182684 }, + { "lat": 40.7051895, "lon": -74.0182859 }, + { "lat": 40.7051850, "lon": -74.0182812 }, + { "lat": 40.7051489, "lon": -74.0182426 }, + { "lat": 40.7051113, "lon": -74.0182023 }, + { "lat": 40.7051047, "lon": -74.0181954 }, + { "lat": 40.7051163, "lon": -74.0181635 }, + { "lat": 40.7051460, "lon": -74.0181645 }, + { "lat": 40.7051466, "lon": -74.0181456 }, + { "lat": 40.7051476, "lon": -74.0181156 }, + { "lat": 40.7051173, "lon": -74.0181149 }, + { "lat": 40.7051176, "lon": -74.0180824 }, + { "lat": 40.7050988, "lon": -74.0180814 }, + { "lat": 40.7050975, "lon": -74.0181085 }, + { "lat": 40.7050764, "lon": -74.0181089 }, + { "lat": 40.7050488, "lon": -74.0180902 }, + { "lat": 40.7050502, "lon": -74.0180572 }, + { "lat": 40.7050906, "lon": -74.0180123 }, + { "lat": 40.7049983, "lon": -74.0178676 }, + { "lat": 40.7049578, "lon": -74.0179126 }, + { "lat": 40.7049504, "lon": -74.0179016 }, + { "lat": 40.7049414, "lon": -74.0178883 }, + { "lat": 40.7049819, "lon": -74.0178433 }, + { "lat": 40.7049443, "lon": -74.0177844 }, + { "lat": 40.7049038, "lon": -74.0178294 }, + { "lat": 40.7048880, "lon": -74.0178078 }, + { "lat": 40.7049285, "lon": -74.0177628 }, + { "lat": 40.7048357, "lon": -74.0176176 }, + { "lat": 40.7047953, "lon": -74.0176626 }, + { "lat": 40.7047795, "lon": -74.0176363 }, + { "lat": 40.7047622, "lon": -74.0176073 }, + { "lat": 40.7047994, "lon": -74.0175670 }, + { "lat": 40.7047555, "lon": -74.0174984 }, + { "lat": 40.7047740, "lon": -74.0174795 }, + { "lat": 40.7047905, "lon": -74.0174627 }, + { "lat": 40.7048331, "lon": -74.0175295 }, + { "lat": 40.7048736, "lon": -74.0174845 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 827478707, + "bounds": { + "minlat": 40.7055582, + "minlon": -74.0191097, + "maxlat": 40.7061173, + "maxlon": -74.0181366 + }, + "nodes": [ + 7725343630, + 4207000192, + 7208978581, + 7445073846, + 7725358492, + 7725358493, + 7725334484, + 7725358485, + 7725343640, + 7208978578, + 7445073848, + 7725343641, + 7725358500, + 7725358501, + 7725358504, + 7725358505, + 7725358506, + 7725358509, + 7725358510, + 7725335908, + 7725335822, + 7725335821, + 7725335820, + 7725335819, + 7725335818, + 7725335817, + 7725335816, + 7725335815, + 7725335802, + 7725335803, + 7725334473, + 9371193663, + 7725320016, + 7725320012, + 7725320013, + 7725320017, + 7725320014, + 7725320015, + 7725320018, + 7725319985, + 7725305784, + 7725305782, + 7725305783, + 7725319993, + 7725319992, + 7725319991, + 7725319990, + 9371193664, + 7725343629, + 7725343628, + 7725343627, + 7725343626, + 7725343625, + 7725343624, + 7725343623, + 7725343622, + 7725343621, + 7725343620, + 7725343619, + 2823623523, + 7725343649, + 7725343654, + 7725343642, + 7725343643, + 7725343644, + 7725343645, + 7725343646, + 7725343647, + 7725343648, + 7725343630 + ], + "geometry": [ + { "lat": 40.7061173, "lon": -74.0182545 }, + { "lat": 40.7060913, "lon": -74.0181929 }, + { "lat": 40.7060751, "lon": -74.0181545 }, + { "lat": 40.7059516, "lon": -74.0181399 }, + { "lat": 40.7059461, "lon": -74.0181366 }, + { "lat": 40.7059445, "lon": -74.0181598 }, + { "lat": 40.7059435, "lon": -74.0181746 }, + { "lat": 40.7059420, "lon": -74.0181978 }, + { "lat": 40.7059406, "lon": -74.0182178 }, + { "lat": 40.7059484, "lon": -74.0182187 }, + { "lat": 40.7059469, "lon": -74.0182401 }, + { "lat": 40.7059391, "lon": -74.0182477 }, + { "lat": 40.7059381, "lon": -74.0182603 }, + { "lat": 40.7059366, "lon": -74.0182835 }, + { "lat": 40.7059356, "lon": -74.0182984 }, + { "lat": 40.7059340, "lon": -74.0183215 }, + { "lat": 40.7059155, "lon": -74.0183194 }, + { "lat": 40.7058894, "lon": -74.0183164 }, + { "lat": 40.7058709, "lon": -74.0183142 }, + { "lat": 40.7058301, "lon": -74.0183117 }, + { "lat": 40.7057825, "lon": -74.0183071 }, + { "lat": 40.7057769, "lon": -74.0184388 }, + { "lat": 40.7057347, "lon": -74.0184364 }, + { "lat": 40.7057133, "lon": -74.0184616 }, + { "lat": 40.7056968, "lon": -74.0184770 }, + { "lat": 40.7056750, "lon": -74.0184928 }, + { "lat": 40.7056582, "lon": -74.0185001 }, + { "lat": 40.7056379, "lon": -74.0185069 }, + { "lat": 40.7056406, "lon": -74.0185127 }, + { "lat": 40.7055669, "lon": -74.0185679 }, + { "lat": 40.7055827, "lon": -74.0185970 }, + { "lat": 40.7055731, "lon": -74.0186144 }, + { "lat": 40.7055634, "lon": -74.0186319 }, + { "lat": 40.7055582, "lon": -74.0186638 }, + { "lat": 40.7055585, "lon": -74.0186964 }, + { "lat": 40.7055644, "lon": -74.0187281 }, + { "lat": 40.7055751, "lon": -74.0187565 }, + { "lat": 40.7055903, "lon": -74.0187812 }, + { "lat": 40.7056091, "lon": -74.0188009 }, + { "lat": 40.7056035, "lon": -74.0188063 }, + { "lat": 40.7056084, "lon": -74.0188213 }, + { "lat": 40.7056011, "lon": -74.0188242 }, + { "lat": 40.7056431, "lon": -74.0189466 }, + { "lat": 40.7056483, "lon": -74.0189430 }, + { "lat": 40.7057225, "lon": -74.0190819 }, + { "lat": 40.7057051, "lon": -74.0190957 }, + { "lat": 40.7057436, "lon": -74.0191097 }, + { "lat": 40.7057573, "lon": -74.0190939 }, + { "lat": 40.7057741, "lon": -74.0190745 }, + { "lat": 40.7057443, "lon": -74.0190118 }, + { "lat": 40.7057548, "lon": -74.0189977 }, + { "lat": 40.7057454, "lon": -74.0189749 }, + { "lat": 40.7057258, "lon": -74.0190017 }, + { "lat": 40.7057121, "lon": -74.0189726 }, + { "lat": 40.7056790, "lon": -74.0188894 }, + { "lat": 40.7056610, "lon": -74.0188358 }, + { "lat": 40.7056508, "lon": -74.0187888 }, + { "lat": 40.7056442, "lon": -74.0187362 }, + { "lat": 40.7056802, "lon": -74.0186958 }, + { "lat": 40.7056726, "lon": -74.0186569 }, + { "lat": 40.7057386, "lon": -74.0185925 }, + { "lat": 40.7057342, "lon": -74.0185820 }, + { "lat": 40.7057428, "lon": -74.0185719 }, + { "lat": 40.7057296, "lon": -74.0185518 }, + { "lat": 40.7057728, "lon": -74.0185028 }, + { "lat": 40.7058643, "lon": -74.0184150 }, + { "lat": 40.7059446, "lon": -74.0183493 }, + { "lat": 40.7060188, "lon": -74.0182936 }, + { "lat": 40.7060340, "lon": -74.0183222 }, + { "lat": 40.7061173, "lon": -74.0182545 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 827478708, + "bounds": { + "minlat": 40.7058399, + "minlon": -74.0182545, + "maxlat": 40.7061839, + "maxlon": -74.0180177 + }, + "nodes": [ + 7725358492, + 7725358491, + 7725358488, + 7725358487, + 7725335903, + 11374486392, + 7725334454, + 246872854, + 7725343639, + 7725343638, + 7725343637, + 7725343636, + 11374486391, + 7725343656, + 7725343657, + 7725343658, + 7725343635, + 11374486396, + 7725343634, + 7725343633, + 7725343632, + 7725343631, + 7725343630, + 4207000192, + 7208978581, + 7208979000, + 7445073845, + 7445073846, + 7725358492 + ], + "geometry": [ + { "lat": 40.7059461, "lon": -74.0181366 }, + { "lat": 40.7059276, "lon": -74.0181344 }, + { "lat": 40.7059014, "lon": -74.0181321 }, + { "lat": 40.7058829, "lon": -74.0181299 }, + { "lat": 40.7058399, "lon": -74.0181168 }, + { "lat": 40.7058406, "lon": -74.0181015 }, + { "lat": 40.7058414, "lon": -74.0180831 }, + { "lat": 40.7059253, "lon": -74.0180764 }, + { "lat": 40.7060016, "lon": -74.0180643 }, + { "lat": 40.7060711, "lon": -74.0180469 }, + { "lat": 40.7060988, "lon": -74.0180395 }, + { "lat": 40.7061762, "lon": -74.0180177 }, + { "lat": 40.7061816, "lon": -74.0180413 }, + { "lat": 40.7061839, "lon": -74.0180511 }, + { "lat": 40.7061199, "lon": -74.0180739 }, + { "lat": 40.7061240, "lon": -74.0180938 }, + { "lat": 40.7061558, "lon": -74.0180824 }, + { "lat": 40.7061659, "lon": -74.0181226 }, + { "lat": 40.7061706, "lon": -74.0181411 }, + { "lat": 40.7061665, "lon": -74.0182001 }, + { "lat": 40.7061731, "lon": -74.0181957 }, + { "lat": 40.7061774, "lon": -74.0182056 }, + { "lat": 40.7061173, "lon": -74.0182545 }, + { "lat": 40.7060913, "lon": -74.0181929 }, + { "lat": 40.7060751, "lon": -74.0181545 }, + { "lat": 40.7060765, "lon": -74.0181340 }, + { "lat": 40.7059529, "lon": -74.0181194 }, + { "lat": 40.7059516, "lon": -74.0181399 }, + { "lat": 40.7059461, "lon": -74.0181366 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 827478709, + "bounds": { + "minlat": 40.7058724, + "minlon": -74.0182932, + "maxlat": 40.7058919, + "maxlon": -74.0182768 + }, + "nodes": [ + 7725358508, + 7725358507, + 7725358498, + 7725358497, + 7725358508 + ], + "geometry": [ + { "lat": 40.7058910, "lon": -74.0182932 }, + { "lat": 40.7058724, "lon": -74.0182910 }, + { "lat": 40.7058734, "lon": -74.0182768 }, + { "lat": 40.7058919, "lon": -74.0182790 }, + { "lat": 40.7058910, "lon": -74.0182932 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 827478710, + "bounds": { + "minlat": 40.7058804, + "minlon": -74.0181695, + "maxlat": 40.7058999, + "maxlon": -74.0181531 + }, + "nodes": [ + 7725334480, + 7725334479, + 7725358490, + 7725358489, + 7725334480 + ], + "geometry": [ + { "lat": 40.7058989, "lon": -74.0181695 }, + { "lat": 40.7058804, "lon": -74.0181673 }, + { "lat": 40.7058814, "lon": -74.0181531 }, + { "lat": 40.7058999, "lon": -74.0181552 }, + { "lat": 40.7058989, "lon": -74.0181695 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 827478711, + "bounds": { + "minlat": 40.7058301, + "minlon": -74.0183194, + "maxlat": 40.7059445, + "maxlon": -74.0181168 + }, + "nodes": [ + 7725358500, + 7725343641, + 7445073847, + 7208978995, + 7725343640, + 7725358485, + 7725358486, + 7725334483, + 7725334484, + 7725358493, + 7725358494, + 7725358491, + 7725358488, + 7725358489, + 7725334480, + 7725334481, + 7725334482, + 7725334479, + 7725358490, + 7725358487, + 7725335903, + 7725335904, + 7208978583, + 7725335907, + 7725335908, + 7725358510, + 7725358507, + 7725358498, + 7725358495, + 7725358496, + 7725358497, + 7725358508, + 7725358509, + 7725358506, + 7725358503, + 7725358504, + 7725358501, + 7725358502, + 7725358499, + 7725358500 + ], + "geometry": [ + { "lat": 40.7059381, "lon": -74.0182603 }, + { "lat": 40.7059391, "lon": -74.0182477 }, + { "lat": 40.7058719, "lon": -74.0182310 }, + { "lat": 40.7058734, "lon": -74.0182096 }, + { "lat": 40.7059406, "lon": -74.0182178 }, + { "lat": 40.7059420, "lon": -74.0181978 }, + { "lat": 40.7059235, "lon": -74.0181957 }, + { "lat": 40.7059250, "lon": -74.0181725 }, + { "lat": 40.7059435, "lon": -74.0181746 }, + { "lat": 40.7059445, "lon": -74.0181598 }, + { "lat": 40.7059260, "lon": -74.0181576 }, + { "lat": 40.7059276, "lon": -74.0181344 }, + { "lat": 40.7059014, "lon": -74.0181321 }, + { "lat": 40.7058999, "lon": -74.0181552 }, + { "lat": 40.7058989, "lon": -74.0181695 }, + { "lat": 40.7058974, "lon": -74.0181927 }, + { "lat": 40.7058789, "lon": -74.0181905 }, + { "lat": 40.7058804, "lon": -74.0181673 }, + { "lat": 40.7058814, "lon": -74.0181531 }, + { "lat": 40.7058829, "lon": -74.0181299 }, + { "lat": 40.7058399, "lon": -74.0181168 }, + { "lat": 40.7058360, "lon": -74.0181864 }, + { "lat": 40.7058349, "lon": -74.0182165 }, + { "lat": 40.7058339, "lon": -74.0182421 }, + { "lat": 40.7058301, "lon": -74.0183117 }, + { "lat": 40.7058709, "lon": -74.0183142 }, + { "lat": 40.7058724, "lon": -74.0182910 }, + { "lat": 40.7058734, "lon": -74.0182768 }, + { "lat": 40.7058750, "lon": -74.0182536 }, + { "lat": 40.7058935, "lon": -74.0182558 }, + { "lat": 40.7058919, "lon": -74.0182790 }, + { "lat": 40.7058910, "lon": -74.0182932 }, + { "lat": 40.7058894, "lon": -74.0183164 }, + { "lat": 40.7059155, "lon": -74.0183194 }, + { "lat": 40.7059171, "lon": -74.0182962 }, + { "lat": 40.7059356, "lon": -74.0182984 }, + { "lat": 40.7059366, "lon": -74.0182835 }, + { "lat": 40.7059181, "lon": -74.0182813 }, + { "lat": 40.7059196, "lon": -74.0182581 }, + { "lat": 40.7059381, "lon": -74.0182603 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 827478717, + "bounds": { + "minlat": 40.7054464, + "minlon": -74.0185042, + "maxlat": 40.7057345, + "maxlon": -74.0182771 + }, + "nodes": [ + 7725335808, + 7725335809, + 7725335812, + 7725335810, + 7725335813, + 7725335811, + 7725335814, + 7725335787, + 7725335806, + 7725335805, + 7725335804, + 7725334474, + 7725335796, + 7725335797, + 7725335798, + 7725343664, + 7725343663, + 7725335843, + 7725335844, + 7725335838, + 7725335892, + 7725335893, + 7725335786, + 7725335788, + 7725335789, + 7725335790, + 7725335791, + 7725335785, + 7725309884, + 7725309883, + 7725309882, + 7725309881, + 7725309880, + 7725335794, + 7725335795, + 7725309879, + 7725309878, + 7725309877, + 7725335896, + 7725335905, + 7725335808 + ], + "geometry": [ + { "lat": 40.7057345, "lon": -74.0183025 }, + { "lat": 40.7057301, "lon": -74.0183986 }, + { "lat": 40.7057072, "lon": -74.0183788 }, + { "lat": 40.7056887, "lon": -74.0184081 }, + { "lat": 40.7056663, "lon": -74.0184321 }, + { "lat": 40.7056421, "lon": -74.0184492 }, + { "lat": 40.7056063, "lon": -74.0184606 }, + { "lat": 40.7056109, "lon": -74.0184718 }, + { "lat": 40.7055832, "lon": -74.0184924 }, + { "lat": 40.7055657, "lon": -74.0184525 }, + { "lat": 40.7055301, "lon": -74.0184834 }, + { "lat": 40.7055105, "lon": -74.0185042 }, + { "lat": 40.7054906, "lon": -74.0184766 }, + { "lat": 40.7055517, "lon": -74.0184088 }, + { "lat": 40.7055469, "lon": -74.0184013 }, + { "lat": 40.7055034, "lon": -74.0184496 }, + { "lat": 40.7054798, "lon": -74.0184132 }, + { "lat": 40.7054940, "lon": -74.0183978 }, + { "lat": 40.7054464, "lon": -74.0183214 }, + { "lat": 40.7054872, "lon": -74.0182771 }, + { "lat": 40.7054981, "lon": -74.0182781 }, + { "lat": 40.7055206, "lon": -74.0182823 }, + { "lat": 40.7055375, "lon": -74.0182839 }, + { "lat": 40.7055272, "lon": -74.0183269 }, + { "lat": 40.7055047, "lon": -74.0183303 }, + { "lat": 40.7055072, "lon": -74.0183590 }, + { "lat": 40.7055297, "lon": -74.0183555 }, + { "lat": 40.7055743, "lon": -74.0183831 }, + { "lat": 40.7055921, "lon": -74.0183298 }, + { "lat": 40.7056061, "lon": -74.0183392 }, + { "lat": 40.7056150, "lon": -74.0183499 }, + { "lat": 40.7056221, "lon": -74.0183697 }, + { "lat": 40.7056381, "lon": -74.0183511 }, + { "lat": 40.7056403, "lon": -74.0183765 }, + { "lat": 40.7056664, "lon": -74.0183725 }, + { "lat": 40.7056649, "lon": -74.0183558 }, + { "lat": 40.7056930, "lon": -74.0183466 }, + { "lat": 40.7056948, "lon": -74.0182990 }, + { "lat": 40.7057004, "lon": -74.0182996 }, + { "lat": 40.7057268, "lon": -74.0183018 }, + { "lat": 40.7057345, "lon": -74.0183025 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827478720, + "bounds": { + "minlat": 40.7047173, + "minlon": -74.0188906, + "maxlat": 40.7049984, + "maxlon": -74.0185545 + }, + "nodes": [ + 6894106332, + 12400793688, + 7725343671, + 6894104467, + 6894104470, + 7725343670, + 7725343669, + 6894104469, + 6894104468, + 12400793687, + 7725300251, + 7725300252, + 7725300253, + 7725300254, + 6894106322, + 12400793686, + 6894106319, + 6894106334, + 6894106333, + 6894106332 + ], + "geometry": [ + { "lat": 40.7049464, "lon": -74.0188906 }, + { "lat": 40.7049400, "lon": -74.0188847 }, + { "lat": 40.7049308, "lon": -74.0188763 }, + { "lat": 40.7049397, "lon": -74.0188615 }, + { "lat": 40.7049662, "lon": -74.0188165 }, + { "lat": 40.7049735, "lon": -74.0188029 }, + { "lat": 40.7047681, "lon": -74.0185897 }, + { "lat": 40.7047597, "lon": -74.0186047 }, + { "lat": 40.7047332, "lon": -74.0186497 }, + { "lat": 40.7047273, "lon": -74.0186410 }, + { "lat": 40.7047173, "lon": -74.0186262 }, + { "lat": 40.7047213, "lon": -74.0186259 }, + { "lat": 40.7047241, "lon": -74.0186232 }, + { "lat": 40.7047652, "lon": -74.0185545 }, + { "lat": 40.7048539, "lon": -74.0186473 }, + { "lat": 40.7048836, "lon": -74.0186780 }, + { "lat": 40.7049151, "lon": -74.0187106 }, + { "lat": 40.7049984, "lon": -74.0187969 }, + { "lat": 40.7049475, "lon": -74.0188832 }, + { "lat": 40.7049464, "lon": -74.0188906 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827478721, + "bounds": { + "minlat": 40.7048539, + "minlon": -74.0187106, + "maxlat": 40.7049387, + "maxlon": -74.0186069 + }, + "nodes": [ + 7725343673, + 7725343672, + 12400793684, + 6894106322, + 12400793686, + 6894106319, + 12400793685, + 7725343673 + ], + "geometry": [ + { "lat": 40.7049387, "lon": -74.0186693 }, + { "lat": 40.7048788, "lon": -74.0186069 }, + { "lat": 40.7048641, "lon": -74.0186308 }, + { "lat": 40.7048539, "lon": -74.0186473 }, + { "lat": 40.7048836, "lon": -74.0186780 }, + { "lat": 40.7049151, "lon": -74.0187106 }, + { "lat": 40.7049249, "lon": -74.0186934 }, + { "lat": 40.7049387, "lon": -74.0186693 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827478722, + "bounds": { + "minlat": 40.7047101, + "minlon": -74.0188547, + "maxlat": 40.7052285, + "maxlon": -74.0182048 + }, + "nodes": [ + 7725343673, + 12400793685, + 6894106319, + 6894106334, + 6894106335, + 6894106318, + 7725320029, + 7725320033, + 7725320049, + 6894106317, + 7725320048, + 7725320045, + 7725343675, + 12400793683, + 7725343674, + 7725300267, + 6894106320, + 7725300268, + 7725300263, + 7725300259, + 7725300260, + 6894106321, + 7725300254, + 6894106322, + 12400793684, + 7725343672, + 1430380051, + 1430380053, + 1430380074, + 1430380061, + 7725343673 + ], + "geometry": [ + { "lat": 40.7049387, "lon": -74.0186693 }, + { "lat": 40.7049249, "lon": -74.0186934 }, + { "lat": 40.7049151, "lon": -74.0187106 }, + { "lat": 40.7049984, "lon": -74.0187969 }, + { "lat": 40.7050451, "lon": -74.0188433 }, + { "lat": 40.7050565, "lon": -74.0188547 }, + { "lat": 40.7051079, "lon": -74.0187692 }, + { "lat": 40.7051514, "lon": -74.0186968 }, + { "lat": 40.7051972, "lon": -74.0186205 }, + { "lat": 40.7052285, "lon": -74.0185685 }, + { "lat": 40.7052248, "lon": -74.0185649 }, + { "lat": 40.7052070, "lon": -74.0185461 }, + { "lat": 40.7051664, "lon": -74.0185012 }, + { "lat": 40.7050618, "lon": -74.0183893 }, + { "lat": 40.7050279, "lon": -74.0183530 }, + { "lat": 40.7049150, "lon": -74.0182373 }, + { "lat": 40.7048850, "lon": -74.0182048 }, + { "lat": 40.7048787, "lon": -74.0182162 }, + { "lat": 40.7048121, "lon": -74.0183282 }, + { "lat": 40.7047745, "lon": -74.0183893 }, + { "lat": 40.7047162, "lon": -74.0184869 }, + { "lat": 40.7047101, "lon": -74.0184967 }, + { "lat": 40.7047652, "lon": -74.0185545 }, + { "lat": 40.7048539, "lon": -74.0186473 }, + { "lat": 40.7048641, "lon": -74.0186308 }, + { "lat": 40.7048788, "lon": -74.0186069 }, + { "lat": 40.7047676, "lon": -74.0184909 }, + { "lat": 40.7048921, "lon": -74.0182831 }, + { "lat": 40.7051736, "lon": -74.0185766 }, + { "lat": 40.7050491, "lon": -74.0187844 }, + { "lat": 40.7049387, "lon": -74.0186693 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827478723, + "bounds": { + "minlat": 40.7050279, + "minlon": -74.0185012, + "maxlat": 40.7052013, + "maxlon": -74.0182023 + }, + "nodes": [ + 2824986193, + 2824986192, + 2824986191, + 2824986190, + 7725343676, + 7725343675, + 12400793683, + 7725343674, + 2824986186, + 2824986188, + 2824986187, + 2824986189, + 9371193661, + 2824986193 + ], + "geometry": [ + { "lat": 40.7051850, "lon": -74.0182812 }, + { "lat": 40.7051509, "lon": -74.0183445 }, + { "lat": 40.7051396, "lon": -74.0183339 }, + { "lat": 40.7051223, "lon": -74.0183660 }, + { "lat": 40.7052013, "lon": -74.0184396 }, + { "lat": 40.7051664, "lon": -74.0185012 }, + { "lat": 40.7050618, "lon": -74.0183893 }, + { "lat": 40.7050279, "lon": -74.0183530 }, + { "lat": 40.7050587, "lon": -74.0183026 }, + { "lat": 40.7050950, "lon": -74.0182480 }, + { "lat": 40.7050870, "lon": -74.0182388 }, + { "lat": 40.7051113, "lon": -74.0182023 }, + { "lat": 40.7051489, "lon": -74.0182426 }, + { "lat": 40.7051850, "lon": -74.0182812 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827479799, + "bounds": { + "minlat": 40.7045758, + "minlon": -74.0192325, + "maxlat": 40.7057337, + "maxlon": -74.0181812 + }, + "nodes": [ + 7725334451, + 607907621, + 7725300249, + 7725300250, + 7725300251, + 12400793687, + 6894104468, + 7725379247, + 7725379246, + 7725379245, + 7725379244, + 7725379243, + 7725343671, + 12400793688, + 6894106332, + 6894106331, + 6894106340, + 6894106339, + 6894106338, + 7725320028, + 7725320025, + 7725320027, + 7725320024, + 7725320026, + 7725305780, + 7725305779, + 7725319988, + 7725319989, + 8279851580, + 7725379242, + 2044075143, + 2044075105, + 2044075135, + 2044075089, + 2044075090, + 2044075085, + 7725312114, + 7725312111, + 7725334451 + ], + "geometry": [ + { "lat": 40.7046134, "lon": -74.0181812 }, + { "lat": 40.7046202, "lon": -74.0182075 }, + { "lat": 40.7046324, "lon": -74.0182541 }, + { "lat": 40.7047140, "lon": -74.0186202 }, + { "lat": 40.7047173, "lon": -74.0186262 }, + { "lat": 40.7047273, "lon": -74.0186410 }, + { "lat": 40.7047332, "lon": -74.0186497 }, + { "lat": 40.7047251, "lon": -74.0186631 }, + { "lat": 40.7047968, "lon": -74.0187385 }, + { "lat": 40.7047920, "lon": -74.0187483 }, + { "lat": 40.7048512, "lon": -74.0188083 }, + { "lat": 40.7048550, "lon": -74.0188009 }, + { "lat": 40.7049308, "lon": -74.0188763 }, + { "lat": 40.7049400, "lon": -74.0188847 }, + { "lat": 40.7049464, "lon": -74.0188906 }, + { "lat": 40.7049520, "lon": -74.0188966 }, + { "lat": 40.7049586, "lon": -74.0189013 }, + { "lat": 40.7049678, "lon": -74.0189067 }, + { "lat": 40.7050481, "lon": -74.0189342 }, + { "lat": 40.7050495, "lon": -74.0189454 }, + { "lat": 40.7050805, "lon": -74.0189447 }, + { "lat": 40.7051112, "lon": -74.0189508 }, + { "lat": 40.7051414, "lon": -74.0189639 }, + { "lat": 40.7051694, "lon": -74.0189836 }, + { "lat": 40.7051753, "lon": -74.0189714 }, + { "lat": 40.7055945, "lon": -74.0191027 }, + { "lat": 40.7055918, "lon": -74.0191167 }, + { "lat": 40.7057337, "lon": -74.0191630 }, + { "lat": 40.7057291, "lon": -74.0191896 }, + { "lat": 40.7057216, "lon": -74.0192325 }, + { "lat": 40.7056676, "lon": -74.0192156 }, + { "lat": 40.7051301, "lon": -74.0190428 }, + { "lat": 40.7047597, "lon": -74.0189237 }, + { "lat": 40.7047414, "lon": -74.0189029 }, + { "lat": 40.7047301, "lon": -74.0188793 }, + { "lat": 40.7047225, "lon": -74.0188491 }, + { "lat": 40.7045758, "lon": -74.0182132 }, + { "lat": 40.7045966, "lon": -74.0181922 }, + { "lat": 40.7046134, "lon": -74.0181812 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827503257, + "bounds": { + "minlat": 40.7293453, + "minlon": -73.9503160, + "maxlat": 40.7295147, + "maxlon": -73.9502190 + }, + "nodes": [ + 2991742391, + 7725555866 + ], + "geometry": [ + { "lat": 40.7295147, "lon": -73.9503160 }, + { "lat": 40.7293453, "lon": -73.9502190 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827503258, + "bounds": { + "minlat": 40.7297295, + "minlon": -73.9592330, + "maxlat": 40.7298876, + "maxlon": -73.9575954 + }, + "nodes": [ + 42514451, + 8097159357, + 8549559004, + 11155242481, + 8097159416, + 9788947563, + 7725555869 + ], + "geometry": [ + { "lat": 40.7298876, "lon": -73.9575954 }, + { "lat": 40.7298780, "lon": -73.9577011 }, + { "lat": 40.7298738, "lon": -73.9577471 }, + { "lat": 40.7298508, "lon": -73.9579838 }, + { "lat": 40.7297427, "lon": -73.9590932 }, + { "lat": 40.7297371, "lon": -73.9591552 }, + { "lat": 40.7297295, "lon": -73.9592330 } + ], + "tags": { + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 827503259, + "bounds": { + "minlat": 40.7319782, + "minlon": -73.9392069, + "maxlat": 40.7325015, + "maxlon": -73.9381013 + }, + "nodes": [ + 6909063453, + 9989992500, + 9989992502, + 9989992501, + 9989992503, + 7725555871 + ], + "geometry": [ + { "lat": 40.7325015, "lon": -73.9381013 }, + { "lat": 40.7324050, "lon": -73.9382896 }, + { "lat": 40.7321870, "lon": -73.9383674 }, + { "lat": 40.7319782, "lon": -73.9389604 }, + { "lat": 40.7320090, "lon": -73.9390897 }, + { "lat": 40.7322026, "lon": -73.9392069 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 827503261, + "bounds": { + "minlat": 40.7291088, + "minlon": -73.9374154, + "maxlat": 40.7337615, + "maxlon": -73.9311134 + }, + "nodes": [ + 42856261, + 6721346264, + 6721052064, + 5482230612, + 6721346252, + 9982697990, + 7127447355, + 9982697991, + 9982697992, + 9982697993, + 42856262, + 597663709, + 9982697994, + 9982697995, + 7127447352, + 9982697996, + 9194902833, + 9982697997, + 9194902834, + 9194902835, + 9982697998, + 9194902836, + 9194902837, + 279156248, + 42825195 + ], + "geometry": [ + { "lat": 40.7337615, "lon": -73.9374154 }, + { "lat": 40.7334333, "lon": -73.9370866 }, + { "lat": 40.7328648, "lon": -73.9365213 }, + { "lat": 40.7326610, "lon": -73.9363177 }, + { "lat": 40.7325331, "lon": -73.9361926 }, + { "lat": 40.7323703, "lon": -73.9360268 }, + { "lat": 40.7321308, "lon": -73.9357830 }, + { "lat": 40.7318914, "lon": -73.9355364 }, + { "lat": 40.7318486, "lon": -73.9354910 }, + { "lat": 40.7318095, "lon": -73.9354426 }, + { "lat": 40.7317691, "lon": -73.9353896 }, + { "lat": 40.7310415, "lon": -73.9343229 }, + { "lat": 40.7309567, "lon": -73.9342000 }, + { "lat": 40.7304713, "lon": -73.9334851 }, + { "lat": 40.7303715, "lon": -73.9333401 }, + { "lat": 40.7296783, "lon": -73.9323104 }, + { "lat": 40.7293142, "lon": -73.9317741 }, + { "lat": 40.7292868, "lon": -73.9317306 }, + { "lat": 40.7292608, "lon": -73.9316858 }, + { "lat": 40.7292361, "lon": -73.9316422 }, + { "lat": 40.7292186, "lon": -73.9316057 }, + { "lat": 40.7292032, "lon": -73.9315640 }, + { "lat": 40.7291868, "lon": -73.9315059 }, + { "lat": 40.7291250, "lon": -73.9311991 }, + { "lat": 40.7291088, "lon": -73.9311134 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Review Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827503262, + "bounds": { + "minlat": 40.7359143, + "minlon": -73.9342620, + "maxlat": 40.7365614, + "maxlon": -73.9338396 + }, + "nodes": [ + 7725555873, + 10743730302, + 7725555875, + 5482230598, + 10743730299, + 5482230599 + ], + "geometry": [ + { "lat": 40.7365614, "lon": -73.9342620 }, + { "lat": 40.7365081, "lon": -73.9342271 }, + { "lat": 40.7364125, "lon": -73.9341646 }, + { "lat": 40.7360660, "lon": -73.9339367 }, + { "lat": 40.7359738, "lon": -73.9338777 }, + { "lat": 40.7359143, "lon": -73.9338396 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827503263, + "bounds": { + "minlat": 40.7363065, + "minlon": -73.9344498, + "maxlat": 40.7364125, + "maxlon": -73.9341646 + }, + "nodes": [ + 7725555874, + 7725555875 + ], + "geometry": [ + { "lat": 40.7363065, "lon": -73.9344498 }, + { "lat": 40.7364125, "lon": -73.9341646 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827503264, + "bounds": { + "minlat": 40.7359615, + "minlon": -73.9344498, + "maxlat": 40.7363065, + "maxlon": -73.9342244 + }, + "nodes": [ + 7725555874, + 5482230597 + ], + "geometry": [ + { "lat": 40.7363065, "lon": -73.9344498 }, + { "lat": 40.7359615, "lon": -73.9342244 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827503265, + "bounds": { + "minlat": 40.7365585, + "minlon": -73.9330537, + "maxlat": 40.7366370, + "maxlon": -73.9328529 + }, + "nodes": [ + 7725555876, + 10743730297, + 5482230590 + ], + "geometry": [ + { "lat": 40.7365585, "lon": -73.9330537 }, + { "lat": 40.7366088, "lon": -73.9329250 }, + { "lat": 40.7366370, "lon": -73.9328529 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827503266, + "bounds": { + "minlat": 40.7372644, + "minlon": -73.9307095, + "maxlat": 40.7374060, + "maxlon": -73.9306018 + }, + "nodes": [ + 7725555878, + 10743722275, + 7725555879 + ], + "geometry": [ + { "lat": 40.7374060, "lon": -73.9307095 }, + { "lat": 40.7373479, "lon": -73.9306653 }, + { "lat": 40.7372644, "lon": -73.9306018 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827503267, + "bounds": { + "minlat": 40.7376631, + "minlon": -73.9306102, + "maxlat": 40.7378092, + "maxlon": -73.9304980 + }, + "nodes": [ + 7298611004, + 10743722271, + 7725555880 + ], + "geometry": [ + { "lat": 40.7378092, "lon": -73.9304980 }, + { "lat": 40.7377383, "lon": -73.9305524 }, + { "lat": 40.7376631, "lon": -73.9306102 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827504185, + "bounds": { + "minlat": 40.7384691, + "minlon": -73.9277149, + "maxlat": 40.7386428, + "maxlon": -73.9275855 + }, + "nodes": [ + 7725582174, + 10743722305, + 7725582175 + ], + "geometry": [ + { "lat": 40.7386428, "lon": -73.9277149 }, + { "lat": 40.7385267, "lon": -73.9276284 }, + { "lat": 40.7384691, "lon": -73.9275855 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827561378, + "bounds": { + "minlat": 40.7057375, + "minlon": -74.0189977, + "maxlat": 40.7057963, + "maxlon": -74.0188965 + }, + "nodes": [ + 7725343627, + 7726030637, + 7726030638, + 2823623527, + 2823623528, + 2823623526, + 7725343618, + 7725343626, + 7725343627 + ], + "geometry": [ + { "lat": 40.7057548, "lon": -74.0189977 }, + { "lat": 40.7057738, "lon": -74.0189585 }, + { "lat": 40.7057677, "lon": -74.0189565 }, + { "lat": 40.7057792, "lon": -74.0189392 }, + { "lat": 40.7057963, "lon": -74.0189167 }, + { "lat": 40.7057734, "lon": -74.0188965 }, + { "lat": 40.7057375, "lon": -74.0189510 }, + { "lat": 40.7057454, "lon": -74.0189749 }, + { "lat": 40.7057548, "lon": -74.0189977 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827563207, + "bounds": { + "minlat": 40.7057216, + "minlon": -74.0193432, + "maxlat": 40.7065045, + "maxlon": -74.0191489 + }, + "nodes": [ + 7725379242, + 8279851580, + 7725319989, + 7726032236, + 9371193665, + 10616940017, + 7726032281, + 7726032280, + 7726053113, + 7726053112, + 7726032221, + 7726032270, + 7726032269, + 7726032265, + 7726032266, + 7726032279, + 7726032278, + 7726032222, + 7726032246, + 7726032247, + 7726032237, + 7726032238, + 7726032258, + 7726032259, + 8279851579, + 7726032197, + 246872864, + 2044075134, + 194613652, + 2044075161, + 7725379242 + ], + "geometry": [ + { "lat": 40.7057216, "lon": -74.0192325 }, + { "lat": 40.7057291, "lon": -74.0191896 }, + { "lat": 40.7057337, "lon": -74.0191630 }, + { "lat": 40.7057358, "lon": -74.0191516 }, + { "lat": 40.7057656, "lon": -74.0191600 }, + { "lat": 40.7057836, "lon": -74.0191650 }, + { "lat": 40.7058435, "lon": -74.0191818 }, + { "lat": 40.7060674, "lon": -74.0192525 }, + { "lat": 40.7060694, "lon": -74.0192425 }, + { "lat": 40.7060880, "lon": -74.0192465 }, + { "lat": 40.7060913, "lon": -74.0192256 }, + { "lat": 40.7061421, "lon": -74.0192361 }, + { "lat": 40.7061632, "lon": -74.0192314 }, + { "lat": 40.7061652, "lon": -74.0192431 }, + { "lat": 40.7063015, "lon": -74.0192083 }, + { "lat": 40.7063005, "lon": -74.0192007 }, + { "lat": 40.7063134, "lon": -74.0191979 }, + { "lat": 40.7063126, "lon": -74.0191926 }, + { "lat": 40.7063363, "lon": -74.0191868 }, + { "lat": 40.7063477, "lon": -74.0191844 }, + { "lat": 40.7063495, "lon": -74.0191955 }, + { "lat": 40.7064720, "lon": -74.0191660 }, + { "lat": 40.7064707, "lon": -74.0191536 }, + { "lat": 40.7064903, "lon": -74.0191489 }, + { "lat": 40.7064956, "lon": -74.0191840 }, + { "lat": 40.7065045, "lon": -74.0192429 }, + { "lat": 40.7065016, "lon": -74.0192436 }, + { "lat": 40.7063301, "lon": -74.0192889 }, + { "lat": 40.7060780, "lon": -74.0193432 }, + { "lat": 40.7059663, "lon": -74.0193088 }, + { "lat": 40.7057216, "lon": -74.0192325 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 827563208, + "bounds": { + "minlat": 40.7062627, + "minlon": -74.0186983, + "maxlat": 40.7064186, + "maxlon": -74.0185283 + }, + "nodes": [ + 7726029764, + 7726032223, + 2823623547, + 5615789840, + 5615789841, + 2823623541, + 7726029755, + 7726029754, + 7726029753, + 7726029764 + ], + "geometry": [ + { "lat": 40.7064181, "lon": -74.0186980 }, + { "lat": 40.7064146, "lon": -74.0186983 }, + { "lat": 40.7064148, "lon": -74.0186801 }, + { "lat": 40.7062627, "lon": -74.0185624 }, + { "lat": 40.7062631, "lon": -74.0185576 }, + { "lat": 40.7062847, "lon": -74.0185323 }, + { "lat": 40.7062932, "lon": -74.0185283 }, + { "lat": 40.7062675, "lon": -74.0185598 }, + { "lat": 40.7064186, "lon": -74.0186775 }, + { "lat": 40.7064181, "lon": -74.0186980 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827563209, + "bounds": { + "minlat": 40.7059522, + "minlon": -74.0190262, + "maxlat": 40.7064160, + "maxlon": -74.0186693 + }, + "nodes": [ + 7726030578, + 7726030577, + 7726030576, + 7726030575, + 7726030574, + 7726030573, + 2823623546, + 2823623539, + 2823623536, + 5615789839, + 2823623534, + 2823623535, + 2823623532, + 7726032226, + 7726030578 + ], + "geometry": [ + { "lat": 40.7059601, "lon": -74.0188639 }, + { "lat": 40.7060864, "lon": -74.0187248 }, + { "lat": 40.7061050, "lon": -74.0187392 }, + { "lat": 40.7061017, "lon": -74.0189075 }, + { "lat": 40.7062620, "lon": -74.0190262 }, + { "lat": 40.7064160, "lon": -74.0189137 }, + { "lat": 40.7064122, "lon": -74.0189064 }, + { "lat": 40.7062616, "lon": -74.0190152 }, + { "lat": 40.7061098, "lon": -74.0189012 }, + { "lat": 40.7061151, "lon": -74.0186693 }, + { "lat": 40.7060860, "lon": -74.0186859 }, + { "lat": 40.7060941, "lon": -74.0187002 }, + { "lat": 40.7059551, "lon": -74.0188508 }, + { "lat": 40.7059522, "lon": -74.0188542 }, + { "lat": 40.7059601, "lon": -74.0188639 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827563210, + "bounds": { + "minlat": 40.7059774, + "minlon": -74.0190651, + "maxlat": 40.7061291, + "maxlon": -74.0188834 + }, + "nodes": [ + 7726029733, + 7726029732, + 7726032210, + 7726032209, + 7726032208, + 7726032207, + 7726032206, + 7726032205, + 7726032204, + 7726032203, + 7726032202, + 7726032201, + 7726032200, + 7726032199, + 7726032198, + 7726032225, + 7726030529, + 7726030530, + 7726030531, + 7726030532, + 7726030533, + 7726030534, + 7726030535, + 7726030536, + 7726030537, + 7726030538, + 7726030539, + 7726032224, + 7726029733 + ], + "geometry": [ + { "lat": 40.7061291, "lon": -74.0190651 }, + { "lat": 40.7061195, "lon": -74.0190088 }, + { "lat": 40.7061164, "lon": -74.0190091 }, + { "lat": 40.7061117, "lon": -74.0189865 }, + { "lat": 40.7061031, "lon": -74.0189583 }, + { "lat": 40.7060966, "lon": -74.0189434 }, + { "lat": 40.7060880, "lon": -74.0189281 }, + { "lat": 40.7060777, "lon": -74.0189146 }, + { "lat": 40.7060643, "lon": -74.0189015 }, + { "lat": 40.7060487, "lon": -74.0188916 }, + { "lat": 40.7060314, "lon": -74.0188850 }, + { "lat": 40.7060180, "lon": -74.0188834 }, + { "lat": 40.7060041, "lon": -74.0188839 }, + { "lat": 40.7059877, "lon": -74.0188887 }, + { "lat": 40.7059774, "lon": -74.0188937 }, + { "lat": 40.7059803, "lon": -74.0189027 }, + { "lat": 40.7059909, "lon": -74.0188968 }, + { "lat": 40.7060106, "lon": -74.0188934 }, + { "lat": 40.7060282, "lon": -74.0188948 }, + { "lat": 40.7060465, "lon": -74.0189021 }, + { "lat": 40.7060638, "lon": -74.0189132 }, + { "lat": 40.7060788, "lon": -74.0189306 }, + { "lat": 40.7060872, "lon": -74.0189464 }, + { "lat": 40.7060956, "lon": -74.0189652 }, + { "lat": 40.7061030, "lon": -74.0189923 }, + { "lat": 40.7061096, "lon": -74.0190289 }, + { "lat": 40.7061121, "lon": -74.0190520 }, + { "lat": 40.7061130, "lon": -74.0190587 }, + { "lat": 40.7061291, "lon": -74.0190651 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827563211, + "bounds": { + "minlat": 40.7057358, + "minlon": -74.0192361, + "maxlat": 40.7065134, + "maxlon": -74.0186815 + }, + "nodes": [ + 7726032281, + 10616940017, + 9371193665, + 7726032236, + 7725319990, + 9371193664, + 7725343629, + 7726030633, + 7726030632, + 7726030631, + 7726030630, + 7726030629, + 7726032235, + 7726032234, + 7726032233, + 7726032232, + 7726032231, + 7726032230, + 7726032229, + 7726032228, + 7726032227, + 7726030624, + 7726030623, + 7726032226, + 7726030578, + 7726030579, + 7726032198, + 7726032225, + 7726030528, + 7726030527, + 7726030526, + 7726030525, + 7726030524, + 7726030523, + 7726030522, + 7726030521, + 7726030520, + 7726030519, + 7726030518, + 7726030517, + 7726030539, + 7726032224, + 7726029733, + 7726029734, + 7726029735, + 7726029736, + 7726029737, + 7726029738, + 7726029739, + 7726030565, + 7726030566, + 7726030567, + 7726030568, + 7726030569, + 7726029740, + 7726029741, + 7726029742, + 7726029743, + 7726029744, + 7726030572, + 7726030573, + 2823623546, + 7726032223, + 7726029764, + 7726029763, + 7726029752, + 7726029745, + 7726029746, + 10616940016, + 7726032250, + 7726032251, + 7726032252, + 7726032253, + 7726032254, + 7726032239, + 7726032242, + 7726032243, + 7726032244, + 7726032245, + 7726032246, + 7726032222, + 7726032277, + 7726032276, + 7726032275, + 7726032274, + 7726032273, + 7726032272, + 7726032271, + 7726032270, + 7726032221, + 7726053111, + 7726053110, + 7726032220, + 7726032219, + 7726032218, + 7726032217, + 7726032216, + 7726032215, + 7726032214, + 7726032213, + 7726032212, + 7726053104, + 7726053103, + 7726053102, + 7726030499, + 7726030500, + 7726030501, + 7726030502, + 7726030503, + 7726030504, + 7726030505, + 7726030489, + 7726030490, + 7726030491, + 7726030492, + 7726030493, + 7726053086, + 7726053085, + 7726053091, + 7726053092, + 7726053093, + 7726053094, + 7726053095, + 7726053096, + 7726053097, + 7726032281 + ], + "geometry": [ + { "lat": 40.7058435, "lon": -74.0191818 }, + { "lat": 40.7057836, "lon": -74.0191650 }, + { "lat": 40.7057656, "lon": -74.0191600 }, + { "lat": 40.7057358, "lon": -74.0191516 }, + { "lat": 40.7057436, "lon": -74.0191097 }, + { "lat": 40.7057573, "lon": -74.0190939 }, + { "lat": 40.7057741, "lon": -74.0190745 }, + { "lat": 40.7057906, "lon": -74.0190939 }, + { "lat": 40.7058297, "lon": -74.0190624 }, + { "lat": 40.7058600, "lon": -74.0190409 }, + { "lat": 40.7058890, "lon": -74.0190275 }, + { "lat": 40.7059103, "lon": -74.0190215 }, + { "lat": 40.7059106, "lon": -74.0190301 }, + { "lat": 40.7059172, "lon": -74.0190297 }, + { "lat": 40.7059183, "lon": -74.0190053 }, + { "lat": 40.7059200, "lon": -74.0189841 }, + { "lat": 40.7059238, "lon": -74.0189642 }, + { "lat": 40.7059299, "lon": -74.0189457 }, + { "lat": 40.7059387, "lon": -74.0189276 }, + { "lat": 40.7059464, "lon": -74.0189159 }, + { "lat": 40.7059596, "lon": -74.0188991 }, + { "lat": 40.7059542, "lon": -74.0188921 }, + { "lat": 40.7059393, "lon": -74.0188693 }, + { "lat": 40.7059522, "lon": -74.0188542 }, + { "lat": 40.7059601, "lon": -74.0188639 }, + { "lat": 40.7059745, "lon": -74.0188844 }, + { "lat": 40.7059774, "lon": -74.0188937 }, + { "lat": 40.7059803, "lon": -74.0189027 }, + { "lat": 40.7059688, "lon": -74.0189092 }, + { "lat": 40.7059535, "lon": -74.0189239 }, + { "lat": 40.7059423, "lon": -74.0189417 }, + { "lat": 40.7059317, "lon": -74.0189665 }, + { "lat": 40.7059276, "lon": -74.0189880 }, + { "lat": 40.7059263, "lon": -74.0190088 }, + { "lat": 40.7059263, "lon": -74.0190178 }, + { "lat": 40.7059573, "lon": -74.0190141 }, + { "lat": 40.7059815, "lon": -74.0190141 }, + { "lat": 40.7060084, "lon": -74.0190178 }, + { "lat": 40.7060407, "lon": -74.0190265 }, + { "lat": 40.7060748, "lon": -74.0190366 }, + { "lat": 40.7061121, "lon": -74.0190520 }, + { "lat": 40.7061130, "lon": -74.0190587 }, + { "lat": 40.7061291, "lon": -74.0190651 }, + { "lat": 40.7061477, "lon": -74.0190725 }, + { "lat": 40.7061759, "lon": -74.0190812 }, + { "lat": 40.7062062, "lon": -74.0190876 }, + { "lat": 40.7062344, "lon": -74.0190882 }, + { "lat": 40.7062646, "lon": -74.0190835 }, + { "lat": 40.7062635, "lon": -74.0190603 }, + { "lat": 40.7062862, "lon": -74.0190574 }, + { "lat": 40.7063078, "lon": -74.0190503 }, + { "lat": 40.7063307, "lon": -74.0190389 }, + { "lat": 40.7063533, "lon": -74.0190235 }, + { "lat": 40.7063729, "lon": -74.0190034 }, + { "lat": 40.7063806, "lon": -74.0189934 }, + { "lat": 40.7063945, "lon": -74.0190155 }, + { "lat": 40.7064062, "lon": -74.0190041 }, + { "lat": 40.7064232, "lon": -74.0189806 }, + { "lat": 40.7064433, "lon": -74.0189404 }, + { "lat": 40.7064235, "lon": -74.0189223 }, + { "lat": 40.7064160, "lon": -74.0189137 }, + { "lat": 40.7064122, "lon": -74.0189064 }, + { "lat": 40.7064146, "lon": -74.0186983 }, + { "lat": 40.7064181, "lon": -74.0186980 }, + { "lat": 40.7064496, "lon": -74.0186815 }, + { "lat": 40.7064502, "lon": -74.0187228 }, + { "lat": 40.7064476, "lon": -74.0188542 }, + { "lat": 40.7064794, "lon": -74.0188646 }, + { "lat": 40.7064968, "lon": -74.0188804 }, + { "lat": 40.7065134, "lon": -74.0188954 }, + { "lat": 40.7065096, "lon": -74.0189112 }, + { "lat": 40.7065023, "lon": -74.0189330 }, + { "lat": 40.7064888, "lon": -74.0189632 }, + { "lat": 40.7064735, "lon": -74.0189940 }, + { "lat": 40.7064662, "lon": -74.0189866 }, + { "lat": 40.7064022, "lon": -74.0190879 }, + { "lat": 40.7063795, "lon": -74.0191040 }, + { "lat": 40.7063518, "lon": -74.0191214 }, + { "lat": 40.7063279, "lon": -74.0191315 }, + { "lat": 40.7063363, "lon": -74.0191868 }, + { "lat": 40.7063126, "lon": -74.0191926 }, + { "lat": 40.7063017, "lon": -74.0191228 }, + { "lat": 40.7062750, "lon": -74.0191285 }, + { "lat": 40.7062445, "lon": -74.0191338 }, + { "lat": 40.7062171, "lon": -74.0191348 }, + { "lat": 40.7061912, "lon": -74.0191332 }, + { "lat": 40.7061701, "lon": -74.0191291 }, + { "lat": 40.7061358, "lon": -74.0191191 }, + { "lat": 40.7061421, "lon": -74.0192361 }, + { "lat": 40.7060913, "lon": -74.0192256 }, + { "lat": 40.7061106, "lon": -74.0191047 }, + { "lat": 40.7060791, "lon": -74.0190943 }, + { "lat": 40.7060814, "lon": -74.0190862 }, + { "lat": 40.7060754, "lon": -74.0190844 }, + { "lat": 40.7060688, "lon": -74.0191027 }, + { "lat": 40.7060618, "lon": -74.0191166 }, + { "lat": 40.7060512, "lon": -74.0191301 }, + { "lat": 40.7060360, "lon": -74.0191414 }, + { "lat": 40.7060256, "lon": -74.0191459 }, + { "lat": 40.7060130, "lon": -74.0191494 }, + { "lat": 40.7060045, "lon": -74.0191508 }, + { "lat": 40.7060043, "lon": -74.0191582 }, + { "lat": 40.7059916, "lon": -74.0191556 }, + { "lat": 40.7059825, "lon": -74.0191517 }, + { "lat": 40.7059866, "lon": -74.0191385 }, + { "lat": 40.7060003, "lon": -74.0191395 }, + { "lat": 40.7060145, "lon": -74.0191375 }, + { "lat": 40.7060285, "lon": -74.0191328 }, + { "lat": 40.7060445, "lon": -74.0191207 }, + { "lat": 40.7060557, "lon": -74.0191053 }, + { "lat": 40.7060633, "lon": -74.0190862 }, + { "lat": 40.7060417, "lon": -74.0190778 }, + { "lat": 40.7060132, "lon": -74.0190711 }, + { "lat": 40.7059800, "lon": -74.0190637 }, + { "lat": 40.7059556, "lon": -74.0190617 }, + { "lat": 40.7059375, "lon": -74.0190634 }, + { "lat": 40.7059369, "lon": -74.0190606 }, + { "lat": 40.7058942, "lon": -74.0190750 }, + { "lat": 40.7058946, "lon": -74.0190775 }, + { "lat": 40.7058712, "lon": -74.0190889 }, + { "lat": 40.7058425, "lon": -74.0191063 }, + { "lat": 40.7058186, "lon": -74.0191254 }, + { "lat": 40.7058252, "lon": -74.0191362 }, + { "lat": 40.7058353, "lon": -74.0191439 }, + { "lat": 40.7058488, "lon": -74.0191499 }, + { "lat": 40.7058435, "lon": -74.0191818 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 827625853, + "bounds": { + "minlat": 40.7762769, + "minlon": -73.9284193, + "maxlat": 40.7763487, + "maxlon": -73.9282763 + }, + "nodes": [ + 7726535694, + 7726535691, + 7726535706 + ], + "geometry": [ + { "lat": 40.7762769, "lon": -73.9282763 }, + { "lat": 40.7763104, "lon": -73.9283431 }, + { "lat": 40.7763487, "lon": -73.9284193 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 827627689, + "bounds": { + "minlat": 40.7647888, + "minlon": -73.9309038, + "maxlat": 40.7652629, + "maxlon": -73.9304887 + }, + "nodes": [ + 2403986924, + 7767820282, + 2403986926, + 2403986922, + 7726598431 + ], + "geometry": [ + { "lat": 40.7647888, "lon": -73.9309038 }, + { "lat": 40.7648640, "lon": -73.9308380 }, + { "lat": 40.7649622, "lon": -73.9307520 }, + { "lat": 40.7651277, "lon": -73.9306071 }, + { "lat": 40.7652629, "lon": -73.9304887 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827627690, + "bounds": { + "minlat": 40.7649622, + "minlon": -73.9311721, + "maxlat": 40.7651872, + "maxlon": -73.9307520 + }, + "nodes": [ + 2403986925, + 2403986926 + ], + "geometry": [ + { "lat": 40.7651872, "lon": -73.9311721 }, + { "lat": 40.7649622, "lon": -73.9307520 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827627692, + "bounds": { + "minlat": 40.7676809, + "minlon": -73.9359089, + "maxlat": 40.7676964, + "maxlon": -73.9356934 + }, + "nodes": [ + 6866879186, + 6452390525, + 7726598435 + ], + "geometry": [ + { "lat": 40.7676964, "lon": -73.9359089 }, + { "lat": 40.7676908, "lon": -73.9358316 }, + { "lat": 40.7676809, "lon": -73.9356934 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 827664972, + "bounds": { + "minlat": 40.7653261, + "minlon": -73.9338124, + "maxlat": 40.7654384, + "maxlon": -73.9337050 + }, + "nodes": [ + 2504465131, + 2504465129 + ], + "geometry": [ + { "lat": 40.7654384, "lon": -73.9337050 }, + { "lat": 40.7653261, "lon": -73.9338124 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "33rd Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 827664973, + "bounds": { + "minlat": 40.7653261, + "minlon": -73.9350092, + "maxlat": 40.7657640, + "maxlon": -73.9338124 + }, + "nodes": [ + 2504465129, + 12030168872, + 8410793733, + 6456411392 + ], + "geometry": [ + { "lat": 40.7653261, "lon": -73.9338124 }, + { "lat": 40.7654712, "lon": -73.9342089 }, + { "lat": 40.7657581, "lon": -73.9349930 }, + { "lat": 40.7657640, "lon": -73.9350092 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "33rd Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 827664975, + "bounds": { + "minlat": 40.7657640, + "minlon": -73.9350767, + "maxlat": 40.7657885, + "maxlon": -73.9350092 + }, + "nodes": [ + 6456411392, + 2504465127 + ], + "geometry": [ + { "lat": 40.7657640, "lon": -73.9350092 }, + { "lat": 40.7657885, "lon": -73.9350767 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "33rd Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 827664978, + "bounds": { + "minlat": 40.7652251, + "minlon": -73.9323445, + "maxlat": 40.7654644, + "maxlon": -73.9321261 + }, + "nodes": [ + 7726844882, + 7768514046, + 7726844883 + ], + "geometry": [ + { "lat": 40.7654644, "lon": -73.9321261 }, + { "lat": 40.7654092, "lon": -73.9321765 }, + { "lat": 40.7652251, "lon": -73.9323445 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827664986, + "bounds": { + "minlat": 40.7622792, + "minlon": -73.9350567, + "maxlat": 40.7625762, + "maxlon": -73.9345031 + }, + "nodes": [ + 7710100131, + 7710100132, + 7710100133 + ], + "geometry": [ + { "lat": 40.7625762, "lon": -73.9350567 }, + { "lat": 40.7623474, "lon": -73.9346274 }, + { "lat": 40.7622792, "lon": -73.9345031 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827668632, + "bounds": { + "minlat": 40.7712691, + "minlon": -73.9237099, + "maxlat": 40.7715499, + "maxlon": -73.9235810 + }, + "nodes": [ + 7726875210, + 7768245672, + 7726875214, + 7726875211 + ], + "geometry": [ + { "lat": 40.7715499, "lon": -73.9235810 }, + { "lat": 40.7714707, "lon": -73.9236174 }, + { "lat": 40.7713610, "lon": -73.9236677 }, + { "lat": 40.7712691, "lon": -73.9237099 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827668633, + "bounds": { + "minlat": 40.7713610, + "minlon": -73.9241131, + "maxlat": 40.7714845, + "maxlon": -73.9236677 + }, + "nodes": [ + 7726875212, + 7726875214 + ], + "geometry": [ + { "lat": 40.7714845, "lon": -73.9241131 }, + { "lat": 40.7713610, "lon": -73.9236677 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827668634, + "bounds": { + "minlat": 40.7712203, + "minlon": -73.9241131, + "maxlat": 40.7714845, + "maxlon": -73.9237756 + }, + "nodes": [ + 7726875212, + 7726875213 + ], + "geometry": [ + { "lat": 40.7714845, "lon": -73.9241131 }, + { "lat": 40.7712203, "lon": -73.9237756 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827668635, + "bounds": { + "minlat": 40.7712203, + "minlon": -73.9237756, + "maxlat": 40.7712691, + "maxlon": -73.9237099 + }, + "nodes": [ + 7726875213, + 7726875211 + ], + "geometry": [ + { "lat": 40.7712203, "lon": -73.9237756 }, + { "lat": 40.7712691, "lon": -73.9237099 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 827826690, + "bounds": { + "minlat": 40.7065424, + "minlon": -74.0158107, + "maxlat": 40.7070340, + "maxlon": -74.0151232 + }, + "nodes": [ + 7728274168, + 7728274167, + 7728274166, + 7728274165, + 7728274164, + 11374486389, + 7728274163, + 7728274162, + 7728274161, + 11374486390, + 7728274160, + 10693842134, + 7728274158, + 11385942324, + 7728274157, + 7728274156, + 7728274155, + 7728274154, + 7728274153, + 4876524532, + 7728274152, + 2824641242, + 2824641241, + 2824641240, + 2824641239, + 3767684274, + 2824641214, + 5209084624, + 2824641212, + 3767684263, + 7728274168 + ], + "geometry": [ + { "lat": 40.7066608, "lon": -74.0151379 }, + { "lat": 40.7066446, "lon": -74.0151259 }, + { "lat": 40.7066248, "lon": -74.0151232 }, + { "lat": 40.7065897, "lon": -74.0151246 }, + { "lat": 40.7065714, "lon": -74.0151286 }, + { "lat": 40.7065556, "lon": -74.0151347 }, + { "lat": 40.7065470, "lon": -74.0151380 }, + { "lat": 40.7065429, "lon": -74.0151454 }, + { "lat": 40.7065424, "lon": -74.0151595 }, + { "lat": 40.7066066, "lon": -74.0154245 }, + { "lat": 40.7066883, "lon": -74.0157616 }, + { "lat": 40.7066930, "lon": -74.0157809 }, + { "lat": 40.7066979, "lon": -74.0157948 }, + { "lat": 40.7067050, "lon": -74.0158069 }, + { "lat": 40.7067136, "lon": -74.0158107 }, + { "lat": 40.7067259, "lon": -74.0158093 }, + { "lat": 40.7069963, "lon": -74.0156959 }, + { "lat": 40.7070096, "lon": -74.0156858 }, + { "lat": 40.7070177, "lon": -74.0156684 }, + { "lat": 40.7070209, "lon": -74.0156483 }, + { "lat": 40.7070243, "lon": -74.0156268 }, + { "lat": 40.7070340, "lon": -74.0155540 }, + { "lat": 40.7070290, "lon": -74.0155722 }, + { "lat": 40.7070226, "lon": -74.0155898 }, + { "lat": 40.7070148, "lon": -74.0156063 }, + { "lat": 40.7068948, "lon": -74.0156526 }, + { "lat": 40.7067161, "lon": -74.0157272 }, + { "lat": 40.7066402, "lon": -74.0154108 }, + { "lat": 40.7065825, "lon": -74.0151706 }, + { "lat": 40.7066350, "lon": -74.0151487 }, + { "lat": 40.7066608, "lon": -74.0151379 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 827868236, + "bounds": { + "minlat": 40.7063279, + "minlon": -74.0185293, + "maxlat": 40.7065189, + "maxlon": -74.0180754 + }, + "nodes": [ + 2823623554, + 2823623548, + 2823623549, + 2823623545, + 2823623544, + 2823623543, + 7728635582, + 7728635583, + 7728635584, + 7728635585, + 7728635586, + 7728635587, + 7728635588, + 7728635607, + 7728656709, + 7728635572, + 7728635571, + 7728635570, + 7728635569, + 7728635568, + 7728635567, + 2823623554 + ], + "geometry": [ + { "lat": 40.7065189, "lon": -74.0185231 }, + { "lat": 40.7064073, "lon": -74.0182554 }, + { "lat": 40.7064133, "lon": -74.0182510 }, + { "lat": 40.7063848, "lon": -74.0181824 }, + { "lat": 40.7063787, "lon": -74.0181868 }, + { "lat": 40.7063341, "lon": -74.0180798 }, + { "lat": 40.7063279, "lon": -74.0180754 }, + { "lat": 40.7063465, "lon": -74.0181203 }, + { "lat": 40.7063294, "lon": -74.0181320 }, + { "lat": 40.7063520, "lon": -74.0181857 }, + { "lat": 40.7063693, "lon": -74.0181736 }, + { "lat": 40.7064026, "lon": -74.0182520 }, + { "lat": 40.7063837, "lon": -74.0182659 }, + { "lat": 40.7064123, "lon": -74.0183372 }, + { "lat": 40.7064345, "lon": -74.0183924 }, + { "lat": 40.7064491, "lon": -74.0183815 }, + { "lat": 40.7064621, "lon": -74.0184103 }, + { "lat": 40.7064496, "lon": -74.0184197 }, + { "lat": 40.7064725, "lon": -74.0184737 }, + { "lat": 40.7064829, "lon": -74.0184660 }, + { "lat": 40.7065094, "lon": -74.0185293 }, + { "lat": 40.7065189, "lon": -74.0185231 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 827870163, + "bounds": { + "minlat": 40.7068314, + "minlon": -74.0188362, + "maxlat": 40.7069428, + "maxlon": -74.0185706 + }, + "nodes": [ + 7728678999, + 7728679000, + 7728679001, + 7728679002, + 7728679003, + 7728679004, + 7728679005, + 7728679006, + 7728679007, + 7728679008, + 7728679009, + 7728679010, + 7728679011, + 7728679012, + 7728679013, + 7728593051, + 7728593052, + 7728593053, + 7728593054, + 7728593055, + 7728593058, + 7728593059, + 7728593060, + 7728593061, + 7728593062, + 7728593063, + 7728593066, + 7728593067, + 7728593068, + 7728593069, + 7728593070, + 7728593073, + 7728593074, + 7728593075, + 7728593076, + 7728593077, + 7728678999 + ], + "geometry": [ + { "lat": 40.7069428, "lon": -74.0188362 }, + { "lat": 40.7069303, "lon": -74.0188358 }, + { "lat": 40.7069056, "lon": -74.0188287 }, + { "lat": 40.7068878, "lon": -74.0188187 }, + { "lat": 40.7068705, "lon": -74.0188029 }, + { "lat": 40.7068535, "lon": -74.0187774 }, + { "lat": 40.7068428, "lon": -74.0187543 }, + { "lat": 40.7068355, "lon": -74.0187295 }, + { "lat": 40.7068314, "lon": -74.0186949 }, + { "lat": 40.7068314, "lon": -74.0186641 }, + { "lat": 40.7068357, "lon": -74.0186403 }, + { "lat": 40.7068461, "lon": -74.0186151 }, + { "lat": 40.7068585, "lon": -74.0185937 }, + { "lat": 40.7068693, "lon": -74.0185799 }, + { "lat": 40.7068807, "lon": -74.0185706 }, + { "lat": 40.7068821, "lon": -74.0185798 }, + { "lat": 40.7068764, "lon": -74.0185846 }, + { "lat": 40.7068693, "lon": -74.0185967 }, + { "lat": 40.7068644, "lon": -74.0186111 }, + { "lat": 40.7068632, "lon": -74.0186249 }, + { "lat": 40.7068619, "lon": -74.0186416 }, + { "lat": 40.7068586, "lon": -74.0186534 }, + { "lat": 40.7068512, "lon": -74.0186711 }, + { "lat": 40.7068449, "lon": -74.0186886 }, + { "lat": 40.7068423, "lon": -74.0187060 }, + { "lat": 40.7068436, "lon": -74.0187208 }, + { "lat": 40.7068482, "lon": -74.0187369 }, + { "lat": 40.7068545, "lon": -74.0187516 }, + { "lat": 40.7068647, "lon": -74.0187640 }, + { "lat": 40.7068754, "lon": -74.0187757 }, + { "lat": 40.7068863, "lon": -74.0187905 }, + { "lat": 40.7068954, "lon": -74.0188042 }, + { "lat": 40.7069038, "lon": -74.0188116 }, + { "lat": 40.7069165, "lon": -74.0188203 }, + { "lat": 40.7069280, "lon": -74.0188244 }, + { "lat": 40.7069389, "lon": -74.0188244 }, + { "lat": 40.7069428, "lon": -74.0188362 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "metal" + } +}, +{ + "type": "way", + "id": 827870164, + "bounds": { + "minlat": 40.7064903, + "minlon": -74.0192429, + "maxlat": 40.7069902, + "maxlon": -74.0183878 + }, + "nodes": [ + 7726032197, + 8279851579, + 7726032259, + 7726032260, + 7728635521, + 7728635504, + 7728635505, + 7728635506, + 7728635507, + 7728635508, + 7728635509, + 7728635510, + 7728635511, + 7728635512, + 7728635513, + 8279851720, + 7728635603, + 7728881939, + 7728635543, + 7728635544, + 7728635545, + 7728635546, + 7728635547, + 7728678998, + 3775043651, + 7728627847, + 7728679030, + 7728679028, + 7728704705, + 7728627852, + 7728627853, + 7728627862, + 7728627863, + 7728627864, + 7728627865, + 7728627866, + 7728627867, + 7728627868, + 7728627869, + 7728627870, + 7728627871, + 7728627872, + 7728627873, + 7728627874, + 7728627861, + 7728627860, + 7728627859, + 7728627858, + 7728627857, + 7728627856, + 7728627855, + 7728627854, + 7728627851, + 7728627841, + 7728679027, + 7728679026, + 7728679025, + 7728679024, + 7728679023, + 7728679022, + 7728679021, + 7728679020, + 7728679019, + 7728679018, + 7728679017, + 7728679016, + 7728679015, + 7728679014, + 2044075099, + 7728593079, + 7728593041, + 7728679013, + 7728679012, + 7728679011, + 7728679010, + 7728679009, + 7728679008, + 7728679007, + 7728679006, + 7728679005, + 7728679004, + 7728679003, + 7728679002, + 7728679001, + 7728679000, + 7728678999, + 7728593042, + 2044075121, + 8279851721, + 7728635503, + 7728635502, + 7728635501, + 7728635500, + 7728635499, + 7728635498, + 7728635497, + 7728635496, + 7728635495, + 7728635494, + 7728635493, + 7728635492, + 7728635491, + 7728635490, + 7728635489, + 7728635488, + 7728635487, + 7728635486, + 7728635485, + 7728593084, + 7728593083, + 7726032197 + ], + "geometry": [ + { "lat": 40.7065045, "lon": -74.0192429 }, + { "lat": 40.7064956, "lon": -74.0191840 }, + { "lat": 40.7064903, "lon": -74.0191489 }, + { "lat": 40.7065078, "lon": -74.0190909 }, + { "lat": 40.7065625, "lon": -74.0190916 }, + { "lat": 40.7065938, "lon": -74.0191087 }, + { "lat": 40.7066070, "lon": -74.0190795 }, + { "lat": 40.7066209, "lon": -74.0190440 }, + { "lat": 40.7066392, "lon": -74.0189917 }, + { "lat": 40.7066502, "lon": -74.0189494 }, + { "lat": 40.7066606, "lon": -74.0188914 }, + { "lat": 40.7066644, "lon": -74.0188428 }, + { "lat": 40.7066619, "lon": -74.0187918 }, + { "lat": 40.7066565, "lon": -74.0187546 }, + { "lat": 40.7066479, "lon": -74.0187187 }, + { "lat": 40.7066460, "lon": -74.0186909 }, + { "lat": 40.7066415, "lon": -74.0186272 }, + { "lat": 40.7066337, "lon": -74.0186248 }, + { "lat": 40.7066776, "lon": -74.0185337 }, + { "lat": 40.7066990, "lon": -74.0184961 }, + { "lat": 40.7067279, "lon": -74.0184619 }, + { "lat": 40.7067483, "lon": -74.0184452 }, + { "lat": 40.7067991, "lon": -74.0184143 }, + { "lat": 40.7068508, "lon": -74.0183878 }, + { "lat": 40.7068590, "lon": -74.0184176 }, + { "lat": 40.7068671, "lon": -74.0184472 }, + { "lat": 40.7068612, "lon": -74.0184605 }, + { "lat": 40.7068545, "lon": -74.0184678 }, + { "lat": 40.7068456, "lon": -74.0184743 }, + { "lat": 40.7068308, "lon": -74.0184680 }, + { "lat": 40.7068291, "lon": -74.0184569 }, + { "lat": 40.7067813, "lon": -74.0184901 }, + { "lat": 40.7067559, "lon": -74.0185115 }, + { "lat": 40.7067300, "lon": -74.0185511 }, + { "lat": 40.7067117, "lon": -74.0185880 }, + { "lat": 40.7067020, "lon": -74.0186316 }, + { "lat": 40.7066985, "lon": -74.0186805 }, + { "lat": 40.7067056, "lon": -74.0187275 }, + { "lat": 40.7067218, "lon": -74.0187724 }, + { "lat": 40.7067447, "lon": -74.0188146 }, + { "lat": 40.7067727, "lon": -74.0188448 }, + { "lat": 40.7068006, "lon": -74.0188602 }, + { "lat": 40.7068332, "lon": -74.0188710 }, + { "lat": 40.7068835, "lon": -74.0188690 }, + { "lat": 40.7068449, "lon": -74.0188361 }, + { "lat": 40.7068164, "lon": -74.0188032 }, + { "lat": 40.7067971, "lon": -74.0187630 }, + { "lat": 40.7067864, "lon": -74.0187187 }, + { "lat": 40.7067839, "lon": -74.0186792 }, + { "lat": 40.7067884, "lon": -74.0186349 }, + { "lat": 40.7068011, "lon": -74.0185907 }, + { "lat": 40.7068200, "lon": -74.0185538 }, + { "lat": 40.7068426, "lon": -74.0185216 }, + { "lat": 40.7068586, "lon": -74.0185075 }, + { "lat": 40.7068607, "lon": -74.0185064 }, + { "lat": 40.7068566, "lon": -74.0184975 }, + { "lat": 40.7068539, "lon": -74.0184861 }, + { "lat": 40.7068544, "lon": -74.0184772 }, + { "lat": 40.7068577, "lon": -74.0184703 }, + { "lat": 40.7068634, "lon": -74.0184646 }, + { "lat": 40.7068661, "lon": -74.0184733 }, + { "lat": 40.7068729, "lon": -74.0184702 }, + { "lat": 40.7068761, "lon": -74.0184587 }, + { "lat": 40.7068823, "lon": -74.0184586 }, + { "lat": 40.7068877, "lon": -74.0184608 }, + { "lat": 40.7068923, "lon": -74.0184658 }, + { "lat": 40.7068958, "lon": -74.0184725 }, + { "lat": 40.7068977, "lon": -74.0184820 }, + { "lat": 40.7069062, "lon": -74.0185377 }, + { "lat": 40.7068909, "lon": -74.0185433 }, + { "lat": 40.7068756, "lon": -74.0185488 }, + { "lat": 40.7068807, "lon": -74.0185706 }, + { "lat": 40.7068693, "lon": -74.0185799 }, + { "lat": 40.7068585, "lon": -74.0185937 }, + { "lat": 40.7068461, "lon": -74.0186151 }, + { "lat": 40.7068357, "lon": -74.0186403 }, + { "lat": 40.7068314, "lon": -74.0186641 }, + { "lat": 40.7068314, "lon": -74.0186949 }, + { "lat": 40.7068355, "lon": -74.0187295 }, + { "lat": 40.7068428, "lon": -74.0187543 }, + { "lat": 40.7068535, "lon": -74.0187774 }, + { "lat": 40.7068705, "lon": -74.0188029 }, + { "lat": 40.7068878, "lon": -74.0188187 }, + { "lat": 40.7069056, "lon": -74.0188287 }, + { "lat": 40.7069303, "lon": -74.0188358 }, + { "lat": 40.7069428, "lon": -74.0188362 }, + { "lat": 40.7069491, "lon": -74.0188629 }, + { "lat": 40.7069784, "lon": -74.0188502 }, + { "lat": 40.7069853, "lon": -74.0188886 }, + { "lat": 40.7069902, "lon": -74.0189159 }, + { "lat": 40.7069425, "lon": -74.0189273 }, + { "lat": 40.7068825, "lon": -74.0189367 }, + { "lat": 40.7068494, "lon": -74.0189373 }, + { "lat": 40.7068032, "lon": -74.0189306 }, + { "lat": 40.7067625, "lon": -74.0189119 }, + { "lat": 40.7067310, "lon": -74.0188931 }, + { "lat": 40.7067188, "lon": -74.0188897 }, + { "lat": 40.7067091, "lon": -74.0188894 }, + { "lat": 40.7067023, "lon": -74.0188938 }, + { "lat": 40.7066964, "lon": -74.0189045 }, + { "lat": 40.7066896, "lon": -74.0189273 }, + { "lat": 40.7066692, "lon": -74.0190017 }, + { "lat": 40.7066527, "lon": -74.0190577 }, + { "lat": 40.7066387, "lon": -74.0190922 }, + { "lat": 40.7066176, "lon": -74.0191425 }, + { "lat": 40.7066049, "lon": -74.0191647 }, + { "lat": 40.7065963, "lon": -74.0191801 }, + { "lat": 40.7065948, "lon": -74.0191895 }, + { "lat": 40.7065960, "lon": -74.0192036 }, + { "lat": 40.7065983, "lon": -74.0192206 }, + { "lat": 40.7065045, "lon": -74.0192429 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 827874366, + "bounds": { + "minlat": 40.7074452, + "minlon": -74.0181637, + "maxlat": 40.7074958, + "maxlon": -74.0181079 + }, + "nodes": [ + 7728704701, + 7728704702, + 7728678344, + 7728678343, + 7728678342, + 7728678780, + 7728678781, + 7728678782, + 7728678783, + 7728678784, + 7728678785, + 7728678786, + 7728678359, + 7728678358, + 7728678357, + 7728678356, + 7728704701 + ], + "geometry": [ + { "lat": 40.7074958, "lon": -74.0181456 }, + { "lat": 40.7074643, "lon": -74.0181637 }, + { "lat": 40.7074594, "lon": -74.0181555 }, + { "lat": 40.7074548, "lon": -74.0181434 }, + { "lat": 40.7074452, "lon": -74.0181300 }, + { "lat": 40.7074529, "lon": -74.0181225 }, + { "lat": 40.7074558, "lon": -74.0181243 }, + { "lat": 40.7074590, "lon": -74.0181246 }, + { "lat": 40.7074620, "lon": -74.0181232 }, + { "lat": 40.7074644, "lon": -74.0181204 }, + { "lat": 40.7074658, "lon": -74.0181166 }, + { "lat": 40.7074660, "lon": -74.0181124 }, + { "lat": 40.7074762, "lon": -74.0181079 }, + { "lat": 40.7074777, "lon": -74.0181199 }, + { "lat": 40.7074843, "lon": -74.0181340 }, + { "lat": 40.7074935, "lon": -74.0181434 }, + { "lat": 40.7074958, "lon": -74.0181456 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827874367, + "bounds": { + "minlat": 40.7071478, + "minlon": -74.0183217, + "maxlat": 40.7072003, + "maxlon": -74.0182527 + }, + "nodes": [ + 7728704704, + 7728704703, + 7728678325, + 7728678326, + 7728678892, + 7728678891, + 7728678890, + 7728678889, + 7728678888, + 7728678887, + 7728678886, + 7728678885, + 7728678884, + 7728678570, + 7728678527, + 7728678316, + 7728704704 + ], + "geometry": [ + { "lat": 40.7071635, "lon": -74.0183217 }, + { "lat": 40.7072003, "lon": -74.0182960 }, + { "lat": 40.7071971, "lon": -74.0182909 }, + { "lat": 40.7071773, "lon": -74.0182527 }, + { "lat": 40.7071614, "lon": -74.0182656 }, + { "lat": 40.7071635, "lon": -74.0182687 }, + { "lat": 40.7071646, "lon": -74.0182727 }, + { "lat": 40.7071644, "lon": -74.0182769 }, + { "lat": 40.7071630, "lon": -74.0182807 }, + { "lat": 40.7071606, "lon": -74.0182835 }, + { "lat": 40.7071576, "lon": -74.0182849 }, + { "lat": 40.7071544, "lon": -74.0182846 }, + { "lat": 40.7071515, "lon": -74.0182828 }, + { "lat": 40.7071478, "lon": -74.0182866 }, + { "lat": 40.7071544, "lon": -74.0183043 }, + { "lat": 40.7071618, "lon": -74.0183168 }, + { "lat": 40.7071635, "lon": -74.0183217 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827874368, + "bounds": { + "minlat": 40.7070215, + "minlon": -74.0183805, + "maxlat": 40.7076541, + "maxlon": -74.0180194 + }, + "nodes": [ + 7728678561, + 7728678560, + 7728678957, + 7728678958, + 7728678967, + 7728678968, + 7728678969, + 7728678970, + 7728678971, + 7728678972, + 7728678973, + 7728678974, + 7728678975, + 7728678976, + 7728678986, + 7728678987, + 7728678988, + 7728678989, + 7728678990, + 7728678991, + 7728678992, + 7728678993, + 7728678936, + 7728678937, + 7728678938, + 7728678939, + 7728678940, + 7728678941, + 7728678942, + 7728678943, + 7728678918, + 7728678919, + 7728678920, + 7728678921, + 7728678922, + 7728678923, + 7728678924, + 7728678925, + 7728678901, + 7728678902, + 7728678903, + 7728678904, + 7728678905, + 7728678906, + 7728678907, + 7728678908, + 7728678849, + 7728678850, + 7728678851, + 7728678852, + 7728678853, + 7728678854, + 7728678855, + 7728678856, + 7728678857, + 7728678511, + 7728678510, + 7728678526, + 7728678525, + 7728678524, + 7728678523, + 7728678522, + 7728678521, + 7728678520, + 7728678519, + 7728678831, + 7728678832, + 7728678833, + 7728678834, + 7728678835, + 7728678836, + 7728678508, + 7728678509, + 7728678484, + 7728678485, + 7728678486, + 7728678487, + 7728678488, + 7728678489, + 7728678490, + 7728678491, + 7728678492, + 7728678493, + 7728678494, + 7728678795, + 7728678796, + 7728678797, + 7728678798, + 7728678799, + 7728678800, + 7728678801, + 7728678802, + 7728678803, + 7728678804, + 7728678805, + 7728678476, + 7728678477, + 7728678478, + 7728678479, + 7728678480, + 7728678481, + 7728678482, + 7728678483, + 7728678463, + 7728678464, + 7728678465, + 7728678443, + 7728678442, + 7728678441, + 7728678440, + 7728678439, + 7728678438, + 7728678437, + 7728678436, + 7728678435, + 7728678369, + 7728678368, + 7728678367, + 7728678366, + 7728678365, + 7728678364, + 7728678363, + 7728678362, + 7728678361, + 7728678360, + 7728678359, + 7728678786, + 7728678787, + 7728678788, + 7728678789, + 7728678790, + 7728678775, + 7728678776, + 7728678777, + 7728678778, + 7728678779, + 7728678780, + 7728678342, + 7728678341, + 7728678340, + 7728678339, + 7728678338, + 7728678337, + 7728678336, + 7728678335, + 7728678334, + 7728678333, + 7728678332, + 7728678331, + 7728678330, + 7728678329, + 7728678328, + 7728678327, + 7728678326, + 7728678892, + 7728678893, + 7728678894, + 7728678879, + 7728678880, + 7728678881, + 7728678882, + 7728678883, + 7728678884, + 7728678570, + 7728678569, + 7728678568, + 7728678567, + 7728678566, + 7728678565, + 7728678564, + 7728678563, + 7728678562, + 7728678561 + ], + "geometry": [ + { "lat": 40.7070479, "lon": -74.0183734 }, + { "lat": 40.7070243, "lon": -74.0183805 }, + { "lat": 40.7070215, "lon": -74.0183698 }, + { "lat": 40.7070217, "lon": -74.0183656 }, + { "lat": 40.7070358, "lon": -74.0183598 }, + { "lat": 40.7070368, "lon": -74.0183638 }, + { "lat": 40.7070389, "lon": -74.0183669 }, + { "lat": 40.7070418, "lon": -74.0183688 }, + { "lat": 40.7070450, "lon": -74.0183690 }, + { "lat": 40.7070480, "lon": -74.0183676 }, + { "lat": 40.7070504, "lon": -74.0183649 }, + { "lat": 40.7070518, "lon": -74.0183611 }, + { "lat": 40.7070520, "lon": -74.0183569 }, + { "lat": 40.7070509, "lon": -74.0183529 }, + { "lat": 40.7070671, "lon": -74.0183428 }, + { "lat": 40.7070700, "lon": -74.0183446 }, + { "lat": 40.7070732, "lon": -74.0183449 }, + { "lat": 40.7070762, "lon": -74.0183435 }, + { "lat": 40.7070786, "lon": -74.0183407 }, + { "lat": 40.7070800, "lon": -74.0183369 }, + { "lat": 40.7070802, "lon": -74.0183327 }, + { "lat": 40.7070791, "lon": -74.0183287 }, + { "lat": 40.7070896, "lon": -74.0183121 }, + { "lat": 40.7070928, "lon": -74.0183124 }, + { "lat": 40.7070958, "lon": -74.0183110 }, + { "lat": 40.7070982, "lon": -74.0183082 }, + { "lat": 40.7070996, "lon": -74.0183044 }, + { "lat": 40.7070997, "lon": -74.0183002 }, + { "lat": 40.7070987, "lon": -74.0182962 }, + { "lat": 40.7070966, "lon": -74.0182931 }, + { "lat": 40.7071126, "lon": -74.0182747 }, + { "lat": 40.7071155, "lon": -74.0182766 }, + { "lat": 40.7071187, "lon": -74.0182768 }, + { "lat": 40.7071217, "lon": -74.0182754 }, + { "lat": 40.7071241, "lon": -74.0182726 }, + { "lat": 40.7071255, "lon": -74.0182689 }, + { "lat": 40.7071257, "lon": -74.0182647 }, + { "lat": 40.7071246, "lon": -74.0182607 }, + { "lat": 40.7071419, "lon": -74.0182445 }, + { "lat": 40.7071447, "lon": -74.0182464 }, + { "lat": 40.7071479, "lon": -74.0182466 }, + { "lat": 40.7071509, "lon": -74.0182453 }, + { "lat": 40.7071533, "lon": -74.0182425 }, + { "lat": 40.7071547, "lon": -74.0182387 }, + { "lat": 40.7071549, "lon": -74.0182345 }, + { "lat": 40.7071539, "lon": -74.0182305 }, + { "lat": 40.7071702, "lon": -74.0182189 }, + { "lat": 40.7071724, "lon": -74.0182221 }, + { "lat": 40.7071752, "lon": -74.0182239 }, + { "lat": 40.7071784, "lon": -74.0182242 }, + { "lat": 40.7071814, "lon": -74.0182228 }, + { "lat": 40.7071838, "lon": -74.0182200 }, + { "lat": 40.7071852, "lon": -74.0182162 }, + { "lat": 40.7071854, "lon": -74.0182120 }, + { "lat": 40.7071844, "lon": -74.0182080 }, + { "lat": 40.7071900, "lon": -74.0181994 }, + { "lat": 40.7071946, "lon": -74.0182054 }, + { "lat": 40.7071994, "lon": -74.0182078 }, + { "lat": 40.7072162, "lon": -74.0182071 }, + { "lat": 40.7072342, "lon": -74.0182054 }, + { "lat": 40.7072439, "lon": -74.0182021 }, + { "lat": 40.7072513, "lon": -74.0181940 }, + { "lat": 40.7072541, "lon": -74.0181833 }, + { "lat": 40.7072530, "lon": -74.0181759 }, + { "lat": 40.7072492, "lon": -74.0181689 }, + { "lat": 40.7072557, "lon": -74.0181580 }, + { "lat": 40.7072586, "lon": -74.0181599 }, + { "lat": 40.7072618, "lon": -74.0181601 }, + { "lat": 40.7072648, "lon": -74.0181588 }, + { "lat": 40.7072672, "lon": -74.0181560 }, + { "lat": 40.7072686, "lon": -74.0181522 }, + { "lat": 40.7072912, "lon": -74.0181686 }, + { "lat": 40.7072840, "lon": -74.0181833 }, + { "lat": 40.7072830, "lon": -74.0181934 }, + { "lat": 40.7072876, "lon": -74.0182004 }, + { "lat": 40.7072950, "lon": -74.0182031 }, + { "lat": 40.7073072, "lon": -74.0182011 }, + { "lat": 40.7073242, "lon": -74.0181927 }, + { "lat": 40.7073516, "lon": -74.0181733 }, + { "lat": 40.7073766, "lon": -74.0181488 }, + { "lat": 40.7073888, "lon": -74.0181324 }, + { "lat": 40.7073959, "lon": -74.0181176 }, + { "lat": 40.7073992, "lon": -74.0181062 }, + { "lat": 40.7073979, "lon": -74.0180931 }, + { "lat": 40.7074086, "lon": -74.0180926 }, + { "lat": 40.7074097, "lon": -74.0180966 }, + { "lat": 40.7074118, "lon": -74.0180997 }, + { "lat": 40.7074146, "lon": -74.0181015 }, + { "lat": 40.7074178, "lon": -74.0181018 }, + { "lat": 40.7074208, "lon": -74.0181004 }, + { "lat": 40.7074232, "lon": -74.0180976 }, + { "lat": 40.7074246, "lon": -74.0180939 }, + { "lat": 40.7074248, "lon": -74.0180896 }, + { "lat": 40.7074238, "lon": -74.0180857 }, + { "lat": 40.7074217, "lon": -74.0180825 }, + { "lat": 40.7074304, "lon": -74.0180760 }, + { "lat": 40.7074353, "lon": -74.0180797 }, + { "lat": 40.7074409, "lon": -74.0180807 }, + { "lat": 40.7074500, "lon": -74.0180790 }, + { "lat": 40.7074609, "lon": -74.0180754 }, + { "lat": 40.7074742, "lon": -74.0180670 }, + { "lat": 40.7074963, "lon": -74.0180516 }, + { "lat": 40.7075163, "lon": -74.0180402 }, + { "lat": 40.7075194, "lon": -74.0180361 }, + { "lat": 40.7075199, "lon": -74.0180314 }, + { "lat": 40.7075186, "lon": -74.0180247 }, + { "lat": 40.7075425, "lon": -74.0180194 }, + { "lat": 40.7075451, "lon": -74.0180304 }, + { "lat": 40.7075504, "lon": -74.0180388 }, + { "lat": 40.7075603, "lon": -74.0180502 }, + { "lat": 40.7075712, "lon": -74.0180556 }, + { "lat": 40.7075873, "lon": -74.0180576 }, + { "lat": 40.7076152, "lon": -74.0180586 }, + { "lat": 40.7076320, "lon": -74.0180566 }, + { "lat": 40.7076437, "lon": -74.0180532 }, + { "lat": 40.7076541, "lon": -74.0180878 }, + { "lat": 40.7076368, "lon": -74.0180911 }, + { "lat": 40.7076114, "lon": -74.0180925 }, + { "lat": 40.7075890, "lon": -74.0180918 }, + { "lat": 40.7075641, "lon": -74.0180817 }, + { "lat": 40.7075407, "lon": -74.0180757 }, + { "lat": 40.7075199, "lon": -74.0180770 }, + { "lat": 40.7074980, "lon": -74.0180837 }, + { "lat": 40.7074833, "lon": -74.0180898 }, + { "lat": 40.7074767, "lon": -74.0180985 }, + { "lat": 40.7074762, "lon": -74.0181079 }, + { "lat": 40.7074660, "lon": -74.0181124 }, + { "lat": 40.7074649, "lon": -74.0181085 }, + { "lat": 40.7074628, "lon": -74.0181053 }, + { "lat": 40.7074600, "lon": -74.0181035 }, + { "lat": 40.7074568, "lon": -74.0181032 }, + { "lat": 40.7074538, "lon": -74.0181046 }, + { "lat": 40.7074514, "lon": -74.0181074 }, + { "lat": 40.7074500, "lon": -74.0181112 }, + { "lat": 40.7074498, "lon": -74.0181154 }, + { "lat": 40.7074508, "lon": -74.0181194 }, + { "lat": 40.7074529, "lon": -74.0181225 }, + { "lat": 40.7074452, "lon": -74.0181300 }, + { "lat": 40.7074350, "lon": -74.0181240 }, + { "lat": 40.7074248, "lon": -74.0181267 }, + { "lat": 40.7074167, "lon": -74.0181360 }, + { "lat": 40.7074086, "lon": -74.0181521 }, + { "lat": 40.7073928, "lon": -74.0181769 }, + { "lat": 40.7073684, "lon": -74.0182004 }, + { "lat": 40.7073471, "lon": -74.0182138 }, + { "lat": 40.7073283, "lon": -74.0182239 }, + { "lat": 40.7073090, "lon": -74.0182292 }, + { "lat": 40.7072820, "lon": -74.0182292 }, + { "lat": 40.7072627, "lon": -74.0182292 }, + { "lat": 40.7072444, "lon": -74.0182286 }, + { "lat": 40.7072230, "lon": -74.0182292 }, + { "lat": 40.7072027, "lon": -74.0182353 }, + { "lat": 40.7071905, "lon": -74.0182420 }, + { "lat": 40.7071773, "lon": -74.0182527 }, + { "lat": 40.7071614, "lon": -74.0182656 }, + { "lat": 40.7071585, "lon": -74.0182637 }, + { "lat": 40.7071553, "lon": -74.0182635 }, + { "lat": 40.7071523, "lon": -74.0182649 }, + { "lat": 40.7071499, "lon": -74.0182677 }, + { "lat": 40.7071485, "lon": -74.0182714 }, + { "lat": 40.7071484, "lon": -74.0182756 }, + { "lat": 40.7071494, "lon": -74.0182796 }, + { "lat": 40.7071515, "lon": -74.0182828 }, + { "lat": 40.7071478, "lon": -74.0182866 }, + { "lat": 40.7071420, "lon": -74.0182809 }, + { "lat": 40.7071315, "lon": -74.0182815 }, + { "lat": 40.7071219, "lon": -74.0182862 }, + { "lat": 40.7071107, "lon": -74.0182980 }, + { "lat": 40.7071003, "lon": -74.0183154 }, + { "lat": 40.7070868, "lon": -74.0183355 }, + { "lat": 40.7070741, "lon": -74.0183543 }, + { "lat": 40.7070624, "lon": -74.0183657 }, + { "lat": 40.7070479, "lon": -74.0183734 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 827874369, + "bounds": { + "minlat": 40.7068508, + "minlon": -74.0184592, + "maxlat": 40.7077133, + "maxlon": -74.0177813 + }, + "nodes": [ + 7728627847, + 3775043651, + 7728678998, + 7728635548, + 7728635549, + 7728635550, + 7728635551, + 7728635552, + 7728635553, + 7728635554, + 10616940038, + 7728691771, + 7728691770, + 7728691769, + 7728691768, + 7728691767, + 7728691766, + 7728691765, + 7728691764, + 7728691763, + 7728691762, + 7728691761, + 7728691760, + 7728691759, + 8279851577, + 7728678686, + 7728678687, + 7728678688, + 7728678673, + 7728678674, + 7728678675, + 7728678676, + 7728678677, + 7728678678, + 7728678679, + 7728678680, + 7728678681, + 7728678682, + 7728678683, + 7728678420, + 7728678419, + 7728678405, + 7728678418, + 7728678700, + 7728678701, + 7728678702, + 7728678703, + 7728678704, + 7728678705, + 7728678690, + 7728678691, + 7728678692, + 7728678693, + 7728678694, + 7728678695, + 7728678719, + 7728678720, + 7728678721, + 7728678722, + 7728678707, + 7728678708, + 7728678709, + 7728678710, + 7728678711, + 7728678735, + 7728678736, + 7728678737, + 7728678738, + 7728678739, + 7728678724, + 7728678725, + 7728678726, + 7728678727, + 7728678751, + 7728678752, + 7728678753, + 7728678754, + 7728678755, + 7728678756, + 7728678741, + 7728678742, + 7728678743, + 7728678744, + 7728678745, + 7728678746, + 7728678747, + 7728678451, + 7728678450, + 7728678449, + 7728678448, + 7728678447, + 7728678446, + 7728678445, + 7728678444, + 7728678443, + 7728678465, + 7728678466, + 7728678467, + 7728678468, + 7728678469, + 7728678470, + 7728678471, + 7728678472, + 7728678473, + 7728678474, + 7728678475, + 7728678476, + 7728678805, + 7728678806, + 7728678807, + 7728678792, + 7728678793, + 7728678794, + 7728678795, + 7728678494, + 7728704712, + 7728678495, + 7728678496, + 7728678497, + 7728678498, + 7728678499, + 7728678500, + 7728678501, + 7728678502, + 7728678503, + 7728678504, + 7728678819, + 7728678820, + 7728678821, + 7728678822, + 7728678823, + 7728678824, + 7728678809, + 7728678810, + 7728678811, + 7728678812, + 7728678813, + 7728678814, + 7728704711, + 7728678506, + 7728678507, + 7728678508, + 7728678836, + 7728678837, + 7728678838, + 7728678839, + 7728678840, + 7728678841, + 7728678826, + 7728678827, + 7728678828, + 7728678829, + 7728678830, + 7728678831, + 7728678519, + 7728678518, + 7728678517, + 7728678516, + 7728678515, + 7728678514, + 7728678513, + 7728678512, + 7728678511, + 7728678857, + 7728678858, + 7728678859, + 7728678860, + 7728678845, + 7728678846, + 7728678847, + 7728678848, + 7728678849, + 7728678908, + 7728678909, + 7728678910, + 7728678911, + 7728678896, + 7728678897, + 7728678898, + 7728678899, + 7728678900, + 7728678901, + 7728678925, + 7728678926, + 7728678927, + 7728678928, + 7728678913, + 7728678914, + 7728678915, + 7728678916, + 7728678917, + 7728678918, + 7728678943, + 7728678944, + 7728678945, + 7728678930, + 7728678931, + 7728678932, + 7728678933, + 7728678934, + 7728678935, + 7728678936, + 7728678993, + 7728678994, + 7728678995, + 7728678996, + 7728678981, + 7728678982, + 7728678983, + 7728678984, + 7728678985, + 7728678986, + 7728678976, + 7728678977, + 7728678978, + 7728678979, + 7728678964, + 7728678965, + 7728678966, + 7728678967, + 7728678958, + 7728678959, + 7728678960, + 7728678961, + 7728678962, + 7728678947, + 7728678948, + 7728678949, + 7728678950, + 7728678951, + 7728678952, + 7728678953, + 7728678954, + 7728678955, + 7728678956, + 7728678957, + 7728678560, + 7728678559, + 7728678558, + 7728678557, + 7728678556, + 7728678555, + 7728704710, + 7728678553, + 7728678552, + 7728678551, + 7728704709, + 7728704708, + 7728704707, + 7728704706, + 7728627847 + ], + "geometry": [ + { "lat": 40.7068671, "lon": -74.0184472 }, + { "lat": 40.7068590, "lon": -74.0184176 }, + { "lat": 40.7068508, "lon": -74.0183878 }, + { "lat": 40.7068698, "lon": -74.0183781 }, + { "lat": 40.7069094, "lon": -74.0183553 }, + { "lat": 40.7069516, "lon": -74.0183312 }, + { "lat": 40.7070050, "lon": -74.0182916 }, + { "lat": 40.7070764, "lon": -74.0182313 }, + { "lat": 40.7070629, "lon": -74.0182001 }, + { "lat": 40.7070713, "lon": -74.0181934 }, + { "lat": 40.7070935, "lon": -74.0181772 }, + { "lat": 40.7071204, "lon": -74.0181575 }, + { "lat": 40.7071336, "lon": -74.0181481 }, + { "lat": 40.7071397, "lon": -74.0181595 }, + { "lat": 40.7071915, "lon": -74.0181220 }, + { "lat": 40.7072464, "lon": -74.0180790 }, + { "lat": 40.7072957, "lon": -74.0180455 }, + { "lat": 40.7073501, "lon": -74.0180167 }, + { "lat": 40.7074335, "lon": -74.0179798 }, + { "lat": 40.7074914, "lon": -74.0179490 }, + { "lat": 40.7075326, "lon": -74.0179195 }, + { "lat": 40.7075692, "lon": -74.0178866 }, + { "lat": 40.7076246, "lon": -74.0178363 }, + { "lat": 40.7076770, "lon": -74.0177813 }, + { "lat": 40.7076971, "lon": -74.0178443 }, + { "lat": 40.7077048, "lon": -74.0178686 }, + { "lat": 40.7077019, "lon": -74.0178668 }, + { "lat": 40.7076987, "lon": -74.0178665 }, + { "lat": 40.7076957, "lon": -74.0178679 }, + { "lat": 40.7076933, "lon": -74.0178707 }, + { "lat": 40.7076919, "lon": -74.0178745 }, + { "lat": 40.7076917, "lon": -74.0178787 }, + { "lat": 40.7076928, "lon": -74.0178826 }, + { "lat": 40.7076949, "lon": -74.0178858 }, + { "lat": 40.7076978, "lon": -74.0178876 }, + { "lat": 40.7077010, "lon": -74.0178879 }, + { "lat": 40.7077040, "lon": -74.0178865 }, + { "lat": 40.7077064, "lon": -74.0178837 }, + { "lat": 40.7077078, "lon": -74.0178799 }, + { "lat": 40.7077133, "lon": -74.0178906 }, + { "lat": 40.7077059, "lon": -74.0179030 }, + { "lat": 40.7077026, "lon": -74.0179096 }, + { "lat": 40.7077001, "lon": -74.0179191 }, + { "lat": 40.7076879, "lon": -74.0179188 }, + { "lat": 40.7076881, "lon": -74.0179146 }, + { "lat": 40.7076871, "lon": -74.0179107 }, + { "lat": 40.7076850, "lon": -74.0179075 }, + { "lat": 40.7076821, "lon": -74.0179057 }, + { "lat": 40.7076789, "lon": -74.0179054 }, + { "lat": 40.7076759, "lon": -74.0179068 }, + { "lat": 40.7076735, "lon": -74.0179096 }, + { "lat": 40.7076721, "lon": -74.0179134 }, + { "lat": 40.7076719, "lon": -74.0179176 }, + { "lat": 40.7076730, "lon": -74.0179215 }, + { "lat": 40.7076751, "lon": -74.0179247 }, + { "lat": 40.7076647, "lon": -74.0179368 }, + { "lat": 40.7076626, "lon": -74.0179337 }, + { "lat": 40.7076597, "lon": -74.0179318 }, + { "lat": 40.7076565, "lon": -74.0179316 }, + { "lat": 40.7076535, "lon": -74.0179329 }, + { "lat": 40.7076511, "lon": -74.0179357 }, + { "lat": 40.7076497, "lon": -74.0179395 }, + { "lat": 40.7076496, "lon": -74.0179437 }, + { "lat": 40.7076506, "lon": -74.0179477 }, + { "lat": 40.7076347, "lon": -74.0179535 }, + { "lat": 40.7076337, "lon": -74.0179495 }, + { "lat": 40.7076316, "lon": -74.0179464 }, + { "lat": 40.7076287, "lon": -74.0179446 }, + { "lat": 40.7076255, "lon": -74.0179443 }, + { "lat": 40.7076225, "lon": -74.0179457 }, + { "lat": 40.7076201, "lon": -74.0179485 }, + { "lat": 40.7076187, "lon": -74.0179523 }, + { "lat": 40.7076185, "lon": -74.0179565 }, + { "lat": 40.7075969, "lon": -74.0179591 }, + { "lat": 40.7075971, "lon": -74.0179549 }, + { "lat": 40.7075961, "lon": -74.0179509 }, + { "lat": 40.7075940, "lon": -74.0179477 }, + { "lat": 40.7075911, "lon": -74.0179459 }, + { "lat": 40.7075879, "lon": -74.0179456 }, + { "lat": 40.7075849, "lon": -74.0179470 }, + { "lat": 40.7075825, "lon": -74.0179498 }, + { "lat": 40.7075811, "lon": -74.0179536 }, + { "lat": 40.7075809, "lon": -74.0179578 }, + { "lat": 40.7075820, "lon": -74.0179618 }, + { "lat": 40.7075841, "lon": -74.0179649 }, + { "lat": 40.7075870, "lon": -74.0179668 }, + { "lat": 40.7075857, "lon": -74.0179781 }, + { "lat": 40.7075768, "lon": -74.0179758 }, + { "lat": 40.7075669, "lon": -74.0179768 }, + { "lat": 40.7075598, "lon": -74.0179788 }, + { "lat": 40.7075517, "lon": -74.0179838 }, + { "lat": 40.7075476, "lon": -74.0179889 }, + { "lat": 40.7075443, "lon": -74.0179976 }, + { "lat": 40.7075433, "lon": -74.0180063 }, + { "lat": 40.7075425, "lon": -74.0180194 }, + { "lat": 40.7075186, "lon": -74.0180247 }, + { "lat": 40.7075161, "lon": -74.0180197 }, + { "lat": 40.7075097, "lon": -74.0180153 }, + { "lat": 40.7075001, "lon": -74.0180153 }, + { "lat": 40.7074874, "lon": -74.0180163 }, + { "lat": 40.7074711, "lon": -74.0180234 }, + { "lat": 40.7074462, "lon": -74.0180375 }, + { "lat": 40.7074337, "lon": -74.0180462 }, + { "lat": 40.7074284, "lon": -74.0180542 }, + { "lat": 40.7074274, "lon": -74.0180613 }, + { "lat": 40.7074281, "lon": -74.0180700 }, + { "lat": 40.7074304, "lon": -74.0180760 }, + { "lat": 40.7074217, "lon": -74.0180825 }, + { "lat": 40.7074188, "lon": -74.0180807 }, + { "lat": 40.7074156, "lon": -74.0180804 }, + { "lat": 40.7074126, "lon": -74.0180818 }, + { "lat": 40.7074102, "lon": -74.0180846 }, + { "lat": 40.7074088, "lon": -74.0180884 }, + { "lat": 40.7074086, "lon": -74.0180926 }, + { "lat": 40.7073979, "lon": -74.0180931 }, + { "lat": 40.7073948, "lon": -74.0180866 }, + { "lat": 40.7073933, "lon": -74.0180834 }, + { "lat": 40.7073880, "lon": -74.0180797 }, + { "lat": 40.7073809, "lon": -74.0180777 }, + { "lat": 40.7073710, "lon": -74.0180784 }, + { "lat": 40.7073623, "lon": -74.0180837 }, + { "lat": 40.7073572, "lon": -74.0180894 }, + { "lat": 40.7073547, "lon": -74.0181018 }, + { "lat": 40.7073522, "lon": -74.0181146 }, + { "lat": 40.7073448, "lon": -74.0181340 }, + { "lat": 40.7073344, "lon": -74.0181441 }, + { "lat": 40.7073275, "lon": -74.0181361 }, + { "lat": 40.7073277, "lon": -74.0181319 }, + { "lat": 40.7073267, "lon": -74.0181279 }, + { "lat": 40.7073246, "lon": -74.0181248 }, + { "lat": 40.7073217, "lon": -74.0181229 }, + { "lat": 40.7073185, "lon": -74.0181227 }, + { "lat": 40.7073155, "lon": -74.0181240 }, + { "lat": 40.7073131, "lon": -74.0181268 }, + { "lat": 40.7073117, "lon": -74.0181306 }, + { "lat": 40.7073115, "lon": -74.0181348 }, + { "lat": 40.7073126, "lon": -74.0181388 }, + { "lat": 40.7073147, "lon": -74.0181420 }, + { "lat": 40.7073173, "lon": -74.0181531 }, + { "lat": 40.7073072, "lon": -74.0181585 }, + { "lat": 40.7072985, "lon": -74.0181629 }, + { "lat": 40.7072912, "lon": -74.0181686 }, + { "lat": 40.7072686, "lon": -74.0181522 }, + { "lat": 40.7072688, "lon": -74.0181480 }, + { "lat": 40.7072677, "lon": -74.0181440 }, + { "lat": 40.7072656, "lon": -74.0181409 }, + { "lat": 40.7072627, "lon": -74.0181390 }, + { "lat": 40.7072596, "lon": -74.0181388 }, + { "lat": 40.7072565, "lon": -74.0181401 }, + { "lat": 40.7072541, "lon": -74.0181429 }, + { "lat": 40.7072528, "lon": -74.0181467 }, + { "lat": 40.7072526, "lon": -74.0181509 }, + { "lat": 40.7072536, "lon": -74.0181549 }, + { "lat": 40.7072557, "lon": -74.0181580 }, + { "lat": 40.7072492, "lon": -74.0181689 }, + { "lat": 40.7072421, "lon": -74.0181645 }, + { "lat": 40.7072319, "lon": -74.0181645 }, + { "lat": 40.7072177, "lon": -74.0181679 }, + { "lat": 40.7071984, "lon": -74.0181776 }, + { "lat": 40.7071908, "lon": -74.0181843 }, + { "lat": 40.7071877, "lon": -74.0181897 }, + { "lat": 40.7071877, "lon": -74.0181940 }, + { "lat": 40.7071900, "lon": -74.0181994 }, + { "lat": 40.7071844, "lon": -74.0182080 }, + { "lat": 40.7071822, "lon": -74.0182049 }, + { "lat": 40.7071794, "lon": -74.0182031 }, + { "lat": 40.7071762, "lon": -74.0182028 }, + { "lat": 40.7071732, "lon": -74.0182042 }, + { "lat": 40.7071708, "lon": -74.0182070 }, + { "lat": 40.7071694, "lon": -74.0182108 }, + { "lat": 40.7071692, "lon": -74.0182150 }, + { "lat": 40.7071702, "lon": -74.0182189 }, + { "lat": 40.7071539, "lon": -74.0182305 }, + { "lat": 40.7071517, "lon": -74.0182274 }, + { "lat": 40.7071489, "lon": -74.0182255 }, + { "lat": 40.7071457, "lon": -74.0182253 }, + { "lat": 40.7071427, "lon": -74.0182266 }, + { "lat": 40.7071403, "lon": -74.0182294 }, + { "lat": 40.7071389, "lon": -74.0182332 }, + { "lat": 40.7071387, "lon": -74.0182374 }, + { "lat": 40.7071397, "lon": -74.0182414 }, + { "lat": 40.7071419, "lon": -74.0182445 }, + { "lat": 40.7071246, "lon": -74.0182607 }, + { "lat": 40.7071225, "lon": -74.0182575 }, + { "lat": 40.7071196, "lon": -74.0182557 }, + { "lat": 40.7071165, "lon": -74.0182554 }, + { "lat": 40.7071134, "lon": -74.0182568 }, + { "lat": 40.7071111, "lon": -74.0182596 }, + { "lat": 40.7071097, "lon": -74.0182634 }, + { "lat": 40.7071095, "lon": -74.0182676 }, + { "lat": 40.7071105, "lon": -74.0182716 }, + { "lat": 40.7071126, "lon": -74.0182747 }, + { "lat": 40.7070966, "lon": -74.0182931 }, + { "lat": 40.7070937, "lon": -74.0182912 }, + { "lat": 40.7070905, "lon": -74.0182910 }, + { "lat": 40.7070875, "lon": -74.0182924 }, + { "lat": 40.7070851, "lon": -74.0182951 }, + { "lat": 40.7070837, "lon": -74.0182989 }, + { "lat": 40.7070835, "lon": -74.0183031 }, + { "lat": 40.7070846, "lon": -74.0183071 }, + { "lat": 40.7070867, "lon": -74.0183103 }, + { "lat": 40.7070896, "lon": -74.0183121 }, + { "lat": 40.7070791, "lon": -74.0183287 }, + { "lat": 40.7070770, "lon": -74.0183256 }, + { "lat": 40.7070742, "lon": -74.0183238 }, + { "lat": 40.7070710, "lon": -74.0183235 }, + { "lat": 40.7070680, "lon": -74.0183249 }, + { "lat": 40.7070656, "lon": -74.0183277 }, + { "lat": 40.7070642, "lon": -74.0183315 }, + { "lat": 40.7070640, "lon": -74.0183357 }, + { "lat": 40.7070650, "lon": -74.0183396 }, + { "lat": 40.7070671, "lon": -74.0183428 }, + { "lat": 40.7070509, "lon": -74.0183529 }, + { "lat": 40.7070488, "lon": -74.0183497 }, + { "lat": 40.7070459, "lon": -74.0183479 }, + { "lat": 40.7070428, "lon": -74.0183476 }, + { "lat": 40.7070397, "lon": -74.0183490 }, + { "lat": 40.7070374, "lon": -74.0183518 }, + { "lat": 40.7070360, "lon": -74.0183556 }, + { "lat": 40.7070358, "lon": -74.0183598 }, + { "lat": 40.7070217, "lon": -74.0183656 }, + { "lat": 40.7070207, "lon": -74.0183616 }, + { "lat": 40.7070186, "lon": -74.0183585 }, + { "lat": 40.7070157, "lon": -74.0183566 }, + { "lat": 40.7070125, "lon": -74.0183564 }, + { "lat": 40.7070095, "lon": -74.0183577 }, + { "lat": 40.7070071, "lon": -74.0183605 }, + { "lat": 40.7070057, "lon": -74.0183643 }, + { "lat": 40.7070055, "lon": -74.0183685 }, + { "lat": 40.7070066, "lon": -74.0183725 }, + { "lat": 40.7070087, "lon": -74.0183756 }, + { "lat": 40.7070115, "lon": -74.0183775 }, + { "lat": 40.7070147, "lon": -74.0183777 }, + { "lat": 40.7070177, "lon": -74.0183764 }, + { "lat": 40.7070201, "lon": -74.0183736 }, + { "lat": 40.7070215, "lon": -74.0183698 }, + { "lat": 40.7070243, "lon": -74.0183805 }, + { "lat": 40.7070085, "lon": -74.0183825 }, + { "lat": 40.7069905, "lon": -74.0183845 }, + { "lat": 40.7069730, "lon": -74.0183888 }, + { "lat": 40.7069521, "lon": -74.0183955 }, + { "lat": 40.7069346, "lon": -74.0184059 }, + { "lat": 40.7069185, "lon": -74.0184170 }, + { "lat": 40.7069104, "lon": -74.0184257 }, + { "lat": 40.7069076, "lon": -74.0184328 }, + { "lat": 40.7069018, "lon": -74.0184442 }, + { "lat": 40.7068939, "lon": -74.0184592 }, + { "lat": 40.7068895, "lon": -74.0184559 }, + { "lat": 40.7068823, "lon": -74.0184534 }, + { "lat": 40.7068754, "lon": -74.0184535 }, + { "lat": 40.7068671, "lon": -74.0184472 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 827874385, + "bounds": { + "minlat": 40.7075789, + "minlon": -74.0181983, + "maxlat": 40.7076000, + "maxlon": -74.0181692 + }, + "nodes": [ + 7728678770, + 7728678771, + 7728678772, + 7728660164, + 7728660163, + 7728678770 + ], + "geometry": [ + { "lat": 40.7075839, "lon": -74.0181983 }, + { "lat": 40.7075818, "lon": -74.0181952 }, + { "lat": 40.7075789, "lon": -74.0181933 }, + { "lat": 40.7075794, "lon": -74.0181692 }, + { "lat": 40.7076000, "lon": -74.0181739 }, + { "lat": 40.7075839, "lon": -74.0181983 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 827874386, + "bounds": { + "minlat": 40.7072030, + "minlon": -74.0183460, + "maxlat": 40.7072246, + "maxlon": -74.0183228 + }, + "nodes": [ + 7728715098, + 7728715096, + 7728678290, + 7728678877, + 7728678862, + 7728715098 + ], + "geometry": [ + { "lat": 40.7072030, "lon": -74.0183375 }, + { "lat": 40.7072227, "lon": -74.0183228 }, + { "lat": 40.7072246, "lon": -74.0183241 }, + { "lat": 40.7072115, "lon": -74.0183446 }, + { "lat": 40.7072085, "lon": -74.0183460 }, + { "lat": 40.7072030, "lon": -74.0183375 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 827874387, + "bounds": { + "minlat": 40.7068977, + "minlon": -74.0185377, + "maxlat": 40.7078296, + "maxlon": -74.0180601 + }, + "nodes": [ + 2044075099, + 7728679014, + 7728678292, + 7728678293, + 7728678294, + 7728678295, + 7728678296, + 7728678297, + 7728678298, + 7728678299, + 7728678300, + 7728678301, + 7728678302, + 7728678303, + 7728678304, + 7728678305, + 7728678306, + 7728678307, + 7728678308, + 7728678309, + 7728678310, + 7728678311, + 7728678312, + 7728678313, + 7728715098, + 7728678862, + 7728678863, + 7728678864, + 7728678865, + 7728678866, + 7728678867, + 7728678868, + 7728678869, + 7728678870, + 7728678871, + 7728678872, + 7728678873, + 7728678874, + 7728678875, + 7728678876, + 7728678877, + 7728678290, + 7728678289, + 7728678288, + 7728678287, + 7728678286, + 7728678285, + 7728660184, + 7728660183, + 7728660182, + 7728660181, + 7728660180, + 7728660179, + 7728660178, + 7728660177, + 7728660176, + 7728660175, + 7728660174, + 7728660173, + 7728660172, + 7728660171, + 7728660170, + 7728660169, + 7728715097, + 7728660166, + 7728660165, + 7728660164, + 7728678772, + 7728678773, + 7728678758, + 7728678759, + 7728678760, + 7728678761, + 7728678762, + 7728678763, + 7728678764, + 7728678765, + 7728678766, + 7728678767, + 7728678768, + 7728678769, + 7728678770, + 7728660163, + 7728660162, + 7728660161, + 7728660160, + 7728660159, + 7728660158, + 7728660157, + 7728660156, + 7728660155, + 7728660154, + 7728660153, + 7728678383, + 7728678381, + 11421922654, + 2044075154, + 2044075099 + ], + "geometry": [ + { "lat": 40.7069062, "lon": -74.0185377 }, + { "lat": 40.7068977, "lon": -74.0184820 }, + { "lat": 40.7069201, "lon": -74.0184713 }, + { "lat": 40.7069310, "lon": -74.0184683 }, + { "lat": 40.7069425, "lon": -74.0184663 }, + { "lat": 40.7069526, "lon": -74.0184623 }, + { "lat": 40.7069620, "lon": -74.0184572 }, + { "lat": 40.7069752, "lon": -74.0184512 }, + { "lat": 40.7069897, "lon": -74.0184475 }, + { "lat": 40.7070014, "lon": -74.0184462 }, + { "lat": 40.7070184, "lon": -74.0184462 }, + { "lat": 40.7070355, "lon": -74.0184428 }, + { "lat": 40.7070512, "lon": -74.0184364 }, + { "lat": 40.7070670, "lon": -74.0184297 }, + { "lat": 40.7070820, "lon": -74.0184220 }, + { "lat": 40.7070957, "lon": -74.0184086 }, + { "lat": 40.7071071, "lon": -74.0184012 }, + { "lat": 40.7071138, "lon": -74.0183992 }, + { "lat": 40.7071227, "lon": -74.0183952 }, + { "lat": 40.7071374, "lon": -74.0183858 }, + { "lat": 40.7071453, "lon": -74.0183808 }, + { "lat": 40.7071575, "lon": -74.0183764 }, + { "lat": 40.7071671, "lon": -74.0183667 }, + { "lat": 40.7071699, "lon": -74.0183587 }, + { "lat": 40.7072030, "lon": -74.0183375 }, + { "lat": 40.7072085, "lon": -74.0183460 }, + { "lat": 40.7072061, "lon": -74.0183488 }, + { "lat": 40.7072047, "lon": -74.0183526 }, + { "lat": 40.7072045, "lon": -74.0183568 }, + { "lat": 40.7072056, "lon": -74.0183608 }, + { "lat": 40.7072077, "lon": -74.0183639 }, + { "lat": 40.7072105, "lon": -74.0183657 }, + { "lat": 40.7072137, "lon": -74.0183660 }, + { "lat": 40.7072168, "lon": -74.0183646 }, + { "lat": 40.7072191, "lon": -74.0183618 }, + { "lat": 40.7072205, "lon": -74.0183580 }, + { "lat": 40.7072207, "lon": -74.0183538 }, + { "lat": 40.7072197, "lon": -74.0183499 }, + { "lat": 40.7072176, "lon": -74.0183467 }, + { "lat": 40.7072147, "lon": -74.0183449 }, + { "lat": 40.7072115, "lon": -74.0183446 }, + { "lat": 40.7072246, "lon": -74.0183241 }, + { "lat": 40.7072342, "lon": -74.0183258 }, + { "lat": 40.7072480, "lon": -74.0183261 }, + { "lat": 40.7072640, "lon": -74.0183251 }, + { "lat": 40.7072833, "lon": -74.0183245 }, + { "lat": 40.7072988, "lon": -74.0183231 }, + { "lat": 40.7073222, "lon": -74.0183201 }, + { "lat": 40.7073410, "lon": -74.0183168 }, + { "lat": 40.7073547, "lon": -74.0183151 }, + { "lat": 40.7073710, "lon": -74.0183111 }, + { "lat": 40.7073855, "lon": -74.0183050 }, + { "lat": 40.7073961, "lon": -74.0182990 }, + { "lat": 40.7074134, "lon": -74.0182815 }, + { "lat": 40.7074269, "lon": -74.0182698 }, + { "lat": 40.7074398, "lon": -74.0182661 }, + { "lat": 40.7074482, "lon": -74.0182591 }, + { "lat": 40.7074523, "lon": -74.0182470 }, + { "lat": 40.7074607, "lon": -74.0182343 }, + { "lat": 40.7074675, "lon": -74.0182242 }, + { "lat": 40.7074719, "lon": -74.0182095 }, + { "lat": 40.7074736, "lon": -74.0181947 }, + { "lat": 40.7074721, "lon": -74.0181823 }, + { "lat": 40.7075148, "lon": -74.0181603 }, + { "lat": 40.7075242, "lon": -74.0181639 }, + { "lat": 40.7075534, "lon": -74.0181676 }, + { "lat": 40.7075794, "lon": -74.0181692 }, + { "lat": 40.7075789, "lon": -74.0181933 }, + { "lat": 40.7075757, "lon": -74.0181931 }, + { "lat": 40.7075727, "lon": -74.0181945 }, + { "lat": 40.7075703, "lon": -74.0181972 }, + { "lat": 40.7075689, "lon": -74.0182010 }, + { "lat": 40.7075687, "lon": -74.0182052 }, + { "lat": 40.7075698, "lon": -74.0182092 }, + { "lat": 40.7075719, "lon": -74.0182124 }, + { "lat": 40.7075748, "lon": -74.0182142 }, + { "lat": 40.7075779, "lon": -74.0182145 }, + { "lat": 40.7075810, "lon": -74.0182131 }, + { "lat": 40.7075833, "lon": -74.0182103 }, + { "lat": 40.7075847, "lon": -74.0182065 }, + { "lat": 40.7075849, "lon": -74.0182023 }, + { "lat": 40.7075839, "lon": -74.0181983 }, + { "lat": 40.7076000, "lon": -74.0181739 }, + { "lat": 40.7076144, "lon": -74.0181793 }, + { "lat": 40.7076322, "lon": -74.0181843 }, + { "lat": 40.7076582, "lon": -74.0181857 }, + { "lat": 40.7076785, "lon": -74.0181850 }, + { "lat": 40.7076912, "lon": -74.0181820 }, + { "lat": 40.7077059, "lon": -74.0181766 }, + { "lat": 40.7077430, "lon": -74.0181592 }, + { "lat": 40.7077636, "lon": -74.0181444 }, + { "lat": 40.7077758, "lon": -74.0181300 }, + { "lat": 40.7077840, "lon": -74.0181106 }, + { "lat": 40.7077898, "lon": -74.0180811 }, + { "lat": 40.7078024, "lon": -74.0180601 }, + { "lat": 40.7078080, "lon": -74.0180845 }, + { "lat": 40.7078296, "lon": -74.0181794 }, + { "lat": 40.7069062, "lon": -74.0185377 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 827876919, + "bounds": { + "minlat": 40.7076437, + "minlon": -74.0180878, + "maxlat": 40.7078086, + "maxlon": -74.0179148 + }, + "nodes": [ + 7728678369, + 7728678435, + 7728678434, + 7728678462, + 7728678461, + 7728678608, + 7728678609, + 7728678610, + 7728678611, + 7728678612, + 7728678613, + 7728678614, + 7728678615, + 7728678616, + 7728678617, + 7728678407, + 7728678406, + 7728678433, + 7728678432, + 7728678431, + 7728678430, + 7728678429, + 7728678428, + 7728678427, + 7728678426, + 7728678402, + 7728678387, + 7728678388, + 7728678389, + 7728678390, + 7728678391, + 7728678392, + 7728678393, + 7728678394, + 7728678395, + 7728678396, + 7728678397, + 7728678377, + 7728678376, + 7728678375, + 7728678374, + 7728678373, + 7728678372, + 7728678371, + 7728678370, + 7728678369 + ], + "geometry": [ + { "lat": 40.7076541, "lon": -74.0180878 }, + { "lat": 40.7076437, "lon": -74.0180532 }, + { "lat": 40.7076482, "lon": -74.0180495 }, + { "lat": 40.7076521, "lon": -74.0180422 }, + { "lat": 40.7076521, "lon": -74.0180371 }, + { "lat": 40.7076648, "lon": -74.0180329 }, + { "lat": 40.7076658, "lon": -74.0180369 }, + { "lat": 40.7076680, "lon": -74.0180400 }, + { "lat": 40.7076708, "lon": -74.0180419 }, + { "lat": 40.7076740, "lon": -74.0180421 }, + { "lat": 40.7076770, "lon": -74.0180407 }, + { "lat": 40.7076794, "lon": -74.0180380 }, + { "lat": 40.7076808, "lon": -74.0180342 }, + { "lat": 40.7076810, "lon": -74.0180300 }, + { "lat": 40.7076800, "lon": -74.0180260 }, + { "lat": 40.7076930, "lon": -74.0180200 }, + { "lat": 40.7076960, "lon": -74.0180237 }, + { "lat": 40.7076996, "lon": -74.0180237 }, + { "lat": 40.7077118, "lon": -74.0180123 }, + { "lat": 40.7077339, "lon": -74.0179852 }, + { "lat": 40.7077494, "lon": -74.0179671 }, + { "lat": 40.7077558, "lon": -74.0179580 }, + { "lat": 40.7077621, "lon": -74.0179453 }, + { "lat": 40.7077659, "lon": -74.0179275 }, + { "lat": 40.7077664, "lon": -74.0179148 }, + { "lat": 40.7077857, "lon": -74.0179339 }, + { "lat": 40.7077826, "lon": -74.0179353 }, + { "lat": 40.7077802, "lon": -74.0179381 }, + { "lat": 40.7077789, "lon": -74.0179419 }, + { "lat": 40.7077787, "lon": -74.0179461 }, + { "lat": 40.7077797, "lon": -74.0179500 }, + { "lat": 40.7077818, "lon": -74.0179532 }, + { "lat": 40.7077847, "lon": -74.0179550 }, + { "lat": 40.7077879, "lon": -74.0179553 }, + { "lat": 40.7077909, "lon": -74.0179539 }, + { "lat": 40.7077933, "lon": -74.0179511 }, + { "lat": 40.7077947, "lon": -74.0179473 }, + { "lat": 40.7078086, "lon": -74.0179684 }, + { "lat": 40.7077969, "lon": -74.0179684 }, + { "lat": 40.7077863, "lon": -74.0179731 }, + { "lat": 40.7077715, "lon": -74.0179852 }, + { "lat": 40.7077491, "lon": -74.0180080 }, + { "lat": 40.7077227, "lon": -74.0180408 }, + { "lat": 40.7076998, "lon": -74.0180616 }, + { "lat": 40.7076795, "lon": -74.0180750 }, + { "lat": 40.7076541, "lon": -74.0180878 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 827876920, + "bounds": { + "minlat": 40.7076339, + "minlon": -74.0180371, + "maxlat": 40.7077034, + "maxlon": -74.0179620 + }, + "nodes": [ + 7728678407, + 7728678408, + 7728678409, + 7728678410, + 7728678411, + 7728678412, + 7728678413, + 7728678414, + 7728678667, + 7728678666, + 7728678665, + 7728678664, + 7728678663, + 7728678662, + 7728678661, + 7728678651, + 7728678650, + 7728678649, + 7728678648, + 7728678647, + 7728678646, + 7728678645, + 7728678644, + 7728678643, + 7728678633, + 7728678632, + 7728678631, + 7728678630, + 7728678629, + 7728678458, + 7728678459, + 7728678460, + 7728678461, + 7728678608, + 7728678607, + 7728678606, + 7728678605, + 7728678620, + 7728678619, + 7728678618, + 7728678617, + 7728678407 + ], + "geometry": [ + { "lat": 40.7076930, "lon": -74.0180200 }, + { "lat": 40.7076909, "lon": -74.0180143 }, + { "lat": 40.7076909, "lon": -74.0180106 }, + { "lat": 40.7076912, "lon": -74.0180029 }, + { "lat": 40.7076940, "lon": -74.0179966 }, + { "lat": 40.7076988, "lon": -74.0179868 }, + { "lat": 40.7077024, "lon": -74.0179751 }, + { "lat": 40.7077034, "lon": -74.0179620 }, + { "lat": 40.7076998, "lon": -74.0179622 }, + { "lat": 40.7076996, "lon": -74.0179664 }, + { "lat": 40.7076982, "lon": -74.0179702 }, + { "lat": 40.7076958, "lon": -74.0179730 }, + { "lat": 40.7076928, "lon": -74.0179744 }, + { "lat": 40.7076896, "lon": -74.0179741 }, + { "lat": 40.7076868, "lon": -74.0179723 }, + { "lat": 40.7076713, "lon": -74.0179817 }, + { "lat": 40.7076724, "lon": -74.0179857 }, + { "lat": 40.7076722, "lon": -74.0179899 }, + { "lat": 40.7076708, "lon": -74.0179937 }, + { "lat": 40.7076684, "lon": -74.0179965 }, + { "lat": 40.7076654, "lon": -74.0179979 }, + { "lat": 40.7076622, "lon": -74.0179976 }, + { "lat": 40.7076593, "lon": -74.0179958 }, + { "lat": 40.7076572, "lon": -74.0179926 }, + { "lat": 40.7076408, "lon": -74.0179985 }, + { "lat": 40.7076407, "lon": -74.0180027 }, + { "lat": 40.7076393, "lon": -74.0180064 }, + { "lat": 40.7076369, "lon": -74.0180092 }, + { "lat": 40.7076339, "lon": -74.0180106 }, + { "lat": 40.7076348, "lon": -74.0180237 }, + { "lat": 40.7076444, "lon": -74.0180281 }, + { "lat": 40.7076495, "lon": -74.0180311 }, + { "lat": 40.7076521, "lon": -74.0180371 }, + { "lat": 40.7076648, "lon": -74.0180329 }, + { "lat": 40.7076650, "lon": -74.0180287 }, + { "lat": 40.7076664, "lon": -74.0180249 }, + { "lat": 40.7076688, "lon": -74.0180221 }, + { "lat": 40.7076718, "lon": -74.0180207 }, + { "lat": 40.7076750, "lon": -74.0180210 }, + { "lat": 40.7076778, "lon": -74.0180228 }, + { "lat": 40.7076800, "lon": -74.0180260 }, + { "lat": 40.7076930, "lon": -74.0180200 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 827876921, + "bounds": { + "minlat": 40.7075857, + "minlon": -74.0180237, + "maxlat": 40.7077034, + "maxlon": -74.0179188 + }, + "nodes": [ + 7728678414, + 7728678667, + 7728678668, + 7728678669, + 7728678670, + 7728678671, + 7728678656, + 7728678657, + 7728678658, + 7728678659, + 7728678660, + 7728678661, + 7728678651, + 7728678652, + 7728678653, + 7728678654, + 7728678639, + 7728678640, + 7728678641, + 7728678642, + 7728678643, + 7728678633, + 7728678634, + 7728678635, + 7728678636, + 7728678637, + 7728678622, + 7728678623, + 7728678624, + 7728678625, + 7728678626, + 7728678627, + 7728678628, + 7728678629, + 7728678458, + 7728678457, + 7728678456, + 7728678455, + 7728678454, + 7728678453, + 7728678452, + 7728678451, + 7728678747, + 7728678748, + 7728678749, + 7728678750, + 7728678751, + 7728678727, + 7728678728, + 7728678729, + 7728678730, + 7728678731, + 7728678732, + 7728678733, + 7728678734, + 7728678735, + 7728678711, + 7728678712, + 7728678713, + 7728678714, + 7728678715, + 7728678716, + 7728678717, + 7728678718, + 7728678719, + 7728678695, + 7728678696, + 7728678697, + 7728678698, + 7728678699, + 7728678700, + 7728678418, + 7728678417, + 7728678416, + 7728678415, + 7728678414 + ], + "geometry": [ + { "lat": 40.7077034, "lon": -74.0179620 }, + { "lat": 40.7076998, "lon": -74.0179622 }, + { "lat": 40.7076988, "lon": -74.0179583 }, + { "lat": 40.7076967, "lon": -74.0179551 }, + { "lat": 40.7076938, "lon": -74.0179533 }, + { "lat": 40.7076906, "lon": -74.0179530 }, + { "lat": 40.7076876, "lon": -74.0179544 }, + { "lat": 40.7076852, "lon": -74.0179572 }, + { "lat": 40.7076838, "lon": -74.0179610 }, + { "lat": 40.7076836, "lon": -74.0179652 }, + { "lat": 40.7076846, "lon": -74.0179692 }, + { "lat": 40.7076868, "lon": -74.0179723 }, + { "lat": 40.7076713, "lon": -74.0179817 }, + { "lat": 40.7076692, "lon": -74.0179786 }, + { "lat": 40.7076663, "lon": -74.0179767 }, + { "lat": 40.7076632, "lon": -74.0179765 }, + { "lat": 40.7076601, "lon": -74.0179779 }, + { "lat": 40.7076577, "lon": -74.0179807 }, + { "lat": 40.7076564, "lon": -74.0179844 }, + { "lat": 40.7076562, "lon": -74.0179886 }, + { "lat": 40.7076572, "lon": -74.0179926 }, + { "lat": 40.7076408, "lon": -74.0179985 }, + { "lat": 40.7076398, "lon": -74.0179945 }, + { "lat": 40.7076377, "lon": -74.0179913 }, + { "lat": 40.7076348, "lon": -74.0179895 }, + { "lat": 40.7076316, "lon": -74.0179892 }, + { "lat": 40.7076286, "lon": -74.0179906 }, + { "lat": 40.7076262, "lon": -74.0179934 }, + { "lat": 40.7076248, "lon": -74.0179972 }, + { "lat": 40.7076246, "lon": -74.0180014 }, + { "lat": 40.7076257, "lon": -74.0180054 }, + { "lat": 40.7076278, "lon": -74.0180085 }, + { "lat": 40.7076307, "lon": -74.0180104 }, + { "lat": 40.7076339, "lon": -74.0180106 }, + { "lat": 40.7076348, "lon": -74.0180237 }, + { "lat": 40.7076266, "lon": -74.0180237 }, + { "lat": 40.7076162, "lon": -74.0180224 }, + { "lat": 40.7076099, "lon": -74.0180167 }, + { "lat": 40.7076053, "lon": -74.0180093 }, + { "lat": 40.7076017, "lon": -74.0180006 }, + { "lat": 40.7075954, "lon": -74.0179895 }, + { "lat": 40.7075857, "lon": -74.0179781 }, + { "lat": 40.7075870, "lon": -74.0179668 }, + { "lat": 40.7075901, "lon": -74.0179670 }, + { "lat": 40.7075932, "lon": -74.0179656 }, + { "lat": 40.7075955, "lon": -74.0179629 }, + { "lat": 40.7075969, "lon": -74.0179591 }, + { "lat": 40.7076185, "lon": -74.0179565 }, + { "lat": 40.7076196, "lon": -74.0179604 }, + { "lat": 40.7076217, "lon": -74.0179636 }, + { "lat": 40.7076246, "lon": -74.0179654 }, + { "lat": 40.7076278, "lon": -74.0179657 }, + { "lat": 40.7076308, "lon": -74.0179643 }, + { "lat": 40.7076332, "lon": -74.0179615 }, + { "lat": 40.7076346, "lon": -74.0179577 }, + { "lat": 40.7076347, "lon": -74.0179535 }, + { "lat": 40.7076506, "lon": -74.0179477 }, + { "lat": 40.7076527, "lon": -74.0179508 }, + { "lat": 40.7076556, "lon": -74.0179527 }, + { "lat": 40.7076588, "lon": -74.0179529 }, + { "lat": 40.7076618, "lon": -74.0179516 }, + { "lat": 40.7076642, "lon": -74.0179488 }, + { "lat": 40.7076656, "lon": -74.0179450 }, + { "lat": 40.7076658, "lon": -74.0179408 }, + { "lat": 40.7076647, "lon": -74.0179368 }, + { "lat": 40.7076751, "lon": -74.0179247 }, + { "lat": 40.7076779, "lon": -74.0179265 }, + { "lat": 40.7076811, "lon": -74.0179268 }, + { "lat": 40.7076841, "lon": -74.0179254 }, + { "lat": 40.7076865, "lon": -74.0179226 }, + { "lat": 40.7076879, "lon": -74.0179188 }, + { "lat": 40.7077001, "lon": -74.0179191 }, + { "lat": 40.7077001, "lon": -74.0179302 }, + { "lat": 40.7077011, "lon": -74.0179439 }, + { "lat": 40.7077034, "lon": -74.0179533 }, + { "lat": 40.7077034, "lon": -74.0179620 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 827979008, + "bounds": { + "minlat": 40.7077691, + "minlon": -74.0117237, + "maxlat": 40.7088206, + "maxlon": -74.0108604 + }, + "nodes": [ + 42428374, + 5083818844, + 5117245054, + 42428373, + 5083818841, + 42428371, + 5083818843, + 8281922261, + 42428370 + ], + "geometry": [ + { "lat": 40.7088206, "lon": -74.0108604 }, + { "lat": 40.7087799, "lon": -74.0108940 }, + { "lat": 40.7086434, "lon": -74.0110062 }, + { "lat": 40.7085915, "lon": -74.0110462 }, + { "lat": 40.7083626, "lon": -74.0112371 }, + { "lat": 40.7083242, "lon": -74.0112699 }, + { "lat": 40.7082921, "lon": -74.0112951 }, + { "lat": 40.7077968, "lon": -74.0117012 }, + { "lat": 40.7077691, "lon": -74.0117237 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|designated", + "busway:right": "lane", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "jersey_barrier", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:both": "no", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 827991581, + "bounds": { + "minlat": 40.8558384, + "minlon": -73.9345880, + "maxlat": 40.8561219, + "maxlon": -73.9341065 + }, + "nodes": [ + 7729759885, + 7729759886, + 7729759887, + 7729759888, + 7729759889, + 7729759890, + 7729759891, + 7729759892, + 7729759893, + 7729759894 + ], + "geometry": [ + { "lat": 40.8560212, "lon": -73.9341065 }, + { "lat": 40.8560381, "lon": -73.9341827 }, + { "lat": 40.8560848, "lon": -73.9343265 }, + { "lat": 40.8561219, "lon": -73.9344935 }, + { "lat": 40.8561166, "lon": -73.9345133 }, + { "lat": 40.8560663, "lon": -73.9345425 }, + { "lat": 40.8559885, "lon": -73.9345705 }, + { "lat": 40.8559197, "lon": -73.9345869 }, + { "lat": 40.8558764, "lon": -73.9345880 }, + { "lat": 40.8558384, "lon": -73.9345799 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 828253777, + "bounds": { + "minlat": 40.7985430, + "minlon": -73.9436083, + "maxlat": 40.7985684, + "maxlon": -73.9435412 + }, + "nodes": [ + 7096507155, + 42435392 + ], + "geometry": [ + { "lat": 40.7985430, "lon": -73.9435412 }, + { "lat": 40.7985684, "lon": -73.9436083 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed:conditional": "5 mph @ (Mo-Fr 14:00-17:30)", + "motor_vehicle:conditional": "destination @ (Mo-Fr 14:00-17:30)", + "name": "East 115th Street", + "name:ru": "Восточная 115-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 828253779, + "bounds": { + "minlat": 40.8146523, + "minlon": -73.9393897, + "maxlat": 40.8159970, + "maxlon": -73.9362392 + }, + "nodes": [ + 7732243573, + 9557110442, + 7732243580, + 589928003, + 6863600902, + 6863600905, + 9557110353, + 42435957 + ], + "geometry": [ + { "lat": 40.8146523, "lon": -73.9362392 }, + { "lat": 40.8147128, "lon": -73.9363710 }, + { "lat": 40.8148613, "lon": -73.9367112 }, + { "lat": 40.8149338, "lon": -73.9368471 }, + { "lat": 40.8150204, "lon": -73.9370542 }, + { "lat": 40.8157429, "lon": -73.9387908 }, + { "lat": 40.8159542, "lon": -73.9392888 }, + { "lat": 40.8159970, "lon": -73.9393897 } + ], + "tags": { + "highway": "residential", + "name": "West 138th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 828253780, + "bounds": { + "minlat": 40.8146523, + "minlon": -73.9362392, + "maxlat": 40.8147720, + "maxlon": -73.9361049 + }, + "nodes": [ + 7732243573, + 371337175 + ], + "geometry": [ + { "lat": 40.8146523, "lon": -73.9362392 }, + { "lat": 40.8147720, "lon": -73.9361049 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 828253781, + "bounds": { + "minlat": 40.8197371, + "minlon": -73.9354633, + "maxlat": 40.8201165, + "maxlon": -73.9345517 + }, + "nodes": [ + 42434243, + 7612920613, + 9903127425 + ], + "geometry": [ + { "lat": 40.8197371, "lon": -73.9345517 }, + { "lat": 40.8198981, "lon": -73.9349383 }, + { "lat": 40.8201165, "lon": -73.9354633 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "145th Street Bridge", + "oneway": "no", + "sidewalk": "separate", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 828292964, + "bounds": { + "minlat": 40.8134277, + "minlon": -73.9624360, + "maxlat": 40.8157279, + "maxlon": -73.9612504 + }, + "nodes": [ + 3269867944, + 7732571986, + 7732571985, + 12015534420, + 6868145370, + 7732571980, + 7732571885, + 7732571804, + 7732571803, + 7732571992, + 7732571991, + 7732571805, + 7732571806, + 7732571807, + 7732571808, + 7732571809, + 7732571810, + 7732571971, + 7732571811, + 7732571863, + 42441158, + 7732571972, + 7732571828, + 12767870961 + ], + "geometry": [ + { "lat": 40.8134277, "lon": -73.9624360 }, + { "lat": 40.8135975, "lon": -73.9623189 }, + { "lat": 40.8136489, "lon": -73.9622965 }, + { "lat": 40.8136644, "lon": -73.9622905 }, + { "lat": 40.8137207, "lon": -73.9622687 }, + { "lat": 40.8138423, "lon": -73.9622323 }, + { "lat": 40.8139750, "lon": -73.9621943 }, + { "lat": 40.8140466, "lon": -73.9621663 }, + { "lat": 40.8141011, "lon": -73.9621388 }, + { "lat": 40.8141509, "lon": -73.9621087 }, + { "lat": 40.8141984, "lon": -73.9620783 }, + { "lat": 40.8142471, "lon": -73.9620446 }, + { "lat": 40.8144760, "lon": -73.9618734 }, + { "lat": 40.8146858, "lon": -73.9617196 }, + { "lat": 40.8148812, "lon": -73.9615822 }, + { "lat": 40.8150119, "lon": -73.9614968 }, + { "lat": 40.8150921, "lon": -73.9614517 }, + { "lat": 40.8151662, "lon": -73.9614180 }, + { "lat": 40.8152974, "lon": -73.9613713 }, + { "lat": 40.8154308, "lon": -73.9613279 }, + { "lat": 40.8155553, "lon": -73.9612943 }, + { "lat": 40.8155931, "lon": -73.9612836 }, + { "lat": 40.8157021, "lon": -73.9612561 }, + { "lat": 40.8157279, "lon": -73.9612504 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 828292965, + "bounds": { + "minlat": 40.8175340, + "minlon": -73.9604157, + "maxlat": 40.8179509, + "maxlon": -73.9599846 + }, + "nodes": [ + 7732571908, + 8736432141, + 10049926013, + 6867580413, + 6867580414 + ], + "geometry": [ + { "lat": 40.8175340, "lon": -73.9599846 }, + { "lat": 40.8178078, "lon": -73.9602699 }, + { "lat": 40.8178261, "lon": -73.9602890 }, + { "lat": 40.8178643, "lon": -73.9603288 }, + { "lat": 40.8179509, "lon": -73.9604157 } + ], + "tags": { + "cycleway:right": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "||right", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 828292966, + "bounds": { + "minlat": 40.8169831, + "minlon": -73.9602609, + "maxlat": 40.8181570, + "maxlon": -73.9574793 + }, + "nodes": [ + 7732571917, + 10128811420, + 12522167764, + 10129081827, + 10128759069, + 7732654932 + ], + "geometry": [ + { "lat": 40.8181570, "lon": -73.9602609 }, + { "lat": 40.8180895, "lon": -73.9601005 }, + { "lat": 40.8175827, "lon": -73.9589024 }, + { "lat": 40.8175109, "lon": -73.9587328 }, + { "lat": 40.8170223, "lon": -73.9575737 }, + { "lat": 40.8169831, "lon": -73.9574793 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 130th Street", + "name_1": "West 130 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 828292967, + "bounds": { + "minlat": 40.8170513, + "minlon": -73.9599846, + "maxlat": 40.8175340, + "maxlon": -73.9595343 + }, + "nodes": [ + 7732571915, + 4205440413, + 7732571908 + ], + "geometry": [ + { "lat": 40.8170513, "lon": -73.9595343 }, + { "lat": 40.8174800, "lon": -73.9599342 }, + { "lat": 40.8175340, "lon": -73.9599846 } + ], + "tags": { + "cycleway:right": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 828292968, + "bounds": { + "minlat": 40.8187841, + "minlon": -73.9598117, + "maxlat": 40.8200228, + "maxlon": -73.9589033 + }, + "nodes": [ + 42438228, + 10128660288, + 10128889849, + 42429541, + 10128889847, + 7768883542, + 10128878986, + 42434105 + ], + "geometry": [ + { "lat": 40.8187841, "lon": -73.9598117 }, + { "lat": 40.8188420, "lon": -73.9597692 }, + { "lat": 40.8193427, "lon": -73.9594020 }, + { "lat": 40.8193928, "lon": -73.9593653 }, + { "lat": 40.8194465, "lon": -73.9593259 }, + { "lat": 40.8195617, "lon": -73.9592415 }, + { "lat": 40.8199596, "lon": -73.9589496 }, + { "lat": 40.8200228, "lon": -73.9589033 } + ], + "tags": { + "bicycle": "designated", + "cycleway:left": "lane", + "hgv": "destination", + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "12th Avenue", + "name_1": "12 Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 828303725, + "bounds": { + "minlat": 40.8118836, + "minlon": -73.9612283, + "maxlat": 40.8151597, + "maxlon": -73.9588371 + }, + "nodes": [ + 42428858, + 10049830861, + 11851500936, + 42421857, + 11851500937, + 1506616204, + 42428850, + 6886295091, + 1506591534 + ], + "geometry": [ + { "lat": 40.8151597, "lon": -73.9588371 }, + { "lat": 40.8150772, "lon": -73.9588982 }, + { "lat": 40.8138980, "lon": -73.9597454 }, + { "lat": 40.8138218, "lon": -73.9598000 }, + { "lat": 40.8137371, "lon": -73.9598626 }, + { "lat": 40.8127016, "lon": -73.9606271 }, + { "lat": 40.8125149, "lon": -73.9607621 }, + { "lat": 40.8119563, "lon": -73.9611750 }, + { "lat": 40.8118836, "lon": -73.9612283 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 828307999, + "bounds": { + "minlat": 40.8182343, + "minlon": -73.9554594, + "maxlat": 40.8193913, + "maxlon": -73.9527209 + }, + "nodes": [ + 7732653971, + 10171129707, + 7732653972, + 10170977545, + 42435997 + ], + "geometry": [ + { "lat": 40.8193913, "lon": -73.9554594 }, + { "lat": 40.8193494, "lon": -73.9553607 }, + { "lat": 40.8190575, "lon": -73.9546728 }, + { "lat": 40.8182860, "lon": -73.9528436 }, + { "lat": 40.8182343, "lon": -73.9527209 } + ], + "tags": { + "highway": "residential", + "name": "West 134th Street", + "name_1": "West 134 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 828308000, + "bounds": { + "minlat": 40.8193913, + "minlon": -73.9554594, + "maxlat": 40.8200718, + "maxlon": -73.9549695 + }, + "nodes": [ + 7732653971, + 10168100432, + 561035349 + ], + "geometry": [ + { "lat": 40.8193913, "lon": -73.9554594 }, + { "lat": 40.8199554, "lon": -73.9550538 }, + { "lat": 40.8200718, "lon": -73.9549695 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 828317575, + "bounds": { + "minlat": 40.7108289, + "minlon": -73.9528046, + "maxlat": 40.7112416, + "maxlon": -73.9526301 + }, + "nodes": [ + 7732747203, + 9755354469, + 7732747204, + 8842929761, + 9967927271 + ], + "geometry": [ + { "lat": 40.7112416, "lon": -73.9526301 }, + { "lat": 40.7111753, "lon": -73.9526719 }, + { "lat": 40.7109645, "lon": -73.9528046 }, + { "lat": 40.7109103, "lon": -73.9527944 }, + { "lat": 40.7108289, "lon": -73.9527817 } + ], + "tags": { + "foot": "permissive", + "highway": "service" + } +}, +{ + "type": "way", + "id": 828343021, + "bounds": { + "minlat": 40.8497164, + "minlon": -73.9679241, + "maxlat": 40.8498691, + "maxlon": -73.9675884 + }, + "nodes": [ + 7732875872, + 7732875873, + 7732875874, + 7732875875, + 7732875876 + ], + "geometry": [ + { "lat": 40.8498691, "lon": -73.9679241 }, + { "lat": 40.8498488, "lon": -73.9678569 }, + { "lat": 40.8497835, "lon": -73.9676012 }, + { "lat": 40.8497720, "lon": -73.9675884 }, + { "lat": 40.8497164, "lon": -73.9676106 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 828396832, + "bounds": { + "minlat": 40.8113487, + "minlon": -73.9992917, + "maxlat": 40.8115611, + "maxlon": -73.9987543 + }, + "nodes": [ + 7733369355, + 7733369356 + ], + "geometry": [ + { "lat": 40.8113487, "lon": -73.9987543 }, + { "lat": 40.8115611, "lon": -73.9992917 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 828541437, + "bounds": { + "minlat": 40.7874099, + "minlon": -73.9317763, + "maxlat": 40.7878371, + "maxlon": -73.9314165 + }, + "nodes": [ + 7734633894, + 5482321455 + ], + "geometry": [ + { "lat": 40.7878371, "lon": -73.9314165 }, + { "lat": 40.7874099, "lon": -73.9317763 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541438, + "bounds": { + "minlat": 40.7870943, + "minlon": -73.9317763, + "maxlat": 40.7874099, + "maxlon": -73.9311256 + }, + "nodes": [ + 5482321455, + 7734633898, + 7734633897, + 7734633896 + ], + "geometry": [ + { "lat": 40.7874099, "lon": -73.9317763 }, + { "lat": 40.7872996, "lon": -73.9315505 }, + { "lat": 40.7871650, "lon": -73.9312749 }, + { "lat": 40.7870943, "lon": -73.9311256 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541439, + "bounds": { + "minlat": 40.7870943, + "minlon": -73.9311256, + "maxlat": 40.7874720, + "maxlon": -73.9308011 + }, + "nodes": [ + 7734633895, + 7734633896 + ], + "geometry": [ + { "lat": 40.7874720, "lon": -73.9308011 }, + { "lat": 40.7870943, "lon": -73.9311256 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541440, + "bounds": { + "minlat": 40.7871650, + "minlon": -73.9312749, + "maxlat": 40.7875390, + "maxlon": -73.9309432 + }, + "nodes": [ + 7734633921, + 7734633897 + ], + "geometry": [ + { "lat": 40.7875390, "lon": -73.9309432 }, + { "lat": 40.7871650, "lon": -73.9312749 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541441, + "bounds": { + "minlat": 40.7874720, + "minlon": -73.9309432, + "maxlat": 40.7875390, + "maxlon": -73.9308011 + }, + "nodes": [ + 7734633921, + 7734633895 + ], + "geometry": [ + { "lat": 40.7875390, "lon": -73.9309432 }, + { "lat": 40.7874720, "lon": -73.9308011 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541442, + "bounds": { + "minlat": 40.7871087, + "minlon": -73.9316729, + "maxlat": 40.7872996, + "maxlon": -73.9315505 + }, + "nodes": [ + 7734633898, + 12552976809, + 7734633899 + ], + "geometry": [ + { "lat": 40.7872996, "lon": -73.9315505 }, + { "lat": 40.7871507, "lon": -73.9316460 }, + { "lat": 40.7871087, "lon": -73.9316729 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541445, + "bounds": { + "minlat": 40.7881714, + "minlon": -73.9329793, + "maxlat": 40.7883487, + "maxlon": -73.9327709 + }, + "nodes": [ + 7734633922, + 3036229804 + ], + "geometry": [ + { "lat": 40.7883487, "lon": -73.9327709 }, + { "lat": 40.7881714, "lon": -73.9329793 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828541446, + "bounds": { + "minlat": 40.7882328, + "minlon": -73.9321649, + "maxlat": 40.7884254, + "maxlon": -73.9319027 + }, + "nodes": [ + 7734633923, + 7734633944, + 9872439274, + 7734633924 + ], + "geometry": [ + { "lat": 40.7884254, "lon": -73.9321649 }, + { "lat": 40.7883006, "lon": -73.9319950 }, + { "lat": 40.7882658, "lon": -73.9319476 }, + { "lat": 40.7882328, "lon": -73.9319027 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541447, + "bounds": { + "minlat": 40.7876320, + "minlon": -73.9325678, + "maxlat": 40.7885247, + "maxlon": -73.9315564 + }, + "nodes": [ + 3036229815, + 7734633924, + 7734633939, + 3036229808 + ], + "geometry": [ + { "lat": 40.7885247, "lon": -73.9315564 }, + { "lat": 40.7882328, "lon": -73.9319027 }, + { "lat": 40.7880134, "lon": -73.9321591 }, + { "lat": 40.7876320, "lon": -73.9325678 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541448, + "bounds": { + "minlat": 40.7877537, + "minlon": -73.9320587, + "maxlat": 40.7884155, + "maxlon": -73.9314846 + }, + "nodes": [ + 7734633928, + 7734633929 + ], + "geometry": [ + { "lat": 40.7877537, "lon": -73.9320587 }, + { "lat": 40.7884155, "lon": -73.9314846 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541449, + "bounds": { + "minlat": 40.7875157, + "minlon": -73.9326687, + "maxlat": 40.7875636, + "maxlon": -73.9326298 + }, + "nodes": [ + 9872439277, + 7734633930 + ], + "geometry": [ + { "lat": 40.7875636, "lon": -73.9326298 }, + { "lat": 40.7875157, "lon": -73.9326687 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541450, + "bounds": { + "minlat": 40.7874774, + "minlon": -73.9322746, + "maxlat": 40.7876210, + "maxlon": -73.9320800 + }, + "nodes": [ + 7734633963, + 7734633932 + ], + "geometry": [ + { "lat": 40.7874774, "lon": -73.9322746 }, + { "lat": 40.7876210, "lon": -73.9320800 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541451, + "bounds": { + "minlat": 40.7876210, + "minlon": -73.9320800, + "maxlat": 40.7877537, + "maxlon": -73.9320587 + }, + "nodes": [ + 7734633932, + 7734633928 + ], + "geometry": [ + { "lat": 40.7876210, "lon": -73.9320800 }, + { "lat": 40.7877537, "lon": -73.9320587 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541452, + "bounds": { + "minlat": 40.7876210, + "minlon": -73.9320800, + "maxlat": 40.7876850, + "maxlon": -73.9319401 + }, + "nodes": [ + 7734633932, + 3036229830 + ], + "geometry": [ + { "lat": 40.7876210, "lon": -73.9320800 }, + { "lat": 40.7876850, "lon": -73.9319401 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541453, + "bounds": { + "minlat": 40.7883023, + "minlon": -73.9315564, + "maxlat": 40.7885247, + "maxlon": -73.9314103 + }, + "nodes": [ + 3036229833, + 7734633929, + 3036229815 + ], + "geometry": [ + { "lat": 40.7883023, "lon": -73.9314103 }, + { "lat": 40.7884155, "lon": -73.9314846 }, + { "lat": 40.7885247, "lon": -73.9315564 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541459, + "bounds": { + "minlat": 40.7863571, + "minlon": -73.9341617, + "maxlat": 40.7876313, + "maxlon": -73.9329688 + }, + "nodes": [ + 3037022136, + 277482222, + 3037022135, + 3037022134, + 3037022133, + 3037022138, + 3037017932, + 3039863349, + 3037022139, + 277482223 + ], + "geometry": [ + { "lat": 40.7876313, "lon": -73.9329688 }, + { "lat": 40.7876313, "lon": -73.9330640 }, + { "lat": 40.7875958, "lon": -73.9331485 }, + { "lat": 40.7875521, "lon": -73.9331954 }, + { "lat": 40.7874648, "lon": -73.9332692 }, + { "lat": 40.7874252, "lon": -73.9332732 }, + { "lat": 40.7873846, "lon": -73.9333000 }, + { "lat": 40.7872040, "lon": -73.9334545 }, + { "lat": 40.7866068, "lon": -73.9339652 }, + { "lat": 40.7863571, "lon": -73.9341617 } + ], + "tags": { + "access": "private", + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 828541460, + "bounds": { + "minlat": 40.7871102, + "minlon": -73.9322171, + "maxlat": 40.7872794, + "maxlon": -73.9320904 + }, + "nodes": [ + 7734633964, + 7734633965 + ], + "geometry": [ + { "lat": 40.7872794, "lon": -73.9320904 }, + { "lat": 40.7871102, "lon": -73.9322171 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828541463, + "bounds": { + "minlat": 40.7867353, + "minlon": -73.9322171, + "maxlat": 40.7871102, + "maxlon": -73.9313618 + }, + "nodes": [ + 7734633965, + 3040306393 + ], + "geometry": [ + { "lat": 40.7871102, "lon": -73.9322171 }, + { "lat": 40.7867353, "lon": -73.9313618 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828546950, + "bounds": { + "minlat": 40.7870156, + "minlon": -73.9304162, + "maxlat": 40.7872760, + "maxlon": -73.9301150 + }, + "nodes": [ + 3037067032, + 3037067135 + ], + "geometry": [ + { "lat": 40.7870156, "lon": -73.9301150 }, + { "lat": 40.7872760, "lon": -73.9304162 } + ], + "tags": { + "access": "private", + "disused:highway": "service", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828546951, + "bounds": { + "minlat": 40.7880312, + "minlon": -73.9298667, + "maxlat": 40.7886019, + "maxlon": -73.9287206 + }, + "nodes": [ + 7734664090, + 3036361332, + 9872439276, + 7734664091 + ], + "geometry": [ + { "lat": 40.7886019, "lon": -73.9298667 }, + { "lat": 40.7884855, "lon": -73.9296331 }, + { "lat": 40.7882452, "lon": -73.9291503 }, + { "lat": 40.7880312, "lon": -73.9287206 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828546952, + "bounds": { + "minlat": 40.7878088, + "minlon": -73.9296331, + "maxlat": 40.7884855, + "maxlon": -73.9296249 + }, + "nodes": [ + 3036361318, + 3036361361, + 3036361332 + ], + "geometry": [ + { "lat": 40.7878088, "lon": -73.9296249 }, + { "lat": 40.7881340, "lon": -73.9296288 }, + { "lat": 40.7884855, "lon": -73.9296331 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828546957, + "bounds": { + "minlat": 40.7900917, + "minlon": -73.9298250, + "maxlat": 40.7904174, + "maxlon": -73.9296725 + }, + "nodes": [ + 7734664093, + 8745054537, + 3036361238 + ], + "geometry": [ + { "lat": 40.7900917, "lon": -73.9296725 }, + { "lat": 40.7902543, "lon": -73.9297192 }, + { "lat": 40.7904174, "lon": -73.9298250 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 828546958, + "bounds": { + "minlat": 40.7892642, + "minlon": -73.9303446, + "maxlat": 40.7900917, + "maxlon": -73.9296725 + }, + "nodes": [ + 7734664094, + 8745054538, + 3036229880, + 3036229888, + 7734664093 + ], + "geometry": [ + { "lat": 40.7892642, "lon": -73.9303446 }, + { "lat": 40.7893220, "lon": -73.9302964 }, + { "lat": 40.7894429, "lon": -73.9301939 }, + { "lat": 40.7897616, "lon": -73.9299126 }, + { "lat": 40.7900917, "lon": -73.9296725 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 828546962, + "bounds": { + "minlat": 40.7893640, + "minlon": -73.9312791, + "maxlat": 40.7897700, + "maxlon": -73.9309475 + }, + "nodes": [ + 7734664096, + 7734664097 + ], + "geometry": [ + { "lat": 40.7897700, "lon": -73.9309475 }, + { "lat": 40.7893640, "lon": -73.9312791 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828546963, + "bounds": { + "minlat": 40.7893639, + "minlon": -73.9310220, + "maxlat": 40.7896755, + "maxlon": -73.9307574 + }, + "nodes": [ + 7734664098, + 7734664099 + ], + "geometry": [ + { "lat": 40.7896755, "lon": -73.9307574 }, + { "lat": 40.7893639, "lon": -73.9310220 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828546964, + "bounds": { + "minlat": 40.7892762, + "minlon": -73.9308413, + "maxlat": 40.7895839, + "maxlon": -73.9305701 + }, + "nodes": [ + 7734664102, + 7734664101 + ], + "geometry": [ + { "lat": 40.7895839, "lon": -73.9305701 }, + { "lat": 40.7892762, "lon": -73.9308413 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828546965, + "bounds": { + "minlat": 40.7895839, + "minlon": -73.9305701, + "maxlat": 40.7901081, + "maxlon": -73.9301246 + }, + "nodes": [ + 7734664106, + 7734664102 + ], + "geometry": [ + { "lat": 40.7901081, "lon": -73.9301246 }, + { "lat": 40.7895839, "lon": -73.9305701 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828546966, + "bounds": { + "minlat": 40.7894958, + "minlon": -73.9303953, + "maxlat": 40.7901340, + "maxlon": -73.9298341 + }, + "nodes": [ + 7734664108, + 7734664103 + ], + "geometry": [ + { "lat": 40.7901340, "lon": -73.9298341 }, + { "lat": 40.7894958, "lon": -73.9303953 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828546967, + "bounds": { + "minlat": 40.7894958, + "minlon": -73.9309475, + "maxlat": 40.7897700, + "maxlon": -73.9303953 + }, + "nodes": [ + 7734664096, + 7734664098, + 7734664102, + 7734664103 + ], + "geometry": [ + { "lat": 40.7897700, "lon": -73.9309475 }, + { "lat": 40.7896755, "lon": -73.9307574 }, + { "lat": 40.7895839, "lon": -73.9305701 }, + { "lat": 40.7894958, "lon": -73.9303953 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828546968, + "bounds": { + "minlat": 40.7892762, + "minlon": -73.9310220, + "maxlat": 40.7893639, + "maxlon": -73.9308413 + }, + "nodes": [ + 7734664099, + 7734664101 + ], + "geometry": [ + { "lat": 40.7893639, "lon": -73.9310220 }, + { "lat": 40.7892762, "lon": -73.9308413 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828546969, + "bounds": { + "minlat": 40.7891743, + "minlon": -73.9313212, + "maxlat": 40.7893640, + "maxlon": -73.9310220 + }, + "nodes": [ + 7734664099, + 8745054526, + 8745054525, + 8745054527, + 7734664097 + ], + "geometry": [ + { "lat": 40.7893639, "lon": -73.9310220 }, + { "lat": 40.7891979, "lon": -73.9311627 }, + { "lat": 40.7891743, "lon": -73.9312755 }, + { "lat": 40.7892549, "lon": -73.9313212 }, + { "lat": 40.7893640, "lon": -73.9312791 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828546971, + "bounds": { + "minlat": 40.7901340, + "minlon": -73.9298764, + "maxlat": 40.7902285, + "maxlon": -73.9298341 + }, + "nodes": [ + 7734664107, + 7734664108 + ], + "geometry": [ + { "lat": 40.7902285, "lon": -73.9298764 }, + { "lat": 40.7901340, "lon": -73.9298341 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828551732, + "bounds": { + "minlat": 40.7898905, + "minlon": -73.9275821, + "maxlat": 40.7903569, + "maxlon": -73.9270007 + }, + "nodes": [ + 7734703989, + 7734703992, + 7734704019 + ], + "geometry": [ + { "lat": 40.7903569, "lon": -73.9270007 }, + { "lat": 40.7900799, "lon": -73.9273514 }, + { "lat": 40.7898905, "lon": -73.9275821 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828551733, + "bounds": { + "minlat": 40.7899903, + "minlon": -73.9271737, + "maxlat": 40.7902442, + "maxlon": -73.9268546 + }, + "nodes": [ + 7734703990, + 7734703991 + ], + "geometry": [ + { "lat": 40.7902442, "lon": -73.9268546 }, + { "lat": 40.7899903, "lon": -73.9271737 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828551734, + "bounds": { + "minlat": 40.7899903, + "minlon": -73.9273514, + "maxlat": 40.7900799, + "maxlon": -73.9271737 + }, + "nodes": [ + 7734703992, + 7734703991 + ], + "geometry": [ + { "lat": 40.7900799, "lon": -73.9273514 }, + { "lat": 40.7899903, "lon": -73.9271737 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828551735, + "bounds": { + "minlat": 40.7902442, + "minlon": -73.9270007, + "maxlat": 40.7903569, + "maxlon": -73.9268546 + }, + "nodes": [ + 7734703989, + 7734703990 + ], + "geometry": [ + { "lat": 40.7903569, "lon": -73.9270007 }, + { "lat": 40.7902442, "lon": -73.9268546 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828551737, + "bounds": { + "minlat": 40.7907458, + "minlon": -73.9295210, + "maxlat": 40.7910339, + "maxlon": -73.9288585 + }, + "nodes": [ + 7734703994, + 7734703995 + ], + "geometry": [ + { "lat": 40.7910339, "lon": -73.9295210 }, + { "lat": 40.7907458, "lon": -73.9288585 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828551738, + "bounds": { + "minlat": 40.7906610, + "minlon": -73.9294365, + "maxlat": 40.7907458, + "maxlon": -73.9288585 + }, + "nodes": [ + 7734703995, + 3036361570, + 9872439275, + 3036361568 + ], + "geometry": [ + { "lat": 40.7907458, "lon": -73.9288585 }, + { "lat": 40.7906985, "lon": -73.9291092 }, + { "lat": 40.7906792, "lon": -73.9292777 }, + { "lat": 40.7906610, "lon": -73.9294365 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828551740, + "bounds": { + "minlat": 40.7906410, + "minlon": -73.9288585, + "maxlat": 40.7907458, + "maxlon": -73.9288041 + }, + "nodes": [ + 7734703995, + 3036361512 + ], + "geometry": [ + { "lat": 40.7907458, "lon": -73.9288585 }, + { "lat": 40.7906410, "lon": -73.9288041 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828551741, + "bounds": { + "minlat": 40.7907887, + "minlon": -73.9297251, + "maxlat": 40.7910339, + "maxlon": -73.9295210 + }, + "nodes": [ + 7734703994, + 3036361569, + 3036361567 + ], + "geometry": [ + { "lat": 40.7910339, "lon": -73.9295210 }, + { "lat": 40.7909130, "lon": -73.9296218 }, + { "lat": 40.7907887, "lon": -73.9297251 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828551743, + "bounds": { + "minlat": 40.7895727, + "minlon": -73.9273708, + "maxlat": 40.7896487, + "maxlon": -73.9271215 + }, + "nodes": [ + 7734703999, + 9872439273, + 7890202648 + ], + "geometry": [ + { "lat": 40.7896487, "lon": -73.9273708 }, + { "lat": 40.7896191, "lon": -73.9272738 }, + { "lat": 40.7895727, "lon": -73.9271215 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Rivers Edge Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 828551744, + "bounds": { + "minlat": 40.7896182, + "minlon": -73.9276460, + "maxlat": 40.7898452, + "maxlon": -73.9273708 + }, + "nodes": [ + 7734704001, + 7734704004, + 9053977030, + 7734704005, + 7734704006, + 7734704007, + 7734704008, + 7734704009, + 3036361484, + 7734704010, + 3036361485, + 7734704002, + 7734704003, + 7734703999 + ], + "geometry": [ + { "lat": 40.7898452, "lon": -73.9275835 }, + { "lat": 40.7898133, "lon": -73.9276211 }, + { "lat": 40.7897928, "lon": -73.9276323 }, + { "lat": 40.7897738, "lon": -73.9276428 }, + { "lat": 40.7897310, "lon": -73.9276460 }, + { "lat": 40.7896899, "lon": -73.9276304 }, + { "lat": 40.7896550, "lon": -73.9275977 }, + { "lat": 40.7896302, "lon": -73.9275517 }, + { "lat": 40.7896253, "lon": -73.9275295 }, + { "lat": 40.7896182, "lon": -73.9274974 }, + { "lat": 40.7896196, "lon": -73.9274627 }, + { "lat": 40.7896205, "lon": -73.9274409 }, + { "lat": 40.7896361, "lon": -73.9273902 }, + { "lat": 40.7896487, "lon": -73.9273708 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 828553490, + "bounds": { + "minlat": 40.7902890, + "minlon": -73.9287150, + "maxlat": 40.7904363, + "maxlon": -73.9284320 + }, + "nodes": [ + 7734722701, + 3036361518, + 7734722702 + ], + "geometry": [ + { "lat": 40.7904363, "lon": -73.9287150 }, + { "lat": 40.7903616, "lon": -73.9285716 }, + { "lat": 40.7902890, "lon": -73.9284320 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828553491, + "bounds": { + "minlat": 40.7904363, + "minlon": -73.9287150, + "maxlat": 40.7906347, + "maxlon": -73.9287121 + }, + "nodes": [ + 7734722703, + 7734722701 + ], + "geometry": [ + { "lat": 40.7906347, "lon": -73.9287121 }, + { "lat": 40.7904363, "lon": -73.9287150 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828553492, + "bounds": { + "minlat": 40.7902890, + "minlon": -73.9284320, + "maxlat": 40.7904101, + "maxlon": -73.9281729 + }, + "nodes": [ + 7734722702, + 7734722704 + ], + "geometry": [ + { "lat": 40.7902890, "lon": -73.9284320 }, + { "lat": 40.7904101, "lon": -73.9281729 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828553493, + "bounds": { + "minlat": 40.7846035, + "minlon": -73.9276574, + "maxlat": 40.7849242, + "maxlon": -73.9274282 + }, + "nodes": [ + 7734722708, + 9253748808, + 1891172986 + ], + "geometry": [ + { "lat": 40.7849242, "lon": -73.9274282 }, + { "lat": 40.7846615, "lon": -73.9276160 }, + { "lat": 40.7846035, "lon": -73.9276574 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828553494, + "bounds": { + "minlat": 40.7849242, + "minlon": -73.9274282, + "maxlat": 40.7850176, + "maxlon": -73.9270983 + }, + "nodes": [ + 7734722708, + 7734722711, + 7734722709 + ], + "geometry": [ + { "lat": 40.7849242, "lon": -73.9274282 }, + { "lat": 40.7849984, "lon": -73.9271659 }, + { "lat": 40.7850176, "lon": -73.9270983 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828553495, + "bounds": { + "minlat": 40.7850176, + "minlon": -73.9270993, + "maxlat": 40.7851612, + "maxlon": -73.9270571 + }, + "nodes": [ + 2885719294, + 7734722710, + 7734722709 + ], + "geometry": [ + { "lat": 40.7851612, "lon": -73.9270993 }, + { "lat": 40.7850795, "lon": -73.9270571 }, + { "lat": 40.7850176, "lon": -73.9270983 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828553496, + "bounds": { + "minlat": 40.7848521, + "minlon": -73.9271659, + "maxlat": 40.7849984, + "maxlon": -73.9270902 + }, + "nodes": [ + 7734722711, + 7734722712 + ], + "geometry": [ + { "lat": 40.7849984, "lon": -73.9271659 }, + { "lat": 40.7848521, "lon": -73.9270902 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828553497, + "bounds": { + "minlat": 40.7855306, + "minlon": -73.9283709, + "maxlat": 40.7865235, + "maxlon": -73.9276252 + }, + "nodes": [ + 7734722714, + 1890944389, + 1890944385, + 1890944383, + 3040261626 + ], + "geometry": [ + { "lat": 40.7865235, "lon": -73.9283709 }, + { "lat": 40.7864747, "lon": -73.9283351 }, + { "lat": 40.7860443, "lon": -73.9280192 }, + { "lat": 40.7858596, "lon": -73.9278836 }, + { "lat": 40.7855306, "lon": -73.9276252 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828553498, + "bounds": { + "minlat": 40.7855306, + "minlon": -73.9276252, + "maxlat": 40.7856707, + "maxlon": -73.9272819 + }, + "nodes": [ + 3040261626, + 3040262638, + 1890944380 + ], + "geometry": [ + { "lat": 40.7855306, "lon": -73.9276252 }, + { "lat": 40.7855757, "lon": -73.9275147 }, + { "lat": 40.7856707, "lon": -73.9272819 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828553499, + "bounds": { + "minlat": 40.7857659, + "minlon": -73.9267894, + "maxlat": 40.7864446, + "maxlon": -73.9262633 + }, + "nodes": [ + 7734722718, + 3040261623 + ], + "geometry": [ + { "lat": 40.7864446, "lon": -73.9267894 }, + { "lat": 40.7857659, "lon": -73.9262633 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828553500, + "bounds": { + "minlat": 40.7855480, + "minlon": -73.9267488, + "maxlat": 40.7857659, + "maxlon": -73.9262633 + }, + "nodes": [ + 1890944375, + 3040261623 + ], + "geometry": [ + { "lat": 40.7855480, "lon": -73.9267488 }, + { "lat": 40.7857659, "lon": -73.9262633 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828557377, + "bounds": { + "minlat": 40.7937489, + "minlon": -73.9216186, + "maxlat": 40.7938409, + "maxlon": -73.9214307 + }, + "nodes": [ + 7734748095, + 3990449961 + ], + "geometry": [ + { "lat": 40.7938409, "lon": -73.9216186 }, + { "lat": 40.7937489, "lon": -73.9214307 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828557378, + "bounds": { + "minlat": 40.7946607, + "minlon": -73.9209811, + "maxlat": 40.7948960, + "maxlon": -73.9206004 + }, + "nodes": [ + 7734748097, + 9156860467, + 9156860463, + 7734748098 + ], + "geometry": [ + { "lat": 40.7948960, "lon": -73.9209811 }, + { "lat": 40.7948213, "lon": -73.9208725 }, + { "lat": 40.7947510, "lon": -73.9207664 }, + { "lat": 40.7946607, "lon": -73.9206004 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828557380, + "bounds": { + "minlat": 40.7950961, + "minlon": -73.9265315, + "maxlat": 40.7988230, + "maxlon": -73.9232006 + }, + "nodes": [ + 2346816289, + 5540154361, + 2346816291, + 3990460870, + 3990460875, + 2346816296, + 2346816298, + 2346816300, + 2346816308, + 2346816315, + 2346816317, + 2346816323, + 3040261542, + 12180586394, + 2346816327, + 2346816331, + 3040261545, + 2346816337, + 2346816339, + 2346816345, + 2346816349, + 2346816351, + 2346816356 + ], + "geometry": [ + { "lat": 40.7950961, "lon": -73.9232006 }, + { "lat": 40.7952520, "lon": -73.9235133 }, + { "lat": 40.7953167, "lon": -73.9236432 }, + { "lat": 40.7954882, "lon": -73.9239724 }, + { "lat": 40.7956638, "lon": -73.9242822 }, + { "lat": 40.7957144, "lon": -73.9243612 }, + { "lat": 40.7960543, "lon": -73.9248977 }, + { "lat": 40.7963941, "lon": -73.9253010 }, + { "lat": 40.7966176, "lon": -73.9255476 }, + { "lat": 40.7969912, "lon": -73.9259643 }, + { "lat": 40.7971577, "lon": -73.9260729 }, + { "lat": 40.7973882, "lon": -73.9262352 }, + { "lat": 40.7975623, "lon": -73.9263528 }, + { "lat": 40.7976949, "lon": -73.9264298 }, + { "lat": 40.7978309, "lon": -73.9265087 }, + { "lat": 40.7978806, "lon": -73.9265315 }, + { "lat": 40.7981192, "lon": -73.9265181 }, + { "lat": 40.7982544, "lon": -73.9264736 }, + { "lat": 40.7983743, "lon": -73.9264158 }, + { "lat": 40.7984831, "lon": -73.9263292 }, + { "lat": 40.7985970, "lon": -73.9262135 }, + { "lat": 40.7987030, "lon": -73.9260627 }, + { "lat": 40.7988230, "lon": -73.9258954 } + ], + "tags": { + "bicycle": "designated", + "foot": "yes", + "highway": "service", + "lanes": "2", + "name": "Randalls Island Greenway", + "name:etymology:wikidata": "Q1198892", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 828557381, + "bounds": { + "minlat": 40.7947421, + "minlon": -73.9231467, + "maxlat": 40.7950439, + "maxlon": -73.9228284 + }, + "nodes": [ + 2346816285, + 7734748103 + ], + "geometry": [ + { "lat": 40.7947421, "lon": -73.9231467 }, + { "lat": 40.7950439, "lon": -73.9228284 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 828557382, + "bounds": { + "minlat": 40.7950441, + "minlon": -73.9227354, + "maxlat": 40.7958465, + "maxlon": -73.9221914 + }, + "nodes": [ + 9156860555, + 9156860534, + 7734748105, + 7734748106 + ], + "geometry": [ + { "lat": 40.7958465, "lon": -73.9221914 }, + { "lat": 40.7956448, "lon": -73.9223249 }, + { "lat": 40.7951666, "lon": -73.9226782 }, + { "lat": 40.7950441, "lon": -73.9227354 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 828557383, + "bounds": { + "minlat": 40.7998367, + "minlon": -73.9255447, + "maxlat": 40.8000254, + "maxlon": -73.9252866 + }, + "nodes": [ + 3640160572, + 277482085 + ], + "geometry": [ + { "lat": 40.8000254, "lon": -73.9255447 }, + { "lat": 40.7998367, "lon": -73.9252866 } + ], + "tags": { + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 828557384, + "bounds": { + "minlat": 40.8000254, + "minlon": -73.9258882, + "maxlat": 40.8005986, + "maxlon": -73.9255447 + }, + "nodes": [ + 7734748108, + 7734748128, + 3640160570, + 3640160571, + 3640160572 + ], + "geometry": [ + { "lat": 40.8005986, "lon": -73.9258882 }, + { "lat": 40.8005541, "lon": -73.9258618 }, + { "lat": 40.8002321, "lon": -73.9256711 }, + { "lat": 40.8001031, "lon": -73.9255947 }, + { "lat": 40.8000254, "lon": -73.9255447 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828557385, + "bounds": { + "minlat": 40.8005986, + "minlon": -73.9259269, + "maxlat": 40.8011253, + "maxlon": -73.9257097 + }, + "nodes": [ + 7734748113, + 7734748114, + 7734748108 + ], + "geometry": [ + { "lat": 40.8011253, "lon": -73.9257097 }, + { "lat": 40.8008553, "lon": -73.9259269 }, + { "lat": 40.8005986, "lon": -73.9258882 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828557386, + "bounds": { + "minlat": 40.7984378, + "minlon": -73.9245447, + "maxlat": 40.7987913, + "maxlon": -73.9243425 + }, + "nodes": [ + 3933430640, + 3933430641, + 9156860562 + ], + "geometry": [ + { "lat": 40.7987913, "lon": -73.9245447 }, + { "lat": 40.7986984, "lon": -73.9243425 }, + { "lat": 40.7984378, "lon": -73.9245416 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "layer": "-1", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 828557387, + "bounds": { + "minlat": 40.7992663, + "minlon": -73.9235150, + "maxlat": 40.7998273, + "maxlon": -73.9221173 + }, + "nodes": [ + 7734748116, + 7734748117 + ], + "geometry": [ + { "lat": 40.7998273, "lon": -73.9235150 }, + { "lat": 40.7992663, "lon": -73.9221173 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828557388, + "bounds": { + "minlat": 40.7986832, + "minlon": -73.9238932, + "maxlat": 40.7992710, + "maxlon": -73.9224743 + }, + "nodes": [ + 7734748118, + 7734748119 + ], + "geometry": [ + { "lat": 40.7992710, "lon": -73.9238932 }, + { "lat": 40.7986832, "lon": -73.9224743 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828557389, + "bounds": { + "minlat": 40.7992710, + "minlon": -73.9238932, + "maxlat": 40.7998273, + "maxlon": -73.9235150 + }, + "nodes": [ + 7734748116, + 7734748121, + 7734748118 + ], + "geometry": [ + { "lat": 40.7998273, "lon": -73.9235150 }, + { "lat": 40.7995397, "lon": -73.9237101 }, + { "lat": 40.7992710, "lon": -73.9238932 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828557390, + "bounds": { + "minlat": 40.7995018, + "minlon": -73.9239202, + "maxlat": 40.7996274, + "maxlon": -73.9236193 + }, + "nodes": [ + 7734748120, + 7734748121, + 7734748122 + ], + "geometry": [ + { "lat": 40.7996274, "lon": -73.9239202 }, + { "lat": 40.7995397, "lon": -73.9237101 }, + { "lat": 40.7995018, "lon": -73.9236193 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828557391, + "bounds": { + "minlat": 40.7986832, + "minlon": -73.9224743, + "maxlat": 40.7993888, + "maxlon": -73.9220479 + }, + "nodes": [ + 7734748127, + 7734748117, + 7734748119 + ], + "geometry": [ + { "lat": 40.7993888, "lon": -73.9220479 }, + { "lat": 40.7992663, "lon": -73.9221173 }, + { "lat": 40.7986832, "lon": -73.9224743 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828557392, + "bounds": { + "minlat": 40.7994984, + "minlon": -73.9209709, + "maxlat": 40.7997563, + "maxlon": -73.9207416 + }, + "nodes": [ + 7734748124, + 7734748126 + ], + "geometry": [ + { "lat": 40.7997563, "lon": -73.9209709 }, + { "lat": 40.7994984, "lon": -73.9207416 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828557393, + "bounds": { + "minlat": 40.7991088, + "minlon": -73.9213947, + "maxlat": 40.7995451, + "maxlon": -73.9210106 + }, + "nodes": [ + 1242838968, + 7734748125 + ], + "geometry": [ + { "lat": 40.7995451, "lon": -73.9213947 }, + { "lat": 40.7991088, "lon": -73.9210106 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828557394, + "bounds": { + "minlat": 40.7989163, + "minlon": -73.9211435, + "maxlat": 40.7994984, + "maxlon": -73.9207416 + }, + "nodes": [ + 7734748126, + 1242838982, + 7734748125, + 1242838963 + ], + "geometry": [ + { "lat": 40.7994984, "lon": -73.9207416 }, + { "lat": 40.7992940, "lon": -73.9208828 }, + { "lat": 40.7991088, "lon": -73.9210106 }, + { "lat": 40.7989163, "lon": -73.9211435 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828557395, + "bounds": { + "minlat": 40.7995451, + "minlon": -73.9213947, + "maxlat": 40.7997563, + "maxlon": -73.9209709 + }, + "nodes": [ + 7734748124, + 1242838984, + 1242838968 + ], + "geometry": [ + { "lat": 40.7997563, "lon": -73.9209709 }, + { "lat": 40.7996487, "lon": -73.9211869 }, + { "lat": 40.7995451, "lon": -73.9213947 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828559729, + "bounds": { + "minlat": 40.7978533, + "minlon": -73.9208560, + "maxlat": 40.7981527, + "maxlon": -73.9207017 + }, + "nodes": [ + 3644949923, + 7734773021, + 3607948335 + ], + "geometry": [ + { "lat": 40.7978533, "lon": -73.9208560 }, + { "lat": 40.7980778, "lon": -73.9208090 }, + { "lat": 40.7981527, "lon": -73.9207017 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828559730, + "bounds": { + "minlat": 40.7978626, + "minlon": -73.9209230, + "maxlat": 40.7982600, + "maxlon": -73.9208376 + }, + "nodes": [ + 7734773022, + 7734773023 + ], + "geometry": [ + { "lat": 40.7982600, "lon": -73.9208376 }, + { "lat": 40.7978626, "lon": -73.9209230 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828559731, + "bounds": { + "minlat": 40.7978533, + "minlon": -73.9209230, + "maxlat": 40.7978626, + "maxlon": -73.9208560 + }, + "nodes": [ + 7734773023, + 3644949923 + ], + "geometry": [ + { "lat": 40.7978626, "lon": -73.9209230 }, + { "lat": 40.7978533, "lon": -73.9208560 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828559732, + "bounds": { + "minlat": 40.7979742, + "minlon": -73.9200261, + "maxlat": 40.7983136, + "maxlon": -73.9199096 + }, + "nodes": [ + 7734773030, + 7734773031, + 7734773024, + 7734773032, + 7734773025 + ], + "geometry": [ + { "lat": 40.7983136, "lon": -73.9200261 }, + { "lat": 40.7981879, "lon": -73.9199471 }, + { "lat": 40.7981283, "lon": -73.9199096 }, + { "lat": 40.7980647, "lon": -73.9199494 }, + { "lat": 40.7979742, "lon": -73.9200098 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 828561958, + "bounds": { + "minlat": 40.8004772, + "minlon": -73.9174336, + "maxlat": 40.8008778, + "maxlon": -73.9171563 + }, + "nodes": [ + 7734784500, + 7734784505, + 7734784502 + ], + "geometry": [ + { "lat": 40.8008778, "lon": -73.9171563 }, + { "lat": 40.8006610, "lon": -73.9173063 }, + { "lat": 40.8004772, "lon": -73.9174336 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828561959, + "bounds": { + "minlat": 40.7992900, + "minlon": -73.9174336, + "maxlat": 40.8004772, + "maxlon": -73.9147313 + }, + "nodes": [ + 7734784502, + 7734784504, + 7734784503 + ], + "geometry": [ + { "lat": 40.8004772, "lon": -73.9174336 }, + { "lat": 40.7998742, "lon": -73.9160610 }, + { "lat": 40.7992900, "lon": -73.9147313 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828561960, + "bounds": { + "minlat": 40.7998742, + "minlon": -73.9160610, + "maxlat": 40.8000079, + "maxlon": -73.9159673 + }, + "nodes": [ + 5370086812, + 5370086813, + 7734784504 + ], + "geometry": [ + { "lat": 40.8000079, "lon": -73.9159673 }, + { "lat": 40.7999421, "lon": -73.9160134 }, + { "lat": 40.7998742, "lon": -73.9160610 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 828561961, + "bounds": { + "minlat": 40.7964897, + "minlon": -73.9226870, + "maxlat": 40.7969199, + "maxlon": -73.9217857 + }, + "nodes": [ + 3659139064, + 9156860536, + 9156860538, + 9156860537, + 7734784506 + ], + "geometry": [ + { "lat": 40.7969199, "lon": -73.9226870 }, + { "lat": 40.7966914, "lon": -73.9222812 }, + { "lat": 40.7966417, "lon": -73.9221773 }, + { "lat": 40.7965909, "lon": -73.9220590 }, + { "lat": 40.7964897, "lon": -73.9217857 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 828561963, + "bounds": { + "minlat": 40.7917360, + "minlon": -73.9198616, + "maxlat": 40.7963331, + "maxlon": -73.9149733 + }, + "nodes": [ + 3039386655, + 2054405674, + 3039386656, + 9156856632, + 2054405672, + 9156856633, + 5906382986, + 3039386657, + 9156856634, + 3039865016, + 2054405669, + 3039386658, + 5906382987, + 9156856635, + 2054405667, + 3039865017, + 2054405663, + 3039386660, + 3039865006, + 2054405658, + 3039386659, + 9156856636, + 2054405654, + 3039386661, + 9156856637, + 2054405652, + 3039386681, + 2054405650, + 3039386365, + 9156856638, + 2054405648, + 3039386680, + 3039386364, + 2054405646, + 9156856639, + 9156856640, + 3039386366, + 3039386662, + 9156856641, + 3039386673, + 3039386726, + 2054405638, + 3039386367, + 9156856642, + 2054405630, + 9156856643, + 2054405629, + 9156856644, + 2054405626, + 9156856645, + 9156856646, + 2054405625, + 9156856647, + 9156856648, + 3039386664, + 2054405624, + 3039386368, + 3039386352, + 2054405621, + 9156856649, + 3039386369, + 2054405620, + 9156856650, + 3039386333, + 3039386665, + 2054405617, + 9156856651, + 9156856652, + 2054405614, + 9156856653, + 2054405612, + 9156856654, + 3039386372, + 2054405609, + 9156856655, + 3039386371, + 2054405607, + 9156856656, + 3039386370, + 9156856657, + 2054405604, + 3039387002, + 3039386374, + 3039386373, + 9156856658, + 3039387008, + 9156856659, + 3039387345, + 2054405598, + 9156856660, + 2054405596, + 3039387344, + 2054405595, + 9156856661, + 2054405592, + 2054405591, + 9156856662, + 2054405589, + 2054405587, + 9156856663, + 3039386378, + 9156856664, + 3039387032, + 3039386375, + 2054405594, + 3039386379, + 3039386376, + 9156856666, + 9156856665, + 9156856667, + 3039386377, + 3039386381, + 9156856668, + 2054405602, + 3039386382, + 9156856669, + 2054405603, + 3039386383, + 9156856670, + 3039387373, + 3039387388, + 3039386387, + 3039386385, + 3039386386, + 2054405616, + 3039387387, + 3039387395, + 3039386389, + 2054405618, + 3039386390, + 3039386391, + 9156856671, + 2054405622, + 3039387403, + 3039386392, + 2054405627, + 9156856672, + 3039386393, + 9156856673, + 3039387404, + 2054405635, + 2054405637, + 3039387428, + 2054405640, + 3039386394, + 2054405643, + 9156856674, + 3039386395, + 2054405645, + 3039863430, + 3039864938, + 2054405649, + 3039386397, + 9156856675, + 2054405653, + 3039864936, + 3039386398, + 2054405655, + 9156856676, + 3039386399, + 9156856677, + 2054405657, + 3039386400, + 2054405659, + 3039864958, + 3039864951, + 2054405660, + 3039386401, + 2054405662, + 3039386402, + 2054405665, + 3039864959, + 3039865002, + 3039386403, + 3039386404, + 2054405668, + 3039386405, + 9156856678, + 2054405671, + 9156856679, + 3039386406, + 2054405673, + 9156856680, + 3039386407, + 9156856681, + 2054405680 + ], + "geometry": [ + { "lat": 40.7963331, "lon": -73.9180600 }, + { "lat": 40.7962629, "lon": -73.9180997 }, + { "lat": 40.7962471, "lon": -73.9181961 }, + { "lat": 40.7962266, "lon": -73.9182729 }, + { "lat": 40.7961979, "lon": -73.9183458 }, + { "lat": 40.7961638, "lon": -73.9184120 }, + { "lat": 40.7961195, "lon": -73.9184724 }, + { "lat": 40.7960737, "lon": -73.9185322 }, + { "lat": 40.7960246, "lon": -73.9185805 }, + { "lat": 40.7959793, "lon": -73.9186186 }, + { "lat": 40.7959373, "lon": -73.9186541 }, + { "lat": 40.7958877, "lon": -73.9186834 }, + { "lat": 40.7958393, "lon": -73.9187061 }, + { "lat": 40.7957916, "lon": -73.9187180 }, + { "lat": 40.7957406, "lon": -73.9187262 }, + { "lat": 40.7956568, "lon": -73.9187255 }, + { "lat": 40.7955994, "lon": -73.9187221 }, + { "lat": 40.7955365, "lon": -73.9187239 }, + { "lat": 40.7954985, "lon": -73.9187335 }, + { "lat": 40.7954435, "lon": -73.9187453 }, + { "lat": 40.7953884, "lon": -73.9187742 }, + { "lat": 40.7953282, "lon": -73.9188223 }, + { "lat": 40.7952779, "lon": -73.9188717 }, + { "lat": 40.7952354, "lon": -73.9189358 }, + { "lat": 40.7952041, "lon": -73.9189986 }, + { "lat": 40.7951777, "lon": -73.9190607 }, + { "lat": 40.7951301, "lon": -73.9192791 }, + { "lat": 40.7951123, "lon": -73.9193622 }, + { "lat": 40.7950764, "lon": -73.9194658 }, + { "lat": 40.7950368, "lon": -73.9195496 }, + { "lat": 40.7950009, "lon": -73.9196056 }, + { "lat": 40.7949674, "lon": -73.9196472 }, + { "lat": 40.7948998, "lon": -73.9197156 }, + { "lat": 40.7948436, "lon": -73.9197635 }, + { "lat": 40.7947863, "lon": -73.9197996 }, + { "lat": 40.7947263, "lon": -73.9198307 }, + { "lat": 40.7946776, "lon": -73.9198500 }, + { "lat": 40.7946156, "lon": -73.9198610 }, + { "lat": 40.7945591, "lon": -73.9198616 }, + { "lat": 40.7945049, "lon": -73.9198584 }, + { "lat": 40.7943702, "lon": -73.9198338 }, + { "lat": 40.7942948, "lon": -73.9198168 }, + { "lat": 40.7941872, "lon": -73.9197953 }, + { "lat": 40.7941276, "lon": -73.9197712 }, + { "lat": 40.7940777, "lon": -73.9197443 }, + { "lat": 40.7940133, "lon": -73.9196934 }, + { "lat": 40.7939598, "lon": -73.9196478 }, + { "lat": 40.7938974, "lon": -73.9195734 }, + { "lat": 40.7938460, "lon": -73.9194987 }, + { "lat": 40.7938126, "lon": -73.9194323 }, + { "lat": 40.7937756, "lon": -73.9193401 }, + { "lat": 40.7937572, "lon": -73.9192747 }, + { "lat": 40.7937416, "lon": -73.9191931 }, + { "lat": 40.7937304, "lon": -73.9190895 }, + { "lat": 40.7937256, "lon": -73.9189998 }, + { "lat": 40.7937179, "lon": -73.9189319 }, + { "lat": 40.7937020, "lon": -73.9188530 }, + { "lat": 40.7936888, "lon": -73.9188072 }, + { "lat": 40.7936668, "lon": -73.9187352 }, + { "lat": 40.7936366, "lon": -73.9186658 }, + { "lat": 40.7936034, "lon": -73.9185940 }, + { "lat": 40.7935617, "lon": -73.9185340 }, + { "lat": 40.7935117, "lon": -73.9184729 }, + { "lat": 40.7934525, "lon": -73.9184066 }, + { "lat": 40.7934189, "lon": -73.9183814 }, + { "lat": 40.7933626, "lon": -73.9183380 }, + { "lat": 40.7932872, "lon": -73.9182916 }, + { "lat": 40.7932183, "lon": -73.9182596 }, + { "lat": 40.7931719, "lon": -73.9182289 }, + { "lat": 40.7931117, "lon": -73.9181743 }, + { "lat": 40.7930562, "lon": -73.9181191 }, + { "lat": 40.7930068, "lon": -73.9180478 }, + { "lat": 40.7929721, "lon": -73.9179858 }, + { "lat": 40.7929378, "lon": -73.9179101 }, + { "lat": 40.7929055, "lon": -73.9178204 }, + { "lat": 40.7928766, "lon": -73.9177179 }, + { "lat": 40.7928418, "lon": -73.9176230 }, + { "lat": 40.7928052, "lon": -73.9175360 }, + { "lat": 40.7927661, "lon": -73.9174655 }, + { "lat": 40.7927141, "lon": -73.9173943 }, + { "lat": 40.7926649, "lon": -73.9173411 }, + { "lat": 40.7926266, "lon": -73.9173033 }, + { "lat": 40.7925832, "lon": -73.9172664 }, + { "lat": 40.7925200, "lon": -73.9172258 }, + { "lat": 40.7924471, "lon": -73.9171882 }, + { "lat": 40.7923122, "lon": -73.9171246 }, + { "lat": 40.7922544, "lon": -73.9170974 }, + { "lat": 40.7922150, "lon": -73.9170702 }, + { "lat": 40.7921379, "lon": -73.9170167 }, + { "lat": 40.7920614, "lon": -73.9169442 }, + { "lat": 40.7919870, "lon": -73.9168524 }, + { "lat": 40.7919327, "lon": -73.9167656 }, + { "lat": 40.7918929, "lon": -73.9166996 }, + { "lat": 40.7918437, "lon": -73.9165962 }, + { "lat": 40.7918063, "lon": -73.9165036 }, + { "lat": 40.7917780, "lon": -73.9164000 }, + { "lat": 40.7917532, "lon": -73.9162873 }, + { "lat": 40.7917389, "lon": -73.9161660 }, + { "lat": 40.7917360, "lon": -73.9160480 }, + { "lat": 40.7917384, "lon": -73.9159647 }, + { "lat": 40.7917516, "lon": -73.9158719 }, + { "lat": 40.7917743, "lon": -73.9157908 }, + { "lat": 40.7917985, "lon": -73.9157213 }, + { "lat": 40.7918220, "lon": -73.9156650 }, + { "lat": 40.7918709, "lon": -73.9155926 }, + { "lat": 40.7919312, "lon": -73.9155206 }, + { "lat": 40.7919899, "lon": -73.9154622 }, + { "lat": 40.7920677, "lon": -73.9153773 }, + { "lat": 40.7921191, "lon": -73.9153164 }, + { "lat": 40.7921775, "lon": -73.9152371 }, + { "lat": 40.7922486, "lon": -73.9151514 }, + { "lat": 40.7923016, "lon": -73.9151016 }, + { "lat": 40.7923667, "lon": -73.9150544 }, + { "lat": 40.7924361, "lon": -73.9150172 }, + { "lat": 40.7925025, "lon": -73.9149938 }, + { "lat": 40.7925865, "lon": -73.9149785 }, + { "lat": 40.7926574, "lon": -73.9149733 }, + { "lat": 40.7927311, "lon": -73.9149819 }, + { "lat": 40.7927909, "lon": -73.9149919 }, + { "lat": 40.7928673, "lon": -73.9150073 }, + { "lat": 40.7929592, "lon": -73.9150300 }, + { "lat": 40.7930252, "lon": -73.9150491 }, + { "lat": 40.7930831, "lon": -73.9150703 }, + { "lat": 40.7931437, "lon": -73.9151087 }, + { "lat": 40.7932033, "lon": -73.9151564 }, + { "lat": 40.7932521, "lon": -73.9152042 }, + { "lat": 40.7933378, "lon": -73.9153238 }, + { "lat": 40.7933829, "lon": -73.9153868 }, + { "lat": 40.7934297, "lon": -73.9154388 }, + { "lat": 40.7934961, "lon": -73.9154996 }, + { "lat": 40.7935624, "lon": -73.9155481 }, + { "lat": 40.7936190, "lon": -73.9155814 }, + { "lat": 40.7936673, "lon": -73.9156057 }, + { "lat": 40.7937403, "lon": -73.9156294 }, + { "lat": 40.7937927, "lon": -73.9156377 }, + { "lat": 40.7938622, "lon": -73.9156399 }, + { "lat": 40.7939346, "lon": -73.9156341 }, + { "lat": 40.7940026, "lon": -73.9156244 }, + { "lat": 40.7940665, "lon": -73.9156049 }, + { "lat": 40.7941370, "lon": -73.9155757 }, + { "lat": 40.7941917, "lon": -73.9155384 }, + { "lat": 40.7942512, "lon": -73.9154898 }, + { "lat": 40.7943267, "lon": -73.9154250 }, + { "lat": 40.7943874, "lon": -73.9153824 }, + { "lat": 40.7944368, "lon": -73.9153574 }, + { "lat": 40.7945139, "lon": -73.9153367 }, + { "lat": 40.7945783, "lon": -73.9153264 }, + { "lat": 40.7946427, "lon": -73.9153208 }, + { "lat": 40.7947169, "lon": -73.9153287 }, + { "lat": 40.7948264, "lon": -73.9153534 }, + { "lat": 40.7949691, "lon": -73.9153880 }, + { "lat": 40.7950339, "lon": -73.9154043 }, + { "lat": 40.7950967, "lon": -73.9154335 }, + { "lat": 40.7951516, "lon": -73.9154711 }, + { "lat": 40.7952053, "lon": -73.9155156 }, + { "lat": 40.7952656, "lon": -73.9155821 }, + { "lat": 40.7953040, "lon": -73.9156382 }, + { "lat": 40.7953432, "lon": -73.9157022 }, + { "lat": 40.7953827, "lon": -73.9157854 }, + { "lat": 40.7954157, "lon": -73.9158745 }, + { "lat": 40.7954367, "lon": -73.9159595 }, + { "lat": 40.7954461, "lon": -73.9160398 }, + { "lat": 40.7954502, "lon": -73.9161274 }, + { "lat": 40.7954472, "lon": -73.9162401 }, + { "lat": 40.7954481, "lon": -73.9163209 }, + { "lat": 40.7954537, "lon": -73.9164095 }, + { "lat": 40.7954667, "lon": -73.9164742 }, + { "lat": 40.7954905, "lon": -73.9165488 }, + { "lat": 40.7955251, "lon": -73.9166256 }, + { "lat": 40.7955705, "lon": -73.9167000 }, + { "lat": 40.7956239, "lon": -73.9167575 }, + { "lat": 40.7956661, "lon": -73.9167927 }, + { "lat": 40.7957015, "lon": -73.9168149 }, + { "lat": 40.7957533, "lon": -73.9168435 }, + { "lat": 40.7958234, "lon": -73.9168638 }, + { "lat": 40.7958905, "lon": -73.9168809 }, + { "lat": 40.7959654, "lon": -73.9169141 }, + { "lat": 40.7960270, "lon": -73.9169587 }, + { "lat": 40.7960816, "lon": -73.9170079 }, + { "lat": 40.7961343, "lon": -73.9170699 }, + { "lat": 40.7961676, "lon": -73.9171191 }, + { "lat": 40.7962154, "lon": -73.9171993 }, + { "lat": 40.7962513, "lon": -73.9172841 }, + { "lat": 40.7962790, "lon": -73.9173677 }, + { "lat": 40.7962968, "lon": -73.9174451 }, + { "lat": 40.7963147, "lon": -73.9175193 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "name": "Sunken Meadow Loop", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 828561965, + "bounds": { + "minlat": 40.7963331, + "minlon": -73.9180600, + "maxlat": 40.7966003, + "maxlon": -73.9180044 + }, + "nodes": [ + 3843180751, + 3039386410, + 9156856631, + 3039386654, + 2054405682, + 3039386655 + ], + "geometry": [ + { "lat": 40.7966003, "lon": -73.9180395 }, + { "lat": 40.7965433, "lon": -73.9180144 }, + { "lat": 40.7965094, "lon": -73.9180074 }, + { "lat": 40.7964722, "lon": -73.9180044 }, + { "lat": 40.7964395, "lon": -73.9180080 }, + { "lat": 40.7963331, "lon": -73.9180600 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "name": "Sunken Meadow Loop", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 828622429, + "bounds": { + "minlat": 40.7436677, + "minlon": -73.9765073, + "maxlat": 40.7439419, + "maxlon": -73.9764324 + }, + "nodes": [ + 5696984871, + 5696984869, + 12926045995, + 12926045991, + 7640856876 + ], + "geometry": [ + { "lat": 40.7439419, "lon": -73.9765073 }, + { "lat": 40.7437711, "lon": -73.9764839 }, + { "lat": 40.7437414, "lon": -73.9764580 }, + { "lat": 40.7437129, "lon": -73.9764324 }, + { "lat": 40.7436677, "lon": -73.9764472 } + ], + "tags": { + "highway": "service", + "motor_vehicle:conditional": "no @ (08:00-20:00)", + "name": "2nd Avenue service road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829009874, + "bounds": { + "minlat": 40.7926014, + "minlon": -73.9226173, + "maxlat": 40.7927960, + "maxlon": -73.9224852 + }, + "nodes": [ + 10713117979, + 10713117980, + 9156860566, + 9156860567, + 7738506173, + 9156860565, + 9156860564, + 9156860563, + 3044457240 + ], + "geometry": [ + { "lat": 40.7927960, "lon": -73.9226173 }, + { "lat": 40.7927601, "lon": -73.9226134 }, + { "lat": 40.7927427, "lon": -73.9226100 }, + { "lat": 40.7927057, "lon": -73.9226034 }, + { "lat": 40.7926781, "lon": -73.9225936 }, + { "lat": 40.7926561, "lon": -73.9225774 }, + { "lat": 40.7926362, "lon": -73.9225544 }, + { "lat": 40.7926185, "lon": -73.9225275 }, + { "lat": 40.7926014, "lon": -73.9224852 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "2", + "name": "Reilly Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829009875, + "bounds": { + "minlat": 40.7923601, + "minlon": -73.9231490, + "maxlat": 40.7924938, + "maxlon": -73.9230392 + }, + "nodes": [ + 10713117969, + 3044455864 + ], + "geometry": [ + { "lat": 40.7924938, "lon": -73.9230392 }, + { "lat": 40.7923601, "lon": -73.9231490 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "10 mph", + "name": "K Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829009876, + "bounds": { + "minlat": 40.7923080, + "minlon": -73.9230723, + "maxlat": 40.7924610, + "maxlon": -73.9229551 + }, + "nodes": [ + 7738506176, + 10713117970 + ], + "geometry": [ + { "lat": 40.7923080, "lon": -73.9230723 }, + { "lat": 40.7924610, "lon": -73.9229551 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "10 mph", + "name": "K Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829009881, + "bounds": { + "minlat": 40.7907819, + "minlon": -73.9209309, + "maxlat": 40.7913714, + "maxlon": -73.9194629 + }, + "nodes": [ + 3041969939, + 3041970034, + 3041970037 + ], + "geometry": [ + { "lat": 40.7912282, "lon": -73.9209309 }, + { "lat": 40.7913714, "lon": -73.9208227 }, + { "lat": 40.7907819, "lon": -73.9194629 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "K Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829009885, + "bounds": { + "minlat": 40.7899986, + "minlon": -73.9209804, + "maxlat": 40.7901880, + "maxlon": -73.9208404 + }, + "nodes": [ + 3041970020, + 3041969999 + ], + "geometry": [ + { "lat": 40.7899986, "lon": -73.9209804 }, + { "lat": 40.7901880, "lon": -73.9208404 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829009886, + "bounds": { + "minlat": 40.7901219, + "minlon": -73.9208404, + "maxlat": 40.7901880, + "maxlon": -73.9206928 + }, + "nodes": [ + 3041969999, + 3041970000 + ], + "geometry": [ + { "lat": 40.7901880, "lon": -73.9208404 }, + { "lat": 40.7901219, "lon": -73.9206928 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829028004, + "bounds": { + "minlat": 40.7880598, + "minlon": -73.9247510, + "maxlat": 40.7882691, + "maxlon": -73.9242893 + }, + "nodes": [ + 3041966814, + 7738570126, + 3041966815 + ], + "geometry": [ + { "lat": 40.7880598, "lon": -73.9242893 }, + { "lat": 40.7880743, "lon": -73.9243213 }, + { "lat": 40.7882691, "lon": -73.9247510 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "C Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829028005, + "bounds": { + "minlat": 40.7884155, + "minlon": -73.9239520, + "maxlat": 40.7884943, + "maxlon": -73.9237580 + }, + "nodes": [ + 3041966821, + 3041966824 + ], + "geometry": [ + { "lat": 40.7884943, "lon": -73.9239520 }, + { "lat": 40.7884155, "lon": -73.9237580 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 829028006, + "bounds": { + "minlat": 40.7882005, + "minlon": -73.9241799, + "maxlat": 40.7884943, + "maxlon": -73.9239520 + }, + "nodes": [ + 3041966821, + 3041966825 + ], + "geometry": [ + { "lat": 40.7884943, "lon": -73.9239520 }, + { "lat": 40.7882005, "lon": -73.9241799 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 829028007, + "bounds": { + "minlat": 40.7880598, + "minlon": -73.9242893, + "maxlat": 40.7882005, + "maxlon": -73.9241799 + }, + "nodes": [ + 3041966825, + 3041966814 + ], + "geometry": [ + { "lat": 40.7882005, "lon": -73.9241799 }, + { "lat": 40.7880598, "lon": -73.9242893 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 829028008, + "bounds": { + "minlat": 40.7871130, + "minlon": -73.9250520, + "maxlat": 40.7880743, + "maxlon": -73.9243213 + }, + "nodes": [ + 7738570126, + 3041966830, + 7738570127 + ], + "geometry": [ + { "lat": 40.7880743, "lon": -73.9243213 }, + { "lat": 40.7879178, "lon": -73.9244402 }, + { "lat": 40.7871130, "lon": -73.9250520 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829028009, + "bounds": { + "minlat": 40.7841259, + "minlon": -73.9234833, + "maxlat": 40.7843759, + "maxlon": -73.9231068 + }, + "nodes": [ + 7738570129, + 7738570128 + ], + "geometry": [ + { "lat": 40.7843759, "lon": -73.9234833 }, + { "lat": 40.7841259, "lon": -73.9231068 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829028010, + "bounds": { + "minlat": 40.7843759, + "minlon": -73.9234833, + "maxlat": 40.7848229, + "maxlon": -73.9233870 + }, + "nodes": [ + 3041970055, + 7738570142, + 7738570129 + ], + "geometry": [ + { "lat": 40.7848229, "lon": -73.9233870 }, + { "lat": 40.7847639, "lon": -73.9233997 }, + { "lat": 40.7843759, "lon": -73.9234833 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829028012, + "bounds": { + "minlat": 40.7838677, + "minlon": -73.9231780, + "maxlat": 40.7841259, + "maxlon": -73.9231068 + }, + "nodes": [ + 7738570128, + 7738570135 + ], + "geometry": [ + { "lat": 40.7841259, "lon": -73.9231068 }, + { "lat": 40.7838677, "lon": -73.9231780 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829028013, + "bounds": { + "minlat": 40.7838303, + "minlon": -73.9231780, + "maxlat": 40.7838677, + "maxlon": -73.9230128 + }, + "nodes": [ + 7738570135, + 7738570136 + ], + "geometry": [ + { "lat": 40.7838677, "lon": -73.9231780 }, + { "lat": 40.7838303, "lon": -73.9230128 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829028014, + "bounds": { + "minlat": 40.7846560, + "minlon": -73.9236609, + "maxlat": 40.7847639, + "maxlon": -73.9233997 + }, + "nodes": [ + 7738570141, + 7738570142 + ], + "geometry": [ + { "lat": 40.7846560, "lon": -73.9236609 }, + { "lat": 40.7847639, "lon": -73.9233997 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829073006, + "bounds": { + "minlat": 40.7382062, + "minlon": -73.9747611, + "maxlat": 40.7384690, + "maxlon": -73.9741317 + }, + "nodes": [ + 11543660390, + 11543660414, + 5007384484, + 5007384498, + 5007384459, + 11543660378, + 1632878885 + ], + "geometry": [ + { "lat": 40.7384690, "lon": -73.9747611 }, + { "lat": 40.7384310, "lon": -73.9746701 }, + { "lat": 40.7383802, "lon": -73.9745486 }, + { "lat": 40.7382938, "lon": -73.9743360 }, + { "lat": 40.7382539, "lon": -73.9742427 }, + { "lat": 40.7382343, "lon": -73.9742004 }, + { "lat": 40.7382062, "lon": -73.9741317 } + ], + "tags": { + "access": "private", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 27th Street", + "name_1": "East 27 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East 27th", + "tiger:name_base_1": "27", + "tiger:name_direction_prefix_1": "E", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 829110482, + "bounds": { + "minlat": 40.7498394, + "minlon": -73.9386862, + "maxlat": 40.7500820, + "maxlon": -73.9380918 + }, + "nodes": [ + 3785669472, + 4457118209 + ], + "geometry": [ + { "lat": 40.7498394, "lon": -73.9380918 }, + { "lat": 40.7500820, "lon": -73.9386862 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "name": "Queensboro Plaza", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "through|through|through|through" + } +}, +{ + "type": "way", + "id": 829240641, + "bounds": { + "minlat": 40.8761572, + "minlon": -73.9862191, + "maxlat": 40.8767360, + "maxlon": -73.9858738 + }, + "nodes": [ + 103262193, + 7740334164 + ], + "geometry": [ + { "lat": 40.8761572, "lon": -73.9862191 }, + { "lat": 40.8767360, "lon": -73.9858738 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 829262729, + "bounds": { + "minlat": 40.8456075, + "minlon": -73.9085623, + "maxlat": 40.8456106, + "maxlon": -73.9083986 + }, + "nodes": [ + 7740581872, + 7742823764, + 13001055635, + 7740581871 + ], + "geometry": [ + { "lat": 40.8456106, "lon": -73.9085623 }, + { "lat": 40.8456096, "lon": -73.9085090 }, + { "lat": 40.8456093, "lon": -73.9084927 }, + { "lat": 40.8456075, "lon": -73.9083986 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 829262829, + "bounds": { + "minlat": 40.7183634, + "minlon": -73.9630242, + "maxlat": 40.7187372, + "maxlon": -73.9626246 + }, + "nodes": [ + 7740582269, + 12864471191, + 7742902777, + 7740582266 + ], + "geometry": [ + { "lat": 40.7183634, "lon": -73.9630242 }, + { "lat": 40.7184176, "lon": -73.9629673 }, + { "lat": 40.7184472, "lon": -73.9629362 }, + { "lat": 40.7187372, "lon": -73.9626246 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 829262978, + "bounds": { + "minlat": 40.8608363, + "minlon": -73.9132905, + "maxlat": 40.8610406, + "maxlon": -73.9130255 + }, + "nodes": [ + 7740582831, + 7740582830, + 12993728156, + 7743054729, + 7740582828, + 7740582827 + ], + "geometry": [ + { "lat": 40.8608363, "lon": -73.9130255 }, + { "lat": 40.8608664, "lon": -73.9130578 }, + { "lat": 40.8608783, "lon": -73.9130742 }, + { "lat": 40.8608965, "lon": -73.9130995 }, + { "lat": 40.8609705, "lon": -73.9131967 }, + { "lat": 40.8610406, "lon": -73.9132905 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 829263008, + "bounds": { + "minlat": 40.8585846, + "minlon": -73.9319252, + "maxlat": 40.8586617, + "maxlon": -73.9316576 + }, + "nodes": [ + 7740582995, + 7742949203, + 7740582994 + ], + "geometry": [ + { "lat": 40.8586617, "lon": -73.9319252 }, + { "lat": 40.8586271, "lon": -73.9317951 }, + { "lat": 40.8585846, "lon": -73.9316576 } + ], + "tags": { + "access": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 829263127, + "bounds": { + "minlat": 40.8591414, + "minlon": -73.9317043, + "maxlat": 40.8591944, + "maxlon": -73.9314086 + }, + "nodes": [ + 7740583562, + 7740583561, + 7740583560, + 7740583559, + 7740583558 + ], + "geometry": [ + { "lat": 40.8591944, "lon": -73.9317043 }, + { "lat": 40.8591887, "lon": -73.9316606 }, + { "lat": 40.8591652, "lon": -73.9315491 }, + { "lat": 40.8591570, "lon": -73.9314990 }, + { "lat": 40.8591414, "lon": -73.9314086 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 829263171, + "bounds": { + "minlat": 40.7671119, + "minlon": -73.9543413, + "maxlat": 40.7673653, + "maxlon": -73.9541589 + }, + "nodes": [ + 7740583793, + 7740583792, + 7740583791 + ], + "geometry": [ + { "lat": 40.7671119, "lon": -73.9543413 }, + { "lat": 40.7672105, "lon": -73.9542688 }, + { "lat": 40.7673653, "lon": -73.9541589 } + ], + "tags": { + "access": "yes", + "highway": "service", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829427491, + "bounds": { + "minlat": 40.8092377, + "minlon": -73.9530446, + "maxlat": 40.8100741, + "maxlon": -73.9530050 + }, + "nodes": [ + 42432926, + 10171069674, + 6185562895, + 42432928 + ], + "geometry": [ + { "lat": 40.8092377, "lon": -73.9530050 }, + { "lat": 40.8093284, "lon": -73.9530101 }, + { "lat": 40.8099241, "lon": -73.9530426 }, + { "lat": 40.8100741, "lon": -73.9530446 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 829529278, + "bounds": { + "minlat": 40.8798279, + "minlon": -73.9644184, + "maxlat": 40.8799482, + "maxlon": -73.9635096 + }, + "nodes": [ + 7742534719, + 7742534727, + 7742534720, + 7742534721, + 7742534722, + 7742534723, + 7742534724, + 7742534728, + 7742534725, + 7742534726 + ], + "geometry": [ + { "lat": 40.8799287, "lon": -73.9644184 }, + { "lat": 40.8798843, "lon": -73.9643931 }, + { "lat": 40.8798471, "lon": -73.9643296 }, + { "lat": 40.8798303, "lon": -73.9642644 }, + { "lat": 40.8798279, "lon": -73.9641198 }, + { "lat": 40.8798495, "lon": -73.9639641 }, + { "lat": 40.8799456, "lon": -73.9636908 }, + { "lat": 40.8799482, "lon": -73.9636530 }, + { "lat": 40.8799372, "lon": -73.9636288 }, + { "lat": 40.8798327, "lon": -73.9635096 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 829680932, + "bounds": { + "minlat": 40.7073147, + "minlon": -74.0181531, + "maxlat": 40.7073344, + "maxlon": -74.0181361 + }, + "nodes": [ + 7728704711, + 7728678505, + 7728678504, + 7728678819, + 7728678818, + 7728678817, + 7728678816, + 7728678815, + 7728678814, + 7728704711 + ], + "geometry": [ + { "lat": 40.7073173, "lon": -74.0181531 }, + { "lat": 40.7073204, "lon": -74.0181515 }, + { "lat": 40.7073344, "lon": -74.0181441 }, + { "lat": 40.7073275, "lon": -74.0181361 }, + { "lat": 40.7073261, "lon": -74.0181399 }, + { "lat": 40.7073238, "lon": -74.0181427 }, + { "lat": 40.7073207, "lon": -74.0181440 }, + { "lat": 40.7073175, "lon": -74.0181438 }, + { "lat": 40.7073147, "lon": -74.0181420 }, + { "lat": 40.7073173, "lon": -74.0181531 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 829830158, + "bounds": { + "minlat": 40.7925677, + "minlon": -73.9194934, + "maxlat": 40.7927483, + "maxlon": -73.9192559 + }, + "nodes": [ + 7745068929, + 7745068930, + 7745068931, + 7745068932, + 7745068933, + 7745068934, + 7745068935, + 7745068936, + 7745068919, + 7745068920, + 7745068923, + 3039865228, + 7745068924, + 7745068925, + 7745068926, + 7745068927, + 7745068928, + 7745068921, + 7745068922, + 7745068929 + ], + "geometry": [ + { "lat": 40.7926079, "lon": -73.9192759 }, + { "lat": 40.7926340, "lon": -73.9192601 }, + { "lat": 40.7926626, "lon": -73.9192559 }, + { "lat": 40.7926907, "lon": -73.9192638 }, + { "lat": 40.7927155, "lon": -73.9192830 }, + { "lat": 40.7927345, "lon": -73.9193114 }, + { "lat": 40.7927458, "lon": -73.9193464 }, + { "lat": 40.7927483, "lon": -73.9193842 }, + { "lat": 40.7927416, "lon": -73.9194211 }, + { "lat": 40.7927250, "lon": -73.9194556 }, + { "lat": 40.7927006, "lon": -73.9194806 }, + { "lat": 40.7926712, "lon": -73.9194934 }, + { "lat": 40.7926404, "lon": -73.9194923 }, + { "lat": 40.7926115, "lon": -73.9194776 }, + { "lat": 40.7925881, "lon": -73.9194509 }, + { "lat": 40.7925729, "lon": -73.9194154 }, + { "lat": 40.7925677, "lon": -73.9193752 }, + { "lat": 40.7925729, "lon": -73.9193350 }, + { "lat": 40.7925868, "lon": -73.9193017 }, + { "lat": 40.7926079, "lon": -73.9192759 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 829837230, + "bounds": { + "minlat": 40.7765008, + "minlon": -73.9336804, + "maxlat": 40.7769260, + "maxlon": -73.9334491 + }, + "nodes": [ + 11071072203, + 7768475544, + 5487886271 + ], + "geometry": [ + { "lat": 40.7769260, "lon": -73.9334491 }, + { "lat": 40.7765589, "lon": -73.9336516 }, + { "lat": 40.7765008, "lon": -73.9336804 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829837231, + "bounds": { + "minlat": 40.7768662, + "minlon": -73.9342526, + "maxlat": 40.7775537, + "maxlon": -73.9338959 + }, + "nodes": [ + 7745133381, + 7745133384, + 7745133382 + ], + "geometry": [ + { "lat": 40.7775537, "lon": -73.9338959 }, + { "lat": 40.7774371, "lon": -73.9339561 }, + { "lat": 40.7768662, "lon": -73.9342526 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829837232, + "bounds": { + "minlat": 40.7773497, + "minlon": -73.9338959, + "maxlat": 40.7775537, + "maxlon": -73.9332200 + }, + "nodes": [ + 7745133381, + 7745133380 + ], + "geometry": [ + { "lat": 40.7775537, "lon": -73.9338959 }, + { "lat": 40.7773497, "lon": -73.9332200 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829837233, + "bounds": { + "minlat": 40.7774371, + "minlon": -73.9341466, + "maxlat": 40.7774959, + "maxlon": -73.9339561 + }, + "nodes": [ + 7745133383, + 7768475526, + 7745133384 + ], + "geometry": [ + { "lat": 40.7774959, "lon": -73.9341466 }, + { "lat": 40.7774759, "lon": -73.9340819 }, + { "lat": 40.7774371, "lon": -73.9339561 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829837234, + "bounds": { + "minlat": 40.7774959, + "minlon": -73.9341466, + "maxlat": 40.7779965, + "maxlon": -73.9338999 + }, + "nodes": [ + 7745149785, + 7745133383 + ], + "geometry": [ + { "lat": 40.7779965, "lon": -73.9338999 }, + { "lat": 40.7774959, "lon": -73.9341466 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 829837236, + "bounds": { + "minlat": 40.7757028, + "minlon": -73.9299130, + "maxlat": 40.7758115, + "maxlon": -73.9292196 + }, + "nodes": [ + 7745149789, + 7745149790 + ], + "geometry": [ + { "lat": 40.7757028, "lon": -73.9299130 }, + { "lat": 40.7758115, "lon": -73.9292196 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829837237, + "bounds": { + "minlat": 40.7757028, + "minlon": -73.9299130, + "maxlat": 40.7758409, + "maxlon": -73.9298540 + }, + "nodes": [ + 7745149788, + 7745149789 + ], + "geometry": [ + { "lat": 40.7758409, "lon": -73.9298540 }, + { "lat": 40.7757028, "lon": -73.9299130 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829837238, + "bounds": { + "minlat": 40.7756855, + "minlon": -73.9292196, + "maxlat": 40.7758115, + "maxlon": -73.9291578 + }, + "nodes": [ + 7745149790, + 7756437637, + 7745149791 + ], + "geometry": [ + { "lat": 40.7758115, "lon": -73.9292196 }, + { "lat": 40.7757623, "lon": -73.9291954 }, + { "lat": 40.7756855, "lon": -73.9291578 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829837239, + "bounds": { + "minlat": 40.7757826, + "minlon": -73.9288709, + "maxlat": 40.7758643, + "maxlon": -73.9288218 + }, + "nodes": [ + 7745149792, + 7756437682, + 7745149793 + ], + "geometry": [ + { "lat": 40.7758643, "lon": -73.9288709 }, + { "lat": 40.7758510, "lon": -73.9288629 }, + { "lat": 40.7757826, "lon": -73.9288218 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829837240, + "bounds": { + "minlat": 40.7758669, + "minlon": -73.9291712, + "maxlat": 40.7759187, + "maxlon": -73.9290022 + }, + "nodes": [ + 7745149794, + 7745149795 + ], + "geometry": [ + { "lat": 40.7758669, "lon": -73.9291712 }, + { "lat": 40.7759187, "lon": -73.9290022 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829837241, + "bounds": { + "minlat": 40.7758643, + "minlon": -73.9290022, + "maxlat": 40.7759187, + "maxlon": -73.9288709 + }, + "nodes": [ + 7745149795, + 7745149792 + ], + "geometry": [ + { "lat": 40.7759187, "lon": -73.9290022 }, + { "lat": 40.7758643, "lon": -73.9288709 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829837242, + "bounds": { + "minlat": 40.7758115, + "minlon": -73.9292196, + "maxlat": 40.7758669, + "maxlon": -73.9291712 + }, + "nodes": [ + 7745149794, + 7745149790 + ], + "geometry": [ + { "lat": 40.7758669, "lon": -73.9291712 }, + { "lat": 40.7758115, "lon": -73.9292196 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829840910, + "bounds": { + "minlat": 40.7731161, + "minlon": -73.9274147, + "maxlat": 40.7757753, + "maxlon": -73.9260180 + }, + "nodes": [ + 42866520, + 42866518, + 7918381233, + 7918381232, + 42861322, + 7733683712, + 42861267, + 7722330252, + 42828372, + 7787345544, + 6452944032, + 4262943193, + 42842324 + ], + "geometry": [ + { "lat": 40.7731161, "lon": -73.9274147 }, + { "lat": 40.7732019, "lon": -73.9273696 }, + { "lat": 40.7735506, "lon": -73.9271865 }, + { "lat": 40.7736055, "lon": -73.9271576 }, + { "lat": 40.7740868, "lon": -73.9269049 }, + { "lat": 40.7741300, "lon": -73.9268822 }, + { "lat": 40.7741827, "lon": -73.9268545 }, + { "lat": 40.7744678, "lon": -73.9267047 }, + { "lat": 40.7750208, "lon": -73.9264143 }, + { "lat": 40.7756141, "lon": -73.9261027 }, + { "lat": 40.7756483, "lon": -73.9260847 }, + { "lat": 40.7757121, "lon": -73.9260525 }, + { "lat": 40.7757753, "lon": -73.9260180 } + ], + "tags": { + "highway": "residential", + "name": "18th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 829840911, + "bounds": { + "minlat": 40.7730591, + "minlon": -73.9294097, + "maxlat": 40.7730637, + "maxlon": -73.9290201 + }, + "nodes": [ + 2891717709, + 6452930139, + 2891717710 + ], + "geometry": [ + { "lat": 40.7730591, "lon": -73.9294097 }, + { "lat": 40.7730628, "lon": -73.9290946 }, + { "lat": 40.7730637, "lon": -73.9290201 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829840912, + "bounds": { + "minlat": 40.7727673, + "minlon": -73.9290161, + "maxlat": 40.7727684, + "maxlon": -73.9288845 + }, + "nodes": [ + 2886109125, + 6452959168, + 2886109127 + ], + "geometry": [ + { "lat": 40.7727673, "lon": -73.9288845 }, + { "lat": 40.7727680, "lon": -73.9289633 }, + { "lat": 40.7727684, "lon": -73.9290161 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 829840913, + "bounds": { + "minlat": 40.7724357, + "minlon": -73.9336161, + "maxlat": 40.7725079, + "maxlon": -73.9335204 + }, + "nodes": [ + 7745153211, + 7745153212, + 7745153213, + 7745153214, + 7745153215, + 7745153216, + 7745153217, + 7745153218, + 7745153201, + 7745153202, + 7745153205, + 7745153206, + 2891718130, + 7745153207, + 7745153208, + 7745153209, + 7745153210, + 7745153203, + 7745153204, + 7745153211 + ], + "geometry": [ + { "lat": 40.7724560, "lon": -73.9335247 }, + { "lat": 40.7724671, "lon": -73.9335204 }, + { "lat": 40.7724786, "lon": -73.9335208 }, + { "lat": 40.7724895, "lon": -73.9335261 }, + { "lat": 40.7724986, "lon": -73.9335356 }, + { "lat": 40.7725049, "lon": -73.9335483 }, + { "lat": 40.7725079, "lon": -73.9335631 }, + { "lat": 40.7725073, "lon": -73.9335783 }, + { "lat": 40.7725030, "lon": -73.9335925 }, + { "lat": 40.7724949, "lon": -73.9336050 }, + { "lat": 40.7724841, "lon": -73.9336132 }, + { "lat": 40.7724719, "lon": -73.9336161 }, + { "lat": 40.7724596, "lon": -73.9336133 }, + { "lat": 40.7724488, "lon": -73.9336053 }, + { "lat": 40.7724406, "lon": -73.9335929 }, + { "lat": 40.7724361, "lon": -73.9335776 }, + { "lat": 40.7724357, "lon": -73.9335612 }, + { "lat": 40.7724395, "lon": -73.9335456 }, + { "lat": 40.7724465, "lon": -73.9335334 }, + { "lat": 40.7724560, "lon": -73.9335247 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 829848642, + "bounds": { + "minlat": 40.7733864, + "minlon": -73.9289911, + "maxlat": 40.7763894, + "maxlon": -73.9274232 + }, + "nodes": [ + 2457089505, + 6452938238, + 7733683744, + 42843365, + 7768271427, + 42843362, + 7768271424, + 7722330253, + 6452969524, + 42811448 + ], + "geometry": [ + { "lat": 40.7763894, "lon": -73.9274232 }, + { "lat": 40.7763765, "lon": -73.9274299 }, + { "lat": 40.7759784, "lon": -73.9276379 }, + { "lat": 40.7749100, "lon": -73.9281960 }, + { "lat": 40.7746921, "lon": -73.9283101 }, + { "lat": 40.7746370, "lon": -73.9283390 }, + { "lat": 40.7745768, "lon": -73.9283704 }, + { "lat": 40.7744805, "lon": -73.9284206 }, + { "lat": 40.7734649, "lon": -73.9289502 }, + { "lat": 40.7733864, "lon": -73.9289911 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "14th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829848646, + "bounds": { + "minlat": 40.7766992, + "minlon": -73.9278641, + "maxlat": 40.7767857, + "maxlon": -73.9277416 + }, + "nodes": [ + 2302054339, + 7745197928, + 2415578465 + ], + "geometry": [ + { "lat": 40.7767857, "lon": -73.9277416 }, + { "lat": 40.7767432, "lon": -73.9277972 }, + { "lat": 40.7766992, "lon": -73.9278641 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Shore Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829848648, + "bounds": { + "minlat": 40.7735664, + "minlon": -73.9368910, + "maxlat": 40.7738247, + "maxlon": -73.9368862 + }, + "nodes": [ + 2891717755, + 2891717758 + ], + "geometry": [ + { "lat": 40.7738247, "lon": -73.9368862 }, + { "lat": 40.7735664, "lon": -73.9368910 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829848649, + "bounds": { + "minlat": 40.7715187, + "minlon": -73.9312734, + "maxlat": 40.7719461, + "maxlon": -73.9301480 + }, + "nodes": [ + 42824405, + 7733783560, + 7713828607, + 7745197945, + 7745197946 + ], + "geometry": [ + { "lat": 40.7715187, "lon": -73.9312734 }, + { "lat": 40.7715525, "lon": -73.9311832 }, + { "lat": 40.7718712, "lon": -73.9303315 }, + { "lat": 40.7719003, "lon": -73.9302601 }, + { "lat": 40.7719461, "lon": -73.9301480 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829848650, + "bounds": { + "minlat": 40.7720413, + "minlon": -73.9328462, + "maxlat": 40.7723846, + "maxlon": -73.9322382 + }, + "nodes": [ + 7745197940, + 11308871001, + 12044698819, + 12044698818, + 11308870992, + 7745197942 + ], + "geometry": [ + { "lat": 40.7723846, "lon": -73.9328462 }, + { "lat": 40.7723289, "lon": -73.9327476 }, + { "lat": 40.7723044, "lon": -73.9327042 }, + { "lat": 40.7721490, "lon": -73.9324288 }, + { "lat": 40.7720889, "lon": -73.9323224 }, + { "lat": 40.7720413, "lon": -73.9322382 } + ], + "tags": { + "highway": "tertiary", + "name": "30th Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 829848651, + "bounds": { + "minlat": 40.7708638, + "minlon": -73.9311337, + "maxlat": 40.7714418, + "maxlon": -73.9299088 + }, + "nodes": [ + 7745197941, + 5538998194, + 6452924964, + 42843332 + ], + "geometry": [ + { "lat": 40.7714418, "lon": -73.9311337 }, + { "lat": 40.7714321, "lon": -73.9311160 }, + { "lat": 40.7709075, "lon": -73.9299954 }, + { "lat": 40.7708638, "lon": -73.9299088 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "name": "30th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 829848652, + "bounds": { + "minlat": 40.7719461, + "minlon": -73.9301480, + "maxlat": 40.7735529, + "maxlon": -73.9299279 + }, + "nodes": [ + 7745197946, + 2073751525, + 42926468, + 2459401746, + 2891717712, + 2302476352, + 7733683731 + ], + "geometry": [ + { "lat": 40.7719461, "lon": -73.9301480 }, + { "lat": 40.7720501, "lon": -73.9301338 }, + { "lat": 40.7721139, "lon": -73.9301250 }, + { "lat": 40.7721868, "lon": -73.9301151 }, + { "lat": 40.7725627, "lon": -73.9300636 }, + { "lat": 40.7735095, "lon": -73.9299339 }, + { "lat": 40.7735529, "lon": -73.9299279 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 829848653, + "bounds": { + "minlat": 40.7735989, + "minlon": -73.9298869, + "maxlat": 40.7758095, + "maxlon": -73.9287239 + }, + "nodes": [ + 7745197950, + 7745197944, + 7787257331, + 7768474046, + 42861252, + 7689145475, + 7768474043, + 7689168898, + 42849847 + ], + "geometry": [ + { "lat": 40.7735989, "lon": -73.9298869 }, + { "lat": 40.7736689, "lon": -73.9298362 }, + { "lat": 40.7749622, "lon": -73.9291690 }, + { "lat": 40.7751258, "lon": -73.9290846 }, + { "lat": 40.7751777, "lon": -73.9290578 }, + { "lat": 40.7752164, "lon": -73.9290373 }, + { "lat": 40.7752906, "lon": -73.9289981 }, + { "lat": 40.7756653, "lon": -73.9287936 }, + { "lat": 40.7758095, "lon": -73.9287239 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "name": "12th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 830004102, + "bounds": { + "minlat": 40.7732357, + "minlon": -73.9323194, + "maxlat": 40.7733269, + "maxlon": -73.9320289 + }, + "nodes": [ + 7081691930, + 7081691932, + 7746623254 + ], + "geometry": [ + { "lat": 40.7733269, "lon": -73.9323194 }, + { "lat": 40.7732938, "lon": -73.9322138 }, + { "lat": 40.7732357, "lon": -73.9320289 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830004103, + "bounds": { + "minlat": 40.7705556, + "minlon": -73.9218037, + "maxlat": 40.7709386, + "maxlon": -73.9213267 + }, + "nodes": [ + 7746623256, + 7746623258, + 7746623257 + ], + "geometry": [ + { "lat": 40.7709386, "lon": -73.9213267 }, + { "lat": 40.7708765, "lon": -73.9214032 }, + { "lat": 40.7705556, "lon": -73.9218037 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830005443, + "bounds": { + "minlat": 40.7663695, + "minlon": -73.9207885, + "maxlat": 40.7676626, + "maxlon": -73.9199585 + }, + "nodes": [ + 6406731679, + 6406731479, + 42900323, + 2457398773, + 42849719 + ], + "geometry": [ + { "lat": 40.7663695, "lon": -73.9199585 }, + { "lat": 40.7665896, "lon": -73.9201042 }, + { "lat": 40.7668899, "lon": -73.9203016 }, + { "lat": 40.7675530, "lon": -73.9207151 }, + { "lat": 40.7676626, "lon": -73.9207885 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Newtown Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 830006571, + "bounds": { + "minlat": 40.7634701, + "minlon": -73.9107855, + "maxlat": 40.7636445, + "maxlon": -73.9104011 + }, + "nodes": [ + 4971251537, + 8599156652, + 7746622569 + ], + "geometry": [ + { "lat": 40.7636445, "lon": -73.9107855 }, + { "lat": 40.7636182, "lon": -73.9107276 }, + { "lat": 40.7634701, "lon": -73.9104011 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830006572, + "bounds": { + "minlat": 40.7625508, + "minlon": -73.9111253, + "maxlat": 40.7634701, + "maxlon": -73.9104011 + }, + "nodes": [ + 7746622569, + 7746622570 + ], + "geometry": [ + { "lat": 40.7634701, "lon": -73.9104011 }, + { "lat": 40.7625508, "lon": -73.9111253 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830006573, + "bounds": { + "minlat": 40.7625508, + "minlon": -73.9115273, + "maxlat": 40.7627325, + "maxlon": -73.9111253 + }, + "nodes": [ + 7746622571, + 8599211027, + 7746622570 + ], + "geometry": [ + { "lat": 40.7627325, "lon": -73.9115273 }, + { "lat": 40.7627072, "lon": -73.9114712 }, + { "lat": 40.7625508, "lon": -73.9111253 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830006574, + "bounds": { + "minlat": 40.7631242, + "minlon": -73.9122236, + "maxlat": 40.7632280, + "maxlon": -73.9119883 + }, + "nodes": [ + 7048074369, + 7048074370, + 7746622572 + ], + "geometry": [ + { "lat": 40.7632280, "lon": -73.9122236 }, + { "lat": 40.7631996, "lon": -73.9121593 }, + { "lat": 40.7631242, "lon": -73.9119883 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 830008325, + "bounds": { + "minlat": 40.7728683, + "minlon": -73.9215314, + "maxlat": 40.7740333, + "maxlon": -73.9198767 + }, + "nodes": [ + 3025036824, + 7787345534, + 3025036822, + 3025036821, + 7787345583, + 7746651021, + 7787351801, + 3025036818, + 3025036814, + 7787351851, + 7746651032, + 7787345555, + 3025036811 + ], + "geometry": [ + { "lat": 40.7740333, "lon": -73.9215314 }, + { "lat": 40.7739940, "lon": -73.9214759 }, + { "lat": 40.7738374, "lon": -73.9212545 }, + { "lat": 40.7737401, "lon": -73.9211171 }, + { "lat": 40.7735881, "lon": -73.9209023 }, + { "lat": 40.7735435, "lon": -73.9208393 }, + { "lat": 40.7735090, "lon": -73.9207901 }, + { "lat": 40.7733534, "lon": -73.9205683 }, + { "lat": 40.7732543, "lon": -73.9204271 }, + { "lat": 40.7730995, "lon": -73.9202064 }, + { "lat": 40.7730603, "lon": -73.9201504 }, + { "lat": 40.7730263, "lon": -73.9201019 }, + { "lat": 40.7728683, "lon": -73.9198767 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830008328, + "bounds": { + "minlat": 40.7760193, + "minlon": -73.9201567, + "maxlat": 40.7772831, + "maxlon": -73.9185535 + }, + "nodes": [ + 6908562526, + 6908562525, + 7746651022, + 7746651023, + 6908562517, + 6908562516 + ], + "geometry": [ + { "lat": 40.7772831, "lon": -73.9188373 }, + { "lat": 40.7772401, "lon": -73.9187742 }, + { "lat": 40.7770897, "lon": -73.9185535 }, + { "lat": 40.7760193, "lon": -73.9198865 }, + { "lat": 40.7761519, "lon": -73.9200853 }, + { "lat": 40.7761996, "lon": -73.9201567 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 830008331, + "bounds": { + "minlat": 40.7776707, + "minlon": -73.9213948, + "maxlat": 40.7779652, + "maxlon": -73.9209603 + }, + "nodes": [ + 7746651025, + 11107942804, + 7746651029 + ], + "geometry": [ + { "lat": 40.7779652, "lon": -73.9213948 }, + { "lat": 40.7779063, "lon": -73.9213079 }, + { "lat": 40.7776707, "lon": -73.9209603 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830008332, + "bounds": { + "minlat": 40.7777247, + "minlon": -73.9216803, + "maxlat": 40.7779652, + "maxlon": -73.9213948 + }, + "nodes": [ + 7746651025, + 7746651031, + 7746651026 + ], + "geometry": [ + { "lat": 40.7779652, "lon": -73.9213948 }, + { "lat": 40.7777664, "lon": -73.9216307 }, + { "lat": 40.7777247, "lon": -73.9216803 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830008333, + "bounds": { + "minlat": 40.7781859, + "minlon": -73.9207483, + "maxlat": 40.7784778, + "maxlon": -73.9203277 + }, + "nodes": [ + 7746651027, + 7746651028 + ], + "geometry": [ + { "lat": 40.7784778, "lon": -73.9207483 }, + { "lat": 40.7781859, "lon": -73.9203277 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 830011953, + "bounds": { + "minlat": 40.7827424, + "minlon": -73.9149692, + "maxlat": 40.7830720, + "maxlon": -73.9144859 + }, + "nodes": [ + 2298768295, + 7746695027, + 8335881711, + 7746694995 + ], + "geometry": [ + { "lat": 40.7830720, "lon": -73.9149692 }, + { "lat": 40.7830324, "lon": -73.9149112 }, + { "lat": 40.7830155, "lon": -73.9148865 }, + { "lat": 40.7827424, "lon": -73.9144859 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830011954, + "bounds": { + "minlat": 40.7835016, + "minlon": -73.9151161, + "maxlat": 40.7839629, + "maxlon": -73.9144452 + }, + "nodes": [ + 7746694996, + 7746694999, + 8335881708, + 7746694998, + 7746694997 + ], + "geometry": [ + { "lat": 40.7839629, "lon": -73.9151161 }, + { "lat": 40.7839208, "lon": -73.9150549 }, + { "lat": 40.7838883, "lon": -73.9150076 }, + { "lat": 40.7835469, "lon": -73.9145111 }, + { "lat": 40.7835016, "lon": -73.9144452 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 830011955, + "bounds": { + "minlat": 40.7840000, + "minlon": -73.9154799, + "maxlat": 40.7842781, + "maxlon": -73.9150704 + }, + "nodes": [ + 7746695000, + 7746695028, + 7746695001 + ], + "geometry": [ + { "lat": 40.7842781, "lon": -73.9154799 }, + { "lat": 40.7840436, "lon": -73.9151345 }, + { "lat": 40.7840000, "lon": -73.9150704 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830011956, + "bounds": { + "minlat": 40.7839961, + "minlon": -73.9133585, + "maxlat": 40.7843925, + "maxlon": -73.9127981 + }, + "nodes": [ + 7746695002, + 7746695004, + 7746695003 + ], + "geometry": [ + { "lat": 40.7843925, "lon": -73.9133585 }, + { "lat": 40.7843520, "lon": -73.9133012 }, + { "lat": 40.7839961, "lon": -73.9127981 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830011957, + "bounds": { + "minlat": 40.7786480, + "minlon": -73.9085582, + "maxlat": 40.7796382, + "maxlon": -73.9073978 + }, + "nodes": [ + 7746695005, + 3144540461 + ], + "geometry": [ + { "lat": 40.7796382, "lon": -73.9073978 }, + { "lat": 40.7786480, "lon": -73.9085582 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 830011958, + "bounds": { + "minlat": 40.7757724, + "minlon": -73.9095239, + "maxlat": 40.7760380, + "maxlon": -73.9091199 + }, + "nodes": [ + 7746695006, + 9776116451, + 7746695007 + ], + "geometry": [ + { "lat": 40.7760380, "lon": -73.9095239 }, + { "lat": 40.7758229, "lon": -73.9091967 }, + { "lat": 40.7757724, "lon": -73.9091199 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 830011959, + "bounds": { + "minlat": 40.7760380, + "minlon": -73.9095239, + "maxlat": 40.7762240, + "maxlon": -73.9093111 + }, + "nodes": [ + 7746695006, + 7746695008 + ], + "geometry": [ + { "lat": 40.7760380, "lon": -73.9095239 }, + { "lat": 40.7762240, "lon": -73.9093111 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830011960, + "bounds": { + "minlat": 40.7759426, + "minlon": -73.9093111, + "maxlat": 40.7762240, + "maxlon": -73.9089121 + }, + "nodes": [ + 7746695008, + 9776116452, + 5482160079 + ], + "geometry": [ + { "lat": 40.7762240, "lon": -73.9093111 }, + { "lat": 40.7759981, "lon": -73.9089908 }, + { "lat": 40.7759426, "lon": -73.9089121 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 830011961, + "bounds": { + "minlat": 40.7750328, + "minlon": -73.9104407, + "maxlat": 40.7753151, + "maxlon": -73.9100237 + }, + "nodes": [ + 7746695010, + 7784017512, + 7746695009 + ], + "geometry": [ + { "lat": 40.7750328, "lon": -73.9100237 }, + { "lat": 40.7750844, "lon": -73.9101000 }, + { "lat": 40.7753151, "lon": -73.9104407 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 830011962, + "bounds": { + "minlat": 40.7749082, + "minlon": -73.9105829, + "maxlat": 40.7751902, + "maxlon": -73.9101754 + }, + "nodes": [ + 7746695011, + 7784004980, + 7746695012 + ], + "geometry": [ + { "lat": 40.7751902, "lon": -73.9105829 }, + { "lat": 40.7749625, "lon": -73.9102538 }, + { "lat": 40.7749082, "lon": -73.9101754 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 830011963, + "bounds": { + "minlat": 40.7751902, + "minlon": -73.9105829, + "maxlat": 40.7753151, + "maxlon": -73.9104407 + }, + "nodes": [ + 7746695009, + 7746695011 + ], + "geometry": [ + { "lat": 40.7753151, "lon": -73.9104407 }, + { "lat": 40.7751902, "lon": -73.9105829 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 830011964, + "bounds": { + "minlat": 40.7745024, + "minlon": -73.9109007, + "maxlat": 40.7746641, + "maxlon": -73.9106711 + }, + "nodes": [ + 7746695013, + 7784004954, + 7746695014 + ], + "geometry": [ + { "lat": 40.7746641, "lon": -73.9109007 }, + { "lat": 40.7745651, "lon": -73.9107602 }, + { "lat": 40.7745024, "lon": -73.9106711 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830011965, + "bounds": { + "minlat": 40.7738695, + "minlon": -73.9119149, + "maxlat": 40.7744475, + "maxlon": -73.9114440 + }, + "nodes": [ + 7746695015, + 7746695018, + 7784017597, + 7746695016 + ], + "geometry": [ + { "lat": 40.7744475, "lon": -73.9119149 }, + { "lat": 40.7743161, "lon": -73.9118079 }, + { "lat": 40.7739401, "lon": -73.9115015 }, + { "lat": 40.7738695, "lon": -73.9114440 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830011966, + "bounds": { + "minlat": 40.7744475, + "minlon": -73.9119149, + "maxlat": 40.7747176, + "maxlon": -73.9115971 + }, + "nodes": [ + 7746695017, + 7746695015 + ], + "geometry": [ + { "lat": 40.7747176, "lon": -73.9115971 }, + { "lat": 40.7744475, "lon": -73.9119149 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830011967, + "bounds": { + "minlat": 40.7743161, + "minlon": -73.9118079, + "maxlat": 40.7745623, + "maxlon": -73.9115126 + }, + "nodes": [ + 7746695018, + 7746695020 + ], + "geometry": [ + { "lat": 40.7743161, "lon": -73.9118079 }, + { "lat": 40.7745623, "lon": -73.9115126 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830011968, + "bounds": { + "minlat": 40.7745623, + "minlon": -73.9115971, + "maxlat": 40.7747176, + "maxlon": -73.9115126 + }, + "nodes": [ + 7746695020, + 7746695019, + 7746695017 + ], + "geometry": [ + { "lat": 40.7745623, "lon": -73.9115126 }, + { "lat": 40.7746689, "lon": -73.9115180 }, + { "lat": 40.7747176, "lon": -73.9115971 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022077, + "bounds": { + "minlat": 40.7673337, + "minlon": -73.9268099, + "maxlat": 40.7680386, + "maxlon": -73.9257018 + }, + "nodes": [ + 7950032312, + 7950032311, + 4991520415, + 7950032316, + 7950032313, + 6908633268, + 6908633269 + ], + "geometry": [ + { "lat": 40.7680386, "lon": -73.9266771 }, + { "lat": 40.7678658, "lon": -73.9268099 }, + { "lat": 40.7678366, "lon": -73.9268052 }, + { "lat": 40.7676313, "lon": -73.9263541 }, + { "lat": 40.7673877, "lon": -73.9258189 }, + { "lat": 40.7673735, "lon": -73.9257877 }, + { "lat": 40.7673337, "lon": -73.9257018 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830022078, + "bounds": { + "minlat": 40.7760867, + "minlon": -73.9218508, + "maxlat": 40.7763504, + "maxlon": -73.9214654 + }, + "nodes": [ + 7746705649, + 7783802642, + 11107973906 + ], + "geometry": [ + { "lat": 40.7763504, "lon": -73.9218508 }, + { "lat": 40.7762834, "lon": -73.9217529 }, + { "lat": 40.7760867, "lon": -73.9214654 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022080, + "bounds": { + "minlat": 40.7678792, + "minlon": -73.9293332, + "maxlat": 40.7679810, + "maxlon": -73.9291146 + }, + "nodes": [ + 5487911869, + 6452880147, + 7746705655 + ], + "geometry": [ + { "lat": 40.7679810, "lon": -73.9293332 }, + { "lat": 40.7679246, "lon": -73.9292120 }, + { "lat": 40.7678792, "lon": -73.9291146 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830022081, + "bounds": { + "minlat": 40.7679635, + "minlon": -73.9290006, + "maxlat": 40.7681121, + "maxlon": -73.9288845 + }, + "nodes": [ + 7746705656, + 7746705658, + 7746705657 + ], + "geometry": [ + { "lat": 40.7681121, "lon": -73.9288845 }, + { "lat": 40.7680684, "lon": -73.9289186 }, + { "lat": 40.7679635, "lon": -73.9290006 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830022082, + "bounds": { + "minlat": 40.7664280, + "minlon": -73.9309410, + "maxlat": 40.7665920, + "maxlon": -73.9305825 + }, + "nodes": [ + 7746705659, + 7748157094, + 7746705660 + ], + "geometry": [ + { "lat": 40.7665920, "lon": -73.9309410 }, + { "lat": 40.7664803, "lon": -73.9306984 }, + { "lat": 40.7664280, "lon": -73.9305825 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022083, + "bounds": { + "minlat": 40.7662731, + "minlon": -73.9312682, + "maxlat": 40.7665920, + "maxlon": -73.9309410 + }, + "nodes": [ + 7746705659, + 8041208308, + 8041208311, + 7788539483, + 5487911880 + ], + "geometry": [ + { "lat": 40.7665920, "lon": -73.9309410 }, + { "lat": 40.7665869, "lon": -73.9309789 }, + { "lat": 40.7665696, "lon": -73.9310032 }, + { "lat": 40.7663301, "lon": -73.9312202 }, + { "lat": 40.7662731, "lon": -73.9312682 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022085, + "bounds": { + "minlat": 40.7634305, + "minlon": -73.9328052, + "maxlat": 40.7637028, + "maxlon": -73.9322248 + }, + "nodes": [ + 7746705668, + 7746705671, + 7746705669 + ], + "geometry": [ + { "lat": 40.7637028, "lon": -73.9328052 }, + { "lat": 40.7635669, "lon": -73.9325163 }, + { "lat": 40.7634305, "lon": -73.9322248 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022086, + "bounds": { + "minlat": 40.7635669, + "minlon": -73.9325163, + "maxlat": 40.7637564, + "maxlon": -73.9323686 + }, + "nodes": [ + 7746705670, + 7746705672, + 7746705671 + ], + "geometry": [ + { "lat": 40.7637564, "lon": -73.9323686 }, + { "lat": 40.7636705, "lon": -73.9324355 }, + { "lat": 40.7635669, "lon": -73.9325163 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022087, + "bounds": { + "minlat": 40.7631492, + "minlon": -73.9316290, + "maxlat": 40.7633373, + "maxlon": -73.9314819 + }, + "nodes": [ + 7241615156, + 7746758485, + 7746705673 + ], + "geometry": [ + { "lat": 40.7633373, "lon": -73.9314819 }, + { "lat": 40.7632568, "lon": -73.9315448 }, + { "lat": 40.7631492, "lon": -73.9316290 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022088, + "bounds": { + "minlat": 40.7622480, + "minlon": -73.9324595, + "maxlat": 40.7623821, + "maxlon": -73.9321645 + }, + "nodes": [ + 7746705674, + 7189336917, + 7746705675 + ], + "geometry": [ + { "lat": 40.7623821, "lon": -73.9324595 }, + { "lat": 40.7623181, "lon": -73.9323187 }, + { "lat": 40.7622480, "lon": -73.9321645 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022089, + "bounds": { + "minlat": 40.7618447, + "minlon": -73.9316294, + "maxlat": 40.7619758, + "maxlon": -73.9313410 + }, + "nodes": [ + 7746705676, + 7161757928, + 7746705677 + ], + "geometry": [ + { "lat": 40.7619758, "lon": -73.9316294 }, + { "lat": 40.7619258, "lon": -73.9315195 }, + { "lat": 40.7618447, "lon": -73.9313410 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022090, + "bounds": { + "minlat": 40.7596052, + "minlon": -73.9372602, + "maxlat": 40.7597185, + "maxlon": -73.9370559 + }, + "nodes": [ + 3569402152, + 6452752270, + 3569402143 + ], + "geometry": [ + { "lat": 40.7597185, "lon": -73.9372602 }, + { "lat": 40.7596695, "lon": -73.9371718 }, + { "lat": 40.7596052, "lon": -73.9370559 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022091, + "bounds": { + "minlat": 40.7564381, + "minlon": -73.9389399, + "maxlat": 40.7567402, + "maxlon": -73.9386727 + }, + "nodes": [ + 7746705678, + 5487837583, + 7746705679 + ], + "geometry": [ + { "lat": 40.7567402, "lon": -73.9386727 }, + { "lat": 40.7565308, "lon": -73.9388579 }, + { "lat": 40.7564381, "lon": -73.9389399 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022092, + "bounds": { + "minlat": 40.7567285, + "minlon": -73.9397197, + "maxlat": 40.7568353, + "maxlon": -73.9395100 + }, + "nodes": [ + 7746705681, + 7768199833, + 8332419156 + ], + "geometry": [ + { "lat": 40.7568353, "lon": -73.9397197 }, + { "lat": 40.7567676, "lon": -73.9395867 }, + { "lat": 40.7567285, "lon": -73.9395100 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022093, + "bounds": { + "minlat": 40.7566380, + "minlon": -73.9386727, + "maxlat": 40.7567402, + "maxlon": -73.9384809 + }, + "nodes": [ + 7746705678, + 7792360272, + 7746705682 + ], + "geometry": [ + { "lat": 40.7567402, "lon": -73.9386727 }, + { "lat": 40.7566799, "lon": -73.9385595 }, + { "lat": 40.7566380, "lon": -73.9384809 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830022094, + "bounds": { + "minlat": 40.7620878, + "minlon": -73.9338091, + "maxlat": 40.7625544, + "maxlon": -73.9334052 + }, + "nodes": [ + 7111672672, + 7746705683, + 7111672673 + ], + "geometry": [ + { "lat": 40.7625544, "lon": -73.9334052 }, + { "lat": 40.7624837, "lon": -73.9334664 }, + { "lat": 40.7620878, "lon": -73.9338091 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830029055, + "bounds": { + "minlat": 40.7544551, + "minlon": -73.9410941, + "maxlat": 40.7547649, + "maxlon": -73.9404921 + }, + "nodes": [ + 7746742279, + 7781269203, + 7121745978 + ], + "geometry": [ + { "lat": 40.7547649, "lon": -73.9410941 }, + { "lat": 40.7544897, "lon": -73.9405593 }, + { "lat": 40.7544551, "lon": -73.9404921 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830029056, + "bounds": { + "minlat": 40.7542872, + "minlon": -73.9414433, + "maxlat": 40.7547657, + "maxlon": -73.9410941 + }, + "nodes": [ + 7746742279, + 13701183096, + 13701183097, + 13701218302, + 13701183100, + 13701183099, + 13701218301, + 13701218307, + 13701218306, + 7746742280 + ], + "geometry": [ + { "lat": 40.7547649, "lon": -73.9410941 }, + { "lat": 40.7547657, "lon": -73.9411084 }, + { "lat": 40.7547606, "lon": -73.9411204 }, + { "lat": 40.7545759, "lon": -73.9412854 }, + { "lat": 40.7545660, "lon": -73.9412884 }, + { "lat": 40.7545163, "lon": -73.9412933 }, + { "lat": 40.7545058, "lon": -73.9412961 }, + { "lat": 40.7543260, "lon": -73.9414383 }, + { "lat": 40.7543065, "lon": -73.9414433 }, + { "lat": 40.7542872, "lon": -73.9414321 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830029057, + "bounds": { + "minlat": 40.7540092, + "minlon": -73.9414321, + "maxlat": 40.7542872, + "maxlon": -73.9409012 + }, + "nodes": [ + 7746742280, + 13701218305, + 7781269202, + 7121745969 + ], + "geometry": [ + { "lat": 40.7542872, "lon": -73.9414321 }, + { "lat": 40.7541896, "lon": -73.9412510 }, + { "lat": 40.7540460, "lon": -73.9409756 }, + { "lat": 40.7540092, "lon": -73.9409012 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830029058, + "bounds": { + "minlat": 40.7528058, + "minlon": -73.9433786, + "maxlat": 40.7530102, + "maxlon": -73.9429831 + }, + "nodes": [ + 7746742283, + 7781284582, + 7746742284 + ], + "geometry": [ + { "lat": 40.7530102, "lon": -73.9433786 }, + { "lat": 40.7529456, "lon": -73.9432535 }, + { "lat": 40.7528058, "lon": -73.9429831 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830029059, + "bounds": { + "minlat": 40.7490822, + "minlon": -73.9472792, + "maxlat": 40.7491368, + "maxlon": -73.9470311 + }, + "nodes": [ + 7746796385, + 8334173154, + 276320206 + ], + "geometry": [ + { "lat": 40.7491368, "lon": -73.9472792 }, + { "lat": 40.7491079, "lon": -73.9471509 }, + { "lat": 40.7490822, "lon": -73.9470311 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830029680, + "bounds": { + "minlat": 40.7389715, + "minlon": -73.9502335, + "maxlat": 40.7394574, + "maxlon": -73.9496850 + }, + "nodes": [ + 6991706311, + 6991706314 + ], + "geometry": [ + { "lat": 40.7394574, "lon": -73.9502335 }, + { "lat": 40.7389715, "lon": -73.9496850 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830029681, + "bounds": { + "minlat": 40.7383634, + "minlon": -73.9496850, + "maxlat": 40.7389715, + "maxlon": -73.9478795 + }, + "nodes": [ + 6991706314, + 6991706316 + ], + "geometry": [ + { "lat": 40.7389715, "lon": -73.9496850 }, + { "lat": 40.7383634, "lon": -73.9478795 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830029682, + "bounds": { + "minlat": 40.7383634, + "minlon": -73.9478795, + "maxlat": 40.7383793, + "maxlon": -73.9472934 + }, + "nodes": [ + 6991706316, + 6991706317 + ], + "geometry": [ + { "lat": 40.7383634, "lon": -73.9478795 }, + { "lat": 40.7383793, "lon": -73.9472934 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830031800, + "bounds": { + "minlat": 40.7510468, + "minlon": -73.9520088, + "maxlat": 40.7511544, + "maxlon": -73.9517848 + }, + "nodes": [ + 7746811431, + 6452716582, + 2476134119 + ], + "geometry": [ + { "lat": 40.7510468, "lon": -73.9517848 }, + { "lat": 40.7511144, "lon": -73.9519258 }, + { "lat": 40.7511544, "lon": -73.9520088 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830031801, + "bounds": { + "minlat": 40.7505545, + "minlon": -73.9520602, + "maxlat": 40.7507715, + "maxlon": -73.9520101 + }, + "nodes": [ + 6815675999, + 9798387021, + 7746811432 + ], + "geometry": [ + { "lat": 40.7505545, "lon": -73.9520602 }, + { "lat": 40.7506162, "lon": -73.9520409 }, + { "lat": 40.7507715, "lon": -73.9520101 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830031802, + "bounds": { + "minlat": 40.7507715, + "minlon": -73.9520101, + "maxlat": 40.7510468, + "maxlon": -73.9517848 + }, + "nodes": [ + 7746811432, + 7746811431 + ], + "geometry": [ + { "lat": 40.7507715, "lon": -73.9520101 }, + { "lat": 40.7510468, "lon": -73.9517848 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830031803, + "bounds": { + "minlat": 40.7503843, + "minlon": -73.9522543, + "maxlat": 40.7503852, + "maxlon": -73.9520330 + }, + "nodes": [ + 2476134120, + 6452716574, + 7746811434 + ], + "geometry": [ + { "lat": 40.7503852, "lon": -73.9522543 }, + { "lat": 40.7503849, "lon": -73.9521481 }, + { "lat": 40.7503843, "lon": -73.9520330 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830036873, + "bounds": { + "minlat": 40.7493419, + "minlon": -73.9508779, + "maxlat": 40.7495762, + "maxlon": -73.9508375 + }, + "nodes": [ + 7746800889, + 11622964593, + 7746800890 + ], + "geometry": [ + { "lat": 40.7495762, "lon": -73.9508375 }, + { "lat": 40.7495191, "lon": -73.9508473 }, + { "lat": 40.7493419, "lon": -73.9508779 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830036874, + "bounds": { + "minlat": 40.7493016, + "minlon": -73.9508779, + "maxlat": 40.7493419, + "maxlon": -73.9504573 + }, + "nodes": [ + 7746800890, + 7746800891 + ], + "geometry": [ + { "lat": 40.7493419, "lon": -73.9508779 }, + { "lat": 40.7493016, "lon": -73.9504573 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830038304, + "bounds": { + "minlat": 40.7675449, + "minlon": -73.9383905, + "maxlat": 40.7681813, + "maxlon": -73.9369194 + }, + "nodes": [ + 7746848050, + 11427630537, + 7746848051, + 7746848052, + 7746848049, + 1727893454, + 1727893487, + 1727893516, + 7746848056, + 7746848057, + 1727893637, + 7746848048 + ], + "geometry": [ + { "lat": 40.7678102, "lon": -73.9371433 }, + { "lat": 40.7677069, "lon": -73.9369586 }, + { "lat": 40.7676922, "lon": -73.9369462 }, + { "lat": 40.7676439, "lon": -73.9369194 }, + { "lat": 40.7675449, "lon": -73.9371964 }, + { "lat": 40.7676112, "lon": -73.9373257 }, + { "lat": 40.7677024, "lon": -73.9374973 }, + { "lat": 40.7678003, "lon": -73.9376789 }, + { "lat": 40.7678970, "lon": -73.9378556 }, + { "lat": 40.7679948, "lon": -73.9380397 }, + { "lat": 40.7680865, "lon": -73.9382098 }, + { "lat": 40.7681813, "lon": -73.9383905 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 830045115, + "bounds": { + "minlat": 40.7664007, + "minlon": -73.9393542, + "maxlat": 40.7665503, + "maxlon": -73.9392350 + }, + "nodes": [ + 2799400614, + 7746871138, + 7748157148, + 7746871136 + ], + "geometry": [ + { "lat": 40.7665503, "lon": -73.9393542 }, + { "lat": 40.7664694, "lon": -73.9392886 }, + { "lat": 40.7664430, "lon": -73.9392776 }, + { "lat": 40.7664007, "lon": -73.9392350 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830045116, + "bounds": { + "minlat": 40.7664007, + "minlon": -73.9392350, + "maxlat": 40.7665678, + "maxlon": -73.9387984 + }, + "nodes": [ + 7746871136, + 7746871137 + ], + "geometry": [ + { "lat": 40.7664007, "lon": -73.9392350 }, + { "lat": 40.7665678, "lon": -73.9387984 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830045117, + "bounds": { + "minlat": 40.7643010, + "minlon": -73.9408560, + "maxlat": 40.7645987, + "maxlon": -73.9399882 + }, + "nodes": [ + 7746871139, + 7746871142, + 7746871141, + 7746871140 + ], + "geometry": [ + { "lat": 40.7645987, "lon": -73.9408560 }, + { "lat": 40.7645624, "lon": -73.9407536 }, + { "lat": 40.7643241, "lon": -73.9400558 }, + { "lat": 40.7643010, "lon": -73.9399882 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045118, + "bounds": { + "minlat": 40.7606580, + "minlon": -73.9451887, + "maxlat": 40.7613588, + "maxlon": -73.9433040 + }, + "nodes": [ + 42815748, + 7746871143, + 8816394405, + 7746871157, + 7746871151, + 7746871179 + ], + "geometry": [ + { "lat": 40.7606580, "lon": -73.9433040 }, + { "lat": 40.7606968, "lon": -73.9434121 }, + { "lat": 40.7607138, "lon": -73.9434607 }, + { "lat": 40.7607600, "lon": -73.9435925 }, + { "lat": 40.7608434, "lon": -73.9438307 }, + { "lat": 40.7613588, "lon": -73.9451887 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045119, + "bounds": { + "minlat": 40.7605274, + "minlon": -73.9437181, + "maxlat": 40.7608484, + "maxlon": -73.9435438 + }, + "nodes": [ + 7746871144, + 7746871157, + 7746871145 + ], + "geometry": [ + { "lat": 40.7608484, "lon": -73.9435438 }, + { "lat": 40.7607600, "lon": -73.9435925 }, + { "lat": 40.7605274, "lon": -73.9437181 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045120, + "bounds": { + "minlat": 40.7608484, + "minlon": -73.9435438, + "maxlat": 40.7615696, + "maxlon": -73.9430623 + }, + "nodes": [ + 7746871146, + 7746871144 + ], + "geometry": [ + { "lat": 40.7615696, "lon": -73.9430623 }, + { "lat": 40.7608484, "lon": -73.9435438 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045121, + "bounds": { + "minlat": 40.7615696, + "minlon": -73.9431348, + "maxlat": 40.7618053, + "maxlon": -73.9430623 + }, + "nodes": [ + 7746871147, + 7746871148, + 7746871146 + ], + "geometry": [ + { "lat": 40.7618053, "lon": -73.9431348 }, + { "lat": 40.7617230, "lon": -73.9431095 }, + { "lat": 40.7615696, "lon": -73.9430623 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045122, + "bounds": { + "minlat": 40.7616570, + "minlon": -73.9434955, + "maxlat": 40.7617230, + "maxlon": -73.9431095 + }, + "nodes": [ + 7746871149, + 7746871175, + 7746871148 + ], + "geometry": [ + { "lat": 40.7616570, "lon": -73.9434955 }, + { "lat": 40.7616637, "lon": -73.9434560 }, + { "lat": 40.7617230, "lon": -73.9431095 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830045123, + "bounds": { + "minlat": 40.7611460, + "minlon": -73.9438831, + "maxlat": 40.7616570, + "maxlon": -73.9434955 + }, + "nodes": [ + 7746871149, + 7746871155, + 7746871150 + ], + "geometry": [ + { "lat": 40.7616570, "lon": -73.9434955 }, + { "lat": 40.7615906, "lon": -73.9435459 }, + { "lat": 40.7611460, "lon": -73.9438831 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830045124, + "bounds": { + "minlat": 40.7608434, + "minlon": -73.9438307, + "maxlat": 40.7609632, + "maxlon": -73.9437597 + }, + "nodes": [ + 7746871151, + 7746871152 + ], + "geometry": [ + { "lat": 40.7608434, "lon": -73.9438307 }, + { "lat": 40.7609632, "lon": -73.9437597 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830045125, + "bounds": { + "minlat": 40.7610627, + "minlon": -73.9445443, + "maxlat": 40.7613817, + "maxlon": -73.9438239 + }, + "nodes": [ + 7746871153, + 7746871154 + ], + "geometry": [ + { "lat": 40.7613817, "lon": -73.9445443 }, + { "lat": 40.7610627, "lon": -73.9438239 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830045126, + "bounds": { + "minlat": 40.7609632, + "minlon": -73.9438831, + "maxlat": 40.7611460, + "maxlon": -73.9437597 + }, + "nodes": [ + 7746871150, + 7746871154, + 7746871152 + ], + "geometry": [ + { "lat": 40.7611460, "lon": -73.9438831 }, + { "lat": 40.7610627, "lon": -73.9438239 }, + { "lat": 40.7609632, "lon": -73.9437597 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830045127, + "bounds": { + "minlat": 40.7615026, + "minlon": -73.9435459, + "maxlat": 40.7615906, + "maxlon": -73.9433225 + }, + "nodes": [ + 7746871155, + 7746871156 + ], + "geometry": [ + { "lat": 40.7615906, "lon": -73.9435459 }, + { "lat": 40.7615026, "lon": -73.9433225 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830045128, + "bounds": { + "minlat": 40.7594422, + "minlon": -73.9445008, + "maxlat": 40.7605274, + "maxlon": -73.9437181 + }, + "nodes": [ + 7746871145, + 7746871167, + 7746871158 + ], + "geometry": [ + { "lat": 40.7605274, "lon": -73.9437181 }, + { "lat": 40.7597991, "lon": -73.9442434 }, + { "lat": 40.7594422, "lon": -73.9445008 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045129, + "bounds": { + "minlat": 40.7580503, + "minlon": -73.9480550, + "maxlat": 40.7605543, + "maxlon": -73.9460407 + }, + "nodes": [ + 7746871159, + 7746871162, + 7746871160 + ], + "geometry": [ + { "lat": 40.7605543, "lon": -73.9460407 }, + { "lat": 40.7588840, "lon": -73.9473843 }, + { "lat": 40.7580503, "lon": -73.9480550 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045130, + "bounds": { + "minlat": 40.7573696, + "minlon": -73.9480550, + "maxlat": 40.7580503, + "maxlon": -73.9467407 + }, + "nodes": [ + 7746871160, + 7746871161 + ], + "geometry": [ + { "lat": 40.7580503, "lon": -73.9480550 }, + { "lat": 40.7573696, "lon": -73.9467407 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045131, + "bounds": { + "minlat": 40.7580245, + "minlon": -73.9473843, + "maxlat": 40.7588840, + "maxlon": -73.9455667 + }, + "nodes": [ + 7746871162, + 5487838023, + 8816394406, + 6452708750, + 5487838037 + ], + "geometry": [ + { "lat": 40.7588840, "lon": -73.9473843 }, + { "lat": 40.7583370, "lon": -73.9461712 }, + { "lat": 40.7581014, "lon": -73.9457110 }, + { "lat": 40.7580790, "lon": -73.9456670 }, + { "lat": 40.7580245, "lon": -73.9455667 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045132, + "bounds": { + "minlat": 40.7602274, + "minlon": -73.9458204, + "maxlat": 40.7606002, + "maxlon": -73.9449326 + }, + "nodes": [ + 7746871164, + 7746871169, + 7746871165 + ], + "geometry": [ + { "lat": 40.7606002, "lon": -73.9458204 }, + { "lat": 40.7605292, "lon": -73.9456511 }, + { "lat": 40.7602274, "lon": -73.9449326 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045133, + "bounds": { + "minlat": 40.7599136, + "minlon": -73.9449326, + "maxlat": 40.7602274, + "maxlon": -73.9445423 + }, + "nodes": [ + 7746871165, + 7746871166 + ], + "geometry": [ + { "lat": 40.7602274, "lon": -73.9449326 }, + { "lat": 40.7599136, "lon": -73.9445423 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045134, + "bounds": { + "minlat": 40.7597991, + "minlon": -73.9445423, + "maxlat": 40.7599136, + "maxlon": -73.9442434 + }, + "nodes": [ + 7746871166, + 7746871167 + ], + "geometry": [ + { "lat": 40.7599136, "lon": -73.9445423 }, + { "lat": 40.7597991, "lon": -73.9442434 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045135, + "bounds": { + "minlat": 40.7605543, + "minlon": -73.9460407, + "maxlat": 40.7606002, + "maxlon": -73.9458204 + }, + "nodes": [ + 7746871164, + 7746871159 + ], + "geometry": [ + { "lat": 40.7606002, "lon": -73.9458204 }, + { "lat": 40.7605543, "lon": -73.9460407 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045136, + "bounds": { + "minlat": 40.7605292, + "minlon": -73.9456511, + "maxlat": 40.7607750, + "maxlon": -73.9454851 + }, + "nodes": [ + 7746871168, + 7746871169 + ], + "geometry": [ + { "lat": 40.7607750, "lon": -73.9454851 }, + { "lat": 40.7605292, "lon": -73.9456511 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830045137, + "bounds": { + "minlat": 40.7583070, + "minlon": -73.9455591, + "maxlat": 40.7587880, + "maxlon": -73.9450385 + }, + "nodes": [ + 5487837590, + 7746871171 + ], + "geometry": [ + { "lat": 40.7583070, "lon": -73.9455591 }, + { "lat": 40.7587880, "lon": -73.9450385 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045138, + "bounds": { + "minlat": 40.7587880, + "minlon": -73.9450385, + "maxlat": 40.7594422, + "maxlon": -73.9445008 + }, + "nodes": [ + 7746871171, + 7746871158 + ], + "geometry": [ + { "lat": 40.7587880, "lon": -73.9450385 }, + { "lat": 40.7594422, "lon": -73.9445008 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045139, + "bounds": { + "minlat": 40.7621585, + "minlon": -73.9448226, + "maxlat": 40.7625008, + "maxlon": -73.9440206 + }, + "nodes": [ + 7746871176, + 7746871178, + 7746871172 + ], + "geometry": [ + { "lat": 40.7625008, "lon": -73.9448226 }, + { "lat": 40.7623567, "lon": -73.9444851 }, + { "lat": 40.7621585, "lon": -73.9440206 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045140, + "bounds": { + "minlat": 40.7617755, + "minlon": -73.9440113, + "maxlat": 40.7620122, + "maxlon": -73.9434896 + }, + "nodes": [ + 7746871173, + 7746871174 + ], + "geometry": [ + { "lat": 40.7620122, "lon": -73.9440113 }, + { "lat": 40.7617755, "lon": -73.9434896 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045141, + "bounds": { + "minlat": 40.7620122, + "minlon": -73.9440206, + "maxlat": 40.7621585, + "maxlon": -73.9440113 + }, + "nodes": [ + 7746871172, + 7746871173 + ], + "geometry": [ + { "lat": 40.7621585, "lon": -73.9440206 }, + { "lat": 40.7620122, "lon": -73.9440113 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045142, + "bounds": { + "minlat": 40.7616637, + "minlon": -73.9434896, + "maxlat": 40.7617755, + "maxlon": -73.9434560 + }, + "nodes": [ + 7746871174, + 7746871175 + ], + "geometry": [ + { "lat": 40.7617755, "lon": -73.9434896 }, + { "lat": 40.7616637, "lon": -73.9434560 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045143, + "bounds": { + "minlat": 40.7616140, + "minlon": -73.9454449, + "maxlat": 40.7625008, + "maxlon": -73.9448226 + }, + "nodes": [ + 7746871176, + 7746871177 + ], + "geometry": [ + { "lat": 40.7625008, "lon": -73.9448226 }, + { "lat": 40.7616140, "lon": -73.9454449 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045144, + "bounds": { + "minlat": 40.7613588, + "minlon": -73.9451887, + "maxlat": 40.7623567, + "maxlon": -73.9444851 + }, + "nodes": [ + 7746871178, + 7746871180, + 7746871179 + ], + "geometry": [ + { "lat": 40.7623567, "lon": -73.9444851 }, + { "lat": 40.7614765, "lon": -73.9451057 }, + { "lat": 40.7613588, "lon": -73.9451887 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045145, + "bounds": { + "minlat": 40.7614765, + "minlon": -73.9454449, + "maxlat": 40.7616140, + "maxlon": -73.9451057 + }, + "nodes": [ + 7746871177, + 7746871180 + ], + "geometry": [ + { "lat": 40.7616140, "lon": -73.9454449 }, + { "lat": 40.7614765, "lon": -73.9451057 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830045146, + "bounds": { + "minlat": 40.7605543, + "minlon": -73.9463113, + "maxlat": 40.7606785, + "maxlon": -73.9460407 + }, + "nodes": [ + 7746871181, + 7746871159 + ], + "geometry": [ + { "lat": 40.7606785, "lon": -73.9463113 }, + { "lat": 40.7605543, "lon": -73.9460407 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830048323, + "bounds": { + "minlat": 40.7540775, + "minlon": -73.9493191, + "maxlat": 40.7542683, + "maxlon": -73.9485746 + }, + "nodes": [ + 7746891094, + 3785649075, + 2472695933 + ], + "geometry": [ + { "lat": 40.7540775, "lon": -73.9485746 }, + { "lat": 40.7542431, "lon": -73.9492162 }, + { "lat": 40.7542683, "lon": -73.9493191 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Queens Plaza South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 830048324, + "bounds": { + "minlat": 40.7524881, + "minlon": -73.9485753, + "maxlat": 40.7539772, + "maxlon": -73.9451046 + }, + "nodes": [ + 7746891093, + 42890426, + 42909227, + 8062562650, + 2629156113, + 42866903, + 276033444, + 3785649066, + 2472695915, + 3785649062 + ], + "geometry": [ + { "lat": 40.7539772, "lon": -73.9485753 }, + { "lat": 40.7539352, "lon": -73.9484560 }, + { "lat": 40.7535789, "lon": -73.9476435 }, + { "lat": 40.7532507, "lon": -73.9468898 }, + { "lat": 40.7532408, "lon": -73.9468670 }, + { "lat": 40.7531892, "lon": -73.9467482 }, + { "lat": 40.7528399, "lon": -73.9459348 }, + { "lat": 40.7526826, "lon": -73.9455709 }, + { "lat": 40.7525211, "lon": -73.9452241 }, + { "lat": 40.7524881, "lon": -73.9451046 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Queens Plaza South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 830048325, + "bounds": { + "minlat": 40.7513903, + "minlon": -73.9520160, + "maxlat": 40.7514932, + "maxlon": -73.9518048 + }, + "nodes": [ + 7746891096, + 6452708756, + 2462253817 + ], + "geometry": [ + { "lat": 40.7514932, "lon": -73.9520160 }, + { "lat": 40.7514396, "lon": -73.9519059 }, + { "lat": 40.7513903, "lon": -73.9518048 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830048326, + "bounds": { + "minlat": 40.7514841, + "minlon": -73.9522547, + "maxlat": 40.7515806, + "maxlon": -73.9520160 + }, + "nodes": [ + 7746891097, + 7746891098, + 7746891096 + ], + "geometry": [ + { "lat": 40.7515806, "lon": -73.9522547 }, + { "lat": 40.7514841, "lon": -73.9520696 }, + { "lat": 40.7514932, "lon": -73.9520160 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830048327, + "bounds": { + "minlat": 40.7514932, + "minlon": -73.9521243, + "maxlat": 40.7516623, + "maxlon": -73.9520160 + }, + "nodes": [ + 7746891099, + 7746891096 + ], + "geometry": [ + { "lat": 40.7516623, "lon": -73.9521243 }, + { "lat": 40.7514932, "lon": -73.9520160 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830048328, + "bounds": { + "minlat": 40.7515806, + "minlon": -73.9522547, + "maxlat": 40.7516844, + "maxlon": -73.9521690 + }, + "nodes": [ + 7746891095, + 7746891097 + ], + "geometry": [ + { "lat": 40.7516844, "lon": -73.9521690 }, + { "lat": 40.7515806, "lon": -73.9522547 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830048329, + "bounds": { + "minlat": 40.7524793, + "minlon": -73.9527919, + "maxlat": 40.7528191, + "maxlon": -73.9515425 + }, + "nodes": [ + 7746891100, + 2462253846, + 2462253854, + 2462253842, + 2462253840, + 2462253831, + 2462253829, + 2462253868 + ], + "geometry": [ + { "lat": 40.7528191, "lon": -73.9527919 }, + { "lat": 40.7528114, "lon": -73.9525408 }, + { "lat": 40.7527952, "lon": -73.9522675 }, + { "lat": 40.7527890, "lon": -73.9521619 }, + { "lat": 40.7527273, "lon": -73.9520386 }, + { "lat": 40.7526282, "lon": -73.9518403 }, + { "lat": 40.7525258, "lon": -73.9516356 }, + { "lat": 40.7524793, "lon": -73.9515425 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 830186997, + "bounds": { + "minlat": 40.7767748, + "minlon": -73.9354091, + "maxlat": 40.7770608, + "maxlon": -73.9345264 + }, + "nodes": [ + 42861335, + 13892442011, + 7768475516, + 7745197931 + ], + "geometry": [ + { "lat": 40.7770608, "lon": -73.9354091 }, + { "lat": 40.7770293, "lon": -73.9353120 }, + { "lat": 40.7768029, "lon": -73.9346131 }, + { "lat": 40.7767748, "lon": -73.9345264 } + ], + "tags": { + "highway": "residential", + "name": "26th Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "26th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11102", + "tiger:zip_right": "11102" + } +}, +{ + "type": "way", + "id": 830193973, + "bounds": { + "minlat": 40.7671974, + "minlon": -74.0189149, + "maxlat": 40.7674321, + "maxlon": -74.0182484 + }, + "nodes": [ + 7748277720, + 7748277721, + 7748277722, + 7748277723, + 7748277724, + 7748277725, + 5967181647, + 5967181662, + 7748277726 + ], + "geometry": [ + { "lat": 40.7673912, "lon": -74.0182484 }, + { "lat": 40.7674321, "lon": -74.0183718 }, + { "lat": 40.7674280, "lon": -74.0184160 }, + { "lat": 40.7673864, "lon": -74.0184818 }, + { "lat": 40.7672137, "lon": -74.0186333 }, + { "lat": 40.7671974, "lon": -74.0186789 }, + { "lat": 40.7672216, "lon": -74.0187386 }, + { "lat": 40.7672394, "lon": -74.0187828 }, + { "lat": 40.7672929, "lon": -74.0189149 } + ], + "tags": { + "access": "no", + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 830193974, + "bounds": { + "minlat": 40.7658475, + "minlon": -74.0199253, + "maxlat": 40.7674421, + "maxlon": -74.0188001 + }, + "nodes": [ + 7748277727, + 7748277726, + 7748277728 + ], + "geometry": [ + { "lat": 40.7658475, "lon": -74.0199253 }, + { "lat": 40.7672929, "lon": -74.0189149 }, + { "lat": 40.7674421, "lon": -74.0188001 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 830193975, + "bounds": { + "minlat": 40.7668240, + "minlon": -74.0184053, + "maxlat": 40.7671941, + "maxlon": -74.0175280 + }, + "nodes": [ + 5245686865, + 2837053796, + 7748277738, + 7748277740, + 7297001543, + 2837053797 + ], + "geometry": [ + { "lat": 40.7668240, "lon": -74.0175280 }, + { "lat": 40.7669427, "lon": -74.0178093 }, + { "lat": 40.7670399, "lon": -74.0180397 }, + { "lat": 40.7670752, "lon": -74.0181235 }, + { "lat": 40.7671514, "lon": -74.0183040 }, + { "lat": 40.7671941, "lon": -74.0184053 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "Henley Place", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 830193980, + "bounds": { + "minlat": 40.7667999, + "minlon": -74.0175280, + "maxlat": 40.7668240, + "maxlon": -74.0172922 + }, + "nodes": [ + 2837053795, + 5245686865 + ], + "geometry": [ + { "lat": 40.7667999, "lon": -74.0172922 }, + { "lat": 40.7668240, "lon": -74.0175280 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "Henley Place", + "oneway": "no", + "sidewalk": "left", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 830193989, + "bounds": { + "minlat": 40.7655248, + "minlon": -74.0195966, + "maxlat": 40.7659064, + "maxlon": -74.0193442 + }, + "nodes": [ + 10795374677, + 10795374676, + 7748277757, + 12320029183 + ], + "geometry": [ + { "lat": 40.7659064, "lon": -74.0193442 }, + { "lat": 40.7657716, "lon": -74.0194379 }, + { "lat": 40.7656503, "lon": -74.0195193 }, + { "lat": 40.7655248, "lon": -74.0195966 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 830193990, + "bounds": { + "minlat": 40.7648964, + "minlon": -74.0202030, + "maxlat": 40.7654884, + "maxlon": -74.0196190 + }, + "nodes": [ + 7748277756, + 307871582, + 10795374646, + 10795374645, + 10795374644, + 10795374643, + 103869862 + ], + "geometry": [ + { "lat": 40.7654884, "lon": -74.0196190 }, + { "lat": 40.7653091, "lon": -74.0197957 }, + { "lat": 40.7652331, "lon": -74.0198613 }, + { "lat": 40.7651514, "lon": -74.0199396 }, + { "lat": 40.7650738, "lon": -74.0200176 }, + { "lat": 40.7649788, "lon": -74.0201157 }, + { "lat": 40.7648964, "lon": -74.0202030 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "name": "Port Imperial Boulevard", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 830570296, + "bounds": { + "minlat": 40.7136655, + "minlon": -73.9867343, + "maxlat": 40.7138983, + "maxlon": -73.9866967 + }, + "nodes": [ + 7755083985, + 8310246526, + 7755083986, + 7755083987 + ], + "geometry": [ + { "lat": 40.7136655, "lon": -73.9866967 }, + { "lat": 40.7137411, "lon": -73.9867092 }, + { "lat": 40.7137629, "lon": -73.9867128 }, + { "lat": 40.7138983, "lon": -73.9867343 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 830724877, + "bounds": { + "minlat": 40.7763124, + "minlon": -73.9281819, + "maxlat": 40.7763808, + "maxlon": -73.9280125 + }, + "nodes": [ + 7756491627, + 7756491609, + 7768474040 + ], + "geometry": [ + { "lat": 40.7763124, "lon": -73.9280125 }, + { "lat": 40.7763468, "lon": -73.9281097 }, + { "lat": 40.7763808, "lon": -73.9281819 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830727793, + "bounds": { + "minlat": 40.8578637, + "minlon": -73.9223864, + "maxlat": 40.8579223, + "maxlon": -73.9218031 + }, + "nodes": [ + 7756486975, + 7756486976, + 7756486977, + 7756486978, + 7756486979, + 748726669, + 7756486980, + 7756486981, + 7217951244 + ], + "geometry": [ + { "lat": 40.8578678, "lon": -73.9223864 }, + { "lat": 40.8578759, "lon": -73.9221182 }, + { "lat": 40.8578668, "lon": -73.9220484 }, + { "lat": 40.8578637, "lon": -73.9220042 }, + { "lat": 40.8578718, "lon": -73.9219465 }, + { "lat": 40.8578774, "lon": -73.9219301 }, + { "lat": 40.8578860, "lon": -73.9219049 }, + { "lat": 40.8578972, "lon": -73.9218687 }, + { "lat": 40.8579223, "lon": -73.9218031 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 830926960, + "bounds": { + "minlat": 40.7537154, + "minlon": -73.9074623, + "maxlat": 40.7550295, + "maxlon": -73.9072123 + }, + "nodes": [ + 2875114680, + 11050273996, + 2875114684, + 2875114685 + ], + "geometry": [ + { "lat": 40.7537154, "lon": -73.9072123 }, + { "lat": 40.7539661, "lon": -73.9072624 }, + { "lat": 40.7547263, "lon": -73.9074099 }, + { "lat": 40.7550295, "lon": -73.9074623 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830926961, + "bounds": { + "minlat": 40.7549822, + "minlon": -73.9079144, + "maxlat": 40.7551194, + "maxlon": -73.9066040 + }, + "nodes": [ + 7758314399, + 8593804493, + 2875114685, + 8593722411, + 7758314401, + 6453159096, + 7758314400 + ], + "geometry": [ + { "lat": 40.7549822, "lon": -73.9079144 }, + { "lat": 40.7549901, "lon": -73.9078388 }, + { "lat": 40.7550295, "lon": -73.9074623 }, + { "lat": 40.7550681, "lon": -73.9070937 }, + { "lat": 40.7550748, "lon": -73.9070300 }, + { "lat": 40.7550851, "lon": -73.9069314 }, + { "lat": 40.7551194, "lon": -73.9066040 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830926962, + "bounds": { + "minlat": 40.7551610, + "minlon": -73.9066112, + "maxlat": 40.7553009, + "maxlon": -73.9052345 + }, + "nodes": [ + 2875114691, + 6453159097, + 7758314402, + 6453159103, + 6453159102, + 3569893276 + ], + "geometry": [ + { "lat": 40.7551610, "lon": -73.9066112 }, + { "lat": 40.7552023, "lon": -73.9062034 }, + { "lat": 40.7552087, "lon": -73.9061401 }, + { "lat": 40.7552184, "lon": -73.9060452 }, + { "lat": 40.7552930, "lon": -73.9053126 }, + { "lat": 40.7553009, "lon": -73.9052345 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 830929588, + "bounds": { + "minlat": 40.7521703, + "minlon": -73.9303408, + "maxlat": 40.7523009, + "maxlon": -73.9300209 + }, + "nodes": [ + 7758609803, + 8593804449, + 3569905419 + ], + "geometry": [ + { "lat": 40.7523009, "lon": -73.9303408 }, + { "lat": 40.7522035, "lon": -73.9301131 }, + { "lat": 40.7521703, "lon": -73.9300209 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 831044451, + "bounds": { + "minlat": 40.7405872, + "minlon": -74.0096878, + "maxlat": 40.7429089, + "maxlon": -74.0090615 + }, + "nodes": [ + 7779299548, + 12117376865, + 12117376846, + 7759672455, + 7779299554, + 7759672454, + 11278764207, + 7759672450, + 7759672449, + 9440836547, + 7759672448, + 7759672447, + 7759672446, + 7759672445, + 7759672444, + 9440836546, + 7759672443, + 7759672442, + 7759672441, + 7759672440, + 7759672439, + 7759672438, + 7759672437, + 7759672436, + 7759672435, + 7759672434, + 7759672433, + 7759672432, + 7759672431, + 7759672430, + 7759672429, + 7759672428, + 7759672427, + 7759672426, + 7759672425, + 7759672424, + 7759672423, + 7759672422, + 7759672421, + 7759672420, + 7759672419, + 7759672418, + 7759672417, + 7759672416, + 7759672415, + 7759672414, + 7759672413, + 7759672412, + 9112000216, + 7759672410, + 7759672406, + 9440836494, + 7759672405, + 7759672404, + 9440836493, + 9440836492, + 9440836491, + 7759672403, + 9440836490, + 9440836489, + 9440836486, + 9440836488, + 9440836487, + 7759672402, + 7759672401, + 9440836485, + 9440836484, + 9440836483, + 9440836482, + 7759672400, + 7759672399, + 9440836481, + 9440836480, + 9440836477, + 9440836479, + 9440836478, + 7759672398, + 9440836474, + 9440836475, + 9440836476, + 7759672397, + 7759672396, + 9440836472, + 9440836471, + 9440836470, + 7759672395, + 9440836467, + 7759672394, + 9440836468, + 9440836466, + 9440836469, + 7759672393, + 9440836463, + 9440836465, + 7759672392, + 9440836464, + 7759672391, + 9440653991, + 9440653992, + 9440653993, + 9440653994, + 7759672390, + 7759672389, + 7779299551, + 7759672388, + 9440653998, + 9440653997, + 9440653996, + 9440653995, + 7759672387, + 9440653999, + 7759672386, + 7759672385, + 7759665084, + 4872623849, + 2702857367, + 7759665080, + 11278764209, + 194618282, + 8288270000, + 7759665081, + 7779299536, + 8288270110, + 7779299542, + 8288270109, + 7779299537, + 7759672407, + 12117376834, + 194618287, + 7779299545, + 7779299546, + 8288270077, + 7779299550, + 8288270179, + 7779299547, + 7779299548 + ], + "geometry": [ + { "lat": 40.7412573, "lon": -74.0095385 }, + { "lat": 40.7409402, "lon": -74.0096106 }, + { "lat": 40.7408356, "lon": -74.0096344 }, + { "lat": 40.7406007, "lon": -74.0096878 }, + { "lat": 40.7405920, "lon": -74.0096228 }, + { "lat": 40.7405872, "lon": -74.0095692 }, + { "lat": 40.7406396, "lon": -74.0095180 }, + { "lat": 40.7406348, "lon": -74.0095441 }, + { "lat": 40.7406448, "lon": -74.0095396 }, + { "lat": 40.7406490, "lon": -74.0095399 }, + { "lat": 40.7406529, "lon": -74.0095420 }, + { "lat": 40.7406713, "lon": -74.0095627 }, + { "lat": 40.7406767, "lon": -74.0095640 }, + { "lat": 40.7406820, "lon": -74.0095620 }, + { "lat": 40.7407253, "lon": -74.0095096 }, + { "lat": 40.7407297, "lon": -74.0095061 }, + { "lat": 40.7407350, "lon": -74.0095055 }, + { "lat": 40.7407808, "lon": -74.0095194 }, + { "lat": 40.7407849, "lon": -74.0095178 }, + { "lat": 40.7407884, "lon": -74.0095144 }, + { "lat": 40.7408102, "lon": -74.0094675 }, + { "lat": 40.7408141, "lon": -74.0094635 }, + { "lat": 40.7408181, "lon": -74.0094630 }, + { "lat": 40.7408831, "lon": -74.0095065 }, + { "lat": 40.7408881, "lon": -74.0095075 }, + { "lat": 40.7408933, "lon": -74.0095055 }, + { "lat": 40.7409218, "lon": -74.0094743 }, + { "lat": 40.7409269, "lon": -74.0094716 }, + { "lat": 40.7409635, "lon": -74.0094806 }, + { "lat": 40.7409668, "lon": -74.0094789 }, + { "lat": 40.7409706, "lon": -74.0094758 }, + { "lat": 40.7409877, "lon": -74.0094417 }, + { "lat": 40.7409919, "lon": -74.0094401 }, + { "lat": 40.7409970, "lon": -74.0094404 }, + { "lat": 40.7410222, "lon": -74.0094548 }, + { "lat": 40.7410268, "lon": -74.0094543 }, + { "lat": 40.7410319, "lon": -74.0094528 }, + { "lat": 40.7410599, "lon": -74.0094216 }, + { "lat": 40.7410634, "lon": -74.0094184 }, + { "lat": 40.7410678, "lon": -74.0094181 }, + { "lat": 40.7410724, "lon": -74.0094203 }, + { "lat": 40.7411005, "lon": -74.0094575 }, + { "lat": 40.7411044, "lon": -74.0094590 }, + { "lat": 40.7411100, "lon": -74.0094581 }, + { "lat": 40.7411757, "lon": -74.0094263 }, + { "lat": 40.7411797, "lon": -74.0094217 }, + { "lat": 40.7411815, "lon": -74.0094162 }, + { "lat": 40.7411799, "lon": -74.0093633 }, + { "lat": 40.7415284, "lon": -74.0092875 }, + { "lat": 40.7415701, "lon": -74.0092787 }, + { "lat": 40.7416193, "lon": -74.0093291 }, + { "lat": 40.7416222, "lon": -74.0093310 }, + { "lat": 40.7416262, "lon": -74.0093305 }, + { "lat": 40.7416875, "lon": -74.0092845 }, + { "lat": 40.7416908, "lon": -74.0092826 }, + { "lat": 40.7416948, "lon": -74.0092827 }, + { "lat": 40.7416985, "lon": -74.0092844 }, + { "lat": 40.7417351, "lon": -74.0093022 }, + { "lat": 40.7417387, "lon": -74.0093030 }, + { "lat": 40.7417422, "lon": -74.0093013 }, + { "lat": 40.7417503, "lon": -74.0092905 }, + { "lat": 40.7417540, "lon": -74.0092881 }, + { "lat": 40.7417582, "lon": -74.0092884 }, + { "lat": 40.7417626, "lon": -74.0092898 }, + { "lat": 40.7417987, "lon": -74.0093054 }, + { "lat": 40.7418028, "lon": -74.0093068 }, + { "lat": 40.7418069, "lon": -74.0093062 }, + { "lat": 40.7418110, "lon": -74.0093035 }, + { "lat": 40.7418324, "lon": -74.0092709 }, + { "lat": 40.7418378, "lon": -74.0092663 }, + { "lat": 40.7418693, "lon": -74.0092462 }, + { "lat": 40.7418746, "lon": -74.0092445 }, + { "lat": 40.7418802, "lon": -74.0092462 }, + { "lat": 40.7419111, "lon": -74.0092644 }, + { "lat": 40.7419161, "lon": -74.0092674 }, + { "lat": 40.7419224, "lon": -74.0092662 }, + { "lat": 40.7419266, "lon": -74.0092615 }, + { "lat": 40.7419456, "lon": -74.0092288 }, + { "lat": 40.7419517, "lon": -74.0092221 }, + { "lat": 40.7419575, "lon": -74.0092199 }, + { "lat": 40.7419636, "lon": -74.0092211 }, + { "lat": 40.7419928, "lon": -74.0092316 }, + { "lat": 40.7419983, "lon": -74.0092344 }, + { "lat": 40.7420028, "lon": -74.0092407 }, + { "lat": 40.7420151, "lon": -74.0092573 }, + { "lat": 40.7420195, "lon": -74.0092591 }, + { "lat": 40.7420418, "lon": -74.0092530 }, + { "lat": 40.7420474, "lon": -74.0092491 }, + { "lat": 40.7420504, "lon": -74.0092412 }, + { "lat": 40.7420529, "lon": -74.0092256 }, + { "lat": 40.7420545, "lon": -74.0092206 }, + { "lat": 40.7420571, "lon": -74.0092169 }, + { "lat": 40.7421060, "lon": -74.0091815 }, + { "lat": 40.7421111, "lon": -74.0091781 }, + { "lat": 40.7421171, "lon": -74.0091783 }, + { "lat": 40.7421212, "lon": -74.0091810 }, + { "lat": 40.7421367, "lon": -74.0092138 }, + { "lat": 40.7421422, "lon": -74.0092176 }, + { "lat": 40.7421492, "lon": -74.0092181 }, + { "lat": 40.7421993, "lon": -74.0092104 }, + { "lat": 40.7422047, "lon": -74.0092072 }, + { "lat": 40.7422097, "lon": -74.0091997 }, + { "lat": 40.7422276, "lon": -74.0091044 }, + { "lat": 40.7422507, "lon": -74.0090952 }, + { "lat": 40.7422838, "lon": -74.0090821 }, + { "lat": 40.7422840, "lon": -74.0091025 }, + { "lat": 40.7422886, "lon": -74.0091228 }, + { "lat": 40.7422931, "lon": -74.0091389 }, + { "lat": 40.7423017, "lon": -74.0091440 }, + { "lat": 40.7423085, "lon": -74.0091442 }, + { "lat": 40.7423796, "lon": -74.0091361 }, + { "lat": 40.7424751, "lon": -74.0091252 }, + { "lat": 40.7424939, "lon": -74.0091316 }, + { "lat": 40.7428430, "lon": -74.0090615 }, + { "lat": 40.7428713, "lon": -74.0090685 }, + { "lat": 40.7428994, "lon": -74.0090754 }, + { "lat": 40.7429089, "lon": -74.0091594 }, + { "lat": 40.7428914, "lon": -74.0091627 }, + { "lat": 40.7428740, "lon": -74.0091663 }, + { "lat": 40.7425985, "lon": -74.0092147 }, + { "lat": 40.7423057, "lon": -74.0092707 }, + { "lat": 40.7423117, "lon": -74.0092872 }, + { "lat": 40.7422552, "lon": -74.0093288 }, + { "lat": 40.7422234, "lon": -74.0093522 }, + { "lat": 40.7421945, "lon": -74.0093735 }, + { "lat": 40.7421405, "lon": -74.0094132 }, + { "lat": 40.7421157, "lon": -74.0093518 }, + { "lat": 40.7420352, "lon": -74.0093697 }, + { "lat": 40.7418918, "lon": -74.0094015 }, + { "lat": 40.7414744, "lon": -74.0094896 }, + { "lat": 40.7414936, "lon": -74.0095343 }, + { "lat": 40.7414378, "lon": -74.0095745 }, + { "lat": 40.7414031, "lon": -74.0095996 }, + { "lat": 40.7413704, "lon": -74.0096233 }, + { "lat": 40.7413121, "lon": -74.0096652 }, + { "lat": 40.7412573, "lon": -74.0095385 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 831044454, + "bounds": { + "minlat": 40.7493106, + "minlon": -74.0083244, + "maxlat": 40.7494463, + "maxlon": -74.0082537 + }, + "nodes": [ + 246650840, + 9143574623, + 246580294 + ], + "geometry": [ + { "lat": 40.7494463, "lon": -74.0082537 }, + { "lat": 40.7493952, "lon": -74.0082781 }, + { "lat": 40.7493106, "lon": -74.0083244 } + ], + "tags": { + "bus": "yes", + "destination": "Chelsea Piers", + "highway": "service", + "lanes": "1", + "maxspeed": "25 mph", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 831087681, + "bounds": { + "minlat": 40.8099803, + "minlon": -74.0199529, + "maxlat": 40.8107299, + "maxlon": -74.0193912 + }, + "nodes": [ + 7760005498, + 7760005502, + 7760005499, + 7760005500, + 7760005501 + ], + "geometry": [ + { "lat": 40.8107299, "lon": -74.0193912 }, + { "lat": 40.8105781, "lon": -74.0195193 }, + { "lat": 40.8104547, "lon": -74.0196235 }, + { "lat": 40.8102104, "lon": -74.0198106 }, + { "lat": 40.8099803, "lon": -74.0199529 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 831175951, + "bounds": { + "minlat": 40.8523295, + "minlon": -74.0174890, + "maxlat": 40.8525546, + "maxlon": -74.0173876 + }, + "nodes": [ + 7760857885, + 7760857886 + ], + "geometry": [ + { "lat": 40.8523295, "lon": -74.0174890 }, + { "lat": 40.8525546, "lon": -74.0173876 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 832059653, + "bounds": { + "minlat": 40.7752906, + "minlon": -73.9294343, + "maxlat": 40.7754298, + "maxlon": -73.9289981 + }, + "nodes": [ + 7768474037, + 7768474031, + 7768474043 + ], + "geometry": [ + { "lat": 40.7754298, "lon": -73.9294343 }, + { "lat": 40.7753144, "lon": -73.9290639 }, + { "lat": 40.7752906, "lon": -73.9289981 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 832059657, + "bounds": { + "minlat": 40.7751258, + "minlon": -73.9296410, + "maxlat": 40.7752782, + "maxlon": -73.9290846 + }, + "nodes": [ + 7768474028, + 7768474052, + 7768474049, + 7768474046 + ], + "geometry": [ + { "lat": 40.7751428, "lon": -73.9296410 }, + { "lat": 40.7752782, "lon": -73.9295735 }, + { "lat": 40.7751489, "lon": -73.9291492 }, + { "lat": 40.7751258, "lon": -73.9290846 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 832111644, + "bounds": { + "minlat": 40.8652306, + "minlon": -73.9917946, + "maxlat": 40.8654978, + "maxlon": -73.9913674 + }, + "nodes": [ + 7768850294, + 7768850295, + 7768850296 + ], + "geometry": [ + { "lat": 40.8654978, "lon": -73.9917946 }, + { "lat": 40.8653191, "lon": -73.9914616 }, + { "lat": 40.8652306, "lon": -73.9913674 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 832114732, + "bounds": { + "minlat": 40.8193859, + "minlon": -73.9592415, + "maxlat": 40.8195617, + "maxlon": -73.9588188 + }, + "nodes": [ + 7768883542, + 10128878985, + 7768883543, + 7768883544 + ], + "geometry": [ + { "lat": 40.8195617, "lon": -73.9592415 }, + { "lat": 40.8194870, "lon": -73.9590608 }, + { "lat": 40.8194794, "lon": -73.9590423 }, + { "lat": 40.8193859, "lon": -73.9588188 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 832165596, + "bounds": { + "minlat": 40.8196229, + "minlon": -74.0100232, + "maxlat": 40.8206746, + "maxlon": -74.0098678 + }, + "nodes": [ + 7769379555, + 7769379556, + 7769379559, + 7769379557, + 7769379558 + ], + "geometry": [ + { "lat": 40.8206746, "lon": -74.0100232 }, + { "lat": 40.8201716, "lon": -74.0099599 }, + { "lat": 40.8199166, "lon": -74.0099084 }, + { "lat": 40.8198468, "lon": -74.0098943 }, + { "lat": 40.8196229, "lon": -74.0098678 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 832165597, + "bounds": { + "minlat": 40.8197781, + "minlon": -74.0099084, + "maxlat": 40.8199166, + "maxlon": -74.0090925 + }, + "nodes": [ + 7769379559, + 103318803 + ], + "geometry": [ + { "lat": 40.8199166, "lon": -74.0099084 }, + { "lat": 40.8197781, "lon": -74.0090925 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 832192884, + "bounds": { + "minlat": 40.7037940, + "minlon": -73.9356139, + "maxlat": 40.7040906, + "maxlon": -73.9355162 + }, + "nodes": [ + 7769674382, + 9646979748, + 7769674384, + 7769674383 + ], + "geometry": [ + { "lat": 40.7037940, "lon": -73.9355162 }, + { "lat": 40.7038542, "lon": -73.9355360 }, + { "lat": 40.7038959, "lon": -73.9355498 }, + { "lat": 40.7040906, "lon": -73.9356139 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 832192885, + "bounds": { + "minlat": 40.7036332, + "minlon": -73.9364464, + "maxlat": 40.7039133, + "maxlon": -73.9363448 + }, + "nodes": [ + 7769675385, + 9646979747, + 7769675387, + 7769675386 + ], + "geometry": [ + { "lat": 40.7036332, "lon": -73.9363448 }, + { "lat": 40.7036940, "lon": -73.9363669 }, + { "lat": 40.7037180, "lon": -73.9363756 }, + { "lat": 40.7039133, "lon": -73.9364464 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 832436207, + "bounds": { + "minlat": 40.8211533, + "minlon": -73.9909596, + "maxlat": 40.8213472, + "maxlon": -73.9904507 + }, + "nodes": [ + 7771759681, + 13524700365, + 7771759682, + 7771759683, + 7771759684, + 7771767485 + ], + "geometry": [ + { "lat": 40.8213472, "lon": -73.9909596 }, + { "lat": 40.8212837, "lon": -73.9908484 }, + { "lat": 40.8211678, "lon": -73.9906453 }, + { "lat": 40.8211533, "lon": -73.9905999 }, + { "lat": 40.8211684, "lon": -73.9905641 }, + { "lat": 40.8212954, "lon": -73.9904507 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 832461219, + "bounds": { + "minlat": 40.8819864, + "minlon": -73.9512580, + "maxlat": 40.8824256, + "maxlon": -73.9506132 + }, + "nodes": [ + 7772033025, + 7772033026, + 7772033027, + 7772033028, + 7772033029, + 7772033030, + 7772033031, + 7772033032, + 7772033033, + 103215756 + ], + "geometry": [ + { "lat": 40.8819864, "lon": -73.9507415 }, + { "lat": 40.8820722, "lon": -73.9510025 }, + { "lat": 40.8821845, "lon": -73.9512163 }, + { "lat": 40.8822242, "lon": -73.9512580 }, + { "lat": 40.8822722, "lon": -73.9512562 }, + { "lat": 40.8824023, "lon": -73.9511402 }, + { "lat": 40.8824242, "lon": -73.9510841 }, + { "lat": 40.8824256, "lon": -73.9510279 }, + { "lat": 40.8824078, "lon": -73.9509772 }, + { "lat": 40.8822048, "lon": -73.9506132 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 832462641, + "bounds": { + "minlat": 40.8585538, + "minlon": -74.0180114, + "maxlat": 40.8588235, + "maxlon": -74.0179251 + }, + "nodes": [ + 7772055959, + 7772055960 + ], + "geometry": [ + { "lat": 40.8588235, "lon": -74.0179251 }, + { "lat": 40.8585538, "lon": -74.0180114 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 833316051, + "bounds": { + "minlat": 40.7605662, + "minlon": -73.9992814, + "maxlat": 40.7608472, + "maxlon": -73.9990764 + }, + "nodes": [ + 7779170200, + 7779170199 + ], + "geometry": [ + { "lat": 40.7605662, "lon": -73.9992814 }, + { "lat": 40.7608472, "lon": -73.9990764 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 833316052, + "bounds": { + "minlat": 40.7608472, + "minlon": -73.9990764, + "maxlat": 40.7609527, + "maxlon": -73.9989999 + }, + "nodes": [ + 7779170199, + 7779170202 + ], + "geometry": [ + { "lat": 40.7608472, "lon": -73.9990764 }, + { "lat": 40.7609527, "lon": -73.9989999 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 833316053, + "bounds": { + "minlat": 40.7604817, + "minlon": -73.9993429, + "maxlat": 40.7605662, + "maxlon": -73.9992814 + }, + "nodes": [ + 7779170201, + 7779170200 + ], + "geometry": [ + { "lat": 40.7604817, "lon": -73.9993429 }, + { "lat": 40.7605662, "lon": -73.9992814 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 833316054, + "bounds": { + "minlat": 40.7609527, + "minlon": -73.9989999, + "maxlat": 40.7610857, + "maxlon": -73.9989027 + }, + "nodes": [ + 7779170202, + 6293725832, + 6293725833 + ], + "geometry": [ + { "lat": 40.7609527, "lon": -73.9989999 }, + { "lat": 40.7609760, "lon": -73.9989825 }, + { "lat": 40.7610857, "lon": -73.9989027 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 833386643, + "bounds": { + "minlat": 40.8742871, + "minlon": -73.9104341, + "maxlat": 40.8743360, + "maxlon": -73.9103590 + }, + "nodes": [ + 7779712806, + 1544782721 + ], + "geometry": [ + { "lat": 40.8743360, "lon": -73.9104341 }, + { "lat": 40.8742871, "lon": -73.9103590 } + ], + "tags": { + "alt_name": "West 225 Street", + "cycleway:right": "shared_lane", + "highway": "residential", + "name": "West 225th Street", + "oneway": "yes", + "oneway:bicycle": "dismount", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "225th", + "tiger:name_base_1": "225", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 833386644, + "bounds": { + "minlat": 40.8716030, + "minlon": -73.9171760, + "maxlat": 40.8724990, + "maxlon": -73.9150560 + }, + "nodes": [ + 42429705, + 11587349746, + 42429707, + 9561209097, + 42429708 + ], + "geometry": [ + { "lat": 40.8716030, "lon": -73.9150560 }, + { "lat": 40.8718657, "lon": -73.9156818 }, + { "lat": 40.8721160, "lon": -73.9162780 }, + { "lat": 40.8724680, "lon": -73.9171033 }, + { "lat": 40.8724990, "lon": -73.9171760 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "foot": "yes", + "highway": "tertiary", + "inline_skates": "yes", + "maxspeed": "20 mph", + "name": "West 218th Street", + "segregated": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "218th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034" + } +}, +{ + "type": "way", + "id": 833455306, + "bounds": { + "minlat": 40.7431176, + "minlon": -73.9067008, + "maxlat": 40.7436581, + "maxlon": -73.9063490 + }, + "nodes": [ + 7780357440, + 9950327831, + 7780357445, + 7780357441, + 7780357442, + 7780357444, + 9950327803, + 7780357443 + ], + "geometry": [ + { "lat": 40.7431176, "lon": -73.9064819 }, + { "lat": 40.7431844, "lon": -73.9064577 }, + { "lat": 40.7432096, "lon": -73.9064486 }, + { "lat": 40.7436215, "lon": -73.9063490 }, + { "lat": 40.7436581, "lon": -73.9065569 }, + { "lat": 40.7432400, "lon": -73.9066754 }, + { "lat": 40.7432106, "lon": -73.9066840 }, + { "lat": 40.7431528, "lon": -73.9067008 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 833548655, + "bounds": { + "minlat": 40.7676121, + "minlon": -73.9295654, + "maxlat": 40.7676919, + "maxlon": -73.9293963 + }, + "nodes": [ + 7781247057, + 7781247060, + 7781247061 + ], + "geometry": [ + { "lat": 40.7676121, "lon": -73.9293963 }, + { "lat": 40.7676379, "lon": -73.9294443 }, + { "lat": 40.7676919, "lon": -73.9295654 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 833564685, + "bounds": { + "minlat": 40.8687423, + "minlon": -73.9312771, + "maxlat": 40.8687597, + "maxlon": -73.9311686 + }, + "nodes": [ + 4379966535, + 1764661442, + 4515465265 + ], + "geometry": [ + { "lat": 40.8687427, "lon": -73.9312771 }, + { "lat": 40.8687423, "lon": -73.9312295 }, + { "lat": 40.8687597, "lon": -73.9311686 } + ], + "tags": { + "bicycle": "designated", + "highway": "unclassified", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 833726095, + "bounds": { + "minlat": 40.8494494, + "minlon": -73.9072108, + "maxlat": 40.8503289, + "maxlon": -73.9067877 + }, + "nodes": [ + 2028361251, + 12739101097, + 7782708867, + 10116520027, + 7782708864, + 7782708865, + 7782708866, + 7782708868, + 7782708870, + 12832548454, + 7782708869 + ], + "geometry": [ + { "lat": 40.8503289, "lon": -73.9070603 }, + { "lat": 40.8502908, "lon": -73.9071319 }, + { "lat": 40.8502879, "lon": -73.9071373 }, + { "lat": 40.8502853, "lon": -73.9071447 }, + { "lat": 40.8502666, "lon": -73.9071899 }, + { "lat": 40.8501991, "lon": -73.9072108 }, + { "lat": 40.8498434, "lon": -73.9067953 }, + { "lat": 40.8498195, "lon": -73.9067877 }, + { "lat": 40.8495382, "lon": -73.9068801 }, + { "lat": 40.8495063, "lon": -73.9068906 }, + { "lat": 40.8494494, "lon": -73.9069093 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 833768538, + "bounds": { + "minlat": 40.8794505, + "minlon": -73.9208872, + "maxlat": 40.8795971, + "maxlon": -73.9202319 + }, + "nodes": [ + 1545196705, + 10130977071, + 7783196870, + 7783196871, + 7783196872, + 7783196873, + 7783196874, + 7783196875, + 7783196876, + 7783196877, + 7783196878 + ], + "geometry": [ + { "lat": 40.8795971, "lon": -73.9208872 }, + { "lat": 40.8795616, "lon": -73.9208259 }, + { "lat": 40.8795163, "lon": -73.9207476 }, + { "lat": 40.8794761, "lon": -73.9206587 }, + { "lat": 40.8794630, "lon": -73.9206221 }, + { "lat": 40.8794590, "lon": -73.9205821 }, + { "lat": 40.8794616, "lon": -73.9205350 }, + { "lat": 40.8794794, "lon": -73.9204679 }, + { "lat": 40.8794913, "lon": -73.9204165 }, + { "lat": 40.8794827, "lon": -73.9203503 }, + { "lat": 40.8794505, "lon": -73.9202319 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 833808580, + "bounds": { + "minlat": 40.7268914, + "minlon": -73.9587654, + "maxlat": 40.7270439, + "maxlon": -73.9572233 + }, + "nodes": [ + 42496839, + 9789402726, + 9789402679, + 9789402680, + 42496837 + ], + "geometry": [ + { "lat": 40.7270439, "lon": -73.9572233 }, + { "lat": 40.7270330, "lon": -73.9573304 }, + { "lat": 40.7269041, "lon": -73.9586375 }, + { "lat": 40.7268991, "lon": -73.9586875 }, + { "lat": 40.7268914, "lon": -73.9587654 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Calyer Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Calyer", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 833831472, + "bounds": { + "minlat": 40.7725121, + "minlon": -73.9274359, + "maxlat": 40.7726694, + "maxlon": -73.9272556 + }, + "nodes": [ + 7783823962, + 7783802650, + 7783802679, + 7783823911, + 7783823941 + ], + "geometry": [ + { "lat": 40.7725121, "lon": -73.9274359 }, + { "lat": 40.7725141, "lon": -73.9273660 }, + { "lat": 40.7725164, "lon": -73.9273480 }, + { "lat": 40.7725312, "lon": -73.9272642 }, + { "lat": 40.7726694, "lon": -73.9272556 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 834043275, + "bounds": { + "minlat": 40.8092046, + "minlon": -73.9356770, + "maxlat": 40.8094377, + "maxlon": -73.9351556 + }, + "nodes": [ + 589928020, + 11886502738, + 7785803408, + 7785803396 + ], + "geometry": [ + { "lat": 40.8094377, "lon": -73.9356770 }, + { "lat": 40.8094144, "lon": -73.9356204 }, + { "lat": 40.8093996, "lon": -73.9355843 }, + { "lat": 40.8092046, "lon": -73.9351556 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 834043278, + "bounds": { + "minlat": 40.7954276, + "minlon": -73.9459433, + "maxlat": 40.7954491, + "maxlon": -73.9459003 + }, + "nodes": [ + 7785803411, + 42434382 + ], + "geometry": [ + { "lat": 40.7954491, "lon": -73.9459433 }, + { "lat": 40.7954276, "lon": -73.9459003 } + ], + "tags": { + "alt_name": "Tito Puente Way", + "alt_name:etymology:wikidata": "Q317122", + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxheight": "11'5\"", + "name": "East 110th Street", + "name:ru": "Восточная 110-я стрит", + "oneway": "yes", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 834043280, + "bounds": { + "minlat": 40.7955204, + "minlon": -73.9461625, + "maxlat": 40.7955395, + "maxlon": -73.9461167 + }, + "nodes": [ + 596776325, + 7785803413 + ], + "geometry": [ + { "lat": 40.7955395, "lon": -73.9461625 }, + { "lat": 40.7955204, "lon": -73.9461167 } + ], + "tags": { + "alt_name": "Tito Puente Way", + "alt_name:etymology:wikidata": "Q317122", + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxheight": "11'5\"", + "name": "East 110th Street", + "name:ru": "Восточная 110-я стрит", + "oneway": "yes", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 834043281, + "bounds": { + "minlat": 40.8094377, + "minlon": -73.9357096, + "maxlat": 40.8094524, + "maxlon": -73.9356770 + }, + "nodes": [ + 7785803401, + 589928020 + ], + "geometry": [ + { "lat": 40.8094524, "lon": -73.9357096 }, + { "lat": 40.8094377, "lon": -73.9356770 } + ], + "tags": { + "highway": "residential", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 132nd Street", + "surface": "asphalt", + "turn:lanes:forward": "left|left" + } +}, +{ + "type": "way", + "id": 834043282, + "bounds": { + "minlat": 40.8094524, + "minlon": -73.9358982, + "maxlat": 40.8095348, + "maxlon": -73.9357096 + }, + "nodes": [ + 7785803398, + 7785803401 + ], + "geometry": [ + { "lat": 40.8095348, "lon": -73.9358982 }, + { "lat": 40.8094524, "lon": -73.9357096 } + ], + "tags": { + "covered": "yes", + "highway": "residential", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 132nd Street", + "surface": "asphalt", + "turn:lanes:forward": "left|left" + } +}, +{ + "type": "way", + "id": 834043284, + "bounds": { + "minlat": 40.7967335, + "minlon": -73.9490776, + "maxlat": 40.7971010, + "maxlon": -73.9488366 + }, + "nodes": [ + 42432376, + 7785880676, + 42432374, + 9177562829, + 42432370, + 5706569885, + 42432368, + 9177562828, + 42432364, + 42432361, + 5706569886, + 42432357, + 7123798396, + 42432353, + 42432352 + ], + "geometry": [ + { "lat": 40.7967335, "lon": -73.9488554 }, + { "lat": 40.7967608, "lon": -73.9488443 }, + { "lat": 40.7967945, "lon": -73.9488366 }, + { "lat": 40.7968309, "lon": -73.9488405 }, + { "lat": 40.7968627, "lon": -73.9488468 }, + { "lat": 40.7968918, "lon": -73.9488527 }, + { "lat": 40.7969199, "lon": -73.9488667 }, + { "lat": 40.7969420, "lon": -73.9488789 }, + { "lat": 40.7969658, "lon": -73.9488979 }, + { "lat": 40.7969868, "lon": -73.9489185 }, + { "lat": 40.7970071, "lon": -73.9489411 }, + { "lat": 40.7970253, "lon": -73.9489676 }, + { "lat": 40.7970587, "lon": -73.9489923 }, + { "lat": 40.7970779, "lon": -73.9490272 }, + { "lat": 40.7971010, "lon": -73.9490776 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Duke Ellington Circle", + "name:etymology:wikidata": "Q4030", + "old_name": "Frawley Circle", + "oneway": "yes", + "parking:lane:right": "no_parking", + "surface": "asphalt", + "wikidata": "Q5312765" + } +}, +{ + "type": "way", + "id": 834043286, + "bounds": { + "minlat": 40.7948079, + "minlon": -73.9459003, + "maxlat": 40.7954276, + "maxlon": -73.9444165 + }, + "nodes": [ + 42434382, + 7781090344, + 5481998070, + 7811793775, + 42434384 + ], + "geometry": [ + { "lat": 40.7954276, "lon": -73.9459003 }, + { "lat": 40.7954032, "lon": -73.9458418 }, + { "lat": 40.7952790, "lon": -73.9455444 }, + { "lat": 40.7948445, "lon": -73.9445041 }, + { "lat": 40.7948079, "lon": -73.9444165 } + ], + "tags": { + "alt_name": "Tito Puente Way", + "alt_name:etymology:wikidata": "Q317122", + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "East 110th Street", + "name:ru": "Восточная 110-я стрит", + "oneway": "yes", + "sidewalk": "both", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 834043287, + "bounds": { + "minlat": 40.7954491, + "minlon": -73.9461167, + "maxlat": 40.7955204, + "maxlon": -73.9459433 + }, + "nodes": [ + 7785803413, + 7785803411 + ], + "geometry": [ + { "lat": 40.7955204, "lon": -73.9461167 }, + { "lat": 40.7954491, "lon": -73.9459433 } + ], + "tags": { + "alt_name": "Tito Puente Way", + "alt_name:etymology:wikidata": "Q317122", + "bicycle": "yes", + "covered": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "layer": "-1", + "maxheight": "11'5\"", + "name": "East 110th Street", + "name:ru": "Восточная 110-я стрит", + "oneway": "yes", + "tunnel": "yes", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 834058007, + "bounds": { + "minlat": 40.8005810, + "minlon": -73.9584942, + "maxlat": 40.8007750, + "maxlon": -73.9583722 + }, + "nodes": [ + 3247295579, + 12818423533, + 2091642196, + 9150529696, + 5706570115, + 6804416828, + 9150529697, + 42452290 + ], + "geometry": [ + { "lat": 40.8007750, "lon": -73.9583722 }, + { "lat": 40.8007579, "lon": -73.9584001 }, + { "lat": 40.8007289, "lon": -73.9584355 }, + { "lat": 40.8007043, "lon": -73.9584566 }, + { "lat": 40.8006825, "lon": -73.9584699 }, + { "lat": 40.8006506, "lon": -73.9584838 }, + { "lat": 40.8006227, "lon": -73.9584898 }, + { "lat": 40.8005810, "lon": -73.9584942 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "junction": "roundabout", + "lanes": "2", + "name": "Frederick Douglass Circle", + "name:etymology:wikidata": "Q215562", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q5497668" + } +}, +{ + "type": "way", + "id": 834202842, + "bounds": { + "minlat": 40.7749622, + "minlon": -73.9296707, + "maxlat": 40.7750760, + "maxlon": -73.9291690 + }, + "nodes": [ + 7787257331, + 7787257330, + 7787257332, + 7787257335, + 7787257334, + 7787257333 + ], + "geometry": [ + { "lat": 40.7749622, "lon": -73.9291690 }, + { "lat": 40.7749811, "lon": -73.9292362 }, + { "lat": 40.7749958, "lon": -73.9292902 }, + { "lat": 40.7750760, "lon": -73.9295843 }, + { "lat": 40.7750605, "lon": -73.9296468 }, + { "lat": 40.7750216, "lon": -73.9296707 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 834212684, + "bounds": { + "minlat": 40.7753700, + "minlon": -73.9221820, + "maxlat": 40.7760862, + "maxlon": -73.9211700 + }, + "nodes": [ + 42881027, + 7784004946, + 11107973907, + 7722330248, + 7784004983, + 42826000 + ], + "geometry": [ + { "lat": 40.7753700, "lon": -73.9211700 }, + { "lat": 40.7754188, "lon": -73.9212389 }, + { "lat": 40.7758218, "lon": -73.9218084 }, + { "lat": 40.7759911, "lon": -73.9220477 }, + { "lat": 40.7760227, "lon": -73.9220924 }, + { "lat": 40.7760862, "lon": -73.9221820 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "24th Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 834212690, + "bounds": { + "minlat": 40.7725158, + "minlon": -73.9204657, + "maxlat": 40.7727429, + "maxlon": -73.9201980 + }, + "nodes": [ + 13885263272, + 13885263273 + ], + "geometry": [ + { "lat": 40.7727429, "lon": -73.9201980 }, + { "lat": 40.7725158, "lon": -73.9204657 } + ], + "tags": { + "access": "no", + "highway": "service", + "level": "-1", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 834235528, + "bounds": { + "minlat": 40.7909539, + "minlon": -73.9493978, + "maxlat": 40.7910286, + "maxlon": -73.9492200 + }, + "nodes": [ + 7787545801, + 7787545800 + ], + "geometry": [ + { "lat": 40.7909539, "lon": -73.9492200 }, + { "lat": 40.7910286, "lon": -73.9493978 } + ], + "tags": { + "covered": "yes", + "highway": "residential", + "layer": "-1", + "lit": "yes", + "name": "East 103rd Street", + "name:be": "Усходняя 103-я вуліца", + "name:en": "East 103rd Street", + "name:pl": "Wschodnia 103 Ulica", + "name:ru": "Восточная 103-я улица", + "oneway": "yes", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 834235530, + "bounds": { + "minlat": 40.7916755, + "minlon": -73.9490556, + "maxlat": 40.7917038, + "maxlon": -73.9489842 + }, + "nodes": [ + 6254630464, + 596776413 + ], + "geometry": [ + { "lat": 40.7917038, "lon": -73.9490556 }, + { "lat": 40.7916755, "lon": -73.9489842 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 104th Street", + "name:ru": "Восточная 104-я стрит", + "oneway": "yes", + "parking:lane:both": "parallel", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 834235533, + "bounds": { + "minlat": 40.7883247, + "minlon": -73.9433978, + "maxlat": 40.7893167, + "maxlon": -73.9410152 + }, + "nodes": [ + 42436627, + 6175905205, + 2947964864, + 6191027306, + 6191027362, + 42436630 + ], + "geometry": [ + { "lat": 40.7893167, "lon": -73.9433978 }, + { "lat": 40.7892853, "lon": -73.9433078 }, + { "lat": 40.7892701, "lon": -73.9432673 }, + { "lat": 40.7883822, "lon": -73.9411523 }, + { "lat": 40.7883700, "lon": -73.9411213 }, + { "lat": 40.7883247, "lon": -73.9410152 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 104th Street", + "name:ru": "Восточная 104-я стрит", + "oneway": "yes", + "parking:lane:both": "parallel", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 834235534, + "bounds": { + "minlat": 40.7893167, + "minlon": -73.9456376, + "maxlat": 40.7902523, + "maxlon": -73.9433978 + }, + "nodes": [ + 42436624, + 6191027309, + 5481998021, + 2947964862, + 42436627 + ], + "geometry": [ + { "lat": 40.7902523, "lon": -73.9456376 }, + { "lat": 40.7901903, "lon": -73.9455161 }, + { "lat": 40.7899572, "lon": -73.9449686 }, + { "lat": 40.7893604, "lon": -73.9435326 }, + { "lat": 40.7893167, "lon": -73.9433978 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 104th Street", + "name:ru": "Восточная 104-я стрит", + "oneway": "yes", + "parking:lane:left": "parallel", + "parking:lane:right": "perpindicular" + } +}, +{ + "type": "way", + "id": 834235537, + "bounds": { + "minlat": 40.7918589, + "minlon": -73.9504667, + "maxlat": 40.7923067, + "maxlon": -73.9494242 + }, + "nodes": [ + 42436610, + 11292691125, + 7787545803 + ], + "geometry": [ + { "lat": 40.7923067, "lon": -73.9504667 }, + { "lat": 40.7922572, "lon": -73.9503514 }, + { "lat": 40.7918589, "lon": -73.9494242 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 104th Street", + "name:ru": "Восточная 104-я стрит", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 834235538, + "bounds": { + "minlat": 40.7915693, + "minlon": -73.9487591, + "maxlat": 40.7915849, + "maxlon": -73.9487212 + }, + "nodes": [ + 7787545823, + 42436614 + ], + "geometry": [ + { "lat": 40.7915849, "lon": -73.9487591 }, + { "lat": 40.7915693, "lon": -73.9487212 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 104th Street", + "name:ru": "Восточная 104-я стрит", + "oneway": "yes", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 834235539, + "bounds": { + "minlat": 40.7910286, + "minlon": -73.9494429, + "maxlat": 40.7910474, + "maxlon": -73.9493978 + }, + "nodes": [ + 7787545800, + 596775825 + ], + "geometry": [ + { "lat": 40.7910286, "lon": -73.9493978 }, + { "lat": 40.7910474, "lon": -73.9494429 } + ], + "tags": { + "highway": "residential", + "name": "East 103rd Street", + "name:be": "Усходняя 103-я вуліца", + "name:en": "East 103rd Street", + "name:pl": "Wschodnia 103 Ulica", + "name:ru": "Восточная 103-я улица", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 834235540, + "bounds": { + "minlat": 40.7903277, + "minlon": -73.9498572, + "maxlat": 40.7903993, + "maxlon": -73.9496806 + }, + "nodes": [ + 7787545810, + 7787545806 + ], + "geometry": [ + { "lat": 40.7903277, "lon": -73.9496806 }, + { "lat": 40.7903993, "lon": -73.9498572 } + ], + "tags": { + "covered": "yes", + "highway": "residential", + "lane_markings": "no", + "layer": "-1", + "name": "East 102nd Street", + "name:ru": "Восточная 102-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 834235544, + "bounds": { + "minlat": 40.7903993, + "minlon": -73.9529787, + "maxlat": 40.7917204, + "maxlon": -73.9498572 + }, + "nodes": [ + 7787545806, + 596776224, + 6254630493, + 6254651507, + 6254651525, + 6254630472, + 42430474, + 6254630434, + 7093408637, + 7089698650, + 42425127 + ], + "geometry": [ + { "lat": 40.7903993, "lon": -73.9498572 }, + { "lat": 40.7904213, "lon": -73.9499026 }, + { "lat": 40.7904520, "lon": -73.9499727 }, + { "lat": 40.7905551, "lon": -73.9502154 }, + { "lat": 40.7909426, "lon": -73.9511276 }, + { "lat": 40.7909998, "lon": -73.9512692 }, + { "lat": 40.7910474, "lon": -73.9513807 }, + { "lat": 40.7910965, "lon": -73.9514918 }, + { "lat": 40.7914921, "lon": -73.9524356 }, + { "lat": 40.7916798, "lon": -73.9528834 }, + { "lat": 40.7917204, "lon": -73.9529787 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 102nd Street", + "name:ru": "Восточная 102-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 834235546, + "bounds": { + "minlat": 40.7916588, + "minlon": -73.9489842, + "maxlat": 40.7916755, + "maxlon": -73.9489397 + }, + "nodes": [ + 596776413, + 7787545811 + ], + "geometry": [ + { "lat": 40.7916755, "lon": -73.9489842 }, + { "lat": 40.7916588, "lon": -73.9489397 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 104th Street", + "name:ru": "Восточная 104-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 834235547, + "bounds": { + "minlat": 40.7917038, + "minlon": -73.9494242, + "maxlat": 40.7918589, + "maxlon": -73.9490556 + }, + "nodes": [ + 7787545803, + 6254630464 + ], + "geometry": [ + { "lat": 40.7918589, "lon": -73.9494242 }, + { "lat": 40.7917038, "lon": -73.9490556 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 104th Street", + "name:ru": "Восточная 104-я стрит", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 834235549, + "bounds": { + "minlat": 40.7915849, + "minlon": -73.9489397, + "maxlat": 40.7916588, + "maxlon": -73.9487591 + }, + "nodes": [ + 7787545811, + 7787545823 + ], + "geometry": [ + { "lat": 40.7916588, "lon": -73.9489397 }, + { "lat": 40.7915849, "lon": -73.9487591 } + ], + "tags": { + "covered": "yes", + "highway": "residential", + "lanes": "1", + "layer": "-1", + "maxspeed": "25 mph", + "name": "East 104th Street", + "name:ru": "Восточная 104-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 834238142, + "bounds": { + "minlat": 40.7216851, + "minlon": -73.9892792, + "maxlat": 40.7228120, + "maxlon": -73.9888305 + }, + "nodes": [ + 3212472830, + 6139477283, + 3314285365, + 5854382586, + 42432057 + ], + "geometry": [ + { "lat": 40.7228120, "lon": -73.9888305 }, + { "lat": 40.7225736, "lon": -73.9889112 }, + { "lat": 40.7223671, "lon": -73.9889868 }, + { "lat": 40.7217481, "lon": -73.9892524 }, + { "lat": 40.7216851, "lon": -73.9892792 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 834238144, + "bounds": { + "minlat": 40.7124636, + "minlon": -73.9925563, + "maxlat": 40.7124807, + "maxlon": -73.9922797 + }, + "nodes": [ + 3212472978, + 7480301990, + 6330018917 + ], + "geometry": [ + { "lat": 40.7124636, "lon": -73.9925563 }, + { "lat": 40.7124726, "lon": -73.9924115 }, + { "lat": 40.7124807, "lon": -73.9922797 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "secondary", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 834248946, + "bounds": { + "minlat": 40.7116892, + "minlon": -73.9933337, + "maxlat": 40.7117181, + "maxlon": -73.9930413 + }, + "nodes": [ + 7787627723, + 12338873507 + ], + "geometry": [ + { "lat": 40.7116892, "lon": -73.9933337 }, + { "lat": 40.7117181, "lon": -73.9930413 } + ], + "tags": { + "covered": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Monroe Street", + "name:etymology:wikidata": "Q11815", + "name:ko": "먼로 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 834248949, + "bounds": { + "minlat": 40.7105113, + "minlon": -73.9919892, + "maxlat": 40.7109437, + "maxlon": -73.9918918 + }, + "nodes": [ + 7787627732, + 7787627744, + 7787627749, + 4207806922, + 7480515815, + 11648331378, + 42437481 + ], + "geometry": [ + { "lat": 40.7105113, "lon": -73.9918918 }, + { "lat": 40.7105939, "lon": -73.9919077 }, + { "lat": 40.7106826, "lon": -73.9919239 }, + { "lat": 40.7107855, "lon": -73.9919483 }, + { "lat": 40.7108412, "lon": -73.9919616 }, + { "lat": 40.7108918, "lon": -73.9919748 }, + { "lat": 40.7109437, "lon": -73.9919892 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Pike Slip", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 슬립", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|" + } +}, +{ + "type": "way", + "id": 834248951, + "bounds": { + "minlat": 40.7117326, + "minlon": -73.9928947, + "maxlat": 40.7117585, + "maxlon": -73.9924507 + }, + "nodes": [ + 5799713818, + 11518199270, + 7787627735, + 11518199271, + 11518199272, + 42448440 + ], + "geometry": [ + { "lat": 40.7117326, "lon": -73.9928947 }, + { "lat": 40.7117530, "lon": -73.9926157 }, + { "lat": 40.7117573, "lon": -73.9925546 }, + { "lat": 40.7117585, "lon": -73.9925094 }, + { "lat": 40.7117543, "lon": -73.9924779 }, + { "lat": 40.7117454, "lon": -73.9924507 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Monroe Street", + "name:etymology:wikidata": "Q11815", + "name:ko": "먼로 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 834269393, + "bounds": { + "minlat": 40.7725169, + "minlon": -73.9925663, + "maxlat": 40.7727220, + "maxlon": -73.9924557 + }, + "nodes": [ + 7787811320, + 10160790763, + 7117112644 + ], + "geometry": [ + { "lat": 40.7727220, "lon": -73.9924557 }, + { "lat": 40.7725818, "lon": -73.9925250 }, + { "lat": 40.7725169, "lon": -73.9925663 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 834286767, + "bounds": { + "minlat": 40.7722850, + "minlon": -73.9942618, + "maxlat": 40.7723453, + "maxlon": -73.9941605 + }, + "nodes": [ + 7787939267, + 7787939266, + 7787939265, + 7787939264 + ], + "geometry": [ + { "lat": 40.7723453, "lon": -73.9942618 }, + { "lat": 40.7723362, "lon": -73.9942485 }, + { "lat": 40.7723180, "lon": -73.9942218 }, + { "lat": 40.7722850, "lon": -73.9941605 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 834356318, + "bounds": { + "minlat": 40.7625740, + "minlon": -73.9334450, + "maxlat": 40.7627722, + "maxlon": -73.9332721 + }, + "nodes": [ + 7788535905, + 7185923463, + 7185923462 + ], + "geometry": [ + { "lat": 40.7627722, "lon": -73.9332721 }, + { "lat": 40.7626616, "lon": -73.9333718 }, + { "lat": 40.7625740, "lon": -73.9334450 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 834399430, + "bounds": { + "minlat": 40.8179580, + "minlon": -74.0044478, + "maxlat": 40.8179786, + "maxlon": -74.0042403 + }, + "nodes": [ + 7788857519, + 13525551064, + 7788857520 + ], + "geometry": [ + { "lat": 40.8179580, "lon": -74.0044478 }, + { "lat": 40.8179649, "lon": -74.0043779 }, + { "lat": 40.8179786, "lon": -74.0042403 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 834399431, + "bounds": { + "minlat": 40.8187312, + "minlon": -74.0047553, + "maxlat": 40.8188820, + "maxlon": -74.0046310 + }, + "nodes": [ + 7788857521, + 13525551068, + 7788857522, + 7788857523, + 13525551067, + 7788857524 + ], + "geometry": [ + { "lat": 40.8188705, "lon": -74.0047553 }, + { "lat": 40.8188794, "lon": -74.0046925 }, + { "lat": 40.8188820, "lon": -74.0046746 }, + { "lat": 40.8187559, "lon": -74.0046310 }, + { "lat": 40.8187524, "lon": -74.0046423 }, + { "lat": 40.8187312, "lon": -74.0047103 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 834565005, + "bounds": { + "minlat": 40.8650474, + "minlon": -73.9608334, + "maxlat": 40.8654242, + "maxlon": -73.9600153 + }, + "nodes": [ + 7790548814, + 7790548818, + 7790548815, + 7790548816, + 7790548817 + ], + "geometry": [ + { "lat": 40.8654242, "lon": -73.9608334 }, + { "lat": 40.8652270, "lon": -73.9604647 }, + { "lat": 40.8652152, "lon": -73.9604425 }, + { "lat": 40.8652129, "lon": -73.9603106 }, + { "lat": 40.8650474, "lon": -73.9600153 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 834565006, + "bounds": { + "minlat": 40.8650010, + "minlon": -73.9605375, + "maxlat": 40.8652270, + "maxlon": -73.9603528 + }, + "nodes": [ + 7790548818, + 7790548819, + 7790548820, + 7790548821 + ], + "geometry": [ + { "lat": 40.8652270, "lon": -73.9604647 }, + { "lat": 40.8651432, "lon": -73.9605375 }, + { "lat": 40.8651013, "lon": -73.9605311 }, + { "lat": 40.8650010, "lon": -73.9603528 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 835176553, + "bounds": { + "minlat": 40.7679160, + "minlon": -73.9885610, + "maxlat": 40.7691175, + "maxlon": -73.9857183 + }, + "nodes": [ + 42445037, + 10082707747, + 13207939302, + 3998699936, + 42455643 + ], + "geometry": [ + { "lat": 40.7679160, "lon": -73.9857183 }, + { "lat": 40.7679739, "lon": -73.9858553 }, + { "lat": 40.7688936, "lon": -73.9880308 }, + { "lat": 40.7690647, "lon": -73.9884355 }, + { "lat": 40.7691175, "lon": -73.9885610 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 57th Street", + "name:ru": "Западная 57-я стрит", + "name_1": "West 57 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 835176554, + "bounds": { + "minlat": 40.7685204, + "minlon": -73.9822001, + "maxlat": 40.7689504, + "maxlon": -73.9821935 + }, + "nodes": [ + 42428570, + 8732949886, + 11225191375, + 1825803850 + ], + "geometry": [ + { "lat": 40.7689504, "lon": -73.9822001 }, + { "lat": 40.7688613, "lon": -73.9821989 }, + { "lat": 40.7685807, "lon": -73.9821945 }, + { "lat": 40.7685204, "lon": -73.9821935 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "4", + "lanes:taxi": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 835176555, + "bounds": { + "minlat": 40.7689504, + "minlon": -73.9822360, + "maxlat": 40.7697925, + "maxlon": -73.9822001 + }, + "nodes": [ + 42421972, + 9904553348, + 9907441341, + 42428570 + ], + "geometry": [ + { "lat": 40.7697925, "lon": -73.9822360 }, + { "lat": 40.7697071, "lon": -73.9822319 }, + { "lat": 40.7690506, "lon": -73.9822088 }, + { "lat": 40.7689504, "lon": -73.9822001 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 835176556, + "bounds": { + "minlat": 40.7692956, + "minlon": -73.9820135, + "maxlat": 40.7696966, + "maxlon": -73.9810586 + }, + "nodes": [ + 1061531777, + 9904553342, + 12861369749, + 9509365895, + 8634037755, + 10187602683, + 10187602672, + 7837165541, + 42421969 + ], + "geometry": [ + { "lat": 40.7696966, "lon": -73.9820135 }, + { "lat": 40.7696513, "lon": -73.9819069 }, + { "lat": 40.7695111, "lon": -73.9815682 }, + { "lat": 40.7694881, "lon": -73.9815126 }, + { "lat": 40.7694821, "lon": -73.9814990 }, + { "lat": 40.7694632, "lon": -73.9814544 }, + { "lat": 40.7694372, "lon": -73.9813930 }, + { "lat": 40.7693339, "lon": -73.9811516 }, + { "lat": 40.7692956, "lon": -73.9810586 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 61st Street", + "name:ru": "Западная 61-я стрит", + "name_1": "West 61 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 835176557, + "bounds": { + "minlat": 40.7706115, + "minlon": -73.9834109, + "maxlat": 40.7710965, + "maxlon": -73.9822476 + }, + "nodes": [ + 42428575, + 9904562776, + 7447580923, + 7512568049, + 7512568052, + 9441357368, + 9441357365, + 9904385871, + 1241742563 + ], + "geometry": [ + { "lat": 40.7706115, "lon": -73.9822476 }, + { "lat": 40.7706611, "lon": -73.9823771 }, + { "lat": 40.7707921, "lon": -73.9826808 }, + { "lat": 40.7708310, "lon": -73.9827741 }, + { "lat": 40.7708987, "lon": -73.9829364 }, + { "lat": 40.7709308, "lon": -73.9830135 }, + { "lat": 40.7709814, "lon": -73.9831370 }, + { "lat": 40.7710427, "lon": -73.9832819 }, + { "lat": 40.7710965, "lon": -73.9834109 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "name": "West 62nd Street", + "name:ru": "Западная 62-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 835176558, + "bounds": { + "minlat": 40.7697925, + "minlon": -73.9822481, + "maxlat": 40.7706115, + "maxlon": -73.9822356 + }, + "nodes": [ + 42428575, + 7515977397, + 9904570981, + 42421972 + ], + "geometry": [ + { "lat": 40.7706115, "lon": -73.9822476 }, + { "lat": 40.7705339, "lon": -73.9822481 }, + { "lat": 40.7698912, "lon": -73.9822356 }, + { "lat": 40.7697925, "lon": -73.9822360 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 835176559, + "bounds": { + "minlat": 40.7713507, + "minlon": -73.9822603, + "maxlat": 40.7714348, + "maxlon": -73.9820496 + }, + "nodes": [ + 1061531447, + 42428579 + ], + "geometry": [ + { "lat": 40.7713507, "lon": -73.9820496 }, + { "lat": 40.7714348, "lon": -73.9822603 } + ], + "tags": { + "cutting": "no", + "cycleway:both": "no", + "embankment": "no", + "ford": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 63rd Street", + "name:ru": "Западная 63-я стрит", + "name_2": "Lincoln Center Plaza", + "oneway": "yes", + "surface": "asphalt", + "tunnel": "no" + } +}, +{ + "type": "way", + "id": 835176560, + "bounds": { + "minlat": 40.7717458, + "minlon": -73.9820764, + "maxlat": 40.7721684, + "maxlon": -73.9820626 + }, + "nodes": [ + 10798832217, + 11306314267, + 1061531685 + ], + "geometry": [ + { "lat": 40.7717458, "lon": -73.9820626 }, + { "lat": 40.7720954, "lon": -73.9820740 }, + { "lat": 40.7721684, "lon": -73.9820764 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|through|right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 835694479, + "bounds": { + "minlat": 40.7104309, + "minlon": -74.0094861, + "maxlat": 40.7109130, + "maxlon": -74.0090985 + }, + "nodes": [ + 42428385, + 10290135965, + 8262936605, + 8281922223, + 42428379 + ], + "geometry": [ + { "lat": 40.7109130, "lon": -74.0090985 }, + { "lat": 40.7108735, "lon": -74.0091176 }, + { "lat": 40.7108510, "lon": -74.0091313 }, + { "lat": 40.7104782, "lon": -74.0094416 }, + { "lat": 40.7104309, "lon": -74.0094861 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|yes|designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "jersey_barrier", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete:plates", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 835694480, + "bounds": { + "minlat": 40.7109130, + "minlon": -74.0104404, + "maxlat": 40.7115277, + "maxlon": -74.0090985 + }, + "nodes": [ + 42428385, + 8262936606, + 10297381609, + 10297381611, + 10301698981, + 10297381608, + 8262936503, + 8840333846 + ], + "geometry": [ + { "lat": 40.7109130, "lon": -74.0090985 }, + { "lat": 40.7109480, "lon": -74.0091670 }, + { "lat": 40.7110435, "lon": -74.0093615 }, + { "lat": 40.7111075, "lon": -74.0094996 }, + { "lat": 40.7113293, "lon": -74.0099905 }, + { "lat": 40.7114691, "lon": -74.0102998 }, + { "lat": 40.7114950, "lon": -74.0103594 }, + { "lat": 40.7115277, "lon": -74.0104404 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "name:ru": "Фултон-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 835853673, + "bounds": { + "minlat": 40.7935554, + "minlon": -73.9712080, + "maxlat": 40.7953010, + "maxlon": -73.9670321 + }, + "nodes": [ + 42443388, + 7801775750, + 7801775727, + 5669156315, + 7801775723, + 42442542, + 7801775747, + 7004447600, + 1061531504 + ], + "geometry": [ + { "lat": 40.7935554, "lon": -73.9670321 }, + { "lat": 40.7936042, "lon": -73.9671587 }, + { "lat": 40.7939688, "lon": -73.9680276 }, + { "lat": 40.7945683, "lon": -73.9694734 }, + { "lat": 40.7946835, "lon": -73.9697460 }, + { "lat": 40.7947346, "lon": -73.9698719 }, + { "lat": 40.7947895, "lon": -73.9700044 }, + { "lat": 40.7952545, "lon": -73.9710972 }, + { "lat": 40.7953010, "lon": -73.9712080 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 97th Street", + "name:ru": "Западная 97-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 836029651, + "bounds": { + "minlat": 40.7988365, + "minlon": -73.9525240, + "maxlat": 40.7990263, + "maxlon": -73.9524352 + }, + "nodes": [ + 42433161, + 7803266921, + 7803266922 + ], + "geometry": [ + { "lat": 40.7990263, "lon": -73.9524352 }, + { "lat": 40.7989538, "lon": -73.9524409 }, + { "lat": 40.7988365, "lon": -73.9525240 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 836340567, + "bounds": { + "minlat": 40.7135518, + "minlon": -73.9165988, + "maxlat": 40.7140330, + "maxlon": -73.9165474 + }, + "nodes": [ + 7806049017, + 9755788618, + 10564795324, + 7806049018 + ], + "geometry": [ + { "lat": 40.7135518, "lon": -73.9165988 }, + { "lat": 40.7136337, "lon": -73.9165904 }, + { "lat": 40.7139007, "lon": -73.9165630 }, + { "lat": 40.7140330, "lon": -73.9165474 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 837265296, + "bounds": { + "minlat": 40.7576874, + "minlon": -73.9077471, + "maxlat": 40.7579555, + "maxlon": -73.9075551 + }, + "nodes": [ + 7814160643, + 7814160630, + 7814160637, + 7814160631, + 7814160638, + 7814160642, + 7814160643 + ], + "geometry": [ + { "lat": 40.7577288, "lon": -73.9077471 }, + { "lat": 40.7579555, "lon": -73.9076001 }, + { "lat": 40.7579453, "lon": -73.9075551 }, + { "lat": 40.7576874, "lon": -73.9076423 }, + { "lat": 40.7577258, "lon": -73.9076699 }, + { "lat": 40.7577348, "lon": -73.9077098 }, + { "lat": 40.7577288, "lon": -73.9077471 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 837277517, + "bounds": { + "minlat": 40.8808476, + "minlon": -73.9886077, + "maxlat": 40.8834169, + "maxlon": -73.9844363 + }, + "nodes": [ + 3603219725, + 3603219704, + 298939980, + 6895720818, + 6895720825, + 103190572, + 6895720832, + 298940082, + 298939982, + 298939983 + ], + "geometry": [ + { "lat": 40.8834169, "lon": -73.9886077 }, + { "lat": 40.8825108, "lon": -73.9871768 }, + { "lat": 40.8822216, "lon": -73.9867239 }, + { "lat": 40.8822015, "lon": -73.9866927 }, + { "lat": 40.8820832, "lon": -73.9865097 }, + { "lat": 40.8819166, "lon": -73.9862518 }, + { "lat": 40.8818435, "lon": -73.9861321 }, + { "lat": 40.8816441, "lon": -73.9858055 }, + { "lat": 40.8813780, "lon": -73.9853592 }, + { "lat": 40.8808476, "lon": -73.9844363 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 837277519, + "bounds": { + "minlat": 40.8654388, + "minlon": -73.9743162, + "maxlat": 40.8684500, + "maxlon": -73.9732638 + }, + "nodes": [ + 1760541823, + 1760541819, + 298918561, + 3132254313, + 7087554964, + 7087554953, + 298918431, + 7087554951, + 298918434, + 298918439, + 7087554942, + 298918446, + 298918450 + ], + "geometry": [ + { "lat": 40.8684500, "lon": -73.9732638 }, + { "lat": 40.8678834, "lon": -73.9734658 }, + { "lat": 40.8676620, "lon": -73.9735431 }, + { "lat": 40.8675101, "lon": -73.9735976 }, + { "lat": 40.8673451, "lon": -73.9736573 }, + { "lat": 40.8671615, "lon": -73.9737230 }, + { "lat": 40.8669252, "lon": -73.9738122 }, + { "lat": 40.8666818, "lon": -73.9739032 }, + { "lat": 40.8665001, "lon": -73.9739691 }, + { "lat": 40.8662868, "lon": -73.9740413 }, + { "lat": 40.8660024, "lon": -73.9741380 }, + { "lat": 40.8657575, "lon": -73.9742166 }, + { "lat": 40.8654388, "lon": -73.9743162 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 837277524, + "bounds": { + "minlat": 40.8572097, + "minlon": -73.9816622, + "maxlat": 40.8572496, + "maxlon": -73.9816100 + }, + "nodes": [ + 7522302284, + 299172195 + ], + "geometry": [ + { "lat": 40.8572097, "lon": -73.9816622 }, + { "lat": 40.8572496, "lon": -73.9816100 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "United States Highway 1", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 837277528, + "bounds": { + "minlat": 40.8824646, + "minlon": -73.9885580, + "maxlat": 40.8835606, + "maxlon": -73.9868821 + }, + "nodes": [ + 12023867974, + 7111469839, + 7111469833, + 10013264850, + 10013264855, + 765596478 + ], + "geometry": [ + { "lat": 40.8824646, "lon": -73.9868821 }, + { "lat": 40.8828909, "lon": -73.9875312 }, + { "lat": 40.8832120, "lon": -73.9880217 }, + { "lat": 40.8833041, "lon": -73.9881633 }, + { "lat": 40.8835296, "lon": -73.9885097 }, + { "lat": 40.8835606, "lon": -73.9885580 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 837277529, + "bounds": { + "minlat": 40.8682709, + "minlon": -73.9731998, + "maxlat": 40.8716974, + "maxlon": -73.9723172 + }, + "nodes": [ + 3655086545, + 530805923, + 298917896, + 10942862935, + 10942862942, + 298917900, + 10942862931, + 10942862940, + 298917942, + 298918548, + 10942862933, + 10942862932, + 298917908, + 10942862928, + 298917944, + 10942862934, + 298917912, + 10942862938, + 298918549, + 392522315, + 298917917 + ], + "geometry": [ + { "lat": 40.8682709, "lon": -73.9731998 }, + { "lat": 40.8687352, "lon": -73.9730342 }, + { "lat": 40.8695288, "lon": -73.9727504 }, + { "lat": 40.8698503, "lon": -73.9726350 }, + { "lat": 40.8699581, "lon": -73.9725963 }, + { "lat": 40.8700615, "lon": -73.9725607 }, + { "lat": 40.8701682, "lon": -73.9725252 }, + { "lat": 40.8702761, "lon": -73.9724903 }, + { "lat": 40.8703822, "lon": -73.9724602 }, + { "lat": 40.8704903, "lon": -73.9724318 }, + { "lat": 40.8706007, "lon": -73.9724072 }, + { "lat": 40.8707080, "lon": -73.9723859 }, + { "lat": 40.8708184, "lon": -73.9723668 }, + { "lat": 40.8709281, "lon": -73.9723515 }, + { "lat": 40.8710357, "lon": -73.9723384 }, + { "lat": 40.8711478, "lon": -73.9723284 }, + { "lat": 40.8712583, "lon": -73.9723223 }, + { "lat": 40.8713678, "lon": -73.9723185 }, + { "lat": 40.8714782, "lon": -73.9723172 }, + { "lat": 40.8715869, "lon": -73.9723190 }, + { "lat": 40.8716974, "lon": -73.9723241 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "2", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 837277533, + "bounds": { + "minlat": 40.8565159, + "minlon": -73.9824125, + "maxlat": 40.8572097, + "maxlon": -73.9816622 + }, + "nodes": [ + 299172092, + 10752348285, + 7921551383, + 7921587266, + 299172117, + 3655086535, + 299172116, + 10942990450, + 7921587259, + 7522302284 + ], + "geometry": [ + { "lat": 40.8565159, "lon": -73.9824125 }, + { "lat": 40.8566214, "lon": -73.9823048 }, + { "lat": 40.8567500, "lon": -73.9821751 }, + { "lat": 40.8568382, "lon": -73.9820852 }, + { "lat": 40.8569276, "lon": -73.9819916 }, + { "lat": 40.8570087, "lon": -73.9819034 }, + { "lat": 40.8570628, "lon": -73.9818420 }, + { "lat": 40.8570911, "lon": -73.9818085 }, + { "lat": 40.8571719, "lon": -73.9817106 }, + { "lat": 40.8572097, "lon": -73.9816622 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "United States Highway 1", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 837277534, + "bounds": { + "minlat": 40.8822403, + "minlon": -73.9888601, + "maxlat": 40.8825897, + "maxlon": -73.9884712 + }, + "nodes": [ + 7070944239, + 3603219705, + 7070944242 + ], + "geometry": [ + { "lat": 40.8825897, "lon": -73.9884712 }, + { "lat": 40.8825266, "lon": -73.9885405 }, + { "lat": 40.8822403, "lon": -73.9888601 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Sterling Boulevard", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 837277538, + "bounds": { + "minlat": 40.8538879, + "minlon": -73.9846794, + "maxlat": 40.8546445, + "maxlon": -73.9843052 + }, + "nodes": [ + 11444811897, + 299171926, + 10943455745, + 7513033162, + 299171773, + 10943455767, + 299171948, + 10943435062, + 7513033173, + 299171949, + 299171950 + ], + "geometry": [ + { "lat": 40.8546445, "lon": -73.9843052 }, + { "lat": 40.8546105, "lon": -73.9843277 }, + { "lat": 40.8545128, "lon": -73.9843875 }, + { "lat": 40.8544990, "lon": -73.9843955 }, + { "lat": 40.8544106, "lon": -73.9844463 }, + { "lat": 40.8543085, "lon": -73.9845003 }, + { "lat": 40.8542039, "lon": -73.9845518 }, + { "lat": 40.8540996, "lon": -73.9845981 }, + { "lat": 40.8540647, "lon": -73.9846125 }, + { "lat": 40.8539927, "lon": -73.9846406 }, + { "lat": 40.8538879, "lon": -73.9846794 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes": "||slight_right" + } +}, +{ + "type": "way", + "id": 837450654, + "bounds": { + "minlat": 40.7141733, + "minlon": -74.0067392, + "maxlat": 40.7143745, + "maxlon": -74.0063041 + }, + "nodes": [ + 272195271, + 8262309635, + 12339367749 + ], + "geometry": [ + { "lat": 40.7141733, "lon": -74.0063041 }, + { "lat": 40.7142247, "lon": -74.0064152 }, + { "lat": 40.7143745, "lon": -74.0067392 } + ], + "tags": { + "hgv": "destination", + "highway": "unclassified", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 837450655, + "bounds": { + "minlat": 40.7134819, + "minlon": -74.0058972, + "maxlat": 40.7139851, + "maxlon": -74.0048174 + }, + "nodes": [ + 42431602, + 6152111542, + 7816179466 + ], + "geometry": [ + { "lat": 40.7134819, "lon": -74.0048174 }, + { "lat": 40.7139194, "lon": -74.0057551 }, + { "lat": 40.7139851, "lon": -74.0058972 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "unclassified", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "oneway": "no", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 837515831, + "bounds": { + "minlat": 40.7104600, + "minlon": -74.0145533, + "maxlat": 40.7110047, + "maxlon": -74.0143969 + }, + "nodes": [ + 6417761624, + 11374486378, + 42422028 + ], + "geometry": [ + { "lat": 40.7104600, "lon": -74.0145533 }, + { "lat": 40.7108299, "lon": -74.0144473 }, + { "lat": 40.7110047, "lon": -74.0143969 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "6", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left|through|through|through|through|right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 837515832, + "bounds": { + "minlat": 40.7182019, + "minlon": -74.0129448, + "maxlat": 40.7182267, + "maxlon": -74.0127840 + }, + "nodes": [ + 7816666409, + 7816666410, + 607906596 + ], + "geometry": [ + { "lat": 40.7182019, "lon": -74.0127840 }, + { "lat": 40.7182207, "lon": -74.0129059 }, + { "lat": 40.7182267, "lon": -74.0129448 } + ], + "tags": { + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "motor_vehicle": "no", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 837515833, + "bounds": { + "minlat": 40.7098348, + "minlon": -74.0150379, + "maxlat": 40.7103198, + "maxlon": -74.0148909 + }, + "nodes": [ + 7816666406, + 10223354310, + 11374474064, + 246858431 + ], + "geometry": [ + { "lat": 40.7103198, "lon": -74.0148909 }, + { "lat": 40.7101214, "lon": -74.0149343 }, + { "lat": 40.7099397, "lon": -74.0149975 }, + { "lat": 40.7098348, "lon": -74.0150379 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "through|through|through|through|right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 837515834, + "bounds": { + "minlat": 40.7504355, + "minlon": -74.0086221, + "maxlat": 40.7504461, + "maxlon": -74.0084864 + }, + "nodes": [ + 9143569898, + 7816666407, + 2208862794 + ], + "geometry": [ + { "lat": 40.7504355, "lon": -74.0084864 }, + { "lat": 40.7504419, "lon": -74.0085685 }, + { "lat": 40.7504461, "lon": -74.0086221 } + ], + "tags": { + "access": "no", + "highway": "service", + "lanes": "1", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 837515835, + "bounds": { + "minlat": 40.7110816, + "minlon": -74.0159908, + "maxlat": 40.7115841, + "maxlon": -74.0157844 + }, + "nodes": [ + 4281671258, + 12299126171, + 5215013202, + 11424681368, + 42422026 + ], + "geometry": [ + { "lat": 40.7110816, "lon": -74.0159908 }, + { "lat": 40.7113955, "lon": -74.0158730 }, + { "lat": 40.7114496, "lon": -74.0158521 }, + { "lat": 40.7115150, "lon": -74.0158222 }, + { "lat": 40.7115841, "lon": -74.0157844 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "South End Avenue", + "name:ko": "사우스 엔드 애비뉴", + "oneway": "no", + "parking:left:restriction": "no_standing", + "parking:left:taxi": "designated", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-10:00)", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 837694579, + "bounds": { + "minlat": 40.7159390, + "minlon": -73.9450840, + "maxlat": 40.7187820, + "maxlon": -73.9446150 + }, + "nodes": [ + 42467885, + 6235394676, + 11229826582, + 9945679644, + 42467889, + 9945679643, + 11229826581, + 9795356025, + 42467892, + 9795356023, + 5520860782, + 42467894, + 5520860771, + 11229826580, + 11026017884, + 42467896 + ], + "geometry": [ + { "lat": 40.7159390, "lon": -73.9446150 }, + { "lat": 40.7160003, "lon": -73.9446253 }, + { "lat": 40.7163865, "lon": -73.9446900 }, + { "lat": 40.7165940, "lon": -73.9447248 }, + { "lat": 40.7166490, "lon": -73.9447340 }, + { "lat": 40.7167129, "lon": -73.9447444 }, + { "lat": 40.7169096, "lon": -73.9447766 }, + { "lat": 40.7172990, "lon": -73.9448405 }, + { "lat": 40.7173570, "lon": -73.9448500 }, + { "lat": 40.7174297, "lon": -73.9448619 }, + { "lat": 40.7180112, "lon": -73.9449570 }, + { "lat": 40.7180660, "lon": -73.9449660 }, + { "lat": 40.7181341, "lon": -73.9449772 }, + { "lat": 40.7185844, "lon": -73.9450514 }, + { "lat": 40.7187172, "lon": -73.9450733 }, + { "lat": 40.7187820, "lon": -73.9450840 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 837694580, + "bounds": { + "minlat": 40.7152280, + "minlon": -73.9446150, + "maxlat": 40.7159390, + "maxlon": -73.9444991 + }, + "nodes": [ + 42467880, + 6235394672, + 6235394677, + 42467885 + ], + "geometry": [ + { "lat": 40.7152280, "lon": -73.9444991 }, + { "lat": 40.7153045, "lon": -73.9445116 }, + { "lat": 40.7158812, "lon": -73.9446056 }, + { "lat": 40.7159390, "lon": -73.9446150 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle": "yes", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Su,Sa 12:00-23:00)", + "name": "Graham Avenue", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 837696041, + "bounds": { + "minlat": 40.7716503, + "minlon": -73.9947520, + "maxlat": 40.7716986, + "maxlon": -73.9946355 + }, + "nodes": [ + 7818397385, + 2376384679, + 7818397387 + ], + "geometry": [ + { "lat": 40.7716503, "lon": -73.9946355 }, + { "lat": 40.7716775, "lon": -73.9947064 }, + { "lat": 40.7716986, "lon": -73.9947520 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 837696043, + "bounds": { + "minlat": 40.7801950, + "minlon": -73.9842013, + "maxlat": 40.7804948, + "maxlon": -73.9839842 + }, + "nodes": [ + 7818397388, + 9492556588, + 42431005 + ], + "geometry": [ + { "lat": 40.7801950, "lon": -73.9842013 }, + { "lat": 40.7804394, "lon": -73.9840238 }, + { "lat": 40.7804948, "lon": -73.9839842 } + ], + "tags": { + "cycleway:both": "no", + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696044, + "bounds": { + "minlat": 40.7804948, + "minlon": -73.9839842, + "maxlat": 40.7811287, + "maxlon": -73.9835232 + }, + "nodes": [ + 42431005, + 9177400764, + 9492556579, + 42431007 + ], + "geometry": [ + { "lat": 40.7804948, "lon": -73.9839842 }, + { "lat": 40.7805529, "lon": -73.9839426 }, + { "lat": 40.7810752, "lon": -73.9835605 }, + { "lat": 40.7811287, "lon": -73.9835232 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696045, + "bounds": { + "minlat": 40.7811287, + "minlon": -73.9835232, + "maxlat": 40.7814533, + "maxlon": -73.9832853 + }, + "nodes": [ + 42431007, + 9492556578, + 7818397389 + ], + "geometry": [ + { "lat": 40.7811287, "lon": -73.9835232 }, + { "lat": 40.7811875, "lon": -73.9834796 }, + { "lat": 40.7814533, "lon": -73.9832853 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696046, + "bounds": { + "minlat": 40.7814533, + "minlon": -73.9832853, + "maxlat": 40.7817655, + "maxlon": -73.9830559 + }, + "nodes": [ + 7818397389, + 9492556562, + 42431008 + ], + "geometry": [ + { "lat": 40.7814533, "lon": -73.9832853 }, + { "lat": 40.7817089, "lon": -73.9830976 }, + { "lat": 40.7817655, "lon": -73.9830559 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696047, + "bounds": { + "minlat": 40.7817655, + "minlon": -73.9830559, + "maxlat": 40.7824008, + "maxlon": -73.9825964 + }, + "nodes": [ + 42431008, + 9492556531, + 9492556546, + 42431009 + ], + "geometry": [ + { "lat": 40.7817655, "lon": -73.9830559 }, + { "lat": 40.7818228, "lon": -73.9830152 }, + { "lat": 40.7823479, "lon": -73.9826361 }, + { "lat": 40.7824008, "lon": -73.9825964 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696048, + "bounds": { + "minlat": 40.7824008, + "minlon": -73.9825964, + "maxlat": 40.7827338, + "maxlon": -73.9823496 + }, + "nodes": [ + 42431009, + 9492542185, + 7818397390 + ], + "geometry": [ + { "lat": 40.7824008, "lon": -73.9825964 }, + { "lat": 40.7824555, "lon": -73.9825551 }, + { "lat": 40.7827338, "lon": -73.9823496 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696049, + "bounds": { + "minlat": 40.7830455, + "minlon": -73.9821238, + "maxlat": 40.7836663, + "maxlon": -73.9816706 + }, + "nodes": [ + 42431015, + 9492556557, + 9492542184, + 42428068 + ], + "geometry": [ + { "lat": 40.7830455, "lon": -73.9821238 }, + { "lat": 40.7830871, "lon": -73.9820921 }, + { "lat": 40.7836140, "lon": -73.9817098 }, + { "lat": 40.7836663, "lon": -73.9816706 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696050, + "bounds": { + "minlat": 40.7827338, + "minlon": -73.9823496, + "maxlat": 40.7830455, + "maxlon": -73.9821238 + }, + "nodes": [ + 7818397390, + 9492556527, + 42431015 + ], + "geometry": [ + { "lat": 40.7827338, "lon": -73.9823496 }, + { "lat": 40.7829726, "lon": -73.9821790 }, + { "lat": 40.7830455, "lon": -73.9821238 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696051, + "bounds": { + "minlat": 40.7836663, + "minlon": -73.9816706, + "maxlat": 40.7840225, + "maxlon": -73.9814104 + }, + "nodes": [ + 42428068, + 9492556572, + 7818397391 + ], + "geometry": [ + { "lat": 40.7836663, "lon": -73.9816706 }, + { "lat": 40.7837252, "lon": -73.9816267 }, + { "lat": 40.7840225, "lon": -73.9814104 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696052, + "bounds": { + "minlat": 40.7843536, + "minlon": -73.9811697, + "maxlat": 40.7846542, + "maxlon": -73.9809518 + }, + "nodes": [ + 42431019, + 8727756096, + 7818397392 + ], + "geometry": [ + { "lat": 40.7843536, "lon": -73.9811697 }, + { "lat": 40.7844501, "lon": -73.9810985 }, + { "lat": 40.7846542, "lon": -73.9809518 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696053, + "bounds": { + "minlat": 40.7840225, + "minlon": -73.9814104, + "maxlat": 40.7842620, + "maxlon": -73.9812367 + }, + "nodes": [ + 7818397391, + 8727756099 + ], + "geometry": [ + { "lat": 40.7840225, "lon": -73.9814104 }, + { "lat": 40.7842620, "lon": -73.9812367 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696054, + "bounds": { + "minlat": 40.7850352, + "minlon": -73.9806732, + "maxlat": 40.7853625, + "maxlon": -73.9804315 + }, + "nodes": [ + 42421776, + 8727756088, + 7818397393 + ], + "geometry": [ + { "lat": 40.7850352, "lon": -73.9806732 }, + { "lat": 40.7850908, "lon": -73.9806326 }, + { "lat": 40.7853625, "lon": -73.9804315 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696055, + "bounds": { + "minlat": 40.7846542, + "minlon": -73.9809518, + "maxlat": 40.7850352, + "maxlon": -73.9806732 + }, + "nodes": [ + 7818397392, + 8727756092, + 42421776 + ], + "geometry": [ + { "lat": 40.7846542, "lon": -73.9809518 }, + { "lat": 40.7849827, "lon": -73.9807116 }, + { "lat": 40.7850352, "lon": -73.9806732 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696056, + "bounds": { + "minlat": 40.7853625, + "minlon": -73.9804315, + "maxlat": 40.7856725, + "maxlon": -73.9802092 + }, + "nodes": [ + 7818397393, + 8727756084, + 42431024 + ], + "geometry": [ + { "lat": 40.7853625, "lon": -73.9804315 }, + { "lat": 40.7856105, "lon": -73.9802518 }, + { "lat": 40.7856725, "lon": -73.9802092 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696057, + "bounds": { + "minlat": 40.7856725, + "minlon": -73.9802092, + "maxlat": 40.7863040, + "maxlon": -73.9797464 + }, + "nodes": [ + 42431024, + 8727756080, + 8727756076, + 42431027 + ], + "geometry": [ + { "lat": 40.7856725, "lon": -73.9802092 }, + { "lat": 40.7857292, "lon": -73.9801689 }, + { "lat": 40.7862488, "lon": -73.9797865 }, + { "lat": 40.7863040, "lon": -73.9797464 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696058, + "bounds": { + "minlat": 40.7863040, + "minlon": -73.9797464, + "maxlat": 40.7866211, + "maxlon": -73.9795131 + }, + "nodes": [ + 42431027, + 8727756072, + 7818397394 + ], + "geometry": [ + { "lat": 40.7863040, "lon": -73.9797464 }, + { "lat": 40.7863577, "lon": -73.9797070 }, + { "lat": 40.7866211, "lon": -73.9795131 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696059, + "bounds": { + "minlat": 40.7869367, + "minlon": -73.9792880, + "maxlat": 40.7875711, + "maxlon": -73.9788225 + }, + "nodes": [ + 42431030, + 8727756067, + 8727756061, + 42421810 + ], + "geometry": [ + { "lat": 40.7869367, "lon": -73.9792880 }, + { "lat": 40.7869983, "lon": -73.9792438 }, + { "lat": 40.7875201, "lon": -73.9788613 }, + { "lat": 40.7875711, "lon": -73.9788225 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696060, + "bounds": { + "minlat": 40.7866211, + "minlon": -73.9795131, + "maxlat": 40.7869367, + "maxlon": -73.9792880 + }, + "nodes": [ + 7818397394, + 8727756070, + 42431030 + ], + "geometry": [ + { "lat": 40.7866211, "lon": -73.9795131 }, + { "lat": 40.7868819, "lon": -73.9793262 }, + { "lat": 40.7869367, "lon": -73.9792880 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696061, + "bounds": { + "minlat": 40.7875711, + "minlon": -73.9788225, + "maxlat": 40.7878976, + "maxlon": -73.9785833 + }, + "nodes": [ + 42421810, + 8727756058, + 7818397395 + ], + "geometry": [ + { "lat": 40.7875711, "lon": -73.9788225 }, + { "lat": 40.7876326, "lon": -73.9787769 }, + { "lat": 40.7878976, "lon": -73.9785833 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696062, + "bounds": { + "minlat": 40.7878976, + "minlon": -73.9785833, + "maxlat": 40.7882037, + "maxlon": -73.9783631 + }, + "nodes": [ + 7818397395, + 8727756056, + 42431034 + ], + "geometry": [ + { "lat": 40.7878976, "lon": -73.9785833 }, + { "lat": 40.7881546, "lon": -73.9784000 }, + { "lat": 40.7882037, "lon": -73.9783631 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696063, + "bounds": { + "minlat": 40.7882660, + "minlon": -73.9783146, + "maxlat": 40.7885891, + "maxlon": -73.9780790 + }, + "nodes": [ + 8727756052, + 7818397396 + ], + "geometry": [ + { "lat": 40.7882660, "lon": -73.9783146 }, + { "lat": 40.7885891, "lon": -73.9780790 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696064, + "bounds": { + "minlat": 40.7885891, + "minlon": -73.9780790, + "maxlat": 40.7888916, + "maxlon": -73.9778597 + }, + "nodes": [ + 7818397396, + 9492556528, + 42431037 + ], + "geometry": [ + { "lat": 40.7885891, "lon": -73.9780790 }, + { "lat": 40.7887974, "lon": -73.9779274 }, + { "lat": 40.7888916, "lon": -73.9778597 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:forward": "left|through|right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696065, + "bounds": { + "minlat": 40.7892539, + "minlon": -73.9775934, + "maxlat": 40.7895635, + "maxlon": -73.9773679 + }, + "nodes": [ + 7818397397, + 11670601659, + 42431039 + ], + "geometry": [ + { "lat": 40.7892539, "lon": -73.9775934 }, + { "lat": 40.7895101, "lon": -73.9774068 }, + { "lat": 40.7895635, "lon": -73.9773679 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696066, + "bounds": { + "minlat": 40.7901949, + "minlon": -73.9769096, + "maxlat": 40.7905071, + "maxlon": -73.9766797 + }, + "nodes": [ + 42431044, + 11670601668, + 7818397398 + ], + "geometry": [ + { "lat": 40.7901949, "lon": -73.9769096 }, + { "lat": 40.7902490, "lon": -73.9768698 }, + { "lat": 40.7905071, "lon": -73.9766797 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "postal_code": "10024", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696067, + "bounds": { + "minlat": 40.7905071, + "minlon": -73.9766797, + "maxlat": 40.7908218, + "maxlon": -73.9764487 + }, + "nodes": [ + 7818397398, + 9492542201, + 42422016 + ], + "geometry": [ + { "lat": 40.7905071, "lon": -73.9766797 }, + { "lat": 40.7907670, "lon": -73.9764900 }, + { "lat": 40.7908218, "lon": -73.9764487 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "postal_code": "10024", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696068, + "bounds": { + "minlat": 40.7908218, + "minlon": -73.9764487, + "maxlat": 40.7914429, + "maxlon": -73.9759966 + }, + "nodes": [ + 42422016, + 9492542181, + 9492542178, + 42431057 + ], + "geometry": [ + { "lat": 40.7908218, "lon": -73.9764487 }, + { "lat": 40.7908778, "lon": -73.9764073 }, + { "lat": 40.7913916, "lon": -73.9760353 }, + { "lat": 40.7914429, "lon": -73.9759966 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "postal_code": "10024", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696069, + "bounds": { + "minlat": 40.7914429, + "minlon": -73.9759966, + "maxlat": 40.7917722, + "maxlon": -73.9757557 + }, + "nodes": [ + 42431057, + 9492556587, + 7818397399 + ], + "geometry": [ + { "lat": 40.7914429, "lon": -73.9759966 }, + { "lat": 40.7915081, "lon": -73.9759495 }, + { "lat": 40.7917722, "lon": -73.9757557 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "postal_code": "10024", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696070, + "bounds": { + "minlat": 40.7917722, + "minlon": -73.9757557, + "maxlat": 40.7920832, + "maxlon": -73.9755293 + }, + "nodes": [ + 7818397399, + 9492556586, + 42431067 + ], + "geometry": [ + { "lat": 40.7917722, "lon": -73.9757557 }, + { "lat": 40.7920205, "lon": -73.9755747 }, + { "lat": 40.7920832, "lon": -73.9755293 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "postal_code": "10024", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696071, + "bounds": { + "minlat": 40.7927000, + "minlon": -73.9750829, + "maxlat": 40.7930235, + "maxlon": -73.9748444 + }, + "nodes": [ + 42431078, + 9492556612, + 7818397400 + ], + "geometry": [ + { "lat": 40.7927000, "lon": -73.9750829 }, + { "lat": 40.7927618, "lon": -73.9750368 }, + { "lat": 40.7930235, "lon": -73.9748444 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696072, + "bounds": { + "minlat": 40.7930235, + "minlon": -73.9748444, + "maxlat": 40.7933289, + "maxlon": -73.9746223 + }, + "nodes": [ + 7818397400, + 9492542212, + 42431089 + ], + "geometry": [ + { "lat": 40.7930235, "lon": -73.9748444 }, + { "lat": 40.7932765, "lon": -73.9746618 }, + { "lat": 40.7933289, "lon": -73.9746223 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696073, + "bounds": { + "minlat": 40.7933289, + "minlon": -73.9746223, + "maxlat": 40.7939557, + "maxlon": -73.9741657 + }, + "nodes": [ + 42431089, + 9492556522, + 9492542177, + 42431094 + ], + "geometry": [ + { "lat": 40.7933289, "lon": -73.9746223 }, + { "lat": 40.7933868, "lon": -73.9745812 }, + { "lat": 40.7939027, "lon": -73.9742034 }, + { "lat": 40.7939557, "lon": -73.9741657 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696074, + "bounds": { + "minlat": 40.7939557, + "minlon": -73.9741657, + "maxlat": 40.7942162, + "maxlon": -73.9739746 + }, + "nodes": [ + 42431094, + 9492556571, + 7818397401 + ], + "geometry": [ + { "lat": 40.7939557, "lon": -73.9741657 }, + { "lat": 40.7940163, "lon": -73.9741221 }, + { "lat": 40.7942162, "lon": -73.9739746 } + ], + "tags": { + "cycleway:both": "no", + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837696075, + "bounds": { + "minlat": 40.7942162, + "minlon": -73.9739746, + "maxlat": 40.7945890, + "maxlon": -73.9737051 + }, + "nodes": [ + 7818397401, + 9492542193, + 42431096 + ], + "geometry": [ + { "lat": 40.7942162, "lon": -73.9739746 }, + { "lat": 40.7945283, "lon": -73.9737483 }, + { "lat": 40.7945890, "lon": -73.9737051 } + ], + "tags": { + "cycleway:both": "no", + "goods": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 837865736, + "bounds": { + "minlat": 40.7898684, + "minlon": -73.9097585, + "maxlat": 40.7906959, + "maxlon": -73.9069462 + }, + "nodes": [ + 5622397269, + 5622397270, + 5622397271, + 5622397276, + 5622397272, + 5622397273, + 5622397275 + ], + "geometry": [ + { "lat": 40.7906862, "lon": -73.9097585 }, + { "lat": 40.7906959, "lon": -73.9094043 }, + { "lat": 40.7902468, "lon": -73.9070273 }, + { "lat": 40.7902121, "lon": -73.9069697 }, + { "lat": 40.7901644, "lon": -73.9069462 }, + { "lat": 40.7900723, "lon": -73.9069846 }, + { "lat": 40.7898684, "lon": -73.9072051 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 837865737, + "bounds": { + "minlat": 40.7899983, + "minlon": -73.9107016, + "maxlat": 40.7906862, + "maxlon": -73.9097585 + }, + "nodes": [ + 5622397263, + 7820216824, + 7820216825, + 5622397269 + ], + "geometry": [ + { "lat": 40.7899983, "lon": -73.9107016 }, + { "lat": 40.7903321, "lon": -73.9101818 }, + { "lat": 40.7905563, "lon": -73.9098700 }, + { "lat": 40.7906862, "lon": -73.9097585 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 837865738, + "bounds": { + "minlat": 40.7896468, + "minlon": -73.9107016, + "maxlat": 40.7899983, + "maxlon": -73.9102194 + }, + "nodes": [ + 5622397253, + 7820216828, + 5622397263 + ], + "geometry": [ + { "lat": 40.7896468, "lon": -73.9102194 }, + { "lat": 40.7898381, "lon": -73.9104818 }, + { "lat": 40.7899983, "lon": -73.9107016 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 837865739, + "bounds": { + "minlat": 40.7896938, + "minlon": -73.9083252, + "maxlat": 40.7898727, + "maxlon": -73.9080604 + }, + "nodes": [ + 7820216826, + 7820216827 + ], + "geometry": [ + { "lat": 40.7898727, "lon": -73.9083252 }, + { "lat": 40.7896938, "lon": -73.9080604 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 837865740, + "bounds": { + "minlat": 40.7898381, + "minlon": -73.9104818, + "maxlat": 40.7903316, + "maxlon": -73.9098862 + }, + "nodes": [ + 7820216828, + 7820216829 + ], + "geometry": [ + { "lat": 40.7898381, "lon": -73.9104818 }, + { "lat": 40.7903316, "lon": -73.9098862 } + ], + "tags": { + "access": "private", + "highway": "track" + } +}, +{ + "type": "way", + "id": 837943498, + "bounds": { + "minlat": 40.7053189, + "minlon": -74.0133583, + "maxlat": 40.7056227, + "maxlon": -74.0133391 + }, + "nodes": [ + 11676490352, + 42428558, + 10316226089, + 42428552, + 42428546, + 10316226090 + ], + "geometry": [ + { "lat": 40.7056227, "lon": -74.0133391 }, + { "lat": 40.7055780, "lon": -74.0133464 }, + { "lat": 40.7055179, "lon": -74.0133543 }, + { "lat": 40.7054599, "lon": -74.0133583 }, + { "lat": 40.7054019, "lon": -74.0133572 }, + { "lat": 40.7053189, "lon": -74.0133536 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "designated", + "highway": "living_street", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "maxspeed:advisory": "5 mph", + "motor_vehicle": "yes", + "name": "Broadway", + "name:en": "Broadway", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 837943499, + "bounds": { + "minlat": 40.7098263, + "minlon": -74.0100172, + "maxlat": 40.7103389, + "maxlon": -74.0095729 + }, + "nodes": [ + 42428377, + 10297381651, + 10297381649, + 10297381650, + 8281922229, + 42428376 + ], + "geometry": [ + { "lat": 40.7103389, "lon": -74.0095729 }, + { "lat": 40.7103254, "lon": -74.0095876 }, + { "lat": 40.7102833, "lon": -74.0096265 }, + { "lat": 40.7099169, "lon": -74.0099401 }, + { "lat": 40.7098708, "lon": -74.0099787 }, + { "lat": 40.7098263, "lon": -74.0100172 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete:plates", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 838228417, + "bounds": { + "minlat": 40.8441516, + "minlon": -73.9118344, + "maxlat": 40.8456286, + "maxlon": -73.9108177 + }, + "nodes": [ + 2408348782, + 12044634385, + 12044634384, + 12044634383, + 12044634382, + 12044634381, + 2408348785, + 12044634380, + 12044634379, + 2408348779, + 12044634378, + 12044634377, + 2408348777, + 12044634376, + 2408350744, + 12044636969, + 12044636970, + 2408350743, + 2408350749, + 12044636971, + 12044636972 + ], + "geometry": [ + { "lat": 40.8456286, "lon": -73.9108177 }, + { "lat": 40.8455397, "lon": -73.9109170 }, + { "lat": 40.8454781, "lon": -73.9109844 }, + { "lat": 40.8454140, "lon": -73.9110506 }, + { "lat": 40.8453479, "lon": -73.9111161 }, + { "lat": 40.8452803, "lon": -73.9111788 }, + { "lat": 40.8452131, "lon": -73.9112363 }, + { "lat": 40.8451416, "lon": -73.9112950 }, + { "lat": 40.8450743, "lon": -73.9113505 }, + { "lat": 40.8449985, "lon": -73.9114073 }, + { "lat": 40.8449204, "lon": -73.9114638 }, + { "lat": 40.8448564, "lon": -73.9115053 }, + { "lat": 40.8447755, "lon": -73.9115545 }, + { "lat": 40.8447002, "lon": -73.9115971 }, + { "lat": 40.8446316, "lon": -73.9116325 }, + { "lat": 40.8445507, "lon": -73.9116731 }, + { "lat": 40.8444747, "lon": -73.9117094 }, + { "lat": 40.8443957, "lon": -73.9117437 }, + { "lat": 40.8443159, "lon": -73.9117762 }, + { "lat": 40.8442393, "lon": -73.9118042 }, + { "lat": 40.8441516, "lon": -73.9118344 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "foot": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 838228419, + "bounds": { + "minlat": 40.8456286, + "minlon": -73.9108177, + "maxlat": 40.8470936, + "maxlon": -73.9087473 + }, + "nodes": [ + 2408348783, + 2408348773, + 2408348781, + 12044646015, + 12044646014, + 12044646013, + 3640025925, + 12044646012, + 2408348782 + ], + "geometry": [ + { "lat": 40.8470936, "lon": -73.9087473 }, + { "lat": 40.8462395, "lon": -73.9099787 }, + { "lat": 40.8460231, "lon": -73.9102868 }, + { "lat": 40.8459611, "lon": -73.9103773 }, + { "lat": 40.8458898, "lon": -73.9104779 }, + { "lat": 40.8458188, "lon": -73.9105788 }, + { "lat": 40.8457556, "lon": -73.9106638 }, + { "lat": 40.8456945, "lon": -73.9107396 }, + { "lat": 40.8456286, "lon": -73.9108177 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "foot": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 838228421, + "bounds": { + "minlat": 40.8468718, + "minlon": -73.9084724, + "maxlat": 40.8477793, + "maxlon": -73.9073365 + }, + "nodes": [ + 2408348788, + 12798385421, + 12798385417, + 2408348772, + 2408359289, + 12089694338, + 12089694339, + 11492469806, + 4606046844 + ], + "geometry": [ + { "lat": 40.8468718, "lon": -73.9084724 }, + { "lat": 40.8469256, "lon": -73.9083977 }, + { "lat": 40.8469830, "lon": -73.9083180 }, + { "lat": 40.8470261, "lon": -73.9082582 }, + { "lat": 40.8475295, "lon": -73.9076255 }, + { "lat": 40.8475961, "lon": -73.9075451 }, + { "lat": 40.8476615, "lon": -73.9074679 }, + { "lat": 40.8477202, "lon": -73.9074035 }, + { "lat": 40.8477793, "lon": -73.9073365 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "lanes": "1", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 838228426, + "bounds": { + "minlat": 40.8428787, + "minlon": -73.9118398, + "maxlat": 40.8429311, + "maxlon": -73.9118215 + }, + "nodes": [ + 7823245731, + 2408350747 + ], + "geometry": [ + { "lat": 40.8428787, "lon": -73.9118398 }, + { "lat": 40.8429311, "lon": -73.9118215 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "no", + "highway": "tertiary", + "lanes": "1", + "name": "Grand Concourse", + "oneway": "yes", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 838376834, + "bounds": { + "minlat": 40.7246920, + "minlon": -73.9092755, + "maxlat": 40.7247264, + "maxlon": -73.9087670 + }, + "nodes": [ + 42827438, + 13247299350, + 7824475172 + ], + "geometry": [ + { "lat": 40.7246920, "lon": -73.9087670 }, + { "lat": 40.7246978, "lon": -73.9088530 }, + { "lat": 40.7247264, "lon": -73.9092755 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838377051, + "bounds": { + "minlat": 40.7279890, + "minlon": -73.9067096, + "maxlat": 40.7281785, + "maxlon": -73.9063999 + }, + "nodes": [ + 7824472481, + 10203944828, + 7824472482 + ], + "geometry": [ + { "lat": 40.7281785, "lon": -73.9067096 }, + { "lat": 40.7280450, "lon": -73.9064911 }, + { "lat": 40.7279890, "lon": -73.9063999 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 838384507, + "bounds": { + "minlat": 40.7378595, + "minlon": -73.9330132, + "maxlat": 40.7380665, + "maxlon": -73.9328889 + }, + "nodes": [ + 7824544615, + 10743722236, + 7824544616 + ], + "geometry": [ + { "lat": 40.7380665, "lon": -73.9330132 }, + { "lat": 40.7379181, "lon": -73.9329241 }, + { "lat": 40.7378595, "lon": -73.9328889 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384509, + "bounds": { + "minlat": 40.7378559, + "minlon": -73.9413988, + "maxlat": 40.7381750, + "maxlon": -73.9406060 + }, + "nodes": [ + 7824544617, + 11211159761, + 42833299 + ], + "geometry": [ + { "lat": 40.7378559, "lon": -73.9413988 }, + { "lat": 40.7381430, "lon": -73.9406855 }, + { "lat": 40.7381750, "lon": -73.9406060 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384510, + "bounds": { + "minlat": 40.7374708, + "minlon": -73.9415128, + "maxlat": 40.7377015, + "maxlon": -73.9413787 + }, + "nodes": [ + 7824544618, + 7824544619 + ], + "geometry": [ + { "lat": 40.7377015, "lon": -73.9415128 }, + { "lat": 40.7374708, "lon": -73.9413787 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384511, + "bounds": { + "minlat": 40.7373509, + "minlon": -73.9418307, + "maxlat": 40.7375795, + "maxlon": -73.9416832 + }, + "nodes": [ + 7824544620, + 7824544621 + ], + "geometry": [ + { "lat": 40.7375795, "lon": -73.9418307 }, + { "lat": 40.7373509, "lon": -73.9416832 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384512, + "bounds": { + "minlat": 40.7373509, + "minlon": -73.9416832, + "maxlat": 40.7374708, + "maxlon": -73.9413787 + }, + "nodes": [ + 7824544621, + 7824544619 + ], + "geometry": [ + { "lat": 40.7373509, "lon": -73.9416832 }, + { "lat": 40.7374708, "lon": -73.9413787 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384513, + "bounds": { + "minlat": 40.7375795, + "minlon": -73.9418307, + "maxlat": 40.7377015, + "maxlon": -73.9415128 + }, + "nodes": [ + 7824544620, + 7824544618 + ], + "geometry": [ + { "lat": 40.7375795, "lon": -73.9418307 }, + { "lat": 40.7377015, "lon": -73.9415128 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384514, + "bounds": { + "minlat": 40.7377015, + "minlon": -73.9415128, + "maxlat": 40.7378559, + "maxlon": -73.9413988 + }, + "nodes": [ + 7824544617, + 7824544618 + ], + "geometry": [ + { "lat": 40.7378559, "lon": -73.9413988 }, + { "lat": 40.7377015, "lon": -73.9415128 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384515, + "bounds": { + "minlat": 40.7407259, + "minlon": -73.9513288, + "maxlat": 40.7408630, + "maxlon": -73.9512618 + }, + "nodes": [ + 7824544622, + 12971194679, + 5481857855 + ], + "geometry": [ + { "lat": 40.7408630, "lon": -73.9512618 }, + { "lat": 40.7408157, "lon": -73.9512849 }, + { "lat": 40.7407259, "lon": -73.9513288 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384516, + "bounds": { + "minlat": 40.7408630, + "minlon": -73.9512618, + "maxlat": 40.7411513, + "maxlon": -73.9505277 + }, + "nodes": [ + 7824544622, + 7824544624 + ], + "geometry": [ + { "lat": 40.7408630, "lon": -73.9512618 }, + { "lat": 40.7411513, "lon": -73.9505277 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384517, + "bounds": { + "minlat": 40.7393189, + "minlon": -73.9409934, + "maxlat": 40.7398698, + "maxlon": -73.9403358 + }, + "nodes": [ + 7824544626, + 8926818366, + 7824544628, + 7824544627 + ], + "geometry": [ + { "lat": 40.7393189, "lon": -73.9409934 }, + { "lat": 40.7393601, "lon": -73.9409445 }, + { "lat": 40.7397722, "lon": -73.9404524 }, + { "lat": 40.7398698, "lon": -73.9403358 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384518, + "bounds": { + "minlat": 40.7390640, + "minlon": -73.9404524, + "maxlat": 40.7397722, + "maxlon": -73.9404232 + }, + "nodes": [ + 7824544628, + 8938937548, + 8926818365, + 7824544629 + ], + "geometry": [ + { "lat": 40.7397722, "lon": -73.9404524 }, + { "lat": 40.7394994, "lon": -73.9404428 }, + { "lat": 40.7391477, "lon": -73.9404305 }, + { "lat": 40.7390640, "lon": -73.9404232 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384519, + "bounds": { + "minlat": 40.7404106, + "minlon": -73.9401847, + "maxlat": 40.7405854, + "maxlon": -73.9385311 + }, + "nodes": [ + 7824544630, + 7824544637, + 7824544631 + ], + "geometry": [ + { "lat": 40.7405854, "lon": -73.9401847 }, + { "lat": 40.7405431, "lon": -73.9397662 }, + { "lat": 40.7404106, "lon": -73.9385311 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 838384520, + "bounds": { + "minlat": 40.7388793, + "minlon": -73.9388483, + "maxlat": 40.7404106, + "maxlon": -73.9385311 + }, + "nodes": [ + 7824544631, + 7824544632 + ], + "geometry": [ + { "lat": 40.7404106, "lon": -73.9385311 }, + { "lat": 40.7388793, "lon": -73.9388483 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 838384523, + "bounds": { + "minlat": 40.7391298, + "minlon": -73.9400873, + "maxlat": 40.7405431, + "maxlon": -73.9397662 + }, + "nodes": [ + 7824544636, + 7824544637 + ], + "geometry": [ + { "lat": 40.7391298, "lon": -73.9400873 }, + { "lat": 40.7405431, "lon": -73.9397662 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384524, + "bounds": { + "minlat": 40.7398698, + "minlon": -73.9403358, + "maxlat": 40.7405854, + "maxlon": -73.9401847 + }, + "nodes": [ + 7824544630, + 7824544627 + ], + "geometry": [ + { "lat": 40.7405854, "lon": -73.9401847 }, + { "lat": 40.7398698, "lon": -73.9403358 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838384526, + "bounds": { + "minlat": 40.7391261, + "minlon": -73.9411536, + "maxlat": 40.7393865, + "maxlon": -73.9405692 + }, + "nodes": [ + 277046657, + 7824544626, + 7824544625 + ], + "geometry": [ + { "lat": 40.7391261, "lon": -73.9405692 }, + { "lat": 40.7393189, "lon": -73.9409934 }, + { "lat": 40.7393865, "lon": -73.9411536 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "foot": "yes", + "highway": "unclassified", + "horse": "no", + "motor_vehicle": "no", + "name": "Borden Avenue", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 838386652, + "bounds": { + "minlat": 40.7384261, + "minlon": -73.9424384, + "maxlat": 40.7387035, + "maxlon": -73.9410423 + }, + "nodes": [ + 7824536262, + 7824536264, + 7824536263 + ], + "geometry": [ + { "lat": 40.7387035, "lon": -73.9424384 }, + { "lat": 40.7385071, "lon": -73.9414260 }, + { "lat": 40.7384261, "lon": -73.9410423 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838386653, + "bounds": { + "minlat": 40.7385071, + "minlon": -73.9414260, + "maxlat": 40.7387822, + "maxlon": -73.9413375 + }, + "nodes": [ + 7824536264, + 11191764427, + 7824536265 + ], + "geometry": [ + { "lat": 40.7385071, "lon": -73.9414260 }, + { "lat": 40.7386986, "lon": -73.9413644 }, + { "lat": 40.7387822, "lon": -73.9413375 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838386654, + "bounds": { + "minlat": 40.7382584, + "minlon": -73.9424880, + "maxlat": 40.7385653, + "maxlon": -73.9409485 + }, + "nodes": [ + 7824536266, + 7824536268 + ], + "geometry": [ + { "lat": 40.7385653, "lon": -73.9424880 }, + { "lat": 40.7382584, "lon": -73.9409485 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838386655, + "bounds": { + "minlat": 40.7382584, + "minlon": -73.9409485, + "maxlat": 40.7383419, + "maxlon": -73.9407120 + }, + "nodes": [ + 7824536268, + 11211159763, + 7824536267 + ], + "geometry": [ + { "lat": 40.7382584, "lon": -73.9409485 }, + { "lat": 40.7383132, "lon": -73.9407932 }, + { "lat": 40.7383419, "lon": -73.9407120 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838386656, + "bounds": { + "minlat": 40.7382584, + "minlon": -73.9410423, + "maxlat": 40.7384261, + "maxlon": -73.9409485 + }, + "nodes": [ + 7824536263, + 7824536268 + ], + "geometry": [ + { "lat": 40.7384261, "lon": -73.9410423 }, + { "lat": 40.7382584, "lon": -73.9409485 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838386657, + "bounds": { + "minlat": 40.7385653, + "minlon": -73.9424880, + "maxlat": 40.7387035, + "maxlon": -73.9424384 + }, + "nodes": [ + 7824536262, + 7824536266 + ], + "geometry": [ + { "lat": 40.7387035, "lon": -73.9424384 }, + { "lat": 40.7385653, "lon": -73.9424880 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 838412596, + "bounds": { + "minlat": 40.8797465, + "minlon": -73.9163712, + "maxlat": 40.8799470, + "maxlon": -73.9158278 + }, + "nodes": [ + 7824776661, + 7824776662, + 7824776663, + 7824776664, + 7824776665, + 7824776666 + ], + "geometry": [ + { "lat": 40.8797465, "lon": -73.9158278 }, + { "lat": 40.8798869, "lon": -73.9160377 }, + { "lat": 40.8799412, "lon": -73.9161412 }, + { "lat": 40.8799470, "lon": -73.9161891 }, + { "lat": 40.8799455, "lon": -73.9162389 }, + { "lat": 40.8798550, "lon": -73.9163712 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 838542818, + "bounds": { + "minlat": 40.7181790, + "minlon": -73.9282933, + "maxlat": 40.7184135, + "maxlon": -73.9269303 + }, + "nodes": [ + 7825997330, + 10225788172, + 10225788170, + 10225788177, + 7238128890 + ], + "geometry": [ + { "lat": 40.7181790, "lon": -73.9282933 }, + { "lat": 40.7182133, "lon": -73.9281501 }, + { "lat": 40.7184135, "lon": -73.9274025 }, + { "lat": 40.7182449, "lon": -73.9273245 }, + { "lat": 40.7183488, "lon": -73.9269303 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 838809902, + "bounds": { + "minlat": 40.7342320, + "minlon": -73.9068990, + "maxlat": 40.7361720, + "maxlon": -73.9060174 + }, + "nodes": [ + 5481898297, + 8251935234, + 5481958125, + 42827404, + 5481959403, + 5481959401, + 5481959399, + 42806994 + ], + "geometry": [ + { "lat": 40.7361720, "lon": -73.9060174 }, + { "lat": 40.7361382, "lon": -73.9060334 }, + { "lat": 40.7356866, "lon": -73.9062417 }, + { "lat": 40.7348650, "lon": -73.9066070 }, + { "lat": 40.7347392, "lon": -73.9066650 }, + { "lat": 40.7345980, "lon": -73.9067302 }, + { "lat": 40.7344436, "lon": -73.9068014 }, + { "lat": 40.7342320, "lon": -73.9068990 } + ], + "tags": { + "highway": "residential", + "name": "59th Street", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "59th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 838811087, + "bounds": { + "minlat": 40.7332559, + "minlon": -73.9068740, + "maxlat": 40.7334780, + "maxlon": -73.9059821 + }, + "nodes": [ + 42862776, + 7827743052 + ], + "geometry": [ + { "lat": 40.7334780, "lon": -73.9068740 }, + { "lat": 40.7332559, "lon": -73.9059821 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 838815511, + "bounds": { + "minlat": 40.7310113, + "minlon": -73.9186898, + "maxlat": 40.7311285, + "maxlon": -73.9175329 + }, + "nodes": [ + 42786860, + 10087637105, + 42786862, + 10087637091, + 10087637092, + 10087637093, + 42786869, + 10087637095, + 10087637094, + 10087637096, + 42786875, + 10087637097, + 10087637090, + 42786880 + ], + "geometry": [ + { "lat": 40.7310506, "lon": -73.9186898 }, + { "lat": 40.7310573, "lon": -73.9186533 }, + { "lat": 40.7310666, "lon": -73.9186134 }, + { "lat": 40.7311084, "lon": -73.9184188 }, + { "lat": 40.7311189, "lon": -73.9183510 }, + { "lat": 40.7311271, "lon": -73.9182757 }, + { "lat": 40.7311285, "lon": -73.9182016 }, + { "lat": 40.7311254, "lon": -73.9181117 }, + { "lat": 40.7311192, "lon": -73.9180217 }, + { "lat": 40.7311089, "lon": -73.9179291 }, + { "lat": 40.7310939, "lon": -73.9178504 }, + { "lat": 40.7310740, "lon": -73.9177664 }, + { "lat": 40.7310286, "lon": -73.9175939 }, + { "lat": 40.7310113, "lon": -73.9175329 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "54th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839036479, + "bounds": { + "minlat": 40.7814780, + "minlon": -73.9120168, + "maxlat": 40.7818143, + "maxlon": -73.9115270 + }, + "nodes": [ + 7829717823, + 7829717828, + 7829717824 + ], + "geometry": [ + { "lat": 40.7818143, "lon": -73.9120168 }, + { "lat": 40.7817759, "lon": -73.9119608 }, + { "lat": 40.7814780, "lon": -73.9115270 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839036480, + "bounds": { + "minlat": 40.7817427, + "minlon": -73.9113205, + "maxlat": 40.7820893, + "maxlon": -73.9108198 + }, + "nodes": [ + 7829717825, + 7829717827, + 7829717826 + ], + "geometry": [ + { "lat": 40.7820893, "lon": -73.9113205 }, + { "lat": 40.7817882, "lon": -73.9108855 }, + { "lat": 40.7817427, "lon": -73.9108198 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839036481, + "bounds": { + "minlat": 40.7809073, + "minlon": -73.9116306, + "maxlat": 40.7810793, + "maxlon": -73.9113795 + }, + "nodes": [ + 7829717829, + 7829717831, + 7829717830 + ], + "geometry": [ + { "lat": 40.7810793, "lon": -73.9116306 }, + { "lat": 40.7810404, "lon": -73.9115738 }, + { "lat": 40.7809073, "lon": -73.9113795 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839041808, + "bounds": { + "minlat": 40.7846074, + "minlon": -73.9093811, + "maxlat": 40.7852745, + "maxlon": -73.9085742 + }, + "nodes": [ + 5620548698, + 5624533862, + 5620525711 + ], + "geometry": [ + { "lat": 40.7852745, "lon": -73.9085742 }, + { "lat": 40.7849474, "lon": -73.9089576 }, + { "lat": 40.7846074, "lon": -73.9093811 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "23rd Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839041809, + "bounds": { + "minlat": 40.7852745, + "minlon": -73.9109769, + "maxlat": 40.7869358, + "maxlon": -73.9085742 + }, + "nodes": [ + 5620548698, + 5622737302, + 5622737296, + 5622737298, + 5622737300, + 5620553444, + 5620553445 + ], + "geometry": [ + { "lat": 40.7852745, "lon": -73.9085742 }, + { "lat": 40.7857814, "lon": -73.9093127 }, + { "lat": 40.7858147, "lon": -73.9093612 }, + { "lat": 40.7860230, "lon": -73.9096648 }, + { "lat": 40.7861452, "lon": -73.9098429 }, + { "lat": 40.7862720, "lon": -73.9100276 }, + { "lat": 40.7869358, "lon": -73.9109769 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "16th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839041810, + "bounds": { + "minlat": 40.7845642, + "minlon": -73.9095737, + "maxlat": 40.7846074, + "maxlon": -73.9093811 + }, + "nodes": [ + 5620525711, + 5620662499 + ], + "geometry": [ + { "lat": 40.7846074, "lon": -73.9093811 }, + { "lat": 40.7845642, "lon": -73.9095737 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "23rd Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839041811, + "bounds": { + "minlat": 40.7840950, + "minlon": -73.9101411, + "maxlat": 40.7845642, + "maxlon": -73.9095737 + }, + "nodes": [ + 5620662499, + 5620525709 + ], + "geometry": [ + { "lat": 40.7845642, "lon": -73.9095737 }, + { "lat": 40.7840950, "lon": -73.9101411 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "23rd Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839041812, + "bounds": { + "minlat": 40.7833411, + "minlon": -73.9114390, + "maxlat": 40.7841884, + "maxlon": -73.9102814 + }, + "nodes": [ + 42920817, + 7833236357, + 7833236360, + 7833236351, + 1243196536, + 5622116051, + 7829801524 + ], + "geometry": [ + { "lat": 40.7833411, "lon": -73.9114390 }, + { "lat": 40.7833526, "lon": -73.9113245 }, + { "lat": 40.7833627, "lon": -73.9112742 }, + { "lat": 40.7833776, "lon": -73.9112543 }, + { "lat": 40.7834525, "lon": -73.9111537 }, + { "lat": 40.7840674, "lon": -73.9104248 }, + { "lat": 40.7841884, "lon": -73.9102814 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "highway": "service", + "name": "23rd Street" + } +}, +{ + "type": "way", + "id": 839041814, + "bounds": { + "minlat": 40.7852745, + "minlon": -73.9085742, + "maxlat": 40.7853858, + "maxlon": -73.9085547 + }, + "nodes": [ + 5620525713, + 5620548698 + ], + "geometry": [ + { "lat": 40.7853858, "lon": -73.9085547 }, + { "lat": 40.7852745, "lon": -73.9085742 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "23rd Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839041815, + "bounds": { + "minlat": 40.7856412, + "minlon": -73.9150778, + "maxlat": 40.7862513, + "maxlon": -73.9141964 + }, + "nodes": [ + 5622097792, + 5624663827, + 5624663825, + 1243119475, + 5622626269, + 5622097785 + ], + "geometry": [ + { "lat": 40.7856412, "lon": -73.9141964 }, + { "lat": 40.7857145, "lon": -73.9143028 }, + { "lat": 40.7858087, "lon": -73.9144398 }, + { "lat": 40.7858689, "lon": -73.9145272 }, + { "lat": 40.7861242, "lon": -73.9148981 }, + { "lat": 40.7862513, "lon": -73.9150778 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "19th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839041816, + "bounds": { + "minlat": 40.7861680, + "minlon": -73.9151570, + "maxlat": 40.7868919, + "maxlon": -73.9146299 + }, + "nodes": [ + 8662780846, + 5620480673, + 5622097785, + 7689056854, + 5620480675, + 5620446022 + ], + "geometry": [ + { "lat": 40.7861680, "lon": -73.9151570 }, + { "lat": 40.7862052, "lon": -73.9151095 }, + { "lat": 40.7862513, "lon": -73.9150778 }, + { "lat": 40.7863039, "lon": -73.9150414 }, + { "lat": 40.7868353, "lon": -73.9146736 }, + { "lat": 40.7868919, "lon": -73.9146299 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Shore Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839041817, + "bounds": { + "minlat": 40.7868919, + "minlon": -73.9146299, + "maxlat": 40.7893821, + "maxlon": -73.9115965 + }, + "nodes": [ + 5620446022, + 7040709749, + 7040709751 + ], + "geometry": [ + { "lat": 40.7868919, "lon": -73.9146299 }, + { "lat": 40.7892171, "lon": -73.9118606 }, + { "lat": 40.7893821, "lon": -73.9115965 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Shore Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839041818, + "bounds": { + "minlat": 40.7860598, + "minlon": -73.9152890, + "maxlat": 40.7861680, + "maxlon": -73.9151570 + }, + "nodes": [ + 1243057050, + 7829801527, + 8662780846 + ], + "geometry": [ + { "lat": 40.7860598, "lon": -73.9152890 }, + { "lat": 40.7861399, "lon": -73.9151928 }, + { "lat": 40.7861680, "lon": -73.9151570 } + ], + "tags": { + "highway": "service", + "name": "Shore Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839041819, + "bounds": { + "minlat": 40.7864464, + "minlon": -73.9146736, + "maxlat": 40.7868353, + "maxlon": -73.9141262 + }, + "nodes": [ + 5622638804, + 8662780843, + 5620480675 + ], + "geometry": [ + { "lat": 40.7864464, "lon": -73.9141262 }, + { "lat": 40.7865907, "lon": -73.9143293 }, + { "lat": 40.7868353, "lon": -73.9146736 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "18th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839041820, + "bounds": { + "minlat": 40.7864464, + "minlon": -73.9141262, + "maxlat": 40.7864847, + "maxlon": -73.9136314 + }, + "nodes": [ + 5620480678, + 5622638804 + ], + "geometry": [ + { "lat": 40.7864847, "lon": -73.9136314 }, + { "lat": 40.7864464, "lon": -73.9141262 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "18th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839427835, + "bounds": { + "minlat": 40.7798936, + "minlon": -73.9066308, + "maxlat": 40.7802340, + "maxlon": -73.9061742 + }, + "nodes": [ + 7833232127, + 7833232167, + 7833232161, + 7779193142, + 7833201709, + 7833232127 + ], + "geometry": [ + { "lat": 40.7800879, "lon": -73.9066308 }, + { "lat": 40.7802340, "lon": -73.9064537 }, + { "lat": 40.7800397, "lon": -73.9061742 }, + { "lat": 40.7798936, "lon": -73.9063513 }, + { "lat": 40.7800369, "lon": -73.9065575 }, + { "lat": 40.7800879, "lon": -73.9066308 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 839427836, + "bounds": { + "minlat": 40.7818966, + "minlon": -73.9093780, + "maxlat": 40.7820845, + "maxlon": -73.9091178 + }, + "nodes": [ + 7833232132, + 7833232122, + 7833232116, + 7833232162, + 11618896372, + 7833232132 + ], + "geometry": [ + { "lat": 40.7820489, "lon": -73.9093780 }, + { "lat": 40.7820845, "lon": -73.9093294 }, + { "lat": 40.7819367, "lon": -73.9091178 }, + { "lat": 40.7818966, "lon": -73.9091612 }, + { "lat": 40.7820449, "lon": -73.9093724 }, + { "lat": 40.7820489, "lon": -73.9093780 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 839459803, + "bounds": { + "minlat": 40.7545091, + "minlon": -73.9396735, + "maxlat": 40.7547204, + "maxlon": -73.9392596 + }, + "nodes": [ + 7833495846, + 8315005333, + 7833495847 + ], + "geometry": [ + { "lat": 40.7547204, "lon": -73.9396735 }, + { "lat": 40.7545573, "lon": -73.9393541 }, + { "lat": 40.7545091, "lon": -73.9392596 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839459804, + "bounds": { + "minlat": 40.7537949, + "minlon": -73.9375316, + "maxlat": 40.7539607, + "maxlon": -73.9372139 + }, + "nodes": [ + 7071449374, + 10744391839, + 7833495849 + ], + "geometry": [ + { "lat": 40.7539607, "lon": -73.9375316 }, + { "lat": 40.7539195, "lon": -73.9374496 }, + { "lat": 40.7537949, "lon": -73.9372139 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839459805, + "bounds": { + "minlat": 40.7524788, + "minlon": -73.9387263, + "maxlat": 40.7526763, + "maxlon": -73.9383682 + }, + "nodes": [ + 7069690916, + 10744391826, + 7833495851 + ], + "geometry": [ + { "lat": 40.7526763, "lon": -73.9387263 }, + { "lat": 40.7526364, "lon": -73.9386503 }, + { "lat": 40.7524788, "lon": -73.9383682 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839459806, + "bounds": { + "minlat": 40.7521618, + "minlon": -73.9398284, + "maxlat": 40.7523782, + "maxlon": -73.9396380 + }, + "nodes": [ + 7833495852, + 6785719785, + 7833495855, + 7833495853 + ], + "geometry": [ + { "lat": 40.7523782, "lon": -73.9396380 }, + { "lat": 40.7522240, "lon": -73.9397739 }, + { "lat": 40.7521868, "lon": -73.9398068 }, + { "lat": 40.7521618, "lon": -73.9398284 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839459807, + "bounds": { + "minlat": 40.7521868, + "minlon": -73.9400014, + "maxlat": 40.7522888, + "maxlon": -73.9398068 + }, + "nodes": [ + 7833495854, + 7833495855 + ], + "geometry": [ + { "lat": 40.7522888, "lon": -73.9400014 }, + { "lat": 40.7521868, "lon": -73.9398068 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839459808, + "bounds": { + "minlat": 40.7523782, + "minlon": -73.9399577, + "maxlat": 40.7525451, + "maxlon": -73.9396380 + }, + "nodes": [ + 7833495856, + 7833495868, + 7833495852 + ], + "geometry": [ + { "lat": 40.7525451, "lon": -73.9399577 }, + { "lat": 40.7525175, "lon": -73.9399048 }, + { "lat": 40.7523782, "lon": -73.9396380 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839459809, + "bounds": { + "minlat": 40.7515224, + "minlon": -73.9383450, + "maxlat": 40.7517326, + "maxlon": -73.9381682 + }, + "nodes": [ + 7833495857, + 8315072936, + 7833495858 + ], + "geometry": [ + { "lat": 40.7517326, "lon": -73.9381682 }, + { "lat": 40.7516812, "lon": -73.9382118 }, + { "lat": 40.7515224, "lon": -73.9383450 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839459810, + "bounds": { + "minlat": 40.7513916, + "minlon": -73.9383450, + "maxlat": 40.7515224, + "maxlon": -73.9380973 + }, + "nodes": [ + 7833495858, + 7103675571 + ], + "geometry": [ + { "lat": 40.7515224, "lon": -73.9383450 }, + { "lat": 40.7513916, "lon": -73.9380973 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 839459812, + "bounds": { + "minlat": 40.7527666, + "minlon": -73.9455263, + "maxlat": 40.7533157, + "maxlon": -73.9442300 + }, + "nodes": [ + 7460196695, + 7460196696 + ], + "geometry": [ + { "lat": 40.7533157, "lon": -73.9455263 }, + { "lat": 40.7527666, "lon": -73.9442300 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839463752, + "bounds": { + "minlat": 40.7599115, + "minlon": -73.9229333, + "maxlat": 40.7600351, + "maxlon": -73.9226575 + }, + "nodes": [ + 7833503232, + 7833503245, + 7833503233 + ], + "geometry": [ + { "lat": 40.7600351, "lon": -73.9229333 }, + { "lat": 40.7599396, "lon": -73.9227201 }, + { "lat": 40.7599115, "lon": -73.9226575 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839463753, + "bounds": { + "minlat": 40.7600351, + "minlon": -73.9229668, + "maxlat": 40.7601458, + "maxlon": -73.9229333 + }, + "nodes": [ + 7833503234, + 7833503232 + ], + "geometry": [ + { "lat": 40.7601458, "lon": -73.9229668 }, + { "lat": 40.7600351, "lon": -73.9229333 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839463754, + "bounds": { + "minlat": 40.7566441, + "minlon": -73.9201948, + "maxlat": 40.7567600, + "maxlon": -73.9199176 + }, + "nodes": [ + 7833503235, + 7833503246, + 13316541323 + ], + "geometry": [ + { "lat": 40.7567600, "lon": -73.9201948 }, + { "lat": 40.7566441, "lon": -73.9199503 }, + { "lat": 40.7566820, "lon": -73.9199176 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839463755, + "bounds": { + "minlat": 40.7569433, + "minlon": -73.9199896, + "maxlat": 40.7570201, + "maxlon": -73.9198198 + }, + "nodes": [ + 7833503237, + 7833503238 + ], + "geometry": [ + { "lat": 40.7570201, "lon": -73.9199896 }, + { "lat": 40.7569433, "lon": -73.9198198 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839463756, + "bounds": { + "minlat": 40.7567519, + "minlon": -73.9199655, + "maxlat": 40.7569433, + "maxlon": -73.9198198 + }, + "nodes": [ + 7833503238, + 7833503239 + ], + "geometry": [ + { "lat": 40.7569433, "lon": -73.9198198 }, + { "lat": 40.7567519, "lon": -73.9199655 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839463757, + "bounds": { + "minlat": 40.7567600, + "minlon": -73.9201948, + "maxlat": 40.7570201, + "maxlon": -73.9199896 + }, + "nodes": [ + 7833503237, + 7833503235 + ], + "geometry": [ + { "lat": 40.7570201, "lon": -73.9199896 }, + { "lat": 40.7567600, "lon": -73.9201948 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839463758, + "bounds": { + "minlat": 40.7566275, + "minlon": -73.9201143, + "maxlat": 40.7567732, + "maxlon": -73.9198000 + }, + "nodes": [ + 7833503240, + 13316541323, + 7833503247, + 7833503241 + ], + "geometry": [ + { "lat": 40.7567732, "lon": -73.9201143 }, + { "lat": 40.7566820, "lon": -73.9199176 }, + { "lat": 40.7566682, "lon": -73.9198879 }, + { "lat": 40.7566275, "lon": -73.9198000 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839464924, + "bounds": { + "minlat": 40.7306806, + "minlon": -73.9443846, + "maxlat": 40.7307659, + "maxlon": -73.9434574 + }, + "nodes": [ + 42496823, + 9788947371, + 11930670440, + 10187694032, + 10187694037, + 10187694038, + 7833521863, + 10187694031 + ], + "geometry": [ + { "lat": 40.7306806, "lon": -73.9443846 }, + { "lat": 40.7306869, "lon": -73.9443088 }, + { "lat": 40.7306885, "lon": -73.9442909 }, + { "lat": 40.7307007, "lon": -73.9441564 }, + { "lat": 40.7307234, "lon": -73.9439065 }, + { "lat": 40.7307530, "lon": -73.9435807 }, + { "lat": 40.7307564, "lon": -73.9435439 }, + { "lat": 40.7307659, "lon": -73.9434574 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 839464925, + "bounds": { + "minlat": 40.7292822, + "minlon": -73.9422423, + "maxlat": 40.7294468, + "maxlon": -73.9406295 + }, + "nodes": [ + 7154267996, + 9788947425, + 7833521864 + ], + "geometry": [ + { "lat": 40.7292822, "lon": -73.9422423 }, + { "lat": 40.7292916, "lon": -73.9421505 }, + { "lat": 40.7294468, "lon": -73.9406295 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839464926, + "bounds": { + "minlat": 40.7294468, + "minlon": -73.9407609, + "maxlat": 40.7302578, + "maxlon": -73.9406295 + }, + "nodes": [ + 7833521865, + 7833521866, + 7833521864 + ], + "geometry": [ + { "lat": 40.7302578, "lon": -73.9407609 }, + { "lat": 40.7296177, "lon": -73.9406572 }, + { "lat": 40.7294468, "lon": -73.9406295 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839464927, + "bounds": { + "minlat": 40.7296177, + "minlon": -73.9406572, + "maxlat": 40.7296806, + "maxlon": -73.9399965 + }, + "nodes": [ + 7833521866, + 7833521867 + ], + "geometry": [ + { "lat": 40.7296177, "lon": -73.9406572 }, + { "lat": 40.7296806, "lon": -73.9399965 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839464928, + "bounds": { + "minlat": 40.7302578, + "minlon": -73.9407609, + "maxlat": 40.7303168, + "maxlon": -73.9401011 + }, + "nodes": [ + 7833521865, + 7833521868 + ], + "geometry": [ + { "lat": 40.7302578, "lon": -73.9407609 }, + { "lat": 40.7303168, "lon": -73.9401011 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839464929, + "bounds": { + "minlat": 40.7296806, + "minlon": -73.9401011, + "maxlat": 40.7303168, + "maxlon": -73.9399965 + }, + "nodes": [ + 7833521868, + 7833521867 + ], + "geometry": [ + { "lat": 40.7303168, "lon": -73.9401011 }, + { "lat": 40.7296806, "lon": -73.9399965 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839464930, + "bounds": { + "minlat": 40.7279334, + "minlon": -73.9401413, + "maxlat": 40.7284275, + "maxlon": -73.9400680 + }, + "nodes": [ + 7833521869, + 9788947416, + 7833521870 + ], + "geometry": [ + { "lat": 40.7284275, "lon": -73.9401413 }, + { "lat": 40.7280196, "lon": -73.9400822 }, + { "lat": 40.7279334, "lon": -73.9400680 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839464931, + "bounds": { + "minlat": 40.7280504, + "minlon": -73.9388285, + "maxlat": 40.7283291, + "maxlon": -73.9387752 + }, + "nodes": [ + 7833521871, + 7961980705, + 9788947408, + 7284135325 + ], + "geometry": [ + { "lat": 40.7283291, "lon": -73.9388285 }, + { "lat": 40.7282888, "lon": -73.9388208 }, + { "lat": 40.7281351, "lon": -73.9387914 }, + { "lat": 40.7280504, "lon": -73.9387752 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 839464932, + "bounds": { + "minlat": 40.7278789, + "minlon": -73.9407717, + "maxlat": 40.7285850, + "maxlon": -73.9406384 + }, + "nodes": [ + 7833521872, + 7961980725, + 3430733334, + 9788947418, + 7833521873 + ], + "geometry": [ + { "lat": 40.7285850, "lon": -73.9407717 }, + { "lat": 40.7280732, "lon": -73.9406751 }, + { "lat": 40.7279809, "lon": -73.9406577 }, + { "lat": 40.7279617, "lon": -73.9406541 }, + { "lat": 40.7278789, "lon": -73.9406384 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 839464933, + "bounds": { + "minlat": 40.7278443, + "minlon": -73.9411458, + "maxlat": 40.7286450, + "maxlon": -73.9410079 + }, + "nodes": [ + 7833521874, + 9788947419, + 7833521875 + ], + "geometry": [ + { "lat": 40.7286450, "lon": -73.9411458 }, + { "lat": 40.7279281, "lon": -73.9410223 }, + { "lat": 40.7278443, "lon": -73.9410079 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839467016, + "bounds": { + "minlat": 40.7260651, + "minlon": -73.9332243, + "maxlat": 40.7261952, + "maxlon": -73.9327254 + }, + "nodes": [ + 7833503751, + 7833503752 + ], + "geometry": [ + { "lat": 40.7260651, "lon": -73.9332243 }, + { "lat": 40.7261952, "lon": -73.9327254 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839467017, + "bounds": { + "minlat": 40.7260651, + "minlon": -73.9335247, + "maxlat": 40.7267900, + "maxlon": -73.9332243 + }, + "nodes": [ + 7833503753, + 5482263302, + 5482263292, + 5482263295, + 5482263296, + 7833503751 + ], + "geometry": [ + { "lat": 40.7267900, "lon": -73.9335247 }, + { "lat": 40.7267302, "lon": -73.9335007 }, + { "lat": 40.7265837, "lon": -73.9334398 }, + { "lat": 40.7263962, "lon": -73.9333619 }, + { "lat": 40.7262429, "lon": -73.9332982 }, + { "lat": 40.7260651, "lon": -73.9332243 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839467018, + "bounds": { + "minlat": 40.7267654, + "minlon": -73.9337400, + "maxlat": 40.7270882, + "maxlon": -73.9333725 + }, + "nodes": [ + 5482263303, + 9353866459, + 7833503769, + 7833503770, + 7833503754 + ], + "geometry": [ + { "lat": 40.7270882, "lon": -73.9337400 }, + { "lat": 40.7270413, "lon": -73.9336866 }, + { "lat": 40.7269563, "lon": -73.9335899 }, + { "lat": 40.7268376, "lon": -73.9334547 }, + { "lat": 40.7267654, "lon": -73.9333725 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839467019, + "bounds": { + "minlat": 40.7270140, + "minlon": -73.9357951, + "maxlat": 40.7272954, + "maxlon": -73.9356517 + }, + "nodes": [ + 7833503755, + 9789356935, + 7833503757 + ], + "geometry": [ + { "lat": 40.7272954, "lon": -73.9356517 }, + { "lat": 40.7272288, "lon": -73.9356856 }, + { "lat": 40.7270140, "lon": -73.9357951 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839467021, + "bounds": { + "minlat": 40.7266973, + "minlon": -73.9359052, + "maxlat": 40.7270036, + "maxlon": -73.9358591 + }, + "nodes": [ + 7833503758, + 7833503759 + ], + "geometry": [ + { "lat": 40.7270036, "lon": -73.9359052 }, + { "lat": 40.7266973, "lon": -73.9358591 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839467022, + "bounds": { + "minlat": 40.7267257, + "minlon": -73.9351970, + "maxlat": 40.7270586, + "maxlon": -73.9349088 + }, + "nodes": [ + 7833503760, + 9789356936, + 7833503761, + 7833503762 + ], + "geometry": [ + { "lat": 40.7270586, "lon": -73.9349088 }, + { "lat": 40.7269944, "lon": -73.9349414 }, + { "lat": 40.7268578, "lon": -73.9350106 }, + { "lat": 40.7267257, "lon": -73.9351970 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839467023, + "bounds": { + "minlat": 40.7267877, + "minlon": -73.9323217, + "maxlat": 40.7268550, + "maxlon": -73.9320552 + }, + "nodes": [ + 7833503763, + 9353866460, + 5482263313 + ], + "geometry": [ + { "lat": 40.7267877, "lon": -73.9323217 }, + { "lat": 40.7268383, "lon": -73.9321290 }, + { "lat": 40.7268550, "lon": -73.9320552 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839467024, + "bounds": { + "minlat": 40.7270676, + "minlon": -73.9321469, + "maxlat": 40.7271433, + "maxlon": -73.9318063 + }, + "nodes": [ + 7833503764, + 13718039924 + ], + "geometry": [ + { "lat": 40.7270676, "lon": -73.9321469 }, + { "lat": 40.7271433, "lon": -73.9318063 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839467025, + "bounds": { + "minlat": 40.7275135, + "minlon": -73.9323444, + "maxlat": 40.7276089, + "maxlon": -73.9319435 + }, + "nodes": [ + 7833503766, + 7833503767 + ], + "geometry": [ + { "lat": 40.7275135, "lon": -73.9323444 }, + { "lat": 40.7276089, "lon": -73.9319435 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 839523653, + "bounds": { + "minlat": 40.7774272, + "minlon": -73.9462316, + "maxlat": 40.7777193, + "maxlon": -73.9458685 + }, + "nodes": [ + 7834025512, + 7834030800, + 7834025528, + 7834030821, + 7834025507, + 7834030799, + 7834025526, + 7834025520, + 7834030813, + 7834030840, + 7834030816 + ], + "geometry": [ + { "lat": 40.7776516, "lon": -73.9458685 }, + { "lat": 40.7777018, "lon": -73.9460022 }, + { "lat": 40.7777193, "lon": -73.9460486 }, + { "lat": 40.7777140, "lon": -73.9460993 }, + { "lat": 40.7776907, "lon": -73.9461483 }, + { "lat": 40.7775904, "lon": -73.9462243 }, + { "lat": 40.7775546, "lon": -73.9462316 }, + { "lat": 40.7775224, "lon": -73.9462086 }, + { "lat": 40.7774957, "lon": -73.9461890 }, + { "lat": 40.7774830, "lon": -73.9461614 }, + { "lat": 40.7774272, "lon": -73.9460319 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 839523665, + "bounds": { + "minlat": 40.7779623, + "minlon": -73.9458181, + "maxlat": 40.7781913, + "maxlon": -73.9454766 + }, + "nodes": [ + 7834030810, + 7834030839, + 7834025572, + 7834025516, + 7834030843, + 7834030831, + 7834030814, + 7834030832 + ], + "geometry": [ + { "lat": 40.7781898, "lon": -73.9454766 }, + { "lat": 40.7781912, "lon": -73.9456399 }, + { "lat": 40.7781913, "lon": -73.9457085 }, + { "lat": 40.7781815, "lon": -73.9457741 }, + { "lat": 40.7781231, "lon": -73.9458181 }, + { "lat": 40.7780828, "lon": -73.9457961 }, + { "lat": 40.7780445, "lon": -73.9457482 }, + { "lat": 40.7779623, "lon": -73.9456423 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 840278755, + "bounds": { + "minlat": 40.8164638, + "minlon": -73.9167513, + "maxlat": 40.8165762, + "maxlon": -73.9156715 + }, + "nodes": [ + 6415815558, + 13040495339, + 6415815557, + 42733534 + ], + "geometry": [ + { "lat": 40.8164638, "lon": -73.9156715 }, + { "lat": 40.8164728, "lon": -73.9157559 }, + { "lat": 40.8165619, "lon": -73.9165896 }, + { "lat": 40.8165762, "lon": -73.9167513 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Westchester Avenue", + "name:etymology:wikidata": "Q17091379", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Westchester", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10459", + "tiger:zip_right": "10459", + "wikidata": "Q20979444", + "wikipedia": "en:Westchester Avenue" + } +}, +{ + "type": "way", + "id": 840316268, + "bounds": { + "minlat": 40.7294578, + "minlon": -73.9282925, + "maxlat": 40.7318358, + "maxlon": -73.9260531 + }, + "nodes": [ + 13250601909, + 194585947, + 9194902819, + 9982698009, + 9194902818, + 194585949, + 9982698010, + 9194902817, + 194585951, + 9194902816, + 9982698011, + 194585952, + 9194902815, + 5849795398, + 9194902814, + 9982698012, + 9194902813, + 5849795392, + 9194902811, + 42810297 + ], + "geometry": [ + { "lat": 40.7294578, "lon": -73.9282925 }, + { "lat": 40.7294683, "lon": -73.9282623 }, + { "lat": 40.7295018, "lon": -73.9281761 }, + { "lat": 40.7295385, "lon": -73.9280820 }, + { "lat": 40.7295786, "lon": -73.9279817 }, + { "lat": 40.7296247, "lon": -73.9278802 }, + { "lat": 40.7296687, "lon": -73.9277964 }, + { "lat": 40.7297219, "lon": -73.9277074 }, + { "lat": 40.7297768, "lon": -73.9276164 }, + { "lat": 40.7298323, "lon": -73.9275352 }, + { "lat": 40.7298836, "lon": -73.9274639 }, + { "lat": 40.7299387, "lon": -73.9273923 }, + { "lat": 40.7300025, "lon": -73.9273248 }, + { "lat": 40.7300632, "lon": -73.9272646 }, + { "lat": 40.7301270, "lon": -73.9272020 }, + { "lat": 40.7301948, "lon": -73.9271431 }, + { "lat": 40.7302634, "lon": -73.9270907 }, + { "lat": 40.7303351, "lon": -73.9270407 }, + { "lat": 40.7316989, "lon": -73.9261449 }, + { "lat": 40.7318358, "lon": -73.9260531 } + ], + "tags": { + "cycleway:right": "separate", + "hgv": "local", + "highway": "secondary", + "name": "Laurel Hill Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 840316269, + "bounds": { + "minlat": 40.7293196, + "minlon": -73.9289574, + "maxlat": 40.7293467, + "maxlon": -73.9286922 + }, + "nodes": [ + 7712008322, + 9194902826, + 9982698003, + 7712008333, + 13250601910 + ], + "geometry": [ + { "lat": 40.7293196, "lon": -73.9289574 }, + { "lat": 40.7293244, "lon": -73.9288886 }, + { "lat": 40.7293310, "lon": -73.9288137 }, + { "lat": 40.7293394, "lon": -73.9287377 }, + { "lat": 40.7293467, "lon": -73.9286922 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "name": "Laurel Hill Boulevard", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 840725680, + "bounds": { + "minlat": 40.7717776, + "minlon": -73.9905860, + "maxlat": 40.7722600, + "maxlon": -73.9902068 + }, + "nodes": [ + 7844803424, + 7844803439, + 6625281405, + 7591060169, + 13520668988, + 13520668987, + 7844803434, + 7844803462, + 7844803443, + 7844803452, + 7844803429, + 7844803455, + 7844803450, + 7844803444, + 7844803440, + 7844803430, + 7844803460, + 7844803427, + 7844803451, + 7844803424 + ], + "geometry": [ + { "lat": 40.7721348, "lon": -73.9902906 }, + { "lat": 40.7722282, "lon": -73.9902068 }, + { "lat": 40.7722600, "lon": -73.9902917 }, + { "lat": 40.7722455, "lon": -73.9903131 }, + { "lat": 40.7721281, "lon": -73.9904430 }, + { "lat": 40.7720278, "lon": -73.9905310 }, + { "lat": 40.7719642, "lon": -73.9905829 }, + { "lat": 40.7719304, "lon": -73.9905006 }, + { "lat": 40.7718876, "lon": -73.9905180 }, + { "lat": 40.7718199, "lon": -73.9905674 }, + { "lat": 40.7717944, "lon": -73.9905860 }, + { "lat": 40.7717776, "lon": -73.9905455 }, + { "lat": 40.7718256, "lon": -73.9905107 }, + { "lat": 40.7719356, "lon": -73.9904310 }, + { "lat": 40.7719559, "lon": -73.9904163 }, + { "lat": 40.7719653, "lon": -73.9904406 }, + { "lat": 40.7720652, "lon": -73.9904011 }, + { "lat": 40.7721223, "lon": -73.9903172 }, + { "lat": 40.7721401, "lon": -73.9903011 }, + { "lat": 40.7721348, "lon": -73.9902906 } + ], + "tags": { + "access": "yes", + "area": "yes", + "highway": "pedestrian", + "opening_hours": "06:00-01:00", + "surface": "paving_stones", + "wheelchair": "yes" + } +}, +{ + "type": "way", + "id": 840748581, + "bounds": { + "minlat": 40.7028288, + "minlon": -73.9944211, + "maxlat": 40.7029109, + "maxlon": -73.9943695 + }, + "nodes": [ + 42469320, + 3174844141 + ], + "geometry": [ + { "lat": 40.7029109, "lon": -73.9943695 }, + { "lat": 40.7028288, "lon": -73.9944211 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Water Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:reviewed": "aerial", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 840905355, + "bounds": { + "minlat": 40.7813021, + "minlon": -73.9145310, + "maxlat": 40.7818054, + "maxlon": -73.9139025 + }, + "nodes": [ + 7846436809, + 7846436813, + 7846436810 + ], + "geometry": [ + { "lat": 40.7818054, "lon": -73.9139025 }, + { "lat": 40.7817520, "lon": -73.9139801 }, + { "lat": 40.7813021, "lon": -73.9145310 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 840993090, + "bounds": { + "minlat": 40.8084187, + "minlon": -73.9541041, + "maxlat": 40.8122983, + "maxlon": -73.9449268 + }, + "nodes": [ + 42446203, + 3099327972, + 10171038459, + 13703520434, + 13703520437, + 11875873076, + 2141026501, + 42439864, + 11875873073, + 5481857115, + 13703485699, + 10171508867, + 4888388399, + 10171508870, + 10173362967, + 42432931, + 10173362963, + 5481863731, + 10171069623, + 42440146, + 10171069627, + 42446212, + 6929267027, + 6929267022 + ], + "geometry": [ + { "lat": 40.8084187, "lon": -73.9449268 }, + { "lat": 40.8084812, "lon": -73.9450770 }, + { "lat": 40.8085186, "lon": -73.9451660 }, + { "lat": 40.8090613, "lon": -73.9464530 }, + { "lat": 40.8090987, "lon": -73.9465417 }, + { "lat": 40.8095645, "lon": -73.9476463 }, + { "lat": 40.8096148, "lon": -73.9477655 }, + { "lat": 40.8096859, "lon": -73.9479237 }, + { "lat": 40.8097313, "lon": -73.9480322 }, + { "lat": 40.8105486, "lon": -73.9499837 }, + { "lat": 40.8106664, "lon": -73.9502623 }, + { "lat": 40.8107903, "lon": -73.9505555 }, + { "lat": 40.8108430, "lon": -73.9506800 }, + { "lat": 40.8109010, "lon": -73.9508177 }, + { "lat": 40.8113860, "lon": -73.9519681 }, + { "lat": 40.8114420, "lon": -73.9521010 }, + { "lat": 40.8114909, "lon": -73.9522168 }, + { "lat": 40.8119103, "lon": -73.9532105 }, + { "lat": 40.8120095, "lon": -73.9534459 }, + { "lat": 40.8120517, "lon": -73.9535460 }, + { "lat": 40.8120968, "lon": -73.9536517 }, + { "lat": 40.8122727, "lon": -73.9540642 }, + { "lat": 40.8122841, "lon": -73.9540870 }, + { "lat": 40.8122983, "lon": -73.9541041 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "name": "West 126th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 840996403, + "bounds": { + "minlat": 40.7966362, + "minlon": -73.9494082, + "maxlat": 40.7971010, + "maxlon": -73.9490776 + }, + "nodes": [ + 42432352, + 7123873172, + 10610255914, + 42432395 + ], + "geometry": [ + { "lat": 40.7971010, "lon": -73.9490776 }, + { "lat": 40.7969895, "lon": -73.9491569 }, + { "lat": 40.7967050, "lon": -73.9493593 }, + { "lat": 40.7966362, "lon": -73.9494082 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 841081351, + "bounds": { + "minlat": 40.8050147, + "minlon": -73.9113410, + "maxlat": 40.8099810, + "maxlon": -73.9023757 + }, + "nodes": [ + 471240718, + 471240755, + 9156979748, + 42724869, + 9156979747, + 471240753, + 9156979746, + 471240531, + 9156942325, + 42774621, + 471240527 + ], + "geometry": [ + { "lat": 40.8099810, "lon": -73.9023757 }, + { "lat": 40.8078428, "lon": -73.9053739 }, + { "lat": 40.8076193, "lon": -73.9057062 }, + { "lat": 40.8074540, "lon": -73.9059520 }, + { "lat": 40.8073245, "lon": -73.9061713 }, + { "lat": 40.8072253, "lon": -73.9063488 }, + { "lat": 40.8071139, "lon": -73.9065748 }, + { "lat": 40.8070383, "lon": -73.9067556 }, + { "lat": 40.8061527, "lon": -73.9088610 }, + { "lat": 40.8056815, "lon": -73.9098796 }, + { "lat": 40.8050147, "lon": -73.9113410 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "Robert Francis Kennedy Bridge;Manhattan;Queens|Robert Francis Kennedy Bridge;Manhattan;Queens;Major Deegan Expressway;Albany|Major Deegan Expressway;Albany", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "I-278", + "tiger:name_type": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "none|through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 841505977, + "bounds": { + "minlat": 40.7764781, + "minlon": -73.9107785, + "maxlat": 40.7768019, + "maxlon": -73.9103110 + }, + "nodes": [ + 7851387311, + 9776116486, + 7851387312 + ], + "geometry": [ + { "lat": 40.7768019, "lon": -73.9107785 }, + { "lat": 40.7765427, "lon": -73.9104043 }, + { "lat": 40.7764781, "lon": -73.9103110 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 841671025, + "bounds": { + "minlat": 40.7572985, + "minlon": -73.9684265, + "maxlat": 40.7573925, + "maxlon": -73.9683619 + }, + "nodes": [ + 7852760827, + 10172968788, + 7852760828 + ], + "geometry": [ + { "lat": 40.7572985, "lon": -73.9684265 }, + { "lat": 40.7573577, "lon": -73.9683857 }, + { "lat": 40.7573925, "lon": -73.9683619 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 841720541, + "bounds": { + "minlat": 40.7026579, + "minlon": -73.9943695, + "maxlat": 40.7029109, + "maxlon": -73.9937699 + }, + "nodes": [ + 42523694, + 8262934768, + 42469320 + ], + "geometry": [ + { "lat": 40.7026579, "lon": -73.9937699 }, + { "lat": 40.7028645, "lon": -73.9942508 }, + { "lat": 40.7029109, "lon": -73.9943695 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz" + } +}, +{ + "type": "way", + "id": 841720542, + "bounds": { + "minlat": 40.7021716, + "minlon": -73.9940696, + "maxlat": 40.7025517, + "maxlon": -73.9938727 + }, + "nodes": [ + 10739408493, + 11730966766, + 10739408490, + 42499341 + ], + "geometry": [ + { "lat": 40.7025517, "lon": -73.9938727 }, + { "lat": 40.7022045, "lon": -73.9940526 }, + { "lat": 40.7021902, "lon": -73.9940600 }, + { "lat": 40.7021716, "lon": -73.9940696 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Elizabeth Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Elizabeth", + "tiger:name_type": "Pl", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 841720543, + "bounds": { + "minlat": 40.7026193, + "minlon": -73.9941850, + "maxlat": 40.7027404, + "maxlon": -73.9938376 + }, + "nodes": [ + 3174844139, + 11158142753, + 3174844149 + ], + "geometry": [ + { "lat": 40.7027404, "lon": -73.9941850 }, + { "lat": 40.7026519, "lon": -73.9939307 }, + { "lat": 40.7026193, "lon": -73.9938376 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 842254414, + "bounds": { + "minlat": 40.7501475, + "minlon": -73.9122582, + "maxlat": 40.7502201, + "maxlon": -73.9116443 + }, + "nodes": [ + 7857606841, + 7857606842 + ], + "geometry": [ + { "lat": 40.7502201, "lon": -73.9122582 }, + { "lat": 40.7501475, "lon": -73.9116443 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254415, + "bounds": { + "minlat": 40.7504039, + "minlon": -73.9121993, + "maxlat": 40.7504651, + "maxlon": -73.9115938 + }, + "nodes": [ + 7857606843, + 7857606844 + ], + "geometry": [ + { "lat": 40.7504651, "lon": -73.9121993 }, + { "lat": 40.7504039, "lon": -73.9115938 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254416, + "bounds": { + "minlat": 40.7503857, + "minlon": -73.9134843, + "maxlat": 40.7504346, + "maxlon": -73.9124428 + }, + "nodes": [ + 12374185441, + 7857606845, + 12374185439, + 12374185440, + 7857606846 + ], + "geometry": [ + { "lat": 40.7503857, "lon": -73.9134843 }, + { "lat": 40.7503905, "lon": -73.9132937 }, + { "lat": 40.7503938, "lon": -73.9131658 }, + { "lat": 40.7504182, "lon": -73.9131088 }, + { "lat": 40.7504346, "lon": -73.9124428 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254417, + "bounds": { + "minlat": 40.7503006, + "minlon": -73.9129819, + "maxlat": 40.7503168, + "maxlon": -73.9124300 + }, + "nodes": [ + 7857606847, + 7857606848 + ], + "geometry": [ + { "lat": 40.7503006, "lon": -73.9129819 }, + { "lat": 40.7503168, "lon": -73.9124300 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254418, + "bounds": { + "minlat": 40.7503006, + "minlon": -73.9132321, + "maxlat": 40.7503344, + "maxlon": -73.9129819 + }, + "nodes": [ + 7857606849, + 7857606847 + ], + "geometry": [ + { "lat": 40.7503344, "lon": -73.9132321 }, + { "lat": 40.7503006, "lon": -73.9129819 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254419, + "bounds": { + "minlat": 40.7500796, + "minlon": -73.9124751, + "maxlat": 40.7504301, + "maxlon": -73.9124075 + }, + "nodes": [ + 7857606850, + 7857606848, + 5482228853 + ], + "geometry": [ + { "lat": 40.7504301, "lon": -73.9124075 }, + { "lat": 40.7503168, "lon": -73.9124300 }, + { "lat": 40.7500796, "lon": -73.9124751 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254420, + "bounds": { + "minlat": 40.7501475, + "minlon": -73.9116443, + "maxlat": 40.7504039, + "maxlon": -73.9115938 + }, + "nodes": [ + 7857606844, + 5482228841, + 7857606842 + ], + "geometry": [ + { "lat": 40.7504039, "lon": -73.9115938 }, + { "lat": 40.7502804, "lon": -73.9116181 }, + { "lat": 40.7501475, "lon": -73.9116443 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254421, + "bounds": { + "minlat": 40.7502201, + "minlon": -73.9122856, + "maxlat": 40.7504146, + "maxlon": -73.9122335 + }, + "nodes": [ + 7857606841, + 5482228842, + 7857606851 + ], + "geometry": [ + { "lat": 40.7502201, "lon": -73.9122582 }, + { "lat": 40.7503498, "lon": -73.9122335 }, + { "lat": 40.7504146, "lon": -73.9122856 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254422, + "bounds": { + "minlat": 40.7504146, + "minlon": -73.9122856, + "maxlat": 40.7504651, + "maxlon": -73.9121993 + }, + "nodes": [ + 7857606843, + 7857606851 + ], + "geometry": [ + { "lat": 40.7504651, "lon": -73.9121993 }, + { "lat": 40.7504146, "lon": -73.9122856 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254423, + "bounds": { + "minlat": 40.7504146, + "minlon": -73.9124428, + "maxlat": 40.7504346, + "maxlon": -73.9122856 + }, + "nodes": [ + 7857606846, + 7857606850, + 7857606851 + ], + "geometry": [ + { "lat": 40.7504346, "lon": -73.9124428 }, + { "lat": 40.7504301, "lon": -73.9124075 }, + { "lat": 40.7504146, "lon": -73.9122856 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254424, + "bounds": { + "minlat": 40.7503344, + "minlon": -73.9132937, + "maxlat": 40.7503905, + "maxlon": -73.9132321 + }, + "nodes": [ + 7857606845, + 7857606849 + ], + "geometry": [ + { "lat": 40.7503905, "lon": -73.9132937 }, + { "lat": 40.7503344, "lon": -73.9132321 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254425, + "bounds": { + "minlat": 40.7496968, + "minlon": -73.9110133, + "maxlat": 40.7497790, + "maxlon": -73.9102797 + }, + "nodes": [ + 7857606852, + 7857606853 + ], + "geometry": [ + { "lat": 40.7497790, "lon": -73.9110133 }, + { "lat": 40.7496968, "lon": -73.9102797 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254426, + "bounds": { + "minlat": 40.7496968, + "minlon": -73.9102797, + "maxlat": 40.7498188, + "maxlon": -73.9102543 + }, + "nodes": [ + 7857606853, + 10762221352, + 6880750138 + ], + "geometry": [ + { "lat": 40.7496968, "lon": -73.9102797 }, + { "lat": 40.7497699, "lon": -73.9102645 }, + { "lat": 40.7498188, "lon": -73.9102543 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842254427, + "bounds": { + "minlat": 40.7506444, + "minlon": -73.9180371, + "maxlat": 40.7512919, + "maxlon": -73.9178909 + }, + "nodes": [ + 7857606861, + 7857606854, + 8593852957, + 5540344320 + ], + "geometry": [ + { "lat": 40.7512919, "lon": -73.9178909 }, + { "lat": 40.7507404, "lon": -73.9180371 }, + { "lat": 40.7507044, "lon": -73.9180221 }, + { "lat": 40.7506444, "lon": -73.9179971 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 842254429, + "bounds": { + "minlat": 40.7512124, + "minlon": -73.9178909, + "maxlat": 40.7513130, + "maxlon": -73.9161031 + }, + "nodes": [ + 7857606861, + 7857606864, + 7857606862, + 7857606863 + ], + "geometry": [ + { "lat": 40.7512919, "lon": -73.9178909 }, + { "lat": 40.7512811, "lon": -73.9172806 }, + { "lat": 40.7513130, "lon": -73.9165543 }, + { "lat": 40.7512124, "lon": -73.9161031 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 842257145, + "bounds": { + "minlat": 40.7493923, + "minlon": -73.9283747, + "maxlat": 40.7506207, + "maxlon": -73.9271879 + }, + "nodes": [ + 7857650488, + 9084756028, + 9084756029, + 9084756030, + 9084756031, + 9084756032, + 9084756033, + 9084756034, + 9084756035, + 9084756036, + 9084756037, + 7857650495, + 7857650494, + 7857650493, + 5867098645, + 7857650492, + 7857650491, + 7857650489, + 7857650490 + ], + "geometry": [ + { "lat": 40.7506207, "lon": -73.9283747 }, + { "lat": 40.7505861, "lon": -73.9283489 }, + { "lat": 40.7505559, "lon": -73.9283384 }, + { "lat": 40.7505188, "lon": -73.9283265 }, + { "lat": 40.7505104, "lon": -73.9283232 }, + { "lat": 40.7504533, "lon": -73.9282960 }, + { "lat": 40.7504437, "lon": -73.9282898 }, + { "lat": 40.7504135, "lon": -73.9282640 }, + { "lat": 40.7503633, "lon": -73.9281715 }, + { "lat": 40.7503200, "lon": -73.9281056 }, + { "lat": 40.7502659, "lon": -73.9280211 }, + { "lat": 40.7501593, "lon": -73.9278962 }, + { "lat": 40.7500742, "lon": -73.9278074 }, + { "lat": 40.7499989, "lon": -73.9277288 }, + { "lat": 40.7499248, "lon": -73.9276514 }, + { "lat": 40.7498675, "lon": -73.9275916 }, + { "lat": 40.7498488, "lon": -73.9275721 }, + { "lat": 40.7496689, "lon": -73.9273843 }, + { "lat": 40.7493923, "lon": -73.9271879 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 842257146, + "bounds": { + "minlat": 40.7486382, + "minlon": -73.9285018, + "maxlat": 40.7507147, + "maxlon": -73.9251601 + }, + "nodes": [ + 7857650496, + 7857650490, + 7857650498, + 11282933558, + 7857650525, + 7857650497 + ], + "geometry": [ + { "lat": 40.7486382, "lon": -73.9285018 }, + { "lat": 40.7493923, "lon": -73.9271879 }, + { "lat": 40.7497861, "lon": -73.9264544 }, + { "lat": 40.7503691, "lon": -73.9256439 }, + { "lat": 40.7504881, "lon": -73.9254784 }, + { "lat": 40.7507147, "lon": -73.9251601 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842257147, + "bounds": { + "minlat": 40.7489429, + "minlon": -73.9266074, + "maxlat": 40.7499498, + "maxlon": -73.9251831 + }, + "nodes": [ + 7857650499, + 7857650500, + 7857650508 + ], + "geometry": [ + { "lat": 40.7489429, "lon": -73.9266074 }, + { "lat": 40.7492211, "lon": -73.9264129 }, + { "lat": 40.7499498, "lon": -73.9251831 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842257148, + "bounds": { + "minlat": 40.7499498, + "minlon": -73.9252833, + "maxlat": 40.7503802, + "maxlon": -73.9251831 + }, + "nodes": [ + 7857650501, + 7857650508 + ], + "geometry": [ + { "lat": 40.7503802, "lon": -73.9252833 }, + { "lat": 40.7499498, "lon": -73.9251831 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842257149, + "bounds": { + "minlat": 40.7503802, + "minlon": -73.9252833, + "maxlat": 40.7508729, + "maxlon": -73.9250488 + }, + "nodes": [ + 7857650501, + 7857650497, + 10069673330, + 10069673329, + 10069673328, + 10069673327, + 7857650502 + ], + "geometry": [ + { "lat": 40.7503802, "lon": -73.9252833 }, + { "lat": 40.7507147, "lon": -73.9251601 }, + { "lat": 40.7507576, "lon": -73.9251422 }, + { "lat": 40.7507934, "lon": -73.9251248 }, + { "lat": 40.7508277, "lon": -73.9251037 }, + { "lat": 40.7508552, "lon": -73.9250799 }, + { "lat": 40.7508729, "lon": -73.9250488 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842257150, + "bounds": { + "minlat": 40.7492531, + "minlon": -73.9250488, + "maxlat": 40.7512954, + "maxlon": -73.9209749 + }, + "nodes": [ + 7857650502, + 8008080178, + 10069673318, + 10069673326, + 10069673320, + 10069673319, + 10069673321, + 10069673322, + 10069673323, + 10069673324, + 10069673325, + 7857650505, + 10069673316, + 10069673317, + 10069673314, + 10069673315, + 7857650504, + 10069673313, + 10069673312, + 10069673311, + 10069673308, + 10069673309, + 10069673310, + 7857724463, + 7857650503, + 7857724464, + 10069673307, + 7857650514, + 7857650515, + 7857724414, + 7857650516, + 10069673306, + 7857724410, + 7857650517, + 9768498838, + 10069673304, + 10069673305, + 7857650518, + 10069673303, + 7857650519, + 10069673302, + 7857650520, + 7857650521, + 10069673297, + 10069673296, + 10069673295, + 7857724462, + 10069673294, + 7857650522, + 10069673293, + 7857724461, + 7857650506, + 7857650524, + 10069673292, + 10069673291, + 7857650507, + 10069673288, + 10069673289 + ], + "geometry": [ + { "lat": 40.7508729, "lon": -73.9250488 }, + { "lat": 40.7509776, "lon": -73.9246350 }, + { "lat": 40.7510821, "lon": -73.9242677 }, + { "lat": 40.7510900, "lon": -73.9242330 }, + { "lat": 40.7511001, "lon": -73.9241862 }, + { "lat": 40.7511570, "lon": -73.9238888 }, + { "lat": 40.7511605, "lon": -73.9238428 }, + { "lat": 40.7511573, "lon": -73.9238029 }, + { "lat": 40.7511499, "lon": -73.9237661 }, + { "lat": 40.7511429, "lon": -73.9237270 }, + { "lat": 40.7511410, "lon": -73.9236932 }, + { "lat": 40.7511433, "lon": -73.9236586 }, + { "lat": 40.7511686, "lon": -73.9235093 }, + { "lat": 40.7511727, "lon": -73.9234545 }, + { "lat": 40.7511736, "lon": -73.9234030 }, + { "lat": 40.7511679, "lon": -73.9233007 }, + { "lat": 40.7511679, "lon": -73.9232275 }, + { "lat": 40.7511706, "lon": -73.9231648 }, + { "lat": 40.7511770, "lon": -73.9231079 }, + { "lat": 40.7512206, "lon": -73.9227661 }, + { "lat": 40.7512640, "lon": -73.9224258 }, + { "lat": 40.7512883, "lon": -73.9222526 }, + { "lat": 40.7512937, "lon": -73.9221832 }, + { "lat": 40.7512954, "lon": -73.9221137 }, + { "lat": 40.7512934, "lon": -73.9220566 }, + { "lat": 40.7512828, "lon": -73.9220002 }, + { "lat": 40.7512714, "lon": -73.9219464 }, + { "lat": 40.7512587, "lon": -73.9218938 }, + { "lat": 40.7512402, "lon": -73.9218298 }, + { "lat": 40.7511339, "lon": -73.9214907 }, + { "lat": 40.7511239, "lon": -73.9214658 }, + { "lat": 40.7510973, "lon": -73.9214216 }, + { "lat": 40.7510638, "lon": -73.9213703 }, + { "lat": 40.7510089, "lon": -73.9212990 }, + { "lat": 40.7509634, "lon": -73.9212509 }, + { "lat": 40.7509220, "lon": -73.9212120 }, + { "lat": 40.7508842, "lon": -73.9211795 }, + { "lat": 40.7508379, "lon": -73.9211443 }, + { "lat": 40.7507778, "lon": -73.9211069 }, + { "lat": 40.7507021, "lon": -73.9210679 }, + { "lat": 40.7506472, "lon": -73.9210446 }, + { "lat": 40.7505783, "lon": -73.9210213 }, + { "lat": 40.7505121, "lon": -73.9210055 }, + { "lat": 40.7502582, "lon": -73.9209751 }, + { "lat": 40.7502211, "lon": -73.9209749 }, + { "lat": 40.7501864, "lon": -73.9209795 }, + { "lat": 40.7501593, "lon": -73.9209886 }, + { "lat": 40.7501347, "lon": -73.9210041 }, + { "lat": 40.7501113, "lon": -73.9210227 }, + { "lat": 40.7500929, "lon": -73.9210418 }, + { "lat": 40.7500784, "lon": -73.9210635 }, + { "lat": 40.7500659, "lon": -73.9210912 }, + { "lat": 40.7495636, "lon": -73.9233288 }, + { "lat": 40.7495349, "lon": -73.9234671 }, + { "lat": 40.7495073, "lon": -73.9236111 }, + { "lat": 40.7492630, "lon": -73.9249223 }, + { "lat": 40.7492588, "lon": -73.9249542 }, + { "lat": 40.7492531, "lon": -73.9250104 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 842257152, + "bounds": { + "minlat": 40.7499498, + "minlon": -73.9251831, + "maxlat": 40.7505121, + "maxlon": -73.9210055 + }, + "nodes": [ + 7857650508, + 7857650509, + 7857650510, + 7857650511, + 7857650512, + 10069673300, + 10069673301, + 10069673299, + 7857650513, + 7857650523, + 10580513525, + 7857650521 + ], + "geometry": [ + { "lat": 40.7499498, "lon": -73.9251831 }, + { "lat": 40.7500048, "lon": -73.9241383 }, + { "lat": 40.7502069, "lon": -73.9228756 }, + { "lat": 40.7500666, "lon": -73.9223059 }, + { "lat": 40.7501893, "lon": -73.9216628 }, + { "lat": 40.7502023, "lon": -73.9216123 }, + { "lat": 40.7502207, "lon": -73.9215657 }, + { "lat": 40.7502427, "lon": -73.9215224 }, + { "lat": 40.7504058, "lon": -73.9212611 }, + { "lat": 40.7504354, "lon": -73.9212097 }, + { "lat": 40.7505038, "lon": -73.9210355 }, + { "lat": 40.7505121, "lon": -73.9210055 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842257154, + "bounds": { + "minlat": 40.7503802, + "minlon": -73.9254784, + "maxlat": 40.7504881, + "maxlon": -73.9252833 + }, + "nodes": [ + 7857650501, + 7857650525 + ], + "geometry": [ + { "lat": 40.7503802, "lon": -73.9252833 }, + { "lat": 40.7504881, "lon": -73.9254784 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842257155, + "bounds": { + "minlat": 40.7511715, + "minlon": -73.9276284, + "maxlat": 40.7513329, + "maxlon": -73.9267262 + }, + "nodes": [ + 7857650527, + 7857650528 + ], + "geometry": [ + { "lat": 40.7511715, "lon": -73.9276284 }, + { "lat": 40.7513329, "lon": -73.9267262 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842257156, + "bounds": { + "minlat": 40.7514416, + "minlon": -73.9267675, + "maxlat": 40.7514798, + "maxlon": -73.9248404 + }, + "nodes": [ + 7857650531, + 5867098632, + 7857650529 + ], + "geometry": [ + { "lat": 40.7514416, "lon": -73.9267675 }, + { "lat": 40.7514767, "lon": -73.9250319 }, + { "lat": 40.7514798, "lon": -73.9248404 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 842257157, + "bounds": { + "minlat": 40.7513126, + "minlon": -73.9275170, + "maxlat": 40.7514416, + "maxlon": -73.9267675 + }, + "nodes": [ + 7857650535, + 7857650531 + ], + "geometry": [ + { "lat": 40.7513126, "lon": -73.9275170 }, + { "lat": 40.7514416, "lon": -73.9267675 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 842257158, + "bounds": { + "minlat": 40.7506456, + "minlon": -73.9282403, + "maxlat": 40.7507032, + "maxlon": -73.9281156 + }, + "nodes": [ + 5867098658, + 5867098659, + 5867098640 + ], + "geometry": [ + { "lat": 40.7506456, "lon": -73.9282403 }, + { "lat": 40.7506755, "lon": -73.9281756 }, + { "lat": 40.7507032, "lon": -73.9281156 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842257159, + "bounds": { + "minlat": 40.7507051, + "minlon": -73.9281679, + "maxlat": 40.7509298, + "maxlon": -73.9281048 + }, + "nodes": [ + 7857650532, + 5867098629, + 5867098630, + 7857650533 + ], + "geometry": [ + { "lat": 40.7509298, "lon": -73.9281679 }, + { "lat": 40.7508391, "lon": -73.9281425 }, + { "lat": 40.7507784, "lon": -73.9281254 }, + { "lat": 40.7507051, "lon": -73.9281048 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842257160, + "bounds": { + "minlat": 40.7509298, + "minlon": -73.9281679, + "maxlat": 40.7511715, + "maxlon": -73.9276284 + }, + "nodes": [ + 7857650532, + 7857724446, + 7857650534, + 7857724447, + 7857650527 + ], + "geometry": [ + { "lat": 40.7509298, "lon": -73.9281679 }, + { "lat": 40.7509994, "lon": -73.9277830 }, + { "lat": 40.7510074, "lon": -73.9277635 }, + { "lat": 40.7510156, "lon": -73.9277515 }, + { "lat": 40.7511715, "lon": -73.9276284 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842257161, + "bounds": { + "minlat": 40.7513329, + "minlon": -73.9267675, + "maxlat": 40.7514416, + "maxlon": -73.9267262 + }, + "nodes": [ + 7857650528, + 7857650531 + ], + "geometry": [ + { "lat": 40.7513329, "lon": -73.9267262 }, + { "lat": 40.7514416, "lon": -73.9267675 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 842257306, + "bounds": { + "minlat": 40.7497861, + "minlon": -73.9268295, + "maxlat": 40.7500915, + "maxlon": -73.9264544 + }, + "nodes": [ + 7857607870, + 7857650498 + ], + "geometry": [ + { "lat": 40.7500915, "lon": -73.9268295 }, + { "lat": 40.7497861, "lon": -73.9264544 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842257307, + "bounds": { + "minlat": 40.7497688, + "minlon": -73.9269598, + "maxlat": 40.7500010, + "maxlon": -73.9266771 + }, + "nodes": [ + 7857607871, + 7857607872 + ], + "geometry": [ + { "lat": 40.7500010, "lon": -73.9269598 }, + { "lat": 40.7497688, "lon": -73.9266771 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842257308, + "bounds": { + "minlat": 40.7500010, + "minlon": -73.9269598, + "maxlat": 40.7501672, + "maxlon": -73.9267205 + }, + "nodes": [ + 7857607871, + 7857607870, + 7857607873 + ], + "geometry": [ + { "lat": 40.7500010, "lon": -73.9269598 }, + { "lat": 40.7500915, "lon": -73.9268295 }, + { "lat": 40.7501672, "lon": -73.9267205 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842257718, + "bounds": { + "minlat": 40.7511428, + "minlon": -73.9097830, + "maxlat": 40.7511717, + "maxlon": -73.9096379 + }, + "nodes": [ + 7857665099, + 6450796179, + 5482228862 + ], + "geometry": [ + { "lat": 40.7511428, "lon": -73.9097830 }, + { "lat": 40.7511573, "lon": -73.9097104 }, + { "lat": 40.7511717, "lon": -73.9096379 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842257719, + "bounds": { + "minlat": 40.7508880, + "minlon": -73.9098775, + "maxlat": 40.7511428, + "maxlon": -73.9097830 + }, + "nodes": [ + 7857665099, + 7857665100 + ], + "geometry": [ + { "lat": 40.7511428, "lon": -73.9097830 }, + { "lat": 40.7508880, "lon": -73.9098775 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842257720, + "bounds": { + "minlat": 40.7511252, + "minlon": -73.9110522, + "maxlat": 40.7512571, + "maxlon": -73.9110042 + }, + "nodes": [ + 7857665102, + 7857665101 + ], + "geometry": [ + { "lat": 40.7512571, "lon": -73.9110042 }, + { "lat": 40.7511252, "lon": -73.9110522 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842257721, + "bounds": { + "minlat": 40.7512571, + "minlon": -73.9110042, + "maxlat": 40.7513189, + "maxlon": -73.9106533 + }, + "nodes": [ + 7857665102, + 7857665103 + ], + "geometry": [ + { "lat": 40.7512571, "lon": -73.9110042 }, + { "lat": 40.7513189, "lon": -73.9106533 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842257722, + "bounds": { + "minlat": 40.7512817, + "minlon": -73.9104768, + "maxlat": 40.7513092, + "maxlon": -73.9102789 + }, + "nodes": [ + 7857665104, + 7857665105 + ], + "geometry": [ + { "lat": 40.7512817, "lon": -73.9104768 }, + { "lat": 40.7513092, "lon": -73.9102789 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842257723, + "bounds": { + "minlat": 40.7511428, + "minlon": -73.9102789, + "maxlat": 40.7513092, + "maxlon": -73.9097830 + }, + "nodes": [ + 7857665105, + 7857665106, + 7857665099 + ], + "geometry": [ + { "lat": 40.7513092, "lon": -73.9102789 }, + { "lat": 40.7512527, "lon": -73.9100209 }, + { "lat": 40.7511428, "lon": -73.9097830 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842257724, + "bounds": { + "minlat": 40.7512817, + "minlon": -73.9106533, + "maxlat": 40.7513189, + "maxlon": -73.9104768 + }, + "nodes": [ + 7857665103, + 7857665104 + ], + "geometry": [ + { "lat": 40.7513189, "lon": -73.9106533 }, + { "lat": 40.7512817, "lon": -73.9104768 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842265825, + "bounds": { + "minlat": 40.7502581, + "minlon": -73.9224833, + "maxlat": 40.7510638, + "maxlon": -73.9213703 + }, + "nodes": [ + 7857724409, + 7857724410 + ], + "geometry": [ + { "lat": 40.7502581, "lon": -73.9224833 }, + { "lat": 40.7510638, "lon": -73.9213703 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 842265826, + "bounds": { + "minlat": 40.7508243, + "minlon": -73.9230048, + "maxlat": 40.7511339, + "maxlon": -73.9214907 + }, + "nodes": [ + 7857724411, + 7857724412, + 7857724413, + 7857724414 + ], + "geometry": [ + { "lat": 40.7508243, "lon": -73.9230048 }, + { "lat": 40.7510114, "lon": -73.9220137 }, + { "lat": 40.7509724, "lon": -73.9217409 }, + { "lat": 40.7511339, "lon": -73.9214907 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842265827, + "bounds": { + "minlat": 40.7502069, + "minlon": -73.9230048, + "maxlat": 40.7508243, + "maxlon": -73.9228343 + }, + "nodes": [ + 7857724411, + 7857724415, + 7857650510 + ], + "geometry": [ + { "lat": 40.7508243, "lon": -73.9230048 }, + { "lat": 40.7502944, "lon": -73.9228343 }, + { "lat": 40.7502069, "lon": -73.9228756 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842265832, + "bounds": { + "minlat": 40.7503695, + "minlon": -73.9297277, + "maxlat": 40.7506456, + "maxlon": -73.9282403 + }, + "nodes": [ + 5888556989, + 5888553558, + 7857650488, + 5867098658 + ], + "geometry": [ + { "lat": 40.7503695, "lon": -73.9297277 }, + { "lat": 40.7503945, "lon": -73.9295960 }, + { "lat": 40.7506207, "lon": -73.9283747 }, + { "lat": 40.7506456, "lon": -73.9282403 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842265833, + "bounds": { + "minlat": 40.7474954, + "minlon": -73.9354059, + "maxlat": 40.7493950, + "maxlon": -73.9325012 + }, + "nodes": [ + 7857724432, + 7857724433, + 7857724434, + 7857724435, + 7857724436, + 7857724437 + ], + "geometry": [ + { "lat": 40.7474954, "lon": -73.9354059 }, + { "lat": 40.7477681, "lon": -73.9347800 }, + { "lat": 40.7484578, "lon": -73.9338227 }, + { "lat": 40.7485484, "lon": -73.9338023 }, + { "lat": 40.7486649, "lon": -73.9335023 }, + { "lat": 40.7493950, "lon": -73.9325012 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842265834, + "bounds": { + "minlat": 40.7493950, + "minlon": -73.9325012, + "maxlat": 40.7496941, + "maxlon": -73.9324016 + }, + "nodes": [ + 7857724437, + 7857724438 + ], + "geometry": [ + { "lat": 40.7493950, "lon": -73.9325012 }, + { "lat": 40.7496941, "lon": -73.9324016 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 842265835, + "bounds": { + "minlat": 40.7496941, + "minlon": -73.9324016, + "maxlat": 40.7504985, + "maxlon": -73.9299866 + }, + "nodes": [ + 7857724438, + 7857724439, + 8333737039, + 5888553536 + ], + "geometry": [ + { "lat": 40.7496941, "lon": -73.9324016 }, + { "lat": 40.7501567, "lon": -73.9317054 }, + { "lat": 40.7502112, "lon": -73.9314314 }, + { "lat": 40.7504985, "lon": -73.9299866 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842265836, + "bounds": { + "minlat": 40.7504985, + "minlon": -73.9299866, + "maxlat": 40.7512851, + "maxlon": -73.9276868 + }, + "nodes": [ + 5888553536, + 1414043524, + 7857724452, + 7857724449, + 7857724441, + 7857724448, + 11282933554, + 7857724442, + 7857724443, + 7857724444, + 7857724455, + 7857724445 + ], + "geometry": [ + { "lat": 40.7504985, "lon": -73.9299866 }, + { "lat": 40.7505643, "lon": -73.9299525 }, + { "lat": 40.7506492, "lon": -73.9299084 }, + { "lat": 40.7506600, "lon": -73.9298991 }, + { "lat": 40.7506739, "lon": -73.9298697 }, + { "lat": 40.7506800, "lon": -73.9298517 }, + { "lat": 40.7507765, "lon": -73.9293106 }, + { "lat": 40.7507801, "lon": -73.9292902 }, + { "lat": 40.7508659, "lon": -73.9285142 }, + { "lat": 40.7508884, "lon": -73.9284058 }, + { "lat": 40.7509808, "lon": -73.9282383 }, + { "lat": 40.7512851, "lon": -73.9276868 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842265837, + "bounds": { + "minlat": 40.7458713, + "minlon": -73.9399739, + "maxlat": 40.7515978, + "maxlon": -73.9292017 + }, + "nodes": [ + 12132844867, + 9450737116, + 12132844866, + 2292059137, + 12132844865, + 12132844864, + 12132844863, + 12132844862, + 12132844861, + 12132844860, + 12132844859, + 12132844857, + 12132845081, + 12132844856, + 12132844855, + 12132844853, + 12132844854, + 12132844585, + 12132844668, + 12132844667, + 12132844666, + 12132844665, + 12132844664, + 12132844663, + 12132844662, + 12132844641, + 12132844661, + 12132844660, + 12132844659, + 12132844658, + 12132844657, + 12132844656, + 12132844655, + 12132844654, + 12132844653, + 12132844652, + 12132844651, + 12132844650, + 12132844649, + 12132844648, + 12132844645, + 12132844646, + 12132844647, + 12132844644, + 12132844597, + 12132844589, + 12132844596, + 597500993, + 12132844595, + 12132844588, + 12132844594, + 12132844593, + 12132844592, + 12132844591, + 12132844590, + 12132844502, + 12132844586, + 12132844598, + 12132844602, + 12132844600, + 12132844601, + 12132844599, + 12132844969, + 12132844967, + 12132844970, + 12132844971, + 12132844977, + 12132844972, + 12132844973, + 12132844974, + 12132844975, + 12132844976, + 12132845048, + 12132845022, + 12132845023, + 12132845024, + 12132845025, + 12132845026, + 12132845027, + 12132845028, + 12132845029, + 12132845030, + 7857724450, + 7857724451, + 12132845031, + 12132845032, + 12132845033, + 12132845034, + 12132845035, + 12132845021, + 12132845036, + 12132845038, + 12132845037, + 12132845039, + 12132845040, + 12132845041, + 12132845042, + 12132845043, + 12132845044, + 12132845045, + 12132845046, + 12132845047 + ], + "geometry": [ + { "lat": 40.7509609, "lon": -73.9310809 }, + { "lat": 40.7509139, "lon": -73.9310546 }, + { "lat": 40.7508799, "lon": -73.9310346 }, + { "lat": 40.7508579, "lon": -73.9310163 }, + { "lat": 40.7508282, "lon": -73.9309914 }, + { "lat": 40.7503201, "lon": -73.9319346 }, + { "lat": 40.7502684, "lon": -73.9320279 }, + { "lat": 40.7502191, "lon": -73.9321044 }, + { "lat": 40.7501486, "lon": -73.9322098 }, + { "lat": 40.7498000, "lon": -73.9326976 }, + { "lat": 40.7494998, "lon": -73.9331339 }, + { "lat": 40.7492393, "lon": -73.9334963 }, + { "lat": 40.7489219, "lon": -73.9339581 }, + { "lat": 40.7486820, "lon": -73.9343072 }, + { "lat": 40.7484338, "lon": -73.9346534 }, + { "lat": 40.7483804, "lon": -73.9347223 }, + { "lat": 40.7481811, "lon": -73.9349469 }, + { "lat": 40.7481023, "lon": -73.9350368 }, + { "lat": 40.7479721, "lon": -73.9352197 }, + { "lat": 40.7478782, "lon": -73.9353570 }, + { "lat": 40.7477929, "lon": -73.9354893 }, + { "lat": 40.7476731, "lon": -73.9356668 }, + { "lat": 40.7476077, "lon": -73.9357696 }, + { "lat": 40.7475001, "lon": -73.9359513 }, + { "lat": 40.7474335, "lon": -73.9360651 }, + { "lat": 40.7473947, "lon": -73.9361260 }, + { "lat": 40.7473442, "lon": -73.9362053 }, + { "lat": 40.7472856, "lon": -73.9363085 }, + { "lat": 40.7472240, "lon": -73.9364240 }, + { "lat": 40.7471730, "lon": -73.9365228 }, + { "lat": 40.7471299, "lon": -73.9366180 }, + { "lat": 40.7470830, "lon": -73.9367324 }, + { "lat": 40.7470442, "lon": -73.9368288 }, + { "lat": 40.7470058, "lon": -73.9369386 }, + { "lat": 40.7465972, "lon": -73.9381567 }, + { "lat": 40.7465620, "lon": -73.9382587 }, + { "lat": 40.7465157, "lon": -73.9383746 }, + { "lat": 40.7464737, "lon": -73.9384826 }, + { "lat": 40.7464144, "lon": -73.9386173 }, + { "lat": 40.7463540, "lon": -73.9387441 }, + { "lat": 40.7458713, "lon": -73.9397277 }, + { "lat": 40.7458985, "lon": -73.9397484 }, + { "lat": 40.7459252, "lon": -73.9397687 }, + { "lat": 40.7459382, "lon": -73.9397786 }, + { "lat": 40.7459912, "lon": -73.9397908 }, + { "lat": 40.7460518, "lon": -73.9398641 }, + { "lat": 40.7460649, "lon": -73.9398800 }, + { "lat": 40.7460807, "lon": -73.9398969 }, + { "lat": 40.7461072, "lon": -73.9399253 }, + { "lat": 40.7461418, "lon": -73.9399578 }, + { "lat": 40.7461589, "lon": -73.9399739 }, + { "lat": 40.7464859, "lon": -73.9394111 }, + { "lat": 40.7465363, "lon": -73.9393305 }, + { "lat": 40.7465945, "lon": -73.9392453 }, + { "lat": 40.7466369, "lon": -73.9391850 }, + { "lat": 40.7467977, "lon": -73.9389567 }, + { "lat": 40.7470652, "lon": -73.9385761 }, + { "lat": 40.7474217, "lon": -73.9380748 }, + { "lat": 40.7475205, "lon": -73.9379358 }, + { "lat": 40.7476194, "lon": -73.9377934 }, + { "lat": 40.7477186, "lon": -73.9376564 }, + { "lat": 40.7478192, "lon": -73.9375088 }, + { "lat": 40.7481983, "lon": -73.9369179 }, + { "lat": 40.7484018, "lon": -73.9366139 }, + { "lat": 40.7484651, "lon": -73.9365259 }, + { "lat": 40.7486229, "lon": -73.9363019 }, + { "lat": 40.7486907, "lon": -73.9362252 }, + { "lat": 40.7487466, "lon": -73.9361620 }, + { "lat": 40.7492396, "lon": -73.9354359 }, + { "lat": 40.7493277, "lon": -73.9352904 }, + { "lat": 40.7495850, "lon": -73.9349498 }, + { "lat": 40.7499554, "lon": -73.9344625 }, + { "lat": 40.7500023, "lon": -73.9343594 }, + { "lat": 40.7500102, "lon": -73.9343409 }, + { "lat": 40.7501345, "lon": -73.9341312 }, + { "lat": 40.7501968, "lon": -73.9340246 }, + { "lat": 40.7502322, "lon": -73.9339382 }, + { "lat": 40.7502627, "lon": -73.9338497 }, + { "lat": 40.7503391, "lon": -73.9336900 }, + { "lat": 40.7503857, "lon": -73.9335862 }, + { "lat": 40.7504337, "lon": -73.9334517 }, + { "lat": 40.7507932, "lon": -73.9323899 }, + { "lat": 40.7508613, "lon": -73.9321912 }, + { "lat": 40.7511379, "lon": -73.9313860 }, + { "lat": 40.7511930, "lon": -73.9311864 }, + { "lat": 40.7512707, "lon": -73.9309456 }, + { "lat": 40.7513017, "lon": -73.9308474 }, + { "lat": 40.7513296, "lon": -73.9307344 }, + { "lat": 40.7513579, "lon": -73.9306144 }, + { "lat": 40.7513870, "lon": -73.9304588 }, + { "lat": 40.7513982, "lon": -73.9304052 }, + { "lat": 40.7514204, "lon": -73.9303526 }, + { "lat": 40.7514458, "lon": -73.9303093 }, + { "lat": 40.7514708, "lon": -73.9302542 }, + { "lat": 40.7514970, "lon": -73.9301892 }, + { "lat": 40.7515130, "lon": -73.9301365 }, + { "lat": 40.7515268, "lon": -73.9300758 }, + { "lat": 40.7515368, "lon": -73.9300165 }, + { "lat": 40.7515951, "lon": -73.9295647 }, + { "lat": 40.7515978, "lon": -73.9295142 }, + { "lat": 40.7515961, "lon": -73.9294502 }, + { "lat": 40.7515740, "lon": -73.9292017 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 842265838, + "bounds": { + "minlat": 40.7509298, + "minlon": -73.9282383, + "maxlat": 40.7509808, + "maxlon": -73.9281679 + }, + "nodes": [ + 7857724455, + 7857650532 + ], + "geometry": [ + { "lat": 40.7509808, "lon": -73.9282383 }, + { "lat": 40.7509298, "lon": -73.9281679 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 842267706, + "bounds": { + "minlat": 40.7242625, + "minlon": -73.9187807, + "maxlat": 40.7248124, + "maxlon": -73.9171619 + }, + "nodes": [ + 7857752402, + 7857752406, + 13875644245, + 7857752403, + 42819666 + ], + "geometry": [ + { "lat": 40.7248124, "lon": -73.9187807 }, + { "lat": 40.7246500, "lon": -73.9180178 }, + { "lat": 40.7245983, "lon": -73.9177689 }, + { "lat": 40.7245473, "lon": -73.9175655 }, + { "lat": 40.7242625, "lon": -73.9171619 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842267707, + "bounds": { + "minlat": 40.7248124, + "minlon": -73.9187807, + "maxlat": 40.7252388, + "maxlon": -73.9186297 + }, + "nodes": [ + 7857752404, + 7857752402 + ], + "geometry": [ + { "lat": 40.7252388, "lon": -73.9186297 }, + { "lat": 40.7248124, "lon": -73.9187807 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842267708, + "bounds": { + "minlat": 40.7246500, + "minlon": -73.9180178, + "maxlat": 40.7251265, + "maxlon": -73.9178490 + }, + "nodes": [ + 7857752405, + 7857752406 + ], + "geometry": [ + { "lat": 40.7251265, "lon": -73.9178490 }, + { "lat": 40.7246500, "lon": -73.9180178 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842268265, + "bounds": { + "minlat": 40.7218973, + "minlon": -73.9228758, + "maxlat": 40.7221145, + "maxlon": -73.9217351 + }, + "nodes": [ + 7857761785, + 7857747083, + 7857747084 + ], + "geometry": [ + { "lat": 40.7220747, "lon": -73.9228758 }, + { "lat": 40.7221145, "lon": -73.9224404 }, + { "lat": 40.7218973, "lon": -73.9217351 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 842268266, + "bounds": { + "minlat": 40.7211797, + "minlon": -73.9230118, + "maxlat": 40.7219082, + "maxlon": -73.9228946 + }, + "nodes": [ + 7857761786, + 7857761787 + ], + "geometry": [ + { "lat": 40.7211797, "lon": -73.9228946 }, + { "lat": 40.7219082, "lon": -73.9230118 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 842268267, + "bounds": { + "minlat": 40.7219082, + "minlon": -73.9230118, + "maxlat": 40.7220747, + "maxlon": -73.9228758 + }, + "nodes": [ + 7857761787, + 7857761788, + 7857761785 + ], + "geometry": [ + { "lat": 40.7219082, "lon": -73.9230118 }, + { "lat": 40.7220123, "lon": -73.9229438 }, + { "lat": 40.7220747, "lon": -73.9228758 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 842269210, + "bounds": { + "minlat": 40.7144523, + "minlon": -73.9176790, + "maxlat": 40.7147531, + "maxlon": -73.9174732 + }, + "nodes": [ + 7857758660, + 7857758661 + ], + "geometry": [ + { "lat": 40.7144523, "lon": -73.9176790 }, + { "lat": 40.7147531, "lon": -73.9174732 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 842269211, + "bounds": { + "minlat": 40.7146598, + "minlon": -73.9175104, + "maxlat": 40.7150042, + "maxlon": -73.9168025 + }, + "nodes": [ + 7857758662, + 7857758669, + 7857758663 + ], + "geometry": [ + { "lat": 40.7149859, "lon": -73.9175104 }, + { "lat": 40.7150042, "lon": -73.9174044 }, + { "lat": 40.7146598, "lon": -73.9168025 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 842269212, + "bounds": { + "minlat": 40.7144591, + "minlon": -73.9166539, + "maxlat": 40.7147845, + "maxlon": -73.9162114 + }, + "nodes": [ + 7857758664, + 7857758665 + ], + "geometry": [ + { "lat": 40.7147845, "lon": -73.9166539 }, + { "lat": 40.7144591, "lon": -73.9162114 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842269213, + "bounds": { + "minlat": 40.7146067, + "minlon": -73.9164748, + "maxlat": 40.7149372, + "maxlon": -73.9160358 + }, + "nodes": [ + 7857758666, + 7857758667 + ], + "geometry": [ + { "lat": 40.7149372, "lon": -73.9164748 }, + { "lat": 40.7146067, "lon": -73.9160358 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842269214, + "bounds": { + "minlat": 40.7144591, + "minlon": -73.9162114, + "maxlat": 40.7146067, + "maxlon": -73.9160358 + }, + "nodes": [ + 7857758665, + 7857758667 + ], + "geometry": [ + { "lat": 40.7144591, "lon": -73.9162114 }, + { "lat": 40.7146067, "lon": -73.9160358 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842269215, + "bounds": { + "minlat": 40.7144982, + "minlon": -73.9169840, + "maxlat": 40.7149372, + "maxlon": -73.9164748 + }, + "nodes": [ + 7857758666, + 7857758664, + 7857758663, + 7706126098 + ], + "geometry": [ + { "lat": 40.7149372, "lon": -73.9164748 }, + { "lat": 40.7147845, "lon": -73.9166539 }, + { "lat": 40.7146598, "lon": -73.9168025 }, + { "lat": 40.7144982, "lon": -73.9169840 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842269216, + "bounds": { + "minlat": 40.7147531, + "minlon": -73.9174963, + "maxlat": 40.7150042, + "maxlon": -73.9174044 + }, + "nodes": [ + 7857758661, + 7857758668, + 7857758669 + ], + "geometry": [ + { "lat": 40.7147531, "lon": -73.9174732 }, + { "lat": 40.7148742, "lon": -73.9174963 }, + { "lat": 40.7150042, "lon": -73.9174044 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 842624848, + "bounds": { + "minlat": 40.7057506, + "minlon": -73.9266450, + "maxlat": 40.7057929, + "maxlon": -73.9260412 + }, + "nodes": [ + 7711304343, + 9744012785, + 8558219705, + 42505684 + ], + "geometry": [ + { "lat": 40.7057639, "lon": -73.9260412 }, + { "lat": 40.7057929, "lon": -73.9262376 }, + { "lat": 40.7057886, "lon": -73.9264883 }, + { "lat": 40.7057506, "lon": -73.9266450 } + ], + "tags": { + "highway": "residential", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 842641870, + "bounds": { + "minlat": 40.8248606, + "minlon": -74.0116839, + "maxlat": 40.8254065, + "maxlon": -74.0101060 + }, + "nodes": [ + 5751062624, + 7860914910, + 9526207111, + 9526207114, + 9526241319, + 9526241322, + 9526241325, + 9526241328, + 7860914911, + 7860914912 + ], + "geometry": [ + { "lat": 40.8248606, "lon": -74.0116839 }, + { "lat": 40.8248903, "lon": -74.0115822 }, + { "lat": 40.8249370, "lon": -74.0113849 }, + { "lat": 40.8249805, "lon": -74.0111814 }, + { "lat": 40.8250242, "lon": -74.0109764 }, + { "lat": 40.8250712, "lon": -74.0107564 }, + { "lat": 40.8251148, "lon": -74.0105522 }, + { "lat": 40.8251613, "lon": -74.0103345 }, + { "lat": 40.8252101, "lon": -74.0101060 }, + { "lat": 40.8254065, "lon": -74.0101736 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 842641871, + "bounds": { + "minlat": 40.8249422, + "minlon": -74.0101060, + "maxlat": 40.8252101, + "maxlon": -74.0099839 + }, + "nodes": [ + 7860914911, + 7860914913, + 5751062621 + ], + "geometry": [ + { "lat": 40.8252101, "lon": -74.0101060 }, + { "lat": 40.8250051, "lon": -74.0100315 }, + { "lat": 40.8249422, "lon": -74.0099839 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 842690946, + "bounds": { + "minlat": 40.7155231, + "minlon": -73.9672270, + "maxlat": 40.7157579, + "maxlon": -73.9663960 + }, + "nodes": [ + 7861415221, + 8986635611, + 9949556517, + 2357946647, + 42469475 + ], + "geometry": [ + { "lat": 40.7157579, "lon": -73.9672270 }, + { "lat": 40.7157362, "lon": -73.9671717 }, + { "lat": 40.7155763, "lon": -73.9665656 }, + { "lat": 40.7155634, "lon": -73.9665119 }, + { "lat": 40.7155231, "lon": -73.9663960 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "oneway": "yes", + "sidewalk": "separate", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 843062452, + "bounds": { + "minlat": 40.6990632, + "minlon": -73.9364567, + "maxlat": 40.7006446, + "maxlon": -73.9354939 + }, + "nodes": [ + 42513688, + 9301423395, + 42479500, + 7152955665, + 4660923512, + 42504531 + ], + "geometry": [ + { "lat": 40.7006446, "lon": -73.9364567 }, + { "lat": 40.7005842, "lon": -73.9364263 }, + { "lat": 40.7000382, "lon": -73.9360849 }, + { "lat": 40.6995021, "lon": -73.9357496 }, + { "lat": 40.6991662, "lon": -73.9355265 }, + { "lat": 40.6990632, "lon": -73.9354939 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Bushwick Avenue", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Bushwick", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 843553759, + "bounds": { + "minlat": 40.7142862, + "minlon": -73.9939355, + "maxlat": 40.7143535, + "maxlon": -73.9930343 + }, + "nodes": [ + 42437988, + 5863596386, + 7115898917, + 6369613306, + 42429636 + ], + "geometry": [ + { "lat": 40.7143535, "lon": -73.9930343 }, + { "lat": 40.7143485, "lon": -73.9931015 }, + { "lat": 40.7143253, "lon": -73.9934154 }, + { "lat": 40.7142927, "lon": -73.9938668 }, + { "lat": 40.7142862, "lon": -73.9939355 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "Division Street", + "name:ko": "디비전 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 843553760, + "bounds": { + "minlat": 40.7143885, + "minlon": -73.9925624, + "maxlat": 40.7144911, + "maxlon": -73.9912270 + }, + "nodes": [ + 42440677, + 9941054070, + 8372982790, + 42453700, + 8372982792, + 8821523710, + 5863593966, + 5796726888 + ], + "geometry": [ + { "lat": 40.7144911, "lon": -73.9912270 }, + { "lat": 40.7144879, "lon": -73.9912675 }, + { "lat": 40.7144288, "lon": -73.9920235 }, + { "lat": 40.7144213, "lon": -73.9921353 }, + { "lat": 40.7144202, "lon": -73.9921541 }, + { "lat": 40.7144016, "lon": -73.9923916 }, + { "lat": 40.7143970, "lon": -73.9924522 }, + { "lat": 40.7143885, "lon": -73.9925624 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Division Street", + "name:ko": "디비전 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 843930227, + "bounds": { + "minlat": 40.8330630, + "minlon": -73.9993135, + "maxlat": 40.8335242, + "maxlon": -73.9984942 + }, + "nodes": [ + 7872475852, + 7872475853, + 7872475854, + 7872475855, + 7872475856, + 7872475857, + 7872475858, + 7872475859 + ], + "geometry": [ + { "lat": 40.8335242, "lon": -73.9993135 }, + { "lat": 40.8333683, "lon": -73.9990458 }, + { "lat": 40.8333040, "lon": -73.9990416 }, + { "lat": 40.8332494, "lon": -73.9989991 }, + { "lat": 40.8330919, "lon": -73.9987272 }, + { "lat": 40.8330678, "lon": -73.9986635 }, + { "lat": 40.8330630, "lon": -73.9985955 }, + { "lat": 40.8330755, "lon": -73.9984942 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 844902258, + "bounds": { + "minlat": 40.7098920, + "minlon": -73.9190428, + "maxlat": 40.7103149, + "maxlon": -73.9182893 + }, + "nodes": [ + 7882516196, + 9755788652, + 7882516200, + 7882516197, + 7882516198, + 9755788653, + 7882516199 + ], + "geometry": [ + { "lat": 40.7098920, "lon": -73.9182893 }, + { "lat": 40.7099317, "lon": -73.9183595 }, + { "lat": 40.7099470, "lon": -73.9183865 }, + { "lat": 40.7100772, "lon": -73.9186166 }, + { "lat": 40.7102728, "lon": -73.9189592 }, + { "lat": 40.7102866, "lon": -73.9189866 }, + { "lat": 40.7103149, "lon": -73.9190428 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 844902259, + "bounds": { + "minlat": 40.7100637, + "minlon": -73.9175010, + "maxlat": 40.7111225, + "maxlon": -73.9162687 + }, + "nodes": [ + 7882516201, + 9755788634, + 7882516202, + 7882516203, + 7882516204, + 7882516205, + 7882516206, + 9755788633, + 7882516207 + ], + "geometry": [ + { "lat": 40.7100637, "lon": -73.9175010 }, + { "lat": 40.7101175, "lon": -73.9174436 }, + { "lat": 40.7102790, "lon": -73.9172710 }, + { "lat": 40.7104635, "lon": -73.9170597 }, + { "lat": 40.7106127, "lon": -73.9168681 }, + { "lat": 40.7107690, "lon": -73.9166816 }, + { "lat": 40.7109700, "lon": -73.9164506 }, + { "lat": 40.7110774, "lon": -73.9163226 }, + { "lat": 40.7111225, "lon": -73.9162687 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 844902260, + "bounds": { + "minlat": 40.7096325, + "minlon": -73.9167731, + "maxlat": 40.7107569, + "maxlon": -73.9156481 + }, + "nodes": [ + 7882516209, + 9755788637, + 7882516210, + 7882516211, + 7882516212, + 7882516213, + 9755788636, + 7882516214 + ], + "geometry": [ + { "lat": 40.7107569, "lon": -73.9156481 }, + { "lat": 40.7107079, "lon": -73.9156962 }, + { "lat": 40.7104665, "lon": -73.9159327 }, + { "lat": 40.7102902, "lon": -73.9160959 }, + { "lat": 40.7100918, "lon": -73.9163032 }, + { "lat": 40.7099281, "lon": -73.9164767 }, + { "lat": 40.7096884, "lon": -73.9167170 }, + { "lat": 40.7096325, "lon": -73.9167731 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 844902261, + "bounds": { + "minlat": 40.7094935, + "minlon": -73.9157335, + "maxlat": 40.7103113, + "maxlon": -73.9148905 + }, + "nodes": [ + 7882516215, + 9755788856, + 7882516216, + 7882516217, + 7882516218, + 7882516219, + 7882516220 + ], + "geometry": [ + { "lat": 40.7103113, "lon": -73.9148905 }, + { "lat": 40.7102598, "lon": -73.9149422 }, + { "lat": 40.7102381, "lon": -73.9149640 }, + { "lat": 40.7100596, "lon": -73.9151446 }, + { "lat": 40.7098526, "lon": -73.9153581 }, + { "lat": 40.7096766, "lon": -73.9155408 }, + { "lat": 40.7094935, "lon": -73.9157335 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 845266726, + "bounds": { + "minlat": 40.7189586, + "minlon": -73.9101117, + "maxlat": 40.7190404, + "maxlon": -73.9082240 + }, + "nodes": [ + 7886149532, + 7886149533, + 7886149534, + 9759966674, + 42827469 + ], + "geometry": [ + { "lat": 40.7189586, "lon": -73.9101117 }, + { "lat": 40.7189958, "lon": -73.9092521 }, + { "lat": 40.7190353, "lon": -73.9083427 }, + { "lat": 40.7190363, "lon": -73.9083191 }, + { "lat": 40.7190404, "lon": -73.9082240 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 845283099, + "bounds": { + "minlat": 40.7182252, + "minlon": -73.9292692, + "maxlat": 40.7186148, + "maxlon": -73.9290782 + }, + "nodes": [ + 7886290946, + 7886290947 + ], + "geometry": [ + { "lat": 40.7186148, "lon": -73.9292692 }, + { "lat": 40.7182252, "lon": -73.9290782 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 845359325, + "bounds": { + "minlat": 40.6952262, + "minlon": -73.9958526, + "maxlat": 40.7011345, + "maxlon": -73.9930486 + }, + "nodes": [ + 42483473, + 10739407723, + 6224369615, + 42476720, + 6224369616, + 42483469, + 10739407784, + 42483468, + 10739407786, + 10739407789, + 42483466, + 10739407790, + 10739408323, + 42483461, + 10739408324, + 10739408358, + 42483455, + 10739408359, + 7097820980, + 42483453, + 7097820978, + 10739408409, + 42483450 + ], + "geometry": [ + { "lat": 40.6952262, "lon": -73.9958526 }, + { "lat": 40.6952774, "lon": -73.9958284 }, + { "lat": 40.6958434, "lon": -73.9955624 }, + { "lat": 40.6958921, "lon": -73.9955395 }, + { "lat": 40.6959502, "lon": -73.9955140 }, + { "lat": 40.6963744, "lon": -73.9953127 }, + { "lat": 40.6978388, "lon": -73.9946242 }, + { "lat": 40.6978919, "lon": -73.9945992 }, + { "lat": 40.6979393, "lon": -73.9945765 }, + { "lat": 40.6984935, "lon": -73.9943115 }, + { "lat": 40.6985344, "lon": -73.9942919 }, + { "lat": 40.6985904, "lon": -73.9942651 }, + { "lat": 40.6991436, "lon": -73.9940006 }, + { "lat": 40.6991851, "lon": -73.9939808 }, + { "lat": 40.6992431, "lon": -73.9939530 }, + { "lat": 40.6997915, "lon": -73.9936908 }, + { "lat": 40.6998347, "lon": -73.9936701 }, + { "lat": 40.6998887, "lon": -73.9936443 }, + { "lat": 40.7004424, "lon": -73.9933796 }, + { "lat": 40.7004856, "lon": -73.9933589 }, + { "lat": 40.7005438, "lon": -73.9933310 }, + { "lat": 40.7010833, "lon": -73.9930731 }, + { "lat": 40.7011345, "lon": -73.9930486 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Hicks Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hicks", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 845484007, + "bounds": { + "minlat": 40.7378596, + "minlon": -73.9752084, + "maxlat": 40.7380018, + "maxlon": -73.9743330 + }, + "nodes": [ + 3932888007, + 3932888006, + 3932888010, + 11543660417, + 3932888008, + 3932888004, + 11543660416, + 3932888009, + 3932888005, + 3932888003, + 42422830 + ], + "geometry": [ + { "lat": 40.7379777, "lon": -73.9743330 }, + { "lat": 40.7379374, "lon": -73.9743725 }, + { "lat": 40.7379055, "lon": -73.9744259 }, + { "lat": 40.7378824, "lon": -73.9744864 }, + { "lat": 40.7378674, "lon": -73.9745498 }, + { "lat": 40.7378596, "lon": -73.9746215 }, + { "lat": 40.7378637, "lon": -73.9746966 }, + { "lat": 40.7378814, "lon": -73.9747799 }, + { "lat": 40.7379114, "lon": -73.9748561 }, + { "lat": 40.7379612, "lon": -73.9749660 }, + { "lat": 40.7380018, "lon": -73.9752084 } + ], + "tags": { + "access": "delivery", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 845484008, + "bounds": { + "minlat": 40.7379777, + "minlon": -73.9743330, + "maxlat": 40.7393683, + "maxlon": -73.9734636 + }, + "nodes": [ + 11543660374, + 11543660373, + 7888069585, + 7888039483, + 3932888007 + ], + "geometry": [ + { "lat": 40.7393683, "lon": -73.9734636 }, + { "lat": 40.7392180, "lon": -73.9735274 }, + { "lat": 40.7389699, "lon": -73.9736571 }, + { "lat": 40.7381435, "lon": -73.9742300 }, + { "lat": 40.7379777, "lon": -73.9743330 } + ], + "tags": { + "access": "delivery", + "covered": "no", + "highway": "service", + "layer": "-1", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 845560539, + "bounds": { + "minlat": 40.7042791, + "minlon": -73.9825581, + "maxlat": 40.7052978, + "maxlon": -73.9824371 + }, + "nodes": [ + 42479470, + 10725896475, + 3469169228, + 42487125, + 7707712186 + ], + "geometry": [ + { "lat": 40.7042791, "lon": -73.9825581 }, + { "lat": 40.7043274, "lon": -73.9825528 }, + { "lat": 40.7043491, "lon": -73.9825504 }, + { "lat": 40.7048530, "lon": -73.9824902 }, + { "lat": 40.7052978, "lon": -73.9824371 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Gold Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Gold", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 845606614, + "bounds": { + "minlat": 40.8460822, + "minlon": -73.9205944, + "maxlat": 40.8462784, + "maxlon": -73.9197100 + }, + "nodes": [ + 42737552, + 12046833168, + 12046833166, + 12046833165, + 42737555 + ], + "geometry": [ + { "lat": 40.8460822, "lon": -73.9197100 }, + { "lat": 40.8460865, "lon": -73.9197583 }, + { "lat": 40.8460942, "lon": -73.9198107 }, + { "lat": 40.8461062, "lon": -73.9198761 }, + { "lat": 40.8462784, "lon": -73.9205944 } + ], + "tags": { + "highway": "residential", + "name": "Featherbed Lane", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Featherbed", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 845606615, + "bounds": { + "minlat": 40.8452162, + "minlon": -73.9202585, + "maxlat": 40.8460822, + "maxlon": -73.9197100 + }, + "nodes": [ + 42737552, + 13181365232, + 12046922287, + 595757772 + ], + "geometry": [ + { "lat": 40.8460822, "lon": -73.9197100 }, + { "lat": 40.8460033, "lon": -73.9197600 }, + { "lat": 40.8452653, "lon": -73.9202274 }, + { "lat": 40.8452162, "lon": -73.9202585 } + ], + "tags": { + "highway": "residential", + "name": "Nelson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Nelson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "tiger:zip_right_1": "10453" + } +}, +{ + "type": "way", + "id": 845612562, + "bounds": { + "minlat": 40.8185380, + "minlon": -73.9078230, + "maxlat": 40.8217218, + "maxlon": -73.9064541 + }, + "nodes": [ + 42748204, + 42774198, + 42774194, + 8602649376, + 42760909 + ], + "geometry": [ + { "lat": 40.8217218, "lon": -73.9064541 }, + { "lat": 40.8209440, "lon": -73.9068110 }, + { "lat": 40.8198880, "lon": -73.9072520 }, + { "lat": 40.8186662, "lon": -73.9077688 }, + { "lat": 40.8185380, "lon": -73.9078230 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "name": "Trinity Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Trinity", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 845650254, + "bounds": { + "minlat": 40.8327485, + "minlon": -73.9071861, + "maxlat": 40.8334415, + "maxlon": -73.9050316 + }, + "nodes": [ + 42768584, + 13061934446, + 13625142368, + 42730107, + 13625142374, + 13625142380, + 42782636, + 1657650816 + ], + "geometry": [ + { "lat": 40.8327485, "lon": -73.9050316 }, + { "lat": 40.8327879, "lon": -73.9051453 }, + { "lat": 40.8330219, "lon": -73.9058196 }, + { "lat": 40.8330550, "lon": -73.9059150 }, + { "lat": 40.8330838, "lon": -73.9060080 }, + { "lat": 40.8333883, "lon": -73.9069921 }, + { "lat": 40.8334170, "lon": -73.9070850 }, + { "lat": 40.8334415, "lon": -73.9071861 } + ], + "tags": { + "highway": "residential", + "name": "East 169th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 845708750, + "bounds": { + "minlat": 40.7896523, + "minlon": -73.9273224, + "maxlat": 40.7897912, + "maxlon": -73.9270485 + }, + "nodes": [ + 7890202647, + 9872439272, + 3037067011 + ], + "geometry": [ + { "lat": 40.7896523, "lon": -73.9270485 }, + { "lat": 40.7897321, "lon": -73.9272058 }, + { "lat": 40.7897912, "lon": -73.9273224 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Rivers Edge Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 845734543, + "bounds": { + "minlat": 40.7176500, + "minlon": -73.9894779, + "maxlat": 40.7178944, + "maxlon": -73.9886710 + }, + "nodes": [ + 42432102, + 8231896469, + 8231896475, + 42432099 + ], + "geometry": [ + { "lat": 40.7178944, "lon": -73.9894779 }, + { "lat": 40.7178741, "lon": -73.9894110 }, + { "lat": 40.7176864, "lon": -73.9887917 }, + { "lat": 40.7176500, "lon": -73.9886710 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 845740587, + "bounds": { + "minlat": 40.7172086, + "minlon": -73.9907021, + "maxlat": 40.7181237, + "maxlon": -73.9902319 + }, + "nodes": [ + 42452076, + 5043074385, + 8520814885, + 7097867533, + 42432103 + ], + "geometry": [ + { "lat": 40.7172086, "lon": -73.9907021 }, + { "lat": 40.7172803, "lon": -73.9906661 }, + { "lat": 40.7180204, "lon": -73.9902850 }, + { "lat": 40.7180762, "lon": -73.9902564 }, + { "lat": 40.7181237, "lon": -73.9902319 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Su-We 12:00-21:00; Th-Sa 12:00-23:00)", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 845741669, + "bounds": { + "minlat": 40.7188741, + "minlon": -73.9889795, + "maxlat": 40.7200786, + "maxlon": -73.9883599 + }, + "nodes": [ + 42437096, + 8231901000, + 13033168294, + 13033168293, + 12195880605, + 3314293715, + 42429769 + ], + "geometry": [ + { "lat": 40.7200786, "lon": -73.9883599 }, + { "lat": 40.7200345, "lon": -73.9883826 }, + { "lat": 40.7200162, "lon": -73.9883921 }, + { "lat": 40.7199494, "lon": -73.9884265 }, + { "lat": 40.7190189, "lon": -73.9889060 }, + { "lat": 40.7189689, "lon": -73.9889315 }, + { "lat": 40.7188741, "lon": -73.9889795 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Ludlow Street", + "name:etymology:wikidata": "Q4821485", + "name:ko": "러들로 스트리트", + "name:ru": "Ладлоу-стрит", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3935980", + "wikipedia": "en:Ludlow Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 845741670, + "bounds": { + "minlat": 40.7200786, + "minlon": -73.9883599, + "maxlat": 40.7212346, + "maxlon": -73.9877644 + }, + "nodes": [ + 42432066, + 3314293708, + 8231900999, + 42437096 + ], + "geometry": [ + { "lat": 40.7212346, "lon": -73.9877644 }, + { "lat": 40.7211826, "lon": -73.9877913 }, + { "lat": 40.7201328, "lon": -73.9883320 }, + { "lat": 40.7200786, "lon": -73.9883599 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (Mo-Su 12:00-21:00; Th-Sa 12:00-23:00)", + "motor_vehicle:conditional": "destination @ (Mo-Su 12:00-21:00; Th-Sa 12:00-23:00)", + "name": "Ludlow Street", + "name:etymology:wikidata": "Q4821485", + "name:ko": "러들로 스트리트", + "name:ru": "Ладлоу-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3935980", + "wikipedia": "en:Ludlow Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 845749144, + "bounds": { + "minlat": 40.8487400, + "minlon": -73.9323334, + "maxlat": 40.8511085, + "maxlon": -73.9306027 + }, + "nodes": [ + 42444060, + 9550791855, + 9566870000, + 42454368, + 9566869999, + 9566869996, + 42438189, + 9566869995, + 9566869970, + 42455259, + 9566869969, + 9566869963, + 42454102 + ], + "geometry": [ + { "lat": 40.8487400, "lon": -73.9323334 }, + { "lat": 40.8488183, "lon": -73.9322761 }, + { "lat": 40.8492592, "lon": -73.9319534 }, + { "lat": 40.8493090, "lon": -73.9319170 }, + { "lat": 40.8493704, "lon": -73.9318722 }, + { "lat": 40.8498521, "lon": -73.9315221 }, + { "lat": 40.8499210, "lon": -73.9314720 }, + { "lat": 40.8499958, "lon": -73.9314175 }, + { "lat": 40.8504576, "lon": -73.9310805 }, + { "lat": 40.8505090, "lon": -73.9310430 }, + { "lat": 40.8505673, "lon": -73.9309994 }, + { "lat": 40.8510446, "lon": -73.9306496 }, + { "lat": 40.8511085, "lon": -73.9306027 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "maxspeed:type": "sign", + "name": "Audubon Avenue", + "name:etymology:wikidata": "Q182882", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Audubon", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q2870884", + "wikipedia": "en:Audubon Avenue" + } +}, +{ + "type": "way", + "id": 845749145, + "bounds": { + "minlat": 40.8562300, + "minlon": -73.9274354, + "maxlat": 40.8571682, + "maxlon": -73.9267394 + }, + "nodes": [ + 42433346, + 1253602797, + 1332871097, + 1253602789, + 1253602801, + 1253602757, + 1253602754, + 11596481906, + 5403868121, + 42451932 + ], + "geometry": [ + { "lat": 40.8562300, "lon": -73.9268630 }, + { "lat": 40.8564178, "lon": -73.9267399 }, + { "lat": 40.8564552, "lon": -73.9267398 }, + { "lat": 40.8566021, "lon": -73.9267394 }, + { "lat": 40.8567564, "lon": -73.9267984 }, + { "lat": 40.8568841, "lon": -73.9269255 }, + { "lat": 40.8570496, "lon": -73.9272061 }, + { "lat": 40.8570768, "lon": -73.9272587 }, + { "lat": 40.8571109, "lon": -73.9273247 }, + { "lat": 40.8571682, "lon": -73.9274354 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "maxspeed:type": "sign", + "name": "Audubon Avenue", + "name:etymology:wikidata": "Q182882", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Audubon", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q2870884", + "wikipedia": "en:Audubon Avenue" + } +}, +{ + "type": "way", + "id": 845755951, + "bounds": { + "minlat": 40.7200786, + "minlon": -73.9891119, + "maxlat": 40.7203066, + "maxlon": -73.9883599 + }, + "nodes": [ + 42437096, + 8231901001, + 8231901007, + 42437106 + ], + "geometry": [ + { "lat": 40.7200786, "lon": -73.9883599 }, + { "lat": 40.7200983, "lon": -73.9884247 }, + { "lat": 40.7202887, "lon": -73.9890530 }, + { "lat": 40.7203066, "lon": -73.9891119 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (Mo-Su 12:00-21:00; Th-Sa 12:00-23:00)", + "motor_vehicle:conditional": "destination @ (Mo-Su 12:00-21:00; Th-Sa 12:00-23:00)", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "name:ko": "리빙턴 스트리트", + "oneway": "yes", + "parking:left": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 845781114, + "bounds": { + "minlat": 40.7194618, + "minlon": -73.9877644, + "maxlat": 40.7212346, + "maxlon": -73.9819415 + }, + "nodes": [ + 42432066, + 8231901002, + 4561657053, + 8231900993, + 42432068, + 4561657052, + 8231900991, + 42432071, + 8231900990, + 9938302164, + 8231900989, + 42432073, + 8231900986, + 8310220499, + 42432075, + 8310220496, + 8310245664, + 3670609093, + 8310245661, + 8310245657, + 42432078, + 8310245654, + 7587615313, + 4835844135, + 42427352 + ], + "geometry": [ + { "lat": 40.7212346, "lon": -73.9877644 }, + { "lat": 40.7212159, "lon": -73.9877028 }, + { "lat": 40.7210253, "lon": -73.9870716 }, + { "lat": 40.7210218, "lon": -73.9870601 }, + { "lat": 40.7209878, "lon": -73.9869480 }, + { "lat": 40.7209535, "lon": -73.9868341 }, + { "lat": 40.7207700, "lon": -73.9862287 }, + { "lat": 40.7207483, "lon": -73.9861570 }, + { "lat": 40.7207273, "lon": -73.9860871 }, + { "lat": 40.7206370, "lon": -73.9857892 }, + { "lat": 40.7205119, "lon": -73.9853768 }, + { "lat": 40.7204937, "lon": -73.9853164 }, + { "lat": 40.7204776, "lon": -73.9852546 }, + { "lat": 40.7202593, "lon": -73.9845417 }, + { "lat": 40.7202373, "lon": -73.9844697 }, + { "lat": 40.7202226, "lon": -73.9844211 }, + { "lat": 40.7200037, "lon": -73.9837069 }, + { "lat": 40.7199847, "lon": -73.9836452 }, + { "lat": 40.7199642, "lon": -73.9835782 }, + { "lat": 40.7197440, "lon": -73.9828608 }, + { "lat": 40.7197245, "lon": -73.9827973 }, + { "lat": 40.7197055, "lon": -73.9827354 }, + { "lat": 40.7196334, "lon": -73.9825007 }, + { "lat": 40.7194873, "lon": -73.9820246 }, + { "lat": 40.7194618, "lon": -73.9819415 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Stanton Street", + "name:ko": "스탠턴 스트리트", + "name:ru": "Стэнтон-стрит", + "oneway": "yes", + "parking:left": "no", + "parking:left:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7600270", + "wikipedia": "en:Stanton Street" + } +}, +{ + "type": "way", + "id": 845781907, + "bounds": { + "minlat": 40.7220190, + "minlon": -73.9834440, + "maxlat": 40.7226710, + "maxlon": -73.9829640 + }, + "nodes": [ + 42453607, + 7977832479, + 7977832474, + 42437346 + ], + "geometry": [ + { "lat": 40.7220190, "lon": -73.9834440 }, + { "lat": 40.7220751, "lon": -73.9834027 }, + { "lat": 40.7226183, "lon": -73.9830027 }, + { "lat": 40.7226710, "lon": -73.9829640 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Avenue B", + "name:ru": "Авеню B", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2873530", + "wikipedia": "en:Avenue B (Manhattan)" + } +}, +{ + "type": "way", + "id": 845781908, + "bounds": { + "minlat": 40.7232780, + "minlon": -73.9825240, + "maxlat": 40.7250730, + "maxlon": -73.9812110 + }, + "nodes": [ + 42455083, + 7977832467, + 7977832462, + 42453177, + 7977832461, + 7977832457, + 42444832, + 7977832456, + 4216045828, + 42434226 + ], + "geometry": [ + { "lat": 40.7232780, "lon": -73.9825240 }, + { "lat": 40.7233385, "lon": -73.9824801 }, + { "lat": 40.7238359, "lon": -73.9821167 }, + { "lat": 40.7238820, "lon": -73.9820830 }, + { "lat": 40.7239439, "lon": -73.9820379 }, + { "lat": 40.7244453, "lon": -73.9816725 }, + { "lat": 40.7244940, "lon": -73.9816370 }, + { "lat": 40.7245562, "lon": -73.9815913 }, + { "lat": 40.7250180, "lon": -73.9812514 }, + { "lat": 40.7250730, "lon": -73.9812110 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue B", + "name:ru": "Авеню B", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2873530", + "wikipedia": "en:Avenue B (Manhattan)" + } +}, +{ + "type": "way", + "id": 845936604, + "bounds": { + "minlat": 40.8173608, + "minlon": -73.9065743, + "maxlat": 40.8181580, + "maxlon": -73.9062420 + }, + "nodes": [ + 42760918, + 12197818936 + ], + "geometry": [ + { "lat": 40.8181580, "lon": -73.9062420 }, + { "lat": 40.8173608, "lon": -73.9065743 } + ], + "tags": { + "highway": "residential", + "maxheight": "11'2\"", + "name": "Forest Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Forest", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 845942677, + "bounds": { + "minlat": 40.8038900, + "minlon": -73.9477370, + "maxlat": 40.8045555, + "maxlon": -73.9461817 + }, + "nodes": [ + 42429727, + 10170875084, + 9177554439, + 10170875079, + 2099150501 + ], + "geometry": [ + { "lat": 40.8045555, "lon": -73.9477370 }, + { "lat": 40.8045173, "lon": -73.9476469 }, + { "lat": 40.8039535, "lon": -73.9463188 }, + { "lat": 40.8039351, "lon": -73.9462788 }, + { "lat": 40.8038900, "lon": -73.9461817 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (Mo-Th 08:00-20:00; Fr-Su 08:00-23:00)", + "motor_vehicle:conditional": "destination @ (Mo-Th 08:00-20:00; Fr-Su 08:00-23:00)", + "name": "West 120th Street", + "name:ru": "Западная 120-я стрит", + "name_1": "West 120 Street", + "oneway": "yes", + "parking:lane:both": "parallel" + } +}, +{ + "type": "way", + "id": 845948938, + "bounds": { + "minlat": 40.6987846, + "minlon": -73.9305306, + "maxlat": 40.7048242, + "maxlon": -73.9245868 + }, + "nodes": [ + 42511911, + 9744131182, + 9744131194, + 42528515, + 9744131195, + 4702537278, + 42496653, + 4702537280, + 9743987286, + 42486716, + 9743987287, + 7249291084, + 9743987250, + 42499826 + ], + "geometry": [ + { "lat": 40.7048242, "lon": -73.9245868 }, + { "lat": 40.7047704, "lon": -73.9246395 }, + { "lat": 40.7033076, "lon": -73.9260749 }, + { "lat": 40.7032390, "lon": -73.9261400 }, + { "lat": 40.7031808, "lon": -73.9261968 }, + { "lat": 40.7018249, "lon": -73.9275261 }, + { "lat": 40.7017620, "lon": -73.9275880 }, + { "lat": 40.7017096, "lon": -73.9276396 }, + { "lat": 40.7003516, "lon": -73.9289744 }, + { "lat": 40.7002900, "lon": -73.9290350 }, + { "lat": 40.7002327, "lon": -73.9290911 }, + { "lat": 40.6995289, "lon": -73.9297800 }, + { "lat": 40.6988206, "lon": -73.9304819 }, + { "lat": 40.6987846, "lon": -73.9305306 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Troutman Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 845948939, + "bounds": { + "minlat": 40.7048242, + "minlon": -73.9245868, + "maxlat": 40.7076213, + "maxlon": -73.9217966 + }, + "nodes": [ + 42474000, + 9744131271, + 9744131233, + 42512094, + 9744131201, + 2997129875, + 9744131183, + 42511911 + ], + "geometry": [ + { "lat": 40.7076213, "lon": -73.9217966 }, + { "lat": 40.7075690, "lon": -73.9218500 }, + { "lat": 40.7066302, "lon": -73.9228077 }, + { "lat": 40.7065760, "lon": -73.9228630 }, + { "lat": 40.7065230, "lon": -73.9229157 }, + { "lat": 40.7059143, "lon": -73.9235203 }, + { "lat": 40.7048801, "lon": -73.9245325 }, + { "lat": 40.7048242, "lon": -73.9245868 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-22:00)", + "name": "Troutman Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 845950435, + "bounds": { + "minlat": 40.7195914, + "minlon": -73.9875441, + "maxlat": 40.7198312, + "maxlon": -73.9867535 + }, + "nodes": [ + 42437082, + 8231900983, + 8231900994, + 42437084 + ], + "geometry": [ + { "lat": 40.7195914, "lon": -73.9867535 }, + { "lat": 40.7196116, "lon": -73.9868195 }, + { "lat": 40.7197935, "lon": -73.9874199 }, + { "lat": 40.7198312, "lon": -73.9875441 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "name:ko": "리빙턴 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 845950436, + "bounds": { + "minlat": 40.7198312, + "minlon": -73.9883599, + "maxlat": 40.7200786, + "maxlon": -73.9875441 + }, + "nodes": [ + 42437084, + 8231900997, + 8231900998, + 42437096 + ], + "geometry": [ + { "lat": 40.7198312, "lon": -73.9875441 }, + { "lat": 40.7198666, "lon": -73.9876611 }, + { "lat": 40.7200601, "lon": -73.9882990 }, + { "lat": 40.7200786, "lon": -73.9883599 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "name:ko": "리빙턴 스트리트", + "oneway": "yes", + "parking:left": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 845951292, + "bounds": { + "minlat": 40.7010770, + "minlon": -73.9408452, + "maxlat": 40.7039234, + "maxlon": -73.9404200 + }, + "nodes": [ + 42502945, + 8229295993, + 9646966163, + 42502943, + 9646966164, + 6936641088, + 5710235496, + 6936641092, + 9959904569, + 42501379, + 9959904568, + 4660922288, + 42499081 + ], + "geometry": [ + { "lat": 40.7039234, "lon": -73.9408452 }, + { "lat": 40.7038545, "lon": -73.9408422 }, + { "lat": 40.7032917, "lon": -73.9407604 }, + { "lat": 40.7032149, "lon": -73.9407492 }, + { "lat": 40.7031542, "lon": -73.9407402 }, + { "lat": 40.7027209, "lon": -73.9406776 }, + { "lat": 40.7022144, "lon": -73.9406043 }, + { "lat": 40.7020147, "lon": -73.9405754 }, + { "lat": 40.7018749, "lon": -73.9405551 }, + { "lat": 40.7017980, "lon": -73.9405440 }, + { "lat": 40.7017458, "lon": -73.9405351 }, + { "lat": 40.7011677, "lon": -73.9404325 }, + { "lat": 40.7010770, "lon": -73.9404200 } + ], + "tags": { + "check_date:surface": "2023-01-24", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 845994219, + "bounds": { + "minlat": 40.7241732, + "minlon": -74.0045754, + "maxlat": 40.7255130, + "maxlon": -74.0040310 + }, + "nodes": [ + 42430147, + 4890320291, + 5135800967, + 42430151, + 4890320293, + 42430154 + ], + "geometry": [ + { "lat": 40.7241732, "lon": -74.0045754 }, + { "lat": 40.7242642, "lon": -74.0045385 }, + { "lat": 40.7244851, "lon": -74.0044488 }, + { "lat": 40.7248704, "lon": -74.0042925 }, + { "lat": 40.7254477, "lon": -74.0040594 }, + { "lat": 40.7255130, "lon": -74.0040310 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 846035644, + "bounds": { + "minlat": 40.7276640, + "minlon": -74.0071926, + "maxlat": 40.7280490, + "maxlon": -74.0031550 + }, + "nodes": [ + 42436369, + 8307641921, + 8307641867, + 42455200, + 8307641864, + 5151708185, + 42430167 + ], + "geometry": [ + { "lat": 40.7280490, "lon": -74.0071926 }, + { "lat": 40.7280382, "lon": -74.0070795 }, + { "lat": 40.7278953, "lon": -74.0055813 }, + { "lat": 40.7278806, "lon": -74.0054267 }, + { "lat": 40.7278673, "lon": -74.0052874 }, + { "lat": 40.7276779, "lon": -74.0033030 }, + { "lat": 40.7276640, "lon": -74.0031550 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "King Street", + "name:etymology:wikidata": "Q456794", + "name:ko": "킹 스트리트", + "name:ru": "Кинг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 846046868, + "bounds": { + "minlat": 40.7400783, + "minlon": -74.0059134, + "maxlat": 40.7402910, + "maxlon": -74.0054088 + }, + "nodes": [ + 4557517555, + 8262308665, + 8262308683 + ], + "geometry": [ + { "lat": 40.7402910, "lon": -74.0059134 }, + { "lat": 40.7402491, "lon": -74.0058139 }, + { "lat": 40.7400783, "lon": -74.0054088 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lane_markings": "no", + "lcn": "yes", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (We-Fr 14:00-22:00; Sa-Su 12:00-22:00))", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "name_1": "West 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 846053980, + "bounds": { + "minlat": 40.8657102, + "minlon": -73.9077397, + "maxlat": 40.8661325, + "maxlon": -73.9076144 + }, + "nodes": [ + 7893366975, + 7893366976, + 7893366977, + 7893366978, + 7893366979 + ], + "geometry": [ + { "lat": 40.8657102, "lon": -73.9077111 }, + { "lat": 40.8658353, "lon": -73.9077397 }, + { "lat": 40.8658898, "lon": -73.9077397 }, + { "lat": 40.8659417, "lon": -73.9077157 }, + { "lat": 40.8661325, "lon": -73.9076144 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 846122853, + "bounds": { + "minlat": 40.7408858, + "minlon": -73.9932916, + "maxlat": 40.7422328, + "maxlon": -73.9900833 + }, + "nodes": [ + 42430269, + 10171337667, + 13117067451, + 8265964363, + 42434268 + ], + "geometry": [ + { "lat": 40.7422328, "lon": -73.9932916 }, + { "lat": 40.7421766, "lon": -73.9931578 }, + { "lat": 40.7414282, "lon": -73.9913752 }, + { "lat": 40.7409336, "lon": -73.9901972 }, + { "lat": 40.7408858, "lon": -73.9900833 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "West 22nd Street", + "name:ru": "Западная 22-я стрит", + "name_1": "West 22 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 846127259, + "bounds": { + "minlat": 40.7477909, + "minlon": -74.0060705, + "maxlat": 40.7501781, + "maxlon": -74.0004216 + }, + "nodes": [ + 42444928, + 10171484149, + 7148114561, + 10172817654, + 42453630, + 10172817657, + 5730369219, + 42430594 + ], + "geometry": [ + { "lat": 40.7477909, "lon": -74.0004216 }, + { "lat": 40.7478443, "lon": -74.0005268 }, + { "lat": 40.7480199, "lon": -74.0009431 }, + { "lat": 40.7489180, "lon": -74.0031048 }, + { "lat": 40.7489740, "lon": -74.0032360 }, + { "lat": 40.7490311, "lon": -74.0033704 }, + { "lat": 40.7501180, "lon": -74.0059298 }, + { "lat": 40.7501781, "lon": -74.0060705 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 25th Street", + "name:ru": "Западная 25-я стрит", + "oneway": "yes", + "sidewalk:left": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 846127260, + "bounds": { + "minlat": 40.7465800, + "minlon": -74.0004216, + "maxlat": 40.7477909, + "maxlon": -73.9975495 + }, + "nodes": [ + 42435629, + 11147382151, + 11503332140, + 6069788564, + 2631319579, + 11503332141, + 6069996236, + 10171484146, + 42444928 + ], + "geometry": [ + { "lat": 40.7465800, "lon": -73.9975495 }, + { "lat": 40.7466436, "lon": -73.9977012 }, + { "lat": 40.7469032, "lon": -73.9983206 }, + { "lat": 40.7470369, "lon": -73.9986394 }, + { "lat": 40.7472422, "lon": -73.9991291 }, + { "lat": 40.7472602, "lon": -73.9991729 }, + { "lat": 40.7476075, "lon": -74.0000176 }, + { "lat": 40.7477119, "lon": -74.0002709 }, + { "lat": 40.7477909, "lon": -74.0004216 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 25th Street", + "name:ru": "Западная 25-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 846137635, + "bounds": { + "minlat": 40.7291698, + "minlon": -74.0011880, + "maxlat": 40.7304314, + "maxlon": -74.0001225 + }, + "nodes": [ + 1692433940, + 8309478966, + 8429015951, + 1692433939, + 8429015952, + 8309478939, + 1692433938 + ], + "geometry": [ + { "lat": 40.7304314, "lon": -74.0001225 }, + { "lat": 40.7303843, "lon": -74.0001623 }, + { "lat": 40.7300132, "lon": -74.0004757 }, + { "lat": 40.7299869, "lon": -74.0004979 }, + { "lat": 40.7299648, "lon": -74.0005167 }, + { "lat": 40.7292217, "lon": -74.0011439 }, + { "lat": 40.7291698, "lon": -74.0011880 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "MacDougal Street", + "name:etymology:wikidata": "Q659951", + "name:ko": "맥두걸 스트리트", + "name:ru": "Макдугал-стрит", + "oneway": "yes", + "parking:left": "no", + "parking:left:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6721850", + "wikipedia": "en:MacDougal Street" + } +}, +{ + "type": "way", + "id": 846142552, + "bounds": { + "minlat": 40.7602621, + "minlon": -73.9907670, + "maxlat": 40.7609866, + "maxlon": -73.9890492 + }, + "nodes": [ + 42445018, + 10168047568, + 5481886057, + 3573482145 + ], + "geometry": [ + { "lat": 40.7609866, "lon": -73.9907670 }, + { "lat": 40.7609369, "lon": -73.9906426 }, + { "lat": 40.7603957, "lon": -73.9893643 }, + { "lat": 40.7602621, "lon": -73.9890492 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed:conditional": "5 mph @ (16:00-20:00)", + "motor_vehicle:conditional": "destination @ (Mo-Th 16:00-20:00; Fr 16:00-23:00; Sa-Su 12:00-23:00)", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 846142553, + "bounds": { + "minlat": 40.7585968, + "minlon": -73.9879285, + "maxlat": 40.7597869, + "maxlon": -73.9850795 + }, + "nodes": [ + 42435675, + 6598535175, + 8250892565, + 2639531766, + 5481885793, + 5522182776, + 6597429952, + 10228962352, + 10228962353, + 42439990 + ], + "geometry": [ + { "lat": 40.7597869, "lon": -73.9879285 }, + { "lat": 40.7597315, "lon": -73.9877973 }, + { "lat": 40.7595723, "lon": -73.9874205 }, + { "lat": 40.7595011, "lon": -73.9872519 }, + { "lat": 40.7591968, "lon": -73.9865156 }, + { "lat": 40.7588860, "lon": -73.9857703 }, + { "lat": 40.7587665, "lon": -73.9854918 }, + { "lat": 40.7587432, "lon": -73.9854346 }, + { "lat": 40.7586401, "lon": -73.9851848 }, + { "lat": 40.7585968, "lon": -73.9850795 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 846321987, + "bounds": { + "minlat": 40.7083545, + "minlon": -73.9625730, + "maxlat": 40.7085350, + "maxlon": -73.9609905 + }, + "nodes": [ + 42474668, + 9779538332, + 6235394738, + 42474671 + ], + "geometry": [ + { "lat": 40.7085350, "lon": -73.9625730 }, + { "lat": 40.7085260, "lon": -73.9624945 }, + { "lat": 40.7083710, "lon": -73.9611359 }, + { "lat": 40.7083545, "lon": -73.9609905 } + ], + "tags": { + "highway": "residential", + "name": "South 9th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "9th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 846321988, + "bounds": { + "minlat": 40.7085350, + "minlon": -73.9658010, + "maxlat": 40.7089020, + "maxlon": -73.9625730 + }, + "nodes": [ + 42474664, + 9779538190, + 6877134695, + 9779538296, + 42474666, + 9779538295, + 9779538334, + 42474668 + ], + "geometry": [ + { "lat": 40.7089020, "lon": -73.9658010 }, + { "lat": 40.7088921, "lon": -73.9657125 }, + { "lat": 40.7088347, "lon": -73.9652031 }, + { "lat": 40.7087317, "lon": -73.9642893 }, + { "lat": 40.7087200, "lon": -73.9641850 }, + { "lat": 40.7087106, "lon": -73.9641029 }, + { "lat": 40.7085451, "lon": -73.9626606 }, + { "lat": 40.7085350, "lon": -73.9625730 } + ], + "tags": { + "highway": "residential", + "name": "South 9th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "9th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 846331861, + "bounds": { + "minlat": 40.8088028, + "minlon": -73.9107123, + "maxlat": 40.8105249, + "maxlon": -73.9100462 + }, + "nodes": [ + 42762525, + 10033563134, + 42764629, + 5175586407, + 1104953194 + ], + "geometry": [ + { "lat": 40.8105249, "lon": -73.9100462 }, + { "lat": 40.8101073, "lon": -73.9101986 }, + { "lat": 40.8096475, "lon": -73.9103664 }, + { "lat": 40.8088862, "lon": -73.9106782 }, + { "lat": 40.8088028, "lon": -73.9107123 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "residential", + "name": "Jackson Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jackson", + "tiger:name_type": "Ave", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 846358874, + "bounds": { + "minlat": 40.7804348, + "minlon": -73.9569479, + "maxlat": 40.7834134, + "maxlon": -73.9498809 + }, + "nodes": [ + 42444810, + 7093725101, + 7158854746, + 596776156, + 42444812, + 7158854756, + 7158854760, + 42444814, + 7158799082, + 7132406687, + 42444817, + 7132406729, + 11254540148, + 5163237441, + 10121819486, + 7132406713, + 42443044 + ], + "geometry": [ + { "lat": 40.7834134, "lon": -73.9569479 }, + { "lat": 40.7833708, "lon": -73.9568452 }, + { "lat": 40.7828236, "lon": -73.9555391 }, + { "lat": 40.7827784, "lon": -73.9554342 }, + { "lat": 40.7827019, "lon": -73.9552544 }, + { "lat": 40.7826545, "lon": -73.9551440 }, + { "lat": 40.7821015, "lon": -73.9538288 }, + { "lat": 40.7820567, "lon": -73.9537232 }, + { "lat": 40.7820130, "lon": -73.9536193 }, + { "lat": 40.7814359, "lon": -73.9522556 }, + { "lat": 40.7813773, "lon": -73.9521166 }, + { "lat": 40.7813197, "lon": -73.9519798 }, + { "lat": 40.7809132, "lon": -73.9510136 }, + { "lat": 40.7808192, "lon": -73.9507901 }, + { "lat": 40.7805056, "lon": -73.9500443 }, + { "lat": 40.7804889, "lon": -73.9500058 }, + { "lat": 40.7804348, "lon": -73.9498809 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 90th Street", + "name:ru": "Восточная 90-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 846362785, + "bounds": { + "minlat": 40.7985684, + "minlon": -73.9438788, + "maxlat": 40.7986710, + "maxlon": -73.9436083 + }, + "nodes": [ + 42435392, + 596776534 + ], + "geometry": [ + { "lat": 40.7985684, "lon": -73.9436083 }, + { "lat": 40.7986710, "lon": -73.9438788 } + ], + "tags": { + "highway": "residential", + "name": "East 115th Street", + "name:ru": "Восточная 115-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 846377202, + "bounds": { + "minlat": 40.7613303, + "minlon": -73.9194825, + "maxlat": 40.7624489, + "maxlon": -73.9170942 + }, + "nodes": [ + 42856556, + 7668020457, + 7668020455, + 42841760, + 7668020454, + 7668020453, + 42856551, + 7668020452, + 7668020450, + 42856546 + ], + "geometry": [ + { "lat": 40.7613303, "lon": -73.9170942 }, + { "lat": 40.7613753, "lon": -73.9171920 }, + { "lat": 40.7616701, "lon": -73.9178200 }, + { "lat": 40.7616986, "lon": -73.9178777 }, + { "lat": 40.7617391, "lon": -73.9179600 }, + { "lat": 40.7620414, "lon": -73.9186211 }, + { "lat": 40.7620698, "lon": -73.9186812 }, + { "lat": 40.7621104, "lon": -73.9187670 }, + { "lat": 40.7624214, "lon": -73.9194240 }, + { "lat": 40.7624489, "lon": -73.9194825 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "31st Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 846378694, + "bounds": { + "minlat": 40.8819807, + "minlon": -73.9072534, + "maxlat": 40.8860790, + "maxlon": -73.9024990 + }, + "nodes": [ + 42748794, + 13070545387, + 13700716337, + 13700716335, + 1581431096, + 42739596, + 42720154, + 42757684 + ], + "geometry": [ + { "lat": 40.8819807, "lon": -73.9072534 }, + { "lat": 40.8820320, "lon": -73.9071936 }, + { "lat": 40.8822926, "lon": -73.9068913 }, + { "lat": 40.8824180, "lon": -73.9067458 }, + { "lat": 40.8830611, "lon": -73.9059996 }, + { "lat": 40.8833040, "lon": -73.9057140 }, + { "lat": 40.8847720, "lon": -73.9040170 }, + { "lat": 40.8860790, "lon": -73.9024990 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "foot": "yes", + "highway": "residential", + "inline_skates": "yes", + "lcn": "yes", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Tibbett Avenue", + "name:etymology:wikidata": "Q28186791", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tibbett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 846850511, + "bounds": { + "minlat": 40.7577784, + "minlon": -73.9962712, + "maxlat": 40.7580174, + "maxlon": -73.9946658 + }, + "nodes": [ + 427851457, + 11149329292, + 427851456, + 427851455, + 427845258, + 427845259, + 11149329291, + 427845260, + 427845261, + 427845262, + 427851484 + ], + "geometry": [ + { "lat": 40.7580174, "lon": -73.9946658 }, + { "lat": 40.7579956, "lon": -73.9947830 }, + { "lat": 40.7579312, "lon": -73.9950850 }, + { "lat": 40.7578895, "lon": -73.9952552 }, + { "lat": 40.7578176, "lon": -73.9955680 }, + { "lat": 40.7577950, "lon": -73.9956802 }, + { "lat": 40.7577842, "lon": -73.9957518 }, + { "lat": 40.7577784, "lon": -73.9958407 }, + { "lat": 40.7577814, "lon": -73.9959832 }, + { "lat": 40.7578019, "lon": -73.9961082 }, + { "lat": 40.7578475, "lon": -73.9962712 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "1", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 846850520, + "bounds": { + "minlat": 40.7573846, + "minlon": -73.9948142, + "maxlat": 40.7579066, + "maxlon": -73.9932168 + }, + "nodes": [ + 427851428, + 427851430, + 427851431, + 427851432, + 427851433, + 42424798, + 11149329290, + 427851434, + 427851435, + 427851436, + 477284505 + ], + "geometry": [ + { "lat": 40.7578970, "lon": -73.9948142 }, + { "lat": 40.7579066, "lon": -73.9946033 }, + { "lat": 40.7579052, "lon": -73.9944724 }, + { "lat": 40.7578932, "lon": -73.9943461 }, + { "lat": 40.7578756, "lon": -73.9942430 }, + { "lat": 40.7578496, "lon": -73.9941497 }, + { "lat": 40.7578033, "lon": -73.9940225 }, + { "lat": 40.7576762, "lon": -73.9937086 }, + { "lat": 40.7575985, "lon": -73.9935303 }, + { "lat": 40.7575414, "lon": -73.9934306 }, + { "lat": 40.7573846, "lon": -73.9932168 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "1", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 846936798, + "bounds": { + "minlat": 40.7247484, + "minlon": -74.0119049, + "maxlat": 40.7249705, + "maxlon": -74.0117357 + }, + "nodes": [ + 7903042888, + 7903042890, + 402441943, + 3196459731, + 3196459732, + 2044118360, + 7903042889, + 3196459768, + 3196459750, + 3196459757, + 7903042888 + ], + "geometry": [ + { "lat": 40.7249576, "lon": -74.0117357 }, + { "lat": 40.7249643, "lon": -74.0118018 }, + { "lat": 40.7249674, "lon": -74.0118348 }, + { "lat": 40.7249705, "lon": -74.0118635 }, + { "lat": 40.7247614, "lon": -74.0119049 }, + { "lat": 40.7247584, "lon": -74.0118765 }, + { "lat": 40.7247537, "lon": -74.0118389 }, + { "lat": 40.7247484, "lon": -74.0117656 }, + { "lat": 40.7248485, "lon": -74.0117790 }, + { "lat": 40.7249078, "lon": -74.0117705 }, + { "lat": 40.7249576, "lon": -74.0117357 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 847002232, + "bounds": { + "minlat": 40.7571536, + "minlon": -73.9945564, + "maxlat": 40.7575594, + "maxlon": -73.9935785 + }, + "nodes": [ + 427850895, + 11149329220, + 9509568001, + 9509568000, + 7903850297, + 42444991 + ], + "geometry": [ + { "lat": 40.7575594, "lon": -73.9945564 }, + { "lat": 40.7575348, "lon": -73.9944989 }, + { "lat": 40.7575241, "lon": -73.9944739 }, + { "lat": 40.7575146, "lon": -73.9944508 }, + { "lat": 40.7572079, "lon": -73.9937024 }, + { "lat": 40.7571536, "lon": -73.9935785 } + ], + "tags": { + "alt_name": "West 40 Street", + "highway": "residential", + "lanes": "3", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847051895, + "bounds": { + "minlat": 40.7462415, + "minlon": -73.9152334, + "maxlat": 40.7490340, + "maxlon": -73.9146680 + }, + "nodes": [ + 42807836, + 7671808568, + 10774439424, + 4614980641, + 10774439433, + 10774439422, + 7671808566, + 10774439438, + 10774439423, + 7530789563, + 42805107, + 10774439453, + 7671808582, + 7667084777, + 42807823 + ], + "geometry": [ + { "lat": 40.7462415, "lon": -73.9152334 }, + { "lat": 40.7463346, "lon": -73.9152140 }, + { "lat": 40.7466998, "lon": -73.9151404 }, + { "lat": 40.7468463, "lon": -73.9151108 }, + { "lat": 40.7469679, "lon": -73.9150863 }, + { "lat": 40.7470998, "lon": -73.9150596 }, + { "lat": 40.7471838, "lon": -73.9150427 }, + { "lat": 40.7472812, "lon": -73.9150231 }, + { "lat": 40.7475815, "lon": -73.9149628 }, + { "lat": 40.7477001, "lon": -73.9149390 }, + { "lat": 40.7478600, "lon": -73.9149060 }, + { "lat": 40.7481490, "lon": -73.9148478 }, + { "lat": 40.7489185, "lon": -73.9146928 }, + { "lat": 40.7489677, "lon": -73.9146832 }, + { "lat": 40.7490340, "lon": -73.9146680 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "name": "49th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847053891, + "bounds": { + "minlat": 40.7034220, + "minlon": -73.9459090, + "maxlat": 40.7039256, + "maxlon": -73.9408452 + }, + "nodes": [ + 42502945, + 8229303519, + 7589674464, + 42467814, + 9752126975, + 9752126968, + 42528868, + 9752126969, + 9752126944, + 42491139 + ], + "geometry": [ + { "lat": 40.7039234, "lon": -73.9408452 }, + { "lat": 40.7039256, "lon": -73.9409883 }, + { "lat": 40.7037835, "lon": -73.9425158 }, + { "lat": 40.7037702, "lon": -73.9426206 }, + { "lat": 40.7037563, "lon": -73.9427308 }, + { "lat": 40.7035887, "lon": -73.9442209 }, + { "lat": 40.7035780, "lon": -73.9443165 }, + { "lat": 40.7035644, "lon": -73.9444554 }, + { "lat": 40.7034324, "lon": -73.9458052 }, + { "lat": 40.7034220, "lon": -73.9459090 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Moore Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847053892, + "bounds": { + "minlat": 40.7039968, + "minlon": -73.9386915, + "maxlat": 40.7040118, + "maxlon": -73.9385365 + }, + "nodes": [ + 7722378721, + 42513678 + ], + "geometry": [ + { "lat": 40.7039968, "lon": -73.9385365 }, + { "lat": 40.7040118, "lon": -73.9386915 } + ], + "tags": { + "highway": "residential", + "name": "Moore Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 847352814, + "bounds": { + "minlat": 40.8234115, + "minlon": -74.0236056, + "maxlat": 40.8288190, + "maxlon": -74.0189368 + }, + "nodes": [ + 6279346542, + 7907160904, + 7907160926, + 7980257484, + 7907160905, + 7907160906, + 7907160907, + 8413821247, + 8413821249, + 7907160908, + 8413821251, + 7907160909, + 8413821253, + 8413821256, + 8413821259, + 8413821262, + 8413821265, + 8413821268, + 8413821271, + 8413821273, + 8413821275, + 8413821278, + 8413821281, + 8413821284, + 8413821287, + 7907160910, + 7907160911, + 7907160912, + 8413821285, + 8413821282, + 7907160913, + 8413821279, + 8413821276, + 8413821274, + 8413821272, + 8413821269, + 8413821266, + 8413821263, + 8413821260, + 8413821257, + 8413821254, + 7907160914, + 8413821250, + 8413821248, + 8413821245, + 8413821244, + 7980289685, + 7980257483, + 7980257480, + 7980257478, + 7980257476, + 7980257474, + 7980257472, + 7980257471, + 7980257467, + 7980257466, + 7907160915, + 7907160916, + 7980289686, + 7980257464, + 7907160917, + 7907160918, + 7907160919, + 7907160920, + 7980257465, + 7907160921, + 7980289687, + 7907160922, + 7980289688, + 7907160923, + 7980257468, + 7980257470 + ], + "geometry": [ + { "lat": 40.8270516, "lon": -74.0210992 }, + { "lat": 40.8269565, "lon": -74.0210499 }, + { "lat": 40.8268948, "lon": -74.0210219 }, + { "lat": 40.8267407, "lon": -74.0209521 }, + { "lat": 40.8267208, "lon": -74.0209431 }, + { "lat": 40.8266515, "lon": -74.0208982 }, + { "lat": 40.8265963, "lon": -74.0208103 }, + { "lat": 40.8265005, "lon": -74.0204644 }, + { "lat": 40.8263995, "lon": -74.0200993 }, + { "lat": 40.8262992, "lon": -74.0197371 }, + { "lat": 40.8262900, "lon": -74.0197219 }, + { "lat": 40.8262653, "lon": -74.0196810 }, + { "lat": 40.8261322, "lon": -74.0196363 }, + { "lat": 40.8259736, "lon": -74.0195831 }, + { "lat": 40.8258146, "lon": -74.0195297 }, + { "lat": 40.8256553, "lon": -74.0194762 }, + { "lat": 40.8254894, "lon": -74.0194205 }, + { "lat": 40.8253292, "lon": -74.0193668 }, + { "lat": 40.8251779, "lon": -74.0193160 }, + { "lat": 40.8250135, "lon": -74.0192608 }, + { "lat": 40.8248586, "lon": -74.0192088 }, + { "lat": 40.8246935, "lon": -74.0191534 }, + { "lat": 40.8245309, "lon": -74.0190988 }, + { "lat": 40.8243752, "lon": -74.0190466 }, + { "lat": 40.8242207, "lon": -74.0189947 }, + { "lat": 40.8240482, "lon": -74.0189368 }, + { "lat": 40.8240298, "lon": -74.0189611 }, + { "lat": 40.8234115, "lon": -74.0214872 }, + { "lat": 40.8237162, "lon": -74.0215828 }, + { "lat": 40.8238706, "lon": -74.0216313 }, + { "lat": 40.8239477, "lon": -74.0216555 }, + { "lat": 40.8240387, "lon": -74.0216869 }, + { "lat": 40.8241944, "lon": -74.0217406 }, + { "lat": 40.8243561, "lon": -74.0217964 }, + { "lat": 40.8245130, "lon": -74.0218505 }, + { "lat": 40.8246740, "lon": -74.0219061 }, + { "lat": 40.8248327, "lon": -74.0219608 }, + { "lat": 40.8249864, "lon": -74.0220138 }, + { "lat": 40.8251548, "lon": -74.0220719 }, + { "lat": 40.8253043, "lon": -74.0221235 }, + { "lat": 40.8254614, "lon": -74.0221777 }, + { "lat": 40.8256385, "lon": -74.0222388 }, + { "lat": 40.8257899, "lon": -74.0222878 }, + { "lat": 40.8259481, "lon": -74.0223390 }, + { "lat": 40.8261121, "lon": -74.0223920 }, + { "lat": 40.8262707, "lon": -74.0224433 }, + { "lat": 40.8264462, "lon": -74.0225001 }, + { "lat": 40.8265917, "lon": -74.0225472 }, + { "lat": 40.8267589, "lon": -74.0226034 }, + { "lat": 40.8269078, "lon": -74.0226518 }, + { "lat": 40.8270637, "lon": -74.0227026 }, + { "lat": 40.8272255, "lon": -74.0227552 }, + { "lat": 40.8273943, "lon": -74.0228101 }, + { "lat": 40.8275630, "lon": -74.0228650 }, + { "lat": 40.8277013, "lon": -74.0229100 }, + { "lat": 40.8278702, "lon": -74.0229650 }, + { "lat": 40.8281668, "lon": -74.0230615 }, + { "lat": 40.8280932, "lon": -74.0234317 }, + { "lat": 40.8282664, "lon": -74.0234892 }, + { "lat": 40.8284440, "lon": -74.0235482 }, + { "lat": 40.8286167, "lon": -74.0236056 }, + { "lat": 40.8286563, "lon": -74.0235626 }, + { "lat": 40.8288190, "lon": -74.0225735 }, + { "lat": 40.8287964, "lon": -74.0225436 }, + { "lat": 40.8286430, "lon": -74.0224622 }, + { "lat": 40.8286026, "lon": -74.0224408 }, + { "lat": 40.8284832, "lon": -74.0223819 }, + { "lat": 40.8283903, "lon": -74.0223361 }, + { "lat": 40.8283164, "lon": -74.0223114 }, + { "lat": 40.8279984, "lon": -74.0222052 }, + { "lat": 40.8278434, "lon": -74.0221529 }, + { "lat": 40.8277092, "lon": -74.0221076 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 847353369, + "bounds": { + "minlat": 40.7775386, + "minlon": -74.0114905, + "maxlat": 40.7779135, + "maxlon": -74.0106646 + }, + "nodes": [ + 308693078, + 7907171744 + ], + "geometry": [ + { "lat": 40.7775386, "lon": -74.0106646 }, + { "lat": 40.7779135, "lon": -74.0114905 } + ], + "tags": { + "highway": "unclassified", + "lanes": "3", + "name": "Ferry Way", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847353370, + "bounds": { + "minlat": 40.7765782, + "minlon": -74.0122043, + "maxlat": 40.7769073, + "maxlon": -74.0121718 + }, + "nodes": [ + 1286793952, + 103869875 + ], + "geometry": [ + { "lat": 40.7769073, "lon": -74.0122043 }, + { "lat": 40.7765782, "lon": -74.0121718 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|" + } +}, +{ + "type": "way", + "id": 847353371, + "bounds": { + "minlat": 40.7756091, + "minlon": -74.0127256, + "maxlat": 40.7758078, + "maxlon": -74.0126207 + }, + "nodes": [ + 7907171748, + 7907171747, + 7907171746, + 7907171745 + ], + "geometry": [ + { "lat": 40.7758078, "lon": -74.0126566 }, + { "lat": 40.7757242, "lon": -74.0126207 }, + { "lat": 40.7756343, "lon": -74.0126684 }, + { "lat": 40.7756091, "lon": -74.0127256 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 847353372, + "bounds": { + "minlat": 40.7739006, + "minlon": -74.0134687, + "maxlat": 40.7743394, + "maxlon": -74.0131684 + }, + "nodes": [ + 4205818430, + 4069497850 + ], + "geometry": [ + { "lat": 40.7743394, "lon": -74.0131684 }, + { "lat": 40.7739006, "lon": -74.0134687 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through" + } +}, +{ + "type": "way", + "id": 847353373, + "bounds": { + "minlat": 40.7758499, + "minlon": -74.0120387, + "maxlat": 40.7759445, + "maxlon": -74.0119455 + }, + "nodes": [ + 2721508555, + 1286793918 + ], + "geometry": [ + { "lat": 40.7758499, "lon": -74.0120387 }, + { "lat": 40.7759445, "lon": -74.0119455 } + ], + "tags": { + "highway": "unclassified", + "name": "Avenue at Port Imperial", + "oneway": "yes", + "source:name": "TIGER", + "source:oneway": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847354411, + "bounds": { + "minlat": 40.7706428, + "minlon": -74.0153489, + "maxlat": 40.7707696, + "maxlon": -74.0152822 + }, + "nodes": [ + 12966011027, + 12966011026, + 7297022999 + ], + "geometry": [ + { "lat": 40.7707696, "lon": -74.0152822 }, + { "lat": 40.7706964, "lon": -74.0153202 }, + { "lat": 40.7706428, "lon": -74.0153489 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 847354412, + "bounds": { + "minlat": 40.7705585, + "minlon": -74.0150795, + "maxlat": 40.7706419, + "maxlon": -74.0150421 + }, + "nodes": [ + 7297022996, + 307870555, + 7297023001 + ], + "geometry": [ + { "lat": 40.7706419, "lon": -74.0150421 }, + { "lat": 40.7705868, "lon": -74.0150615 }, + { "lat": 40.7705585, "lon": -74.0150795 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Regency Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847354413, + "bounds": { + "minlat": 40.7693461, + "minlon": -74.0160068, + "maxlat": 40.7705585, + "maxlon": -74.0150795 + }, + "nodes": [ + 7297023001, + 2404083543, + 2404083520, + 5555495125, + 307870556 + ], + "geometry": [ + { "lat": 40.7705585, "lon": -74.0150795 }, + { "lat": 40.7705347, "lon": -74.0150946 }, + { "lat": 40.7704489, "lon": -74.0151880 }, + { "lat": 40.7693869, "lon": -74.0159775 }, + { "lat": 40.7693461, "lon": -74.0160068 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Regency Place", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847354414, + "bounds": { + "minlat": 40.7695906, + "minlon": -74.0160657, + "maxlat": 40.7706428, + "maxlon": -74.0153489 + }, + "nodes": [ + 7297022999, + 2318033749, + 4205818422, + 12966011025 + ], + "geometry": [ + { "lat": 40.7706428, "lon": -74.0153489 }, + { "lat": 40.7701547, "lon": -74.0156440 }, + { "lat": 40.7697312, "lon": -74.0159509 }, + { "lat": 40.7695906, "lon": -74.0160657 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 847354415, + "bounds": { + "minlat": 40.7719851, + "minlon": -74.0146642, + "maxlat": 40.7732461, + "maxlon": -74.0138910 + }, + "nodes": [ + 2404083336, + 103869869, + 307870549 + ], + "geometry": [ + { "lat": 40.7732461, "lon": -74.0138910 }, + { "lat": 40.7724331, "lon": -74.0144272 }, + { "lat": 40.7719851, "lon": -74.0146642 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 847354416, + "bounds": { + "minlat": 40.7752270, + "minlon": -74.0125279, + "maxlat": 40.7753959, + "maxlon": -74.0123848 + }, + "nodes": [ + 7147999459, + 2631530263 + ], + "geometry": [ + { "lat": 40.7752270, "lon": -74.0125279 }, + { "lat": 40.7753959, "lon": -74.0123848 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 847844642, + "bounds": { + "minlat": 40.7911885, + "minlon": -73.9227926, + "maxlat": 40.7919142, + "maxlon": -73.9219855 + }, + "nodes": [ + 7911648044, + 7911648045, + 7911648046, + 3041969938 + ], + "geometry": [ + { "lat": 40.7919142, "lon": -73.9223539 }, + { "lat": 40.7913483, "lon": -73.9227926 }, + { "lat": 40.7911885, "lon": -73.9224656 }, + { "lat": 40.7916947, "lon": -73.9219855 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 847844643, + "bounds": { + "minlat": 40.7903809, + "minlon": -73.9220753, + "maxlat": 40.7907105, + "maxlon": -73.9214322 + }, + "nodes": [ + 7911648047, + 7911648048 + ], + "geometry": [ + { "lat": 40.7903809, "lon": -73.9214322 }, + { "lat": 40.7907105, "lon": -73.9220753 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 847848657, + "bounds": { + "minlat": 40.7646734, + "minlon": -73.9472222, + "maxlat": 40.7647677, + "maxlon": -73.9471386 + }, + "nodes": [ + 3580758423, + 42448850 + ], + "geometry": [ + { "lat": 40.7646734, "lon": -73.9472222 }, + { "lat": 40.7647677, "lon": -73.9471386 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847848658, + "bounds": { + "minlat": 40.7647677, + "minlon": -73.9471386, + "maxlat": 40.7653822, + "maxlon": -73.9465895 + }, + "nodes": [ + 42448850, + 3569402547, + 9913669046, + 1242825857, + 9913669047 + ], + "geometry": [ + { "lat": 40.7647677, "lon": -73.9471386 }, + { "lat": 40.7648071, "lon": -73.9471003 }, + { "lat": 40.7653010, "lon": -73.9466625 }, + { "lat": 40.7653434, "lon": -73.9466249 }, + { "lat": 40.7653822, "lon": -73.9465895 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 847848659, + "bounds": { + "minlat": 40.7643853, + "minlon": -73.9474722, + "maxlat": 40.7646734, + "maxlon": -73.9472222 + }, + "nodes": [ + 5212861654, + 9913669045, + 3580758423 + ], + "geometry": [ + { "lat": 40.7643853, "lon": -73.9474722 }, + { "lat": 40.7645233, "lon": -73.9473560 }, + { "lat": 40.7646734, "lon": -73.9472222 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847849300, + "bounds": { + "minlat": 40.7637115, + "minlon": -73.9480769, + "maxlat": 40.7640650, + "maxlon": -73.9477523 + }, + "nodes": [ + 42426777, + 9913669044, + 42426629, + 4604406921 + ], + "geometry": [ + { "lat": 40.7637115, "lon": -73.9480769 }, + { "lat": 40.7637353, "lon": -73.9480502 }, + { "lat": 40.7638967, "lon": -73.9479025 }, + { "lat": 40.7640650, "lon": -73.9477523 } + ], + "tags": { + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "asphalt", + "turn:lanes:forward": "through;right" + } +}, +{ + "type": "way", + "id": 847849301, + "bounds": { + "minlat": 40.7640650, + "minlon": -73.9477523, + "maxlat": 40.7642528, + "maxlon": -73.9475868 + }, + "nodes": [ + 4604406921, + 1242879136 + ], + "geometry": [ + { "lat": 40.7640650, "lon": -73.9477523 }, + { "lat": 40.7642528, "lon": -73.9475868 } + ], + "tags": { + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "asphalt", + "turn:lanes:forward": "through;right" + } +}, +{ + "type": "way", + "id": 847849302, + "bounds": { + "minlat": 40.7634635, + "minlon": -73.9484168, + "maxlat": 40.7637115, + "maxlon": -73.9480769 + }, + "nodes": [ + 3569402531, + 9913669042, + 9913669043, + 42426777 + ], + "geometry": [ + { "lat": 40.7634635, "lon": -73.9484168 }, + { "lat": 40.7636623, "lon": -73.9481397 }, + { "lat": 40.7636931, "lon": -73.9480993 }, + { "lat": 40.7637115, "lon": -73.9480769 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847859371, + "bounds": { + "minlat": 40.8507775, + "minlon": -73.9126743, + "maxlat": 40.8508893, + "maxlon": -73.9122263 + }, + "nodes": [ + 42781101, + 12739101057, + 7911820396, + 7911820397 + ], + "geometry": [ + { "lat": 40.8507775, "lon": -73.9122263 }, + { "lat": 40.8508076, "lon": -73.9123441 }, + { "lat": 40.8508143, "lon": -73.9123702 }, + { "lat": 40.8508893, "lon": -73.9126743 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 847872090, + "bounds": { + "minlat": 40.7753655, + "minlon": -73.9158200, + "maxlat": 40.7797480, + "maxlon": -73.9096169 + }, + "nodes": [ + 42874618, + 9242380421, + 42874612, + 5616281073, + 3778416706, + 5616281071, + 5616281069, + 42833259, + 5616281067, + 9847967595, + 42817450, + 9847967539, + 11304646710, + 42871997, + 11304646709, + 11304708721, + 42874602, + 11304708722, + 5042114436, + 42818471, + 5042114435, + 11595847751, + 11304639649, + 42861221, + 11304639650, + 7803828559, + 42874596 + ], + "geometry": [ + { "lat": 40.7753655, "lon": -73.9096169 }, + { "lat": 40.7754219, "lon": -73.9096951 }, + { "lat": 40.7758327, "lon": -73.9102713 }, + { "lat": 40.7760666, "lon": -73.9106001 }, + { "lat": 40.7761439, "lon": -73.9107092 }, + { "lat": 40.7762162, "lon": -73.9108111 }, + { "lat": 40.7767956, "lon": -73.9116331 }, + { "lat": 40.7768399, "lon": -73.9116959 }, + { "lat": 40.7768834, "lon": -73.9117581 }, + { "lat": 40.7772791, "lon": -73.9123238 }, + { "lat": 40.7773244, "lon": -73.9123890 }, + { "lat": 40.7773613, "lon": -73.9124418 }, + { "lat": 40.7777717, "lon": -73.9130230 }, + { "lat": 40.7778084, "lon": -73.9130771 }, + { "lat": 40.7778493, "lon": -73.9131345 }, + { "lat": 40.7782572, "lon": -73.9137099 }, + { "lat": 40.7782972, "lon": -73.9137636 }, + { "lat": 40.7783303, "lon": -73.9138118 }, + { "lat": 40.7787388, "lon": -73.9143881 }, + { "lat": 40.7787772, "lon": -73.9144422 }, + { "lat": 40.7788253, "lon": -73.9145110 }, + { "lat": 40.7789826, "lon": -73.9147337 }, + { "lat": 40.7792253, "lon": -73.9150773 }, + { "lat": 40.7792621, "lon": -73.9151352 }, + { "lat": 40.7793051, "lon": -73.9151959 }, + { "lat": 40.7797118, "lon": -73.9157694 }, + { "lat": 40.7797480, "lon": -73.9158200 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Ditmars Boulevard", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt", + "wikidata": "Q5283685", + "wikipedia": "en:Ditmars Boulevard" + } +}, +{ + "type": "way", + "id": 847872091, + "bounds": { + "minlat": 40.7702677, + "minlon": -73.9158287, + "maxlat": 40.7753655, + "maxlon": -73.9096169 + }, + "nodes": [ + 42874618, + 9242380422, + 7746695010, + 3132177768, + 7746695012, + 3132177763, + 7746695014, + 5482160068, + 5482160078, + 7746695016, + 9776150528, + 42877845, + 7813969134, + 9845158016, + 42932473, + 9845158015, + 5324928518, + 11619734110, + 5866672576, + 9776116432, + 42818218, + 9776116426, + 3778729689, + 5324931555, + 3778263944, + 7841135130, + 42897727 + ], + "geometry": [ + { "lat": 40.7753655, "lon": -73.9096169 }, + { "lat": 40.7753087, "lon": -73.9096859 }, + { "lat": 40.7750328, "lon": -73.9100237 }, + { "lat": 40.7750249, "lon": -73.9100329 }, + { "lat": 40.7749082, "lon": -73.9101754 }, + { "lat": 40.7748873, "lon": -73.9102010 }, + { "lat": 40.7745024, "lon": -73.9106711 }, + { "lat": 40.7744956, "lon": -73.9106794 }, + { "lat": 40.7738828, "lon": -73.9114278 }, + { "lat": 40.7738695, "lon": -73.9114440 }, + { "lat": 40.7736578, "lon": -73.9117027 }, + { "lat": 40.7735973, "lon": -73.9117766 }, + { "lat": 40.7735351, "lon": -73.9118541 }, + { "lat": 40.7727315, "lon": -73.9128312 }, + { "lat": 40.7726834, "lon": -73.9128927 }, + { "lat": 40.7726155, "lon": -73.9129691 }, + { "lat": 40.7723028, "lon": -73.9133576 }, + { "lat": 40.7717935, "lon": -73.9139796 }, + { "lat": 40.7716139, "lon": -73.9141989 }, + { "lat": 40.7715841, "lon": -73.9142353 }, + { "lat": 40.7715230, "lon": -73.9143100 }, + { "lat": 40.7714674, "lon": -73.9143779 }, + { "lat": 40.7712645, "lon": -73.9146256 }, + { "lat": 40.7705612, "lon": -73.9154846 }, + { "lat": 40.7703660, "lon": -73.9157229 }, + { "lat": 40.7703466, "lon": -73.9157466 }, + { "lat": 40.7702677, "lon": -73.9158287 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "33rd Street", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847872092, + "bounds": { + "minlat": 40.7743639, + "minlon": -73.9096169, + "maxlat": 40.7753655, + "maxlon": -73.9081920 + }, + "nodes": [ + 42874622, + 9694280294, + 7659293848, + 42866625, + 9242368791, + 9242380424, + 42874618 + ], + "geometry": [ + { "lat": 40.7743639, "lon": -73.9081920 }, + { "lat": 40.7744091, "lon": -73.9082559 }, + { "lat": 40.7748200, "lon": -73.9088370 }, + { "lat": 40.7748712, "lon": -73.9089097 }, + { "lat": 40.7749163, "lon": -73.9089743 }, + { "lat": 40.7753196, "lon": -73.9095513 }, + { "lat": 40.7753655, "lon": -73.9096169 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Ditmars Boulevard", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt", + "wikidata": "Q5283685", + "wikipedia": "en:Ditmars Boulevard" + } +}, +{ + "type": "way", + "id": 847872093, + "bounds": { + "minlat": 40.7724774, + "minlon": -73.9105065, + "maxlat": 40.7743639, + "maxlon": -73.9081920 + }, + "nodes": [ + 42874622, + 9694280293, + 11304608232, + 5867036832, + 5867036829, + 9242368764, + 42877849, + 9242368760, + 3778729688 + ], + "geometry": [ + { "lat": 40.7743639, "lon": -73.9081920 }, + { "lat": 40.7743036, "lon": -73.9082684 }, + { "lat": 40.7740961, "lon": -73.9085305 }, + { "lat": 40.7740306, "lon": -73.9086149 }, + { "lat": 40.7734596, "lon": -73.9093048 }, + { "lat": 40.7726476, "lon": -73.9102857 }, + { "lat": 40.7725925, "lon": -73.9103523 }, + { "lat": 40.7725354, "lon": -73.9104280 }, + { "lat": 40.7724774, "lon": -73.9105065 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "36th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847873802, + "bounds": { + "minlat": 40.7150640, + "minlon": -73.9984926, + "maxlat": 40.7156303, + "maxlon": -73.9968672 + }, + "nodes": [ + 42432244, + 8307641537, + 13518638882, + 10919411360, + 10919411355, + 42438034, + 10919411359, + 12196074928, + 4625620214, + 1773063789 + ], + "geometry": [ + { "lat": 40.7156303, "lon": -73.9984926 }, + { "lat": 40.7156135, "lon": -73.9984444 }, + { "lat": 40.7155772, "lon": -73.9983397 }, + { "lat": 40.7154005, "lon": -73.9978299 }, + { "lat": 40.7153843, "lon": -73.9977830 }, + { "lat": 40.7153613, "lon": -73.9977158 }, + { "lat": 40.7153400, "lon": -73.9976556 }, + { "lat": 40.7151201, "lon": -73.9970207 }, + { "lat": 40.7150951, "lon": -73.9969525 }, + { "lat": 40.7150640, "lon": -73.9968672 } + ], + "tags": { + "alt_name": "Zhe \"Zack\" Zeng Way", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bayard Street", + "name:en": "Bayard Street", + "name:etymology:wikidata": "Q508327", + "name:ko": "베이어드 스트리트", + "name:zh": "擺也街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q111307679" + } +}, +{ + "type": "way", + "id": 847873803, + "bounds": { + "minlat": 40.7156303, + "minlon": -73.9993221, + "maxlat": 40.7159216, + "maxlon": -73.9984926 + }, + "nodes": [ + 7132405535, + 7132389379, + 8307641540, + 42432244 + ], + "geometry": [ + { "lat": 40.7159216, "lon": -73.9993221 }, + { "lat": 40.7158962, "lon": -73.9992604 }, + { "lat": 40.7156583, "lon": -73.9985724 }, + { "lat": 40.7156303, "lon": -73.9984926 } + ], + "tags": { + "alt_name": "Zhe \"Zack\" Zeng Way", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bayard Street", + "name:en": "Bayard Street", + "name:etymology:wikidata": "Q508327", + "name:ko": "베이어드 스트리트", + "name:zh": "擺也街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q111307679" + } +}, +{ + "type": "way", + "id": 847909746, + "bounds": { + "minlat": 40.7025230, + "minlon": -73.9896268, + "maxlat": 40.7032012, + "maxlon": -73.9895800 + }, + "nodes": [ + 42469336, + 8262935524, + 10726079574, + 42500003 + ], + "geometry": [ + { "lat": 40.7032012, "lon": -73.9895800 }, + { "lat": 40.7031526, "lon": -73.9895831 }, + { "lat": 40.7025937, "lon": -73.9896201 }, + { "lat": 40.7025230, "lon": -73.9896268 } + ], + "tags": { + "bicycle": "designated", + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "20 mph", + "motor_vehicle:conditional": "no @ (Mo-Sa 11:00-21:00; Su 10:00-21:00))", + "name": "Washington Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Washington", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 847920086, + "bounds": { + "minlat": 40.7099123, + "minlon": -74.0073814, + "maxlat": 40.7105880, + "maxlon": -74.0060881 + }, + "nodes": [ + 1538237434, + 8281922100, + 5487748079, + 11374409798, + 11374406727, + 8281922109, + 1538237248 + ], + "geometry": [ + { "lat": 40.7105880, "lon": -74.0073814 }, + { "lat": 40.7105667, "lon": -74.0073422 }, + { "lat": 40.7101764, "lon": -74.0065899 }, + { "lat": 40.7101527, "lon": -74.0065442 }, + { "lat": 40.7099625, "lon": -74.0061771 }, + { "lat": 40.7099416, "lon": -74.0061388 }, + { "lat": 40.7099123, "lon": -74.0060881 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Ann Street", + "name:ko": "앤 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4766689", + "wikipedia": "en:Ann Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 847920890, + "bounds": { + "minlat": 40.7149028, + "minlon": -73.9923757, + "maxlat": 40.7150484, + "maxlon": -73.9918872 + }, + "nodes": [ + 42440792, + 13070742269, + 9525441202, + 5863596399, + 13014876813, + 42437967 + ], + "geometry": [ + { "lat": 40.7149028, "lon": -73.9918872 }, + { "lat": 40.7149220, "lon": -73.9919514 }, + { "lat": 40.7150063, "lon": -73.9922336 }, + { "lat": 40.7150237, "lon": -73.9922922 }, + { "lat": 40.7150402, "lon": -73.9923479 }, + { "lat": 40.7150484, "lon": -73.9923757 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 847921886, + "bounds": { + "minlat": 40.7178782, + "minlon": -73.9979382, + "maxlat": 40.7181633, + "maxlon": -73.9971031 + }, + "nodes": [ + 42432250, + 7641718039, + 9929761175, + 9929740883, + 8307641589, + 42435456 + ], + "geometry": [ + { "lat": 40.7178782, "lon": -73.9971031 }, + { "lat": 40.7179017, "lon": -73.9971718 }, + { "lat": 40.7179045, "lon": -73.9971799 }, + { "lat": 40.7181391, "lon": -73.9978675 }, + { "lat": 40.7181402, "lon": -73.9978706 }, + { "lat": 40.7181633, "lon": -73.9979382 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Th-Fr 16:30-23:30; Sa-Su 10:30-23:30)", + "name": "Hester Street", + "name:ko": "헤스터 스트리트", + "name:ru": "Хестер-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5746336", + "wikipedia": "en:Hester Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 847921887, + "bounds": { + "minlat": 40.7181633, + "minlon": -73.9994121, + "maxlat": 40.7186870, + "maxlon": -73.9979382 + }, + "nodes": [ + 42435456, + 8307641592, + 9929740877, + 9826534635, + 8307641580, + 42445612, + 8307641583, + 12197926853, + 8307641572, + 12197926854, + 42427319 + ], + "geometry": [ + { "lat": 40.7181633, "lon": -73.9979382 }, + { "lat": 40.7181787, "lon": -73.9979833 }, + { "lat": 40.7181824, "lon": -73.9979942 }, + { "lat": 40.7183225, "lon": -73.9984045 }, + { "lat": 40.7184197, "lon": -73.9986861 }, + { "lat": 40.7184469, "lon": -73.9987523 }, + { "lat": 40.7184739, "lon": -73.9988245 }, + { "lat": 40.7186301, "lon": -73.9992703 }, + { "lat": 40.7186529, "lon": -73.9993353 }, + { "lat": 40.7186687, "lon": -73.9993738 }, + { "lat": 40.7186870, "lon": -73.9994121 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Hester Street", + "name:ko": "헤스터 스트리트", + "name:ru": "Хестер-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5746336", + "wikipedia": "en:Hester Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 847931435, + "bounds": { + "minlat": 40.7181633, + "minlon": -73.9979382, + "maxlat": 40.7205066, + "maxlon": -73.9968358 + }, + "nodes": [ + 42435456, + 8307641590, + 9929740880, + 42435461, + 42435465, + 42435468, + 8307641654, + 42435470, + 8307641653, + 12187433921, + 8231927637, + 42432174 + ], + "geometry": [ + { "lat": 40.7181633, "lon": -73.9979382 }, + { "lat": 40.7182017, "lon": -73.9979134 }, + { "lat": 40.7182187, "lon": -73.9979024 }, + { "lat": 40.7184700, "lon": -73.9977400 }, + { "lat": 40.7187940, "lon": -73.9975590 }, + { "lat": 40.7191690, "lon": -73.9973730 }, + { "lat": 40.7192584, "lon": -73.9973327 }, + { "lat": 40.7193317, "lon": -73.9973015 }, + { "lat": 40.7193977, "lon": -73.9972736 }, + { "lat": 40.7204025, "lon": -73.9968768 }, + { "lat": 40.7204371, "lon": -73.9968631 }, + { "lat": 40.7205066, "lon": -73.9968358 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Th-Fr 16:30-23:30; Sa-Su 10:30-23:30)", + "name": "Mulberry Street", + "name:en": "Mulberry Street", + "name:ko": "멀베리 스트리트", + "name:ru": "Малберри-стрит", + "name:zh": "摩比利街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1934308", + "wikipedia": "en:Mulberry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 847931436, + "bounds": { + "minlat": 40.7205066, + "minlon": -73.9968358, + "maxlat": 40.7248113, + "maxlon": -73.9949846 + }, + "nodes": [ + 42432174, + 8231927636, + 8231927626, + 42430038, + 8231927625, + 8231877109, + 5159433792, + 8231877108, + 3463814539, + 42435477, + 3463814542, + 428833475, + 8231877090, + 42435485, + 8231877089, + 12187431485, + 5829779493 + ], + "geometry": [ + { "lat": 40.7205066, "lon": -73.9968358 }, + { "lat": 40.7205812, "lon": -73.9968064 }, + { "lat": 40.7210973, "lon": -73.9966021 }, + { "lat": 40.7211736, "lon": -73.9965747 }, + { "lat": 40.7212582, "lon": -73.9965412 }, + { "lat": 40.7219082, "lon": -73.9962831 }, + { "lat": 40.7219524, "lon": -73.9962656 }, + { "lat": 40.7220093, "lon": -73.9962432 }, + { "lat": 40.7233151, "lon": -73.9957289 }, + { "lat": 40.7233679, "lon": -73.9957075 }, + { "lat": 40.7234235, "lon": -73.9956803 }, + { "lat": 40.7237959, "lon": -73.9955011 }, + { "lat": 40.7240646, "lon": -73.9953556 }, + { "lat": 40.7240884, "lon": -73.9953435 }, + { "lat": 40.7241232, "lon": -73.9953253 }, + { "lat": 40.7247631, "lon": -73.9950070 }, + { "lat": 40.7248113, "lon": -73.9949846 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Mulberry Street", + "name:en": "Mulberry Street", + "name:ko": "멀베리 스트리트", + "name:ru": "Малберри-стрит", + "name:zh": "摩比利街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1934308", + "wikipedia": "en:Mulberry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 847932330, + "bounds": { + "minlat": 40.7077053, + "minlon": -74.0112699, + "maxlat": 40.7083242, + "maxlon": -74.0102034 + }, + "nodes": [ + 42429838, + 8281922254, + 4352711148, + 5083818842, + 10301699040, + 42428371 + ], + "geometry": [ + { "lat": 40.7077053, "lon": -74.0102034 }, + { "lat": 40.7077358, "lon": -74.0102567 }, + { "lat": 40.7081053, "lon": -74.0108784 }, + { "lat": 40.7082710, "lon": -74.0111584 }, + { "lat": 40.7082964, "lon": -74.0112135 }, + { "lat": 40.7083242, "lon": -74.0112699 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Pine Street", + "name:ko": "파인 스트리트", + "name:ru": "Пайн-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q13845373" + } +}, +{ + "type": "way", + "id": 847932331, + "bounds": { + "minlat": 40.7060628, + "minlon": -74.0090037, + "maxlat": 40.7069579, + "maxlon": -74.0074544 + }, + "nodes": [ + 42429842, + 8276468635, + 11369425021, + 11369425022, + 11369425028, + 8276468646, + 42429840 + ], + "geometry": [ + { "lat": 40.7060628, "lon": -74.0074544 }, + { "lat": 40.7060894, "lon": -74.0074998 }, + { "lat": 40.7063552, "lon": -74.0079884 }, + { "lat": 40.7064852, "lon": -74.0082134 }, + { "lat": 40.7069057, "lon": -74.0089168 }, + { "lat": 40.7069280, "lon": -74.0089541 }, + { "lat": 40.7069579, "lon": -74.0090037 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Pine Street", + "name:ko": "파인 스트리트", + "name:ru": "Пайн-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q13845373" + } +}, +{ + "type": "way", + "id": 847932924, + "bounds": { + "minlat": 40.7227230, + "minlon": -73.9941530, + "maxlat": 40.7254617, + "maxlon": -73.9930426 + }, + "nodes": [ + 42458313, + 8231909753, + 5829779496, + 1918039898, + 42457325, + 5829779527, + 8694309046, + 10171486358, + 42431822 + ], + "geometry": [ + { "lat": 40.7227230, "lon": -73.9941530 }, + { "lat": 40.7227757, "lon": -73.9941316 }, + { "lat": 40.7242846, "lon": -73.9935224 }, + { "lat": 40.7243691, "lon": -73.9934855 }, + { "lat": 40.7245091, "lon": -73.9934284 }, + { "lat": 40.7245855, "lon": -73.9933964 }, + { "lat": 40.7253612, "lon": -73.9930830 }, + { "lat": 40.7253982, "lon": -73.9930680 }, + { "lat": 40.7254617, "lon": -73.9930426 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Elizabeth Street", + "name:ar": "شارع ايليزابيت", + "name:en": "Elizabeth Street", + "name:ko": "엘리자베스 스트리트", + "name:zh": "伊利沙白街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5363575", + "wikipedia": "en:Elizabeth Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 847932925, + "bounds": { + "minlat": 40.7213148, + "minlon": -73.9947014, + "maxlat": 40.7227230, + "maxlon": -73.9941530 + }, + "nodes": [ + 42442230, + 8231909742, + 4501924441, + 8231909754, + 42458313 + ], + "geometry": [ + { "lat": 40.7213148, "lon": -73.9947014 }, + { "lat": 40.7213667, "lon": -73.9946813 }, + { "lat": 40.7220811, "lon": -73.9944038 }, + { "lat": 40.7226696, "lon": -73.9941739 }, + { "lat": 40.7227230, "lon": -73.9941530 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 16:30-23:00; Sa-Su 11:00-23:00)", + "name": "Elizabeth Street", + "name:ar": "شارع ايليزابيت", + "name:en": "Elizabeth Street", + "name:ko": "엘리자베스 스트리트", + "name:zh": "伊利沙白街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5363575", + "wikipedia": "en:Elizabeth Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 847939166, + "bounds": { + "minlat": 40.7209753, + "minlon": -73.9947014, + "maxlat": 40.7213148, + "maxlon": -73.9938646 + }, + "nodes": [ + 42442230, + 8231909741, + 8821681998, + 12196062132, + 12196062133, + 8231909726, + 12196062134, + 12196062135, + 42437605 + ], + "geometry": [ + { "lat": 40.7213148, "lon": -73.9947014 }, + { "lat": 40.7212873, "lon": -73.9946408 }, + { "lat": 40.7210286, "lon": -73.9940300 }, + { "lat": 40.7210157, "lon": -73.9939972 }, + { "lat": 40.7210067, "lon": -73.9939740 }, + { "lat": 40.7209984, "lon": -73.9939498 }, + { "lat": 40.7209907, "lon": -73.9939232 }, + { "lat": 40.7209817, "lon": -73.9938908 }, + { "lat": 40.7209753, "lon": -73.9938646 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "intermediate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 847939167, + "bounds": { + "minlat": 40.7213148, + "minlon": -73.9954604, + "maxlat": 40.7216242, + "maxlon": -73.9947014 + }, + "nodes": [ + 42432302, + 8231877116, + 8231909744, + 42442230 + ], + "geometry": [ + { "lat": 40.7216242, "lon": -73.9954604 }, + { "lat": 40.7215996, "lon": -73.9954000 }, + { "lat": 40.7213379, "lon": -73.9947581 }, + { "lat": 40.7213148, "lon": -73.9947014 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 847942275, + "bounds": { + "minlat": 40.7254617, + "minlon": -73.9937550, + "maxlat": 40.7256521, + "maxlon": -73.9930426 + }, + "nodes": [ + 1692433911, + 42431822 + ], + "geometry": [ + { "lat": 40.7256521, "lon": -73.9937550 }, + { "lat": 40.7254617, "lon": -73.9930426 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Bleecker Street", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 847942276, + "bounds": { + "minlat": 40.7252265, + "minlon": -73.9922705, + "maxlat": 40.7252555, + "maxlon": -73.9921682 + }, + "nodes": [ + 1692433907, + 1773084391 + ], + "geometry": [ + { "lat": 40.7252555, "lon": -73.9922705 }, + { "lat": 40.7252265, "lon": -73.9921682 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Bleecker Street", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "parking:lane:left:parallel": "no_parking", + "sidewalk:both": "separate", + "source:geometry": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 847944398, + "bounds": { + "minlat": 40.7037261, + "minlon": -74.0106418, + "maxlat": 40.7041713, + "maxlon": -74.0100178 + }, + "nodes": [ + 10707589906, + 7912544099, + 5105702748, + 11040280508, + 8276468773, + 8276468775 + ], + "geometry": [ + { "lat": 40.7041713, "lon": -74.0100178 }, + { "lat": 40.7041169, "lon": -74.0100855 }, + { "lat": 40.7038227, "lon": -74.0104969 }, + { "lat": 40.7037708, "lon": -74.0105731 }, + { "lat": 40.7037614, "lon": -74.0105871 }, + { "lat": 40.7037261, "lon": -74.0106418 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 847945638, + "bounds": { + "minlat": 40.7260512, + "minlon": -73.9857530, + "maxlat": 40.7269880, + "maxlon": -73.9835308 + }, + "nodes": [ + 42434215, + 4216045795, + 12539773407, + 8309479532, + 42434205 + ], + "geometry": [ + { "lat": 40.7260512, "lon": -73.9835308 }, + { "lat": 40.7260961, "lon": -73.9836370 }, + { "lat": 40.7265799, "lon": -73.9847847 }, + { "lat": 40.7269325, "lon": -73.9856211 }, + { "lat": 40.7269880, "lon": -73.9857530 } + ], + "tags": { + "cycleway": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 7th Street", + "name:ru": "Восточная 7-я стрит", + "oneway": "yes", + "sidewalk": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847950378, + "bounds": { + "minlat": 40.7275990, + "minlon": -73.9876651, + "maxlat": 40.7286043, + "maxlon": -73.9853070 + }, + "nodes": [ + 42434142, + 4235738199, + 8309479527, + 4012724171 + ], + "geometry": [ + { "lat": 40.7286043, "lon": -73.9876651 }, + { "lat": 40.7285556, "lon": -73.9875509 }, + { "lat": 40.7276552, "lon": -73.9854389 }, + { "lat": 40.7275990, "lon": -73.9853070 } + ], + "tags": { + "alt_name": "East 8th Street", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Saint Marks Place", + "name:etymology:wikidata": "Q7589922", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2142493", + "wikipedia": "en:8th Street and St. Mark's Place" + } +}, +{ + "type": "way", + "id": 847952488, + "bounds": { + "minlat": 40.7379458, + "minlon": -73.9877778, + "maxlat": 40.7383383, + "maxlon": -73.9868475 + }, + "nodes": [ + 4597668028, + 42439203, + 10172843091, + 42438849 + ], + "geometry": [ + { "lat": 40.7383383, "lon": -73.9877778 }, + { "lat": 40.7383031, "lon": -73.9876929 }, + { "lat": 40.7382626, "lon": -73.9875982 }, + { "lat": 40.7379458, "lon": -73.9868475 } + ], + "tags": { + "alt_name": "Gramercy Park South", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9" + } +}, +{ + "type": "way", + "id": 847952489, + "bounds": { + "minlat": 40.7385458, + "minlon": -73.9897506, + "maxlat": 40.7391688, + "maxlon": -73.9882705 + }, + "nodes": [ + 42428183, + 8569048144, + 12181309647 + ], + "geometry": [ + { "lat": 40.7391688, "lon": -73.9897506 }, + { "lat": 40.7391340, "lon": -73.9896682 }, + { "lat": 40.7385458, "lon": -73.9882705 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 847994493, + "bounds": { + "minlat": 40.7426527, + "minlon": -73.9856962, + "maxlat": 40.7440084, + "maxlon": -73.9824654 + }, + "nodes": [ + 42445888, + 10167162555, + 12181339193, + 10167162568, + 4597668030, + 42446266, + 10167162563, + 12181339194, + 5481897722, + 12181379218, + 11308882995, + 42446270 + ], + "geometry": [ + { "lat": 40.7440084, "lon": -73.9856962 }, + { "lat": 40.7439724, "lon": -73.9855967 }, + { "lat": 40.7434166, "lon": -73.9842785 }, + { "lat": 40.7433903, "lon": -73.9842132 }, + { "lat": 40.7433626, "lon": -73.9841444 }, + { "lat": 40.7433107, "lon": -73.9840157 }, + { "lat": 40.7432805, "lon": -73.9839407 }, + { "lat": 40.7432667, "lon": -73.9839064 }, + { "lat": 40.7428561, "lon": -73.9829501 }, + { "lat": 40.7427180, "lon": -73.9826213 }, + { "lat": 40.7426953, "lon": -73.9825673 }, + { "lat": 40.7426527, "lon": -73.9824654 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "East 28th Street", + "name:ru": "Восточная 28-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847994494, + "bounds": { + "minlat": 40.7410430, + "minlon": -73.9808707, + "maxlat": 40.7419813, + "maxlon": -73.9786424 + }, + "nodes": [ + 42446275, + 4234425048, + 7631032409, + 5481960322, + 5481959620, + 7640871295, + 42442898 + ], + "geometry": [ + { "lat": 40.7419813, "lon": -73.9808707 }, + { "lat": 40.7419223, "lon": -73.9807309 }, + { "lat": 40.7416696, "lon": -73.9801305 }, + { "lat": 40.7415462, "lon": -73.9798374 }, + { "lat": 40.7414720, "lon": -73.9796611 }, + { "lat": 40.7410898, "lon": -73.9787534 }, + { "lat": 40.7410430, "lon": -73.9786424 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 28th Street", + "name:ru": "Восточная 28-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 847998122, + "bounds": { + "minlat": 40.7241660, + "minlon": -74.0019395, + "maxlat": 40.7245552, + "maxlon": -74.0011270 + }, + "nodes": [ + 42442276, + 8231938427, + 8231885407, + 42433577 + ], + "geometry": [ + { "lat": 40.7245552, "lon": -74.0019395 }, + { "lat": 40.7245119, "lon": -74.0018494 }, + { "lat": 40.7241978, "lon": -74.0011934 }, + { "lat": 40.7241660, "lon": -74.0011270 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 848010565, + "bounds": { + "minlat": 40.8068469, + "minlon": -73.9274987, + "maxlat": 40.8075201, + "maxlon": -73.9270069 + }, + "nodes": [ + 42732842, + 9908621498, + 9908621497, + 42732845 + ], + "geometry": [ + { "lat": 40.8068469, "lon": -73.9274987 }, + { "lat": 40.8069489, "lon": -73.9274242 }, + { "lat": 40.8074641, "lon": -73.9270478 }, + { "lat": 40.8075201, "lon": -73.9270069 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Th-Fr 14:00-20:00; Sa 11:00-20:0)", + "name": "Alexander Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Alexander", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 848010566, + "bounds": { + "minlat": 40.8081583, + "minlon": -73.9265383, + "maxlat": 40.8126037, + "maxlon": -73.9232730 + }, + "nodes": [ + 42732852, + 11427300168, + 10033563166, + 7553907593, + 10033557444, + 7679369206, + 9908621503, + 42732863, + 11427300164, + 9908621506, + 3638049583, + 11882279845, + 9908621510, + 42732872, + 9908621512, + 9908621513, + 42732876, + 9908621514, + 9908629921, + 42732879, + 9908629920, + 7042982062, + 9908629922, + 42732882 + ], + "geometry": [ + { "lat": 40.8081583, "lon": -73.9265383 }, + { "lat": 40.8082454, "lon": -73.9264746 }, + { "lat": 40.8087178, "lon": -73.9261289 }, + { "lat": 40.8087621, "lon": -73.9260965 }, + { "lat": 40.8087995, "lon": -73.9260671 }, + { "lat": 40.8088322, "lon": -73.9260414 }, + { "lat": 40.8093236, "lon": -73.9256815 }, + { "lat": 40.8093837, "lon": -73.9256376 }, + { "lat": 40.8094545, "lon": -73.9255863 }, + { "lat": 40.8099840, "lon": -73.9252031 }, + { "lat": 40.8100655, "lon": -73.9251430 }, + { "lat": 40.8101493, "lon": -73.9250818 }, + { "lat": 40.8106794, "lon": -73.9246945 }, + { "lat": 40.8107290, "lon": -73.9246451 }, + { "lat": 40.8107834, "lon": -73.9245905 }, + { "lat": 40.8112916, "lon": -73.9242182 }, + { "lat": 40.8113502, "lon": -73.9241767 }, + { "lat": 40.8114096, "lon": -73.9241319 }, + { "lat": 40.8119166, "lon": -73.9237600 }, + { "lat": 40.8119777, "lon": -73.9237024 }, + { "lat": 40.8120431, "lon": -73.9236551 }, + { "lat": 40.8121588, "lon": -73.9235595 }, + { "lat": 40.8125137, "lon": -73.9233027 }, + { "lat": 40.8126037, "lon": -73.9232730 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Alexander Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Alexander", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 848011474, + "bounds": { + "minlat": 40.8018566, + "minlon": -73.9572369, + "maxlat": 40.8031162, + "maxlon": -73.9563200 + }, + "nodes": [ + 42435746, + 11296200776, + 11296200786, + 42431207, + 11296200785, + 11298975876, + 42435755 + ], + "geometry": [ + { "lat": 40.8018566, "lon": -73.9572369 }, + { "lat": 40.8019225, "lon": -73.9571889 }, + { "lat": 40.8024361, "lon": -73.9568148 }, + { "lat": 40.8024899, "lon": -73.9567756 }, + { "lat": 40.8025483, "lon": -73.9567331 }, + { "lat": 40.8030700, "lon": -73.9563536 }, + { "lat": 40.8031162, "lon": -73.9563200 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 848011475, + "bounds": { + "minlat": 40.8069824, + "minlon": -73.9534985, + "maxlat": 40.8073581, + "maxlon": -73.9532242 + }, + "nodes": [ + 42429741, + 11298919660, + 5475792646 + ], + "geometry": [ + { "lat": 40.8069824, "lon": -73.9534985 }, + { "lat": 40.8070424, "lon": -73.9534547 }, + { "lat": 40.8073581, "lon": -73.9532242 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 848013829, + "bounds": { + "minlat": 40.7987889, + "minlon": -73.9669150, + "maxlat": 40.7993147, + "maxlon": -73.9665213 + }, + "nodes": [ + 13768371208, + 9646878729, + 42442561, + 9646878728, + 13768340352 + ], + "geometry": [ + { "lat": 40.7987889, "lon": -73.9669150 }, + { "lat": 40.7990802, "lon": -73.9666953 }, + { "lat": 40.7991346, "lon": -73.9666553 }, + { "lat": 40.7991909, "lon": -73.9666131 }, + { "lat": 40.7993147, "lon": -73.9665213 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 848016982, + "bounds": { + "minlat": 40.7183505, + "minlon": -73.9917491, + "maxlat": 40.7185836, + "maxlon": -73.9909824 + }, + "nodes": [ + 42429644, + 8231877075, + 4300912711, + 42432108 + ], + "geometry": [ + { "lat": 40.7185836, "lon": -73.9917491 }, + { "lat": 40.7185637, "lon": -73.9916832 }, + { "lat": 40.7183743, "lon": -73.9910608 }, + { "lat": 40.7183505, "lon": -73.9909824 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 848021603, + "bounds": { + "minlat": 40.7393918, + "minlon": -74.0079514, + "maxlat": 40.7394041, + "maxlon": -74.0064406 + }, + "nodes": [ + 12162436970, + 8262308625, + 12162436904, + 719516045, + 8262308733 + ], + "geometry": [ + { "lat": 40.7394038, "lon": -74.0064406 }, + { "lat": 40.7394041, "lon": -74.0065693 }, + { "lat": 40.7393945, "lon": -74.0078969 }, + { "lat": 40.7393943, "lon": -74.0079247 }, + { "lat": 40.7393918, "lon": -74.0079514 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:left:surface": "paving_stones", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (We-Fr 14:00-22:00; Sa-Su 12:00-22:00))", + "name": "Gansevoort Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 848021604, + "bounds": { + "minlat": 40.7393650, + "minlon": -74.0097004, + "maxlat": 40.7393829, + "maxlon": -74.0080522 + }, + "nodes": [ + 42455357, + 8262308735, + 1042457827, + 4599130017, + 1578334788, + 593816275 + ], + "geometry": [ + { "lat": 40.7393829, "lon": -74.0080522 }, + { "lat": 40.7393760, "lon": -74.0081350 }, + { "lat": 40.7393753, "lon": -74.0082101 }, + { "lat": 40.7393658, "lon": -74.0094526 }, + { "lat": 40.7393650, "lon": -74.0095053 }, + { "lat": 40.7393666, "lon": -74.0097004 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (We-Fr 14:00-22:00; Sa-Su 12:00-22:00))", + "name": "Gansevoort Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 848051140, + "bounds": { + "minlat": 40.7337528, + "minlon": -74.0018238, + "maxlat": 40.7338470, + "maxlon": -74.0012059 + }, + "nodes": [ + 42433261, + 11987722729, + 5244228879, + 11003403036 + ], + "geometry": [ + { "lat": 40.7338470, "lon": -74.0012059 }, + { "lat": 40.7338336, "lon": -74.0012688 }, + { "lat": 40.7338007, "lon": -74.0014950 }, + { "lat": 40.7337528, "lon": -74.0018238 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Christopher Street", + "name:ru": "Кристофер-стрит", + "oneway": "yes", + "parking:right": "no", + "parking:right:restriction": "no_parking", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1086990", + "wikipedia": "en:Christopher Street" + } +}, +{ + "type": "way", + "id": 848051758, + "bounds": { + "minlat": 40.7297856, + "minlon": -73.9960614, + "maxlat": 40.7301561, + "maxlon": -73.9953096 + }, + "nodes": [ + 42456206, + 8309478980, + 11436611297, + 3584752215, + 42449817 + ], + "geometry": [ + { "lat": 40.7297856, "lon": -73.9953096 }, + { "lat": 40.7298106, "lon": -73.9953583 }, + { "lat": 40.7301048, "lon": -73.9959627 }, + { "lat": 40.7301330, "lon": -73.9960166 }, + { "lat": 40.7301561, "lon": -73.9960614 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Washington Place", + "name:etymology:wikidata": "Q909592", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 848284996, + "bounds": { + "minlat": 40.8557221, + "minlon": -73.9271832, + "maxlat": 40.8561713, + "maxlon": -73.9266682 + }, + "nodes": [ + 7915715240, + 9563795451, + 7915715241, + 7915715242, + 7915715243, + 7915715244, + 7915715245, + 7915715246, + 7915715247, + 7915715248, + 7915715249, + 7915715250, + 8725139290, + 7915715251 + ], + "geometry": [ + { "lat": 40.8557862, "lon": -73.9271832 }, + { "lat": 40.8557526, "lon": -73.9270861 }, + { "lat": 40.8557391, "lon": -73.9270469 }, + { "lat": 40.8557221, "lon": -73.9269732 }, + { "lat": 40.8557306, "lon": -73.9268903 }, + { "lat": 40.8557577, "lon": -73.9268105 }, + { "lat": 40.8558034, "lon": -73.9267522 }, + { "lat": 40.8558606, "lon": -73.9267051 }, + { "lat": 40.8559489, "lon": -73.9266682 }, + { "lat": 40.8560139, "lon": -73.9266734 }, + { "lat": 40.8560766, "lon": -73.9267030 }, + { "lat": 40.8561269, "lon": -73.9267737 }, + { "lat": 40.8561379, "lon": -73.9268062 }, + { "lat": 40.8561713, "lon": -73.9269053 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 848308028, + "bounds": { + "minlat": 40.8142696, + "minlon": -73.9893240, + "maxlat": 40.8144877, + "maxlon": -73.9889368 + }, + "nodes": [ + 7915916143, + 10755602491, + 10755643317, + 10755602492, + 10755602493, + 10755643313, + 10755602495 + ], + "geometry": [ + { "lat": 40.8144877, "lon": -73.9893190 }, + { "lat": 40.8144479, "lon": -73.9893240 }, + { "lat": 40.8143493, "lon": -73.9891978 }, + { "lat": 40.8143436, "lon": -73.9891905 }, + { "lat": 40.8142828, "lon": -73.9890307 }, + { "lat": 40.8142698, "lon": -73.9889755 }, + { "lat": 40.8142696, "lon": -73.9889368 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 848391972, + "bounds": { + "minlat": 40.7487150, + "minlon": -73.9128144, + "maxlat": 40.7488186, + "maxlon": -73.9118880 + }, + "nodes": [ + 42819582, + 7671808583, + 42892881 + ], + "geometry": [ + { "lat": 40.7488186, "lon": -73.9128144 }, + { "lat": 40.7488098, "lon": -73.9127371 }, + { "lat": 40.7487150, "lon": -73.9118880 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "39th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 848671778, + "bounds": { + "minlat": 40.8434747, + "minlon": -73.9316827, + "maxlat": 40.8439539, + "maxlon": -73.9316172 + }, + "nodes": [ + 7918667627, + 373781778 + ], + "geometry": [ + { "lat": 40.8439539, "lon": -73.9316827 }, + { "lat": 40.8434747, "lon": -73.9316172 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 848699562, + "bounds": { + "minlat": 40.8161849, + "minlon": -73.9574840, + "maxlat": 40.8166713, + "maxlon": -73.9571368 + }, + "nodes": [ + 7260975615, + 10054975855, + 7918859247, + 7918859248 + ], + "geometry": [ + { "lat": 40.8161849, "lon": -73.9574840 }, + { "lat": 40.8162673, "lon": -73.9574247 }, + { "lat": 40.8163889, "lon": -73.9573372 }, + { "lat": 40.8166713, "lon": -73.9571368 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 848701035, + "bounds": { + "minlat": 40.7883003, + "minlon": -73.9199908, + "maxlat": 40.7889296, + "maxlon": -73.9196515 + }, + "nodes": [ + 7918865237, + 7918865238, + 7918865239, + 7918865240, + 7918865241, + 3041969940 + ], + "geometry": [ + { "lat": 40.7883003, "lon": -73.9196515 }, + { "lat": 40.7884894, "lon": -73.9199371 }, + { "lat": 40.7885518, "lon": -73.9199841 }, + { "lat": 40.7886203, "lon": -73.9199908 }, + { "lat": 40.7886693, "lon": -73.9199717 }, + { "lat": 40.7889296, "lon": -73.9198218 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 848741707, + "bounds": { + "minlat": 40.8430655, + "minlon": -73.9203654, + "maxlat": 40.8431992, + "maxlon": -73.9199390 + }, + "nodes": [ + 7919257006, + 7919257009, + 7919257007, + 7919257008 + ], + "geometry": [ + { "lat": 40.8431992, "lon": -73.9203654 }, + { "lat": 40.8431456, "lon": -73.9202311 }, + { "lat": 40.8430655, "lon": -73.9200304 }, + { "lat": 40.8431882, "lon": -73.9199390 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 848741708, + "bounds": { + "minlat": 40.8419793, + "minlon": -73.9187987, + "maxlat": 40.8421609, + "maxlon": -73.9184382 + }, + "nodes": [ + 7919257010, + 7919257012, + 7919257011 + ], + "geometry": [ + { "lat": 40.8419793, "lon": -73.9184382 }, + { "lat": 40.8421258, "lon": -73.9187288 }, + { "lat": 40.8421609, "lon": -73.9187987 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 848885978, + "bounds": { + "minlat": 40.7270149, + "minlon": -73.9318063, + "maxlat": 40.7273191, + "maxlon": -73.9305426 + }, + "nodes": [ + 42473986, + 13718039922, + 13718039925, + 13718039924 + ], + "geometry": [ + { "lat": 40.7273191, "lon": -73.9305426 }, + { "lat": 40.7272645, "lon": -73.9307591 }, + { "lat": 40.7270149, "lon": -73.9317481 }, + { "lat": 40.7271433, "lon": -73.9318063 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 848911618, + "bounds": { + "minlat": 40.8396603, + "minlon": -73.9897713, + "maxlat": 40.8398803, + "maxlon": -73.9894343 + }, + "nodes": [ + 103227482, + 7920535418, + 7920535419, + 7920535420, + 7920535421 + ], + "geometry": [ + { "lat": 40.8398803, "lon": -73.9897713 }, + { "lat": 40.8398505, "lon": -73.9897545 }, + { "lat": 40.8398168, "lon": -73.9897270 }, + { "lat": 40.8397691, "lon": -73.9896411 }, + { "lat": 40.8396603, "lon": -73.9894343 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 849041109, + "bounds": { + "minlat": 40.7903370, + "minlon": -73.9516610, + "maxlat": 40.7904352, + "maxlon": -73.9514154 + }, + "nodes": [ + 7921537510, + 7921537500 + ], + "geometry": [ + { "lat": 40.7904352, "lon": -73.9516610 }, + { "lat": 40.7903370, "lon": -73.9514154 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 849041111, + "bounds": { + "minlat": 40.7896581, + "minlon": -73.9539920, + "maxlat": 40.7897386, + "maxlon": -73.9537970 + }, + "nodes": [ + 7921537501, + 7921509483 + ], + "geometry": [ + { "lat": 40.7897386, "lon": -73.9539920 }, + { "lat": 40.7896581, "lon": -73.9537970 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 849041114, + "bounds": { + "minlat": 40.7898112, + "minlon": -73.9543231, + "maxlat": 40.7898769, + "maxlon": -73.9541677 + }, + "nodes": [ + 7921537506, + 7921716056, + 7921537517 + ], + "geometry": [ + { "lat": 40.7898769, "lon": -73.9543231 }, + { "lat": 40.7898382, "lon": -73.9542330 }, + { "lat": 40.7898112, "lon": -73.9541677 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 849041115, + "bounds": { + "minlat": 40.7903370, + "minlon": -73.9514154, + "maxlat": 40.7905329, + "maxlon": -73.9512939 + }, + "nodes": [ + 7921537507, + 7921537505, + 7921537503, + 7921537488, + 7921537493, + 7921537508, + 7921537500 + ], + "geometry": [ + { "lat": 40.7905329, "lon": -73.9513201 }, + { "lat": 40.7904799, "lon": -73.9513019 }, + { "lat": 40.7904432, "lon": -73.9512939 }, + { "lat": 40.7904199, "lon": -73.9513022 }, + { "lat": 40.7903809, "lon": -73.9513279 }, + { "lat": 40.7903519, "lon": -73.9513526 }, + { "lat": 40.7903370, "lon": -73.9514154 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 849041120, + "bounds": { + "minlat": 40.7901735, + "minlon": -73.9515310, + "maxlat": 40.7903370, + "maxlon": -73.9514154 + }, + "nodes": [ + 7921537500, + 7921537490 + ], + "geometry": [ + { "lat": 40.7903370, "lon": -73.9514154 }, + { "lat": 40.7901735, "lon": -73.9515310 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 849041121, + "bounds": { + "minlat": 40.7897386, + "minlon": -73.9541677, + "maxlat": 40.7898112, + "maxlon": -73.9539920 + }, + "nodes": [ + 7921537517, + 7921537501 + ], + "geometry": [ + { "lat": 40.7898112, "lon": -73.9541677 }, + { "lat": 40.7897386, "lon": -73.9539920 } + ], + "tags": { + "highway": "service", + "level": "0", + "maxheight:signed": "no", + "surface": "concrete", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 849041122, + "bounds": { + "minlat": 40.7904162, + "minlon": -73.9518390, + "maxlat": 40.7904352, + "maxlon": -73.9516610 + }, + "nodes": [ + 42438963, + 6254630519, + 7921537510 + ], + "geometry": [ + { "lat": 40.7904162, "lon": -73.9518390 }, + { "lat": 40.7904329, "lon": -73.9516830 }, + { "lat": 40.7904352, "lon": -73.9516610 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 849041123, + "bounds": { + "minlat": 40.7895826, + "minlon": -73.9538493, + "maxlat": 40.7902594, + "maxlon": -73.9533751 + }, + "nodes": [ + 42456336, + 7921509483, + 7921537514 + ], + "geometry": [ + { "lat": 40.7902594, "lon": -73.9533751 }, + { "lat": 40.7896581, "lon": -73.9537970 }, + { "lat": 40.7895826, "lon": -73.9538493 } + ], + "tags": { + "highway": "service", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 849046446, + "bounds": { + "minlat": 40.7890141, + "minlon": -73.9512974, + "maxlat": 40.7891687, + "maxlon": -73.9509197 + }, + "nodes": [ + 7921574439, + 8814601112, + 7921579517 + ], + "geometry": [ + { "lat": 40.7890141, "lon": -73.9509197 }, + { "lat": 40.7890464, "lon": -73.9509984 }, + { "lat": 40.7891687, "lon": -73.9512974 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 849054793, + "bounds": { + "minlat": 40.8609982, + "minlon": -73.9687634, + "maxlat": 40.8611700, + "maxlon": -73.9679493 + }, + "nodes": [ + 7301162514, + 76463551, + 7921644084, + 7921644065, + 76463550, + 7921643403, + 7921614875, + 103132964 + ], + "geometry": [ + { "lat": 40.8609982, "lon": -73.9687634 }, + { "lat": 40.8610313, "lon": -73.9686291 }, + { "lat": 40.8610650, "lon": -73.9684827 }, + { "lat": 40.8610878, "lon": -73.9683777 }, + { "lat": 40.8611114, "lon": -73.9682650 }, + { "lat": 40.8611343, "lon": -73.9681479 }, + { "lat": 40.8611520, "lon": -73.9680501 }, + { "lat": 40.8611700, "lon": -73.9679493 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 849054794, + "bounds": { + "minlat": 40.8605965, + "minlon": -73.9700735, + "maxlat": 40.8612974, + "maxlon": -73.9678596 + }, + "nodes": [ + 7921614880, + 7921620735, + 7921620736, + 7921620738, + 7921620739, + 7921620740, + 13324698247, + 7921620747, + 7921620731, + 7921620746, + 7921620741, + 7921620734, + 7921620733, + 7921620732, + 7921620742, + 7921614883, + 4204820389 + ], + "geometry": [ + { "lat": 40.8612974, "lon": -73.9678596 }, + { "lat": 40.8612624, "lon": -73.9680641 }, + { "lat": 40.8612328, "lon": -73.9682359 }, + { "lat": 40.8612009, "lon": -73.9683964 }, + { "lat": 40.8611717, "lon": -73.9685352 }, + { "lat": 40.8611401, "lon": -73.9686718 }, + { "lat": 40.8611213, "lon": -73.9687458 }, + { "lat": 40.8611041, "lon": -73.9688135 }, + { "lat": 40.8610639, "lon": -73.9689544 }, + { "lat": 40.8610225, "lon": -73.9690864 }, + { "lat": 40.8609793, "lon": -73.9692200 }, + { "lat": 40.8609339, "lon": -73.9693553 }, + { "lat": 40.8608867, "lon": -73.9694889 }, + { "lat": 40.8608385, "lon": -73.9696157 }, + { "lat": 40.8607858, "lon": -73.9697476 }, + { "lat": 40.8607345, "lon": -73.9698754 }, + { "lat": 40.8605965, "lon": -73.9700735 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 849061074, + "bounds": { + "minlat": 40.7925013, + "minlon": -73.9506403, + "maxlat": 40.7926322, + "maxlon": -73.9503227 + }, + "nodes": [ + 7921696721, + 7921716057, + 4969058009, + 7921696717 + ], + "geometry": [ + { "lat": 40.7925013, "lon": -73.9503227 }, + { "lat": 40.7925459, "lon": -73.9504351 }, + { "lat": 40.7925511, "lon": -73.9504475 }, + { "lat": 40.7926322, "lon": -73.9506403 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 849082303, + "bounds": { + "minlat": 40.7233410, + "minlon": -73.9340271, + "maxlat": 40.7234043, + "maxlon": -73.9339988 + }, + "nodes": [ + 7921873207, + 42505675 + ], + "geometry": [ + { "lat": 40.7233410, "lon": -73.9339988 }, + { "lat": 40.7234043, "lon": -73.9340271 } + ], + "tags": { + "highway": "residential", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637" + } +}, +{ + "type": "way", + "id": 849082304, + "bounds": { + "minlat": 40.7181271, + "minlon": -73.9339988, + "maxlat": 40.7233410, + "maxlon": -73.9316634 + }, + "nodes": [ + 7921873208, + 10689773930, + 6348483246, + 8281116505, + 7921873207 + ], + "geometry": [ + { "lat": 40.7181271, "lon": -73.9316634 }, + { "lat": 40.7188401, "lon": -73.9319832 }, + { "lat": 40.7202133, "lon": -73.9326000 }, + { "lat": 40.7208381, "lon": -73.9328794 }, + { "lat": 40.7233410, "lon": -73.9339988 } + ], + "tags": { + "access": "no", + "highway": "service", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637" + } +}, +{ + "type": "way", + "id": 849083091, + "bounds": { + "minlat": 40.7040119, + "minlon": -73.9328245, + "maxlat": 40.7042381, + "maxlon": -73.9314257 + }, + "nodes": [ + 7921931277, + 7625582424, + 7921931278 + ], + "geometry": [ + { "lat": 40.7040119, "lon": -73.9328245 }, + { "lat": 40.7042193, "lon": -73.9315418 }, + { "lat": 40.7042381, "lon": -73.9314257 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Rock Street" + } +}, +{ + "type": "way", + "id": 849083092, + "bounds": { + "minlat": 40.7042381, + "minlon": -73.9314257, + "maxlat": 40.7042570, + "maxlon": -73.9313090 + }, + "nodes": [ + 7921931278, + 9744012765, + 42490300 + ], + "geometry": [ + { "lat": 40.7042381, "lon": -73.9314257 }, + { "lat": 40.7042423, "lon": -73.9313995 }, + { "lat": 40.7042570, "lon": -73.9313090 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Rock Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rock", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 849220207, + "bounds": { + "minlat": 40.7145490, + "minlon": -73.9576749, + "maxlat": 40.7148029, + "maxlon": -73.9571403 + }, + "nodes": [ + 7923125556, + 9949550243, + 9949550246, + 9785615258, + 9949550247, + 9949550248, + 9949550242, + 9949550241, + 9785615249, + 7923125555, + 9949550238, + 9785615248, + 9949550239, + 9949550240, + 7923125553, + 9785615252, + 9785615255, + 11748669858, + 9949550245, + 7923125556 + ], + "geometry": [ + { "lat": 40.7145737, "lon": -73.9576564 }, + { "lat": 40.7145634, "lon": -73.9576123 }, + { "lat": 40.7145490, "lon": -73.9575503 }, + { "lat": 40.7145791, "lon": -73.9574354 }, + { "lat": 40.7146011, "lon": -73.9573565 }, + { "lat": 40.7146130, "lon": -73.9573461 }, + { "lat": 40.7146486, "lon": -73.9572194 }, + { "lat": 40.7146440, "lon": -73.9571989 }, + { "lat": 40.7146543, "lon": -73.9571685 }, + { "lat": 40.7146604, "lon": -73.9571484 }, + { "lat": 40.7146791, "lon": -73.9571403 }, + { "lat": 40.7147104, "lon": -73.9571919 }, + { "lat": 40.7147218, "lon": -73.9572100 }, + { "lat": 40.7147267, "lon": -73.9572491 }, + { "lat": 40.7148029, "lon": -73.9573762 }, + { "lat": 40.7147914, "lon": -73.9573907 }, + { "lat": 40.7145962, "lon": -73.9575811 }, + { "lat": 40.7146210, "lon": -73.9576749 }, + { "lat": 40.7145960, "lon": -73.9576666 }, + { "lat": 40.7145737, "lon": -73.9576564 } + ], + "tags": { + "area": "yes", + "ele": "8", + "gnis:feature_id": "2097566", + "highway": "pedestrian", + "leisure": "park", + "name": "Conners Square", + "wikidata": "Q34819595" + } +}, +{ + "type": "way", + "id": 849307010, + "bounds": { + "minlat": 40.7880051, + "minlon": -73.9492238, + "maxlat": 40.7882058, + "maxlon": -73.9487520 + }, + "nodes": [ + 7923889519, + 7923889503, + 7923889494 + ], + "geometry": [ + { "lat": 40.7882058, "lon": -73.9492238 }, + { "lat": 40.7881688, "lon": -73.9491385 }, + { "lat": 40.7880051, "lon": -73.9487520 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 849353565, + "bounds": { + "minlat": 40.7935442, + "minlon": -73.9329838, + "maxlat": 40.7946374, + "maxlon": -73.9321707 + }, + "nodes": [ + 7924346625, + 7924346976, + 7925258799, + 7925258950, + 7925258593, + 7924346965 + ], + "geometry": [ + { "lat": 40.7946374, "lon": -73.9321707 }, + { "lat": 40.7945498, "lon": -73.9322363 }, + { "lat": 40.7943796, "lon": -73.9323628 }, + { "lat": 40.7942491, "lon": -73.9324598 }, + { "lat": 40.7936893, "lon": -73.9328729 }, + { "lat": 40.7935442, "lon": -73.9329838 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 849374061, + "bounds": { + "minlat": 40.8633490, + "minlon": -73.9952683, + "maxlat": 40.8638989, + "maxlon": -73.9948541 + }, + "nodes": [ + 103229114, + 103229117, + 5767726831, + 5767726832, + 103229120, + 5767726829, + 5767726830, + 9427526785, + 103229124 + ], + "geometry": [ + { "lat": 40.8633490, "lon": -73.9952683 }, + { "lat": 40.8633853, "lon": -73.9950987 }, + { "lat": 40.8634131, "lon": -73.9950123 }, + { "lat": 40.8634461, "lon": -73.9949452 }, + { "lat": 40.8635136, "lon": -73.9948699 }, + { "lat": 40.8635887, "lon": -73.9948579 }, + { "lat": 40.8636761, "lon": -73.9948541 }, + { "lat": 40.8638051, "lon": -73.9948597 }, + { "lat": 40.8638989, "lon": -73.9948890 } + ], + "tags": { + "highway": "residential", + "name": "Station Parkway", + "oneway": "yes", + "sidewalk": "no", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Station", + "tiger:name_type": "Pky", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 849465506, + "bounds": { + "minlat": 40.7942140, + "minlon": -73.9323628, + "maxlat": 40.7943796, + "maxlon": -73.9319944 + }, + "nodes": [ + 7925258799, + 7925259044 + ], + "geometry": [ + { "lat": 40.7943796, "lon": -73.9323628 }, + { "lat": 40.7942140, "lon": -73.9319944 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 849465507, + "bounds": { + "minlat": 40.7989499, + "minlon": -73.9302893, + "maxlat": 40.7990276, + "maxlon": -73.9299371 + }, + "nodes": [ + 7925258999, + 7925258840, + 7925258779 + ], + "geometry": [ + { "lat": 40.7990276, "lon": -73.9299371 }, + { "lat": 40.7990098, "lon": -73.9300264 }, + { "lat": 40.7989499, "lon": -73.9302893 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 849465520, + "bounds": { + "minlat": 40.7998793, + "minlon": -73.9305071, + "maxlat": 40.7999588, + "maxlon": -73.9303623 + }, + "nodes": [ + 7472058114, + 7925259042, + 7925259014 + ], + "geometry": [ + { "lat": 40.7998793, "lon": -73.9305071 }, + { "lat": 40.7999209, "lon": -73.9304295 }, + { "lat": 40.7999588, "lon": -73.9303623 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 849465567, + "bounds": { + "minlat": 40.7965357, + "minlon": -73.9306667, + "maxlat": 40.7967616, + "maxlon": -73.9304923 + }, + "nodes": [ + 7925258964, + 13327581276, + 7925143982 + ], + "geometry": [ + { "lat": 40.7965357, "lon": -73.9306667 }, + { "lat": 40.7965721, "lon": -73.9306386 }, + { "lat": 40.7967616, "lon": -73.9304923 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 849631922, + "bounds": { + "minlat": 40.8009701, + "minlon": -73.9331973, + "maxlat": 40.8015633, + "maxlon": -73.9317759 + }, + "nodes": [ + 9490559521, + 7925258804, + 4567359416, + 7472058123 + ], + "geometry": [ + { "lat": 40.8009701, "lon": -73.9317759 }, + { "lat": 40.8010289, "lon": -73.9319277 }, + { "lat": 40.8014895, "lon": -73.9330213 }, + { "lat": 40.8015633, "lon": -73.9331973 } + ], + "tags": { + "destination": "RFK Bridge", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 124th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 849631945, + "bounds": { + "minlat": 40.8017651, + "minlon": -73.9313894, + "maxlat": 40.8018365, + "maxlon": -73.9312131 + }, + "nodes": [ + 371239962, + 7929465199, + 7641820943 + ], + "geometry": [ + { "lat": 40.8018365, "lon": -73.9313894 }, + { "lat": 40.8018165, "lon": -73.9313270 }, + { "lat": 40.8017651, "lon": -73.9312131 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 849631951, + "bounds": { + "minlat": 40.7994809, + "minlon": -73.9357143, + "maxlat": 40.7998190, + "maxlon": -73.9354670 + }, + "nodes": [ + 3931524258, + 13239438856, + 7927319015, + 3931524261 + ], + "geometry": [ + { "lat": 40.7998190, "lon": -73.9354670 }, + { "lat": 40.7996171, "lon": -73.9356203 }, + { "lat": 40.7995672, "lon": -73.9356581 }, + { "lat": 40.7994809, "lon": -73.9357143 } + ], + "tags": { + "alt_name:ko": "2번가", + "highway": "residential", + "lanes": "1", + "name": "2nd Avenue", + "name:ko": "세컨드 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "turn:lanes": "left", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 849631957, + "bounds": { + "minlat": 40.7997499, + "minlon": -73.9357695, + "maxlat": 40.8008201, + "maxlon": -73.9349913 + }, + "nodes": [ + 42443099, + 7927319044, + 592002469, + 7927319059, + 42443096, + 7927318987, + 4207669597 + ], + "geometry": [ + { "lat": 40.8008201, "lon": -73.9349913 }, + { "lat": 40.8007661, "lon": -73.9350315 }, + { "lat": 40.8004120, "lon": -73.9352900 }, + { "lat": 40.8002570, "lon": -73.9353981 }, + { "lat": 40.8001963, "lon": -73.9354447 }, + { "lat": 40.8001361, "lon": -73.9354902 }, + { "lat": 40.7997499, "lon": -73.9357695 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "turn:lanes": "through|through|none|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 849631959, + "bounds": { + "minlat": 40.7985686, + "minlon": -73.9359116, + "maxlat": 40.7995598, + "maxlon": -73.9335312 + }, + "nodes": [ + 42443092, + 6175905222, + 7927318997, + 3931524261, + 7926756775, + 6216349373, + 42443824 + ], + "geometry": [ + { "lat": 40.7995598, "lon": -73.9359116 }, + { "lat": 40.7995207, "lon": -73.9358162 }, + { "lat": 40.7995081, "lon": -73.9357825 }, + { "lat": 40.7994809, "lon": -73.9357143 }, + { "lat": 40.7986268, "lon": -73.9336695 }, + { "lat": 40.7986134, "lon": -73.9336392 }, + { "lat": 40.7985686, "lon": -73.9335312 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "East 120th Street", + "name:ru": "Восточная 120-я стрит", + "name_1": "East 120 Street", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 849666019, + "bounds": { + "minlat": 40.7980486, + "minlon": -73.9322703, + "maxlat": 40.7983951, + "maxlon": -73.9320076 + }, + "nodes": [ + 7927125637, + 9166170272, + 7927112148, + 7927125675 + ], + "geometry": [ + { "lat": 40.7980486, "lon": -73.9322703 }, + { "lat": 40.7980949, "lon": -73.9322364 }, + { "lat": 40.7981144, "lon": -73.9322219 }, + { "lat": 40.7983951, "lon": -73.9320076 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 849666046, + "bounds": { + "minlat": 40.7983951, + "minlon": -73.9325981, + "maxlat": 40.7986938, + "maxlon": -73.9320061 + }, + "nodes": [ + 7927125675, + 7927112138, + 7927125638, + 7927125753, + 7927125626, + 7927125699 + ], + "geometry": [ + { "lat": 40.7983951, "lon": -73.9320076 }, + { "lat": 40.7984338, "lon": -73.9320946 }, + { "lat": 40.7985498, "lon": -73.9320061 }, + { "lat": 40.7986938, "lon": -73.9323402 }, + { "lat": 40.7985447, "lon": -73.9324541 }, + { "lat": 40.7986070, "lon": -73.9325981 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 849683595, + "bounds": { + "minlat": 40.7993869, + "minlon": -73.9339471, + "maxlat": 40.7996900, + "maxlon": -73.9330730 + }, + "nodes": [ + 7472058137, + 13239384173, + 7927319031, + 12456474171, + 7927319022, + 7927319053, + 7927319038, + 7927319019, + 7927319007, + 7927319020 + ], + "geometry": [ + { "lat": 40.7993869, "lon": -73.9330730 }, + { "lat": 40.7993913, "lon": -73.9330974 }, + { "lat": 40.7994036, "lon": -73.9331650 }, + { "lat": 40.7995106, "lon": -73.9334219 }, + { "lat": 40.7995409, "lon": -73.9334946 }, + { "lat": 40.7994672, "lon": -73.9335465 }, + { "lat": 40.7994240, "lon": -73.9336335 }, + { "lat": 40.7994884, "lon": -73.9337842 }, + { "lat": 40.7995606, "lon": -73.9339471 }, + { "lat": 40.7996900, "lon": -73.9338468 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 849683599, + "bounds": { + "minlat": 40.7994884, + "minlon": -73.9337842, + "maxlat": 40.7996154, + "maxlon": -73.9336878 + }, + "nodes": [ + 7927319019, + 7927319047 + ], + "geometry": [ + { "lat": 40.7994884, "lon": -73.9337842 }, + { "lat": 40.7996154, "lon": -73.9336878 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 849686713, + "bounds": { + "minlat": 40.8781687, + "minlon": -73.9094176, + "maxlat": 40.8787930, + "maxlon": -73.9084376 + }, + "nodes": [ + 7927343773, + 7927343774, + 7927343775, + 7927343776, + 7927343777, + 7927343778, + 7230395039 + ], + "geometry": [ + { "lat": 40.8787930, "lon": -73.9092424 }, + { "lat": 40.8783391, "lon": -73.9084456 }, + { "lat": 40.8783046, "lon": -73.9084376 }, + { "lat": 40.8781728, "lon": -73.9085771 }, + { "lat": 40.8781687, "lon": -73.9086119 }, + { "lat": 40.8785642, "lon": -73.9093120 }, + { "lat": 40.8786933, "lon": -73.9094176 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 849711172, + "bounds": { + "minlat": 40.8127772, + "minlon": -74.0021736, + "maxlat": 40.8131049, + "maxlon": -74.0020477 + }, + "nodes": [ + 7927581289, + 7927581293, + 7927581292, + 7927581290, + 7927581291 + ], + "geometry": [ + { "lat": 40.8127772, "lon": -74.0020477 }, + { "lat": 40.8129601, "lon": -74.0021070 }, + { "lat": 40.8129836, "lon": -74.0021169 }, + { "lat": 40.8130350, "lon": -74.0021633 }, + { "lat": 40.8131049, "lon": -74.0021736 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 849729828, + "bounds": { + "minlat": 40.8687003, + "minlon": -73.9914345, + "maxlat": 40.8690636, + "maxlon": -73.9903882 + }, + "nodes": [ + 7927769083, + 10243813004, + 7927769084, + 7927785489, + 7927785486, + 7927785487 + ], + "geometry": [ + { "lat": 40.8688402, "lon": -73.9903882 }, + { "lat": 40.8687892, "lon": -73.9904178 }, + { "lat": 40.8687003, "lon": -73.9904693 }, + { "lat": 40.8688937, "lon": -73.9909911 }, + { "lat": 40.8689520, "lon": -73.9911537 }, + { "lat": 40.8690636, "lon": -73.9914345 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 849729829, + "bounds": { + "minlat": 40.8688937, + "minlon": -73.9909911, + "maxlat": 40.8690415, + "maxlon": -73.9908919 + }, + "nodes": [ + 7927785488, + 10243813003, + 7927785489 + ], + "geometry": [ + { "lat": 40.8690415, "lon": -73.9908919 }, + { "lat": 40.8689801, "lon": -73.9909331 }, + { "lat": 40.8688937, "lon": -73.9909911 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 849729830, + "bounds": { + "minlat": 40.8681441, + "minlon": -73.9919972, + "maxlat": 40.8687235, + "maxlon": -73.9904693 + }, + "nodes": [ + 7927785490, + 7927785491, + 7927785492, + 7927785493, + 7927785494, + 10243813013, + 7927785495, + 7927785496, + 7927785497, + 7927785498, + 10243813011, + 7927769084 + ], + "geometry": [ + { "lat": 40.8687235, "lon": -73.9919972 }, + { "lat": 40.8686292, "lon": -73.9918346 }, + { "lat": 40.8685484, "lon": -73.9916872 }, + { "lat": 40.8684323, "lon": -73.9914711 }, + { "lat": 40.8682479, "lon": -73.9911032 }, + { "lat": 40.8682091, "lon": -73.9910363 }, + { "lat": 40.8681618, "lon": -73.9909472 }, + { "lat": 40.8681441, "lon": -73.9908827 }, + { "lat": 40.8681535, "lon": -73.9908326 }, + { "lat": 40.8681846, "lon": -73.9907996 }, + { "lat": 40.8685743, "lon": -73.9905407 }, + { "lat": 40.8687003, "lon": -73.9904693 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 849729831, + "bounds": { + "minlat": 40.8688661, + "minlon": -73.9909320, + "maxlat": 40.8692010, + "maxlon": -73.9903609 + }, + "nodes": [ + 7927785501, + 7927785502, + 7927785504, + 7927785505 + ], + "geometry": [ + { "lat": 40.8690573, "lon": -73.9909320 }, + { "lat": 40.8692010, "lon": -73.9908378 }, + { "lat": 40.8690150, "lon": -73.9903609 }, + { "lat": 40.8688661, "lon": -73.9904461 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 849729832, + "bounds": { + "minlat": 40.8688111, + "minlon": -73.9907470, + "maxlat": 40.8706054, + "maxlon": -73.9894478 + }, + "nodes": [ + 7927785506, + 7927785507, + 7927785508, + 7927785509, + 7927785510, + 7927785511, + 10243812753, + 7927785512, + 7927785513, + 7927785514, + 7927785515 + ], + "geometry": [ + { "lat": 40.8688111, "lon": -73.9902966 }, + { "lat": 40.8689957, "lon": -73.9901720 }, + { "lat": 40.8692419, "lon": -73.9900063 }, + { "lat": 40.8695547, "lon": -73.9897989 }, + { "lat": 40.8697786, "lon": -73.9896471 }, + { "lat": 40.8700567, "lon": -73.9894549 }, + { "lat": 40.8700964, "lon": -73.9894478 }, + { "lat": 40.8701183, "lon": -73.9894823 }, + { "lat": 40.8701472, "lon": -73.9895619 }, + { "lat": 40.8702955, "lon": -73.9899742 }, + { "lat": 40.8706054, "lon": -73.9907470 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 849735966, + "bounds": { + "minlat": 40.8262581, + "minlon": -74.0064848, + "maxlat": 40.8274955, + "maxlon": -74.0055159 + }, + "nodes": [ + 7927830052, + 7927830059, + 7927830053, + 7927830054, + 7927830058, + 7927830055, + 7927830056 + ], + "geometry": [ + { "lat": 40.8274955, "lon": -74.0055159 }, + { "lat": 40.8270641, "lon": -74.0058043 }, + { "lat": 40.8268576, "lon": -74.0059423 }, + { "lat": 40.8265776, "lon": -74.0061709 }, + { "lat": 40.8265731, "lon": -74.0061750 }, + { "lat": 40.8263211, "lon": -74.0064053 }, + { "lat": 40.8262581, "lon": -74.0064848 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 849735967, + "bounds": { + "minlat": 40.8265731, + "minlon": -74.0064987, + "maxlat": 40.8267277, + "maxlon": -74.0061750 + }, + "nodes": [ + 7927830057, + 7927830058 + ], + "geometry": [ + { "lat": 40.8267277, "lon": -74.0064987 }, + { "lat": 40.8265731, "lon": -74.0061750 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 849735968, + "bounds": { + "minlat": 40.8270641, + "minlon": -74.0061290, + "maxlat": 40.8271895, + "maxlon": -74.0058043 + }, + "nodes": [ + 7927830059, + 7927830060 + ], + "geometry": [ + { "lat": 40.8270641, "lon": -74.0058043 }, + { "lat": 40.8271895, "lon": -74.0061290 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 849932066, + "bounds": { + "minlat": 40.8538852, + "minlon": -73.9703435, + "maxlat": 40.8553196, + "maxlon": -73.9642840 + }, + "nodes": [ + 60811508, + 13756544995, + 13756554503, + 13756544994, + 13756554504, + 13756544993, + 13756554505, + 13756544992, + 13756544991, + 13756544990, + 13756544989, + 13756544988, + 13756544987, + 13756544986, + 13756544985, + 13756544984, + 13756544983, + 13756544982, + 13756544981, + 13756544980, + 7929373127, + 13754077728 + ], + "geometry": [ + { "lat": 40.8553196, "lon": -73.9703435 }, + { "lat": 40.8552470, "lon": -73.9701605 }, + { "lat": 40.8551708, "lon": -73.9699654 }, + { "lat": 40.8551076, "lon": -73.9697970 }, + { "lat": 40.8550572, "lon": -73.9696612 }, + { "lat": 40.8550273, "lon": -73.9695795 }, + { "lat": 40.8550008, "lon": -73.9695059 }, + { "lat": 40.8549780, "lon": -73.9694400 }, + { "lat": 40.8549235, "lon": -73.9692809 }, + { "lat": 40.8548696, "lon": -73.9691143 }, + { "lat": 40.8548404, "lon": -73.9690222 }, + { "lat": 40.8547979, "lon": -73.9688818 }, + { "lat": 40.8547615, "lon": -73.9687611 }, + { "lat": 40.8547443, "lon": -73.9687010 }, + { "lat": 40.8547201, "lon": -73.9686168 }, + { "lat": 40.8546947, "lon": -73.9685234 }, + { "lat": 40.8546719, "lon": -73.9684375 }, + { "lat": 40.8546530, "lon": -73.9683614 }, + { "lat": 40.8546328, "lon": -73.9682796 }, + { "lat": 40.8546105, "lon": -73.9681821 }, + { "lat": 40.8545875, "lon": -73.9680731 }, + { "lat": 40.8538852, "lon": -73.9642840 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 849939329, + "bounds": { + "minlat": 40.8533598, + "minlon": -73.9649614, + "maxlat": 40.8536950, + "maxlon": -73.9626656 + }, + "nodes": [ + 76464398, + 298787677, + 76464397, + 3257513408, + 3257513406, + 3257513402, + 7921969695, + 7921969710, + 76464395, + 7921969720, + 76464394, + 7921969704, + 12072538017, + 7921969729, + 7921969714, + 298792357 + ], + "geometry": [ + { "lat": 40.8536950, "lon": -73.9649614 }, + { "lat": 40.8536834, "lon": -73.9648578 }, + { "lat": 40.8536608, "lon": -73.9646974 }, + { "lat": 40.8536369, "lon": -73.9645593 }, + { "lat": 40.8536114, "lon": -73.9644244 }, + { "lat": 40.8535819, "lon": -73.9642774 }, + { "lat": 40.8535214, "lon": -73.9639744 }, + { "lat": 40.8534651, "lon": -73.9636769 }, + { "lat": 40.8534207, "lon": -73.9634296 }, + { "lat": 40.8534000, "lon": -73.9632971 }, + { "lat": 40.8533819, "lon": -73.9631511 }, + { "lat": 40.8533692, "lon": -73.9630058 }, + { "lat": 40.8533648, "lon": -73.9629359 }, + { "lat": 40.8533626, "lon": -73.9628691 }, + { "lat": 40.8533598, "lon": -73.9627141 }, + { "lat": 40.8533600, "lon": -73.9626656 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "toll": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 849939330, + "bounds": { + "minlat": 40.8538565, + "minlon": -73.9691054, + "maxlat": 40.8538922, + "maxlon": -73.9690149 + }, + "nodes": [ + 7929428516, + 4204781080 + ], + "geometry": [ + { "lat": 40.8538922, "lon": -73.9691054 }, + { "lat": 40.8538565, "lon": -73.9690149 } + ], + "tags": { + "highway": "primary", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 849939331, + "bounds": { + "minlat": 40.8536950, + "minlon": -73.9652695, + "maxlat": 40.8537190, + "maxlon": -73.9649614 + }, + "nodes": [ + 7921969725, + 76464398 + ], + "geometry": [ + { "lat": 40.8537190, "lon": -73.9652695 }, + { "lat": 40.8536950, "lon": -73.9649614 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "toll": "yes", + "tunnel": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 849939332, + "bounds": { + "minlat": 40.8538922, + "minlon": -73.9692563, + "maxlat": 40.8539517, + "maxlon": -73.9691054 + }, + "nodes": [ + 7929428517, + 7929428516 + ], + "geometry": [ + { "lat": 40.8539517, "lon": -73.9692563 }, + { "lat": 40.8538922, "lon": -73.9691054 } + ], + "tags": { + "bridge": "yes", + "highway": "primary", + "layer": "1", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 849942501, + "bounds": { + "minlat": 40.8036922, + "minlon": -73.9334629, + "maxlat": 40.8041473, + "maxlon": -73.9328383 + }, + "nodes": [ + 7929465218, + 10170641431, + 7929465196, + 7929338384, + 7929465217, + 7929465213, + 7929465203 + ], + "geometry": [ + { "lat": 40.8041443, "lon": -73.9328383 }, + { "lat": 40.8040903, "lon": -73.9328785 }, + { "lat": 40.8040456, "lon": -73.9329118 }, + { "lat": 40.8040416, "lon": -73.9329746 }, + { "lat": 40.8036922, "lon": -73.9332373 }, + { "lat": 40.8037905, "lon": -73.9334629 }, + { "lat": 40.8041473, "lon": -73.9331947 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 849942504, + "bounds": { + "minlat": 40.8018365, + "minlon": -73.9313894, + "maxlat": 40.8025081, + "maxlon": -73.9308738 + }, + "nodes": [ + 42434135, + 12016600352, + 11805832616, + 11805832617, + 371239962 + ], + "geometry": [ + { "lat": 40.8025081, "lon": -73.9308738 }, + { "lat": 40.8022928, "lon": -73.9310391 }, + { "lat": 40.8019741, "lon": -73.9312838 }, + { "lat": 40.8019335, "lon": -73.9313160 }, + { "lat": 40.8018365, "lon": -73.9313894 } + ], + "tags": { + "alt_name:ko": "1번가", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 849942510, + "bounds": { + "minlat": 40.7124807, + "minlon": -73.9924061, + "maxlat": 40.7133571, + "maxlon": -73.9922797 + }, + "nodes": [ + 6330018917, + 8279851244, + 8279851232, + 42435922, + 8279851233, + 9505971542 + ], + "geometry": [ + { "lat": 40.7124807, "lon": -73.9922797 }, + { "lat": 40.7125618, "lon": -73.9922891 }, + { "lat": 40.7131340, "lon": -73.9923733 }, + { "lat": 40.7131929, "lon": -73.9923825 }, + { "lat": 40.7132657, "lon": -73.9923927 }, + { "lat": 40.7133571, "lon": -73.9924061 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 849945032, + "bounds": { + "minlat": 40.7909891, + "minlon": -73.9403701, + "maxlat": 40.7913210, + "maxlon": -73.9401154 + }, + "nodes": [ + 7929477356, + 7929477337, + 7929477360 + ], + "geometry": [ + { "lat": 40.7913210, "lon": -73.9401154 }, + { "lat": 40.7912455, "lon": -73.9401733 }, + { "lat": 40.7909891, "lon": -73.9403701 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 849951091, + "bounds": { + "minlat": 40.8541864, + "minlon": -73.9710944, + "maxlat": 40.8552675, + "maxlon": -73.9683667 + }, + "nodes": [ + 76464407, + 13772777183, + 13772854391, + 13772777182, + 13772854390, + 13772777184, + 13772854392, + 13772777181, + 13772777185, + 13772777180, + 13772777186, + 13772777179, + 13772777187, + 7929525283, + 7929525208, + 13768984238, + 7929525217, + 7929525247, + 7929545285, + 13829760861, + 7929548933, + 7929525191, + 7929525199, + 7929525230, + 12410525614 + ], + "geometry": [ + { "lat": 40.8552675, "lon": -73.9710944 }, + { "lat": 40.8551835, "lon": -73.9709743 }, + { "lat": 40.8551443, "lon": -73.9709170 }, + { "lat": 40.8551048, "lon": -73.9708579 }, + { "lat": 40.8550682, "lon": -73.9708008 }, + { "lat": 40.8550313, "lon": -73.9707418 }, + { "lat": 40.8549975, "lon": -73.9706849 }, + { "lat": 40.8549696, "lon": -73.9706376 }, + { "lat": 40.8549113, "lon": -73.9705286 }, + { "lat": 40.8548531, "lon": -73.9704196 }, + { "lat": 40.8548095, "lon": -73.9703277 }, + { "lat": 40.8547660, "lon": -73.9702357 }, + { "lat": 40.8547212, "lon": -73.9701288 }, + { "lat": 40.8546717, "lon": -73.9700108 }, + { "lat": 40.8545852, "lon": -73.9697830 }, + { "lat": 40.8545279, "lon": -73.9696219 }, + { "lat": 40.8545065, "lon": -73.9695573 }, + { "lat": 40.8544583, "lon": -73.9694079 }, + { "lat": 40.8544012, "lon": -73.9692266 }, + { "lat": 40.8543728, "lon": -73.9691340 }, + { "lat": 40.8543616, "lon": -73.9690975 }, + { "lat": 40.8543185, "lon": -73.9689522 }, + { "lat": 40.8542789, "lon": -73.9688027 }, + { "lat": 40.8542409, "lon": -73.9686395 }, + { "lat": 40.8541864, "lon": -73.9683667 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "maxheight:signed": "no", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 849951094, + "bounds": { + "minlat": 40.8539393, + "minlon": -73.9678185, + "maxlat": 40.8540683, + "maxlon": -73.9671209 + }, + "nodes": [ + 76464401, + 13772860453, + 3257513418, + 13772860454, + 13772860455, + 530754369 + ], + "geometry": [ + { "lat": 40.8540683, "lon": -73.9678185 }, + { "lat": 40.8540394, "lon": -73.9676784 }, + { "lat": 40.8540173, "lon": -73.9675586 }, + { "lat": 40.8539889, "lon": -73.9674031 }, + { "lat": 40.8539639, "lon": -73.9672634 }, + { "lat": 40.8539393, "lon": -73.9671209 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 849951099, + "bounds": { + "minlat": 40.8534918, + "minlon": -73.9695029, + "maxlat": 40.8543728, + "maxlon": -73.9690854 + }, + "nodes": [ + 4397826851, + 7929525235, + 7929525204, + 7929525240, + 7929525268, + 13620890066, + 13768984237, + 13768984236, + 13829760861 + ], + "geometry": [ + { "lat": 40.8534918, "lon": -73.9695029 }, + { "lat": 40.8534967, "lon": -73.9694786 }, + { "lat": 40.8535059, "lon": -73.9694538 }, + { "lat": 40.8535235, "lon": -73.9694304 }, + { "lat": 40.8535491, "lon": -73.9694150 }, + { "lat": 40.8539854, "lon": -73.9691526 }, + { "lat": 40.8540971, "lon": -73.9690854 }, + { "lat": 40.8541959, "lon": -73.9694036 }, + { "lat": 40.8543728, "lon": -73.9691340 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 849971145, + "bounds": { + "minlat": 40.8534358, + "minlon": -73.9703358, + "maxlat": 40.8537242, + "maxlon": -73.9701551 + }, + "nodes": [ + 4397826858, + 4397826827, + 4397826847 + ], + "geometry": [ + { "lat": 40.8537242, "lon": -73.9701551 }, + { "lat": 40.8535808, "lon": -73.9702450 }, + { "lat": 40.8534358, "lon": -73.9703358 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "maxspeed": "5 mph", + "motor_vehicle": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 849971146, + "bounds": { + "minlat": 40.8532772, + "minlon": -73.9696357, + "maxlat": 40.8534918, + "maxlon": -73.9695029 + }, + "nodes": [ + 7929710562, + 4397826828, + 4397826851 + ], + "geometry": [ + { "lat": 40.8532772, "lon": -73.9696357 }, + { "lat": 40.8533483, "lon": -73.9695918 }, + { "lat": 40.8534918, "lon": -73.9695029 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "maxspeed": "5 mph", + "motor_vehicle": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 849971147, + "bounds": { + "minlat": 40.8534918, + "minlon": -73.9701551, + "maxlat": 40.8537242, + "maxlon": -73.9695029 + }, + "nodes": [ + 4397826851, + 4397826858 + ], + "geometry": [ + { "lat": 40.8534918, "lon": -73.9695029 }, + { "lat": 40.8537242, "lon": -73.9701551 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "maxspeed": "5 mph", + "motor_vehicle": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 849971148, + "bounds": { + "minlat": 40.8532323, + "minlon": -73.9697730, + "maxlat": 40.8532772, + "maxlon": -73.9696357 + }, + "nodes": [ + 4397826857, + 7929710561, + 7929710567, + 7929710564, + 7929710566, + 7929710563, + 7929710562 + ], + "geometry": [ + { "lat": 40.8532357, "lon": -73.9697730 }, + { "lat": 40.8532323, "lon": -73.9697525 }, + { "lat": 40.8532325, "lon": -73.9697287 }, + { "lat": 40.8532350, "lon": -73.9697037 }, + { "lat": 40.8532424, "lon": -73.9696764 }, + { "lat": 40.8532577, "lon": -73.9696540 }, + { "lat": 40.8532772, "lon": -73.9696357 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "maxspeed": "5 mph", + "motor_vehicle": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 849974884, + "bounds": { + "minlat": 40.8080645, + "minlon": -73.9639884, + "maxlat": 40.8093630, + "maxlon": -73.9630374 + }, + "nodes": [ + 6223571523, + 11851500962, + 6223571526, + 5895455151, + 7004416694, + 470209120 + ], + "geometry": [ + { "lat": 40.8093630, "lon": -73.9630374 }, + { "lat": 40.8093013, "lon": -73.9630826 }, + { "lat": 40.8089427, "lon": -73.9633452 }, + { "lat": 40.8088905, "lon": -73.9633835 }, + { "lat": 40.8081592, "lon": -73.9639191 }, + { "lat": 40.8080645, "lon": -73.9639884 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 849974885, + "bounds": { + "minlat": 40.8092888, + "minlon": -73.9628599, + "maxlat": 40.8099318, + "maxlon": -73.9623955 + }, + "nodes": [ + 6223571524, + 10169289744, + 11851500954, + 6223571522 + ], + "geometry": [ + { "lat": 40.8092888, "lon": -73.9628599 }, + { "lat": 40.8093426, "lon": -73.9628211 }, + { "lat": 40.8098684, "lon": -73.9624413 }, + { "lat": 40.8099318, "lon": -73.9623955 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 850040104, + "bounds": { + "minlat": 40.8610283, + "minlon": -73.9756208, + "maxlat": 40.8635832, + "maxlon": -73.9748978 + }, + "nodes": [ + 76464921, + 7373684931, + 299124879, + 10020669544, + 10020669547, + 7373684928, + 7936445114, + 13754077759, + 76464924 + ], + "geometry": [ + { "lat": 40.8635832, "lon": -73.9748978 }, + { "lat": 40.8634679, "lon": -73.9749315 }, + { "lat": 40.8631825, "lon": -73.9750148 }, + { "lat": 40.8630536, "lon": -73.9750524 }, + { "lat": 40.8629093, "lon": -73.9750945 }, + { "lat": 40.8625773, "lon": -73.9751878 }, + { "lat": 40.8614486, "lon": -73.9755045 }, + { "lat": 40.8612764, "lon": -73.9755521 }, + { "lat": 40.8610283, "lon": -73.9756208 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "2", + "maxspeed": "50 mph", + "name": "Mackay Highway", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 850046396, + "bounds": { + "minlat": 40.8534943, + "minlon": -73.9669664, + "maxlat": 40.8537068, + "maxlon": -73.9649521 + }, + "nodes": [ + 3257513396, + 3257513397, + 3257513400, + 3257513401, + 7930629693, + 3257513404, + 940924865, + 103104423, + 7046240927, + 298788114 + ], + "geometry": [ + { "lat": 40.8534943, "lon": -73.9649521 }, + { "lat": 40.8535080, "lon": -73.9649644 }, + { "lat": 40.8535211, "lon": -73.9649808 }, + { "lat": 40.8535323, "lon": -73.9649996 }, + { "lat": 40.8535416, "lon": -73.9650196 }, + { "lat": 40.8535487, "lon": -73.9650408 }, + { "lat": 40.8535541, "lon": -73.9650682 }, + { "lat": 40.8536448, "lon": -73.9659738 }, + { "lat": 40.8536935, "lon": -73.9664603 }, + { "lat": 40.8537068, "lon": -73.9669664 } + ], + "tags": { + "highway": "service", + "name": "Spruce Street" + } +}, +{ + "type": "way", + "id": 850046397, + "bounds": { + "minlat": 40.8528791, + "minlon": -73.9651981, + "maxlat": 40.8534943, + "maxlon": -73.9649298 + }, + "nodes": [ + 940924864, + 7045784795, + 7463681566, + 103154301, + 3257513388, + 3257513391, + 3257513392, + 103154305, + 3257513396 + ], + "geometry": [ + { "lat": 40.8528791, "lon": -73.9651981 }, + { "lat": 40.8531842, "lon": -73.9650451 }, + { "lat": 40.8532436, "lon": -73.9650154 }, + { "lat": 40.8533990, "lon": -73.9649374 }, + { "lat": 40.8534181, "lon": -73.9649312 }, + { "lat": 40.8534385, "lon": -73.9649298 }, + { "lat": 40.8534577, "lon": -73.9649327 }, + { "lat": 40.8534782, "lon": -73.9649417 }, + { "lat": 40.8534943, "lon": -73.9649521 } + ], + "tags": { + "highway": "service", + "name": "Central Road" + } +}, +{ + "type": "way", + "id": 850047991, + "bounds": { + "minlat": 40.8501898, + "minlon": -73.9677770, + "maxlat": 40.8508791, + "maxlon": -73.9674882 + }, + "nodes": [ + 103134229, + 5330468357, + 8150030337, + 103134231 + ], + "geometry": [ + { "lat": 40.8501898, "lon": -73.9677770 }, + { "lat": 40.8504730, "lon": -73.9676538 }, + { "lat": 40.8507672, "lon": -73.9675338 }, + { "lat": 40.8508791, "lon": -73.9674882 } + ], + "tags": { + "highway": "residential", + "name": "Parker Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Parker", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 850049000, + "bounds": { + "minlat": 40.8468557, + "minlon": -73.9706824, + "maxlat": 40.8509760, + "maxlon": -73.9683598 + }, + "nodes": [ + 660546073, + 103235780, + 103235781, + 103235782, + 5449302884, + 103235784, + 7483134210, + 103235785, + 8417378284, + 103235786, + 8417378289, + 103235787, + 5750610017, + 13523674097, + 7930656821, + 5750613521, + 6894763522, + 8219377497, + 7634571967, + 2269661150, + 5362413919, + 7634571965, + 10002778659, + 103162606, + 10002778662, + 7442921414, + 7442921421, + 11502432935, + 11502432931, + 11502432940, + 11502432934, + 5330468352, + 5330468360, + 5330468354, + 10002778622, + 103235788 + ], + "geometry": [ + { "lat": 40.8468557, "lon": -73.9706824 }, + { "lat": 40.8469350, "lon": -73.9706430 }, + { "lat": 40.8470895, "lon": -73.9705255 }, + { "lat": 40.8472393, "lon": -73.9703984 }, + { "lat": 40.8473323, "lon": -73.9703039 }, + { "lat": 40.8473833, "lon": -73.9702493 }, + { "lat": 40.8474076, "lon": -73.9702245 }, + { "lat": 40.8476500, "lon": -73.9699780 }, + { "lat": 40.8477176, "lon": -73.9699211 }, + { "lat": 40.8477710, "lon": -73.9698760 }, + { "lat": 40.8478471, "lon": -73.9698295 }, + { "lat": 40.8479372, "lon": -73.9697745 }, + { "lat": 40.8479531, "lon": -73.9697639 }, + { "lat": 40.8479966, "lon": -73.9697435 }, + { "lat": 40.8481425, "lon": -73.9696751 }, + { "lat": 40.8482231, "lon": -73.9696377 }, + { "lat": 40.8482924, "lon": -73.9696056 }, + { "lat": 40.8485052, "lon": -73.9695070 }, + { "lat": 40.8485619, "lon": -73.9694807 }, + { "lat": 40.8486114, "lon": -73.9694577 }, + { "lat": 40.8486661, "lon": -73.9694324 }, + { "lat": 40.8488459, "lon": -73.9693490 }, + { "lat": 40.8490819, "lon": -73.9692396 }, + { "lat": 40.8491459, "lon": -73.9692100 }, + { "lat": 40.8492463, "lon": -73.9691634 }, + { "lat": 40.8493575, "lon": -73.9691119 }, + { "lat": 40.8495725, "lon": -73.9690122 }, + { "lat": 40.8498208, "lon": -73.9688971 }, + { "lat": 40.8498495, "lon": -73.9688838 }, + { "lat": 40.8500129, "lon": -73.9688081 }, + { "lat": 40.8500813, "lon": -73.9687763 }, + { "lat": 40.8501638, "lon": -73.9687381 }, + { "lat": 40.8503855, "lon": -73.9686353 }, + { "lat": 40.8505784, "lon": -73.9685453 }, + { "lat": 40.8508898, "lon": -73.9684000 }, + { "lat": 40.8509760, "lon": -73.9683598 } + ], + "tags": { + "highway": "tertiary", + "name": "Palisade Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 850096085, + "bounds": { + "minlat": 40.8338199, + "minlon": -74.0083837, + "maxlat": 40.8338633, + "maxlon": -74.0083158 + }, + "nodes": [ + 7931085787, + 7931085788 + ], + "geometry": [ + { "lat": 40.8338199, "lon": -74.0083158 }, + { "lat": 40.8338633, "lon": -74.0083837 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850096086, + "bounds": { + "minlat": 40.8339837, + "minlon": -74.0093895, + "maxlat": 40.8341666, + "maxlon": -74.0090520 + }, + "nodes": [ + 7931085802, + 13527758308, + 7931085803, + 7931085804 + ], + "geometry": [ + { "lat": 40.8341666, "lon": -74.0093895 }, + { "lat": 40.8341359, "lon": -74.0093330 }, + { "lat": 40.8341197, "lon": -74.0093032 }, + { "lat": 40.8339837, "lon": -74.0090520 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850096087, + "bounds": { + "minlat": 40.8338633, + "minlon": -74.0088110, + "maxlat": 40.8340752, + "maxlon": -74.0083837 + }, + "nodes": [ + 7931085788, + 7931085789, + 7931085790, + 7931085791, + 7931085792, + 7931085793 + ], + "geometry": [ + { "lat": 40.8338633, "lon": -74.0083837 }, + { "lat": 40.8339083, "lon": -74.0084579 }, + { "lat": 40.8340533, "lon": -74.0087098 }, + { "lat": 40.8340670, "lon": -74.0087441 }, + { "lat": 40.8340731, "lon": -74.0087767 }, + { "lat": 40.8340752, "lon": -74.0088110 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 850096088, + "bounds": { + "minlat": 40.8339705, + "minlon": -74.0088869, + "maxlat": 40.8340752, + "maxlon": -74.0088110 + }, + "nodes": [ + 7931085793, + 7931085794, + 7931085795, + 7931085796, + 7931085797 + ], + "geometry": [ + { "lat": 40.8340752, "lon": -74.0088110 }, + { "lat": 40.8340683, "lon": -74.0088237 }, + { "lat": 40.8340095, "lon": -74.0088842 }, + { "lat": 40.8339917, "lon": -74.0088869 }, + { "lat": 40.8339705, "lon": -74.0088788 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 850096089, + "bounds": { + "minlat": 40.8337442, + "minlon": -74.0088788, + "maxlat": 40.8339705, + "maxlon": -74.0085083 + }, + "nodes": [ + 7931085797, + 7931085798, + 7931085799, + 7931085800 + ], + "geometry": [ + { "lat": 40.8339705, "lon": -74.0088788 }, + { "lat": 40.8339541, "lon": -74.0088589 }, + { "lat": 40.8337839, "lon": -74.0085779 }, + { "lat": 40.8337442, "lon": -74.0085083 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 850096090, + "bounds": { + "minlat": 40.8337037, + "minlon": -74.0085083, + "maxlat": 40.8337442, + "maxlon": -74.0084373 + }, + "nodes": [ + 7931085800, + 7931085801 + ], + "geometry": [ + { "lat": 40.8337442, "lon": -74.0085083 }, + { "lat": 40.8337037, "lon": -74.0084373 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850096091, + "bounds": { + "minlat": 40.8339799, + "minlon": -74.0089234, + "maxlat": 40.8339917, + "maxlon": -74.0088869 + }, + "nodes": [ + 7931085808, + 7931085796 + ], + "geometry": [ + { "lat": 40.8339799, "lon": -74.0089234 }, + { "lat": 40.8339917, "lon": -74.0088869 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850096092, + "bounds": { + "minlat": 40.8339725, + "minlon": -74.0090520, + "maxlat": 40.8339837, + "maxlon": -74.0089234 + }, + "nodes": [ + 7931085804, + 7931085805, + 7931085806, + 7931085807, + 7931085808 + ], + "geometry": [ + { "lat": 40.8339837, "lon": -74.0090520 }, + { "lat": 40.8339729, "lon": -74.0090245 }, + { "lat": 40.8339725, "lon": -74.0089932 }, + { "lat": 40.8339741, "lon": -74.0089608 }, + { "lat": 40.8339799, "lon": -74.0089234 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 850103879, + "bounds": { + "minlat": 40.8208023, + "minlon": -73.9307543, + "maxlat": 40.8208062, + "maxlon": -73.9304121 + }, + "nodes": [ + 7931142274, + 9910773641, + 7931142276, + 7931142275 + ], + "geometry": [ + { "lat": 40.8208023, "lon": -73.9307543 }, + { "lat": 40.8208055, "lon": -73.9306000 }, + { "lat": 40.8208062, "lon": -73.9305419 }, + { "lat": 40.8208052, "lon": -73.9304121 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850120520, + "bounds": { + "minlat": 40.8174209, + "minlon": -74.0025874, + "maxlat": 40.8178539, + "maxlon": -74.0017703 + }, + "nodes": [ + 7931282116, + 7931282117, + 7931282118, + 7931282119, + 8666507209, + 7931282120 + ], + "geometry": [ + { "lat": 40.8174209, "lon": -74.0017703 }, + { "lat": 40.8174616, "lon": -74.0018652 }, + { "lat": 40.8175455, "lon": -74.0020433 }, + { "lat": 40.8176923, "lon": -74.0023197 }, + { "lat": 40.8177638, "lon": -74.0024382 }, + { "lat": 40.8178539, "lon": -74.0025874 } + ], + "tags": { + "access": "destination", + "highway": "service" + } +}, +{ + "type": "way", + "id": 850330258, + "bounds": { + "minlat": 40.8204504, + "minlon": -74.0077117, + "maxlat": 40.8207652, + "maxlon": -74.0076009 + }, + "nodes": [ + 7933006730, + 13525555890, + 7933006731, + 7933006732, + 7933006740 + ], + "geometry": [ + { "lat": 40.8207652, "lon": -74.0076009 }, + { "lat": 40.8207119, "lon": -74.0076216 }, + { "lat": 40.8206002, "lon": -74.0076650 }, + { "lat": 40.8204560, "lon": -74.0077117 }, + { "lat": 40.8204504, "lon": -74.0077109 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 850330259, + "bounds": { + "minlat": 40.8204309, + "minlon": -74.0079578, + "maxlat": 40.8204489, + "maxlon": -74.0078232 + }, + "nodes": [ + 7933006739, + 7933006741 + ], + "geometry": [ + { "lat": 40.8204309, "lon": -74.0079578 }, + { "lat": 40.8204489, "lon": -74.0078232 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 850330260, + "bounds": { + "minlat": 40.8204489, + "minlon": -74.0078968, + "maxlat": 40.8206842, + "maxlon": -74.0078232 + }, + "nodes": [ + 7933006741, + 7933006742, + 7933006743, + 7933006744 + ], + "geometry": [ + { "lat": 40.8204489, "lon": -74.0078232 }, + { "lat": 40.8205576, "lon": -74.0078968 }, + { "lat": 40.8205986, "lon": -74.0078952 }, + { "lat": 40.8206842, "lon": -74.0078570 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 850330261, + "bounds": { + "minlat": 40.8205576, + "minlon": -74.0080218, + "maxlat": 40.8205754, + "maxlon": -74.0078968 + }, + "nodes": [ + 7933006742, + 7933006747, + 7933006746, + 7933006745 + ], + "geometry": [ + { "lat": 40.8205576, "lon": -74.0078968 }, + { "lat": 40.8205665, "lon": -74.0079258 }, + { "lat": 40.8205713, "lon": -74.0079498 }, + { "lat": 40.8205754, "lon": -74.0080218 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 850330262, + "bounds": { + "minlat": 40.8204489, + "minlon": -74.0078232, + "maxlat": 40.8204504, + "maxlon": -74.0077109 + }, + "nodes": [ + 7933006741, + 7933006740 + ], + "geometry": [ + { "lat": 40.8204489, "lon": -74.0078232 }, + { "lat": 40.8204504, "lon": -74.0077109 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 850339188, + "bounds": { + "minlat": 40.8398166, + "minlon": -74.0175899, + "maxlat": 40.8401168, + "maxlon": -74.0165538 + }, + "nodes": [ + 7933051906, + 10936284776, + 10936300906, + 7933051907, + 7933051908, + 10938131444, + 10938131405 + ], + "geometry": [ + { "lat": 40.8398166, "lon": -74.0165538 }, + { "lat": 40.8398586, "lon": -74.0166481 }, + { "lat": 40.8398775, "lon": -74.0166936 }, + { "lat": 40.8398949, "lon": -74.0167434 }, + { "lat": 40.8400589, "lon": -74.0173555 }, + { "lat": 40.8400898, "lon": -74.0174773 }, + { "lat": 40.8401168, "lon": -74.0175899 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 850346660, + "bounds": { + "minlat": 40.8546734, + "minlon": -74.0175831, + "maxlat": 40.8548192, + "maxlon": -74.0168673 + }, + "nodes": [ + 5508080960, + 7933166475, + 7933166476, + 7933166477, + 7933166478, + 7933166479 + ], + "geometry": [ + { "lat": 40.8548192, "lon": -74.0175831 }, + { "lat": 40.8547611, "lon": -74.0174495 }, + { "lat": 40.8546781, "lon": -74.0170637 }, + { "lat": 40.8546734, "lon": -74.0169796 }, + { "lat": 40.8546982, "lon": -74.0169177 }, + { "lat": 40.8547611, "lon": -74.0168673 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850352637, + "bounds": { + "minlat": 40.8776029, + "minlon": -73.9519656, + "maxlat": 40.8781593, + "maxlon": -73.9513638 + }, + "nodes": [ + 7933211848, + 7933211849, + 7933211850, + 7933211851, + 7933211852, + 7933211853, + 7933211854 + ], + "geometry": [ + { "lat": 40.8776029, "lon": -73.9516136 }, + { "lat": 40.8778732, "lon": -73.9513638 }, + { "lat": 40.8780629, "lon": -73.9517053 }, + { "lat": 40.8781182, "lon": -73.9517858 }, + { "lat": 40.8781317, "lon": -73.9518128 }, + { "lat": 40.8781467, "lon": -73.9518470 }, + { "lat": 40.8781593, "lon": -73.9519656 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850352638, + "bounds": { + "minlat": 40.8773946, + "minlon": -73.9515166, + "maxlat": 40.8777632, + "maxlon": -73.9510412 + }, + "nodes": [ + 7933211859, + 7933211858, + 7933211857, + 7933211856, + 7933211855 + ], + "geometry": [ + { "lat": 40.8775479, "lon": -73.9515166 }, + { "lat": 40.8775945, "lon": -73.9514740 }, + { "lat": 40.8777632, "lon": -73.9513028 }, + { "lat": 40.8776120, "lon": -73.9510412 }, + { "lat": 40.8773946, "lon": -73.9512461 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 850384623, + "bounds": { + "minlat": 40.7140701, + "minlon": -73.9975839, + "maxlat": 40.7140953, + "maxlon": -73.9974280 + }, + "nodes": [ + 1773066054, + 11504615610, + 4160344101, + 11504615614, + 12374690314 + ], + "geometry": [ + { "lat": 40.7140953, "lon": -73.9974280 }, + { "lat": 40.7140906, "lon": -73.9974621 }, + { "lat": 40.7140790, "lon": -73.9975161 }, + { "lat": 40.7140769, "lon": -73.9975473 }, + { "lat": 40.7140701, "lon": -73.9975839 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "20 mph", + "name": "Division Street", + "name:ko": "디비전 스트리트", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 850493621, + "bounds": { + "minlat": 40.8219547, + "minlon": -73.9930747, + "maxlat": 40.8224727, + "maxlon": -73.9926152 + }, + "nodes": [ + 7934518441, + 7934518443, + 7934518442 + ], + "geometry": [ + { "lat": 40.8219547, "lon": -73.9930747 }, + { "lat": 40.8223441, "lon": -73.9927293 }, + { "lat": 40.8224727, "lon": -73.9926152 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 850493843, + "bounds": { + "minlat": 40.8791920, + "minlon": -73.9908072, + "maxlat": 40.8799002, + "maxlon": -73.9902360 + }, + "nodes": [ + 7934506370, + 7934506371, + 7934506372, + 7934506373, + 7934506374 + ], + "geometry": [ + { "lat": 40.8791920, "lon": -73.9908072 }, + { "lat": 40.8795971, "lon": -73.9904138 }, + { "lat": 40.8796408, "lon": -73.9903749 }, + { "lat": 40.8797071, "lon": -73.9903331 }, + { "lat": 40.8799002, "lon": -73.9902360 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 850605624, + "bounds": { + "minlat": 40.7700472, + "minlon": -73.9158287, + "maxlat": 40.7702677, + "maxlon": -73.9144077 + }, + "nodes": [ + 42866632, + 3778263938, + 9179198068, + 5104280314, + 42897727 + ], + "geometry": [ + { "lat": 40.7700472, "lon": -73.9144077 }, + { "lat": 40.7700631, "lon": -73.9144840 }, + { "lat": 40.7701946, "lon": -73.9153131 }, + { "lat": 40.7702458, "lon": -73.9156403 }, + { "lat": 40.7702677, "lon": -73.9158287 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Astoria Boulevard North", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 850605625, + "bounds": { + "minlat": 40.7698831, + "minlon": -73.9144077, + "maxlat": 40.7700472, + "maxlon": -73.9134445 + }, + "nodes": [ + 7659362778, + 9179209283, + 6406731037, + 42866632 + ], + "geometry": [ + { "lat": 40.7698831, "lon": -73.9134445 }, + { "lat": 40.7700126, "lon": -73.9142424 }, + { "lat": 40.7700291, "lon": -73.9143224 }, + { "lat": 40.7700472, "lon": -73.9144077 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "name": "Astoria Boulevard North", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 850605626, + "bounds": { + "minlat": 40.7688372, + "minlon": -73.9138905, + "maxlat": 40.7693400, + "maxlon": -73.9108223 + }, + "nodes": [ + 7746623259, + 6406731390, + 42888656, + 6406731393, + 7746623260, + 4927558980, + 42912771, + 4927558979 + ], + "geometry": [ + { "lat": 40.7693400, "lon": -73.9138905 }, + { "lat": 40.7691955, "lon": -73.9129895 }, + { "lat": 40.7691804, "lon": -73.9129009 }, + { "lat": 40.7691675, "lon": -73.9128237 }, + { "lat": 40.7690177, "lon": -73.9119219 }, + { "lat": 40.7688764, "lon": -73.9110758 }, + { "lat": 40.7688547, "lon": -73.9109422 }, + { "lat": 40.7688372, "lon": -73.9108223 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "designated", + "highway": "secondary", + "name": "Astoria Boulevard South", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 850661973, + "bounds": { + "minlat": 40.8602298, + "minlon": -73.9818386, + "maxlat": 40.8628700, + "maxlon": -73.9789400 + }, + "nodes": [ + 103242541, + 7373684933, + 6120132985, + 440215067, + 3639583590, + 6136897511, + 6136897486, + 6120132991, + 103234403, + 6136897488, + 6132813964 + ], + "geometry": [ + { "lat": 40.8602298, "lon": -73.9795868 }, + { "lat": 40.8602983, "lon": -73.9796165 }, + { "lat": 40.8606839, "lon": -73.9794559 }, + { "lat": 40.8608544, "lon": -73.9794037 }, + { "lat": 40.8614198, "lon": -73.9789400 }, + { "lat": 40.8614756, "lon": -73.9790512 }, + { "lat": 40.8622118, "lon": -73.9805188 }, + { "lat": 40.8622190, "lon": -73.9805332 }, + { "lat": 40.8627070, "lon": -73.9815060 }, + { "lat": 40.8627205, "lon": -73.9815342 }, + { "lat": 40.8628700, "lon": -73.9818386 } + ], + "tags": { + "highway": "service", + "name": "Hoefleys Lane", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hoefleys", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 850678169, + "bounds": { + "minlat": 40.8324392, + "minlon": -73.9497705, + "maxlat": 40.8326085, + "maxlon": -73.9497292 + }, + "nodes": [ + 12458053018, + 42442058, + 11191809988 + ], + "geometry": [ + { "lat": 40.8324392, "lon": -73.9497292 }, + { "lat": 40.8325409, "lon": -73.9497556 }, + { "lat": 40.8326085, "lon": -73.9497705 } + ], + "tags": { + "bridge": "yes", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "layer": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive East", + "sidewalk": "left", + "surface": "asphalt", + "tiger:cfcc": "A45;A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_base_1": "Riverside", + "tiger:name_direction_suffix_1": "E", + "tiger:name_type": "Dr", + "tiger:name_type_1": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 850734704, + "bounds": { + "minlat": 40.8614486, + "minlon": -73.9763955, + "maxlat": 40.8622604, + "maxlon": -73.9755045 + }, + "nodes": [ + 7936445114, + 10020669536, + 10020669541, + 7936445115, + 12670717812, + 7936445116, + 12670717813, + 12670717814, + 12670717811, + 7936445117, + 7936445124 + ], + "geometry": [ + { "lat": 40.8614486, "lon": -73.9755045 }, + { "lat": 40.8615187, "lon": -73.9757830 }, + { "lat": 40.8614984, "lon": -73.9758641 }, + { "lat": 40.8615757, "lon": -73.9763342 }, + { "lat": 40.8615852, "lon": -73.9763613 }, + { "lat": 40.8616021, "lon": -73.9763822 }, + { "lat": 40.8616212, "lon": -73.9763922 }, + { "lat": 40.8616441, "lon": -73.9763955 }, + { "lat": 40.8616664, "lon": -73.9763948 }, + { "lat": 40.8616971, "lon": -73.9763881 }, + { "lat": 40.8622604, "lon": -73.9762283 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850740285, + "bounds": { + "minlat": 40.8814146, + "minlon": -73.9545814, + "maxlat": 40.8822500, + "maxlon": -73.9534173 + }, + "nodes": [ + 7936517748, + 7936517749, + 7936517752, + 7936517750, + 7936517751 + ], + "geometry": [ + { "lat": 40.8822500, "lon": -73.9542766 }, + { "lat": 40.8819357, "lon": -73.9545814 }, + { "lat": 40.8815821, "lon": -73.9540096 }, + { "lat": 40.8814146, "lon": -73.9537471 }, + { "lat": 40.8817560, "lon": -73.9534173 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850740286, + "bounds": { + "minlat": 40.8815821, + "minlon": -73.9540096, + "maxlat": 40.8818829, + "maxlon": -73.9536404 + }, + "nodes": [ + 7936517752, + 7936517753, + 7936517754, + 7936517755, + 7936517756 + ], + "geometry": [ + { "lat": 40.8815821, "lon": -73.9540096 }, + { "lat": 40.8817465, "lon": -73.9538329 }, + { "lat": 40.8817915, "lon": -73.9537754 }, + { "lat": 40.8818354, "lon": -73.9537064 }, + { "lat": 40.8818829, "lon": -73.9536404 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850740287, + "bounds": { + "minlat": 40.8818237, + "minlon": -73.9536404, + "maxlat": 40.8818829, + "maxlon": -73.9535345 + }, + "nodes": [ + 7936517756, + 7115788416 + ], + "geometry": [ + { "lat": 40.8818829, "lon": -73.9536404 }, + { "lat": 40.8818237, "lon": -73.9535345 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Palisade Avenue", + "old_ref": "CR 66", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 850740945, + "bounds": { + "minlat": 40.8792424, + "minlon": -73.9847783, + "maxlat": 40.8794765, + "maxlon": -73.9840720 + }, + "nodes": [ + 7936522017, + 7936522018 + ], + "geometry": [ + { "lat": 40.8794765, "lon": -73.9847783 }, + { "lat": 40.8792424, "lon": -73.9840720 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850872694, + "bounds": { + "minlat": 40.7991781, + "minlon": -73.9217445, + "maxlat": 40.7992407, + "maxlon": -73.9216636 + }, + "nodes": [ + 7937558690, + 7937558691 + ], + "geometry": [ + { "lat": 40.7992407, "lon": -73.9216636 }, + { "lat": 40.7991781, "lon": -73.9217445 } + ], + "tags": { + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 850872695, + "bounds": { + "minlat": 40.7983445, + "minlon": -73.9223125, + "maxlat": 40.7990496, + "maxlon": -73.9218532 + }, + "nodes": [ + 7937558694, + 7937558693, + 7937558702 + ], + "geometry": [ + { "lat": 40.7983445, "lon": -73.9223125 }, + { "lat": 40.7984381, "lon": -73.9222728 }, + { "lat": 40.7990496, "lon": -73.9218532 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 850872696, + "bounds": { + "minlat": 40.7981808, + "minlon": -73.9223125, + "maxlat": 40.7983445, + "maxlon": -73.9220988 + }, + "nodes": [ + 7937558694, + 7937558696, + 7937558697, + 7937558700 + ], + "geometry": [ + { "lat": 40.7983445, "lon": -73.9223125 }, + { "lat": 40.7982863, "lon": -73.9222799 }, + { "lat": 40.7982069, "lon": -73.9221679 }, + { "lat": 40.7981808, "lon": -73.9220988 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850872697, + "bounds": { + "minlat": 40.7981271, + "minlon": -73.9220597, + "maxlat": 40.7981637, + "maxlon": -73.9218329 + }, + "nodes": [ + 7937558701, + 7937558698, + 7937558699 + ], + "geometry": [ + { "lat": 40.7981637, "lon": -73.9220597 }, + { "lat": 40.7981274, "lon": -73.9219607 }, + { "lat": 40.7981271, "lon": -73.9218329 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850872698, + "bounds": { + "minlat": 40.7981637, + "minlon": -73.9220988, + "maxlat": 40.7981808, + "maxlon": -73.9220597 + }, + "nodes": [ + 7937558700, + 7937558701 + ], + "geometry": [ + { "lat": 40.7981808, "lon": -73.9220988 }, + { "lat": 40.7981637, "lon": -73.9220597 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 850872699, + "bounds": { + "minlat": 40.7990496, + "minlon": -73.9218532, + "maxlat": 40.7991781, + "maxlon": -73.9217445 + }, + "nodes": [ + 7937558702, + 7937558692, + 7937558695, + 7937558691 + ], + "geometry": [ + { "lat": 40.7990496, "lon": -73.9218532 }, + { "lat": 40.7991064, "lon": -73.9218143 }, + { "lat": 40.7991169, "lon": -73.9218073 }, + { "lat": 40.7991781, "lon": -73.9217445 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 850872700, + "bounds": { + "minlat": 40.7970655, + "minlon": -73.9212861, + "maxlat": 40.7987505, + "maxlon": -73.9191167 + }, + "nodes": [ + 3607948344, + 277482073, + 3640160327, + 7734773022, + 277482072, + 3607948335, + 3039386633, + 3039386432, + 9153856255, + 9153856254, + 277482071, + 3039386431, + 277482070, + 9153856253, + 3039386429, + 277482069, + 9153856252, + 5978418226, + 277482068 + ], + "geometry": [ + { "lat": 40.7987505, "lon": -73.9212861 }, + { "lat": 40.7985147, "lon": -73.9210912 }, + { "lat": 40.7983706, "lon": -73.9209577 }, + { "lat": 40.7982600, "lon": -73.9208376 }, + { "lat": 40.7982097, "lon": -73.9207770 }, + { "lat": 40.7981527, "lon": -73.9207017 }, + { "lat": 40.7981173, "lon": -73.9206550 }, + { "lat": 40.7980279, "lon": -73.9205284 }, + { "lat": 40.7979502, "lon": -73.9203871 }, + { "lat": 40.7978698, "lon": -73.9202293 }, + { "lat": 40.7978060, "lon": -73.9200864 }, + { "lat": 40.7976397, "lon": -73.9196856 }, + { "lat": 40.7975703, "lon": -73.9195523 }, + { "lat": 40.7975073, "lon": -73.9194647 }, + { "lat": 40.7974373, "lon": -73.9193919 }, + { "lat": 40.7973649, "lon": -73.9193216 }, + { "lat": 40.7972810, "lon": -73.9192546 }, + { "lat": 40.7972001, "lon": -73.9191986 }, + { "lat": 40.7970655, "lon": -73.9191167 } + ], + "tags": { + "destination": "Manhattan", + "highway": "unclassified", + "name": "Bronx Shore Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 850872701, + "bounds": { + "minlat": 40.7992407, + "minlon": -73.9239157, + "maxlat": 40.8001534, + "maxlon": -73.9216636 + }, + "nodes": [ + 7937558690, + 9153856261, + 277482036, + 7734748123, + 9153856265, + 9153856266, + 277482037, + 9153856267, + 9153856268, + 3640160333, + 9153856269, + 277482038, + 9153856270, + 7734748115, + 9153856273, + 3640160580 + ], + "geometry": [ + { "lat": 40.7992407, "lon": -73.9216636 }, + { "lat": 40.7993487, "lon": -73.9218074 }, + { "lat": 40.7994365, "lon": -73.9219354 }, + { "lat": 40.7994731, "lon": -73.9219927 }, + { "lat": 40.7995448, "lon": -73.9221057 }, + { "lat": 40.7996303, "lon": -73.9222673 }, + { "lat": 40.7997172, "lon": -73.9224425 }, + { "lat": 40.7997926, "lon": -73.9226101 }, + { "lat": 40.7998544, "lon": -73.9227614 }, + { "lat": 40.7999098, "lon": -73.9229061 }, + { "lat": 40.7999629, "lon": -73.9230770 }, + { "lat": 40.8000053, "lon": -73.9232203 }, + { "lat": 40.8000523, "lon": -73.9233990 }, + { "lat": 40.8000897, "lon": -73.9235565 }, + { "lat": 40.8001267, "lon": -73.9237471 }, + { "lat": 40.8001534, "lon": -73.9239157 } + ], + "tags": { + "highway": "unclassified", + "name": "Bronx Shore Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 850876296, + "bounds": { + "minlat": 40.8378568, + "minlon": -73.9784108, + "maxlat": 40.8379000, + "maxlon": -73.9781591 + }, + "nodes": [ + 7937598128, + 7937598130, + 13523728869, + 7937598131 + ], + "geometry": [ + { "lat": 40.8379000, "lon": -73.9784108 }, + { "lat": 40.8378754, "lon": -73.9783531 }, + { "lat": 40.8378699, "lon": -73.9782961 }, + { "lat": 40.8378568, "lon": -73.9781591 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 850894486, + "bounds": { + "minlat": 40.8113749, + "minlon": -73.9640405, + "maxlat": 40.8127397, + "maxlon": -73.9638901 + }, + "nodes": [ + 42441246, + 42441249, + 42441251, + 7732571952, + 2329939974, + 2329912196, + 2329939963, + 7785881420, + 2329939960, + 2329939957, + 3269867927, + 6868145381 + ], + "geometry": [ + { "lat": 40.8127397, "lon": -73.9638901 }, + { "lat": 40.8127056, "lon": -73.9638909 }, + { "lat": 40.8124025, "lon": -73.9639023 }, + { "lat": 40.8122916, "lon": -73.9638971 }, + { "lat": 40.8120348, "lon": -73.9638957 }, + { "lat": 40.8118761, "lon": -73.9638928 }, + { "lat": 40.8117451, "lon": -73.9639032 }, + { "lat": 40.8116267, "lon": -73.9639303 }, + { "lat": 40.8115730, "lon": -73.9639483 }, + { "lat": 40.8115220, "lon": -73.9639676 }, + { "lat": 40.8114733, "lon": -73.9639888 }, + { "lat": 40.8113749, "lon": -73.9640405 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 850894487, + "bounds": { + "minlat": 40.8127397, + "minlon": -73.9638901, + "maxlat": 40.8160871, + "maxlon": -73.9621672 + }, + "nodes": [ + 7732551670, + 7732571839, + 42441214, + 7732571843, + 7732571844, + 42441228, + 7732571845, + 42441232, + 7732571846, + 3289786582, + 1147215106, + 7732571949, + 42441236, + 1147215088, + 42441239, + 2329939996, + 42441242, + 2329939993, + 42441246 + ], + "geometry": [ + { "lat": 40.8160871, "lon": -73.9621672 }, + { "lat": 40.8160309, "lon": -73.9622267 }, + { "lat": 40.8159942, "lon": -73.9622649 }, + { "lat": 40.8159552, "lon": -73.9622984 }, + { "lat": 40.8159046, "lon": -73.9623423 }, + { "lat": 40.8158515, "lon": -73.9623834 }, + { "lat": 40.8157879, "lon": -73.9624263 }, + { "lat": 40.8157049, "lon": -73.9624757 }, + { "lat": 40.8148764, "lon": -73.9628835 }, + { "lat": 40.8139941, "lon": -73.9633502 }, + { "lat": 40.8133572, "lon": -73.9636975 }, + { "lat": 40.8132382, "lon": -73.9637569 }, + { "lat": 40.8131415, "lon": -73.9637985 }, + { "lat": 40.8130747, "lon": -73.9638210 }, + { "lat": 40.8129853, "lon": -73.9638463 }, + { "lat": 40.8128903, "lon": -73.9638667 }, + { "lat": 40.8128391, "lon": -73.9638764 }, + { "lat": 40.8128122, "lon": -73.9638790 }, + { "lat": 40.8127397, "lon": -73.9638901 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 850894489, + "bounds": { + "minlat": 40.8175360, + "minlon": -73.9610181, + "maxlat": 40.8176592, + "maxlon": -73.9607211 + }, + "nodes": [ + 42425088, + 7616688918 + ], + "geometry": [ + { "lat": 40.8176592, "lon": -73.9610181 }, + { "lat": 40.8175360, "lon": -73.9607211 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "2", + "name": "Saint Clair Place", + "oneway": "yes", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Clair", + "tiger:name_type": "Pl", + "tiger:reviewed": "aerial", + "tiger:zip_left": "10027", + "tiger:zip_right": "10027" + } +}, +{ + "type": "way", + "id": 850922169, + "bounds": { + "minlat": 40.8170513, + "minlon": -73.9607211, + "maxlat": 40.8175360, + "maxlon": -73.9595343 + }, + "nodes": [ + 7616688918, + 10049860711, + 10049953227, + 7732571915 + ], + "geometry": [ + { "lat": 40.8175360, "lon": -73.9607211 }, + { "lat": 40.8174675, "lon": -73.9605559 }, + { "lat": 40.8171381, "lon": -73.9597547 }, + { "lat": 40.8170513, "lon": -73.9595343 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "secondary", + "lanes": "2", + "name": "Saint Clair Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Clair", + "tiger:name_type": "Pl", + "tiger:reviewed": "aerial", + "tiger:zip_left": "10027", + "tiger:zip_right": "10027", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 851348554, + "bounds": { + "minlat": 40.8559081, + "minlon": -73.9155830, + "maxlat": 40.8561908, + "maxlon": -73.9140174 + }, + "nodes": [ + 7940640303, + 7940640304, + 7940640305 + ], + "geometry": [ + { "lat": 40.8561908, "lon": -73.9155830 }, + { "lat": 40.8560641, "lon": -73.9148087 }, + { "lat": 40.8559081, "lon": -73.9140174 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 851364787, + "bounds": { + "minlat": 40.8485701, + "minlon": -74.0049290, + "maxlat": 40.8486699, + "maxlon": -74.0046254 + }, + "nodes": [ + 7940813657, + 7940813656 + ], + "geometry": [ + { "lat": 40.8486699, "lon": -74.0049290 }, + { "lat": 40.8485701, "lon": -74.0046254 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 851364788, + "bounds": { + "minlat": 40.8486699, + "minlon": -74.0049424, + "maxlat": 40.8492853, + "maxlon": -74.0046996 + }, + "nodes": [ + 7940813657, + 7940813658, + 7940813659, + 7940813660 + ], + "geometry": [ + { "lat": 40.8486699, "lon": -74.0049290 }, + { "lat": 40.8487059, "lon": -74.0049424 }, + { "lat": 40.8487826, "lon": -74.0049261 }, + { "lat": 40.8492853, "lon": -74.0046996 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 851364789, + "bounds": { + "minlat": 40.8492853, + "minlon": -74.0046996, + "maxlat": 40.8495585, + "maxlon": -74.0045638 + }, + "nodes": [ + 7940813660, + 7940813662 + ], + "geometry": [ + { "lat": 40.8492853, "lon": -74.0046996 }, + { "lat": 40.8495585, "lon": -74.0045638 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 851366294, + "bounds": { + "minlat": 40.8161175, + "minlon": -73.9320513, + "maxlat": 40.8161318, + "maxlon": -73.9311673 + }, + "nodes": [ + 7940842414, + 13004515404, + 7940842415, + 7557653513, + 7557653511 + ], + "geometry": [ + { "lat": 40.8161175, "lon": -73.9311673 }, + { "lat": 40.8161214, "lon": -73.9312844 }, + { "lat": 40.8161226, "lon": -73.9313187 }, + { "lat": 40.8161257, "lon": -73.9317165 }, + { "lat": 40.8161318, "lon": -73.9320513 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 851371733, + "bounds": { + "minlat": 40.8413019, + "minlon": -73.9932703, + "maxlat": 40.8416295, + "maxlon": -73.9929335 + }, + "nodes": [ + 7940839055, + 12692332168, + 7940839056 + ], + "geometry": [ + { "lat": 40.8413019, "lon": -73.9932703 }, + { "lat": 40.8415728, "lon": -73.9929987 }, + { "lat": 40.8416295, "lon": -73.9929335 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 852273064, + "bounds": { + "minlat": 40.7578356, + "minlon": -73.9342872, + "maxlat": 40.7584476, + "maxlon": -73.9337078 + }, + "nodes": [ + 7949838922, + 7949838924, + 7949838923 + ], + "geometry": [ + { "lat": 40.7578356, "lon": -73.9342872 }, + { "lat": 40.7583923, "lon": -73.9337607 }, + { "lat": 40.7584476, "lon": -73.9337078 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 852273065, + "bounds": { + "minlat": 40.7590199, + "minlon": -73.9315200, + "maxlat": 40.7593982, + "maxlon": -73.9312249 + }, + "nodes": [ + 7949838925, + 7949838928, + 7949838926, + 7949838927 + ], + "geometry": [ + { "lat": 40.7593982, "lon": -73.9312249 }, + { "lat": 40.7593338, "lon": -73.9312743 }, + { "lat": 40.7592197, "lon": -73.9313618 }, + { "lat": 40.7590199, "lon": -73.9315200 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 852273066, + "bounds": { + "minlat": 40.7604623, + "minlon": -73.9304542, + "maxlat": 40.7606985, + "maxlon": -73.9299224 + }, + "nodes": [ + 7949838929, + 7949838931, + 7949838930 + ], + "geometry": [ + { "lat": 40.7606985, "lon": -73.9304542 }, + { "lat": 40.7604980, "lon": -73.9300030 }, + { "lat": 40.7604623, "lon": -73.9299224 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 852273067, + "bounds": { + "minlat": 40.7598892, + "minlon": -73.9287211, + "maxlat": 40.7602226, + "maxlon": -73.9284449 + }, + "nodes": [ + 7949838932, + 7949838933, + 7949838935, + 7949838934 + ], + "geometry": [ + { "lat": 40.7598892, "lon": -73.9287211 }, + { "lat": 40.7601391, "lon": -73.9285161 }, + { "lat": 40.7601722, "lon": -73.9284878 }, + { "lat": 40.7602226, "lon": -73.9284449 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 852273068, + "bounds": { + "minlat": 40.7602441, + "minlon": -73.9284910, + "maxlat": 40.7609305, + "maxlon": -73.9279367 + }, + "nodes": [ + 7949838936, + 7949838940, + 7949838937, + 7949838938, + 7949838939 + ], + "geometry": [ + { "lat": 40.7602441, "lon": -73.9284910 }, + { "lat": 40.7603281, "lon": -73.9284192 }, + { "lat": 40.7605031, "lon": -73.9282720 }, + { "lat": 40.7607529, "lon": -73.9280714 }, + { "lat": 40.7609305, "lon": -73.9279367 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 852273069, + "bounds": { + "minlat": 40.7606670, + "minlon": -73.9273087, + "maxlat": 40.7609779, + "maxlon": -73.9266445 + }, + "nodes": [ + 7949838941, + 7949838946, + 7949838942, + 7949838943, + 7949838944, + 7949838945 + ], + "geometry": [ + { "lat": 40.7609779, "lon": -73.9273087 }, + { "lat": 40.7609484, "lon": -73.9272400 }, + { "lat": 40.7609200, "lon": -73.9271736 }, + { "lat": 40.7608245, "lon": -73.9269742 }, + { "lat": 40.7607269, "lon": -73.9267654 }, + { "lat": 40.7606670, "lon": -73.9266445 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 852280858, + "bounds": { + "minlat": 40.7623585, + "minlon": -73.9205295, + "maxlat": 40.7626348, + "maxlon": -73.9198809 + }, + "nodes": [ + 7949923913, + 8595229808, + 7949923914, + 7949923915, + 7949923916, + 6406731606, + 7949923917 + ], + "geometry": [ + { "lat": 40.7626348, "lon": -73.9198809 }, + { "lat": 40.7625779, "lon": -73.9199269 }, + { "lat": 40.7623726, "lon": -73.9200929 }, + { "lat": 40.7623585, "lon": -73.9201229 }, + { "lat": 40.7623618, "lon": -73.9201686 }, + { "lat": 40.7624975, "lon": -73.9204694 }, + { "lat": 40.7625249, "lon": -73.9205295 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 852288454, + "bounds": { + "minlat": 40.7684113, + "minlon": -73.9286847, + "maxlat": 40.7687926, + "maxlon": -73.9283335 + }, + "nodes": [ + 7950032302, + 7950032303, + 7950032310, + 7950032304, + 7950032305, + 7950032306, + 7950032307, + 7950032308, + 7950032309 + ], + "geometry": [ + { "lat": 40.7687926, "lon": -73.9286847 }, + { "lat": 40.7687390, "lon": -73.9285597 }, + { "lat": 40.7687266, "lon": -73.9285313 }, + { "lat": 40.7686992, "lon": -73.9284683 }, + { "lat": 40.7686781, "lon": -73.9284649 }, + { "lat": 40.7685651, "lon": -73.9285602 }, + { "lat": 40.7685287, "lon": -73.9285535 }, + { "lat": 40.7684776, "lon": -73.9284540 }, + { "lat": 40.7684113, "lon": -73.9283335 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 852288455, + "bounds": { + "minlat": 40.7676313, + "minlon": -73.9263541, + "maxlat": 40.7679493, + "maxlon": -73.9260937 + }, + "nodes": [ + 7950032314, + 7950032315, + 7950032317, + 7950032316 + ], + "geometry": [ + { "lat": 40.7679493, "lon": -73.9260937 }, + { "lat": 40.7678986, "lon": -73.9261356 }, + { "lat": 40.7678796, "lon": -73.9261512 }, + { "lat": 40.7676313, "lon": -73.9263541 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 852289917, + "bounds": { + "minlat": 40.7291629, + "minlon": -73.9092758, + "maxlat": 40.7296633, + "maxlon": -73.9089773 + }, + "nodes": [ + 7950054613, + 10203945024, + 7950054614, + 7950054615, + 7950054616, + 7950054617, + 7950054618, + 7950054619 + ], + "geometry": [ + { "lat": 40.7291629, "lon": -73.9092758 }, + { "lat": 40.7292076, "lon": -73.9092246 }, + { "lat": 40.7292434, "lon": -73.9091836 }, + { "lat": 40.7293790, "lon": -73.9090345 }, + { "lat": 40.7294437, "lon": -73.9089872 }, + { "lat": 40.7295033, "lon": -73.9089773 }, + { "lat": 40.7295742, "lon": -73.9090229 }, + { "lat": 40.7296633, "lon": -73.9091691 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 852289918, + "bounds": { + "minlat": 40.7279408, + "minlon": -73.9103832, + "maxlat": 40.7287115, + "maxlon": -73.9098641 + }, + "nodes": [ + 7950054620, + 11925728889, + 7950054621, + 7950054622, + 7950054623, + 7950054624 + ], + "geometry": [ + { "lat": 40.7287115, "lon": -73.9098641 }, + { "lat": 40.7286658, "lon": -73.9099047 }, + { "lat": 40.7286377, "lon": -73.9099300 }, + { "lat": 40.7284448, "lon": -73.9099944 }, + { "lat": 40.7281132, "lon": -73.9102484 }, + { "lat": 40.7279408, "lon": -73.9103832 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 852323996, + "bounds": { + "minlat": 40.7164220, + "minlon": -73.9307000, + "maxlat": 40.7167059, + "maxlon": -73.9298415 + }, + "nodes": [ + 42515027, + 7950468568, + 7950468569 + ], + "geometry": [ + { "lat": 40.7164220, "lon": -73.9307000 }, + { "lat": 40.7164686, "lon": -73.9306469 }, + { "lat": 40.7167059, "lon": -73.9298415 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 852378874, + "bounds": { + "minlat": 40.7873341, + "minlon": -73.9505894, + "maxlat": 40.7874114, + "maxlon": -73.9505334 + }, + "nodes": [ + 7951097792, + 7951097790, + 7951097793 + ], + "geometry": [ + { "lat": 40.7873341, "lon": -73.9505894 }, + { "lat": 40.7873572, "lon": -73.9505735 }, + { "lat": 40.7874114, "lon": -73.9505334 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 852462799, + "bounds": { + "minlat": 40.7532960, + "minlon": -73.9069005, + "maxlat": 40.7533185, + "maxlon": -73.9066866 + }, + "nodes": [ + 7762260254, + 7762260265 + ], + "geometry": [ + { "lat": 40.7532960, "lon": -73.9069005 }, + { "lat": 40.7533185, "lon": -73.9066866 } + ], + "tags": { + "cycleway:left": "share_busway", + "cycleway:left:oneway": "-1", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 852509524, + "bounds": { + "minlat": 40.7101161, + "minlon": -73.9579886, + "maxlat": 40.7102168, + "maxlon": -73.9579753 + }, + "nodes": [ + 1692483446, + 8842929720, + 7711430782 + ], + "geometry": [ + { "lat": 40.7101161, "lon": -73.9579753 }, + { "lat": 40.7101606, "lon": -73.9579812 }, + { "lat": 40.7102168, "lon": -73.9579886 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "name": "South 4th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 852655206, + "bounds": { + "minlat": 40.8547612, + "minlon": -73.9276761, + "maxlat": 40.8552469, + "maxlon": -73.9266257 + }, + "nodes": [ + 7953934600, + 7953934601, + 8740550730, + 7953934602, + 7953934603, + 7953934604, + 7953934605, + 7953934606, + 7953934607, + 7953934608, + 7953934609, + 7953934610, + 7953934611, + 7953934612, + 7953934613, + 7953934614, + 7953934615, + 7953934616, + 7953934617, + 7953934618, + 7953934619, + 7953934620, + 7953934621, + 7953934622, + 7953934623, + 13730075783, + 13730075782, + 13730075775 + ], + "geometry": [ + { "lat": 40.8551173, "lon": -73.9276761 }, + { "lat": 40.8550882, "lon": -73.9276176 }, + { "lat": 40.8550766, "lon": -73.9275879 }, + { "lat": 40.8550640, "lon": -73.9275555 }, + { "lat": 40.8550591, "lon": -73.9275151 }, + { "lat": 40.8550704, "lon": -73.9274822 }, + { "lat": 40.8550776, "lon": -73.9274718 }, + { "lat": 40.8551359, "lon": -73.9274266 }, + { "lat": 40.8551587, "lon": -73.9274116 }, + { "lat": 40.8551893, "lon": -73.9273928 }, + { "lat": 40.8552250, "lon": -73.9273686 }, + { "lat": 40.8552398, "lon": -73.9273514 }, + { "lat": 40.8552462, "lon": -73.9273260 }, + { "lat": 40.8552469, "lon": -73.9272977 }, + { "lat": 40.8552405, "lon": -73.9272554 }, + { "lat": 40.8552334, "lon": -73.9272375 }, + { "lat": 40.8552099, "lon": -73.9271679 }, + { "lat": 40.8551879, "lon": -73.9271058 }, + { "lat": 40.8551594, "lon": -73.9270174 }, + { "lat": 40.8551231, "lon": -73.9269186 }, + { "lat": 40.8550861, "lon": -73.9268292 }, + { "lat": 40.8550505, "lon": -73.9267511 }, + { "lat": 40.8550292, "lon": -73.9267135 }, + { "lat": 40.8550035, "lon": -73.9266721 }, + { "lat": 40.8549751, "lon": -73.9266411 }, + { "lat": 40.8549217, "lon": -73.9266257 }, + { "lat": 40.8548379, "lon": -73.9266521 }, + { "lat": 40.8547612, "lon": -73.9267032 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 852992099, + "bounds": { + "minlat": 40.7385578, + "minlon": -73.9996800, + "maxlat": 40.7389424, + "maxlon": -73.9994021 + }, + "nodes": [ + 7956044495, + 8310246340, + 42439823 + ], + "geometry": [ + { "lat": 40.7389424, "lon": -73.9994021 }, + { "lat": 40.7386503, "lon": -73.9996130 }, + { "lat": 40.7385578, "lon": -73.9996800 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 852992100, + "bounds": { + "minlat": 40.7410560, + "minlon": -73.9978620, + "maxlat": 40.7412462, + "maxlon": -73.9977202 + }, + "nodes": [ + 7956044494, + 8429213036, + 42429661 + ], + "geometry": [ + { "lat": 40.7412462, "lon": -73.9977202 }, + { "lat": 40.7411170, "lon": -73.9978166 }, + { "lat": 40.7410560, "lon": -73.9978620 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left|through|none|none", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 852992101, + "bounds": { + "minlat": 40.7372222, + "minlon": -74.0006278, + "maxlat": 40.7374083, + "maxlon": -74.0004957 + }, + "nodes": [ + 7956044490, + 8262308357, + 42439073 + ], + "geometry": [ + { "lat": 40.7374083, "lon": -74.0004957 }, + { "lat": 40.7372819, "lon": -74.0005854 }, + { "lat": 40.7372222, "lon": -74.0006278 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 852992102, + "bounds": { + "minlat": 40.7400719, + "minlon": -73.9985749, + "maxlat": 40.7410560, + "maxlon": -73.9978620 + }, + "nodes": [ + 42429661, + 8429213037, + 8429213029, + 42439275, + 8429213030, + 7956044496 + ], + "geometry": [ + { "lat": 40.7410560, "lon": -73.9978620 }, + { "lat": 40.7409995, "lon": -73.9979030 }, + { "lat": 40.7405275, "lon": -73.9982454 }, + { "lat": 40.7404700, "lon": -73.9982870 }, + { "lat": 40.7404094, "lon": -73.9983309 }, + { "lat": 40.7400719, "lon": -73.9985749 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 852992103, + "bounds": { + "minlat": 40.7368472, + "minlon": -74.0009171, + "maxlat": 40.7372222, + "maxlon": -74.0006278 + }, + "nodes": [ + 42439073, + 8262308358, + 7956044491 + ], + "geometry": [ + { "lat": 40.7372222, "lon": -74.0006278 }, + { "lat": 40.7371617, "lon": -74.0006745 }, + { "lat": 40.7368472, "lon": -74.0009171 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left|through||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 852992104, + "bounds": { + "minlat": 40.7355352, + "minlon": -74.0016967, + "maxlat": 40.7355989, + "maxlon": -74.0016581 + }, + "nodes": [ + 7956044492, + 42430818 + ], + "geometry": [ + { "lat": 40.7355989, "lon": -74.0016581 }, + { "lat": 40.7355352, "lon": -74.0016967 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|||" + } +}, +{ + "type": "way", + "id": 852992105, + "bounds": { + "minlat": 40.7345778, + "minlon": -74.0022578, + "maxlat": 40.7355352, + "maxlon": -74.0016967 + }, + "nodes": [ + 42430818, + 8752921354, + 5244228882, + 8307642080, + 42430813, + 8307642085, + 7956044493 + ], + "geometry": [ + { "lat": 40.7355352, "lon": -74.0016967 }, + { "lat": 40.7354191, "lon": -74.0017646 }, + { "lat": 40.7353477, "lon": -74.0018064 }, + { "lat": 40.7351285, "lon": -74.0019401 }, + { "lat": 40.7350811, "lon": -74.0019681 }, + { "lat": 40.7350206, "lon": -74.0020038 }, + { "lat": 40.7345778, "lon": -74.0022578 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 852992106, + "bounds": { + "minlat": 40.7365975, + "minlon": -74.0011098, + "maxlat": 40.7368472, + "maxlon": -74.0009171 + }, + "nodes": [ + 7956044491, + 5244228883, + 11062719793, + 42430828 + ], + "geometry": [ + { "lat": 40.7368472, "lon": -74.0009171 }, + { "lat": 40.7368168, "lon": -74.0009406 }, + { "lat": 40.7367035, "lon": -74.0010309 }, + { "lat": 40.7365975, "lon": -74.0011098 } + ], + "tags": { + "alt_name": "7 Avenue", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left|through||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 852992107, + "bounds": { + "minlat": 40.7422336, + "minlon": -73.9970019, + "maxlat": 40.7424120, + "maxlon": -73.9968701 + }, + "nodes": [ + 7956044489, + 12181309659, + 9683231694, + 42427374 + ], + "geometry": [ + { "lat": 40.7424120, "lon": -73.9968701 }, + { "lat": 40.7423331, "lon": -73.9969288 }, + { "lat": 40.7422888, "lon": -73.9969618 }, + { "lat": 40.7422336, "lon": -73.9970019 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 852992108, + "bounds": { + "minlat": 40.7398810, + "minlon": -73.9987130, + "maxlat": 40.7400719, + "maxlon": -73.9985749 + }, + "nodes": [ + 7956044496, + 8429213023, + 42439830 + ], + "geometry": [ + { "lat": 40.7400719, "lon": -73.9985749 }, + { "lat": 40.7399439, "lon": -73.9986696 }, + { "lat": 40.7398810, "lon": -73.9987130 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 852992109, + "bounds": { + "minlat": 40.7355989, + "minlon": -74.0016581, + "maxlat": 40.7357944, + "maxlon": -74.0015452 + }, + "nodes": [ + 42430824, + 8262308500, + 7956044492 + ], + "geometry": [ + { "lat": 40.7357944, "lon": -74.0015452 }, + { "lat": 40.7357505, "lon": -74.0015709 }, + { "lat": 40.7355989, "lon": -74.0016581 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 852992110, + "bounds": { + "minlat": 40.7337334, + "minlon": -74.0027408, + "maxlat": 40.7341670, + "maxlon": -74.0024942 + }, + "nodes": [ + 9297714752, + 5244228880, + 4320028815, + 4320028826 + ], + "geometry": [ + { "lat": 40.7341670, "lon": -74.0024942 }, + { "lat": 40.7339959, "lon": -74.0025915 }, + { "lat": 40.7338180, "lon": -74.0026947 }, + { "lat": 40.7337334, "lon": -74.0027408 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left|through||" + } +}, +{ + "type": "way", + "id": 852992111, + "bounds": { + "minlat": 40.7412462, + "minlon": -73.9977202, + "maxlat": 40.7422336, + "maxlon": -73.9970019 + }, + "nodes": [ + 42427374, + 9683231693, + 9683231668, + 42439834, + 9683231669, + 7956044494 + ], + "geometry": [ + { "lat": 40.7422336, "lon": -73.9970019 }, + { "lat": 40.7421743, "lon": -73.9970462 }, + { "lat": 40.7417092, "lon": -73.9973851 }, + { "lat": 40.7416420, "lon": -73.9974340 }, + { "lat": 40.7415922, "lon": -73.9974700 }, + { "lat": 40.7412462, "lon": -73.9977202 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 853193333, + "bounds": { + "minlat": 40.8686697, + "minlon": -73.9557070, + "maxlat": 40.8696655, + "maxlon": -73.9547123 + }, + "nodes": [ + 9283355939, + 9283355940, + 7958583258, + 7958583256, + 7958583255, + 7958583254, + 7958583253, + 7958583252, + 7958583249, + 9283355944, + 9283355941, + 7656323504 + ], + "geometry": [ + { "lat": 40.8696655, "lon": -73.9547123 }, + { "lat": 40.8693389, "lon": -73.9551520 }, + { "lat": 40.8693147, "lon": -73.9551846 }, + { "lat": 40.8692180, "lon": -73.9553112 }, + { "lat": 40.8690647, "lon": -73.9554779 }, + { "lat": 40.8688941, "lon": -73.9556401 }, + { "lat": 40.8688514, "lon": -73.9556738 }, + { "lat": 40.8688033, "lon": -73.9556968 }, + { "lat": 40.8687472, "lon": -73.9557070 }, + { "lat": 40.8687078, "lon": -73.9556262 }, + { "lat": 40.8686840, "lon": -73.9555473 }, + { "lat": 40.8686697, "lon": -73.9554373 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 853228978, + "bounds": { + "minlat": 40.7280763, + "minlon": -73.9748189, + "maxlat": 40.7285531, + "maxlon": -73.9745679 + }, + "nodes": [ + 7958994531, + 7958994532, + 7958994533, + 7958994534, + 7958994535, + 7958994536, + 7958994537 + ], + "geometry": [ + { "lat": 40.7280763, "lon": -73.9748189 }, + { "lat": 40.7281875, "lon": -73.9747339 }, + { "lat": 40.7282523, "lon": -73.9746863 }, + { "lat": 40.7283735, "lon": -73.9745923 }, + { "lat": 40.7284193, "lon": -73.9746085 }, + { "lat": 40.7284655, "lon": -73.9746248 }, + { "lat": 40.7285531, "lon": -73.9745679 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 853281908, + "bounds": { + "minlat": 40.7024149, + "minlon": -73.9417091, + "maxlat": 40.7024651, + "maxlon": -73.9411836 + }, + "nodes": [ + 42529856, + 7959552303, + 7959552304, + 7959552305 + ], + "geometry": [ + { "lat": 40.7024149, "lon": -73.9417091 }, + { "lat": 40.7024235, "lon": -73.9416000 }, + { "lat": 40.7024349, "lon": -73.9414961 }, + { "lat": 40.7024651, "lon": -73.9411836 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 853566970, + "bounds": { + "minlat": 40.8167641, + "minlon": -74.0085516, + "maxlat": 40.8169291, + "maxlon": -74.0081286 + }, + "nodes": [ + 7961450131, + 7961450133, + 7961450132, + 7961450150 + ], + "geometry": [ + { "lat": 40.8168914, "lon": -74.0081286 }, + { "lat": 40.8168990, "lon": -74.0082471 }, + { "lat": 40.8169291, "lon": -74.0084553 }, + { "lat": 40.8167641, "lon": -74.0085516 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 853566971, + "bounds": { + "minlat": 40.8165771, + "minlon": -74.0083126, + "maxlat": 40.8168990, + "maxlon": -74.0082471 + }, + "nodes": [ + 7961450133, + 7961450134 + ], + "geometry": [ + { "lat": 40.8168990, "lon": -74.0082471 }, + { "lat": 40.8165771, "lon": -74.0083126 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 853566972, + "bounds": { + "minlat": 40.8158813, + "minlon": -74.0107837, + "maxlat": 40.8171980, + "maxlon": -74.0083126 + }, + "nodes": [ + 7961450134, + 7961450135, + 7961450136, + 7961450137, + 7961450138, + 7961450139, + 7961450140, + 7961450141, + 11982583615, + 11982583614, + 11982583616, + 7961450142, + 11982583613, + 11982583612, + 11982583611, + 11982583617, + 11982583641, + 7961450143 + ], + "geometry": [ + { "lat": 40.8165771, "lon": -74.0083126 }, + { "lat": 40.8163635, "lon": -74.0083610 }, + { "lat": 40.8162449, "lon": -74.0084264 }, + { "lat": 40.8160272, "lon": -74.0086055 }, + { "lat": 40.8158813, "lon": -74.0087553 }, + { "lat": 40.8159479, "lon": -74.0088776 }, + { "lat": 40.8160152, "lon": -74.0089586 }, + { "lat": 40.8161111, "lon": -74.0090758 }, + { "lat": 40.8162457, "lon": -74.0092709 }, + { "lat": 40.8163666, "lon": -74.0094614 }, + { "lat": 40.8164035, "lon": -74.0095026 }, + { "lat": 40.8164522, "lon": -74.0095341 }, + { "lat": 40.8165034, "lon": -74.0095751 }, + { "lat": 40.8165601, "lon": -74.0096330 }, + { "lat": 40.8166077, "lon": -74.0096986 }, + { "lat": 40.8167823, "lon": -74.0100351 }, + { "lat": 40.8171450, "lon": -74.0107180 }, + { "lat": 40.8171980, "lon": -74.0107837 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 853566973, + "bounds": { + "minlat": 40.8165771, + "minlon": -74.0084005, + "maxlat": 40.8168990, + "maxlon": -74.0082471 + }, + "nodes": [ + 7961450134, + 7961450144, + 7961450145, + 7961450146, + 7961450147, + 7961450148, + 7961450149, + 7961450133 + ], + "geometry": [ + { "lat": 40.8165771, "lon": -74.0083126 }, + { "lat": 40.8166222, "lon": -74.0083528 }, + { "lat": 40.8166566, "lon": -74.0083744 }, + { "lat": 40.8167271, "lon": -74.0084005 }, + { "lat": 40.8167830, "lon": -74.0083971 }, + { "lat": 40.8168191, "lon": -74.0083721 }, + { "lat": 40.8168707, "lon": -74.0082881 }, + { "lat": 40.8168990, "lon": -74.0082471 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 853580213, + "bounds": { + "minlat": 40.7592630, + "minlon": -73.9214718, + "maxlat": 40.7594768, + "maxlon": -73.9209645 + }, + "nodes": [ + 7961545513, + 7961545516, + 7961545517, + 7961545514, + 7961545515, + 5488250130 + ], + "geometry": [ + { "lat": 40.7592630, "lon": -73.9209645 }, + { "lat": 40.7592979, "lon": -73.9210382 }, + { "lat": 40.7593121, "lon": -73.9210680 }, + { "lat": 40.7594070, "lon": -73.9212634 }, + { "lat": 40.7594534, "lon": -73.9213593 }, + { "lat": 40.7594768, "lon": -73.9214718 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 853603205, + "bounds": { + "minlat": 40.7151958, + "minlon": -73.9320742, + "maxlat": 40.7161061, + "maxlon": -73.9316294 + }, + "nodes": [ + 7961798282, + 7961798283, + 7961798284, + 7961803885, + 7961803886, + 7961803892, + 7961803887 + ], + "geometry": [ + { "lat": 40.7151958, "lon": -73.9320742 }, + { "lat": 40.7153019, "lon": -73.9316721 }, + { "lat": 40.7153276, "lon": -73.9316353 }, + { "lat": 40.7153655, "lon": -73.9316294 }, + { "lat": 40.7154202, "lon": -73.9316353 }, + { "lat": 40.7160140, "lon": -73.9319015 }, + { "lat": 40.7161061, "lon": -73.9319428 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 853603206, + "bounds": { + "minlat": 40.7142325, + "minlon": -73.9303983, + "maxlat": 40.7142596, + "maxlon": -73.9299168 + }, + "nodes": [ + 7961803891, + 7961803889, + 9325509501, + 7961803890 + ], + "geometry": [ + { "lat": 40.7142596, "lon": -73.9303983 }, + { "lat": 40.7142349, "lon": -73.9301189 }, + { "lat": 40.7142325, "lon": -73.9300649 }, + { "lat": 40.7142527, "lon": -73.9299168 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 853603207, + "bounds": { + "minlat": 40.7142596, + "minlon": -73.9303983, + "maxlat": 40.7143917, + "maxlon": -73.9303780 + }, + "nodes": [ + 7961803891, + 9947391785, + 8842579367 + ], + "geometry": [ + { "lat": 40.7142596, "lon": -73.9303983 }, + { "lat": 40.7143421, "lon": -73.9303869 }, + { "lat": 40.7143917, "lon": -73.9303780 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 853603208, + "bounds": { + "minlat": 40.7140256, + "minlon": -73.9341667, + "maxlat": 40.7144199, + "maxlon": -73.9339373 + }, + "nodes": [ + 7961803893, + 5838943002, + 7961803894, + 7961803895, + 7961803896, + 7961803897, + 5838943047, + 7961803898 + ], + "geometry": [ + { "lat": 40.7144199, "lon": -73.9341456 }, + { "lat": 40.7143464, "lon": -73.9341496 }, + { "lat": 40.7140354, "lon": -73.9341667 }, + { "lat": 40.7140256, "lon": -73.9340108 }, + { "lat": 40.7140341, "lon": -73.9339597 }, + { "lat": 40.7140624, "lon": -73.9339498 }, + { "lat": 40.7143390, "lon": -73.9339400 }, + { "lat": 40.7144136, "lon": -73.9339373 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 853603209, + "bounds": { + "minlat": 40.7139623, + "minlon": -73.9344421, + "maxlat": 40.7140354, + "maxlon": -73.9341667 + }, + "nodes": [ + 7961803899, + 7961803900, + 7961803894 + ], + "geometry": [ + { "lat": 40.7139623, "lon": -73.9344421 }, + { "lat": 40.7139998, "lon": -73.9342520 }, + { "lat": 40.7140354, "lon": -73.9341667 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 853612524, + "bounds": { + "minlat": 40.7526348, + "minlon": -73.9383798, + "maxlat": 40.7530498, + "maxlon": -73.9375803 + }, + "nodes": [ + 7961868557, + 10744391827, + 7961868559, + 7961868560, + 10744391822, + 7961868558 + ], + "geometry": [ + { "lat": 40.7530498, "lon": -73.9383798 }, + { "lat": 40.7530101, "lon": -73.9383021 }, + { "lat": 40.7529963, "lon": -73.9382755 }, + { "lat": 40.7526874, "lon": -73.9376813 }, + { "lat": 40.7526762, "lon": -73.9376584 }, + { "lat": 40.7526348, "lon": -73.9375803 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 853612525, + "bounds": { + "minlat": 40.7522664, + "minlon": -73.9383682, + "maxlat": 40.7524788, + "maxlon": -73.9379206 + }, + "nodes": [ + 7069690913, + 10744391823, + 7833495851 + ], + "geometry": [ + { "lat": 40.7522664, "lon": -73.9379206 }, + { "lat": 40.7522990, "lon": -73.9379894 }, + { "lat": 40.7524788, "lon": -73.9383682 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 853612526, + "bounds": { + "minlat": 40.7521543, + "minlon": -73.9379023, + "maxlat": 40.7522862, + "maxlon": -73.9375219 + }, + "nodes": [ + 7961868561, + 11699225530, + 7961868562, + 7961868563, + 7961868564, + 7961868565 + ], + "geometry": [ + { "lat": 40.7522862, "lon": -73.9379023 }, + { "lat": 40.7522560, "lon": -73.9378408 }, + { "lat": 40.7521563, "lon": -73.9376376 }, + { "lat": 40.7521543, "lon": -73.9376141 }, + { "lat": 40.7521588, "lon": -73.9375865 }, + { "lat": 40.7522268, "lon": -73.9375219 } + ], + "tags": { + "highway": "service", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 853612527, + "bounds": { + "minlat": 40.7523874, + "minlon": -73.9405397, + "maxlat": 40.7526071, + "maxlon": -73.9401017 + }, + "nodes": [ + 7961868566, + 7961868568, + 8354876672, + 7961868567 + ], + "geometry": [ + { "lat": 40.7526071, "lon": -73.9405397 }, + { "lat": 40.7524478, "lon": -73.9402222 }, + { "lat": 40.7524266, "lon": -73.9401799 }, + { "lat": 40.7523874, "lon": -73.9401017 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 853619231, + "bounds": { + "minlat": 40.7283291, + "minlon": -73.9388285, + "maxlat": 40.7292267, + "maxlon": -73.9377077 + }, + "nodes": [ + 7833521871, + 7961980706, + 7961980707, + 7961980728, + 7961980708 + ], + "geometry": [ + { "lat": 40.7283291, "lon": -73.9388285 }, + { "lat": 40.7283588, "lon": -73.9384918 }, + { "lat": 40.7286315, "lon": -73.9381300 }, + { "lat": 40.7287553, "lon": -73.9380421 }, + { "lat": 40.7292267, "lon": -73.9377077 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 853619232, + "bounds": { + "minlat": 40.7282011, + "minlon": -73.9398103, + "maxlat": 40.7292686, + "maxlon": -73.9388285 + }, + "nodes": [ + 7833521871, + 7961980709, + 7961980710, + 7961980711, + 7961980712, + 7961980713, + 7961980714, + 7961980715, + 7961980716, + 7961980717 + ], + "geometry": [ + { "lat": 40.7283291, "lon": -73.9388285 }, + { "lat": 40.7282821, "lon": -73.9389840 }, + { "lat": 40.7282061, "lon": -73.9394691 }, + { "lat": 40.7282011, "lon": -73.9395744 }, + { "lat": 40.7282347, "lon": -73.9396336 }, + { "lat": 40.7283506, "lon": -73.9396566 }, + { "lat": 40.7287468, "lon": -73.9397023 }, + { "lat": 40.7288684, "lon": -73.9397220 }, + { "lat": 40.7292403, "lon": -73.9398070 }, + { "lat": 40.7292686, "lon": -73.9398103 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 853619233, + "bounds": { + "minlat": 40.7279026, + "minlon": -73.9408199, + "maxlat": 40.7290154, + "maxlon": -73.9403855 + }, + "nodes": [ + 7154269133, + 9788947417, + 7961980727, + 7961980726, + 7961980718, + 7961980719, + 7961980720, + 7961980721, + 7961980722, + 7961980723, + 7961980724, + 7833521872 + ], + "geometry": [ + { "lat": 40.7279026, "lon": -73.9403855 }, + { "lat": 40.7279849, "lon": -73.9403929 }, + { "lat": 40.7280093, "lon": -73.9403951 }, + { "lat": 40.7280947, "lon": -73.9404027 }, + { "lat": 40.7281288, "lon": -73.9404058 }, + { "lat": 40.7289432, "lon": -73.9405206 }, + { "lat": 40.7289980, "lon": -73.9405699 }, + { "lat": 40.7290154, "lon": -73.9406160 }, + { "lat": 40.7290080, "lon": -73.9407064 }, + { "lat": 40.7289843, "lon": -73.9408067 }, + { "lat": 40.7289407, "lon": -73.9408199 }, + { "lat": 40.7285850, "lon": -73.9407717 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 853619234, + "bounds": { + "minlat": 40.7280732, + "minlon": -73.9406751, + "maxlat": 40.7280947, + "maxlon": -73.9404027 + }, + "nodes": [ + 7961980725, + 7961980726 + ], + "geometry": [ + { "lat": 40.7280732, "lon": -73.9406751 }, + { "lat": 40.7280947, "lon": -73.9404027 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 853670017, + "bounds": { + "minlat": 40.8757350, + "minlon": -74.0196454, + "maxlat": 40.8776973, + "maxlon": -74.0145760 + }, + "nodes": [ + 103150119, + 103150121, + 103150123 + ], + "geometry": [ + { "lat": 40.8757350, "lon": -74.0145760 }, + { "lat": 40.8765930, "lon": -74.0168130 }, + { "lat": 40.8776973, "lon": -74.0196454 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 853806205, + "bounds": { + "minlat": 40.7197015, + "minlon": -73.9086734, + "maxlat": 40.7197120, + "maxlon": -73.9082580 + }, + "nodes": [ + 42788748, + 42788751 + ], + "geometry": [ + { "lat": 40.7197120, "lon": -73.9082580 }, + { "lat": 40.7197015, "lon": -73.9086734 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "58th", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "11378" + } +}, +{ + "type": "way", + "id": 853945872, + "bounds": { + "minlat": 40.7549281, + "minlon": -73.9553552, + "maxlat": 40.7549718, + "maxlon": -73.9552753 + }, + "nodes": [ + 7964276901, + 7964276896, + 7964276900 + ], + "geometry": [ + { "lat": 40.7549718, "lon": -73.9553552 }, + { "lat": 40.7549633, "lon": -73.9553419 }, + { "lat": 40.7549281, "lon": -73.9552753 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 855206821, + "bounds": { + "minlat": 40.7042292, + "minlon": -73.9452513, + "maxlat": 40.7042461, + "maxlon": -73.9450838 + }, + "nodes": [ + 5487698316, + 7975277103 + ], + "geometry": [ + { "lat": 40.7042292, "lon": -73.9452513 }, + { "lat": 40.7042461, "lon": -73.9450838 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 855206822, + "bounds": { + "minlat": 40.7042461, + "minlon": -73.9450838, + "maxlat": 40.7043336, + "maxlon": -73.9444541 + }, + "nodes": [ + 7975277103, + 7975277104, + 7975277105, + 13506385984, + 13506385985 + ], + "geometry": [ + { "lat": 40.7042461, "lon": -73.9450838 }, + { "lat": 40.7042699, "lon": -73.9450223 }, + { "lat": 40.7043109, "lon": -73.9446688 }, + { "lat": 40.7043202, "lon": -73.9445812 }, + { "lat": 40.7043336, "lon": -73.9444541 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 855216762, + "bounds": { + "minlat": 40.7867073, + "minlon": -73.9303672, + "maxlat": 40.7870156, + "maxlon": -73.9301150 + }, + "nodes": [ + 3037017911, + 9939158158, + 3037067032 + ], + "geometry": [ + { "lat": 40.7867073, "lon": -73.9303672 }, + { "lat": 40.7868140, "lon": -73.9302799 }, + { "lat": 40.7870156, "lon": -73.9301150 } + ], + "tags": { + "access": "private", + "disused:highway": "service", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 855240806, + "bounds": { + "minlat": 40.7309020, + "minlon": -73.9425144, + "maxlat": 40.7310116, + "maxlon": -73.9414973 + }, + "nodes": [ + 42495902, + 9788947423, + 7975565063, + 7975565064 + ], + "geometry": [ + { "lat": 40.7309020, "lon": -73.9425144 }, + { "lat": 40.7309111, "lon": -73.9424260 }, + { "lat": 40.7309209, "lon": -73.9423315 }, + { "lat": 40.7310116, "lon": -73.9414973 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 855251464, + "bounds": { + "minlat": 40.7430878, + "minlon": -73.9411277, + "maxlat": 40.7435045, + "maxlon": -73.9405692 + }, + "nodes": [ + 7975691600, + 10762203040, + 7975691601, + 7975691602, + 7975691603, + 7975691604 + ], + "geometry": [ + { "lat": 40.7430878, "lon": -73.9405692 }, + { "lat": 40.7431272, "lon": -73.9406392 }, + { "lat": 40.7431466, "lon": -73.9406737 }, + { "lat": 40.7433309, "lon": -73.9408307 }, + { "lat": 40.7434231, "lon": -73.9409566 }, + { "lat": 40.7435045, "lon": -73.9411277 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 855858452, + "bounds": { + "minlat": 40.7131126, + "minlon": -73.9098805, + "maxlat": 40.7135060, + "maxlon": -73.9095843 + }, + "nodes": [ + 7980856263, + 9755751815, + 7980856264, + 7980856265, + 7980856266, + 7980856274, + 7980856267, + 7980856268, + 7980856269, + 9755751814, + 5482323602 + ], + "geometry": [ + { "lat": 40.7131126, "lon": -73.9096183 }, + { "lat": 40.7131876, "lon": -73.9096090 }, + { "lat": 40.7133873, "lon": -73.9095843 }, + { "lat": 40.7134374, "lon": -73.9095857 }, + { "lat": 40.7134743, "lon": -73.9096100 }, + { "lat": 40.7134957, "lon": -73.9096613 }, + { "lat": 40.7135060, "lon": -73.9097355 }, + { "lat": 40.7134783, "lon": -73.9098219 }, + { "lat": 40.7133955, "lon": -73.9098624 }, + { "lat": 40.7132049, "lon": -73.9098754 }, + { "lat": 40.7131295, "lon": -73.9098805 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 855858453, + "bounds": { + "minlat": 40.7131025, + "minlon": -73.9096613, + "maxlat": 40.7134968, + "maxlon": -73.9094278 + }, + "nodes": [ + 5482323606, + 9755751813, + 7980856270, + 7980856271, + 7980856272, + 7980856273, + 7980856274 + ], + "geometry": [ + { "lat": 40.7131025, "lon": -73.9094601 }, + { "lat": 40.7131774, "lon": -73.9094523 }, + { "lat": 40.7134139, "lon": -73.9094278 }, + { "lat": 40.7134528, "lon": -73.9094278 }, + { "lat": 40.7134855, "lon": -73.9094602 }, + { "lat": 40.7134968, "lon": -73.9095290 }, + { "lat": 40.7134957, "lon": -73.9096613 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 855858454, + "bounds": { + "minlat": 40.7136373, + "minlon": -73.9085426, + "maxlat": 40.7141779, + "maxlon": -73.9075912 + }, + "nodes": [ + 7980856275, + 9759657450, + 7980856276 + ], + "geometry": [ + { "lat": 40.7141779, "lon": -73.9085426 }, + { "lat": 40.7141537, "lon": -73.9085001 }, + { "lat": 40.7136373, "lon": -73.9075912 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 855858455, + "bounds": { + "minlat": 40.7151784, + "minlon": -73.9072677, + "maxlat": 40.7155121, + "maxlon": -73.9066732 + }, + "nodes": [ + 7980856277, + 9759657441, + 7980856278, + 7980856279, + 7980856280 + ], + "geometry": [ + { "lat": 40.7155121, "lon": -73.9072677 }, + { "lat": 40.7154750, "lon": -73.9072040 }, + { "lat": 40.7154590, "lon": -73.9071765 }, + { "lat": 40.7152698, "lon": -73.9068496 }, + { "lat": 40.7151784, "lon": -73.9066732 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 855858456, + "bounds": { + "minlat": 40.7149897, + "minlon": -73.9085720, + "maxlat": 40.7154418, + "maxlon": -73.9077655 + }, + "nodes": [ + 7980856281, + 9759984146, + 7992260652, + 7980856282, + 7980856283, + 7980856284, + 7980890885, + 7980890886, + 42881224 + ], + "geometry": [ + { "lat": 40.7149897, "lon": -73.9077655 }, + { "lat": 40.7150175, "lon": -73.9078164 }, + { "lat": 40.7150249, "lon": -73.9078299 }, + { "lat": 40.7151617, "lon": -73.9080214 }, + { "lat": 40.7153094, "lon": -73.9082814 }, + { "lat": 40.7154089, "lon": -73.9084116 }, + { "lat": 40.7154418, "lon": -73.9084784 }, + { "lat": 40.7154350, "lon": -73.9085218 }, + { "lat": 40.7154010, "lon": -73.9085720 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 855866826, + "bounds": { + "minlat": 40.7031320, + "minlon": -73.9612626, + "maxlat": 40.7038227, + "maxlon": -73.9607745 + }, + "nodes": [ + 7980929182, + 9776829319, + 7980929183, + 7980929184, + 7980962785, + 7980962786 + ], + "geometry": [ + { "lat": 40.7038227, "lon": -73.9607745 }, + { "lat": 40.7037707, "lon": -73.9608524 }, + { "lat": 40.7037496, "lon": -73.9608841 }, + { "lat": 40.7036088, "lon": -73.9610580 }, + { "lat": 40.7035362, "lon": -73.9611229 }, + { "lat": 40.7031320, "lon": -73.9612626 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 855866827, + "bounds": { + "minlat": 40.7029602, + "minlon": -73.9612626, + "maxlat": 40.7031320, + "maxlon": -73.9606402 + }, + "nodes": [ + 7980962787, + 9779533081, + 7980962788, + 7980962789, + 7980962790, + 7980962786 + ], + "geometry": [ + { "lat": 40.7029602, "lon": -73.9606402 }, + { "lat": 40.7029833, "lon": -73.9607238 }, + { "lat": 40.7030171, "lon": -73.9608459 }, + { "lat": 40.7030343, "lon": -73.9609337 }, + { "lat": 40.7031047, "lon": -73.9612518 }, + { "lat": 40.7031320, "lon": -73.9612626 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856213055, + "bounds": { + "minlat": 40.7052970, + "minlon": -73.9718027, + "maxlat": 40.7059245, + "maxlon": -73.9709735 + }, + "nodes": [ + 7983556937, + 7983556938, + 7983556939, + 7983556940, + 7983556941, + 7983556942, + 7983556943, + 7983556944 + ], + "geometry": [ + { "lat": 40.7052970, "lon": -73.9711200 }, + { "lat": 40.7053755, "lon": -73.9710098 }, + { "lat": 40.7054167, "lon": -73.9709735 }, + { "lat": 40.7054542, "lon": -73.9709768 }, + { "lat": 40.7055594, "lon": -73.9711204 }, + { "lat": 40.7059245, "lon": -73.9716132 }, + { "lat": 40.7058953, "lon": -73.9716923 }, + { "lat": 40.7057910, "lon": -73.9718027 } + ], + "tags": { + "access": "destination", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856231766, + "bounds": { + "minlat": 40.7163659, + "minlon": -73.9068898, + "maxlat": 40.7173118, + "maxlon": -73.9066567 + }, + "nodes": [ + 7983753711, + 9759984288, + 7983753712, + 7983753713, + 7983753714, + 7983753715, + 7983753716, + 7983753717, + 7983753718, + 7983753719, + 7983753720, + 7983753721, + 7983753722, + 7983753723, + 7983753724, + 7983753725, + 7983753726, + 7983753727, + 7983753728, + 9759984292, + 7983753729 + ], + "geometry": [ + { "lat": 40.7163659, "lon": -73.9066567 }, + { "lat": 40.7164204, "lon": -73.9066699 }, + { "lat": 40.7165063, "lon": -73.9066906 }, + { "lat": 40.7165148, "lon": -73.9066906 }, + { "lat": 40.7165246, "lon": -73.9066889 }, + { "lat": 40.7167242, "lon": -73.9067410 }, + { "lat": 40.7167393, "lon": -73.9067447 }, + { "lat": 40.7167467, "lon": -73.9067503 }, + { "lat": 40.7167606, "lon": -73.9067601 }, + { "lat": 40.7167712, "lon": -73.9067699 }, + { "lat": 40.7167946, "lon": -73.9067868 }, + { "lat": 40.7169431, "lon": -73.9068177 }, + { "lat": 40.7169895, "lon": -73.9068260 }, + { "lat": 40.7169946, "lon": -73.9068264 }, + { "lat": 40.7170018, "lon": -73.9068253 }, + { "lat": 40.7170178, "lon": -73.9068189 }, + { "lat": 40.7170375, "lon": -73.9068110 }, + { "lat": 40.7170480, "lon": -73.9068101 }, + { "lat": 40.7170901, "lon": -73.9068212 }, + { "lat": 40.7172509, "lon": -73.9068709 }, + { "lat": 40.7173118, "lon": -73.9068898 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 856236080, + "bounds": { + "minlat": 40.7222550, + "minlon": -73.9814200, + "maxlat": 40.7226880, + "maxlon": -73.9811227 + }, + "nodes": [ + 7983809929, + 7983809930, + 7983809932, + 8309479337, + 7983809931 + ], + "geometry": [ + { "lat": 40.7222550, "lon": -73.9814200 }, + { "lat": 40.7225785, "lon": -73.9811978 }, + { "lat": 40.7226184, "lon": -73.9811704 }, + { "lat": 40.7226310, "lon": -73.9811617 }, + { "lat": 40.7226880, "lon": -73.9811227 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856243110, + "bounds": { + "minlat": 40.8205754, + "minlon": -73.9170628, + "maxlat": 40.8209686, + "maxlon": -73.9166992 + }, + "nodes": [ + 13450223167, + 7983876138, + 7983876139, + 7983876140, + 7983876141, + 13450223166, + 7983876142, + 7983876143, + 13450223165, + 7983876144, + 13450223164, + 13450223167 + ], + "geometry": [ + { "lat": 40.8205810, "lon": -73.9168489 }, + { "lat": 40.8205754, "lon": -73.9168799 }, + { "lat": 40.8206158, "lon": -73.9170628 }, + { "lat": 40.8207099, "lon": -73.9170236 }, + { "lat": 40.8209522, "lon": -73.9169286 }, + { "lat": 40.8209686, "lon": -73.9169014 }, + { "lat": 40.8209682, "lon": -73.9168707 }, + { "lat": 40.8209379, "lon": -73.9167348 }, + { "lat": 40.8209220, "lon": -73.9167096 }, + { "lat": 40.8208999, "lon": -73.9166992 }, + { "lat": 40.8206033, "lon": -73.9168230 }, + { "lat": 40.8205810, "lon": -73.9168489 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856262891, + "bounds": { + "minlat": 40.7295772, + "minlon": -73.9248337, + "maxlat": 40.7302171, + "maxlon": -73.9245985 + }, + "nodes": [ + 7984020250, + 7984020251, + 7984020252 + ], + "geometry": [ + { "lat": 40.7302171, "lon": -73.9245985 }, + { "lat": 40.7300626, "lon": -73.9246540 }, + { "lat": 40.7295772, "lon": -73.9248337 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 856272290, + "bounds": { + "minlat": 40.7009583, + "minlon": -73.9321829, + "maxlat": 40.7011774, + "maxlon": -73.9318959 + }, + "nodes": [ + 7984090574, + 9755788654, + 7984090576, + 7984090580, + 7984090581, + 7984090579, + 7984090578, + 7984090575 + ], + "geometry": [ + { "lat": 40.7009583, "lon": -73.9318959 }, + { "lat": 40.7010042, "lon": -73.9319709 }, + { "lat": 40.7010173, "lon": -73.9319923 }, + { "lat": 40.7011256, "lon": -73.9321723 }, + { "lat": 40.7011364, "lon": -73.9321829 }, + { "lat": 40.7011483, "lon": -73.9321823 }, + { "lat": 40.7011606, "lon": -73.9321794 }, + { "lat": 40.7011774, "lon": -73.9321718 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856272291, + "bounds": { + "minlat": 40.7011774, + "minlon": -73.9321718, + "maxlat": 40.7017441, + "maxlon": -73.9315913 + }, + "nodes": [ + 7984090575, + 7984090582, + 9755788642, + 7984090577 + ], + "geometry": [ + { "lat": 40.7011774, "lon": -73.9321718 }, + { "lat": 40.7016662, "lon": -73.9316711 }, + { "lat": 40.7016905, "lon": -73.9316462 }, + { "lat": 40.7017441, "lon": -73.9315913 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 856274115, + "bounds": { + "minlat": 40.7340191, + "minlon": -73.9186159, + "maxlat": 40.7346649, + "maxlon": -73.9179688 + }, + "nodes": [ + 7984105258, + 10038425649, + 7984105261, + 7984105262 + ], + "geometry": [ + { "lat": 40.7340705, "lon": -73.9186159 }, + { "lat": 40.7340605, "lon": -73.9185253 }, + { "lat": 40.7340191, "lon": -73.9182075 }, + { "lat": 40.7346649, "lon": -73.9179688 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 856274116, + "bounds": { + "minlat": 40.7333368, + "minlon": -73.9191634, + "maxlat": 40.7347530, + "maxlon": -73.9188783 + }, + "nodes": [ + 7984105263, + 7984105265, + 7984105264 + ], + "geometry": [ + { "lat": 40.7347530, "lon": -73.9188783 }, + { "lat": 40.7342197, "lon": -73.9189857 }, + { "lat": 40.7333368, "lon": -73.9191634 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 856274117, + "bounds": { + "minlat": 40.7341829, + "minlon": -73.9189857, + "maxlat": 40.7342197, + "maxlon": -73.9185929 + }, + "nodes": [ + 7984105265, + 10762205502, + 7984105266 + ], + "geometry": [ + { "lat": 40.7342197, "lon": -73.9189857 }, + { "lat": 40.7341929, "lon": -73.9187001 }, + { "lat": 40.7341829, "lon": -73.9185929 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 856274118, + "bounds": { + "minlat": 40.7333865, + "minlon": -73.9193320, + "maxlat": 40.7347398, + "maxlon": -73.9190610 + }, + "nodes": [ + 7984105267, + 7984105270, + 7984105268 + ], + "geometry": [ + { "lat": 40.7347398, "lon": -73.9190610 }, + { "lat": 40.7342338, "lon": -73.9191623 }, + { "lat": 40.7333865, "lon": -73.9193320 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 856274119, + "bounds": { + "minlat": 40.7342338, + "minlon": -73.9195201, + "maxlat": 40.7342773, + "maxlon": -73.9191623 + }, + "nodes": [ + 7984105269, + 10762205501, + 7984105270 + ], + "geometry": [ + { "lat": 40.7342773, "lon": -73.9195201 }, + { "lat": 40.7342692, "lon": -73.9194537 }, + { "lat": 40.7342338, "lon": -73.9191623 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 856274478, + "bounds": { + "minlat": 40.7372071, + "minlon": -73.9175198, + "maxlat": 40.7377981, + "maxlon": -73.9174277 + }, + "nodes": [ + 7984116004, + 10743722402, + 7984116005, + 7984116006, + 7984116007, + 7984116008 + ], + "geometry": [ + { "lat": 40.7372071, "lon": -73.9175198 }, + { "lat": 40.7372791, "lon": -73.9175103 }, + { "lat": 40.7372976, "lon": -73.9175079 }, + { "lat": 40.7374108, "lon": -73.9174978 }, + { "lat": 40.7374793, "lon": -73.9175018 }, + { "lat": 40.7377981, "lon": -73.9174277 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 856274479, + "bounds": { + "minlat": 40.7376326, + "minlon": -73.9211951, + "maxlat": 40.7388392, + "maxlon": -73.9208769 + }, + "nodes": [ + 5482411057, + 10743722428, + 7984116010, + 7984116011, + 7984116012, + 7984116013 + ], + "geometry": [ + { "lat": 40.7376326, "lon": -73.9211951 }, + { "lat": 40.7377031, "lon": -73.9211786 }, + { "lat": 40.7377499, "lon": -73.9211675 }, + { "lat": 40.7378390, "lon": -73.9211163 }, + { "lat": 40.7379686, "lon": -73.9210466 }, + { "lat": 40.7388392, "lon": -73.9208769 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 856274545, + "bounds": { + "minlat": 40.7380658, + "minlon": -73.9433545, + "maxlat": 40.7383907, + "maxlon": -73.9410668 + }, + "nodes": [ + 4954941175, + 7984118786, + 7984118787, + 7984118788, + 7984118789, + 7984118790, + 7984118791, + 7984118792 + ], + "geometry": [ + { "lat": 40.7380808, "lon": -73.9410668 }, + { "lat": 40.7380658, "lon": -73.9412364 }, + { "lat": 40.7380747, "lon": -73.9413998 }, + { "lat": 40.7381719, "lon": -73.9421883 }, + { "lat": 40.7383710, "lon": -73.9430882 }, + { "lat": 40.7383907, "lon": -73.9431683 }, + { "lat": 40.7383782, "lon": -73.9432767 }, + { "lat": 40.7383550, "lon": -73.9433545 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856284426, + "bounds": { + "minlat": 40.7163691, + "minlon": -73.9215380, + "maxlat": 40.7167950, + "maxlon": -73.9208228 + }, + "nodes": [ + 5176490242, + 10856212660, + 9353053459, + 7984121796, + 7984121797 + ], + "geometry": [ + { "lat": 40.7167950, "lon": -73.9215380 }, + { "lat": 40.7167349, "lon": -73.9214840 }, + { "lat": 40.7167073, "lon": -73.9214592 }, + { "lat": 40.7166978, "lon": -73.9214507 }, + { "lat": 40.7163691, "lon": -73.9208228 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856284427, + "bounds": { + "minlat": 40.7167542, + "minlon": -73.9223925, + "maxlat": 40.7174103, + "maxlon": -73.9217009 + }, + "nodes": [ + 7984121798, + 7984121803, + 7984121799, + 7984121800, + 7984121801, + 7984121802 + ], + "geometry": [ + { "lat": 40.7167542, "lon": -73.9217009 }, + { "lat": 40.7168572, "lon": -73.9218049 }, + { "lat": 40.7169327, "lon": -73.9218857 }, + { "lat": 40.7170374, "lon": -73.9220625 }, + { "lat": 40.7171463, "lon": -73.9222393 }, + { "lat": 40.7174103, "lon": -73.9223925 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856290358, + "bounds": { + "minlat": 40.7690696, + "minlon": -73.9329584, + "maxlat": 40.7694162, + "maxlon": -73.9322505 + }, + "nodes": [ + 7984260541, + 7984260542, + 7984260543, + 7984260544, + 7984260545, + 7984260546 + ], + "geometry": [ + { "lat": 40.7694162, "lon": -73.9329584 }, + { "lat": 40.7693924, "lon": -73.9329003 }, + { "lat": 40.7693812, "lon": -73.9328606 }, + { "lat": 40.7692296, "lon": -73.9325201 }, + { "lat": 40.7691400, "lon": -73.9324570 }, + { "lat": 40.7690696, "lon": -73.9322505 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856297386, + "bounds": { + "minlat": 40.7182858, + "minlon": -73.9101104, + "maxlat": 40.7185890, + "maxlon": -73.9095142 + }, + "nodes": [ + 7984312005, + 9759966673, + 7984312007, + 7984312006 + ], + "geometry": [ + { "lat": 40.7182858, "lon": -73.9101104 }, + { "lat": 40.7183112, "lon": -73.9100538 }, + { "lat": 40.7183363, "lon": -73.9099979 }, + { "lat": 40.7185890, "lon": -73.9095142 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 856317407, + "bounds": { + "minlat": 40.7002106, + "minlon": -73.9370966, + "maxlat": 40.7006872, + "maxlon": -73.9367357 + }, + "nodes": [ + 7984498423, + 9301423354, + 7984498424, + 7984498425, + 7984498426, + 7984498427, + 7984498428, + 7984498429, + 7984498430, + 7984498431 + ], + "geometry": [ + { "lat": 40.7006872, "lon": -73.9368775 }, + { "lat": 40.7006402, "lon": -73.9369227 }, + { "lat": 40.7006223, "lon": -73.9369353 }, + { "lat": 40.7005064, "lon": -73.9370487 }, + { "lat": 40.7004484, "lon": -73.9370966 }, + { "lat": 40.7004128, "lon": -73.9370846 }, + { "lat": 40.7003817, "lon": -73.9370470 }, + { "lat": 40.7003347, "lon": -73.9369619 }, + { "lat": 40.7002725, "lon": -73.9368659 }, + { "lat": 40.7002106, "lon": -73.9367357 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856321963, + "bounds": { + "minlat": 40.7649950, + "minlon": -73.9363028, + "maxlat": 40.7652381, + "maxlon": -73.9355707 + }, + "nodes": [ + 7984544307, + 7984544308, + 7984544309, + 7984544310, + 2509345516 + ], + "geometry": [ + { "lat": 40.7649950, "lon": -73.9355707 }, + { "lat": 40.7650205, "lon": -73.9356299 }, + { "lat": 40.7650404, "lon": -73.9356654 }, + { "lat": 40.7651289, "lon": -73.9359058 }, + { "lat": 40.7652381, "lon": -73.9363028 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856326851, + "bounds": { + "minlat": 40.7624411, + "minlon": -73.9065866, + "maxlat": 40.7631081, + "maxlon": -73.9062119 + }, + "nodes": [ + 7984575184, + 7984585485, + 7984585486, + 7984585487, + 7984585488, + 7984585489 + ], + "geometry": [ + { "lat": 40.7624411, "lon": -73.9062560 }, + { "lat": 40.7624651, "lon": -73.9063243 }, + { "lat": 40.7625771, "lon": -73.9065711 }, + { "lat": 40.7626262, "lon": -73.9065866 }, + { "lat": 40.7627920, "lon": -73.9064636 }, + { "lat": 40.7631081, "lon": -73.9062119 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 856333574, + "bounds": { + "minlat": 40.7408692, + "minlon": -73.9437579, + "maxlat": 40.7414385, + "maxlon": -73.9436088 + }, + "nodes": [ + 7984589522, + 8926818332, + 7984589523, + 7984589524 + ], + "geometry": [ + { "lat": 40.7414385, "lon": -73.9436088 }, + { "lat": 40.7413572, "lon": -73.9436308 }, + { "lat": 40.7413422, "lon": -73.9436348 }, + { "lat": 40.7408692, "lon": -73.9437579 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856335502, + "bounds": { + "minlat": 40.7392006, + "minlon": -73.9137358, + "maxlat": 40.7392847, + "maxlon": -73.9131079 + }, + "nodes": [ + 7984653647, + 7984653649 + ], + "geometry": [ + { "lat": 40.7392847, "lon": -73.9137358 }, + { "lat": 40.7392006, "lon": -73.9131079 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 856341581, + "bounds": { + "minlat": 40.7157297, + "minlon": -73.9259125, + "maxlat": 40.7161794, + "maxlon": -73.9256766 + }, + "nodes": [ + 5482675490, + 10840566520, + 7984698706, + 7984698704, + 7984698705 + ], + "geometry": [ + { "lat": 40.7157297, "lon": -73.9256766 }, + { "lat": 40.7157965, "lon": -73.9257221 }, + { "lat": 40.7158056, "lon": -73.9257299 }, + { "lat": 40.7160290, "lon": -73.9258350 }, + { "lat": 40.7161794, "lon": -73.9259125 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856342127, + "bounds": { + "minlat": 40.7642896, + "minlon": -73.9427604, + "maxlat": 40.7649417, + "maxlon": -73.9410494 + }, + "nodes": [ + 7984683133, + 7984683134, + 7984683135, + 7984683136, + 7984683137, + 7984683138 + ], + "geometry": [ + { "lat": 40.7642896, "lon": -73.9410494 }, + { "lat": 40.7643273, "lon": -73.9411489 }, + { "lat": 40.7643408, "lon": -73.9411815 }, + { "lat": 40.7646009, "lon": -73.9420109 }, + { "lat": 40.7648562, "lon": -73.9426726 }, + { "lat": 40.7649417, "lon": -73.9427604 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856354537, + "bounds": { + "minlat": 40.7485480, + "minlon": -73.9537189, + "maxlat": 40.7488546, + "maxlon": -73.9536161 + }, + "nodes": [ + 7984810781, + 7984810782, + 7984810783 + ], + "geometry": [ + { "lat": 40.7488546, "lon": -73.9536161 }, + { "lat": 40.7488237, "lon": -73.9536252 }, + { "lat": 40.7485480, "lon": -73.9537189 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856362254, + "bounds": { + "minlat": 40.7348437, + "minlon": -73.9456654, + "maxlat": 40.7351722, + "maxlon": -73.9450892 + }, + "nodes": [ + 42523815, + 7984826766, + 7984826767, + 7984826768, + 7984826769 + ], + "geometry": [ + { "lat": 40.7348437, "lon": -73.9450892 }, + { "lat": 40.7348700, "lon": -73.9451727 }, + { "lat": 40.7348686, "lon": -73.9452293 }, + { "lat": 40.7348560, "lon": -73.9456081 }, + { "lat": 40.7351722, "lon": -73.9456654 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856467890, + "bounds": { + "minlat": 40.8418306, + "minlon": -73.9392469, + "maxlat": 40.8420454, + "maxlon": -73.9392442 + }, + "nodes": [ + 2541754688, + 2541754682, + 13320061247 + ], + "geometry": [ + { "lat": 40.8418306, "lon": -73.9392469 }, + { "lat": 40.8418624, "lon": -73.9392442 }, + { "lat": 40.8420454, "lon": -73.9392448 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 856467892, + "bounds": { + "minlat": 40.8419188, + "minlon": -73.9391004, + "maxlat": 40.8422438, + "maxlon": -73.9388621 + }, + "nodes": [ + 7985644735, + 9566927258, + 42433041 + ], + "geometry": [ + { "lat": 40.8419188, "lon": -73.9391004 }, + { "lat": 40.8421864, "lon": -73.9389032 }, + { "lat": 40.8422438, "lon": -73.9388621 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 856467894, + "bounds": { + "minlat": 40.8387079, + "minlon": -73.9396180, + "maxlat": 40.8392960, + "maxlon": -73.9392390 + }, + "nodes": [ + 42437326, + 9569897420, + 9566997294, + 42455234 + ], + "geometry": [ + { "lat": 40.8387079, "lon": -73.9396180 }, + { "lat": 40.8387993, "lon": -73.9395747 }, + { "lat": 40.8392259, "lon": -73.9392714 }, + { "lat": 40.8392960, "lon": -73.9392390 } + ], + "tags": { + "cycleway:right": "no", + "highway": "tertiary", + "lane_markings": "no", + "maxspeed": "20 mph", + "maxspeed:type": "sign", + "name": "Audubon Avenue", + "name:etymology:wikidata": "Q182882", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Audubon", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q2870884", + "wikipedia": "en:Audubon Avenue" + } +}, +{ + "type": "way", + "id": 856477911, + "bounds": { + "minlat": 40.7460292, + "minlon": -73.9344235, + "maxlat": 40.7460689, + "maxlon": -73.9342537 + }, + "nodes": [ + 7667234473, + 42911782 + ], + "geometry": [ + { "lat": 40.7460689, "lon": -73.9342537 }, + { "lat": 40.7460292, "lon": -73.9344235 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 856477913, + "bounds": { + "minlat": 40.7470500, + "minlon": -73.9293531, + "maxlat": 40.7471531, + "maxlon": -73.9293295 + }, + "nodes": [ + 7985719891, + 10069637116, + 10069673217, + 10069673251, + 7667163645 + ], + "geometry": [ + { "lat": 40.7471531, "lon": -73.9293531 }, + { "lat": 40.7471231, "lon": -73.9293430 }, + { "lat": 40.7470969, "lon": -73.9293365 }, + { "lat": 40.7470742, "lon": -73.9293324 }, + { "lat": 40.7470500, "lon": -73.9293295 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "3", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Honeywell Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "through|right" + } +}, +{ + "type": "way", + "id": 856477914, + "bounds": { + "minlat": 40.7468949, + "minlon": -73.9302084, + "maxlat": 40.7471651, + "maxlon": -73.9301085 + }, + "nodes": [ + 10762202919, + 10762202920, + 11926978098, + 7985719896, + 7985719897 + ], + "geometry": [ + { "lat": 40.7471651, "lon": -73.9302084 }, + { "lat": 40.7470322, "lon": -73.9301589 }, + { "lat": 40.7470244, "lon": -73.9301560 }, + { "lat": 40.7470109, "lon": -73.9301510 }, + { "lat": 40.7468949, "lon": -73.9301085 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 856595409, + "bounds": { + "minlat": 40.7226416, + "minlon": -73.9378391, + "maxlat": 40.7231661, + "maxlon": -73.9374319 + }, + "nodes": [ + 7986594350, + 9937834355, + 7986594351, + 7986594365, + 7986594352, + 7986594353, + 7986594354, + 7986594355, + 7986594356, + 7986594357, + 7986594358, + 7986594359, + 7986594360, + 7986594361, + 7986594362, + 7986594363, + 7986594364, + 7986594365 + ], + "geometry": [ + { "lat": 40.7231661, "lon": -73.9378391 }, + { "lat": 40.7231066, "lon": -73.9378134 }, + { "lat": 40.7230918, "lon": -73.9378070 }, + { "lat": 40.7230443, "lon": -73.9377845 }, + { "lat": 40.7229912, "lon": -73.9377594 }, + { "lat": 40.7228963, "lon": -73.9377080 }, + { "lat": 40.7228480, "lon": -73.9376742 }, + { "lat": 40.7226570, "lon": -73.9375926 }, + { "lat": 40.7226416, "lon": -73.9375570 }, + { "lat": 40.7226725, "lon": -73.9374319 }, + { "lat": 40.7226967, "lon": -73.9374373 }, + { "lat": 40.7227593, "lon": -73.9374541 }, + { "lat": 40.7228106, "lon": -73.9374929 }, + { "lat": 40.7228810, "lon": -73.9375128 }, + { "lat": 40.7229636, "lon": -73.9375500 }, + { "lat": 40.7230749, "lon": -73.9376009 }, + { "lat": 40.7230810, "lon": -73.9376365 }, + { "lat": 40.7230443, "lon": -73.9377845 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856598050, + "bounds": { + "minlat": 40.7406187, + "minlon": -73.9272391, + "maxlat": 40.7416520, + "maxlon": -73.9270364 + }, + "nodes": [ + 10774439529, + 7986647164, + 13121217256, + 7986647165 + ], + "geometry": [ + { "lat": 40.7416520, "lon": -73.9270364 }, + { "lat": 40.7412906, "lon": -73.9271013 }, + { "lat": 40.7409976, "lon": -73.9271614 }, + { "lat": 40.7406187, "lon": -73.9272391 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 856603905, + "bounds": { + "minlat": 40.7757552, + "minlon": -73.9286799, + "maxlat": 40.7761983, + "maxlon": -73.9281010 + }, + "nodes": [ + 7986674684, + 7986709385, + 7986709391, + 7986709386, + 7986709387, + 7986709388, + 7986709389, + 7986709390 + ], + "geometry": [ + { "lat": 40.7758554, "lon": -73.9286799 }, + { "lat": 40.7758125, "lon": -73.9286081 }, + { "lat": 40.7758041, "lon": -73.9285915 }, + { "lat": 40.7757552, "lon": -73.9284946 }, + { "lat": 40.7757914, "lon": -73.9284507 }, + { "lat": 40.7759431, "lon": -73.9283286 }, + { "lat": 40.7760711, "lon": -73.9282104 }, + { "lat": 40.7761983, "lon": -73.9281010 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856616015, + "bounds": { + "minlat": 40.7741480, + "minlon": -73.9315780, + "maxlat": 40.7744422, + "maxlon": -73.9314078 + }, + "nodes": [ + 5487886280, + 7986819723, + 7986819729, + 7986819726, + 7986819722 + ], + "geometry": [ + { "lat": 40.7741480, "lon": -73.9315780 }, + { "lat": 40.7742136, "lon": -73.9315400 }, + { "lat": 40.7742339, "lon": -73.9315283 }, + { "lat": 40.7742783, "lon": -73.9315026 }, + { "lat": 40.7744422, "lon": -73.9314078 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856616016, + "bounds": { + "minlat": 40.7741995, + "minlon": -73.9317361, + "maxlat": 40.7749014, + "maxlon": -73.9313693 + }, + "nodes": [ + 5863686049, + 7986819725, + 7986819728, + 7986819727, + 7986819724 + ], + "geometry": [ + { "lat": 40.7741995, "lon": -73.9317361 }, + { "lat": 40.7742646, "lon": -73.9317021 }, + { "lat": 40.7742854, "lon": -73.9316912 }, + { "lat": 40.7743286, "lon": -73.9316686 }, + { "lat": 40.7749014, "lon": -73.9313693 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856616017, + "bounds": { + "minlat": 40.7742783, + "minlon": -73.9316686, + "maxlat": 40.7743286, + "maxlon": -73.9315026 + }, + "nodes": [ + 7986819726, + 7986819727 + ], + "geometry": [ + { "lat": 40.7742783, "lon": -73.9315026 }, + { "lat": 40.7743286, "lon": -73.9316686 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856620246, + "bounds": { + "minlat": 40.8012789, + "minlon": -74.0045235, + "maxlat": 40.8016648, + "maxlon": -74.0040561 + }, + "nodes": [ + 7986873428, + 7986873429, + 7986873430, + 7986873431, + 12462761950, + 7986873432, + 4727867630 + ], + "geometry": [ + { "lat": 40.8012789, "lon": -74.0040561 }, + { "lat": 40.8013561, "lon": -74.0042341 }, + { "lat": 40.8013979, "lon": -74.0043286 }, + { "lat": 40.8014524, "lon": -74.0044066 }, + { "lat": 40.8015104, "lon": -74.0044642 }, + { "lat": 40.8015705, "lon": -74.0044973 }, + { "lat": 40.8016648, "lon": -74.0045235 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856626643, + "bounds": { + "minlat": 40.7269861, + "minlon": -73.9342297, + "maxlat": 40.7271457, + "maxlon": -73.9338551 + }, + "nodes": [ + 7986896466, + 9789356955, + 7986896467, + 7986896468, + 7986896469, + 7986896470 + ], + "geometry": [ + { "lat": 40.7270138, "lon": -73.9338551 }, + { "lat": 40.7270804, "lon": -73.9339306 }, + { "lat": 40.7270904, "lon": -73.9339419 }, + { "lat": 40.7271457, "lon": -73.9341033 }, + { "lat": 40.7271333, "lon": -73.9341489 }, + { "lat": 40.7269861, "lon": -73.9342297 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856626644, + "bounds": { + "minlat": 40.7269321, + "minlon": -73.9344927, + "maxlat": 40.7272406, + "maxlon": -73.9343174 + }, + "nodes": [ + 7986896471, + 9789356952, + 7986896472, + 7986896473 + ], + "geometry": [ + { "lat": 40.7269321, "lon": -73.9344927 }, + { "lat": 40.7270086, "lon": -73.9344514 }, + { "lat": 40.7270270, "lon": -73.9344414 }, + { "lat": 40.7272406, "lon": -73.9343174 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856655694, + "bounds": { + "minlat": 40.7285699, + "minlon": -73.9221634, + "maxlat": 40.7294920, + "maxlon": -73.9209076 + }, + "nodes": [ + 7987132561, + 7987132562, + 7987132563, + 7987132564, + 7987132565, + 7987132566, + 7987132567, + 7987132568, + 7987132569 + ], + "geometry": [ + { "lat": 40.7294920, "lon": -73.9221026 }, + { "lat": 40.7294056, "lon": -73.9221306 }, + { "lat": 40.7292351, "lon": -73.9221634 }, + { "lat": 40.7290662, "lon": -73.9220867 }, + { "lat": 40.7288748, "lon": -73.9219335 }, + { "lat": 40.7288035, "lon": -73.9216356 }, + { "lat": 40.7287349, "lon": -73.9214510 }, + { "lat": 40.7286188, "lon": -73.9210104 }, + { "lat": 40.7285699, "lon": -73.9209076 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856655695, + "bounds": { + "minlat": 40.7287296, + "minlon": -73.9204948, + "maxlat": 40.7291163, + "maxlon": -73.9203444 + }, + "nodes": [ + 7987132570, + 7987132571, + 7987132572, + 7987132573 + ], + "geometry": [ + { "lat": 40.7291163, "lon": -73.9203444 }, + { "lat": 40.7289730, "lon": -73.9203903 }, + { "lat": 40.7288527, "lon": -73.9204389 }, + { "lat": 40.7287296, "lon": -73.9204948 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856655696, + "bounds": { + "minlat": 40.7290478, + "minlon": -73.9227630, + "maxlat": 40.7290922, + "maxlon": -73.9223578 + }, + "nodes": [ + 7987132577, + 7987132578, + 7987132579, + 7987132580 + ], + "geometry": [ + { "lat": 40.7290922, "lon": -73.9227630 }, + { "lat": 40.7290670, "lon": -73.9226416 }, + { "lat": 40.7290478, "lon": -73.9224865 }, + { "lat": 40.7290791, "lon": -73.9223578 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856655697, + "bounds": { + "minlat": 40.7286171, + "minlon": -73.9205487, + "maxlat": 40.7287296, + "maxlon": -73.9204948 + }, + "nodes": [ + 7987132575, + 7987132574, + 7987132573 + ], + "geometry": [ + { "lat": 40.7286171, "lon": -73.9205487 }, + { "lat": 40.7286852, "lon": -73.9205148 }, + { "lat": 40.7287296, "lon": -73.9204948 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 856655698, + "bounds": { + "minlat": 40.7285699, + "minlon": -73.9209076, + "maxlat": 40.7286171, + "maxlon": -73.9205487 + }, + "nodes": [ + 7987132575, + 7987132576, + 7987132569 + ], + "geometry": [ + { "lat": 40.7286171, "lon": -73.9205487 }, + { "lat": 40.7286120, "lon": -73.9206280 }, + { "lat": 40.7285699, "lon": -73.9209076 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856739384, + "bounds": { + "minlat": 40.7572212, + "minlon": -73.9423608, + "maxlat": 40.7576538, + "maxlon": -73.9417119 + }, + "nodes": [ + 7987870304, + 8334074886, + 8005463204, + 7987870305, + 7987870310, + 8005463205, + 8334074912, + 7987870311 + ], + "geometry": [ + { "lat": 40.7576538, "lon": -73.9423608 }, + { "lat": 40.7576120, "lon": -73.9422851 }, + { "lat": 40.7575837, "lon": -73.9422338 }, + { "lat": 40.7574062, "lon": -73.9419123 }, + { "lat": 40.7573479, "lon": -73.9419151 }, + { "lat": 40.7572698, "lon": -73.9417863 }, + { "lat": 40.7572607, "lon": -73.9417723 }, + { "lat": 40.7572212, "lon": -73.9417119 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856739385, + "bounds": { + "minlat": 40.7568863, + "minlon": -73.9404704, + "maxlat": 40.7573053, + "maxlon": -73.9396728 + }, + "nodes": [ + 7987870306, + 7987870307, + 7987870308, + 7987870309 + ], + "geometry": [ + { "lat": 40.7568863, "lon": -73.9396728 }, + { "lat": 40.7569364, "lon": -73.9397867 }, + { "lat": 40.7572732, "lon": -73.9404103 }, + { "lat": 40.7573053, "lon": -73.9404704 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 856806750, + "bounds": { + "minlat": 40.8318898, + "minlon": -73.9154871, + "maxlat": 40.8321429, + "maxlon": -73.9153588 + }, + "nodes": [ + 7988362529, + 12038440318, + 7988362530, + 7988362531 + ], + "geometry": [ + { "lat": 40.8318898, "lon": -73.9154871 }, + { "lat": 40.8319489, "lon": -73.9154528 }, + { "lat": 40.8319759, "lon": -73.9154372 }, + { "lat": 40.8321429, "lon": -73.9153588 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 857014556, + "bounds": { + "minlat": 40.8345087, + "minlon": -74.0059054, + "maxlat": 40.8347259, + "maxlon": -74.0053774 + }, + "nodes": [ + 7990407900, + 7990407901, + 7990407902, + 7990407903, + 7990407904, + 7990407905 + ], + "geometry": [ + { "lat": 40.8345087, "lon": -74.0053774 }, + { "lat": 40.8345840, "lon": -74.0055087 }, + { "lat": 40.8346810, "lon": -74.0056639 }, + { "lat": 40.8347187, "lon": -74.0057435 }, + { "lat": 40.8347259, "lon": -74.0057934 }, + { "lat": 40.8347014, "lon": -74.0059054 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 857059691, + "bounds": { + "minlat": 40.7236316, + "minlon": -73.9584594, + "maxlat": 40.7238273, + "maxlon": -73.9581394 + }, + "nodes": [ + 42469531, + 9789402677, + 7990796884, + 7990822485 + ], + "geometry": [ + { "lat": 40.7236316, "lon": -73.9581394 }, + { "lat": 40.7236860, "lon": -73.9582301 }, + { "lat": 40.7236920, "lon": -73.9582398 }, + { "lat": 40.7238273, "lon": -73.9584594 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 857093543, + "bounds": { + "minlat": 40.8811350, + "minlon": -73.9536207, + "maxlat": 40.8813442, + "maxlon": -73.9532802 + }, + "nodes": [ + 7991113590, + 7991113591 + ], + "geometry": [ + { "lat": 40.8811350, "lon": -73.9532802 }, + { "lat": 40.8813442, "lon": -73.9536207 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 857101687, + "bounds": { + "minlat": 40.8098186, + "minlon": -74.0157534, + "maxlat": 40.8102654, + "maxlon": -74.0152569 + }, + "nodes": [ + 7991173486, + 7991173488, + 7991173487 + ], + "geometry": [ + { "lat": 40.8102654, "lon": -74.0152569 }, + { "lat": 40.8101826, "lon": -74.0153489 }, + { "lat": 40.8098186, "lon": -74.0157534 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 857701638, + "bounds": { + "minlat": 40.7721120, + "minlon": -74.0135513, + "maxlat": 40.7722545, + "maxlon": -74.0132312 + }, + "nodes": [ + 7996406018, + 7441554306, + 103858326 + ], + "geometry": [ + { "lat": 40.7722545, "lon": -74.0135513 }, + { "lat": 40.7722242, "lon": -74.0134833 }, + { "lat": 40.7721120, "lon": -74.0132312 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09111120", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Pershing Road", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Pershing", + "tiger:name_base_1": "County Road 682", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "|right", + "wikidata": "Q7170177", + "wikipedia": "en:Pershing Road (Weehawken)" + } +}, +{ + "type": "way", + "id": 857701639, + "bounds": { + "minlat": 40.7722545, + "minlon": -74.0137361, + "maxlat": 40.7723367, + "maxlon": -74.0135513 + }, + "nodes": [ + 7996406019, + 7996406018 + ], + "geometry": [ + { "lat": 40.7723367, "lon": -74.0137361 }, + { "lat": 40.7722545, "lon": -74.0135513 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09111120", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Pershing Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Pershing", + "tiger:name_base_1": "County Road 682", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "wikidata": "Q7170177", + "wikipedia": "en:Pershing Road (Weehawken)" + } +}, +{ + "type": "way", + "id": 857701640, + "bounds": { + "minlat": 40.7718364, + "minlon": -74.0146642, + "maxlat": 40.7719851, + "maxlon": -74.0143371 + }, + "nodes": [ + 7996406020, + 307870554, + 7297023015, + 307870549 + ], + "geometry": [ + { "lat": 40.7718364, "lon": -74.0143371 }, + { "lat": 40.7718526, "lon": -74.0143742 }, + { "lat": 40.7719199, "lon": -74.0145182 }, + { "lat": 40.7719851, "lon": -74.0146642 } + ], + "tags": { + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Carlyle Court", + "name_1": "County Road 682", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Pershing", + "tiger:name_base_1": "County Road 682", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|right" + } +}, +{ + "type": "way", + "id": 857962334, + "bounds": { + "minlat": 40.8346400, + "minlon": -73.9875294, + "maxlat": 40.8347077, + "maxlon": -73.9872820 + }, + "nodes": [ + 103219178, + 7998541239 + ], + "geometry": [ + { "lat": 40.8346400, "lon": -73.9872820 }, + { "lat": 40.8347077, "lon": -73.9875294 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 857970816, + "bounds": { + "minlat": 40.8615782, + "minlon": -73.9180010, + "maxlat": 40.8619577, + "maxlon": -73.9175729 + }, + "nodes": [ + 7998566475, + 9561557605, + 7998566476, + 7998566477, + 7998566478, + 7998566479, + 7998566480, + 7998566481, + 7998566482, + 7998566483, + 7998566484 + ], + "geometry": [ + { "lat": 40.8615782, "lon": -73.9180010 }, + { "lat": 40.8616434, "lon": -73.9179490 }, + { "lat": 40.8616547, "lon": -73.9179399 }, + { "lat": 40.8616881, "lon": -73.9179129 }, + { "lat": 40.8617114, "lon": -73.9178776 }, + { "lat": 40.8617398, "lon": -73.9178063 }, + { "lat": 40.8617716, "lon": -73.9177485 }, + { "lat": 40.8618062, "lon": -73.9177027 }, + { "lat": 40.8618499, "lon": -73.9176547 }, + { "lat": 40.8618998, "lon": -73.9176157 }, + { "lat": 40.8619577, "lon": -73.9175729 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 857972419, + "bounds": { + "minlat": 40.8634799, + "minlon": -73.9124766, + "maxlat": 40.8645677, + "maxlon": -73.9111672 + }, + "nodes": [ + 7998614661, + 7998614667, + 7998614662, + 7998614663, + 7998614664, + 7998614665, + 7998614668, + 7998614666 + ], + "geometry": [ + { "lat": 40.8634799, "lon": -73.9117367 }, + { "lat": 40.8635312, "lon": -73.9118311 }, + { "lat": 40.8637523, "lon": -73.9122515 }, + { "lat": 40.8638289, "lon": -73.9123506 }, + { "lat": 40.8640809, "lon": -73.9124766 }, + { "lat": 40.8645677, "lon": -73.9120400 }, + { "lat": 40.8641558, "lon": -73.9112545 }, + { "lat": 40.8641101, "lon": -73.9111672 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 858047594, + "bounds": { + "minlat": 40.7976923, + "minlon": -74.0158813, + "maxlat": 40.7980467, + "maxlon": -74.0156091 + }, + "nodes": [ + 103867998, + 7999314014, + 7999314015, + 7999314016 + ], + "geometry": [ + { "lat": 40.7976923, "lon": -74.0158813 }, + { "lat": 40.7977406, "lon": -74.0158510 }, + { "lat": 40.7978774, "lon": -74.0157489 }, + { "lat": 40.7980467, "lon": -74.0156091 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 858047595, + "bounds": { + "minlat": 40.7978837, + "minlon": -74.0156091, + "maxlat": 40.7980467, + "maxlon": -74.0152036 + }, + "nodes": [ + 7999314016, + 7999314021, + 7999314022 + ], + "geometry": [ + { "lat": 40.7980467, "lon": -74.0156091 }, + { "lat": 40.7978972, "lon": -74.0152889 }, + { "lat": 40.7978837, "lon": -74.0152036 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 858047596, + "bounds": { + "minlat": 40.7980467, + "minlon": -74.0162724, + "maxlat": 40.7983427, + "maxlon": -74.0156091 + }, + "nodes": [ + 7999314016, + 7999314017, + 7999314019, + 7999314020, + 7999314018 + ], + "geometry": [ + { "lat": 40.7980467, "lon": -74.0156091 }, + { "lat": 40.7980920, "lon": -74.0156690 }, + { "lat": 40.7983202, "lon": -74.0161398 }, + { "lat": 40.7983147, "lon": -74.0162058 }, + { "lat": 40.7983427, "lon": -74.0162724 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 858048083, + "bounds": { + "minlat": 40.8104007, + "minlon": -73.9227190, + "maxlat": 40.8107509, + "maxlon": -73.9219307 + }, + "nodes": [ + 42761237, + 9908621379, + 12040821216, + 7999318902, + 7999318901 + ], + "geometry": [ + { "lat": 40.8104007, "lon": -73.9219307 }, + { "lat": 40.8104490, "lon": -73.9220436 }, + { "lat": 40.8104644, "lon": -73.9220797 }, + { "lat": 40.8104839, "lon": -73.9221254 }, + { "lat": 40.8107509, "lon": -73.9227190 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 858100588, + "bounds": { + "minlat": 40.7302687, + "minlon": -73.9613132, + "maxlat": 40.7309706, + "maxlon": -73.9611776 + }, + "nodes": [ + 42501781, + 9788947585, + 7999774885, + 9478443147, + 7999774886, + 9788947588, + 5070244733 + ], + "geometry": [ + { "lat": 40.7309706, "lon": -73.9613132 }, + { "lat": 40.7309127, "lon": -73.9613064 }, + { "lat": 40.7308761, "lon": -73.9613121 }, + { "lat": 40.7306246, "lon": -73.9612719 }, + { "lat": 40.7303394, "lon": -73.9611818 }, + { "lat": 40.7303204, "lon": -73.9611787 }, + { "lat": 40.7302687, "lon": -73.9611776 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 858416511, + "bounds": { + "minlat": 40.7383133, + "minlon": -73.9251090, + "maxlat": 40.7383984, + "maxlon": -73.9244135 + }, + "nodes": [ + 8002452388, + 10743722283, + 8002452389 + ], + "geometry": [ + { "lat": 40.7383133, "lon": -73.9244135 }, + { "lat": 40.7383222, "lon": -73.9244859 }, + { "lat": 40.7383984, "lon": -73.9251090 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 858438713, + "bounds": { + "minlat": 40.7227108, + "minlon": -74.0087724, + "maxlat": 40.7233509, + "maxlon": -74.0086618 + }, + "nodes": [ + 8002650346, + 8310246705, + 8002650351, + 12417324312, + 8002650347, + 8002650348, + 12417324311, + 8002650350, + 8310246706, + 8002650349 + ], + "geometry": [ + { "lat": 40.7233509, "lon": -74.0086618 }, + { "lat": 40.7232897, "lon": -74.0086725 }, + { "lat": 40.7232648, "lon": -74.0086765 }, + { "lat": 40.7231201, "lon": -74.0086989 }, + { "lat": 40.7230646, "lon": -74.0086969 }, + { "lat": 40.7229846, "lon": -74.0087099 }, + { "lat": 40.7229327, "lon": -74.0087346 }, + { "lat": 40.7227946, "lon": -74.0087609 }, + { "lat": 40.7227741, "lon": -74.0087639 }, + { "lat": 40.7227108, "lon": -74.0087724 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 858445683, + "bounds": { + "minlat": 40.7888392, + "minlon": -73.9737080, + "maxlat": 40.7890779, + "maxlon": -73.9734652 + }, + "nodes": [ + 8002696369, + 10042608490, + 8002696370, + 8002696371 + ], + "geometry": [ + { "lat": 40.7888392, "lon": -73.9737080 }, + { "lat": 40.7889020, "lon": -73.9736562 }, + { "lat": 40.7890779, "lon": -73.9735111 }, + { "lat": 40.7890602, "lon": -73.9734652 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 858463890, + "bounds": { + "minlat": 40.8011471, + "minlon": -73.9455084, + "maxlat": 40.8017754, + "maxlon": -73.9450462 + }, + "nodes": [ + 8002880948, + 10168729743, + 8002880949, + 8002880950, + 10168729745, + 8002880951 + ], + "geometry": [ + { "lat": 40.8017754, "lon": -73.9450462 }, + { "lat": 40.8017193, "lon": -73.9450855 }, + { "lat": 40.8017087, "lon": -73.9450923 }, + { "lat": 40.8012569, "lon": -73.9454167 }, + { "lat": 40.8012066, "lon": -73.9454577 }, + { "lat": 40.8011471, "lon": -73.9455084 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 858511694, + "bounds": { + "minlat": 40.8814179, + "minlon": -73.9222061, + "maxlat": 40.8816611, + "maxlon": -73.9217954 + }, + "nodes": [ + 8003296012, + 8003296013 + ], + "geometry": [ + { "lat": 40.8814179, "lon": -73.9217954 }, + { "lat": 40.8816611, "lon": -73.9222061 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 858893234, + "bounds": { + "minlat": 40.7121051, + "minlon": -73.9332887, + "maxlat": 40.7129671, + "maxlon": -73.9327780 + }, + "nodes": [ + 7229794603, + 8006515652, + 8006515653, + 8006515654, + 8006515655, + 8006515656, + 8006515657, + 8006515658 + ], + "geometry": [ + { "lat": 40.7121051, "lon": -73.9329244 }, + { "lat": 40.7125901, "lon": -73.9330916 }, + { "lat": 40.7126343, "lon": -73.9330647 }, + { "lat": 40.7127141, "lon": -73.9327780 }, + { "lat": 40.7129450, "lon": -73.9328855 }, + { "lat": 40.7129654, "lon": -73.9329527 }, + { "lat": 40.7129671, "lon": -73.9329818 }, + { "lat": 40.7128975, "lon": -73.9332887 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 858893235, + "bounds": { + "minlat": 40.7115938, + "minlon": -73.9327780, + "maxlat": 40.7127141, + "maxlon": -73.9323703 + }, + "nodes": [ + 8006515654, + 8006515663, + 8006515659, + 8006515660, + 8006515661, + 8006515662, + 7229794604 + ], + "geometry": [ + { "lat": 40.7127141, "lon": -73.9327780 }, + { "lat": 40.7122089, "lon": -73.9325598 }, + { "lat": 40.7117751, "lon": -73.9323725 }, + { "lat": 40.7117428, "lon": -73.9323703 }, + { "lat": 40.7117055, "lon": -73.9324016 }, + { "lat": 40.7116783, "lon": -73.9324621 }, + { "lat": 40.7115938, "lon": -73.9326947 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 858893236, + "bounds": { + "minlat": 40.7121051, + "minlon": -73.9329244, + "maxlat": 40.7122089, + "maxlon": -73.9325598 + }, + "nodes": [ + 7229794603, + 8006515663 + ], + "geometry": [ + { "lat": 40.7121051, "lon": -73.9329244 }, + { "lat": 40.7122089, "lon": -73.9325598 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 858965315, + "bounds": { + "minlat": 40.7495623, + "minlon": -73.9811233, + "maxlat": 40.7502832, + "maxlon": -73.9794227 + }, + "nodes": [ + 42445910, + 3997454662, + 12181374944, + 10171035523, + 561042194, + 12181374945, + 42453986 + ], + "geometry": [ + { "lat": 40.7502832, "lon": -73.9811233 }, + { "lat": 40.7502410, "lon": -73.9810285 }, + { "lat": 40.7497163, "lon": -73.9797702 }, + { "lat": 40.7496822, "lon": -73.9796934 }, + { "lat": 40.7496429, "lon": -73.9796046 }, + { "lat": 40.7495914, "lon": -73.9794883 }, + { "lat": 40.7495623, "lon": -73.9794227 } + ], + "tags": { + "alt_name": "E 38th st", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 38th Street", + "name:ru": "Восточная 38-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 858965316, + "bounds": { + "minlat": 40.7482498, + "minlon": -73.9779010, + "maxlat": 40.7489187, + "maxlon": -73.9763154 + }, + "nodes": [ + 42446945, + 10170983201, + 5340982006, + 12187343195, + 10125260554, + 42449938 + ], + "geometry": [ + { "lat": 40.7489187, "lon": -73.9779010 }, + { "lat": 40.7488755, "lon": -73.9777987 }, + { "lat": 40.7484514, "lon": -73.9767924 }, + { "lat": 40.7483221, "lon": -73.9764857 }, + { "lat": 40.7482994, "lon": -73.9764324 }, + { "lat": 40.7482498, "lon": -73.9763154 } + ], + "tags": { + "alt_name": "E 38th st", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 38th Street", + "name:ru": "Восточная 38-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 859208071, + "bounds": { + "minlat": 40.8249064, + "minlon": -73.9083423, + "maxlat": 40.8249857, + "maxlon": -73.9080284 + }, + "nodes": [ + 8009144423, + 8009144424, + 13247311058, + 8009144425 + ], + "geometry": [ + { "lat": 40.8249857, "lon": -73.9080284 }, + { "lat": 40.8249064, "lon": -73.9082022 }, + { "lat": 40.8249086, "lon": -73.9082239 }, + { "lat": 40.8249209, "lon": -73.9083423 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Boston Road", + "name:etymology:wikidata": "Q100", + "oneway": "yes", + "turn:lanes": "left|left;right" + } +}, +{ + "type": "way", + "id": 859208072, + "bounds": { + "minlat": 40.8249857, + "minlon": -73.9080284, + "maxlat": 40.8267456, + "maxlon": -73.9055812 + }, + "nodes": [ + 8009144423, + 13247311043, + 42742386, + 13247311041, + 3640112337, + 3640112336, + 42735063 + ], + "geometry": [ + { "lat": 40.8249857, "lon": -73.9080284 }, + { "lat": 40.8251813, "lon": -73.9078164 }, + { "lat": 40.8252140, "lon": -73.9077810 }, + { "lat": 40.8252846, "lon": -73.9077040 }, + { "lat": 40.8256007, "lon": -73.9073590 }, + { "lat": 40.8258284, "lon": -73.9070286 }, + { "lat": 40.8267456, "lon": -73.9055812 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Boston Road", + "name:etymology:wikidata": "Q100", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Boston", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 861011490, + "bounds": { + "minlat": 40.7680306, + "minlon": -73.9142112, + "maxlat": 40.7688299, + "maxlon": -73.9137173 + }, + "nodes": [ + 8024840926, + 8024840929, + 8024840927, + 8024840928 + ], + "geometry": [ + { "lat": 40.7680306, "lon": -73.9138345 }, + { "lat": 40.7680623, "lon": -73.9139007 }, + { "lat": 40.7682112, "lon": -73.9142112 }, + { "lat": 40.7688299, "lon": -73.9137173 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 861254596, + "bounds": { + "minlat": 40.8604905, + "minlon": -73.9325555, + "maxlat": 40.8609040, + "maxlon": -73.9322617 + }, + "nodes": [ + 8026940317, + 8026940318, + 8026940319, + 8026940327, + 8026940320, + 8026940321, + 8026940322, + 8026940323, + 8026940324, + 8026940325, + 8026940326 + ], + "geometry": [ + { "lat": 40.8605070, "lon": -73.9325555 }, + { "lat": 40.8604905, "lon": -73.9324754 }, + { "lat": 40.8605057, "lon": -73.9324203 }, + { "lat": 40.8605335, "lon": -73.9323771 }, + { "lat": 40.8605985, "lon": -73.9323307 }, + { "lat": 40.8606916, "lon": -73.9322905 }, + { "lat": 40.8607988, "lon": -73.9322667 }, + { "lat": 40.8608463, "lon": -73.9322617 }, + { "lat": 40.8608766, "lon": -73.9323067 }, + { "lat": 40.8608927, "lon": -73.9323504 }, + { "lat": 40.8609040, "lon": -73.9324661 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 863199170, + "bounds": { + "minlat": 40.8757899, + "minlon": -73.9090578, + "maxlat": 40.8772238, + "maxlon": -73.9083857 + }, + "nodes": [ + 5871416389, + 13300329555, + 10868090875, + 1725434934, + 5588601597, + 42435560, + 10128420015, + 1545097439, + 2302043703, + 1545097367, + 2302043704, + 1545097285, + 2302043705, + 42435567 + ], + "geometry": [ + { "lat": 40.8757899, "lon": -73.9083857 }, + { "lat": 40.8758428, "lon": -73.9083977 }, + { "lat": 40.8758732, "lon": -73.9084045 }, + { "lat": 40.8760100, "lon": -73.9084354 }, + { "lat": 40.8765394, "lon": -73.9084984 }, + { "lat": 40.8766844, "lon": -73.9085156 }, + { "lat": 40.8767406, "lon": -73.9085282 }, + { "lat": 40.8767827, "lon": -73.9085376 }, + { "lat": 40.8768286, "lon": -73.9085594 }, + { "lat": 40.8768708, "lon": -73.9085864 }, + { "lat": 40.8769225, "lon": -73.9086344 }, + { "lat": 40.8769597, "lon": -73.9086797 }, + { "lat": 40.8771745, "lon": -73.9089708 }, + { "lat": 40.8772238, "lon": -73.9090578 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "West 228th Street", + "name_1": "West 228 Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "228th", + "tiger:name_base_1": "228", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 863199171, + "bounds": { + "minlat": 40.8746718, + "minlon": -73.9097899, + "maxlat": 40.8757899, + "maxlon": -73.9083857 + }, + "nodes": [ + 5871416389, + 10128431592, + 5871416390, + 5871416391, + 10128431600, + 1544809891 + ], + "geometry": [ + { "lat": 40.8757899, "lon": -73.9083857 }, + { "lat": 40.8756845, "lon": -73.9085220 }, + { "lat": 40.8756623, "lon": -73.9085507 }, + { "lat": 40.8747972, "lon": -73.9096806 }, + { "lat": 40.8747674, "lon": -73.9097066 }, + { "lat": 40.8746718, "lon": -73.9097899 } + ], + "tags": { + "highway": "primary", + "lanes": "1", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "through", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 863199172, + "bounds": { + "minlat": 40.8756380, + "minlon": -73.9082537, + "maxlat": 40.8757704, + "maxlon": -73.9080852 + }, + "nodes": [ + 42429287, + 2303340704, + 10128431586, + 7189214950 + ], + "geometry": [ + { "lat": 40.8756380, "lon": -73.9082537 }, + { "lat": 40.8757178, "lon": -73.9081521 }, + { "lat": 40.8757312, "lon": -73.9081315 }, + { "lat": 40.8757704, "lon": -73.9080852 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 863771177, + "bounds": { + "minlat": 40.7662546, + "minlon": -73.9291945, + "maxlat": 40.7665286, + "maxlon": -73.9289293 + }, + "nodes": [ + 8047166439, + 8047166479, + 8047166442, + 8047166463, + 8047166482, + 8047166445 + ], + "geometry": [ + { "lat": 40.7662546, "lon": -73.9289293 }, + { "lat": 40.7662937, "lon": -73.9290090 }, + { "lat": 40.7663709, "lon": -73.9291834 }, + { "lat": 40.7664323, "lon": -73.9291945 }, + { "lat": 40.7665266, "lon": -73.9291293 }, + { "lat": 40.7665286, "lon": -73.9290797 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 864883517, + "bounds": { + "minlat": 40.8673010, + "minlon": -73.9898877, + "maxlat": 40.8679748, + "maxlon": -73.9890214 + }, + "nodes": [ + 8061356751, + 8061356749, + 8061356748, + 8061356747, + 103296564 + ], + "geometry": [ + { "lat": 40.8673010, "lon": -73.9894061 }, + { "lat": 40.8675448, "lon": -73.9898877 }, + { "lat": 40.8678318, "lon": -73.9896610 }, + { "lat": 40.8679748, "lon": -73.9894827 }, + { "lat": 40.8677508, "lon": -73.9890214 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 864891912, + "bounds": { + "minlat": 40.8670518, + "minlon": -73.9906292, + "maxlat": 40.8670870, + "maxlon": -73.9906042 + }, + "nodes": [ + 5704149043, + 8061443839 + ], + "geometry": [ + { "lat": 40.8670518, "lon": -73.9906292 }, + { "lat": 40.8670870, "lon": -73.9906042 } + ], + "tags": { + "access": "permissive", + "bridge": "yes", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 864891913, + "bounds": { + "minlat": 40.8666651, + "minlon": -73.9909458, + "maxlat": 40.8670518, + "maxlon": -73.9906292 + }, + "nodes": [ + 5704149040, + 5704149047, + 5704149041, + 5704149043 + ], + "geometry": [ + { "lat": 40.8666651, "lon": -73.9909458 }, + { "lat": 40.8669483, "lon": -73.9906989 }, + { "lat": 40.8669981, "lon": -73.9906640 }, + { "lat": 40.8670518, "lon": -73.9906292 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "name": "Schor Avenue", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 864896511, + "bounds": { + "minlat": 40.8635564, + "minlon": -73.9971565, + "maxlat": 40.8638901, + "maxlon": -73.9965141 + }, + "nodes": [ + 8061475572, + 8061475571, + 8061475570, + 8061475569 + ], + "geometry": [ + { "lat": 40.8637463, "lon": -73.9971565 }, + { "lat": 40.8638146, "lon": -73.9970197 }, + { "lat": 40.8638901, "lon": -73.9968735 }, + { "lat": 40.8635564, "lon": -73.9965141 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 864896513, + "bounds": { + "minlat": 40.8632062, + "minlon": -73.9963446, + "maxlat": 40.8644148, + "maxlon": -73.9957230 + }, + "nodes": [ + 2807153822, + 10941481093, + 2807153811, + 2468214131, + 2468214128, + 2468214193, + 2468214202, + 3743113594, + 2468214120, + 3743113590 + ], + "geometry": [ + { "lat": 40.8644148, "lon": -73.9957537 }, + { "lat": 40.8643424, "lon": -73.9957387 }, + { "lat": 40.8642865, "lon": -73.9957284 }, + { "lat": 40.8641395, "lon": -73.9957230 }, + { "lat": 40.8640114, "lon": -73.9957523 }, + { "lat": 40.8638448, "lon": -73.9958539 }, + { "lat": 40.8636319, "lon": -73.9960140 }, + { "lat": 40.8634307, "lon": -73.9961774 }, + { "lat": 40.8632893, "lon": -73.9962834 }, + { "lat": 40.8632062, "lon": -73.9963446 } + ], + "tags": { + "highway": "tertiary", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 865201003, + "bounds": { + "minlat": 40.8641827, + "minlon": -73.9896485, + "maxlat": 40.8643855, + "maxlon": -73.9893888 + }, + "nodes": [ + 8064257370, + 8064257369, + 8064257368, + 8064257367, + 8064257366, + 8064257365, + 8064257364, + 8064257363, + 8064257362, + 8064257361, + 8064257360 + ], + "geometry": [ + { "lat": 40.8642093, "lon": -73.9896485 }, + { "lat": 40.8641979, "lon": -73.9896101 }, + { "lat": 40.8641842, "lon": -73.9895470 }, + { "lat": 40.8641827, "lon": -73.9894921 }, + { "lat": 40.8642025, "lon": -73.9894418 }, + { "lat": 40.8642400, "lon": -73.9894096 }, + { "lat": 40.8642801, "lon": -73.9893888 }, + { "lat": 40.8643191, "lon": -73.9893935 }, + { "lat": 40.8643475, "lon": -73.9894310 }, + { "lat": 40.8643729, "lon": -73.9894847 }, + { "lat": 40.8643855, "lon": -73.9895211 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 865208896, + "bounds": { + "minlat": 40.8057952, + "minlon": -73.9160487, + "maxlat": 40.8061198, + "maxlon": -73.9158164 + }, + "nodes": [ + 8064351043, + 8064351044, + 13018635104, + 8064351045 + ], + "geometry": [ + { "lat": 40.8057952, "lon": -73.9160487 }, + { "lat": 40.8060012, "lon": -73.9158997 }, + { "lat": 40.8060461, "lon": -73.9158682 }, + { "lat": 40.8061198, "lon": -73.9158164 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 865208897, + "bounds": { + "minlat": 40.8029279, + "minlon": -73.9111342, + "maxlat": 40.8031961, + "maxlon": -73.9109683 + }, + "nodes": [ + 8064351046, + 8064351047, + 8064351048, + 13038955258, + 8064351049 + ], + "geometry": [ + { "lat": 40.8029279, "lon": -73.9111342 }, + { "lat": 40.8031050, "lon": -73.9110280 }, + { "lat": 40.8031248, "lon": -73.9110158 }, + { "lat": 40.8031435, "lon": -73.9110034 }, + { "lat": 40.8031961, "lon": -73.9109683 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 865209446, + "bounds": { + "minlat": 40.8614808, + "minlon": -73.9881337, + "maxlat": 40.8617390, + "maxlon": -73.9879510 + }, + "nodes": [ + 8064363277, + 103224113 + ], + "geometry": [ + { "lat": 40.8614808, "lon": -73.9881337 }, + { "lat": 40.8617390, "lon": -73.9879510 } + ], + "tags": { + "highway": "secondary", + "lanes:forward": "2", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 865209447, + "bounds": { + "minlat": 40.8605884, + "minlon": -73.9887636, + "maxlat": 40.8612157, + "maxlon": -73.9883212 + }, + "nodes": [ + 8064363278, + 6126762879, + 6126762859 + ], + "geometry": [ + { "lat": 40.8605884, "lon": -73.9887636 }, + { "lat": 40.8611797, "lon": -73.9883467 }, + { "lat": 40.8612157, "lon": -73.9883212 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "parking:lane": "diagonal", + "parking:lane:side": "right", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 865212460, + "bounds": { + "minlat": 40.8469895, + "minlon": -73.9230666, + "maxlat": 40.8473954, + "maxlon": -73.9224620 + }, + "nodes": [ + 8064385351, + 8064385352, + 8064385353, + 8064385354, + 8064385355, + 8064385356, + 12054487766, + 12054487767, + 8064385358, + 3457354819 + ], + "geometry": [ + { "lat": 40.8469895, "lon": -73.9230666 }, + { "lat": 40.8473670, "lon": -73.9228983 }, + { "lat": 40.8473809, "lon": -73.9228897 }, + { "lat": 40.8473915, "lon": -73.9228752 }, + { "lat": 40.8473954, "lon": -73.9228577 }, + { "lat": 40.8473948, "lon": -73.9228372 }, + { "lat": 40.8473396, "lon": -73.9226247 }, + { "lat": 40.8473313, "lon": -73.9225983 }, + { "lat": 40.8473210, "lon": -73.9225711 }, + { "lat": 40.8472601, "lon": -73.9224620 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 865339865, + "bounds": { + "minlat": 40.8583943, + "minlon": -73.9927389, + "maxlat": 40.8586171, + "maxlon": -73.9924524 + }, + "nodes": [ + 8065735255, + 8065735254, + 8065735253, + 8065735252, + 8065735251, + 8065735250, + 8065735249, + 8065735248, + 8065735247 + ], + "geometry": [ + { "lat": 40.8586171, "lon": -73.9926417 }, + { "lat": 40.8585687, "lon": -73.9926825 }, + { "lat": 40.8585160, "lon": -73.9927295 }, + { "lat": 40.8584541, "lon": -73.9927389 }, + { "lat": 40.8584146, "lon": -73.9927067 }, + { "lat": 40.8583943, "lon": -73.9926262 }, + { "lat": 40.8583973, "lon": -73.9925525 }, + { "lat": 40.8584633, "lon": -73.9924814 }, + { "lat": 40.8585056, "lon": -73.9924524 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 865345999, + "bounds": { + "minlat": 40.8585784, + "minlon": -73.9927324, + "maxlat": 40.8587686, + "maxlon": -73.9924908 + }, + "nodes": [ + 8065807896, + 8065807904, + 8065807897, + 8065807903, + 8065807902, + 8065807898, + 8065807901, + 8065807900, + 8065807899 + ], + "geometry": [ + { "lat": 40.8585784, "lon": -73.9925762 }, + { "lat": 40.8586742, "lon": -73.9924908 }, + { "lat": 40.8587026, "lon": -73.9924908 }, + { "lat": 40.8587391, "lon": -73.9925028 }, + { "lat": 40.8587625, "lon": -73.9925645 }, + { "lat": 40.8587686, "lon": -73.9926128 }, + { "lat": 40.8587574, "lon": -73.9926597 }, + { "lat": 40.8587138, "lon": -73.9926986 }, + { "lat": 40.8586732, "lon": -73.9927324 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 865395476, + "bounds": { + "minlat": 40.8643982, + "minlon": -73.9873924, + "maxlat": 40.8647652, + "maxlon": -73.9870756 + }, + "nodes": [ + 6126763042, + 8066237345, + 8066237347 + ], + "geometry": [ + { "lat": 40.8647652, "lon": -73.9870756 }, + { "lat": 40.8647471, "lon": -73.9871498 }, + { "lat": 40.8643982, "lon": -73.9873924 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 865395477, + "bounds": { + "minlat": 40.8645823, + "minlon": -73.9849618, + "maxlat": 40.8649943, + "maxlon": -73.9846736 + }, + "nodes": [ + 8066237352, + 10233515845, + 8066237351 + ], + "geometry": [ + { "lat": 40.8645823, "lon": -73.9849618 }, + { "lat": 40.8647960, "lon": -73.9848123 }, + { "lat": 40.8649943, "lon": -73.9846736 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 866151411, + "bounds": { + "minlat": 40.8675229, + "minlon": -73.9840210, + "maxlat": 40.8679566, + "maxlon": -73.9834969 + }, + "nodes": [ + 8073299988, + 8073299987, + 8073299977, + 8073299986, + 8073299978, + 8073299985, + 8073299984, + 8073299976, + 8073299983, + 8073299982, + 8073299981, + 8073299980, + 8073299979 + ], + "geometry": [ + { "lat": 40.8679100, "lon": -73.9834969 }, + { "lat": 40.8679515, "lon": -73.9836039 }, + { "lat": 40.8679566, "lon": -73.9836811 }, + { "lat": 40.8679530, "lon": -73.9837629 }, + { "lat": 40.8679388, "lon": -73.9838366 }, + { "lat": 40.8679119, "lon": -73.9839084 }, + { "lat": 40.8678729, "lon": -73.9839600 }, + { "lat": 40.8678440, "lon": -73.9839915 }, + { "lat": 40.8677902, "lon": -73.9840210 }, + { "lat": 40.8676959, "lon": -73.9839989 }, + { "lat": 40.8676087, "lon": -73.9839439 }, + { "lat": 40.8675529, "lon": -73.9838715 }, + { "lat": 40.8675229, "lon": -73.9837981 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 866167802, + "bounds": { + "minlat": 40.7505564, + "minlon": -73.9345418, + "maxlat": 40.7511260, + "maxlon": -73.9334004 + }, + "nodes": [ + 8073501866, + 8088591004, + 8073501873, + 13702935178, + 8073501867, + 13702935181, + 8073501868, + 8073501869, + 13702917533, + 8073501870, + 8073501871, + 13702935183, + 8073501872, + 13702935185, + 13702935184 + ], + "geometry": [ + { "lat": 40.7511260, "lon": -73.9345418 }, + { "lat": 40.7510505, "lon": -73.9344522 }, + { "lat": 40.7510296, "lon": -73.9344279 }, + { "lat": 40.7509876, "lon": -73.9343791 }, + { "lat": 40.7509439, "lon": -73.9343284 }, + { "lat": 40.7508580, "lon": -73.9342159 }, + { "lat": 40.7507959, "lon": -73.9341345 }, + { "lat": 40.7507696, "lon": -73.9340816 }, + { "lat": 40.7507571, "lon": -73.9339985 }, + { "lat": 40.7507329, "lon": -73.9338987 }, + { "lat": 40.7506961, "lon": -73.9338036 }, + { "lat": 40.7506782, "lon": -73.9337720 }, + { "lat": 40.7506524, "lon": -73.9337403 }, + { "lat": 40.7505564, "lon": -73.9336451 }, + { "lat": 40.7506610, "lon": -73.9334004 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 866184574, + "bounds": { + "minlat": 40.7547872, + "minlon": -73.9741363, + "maxlat": 40.7548811, + "maxlon": -73.9740578 + }, + "nodes": [ + 8073701750, + 10170640344, + 8073701751 + ], + "geometry": [ + { "lat": 40.7547872, "lon": -73.9741363 }, + { "lat": 40.7548440, "lon": -73.9740889 }, + { "lat": 40.7548811, "lon": -73.9740578 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 866184575, + "bounds": { + "minlat": 40.7541387, + "minlon": -73.9745317, + "maxlat": 40.7542489, + "maxlon": -73.9744534 + }, + "nodes": [ + 8073701752, + 11509720196, + 8073701753 + ], + "geometry": [ + { "lat": 40.7541387, "lon": -73.9745317 }, + { "lat": 40.7541964, "lon": -73.9744907 }, + { "lat": 40.7542489, "lon": -73.9744534 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 866242658, + "bounds": { + "minlat": 40.8369414, + "minlon": -73.9217118, + "maxlat": 40.8369947, + "maxlon": -73.9216251 + }, + "nodes": [ + 8074257016, + 8074257006, + 8074257010 + ], + "geometry": [ + { "lat": 40.8369453, "lon": -73.9216251 }, + { "lat": 40.8369947, "lon": -73.9216825 }, + { "lat": 40.8369414, "lon": -73.9217118 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 866242659, + "bounds": { + "minlat": 40.8368794, + "minlon": -73.9217118, + "maxlat": 40.8369414, + "maxlon": -73.9216364 + }, + "nodes": [ + 8074257010, + 8074262219 + ], + "geometry": [ + { "lat": 40.8369414, "lon": -73.9217118 }, + { "lat": 40.8368794, "lon": -73.9216364 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 866242660, + "bounds": { + "minlat": 40.8368409, + "minlon": -73.9217441, + "maxlat": 40.8368826, + "maxlon": -73.9216935 + }, + "nodes": [ + 8074257012, + 8074262220 + ], + "geometry": [ + { "lat": 40.8368826, "lon": -73.9217441 }, + { "lat": 40.8368409, "lon": -73.9216935 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 866242661, + "bounds": { + "minlat": 40.8369947, + "minlon": -73.9217610, + "maxlat": 40.8370247, + "maxlon": -73.9216825 + }, + "nodes": [ + 8074257006, + 13036597247, + 8074257014 + ], + "geometry": [ + { "lat": 40.8369947, "lon": -73.9216825 }, + { "lat": 40.8370022, "lon": -73.9217020 }, + { "lat": 40.8370247, "lon": -73.9217610 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 866242662, + "bounds": { + "minlat": 40.8367476, + "minlon": -73.9215018, + "maxlat": 40.8368393, + "maxlon": -73.9214073 + }, + "nodes": [ + 8074257009, + 13036597238, + 8074257015 + ], + "geometry": [ + { "lat": 40.8368393, "lon": -73.9215018 }, + { "lat": 40.8368300, "lon": -73.9214923 }, + { "lat": 40.8367476, "lon": -73.9214073 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 866242663, + "bounds": { + "minlat": 40.8368381, + "minlon": -73.9216364, + "maxlat": 40.8368794, + "maxlon": -73.9215861 + }, + "nodes": [ + 8074262219, + 8074262218 + ], + "geometry": [ + { "lat": 40.8368794, "lon": -73.9216364 }, + { "lat": 40.8368381, "lon": -73.9215861 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 866242664, + "bounds": { + "minlat": 40.8368081, + "minlon": -73.9215861, + "maxlat": 40.8368381, + "maxlon": -73.9215495 + }, + "nodes": [ + 8074262218, + 8074257011 + ], + "geometry": [ + { "lat": 40.8368381, "lon": -73.9215861 }, + { "lat": 40.8368081, "lon": -73.9215495 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 866242665, + "bounds": { + "minlat": 40.8368055, + "minlon": -73.9216935, + "maxlat": 40.8368409, + "maxlon": -73.9216505 + }, + "nodes": [ + 8074262220, + 8074262221 + ], + "geometry": [ + { "lat": 40.8368409, "lon": -73.9216935 }, + { "lat": 40.8368055, "lon": -73.9216505 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 866242666, + "bounds": { + "minlat": 40.8367701, + "minlon": -73.9216505, + "maxlat": 40.8368055, + "maxlon": -73.9216075 + }, + "nodes": [ + 8074262221, + 8074257013 + ], + "geometry": [ + { "lat": 40.8368055, "lon": -73.9216505 }, + { "lat": 40.8367701, "lon": -73.9216075 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 866242667, + "bounds": { + "minlat": 40.8368011, + "minlon": -73.9217758, + "maxlat": 40.8369414, + "maxlon": -73.9217118 + }, + "nodes": [ + 8074257010, + 8074257012, + 8074257007, + 8074262222 + ], + "geometry": [ + { "lat": 40.8369414, "lon": -73.9217118 }, + { "lat": 40.8368826, "lon": -73.9217441 }, + { "lat": 40.8368249, "lon": -73.9217758 }, + { "lat": 40.8368011, "lon": -73.9217503 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 866242668, + "bounds": { + "minlat": 40.8368685, + "minlon": -73.9216251, + "maxlat": 40.8369453, + "maxlon": -73.9215359 + }, + "nodes": [ + 8074262217, + 8074257016 + ], + "geometry": [ + { "lat": 40.8368685, "lon": -73.9215359 }, + { "lat": 40.8369453, "lon": -73.9216251 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 866242669, + "bounds": { + "minlat": 40.8367585, + "minlon": -73.9217503, + "maxlat": 40.8368011, + "maxlon": -73.9217047 + }, + "nodes": [ + 8074262222, + 8074262223 + ], + "geometry": [ + { "lat": 40.8368011, "lon": -73.9217503 }, + { "lat": 40.8367585, "lon": -73.9217047 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 866242670, + "bounds": { + "minlat": 40.8367290, + "minlon": -73.9217047, + "maxlat": 40.8368685, + "maxlon": -73.9215018 + }, + "nodes": [ + 8074262223, + 8074257008, + 8074257013, + 8074257011, + 8074257009, + 8074262217 + ], + "geometry": [ + { "lat": 40.8367585, "lon": -73.9217047 }, + { "lat": 40.8367290, "lon": -73.9216731 }, + { "lat": 40.8367701, "lon": -73.9216075 }, + { "lat": 40.8368081, "lon": -73.9215495 }, + { "lat": 40.8368393, "lon": -73.9215018 }, + { "lat": 40.8368685, "lon": -73.9215359 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 866351244, + "bounds": { + "minlat": 40.8617390, + "minlon": -73.9879510, + "maxlat": 40.8620800, + "maxlon": -73.9877120 + }, + "nodes": [ + 103224113, + 103224115 + ], + "geometry": [ + { "lat": 40.8617390, "lon": -73.9879510 }, + { "lat": 40.8620800, "lon": -73.9877120 } + ], + "tags": { + "highway": "tertiary", + "lanes:backward": "2", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 866351254, + "bounds": { + "minlat": 40.8601945, + "minlon": -73.9894780, + "maxlat": 40.8604097, + "maxlon": -73.9890424 + }, + "nodes": [ + 8075114220, + 8075114219, + 8075114218 + ], + "geometry": [ + { "lat": 40.8601945, "lon": -73.9890424 }, + { "lat": 40.8604097, "lon": -73.9894176 }, + { "lat": 40.8603504, "lon": -73.9894780 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 866499450, + "bounds": { + "minlat": 40.8673070, + "minlon": -73.9879100, + "maxlat": 40.8695836, + "maxlon": -73.9839550 + }, + "nodes": [ + 103224125, + 8073299994, + 13173658916, + 103206875, + 10288917566, + 10288917568, + 8076363718, + 103264936, + 6107676744, + 10174860035, + 103264933 + ], + "geometry": [ + { "lat": 40.8673070, "lon": -73.9839550 }, + { "lat": 40.8673654, "lon": -73.9840554 }, + { "lat": 40.8677097, "lon": -73.9846263 }, + { "lat": 40.8677662, "lon": -73.9847200 }, + { "lat": 40.8678093, "lon": -73.9847929 }, + { "lat": 40.8679212, "lon": -73.9849822 }, + { "lat": 40.8683393, "lon": -73.9856960 }, + { "lat": 40.8684723, "lon": -73.9859264 }, + { "lat": 40.8691213, "lon": -73.9870467 }, + { "lat": 40.8695346, "lon": -73.9878210 }, + { "lat": 40.8695836, "lon": -73.9879100 } + ], + "tags": { + "highway": "residential", + "name": "Christie Heights Street" + } +}, +{ + "type": "way", + "id": 866499453, + "bounds": { + "minlat": 40.8664342, + "minlon": -73.9884720, + "maxlat": 40.8686570, + "maxlon": -73.9845759 + }, + "nodes": [ + 103245609, + 10174860038, + 8076425403, + 103141318, + 103143503, + 103206873, + 8169649592, + 10164097244, + 8075114235, + 103224123 + ], + "geometry": [ + { "lat": 40.8686570, "lon": -73.9884720 }, + { "lat": 40.8686275, "lon": -73.9884228 }, + { "lat": 40.8686043, "lon": -73.9883842 }, + { "lat": 40.8677570, "lon": -73.9869710 }, + { "lat": 40.8673190, "lon": -73.9862400 }, + { "lat": 40.8668931, "lon": -73.9855086 }, + { "lat": 40.8668142, "lon": -73.9853682 }, + { "lat": 40.8666313, "lon": -73.9850054 }, + { "lat": 40.8664926, "lon": -73.9847033 }, + { "lat": 40.8664342, "lon": -73.9845759 } + ], + "tags": { + "highway": "residential", + "name": "Harrison Street" + } +}, +{ + "type": "way", + "id": 866512065, + "bounds": { + "minlat": 40.8518355, + "minlon": -74.0057234, + "maxlat": 40.8535062, + "maxlon": -74.0044380 + }, + "nodes": [ + 2468337439, + 8076501242, + 8076501241, + 8076501240, + 8076501239, + 8076501238, + 8076501237, + 8076501236, + 8076501235, + 3743176058 + ], + "geometry": [ + { "lat": 40.8518355, "lon": -74.0056947 }, + { "lat": 40.8520251, "lon": -74.0057234 }, + { "lat": 40.8522635, "lon": -74.0056738 }, + { "lat": 40.8524187, "lon": -74.0056095 }, + { "lat": 40.8527524, "lon": -74.0053211 }, + { "lat": 40.8529482, "lon": -74.0050221 }, + { "lat": 40.8531440, "lon": -74.0048356 }, + { "lat": 40.8533154, "lon": -74.0047015 }, + { "lat": 40.8534528, "lon": -74.0044836 }, + { "lat": 40.8535062, "lon": -74.0044380 } + ], + "tags": { + "highway": "track" + } +}, +{ + "type": "way", + "id": 867674874, + "bounds": { + "minlat": 40.7157604, + "minlon": -73.9101122, + "maxlat": 40.7161551, + "maxlon": -73.9093158 + }, + "nodes": [ + 42847272, + 8087664135, + 8087664134 + ], + "geometry": [ + { "lat": 40.7161551, "lon": -73.9101122 }, + { "lat": 40.7161105, "lon": -73.9100223 }, + { "lat": 40.7157604, "lon": -73.9093158 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 867699828, + "bounds": { + "minlat": 40.7041434, + "minlon": -73.9212277, + "maxlat": 40.7044880, + "maxlon": -73.9205695 + }, + "nodes": [ + 8087953269, + 9755789847, + 8087953273, + 8087953272 + ], + "geometry": [ + { "lat": 40.7041434, "lon": -73.9205695 }, + { "lat": 40.7041761, "lon": -73.9206398 }, + { "lat": 40.7041949, "lon": -73.9206703 }, + { "lat": 40.7044880, "lon": -73.9212277 } + ], + "tags": { + "access": "private", + "hgv": "no", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 867820743, + "bounds": { + "minlat": 40.7452269, + "minlon": -73.9136499, + "maxlat": 40.7452395, + "maxlon": -73.9135391 + }, + "nodes": [ + 8089066815, + 10762233973, + 8089088639 + ], + "geometry": [ + { "lat": 40.7452395, "lon": -73.9136499 }, + { "lat": 40.7452347, "lon": -73.9136078 }, + { "lat": 40.7452269, "lon": -73.9135391 } + ], + "tags": { + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 867821905, + "bounds": { + "minlat": 40.7734614, + "minlon": -73.9105371, + "maxlat": 40.7735394, + "maxlon": -73.9104351 + }, + "nodes": [ + 8089085866, + 9242368784, + 8089085865 + ], + "geometry": [ + { "lat": 40.7734614, "lon": -73.9104351 }, + { "lat": 40.7734934, "lon": -73.9104769 }, + { "lat": 40.7735394, "lon": -73.9105371 } + ], + "tags": { + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 868222182, + "bounds": { + "minlat": 40.8226558, + "minlon": -73.9200723, + "maxlat": 40.8227171, + "maxlon": -73.9200377 + }, + "nodes": [ + 42763582, + 1661234083 + ], + "geometry": [ + { "lat": 40.8226558, "lon": -73.9200723 }, + { "lat": 40.8227171, "lon": -73.9200377 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Concourse Village East", + "name:etymology:wikidata": "Q122566725", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 868415560, + "bounds": { + "minlat": 40.7062318, + "minlon": -74.0045173, + "maxlat": 40.7062729, + "maxlon": -74.0044257 + }, + "nodes": [ + 8094558971, + 9908306975, + 11356801180, + 8094558986 + ], + "geometry": [ + { "lat": 40.7062327, "lon": -74.0045173 }, + { "lat": 40.7062318, "lon": -74.0044901 }, + { "lat": 40.7062524, "lon": -74.0044552 }, + { "lat": 40.7062729, "lon": -74.0044257 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 868519427, + "bounds": { + "minlat": 40.7073753, + "minlon": -73.9202482, + "maxlat": 40.7080310, + "maxlon": -73.9195815 + }, + "nodes": [ + 8095563990, + 8095563991, + 9755751807, + 8095563995, + 8095563992, + 8095563993, + 8095563994 + ], + "geometry": [ + { "lat": 40.7080310, "lon": -73.9195815 }, + { "lat": 40.7079961, "lon": -73.9196148 }, + { "lat": 40.7079772, "lon": -73.9196346 }, + { "lat": 40.7079708, "lon": -73.9196413 }, + { "lat": 40.7078549, "lon": -73.9197510 }, + { "lat": 40.7075972, "lon": -73.9200215 }, + { "lat": 40.7073753, "lon": -73.9202482 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 868542504, + "bounds": { + "minlat": 40.7592764, + "minlon": -73.9966839, + "maxlat": 40.7593434, + "maxlon": -73.9966419 + }, + "nodes": [ + 8095866233, + 10169614499, + 8095866234 + ], + "geometry": [ + { "lat": 40.7593434, "lon": -73.9966419 }, + { "lat": 40.7593366, "lon": -73.9966457 }, + { "lat": 40.7592764, "lon": -73.9966839 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 868542505, + "bounds": { + "minlat": 40.7587875, + "minlon": -73.9954258, + "maxlat": 40.7588979, + "maxlon": -73.9953526 + }, + "nodes": [ + 8095866235, + 10171120533, + 8095866236 + ], + "geometry": [ + { "lat": 40.7588979, "lon": -73.9953526 }, + { "lat": 40.7588807, "lon": -73.9953634 }, + { "lat": 40.7587875, "lon": -73.9954258 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 868545244, + "bounds": { + "minlat": 40.7118100, + "minlon": -74.0095172, + "maxlat": 40.7118745, + "maxlon": -74.0094667 + }, + "nodes": [ + 8095882129, + 11411576716, + 11411576715, + 8095882130 + ], + "geometry": [ + { "lat": 40.7118745, "lon": -74.0094667 }, + { "lat": 40.7118669, "lon": -74.0094729 }, + { "lat": 40.7118490, "lon": -74.0094869 }, + { "lat": 40.7118100, "lon": -74.0095172 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 868590106, + "bounds": { + "minlat": 40.7629803, + "minlon": -73.9799766, + "maxlat": 40.7630541, + "maxlon": -73.9799221 + }, + "nodes": [ + 8096337617, + 11296226841, + 8096337618 + ], + "geometry": [ + { "lat": 40.7630541, "lon": -73.9799221 }, + { "lat": 40.7630428, "lon": -73.9799304 }, + { "lat": 40.7629803, "lon": -73.9799766 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 868590107, + "bounds": { + "minlat": 40.7629054, + "minlon": -73.9800314, + "maxlat": 40.7629803, + "maxlon": -73.9799766 + }, + "nodes": [ + 8096337618, + 11296226836, + 8096337619 + ], + "geometry": [ + { "lat": 40.7629803, "lon": -73.9799766 }, + { "lat": 40.7629186, "lon": -73.9800217 }, + { "lat": 40.7629054, "lon": -73.9800314 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 868634071, + "bounds": { + "minlat": 40.7104223, + "minlon": -73.9204240, + "maxlat": 40.7108721, + "maxlon": -73.9196013 + }, + "nodes": [ + 8096728324, + 9744131330, + 8096728325, + 8096728326 + ], + "geometry": [ + { "lat": 40.7108721, "lon": -73.9204240 }, + { "lat": 40.7108199, "lon": -73.9203275 }, + { "lat": 40.7107761, "lon": -73.9202464 }, + { "lat": 40.7104223, "lon": -73.9196013 } + ], + "tags": { + "access": "customers", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 868640519, + "bounds": { + "minlat": 40.7092420, + "minlon": -73.9692521, + "maxlat": 40.7094558, + "maxlon": -73.9689202 + }, + "nodes": [ + 8096797244, + 8096797245, + 8096797246, + 8096797247, + 8096797248, + 9132411775, + 7710939884 + ], + "geometry": [ + { "lat": 40.7094558, "lon": -73.9692521 }, + { "lat": 40.7094356, "lon": -73.9690630 }, + { "lat": 40.7094184, "lon": -73.9690018 }, + { "lat": 40.7093932, "lon": -73.9689712 }, + { "lat": 40.7093134, "lon": -73.9689272 }, + { "lat": 40.7092756, "lon": -73.9689235 }, + { "lat": 40.7092420, "lon": -73.9689202 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 868681307, + "bounds": { + "minlat": 40.7013413, + "minlon": -73.9778269, + "maxlat": 40.7019986, + "maxlon": -73.9770508 + }, + "nodes": [ + 42488906, + 8097141712, + 8097157017, + 8097141713, + 8097141714, + 12814117286, + 8097141715, + 10716574959, + 6474916506 + ], + "geometry": [ + { "lat": 40.7013413, "lon": -73.9778269 }, + { "lat": 40.7015244, "lon": -73.9777390 }, + { "lat": 40.7016391, "lon": -73.9777328 }, + { "lat": 40.7018678, "lon": -73.9777205 }, + { "lat": 40.7019986, "lon": -73.9775110 }, + { "lat": 40.7019873, "lon": -73.9774466 }, + { "lat": 40.7019402, "lon": -73.9771782 }, + { "lat": 40.7018965, "lon": -73.9771187 }, + { "lat": 40.7018467, "lon": -73.9770508 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 868681308, + "bounds": { + "minlat": 40.7016391, + "minlon": -73.9777328, + "maxlat": 40.7019402, + "maxlon": -73.9771782 + }, + "nodes": [ + 8097157017, + 8097141715 + ], + "geometry": [ + { "lat": 40.7016391, "lon": -73.9777328 }, + { "lat": 40.7019402, "lon": -73.9771782 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 868909556, + "bounds": { + "minlat": 40.8417455, + "minlon": -73.9224734, + "maxlat": 40.8418789, + "maxlon": -73.9223851 + }, + "nodes": [ + 2912071062, + 42745204 + ], + "geometry": [ + { "lat": 40.8418789, "lon": -73.9223851 }, + { "lat": 40.8417455, "lon": -73.9224734 } + ], + "tags": { + "highway": "residential", + "name": "Nelson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Nelson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_left_1": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 868909557, + "bounds": { + "minlat": 40.8327160, + "minlon": -73.9287480, + "maxlat": 40.8417455, + "maxlon": -73.9224734 + }, + "nodes": [ + 42745204, + 12163757038, + 13249072905, + 42751992, + 13249072907, + 8285558499, + 13249061699, + 42751988, + 13249061697, + 42751983, + 42736645, + 42751978, + 42746320, + 8285601010, + 13809338810, + 42751972 + ], + "geometry": [ + { "lat": 40.8417455, "lon": -73.9224734 }, + { "lat": 40.8416265, "lon": -73.9225630 }, + { "lat": 40.8408471, "lon": -73.9231514 }, + { "lat": 40.8407880, "lon": -73.9231960 }, + { "lat": 40.8407197, "lon": -73.9232469 }, + { "lat": 40.8399267, "lon": -73.9238386 }, + { "lat": 40.8398805, "lon": -73.9238731 }, + { "lat": 40.8398310, "lon": -73.9239100 }, + { "lat": 40.8397758, "lon": -73.9239478 }, + { "lat": 40.8383500, "lon": -73.9249240 }, + { "lat": 40.8366140, "lon": -73.9261130 }, + { "lat": 40.8353320, "lon": -73.9269940 }, + { "lat": 40.8341700, "lon": -73.9277830 }, + { "lat": 40.8328092, "lon": -73.9286861 }, + { "lat": 40.8327672, "lon": -73.9287140 }, + { "lat": 40.8327160, "lon": -73.9287480 } + ], + "tags": { + "highway": "residential", + "name": "Nelson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Nelson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_left_1": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 868909558, + "bounds": { + "minlat": 40.8420130, + "minlon": -73.9228207, + "maxlat": 40.8420472, + "maxlon": -73.9225953 + }, + "nodes": [ + 7442778112, + 4207902993 + ], + "geometry": [ + { "lat": 40.8420130, "lon": -73.9228207 }, + { "lat": 40.8420472, "lon": -73.9225953 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 868910920, + "bounds": { + "minlat": 40.8384458, + "minlon": -73.9219633, + "maxlat": 40.8384913, + "maxlon": -73.9218540 + }, + "nodes": [ + 2912071068, + 42745190 + ], + "geometry": [ + { "lat": 40.8384458, "lon": -73.9218540 }, + { "lat": 40.8384913, "lon": -73.9219633 } + ], + "tags": { + "highway": "residential", + "name": "West 169th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 868910921, + "bounds": { + "minlat": 40.8426790, + "minlon": -73.9228523, + "maxlat": 40.8428336, + "maxlon": -73.9227699 + }, + "nodes": [ + 3001741334, + 2907939269 + ], + "geometry": [ + { "lat": 40.8426790, "lon": -73.9228523 }, + { "lat": 40.8428336, "lon": -73.9227699 } + ], + "tags": { + "highway": "residential", + "name": "Plimpton Avenue", + "name:etymology:wikidata": "Q5536449", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Plimpton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 868910922, + "bounds": { + "minlat": 40.8424211, + "minlon": -73.9228523, + "maxlat": 40.8426790, + "maxlon": -73.9227447 + }, + "nodes": [ + 3001741334, + 12163757042, + 7442778113 + ], + "geometry": [ + { "lat": 40.8426790, "lon": -73.9228523 }, + { "lat": 40.8426029, "lon": -73.9228198 }, + { "lat": 40.8424211, "lon": -73.9227447 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 868910923, + "bounds": { + "minlat": 40.8420472, + "minlon": -73.9227447, + "maxlat": 40.8424211, + "maxlon": -73.9225953 + }, + "nodes": [ + 7442778113, + 7442778110, + 4207902993 + ], + "geometry": [ + { "lat": 40.8424211, "lon": -73.9227447 }, + { "lat": 40.8422609, "lon": -73.9226807 }, + { "lat": 40.8420472, "lon": -73.9225953 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated||", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 868910924, + "bounds": { + "minlat": 40.8423624, + "minlon": -73.9230442, + "maxlat": 40.8423952, + "maxlon": -73.9229467 + }, + "nodes": [ + 7442778114, + 7442778115 + ], + "geometry": [ + { "lat": 40.8423624, "lon": -73.9229467 }, + { "lat": 40.8423952, "lon": -73.9230442 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 868910925, + "bounds": { + "minlat": 40.8423952, + "minlon": -73.9230442, + "maxlat": 40.8426790, + "maxlon": -73.9228523 + }, + "nodes": [ + 7442778115, + 2912067296, + 13146775499, + 3001741334 + ], + "geometry": [ + { "lat": 40.8423952, "lon": -73.9230442 }, + { "lat": 40.8425108, "lon": -73.9229610 }, + { "lat": 40.8425220, "lon": -73.9229540 }, + { "lat": 40.8426790, "lon": -73.9228523 } + ], + "tags": { + "highway": "residential", + "name": "Plimpton Avenue", + "name:etymology:wikidata": "Q5536449", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Plimpton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 869072413, + "bounds": { + "minlat": 40.7023979, + "minlon": -73.9628785, + "maxlat": 40.7030346, + "maxlon": -73.9613389 + }, + "nodes": [ + 3552687152, + 9776829310, + 8344812285, + 8100464252, + 8100464253, + 8100464254, + 8100464255, + 8100464259, + 8100464256, + 8100464260, + 8100464257, + 8100464258, + 8100464259 + ], + "geometry": [ + { "lat": 40.7026736, "lon": -73.9628785 }, + { "lat": 40.7027514, "lon": -73.9628388 }, + { "lat": 40.7028425, "lon": -73.9627959 }, + { "lat": 40.7030346, "lon": -73.9627042 }, + { "lat": 40.7029961, "lon": -73.9625391 }, + { "lat": 40.7030274, "lon": -73.9623555 }, + { "lat": 40.7029527, "lon": -73.9620628 }, + { "lat": 40.7028421, "lon": -73.9616417 }, + { "lat": 40.7027693, "lon": -73.9613389 }, + { "lat": 40.7025282, "lon": -73.9614399 }, + { "lat": 40.7023979, "lon": -73.9614945 }, + { "lat": 40.7024762, "lon": -73.9617980 }, + { "lat": 40.7028421, "lon": -73.9616417 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 869072414, + "bounds": { + "minlat": 40.7024123, + "minlon": -73.9614399, + "maxlat": 40.7025282, + "maxlon": -73.9609840 + }, + "nodes": [ + 8100464260, + 8100485784, + 9776829323, + 8100464261 + ], + "geometry": [ + { "lat": 40.7025282, "lon": -73.9614399 }, + { "lat": 40.7024525, "lon": -73.9611421 }, + { "lat": 40.7024326, "lon": -73.9610637 }, + { "lat": 40.7024123, "lon": -73.9609840 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 869096096, + "bounds": { + "minlat": 40.8014622, + "minlon": -73.9386623, + "maxlat": 40.8015313, + "maxlon": -73.9386162 + }, + "nodes": [ + 8100692820, + 10170762168, + 10568682751 + ], + "geometry": [ + { "lat": 40.8014622, "lon": -73.9386623 }, + { "lat": 40.8014876, "lon": -73.9386449 }, + { "lat": 40.8015313, "lon": -73.9386162 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "no", + "name": "Sylvan Place", + "service": "driveway", + "wikidata": "Q7660670", + "wikipedia": "en:Sylvan Place" + } +}, +{ + "type": "way", + "id": 869096097, + "bounds": { + "minlat": 40.8012107, + "minlon": -73.9388293, + "maxlat": 40.8014622, + "maxlon": -73.9386623 + }, + "nodes": [ + 8100692821, + 8100692820 + ], + "geometry": [ + { "lat": 40.8012107, "lon": -73.9388293 }, + { "lat": 40.8014622, "lon": -73.9386623 } + ], + "tags": { + "access": "no", + "bicycle": "dismount", + "highway": "service", + "motor_vehicle": "no", + "name": "Sylvan Place", + "service": "driveway", + "wikidata": "Q7660670", + "wikipedia": "en:Sylvan Place" + } +}, +{ + "type": "way", + "id": 869268414, + "bounds": { + "minlat": 40.8820354, + "minlon": -73.9720699, + "maxlat": 40.8824053, + "maxlon": -73.9717876 + }, + "nodes": [ + 8101555761, + 8101555762, + 8101555763, + 8101555764 + ], + "geometry": [ + { "lat": 40.8820354, "lon": -73.9720699 }, + { "lat": 40.8821827, "lon": -73.9719622 }, + { "lat": 40.8823287, "lon": -73.9718495 }, + { "lat": 40.8824053, "lon": -73.9717876 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 869975026, + "bounds": { + "minlat": 40.8544686, + "minlon": -73.9982217, + "maxlat": 40.8548657, + "maxlon": -73.9978097 + }, + "nodes": [ + 8105675484, + 8105675485 + ], + "geometry": [ + { "lat": 40.8544686, "lon": -73.9982217 }, + { "lat": 40.8548657, "lon": -73.9978097 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 870550325, + "bounds": { + "minlat": 40.7635193, + "minlon": -73.9536403, + "maxlat": 40.7646511, + "maxlon": -73.9525831 + }, + "nodes": [ + 8109512240, + 3786876206 + ], + "geometry": [ + { "lat": 40.7646511, "lon": -73.9525831 }, + { "lat": 40.7635193, "lon": -73.9536403 } + ], + "tags": { + "highway": "service", + "layer": "-2", + "maxheight": "11'", + "name": "NewYork-Presbyterian Ambulance Entrance", + "oneway": "yes", + "service": "emergency_access", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 870658216, + "bounds": { + "minlat": 40.7715153, + "minlon": -73.9807956, + "maxlat": 40.7716085, + "maxlon": -73.9807306 + }, + "nodes": [ + 8110535998, + 9902711489, + 8110535999 + ], + "geometry": [ + { "lat": 40.7716085, "lon": -73.9807306 }, + { "lat": 40.7715541, "lon": -73.9807693 }, + { "lat": 40.7715153, "lon": -73.9807956 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 870857896, + "bounds": { + "minlat": 40.8599585, + "minlon": -73.9655460, + "maxlat": 40.8605192, + "maxlon": -73.9652516 + }, + "nodes": [ + 8112266591, + 8112266590 + ], + "geometry": [ + { "lat": 40.8605192, "lon": -73.9652516 }, + { "lat": 40.8599585, "lon": -73.9655460 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 870985777, + "bounds": { + "minlat": 40.8177835, + "minlon": -73.9415641, + "maxlat": 40.8180902, + "maxlon": -73.9411531 + }, + "nodes": [ + 6908683483, + 8113271629, + 8758345317, + 6908723691 + ], + "geometry": [ + { "lat": 40.8177835, "lon": -73.9412490 }, + { "lat": 40.8179178, "lon": -73.9411531 }, + { "lat": 40.8180452, "lon": -73.9414588 }, + { "lat": 40.8180902, "lon": -73.9415641 } + ], + "tags": { + "highway": "service", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 871693848, + "bounds": { + "minlat": 40.7372187, + "minlon": -73.9813983, + "maxlat": 40.7375239, + "maxlon": -73.9811768 + }, + "nodes": [ + 8119192797, + 4132971876, + 42440330 + ], + "geometry": [ + { "lat": 40.7375239, "lon": -73.9811768 }, + { "lat": 40.7372823, "lon": -73.9813521 }, + { "lat": 40.7372187, "lon": -73.9813983 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 871693849, + "bounds": { + "minlat": 40.7366125, + "minlon": -73.9818366, + "maxlat": 40.7372187, + "maxlon": -73.9813983 + }, + "nodes": [ + 42440330, + 4132971831, + 12181309700, + 10165972533, + 1692450029 + ], + "geometry": [ + { "lat": 40.7372187, "lon": -73.9813983 }, + { "lat": 40.7371701, "lon": -73.9814331 }, + { "lat": 40.7367087, "lon": -73.9817666 }, + { "lat": 40.7366662, "lon": -73.9817973 }, + { "lat": 40.7366125, "lon": -73.9818366 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 871725893, + "bounds": { + "minlat": 40.7408008, + "minlon": -73.9838155, + "maxlat": 40.7414165, + "maxlon": -73.9833669 + }, + "nodes": [ + 42429890, + 3997461340, + 12181379211, + 10166167582, + 2302133933 + ], + "geometry": [ + { "lat": 40.7414165, "lon": -73.9833669 }, + { "lat": 40.7413563, "lon": -73.9834107 }, + { "lat": 40.7409004, "lon": -73.9837416 }, + { "lat": 40.7408558, "lon": -73.9837749 }, + { "lat": 40.7408008, "lon": -73.9838155 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|none", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 871738278, + "bounds": { + "minlat": 40.7394690, + "minlon": -73.9776668, + "maxlat": 40.7398175, + "maxlon": -73.9768400 + }, + "nodes": [ + 8119596375, + 9592830645 + ], + "geometry": [ + { "lat": 40.7398175, "lon": -73.9776668 }, + { "lat": 40.7394690, "lon": -73.9768400 } + ], + "tags": { + "alt_name": "Mount Carmel Place", + "highway": "pedestrian", + "lit": "yes", + "name": "East 27th Street", + "name:ru": "Восточная 27-я стрит", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 872046748, + "bounds": { + "minlat": 40.7745697, + "minlon": -73.9877642, + "maxlat": 40.7748462, + "maxlon": -73.9875722 + }, + "nodes": [ + 8122368388, + 9900687752, + 8122368389 + ], + "geometry": [ + { "lat": 40.7748462, "lon": -73.9875722 }, + { "lat": 40.7746380, "lon": -73.9877167 }, + { "lat": 40.7745697, "lon": -73.9877642 } + ], + "tags": { + "covered": "no", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 872052105, + "bounds": { + "minlat": 40.7505450, + "minlon": -73.9786965, + "maxlat": 40.7508073, + "maxlon": -73.9784855 + }, + "nodes": [ + 561042197, + 12181374956, + 8122411158, + 42453005 + ], + "geometry": [ + { "lat": 40.7505450, "lon": -73.9786965 }, + { "lat": 40.7506920, "lon": -73.9785700 }, + { "lat": 40.7507331, "lon": -73.9785397 }, + { "lat": 40.7508073, "lon": -73.9784855 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 872052106, + "bounds": { + "minlat": 40.7509396, + "minlon": -73.9785441, + "maxlat": 40.7513353, + "maxlon": -73.9782521 + }, + "nodes": [ + 100522479, + 561042202 + ], + "geometry": [ + { "lat": 40.7509396, "lon": -73.9785441 }, + { "lat": 40.7513353, "lon": -73.9782521 } + ], + "tags": { + "cycleway:right": "no", + "embankment": "yes", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "no", + "sidewalk": "no", + "surface": "concrete", + "wikidata": "Q7137641", + "wikipedia": "en:Park Avenue Viaduct" + } +}, +{ + "type": "way", + "id": 872052109, + "bounds": { + "minlat": 40.7508814, + "minlon": -73.9786572, + "maxlat": 40.7509396, + "maxlon": -73.9785441 + }, + "nodes": [ + 100522479, + 11506834428, + 3639382767 + ], + "geometry": [ + { "lat": 40.7509396, "lon": -73.9785441 }, + { "lat": 40.7509169, "lon": -73.9785961 }, + { "lat": 40.7508814, "lon": -73.9786572 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q7137641", + "wikipedia": "en:Park Avenue Viaduct" + } +}, +{ + "type": "way", + "id": 872171399, + "bounds": { + "minlat": 40.7918731, + "minlon": -73.9272652, + "maxlat": 40.7921678, + "maxlon": -73.9250877 + }, + "nodes": [ + 401787558, + 8123418690, + 8123418691, + 8123418692, + 8123418693, + 8123418694, + 8123418695, + 9153856319 + ], + "geometry": [ + { "lat": 40.7920315, "lon": -73.9272652 }, + { "lat": 40.7921529, "lon": -73.9271518 }, + { "lat": 40.7921678, "lon": -73.9268737 }, + { "lat": 40.7921678, "lon": -73.9264687 }, + { "lat": 40.7921065, "lon": -73.9258476 }, + { "lat": 40.7920860, "lon": -73.9255978 }, + { "lat": 40.7919761, "lon": -73.9252839 }, + { "lat": 40.7918731, "lon": -73.9250877 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 872317596, + "bounds": { + "minlat": 40.7732735, + "minlon": -73.9810519, + "maxlat": 40.7733596, + "maxlon": -73.9809918 + }, + "nodes": [ + 8124631981, + 9982046525, + 8124631982 + ], + "geometry": [ + { "lat": 40.7733596, "lon": -73.9809918 }, + { "lat": 40.7732996, "lon": -73.9810337 }, + { "lat": 40.7732735, "lon": -73.9810519 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 872802541, + "bounds": { + "minlat": 40.7249288, + "minlon": -73.9864121, + "maxlat": 40.7251234, + "maxlon": -73.9859693 + }, + "nodes": [ + 8127531867, + 8127531868, + 8127531869, + 8127531870, + 8127531873, + 8127531871, + 8127531872 + ], + "geometry": [ + { "lat": 40.7250186, "lon": -73.9859693 }, + { "lat": 40.7251169, "lon": -73.9862074 }, + { "lat": 40.7251234, "lon": -73.9862396 }, + { "lat": 40.7251155, "lon": -73.9862728 }, + { "lat": 40.7250600, "lon": -73.9863148 }, + { "lat": 40.7250309, "lon": -73.9863368 }, + { "lat": 40.7249288, "lon": -73.9864121 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 872802542, + "bounds": { + "minlat": 40.7245248, + "minlon": -73.9855322, + "maxlat": 40.7248270, + "maxlon": -73.9853142 + }, + "nodes": [ + 8127531874, + 8127531875, + 8127531876, + 8127531877, + 8127531878, + 8127531879, + 8127531880, + 8127531881 + ], + "geometry": [ + { "lat": 40.7245248, "lon": -73.9854481 }, + { "lat": 40.7246227, "lon": -73.9853763 }, + { "lat": 40.7246554, "lon": -73.9853527 }, + { "lat": 40.7247073, "lon": -73.9853158 }, + { "lat": 40.7247231, "lon": -73.9853142 }, + { "lat": 40.7247359, "lon": -73.9853188 }, + { "lat": 40.7247447, "lon": -73.9853281 }, + { "lat": 40.7248270, "lon": -73.9855322 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 872822718, + "bounds": { + "minlat": 40.8319215, + "minlon": -74.0071007, + "maxlat": 40.8322671, + "maxlon": -74.0067992 + }, + "nodes": [ + 8127756437, + 8127756436, + 8127756435, + 8127756434 + ], + "geometry": [ + { "lat": 40.8319215, "lon": -74.0071007 }, + { "lat": 40.8321074, "lon": -74.0069143 }, + { "lat": 40.8321689, "lon": -74.0068552 }, + { "lat": 40.8322671, "lon": -74.0067992 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 873093240, + "bounds": { + "minlat": 40.7488426, + "minlon": -73.9916376, + "maxlat": 40.7489208, + "maxlon": -73.9915799 + }, + "nodes": [ + 8130211161, + 10168911577, + 8130211162 + ], + "geometry": [ + { "lat": 40.7489208, "lon": -73.9915799 }, + { "lat": 40.7488664, "lon": -73.9916201 }, + { "lat": 40.7488426, "lon": -73.9916376 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 873187988, + "bounds": { + "minlat": 40.7602322, + "minlon": -73.9583585, + "maxlat": 40.7605391, + "maxlon": -73.9576236 + }, + "nodes": [ + 42427968, + 4918486963, + 3785578845, + 11592564580, + 42451332 + ], + "geometry": [ + { "lat": 40.7605391, "lon": -73.9583585 }, + { "lat": 40.7604854, "lon": -73.9582349 }, + { "lat": 40.7603856, "lon": -73.9580005 }, + { "lat": 40.7602564, "lon": -73.9576831 }, + { "lat": 40.7602322, "lon": -73.9576236 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "maxheight": "11'2\"", + "maxspeed": "25 mph", + "name": "East 62nd Street", + "name:ru": "Восточная 62-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 873213381, + "bounds": { + "minlat": 40.7602322, + "minlon": -73.9576236, + "maxlat": 40.7604789, + "maxlon": -73.9572928 + }, + "nodes": [ + 371190626, + 371190625, + 42451332 + ], + "geometry": [ + { "lat": 40.7604789, "lon": -73.9572928 }, + { "lat": 40.7603050, "lon": -73.9575327 }, + { "lat": 40.7602322, "lon": -73.9576236 } + ], + "tags": { + "hgv:lanes": "no|", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 873372086, + "bounds": { + "minlat": 40.7604309, + "minlon": -73.9674577, + "maxlat": 40.7609399, + "maxlon": -73.9670376 + }, + "nodes": [ + 8133385388, + 9140830303, + 9649576881, + 42449971 + ], + "geometry": [ + { "lat": 40.7604309, "lon": -73.9674577 }, + { "lat": 40.7607585, "lon": -73.9671975 }, + { "lat": 40.7608777, "lon": -73.9670931 }, + { "lat": 40.7609399, "lon": -73.9670376 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 873380015, + "bounds": { + "minlat": 40.7592899, + "minlon": -73.9372498, + "maxlat": 40.7594029, + "maxlon": -73.9370397 + }, + "nodes": [ + 8133480844, + 8133480843, + 3569402133 + ], + "geometry": [ + { "lat": 40.7592899, "lon": -73.9370397 }, + { "lat": 40.7593448, "lon": -73.9371385 }, + { "lat": 40.7594029, "lon": -73.9372498 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 873380016, + "bounds": { + "minlat": 40.7589964, + "minlon": -73.9373906, + "maxlat": 40.7592578, + "maxlon": -73.9369055 + }, + "nodes": [ + 8133480845, + 8133480846, + 8133480847 + ], + "geometry": [ + { "lat": 40.7592578, "lon": -73.9373906 }, + { "lat": 40.7591979, "lon": -73.9372778 }, + { "lat": 40.7589964, "lon": -73.9369055 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 874844027, + "bounds": { + "minlat": 40.8008712, + "minlon": -74.0072256, + "maxlat": 40.8009683, + "maxlon": -74.0071629 + }, + "nodes": [ + 3809706348, + 103866664 + ], + "geometry": [ + { "lat": 40.8008712, "lon": -74.0071629 }, + { "lat": 40.8009683, "lon": -74.0072256 } + ], + "tags": { + "highway": "residential", + "name": "78th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "78th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 875360680, + "bounds": { + "minlat": 40.7296299, + "minlon": -73.9601672, + "maxlat": 40.7297295, + "maxlon": -73.9592330 + }, + "nodes": [ + 7725555869, + 9788947566, + 8097159369, + 10734028817 + ], + "geometry": [ + { "lat": 40.7297295, "lon": -73.9592330 }, + { "lat": 40.7297191, "lon": -73.9593310 }, + { "lat": 40.7297129, "lon": -73.9593891 }, + { "lat": 40.7296299, "lon": -73.9601672 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 875626001, + "bounds": { + "minlat": 40.8484091, + "minlon": -73.9665934, + "maxlat": 40.8484813, + "maxlon": -73.9665489 + }, + "nodes": [ + 103291071, + 5106256121 + ], + "geometry": [ + { "lat": 40.8484813, "lon": -73.9665489 }, + { "lat": 40.8484091, "lon": -73.9665934 } + ], + "tags": { + "highway": "residential", + "name": "Old Palisade Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old Palisade", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_left_1": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 875846653, + "bounds": { + "minlat": 40.7756652, + "minlon": -73.9292288, + "maxlat": 40.7758095, + "maxlon": -73.9287239 + }, + "nodes": [ + 42849847, + 7787345576, + 7745149793, + 7745149791, + 7745133379 + ], + "geometry": [ + { "lat": 40.7758095, "lon": -73.9287239 }, + { "lat": 40.7757906, "lon": -73.9288059 }, + { "lat": 40.7757826, "lon": -73.9288218 }, + { "lat": 40.7756855, "lon": -73.9291578 }, + { "lat": 40.7756652, "lon": -73.9292288 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Shore Boulevard", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 875864223, + "bounds": { + "minlat": 40.7311938, + "minlon": -73.9812689, + "maxlat": 40.7317574, + "maxlon": -73.9803724 + }, + "nodes": [ + 8152053234, + 8152053273, + 8152053274, + 8152053275, + 8152053276, + 8152053233, + 8152053232, + 8152053277, + 8152053255, + 8152053254, + 8152053261, + 8152053263, + 8152053262, + 8152053278, + 8152053279, + 8152053280, + 8152053235, + 8152053234 + ], + "geometry": [ + { "lat": 40.7314892, "lon": -73.9804395 }, + { "lat": 40.7314610, "lon": -73.9803724 }, + { "lat": 40.7311938, "lon": -73.9805677 }, + { "lat": 40.7314882, "lon": -73.9812689 }, + { "lat": 40.7317574, "lon": -73.9810721 }, + { "lat": 40.7317422, "lon": -73.9810358 }, + { "lat": 40.7316636, "lon": -73.9810932 }, + { "lat": 40.7315371, "lon": -73.9811857 }, + { "lat": 40.7315254, "lon": -73.9811577 }, + { "lat": 40.7314931, "lon": -73.9811813 }, + { "lat": 40.7314632, "lon": -73.9811100 }, + { "lat": 40.7314003, "lon": -73.9809604 }, + { "lat": 40.7313436, "lon": -73.9808253 }, + { "lat": 40.7312407, "lon": -73.9805804 }, + { "lat": 40.7314086, "lon": -73.9804576 }, + { "lat": 40.7314218, "lon": -73.9804888 }, + { "lat": 40.7314660, "lon": -73.9804565 }, + { "lat": 40.7314892, "lon": -73.9804395 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 875864265, + "bounds": { + "minlat": 40.7317829, + "minlon": -73.9789451, + "maxlat": 40.7320233, + "maxlon": -73.9786821 + }, + "nodes": [ + 8152032157, + 8152053754, + 8152053755, + 8152053756, + 8152053757, + 8152053758, + 8152053759, + 8152053760, + 8152053761, + 8152053762, + 8152053763, + 8152053764, + 2826989584, + 2826989581, + 2826989576, + 8152032155, + 8152032156, + 8152032157 + ], + "geometry": [ + { "lat": 40.7317864, "lon": -73.9786821 }, + { "lat": 40.7318479, "lon": -73.9787107 }, + { "lat": 40.7318994, "lon": -73.9787286 }, + { "lat": 40.7319471, "lon": -73.9787551 }, + { "lat": 40.7319737, "lon": -73.9787752 }, + { "lat": 40.7319942, "lon": -73.9788008 }, + { "lat": 40.7320233, "lon": -73.9788459 }, + { "lat": 40.7319917, "lon": -73.9788579 }, + { "lat": 40.7319750, "lon": -73.9788713 }, + { "lat": 40.7319601, "lon": -73.9788915 }, + { "lat": 40.7319513, "lon": -73.9789073 }, + { "lat": 40.7319426, "lon": -73.9789222 }, + { "lat": 40.7319297, "lon": -73.9789451 }, + { "lat": 40.7318979, "lon": -73.9788029 }, + { "lat": 40.7317939, "lon": -73.9788430 }, + { "lat": 40.7318073, "lon": -73.9787497 }, + { "lat": 40.7317829, "lon": -73.9787374 }, + { "lat": 40.7317864, "lon": -73.9786821 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Five Stuy Cafe Outdoor Seating", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 875971038, + "bounds": { + "minlat": 40.7627838, + "minlon": -73.9501574, + "maxlat": 40.7631216, + "maxlon": -73.9492535 + }, + "nodes": [ + 8152930795, + 8152930796, + 8152930797, + 8152930798, + 8152930799, + 8152930800, + 8152930801, + 8152930802, + 8152930803, + 8152930804, + 8265114651, + 8152930805, + 8152930806 + ], + "geometry": [ + { "lat": 40.7631216, "lon": -73.9501574 }, + { "lat": 40.7630567, "lon": -73.9500345 }, + { "lat": 40.7630281, "lon": -73.9499980 }, + { "lat": 40.7629837, "lon": -73.9499854 }, + { "lat": 40.7628935, "lon": -73.9499526 }, + { "lat": 40.7628553, "lon": -73.9498795 }, + { "lat": 40.7628424, "lon": -73.9497951 }, + { "lat": 40.7628381, "lon": -73.9496691 }, + { "lat": 40.7628396, "lon": -73.9495942 }, + { "lat": 40.7628296, "lon": -73.9494757 }, + { "lat": 40.7628107, "lon": -73.9493565 }, + { "lat": 40.7628066, "lon": -73.9493308 }, + { "lat": 40.7627838, "lon": -73.9492535 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 876013800, + "bounds": { + "minlat": 40.8769526, + "minlon": -74.0037806, + "maxlat": 40.8770125, + "maxlon": -74.0035663 + }, + "nodes": [ + 8153374044, + 8153374045 + ], + "geometry": [ + { "lat": 40.8770125, "lon": -74.0037806 }, + { "lat": 40.8769526, "lon": -74.0035663 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 876027620, + "bounds": { + "minlat": 40.8315987, + "minlon": -74.0028833, + "maxlat": 40.8319215, + "maxlon": -74.0026794 + }, + "nodes": [ + 8153529846, + 8153529847, + 8153529848, + 8153529849, + 8153529850, + 8153529851, + 8153529852 + ], + "geometry": [ + { "lat": 40.8315987, "lon": -74.0028462 }, + { "lat": 40.8317574, "lon": -74.0026937 }, + { "lat": 40.8317836, "lon": -74.0026794 }, + { "lat": 40.8318024, "lon": -74.0026826 }, + { "lat": 40.8318172, "lon": -74.0026911 }, + { "lat": 40.8318325, "lon": -74.0027062 }, + { "lat": 40.8319215, "lon": -74.0028833 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 876060843, + "bounds": { + "minlat": 40.8127262, + "minlon": -73.9980177, + "maxlat": 40.8129565, + "maxlon": -73.9976049 + }, + "nodes": [ + 8153831129, + 8153831130 + ], + "geometry": [ + { "lat": 40.8127262, "lon": -73.9976049 }, + { "lat": 40.8129565, "lon": -73.9980177 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 876060844, + "bounds": { + "minlat": 40.8168617, + "minlon": -73.9995219, + "maxlat": 40.8170749, + "maxlon": -73.9993215 + }, + "nodes": [ + 8153831131, + 8153831132 + ], + "geometry": [ + { "lat": 40.8170749, "lon": -73.9993215 }, + { "lat": 40.8168617, "lon": -73.9995219 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 876060845, + "bounds": { + "minlat": 40.8165938, + "minlon": -73.9984148, + "maxlat": 40.8168793, + "maxlon": -73.9981400 + }, + "nodes": [ + 8153831133, + 8153831135, + 8153831134 + ], + "geometry": [ + { "lat": 40.8165938, "lon": -73.9984148 }, + { "lat": 40.8166454, "lon": -73.9983577 }, + { "lat": 40.8168793, "lon": -73.9981400 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 876060846, + "bounds": { + "minlat": 40.8162123, + "minlon": -73.9955321, + "maxlat": 40.8164108, + "maxlon": -73.9950854 + }, + "nodes": [ + 8153831136, + 13524700340, + 8153831137, + 8153831138 + ], + "geometry": [ + { "lat": 40.8162123, "lon": -73.9950854 }, + { "lat": 40.8162579, "lon": -73.9951948 }, + { "lat": 40.8162806, "lon": -73.9952494 }, + { "lat": 40.8164108, "lon": -73.9955321 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 876233677, + "bounds": { + "minlat": 40.7119645, + "minlon": -73.9210256, + "maxlat": 40.7123730, + "maxlon": -73.9198579 + }, + "nodes": [ + 8155282882, + 9755788624, + 8155282883, + 8155282884, + 8155282885, + 8155282886 + ], + "geometry": [ + { "lat": 40.7121442, "lon": -73.9210256 }, + { "lat": 40.7121974, "lon": -73.9209592 }, + { "lat": 40.7122131, "lon": -73.9209397 }, + { "lat": 40.7123730, "lon": -73.9207277 }, + { "lat": 40.7123436, "lon": -73.9205833 }, + { "lat": 40.7119645, "lon": -73.9198579 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 876343690, + "bounds": { + "minlat": 40.7322508, + "minlon": -73.9786249, + "maxlat": 40.7323746, + "maxlon": -73.9783778 + }, + "nodes": [ + 8156094104, + 8156094105, + 8156094106, + 8156094107, + 8156094108, + 8156094109, + 2826985962, + 2826985967, + 8156094110, + 8156094111, + 8156094112, + 8156094113, + 8156094114, + 8156094115, + 8156094116, + 8156101217, + 8156101218, + 8156101219, + 8156101220, + 8156101221, + 8156101222, + 8156101223, + 8156101224, + 8156101225, + 8156101226, + 8156101227, + 8156094104 + ], + "geometry": [ + { "lat": 40.7322590, "lon": -73.9786249 }, + { "lat": 40.7322807, "lon": -73.9786178 }, + { "lat": 40.7323078, "lon": -73.9786148 }, + { "lat": 40.7323304, "lon": -73.9786193 }, + { "lat": 40.7323440, "lon": -73.9786238 }, + { "lat": 40.7323651, "lon": -73.9786199 }, + { "lat": 40.7322937, "lon": -73.9785144 }, + { "lat": 40.7323746, "lon": -73.9784197 }, + { "lat": 40.7323671, "lon": -73.9784106 }, + { "lat": 40.7323592, "lon": -73.9784091 }, + { "lat": 40.7323485, "lon": -73.9784143 }, + { "lat": 40.7323361, "lon": -73.9784166 }, + { "lat": 40.7323248, "lon": -73.9784151 }, + { "lat": 40.7323118, "lon": -73.9784113 }, + { "lat": 40.7322994, "lon": -73.9784031 }, + { "lat": 40.7322898, "lon": -73.9783942 }, + { "lat": 40.7322830, "lon": -73.9783852 }, + { "lat": 40.7322779, "lon": -73.9783778 }, + { "lat": 40.7322734, "lon": -73.9783987 }, + { "lat": 40.7322677, "lon": -73.9784285 }, + { "lat": 40.7322604, "lon": -73.9784643 }, + { "lat": 40.7322542, "lon": -73.9784978 }, + { "lat": 40.7322508, "lon": -73.9785276 }, + { "lat": 40.7322508, "lon": -73.9785530 }, + { "lat": 40.7322525, "lon": -73.9785835 }, + { "lat": 40.7322553, "lon": -73.9786036 }, + { "lat": 40.7322590, "lon": -73.9786249 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "no", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 876407939, + "bounds": { + "minlat": 40.8519575, + "minlon": -74.0018683, + "maxlat": 40.8523121, + "maxlon": -74.0014088 + }, + "nodes": [ + 8156706006, + 8156706007, + 8156706008, + 8156706009, + 8156706010, + 8156706011 + ], + "geometry": [ + { "lat": 40.8523121, "lon": -74.0016587 }, + { "lat": 40.8521764, "lon": -74.0014221 }, + { "lat": 40.8521597, "lon": -74.0014088 }, + { "lat": 40.8519575, "lon": -74.0016106 }, + { "lat": 40.8519601, "lon": -74.0016395 }, + { "lat": 40.8520917, "lon": -74.0018683 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 877582102, + "bounds": { + "minlat": 40.8709342, + "minlon": -73.9563357, + "maxlat": 40.8713944, + "maxlon": -73.9554429 + }, + "nodes": [ + 5724370211, + 5724370212 + ], + "geometry": [ + { "lat": 40.8713944, "lon": -73.9563357 }, + { "lat": 40.8709342, "lon": -73.9554429 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 878093941, + "bounds": { + "minlat": 40.8663538, + "minlon": -73.9859298, + "maxlat": 40.8668142, + "maxlon": -73.9853682 + }, + "nodes": [ + 8169649592, + 8169649599, + 10245945831, + 8169649593, + 8169649594, + 8169649595, + 8169649596, + 8169649597, + 8169649598 + ], + "geometry": [ + { "lat": 40.8668142, "lon": -73.9853682 }, + { "lat": 40.8667771, "lon": -73.9853977 }, + { "lat": 40.8667634, "lon": -73.9854091 }, + { "lat": 40.8663711, "lon": -73.9857328 }, + { "lat": 40.8663578, "lon": -73.9857521 }, + { "lat": 40.8663538, "lon": -73.9857796 }, + { "lat": 40.8663578, "lon": -73.9858113 }, + { "lat": 40.8663830, "lon": -73.9858663 }, + { "lat": 40.8664171, "lon": -73.9859298 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 878130994, + "bounds": { + "minlat": 40.8361979, + "minlon": -73.9849550, + "maxlat": 40.8370391, + "maxlon": -73.9830082 + }, + "nodes": [ + 103160730, + 103160732, + 103160733, + 103160734, + 103160736, + 103160738, + 103160740, + 8169986177 + ], + "geometry": [ + { "lat": 40.8361979, "lon": -73.9830082 }, + { "lat": 40.8363993, "lon": -73.9838071 }, + { "lat": 40.8364293, "lon": -73.9838727 }, + { "lat": 40.8364653, "lon": -73.9839253 }, + { "lat": 40.8365074, "lon": -73.9839778 }, + { "lat": 40.8365553, "lon": -73.9840425 }, + { "lat": 40.8369004, "lon": -73.9846726 }, + { "lat": 40.8370391, "lon": -73.9849550 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Deerwood Road", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Deerwood", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 878130995, + "bounds": { + "minlat": 40.8373105, + "minlon": -73.9853908, + "maxlat": 40.8387121, + "maxlon": -73.9841540 + }, + "nodes": [ + 103111274, + 5340732826, + 103319070, + 103319069, + 103319068, + 8169986178 + ], + "geometry": [ + { "lat": 40.8387121, "lon": -73.9841540 }, + { "lat": 40.8386453, "lon": -73.9842552 }, + { "lat": 40.8377500, "lon": -73.9851460 }, + { "lat": 40.8376740, "lon": -73.9852150 }, + { "lat": 40.8375810, "lon": -73.9852750 }, + { "lat": 40.8373105, "lon": -73.9853908 } + ], + "tags": { + "highway": "residential", + "name": "Harvard Place", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harvard", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "tiger:zip_right_1": "07024" + } +}, +{ + "type": "way", + "id": 878362946, + "bounds": { + "minlat": 40.8785876, + "minlon": -73.9879132, + "maxlat": 40.8790918, + "maxlon": -73.9874093 + }, + "nodes": [ + 8171514834, + 8171514836, + 8171514835 + ], + "geometry": [ + { "lat": 40.8790918, "lon": -73.9874093 }, + { "lat": 40.8786729, "lon": -73.9878279 }, + { "lat": 40.8785876, "lon": -73.9879132 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 878362947, + "bounds": { + "minlat": 40.8778614, + "minlon": -73.9871657, + "maxlat": 40.8780925, + "maxlon": -73.9868307 + }, + "nodes": [ + 8171514837, + 8171514838, + 8171514839, + 8171514840, + 8171514841 + ], + "geometry": [ + { "lat": 40.8780925, "lon": -73.9870385 }, + { "lat": 40.8778950, "lon": -73.9871657 }, + { "lat": 40.8778614, "lon": -73.9870798 }, + { "lat": 40.8779020, "lon": -73.9868836 }, + { "lat": 40.8779688, "lon": -73.9868307 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 878362948, + "bounds": { + "minlat": 40.8773369, + "minlon": -73.9857161, + "maxlat": 40.8776019, + "maxlon": -73.9854760 + }, + "nodes": [ + 8171514842, + 8171514844, + 8171514843 + ], + "geometry": [ + { "lat": 40.8776019, "lon": -73.9854760 }, + { "lat": 40.8773999, "lon": -73.9856509 }, + { "lat": 40.8773369, "lon": -73.9857161 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 878362949, + "bounds": { + "minlat": 40.8785119, + "minlon": -73.9918488, + "maxlat": 40.8791609, + "maxlon": -73.9910845 + }, + "nodes": [ + 8171514848, + 8171514849, + 8171514851, + 8171514847, + 8171514845, + 8171514852, + 8171514850, + 8171514846 + ], + "geometry": [ + { "lat": 40.8786962, "lon": -73.9918488 }, + { "lat": 40.8788125, "lon": -73.9917588 }, + { "lat": 40.8788785, "lon": -73.9917125 }, + { "lat": 40.8791609, "lon": -73.9915142 }, + { "lat": 40.8790072, "lon": -73.9910845 }, + { "lat": 40.8787085, "lon": -73.9912706 }, + { "lat": 40.8786419, "lon": -73.9913121 }, + { "lat": 40.8785119, "lon": -73.9913912 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 878362950, + "bounds": { + "minlat": 40.8787085, + "minlon": -73.9917125, + "maxlat": 40.8788785, + "maxlon": -73.9912706 + }, + "nodes": [ + 8171514851, + 8171514852 + ], + "geometry": [ + { "lat": 40.8788785, "lon": -73.9917125 }, + { "lat": 40.8787085, "lon": -73.9912706 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 878362951, + "bounds": { + "minlat": 40.8783811, + "minlon": -73.9875485, + "maxlat": 40.8789971, + "maxlon": -73.9859305 + }, + "nodes": [ + 8171514857, + 8171514859, + 8171514856, + 8171514855, + 8171514853, + 8171514858, + 8171514854 + ], + "geometry": [ + { "lat": 40.8784126, "lon": -73.9859305 }, + { "lat": 40.8784681, "lon": -73.9860289 }, + { "lat": 40.8785672, "lon": -73.9862047 }, + { "lat": 40.8789971, "lon": -73.9869384 }, + { "lat": 40.8789139, "lon": -73.9870179 }, + { "lat": 40.8784387, "lon": -73.9874911 }, + { "lat": 40.8783811, "lon": -73.9875485 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 878362952, + "bounds": { + "minlat": 40.8777524, + "minlon": -73.9892400, + "maxlat": 40.8782236, + "maxlon": -73.9878247 + }, + "nodes": [ + 8171514860, + 8171514861 + ], + "geometry": [ + { "lat": 40.8782236, "lon": -73.9892400 }, + { "lat": 40.8777524, "lon": -73.9878247 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 879798364, + "bounds": { + "minlat": 40.8231928, + "minlon": -73.9108563, + "maxlat": 40.8241886, + "maxlon": -73.9103820 + }, + "nodes": [ + 42748183, + 10647829905, + 10732093888, + 8184243046, + 42732960, + 10647829922, + 10647829923, + 13172746393, + 10647825088, + 8415736884 + ], + "geometry": [ + { "lat": 40.8231928, "lon": -73.9104940 }, + { "lat": 40.8232953, "lon": -73.9105254 }, + { "lat": 40.8233702, "lon": -73.9104314 }, + { "lat": 40.8234934, "lon": -73.9103899 }, + { "lat": 40.8236682, "lon": -73.9103820 }, + { "lat": 40.8237793, "lon": -73.9104647 }, + { "lat": 40.8238563, "lon": -73.9105950 }, + { "lat": 40.8239112, "lon": -73.9106388 }, + { "lat": 40.8240732, "lon": -73.9107678 }, + { "lat": 40.8241886, "lon": -73.9108563 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Brook Avenue" + } +}, +{ + "type": "way", + "id": 879875355, + "bounds": { + "minlat": 40.7325667, + "minlon": -73.9599302, + "maxlat": 40.7339880, + "maxlon": -73.9596984 + }, + "nodes": [ + 42500683, + 5483600243, + 9997952339, + 9920934966, + 42516043, + 9920934967, + 9997952338, + 9997952335, + 9920934982, + 42486594 + ], + "geometry": [ + { "lat": 40.7325667, "lon": -73.9596984 }, + { "lat": 40.7326323, "lon": -73.9597080 }, + { "lat": 40.7331774, "lon": -73.9597994 }, + { "lat": 40.7332135, "lon": -73.9598055 }, + { "lat": 40.7332729, "lon": -73.9598151 }, + { "lat": 40.7333399, "lon": -73.9598257 }, + { "lat": 40.7334266, "lon": -73.9598396 }, + { "lat": 40.7338353, "lon": -73.9599050 }, + { "lat": 40.7339226, "lon": -73.9599190 }, + { "lat": 40.7339880, "lon": -73.9599302 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 880145991, + "bounds": { + "minlat": 40.8457772, + "minlon": -73.9800929, + "maxlat": 40.8460031, + "maxlon": -73.9797747 + }, + "nodes": [ + 7455134484, + 7455134480, + 7455134482 + ], + "geometry": [ + { "lat": 40.8458315, "lon": -73.9800929 }, + { "lat": 40.8457772, "lon": -73.9799986 }, + { "lat": 40.8460031, "lon": -73.9797747 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 880147866, + "bounds": { + "minlat": 40.8174503, + "minlon": -74.0109358, + "maxlat": 40.8183297, + "maxlon": -74.0100155 + }, + "nodes": [ + 8187030550, + 8187030552, + 10135064443, + 8187030551, + 10135064434, + 10135064440, + 10135064435, + 10135064436 + ], + "geometry": [ + { "lat": 40.8183297, "lon": -74.0100155 }, + { "lat": 40.8182868, "lon": -74.0100592 }, + { "lat": 40.8182084, "lon": -74.0101292 }, + { "lat": 40.8180213, "lon": -74.0102962 }, + { "lat": 40.8181587, "lon": -74.0105791 }, + { "lat": 40.8178325, "lon": -74.0108811 }, + { "lat": 40.8177730, "lon": -74.0109358 }, + { "lat": 40.8174503, "lon": -74.0103141 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 880147867, + "bounds": { + "minlat": 40.8189661, + "minlon": -74.0111891, + "maxlat": 40.8192217, + "maxlon": -74.0110089 + }, + "nodes": [ + 8187030553, + 8187030554, + 8187030555 + ], + "geometry": [ + { "lat": 40.8189661, "lon": -74.0111891 }, + { "lat": 40.8190013, "lon": -74.0111478 }, + { "lat": 40.8192217, "lon": -74.0110089 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 880256646, + "bounds": { + "minlat": 40.7179269, + "minlon": -73.9938390, + "maxlat": 40.7181637, + "maxlon": -73.9930731 + }, + "nodes": [ + 42452067, + 6369613051, + 12196062153, + 12196062152, + 12196062160, + 6330061747, + 42451660 + ], + "geometry": [ + { "lat": 40.7181637, "lon": -73.9938390 }, + { "lat": 40.7181196, "lon": -73.9937021 }, + { "lat": 40.7181094, "lon": -73.9936703 }, + { "lat": 40.7181007, "lon": -73.9936433 }, + { "lat": 40.7179827, "lon": -73.9932551 }, + { "lat": 40.7179603, "lon": -73.9931822 }, + { "lat": 40.7179269, "lon": -73.9930731 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 880274608, + "bounds": { + "minlat": 40.8345739, + "minlon": -73.9134628, + "maxlat": 40.8346182, + "maxlon": -73.9133258 + }, + "nodes": [ + 8187805231, + 13031182835, + 8187805230 + ], + "geometry": [ + { "lat": 40.8346182, "lon": -73.9134628 }, + { "lat": 40.8346096, "lon": -73.9134361 }, + { "lat": 40.8345739, "lon": -73.9133258 } + ], + "tags": { + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 880274618, + "bounds": { + "minlat": 40.8278249, + "minlon": -73.9118515, + "maxlat": 40.8281953, + "maxlon": -73.9116637 + }, + "nodes": [ + 8187805320, + 12038440366, + 42761108 + ], + "geometry": [ + { "lat": 40.8278249, "lon": -73.9118515 }, + { "lat": 40.8278895, "lon": -73.9118188 }, + { "lat": 40.8281953, "lon": -73.9116637 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:bus:forward": "1", + "name": "Webster Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10467", + "tiger:zip_right": "10470", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 880274619, + "bounds": { + "minlat": 40.8281953, + "minlon": -73.9116637, + "maxlat": 40.8286859, + "maxlon": -73.9116018 + }, + "nodes": [ + 42761108, + 8187805318, + 9665096119 + ], + "geometry": [ + { "lat": 40.8281953, "lon": -73.9116637 }, + { "lat": 40.8284682, "lon": -73.9116557 }, + { "lat": 40.8286859, "lon": -73.9116018 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Webster Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:zip_left": "10467", + "tiger:zip_right": "10470", + "turn:lanes": "|merge_to_left", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 880274620, + "bounds": { + "minlat": 40.8274597, + "minlon": -73.9121468, + "maxlat": 40.8278249, + "maxlon": -73.9118515 + }, + "nodes": [ + 7560827239, + 12038440381, + 8187805320 + ], + "geometry": [ + { "lat": 40.8274597, "lon": -73.9121468 }, + { "lat": 40.8277467, "lon": -73.9119147 }, + { "lat": 40.8278249, "lon": -73.9118515 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Melrose Avenue", + "oneway": "yes", + "parking:lane:left": "no_parking", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 880274622, + "bounds": { + "minlat": 40.8279143, + "minlon": -73.9121734, + "maxlat": 40.8284680, + "maxlon": -73.9118198 + }, + "nodes": [ + 8187805321, + 12038440075, + 12038440361, + 2827547781 + ], + "geometry": [ + { "lat": 40.8284680, "lon": -73.9118198 }, + { "lat": 40.8280141, "lon": -73.9121201 }, + { "lat": 40.8279793, "lon": -73.9121387 }, + { "lat": 40.8279143, "lon": -73.9121734 } + ], + "tags": { + "highway": "secondary", + "name": "Webster Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 880427668, + "bounds": { + "minlat": 40.8660342, + "minlon": -73.9284464, + "maxlat": 40.8660346, + "maxlon": -73.9284354 + }, + "nodes": [ + 1209512093, + 1209512082 + ], + "geometry": [ + { "lat": 40.8660346, "lon": -73.9284354 }, + { "lat": 40.8660342, "lon": -73.9284464 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 880427669, + "bounds": { + "minlat": 40.8660346, + "minlon": -73.9284354, + "maxlat": 40.8660380, + "maxlon": -73.9283349 + }, + "nodes": [ + 1209512048, + 1209512093 + ], + "geometry": [ + { "lat": 40.8660380, "lon": -73.9283349 }, + { "lat": 40.8660346, "lon": -73.9284354 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 880427670, + "bounds": { + "minlat": 40.8659429, + "minlon": -73.9284553, + "maxlat": 40.8661825, + "maxlon": -73.9283745 + }, + "nodes": [ + 2070984278, + 8189012609, + 1209512082, + 1209512053, + 5490791118 + ], + "geometry": [ + { "lat": 40.8661825, "lon": -73.9284443 }, + { "lat": 40.8661822, "lon": -73.9284553 }, + { "lat": 40.8660342, "lon": -73.9284464 }, + { "lat": 40.8659951, "lon": -73.9284441 }, + { "lat": 40.8659429, "lon": -73.9283745 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 880427671, + "bounds": { + "minlat": 40.8661860, + "minlon": -73.9283437, + "maxlat": 40.8661864, + "maxlon": -73.9283316 + }, + "nodes": [ + 5490791119, + 8189012608 + ], + "geometry": [ + { "lat": 40.8661864, "lon": -73.9283316 }, + { "lat": 40.8661860, "lon": -73.9283437 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 880427672, + "bounds": { + "minlat": 40.8660380, + "minlon": -73.9283349, + "maxlat": 40.8660384, + "maxlon": -73.9283227 + }, + "nodes": [ + 1209512068, + 1209512048 + ], + "geometry": [ + { "lat": 40.8660384, "lon": -73.9283227 }, + { "lat": 40.8660380, "lon": -73.9283349 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 880534092, + "bounds": { + "minlat": 40.7260183, + "minlon": -73.9182194, + "maxlat": 40.7278991, + "maxlon": -73.9145968 + }, + "nodes": [ + 8190068739, + 13250172728, + 8190068740, + 8190068741, + 8190068742, + 8190068743, + 8190068744, + 8190068745, + 8190068746, + 8190068747, + 8190068748, + 8190068749, + 8190068750, + 8190068751, + 8190068752, + 8190068753, + 8190068754, + 8190068755, + 8190068756, + 11055685753, + 8190068757 + ], + "geometry": [ + { "lat": 40.7269599, "lon": -73.9182194 }, + { "lat": 40.7269295, "lon": -73.9181252 }, + { "lat": 40.7269120, "lon": -73.9180756 }, + { "lat": 40.7265990, "lon": -73.9172258 }, + { "lat": 40.7262968, "lon": -73.9163950 }, + { "lat": 40.7261384, "lon": -73.9159281 }, + { "lat": 40.7260413, "lon": -73.9156053 }, + { "lat": 40.7260183, "lon": -73.9154762 }, + { "lat": 40.7260262, "lon": -73.9154387 }, + { "lat": 40.7260618, "lon": -73.9154115 }, + { "lat": 40.7261924, "lon": -73.9154157 }, + { "lat": 40.7265894, "lon": -73.9153998 }, + { "lat": 40.7268003, "lon": -73.9153806 }, + { "lat": 40.7269039, "lon": -73.9152415 }, + { "lat": 40.7271130, "lon": -73.9151359 }, + { "lat": 40.7273275, "lon": -73.9150184 }, + { "lat": 40.7275147, "lon": -73.9147809 }, + { "lat": 40.7276583, "lon": -73.9146874 }, + { "lat": 40.7278037, "lon": -73.9146322 }, + { "lat": 40.7278274, "lon": -73.9146222 }, + { "lat": 40.7278991, "lon": -73.9145968 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 880899505, + "bounds": { + "minlat": 40.7920860, + "minlon": -73.9267947, + "maxlat": 40.7929824, + "maxlon": -73.9255978 + }, + "nodes": [ + 8123418694, + 8193189531, + 11031859362, + 11031859363 + ], + "geometry": [ + { "lat": 40.7920860, "lon": -73.9255978 }, + { "lat": 40.7924998, "lon": -73.9265870 }, + { "lat": 40.7926325, "lon": -73.9266941 }, + { "lat": 40.7929824, "lon": -73.9267947 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 881056364, + "bounds": { + "minlat": 40.7746167, + "minlon": -73.9371875, + "maxlat": 40.7747918, + "maxlon": -73.9366548 + }, + "nodes": [ + 8194591500, + 8194591501, + 8194591503, + 8194591502 + ], + "geometry": [ + { "lat": 40.7747918, "lon": -73.9371875 }, + { "lat": 40.7746533, "lon": -73.9367649 }, + { "lat": 40.7746453, "lon": -73.9367407 }, + { "lat": 40.7746167, "lon": -73.9366548 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 882206236, + "bounds": { + "minlat": 40.8119140, + "minlon": -73.9989424, + "maxlat": 40.8123817, + "maxlon": -73.9986758 + }, + "nodes": [ + 8204294694, + 8204294695, + 8204294696, + 8204294697, + 8204294698 + ], + "geometry": [ + { "lat": 40.8119140, "lon": -73.9989424 }, + { "lat": 40.8119721, "lon": -73.9989076 }, + { "lat": 40.8120102, "lon": -73.9988963 }, + { "lat": 40.8120359, "lon": -73.9988888 }, + { "lat": 40.8123817, "lon": -73.9986758 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 882319233, + "bounds": { + "minlat": 40.8189786, + "minlon": -74.0087414, + "maxlat": 40.8196668, + "maxlon": -74.0084091 + }, + "nodes": [ + 8205339107, + 8205339108, + 8205339109 + ], + "geometry": [ + { "lat": 40.8196668, "lon": -74.0084091 }, + { "lat": 40.8189786, "lon": -74.0086175 }, + { "lat": 40.8190030, "lon": -74.0087414 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 882620005, + "bounds": { + "minlat": 40.8152434, + "minlon": -73.9067938, + "maxlat": 40.8153278, + "maxlon": -73.9063897 + }, + "nodes": [ + 8208196765, + 8208196767, + 8208196766 + ], + "geometry": [ + { "lat": 40.8153278, "lon": -73.9067938 }, + { "lat": 40.8152694, "lon": -73.9065143 }, + { "lat": 40.8152434, "lon": -73.9063897 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 882967083, + "bounds": { + "minlat": 40.7390430, + "minlon": -73.9555728, + "maxlat": 40.7390623, + "maxlon": -73.9553448 + }, + "nodes": [ + 5170181469, + 9121340053, + 2473602893, + 8097082828 + ], + "geometry": [ + { "lat": 40.7390623, "lon": -73.9553448 }, + { "lat": 40.7390585, "lon": -73.9553897 }, + { "lat": 40.7390519, "lon": -73.9554658 }, + { "lat": 40.7390430, "lon": -73.9555728 } + ], + "tags": { + "bicycle": "no", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 883143807, + "bounds": { + "minlat": 40.8187787, + "minlon": -74.0022214, + "maxlat": 40.8194699, + "maxlon": -74.0015997 + }, + "nodes": [ + 8212672895, + 8212672896 + ], + "geometry": [ + { "lat": 40.8194699, "lon": -74.0015997 }, + { "lat": 40.8187787, "lon": -74.0022214 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883143808, + "bounds": { + "minlat": 40.8186892, + "minlon": -74.0020314, + "maxlat": 40.8193848, + "maxlon": -74.0014176 + }, + "nodes": [ + 8212672897, + 8212672898 + ], + "geometry": [ + { "lat": 40.8193848, "lon": -74.0014176 }, + { "lat": 40.8186892, "lon": -74.0020314 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883719870, + "bounds": { + "minlat": 40.8138290, + "minlon": -74.0203722, + "maxlat": 40.8156234, + "maxlon": -74.0198275 + }, + "nodes": [ + 8218912813, + 8218912814, + 8218912815, + 8218912816, + 8218941717, + 8218941718, + 8218941719, + 8218941720, + 8218941721 + ], + "geometry": [ + { "lat": 40.8156234, "lon": -74.0199450 }, + { "lat": 40.8156072, "lon": -74.0200229 }, + { "lat": 40.8155975, "lon": -74.0200766 }, + { "lat": 40.8155489, "lon": -74.0203213 }, + { "lat": 40.8155319, "lon": -74.0203610 }, + { "lat": 40.8155030, "lon": -74.0203722 }, + { "lat": 40.8154696, "lon": -74.0203685 }, + { "lat": 40.8139726, "lon": -74.0198723 }, + { "lat": 40.8138290, "lon": -74.0198275 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883719871, + "bounds": { + "minlat": 40.8171970, + "minlon": -74.0184659, + "maxlat": 40.8174125, + "maxlon": -74.0182846 + }, + "nodes": [ + 8218941722, + 8218941723, + 8218941735, + 7138798270 + ], + "geometry": [ + { "lat": 40.8174125, "lon": -74.0182846 }, + { "lat": 40.8173359, "lon": -74.0183444 }, + { "lat": 40.8172504, "lon": -74.0184192 }, + { "lat": 40.8171970, "lon": -74.0184659 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883719872, + "bounds": { + "minlat": 40.8171350, + "minlon": -74.0172076, + "maxlat": 40.8172719, + "maxlon": -74.0170506 + }, + "nodes": [ + 3740792845, + 8218941737 + ], + "geometry": [ + { "lat": 40.8171350, "lon": -74.0170506 }, + { "lat": 40.8172719, "lon": -74.0172076 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883719873, + "bounds": { + "minlat": 40.8172719, + "minlon": -74.0173969, + "maxlat": 40.8174023, + "maxlon": -74.0172076 + }, + "nodes": [ + 8218941737, + 8218941745, + 8218941738, + 8218941739, + 8218941740, + 8218941747, + 8218941741, + 8218941746, + 8218941742, + 8218941743, + 8218941744, + 8218941737 + ], + "geometry": [ + { "lat": 40.8172719, "lon": -74.0172076 }, + { "lat": 40.8172892, "lon": -74.0172686 }, + { "lat": 40.8173188, "lon": -74.0173233 }, + { "lat": 40.8173296, "lon": -74.0173431 }, + { "lat": 40.8173531, "lon": -74.0173738 }, + { "lat": 40.8173750, "lon": -74.0173889 }, + { "lat": 40.8174023, "lon": -74.0173969 }, + { "lat": 40.8174017, "lon": -74.0173422 }, + { "lat": 40.8173943, "lon": -74.0173028 }, + { "lat": 40.8173740, "lon": -74.0172736 }, + { "lat": 40.8173184, "lon": -74.0172299 }, + { "lat": 40.8172719, "lon": -74.0172076 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883719874, + "bounds": { + "minlat": 40.8174023, + "minlon": -74.0189392, + "maxlat": 40.8182391, + "maxlon": -74.0173969 + }, + "nodes": [ + 8218941741, + 8218941748 + ], + "geometry": [ + { "lat": 40.8174023, "lon": -74.0173969 }, + { "lat": 40.8182391, "lon": -74.0189392 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883719942, + "bounds": { + "minlat": 40.8809394, + "minlon": -73.9672654, + "maxlat": 40.8811448, + "maxlon": -73.9668252 + }, + "nodes": [ + 8218937534, + 8218937535, + 8218937536, + 8218937537, + 8218937540, + 8218937538, + 8218937539 + ], + "geometry": [ + { "lat": 40.8811448, "lon": -73.9668252 }, + { "lat": 40.8811001, "lon": -73.9668732 }, + { "lat": 40.8810904, "lon": -73.9669107 }, + { "lat": 40.8810802, "lon": -73.9671047 }, + { "lat": 40.8810715, "lon": -73.9671400 }, + { "lat": 40.8810489, "lon": -73.9671661 }, + { "lat": 40.8809394, "lon": -73.9672654 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 883723154, + "bounds": { + "minlat": 40.8100830, + "minlon": -74.0178331, + "maxlat": 40.8103405, + "maxlon": -74.0176611 + }, + "nodes": [ + 8218960537, + 8218960538, + 8218960539 + ], + "geometry": [ + { "lat": 40.8100830, "lon": -74.0178331 }, + { "lat": 40.8102521, "lon": -74.0176611 }, + { "lat": 40.8103405, "lon": -74.0178044 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883725424, + "bounds": { + "minlat": 40.8365288, + "minlon": -74.0139346, + "maxlat": 40.8366815, + "maxlon": -74.0135146 + }, + "nodes": [ + 8218954503, + 8218954507, + 8218954504, + 8218954506, + 8218954505 + ], + "geometry": [ + { "lat": 40.8366815, "lon": -74.0135146 }, + { "lat": 40.8365339, "lon": -74.0136401 }, + { "lat": 40.8365288, "lon": -74.0136506 }, + { "lat": 40.8365322, "lon": -74.0136671 }, + { "lat": 40.8366448, "lon": -74.0139346 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 883725425, + "bounds": { + "minlat": 40.8360150, + "minlon": -74.0161801, + "maxlat": 40.8363970, + "maxlon": -74.0155211 + }, + "nodes": [ + 8218954508, + 8218992418, + 8218954509, + 8218992417, + 8218954510, + 8218954511, + 8218954512, + 8218954516, + 8218954513, + 8218954515, + 8218954514 + ], + "geometry": [ + { "lat": 40.8363429, "lon": -74.0161801 }, + { "lat": 40.8363952, "lon": -74.0161255 }, + { "lat": 40.8363970, "lon": -74.0161172 }, + { "lat": 40.8363965, "lon": -74.0161024 }, + { "lat": 40.8363937, "lon": -74.0160836 }, + { "lat": 40.8363766, "lon": -74.0160145 }, + { "lat": 40.8363585, "lon": -74.0158978 }, + { "lat": 40.8361483, "lon": -74.0155363 }, + { "lat": 40.8361305, "lon": -74.0155211 }, + { "lat": 40.8361144, "lon": -74.0155251 }, + { "lat": 40.8360150, "lon": -74.0155890 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883725426, + "bounds": { + "minlat": 40.8356259, + "minlon": -74.0174505, + "maxlat": 40.8365620, + "maxlon": -74.0165720 + }, + "nodes": [ + 8218992419, + 8218992420, + 8218992421, + 103277586 + ], + "geometry": [ + { "lat": 40.8356259, "lon": -74.0174505 }, + { "lat": 40.8357025, "lon": -74.0173668 }, + { "lat": 40.8365013, "lon": -74.0166177 }, + { "lat": 40.8365620, "lon": -74.0165720 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883725427, + "bounds": { + "minlat": 40.8372000, + "minlon": -74.0181597, + "maxlat": 40.8375992, + "maxlon": -74.0175690 + }, + "nodes": [ + 103198943, + 8218992422, + 8218992423, + 8218992424, + 8218992425, + 8218992426, + 8218992427, + 8218992428, + 8218992429, + 8218992430, + 8218992431, + 8218992432, + 8218992433, + 8218992434, + 8218992435, + 8218992438, + 8218992436, + 8218992437, + 103198944 + ], + "geometry": [ + { "lat": 40.8372000, "lon": -74.0176630 }, + { "lat": 40.8372686, "lon": -74.0178807 }, + { "lat": 40.8373266, "lon": -74.0181417 }, + { "lat": 40.8373474, "lon": -74.0181597 }, + { "lat": 40.8375503, "lon": -74.0181106 }, + { "lat": 40.8375675, "lon": -74.0180962 }, + { "lat": 40.8375811, "lon": -74.0180831 }, + { "lat": 40.8375920, "lon": -74.0180519 }, + { "lat": 40.8375992, "lon": -74.0179909 }, + { "lat": 40.8375929, "lon": -74.0179178 }, + { "lat": 40.8375748, "lon": -74.0177957 }, + { "lat": 40.8375223, "lon": -74.0176880 }, + { "lat": 40.8374960, "lon": -74.0176736 }, + { "lat": 40.8374724, "lon": -74.0176724 }, + { "lat": 40.8374317, "lon": -74.0176784 }, + { "lat": 40.8374104, "lon": -74.0176808 }, + { "lat": 40.8373891, "lon": -74.0176784 }, + { "lat": 40.8373760, "lon": -74.0176674 }, + { "lat": 40.8373160, "lon": -74.0175690 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883726978, + "bounds": { + "minlat": 40.8429417, + "minlon": -74.0072907, + "maxlat": 40.8433006, + "maxlon": -74.0070629 + }, + "nodes": [ + 8218997735, + 8218997736, + 8218997737, + 8218997738 + ], + "geometry": [ + { "lat": 40.8433006, "lon": -74.0070629 }, + { "lat": 40.8432504, "lon": -74.0071520 }, + { "lat": 40.8432230, "lon": -74.0071785 }, + { "lat": 40.8429417, "lon": -74.0072907 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883726979, + "bounds": { + "minlat": 40.8397252, + "minlon": -74.0052908, + "maxlat": 40.8404490, + "maxlon": -74.0047283 + }, + "nodes": [ + 8218997739, + 8218997740, + 8218997741, + 8218997742, + 8218997743, + 8218997744, + 8218997745, + 8218997746, + 8218997747 + ], + "geometry": [ + { "lat": 40.8397252, "lon": -74.0052908 }, + { "lat": 40.8398976, "lon": -74.0051749 }, + { "lat": 40.8399517, "lon": -74.0052055 }, + { "lat": 40.8399844, "lon": -74.0052192 }, + { "lat": 40.8400322, "lon": -74.0051960 }, + { "lat": 40.8402546, "lon": -74.0050011 }, + { "lat": 40.8402602, "lon": -74.0049084 }, + { "lat": 40.8402984, "lon": -74.0048652 }, + { "lat": 40.8404490, "lon": -74.0047283 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883726996, + "bounds": { + "minlat": 40.8371428, + "minlon": -74.0092081, + "maxlat": 40.8379502, + "maxlon": -74.0086694 + }, + "nodes": [ + 8218997748, + 8218997749, + 8218997750, + 8218997751, + 8218997752, + 8218997753, + 8218997754, + 8218997778 + ], + "geometry": [ + { "lat": 40.8371428, "lon": -74.0092081 }, + { "lat": 40.8372907, "lon": -74.0091011 }, + { "lat": 40.8373874, "lon": -74.0091200 }, + { "lat": 40.8374953, "lon": -74.0091184 }, + { "lat": 40.8375927, "lon": -74.0090659 }, + { "lat": 40.8376926, "lon": -74.0089798 }, + { "lat": 40.8378912, "lon": -74.0087349 }, + { "lat": 40.8379502, "lon": -74.0086694 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883726997, + "bounds": { + "minlat": 40.8368079, + "minlon": -74.0091011, + "maxlat": 40.8372907, + "maxlon": -74.0078722 + }, + "nodes": [ + 8218997749, + 8218997755, + 8218997756, + 8218997757, + 8218997758, + 8218997759, + 8668342168, + 8218997760, + 8218997761 + ], + "geometry": [ + { "lat": 40.8372907, "lon": -74.0091011 }, + { "lat": 40.8372697, "lon": -74.0089983 }, + { "lat": 40.8371399, "lon": -74.0087560 }, + { "lat": 40.8370337, "lon": -74.0085431 }, + { "lat": 40.8369871, "lon": -74.0084502 }, + { "lat": 40.8369658, "lon": -74.0083311 }, + { "lat": 40.8369090, "lon": -74.0081671 }, + { "lat": 40.8368924, "lon": -74.0081192 }, + { "lat": 40.8368079, "lon": -74.0078722 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883726998, + "bounds": { + "minlat": 40.8396251, + "minlon": -74.0108535, + "maxlat": 40.8403519, + "maxlon": -74.0101895 + }, + "nodes": [ + 7094787498, + 8218997762, + 8218997763, + 8218997764, + 8218997765, + 8218997766, + 8218997767, + 8218997768, + 8218997769, + 8218997770, + 8218997771, + 8218997772, + 8218997773, + 8218997774, + 7094787498 + ], + "geometry": [ + { "lat": 40.8396251, "lon": -74.0108535 }, + { "lat": 40.8398323, "lon": -74.0105246 }, + { "lat": 40.8400661, "lon": -74.0102176 }, + { "lat": 40.8401308, "lon": -74.0101895 }, + { "lat": 40.8402399, "lon": -74.0101946 }, + { "lat": 40.8402969, "lon": -74.0102418 }, + { "lat": 40.8403423, "lon": -74.0103044 }, + { "lat": 40.8403519, "lon": -74.0103861 }, + { "lat": 40.8403384, "lon": -74.0104410 }, + { "lat": 40.8403104, "lon": -74.0104652 }, + { "lat": 40.8402119, "lon": -74.0105061 }, + { "lat": 40.8401066, "lon": -74.0105469 }, + { "lat": 40.8398951, "lon": -74.0107065 }, + { "lat": 40.8397300, "lon": -74.0108188 }, + { "lat": 40.8396251, "lon": -74.0108535 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 883726999, + "bounds": { + "minlat": 40.8380072, + "minlon": -74.0120042, + "maxlat": 40.8382999, + "maxlon": -74.0115623 + }, + "nodes": [ + 6969360734, + 8218997775, + 8218997776, + 8218997777 + ], + "geometry": [ + { "lat": 40.8380072, "lon": -74.0120042 }, + { "lat": 40.8382203, "lon": -74.0118418 }, + { "lat": 40.8382844, "lon": -74.0116975 }, + { "lat": 40.8382999, "lon": -74.0115623 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883733526, + "bounds": { + "minlat": 40.8141127, + "minlon": -74.0099675, + "maxlat": 40.8144896, + "maxlon": -74.0095263 + }, + "nodes": [ + 8219059972, + 12456261916, + 8219059973, + 8219059974, + 8219059975, + 8219059976, + 8219059977, + 8219059978, + 8219059979, + 8219059980, + 12456262059, + 8219059981 + ], + "geometry": [ + { "lat": 40.8141724, "lon": -74.0099675 }, + { "lat": 40.8141392, "lon": -74.0098856 }, + { "lat": 40.8141268, "lon": -74.0098553 }, + { "lat": 40.8141154, "lon": -74.0098088 }, + { "lat": 40.8141127, "lon": -74.0097597 }, + { "lat": 40.8141415, "lon": -74.0097145 }, + { "lat": 40.8142558, "lon": -74.0096051 }, + { "lat": 40.8143349, "lon": -74.0095303 }, + { "lat": 40.8143624, "lon": -74.0095263 }, + { "lat": 40.8144026, "lon": -74.0095475 }, + { "lat": 40.8144428, "lon": -74.0096167 }, + { "lat": 40.8144896, "lon": -74.0096961 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 883733527, + "bounds": { + "minlat": 40.8135196, + "minlon": -74.0102784, + "maxlat": 40.8141010, + "maxlon": -74.0099018 + }, + "nodes": [ + 8219059982, + 12456223779, + 8219059983, + 8219059984, + 8219059985, + 8219059986, + 12456262099, + 8219059987 + ], + "geometry": [ + { "lat": 40.8141010, "lon": -74.0100244 }, + { "lat": 40.8140544, "lon": -74.0099531 }, + { "lat": 40.8140228, "lon": -74.0099102 }, + { "lat": 40.8139870, "lon": -74.0099018 }, + { "lat": 40.8139156, "lon": -74.0099230 }, + { "lat": 40.8138113, "lon": -74.0100171 }, + { "lat": 40.8135623, "lon": -74.0102402 }, + { "lat": 40.8135196, "lon": -74.0102784 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 883744808, + "bounds": { + "minlat": 40.8802132, + "minlon": -73.9586594, + "maxlat": 40.8806184, + "maxlon": -73.9583463 + }, + "nodes": [ + 8219172711, + 8219172712 + ], + "geometry": [ + { "lat": 40.8802132, "lon": -73.9586594 }, + { "lat": 40.8806184, "lon": -73.9583463 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883744809, + "bounds": { + "minlat": 40.8815103, + "minlon": -73.9579607, + "maxlat": 40.8820239, + "maxlon": -73.9576251 + }, + "nodes": [ + 8219172713, + 8219172716, + 8219181317, + 8219181318 + ], + "geometry": [ + { "lat": 40.8820239, "lon": -73.9579011 }, + { "lat": 40.8818854, "lon": -73.9576251 }, + { "lat": 40.8815518, "lon": -73.9578915 }, + { "lat": 40.8815103, "lon": -73.9579607 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883756303, + "bounds": { + "minlat": 40.8544479, + "minlon": -74.0002234, + "maxlat": 40.8550076, + "maxlon": -73.9998219 + }, + "nodes": [ + 8219269093, + 8219269094, + 8219269095, + 8219269096, + 8219269097 + ], + "geometry": [ + { "lat": 40.8544479, "lon": -73.9998219 }, + { "lat": 40.8546656, "lon": -74.0001629 }, + { "lat": 40.8547071, "lon": -74.0002139 }, + { "lat": 40.8547557, "lon": -74.0002234 }, + { "lat": 40.8550076, "lon": -74.0000929 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883757627, + "bounds": { + "minlat": 40.8335520, + "minlon": -73.9752044, + "maxlat": 40.8337317, + "maxlon": -73.9745760 + }, + "nodes": [ + 7130161691, + 8219290351, + 8219290352, + 8219290353 + ], + "geometry": [ + { "lat": 40.8337317, "lon": -73.9752044 }, + { "lat": 40.8336959, "lon": -73.9750630 }, + { "lat": 40.8336465, "lon": -73.9748902 }, + { "lat": 40.8335520, "lon": -73.9745760 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 883757768, + "bounds": { + "minlat": 40.8546778, + "minlon": -74.0163245, + "maxlat": 40.8552010, + "maxlon": -74.0145863 + }, + "nodes": [ + 103225086, + 8219272773, + 8219272774, + 8219272775, + 8219272776, + 8219272777, + 8219272778, + 8219272779, + 8219272780, + 8219272781, + 8219272782, + 8219272783, + 8219272784, + 8219272785, + 8219272775 + ], + "geometry": [ + { "lat": 40.8549046, "lon": -74.0163245 }, + { "lat": 40.8548898, "lon": -74.0162137 }, + { "lat": 40.8548280, "lon": -74.0158410 }, + { "lat": 40.8547453, "lon": -74.0154335 }, + { "lat": 40.8547331, "lon": -74.0151825 }, + { "lat": 40.8546778, "lon": -74.0149433 }, + { "lat": 40.8546823, "lon": -74.0148055 }, + { "lat": 40.8547402, "lon": -74.0147242 }, + { "lat": 40.8550468, "lon": -74.0145863 }, + { "lat": 40.8551128, "lon": -74.0146005 }, + { "lat": 40.8552010, "lon": -74.0149127 }, + { "lat": 40.8551930, "lon": -74.0149740 }, + { "lat": 40.8548989, "lon": -74.0151401 }, + { "lat": 40.8547919, "lon": -74.0152685 }, + { "lat": 40.8547453, "lon": -74.0154335 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883758954, + "bounds": { + "minlat": 40.7982286, + "minlon": -74.0156443, + "maxlat": 40.7984343, + "maxlon": -74.0150848 + }, + "nodes": [ + 8219290840, + 8219290841, + 8219290843, + 8219290842 + ], + "geometry": [ + { "lat": 40.7982286, "lon": -74.0150848 }, + { "lat": 40.7982474, "lon": -74.0151723 }, + { "lat": 40.7982872, "lon": -74.0152919 }, + { "lat": 40.7984343, "lon": -74.0156443 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883765558, + "bounds": { + "minlat": 40.8667583, + "minlon": -73.9847570, + "maxlat": 40.8669765, + "maxlon": -73.9843135 + }, + "nodes": [ + 8219358675, + 8219358676, + 8219358677, + 8219358674 + ], + "geometry": [ + { "lat": 40.8668167, "lon": -73.9843135 }, + { "lat": 40.8669765, "lon": -73.9847129 }, + { "lat": 40.8669235, "lon": -73.9847570 }, + { "lat": 40.8667583, "lon": -73.9843526 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 883766145, + "bounds": { + "minlat": 40.8273966, + "minlon": -74.0191439, + "maxlat": 40.8274353, + "maxlon": -74.0189460 + }, + "nodes": [ + 103123548, + 8219342556 + ], + "geometry": [ + { "lat": 40.8273966, "lon": -74.0189460 }, + { "lat": 40.8274353, "lon": -74.0191439 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883766146, + "bounds": { + "minlat": 40.8274353, + "minlon": -74.0200648, + "maxlat": 40.8275827, + "maxlon": -74.0191439 + }, + "nodes": [ + 8219342556, + 8219342557, + 8219342549, + 8219342550, + 8219342551, + 8219342552, + 8219342553, + 8219342554, + 8219342555 + ], + "geometry": [ + { "lat": 40.8274353, "lon": -74.0191439 }, + { "lat": 40.8274371, "lon": -74.0192157 }, + { "lat": 40.8274423, "lon": -74.0194314 }, + { "lat": 40.8274462, "lon": -74.0196213 }, + { "lat": 40.8274546, "lon": -74.0197511 }, + { "lat": 40.8274683, "lon": -74.0197932 }, + { "lat": 40.8275528, "lon": -74.0199522 }, + { "lat": 40.8275691, "lon": -74.0200141 }, + { "lat": 40.8275827, "lon": -74.0200648 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883766147, + "bounds": { + "minlat": 40.8272550, + "minlon": -74.0173919, + "maxlat": 40.8274904, + "maxlon": -74.0169271 + }, + "nodes": [ + 8219342558, + 8219342559, + 8219342560 + ], + "geometry": [ + { "lat": 40.8272550, "lon": -74.0169271 }, + { "lat": 40.8274584, "lon": -74.0170064 }, + { "lat": 40.8274904, "lon": -74.0173919 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883767840, + "bounds": { + "minlat": 40.8503521, + "minlon": -73.9736466, + "maxlat": 40.8507108, + "maxlon": -73.9730866 + }, + "nodes": [ + 8219370059, + 8219370060 + ], + "geometry": [ + { "lat": 40.8507108, "lon": -73.9736466 }, + { "lat": 40.8503521, "lon": -73.9730866 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883768392, + "bounds": { + "minlat": 40.7740238, + "minlon": -74.0130151, + "maxlat": 40.7745633, + "maxlon": -74.0117386 + }, + "nodes": [ + 4069497848, + 8219391060, + 8219391061, + 8219391062 + ], + "geometry": [ + { "lat": 40.7740238, "lon": -74.0117386 }, + { "lat": 40.7742434, "lon": -74.0122640 }, + { "lat": 40.7745147, "lon": -74.0128937 }, + { "lat": 40.7745633, "lon": -74.0130151 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883768864, + "bounds": { + "minlat": 40.8483788, + "minlon": -73.9695070, + "maxlat": 40.8485052, + "maxlon": -73.9690423 + }, + "nodes": [ + 8219377497, + 10002778630, + 10002778654, + 8219377498 + ], + "geometry": [ + { "lat": 40.8485052, "lon": -73.9695070 }, + { "lat": 40.8484821, "lon": -73.9694222 }, + { "lat": 40.8484781, "lon": -73.9694072 }, + { "lat": 40.8483788, "lon": -73.9690423 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883771524, + "bounds": { + "minlat": 40.8296207, + "minlon": -73.9951730, + "maxlat": 40.8301275, + "maxlon": -73.9938986 + }, + "nodes": [ + 10301902661, + 10301902660, + 10301902659, + 10301902658, + 8219393782, + 8219393783 + ], + "geometry": [ + { "lat": 40.8296207, "lon": -73.9951730 }, + { "lat": 40.8301043, "lon": -73.9947202 }, + { "lat": 40.8301271, "lon": -73.9946828 }, + { "lat": 40.8301275, "lon": -73.9946306 }, + { "lat": 40.8300351, "lon": -73.9944417 }, + { "lat": 40.8297507, "lon": -73.9938986 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883771525, + "bounds": { + "minlat": 40.8291736, + "minlon": -73.9941552, + "maxlat": 40.8297507, + "maxlon": -73.9935735 + }, + "nodes": [ + 8219393785, + 13527758463, + 8219393784, + 8219393783, + 8219393791, + 8219393790, + 8219393789, + 8219393788, + 8219393787, + 8219393786 + ], + "geometry": [ + { "lat": 40.8296603, "lon": -73.9935735 }, + { "lat": 40.8296957, "lon": -73.9936898 }, + { "lat": 40.8297167, "lon": -73.9937589 }, + { "lat": 40.8297507, "lon": -73.9938986 }, + { "lat": 40.8294620, "lon": -73.9941272 }, + { "lat": 40.8294010, "lon": -73.9941532 }, + { "lat": 40.8293472, "lon": -73.9941552 }, + { "lat": 40.8292970, "lon": -73.9941375 }, + { "lat": 40.8292406, "lon": -73.9940937 }, + { "lat": 40.8291736, "lon": -73.9939600 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 883772267, + "bounds": { + "minlat": 40.8473743, + "minlon": -74.0156802, + "maxlat": 40.8478281, + "maxlon": -74.0139096 + }, + "nodes": [ + 8219440392, + 8219440393, + 8219440394, + 8219440395, + 8219440396, + 8219440397, + 8219440404, + 8219440398, + 8219440399, + 8219440400, + 8219440401, + 8219440402, + 8219440403, + 8219440404 + ], + "geometry": [ + { "lat": 40.8475953, "lon": -74.0139096 }, + { "lat": 40.8476340, "lon": -74.0140420 }, + { "lat": 40.8478253, "lon": -74.0143951 }, + { "lat": 40.8478281, "lon": -74.0145111 }, + { "lat": 40.8477861, "lon": -74.0147340 }, + { "lat": 40.8477455, "lon": -74.0148191 }, + { "lat": 40.8475085, "lon": -74.0150201 }, + { "lat": 40.8473743, "lon": -74.0151339 }, + { "lat": 40.8473743, "lon": -74.0152117 }, + { "lat": 40.8475480, "lon": -74.0156691 }, + { "lat": 40.8475802, "lon": -74.0156802 }, + { "lat": 40.8477049, "lon": -74.0156061 }, + { "lat": 40.8477105, "lon": -74.0155728 }, + { "lat": 40.8475085, "lon": -74.0150201 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883772268, + "bounds": { + "minlat": 40.8468966, + "minlon": -74.0144622, + "maxlat": 40.8470713, + "maxlon": -74.0138607 + }, + "nodes": [ + 298566248, + 8219440405, + 8219440406, + 8219440407, + 8219440408 + ], + "geometry": [ + { "lat": 40.8470713, "lon": -74.0138607 }, + { "lat": 40.8470291, "lon": -74.0140274 }, + { "lat": 40.8468966, "lon": -74.0141458 }, + { "lat": 40.8468984, "lon": -74.0141885 }, + { "lat": 40.8470361, "lon": -74.0144622 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883772269, + "bounds": { + "minlat": 40.8470291, + "minlon": -74.0142850, + "maxlat": 40.8471655, + "maxlon": -74.0140274 + }, + "nodes": [ + 8219440405, + 8219440409 + ], + "geometry": [ + { "lat": 40.8470291, "lon": -74.0140274 }, + { "lat": 40.8471655, "lon": -74.0142850 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883774426, + "bounds": { + "minlat": 40.8822736, + "minlon": -73.9816359, + "maxlat": 40.8829662, + "maxlon": -73.9810549 + }, + "nodes": [ + 8219449630, + 8219449631, + 8219449632, + 8219449633, + 8219449634, + 8219449635, + 8219449636, + 8219449637, + 8219449638, + 8219449639, + 8219449640 + ], + "geometry": [ + { "lat": 40.8829662, "lon": -73.9810549 }, + { "lat": 40.8827405, "lon": -73.9812796 }, + { "lat": 40.8826969, "lon": -73.9813486 }, + { "lat": 40.8825652, "lon": -73.9814967 }, + { "lat": 40.8825421, "lon": -73.9815250 }, + { "lat": 40.8825165, "lon": -73.9815182 }, + { "lat": 40.8825028, "lon": -73.9814922 }, + { "lat": 40.8824848, "lon": -73.9814662 }, + { "lat": 40.8824583, "lon": -73.9814605 }, + { "lat": 40.8824275, "lon": -73.9814730 }, + { "lat": 40.8822736, "lon": -73.9816359 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883774427, + "bounds": { + "minlat": 40.8822987, + "minlon": -73.9810782, + "maxlat": 40.8827192, + "maxlon": -73.9806266 + }, + "nodes": [ + 8219449641, + 8219449642, + 8219449643 + ], + "geometry": [ + { "lat": 40.8827192, "lon": -73.9806266 }, + { "lat": 40.8826315, "lon": -73.9807334 }, + { "lat": 40.8822987, "lon": -73.9810782 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883774428, + "bounds": { + "minlat": 40.8816105, + "minlon": -73.9818342, + "maxlat": 40.8821294, + "maxlon": -73.9808066 + }, + "nodes": [ + 8219449644, + 8219449645, + 8219449646, + 8219449647, + 8219449648, + 8219449649 + ], + "geometry": [ + { "lat": 40.8816105, "lon": -73.9818342 }, + { "lat": 40.8820988, "lon": -73.9813609 }, + { "lat": 40.8821214, "lon": -73.9813302 }, + { "lat": 40.8821294, "lon": -73.9812950 }, + { "lat": 40.8821221, "lon": -73.9812256 }, + { "lat": 40.8818889, "lon": -73.9808066 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883774429, + "bounds": { + "minlat": 40.8810932, + "minlon": -73.9809218, + "maxlat": 40.8814958, + "maxlon": -73.9805401 + }, + "nodes": [ + 8219449650, + 8219449651 + ], + "geometry": [ + { "lat": 40.8810932, "lon": -73.9809218 }, + { "lat": 40.8814958, "lon": -73.9805401 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883776170, + "bounds": { + "minlat": 40.8734788, + "minlon": -73.9543269, + "maxlat": 40.8738870, + "maxlon": -73.9532231 + }, + "nodes": [ + 8219460636, + 8219460645, + 8219460646, + 12351040453, + 8219460637, + 8219460638, + 8219460639, + 8219460644, + 8219460640 + ], + "geometry": [ + { "lat": 40.8735854, "lon": -73.9543269 }, + { "lat": 40.8736379, "lon": -73.9542738 }, + { "lat": 40.8737148, "lon": -73.9541962 }, + { "lat": 40.8737454, "lon": -73.9541682 }, + { "lat": 40.8738249, "lon": -73.9540954 }, + { "lat": 40.8738870, "lon": -73.9540432 }, + { "lat": 40.8736236, "lon": -73.9535647 }, + { "lat": 40.8735722, "lon": -73.9534496 }, + { "lat": 40.8734788, "lon": -73.9532231 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883776171, + "bounds": { + "minlat": 40.8735722, + "minlon": -73.9534496, + "maxlat": 40.8739112, + "maxlon": -73.9530621 + }, + "nodes": [ + 8219460641, + 8219460642, + 8219460643, + 8219460644 + ], + "geometry": [ + { "lat": 40.8738471, "lon": -73.9530621 }, + { "lat": 40.8739112, "lon": -73.9532870 }, + { "lat": 40.8738752, "lon": -73.9533065 }, + { "lat": 40.8735722, "lon": -73.9534496 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883776172, + "bounds": { + "minlat": 40.8749556, + "minlon": -73.9536579, + "maxlat": 40.8754854, + "maxlon": -73.9525981 + }, + "nodes": [ + 8219460647, + 8219460648, + 8219460654, + 8219460649, + 11015313782, + 8219460650, + 8219460651, + 8219460652, + 8219460653 + ], + "geometry": [ + { "lat": 40.8749556, "lon": -73.9525981 }, + { "lat": 40.8750267, "lon": -73.9527538 }, + { "lat": 40.8751035, "lon": -73.9528537 }, + { "lat": 40.8752132, "lon": -73.9530484 }, + { "lat": 40.8752684, "lon": -73.9531666 }, + { "lat": 40.8752857, "lon": -73.9532037 }, + { "lat": 40.8753164, "lon": -73.9533197 }, + { "lat": 40.8753683, "lon": -73.9534502 }, + { "lat": 40.8754854, "lon": -73.9536579 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883776173, + "bounds": { + "minlat": 40.8767161, + "minlon": -73.9516883, + "maxlat": 40.8774773, + "maxlon": -73.9513921 + }, + "nodes": [ + 8219460655, + 8219460656, + 8219460657, + 8219460658, + 8219460659, + 8219460660, + 8219460661 + ], + "geometry": [ + { "lat": 40.8774773, "lon": -73.9513921 }, + { "lat": 40.8773834, "lon": -73.9514677 }, + { "lat": 40.8772085, "lon": -73.9514790 }, + { "lat": 40.8770600, "lon": -73.9514724 }, + { "lat": 40.8769466, "lon": -73.9514696 }, + { "lat": 40.8769080, "lon": -73.9515036 }, + { "lat": 40.8767161, "lon": -73.9516883 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883779319, + "bounds": { + "minlat": 40.8112580, + "minlon": -73.9917447, + "maxlat": 40.8118465, + "maxlon": -73.9912698 + }, + "nodes": [ + 8219493617, + 8219493618, + 8219493619, + 8219493620, + 8219493621, + 8219493622 + ], + "geometry": [ + { "lat": 40.8112580, "lon": -73.9917447 }, + { "lat": 40.8115449, "lon": -73.9914777 }, + { "lat": 40.8115849, "lon": -73.9914703 }, + { "lat": 40.8116292, "lon": -73.9914744 }, + { "lat": 40.8116991, "lon": -73.9914266 }, + { "lat": 40.8118465, "lon": -73.9912698 } + ], + "tags": { + "highway": "service", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 883780863, + "bounds": { + "minlat": 40.8651371, + "minlon": -73.9600655, + "maxlat": 40.8655834, + "maxlon": -73.9597052 + }, + "nodes": [ + 5707417262, + 8219498964, + 8219498965, + 8219498966, + 8219498967, + 8219498968 + ], + "geometry": [ + { "lat": 40.8655834, "lon": -73.9599754 }, + { "lat": 40.8655254, "lon": -73.9599398 }, + { "lat": 40.8654975, "lon": -73.9599421 }, + { "lat": 40.8654574, "lon": -73.9599560 }, + { "lat": 40.8653406, "lon": -73.9600655 }, + { "lat": 40.8651371, "lon": -73.9597052 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883780930, + "bounds": { + "minlat": 40.8375647, + "minlon": -73.9703646, + "maxlat": 40.8392901, + "maxlon": -73.9699052 + }, + "nodes": [ + 8219505240, + 8219505241, + 8219505242, + 8219505243, + 8219505244, + 8219505245, + 8219505246, + 8219505247, + 8219505248, + 8219505249, + 3882399225 + ], + "geometry": [ + { "lat": 40.8375699, "lon": -73.9703646 }, + { "lat": 40.8375647, "lon": -73.9703196 }, + { "lat": 40.8375729, "lon": -73.9702426 }, + { "lat": 40.8376463, "lon": -73.9702019 }, + { "lat": 40.8378632, "lon": -73.9701491 }, + { "lat": 40.8383801, "lon": -73.9700615 }, + { "lat": 40.8385486, "lon": -73.9700379 }, + { "lat": 40.8388179, "lon": -73.9699314 }, + { "lat": 40.8389106, "lon": -73.9699139 }, + { "lat": 40.8390816, "lon": -73.9699052 }, + { "lat": 40.8392901, "lon": -73.9699159 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883780931, + "bounds": { + "minlat": 40.8376463, + "minlon": -73.9703374, + "maxlat": 40.8376729, + "maxlon": -73.9702019 + }, + "nodes": [ + 8219505243, + 8219505254, + 7697903101 + ], + "geometry": [ + { "lat": 40.8376463, "lon": -73.9702019 }, + { "lat": 40.8376662, "lon": -73.9703032 }, + { "lat": 40.8376729, "lon": -73.9703374 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883781873, + "bounds": { + "minlat": 40.8636028, + "minlon": -73.9910864, + "maxlat": 40.8639942, + "maxlon": -73.9907401 + }, + "nodes": [ + 8219511351, + 8219511352, + 8219511356, + 8219511353, + 8219511357, + 8219511354, + 8219511355 + ], + "geometry": [ + { "lat": 40.8636028, "lon": -73.9910864 }, + { "lat": 40.8637019, "lon": -73.9909687 }, + { "lat": 40.8639320, "lon": -73.9907487 }, + { "lat": 40.8639451, "lon": -73.9907437 }, + { "lat": 40.8639600, "lon": -73.9907401 }, + { "lat": 40.8639718, "lon": -73.9907480 }, + { "lat": 40.8639942, "lon": -73.9907969 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883783003, + "bounds": { + "minlat": 40.8463380, + "minlon": -74.0044759, + "maxlat": 40.8466167, + "maxlon": -74.0037109 + }, + "nodes": [ + 8219522616, + 8219528717, + 8219528718, + 8219528719, + 8219528720, + 8219528722, + 8219528721 + ], + "geometry": [ + { "lat": 40.8463380, "lon": -74.0037109 }, + { "lat": 40.8466041, "lon": -74.0041871 }, + { "lat": 40.8466167, "lon": -74.0042206 }, + { "lat": 40.8466083, "lon": -74.0042803 }, + { "lat": 40.8465838, "lon": -74.0043182 }, + { "lat": 40.8465235, "lon": -74.0043895 }, + { "lat": 40.8464504, "lon": -74.0044759 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 883783004, + "bounds": { + "minlat": 40.8463469, + "minlon": -74.0043895, + "maxlat": 40.8465235, + "maxlon": -74.0042413 + }, + "nodes": [ + 8219528722, + 8219528723, + 8219528724, + 8219528725, + 8219528726 + ], + "geometry": [ + { "lat": 40.8465235, "lon": -74.0043895 }, + { "lat": 40.8464481, "lon": -74.0042557 }, + { "lat": 40.8464174, "lon": -74.0042413 }, + { "lat": 40.8463912, "lon": -74.0042481 }, + { "lat": 40.8463469, "lon": -74.0042928 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 883787317, + "bounds": { + "minlat": 40.8693978, + "minlon": -73.9707151, + "maxlat": 40.8697903, + "maxlon": -73.9704091 + }, + "nodes": [ + 8219555657, + 8219555658, + 8219555659, + 8219555660, + 8219555661, + 8219555662, + 8219555663 + ], + "geometry": [ + { "lat": 40.8697903, "lon": -73.9705712 }, + { "lat": 40.8697268, "lon": -73.9704749 }, + { "lat": 40.8696733, "lon": -73.9704225 }, + { "lat": 40.8696198, "lon": -73.9704091 }, + { "lat": 40.8695719, "lon": -73.9704249 }, + { "lat": 40.8694372, "lon": -73.9706286 }, + { "lat": 40.8693978, "lon": -73.9707151 } + ], + "tags": { + "access": "private", + "highway": "residential" + } +}, +{ + "type": "way", + "id": 883790188, + "bounds": { + "minlat": 40.8815727, + "minlon": -73.9512755, + "maxlat": 40.8820115, + "maxlon": -73.9508142 + }, + "nodes": [ + 7930376716, + 10755133949, + 10755133943, + 8219593586, + 10755133942, + 10755133944, + 10755133948, + 8219593587, + 10755133945, + 10755133947, + 8219593588, + 10755133946, + 8219593589, + 8219593590 + ], + "geometry": [ + { "lat": 40.8818315, "lon": -73.9508142 }, + { "lat": 40.8820026, "lon": -73.9511385 }, + { "lat": 40.8820097, "lon": -73.9511567 }, + { "lat": 40.8820115, "lon": -73.9511691 }, + { "lat": 40.8820069, "lon": -73.9511827 }, + { "lat": 40.8819998, "lon": -73.9511905 }, + { "lat": 40.8819829, "lon": -73.9511983 }, + { "lat": 40.8819167, "lon": -73.9512224 }, + { "lat": 40.8817804, "lon": -73.9512754 }, + { "lat": 40.8817678, "lon": -73.9512755 }, + { "lat": 40.8817556, "lon": -73.9512703 }, + { "lat": 40.8817434, "lon": -73.9512574 }, + { "lat": 40.8816963, "lon": -73.9511787 }, + { "lat": 40.8815727, "lon": -73.9509126 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 883794210, + "bounds": { + "minlat": 40.8201415, + "minlon": -73.9938491, + "maxlat": 40.8207980, + "maxlon": -73.9918710 + }, + "nodes": [ + 8219617258, + 13524700356, + 8219617259, + 8605558049, + 8605558050, + 8605558051, + 8605558052, + 8605558053, + 8605558054, + 8605558055, + 8605558056 + ], + "geometry": [ + { "lat": 40.8202122, "lon": -73.9918710 }, + { "lat": 40.8202492, "lon": -73.9919536 }, + { "lat": 40.8203022, "lon": -73.9920720 }, + { "lat": 40.8203084, "lon": -73.9921609 }, + { "lat": 40.8202863, "lon": -73.9922323 }, + { "lat": 40.8202102, "lon": -73.9923069 }, + { "lat": 40.8201636, "lon": -73.9923571 }, + { "lat": 40.8201439, "lon": -73.9924285 }, + { "lat": 40.8201415, "lon": -73.9925063 }, + { "lat": 40.8201648, "lon": -73.9925777 }, + { "lat": 40.8207980, "lon": -73.9938491 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 883805100, + "bounds": { + "minlat": 40.8305464, + "minlon": -73.9984591, + "maxlat": 40.8311328, + "maxlon": -73.9978050 + }, + "nodes": [ + 103101264, + 8530324571, + 8219700732, + 8219700728, + 8219700733, + 8219700729, + 8219700730, + 8219700731, + 103293167 + ], + "geometry": [ + { "lat": 40.8310160, "lon": -73.9978050 }, + { "lat": 40.8311010, "lon": -73.9979897 }, + { "lat": 40.8311328, "lon": -73.9980589 }, + { "lat": 40.8311160, "lon": -73.9981173 }, + { "lat": 40.8310979, "lon": -73.9981470 }, + { "lat": 40.8308330, "lon": -73.9984226 }, + { "lat": 40.8307834, "lon": -73.9984591 }, + { "lat": 40.8306841, "lon": -73.9984243 }, + { "lat": 40.8305464, "lon": -73.9983167 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 883809834, + "bounds": { + "minlat": 40.8575758, + "minlon": -73.9988993, + "maxlat": 40.8582165, + "maxlon": -73.9979973 + }, + "nodes": [ + 2468325005, + 8219757959, + 10115677190, + 10115677188, + 10255735251, + 8219757961, + 10255735250, + 8219757962, + 10115677187, + 10115677189, + 2468325005 + ], + "geometry": [ + { "lat": 40.8578572, "lon": -73.9979973 }, + { "lat": 40.8582165, "lon": -73.9986228 }, + { "lat": 40.8581372, "lon": -73.9987329 }, + { "lat": 40.8580558, "lon": -73.9988326 }, + { "lat": 40.8579921, "lon": -73.9988979 }, + { "lat": 40.8579696, "lon": -73.9988993 }, + { "lat": 40.8579470, "lon": -73.9988778 }, + { "lat": 40.8575758, "lon": -73.9982838 }, + { "lat": 40.8576792, "lon": -73.9981767 }, + { "lat": 40.8577741, "lon": -73.9980811 }, + { "lat": 40.8578572, "lon": -73.9979973 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 884400281, + "bounds": { + "minlat": 40.7479910, + "minlon": -73.9703956, + "maxlat": 40.7481335, + "maxlon": -73.9701821 + }, + "nodes": [ + 1701844698, + 11003445420, + 11003445279, + 595105538 + ], + "geometry": [ + { "lat": 40.7479910, "lon": -73.9703956 }, + { "lat": 40.7480457, "lon": -73.9703005 }, + { "lat": 40.7480956, "lon": -73.9702244 }, + { "lat": 40.7481335, "lon": -73.9701821 } + ], + "tags": { + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 884400282, + "bounds": { + "minlat": 40.7521308, + "minlon": -73.9671907, + "maxlat": 40.7523938, + "maxlon": -73.9670134 + }, + "nodes": [ + 248708583, + 595105589 + ], + "geometry": [ + { "lat": 40.7521308, "lon": -73.9671907 }, + { "lat": 40.7523938, "lon": -73.9670134 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 884400286, + "bounds": { + "minlat": 40.7541850, + "minlon": -73.9659141, + "maxlat": 40.7544977, + "maxlon": -73.9656942 + }, + "nodes": [ + 8224618708, + 6747000424, + 42440469 + ], + "geometry": [ + { "lat": 40.7541850, "lon": -73.9659141 }, + { "lat": 40.7544495, "lon": -73.9657271 }, + { "lat": 40.7544977, "lon": -73.9656942 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through|through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 884400289, + "bounds": { + "minlat": 40.7544977, + "minlon": -73.9656942, + "maxlat": 40.7554432, + "maxlon": -73.9650048 + }, + "nodes": [ + 42440469, + 6747000428, + 10121802261, + 42452882, + 10121802260, + 8224618706 + ], + "geometry": [ + { "lat": 40.7544977, "lon": -73.9656942 }, + { "lat": 40.7545628, "lon": -73.9656467 }, + { "lat": 40.7550730, "lon": -73.9652747 }, + { "lat": 40.7551314, "lon": -73.9652321 }, + { "lat": 40.7551926, "lon": -73.9651876 }, + { "lat": 40.7554432, "lon": -73.9650048 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 884400293, + "bounds": { + "minlat": 40.7523938, + "minlon": -73.9670134, + "maxlat": 40.7527303, + "maxlon": -73.9668167 + }, + "nodes": [ + 595105589, + 9140864959, + 10998208757, + 3814476692 + ], + "geometry": [ + { "lat": 40.7523938, "lon": -73.9670134 }, + { "lat": 40.7525037, "lon": -73.9669428 }, + { "lat": 40.7526193, "lon": -73.9668751 }, + { "lat": 40.7527303, "lon": -73.9668167 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 884400294, + "bounds": { + "minlat": 40.7538651, + "minlon": -73.9661361, + "maxlat": 40.7541850, + "maxlon": -73.9659141 + }, + "nodes": [ + 42455934, + 8224618709, + 8224618708 + ], + "geometry": [ + { "lat": 40.7538651, "lon": -73.9661361 }, + { "lat": 40.7539245, "lon": -73.9660942 }, + { "lat": 40.7541850, "lon": -73.9659141 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 884400297, + "bounds": { + "minlat": 40.7557614, + "minlon": -73.9647728, + "maxlat": 40.7563888, + "maxlon": -73.9643154 + }, + "nodes": [ + 42436714, + 10121802255, + 10168544066, + 42455963 + ], + "geometry": [ + { "lat": 40.7557614, "lon": -73.9647728 }, + { "lat": 40.7558235, "lon": -73.9647276 }, + { "lat": 40.7563246, "lon": -73.9643622 }, + { "lat": 40.7563888, "lon": -73.9643154 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 884400300, + "bounds": { + "minlat": 40.7519194, + "minlon": -73.9673480, + "maxlat": 40.7521308, + "maxlon": -73.9671907 + }, + "nodes": [ + 4012935769, + 10998208758, + 248708583 + ], + "geometry": [ + { "lat": 40.7519194, "lon": -73.9673480 }, + { "lat": 40.7519568, "lon": -73.9673177 }, + { "lat": 40.7521308, "lon": -73.9671907 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "none|none|none|right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 884400301, + "bounds": { + "minlat": 40.7554432, + "minlon": -73.9650048, + "maxlat": 40.7557614, + "maxlon": -73.9647728 + }, + "nodes": [ + 8224618706, + 10121802257, + 42436714 + ], + "geometry": [ + { "lat": 40.7554432, "lon": -73.9650048 }, + { "lat": 40.7556925, "lon": -73.9648231 }, + { "lat": 40.7557614, "lon": -73.9647728 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|through|through", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 884561124, + "bounds": { + "minlat": 40.8491627, + "minlon": -74.0058471, + "maxlat": 40.8493117, + "maxlon": -74.0051837 + }, + "nodes": [ + 8226127095, + 8226127101, + 8226127096 + ], + "geometry": [ + { "lat": 40.8491627, "lon": -74.0051837 }, + { "lat": 40.8492042, "lon": -74.0053684 }, + { "lat": 40.8493117, "lon": -74.0058471 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 884561125, + "bounds": { + "minlat": 40.8496607, + "minlon": -74.0056480, + "maxlat": 40.8501696, + "maxlon": -74.0049391 + }, + "nodes": [ + 8226127097, + 8226127098, + 8226127099 + ], + "geometry": [ + { "lat": 40.8496607, "lon": -74.0049391 }, + { "lat": 40.8498489, "lon": -74.0056480 }, + { "lat": 40.8501696, "lon": -74.0055098 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 884561126, + "bounds": { + "minlat": 40.8509326, + "minlon": -74.0059817, + "maxlat": 40.8516458, + "maxlon": -74.0052143 + }, + "nodes": [ + 8226127102, + 8226127109, + 8226127108, + 8226127103, + 8226127104, + 8226127105, + 8226127107, + 8226127106 + ], + "geometry": [ + { "lat": 40.8515391, "lon": -74.0052143 }, + { "lat": 40.8515027, "lon": -74.0052503 }, + { "lat": 40.8514667, "lon": -74.0052859 }, + { "lat": 40.8509326, "lon": -74.0058135 }, + { "lat": 40.8510265, "lon": -74.0059817 }, + { "lat": 40.8511668, "lon": -74.0058626 }, + { "lat": 40.8515967, "lon": -74.0054527 }, + { "lat": 40.8516458, "lon": -74.0054058 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 884561127, + "bounds": { + "minlat": 40.8501873, + "minlon": -74.0020412, + "maxlat": 40.8506181, + "maxlon": -74.0016319 + }, + "nodes": [ + 8226127110, + 8226127111, + 8226127112 + ], + "geometry": [ + { "lat": 40.8501873, "lon": -74.0020412 }, + { "lat": 40.8504139, "lon": -74.0018235 }, + { "lat": 40.8506181, "lon": -74.0016319 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 884939418, + "bounds": { + "minlat": 40.7022591, + "minlon": -73.9433895, + "maxlat": 40.7025900, + "maxlon": -73.9433397 + }, + "nodes": [ + 8229296010, + 9752179215, + 8229295985 + ], + "geometry": [ + { "lat": 40.7022591, "lon": -73.9433397 }, + { "lat": 40.7023183, "lon": -73.9433486 }, + { "lat": 40.7025900, "lon": -73.9433895 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 884955517, + "bounds": { + "minlat": 40.6998119, + "minlon": -73.9498006, + "maxlat": 40.7000169, + "maxlon": -73.9496819 + }, + "nodes": [ + 8229512422, + 8229508970 + ], + "geometry": [ + { "lat": 40.6998119, "lon": -73.9498006 }, + { "lat": 40.7000169, "lon": -73.9496819 } + ], + "tags": { + "highway": "residential", + "name": "Gerry Street", + "name:etymology:wikidata": "Q219797", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Gerry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 884955527, + "bounds": { + "minlat": 40.7000169, + "minlon": -73.9496819, + "maxlat": 40.7022200, + "maxlon": -73.9462760 + }, + "nodes": [ + 8229508970, + 9755373164, + 42526740, + 9755373163, + 6886252940, + 9755373154, + 42499143 + ], + "geometry": [ + { "lat": 40.7000169, "lon": -73.9496819 }, + { "lat": 40.7009820, "lon": -73.9481911 }, + { "lat": 40.7010290, "lon": -73.9481160 }, + { "lat": 40.7010796, "lon": -73.9480378 }, + { "lat": 40.7017536, "lon": -73.9469965 }, + { "lat": 40.7021772, "lon": -73.9463420 }, + { "lat": 40.7022200, "lon": -73.9462760 } + ], + "tags": { + "highway": "residential", + "name": "Gerry Street", + "name:etymology:wikidata": "Q219797", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Gerry", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 884997818, + "bounds": { + "minlat": 40.8182030, + "minlon": -73.9369266, + "maxlat": 40.8186506, + "maxlon": -73.9366888 + }, + "nodes": [ + 8229962385, + 9557086595, + 8229962388, + 8229962386, + 8229962387 + ], + "geometry": [ + { "lat": 40.8182030, "lon": -73.9369266 }, + { "lat": 40.8182760, "lon": -73.9368747 }, + { "lat": 40.8183581, "lon": -73.9368171 }, + { "lat": 40.8185488, "lon": -73.9366888 }, + { "lat": 40.8186506, "lon": -73.9369220 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 885030553, + "bounds": { + "minlat": 40.8495683, + "minlon": -73.9993052, + "maxlat": 40.8498746, + "maxlon": -73.9987798 + }, + "nodes": [ + 8230264277, + 8230264278 + ], + "geometry": [ + { "lat": 40.8498746, "lon": -73.9993052 }, + { "lat": 40.8495683, "lon": -73.9987798 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 885030554, + "bounds": { + "minlat": 40.8498085, + "minlon": -73.9977079, + "maxlat": 40.8502563, + "maxlon": -73.9972502 + }, + "nodes": [ + 8230264279, + 8230264280 + ], + "geometry": [ + { "lat": 40.8502563, "lon": -73.9972502 }, + { "lat": 40.8498085, "lon": -73.9977079 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 885030555, + "bounds": { + "minlat": 40.8497628, + "minlon": -73.9973606, + "maxlat": 40.8500816, + "maxlon": -73.9969470 + }, + "nodes": [ + 5976782484, + 8230264281, + 8230264282, + 8230264283, + 8230264284 + ], + "geometry": [ + { "lat": 40.8500816, "lon": -73.9969470 }, + { "lat": 40.8499208, "lon": -73.9970954 }, + { "lat": 40.8498598, "lon": -73.9971195 }, + { "lat": 40.8497628, "lon": -73.9972116 }, + { "lat": 40.8498455, "lon": -73.9973606 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 885030556, + "bounds": { + "minlat": 40.8499208, + "minlon": -73.9972248, + "maxlat": 40.8499991, + "maxlon": -73.9970954 + }, + "nodes": [ + 8230264281, + 8230264285 + ], + "geometry": [ + { "lat": 40.8499208, "lon": -73.9970954 }, + { "lat": 40.8499991, "lon": -73.9972248 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 885042119, + "bounds": { + "minlat": 40.7530742, + "minlon": -73.9347046, + "maxlat": 40.7533147, + "maxlon": -73.9340685 + }, + "nodes": [ + 8230397445, + 8314985368, + 8230397446, + 8230397447, + 8230397448, + 8314985381, + 8230397449 + ], + "geometry": [ + { "lat": 40.7532733, "lon": -73.9347046 }, + { "lat": 40.7532410, "lon": -73.9346431 }, + { "lat": 40.7530742, "lon": -73.9343255 }, + { "lat": 40.7530742, "lon": -73.9342965 }, + { "lat": 40.7530913, "lon": -73.9342717 }, + { "lat": 40.7532574, "lon": -73.9341206 }, + { "lat": 40.7533147, "lon": -73.9340685 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 885051191, + "bounds": { + "minlat": 40.8817501, + "minlon": -73.9887713, + "maxlat": 40.8819476, + "maxlon": -73.9885963 + }, + "nodes": [ + 8230449515, + 12022129406, + 8230449516 + ], + "geometry": [ + { "lat": 40.8819476, "lon": -73.9885963 }, + { "lat": 40.8819049, "lon": -73.9886342 }, + { "lat": 40.8817501, "lon": -73.9887713 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 885067539, + "bounds": { + "minlat": 40.7312911, + "minlon": -73.9221671, + "maxlat": 40.7314546, + "maxlon": -73.9219247 + }, + "nodes": [ + 8230660639, + 13259926330, + 8230660640, + 8230660641, + 8230660642, + 8230660643, + 8230660644 + ], + "geometry": [ + { "lat": 40.7312911, "lon": -73.9219247 }, + { "lat": 40.7313095, "lon": -73.9220080 }, + { "lat": 40.7313157, "lon": -73.9220364 }, + { "lat": 40.7313317, "lon": -73.9221036 }, + { "lat": 40.7314128, "lon": -73.9220687 }, + { "lat": 40.7314366, "lon": -73.9220721 }, + { "lat": 40.7314546, "lon": -73.9221671 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 885067540, + "bounds": { + "minlat": 40.7312753, + "minlon": -73.9222697, + "maxlat": 40.7313317, + "maxlon": -73.9221036 + }, + "nodes": [ + 8230660641, + 8230660645, + 8230660646, + 8230660647 + ], + "geometry": [ + { "lat": 40.7313317, "lon": -73.9221036 }, + { "lat": 40.7312920, "lon": -73.9221187 }, + { "lat": 40.7312753, "lon": -73.9221781 }, + { "lat": 40.7312945, "lon": -73.9222697 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 885078714, + "bounds": { + "minlat": 40.8233419, + "minlon": -73.9134035, + "maxlat": 40.8235662, + "maxlon": -73.9132841 + }, + "nodes": [ + 8230743784, + 12040069739, + 8230743785, + 8230743786 + ], + "geometry": [ + { "lat": 40.8233419, "lon": -73.9134035 }, + { "lat": 40.8234007, "lon": -73.9133739 }, + { "lat": 40.8234155, "lon": -73.9133665 }, + { "lat": 40.8235662, "lon": -73.9132841 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 885088593, + "bounds": { + "minlat": 40.8232519, + "minlon": -74.0092847, + "maxlat": 40.8233774, + "maxlon": -74.0088489 + }, + "nodes": [ + 8230880038, + 8230880039, + 8230880041, + 7594276861 + ], + "geometry": [ + { "lat": 40.8232619, "lon": -74.0092847 }, + { "lat": 40.8232519, "lon": -74.0088531 }, + { "lat": 40.8233673, "lon": -74.0088489 }, + { "lat": 40.8233774, "lon": -74.0092655 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 885144345, + "bounds": { + "minlat": 40.7324759, + "minlon": -73.9969443, + "maxlat": 40.7324977, + "maxlon": -73.9969306 + }, + "nodes": [ + 8231298071, + 8231298072 + ], + "geometry": [ + { "lat": 40.7324977, "lon": -73.9969306 }, + { "lat": 40.7324759, "lon": -73.9969443 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 885144346, + "bounds": { + "minlat": 40.7324303, + "minlon": -73.9970003, + "maxlat": 40.7324759, + "maxlon": -73.9969443 + }, + "nodes": [ + 8231298075, + 8309478835, + 8231298072 + ], + "geometry": [ + { "lat": 40.7324303, "lon": -73.9970003 }, + { "lat": 40.7324463, "lon": -73.9969806 }, + { "lat": 40.7324759, "lon": -73.9969443 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 885144347, + "bounds": { + "minlat": 40.7324177, + "minlon": -73.9969680, + "maxlat": 40.7324759, + "maxlon": -73.9969443 + }, + "nodes": [ + 8231298072, + 8309478834, + 8231298073 + ], + "geometry": [ + { "lat": 40.7324759, "lon": -73.9969443 }, + { "lat": 40.7324375, "lon": -73.9969599 }, + { "lat": 40.7324177, "lon": -73.9969680 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 885144348, + "bounds": { + "minlat": 40.7317294, + "minlon": -73.9976165, + "maxlat": 40.7317903, + "maxlon": -73.9975666 + }, + "nodes": [ + 8231298077, + 10628055569, + 8231298078 + ], + "geometry": [ + { "lat": 40.7317294, "lon": -73.9976165 }, + { "lat": 40.7317860, "lon": -73.9975704 }, + { "lat": 40.7317903, "lon": -73.9975666 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 885144349, + "bounds": { + "minlat": 40.7317903, + "minlon": -73.9975666, + "maxlat": 40.7318128, + "maxlon": -73.9975291 + }, + "nodes": [ + 8231298078, + 8231298081, + 11435997266, + 8231298082 + ], + "geometry": [ + { "lat": 40.7317903, "lon": -73.9975666 }, + { "lat": 40.7317988, "lon": -73.9975431 }, + { "lat": 40.7318078, "lon": -73.9975352 }, + { "lat": 40.7318128, "lon": -73.9975291 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 885144350, + "bounds": { + "minlat": 40.7317903, + "minlon": -73.9975672, + "maxlat": 40.7318263, + "maxlon": -73.9975550 + }, + "nodes": [ + 8231298080, + 8231298079, + 8231298078 + ], + "geometry": [ + { "lat": 40.7318263, "lon": -73.9975550 }, + { "lat": 40.7318107, "lon": -73.9975672 }, + { "lat": 40.7317903, "lon": -73.9975666 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 885146406, + "bounds": { + "minlat": 40.7610848, + "minlon": -73.9598812, + "maxlat": 40.7611646, + "maxlon": -73.9598210 + }, + "nodes": [ + 8231348297, + 9030153694, + 8231348298 + ], + "geometry": [ + { "lat": 40.7611646, "lon": -73.9598210 }, + { "lat": 40.7611059, "lon": -73.9598653 }, + { "lat": 40.7610848, "lon": -73.9598812 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 885146407, + "bounds": { + "minlat": 40.7603489, + "minlon": -73.9600742, + "maxlat": 40.7604242, + "maxlon": -73.9600210 + }, + "nodes": [ + 8231348299, + 9030177793, + 8231348300 + ], + "geometry": [ + { "lat": 40.7604242, "lon": -73.9600210 }, + { "lat": 40.7603707, "lon": -73.9600588 }, + { "lat": 40.7603489, "lon": -73.9600742 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 885152389, + "bounds": { + "minlat": 40.8340587, + "minlon": -74.0111418, + "maxlat": 40.8341884, + "maxlon": -74.0106581 + }, + "nodes": [ + 695054869, + 8231401527, + 8231401528, + 8231401529 + ], + "geometry": [ + { "lat": 40.8341820, "lon": -74.0111418 }, + { "lat": 40.8341884, "lon": -74.0110622 }, + { "lat": 40.8340941, "lon": -74.0107643 }, + { "lat": 40.8340587, "lon": -74.0106581 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 885193573, + "bounds": { + "minlat": 40.7245288, + "minlon": -73.9198131, + "maxlat": 40.7250317, + "maxlon": -73.9195093 + }, + "nodes": [ + 8231732593, + 8417363476, + 7644827956, + 8231732594, + 8231732595, + 8231732596 + ], + "geometry": [ + { "lat": 40.7250317, "lon": -73.9198131 }, + { "lat": 40.7250033, "lon": -73.9197408 }, + { "lat": 40.7249833, "lon": -73.9196898 }, + { "lat": 40.7249532, "lon": -73.9196089 }, + { "lat": 40.7249196, "lon": -73.9195093 }, + { "lat": 40.7245288, "lon": -73.9197844 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 885297185, + "bounds": { + "minlat": 40.7341875, + "minlon": -73.9762453, + "maxlat": 40.7351557, + "maxlon": -73.9750336 + }, + "nodes": [ + 387184881, + 1739869235, + 1739869225, + 1739869198, + 387184882, + 387184883, + 3601295756, + 5785120614, + 387184884, + 387184885, + 387184886, + 1814477465, + 1814477463, + 1814477461, + 1814477458, + 1814477454, + 387184887, + 6331080434 + ], + "geometry": [ + { "lat": 40.7351557, "lon": -73.9762453 }, + { "lat": 40.7351398, "lon": -73.9762032 }, + { "lat": 40.7351149, "lon": -73.9761617 }, + { "lat": 40.7350923, "lon": -73.9761325 }, + { "lat": 40.7350680, "lon": -73.9761029 }, + { "lat": 40.7349027, "lon": -73.9759634 }, + { "lat": 40.7347032, "lon": -73.9757907 }, + { "lat": 40.7345837, "lon": -73.9756912 }, + { "lat": 40.7343455, "lon": -73.9754909 }, + { "lat": 40.7343133, "lon": -73.9754548 }, + { "lat": 40.7342706, "lon": -73.9754020 }, + { "lat": 40.7342523, "lon": -73.9753722 }, + { "lat": 40.7342344, "lon": -73.9753343 }, + { "lat": 40.7342127, "lon": -73.9752774 }, + { "lat": 40.7341993, "lon": -73.9752241 }, + { "lat": 40.7341924, "lon": -73.9751769 }, + { "lat": 40.7341875, "lon": -73.9751269 }, + { "lat": 40.7341911, "lon": -73.9750336 } + ], + "tags": { + "access": "private", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Peter Cooper Road", + "name:etymology:wikidata": "Q935291", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 885297190, + "bounds": { + "minlat": 40.7354456, + "minlon": -73.9787384, + "maxlat": 40.7360982, + "maxlon": -73.9777317 + }, + "nodes": [ + 6331080435, + 8232498038, + 9913605328, + 387184870, + 8127675301, + 387184871, + 8232498039, + 8429186170, + 387184872, + 8232498040, + 387184873, + 5785120648 + ], + "geometry": [ + { "lat": 40.7360982, "lon": -73.9787384 }, + { "lat": 40.7360574, "lon": -73.9786425 }, + { "lat": 40.7360375, "lon": -73.9785872 }, + { "lat": 40.7360176, "lon": -73.9785238 }, + { "lat": 40.7360061, "lon": -73.9784791 }, + { "lat": 40.7359764, "lon": -73.9783362 }, + { "lat": 40.7359558, "lon": -73.9782629 }, + { "lat": 40.7359485, "lon": -73.9782444 }, + { "lat": 40.7359255, "lon": -73.9781867 }, + { "lat": 40.7358775, "lon": -73.9781045 }, + { "lat": 40.7358280, "lon": -73.9780443 }, + { "lat": 40.7354456, "lon": -73.9777317 } + ], + "tags": { + "access": "private", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Peter Cooper Road", + "name:etymology:wikidata": "Q935291", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 885323005, + "bounds": { + "minlat": 40.7087276, + "minlon": -73.9510779, + "maxlat": 40.7088586, + "maxlon": -73.9508138 + }, + "nodes": [ + 8232714844, + 9959904534, + 9755373501, + 9959904535, + 8232714827, + 9656825386, + 9656825387, + 9959904532, + 9959904533, + 8232714850, + 8232714844 + ], + "geometry": [ + { "lat": 40.7087319, "lon": -73.9510779 }, + { "lat": 40.7087324, "lon": -73.9510692 }, + { "lat": 40.7087482, "lon": -73.9508708 }, + { "lat": 40.7087276, "lon": -73.9508398 }, + { "lat": 40.7087383, "lon": -73.9508138 }, + { "lat": 40.7088586, "lon": -73.9508315 }, + { "lat": 40.7088573, "lon": -73.9508634 }, + { "lat": 40.7088476, "lon": -73.9508750 }, + { "lat": 40.7088369, "lon": -73.9510010 }, + { "lat": 40.7088424, "lon": -73.9510189 }, + { "lat": 40.7087319, "lon": -73.9510779 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 885413450, + "bounds": { + "minlat": 40.7435038, + "minlon": -73.9262505, + "maxlat": 40.7438240, + "maxlon": -73.9257576 + }, + "nodes": [ + 5482367302, + 10743722653, + 8233416052, + 10743722648, + 8233416053 + ], + "geometry": [ + { "lat": 40.7435530, "lon": -73.9262505 }, + { "lat": 40.7435392, "lon": -73.9261398 }, + { "lat": 40.7435038, "lon": -73.9258149 }, + { "lat": 40.7437338, "lon": -73.9257737 }, + { "lat": 40.7438240, "lon": -73.9257576 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 885523669, + "bounds": { + "minlat": 40.8056792, + "minlon": -73.9371789, + "maxlat": 40.8059747, + "maxlon": -73.9364782 + }, + "nodes": [ + 42447208, + 8234417271, + 8234417272, + 8234417280, + 8234417274 + ], + "geometry": [ + { "lat": 40.8056792, "lon": -73.9364782 }, + { "lat": 40.8057192, "lon": -73.9365732 }, + { "lat": 40.8057300, "lon": -73.9365987 }, + { "lat": 40.8059065, "lon": -73.9370171 }, + { "lat": 40.8059747, "lon": -73.9371789 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 885523671, + "bounds": { + "minlat": 40.8060252, + "minlon": -73.9373714, + "maxlat": 40.8061006, + "maxlon": -73.9372037 + }, + "nodes": [ + 8234417281, + 8234417275 + ], + "geometry": [ + { "lat": 40.8061006, "lon": -73.9373714 }, + { "lat": 40.8060252, "lon": -73.9372037 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 885622997, + "bounds": { + "minlat": 40.7350735, + "minlon": -73.9766170, + "maxlat": 40.7351647, + "maxlon": -73.9762453 + }, + "nodes": [ + 8228267413, + 387184879, + 1739869226, + 1739869202, + 1739869228, + 387184880, + 1739869195, + 1739869233, + 1739869199, + 1739869221, + 387184881 + ], + "geometry": [ + { "lat": 40.7350735, "lon": -73.9766170 }, + { "lat": 40.7351164, "lon": -73.9765299 }, + { "lat": 40.7351326, "lon": -73.9764944 }, + { "lat": 40.7351446, "lon": -73.9764666 }, + { "lat": 40.7351515, "lon": -73.9764457 }, + { "lat": 40.7351579, "lon": -73.9764192 }, + { "lat": 40.7351619, "lon": -73.9763893 }, + { "lat": 40.7351647, "lon": -73.9763540 }, + { "lat": 40.7351642, "lon": -73.9763268 }, + { "lat": 40.7351628, "lon": -73.9762936 }, + { "lat": 40.7351557, "lon": -73.9762453 } + ], + "tags": { + "access": "private", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Peter Cooper Road", + "name:etymology:wikidata": "Q935291", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 885772971, + "bounds": { + "minlat": 40.8770600, + "minlon": -73.9514724, + "maxlat": 40.8772170, + "maxlon": -73.9512940 + }, + "nodes": [ + 8219460658, + 8236517421 + ], + "geometry": [ + { "lat": 40.8770600, "lon": -73.9514724 }, + { "lat": 40.8772170, "lon": -73.9512940 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 885772972, + "bounds": { + "minlat": 40.8772702, + "minlon": -73.9512335, + "maxlat": 40.8773415, + "maxlon": -73.9511524 + }, + "nodes": [ + 8236517422, + 8236517420 + ], + "geometry": [ + { "lat": 40.8772702, "lon": -73.9512335 }, + { "lat": 40.8773415, "lon": -73.9511524 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 885772973, + "bounds": { + "minlat": 40.8772170, + "minlon": -73.9512940, + "maxlat": 40.8772702, + "maxlon": -73.9512335 + }, + "nodes": [ + 8236517421, + 8236517422 + ], + "geometry": [ + { "lat": 40.8772170, "lon": -73.9512940 }, + { "lat": 40.8772702, "lon": -73.9512335 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 885845326, + "bounds": { + "minlat": 40.7386566, + "minlon": -73.9214948, + "maxlat": 40.7389811, + "maxlon": -73.9210159 + }, + "nodes": [ + 8237218734, + 8237218728, + 8237218729, + 8237218748, + 8237218730, + 8237218731, + 8237218732, + 8237218747, + 8237218746, + 8237218733, + 8237218735 + ], + "geometry": [ + { "lat": 40.7389811, "lon": -73.9214376 }, + { "lat": 40.7389722, "lon": -73.9213588 }, + { "lat": 40.7389447, "lon": -73.9210397 }, + { "lat": 40.7389395, "lon": -73.9210243 }, + { "lat": 40.7389281, "lon": -73.9210159 }, + { "lat": 40.7386697, "lon": -73.9210754 }, + { "lat": 40.7386590, "lon": -73.9210866 }, + { "lat": 40.7386566, "lon": -73.9211061 }, + { "lat": 40.7386914, "lon": -73.9213973 }, + { "lat": 40.7386937, "lon": -73.9214133 }, + { "lat": 40.7387026, "lon": -73.9214948 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 886053617, + "bounds": { + "minlat": 40.7314919, + "minlon": -73.9769219, + "maxlat": 40.7316129, + "maxlon": -73.9767340 + }, + "nodes": [ + 8238911272, + 8238911276, + 8238911275, + 8238911274, + 8238911273, + 8238982687, + 2827019907, + 2827019910, + 8238982680, + 8238911260, + 8238911261, + 8238982681, + 8238982682, + 8238911271, + 8238911270, + 8238911269, + 8238911268, + 8238911272 + ], + "geometry": [ + { "lat": 40.7314987, "lon": -73.9768350 }, + { "lat": 40.7314919, "lon": -73.9768252 }, + { "lat": 40.7315459, "lon": -73.9767710 }, + { "lat": 40.7315526, "lon": -73.9767571 }, + { "lat": 40.7315543, "lon": -73.9767407 }, + { "lat": 40.7315653, "lon": -73.9767364 }, + { "lat": 40.7315716, "lon": -73.9767340 }, + { "lat": 40.7316035, "lon": -73.9768773 }, + { "lat": 40.7316094, "lon": -73.9768750 }, + { "lat": 40.7316129, "lon": -73.9768942 }, + { "lat": 40.7315789, "lon": -73.9769219 }, + { "lat": 40.7315488, "lon": -73.9768970 }, + { "lat": 40.7315229, "lon": -73.9768699 }, + { "lat": 40.7315145, "lon": -73.9768570 }, + { "lat": 40.7315355, "lon": -73.9768271 }, + { "lat": 40.7315438, "lon": -73.9768081 }, + { "lat": 40.7315389, "lon": -73.9768001 }, + { "lat": 40.7314987, "lon": -73.9768350 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 886195878, + "bounds": { + "minlat": 40.8427699, + "minlon": -73.9837309, + "maxlat": 40.8427750, + "maxlon": -73.9834629 + }, + "nodes": [ + 8240350185, + 8240350186, + 8240350187, + 8240350188 + ], + "geometry": [ + { "lat": 40.8427699, "lon": -73.9834629 }, + { "lat": 40.8427743, "lon": -73.9835559 }, + { "lat": 40.8427750, "lon": -73.9836441 }, + { "lat": 40.8427736, "lon": -73.9837309 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 886195879, + "bounds": { + "minlat": 40.8427552, + "minlon": -73.9838940, + "maxlat": 40.8427736, + "maxlon": -73.9837309 + }, + "nodes": [ + 8240350188, + 8240350189 + ], + "geometry": [ + { "lat": 40.8427736, "lon": -73.9837309 }, + { "lat": 40.8427552, "lon": -73.9838940 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 886195880, + "bounds": { + "minlat": 40.8424823, + "minlon": -73.9840578, + "maxlat": 40.8427552, + "maxlon": -73.9837507 + }, + "nodes": [ + 8240350189, + 8240350190, + 8240350191, + 8240350192, + 8240350193, + 8240350194, + 8240350195 + ], + "geometry": [ + { "lat": 40.8427552, "lon": -73.9838940 }, + { "lat": 40.8427402, "lon": -73.9839836 }, + { "lat": 40.8427168, "lon": -73.9840371 }, + { "lat": 40.8426813, "lon": -73.9840578 }, + { "lat": 40.8426522, "lon": -73.9840456 }, + { "lat": 40.8425749, "lon": -73.9839227 }, + { "lat": 40.8424823, "lon": -73.9837507 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 886830947, + "bounds": { + "minlat": 40.7005328, + "minlon": -73.9848032, + "maxlat": 40.7005726, + "maxlon": -73.9838943 + }, + "nodes": [ + 42519833, + 11710116857, + 10722387784, + 11710116856, + 494509210 + ], + "geometry": [ + { "lat": 40.7005726, "lon": -73.9848032 }, + { "lat": 40.7005644, "lon": -73.9847658 }, + { "lat": 40.7005598, "lon": -73.9847279 }, + { "lat": 40.7005585, "lon": -73.9847026 }, + { "lat": 40.7005328, "lon": -73.9838943 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 886957597, + "bounds": { + "minlat": 40.8366261, + "minlon": -74.0079774, + "maxlat": 40.8368079, + "maxlon": -74.0078722 + }, + "nodes": [ + 8218997761, + 103135123 + ], + "geometry": [ + { "lat": 40.8368079, "lon": -74.0078722 }, + { "lat": 40.8366261, "lon": -74.0079774 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "40 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 886957598, + "bounds": { + "minlat": 40.8347285, + "minlon": -74.0090242, + "maxlat": 40.8366261, + "maxlon": -74.0079774 + }, + "nodes": [ + 103135123, + 103126797, + 103195570, + 12016147255, + 12016147257, + 103125593 + ], + "geometry": [ + { "lat": 40.8366261, "lon": -74.0079774 }, + { "lat": 40.8359969, "lon": -74.0083390 }, + { "lat": 40.8353778, "lon": -74.0086990 }, + { "lat": 40.8349213, "lon": -74.0089628 }, + { "lat": 40.8348977, "lon": -74.0089736 }, + { "lat": 40.8347285, "lon": -74.0090242 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "40 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 887036080, + "bounds": { + "minlat": 40.7451478, + "minlon": -73.9235396, + "maxlat": 40.7455125, + "maxlon": -73.9234599 + }, + "nodes": [ + 8248311086, + 8248311083, + 8248311084, + 8248311085 + ], + "geometry": [ + { "lat": 40.7455125, "lon": -73.9234599 }, + { "lat": 40.7454165, "lon": -73.9234809 }, + { "lat": 40.7453902, "lon": -73.9234850 }, + { "lat": 40.7451478, "lon": -73.9235396 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 887397088, + "bounds": { + "minlat": 40.7784206, + "minlon": -73.9551541, + "maxlat": 40.7785222, + "maxlon": -73.9549302 + }, + "nodes": [ + 8250514367, + 8250514368, + 8250514369, + 8250514370, + 8250514371, + 8250514372, + 8250514373 + ], + "geometry": [ + { "lat": 40.7784206, "lon": -73.9551541 }, + { "lat": 40.7784822, "lon": -73.9550865 }, + { "lat": 40.7785009, "lon": -73.9550567 }, + { "lat": 40.7785170, "lon": -73.9550207 }, + { "lat": 40.7785213, "lon": -73.9549937 }, + { "lat": 40.7785222, "lon": -73.9549527 }, + { "lat": 40.7785166, "lon": -73.9549302 } + ], + "tags": { + "access": "customers", + "highway": "service", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 887397089, + "bounds": { + "minlat": 40.7784877, + "minlon": -73.9549302, + "maxlat": 40.7785166, + "maxlon": -73.9548611 + }, + "nodes": [ + 8250514373, + 8250514374 + ], + "geometry": [ + { "lat": 40.7785166, "lon": -73.9549302 }, + { "lat": 40.7784877, "lon": -73.9548611 } + ], + "tags": { + "access": "customers", + "highway": "service", + "maxheight:signed": "no", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 887397090, + "bounds": { + "minlat": 40.7782934, + "minlon": -73.9548611, + "maxlat": 40.7784877, + "maxlon": -73.9548100 + }, + "nodes": [ + 8250514374, + 8250514375, + 8250514376, + 8250514377, + 8250514378, + 8250514379, + 8250514380, + 8250514381 + ], + "geometry": [ + { "lat": 40.7784877, "lon": -73.9548611 }, + { "lat": 40.7784724, "lon": -73.9548381 }, + { "lat": 40.7784494, "lon": -73.9548184 }, + { "lat": 40.7784226, "lon": -73.9548105 }, + { "lat": 40.7784000, "lon": -73.9548100 }, + { "lat": 40.7783685, "lon": -73.9548167 }, + { "lat": 40.7783383, "lon": -73.9548280 }, + { "lat": 40.7782934, "lon": -73.9548525 } + ], + "tags": { + "access": "customers", + "highway": "service", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 887431315, + "bounds": { + "minlat": 40.7235883, + "minlon": -74.0109805, + "maxlat": 40.7236690, + "maxlon": -74.0109673 + }, + "nodes": [ + 8250851267, + 8310246718, + 8250851268 + ], + "geometry": [ + { "lat": 40.7235883, "lon": -74.0109805 }, + { "lat": 40.7236555, "lon": -74.0109691 }, + { "lat": 40.7236690, "lon": -74.0109673 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 887433943, + "bounds": { + "minlat": 40.7602340, + "minlon": -73.9870605, + "maxlat": 40.7603108, + "maxlon": -73.9870076 + }, + "nodes": [ + 8250892563, + 10228962576, + 8250892564 + ], + "geometry": [ + { "lat": 40.7602340, "lon": -73.9870605 }, + { "lat": 40.7603000, "lon": -73.9870150 }, + { "lat": 40.7603108, "lon": -73.9870076 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 887433944, + "bounds": { + "minlat": 40.7595723, + "minlon": -73.9874205, + "maxlat": 40.7596857, + "maxlon": -73.9873443 + }, + "nodes": [ + 8250892565, + 8250885536, + 2639531794 + ], + "geometry": [ + { "lat": 40.7595723, "lon": -73.9874205 }, + { "lat": 40.7596276, "lon": -73.9873834 }, + { "lat": 40.7596857, "lon": -73.9873443 } + ], + "tags": { + "highway": "service", + "lit": "yes" + } +}, +{ + "type": "way", + "id": 887435959, + "bounds": { + "minlat": 40.7581740, + "minlon": -73.9843363, + "maxlat": 40.7582569, + "maxlon": -73.9842778 + }, + "nodes": [ + 8250908767, + 8250912518, + 8250908768 + ], + "geometry": [ + { "lat": 40.7582569, "lon": -73.9842778 }, + { "lat": 40.7581960, "lon": -73.9843212 }, + { "lat": 40.7581740, "lon": -73.9843363 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 887712862, + "bounds": { + "minlat": 40.8274732, + "minlon": -73.9199250, + "maxlat": 40.8276077, + "maxlon": -73.9195267 + }, + "nodes": [ + 8292777329, + 8253436305, + 8253436306 + ], + "geometry": [ + { "lat": 40.8274732, "lon": -73.9195267 }, + { "lat": 40.8275002, "lon": -73.9195989 }, + { "lat": 40.8276077, "lon": -73.9199250 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 887778151, + "bounds": { + "minlat": 40.7636998, + "minlon": -73.9289325, + "maxlat": 40.7640350, + "maxlon": -73.9285896 + }, + "nodes": [ + 8254056516, + 8254075717, + 8254075718, + 8254075719 + ], + "geometry": [ + { "lat": 40.7636998, "lon": -73.9289325 }, + { "lat": 40.7637722, "lon": -73.9288572 }, + { "lat": 40.7638019, "lon": -73.9288270 }, + { "lat": 40.7640350, "lon": -73.9285896 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 887788317, + "bounds": { + "minlat": 40.7646158, + "minlon": -73.9721379, + "maxlat": 40.7647032, + "maxlon": -73.9720675 + }, + "nodes": [ + 8254176965, + 11294629843, + 8254176966 + ], + "geometry": [ + { "lat": 40.7647032, "lon": -73.9720675 }, + { "lat": 40.7646426, "lon": -73.9721163 }, + { "lat": 40.7646158, "lon": -73.9721379 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 887788318, + "bounds": { + "minlat": 40.7651400, + "minlon": -73.9712027, + "maxlat": 40.7653555, + "maxlon": -73.9710420 + }, + "nodes": [ + 8254176967, + 10171007678, + 8254176968 + ], + "geometry": [ + { "lat": 40.7651400, "lon": -73.9712027 }, + { "lat": 40.7652034, "lon": -73.9711554 }, + { "lat": 40.7653555, "lon": -73.9710420 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 887788319, + "bounds": { + "minlat": 40.7638171, + "minlon": -73.9721670, + "maxlat": 40.7638878, + "maxlon": -73.9721158 + }, + "nodes": [ + 8254176969, + 11729293539, + 8254176971, + 8254176970 + ], + "geometry": [ + { "lat": 40.7638878, "lon": -73.9721158 }, + { "lat": 40.7638462, "lon": -73.9721462 }, + { "lat": 40.7638303, "lon": -73.9721574 }, + { "lat": 40.7638171, "lon": -73.9721670 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 887790094, + "bounds": { + "minlat": 40.7613040, + "minlon": -73.9682804, + "maxlat": 40.7614267, + "maxlon": -73.9681916 + }, + "nodes": [ + 8254182915, + 10171032841, + 8254182916 + ], + "geometry": [ + { "lat": 40.7614267, "lon": -73.9681916 }, + { "lat": 40.7613579, "lon": -73.9682414 }, + { "lat": 40.7613040, "lon": -73.9682804 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 887790095, + "bounds": { + "minlat": 40.7597974, + "minlon": -73.9704506, + "maxlat": 40.7599428, + "maxlon": -73.9703394 + }, + "nodes": [ + 8254199417, + 10172968766, + 8254199418 + ], + "geometry": [ + { "lat": 40.7597974, "lon": -73.9704506 }, + { "lat": 40.7598516, "lon": -73.9704097 }, + { "lat": 40.7599428, "lon": -73.9703394 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 888028020, + "bounds": { + "minlat": 40.7558529, + "minlon": -73.9073081, + "maxlat": 40.7566749, + "maxlon": -73.9067131 + }, + "nodes": [ + 8256260715, + 8256260716, + 8593804447, + 8256302617 + ], + "geometry": [ + { "lat": 40.7558529, "lon": -73.9067131 }, + { "lat": 40.7566749, "lon": -73.9068629 }, + { "lat": 40.7566369, "lon": -73.9072258 }, + { "lat": 40.7566283, "lon": -73.9073081 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 888028021, + "bounds": { + "minlat": 40.7566749, + "minlon": -73.9068629, + "maxlat": 40.7567268, + "maxlon": -73.9064040 + }, + "nodes": [ + 8256260716, + 8593804592, + 2875114696 + ], + "geometry": [ + { "lat": 40.7566749, "lon": -73.9068629 }, + { "lat": 40.7567177, "lon": -73.9064842 }, + { "lat": 40.7567268, "lon": -73.9064040 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 888330931, + "bounds": { + "minlat": 40.7451895, + "minlon": -73.9206679, + "maxlat": 40.7457358, + "maxlon": -73.9205606 + }, + "nodes": [ + 8258957009, + 11694597513, + 8258957010, + 8258957011, + 8258957012 + ], + "geometry": [ + { "lat": 40.7451895, "lon": -73.9206679 }, + { "lat": 40.7452606, "lon": -73.9206520 }, + { "lat": 40.7452898, "lon": -73.9206455 }, + { "lat": 40.7454821, "lon": -73.9206046 }, + { "lat": 40.7457358, "lon": -73.9205606 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 888500316, + "bounds": { + "minlat": 40.8087187, + "minlon": -73.9908299, + "maxlat": 40.8089075, + "maxlon": -73.9903357 + }, + "nodes": [ + 8260603322, + 8260603329, + 8260603323, + 8260603324 + ], + "geometry": [ + { "lat": 40.8087187, "lon": -73.9903357 }, + { "lat": 40.8087726, "lon": -73.9904974 }, + { "lat": 40.8088206, "lon": -73.9906412 }, + { "lat": 40.8089075, "lon": -73.9908299 } + ], + "tags": { + "highway": "service", + "maxspeed": "10 mph", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 888500317, + "bounds": { + "minlat": 40.8086456, + "minlon": -73.9904504, + "maxlat": 40.8091961, + "maxlon": -73.9898890 + }, + "nodes": [ + 8260603322, + 8260603330, + 8260603334, + 8260603341, + 8260603325, + 8260603326, + 8260603331, + 8260603327, + 8260603328, + 8260603333 + ], + "geometry": [ + { "lat": 40.8087187, "lon": -73.9903357 }, + { "lat": 40.8086957, "lon": -73.9902445 }, + { "lat": 40.8086780, "lon": -73.9901741 }, + { "lat": 40.8086697, "lon": -73.9901410 }, + { "lat": 40.8086456, "lon": -73.9900455 }, + { "lat": 40.8090157, "lon": -73.9898890 }, + { "lat": 40.8091025, "lon": -73.9900867 }, + { "lat": 40.8091961, "lon": -73.9902998 }, + { "lat": 40.8091422, "lon": -73.9903371 }, + { "lat": 40.8088810, "lon": -73.9904504 } + ], + "tags": { + "bicycle": "no", + "covered": "no", + "highway": "service", + "horse": "no", + "maxspeed": "10 mph", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 888500318, + "bounds": { + "minlat": 40.8088116, + "minlon": -73.9901996, + "maxlat": 40.8091025, + "maxlon": -73.9900867 + }, + "nodes": [ + 8260603332, + 8260603331 + ], + "geometry": [ + { "lat": 40.8088116, "lon": -73.9901996 }, + { "lat": 40.8091025, "lon": -73.9900867 } + ], + "tags": { + "bicycle": "no", + "covered": "no", + "highway": "service", + "horse": "no", + "maxspeed": "10 mph", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 888500319, + "bounds": { + "minlat": 40.8088116, + "minlon": -73.9904504, + "maxlat": 40.8088810, + "maxlon": -73.9901996 + }, + "nodes": [ + 8260603332, + 8260603333 + ], + "geometry": [ + { "lat": 40.8088116, "lon": -73.9901996 }, + { "lat": 40.8088810, "lon": -73.9904504 } + ], + "tags": { + "bicycle": "no", + "highway": "service", + "horse": "no", + "maxspeed": "10 mph", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 888500320, + "bounds": { + "minlat": 40.8081066, + "minlon": -73.9910931, + "maxlat": 40.8085268, + "maxlon": -73.9901235 + }, + "nodes": [ + 4215808374, + 8260603337, + 8260603338, + 8260603335, + 5482328609, + 8260603336 + ], + "geometry": [ + { "lat": 40.8081066, "lon": -73.9901235 }, + { "lat": 40.8082130, "lon": -73.9903599 }, + { "lat": 40.8082394, "lon": -73.9904187 }, + { "lat": 40.8083137, "lon": -73.9905838 }, + { "lat": 40.8084634, "lon": -73.9909126 }, + { "lat": 40.8085268, "lon": -73.9910931 } + ], + "tags": { + "covered": "no", + "highway": "service", + "maxspeed": "10 mph", + "name": "Hudson Park", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 888500321, + "bounds": { + "minlat": 40.8073215, + "minlon": -73.9910636, + "maxlat": 40.8082130, + "maxlon": -73.9903599 + }, + "nodes": [ + 8260603337, + 5482328607, + 6888063813 + ], + "geometry": [ + { "lat": 40.8082130, "lon": -73.9903599 }, + { "lat": 40.8078448, "lon": -73.9906508 }, + { "lat": 40.8073215, "lon": -73.9910636 } + ], + "tags": { + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 888507887, + "bounds": { + "minlat": 40.8082394, + "minlon": -73.9904187, + "maxlat": 40.8086697, + "maxlon": -73.9901410 + }, + "nodes": [ + 8260603338, + 8260725596, + 8260603341 + ], + "geometry": [ + { "lat": 40.8082394, "lon": -73.9904187 }, + { "lat": 40.8085311, "lon": -73.9902061 }, + { "lat": 40.8086697, "lon": -73.9901410 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "no", + "highway": "service", + "horse": "no", + "layer": "-1", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 888552351, + "bounds": { + "minlat": 40.7553789, + "minlon": -74.0041694, + "maxlat": 40.7560417, + "maxlon": -74.0026071 + }, + "nodes": [ + 9421657371, + 8261044807 + ], + "geometry": [ + { "lat": 40.7560417, "lon": -74.0041694 }, + { "lat": 40.7553789, "lon": -74.0026071 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 888552360, + "bounds": { + "minlat": 40.7536181, + "minlon": -74.0063168, + "maxlat": 40.7549009, + "maxlon": -74.0044172 + }, + "nodes": [ + 8261122120, + 8261122122, + 9423683521, + 9423683527, + 9423683528, + 9423683525, + 9423683524, + 9423683526, + 9423683523, + 9423683522, + 11507256020, + 9423683529, + 8261122121 + ], + "geometry": [ + { "lat": 40.7549009, "lon": -74.0063168 }, + { "lat": 40.7548487, "lon": -74.0061901 }, + { "lat": 40.7544962, "lon": -74.0053456 }, + { "lat": 40.7544733, "lon": -74.0053151 }, + { "lat": 40.7543884, "lon": -74.0052606 }, + { "lat": 40.7543684, "lon": -74.0052347 }, + { "lat": 40.7540468, "lon": -74.0044836 }, + { "lat": 40.7540211, "lon": -74.0044454 }, + { "lat": 40.7539865, "lon": -74.0044172 }, + { "lat": 40.7539362, "lon": -74.0044176 }, + { "lat": 40.7537185, "lon": -74.0045698 }, + { "lat": 40.7536702, "lon": -74.0046036 }, + { "lat": 40.7536181, "lon": -74.0046399 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 888552506, + "bounds": { + "minlat": 40.7568121, + "minlon": -74.0044180, + "maxlat": 40.7569694, + "maxlon": -74.0042926 + }, + "nodes": [ + 8261122871, + 8261122876, + 8261122874 + ], + "geometry": [ + { "lat": 40.7569694, "lon": -74.0042926 }, + { "lat": 40.7569151, "lon": -74.0043376 }, + { "lat": 40.7568121, "lon": -74.0044180 } + ], + "tags": { + "change": "no", + "highway": "service", + "lanes": "2", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 888552603, + "bounds": { + "minlat": 40.7569694, + "minlon": -74.0042926, + "maxlat": 40.7569950, + "maxlon": -74.0042199 + }, + "nodes": [ + 8261122870, + 8261122871 + ], + "geometry": [ + { "lat": 40.7569950, "lon": -74.0042199 }, + { "lat": 40.7569694, "lon": -74.0042926 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 888552604, + "bounds": { + "minlat": 40.7568943, + "minlon": -74.0046930, + "maxlat": 40.7571381, + "maxlon": -74.0041078 + }, + "nodes": [ + 593839881, + 9421649581, + 8261122871, + 12154605957, + 3874681624, + 593840108 + ], + "geometry": [ + { "lat": 40.7568943, "lon": -74.0041078 }, + { "lat": 40.7569189, "lon": -74.0041692 }, + { "lat": 40.7569694, "lon": -74.0042926 }, + { "lat": 40.7570636, "lon": -74.0045129 }, + { "lat": 40.7570819, "lon": -74.0045558 }, + { "lat": 40.7571381, "lon": -74.0046930 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "maxspeed": "5 mph", + "motor_vehicle": "destination", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 888695499, + "bounds": { + "minlat": 40.7368510, + "minlon": -74.0015950, + "maxlat": 40.7375625, + "maxlon": -74.0008343 + }, + "nodes": [ + 8262308145, + 8262308348, + 8262308146, + 8262308147, + 8262308148, + 8262308149, + 8262308150, + 8262308343, + 4657092900, + 8262308279, + 8262308215, + 4657104937, + 4657092902, + 4657104936, + 8262308214, + 8262308185, + 4657092901, + 8262308344, + 8262308151, + 8262308152, + 8262308145 + ], + "geometry": [ + { "lat": 40.7375353, "lon": -74.0015950 }, + { "lat": 40.7375444, "lon": -74.0015865 }, + { "lat": 40.7375545, "lon": -74.0015770 }, + { "lat": 40.7375625, "lon": -74.0015645 }, + { "lat": 40.7375601, "lon": -74.0015424 }, + { "lat": 40.7375451, "lon": -74.0014974 }, + { "lat": 40.7372670, "lon": -74.0008343 }, + { "lat": 40.7372407, "lon": -74.0008541 }, + { "lat": 40.7372281, "lon": -74.0008636 }, + { "lat": 40.7372442, "lon": -74.0009014 }, + { "lat": 40.7373966, "lon": -74.0012591 }, + { "lat": 40.7374111, "lon": -74.0012930 }, + { "lat": 40.7375141, "lon": -74.0015298 }, + { "lat": 40.7373268, "lon": -74.0014202 }, + { "lat": 40.7372995, "lon": -74.0014037 }, + { "lat": 40.7369268, "lon": -74.0011787 }, + { "lat": 40.7368531, "lon": -74.0011342 }, + { "lat": 40.7368525, "lon": -74.0011496 }, + { "lat": 40.7368510, "lon": -74.0011903 }, + { "lat": 40.7375249, "lon": -74.0015939 }, + { "lat": 40.7375353, "lon": -74.0015950 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 888695500, + "bounds": { + "minlat": 40.7367880, + "minlon": -74.0011979, + "maxlat": 40.7372670, + "maxlon": -74.0007768 + }, + "nodes": [ + 4657092901, + 8262308344, + 8262308151, + 8262308165, + 8262308166, + 8262308167, + 8262308168, + 8262308169, + 8262308170, + 8262308171, + 8262308172, + 8262308173, + 8262308174, + 8262308175, + 8262308176, + 8262308177, + 8262308178, + 8262308179, + 8262308180, + 8262308181, + 8262308182, + 8262308183, + 8262308360, + 8262308184, + 8262308150, + 8262308343, + 4657092900, + 8262308403, + 8262308280, + 8262308276, + 8262308364, + 4657092901 + ], + "geometry": [ + { "lat": 40.7368531, "lon": -74.0011342 }, + { "lat": 40.7368525, "lon": -74.0011496 }, + { "lat": 40.7368510, "lon": -74.0011903 }, + { "lat": 40.7368370, "lon": -74.0011968 }, + { "lat": 40.7368267, "lon": -74.0011979 }, + { "lat": 40.7368160, "lon": -74.0011908 }, + { "lat": 40.7367966, "lon": -74.0011696 }, + { "lat": 40.7367912, "lon": -74.0011473 }, + { "lat": 40.7367888, "lon": -74.0011350 }, + { "lat": 40.7367880, "lon": -74.0011047 }, + { "lat": 40.7367978, "lon": -74.0010711 }, + { "lat": 40.7368135, "lon": -74.0010537 }, + { "lat": 40.7368337, "lon": -74.0010428 }, + { "lat": 40.7368527, "lon": -74.0010493 }, + { "lat": 40.7368683, "lon": -74.0010423 }, + { "lat": 40.7371389, "lon": -74.0008404 }, + { "lat": 40.7371455, "lon": -74.0008170 }, + { "lat": 40.7371582, "lon": -74.0008012 }, + { "lat": 40.7371921, "lon": -74.0007772 }, + { "lat": 40.7372048, "lon": -74.0007768 }, + { "lat": 40.7372321, "lon": -74.0007821 }, + { "lat": 40.7372461, "lon": -74.0007930 }, + { "lat": 40.7372531, "lon": -74.0008043 }, + { "lat": 40.7372593, "lon": -74.0008142 }, + { "lat": 40.7372670, "lon": -74.0008343 }, + { "lat": 40.7372407, "lon": -74.0008541 }, + { "lat": 40.7372281, "lon": -74.0008636 }, + { "lat": 40.7372210, "lon": -74.0008687 }, + { "lat": 40.7372072, "lon": -74.0008787 }, + { "lat": 40.7369228, "lon": -74.0010839 }, + { "lat": 40.7368636, "lon": -74.0011265 }, + { "lat": 40.7368531, "lon": -74.0011342 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 888695501, + "bounds": { + "minlat": 40.7368531, + "minlon": -74.0014202, + "maxlat": 40.7374111, + "maxlon": -74.0009683 + }, + "nodes": [ + 8262308185, + 8262308186, + 8262308187, + 8262308188, + 8262308189, + 8262308190, + 8262308191, + 8262308192, + 8262308193, + 8262308194, + 8262308195, + 8262308196, + 8262308197, + 8262308198, + 8262308199, + 8262308200, + 8262308201, + 8262308202, + 8262308203, + 8262308204, + 8262308205, + 8262308206, + 8262308207, + 8262308208, + 8262308209, + 8262308210, + 8262308211, + 8262308212, + 8262308213, + 8262308214, + 4657104936, + 4657104937, + 8262308215, + 8262308216, + 8262308217, + 8262308218, + 8262308219, + 8262308220, + 8262308221, + 8262308222, + 8262308223, + 8262308224, + 8262308225, + 8262308226, + 8262308227, + 8262308228, + 8262308229, + 8262308230, + 8262308231, + 8262308232, + 8262308392, + 8262308233, + 8262308234, + 8262308235, + 8262308236, + 8262308237, + 8262308238, + 8262308239, + 8262308240, + 8262308241, + 8262308242, + 8262308243, + 8262308244, + 8262308245, + 8262308246, + 8262308247, + 8262308248, + 8262308249, + 8262308250, + 8262308251, + 8262308252, + 8262308253, + 8262308254, + 8262308255, + 8262308256, + 8262308257, + 8262308258, + 8262308259, + 8262308260, + 8262308261, + 8262308262, + 8262308263, + 8262308264, + 8262308393, + 8262308265, + 8262308266, + 8262308267, + 8262308268, + 8262308269, + 8262308270, + 8262308271, + 8262308272, + 8262308273, + 8262308274, + 8262308275, + 8262308276, + 8262308364, + 4657092901, + 8262308185 + ], + "geometry": [ + { "lat": 40.7369268, "lon": -74.0011787 }, + { "lat": 40.7369248, "lon": -74.0011658 }, + { "lat": 40.7369339, "lon": -74.0011566 }, + { "lat": 40.7369566, "lon": -74.0011528 }, + { "lat": 40.7369690, "lon": -74.0011544 }, + { "lat": 40.7369772, "lon": -74.0011685 }, + { "lat": 40.7369838, "lon": -74.0011827 }, + { "lat": 40.7370003, "lon": -74.0011952 }, + { "lat": 40.7370242, "lon": -74.0012006 }, + { "lat": 40.7370477, "lon": -74.0011990 }, + { "lat": 40.7370659, "lon": -74.0012099 }, + { "lat": 40.7370704, "lon": -74.0012202 }, + { "lat": 40.7370819, "lon": -74.0012371 }, + { "lat": 40.7371034, "lon": -74.0012600 }, + { "lat": 40.7371257, "lon": -74.0012747 }, + { "lat": 40.7371549, "lon": -74.0012932 }, + { "lat": 40.7371875, "lon": -74.0013133 }, + { "lat": 40.7372168, "lon": -74.0013198 }, + { "lat": 40.7372444, "lon": -74.0013149 }, + { "lat": 40.7372560, "lon": -74.0013100 }, + { "lat": 40.7372671, "lon": -74.0013177 }, + { "lat": 40.7372762, "lon": -74.0013324 }, + { "lat": 40.7372894, "lon": -74.0013340 }, + { "lat": 40.7373050, "lon": -74.0013329 }, + { "lat": 40.7373133, "lon": -74.0013389 }, + { "lat": 40.7373236, "lon": -74.0013519 }, + { "lat": 40.7373253, "lon": -74.0013661 }, + { "lat": 40.7373224, "lon": -74.0013786 }, + { "lat": 40.7373121, "lon": -74.0013939 }, + { "lat": 40.7372995, "lon": -74.0014037 }, + { "lat": 40.7373268, "lon": -74.0014202 }, + { "lat": 40.7374111, "lon": -74.0012930 }, + { "lat": 40.7373966, "lon": -74.0012591 }, + { "lat": 40.7373867, "lon": -74.0012779 }, + { "lat": 40.7373751, "lon": -74.0012855 }, + { "lat": 40.7373595, "lon": -74.0012855 }, + { "lat": 40.7373450, "lon": -74.0012752 }, + { "lat": 40.7373430, "lon": -74.0012627 }, + { "lat": 40.7373533, "lon": -74.0012475 }, + { "lat": 40.7373566, "lon": -74.0012306 }, + { "lat": 40.7373541, "lon": -74.0012104 }, + { "lat": 40.7373442, "lon": -74.0011827 }, + { "lat": 40.7373331, "lon": -74.0011674 }, + { "lat": 40.7373228, "lon": -74.0011511 }, + { "lat": 40.7373125, "lon": -74.0011277 }, + { "lat": 40.7373050, "lon": -74.0010978 }, + { "lat": 40.7373017, "lon": -74.0010711 }, + { "lat": 40.7372898, "lon": -74.0010292 }, + { "lat": 40.7372721, "lon": -74.0010053 }, + { "lat": 40.7372452, "lon": -74.0009683 }, + { "lat": 40.7372313, "lon": -74.0009828 }, + { "lat": 40.7372176, "lon": -74.0009971 }, + { "lat": 40.7372275, "lon": -74.0010074 }, + { "lat": 40.7372312, "lon": -74.0010189 }, + { "lat": 40.7372312, "lon": -74.0010385 }, + { "lat": 40.7372399, "lon": -74.0010679 }, + { "lat": 40.7372510, "lon": -74.0010853 }, + { "lat": 40.7372683, "lon": -74.0011010 }, + { "lat": 40.7372762, "lon": -74.0011185 }, + { "lat": 40.7372791, "lon": -74.0011430 }, + { "lat": 40.7372774, "lon": -74.0011647 }, + { "lat": 40.7372667, "lon": -74.0011800 }, + { "lat": 40.7372547, "lon": -74.0011908 }, + { "lat": 40.7372465, "lon": -74.0012050 }, + { "lat": 40.7372440, "lon": -74.0012192 }, + { "lat": 40.7372387, "lon": -74.0012453 }, + { "lat": 40.7372321, "lon": -74.0012567 }, + { "lat": 40.7372209, "lon": -74.0012660 }, + { "lat": 40.7372065, "lon": -74.0012730 }, + { "lat": 40.7371949, "lon": -74.0012681 }, + { "lat": 40.7371764, "lon": -74.0012513 }, + { "lat": 40.7371652, "lon": -74.0012328 }, + { "lat": 40.7371553, "lon": -74.0012110 }, + { "lat": 40.7371459, "lon": -74.0011957 }, + { "lat": 40.7371290, "lon": -74.0011800 }, + { "lat": 40.7371100, "lon": -74.0011762 }, + { "lat": 40.7370877, "lon": -74.0011800 }, + { "lat": 40.7370737, "lon": -74.0011762 }, + { "lat": 40.7370605, "lon": -74.0011615 }, + { "lat": 40.7370510, "lon": -74.0011435 }, + { "lat": 40.7370506, "lon": -74.0011179 }, + { "lat": 40.7370617, "lon": -74.0010918 }, + { "lat": 40.7370758, "lon": -74.0010766 }, + { "lat": 40.7370697, "lon": -74.0010577 }, + { "lat": 40.7370626, "lon": -74.0010357 }, + { "lat": 40.7370399, "lon": -74.0010401 }, + { "lat": 40.7370234, "lon": -74.0010428 }, + { "lat": 40.7370044, "lon": -74.0010575 }, + { "lat": 40.7369929, "lon": -74.0010809 }, + { "lat": 40.7369863, "lon": -74.0010967 }, + { "lat": 40.7369772, "lon": -74.0011114 }, + { "lat": 40.7369562, "lon": -74.0011141 }, + { "lat": 40.7369405, "lon": -74.0011108 }, + { "lat": 40.7369236, "lon": -74.0011005 }, + { "lat": 40.7369224, "lon": -74.0010945 }, + { "lat": 40.7369228, "lon": -74.0010839 }, + { "lat": 40.7368636, "lon": -74.0011265 }, + { "lat": 40.7368531, "lon": -74.0011342 }, + { "lat": 40.7369268, "lon": -74.0011787 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 888695502, + "bounds": { + "minlat": 40.7370626, + "minlon": -74.0010776, + "maxlat": 40.7372452, + "maxlon": -74.0008636 + }, + "nodes": [ + 8262308232, + 8262308277, + 8262308278, + 8262308279, + 4657092900, + 8262308403, + 8262308280, + 8262308281, + 8262308282, + 8262308283, + 8262308284, + 8262308285, + 8262308286, + 8262308287, + 8262308288, + 8262308289, + 8262308265, + 8262308393, + 8262308264, + 8262308290, + 8262308291, + 8262308292, + 8262308293, + 8262308294, + 8262308295, + 8262308296, + 8262308297, + 8262308298, + 8262308299, + 8262308233, + 8262308392, + 8262308232 + ], + "geometry": [ + { "lat": 40.7372452, "lon": -74.0009683 }, + { "lat": 40.7372366, "lon": -74.0009476 }, + { "lat": 40.7372358, "lon": -74.0009182 }, + { "lat": 40.7372442, "lon": -74.0009014 }, + { "lat": 40.7372281, "lon": -74.0008636 }, + { "lat": 40.7372210, "lon": -74.0008687 }, + { "lat": 40.7372072, "lon": -74.0008787 }, + { "lat": 40.7372040, "lon": -74.0009073 }, + { "lat": 40.7371908, "lon": -74.0009345 }, + { "lat": 40.7371702, "lon": -74.0009492 }, + { "lat": 40.7371516, "lon": -74.0009536 }, + { "lat": 40.7371339, "lon": -74.0009634 }, + { "lat": 40.7371195, "lon": -74.0009770 }, + { "lat": 40.7371071, "lon": -74.0010009 }, + { "lat": 40.7370956, "lon": -74.0010205 }, + { "lat": 40.7370815, "lon": -74.0010308 }, + { "lat": 40.7370626, "lon": -74.0010357 }, + { "lat": 40.7370697, "lon": -74.0010577 }, + { "lat": 40.7370758, "lon": -74.0010766 }, + { "lat": 40.7370968, "lon": -74.0010673 }, + { "lat": 40.7371137, "lon": -74.0010717 }, + { "lat": 40.7371261, "lon": -74.0010776 }, + { "lat": 40.7371417, "lon": -74.0010776 }, + { "lat": 40.7371599, "lon": -74.0010679 }, + { "lat": 40.7371694, "lon": -74.0010542 }, + { "lat": 40.7371764, "lon": -74.0010287 }, + { "lat": 40.7371834, "lon": -74.0010042 }, + { "lat": 40.7371978, "lon": -74.0009917 }, + { "lat": 40.7372114, "lon": -74.0009911 }, + { "lat": 40.7372176, "lon": -74.0009971 }, + { "lat": 40.7372313, "lon": -74.0009828 }, + { "lat": 40.7372452, "lon": -74.0009683 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 888695519, + "bounds": { + "minlat": 40.7363224, + "minlon": -74.0010180, + "maxlat": 40.7365309, + "maxlon": -74.0007667 + }, + "nodes": [ + 8262308450, + 8262308459, + 8262308451, + 8262308452, + 8262308453, + 8262308492, + 8262308454, + 2569066471, + 2569066473, + 8262308455, + 8262308456, + 8262308478, + 8262308457, + 8262308458, + 11062719799, + 11062719797, + 11062719798, + 8262308450 + ], + "geometry": [ + { "lat": 40.7365191, "lon": -74.0010180 }, + { "lat": 40.7364948, "lon": -74.0010045 }, + { "lat": 40.7364098, "lon": -74.0009498 }, + { "lat": 40.7364113, "lon": -74.0009227 }, + { "lat": 40.7363224, "lon": -74.0008634 }, + { "lat": 40.7363266, "lon": -74.0008502 }, + { "lat": 40.7363334, "lon": -74.0008285 }, + { "lat": 40.7363657, "lon": -74.0008486 }, + { "lat": 40.7363745, "lon": -74.0008239 }, + { "lat": 40.7363610, "lon": -74.0007902 }, + { "lat": 40.7363932, "lon": -74.0007667 }, + { "lat": 40.7364091, "lon": -74.0007896 }, + { "lat": 40.7364626, "lon": -74.0008927 }, + { "lat": 40.7364728, "lon": -74.0008839 }, + { "lat": 40.7365226, "lon": -74.0009887 }, + { "lat": 40.7365309, "lon": -74.0010062 }, + { "lat": 40.7365266, "lon": -74.0010145 }, + { "lat": 40.7365191, "lon": -74.0010180 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 888695520, + "bounds": { + "minlat": 40.7360776, + "minlon": -74.0012706, + "maxlat": 40.7364157, + "maxlon": -74.0010189 + }, + "nodes": [ + 2569066285, + 11062719789, + 8262308460, + 8262308474, + 8262308461, + 8262308462, + 11062719790, + 5554351988, + 5554351989, + 5554351990, + 8262308468, + 8262308463, + 8262308464, + 8262308465, + 8262308467, + 8262308466, + 357620227, + 5554352004, + 5554352003, + 5554352020, + 2569066305, + 2569066285 + ], + "geometry": [ + { "lat": 40.7360776, "lon": -74.0011941 }, + { "lat": 40.7360917, "lon": -74.0012370 }, + { "lat": 40.7361024, "lon": -74.0012706 }, + { "lat": 40.7362951, "lon": -74.0011567 }, + { "lat": 40.7363390, "lon": -74.0011308 }, + { "lat": 40.7363628, "lon": -74.0011435 }, + { "lat": 40.7363910, "lon": -74.0011297 }, + { "lat": 40.7364091, "lon": -74.0011208 }, + { "lat": 40.7364157, "lon": -74.0011007 }, + { "lat": 40.7364076, "lon": -74.0010839 }, + { "lat": 40.7363824, "lon": -74.0010687 }, + { "lat": 40.7363563, "lon": -74.0010530 }, + { "lat": 40.7363510, "lon": -74.0010678 }, + { "lat": 40.7362677, "lon": -74.0010189 }, + { "lat": 40.7362582, "lon": -74.0010474 }, + { "lat": 40.7362537, "lon": -74.0010619 }, + { "lat": 40.7362899, "lon": -74.0010815 }, + { "lat": 40.7362113, "lon": -74.0011235 }, + { "lat": 40.7362338, "lon": -74.0010511 }, + { "lat": 40.7362068, "lon": -74.0010279 }, + { "lat": 40.7361669, "lon": -74.0011453 }, + { "lat": 40.7360776, "lon": -74.0011941 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 888695521, + "bounds": { + "minlat": 40.7361186, + "minlon": -74.0010619, + "maxlat": 40.7362717, + "maxlon": -74.0009206 + }, + "nodes": [ + 8262308466, + 5554352003, + 5554352020, + 8262308470, + 11062719785, + 8262308471, + 8262308472, + 8262308465, + 8262308467, + 8262308466 + ], + "geometry": [ + { "lat": 40.7362537, "lon": -74.0010619 }, + { "lat": 40.7362338, "lon": -74.0010511 }, + { "lat": 40.7362068, "lon": -74.0010279 }, + { "lat": 40.7361186, "lon": -74.0009757 }, + { "lat": 40.7361224, "lon": -74.0009633 }, + { "lat": 40.7361365, "lon": -74.0009206 }, + { "lat": 40.7362717, "lon": -74.0010017 }, + { "lat": 40.7362677, "lon": -74.0010189 }, + { "lat": 40.7362582, "lon": -74.0010474 }, + { "lat": 40.7362537, "lon": -74.0010619 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 888695543, + "bounds": { + "minlat": 40.7389741, + "minlon": -74.0029045, + "maxlat": 40.7390665, + "maxlon": -74.0027476 + }, + "nodes": [ + 8262308568, + 8262308569, + 8262308570, + 8262308571, + 8262308572, + 8262308573, + 8262308574, + 8262308575, + 8262308576, + 8262308568 + ], + "geometry": [ + { "lat": 40.7390665, "lon": -74.0028335 }, + { "lat": 40.7390033, "lon": -74.0029045 }, + { "lat": 40.7390022, "lon": -74.0028680 }, + { "lat": 40.7389928, "lon": -74.0028320 }, + { "lat": 40.7389741, "lon": -74.0028127 }, + { "lat": 40.7390044, "lon": -74.0027476 }, + { "lat": 40.7390642, "lon": -74.0027772 }, + { "lat": 40.7390620, "lon": -74.0027989 }, + { "lat": 40.7390623, "lon": -74.0028152 }, + { "lat": 40.7390665, "lon": -74.0028335 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 888695544, + "bounds": { + "minlat": 40.7388788, + "minlon": -74.0028261, + "maxlat": 40.7389681, + "maxlon": -74.0026835 + }, + "nodes": [ + 8262308577, + 8262308578, + 8262308579, + 8262308580, + 8262308581, + 8262308582, + 8262308583, + 8262308584, + 8262308585, + 8262308586, + 8262308577 + ], + "geometry": [ + { "lat": 40.7389457, "lon": -74.0027955 }, + { "lat": 40.7389300, "lon": -74.0027915 }, + { "lat": 40.7389106, "lon": -74.0028024 }, + { "lat": 40.7388867, "lon": -74.0028211 }, + { "lat": 40.7388799, "lon": -74.0028261 }, + { "lat": 40.7388788, "lon": -74.0027234 }, + { "lat": 40.7388923, "lon": -74.0027131 }, + { "lat": 40.7388990, "lon": -74.0027027 }, + { "lat": 40.7389072, "lon": -74.0026835 }, + { "lat": 40.7389681, "lon": -74.0027225 }, + { "lat": 40.7389457, "lon": -74.0027955 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 888695545, + "bounds": { + "minlat": 40.7394270, + "minlon": -74.0064035, + "maxlat": 40.7402135, + "maxlon": -74.0056939 + }, + "nodes": [ + 8262308589, + 8262308645, + 8262308590, + 8262308591, + 8262308601, + 8262308607, + 8262308592, + 8262308646, + 2569267120, + 2984312931, + 2984312924, + 2569267065, + 2569267071, + 2569267007, + 2569266998, + 2569266994, + 2569266986, + 8262308603, + 8262308593, + 8262308599, + 8262308594, + 8262308595, + 12162436972, + 8262308596, + 8262308597, + 8262308598, + 8262308600, + 8262308589 + ], + "geometry": [ + { "lat": 40.7402000, "lon": -74.0059040 }, + { "lat": 40.7402056, "lon": -74.0058962 }, + { "lat": 40.7402120, "lon": -74.0058873 }, + { "lat": 40.7402135, "lon": -74.0058498 }, + { "lat": 40.7402098, "lon": -74.0058418 }, + { "lat": 40.7401850, "lon": -74.0057866 }, + { "lat": 40.7401432, "lon": -74.0056939 }, + { "lat": 40.7401268, "lon": -74.0057068 }, + { "lat": 40.7400707, "lon": -74.0057512 }, + { "lat": 40.7399466, "lon": -74.0058423 }, + { "lat": 40.7398613, "lon": -74.0059049 }, + { "lat": 40.7398008, "lon": -74.0059493 }, + { "lat": 40.7398144, "lon": -74.0059810 }, + { "lat": 40.7396275, "lon": -74.0061172 }, + { "lat": 40.7395613, "lon": -74.0059602 }, + { "lat": 40.7395278, "lon": -74.0058808 }, + { "lat": 40.7395025, "lon": -74.0057950 }, + { "lat": 40.7394695, "lon": -74.0057924 }, + { "lat": 40.7394345, "lon": -74.0057896 }, + { "lat": 40.7394338, "lon": -74.0058328 }, + { "lat": 40.7394270, "lon": -74.0063125 }, + { "lat": 40.7394400, "lon": -74.0063584 }, + { "lat": 40.7394538, "lon": -74.0063674 }, + { "lat": 40.7394845, "lon": -74.0063875 }, + { "lat": 40.7395209, "lon": -74.0064035 }, + { "lat": 40.7396004, "lon": -74.0063806 }, + { "lat": 40.7396405, "lon": -74.0063487 }, + { "lat": 40.7402000, "lon": -74.0059040 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "name": "Gansevoort Plaza" + } +}, +{ + "type": "way", + "id": 888695557, + "bounds": { + "minlat": 40.7402386, + "minlon": -74.0058238, + "maxlat": 40.7408917, + "maxlon": -74.0052486 + }, + "nodes": [ + 8262308651, + 8262308652, + 8262308653, + 8262308654, + 8262308664, + 8262308667, + 8262308655, + 8262308673, + 2569267146, + 2569267189, + 2569267186, + 8262308672, + 8262308656, + 8262308657, + 8262308703, + 8262308658, + 8262308659, + 8262308704, + 8262308661, + 8262308662, + 8262308663, + 8262308689, + 8262308651 + ], + "geometry": [ + { "lat": 40.7404250, "lon": -74.0057517 }, + { "lat": 40.7403344, "lon": -74.0058153 }, + { "lat": 40.7403124, "lon": -74.0058238 }, + { "lat": 40.7402970, "lon": -74.0058126 }, + { "lat": 40.7402864, "lon": -74.0057873 }, + { "lat": 40.7402625, "lon": -74.0057306 }, + { "lat": 40.7402386, "lon": -74.0056739 }, + { "lat": 40.7402534, "lon": -74.0056625 }, + { "lat": 40.7402614, "lon": -74.0056563 }, + { "lat": 40.7406440, "lon": -74.0053782 }, + { "lat": 40.7406330, "lon": -74.0053518 }, + { "lat": 40.7406298, "lon": -74.0053190 }, + { "lat": 40.7406267, "lon": -74.0052878 }, + { "lat": 40.7407409, "lon": -74.0052591 }, + { "lat": 40.7407938, "lon": -74.0052488 }, + { "lat": 40.7407988, "lon": -74.0052486 }, + { "lat": 40.7408205, "lon": -74.0052500 }, + { "lat": 40.7408428, "lon": -74.0052871 }, + { "lat": 40.7408901, "lon": -74.0054006 }, + { "lat": 40.7408917, "lon": -74.0054258 }, + { "lat": 40.7408810, "lon": -74.0054462 }, + { "lat": 40.7408694, "lon": -74.0054540 }, + { "lat": 40.7404250, "lon": -74.0057517 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 888759057, + "bounds": { + "minlat": 40.7104488, + "minlon": -74.0124183, + "maxlat": 40.7108984, + "maxlon": -74.0113255 + }, + "nodes": [ + 8213944614, + 10285341224, + 8213944613, + 10288802453, + 10288802598, + 10288802595, + 10288802592, + 10288802589, + 10288802586, + 8262936490 + ], + "geometry": [ + { "lat": 40.7108984, "lon": -74.0124183 }, + { "lat": 40.7108693, "lon": -74.0123475 }, + { "lat": 40.7108473, "lon": -74.0122940 }, + { "lat": 40.7107822, "lon": -74.0121359 }, + { "lat": 40.7106820, "lon": -74.0118923 }, + { "lat": 40.7106428, "lon": -74.0117971 }, + { "lat": 40.7106031, "lon": -74.0117004 }, + { "lat": 40.7105636, "lon": -74.0116045 }, + { "lat": 40.7105248, "lon": -74.0115103 }, + { "lat": 40.7104488, "lon": -74.0113255 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Cortlandt Way", + "name:ko": "코트랜드 웨이", + "surface": "paving_stones", + "wikidata": "Q14627379", + "wikipedia": "en:Cortlandt Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 889019845, + "bounds": { + "minlat": 40.7527831, + "minlon": -73.9574444, + "maxlat": 40.7528494, + "maxlon": -73.9574057 + }, + "nodes": [ + 42447242, + 607954497 + ], + "geometry": [ + { "lat": 40.7528494, "lon": -73.9574057 }, + { "lat": 40.7527831, "lon": -73.9574444 } + ], + "tags": { + "highway": "service", + "name": "East Road", + "name_1": "Main Street", + "service": "driveway", + "source": "Bing", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East", + "tiger:name_base_1": "Main", + "tiger:name_type": "Rd", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 889019876, + "bounds": { + "minlat": 40.7597119, + "minlon": -73.9533903, + "maxlat": 40.7600529, + "maxlon": -73.9529376 + }, + "nodes": [ + 194606080, + 194606082, + 8265114510, + 8265114492, + 8265114493, + 8265114494, + 8265114509, + 8265114495, + 8265114496, + 194606076, + 194606078, + 194606080 + ], + "geometry": [ + { "lat": 40.7597935, "lon": -73.9533903 }, + { "lat": 40.7597434, "lon": -73.9533140 }, + { "lat": 40.7597283, "lon": -73.9532851 }, + { "lat": 40.7597181, "lon": -73.9532657 }, + { "lat": 40.7597119, "lon": -73.9532264 }, + { "lat": 40.7597145, "lon": -73.9531878 }, + { "lat": 40.7598650, "lon": -73.9530065 }, + { "lat": 40.7599222, "lon": -73.9529376 }, + { "lat": 40.7599577, "lon": -73.9529575 }, + { "lat": 40.7599722, "lon": -73.9529672 }, + { "lat": 40.7600529, "lon": -73.9531162 }, + { "lat": 40.7597935, "lon": -73.9533903 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "name": "Eleanor's Pier" + } +}, +{ + "type": "way", + "id": 889019947, + "bounds": { + "minlat": 40.7681222, + "minlon": -73.9458435, + "maxlat": 40.7683288, + "maxlon": -73.9456065 + }, + "nodes": [ + 8265114778, + 8265114793, + 8265114794, + 8265114779, + 8265114780, + 8265114781, + 8265114782, + 8265114783, + 8265114784, + 8265114785, + 8265114786, + 8265114787, + 8265114788, + 8265114792, + 8265114791, + 8265114789, + 8265114790, + 8265114778 + ], + "geometry": [ + { "lat": 40.7681222, "lon": -73.9457633 }, + { "lat": 40.7681483, "lon": -73.9457797 }, + { "lat": 40.7681654, "lon": -73.9457903 }, + { "lat": 40.7681840, "lon": -73.9458020 }, + { "lat": 40.7682220, "lon": -73.9458213 }, + { "lat": 40.7682659, "lon": -73.9458335 }, + { "lat": 40.7683087, "lon": -73.9458406 }, + { "lat": 40.7683288, "lon": -73.9458435 }, + { "lat": 40.7683174, "lon": -73.9458013 }, + { "lat": 40.7683022, "lon": -73.9457662 }, + { "lat": 40.7682914, "lon": -73.9457468 }, + { "lat": 40.7682626, "lon": -73.9456967 }, + { "lat": 40.7682426, "lon": -73.9456681 }, + { "lat": 40.7682272, "lon": -73.9456529 }, + { "lat": 40.7682154, "lon": -73.9456411 }, + { "lat": 40.7681992, "lon": -73.9456251 }, + { "lat": 40.7681780, "lon": -73.9456065 }, + { "lat": 40.7681222, "lon": -73.9457633 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "man_made": "pier" + } +}, +{ + "type": "way", + "id": 889040827, + "bounds": { + "minlat": 40.8444725, + "minlon": -74.0131700, + "maxlat": 40.8445838, + "maxlon": -74.0124248 + }, + "nodes": [ + 6901623423, + 10927913942, + 298567066, + 10927913911, + 298566980, + 12016147181, + 298567562 + ], + "geometry": [ + { "lat": 40.8445838, "lon": -74.0131700 }, + { "lat": 40.8445465, "lon": -74.0129985 }, + { "lat": 40.8445273, "lon": -74.0128882 }, + { "lat": 40.8445096, "lon": -74.0127672 }, + { "lat": 40.8444940, "lon": -74.0126502 }, + { "lat": 40.8444826, "lon": -74.0125396 }, + { "lat": 40.8444725, "lon": -74.0124248 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 889040829, + "bounds": { + "minlat": 40.8441532, + "minlon": -74.0076475, + "maxlat": 40.8442093, + "maxlon": -74.0073926 + }, + "nodes": [ + 103203018, + 10943455734, + 298567034 + ], + "geometry": [ + { "lat": 40.8441532, "lon": -74.0073926 }, + { "lat": 40.8441821, "lon": -74.0075229 }, + { "lat": 40.8442093, "lon": -74.0076475 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 889079406, + "bounds": { + "minlat": 40.8373413, + "minlon": -73.9248789, + "maxlat": 40.8378416, + "maxlon": -73.9241157 + }, + "nodes": [ + 8265637375, + 8265637376, + 8265637377, + 8265637378, + 8265637379, + 8265637380, + 8265637381, + 8265637382 + ], + "geometry": [ + { "lat": 40.8376720, "lon": -73.9241157 }, + { "lat": 40.8377082, "lon": -73.9242219 }, + { "lat": 40.8378416, "lon": -73.9245628 }, + { "lat": 40.8378115, "lon": -73.9245961 }, + { "lat": 40.8377009, "lon": -73.9246499 }, + { "lat": 40.8376081, "lon": -73.9247134 }, + { "lat": 40.8375081, "lon": -73.9247822 }, + { "lat": 40.8373413, "lon": -73.9248789 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 889114521, + "bounds": { + "minlat": 40.7396764, + "minlon": -73.9909614, + "maxlat": 40.7399819, + "maxlon": -73.9907411 + }, + "nodes": [ + 8265964369, + 12181309654, + 7781135845, + 42427369 + ], + "geometry": [ + { "lat": 40.7399819, "lon": -73.9907411 }, + { "lat": 40.7397866, "lon": -73.9908812 }, + { "lat": 40.7397444, "lon": -73.9909115 }, + { "lat": 40.7396764, "lon": -73.9909614 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 889114527, + "bounds": { + "minlat": 40.7322611, + "minlon": -73.9963683, + "maxlat": 40.7328696, + "maxlon": -73.9959296 + }, + "nodes": [ + 42421877, + 8265964346, + 12179562798, + 8475999052, + 8475999051, + 12179562740, + 8309478850, + 42437949 + ], + "geometry": [ + { "lat": 40.7328696, "lon": -73.9959296 }, + { "lat": 40.7328024, "lon": -73.9959703 }, + { "lat": 40.7327810, "lon": -73.9959844 }, + { "lat": 40.7326079, "lon": -73.9961089 }, + { "lat": 40.7325068, "lon": -73.9961832 }, + { "lat": 40.7323687, "lon": -73.9962831 }, + { "lat": 40.7323170, "lon": -73.9963205 }, + { "lat": 40.7322611, "lon": -73.9963683 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 889114531, + "bounds": { + "minlat": 40.7408858, + "minlon": -73.9900833, + "maxlat": 40.7411769, + "maxlon": -73.9898765 + }, + "nodes": [ + 8265964352, + 8265964366, + 42434268 + ], + "geometry": [ + { "lat": 40.7411769, "lon": -73.9898765 }, + { "lat": 40.7409446, "lon": -73.9900416 }, + { "lat": 40.7408858, "lon": -73.9900833 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 889114533, + "bounds": { + "minlat": 40.7360074, + "minlon": -73.9936325, + "maxlat": 40.7396764, + "maxlon": -73.9909614 + }, + "nodes": [ + 42427369, + 7781115597, + 9140832087, + 42454378, + 9140832086, + 7761301141, + 42429657, + 7761301145, + 8429175894, + 42439272, + 8429175895, + 8429175902, + 42449333, + 8429175904, + 8429175910, + 42431490, + 8429175912, + 8310246303, + 42440710 + ], + "geometry": [ + { "lat": 40.7396764, "lon": -73.9909614 }, + { "lat": 40.7396263, "lon": -73.9909977 }, + { "lat": 40.7391507, "lon": -73.9913495 }, + { "lat": 40.7390984, "lon": -73.9913883 }, + { "lat": 40.7390471, "lon": -73.9914250 }, + { "lat": 40.7385582, "lon": -73.9917696 }, + { "lat": 40.7385111, "lon": -73.9918061 }, + { "lat": 40.7384571, "lon": -73.9918480 }, + { "lat": 40.7379888, "lon": -73.9921990 }, + { "lat": 40.7379242, "lon": -73.9922478 }, + { "lat": 40.7378706, "lon": -73.9922846 }, + { "lat": 40.7373939, "lon": -73.9926095 }, + { "lat": 40.7373314, "lon": -73.9926537 }, + { "lat": 40.7372830, "lon": -73.9926879 }, + { "lat": 40.7367493, "lon": -73.9930775 }, + { "lat": 40.7366910, "lon": -73.9931200 }, + { "lat": 40.7366450, "lon": -73.9931545 }, + { "lat": 40.7361053, "lon": -73.9935598 }, + { "lat": 40.7360074, "lon": -73.9936325 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 889168806, + "bounds": { + "minlat": 40.7989327, + "minlon": -73.9180841, + "maxlat": 40.7998742, + "maxlon": -73.9160610 + }, + "nodes": [ + 7734784501, + 8266385774, + 8266385775, + 8266385776, + 8266385777, + 7734784504 + ], + "geometry": [ + { "lat": 40.7995377, "lon": -73.9180841 }, + { "lat": 40.7994709, "lon": -73.9180693 }, + { "lat": 40.7989327, "lon": -73.9167623 }, + { "lat": 40.7989649, "lon": -73.9166942 }, + { "lat": 40.7997939, "lon": -73.9161169 }, + { "lat": 40.7998742, "lon": -73.9160610 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 889168807, + "bounds": { + "minlat": 40.7995377, + "minlon": -73.9180841, + "maxlat": 40.8004772, + "maxlon": -73.9174336 + }, + "nodes": [ + 7734784502, + 8266385778, + 7734784501 + ], + "geometry": [ + { "lat": 40.8004772, "lon": -73.9174336 }, + { "lat": 40.8002961, "lon": -73.9175590 }, + { "lat": 40.7995377, "lon": -73.9180841 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 889329892, + "bounds": { + "minlat": 40.7907896, + "minlon": -73.9432062, + "maxlat": 40.7909145, + "maxlon": -73.9431152 + }, + "nodes": [ + 8267763553, + 8267763555, + 8267763562 + ], + "geometry": [ + { "lat": 40.7909145, "lon": -73.9431152 }, + { "lat": 40.7908158, "lon": -73.9431871 }, + { "lat": 40.7907896, "lon": -73.9432062 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 889466145, + "bounds": { + "minlat": 40.7138453, + "minlon": -73.9223600, + "maxlat": 40.7151575, + "maxlon": -73.9211019 + }, + "nodes": [ + 5515218192, + 12847161668, + 8269302138, + 8269302139, + 8269302140, + 8269302141, + 8269302142, + 8269302143, + 8269302144, + 8269302159, + 8269302145, + 8269302146, + 8269302147, + 8269302148, + 8269302149, + 8269302150, + 8269302151, + 8269302152, + 8269302153, + 8269302154, + 8269302155, + 8269302156, + 8269302157, + 8269302158, + 8269302159 + ], + "geometry": [ + { "lat": 40.7138453, "lon": -73.9211019 }, + { "lat": 40.7139206, "lon": -73.9211540 }, + { "lat": 40.7139500, "lon": -73.9211743 }, + { "lat": 40.7140156, "lon": -73.9212431 }, + { "lat": 40.7140905, "lon": -73.9213419 }, + { "lat": 40.7142234, "lon": -73.9215246 }, + { "lat": 40.7142870, "lon": -73.9215917 }, + { "lat": 40.7143958, "lon": -73.9216589 }, + { "lat": 40.7145145, "lon": -73.9217279 }, + { "lat": 40.7145550, "lon": -73.9217567 }, + { "lat": 40.7145936, "lon": -73.9218024 }, + { "lat": 40.7146472, "lon": -73.9219031 }, + { "lat": 40.7148891, "lon": -73.9222607 }, + { "lat": 40.7149524, "lon": -73.9223379 }, + { "lat": 40.7150119, "lon": -73.9223600 }, + { "lat": 40.7150543, "lon": -73.9223432 }, + { "lat": 40.7151151, "lon": -73.9222612 }, + { "lat": 40.7151575, "lon": -73.9221791 }, + { "lat": 40.7151504, "lon": -73.9220878 }, + { "lat": 40.7150897, "lon": -73.9219572 }, + { "lat": 40.7150049, "lon": -73.9218528 }, + { "lat": 40.7149398, "lon": -73.9218155 }, + { "lat": 40.7148169, "lon": -73.9217615 }, + { "lat": 40.7147222, "lon": -73.9217428 }, + { "lat": 40.7145550, "lon": -73.9217567 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 889579308, + "bounds": { + "minlat": 40.7197326, + "minlon": -73.9905642, + "maxlat": 40.7198202, + "maxlon": -73.9902585 + }, + "nodes": [ + 8270279220, + 8270279219, + 8270279218, + 8270279222 + ], + "geometry": [ + { "lat": 40.7197326, "lon": -73.9902585 }, + { "lat": 40.7197551, "lon": -73.9903430 }, + { "lat": 40.7197615, "lon": -73.9903646 }, + { "lat": 40.7198202, "lon": -73.9905642 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 889627470, + "bounds": { + "minlat": 40.7142510, + "minlon": -73.9813220, + "maxlat": 40.7143755, + "maxlon": -73.9808938 + }, + "nodes": [ + 7499263656, + 5804713758, + 42427742 + ], + "geometry": [ + { "lat": 40.7143755, "lon": -73.9813220 }, + { "lat": 40.7142761, "lon": -73.9809739 }, + { "lat": 40.7142510, "lon": -73.9808938 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 889673029, + "bounds": { + "minlat": 40.7476629, + "minlon": -73.9694762, + "maxlat": 40.7482409, + "maxlon": -73.9689275 + }, + "nodes": [ + 8270907188, + 11003445326, + 11003423702, + 11003423687, + 11003423690, + 11003423689, + 11003423700, + 11003423701, + 11003423692, + 11003423695, + 11003423696, + 11003423697, + 11003423698, + 11003423691, + 11003423699, + 11003423688, + 8270907190, + 11003445325, + 8270907189 + ], + "geometry": [ + { "lat": 40.7478058, "lon": -73.9694762 }, + { "lat": 40.7478460, "lon": -73.9694481 }, + { "lat": 40.7478599, "lon": -73.9694384 }, + { "lat": 40.7478807, "lon": -73.9694238 }, + { "lat": 40.7479151, "lon": -73.9694154 }, + { "lat": 40.7481096, "lon": -73.9694037 }, + { "lat": 40.7481441, "lon": -73.9693918 }, + { "lat": 40.7482314, "lon": -73.9692676 }, + { "lat": 40.7482409, "lon": -73.9692326 }, + { "lat": 40.7482332, "lon": -73.9690896 }, + { "lat": 40.7482178, "lon": -73.9690521 }, + { "lat": 40.7481164, "lon": -73.9689384 }, + { "lat": 40.7480884, "lon": -73.9689275 }, + { "lat": 40.7479457, "lon": -73.9689370 }, + { "lat": 40.7479088, "lon": -73.9689535 }, + { "lat": 40.7477355, "lon": -73.9690803 }, + { "lat": 40.7477152, "lon": -73.9690950 }, + { "lat": 40.7477006, "lon": -73.9691057 }, + { "lat": 40.7476629, "lon": -73.9691332 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 889906359, + "bounds": { + "minlat": 40.7509932, + "minlon": -73.9675902, + "maxlat": 40.7517192, + "maxlon": -73.9670634 + }, + "nodes": [ + 5759126964, + 3827342878, + 8272069051, + 3827342881 + ], + "geometry": [ + { "lat": 40.7517192, "lon": -73.9670634 }, + { "lat": 40.7516341, "lon": -73.9671234 }, + { "lat": 40.7515877, "lon": -73.9671561 }, + { "lat": 40.7509932, "lon": -73.9675902 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 889906391, + "bounds": { + "minlat": 40.7480990, + "minlon": -73.9682669, + "maxlat": 40.7482597, + "maxlon": -73.9681261 + }, + "nodes": [ + 3829625858, + 7094687064 + ], + "geometry": [ + { "lat": 40.7482597, "lon": -73.9681261 }, + { "lat": 40.7480990, "lon": -73.9682669 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 889906392, + "bounds": { + "minlat": 40.7481871, + "minlon": -73.9683432, + "maxlat": 40.7482597, + "maxlon": -73.9681261 + }, + "nodes": [ + 3829625870, + 3829625869, + 3829625865, + 3829625858 + ], + "geometry": [ + { "lat": 40.7481871, "lon": -73.9683432 }, + { "lat": 40.7482026, "lon": -73.9682521 }, + { "lat": 40.7482311, "lon": -73.9681676 }, + { "lat": 40.7482597, "lon": -73.9681261 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 889997873, + "bounds": { + "minlat": 40.7217275, + "minlon": -73.9827572, + "maxlat": 40.7220215, + "maxlon": -73.9825505 + }, + "nodes": [ + 8272824065, + 9906682839, + 8272824064 + ], + "geometry": [ + { "lat": 40.7220215, "lon": -73.9825505 }, + { "lat": 40.7217869, "lon": -73.9827154 }, + { "lat": 40.7217275, "lon": -73.9827572 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 890023178, + "bounds": { + "minlat": 40.7450063, + "minlon": -73.9887531, + "maxlat": 40.7452886, + "maxlon": -73.9880716 + }, + "nodes": [ + 42428223, + 8265964372, + 5481897723 + ], + "geometry": [ + { "lat": 40.7452886, "lon": -73.9887531 }, + { "lat": 40.7452414, "lon": -73.9886357 }, + { "lat": 40.7450063, "lon": -73.9880716 } + ], + "tags": { + "highway": "residential", + "name": "West 28th Street", + "name:ru": "Западная 28-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 890191182, + "bounds": { + "minlat": 40.7163450, + "minlon": -73.9310031, + "maxlat": 40.7164220, + "maxlon": -73.9307000 + }, + "nodes": [ + 8274450580, + 42515027 + ], + "geometry": [ + { "lat": 40.7163450, "lon": -73.9310031 }, + { "lat": 40.7164220, "lon": -73.9307000 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Rewe Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rewe", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 890490721, + "bounds": { + "minlat": 40.7040740, + "minlon": -74.0040504, + "maxlat": 40.7053040, + "maxlon": -74.0026364 + }, + "nodes": [ + 1813618926, + 11032985254, + 8276469134, + 8276469164, + 8276469133, + 2895921304, + 2895921305, + 8276469135, + 8276469150, + 8276469136, + 2895921306, + 2895921307, + 2895921308, + 3350529211, + 3350529210, + 2895921303, + 8276469137, + 1813618924, + 1813618927, + 8276469138, + 166878963, + 8276469151, + 8276469163, + 1813618926 + ], + "geometry": [ + { "lat": 40.7051665, "lon": -74.0040504 }, + { "lat": 40.7049092, "lon": -74.0037713 }, + { "lat": 40.7049108, "lon": -74.0037685 }, + { "lat": 40.7049171, "lon": -74.0037589 }, + { "lat": 40.7049238, "lon": -74.0037480 }, + { "lat": 40.7050786, "lon": -74.0039227 }, + { "lat": 40.7051728, "lon": -74.0037744 }, + { "lat": 40.7048382, "lon": -74.0033686 }, + { "lat": 40.7047276, "lon": -74.0032446 }, + { "lat": 40.7047000, "lon": -74.0032135 }, + { "lat": 40.7043961, "lon": -74.0028824 }, + { "lat": 40.7042791, "lon": -74.0030684 }, + { "lat": 40.7045005, "lon": -74.0033138 }, + { "lat": 40.7045247, "lon": -74.0032751 }, + { "lat": 40.7047379, "lon": -74.0035169 }, + { "lat": 40.7047172, "lon": -74.0035525 }, + { "lat": 40.7047145, "lon": -74.0035566 }, + { "lat": 40.7040740, "lon": -74.0028652 }, + { "lat": 40.7042228, "lon": -74.0026364 }, + { "lat": 40.7047650, "lon": -74.0032458 }, + { "lat": 40.7053040, "lon": -74.0038425 }, + { "lat": 40.7052949, "lon": -74.0038541 }, + { "lat": 40.7051735, "lon": -74.0040408 }, + { "lat": 40.7051665, "lon": -74.0040504 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "motor_vehicle": "no", + "name": "Pier 15" + } +}, +{ + "type": "way", + "id": 890490737, + "bounds": { + "minlat": 40.7048650, + "minlon": -74.0031958, + "maxlat": 40.7061928, + "maxlon": -74.0005852 + }, + "nodes": [ + 8276469083, + 4913045203, + 8276469187, + 10311946214, + 8276469188, + 8276469189, + 8276469190, + 8276469191, + 8276469192, + 8276469193, + 8276469194, + 3350496592, + 166878973, + 6920147490, + 166878972, + 3350483344, + 8276469195, + 8143977779, + 8276469197, + 7555040531, + 2895921302, + 2895918399, + 2895918400, + 8276469198, + 8143977778, + 8276469196, + 166878971, + 166878969, + 205017331, + 205017330, + 205017329, + 11031452871, + 8276469082, + 7555040533, + 8276469083 + ], + "geometry": [ + { "lat": 40.7059032, "lon": -74.0031958 }, + { "lat": 40.7060148, "lon": -74.0030152 }, + { "lat": 40.7060638, "lon": -74.0029350 }, + { "lat": 40.7060565, "lon": -74.0029270 }, + { "lat": 40.7057385, "lon": -74.0025772 }, + { "lat": 40.7057131, "lon": -74.0025418 }, + { "lat": 40.7056949, "lon": -74.0024901 }, + { "lat": 40.7056913, "lon": -74.0024374 }, + { "lat": 40.7056993, "lon": -74.0023867 }, + { "lat": 40.7061347, "lon": -74.0016946 }, + { "lat": 40.7061928, "lon": -74.0016099 }, + { "lat": 40.7061149, "lon": -74.0015306 }, + { "lat": 40.7061802, "lon": -74.0014126 }, + { "lat": 40.7059924, "lon": -74.0012050 }, + { "lat": 40.7054320, "lon": -74.0005852 }, + { "lat": 40.7051496, "lon": -74.0010261 }, + { "lat": 40.7051281, "lon": -74.0010574 }, + { "lat": 40.7051948, "lon": -74.0011298 }, + { "lat": 40.7052110, "lon": -74.0011042 }, + { "lat": 40.7053426, "lon": -74.0008965 }, + { "lat": 40.7060593, "lon": -74.0016864 }, + { "lat": 40.7057016, "lon": -74.0022511 }, + { "lat": 40.7049848, "lon": -74.0014611 }, + { "lat": 40.7051131, "lon": -74.0012543 }, + { "lat": 40.7051301, "lon": -74.0012316 }, + { "lat": 40.7050698, "lon": -74.0011578 }, + { "lat": 40.7048650, "lon": -74.0014619 }, + { "lat": 40.7054191, "lon": -74.0020717 }, + { "lat": 40.7053604, "lon": -74.0021691 }, + { "lat": 40.7055278, "lon": -74.0025846 }, + { "lat": 40.7054557, "lon": -74.0026997 }, + { "lat": 40.7054931, "lon": -74.0027411 }, + { "lat": 40.7058007, "lon": -74.0030818 }, + { "lat": 40.7058791, "lon": -74.0031689 }, + { "lat": 40.7059032, "lon": -74.0031958 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 890524763, + "bounds": { + "minlat": 40.7514349, + "minlon": -73.9205764, + "maxlat": 40.7517836, + "maxlon": -73.9156002 + }, + "nodes": [ + 8276812927, + 8593852961, + 8276812928, + 8276812929, + 8276812930, + 8276812931, + 8276812932, + 8276812933, + 8276812934, + 8276812935, + 8276812936, + 8276812937, + 8276812938 + ], + "geometry": [ + { "lat": 40.7516993, "lon": -73.9205764 }, + { "lat": 40.7517255, "lon": -73.9205328 }, + { "lat": 40.7517563, "lon": -73.9204816 }, + { "lat": 40.7517820, "lon": -73.9202907 }, + { "lat": 40.7517836, "lon": -73.9199209 }, + { "lat": 40.7517727, "lon": -73.9195535 }, + { "lat": 40.7517351, "lon": -73.9192514 }, + { "lat": 40.7516885, "lon": -73.9189834 }, + { "lat": 40.7516677, "lon": -73.9188239 }, + { "lat": 40.7516727, "lon": -73.9187585 }, + { "lat": 40.7516786, "lon": -73.9185180 }, + { "lat": 40.7516489, "lon": -73.9180643 }, + { "lat": 40.7514349, "lon": -73.9156002 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 890530452, + "bounds": { + "minlat": 40.7511460, + "minlon": -73.9147016, + "maxlat": 40.7514329, + "maxlon": -73.9135458 + }, + "nodes": [ + 8276857145, + 8276857146, + 8276857147, + 8276857148, + 8276857149, + 8276857150, + 8276857151, + 8276857152, + 8276857153 + ], + "geometry": [ + { "lat": 40.7514329, "lon": -73.9135458 }, + { "lat": 40.7513642, "lon": -73.9136170 }, + { "lat": 40.7513525, "lon": -73.9136392 }, + { "lat": 40.7513117, "lon": -73.9137777 }, + { "lat": 40.7512658, "lon": -73.9140640 }, + { "lat": 40.7512230, "lon": -73.9142452 }, + { "lat": 40.7511771, "lon": -73.9144982 }, + { "lat": 40.7511732, "lon": -73.9145563 }, + { "lat": 40.7511460, "lon": -73.9147016 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 890531440, + "bounds": { + "minlat": 40.7524831, + "minlon": -73.9307769, + "maxlat": 40.7526118, + "maxlon": -73.9304762 + }, + "nodes": [ + 8276868439, + 8593804557, + 8276868440, + 8276868441 + ], + "geometry": [ + { "lat": 40.7526118, "lon": -73.9307769 }, + { "lat": 40.7525794, "lon": -73.9306907 }, + { "lat": 40.7525664, "lon": -73.9306562 }, + { "lat": 40.7524831, "lon": -73.9304762 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 890862870, + "bounds": { + "minlat": 40.7092351, + "minlon": -74.0138229, + "maxlat": 40.7099035, + "maxlon": -74.0130006 + }, + "nodes": [ + 10288473127, + 10288473137, + 10288473138, + 10288473140, + 10288473139, + 480910129, + 10224429168, + 10224429170, + 8279851853, + 10224429174, + 10224429177, + 10288473120, + 10288473121, + 10288473122, + 10288473119, + 10288473123, + 10288473131, + 10288473124, + 10288473132, + 8262936673, + 10288473133, + 10288473134, + 8262936680, + 10288473136, + 10288473135, + 10288473127 + ], + "geometry": [ + { "lat": 40.7095494, "lon": -74.0138229 }, + { "lat": 40.7095687, "lon": -74.0138179 }, + { "lat": 40.7099035, "lon": -74.0136826 }, + { "lat": 40.7099015, "lon": -74.0136720 }, + { "lat": 40.7098996, "lon": -74.0136617 }, + { "lat": 40.7095631, "lon": -74.0137960 }, + { "lat": 40.7095592, "lon": -74.0137749 }, + { "lat": 40.7095588, "lon": -74.0136778 }, + { "lat": 40.7095582, "lon": -74.0135342 }, + { "lat": 40.7094603, "lon": -74.0131209 }, + { "lat": 40.7094447, "lon": -74.0130559 }, + { "lat": 40.7094859, "lon": -74.0130392 }, + { "lat": 40.7094802, "lon": -74.0130155 }, + { "lat": 40.7094742, "lon": -74.0130040 }, + { "lat": 40.7094652, "lon": -74.0130006 }, + { "lat": 40.7092559, "lon": -74.0130982 }, + { "lat": 40.7092467, "lon": -74.0131055 }, + { "lat": 40.7092395, "lon": -74.0131165 }, + { "lat": 40.7092351, "lon": -74.0131343 }, + { "lat": 40.7092351, "lon": -74.0131538 }, + { "lat": 40.7092423, "lon": -74.0131742 }, + { "lat": 40.7095154, "lon": -74.0137981 }, + { "lat": 40.7095225, "lon": -74.0138113 }, + { "lat": 40.7095312, "lon": -74.0138187 }, + { "lat": 40.7095392, "lon": -74.0138226 }, + { "lat": 40.7095494, "lon": -74.0138229 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes" + } +}, +{ + "type": "way", + "id": 890982627, + "bounds": { + "minlat": 40.7010878, + "minlon": -73.9640653, + "maxlat": 40.7015272, + "maxlon": -73.9634968 + }, + "nodes": [ + 8280978683, + 8280978690, + 9776829146, + 8280978684, + 8280978685, + 8280978686, + 8280978689, + 9776829144, + 8280978687 + ], + "geometry": [ + { "lat": 40.7011473, "lon": -73.9634968 }, + { "lat": 40.7011307, "lon": -73.9635191 }, + { "lat": 40.7011226, "lon": -73.9635303 }, + { "lat": 40.7010878, "lon": -73.9635784 }, + { "lat": 40.7013295, "lon": -73.9638870 }, + { "lat": 40.7014627, "lon": -73.9640653 }, + { "lat": 40.7015002, "lon": -73.9640237 }, + { "lat": 40.7015059, "lon": -73.9640134 }, + { "lat": 40.7015272, "lon": -73.9639690 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 890985714, + "bounds": { + "minlat": 40.7012665, + "minlon": -73.9110310, + "maxlat": 40.7015369, + "maxlon": -73.9103861 + }, + "nodes": [ + 8281025687, + 9755788650, + 8281025692, + 8281025688, + 8281025691, + 9755788651, + 8281025690 + ], + "geometry": [ + { "lat": 40.7013385, "lon": -73.9103861 }, + { "lat": 40.7013710, "lon": -73.9104404 }, + { "lat": 40.7013909, "lon": -73.9104737 }, + { "lat": 40.7015369, "lon": -73.9107182 }, + { "lat": 40.7013387, "lon": -73.9109482 }, + { "lat": 40.7013085, "lon": -73.9109832 }, + { "lat": 40.7012665, "lon": -73.9110310 } + ], + "tags": { + "access": "customers", + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 890985715, + "bounds": { + "minlat": 40.7029269, + "minlon": -73.9090361, + "maxlat": 40.7030838, + "maxlon": -73.9087629 + }, + "nodes": [ + 8281025693, + 9762206645, + 8281025696, + 8281025694, + 8281025695 + ], + "geometry": [ + { "lat": 40.7029269, "lon": -73.9087629 }, + { "lat": 40.7029627, "lon": -73.9088291 }, + { "lat": 40.7029832, "lon": -73.9088669 }, + { "lat": 40.7029866, "lon": -73.9088732 }, + { "lat": 40.7030838, "lon": -73.9090361 } + ], + "tags": { + "access": "customers", + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 890990550, + "bounds": { + "minlat": 40.7205724, + "minlon": -73.9343646, + "maxlat": 40.7212337, + "maxlon": -73.9328794 + }, + "nodes": [ + 8281116505, + 8281116506, + 8281116507, + 8281116508, + 8281116509, + 8281116510, + 8281116511, + 8281116512, + 8281116513, + 10689773963, + 5482302933 + ], + "geometry": [ + { "lat": 40.7208381, "lon": -73.9328794 }, + { "lat": 40.7207919, "lon": -73.9330812 }, + { "lat": 40.7212337, "lon": -73.9332542 }, + { "lat": 40.7211116, "lon": -73.9336476 }, + { "lat": 40.7210290, "lon": -73.9340078 }, + { "lat": 40.7209372, "lon": -73.9342928 }, + { "lat": 40.7208555, "lon": -73.9343575 }, + { "lat": 40.7206704, "lon": -73.9342892 }, + { "lat": 40.7205969, "lon": -73.9342605 }, + { "lat": 40.7205849, "lon": -73.9343116 }, + { "lat": 40.7205724, "lon": -73.9343646 } + ], + "tags": { + "access": "no", + "highway": "track" + } +}, +{ + "type": "way", + "id": 890990551, + "bounds": { + "minlat": 40.7248763, + "minlon": -73.9311647, + "maxlat": 40.7258384, + "maxlon": -73.9297850 + }, + "nodes": [ + 8281116514, + 13247193379, + 8281134117, + 8281116515, + 8281116516, + 10581139435, + 10581139436, + 10581139437, + 10581139438 + ], + "geometry": [ + { "lat": 40.7248763, "lon": -73.9311647 }, + { "lat": 40.7249016, "lon": -73.9310872 }, + { "lat": 40.7249108, "lon": -73.9310590 }, + { "lat": 40.7249518, "lon": -73.9309297 }, + { "lat": 40.7249995, "lon": -73.9307550 }, + { "lat": 40.7252107, "lon": -73.9300561 }, + { "lat": 40.7254383, "lon": -73.9297850 }, + { "lat": 40.7258384, "lon": -73.9299883 }, + { "lat": 40.7256307, "lon": -73.9307426 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 891074598, + "bounds": { + "minlat": 40.7127804, + "minlon": -74.0116480, + "maxlat": 40.7132516, + "maxlon": -74.0111089 + }, + "nodes": [ + 10282960425, + 10282960428, + 10282960429, + 8262936481, + 4578218122 + ], + "geometry": [ + { "lat": 40.7132516, "lon": -74.0111089 }, + { "lat": 40.7130618, "lon": -74.0113266 }, + { "lat": 40.7128619, "lon": -74.0115600 }, + { "lat": 40.7128311, "lon": -74.0115953 }, + { "lat": 40.7127804, "lon": -74.0116480 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "foot": "yes", + "highway": "unclassified", + "lanes": "3", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "old_name": "West Broadway", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 891074599, + "bounds": { + "minlat": 40.7133376, + "minlon": -74.0116170, + "maxlat": 40.7136173, + "maxlon": -74.0110084 + }, + "nodes": [ + 42454401, + 8262936476, + 8279851497, + 272194254 + ], + "geometry": [ + { "lat": 40.7133376, "lon": -74.0110084 }, + { "lat": 40.7133823, "lon": -74.0111099 }, + { "lat": 40.7135827, "lon": -74.0115412 }, + { "lat": 40.7136173, "lon": -74.0116170 } + ], + "tags": { + "covered": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "incline": "down", + "lanes": "1", + "lcn": "yes", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Barclay Street", + "name:etymology:wikidata": "Q94355342", + "name:ko": "바클레이 스트리트", + "name:ru": "Баркли-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q14622883" + } +}, +{ + "type": "way", + "id": 891747403, + "bounds": { + "minlat": 40.7162753, + "minlon": -73.9350925, + "maxlat": 40.7164572, + "maxlon": -73.9343690 + }, + "nodes": [ + 8288143706, + 9755788657, + 8288143708, + 8288143707 + ], + "geometry": [ + { "lat": 40.7164572, "lon": -73.9343690 }, + { "lat": 40.7164267, "lon": -73.9344901 }, + { "lat": 40.7164195, "lon": -73.9345189 }, + { "lat": 40.7162753, "lon": -73.9350925 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 891757840, + "bounds": { + "minlat": 40.7290445, + "minlon": -74.0117243, + "maxlat": 40.7301750, + "maxlon": -74.0115598 + }, + "nodes": [ + 8288262776, + 8288262777 + ], + "geometry": [ + { "lat": 40.7290445, "lon": -74.0117243 }, + { "lat": 40.7301750, "lon": -74.0115598 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 891757841, + "bounds": { + "minlat": 40.7301550, + "minlon": -74.0137104, + "maxlat": 40.7305210, + "maxlon": -74.0113179 + }, + "nodes": [ + 8288262778, + 8288262777, + 8288262780, + 8288262779 + ], + "geometry": [ + { "lat": 40.7301550, "lon": -74.0113179 }, + { "lat": 40.7301750, "lon": -74.0115598 }, + { "lat": 40.7303537, "lon": -74.0137104 }, + { "lat": 40.7305210, "lon": -74.0136861 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 891757842, + "bounds": { + "minlat": 40.7288548, + "minlon": -74.0138999, + "maxlat": 40.7290096, + "maxlon": -74.0120234 + }, + "nodes": [ + 2562448028, + 8288262782 + ], + "geometry": [ + { "lat": 40.7288548, "lon": -74.0120234 }, + { "lat": 40.7290096, "lon": -74.0138999 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 891757843, + "bounds": { + "minlat": 40.7285933, + "minlon": -74.0141663, + "maxlat": 40.7287507, + "maxlon": -74.0139358 + }, + "nodes": [ + 5526905147, + 8288262783, + 246879398 + ], + "geometry": [ + { "lat": 40.7287507, "lon": -74.0139358 }, + { "lat": 40.7285933, "lon": -74.0139562 }, + { "lat": 40.7286093, "lon": -74.0141663 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 891757844, + "bounds": { + "minlat": 40.7285074, + "minlon": -74.0139562, + "maxlat": 40.7286641, + "maxlon": -74.0128747 + }, + "nodes": [ + 8288262783, + 8288262784, + 5526905148 + ], + "geometry": [ + { "lat": 40.7285933, "lon": -74.0139562 }, + { "lat": 40.7285074, "lon": -74.0128968 }, + { "lat": 40.7286641, "lon": -74.0128747 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 891757867, + "bounds": { + "minlat": 40.7331306, + "minlon": -74.0112418, + "maxlat": 40.7332357, + "maxlon": -74.0111026 + }, + "nodes": [ + 8288269491, + 8288269492, + 8288269493, + 8288269494, + 8288269606, + 8288269495, + 8288269496, + 8288269476, + 8288269486, + 8288269475, + 8288269487, + 8288269474, + 8288269488, + 8288269473, + 8288269489, + 8288269472, + 8288269490, + 8288269471, + 8288269480, + 8288269481, + 8288269482, + 8288269483, + 8288269484, + 8288269485, + 8288269491 + ], + "geometry": [ + { "lat": 40.7331935, "lon": -74.0111035 }, + { "lat": 40.7332094, "lon": -74.0111114 }, + { "lat": 40.7332226, "lon": -74.0111256 }, + { "lat": 40.7332317, "lon": -74.0111446 }, + { "lat": 40.7332341, "lon": -74.0111576 }, + { "lat": 40.7332357, "lon": -74.0111664 }, + { "lat": 40.7332344, "lon": -74.0111887 }, + { "lat": 40.7332277, "lon": -74.0112094 }, + { "lat": 40.7332210, "lon": -74.0112206 }, + { "lat": 40.7332128, "lon": -74.0112297 }, + { "lat": 40.7332023, "lon": -74.0112371 }, + { "lat": 40.7331908, "lon": -74.0112411 }, + { "lat": 40.7331794, "lon": -74.0112418 }, + { "lat": 40.7331683, "lon": -74.0112392 }, + { "lat": 40.7331581, "lon": -74.0112338 }, + { "lat": 40.7331490, "lon": -74.0112257 }, + { "lat": 40.7331417, "lon": -74.0112159 }, + { "lat": 40.7331360, "lon": -74.0112045 }, + { "lat": 40.7331306, "lon": -74.0111832 }, + { "lat": 40.7331306, "lon": -74.0111608 }, + { "lat": 40.7331360, "lon": -74.0111395 }, + { "lat": 40.7331462, "lon": -74.0111216 }, + { "lat": 40.7331602, "lon": -74.0111088 }, + { "lat": 40.7331765, "lon": -74.0111026 }, + { "lat": 40.7331935, "lon": -74.0111035 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 891757914, + "bounds": { + "minlat": 40.7432047, + "minlon": -74.0089305, + "maxlat": 40.7439169, + "maxlon": -74.0087999 + }, + "nodes": [ + 12161932041, + 10220180392, + 8288270018, + 12098102321 + ], + "geometry": [ + { "lat": 40.7439169, "lon": -74.0087999 }, + { "lat": 40.7435173, "lon": -74.0088718 }, + { "lat": 40.7434511, "lon": -74.0088839 }, + { "lat": 40.7432047, "lon": -74.0089305 } + ], + "tags": { + "destination": "Pier 57", + "highway": "service", + "lane_markings": "yes", + "lanes": "2", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 891757920, + "bounds": { + "minlat": 40.7439619, + "minlon": -74.0087900, + "maxlat": 40.7443329, + "maxlon": -74.0085161 + }, + "nodes": [ + 8288270009, + 12161232329, + 12161232328, + 12161232327, + 8288270017, + 10220180394, + 8288270010, + 10220180393, + 8288270011 + ], + "geometry": [ + { "lat": 40.7443329, "lon": -74.0085161 }, + { "lat": 40.7441502, "lon": -74.0086499 }, + { "lat": 40.7441208, "lon": -74.0086715 }, + { "lat": 40.7440993, "lon": -74.0086896 }, + { "lat": 40.7440587, "lon": -74.0087302 }, + { "lat": 40.7440328, "lon": -74.0087525 }, + { "lat": 40.7440129, "lon": -74.0087671 }, + { "lat": 40.7439896, "lon": -74.0087788 }, + { "lat": 40.7439619, "lon": -74.0087900 } + ], + "tags": { + "destination": "Pier 57", + "highway": "service", + "lane_markings": "yes", + "lanes": "2", + "maxspeed:advisory": "15 mph", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 891757922, + "bounds": { + "minlat": 40.7428430, + "minlon": -74.0090754, + "maxlat": 40.7448909, + "maxlon": -74.0086363 + }, + "nodes": [ + 2702857367, + 4872623849, + 7759665084, + 8288270066, + 9440836499, + 8288270067, + 8288270068, + 8288270076, + 8288270075, + 8288270069, + 8288270070, + 8288270071, + 8288270058, + 8288270057, + 8288270056, + 8288270055, + 8288270054, + 8288270053, + 8288270052, + 8288270051, + 8288270050, + 8288270049, + 8288270021, + 4892649493, + 7779299576, + 4892649495, + 4892649492, + 8288270072, + 2702857621, + 8288270074, + 246525439, + 8288270008, + 8288270007, + 8288270006, + 8288270005, + 8288270004, + 246525429, + 8288270073, + 2702857571, + 3302065023, + 11461252539, + 11461252537, + 2702857367 + ], + "geometry": [ + { "lat": 40.7428994, "lon": -74.0090754 }, + { "lat": 40.7428713, "lon": -74.0090685 }, + { "lat": 40.7428430, "lon": -74.0090615 }, + { "lat": 40.7428531, "lon": -74.0090544 }, + { "lat": 40.7428696, "lon": -74.0090345 }, + { "lat": 40.7428784, "lon": -74.0090285 }, + { "lat": 40.7429106, "lon": -74.0090217 }, + { "lat": 40.7430905, "lon": -74.0089889 }, + { "lat": 40.7434550, "lon": -74.0089221 }, + { "lat": 40.7439481, "lon": -74.0088318 }, + { "lat": 40.7440203, "lon": -74.0088190 }, + { "lat": 40.7440500, "lon": -74.0088068 }, + { "lat": 40.7440653, "lon": -74.0087879 }, + { "lat": 40.7440838, "lon": -74.0088082 }, + { "lat": 40.7441314, "lon": -74.0088284 }, + { "lat": 40.7441739, "lon": -74.0088305 }, + { "lat": 40.7444238, "lon": -74.0087683 }, + { "lat": 40.7444791, "lon": -74.0087521 }, + { "lat": 40.7445441, "lon": -74.0087162 }, + { "lat": 40.7446071, "lon": -74.0086791 }, + { "lat": 40.7446117, "lon": -74.0086689 }, + { "lat": 40.7446102, "lon": -74.0086547 }, + { "lat": 40.7446401, "lon": -74.0086446 }, + { "lat": 40.7446634, "lon": -74.0086363 }, + { "lat": 40.7446652, "lon": -74.0086465 }, + { "lat": 40.7446720, "lon": -74.0086537 }, + { "lat": 40.7448283, "lon": -74.0086815 }, + { "lat": 40.7448642, "lon": -74.0086811 }, + { "lat": 40.7448781, "lon": -74.0086755 }, + { "lat": 40.7448843, "lon": -74.0086997 }, + { "lat": 40.7448909, "lon": -74.0087258 }, + { "lat": 40.7448622, "lon": -74.0087291 }, + { "lat": 40.7448640, "lon": -74.0087642 }, + { "lat": 40.7448593, "lon": -74.0087845 }, + { "lat": 40.7448502, "lon": -74.0087975 }, + { "lat": 40.7448361, "lon": -74.0088063 }, + { "lat": 40.7439708, "lon": -74.0089642 }, + { "lat": 40.7439237, "lon": -74.0089713 }, + { "lat": 40.7439172, "lon": -74.0089005 }, + { "lat": 40.7432531, "lon": -74.0090176 }, + { "lat": 40.7431280, "lon": -74.0090380 }, + { "lat": 40.7429595, "lon": -74.0090656 }, + { "lat": 40.7428994, "lon": -74.0090754 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "horse": "no", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 891763546, + "bounds": { + "minlat": 40.7746525, + "minlon": -73.9163301, + "maxlat": 40.7751377, + "maxlon": -73.9156405 + }, + "nodes": [ + 8288329062, + 8288329065, + 8288329063, + 8288329072, + 8288329066, + 8288329064 + ], + "geometry": [ + { "lat": 40.7746525, "lon": -73.9156405 }, + { "lat": 40.7746972, "lon": -73.9157062 }, + { "lat": 40.7748497, "lon": -73.9159306 }, + { "lat": 40.7748997, "lon": -73.9159999 }, + { "lat": 40.7750961, "lon": -73.9162724 }, + { "lat": 40.7751377, "lon": -73.9163301 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 891763547, + "bounds": { + "minlat": 40.7736520, + "minlon": -73.9175310, + "maxlat": 40.7741500, + "maxlon": -73.9168611 + }, + "nodes": [ + 8288329067, + 8288329070, + 8288329071, + 8288329069, + 8288329068 + ], + "geometry": [ + { "lat": 40.7741500, "lon": -73.9175310 }, + { "lat": 40.7741096, "lon": -73.9174767 }, + { "lat": 40.7739097, "lon": -73.9172079 }, + { "lat": 40.7736999, "lon": -73.9169256 }, + { "lat": 40.7736520, "lon": -73.9168611 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 891763548, + "bounds": { + "minlat": 40.7739097, + "minlon": -73.9172079, + "maxlat": 40.7748997, + "maxlon": -73.9159999 + }, + "nodes": [ + 8288329071, + 8288329072 + ], + "geometry": [ + { "lat": 40.7739097, "lon": -73.9172079 }, + { "lat": 40.7748997, "lon": -73.9159999 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 891763549, + "bounds": { + "minlat": 40.7748174, + "minlon": -73.9186902, + "maxlat": 40.7753025, + "maxlon": -73.9180055 + }, + "nodes": [ + 8288329082, + 8288329075, + 8288329080, + 8288329074, + 8288329073 + ], + "geometry": [ + { "lat": 40.7753025, "lon": -73.9186902 }, + { "lat": 40.7752608, "lon": -73.9186313 }, + { "lat": 40.7750581, "lon": -73.9183453 }, + { "lat": 40.7748638, "lon": -73.9180710 }, + { "lat": 40.7748174, "lon": -73.9180055 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 891763550, + "bounds": { + "minlat": 40.7758713, + "minlon": -73.9174118, + "maxlat": 40.7763510, + "maxlon": -73.9167195 + }, + "nodes": [ + 8288329076, + 8288329079, + 8288329081, + 8288329078, + 8288329077 + ], + "geometry": [ + { "lat": 40.7763510, "lon": -73.9174118 }, + { "lat": 40.7763128, "lon": -73.9173566 }, + { "lat": 40.7761195, "lon": -73.9170777 }, + { "lat": 40.7759140, "lon": -73.9167811 }, + { "lat": 40.7758713, "lon": -73.9167195 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 891763551, + "bounds": { + "minlat": 40.7750581, + "minlon": -73.9183453, + "maxlat": 40.7761195, + "maxlon": -73.9170777 + }, + "nodes": [ + 8288329080, + 8288329081 + ], + "geometry": [ + { "lat": 40.7750581, "lon": -73.9183453 }, + { "lat": 40.7761195, "lon": -73.9170777 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 891763552, + "bounds": { + "minlat": 40.7753025, + "minlon": -73.9189619, + "maxlat": 40.7764755, + "maxlon": -73.9174901 + }, + "nodes": [ + 8288329082, + 8288329091, + 8288329083, + 8288329084, + 8288329085, + 8288329086, + 8288329087, + 8288329088, + 8288329090, + 8288329089 + ], + "geometry": [ + { "lat": 40.7753025, "lon": -73.9186902 }, + { "lat": 40.7753488, "lon": -73.9187552 }, + { "lat": 40.7755037, "lon": -73.9189519 }, + { "lat": 40.7755196, "lon": -73.9189619 }, + { "lat": 40.7760732, "lon": -73.9182781 }, + { "lat": 40.7764672, "lon": -73.9177977 }, + { "lat": 40.7764755, "lon": -73.9177722 }, + { "lat": 40.7764707, "lon": -73.9177395 }, + { "lat": 40.7763346, "lon": -73.9175550 }, + { "lat": 40.7762868, "lon": -73.9174901 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 891763553, + "bounds": { + "minlat": 40.7756256, + "minlon": -73.9193615, + "maxlat": 40.7767851, + "maxlon": -73.9179191 + }, + "nodes": [ + 8288329092, + 8288329102, + 8288329093, + 8288329094, + 8288329095, + 8288329096, + 8288329097, + 8288329098, + 8288329099, + 8288329100, + 8288329103, + 8288329101 + ], + "geometry": [ + { "lat": 40.7767851, "lon": -73.9181585 }, + { "lat": 40.7767449, "lon": -73.9181071 }, + { "lat": 40.7766029, "lon": -73.9179255 }, + { "lat": 40.7765850, "lon": -73.9179191 }, + { "lat": 40.7765499, "lon": -73.9179391 }, + { "lat": 40.7762872, "lon": -73.9182706 }, + { "lat": 40.7757047, "lon": -73.9189762 }, + { "lat": 40.7756435, "lon": -73.9190543 }, + { "lat": 40.7756256, "lon": -73.9190843 }, + { "lat": 40.7756284, "lon": -73.9191288 }, + { "lat": 40.7757599, "lon": -73.9193092 }, + { "lat": 40.7757980, "lon": -73.9193615 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 891763554, + "bounds": { + "minlat": 40.7756996, + "minlon": -73.9197369, + "maxlat": 40.7769774, + "maxlon": -73.9181490 + }, + "nodes": [ + 8288329104, + 8288329114, + 8288329105, + 8288329106, + 8288329107, + 8288329108, + 8288329109, + 8288329110, + 8288329111, + 8288329113, + 8288329112 + ], + "geometry": [ + { "lat": 40.7756996, "lon": -73.9194815 }, + { "lat": 40.7757471, "lon": -73.9195468 }, + { "lat": 40.7758853, "lon": -73.9197369 }, + { "lat": 40.7759032, "lon": -73.9197294 }, + { "lat": 40.7759770, "lon": -73.9196598 }, + { "lat": 40.7765182, "lon": -73.9189987 }, + { "lat": 40.7769652, "lon": -73.9184480 }, + { "lat": 40.7769766, "lon": -73.9184320 }, + { "lat": 40.7769774, "lon": -73.9184063 }, + { "lat": 40.7768386, "lon": -73.9182128 }, + { "lat": 40.7767929, "lon": -73.9181490 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 891763564, + "bounds": { + "minlat": 40.7295211, + "minlon": -73.9471185, + "maxlat": 40.7298399, + "maxlon": -73.9461354 + }, + "nodes": [ + 8288333629, + 9788925616, + 8288333630, + 8288333633, + 8288333631, + 9788947243, + 8288333632 + ], + "geometry": [ + { "lat": 40.7295211, "lon": -73.9471185 }, + { "lat": 40.7295429, "lon": -73.9470525 }, + { "lat": 40.7295501, "lon": -73.9470307 }, + { "lat": 40.7296273, "lon": -73.9467953 }, + { "lat": 40.7298093, "lon": -73.9462405 }, + { "lat": 40.7298143, "lon": -73.9462235 }, + { "lat": 40.7298399, "lon": -73.9461354 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 891764008, + "bounds": { + "minlat": 40.7253592, + "minlon": -73.9166018, + "maxlat": 40.7257916, + "maxlon": -73.9157898 + }, + "nodes": [ + 8288327039, + 13250172727, + 8288327040, + 8288327049, + 8288327041, + 8288327042, + 8288327043, + 8288327044, + 8288327045, + 8288327046, + 8288327047, + 8288327048, + 8288327049 + ], + "geometry": [ + { "lat": 40.7253592, "lon": -73.9166018 }, + { "lat": 40.7254339, "lon": -73.9165514 }, + { "lat": 40.7254737, "lon": -73.9165251 }, + { "lat": 40.7256048, "lon": -73.9164101 }, + { "lat": 40.7257620, "lon": -73.9162721 }, + { "lat": 40.7257903, "lon": -73.9161787 }, + { "lat": 40.7257916, "lon": -73.9161023 }, + { "lat": 40.7257594, "lon": -73.9160225 }, + { "lat": 40.7256835, "lon": -73.9158764 }, + { "lat": 40.7255304, "lon": -73.9157898 }, + { "lat": 40.7254197, "lon": -73.9158968 }, + { "lat": 40.7254042, "lon": -73.9159987 }, + { "lat": 40.7256048, "lon": -73.9164101 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 891765560, + "bounds": { + "minlat": 40.7120848, + "minlon": -73.9642622, + "maxlat": 40.7123318, + "maxlon": -73.9641129 + }, + "nodes": [ + 8288353920, + 9767549609, + 8288353921, + 8288353922 + ], + "geometry": [ + { "lat": 40.7123318, "lon": -73.9641129 }, + { "lat": 40.7122818, "lon": -73.9641415 }, + { "lat": 40.7122672, "lon": -73.9641499 }, + { "lat": 40.7120848, "lon": -73.9642622 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 891767616, + "bounds": { + "minlat": 40.7526363, + "minlon": -73.9108988, + "maxlat": 40.7528667, + "maxlon": -73.9103115 + }, + "nodes": [ + 277136465, + 8593722414, + 8288365773, + 8288365785, + 8288365774, + 8288365775, + 8288365776, + 8288365777, + 8288365782 + ], + "geometry": [ + { "lat": 40.7526487, "lon": -73.9103115 }, + { "lat": 40.7526409, "lon": -73.9104059 }, + { "lat": 40.7526363, "lon": -73.9104311 }, + { "lat": 40.7526463, "lon": -73.9105483 }, + { "lat": 40.7526531, "lon": -73.9106283 }, + { "lat": 40.7527256, "lon": -73.9108437 }, + { "lat": 40.7527421, "lon": -73.9108829 }, + { "lat": 40.7527755, "lon": -73.9108988 }, + { "lat": 40.7528667, "lon": -73.9108813 } + ], + "tags": { + "access": "customers", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 891767617, + "bounds": { + "minlat": 40.7528388, + "minlon": -73.9108813, + "maxlat": 40.7529888, + "maxlon": -73.9106835 + }, + "nodes": [ + 8288365779, + 8288365780, + 8288365781, + 8288365782 + ], + "geometry": [ + { "lat": 40.7529888, "lon": -73.9106835 }, + { "lat": 40.7528761, "lon": -73.9106917 }, + { "lat": 40.7528388, "lon": -73.9107182 }, + { "lat": 40.7528667, "lon": -73.9108813 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 891767618, + "bounds": { + "minlat": 40.7526463, + "minlon": -73.9105483, + "maxlat": 40.7528046, + "maxlon": -73.9104791 + }, + "nodes": [ + 8288365783, + 8288365784, + 8288365785 + ], + "geometry": [ + { "lat": 40.7528046, "lon": -73.9104791 }, + { "lat": 40.7527659, "lon": -73.9105123 }, + { "lat": 40.7526463, "lon": -73.9105483 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 891768982, + "bounds": { + "minlat": 40.7228170, + "minlon": -73.9153694, + "maxlat": 40.7241371, + "maxlon": -73.9141147 + }, + "nodes": [ + 8288388976, + 8288388977, + 8288388978, + 8288388979, + 8288388980, + 8288388981 + ], + "geometry": [ + { "lat": 40.7228170, "lon": -73.9141147 }, + { "lat": 40.7229638, "lon": -73.9142637 }, + { "lat": 40.7232512, "lon": -73.9144909 }, + { "lat": 40.7232919, "lon": -73.9145661 }, + { "lat": 40.7238647, "lon": -73.9151030 }, + { "lat": 40.7241371, "lon": -73.9153694 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 891768983, + "bounds": { + "minlat": 40.7220635, + "minlon": -73.9169065, + "maxlat": 40.7235756, + "maxlon": -73.9164880 + }, + "nodes": [ + 8288388982, + 8288388983, + 8288388984, + 8288388985, + 8288388986 + ], + "geometry": [ + { "lat": 40.7220635, "lon": -73.9169065 }, + { "lat": 40.7221486, "lon": -73.9168748 }, + { "lat": 40.7227913, "lon": -73.9166572 }, + { "lat": 40.7228739, "lon": -73.9166946 }, + { "lat": 40.7235756, "lon": -73.9164880 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 891789131, + "bounds": { + "minlat": 40.7474053, + "minlon": -74.0082617, + "maxlat": 40.7474134, + "maxlon": -74.0081882 + }, + "nodes": [ + 8288560708, + 8288560710, + 8288560709 + ], + "geometry": [ + { "lat": 40.7474053, "lon": -74.0081882 }, + { "lat": 40.7474115, "lon": -74.0082455 }, + { "lat": 40.7474134, "lon": -74.0082617 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 891789132, + "bounds": { + "minlat": 40.7464713, + "minlon": -74.0084273, + "maxlat": 40.7464810, + "maxlon": -74.0083307 + }, + "nodes": [ + 8288560711, + 8288560713, + 8288560712 + ], + "geometry": [ + { "lat": 40.7464713, "lon": -74.0083307 }, + { "lat": 40.7464788, "lon": -74.0084061 }, + { "lat": 40.7464810, "lon": -74.0084273 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 891789133, + "bounds": { + "minlat": 40.7454440, + "minlon": -74.0086172, + "maxlat": 40.7454498, + "maxlon": -74.0085669 + }, + "nodes": [ + 12096650294, + 8288560716, + 8288560715 + ], + "geometry": [ + { "lat": 40.7454440, "lon": -74.0085669 }, + { "lat": 40.7454464, "lon": -74.0085886 }, + { "lat": 40.7454498, "lon": -74.0086172 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 891812646, + "bounds": { + "minlat": 40.7110405, + "minlon": -73.9912579, + "maxlat": 40.7116955, + "maxlon": -73.9911657 + }, + "nodes": [ + 8288820796, + 8310246649, + 8288820798, + 8288820797 + ], + "geometry": [ + { "lat": 40.7110405, "lon": -73.9911657 }, + { "lat": 40.7111124, "lon": -73.9911758 }, + { "lat": 40.7111434, "lon": -73.9911802 }, + { "lat": 40.7116955, "lon": -73.9912579 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 891831004, + "bounds": { + "minlat": 40.7154096, + "minlon": -73.9314118, + "maxlat": 40.7162411, + "maxlon": -73.9310639 + }, + "nodes": [ + 8288989465, + 8288989466, + 8288989467 + ], + "geometry": [ + { "lat": 40.7162411, "lon": -73.9314118 }, + { "lat": 40.7161559, "lon": -73.9313748 }, + { "lat": 40.7154096, "lon": -73.9310639 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 891831005, + "bounds": { + "minlat": 40.7176626, + "minlon": -73.9310640, + "maxlat": 40.7181538, + "maxlon": -73.9308646 + }, + "nodes": [ + 8288989468, + 9937797980, + 8288989469, + 8288989470 + ], + "geometry": [ + { "lat": 40.7181538, "lon": -73.9310640 }, + { "lat": 40.7180676, "lon": -73.9310296 }, + { "lat": 40.7180383, "lon": -73.9310179 }, + { "lat": 40.7176626, "lon": -73.9308646 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 891849518, + "bounds": { + "minlat": 40.7147290, + "minlon": -73.9782751, + "maxlat": 40.7150225, + "maxlon": -73.9777130 + }, + "nodes": [ + 13164899091, + 8289163621, + 8289163622 + ], + "geometry": [ + { "lat": 40.7150225, "lon": -73.9782149 }, + { "lat": 40.7148979, "lon": -73.9782751 }, + { "lat": 40.7147290, "lon": -73.9777130 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 891853465, + "bounds": { + "minlat": 40.7011714, + "minlon": -73.9770193, + "maxlat": 40.7021986, + "maxlon": -73.9763474 + }, + "nodes": [ + 8289191649, + 8289191650, + 8289191651, + 8289191652, + 8289191653, + 8289191654, + 42488910 + ], + "geometry": [ + { "lat": 40.7011714, "lon": -73.9770193 }, + { "lat": 40.7016618, "lon": -73.9764231 }, + { "lat": 40.7017703, "lon": -73.9763579 }, + { "lat": 40.7018341, "lon": -73.9763474 }, + { "lat": 40.7019506, "lon": -73.9763495 }, + { "lat": 40.7020686, "lon": -73.9764063 }, + { "lat": 40.7021986, "lon": -73.9764850 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 891881293, + "bounds": { + "minlat": 40.8624650, + "minlon": -73.9725407, + "maxlat": 40.8628417, + "maxlon": -73.9722069 + }, + "nodes": [ + 8289448141, + 103094704, + 3531038433 + ], + "geometry": [ + { "lat": 40.8628417, "lon": -73.9722069 }, + { "lat": 40.8627124, "lon": -73.9722898 }, + { "lat": 40.8624650, "lon": -73.9725407 } + ], + "tags": { + "highway": "residential", + "name": "Crest Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 892437481, + "bounds": { + "minlat": 40.8602600, + "minlon": -73.9104246, + "maxlat": 40.8610093, + "maxlon": -73.9097349 + }, + "nodes": [ + 8294524194, + 10170161338, + 8294524214, + 8294524195, + 8294524196, + 8294524197, + 8294524198, + 8294524199, + 8294524200, + 8294524201, + 8294524202, + 8294524203, + 8294524204, + 8294524205, + 8294524206, + 8294524207, + 8294524208, + 8294524209, + 8294524210, + 8294524211, + 8294524212, + 8294524213 + ], + "geometry": [ + { "lat": 40.8609607, "lon": -73.9104246 }, + { "lat": 40.8609011, "lon": -73.9103708 }, + { "lat": 40.8608883, "lon": -73.9103593 }, + { "lat": 40.8608725, "lon": -73.9103403 }, + { "lat": 40.8608627, "lon": -73.9102701 }, + { "lat": 40.8608976, "lon": -73.9102166 }, + { "lat": 40.8609674, "lon": -73.9101539 }, + { "lat": 40.8610093, "lon": -73.9100967 }, + { "lat": 40.8610065, "lon": -73.9100597 }, + { "lat": 40.8609898, "lon": -73.9100099 }, + { "lat": 40.8608418, "lon": -73.9097367 }, + { "lat": 40.8608153, "lon": -73.9097349 }, + { "lat": 40.8607846, "lon": -73.9097497 }, + { "lat": 40.8607315, "lon": -73.9097829 }, + { "lat": 40.8606769, "lon": -73.9098158 }, + { "lat": 40.8606052, "lon": -73.9098808 }, + { "lat": 40.8605834, "lon": -73.9098953 }, + { "lat": 40.8605597, "lon": -73.9099090 }, + { "lat": 40.8605129, "lon": -73.9099170 }, + { "lat": 40.8604728, "lon": -73.9099363 }, + { "lat": 40.8604436, "lon": -73.9099507 }, + { "lat": 40.8602600, "lon": -73.9101349 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 893003424, + "bounds": { + "minlat": 40.8440300, + "minlon": -73.9663728, + "maxlat": 40.8440503, + "maxlon": -73.9659443 + }, + "nodes": [ + 8299696373, + 8299696374, + 8299696375 + ], + "geometry": [ + { "lat": 40.8440300, "lon": -73.9663728 }, + { "lat": 40.8440420, "lon": -73.9661001 }, + { "lat": 40.8440503, "lon": -73.9659443 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 893429421, + "bounds": { + "minlat": 40.7239433, + "minlon": -73.9751545, + "maxlat": 40.7242474, + "maxlon": -73.9750703 + }, + "nodes": [ + 8303782534, + 7145875537, + 8303782535 + ], + "geometry": [ + { "lat": 40.7242474, "lon": -73.9750703 }, + { "lat": 40.7241167, "lon": -73.9751545 }, + { "lat": 40.7239433, "lon": -73.9750943 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 893429422, + "bounds": { + "minlat": 40.7240601, + "minlon": -73.9754048, + "maxlat": 40.7241805, + "maxlon": -73.9753286 + }, + "nodes": [ + 8303782536, + 8303782538, + 8303782537 + ], + "geometry": [ + { "lat": 40.7241805, "lon": -73.9753286 }, + { "lat": 40.7241396, "lon": -73.9753545 }, + { "lat": 40.7240601, "lon": -73.9754048 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 893429423, + "bounds": { + "minlat": 40.7239044, + "minlon": -73.9753545, + "maxlat": 40.7241396, + "maxlon": -73.9752769 + }, + "nodes": [ + 8303782538, + 8303782539 + ], + "geometry": [ + { "lat": 40.7241396, "lon": -73.9753545 }, + { "lat": 40.7239044, "lon": -73.9752769 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 893429424, + "bounds": { + "minlat": 40.7242172, + "minlon": -73.9755980, + "maxlat": 40.7242830, + "maxlon": -73.9754288 + }, + "nodes": [ + 42449038, + 8303782540, + 7145875536, + 7165645298 + ], + "geometry": [ + { "lat": 40.7242830, "lon": -73.9755980 }, + { "lat": 40.7242585, "lon": -73.9755352 }, + { "lat": 40.7242429, "lon": -73.9754953 }, + { "lat": 40.7242172, "lon": -73.9754288 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 893429470, + "bounds": { + "minlat": 40.7728746, + "minlon": -73.9252821, + "maxlat": 40.7730636, + "maxlon": -73.9247812 + }, + "nodes": [ + 8303780727, + 8303780724, + 8303780723, + 8303780722, + 8303780721 + ], + "geometry": [ + { "lat": 40.7730636, "lon": -73.9252821 }, + { "lat": 40.7729962, "lon": -73.9251562 }, + { "lat": 40.7729734, "lon": -73.9250754 }, + { "lat": 40.7729616, "lon": -73.9249734 }, + { "lat": 40.7728746, "lon": -73.9247812 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 893536737, + "bounds": { + "minlat": 40.7207820, + "minlon": -74.0083271, + "maxlat": 40.7218585, + "maxlon": -74.0079922 + }, + "nodes": [ + 4890553369, + 8304498058, + 11492568089, + 8304498059, + 8304498053, + 8304498060, + 8304498061, + 8304498062, + 8304498083, + 8304498063, + 8304498064, + 11494950067, + 11494950068, + 8304498065, + 8304498066, + 11494950069, + 4890553363, + 4890553357, + 4890553346, + 11494950021, + 11494950022, + 4890553385, + 4890553354, + 4890553360, + 4890553356, + 11494950107, + 4890553349, + 11494950106, + 4890553353, + 8304498019, + 4890553348, + 8304498032, + 4890553361, + 11494802066, + 11494802067, + 11494802068, + 4890553377, + 11494949969, + 11494949971, + 11494949972, + 4890553375, + 11494949970, + 4890553367, + 11494802065, + 4890553384, + 11494949978, + 4890553374, + 11494802062, + 4890553366, + 11494802063, + 4890553376, + 11494802064, + 4890553381, + 4890553369 + ], + "geometry": [ + { "lat": 40.7207994, "lon": -74.0082369 }, + { "lat": 40.7207820, "lon": -74.0082408 }, + { "lat": 40.7207901, "lon": -74.0082645 }, + { "lat": 40.7208010, "lon": -74.0082833 }, + { "lat": 40.7208144, "lon": -74.0083012 }, + { "lat": 40.7208338, "lon": -74.0083150 }, + { "lat": 40.7208712, "lon": -74.0083271 }, + { "lat": 40.7209341, "lon": -74.0083210 }, + { "lat": 40.7212620, "lon": -74.0082620 }, + { "lat": 40.7213218, "lon": -74.0082508 }, + { "lat": 40.7218365, "lon": -74.0081625 }, + { "lat": 40.7218466, "lon": -74.0081583 }, + { "lat": 40.7218531, "lon": -74.0081507 }, + { "lat": 40.7218573, "lon": -74.0081407 }, + { "lat": 40.7218585, "lon": -74.0081301 }, + { "lat": 40.7218566, "lon": -74.0081147 }, + { "lat": 40.7218492, "lon": -74.0080929 }, + { "lat": 40.7217918, "lon": -74.0081012 }, + { "lat": 40.7217833, "lon": -74.0080142 }, + { "lat": 40.7217715, "lon": -74.0080155 }, + { "lat": 40.7217700, "lon": -74.0079994 }, + { "lat": 40.7216949, "lon": -74.0080129 }, + { "lat": 40.7216930, "lon": -74.0079922 }, + { "lat": 40.7215941, "lon": -74.0080088 }, + { "lat": 40.7215957, "lon": -74.0080303 }, + { "lat": 40.7215154, "lon": -74.0080421 }, + { "lat": 40.7215168, "lon": -74.0080615 }, + { "lat": 40.7215036, "lon": -74.0080635 }, + { "lat": 40.7215120, "lon": -74.0081486 }, + { "lat": 40.7212803, "lon": -74.0081919 }, + { "lat": 40.7212629, "lon": -74.0081947 }, + { "lat": 40.7212358, "lon": -74.0081990 }, + { "lat": 40.7210875, "lon": -74.0082262 }, + { "lat": 40.7210722, "lon": -74.0082246 }, + { "lat": 40.7210579, "lon": -74.0082130 }, + { "lat": 40.7210502, "lon": -74.0081956 }, + { "lat": 40.7210473, "lon": -74.0081774 }, + { "lat": 40.7210323, "lon": -74.0081798 }, + { "lat": 40.7210137, "lon": -74.0081656 }, + { "lat": 40.7209876, "lon": -74.0081564 }, + { "lat": 40.7209623, "lon": -74.0081571 }, + { "lat": 40.7209366, "lon": -74.0081680 }, + { "lat": 40.7209159, "lon": -74.0081870 }, + { "lat": 40.7208998, "lon": -74.0082043 }, + { "lat": 40.7208849, "lon": -74.0082070 }, + { "lat": 40.7208844, "lon": -74.0082212 }, + { "lat": 40.7208816, "lon": -74.0082376 }, + { "lat": 40.7208744, "lon": -74.0082519 }, + { "lat": 40.7208626, "lon": -74.0082604 }, + { "lat": 40.7208472, "lon": -74.0082634 }, + { "lat": 40.7208335, "lon": -74.0082572 }, + { "lat": 40.7208246, "lon": -74.0082450 }, + { "lat": 40.7208191, "lon": -74.0082326 }, + { "lat": 40.7207994, "lon": -74.0082369 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 893536753, + "bounds": { + "minlat": 40.7204963, + "minlon": -74.0069691, + "maxlat": 40.7210724, + "maxlon": -74.0066306 + }, + "nodes": [ + 4890604123, + 11492543773, + 11492543774, + 11492543775, + 11492543781, + 4890553379, + 11492543779, + 11492543780, + 8304498174, + 8304498175, + 11492543776, + 11492543778, + 11492543777, + 8304498176, + 8304498177, + 8304498178, + 11492543807, + 11492543808, + 11492543809, + 8304498179, + 8304498184, + 8304498180, + 11492543811, + 11492543810, + 11492543806, + 4890553387, + 8304498181, + 4890604121, + 11492567996, + 11492543845, + 4890602320, + 11492543795, + 11492543794, + 11492543793, + 11492543792, + 4890604128, + 11492543791, + 11492543790, + 11492543789, + 11492543788, + 4890604126, + 11492543787, + 11492543786, + 11492543785, + 11492543784, + 4890604122, + 4890604127, + 11492543772, + 4890604123 + ], + "geometry": [ + { "lat": 40.7210639, "lon": -74.0066896 }, + { "lat": 40.7210724, "lon": -74.0066884 }, + { "lat": 40.7210712, "lon": -74.0066773 }, + { "lat": 40.7210679, "lon": -74.0066651 }, + { "lat": 40.7210612, "lon": -74.0066502 }, + { "lat": 40.7210541, "lon": -74.0066404 }, + { "lat": 40.7210477, "lon": -74.0066343 }, + { "lat": 40.7210388, "lon": -74.0066311 }, + { "lat": 40.7210305, "lon": -74.0066306 }, + { "lat": 40.7209703, "lon": -74.0066394 }, + { "lat": 40.7209646, "lon": -74.0066417 }, + { "lat": 40.7209618, "lon": -74.0066463 }, + { "lat": 40.7209606, "lon": -74.0066553 }, + { "lat": 40.7209628, "lon": -74.0066639 }, + { "lat": 40.7209919, "lon": -74.0067185 }, + { "lat": 40.7206131, "lon": -74.0067836 }, + { "lat": 40.7205774, "lon": -74.0067234 }, + { "lat": 40.7205709, "lon": -74.0067156 }, + { "lat": 40.7205647, "lon": -74.0067135 }, + { "lat": 40.7205583, "lon": -74.0067143 }, + { "lat": 40.7205134, "lon": -74.0067223 }, + { "lat": 40.7205047, "lon": -74.0067238 }, + { "lat": 40.7204992, "lon": -74.0067268 }, + { "lat": 40.7204963, "lon": -74.0067344 }, + { "lat": 40.7204965, "lon": -74.0067443 }, + { "lat": 40.7205056, "lon": -74.0068294 }, + { "lat": 40.7205086, "lon": -74.0068572 }, + { "lat": 40.7205150, "lon": -74.0068560 }, + { "lat": 40.7205275, "lon": -74.0068536 }, + { "lat": 40.7205870, "lon": -74.0068420 }, + { "lat": 40.7206161, "lon": -74.0068364 }, + { "lat": 40.7206224, "lon": -74.0068791 }, + { "lat": 40.7206118, "lon": -74.0068881 }, + { "lat": 40.7206325, "lon": -74.0069311 }, + { "lat": 40.7206431, "lon": -74.0069216 }, + { "lat": 40.7206582, "lon": -74.0069433 }, + { "lat": 40.7206820, "lon": -74.0069480 }, + { "lat": 40.7206852, "lon": -74.0069691 }, + { "lat": 40.7207313, "lon": -74.0069575 }, + { "lat": 40.7207283, "lon": -74.0069368 }, + { "lat": 40.7207509, "lon": -74.0069200 }, + { "lat": 40.7207655, "lon": -74.0068926 }, + { "lat": 40.7207771, "lon": -74.0069033 }, + { "lat": 40.7208038, "lon": -74.0068595 }, + { "lat": 40.7207931, "lon": -74.0068491 }, + { "lat": 40.7208281, "lon": -74.0067895 }, + { "lat": 40.7210000, "lon": -74.0067625 }, + { "lat": 40.7210563, "lon": -74.0066908 }, + { "lat": 40.7210639, "lon": -74.0066896 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 893819981, + "bounds": { + "minlat": 40.7642139, + "minlon": -74.0032322, + "maxlat": 40.7647547, + "maxlon": -74.0027121 + }, + "nodes": [ + 1636777174, + 8307463300, + 1636777169, + 1636777190, + 8307463143, + 1636777165, + 246942644, + 8307463144, + 8307463145, + 8307463359, + 8307463146, + 8307463147, + 8307463148, + 8307463149, + 8307463150, + 8307463151, + 8307463152, + 8307463153, + 8307463154, + 8307463358, + 8307463155, + 246942645, + 1636777199, + 1636777204, + 1636777205, + 1636777202, + 1636777196, + 1636777174 + ], + "geometry": [ + { "lat": 40.7646477, "lon": -74.0032322 }, + { "lat": 40.7646325, "lon": -74.0032024 }, + { "lat": 40.7646139, "lon": -74.0031657 }, + { "lat": 40.7646478, "lon": -74.0031395 }, + { "lat": 40.7646641, "lon": -74.0030722 }, + { "lat": 40.7646121, "lon": -74.0029537 }, + { "lat": 40.7643414, "lon": -74.0031474 }, + { "lat": 40.7642139, "lon": -74.0028457 }, + { "lat": 40.7642385, "lon": -74.0028464 }, + { "lat": 40.7642491, "lon": -74.0028446 }, + { "lat": 40.7642751, "lon": -74.0028404 }, + { "lat": 40.7643086, "lon": -74.0028344 }, + { "lat": 40.7643225, "lon": -74.0029756 }, + { "lat": 40.7643834, "lon": -74.0029607 }, + { "lat": 40.7644343, "lon": -74.0029448 }, + { "lat": 40.7644903, "lon": -74.0029204 }, + { "lat": 40.7645483, "lon": -74.0028876 }, + { "lat": 40.7645942, "lon": -74.0028523 }, + { "lat": 40.7645423, "lon": -74.0027460 }, + { "lat": 40.7645598, "lon": -74.0027329 }, + { "lat": 40.7645878, "lon": -74.0027121 }, + { "lat": 40.7646719, "lon": -74.0029101 }, + { "lat": 40.7647443, "lon": -74.0030850 }, + { "lat": 40.7647536, "lon": -74.0031080 }, + { "lat": 40.7647547, "lon": -74.0031353 }, + { "lat": 40.7647464, "lon": -74.0031584 }, + { "lat": 40.7647309, "lon": -74.0031760 }, + { "lat": 40.7646477, "lon": -74.0032322 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 893819995, + "bounds": { + "minlat": 40.7636497, + "minlon": -74.0028464, + "maxlat": 40.7645878, + "maxlon": -74.0010150 + }, + "nodes": [ + 8307463155, + 8307463358, + 8307463154, + 8307463347, + 8307463348, + 8307463349, + 8307463147, + 8307463146, + 8307463359, + 8307463145, + 8307463144, + 2044118297, + 8307463350, + 8307463357, + 8307463351, + 2682173262, + 2682173264, + 2682173268, + 2682173274, + 2682173280, + 2682173288, + 2682173292, + 2682173300, + 2682173302, + 2682173304, + 2682173296, + 2682173290, + 2682173284, + 2682173278, + 2682173276, + 2682173272, + 2682173270, + 2682173266, + 8307463376, + 8307463185, + 8307463202, + 8307463454, + 8307463352, + 8307463453, + 8307463156, + 8307463178, + 8307463356, + 8307463353, + 8307463354, + 2710280879, + 2710280865, + 2710280897, + 2710280910, + 8307463355, + 8307463155 + ], + "geometry": [ + { "lat": 40.7645878, "lon": -74.0027121 }, + { "lat": 40.7645598, "lon": -74.0027329 }, + { "lat": 40.7645423, "lon": -74.0027460 }, + { "lat": 40.7644838, "lon": -74.0027777 }, + { "lat": 40.7644173, "lon": -74.0028025 }, + { "lat": 40.7643491, "lon": -74.0028257 }, + { "lat": 40.7643086, "lon": -74.0028344 }, + { "lat": 40.7642751, "lon": -74.0028404 }, + { "lat": 40.7642491, "lon": -74.0028446 }, + { "lat": 40.7642385, "lon": -74.0028464 }, + { "lat": 40.7642139, "lon": -74.0028457 }, + { "lat": 40.7639952, "lon": -74.0023283 }, + { "lat": 40.7636497, "lon": -74.0014990 }, + { "lat": 40.7636892, "lon": -74.0015049 }, + { "lat": 40.7637063, "lon": -74.0015058 }, + { "lat": 40.7637674, "lon": -74.0014947 }, + { "lat": 40.7638124, "lon": -74.0016714 }, + { "lat": 40.7638518, "lon": -74.0018022 }, + { "lat": 40.7639272, "lon": -74.0019834 }, + { "lat": 40.7639969, "lon": -74.0021126 }, + { "lat": 40.7640914, "lon": -74.0022463 }, + { "lat": 40.7641747, "lon": -74.0023354 }, + { "lat": 40.7642613, "lon": -74.0024260 }, + { "lat": 40.7643558, "lon": -74.0025062 }, + { "lat": 40.7644143, "lon": -74.0024587 }, + { "lat": 40.7642217, "lon": -74.0020058 }, + { "lat": 40.7641254, "lon": -74.0019416 }, + { "lat": 40.7640579, "lon": -74.0018746 }, + { "lat": 40.7639911, "lon": -74.0017976 }, + { "lat": 40.7639269, "lon": -74.0016989 }, + { "lat": 40.7638952, "lon": -74.0016295 }, + { "lat": 40.7638658, "lon": -74.0015488 }, + { "lat": 40.7638464, "lon": -74.0014771 }, + { "lat": 40.7638347, "lon": -74.0014339 }, + { "lat": 40.7638220, "lon": -74.0013865 }, + { "lat": 40.7638147, "lon": -74.0013011 }, + { "lat": 40.7638124, "lon": -74.0012592 }, + { "lat": 40.7638100, "lon": -74.0012137 }, + { "lat": 40.7638108, "lon": -74.0011817 }, + { "lat": 40.7638121, "lon": -74.0011309 }, + { "lat": 40.7638257, "lon": -74.0010446 }, + { "lat": 40.7638470, "lon": -74.0010292 }, + { "lat": 40.7638669, "lon": -74.0010150 }, + { "lat": 40.7639628, "lon": -74.0012408 }, + { "lat": 40.7639621, "lon": -74.0012466 }, + { "lat": 40.7638525, "lon": -74.0013264 }, + { "lat": 40.7640819, "lon": -74.0018718 }, + { "lat": 40.7641915, "lon": -74.0017921 }, + { "lat": 40.7641978, "lon": -74.0017940 }, + { "lat": 40.7645878, "lon": -74.0027121 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 893819999, + "bounds": { + "minlat": 40.7627683, + "minlon": -74.0015058, + "maxlat": 40.7638464, + "maxlon": -74.0000944 + }, + "nodes": [ + 2682173266, + 2682173262, + 8307463351, + 8307463357, + 8307463350, + 5824394258, + 8307463377, + 8307463378, + 8307463379, + 4870298744, + 1329122420, + 8307463407, + 1329122427, + 8307463337, + 8307463338, + 8307463339, + 8307463340, + 8307463341, + 8307463342, + 8307463343, + 8307463403, + 8307463276, + 8307463275, + 8307463274, + 8307463273, + 8307463272, + 8307463271, + 8307463270, + 8307463269, + 8307463268, + 8307463267, + 8307463266, + 8307463265, + 8307463402, + 2710280805, + 2710280801, + 2710280796, + 2710280791, + 2710280783, + 2710280778, + 2710280772, + 2710280763, + 2710280757, + 2710280752, + 2710280750, + 2710280747, + 2710280745, + 2710280742, + 2710280741, + 2710280740, + 2710280738, + 2710280737, + 2710280758, + 8307463380, + 8307463381, + 8307463382, + 8307463383, + 8307463384, + 8307463385, + 8307463386, + 8307463404, + 8307463387, + 8307463388, + 8307463389, + 8307463390, + 8307463391, + 8307463392, + 8307463405, + 8307463393, + 8307463394, + 8307463395, + 8307463406, + 8307463396, + 8307463455, + 8307463397, + 8307463398, + 8307463399, + 8307463456, + 8307463400, + 8307463401, + 8307463191, + 8307463190, + 8307463189, + 8307463188, + 8307463187, + 8307463186, + 8307463185, + 8307463376, + 2682173266 + ], + "geometry": [ + { "lat": 40.7638464, "lon": -74.0014771 }, + { "lat": 40.7637674, "lon": -74.0014947 }, + { "lat": 40.7637063, "lon": -74.0015058 }, + { "lat": 40.7636892, "lon": -74.0015049 }, + { "lat": 40.7636497, "lon": -74.0014990 }, + { "lat": 40.7634286, "lon": -74.0009684 }, + { "lat": 40.7631870, "lon": -74.0011446 }, + { "lat": 40.7631164, "lon": -74.0010865 }, + { "lat": 40.7631027, "lon": -74.0010931 }, + { "lat": 40.7630941, "lon": -74.0010758 }, + { "lat": 40.7630645, "lon": -74.0010053 }, + { "lat": 40.7628687, "lon": -74.0011483 }, + { "lat": 40.7628205, "lon": -74.0011863 }, + { "lat": 40.7627683, "lon": -74.0007581 }, + { "lat": 40.7627962, "lon": -74.0007447 }, + { "lat": 40.7628241, "lon": -74.0007173 }, + { "lat": 40.7628426, "lon": -74.0006884 }, + { "lat": 40.7628520, "lon": -74.0006616 }, + { "lat": 40.7628546, "lon": -74.0006431 }, + { "lat": 40.7628157, "lon": -74.0005841 }, + { "lat": 40.7628263, "lon": -74.0005708 }, + { "lat": 40.7628358, "lon": -74.0005543 }, + { "lat": 40.7628743, "lon": -74.0006049 }, + { "lat": 40.7629119, "lon": -74.0005606 }, + { "lat": 40.7629320, "lon": -74.0005192 }, + { "lat": 40.7629571, "lon": -74.0004684 }, + { "lat": 40.7629844, "lon": -74.0004276 }, + { "lat": 40.7630256, "lon": -74.0003792 }, + { "lat": 40.7630430, "lon": -74.0003437 }, + { "lat": 40.7630739, "lon": -74.0002799 }, + { "lat": 40.7631048, "lon": -74.0002320 }, + { "lat": 40.7631411, "lon": -74.0001925 }, + { "lat": 40.7631836, "lon": -74.0000944 }, + { "lat": 40.7631925, "lon": -74.0001402 }, + { "lat": 40.7632373, "lon": -74.0003699 }, + { "lat": 40.7632060, "lon": -74.0003838 }, + { "lat": 40.7631755, "lon": -74.0004004 }, + { "lat": 40.7631460, "lon": -74.0004199 }, + { "lat": 40.7631176, "lon": -74.0004420 }, + { "lat": 40.7631039, "lon": -74.0004540 }, + { "lat": 40.7630774, "lon": -74.0004798 }, + { "lat": 40.7630523, "lon": -74.0005080 }, + { "lat": 40.7630288, "lon": -74.0005384 }, + { "lat": 40.7630069, "lon": -74.0005710 }, + { "lat": 40.7629868, "lon": -74.0006054 }, + { "lat": 40.7629686, "lon": -74.0006416 }, + { "lat": 40.7629523, "lon": -74.0006793 }, + { "lat": 40.7629381, "lon": -74.0007185 }, + { "lat": 40.7629259, "lon": -74.0007588 }, + { "lat": 40.7629160, "lon": -74.0008002 }, + { "lat": 40.7629082, "lon": -74.0008424 }, + { "lat": 40.7629051, "lon": -74.0008637 }, + { "lat": 40.7630347, "lon": -74.0008944 }, + { "lat": 40.7631100, "lon": -74.0009130 }, + { "lat": 40.7631270, "lon": -74.0008483 }, + { "lat": 40.7631542, "lon": -74.0007820 }, + { "lat": 40.7631923, "lon": -74.0007157 }, + { "lat": 40.7632255, "lon": -74.0006798 }, + { "lat": 40.7632663, "lon": -74.0006509 }, + { "lat": 40.7633014, "lon": -74.0006310 }, + { "lat": 40.7633524, "lon": -74.0006217 }, + { "lat": 40.7633644, "lon": -74.0006195 }, + { "lat": 40.7633844, "lon": -74.0006190 }, + { "lat": 40.7633765, "lon": -74.0005562 }, + { "lat": 40.7634342, "lon": -74.0005677 }, + { "lat": 40.7634939, "lon": -74.0005881 }, + { "lat": 40.7635358, "lon": -74.0006200 }, + { "lat": 40.7635549, "lon": -74.0006467 }, + { "lat": 40.7635690, "lon": -74.0006664 }, + { "lat": 40.7635931, "lon": -74.0007142 }, + { "lat": 40.7636101, "lon": -74.0007710 }, + { "lat": 40.7636129, "lon": -74.0007897 }, + { "lat": 40.7636181, "lon": -74.0008238 }, + { "lat": 40.7636173, "lon": -74.0008589 }, + { "lat": 40.7636169, "lon": -74.0008737 }, + { "lat": 40.7636075, "lon": -74.0009275 }, + { "lat": 40.7635958, "lon": -74.0009703 }, + { "lat": 40.7635713, "lon": -74.0010110 }, + { "lat": 40.7635607, "lon": -74.0010287 }, + { "lat": 40.7635414, "lon": -74.0010526 }, + { "lat": 40.7635728, "lon": -74.0011380 }, + { "lat": 40.7636074, "lon": -74.0012256 }, + { "lat": 40.7636496, "lon": -74.0013099 }, + { "lat": 40.7636807, "lon": -74.0013484 }, + { "lat": 40.7637210, "lon": -74.0013773 }, + { "lat": 40.7637655, "lon": -74.0013899 }, + { "lat": 40.7638220, "lon": -74.0013865 }, + { "lat": 40.7638347, "lon": -74.0014339 }, + { "lat": 40.7638464, "lon": -74.0014771 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 893820003, + "bounds": { + "minlat": 40.7631642, + "minlon": -74.0010446, + "maxlat": 40.7642265, + "maxlon": -73.9990844 + }, + "nodes": [ + 8307463388, + 8307463387, + 8307463404, + 8307463386, + 2710280815, + 2710280805, + 8307463402, + 8307463265, + 8307463264, + 8307463450, + 8307463436, + 8307463437, + 8307463438, + 8307463439, + 8307463440, + 8307463441, + 8307463463, + 8307463442, + 8307463449, + 8307463443, + 246942647, + 297480921, + 246942646, + 8307463353, + 8307463356, + 8307463178, + 8307463177, + 8307463176, + 8307463452, + 8307463444, + 8307463445, + 8307463446, + 8307463447, + 8307463451, + 4152169744, + 4152169742, + 12830389386, + 12830389390, + 4152169738, + 4152169743, + 4152169746, + 8307463448, + 8307463389, + 8307463388 + ], + "geometry": [ + { "lat": 40.7633844, "lon": -74.0006190 }, + { "lat": 40.7633644, "lon": -74.0006195 }, + { "lat": 40.7633524, "lon": -74.0006217 }, + { "lat": 40.7633014, "lon": -74.0006310 }, + { "lat": 40.7632793, "lon": -74.0005312 }, + { "lat": 40.7632373, "lon": -74.0003699 }, + { "lat": 40.7631925, "lon": -74.0001402 }, + { "lat": 40.7631836, "lon": -74.0000944 }, + { "lat": 40.7631642, "lon": -74.0000678 }, + { "lat": 40.7631754, "lon": -74.0000513 }, + { "lat": 40.7632693, "lon": -73.9999122 }, + { "lat": 40.7632879, "lon": -73.9999319 }, + { "lat": 40.7634876, "lon": -73.9996314 }, + { "lat": 40.7635867, "lon": -73.9995323 }, + { "lat": 40.7639019, "lon": -73.9993035 }, + { "lat": 40.7640792, "lon": -73.9991727 }, + { "lat": 40.7640870, "lon": -73.9991670 }, + { "lat": 40.7641998, "lon": -73.9990844 }, + { "lat": 40.7642080, "lon": -73.9991028 }, + { "lat": 40.7642265, "lon": -73.9991442 }, + { "lat": 40.7642145, "lon": -73.9991531 }, + { "lat": 40.7635657, "lon": -73.9996284 }, + { "lat": 40.7634031, "lon": -73.9999232 }, + { "lat": 40.7638669, "lon": -74.0010150 }, + { "lat": 40.7638470, "lon": -74.0010292 }, + { "lat": 40.7638257, "lon": -74.0010446 }, + { "lat": 40.7637264, "lon": -74.0008046 }, + { "lat": 40.7636893, "lon": -74.0008056 }, + { "lat": 40.7636864, "lon": -74.0007871 }, + { "lat": 40.7636815, "lon": -74.0007558 }, + { "lat": 40.7636619, "lon": -74.0006909 }, + { "lat": 40.7636403, "lon": -74.0006415 }, + { "lat": 40.7636037, "lon": -74.0005781 }, + { "lat": 40.7635961, "lon": -74.0005692 }, + { "lat": 40.7635822, "lon": -74.0005530 }, + { "lat": 40.7635994, "lon": -74.0005248 }, + { "lat": 40.7635046, "lon": -74.0002946 }, + { "lat": 40.7635014, "lon": -74.0002869 }, + { "lat": 40.7634928, "lon": -74.0002660 }, + { "lat": 40.7633729, "lon": -73.9999736 }, + { "lat": 40.7633435, "lon": -74.0000273 }, + { "lat": 40.7633088, "lon": -74.0000816 }, + { "lat": 40.7633765, "lon": -74.0005562 }, + { "lat": 40.7633844, "lon": -74.0006190 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 893820028, + "bounds": { + "minlat": 40.7505091, + "minlon": -74.0090036, + "maxlat": 40.7538893, + "maxlon": -74.0074946 + }, + "nodes": [ + 8261122986, + 8307463494, + 8261122964, + 8261122965, + 8261122966, + 8261122967, + 8261122968, + 8261122969, + 8261122970, + 8261122971, + 8261122972, + 8261122973, + 8261122974, + 8261122975, + 8261122976, + 8261122977, + 8261122978, + 8261122979, + 8261122980, + 8261122981, + 8261122982, + 8410391709, + 8307463495, + 8410391712, + 8261122992, + 8261122988, + 8261122989, + 8261122990, + 8261122991, + 8307463496, + 2702857869, + 2702857870, + 8261123027, + 8261123028, + 8261123029, + 8261123030, + 8307463498, + 8261123034, + 8261123033, + 8261123035, + 8307463499, + 246525560, + 2044118332, + 8307463497, + 8410391714, + 6575692613, + 8410391704, + 8410391707, + 1854496131, + 1854496152, + 1854496151, + 8261122983, + 8261122984, + 8261122985, + 8261122986 + ], + "geometry": [ + { "lat": 40.7538799, "lon": -74.0075360 }, + { "lat": 40.7537947, "lon": -74.0075156 }, + { "lat": 40.7537072, "lon": -74.0074946 }, + { "lat": 40.7537001, "lon": -74.0075626 }, + { "lat": 40.7536885, "lon": -74.0076304 }, + { "lat": 40.7536927, "lon": -74.0077080 }, + { "lat": 40.7535983, "lon": -74.0077846 }, + { "lat": 40.7534906, "lon": -74.0078480 }, + { "lat": 40.7532828, "lon": -74.0079234 }, + { "lat": 40.7528438, "lon": -74.0080907 }, + { "lat": 40.7524231, "lon": -74.0082503 }, + { "lat": 40.7523966, "lon": -74.0082076 }, + { "lat": 40.7523519, "lon": -74.0081869 }, + { "lat": 40.7523022, "lon": -74.0081836 }, + { "lat": 40.7522575, "lon": -74.0082011 }, + { "lat": 40.7521540, "lon": -74.0082765 }, + { "lat": 40.7520836, "lon": -74.0083432 }, + { "lat": 40.7520422, "lon": -74.0083738 }, + { "lat": 40.7519892, "lon": -74.0083957 }, + { "lat": 40.7519619, "lon": -74.0084000 }, + { "lat": 40.7518704, "lon": -74.0081825 }, + { "lat": 40.7518579, "lon": -74.0081875 }, + { "lat": 40.7518290, "lon": -74.0081989 }, + { "lat": 40.7518131, "lon": -74.0082051 }, + { "lat": 40.7517987, "lon": -74.0082109 }, + { "lat": 40.7518679, "lon": -74.0084147 }, + { "lat": 40.7518088, "lon": -74.0084212 }, + { "lat": 40.7517487, "lon": -74.0084472 }, + { "lat": 40.7517074, "lon": -74.0082470 }, + { "lat": 40.7516863, "lon": -74.0082656 }, + { "lat": 40.7516534, "lon": -74.0082848 }, + { "lat": 40.7516874, "lon": -74.0084668 }, + { "lat": 40.7517028, "lon": -74.0085271 }, + { "lat": 40.7512566, "lon": -74.0087065 }, + { "lat": 40.7506874, "lon": -74.0086831 }, + { "lat": 40.7505091, "lon": -74.0086636 }, + { "lat": 40.7505341, "lon": -74.0087073 }, + { "lat": 40.7505485, "lon": -74.0087325 }, + { "lat": 40.7510685, "lon": -74.0087598 }, + { "lat": 40.7506352, "lon": -74.0089380 }, + { "lat": 40.7506483, "lon": -74.0089761 }, + { "lat": 40.7506577, "lon": -74.0090036 }, + { "lat": 40.7518783, "lon": -74.0085426 }, + { "lat": 40.7518967, "lon": -74.0085348 }, + { "lat": 40.7519326, "lon": -74.0085215 }, + { "lat": 40.7519387, "lon": -74.0085193 }, + { "lat": 40.7519795, "lon": -74.0085018 }, + { "lat": 40.7520200, "lon": -74.0084856 }, + { "lat": 40.7520283, "lon": -74.0084823 }, + { "lat": 40.7521692, "lon": -74.0084304 }, + { "lat": 40.7523530, "lon": -74.0083627 }, + { "lat": 40.7538893, "lon": -74.0077736 }, + { "lat": 40.7538694, "lon": -74.0076705 }, + { "lat": 40.7538694, "lon": -74.0075978 }, + { "lat": 40.7538799, "lon": -74.0075360 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 893820029, + "bounds": { + "minlat": 40.7505052, + "minlon": -74.0106848, + "maxlat": 40.7513213, + "maxlon": -74.0087325 + }, + "nodes": [ + 8261123034, + 8307463521, + 8261123038, + 8261123037, + 8261123036, + 8261123046, + 8261123045, + 8261123044, + 8261123043, + 8261123042, + 8307463522, + 8261123062, + 8261123061, + 8261123060, + 8261123059, + 8261123058, + 8261123073, + 8261123072, + 8261123071, + 8261123070, + 8261123069, + 8261123068, + 8261123067, + 8261123066, + 8261123065, + 8261123064, + 8261123063, + 8307463523, + 13897939568, + 13897939565, + 13897939567, + 246525560, + 8307463499, + 8261123035, + 8261123034 + ], + "geometry": [ + { "lat": 40.7505485, "lon": -74.0087325 }, + { "lat": 40.7505222, "lon": -74.0087364 }, + { "lat": 40.7505052, "lon": -74.0087390 }, + { "lat": 40.7505150, "lon": -74.0087637 }, + { "lat": 40.7506155, "lon": -74.0090017 }, + { "lat": 40.7508656, "lon": -74.0096075 }, + { "lat": 40.7508538, "lon": -74.0096101 }, + { "lat": 40.7506972, "lon": -74.0095477 }, + { "lat": 40.7506539, "lon": -74.0095191 }, + { "lat": 40.7506312, "lon": -74.0094710 }, + { "lat": 40.7506507, "lon": -74.0095614 }, + { "lat": 40.7506632, "lon": -74.0096192 }, + { "lat": 40.7506721, "lon": -74.0095990 }, + { "lat": 40.7506815, "lon": -74.0095906 }, + { "lat": 40.7507027, "lon": -74.0095958 }, + { "lat": 40.7508930, "lon": -74.0096752 }, + { "lat": 40.7509098, "lon": -74.0096967 }, + { "lat": 40.7512264, "lon": -74.0104537 }, + { "lat": 40.7512289, "lon": -74.0104700 }, + { "lat": 40.7512200, "lon": -74.0104843 }, + { "lat": 40.7512096, "lon": -74.0104889 }, + { "lat": 40.7511539, "lon": -74.0104798 }, + { "lat": 40.7510854, "lon": -74.0104453 }, + { "lat": 40.7510188, "lon": -74.0103932 }, + { "lat": 40.7509562, "lon": -74.0103105 }, + { "lat": 40.7509113, "lon": -74.0102200 }, + { "lat": 40.7506706, "lon": -74.0096426 }, + { "lat": 40.7506469, "lon": -74.0096595 }, + { "lat": 40.7506151, "lon": -74.0096821 }, + { "lat": 40.7510330, "lon": -74.0106848 }, + { "lat": 40.7513213, "lon": -74.0105786 }, + { "lat": 40.7506577, "lon": -74.0090036 }, + { "lat": 40.7506483, "lon": -74.0089761 }, + { "lat": 40.7506352, "lon": -74.0089380 }, + { "lat": 40.7505485, "lon": -74.0087325 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 893820030, + "bounds": { + "minlat": 40.7492411, + "minlon": -74.0098345, + "maxlat": 40.7506706, + "maxlon": -74.0086441 + }, + "nodes": [ + 8261123034, + 8307463521, + 8261123038, + 8261123039, + 8261123040, + 8261123041, + 11062143986, + 11062143987, + 8261123042, + 8307463522, + 8261123062, + 8261123063, + 8307463523, + 13897939568, + 1854496129, + 8307463537, + 8307463524, + 8261123047, + 11062143991, + 11062143990, + 11062143989, + 11062143988, + 11062143992, + 8261123057, + 8261123056, + 8261123055, + 8261123054, + 8261123053, + 8307463525, + 8307463526, + 8261123089, + 8261123090, + 8261123091, + 8261123092, + 8261123093, + 8261123080, + 8307463538, + 8307463527, + 246525561, + 246525562, + 8307463528, + 8307463541, + 8261123130, + 8261123129, + 8261123128, + 8261123127, + 8261123126, + 8261123125, + 8307463529, + 8307463530, + 8307463539, + 8261123123, + 8261123122, + 8261123121, + 8261123120, + 8261123119, + 8261123118, + 8261123117, + 8261123116, + 8261123115, + 8261123114, + 8261123154, + 8307463536, + 8261123105, + 8261123106, + 8261123107, + 8261123108, + 8261123109, + 8261123110, + 8261123111, + 8261123112, + 8261123113, + 8261123095, + 8261123096, + 8261123097, + 8261123098, + 8261123099, + 8261123100, + 8261123101, + 8261123102, + 8261123103, + 8261123104, + 8307463535, + 8307463531, + 8307463532, + 8307463533, + 246579745, + 8307463534, + 2376384605, + 8261123030, + 8307463498, + 8261123034 + ], + "geometry": [ + { "lat": 40.7505485, "lon": -74.0087325 }, + { "lat": 40.7505222, "lon": -74.0087364 }, + { "lat": 40.7505052, "lon": -74.0087390 }, + { "lat": 40.7504924, "lon": -74.0087273 }, + { "lat": 40.7504776, "lon": -74.0087364 }, + { "lat": 40.7504697, "lon": -74.0087598 }, + { "lat": 40.7504736, "lon": -74.0087771 }, + { "lat": 40.7506063, "lon": -74.0093615 }, + { "lat": 40.7506312, "lon": -74.0094710 }, + { "lat": 40.7506507, "lon": -74.0095614 }, + { "lat": 40.7506632, "lon": -74.0096192 }, + { "lat": 40.7506706, "lon": -74.0096426 }, + { "lat": 40.7506469, "lon": -74.0096595 }, + { "lat": 40.7506151, "lon": -74.0096821 }, + { "lat": 40.7503752, "lon": -74.0091066 }, + { "lat": 40.7503932, "lon": -74.0091000 }, + { "lat": 40.7504080, "lon": -74.0090946 }, + { "lat": 40.7505465, "lon": -74.0094321 }, + { "lat": 40.7505494, "lon": -74.0094347 }, + { "lat": 40.7505542, "lon": -74.0094343 }, + { "lat": 40.7505589, "lon": -74.0094298 }, + { "lat": 40.7505621, "lon": -74.0094244 }, + { "lat": 40.7505547, "lon": -74.0093959 }, + { "lat": 40.7504048, "lon": -74.0087938 }, + { "lat": 40.7503900, "lon": -74.0087560 }, + { "lat": 40.7503757, "lon": -74.0087345 }, + { "lat": 40.7503570, "lon": -74.0087280 }, + { "lat": 40.7502702, "lon": -74.0087808 }, + { "lat": 40.7502082, "lon": -74.0088250 }, + { "lat": 40.7501627, "lon": -74.0088599 }, + { "lat": 40.7501401, "lon": -74.0088827 }, + { "lat": 40.7501026, "lon": -74.0089330 }, + { "lat": 40.7500750, "lon": -74.0089748 }, + { "lat": 40.7500480, "lon": -74.0090298 }, + { "lat": 40.7500234, "lon": -74.0090933 }, + { "lat": 40.7500257, "lon": -74.0091738 }, + { "lat": 40.7500255, "lon": -74.0091999 }, + { "lat": 40.7500252, "lon": -74.0092365 }, + { "lat": 40.7499936, "lon": -74.0092482 }, + { "lat": 40.7499766, "lon": -74.0095638 }, + { "lat": 40.7492609, "lon": -74.0098345 }, + { "lat": 40.7492560, "lon": -74.0098042 }, + { "lat": 40.7492411, "lon": -74.0097117 }, + { "lat": 40.7492862, "lon": -74.0096823 }, + { "lat": 40.7493108, "lon": -74.0096653 }, + { "lat": 40.7493430, "lon": -74.0096297 }, + { "lat": 40.7493758, "lon": -74.0096050 }, + { "lat": 40.7494133, "lon": -74.0095895 }, + { "lat": 40.7494583, "lon": -74.0095667 }, + { "lat": 40.7494835, "lon": -74.0095592 }, + { "lat": 40.7494829, "lon": -74.0095343 }, + { "lat": 40.7494818, "lon": -74.0094952 }, + { "lat": 40.7495720, "lon": -74.0094759 }, + { "lat": 40.7496838, "lon": -74.0094821 }, + { "lat": 40.7497588, "lon": -74.0095037 }, + { "lat": 40.7498021, "lon": -74.0095115 }, + { "lat": 40.7498478, "lon": -74.0094968 }, + { "lat": 40.7498906, "lon": -74.0094651 }, + { "lat": 40.7499239, "lon": -74.0094125 }, + { "lat": 40.7499421, "lon": -74.0093460 }, + { "lat": 40.7499790, "lon": -74.0087817 }, + { "lat": 40.7499679, "lon": -74.0087632 }, + { "lat": 40.7500042, "lon": -74.0087558 }, + { "lat": 40.7500949, "lon": -74.0087372 }, + { "lat": 40.7500644, "lon": -74.0087565 }, + { "lat": 40.7500375, "lon": -74.0087852 }, + { "lat": 40.7500234, "lon": -74.0088231 }, + { "lat": 40.7500152, "lon": -74.0088819 }, + { "lat": 40.7500105, "lon": -74.0089686 }, + { "lat": 40.7500111, "lon": -74.0090012 }, + { "lat": 40.7500222, "lon": -74.0090174 }, + { "lat": 40.7500334, "lon": -74.0090081 }, + { "lat": 40.7500392, "lon": -74.0089934 }, + { "lat": 40.7500703, "lon": -74.0089346 }, + { "lat": 40.7501196, "lon": -74.0088703 }, + { "lat": 40.7501753, "lon": -74.0088200 }, + { "lat": 40.7502351, "lon": -74.0087759 }, + { "lat": 40.7502744, "lon": -74.0087565 }, + { "lat": 40.7502873, "lon": -74.0087449 }, + { "lat": 40.7502844, "lon": -74.0087318 }, + { "lat": 40.7502679, "lon": -74.0087333 }, + { "lat": 40.7501272, "lon": -74.0087287 }, + { "lat": 40.7501274, "lon": -74.0087117 }, + { "lat": 40.7501277, "lon": -74.0086738 }, + { "lat": 40.7503544, "lon": -74.0086767 }, + { "lat": 40.7503623, "lon": -74.0086721 }, + { "lat": 40.7503671, "lon": -74.0086623 }, + { "lat": 40.7504420, "lon": -74.0086500 }, + { "lat": 40.7505129, "lon": -74.0086441 }, + { "lat": 40.7505091, "lon": -74.0086636 }, + { "lat": 40.7505341, "lon": -74.0087073 }, + { "lat": 40.7505485, "lon": -74.0087325 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 893820035, + "bounds": { + "minlat": 40.7483935, + "minlon": -74.0112581, + "maxlat": 40.7492609, + "maxlon": -74.0080418 + }, + "nodes": [ + 8261123130, + 8307463586, + 8307463587, + 2921637938, + 2921637937, + 2921637934, + 2921637907, + 8307463588, + 8307463590, + 8307463591, + 2921637926, + 2921637927, + 2921637923, + 8307463571, + 8307463593, + 8307463572, + 2921637788, + 2921637776, + 2921637763, + 2921637760, + 8307463573, + 8307463592, + 8307463574, + 2921637765, + 2921637759, + 2921637750, + 2921637754, + 8307463589, + 8307463575, + 2921637751, + 2921637752, + 2921637746, + 2921637742, + 2921637745, + 8307463585, + 8307463576, + 2376384497, + 2376384494, + 2376384490, + 2921637741, + 2921637743, + 2921637739, + 2921637740, + 8307463584, + 2921637744, + 2921637758, + 8307463583, + 2921637772, + 2921637773, + 2376384513, + 8261123299, + 8261123298, + 8261123297, + 8261123296, + 8307463581, + 8261123221, + 8261123222, + 8261123223, + 8261123224, + 8261123225, + 8261123226, + 8307463580, + 8307463577, + 8307463578, + 2702857860, + 8307463579, + 2702857865, + 2702857866, + 2702857862, + 2702857863, + 8307463582, + 246525563, + 166892894, + 246525578, + 246525620, + 8307463528, + 8307463541, + 8261123130 + ], + "geometry": [ + { "lat": 40.7492411, "lon": -74.0097117 }, + { "lat": 40.7491408, "lon": -74.0097607 }, + { "lat": 40.7490736, "lon": -74.0097922 }, + { "lat": 40.7490304, "lon": -74.0098129 }, + { "lat": 40.7489993, "lon": -74.0098297 }, + { "lat": 40.7489647, "lon": -74.0098434 }, + { "lat": 40.7488309, "lon": -74.0098586 }, + { "lat": 40.7488340, "lon": -74.0098819 }, + { "lat": 40.7488555, "lon": -74.0100440 }, + { "lat": 40.7488826, "lon": -74.0102474 }, + { "lat": 40.7488932, "lon": -74.0103274 }, + { "lat": 40.7489024, "lon": -74.0108709 }, + { "lat": 40.7488690, "lon": -74.0108724 }, + { "lat": 40.7488623, "lon": -74.0108510 }, + { "lat": 40.7488147, "lon": -74.0108672 }, + { "lat": 40.7487563, "lon": -74.0108872 }, + { "lat": 40.7487809, "lon": -74.0110962 }, + { "lat": 40.7487437, "lon": -74.0111159 }, + { "lat": 40.7486703, "lon": -74.0109292 }, + { "lat": 40.7486618, "lon": -74.0107734 }, + { "lat": 40.7487207, "lon": -74.0106479 }, + { "lat": 40.7487030, "lon": -74.0106351 }, + { "lat": 40.7486864, "lon": -74.0106230 }, + { "lat": 40.7486863, "lon": -74.0106499 }, + { "lat": 40.7486544, "lon": -74.0106302 }, + { "lat": 40.7485853, "lon": -74.0100716 }, + { "lat": 40.7486108, "lon": -74.0100660 }, + { "lat": 40.7486232, "lon": -74.0099842 }, + { "lat": 40.7486295, "lon": -74.0099426 }, + { "lat": 40.7485968, "lon": -74.0099286 }, + { "lat": 40.7485980, "lon": -74.0097596 }, + { "lat": 40.7485530, "lon": -74.0097444 }, + { "lat": 40.7485207, "lon": -74.0094628 }, + { "lat": 40.7485461, "lon": -74.0094582 }, + { "lat": 40.7485628, "lon": -74.0094496 }, + { "lat": 40.7485841, "lon": -74.0094385 }, + { "lat": 40.7485731, "lon": -74.0094024 }, + { "lat": 40.7485599, "lon": -74.0093421 }, + { "lat": 40.7485521, "lon": -74.0092899 }, + { "lat": 40.7485103, "lon": -74.0092375 }, + { "lat": 40.7485357, "lon": -74.0091173 }, + { "lat": 40.7484803, "lon": -74.0090625 }, + { "lat": 40.7484988, "lon": -74.0089620 }, + { "lat": 40.7485251, "lon": -74.0089460 }, + { "lat": 40.7485430, "lon": -74.0089352 }, + { "lat": 40.7486537, "lon": -74.0089131 }, + { "lat": 40.7486753, "lon": -74.0089034 }, + { "lat": 40.7487167, "lon": -74.0088847 }, + { "lat": 40.7487201, "lon": -74.0088634 }, + { "lat": 40.7487156, "lon": -74.0088202 }, + { "lat": 40.7487123, "lon": -74.0087879 }, + { "lat": 40.7486684, "lon": -74.0087740 }, + { "lat": 40.7486409, "lon": -74.0086982 }, + { "lat": 40.7486379, "lon": -74.0086240 }, + { "lat": 40.7486278, "lon": -74.0085949 }, + { "lat": 40.7486163, "lon": -74.0085614 }, + { "lat": 40.7485928, "lon": -74.0084439 }, + { "lat": 40.7485735, "lon": -74.0083921 }, + { "lat": 40.7485524, "lon": -74.0083496 }, + { "lat": 40.7485372, "lon": -74.0083164 }, + { "lat": 40.7485296, "lon": -74.0082924 }, + { "lat": 40.7484966, "lon": -74.0082152 }, + { "lat": 40.7484596, "lon": -74.0081285 }, + { "lat": 40.7484247, "lon": -74.0080418 }, + { "lat": 40.7483935, "lon": -74.0080492 }, + { "lat": 40.7484044, "lon": -74.0080769 }, + { "lat": 40.7485379, "lon": -74.0084154 }, + { "lat": 40.7485720, "lon": -74.0087662 }, + { "lat": 40.7484215, "lon": -74.0087917 }, + { "lat": 40.7484277, "lon": -74.0088665 }, + { "lat": 40.7484217, "lon": -74.0089001 }, + { "lat": 40.7484136, "lon": -74.0089453 }, + { "lat": 40.7486529, "lon": -74.0112581 }, + { "lat": 40.7489736, "lon": -74.0112020 }, + { "lat": 40.7489443, "lon": -74.0099542 }, + { "lat": 40.7492609, "lon": -74.0098345 }, + { "lat": 40.7492560, "lon": -74.0098042 }, + { "lat": 40.7492411, "lon": -74.0097117 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 893820053, + "bounds": { + "minlat": 40.7390557, + "minlon": -74.0033852, + "maxlat": 40.7391716, + "maxlon": -74.0032986 + }, + "nodes": [ + 8307463659, + 8307463667, + 8307463660, + 8307463668 + ], + "geometry": [ + { "lat": 40.7391716, "lon": -74.0032986 }, + { "lat": 40.7391057, "lon": -74.0033390 }, + { "lat": 40.7390723, "lon": -74.0033594 }, + { "lat": 40.7390557, "lon": -74.0033852 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 893820054, + "bounds": { + "minlat": 40.7389931, + "minlon": -74.0033852, + "maxlat": 40.7390557, + "maxlon": -74.0032880 + }, + "nodes": [ + 8307463668, + 8307463670, + 8307463669 + ], + "geometry": [ + { "lat": 40.7390557, "lon": -74.0033852 }, + { "lat": 40.7390179, "lon": -74.0033264 }, + { "lat": 40.7389931, "lon": -74.0032880 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 894036017, + "bounds": { + "minlat": 40.7259459, + "minlon": -73.9769727, + "maxlat": 40.7264179, + "maxlon": -73.9758469 + }, + "nodes": [ + 8309479423, + 4301088405, + 8309479421 + ], + "geometry": [ + { "lat": 40.7264179, "lon": -73.9769727 }, + { "lat": 40.7263892, "lon": -73.9769043 }, + { "lat": 40.7259459, "lon": -73.9758469 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "East 11th Street", + "name:ru": "Восточная 11-я стрит", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 894036025, + "bounds": { + "minlat": 40.7255275, + "minlon": -73.9757128, + "maxlat": 40.7258904, + "maxlon": -73.9748286 + }, + "nodes": [ + 8309479430, + 8309479438 + ], + "geometry": [ + { "lat": 40.7258904, "lon": -73.9757128 }, + { "lat": 40.7255275, "lon": -73.9748286 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "East 11th Street", + "name:ru": "Восточная 11-я стрит", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 894118252, + "bounds": { + "minlat": 40.7170836, + "minlon": -73.9798654, + "maxlat": 40.7174648, + "maxlon": -73.9794875 + }, + "nodes": [ + 8310245796, + 8310245817, + 8310245797, + 8310245798 + ], + "geometry": [ + { "lat": 40.7174648, "lon": -73.9797358 }, + { "lat": 40.7174138, "lon": -73.9797605 }, + { "lat": 40.7171966, "lon": -73.9798654 }, + { "lat": 40.7170836, "lon": -73.9794875 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 894118322, + "bounds": { + "minlat": 40.7259372, + "minlon": -73.9821941, + "maxlat": 40.7261888, + "maxlon": -73.9817663 + }, + "nodes": [ + 9530726670, + 8310246112, + 8310246113, + 8310246114, + 8310246115, + 8310246116, + 8310246117, + 8310246118, + 9530726678, + 9530726671, + 9530726672, + 9530726677, + 9530726681, + 9530726673, + 9530726674, + 9530726675, + 9530726679, + 9530726676, + 9530726680, + 9530726670 + ], + "geometry": [ + { "lat": 40.7261616, "lon": -73.9821931 }, + { "lat": 40.7261782, "lon": -73.9821534 }, + { "lat": 40.7261888, "lon": -73.9820604 }, + { "lat": 40.7261880, "lon": -73.9819633 }, + { "lat": 40.7261660, "lon": -73.9818953 }, + { "lat": 40.7261159, "lon": -73.9818232 }, + { "lat": 40.7260454, "lon": -73.9817842 }, + { "lat": 40.7259915, "lon": -73.9817663 }, + { "lat": 40.7259647, "lon": -73.9818159 }, + { "lat": 40.7259469, "lon": -73.9818679 }, + { "lat": 40.7259372, "lon": -73.9819397 }, + { "lat": 40.7259431, "lon": -73.9820052 }, + { "lat": 40.7259577, "lon": -73.9820639 }, + { "lat": 40.7259596, "lon": -73.9820719 }, + { "lat": 40.7259886, "lon": -73.9821202 }, + { "lat": 40.7260329, "lon": -73.9821695 }, + { "lat": 40.7260625, "lon": -73.9821859 }, + { "lat": 40.7260921, "lon": -73.9821929 }, + { "lat": 40.7261233, "lon": -73.9821941 }, + { "lat": 40.7261616, "lon": -73.9821931 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 894118439, + "bounds": { + "minlat": 40.7107689, + "minlon": -73.9840952, + "maxlat": 40.7110499, + "maxlon": -73.9840660 + }, + "nodes": [ + 8310246554, + 8310246562, + 8310246555 + ], + "geometry": [ + { "lat": 40.7107689, "lon": -73.9840660 }, + { "lat": 40.7108222, "lon": -73.9840722 }, + { "lat": 40.7110499, "lon": -73.9840952 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 894412820, + "bounds": { + "minlat": 40.7140682, + "minlon": -73.9533670, + "maxlat": 40.7142042, + "maxlon": -73.9532772 + }, + "nodes": [ + 42476565, + 8121973584, + 2089937767 + ], + "geometry": [ + { "lat": 40.7142042, "lon": -73.9532772 }, + { "lat": 40.7141646, "lon": -73.9533203 }, + { "lat": 40.7140682, "lon": -73.9533670 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meeker", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 894512750, + "bounds": { + "minlat": 40.7384245, + "minlon": -73.9399303, + "maxlat": 40.7387367, + "maxlon": -73.9396640 + }, + "nodes": [ + 8314258579, + 9982287336, + 8314258581, + 9982287335, + 9179086313, + 8314258582, + 8314258585 + ], + "geometry": [ + { "lat": 40.7387367, "lon": -73.9399264 }, + { "lat": 40.7385949, "lon": -73.9399303 }, + { "lat": 40.7385720, "lon": -73.9399267 }, + { "lat": 40.7385530, "lon": -73.9399148 }, + { "lat": 40.7385379, "lon": -73.9399004 }, + { "lat": 40.7385247, "lon": -73.9398793 }, + { "lat": 40.7384245, "lon": -73.9396640 } + ], + "tags": { + "highway": "secondary", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 894512751, + "bounds": { + "minlat": 40.7384935, + "minlon": -73.9400286, + "maxlat": 40.7387367, + "maxlon": -73.9399264 + }, + "nodes": [ + 8314258579, + 9982287334, + 8314258587, + 7761549843 + ], + "geometry": [ + { "lat": 40.7387367, "lon": -73.9399264 }, + { "lat": 40.7385691, "lon": -73.9399957 }, + { "lat": 40.7385356, "lon": -73.9400128 }, + { "lat": 40.7384935, "lon": -73.9400286 } + ], + "tags": { + "highway": "secondary", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 894525520, + "bounds": { + "minlat": 40.8253881, + "minlon": -73.9729984, + "maxlat": 40.8256149, + "maxlon": -73.9723593 + }, + "nodes": [ + 4630812618, + 5362481481 + ], + "geometry": [ + { "lat": 40.8253881, "lon": -73.9723593 }, + { "lat": 40.8256149, "lon": -73.9729984 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 894573942, + "bounds": { + "minlat": 40.7680793, + "minlon": -73.9839438, + "maxlat": 40.7681776, + "maxlon": -73.9838700 + }, + "nodes": [ + 8314977757, + 10075114641, + 8314977758 + ], + "geometry": [ + { "lat": 40.7680793, "lon": -73.9839438 }, + { "lat": 40.7681631, "lon": -73.9838808 }, + { "lat": 40.7681776, "lon": -73.9838700 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 894573943, + "bounds": { + "minlat": 40.7692002, + "minlon": -73.9831475, + "maxlat": 40.7693102, + "maxlon": -73.9830683 + }, + "nodes": [ + 8314977759, + 10075099509, + 8314977760 + ], + "geometry": [ + { "lat": 40.7692002, "lon": -73.9831475 }, + { "lat": 40.7692282, "lon": -73.9831287 }, + { "lat": 40.7693102, "lon": -73.9830683 } + ], + "tags": { + "bicycle": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 894584599, + "bounds": { + "minlat": 40.7849133, + "minlon": -73.9306062, + "maxlat": 40.7850852, + "maxlon": -73.9305466 + }, + "nodes": [ + 3039863365, + 10713117992, + 10713117993, + 10713117994, + 7734633953 + ], + "geometry": [ + { "lat": 40.7849133, "lon": -73.9306062 }, + { "lat": 40.7849577, "lon": -73.9305810 }, + { "lat": 40.7849969, "lon": -73.9305655 }, + { "lat": 40.7850388, "lon": -73.9305507 }, + { "lat": 40.7850852, "lon": -73.9305466 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 894584600, + "bounds": { + "minlat": 40.7846761, + "minlon": -73.9311352, + "maxlat": 40.7848183, + "maxlon": -73.9307576 + }, + "nodes": [ + 3040306541, + 8315031210 + ], + "geometry": [ + { "lat": 40.7848183, "lon": -73.9311352 }, + { "lat": 40.7846761, "lon": -73.9307576 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 894906563, + "bounds": { + "minlat": 40.7446081, + "minlon": -73.9567746, + "maxlat": 40.7447143, + "maxlon": -73.9567401 + }, + "nodes": [ + 8318425490, + 8318425491 + ], + "geometry": [ + { "lat": 40.7447143, "lon": -73.9567401 }, + { "lat": 40.7446081, "lon": -73.9567746 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 894927965, + "bounds": { + "minlat": 40.7569755, + "minlon": -73.9835588, + "maxlat": 40.7570948, + "maxlon": -73.9834777 + }, + "nodes": [ + 8318633102, + 8318633107, + 8318633103 + ], + "geometry": [ + { "lat": 40.7569755, "lon": -73.9835588 }, + { "lat": 40.7570353, "lon": -73.9835181 }, + { "lat": 40.7570948, "lon": -73.9834777 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 894927966, + "bounds": { + "minlat": 40.7574848, + "minlon": -73.9827717, + "maxlat": 40.7575793, + "maxlon": -73.9827028 + }, + "nodes": [ + 8318633104, + 8318633106, + 8318633105 + ], + "geometry": [ + { "lat": 40.7575793, "lon": -73.9827028 }, + { "lat": 40.7575310, "lon": -73.9827380 }, + { "lat": 40.7574848, "lon": -73.9827717 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 894927967, + "bounds": { + "minlat": 40.7610338, + "minlon": -73.9814210, + "maxlat": 40.7611141, + "maxlon": -73.9813648 + }, + "nodes": [ + 8318633108, + 11198923669, + 8318633109 + ], + "geometry": [ + { "lat": 40.7611141, "lon": -73.9813648 }, + { "lat": 40.7610518, "lon": -73.9814085 }, + { "lat": 40.7610338, "lon": -73.9814210 } + ], + "tags": { + "highway": "service", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 894929672, + "bounds": { + "minlat": 40.7574007, + "minlon": -73.9982716, + "maxlat": 40.7574671, + "maxlon": -73.9982200 + }, + "nodes": [ + 8318644137, + 9421943158, + 8318644138 + ], + "geometry": [ + { "lat": 40.7574671, "lon": -73.9982200 }, + { "lat": 40.7574282, "lon": -73.9982502 }, + { "lat": 40.7574007, "lon": -73.9982716 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 894947237, + "bounds": { + "minlat": 40.7147477, + "minlon": -74.0043380, + "maxlat": 40.7150992, + "maxlon": -74.0040459 + }, + "nodes": [ + 1253070923, + 8318798000, + 8318797999 + ], + "geometry": [ + { "lat": 40.7147477, "lon": -74.0043380 }, + { "lat": 40.7148025, "lon": -74.0042925 }, + { "lat": 40.7150992, "lon": -74.0040459 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 894964591, + "bounds": { + "minlat": 40.8009993, + "minlon": -74.0135360, + "maxlat": 40.8011582, + "maxlon": -74.0132072 + }, + "nodes": [ + 8318955062, + 8318955063, + 8318955069, + 8318955064, + 8318955065 + ], + "geometry": [ + { "lat": 40.8011582, "lon": -74.0135360 }, + { "lat": 40.8011169, "lon": -74.0134279 }, + { "lat": 40.8010761, "lon": -74.0133235 }, + { "lat": 40.8010280, "lon": -74.0132072 }, + { "lat": 40.8009993, "lon": -74.0132261 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 894964592, + "bounds": { + "minlat": 40.8010445, + "minlon": -74.0133457, + "maxlat": 40.8010761, + "maxlon": -74.0133235 + }, + "nodes": [ + 8318955069, + 8318955072 + ], + "geometry": [ + { "lat": 40.8010761, "lon": -74.0133235 }, + { "lat": 40.8010445, "lon": -74.0133457 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 894964593, + "bounds": { + "minlat": 40.8008514, + "minlon": -74.0134778, + "maxlat": 40.8009772, + "maxlon": -74.0133915 + }, + "nodes": [ + 8318955071, + 8318955075, + 8318955073, + 8318955070 + ], + "geometry": [ + { "lat": 40.8009772, "lon": -74.0133915 }, + { "lat": 40.8009526, "lon": -74.0134089 }, + { "lat": 40.8009003, "lon": -74.0134442 }, + { "lat": 40.8008514, "lon": -74.0134778 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 894964594, + "bounds": { + "minlat": 40.8009772, + "minlon": -74.0133915, + "maxlat": 40.8010445, + "maxlon": -74.0133457 + }, + "nodes": [ + 8318955072, + 8318955071 + ], + "geometry": [ + { "lat": 40.8010445, "lon": -74.0133457 }, + { "lat": 40.8009772, "lon": -74.0133915 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 894964595, + "bounds": { + "minlat": 40.8009316, + "minlon": -74.0132717, + "maxlat": 40.8009993, + "maxlon": -74.0132261 + }, + "nodes": [ + 8318955065, + 8318955066 + ], + "geometry": [ + { "lat": 40.8009993, "lon": -74.0132261 }, + { "lat": 40.8009316, "lon": -74.0132717 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 894964596, + "bounds": { + "minlat": 40.8007770, + "minlon": -74.0133224, + "maxlat": 40.8009316, + "maxlon": -74.0132717 + }, + "nodes": [ + 8318955066, + 8318955074, + 8318955067, + 8318955068 + ], + "geometry": [ + { "lat": 40.8009316, "lon": -74.0132717 }, + { "lat": 40.8008968, "lon": -74.0132759 }, + { "lat": 40.8008274, "lon": -74.0132810 }, + { "lat": 40.8007770, "lon": -74.0133224 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 894964597, + "bounds": { + "minlat": 40.8008968, + "minlon": -74.0136122, + "maxlat": 40.8010379, + "maxlon": -74.0132759 + }, + "nodes": [ + 8318955074, + 8318955075, + 8318955076, + 8318955077 + ], + "geometry": [ + { "lat": 40.8008968, "lon": -74.0132759 }, + { "lat": 40.8009526, "lon": -74.0134089 }, + { "lat": 40.8009945, "lon": -74.0135054 }, + { "lat": 40.8010379, "lon": -74.0136122 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 895137846, + "bounds": { + "minlat": 40.7142285, + "minlon": -73.9954373, + "maxlat": 40.7148408, + "maxlon": -73.9948397 + }, + "nodes": [ + 42453691, + 11504615969, + 8320485197, + 8320485195, + 11504615915, + 11496497661, + 11496497660, + 8320485196 + ], + "geometry": [ + { "lat": 40.7142285, "lon": -73.9948397 }, + { "lat": 40.7142648, "lon": -73.9948613 }, + { "lat": 40.7142906, "lon": -73.9948758 }, + { "lat": 40.7143174, "lon": -73.9948895 }, + { "lat": 40.7145209, "lon": -73.9950001 }, + { "lat": 40.7147366, "lon": -73.9951168 }, + { "lat": 40.7147194, "lon": -73.9954193 }, + { "lat": 40.7148408, "lon": -73.9954373 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 895177855, + "bounds": { + "minlat": 40.7373895, + "minlon": -73.9308652, + "maxlat": 40.7376631, + "maxlon": -73.9303710 + }, + "nodes": [ + 7725555878, + 8320882152, + 8320882158, + 7298611010, + 8320882148, + 8320882149, + 7725555880, + 8320882155, + 8320882150, + 8320882151, + 7725555878 + ], + "geometry": [ + { "lat": 40.7374060, "lon": -73.9307095 }, + { "lat": 40.7374373, "lon": -73.9306361 }, + { "lat": 40.7375019, "lon": -73.9304848 }, + { "lat": 40.7375149, "lon": -73.9304543 }, + { "lat": 40.7375504, "lon": -73.9303710 }, + { "lat": 40.7376613, "lon": -73.9304642 }, + { "lat": 40.7376631, "lon": -73.9306102 }, + { "lat": 40.7376022, "lon": -73.9307612 }, + { "lat": 40.7375603, "lon": -73.9308652 }, + { "lat": 40.7373895, "lon": -73.9307460 }, + { "lat": 40.7374060, "lon": -73.9307095 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 895177856, + "bounds": { + "minlat": 40.7374373, + "minlon": -73.9306672, + "maxlat": 40.7374802, + "maxlon": -73.9306361 + }, + "nodes": [ + 8320882152, + 8320882153 + ], + "geometry": [ + { "lat": 40.7374373, "lon": -73.9306361 }, + { "lat": 40.7374802, "lon": -73.9306672 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 895177857, + "bounds": { + "minlat": 40.7376150, + "minlon": -73.9306102, + "maxlat": 40.7376631, + "maxlon": -73.9305729 + }, + "nodes": [ + 7725555880, + 8320882156 + ], + "geometry": [ + { "lat": 40.7376631, "lon": -73.9306102 }, + { "lat": 40.7376150, "lon": -73.9305729 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 895177858, + "bounds": { + "minlat": 40.7374802, + "minlon": -73.9307201, + "maxlat": 40.7375513, + "maxlon": -73.9306672 + }, + "nodes": [ + 8320882153, + 8320882154 + ], + "geometry": [ + { "lat": 40.7374802, "lon": -73.9306672 }, + { "lat": 40.7375513, "lon": -73.9307201 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 895177859, + "bounds": { + "minlat": 40.7375513, + "minlon": -73.9307612, + "maxlat": 40.7376022, + "maxlon": -73.9307201 + }, + "nodes": [ + 8320882154, + 8320882155 + ], + "geometry": [ + { "lat": 40.7375513, "lon": -73.9307201 }, + { "lat": 40.7376022, "lon": -73.9307612 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 895177860, + "bounds": { + "minlat": 40.7375452, + "minlon": -73.9305729, + "maxlat": 40.7376150, + "maxlon": -73.9305186 + }, + "nodes": [ + 8320882156, + 8320882157 + ], + "geometry": [ + { "lat": 40.7376150, "lon": -73.9305729 }, + { "lat": 40.7375452, "lon": -73.9305186 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 895177861, + "bounds": { + "minlat": 40.7375019, + "minlon": -73.9305186, + "maxlat": 40.7375452, + "maxlon": -73.9304848 + }, + "nodes": [ + 8320882157, + 8320882158 + ], + "geometry": [ + { "lat": 40.7375452, "lon": -73.9305186 }, + { "lat": 40.7375019, "lon": -73.9304848 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 895177862, + "bounds": { + "minlat": 40.7375504, + "minlon": -73.9303710, + "maxlat": 40.7376919, + "maxlon": -73.9302441 + }, + "nodes": [ + 42832527, + 10743722272, + 8320882148 + ], + "geometry": [ + { "lat": 40.7376919, "lon": -73.9302441 }, + { "lat": 40.7376256, "lon": -73.9303035 }, + { "lat": 40.7375504, "lon": -73.9303710 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 895348610, + "bounds": { + "minlat": 40.7421628, + "minlon": -73.9891459, + "maxlat": 40.7428320, + "maxlon": -73.9886624 + }, + "nodes": [ + 42453624, + 8265964362, + 3008856924, + 449581627, + 3009534469, + 42428206, + 10177726960 + ], + "geometry": [ + { "lat": 40.7428320, "lon": -73.9886624 }, + { "lat": 40.7428011, "lon": -73.9886863 }, + { "lat": 40.7427708, "lon": -73.9887096 }, + { "lat": 40.7424446, "lon": -73.9889406 }, + { "lat": 40.7422849, "lon": -73.9890549 }, + { "lat": 40.7422186, "lon": -73.9891071 }, + { "lat": 40.7421628, "lon": -73.9891459 } + ], + "tags": { + "cycleway": "no", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 895349521, + "bounds": { + "minlat": 40.7142776, + "minlon": -73.9848547, + "maxlat": 40.7145093, + "maxlon": -73.9847081 + }, + "nodes": [ + 12026651157, + 1264496107, + 5804713750, + 42433554 + ], + "geometry": [ + { "lat": 40.7142776, "lon": -73.9848547 }, + { "lat": 40.7143025, "lon": -73.9848401 }, + { "lat": 40.7144207, "lon": -73.9847650 }, + { "lat": 40.7145093, "lon": -73.9847081 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Samuel Dickstein Plaza", + "name:etymology:wikidata": "Q633827", + "name:ko": "사무엘 딕스타인 플라자", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 895394557, + "bounds": { + "minlat": 40.7576654, + "minlon": -73.9964055, + "maxlat": 40.7583460, + "maxlon": -73.9948115 + }, + "nodes": [ + 42446504, + 8288270422, + 428219734, + 11149329046, + 11149329227, + 42424789 + ], + "geometry": [ + { "lat": 40.7583460, "lon": -73.9964055 }, + { "lat": 40.7582889, "lon": -73.9962727 }, + { "lat": 40.7582499, "lon": -73.9961841 }, + { "lat": 40.7582079, "lon": -73.9960855 }, + { "lat": 40.7577239, "lon": -73.9949488 }, + { "lat": 40.7576654, "lon": -73.9948115 } + ], + "tags": { + "alt_name": "West 40 Street", + "highway": "residential", + "lanes": "3", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 895394558, + "bounds": { + "minlat": 40.7588460, + "minlon": -73.9977989, + "maxlat": 40.7589479, + "maxlon": -73.9975781 + }, + "nodes": [ + 593920865, + 42446506 + ], + "geometry": [ + { "lat": 40.7589479, "lon": -73.9977989 }, + { "lat": 40.7588460, "lon": -73.9975781 } + ], + "tags": { + "alt_name": "West 40 Street", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through;right" + } +}, +{ + "type": "way", + "id": 895398380, + "bounds": { + "minlat": 40.7790389, + "minlon": -73.9812960, + "maxlat": 40.7792840, + "maxlon": -73.9811164 + }, + "nodes": [ + 8323051888, + 11655743686, + 42432564 + ], + "geometry": [ + { "lat": 40.7790389, "lon": -73.9812960 }, + { "lat": 40.7792325, "lon": -73.9811541 }, + { "lat": 40.7792840, "lon": -73.9811164 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 895398381, + "bounds": { + "minlat": 40.7804048, + "minlon": -73.9803202, + "maxlat": 40.7805610, + "maxlon": -73.9802100 + }, + "nodes": [ + 8323051889, + 11135523287, + 42442451 + ], + "geometry": [ + { "lat": 40.7804048, "lon": -73.9803202 }, + { "lat": 40.7805014, "lon": -73.9802520 }, + { "lat": 40.7805610, "lon": -73.9802100 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 895398382, + "bounds": { + "minlat": 40.7805610, + "minlon": -73.9802100, + "maxlat": 40.7816871, + "maxlon": -73.9793878 + }, + "nodes": [ + 42442451, + 9897616167, + 9611179676, + 42442459, + 9611179678, + 8323051890 + ], + "geometry": [ + { "lat": 40.7805610, "lon": -73.9802100 }, + { "lat": 40.7806170, "lon": -73.9801691 }, + { "lat": 40.7811445, "lon": -73.9797842 }, + { "lat": 40.7811846, "lon": -73.9797549 }, + { "lat": 40.7812541, "lon": -73.9797040 }, + { "lat": 40.7816871, "lon": -73.9793878 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 895398383, + "bounds": { + "minlat": 40.7816871, + "minlon": -73.9793878, + "maxlat": 40.7818426, + "maxlon": -73.9792740 + }, + "nodes": [ + 8323051890, + 9611179680, + 42438862 + ], + "geometry": [ + { "lat": 40.7816871, "lon": -73.9793878 }, + { "lat": 40.7817779, "lon": -73.9793219 }, + { "lat": 40.7818426, "lon": -73.9792740 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 895398384, + "bounds": { + "minlat": 40.7818426, + "minlon": -73.9792740, + "maxlat": 40.7827373, + "maxlon": -73.9786255 + }, + "nodes": [ + 42438862, + 9611179672, + 9897654913, + 42428063, + 9897654915, + 6929267036 + ], + "geometry": [ + { "lat": 40.7818426, "lon": -73.9792740 }, + { "lat": 40.7818902, "lon": -73.9792398 }, + { "lat": 40.7824125, "lon": -73.9788587 }, + { "lat": 40.7824641, "lon": -73.9788209 }, + { "lat": 40.7825253, "lon": -73.9787771 }, + { "lat": 40.7827373, "lon": -73.9786255 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 895398385, + "bounds": { + "minlat": 40.7827373, + "minlon": -73.9786255, + "maxlat": 40.7831527, + "maxlon": -73.9783277 + }, + "nodes": [ + 6929267036, + 9897806736, + 42442463 + ], + "geometry": [ + { "lat": 40.7827373, "lon": -73.9786255 }, + { "lat": 40.7830613, "lon": -73.9783939 }, + { "lat": 40.7831527, "lon": -73.9783277 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|right", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 895606701, + "bounds": { + "minlat": 40.7909985, + "minlon": -73.9651883, + "maxlat": 40.7916758, + "maxlon": -73.9646940 + }, + "nodes": [ + 42435328, + 7123525297, + 2047573317, + 42424439 + ], + "geometry": [ + { "lat": 40.7909985, "lon": -73.9651883 }, + { "lat": 40.7910513, "lon": -73.9651495 }, + { "lat": 40.7915874, "lon": -73.9647609 }, + { "lat": 40.7916758, "lon": -73.9646940 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 895628704, + "bounds": { + "minlat": 40.7440839, + "minlon": -73.9280018, + "maxlat": 40.7474440, + "maxlon": -73.9273379 + }, + "nodes": [ + 597294492, + 3798410769, + 597294493, + 10743722066, + 10069673284, + 8316237198, + 10762202942, + 42817765, + 10762202941, + 7153388593, + 5867099388, + 10069673240, + 42888688 + ], + "geometry": [ + { "lat": 40.7440839, "lon": -73.9280018 }, + { "lat": 40.7442579, "lon": -73.9279653 }, + { "lat": 40.7443874, "lon": -73.9279376 }, + { "lat": 40.7444939, "lon": -73.9279166 }, + { "lat": 40.7451516, "lon": -73.9277871 }, + { "lat": 40.7458607, "lon": -73.9276475 }, + { "lat": 40.7458985, "lon": -73.9276400 }, + { "lat": 40.7460023, "lon": -73.9276197 }, + { "lat": 40.7460641, "lon": -73.9276071 }, + { "lat": 40.7469640, "lon": -73.9274274 }, + { "lat": 40.7473365, "lon": -73.9273551 }, + { "lat": 40.7473842, "lon": -73.9273494 }, + { "lat": 40.7474440, "lon": -73.9273379 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "37th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 895628705, + "bounds": { + "minlat": 40.7439773, + "minlon": -73.9270770, + "maxlat": 40.7475136, + "maxlon": -73.9263720 + }, + "nodes": [ + 42841815, + 10069673234, + 8316237183, + 10069673282, + 42817769, + 10069673281, + 5482216910, + 10069673283, + 597294490, + 3798410797, + 597294491 + ], + "geometry": [ + { "lat": 40.7475136, "lon": -73.9263720 }, + { "lat": 40.7474581, "lon": -73.9263825 }, + { "lat": 40.7459930, "lon": -73.9266791 }, + { "lat": 40.7459610, "lon": -73.9266859 }, + { "lat": 40.7458916, "lon": -73.9266986 }, + { "lat": 40.7457924, "lon": -73.9267165 }, + { "lat": 40.7449741, "lon": -73.9268855 }, + { "lat": 40.7443863, "lon": -73.9270051 }, + { "lat": 40.7442785, "lon": -73.9270213 }, + { "lat": 40.7441516, "lon": -73.9270446 }, + { "lat": 40.7439773, "lon": -73.9270770 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "38th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 895628706, + "bounds": { + "minlat": 40.7368861, + "minlon": -73.9284976, + "maxlat": 40.7382148, + "maxlon": -73.9282340 + }, + "nodes": [ + 42841853, + 10084797144, + 10774439599, + 5482231122, + 7708763530, + 8097303850, + 9981925188, + 42832534 + ], + "geometry": [ + { "lat": 40.7382148, "lon": -73.9282340 }, + { "lat": 40.7381193, "lon": -73.9282547 }, + { "lat": 40.7375927, "lon": -73.9283590 }, + { "lat": 40.7374208, "lon": -73.9283931 }, + { "lat": 40.7370687, "lon": -73.9284554 }, + { "lat": 40.7369975, "lon": -73.9284713 }, + { "lat": 40.7369418, "lon": -73.9284845 }, + { "lat": 40.7368861, "lon": -73.9284976 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "38th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 895628707, + "bounds": { + "minlat": 40.7400408, + "minlon": -73.9240459, + "maxlat": 40.7435465, + "maxlon": -73.9233671 + }, + "nodes": [ + 4215943290, + 9192032629, + 10081023615, + 9192032630, + 9192032631, + 8233070279, + 10160130718, + 10081023612, + 10081023613, + 42860613, + 10081023614, + 10774439524, + 10743722620, + 2844853157 + ], + "geometry": [ + { "lat": 40.7400408, "lon": -73.9239565 }, + { "lat": 40.7401041, "lon": -73.9240159 }, + { "lat": 40.7401279, "lon": -73.9240358 }, + { "lat": 40.7401413, "lon": -73.9240430 }, + { "lat": 40.7401571, "lon": -73.9240459 }, + { "lat": 40.7401776, "lon": -73.9240450 }, + { "lat": 40.7407643, "lon": -73.9239285 }, + { "lat": 40.7415768, "lon": -73.9237672 }, + { "lat": 40.7416228, "lon": -73.9237578 }, + { "lat": 40.7417032, "lon": -73.9237415 }, + { "lat": 40.7417825, "lon": -73.9237256 }, + { "lat": 40.7428050, "lon": -73.9235178 }, + { "lat": 40.7434557, "lon": -73.9233855 }, + { "lat": 40.7435465, "lon": -73.9233671 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "41st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 895628708, + "bounds": { + "minlat": 40.7404360, + "minlon": -73.9230400, + "maxlat": 40.7434403, + "maxlon": -73.9224454 + }, + "nodes": [ + 2844853155, + 10081025521, + 5482367282, + 8549559013, + 10774439511, + 8316786986, + 10081025518, + 42860615, + 10081025519, + 9692756749, + 10743722465, + 42896827 + ], + "geometry": [ + { "lat": 40.7434403, "lon": -73.9224454 }, + { "lat": 40.7433505, "lon": -73.9224603 }, + { "lat": 40.7431805, "lon": -73.9224973 }, + { "lat": 40.7423879, "lon": -73.9226546 }, + { "lat": 40.7419526, "lon": -73.9227393 }, + { "lat": 40.7417109, "lon": -73.9227871 }, + { "lat": 40.7416739, "lon": -73.9227943 }, + { "lat": 40.7415950, "lon": -73.9228103 }, + { "lat": 40.7415133, "lon": -73.9228284 }, + { "lat": 40.7406033, "lon": -73.9230017 }, + { "lat": 40.7405502, "lon": -73.9230101 }, + { "lat": 40.7404360, "lon": -73.9230400 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "42nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 895628709, + "bounds": { + "minlat": 40.7408895, + "minlon": -73.9220036, + "maxlat": 40.7414884, + "maxlon": -73.9218924 + }, + "nodes": [ + 42896831, + 10081025525, + 10081025526, + 10081025524, + 42860617 + ], + "geometry": [ + { "lat": 40.7408895, "lon": -73.9220036 }, + { "lat": 40.7409974, "lon": -73.9219883 }, + { "lat": 40.7413683, "lon": -73.9219172 }, + { "lat": 40.7414055, "lon": -73.9219101 }, + { "lat": 40.7414884, "lon": -73.9218924 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 895628710, + "bounds": { + "minlat": 40.7410553, + "minlon": -73.9293055, + "maxlat": 40.7423457, + "maxlon": -73.9181662 + }, + "nodes": [ + 42860598, + 10081023584, + 10081023588, + 10081023589, + 42860601, + 10081023590, + 10081023594, + 42841827, + 10081023595, + 8549558973, + 10743722094, + 42860603, + 10743722093, + 8549563225, + 10081023602, + 42860605, + 10081023607, + 10081023606, + 42860609, + 10081023608, + 42860613, + 10081023616, + 42860615, + 10081025517, + 10081025520, + 42860617, + 10081025522, + 10081025527, + 9192032627, + 42860618, + 9192032628, + 10081025529, + 10081025528, + 42860622, + 10081025534, + 10081025536, + 42833579, + 10081025539, + 10081025540, + 42860624 + ], + "geometry": [ + { "lat": 40.7423457, "lon": -73.9293055 }, + { "lat": 40.7423355, "lon": -73.9292197 }, + { "lat": 40.7423283, "lon": -73.9291621 }, + { "lat": 40.7422481, "lon": -73.9284601 }, + { "lat": 40.7422385, "lon": -73.9283792 }, + { "lat": 40.7422295, "lon": -73.9282962 }, + { "lat": 40.7421390, "lon": -73.9275320 }, + { "lat": 40.7421295, "lon": -73.9274517 }, + { "lat": 40.7421201, "lon": -73.9273698 }, + { "lat": 40.7420466, "lon": -73.9267228 }, + { "lat": 40.7420398, "lon": -73.9266658 }, + { "lat": 40.7420266, "lon": -73.9265588 }, + { "lat": 40.7420143, "lon": -73.9264454 }, + { "lat": 40.7420091, "lon": -73.9263976 }, + { "lat": 40.7419262, "lon": -73.9256720 }, + { "lat": 40.7419172, "lon": -73.9255949 }, + { "lat": 40.7419081, "lon": -73.9255169 }, + { "lat": 40.7418185, "lon": -73.9247473 }, + { "lat": 40.7418093, "lon": -73.9246667 }, + { "lat": 40.7418003, "lon": -73.9245888 }, + { "lat": 40.7417032, "lon": -73.9237415 }, + { "lat": 40.7416054, "lon": -73.9228905 }, + { "lat": 40.7415950, "lon": -73.9228103 }, + { "lat": 40.7415853, "lon": -73.9227261 }, + { "lat": 40.7414998, "lon": -73.9219960 }, + { "lat": 40.7414884, "lon": -73.9218924 }, + { "lat": 40.7414740, "lon": -73.9217747 }, + { "lat": 40.7414074, "lon": -73.9212026 }, + { "lat": 40.7413989, "lon": -73.9211272 }, + { "lat": 40.7413752, "lon": -73.9209510 }, + { "lat": 40.7413554, "lon": -73.9207722 }, + { "lat": 40.7413479, "lon": -73.9206902 }, + { "lat": 40.7412813, "lon": -73.9201089 }, + { "lat": 40.7412723, "lon": -73.9200293 }, + { "lat": 40.7412646, "lon": -73.9199494 }, + { "lat": 40.7411735, "lon": -73.9191820 }, + { "lat": 40.7411631, "lon": -73.9190999 }, + { "lat": 40.7411533, "lon": -73.9190224 }, + { "lat": 40.7410656, "lon": -73.9182556 }, + { "lat": 40.7410553, "lon": -73.9181662 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "47th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 895756216, + "bounds": { + "minlat": 40.7940644, + "minlon": -73.9712252, + "maxlat": 40.7944280, + "maxlon": -73.9703681 + }, + "nodes": [ + 42442534, + 8687882753, + 4205805396 + ], + "geometry": [ + { "lat": 40.7940644, "lon": -73.9703681 }, + { "lat": 40.7941176, "lon": -73.9704934 }, + { "lat": 40.7944280, "lon": -73.9712252 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "West 96th Street", + "name:ru": "Западная 96-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 895756217, + "bounds": { + "minlat": 40.7954481, + "minlon": -73.9760092, + "maxlat": 40.7954937, + "maxlon": -73.9757989 + }, + "nodes": [ + 42425348, + 9168918351, + 2029349871 + ], + "geometry": [ + { "lat": 40.7954937, "lon": -73.9760092 }, + { "lat": 40.7954621, "lon": -73.9758580 }, + { "lat": 40.7954481, "lon": -73.9757989 } + ], + "tags": { + "alt_name": "West 95 Street", + "highway": "secondary", + "lane_markings": "no", + "name": "West 95th Street", + "name:ru": "Западная 95-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4646040", + "wikipedia": "en:95th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 895821666, + "bounds": { + "minlat": 40.7195297, + "minlon": -73.9455580, + "maxlat": 40.7202425, + "maxlon": -73.9443942 + }, + "nodes": [ + 42502920, + 6228788717, + 6235394679, + 42464292 + ], + "geometry": [ + { "lat": 40.7202425, "lon": -73.9443942 }, + { "lat": 40.7201694, "lon": -73.9445188 }, + { "lat": 40.7195670, "lon": -73.9454975 }, + { "lat": 40.7195297, "lon": -73.9455580 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 895821667, + "bounds": { + "minlat": 40.7199988, + "minlon": -73.9442114, + "maxlat": 40.7208383, + "maxlon": -73.9427770 + }, + "nodes": [ + 42463374, + 9937287988, + 6235394686, + 42476532 + ], + "geometry": [ + { "lat": 40.7199988, "lon": -73.9442114 }, + { "lat": 40.7200504, "lon": -73.9441270 }, + { "lat": 40.7207923, "lon": -73.9428509 }, + { "lat": 40.7208383, "lon": -73.9427770 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|none|none" + } +}, +{ + "type": "way", + "id": 895821669, + "bounds": { + "minlat": 40.7206201, + "minlon": -73.9446730, + "maxlat": 40.7206957, + "maxlon": -73.9444628 + }, + "nodes": [ + 6166803114, + 8393782844, + 8393782850, + 9789356788, + 12390552296, + 2987758839 + ], + "geometry": [ + { "lat": 40.7206957, "lon": -73.9444628 }, + { "lat": 40.7206677, "lon": -73.9445312 }, + { "lat": 40.7206574, "lon": -73.9445795 }, + { "lat": 40.7206474, "lon": -73.9445985 }, + { "lat": 40.7206321, "lon": -73.9446402 }, + { "lat": 40.7206201, "lon": -73.9446730 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 895821670, + "bounds": { + "minlat": 40.7202425, + "minlon": -73.9443942, + "maxlat": 40.7203573, + "maxlon": -73.9441955 + }, + "nodes": [ + 6166803113, + 13040677062, + 9937287987, + 42502920 + ], + "geometry": [ + { "lat": 40.7203573, "lon": -73.9441955 }, + { "lat": 40.7203149, "lon": -73.9442700 }, + { "lat": 40.7202997, "lon": -73.9442967 }, + { "lat": 40.7202425, "lon": -73.9443942 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left|none|none" + } +}, +{ + "type": "way", + "id": 895821671, + "bounds": { + "minlat": 40.7203573, + "minlon": -73.9441955, + "maxlat": 40.7204477, + "maxlon": -73.9440370 + }, + "nodes": [ + 6166803110, + 6166803113 + ], + "geometry": [ + { "lat": 40.7204477, "lon": -73.9440370 }, + { "lat": 40.7203573, "lon": -73.9441955 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 895854404, + "bounds": { + "minlat": 40.7435377, + "minlon": -73.9145733, + "maxlat": 40.7436281, + "maxlon": -73.9142863 + }, + "nodes": [ + 6349964618, + 6349964623 + ], + "geometry": [ + { "lat": 40.7435377, "lon": -73.9145733 }, + { "lat": 40.7436281, "lon": -73.9142863 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Roosevelt Avenue", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 895854405, + "bounds": { + "minlat": 40.7436281, + "minlon": -73.9142863, + "maxlat": 40.7440471, + "maxlon": -73.9128895 + }, + "nodes": [ + 6349964623, + 11694654138, + 42819599, + 11694654139, + 10762233943, + 4775550715 + ], + "geometry": [ + { "lat": 40.7436281, "lon": -73.9142863 }, + { "lat": 40.7437298, "lon": -73.9139669 }, + { "lat": 40.7437717, "lon": -73.9138353 }, + { "lat": 40.7438040, "lon": -73.9137244 }, + { "lat": 40.7440027, "lon": -73.9130411 }, + { "lat": 40.7440471, "lon": -73.9128895 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Roosevelt Avenue", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 895854406, + "bounds": { + "minlat": 40.7434550, + "minlon": -73.9148370, + "maxlat": 40.7435377, + "maxlon": -73.9145733 + }, + "nodes": [ + 42870230, + 11694654149, + 6349964618 + ], + "geometry": [ + { "lat": 40.7434550, "lon": -73.9148370 }, + { "lat": 40.7434854, "lon": -73.9147402 }, + { "lat": 40.7435377, "lon": -73.9145733 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Roosevelt Avenue", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 895854407, + "bounds": { + "minlat": 40.7433426, + "minlon": -73.9145733, + "maxlat": 40.7435377, + "maxlon": -73.9145218 + }, + "nodes": [ + 5481947754, + 5481947755, + 9950327921, + 6349964618 + ], + "geometry": [ + { "lat": 40.7433426, "lon": -73.9145222 }, + { "lat": 40.7434264, "lon": -73.9145218 }, + { "lat": 40.7434684, "lon": -73.9145412 }, + { "lat": 40.7435377, "lon": -73.9145733 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 896275386, + "bounds": { + "minlat": 40.7698008, + "minlon": -73.9168056, + "maxlat": 40.7698025, + "maxlon": -73.9167352 + }, + "nodes": [ + 276209270, + 7659376764 + ], + "geometry": [ + { "lat": 40.7698008, "lon": -73.9168056 }, + { "lat": 40.7698025, "lon": -73.9167352 } + ], + "tags": { + "foot": "yes", + "hgv": "designated", + "highway": "secondary", + "name": "Astoria Boulevard South", + "oneway": "yes", + "ref": "I 278 Truck", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 896364343, + "bounds": { + "minlat": 40.7564381, + "minlon": -73.9395100, + "maxlat": 40.7567285, + "maxlon": -73.9389399 + }, + "nodes": [ + 8332419156, + 7746705679 + ], + "geometry": [ + { "lat": 40.7567285, "lon": -73.9395100 }, + { "lat": 40.7564381, "lon": -73.9389399 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 896364344, + "bounds": { + "minlat": 40.7567285, + "minlon": -73.9395100, + "maxlat": 40.7568239, + "maxlon": -73.9394286 + }, + "nodes": [ + 8332419150, + 8332419156 + ], + "geometry": [ + { "lat": 40.7568239, "lon": -73.9394286 }, + { "lat": 40.7567285, "lon": -73.9395100 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 896364346, + "bounds": { + "minlat": 40.7565308, + "minlon": -73.9394286, + "maxlat": 40.7568239, + "maxlon": -73.9388579 + }, + "nodes": [ + 5487837583, + 8332419150 + ], + "geometry": [ + { "lat": 40.7565308, "lon": -73.9388579 }, + { "lat": 40.7568239, "lon": -73.9394286 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 896500769, + "bounds": { + "minlat": 40.7491117, + "minlon": -73.9316134, + "maxlat": 40.7502112, + "maxlon": -73.9306625 + }, + "nodes": [ + 8333737039, + 8333737038, + 8333737037, + 8333657114, + 8333737030, + 8333737032, + 8333737028, + 8333737018, + 8333737029, + 8333737036, + 8333737025, + 8333737017, + 8333737026, + 8333737021, + 8333737035, + 8333737023, + 8333737024, + 8333657116, + 8333737019, + 8333737020, + 8333737022, + 8333657115, + 8333737027, + 9084756039, + 9084756038, + 8333737034, + 8333737031, + 9084756040, + 8333737033 + ], + "geometry": [ + { "lat": 40.7502112, "lon": -73.9314314 }, + { "lat": 40.7500594, "lon": -73.9314133 }, + { "lat": 40.7499646, "lon": -73.9316134 }, + { "lat": 40.7499260, "lon": -73.9315718 }, + { "lat": 40.7498878, "lon": -73.9315305 }, + { "lat": 40.7498415, "lon": -73.9314804 }, + { "lat": 40.7498111, "lon": -73.9314476 }, + { "lat": 40.7497629, "lon": -73.9313954 }, + { "lat": 40.7497281, "lon": -73.9313579 }, + { "lat": 40.7496952, "lon": -73.9313223 }, + { "lat": 40.7496710, "lon": -73.9313001 }, + { "lat": 40.7496387, "lon": -73.9312704 }, + { "lat": 40.7495819, "lon": -73.9312182 }, + { "lat": 40.7495468, "lon": -73.9311859 }, + { "lat": 40.7495084, "lon": -73.9311506 }, + { "lat": 40.7494881, "lon": -73.9311247 }, + { "lat": 40.7494606, "lon": -73.9310897 }, + { "lat": 40.7494314, "lon": -73.9310523 }, + { "lat": 40.7494026, "lon": -73.9310156 }, + { "lat": 40.7493757, "lon": -73.9309813 }, + { "lat": 40.7493353, "lon": -73.9309297 }, + { "lat": 40.7493116, "lon": -73.9308995 }, + { "lat": 40.7492846, "lon": -73.9308650 }, + { "lat": 40.7492553, "lon": -73.9308276 }, + { "lat": 40.7492281, "lon": -73.9307929 }, + { "lat": 40.7491916, "lon": -73.9307483 }, + { "lat": 40.7491553, "lon": -73.9307093 }, + { "lat": 40.7491283, "lon": -73.9306803 }, + { "lat": 40.7491117, "lon": -73.9306625 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 897196633, + "bounds": { + "minlat": 40.7372901, + "minlon": -73.9408464, + "maxlat": 40.7375322, + "maxlon": -73.9401970 + }, + "nodes": [ + 4952694885, + 11211159760, + 8339222844, + 8339222845 + ], + "geometry": [ + { "lat": 40.7375322, "lon": -73.9401970 }, + { "lat": 40.7375023, "lon": -73.9402841 }, + { "lat": 40.7374954, "lon": -73.9403042 }, + { "lat": 40.7372901, "lon": -73.9408464 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 897384682, + "bounds": { + "minlat": 40.7503715, + "minlon": -73.9188319, + "maxlat": 40.7506668, + "maxlon": -73.9178438 + }, + "nodes": [ + 8340628409, + 10762234043, + 8340628416, + 8340628410, + 8340628411, + 8340628415, + 10762234042, + 8340628414 + ], + "geometry": [ + { "lat": 40.7504875, "lon": -73.9188319 }, + { "lat": 40.7504392, "lon": -73.9188172 }, + { "lat": 40.7504219, "lon": -73.9188120 }, + { "lat": 40.7503715, "lon": -73.9187979 }, + { "lat": 40.7505486, "lon": -73.9178438 }, + { "lat": 40.7506001, "lon": -73.9178587 }, + { "lat": 40.7506201, "lon": -73.9178645 }, + { "lat": 40.7506668, "lon": -73.9178780 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 897384683, + "bounds": { + "minlat": 40.7502285, + "minlon": -73.9195802, + "maxlat": 40.7503715, + "maxlon": -73.9187979 + }, + "nodes": [ + 8340628412, + 10762234044, + 8340680717, + 8340628413, + 8340628410 + ], + "geometry": [ + { "lat": 40.7503468, "lon": -73.9195802 }, + { "lat": 40.7502991, "lon": -73.9195664 }, + { "lat": 40.7502781, "lon": -73.9195603 }, + { "lat": 40.7502285, "lon": -73.9195459 }, + { "lat": 40.7503715, "lon": -73.9187979 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 897423782, + "bounds": { + "minlat": 40.7755912, + "minlon": -73.9316730, + "maxlat": 40.7758570, + "maxlon": -73.9307585 + }, + "nodes": [ + 721845311, + 8340961780, + 8340961779 + ], + "geometry": [ + { "lat": 40.7758570, "lon": -73.9316730 }, + { "lat": 40.7758457, "lon": -73.9316345 }, + { "lat": 40.7755912, "lon": -73.9307585 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "26th Avenue" + } +}, +{ + "type": "way", + "id": 897426999, + "bounds": { + "minlat": 40.7375295, + "minlon": -73.9327632, + "maxlat": 40.7379024, + "maxlon": -73.9325775 + }, + "nodes": [ + 277385122, + 10743722239, + 8340996254, + 8340996255, + 8340996256, + 10743722246, + 277388572 + ], + "geometry": [ + { "lat": 40.7375295, "lon": -73.9325775 }, + { "lat": 40.7375879, "lon": -73.9325798 }, + { "lat": 40.7376009, "lon": -73.9325803 }, + { "lat": 40.7377447, "lon": -73.9326544 }, + { "lat": 40.7378274, "lon": -73.9327279 }, + { "lat": 40.7378487, "lon": -73.9327379 }, + { "lat": 40.7379024, "lon": -73.9327632 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 897428358, + "bounds": { + "minlat": 40.7511314, + "minlon": -73.9426219, + "maxlat": 40.7513392, + "maxlon": -73.9424614 + }, + "nodes": [ + 8340995845, + 8340995846, + 8340995847, + 8340995848 + ], + "geometry": [ + { "lat": 40.7513392, "lon": -73.9424614 }, + { "lat": 40.7512839, "lon": -73.9425045 }, + { "lat": 40.7512657, "lon": -73.9425176 }, + { "lat": 40.7511314, "lon": -73.9426219 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 897508065, + "bounds": { + "minlat": 40.7432605, + "minlon": -73.9429005, + "maxlat": 40.7436040, + "maxlon": -73.9420352 + }, + "nodes": [ + 8341665001, + 10762203032, + 10762203035, + 8341665002 + ], + "geometry": [ + { "lat": 40.7432605, "lon": -73.9429005 }, + { "lat": 40.7432871, "lon": -73.9428334 }, + { "lat": 40.7435741, "lon": -73.9421105 }, + { "lat": 40.7436040, "lon": -73.9420352 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 897510849, + "bounds": { + "minlat": 40.8142316, + "minlon": -73.9093128, + "maxlat": 40.8147482, + "maxlon": -73.9091231 + }, + "nodes": [ + 8341674515, + 8341674516, + 8341698717, + 8341698718, + 8341698719, + 8341698720 + ], + "geometry": [ + { "lat": 40.8147482, "lon": -73.9091231 }, + { "lat": 40.8146093, "lon": -73.9091617 }, + { "lat": 40.8145692, "lon": -73.9091758 }, + { "lat": 40.8145368, "lon": -73.9091960 }, + { "lat": 40.8144755, "lon": -73.9092240 }, + { "lat": 40.8142316, "lon": -73.9093128 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 897515344, + "bounds": { + "minlat": 40.8438925, + "minlon": -73.9345554, + "maxlat": 40.8441292, + "maxlon": -73.9339837 + }, + "nodes": [ + 8341674803, + 8723021859, + 8341674804, + 8341674805 + ], + "geometry": [ + { "lat": 40.8438925, "lon": -73.9339837 }, + { "lat": 40.8439438, "lon": -73.9341091 }, + { "lat": 40.8439594, "lon": -73.9341471 }, + { "lat": 40.8441292, "lon": -73.9345554 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 897544319, + "bounds": { + "minlat": 40.7532913, + "minlon": -73.9195113, + "maxlat": 40.7534989, + "maxlon": -73.9186670 + }, + "nodes": [ + 6833067828, + 8341959880, + 8341959881, + 13511882311, + 8341959882, + 13511882310, + 13511882309 + ], + "geometry": [ + { "lat": 40.7534372, "lon": -73.9186670 }, + { "lat": 40.7533942, "lon": -73.9188688 }, + { "lat": 40.7533145, "lon": -73.9193142 }, + { "lat": 40.7532913, "lon": -73.9194373 }, + { "lat": 40.7533456, "lon": -73.9194478 }, + { "lat": 40.7533966, "lon": -73.9194633 }, + { "lat": 40.7534989, "lon": -73.9195113 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 897679039, + "bounds": { + "minlat": 40.7501372, + "minlon": -73.9356707, + "maxlat": 40.7506161, + "maxlon": -73.9351502 + }, + "nodes": [ + 12046209179, + 10713533566, + 10006374946, + 2292087076 + ], + "geometry": [ + { "lat": 40.7501372, "lon": -73.9356707 }, + { "lat": 40.7504176, "lon": -73.9353659 }, + { "lat": 40.7505748, "lon": -73.9351951 }, + { "lat": 40.7506161, "lon": -73.9351502 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 897811253, + "bounds": { + "minlat": 40.7941673, + "minlon": -73.9683040, + "maxlat": 40.7947199, + "maxlon": -73.9678904 + }, + "nodes": [ + 7571410125, + 8344003063, + 8344003064, + 8344003067, + 6859714441, + 8344003066 + ], + "geometry": [ + { "lat": 40.7947199, "lon": -73.9680933 }, + { "lat": 40.7944180, "lon": -73.9683040 }, + { "lat": 40.7943450, "lon": -73.9683018 }, + { "lat": 40.7942633, "lon": -73.9681049 }, + { "lat": 40.7941879, "lon": -73.9679365 }, + { "lat": 40.7941673, "lon": -73.9678904 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 897811254, + "bounds": { + "minlat": 40.7942633, + "minlon": -73.9681049, + "maxlat": 40.7946191, + "maxlon": -73.9678455 + }, + "nodes": [ + 8344003067, + 8344003068 + ], + "geometry": [ + { "lat": 40.7942633, "lon": -73.9681049 }, + { "lat": 40.7946191, "lon": -73.9678455 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 897815356, + "bounds": { + "minlat": 40.7442215, + "minlon": -73.9198796, + "maxlat": 40.7450798, + "maxlon": -73.9197197 + }, + "nodes": [ + 8344002861, + 10743714080, + 8344002862, + 8344002863, + 10774439631 + ], + "geometry": [ + { "lat": 40.7450798, "lon": -73.9197197 }, + { "lat": 40.7449848, "lon": -73.9197392 }, + { "lat": 40.7449582, "lon": -73.9197447 }, + { "lat": 40.7446148, "lon": -73.9198031 }, + { "lat": 40.7442215, "lon": -73.9198796 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 897844649, + "bounds": { + "minlat": 40.8244524, + "minlon": -73.9276396, + "maxlat": 40.8250269, + "maxlon": -73.9273540 + }, + "nodes": [ + 8344261126, + 8344261127, + 13238609085, + 13238609084, + 13238609083, + 13238609082 + ], + "geometry": [ + { "lat": 40.8244524, "lon": -73.9276396 }, + { "lat": 40.8249518, "lon": -73.9273571 }, + { "lat": 40.8249626, "lon": -73.9273540 }, + { "lat": 40.8249712, "lon": -73.9273594 }, + { "lat": 40.8249956, "lon": -73.9274519 }, + { "lat": 40.8250269, "lon": -73.9275736 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 897899397, + "bounds": { + "minlat": 40.8363515, + "minlon": -73.9470836, + "maxlat": 40.8366042, + "maxlon": -73.9467680 + }, + "nodes": [ + 8344675600, + 9935939148, + 8344675601, + 8344675602, + 8344675603, + 8344675604, + 8344675605, + 8344675606, + 9935939149, + 8344675607 + ], + "geometry": [ + { "lat": 40.8363913, "lon": -73.9467680 }, + { "lat": 40.8363573, "lon": -73.9468829 }, + { "lat": 40.8363515, "lon": -73.9469025 }, + { "lat": 40.8363764, "lon": -73.9469902 }, + { "lat": 40.8364187, "lon": -73.9470539 }, + { "lat": 40.8364811, "lon": -73.9470836 }, + { "lat": 40.8365458, "lon": -73.9470758 }, + { "lat": 40.8365715, "lon": -73.9470466 }, + { "lat": 40.8365789, "lon": -73.9470178 }, + { "lat": 40.8366042, "lon": -73.9469188 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 897914544, + "bounds": { + "minlat": 40.8282090, + "minlon": -73.9448411, + "maxlat": 40.8285682, + "maxlon": -73.9438525 + }, + "nodes": [ + 8344802619, + 11218778238, + 8344802620, + 8344802621, + 8344802622, + 8344802623, + 8344802624 + ], + "geometry": [ + { "lat": 40.8282090, "lon": -73.9448411 }, + { "lat": 40.8282702, "lon": -73.9447974 }, + { "lat": 40.8282936, "lon": -73.9447815 }, + { "lat": 40.8285453, "lon": -73.9446066 }, + { "lat": 40.8285682, "lon": -73.9445660 }, + { "lat": 40.8285624, "lon": -73.9445140 }, + { "lat": 40.8282564, "lon": -73.9438525 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 897916456, + "bounds": { + "minlat": 40.7028425, + "minlon": -73.9636721, + "maxlat": 40.7036133, + "maxlon": -73.9627959 + }, + "nodes": [ + 8344812281, + 9776829312, + 8344812282, + 8344812283, + 8344812284, + 8344812285 + ], + "geometry": [ + { "lat": 40.7036133, "lon": -73.9636721 }, + { "lat": 40.7035504, "lon": -73.9635984 }, + { "lat": 40.7034160, "lon": -73.9634408 }, + { "lat": 40.7031450, "lon": -73.9631367 }, + { "lat": 40.7029643, "lon": -73.9629463 }, + { "lat": 40.7028425, "lon": -73.9627959 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 897916457, + "bounds": { + "minlat": 40.7030346, + "minlon": -73.9631367, + "maxlat": 40.7031450, + "maxlon": -73.9627042 + }, + "nodes": [ + 8344812283, + 8100464252 + ], + "geometry": [ + { "lat": 40.7031450, "lon": -73.9631367 }, + { "lat": 40.7030346, "lon": -73.9627042 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 898077311, + "bounds": { + "minlat": 40.8358221, + "minlon": -73.9398835, + "maxlat": 40.8359308, + "maxlon": -73.9398047 + }, + "nodes": [ + 42433014, + 4378236643, + 4378236645 + ], + "geometry": [ + { "lat": 40.8358221, "lon": -73.9398835 }, + { "lat": 40.8358878, "lon": -73.9398358 }, + { "lat": 40.8359308, "lon": -73.9398047 } + ], + "tags": { + "cycleway:left": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 898215800, + "bounds": { + "minlat": 40.8735718, + "minlon": -73.9073460, + "maxlat": 40.8737102, + "maxlon": -73.9066534 + }, + "nodes": [ + 8347333309, + 10128431630, + 8347333310, + 8347333311 + ], + "geometry": [ + { "lat": 40.8735718, "lon": -73.9066534 }, + { "lat": 40.8735873, "lon": -73.9067250 }, + { "lat": 40.8735990, "lon": -73.9067791 }, + { "lat": 40.8737102, "lon": -73.9073460 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 898251434, + "bounds": { + "minlat": 40.8545733, + "minlon": -73.9393651, + "maxlat": 40.8547714, + "maxlon": -73.9387295 + }, + "nodes": [ + 8347635265, + 9563821288, + 8347635266, + 8347635267, + 8347635268, + 8347635269, + 9764594784, + 9764594783, + 8347635270, + 9764594782 + ], + "geometry": [ + { "lat": 40.8545733, "lon": -73.9387295 }, + { "lat": 40.8546023, "lon": -73.9387920 }, + { "lat": 40.8546546, "lon": -73.9389048 }, + { "lat": 40.8547485, "lon": -73.9391098 }, + { "lat": 40.8547681, "lon": -73.9391708 }, + { "lat": 40.8547714, "lon": -73.9392346 }, + { "lat": 40.8547701, "lon": -73.9392796 }, + { "lat": 40.8547660, "lon": -73.9393191 }, + { "lat": 40.8547524, "lon": -73.9393407 }, + { "lat": 40.8547193, "lon": -73.9393651 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 898253094, + "bounds": { + "minlat": 40.7020693, + "minlon": -73.9172410, + "maxlat": 40.7023324, + "maxlon": -73.9167465 + }, + "nodes": [ + 8347648050, + 9755751811, + 8347648051, + 8347648052 + ], + "geometry": [ + { "lat": 40.7020693, "lon": -73.9167465 }, + { "lat": 40.7021087, "lon": -73.9168236 }, + { "lat": 40.7021199, "lon": -73.9168455 }, + { "lat": 40.7023324, "lon": -73.9172410 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 898257491, + "bounds": { + "minlat": 40.7462277, + "minlon": -73.9110648, + "maxlat": 40.7470465, + "maxlon": -73.9102714 + }, + "nodes": [ + 42846023, + 10762233914, + 8347688530, + 8347688544, + 8347688531, + 8347688532, + 8347688543, + 8347688542, + 8347688533, + 8347688534, + 8347688535, + 8347688536, + 8347688537, + 8347688538, + 8347688539, + 8347688540, + 8347688541 + ], + "geometry": [ + { "lat": 40.7470465, "lon": -73.9102714 }, + { "lat": 40.7469718, "lon": -73.9102871 }, + { "lat": 40.7466441, "lon": -73.9103562 }, + { "lat": 40.7466182, "lon": -73.9103814 }, + { "lat": 40.7465960, "lon": -73.9104162 }, + { "lat": 40.7465708, "lon": -73.9104509 }, + { "lat": 40.7465534, "lon": -73.9104683 }, + { "lat": 40.7465324, "lon": -73.9104829 }, + { "lat": 40.7464962, "lon": -73.9104946 }, + { "lat": 40.7463868, "lon": -73.9105197 }, + { "lat": 40.7463572, "lon": -73.9105280 }, + { "lat": 40.7463485, "lon": -73.9105499 }, + { "lat": 40.7463504, "lon": -73.9105860 }, + { "lat": 40.7464005, "lon": -73.9109749 }, + { "lat": 40.7463964, "lon": -73.9110098 }, + { "lat": 40.7463748, "lon": -73.9110318 }, + { "lat": 40.7462277, "lon": -73.9110648 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 898268237, + "bounds": { + "minlat": 40.7164785, + "minlon": -73.9398112, + "maxlat": 40.7170898, + "maxlon": -73.9393006 + }, + "nodes": [ + 8347773888, + 8347773889, + 10253423507, + 8347773890, + 8347773891, + 8347773892, + 8347773893, + 8347773899, + 8347773894, + 8347773895, + 8347773896, + 8347773897, + 8347773898 + ], + "geometry": [ + { "lat": 40.7164785, "lon": -73.9397298 }, + { "lat": 40.7165605, "lon": -73.9397460 }, + { "lat": 40.7167400, "lon": -73.9397803 }, + { "lat": 40.7169016, "lon": -73.9398112 }, + { "lat": 40.7169273, "lon": -73.9398102 }, + { "lat": 40.7169432, "lon": -73.9398002 }, + { "lat": 40.7169629, "lon": -73.9397613 }, + { "lat": 40.7170738, "lon": -73.9394326 }, + { "lat": 40.7170853, "lon": -73.9393984 }, + { "lat": 40.7170898, "lon": -73.9393834 }, + { "lat": 40.7170891, "lon": -73.9393665 }, + { "lat": 40.7170830, "lon": -73.9393455 }, + { "lat": 40.7169984, "lon": -73.9393006 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 898268238, + "bounds": { + "minlat": 40.7170738, + "minlon": -73.9394911, + "maxlat": 40.7171788, + "maxlon": -73.9394326 + }, + "nodes": [ + 8347773899, + 8347773900 + ], + "geometry": [ + { "lat": 40.7170738, "lon": -73.9394326 }, + { "lat": 40.7171788, "lon": -73.9394911 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 898326895, + "bounds": { + "minlat": 40.7061932, + "minlon": -73.9670334, + "maxlat": 40.7069560, + "maxlon": -73.9661800 + }, + "nodes": [ + 8348148512, + 8348148513, + 8348148514, + 8348148515, + 8348148516, + 8348154017, + 8348154018, + 8348154019, + 8348154020, + 8348154021, + 8348154022, + 8348154023, + 9776829058, + 8348154024 + ], + "geometry": [ + { "lat": 40.7069560, "lon": -73.9663922 }, + { "lat": 40.7068982, "lon": -73.9663319 }, + { "lat": 40.7067557, "lon": -73.9661800 }, + { "lat": 40.7067380, "lon": -73.9661849 }, + { "lat": 40.7066796, "lon": -73.9662363 }, + { "lat": 40.7065172, "lon": -73.9662036 }, + { "lat": 40.7064762, "lon": -73.9662111 }, + { "lat": 40.7063876, "lon": -73.9663131 }, + { "lat": 40.7062319, "lon": -73.9665679 }, + { "lat": 40.7061932, "lon": -73.9666364 }, + { "lat": 40.7062148, "lon": -73.9666874 }, + { "lat": 40.7063762, "lon": -73.9668928 }, + { "lat": 40.7063677, "lon": -73.9669393 }, + { "lat": 40.7063506, "lon": -73.9670334 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 898341776, + "bounds": { + "minlat": 40.7685245, + "minlon": -73.9901796, + "maxlat": 40.7688316, + "maxlon": -73.9899644 + }, + "nodes": [ + 8348222103, + 10084922545, + 8386171565, + 8348222104 + ], + "geometry": [ + { "lat": 40.7688316, "lon": -73.9899644 }, + { "lat": 40.7687729, "lon": -73.9900055 }, + { "lat": 40.7687264, "lon": -73.9900381 }, + { "lat": 40.7685245, "lon": -73.9901796 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 898436972, + "bounds": { + "minlat": 40.8422065, + "minlon": -73.9214636, + "maxlat": 40.8423542, + "maxlon": -73.9210820 + }, + "nodes": [ + 8348931835, + 8348931837, + 8348931836 + ], + "geometry": [ + { "lat": 40.8422065, "lon": -73.9210820 }, + { "lat": 40.8422480, "lon": -73.9211893 }, + { "lat": 40.8423542, "lon": -73.9214636 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 899393008, + "bounds": { + "minlat": 40.7457156, + "minlon": -74.0061381, + "maxlat": 40.7458398, + "maxlon": -74.0058294 + }, + "nodes": [ + 6401966212, + 8356668016 + ], + "geometry": [ + { "lat": 40.7457156, "lon": -74.0058294 }, + { "lat": 40.7458398, "lon": -74.0061381 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 899669883, + "bounds": { + "minlat": 40.8811795, + "minlon": -73.9944980, + "maxlat": 40.8825820, + "maxlon": -73.9939202 + }, + "nodes": [ + 3743155666, + 8359055296, + 8359055297, + 8359055298, + 8359055299, + 8359055300, + 8359055301, + 8359055302, + 8359055303, + 8359055304, + 8359055305, + 8359055306, + 8359055307, + 8359055308, + 8359055309, + 8359055310, + 8359055311, + 8359055312, + 8359055313, + 8359055314, + 8359055315, + 8359055316, + 8359090917, + 8359090918, + 8359090919, + 8359090920, + 8359090921, + 8359090922, + 8359090923, + 7432141922 + ], + "geometry": [ + { "lat": 40.8811795, "lon": -73.9939202 }, + { "lat": 40.8812140, "lon": -73.9939266 }, + { "lat": 40.8812229, "lon": -73.9939321 }, + { "lat": 40.8812305, "lon": -73.9939460 }, + { "lat": 40.8812325, "lon": -73.9940160 }, + { "lat": 40.8812411, "lon": -73.9941045 }, + { "lat": 40.8812506, "lon": -73.9941652 }, + { "lat": 40.8812647, "lon": -73.9942226 }, + { "lat": 40.8812771, "lon": -73.9942550 }, + { "lat": 40.8812962, "lon": -73.9942837 }, + { "lat": 40.8813220, "lon": -73.9943040 }, + { "lat": 40.8813632, "lon": -73.9943259 }, + { "lat": 40.8813954, "lon": -73.9943385 }, + { "lat": 40.8814585, "lon": -73.9943520 }, + { "lat": 40.8815447, "lon": -73.9943622 }, + { "lat": 40.8816017, "lon": -73.9943638 }, + { "lat": 40.8816474, "lon": -73.9943591 }, + { "lat": 40.8817097, "lon": -73.9943560 }, + { "lat": 40.8817732, "lon": -73.9943591 }, + { "lat": 40.8818444, "lon": -73.9943693 }, + { "lat": 40.8818889, "lon": -73.9943842 }, + { "lat": 40.8819429, "lon": -73.9944140 }, + { "lat": 40.8820455, "lon": -73.9944690 }, + { "lat": 40.8820924, "lon": -73.9944878 }, + { "lat": 40.8821500, "lon": -73.9944980 }, + { "lat": 40.8822034, "lon": -73.9944972 }, + { "lat": 40.8823090, "lon": -73.9944745 }, + { "lat": 40.8823956, "lon": -73.9944666 }, + { "lat": 40.8824779, "lon": -73.9944652 }, + { "lat": 40.8825820, "lon": -73.9944630 } + ], + "tags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 899909541, + "bounds": { + "minlat": 40.7459046, + "minlon": -73.9747447, + "maxlat": 40.7463439, + "maxlon": -73.9739853 + }, + "nodes": [ + 9987259798, + 9987259810, + 8272069544, + 8361128106, + 9140723306, + 8361128107, + 9140723309, + 11942111834 + ], + "geometry": [ + { "lat": 40.7463439, "lon": -73.9747447 }, + { "lat": 40.7462309, "lon": -73.9746861 }, + { "lat": 40.7462051, "lon": -73.9746695 }, + { "lat": 40.7461875, "lon": -73.9746529 }, + { "lat": 40.7461669, "lon": -73.9746245 }, + { "lat": 40.7461474, "lon": -73.9745849 }, + { "lat": 40.7460172, "lon": -73.9742497 }, + { "lat": 40.7459046, "lon": -73.9739853 } + ], + "tags": { + "access": "no", + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 900805143, + "bounds": { + "minlat": 40.7294079, + "minlon": -73.9217270, + "maxlat": 40.7300040, + "maxlon": -73.9209790 + }, + "nodes": [ + 8367809745, + 8367809743, + 8367809744 + ], + "geometry": [ + { "lat": 40.7298857, "lon": -73.9209790 }, + { "lat": 40.7300040, "lon": -73.9215122 }, + { "lat": 40.7294079, "lon": -73.9217270 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901028052, + "bounds": { + "minlat": 40.7262560, + "minlon": -73.9317781, + "maxlat": 40.7266493, + "maxlon": -73.9302352 + }, + "nodes": [ + 42509715, + 9765199858, + 11026254016, + 11026254014, + 8370235788 + ], + "geometry": [ + { "lat": 40.7262560, "lon": -73.9317781 }, + { "lat": 40.7262750, "lon": -73.9316860 }, + { "lat": 40.7262903, "lon": -73.9316266 }, + { "lat": 40.7265291, "lon": -73.9307008 }, + { "lat": 40.7266493, "lon": -73.9302352 } + ], + "tags": { + "highway": "unclassified", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 901489046, + "bounds": { + "minlat": 40.8747450, + "minlon": -73.9525067, + "maxlat": 40.8751765, + "maxlon": -73.9516203 + }, + "nodes": [ + 8374335788, + 8374335789, + 8374335790, + 8374335791, + 8374335792, + 8374335793 + ], + "geometry": [ + { "lat": 40.8751765, "lon": -73.9525067 }, + { "lat": 40.8751329, "lon": -73.9522661 }, + { "lat": 40.8747577, "lon": -73.9517531 }, + { "lat": 40.8747450, "lon": -73.9516920 }, + { "lat": 40.8747670, "lon": -73.9516538 }, + { "lat": 40.8748408, "lon": -73.9516203 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901489047, + "bounds": { + "minlat": 40.8751329, + "minlon": -73.9522661, + "maxlat": 40.8752334, + "maxlon": -73.9521760 + }, + "nodes": [ + 8374335789, + 8374335794 + ], + "geometry": [ + { "lat": 40.8751329, "lon": -73.9522661 }, + { "lat": 40.8752334, "lon": -73.9521760 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901498247, + "bounds": { + "minlat": 40.8089424, + "minlon": -73.9880977, + "maxlat": 40.8090031, + "maxlon": -73.9879234 + }, + "nodes": [ + 8374409342, + 8374409343, + 8374409344 + ], + "geometry": [ + { "lat": 40.8089424, "lon": -73.9880977 }, + { "lat": 40.8089916, "lon": -73.9880050 }, + { "lat": 40.8090031, "lon": -73.9879234 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901498248, + "bounds": { + "minlat": 40.8089643, + "minlon": -73.9879234, + "maxlat": 40.8090031, + "maxlon": -73.9878273 + }, + "nodes": [ + 8374409344, + 8374409345 + ], + "geometry": [ + { "lat": 40.8090031, "lon": -73.9879234 }, + { "lat": 40.8089643, "lon": -73.9878273 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 901498249, + "bounds": { + "minlat": 40.8088307, + "minlon": -73.9878309, + "maxlat": 40.8089643, + "maxlon": -73.9878014 + }, + "nodes": [ + 8374409345, + 8374409347, + 8374409346 + ], + "geometry": [ + { "lat": 40.8089643, "lon": -73.9878273 }, + { "lat": 40.8089153, "lon": -73.9878014 }, + { "lat": 40.8088307, "lon": -73.9878309 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901498646, + "bounds": { + "minlat": 40.8307241, + "minlon": -74.0003371, + "maxlat": 40.8310115, + "maxlon": -73.9998434 + }, + "nodes": [ + 8374407285, + 8374407286 + ], + "geometry": [ + { "lat": 40.8310115, "lon": -74.0003371 }, + { "lat": 40.8307241, "lon": -73.9998434 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901499426, + "bounds": { + "minlat": 40.7985350, + "minlon": -74.0203219, + "maxlat": 40.7990848, + "maxlon": -74.0198685 + }, + "nodes": [ + 8374378210, + 8374378211 + ], + "geometry": [ + { "lat": 40.7985350, "lon": -74.0203219 }, + { "lat": 40.7990848, "lon": -74.0198685 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901499427, + "bounds": { + "minlat": 40.7984212, + "minlon": -74.0200952, + "maxlat": 40.7989743, + "maxlon": -74.0196279 + }, + "nodes": [ + 8374378212, + 8374378213 + ], + "geometry": [ + { "lat": 40.7989743, "lon": -74.0196279 }, + { "lat": 40.7984212, "lon": -74.0200952 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901500411, + "bounds": { + "minlat": 40.8704814, + "minlon": -73.9770910, + "maxlat": 40.8706574, + "maxlon": -73.9768585 + }, + "nodes": [ + 8374426000, + 8374426001, + 8374426002, + 8374426003, + 103260590, + 8374425996, + 8374425986, + 8374425987, + 8374425988, + 8374425989, + 8374425997, + 8374425998, + 8374425999, + 8374425990, + 8374425991, + 8374425992, + 8374425993, + 8374425994, + 8374425995, + 8374426000 + ], + "geometry": [ + { "lat": 40.8705269, "lon": -73.9768716 }, + { "lat": 40.8705538, "lon": -73.9768591 }, + { "lat": 40.8705824, "lon": -73.9768585 }, + { "lat": 40.8706096, "lon": -73.9768700 }, + { "lat": 40.8706326, "lon": -73.9768923 }, + { "lat": 40.8706495, "lon": -73.9769246 }, + { "lat": 40.8706574, "lon": -73.9769625 }, + { "lat": 40.8706553, "lon": -73.9770017 }, + { "lat": 40.8706436, "lon": -73.9770377 }, + { "lat": 40.8706235, "lon": -73.9770666 }, + { "lat": 40.8705973, "lon": -73.9770851 }, + { "lat": 40.8705679, "lon": -73.9770910 }, + { "lat": 40.8705387, "lon": -73.9770837 }, + { "lat": 40.8705130, "lon": -73.9770641 }, + { "lat": 40.8704942, "lon": -73.9770356 }, + { "lat": 40.8704833, "lon": -73.9770007 }, + { "lat": 40.8704814, "lon": -73.9769630 }, + { "lat": 40.8704887, "lon": -73.9769265 }, + { "lat": 40.8705044, "lon": -73.9768949 }, + { "lat": 40.8705269, "lon": -73.9768716 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Eagles Notch Drive", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Eagles Notch", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 901500412, + "bounds": { + "minlat": 40.8706286, + "minlon": -73.9766827, + "maxlat": 40.8708233, + "maxlon": -73.9763843 + }, + "nodes": [ + 8374426004, + 8374426007 + ], + "geometry": [ + { "lat": 40.8708233, "lon": -73.9766827 }, + { "lat": 40.8706286, "lon": -73.9763843 } + ], + "tags": { + "access": "private", + "highway": "residential" + } +}, +{ + "type": "way", + "id": 901500413, + "bounds": { + "minlat": 40.8716651, + "minlon": -73.9763752, + "maxlat": 40.8719111, + "maxlon": -73.9755887 + }, + "nodes": [ + 8374426008, + 8374426009, + 8374426010, + 8374426011, + 8374426012, + 8374426013, + 8374426014, + 8374426015, + 103321943, + 8374426016, + 103134283 + ], + "geometry": [ + { "lat": 40.8718057, "lon": -73.9763752 }, + { "lat": 40.8717398, "lon": -73.9763415 }, + { "lat": 40.8717011, "lon": -73.9762892 }, + { "lat": 40.8716721, "lon": -73.9762055 }, + { "lat": 40.8716651, "lon": -73.9760939 }, + { "lat": 40.8716897, "lon": -73.9760056 }, + { "lat": 40.8717732, "lon": -73.9759068 }, + { "lat": 40.8718566, "lon": -73.9758569 }, + { "lat": 40.8719016, "lon": -73.9758128 }, + { "lat": 40.8719111, "lon": -73.9757406 }, + { "lat": 40.8718634, "lon": -73.9755887 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Squire Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Squire", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 901500414, + "bounds": { + "minlat": 40.8719396, + "minlon": -73.9790977, + "maxlat": 40.8729986, + "maxlon": -73.9778294 + }, + "nodes": [ + 8374427133, + 8374427139, + 8374427134, + 8374427135, + 8374427136, + 8374427137, + 8374427138, + 8374427126, + 8374427125, + 392522288, + 103230549, + 8374427124, + 8374427123, + 8374427122, + 392522289, + 8374427120, + 8374427121, + 392522287, + 8374427119, + 8374427118, + 8374427117, + 103230546, + 8374427130, + 392522285, + 8374427131, + 392522286, + 8374427132, + 103230547, + 392522291, + 8374427129, + 392522290, + 8374427128, + 8374427127, + 103230548, + 8374427138 + ], + "geometry": [ + { "lat": 40.8720988, "lon": -73.9788362 }, + { "lat": 40.8721756, "lon": -73.9787953 }, + { "lat": 40.8722349, "lon": -73.9787459 }, + { "lat": 40.8722731, "lon": -73.9786806 }, + { "lat": 40.8723199, "lon": -73.9785835 }, + { "lat": 40.8723388, "lon": -73.9784970 }, + { "lat": 40.8723470, "lon": -73.9784095 }, + { "lat": 40.8722830, "lon": -73.9784113 }, + { "lat": 40.8722271, "lon": -73.9784270 }, + { "lat": 40.8721010, "lon": -73.9785404 }, + { "lat": 40.8719782, "lon": -73.9786776 }, + { "lat": 40.8719477, "lon": -73.9787459 }, + { "lat": 40.8719396, "lon": -73.9788360 }, + { "lat": 40.8719684, "lon": -73.9789244 }, + { "lat": 40.8720358, "lon": -73.9790204 }, + { "lat": 40.8721098, "lon": -73.9790728 }, + { "lat": 40.8721641, "lon": -73.9790926 }, + { "lat": 40.8722177, "lon": -73.9790977 }, + { "lat": 40.8722925, "lon": -73.9790600 }, + { "lat": 40.8724903, "lon": -73.9788471 }, + { "lat": 40.8725811, "lon": -73.9787272 }, + { "lat": 40.8726422, "lon": -73.9786185 }, + { "lat": 40.8727256, "lon": -73.9783460 }, + { "lat": 40.8727669, "lon": -73.9782547 }, + { "lat": 40.8728588, "lon": -73.9781421 }, + { "lat": 40.8729331, "lon": -73.9780530 }, + { "lat": 40.8729707, "lon": -73.9779836 }, + { "lat": 40.8729986, "lon": -73.9778590 }, + { "lat": 40.8726604, "lon": -73.9778294 }, + { "lat": 40.8726026, "lon": -73.9778456 }, + { "lat": 40.8725000, "lon": -73.9779236 }, + { "lat": 40.8724527, "lon": -73.9779732 }, + { "lat": 40.8724109, "lon": -73.9780556 }, + { "lat": 40.8723814, "lon": -73.9781567 }, + { "lat": 40.8723470, "lon": -73.9784095 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Regency Circle", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Regency", + "tiger:name_type": "Cir", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 901502047, + "bounds": { + "minlat": 40.8716649, + "minlon": -73.9570285, + "maxlat": 40.8718546, + "maxlon": -73.9566236 + }, + "nodes": [ + 8374419496, + 8374419497, + 8374419498, + 8374419499, + 8374419500, + 8374419501, + 8374419502, + 8374419496 + ], + "geometry": [ + { "lat": 40.8717774, "lon": -73.9566236 }, + { "lat": 40.8718383, "lon": -73.9566755 }, + { "lat": 40.8718546, "lon": -73.9567347 }, + { "lat": 40.8717584, "lon": -73.9570142 }, + { "lat": 40.8717313, "lon": -73.9570285 }, + { "lat": 40.8716757, "lon": -73.9570070 }, + { "lat": 40.8716649, "lon": -73.9569730 }, + { "lat": 40.8717774, "lon": -73.9566236 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 901502048, + "bounds": { + "minlat": 40.8716352, + "minlon": -73.9565527, + "maxlat": 40.8719663, + "maxlon": -73.9560633 + }, + "nodes": [ + 8374419506, + 8374419507, + 8374419508, + 8374419509 + ], + "geometry": [ + { "lat": 40.8719663, "lon": -73.9560633 }, + { "lat": 40.8718045, "lon": -73.9562419 }, + { "lat": 40.8717178, "lon": -73.9563673 }, + { "lat": 40.8716352, "lon": -73.9565527 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 901506694, + "bounds": { + "minlat": 40.8794689, + "minlon": -73.9504622, + "maxlat": 40.8798768, + "maxlon": -73.9501404 + }, + "nodes": [ + 8374457901, + 8374457903, + 8374457904, + 8374457905 + ], + "geometry": [ + { "lat": 40.8798768, "lon": -73.9501404 }, + { "lat": 40.8795694, "lon": -73.9504452 }, + { "lat": 40.8795373, "lon": -73.9504622 }, + { "lat": 40.8794689, "lon": -73.9504443 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 901506695, + "bounds": { + "minlat": 40.8793379, + "minlon": -73.9505471, + "maxlat": 40.8794689, + "maxlon": -73.9504443 + }, + "nodes": [ + 8374457905, + 8374457906, + 8374457907 + ], + "geometry": [ + { "lat": 40.8794689, "lon": -73.9504443 }, + { "lat": 40.8793632, "lon": -73.9505471 }, + { "lat": 40.8793379, "lon": -73.9505404 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 901506696, + "bounds": { + "minlat": 40.8789869, + "minlon": -73.9505404, + "maxlat": 40.8793379, + "maxlon": -73.9498952 + }, + "nodes": [ + 8374457907, + 8374457908, + 8374457909, + 8374457910, + 8374457911 + ], + "geometry": [ + { "lat": 40.8793379, "lon": -73.9505404 }, + { "lat": 40.8791384, "lon": -73.9502409 }, + { "lat": 40.8790953, "lon": -73.9501436 }, + { "lat": 40.8790742, "lon": -73.9500430 }, + { "lat": 40.8789869, "lon": -73.9498952 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 901506697, + "bounds": { + "minlat": 40.8791639, + "minlon": -73.9504443, + "maxlat": 40.8794689, + "maxlon": -73.9497930 + }, + "nodes": [ + 8374457912, + 8374457913, + 8374457905 + ], + "geometry": [ + { "lat": 40.8791639, "lon": -73.9497930 }, + { "lat": 40.8792563, "lon": -73.9500428 }, + { "lat": 40.8794689, "lon": -73.9504443 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 901506698, + "bounds": { + "minlat": 40.8782881, + "minlon": -73.9512637, + "maxlat": 40.8791434, + "maxlon": -73.9506244 + }, + "nodes": [ + 8374457914, + 8374457915, + 8374457916, + 8374477617, + 8374477618, + 8374477619, + 8374477620 + ], + "geometry": [ + { "lat": 40.8791434, "lon": -73.9506244 }, + { "lat": 40.8789628, "lon": -73.9508117 }, + { "lat": 40.8788170, "lon": -73.9509321 }, + { "lat": 40.8787549, "lon": -73.9509832 }, + { "lat": 40.8784108, "lon": -73.9510767 }, + { "lat": 40.8783725, "lon": -73.9511897 }, + { "lat": 40.8782881, "lon": -73.9512637 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901506699, + "bounds": { + "minlat": 40.8783725, + "minlon": -73.9512154, + "maxlat": 40.8787880, + "maxlon": -73.9509832 + }, + "nodes": [ + 8374477619, + 8374477621, + 8374477622, + 8374477623, + 8374477617 + ], + "geometry": [ + { "lat": 40.8783725, "lon": -73.9511897 }, + { "lat": 40.8784650, "lon": -73.9512154 }, + { "lat": 40.8787715, "lon": -73.9511336 }, + { "lat": 40.8787880, "lon": -73.9511003 }, + { "lat": 40.8787549, "lon": -73.9509832 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901510017, + "bounds": { + "minlat": 40.8769385, + "minlon": -73.9143723, + "maxlat": 40.8774392, + "maxlon": -73.9138585 + }, + "nodes": [ + 1544847098, + 8374480260, + 8374480262, + 8374480263, + 8374480261 + ], + "geometry": [ + { "lat": 40.8774392, "lon": -73.9143723 }, + { "lat": 40.8773598, "lon": -73.9142388 }, + { "lat": 40.8772624, "lon": -73.9140930 }, + { "lat": 40.8771121, "lon": -73.9140839 }, + { "lat": 40.8769385, "lon": -73.9138585 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 901510511, + "bounds": { + "minlat": 40.8273887, + "minlon": -73.9808645, + "maxlat": 40.8274548, + "maxlon": -73.9803788 + }, + "nodes": [ + 8374501211, + 8971240699, + 8374501212, + 8374501213 + ], + "geometry": [ + { "lat": 40.8274548, "lon": -73.9803788 }, + { "lat": 40.8274249, "lon": -73.9806499 }, + { "lat": 40.8274029, "lon": -73.9808498 }, + { "lat": 40.8273887, "lon": -73.9808645 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 901525684, + "bounds": { + "minlat": 40.8279901, + "minlon": -73.9738577, + "maxlat": 40.8282635, + "maxlon": -73.9733312 + }, + "nodes": [ + 8374631215, + 8374631216, + 8374643617, + 8374643618 + ], + "geometry": [ + { "lat": 40.8281235, "lon": -73.9738577 }, + { "lat": 40.8279901, "lon": -73.9736064 }, + { "lat": 40.8280310, "lon": -73.9735627 }, + { "lat": 40.8282635, "lon": -73.9733312 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901528427, + "bounds": { + "minlat": 40.8065574, + "minlon": -74.0178809, + "maxlat": 40.8068518, + "maxlon": -74.0172860 + }, + "nodes": [ + 8374663718, + 8374663719 + ], + "geometry": [ + { "lat": 40.8068518, "lon": -74.0178809 }, + { "lat": 40.8065574, "lon": -74.0172860 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 901530266, + "bounds": { + "minlat": 40.8767505, + "minlon": -73.9837458, + "maxlat": 40.8769486, + "maxlon": -73.9833839 + }, + "nodes": [ + 8374650165, + 13525892971, + 8374650166 + ], + "geometry": [ + { "lat": 40.8767505, "lon": -73.9833839 }, + { "lat": 40.8767912, "lon": -73.9834582 }, + { "lat": 40.8769486, "lon": -73.9837458 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901535848, + "bounds": { + "minlat": 40.8142027, + "minlon": -73.9259490, + "maxlat": 40.8144473, + "maxlon": -73.9256457 + }, + "nodes": [ + 8374719095, + 8374719096, + 8374719097 + ], + "geometry": [ + { "lat": 40.8144473, "lon": -73.9259490 }, + { "lat": 40.8144097, "lon": -73.9258536 }, + { "lat": 40.8142027, "lon": -73.9256457 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 901537939, + "bounds": { + "minlat": 40.8614916, + "minlon": -73.9624699, + "maxlat": 40.8619088, + "maxlon": -73.9619835 + }, + "nodes": [ + 8374754327, + 8374754328, + 8374754329, + 8374754330, + 8374754331, + 8374754332, + 8374754333, + 8374754334 + ], + "geometry": [ + { "lat": 40.8614916, "lon": -73.9623607 }, + { "lat": 40.8615523, "lon": -73.9624634 }, + { "lat": 40.8615663, "lon": -73.9624699 }, + { "lat": 40.8615832, "lon": -73.9624672 }, + { "lat": 40.8618980, "lon": -73.9621518 }, + { "lat": 40.8619076, "lon": -73.9621302 }, + { "lat": 40.8619088, "lon": -73.9621033 }, + { "lat": 40.8618513, "lon": -73.9619835 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 901542406, + "bounds": { + "minlat": 40.7527932, + "minlon": -73.9096500, + "maxlat": 40.7530043, + "maxlon": -73.9096099 + }, + "nodes": [ + 3778080993, + 8805602754, + 8374786609 + ], + "geometry": [ + { "lat": 40.7527932, "lon": -73.9096099 }, + { "lat": 40.7528997, "lon": -73.9096308 }, + { "lat": 40.7530043, "lon": -73.9096500 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901546218, + "bounds": { + "minlat": 40.8319337, + "minlon": -74.0109159, + "maxlat": 40.8326002, + "maxlon": -74.0108858 + }, + "nodes": [ + 8374850348, + 8374850349 + ], + "geometry": [ + { "lat": 40.8326002, "lon": -74.0109159 }, + { "lat": 40.8319337, "lon": -74.0108858 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 901551692, + "bounds": { + "minlat": 40.8247149, + "minlon": -73.9222468, + "maxlat": 40.8250065, + "maxlon": -73.9213490 + }, + "nodes": [ + 5441210467, + 12999340582, + 5441210479, + 8374875193 + ], + "geometry": [ + { "lat": 40.8250065, "lon": -73.9222468 }, + { "lat": 40.8249885, "lon": -73.9221883 }, + { "lat": 40.8249774, "lon": -73.9221522 }, + { "lat": 40.8247149, "lon": -73.9213490 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 901555822, + "bounds": { + "minlat": 40.7663968, + "minlon": -73.9082509, + "maxlat": 40.7667600, + "maxlon": -73.9074751 + }, + "nodes": [ + 8374908560, + 8374908561, + 8374908564, + 8374908565, + 8374908562, + 8374908563 + ], + "geometry": [ + { "lat": 40.7663968, "lon": -73.9074751 }, + { "lat": 40.7664257, "lon": -73.9075325 }, + { "lat": 40.7664298, "lon": -73.9075413 }, + { "lat": 40.7667147, "lon": -73.9081519 }, + { "lat": 40.7667258, "lon": -73.9081756 }, + { "lat": 40.7667600, "lon": -73.9082509 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 901559018, + "bounds": { + "minlat": 40.8728101, + "minlon": -73.9865685, + "maxlat": 40.8730556, + "maxlon": -73.9859307 + }, + "nodes": [ + 8374953663, + 8374953664, + 8374953665, + 8374953666, + 10234828621 + ], + "geometry": [ + { "lat": 40.8728101, "lon": -73.9859307 }, + { "lat": 40.8728952, "lon": -73.9860918 }, + { "lat": 40.8729286, "lon": -73.9861794 }, + { "lat": 40.8730148, "lon": -73.9864383 }, + { "lat": 40.8730556, "lon": -73.9865685 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901566310, + "bounds": { + "minlat": 40.7358835, + "minlon": -73.9180621, + "maxlat": 40.7368463, + "maxlon": -73.9175981 + }, + "nodes": [ + 8375045749, + 10743722379, + 8375045750, + 8375045751, + 8375045752, + 8375045753 + ], + "geometry": [ + { "lat": 40.7368463, "lon": -73.9180621 }, + { "lat": 40.7368333, "lon": -73.9179621 }, + { "lat": 40.7367859, "lon": -73.9175981 }, + { "lat": 40.7363964, "lon": -73.9176667 }, + { "lat": 40.7361287, "lon": -73.9177133 }, + { "lat": 40.7358835, "lon": -73.9177638 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901567254, + "bounds": { + "minlat": 40.8442830, + "minlon": -73.9856954, + "maxlat": 40.8444682, + "maxlon": -73.9853679 + }, + "nodes": [ + 8375051245, + 8375051246 + ], + "geometry": [ + { "lat": 40.8442830, "lon": -73.9853679 }, + { "lat": 40.8444682, "lon": -73.9856954 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901567570, + "bounds": { + "minlat": 40.7492756, + "minlon": -73.9394276, + "maxlat": 40.7493290, + "maxlon": -73.9393208 + }, + "nodes": [ + 8375044381, + 8375044383, + 8375044382 + ], + "geometry": [ + { "lat": 40.7493290, "lon": -73.9394276 }, + { "lat": 40.7492825, "lon": -73.9393341 }, + { "lat": 40.7492756, "lon": -73.9393208 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901570481, + "bounds": { + "minlat": 40.8524195, + "minlon": -73.9994096, + "maxlat": 40.8526973, + "maxlon": -73.9991379 + }, + "nodes": [ + 8375073036, + 8375073037 + ], + "geometry": [ + { "lat": 40.8524195, "lon": -73.9994096 }, + { "lat": 40.8526973, "lon": -73.9991379 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901573609, + "bounds": { + "minlat": 40.8246801, + "minlon": -73.9777114, + "maxlat": 40.8249535, + "maxlon": -73.9772793 + }, + "nodes": [ + 8375108225, + 8375108226 + ], + "geometry": [ + { "lat": 40.8246801, "lon": -73.9772793 }, + { "lat": 40.8249535, "lon": -73.9777114 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 901576486, + "bounds": { + "minlat": 40.7880447, + "minlon": -73.9998630, + "maxlat": 40.7882814, + "maxlon": -73.9993103 + }, + "nodes": [ + 8375126463, + 8375126462 + ], + "geometry": [ + { "lat": 40.7880447, "lon": -73.9993103 }, + { "lat": 40.7882814, "lon": -73.9998630 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 901576564, + "bounds": { + "minlat": 40.8118828, + "minlon": -74.0204412, + "maxlat": 40.8129481, + "maxlon": -74.0195324 + }, + "nodes": [ + 8375133329, + 8375133330, + 8375133331, + 8375133333, + 8375133332 + ], + "geometry": [ + { "lat": 40.8118828, "lon": -74.0204412 }, + { "lat": 40.8126763, "lon": -74.0198810 }, + { "lat": 40.8129481, "lon": -74.0197074 }, + { "lat": 40.8129264, "lon": -74.0196473 }, + { "lat": 40.8128849, "lon": -74.0195324 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 901580439, + "bounds": { + "minlat": 40.7755912, + "minlon": -73.9307585, + "maxlat": 40.7757530, + "maxlon": -73.9301446 + }, + "nodes": [ + 8375170656, + 8375170657, + 8375170660, + 8375170658, + 8375170659, + 8340961779 + ], + "geometry": [ + { "lat": 40.7757017, "lon": -73.9301446 }, + { "lat": 40.7757300, "lon": -73.9302323 }, + { "lat": 40.7757401, "lon": -73.9302657 }, + { "lat": 40.7757530, "lon": -73.9303329 }, + { "lat": 40.7757124, "lon": -73.9304613 }, + { "lat": 40.7755912, "lon": -73.9307585 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 901580983, + "bounds": { + "minlat": 40.7807245, + "minlon": -74.0161046, + "maxlat": 40.7812631, + "maxlon": -74.0157772 + }, + "nodes": [ + 8375183338, + 8375183339, + 8375183345, + 8375183340, + 8375183343, + 8375183341, + 8375183342 + ], + "geometry": [ + { "lat": 40.7812631, "lon": -74.0157772 }, + { "lat": 40.7812323, "lon": -74.0157999 }, + { "lat": 40.7811394, "lon": -74.0158740 }, + { "lat": 40.7810238, "lon": -74.0159663 }, + { "lat": 40.7809801, "lon": -74.0159822 }, + { "lat": 40.7808293, "lon": -74.0161046 }, + { "lat": 40.7807245, "lon": -74.0158936 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901580984, + "bounds": { + "minlat": 40.7808806, + "minlon": -74.0159822, + "maxlat": 40.7809801, + "maxlon": -74.0157572 + }, + "nodes": [ + 8375183343, + 8375183344 + ], + "geometry": [ + { "lat": 40.7809801, "lon": -74.0159822 }, + { "lat": 40.7808806, "lon": -74.0157572 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901580985, + "bounds": { + "minlat": 40.7810321, + "minlon": -74.0158740, + "maxlat": 40.7811394, + "maxlon": -74.0156388 + }, + "nodes": [ + 8375183345, + 8375183346 + ], + "geometry": [ + { "lat": 40.7811394, "lon": -74.0158740 }, + { "lat": 40.7810321, "lon": -74.0156388 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 901619580, + "bounds": { + "minlat": 40.8068779, + "minlon": -73.9300319, + "maxlat": 40.8070790, + "maxlon": -73.9295791 + }, + "nodes": [ + 8375510722, + 11427300091, + 8375510724, + 8375510723 + ], + "geometry": [ + { "lat": 40.8070790, "lon": -73.9300319 }, + { "lat": 40.8070173, "lon": -73.9299007 }, + { "lat": 40.8069984, "lon": -73.9298606 }, + { "lat": 40.8068779, "lon": -73.9295791 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "East 132nd Street" + } +}, +{ + "type": "way", + "id": 902138061, + "bounds": { + "minlat": 40.7564104, + "minlon": -73.9560172, + "maxlat": 40.7566077, + "maxlon": -73.9558339 + }, + "nodes": [ + 8379571252, + 9913659994, + 6323387090, + 42427070 + ], + "geometry": [ + { "lat": 40.7564104, "lon": -73.9560172 }, + { "lat": 40.7565043, "lon": -73.9559294 }, + { "lat": 40.7565392, "lon": -73.9558969 }, + { "lat": 40.7566077, "lon": -73.9558339 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "no", + "highway": "unclassified", + "lanes": "1", + "lcn": "yes", + "maxspeed": "15 mph", + "name": "West Loop Road", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 902155653, + "bounds": { + "minlat": 40.7575114, + "minlon": -73.9538954, + "maxlat": 40.7575515, + "maxlon": -73.9537902 + }, + "nodes": [ + 1241820953, + 6395503416, + 6395503414, + 1241820975 + ], + "geometry": [ + { "lat": 40.7575515, "lon": -73.9538954 }, + { "lat": 40.7575299, "lon": -73.9538665 }, + { "lat": 40.7575161, "lon": -73.9538303 }, + { "lat": 40.7575114, "lon": -73.9537902 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "maxspeed": "15 mph", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 902155654, + "bounds": { + "minlat": 40.7575515, + "minlon": -73.9539205, + "maxlat": 40.7577079, + "maxlon": -73.9536908 + }, + "nodes": [ + 1241820956, + 6395503415, + 6395503407, + 6395503406, + 6395503405, + 6395503404, + 9915145352, + 6395503403, + 6395503402, + 6395503401, + 6395503400, + 1241820953 + ], + "geometry": [ + { "lat": 40.7576743, "lon": -73.9536908 }, + { "lat": 40.7576894, "lon": -73.9537150 }, + { "lat": 40.7577032, "lon": -73.9537512 }, + { "lat": 40.7577079, "lon": -73.9537913 }, + { "lat": 40.7577029, "lon": -73.9538314 }, + { "lat": 40.7576889, "lon": -73.9538675 }, + { "lat": 40.7576722, "lon": -73.9538893 }, + { "lat": 40.7576670, "lon": -73.9538960 }, + { "lat": 40.7576396, "lon": -73.9539143 }, + { "lat": 40.7576092, "lon": -73.9539205 }, + { "lat": 40.7575789, "lon": -73.9539139 }, + { "lat": 40.7575515, "lon": -73.9538954 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "maxspeed": "15 mph", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 902155655, + "bounds": { + "minlat": 40.7723578, + "minlon": -73.9328598, + "maxlat": 40.7723846, + "maxlon": -73.9328462 + }, + "nodes": [ + 7745197940, + 42874022 + ], + "geometry": [ + { "lat": 40.7723846, "lon": -73.9328462 }, + { "lat": 40.7723578, "lon": -73.9328598 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "name": "8th Street" + } +}, +{ + "type": "way", + "id": 902168961, + "bounds": { + "minlat": 40.8071759, + "minlon": -73.9608046, + "maxlat": 40.8075609, + "maxlon": -73.9605192 + }, + "nodes": [ + 12874926132, + 8379847773 + ], + "geometry": [ + { "lat": 40.8071759, "lon": -73.9608046 }, + { "lat": 40.8075609, "lon": -73.9605192 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "layer": "-1", + "maxheight": "14'8\"", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tunnel": "yes", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 902695829, + "bounds": { + "minlat": 40.7145320, + "minlon": -73.9443880, + "maxlat": 40.7147382, + "maxlon": -73.9421525 + }, + "nodes": [ + 42467872, + 6235394670, + 9695846859, + 7712107372, + 9695846819, + 9695846868, + 7712107364 + ], + "geometry": [ + { "lat": 40.7145320, "lon": -73.9443880 }, + { "lat": 40.7145421, "lon": -73.9442793 }, + { "lat": 40.7146866, "lon": -73.9427956 }, + { "lat": 40.7146955, "lon": -73.9427045 }, + { "lat": 40.7147031, "lon": -73.9426225 }, + { "lat": 40.7147379, "lon": -73.9422074 }, + { "lat": 40.7147382, "lon": -73.9421525 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 902695830, + "bounds": { + "minlat": 40.7145320, + "minlon": -73.9444991, + "maxlat": 40.7152280, + "maxlon": -73.9443880 + }, + "nodes": [ + 42467872, + 6235394669, + 11229826583, + 6235394673, + 42467880 + ], + "geometry": [ + { "lat": 40.7145320, "lon": -73.9443880 }, + { "lat": 40.7146193, "lon": -73.9444020 }, + { "lat": 40.7148089, "lon": -73.9444322 }, + { "lat": 40.7151711, "lon": -73.9444899 }, + { "lat": 40.7152280, "lon": -73.9444991 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 902695831, + "bounds": { + "minlat": 40.7310916, + "minlon": -73.9256700, + "maxlat": 40.7324562, + "maxlon": -73.9248049 + }, + "nodes": [ + 5978376417, + 6219006687, + 6219006582 + ], + "geometry": [ + { "lat": 40.7310916, "lon": -73.9256700 }, + { "lat": 40.7317190, "lon": -73.9252934 }, + { "lat": 40.7324562, "lon": -73.9248049 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 902695832, + "bounds": { + "minlat": 40.7147353, + "minlon": -73.9421525, + "maxlat": 40.7147382, + "maxlon": -73.9420710 + }, + "nodes": [ + 7712107364, + 7722378707 + ], + "geometry": [ + { "lat": 40.7147382, "lon": -73.9421525 }, + { "lat": 40.7147353, "lon": -73.9420710 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 902695833, + "bounds": { + "minlat": 40.7155353, + "minlon": -73.9411530, + "maxlat": 40.7158127, + "maxlon": -73.9400202 + }, + "nodes": [ + 42489470, + 9527375822, + 7725510883 + ], + "geometry": [ + { "lat": 40.7155353, "lon": -73.9411530 }, + { "lat": 40.7157929, "lon": -73.9400984 }, + { "lat": 40.7158127, "lon": -73.9400202 } + ], + "tags": { + "highway": "residential", + "name": "Maspeth Avenue", + "oneway": "no", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 902695834, + "bounds": { + "minlat": 40.7147353, + "minlon": -73.9421434, + "maxlat": 40.7150041, + "maxlon": -73.9420258 + }, + "nodes": [ + 7722378707, + 9695846844, + 9947391748, + 9947391751 + ], + "geometry": [ + { "lat": 40.7147353, "lon": -73.9420710 }, + { "lat": 40.7148078, "lon": -73.9420258 }, + { "lat": 40.7149655, "lon": -73.9420813 }, + { "lat": 40.7150041, "lon": -73.9421434 } + ], + "tags": { + "highway": "residential", + "name": "Woodpoint Road", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 902699060, + "bounds": { + "minlat": 40.7096283, + "minlon": -73.9600342, + "maxlat": 40.7096813, + "maxlon": -73.9594048 + }, + "nodes": [ + 2307215740, + 2307215730, + 9968370398 + ], + "geometry": [ + { "lat": 40.7096622, "lon": -73.9600342 }, + { "lat": 40.7096813, "lon": -73.9595518 }, + { "lat": 40.7096283, "lon": -73.9594048 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Washington Plaza Lane 1", + "oneway": "yes", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 902704752, + "bounds": { + "minlat": 40.7065970, + "minlon": -73.9432020, + "maxlat": 40.7073350, + "maxlon": -73.9430860 + }, + "nodes": [ + 42467825, + 9752594014, + 11229826591, + 6943638506, + 42467828 + ], + "geometry": [ + { "lat": 40.7065970, "lon": -73.9430860 }, + { "lat": 40.7066694, "lon": -73.9430973 }, + { "lat": 40.7068784, "lon": -73.9431303 }, + { "lat": 40.7072657, "lon": -73.9431915 }, + { "lat": 40.7073350, "lon": -73.9432020 } + ], + "tags": { + "alt_name": "Avenue of Puerto Rico", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 902704753, + "bounds": { + "minlat": 40.7084171, + "minlon": -73.9578957, + "maxlat": 40.7087581, + "maxlon": -73.9576853 + }, + "nodes": [ + 13892651149, + 2782255519, + 42482433 + ], + "geometry": [ + { "lat": 40.7087581, "lon": -73.9576853 }, + { "lat": 40.7084931, "lon": -73.9578478 }, + { "lat": 40.7084171, "lon": -73.9578957 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 902709005, + "bounds": { + "minlat": 40.7004197, + "minlon": -73.9444636, + "maxlat": 40.7004288, + "maxlon": -73.9443862 + }, + "nodes": [ + 7711304341, + 7711304351 + ], + "geometry": [ + { "lat": 40.7004197, "lon": -73.9444636 }, + { "lat": 40.7004288, "lon": -73.9443862 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY;Kings, NY", + "tiger:name_base": "Flushing", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11378;11237", + "tiger:zip_right": "11378", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 902709006, + "bounds": { + "minlat": 40.7004288, + "minlon": -73.9444084, + "maxlat": 40.7005481, + "maxlon": -73.9443862 + }, + "nodes": [ + 7711304351, + 42467503 + ], + "geometry": [ + { "lat": 40.7004288, "lon": -73.9443862 }, + { "lat": 40.7005481, "lon": -73.9444084 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Throop Avenue", + "name:etymology:wikidata": "Q881026", + "oneway": "yes", + "sidewalk": "separate", + "tiger:zip_left": "11221", + "tiger:zip_right": "11221" + } +}, +{ + "type": "way", + "id": 902765077, + "bounds": { + "minlat": 40.7748380, + "minlon": -73.9328870, + "maxlat": 40.7751780, + "maxlon": -73.9318505 + }, + "nodes": [ + 8384849975, + 8384849977, + 8384849976 + ], + "geometry": [ + { "lat": 40.7751780, "lon": -73.9328870 }, + { "lat": 40.7749501, "lon": -73.9321922 }, + { "lat": 40.7748380, "lon": -73.9318505 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 902765078, + "bounds": { + "minlat": 40.7744143, + "minlon": -73.9324654, + "maxlat": 40.7749501, + "maxlon": -73.9321922 + }, + "nodes": [ + 8384849977, + 8535616227, + 8384849978, + 5487886287 + ], + "geometry": [ + { "lat": 40.7749501, "lon": -73.9321922 }, + { "lat": 40.7746202, "lon": -73.9323604 }, + { "lat": 40.7744981, "lon": -73.9324227 }, + { "lat": 40.7744143, "lon": -73.9324654 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 902797233, + "bounds": { + "minlat": 40.8495410, + "minlon": -73.9386521, + "maxlat": 40.8499993, + "maxlon": -73.9363970 + }, + "nodes": [ + 42427185, + 9563821104, + 8151650892, + 9550791785, + 42428094 + ], + "geometry": [ + { "lat": 40.8499993, "lon": -73.9386521 }, + { "lat": 40.8499793, "lon": -73.9385527 }, + { "lat": 40.8498100, "lon": -73.9376989 }, + { "lat": 40.8495805, "lon": -73.9365440 }, + { "lat": 40.8495410, "lon": -73.9363970 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 180th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "180th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 902816136, + "bounds": { + "minlat": 40.8663360, + "minlon": -73.9259190, + "maxlat": 40.8677690, + "maxlon": -73.9250050 + }, + "nodes": [ + 42429217, + 8952423314, + 11591951231, + 42445637, + 8952423301, + 42445640 + ], + "geometry": [ + { "lat": 40.8663360, "lon": -73.9250050 }, + { "lat": 40.8664388, "lon": -73.9250706 }, + { "lat": 40.8667389, "lon": -73.9252622 }, + { "lat": 40.8671330, "lon": -73.9255140 }, + { "lat": 40.8676991, "lon": -73.9258730 }, + { "lat": 40.8677690, "lon": -73.9259190 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Academy Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Academy", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 902816137, + "bounds": { + "minlat": 40.8712764, + "minlon": -73.9150560, + "maxlat": 40.8716030, + "maxlon": -73.9142646 + }, + "nodes": [ + 7779712802, + 11587349737, + 5458505414, + 42429705 + ], + "geometry": [ + { "lat": 40.8712764, "lon": -73.9142646 }, + { "lat": 40.8712880, "lon": -73.9142931 }, + { "lat": 40.8714809, "lon": -73.9147693 }, + { "lat": 40.8716030, "lon": -73.9150560 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "foot": "yes", + "highway": "tertiary", + "inline_skates": "yes", + "name": "West 218th Street", + "segregated": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "218th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034" + } +}, +{ + "type": "way", + "id": 902854861, + "bounds": { + "minlat": 40.8391692, + "minlon": -73.9151570, + "maxlat": 40.8392427, + "maxlon": -73.9151086 + }, + "nodes": [ + 2327276555, + 42739226 + ], + "geometry": [ + { "lat": 40.8391692, "lon": -73.9151570 }, + { "lat": 40.8392427, "lon": -73.9151086 } + ], + "tags": { + "highway": "residential", + "name": "Wythe Place", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 902854862, + "bounds": { + "minlat": 40.8389480, + "minlon": -73.9164290, + "maxlat": 40.8395674, + "maxlon": -73.9159531 + }, + "nodes": [ + 42733773, + 5762102238, + 13018505017, + 42733768 + ], + "geometry": [ + { "lat": 40.8395674, "lon": -73.9159531 }, + { "lat": 40.8394883, "lon": -73.9160131 }, + { "lat": 40.8390114, "lon": -73.9163800 }, + { "lat": 40.8389480, "lon": -73.9164290 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 902854863, + "bounds": { + "minlat": 40.8447268, + "minlon": -73.9122647, + "maxlat": 40.8450190, + "maxlon": -73.9120565 + }, + "nodes": [ + 596669030, + 12044956259, + 42733795 + ], + "geometry": [ + { "lat": 40.8450190, "lon": -73.9120565 }, + { "lat": 40.8448271, "lon": -73.9121937 }, + { "lat": 40.8447268, "lon": -73.9122647 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "2", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 902854864, + "bounds": { + "minlat": 40.8432632, + "minlon": -73.9121079, + "maxlat": 40.8433352, + "maxlon": -73.9119223 + }, + "nodes": [ + 42741344, + 2408354082 + ], + "geometry": [ + { "lat": 40.8432632, "lon": -73.9119223 }, + { "lat": 40.8433352, "lon": -73.9121079 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "East Mount Eden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Eden", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 902856569, + "bounds": { + "minlat": 40.8785310, + "minlon": -73.9224177, + "maxlat": 40.8855808, + "maxlon": -73.9187665 + }, + "nodes": [ + 42733310, + 886041650, + 886041651, + 1545167925, + 7461410956, + 1545167917, + 1545168012, + 1545196722, + 1545196674, + 42782677, + 1545196723, + 1545196729, + 1545196725, + 1545196681, + 42750160, + 1545196677, + 1545196664, + 1545196649, + 1545196657, + 1545196668, + 1545196731, + 1545196698, + 1545196687, + 1545196694, + 1545196738, + 1545196667, + 1545196685, + 1545196717, + 1545196713, + 42782683, + 1545196742, + 1545196696, + 10130977032, + 42771756, + 1545196739, + 10130977125, + 1545207042, + 13716444757, + 1545207071, + 1545207055, + 8003296012, + 42782689, + 1545207061, + 2520207198, + 2520207194, + 1545207070, + 1545207072, + 1545207083, + 10130977124, + 1545207051, + 42747790, + 10130976935, + 2520309235, + 2520260899, + 2520309237, + 2520309233, + 7651914604, + 2520410140, + 2520309230, + 42782695, + 42770888, + 2520449193, + 2520449227, + 2520449223, + 2520449189, + 2520449208, + 2520449198, + 42748885 + ], + "geometry": [ + { "lat": 40.8785310, "lon": -73.9196089 }, + { "lat": 40.8788038, "lon": -73.9197795 }, + { "lat": 40.8788879, "lon": -73.9198336 }, + { "lat": 40.8790497, "lon": -73.9199793 }, + { "lat": 40.8792143, "lon": -73.9201843 }, + { "lat": 40.8792382, "lon": -73.9202141 }, + { "lat": 40.8792924, "lon": -73.9203092 }, + { "lat": 40.8793346, "lon": -73.9204015 }, + { "lat": 40.8793638, "lon": -73.9205133 }, + { "lat": 40.8793722, "lon": -73.9206238 }, + { "lat": 40.8793828, "lon": -73.9207238 }, + { "lat": 40.8793902, "lon": -73.9207990 }, + { "lat": 40.8794132, "lon": -73.9208734 }, + { "lat": 40.8794453, "lon": -73.9209141 }, + { "lat": 40.8795139, "lon": -73.9209701 }, + { "lat": 40.8795861, "lon": -73.9210154 }, + { "lat": 40.8796477, "lon": -73.9210500 }, + { "lat": 40.8797224, "lon": -73.9210948 }, + { "lat": 40.8797957, "lon": -73.9211687 }, + { "lat": 40.8798633, "lon": -73.9212645 }, + { "lat": 40.8799139, "lon": -73.9213624 }, + { "lat": 40.8799463, "lon": -73.9214961 }, + { "lat": 40.8799509, "lon": -73.9216243 }, + { "lat": 40.8799392, "lon": -73.9217504 }, + { "lat": 40.8799386, "lon": -73.9218762 }, + { "lat": 40.8799614, "lon": -73.9219990 }, + { "lat": 40.8799927, "lon": -73.9221202 }, + { "lat": 40.8800385, "lon": -73.9222202 }, + { "lat": 40.8800955, "lon": -73.9223126 }, + { "lat": 40.8801673, "lon": -73.9223839 }, + { "lat": 40.8802646, "lon": -73.9224139 }, + { "lat": 40.8803367, "lon": -73.9224177 }, + { "lat": 40.8803473, "lon": -73.9224154 }, + { "lat": 40.8804080, "lon": -73.9224024 }, + { "lat": 40.8805170, "lon": -73.9223540 }, + { "lat": 40.8805420, "lon": -73.9223419 }, + { "lat": 40.8810071, "lon": -73.9221169 }, + { "lat": 40.8811999, "lon": -73.9219880 }, + { "lat": 40.8812125, "lon": -73.9219796 }, + { "lat": 40.8813433, "lon": -73.9218762 }, + { "lat": 40.8814179, "lon": -73.9217954 }, + { "lat": 40.8815686, "lon": -73.9216323 }, + { "lat": 40.8820103, "lon": -73.9211339 }, + { "lat": 40.8820440, "lon": -73.9210854 }, + { "lat": 40.8822106, "lon": -73.9208357 }, + { "lat": 40.8822918, "lon": -73.9207091 }, + { "lat": 40.8823827, "lon": -73.9205891 }, + { "lat": 40.8824924, "lon": -73.9204760 }, + { "lat": 40.8826100, "lon": -73.9203804 }, + { "lat": 40.8826367, "lon": -73.9203587 }, + { "lat": 40.8827190, "lon": -73.9203072 }, + { "lat": 40.8828401, "lon": -73.9202406 }, + { "lat": 40.8829329, "lon": -73.9202047 }, + { "lat": 40.8830746, "lon": -73.9201656 }, + { "lat": 40.8831823, "lon": -73.9201325 }, + { "lat": 40.8832797, "lon": -73.9200951 }, + { "lat": 40.8836313, "lon": -73.9199486 }, + { "lat": 40.8838486, "lon": -73.9198580 }, + { "lat": 40.8840258, "lon": -73.9197740 }, + { "lat": 40.8842079, "lon": -73.9196721 }, + { "lat": 40.8848050, "lon": -73.9192670 }, + { "lat": 40.8848911, "lon": -73.9192188 }, + { "lat": 40.8850192, "lon": -73.9191501 }, + { "lat": 40.8851344, "lon": -73.9190877 }, + { "lat": 40.8852395, "lon": -73.9190188 }, + { "lat": 40.8853632, "lon": -73.9189303 }, + { "lat": 40.8854918, "lon": -73.9188298 }, + { "lat": 40.8855808, "lon": -73.9187665 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "name:etymology:wikidata": "Q3338968", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10471", + "tiger:zip_right": "10471" + } +}, +{ + "type": "way", + "id": 902919827, + "bounds": { + "minlat": 40.7458549, + "minlon": -73.9987059, + "maxlat": 40.7460537, + "maxlon": -73.9986293 + }, + "nodes": [ + 8386198042, + 8386198043, + 8386198046, + 10171509261, + 8386198044, + 8386198045 + ], + "geometry": [ + { "lat": 40.7458549, "lon": -73.9987059 }, + { "lat": 40.7459427, "lon": -73.9986620 }, + { "lat": 40.7459519, "lon": -73.9986575 }, + { "lat": 40.7459617, "lon": -73.9986527 }, + { "lat": 40.7459764, "lon": -73.9986455 }, + { "lat": 40.7460537, "lon": -73.9986293 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 902926738, + "bounds": { + "minlat": 40.7227864, + "minlon": -73.9775777, + "maxlat": 40.7229507, + "maxlon": -73.9774577 + }, + "nodes": [ + 8386250193, + 8386250194, + 8386250195, + 8386250196 + ], + "geometry": [ + { "lat": 40.7227864, "lon": -73.9775777 }, + { "lat": 40.7228390, "lon": -73.9775393 }, + { "lat": 40.7228520, "lon": -73.9775298 }, + { "lat": 40.7229507, "lon": -73.9774577 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 902938465, + "bounds": { + "minlat": 40.7939555, + "minlon": -73.9384373, + "maxlat": 40.7942429, + "maxlon": -73.9382247 + }, + "nodes": [ + 8386364995, + 8386364996, + 8386364997 + ], + "geometry": [ + { "lat": 40.7939555, "lon": -73.9384373 }, + { "lat": 40.7940511, "lon": -73.9383638 }, + { "lat": 40.7942429, "lon": -73.9382247 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 902947891, + "bounds": { + "minlat": 40.8602654, + "minlon": -73.9734861, + "maxlat": 40.8605262, + "maxlon": -73.9730406 + }, + "nodes": [ + 8386447807, + 8386447808 + ], + "geometry": [ + { "lat": 40.8605262, "lon": -73.9734861 }, + { "lat": 40.8602654, "lon": -73.9730406 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903116994, + "bounds": { + "minlat": 40.7427966, + "minlon": -73.9887674, + "maxlat": 40.7428760, + "maxlon": -73.9885771 + }, + "nodes": [ + 7372860102, + 42453624, + 3008856931 + ], + "geometry": [ + { "lat": 40.7427966, "lon": -73.9885771 }, + { "lat": 40.7428320, "lon": -73.9886624 }, + { "lat": 40.7428760, "lon": -73.9887674 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 25th Street", + "name:ru": "Западная 25-я стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 903245757, + "bounds": { + "minlat": 40.7954184, + "minlon": -74.0045751, + "maxlat": 40.7955642, + "maxlon": -74.0044759 + }, + "nodes": [ + 8389212919, + 8389212925, + 8389212932, + 8389212927, + 8389212920, + 8389212926, + 8389212921 + ], + "geometry": [ + { "lat": 40.7955642, "lon": -74.0044759 }, + { "lat": 40.7955326, "lon": -74.0045026 }, + { "lat": 40.7955128, "lon": -74.0045194 }, + { "lat": 40.7955061, "lon": -74.0045250 }, + { "lat": 40.7954582, "lon": -74.0045656 }, + { "lat": 40.7954348, "lon": -74.0045751 }, + { "lat": 40.7954184, "lon": -74.0045715 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 903245758, + "bounds": { + "minlat": 40.7953177, + "minlon": -74.0045250, + "maxlat": 40.7955061, + "maxlon": -74.0041290 + }, + "nodes": [ + 8389212929, + 8389212928, + 8389212930, + 8389212927 + ], + "geometry": [ + { "lat": 40.7953177, "lon": -74.0041290 }, + { "lat": 40.7953576, "lon": -74.0042146 }, + { "lat": 40.7953733, "lon": -74.0042473 }, + { "lat": 40.7955061, "lon": -74.0045250 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 903245759, + "bounds": { + "minlat": 40.7952320, + "minlon": -74.0045715, + "maxlat": 40.7954184, + "maxlon": -74.0041982 + }, + "nodes": [ + 8389212921, + 8389212922, + 8389212931, + 8389212923, + 8389212924 + ], + "geometry": [ + { "lat": 40.7954184, "lon": -74.0045715 }, + { "lat": 40.7953936, "lon": -74.0045361 }, + { "lat": 40.7952871, "lon": -74.0043115 }, + { "lat": 40.7952738, "lon": -74.0042835 }, + { "lat": 40.7952320, "lon": -74.0041982 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 903344940, + "bounds": { + "minlat": 40.7691845, + "minlon": -73.9834848, + "maxlat": 40.7694145, + "maxlon": -73.9833131 + }, + "nodes": [ + 8390080232, + 13198417090, + 10075099510, + 8390080233 + ], + "geometry": [ + { "lat": 40.7691845, "lon": -73.9834848 }, + { "lat": 40.7692347, "lon": -73.9834474 }, + { "lat": 40.7693318, "lon": -73.9833751 }, + { "lat": 40.7694145, "lon": -73.9833131 } + ], + "tags": { + "bicycle": "no", + "highway": "service", + "lanes": "2", + "motor_vehicle": "destination", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 903344941, + "bounds": { + "minlat": 40.7709871, + "minlon": -73.9811867, + "maxlat": 40.7710358, + "maxlon": -73.9811532 + }, + "nodes": [ + 8390080234, + 8390080235 + ], + "geometry": [ + { "lat": 40.7709871, "lon": -73.9811867 }, + { "lat": 40.7710358, "lon": -73.9811532 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903348974, + "bounds": { + "minlat": 40.7174883, + "minlon": -73.9510816, + "maxlat": 40.7177356, + "maxlon": -73.9510331 + }, + "nodes": [ + 8390132539, + 8390132541, + 8390132542, + 8390132540 + ], + "geometry": [ + { "lat": 40.7174883, "lon": -73.9510331 }, + { "lat": 40.7175569, "lon": -73.9510465 }, + { "lat": 40.7175768, "lon": -73.9510504 }, + { "lat": 40.7177356, "lon": -73.9510816 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 903447111, + "bounds": { + "minlat": 40.7553917, + "minlon": -73.9121680, + "maxlat": 40.7557640, + "maxlon": -73.9119739 + }, + "nodes": [ + 42883022, + 8593793983, + 8501001452, + 8593793990, + 7726598424 + ], + "geometry": [ + { "lat": 40.7557640, "lon": -73.9121680 }, + { "lat": 40.7556499, "lon": -73.9121237 }, + { "lat": 40.7555203, "lon": -73.9120409 }, + { "lat": 40.7554693, "lon": -73.9120144 }, + { "lat": 40.7553917, "lon": -73.9119739 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Newtown Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 903447112, + "bounds": { + "minlat": 40.7553917, + "minlon": -73.9119739, + "maxlat": 40.7555949, + "maxlon": -73.9118088 + }, + "nodes": [ + 7726598424, + 8593793987, + 42807812 + ], + "geometry": [ + { "lat": 40.7553917, "lon": -73.9119739 }, + { "lat": 40.7555363, "lon": -73.9118564 }, + { "lat": 40.7555949, "lon": -73.9118088 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "49th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 903447113, + "bounds": { + "minlat": 40.7555949, + "minlon": -73.9121680, + "maxlat": 40.7557640, + "maxlon": -73.9118088 + }, + "nodes": [ + 42883022, + 9752616892, + 7660830675, + 42807812 + ], + "geometry": [ + { "lat": 40.7557640, "lon": -73.9121680 }, + { "lat": 40.7557113, "lon": -73.9120558 }, + { "lat": 40.7556281, "lon": -73.9118784 }, + { "lat": 40.7555949, "lon": -73.9118088 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 903447114, + "bounds": { + "minlat": 40.7536576, + "minlon": -73.9154457, + "maxlat": 40.7537852, + "maxlon": -73.9146838 + }, + "nodes": [ + 7762273791, + 8088629349, + 8088629348, + 7622888739 + ], + "geometry": [ + { "lat": 40.7537852, "lon": -73.9154457 }, + { "lat": 40.7537673, "lon": -73.9153384 }, + { "lat": 40.7536768, "lon": -73.9148050 }, + { "lat": 40.7536576, "lon": -73.9146838 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|||" + } +}, +{ + "type": "way", + "id": 903447115, + "bounds": { + "minlat": 40.7532950, + "minlon": -73.9134813, + "maxlat": 40.7534588, + "maxlon": -73.9125221 + }, + "nodes": [ + 7762273788, + 8088629345, + 7762273785 + ], + "geometry": [ + { "lat": 40.7534588, "lon": -73.9134813 }, + { "lat": 40.7533093, "lon": -73.9126234 }, + { "lat": 40.7532950, "lon": -73.9125221 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|||" + } +}, +{ + "type": "way", + "id": 903589927, + "bounds": { + "minlat": 40.7195706, + "minlon": -74.0068583, + "maxlat": 40.7197847, + "maxlon": -74.0068153 + }, + "nodes": [ + 42445702, + 8312344403, + 4207150080 + ], + "geometry": [ + { "lat": 40.7197847, "lon": -74.0068153 }, + { "lat": 40.7197146, "lon": -74.0068311 }, + { "lat": 40.7195706, "lon": -74.0068583 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 903589928, + "bounds": { + "minlat": 40.7182780, + "minlon": -74.0070866, + "maxlat": 40.7188700, + "maxlon": -74.0066144 + }, + "nodes": [ + 42453059, + 8312361631, + 13019362629, + 11308790028, + 8312361643, + 11308790069, + 11308790067, + 42448162 + ], + "geometry": [ + { "lat": 40.7188700, "lon": -74.0066144 }, + { "lat": 40.7188350, "lon": -74.0066405 }, + { "lat": 40.7187627, "lon": -74.0066921 }, + { "lat": 40.7185739, "lon": -74.0068270 }, + { "lat": 40.7183147, "lon": -74.0070105 }, + { "lat": 40.7183017, "lon": -74.0070296 }, + { "lat": 40.7182896, "lon": -74.0070532 }, + { "lat": 40.7182780, "lon": -74.0070866 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 903589929, + "bounds": { + "minlat": 40.7165336, + "minlon": -74.0066670, + "maxlat": 40.7168584, + "maxlon": -74.0064105 + }, + "nodes": [ + 42429830, + 8312361665, + 11240615924, + 5216470721 + ], + "geometry": [ + { "lat": 40.7165336, "lon": -74.0066670 }, + { "lat": 40.7165677, "lon": -74.0066400 }, + { "lat": 40.7165990, "lon": -74.0066153 }, + { "lat": 40.7168584, "lon": -74.0064105 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 903593425, + "bounds": { + "minlat": 40.7222849, + "minlon": -73.9866832, + "maxlat": 40.7224155, + "maxlon": -73.9862671 + }, + "nodes": [ + 9166033062, + 4598752856, + 9181587100 + ], + "geometry": [ + { "lat": 40.7222849, "lon": -73.9862671 }, + { "lat": 40.7223291, "lon": -73.9863878 }, + { "lat": 40.7224155, "lon": -73.9866832 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "||right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 903593426, + "bounds": { + "minlat": 40.7234794, + "minlon": -73.9910315, + "maxlat": 40.7237271, + "maxlon": -73.9902426 + }, + "nodes": [ + 42451665, + 5783028393, + 10606695723, + 3927743131, + 42443127 + ], + "geometry": [ + { "lat": 40.7234794, "lon": -73.9902426 }, + { "lat": 40.7235180, "lon": -73.9903641 }, + { "lat": 40.7236633, "lon": -73.9908275 }, + { "lat": 40.7236823, "lon": -73.9908903 }, + { "lat": 40.7237271, "lon": -73.9910315 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 903600410, + "bounds": { + "minlat": 40.7710852, + "minlon": -73.9207723, + "maxlat": 40.7725587, + "maxlon": -73.9187365 + }, + "nodes": [ + 42898273, + 7787345539, + 6453007742, + 42800613, + 3778245588, + 514103140, + 42796436 + ], + "geometry": [ + { "lat": 40.7725587, "lon": -73.9207723 }, + { "lat": 40.7724225, "lon": -73.9205841 }, + { "lat": 40.7721033, "lon": -73.9201431 }, + { "lat": 40.7720618, "lon": -73.9200858 }, + { "lat": 40.7720254, "lon": -73.9200355 }, + { "lat": 40.7717327, "lon": -73.9196311 }, + { "lat": 40.7710852, "lon": -73.9187365 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hoyt Avenue South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 903601802, + "bounds": { + "minlat": 40.8276798, + "minlon": -73.9220947, + "maxlat": 40.8280509, + "maxlon": -73.9219245 + }, + "nodes": [ + 2408446187, + 10126985419, + 2408446186 + ], + "geometry": [ + { "lat": 40.8276798, "lon": -73.9220947 }, + { "lat": 40.8277364, "lon": -73.9220712 }, + { "lat": 40.8280509, "lon": -73.9219245 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 903609601, + "bounds": { + "minlat": 40.8099198, + "minlon": -73.9290654, + "maxlat": 40.8100072, + "maxlon": -73.9288715 + }, + "nodes": [ + 8285464363, + 11882279782, + 7554088551 + ], + "geometry": [ + { "lat": 40.8100072, "lon": -73.9290654 }, + { "lat": 40.8099717, "lon": -73.9290138 }, + { "lat": 40.8099198, "lon": -73.9288715 } + ], + "tags": { + "highway": "residential", + "name": "East 136th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "136th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 903609602, + "bounds": { + "minlat": 40.8098839, + "minlon": -73.9287765, + "maxlat": 40.8101019, + "maxlon": -73.9285461 + }, + "nodes": [ + 4831004965, + 7554088550 + ], + "geometry": [ + { "lat": 40.8101019, "lon": -73.9285461 }, + { "lat": 40.8098839, "lon": -73.9287765 } + ], + "tags": { + "alt_name": "Third Avenue", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 903609603, + "bounds": { + "minlat": 40.8105662, + "minlon": -73.9278974, + "maxlat": 40.8106117, + "maxlon": -73.9278337 + }, + "nodes": [ + 2323814568, + 9582307236 + ], + "geometry": [ + { "lat": 40.8106117, "lon": -73.9278337 }, + { "lat": 40.8105662, "lon": -73.9278974 } + ], + "tags": { + "alt_name": "Third Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 903609604, + "bounds": { + "minlat": 40.8099198, + "minlon": -73.9288715, + "maxlat": 40.8101019, + "maxlon": -73.9285461 + }, + "nodes": [ + 4831004965, + 7554088551 + ], + "geometry": [ + { "lat": 40.8101019, "lon": -73.9285461 }, + { "lat": 40.8099198, "lon": -73.9288715 } + ], + "tags": { + "alt_name": "Third Avenue", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "OSM US TIGER 2012 Roads Overly", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 903609605, + "bounds": { + "minlat": 40.8114982, + "minlon": -73.9263975, + "maxlat": 40.8119347, + "maxlon": -73.9255654 + }, + "nodes": [ + 42768489, + 11217140036, + 9163778724, + 2826997295 + ], + "geometry": [ + { "lat": 40.8119347, "lon": -73.9255654 }, + { "lat": 40.8118994, "lon": -73.9256369 }, + { "lat": 40.8115530, "lon": -73.9263381 }, + { "lat": 40.8114982, "lon": -73.9263975 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "cycleway:both:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 903609606, + "bounds": { + "minlat": 40.8145581, + "minlon": -73.9204742, + "maxlat": 40.8146584, + "maxlon": -73.9202818 + }, + "nodes": [ + 42745889, + 11217140021, + 7555037305 + ], + "geometry": [ + { "lat": 40.8146584, "lon": -73.9202818 }, + { "lat": 40.8146148, "lon": -73.9203656 }, + { "lat": 40.8145581, "lon": -73.9204742 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 903609607, + "bounds": { + "minlat": 40.8274597, + "minlon": -73.9121468, + "maxlat": 40.8278766, + "maxlon": -73.9120185 + }, + "nodes": [ + 42776419, + 12038440378, + 7560827239 + ], + "geometry": [ + { "lat": 40.8278766, "lon": -73.9120185 }, + { "lat": 40.8277844, "lon": -73.9120469 }, + { "lat": 40.8274597, "lon": -73.9121468 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both:buffer": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Melrose Avenue", + "oneway": "yes", + "parking:lane:both": "no_parking", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Melrose", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 903609608, + "bounds": { + "minlat": 40.8278249, + "minlon": -73.9120185, + "maxlat": 40.8278766, + "maxlon": -73.9118515 + }, + "nodes": [ + 42776419, + 8187805320 + ], + "geometry": [ + { "lat": 40.8278766, "lon": -73.9120185 }, + { "lat": 40.8278249, "lon": -73.9118515 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "tertiary", + "name": "East 165th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 903609609, + "bounds": { + "minlat": 40.8277596, + "minlon": -73.9118515, + "maxlat": 40.8278249, + "maxlon": -73.9116734 + }, + "nodes": [ + 8187805320, + 7560827238 + ], + "geometry": [ + { "lat": 40.8278249, "lon": -73.9118515 }, + { "lat": 40.8277596, "lon": -73.9116734 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "tertiary", + "name": "East 165th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 903609610, + "bounds": { + "minlat": 40.8278766, + "minlon": -73.9121734, + "maxlat": 40.8279143, + "maxlon": -73.9120185 + }, + "nodes": [ + 2827547781, + 42776419 + ], + "geometry": [ + { "lat": 40.8279143, "lon": -73.9121734 }, + { "lat": 40.8278766, "lon": -73.9120185 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "tertiary", + "name": "East 165th Street", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 903633985, + "bounds": { + "minlat": 40.7007222, + "minlon": -73.9798844, + "maxlat": 40.7008191, + "maxlon": -73.9793167 + }, + "nodes": [ + 8392587063, + 8392587064, + 8392587065 + ], + "geometry": [ + { "lat": 40.7008191, "lon": -73.9798844 }, + { "lat": 40.7008129, "lon": -73.9798146 }, + { "lat": 40.7007222, "lon": -73.9793167 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 903663405, + "bounds": { + "minlat": 40.8483296, + "minlon": -73.9147038, + "maxlat": 40.8487037, + "maxlon": -73.9144597 + }, + "nodes": [ + 8392852828, + 8392852832, + 8392852829, + 8392852830, + 8392852831 + ], + "geometry": [ + { "lat": 40.8487037, "lon": -73.9144597 }, + { "lat": 40.8486267, "lon": -73.9145083 }, + { "lat": 40.8485497, "lon": -73.9145570 }, + { "lat": 40.8484134, "lon": -73.9146502 }, + { "lat": 40.8483296, "lon": -73.9147038 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 903664285, + "bounds": { + "minlat": 40.7878782, + "minlon": -73.9314103, + "maxlat": 40.7883023, + "maxlon": -73.9304994 + }, + "nodes": [ + 3036229833, + 8392872044, + 8392872045, + 8392872046, + 13773047381, + 8392872047 + ], + "geometry": [ + { "lat": 40.7883023, "lon": -73.9314103 }, + { "lat": 40.7882858, "lon": -73.9313294 }, + { "lat": 40.7882685, "lon": -73.9312888 }, + { "lat": 40.7881920, "lon": -73.9311357 }, + { "lat": 40.7879781, "lon": -73.9307020 }, + { "lat": 40.7878782, "lon": -73.9304994 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 903664848, + "bounds": { + "minlat": 40.7399625, + "minlon": -73.9073672, + "maxlat": 40.7399810, + "maxlon": -73.9066352 + }, + "nodes": [ + 8392882422, + 10203222036, + 8392882423, + 13703038174, + 13712871581 + ], + "geometry": [ + { "lat": 40.7399810, "lon": -73.9073672 }, + { "lat": 40.7399793, "lon": -73.9072906 }, + { "lat": 40.7399785, "lon": -73.9072555 }, + { "lat": 40.7399665, "lon": -73.9067875 }, + { "lat": 40.7399625, "lon": -73.9066352 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 903667804, + "bounds": { + "minlat": 40.7358886, + "minlon": -73.9841403, + "maxlat": 40.7361179, + "maxlon": -73.9837610 + }, + "nodes": [ + 8392896508, + 10173112099, + 8392896510, + 8392896511, + 8392896512, + 9035535220, + 10173112100, + 8392896513 + ], + "geometry": [ + { "lat": 40.7358886, "lon": -73.9837726 }, + { "lat": 40.7359563, "lon": -73.9837646 }, + { "lat": 40.7359888, "lon": -73.9837610 }, + { "lat": 40.7360483, "lon": -73.9837968 }, + { "lat": 40.7361179, "lon": -73.9839573 }, + { "lat": 40.7361112, "lon": -73.9840431 }, + { "lat": 40.7360886, "lon": -73.9840762 }, + { "lat": 40.7360447, "lon": -73.9841403 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 903685832, + "bounds": { + "minlat": 40.7582381, + "minlon": -73.9653870, + "maxlat": 40.7584664, + "maxlon": -73.9653060 + }, + "nodes": [ + 8393007180, + 10173292587, + 8393007181, + 8393007182, + 8393007183, + 8393007184, + 8393007185 + ], + "geometry": [ + { "lat": 40.7584664, "lon": -73.9653695 }, + { "lat": 40.7584010, "lon": -73.9653829 }, + { "lat": 40.7583809, "lon": -73.9653870 }, + { "lat": 40.7583470, "lon": -73.9653870 }, + { "lat": 40.7583169, "lon": -73.9653746 }, + { "lat": 40.7582680, "lon": -73.9653411 }, + { "lat": 40.7582381, "lon": -73.9653060 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 903685833, + "bounds": { + "minlat": 40.7581507, + "minlon": -73.9653060, + "maxlat": 40.7582381, + "maxlon": -73.9651048 + }, + "nodes": [ + 8393007185, + 8393007186 + ], + "geometry": [ + { "lat": 40.7582381, "lon": -73.9653060 }, + { "lat": 40.7581507, "lon": -73.9651048 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 903685834, + "bounds": { + "minlat": 40.7581439, + "minlon": -73.9651048, + "maxlat": 40.7582417, + "maxlon": -73.9648430 + }, + "nodes": [ + 8393007186, + 8393007187, + 8393007188, + 8393007189, + 8393007190, + 8393007191 + ], + "geometry": [ + { "lat": 40.7581507, "lon": -73.9651048 }, + { "lat": 40.7581439, "lon": -73.9650406 }, + { "lat": 40.7581495, "lon": -73.9649760 }, + { "lat": 40.7581664, "lon": -73.9649301 }, + { "lat": 40.7581890, "lon": -73.9648940 }, + { "lat": 40.7582417, "lon": -73.9648430 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 903708065, + "bounds": { + "minlat": 40.7590390, + "minlon": -73.9940817, + "maxlat": 40.7591606, + "maxlon": -73.9939913 + }, + "nodes": [ + 8393222916, + 10613636824, + 8393241417 + ], + "geometry": [ + { "lat": 40.7591606, "lon": -73.9939913 }, + { "lat": 40.7591467, "lon": -73.9940016 }, + { "lat": 40.7590390, "lon": -73.9940817 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 903708066, + "bounds": { + "minlat": 40.7589778, + "minlon": -73.9939368, + "maxlat": 40.7590999, + "maxlon": -73.9938474 + }, + "nodes": [ + 42434439, + 10613636823, + 8393241418 + ], + "geometry": [ + { "lat": 40.7589778, "lon": -73.9939368 }, + { "lat": 40.7590855, "lon": -73.9938580 }, + { "lat": 40.7590999, "lon": -73.9938474 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 903735306, + "bounds": { + "minlat": 40.8246294, + "minlon": -73.9285282, + "maxlat": 40.8246693, + "maxlon": -73.9284180 + }, + "nodes": [ + 8393462614, + 8393462615 + ], + "geometry": [ + { "lat": 40.8246294, "lon": -73.9285282 }, + { "lat": 40.8246693, "lon": -73.9284180 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 903735307, + "bounds": { + "minlat": 40.8248333, + "minlon": -73.9286585, + "maxlat": 40.8248741, + "maxlon": -73.9285475 + }, + "nodes": [ + 8393462616, + 8393470317 + ], + "geometry": [ + { "lat": 40.8248333, "lon": -73.9286585 }, + { "lat": 40.8248741, "lon": -73.9285475 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 903735308, + "bounds": { + "minlat": 40.8250219, + "minlon": -73.9287739, + "maxlat": 40.8250595, + "maxlon": -73.9286648 + }, + "nodes": [ + 8393470318, + 8393470319 + ], + "geometry": [ + { "lat": 40.8250219, "lon": -73.9287739 }, + { "lat": 40.8250595, "lon": -73.9286648 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 903735309, + "bounds": { + "minlat": 40.8245250, + "minlon": -73.9279932, + "maxlat": 40.8245682, + "maxlon": -73.9278680 + }, + "nodes": [ + 8393470320, + 7043070572 + ], + "geometry": [ + { "lat": 40.8245682, "lon": -73.9279932 }, + { "lat": 40.8245250, "lon": -73.9278680 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 903748931, + "bounds": { + "minlat": 40.7481448, + "minlon": -73.9118210, + "maxlat": 40.7483418, + "maxlon": -73.9112164 + }, + "nodes": [ + 4621136456, + 10762221357, + 8393554895, + 8393554896, + 8393554897, + 8393554898, + 8393554899, + 8393554900, + 8393554901 + ], + "geometry": [ + { "lat": 40.7483418, "lon": -73.9118210 }, + { "lat": 40.7483334, "lon": -73.9117572 }, + { "lat": 40.7482998, "lon": -73.9115002 }, + { "lat": 40.7482840, "lon": -73.9114673 }, + { "lat": 40.7482523, "lon": -73.9114554 }, + { "lat": 40.7482037, "lon": -73.9114628 }, + { "lat": 40.7481856, "lon": -73.9114464 }, + { "lat": 40.7481697, "lon": -73.9114001 }, + { "lat": 40.7481448, "lon": -73.9112164 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903763306, + "bounds": { + "minlat": 40.8743246, + "minlon": -73.9087332, + "maxlat": 40.8744912, + "maxlon": -73.9085041 + }, + "nodes": [ + 8393678990, + 8393678991 + ], + "geometry": [ + { "lat": 40.8743246, "lon": -73.9085041 }, + { "lat": 40.8744912, "lon": -73.9087332 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 903773457, + "bounds": { + "minlat": 40.7206657, + "minlon": -73.9443448, + "maxlat": 40.7207445, + "maxlon": -73.9442873 + }, + "nodes": [ + 8393782837, + 8393782838 + ], + "geometry": [ + { "lat": 40.7207445, "lon": -73.9443448 }, + { "lat": 40.7206657, "lon": -73.9442873 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903773458, + "bounds": { + "minlat": 40.7204419, + "minlon": -73.9443770, + "maxlat": 40.7205311, + "maxlon": -73.9441167 + }, + "nodes": [ + 8393782847, + 8393782840, + 8393782841, + 8393782849, + 8393782842 + ], + "geometry": [ + { "lat": 40.7205311, "lon": -73.9441167 }, + { "lat": 40.7205076, "lon": -73.9441696 }, + { "lat": 40.7204563, "lon": -73.9442784 }, + { "lat": 40.7204419, "lon": -73.9443618 }, + { "lat": 40.7204591, "lon": -73.9443770 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903773459, + "bounds": { + "minlat": 40.7205380, + "minlon": -73.9445312, + "maxlat": 40.7206677, + "maxlon": -73.9444346 + }, + "nodes": [ + 8393782843, + 8393782844 + ], + "geometry": [ + { "lat": 40.7205380, "lon": -73.9444346 }, + { "lat": 40.7206677, "lon": -73.9445312 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903773460, + "bounds": { + "minlat": 40.7204591, + "minlon": -73.9444346, + "maxlat": 40.7205380, + "maxlon": -73.9443770 + }, + "nodes": [ + 8393782842, + 8393782843 + ], + "geometry": [ + { "lat": 40.7204591, "lon": -73.9443770 }, + { "lat": 40.7205380, "lon": -73.9444346 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 903773461, + "bounds": { + "minlat": 40.7205674, + "minlon": -73.9444628, + "maxlat": 40.7206957, + "maxlon": -73.9443645 + }, + "nodes": [ + 8393782846, + 6166803114 + ], + "geometry": [ + { "lat": 40.7205674, "lon": -73.9443645 }, + { "lat": 40.7206957, "lon": -73.9444628 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903773462, + "bounds": { + "minlat": 40.7204884, + "minlon": -73.9443645, + "maxlat": 40.7205674, + "maxlon": -73.9443070 + }, + "nodes": [ + 8393782845, + 8393782846 + ], + "geometry": [ + { "lat": 40.7204884, "lon": -73.9443070 }, + { "lat": 40.7205674, "lon": -73.9443645 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 903773463, + "bounds": { + "minlat": 40.7205076, + "minlon": -73.9441929, + "maxlat": 40.7205362, + "maxlon": -73.9441696 + }, + "nodes": [ + 8393782839, + 8393782840 + ], + "geometry": [ + { "lat": 40.7205362, "lon": -73.9441929 }, + { "lat": 40.7205076, "lon": -73.9441696 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903773464, + "bounds": { + "minlat": 40.7205362, + "minlon": -73.9442873, + "maxlat": 40.7206657, + "maxlon": -73.9441929 + }, + "nodes": [ + 8393782838, + 8393782839 + ], + "geometry": [ + { "lat": 40.7206657, "lon": -73.9442873 }, + { "lat": 40.7205362, "lon": -73.9441929 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 903773465, + "bounds": { + "minlat": 40.7204123, + "minlon": -73.9444814, + "maxlat": 40.7204419, + "maxlon": -73.9443618 + }, + "nodes": [ + 8393782848, + 9789356789, + 8393782849 + ], + "geometry": [ + { "lat": 40.7204123, "lon": -73.9444814 }, + { "lat": 40.7204281, "lon": -73.9444175 }, + { "lat": 40.7204419, "lon": -73.9443618 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903773466, + "bounds": { + "minlat": 40.7205642, + "minlon": -73.9442202, + "maxlat": 40.7206938, + "maxlon": -73.9441258 + }, + "nodes": [ + 8393782852, + 8393782851 + ], + "geometry": [ + { "lat": 40.7205642, "lon": -73.9441258 }, + { "lat": 40.7206938, "lon": -73.9442202 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 903773467, + "bounds": { + "minlat": 40.7206938, + "minlon": -73.9444628, + "maxlat": 40.7207720, + "maxlon": -73.9442202 + }, + "nodes": [ + 8393782851, + 6166803111, + 8393782837, + 6166803114 + ], + "geometry": [ + { "lat": 40.7206938, "lon": -73.9442202 }, + { "lat": 40.7207720, "lon": -73.9442777 }, + { "lat": 40.7207445, "lon": -73.9443448 }, + { "lat": 40.7206957, "lon": -73.9444628 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903774676, + "bounds": { + "minlat": 40.7562069, + "minlon": -73.9402121, + "maxlat": 40.7563072, + "maxlon": -73.9400015 + }, + "nodes": [ + 8393785142, + 11623207017, + 8393785143, + 8393785144 + ], + "geometry": [ + { "lat": 40.7563072, "lon": -73.9402121 }, + { "lat": 40.7562453, "lon": -73.9401013 }, + { "lat": 40.7562069, "lon": -73.9400326 }, + { "lat": 40.7562409, "lon": -73.9400015 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903774677, + "bounds": { + "minlat": 40.7563201, + "minlon": -73.9399241, + "maxlat": 40.7563894, + "maxlon": -73.9398564 + }, + "nodes": [ + 8393785145, + 11623207018, + 8393785146 + ], + "geometry": [ + { "lat": 40.7563201, "lon": -73.9399241 }, + { "lat": 40.7563492, "lon": -73.9398957 }, + { "lat": 40.7563894, "lon": -73.9398564 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903774678, + "bounds": { + "minlat": 40.7562409, + "minlon": -73.9400015, + "maxlat": 40.7563201, + "maxlon": -73.9399241 + }, + "nodes": [ + 8393785144, + 8393785145 + ], + "geometry": [ + { "lat": 40.7562409, "lon": -73.9400015 }, + { "lat": 40.7563201, "lon": -73.9399241 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 903793554, + "bounds": { + "minlat": 40.7680638, + "minlon": -73.9606726, + "maxlat": 40.7681846, + "maxlon": -73.9605835 + }, + "nodes": [ + 8393918884, + 10171234738, + 8393918885 + ], + "geometry": [ + { "lat": 40.7680638, "lon": -73.9606726 }, + { "lat": 40.7681173, "lon": -73.9606331 }, + { "lat": 40.7681846, "lon": -73.9605835 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 903793555, + "bounds": { + "minlat": 40.7685655, + "minlon": -73.9603104, + "maxlat": 40.7687013, + "maxlon": -73.9602107 + }, + "nodes": [ + 8393918886, + 10227766683, + 8393918887 + ], + "geometry": [ + { "lat": 40.7685655, "lon": -73.9603104 }, + { "lat": 40.7686359, "lon": -73.9602587 }, + { "lat": 40.7687013, "lon": -73.9602107 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 903942434, + "bounds": { + "minlat": 40.8423480, + "minlon": -73.9392536, + "maxlat": 40.8424468, + "maxlon": -73.9388884 + }, + "nodes": [ + 13319791779, + 2499757474, + 9908577554, + 2499757476, + 9908577553, + 9908577552, + 2499757480, + 11758679650, + 42428984 + ], + "geometry": [ + { "lat": 40.8423784, "lon": -73.9388884 }, + { "lat": 40.8423686, "lon": -73.9389031 }, + { "lat": 40.8423566, "lon": -73.9389341 }, + { "lat": 40.8423493, "lon": -73.9389674 }, + { "lat": 40.8423480, "lon": -73.9389957 }, + { "lat": 40.8423536, "lon": -73.9390307 }, + { "lat": 40.8423614, "lon": -73.9390612 }, + { "lat": 40.8423864, "lon": -73.9391174 }, + { "lat": 40.8424468, "lon": -73.9392536 } + ], + "tags": { + "alt_name": "Juan Pablo Duarte Square", + "cycleway:right": "shared_lane", + "description": "This honorary street name memorializes Juan Pablo Duarte.", + "hgv": "destination", + "highway": "secondary", + "historic": "memorial", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 903996538, + "bounds": { + "minlat": 40.8634510, + "minlon": -73.9246753, + "maxlat": 40.8638973, + "maxlon": -73.9234442 + }, + "nodes": [ + 8395710040, + 9561420873, + 12181468788, + 8395710041 + ], + "geometry": [ + { "lat": 40.8638973, "lon": -73.9234442 }, + { "lat": 40.8638612, "lon": -73.9235439 }, + { "lat": 40.8637768, "lon": -73.9237768 }, + { "lat": 40.8634510, "lon": -73.9246753 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 903997540, + "bounds": { + "minlat": 40.7954540, + "minlon": -73.9674272, + "maxlat": 40.7958785, + "maxlon": -73.9669603 + }, + "nodes": [ + 8395708460, + 8395708461, + 8395708462, + 8395708463, + 8395708464, + 8395708465, + 8395708466, + 8395708467, + 8395708468, + 8395708469, + 7571410124 + ], + "geometry": [ + { "lat": 40.7954540, "lon": -73.9672120 }, + { "lat": 40.7957676, "lon": -73.9669682 }, + { "lat": 40.7957894, "lon": -73.9669603 }, + { "lat": 40.7958171, "lon": -73.9669812 }, + { "lat": 40.7958429, "lon": -73.9670283 }, + { "lat": 40.7958746, "lon": -73.9670989 }, + { "lat": 40.7958785, "lon": -73.9671342 }, + { "lat": 40.7958696, "lon": -73.9671643 }, + { "lat": 40.7958468, "lon": -73.9671996 }, + { "lat": 40.7957795, "lon": -73.9672676 }, + { "lat": 40.7955448, "lon": -73.9674272 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 904000411, + "bounds": { + "minlat": 40.8779947, + "minlon": -73.9179723, + "maxlat": 40.8781303, + "maxlon": -73.9175608 + }, + "nodes": [ + 8395733679, + 13041475420, + 8395733680, + 8395733681, + 8395733682, + 8395733683, + 8395733684, + 8395733685, + 8395733686 + ], + "geometry": [ + { "lat": 40.8779947, "lon": -73.9175608 }, + { "lat": 40.8780343, "lon": -73.9176205 }, + { "lat": 40.8780554, "lon": -73.9176525 }, + { "lat": 40.8780921, "lon": -73.9177106 }, + { "lat": 40.8781161, "lon": -73.9177615 }, + { "lat": 40.8781281, "lon": -73.9177981 }, + { "lat": 40.8781303, "lon": -73.9178479 }, + { "lat": 40.8781245, "lon": -73.9179007 }, + { "lat": 40.8781149, "lon": -73.9179723 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 904032056, + "bounds": { + "minlat": 40.7731898, + "minlon": -73.9864701, + "maxlat": 40.7738240, + "maxlon": -73.9860176 + }, + "nodes": [ + 8396036443, + 9900687749, + 7050687072 + ], + "geometry": [ + { "lat": 40.7738240, "lon": -73.9860176 }, + { "lat": 40.7737815, "lon": -73.9860480 }, + { "lat": 40.7731898, "lon": -73.9864701 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 904033420, + "bounds": { + "minlat": 40.8153575, + "minlon": -73.9536459, + "maxlat": 40.8154729, + "maxlon": -73.9531397 + }, + "nodes": [ + 8396052844, + 10171276009, + 8396052845, + 8396052846, + 8396052847, + 8396052848, + 8396052849 + ], + "geometry": [ + { "lat": 40.8153575, "lon": -73.9536459 }, + { "lat": 40.8154195, "lon": -73.9535968 }, + { "lat": 40.8154416, "lon": -73.9535793 }, + { "lat": 40.8154667, "lon": -73.9535482 }, + { "lat": 40.8154721, "lon": -73.9535069 }, + { "lat": 40.8154729, "lon": -73.9534676 }, + { "lat": 40.8154275, "lon": -73.9531397 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 904036752, + "bounds": { + "minlat": 40.7581681, + "minlon": -73.9862843, + "maxlat": 40.7582527, + "maxlon": -73.9862271 + }, + "nodes": [ + 5522182777, + 8396064851, + 8396064852 + ], + "geometry": [ + { "lat": 40.7582527, "lon": -73.9862271 }, + { "lat": 40.7581885, "lon": -73.9862703 }, + { "lat": 40.7581681, "lon": -73.9862843 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 904126541, + "bounds": { + "minlat": 40.7564413, + "minlon": -73.9840910, + "maxlat": 40.7565117, + "maxlon": -73.9840416 + }, + "nodes": [ + 8396878495, + 8396878496, + 8396878497 + ], + "geometry": [ + { "lat": 40.7565117, "lon": -73.9840416 }, + { "lat": 40.7564530, "lon": -73.9840827 }, + { "lat": 40.7564413, "lon": -73.9840910 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 904126542, + "bounds": { + "minlat": 40.7562539, + "minlon": -73.9853748, + "maxlat": 40.7563246, + "maxlon": -73.9853230 + }, + "nodes": [ + 8396878498, + 8396878499, + 8396878500 + ], + "geometry": [ + { "lat": 40.7562539, "lon": -73.9853748 }, + { "lat": 40.7563109, "lon": -73.9853328 }, + { "lat": 40.7563246, "lon": -73.9853230 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 904165725, + "bounds": { + "minlat": 40.7449538, + "minlon": -73.9920052, + "maxlat": 40.7450423, + "maxlon": -73.9919405 + }, + "nodes": [ + 8397237737, + 10173734567, + 8397237738 + ], + "geometry": [ + { "lat": 40.7450423, "lon": -73.9919405 }, + { "lat": 40.7449769, "lon": -73.9919883 }, + { "lat": 40.7449538, "lon": -73.9920052 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 904485844, + "bounds": { + "minlat": 40.8109714, + "minlon": -73.9272894, + "maxlat": 40.8110916, + "maxlon": -73.9271386 + }, + "nodes": [ + 4207700494, + 3638058983 + ], + "geometry": [ + { "lat": 40.8110916, "lon": -73.9272894 }, + { "lat": 40.8109714, "lon": -73.9271386 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 904485845, + "bounds": { + "minlat": 40.8141422, + "minlon": -73.9191951, + "maxlat": 40.8144879, + "maxlon": -73.9189485 + }, + "nodes": [ + 42745890, + 9908621410, + 9908621413 + ], + "geometry": [ + { "lat": 40.8141422, "lon": -73.9191951 }, + { "lat": 40.8142045, "lon": -73.9191507 }, + { "lat": 40.8144879, "lon": -73.9189485 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 904485846, + "bounds": { + "minlat": 40.8155433, + "minlon": -73.9185885, + "maxlat": 40.8156212, + "maxlon": -73.9184606 + }, + "nodes": [ + 7564299102, + 6415814845, + 42768516 + ], + "geometry": [ + { "lat": 40.8156212, "lon": -73.9184606 }, + { "lat": 40.8155564, "lon": -73.9185663 }, + { "lat": 40.8155433, "lon": -73.9185885 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 904508644, + "bounds": { + "minlat": 40.8284680, + "minlon": -73.9118198, + "maxlat": 40.8288733, + "maxlon": -73.9115553 + }, + "nodes": [ + 42764695, + 13701174396, + 8187805321 + ], + "geometry": [ + { "lat": 40.8288733, "lon": -73.9115553 }, + { "lat": 40.8286449, "lon": -73.9117155 }, + { "lat": 40.8284680, "lon": -73.9118198 } + ], + "tags": { + "highway": "secondary", + "name": "Webster Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 904764085, + "bounds": { + "minlat": 40.8434507, + "minlon": -73.9416342, + "maxlat": 40.8440509, + "maxlon": -73.9411456 + }, + "nodes": [ + 42427146, + 7604384377, + 7604384388, + 42427143 + ], + "geometry": [ + { "lat": 40.8440509, "lon": -73.9411456 }, + { "lat": 40.8439971, "lon": -73.9411873 }, + { "lat": 40.8435122, "lon": -73.9415830 }, + { "lat": 40.8434507, "lon": -73.9416342 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "exclusive", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 904809346, + "bounds": { + "minlat": 40.7135531, + "minlon": -73.9808346, + "maxlat": 40.7136979, + "maxlon": -73.9796274 + }, + "nodes": [ + 42427744, + 8310246481, + 6411125192, + 7499043386, + 7499043385 + ], + "geometry": [ + { "lat": 40.7135531, "lon": -73.9808346 }, + { "lat": 40.7135603, "lon": -73.9807718 }, + { "lat": 40.7136586, "lon": -73.9799187 }, + { "lat": 40.7136848, "lon": -73.9796925 }, + { "lat": 40.7136979, "lon": -73.9796274 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 904809348, + "bounds": { + "minlat": 40.7138690, + "minlon": -73.9925624, + "maxlat": 40.7143885, + "maxlon": -73.9924861 + }, + "nodes": [ + 42433545, + 13014876811, + 8307641617, + 8821523711, + 7480301985, + 5796726888 + ], + "geometry": [ + { "lat": 40.7138690, "lon": -73.9924861 }, + { "lat": 40.7139183, "lon": -73.9924933 }, + { "lat": 40.7139516, "lon": -73.9924982 }, + { "lat": 40.7142858, "lon": -73.9925473 }, + { "lat": 40.7143311, "lon": -73.9925540 }, + { "lat": 40.7143885, "lon": -73.9925624 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 904809349, + "bounds": { + "minlat": 40.7115248, + "minlon": -73.9807115, + "maxlat": 40.7122115, + "maxlon": -73.9806230 + }, + "nodes": [ + 42427750, + 3659164543, + 8310246460, + 7476469426 + ], + "geometry": [ + { "lat": 40.7115248, "lon": -73.9806230 }, + { "lat": 40.7115959, "lon": -73.9806400 }, + { "lat": 40.7121552, "lon": -73.9807049 }, + { "lat": 40.7122115, "lon": -73.9807115 } + ], + "tags": { + "cycleway": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Jackson Street", + "name:etymology:wikidata": "Q11817", + "name:ko": "잭슨 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 904809350, + "bounds": { + "minlat": 40.7138690, + "minlon": -73.9924861, + "maxlat": 40.7140532, + "maxlon": -73.9902180 + }, + "nodes": [ + 42433545, + 8307641625, + 8996353559, + 8231942805, + 7480301986 + ], + "geometry": [ + { "lat": 40.7138690, "lon": -73.9924861 }, + { "lat": 40.7138769, "lon": -73.9923886 }, + { "lat": 40.7138809, "lon": -73.9923400 }, + { "lat": 40.7140447, "lon": -73.9903221 }, + { "lat": 40.7140532, "lon": -73.9902180 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 904942318, + "bounds": { + "minlat": 40.7112098, + "minlon": -74.0054990, + "maxlat": 40.7112718, + "maxlon": -74.0053968 + }, + "nodes": [ + 8404036868, + 8404036873, + 8404036869 + ], + "geometry": [ + { "lat": 40.7112718, "lon": -74.0053968 }, + { "lat": 40.7112284, "lon": -74.0054684 }, + { "lat": 40.7112098, "lon": -74.0054990 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 904942319, + "bounds": { + "minlat": 40.7108512, + "minlon": -74.0060819, + "maxlat": 40.7108986, + "maxlon": -74.0060053 + }, + "nodes": [ + 8404036870, + 8404036872, + 8404036871 + ], + "geometry": [ + { "lat": 40.7108986, "lon": -74.0060053 }, + { "lat": 40.7108888, "lon": -74.0060211 }, + { "lat": 40.7108512, "lon": -74.0060819 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 904942320, + "bounds": { + "minlat": 40.7108986, + "minlon": -74.0060053, + "maxlat": 40.7112098, + "maxlon": -74.0054990 + }, + "nodes": [ + 8404036869, + 12320245191, + 8404036870 + ], + "geometry": [ + { "lat": 40.7112098, "lon": -74.0054990 }, + { "lat": 40.7109057, "lon": -74.0059938 }, + { "lat": 40.7108986, "lon": -74.0060053 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paving_stones", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 904946030, + "bounds": { + "minlat": 40.7575625, + "minlon": -73.9748893, + "maxlat": 40.7576425, + "maxlon": -73.9748305 + }, + "nodes": [ + 8404061461, + 11294629827, + 8404061462 + ], + "geometry": [ + { "lat": 40.7575625, "lon": -73.9748893 }, + { "lat": 40.7576198, "lon": -73.9748471 }, + { "lat": 40.7576425, "lon": -73.9748305 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 904952003, + "bounds": { + "minlat": 40.7150547, + "minlon": -74.0121722, + "maxlat": 40.7151565, + "maxlon": -74.0121451 + }, + "nodes": [ + 8404113359, + 11461456901, + 8404113360, + 8404113361 + ], + "geometry": [ + { "lat": 40.7150547, "lon": -74.0121722 }, + { "lat": 40.7151233, "lon": -74.0121538 }, + { "lat": 40.7151466, "lon": -74.0121476 }, + { "lat": 40.7151565, "lon": -74.0121451 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 904979788, + "bounds": { + "minlat": 40.8545696, + "minlon": -73.9708295, + "maxlat": 40.8546866, + "maxlon": -73.9707653 + }, + "nodes": [ + 7428323254, + 13620890070, + 103096338 + ], + "geometry": [ + { "lat": 40.8545696, "lon": -73.9708295 }, + { "lat": 40.8545911, "lon": -73.9708177 }, + { "lat": 40.8546866, "lon": -73.9707653 } + ], + "tags": { + "Bergen_County_database_ref": "S-29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000S29", + "highway": "secondary", + "name": "Center Avenue", + "oneway": "yes", + "ref": "CR S-29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 904979789, + "bounds": { + "minlat": 40.8544924, + "minlon": -73.9708734, + "maxlat": 40.8545696, + "maxlon": -73.9708295 + }, + "nodes": [ + 6964899066, + 7428323254 + ], + "geometry": [ + { "lat": 40.8544924, "lon": -73.9708734 }, + { "lat": 40.8545696, "lon": -73.9708295 } + ], + "tags": { + "Bergen_County_database_ref": "S-29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000S29", + "highway": "secondary", + "lanes": "2", + "name": "Center Avenue", + "oneway": "yes", + "ref": "CR S-29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 905095198, + "bounds": { + "minlat": 40.7994068, + "minlon": -73.9553630, + "maxlat": 40.7994668, + "maxlon": -73.9552205 + }, + "nodes": [ + 42433743, + 2141026499 + ], + "geometry": [ + { "lat": 40.7994668, "lon": -73.9553630 }, + { "lat": 40.7994068, "lon": -73.9552205 } + ], + "tags": { + "alt_name": "West 110th Street", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "Central Park North", + "old_name": "Cathedral Parkway", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 905095200, + "bounds": { + "minlat": 40.8120958, + "minlon": -73.9363359, + "maxlat": 40.8122004, + "maxlon": -73.9360803 + }, + "nodes": [ + 7541804762, + 9559342284, + 2481877071 + ], + "geometry": [ + { "lat": 40.8120958, "lon": -73.9360803 }, + { "lat": 40.8121275, "lon": -73.9361578 }, + { "lat": 40.8122004, "lon": -73.9363359 } + ], + "tags": { + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 905095201, + "bounds": { + "minlat": 40.8119805, + "minlon": -73.9360360, + "maxlat": 40.8120554, + "maxlon": -73.9359818 + }, + "nodes": [ + 2481877063, + 42437929 + ], + "geometry": [ + { "lat": 40.8119805, "lon": -73.9360360 }, + { "lat": 40.8120554, "lon": -73.9359818 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905095202, + "bounds": { + "minlat": 40.7298564, + "minlon": -73.9913946, + "maxlat": 40.7300458, + "maxlon": -73.9911109 + }, + "nodes": [ + 42439236, + 12179562756, + 3919350745, + 12179562757, + 42445543 + ], + "geometry": [ + { "lat": 40.7298564, "lon": -73.9913946 }, + { "lat": 40.7299646, "lon": -73.9912197 }, + { "lat": 40.7299914, "lon": -73.9911780 }, + { "lat": 40.7300150, "lon": -73.9911487 }, + { "lat": 40.7300458, "lon": -73.9911109 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 905186647, + "bounds": { + "minlat": 40.7453074, + "minlon": -73.9075784, + "maxlat": 40.7485690, + "maxlon": -73.9060430 + }, + "nodes": [ + 42870250, + 11919139607, + 8316237185, + 5538919092, + 42896906, + 5538919091, + 3774933365, + 13541205539, + 7667087005, + 42893079, + 7667087004, + 42942556 + ], + "geometry": [ + { "lat": 40.7453074, "lon": -73.9075784 }, + { "lat": 40.7453972, "lon": -73.9074823 }, + { "lat": 40.7457816, "lon": -73.9073094 }, + { "lat": 40.7458296, "lon": -73.9072867 }, + { "lat": 40.7458870, "lon": -73.9072620 }, + { "lat": 40.7459508, "lon": -73.9072331 }, + { "lat": 40.7462423, "lon": -73.9071003 }, + { "lat": 40.7465074, "lon": -73.9069798 }, + { "lat": 40.7480648, "lon": -73.9062722 }, + { "lat": 40.7481280, "lon": -73.9062420 }, + { "lat": 40.7482028, "lon": -73.9062101 }, + { "lat": 40.7485690, "lon": -73.9060430 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "57th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905186648, + "bounds": { + "minlat": 40.7473950, + "minlon": -73.9095540, + "maxlat": 40.7501190, + "maxlon": -73.9083190 + }, + "nodes": [ + 42876811, + 42935130, + 5867077873, + 3569893194, + 42893077, + 3569893193, + 5867077869, + 10762234064, + 42896896 + ], + "geometry": [ + { "lat": 40.7501190, "lon": -73.9083190 }, + { "lat": 40.7499460, "lon": -73.9083930 }, + { "lat": 40.7489400, "lon": -73.9088502 }, + { "lat": 40.7489089, "lon": -73.9088636 }, + { "lat": 40.7488280, "lon": -73.9089010 }, + { "lat": 40.7487640, "lon": -73.9089302 }, + { "lat": 40.7475200, "lon": -73.9094970 }, + { "lat": 40.7474616, "lon": -73.9095236 }, + { "lat": 40.7473950, "lon": -73.9095540 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "54th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "54th", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 905186649, + "bounds": { + "minlat": 40.7413752, + "minlon": -73.9209510, + "maxlat": 40.7435270, + "maxlon": -73.9205211 + }, + "nodes": [ + 3785693707, + 3798377295, + 2844853152, + 10743722596, + 10774439508, + 9192032623, + 42860618 + ], + "geometry": [ + { "lat": 40.7435270, "lon": -73.9205211 }, + { "lat": 40.7433917, "lon": -73.9205507 }, + { "lat": 40.7432240, "lon": -73.9205850 }, + { "lat": 40.7431355, "lon": -73.9206028 }, + { "lat": 40.7420189, "lon": -73.9208268 }, + { "lat": 40.7414847, "lon": -73.9209331 }, + { "lat": 40.7413752, "lon": -73.9209510 } + ], + "tags": { + "highway": "residential", + "name": "44th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905186650, + "bounds": { + "minlat": 40.7444710, + "minlon": -73.9115090, + "maxlat": 40.7457773, + "maxlon": -73.9112539 + }, + "nodes": [ + 42870235, + 10762233938, + 10762233937, + 10074123213, + 42916766 + ], + "geometry": [ + { "lat": 40.7444710, "lon": -73.9115090 }, + { "lat": 40.7445552, "lon": -73.9114925 }, + { "lat": 40.7451045, "lon": -73.9113853 }, + { "lat": 40.7457083, "lon": -73.9112673 }, + { "lat": 40.7457773, "lon": -73.9112539 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "53rd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905186651, + "bounds": { + "minlat": 40.7449622, + "minlon": -73.9202033, + "maxlat": 40.7451343, + "maxlon": -73.9186919 + }, + "nodes": [ + 42817794, + 10069693836, + 8344002861, + 10069693835, + 42817797, + 10074123159, + 10074123160 + ], + "geometry": [ + { "lat": 40.7451343, "lon": -73.9202033 }, + { "lat": 40.7451255, "lon": -73.9201242 }, + { "lat": 40.7450798, "lon": -73.9197197 }, + { "lat": 40.7450388, "lon": -73.9193579 }, + { "lat": 40.7450293, "lon": -73.9192737 }, + { "lat": 40.7450204, "lon": -73.9191994 }, + { "lat": 40.7449622, "lon": -73.9186919 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905186652, + "bounds": { + "minlat": 40.7444295, + "minlon": -73.9146334, + "maxlat": 40.7444903, + "maxlon": -73.9141135 + }, + "nodes": [ + 42817812, + 10074123180, + 42796341 + ], + "geometry": [ + { "lat": 40.7444903, "lon": -73.9146334 }, + { "lat": 40.7444804, "lon": -73.9145501 }, + { "lat": 40.7444295, "lon": -73.9141135 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905190091, + "bounds": { + "minlat": 40.7642684, + "minlon": -73.9157851, + "maxlat": 40.7690177, + "maxlon": -73.9119219 + }, + "nodes": [ + 7746623260, + 6406731434, + 9295408022, + 5904717702, + 5904717697, + 3570250015, + 42832996, + 3570250010, + 3570249980, + 42841755 + ], + "geometry": [ + { "lat": 40.7690177, "lon": -73.9119219 }, + { "lat": 40.7689438, "lon": -73.9119822 }, + { "lat": 40.7683988, "lon": -73.9124259 }, + { "lat": 40.7673415, "lon": -73.9132882 }, + { "lat": 40.7667166, "lon": -73.9137978 }, + { "lat": 40.7659249, "lon": -73.9144433 }, + { "lat": 40.7658595, "lon": -73.9144964 }, + { "lat": 40.7657900, "lon": -73.9145530 }, + { "lat": 40.7643419, "lon": -73.9157253 }, + { "lat": 40.7642684, "lon": -73.9157851 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "name": "38th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905190092, + "bounds": { + "minlat": 40.7646430, + "minlon": -73.9165887, + "maxlat": 40.7691804, + "maxlon": -73.9129009 + }, + "nodes": [ + 42874060, + 3570249988, + 3570250019, + 42832991, + 3570250026, + 6404984312, + 9295402628, + 6228232695, + 8024840926, + 5904717703, + 6406731437, + 42888656 + ], + "geometry": [ + { "lat": 40.7646430, "lon": -73.9165887 }, + { "lat": 40.7647190, "lon": -73.9165285 }, + { "lat": 40.7661655, "lon": -73.9153534 }, + { "lat": 40.7662344, "lon": -73.9152974 }, + { "lat": 40.7663047, "lon": -73.9152401 }, + { "lat": 40.7664342, "lon": -73.9151310 }, + { "lat": 40.7669398, "lon": -73.9147204 }, + { "lat": 40.7678760, "lon": -73.9139600 }, + { "lat": 40.7680306, "lon": -73.9138345 }, + { "lat": 40.7681496, "lon": -73.9137378 }, + { "lat": 40.7690977, "lon": -73.9129680 }, + { "lat": 40.7691804, "lon": -73.9129009 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "name": "37th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905190093, + "bounds": { + "minlat": 40.7650290, + "minlon": -73.9173999, + "maxlat": 40.7693400, + "maxlon": -73.9138905 + }, + "nodes": [ + 7746623259, + 6406731440, + 3570250030, + 42832988, + 3570250027, + 3570249996, + 42874059 + ], + "geometry": [ + { "lat": 40.7693400, "lon": -73.9138905 }, + { "lat": 40.7692564, "lon": -73.9139570 }, + { "lat": 40.7666816, "lon": -73.9160480 }, + { "lat": 40.7666143, "lon": -73.9161024 }, + { "lat": 40.7665451, "lon": -73.9161583 }, + { "lat": 40.7650984, "lon": -73.9173427 }, + { "lat": 40.7650290, "lon": -73.9173999 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "foot": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "name": "36th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905190094, + "bounds": { + "minlat": 40.7654066, + "minlon": -73.9181900, + "maxlat": 40.7694974, + "maxlon": -73.9148573 + }, + "nodes": [ + 42866652, + 3570250004, + 3570250031, + 42832985, + 3570250034, + 6406731443, + 42866647 + ], + "geometry": [ + { "lat": 40.7654066, "lon": -73.9181900 }, + { "lat": 40.7654737, "lon": -73.9181352 }, + { "lat": 40.7669251, "lon": -73.9169495 }, + { "lat": 40.7669894, "lon": -73.9169009 }, + { "lat": 40.7670594, "lon": -73.9168480 }, + { "lat": 40.7694083, "lon": -73.9149373 }, + { "lat": 40.7694974, "lon": -73.9148573 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "foot": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "name": "35th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905190095, + "bounds": { + "minlat": 40.7657719, + "minlon": -73.9189932, + "maxlat": 40.7696522, + "maxlon": -73.9158597 + }, + "nodes": [ + 42908487, + 6406731447, + 3570250038, + 42832982, + 3570250035, + 9295411960, + 3570250013, + 42874058 + ], + "geometry": [ + { "lat": 40.7696522, "lon": -73.9158597 }, + { "lat": 40.7695708, "lon": -73.9159091 }, + { "lat": 40.7674330, "lon": -73.9176381 }, + { "lat": 40.7673629, "lon": -73.9176956 }, + { "lat": 40.7672972, "lon": -73.9177495 }, + { "lat": 40.7665894, "lon": -73.9183259 }, + { "lat": 40.7658495, "lon": -73.9189297 }, + { "lat": 40.7657719, "lon": -73.9189932 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "34th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905190096, + "bounds": { + "minlat": 40.7661449, + "minlon": -73.9197922, + "maxlat": 40.7677404, + "maxlon": -73.9184983 + }, + "nodes": [ + 42874057, + 3570250023, + 6406731483, + 42842306, + 3570250039, + 42832979 + ], + "geometry": [ + { "lat": 40.7661449, "lon": -73.9197922 }, + { "lat": 40.7662272, "lon": -73.9197243 }, + { "lat": 40.7668749, "lon": -73.9192000 }, + { "lat": 40.7672298, "lon": -73.9189121 }, + { "lat": 40.7676747, "lon": -73.9185516 }, + { "lat": 40.7677404, "lon": -73.9184983 } + ], + "tags": { + "foot": "yes", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "33rd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905190097, + "bounds": { + "minlat": 40.7713537, + "minlon": -73.9247803, + "maxlat": 40.7717760, + "maxlon": -73.9244410 + }, + "nodes": [ + 42900309, + 6452985336, + 6452985343, + 42920850 + ], + "geometry": [ + { "lat": 40.7713537, "lon": -73.9247803 }, + { "lat": 40.7714266, "lon": -73.9247209 }, + { "lat": 40.7717126, "lon": -73.9244919 }, + { "lat": 40.7717760, "lon": -73.9244410 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "23rd Street", + "oneway": "yes", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905190098, + "bounds": { + "minlat": 40.7692590, + "minlon": -73.9273070, + "maxlat": 40.7705233, + "maxlon": -73.9245977 + }, + "nodes": [ + 42826040, + 5375687404, + 7726535698, + 7768245667, + 6452971009, + 42855147, + 6452971010, + 3570193180, + 6452895159, + 42818499 + ], + "geometry": [ + { "lat": 40.7705233, "lon": -73.9273070 }, + { "lat": 40.7704710, "lon": -73.9271925 }, + { "lat": 40.7702076, "lon": -73.9266156 }, + { "lat": 40.7699643, "lon": -73.9260829 }, + { "lat": 40.7699442, "lon": -73.9260387 }, + { "lat": 40.7699099, "lon": -73.9259637 }, + { "lat": 40.7698744, "lon": -73.9258891 }, + { "lat": 40.7693255, "lon": -73.9247372 }, + { "lat": 40.7692975, "lon": -73.9246785 }, + { "lat": 40.7692590, "lon": -73.9245977 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "29th Avenue", + "oneway": "yes", + "source:maxspeed": "sign" + } +}, +{ + "type": "way", + "id": 905601341, + "bounds": { + "minlat": 40.7305542, + "minlon": -73.9506277, + "maxlat": 40.7306923, + "maxlon": -73.9492353 + }, + "nodes": [ + 3430220598, + 6235394709, + 9996409565, + 6100649478, + 11155242474, + 5481915290, + 5481915294 + ], + "geometry": [ + { "lat": 40.7306923, "lon": -73.9492353 }, + { "lat": 40.7306802, "lon": -73.9493271 }, + { "lat": 40.7306741, "lon": -73.9493714 }, + { "lat": 40.7306431, "lon": -73.9496959 }, + { "lat": 40.7306408, "lon": -73.9497198 }, + { "lat": 40.7306144, "lon": -73.9499963 }, + { "lat": 40.7305542, "lon": -73.9506277 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 905601342, + "bounds": { + "minlat": 40.7316054, + "minlon": -73.9459370, + "maxlat": 40.7320876, + "maxlon": -73.9446033 + }, + "nodes": [ + 3430220604, + 13515590851, + 11155242471, + 2422186263, + 8410004504 + ], + "geometry": [ + { "lat": 40.7320876, "lon": -73.9446033 }, + { "lat": 40.7320586, "lon": -73.9446843 }, + { "lat": 40.7319559, "lon": -73.9449714 }, + { "lat": 40.7317578, "lon": -73.9455170 }, + { "lat": 40.7316054, "lon": -73.9459370 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "cycleway:both:buffer": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 905601343, + "bounds": { + "minlat": 40.7320876, + "minlon": -73.9446033, + "maxlat": 40.7323849, + "maxlon": -73.9437496 + }, + "nodes": [ + 622232007, + 9788947428, + 11155242470, + 13515590853, + 3430220604 + ], + "geometry": [ + { "lat": 40.7323849, "lon": -73.9437496 }, + { "lat": 40.7323531, "lon": -73.9438413 }, + { "lat": 40.7322091, "lon": -73.9442576 }, + { "lat": 40.7321136, "lon": -73.9445293 }, + { "lat": 40.7320876, "lon": -73.9446033 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "cycleway:both:buffer": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 905601344, + "bounds": { + "minlat": 40.7326577, + "minlon": -73.9428072, + "maxlat": 40.7327804, + "maxlon": -73.9420147 + }, + "nodes": [ + 2422186262, + 9982697969, + 622232010 + ], + "geometry": [ + { "lat": 40.7327804, "lon": -73.9420147 }, + { "lat": 40.7326918, "lon": -73.9426016 }, + { "lat": 40.7326577, "lon": -73.9428072 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 905601345, + "bounds": { + "minlat": 40.7338313, + "minlon": -73.9390103, + "maxlat": 40.7340660, + "maxlon": -73.9385386 + }, + "nodes": [ + 8410004505, + 597294496 + ], + "geometry": [ + { "lat": 40.7338313, "lon": -73.9390103 }, + { "lat": 40.7340660, "lon": -73.9385386 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Greenpoint Avenue Bridge", + "cycleway": "lane", + "highway": "primary", + "lanes": "4", + "layer": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "surface": "concrete", + "turn:lanes:backward": "|merge_to_left", + "wikidata": "Q1028093", + "wikipedia": "en:Greenpoint Avenue Bridge" + } +}, +{ + "type": "way", + "id": 905601347, + "bounds": { + "minlat": 40.7342114, + "minlon": -73.9380656, + "maxlat": 40.7343656, + "maxlon": -73.9378712 + }, + "nodes": [ + 1056072092, + 1056072094 + ], + "geometry": [ + { "lat": 40.7343656, "lon": -73.9380656 }, + { "lat": 40.7342114, "lon": -73.9378712 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "maxspeed": "25 mph", + "name": "Review Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905601350, + "bounds": { + "minlat": 40.7371334, + "minlon": -73.9309203, + "maxlat": 40.7371642, + "maxlon": -73.9308371 + }, + "nodes": [ + 597294549, + 42896796 + ], + "geometry": [ + { "lat": 40.7371334, "lon": -73.9309203 }, + { "lat": 40.7371642, "lon": -73.9308371 } + ], + "tags": { + "cycleway": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "3", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "turn:lanes:backward": "left|left|through", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 905839174, + "bounds": { + "minlat": 40.7702368, + "minlon": -73.9677669, + "maxlat": 40.7708629, + "maxlon": -73.9673149 + }, + "nodes": [ + 8412090720, + 10863881161, + 10170844884, + 8412090721 + ], + "geometry": [ + { "lat": 40.7702368, "lon": -73.9677669 }, + { "lat": 40.7702955, "lon": -73.9677245 }, + { "lat": 40.7708111, "lon": -73.9673523 }, + { "lat": 40.7708629, "lon": -73.9673149 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 905906565, + "bounds": { + "minlat": 40.7023463, + "minlon": -73.9847051, + "maxlat": 40.7023515, + "maxlon": -73.9845641 + }, + "nodes": [ + 7707712197, + 10722370764, + 7707712188 + ], + "geometry": [ + { "lat": 40.7023515, "lon": -73.9847051 }, + { "lat": 40.7023482, "lon": -73.9846170 }, + { "lat": 40.7023463, "lon": -73.9845641 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Front", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 905906566, + "bounds": { + "minlat": 40.7014478, + "minlon": -73.9847598, + "maxlat": 40.7023515, + "maxlon": -73.9847051 + }, + "nodes": [ + 7707712197, + 10722370762, + 10722387786, + 42503949 + ], + "geometry": [ + { "lat": 40.7023515, "lon": -73.9847051 }, + { "lat": 40.7022942, "lon": -73.9847085 }, + { "lat": 40.7015225, "lon": -73.9847550 }, + { "lat": 40.7014478, "lon": -73.9847598 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bridge Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bridge", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 905914004, + "bounds": { + "minlat": 40.7067550, + "minlon": -73.9158400, + "maxlat": 40.7076310, + "maxlon": -73.9143610 + }, + "nodes": [ + 42908162, + 9590434403, + 10693892814, + 11175031795, + 5482331552, + 5482331555, + 6024796519, + 42934641, + 6024796518, + 11175031794, + 6024795692, + 42934645 + ], + "geometry": [ + { "lat": 40.7076310, "lon": -73.9158400 }, + { "lat": 40.7075893, "lon": -73.9157695 }, + { "lat": 40.7075655, "lon": -73.9157293 }, + { "lat": 40.7075226, "lon": -73.9156569 }, + { "lat": 40.7073954, "lon": -73.9154422 }, + { "lat": 40.7072967, "lon": -73.9152756 }, + { "lat": 40.7072316, "lon": -73.9151657 }, + { "lat": 40.7071931, "lon": -73.9151007 }, + { "lat": 40.7071541, "lon": -73.9150349 }, + { "lat": 40.7070283, "lon": -73.9148227 }, + { "lat": 40.7067988, "lon": -73.9144355 }, + { "lat": 40.7067550, "lon": -73.9143610 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Seneca Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 906026827, + "bounds": { + "minlat": 40.8265005, + "minlon": -74.0104583, + "maxlat": 40.8269188, + "maxlon": -74.0103030 + }, + "nodes": [ + 8413699454, + 8413699461, + 8413699455, + 8413699456, + 8413699457 + ], + "geometry": [ + { "lat": 40.8269188, "lon": -74.0104460 }, + { "lat": 40.8268148, "lon": -74.0104507 }, + { "lat": 40.8266464, "lon": -74.0104583 }, + { "lat": 40.8266425, "lon": -74.0103030 }, + { "lat": 40.8265005, "lon": -74.0103122 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906026828, + "bounds": { + "minlat": 40.8266425, + "minlon": -74.0104507, + "maxlat": 40.8268148, + "maxlon": -74.0103030 + }, + "nodes": [ + 8413699456, + 8413699458, + 8413699459, + 8413699460, + 8413699461 + ], + "geometry": [ + { "lat": 40.8266425, "lon": -74.0103030 }, + { "lat": 40.8267092, "lon": -74.0103058 }, + { "lat": 40.8267549, "lon": -74.0103227 }, + { "lat": 40.8267927, "lon": -74.0103589 }, + { "lat": 40.8268148, "lon": -74.0104507 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 906026829, + "bounds": { + "minlat": 40.8256281, + "minlon": -74.0104540, + "maxlat": 40.8261611, + "maxlon": -74.0102675 + }, + "nodes": [ + 8413699462, + 8413699463, + 8413699464 + ], + "geometry": [ + { "lat": 40.8261611, "lon": -74.0104540 }, + { "lat": 40.8260173, "lon": -74.0104122 }, + { "lat": 40.8256281, "lon": -74.0102675 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906037667, + "bounds": { + "minlat": 40.8327995, + "minlon": -74.0018108, + "maxlat": 40.8329084, + "maxlon": -74.0017053 + }, + "nodes": [ + 8413793133, + 8413793124 + ], + "geometry": [ + { "lat": 40.8329084, "lon": -74.0017053 }, + { "lat": 40.8327995, "lon": -74.0018108 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 906037668, + "bounds": { + "minlat": 40.8327372, + "minlon": -74.0017053, + "maxlat": 40.8329084, + "maxlon": -74.0013890 + }, + "nodes": [ + 8413793125, + 8413793133 + ], + "geometry": [ + { "lat": 40.8327372, "lon": -74.0013890 }, + { "lat": 40.8329084, "lon": -74.0017053 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 906037669, + "bounds": { + "minlat": 40.8326197, + "minlon": -74.0015006, + "maxlat": 40.8327372, + "maxlon": -74.0013890 + }, + "nodes": [ + 8413793134, + 8413793125 + ], + "geometry": [ + { "lat": 40.8326197, "lon": -74.0015006 }, + { "lat": 40.8327372, "lon": -74.0013890 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 906037670, + "bounds": { + "minlat": 40.8325864, + "minlon": -74.0013890, + "maxlat": 40.8327372, + "maxlon": -74.0011000 + }, + "nodes": [ + 8413793125, + 8413793126 + ], + "geometry": [ + { "lat": 40.8327372, "lon": -74.0013890 }, + { "lat": 40.8325864, "lon": -74.0011000 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 906037671, + "bounds": { + "minlat": 40.8327120, + "minlon": -74.0017880, + "maxlat": 40.8330967, + "maxlon": -74.0009801 + }, + "nodes": [ + 8413793127, + 8413793129, + 8413793130, + 8413793131, + 8413793132, + 8413793133 + ], + "geometry": [ + { "lat": 40.8327120, "lon": -74.0009801 }, + { "lat": 40.8330967, "lon": -74.0016700 }, + { "lat": 40.8330755, "lon": -74.0017603 }, + { "lat": 40.8330374, "lon": -74.0017880 }, + { "lat": 40.8329925, "lon": -74.0017817 }, + { "lat": 40.8329084, "lon": -74.0017053 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 906040840, + "bounds": { + "minlat": 40.8257899, + "minlon": -74.0222878, + "maxlat": 40.8262900, + "maxlon": -74.0197219 + }, + "nodes": [ + 8413821250, + 8413821251 + ], + "geometry": [ + { "lat": 40.8257899, "lon": -74.0222878 }, + { "lat": 40.8262900, "lon": -74.0197219 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040841, + "bounds": { + "minlat": 40.8256385, + "minlon": -74.0222388, + "maxlat": 40.8261322, + "maxlon": -74.0196363 + }, + "nodes": [ + 7907160914, + 8413821252, + 8413821253 + ], + "geometry": [ + { "lat": 40.8256385, "lon": -74.0222388 }, + { "lat": 40.8259702, "lon": -74.0204669 }, + { "lat": 40.8261322, "lon": -74.0196363 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040842, + "bounds": { + "minlat": 40.8254614, + "minlon": -74.0221777, + "maxlat": 40.8259736, + "maxlon": -74.0195831 + }, + "nodes": [ + 8413821254, + 8413821255, + 8413821256 + ], + "geometry": [ + { "lat": 40.8254614, "lon": -74.0221777 }, + { "lat": 40.8256459, "lon": -74.0212352 }, + { "lat": 40.8259736, "lon": -74.0195831 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040843, + "bounds": { + "minlat": 40.8253043, + "minlon": -74.0221235, + "maxlat": 40.8258146, + "maxlon": -74.0195297 + }, + "nodes": [ + 8413821257, + 8413821258, + 8413821259 + ], + "geometry": [ + { "lat": 40.8253043, "lon": -74.0221235 }, + { "lat": 40.8254740, "lon": -74.0212482 }, + { "lat": 40.8258146, "lon": -74.0195297 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040844, + "bounds": { + "minlat": 40.8251548, + "minlon": -74.0220719, + "maxlat": 40.8256553, + "maxlon": -74.0194762 + }, + "nodes": [ + 8413821260, + 8413821261, + 8413821262 + ], + "geometry": [ + { "lat": 40.8251548, "lon": -74.0220719 }, + { "lat": 40.8254036, "lon": -74.0207699 }, + { "lat": 40.8256553, "lon": -74.0194762 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040845, + "bounds": { + "minlat": 40.8249864, + "minlon": -74.0220138, + "maxlat": 40.8254894, + "maxlon": -74.0194205 + }, + "nodes": [ + 8413821263, + 8413821264, + 8413821265 + ], + "geometry": [ + { "lat": 40.8249864, "lon": -74.0220138 }, + { "lat": 40.8252013, "lon": -74.0209127 }, + { "lat": 40.8254894, "lon": -74.0194205 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040846, + "bounds": { + "minlat": 40.8248327, + "minlon": -74.0219608, + "maxlat": 40.8253292, + "maxlon": -74.0193668 + }, + "nodes": [ + 8413821266, + 8413821267, + 8413821268 + ], + "geometry": [ + { "lat": 40.8248327, "lon": -74.0219608 }, + { "lat": 40.8250490, "lon": -74.0208370 }, + { "lat": 40.8253292, "lon": -74.0193668 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040847, + "bounds": { + "minlat": 40.8246740, + "minlon": -74.0219061, + "maxlat": 40.8251779, + "maxlon": -74.0193160 + }, + "nodes": [ + 8413821269, + 8413821270, + 8413821271 + ], + "geometry": [ + { "lat": 40.8246740, "lon": -74.0219061 }, + { "lat": 40.8250343, "lon": -74.0200060 }, + { "lat": 40.8251779, "lon": -74.0193160 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040848, + "bounds": { + "minlat": 40.8245130, + "minlon": -74.0218505, + "maxlat": 40.8250135, + "maxlon": -74.0192608 + }, + "nodes": [ + 8413821272, + 8413821273 + ], + "geometry": [ + { "lat": 40.8245130, "lon": -74.0218505 }, + { "lat": 40.8250135, "lon": -74.0192608 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040849, + "bounds": { + "minlat": 40.8243561, + "minlon": -74.0217964, + "maxlat": 40.8248586, + "maxlon": -74.0192088 + }, + "nodes": [ + 8413821274, + 8413821275 + ], + "geometry": [ + { "lat": 40.8243561, "lon": -74.0217964 }, + { "lat": 40.8248586, "lon": -74.0192088 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040850, + "bounds": { + "minlat": 40.8241944, + "minlon": -74.0217406, + "maxlat": 40.8246935, + "maxlon": -74.0191534 + }, + "nodes": [ + 8413821276, + 8413821277, + 8413821278 + ], + "geometry": [ + { "lat": 40.8241944, "lon": -74.0217406 }, + { "lat": 40.8245525, "lon": -74.0198968 }, + { "lat": 40.8246935, "lon": -74.0191534 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040851, + "bounds": { + "minlat": 40.8240387, + "minlon": -74.0216869, + "maxlat": 40.8245309, + "maxlon": -74.0190988 + }, + "nodes": [ + 8413821279, + 8413821280, + 8413821281 + ], + "geometry": [ + { "lat": 40.8240387, "lon": -74.0216869 }, + { "lat": 40.8243490, "lon": -74.0200286 }, + { "lat": 40.8245309, "lon": -74.0190988 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040852, + "bounds": { + "minlat": 40.8238706, + "minlon": -74.0216313, + "maxlat": 40.8243752, + "maxlon": -74.0190466 + }, + "nodes": [ + 8413821282, + 8413821283, + 8413821284 + ], + "geometry": [ + { "lat": 40.8238706, "lon": -74.0216313 }, + { "lat": 40.8241348, "lon": -74.0202782 }, + { "lat": 40.8243752, "lon": -74.0190466 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906040853, + "bounds": { + "minlat": 40.8237162, + "minlon": -74.0215828, + "maxlat": 40.8242207, + "maxlon": -74.0189947 + }, + "nodes": [ + 8413821285, + 8413821286, + 8413821287 + ], + "geometry": [ + { "lat": 40.8237162, "lon": -74.0215828 }, + { "lat": 40.8240056, "lon": -74.0200564 }, + { "lat": 40.8242207, "lon": -74.0189947 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906118253, + "bounds": { + "minlat": 40.8765483, + "minlon": -73.9516913, + "maxlat": 40.8766537, + "maxlon": -73.9515782 + }, + "nodes": [ + 8414599713, + 8414599714 + ], + "geometry": [ + { "lat": 40.8766537, "lon": -73.9515782 }, + { "lat": 40.8765483, "lon": -73.9516913 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 906118254, + "bounds": { + "minlat": 40.8759550, + "minlon": -73.9516913, + "maxlat": 40.8765483, + "maxlon": -73.9510067 + }, + "nodes": [ + 8414599714, + 8414599715, + 8414599716 + ], + "geometry": [ + { "lat": 40.8765483, "lon": -73.9516913 }, + { "lat": 40.8761455, "lon": -73.9510067 }, + { "lat": 40.8759550, "lon": -73.9510561 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 906140845, + "bounds": { + "minlat": 40.8764770, + "minlon": -73.9905850, + "maxlat": 40.8771727, + "maxlon": -73.9900620 + }, + "nodes": [ + 103260465, + 8414810098, + 8414810099, + 8414810100 + ], + "geometry": [ + { "lat": 40.8771727, "lon": -73.9902172 }, + { "lat": 40.8771238, "lon": -73.9903498 }, + { "lat": 40.8766427, "lon": -73.9905850 }, + { "lat": 40.8764770, "lon": -73.9900620 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 906140846, + "bounds": { + "minlat": 40.8776347, + "minlon": -73.9903623, + "maxlat": 40.8778455, + "maxlon": -73.9898205 + }, + "nodes": [ + 8414810101, + 8414810102, + 8414810103, + 8414810104 + ], + "geometry": [ + { "lat": 40.8776347, "lon": -73.9903623 }, + { "lat": 40.8776586, "lon": -73.9902225 }, + { "lat": 40.8778455, "lon": -73.9900642 }, + { "lat": 40.8777652, "lon": -73.9898205 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 906140847, + "bounds": { + "minlat": 40.8771727, + "minlon": -73.9902172, + "maxlat": 40.8773557, + "maxlon": -73.9900533 + }, + "nodes": [ + 103260465, + 8414810106, + 8414810105 + ], + "geometry": [ + { "lat": 40.8771727, "lon": -73.9902172 }, + { "lat": 40.8772649, "lon": -73.9901237 }, + { "lat": 40.8773557, "lon": -73.9900533 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906140848, + "bounds": { + "minlat": 40.8798475, + "minlon": -73.9890209, + "maxlat": 40.8802447, + "maxlon": -73.9886277 + }, + "nodes": [ + 8414810112, + 11672599656, + 11672599654, + 8414810113 + ], + "geometry": [ + { "lat": 40.8798475, "lon": -73.9890209 }, + { "lat": 40.8799781, "lon": -73.9888915 }, + { "lat": 40.8801097, "lon": -73.9887613 }, + { "lat": 40.8802447, "lon": -73.9886277 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 906148090, + "bounds": { + "minlat": 40.8318739, + "minlon": -74.0100907, + "maxlat": 40.8321581, + "maxlon": -74.0098499 + }, + "nodes": [ + 8414839540, + 8414839541, + 8414839542, + 8414839543, + 8414839544, + 8414839545, + 8414839546, + 8414839547, + 8414839548, + 13527758309, + 8414839549 + ], + "geometry": [ + { "lat": 40.8318739, "lon": -74.0098977 }, + { "lat": 40.8319560, "lon": -74.0098604 }, + { "lat": 40.8319884, "lon": -74.0098499 }, + { "lat": 40.8320339, "lon": -74.0098525 }, + { "lat": 40.8321270, "lon": -74.0098586 }, + { "lat": 40.8321402, "lon": -74.0098638 }, + { "lat": 40.8321515, "lon": -74.0098778 }, + { "lat": 40.8321554, "lon": -74.0098926 }, + { "lat": 40.8321581, "lon": -74.0099284 }, + { "lat": 40.8321560, "lon": -74.0100190 }, + { "lat": 40.8321544, "lon": -74.0100907 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 906253997, + "bounds": { + "minlat": 40.8228497, + "minlon": -73.9104940, + "maxlat": 40.8231928, + "maxlon": -73.9094249 + }, + "nodes": [ + 6395375453, + 10647829913, + 10647829926, + 42748183 + ], + "geometry": [ + { "lat": 40.8228497, "lon": -73.9094249 }, + { "lat": 40.8228889, "lon": -73.9095471 }, + { "lat": 40.8231678, "lon": -73.9104160 }, + { "lat": 40.8231928, "lon": -73.9104940 } + ], + "tags": { + "highway": "residential", + "name": "East 161st Street", + "sidewalk:both": "separate", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 906315923, + "bounds": { + "minlat": 40.8228497, + "minlon": -73.9094249, + "maxlat": 40.8233804, + "maxlon": -73.9091028 + }, + "nodes": [ + 42732965, + 13249109407, + 13249075299, + 6395375453 + ], + "geometry": [ + { "lat": 40.8233804, "lon": -73.9091028 }, + { "lat": 40.8233017, "lon": -73.9091506 }, + { "lat": 40.8229785, "lon": -73.9093467 }, + { "lat": 40.8228497, "lon": -73.9094249 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Third Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 906392962, + "bounds": { + "minlat": 40.6999843, + "minlon": -73.9414071, + "maxlat": 40.7002810, + "maxlon": -73.9411490 + }, + "nodes": [ + 42499079, + 9752127031, + 10232286944, + 11115041439 + ], + "geometry": [ + { "lat": 40.7002810, "lon": -73.9411490 }, + { "lat": 40.7002089, "lon": -73.9412156 }, + { "lat": 40.7000091, "lon": -73.9413950 }, + { "lat": 40.6999843, "lon": -73.9414071 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxheight:signed": "no", + "name": "Marcus Garvey Boulevard", + "name:etymology:wikidata": "Q272504", + "name_1": "Sumner Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcus Garvey", + "tiger:name_base_1": "Sumner", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11216", + "tiger:zip_right": "11216" + } +}, +{ + "type": "way", + "id": 906436681, + "bounds": { + "minlat": 40.8353040, + "minlon": -73.9901245, + "maxlat": 40.8354217, + "maxlon": -73.9897550 + }, + "nodes": [ + 103148221, + 8417171725 + ], + "geometry": [ + { "lat": 40.8353040, "lon": -73.9897550 }, + { "lat": 40.8354217, "lon": -73.9901245 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 906437165, + "bounds": { + "minlat": 40.8796834, + "minlon": -73.9510122, + "maxlat": 40.8802380, + "maxlon": -73.9504599 + }, + "nodes": [ + 8374457899, + 8417174566, + 8417174554, + 8417174555, + 8417174567, + 8417174556, + 8417174557, + 8417174558, + 8417174559, + 8417174560, + 8417174561, + 8417174562, + 8417174563, + 8417174564, + 8417174565, + 8417174566 + ], + "geometry": [ + { "lat": 40.8802380, "lon": -73.9507733 }, + { "lat": 40.8800424, "lon": -73.9509335 }, + { "lat": 40.8799562, "lon": -73.9510063 }, + { "lat": 40.8799284, "lon": -73.9510122 }, + { "lat": 40.8799079, "lon": -73.9510050 }, + { "lat": 40.8798872, "lon": -73.9509901 }, + { "lat": 40.8797190, "lon": -73.9506911 }, + { "lat": 40.8796867, "lon": -73.9506116 }, + { "lat": 40.8796834, "lon": -73.9505571 }, + { "lat": 40.8796956, "lon": -73.9505173 }, + { "lat": 40.8797435, "lon": -73.9504672 }, + { "lat": 40.8797658, "lon": -73.9504599 }, + { "lat": 40.8797936, "lon": -73.9504716 }, + { "lat": 40.8798393, "lon": -73.9505497 }, + { "lat": 40.8798649, "lon": -73.9505968 }, + { "lat": 40.8800424, "lon": -73.9509335 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 906437166, + "bounds": { + "minlat": 40.8798649, + "minlon": -73.9505968, + "maxlat": 40.8800437, + "maxlon": -73.9504336 + }, + "nodes": [ + 8417174565, + 8374457900 + ], + "geometry": [ + { "lat": 40.8798649, "lon": -73.9505968 }, + { "lat": 40.8800437, "lon": -73.9504336 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 906441148, + "bounds": { + "minlat": 40.8763392, + "minlon": -73.9467125, + "maxlat": 40.8770581, + "maxlon": -73.9460570 + }, + "nodes": [ + 8417201276, + 8417201277, + 8417201288, + 8417201279, + 8417201281, + 8417201287, + 8417201288 + ], + "geometry": [ + { "lat": 40.8764093, "lon": -73.9467125 }, + { "lat": 40.8764076, "lon": -73.9466263 }, + { "lat": 40.8763909, "lon": -73.9465472 }, + { "lat": 40.8763392, "lon": -73.9463420 }, + { "lat": 40.8770018, "lon": -73.9460570 }, + { "lat": 40.8770581, "lon": -73.9462776 }, + { "lat": 40.8763909, "lon": -73.9465472 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906441149, + "bounds": { + "minlat": 40.8774851, + "minlon": -73.9468139, + "maxlat": 40.8780281, + "maxlon": -73.9466450 + }, + "nodes": [ + 8417201289, + 8417201290, + 8417201291 + ], + "geometry": [ + { "lat": 40.8780281, "lon": -73.9466450 }, + { "lat": 40.8778581, "lon": -73.9467042 }, + { "lat": 40.8774851, "lon": -73.9468139 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 906461664, + "bounds": { + "minlat": 40.8475894, + "minlon": -73.9699211, + "maxlat": 40.8478471, + "maxlon": -73.9694360 + }, + "nodes": [ + 8417378284, + 10002778637, + 8417378285, + 8417378286, + 8417378287, + 8417378288, + 10002778635, + 8417378289 + ], + "geometry": [ + { "lat": 40.8477176, "lon": -73.9699211 }, + { "lat": 40.8476865, "lon": -73.9698528 }, + { "lat": 40.8476684, "lon": -73.9698131 }, + { "lat": 40.8476190, "lon": -73.9696151 }, + { "lat": 40.8475894, "lon": -73.9695000 }, + { "lat": 40.8477254, "lon": -73.9694360 }, + { "lat": 40.8478241, "lon": -73.9697553 }, + { "lat": 40.8478471, "lon": -73.9698295 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 906461665, + "bounds": { + "minlat": 40.8475948, + "minlon": -73.9694360, + "maxlat": 40.8477254, + "maxlon": -73.9689355 + }, + "nodes": [ + 8417378288, + 10002778703, + 8417378290 + ], + "geometry": [ + { "lat": 40.8477254, "lon": -73.9694360 }, + { "lat": 40.8476142, "lon": -73.9690098 }, + { "lat": 40.8475948, "lon": -73.9689355 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 906466636, + "bounds": { + "minlat": 40.8761736, + "minlon": -73.9876799, + "maxlat": 40.8764994, + "maxlon": -73.9872743 + }, + "nodes": [ + 103242072, + 8417434970, + 8417434971, + 8417434972, + 8417434973, + 8417434974, + 8417434975, + 8417434976, + 8417434977, + 8417434978, + 103260463 + ], + "geometry": [ + { "lat": 40.8764364, "lon": -73.9872743 }, + { "lat": 40.8763816, "lon": -73.9872862 }, + { "lat": 40.8762652, "lon": -73.9873644 }, + { "lat": 40.8762080, "lon": -73.9874325 }, + { "lat": 40.8761736, "lon": -73.9875537 }, + { "lat": 40.8761736, "lon": -73.9876420 }, + { "lat": 40.8762328, "lon": -73.9876799 }, + { "lat": 40.8763034, "lon": -73.9876773 }, + { "lat": 40.8763587, "lon": -73.9876445 }, + { "lat": 40.8764293, "lon": -73.9875638 }, + { "lat": 40.8764994, "lon": -73.9875091 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906518048, + "bounds": { + "minlat": 40.8725045, + "minlon": -73.9533127, + "maxlat": 40.8727667, + "maxlon": -73.9531289 + }, + "nodes": [ + 8417911922, + 9284736482, + 8417911923, + 8417911924, + 8417911925, + 8417911926, + 9284736480, + 7144899433 + ], + "geometry": [ + { "lat": 40.8725045, "lon": -73.9533127 }, + { "lat": 40.8725699, "lon": -73.9532510 }, + { "lat": 40.8726864, "lon": -73.9531410 }, + { "lat": 40.8727036, "lon": -73.9531289 }, + { "lat": 40.8727204, "lon": -73.9531320 }, + { "lat": 40.8727376, "lon": -73.9531426 }, + { "lat": 40.8727458, "lon": -73.9531504 }, + { "lat": 40.8727667, "lon": -73.9531703 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 906536198, + "bounds": { + "minlat": 40.8531478, + "minlon": -73.9660250, + "maxlat": 40.8535602, + "maxlon": -73.9658422 + }, + "nodes": [ + 8418068125, + 8418068126, + 8418068127, + 8418068128, + 8418068129, + 8418068130, + 8418068131 + ], + "geometry": [ + { "lat": 40.8535602, "lon": -73.9660250 }, + { "lat": 40.8535291, "lon": -73.9659466 }, + { "lat": 40.8534997, "lon": -73.9658974 }, + { "lat": 40.8534715, "lon": -73.9658646 }, + { "lat": 40.8534377, "lon": -73.9658422 }, + { "lat": 40.8533745, "lon": -73.9658601 }, + { "lat": 40.8531478, "lon": -73.9659720 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 906541372, + "bounds": { + "minlat": 40.7511776, + "minlon": -73.9595547, + "maxlat": 40.7518024, + "maxlon": -73.9588521 + }, + "nodes": [ + 2300353425, + 12527049303, + 593473289, + 42422691 + ], + "geometry": [ + { "lat": 40.7518024, "lon": -73.9588521 }, + { "lat": 40.7517189, "lon": -73.9589707 }, + { "lat": 40.7516696, "lon": -73.9590408 }, + { "lat": 40.7511776, "lon": -73.9595547 } + ], + "tags": { + "highway": "service", + "name": "East Road", + "name_1": "Main Street", + "service": "driveway", + "source": "Bing", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East", + "tiger:name_base_1": "Main", + "tiger:name_type": "Rd", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 907262613, + "bounds": { + "minlat": 40.8203253, + "minlon": -74.0150725, + "maxlat": 40.8204149, + "maxlon": -74.0149650 + }, + "nodes": [ + 8424770716, + 8424780017, + 8424780024 + ], + "geometry": [ + { "lat": 40.8203253, "lon": -74.0150725 }, + { "lat": 40.8203770, "lon": -74.0150256 }, + { "lat": 40.8204149, "lon": -74.0149650 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 907262614, + "bounds": { + "minlat": 40.8204149, + "minlon": -74.0151830, + "maxlat": 40.8205878, + "maxlon": -74.0149650 + }, + "nodes": [ + 8424780023, + 8424780024 + ], + "geometry": [ + { "lat": 40.8205878, "lon": -74.0151830 }, + { "lat": 40.8204149, "lon": -74.0149650 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 907262615, + "bounds": { + "minlat": 40.8204149, + "minlon": -74.0149650, + "maxlat": 40.8211587, + "maxlon": -74.0141943 + }, + "nodes": [ + 8424780024, + 8424780018, + 8424780019, + 8424780020, + 8424780021, + 8424780022 + ], + "geometry": [ + { "lat": 40.8204149, "lon": -74.0149650 }, + { "lat": 40.8206019, "lon": -74.0146665 }, + { "lat": 40.8207679, "lon": -74.0143902 }, + { "lat": 40.8209327, "lon": -74.0142041 }, + { "lat": 40.8210405, "lon": -74.0141943 }, + { "lat": 40.8211587, "lon": -74.0142421 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 907370032, + "bounds": { + "minlat": 40.7140691, + "minlon": -73.9536401, + "maxlat": 40.7143125, + "maxlon": -73.9535297 + }, + "nodes": [ + 8425776222, + 9785615283, + 8425776223, + 9785615282, + 8425776224 + ], + "geometry": [ + { "lat": 40.7143125, "lon": -73.9535297 }, + { "lat": 40.7142719, "lon": -73.9535694 }, + { "lat": 40.7142051, "lon": -73.9536349 }, + { "lat": 40.7141610, "lon": -73.9536366 }, + { "lat": 40.7140691, "lon": -73.9536401 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 907614059, + "bounds": { + "minlat": 40.7702291, + "minlon": -73.9166055, + "maxlat": 40.7703362, + "maxlon": -73.9165684 + }, + "nodes": [ + 8427721092, + 7732086315, + 6406731015 + ], + "geometry": [ + { "lat": 40.7702291, "lon": -73.9166055 }, + { "lat": 40.7702800, "lon": -73.9165872 }, + { "lat": 40.7703362, "lon": -73.9165684 } + ], + "tags": { + "foot": "yes", + "highway": "secondary", + "lanes": "3", + "layer": "1", + "maxspeed": "25 mph", + "name": "33rd Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|left|left" + } +}, +{ + "type": "way", + "id": 907614060, + "bounds": { + "minlat": 40.7699189, + "minlon": -73.9167363, + "maxlat": 40.7700013, + "maxlon": -73.9166971 + }, + "nodes": [ + 42898289, + 8427721091 + ], + "geometry": [ + { "lat": 40.7699189, "lon": -73.9167363 }, + { "lat": 40.7700013, "lon": -73.9166971 } + ], + "tags": { + "foot": "yes", + "highway": "secondary", + "lanes": "3", + "layer": "1", + "maxspeed": "25 mph", + "name": "33rd Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 907627764, + "bounds": { + "minlat": 40.7748544, + "minlon": -73.9806716, + "maxlat": 40.7750170, + "maxlon": -73.9805480 + }, + "nodes": [ + 8427872795, + 3875114049, + 42443326 + ], + "geometry": [ + { "lat": 40.7750170, "lon": -73.9805480 }, + { "lat": 40.7749167, "lon": -73.9806258 }, + { "lat": 40.7748544, "lon": -73.9806716 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:left:width": "1.8", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 907627765, + "bounds": { + "minlat": 40.7742310, + "minlon": -73.9811332, + "maxlat": 40.7748544, + "maxlon": -73.9806716 + }, + "nodes": [ + 42443326, + 9902215591, + 9902175349, + 4557495130 + ], + "geometry": [ + { "lat": 40.7748544, "lon": -73.9806716 }, + { "lat": 40.7748043, "lon": -73.9807087 }, + { "lat": 40.7742915, "lon": -73.9810884 }, + { "lat": 40.7742310, "lon": -73.9811332 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:width": "1.8", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 907868817, + "bounds": { + "minlat": 40.8217218, + "minlon": -73.9074225, + "maxlat": 40.8219557, + "maxlon": -73.9064541 + }, + "nodes": [ + 42735042, + 13625080438, + 42748204 + ], + "geometry": [ + { "lat": 40.8219557, "lon": -73.9074225 }, + { "lat": 40.8217505, "lon": -73.9065730 }, + { "lat": 40.8217218, "lon": -73.9064541 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "name": "East 161st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 907868820, + "bounds": { + "minlat": 40.8252870, + "minlon": -73.9070286, + "maxlat": 40.8258284, + "maxlon": -73.9049220 + }, + "nodes": [ + 8430175371, + 42735056, + 7557632339, + 3640112336 + ], + "geometry": [ + { "lat": 40.8252870, "lon": -73.9049220 }, + { "lat": 40.8255310, "lon": -73.9059370 }, + { "lat": 40.8257740, "lon": -73.9069237 }, + { "lat": 40.8258284, "lon": -73.9070286 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "name": "East 165th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_right": "10459" + } +}, +{ + "type": "way", + "id": 907875994, + "bounds": { + "minlat": 40.8272114, + "minlon": -74.0058130, + "maxlat": 40.8276630, + "maxlon": -74.0050273 + }, + "nodes": [ + 8430076118, + 7927830052, + 103139545 + ], + "geometry": [ + { "lat": 40.8272114, "lon": -74.0050273 }, + { "lat": 40.8274955, "lon": -74.0055159 }, + { "lat": 40.8276630, "lon": -74.0058130 } + ], + "tags": { + "highway": "residential", + "name": "Elite Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elite", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 907875995, + "bounds": { + "minlat": 40.8271430, + "minlon": -74.0050273, + "maxlat": 40.8272114, + "maxlon": -74.0048989 + }, + "nodes": [ + 103165291, + 8430076118 + ], + "geometry": [ + { "lat": 40.8271430, "lon": -74.0048989 }, + { "lat": 40.8272114, "lon": -74.0050273 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Elite Court", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elite", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 907875996, + "bounds": { + "minlat": 40.8283850, + "minlon": -74.0052394, + "maxlat": 40.8291554, + "maxlon": -74.0038588 + }, + "nodes": [ + 103196747, + 103139559 + ], + "geometry": [ + { "lat": 40.8283850, "lon": -74.0038588 }, + { "lat": 40.8291554, "lon": -74.0052394 } + ], + "tags": { + "highway": "residential", + "name": "Hamilton Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hamilton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 907875997, + "bounds": { + "minlat": 40.8283639, + "minlon": -74.0038588, + "maxlat": 40.8283850, + "maxlon": -74.0038198 + }, + "nodes": [ + 8430076119, + 103196747 + ], + "geometry": [ + { "lat": 40.8283639, "lon": -74.0038198 }, + { "lat": 40.8283850, "lon": -74.0038588 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Hamilton Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hamilton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 907875998, + "bounds": { + "minlat": 40.8291780, + "minlon": -74.0048349, + "maxlat": 40.8298797, + "maxlon": -74.0035890 + }, + "nodes": [ + 103169647, + 103139565 + ], + "geometry": [ + { "lat": 40.8291780, "lon": -74.0035890 }, + { "lat": 40.8298797, "lon": -74.0048349 } + ], + "tags": { + "highway": "residential", + "name": "Clark Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Clark", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 907875999, + "bounds": { + "minlat": 40.8291216, + "minlon": -74.0035890, + "maxlat": 40.8291780, + "maxlon": -74.0034772 + }, + "nodes": [ + 8430076120, + 103169647 + ], + "geometry": [ + { "lat": 40.8291216, "lon": -74.0034772 }, + { "lat": 40.8291780, "lon": -74.0035890 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Clark Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Clark", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 907876000, + "bounds": { + "minlat": 40.8299317, + "minlon": -74.0040488, + "maxlat": 40.8306999, + "maxlon": -74.0027386 + }, + "nodes": [ + 8430076123, + 7131436036, + 8430076121, + 103139566 + ], + "geometry": [ + { "lat": 40.8299317, "lon": -74.0027386 }, + { "lat": 40.8299603, "lon": -74.0027903 }, + { "lat": 40.8299865, "lon": -74.0028361 }, + { "lat": 40.8306999, "lon": -74.0040488 } + ], + "tags": { + "highway": "residential", + "name": "Day Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Day", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 907876001, + "bounds": { + "minlat": 40.8298513, + "minlon": -74.0027386, + "maxlat": 40.8299317, + "maxlon": -74.0026075 + }, + "nodes": [ + 8430076122, + 8430076123 + ], + "geometry": [ + { "lat": 40.8298513, "lon": -74.0026075 }, + { "lat": 40.8299317, "lon": -74.0027386 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Day Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Day", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 907886023, + "bounds": { + "minlat": 40.7962897, + "minlon": -73.9322087, + "maxlat": 40.7963627, + "maxlon": -73.9320391 + }, + "nodes": [ + 42439506, + 6257070489, + 6257070519 + ], + "geometry": [ + { "lat": 40.7963627, "lon": -73.9322087 }, + { "lat": 40.7963050, "lon": -73.9320750 }, + { "lat": 40.7962897, "lon": -73.9320391 } + ], + "tags": { + "highway": "residential", + "name": "East 118th Street", + "name:ru": "Восточная 118-я стрит", + "name_1": "East 118 Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 908009244, + "bounds": { + "minlat": 40.7399972, + "minlon": -74.0031216, + "maxlat": 40.7402929, + "maxlon": -74.0028976 + }, + "nodes": [ + 8431296948, + 8431296949, + 8431296950 + ], + "geometry": [ + { "lat": 40.7402929, "lon": -74.0028976 }, + { "lat": 40.7400964, "lon": -74.0030462 }, + { "lat": 40.7399972, "lon": -74.0031216 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 908031915, + "bounds": { + "minlat": 40.8518750, + "minlon": -73.9677919, + "maxlat": 40.8519357, + "maxlon": -73.9676101 + }, + "nodes": [ + 8431542837, + 8431542841, + 8431542842, + 8431542838 + ], + "geometry": [ + { "lat": 40.8519357, "lon": -73.9677919 }, + { "lat": 40.8519126, "lon": -73.9677226 }, + { "lat": 40.8518838, "lon": -73.9676362 }, + { "lat": 40.8518750, "lon": -73.9676101 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 908031916, + "bounds": { + "minlat": 40.8517197, + "minlon": -73.9680296, + "maxlat": 40.8517568, + "maxlon": -73.9679257 + }, + "nodes": [ + 8431542839, + 8431542840 + ], + "geometry": [ + { "lat": 40.8517568, "lon": -73.9680296 }, + { "lat": 40.8517197, "lon": -73.9679257 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 908031917, + "bounds": { + "minlat": 40.8516557, + "minlon": -73.9677514, + "maxlat": 40.8518750, + "maxlon": -73.9676101 + }, + "nodes": [ + 298810324, + 10002778716, + 298810202, + 8431542838 + ], + "geometry": [ + { "lat": 40.8516557, "lon": -73.9677514 }, + { "lat": 40.8517631, "lon": -73.9676808 }, + { "lat": 40.8518199, "lon": -73.9676435 }, + { "lat": 40.8518750, "lon": -73.9676101 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "name": "Park Avenue", + "oneway": "yes", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 908031918, + "bounds": { + "minlat": 40.8516557, + "minlon": -73.9679257, + "maxlat": 40.8517197, + "maxlon": -73.9677514 + }, + "nodes": [ + 8431542840, + 298810324 + ], + "geometry": [ + { "lat": 40.8517197, "lon": -73.9679257 }, + { "lat": 40.8516557, "lon": -73.9677514 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 908031919, + "bounds": { + "minlat": 40.8512550, + "minlon": -73.9682107, + "maxlat": 40.8517197, + "maxlon": -73.9679257 + }, + "nodes": [ + 8431542840, + 298810342, + 4207174911 + ], + "geometry": [ + { "lat": 40.8517197, "lon": -73.9679257 }, + { "lat": 40.8512745, "lon": -73.9682014 }, + { "lat": 40.8512550, "lon": -73.9682107 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Park Avenue", + "oneway": "yes", + "turn:lanes": "left|through;right", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 908031920, + "bounds": { + "minlat": 40.8517197, + "minlon": -73.9679257, + "maxlat": 40.8519357, + "maxlon": -73.9677919 + }, + "nodes": [ + 8431542837, + 10002778718, + 8431542840 + ], + "geometry": [ + { "lat": 40.8519357, "lon": -73.9677919 }, + { "lat": 40.8518363, "lon": -73.9678534 }, + { "lat": 40.8517197, "lon": -73.9679257 } + ], + "tags": { + "highway": "secondary", + "name": "Park Avenue", + "oneway": "yes", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 908031921, + "bounds": { + "minlat": 40.8518750, + "minlon": -73.9676101, + "maxlat": 40.8523306, + "maxlon": -73.9673360 + }, + "nodes": [ + 8431542838, + 10002778597, + 10002778604, + 298809213, + 5179132362 + ], + "geometry": [ + { "lat": 40.8518750, "lon": -73.9676101 }, + { "lat": 40.8520067, "lon": -73.9675303 }, + { "lat": 40.8521791, "lon": -73.9674259 }, + { "lat": 40.8522873, "lon": -73.9673603 }, + { "lat": 40.8523306, "lon": -73.9673360 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "name": "Park Avenue", + "oneway": "yes", + "turn:lanes": "left|||", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 908031922, + "bounds": { + "minlat": 40.8516862, + "minlon": -73.9676101, + "maxlat": 40.8518750, + "maxlon": -73.9674003 + }, + "nodes": [ + 8431542838, + 10002778717, + 8431542843, + 8431542864, + 8431542844, + 8431542845 + ], + "geometry": [ + { "lat": 40.8518750, "lon": -73.9676101 }, + { "lat": 40.8518462, "lon": -73.9675556 }, + { "lat": 40.8518306, "lon": -73.9675263 }, + { "lat": 40.8517914, "lon": -73.9674631 }, + { "lat": 40.8517437, "lon": -73.9674218 }, + { "lat": 40.8516862, "lon": -73.9674003 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 908031923, + "bounds": { + "minlat": 40.8515208, + "minlon": -73.9675352, + "maxlat": 40.8516877, + "maxlon": -73.9673144 + }, + "nodes": [ + 8431542860, + 8431542854, + 8431542853, + 8431542852, + 8431542851, + 8431542850, + 8431542859, + 8431542858, + 8431542857, + 8431542856, + 8431542855, + 8431542849, + 8431542848, + 8431542847, + 8431542846, + 8431542845, + 8431542863, + 8431542862, + 8431542861, + 8431542860 + ], + "geometry": [ + { "lat": 40.8516397, "lon": -73.9675255 }, + { "lat": 40.8516123, "lon": -73.9675352 }, + { "lat": 40.8515840, "lon": -73.9675323 }, + { "lat": 40.8515580, "lon": -73.9675171 }, + { "lat": 40.8515374, "lon": -73.9674913 }, + { "lat": 40.8515245, "lon": -73.9674578 }, + { "lat": 40.8515208, "lon": -73.9674227 }, + { "lat": 40.8515256, "lon": -73.9673878 }, + { "lat": 40.8515386, "lon": -73.9673567 }, + { "lat": 40.8515583, "lon": -73.9673326 }, + { "lat": 40.8515827, "lon": -73.9673180 }, + { "lat": 40.8516094, "lon": -73.9673144 }, + { "lat": 40.8516356, "lon": -73.9673222 }, + { "lat": 40.8516586, "lon": -73.9673405 }, + { "lat": 40.8516761, "lon": -73.9673674 }, + { "lat": 40.8516862, "lon": -73.9674003 }, + { "lat": 40.8516877, "lon": -73.9674378 }, + { "lat": 40.8516797, "lon": -73.9674738 }, + { "lat": 40.8516630, "lon": -73.9675042 }, + { "lat": 40.8516397, "lon": -73.9675255 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 908118909, + "bounds": { + "minlat": 40.8096350, + "minlon": -73.9281423, + "maxlat": 40.8098909, + "maxlon": -73.9279574 + }, + "nodes": [ + 8706869342, + 7553907592 + ], + "geometry": [ + { "lat": 40.8098909, "lon": -73.9279574 }, + { "lat": 40.8096350, "lon": -73.9281423 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "hgv": "destination", + "highway": "secondary", + "name": "Lincoln Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 908134356, + "bounds": { + "minlat": 40.8120554, + "minlon": -73.9360803, + "maxlat": 40.8120958, + "maxlon": -73.9359818 + }, + "nodes": [ + 42437929, + 7541804762 + ], + "geometry": [ + { "lat": 40.8120554, "lon": -73.9359818 }, + { "lat": 40.8120958, "lon": -73.9360803 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 908150696, + "bounds": { + "minlat": 40.7138456, + "minlon": -73.9799617, + "maxlat": 40.7139728, + "maxlon": -73.9795320 + }, + "nodes": [ + 42452117, + 5804713748, + 5377706601, + 42437786 + ], + "geometry": [ + { "lat": 40.7139728, "lon": -73.9799617 }, + { "lat": 40.7139390, "lon": -73.9798475 }, + { "lat": 40.7138825, "lon": -73.9796573 }, + { "lat": 40.7138456, "lon": -73.9795320 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 908154310, + "bounds": { + "minlat": 40.7806943, + "minlon": -73.9465727, + "maxlat": 40.7811624, + "maxlon": -73.9462460 + }, + "nodes": [ + 42448745, + 6185259903, + 4207786966 + ], + "geometry": [ + { "lat": 40.7806943, "lon": -73.9465727 }, + { "lat": 40.7807543, "lon": -73.9465308 }, + { "lat": 40.7811624, "lon": -73.9462460 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 908288926, + "bounds": { + "minlat": 40.7649077, + "minlon": -73.9337050, + "maxlat": 40.7654384, + "maxlon": -73.9327384 + }, + "nodes": [ + 8433855055, + 8433855057, + 2504465131 + ], + "geometry": [ + { "lat": 40.7649077, "lon": -73.9327384 }, + { "lat": 40.7650649, "lon": -73.9330246 }, + { "lat": 40.7654384, "lon": -73.9337050 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "33rd Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 908288927, + "bounds": { + "minlat": 40.7643052, + "minlon": -73.9345214, + "maxlat": 40.7649499, + "maxlon": -73.9331289 + }, + "nodes": [ + 8433855056, + 2504465122, + 7726844878, + 2504465118 + ], + "geometry": [ + { "lat": 40.7643052, "lon": -73.9331289 }, + { "lat": 40.7643665, "lon": -73.9332604 }, + { "lat": 40.7648994, "lon": -73.9344121 }, + { "lat": 40.7649499, "lon": -73.9345214 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 908403439, + "bounds": { + "minlat": 40.8589061, + "minlon": -73.9781624, + "maxlat": 40.8591603, + "maxlon": -73.9774514 + }, + "nodes": [ + 8434903870, + 8434903871, + 8434903872, + 8434903873, + 8434903874, + 8434903875, + 8434903879, + 8434903878, + 8434903876, + 8434903877 + ], + "geometry": [ + { "lat": 40.8589560, "lon": -73.9774514 }, + { "lat": 40.8589165, "lon": -73.9774828 }, + { "lat": 40.8589061, "lon": -73.9775074 }, + { "lat": 40.8589073, "lon": -73.9775281 }, + { "lat": 40.8589136, "lon": -73.9775672 }, + { "lat": 40.8589581, "lon": -73.9776907 }, + { "lat": 40.8589839, "lon": -73.9777802 }, + { "lat": 40.8590360, "lon": -73.9779002 }, + { "lat": 40.8591102, "lon": -73.9780747 }, + { "lat": 40.8591603, "lon": -73.9781624 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 908405992, + "bounds": { + "minlat": 40.7177400, + "minlon": -74.0046412, + "maxlat": 40.7179653, + "maxlon": -74.0041540 + }, + "nodes": [ + 8434926581, + 42448146 + ], + "geometry": [ + { "lat": 40.7179653, "lon": -74.0046412 }, + { "lat": 40.7177400, "lon": -74.0041540 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "name:ko": "프랭클린 스트리트", + "name:ru": "Франклин-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 908476004, + "bounds": { + "minlat": 40.8545165, + "minlon": -73.9992355, + "maxlat": 40.8548983, + "maxlon": -73.9989827 + }, + "nodes": [ + 8435496918, + 8435496919 + ], + "geometry": [ + { "lat": 40.8545165, "lon": -73.9992355 }, + { "lat": 40.8548983, "lon": -73.9989827 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 908823395, + "bounds": { + "minlat": 40.7109120, + "minlon": -73.9922162, + "maxlat": 40.7109270, + "maxlon": -73.9921092 + }, + "nodes": [ + 7480515821, + 4207806923 + ], + "geometry": [ + { "lat": 40.7109270, "lon": -73.9921092 }, + { "lat": 40.7109120, "lon": -73.9922162 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Cherry Street", + "name:ko": "체리 스트리트", + "name:ru": "Черри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 908825796, + "bounds": { + "minlat": 40.7150598, + "minlon": -73.9783672, + "maxlat": 40.7151586, + "maxlon": -73.9780428 + }, + "nodes": [ + 42435553, + 13164899090, + 9549667211 + ], + "geometry": [ + { "lat": 40.7151586, "lon": -73.9783672 }, + { "lat": 40.7150996, "lon": -73.9781734 }, + { "lat": 40.7150598, "lon": -73.9780428 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 908868195, + "bounds": { + "minlat": 40.8244690, + "minlon": -73.9105720, + "maxlat": 40.8246425, + "maxlon": -73.9099035 + }, + "nodes": [ + 42730079, + 9917683081, + 7557648829 + ], + "geometry": [ + { "lat": 40.8246425, "lon": -73.9105720 }, + { "lat": 40.8246291, "lon": -73.9104709 }, + { "lat": 40.8244690, "lon": -73.9099035 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 163rd Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456", + "turn:lanes:backward": "left|left|through" + } +}, +{ + "type": "way", + "id": 908868196, + "bounds": { + "minlat": 40.8298538, + "minlon": -73.9305504, + "maxlat": 40.8299650, + "maxlon": -73.9299337 + }, + "nodes": [ + 2912071100, + 9910738433, + 9910738427, + 9166334384, + 9166334385, + 9166334386, + 42735968 + ], + "geometry": [ + { "lat": 40.8298538, "lon": -73.9305504 }, + { "lat": 40.8298729, "lon": -73.9304878 }, + { "lat": 40.8298920, "lon": -73.9304158 }, + { "lat": 40.8299083, "lon": -73.9303411 }, + { "lat": 40.8299235, "lon": -73.9302523 }, + { "lat": 40.8299462, "lon": -73.9300659 }, + { "lat": 40.8299650, "lon": -73.9299337 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 908882254, + "bounds": { + "minlat": 40.7336357, + "minlon": -74.0027408, + "maxlat": 40.7337334, + "maxlon": -74.0026286 + }, + "nodes": [ + 4679523598, + 8307642037, + 4320028826 + ], + "geometry": [ + { "lat": 40.7336357, "lon": -74.0026286 }, + { "lat": 40.7336905, "lon": -74.0026896 }, + { "lat": 40.7337334, "lon": -74.0027408 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 4th Street", + "name:ru": "Западная 4-я стрит", + "name_1": "West 4 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 909582172, + "bounds": { + "minlat": 40.7590262, + "minlon": -73.9610378, + "maxlat": 40.7591778, + "maxlon": -73.9609164 + }, + "nodes": [ + 8445417289, + 6293701620, + 6293701619 + ], + "geometry": [ + { "lat": 40.7590262, "lon": -73.9610378 }, + { "lat": 40.7591153, "lon": -73.9609622 }, + { "lat": 40.7591778, "lon": -73.9609164 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 909582173, + "bounds": { + "minlat": 40.7585489, + "minlon": -73.9613876, + "maxlat": 40.7587479, + "maxlon": -73.9612379 + }, + "nodes": [ + 6293701622, + 6293701621, + 8445417290 + ], + "geometry": [ + { "lat": 40.7585489, "lon": -73.9613876 }, + { "lat": 40.7586077, "lon": -73.9613435 }, + { "lat": 40.7587479, "lon": -73.9612379 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 909583713, + "bounds": { + "minlat": 40.7279096, + "minlon": -73.9325128, + "maxlat": 40.7279838, + "maxlon": -73.9324024 + }, + "nodes": [ + 42476687, + 8445443735 + ], + "geometry": [ + { "lat": 40.7279096, "lon": -73.9325128 }, + { "lat": 40.7279838, "lon": -73.9324024 } + ], + "tags": { + "highway": "unclassified", + "name": "Meeker Avenue", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 909583714, + "bounds": { + "minlat": 40.7279838, + "minlon": -73.9324125, + "maxlat": 40.7280921, + "maxlon": -73.9323112 + }, + "nodes": [ + 8445443735, + 8445443736, + 8445443737 + ], + "geometry": [ + { "lat": 40.7279838, "lon": -73.9324024 }, + { "lat": 40.7280225, "lon": -73.9324125 }, + { "lat": 40.7280921, "lon": -73.9323112 } + ], + "tags": { + "highway": "track", + "tracktype": "grade1" + } +}, +{ + "type": "way", + "id": 909699823, + "bounds": { + "minlat": 40.8093262, + "minlon": -73.9295812, + "maxlat": 40.8093824, + "maxlon": -73.9294982 + }, + "nodes": [ + 2348236928, + 567820429 + ], + "geometry": [ + { "lat": 40.8093824, "lon": -73.9295812 }, + { "lat": 40.8093262, "lon": -73.9294982 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "source:name": "New York State Office of Cyber Security (OCS) StreetSegmentPublic Dataset (http://gis.ny.gov/gisdata/inventories/details.cfm?DSID=932)", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 909875938, + "bounds": { + "minlat": 40.8403739, + "minlon": -73.9755715, + "maxlat": 40.8405813, + "maxlon": -73.9751689 + }, + "nodes": [ + 7292367113, + 8448198279, + 7292367109, + 5449336806 + ], + "geometry": [ + { "lat": 40.8403739, "lon": -73.9751689 }, + { "lat": 40.8405226, "lon": -73.9754574 }, + { "lat": 40.8405305, "lon": -73.9754728 }, + { "lat": 40.8405813, "lon": -73.9755715 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 909876726, + "bounds": { + "minlat": 40.7769492, + "minlon": -73.9865066, + "maxlat": 40.7770261, + "maxlon": -73.9863228 + }, + "nodes": [ + 3371304333, + 3377383086, + 3371304332 + ], + "geometry": [ + { "lat": 40.7769492, "lon": -73.9863228 }, + { "lat": 40.7769707, "lon": -73.9863755 }, + { "lat": 40.7770261, "lon": -73.9865066 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 909895228, + "bounds": { + "minlat": 40.7696153, + "minlon": -73.9876546, + "maxlat": 40.7696883, + "maxlon": -73.9876048 + }, + "nodes": [ + 7246154631, + 10082533442, + 8448399422 + ], + "geometry": [ + { "lat": 40.7696153, "lon": -73.9876546 }, + { "lat": 40.7696822, "lon": -73.9876090 }, + { "lat": 40.7696883, "lon": -73.9876048 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 910123753, + "bounds": { + "minlat": 40.8521292, + "minlon": -73.9206655, + "maxlat": 40.8524342, + "maxlon": -73.9204599 + }, + "nodes": [ + 42732710, + 9918264505, + 12056545244, + 12056107831, + 12056107830, + 9918264508, + 4720620194 + ], + "geometry": [ + { "lat": 40.8521292, "lon": -73.9206655 }, + { "lat": 40.8522537, "lon": -73.9206002 }, + { "lat": 40.8522860, "lon": -73.9205840 }, + { "lat": 40.8523186, "lon": -73.9205630 }, + { "lat": 40.8523529, "lon": -73.9205369 }, + { "lat": 40.8523830, "lon": -73.9205100 }, + { "lat": 40.8524342, "lon": -73.9204599 } + ], + "tags": { + "highway": "residential", + "name": "Cedar Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cedar", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 910136560, + "bounds": { + "minlat": 40.7735529, + "minlon": -73.9299279, + "maxlat": 40.7735989, + "maxlon": -73.9298869 + }, + "nodes": [ + 7733683731, + 7745197950 + ], + "geometry": [ + { "lat": 40.7735529, "lon": -73.9299279 }, + { "lat": 40.7735989, "lon": -73.9298869 } + ], + "tags": { + "highway": "residential", + "name": "12th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 910137943, + "bounds": { + "minlat": 40.8414262, + "minlon": -73.9279207, + "maxlat": 40.8422723, + "maxlon": -73.9274771 + }, + "nodes": [ + 6566753763, + 12050046963, + 12050046962, + 12050046961, + 12050046960, + 7025656814, + 12050046937, + 12050046938, + 12050046939, + 12050046940, + 12050046948, + 12050046947, + 60920487 + ], + "geometry": [ + { "lat": 40.8422723, "lon": -73.9274771 }, + { "lat": 40.8421978, "lon": -73.9275783 }, + { "lat": 40.8421758, "lon": -73.9276057 }, + { "lat": 40.8421490, "lon": -73.9276299 }, + { "lat": 40.8421252, "lon": -73.9276475 }, + { "lat": 40.8420965, "lon": -73.9276651 }, + { "lat": 40.8420530, "lon": -73.9276846 }, + { "lat": 40.8419997, "lon": -73.9277083 }, + { "lat": 40.8419444, "lon": -73.9277293 }, + { "lat": 40.8418805, "lon": -73.9277539 }, + { "lat": 40.8415522, "lon": -73.9278681 }, + { "lat": 40.8414934, "lon": -73.9278909 }, + { "lat": 40.8414262, "lon": -73.9279207 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 910137944, + "bounds": { + "minlat": 40.8414262, + "minlon": -73.9279207, + "maxlat": 40.8422723, + "maxlon": -73.9274470 + }, + "nodes": [ + 60920487, + 7025656812, + 12050046949, + 12050046950, + 12050046951, + 7025656816, + 12050046952, + 12050046953, + 12050046954, + 12050046955, + 12050090169, + 12050090170, + 12050090171, + 6566753763 + ], + "geometry": [ + { "lat": 40.8414262, "lon": -73.9279207 }, + { "lat": 40.8416835, "lon": -73.9277249 }, + { "lat": 40.8417823, "lon": -73.9276572 }, + { "lat": 40.8418678, "lon": -73.9275996 }, + { "lat": 40.8419140, "lon": -73.9275690 }, + { "lat": 40.8419579, "lon": -73.9275429 }, + { "lat": 40.8420132, "lon": -73.9275113 }, + { "lat": 40.8420618, "lon": -73.9274855 }, + { "lat": 40.8421155, "lon": -73.9274596 }, + { "lat": 40.8421423, "lon": -73.9274495 }, + { "lat": 40.8421720, "lon": -73.9274470 }, + { "lat": 40.8422040, "lon": -73.9274518 }, + { "lat": 40.8422299, "lon": -73.9274602 }, + { "lat": 40.8422723, "lon": -73.9274771 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:zip_left": "10452", + "tiger:zip_right": "10453", + "turn:lanes": "slight_left|slight_right", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 910149377, + "bounds": { + "minlat": 40.8525723, + "minlon": -73.9219875, + "maxlat": 40.8527898, + "maxlon": -73.9217412 + }, + "nodes": [ + 595750833, + 8450694764, + 8450694761, + 8450694760, + 8450694759, + 8450694758, + 8450694768, + 9918291031, + 12057681784, + 8250546158 + ], + "geometry": [ + { "lat": 40.8527045, "lon": -73.9217412 }, + { "lat": 40.8527898, "lon": -73.9218946 }, + { "lat": 40.8527208, "lon": -73.9219629 }, + { "lat": 40.8527035, "lon": -73.9219769 }, + { "lat": 40.8526871, "lon": -73.9219849 }, + { "lat": 40.8526688, "lon": -73.9219875 }, + { "lat": 40.8526491, "lon": -73.9219824 }, + { "lat": 40.8526305, "lon": -73.9219675 }, + { "lat": 40.8526171, "lon": -73.9219474 }, + { "lat": 40.8525723, "lon": -73.9218657 } + ], + "tags": { + "access": "private", + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "yes", + "sidewalk:right": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Richman", + "tiger:name_type": "Plz", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 910149378, + "bounds": { + "minlat": 40.8525877, + "minlon": -73.9217412, + "maxlat": 40.8527045, + "maxlon": -73.9215266 + }, + "nodes": [ + 42745481, + 12057670863, + 8450694784, + 595750833 + ], + "geometry": [ + { "lat": 40.8525877, "lon": -73.9215266 }, + { "lat": 40.8526404, "lon": -73.9216234 }, + { "lat": 40.8526596, "lon": -73.9216587 }, + { "lat": 40.8527045, "lon": -73.9217412 } + ], + "tags": { + "access": "private", + "bridge": "yes", + "highway": "service", + "lanes": "2", + "layer": "1", + "maxspeed": "5 mph", + "name": "Richman Plaza", + "sidewalk:right": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Richman", + "tiger:name_type": "Plz", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 910295032, + "bounds": { + "minlat": 40.8244207, + "minlon": -73.9085377, + "maxlat": 40.8245768, + "maxlon": -73.9084715 + }, + "nodes": [ + 7557632337, + 471223605 + ], + "geometry": [ + { "lat": 40.8245768, "lon": -73.9084715 }, + { "lat": 40.8244207, "lon": -73.9085377 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 910295033, + "bounds": { + "minlat": 40.8245768, + "minlon": -73.9084715, + "maxlat": 40.8249209, + "maxlon": -73.9083423 + }, + "nodes": [ + 8009144425, + 7557632337 + ], + "geometry": [ + { "lat": 40.8249209, "lon": -73.9083423 }, + { "lat": 40.8245768, "lon": -73.9084715 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 910346534, + "bounds": { + "minlat": 40.7042048, + "minlon": -73.9387863, + "maxlat": 40.7042354, + "maxlon": -73.9387545 + }, + "nodes": [ + 4660922280, + 6907298767 + ], + "geometry": [ + { "lat": 40.7042048, "lon": -73.9387545 }, + { "lat": 40.7042354, "lon": -73.9387863 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Bushwick Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910346535, + "bounds": { + "minlat": 40.7042354, + "minlon": -73.9390068, + "maxlat": 40.7044455, + "maxlon": -73.9387863 + }, + "nodes": [ + 6907298767, + 7722378715 + ], + "geometry": [ + { "lat": 40.7042354, "lon": -73.9387863 }, + { "lat": 40.7044455, "lon": -73.9390068 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Bushwick Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910346536, + "bounds": { + "minlat": 40.7039968, + "minlon": -73.9387545, + "maxlat": 40.7042048, + "maxlon": -73.9385365 + }, + "nodes": [ + 7722378721, + 4660922286, + 4660922280 + ], + "geometry": [ + { "lat": 40.7039968, "lon": -73.9385365 }, + { "lat": 40.7040497, "lon": -73.9385918 }, + { "lat": 40.7042048, "lon": -73.9387545 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Bushwick Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910346537, + "bounds": { + "minlat": 40.7040187, + "minlon": -73.9393208, + "maxlat": 40.7040632, + "maxlon": -73.9389276 + }, + "nodes": [ + 7722378722, + 3539722831 + ], + "geometry": [ + { "lat": 40.7040187, "lon": -73.9389276 }, + { "lat": 40.7040632, "lon": -73.9393208 } + ], + "tags": { + "highway": "residential", + "name": "Moore Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no" + } +}, +{ + "type": "way", + "id": 910349262, + "bounds": { + "minlat": 40.7057639, + "minlon": -73.9260412, + "maxlat": 40.7094021, + "maxlon": -73.9218981 + }, + "nodes": [ + 7711304343, + 42504162, + 42490930, + 9744131155, + 42504174, + 9744131154, + 1275778430, + 1275778402, + 9744131217, + 42504181, + 9744131216, + 9950027995, + 42474005, + 9950027994, + 9744131240, + 3325564426 + ], + "geometry": [ + { "lat": 40.7057639, "lon": -73.9260412 }, + { "lat": 40.7065706, "lon": -73.9251444 }, + { "lat": 40.7068184, "lon": -73.9248490 }, + { "lat": 40.7073405, "lon": -73.9242321 }, + { "lat": 40.7073940, "lon": -73.9241690 }, + { "lat": 40.7074535, "lon": -73.9241021 }, + { "lat": 40.7075425, "lon": -73.9240010 }, + { "lat": 40.7077816, "lon": -73.9237478 }, + { "lat": 40.7083376, "lon": -73.9231166 }, + { "lat": 40.7084173, "lon": -73.9230208 }, + { "lat": 40.7084728, "lon": -73.9229542 }, + { "lat": 40.7089386, "lon": -73.9224139 }, + { "lat": 40.7090060, "lon": -73.9223370 }, + { "lat": 40.7090673, "lon": -73.9222692 }, + { "lat": 40.7093247, "lon": -73.9219904 }, + { "lat": 40.7094021, "lon": -73.9218981 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Flushing Avenue", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 910349263, + "bounds": { + "minlat": 40.7056676, + "minlon": -73.9261231, + "maxlat": 40.7057639, + "maxlon": -73.9260412 + }, + "nodes": [ + 7711304345, + 7711304343 + ], + "geometry": [ + { "lat": 40.7056676, "lon": -73.9261231 }, + { "lat": 40.7057639, "lon": -73.9260412 } + ], + "tags": { + "highway": "residential", + "name": "Melrose Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 910349264, + "bounds": { + "minlat": 40.7056863, + "minlon": -73.9262227, + "maxlat": 40.7057639, + "maxlon": -73.9260412 + }, + "nodes": [ + 7711304344, + 7711304343 + ], + "geometry": [ + { "lat": 40.7056863, "lon": -73.9262227 }, + { "lat": 40.7057639, "lon": -73.9260412 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 910349265, + "bounds": { + "minlat": 40.7056676, + "minlon": -73.9262227, + "maxlat": 40.7056863, + "maxlon": -73.9261231 + }, + "nodes": [ + 7711304344, + 7711304345 + ], + "geometry": [ + { "lat": 40.7056863, "lon": -73.9262227 }, + { "lat": 40.7056676, "lon": -73.9261231 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Thames Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910349557, + "bounds": { + "minlat": 40.7612292, + "minlon": -73.9559451, + "maxlat": 40.7634712, + "maxlon": -73.9536360 + }, + "nodes": [ + 42422682, + 9939558880, + 371194345, + 3785575780, + 3785575781, + 371194346, + 3785575782, + 3785575783 + ], + "geometry": [ + { "lat": 40.7634712, "lon": -73.9536360 }, + { "lat": 40.7633484, "lon": -73.9537451 }, + { "lat": 40.7627954, "lon": -73.9542360 }, + { "lat": 40.7626076, "lon": -73.9544154 }, + { "lat": 40.7624484, "lon": -73.9545830 }, + { "lat": 40.7622658, "lon": -73.9547847 }, + { "lat": 40.7614445, "lon": -73.9556939 }, + { "lat": 40.7612292, "lon": -73.9559451 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "surface": "asphalt", + "tunnel": "building_passage", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 910349558, + "bounds": { + "minlat": 40.7634207, + "minlon": -73.9535266, + "maxlat": 40.7651059, + "maxlon": -73.9519986 + }, + "nodes": [ + 371194366, + 371196888 + ], + "geometry": [ + { "lat": 40.7634207, "lon": -73.9535266 }, + { "lat": 40.7651059, "lon": -73.9519986 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "-1", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "tunnel": "building_passage", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 910350178, + "bounds": { + "minlat": 40.7071415, + "minlon": -73.9570820, + "maxlat": 40.7075260, + "maxlon": -73.9570400 + }, + "nodes": [ + 42478023, + 6338023987, + 42520704 + ], + "geometry": [ + { "lat": 40.7071415, "lon": -73.9570820 }, + { "lat": 40.7072252, "lon": -73.9570729 }, + { "lat": 40.7075260, "lon": -73.9570400 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 910351052, + "bounds": { + "minlat": 40.7055611, + "minlon": -73.9265920, + "maxlat": 40.7056863, + "maxlon": -73.9262227 + }, + "nodes": [ + 42504158, + 9744012786, + 7711304344 + ], + "geometry": [ + { "lat": 40.7055611, "lon": -73.9265920 }, + { "lat": 40.7056413, "lon": -73.9263554 }, + { "lat": 40.7056863, "lon": -73.9262227 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk": "separate", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 910353245, + "bounds": { + "minlat": 40.7133230, + "minlon": -73.9161372, + "maxlat": 40.7134185, + "maxlon": -73.9158549 + }, + "nodes": [ + 7711279832, + 13018332805, + 9744131391 + ], + "geometry": [ + { "lat": 40.7133230, "lon": -73.9161372 }, + { "lat": 40.7133453, "lon": -73.9160712 }, + { "lat": 40.7134185, "lon": -73.9158549 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes:forward": "left|", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 910353246, + "bounds": { + "minlat": 40.7137823, + "minlon": -73.9152035, + "maxlat": 40.7138988, + "maxlon": -73.9151110 + }, + "nodes": [ + 7711304350, + 5482319555 + ], + "geometry": [ + { "lat": 40.7137823, "lon": -73.9152035 }, + { "lat": 40.7138988, "lon": -73.9151110 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 910353247, + "bounds": { + "minlat": 40.7134185, + "minlon": -73.9158549, + "maxlat": 40.7134959, + "maxlon": -73.9156780 + }, + "nodes": [ + 9744131391, + 42843568 + ], + "geometry": [ + { "lat": 40.7134185, "lon": -73.9158549 }, + { "lat": 40.7134959, "lon": -73.9156780 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Flushing Avenue", + "oneway": "no", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 910360950, + "bounds": { + "minlat": 40.7133151, + "minlon": -73.9328237, + "maxlat": 40.7138832, + "maxlon": -73.9325433 + }, + "nodes": [ + 6908682220, + 8842929825, + 8452190336 + ], + "geometry": [ + { "lat": 40.7138832, "lon": -73.9328237 }, + { "lat": 40.7137949, "lon": -73.9327802 }, + { "lat": 40.7133151, "lon": -73.9325433 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 910360951, + "bounds": { + "minlat": 40.7140100, + "minlon": -73.9323951, + "maxlat": 40.7143448, + "maxlon": -73.9323315 + }, + "nodes": [ + 1275778461, + 8842579362, + 9947391792, + 8968692159, + 1275778413 + ], + "geometry": [ + { "lat": 40.7140100, "lon": -73.9323315 }, + { "lat": 40.7140749, "lon": -73.9323456 }, + { "lat": 40.7141329, "lon": -73.9323555 }, + { "lat": 40.7142608, "lon": -73.9323804 }, + { "lat": 40.7143448, "lon": -73.9323951 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910361854, + "bounds": { + "minlat": 40.7134688, + "minlon": -73.9974891, + "maxlat": 40.7140183, + "maxlon": -73.9972984 + }, + "nodes": [ + 12374690312, + 4160342482, + 4160344089, + 3973686299, + 4158807593, + 588455886, + 11153640068, + 42433537 + ], + "geometry": [ + { "lat": 40.7140183, "lon": -73.9974891 }, + { "lat": 40.7139876, "lon": -73.9974634 }, + { "lat": 40.7139610, "lon": -73.9974456 }, + { "lat": 40.7139390, "lon": -73.9974340 }, + { "lat": 40.7139152, "lon": -73.9974227 }, + { "lat": 40.7138926, "lon": -73.9974136 }, + { "lat": 40.7135581, "lon": -73.9973221 }, + { "lat": 40.7134688, "lon": -73.9972984 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Street", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910363795, + "bounds": { + "minlat": 40.7131690, + "minlon": -73.9927106, + "maxlat": 40.7135255, + "maxlon": -73.9926598 + }, + "nodes": [ + 9505971548, + 8279851227, + 5706568658 + ], + "geometry": [ + { "lat": 40.7135255, "lon": -73.9927106 }, + { "lat": 40.7132397, "lon": -73.9926693 }, + { "lat": 40.7131690, "lon": -73.9926598 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 910379886, + "bounds": { + "minlat": 40.7650850, + "minlon": -73.9318341, + "maxlat": 40.7652267, + "maxlon": -73.9316965 + }, + "nodes": [ + 42826064, + 6452398347, + 5487911895 + ], + "geometry": [ + { "lat": 40.7652267, "lon": -73.9316965 }, + { "lat": 40.7651616, "lon": -73.9317634 }, + { "lat": 40.7650850, "lon": -73.9318341 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910462618, + "bounds": { + "minlat": 40.7734857, + "minlon": -73.9249433, + "maxlat": 40.7739965, + "maxlon": -73.9245333 + }, + "nodes": [ + 7746695025, + 3570422555, + 42826023 + ], + "geometry": [ + { "lat": 40.7739965, "lon": -73.9245333 }, + { "lat": 40.7735129, "lon": -73.9249204 }, + { "lat": 40.7734857, "lon": -73.9249433 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910468313, + "bounds": { + "minlat": 40.7518563, + "minlon": -73.9652298, + "maxlat": 40.7524489, + "maxlon": -73.9646258 + }, + "nodes": [ + 3829675225, + 3829675222, + 5426969135, + 3829675226, + 589098810, + 10994926351, + 10994926352, + 7096725574, + 10994926356, + 5220467776 + ], + "geometry": [ + { "lat": 40.7524489, "lon": -73.9646318 }, + { "lat": 40.7524180, "lon": -73.9646258 }, + { "lat": 40.7523971, "lon": -73.9646342 }, + { "lat": 40.7523705, "lon": -73.9646557 }, + { "lat": 40.7521664, "lon": -73.9648534 }, + { "lat": 40.7519478, "lon": -73.9650631 }, + { "lat": 40.7519227, "lon": -73.9651013 }, + { "lat": 40.7519029, "lon": -73.9651419 }, + { "lat": 40.7518760, "lon": -73.9651966 }, + { "lat": 40.7518563, "lon": -73.9652298 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910483536, + "bounds": { + "minlat": 40.8369502, + "minlon": -73.9081538, + "maxlat": 40.8371458, + "maxlon": -73.9080460 + }, + "nodes": [ + 2327295349, + 10126901712, + 8454214988 + ], + "geometry": [ + { "lat": 40.8369502, "lon": -73.9080460 }, + { "lat": 40.8370772, "lon": -73.9081117 }, + { "lat": 40.8371458, "lon": -73.9081538 } + ], + "tags": { + "highway": "residential", + "name": "Clay Avenue", + "name:etymology:wikidata": "Q319630", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Clay", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 910483541, + "bounds": { + "minlat": 40.8369502, + "minlon": -73.9080460, + "maxlat": 40.8372861, + "maxlon": -73.9078703 + }, + "nodes": [ + 2327295349, + 8454214981, + 10126901713, + 42739249 + ], + "geometry": [ + { "lat": 40.8369502, "lon": -73.9080460 }, + { "lat": 40.8370823, "lon": -73.9079566 }, + { "lat": 40.8371478, "lon": -73.9079090 }, + { "lat": 40.8372861, "lon": -73.9078703 } + ], + "tags": { + "highway": "residential", + "name": "Clay Avenue", + "name:etymology:wikidata": "Q319630", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Clay", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 910484222, + "bounds": { + "minlat": 40.7229840, + "minlon": -73.9893472, + "maxlat": 40.7232023, + "maxlon": -73.9886268 + }, + "nodes": [ + 5798966629, + 7480301863, + 11772132431 + ], + "geometry": [ + { "lat": 40.7229840, "lon": -73.9886268 }, + { "lat": 40.7230393, "lon": -73.9888140 }, + { "lat": 40.7232023, "lon": -73.9893472 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 910502215, + "bounds": { + "minlat": 40.7532202, + "minlon": -73.9075921, + "maxlat": 40.7532960, + "maxlon": -73.9069005 + }, + "nodes": [ + 6450790583, + 5357878511, + 5357878513, + 13784327136, + 8421761518, + 8088629337, + 7762260254 + ], + "geometry": [ + { "lat": 40.7532202, "lon": -73.9075921 }, + { "lat": 40.7532339, "lon": -73.9074636 }, + { "lat": 40.7532490, "lon": -73.9073358 }, + { "lat": 40.7532576, "lon": -73.9072581 }, + { "lat": 40.7532661, "lon": -73.9071805 }, + { "lat": 40.7532863, "lon": -73.9070072 }, + { "lat": 40.7532960, "lon": -73.9069005 } + ], + "tags": { + "cycleway": "lane", + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910506168, + "bounds": { + "minlat": 40.7530362, + "minlon": -73.9093472, + "maxlat": 40.7530862, + "maxlon": -73.9088757 + }, + "nodes": [ + 9662522082, + 13703117844, + 7762260262, + 7762260261 + ], + "geometry": [ + { "lat": 40.7530362, "lon": -73.9093472 }, + { "lat": 40.7530645, "lon": -73.9090791 }, + { "lat": 40.7530658, "lon": -73.9090670 }, + { "lat": 40.7530862, "lon": -73.9088757 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910506169, + "bounds": { + "minlat": 40.7530862, + "minlon": -73.9088757, + "maxlat": 40.7532202, + "maxlon": -73.9075921 + }, + "nodes": [ + 7762260261, + 8088605712, + 8718502624, + 13784327140, + 8088629341, + 7661121873, + 8088629340, + 13784327141, + 6450790583 + ], + "geometry": [ + { "lat": 40.7530862, "lon": -73.9088757 }, + { "lat": 40.7531194, "lon": -73.9085507 }, + { "lat": 40.7531355, "lon": -73.9084180 }, + { "lat": 40.7531377, "lon": -73.9083977 }, + { "lat": 40.7531438, "lon": -73.9083407 }, + { "lat": 40.7531637, "lon": -73.9081558 }, + { "lat": 40.7531668, "lon": -73.9081201 }, + { "lat": 40.7531720, "lon": -73.9080690 }, + { "lat": 40.7532202, "lon": -73.9075921 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910519290, + "bounds": { + "minlat": 40.8141852, + "minlon": -73.9211913, + "maxlat": 40.8145581, + "maxlon": -73.9204742 + }, + "nodes": [ + 7555037305, + 7695520229, + 11217140023, + 42762551 + ], + "geometry": [ + { "lat": 40.8145581, "lon": -73.9204742 }, + { "lat": 40.8143702, "lon": -73.9208338 }, + { "lat": 40.8142227, "lon": -73.9211185 }, + { "lat": 40.8141852, "lon": -73.9211913 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 910520276, + "bounds": { + "minlat": 40.8121376, + "minlon": -73.9359166, + "maxlat": 40.8122110, + "maxlon": -73.9358632 + }, + "nodes": [ + 7541804760, + 9559342286, + 589928053 + ], + "geometry": [ + { "lat": 40.8121376, "lon": -73.9359166 }, + { "lat": 40.8121704, "lon": -73.9358931 }, + { "lat": 40.8122110, "lon": -73.9358632 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Madison Avenue Bridge", + "name:etymology:wikidata": "Q109849", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910520277, + "bounds": { + "minlat": 40.8122004, + "minlon": -73.9376408, + "maxlat": 40.8127563, + "maxlon": -73.9363359 + }, + "nodes": [ + 2481877071, + 8236461970, + 7541804761 + ], + "geometry": [ + { "lat": 40.8122004, "lon": -73.9363359 }, + { "lat": 40.8127032, "lon": -73.9375172 }, + { "lat": 40.8127563, "lon": -73.9376408 } + ], + "tags": { + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910522621, + "bounds": { + "minlat": 40.8264068, + "minlon": -73.9552662, + "maxlat": 40.8270636, + "maxlon": -73.9548263 + }, + "nodes": [ + 1332843501, + 1332843507, + 1332843499, + 1332843661, + 1332843726 + ], + "geometry": [ + { "lat": 40.8264068, "lon": -73.9552662 }, + { "lat": 40.8264149, "lon": -73.9551857 }, + { "lat": 40.8264514, "lon": -73.9550623 }, + { "lat": 40.8267964, "lon": -73.9548263 }, + { "lat": 40.8270636, "lon": -73.9549112 } + ], + "tags": { + "bicycle": "dismount", + "highway": "service", + "layer": "2", + "name": "Riverbank Park Access Road", + "name_1": "W 145 St", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West 145th", + "tiger:name_base_1": "145", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 910544264, + "bounds": { + "minlat": 40.8164026, + "minlon": -73.9157647, + "maxlat": 40.8164638, + "maxlon": -73.9156715 + }, + "nodes": [ + 42746080, + 6415815558 + ], + "geometry": [ + { "lat": 40.8164026, "lon": -73.9157647 }, + { "lat": 40.8164638, "lon": -73.9156715 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Bergen Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bergen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 910544265, + "bounds": { + "minlat": 40.8163138, + "minlon": -73.9157647, + "maxlat": 40.8164026, + "maxlon": -73.9146560 + }, + "nodes": [ + 42746080, + 13040495338, + 5482340614 + ], + "geometry": [ + { "lat": 40.8164026, "lon": -73.9157647 }, + { "lat": 40.8163894, "lon": -73.9156342 }, + { "lat": 40.8163138, "lon": -73.9146560 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Westchester Avenue", + "name:etymology:wikidata": "Q17091379", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Westchester", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10459", + "tiger:zip_right": "10459", + "wikidata": "Q20979444", + "wikipedia": "en:Westchester Avenue" + } +}, +{ + "type": "way", + "id": 910751834, + "bounds": { + "minlat": 40.8032537, + "minlon": -73.9528149, + "maxlat": 40.8033426, + "maxlon": -73.9526080 + }, + "nodes": [ + 7620445877, + 8758287377, + 42432889 + ], + "geometry": [ + { "lat": 40.8033426, "lon": -73.9528149 }, + { "lat": 40.8033041, "lon": -73.9527267 }, + { "lat": 40.8032537, "lon": -73.9526080 } + ], + "tags": { + "highway": "tertiary", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "sidewalk:both": "separate", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 910774297, + "bounds": { + "minlat": 40.7633124, + "minlon": -73.9768898, + "maxlat": 40.7634385, + "maxlon": -73.9767981 + }, + "nodes": [ + 8457002448, + 10171655548, + 8457002449 + ], + "geometry": [ + { "lat": 40.7633124, "lon": -73.9768898 }, + { "lat": 40.7633829, "lon": -73.9768385 }, + { "lat": 40.7634385, "lon": -73.9767981 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 910774298, + "bounds": { + "minlat": 40.7631134, + "minlon": -73.9764158, + "maxlat": 40.7631878, + "maxlon": -73.9763628 + }, + "nodes": [ + 8457002450, + 10171655547, + 8457002451 + ], + "geometry": [ + { "lat": 40.7631134, "lon": -73.9764158 }, + { "lat": 40.7631836, "lon": -73.9763658 }, + { "lat": 40.7631878, "lon": -73.9763628 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 910774299, + "bounds": { + "minlat": 40.7634634, + "minlon": -73.9772495, + "maxlat": 40.7635416, + "maxlon": -73.9771928 + }, + "nodes": [ + 8457002452, + 10171655549, + 8457002453 + ], + "geometry": [ + { "lat": 40.7634634, "lon": -73.9772495 }, + { "lat": 40.7635345, "lon": -73.9771980 }, + { "lat": 40.7635416, "lon": -73.9771928 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 910777536, + "bounds": { + "minlat": 40.7158127, + "minlon": -73.9404508, + "maxlat": 40.7184179, + "maxlon": -73.9400202 + }, + "nodes": [ + 7722378706, + 11155242427, + 11155242426, + 9695771748, + 42495847, + 9695771782, + 7244003656, + 9695771708, + 42489753, + 9695771793, + 10075723154, + 7725510882, + 10075723153, + 11155242424, + 11155242422, + 9527375821, + 9527375823, + 7725510883 + ], + "geometry": [ + { "lat": 40.7184179, "lon": -73.9404508 }, + { "lat": 40.7180428, "lon": -73.9403896 }, + { "lat": 40.7180049, "lon": -73.9403834 }, + { "lat": 40.7178438, "lon": -73.9403571 }, + { "lat": 40.7177881, "lon": -73.9403477 }, + { "lat": 40.7177213, "lon": -73.9403368 }, + { "lat": 40.7173639, "lon": -73.9402764 }, + { "lat": 40.7171847, "lon": -73.9402488 }, + { "lat": 40.7170936, "lon": -73.9402328 }, + { "lat": 40.7170228, "lon": -73.9402207 }, + { "lat": 40.7164315, "lon": -73.9401225 }, + { "lat": 40.7163691, "lon": -73.9401130 }, + { "lat": 40.7163056, "lon": -73.9401013 }, + { "lat": 40.7162664, "lon": -73.9400949 }, + { "lat": 40.7159926, "lon": -73.9400506 }, + { "lat": 40.7159372, "lon": -73.9400416 }, + { "lat": 40.7158969, "lon": -73.9400358 }, + { "lat": 40.7158127, "lon": -73.9400202 } + ], + "tags": { + "alt_name": "Grandparents Avenue", + "highway": "residential", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "oneway": "no", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 910777537, + "bounds": { + "minlat": 40.7184179, + "minlon": -73.9404954, + "maxlat": 40.7186810, + "maxlon": -73.9404508 + }, + "nodes": [ + 7722378705, + 9695721713, + 7722378706 + ], + "geometry": [ + { "lat": 40.7186810, "lon": -73.9404954 }, + { "lat": 40.7185258, "lon": -73.9404694 }, + { "lat": 40.7184179, "lon": -73.9404508 } + ], + "tags": { + "highway": "residential", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "name_1": "Grandparents Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 910777538, + "bounds": { + "minlat": 40.7154513, + "minlon": -73.9421576, + "maxlat": 40.7184755, + "maxlon": -73.9406535 + }, + "nodes": [ + 7722378702, + 7722378703, + 9935605418, + 9695771745, + 42491524, + 9695771675, + 10976977839, + 9945679652, + 42491527, + 9945679655, + 10976977840, + 9695771723, + 42491529, + 9695771714, + 9695771646, + 42491531 + ], + "geometry": [ + { "lat": 40.7184755, "lon": -73.9406535 }, + { "lat": 40.7183974, "lon": -73.9407149 }, + { "lat": 40.7183715, "lon": -73.9407354 }, + { "lat": 40.7177737, "lon": -73.9412088 }, + { "lat": 40.7176970, "lon": -73.9412698 }, + { "lat": 40.7176249, "lon": -73.9413272 }, + { "lat": 40.7170212, "lon": -73.9418085 }, + { "lat": 40.7169905, "lon": -73.9418197 }, + { "lat": 40.7169206, "lon": -73.9418454 }, + { "lat": 40.7168623, "lon": -73.9418669 }, + { "lat": 40.7168309, "lon": -73.9418784 }, + { "lat": 40.7162419, "lon": -73.9420608 }, + { "lat": 40.7161782, "lon": -73.9420805 }, + { "lat": 40.7161134, "lon": -73.9421013 }, + { "lat": 40.7155241, "lon": -73.9421494 }, + { "lat": 40.7154513, "lon": -73.9421576 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Woodpoint Road", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910889036, + "bounds": { + "minlat": 40.7417979, + "minlon": -73.9075226, + "maxlat": 40.7419256, + "maxlon": -73.9074851 + }, + "nodes": [ + 42908315, + 597414826 + ], + "geometry": [ + { "lat": 40.7419256, "lon": -73.9074851 }, + { "lat": 40.7417979, "lon": -73.9075226 } + ], + "tags": { + "access": "yes", + "bicycle": "yes", + "cycleway": "no", + "foot": "yes", + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "maxspeed": "30 mph", + "motor_vehicle": "yes", + "name": "58th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910890557, + "bounds": { + "minlat": 40.7416725, + "minlon": -73.9075595, + "maxlat": 40.7417979, + "maxlon": -73.9075226 + }, + "nodes": [ + 597414826, + 10203936764, + 597414803 + ], + "geometry": [ + { "lat": 40.7417979, "lon": -73.9075226 }, + { "lat": 40.7417346, "lon": -73.9075413 }, + { "lat": 40.7416725, "lon": -73.9075595 } + ], + "tags": { + "access": "yes", + "bicycle": "yes", + "cycleway": "no", + "foot": "yes", + "hgv": "local", + "highway": "secondary", + "maxspeed": "30 mph", + "motor_vehicle": "yes", + "name": "58th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910890558, + "bounds": { + "minlat": 40.7407450, + "minlon": -73.9077840, + "maxlat": 40.7416725, + "maxlon": -73.9075595 + }, + "nodes": [ + 597414803, + 9986759188, + 9192059025, + 5481949668, + 7725287398, + 7135740496, + 42860670 + ], + "geometry": [ + { "lat": 40.7416725, "lon": -73.9075595 }, + { "lat": 40.7416151, "lon": -73.9075776 }, + { "lat": 40.7415749, "lon": -73.9075905 }, + { "lat": 40.7415232, "lon": -73.9076031 }, + { "lat": 40.7410533, "lon": -73.9077123 }, + { "lat": 40.7410453, "lon": -73.9077142 }, + { "lat": 40.7407450, "lon": -73.9077840 } + ], + "tags": { + "access": "yes", + "bicycle": "yes", + "cycleway": "no", + "foot": "yes", + "hgv": "local", + "highway": "secondary", + "maxspeed": "30 mph", + "motor_vehicle": "yes", + "name": "58th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 910939171, + "bounds": { + "minlat": 40.7529814, + "minlon": -73.9106835, + "maxlat": 40.7529888, + "maxlon": -73.9106080 + }, + "nodes": [ + 8288365779, + 3938728149 + ], + "geometry": [ + { "lat": 40.7529888, "lon": -73.9106835 }, + { "lat": 40.7529814, "lon": -73.9106080 } + ], + "tags": { + "cycleway": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 911188913, + "bounds": { + "minlat": 40.7532202, + "minlon": -73.9076727, + "maxlat": 40.7536450, + "maxlon": -73.9075921 + }, + "nodes": [ + 42836507, + 6450791686, + 3570193132, + 8088629364, + 6450790583 + ], + "geometry": [ + { "lat": 40.7536450, "lon": -73.9076727 }, + { "lat": 40.7535562, "lon": -73.9076557 }, + { "lat": 40.7533871, "lon": -73.9076238 }, + { "lat": 40.7533475, "lon": -73.9076163 }, + { "lat": 40.7532202, "lon": -73.9075921 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "53rd Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 911188914, + "bounds": { + "minlat": 40.7533185, + "minlon": -73.9074798, + "maxlat": 40.7576985, + "maxlon": -73.9066866 + }, + "nodes": [ + 7762260265, + 8088629358, + 10891908700, + 2875114678, + 7758314401, + 2875114689, + 10891908699, + 6450781884, + 42835523, + 6450781880, + 7660830658, + 8256302617, + 10891936634, + 3569893281, + 2503677681, + 7660705786, + 11649600066, + 3749657874, + 6453068701, + 42935096 + ], + "geometry": [ + { "lat": 40.7533185, "lon": -73.9066866 }, + { "lat": 40.7534374, "lon": -73.9067109 }, + { "lat": 40.7536668, "lon": -73.9067594 }, + { "lat": 40.7537204, "lon": -73.9067708 }, + { "lat": 40.7550748, "lon": -73.9070300 }, + { "lat": 40.7550947, "lon": -73.9070338 }, + { "lat": 40.7553146, "lon": -73.9070739 }, + { "lat": 40.7553636, "lon": -73.9070828 }, + { "lat": 40.7554359, "lon": -73.9070961 }, + { "lat": 40.7555168, "lon": -73.9071100 }, + { "lat": 40.7558063, "lon": -73.9071618 }, + { "lat": 40.7566283, "lon": -73.9073081 }, + { "lat": 40.7568523, "lon": -73.9073480 }, + { "lat": 40.7569005, "lon": -73.9073566 }, + { "lat": 40.7569950, "lon": -73.9073726 }, + { "lat": 40.7570861, "lon": -73.9073891 }, + { "lat": 40.7572734, "lon": -73.9074227 }, + { "lat": 40.7574157, "lon": -73.9074483 }, + { "lat": 40.7574461, "lon": -73.9074528 }, + { "lat": 40.7576985, "lon": -73.9074798 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "54th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 911200989, + "bounds": { + "minlat": 40.8707521, + "minlon": -73.9302702, + "maxlat": 40.8735347, + "maxlon": -73.9285904 + }, + "nodes": [ + 60915156, + 60915155, + 60915154, + 60915153, + 42458653, + 374463462 + ], + "geometry": [ + { "lat": 40.8735347, "lon": -73.9285904 }, + { "lat": 40.8730565, "lon": -73.9289828 }, + { "lat": 40.8724921, "lon": -73.9293632 }, + { "lat": 40.8718862, "lon": -73.9297062 }, + { "lat": 40.8711225, "lon": -73.9300910 }, + { "lat": 40.8707521, "lon": -73.9302702 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "concrete", + "toll": "yes", + "turn:lanes": "slight_left;through||", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 911311912, + "bounds": { + "minlat": 40.7506161, + "minlon": -73.9351502, + "maxlat": 40.7509790, + "maxlon": -73.9347430 + }, + "nodes": [ + 2292087076, + 12858945132, + 4960276059, + 13702858788, + 42920217 + ], + "geometry": [ + { "lat": 40.7506161, "lon": -73.9351502 }, + { "lat": 40.7509293, "lon": -73.9348025 }, + { "lat": 40.7509465, "lon": -73.9347832 }, + { "lat": 40.7509547, "lon": -73.9347731 }, + { "lat": 40.7509790, "lon": -73.9347430 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 911564099, + "bounds": { + "minlat": 40.8687807, + "minlon": -73.9073461, + "maxlat": 40.8688671, + "maxlon": -73.9073384 + }, + "nodes": [ + 8464077425, + 8464068003, + 2979499760 + ], + "geometry": [ + { "lat": 40.8687807, "lon": -73.9073384 }, + { "lat": 40.8688451, "lon": -73.9073441 }, + { "lat": 40.8688671, "lon": -73.9073461 } + ], + "tags": { + "highway": "residential", + "noname": "yes", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 912419527, + "bounds": { + "minlat": 40.7324447, + "minlon": -73.9961832, + "maxlat": 40.7326079, + "maxlon": -73.9959273 + }, + "nodes": [ + 8475999052, + 8475999063, + 8475999061, + 8475999059, + 8475999057, + 8475999056, + 8475999055, + 8475999054, + 8475999053, + 8475999051 + ], + "geometry": [ + { "lat": 40.7326079, "lon": -73.9961089 }, + { "lat": 40.7325821, "lon": -73.9960443 }, + { "lat": 40.7325635, "lon": -73.9960099 }, + { "lat": 40.7325206, "lon": -73.9959273 }, + { "lat": 40.7324728, "lon": -73.9959320 }, + { "lat": 40.7324491, "lon": -73.9959755 }, + { "lat": 40.7324447, "lon": -73.9960349 }, + { "lat": 40.7324651, "lon": -73.9960838 }, + { "lat": 40.7324802, "lon": -73.9961194 }, + { "lat": 40.7325068, "lon": -73.9961832 } + ], + "tags": { + "access": "destination", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 912475761, + "bounds": { + "minlat": 40.7167118, + "minlon": -73.9891494, + "maxlat": 40.7176500, + "maxlon": -73.9886710 + }, + "nodes": [ + 42452084, + 5041369239, + 11040029978, + 13701187247, + 8231896474, + 42432099 + ], + "geometry": [ + { "lat": 40.7167118, "lon": -73.9891494 }, + { "lat": 40.7168104, "lon": -73.9891003 }, + { "lat": 40.7170132, "lon": -73.9889966 }, + { "lat": 40.7170690, "lon": -73.9889681 }, + { "lat": 40.7175929, "lon": -73.9887001 }, + { "lat": 40.7176500, "lon": -73.9886710 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Essex Street", + "name:etymology:wikidata": "Q23240", + "name:ko": "에식스 스트리트", + "name:ru": "Эссекс-стрит", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4532801", + "wikipedia": "en:Essex Street" + } +}, +{ + "type": "way", + "id": 913335023, + "bounds": { + "minlat": 40.7285023, + "minlon": -73.9279166, + "maxlat": 40.7324864, + "maxlon": -73.9249503 + }, + "nodes": [ + 8484223198, + 9194902703, + 12162675406, + 8833853653, + 9194902702, + 9194902701, + 12162675407, + 9194902700, + 8833853649, + 9194902699, + 9194902698, + 12162675408, + 8833853650, + 9194902697, + 8833853651, + 8484223200, + 9194902665 + ], + "geometry": [ + { "lat": 40.7285023, "lon": -73.9279166 }, + { "lat": 40.7285968, "lon": -73.9278142 }, + { "lat": 40.7286941, "lon": -73.9277170 }, + { "lat": 40.7287861, "lon": -73.9276246 }, + { "lat": 40.7288816, "lon": -73.9275297 }, + { "lat": 40.7289751, "lon": -73.9274392 }, + { "lat": 40.7290691, "lon": -73.9273511 }, + { "lat": 40.7291799, "lon": -73.9272501 }, + { "lat": 40.7292878, "lon": -73.9271558 }, + { "lat": 40.7293997, "lon": -73.9270572 }, + { "lat": 40.7295093, "lon": -73.9269658 }, + { "lat": 40.7296281, "lon": -73.9268737 }, + { "lat": 40.7297490, "lon": -73.9267797 }, + { "lat": 40.7298887, "lon": -73.9266748 }, + { "lat": 40.7300114, "lon": -73.9265877 }, + { "lat": 40.7301375, "lon": -73.9265013 }, + { "lat": 40.7324864, "lon": -73.9249503 } + ], + "tags": { + "bridge": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "wikidata": "Q6433023", + "wikipedia": "en:Kosciuszko Bridge" + } +}, +{ + "type": "way", + "id": 913801499, + "bounds": { + "minlat": 40.7681154, + "minlon": -73.9450333, + "maxlat": 40.7685859, + "maxlon": -73.9447161 + }, + "nodes": [ + 8488556372, + 8488556373, + 8488556374, + 8488556375, + 8488556376 + ], + "geometry": [ + { "lat": 40.7685859, "lon": -73.9447161 }, + { "lat": 40.7683632, "lon": -73.9449235 }, + { "lat": 40.7682578, "lon": -73.9450201 }, + { "lat": 40.7681746, "lon": -73.9450333 }, + { "lat": 40.7681154, "lon": -73.9449774 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 913911309, + "bounds": { + "minlat": 40.7604641, + "minlon": -73.9628962, + "maxlat": 40.7608253, + "maxlon": -73.9620193 + }, + "nodes": [ + 1775201764, + 6177439751, + 9077027774 + ], + "geometry": [ + { "lat": 40.7608253, "lon": -73.9628962 }, + { "lat": 40.7606476, "lon": -73.9624647 }, + { "lat": 40.7604641, "lon": -73.9620193 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "name_1": "East 60 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 913912379, + "bounds": { + "minlat": 40.8269746, + "minlon": -73.9228486, + "maxlat": 40.8270302, + "maxlon": -73.9226586 + }, + "nodes": [ + 2408446206, + 2408446193 + ], + "geometry": [ + { "lat": 40.8269746, "lon": -73.9226586 }, + { "lat": 40.8270302, "lon": -73.9228486 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 913912380, + "bounds": { + "minlat": 40.8267262, + "minlon": -73.9227803, + "maxlat": 40.8267602, + "maxlon": -73.9226022 + }, + "nodes": [ + 2408448900, + 2408448907 + ], + "geometry": [ + { "lat": 40.8267602, "lon": -73.9227803 }, + { "lat": 40.8267262, "lon": -73.9226022 } + ], + "tags": { + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 915000170, + "bounds": { + "minlat": 40.8610156, + "minlon": -73.9185900, + "maxlat": 40.8614703, + "maxlon": -73.9182684 + }, + "nodes": [ + 1203709420, + 9561557606, + 8499621429, + 8499621430 + ], + "geometry": [ + { "lat": 40.8610156, "lon": -73.9185900 }, + { "lat": 40.8610770, "lon": -73.9185446 }, + { "lat": 40.8610985, "lon": -73.9185287 }, + { "lat": 40.8614703, "lon": -73.9182684 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 915001059, + "bounds": { + "minlat": 40.8433491, + "minlon": -73.9065391, + "maxlat": 40.8436323, + "maxlon": -73.9064530 + }, + "nodes": [ + 8499606013, + 8499633717, + 8499606014, + 8499606015, + 8499606016 + ], + "geometry": [ + { "lat": 40.8436323, "lon": -73.9065391 }, + { "lat": 40.8435684, "lon": -73.9065378 }, + { "lat": 40.8435234, "lon": -73.9065368 }, + { "lat": 40.8434466, "lon": -73.9064962 }, + { "lat": 40.8433491, "lon": -73.9064530 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 915763447, + "bounds": { + "minlat": 40.7126904, + "minlon": -73.9066690, + "maxlat": 40.7129398, + "maxlon": -73.9063002 + }, + "nodes": [ + 8506346379, + 9759657447, + 8506346380, + 8506346381, + 8506346382, + 9759657446, + 8506346383 + ], + "geometry": [ + { "lat": 40.7129199, "lon": -73.9063002 }, + { "lat": 40.7128475, "lon": -73.9063091 }, + { "lat": 40.7127834, "lon": -73.9063170 }, + { "lat": 40.7127060, "lon": -73.9064434 }, + { "lat": 40.7126904, "lon": -73.9066690 }, + { "lat": 40.7128668, "lon": -73.9066511 }, + { "lat": 40.7129398, "lon": -73.9066437 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 915763687, + "bounds": { + "minlat": 40.7488407, + "minlon": -73.9203860, + "maxlat": 40.7489401, + "maxlon": -73.9194594 + }, + "nodes": [ + 8506374673, + 8593852978, + 8506374674, + 10762234011, + 8506374675 + ], + "geometry": [ + { "lat": 40.7489401, "lon": -73.9203860 }, + { "lat": 40.7489311, "lon": -73.9202889 }, + { "lat": 40.7489265, "lon": -73.9202391 }, + { "lat": 40.7488495, "lon": -73.9195396 }, + { "lat": 40.7488407, "lon": -73.9194594 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 915763688, + "bounds": { + "minlat": 40.7481163, + "minlon": -73.9202900, + "maxlat": 40.7485683, + "maxlon": -73.9195284 + }, + "nodes": [ + 8506374676, + 10762234012, + 8506374677, + 8506374678, + 8506374679, + 8506374680, + 8506374681, + 8506374682, + 8506374683, + 8506374684, + 8506374685, + 10762234013, + 8506374686 + ], + "geometry": [ + { "lat": 40.7484943, "lon": -73.9195284 }, + { "lat": 40.7485039, "lon": -73.9196027 }, + { "lat": 40.7485421, "lon": -73.9198981 }, + { "lat": 40.7485683, "lon": -73.9201300 }, + { "lat": 40.7485672, "lon": -73.9201977 }, + { "lat": 40.7485517, "lon": -73.9202237 }, + { "lat": 40.7485255, "lon": -73.9202414 }, + { "lat": 40.7483044, "lon": -73.9202900 }, + { "lat": 40.7482462, "lon": -73.9202837 }, + { "lat": 40.7482206, "lon": -73.9202710 }, + { "lat": 40.7481923, "lon": -73.9202350 }, + { "lat": 40.7481250, "lon": -73.9196760 }, + { "lat": 40.7481163, "lon": -73.9196037 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 915773959, + "bounds": { + "minlat": 40.7371959, + "minlon": -73.9388319, + "maxlat": 40.7375338, + "maxlon": -73.9379065 + }, + "nodes": [ + 8506457581, + 11211159744, + 8506457582 + ], + "geometry": [ + { "lat": 40.7371959, "lon": -73.9388319 }, + { "lat": 40.7375104, "lon": -73.9379705 }, + { "lat": 40.7375338, "lon": -73.9379065 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 915775822, + "bounds": { + "minlat": 40.7602866, + "minlon": -73.9266172, + "maxlat": 40.7605809, + "maxlon": -73.9261679 + }, + "nodes": [ + 8506445594, + 8506445595, + 8506445596, + 8506445597, + 8506445598, + 8506445599 + ], + "geometry": [ + { "lat": 40.7604480, "lon": -73.9266172 }, + { "lat": 40.7603979, "lon": -73.9265054 }, + { "lat": 40.7602866, "lon": -73.9262773 }, + { "lat": 40.7604310, "lon": -73.9261679 }, + { "lat": 40.7605345, "lon": -73.9263928 }, + { "lat": 40.7605809, "lon": -73.9265098 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 915775823, + "bounds": { + "minlat": 40.7606986, + "minlon": -73.9262927, + "maxlat": 40.7608496, + "maxlon": -73.9259608 + }, + "nodes": [ + 3864490557, + 8506445600, + 8506445601 + ], + "geometry": [ + { "lat": 40.7608496, "lon": -73.9262927 }, + { "lat": 40.7607979, "lon": -73.9261758 }, + { "lat": 40.7606986, "lon": -73.9259608 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 916120512, + "bounds": { + "minlat": 40.7388175, + "minlon": -73.9300037, + "maxlat": 40.7388573, + "maxlon": -73.9296597 + }, + "nodes": [ + 8509189381, + 10743722265, + 8509189383, + 8509189382 + ], + "geometry": [ + { "lat": 40.7388573, "lon": -73.9300037 }, + { "lat": 40.7388493, "lon": -73.9299324 }, + { "lat": 40.7388442, "lon": -73.9298863 }, + { "lat": 40.7388175, "lon": -73.9296597 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 916120918, + "bounds": { + "minlat": 40.7035618, + "minlon": -73.9631622, + "maxlat": 40.7039396, + "maxlon": -73.9625114 + }, + "nodes": [ + 8509196341, + 9776829314, + 8509196342, + 8509196343, + 8509196344, + 8509196345, + 8509196346 + ], + "geometry": [ + { "lat": 40.7039396, "lon": -73.9631622 }, + { "lat": 40.7038846, "lon": -73.9630984 }, + { "lat": 40.7038679, "lon": -73.9630791 }, + { "lat": 40.7038253, "lon": -73.9630905 }, + { "lat": 40.7036010, "lon": -73.9628588 }, + { "lat": 40.7035618, "lon": -73.9627833 }, + { "lat": 40.7035906, "lon": -73.9625114 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 916135853, + "bounds": { + "minlat": 40.7063765, + "minlon": -73.9149931, + "maxlat": 40.7065412, + "maxlon": -73.9147299 + }, + "nodes": [ + 8509362115, + 9755751808, + 8509376117, + 8509362116 + ], + "geometry": [ + { "lat": 40.7063765, "lon": -73.9147299 }, + { "lat": 40.7064271, "lon": -73.9148108 }, + { "lat": 40.7064305, "lon": -73.9148162 }, + { "lat": 40.7065412, "lon": -73.9149931 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 916135854, + "bounds": { + "minlat": 40.7063893, + "minlon": -73.9141837, + "maxlat": 40.7065538, + "maxlon": -73.9140214 + }, + "nodes": [ + 8509376118, + 8509376121, + 9761709227, + 8509376120, + 8509376119 + ], + "geometry": [ + { "lat": 40.7063893, "lon": -73.9141837 }, + { "lat": 40.7064747, "lon": -73.9140995 }, + { "lat": 40.7064896, "lon": -73.9140848 }, + { "lat": 40.7065077, "lon": -73.9140669 }, + { "lat": 40.7065538, "lon": -73.9140214 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 916139671, + "bounds": { + "minlat": 40.7247616, + "minlon": -73.9290855, + "maxlat": 40.7256561, + "maxlon": -73.9281622 + }, + "nodes": [ + 8509404563, + 8509404564, + 8509404565, + 8509404566, + 8509404567, + 7707177042 + ], + "geometry": [ + { "lat": 40.7247616, "lon": -73.9287870 }, + { "lat": 40.7253901, "lon": -73.9290855 }, + { "lat": 40.7254755, "lon": -73.9290773 }, + { "lat": 40.7256561, "lon": -73.9284176 }, + { "lat": 40.7251072, "lon": -73.9281927 }, + { "lat": 40.7249234, "lon": -73.9281622 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 916139672, + "bounds": { + "minlat": 40.7256561, + "minlon": -73.9299409, + "maxlat": 40.7262248, + "maxlon": -73.9283080 + }, + "nodes": [ + 8509404566, + 8509404568, + 8509404569, + 8509404570, + 8509404571, + 8509404573, + 8509404572, + 11070270067, + 11070270066 + ], + "geometry": [ + { "lat": 40.7256561, "lon": -73.9284176 }, + { "lat": 40.7258275, "lon": -73.9283303 }, + { "lat": 40.7259746, "lon": -73.9283080 }, + { "lat": 40.7261944, "lon": -73.9284374 }, + { "lat": 40.7262248, "lon": -73.9285244 }, + { "lat": 40.7260806, "lon": -73.9291190 }, + { "lat": 40.7259773, "lon": -73.9295446 }, + { "lat": 40.7260602, "lon": -73.9297324 }, + { "lat": 40.7260166, "lon": -73.9299409 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 916734982, + "bounds": { + "minlat": 40.7324280, + "minlon": -74.0107956, + "maxlat": 40.7325090, + "maxlon": -74.0106889 + }, + "nodes": [ + 8288269358, + 8288269351, + 8288269350, + 8288269352, + 8288269349, + 8288269357, + 8288269356, + 8288269355, + 8288269354, + 8288269353, + 8288269348, + 8288269347, + 8288269346, + 8288269345, + 8288269363, + 8288269362, + 8288269361, + 8288269360, + 8288269359, + 8288269358 + ], + "geometry": [ + { "lat": 40.7324603, "lon": -74.0106897 }, + { "lat": 40.7324473, "lon": -74.0106965 }, + { "lat": 40.7324370, "lon": -74.0107084 }, + { "lat": 40.7324303, "lon": -74.0107241 }, + { "lat": 40.7324280, "lon": -74.0107419 }, + { "lat": 40.7324300, "lon": -74.0107588 }, + { "lat": 40.7324360, "lon": -74.0107741 }, + { "lat": 40.7324454, "lon": -74.0107860 }, + { "lat": 40.7324571, "lon": -74.0107935 }, + { "lat": 40.7324700, "lon": -74.0107956 }, + { "lat": 40.7324828, "lon": -74.0107923 }, + { "lat": 40.7324941, "lon": -74.0107837 }, + { "lat": 40.7325027, "lon": -74.0107710 }, + { "lat": 40.7325079, "lon": -74.0107552 }, + { "lat": 40.7325090, "lon": -74.0107372 }, + { "lat": 40.7325055, "lon": -74.0107198 }, + { "lat": 40.7324977, "lon": -74.0107049 }, + { "lat": 40.7324867, "lon": -74.0106942 }, + { "lat": 40.7324736, "lon": -74.0106889 }, + { "lat": 40.7324603, "lon": -74.0106897 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 916759131, + "bounds": { + "minlat": 40.8560920, + "minlon": -73.9670447, + "maxlat": 40.8564416, + "maxlon": -73.9668334 + }, + "nodes": [ + 5108595002, + 5449422230, + 4207161478 + ], + "geometry": [ + { "lat": 40.8560920, "lon": -73.9670447 }, + { "lat": 40.8563898, "lon": -73.9668647 }, + { "lat": 40.8564416, "lon": -73.9668334 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 918310652, + "bounds": { + "minlat": 40.7723063, + "minlon": -73.9117290, + "maxlat": 40.7725641, + "maxlon": -73.9113802 + }, + "nodes": [ + 7659298989, + 9242368774, + 2883612568 + ], + "geometry": [ + { "lat": 40.7725641, "lon": -73.9117290 }, + { "lat": 40.7725172, "lon": -73.9116660 }, + { "lat": 40.7723063, "lon": -73.9113802 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 918311346, + "bounds": { + "minlat": 40.7720540, + "minlon": -73.9113802, + "maxlat": 40.7723063, + "maxlon": -73.9110190 + }, + "nodes": [ + 8528733404, + 9242368778, + 2883612568 + ], + "geometry": [ + { "lat": 40.7720540, "lon": -73.9110190 }, + { "lat": 40.7720946, "lon": -73.9110772 }, + { "lat": 40.7723063, "lon": -73.9113802 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 918490574, + "bounds": { + "minlat": 40.8131581, + "minlon": -74.0129125, + "maxlat": 40.8133320, + "maxlon": -74.0127862 + }, + "nodes": [ + 8530416421, + 5813807512, + 5813807513 + ], + "geometry": [ + { "lat": 40.8133320, "lon": -74.0127862 }, + { "lat": 40.8133028, "lon": -74.0128073 }, + { "lat": 40.8131581, "lon": -74.0129125 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 918490575, + "bounds": { + "minlat": 40.8133320, + "minlon": -74.0127862, + "maxlat": 40.8133980, + "maxlon": -74.0127326 + }, + "nodes": [ + 8530416420, + 8530416421 + ], + "geometry": [ + { "lat": 40.8133980, "lon": -74.0127326 }, + { "lat": 40.8133320, "lon": -74.0127862 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 919146000, + "bounds": { + "minlat": 40.7551748, + "minlon": -73.9769598, + "maxlat": 40.7552357, + "maxlon": -73.9769141 + }, + "nodes": [ + 8536656980, + 11296575607, + 8536656981 + ], + "geometry": [ + { "lat": 40.7551748, "lon": -73.9769598 }, + { "lat": 40.7552217, "lon": -73.9769246 }, + { "lat": 40.7552357, "lon": -73.9769141 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 921051299, + "bounds": { + "minlat": 40.7568344, + "minlon": -73.9712093, + "maxlat": 40.7569036, + "maxlon": -73.9711589 + }, + "nodes": [ + 8551468885, + 11296575611, + 8551468892 + ], + "geometry": [ + { "lat": 40.7569036, "lon": -73.9711589 }, + { "lat": 40.7568889, "lon": -73.9711696 }, + { "lat": 40.7568344, "lon": -73.9712093 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 921420952, + "bounds": { + "minlat": 40.7317961, + "minlon": -73.9260531, + "maxlat": 40.7318358, + "maxlon": -73.9258691 + }, + "nodes": [ + 42810297, + 6754133015 + ], + "geometry": [ + { "lat": 40.7318358, "lon": -73.9260531 }, + { "lat": 40.7317961, "lon": -73.9258691 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "54th Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 921450832, + "bounds": { + "minlat": 40.7236015, + "minlon": -73.9910751, + "maxlat": 40.7237271, + "maxlon": -73.9910315 + }, + "nodes": [ + 42443127, + 1918039877 + ], + "geometry": [ + { "lat": 40.7237271, "lon": -73.9910315 }, + { "lat": 40.7236015, "lon": -73.9910751 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "lanes:forward": "4", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|left|through|through", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 922165267, + "bounds": { + "minlat": 40.7273244, + "minlon": -73.9575954, + "maxlat": 40.7298876, + "maxlon": -73.9571809 + }, + "nodes": [ + 2276312211, + 9998478143, + 9925275987, + 42484587, + 9925275986, + 9789402704, + 42498317, + 9789402702, + 9925276002, + 42520808, + 8097222217, + 11163899171, + 6235394724, + 42514451 + ], + "geometry": [ + { "lat": 40.7273244, "lon": -73.9571809 }, + { "lat": 40.7273473, "lon": -73.9571836 }, + { "lat": 40.7276946, "lon": -73.9572386 }, + { "lat": 40.7277591, "lon": -73.9572483 }, + { "lat": 40.7278270, "lon": -73.9572600 }, + { "lat": 40.7284028, "lon": -73.9573520 }, + { "lat": 40.7284668, "lon": -73.9573628 }, + { "lat": 40.7285312, "lon": -73.9573738 }, + { "lat": 40.7291110, "lon": -73.9574677 }, + { "lat": 40.7291692, "lon": -73.9574772 }, + { "lat": 40.7292324, "lon": -73.9574876 }, + { "lat": 40.7295555, "lon": -73.9575407 }, + { "lat": 40.7297908, "lon": -73.9575794 }, + { "lat": 40.7298876, "lon": -73.9575954 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Franklin", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 922170181, + "bounds": { + "minlat": 40.7311347, + "minlon": -73.9193195, + "maxlat": 40.7315028, + "maxlon": -73.9192036 + }, + "nodes": [ + 42802987, + 10038425635, + 10087637116, + 42786857 + ], + "geometry": [ + { "lat": 40.7315028, "lon": -73.9192036 }, + { "lat": 40.7314450, "lon": -73.9192258 }, + { "lat": 40.7312050, "lon": -73.9193195 }, + { "lat": 40.7311347, "lon": -73.9193118 } + ], + "tags": { + "cycleway": "lane", + "cycleway:left:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 922170182, + "bounds": { + "minlat": 40.7303591, + "minlon": -73.9193118, + "maxlat": 40.7311347, + "maxlon": -73.9189956 + }, + "nodes": [ + 42786857, + 13247290266, + 10087637130, + 10087637131, + 10087637121, + 42810313 + ], + "geometry": [ + { "lat": 40.7311347, "lon": -73.9193118 }, + { "lat": 40.7310425, "lon": -73.9192728 }, + { "lat": 40.7304798, "lon": -73.9190341 }, + { "lat": 40.7304381, "lon": -73.9190171 }, + { "lat": 40.7304046, "lon": -73.9190061 }, + { "lat": 40.7303591, "lon": -73.9189956 } + ], + "tags": { + "cycleway": "lane", + "cycleway:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Street", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 922897256, + "bounds": { + "minlat": 40.7495332, + "minlon": -73.9932857, + "maxlat": 40.7496133, + "maxlon": -73.9932256 + }, + "nodes": [ + 8567304865, + 10170593082, + 8567304864 + ], + "geometry": [ + { "lat": 40.7495332, "lon": -73.9932857 }, + { "lat": 40.7495490, "lon": -73.9932738 }, + { "lat": 40.7496133, "lon": -73.9932256 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 922901063, + "bounds": { + "minlat": 40.7481142, + "minlon": -73.9896732, + "maxlat": 40.7481781, + "maxlon": -73.9896246 + }, + "nodes": [ + 8567327076, + 10168911581, + 8567327073 + ], + "geometry": [ + { "lat": 40.7481781, "lon": -73.9896246 }, + { "lat": 40.7481638, "lon": -73.9896355 }, + { "lat": 40.7481142, "lon": -73.9896732 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 923090985, + "bounds": { + "minlat": 40.7353592, + "minlon": -73.9899720, + "maxlat": 40.7363976, + "maxlon": -73.9892055 + }, + "nodes": [ + 595403438, + 12179582162, + 4597668024, + 4597668023, + 4597668022, + 8569045563, + 12179582175, + 5307048045, + 4597668035 + ], + "geometry": [ + { "lat": 40.7363976, "lon": -73.9892055 }, + { "lat": 40.7361334, "lon": -73.9893992 }, + { "lat": 40.7360715, "lon": -73.9894459 }, + { "lat": 40.7360030, "lon": -73.9894958 }, + { "lat": 40.7359438, "lon": -73.9895401 }, + { "lat": 40.7354894, "lon": -73.9898758 }, + { "lat": 40.7354575, "lon": -73.9898994 }, + { "lat": 40.7354259, "lon": -73.9899229 }, + { "lat": 40.7353592, "lon": -73.9899720 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "bump;flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Union Square East", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 923091001, + "bounds": { + "minlat": 40.7380073, + "minlon": -73.9900748, + "maxlat": 40.7383082, + "maxlon": -73.9900030 + }, + "nodes": [ + 9032581895, + 12106485659 + ], + "geometry": [ + { "lat": 40.7380073, "lon": -73.9900748 }, + { "lat": 40.7383082, "lon": -73.9900030 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 923091016, + "bounds": { + "minlat": 40.7352981, + "minlon": -73.9893045, + "maxlat": 40.7359232, + "maxlon": -73.9878233 + }, + "nodes": [ + 3670742444, + 12183283835, + 9507816963, + 42434354 + ], + "geometry": [ + { "lat": 40.7359232, "lon": -73.9893045 }, + { "lat": 40.7353610, "lon": -73.9879795 }, + { "lat": 40.7353325, "lon": -73.9879123 }, + { "lat": 40.7352981, "lon": -73.9878233 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 16th Street", + "name:ru": "Восточная 16-я стрит", + "name_1": "East 16 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 923091034, + "bounds": { + "minlat": 40.7384929, + "minlon": -73.9899534, + "maxlat": 40.7386557, + "maxlon": -73.9899031 + }, + "nodes": [ + 8569045585, + 8569045562, + 42428179 + ], + "geometry": [ + { "lat": 40.7386557, "lon": -73.9899031 }, + { "lat": 40.7385558, "lon": -73.9899341 }, + { "lat": 40.7384929, "lon": -73.9899534 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 923226775, + "bounds": { + "minlat": 40.8584495, + "minlon": -73.9342191, + "maxlat": 40.8587799, + "maxlon": -73.9338788 + }, + "nodes": [ + 8570327132, + 8570327133, + 8570327134, + 8570327131, + 8570327135, + 8570327136, + 8570327137, + 8570327138, + 9432234237, + 9432234236, + 8570327139, + 8570327132 + ], + "geometry": [ + { "lat": 40.8587799, "lon": -73.9341017 }, + { "lat": 40.8587605, "lon": -73.9340331 }, + { "lat": 40.8587487, "lon": -73.9340389 }, + { "lat": 40.8587391, "lon": -73.9340048 }, + { "lat": 40.8587303, "lon": -73.9339736 }, + { "lat": 40.8587392, "lon": -73.9339692 }, + { "lat": 40.8587136, "lon": -73.9338788 }, + { "lat": 40.8584495, "lon": -73.9339950 }, + { "lat": 40.8584970, "lon": -73.9341559 }, + { "lat": 40.8585181, "lon": -73.9341460 }, + { "lat": 40.8585390, "lon": -73.9342191 }, + { "lat": 40.8587799, "lon": -73.9341017 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 923388368, + "bounds": { + "minlat": 40.7898313, + "minlon": -73.9465430, + "maxlat": 40.7899658, + "maxlon": -73.9464463 + }, + "nodes": [ + 8571800880, + 9166170283, + 8571800883 + ], + "geometry": [ + { "lat": 40.7898313, "lon": -73.9465430 }, + { "lat": 40.7898892, "lon": -73.9465014 }, + { "lat": 40.7899658, "lon": -73.9464463 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 923503908, + "bounds": { + "minlat": 40.7762596, + "minlon": -73.9899975, + "maxlat": 40.7763428, + "maxlon": -73.9898558 + }, + "nodes": [ + 8572649162, + 8572649166, + 10742000975, + 10742000976, + 8572649165, + 8572649162 + ], + "geometry": [ + { "lat": 40.7763428, "lon": -73.9899724 }, + { "lat": 40.7763266, "lon": -73.9899844 }, + { "lat": 40.7763089, "lon": -73.9899975 }, + { "lat": 40.7762596, "lon": -73.9898809 }, + { "lat": 40.7762934, "lon": -73.9898558 }, + { "lat": 40.7763428, "lon": -73.9899724 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "65th Street plaza", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 923805667, + "bounds": { + "minlat": 40.8452358, + "minlon": -73.9207054, + "maxlat": 40.8453236, + "maxlon": -73.9183416 + }, + "nodes": [ + 8575373973, + 12046922287, + 42734969, + 12046910557, + 12046910558, + 12046910559, + 12046910560, + 12046910561, + 595757773 + ], + "geometry": [ + { "lat": 40.8452358, "lon": -73.9207054 }, + { "lat": 40.8452653, "lon": -73.9202274 }, + { "lat": 40.8453220, "lon": -73.9193078 }, + { "lat": 40.8453236, "lon": -73.9192622 }, + { "lat": 40.8453224, "lon": -73.9192144 }, + { "lat": 40.8453159, "lon": -73.9190578 }, + { "lat": 40.8453139, "lon": -73.9189773 }, + { "lat": 40.8453136, "lon": -73.9188862 }, + { "lat": 40.8453220, "lon": -73.9183416 } + ], + "tags": { + "highway": "unclassified", + "name": "Cross Bronx Expressway Service Road", + "tiger:cfcc": "A64", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cross Bronx Exwy Service Road", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 923805670, + "bounds": { + "minlat": 40.8452358, + "minlon": -73.9211345, + "maxlat": 40.8454036, + "maxlon": -73.9207054 + }, + "nodes": [ + 8575373973, + 2808715499 + ], + "geometry": [ + { "lat": 40.8452358, "lon": -73.9207054 }, + { "lat": 40.8454036, "lon": -73.9211345 } + ], + "tags": { + "highway": "unclassified", + "name": "Cross Bronx Expressway Service Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 923805675, + "bounds": { + "minlat": 40.8452496, + "minlon": -73.9211944, + "maxlat": 40.8454036, + "maxlon": -73.9211345 + }, + "nodes": [ + 2808715499, + 12046833154, + 12046833160, + 12046833164, + 12046833161, + 12046833163, + 12046833162, + 2808715494 + ], + "geometry": [ + { "lat": 40.8454036, "lon": -73.9211345 }, + { "lat": 40.8453287, "lon": -73.9211808 }, + { "lat": 40.8453153, "lon": -73.9211874 }, + { "lat": 40.8453009, "lon": -73.9211923 }, + { "lat": 40.8452872, "lon": -73.9211944 }, + { "lat": 40.8452754, "lon": -73.9211944 }, + { "lat": 40.8452616, "lon": -73.9211917 }, + { "lat": 40.8452496, "lon": -73.9211841 } + ], + "tags": { + "highway": "residential", + "name": "Plimpton Avenue", + "name:etymology:wikidata": "Q5536449", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 923953371, + "bounds": { + "minlat": 40.7184550, + "minlon": -73.9484160, + "maxlat": 40.7185222, + "maxlon": -73.9476694 + }, + "nodes": [ + 598031730, + 9789424649, + 42491217 + ], + "geometry": [ + { "lat": 40.7185222, "lon": -73.9476694 }, + { "lat": 40.7184627, "lon": -73.9483387 }, + { "lat": 40.7184550, "lon": -73.9484160 } + ], + "tags": { + "highway": "residential", + "name": "Richardson Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Richardson", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 925103131, + "bounds": { + "minlat": 40.7522169, + "minlon": -74.0032131, + "maxlat": 40.7522745, + "maxlon": -74.0031713 + }, + "nodes": [ + 8585752282, + 11512413101, + 8585752284, + 8585752283 + ], + "geometry": [ + { "lat": 40.7522169, "lon": -74.0032131 }, + { "lat": 40.7522468, "lon": -74.0031921 }, + { "lat": 40.7522636, "lon": -74.0031794 }, + { "lat": 40.7522745, "lon": -74.0031713 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 925103132, + "bounds": { + "minlat": 40.7527530, + "minlon": -74.0028386, + "maxlat": 40.7528351, + "maxlon": -74.0027786 + }, + "nodes": [ + 8585752285, + 11512413100, + 8585752287, + 8585752286 + ], + "geometry": [ + { "lat": 40.7528351, "lon": -74.0027786 }, + { "lat": 40.7527907, "lon": -74.0028118 }, + { "lat": 40.7527707, "lon": -74.0028268 }, + { "lat": 40.7527530, "lon": -74.0028386 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 925213604, + "bounds": { + "minlat": 40.7597814, + "minlon": -73.9585033, + "maxlat": 40.7599058, + "maxlon": -73.9584107 + }, + "nodes": [ + 8586570516, + 8586594918, + 8586594917 + ], + "geometry": [ + { "lat": 40.7597814, "lon": -73.9585033 }, + { "lat": 40.7598468, "lon": -73.9584566 }, + { "lat": 40.7599058, "lon": -73.9584107 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 925213605, + "bounds": { + "minlat": 40.7600618, + "minlon": -73.9588611, + "maxlat": 40.7601259, + "maxlon": -73.9587037 + }, + "nodes": [ + 8586594919, + 8586594921, + 8586594920 + ], + "geometry": [ + { "lat": 40.7600618, "lon": -73.9587037 }, + { "lat": 40.7601169, "lon": -73.9588387 }, + { "lat": 40.7601259, "lon": -73.9588611 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 925213606, + "bounds": { + "minlat": 40.7599078, + "minlon": -73.9580118, + "maxlat": 40.7599339, + "maxlon": -73.9579608 + }, + "nodes": [ + 8586594922, + 8586594924, + 8586594923 + ], + "geometry": [ + { "lat": 40.7599078, "lon": -73.9579608 }, + { "lat": 40.7599235, "lon": -73.9579915 }, + { "lat": 40.7599339, "lon": -73.9580118 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 925874376, + "bounds": { + "minlat": 40.8618235, + "minlon": -73.9241374, + "maxlat": 40.8619107, + "maxlon": -73.9239021 + }, + "nodes": [ + 1764400288, + 1764400304 + ], + "geometry": [ + { "lat": 40.8618235, "lon": -73.9241374 }, + { "lat": 40.8619107, "lon": -73.9239021 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Nagle Avenue", + "parking:lane:left": "parallel", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 926732448, + "bounds": { + "minlat": 40.8731083, + "minlon": -73.9542066, + "maxlat": 40.8734793, + "maxlon": -73.9537717 + }, + "nodes": [ + 8599249419, + 8599249420, + 8599249421, + 8599249422, + 8599249423 + ], + "geometry": [ + { "lat": 40.8734793, "lon": -73.9541376 }, + { "lat": 40.8733976, "lon": -73.9542066 }, + { "lat": 40.8733554, "lon": -73.9542044 }, + { "lat": 40.8731631, "lon": -73.9538642 }, + { "lat": 40.8731083, "lon": -73.9537717 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 926732449, + "bounds": { + "minlat": 40.8738870, + "minlon": -73.9547725, + "maxlat": 40.8747427, + "maxlon": -73.9538539 + }, + "nodes": [ + 8219460638, + 8599249424, + 12351040456, + 12351040455, + 8599249425, + 8599249426, + 8599249427, + 8599249428, + 8599249429, + 12351040457, + 8599249430, + 8599249431, + 8599249432, + 12351040458, + 12351040459, + 8599249433 + ], + "geometry": [ + { "lat": 40.8738870, "lon": -73.9540432 }, + { "lat": 40.8739500, "lon": -73.9541268 }, + { "lat": 40.8739754, "lon": -73.9541381 }, + { "lat": 40.8740088, "lon": -73.9541328 }, + { "lat": 40.8740590, "lon": -73.9540825 }, + { "lat": 40.8740899, "lon": -73.9541351 }, + { "lat": 40.8741612, "lon": -73.9542569 }, + { "lat": 40.8742369, "lon": -73.9543908 }, + { "lat": 40.8743214, "lon": -73.9545064 }, + { "lat": 40.8743526, "lon": -73.9545908 }, + { "lat": 40.8744462, "lon": -73.9547725 }, + { "lat": 40.8747017, "lon": -73.9545532 }, + { "lat": 40.8747427, "lon": -73.9545174 }, + { "lat": 40.8746015, "lon": -73.9542694 }, + { "lat": 40.8745603, "lon": -73.9543077 }, + { "lat": 40.8743137, "lon": -73.9538539 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 926814898, + "bounds": { + "minlat": 40.8743427, + "minlon": -73.9858357, + "maxlat": 40.8749431, + "maxlon": -73.9855772 + }, + "nodes": [ + 8599913962, + 10234828245, + 10234828274, + 8599913963, + 10234828275, + 8599913964, + 10234828276, + 7307803370 + ], + "geometry": [ + { "lat": 40.8749431, "lon": -73.9855772 }, + { "lat": 40.8748873, "lon": -73.9856080 }, + { "lat": 40.8747309, "lon": -73.9856927 }, + { "lat": 40.8746641, "lon": -73.9856999 }, + { "lat": 40.8746234, "lon": -73.9856833 }, + { "lat": 40.8745708, "lon": -73.9857028 }, + { "lat": 40.8744490, "lon": -73.9857705 }, + { "lat": 40.8743427, "lon": -73.9858357 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 926982889, + "bounds": { + "minlat": 40.8684618, + "minlon": -73.9581835, + "maxlat": 40.8689139, + "maxlon": -73.9578710 + }, + "nodes": [ + 8601159330, + 8601159331, + 6339876888 + ], + "geometry": [ + { "lat": 40.8684618, "lon": -73.9579521 }, + { "lat": 40.8686022, "lon": -73.9581835 }, + { "lat": 40.8689139, "lon": -73.9578710 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 927062775, + "bounds": { + "minlat": 40.8607169, + "minlon": -73.9686182, + "maxlat": 40.8607929, + "maxlon": -73.9682788 + }, + "nodes": [ + 7301162510, + 12021336875, + 7301162511, + 12021336874, + 12021336873, + 12021336872, + 12021336871, + 7301162512, + 103132808 + ], + "geometry": [ + { "lat": 40.8607728, "lon": -73.9686182 }, + { "lat": 40.8607853, "lon": -73.9685701 }, + { "lat": 40.8607920, "lon": -73.9685318 }, + { "lat": 40.8607929, "lon": -73.9684994 }, + { "lat": 40.8607903, "lon": -73.9684678 }, + { "lat": 40.8607842, "lon": -73.9684413 }, + { "lat": 40.8607759, "lon": -73.9684149 }, + { "lat": 40.8607643, "lon": -73.9683844 }, + { "lat": 40.8607169, "lon": -73.9682788 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 927062776, + "bounds": { + "minlat": 40.8607728, + "minlon": -73.9686957, + "maxlat": 40.8608777, + "maxlon": -73.9686182 + }, + "nodes": [ + 7301162509, + 7301162510 + ], + "geometry": [ + { "lat": 40.8608777, "lon": -73.9686957 }, + { "lat": 40.8607728, "lon": -73.9686182 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 927154921, + "bounds": { + "minlat": 40.8605262, + "minlon": -73.9734861, + "maxlat": 40.8612089, + "maxlon": -73.9727977 + }, + "nodes": [ + 8386447807, + 6895002509, + 103184380, + 103184381, + 103097522 + ], + "geometry": [ + { "lat": 40.8605262, "lon": -73.9734861 }, + { "lat": 40.8609546, "lon": -73.9730505 }, + { "lat": 40.8611182, "lon": -73.9728733 }, + { "lat": 40.8611461, "lon": -73.9728432 }, + { "lat": 40.8612089, "lon": -73.9727977 } + ], + "tags": { + "highway": "residential", + "name": "Ellery Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ellery", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 927170511, + "bounds": { + "minlat": 40.8202675, + "minlon": -73.9306958, + "maxlat": 40.8205212, + "maxlon": -73.9297513 + }, + "nodes": [ + 7557695124, + 9910773635, + 9910773636, + 9910773637, + 9910773638, + 9910773639, + 42733542 + ], + "geometry": [ + { "lat": 40.8202675, "lon": -73.9297513 }, + { "lat": 40.8203053, "lon": -73.9298556 }, + { "lat": 40.8204512, "lon": -73.9303792 }, + { "lat": 40.8204736, "lon": -73.9304649 }, + { "lat": 40.8204897, "lon": -73.9305401 }, + { "lat": 40.8204967, "lon": -73.9305732 }, + { "lat": 40.8205212, "lon": -73.9306958 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 150th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "150th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 927270616, + "bounds": { + "minlat": 40.8193252, + "minlon": -74.0012900, + "maxlat": 40.8197364, + "maxlon": -74.0009294 + }, + "nodes": [ + 8603362500, + 8603362501 + ], + "geometry": [ + { "lat": 40.8193252, "lon": -74.0012900 }, + { "lat": 40.8197364, "lon": -74.0009294 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 927270617, + "bounds": { + "minlat": 40.8197266, + "minlon": -74.0010635, + "maxlat": 40.8200543, + "maxlon": -74.0004180 + }, + "nodes": [ + 8603362502, + 8603362509, + 8603362503, + 8603362504, + 8603362505, + 8603362506, + 8603362507, + 8603362508 + ], + "geometry": [ + { "lat": 40.8198063, "lon": -74.0004180 }, + { "lat": 40.8198784, "lon": -74.0005864 }, + { "lat": 40.8199066, "lon": -74.0006509 }, + { "lat": 40.8200543, "lon": -74.0009419 }, + { "lat": 40.8199131, "lon": -74.0010635 }, + { "lat": 40.8197742, "lon": -74.0008007 }, + { "lat": 40.8197465, "lon": -74.0006692 }, + { "lat": 40.8197266, "lon": -74.0004642 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 927278159, + "bounds": { + "minlat": 40.7926141, + "minlon": -73.9228885, + "maxlat": 40.7928461, + "maxlon": -73.9227798 + }, + "nodes": [ + 8603460185, + 8603460187, + 10713117981, + 9156860568, + 13327522393, + 8603460188 + ], + "geometry": [ + { "lat": 40.7926141, "lon": -73.9228885 }, + { "lat": 40.7927537, "lon": -73.9228026 }, + { "lat": 40.7927914, "lon": -73.9227896 }, + { "lat": 40.7928087, "lon": -73.9227854 }, + { "lat": 40.7928256, "lon": -73.9227798 }, + { "lat": 40.7928461, "lon": -73.9227827 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "maxspeed": "10 mph", + "name": "K Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 927279703, + "bounds": { + "minlat": 40.7896348, + "minlon": -73.9258576, + "maxlat": 40.7899969, + "maxlon": -73.9251980 + }, + "nodes": [ + 3040261588, + 9153832702, + 3040261587, + 9153832703, + 1242159699, + 9153832704, + 3040261550, + 9153832705, + 9153832706, + 1242159811 + ], + "geometry": [ + { "lat": 40.7896348, "lon": -73.9251980 }, + { "lat": 40.7896585, "lon": -73.9252008 }, + { "lat": 40.7896829, "lon": -73.9252102 }, + { "lat": 40.7897045, "lon": -73.9252249 }, + { "lat": 40.7897238, "lon": -73.9252513 }, + { "lat": 40.7897437, "lon": -73.9252915 }, + { "lat": 40.7899229, "lon": -73.9257249 }, + { "lat": 40.7899502, "lon": -73.9257816 }, + { "lat": 40.7899735, "lon": -73.9258218 }, + { "lat": 40.7899969, "lon": -73.9258576 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "tertiary", + "lanes": "2", + "lcn": "yes", + "name": "Hell Gate Circle", + "name:etymology:wikidata": "Q838755", + "sidewalk:left": "separate", + "sidewalk:right": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 927279704, + "bounds": { + "minlat": 40.7928528, + "minlon": -73.9226229, + "maxlat": 40.7930232, + "maxlon": -73.9221847 + }, + "nodes": [ + 7738506172, + 8677803009, + 3644949942, + 3644949941, + 9153856218, + 3843180744 + ], + "geometry": [ + { "lat": 40.7928528, "lon": -73.9226229 }, + { "lat": 40.7928659, "lon": -73.9225219 }, + { "lat": 40.7928867, "lon": -73.9224353 }, + { "lat": 40.7929168, "lon": -73.9223614 }, + { "lat": 40.7929567, "lon": -73.9222903 }, + { "lat": 40.7930232, "lon": -73.9221847 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "tertiary", + "lcn": "yes", + "name": "Central Road", + "oneway": "yes", + "oneway:bicycle": "no" + } +}, +{ + "type": "way", + "id": 927499539, + "bounds": { + "minlat": 40.7029314, + "minlon": -73.9817024, + "maxlat": 40.7031971, + "maxlon": -73.9816842 + }, + "nodes": [ + 8605124810, + 13061600227, + 8605124811, + 8605124812 + ], + "geometry": [ + { "lat": 40.7029314, "lon": -73.9817024 }, + { "lat": 40.7029831, "lon": -73.9817009 }, + { "lat": 40.7030026, "lon": -73.9816982 }, + { "lat": 40.7031971, "lon": -73.9816842 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 927513419, + "bounds": { + "minlat": 40.8114451, + "minlon": -74.0157806, + "maxlat": 40.8118639, + "maxlon": -74.0144878 + }, + "nodes": [ + 103886497, + 8605250154, + 8605250155, + 8605250156, + 8605250157, + 8605250158, + 8605250159, + 8605250160, + 8605250161, + 8605250162, + 8605250163, + 8605250164 + ], + "geometry": [ + { "lat": 40.8114451, "lon": -74.0157806 }, + { "lat": 40.8115304, "lon": -74.0156846 }, + { "lat": 40.8115635, "lon": -74.0156282 }, + { "lat": 40.8115841, "lon": -74.0155495 }, + { "lat": 40.8116039, "lon": -74.0154057 }, + { "lat": 40.8116501, "lon": -74.0149815 }, + { "lat": 40.8116488, "lon": -74.0149124 }, + { "lat": 40.8116326, "lon": -74.0148560 }, + { "lat": 40.8116209, "lon": -74.0147832 }, + { "lat": 40.8116304, "lon": -74.0147307 }, + { "lat": 40.8116737, "lon": -74.0146577 }, + { "lat": 40.8118639, "lon": -74.0144878 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 927513420, + "bounds": { + "minlat": 40.8112504, + "minlon": -74.0156282, + "maxlat": 40.8115635, + "maxlon": -74.0151168 + }, + "nodes": [ + 8605250155, + 8605250165 + ], + "geometry": [ + { "lat": 40.8115635, "lon": -74.0156282 }, + { "lat": 40.8112504, "lon": -74.0151168 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 927513421, + "bounds": { + "minlat": 40.8096393, + "minlon": -74.0155181, + "maxlat": 40.8100200, + "maxlon": -74.0148698 + }, + "nodes": [ + 8605250166, + 8605250174, + 8605250167, + 8605250168, + 8605250169, + 8605250170, + 8605250171, + 8605250172, + 8605250173 + ], + "geometry": [ + { "lat": 40.8100200, "lon": -74.0148698 }, + { "lat": 40.8099438, "lon": -74.0149474 }, + { "lat": 40.8097351, "lon": -74.0151642 }, + { "lat": 40.8097260, "lon": -74.0151960 }, + { "lat": 40.8097228, "lon": -74.0152455 }, + { "lat": 40.8097309, "lon": -74.0152939 }, + { "lat": 40.8097366, "lon": -74.0153489 }, + { "lat": 40.8097228, "lon": -74.0154131 }, + { "lat": 40.8096393, "lon": -74.0155181 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 927560393, + "bounds": { + "minlat": 40.8060126, + "minlon": -73.9980420, + "maxlat": 40.8062496, + "maxlon": -73.9973874 + }, + "nodes": [ + 8605560841, + 8605560842, + 8605560843, + 8605560844, + 8605560845, + 8605560851, + 8605560846 + ], + "geometry": [ + { "lat": 40.8060292, "lon": -73.9980420 }, + { "lat": 40.8062340, "lon": -73.9977155 }, + { "lat": 40.8062487, "lon": -73.9976616 }, + { "lat": 40.8062496, "lon": -73.9976099 }, + { "lat": 40.8062261, "lon": -73.9975675 }, + { "lat": 40.8061234, "lon": -73.9974808 }, + { "lat": 40.8060126, "lon": -73.9973874 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 927560394, + "bounds": { + "minlat": 40.8058503, + "minlon": -73.9976953, + "maxlat": 40.8061234, + "maxlon": -73.9974808 + }, + "nodes": [ + 8605560847, + 8605560848, + 8605560849, + 8605560850, + 8605560851 + ], + "geometry": [ + { "lat": 40.8058503, "lon": -73.9976286 }, + { "lat": 40.8059342, "lon": -73.9976953 }, + { "lat": 40.8059759, "lon": -73.9976918 }, + { "lat": 40.8060028, "lon": -73.9976792 }, + { "lat": 40.8061234, "lon": -73.9974808 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 927563161, + "bounds": { + "minlat": 40.8199132, + "minlon": -73.9925063, + "maxlat": 40.8201415, + "maxlon": -73.9921094 + }, + "nodes": [ + 440208170, + 8605558057, + 13524700355, + 8605558058, + 8605558059, + 8605558054 + ], + "geometry": [ + { "lat": 40.8199132, "lon": -73.9921094 }, + { "lat": 40.8199447, "lon": -73.9921703 }, + { "lat": 40.8199552, "lon": -73.9921886 }, + { "lat": 40.8199726, "lon": -73.9922191 }, + { "lat": 40.8200005, "lon": -73.9922625 }, + { "lat": 40.8201415, "lon": -73.9925063 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 927567331, + "bounds": { + "minlat": 40.8413008, + "minlon": -74.0020477, + "maxlat": 40.8419034, + "maxlon": -74.0016221 + }, + "nodes": [ + 8605599066, + 8605599074, + 8605599067, + 8605599068, + 8605599069, + 8605599070, + 8605599071, + 8605599072, + 8605599073 + ], + "geometry": [ + { "lat": 40.8413008, "lon": -74.0020477 }, + { "lat": 40.8414592, "lon": -74.0019083 }, + { "lat": 40.8414965, "lon": -74.0018794 }, + { "lat": 40.8415296, "lon": -74.0018728 }, + { "lat": 40.8415642, "lon": -74.0018761 }, + { "lat": 40.8415981, "lon": -74.0018772 }, + { "lat": 40.8416302, "lon": -74.0018685 }, + { "lat": 40.8416608, "lon": -74.0018466 }, + { "lat": 40.8419034, "lon": -74.0016221 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 927580581, + "bounds": { + "minlat": 40.8530310, + "minlon": -74.0159991, + "maxlat": 40.8534023, + "maxlon": -74.0155453 + }, + "nodes": [ + 103191721, + 8605702506, + 8605702507, + 8605702508, + 8605702509, + 8605702510, + 8605702511, + 8605702512, + 8605702513, + 8605702514, + 8605702515, + 8605702516, + 8605705417, + 8605702506 + ], + "geometry": [ + { "lat": 40.8530860, "lon": -74.0159991 }, + { "lat": 40.8530754, "lon": -74.0159473 }, + { "lat": 40.8530765, "lon": -74.0159257 }, + { "lat": 40.8531032, "lon": -74.0158822 }, + { "lat": 40.8533654, "lon": -74.0157679 }, + { "lat": 40.8533985, "lon": -74.0157282 }, + { "lat": 40.8534023, "lon": -74.0156510 }, + { "lat": 40.8533669, "lon": -74.0155646 }, + { "lat": 40.8533385, "lon": -74.0155453 }, + { "lat": 40.8530933, "lon": -74.0156317 }, + { "lat": 40.8530425, "lon": -74.0156591 }, + { "lat": 40.8530333, "lon": -74.0156703 }, + { "lat": 40.8530310, "lon": -74.0157089 }, + { "lat": 40.8530754, "lon": -74.0159473 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 927618173, + "bounds": { + "minlat": 40.8520326, + "minlon": -74.0140929, + "maxlat": 40.8534818, + "maxlon": -74.0121603 + }, + "nodes": [ + 5674744872, + 5674744878, + 5674744874, + 12859920650, + 12859920654, + 12859920652, + 12859920653, + 12859920651, + 5674744870, + 12859920656, + 12859920658, + 12859920657, + 12859920659, + 5674744869, + 12859920660, + 12859920655, + 5674744873, + 5674744875, + 5674744883, + 5674744868, + 10936392309, + 10936374100, + 10936374087, + 10936374091, + 10936392318, + 10936392311, + 5674744867, + 10936374090, + 5674744879, + 5674744882, + 10936392317, + 12859930914, + 12859930915, + 8605982035 + ], + "geometry": [ + { "lat": 40.8524893, "lon": -74.0125127 }, + { "lat": 40.8523515, "lon": -74.0125800 }, + { "lat": 40.8521867, "lon": -74.0126605 }, + { "lat": 40.8520644, "lon": -74.0127203 }, + { "lat": 40.8520546, "lon": -74.0127256 }, + { "lat": 40.8520447, "lon": -74.0127342 }, + { "lat": 40.8520368, "lon": -74.0127437 }, + { "lat": 40.8520326, "lon": -74.0127609 }, + { "lat": 40.8520332, "lon": -74.0127787 }, + { "lat": 40.8523893, "lon": -74.0140556 }, + { "lat": 40.8523951, "lon": -74.0140693 }, + { "lat": 40.8524034, "lon": -74.0140830 }, + { "lat": 40.8524137, "lon": -74.0140903 }, + { "lat": 40.8524235, "lon": -74.0140929 }, + { "lat": 40.8524348, "lon": -74.0140922 }, + { "lat": 40.8524462, "lon": -74.0140889 }, + { "lat": 40.8525692, "lon": -74.0140299 }, + { "lat": 40.8527325, "lon": -74.0139517 }, + { "lat": 40.8528683, "lon": -74.0138866 }, + { "lat": 40.8534122, "lon": -74.0136271 }, + { "lat": 40.8534231, "lon": -74.0136187 }, + { "lat": 40.8534348, "lon": -74.0136056 }, + { "lat": 40.8534447, "lon": -74.0135875 }, + { "lat": 40.8534731, "lon": -74.0135018 }, + { "lat": 40.8534788, "lon": -74.0134791 }, + { "lat": 40.8534818, "lon": -74.0134567 }, + { "lat": 40.8534817, "lon": -74.0134362 }, + { "lat": 40.8534790, "lon": -74.0134164 }, + { "lat": 40.8534631, "lon": -74.0133575 }, + { "lat": 40.8534054, "lon": -74.0131447 }, + { "lat": 40.8533557, "lon": -74.0129613 }, + { "lat": 40.8532048, "lon": -74.0124040 }, + { "lat": 40.8531719, "lon": -74.0123394 }, + { "lat": 40.8531222, "lon": -74.0121603 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 927637563, + "bounds": { + "minlat": 40.8025906, + "minlon": -74.0171083, + "maxlat": 40.8030084, + "maxlon": -74.0167101 + }, + "nodes": [ + 8606118001, + 8606118003, + 8606118002 + ], + "geometry": [ + { "lat": 40.8030084, "lon": -74.0167101 }, + { "lat": 40.8029730, "lon": -74.0167438 }, + { "lat": 40.8025906, "lon": -74.0171083 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 928726258, + "bounds": { + "minlat": 40.8248081, + "minlon": -73.9147486, + "maxlat": 40.8252132, + "maxlon": -73.9135119 + }, + "nodes": [ + 42732948, + 12038455934, + 8571918548, + 9917683053, + 9917683054, + 42732945 + ], + "geometry": [ + { "lat": 40.8248081, "lon": -73.9135119 }, + { "lat": 40.8248449, "lon": -73.9136247 }, + { "lat": 40.8251718, "lon": -73.9146280 }, + { "lat": 40.8251849, "lon": -73.9146685 }, + { "lat": 40.8251995, "lon": -73.9147112 }, + { "lat": 40.8252132, "lon": -73.9147486 } + ], + "tags": { + "highway": "residential", + "name": "East 162nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "162nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 928726261, + "bounds": { + "minlat": 40.8239297, + "minlon": -73.9135119, + "maxlat": 40.8248081, + "maxlon": -73.9114585 + }, + "nodes": [ + 4202516474, + 9917683073, + 9917683063, + 9917683064, + 9917683065, + 471221338, + 9917683067, + 9917683066, + 8184243069, + 10647829931, + 42732948 + ], + "geometry": [ + { "lat": 40.8239297, "lon": -73.9114585 }, + { "lat": 40.8240198, "lon": -73.9115148 }, + { "lat": 40.8241365, "lon": -73.9116077 }, + { "lat": 40.8241652, "lon": -73.9116362 }, + { "lat": 40.8241939, "lon": -73.9116743 }, + { "lat": 40.8242233, "lon": -73.9117208 }, + { "lat": 40.8242524, "lon": -73.9117836 }, + { "lat": 40.8242801, "lon": -73.9118557 }, + { "lat": 40.8247693, "lon": -73.9133920 }, + { "lat": 40.8247769, "lon": -73.9134153 }, + { "lat": 40.8248081, "lon": -73.9135119 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 162nd Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "162nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 928866809, + "bounds": { + "minlat": 40.7488771, + "minlon": -73.9898091, + "maxlat": 40.7489534, + "maxlon": -73.9897553 + }, + "nodes": [ + 6407817394, + 10263177608, + 8614943065 + ], + "geometry": [ + { "lat": 40.7488771, "lon": -73.9898091 }, + { "lat": 40.7488926, "lon": -73.9897982 }, + { "lat": 40.7489534, "lon": -73.9897553 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 929187891, + "bounds": { + "minlat": 40.7097041, + "minlon": -73.9616638, + "maxlat": 40.7100149, + "maxlon": -73.9614840 + }, + "nodes": [ + 8617440620, + 10053848923, + 2782255543, + 8617429485 + ], + "geometry": [ + { "lat": 40.7097041, "lon": -73.9616638 }, + { "lat": 40.7097844, "lon": -73.9616238 }, + { "lat": 40.7098115, "lon": -73.9616116 }, + { "lat": 40.7100149, "lon": -73.9614840 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 929187894, + "bounds": { + "minlat": 40.7107955, + "minlon": -73.9534795, + "maxlat": 40.7109598, + "maxlon": -73.9530902 + }, + "nodes": [ + 8617440633, + 9955210494, + 9955210493, + 9955210490, + 9755372950, + 9955210489, + 9955210492, + 9955210491, + 8842929753, + 8617440619, + 8617429505, + 8617429475, + 8617429465, + 8617429455, + 8842929754, + 8617440633 + ], + "geometry": [ + { "lat": 40.7109464, "lon": -73.9533993 }, + { "lat": 40.7109598, "lon": -73.9533681 }, + { "lat": 40.7109407, "lon": -73.9533848 }, + { "lat": 40.7109285, "lon": -73.9533845 }, + { "lat": 40.7109090, "lon": -73.9533839 }, + { "lat": 40.7108995, "lon": -73.9533700 }, + { "lat": 40.7108920, "lon": -73.9533590 }, + { "lat": 40.7108494, "lon": -73.9532415 }, + { "lat": 40.7108414, "lon": -73.9532194 }, + { "lat": 40.7108534, "lon": -73.9530902 }, + { "lat": 40.7108170, "lon": -73.9532181 }, + { "lat": 40.7107955, "lon": -73.9534598 }, + { "lat": 40.7108006, "lon": -73.9534777 }, + { "lat": 40.7108228, "lon": -73.9534795 }, + { "lat": 40.7108357, "lon": -73.9534709 }, + { "lat": 40.7109464, "lon": -73.9533993 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 929187895, + "bounds": { + "minlat": 40.7096154, + "minlon": -73.9614023, + "maxlat": 40.7098919, + "maxlon": -73.9612679 + }, + "nodes": [ + 8617429476, + 10053848918, + 2782255539, + 8617440650 + ], + "geometry": [ + { "lat": 40.7096154, "lon": -73.9614023 }, + { "lat": 40.7096868, "lon": -73.9613647 }, + { "lat": 40.7097251, "lon": -73.9613446 }, + { "lat": 40.7098919, "lon": -73.9612679 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 929275276, + "bounds": { + "minlat": 40.8341601, + "minlon": -73.9840022, + "maxlat": 40.8341888, + "maxlon": -73.9838878 + }, + "nodes": [ + 6964270271, + 6964270270 + ], + "geometry": [ + { "lat": 40.8341888, "lon": -73.9840022 }, + { "lat": 40.8341601, "lon": -73.9838878 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 929275277, + "bounds": { + "minlat": 40.8340254, + "minlon": -73.9840545, + "maxlat": 40.8340523, + "maxlon": -73.9839459 + }, + "nodes": [ + 6964270260, + 6964270259 + ], + "geometry": [ + { "lat": 40.8340523, "lon": -73.9840545 }, + { "lat": 40.8340254, "lon": -73.9839459 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 929381072, + "bounds": { + "minlat": 40.8227826, + "minlon": -74.0068716, + "maxlat": 40.8229097, + "maxlon": -74.0059177 + }, + "nodes": [ + 6370327537, + 6370327563, + 6370327538 + ], + "geometry": [ + { "lat": 40.8229097, "lon": -74.0068716 }, + { "lat": 40.8229052, "lon": -74.0067821 }, + { "lat": 40.8227826, "lon": -74.0059177 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 929381073, + "bounds": { + "minlat": 40.8221205, + "minlon": -74.0042147, + "maxlat": 40.8242628, + "maxlon": -74.0016524 + }, + "nodes": [ + 6370327552, + 8618962312, + 8618962313, + 8618962314, + 8618962315, + 8618962316, + 8618978517, + 8618978518, + 8618978519, + 8618978520, + 8618978521, + 8618978522, + 8618978523, + 8618978525, + 8618978524, + 8618978526, + 8618978527, + 8618978528, + 8618978529, + 8618978530, + 8618978531, + 8618978532, + 8618978533, + 8618978534, + 8618978535, + 8618978536, + 8618978537, + 8618978538, + 8618978539, + 8618978540, + 8618978541, + 8618978622, + 8618978542, + 8618978543, + 8618978544, + 8618978545, + 8618978634, + 8618978546, + 8618978547, + 8618978548, + 8618978549 + ], + "geometry": [ + { "lat": 40.8223393, "lon": -74.0042147 }, + { "lat": 40.8226438, "lon": -74.0039903 }, + { "lat": 40.8229083, "lon": -74.0037348 }, + { "lat": 40.8231882, "lon": -74.0034160 }, + { "lat": 40.8233128, "lon": -74.0032247 }, + { "lat": 40.8234601, "lon": -74.0029803 }, + { "lat": 40.8235877, "lon": -74.0027770 }, + { "lat": 40.8236221, "lon": -74.0027305 }, + { "lat": 40.8236916, "lon": -74.0026537 }, + { "lat": 40.8237890, "lon": -74.0025683 }, + { "lat": 40.8238831, "lon": -74.0025078 }, + { "lat": 40.8241204, "lon": -74.0023856 }, + { "lat": 40.8241883, "lon": -74.0023304 }, + { "lat": 40.8242223, "lon": -74.0022731 }, + { "lat": 40.8242464, "lon": -74.0022061 }, + { "lat": 40.8242611, "lon": -74.0021261 }, + { "lat": 40.8242628, "lon": -74.0020601 }, + { "lat": 40.8242513, "lon": -74.0019639 }, + { "lat": 40.8242325, "lon": -74.0018838 }, + { "lat": 40.8241924, "lon": -74.0017909 }, + { "lat": 40.8241441, "lon": -74.0017206 }, + { "lat": 40.8240918, "lon": -74.0016827 }, + { "lat": 40.8240214, "lon": -74.0016611 }, + { "lat": 40.8239551, "lon": -74.0016524 }, + { "lat": 40.8238864, "lon": -74.0016622 }, + { "lat": 40.8238234, "lon": -74.0016903 }, + { "lat": 40.8237563, "lon": -74.0017335 }, + { "lat": 40.8236450, "lon": -74.0018438 }, + { "lat": 40.8235198, "lon": -74.0019693 }, + { "lat": 40.8234552, "lon": -74.0020212 }, + { "lat": 40.8233905, "lon": -74.0020579 }, + { "lat": 40.8232852, "lon": -74.0020897 }, + { "lat": 40.8232677, "lon": -74.0020950 }, + { "lat": 40.8231739, "lon": -74.0021180 }, + { "lat": 40.8229957, "lon": -74.0021020 }, + { "lat": 40.8227317, "lon": -74.0020808 }, + { "lat": 40.8227049, "lon": -74.0020838 }, + { "lat": 40.8225749, "lon": -74.0020985 }, + { "lat": 40.8224476, "lon": -74.0021268 }, + { "lat": 40.8223431, "lon": -74.0021676 }, + { "lat": 40.8221205, "lon": -74.0022695 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 929381074, + "bounds": { + "minlat": 40.8217374, + "minlon": -74.0025563, + "maxlat": 40.8221205, + "maxlon": -74.0021329 + }, + "nodes": [ + 8618978550, + 8618978551, + 8618978552, + 8618978553, + 8618978554, + 8618978549, + 8618978555, + 8618978556, + 8618978557, + 8618978558, + 8618978559, + 8618978560, + 8618978561, + 8618978562, + 8618978563, + 8618978564, + 8618978565, + 8618978566, + 8618978567, + 8618978653, + 8618978568, + 8618978569, + 8618978570, + 8618978571, + 8618978550 + ], + "geometry": [ + { "lat": 40.8219819, "lon": -74.0025189 }, + { "lat": 40.8220497, "lon": -74.0024624 }, + { "lat": 40.8220852, "lon": -74.0024091 }, + { "lat": 40.8221086, "lon": -74.0023505 }, + { "lat": 40.8221191, "lon": -74.0023003 }, + { "lat": 40.8221205, "lon": -74.0022695 }, + { "lat": 40.8221175, "lon": -74.0022470 }, + { "lat": 40.8220932, "lon": -74.0021830 }, + { "lat": 40.8220610, "lon": -74.0021478 }, + { "lat": 40.8220206, "lon": -74.0021350 }, + { "lat": 40.8219867, "lon": -74.0021329 }, + { "lat": 40.8219415, "lon": -74.0021393 }, + { "lat": 40.8218762, "lon": -74.0021692 }, + { "lat": 40.8218205, "lon": -74.0022182 }, + { "lat": 40.8217769, "lon": -74.0022801 }, + { "lat": 40.8217511, "lon": -74.0023409 }, + { "lat": 40.8217374, "lon": -74.0024070 }, + { "lat": 40.8217398, "lon": -74.0024560 }, + { "lat": 40.8217616, "lon": -74.0025093 }, + { "lat": 40.8217745, "lon": -74.0025279 }, + { "lat": 40.8217922, "lon": -74.0025403 }, + { "lat": 40.8218334, "lon": -74.0025563 }, + { "lat": 40.8218939, "lon": -74.0025531 }, + { "lat": 40.8219318, "lon": -74.0025424 }, + { "lat": 40.8219819, "lon": -74.0025189 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 929381075, + "bounds": { + "minlat": 40.8220610, + "minlon": -74.0021478, + "maxlat": 40.8234512, + "maxlon": -73.9999954 + }, + "nodes": [ + 8618978557, + 8618978572, + 8618978573, + 8618978574, + 8618978575, + 8618978576, + 8618978577, + 8618978578, + 8618978579, + 8618978580, + 8618978581, + 8618978582, + 8618978583, + 8618978584, + 8618978585, + 8618978586, + 8618978587, + 8618978588, + 8618978589, + 8618978590, + 8618978591, + 8618978592, + 8618978593, + 8618978594, + 8618978595 + ], + "geometry": [ + { "lat": 40.8220610, "lon": -74.0021478 }, + { "lat": 40.8221452, "lon": -74.0019874 }, + { "lat": 40.8222120, "lon": -74.0018952 }, + { "lat": 40.8222977, "lon": -74.0017727 }, + { "lat": 40.8223605, "lon": -74.0016541 }, + { "lat": 40.8224004, "lon": -74.0015434 }, + { "lat": 40.8224373, "lon": -74.0013998 }, + { "lat": 40.8224772, "lon": -74.0011851 }, + { "lat": 40.8225001, "lon": -74.0009624 }, + { "lat": 40.8225380, "lon": -74.0007200 }, + { "lat": 40.8226118, "lon": -74.0004644 }, + { "lat": 40.8226656, "lon": -74.0002365 }, + { "lat": 40.8226836, "lon": -74.0002088 }, + { "lat": 40.8228740, "lon": -74.0001100 }, + { "lat": 40.8230534, "lon": -74.0000362 }, + { "lat": 40.8232130, "lon": -73.9999967 }, + { "lat": 40.8232708, "lon": -73.9999954 }, + { "lat": 40.8233276, "lon": -74.0000086 }, + { "lat": 40.8233625, "lon": -74.0000336 }, + { "lat": 40.8233954, "lon": -74.0000744 }, + { "lat": 40.8234193, "lon": -74.0001284 }, + { "lat": 40.8234413, "lon": -74.0002154 }, + { "lat": 40.8234512, "lon": -74.0003103 }, + { "lat": 40.8234502, "lon": -74.0003919 }, + { "lat": 40.8234492, "lon": -74.0004631 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 929381076, + "bounds": { + "minlat": 40.8195283, + "minlon": -74.0038128, + "maxlat": 40.8238572, + "maxlon": -74.0004607 + }, + "nodes": [ + 8618978565, + 8618978689, + 8618978688, + 8618978687, + 8618978686, + 8618978685, + 8618978684, + 8618978683, + 8618978682, + 8618978681, + 8618978680, + 8618978679, + 8618978678, + 8618978677, + 8618978676, + 8618978675, + 8618978674, + 8618978673, + 8618978672, + 8618978671, + 8618978670, + 8618978669, + 8618978668, + 8618978667, + 8618978666, + 8618978665, + 8618978690, + 8618978664, + 8618978663, + 8618978662, + 8618978661, + 8618978660, + 8618978659, + 8618978658, + 8618978657, + 8618978656, + 8618978655, + 8618978654, + 8618978596, + 8618978634, + 8618978597, + 8618978598, + 8618978599, + 8618978600, + 8618978601, + 8618978602, + 8618978603, + 8618978604, + 8618978605, + 8618978606, + 8618978595, + 8618978607, + 8618978608, + 8618978609, + 8618978610, + 8618978611, + 8618978612, + 8618978613, + 8618978614, + 8618978615, + 8618978616, + 8618978617, + 8618978618, + 8618978619, + 8618978620, + 8618978621, + 8618978622, + 8618978623, + 8618978624, + 8618978625, + 8618978626, + 8618978627, + 8618978628, + 8618978629, + 8618978630, + 8618978631, + 8618978632, + 8618978633 + ], + "geometry": [ + { "lat": 40.8217374, "lon": -74.0024070 }, + { "lat": 40.8213266, "lon": -74.0023945 }, + { "lat": 40.8211630, "lon": -74.0024135 }, + { "lat": 40.8207485, "lon": -74.0024869 }, + { "lat": 40.8205182, "lon": -74.0024939 }, + { "lat": 40.8204347, "lon": -74.0024861 }, + { "lat": 40.8202768, "lon": -74.0024496 }, + { "lat": 40.8202156, "lon": -74.0024201 }, + { "lat": 40.8201591, "lon": -74.0023696 }, + { "lat": 40.8201025, "lon": -74.0023088 }, + { "lat": 40.8200676, "lon": -74.0023401 }, + { "lat": 40.8199315, "lon": -74.0024540 }, + { "lat": 40.8198703, "lon": -74.0024939 }, + { "lat": 40.8197854, "lon": -74.0025165 }, + { "lat": 40.8197644, "lon": -74.0025304 }, + { "lat": 40.8197230, "lon": -74.0025930 }, + { "lat": 40.8196809, "lon": -74.0026434 }, + { "lat": 40.8195881, "lon": -74.0027295 }, + { "lat": 40.8195473, "lon": -74.0028129 }, + { "lat": 40.8195302, "lon": -74.0028929 }, + { "lat": 40.8195283, "lon": -74.0029616 }, + { "lat": 40.8195388, "lon": -74.0030389 }, + { "lat": 40.8195657, "lon": -74.0030954 }, + { "lat": 40.8196000, "lon": -74.0031328 }, + { "lat": 40.8196618, "lon": -74.0031711 }, + { "lat": 40.8197302, "lon": -74.0031945 }, + { "lat": 40.8197705, "lon": -74.0032029 }, + { "lat": 40.8198098, "lon": -74.0032110 }, + { "lat": 40.8200111, "lon": -74.0032249 }, + { "lat": 40.8206409, "lon": -74.0032060 }, + { "lat": 40.8210075, "lon": -74.0031847 }, + { "lat": 40.8212627, "lon": -74.0031704 }, + { "lat": 40.8214634, "lon": -74.0031543 }, + { "lat": 40.8216038, "lon": -74.0030934 }, + { "lat": 40.8218488, "lon": -74.0030038 }, + { "lat": 40.8220653, "lon": -74.0028708 }, + { "lat": 40.8222293, "lon": -74.0027379 }, + { "lat": 40.8224240, "lon": -74.0025182 }, + { "lat": 40.8226205, "lon": -74.0022482 }, + { "lat": 40.8227049, "lon": -74.0020838 }, + { "lat": 40.8227495, "lon": -74.0019968 }, + { "lat": 40.8228764, "lon": -74.0016558 }, + { "lat": 40.8229452, "lon": -74.0014434 }, + { "lat": 40.8230316, "lon": -74.0011486 }, + { "lat": 40.8231093, "lon": -74.0009044 }, + { "lat": 40.8231847, "lon": -74.0007078 }, + { "lat": 40.8232296, "lon": -74.0006255 }, + { "lat": 40.8232831, "lon": -74.0005532 }, + { "lat": 40.8233323, "lon": -74.0005142 }, + { "lat": 40.8233892, "lon": -74.0004810 }, + { "lat": 40.8234492, "lon": -74.0004631 }, + { "lat": 40.8235904, "lon": -74.0004607 }, + { "lat": 40.8236724, "lon": -74.0004709 }, + { "lat": 40.8237413, "lon": -74.0004969 }, + { "lat": 40.8237916, "lon": -74.0005214 }, + { "lat": 40.8238299, "lon": -74.0005619 }, + { "lat": 40.8238507, "lon": -74.0006096 }, + { "lat": 40.8238572, "lon": -74.0006630 }, + { "lat": 40.8238550, "lon": -74.0007180 }, + { "lat": 40.8238375, "lon": -74.0007642 }, + { "lat": 40.8237872, "lon": -74.0008451 }, + { "lat": 40.8236954, "lon": -74.0009694 }, + { "lat": 40.8236363, "lon": -74.0010720 }, + { "lat": 40.8235718, "lon": -74.0012122 }, + { "lat": 40.8234865, "lon": -74.0014477 }, + { "lat": 40.8233739, "lon": -74.0018046 }, + { "lat": 40.8232852, "lon": -74.0020897 }, + { "lat": 40.8232241, "lon": -74.0022511 }, + { "lat": 40.8231322, "lon": -74.0024332 }, + { "lat": 40.8229704, "lon": -74.0027107 }, + { "lat": 40.8228184, "lon": -74.0029433 }, + { "lat": 40.8226555, "lon": -74.0031528 }, + { "lat": 40.8224204, "lon": -74.0033840 }, + { "lat": 40.8221568, "lon": -74.0035676 }, + { "lat": 40.8218944, "lon": -74.0036875 }, + { "lat": 40.8217172, "lon": -74.0037453 }, + { "lat": 40.8215291, "lon": -74.0037988 }, + { "lat": 40.8214671, "lon": -74.0038128 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 929381077, + "bounds": { + "minlat": 40.8206725, + "minlon": -74.0051467, + "maxlat": 40.8214671, + "maxlon": -74.0038128 + }, + "nodes": [ + 8618978635, + 8618978636, + 8618978637, + 8618978638, + 8618978639, + 8618978640, + 8618978641, + 8618978642, + 8618978643, + 8618978644, + 8618978703, + 8618978633 + ], + "geometry": [ + { "lat": 40.8207454, "lon": -74.0051467 }, + { "lat": 40.8206850, "lon": -74.0049413 }, + { "lat": 40.8206725, "lon": -74.0048148 }, + { "lat": 40.8206958, "lon": -74.0047014 }, + { "lat": 40.8207369, "lon": -74.0046056 }, + { "lat": 40.8209100, "lon": -74.0044389 }, + { "lat": 40.8211812, "lon": -74.0042139 }, + { "lat": 40.8213223, "lon": -74.0040761 }, + { "lat": 40.8214032, "lon": -74.0039570 }, + { "lat": 40.8214349, "lon": -74.0038941 }, + { "lat": 40.8214524, "lon": -74.0038500 }, + { "lat": 40.8214671, "lon": -74.0038128 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 929381078, + "bounds": { + "minlat": 40.8214625, + "minlon": -74.0038128, + "maxlat": 40.8217745, + "maxlon": -74.0025279 + }, + "nodes": [ + 8618978633, + 8618978645, + 8618978646, + 8618978647, + 8618978648, + 8618978659, + 8618978649, + 8618978650, + 8618978651, + 8618978652, + 8618978653 + ], + "geometry": [ + { "lat": 40.8214671, "lon": -74.0038128 }, + { "lat": 40.8214792, "lon": -74.0037287 }, + { "lat": 40.8214858, "lon": -74.0036394 }, + { "lat": 40.8214808, "lon": -74.0034773 }, + { "lat": 40.8214625, "lon": -74.0032236 }, + { "lat": 40.8214634, "lon": -74.0031543 }, + { "lat": 40.8214641, "lon": -74.0031012 }, + { "lat": 40.8214800, "lon": -74.0029965 }, + { "lat": 40.8215250, "lon": -74.0028741 }, + { "lat": 40.8216168, "lon": -74.0027230 }, + { "lat": 40.8217745, "lon": -74.0025279 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 929381079, + "bounds": { + "minlat": 40.8197020, + "minlon": -74.0039526, + "maxlat": 40.8214524, + "maxlon": -74.0032029 + }, + "nodes": [ + 8618978690, + 8618978691, + 8618978692, + 8618978693, + 8618978694, + 8618978695, + 8618978696, + 8618978697, + 8618978698, + 8618978699, + 8618978700, + 8618978701, + 8618978702, + 8618978703 + ], + "geometry": [ + { "lat": 40.8197705, "lon": -74.0032029 }, + { "lat": 40.8197398, "lon": -74.0033590 }, + { "lat": 40.8197094, "lon": -74.0035350 }, + { "lat": 40.8197020, "lon": -74.0036436 }, + { "lat": 40.8197094, "lon": -74.0037326 }, + { "lat": 40.8197242, "lon": -74.0037815 }, + { "lat": 40.8197494, "lon": -74.0038196 }, + { "lat": 40.8198101, "lon": -74.0038822 }, + { "lat": 40.8198848, "lon": -74.0039233 }, + { "lat": 40.8199906, "lon": -74.0039477 }, + { "lat": 40.8202127, "lon": -74.0039526 }, + { "lat": 40.8205102, "lon": -74.0039350 }, + { "lat": 40.8210193, "lon": -74.0039027 }, + { "lat": 40.8214524, "lon": -74.0038500 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 929525067, + "bounds": { + "minlat": 40.7475992, + "minlon": -73.9979626, + "maxlat": 40.7478362, + "maxlon": -73.9977789 + }, + "nodes": [ + 8620532517, + 8620532518 + ], + "geometry": [ + { "lat": 40.7475992, "lon": -73.9979626 }, + { "lat": 40.7478362, "lon": -73.9977789 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 930514749, + "bounds": { + "minlat": 40.8040521, + "minlon": -73.9098901, + "maxlat": 40.8053092, + "maxlon": -73.9072369 + }, + "nodes": [ + 42752947, + 13039019673, + 9910669582, + 9910669581, + 988638797, + 5859955120, + 9910669579, + 42775302 + ], + "geometry": [ + { "lat": 40.8053092, "lon": -73.9098901 }, + { "lat": 40.8052756, "lon": -73.9098052 }, + { "lat": 40.8046537, "lon": -73.9082990 }, + { "lat": 40.8046109, "lon": -73.9082051 }, + { "lat": 40.8045637, "lon": -73.9081127 }, + { "lat": 40.8041169, "lon": -73.9073500 }, + { "lat": 40.8040913, "lon": -73.9073056 }, + { "lat": 40.8040521, "lon": -73.9072369 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 140th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 930514750, + "bounds": { + "minlat": 40.8053092, + "minlon": -73.9098901, + "maxlat": 40.8059500, + "maxlon": -73.9089576 + }, + "nodes": [ + 42752947, + 9156970115, + 13247555768, + 42743481 + ], + "geometry": [ + { "lat": 40.8053092, "lon": -73.9098901 }, + { "lat": 40.8053655, "lon": -73.9097890 }, + { "lat": 40.8058944, "lon": -73.9090368 }, + { "lat": 40.8059500, "lon": -73.9089576 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "name_1": "Houghton Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "Houghton", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 930514751, + "bounds": { + "minlat": 40.8040521, + "minlon": -73.9072369, + "maxlat": 40.8053164, + "maxlon": -73.9059506 + }, + "nodes": [ + 42775302, + 13040880826, + 9910705320, + 42743491, + 9910705323, + 5859955136, + 42775307 + ], + "geometry": [ + { "lat": 40.8040521, "lon": -73.9072369 }, + { "lat": 40.8041089, "lon": -73.9071792 }, + { "lat": 40.8045652, "lon": -73.9067157 }, + { "lat": 40.8046195, "lon": -73.9066596 }, + { "lat": 40.8046753, "lon": -73.9066029 }, + { "lat": 40.8047116, "lon": -73.9065661 }, + { "lat": 40.8053164, "lon": -73.9059506 } + ], + "tags": { + "highway": "unclassified", + "name": "Walnut Avenue", + "name_1": "Rose Feiss Boulevard", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walnut", + "tiger:name_base_1": "Rose Feiss", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 930514752, + "bounds": { + "minlat": 40.8033695, + "minlon": -73.9072369, + "maxlat": 40.8040521, + "maxlon": -73.9060575 + }, + "nodes": [ + 42775302, + 9910669580, + 5859955121, + 7134805477, + 9910705317, + 9910705318, + 42770128 + ], + "geometry": [ + { "lat": 40.8040521, "lon": -73.9072369 }, + { "lat": 40.8040077, "lon": -73.9071578 }, + { "lat": 40.8039844, "lon": -73.9071185 }, + { "lat": 40.8036108, "lon": -73.9064732 }, + { "lat": 40.8034327, "lon": -73.9061663 }, + { "lat": 40.8034130, "lon": -73.9061324 }, + { "lat": 40.8033695, "lon": -73.9060575 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 140th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 930655882, + "bounds": { + "minlat": 40.7020473, + "minlon": -74.0101113, + "maxlat": 40.7022081, + "maxlon": -74.0100785 + }, + "nodes": [ + 42433846, + 11040382991, + 8629148770, + 12311367990, + 8629148769 + ], + "geometry": [ + { "lat": 40.7020473, "lon": -74.0100785 }, + { "lat": 40.7020988, "lon": -74.0100788 }, + { "lat": 40.7021344, "lon": -74.0100869 }, + { "lat": 40.7021881, "lon": -74.0101047 }, + { "lat": 40.7022081, "lon": -74.0101113 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 930655883, + "bounds": { + "minlat": 40.7034176, + "minlon": -74.0083692, + "maxlat": 40.7034754, + "maxlon": -74.0082883 + }, + "nodes": [ + 8629148771, + 11041048808, + 8629148773, + 8629148772 + ], + "geometry": [ + { "lat": 40.7034754, "lon": -74.0082883 }, + { "lat": 40.7034504, "lon": -74.0083231 }, + { "lat": 40.7034366, "lon": -74.0083423 }, + { "lat": 40.7034176, "lon": -74.0083692 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 930655884, + "bounds": { + "minlat": 40.7030434, + "minlon": -74.0083210, + "maxlat": 40.7030990, + "maxlon": -74.0082584 + }, + "nodes": [ + 8629148774, + 11041048807, + 8629148776, + 8629148775 + ], + "geometry": [ + { "lat": 40.7030434, "lon": -74.0082584 }, + { "lat": 40.7030742, "lon": -74.0082925 }, + { "lat": 40.7030868, "lon": -74.0083065 }, + { "lat": 40.7030990, "lon": -74.0083210 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 931476202, + "bounds": { + "minlat": 40.7462313, + "minlon": -73.9740538, + "maxlat": 40.7463171, + "maxlon": -73.9738776 + }, + "nodes": [ + 6166426228, + 6166333236 + ], + "geometry": [ + { "lat": 40.7462313, "lon": -73.9738776 }, + { "lat": 40.7463171, "lon": -73.9740538 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "destination:lanes": "Crosstown;37th Street|Uptown;3rd Avenue;38th to 41st Street", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "oneway": "yes", + "ref": "I 495", + "toll": "yes", + "turn:lanes": "slight_left|slight_right" + } +}, +{ + "type": "way", + "id": 931740714, + "bounds": { + "minlat": 40.7756731, + "minlon": -73.9862677, + "maxlat": 40.7758082, + "maxlon": -73.9859481 + }, + "nodes": [ + 8637876185, + 8637876186 + ], + "geometry": [ + { "lat": 40.7756731, "lon": -73.9859481 }, + { "lat": 40.7758082, "lon": -73.9862677 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "parking:lane:right": "no_parking", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 931740715, + "bounds": { + "minlat": 40.7750011, + "minlon": -73.9872396, + "maxlat": 40.7760235, + "maxlon": -73.9848096 + }, + "nodes": [ + 8637876184, + 6880596135, + 1722116497, + 3377383092, + 3377387900, + 3371304325, + 5117745453, + 42430989 + ], + "geometry": [ + { "lat": 40.7750011, "lon": -73.9848096 }, + { "lat": 40.7751379, "lon": -73.9851381 }, + { "lat": 40.7752387, "lon": -73.9853779 }, + { "lat": 40.7754027, "lon": -73.9857646 }, + { "lat": 40.7757884, "lon": -73.9866780 }, + { "lat": 40.7758845, "lon": -73.9869081 }, + { "lat": 40.7759698, "lon": -73.9871104 }, + { "lat": 40.7760235, "lon": -73.9872396 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 66th Street", + "name:ru": "Западная 66-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:left:restriction:conditional": "no_parking @ (Tu,Fr 08:00-09:30)", + "parking:left:restriction:reason:conditional": "street_cleaning @ (Tu,Fr 08:00-09:30)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 931740716, + "bounds": { + "minlat": 40.7757884, + "minlon": -73.9866780, + "maxlat": 40.7759073, + "maxlon": -73.9862677 + }, + "nodes": [ + 8637876186, + 3377387896, + 3377387897, + 3377387898, + 3377387899, + 8636941283, + 3377387900 + ], + "geometry": [ + { "lat": 40.7758082, "lon": -73.9862677 }, + { "lat": 40.7758843, "lon": -73.9864478 }, + { "lat": 40.7759073, "lon": -73.9865171 }, + { "lat": 40.7759007, "lon": -73.9865604 }, + { "lat": 40.7758843, "lon": -73.9866016 }, + { "lat": 40.7758629, "lon": -73.9866194 }, + { "lat": 40.7757884, "lon": -73.9866780 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "parking:lane:right": "parallel", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 931811545, + "bounds": { + "minlat": 40.7626124, + "minlon": -73.9654342, + "maxlat": 40.7626878, + "maxlon": -73.9653817 + }, + "nodes": [ + 8638499088, + 11336621693, + 8638499089 + ], + "geometry": [ + { "lat": 40.7626878, "lon": -73.9653817 }, + { "lat": 40.7626280, "lon": -73.9654232 }, + { "lat": 40.7626124, "lon": -73.9654342 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 932534345, + "bounds": { + "minlat": 40.7831895, + "minlon": -73.9486195, + "maxlat": 40.7832591, + "maxlon": -73.9485626 + }, + "nodes": [ + 8644420813, + 8644426517, + 8644420812 + ], + "geometry": [ + { "lat": 40.7831895, "lon": -73.9486195 }, + { "lat": 40.7832467, "lon": -73.9485727 }, + { "lat": 40.7832591, "lon": -73.9485626 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 932944326, + "bounds": { + "minlat": 40.7286179, + "minlon": -74.0053218, + "maxlat": 40.7293021, + "maxlon": -74.0052199 + }, + "nodes": [ + 8648032268, + 42436968, + 8307641953, + 42448563 + ], + "geometry": [ + { "lat": 40.7293021, "lon": -74.0052199 }, + { "lat": 40.7288513, "lon": -74.0052872 }, + { "lat": 40.7286746, "lon": -74.0053138 }, + { "lat": 40.7286179, "lon": -74.0053218 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 933665956, + "bounds": { + "minlat": 40.8017651, + "minlon": -73.9312131, + "maxlat": 40.8018771, + "maxlon": -73.9311119 + }, + "nodes": [ + 7641820943, + 8653755530 + ], + "geometry": [ + { "lat": 40.8017651, "lon": -73.9312131 }, + { "lat": 40.8018771, "lon": -73.9311119 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "maxspeed": "30 mph", + "name": "Willis Avenue Bridge", + "oneway": "yes", + "sidewalk": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)" + } +}, +{ + "type": "way", + "id": 934409425, + "bounds": { + "minlat": 40.7499861, + "minlon": -73.9957420, + "maxlat": 40.7503793, + "maxlon": -73.9954661 + }, + "nodes": [ + 7167585628, + 8660001943 + ], + "geometry": [ + { "lat": 40.7503793, "lon": -73.9954661 }, + { "lat": 40.7499861, "lon": -73.9957420 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 934729392, + "bounds": { + "minlat": 40.7370137, + "minlon": -73.9447897, + "maxlat": 40.7377435, + "maxlon": -73.9427665 + }, + "nodes": [ + 8339222842, + 8339222841, + 8339222840, + 279156836 + ], + "geometry": [ + { "lat": 40.7377435, "lon": -73.9447897 }, + { "lat": 40.7371961, "lon": -73.9432868 }, + { "lat": 40.7370915, "lon": -73.9430031 }, + { "lat": 40.7370137, "lon": -73.9427665 } + ], + "tags": { + "access": "no", + "highway": "service", + "name": "Railroad Avenue" + } +}, +{ + "type": "way", + "id": 934735432, + "bounds": { + "minlat": 40.8214425, + "minlon": -74.0114270, + "maxlat": 40.8221571, + "maxlon": -74.0109807 + }, + "nodes": [ + 8662501705, + 8662501706 + ], + "geometry": [ + { "lat": 40.8221571, "lon": -74.0114270 }, + { "lat": 40.8214425, "lon": -74.0109807 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 934735433, + "bounds": { + "minlat": 40.8214657, + "minlon": -74.0112191, + "maxlat": 40.8222293, + "maxlon": -74.0107330 + }, + "nodes": [ + 8662501707, + 8662501708 + ], + "geometry": [ + { "lat": 40.8222293, "lon": -74.0112191 }, + { "lat": 40.8214657, "lon": -74.0107330 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 934765522, + "bounds": { + "minlat": 40.7837682, + "minlon": -73.9128152, + "maxlat": 40.7840652, + "maxlon": -73.9124546 + }, + "nodes": [ + 42825956, + 7776763766, + 9448628724, + 8662780838 + ], + "geometry": [ + { "lat": 40.7840652, "lon": -73.9124546 }, + { "lat": 40.7840032, "lon": -73.9125299 }, + { "lat": 40.7839665, "lon": -73.9125745 }, + { "lat": 40.7837682, "lon": -73.9128152 } + ], + "tags": { + "bicycle": "yes", + "bicycle:lanes:backward": "designated|no|designated", + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "21st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11106", + "tiger:zip_right": "11106", + "vehicle:lanes:backward": "yes|yes|no" + } +}, +{ + "type": "way", + "id": 934765528, + "bounds": { + "minlat": 40.7825621, + "minlon": -73.9142881, + "maxlat": 40.7837682, + "maxlon": -73.9128152 + }, + "nodes": [ + 8662780838, + 3778313801 + ], + "geometry": [ + { "lat": 40.7837682, "lon": -73.9128152 }, + { "lat": 40.7825621, "lon": -73.9142881 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "21st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11106", + "tiger:zip_right": "11106" + } +}, +{ + "type": "way", + "id": 934765529, + "bounds": { + "minlat": 40.7822953, + "minlon": -73.9146008, + "maxlat": 40.7825621, + "maxlon": -73.9142881 + }, + "nodes": [ + 3778313801, + 11649832553, + 7787345522, + 3778313813 + ], + "geometry": [ + { "lat": 40.7825621, "lon": -73.9142881 }, + { "lat": 40.7825029, "lon": -73.9143568 }, + { "lat": 40.7823562, "lon": -73.9145272 }, + { "lat": 40.7822953, "lon": -73.9146008 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "21st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11106", + "tiger:zip_right": "11106", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 934765530, + "bounds": { + "minlat": 40.7820366, + "minlon": -73.9149134, + "maxlat": 40.7822953, + "maxlon": -73.9146008 + }, + "nodes": [ + 3778313813, + 7787345550, + 11649832554, + 2302449632 + ], + "geometry": [ + { "lat": 40.7822953, "lon": -73.9146008 }, + { "lat": 40.7822329, "lon": -73.9146762 }, + { "lat": 40.7821038, "lon": -73.9148322 }, + { "lat": 40.7820366, "lon": -73.9149134 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "21st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11106", + "tiger:zip_right": "11106", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 935221618, + "bounds": { + "minlat": 40.8177638, + "minlon": -74.0024382, + "maxlat": 40.8181092, + "maxlon": -74.0021234 + }, + "nodes": [ + 8666507209, + 8666507210 + ], + "geometry": [ + { "lat": 40.8177638, "lon": -74.0024382 }, + { "lat": 40.8181092, "lon": -74.0021234 } + ], + "tags": { + "hgv": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 935228363, + "bounds": { + "minlat": 40.7592486, + "minlon": -74.0031619, + "maxlat": 40.7595683, + "maxlon": -74.0029273 + }, + "nodes": [ + 247084436, + 8666573688 + ], + "geometry": [ + { "lat": 40.7592486, "lon": -74.0031619 }, + { "lat": 40.7595683, "lon": -74.0029273 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 935228364, + "bounds": { + "minlat": 40.7614444, + "minlon": -74.0018370, + "maxlat": 40.7614840, + "maxlon": -74.0015378 + }, + "nodes": [ + 247080924, + 12154605923, + 593854269, + 9143503703, + 9143503702, + 593854267 + ], + "geometry": [ + { "lat": 40.7614566, "lon": -74.0018370 }, + { "lat": 40.7614473, "lon": -74.0017708 }, + { "lat": 40.7614444, "lon": -74.0017364 }, + { "lat": 40.7614468, "lon": -74.0016973 }, + { "lat": 40.7614538, "lon": -74.0016585 }, + { "lat": 40.7614840, "lon": -74.0015378 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 935228365, + "bounds": { + "minlat": 40.7601045, + "minlon": -74.0027594, + "maxlat": 40.7601965, + "maxlon": -74.0025334 + }, + "nodes": [ + 247085079, + 42453541 + ], + "geometry": [ + { "lat": 40.7601965, "lon": -74.0027594 }, + { "lat": 40.7601045, "lon": -74.0025334 } + ], + "tags": { + "highway": "service", + "name": "West 39th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "39th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "aerial", + "tiger:zip_left": "10018", + "tiger:zip_right": "10018" + } +}, +{ + "type": "way", + "id": 935228366, + "bounds": { + "minlat": 40.7592811, + "minlon": -74.0035421, + "maxlat": 40.7593320, + "maxlon": -74.0034288 + }, + "nodes": [ + 1760566988, + 12154605947 + ], + "geometry": [ + { "lat": 40.7593320, "lon": -74.0035421 }, + { "lat": 40.7592811, "lon": -74.0034288 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 935228367, + "bounds": { + "minlat": 40.7605615, + "minlon": -74.0024285, + "maxlat": 40.7606551, + "maxlon": -74.0022030 + }, + "nodes": [ + 593840148, + 247084442 + ], + "geometry": [ + { "lat": 40.7605615, "lon": -74.0022030 }, + { "lat": 40.7606551, "lon": -74.0024285 } + ], + "tags": { + "destination": "Pier 79 Ferry", + "highway": "service", + "lanes": "1", + "name": "West 40th Street", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 935249675, + "bounds": { + "minlat": 40.8113192, + "minlon": -73.9284174, + "maxlat": 40.8115242, + "maxlon": -73.9280879 + }, + "nodes": [ + 8666778901, + 11882279944, + 8666778902, + 8666778903, + 8666778904 + ], + "geometry": [ + { "lat": 40.8115242, "lon": -73.9284174 }, + { "lat": 40.8114910, "lon": -73.9283657 }, + { "lat": 40.8114849, "lon": -73.9283562 }, + { "lat": 40.8114678, "lon": -73.9282863 }, + { "lat": 40.8113192, "lon": -73.9280879 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 935324289, + "bounds": { + "minlat": 40.7139723, + "minlon": -73.9217661, + "maxlat": 40.7157618, + "maxlon": -73.9205795 + }, + "nodes": [ + 8667656774, + 8667656775, + 8667656776, + 8667656777, + 8667656778, + 8667656779, + 8667656780, + 8667656781, + 8667656782, + 8667656783, + 8667656784, + 8667656785, + 8667656786, + 7712065395 + ], + "geometry": [ + { "lat": 40.7139723, "lon": -73.9205795 }, + { "lat": 40.7140611, "lon": -73.9207728 }, + { "lat": 40.7141532, "lon": -73.9209974 }, + { "lat": 40.7143910, "lon": -73.9214474 }, + { "lat": 40.7144921, "lon": -73.9214965 }, + { "lat": 40.7146068, "lon": -73.9215093 }, + { "lat": 40.7147607, "lon": -73.9214847 }, + { "lat": 40.7149424, "lon": -73.9213601 }, + { "lat": 40.7149924, "lon": -73.9213638 }, + { "lat": 40.7150661, "lon": -73.9214174 }, + { "lat": 40.7152662, "lon": -73.9215220 }, + { "lat": 40.7155702, "lon": -73.9217300 }, + { "lat": 40.7156457, "lon": -73.9217661 }, + { "lat": 40.7157618, "lon": -73.9217200 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 935324290, + "bounds": { + "minlat": 40.7148460, + "minlon": -73.9213601, + "maxlat": 40.7155042, + "maxlon": -73.9205780 + }, + "nodes": [ + 7706126110, + 8667656787, + 8667656788, + 8667656789, + 8667656790, + 8667656781 + ], + "geometry": [ + { "lat": 40.7155042, "lon": -73.9205780 }, + { "lat": 40.7154832, "lon": -73.9205846 }, + { "lat": 40.7149834, "lon": -73.9207678 }, + { "lat": 40.7148566, "lon": -73.9208794 }, + { "lat": 40.7148460, "lon": -73.9210212 }, + { "lat": 40.7149424, "lon": -73.9213601 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 935345595, + "bounds": { + "minlat": 40.8518196, + "minlon": -74.0185874, + "maxlat": 40.8519950, + "maxlon": -74.0180231 + }, + "nodes": [ + 5508080965, + 8667920622, + 8667920623, + 8667920624, + 8667920625, + 8667920626 + ], + "geometry": [ + { "lat": 40.8519950, "lon": -74.0185874 }, + { "lat": 40.8519512, "lon": -74.0185382 }, + { "lat": 40.8519252, "lon": -74.0184526 }, + { "lat": 40.8518931, "lon": -74.0183346 }, + { "lat": 40.8518268, "lon": -74.0180765 }, + { "lat": 40.8518196, "lon": -74.0180231 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 935378594, + "bounds": { + "minlat": 40.8480402, + "minlon": -73.9714189, + "maxlat": 40.8484310, + "maxlon": -73.9711116 + }, + "nodes": [ + 8668190862, + 8668190863, + 8668190864, + 8668190865, + 8668190866 + ], + "geometry": [ + { "lat": 40.8484310, "lon": -73.9711116 }, + { "lat": 40.8483613, "lon": -73.9711696 }, + { "lat": 40.8482123, "lon": -73.9713013 }, + { "lat": 40.8481134, "lon": -73.9713701 }, + { "lat": 40.8480402, "lon": -73.9714189 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 935388506, + "bounds": { + "minlat": 40.8653443, + "minlon": -73.9590412, + "maxlat": 40.8656180, + "maxlon": -73.9585260 + }, + "nodes": [ + 8668260484, + 8668260485, + 8668260486 + ], + "geometry": [ + { "lat": 40.8653443, "lon": -73.9585260 }, + { "lat": 40.8655555, "lon": -73.9589268 }, + { "lat": 40.8656180, "lon": -73.9590412 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 935393089, + "bounds": { + "minlat": 40.8217714, + "minlon": -73.9353578, + "maxlat": 40.8225442, + "maxlon": -73.9350754 + }, + "nodes": [ + 8668338838, + 9972824961, + 8668338839, + 8668338840, + 13703615561, + 13703615557, + 13703615560, + 13703615558, + 13703615559, + 13703615556, + 8668338841, + 13703615555, + 13703615565, + 13703615554, + 13703615564 + ], + "geometry": [ + { "lat": 40.8217714, "lon": -73.9353578 }, + { "lat": 40.8218281, "lon": -73.9353154 }, + { "lat": 40.8218915, "lon": -73.9352680 }, + { "lat": 40.8220688, "lon": -73.9351376 }, + { "lat": 40.8221408, "lon": -73.9350935 }, + { "lat": 40.8221885, "lon": -73.9350801 }, + { "lat": 40.8222413, "lon": -73.9350754 }, + { "lat": 40.8222697, "lon": -73.9350767 }, + { "lat": 40.8223118, "lon": -73.9350855 }, + { "lat": 40.8223616, "lon": -73.9351049 }, + { "lat": 40.8223975, "lon": -73.9351232 }, + { "lat": 40.8224422, "lon": -73.9351170 }, + { "lat": 40.8224732, "lon": -73.9351351 }, + { "lat": 40.8225082, "lon": -73.9351934 }, + { "lat": 40.8225442, "lon": -73.9352725 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 935393954, + "bounds": { + "minlat": 40.8369090, + "minlon": -74.0081671, + "maxlat": 40.8373134, + "maxlon": -74.0078363 + }, + "nodes": [ + 8668342168, + 8668342169, + 8668342170 + ], + "geometry": [ + { "lat": 40.8369090, "lon": -74.0081671 }, + { "lat": 40.8370321, "lon": -74.0080895 }, + { "lat": 40.8373134, "lon": -74.0078363 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 935394166, + "bounds": { + "minlat": 40.8466182, + "minlon": -74.0063674, + "maxlat": 40.8485796, + "maxlon": -74.0054028 + }, + "nodes": [ + 2707984826, + 8668329677, + 8668329678 + ], + "geometry": [ + { "lat": 40.8466182, "lon": -74.0063674 }, + { "lat": 40.8468498, "lon": -74.0061400 }, + { "lat": 40.8485796, "lon": -74.0054028 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 935394276, + "bounds": { + "minlat": 40.8277475, + "minlon": -74.0110639, + "maxlat": 40.8282910, + "maxlon": -74.0109943 + }, + "nodes": [ + 8668344870, + 8668344871, + 5748432838 + ], + "geometry": [ + { "lat": 40.8277475, "lon": -74.0110639 }, + { "lat": 40.8280181, "lon": -74.0110609 }, + { "lat": 40.8282910, "lon": -74.0109943 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 935394337, + "bounds": { + "minlat": 40.8566683, + "minlon": -73.9826722, + "maxlat": 40.8573173, + "maxlon": -73.9820283 + }, + "nodes": [ + 8668349674, + 8668349675, + 8668349676, + 8668349684, + 8668349677, + 8668349680, + 8668349681, + 8668349682, + 8668349683, + 8668349684 + ], + "geometry": [ + { "lat": 40.8566683, "lon": -73.9826722 }, + { "lat": 40.8568184, "lon": -73.9825148 }, + { "lat": 40.8569126, "lon": -73.9824137 }, + { "lat": 40.8569536, "lon": -73.9823405 }, + { "lat": 40.8570142, "lon": -73.9822325 }, + { "lat": 40.8570767, "lon": -73.9821647 }, + { "lat": 40.8572380, "lon": -73.9820283 }, + { "lat": 40.8573173, "lon": -73.9821612 }, + { "lat": 40.8570177, "lon": -73.9824567 }, + { "lat": 40.8569536, "lon": -73.9823405 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 935394338, + "bounds": { + "minlat": 40.8567122, + "minlon": -73.9825148, + "maxlat": 40.8568184, + "maxlon": -73.9823345 + }, + "nodes": [ + 8668349675, + 8668349679 + ], + "geometry": [ + { "lat": 40.8568184, "lon": -73.9825148 }, + { "lat": 40.8567122, "lon": -73.9823345 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 935394339, + "bounds": { + "minlat": 40.8570038, + "minlon": -73.9821647, + "maxlat": 40.8570767, + "maxlon": -73.9820383 + }, + "nodes": [ + 299171734, + 8668349680 + ], + "geometry": [ + { "lat": 40.8570038, "lon": -73.9820383 }, + { "lat": 40.8570767, "lon": -73.9821647 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 935395029, + "bounds": { + "minlat": 40.8310960, + "minlon": -73.9426412, + "maxlat": 40.8313483, + "maxlon": -73.9424570 + }, + "nodes": [ + 8668349549, + 11193685095, + 8668349550, + 8668349551 + ], + "geometry": [ + { "lat": 40.8313483, "lon": -73.9424570 }, + { "lat": 40.8312593, "lon": -73.9425204 }, + { "lat": 40.8312267, "lon": -73.9425436 }, + { "lat": 40.8310960, "lon": -73.9426412 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 935395030, + "bounds": { + "minlat": 40.8309163, + "minlon": -73.9425035, + "maxlat": 40.8312900, + "maxlon": -73.9423181 + }, + "nodes": [ + 8668349552, + 11193685094, + 8668349553, + 8668349554, + 8668349555, + 8668349556, + 8668349557 + ], + "geometry": [ + { "lat": 40.8312900, "lon": -73.9423181 }, + { "lat": 40.8311997, "lon": -73.9423821 }, + { "lat": 40.8311302, "lon": -73.9424315 }, + { "lat": 40.8310555, "lon": -73.9424901 }, + { "lat": 40.8310275, "lon": -73.9425035 }, + { "lat": 40.8309948, "lon": -73.9424973 }, + { "lat": 40.8309163, "lon": -73.9423215 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 935395748, + "bounds": { + "minlat": 40.8644264, + "minlon": -73.9928962, + "maxlat": 40.8647865, + "maxlon": -73.9923600 + }, + "nodes": [ + 8668363878, + 8668363879, + 8668363880 + ], + "geometry": [ + { "lat": 40.8644264, "lon": -73.9928962 }, + { "lat": 40.8647865, "lon": -73.9926102 }, + { "lat": 40.8646773, "lon": -73.9923600 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 935395772, + "bounds": { + "minlat": 40.6999199, + "minlon": -73.9800829, + "maxlat": 40.7001673, + "maxlon": -73.9800674 + }, + "nodes": [ + 7707722460, + 8668364468, + 8668364466 + ], + "geometry": [ + { "lat": 40.7001673, "lon": -73.9800674 }, + { "lat": 40.7001093, "lon": -73.9800710 }, + { "lat": 40.6999199, "lon": -73.9800829 } + ], + "tags": { + "access": "destination", + "highway": "service" + } +}, +{ + "type": "way", + "id": 935419757, + "bounds": { + "minlat": 40.8032124, + "minlon": -73.9952065, + "maxlat": 40.8036240, + "maxlon": -73.9950919 + }, + "nodes": [ + 8668510092, + 8668510093, + 8668510094, + 8668510095, + 8668510096 + ], + "geometry": [ + { "lat": 40.8032124, "lon": -73.9951182 }, + { "lat": 40.8033205, "lon": -73.9951862 }, + { "lat": 40.8033744, "lon": -73.9952065 }, + { "lat": 40.8034188, "lon": -73.9951981 }, + { "lat": 40.8036240, "lon": -73.9950919 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 935435712, + "bounds": { + "minlat": 40.7148806, + "minlon": -73.9427303, + "maxlat": 40.7150716, + "maxlon": -73.9421615 + }, + "nodes": [ + 8668750429, + 8668750430, + 8668750431, + 8668750432, + 8668750436, + 8668750433, + 9351530341, + 9695846851, + 7722378710 + ], + "geometry": [ + { "lat": 40.7148806, "lon": -73.9427303 }, + { "lat": 40.7148806, "lon": -73.9426893 }, + { "lat": 40.7148833, "lon": -73.9426600 }, + { "lat": 40.7148840, "lon": -73.9425828 }, + { "lat": 40.7148995, "lon": -73.9425297 }, + { "lat": 40.7149087, "lon": -73.9424984 }, + { "lat": 40.7149886, "lon": -73.9423331 }, + { "lat": 40.7150140, "lon": -73.9422863 }, + { "lat": 40.7150716, "lon": -73.9421615 } + ], + "tags": { + "hgv": "delivery", + "highway": "residential", + "name": "Maspeth Avenue", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 935439850, + "bounds": { + "minlat": 40.8792218, + "minlon": -73.9645591, + "maxlat": 40.8798262, + "maxlon": -73.9642042 + }, + "nodes": [ + 103224947, + 8668744262, + 103224948, + 8668744252, + 8668744253, + 8668744254, + 8668744255, + 8668744256, + 8668744257, + 8668744258, + 8668744259, + 8668744260, + 8668744261 + ], + "geometry": [ + { "lat": 40.8798262, "lon": -73.9645200 }, + { "lat": 40.8797495, "lon": -73.9644318 }, + { "lat": 40.8797337, "lon": -73.9643876 }, + { "lat": 40.8796918, "lon": -73.9642699 }, + { "lat": 40.8796384, "lon": -73.9642042 }, + { "lat": 40.8795480, "lon": -73.9642101 }, + { "lat": 40.8794709, "lon": -73.9642483 }, + { "lat": 40.8793441, "lon": -73.9643042 }, + { "lat": 40.8792759, "lon": -73.9643385 }, + { "lat": 40.8792315, "lon": -73.9643993 }, + { "lat": 40.8792218, "lon": -73.9644483 }, + { "lat": 40.8792493, "lon": -73.9645473 }, + { "lat": 40.8792915, "lon": -73.9645591 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Woodland", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 935446543, + "bounds": { + "minlat": 40.8494840, + "minlon": -74.0045056, + "maxlat": 40.8496228, + "maxlon": -74.0041091 + }, + "nodes": [ + 8668851650, + 8668851651, + 103133871 + ], + "geometry": [ + { "lat": 40.8496228, "lon": -74.0045056 }, + { "lat": 40.8495080, "lon": -74.0041695 }, + { "lat": 40.8494840, "lon": -74.0041091 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 935449691, + "bounds": { + "minlat": 40.8617689, + "minlon": -73.9628939, + "maxlat": 40.8618313, + "maxlon": -73.9627812 + }, + "nodes": [ + 8668889390, + 8668889391 + ], + "geometry": [ + { "lat": 40.8617689, "lon": -73.9627812 }, + { "lat": 40.8618313, "lon": -73.9628939 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 935476637, + "bounds": { + "minlat": 40.7745383, + "minlon": -73.9180587, + "maxlat": 40.7762422, + "maxlon": -73.9159964 + }, + "nodes": [ + 8669080481, + 8669080482, + 8669080483, + 8669080484, + 8669080485, + 8669080486, + 8669080487, + 13149325726, + 8669080489, + 8669080491, + 8669080493, + 8669080494, + 8669080495 + ], + "geometry": [ + { "lat": 40.7762422, "lon": -73.9162697 }, + { "lat": 40.7761932, "lon": -73.9162224 }, + { "lat": 40.7760519, "lon": -73.9160296 }, + { "lat": 40.7760270, "lon": -73.9160021 }, + { "lat": 40.7760090, "lon": -73.9159964 }, + { "lat": 40.7759849, "lon": -73.9160087 }, + { "lat": 40.7757654, "lon": -73.9162701 }, + { "lat": 40.7753992, "lon": -73.9167084 }, + { "lat": 40.7745918, "lon": -73.9176551 }, + { "lat": 40.7745383, "lon": -73.9177210 }, + { "lat": 40.7745960, "lon": -73.9177953 }, + { "lat": 40.7747358, "lon": -73.9180018 }, + { "lat": 40.7747738, "lon": -73.9180587 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 935563658, + "bounds": { + "minlat": 40.7575242, + "minlon": -73.9883815, + "maxlat": 40.7575941, + "maxlon": -73.9883345 + }, + "nodes": [ + 8669764313, + 8669764315, + 8669764314 + ], + "geometry": [ + { "lat": 40.7575242, "lon": -73.9883815 }, + { "lat": 40.7575828, "lon": -73.9883419 }, + { "lat": 40.7575941, "lon": -73.9883345 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 935686982, + "bounds": { + "minlat": 40.7251870, + "minlon": -73.9203240, + "maxlat": 40.7254345, + "maxlon": -73.9197153 + }, + "nodes": [ + 8670712316, + 8670752321, + 8670752317, + 8670752318, + 8670752319, + 8670752320 + ], + "geometry": [ + { "lat": 40.7253155, "lon": -73.9197153 }, + { "lat": 40.7253599, "lon": -73.9198742 }, + { "lat": 40.7254345, "lon": -73.9201416 }, + { "lat": 40.7254286, "lon": -73.9202045 }, + { "lat": 40.7253994, "lon": -73.9202353 }, + { "lat": 40.7251870, "lon": -73.9203240 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 936146979, + "bounds": { + "minlat": 40.7786010, + "minlon": -73.9817596, + "maxlat": 40.7786634, + "maxlon": -73.9816100 + }, + "nodes": [ + 3235708624, + 6207264908 + ], + "geometry": [ + { "lat": 40.7786634, "lon": -73.9817596 }, + { "lat": 40.7786010, "lon": -73.9816100 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "name_1": "West 72 Street", + "surface": "asphalt", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 936294333, + "bounds": { + "minlat": 40.7605358, + "minlon": -73.9780353, + "maxlat": 40.7606430, + "maxlon": -73.9779604 + }, + "nodes": [ + 8675870231, + 10173210350, + 8675870232 + ], + "geometry": [ + { "lat": 40.7605358, "lon": -73.9780353 }, + { "lat": 40.7606001, "lon": -73.9779904 }, + { "lat": 40.7606430, "lon": -73.9779604 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 936399130, + "bounds": { + "minlat": 40.7143600, + "minlon": -73.9281232, + "maxlat": 40.7151676, + "maxlon": -73.9265925 + }, + "nodes": [ + 8676803822, + 8805602718, + 8676803841, + 8676803823, + 8676803824, + 8676803825, + 8676803826, + 8676803827, + 8676803828, + 8676803829, + 8676803830, + 8676803831, + 8676803832, + 8676803833, + 8676803843, + 8676803834, + 8676803835, + 8676803836, + 8676803837, + 8676803842, + 8805602717, + 8676803838 + ], + "geometry": [ + { "lat": 40.7151676, "lon": -73.9268237 }, + { "lat": 40.7151446, "lon": -73.9269180 }, + { "lat": 40.7151378, "lon": -73.9269460 }, + { "lat": 40.7149883, "lon": -73.9275583 }, + { "lat": 40.7148737, "lon": -73.9280335 }, + { "lat": 40.7148457, "lon": -73.9280731 }, + { "lat": 40.7148037, "lon": -73.9281061 }, + { "lat": 40.7147246, "lon": -73.9281232 }, + { "lat": 40.7146395, "lon": -73.9281219 }, + { "lat": 40.7145012, "lon": -73.9280591 }, + { "lat": 40.7144405, "lon": -73.9279939 }, + { "lat": 40.7144064, "lon": -73.9278878 }, + { "lat": 40.7143909, "lon": -73.9277923 }, + { "lat": 40.7143600, "lon": -73.9274502 }, + { "lat": 40.7143618, "lon": -73.9274294 }, + { "lat": 40.7143734, "lon": -73.9272891 }, + { "lat": 40.7144234, "lon": -73.9270963 }, + { "lat": 40.7145085, "lon": -73.9269590 }, + { "lat": 40.7145555, "lon": -73.9268481 }, + { "lat": 40.7145979, "lon": -73.9267203 }, + { "lat": 40.7146086, "lon": -73.9266880 }, + { "lat": 40.7146402, "lon": -73.9265925 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 936399131, + "bounds": { + "minlat": 40.7144496, + "minlon": -73.9282775, + "maxlat": 40.7145012, + "maxlon": -73.9280591 + }, + "nodes": [ + 8676803839, + 8805602719, + 8676803840, + 8676803829 + ], + "geometry": [ + { "lat": 40.7144496, "lon": -73.9282775 }, + { "lat": 40.7144731, "lon": -73.9281730 }, + { "lat": 40.7144772, "lon": -73.9281547 }, + { "lat": 40.7145012, "lon": -73.9280591 } + ], + "tags": { + "access": "no", + "hgv": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 936399132, + "bounds": { + "minlat": 40.7142223, + "minlon": -73.9274700, + "maxlat": 40.7143618, + "maxlon": -73.9274294 + }, + "nodes": [ + 8676803843, + 8676803845, + 8805602720, + 8676803844 + ], + "geometry": [ + { "lat": 40.7143618, "lon": -73.9274294 }, + { "lat": 40.7143156, "lon": -73.9274428 }, + { "lat": 40.7143005, "lon": -73.9274472 }, + { "lat": 40.7142223, "lon": -73.9274700 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 936528341, + "bounds": { + "minlat": 40.7895053, + "minlon": -73.9264094, + "maxlat": 40.7899969, + "maxlon": -73.9258576 + }, + "nodes": [ + 1242159811, + 277482209, + 7881720140, + 277482211 + ], + "geometry": [ + { "lat": 40.7899969, "lon": -73.9258576 }, + { "lat": 40.7899288, "lon": -73.9259338 }, + { "lat": 40.7895898, "lon": -73.9263182 }, + { "lat": 40.7895053, "lon": -73.9264094 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "lanes": "2", + "lcn": "yes", + "name": "Central Road", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 936539647, + "bounds": { + "minlat": 40.7472995, + "minlon": -73.9758338, + "maxlat": 40.7478756, + "maxlon": -73.9754367 + }, + "nodes": [ + 42426816, + 12187390434, + 9987259763, + 12187390433, + 12187390435, + 12187390436, + 12187390437, + 9987259792, + 9987259764, + 42453999 + ], + "geometry": [ + { "lat": 40.7472995, "lon": -73.9758338 }, + { "lat": 40.7473134, "lon": -73.9758265 }, + { "lat": 40.7473275, "lon": -73.9758167 }, + { "lat": 40.7473418, "lon": -73.9758055 }, + { "lat": 40.7475645, "lon": -73.9756430 }, + { "lat": 40.7476652, "lon": -73.9755743 }, + { "lat": 40.7477417, "lon": -73.9755241 }, + { "lat": 40.7478004, "lon": -73.9754850 }, + { "lat": 40.7478270, "lon": -73.9754679 }, + { "lat": 40.7478756, "lon": -73.9754367 } + ], + "tags": { + "destination": "Uptown;38th to 41st Street", + "highway": "unclassified", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Tunnel Exit Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through;right" + } +}, +{ + "type": "way", + "id": 936539648, + "bounds": { + "minlat": 40.7472945, + "minlon": -73.9754367, + "maxlat": 40.7478756, + "maxlon": -73.9740550 + }, + "nodes": [ + 42453999, + 9987259777, + 5240042136, + 4759939161, + 4759939157, + 12187390440, + 7640871315, + 42442931 + ], + "geometry": [ + { "lat": 40.7478756, "lon": -73.9754367 }, + { "lat": 40.7478448, "lon": -73.9753635 }, + { "lat": 40.7477071, "lon": -73.9750359 }, + { "lat": 40.7476262, "lon": -73.9748436 }, + { "lat": 40.7474857, "lon": -73.9745096 }, + { "lat": 40.7473767, "lon": -73.9742504 }, + { "lat": 40.7473517, "lon": -73.9741895 }, + { "lat": 40.7472945, "lon": -73.9740550 } + ], + "tags": { + "alt_name": "E 38th st", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 38th Street", + "name:ru": "Восточная 38-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 936649910, + "bounds": { + "minlat": 40.7536607, + "minlon": -73.9927191, + "maxlat": 40.7538382, + "maxlon": -73.9924965 + }, + "nodes": [ + 2709402470, + 7342984960, + 7342984959, + 7342984958, + 7342984957, + 7342984956, + 11006331921, + 2709402470 + ], + "geometry": [ + { "lat": 40.7536607, "lon": -73.9925981 }, + { "lat": 40.7537114, "lon": -73.9927191 }, + { "lat": 40.7538036, "lon": -73.9926514 }, + { "lat": 40.7537910, "lon": -73.9926217 }, + { "lat": 40.7538382, "lon": -73.9925872 }, + { "lat": 40.7537999, "lon": -73.9924965 }, + { "lat": 40.7537340, "lon": -73.9925446 }, + { "lat": 40.7536607, "lon": -73.9925981 } + ], + "tags": { + "access": "yes", + "area": "yes", + "highway": "pedestrian", + "opening_hours": "24/7", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 936791374, + "bounds": { + "minlat": 40.7700484, + "minlon": -73.9342460, + "maxlat": 40.7710290, + "maxlon": -73.9305722 + }, + "nodes": [ + 42810473, + 11308734559, + 2302476356, + 2302476355, + 11308734566, + 42810470, + 11308734561, + 7952912067, + 11308734544, + 42810468 + ], + "geometry": [ + { "lat": 40.7700484, "lon": -73.9305722 }, + { "lat": 40.7700907, "lon": -73.9306651 }, + { "lat": 40.7703946, "lon": -73.9313327 }, + { "lat": 40.7705072, "lon": -73.9318826 }, + { "lat": 40.7705265, "lon": -73.9319660 }, + { "lat": 40.7705450, "lon": -73.9320460 }, + { "lat": 40.7705642, "lon": -73.9321331 }, + { "lat": 40.7708091, "lon": -73.9332464 }, + { "lat": 40.7710082, "lon": -73.9341516 }, + { "lat": 40.7710290, "lon": -73.9342460 } + ], + "tags": { + "highway": "residential", + "name": "30th Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 936791375, + "bounds": { + "minlat": 40.7690600, + "minlon": -73.9305722, + "maxlat": 40.7700484, + "maxlon": -73.9284710 + }, + "nodes": [ + 42810477, + 6452789091, + 13702920777, + 3570422537, + 11308734560, + 42810473 + ], + "geometry": [ + { "lat": 40.7690600, "lon": -73.9284710 }, + { "lat": 40.7691228, "lon": -73.9286065 }, + { "lat": 40.7694239, "lon": -73.9292459 }, + { "lat": 40.7699873, "lon": -73.9304422 }, + { "lat": 40.7700023, "lon": -73.9304742 }, + { "lat": 40.7700484, "lon": -73.9305722 } + ], + "tags": { + "alt_name": "Ann Buehler Way", + "highway": "residential", + "name": "30th Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 938246255, + "bounds": { + "minlat": 40.8472645, + "minlon": -73.9424919, + "maxlat": 40.8473340, + "maxlon": -73.9423757 + }, + "nodes": [ + 8692185209, + 8692185205, + 8692185206, + 8692185207, + 8692185208 + ], + "geometry": [ + { "lat": 40.8473340, "lon": -73.9423757 }, + { "lat": 40.8473320, "lon": -73.9424133 }, + { "lat": 40.8473218, "lon": -73.9424461 }, + { "lat": 40.8473031, "lon": -73.9424696 }, + { "lat": 40.8472645, "lon": -73.9424919 } + ], + "tags": { + "access": "private", + "bridge": "yes", + "covered": "no", + "highway": "service", + "layer": "1", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 938246256, + "bounds": { + "minlat": 40.8473224, + "minlon": -73.9423757, + "maxlat": 40.8473340, + "maxlon": -73.9422763 + }, + "nodes": [ + 2419285541, + 8692185204, + 8692185209 + ], + "geometry": [ + { "lat": 40.8473224, "lon": -73.9422763 }, + { "lat": 40.8473317, "lon": -73.9423416 }, + { "lat": 40.8473340, "lon": -73.9423757 } + ], + "tags": { + "access": "private", + "covered": "no", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 938601996, + "bounds": { + "minlat": 40.7698546, + "minlon": -73.9843169, + "maxlat": 40.7704797, + "maxlon": -73.9838597 + }, + "nodes": [ + 42421974, + 9904544292, + 12371632060, + 10046259420, + 1241742627 + ], + "geometry": [ + { "lat": 40.7704797, "lon": -73.9838597 }, + { "lat": 40.7704196, "lon": -73.9839039 }, + { "lat": 40.7701696, "lon": -73.9840869 }, + { "lat": 40.7699435, "lon": -73.9842524 }, + { "lat": 40.7698546, "lon": -73.9843169 } + ], + "tags": { + "access": "yes", + "covered": "no", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 938601999, + "bounds": { + "minlat": 40.7704797, + "minlon": -73.9838597, + "maxlat": 40.7707006, + "maxlon": -73.9836980 + }, + "nodes": [ + 8695222692, + 9904596324, + 42421974 + ], + "geometry": [ + { "lat": 40.7707006, "lon": -73.9836980 }, + { "lat": 40.7705452, "lon": -73.9838117 }, + { "lat": 40.7704797, "lon": -73.9838597 } + ], + "tags": { + "access": "yes", + "covered": "no", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 938878491, + "bounds": { + "minlat": 40.8098839, + "minlon": -73.9288715, + "maxlat": 40.8099198, + "maxlon": -73.9287765 + }, + "nodes": [ + 7554088551, + 7554088550 + ], + "geometry": [ + { "lat": 40.8099198, "lon": -73.9288715 }, + { "lat": 40.8098839, "lon": -73.9287765 } + ], + "tags": { + "highway": "residential", + "name": "East 136th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "136th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 938878492, + "bounds": { + "minlat": 40.8097910, + "minlon": -73.9291007, + "maxlat": 40.8099198, + "maxlon": -73.9288715 + }, + "nodes": [ + 7554088551, + 9163759298, + 8392364288 + ], + "geometry": [ + { "lat": 40.8099198, "lon": -73.9288715 }, + { "lat": 40.8098494, "lon": -73.9290129 }, + { "lat": 40.8097910, "lon": -73.9291007 } + ], + "tags": { + "alt_name": "Third Avenue", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "OSM US TIGER 2012 Roads Overly", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 938878493, + "bounds": { + "minlat": 40.8096310, + "minlon": -73.9293273, + "maxlat": 40.8097910, + "maxlon": -73.9291007 + }, + "nodes": [ + 8392364288, + 595801157 + ], + "geometry": [ + { "lat": 40.8097910, "lon": -73.9291007 }, + { "lat": 40.8096310, "lon": -73.9293273 } + ], + "tags": { + "alt_name": "Third Avenue", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "OSM US TIGER 2012 Roads Overly", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 938878494, + "bounds": { + "minlat": 40.8102333, + "minlon": -73.9305921, + "maxlat": 40.8106186, + "maxlon": -73.9300946 + }, + "nodes": [ + 42747174, + 42743861, + 3647575601 + ], + "geometry": [ + { "lat": 40.8102333, "lon": -73.9300946 }, + { "lat": 40.8105309, "lon": -73.9304788 }, + { "lat": 40.8106186, "lon": -73.9305921 } + ], + "tags": { + "highway": "residential", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 938878495, + "bounds": { + "minlat": 40.8115489, + "minlon": -73.9281344, + "maxlat": 40.8117304, + "maxlon": -73.9278949 + }, + "nodes": [ + 7553826299, + 11882279897, + 9632503756, + 12761638064 + ], + "geometry": [ + { "lat": 40.8117304, "lon": -73.9281344 }, + { "lat": 40.8116915, "lon": -73.9280830 }, + { "lat": 40.8116644, "lon": -73.9280473 }, + { "lat": 40.8115489, "lon": -73.9278949 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes:backward": "left;through|none" + } +}, +{ + "type": "way", + "id": 939043704, + "bounds": { + "minlat": 40.7580338, + "minlon": -73.9320254, + "maxlat": 40.7580989, + "maxlon": -73.9318893 + }, + "nodes": [ + 8699111900, + 8699111843, + 8699111890 + ], + "geometry": [ + { "lat": 40.7580338, "lon": -73.9318893 }, + { "lat": 40.7580722, "lon": -73.9319727 }, + { "lat": 40.7580989, "lon": -73.9320254 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043707, + "bounds": { + "minlat": 40.7590461, + "minlon": -73.9324470, + "maxlat": 40.7592628, + "maxlon": -73.9320396 + }, + "nodes": [ + 8699111824, + 8699111920, + 8699091915 + ], + "geometry": [ + { "lat": 40.7592628, "lon": -73.9324470 }, + { "lat": 40.7591993, "lon": -73.9323425 }, + { "lat": 40.7590461, "lon": -73.9320396 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043710, + "bounds": { + "minlat": 40.7588153, + "minlon": -73.9329733, + "maxlat": 40.7591721, + "maxlon": -73.9322592 + }, + "nodes": [ + 8699111902, + 8699111854, + 42818555, + 8699111842, + 8699111889 + ], + "geometry": [ + { "lat": 40.7591721, "lon": -73.9329733 }, + { "lat": 40.7590692, "lon": -73.9327393 }, + { "lat": 40.7590324, "lon": -73.9326639 }, + { "lat": 40.7589764, "lon": -73.9325596 }, + { "lat": 40.7588153, "lon": -73.9322592 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043711, + "bounds": { + "minlat": 40.7583210, + "minlon": -73.9321219, + "maxlat": 40.7589541, + "maxlon": -73.9316163 + }, + "nodes": [ + 8699111888, + 8699111870, + 8699111910, + 8699111947, + 8699111834 + ], + "geometry": [ + { "lat": 40.7589541, "lon": -73.9316163 }, + { "lat": 40.7589359, "lon": -73.9316308 }, + { "lat": 40.7586346, "lon": -73.9318714 }, + { "lat": 40.7583416, "lon": -73.9321055 }, + { "lat": 40.7583210, "lon": -73.9321219 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 939043715, + "bounds": { + "minlat": 40.7587090, + "minlon": -73.9327687, + "maxlat": 40.7589260, + "maxlon": -73.9323603 + }, + "nodes": [ + 8699111911, + 8699111852, + 8699111899 + ], + "geometry": [ + { "lat": 40.7589260, "lon": -73.9327687 }, + { "lat": 40.7588665, "lon": -73.9326662 }, + { "lat": 40.7587090, "lon": -73.9323603 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043718, + "bounds": { + "minlat": 40.7584901, + "minlon": -73.9329860, + "maxlat": 40.7587008, + "maxlon": -73.9325686 + }, + "nodes": [ + 8699111835, + 8699111929, + 8699111823 + ], + "geometry": [ + { "lat": 40.7587008, "lon": -73.9329860 }, + { "lat": 40.7586429, "lon": -73.9328818 }, + { "lat": 40.7584901, "lon": -73.9325686 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043724, + "bounds": { + "minlat": 40.7591721, + "minlon": -73.9329733, + "maxlat": 40.7594899, + "maxlon": -73.9327241 + }, + "nodes": [ + 8699111864, + 8699111902 + ], + "geometry": [ + { "lat": 40.7594899, "lon": -73.9327241 }, + { "lat": 40.7591721, "lon": -73.9329733 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 939043725, + "bounds": { + "minlat": 40.7584019, + "minlon": -73.9326525, + "maxlat": 40.7591287, + "maxlon": -73.9319610 + }, + "nodes": [ + 8699111841, + 8699091915, + 8699111930, + 8699111889, + 8699111899, + 8699111861, + 8699111823, + 8699111934 + ], + "geometry": [ + { "lat": 40.7591287, "lon": -73.9319610 }, + { "lat": 40.7590461, "lon": -73.9320396 }, + { "lat": 40.7589303, "lon": -73.9321498 }, + { "lat": 40.7588153, "lon": -73.9322592 }, + { "lat": 40.7587090, "lon": -73.9323603 }, + { "lat": 40.7585992, "lon": -73.9324647 }, + { "lat": 40.7584901, "lon": -73.9325686 }, + { "lat": 40.7584019, "lon": -73.9326525 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 939043727, + "bounds": { + "minlat": 40.7579461, + "minlon": -73.9318328, + "maxlat": 40.7581034, + "maxlon": -73.9315311 + }, + "nodes": [ + 8699111937, + 8699111878, + 8699111931 + ], + "geometry": [ + { "lat": 40.7581034, "lon": -73.9318328 }, + { "lat": 40.7580590, "lon": -73.9317664 }, + { "lat": 40.7579461, "lon": -73.9315311 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043728, + "bounds": { + "minlat": 40.7584801, + "minlon": -73.9318714, + "maxlat": 40.7586346, + "maxlon": -73.9315272 + }, + "nodes": [ + 8699111919, + 8699111860, + 8699111910 + ], + "geometry": [ + { "lat": 40.7584801, "lon": -73.9315272 }, + { "lat": 40.7585202, "lon": -73.9316068 }, + { "lat": 40.7586346, "lon": -73.9318714 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043734, + "bounds": { + "minlat": 40.7592161, + "minlon": -73.9320151, + "maxlat": 40.7596214, + "maxlon": -73.9316992 + }, + "nodes": [ + 8699111862, + 8699111957, + 8699111853 + ], + "geometry": [ + { "lat": 40.7596214, "lon": -73.9316992 }, + { "lat": 40.7595482, "lon": -73.9317386 }, + { "lat": 40.7592161, "lon": -73.9320151 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 939043737, + "bounds": { + "minlat": 40.7579179, + "minlon": -73.9315536, + "maxlat": 40.7583139, + "maxlon": -73.9312365 + }, + "nodes": [ + 8699111948, + 8699091916, + 8699111931, + 8699111891 + ], + "geometry": [ + { "lat": 40.7583139, "lon": -73.9312365 }, + { "lat": 40.7582795, "lon": -73.9312641 }, + { "lat": 40.7579461, "lon": -73.9315311 }, + { "lat": 40.7579179, "lon": -73.9315536 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 939043739, + "bounds": { + "minlat": 40.7589303, + "minlon": -73.9325581, + "maxlat": 40.7591447, + "maxlon": -73.9321498 + }, + "nodes": [ + 8699111935, + 8699111877, + 8699111930 + ], + "geometry": [ + { "lat": 40.7591447, "lon": -73.9325581 }, + { "lat": 40.7590908, "lon": -73.9324518 }, + { "lat": 40.7589303, "lon": -73.9321498 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043740, + "bounds": { + "minlat": 40.7582179, + "minlon": -73.9324296, + "maxlat": 40.7582953, + "maxlon": -73.9322784 + }, + "nodes": [ + 8699111936, + 8699111912, + 8699111836 + ], + "geometry": [ + { "lat": 40.7582179, "lon": -73.9322784 }, + { "lat": 40.7582327, "lon": -73.9323073 }, + { "lat": 40.7582953, "lon": -73.9324296 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043744, + "bounds": { + "minlat": 40.7582953, + "minlon": -73.9324296, + "maxlat": 40.7587742, + "maxlon": -73.9320130 + }, + "nodes": [ + 8699111836, + 8699111825 + ], + "geometry": [ + { "lat": 40.7582953, "lon": -73.9324296 }, + { "lat": 40.7587742, "lon": -73.9320130 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 939043745, + "bounds": { + "minlat": 40.7585992, + "minlon": -73.9328810, + "maxlat": 40.7588109, + "maxlon": -73.9324647 + }, + "nodes": [ + 42818558, + 8699091914, + 8699111861 + ], + "geometry": [ + { "lat": 40.7588109, "lon": -73.9328810 }, + { "lat": 40.7587543, "lon": -73.9327760 }, + { "lat": 40.7585992, "lon": -73.9324647 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043753, + "bounds": { + "minlat": 40.7533243, + "minlon": -73.9307562, + "maxlat": 40.7535939, + "maxlon": -73.9302094 + }, + "nodes": [ + 8699111914, + 8699111904, + 8699111951 + ], + "geometry": [ + { "lat": 40.7535939, "lon": -73.9307562 }, + { "lat": 40.7533542, "lon": -73.9302814 }, + { "lat": 40.7533243, "lon": -73.9302094 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043754, + "bounds": { + "minlat": 40.7582795, + "minlon": -73.9315717, + "maxlat": 40.7584252, + "maxlon": -73.9312641 + }, + "nodes": [ + 8699111826, + 8699111921, + 8699091916 + ], + "geometry": [ + { "lat": 40.7584252, "lon": -73.9315717 }, + { "lat": 40.7583882, "lon": -73.9314981 }, + { "lat": 40.7582795, "lon": -73.9312641 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043755, + "bounds": { + "minlat": 40.7581879, + "minlon": -73.9321055, + "maxlat": 40.7583416, + "maxlon": -73.9317642 + }, + "nodes": [ + 8699111956, + 8699111898, + 8699111947 + ], + "geometry": [ + { "lat": 40.7581879, "lon": -73.9317642 }, + { "lat": 40.7582243, "lon": -73.9318485 }, + { "lat": 40.7583416, "lon": -73.9321055 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043757, + "bounds": { + "minlat": 40.7587811, + "minlon": -73.9316308, + "maxlat": 40.7589359, + "maxlon": -73.9312829 + }, + "nodes": [ + 8699111876, + 8699111822, + 8699111870 + ], + "geometry": [ + { "lat": 40.7587811, "lon": -73.9312829 }, + { "lat": 40.7588130, "lon": -73.9313677 }, + { "lat": 40.7589359, "lon": -73.9316308 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939043761, + "bounds": { + "minlat": 40.7580989, + "minlon": -73.9322784, + "maxlat": 40.7582179, + "maxlon": -73.9320254 + }, + "nodes": [ + 8699111890, + 8699111936 + ], + "geometry": [ + { "lat": 40.7580989, "lon": -73.9320254 }, + { "lat": 40.7582179, "lon": -73.9322784 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939122871, + "bounds": { + "minlat": 40.7369102, + "minlon": -73.9851301, + "maxlat": 40.7371496, + "maxlon": -73.9849577 + }, + "nodes": [ + 246539423, + 11298623345, + 2142756710 + ], + "geometry": [ + { "lat": 40.7371496, "lon": -73.9849577 }, + { "lat": 40.7371006, "lon": -73.9849939 }, + { "lat": 40.7369102, "lon": -73.9851301 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939122872, + "bounds": { + "minlat": 40.7377447, + "minlon": -73.9849582, + "maxlat": 40.7379279, + "maxlon": -73.9845164 + }, + "nodes": [ + 8699785164, + 42437530 + ], + "geometry": [ + { "lat": 40.7377447, "lon": -73.9845164 }, + { "lat": 40.7379279, "lon": -73.9849582 } + ], + "tags": { + "alt_name": "East 21st Street", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Gramercy Park North", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9" + } +}, +{ + "type": "way", + "id": 939382278, + "bounds": { + "minlat": 40.8626910, + "minlon": -73.9090676, + "maxlat": 40.8630984, + "maxlon": -73.9089677 + }, + "nodes": [ + 42731023, + 5296125211, + 10130913933, + 42743109 + ], + "geometry": [ + { "lat": 40.8626910, "lon": -73.9090191 }, + { "lat": 40.8628315, "lon": -73.9089677 }, + { "lat": 40.8629822, "lon": -73.9089931 }, + { "lat": 40.8630984, "lon": -73.9090676 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 939383923, + "bounds": { + "minlat": 40.8625205, + "minlon": -73.9095004, + "maxlat": 40.8626910, + "maxlon": -73.9090191 + }, + "nodes": [ + 42731023, + 5296125210, + 9903143767, + 9903143766, + 1396352589, + 9903143765 + ], + "geometry": [ + { "lat": 40.8626910, "lon": -73.9090191 }, + { "lat": 40.8626469, "lon": -73.9091553 }, + { "lat": 40.8626188, "lon": -73.9092413 }, + { "lat": 40.8625832, "lon": -73.9093398 }, + { "lat": 40.8625582, "lon": -73.9094092 }, + { "lat": 40.8625205, "lon": -73.9095004 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "turn:lanes:backward": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 939393500, + "bounds": { + "minlat": 40.8401040, + "minlon": -73.9247820, + "maxlat": 40.8411320, + "maxlon": -73.9239950 + }, + "nodes": [ + 42763869, + 13564503773, + 8285601003, + 13564503764, + 42776417 + ], + "geometry": [ + { "lat": 40.8401040, "lon": -73.9247820 }, + { "lat": 40.8401583, "lon": -73.9247405 }, + { "lat": 40.8410334, "lon": -73.9240715 }, + { "lat": 40.8410682, "lon": -73.9240439 }, + { "lat": 40.8411320, "lon": -73.9239950 } + ], + "tags": { + "highway": "residential", + "name": "Plimpton Avenue", + "name:etymology:wikidata": "Q5536449", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Plimpton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 939393501, + "bounds": { + "minlat": 40.8190183, + "minlon": -73.9292342, + "maxlat": 40.8191085, + "maxlon": -73.9292073 + }, + "nodes": [ + 42734149, + 4207899735 + ], + "geometry": [ + { "lat": 40.8190183, "lon": -73.9292342 }, + { "lat": 40.8191085, "lon": -73.9292073 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "name": "Gerard Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 939401951, + "bounds": { + "minlat": 40.8056429, + "minlon": -73.9346439, + "maxlat": 40.8057132, + "maxlon": -73.9343963 + }, + "nodes": [ + 3786741452, + 9153702893 + ], + "geometry": [ + { "lat": 40.8057132, "lon": -73.9346439 }, + { "lat": 40.8056429, "lon": -73.9343963 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 128th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 939401952, + "bounds": { + "minlat": 40.8179509, + "minlon": -73.9604157, + "maxlat": 40.8183068, + "maxlon": -73.9601523 + }, + "nodes": [ + 6867580414, + 10049926011, + 7732571917, + 12522167763 + ], + "geometry": [ + { "lat": 40.8179509, "lon": -73.9604157 }, + { "lat": 40.8181203, "lon": -73.9602903 }, + { "lat": 40.8181570, "lon": -73.9602609 }, + { "lat": 40.8183068, "lon": -73.9601523 } + ], + "tags": { + "bicycle": "designated", + "cycleway:left": "shared_lane", + "hgv": "destination", + "highway": "unclassified", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "12th Avenue", + "name_1": "12 Avenue", + "surface": "asphalt", + "turn:lanes:backward": "left|left;through|through;right" + } +}, +{ + "type": "way", + "id": 939401953, + "bounds": { + "minlat": 40.8158098, + "minlon": -73.9583906, + "maxlat": 40.8169831, + "maxlon": -73.9574793 + }, + "nodes": [ + 7732654932, + 10050036788, + 7732654931, + 10050036789, + 10049830847, + 42428863 + ], + "geometry": [ + { "lat": 40.8169831, "lon": -73.9574793 }, + { "lat": 40.8164197, "lon": -73.9579020 }, + { "lat": 40.8163681, "lon": -73.9579439 }, + { "lat": 40.8163196, "lon": -73.9579828 }, + { "lat": 40.8159203, "lon": -73.9583032 }, + { "lat": 40.8158098, "lon": -73.9583906 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 939401954, + "bounds": { + "minlat": 40.8168973, + "minlon": -73.9574793, + "maxlat": 40.8169831, + "maxlon": -73.9572758 + }, + "nodes": [ + 7732654932, + 6198320765 + ], + "geometry": [ + { "lat": 40.8169831, "lon": -73.9574793 }, + { "lat": 40.8168973, "lon": -73.9572758 } + ], + "tags": { + "highway": "residential", + "name": "West 130th Street", + "name_1": "West 130 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 939433102, + "bounds": { + "minlat": 40.7474398, + "minlon": -74.0072667, + "maxlat": 40.7476236, + "maxlon": -74.0070994 + }, + "nodes": [ + 8702296731, + 8702296732, + 8702296728, + 8702296729 + ], + "geometry": [ + { "lat": 40.7476236, "lon": -74.0071826 }, + { "lat": 40.7475084, "lon": -74.0072667 }, + { "lat": 40.7474719, "lon": -74.0071787 }, + { "lat": 40.7474398, "lon": -74.0070994 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 939433103, + "bounds": { + "minlat": 40.7473175, + "minlon": -74.0072905, + "maxlat": 40.7474719, + "maxlon": -74.0071787 + }, + "nodes": [ + 8702296727, + 10173035603, + 8702296728 + ], + "geometry": [ + { "lat": 40.7473175, "lon": -74.0072905 }, + { "lat": 40.7473789, "lon": -74.0072460 }, + { "lat": 40.7474719, "lon": -74.0071787 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 939433104, + "bounds": { + "minlat": 40.7474398, + "minlon": -74.0071826, + "maxlat": 40.7476236, + "maxlon": -74.0070193 + }, + "nodes": [ + 8702296729, + 8702296730, + 8702296731 + ], + "geometry": [ + { "lat": 40.7474398, "lon": -74.0070994 }, + { "lat": 40.7475571, "lon": -74.0070193 }, + { "lat": 40.7476236, "lon": -74.0071826 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 939433105, + "bounds": { + "minlat": 40.7476641, + "minlon": -74.0077241, + "maxlat": 40.7479591, + "maxlon": -74.0076699 + }, + "nodes": [ + 11027928256, + 246579597 + ], + "geometry": [ + { "lat": 40.7476641, "lon": -74.0077241 }, + { "lat": 40.7479591, "lon": -74.0076699 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "|||right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 939444709, + "bounds": { + "minlat": 40.7494463, + "minlon": -74.0084378, + "maxlat": 40.7498800, + "maxlon": -74.0082537 + }, + "nodes": [ + 373910553, + 9143569904, + 2376384580, + 9143569905, + 12161224685, + 246650840 + ], + "geometry": [ + { "lat": 40.7498800, "lon": -74.0084378 }, + { "lat": 40.7497745, "lon": -74.0084051 }, + { "lat": 40.7496942, "lon": -74.0083754 }, + { "lat": 40.7496079, "lon": -74.0083385 }, + { "lat": 40.7495326, "lon": -74.0083021 }, + { "lat": 40.7494463, "lon": -74.0082537 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete", + "turn:lanes": "|||right" + } +}, +{ + "type": "way", + "id": 939613199, + "bounds": { + "minlat": 40.7485815, + "minlon": -74.0072567, + "maxlat": 40.7488909, + "maxlon": -74.0070027 + }, + "nodes": [ + 42430589, + 3914863404, + 9143569906, + 12161232229, + 12161232230, + 12161232231, + 12161232232, + 1701920999 + ], + "geometry": [ + { "lat": 40.7488909, "lon": -74.0070027 }, + { "lat": 40.7488082, "lon": -74.0071042 }, + { "lat": 40.7487773, "lon": -74.0071385 }, + { "lat": 40.7487437, "lon": -74.0071569 }, + { "lat": 40.7487057, "lon": -74.0071783 }, + { "lat": 40.7486645, "lon": -74.0072016 }, + { "lat": 40.7486198, "lon": -74.0072310 }, + { "lat": 40.7485815, "lon": -74.0072567 } + ], + "tags": { + "change": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 939613200, + "bounds": { + "minlat": 40.7465212, + "minlon": -74.0035356, + "maxlat": 40.7474390, + "maxlon": -74.0013497 + }, + "nodes": [ + 42437909, + 8239225253, + 9971263898 + ], + "geometry": [ + { "lat": 40.7465212, "lon": -74.0013497 }, + { "lat": 40.7465670, "lon": -74.0014588 }, + { "lat": 40.7474390, "lon": -74.0035356 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:backward": "1", + "maxspeed": "25 mph", + "name": "West 23rd Street", + "name:ru": "Западная 23-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 939613202, + "bounds": { + "minlat": 40.7477892, + "minlon": -74.0041026, + "maxlat": 40.7483550, + "maxlon": -74.0036840 + }, + "nodes": [ + 9971263901, + 10173122256, + 42427483 + ], + "geometry": [ + { "lat": 40.7477892, "lon": -74.0041026 }, + { "lat": 40.7483007, "lon": -74.0037242 }, + { "lat": 40.7483550, "lon": -74.0036840 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 939613398, + "bounds": { + "minlat": 40.8490814, + "minlon": -73.9174402, + "maxlat": 40.8492002, + "maxlon": -73.9172851 + }, + "nodes": [ + 42744694, + 8703644212, + 2907939238 + ], + "geometry": [ + { "lat": 40.8490814, "lon": -73.9172851 }, + { "lat": 40.8491408, "lon": -73.9173627 }, + { "lat": 40.8492002, "lon": -73.9174402 } + ], + "tags": { + "highway": "residential", + "name": "West 176th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "176th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 939613399, + "bounds": { + "minlat": 40.8483813, + "minlon": -73.9185150, + "maxlat": 40.8488861, + "maxlon": -73.9178534 + }, + "nodes": [ + 11794372938, + 2907939237, + 2907939239 + ], + "geometry": [ + { "lat": 40.8488861, "lon": -73.9178534 }, + { "lat": 40.8484656, "lon": -73.9184066 }, + { "lat": 40.8483813, "lon": -73.9185150 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 939613400, + "bounds": { + "minlat": 40.8382538, + "minlon": -73.9127899, + "maxlat": 40.8384164, + "maxlon": -73.9126729 + }, + "nodes": [ + 3557257813, + 2327276582 + ], + "geometry": [ + { "lat": 40.8382538, "lon": -73.9127899 }, + { "lat": 40.8384164, "lon": -73.9126729 } + ], + "tags": { + "highway": "residential", + "name": "Sheridan Avenue", + "name:etymology:wikidata": "Q355452", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sheridan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 939682423, + "bounds": { + "minlat": 40.8685090, + "minlon": -73.9217178, + "maxlat": 40.8690010, + "maxlon": -73.9203200 + }, + "nodes": [ + 42431234, + 9561420938, + 11591951214, + 9561229737, + 1764675766, + 42453354 + ], + "geometry": [ + { "lat": 40.8685090, "lon": -73.9217178 }, + { "lat": 40.8685385, "lon": -73.9216338 }, + { "lat": 40.8689439, "lon": -73.9204787 }, + { "lat": 40.8689620, "lon": -73.9204271 }, + { "lat": 40.8689663, "lon": -73.9204147 }, + { "lat": 40.8690010, "lon": -73.9203200 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cooper Street", + "name:etymology:wikidata": "Q167856", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cooper", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 939682424, + "bounds": { + "minlat": 40.8690010, + "minlon": -73.9208970, + "maxlat": 40.8698770, + "maxlon": -73.9203200 + }, + "nodes": [ + 42453354, + 9561229738, + 13720168641, + 9561229731, + 13300289560, + 42458728 + ], + "geometry": [ + { "lat": 40.8690010, "lon": -73.9203200 }, + { "lat": 40.8690669, "lon": -73.9203634 }, + { "lat": 40.8695339, "lon": -73.9206710 }, + { "lat": 40.8698019, "lon": -73.9208475 }, + { "lat": 40.8698510, "lon": -73.9208798 }, + { "lat": 40.8698770, "lon": -73.9208970 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Isham Street", + "name:etymology:wikidata": "Q64006143", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Isham", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 939705684, + "bounds": { + "minlat": 40.7611849, + "minlon": -73.9854196, + "maxlat": 40.7612553, + "maxlon": -73.9853675 + }, + "nodes": [ + 8704367786, + 11296253749, + 8704367787 + ], + "geometry": [ + { "lat": 40.7611849, "lon": -73.9854196 }, + { "lat": 40.7612472, "lon": -73.9853735 }, + { "lat": 40.7612553, "lon": -73.9853675 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 939705685, + "bounds": { + "minlat": 40.7618863, + "minlon": -73.9853788, + "maxlat": 40.7619657, + "maxlon": -73.9853207 + }, + "nodes": [ + 8704367788, + 11296253742, + 8704367789 + ], + "geometry": [ + { "lat": 40.7619657, "lon": -73.9853207 }, + { "lat": 40.7619058, "lon": -73.9853646 }, + { "lat": 40.7618863, "lon": -73.9853788 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 939717815, + "bounds": { + "minlat": 40.8657533, + "minlon": -74.0140115, + "maxlat": 40.8660897, + "maxlon": -74.0133806 + }, + "nodes": [ + 6592337761, + 103262364, + 6592337763, + 103262366, + 103262370, + 103262371, + 103262372, + 103262373, + 103262374, + 103262376, + 103262378, + 6875600407 + ], + "geometry": [ + { "lat": 40.8657715, "lon": -74.0140115 }, + { "lat": 40.8657533, "lon": -74.0138361 }, + { "lat": 40.8657553, "lon": -74.0138019 }, + { "lat": 40.8657583, "lon": -74.0137491 }, + { "lat": 40.8657743, "lon": -74.0136801 }, + { "lat": 40.8657993, "lon": -74.0136411 }, + { "lat": 40.8658353, "lon": -74.0136151 }, + { "lat": 40.8659153, "lon": -74.0135871 }, + { "lat": 40.8659723, "lon": -74.0135481 }, + { "lat": 40.8660213, "lon": -74.0134941 }, + { "lat": 40.8660333, "lon": -74.0134751 }, + { "lat": 40.8660897, "lon": -74.0133806 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Plaza", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 940249490, + "bounds": { + "minlat": 40.8450081, + "minlon": -73.9181810, + "maxlat": 40.8450637, + "maxlon": -73.9169860 + }, + "nodes": [ + 596668878, + 12042652332, + 7899256491, + 12046906546, + 60923716 + ], + "geometry": [ + { "lat": 40.8450081, "lon": -73.9181810 }, + { "lat": 40.8450239, "lon": -73.9178902 }, + { "lat": 40.8450380, "lon": -73.9176042 }, + { "lat": 40.8450516, "lon": -73.9172951 }, + { "lat": 40.8450637, "lon": -73.9169860 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "New Haven|New Haven|New Haven;Jerome Avenue;Webster Avenue|Jerome Avenue", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxspeed": "50 mph", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 940249491, + "bounds": { + "minlat": 40.8451391, + "minlon": -73.9181339, + "maxlat": 40.8452479, + "maxlon": -73.9143213 + }, + "nodes": [ + 60923723, + 12042652327, + 12042652328, + 12042652329, + 12042711595, + 12042711594, + 60923262, + 12042711593, + 60923263, + 12042711592, + 12042652330, + 7899270065, + 12042652331, + 60923264 + ], + "geometry": [ + { "lat": 40.8452479, "lon": -73.9143213 }, + { "lat": 40.8452472, "lon": -73.9145416 }, + { "lat": 40.8452445, "lon": -73.9148304 }, + { "lat": 40.8452400, "lon": -73.9151192 }, + { "lat": 40.8452348, "lon": -73.9154088 }, + { "lat": 40.8452287, "lon": -73.9156924 }, + { "lat": 40.8452217, "lon": -73.9159850 }, + { "lat": 40.8452141, "lon": -73.9162676 }, + { "lat": 40.8452051, "lon": -73.9165576 }, + { "lat": 40.8451951, "lon": -73.9168407 }, + { "lat": 40.8451811, "lon": -73.9171761 }, + { "lat": 40.8451702, "lon": -73.9174262 }, + { "lat": 40.8451595, "lon": -73.9176980 }, + { "lat": 40.8451391, "lon": -73.9181339 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "George Washington Bridge;Newark NJ|George Washington Bridge;Newark NJ|George Washington Bridge;Newark NJ;Major Deegan Expressway;Queens;Albany|Major Deegan Expressway;Queens;Albany", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxspeed": "50 mph", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "turn:lanes": "||through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 940310479, + "bounds": { + "minlat": 40.7139262, + "minlon": -73.9160374, + "maxlat": 40.7145084, + "maxlon": -73.9150715 + }, + "nodes": [ + 8708655685, + 9755788619, + 8708655690, + 8708655686, + 8708655687, + 8708655688, + 8708655689 + ], + "geometry": [ + { "lat": 40.7139262, "lon": -73.9150715 }, + { "lat": 40.7139740, "lon": -73.9151655 }, + { "lat": 40.7139824, "lon": -73.9151799 }, + { "lat": 40.7142141, "lon": -73.9155746 }, + { "lat": 40.7144968, "lon": -73.9158175 }, + { "lat": 40.7145084, "lon": -73.9158586 }, + { "lat": 40.7144384, "lon": -73.9160374 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 940728183, + "bounds": { + "minlat": 40.8071758, + "minlon": -73.9253558, + "maxlat": 40.8076441, + "maxlon": -73.9242442 + }, + "nodes": [ + 42725346, + 9908621373, + 9163759252, + 595800973 + ], + "geometry": [ + { "lat": 40.8071758, "lon": -73.9242442 }, + { "lat": 40.8072411, "lon": -73.9243903 }, + { "lat": 40.8072553, "lon": -73.9244219 }, + { "lat": 40.8076441, "lon": -73.9253558 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "slight_left;through|through|none" + } +}, +{ + "type": "way", + "id": 940728184, + "bounds": { + "minlat": 40.8190877, + "minlon": -73.9344827, + "maxlat": 40.8201556, + "maxlon": -73.9344052 + }, + "nodes": [ + 589927933, + 371337212, + 373766274, + 9166236616, + 371337213 + ], + "geometry": [ + { "lat": 40.8201556, "lon": -73.9344827 }, + { "lat": 40.8198634, "lon": -73.9344719 }, + { "lat": 40.8195348, "lon": -73.9344559 }, + { "lat": 40.8193124, "lon": -73.9344378 }, + { "lat": 40.8190877, "lon": -73.9344052 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD" + } +}, +{ + "type": "way", + "id": 941446395, + "bounds": { + "minlat": 40.7531355, + "minlon": -73.9084854, + "maxlat": 40.7536422, + "maxlon": -73.9083638 + }, + "nodes": [ + 8718502632, + 8718502630, + 8718502628, + 8718502626, + 8718502624 + ], + "geometry": [ + { "lat": 40.7536422, "lon": -73.9083638 }, + { "lat": 40.7535753, "lon": -73.9084626 }, + { "lat": 40.7535264, "lon": -73.9084854 }, + { "lat": 40.7532570, "lon": -73.9084407 }, + { "lat": 40.7531355, "lon": -73.9084180 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 941936918, + "bounds": { + "minlat": 40.7133376, + "minlon": -74.0110084, + "maxlat": 40.7136412, + "maxlon": -74.0107338 + }, + "nodes": [ + 12375817361, + 10282972207, + 8262936474, + 10282972211, + 10282972212, + 10282972208, + 42454401 + ], + "geometry": [ + { "lat": 40.7136412, "lon": -74.0107338 }, + { "lat": 40.7134289, "lon": -74.0108970 }, + { "lat": 40.7133885, "lon": -74.0109363 }, + { "lat": 40.7133753, "lon": -74.0109494 }, + { "lat": 40.7133608, "lon": -74.0109661 }, + { "lat": 40.7133480, "lon": -74.0109862 }, + { "lat": 40.7133376, "lon": -74.0110084 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "old_name": "West Broadway", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 941943231, + "bounds": { + "minlat": 40.7183429, + "minlon": -74.0087470, + "maxlat": 40.7190290, + "maxlon": -74.0072241 + }, + "nodes": [ + 11308790130, + 8304498530, + 42436333 + ], + "geometry": [ + { "lat": 40.7183429, "lon": -74.0072241 }, + { "lat": 40.7189800, "lon": -74.0086377 }, + { "lat": 40.7190290, "lon": -74.0087470 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Leonard Street", + "name:etymology:wikidata": "Q6525508", + "name:ko": "레오나드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q6525759", + "wikipedia": "en:Leonard Street" + } +}, +{ + "type": "way", + "id": 941943232, + "bounds": { + "minlat": 40.7201244, + "minlon": -74.0118278, + "maxlat": 40.7202950, + "maxlon": -74.0101194 + }, + "nodes": [ + 42436056, + 8304497955, + 4574685155, + 11466760304, + 7144807590, + 11466637381 + ], + "geometry": [ + { "lat": 40.7201244, "lon": -74.0101194 }, + { "lat": 40.7201355, "lon": -74.0102272 }, + { "lat": 40.7201870, "lon": -74.0107294 }, + { "lat": 40.7202524, "lon": -74.0113970 }, + { "lat": 40.7202832, "lon": -74.0117154 }, + { "lat": 40.7202950, "lon": -74.0118278 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "North Moore Street", + "name:etymology:wikidata": "Q16203667", + "name:ko": "노스 무어 스트리트", + "name:ru": "Норт-Мур-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7056143", + "wikipedia": "en:North Moore Street" + } +}, +{ + "type": "way", + "id": 941943233, + "bounds": { + "minlat": 40.7199664, + "minlon": -74.0101194, + "maxlat": 40.7201244, + "maxlon": -74.0085815 + }, + "nodes": [ + 42436336, + 8312344396, + 8304498450, + 42436056 + ], + "geometry": [ + { "lat": 40.7199664, "lon": -74.0085815 }, + { "lat": 40.7199786, "lon": -74.0087004 }, + { "lat": 40.7201153, "lon": -74.0100306 }, + { "lat": 40.7201244, "lon": -74.0101194 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "20 mph", + "name": "North Moore Street", + "name:etymology:wikidata": "Q16203667", + "name:ko": "노스 무어 스트리트", + "name:ru": "Норт-Мур-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q7056143", + "wikipedia": "en:North Moore Street" + } +}, +{ + "type": "way", + "id": 941943234, + "bounds": { + "minlat": 40.7229787, + "minlon": -74.0117198, + "maxlat": 40.7230061, + "maxlon": -74.0115025 + }, + "nodes": [ + 246890279, + 4207143421 + ], + "geometry": [ + { "lat": 40.7230061, "lon": -74.0117198 }, + { "lat": 40.7229787, "lon": -74.0115025 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Vestry Street", + "name:ko": "배스트리 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 942226133, + "bounds": { + "minlat": 40.8358804, + "minlon": -73.9378421, + "maxlat": 40.8360812, + "maxlon": -73.9377657 + }, + "nodes": [ + 8725170814, + 8725170813, + 8725170812, + 8725170811 + ], + "geometry": [ + { "lat": 40.8358804, "lon": -73.9378384 }, + { "lat": 40.8359587, "lon": -73.9377888 }, + { "lat": 40.8360076, "lon": -73.9377657 }, + { "lat": 40.8360812, "lon": -73.9378421 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 942444176, + "bounds": { + "minlat": 40.7364156, + "minlon": -73.9306610, + "maxlat": 40.7369917, + "maxlon": -73.9276970 + }, + "nodes": [ + 597311193, + 487120936, + 597294550 + ], + "geometry": [ + { "lat": 40.7364156, "lon": -73.9276970 }, + { "lat": 40.7368119, "lon": -73.9297670 }, + { "lat": 40.7369917, "lon": -73.9306610 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "Midtown Tunnel;Manhattan|Midtown Tunnel;Manhattan|Midtown Tunnel;Manhattan;Van Dam Street|Van Dam Street", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 942444177, + "bounds": { + "minlat": 40.7451792, + "minlon": -73.9753989, + "maxlat": 40.7454554, + "maxlon": -73.9747430 + }, + "nodes": [ + 42434969, + 3817760665, + 42434965 + ], + "geometry": [ + { "lat": 40.7451792, "lon": -73.9747430 }, + { "lat": 40.7453978, "lon": -73.9752600 }, + { "lat": 40.7454554, "lon": -73.9753989 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 35th Street", + "name:ru": "Восточная 35-я стрит", + "oneway": "yes", + "short_name": "East 35 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 942444178, + "bounds": { + "minlat": 40.7451792, + "minlon": -73.9747430, + "maxlat": 40.7457827, + "maxlon": -73.9743190 + }, + "nodes": [ + 42434969, + 4259278556, + 9971314377, + 42454495 + ], + "geometry": [ + { "lat": 40.7451792, "lon": -73.9747430 }, + { "lat": 40.7452501, "lon": -73.9746919 }, + { "lat": 40.7457344, "lon": -73.9743560 }, + { "lat": 40.7457827, "lon": -73.9743190 } + ], + "tags": { + "destination": "Queens-Midtown Tunnel", + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Tunnel Approach Street", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Tunnel Entrance", + "tiger:name_type": "St", + "tiger:reviewed": "aerial", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 943037562, + "bounds": { + "minlat": 40.7900237, + "minlon": -73.9496427, + "maxlat": 40.7901310, + "maxlon": -73.9494329 + }, + "nodes": [ + 8732341820, + 8732341819, + 8732341822 + ], + "geometry": [ + { "lat": 40.7900802, "lon": -73.9494329 }, + { "lat": 40.7901310, "lon": -73.9495673 }, + { "lat": 40.7900237, "lon": -73.9496427 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 943037563, + "bounds": { + "minlat": 40.7898692, + "minlon": -73.9493246, + "maxlat": 40.7900369, + "maxlon": -73.9492070 + }, + "nodes": [ + 8732341817, + 5481897023 + ], + "geometry": [ + { "lat": 40.7900369, "lon": -73.9492070 }, + { "lat": 40.7898692, "lon": -73.9493246 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 943037564, + "bounds": { + "minlat": 40.7899944, + "minlon": -73.9494347, + "maxlat": 40.7900554, + "maxlon": -73.9494337 + }, + "nodes": [ + 8732341818, + 5481897025 + ], + "geometry": [ + { "lat": 40.7900554, "lon": -73.9494337 }, + { "lat": 40.7899944, "lon": -73.9494347 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 943037565, + "bounds": { + "minlat": 40.7900083, + "minlon": -73.9494677, + "maxlat": 40.7900554, + "maxlon": -73.9494337 + }, + "nodes": [ + 8732341818, + 8732341824 + ], + "geometry": [ + { "lat": 40.7900554, "lon": -73.9494337 }, + { "lat": 40.7900083, "lon": -73.9494677 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 943037566, + "bounds": { + "minlat": 40.7900554, + "minlon": -73.9494337, + "maxlat": 40.7901230, + "maxlon": -73.9494021 + }, + "nodes": [ + 8732341823, + 8732341820, + 8732341818 + ], + "geometry": [ + { "lat": 40.7901230, "lon": -73.9494021 }, + { "lat": 40.7900802, "lon": -73.9494329 }, + { "lat": 40.7900554, "lon": -73.9494337 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 943068764, + "bounds": { + "minlat": 40.7893368, + "minlon": -73.9483494, + "maxlat": 40.7894182, + "maxlon": -73.9481530 + }, + "nodes": [ + 8732555179, + 8732555138, + 5481999821 + ], + "geometry": [ + { "lat": 40.7894182, "lon": -73.9483494 }, + { "lat": 40.7893796, "lon": -73.9482543 }, + { "lat": 40.7893368, "lon": -73.9481530 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 943068765, + "bounds": { + "minlat": 40.7882421, + "minlon": -73.9453120, + "maxlat": 40.7884126, + "maxlon": -73.9451981 + }, + "nodes": [ + 8732555119, + 9291131969, + 8732555140, + 8732555157 + ], + "geometry": [ + { "lat": 40.7884126, "lon": -73.9451981 }, + { "lat": 40.7883325, "lon": -73.9452516 }, + { "lat": 40.7883169, "lon": -73.9452620 }, + { "lat": 40.7882421, "lon": -73.9453120 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 943068770, + "bounds": { + "minlat": 40.7890676, + "minlon": -73.9476892, + "maxlat": 40.7891679, + "maxlon": -73.9474365 + }, + "nodes": [ + 8732555186, + 8732555190, + 8732555144 + ], + "geometry": [ + { "lat": 40.7890876, "lon": -73.9474365 }, + { "lat": 40.7890676, "lon": -73.9474506 }, + { "lat": 40.7891679, "lon": -73.9476892 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 943068772, + "bounds": { + "minlat": 40.7892413, + "minlon": -73.9473280, + "maxlat": 40.7893164, + "maxlon": -73.9472751 + }, + "nodes": [ + 8732555163, + 9166170281, + 8732555148 + ], + "geometry": [ + { "lat": 40.7893164, "lon": -73.9472751 }, + { "lat": 40.7892573, "lon": -73.9473167 }, + { "lat": 40.7892413, "lon": -73.9473280 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 943068773, + "bounds": { + "minlat": 40.7894918, + "minlon": -73.9482379, + "maxlat": 40.7895742, + "maxlon": -73.9480440 + }, + "nodes": [ + 8732555125, + 8732555168, + 8732555134 + ], + "geometry": [ + { "lat": 40.7894918, "lon": -73.9480440 }, + { "lat": 40.7895392, "lon": -73.9481525 }, + { "lat": 40.7895742, "lon": -73.9482379 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 943068778, + "bounds": { + "minlat": 40.7896902, + "minlon": -73.9496806, + "maxlat": 40.7903277, + "maxlon": -73.9481549 + }, + "nodes": [ + 42430479, + 7779545001, + 5481897024, + 5481897026, + 6254630474, + 42430477, + 7787545810 + ], + "geometry": [ + { "lat": 40.7896902, "lon": -73.9481549 }, + { "lat": 40.7897247, "lon": -73.9482372 }, + { "lat": 40.7901113, "lon": -73.9491530 }, + { "lat": 40.7901935, "lon": -73.9493490 }, + { "lat": 40.7902857, "lon": -73.9495658 }, + { "lat": 40.7903128, "lon": -73.9496374 }, + { "lat": 40.7903277, "lon": -73.9496806 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 102nd Street", + "name:ru": "Восточная 102-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 943068780, + "bounds": { + "minlat": 40.7890876, + "minlon": -73.9474365, + "maxlat": 40.7892413, + "maxlon": -73.9473280 + }, + "nodes": [ + 8732555148, + 8732555186 + ], + "geometry": [ + { "lat": 40.7892413, "lon": -73.9473280 }, + { "lat": 40.7890876, "lon": -73.9474365 } + ], + "tags": { + "access": "private", + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 943068782, + "bounds": { + "minlat": 40.7880579, + "minlon": -73.9451981, + "maxlat": 40.7884126, + "maxlon": -73.9443285 + }, + "nodes": [ + 8732555119, + 2947964845, + 42430485 + ], + "geometry": [ + { "lat": 40.7884126, "lon": -73.9451981 }, + { "lat": 40.7881058, "lon": -73.9444629 }, + { "lat": 40.7880579, "lon": -73.9443285 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "East 102nd Street", + "name:ru": "Восточная 102-я стрит", + "oneway": "yes", + "parking:lane:left": "parallel", + "parking:lane:right": "diagonal" + } +}, +{ + "type": "way", + "id": 943249161, + "bounds": { + "minlat": 40.7154513, + "minlon": -73.9421576, + "maxlat": 40.7155353, + "maxlon": -73.9411530 + }, + "nodes": [ + 42489470, + 5329729668, + 42491531 + ], + "geometry": [ + { "lat": 40.7155353, "lon": -73.9411530 }, + { "lat": 40.7154619, "lon": -73.9420535 }, + { "lat": 40.7154513, "lon": -73.9421576 } + ], + "tags": { + "highway": "residential", + "name": "Conselyea Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 943249162, + "bounds": { + "minlat": 40.7151201, + "minlon": -73.9421730, + "maxlat": 40.7154513, + "maxlon": -73.9421576 + }, + "nodes": [ + 42491531, + 9695771743, + 11155242420, + 9947391753, + 7722378708 + ], + "geometry": [ + { "lat": 40.7154513, "lon": -73.9421576 }, + { "lat": 40.7153942, "lon": -73.9421601 }, + { "lat": 40.7151827, "lon": -73.9421714 }, + { "lat": 40.7151517, "lon": -73.9421730 }, + { "lat": 40.7151201, "lon": -73.9421684 } + ], + "tags": { + "highway": "residential", + "name": "Woodpoint Road", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 943456490, + "bounds": { + "minlat": 40.7092967, + "minlon": -73.9608075, + "maxlat": 40.7093911, + "maxlon": -73.9607439 + }, + "nodes": [ + 42505393, + 9968370344, + 9968370343, + 6226508721, + 9968370345, + 9968370342 + ], + "geometry": [ + { "lat": 40.7093911, "lon": -73.9607439 }, + { "lat": 40.7093726, "lon": -73.9607608 }, + { "lat": 40.7093564, "lon": -73.9607740 }, + { "lat": 40.7093354, "lon": -73.9607881 }, + { "lat": 40.7093160, "lon": -73.9607990 }, + { "lat": 40.7092967, "lon": -73.9608075 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Roebling Street", + "name:etymology:wikidata": "Q77237", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Roebling", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 943487838, + "bounds": { + "minlat": 40.7581046, + "minlon": -73.9285028, + "maxlat": 40.7581268, + "maxlon": -73.9284507 + }, + "nodes": [ + 8735889839, + 42849735 + ], + "geometry": [ + { "lat": 40.7581046, "lon": -73.9284507 }, + { "lat": 40.7581268, "lon": -73.9285028 } + ], + "tags": { + "highway": "tertiary", + "maxheight": "12'8\"", + "name": "35th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 943487839, + "bounds": { + "minlat": 40.7581268, + "minlon": -73.9285725, + "maxlat": 40.7581594, + "maxlon": -73.9285028 + }, + "nodes": [ + 8735889840, + 42849735 + ], + "geometry": [ + { "lat": 40.7581594, "lon": -73.9285725 }, + { "lat": 40.7581268, "lon": -73.9285028 } + ], + "tags": { + "highway": "tertiary", + "maxheight": "12'8\"", + "name": "35th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 943557519, + "bounds": { + "minlat": 40.8302434, + "minlon": -73.9516610, + "maxlat": 40.8302917, + "maxlon": -73.9515538 + }, + "nodes": [ + 3273684041, + 3273684054 + ], + "geometry": [ + { "lat": 40.8302917, "lon": -73.9515538 }, + { "lat": 40.8302434, "lon": -73.9516610 } + ], + "tags": { + "bridge": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 943557526, + "bounds": { + "minlat": 40.8302340, + "minlon": -73.9517206, + "maxlat": 40.8302434, + "maxlon": -73.9516610 + }, + "nodes": [ + 3273684054, + 3273684042 + ], + "geometry": [ + { "lat": 40.8302434, "lon": -73.9516610 }, + { "lat": 40.8302340, "lon": -73.9517206 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 944141812, + "bounds": { + "minlat": 40.8030650, + "minlon": -73.9338275, + "maxlat": 40.8031505, + "maxlon": -73.9337643 + }, + "nodes": [ + 8741475148, + 8741475149 + ], + "geometry": [ + { "lat": 40.8031505, "lon": -73.9337643 }, + { "lat": 40.8030650, "lon": -73.9338275 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 944141813, + "bounds": { + "minlat": 40.8030358, + "minlon": -73.9338485, + "maxlat": 40.8030650, + "maxlon": -73.9338275 + }, + "nodes": [ + 8741475149, + 8741475157 + ], + "geometry": [ + { "lat": 40.8030650, "lon": -73.9338275 }, + { "lat": 40.8030358, "lon": -73.9338485 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 944141814, + "bounds": { + "minlat": 40.8031217, + "minlon": -73.9336963, + "maxlat": 40.8031577, + "maxlon": -73.9336709 + }, + "nodes": [ + 8741475151, + 8741475153 + ], + "geometry": [ + { "lat": 40.8031577, "lon": -73.9336709 }, + { "lat": 40.8031217, "lon": -73.9336963 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 944141815, + "bounds": { + "minlat": 40.8030353, + "minlon": -73.9337572, + "maxlat": 40.8031217, + "maxlon": -73.9336963 + }, + "nodes": [ + 8741475153, + 8741475154 + ], + "geometry": [ + { "lat": 40.8031217, "lon": -73.9336963 }, + { "lat": 40.8030353, "lon": -73.9337572 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 944141816, + "bounds": { + "minlat": 40.8030061, + "minlon": -73.9337774, + "maxlat": 40.8030353, + "maxlon": -73.9337572 + }, + "nodes": [ + 8741475154, + 8741475152 + ], + "geometry": [ + { "lat": 40.8030353, "lon": -73.9337572 }, + { "lat": 40.8030061, "lon": -73.9337774 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 944141817, + "bounds": { + "minlat": 40.8029453, + "minlon": -73.9340102, + "maxlat": 40.8032193, + "maxlon": -73.9337362 + }, + "nodes": [ + 5161751676, + 8741475155, + 8741475158, + 10170641435, + 8741475156 + ], + "geometry": [ + { "lat": 40.8031853, "lon": -73.9337362 }, + { "lat": 40.8032193, "lon": -73.9338154 }, + { "lat": 40.8030679, "lon": -73.9339255 }, + { "lat": 40.8030365, "lon": -73.9339471 }, + { "lat": 40.8029453, "lon": -73.9340102 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 944141818, + "bounds": { + "minlat": 40.8028887, + "minlon": -73.9339255, + "maxlat": 40.8030679, + "maxlon": -73.9334841 + }, + "nodes": [ + 8741475158, + 8741475157, + 8741475152, + 8741475162, + 9166170274, + 8741475159 + ], + "geometry": [ + { "lat": 40.8030679, "lon": -73.9339255 }, + { "lat": 40.8030358, "lon": -73.9338485 }, + { "lat": 40.8030061, "lon": -73.9337774 }, + { "lat": 40.8029705, "lon": -73.9336921 }, + { "lat": 40.8029399, "lon": -73.9336144 }, + { "lat": 40.8028887, "lon": -73.9334841 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 944141819, + "bounds": { + "minlat": 40.8028840, + "minlon": -73.9338638, + "maxlat": 40.8030061, + "maxlon": -73.9337774 + }, + "nodes": [ + 8741475152, + 10170641434, + 8741475160 + ], + "geometry": [ + { "lat": 40.8030061, "lon": -73.9337774 }, + { "lat": 40.8029730, "lon": -73.9338008 }, + { "lat": 40.8028840, "lon": -73.9338638 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 944141820, + "bounds": { + "minlat": 40.8030867, + "minlon": -73.9336137, + "maxlat": 40.8031223, + "maxlon": -73.9335883 + }, + "nodes": [ + 8741475161, + 8741475163 + ], + "geometry": [ + { "lat": 40.8031223, "lon": -73.9335883 }, + { "lat": 40.8030867, "lon": -73.9336137 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 944141821, + "bounds": { + "minlat": 40.8029998, + "minlon": -73.9336735, + "maxlat": 40.8030867, + "maxlon": -73.9336137 + }, + "nodes": [ + 8741475163, + 8741475164 + ], + "geometry": [ + { "lat": 40.8030867, "lon": -73.9336137 }, + { "lat": 40.8029998, "lon": -73.9336735 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 944141822, + "bounds": { + "minlat": 40.8029705, + "minlon": -73.9336921, + "maxlat": 40.8029998, + "maxlon": -73.9336735 + }, + "nodes": [ + 8741475164, + 8741475162 + ], + "geometry": [ + { "lat": 40.8029998, "lon": -73.9336735 }, + { "lat": 40.8029705, "lon": -73.9336921 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 944154716, + "bounds": { + "minlat": 40.6997780, + "minlon": -73.9507580, + "maxlat": 40.7004488, + "maxlon": -73.9500918 + }, + "nodes": [ + 42482215, + 9755373205, + 13191762962, + 42482212, + 42482207 + ], + "geometry": [ + { "lat": 40.6997780, "lon": -73.9500918 }, + { "lat": 40.6999062, "lon": -73.9501230 }, + { "lat": 40.7000219, "lon": -73.9502859 }, + { "lat": 40.7003577, "lon": -73.9506474 }, + { "lat": 40.7004488, "lon": -73.9507580 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 944283073, + "bounds": { + "minlat": 40.7070560, + "minlon": -73.9644703, + "maxlat": 40.7075372, + "maxlon": -73.9643930 + }, + "nodes": [ + 42487630, + 9776829039, + 4882413680, + 9776814814, + 42477974 + ], + "geometry": [ + { "lat": 40.7070560, "lon": -73.9643930 }, + { "lat": 40.7071279, "lon": -73.9644192 }, + { "lat": 40.7072684, "lon": -73.9644703 }, + { "lat": 40.7074650, "lon": -73.9644337 }, + { "lat": 40.7075372, "lon": -73.9644203 } + ], + "tags": { + "highway": "residential", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 944283074, + "bounds": { + "minlat": 40.7074502, + "minlon": -73.9648800, + "maxlat": 40.7075372, + "maxlon": -73.9644203 + }, + "nodes": [ + 42477972, + 9776814815, + 42477974 + ], + "geometry": [ + { "lat": 40.7074502, "lon": -73.9648800 }, + { "lat": 40.7075169, "lon": -73.9645274 }, + { "lat": 40.7075372, "lon": -73.9644203 } + ], + "tags": { + "highway": "tertiary", + "name": "Division Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Division", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 944576764, + "bounds": { + "minlat": 40.7897700, + "minlon": -73.9311082, + "maxlat": 40.7898489, + "maxlon": -73.9309475 + }, + "nodes": [ + 7734664096, + 8745054528 + ], + "geometry": [ + { "lat": 40.7897700, "lon": -73.9309475 }, + { "lat": 40.7898489, "lon": -73.9311082 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 944576765, + "bounds": { + "minlat": 40.7896755, + "minlon": -73.9307574, + "maxlat": 40.7903617, + "maxlon": -73.9301781 + }, + "nodes": [ + 7734664098, + 8745054529, + 8745054530 + ], + "geometry": [ + { "lat": 40.7896755, "lon": -73.9307574 }, + { "lat": 40.7902868, "lon": -73.9302210 }, + { "lat": 40.7903617, "lon": -73.9301781 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 944576766, + "bounds": { + "minlat": 40.7897700, + "minlon": -73.9309475, + "maxlat": 40.7902936, + "maxlon": -73.9305412 + }, + "nodes": [ + 7734664096, + 8745054531, + 8745054532 + ], + "geometry": [ + { "lat": 40.7897700, "lon": -73.9309475 }, + { "lat": 40.7902287, "lon": -73.9305412 }, + { "lat": 40.7902936, "lon": -73.9305557 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 944576767, + "bounds": { + "minlat": 40.7901081, + "minlon": -73.9301246, + "maxlat": 40.7902302, + "maxlon": -73.9298764 + }, + "nodes": [ + 7734664107, + 8745054533, + 8745054534, + 7734664106 + ], + "geometry": [ + { "lat": 40.7902285, "lon": -73.9298764 }, + { "lat": 40.7902302, "lon": -73.9300160 }, + { "lat": 40.7901811, "lon": -73.9300600 }, + { "lat": 40.7901081, "lon": -73.9301246 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 944576768, + "bounds": { + "minlat": 40.7901811, + "minlon": -73.9302210, + "maxlat": 40.7902868, + "maxlon": -73.9300600 + }, + "nodes": [ + 8745054534, + 8745054535, + 8745054529 + ], + "geometry": [ + { "lat": 40.7901811, "lon": -73.9300600 }, + { "lat": 40.7902483, "lon": -73.9301931 }, + { "lat": 40.7902868, "lon": -73.9302210 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 944576769, + "bounds": { + "minlat": 40.7891906, + "minlon": -73.9308413, + "maxlat": 40.7894958, + "maxlon": -73.9303953 + }, + "nodes": [ + 7734664101, + 8745054536, + 7734664103 + ], + "geometry": [ + { "lat": 40.7892762, "lon": -73.9308413 }, + { "lat": 40.7891906, "lon": -73.9306634 }, + { "lat": 40.7894958, "lon": -73.9303953 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 944692441, + "bounds": { + "minlat": 40.7200616, + "minlon": -73.9990790, + "maxlat": 40.7210819, + "maxlon": -73.9982238 + }, + "nodes": [ + 42432165, + 8231927649, + 12187436355, + 12187436364, + 42445489 + ], + "geometry": [ + { "lat": 40.7210819, "lon": -73.9982238 }, + { "lat": 40.7210092, "lon": -73.9982756 }, + { "lat": 40.7201618, "lon": -73.9989885 }, + { "lat": 40.7201191, "lon": -73.9990267 }, + { "lat": 40.7200616, "lon": -73.9990790 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 944692442, + "bounds": { + "minlat": 40.7197918, + "minlon": -73.9990790, + "maxlat": 40.7200616, + "maxlon": -73.9985146 + }, + "nodes": [ + 42445489, + 12197904818, + 8231927328, + 12187436366, + 8307641675, + 12197904812, + 42427324 + ], + "geometry": [ + { "lat": 40.7200616, "lon": -73.9990790 }, + { "lat": 40.7200189, "lon": -73.9989897 }, + { "lat": 40.7200061, "lon": -73.9989628 }, + { "lat": 40.7198655, "lon": -73.9986688 }, + { "lat": 40.7198353, "lon": -73.9986056 }, + { "lat": 40.7198203, "lon": -73.9985742 }, + { "lat": 40.7197918, "lon": -73.9985146 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 944713336, + "bounds": { + "minlat": 40.8568009, + "minlon": -73.9282660, + "maxlat": 40.8571682, + "maxlon": -73.9274354 + }, + "nodes": [ + 42451932, + 1253602820, + 5403868123, + 42433151 + ], + "geometry": [ + { "lat": 40.8571682, "lon": -73.9274354 }, + { "lat": 40.8569877, "lon": -73.9279285 }, + { "lat": 40.8568705, "lon": -73.9281333 }, + { "lat": 40.8568009, "lon": -73.9282660 } + ], + "tags": { + "cycleway": "lane", + "cycleway:both:buffer": "yes", + "highway": "secondary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Fort George Avenue", + "name:etymology:wikidata": "Q1438535", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort George", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 944730279, + "bounds": { + "minlat": 40.8472490, + "minlon": -73.9379750, + "maxlat": 40.8477110, + "maxlon": -73.9368570 + }, + "nodes": [ + 42449631, + 9550791891, + 9550759216, + 42429013 + ], + "geometry": [ + { "lat": 40.8472490, "lon": -73.9368570 }, + { "lat": 40.8472917, "lon": -73.9369604 }, + { "lat": 40.8476592, "lon": -73.9378498 }, + { "lat": 40.8477110, "lon": -73.9379750 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "West 177th Street", + "name_1": "West 177 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "177th", + "tiger:name_base_1": "177", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 944730280, + "bounds": { + "minlat": 40.8472490, + "minlon": -73.9368570, + "maxlat": 40.8478794, + "maxlon": -73.9363969 + }, + "nodes": [ + 42449631, + 9550791728, + 9550791750, + 42449634 + ], + "geometry": [ + { "lat": 40.8472490, "lon": -73.9368570 }, + { "lat": 40.8473058, "lon": -73.9368156 }, + { "lat": 40.8478041, "lon": -73.9364518 }, + { "lat": 40.8478794, "lon": -73.9363969 } + ], + "tags": { + "highway": "tertiary", + "name": "Wadsworth Avenue", + "name:etymology:wikidata": "Q2339186", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 944771877, + "bounds": { + "minlat": 40.8031843, + "minlon": -73.9526080, + "maxlat": 40.8032537, + "maxlon": -73.9524444 + }, + "nodes": [ + 2141026506, + 42432889 + ], + "geometry": [ + { "lat": 40.8031843, "lon": -73.9524444 }, + { "lat": 40.8032537, "lon": -73.9526080 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "name_1": "West 116 Street", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 944990224, + "bounds": { + "minlat": 40.8305218, + "minlon": -73.9361514, + "maxlat": 40.8307824, + "maxlon": -73.9355839 + }, + "nodes": [ + 373772209, + 5333189427, + 5959410818, + 9902223875, + 42424551 + ], + "geometry": [ + { "lat": 40.8307824, "lon": -73.9361514 }, + { "lat": 40.8307376, "lon": -73.9360476 }, + { "lat": 40.8305930, "lon": -73.9357079 }, + { "lat": 40.8305583, "lon": -73.9356446 }, + { "lat": 40.8305218, "lon": -73.9355839 } + ], + "tags": { + "destination": "Harlem River Drive South;RFK Bridge;FDR Drive", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Harlem River Drive", + "name1": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "tiger:cfcc": "A63;A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 944990225, + "bounds": { + "minlat": 40.8304141, + "minlon": -73.9363673, + "maxlat": 40.8305317, + "maxlon": -73.9362077 + }, + "nodes": [ + 42424576, + 5333189428 + ], + "geometry": [ + { "lat": 40.8304141, "lon": -73.9363673 }, + { "lat": 40.8305317, "lon": -73.9362077 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "8th;Harlem River", + "tiger:name_base_1": "Frederick Douglass", + "tiger:name_type": "Ave;Dr", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 944990228, + "bounds": { + "minlat": 40.8304141, + "minlon": -73.9363673, + "maxlat": 40.8310238, + "maxlon": -73.9359800 + }, + "nodes": [ + 42425758, + 373772209, + 9520382018, + 5333189429, + 42424576 + ], + "geometry": [ + { "lat": 40.8310238, "lon": -73.9359800 }, + { "lat": 40.8307824, "lon": -73.9361514 }, + { "lat": 40.8306277, "lon": -73.9362626 }, + { "lat": 40.8305721, "lon": -73.9363014 }, + { "lat": 40.8304141, "lon": -73.9363673 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "8th;Harlem River", + "tiger:name_base_1": "Frederick Douglass", + "tiger:name_type": "Ave;Dr", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 944999159, + "bounds": { + "minlat": 40.8172259, + "minlon": -73.9531759, + "maxlat": 40.8175891, + "maxlon": -73.9522674 + }, + "nodes": [ + 42434097, + 10170977523, + 9150598863, + 10170977555, + 42434098 + ], + "geometry": [ + { "lat": 40.8172259, "lon": -73.9522674 }, + { "lat": 40.8172648, "lon": -73.9523593 }, + { "lat": 40.8175326, "lon": -73.9529921 }, + { "lat": 40.8175496, "lon": -73.9530474 }, + { "lat": 40.8175891, "lon": -73.9531759 } + ], + "tags": { + "highway": "residential", + "name": "West 133rd Street", + "name_1": "West 133 Street", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 944999160, + "bounds": { + "minlat": 40.8175891, + "minlon": -73.9552918, + "maxlat": 40.8184840, + "maxlon": -73.9531759 + }, + "nodes": [ + 42434098, + 10170977551, + 7124965418, + 42434101 + ], + "geometry": [ + { "lat": 40.8175891, "lon": -73.9531759 }, + { "lat": 40.8176488, "lon": -73.9533196 }, + { "lat": 40.8184093, "lon": -73.9551484 }, + { "lat": 40.8184840, "lon": -73.9552918 } + ], + "tags": { + "highway": "residential", + "name": "West 133rd Street", + "name_1": "West 133 Street", + "surface": "asphalt", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 944999162, + "bounds": { + "minlat": 40.8175078, + "minlon": -73.9568442, + "maxlat": 40.8187602, + "maxlon": -73.9559061 + }, + "nodes": [ + 2541754747, + 10128823994, + 10129081623, + 561035346, + 10129081626, + 10129081633, + 7732653969 + ], + "geometry": [ + { "lat": 40.8175078, "lon": -73.9568442 }, + { "lat": 40.8175732, "lon": -73.9567958 }, + { "lat": 40.8181067, "lon": -73.9564021 }, + { "lat": 40.8181613, "lon": -73.9563618 }, + { "lat": 40.8182062, "lon": -73.9563276 }, + { "lat": 40.8186967, "lon": -73.9559544 }, + { "lat": 40.8187602, "lon": -73.9559061 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 945127744, + "bounds": { + "minlat": 40.7108846, + "minlon": -73.9923482, + "maxlat": 40.7109120, + "maxlon": -73.9922162 + }, + "nodes": [ + 4207806923, + 11519993998, + 7480515817, + 11519993996 + ], + "geometry": [ + { "lat": 40.7109120, "lon": -73.9922162 }, + { "lat": 40.7109038, "lon": -73.9922650 }, + { "lat": 40.7108932, "lon": -73.9923166 }, + { "lat": 40.7108846, "lon": -73.9923482 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Cherry Street", + "name:ko": "체리 스트리트", + "name:ru": "Черри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 945127745, + "bounds": { + "minlat": 40.7109270, + "minlon": -73.9921092, + "maxlat": 40.7109437, + "maxlon": -73.9919892 + }, + "nodes": [ + 42437481, + 7480515821 + ], + "geometry": [ + { "lat": 40.7109437, "lon": -73.9919892 }, + { "lat": 40.7109270, "lon": -73.9921092 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Cherry Street", + "name:ko": "체리 스트리트", + "name:ru": "Черри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 945167874, + "bounds": { + "minlat": 40.7481917, + "minlon": -74.0076825, + "maxlat": 40.7486964, + "maxlon": -74.0076359 + }, + "nodes": [ + 12161232243, + 9143574618, + 12161232241, + 9143574617, + 246579608, + 12161232240, + 246580301, + 12161232216, + 8703673333 + ], + "geometry": [ + { "lat": 40.7481917, "lon": -74.0076380 }, + { "lat": 40.7482720, "lon": -74.0076372 }, + { "lat": 40.7483370, "lon": -74.0076359 }, + { "lat": 40.7484065, "lon": -74.0076390 }, + { "lat": 40.7484767, "lon": -74.0076425 }, + { "lat": 40.7485265, "lon": -74.0076474 }, + { "lat": 40.7485826, "lon": -74.0076556 }, + { "lat": 40.7486420, "lon": -74.0076685 }, + { "lat": 40.7486964, "lon": -74.0076825 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 945210419, + "bounds": { + "minlat": 40.7897912, + "minlon": -73.9275835, + "maxlat": 40.7898732, + "maxlon": -73.9273224 + }, + "nodes": [ + 3037067011, + 7734704015, + 7734704016, + 7734704017, + 7734704018, + 7734704000, + 3037022334, + 7734704001 + ], + "geometry": [ + { "lat": 40.7897912, "lon": -73.9273224 }, + { "lat": 40.7898181, "lon": -73.9273392 }, + { "lat": 40.7898479, "lon": -73.9273772 }, + { "lat": 40.7898669, "lon": -73.9274259 }, + { "lat": 40.7898732, "lon": -73.9274801 }, + { "lat": 40.7898660, "lon": -73.9275340 }, + { "lat": 40.7898600, "lon": -73.9275483 }, + { "lat": 40.7898452, "lon": -73.9275835 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 945210420, + "bounds": { + "minlat": 40.7896487, + "minlon": -73.9273708, + "maxlat": 40.7897912, + "maxlon": -73.9273093 + }, + "nodes": [ + 7734703999, + 7734704011, + 7734704012, + 9053977031, + 7734704013, + 7734704014, + 3037067011 + ], + "geometry": [ + { "lat": 40.7896487, "lon": -73.9273708 }, + { "lat": 40.7896631, "lon": -73.9273486 }, + { "lat": 40.7896988, "lon": -73.9273207 }, + { "lat": 40.7897176, "lon": -73.9273154 }, + { "lat": 40.7897394, "lon": -73.9273093 }, + { "lat": 40.7897806, "lon": -73.9273157 }, + { "lat": 40.7897912, "lon": -73.9273224 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 945324267, + "bounds": { + "minlat": 40.7717254, + "minlon": -73.9860659, + "maxlat": 40.7717859, + "maxlon": -73.9859926 + }, + "nodes": [ + 8751612682, + 8751612683, + 8751612689, + 8751612691, + 8751612690, + 8751612692, + 8751612695, + 8751612686, + 8751612699, + 8751612687, + 8751612694, + 8751612697, + 8751612696, + 8751612693, + 8751612688, + 8751612684, + 8751612685, + 8751612682 + ], + "geometry": [ + { "lat": 40.7717859, "lon": -73.9860321 }, + { "lat": 40.7717622, "lon": -73.9860498 }, + { "lat": 40.7717598, "lon": -73.9860443 }, + { "lat": 40.7717516, "lon": -73.9860504 }, + { "lat": 40.7717548, "lon": -73.9860577 }, + { "lat": 40.7717438, "lon": -73.9860659 }, + { "lat": 40.7717369, "lon": -73.9860500 }, + { "lat": 40.7717351, "lon": -73.9860513 }, + { "lat": 40.7717322, "lon": -73.9860444 }, + { "lat": 40.7717290, "lon": -73.9860371 }, + { "lat": 40.7717311, "lon": -73.9860356 }, + { "lat": 40.7717254, "lon": -73.9860224 }, + { "lat": 40.7717365, "lon": -73.9860141 }, + { "lat": 40.7717409, "lon": -73.9860244 }, + { "lat": 40.7717492, "lon": -73.9860182 }, + { "lat": 40.7717457, "lon": -73.9860100 }, + { "lat": 40.7717690, "lon": -73.9859926 }, + { "lat": 40.7717859, "lon": -73.9860321 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 945337519, + "bounds": { + "minlat": 40.8013981, + "minlon": -73.9679955, + "maxlat": 40.8022515, + "maxlon": -73.9679062 + }, + "nodes": [ + 42428760, + 11548264831, + 9177532565, + 9177532564, + 6900903341, + 42421745 + ], + "geometry": [ + { "lat": 40.8022515, "lon": -73.9679062 }, + { "lat": 40.8021783, "lon": -73.9679194 }, + { "lat": 40.8020867, "lon": -73.9679359 }, + { "lat": 40.8020029, "lon": -73.9679456 }, + { "lat": 40.8015282, "lon": -73.9679861 }, + { "lat": 40.8013981, "lon": -73.9679955 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 945375289, + "bounds": { + "minlat": 40.7895635, + "minlon": -73.9798657, + "maxlat": 40.7906175, + "maxlon": -73.9773679 + }, + "nodes": [ + 42431039, + 9492556613, + 10039795805, + 42434161 + ], + "geometry": [ + { "lat": 40.7895635, "lon": -73.9773679 }, + { "lat": 40.7896179, "lon": -73.9774930 }, + { "lat": 40.7905766, "lon": -73.9797685 }, + { "lat": 40.7906175, "lon": -73.9798657 } + ], + "tags": { + "alt_name": "West 87 Street", + "highway": "residential", + "lanes": "2", + "name": "West 87th Street", + "name:ru": "Западная 87-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 945375290, + "bounds": { + "minlat": 40.7889354, + "minlon": -73.9773679, + "maxlat": 40.7895635, + "maxlon": -73.9758801 + }, + "nodes": [ + 1061531637, + 42428678, + 8699239274, + 9492542199, + 42431039 + ], + "geometry": [ + { "lat": 40.7889354, "lon": -73.9758801 }, + { "lat": 40.7890078, "lon": -73.9760520 }, + { "lat": 40.7890479, "lon": -73.9761472 }, + { "lat": 40.7895121, "lon": -73.9772484 }, + { "lat": 40.7895635, "lon": -73.9773679 } + ], + "tags": { + "alt_name": "West 87 Street", + "highway": "residential", + "lanes": "2", + "name": "West 87th Street", + "name:ru": "Западная 87-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 945384088, + "bounds": { + "minlat": 40.7665573, + "minlon": -73.9671021, + "maxlat": 40.7683253, + "maxlon": -73.9629303 + }, + "nodes": [ + 42437436, + 10125112345, + 8835701402, + 42437433, + 8835701396, + 3278932320, + 12834712298, + 8835701415, + 42437428, + 596775973, + 10125112341, + 10125112340 + ], + "geometry": [ + { "lat": 40.7665573, "lon": -73.9629303 }, + { "lat": 40.7666215, "lon": -73.9630662 }, + { "lat": 40.7671986, "lon": -73.9644321 }, + { "lat": 40.7672413, "lon": -73.9645312 }, + { "lat": 40.7672867, "lon": -73.9646378 }, + { "lat": 40.7673602, "lon": -73.9648123 }, + { "lat": 40.7678154, "lon": -73.9658919 }, + { "lat": 40.7678414, "lon": -73.9659536 }, + { "lat": 40.7678888, "lon": -73.9660657 }, + { "lat": 40.7679632, "lon": -73.9662435 }, + { "lat": 40.7680088, "lon": -73.9663545 }, + { "lat": 40.7683253, "lon": -73.9671021 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 67th Street", + "name:ru": "Восточная 67-я стрит", + "name_1": "East 67 Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 945384089, + "bounds": { + "minlat": 40.7666145, + "minlon": -73.9649882, + "maxlat": 40.7672413, + "maxlon": -73.9645312 + }, + "nodes": [ + 42437433, + 10125139622, + 10166834602, + 42447069 + ], + "geometry": [ + { "lat": 40.7672413, "lon": -73.9645312 }, + { "lat": 40.7671868, "lon": -73.9645713 }, + { "lat": 40.7666642, "lon": -73.9649520 }, + { "lat": 40.7666145, "lon": -73.9649882 } + ], + "tags": { + "alt_name:el": "Λέξιγκτων", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:forward": "1", + "name": "Lexington Avenue", + "name:el": "Λεξιγκτώνος", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 945384091, + "bounds": { + "minlat": 40.7659911, + "minlon": -73.9654486, + "maxlat": 40.7666145, + "maxlon": -73.9649882 + }, + "nodes": [ + 42447069, + 10125139626, + 9178272149, + 42447060 + ], + "geometry": [ + { "lat": 40.7666145, "lon": -73.9649882 }, + { "lat": 40.7665554, "lon": -73.9650319 }, + { "lat": 40.7660481, "lon": -73.9654056 }, + { "lat": 40.7659911, "lon": -73.9654486 } + ], + "tags": { + "alt_name:el": "Λέξιγκτων", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:el": "Λεξιγκτώνος", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 945384093, + "bounds": { + "minlat": 40.8462291, + "minlon": -73.9322748, + "maxlat": 40.8465019, + "maxlon": -73.9320753 + }, + "nodes": [ + 595473048, + 595481001 + ], + "geometry": [ + { "lat": 40.8462291, "lon": -73.9322748 }, + { "lat": 40.8465019, "lon": -73.9320753 } + ], + "tags": { + "bridge": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "layer": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 945460473, + "bounds": { + "minlat": 40.7591352, + "minlon": -73.9958288, + "maxlat": 40.7596264, + "maxlon": -73.9954726 + }, + "nodes": [ + 13859163543, + 10168212454, + 42437371 + ], + "geometry": [ + { "lat": 40.7591352, "lon": -73.9958288 }, + { "lat": 40.7595278, "lon": -73.9955445 }, + { "lat": 40.7596264, "lon": -73.9954726 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left||||right", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 945464141, + "bounds": { + "minlat": 40.8039382, + "minlon": -73.9326682, + "maxlat": 40.8040729, + "maxlon": -73.9323444 + }, + "nodes": [ + 42443118, + 42426135 + ], + "geometry": [ + { "lat": 40.8040729, "lon": -73.9326682 }, + { "lat": 40.8039382, "lon": -73.9323444 } + ], + "tags": { + "cycleway:both": "no", + "highway": "secondary", + "lane_markings": "no", + "name": "East 127th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 945464142, + "bounds": { + "minlat": 40.8039116, + "minlon": -73.9327700, + "maxlat": 40.8040729, + "maxlon": -73.9326682 + }, + "nodes": [ + 42443118, + 7926756849 + ], + "geometry": [ + { "lat": 40.8040729, "lon": -73.9326682 }, + { "lat": 40.8039116, "lon": -73.9327700 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 945473887, + "bounds": { + "minlat": 40.7298613, + "minlon": -73.9896920, + "maxlat": 40.7301479, + "maxlon": -73.9894820 + }, + "nodes": [ + 42443296, + 12179565614, + 4235733233, + 42449017 + ], + "geometry": [ + { "lat": 40.7298613, "lon": -73.9896920 }, + { "lat": 40.7300410, "lon": -73.9895581 }, + { "lat": 40.7300857, "lon": -73.9895262 }, + { "lat": 40.7301479, "lon": -73.9894820 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:backward": "2", + "lanes:forward": "4", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|||", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 945473888, + "bounds": { + "minlat": 40.7299155, + "minlon": -73.9894820, + "maxlat": 40.7301479, + "maxlon": -73.9889177 + }, + "nodes": [ + 42443298, + 8309479250, + 12179565617, + 3919359655, + 42449017 + ], + "geometry": [ + { "lat": 40.7299155, "lon": -73.9889177 }, + { "lat": 40.7299482, "lon": -73.9889987 }, + { "lat": 40.7300667, "lon": -73.9892912 }, + { "lat": 40.7300892, "lon": -73.9893452 }, + { "lat": 40.7301479, "lon": -73.9894820 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 9th Street", + "name:ru": "Восточная 9-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 945473889, + "bounds": { + "minlat": 40.8543210, + "minlon": -73.9282540, + "maxlat": 40.8562300, + "maxlon": -73.9268630 + }, + "nodes": [ + 42455337, + 8740550847, + 6854245786, + 6854245793, + 13703297126, + 42437942, + 7953934600, + 8369968536, + 13202021046, + 42427768, + 7915715240, + 8369968526, + 7915715251, + 42433346 + ], + "geometry": [ + { "lat": 40.8543210, "lon": -73.9282540 }, + { "lat": 40.8544004, "lon": -73.9281966 }, + { "lat": 40.8545635, "lon": -73.9280789 }, + { "lat": 40.8546860, "lon": -73.9279904 }, + { "lat": 40.8548552, "lon": -73.9278682 }, + { "lat": 40.8549760, "lon": -73.9277810 }, + { "lat": 40.8551173, "lon": -73.9276761 }, + { "lat": 40.8552171, "lon": -73.9276019 }, + { "lat": 40.8552940, "lon": -73.9275475 }, + { "lat": 40.8555980, "lon": -73.9273190 }, + { "lat": 40.8557862, "lon": -73.9271832 }, + { "lat": 40.8559276, "lon": -73.9270811 }, + { "lat": 40.8561713, "lon": -73.9269053 }, + { "lat": 40.8562300, "lon": -73.9268630 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "maxspeed:type": "sign", + "name": "Audubon Avenue", + "name:etymology:wikidata": "Q182882", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Audubon", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q2870884", + "wikipedia": "en:Audubon Avenue" + } +}, +{ + "type": "way", + "id": 945473890, + "bounds": { + "minlat": 40.8543210, + "minlon": -73.9296440, + "maxlat": 40.8549080, + "maxlon": -73.9282540 + }, + "nodes": [ + 42433115, + 5403868139, + 8740550849, + 13300276351, + 42455337 + ], + "geometry": [ + { "lat": 40.8549080, "lon": -73.9296440 }, + { "lat": 40.8548559, "lon": -73.9295207 }, + { "lat": 40.8543645, "lon": -73.9283573 }, + { "lat": 40.8543359, "lon": -73.9282893 }, + { "lat": 40.8543210, "lon": -73.9282540 } + ], + "tags": { + "highway": "residential", + "name": "West 190th Street", + "name_1": "West 190 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "190th", + "tiger:name_base_1": "190", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 945523294, + "bounds": { + "minlat": 40.7277529, + "minlon": -73.9912289, + "maxlat": 40.7280638, + "maxlon": -73.9910027 + }, + "nodes": [ + 12179562782, + 12179562784, + 8309479290, + 1773121034 + ], + "geometry": [ + { "lat": 40.7280638, "lon": -73.9910027 }, + { "lat": 40.7278331, "lon": -73.9911689 }, + { "lat": 40.7278030, "lon": -73.9911906 }, + { "lat": 40.7277529, "lon": -73.9912289 } + ], + "tags": { + "alt_name": "3rd Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "24/7", + "maxspeed": "25 mph", + "name": "Cooper Square", + "name:etymology:wikidata": "Q935291", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 945942091, + "bounds": { + "minlat": 40.7427367, + "minlon": -73.9564373, + "maxlat": 40.7431966, + "maxlon": -73.9540991 + }, + "nodes": [ + 42866850, + 9982774472, + 13299962231, + 11200178455, + 6593145588 + ], + "geometry": [ + { "lat": 40.7431966, "lon": -73.9564373 }, + { "lat": 40.7431810, "lon": -73.9563578 }, + { "lat": 40.7427723, "lon": -73.9542852 }, + { "lat": 40.7427584, "lon": -73.9542147 }, + { "lat": 40.7427367, "lon": -73.9540991 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "50th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "50th", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 945944497, + "bounds": { + "minlat": 40.8113669, + "minlon": -73.9546926, + "maxlat": 40.8116565, + "maxlon": -73.9540099 + }, + "nodes": [ + 42440144, + 10171087495, + 6824030325 + ], + "geometry": [ + { "lat": 40.8113669, "lon": -73.9540099 }, + { "lat": 40.8114203, "lon": -73.9541358 }, + { "lat": 40.8116565, "lon": -73.9546926 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 945966225, + "bounds": { + "minlat": 40.8009668, + "minlon": -73.9705450, + "maxlat": 40.8015900, + "maxlon": -73.9690527 + }, + "nodes": [ + 42431118, + 9916138284, + 8831843015, + 7326861787, + 42437920 + ], + "geometry": [ + { "lat": 40.8009668, "lon": -73.9690527 }, + { "lat": 40.8010194, "lon": -73.9691788 }, + { "lat": 40.8015461, "lon": -73.9704422 }, + { "lat": 40.8015689, "lon": -73.9704956 }, + { "lat": 40.8015900, "lon": -73.9705450 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 105th Street", + "name:ru": "Западная 105-я стрит", + "name_1": "West 105 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 945966226, + "bounds": { + "minlat": 40.8011915, + "minlon": -73.9688902, + "maxlat": 40.8016452, + "maxlon": -73.9685741 + }, + "nodes": [ + 42421749, + 11548264835, + 9916138285 + ], + "geometry": [ + { "lat": 40.8016452, "lon": -73.9685741 }, + { "lat": 40.8015641, "lon": -73.9686307 }, + { "lat": 40.8011915, "lon": -73.9688902 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 945966227, + "bounds": { + "minlat": 40.8022679, + "minlon": -73.9700504, + "maxlat": 40.8035804, + "maxlon": -73.9691157 + }, + "nodes": [ + 42421751, + 11380682066, + 12151100050, + 42432764, + 7785880678, + 9177516863, + 9166175592, + 42441910 + ], + "geometry": [ + { "lat": 40.8022679, "lon": -73.9700504 }, + { "lat": 40.8022957, "lon": -73.9700301 }, + { "lat": 40.8023091, "lon": -73.9700203 }, + { "lat": 40.8029380, "lon": -73.9695600 }, + { "lat": 40.8033375, "lon": -73.9692684 }, + { "lat": 40.8034374, "lon": -73.9692054 }, + { "lat": 40.8035278, "lon": -73.9691493 }, + { "lat": 40.8035804, "lon": -73.9691157 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 945966228, + "bounds": { + "minlat": 40.8015900, + "minlon": -73.9705450, + "maxlat": 40.8022679, + "maxlon": -73.9700504 + }, + "nodes": [ + 42437920, + 12151100051, + 42421751 + ], + "geometry": [ + { "lat": 40.8015900, "lon": -73.9705450 }, + { "lat": 40.8022369, "lon": -73.9700730 }, + { "lat": 40.8022679, "lon": -73.9700504 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "name", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 946215880, + "bounds": { + "minlat": 40.8202621, + "minlon": -74.0107434, + "maxlat": 40.8206275, + "maxlon": -74.0106965 + }, + "nodes": [ + 8759538640, + 8759538642, + 8759538641 + ], + "geometry": [ + { "lat": 40.8206275, "lon": -74.0107434 }, + { "lat": 40.8205756, "lon": -74.0107367 }, + { "lat": 40.8202621, "lon": -74.0106965 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 946653471, + "bounds": { + "minlat": 40.7251935, + "minlon": -74.0076538, + "maxlat": 40.7259079, + "maxlon": -74.0075452 + }, + "nodes": [ + 42436353, + 8429031606, + 8429031604, + 42436355, + 8429031603 + ], + "geometry": [ + { "lat": 40.7251935, "lon": -74.0076538 }, + { "lat": 40.7252473, "lon": -74.0076453 }, + { "lat": 40.7257791, "lon": -74.0075668 }, + { "lat": 40.7258538, "lon": -74.0075543 }, + { "lat": 40.7259079, "lon": -74.0075452 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 946740304, + "bounds": { + "minlat": 40.8061556, + "minlon": -73.9259218, + "maxlat": 40.8064903, + "maxlon": -73.9254586 + }, + "nodes": [ + 8763736063, + 8763736064, + 8763736065, + 8763736066, + 12016663314, + 8763736067, + 12016663313, + 8763736068, + 8763736069, + 8763736070, + 8763736071, + 8763736072, + 8763736073 + ], + "geometry": [ + { "lat": 40.8061556, "lon": -73.9255607 }, + { "lat": 40.8061873, "lon": -73.9255609 }, + { "lat": 40.8063115, "lon": -73.9254767 }, + { "lat": 40.8063405, "lon": -73.9254586 }, + { "lat": 40.8063617, "lon": -73.9254602 }, + { "lat": 40.8063798, "lon": -73.9254706 }, + { "lat": 40.8064095, "lon": -73.9254990 }, + { "lat": 40.8064419, "lon": -73.9255491 }, + { "lat": 40.8064903, "lon": -73.9256656 }, + { "lat": 40.8064856, "lon": -73.9257236 }, + { "lat": 40.8064493, "lon": -73.9257709 }, + { "lat": 40.8063058, "lon": -73.9258770 }, + { "lat": 40.8062972, "lon": -73.9259218 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 946740305, + "bounds": { + "minlat": 40.8062524, + "minlon": -73.9254586, + "maxlat": 40.8063405, + "maxlon": -73.9252434 + }, + "nodes": [ + 8763736074, + 11427300061, + 8763736077, + 8763736066 + ], + "geometry": [ + { "lat": 40.8062524, "lon": -73.9252434 }, + { "lat": 40.8062791, "lon": -73.9253093 }, + { "lat": 40.8063274, "lon": -73.9254257 }, + { "lat": 40.8063405, "lon": -73.9254586 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 947065715, + "bounds": { + "minlat": 40.8583502, + "minlon": -73.9073590, + "maxlat": 40.8587900, + "maxlon": -73.9061293 + }, + "nodes": [ + 42740873, + 8174133654, + 13564424187, + 42758027 + ], + "geometry": [ + { "lat": 40.8587900, "lon": -73.9073590 }, + { "lat": 40.8584006, "lon": -73.9062728 }, + { "lat": 40.8583778, "lon": -73.9062078 }, + { "lat": 40.8583502, "lon": -73.9061293 } + ], + "tags": { + "highway": "residential", + "name": "Buchanan Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Buchanan", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 947065716, + "bounds": { + "minlat": 40.8518036, + "minlon": -73.9092086, + "maxlat": 40.8573407, + "maxlon": -73.9045273 + }, + "nodes": [ + 42736290, + 10171493763, + 10171493797, + 42736293, + 10171514522, + 10171514494, + 9918211881, + 42736299, + 9918211882, + 42736301, + 9918211883, + 13247458444, + 42736304, + 13247458450, + 7070964338, + 13703482957, + 13703151834, + 12748250479, + 42736311, + 13016926984, + 13031144523, + 42736315, + 13031144532, + 7425867404, + 13703126483, + 12739101054, + 42736319 + ], + "geometry": [ + { "lat": 40.8573407, "lon": -73.9045273 }, + { "lat": 40.8572782, "lon": -73.9045661 }, + { "lat": 40.8571214, "lon": -73.9046635 }, + { "lat": 40.8570650, "lon": -73.9046986 }, + { "lat": 40.8569947, "lon": -73.9047417 }, + { "lat": 40.8565138, "lon": -73.9050366 }, + { "lat": 40.8565080, "lon": -73.9050402 }, + { "lat": 40.8564246, "lon": -73.9050951 }, + { "lat": 40.8563141, "lon": -73.9051696 }, + { "lat": 40.8562160, "lon": -73.9052425 }, + { "lat": 40.8561025, "lon": -73.9053273 }, + { "lat": 40.8558643, "lon": -73.9055302 }, + { "lat": 40.8558037, "lon": -73.9055814 }, + { "lat": 40.8557417, "lon": -73.9056311 }, + { "lat": 40.8553229, "lon": -73.9059715 }, + { "lat": 40.8543819, "lon": -73.9068495 }, + { "lat": 40.8540835, "lon": -73.9071279 }, + { "lat": 40.8539002, "lon": -73.9073000 }, + { "lat": 40.8538239, "lon": -73.9073691 }, + { "lat": 40.8537304, "lon": -73.9074564 }, + { "lat": 40.8527166, "lon": -73.9083802 }, + { "lat": 40.8526619, "lon": -73.9084301 }, + { "lat": 40.8526054, "lon": -73.9084792 }, + { "lat": 40.8525580, "lon": -73.9085205 }, + { "lat": 40.8520368, "lon": -73.9090032 }, + { "lat": 40.8518924, "lon": -73.9091359 }, + { "lat": 40.8518036, "lon": -73.9092086 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 947065728, + "bounds": { + "minlat": 40.8369692, + "minlon": -73.9091912, + "maxlat": 40.8371458, + "maxlon": -73.9081538 + }, + "nodes": [ + 42739246, + 10126901707, + 486818502, + 10126901710, + 8454214988 + ], + "geometry": [ + { "lat": 40.8369692, "lon": -73.9091912 }, + { "lat": 40.8369753, "lon": -73.9091327 }, + { "lat": 40.8370446, "lon": -73.9087210 }, + { "lat": 40.8371288, "lon": -73.9082247 }, + { "lat": 40.8371458, "lon": -73.9081538 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 947065729, + "bounds": { + "minlat": 40.8371232, + "minlon": -73.9096129, + "maxlat": 40.8374059, + "maxlon": -73.9092779 + }, + "nodes": [ + 42739243, + 10126902060, + 8454214952, + 11787762724, + 486818473 + ], + "geometry": [ + { "lat": 40.8371232, "lon": -73.9096129 }, + { "lat": 40.8371905, "lon": -73.9095211 }, + { "lat": 40.8372296, "lon": -73.9094547 }, + { "lat": 40.8373222, "lon": -73.9093618 }, + { "lat": 40.8374059, "lon": -73.9092779 } + ], + "tags": { + "highway": "residential", + "name": "Findlay Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller; Findlay", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457; 10456", + "tiger:zip_left_1": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 947065731, + "bounds": { + "minlat": 40.8412540, + "minlon": -73.9096372, + "maxlat": 40.8427654, + "maxlon": -73.9093940 + }, + "nodes": [ + 42735870, + 10126901666, + 10126901667, + 486818495, + 10126901665, + 42735873 + ], + "geometry": [ + { "lat": 40.8412540, "lon": -73.9093940 }, + { "lat": 40.8421097, "lon": -73.9096296 }, + { "lat": 40.8422212, "lon": -73.9096372 }, + { "lat": 40.8423340, "lon": -73.9096329 }, + { "lat": 40.8426982, "lon": -73.9096025 }, + { "lat": 40.8427654, "lon": -73.9095948 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "name": "Morris Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 947215907, + "bounds": { + "minlat": 40.7253844, + "minlon": -73.9968134, + "maxlat": 40.7255012, + "maxlon": -73.9967146 + }, + "nodes": [ + 42428447, + 1919595915 + ], + "geometry": [ + { "lat": 40.7255012, "lon": -73.9967146 }, + { "lat": 40.7253844, "lon": -73.9968134 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 947234940, + "bounds": { + "minlat": 40.7832964, + "minlon": -73.9301601, + "maxlat": 40.7900272, + "maxlon": -73.9265913 + }, + "nodes": [ + 1934650086, + 42452549, + 3786956450, + 100659357, + 100659358, + 9153831939, + 3786956451, + 100660666, + 3786956452, + 100660667, + 9153831940, + 100660668, + 3786956453, + 100660669, + 3786956454, + 9153831941, + 3786956455, + 100660670, + 3786956456, + 100660671, + 3786957257, + 3786957258, + 9153831942, + 100660672, + 42456367 + ], + "geometry": [ + { "lat": 40.7900272, "lon": -73.9265913 }, + { "lat": 40.7868635, "lon": -73.9293835 }, + { "lat": 40.7866756, "lon": -73.9295406 }, + { "lat": 40.7865449, "lon": -73.9296395 }, + { "lat": 40.7864180, "lon": -73.9297237 }, + { "lat": 40.7862677, "lon": -73.9298108 }, + { "lat": 40.7861320, "lon": -73.9298814 }, + { "lat": 40.7859790, "lon": -73.9299511 }, + { "lat": 40.7857932, "lon": -73.9300215 }, + { "lat": 40.7856252, "lon": -73.9300735 }, + { "lat": 40.7854702, "lon": -73.9301101 }, + { "lat": 40.7853443, "lon": -73.9301341 }, + { "lat": 40.7851773, "lon": -73.9301509 }, + { "lat": 40.7850155, "lon": -73.9301601 }, + { "lat": 40.7848518, "lon": -73.9301595 }, + { "lat": 40.7847013, "lon": -73.9301498 }, + { "lat": 40.7845645, "lon": -73.9301308 }, + { "lat": 40.7844159, "lon": -73.9301010 }, + { "lat": 40.7842500, "lon": -73.9300580 }, + { "lat": 40.7840701, "lon": -73.9299987 }, + { "lat": 40.7839203, "lon": -73.9299379 }, + { "lat": 40.7837577, "lon": -73.9298618 }, + { "lat": 40.7836102, "lon": -73.9297725 }, + { "lat": 40.7834793, "lon": -73.9296877 }, + { "lat": 40.7832964, "lon": -73.9295555 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Queens, NY", + "tiger:name_base": "Robert F. Kennedy", + "tiger:name_type": "Brg", + "toll": "no", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 947246662, + "bounds": { + "minlat": 40.8656067, + "minlon": -73.9327037, + "maxlat": 40.8664124, + "maxlon": -73.9322336 + }, + "nodes": [ + 8768449700, + 42441726, + 374472690 + ], + "geometry": [ + { "lat": 40.8656067, "lon": -73.9327037 }, + { "lat": 40.8660301, "lon": -73.9324520 }, + { "lat": 40.8664124, "lon": -73.9322336 } + ], + "tags": { + "destination:lanes": "none|none|none|Dyckman Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "none|none|none|slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 947595893, + "bounds": { + "minlat": 40.7729418, + "minlon": -73.9236687, + "maxlat": 40.7755364, + "maxlon": -73.9209031 + }, + "nodes": [ + 8771171515, + 3786957260, + 9179198022, + 3786957261, + 100660413, + 3778245585, + 3778245567, + 100661119, + 3778245564, + 100661122, + 100661123, + 3778245570 + ], + "geometry": [ + { "lat": 40.7755364, "lon": -73.9236687 }, + { "lat": 40.7748879, "lon": -73.9231705 }, + { "lat": 40.7747120, "lon": -73.9230308 }, + { "lat": 40.7745205, "lon": -73.9228667 }, + { "lat": 40.7743347, "lon": -73.9226968 }, + { "lat": 40.7741738, "lon": -73.9225299 }, + { "lat": 40.7740004, "lon": -73.9223454 }, + { "lat": 40.7738386, "lon": -73.9221587 }, + { "lat": 40.7736779, "lon": -73.9219623 }, + { "lat": 40.7735263, "lon": -73.9217632 }, + { "lat": 40.7733745, "lon": -73.9215523 }, + { "lat": 40.7729418, "lon": -73.9209031 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "destination:lanes": "Grand Central Parkway;New York Airports|Grand Central Parkway;New York Airports|Grand Central Parkway;New York Airports;Brooklyn|31st Street;Astoria Boulevard|31st Street;Astoria Boulevard", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "5", + "layer": "1", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "none|none|none|slight_right|slight_right", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 947916171, + "bounds": { + "minlat": 40.7176740, + "minlon": -74.0057722, + "maxlat": 40.7179475, + "maxlon": -74.0055763 + }, + "nodes": [ + 42448171, + 8312361649, + 4143851142 + ], + "geometry": [ + { "lat": 40.7176740, "lon": -74.0057722 }, + { "lat": 40.7177243, "lon": -74.0057362 }, + { "lat": 40.7179475, "lon": -74.0055763 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "||through;right", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 947916172, + "bounds": { + "minlat": 40.7160045, + "minlon": -74.0070792, + "maxlat": 40.7165336, + "maxlon": -74.0066670 + }, + "nodes": [ + 42430550, + 8312361673, + 8312361666, + 42429830 + ], + "geometry": [ + { "lat": 40.7160045, "lon": -74.0070792 }, + { "lat": 40.7160515, "lon": -74.0070426 }, + { "lat": 40.7164945, "lon": -74.0066974 }, + { "lat": 40.7165336, "lon": -74.0066670 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 948556276, + "bounds": { + "minlat": 40.7825440, + "minlon": -73.9570533, + "maxlat": 40.7826198, + "maxlon": -73.9569968 + }, + "nodes": [ + 8780064276, + 8780064284, + 8780064272 + ], + "geometry": [ + { "lat": 40.7826198, "lon": -73.9569968 }, + { "lat": 40.7825645, "lon": -73.9570381 }, + { "lat": 40.7825440, "lon": -73.9570533 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 948556280, + "bounds": { + "minlat": 40.7818054, + "minlon": -73.9570082, + "maxlat": 40.7819708, + "maxlon": -73.9568890 + }, + "nodes": [ + 8780064277, + 8780064281, + 8780064268 + ], + "geometry": [ + { "lat": 40.7818054, "lon": -73.9570082 }, + { "lat": 40.7818654, "lon": -73.9569649 }, + { "lat": 40.7819708, "lon": -73.9568890 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 949942885, + "bounds": { + "minlat": 40.7875058, + "minlon": -73.9285758, + "maxlat": 40.7919833, + "maxlon": -73.9245916 + }, + "nodes": [ + 8794203883, + 9153831931, + 9153831932, + 9153831933, + 9153831930, + 9153831934, + 9153831935, + 9153831936, + 9153831937, + 9153831938, + 100662028 + ], + "geometry": [ + { "lat": 40.7875058, "lon": -73.9285758 }, + { "lat": 40.7878954, "lon": -73.9282313 }, + { "lat": 40.7882760, "lon": -73.9278989 }, + { "lat": 40.7886479, "lon": -73.9275679 }, + { "lat": 40.7890200, "lon": -73.9272394 }, + { "lat": 40.7893778, "lon": -73.9269263 }, + { "lat": 40.7896570, "lon": -73.9266771 }, + { "lat": 40.7900212, "lon": -73.9263576 }, + { "lat": 40.7903786, "lon": -73.9260398 }, + { "lat": 40.7907395, "lon": -73.9257129 }, + { "lat": 40.7919833, "lon": -73.9245916 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "destination:lanes": "Bronx|Bronx|Bronx|Manhattan;Randalls Island|Manhattan;Randalls Island", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "5", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "none|none|none|slight_right|slight_right", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 949958934, + "bounds": { + "minlat": 40.8058413, + "minlon": -73.9242889, + "maxlat": 40.8066858, + "maxlon": -73.9221573 + }, + "nodes": [ + 250546966, + 471241847 + ], + "geometry": [ + { "lat": 40.8066858, "lon": -73.9242889 }, + { "lat": 40.8058413, "lon": -73.9221573 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 949979462, + "bounds": { + "minlat": 40.8015633, + "minlon": -73.9333873, + "maxlat": 40.8016439, + "maxlon": -73.9331973 + }, + "nodes": [ + 7472058123, + 11805832607, + 42422086 + ], + "geometry": [ + { "lat": 40.8015633, "lon": -73.9331973 }, + { "lat": 40.8016032, "lon": -73.9332913 }, + { "lat": 40.8016439, "lon": -73.9333873 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 124th Street", + "oneway": "yes", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 949982659, + "bounds": { + "minlat": 40.7593362, + "minlon": -73.9832115, + "maxlat": 40.7594093, + "maxlon": -73.9831606 + }, + "nodes": [ + 1745991210, + 10172901894, + 8794574445 + ], + "geometry": [ + { "lat": 40.7594093, "lon": -73.9831606 }, + { "lat": 40.7593519, "lon": -73.9832010 }, + { "lat": 40.7593362, "lon": -73.9832115 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 949990384, + "bounds": { + "minlat": 40.8023101, + "minlon": -73.9307833, + "maxlat": 40.8033203, + "maxlon": -73.9292304 + }, + "nodes": [ + 7471942376, + 7738840660, + 9153702845, + 3786728810, + 3786728808, + 3786728809, + 42444733, + 3786728807, + 371239964, + 5525663526, + 9153702844, + 42437043 + ], + "geometry": [ + { "lat": 40.8023101, "lon": -73.9307833 }, + { "lat": 40.8024035, "lon": -73.9307054 }, + { "lat": 40.8024982, "lon": -73.9306229 }, + { "lat": 40.8026057, "lon": -73.9305162 }, + { "lat": 40.8026761, "lon": -73.9304367 }, + { "lat": 40.8027721, "lon": -73.9303141 }, + { "lat": 40.8028348, "lon": -73.9302203 }, + { "lat": 40.8029003, "lon": -73.9301248 }, + { "lat": 40.8029621, "lon": -73.9300190 }, + { "lat": 40.8030416, "lon": -73.9298692 }, + { "lat": 40.8031759, "lon": -73.9295933 }, + { "lat": 40.8033203, "lon": -73.9292304 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Willis Avenue Bridge", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "30 mph", + "name": "Willis Avenue Bridge", + "oneway": "yes", + "sidewalk": "separate", + "source:access": "Rules of the City of New York Title 34 § 4-12(o)(1)", + "surface": "concrete", + "wikidata": "Q2581529", + "wikipedia": "en:Willis Avenue Bridge" + } +}, +{ + "type": "way", + "id": 950037875, + "bounds": { + "minlat": 40.8159779, + "minlon": -73.9312449, + "maxlat": 40.8258304, + "maxlon": -73.9307332 + }, + "nodes": [ + 529054699, + 9166314465, + 2609933844, + 9166288584, + 9166288590, + 9166288589, + 9166288588, + 9166288587, + 9166288586, + 9166288585, + 529054723, + 9166288547, + 529054729, + 9166288546, + 9166288545, + 529054732, + 529054735, + 9166288543, + 9166288542, + 9166288544, + 529054737, + 9166288541, + 9166288566, + 529054742, + 9166288567, + 529054746, + 9166288568, + 529054750, + 9166288569, + 529054753, + 9166288570, + 9166288540, + 529054756, + 9166288571, + 12389944944 + ], + "geometry": [ + { "lat": 40.8258304, "lon": -73.9312449 }, + { "lat": 40.8254630, "lon": -73.9312396 }, + { "lat": 40.8250279, "lon": -73.9312120 }, + { "lat": 40.8238313, "lon": -73.9311139 }, + { "lat": 40.8222800, "lon": -73.9309827 }, + { "lat": 40.8214119, "lon": -73.9309115 }, + { "lat": 40.8209774, "lon": -73.9308799 }, + { "lat": 40.8203199, "lon": -73.9308337 }, + { "lat": 40.8195530, "lon": -73.9307796 }, + { "lat": 40.8190022, "lon": -73.9307443 }, + { "lat": 40.8189134, "lon": -73.9307383 }, + { "lat": 40.8187883, "lon": -73.9307332 }, + { "lat": 40.8186775, "lon": -73.9307332 }, + { "lat": 40.8185743, "lon": -73.9307349 }, + { "lat": 40.8184644, "lon": -73.9307424 }, + { "lat": 40.8183520, "lon": -73.9307529 }, + { "lat": 40.8182417, "lon": -73.9307685 }, + { "lat": 40.8181320, "lon": -73.9307880 }, + { "lat": 40.8180222, "lon": -73.9308113 }, + { "lat": 40.8179135, "lon": -73.9308375 }, + { "lat": 40.8178127, "lon": -73.9308649 }, + { "lat": 40.8174971, "lon": -73.9309593 }, + { "lat": 40.8173797, "lon": -73.9309896 }, + { "lat": 40.8172710, "lon": -73.9310155 }, + { "lat": 40.8171652, "lon": -73.9310376 }, + { "lat": 40.8170544, "lon": -73.9310568 }, + { "lat": 40.8169443, "lon": -73.9310723 }, + { "lat": 40.8168348, "lon": -73.9310832 }, + { "lat": 40.8167233, "lon": -73.9310904 }, + { "lat": 40.8166099, "lon": -73.9310909 }, + { "lat": 40.8164834, "lon": -73.9310881 }, + { "lat": 40.8163716, "lon": -73.9310832 }, + { "lat": 40.8162704, "lon": -73.9310743 }, + { "lat": 40.8161298, "lon": -73.9310524 }, + { "lat": 40.8159779, "lon": -73.9310311 } + ], + "tags": { + "bridge": "yes", + "destination:lanes": "none|Willis Avenue;Third Avenue Bridge|East 138th Street;Madison Avenue Bridge", + "ele": "1", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 950046315, + "bounds": { + "minlat": 40.7632690, + "minlon": -73.9808967, + "maxlat": 40.7633444, + "maxlon": -73.9808412 + }, + "nodes": [ + 8795161045, + 11296226838, + 8795135973 + ], + "geometry": [ + { "lat": 40.7633444, "lon": -73.9808412 }, + { "lat": 40.7632834, "lon": -73.9808861 }, + { "lat": 40.7632690, "lon": -73.9808967 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 950231624, + "bounds": { + "minlat": 40.7955626, + "minlon": -73.9472682, + "maxlat": 40.7959370, + "maxlon": -73.9468603 + }, + "nodes": [ + 8796922026, + 8796922091, + 8796922027, + 8796854858 + ], + "geometry": [ + { "lat": 40.7959370, "lon": -73.9471099 }, + { "lat": 40.7958437, "lon": -73.9471836 }, + { "lat": 40.7957346, "lon": -73.9472682 }, + { "lat": 40.7955626, "lon": -73.9468603 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 951539211, + "bounds": { + "minlat": 40.8006594, + "minlon": -73.9493491, + "maxlat": 40.8009070, + "maxlon": -73.9491760 + }, + "nodes": [ + 8807524557, + 9888996936, + 8807524452 + ], + "geometry": [ + { "lat": 40.8009070, "lon": -73.9491760 }, + { "lat": 40.8007988, "lon": -73.9492517 }, + { "lat": 40.8006594, "lon": -73.9493491 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 951731209, + "bounds": { + "minlat": 40.7970444, + "minlon": -73.9462257, + "maxlat": 40.7974316, + "maxlon": -73.9456472 + }, + "nodes": [ + 8809269782, + 8809269710, + 8809259411, + 8809269700, + 8809269638, + 8809269858, + 8809269730, + 8809259384 + ], + "geometry": [ + { "lat": 40.7972352, "lon": -73.9462257 }, + { "lat": 40.7973315, "lon": -73.9461532 }, + { "lat": 40.7974098, "lon": -73.9460938 }, + { "lat": 40.7974316, "lon": -73.9460462 }, + { "lat": 40.7972582, "lon": -73.9456472 }, + { "lat": 40.7972281, "lon": -73.9456486 }, + { "lat": 40.7971433, "lon": -73.9457059 }, + { "lat": 40.7970444, "lon": -73.9457785 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 951731223, + "bounds": { + "minlat": 40.7987276, + "minlon": -73.9449933, + "maxlat": 40.7990883, + "maxlon": -73.9445687 + }, + "nodes": [ + 8809259391, + 8809269639, + 8809269732, + 8809259344, + 8809269843 + ], + "geometry": [ + { "lat": 40.7990883, "lon": -73.9448756 }, + { "lat": 40.7990087, "lon": -73.9449344 }, + { "lat": 40.7989255, "lon": -73.9449933 }, + { "lat": 40.7988955, "lon": -73.9449755 }, + { "lat": 40.7987276, "lon": -73.9445687 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 951750859, + "bounds": { + "minlat": 40.7967894, + "minlon": -73.9401483, + "maxlat": 40.7970235, + "maxlon": -73.9399825 + }, + "nodes": [ + 8809432358, + 8809432368, + 8809432282 + ], + "geometry": [ + { "lat": 40.7970235, "lon": -73.9399825 }, + { "lat": 40.7969379, "lon": -73.9400431 }, + { "lat": 40.7967894, "lon": -73.9401483 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 952457687, + "bounds": { + "minlat": 40.7427523, + "minlon": -73.9816131, + "maxlat": 40.7430241, + "maxlon": -73.9814160 + }, + "nodes": [ + 8815548638, + 9143542462, + 10169544589, + 8815548640, + 8815548639 + ], + "geometry": [ + { "lat": 40.7430241, "lon": -73.9814160 }, + { "lat": 40.7429850, "lon": -73.9814435 }, + { "lat": 40.7429766, "lon": -73.9814504 }, + { "lat": 40.7429475, "lon": -73.9814744 }, + { "lat": 40.7427523, "lon": -73.9816131 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 952598867, + "bounds": { + "minlat": 40.7297588, + "minlon": -73.9181547, + "maxlat": 40.7299577, + "maxlon": -73.9180812 + }, + "nodes": [ + 8816929120, + 8816929121, + 8816929122 + ], + "geometry": [ + { "lat": 40.7299577, "lon": -73.9180812 }, + { "lat": 40.7298806, "lon": -73.9181087 }, + { "lat": 40.7297588, "lon": -73.9181547 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 952703047, + "bounds": { + "minlat": 40.7236607, + "minlon": -74.0079501, + "maxlat": 40.7237633, + "maxlon": -74.0079290 + }, + "nodes": [ + 4142105822, + 12417264049 + ], + "geometry": [ + { "lat": 40.7236607, "lon": -74.0079501 }, + { "lat": 40.7237633, "lon": -74.0079290 } + ], + "tags": { + "bicycle": "yes", + "change": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "noref": "yes", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|slight_right|slight_right", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 952703048, + "bounds": { + "minlat": 40.7231886, + "minlon": -74.0077224, + "maxlat": 40.7234955, + "maxlon": -74.0072170 + }, + "nodes": [ + 4629486879, + 4602429335, + 4142105817, + 4142105813 + ], + "geometry": [ + { "lat": 40.7234955, "lon": -74.0077224 }, + { "lat": 40.7234765, "lon": -74.0076951 }, + { "lat": 40.7232094, "lon": -74.0073379 }, + { "lat": 40.7231886, "lon": -74.0072170 } + ], + "tags": { + "bicycle": "yes", + "change": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 952718789, + "bounds": { + "minlat": 40.7468906, + "minlon": -73.9208044, + "maxlat": 40.7491687, + "maxlon": -73.9203410 + }, + "nodes": [ + 42815084, + 8593852968, + 8506374673, + 12374185408, + 1414043438, + 5444865968, + 10762234009, + 11694583060, + 10069648912, + 42900618 + ], + "geometry": [ + { "lat": 40.7491687, "lon": -73.9203410 }, + { "lat": 40.7491012, "lon": -73.9203536 }, + { "lat": 40.7489401, "lon": -73.9203860 }, + { "lat": 40.7487475, "lon": -73.9204247 }, + { "lat": 40.7483334, "lon": -73.9205080 }, + { "lat": 40.7482288, "lon": -73.9205290 }, + { "lat": 40.7477745, "lon": -73.9206223 }, + { "lat": 40.7471242, "lon": -73.9207558 }, + { "lat": 40.7469832, "lon": -73.9207851 }, + { "lat": 40.7468906, "lon": -73.9208044 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 953145915, + "bounds": { + "minlat": 40.8370165, + "minlon": -73.9223720, + "maxlat": 40.8375821, + "maxlon": -73.9223485 + }, + "nodes": [ + 2912071029, + 10790894544 + ], + "geometry": [ + { "lat": 40.8375821, "lon": -73.9223485 }, + { "lat": 40.8370165, "lon": -73.9223720 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 953152760, + "bounds": { + "minlat": 40.8396004, + "minlon": -73.9215909, + "maxlat": 40.8403185, + "maxlon": -73.9214151 + }, + "nodes": [ + 2912071067, + 11042965102, + 2912071010, + 12163756877, + 2912071011, + 12163756876, + 12163756875, + 2912071012, + 10790894543, + 2912071013 + ], + "geometry": [ + { "lat": 40.8403185, "lon": -73.9215909 }, + { "lat": 40.8402244, "lon": -73.9215804 }, + { "lat": 40.8400694, "lon": -73.9214924 }, + { "lat": 40.8400318, "lon": -73.9214735 }, + { "lat": 40.8400001, "lon": -73.9214615 }, + { "lat": 40.8399655, "lon": -73.9214525 }, + { "lat": 40.8399285, "lon": -73.9214480 }, + { "lat": 40.8398883, "lon": -73.9214482 }, + { "lat": 40.8397875, "lon": -73.9214474 }, + { "lat": 40.8396004, "lon": -73.9214151 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 953152761, + "bounds": { + "minlat": 40.8395705, + "minlon": -73.9212982, + "maxlat": 40.8398996, + "maxlon": -73.9212505 + }, + "nodes": [ + 2912071044, + 2912071043, + 12163756856, + 3809988762 + ], + "geometry": [ + { "lat": 40.8395705, "lon": -73.9212982 }, + { "lat": 40.8398238, "lon": -73.9212563 }, + { "lat": 40.8398598, "lon": -73.9212526 }, + { "lat": 40.8398996, "lon": -73.9212505 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "|designated|", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 953306974, + "bounds": { + "minlat": 40.8314909, + "minlon": -73.9355196, + "maxlat": 40.8317579, + "maxlon": -73.9353874 + }, + "nodes": [ + 5333189421, + 589927901 + ], + "geometry": [ + { "lat": 40.8314909, "lon": -73.9355196 }, + { "lat": 40.8317579, "lon": -73.9353874 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "8th;Harlem River", + "tiger:name_base_1": "Frederick Douglass", + "tiger:name_type": "Ave;Dr", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 953412923, + "bounds": { + "minlat": 40.7501525, + "minlon": -73.9395999, + "maxlat": 40.7504616, + "maxlon": -73.9388549 + }, + "nodes": [ + 6813394098, + 6813394107, + 592643540 + ], + "geometry": [ + { "lat": 40.7501525, "lon": -73.9388549 }, + { "lat": 40.7504319, "lon": -73.9395283 }, + { "lat": 40.7504616, "lon": -73.9395999 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "name": "Queensboro Plaza", + "oneway": "yes", + "ref": "NY 25", + "surface": "asphalt", + "turn:lanes": "none|none|merge_to_left" + } +}, +{ + "type": "way", + "id": 953412925, + "bounds": { + "minlat": 40.7504616, + "minlon": -73.9403589, + "maxlat": 40.7507764, + "maxlon": -73.9395999 + }, + "nodes": [ + 592643540, + 6813394100, + 8824666179 + ], + "geometry": [ + { "lat": 40.7504616, "lon": -73.9395999 }, + { "lat": 40.7504895, "lon": -73.9396677 }, + { "lat": 40.7507764, "lon": -73.9403589 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "maxheight": "below_default", + "name": "Queensboro Plaza", + "oneway": "yes", + "ref": "NY 25" + } +}, +{ + "type": "way", + "id": 953412926, + "bounds": { + "minlat": 40.7507764, + "minlon": -73.9406430, + "maxlat": 40.7508942, + "maxlon": -73.9403589 + }, + "nodes": [ + 8824666179, + 276204253 + ], + "geometry": [ + { "lat": 40.7507764, "lon": -73.9403589 }, + { "lat": 40.7508942, "lon": -73.9406430 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "1", + "name": "Queensboro Plaza", + "oneway": "yes", + "ref": "NY 25" + } +}, +{ + "type": "way", + "id": 953810797, + "bounds": { + "minlat": 40.7830347, + "minlon": -73.9440388, + "maxlat": 40.7833650, + "maxlon": -73.9437748 + }, + "nodes": [ + 42433402, + 42433403, + 4779073677 + ], + "geometry": [ + { "lat": 40.7833650, "lon": -73.9437748 }, + { "lat": 40.7831103, "lon": -73.9439825 }, + { "lat": 40.7830347, "lon": -73.9440388 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 953810800, + "bounds": { + "minlat": 40.7833650, + "minlon": -73.9437748, + "maxlat": 40.7840873, + "maxlon": -73.9429425 + }, + "nodes": [ + 3631837585, + 42433379, + 9178958211, + 42433382, + 9178958212, + 42433385, + 42433400, + 9178958214, + 42433402 + ], + "geometry": [ + { "lat": 40.7840873, "lon": -73.9429425 }, + { "lat": 40.7839301, "lon": -73.9431666 }, + { "lat": 40.7838537, "lon": -73.9432668 }, + { "lat": 40.7837768, "lon": -73.9433680 }, + { "lat": 40.7837003, "lon": -73.9434635 }, + { "lat": 40.7836354, "lon": -73.9435282 }, + { "lat": 40.7835542, "lon": -73.9436069 }, + { "lat": 40.7834508, "lon": -73.9437010 }, + { "lat": 40.7833650, "lon": -73.9437748 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 953810802, + "bounds": { + "minlat": 40.7850838, + "minlon": -73.9407500, + "maxlat": 40.7852012, + "maxlon": -73.9405145 + }, + "nodes": [ + 42433490, + 8828070184 + ], + "geometry": [ + { "lat": 40.7852012, "lon": -73.9405145 }, + { "lat": 40.7850838, "lon": -73.9407500 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 953810807, + "bounds": { + "minlat": 40.7845470, + "minlon": -73.9418238, + "maxlat": 40.7850838, + "maxlon": -73.9407500 + }, + "nodes": [ + 8828070184, + 3631837584 + ], + "geometry": [ + { "lat": 40.7850838, "lon": -73.9407500 }, + { "lat": 40.7845470, "lon": -73.9418238 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "none|none|East 71st Street;East 96th Street", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 953819148, + "bounds": { + "minlat": 40.7797423, + "minlon": -73.9443667, + "maxlat": 40.7797691, + "maxlon": -73.9442883 + }, + "nodes": [ + 8828140387, + 42428052 + ], + "geometry": [ + { "lat": 40.7797691, "lon": -73.9443667 }, + { "lat": 40.7797423, "lon": -73.9442883 } + ], + "tags": { + "highway": "residential", + "name": "East 92nd Street", + "name:ru": "Восточная 92-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 953819149, + "bounds": { + "minlat": 40.7797691, + "minlon": -73.9447095, + "maxlat": 40.7799114, + "maxlon": -73.9443667 + }, + "nodes": [ + 8828140385, + 6185259910, + 8828140387 + ], + "geometry": [ + { "lat": 40.7799114, "lon": -73.9447095 }, + { "lat": 40.7798048, "lon": -73.9444584 }, + { "lat": 40.7797691, "lon": -73.9443667 } + ], + "tags": { + "highway": "residential", + "name": "East 92nd Street", + "name:ru": "Восточная 92-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 953819150, + "bounds": { + "minlat": 40.7792798, + "minlon": -73.9446839, + "maxlat": 40.7796870, + "maxlon": -73.9443831 + }, + "nodes": [ + 6185259892, + 10581577906 + ], + "geometry": [ + { "lat": 40.7796870, "lon": -73.9443831 }, + { "lat": 40.7792798, "lon": -73.9446839 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "6", + "lanes:backward": "3", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "oneway": "no", + "turn:lanes:backward": "through|through|right", + "turn:lanes:forward": "through|through|through", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 953819151, + "bounds": { + "minlat": 40.7802167, + "minlon": -73.9469228, + "maxlat": 40.7806943, + "maxlon": -73.9465727 + }, + "nodes": [ + 8828140382, + 6185259891, + 42448745 + ], + "geometry": [ + { "lat": 40.7802167, "lon": -73.9469228 }, + { "lat": 40.7806193, "lon": -73.9466246 }, + { "lat": 40.7806943, "lon": -73.9465727 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 953819152, + "bounds": { + "minlat": 40.7796870, + "minlon": -73.9443831, + "maxlat": 40.7797691, + "maxlon": -73.9443667 + }, + "nodes": [ + 8828140387, + 6185259892 + ], + "geometry": [ + { "lat": 40.7797691, "lon": -73.9443667 }, + { "lat": 40.7796870, "lon": -73.9443831 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 954178925, + "bounds": { + "minlat": 40.7342488, + "minlon": -73.9804425, + "maxlat": 40.7344252, + "maxlon": -73.9803078 + }, + "nodes": [ + 8831369657, + 4298760176, + 42455887 + ], + "geometry": [ + { "lat": 40.7342488, "lon": -73.9804425 }, + { "lat": 40.7343719, "lon": -73.9803485 }, + { "lat": 40.7344252, "lon": -73.9803078 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 954178926, + "bounds": { + "minlat": 40.7344252, + "minlon": -73.9803078, + "maxlat": 40.7350119, + "maxlon": -73.9798916 + }, + "nodes": [ + 42455887, + 4298760165, + 12179607168, + 3601295728, + 42439181 + ], + "geometry": [ + { "lat": 40.7344252, "lon": -73.9803078 }, + { "lat": 40.7344841, "lon": -73.9802658 }, + { "lat": 40.7348899, "lon": -73.9799760 }, + { "lat": 40.7349363, "lon": -73.9799429 }, + { "lat": 40.7350119, "lon": -73.9798916 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 954311187, + "bounds": { + "minlat": 40.7213329, + "minlon": -73.9455960, + "maxlat": 40.7213919, + "maxlon": -73.9455009 + }, + "nodes": [ + 2987758898, + 2987758899 + ], + "geometry": [ + { "lat": 40.7213329, "lon": -73.9455960 }, + { "lat": 40.7213919, "lon": -73.9455009 } + ], + "tags": { + "highway": "residential", + "name": "Newton Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 954311188, + "bounds": { + "minlat": 40.7207864, + "minlon": -73.9455960, + "maxlat": 40.7213329, + "maxlon": -73.9450077 + }, + "nodes": [ + 2987758898, + 6228788710, + 2987758862, + 2987758863, + 6228788715, + 2987758900 + ], + "geometry": [ + { "lat": 40.7213329, "lon": -73.9455960 }, + { "lat": 40.7212968, "lon": -73.9455571 }, + { "lat": 40.7211543, "lon": -73.9454038 }, + { "lat": 40.7208667, "lon": -73.9450967 }, + { "lat": 40.7208417, "lon": -73.9450682 }, + { "lat": 40.7207864, "lon": -73.9450077 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "through|through|right", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 954314952, + "bounds": { + "minlat": 40.8744952, + "minlon": -73.9777910, + "maxlat": 40.8746660, + "maxlon": -73.9774811 + }, + "nodes": [ + 8832577925, + 8832577926 + ], + "geometry": [ + { "lat": 40.8746660, "lon": -73.9777910 }, + { "lat": 40.8744952, "lon": -73.9774811 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Phelps Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Phelps", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 954314953, + "bounds": { + "minlat": 40.8746660, + "minlon": -73.9783773, + "maxlat": 40.8749890, + "maxlon": -73.9777910 + }, + "nodes": [ + 475232667, + 8832577925 + ], + "geometry": [ + { "lat": 40.8749890, "lon": -73.9783773 }, + { "lat": 40.8746660, "lon": -73.9777910 } + ], + "tags": { + "highway": "residential", + "name": "Phelps Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Phelps", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 954325675, + "bounds": { + "minlat": 40.8624185, + "minlon": -73.9868900, + "maxlat": 40.8624405, + "maxlon": -73.9868411 + }, + "nodes": [ + 8832653000, + 6109949844 + ], + "geometry": [ + { "lat": 40.8624185, "lon": -73.9868900 }, + { "lat": 40.8624405, "lon": -73.9868411 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 954325676, + "bounds": { + "minlat": 40.8623771, + "minlon": -73.9869277, + "maxlat": 40.8624185, + "maxlon": -73.9868900 + }, + "nodes": [ + 8832652999, + 8832653000 + ], + "geometry": [ + { "lat": 40.8623771, "lon": -73.9869277 }, + { "lat": 40.8624185, "lon": -73.9868900 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 954503215, + "bounds": { + "minlat": 40.7020421, + "minlon": -73.9925813, + "maxlat": 40.7021315, + "maxlon": -73.9924479 + }, + "nodes": [ + 8834321011, + 12867102456, + 42483438 + ], + "geometry": [ + { "lat": 40.7020421, "lon": -73.9924479 }, + { "lat": 40.7020617, "lon": -73.9924771 }, + { "lat": 40.7021315, "lon": -73.9925813 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz" + } +}, +{ + "type": "way", + "id": 954503819, + "bounds": { + "minlat": 40.7870011, + "minlon": -73.9808538, + "maxlat": 40.7892552, + "maxlon": -73.9755093 + }, + "nodes": [ + 42442475, + 6207264904, + 10039932500, + 8699239237, + 1061531839, + 42428670, + 8699239243, + 10039741683, + 42431034, + 8727756050, + 10039741695, + 42441569 + ], + "geometry": [ + { "lat": 40.7870011, "lon": -73.9755093 }, + { "lat": 40.7870421, "lon": -73.9756066 }, + { "lat": 40.7870571, "lon": -73.9756421 }, + { "lat": 40.7875802, "lon": -73.9768786 }, + { "lat": 40.7876288, "lon": -73.9769983 }, + { "lat": 40.7877015, "lon": -73.9771707 }, + { "lat": 40.7877423, "lon": -73.9772675 }, + { "lat": 40.7881487, "lon": -73.9782289 }, + { "lat": 40.7882037, "lon": -73.9783631 }, + { "lat": 40.7882555, "lon": -73.9784850 }, + { "lat": 40.7892135, "lon": -73.9807551 }, + { "lat": 40.7892552, "lon": -73.9808538 } + ], + "tags": { + "alt_name": "West 85 Street", + "highway": "residential", + "lane_markings": "no", + "name": "West 85th Street", + "name:ru": "Западная 85-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644879", + "wikipedia": "en:85th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 954503820, + "bounds": { + "minlat": 40.7872801, + "minlon": -73.9753024, + "maxlat": 40.7876861, + "maxlon": -73.9750103 + }, + "nodes": [ + 7194269381, + 9547662379, + 42442480 + ], + "geometry": [ + { "lat": 40.7872801, "lon": -73.9753024 }, + { "lat": 40.7875910, "lon": -73.9750779 }, + { "lat": 40.7876861, "lon": -73.9750103 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 954505859, + "bounds": { + "minlat": 40.8041454, + "minlon": -73.9122889, + "maxlat": 40.8044365, + "maxlon": -73.9118438 + }, + "nodes": [ + 8834383059, + 5944903667, + 13003790100, + 42728734 + ], + "geometry": [ + { "lat": 40.8041454, "lon": -73.9122889 }, + { "lat": 40.8042876, "lon": -73.9119971 }, + { "lat": 40.8043624, "lon": -73.9119167 }, + { "lat": 40.8044365, "lon": -73.9118438 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "name_1": "Houghton Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "Houghton", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 954520388, + "bounds": { + "minlat": 40.7573838, + "minlon": -73.9968456, + "maxlat": 40.7577433, + "maxlon": -73.9960075 + }, + "nodes": [ + 8834806807, + 8288270407, + 42423885 + ], + "geometry": [ + { "lat": 40.7573838, "lon": -73.9960075 }, + { "lat": 40.7576965, "lon": -73.9967181 }, + { "lat": 40.7577433, "lon": -73.9968456 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "none|right" + } +}, +{ + "type": "way", + "id": 954520389, + "bounds": { + "minlat": 40.7585449, + "minlon": -73.9962591, + "maxlat": 40.7589842, + "maxlon": -73.9959405 + }, + "nodes": [ + 11225165128, + 13859163542, + 10169614505, + 42455751 + ], + "geometry": [ + { "lat": 40.7585449, "lon": -73.9962591 }, + { "lat": 40.7586692, "lon": -73.9961691 }, + { "lat": 40.7589043, "lon": -73.9959987 }, + { "lat": 40.7589842, "lon": -73.9959405 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|left||||", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 954520390, + "bounds": { + "minlat": 40.7577433, + "minlon": -73.9978539, + "maxlat": 40.7581469, + "maxlon": -73.9968456 + }, + "nodes": [ + 42423885, + 8288270409, + 427804196 + ], + "geometry": [ + { "lat": 40.7577433, "lon": -73.9968456 }, + { "lat": 40.7577955, "lon": -73.9969895 }, + { "lat": 40.7581469, "lon": -73.9978539 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 954522462, + "bounds": { + "minlat": 40.7502746, + "minlon": -73.9402223, + "maxlat": 40.7504713, + "maxlon": -73.9397665 + }, + "nodes": [ + 8834795688, + 4457117585, + 2969267808 + ], + "geometry": [ + { "lat": 40.7504713, "lon": -73.9402223 }, + { "lat": 40.7503042, "lon": -73.9398300 }, + { "lat": 40.7502746, "lon": -73.9397665 } + ], + "tags": { + "bicycle": "use_sidepath", + "foot": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Queensboro Plaza", + "oneway": "yes", + "ref": "NY 25", + "sidewalk:both": "no", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 954540476, + "bounds": { + "minlat": 40.8056584, + "minlon": -73.9227417, + "maxlat": 40.8065322, + "maxlon": -73.9206226 + }, + "nodes": [ + 42747188, + 9156979761, + 42739603, + 8834998407 + ], + "geometry": [ + { "lat": 40.8056584, "lon": -73.9206226 }, + { "lat": 40.8056862, "lon": -73.9207351 }, + { "lat": 40.8059892, "lon": -73.9214566 }, + { "lat": 40.8065322, "lon": -73.9227417 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 954540478, + "bounds": { + "minlat": 40.8065322, + "minlon": -73.9230165, + "maxlat": 40.8066513, + "maxlon": -73.9227417 + }, + "nodes": [ + 8834998407, + 42724756 + ], + "geometry": [ + { "lat": 40.8065322, "lon": -73.9227417 }, + { "lat": 40.8066513, "lon": -73.9230165 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "East 135th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 954541805, + "bounds": { + "minlat": 40.7176795, + "minlon": -73.9856543, + "maxlat": 40.7179286, + "maxlon": -73.9848249 + }, + "nodes": [ + 5173594703, + 12954823195, + 12954823194, + 3630219668 + ], + "geometry": [ + { "lat": 40.7176795, "lon": -73.9848249 }, + { "lat": 40.7178906, "lon": -73.9855279 }, + { "lat": 40.7179168, "lon": -73.9856149 }, + { "lat": 40.7179286, "lon": -73.9856543 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "right", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 954552256, + "bounds": { + "minlat": 40.7552202, + "minlon": -73.9966484, + "maxlat": 40.7556805, + "maxlon": -73.9962926 + }, + "nodes": [ + 8835121396, + 427842140, + 9971300857, + 5889481217, + 42434429 + ], + "geometry": [ + { "lat": 40.7556805, "lon": -73.9962926 }, + { "lat": 40.7553882, "lon": -73.9965093 }, + { "lat": 40.7553218, "lon": -73.9965583 }, + { "lat": 40.7552809, "lon": -73.9965929 }, + { "lat": 40.7552202, "lon": -73.9966484 } + ], + "tags": { + "bicycle": "no", + "destination": "36th Street;Downtown;Madison Square Garden", + "destination:ref:to": "I 495 East", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "left|left;through|through|through|slight_right" + } +}, +{ + "type": "way", + "id": 954565570, + "bounds": { + "minlat": 40.8175275, + "minlon": -73.9251816, + "maxlat": 40.8180211, + "maxlon": -73.9232741 + }, + "nodes": [ + 42778545, + 9903127457, + 4207863936 + ], + "geometry": [ + { "lat": 40.8180211, "lon": -73.9251816 }, + { "lat": 40.8180028, "lon": -73.9251117 }, + { "lat": 40.8175275, "lon": -73.9232741 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 149th Street", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 954569521, + "bounds": { + "minlat": 40.7693505, + "minlon": -73.9171913, + "maxlat": 40.7698008, + "maxlon": -73.9168056 + }, + "nodes": [ + 8835302348, + 7659376766, + 7732086302, + 276209270 + ], + "geometry": [ + { "lat": 40.7693505, "lon": -73.9171913 }, + { "lat": 40.7695584, "lon": -73.9170106 }, + { "lat": 40.7697209, "lon": -73.9168665 }, + { "lat": 40.7698008, "lon": -73.9168056 } + ], + "tags": { + "foot": "no", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "33rd Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through;right|right" + } +}, +{ + "type": "way", + "id": 954569522, + "bounds": { + "minlat": 40.7677404, + "minlon": -73.9184983, + "maxlat": 40.7693505, + "maxlon": -73.9171913 + }, + "nodes": [ + 42832979, + 3570250042, + 8835302348 + ], + "geometry": [ + { "lat": 40.7677404, "lon": -73.9184983 }, + { "lat": 40.7678080, "lon": -73.9184435 }, + { "lat": 40.7693505, "lon": -73.9171913 } + ], + "tags": { + "foot": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "33rd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 954569523, + "bounds": { + "minlat": 40.7654868, + "minlon": -73.9184983, + "maxlat": 40.7677404, + "maxlon": -73.9137055 + }, + "nodes": [ + 42832979, + 3570250040, + 3570250037, + 42832982, + 3570250036, + 3570250033, + 42832985, + 3570250032, + 3570250029, + 42832988, + 3570250028, + 3570250024, + 42832991, + 3570250022, + 3570250014, + 42832996, + 3570250012, + 3570250007, + 3570250005, + 42832999 + ], + "geometry": [ + { "lat": 40.7677404, "lon": -73.9184983 }, + { "lat": 40.7677030, "lon": -73.9184168 }, + { "lat": 40.7673987, "lon": -73.9177717 }, + { "lat": 40.7673629, "lon": -73.9176956 }, + { "lat": 40.7673309, "lon": -73.9176277 }, + { "lat": 40.7670212, "lon": -73.9169712 }, + { "lat": 40.7669894, "lon": -73.9169009 }, + { "lat": 40.7669569, "lon": -73.9168292 }, + { "lat": 40.7666488, "lon": -73.9161758 }, + { "lat": 40.7666143, "lon": -73.9161024 }, + { "lat": 40.7665805, "lon": -73.9160303 }, + { "lat": 40.7662698, "lon": -73.9153734 }, + { "lat": 40.7662344, "lon": -73.9152974 }, + { "lat": 40.7662040, "lon": -73.9152317 }, + { "lat": 40.7658939, "lon": -73.9145691 }, + { "lat": 40.7658595, "lon": -73.9144964 }, + { "lat": 40.7658294, "lon": -73.9144325 }, + { "lat": 40.7656930, "lon": -73.9141462 }, + { "lat": 40.7655315, "lon": -73.9138021 }, + { "lat": 40.7654868, "lon": -73.9137055 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "28th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 954598272, + "bounds": { + "minlat": 40.8567774, + "minlon": -73.9146059, + "maxlat": 40.8569264, + "maxlon": -73.9143404 + }, + "nodes": [ + 8835736183, + 8835736184, + 8835736185, + 8835736186 + ], + "geometry": [ + { "lat": 40.8567774, "lon": -73.9143404 }, + { "lat": 40.8568418, "lon": -73.9143993 }, + { "lat": 40.8568804, "lon": -73.9144601 }, + { "lat": 40.8569264, "lon": -73.9146059 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 954598274, + "bounds": { + "minlat": 40.8563600, + "minlon": -73.9119319, + "maxlat": 40.8566226, + "maxlon": -73.9111726 + }, + "nodes": [ + 8835736196, + 8835736197, + 8835736198, + 8835736199, + 8835736200 + ], + "geometry": [ + { "lat": 40.8566226, "lon": -73.9119319 }, + { "lat": 40.8565631, "lon": -73.9117583 }, + { "lat": 40.8565123, "lon": -73.9116136 }, + { "lat": 40.8563984, "lon": -73.9113130 }, + { "lat": 40.8563600, "lon": -73.9111726 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 954600293, + "bounds": { + "minlat": 40.8081066, + "minlon": -73.9901235, + "maxlat": 40.8083198, + "maxlon": -73.9899759 + }, + "nodes": [ + 4215808375, + 4215808374 + ], + "geometry": [ + { "lat": 40.8083198, "lon": -73.9899759 }, + { "lat": 40.8081066, "lon": -73.9901235 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes": "||right" + } +}, +{ + "type": "way", + "id": 954600294, + "bounds": { + "minlat": 40.8075930, + "minlon": -73.9905352, + "maxlat": 40.8081066, + "maxlon": -73.9901235 + }, + "nodes": [ + 4215808374, + 4215808373 + ], + "geometry": [ + { "lat": 40.8081066, "lon": -73.9901235 }, + { "lat": 40.8075930, "lon": -73.9905352 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes": "slight_left;through|none" + } +}, +{ + "type": "way", + "id": 954600295, + "bounds": { + "minlat": 40.8070438, + "minlon": -73.9910183, + "maxlat": 40.8071751, + "maxlon": -73.9909135 + }, + "nodes": [ + 8835728605, + 4215808369 + ], + "geometry": [ + { "lat": 40.8071751, "lon": -73.9909135 }, + { "lat": 40.8070438, "lon": -73.9910183 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes": "||right" + } +}, +{ + "type": "way", + "id": 954610888, + "bounds": { + "minlat": 40.8786699, + "minlon": -73.9811152, + "maxlat": 40.8794895, + "maxlon": -73.9802258 + }, + "nodes": [ + 8835843091, + 6374848003, + 12021734801, + 12021734800, + 103100561 + ], + "geometry": [ + { "lat": 40.8786699, "lon": -73.9811152 }, + { "lat": 40.8792276, "lon": -73.9804335 }, + { "lat": 40.8793335, "lon": -73.9803197 }, + { "lat": 40.8794068, "lon": -73.9802752 }, + { "lat": 40.8794895, "lon": -73.9802258 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxheight": "13'7\"", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "oneway": "yes", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 954620260, + "bounds": { + "minlat": 40.8064888, + "minlon": -73.9911655, + "maxlat": 40.8065551, + "maxlon": -73.9907133 + }, + "nodes": [ + 5342516901, + 3480342141, + 7672268996, + 103137025 + ], + "geometry": [ + { "lat": 40.8064888, "lon": -73.9907133 }, + { "lat": 40.8065551, "lon": -73.9910028 }, + { "lat": 40.8065546, "lon": -73.9910278 }, + { "lat": 40.8065520, "lon": -73.9911655 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "City Place", + "oneway": "yes", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 954636090, + "bounds": { + "minlat": 40.8062870, + "minlon": -73.9913707, + "maxlat": 40.8065520, + "maxlon": -73.9911655 + }, + "nodes": [ + 8836062328, + 7672269007, + 103137025 + ], + "geometry": [ + { "lat": 40.8062870, "lon": -73.9913707 }, + { "lat": 40.8064465, "lon": -73.9912472 }, + { "lat": 40.8065520, "lon": -73.9911655 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 954649064, + "bounds": { + "minlat": 40.7286358, + "minlon": -73.9779904, + "maxlat": 40.7288492, + "maxlon": -73.9778367 + }, + "nodes": [ + 8836185937, + 7145875535 + ], + "geometry": [ + { "lat": 40.7286358, "lon": -73.9779904 }, + { "lat": 40.7288492, "lon": -73.9778367 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 954649550, + "bounds": { + "minlat": 40.7278864, + "minlon": -73.9784903, + "maxlat": 40.7279658, + "maxlon": -73.9784328 + }, + "nodes": [ + 4502505662, + 8309479473, + 4502505659 + ], + "geometry": [ + { "lat": 40.7279658, "lon": -73.9784328 }, + { "lat": 40.7279429, "lon": -73.9784494 }, + { "lat": 40.7278864, "lon": -73.9784903 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 954659191, + "bounds": { + "minlat": 40.7434315, + "minlon": -73.9961302, + "maxlat": 40.7436348, + "maxlon": -73.9959834 + }, + "nodes": [ + 8836214006, + 10171337718, + 42434270 + ], + "geometry": [ + { "lat": 40.7436348, "lon": -73.9959834 }, + { "lat": 40.7434930, "lon": -73.9960853 }, + { "lat": 40.7434315, "lon": -73.9961302 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "oneway:bicycle": "yes", + "surface": "asphalt", + "turn:lanes": "none|through|none|none", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 954822310, + "bounds": { + "minlat": 40.8593286, + "minlon": -73.9741980, + "maxlat": 40.8611668, + "maxlon": -73.9734062 + }, + "nodes": [ + 8837676700, + 76465380, + 7926202591, + 12020552511, + 76465381, + 7926202609, + 12020552512, + 76465382, + 12020552513, + 7926202627, + 76465383, + 12020552514, + 76465384, + 12020552515, + 7926202585, + 299386290, + 7926202602, + 12020552516, + 299386295, + 7926202620, + 12020552517, + 7926187978, + 76465385, + 7926202595, + 7926202613, + 12020552518, + 76465386, + 7925010431, + 76464878 + ], + "geometry": [ + { "lat": 40.8593286, "lon": -73.9734062 }, + { "lat": 40.8593583, "lon": -73.9734998 }, + { "lat": 40.8593871, "lon": -73.9735711 }, + { "lat": 40.8594165, "lon": -73.9736357 }, + { "lat": 40.8594441, "lon": -73.9736889 }, + { "lat": 40.8594811, "lon": -73.9737507 }, + { "lat": 40.8595194, "lon": -73.9738079 }, + { "lat": 40.8595566, "lon": -73.9738575 }, + { "lat": 40.8595950, "lon": -73.9739045 }, + { "lat": 40.8596354, "lon": -73.9739485 }, + { "lat": 40.8596773, "lon": -73.9739829 }, + { "lat": 40.8597231, "lon": -73.9740165 }, + { "lat": 40.8597668, "lon": -73.9740439 }, + { "lat": 40.8598200, "lon": -73.9740735 }, + { "lat": 40.8598741, "lon": -73.9741006 }, + { "lat": 40.8599272, "lon": -73.9741215 }, + { "lat": 40.8599883, "lon": -73.9741434 }, + { "lat": 40.8600468, "lon": -73.9741614 }, + { "lat": 40.8601021, "lon": -73.9741747 }, + { "lat": 40.8601622, "lon": -73.9741863 }, + { "lat": 40.8602152, "lon": -73.9741941 }, + { "lat": 40.8602709, "lon": -73.9741964 }, + { "lat": 40.8603312, "lon": -73.9741980 }, + { "lat": 40.8603927, "lon": -73.9741960 }, + { "lat": 40.8604533, "lon": -73.9741889 }, + { "lat": 40.8605070, "lon": -73.9741761 }, + { "lat": 40.8605651, "lon": -73.9741595 }, + { "lat": 40.8609747, "lon": -73.9740361 }, + { "lat": 40.8611668, "lon": -73.9739837 } + ], + "tags": { + "bicycle": "no", + "destination": "ramp_to_Route_4_West;to_Paramus", + "foot": "no", + "highway": "trunk", + "horse": "no", + "lanes": "1", + "oneway": "yes", + "ref": "NJ 4", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "no" + } +}, +{ + "type": "way", + "id": 954826394, + "bounds": { + "minlat": 40.7322539, + "minlon": -74.0035825, + "maxlat": 40.7332265, + "maxlon": -74.0030292 + }, + "nodes": [ + 42430803, + 4320028833, + 4205565494, + 4205565493, + 5837088104, + 5151983468, + 6213204036, + 5837088105 + ], + "geometry": [ + { "lat": 40.7332265, "lon": -74.0030292 }, + { "lat": 40.7331500, "lon": -74.0030727 }, + { "lat": 40.7328151, "lon": -74.0032632 }, + { "lat": 40.7327034, "lon": -74.0033268 }, + { "lat": 40.7325066, "lon": -74.0034387 }, + { "lat": 40.7323187, "lon": -74.0035456 }, + { "lat": 40.7322862, "lon": -74.0035644 }, + { "lat": 40.7322539, "lon": -74.0035825 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "oneway": "yes", + "parking:lane:left": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none|none" + } +}, +{ + "type": "way", + "id": 954871890, + "bounds": { + "minlat": 40.7764305, + "minlon": -73.9497018, + "maxlat": 40.7765492, + "maxlon": -73.9496157 + }, + "nodes": [ + 8838184086, + 4205865489 + ], + "geometry": [ + { "lat": 40.7764305, "lon": -73.9497018 }, + { "lat": 40.7765492, "lon": -73.9496157 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 954878305, + "bounds": { + "minlat": 40.7442368, + "minlon": -73.9731768, + "maxlat": 40.7444485, + "maxlon": -73.9730270 + }, + "nodes": [ + 8838254189, + 6133388366, + 3946500933, + 42434974 + ], + "geometry": [ + { "lat": 40.7442368, "lon": -73.9731768 }, + { "lat": 40.7442850, "lon": -73.9731426 }, + { "lat": 40.7443833, "lon": -73.9730730 }, + { "lat": 40.7444485, "lon": -73.9730270 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 954882358, + "bounds": { + "minlat": 40.7976445, + "minlon": -73.9342081, + "maxlat": 40.7977867, + "maxlon": -73.9341029 + }, + "nodes": [ + 8838304300, + 4207669595 + ], + "geometry": [ + { "lat": 40.7976445, "lon": -73.9342081 }, + { "lat": 40.7977867, "lon": -73.9341029 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 954926502, + "bounds": { + "minlat": 40.7444485, + "minlon": -73.9730270, + "maxlat": 40.7448323, + "maxlon": -73.9727482 + }, + "nodes": [ + 42434974, + 3946500927, + 8838680409 + ], + "geometry": [ + { "lat": 40.7444485, "lon": -73.9730270 }, + { "lat": 40.7445226, "lon": -73.9729716 }, + { "lat": 40.7448323, "lon": -73.9727482 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 954929768, + "bounds": { + "minlat": 40.7450699, + "minlon": -73.9725748, + "maxlat": 40.7454815, + "maxlon": -73.9722711 + }, + "nodes": [ + 42455915, + 3946500935, + 3948577931 + ], + "geometry": [ + { "lat": 40.7450699, "lon": -73.9725748 }, + { "lat": 40.7451372, "lon": -73.9725239 }, + { "lat": 40.7454815, "lon": -73.9722711 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 954929769, + "bounds": { + "minlat": 40.7448323, + "minlon": -73.9727482, + "maxlat": 40.7450699, + "maxlon": -73.9725748 + }, + "nodes": [ + 8838680409, + 3946500928, + 42455915 + ], + "geometry": [ + { "lat": 40.7448323, "lon": -73.9727482 }, + { "lat": 40.7450055, "lon": -73.9726206 }, + { "lat": 40.7450699, "lon": -73.9725748 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 954955253, + "bounds": { + "minlat": 40.7318467, + "minlon": -73.9821960, + "maxlat": 40.7320287, + "maxlon": -73.9820610 + }, + "nodes": [ + 8838881844, + 6133355307, + 4298757033, + 42431470 + ], + "geometry": [ + { "lat": 40.7318467, "lon": -73.9821960 }, + { "lat": 40.7319026, "lon": -73.9821541 }, + { "lat": 40.7319775, "lon": -73.9820988 }, + { "lat": 40.7320287, "lon": -73.9820610 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 954955254, + "bounds": { + "minlat": 40.7320287, + "minlon": -73.9820610, + "maxlat": 40.7323272, + "maxlon": -73.9818449 + }, + "nodes": [ + 42431470, + 4298757061, + 8838881845 + ], + "geometry": [ + { "lat": 40.7320287, "lon": -73.9820610 }, + { "lat": 40.7320946, "lon": -73.9820132 }, + { "lat": 40.7323272, "lon": -73.9818449 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 954955255, + "bounds": { + "minlat": 40.7323272, + "minlon": -73.9818449, + "maxlat": 40.7326640, + "maxlon": -73.9816006 + }, + "nodes": [ + 8838881845, + 4298757020, + 42439323 + ], + "geometry": [ + { "lat": 40.7323272, "lon": -73.9818449 }, + { "lat": 40.7326064, "lon": -73.9816425 }, + { "lat": 40.7326640, "lon": -73.9816006 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 954955256, + "bounds": { + "minlat": 40.7326640, + "minlon": -73.9816006, + "maxlat": 40.7329218, + "maxlon": -73.9814091 + }, + "nodes": [ + 42439323, + 4298757080, + 4298757018, + 8838881846 + ], + "geometry": [ + { "lat": 40.7326640, "lon": -73.9816006 }, + { "lat": 40.7327271, "lon": -73.9815525 }, + { "lat": 40.7328512, "lon": -73.9814608 }, + { "lat": 40.7329218, "lon": -73.9814091 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 954955257, + "bounds": { + "minlat": 40.7329218, + "minlon": -73.9814091, + "maxlat": 40.7330678, + "maxlon": -73.9812979 + }, + "nodes": [ + 8838881846, + 4207683792 + ], + "geometry": [ + { "lat": 40.7329218, "lon": -73.9814091 }, + { "lat": 40.7330678, "lon": -73.9812979 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "none|through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 955134530, + "bounds": { + "minlat": 40.7093107, + "minlon": -74.0119513, + "maxlat": 40.7097287, + "maxlon": -74.0117165 + }, + "nodes": [ + 42434412, + 10288802753, + 10288802746, + 8840333830, + 10288802749, + 10288802747, + 10288802761, + 10288802762, + 8840333831, + 8840333845 + ], + "geometry": [ + { "lat": 40.7093107, "lon": -74.0119350 }, + { "lat": 40.7093343, "lon": -74.0119486 }, + { "lat": 40.7093459, "lon": -74.0119513 }, + { "lat": 40.7093562, "lon": -74.0119501 }, + { "lat": 40.7093764, "lon": -74.0119425 }, + { "lat": 40.7093984, "lon": -74.0119319 }, + { "lat": 40.7094213, "lon": -74.0119185 }, + { "lat": 40.7095904, "lon": -74.0118072 }, + { "lat": 40.7096738, "lon": -74.0117530 }, + { "lat": 40.7097287, "lon": -74.0117165 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "Trinity Place", + "name:etymology:wikidata": "Q866896", + "name:ko": "트리니티 플레이스", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 955134535, + "bounds": { + "minlat": 40.7096833, + "minlon": -74.0128433, + "maxlat": 40.7101470, + "maxlon": -74.0126706 + }, + "nodes": [ + 42422035, + 10288454363, + 5889526046, + 10288454365, + 10288454369, + 10288454368, + 42434413 + ], + "geometry": [ + { "lat": 40.7101470, "lon": -74.0126706 }, + { "lat": 40.7100956, "lon": -74.0126776 }, + { "lat": 40.7100681, "lon": -74.0126839 }, + { "lat": 40.7099890, "lon": -74.0127151 }, + { "lat": 40.7099815, "lon": -74.0127182 }, + { "lat": 40.7097878, "lon": -74.0127977 }, + { "lat": 40.7096833, "lon": -74.0128433 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "no", + "highway": "unclassified", + "horse": "no", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 955205137, + "bounds": { + "minlat": 40.7460717, + "minlon": -73.9718419, + "maxlat": 40.7462999, + "maxlon": -73.9716752 + }, + "nodes": [ + 8840916184, + 3569749093, + 42454010 + ], + "geometry": [ + { "lat": 40.7460717, "lon": -73.9718419 }, + { "lat": 40.7462397, "lon": -73.9717216 }, + { "lat": 40.7462999, "lon": -73.9716752 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 955211304, + "bounds": { + "minlat": 40.8149410, + "minlon": -73.9167710, + "maxlat": 40.8156990, + "maxlon": -73.9149607 + }, + "nodes": [ + 42761063, + 9903127473, + 5430145103, + 6415815505, + 42746069 + ], + "geometry": [ + { "lat": 40.8149410, "lon": -73.9149607 }, + { "lat": 40.8149799, "lon": -73.9150656 }, + { "lat": 40.8151483, "lon": -73.9154579 }, + { "lat": 40.8156724, "lon": -73.9167075 }, + { "lat": 40.8156990, "lon": -73.9167710 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 955214790, + "bounds": { + "minlat": 40.7191029, + "minlon": -73.9905372, + "maxlat": 40.7191808, + "maxlon": -73.9902811 + }, + "nodes": [ + 3212472843, + 13031927261, + 8840995913, + 42429762 + ], + "geometry": [ + { "lat": 40.7191808, "lon": -73.9905372 }, + { "lat": 40.7191533, "lon": -73.9904453 }, + { "lat": 40.7191325, "lon": -73.9903769 }, + { "lat": 40.7191029, "lon": -73.9902811 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 955214801, + "bounds": { + "minlat": 40.7175333, + "minlon": -73.9858645, + "maxlat": 40.7176161, + "maxlon": -73.9858243 + }, + "nodes": [ + 7476387556, + 12195869749, + 7476387558, + 3630249566 + ], + "geometry": [ + { "lat": 40.7175333, "lon": -73.9858645 }, + { "lat": 40.7175539, "lon": -73.9858533 }, + { "lat": 40.7175808, "lon": -73.9858403 }, + { "lat": 40.7176161, "lon": -73.9858243 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "moped": "no", + "name": "Clinton Street", + "name:etymology:wikidata": "Q201646", + "name:ko": "클린턴 스트리트", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 955237974, + "bounds": { + "minlat": 40.7151635, + "minlon": -74.0077456, + "maxlat": 40.7154325, + "maxlon": -74.0075330 + }, + "nodes": [ + 5135853008, + 8526690244, + 8312361681, + 42445356 + ], + "geometry": [ + { "lat": 40.7151635, "lon": -74.0077456 }, + { "lat": 40.7153448, "lon": -74.0076024 }, + { "lat": 40.7153749, "lon": -74.0075786 }, + { "lat": 40.7154325, "lon": -74.0075330 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 955237975, + "bounds": { + "minlat": 40.7154325, + "minlon": -74.0075330, + "maxlat": 40.7160045, + "maxlon": -74.0070792 + }, + "nodes": [ + 42445356, + 8312361680, + 8312361674, + 42430550 + ], + "geometry": [ + { "lat": 40.7154325, "lon": -74.0075330 }, + { "lat": 40.7154858, "lon": -74.0074908 }, + { "lat": 40.7159414, "lon": -74.0071293 }, + { "lat": 40.7160045, "lon": -74.0070792 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 955247095, + "bounds": { + "minlat": 40.8457307, + "minlon": -73.9171411, + "maxlat": 40.8459494, + "maxlon": -73.9171287 + }, + "nodes": [ + 4997186460, + 13204535380, + 2327435586 + ], + "geometry": [ + { "lat": 40.8457307, "lon": -73.9171287 }, + { "lat": 40.8457604, "lon": -73.9171304 }, + { "lat": 40.8459494, "lon": -73.9171411 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 955247096, + "bounds": { + "minlat": 40.8454091, + "minlon": -73.9171287, + "maxlat": 40.8457307, + "maxlon": -73.9171157 + }, + "nodes": [ + 42737543, + 12046949293, + 12046949294, + 12046949295, + 12089567412, + 4997186460 + ], + "geometry": [ + { "lat": 40.8454091, "lon": -73.9171220 }, + { "lat": 40.8454361, "lon": -73.9171185 }, + { "lat": 40.8454649, "lon": -73.9171164 }, + { "lat": 40.8454904, "lon": -73.9171157 }, + { "lat": 40.8455432, "lon": -73.9171169 }, + { "lat": 40.8457307, "lon": -73.9171287 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "turn:lanes:backward": "left|none" + } +}, +{ + "type": "way", + "id": 955259023, + "bounds": { + "minlat": 40.7855632, + "minlon": -73.9765601, + "maxlat": 40.7857321, + "maxlon": -73.9764355 + }, + "nodes": [ + 6929267014, + 10039927885, + 42437305 + ], + "geometry": [ + { "lat": 40.7855632, "lon": -73.9765601 }, + { "lat": 40.7856737, "lon": -73.9764786 }, + { "lat": 40.7857321, "lon": -73.9764355 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 955261511, + "bounds": { + "minlat": 40.7306534, + "minlon": -73.9830644, + "maxlat": 40.7310012, + "maxlon": -73.9828173 + }, + "nodes": [ + 42436943, + 8309479578, + 4205565489 + ], + "geometry": [ + { "lat": 40.7306534, "lon": -73.9830644 }, + { "lat": 40.7307133, "lon": -73.9830212 }, + { "lat": 40.7310012, "lon": -73.9828173 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 955261512, + "bounds": { + "minlat": 40.7304652, + "minlon": -73.9832069, + "maxlat": 40.7306534, + "maxlon": -73.9830644 + }, + "nodes": [ + 8841425136, + 8309479579, + 42436943 + ], + "geometry": [ + { "lat": 40.7304652, "lon": -73.9832069 }, + { "lat": 40.7306027, "lon": -73.9831021 }, + { "lat": 40.7306534, "lon": -73.9830644 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 955261513, + "bounds": { + "minlat": 40.7293730, + "minlon": -73.9839987, + "maxlat": 40.7304652, + "maxlon": -73.9832069 + }, + "nodes": [ + 42454994, + 8309479282, + 5341393939, + 8309479589, + 42446547, + 8309479588, + 8841425136 + ], + "geometry": [ + { "lat": 40.7293730, "lon": -73.9839987 }, + { "lat": 40.7294328, "lon": -73.9839558 }, + { "lat": 40.7296643, "lon": -73.9837901 }, + { "lat": 40.7299623, "lon": -73.9835767 }, + { "lat": 40.7300191, "lon": -73.9835360 }, + { "lat": 40.7300705, "lon": -73.9834978 }, + { "lat": 40.7304652, "lon": -73.9832069 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 955261514, + "bounds": { + "minlat": 40.7291097, + "minlon": -73.9841953, + "maxlat": 40.7293730, + "maxlon": -73.9839987 + }, + "nodes": [ + 8841425137, + 8309479283, + 42454994 + ], + "geometry": [ + { "lat": 40.7291097, "lon": -73.9841953 }, + { "lat": 40.7293253, "lon": -73.9840342 }, + { "lat": 40.7293730, "lon": -73.9839987 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 955261515, + "bounds": { + "minlat": 40.7282048, + "minlon": -73.9848673, + "maxlat": 40.7287790, + "maxlon": -73.9844432 + }, + "nodes": [ + 42449021, + 8309479515, + 12179582401, + 8309479509, + 42430903 + ], + "geometry": [ + { "lat": 40.7282048, "lon": -73.9848673 }, + { "lat": 40.7282473, "lon": -73.9848355 }, + { "lat": 40.7286887, "lon": -73.9845090 }, + { "lat": 40.7287315, "lon": -73.9844774 }, + { "lat": 40.7287790, "lon": -73.9844432 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 955261516, + "bounds": { + "minlat": 40.7279586, + "minlon": -73.9850459, + "maxlat": 40.7282048, + "maxlon": -73.9848673 + }, + "nodes": [ + 8841425138, + 12179582425, + 8309479516, + 42449021 + ], + "geometry": [ + { "lat": 40.7279586, "lon": -73.9850459 }, + { "lat": 40.7281021, "lon": -73.9849417 }, + { "lat": 40.7281381, "lon": -73.9849156 }, + { "lat": 40.7282048, "lon": -73.9848673 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 955261517, + "bounds": { + "minlat": 40.7269880, + "minlon": -73.9857530, + "maxlat": 40.7275990, + "maxlon": -73.9853070 + }, + "nodes": [ + 42434205, + 8309479533, + 8309479525, + 4012724171 + ], + "geometry": [ + { "lat": 40.7269880, "lon": -73.9857530 }, + { "lat": 40.7270410, "lon": -73.9857143 }, + { "lat": 40.7275473, "lon": -73.9853446 }, + { "lat": 40.7275990, "lon": -73.9853070 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 955261518, + "bounds": { + "minlat": 40.7267291, + "minlon": -73.9859422, + "maxlat": 40.7269880, + "maxlon": -73.9857530 + }, + "nodes": [ + 8841425139, + 8309479534, + 42434205 + ], + "geometry": [ + { "lat": 40.7267291, "lon": -73.9859422 }, + { "lat": 40.7269332, "lon": -73.9857930 }, + { "lat": 40.7269880, "lon": -73.9857530 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 955268214, + "bounds": { + "minlat": 40.8299270, + "minlon": -73.9500027, + "maxlat": 40.8322728, + "maxlon": -73.9495467 + }, + "nodes": [ + 12952282814, + 2504891666, + 12952282815, + 42441960, + 2504891667, + 42441962, + 42441963, + 6164705329, + 12140122241, + 42441967, + 42441970, + 7935055502, + 7935055501, + 12140122242, + 42442040, + 42442046, + 42442050, + 5119753487, + 42442054 + ], + "geometry": [ + { "lat": 40.8299270, "lon": -73.9500027 }, + { "lat": 40.8300994, "lon": -73.9499883 }, + { "lat": 40.8302224, "lon": -73.9499760 }, + { "lat": 40.8303163, "lon": -73.9499612 }, + { "lat": 40.8304477, "lon": -73.9499290 }, + { "lat": 40.8305707, "lon": -73.9498834 }, + { "lat": 40.8307794, "lon": -73.9497867 }, + { "lat": 40.8308810, "lon": -73.9497330 }, + { "lat": 40.8310304, "lon": -73.9496746 }, + { "lat": 40.8311722, "lon": -73.9496286 }, + { "lat": 40.8313197, "lon": -73.9495892 }, + { "lat": 40.8314541, "lon": -73.9495670 }, + { "lat": 40.8314922, "lon": -73.9495626 }, + { "lat": 40.8315830, "lon": -73.9495512 }, + { "lat": 40.8317072, "lon": -73.9495467 }, + { "lat": 40.8318362, "lon": -73.9495703 }, + { "lat": 40.8319436, "lon": -73.9495976 }, + { "lat": 40.8321038, "lon": -73.9496477 }, + { "lat": 40.8322728, "lon": -73.9496870 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk": "left", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 955293501, + "bounds": { + "minlat": 40.8618154, + "minlon": -73.9123796, + "maxlat": 40.8618882, + "maxlon": -73.9119941 + }, + "nodes": [ + 1764747395, + 12058459518, + 12058459517, + 12058459516, + 12058459525, + 12074332266, + 595813965 + ], + "geometry": [ + { "lat": 40.8618154, "lon": -73.9119941 }, + { "lat": 40.8618317, "lon": -73.9120577 }, + { "lat": 40.8618461, "lon": -73.9121213 }, + { "lat": 40.8618579, "lon": -73.9121808 }, + { "lat": 40.8618666, "lon": -73.9122381 }, + { "lat": 40.8618776, "lon": -73.9123103 }, + { "lat": 40.8618882, "lon": -73.9123796 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 955293893, + "bounds": { + "minlat": 40.7182917, + "minlon": -74.0053562, + "maxlat": 40.7185690, + "maxlon": -74.0052305 + }, + "nodes": [ + 42430115, + 8304498315, + 4143859856, + 4143859863, + 4143859868, + 4143859870 + ], + "geometry": [ + { "lat": 40.7182917, "lon": -74.0053562 }, + { "lat": 40.7183413, "lon": -74.0053291 }, + { "lat": 40.7183756, "lon": -74.0053116 }, + { "lat": 40.7184481, "lon": -74.0052759 }, + { "lat": 40.7185483, "lon": -74.0052379 }, + { "lat": 40.7185690, "lon": -74.0052305 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 955293894, + "bounds": { + "minlat": 40.7182549, + "minlon": -74.0053562, + "maxlat": 40.7182917, + "maxlon": -74.0052698 + }, + "nodes": [ + 42430115, + 4143851144 + ], + "geometry": [ + { "lat": 40.7182917, "lon": -74.0053562 }, + { "lat": 40.7182549, "lon": -74.0052698 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "name:ko": "프랭클린 스트리트", + "name:ru": "Франклин-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 955293895, + "bounds": { + "minlat": 40.7185690, + "minlon": -74.0052305, + "maxlat": 40.7197014, + "maxlon": -74.0051454 + }, + "nodes": [ + 4143859870, + 11493402755, + 4143859858, + 4143859864, + 4143859871, + 42430118, + 8304498292, + 10748446194, + 10748446190, + 11493402738 + ], + "geometry": [ + { "lat": 40.7185690, "lon": -74.0052305 }, + { "lat": 40.7187152, "lon": -74.0051886 }, + { "lat": 40.7187912, "lon": -74.0051722 }, + { "lat": 40.7188588, "lon": -74.0051614 }, + { "lat": 40.7189402, "lon": -74.0051524 }, + { "lat": 40.7190003, "lon": -74.0051464 }, + { "lat": 40.7190625, "lon": -74.0051454 }, + { "lat": 40.7191895, "lon": -74.0051485 }, + { "lat": 40.7194098, "lon": -74.0051562 }, + { "lat": 40.7197014, "lon": -74.0051656 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "parking:both": "lane", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 955301423, + "bounds": { + "minlat": 40.7195624, + "minlon": -73.9912489, + "maxlat": 40.7231118, + "maxlon": -73.9894340 + }, + "nodes": [ + 42429645, + 5296795760, + 13033168292, + 9813212420, + 42429646, + 9813212419, + 13031169780, + 42429647, + 13031169776, + 6859551126, + 9007929219, + 5783022066, + 1918039876 + ], + "geometry": [ + { "lat": 40.7195624, "lon": -73.9912489 }, + { "lat": 40.7196562, "lon": -73.9912007 }, + { "lat": 40.7206317, "lon": -73.9907018 }, + { "lat": 40.7207230, "lon": -73.9906551 }, + { "lat": 40.7207700, "lon": -73.9906316 }, + { "lat": 40.7208191, "lon": -73.9906059 }, + { "lat": 40.7218738, "lon": -73.9900665 }, + { "lat": 40.7219217, "lon": -73.9900420 }, + { "lat": 40.7219737, "lon": -73.9900154 }, + { "lat": 40.7221194, "lon": -73.9899409 }, + { "lat": 40.7229564, "lon": -73.9895130 }, + { "lat": 40.7230210, "lon": -73.9894800 }, + { "lat": 40.7231118, "lon": -73.9894340 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Eldridge Street", + "name:en": "Eldridge Street", + "name:ko": "엘드리지 스트리트", + "name:zh": "愛烈治街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29950420", + "wikipedia": "en:Eldridge Street" + } +}, +{ + "type": "way", + "id": 955301424, + "bounds": { + "minlat": 40.7195624, + "minlon": -73.9921037, + "maxlat": 40.7198217, + "maxlon": -73.9912489 + }, + "nodes": [ + 42429645, + 8307642253, + 8821681993, + 8231896493, + 42429756 + ], + "geometry": [ + { "lat": 40.7195624, "lon": -73.9912489 }, + { "lat": 40.7195828, "lon": -73.9913162 }, + { "lat": 40.7197855, "lon": -73.9919844 }, + { "lat": 40.7197989, "lon": -73.9920287 }, + { "lat": 40.7198217, "lon": -73.9921037 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|none|none|through;right", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 955303976, + "bounds": { + "minlat": 40.7266930, + "minlon": -73.9495740, + "maxlat": 40.7269627, + "maxlon": -73.9494198 + }, + "nodes": [ + 8841792883, + 4205219018 + ], + "geometry": [ + { "lat": 40.7269627, "lon": -73.9495740 }, + { "lat": 40.7266930, "lon": -73.9494198 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 955328305, + "bounds": { + "minlat": 40.7464063, + "minlon": -73.9797439, + "maxlat": 40.7467893, + "maxlon": -73.9794644 + }, + "nodes": [ + 8842019586, + 12183285329, + 8119462442, + 42445374 + ], + "geometry": [ + { "lat": 40.7467893, "lon": -73.9794644 }, + { "lat": 40.7465546, "lon": -73.9796343 }, + { "lat": 40.7465011, "lon": -73.9796738 }, + { "lat": 40.7464063, "lon": -73.9797439 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through|none", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 955355446, + "bounds": { + "minlat": 40.7476966, + "minlon": -73.9788036, + "maxlat": 40.7478815, + "maxlon": -73.9786706 + }, + "nodes": [ + 8842216739, + 12183285336, + 11273068441, + 42446941 + ], + "geometry": [ + { "lat": 40.7478815, "lon": -73.9786706 }, + { "lat": 40.7477983, "lon": -73.9787313 }, + { "lat": 40.7477517, "lon": -73.9787644 }, + { "lat": 40.7476966, "lon": -73.9788036 } + ], + "tags": { + "bus:lanes": "|||designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through|none", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 955362326, + "bounds": { + "minlat": 40.8110916, + "minlon": -73.9272894, + "maxlat": 40.8114824, + "maxlon": -73.9269474 + }, + "nodes": [ + 8842235697, + 9163759311, + 11882279841, + 4207700494 + ], + "geometry": [ + { "lat": 40.8114824, "lon": -73.9269474 }, + { "lat": 40.8112341, "lon": -73.9271525 }, + { "lat": 40.8111821, "lon": -73.9272037 }, + { "lat": 40.8110916, "lon": -73.9272894 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Morris Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes": "left|through|" + } +}, +{ + "type": "way", + "id": 955386385, + "bounds": { + "minlat": 40.7113988, + "minlon": -73.9642478, + "maxlat": 40.7114927, + "maxlon": -73.9642038 + }, + "nodes": [ + 8842464598, + 8842464602, + 10011195536, + 8842464599 + ], + "geometry": [ + { "lat": 40.7114927, "lon": -73.9642038 }, + { "lat": 40.7114404, "lon": -73.9642285 }, + { "lat": 40.7114090, "lon": -73.9642435 }, + { "lat": 40.7113988, "lon": -73.9642478 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 955388610, + "bounds": { + "minlat": 40.7109126, + "minlon": -73.9625454, + "maxlat": 40.7109781, + "maxlon": -73.9625126 + }, + "nodes": [ + 8842473773, + 8842473777, + 8842473774 + ], + "geometry": [ + { "lat": 40.7109781, "lon": -73.9625126 }, + { "lat": 40.7109269, "lon": -73.9625371 }, + { "lat": 40.7109126, "lon": -73.9625454 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 955388613, + "bounds": { + "minlat": 40.7108725, + "minlon": -73.9624144, + "maxlat": 40.7109385, + "maxlon": -73.9623816 + }, + "nodes": [ + 8842473778, + 8842473782, + 8842473779 + ], + "geometry": [ + { "lat": 40.7109385, "lon": -73.9623816 }, + { "lat": 40.7108869, "lon": -73.9624051 }, + { "lat": 40.7108725, "lon": -73.9624144 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 955399513, + "bounds": { + "minlat": 40.7125009, + "minlon": -73.9384713, + "maxlat": 40.7130764, + "maxlon": -73.9360826 + }, + "nodes": [ + 42494193, + 8842929811, + 42474056, + 8842929808, + 42464409, + 8842568864 + ], + "geometry": [ + { "lat": 40.7125009, "lon": -73.9384713 }, + { "lat": 40.7125145, "lon": -73.9384151 }, + { "lat": 40.7125374, "lon": -73.9383200 }, + { "lat": 40.7125526, "lon": -73.9382556 }, + { "lat": 40.7127944, "lon": -73.9372532 }, + { "lat": 40.7130764, "lon": -73.9360826 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 955399514, + "bounds": { + "minlat": 40.7130764, + "minlon": -73.9360826, + "maxlat": 40.7133883, + "maxlon": -73.9348086 + }, + "nodes": [ + 8842568864, + 8842929821, + 42490339 + ], + "geometry": [ + { "lat": 40.7130764, "lon": -73.9360826 }, + { "lat": 40.7133686, "lon": -73.9348908 }, + { "lat": 40.7133883, "lon": -73.9348086 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "track", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 955399527, + "bounds": { + "minlat": 40.7141357, + "minlon": -73.9318388, + "maxlat": 40.7142278, + "maxlon": -73.9314780 + }, + "nodes": [ + 8842568841, + 9084746097 + ], + "geometry": [ + { "lat": 40.7141357, "lon": -73.9318388 }, + { "lat": 40.7142278, "lon": -73.9314780 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 955399530, + "bounds": { + "minlat": 40.7142089, + "minlon": -73.9299093, + "maxlat": 40.7143397, + "maxlon": -73.9287499 + }, + "nodes": [ + 8842579372, + 4205919101 + ], + "geometry": [ + { "lat": 40.7143397, "lon": -73.9299093 }, + { "lat": 40.7142089, "lon": -73.9287499 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 955399531, + "bounds": { + "minlat": 40.7143397, + "minlon": -73.9299727, + "maxlat": 40.7143462, + "maxlon": -73.9299093 + }, + "nodes": [ + 8842579365, + 8842579372 + ], + "geometry": [ + { "lat": 40.7143462, "lon": -73.9299727 }, + { "lat": 40.7143397, "lon": -73.9299093 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "yes", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 955399532, + "bounds": { + "minlat": 40.7132370, + "minlon": -73.9299168, + "maxlat": 40.7142527, + "maxlon": -73.9294780 + }, + "nodes": [ + 7961803890, + 8842929838, + 42496931 + ], + "geometry": [ + { "lat": 40.7142527, "lon": -73.9299168 }, + { "lat": 40.7141737, "lon": -73.9299000 }, + { "lat": 40.7132370, "lon": -73.9294780 } + ], + "tags": { + "highway": "residential", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Varick", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 955399533, + "bounds": { + "minlat": 40.7142596, + "minlon": -73.9306756, + "maxlat": 40.7142708, + "maxlon": -73.9303983 + }, + "nodes": [ + 7961803888, + 7961803891 + ], + "geometry": [ + { "lat": 40.7142708, "lon": -73.9306756 }, + { "lat": 40.7142596, "lon": -73.9303983 } + ], + "tags": { + "highway": "service", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 955399534, + "bounds": { + "minlat": 40.7143420, + "minlon": -73.9294703, + "maxlat": 40.7144014, + "maxlon": -73.9287384 + }, + "nodes": [ + 1275778473, + 5330321642 + ], + "geometry": [ + { "lat": 40.7143420, "lon": -73.9287384 }, + { "lat": 40.7144014, "lon": -73.9294703 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 955399535, + "bounds": { + "minlat": 40.7138845, + "minlon": -73.9245207, + "maxlat": 40.7139621, + "maxlon": -73.9244866 + }, + "nodes": [ + 8452107999, + 42474031 + ], + "geometry": [ + { "lat": 40.7138845, "lon": -73.9244866 }, + { "lat": 40.7139621, "lon": -73.9245207 } + ], + "tags": { + "highway": "residential", + "name": "Scott Avenue" + } +}, +{ + "type": "way", + "id": 955564932, + "bounds": { + "minlat": 40.8198913, + "minlon": -73.9580465, + "maxlat": 40.8203884, + "maxlon": -73.9577464 + }, + "nodes": [ + 587861515, + 13703625911, + 13703625909, + 13703625910, + 13703625908, + 8843765047 + ], + "geometry": [ + { "lat": 40.8198913, "lon": -73.9580465 }, + { "lat": 40.8203097, "lon": -73.9577495 }, + { "lat": 40.8203262, "lon": -73.9577464 }, + { "lat": 40.8203402, "lon": -73.9577565 }, + { "lat": 40.8203636, "lon": -73.9578109 }, + { "lat": 40.8203884, "lon": -73.9578656 } + ], + "tags": { + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 955925399, + "bounds": { + "minlat": 40.7017600, + "minlon": -74.0126310, + "maxlat": 40.7017916, + "maxlon": -74.0123682 + }, + "nodes": [ + 8795511197, + 11041048612, + 8847099758, + 8847099757, + 8847099756, + 11041048610, + 12301558335 + ], + "geometry": [ + { "lat": 40.7017789, "lon": -74.0123682 }, + { "lat": 40.7017896, "lon": -74.0123985 }, + { "lat": 40.7017916, "lon": -74.0124267 }, + { "lat": 40.7017827, "lon": -74.0124945 }, + { "lat": 40.7017730, "lon": -74.0125487 }, + { "lat": 40.7017673, "lon": -74.0125893 }, + { "lat": 40.7017600, "lon": -74.0126310 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "lit": "yes", + "oneway": "yes", + "service": "driveway", + "sidewalk": "no", + "smoothness": "excellent", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 955935136, + "bounds": { + "minlat": 40.7644786, + "minlon": -73.9622332, + "maxlat": 40.7645944, + "maxlon": -73.9621469 + }, + "nodes": [ + 8847352140, + 10166171509, + 8847352138, + 8847352139 + ], + "geometry": [ + { "lat": 40.7644786, "lon": -73.9622332 }, + { "lat": 40.7645396, "lon": -73.9621872 }, + { "lat": 40.7645423, "lon": -73.9621850 }, + { "lat": 40.7645944, "lon": -73.9621469 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 956686823, + "bounds": { + "minlat": 40.7587025, + "minlon": -73.9354836, + "maxlat": 40.7592752, + "maxlon": -73.9342599 + }, + "nodes": [ + 3569402130, + 3569402127, + 42920879, + 6452683697, + 42861185 + ], + "geometry": [ + { "lat": 40.7592752, "lon": -73.9354836 }, + { "lat": 40.7591062, "lon": -73.9351571 }, + { "lat": 40.7590637, "lon": -73.9350660 }, + { "lat": 40.7590341, "lon": -73.9350022 }, + { "lat": 40.7587025, "lon": -73.9342599 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "36th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 956743202, + "bounds": { + "minlat": 40.7696710, + "minlon": -73.9072572, + "maxlat": 40.7700635, + "maxlon": -73.9067729 + }, + "nodes": [ + 7829710749, + 9776150580, + 11619602943, + 42920422 + ], + "geometry": [ + { "lat": 40.7700635, "lon": -73.9067729 }, + { "lat": 40.7700097, "lon": -73.9068413 }, + { "lat": 40.7697219, "lon": -73.9071947 }, + { "lat": 40.7696710, "lon": -73.9072572 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "42nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 956743203, + "bounds": { + "minlat": 40.7695679, + "minlon": -73.9066812, + "maxlat": 40.7699990, + "maxlon": -73.9060698 + }, + "nodes": [ + 42877861, + 9776150646, + 9776150584, + 3132177770 + ], + "geometry": [ + { "lat": 40.7695679, "lon": -73.9060698 }, + { "lat": 40.7696155, "lon": -73.9061371 }, + { "lat": 40.7699689, "lon": -73.9066420 }, + { "lat": 40.7699990, "lon": -73.9066812 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "23rd Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 956743204, + "bounds": { + "minlat": 40.7699990, + "minlon": -73.9067729, + "maxlat": 40.7700635, + "maxlon": -73.9066812 + }, + "nodes": [ + 3132177770, + 7829710749 + ], + "geometry": [ + { "lat": 40.7699990, "lon": -73.9066812 }, + { "lat": 40.7700635, "lon": -73.9067729 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "23rd Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 956944188, + "bounds": { + "minlat": 40.7036695, + "minlon": -73.9709440, + "maxlat": 40.7040702, + "maxlon": -73.9703117 + }, + "nodes": [ + 8855131442, + 6027848377 + ], + "geometry": [ + { "lat": 40.7036695, "lon": -73.9703117 }, + { "lat": 40.7040702, "lon": -73.9709440 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Gee Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Gee", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 956944191, + "bounds": { + "minlat": 40.7006263, + "minlon": -73.9789481, + "maxlat": 40.7013413, + "maxlon": -73.9778269 + }, + "nodes": [ + 42478040, + 9998755674, + 9998755675, + 42488906 + ], + "geometry": [ + { "lat": 40.7006263, "lon": -73.9789481 }, + { "lat": 40.7006581, "lon": -73.9788979 }, + { "lat": 40.7012970, "lon": -73.9778963 }, + { "lat": 40.7013413, "lon": -73.9778269 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "2nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "2nd", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 957035304, + "bounds": { + "minlat": 40.7614999, + "minlon": -73.9978033, + "maxlat": 40.7618069, + "maxlon": -73.9975737 + }, + "nodes": [ + 11241152655, + 10166505393, + 42430677 + ], + "geometry": [ + { "lat": 40.7618069, "lon": -73.9975737 }, + { "lat": 40.7615555, "lon": -73.9977602 }, + { "lat": 40.7614999, "lon": -73.9978033 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 957048347, + "bounds": { + "minlat": 40.7007458, + "minlon": -73.9903893, + "maxlat": 40.7007618, + "maxlon": -73.9898793 + }, + "nodes": [ + 598054704, + 12030168879, + 11674209595 + ], + "geometry": [ + { "lat": 40.7007618, "lon": -73.9903893 }, + { "lat": 40.7007561, "lon": -73.9902062 }, + { "lat": 40.7007458, "lon": -73.9898793 } + ], + "tags": { + "covered": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 957049320, + "bounds": { + "minlat": 40.8022172, + "minlon": -73.9643900, + "maxlat": 40.8023702, + "maxlon": -73.9642763 + }, + "nodes": [ + 8856061690, + 10170893928, + 42442567 + ], + "geometry": [ + { "lat": 40.8022172, "lon": -73.9643900 }, + { "lat": 40.8023093, "lon": -73.9643216 }, + { "lat": 40.8023702, "lon": -73.9642763 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 957049321, + "bounds": { + "minlat": 40.8027618, + "minlon": -73.9639798, + "maxlat": 40.8029617, + "maxlon": -73.9638490 + }, + "nodes": [ + 13768391868, + 9177532569, + 12534082099, + 10170893932, + 42442569 + ], + "geometry": [ + { "lat": 40.8027618, "lon": -73.9639798 }, + { "lat": 40.8028056, "lon": -73.9639468 }, + { "lat": 40.8028250, "lon": -73.9639345 }, + { "lat": 40.8028747, "lon": -73.9639029 }, + { "lat": 40.8029617, "lon": -73.9638490 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|none|right", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 957049322, + "bounds": { + "minlat": 40.8023702, + "minlon": -73.9672442, + "maxlat": 40.8036102, + "maxlon": -73.9642763 + }, + "nodes": [ + 42442567, + 9654489329, + 10170893923, + 7004396259, + 561035330, + 42428770 + ], + "geometry": [ + { "lat": 40.8023702, "lon": -73.9642763 }, + { "lat": 40.8024165, "lon": -73.9643879 }, + { "lat": 40.8024343, "lon": -73.9644308 }, + { "lat": 40.8034873, "lon": -73.9669455 }, + { "lat": 40.8035282, "lon": -73.9670403 }, + { "lat": 40.8036102, "lon": -73.9672442 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 109th Street", + "name:ru": "Западная 109-я стрит", + "name_1": "West 109 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 957049323, + "bounds": { + "minlat": 40.8023702, + "minlon": -73.9642763, + "maxlat": 40.8026313, + "maxlon": -73.9640782 + }, + "nodes": [ + 42442567, + 10170893924, + 8856061691 + ], + "geometry": [ + { "lat": 40.8023702, "lon": -73.9642763 }, + { "lat": 40.8024252, "lon": -73.9642346 }, + { "lat": 40.8026313, "lon": -73.9640782 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "merge_to_right|none|none|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 957050578, + "bounds": { + "minlat": 40.8009526, + "minlon": -73.9653120, + "maxlat": 40.8011081, + "maxlon": -73.9651949 + }, + "nodes": [ + 8856061172, + 10166004025, + 42432756 + ], + "geometry": [ + { "lat": 40.8009526, "lon": -73.9653120 }, + { "lat": 40.8010529, "lon": -73.9652365 }, + { "lat": 40.8011081, "lon": -73.9651949 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 957085297, + "bounds": { + "minlat": 40.7259076, + "minlon": -73.9963711, + "maxlat": 40.7260920, + "maxlon": -73.9962153 + }, + "nodes": [ + 8856405727, + 4215580881 + ], + "geometry": [ + { "lat": 40.7260920, "lon": -73.9962153 }, + { "lat": 40.7259076, "lon": -73.9963711 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 957085298, + "bounds": { + "minlat": 40.7260920, + "minlon": -73.9962153, + "maxlat": 40.7262442, + "maxlon": -73.9960866 + }, + "nodes": [ + 8856405728, + 4755898713, + 8856405727 + ], + "geometry": [ + { "lat": 40.7262442, "lon": -73.9960866 }, + { "lat": 40.7262327, "lon": -73.9960963 }, + { "lat": 40.7260920, "lon": -73.9962153 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 957141831, + "bounds": { + "minlat": 40.7275152, + "minlon": -73.9499997, + "maxlat": 40.7279887, + "maxlon": -73.9497311 + }, + "nodes": [ + 8856921980, + 8097222285, + 2987758883 + ], + "geometry": [ + { "lat": 40.7275152, "lon": -73.9497311 }, + { "lat": 40.7279313, "lon": -73.9499671 }, + { "lat": 40.7279887, "lon": -73.9499997 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 957402573, + "bounds": { + "minlat": 40.8188561, + "minlon": -73.9287153, + "maxlat": 40.8189757, + "maxlon": -73.9282567 + }, + "nodes": [ + 8859016388, + 9903127436, + 8859016389 + ], + "geometry": [ + { "lat": 40.8188561, "lon": -73.9282567 }, + { "lat": 40.8188848, "lon": -73.9283541 }, + { "lat": 40.8189757, "lon": -73.9287153 } + ], + "tags": { + "busway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455" + } +}, +{ + "type": "way", + "id": 957402574, + "bounds": { + "minlat": 40.8189757, + "minlon": -73.9292073, + "maxlat": 40.8191085, + "maxlon": -73.9287153 + }, + "nodes": [ + 8859016389, + 9166288609, + 4207899735 + ], + "geometry": [ + { "lat": 40.8189757, "lon": -73.9287153 }, + { "lat": 40.8190808, "lon": -73.9291150 }, + { "lat": 40.8191085, "lon": -73.9292073 } + ], + "tags": { + "busway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455" + } +}, +{ + "type": "way", + "id": 957430657, + "bounds": { + "minlat": 40.8011797, + "minlon": -73.9642763, + "maxlat": 40.8023702, + "maxlon": -73.9614635 + }, + "nodes": [ + 42443426, + 10171363570, + 5422624269, + 10170893926, + 42442567 + ], + "geometry": [ + { "lat": 40.8011797, "lon": -73.9614635 }, + { "lat": 40.8012329, "lon": -73.9615899 }, + { "lat": 40.8019473, "lon": -73.9632889 }, + { "lat": 40.8023228, "lon": -73.9641656 }, + { "lat": 40.8023702, "lon": -73.9642763 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 109th Street", + "name:ru": "Западная 109-я стрит", + "name_1": "West 109 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 957524734, + "bounds": { + "minlat": 40.7107043, + "minlon": -73.9835509, + "maxlat": 40.7109704, + "maxlon": -73.9801685 + }, + "nodes": [ + 370888100, + 9907939616, + 9907942817, + 9907939615, + 9907939611, + 370888099 + ], + "geometry": [ + { "lat": 40.7109704, "lon": -73.9801685 }, + { "lat": 40.7109456, "lon": -73.9803037 }, + { "lat": 40.7109272, "lon": -73.9804436 }, + { "lat": 40.7109147, "lon": -73.9805799 }, + { "lat": 40.7109039, "lon": -73.9807261 }, + { "lat": 40.7107043, "lon": -73.9835509 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 957524735, + "bounds": { + "minlat": 40.7109704, + "minlon": -73.9801685, + "maxlat": 40.7110959, + "maxlon": -73.9796338 + }, + "nodes": [ + 8859899698, + 9907942819, + 42457951, + 9907942818, + 370888100 + ], + "geometry": [ + { "lat": 40.7110959, "lon": -73.9796338 }, + { "lat": 40.7110582, "lon": -73.9797642 }, + { "lat": 40.7110257, "lon": -73.9798940 }, + { "lat": 40.7109943, "lon": -73.9800337 }, + { "lat": 40.7109704, "lon": -73.9801685 } + ], + "tags": { + "alt_name": "East River Drive", + "destination:lanes": "||Brooklyn Bridge;Manhattan Civic Center|South Street;Manhattan Bridge", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "|||slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 957532385, + "bounds": { + "minlat": 40.7856546, + "minlon": -73.9840057, + "maxlat": 40.7873443, + "maxlon": -73.9831775 + }, + "nodes": [ + 61269400, + 7910007162, + 61269401, + 61269402, + 12162590069, + 61269403, + 61269404, + 61269405, + 12162590068, + 61269406, + 595295436 + ], + "geometry": [ + { "lat": 40.7873443, "lon": -73.9831775 }, + { "lat": 40.7871288, "lon": -73.9832538 }, + { "lat": 40.7869280, "lon": -73.9833322 }, + { "lat": 40.7867243, "lon": -73.9834154 }, + { "lat": 40.7865613, "lon": -73.9834899 }, + { "lat": 40.7864075, "lon": -73.9835640 }, + { "lat": 40.7862527, "lon": -73.9836377 }, + { "lat": 40.7860978, "lon": -73.9837232 }, + { "lat": 40.7859560, "lon": -73.9838100 }, + { "lat": 40.7858194, "lon": -73.9838949 }, + { "lat": 40.7856546, "lon": -73.9840057 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 957544781, + "bounds": { + "minlat": 40.8220694, + "minlon": -74.0087379, + "maxlat": 40.8241997, + "maxlon": -74.0085940 + }, + "nodes": [ + 103112481, + 103224005, + 103224006, + 7594276853, + 103224007, + 7594276850, + 103224009, + 7208553412, + 103224013, + 8530347116, + 103224015, + 103168154 + ], + "geometry": [ + { "lat": 40.8220694, "lon": -74.0087282 }, + { "lat": 40.8222359, "lon": -74.0087379 }, + { "lat": 40.8223767, "lon": -74.0087354 }, + { "lat": 40.8224500, "lon": -74.0087312 }, + { "lat": 40.8225310, "lon": -74.0087225 }, + { "lat": 40.8226524, "lon": -74.0087107 }, + { "lat": 40.8235440, "lon": -74.0086014 }, + { "lat": 40.8237376, "lon": -74.0085981 }, + { "lat": 40.8238590, "lon": -74.0085940 }, + { "lat": 40.8239435, "lon": -74.0086058 }, + { "lat": 40.8240280, "lon": -74.0086370 }, + { "lat": 40.8241997, "lon": -74.0087091 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657" + } +}, +{ + "type": "way", + "id": 957548856, + "bounds": { + "minlat": 40.8191868, + "minlon": -74.0078529, + "maxlat": 40.8202079, + "maxlon": -74.0076451 + }, + "nodes": [ + 103159409, + 103203985, + 103223994, + 103223996, + 5837332128 + ], + "geometry": [ + { "lat": 40.8191868, "lon": -74.0077087 }, + { "lat": 40.8195385, "lon": -74.0076451 }, + { "lat": 40.8196486, "lon": -74.0076455 }, + { "lat": 40.8197800, "lon": -74.0076786 }, + { "lat": 40.8202079, "lon": -74.0078529 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657" + } +}, +{ + "type": "way", + "id": 957548857, + "bounds": { + "minlat": 40.8191146, + "minlon": -74.0077087, + "maxlat": 40.8191868, + "maxlon": -74.0075489 + }, + "nodes": [ + 7259896920, + 103159409 + ], + "geometry": [ + { "lat": 40.8191146, "lon": -74.0075489 }, + { "lat": 40.8191868, "lon": -74.0077087 } + ], + "tags": { + "highway": "residential", + "name": "Prospect Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Prospect", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 957549260, + "bounds": { + "minlat": 40.8511796, + "minlon": -73.9659649, + "maxlat": 40.8524644, + "maxlon": -73.9653976 + }, + "nodes": [ + 5449432066, + 5449432063, + 103154295, + 103154293, + 5106302140, + 5106302142, + 103154291 + ], + "geometry": [ + { "lat": 40.8524644, "lon": -73.9653976 }, + { "lat": 40.8522418, "lon": -73.9655029 }, + { "lat": 40.8518901, "lon": -73.9656693 }, + { "lat": 40.8514780, "lon": -73.9658840 }, + { "lat": 40.8513491, "lon": -73.9659491 }, + { "lat": 40.8512660, "lon": -73.9659649 }, + { "lat": 40.8511796, "lon": -73.9659556 } + ], + "tags": { + "highway": "secondary", + "name": "Central Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 957549261, + "bounds": { + "minlat": 40.8524315, + "minlon": -73.9653976, + "maxlat": 40.8524644, + "maxlon": -73.9652895 + }, + "nodes": [ + 5449432071, + 10000901909, + 10000901911, + 5449432066 + ], + "geometry": [ + { "lat": 40.8524315, "lon": -73.9652895 }, + { "lat": 40.8524386, "lon": -73.9653128 }, + { "lat": 40.8524437, "lon": -73.9653295 }, + { "lat": 40.8524644, "lon": -73.9653976 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 957766508, + "bounds": { + "minlat": 40.8095517, + "minlon": -73.9349189, + "maxlat": 40.8201576, + "maxlon": -73.9339808 + }, + "nodes": [ + 371337150, + 9153702878, + 9153702880, + 5868971488, + 9153702879, + 371337151, + 373758235, + 9153702881, + 6515268518, + 371337154, + 371337155, + 9153702882, + 373760134, + 373760702, + 373760264, + 371337157, + 9902223890, + 371337197, + 373765960, + 371337170, + 373765961, + 373765963, + 373765965, + 371337208, + 373765966, + 371337216, + 9166236582, + 5175281842, + 373766401, + 371337210, + 589927953 + ], + "geometry": [ + { "lat": 40.8095517, "lon": -73.9348726 }, + { "lat": 40.8097644, "lon": -73.9349027 }, + { "lat": 40.8098821, "lon": -73.9349132 }, + { "lat": 40.8099915, "lon": -73.9349181 }, + { "lat": 40.8101080, "lon": -73.9349189 }, + { "lat": 40.8102433, "lon": -73.9349142 }, + { "lat": 40.8103925, "lon": -73.9348965 }, + { "lat": 40.8105124, "lon": -73.9348863 }, + { "lat": 40.8106630, "lon": -73.9348667 }, + { "lat": 40.8107827, "lon": -73.9348385 }, + { "lat": 40.8117412, "lon": -73.9346009 }, + { "lat": 40.8119542, "lon": -73.9345558 }, + { "lat": 40.8121794, "lon": -73.9345163 }, + { "lat": 40.8124004, "lon": -73.9344861 }, + { "lat": 40.8126241, "lon": -73.9344634 }, + { "lat": 40.8138169, "lon": -73.9343450 }, + { "lat": 40.8146199, "lon": -73.9342598 }, + { "lat": 40.8171122, "lon": -73.9339955 }, + { "lat": 40.8173089, "lon": -73.9339832 }, + { "lat": 40.8175290, "lon": -73.9339808 }, + { "lat": 40.8177487, "lon": -73.9339933 }, + { "lat": 40.8179414, "lon": -73.9340143 }, + { "lat": 40.8181571, "lon": -73.9340492 }, + { "lat": 40.8183634, "lon": -73.9340939 }, + { "lat": 40.8185607, "lon": -73.9341424 }, + { "lat": 40.8188198, "lon": -73.9342068 }, + { "lat": 40.8190248, "lon": -73.9342529 }, + { "lat": 40.8192195, "lon": -73.9342869 }, + { "lat": 40.8194326, "lon": -73.9343078 }, + { "lat": 40.8198583, "lon": -73.9343285 }, + { "lat": 40.8201576, "lon": -73.9343436 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "smoothness": "good", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 957789678, + "bounds": { + "minlat": 40.8489255, + "minlon": -73.9241648, + "maxlat": 40.8511648, + "maxlon": -73.9220671 + }, + "nodes": [ + 8862421352, + 42749199, + 7899202003, + 42749016 + ], + "geometry": [ + { "lat": 40.8511648, "lon": -73.9220671 }, + { "lat": 40.8493245, "lon": -73.9237998 }, + { "lat": 40.8491011, "lon": -73.9240075 }, + { "lat": 40.8489255, "lon": -73.9241648 } + ], + "tags": { + "destination:lanes": "Manhattan;Queens|Manhattan;Queens|Cross Bronx Expressway;New Haven;Trenton;Whitestone Bridge;Throgs Neck Bridge;George Washington Bridge|Cross Bronx Expressway;New Haven;Trenton;Whitestone Bridge;Throgs Neck Bridge;George Washington Bridge", + "hgv": "designated", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "turn:lanes": "none|none|slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 957807782, + "bounds": { + "minlat": 40.8299306, + "minlon": -73.9352605, + "maxlat": 40.8383154, + "maxlon": -73.9334654 + }, + "nodes": [ + 371337250, + 373776070, + 9166241146, + 373776072, + 9166241145, + 9166241147, + 589927903, + 373776076, + 371337251, + 9166241148, + 371337255, + 373776077, + 9166241149, + 371337256, + 373776078, + 9166241150, + 373850895, + 9166241151, + 371337257, + 12064388875, + 371337260, + 12064388876, + 373776673, + 12064388878, + 373776675, + 12064388877, + 9166241152, + 12064388879, + 371337261, + 12064388880, + 12064388881, + 13768867402, + 13768867415, + 371337269 + ], + "geometry": [ + { "lat": 40.8299306, "lon": -73.9349155 }, + { "lat": 40.8306276, "lon": -73.9349961 }, + { "lat": 40.8311329, "lon": -73.9350683 }, + { "lat": 40.8313530, "lon": -73.9350949 }, + { "lat": 40.8315697, "lon": -73.9351221 }, + { "lat": 40.8319024, "lon": -73.9351589 }, + { "lat": 40.8322217, "lon": -73.9351891 }, + { "lat": 40.8328855, "lon": -73.9352399 }, + { "lat": 40.8330981, "lon": -73.9352509 }, + { "lat": 40.8333247, "lon": -73.9352582 }, + { "lat": 40.8335413, "lon": -73.9352605 }, + { "lat": 40.8337585, "lon": -73.9352567 }, + { "lat": 40.8339843, "lon": -73.9352458 }, + { "lat": 40.8341955, "lon": -73.9352304 }, + { "lat": 40.8344161, "lon": -73.9352098 }, + { "lat": 40.8346374, "lon": -73.9351864 }, + { "lat": 40.8348496, "lon": -73.9351531 }, + { "lat": 40.8350718, "lon": -73.9351087 }, + { "lat": 40.8352948, "lon": -73.9350580 }, + { "lat": 40.8354049, "lon": -73.9350261 }, + { "lat": 40.8355105, "lon": -73.9349907 }, + { "lat": 40.8356177, "lon": -73.9349528 }, + { "lat": 40.8357219, "lon": -73.9349136 }, + { "lat": 40.8358280, "lon": -73.9348677 }, + { "lat": 40.8359387, "lon": -73.9348190 }, + { "lat": 40.8360373, "lon": -73.9347747 }, + { "lat": 40.8361369, "lon": -73.9347250 }, + { "lat": 40.8362418, "lon": -73.9346694 }, + { "lat": 40.8363416, "lon": -73.9346132 }, + { "lat": 40.8365436, "lon": -73.9344986 }, + { "lat": 40.8367479, "lon": -73.9343861 }, + { "lat": 40.8380583, "lon": -73.9336224 }, + { "lat": 40.8380652, "lon": -73.9336181 }, + { "lat": 40.8383154, "lon": -73.9334654 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East River:Harlem River", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10035" + } +}, +{ + "type": "way", + "id": 957807783, + "bounds": { + "minlat": 40.8293371, + "minlon": -73.9349155, + "maxlat": 40.8299306, + "maxlon": -73.9348466 + }, + "nodes": [ + 8862591092, + 371337250 + ], + "geometry": [ + { "lat": 40.8293371, "lon": -73.9348466 }, + { "lat": 40.8299306, "lon": -73.9349155 } + ], + "tags": { + "destination:lanes": "8th Avenue;West 155th Street|George Washington Bridge;Amsterdam Avenue;West 179th Street|none|none", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East River:Harlem River", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10035", + "turn:lanes": "slight_left|none|none|none" + } +}, +{ + "type": "way", + "id": 957873160, + "bounds": { + "minlat": 40.7835314, + "minlon": -73.9853322, + "maxlat": 40.7854386, + "maxlon": -73.9839963 + }, + "nodes": [ + 42423070, + 42422545, + 595295538 + ], + "geometry": [ + { "lat": 40.7835314, "lon": -73.9853322 }, + { "lat": 40.7851229, "lon": -73.9842014 }, + { "lat": 40.7854386, "lon": -73.9839963 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 958094846, + "bounds": { + "minlat": 40.8817432, + "minlon": -73.9168802, + "maxlat": 40.8821514, + "maxlon": -73.9164248 + }, + "nodes": [ + 1581505569, + 60915203, + 12064274951, + 721834116 + ], + "geometry": [ + { "lat": 40.8821514, "lon": -73.9164248 }, + { "lat": 40.8819785, "lon": -73.9166151 }, + { "lat": 40.8818987, "lon": -73.9167047 }, + { "lat": 40.8817432, "lon": -73.9168802 } + ], + "tags": { + "destination:lanes": "none|none|Kappock Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "none|none|slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 958096263, + "bounds": { + "minlat": 40.8135861, + "minlon": -73.9345073, + "maxlat": 40.8147590, + "maxlon": -73.9343888 + }, + "nodes": [ + 42425484, + 371337194, + 371337193, + 373760396 + ], + "geometry": [ + { "lat": 40.8147590, "lon": -73.9343888 }, + { "lat": 40.8143383, "lon": -73.9344333 }, + { "lat": 40.8138162, "lon": -73.9344872 }, + { "lat": 40.8135861, "lon": -73.9345073 } + ], + "tags": { + "destination:lanes": "2nd Avenue;East 125th Street|none|Park Avenue;East 132nd Street", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 958101183, + "bounds": { + "minlat": 40.7263638, + "minlon": -73.9301707, + "maxlat": 40.7284164, + "maxlon": -73.9277795 + }, + "nodes": [ + 9194902712, + 6841164676, + 12162652777, + 476025208, + 6841164675 + ], + "geometry": [ + { "lat": 40.7263638, "lon": -73.9301707 }, + { "lat": 40.7279725, "lon": -73.9282971 }, + { "lat": 40.7281373, "lon": -73.9281047 }, + { "lat": 40.7282834, "lon": -73.9279337 }, + { "lat": 40.7284164, "lon": -73.9277795 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "Queens;Bronx|Queens;Bronx;Long Island Expressway;Midtown Tunnel;Eastern Long Island;48th Street|Long Island Expressway;Midtown Tunnel;Eastern Long Island;48th Street", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "turn:lanes": "through|through;slight_right|slight_right", + "wikidata": "Q6433023", + "wikipedia": "en:Kosciuszko Bridge" + } +}, +{ + "type": "way", + "id": 958101803, + "bounds": { + "minlat": 40.8647566, + "minlon": -73.9098830, + "maxlat": 40.8740402, + "maxlon": -73.9055901 + }, + "nodes": [ + 8865049403, + 60915911, + 60915910, + 60915909, + 7898958221, + 7898958263, + 60915908, + 60915907, + 7898998205, + 7898958212, + 7898958272, + 60915904, + 7898958230, + 7898998222, + 7899033413, + 7898958280, + 60915903, + 7899038424, + 7898958283, + 7898958241, + 7898998232, + 7898998191, + 60915901 + ], + "geometry": [ + { "lat": 40.8647566, "lon": -73.9098830 }, + { "lat": 40.8647966, "lon": -73.9098581 }, + { "lat": 40.8650000, "lon": -73.9097372 }, + { "lat": 40.8652000, "lon": -73.9096269 }, + { "lat": 40.8654041, "lon": -73.9095172 }, + { "lat": 40.8656094, "lon": -73.9094145 }, + { "lat": 40.8658171, "lon": -73.9093153 }, + { "lat": 40.8660217, "lon": -73.9092221 }, + { "lat": 40.8662285, "lon": -73.9091305 }, + { "lat": 40.8664423, "lon": -73.9090394 }, + { "lat": 40.8681187, "lon": -73.9083402 }, + { "lat": 40.8683290, "lon": -73.9082516 }, + { "lat": 40.8685414, "lon": -73.9081607 }, + { "lat": 40.8687471, "lon": -73.9080703 }, + { "lat": 40.8688880, "lon": -73.9080054 }, + { "lat": 40.8689587, "lon": -73.9079728 }, + { "lat": 40.8691645, "lon": -73.9078783 }, + { "lat": 40.8730106, "lon": -73.9060942 }, + { "lat": 40.8732346, "lon": -73.9059930 }, + { "lat": 40.8734224, "lon": -73.9059042 }, + { "lat": 40.8736313, "lon": -73.9058031 }, + { "lat": 40.8738369, "lon": -73.9056987 }, + { "lat": 40.8740402, "lon": -73.9055901 } + ], + "tags": { + "destination:lanes": "none|none|Van Cortlandt Park South;West 230 Street", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 958108257, + "bounds": { + "minlat": 40.7809091, + "minlon": -73.9441467, + "maxlat": 40.7823625, + "maxlon": -73.9440036 + }, + "nodes": [ + 371207282, + 9178967030, + 371208208, + 9178967029, + 3785522900, + 7941041501, + 589929460, + 7941041513, + 589929461, + 7941041509, + 589929463, + 589929447 + ], + "geometry": [ + { "lat": 40.7809091, "lon": -73.9440036 }, + { "lat": 40.7812146, "lon": -73.9440782 }, + { "lat": 40.7813149, "lon": -73.9441030 }, + { "lat": 40.7814175, "lon": -73.9441190 }, + { "lat": 40.7815211, "lon": -73.9441342 }, + { "lat": 40.7816248, "lon": -73.9441423 }, + { "lat": 40.7817246, "lon": -73.9441467 }, + { "lat": 40.7818299, "lon": -73.9441456 }, + { "lat": 40.7819343, "lon": -73.9441349 }, + { "lat": 40.7820473, "lon": -73.9441228 }, + { "lat": 40.7821636, "lon": -73.9441023 }, + { "lat": 40.7823625, "lon": -73.9440512 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 958130663, + "bounds": { + "minlat": 40.7543344, + "minlon": -73.9626987, + "maxlat": 40.7551040, + "maxlon": -73.9619994 + }, + "nodes": [ + 5426969134, + 5426969132, + 9142568815, + 371021650, + 42450656 + ], + "geometry": [ + { "lat": 40.7551040, "lon": -73.9619994 }, + { "lat": 40.7549581, "lon": -73.9621602 }, + { "lat": 40.7548652, "lon": -73.9622515 }, + { "lat": 40.7547770, "lon": -73.9623314 }, + { "lat": 40.7543344, "lon": -73.9626987 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 958130664, + "bounds": { + "minlat": 40.7551040, + "minlon": -73.9619994, + "maxlat": 40.7552945, + "maxlon": -73.9617558 + }, + "nodes": [ + 8865306820, + 9142568813, + 9142568814, + 5426969134 + ], + "geometry": [ + { "lat": 40.7552945, "lon": -73.9617558 }, + { "lat": 40.7552342, "lon": -73.9618366 }, + { "lat": 40.7551566, "lon": -73.9619402 }, + { "lat": 40.7551040, "lon": -73.9619994 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "||East 49th Street;Midtown Tunnel;East 34th Street|East 53rd Street", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "surface": "asphalt", + "turn:lanes": "|||slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 958132967, + "bounds": { + "minlat": 40.8543602, + "minlon": -73.9188729, + "maxlat": 40.8571524, + "maxlon": -73.9172766 + }, + "nodes": [ + 60919842, + 7898958233, + 7898958275, + 60919843, + 7898998216, + 60919933, + 7898958224, + 7898958266, + 60919932, + 7898958258, + 60919931, + 7898998200, + 595750842 + ], + "geometry": [ + { "lat": 40.8543602, "lon": -73.9188729 }, + { "lat": 40.8545434, "lon": -73.9187168 }, + { "lat": 40.8547315, "lon": -73.9185669 }, + { "lat": 40.8549230, "lon": -73.9184251 }, + { "lat": 40.8551139, "lon": -73.9182904 }, + { "lat": 40.8553100, "lon": -73.9181617 }, + { "lat": 40.8555085, "lon": -73.9180401 }, + { "lat": 40.8557069, "lon": -73.9179253 }, + { "lat": 40.8559095, "lon": -73.9178159 }, + { "lat": 40.8561114, "lon": -73.9177182 }, + { "lat": 40.8563209, "lon": -73.9176219 }, + { "lat": 40.8565264, "lon": -73.9175360 }, + { "lat": 40.8571524, "lon": -73.9172766 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 958145355, + "bounds": { + "minlat": 40.8244330, + "minlon": -73.9310883, + "maxlat": 40.8273347, + "maxlon": -73.9309297 + }, + "nodes": [ + 529051355, + 529051357, + 529051358, + 9166314430, + 529051359, + 9166314458, + 529051360, + 529051361, + 9166314459, + 9166314461, + 9166314460, + 9166314462, + 529051364 + ], + "geometry": [ + { "lat": 40.8244330, "lon": -73.9310052 }, + { "lat": 40.8250811, "lon": -73.9310625 }, + { "lat": 40.8252921, "lon": -73.9310788 }, + { "lat": 40.8255173, "lon": -73.9310883 }, + { "lat": 40.8257304, "lon": -73.9310864 }, + { "lat": 40.8259476, "lon": -73.9310720 }, + { "lat": 40.8261639, "lon": -73.9310498 }, + { "lat": 40.8264104, "lon": -73.9310132 }, + { "lat": 40.8268184, "lon": -73.9309513 }, + { "lat": 40.8269278, "lon": -73.9309390 }, + { "lat": 40.8270307, "lon": -73.9309311 }, + { "lat": 40.8271564, "lon": -73.9309297 }, + { "lat": 40.8273347, "lon": -73.9309338 } + ], + "tags": { + "bridge": "yes", + "ele": "1", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 958145356, + "bounds": { + "minlat": 40.8234750, + "minlon": -73.9310052, + "maxlat": 40.8244330, + "maxlon": -73.9309252 + }, + "nodes": [ + 8865407184, + 529051355 + ], + "geometry": [ + { "lat": 40.8234750, "lon": -73.9309252 }, + { "lat": 40.8244330, "lon": -73.9310052 } + ], + "tags": { + "bridge": "yes", + "destination:lanes": "Albany|Albany;New Haven|New Haven|East 161 Street;Macombs Dam Bridge", + "ele": "1", + "hgv": "designated", + "highway": "motorway", + "lanes": "4", + "layer": "2", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete", + "turn:lanes": "|||slight_right" + } +}, +{ + "type": "way", + "id": 958158459, + "bounds": { + "minlat": 40.7020119, + "minlon": -74.0095892, + "maxlat": 40.7022362, + "maxlon": -74.0091454 + }, + "nodes": [ + 205020852, + 3790255314, + 4145680642, + 4145680643, + 3790255316 + ], + "geometry": [ + { "lat": 40.7020119, "lon": -74.0095892 }, + { "lat": 40.7020689, "lon": -74.0094594 }, + { "lat": 40.7021219, "lon": -74.0093534 }, + { "lat": 40.7021748, "lon": -74.0092532 }, + { "lat": 40.7022362, "lon": -74.0091454 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "destination:lanes": "FDR Drive|FDR Drive|FDR Drive;Brooklyn Bridge;Manhattan Civic Center;South Street", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "25 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "note": "this is supposed to be a local truck route but signs say no trucks", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "turn:lanes": "through|through|merge_to_left", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 958162233, + "bounds": { + "minlat": 40.7107500, + "minlon": -73.9814926, + "maxlat": 40.7152339, + "maxlon": -73.9761957 + }, + "nodes": [ + 42423307, + 42451503, + 9907942830, + 9907942831, + 3235903195, + 9907942832, + 9907942833, + 42423300, + 9907942834, + 370891820, + 9907942835, + 42451508, + 42451513, + 9907942836, + 9907942837, + 9907942838, + 42451518, + 42451523, + 9907942839, + 9907942840, + 370891819, + 9907942841, + 9907942842, + 9907942843, + 370891818, + 9907942844, + 9907942845, + 42437522, + 9907942846, + 9907942847, + 370892861 + ], + "geometry": [ + { "lat": 40.7107500, "lon": -73.9814926 }, + { "lat": 40.7108089, "lon": -73.9806290 }, + { "lat": 40.7108191, "lon": -73.9804912 }, + { "lat": 40.7108354, "lon": -73.9803492 }, + { "lat": 40.7108556, "lon": -73.9802100 }, + { "lat": 40.7108813, "lon": -73.9800672 }, + { "lat": 40.7109082, "lon": -73.9799393 }, + { "lat": 40.7109390, "lon": -73.9798072 }, + { "lat": 40.7109740, "lon": -73.9796749 }, + { "lat": 40.7110161, "lon": -73.9795399 }, + { "lat": 40.7110607, "lon": -73.9794069 }, + { "lat": 40.7111094, "lon": -73.9792792 }, + { "lat": 40.7111603, "lon": -73.9791534 }, + { "lat": 40.7112185, "lon": -73.9790303 }, + { "lat": 40.7112757, "lon": -73.9789137 }, + { "lat": 40.7113381, "lon": -73.9787994 }, + { "lat": 40.7114054, "lon": -73.9786816 }, + { "lat": 40.7114751, "lon": -73.9785752 }, + { "lat": 40.7115526, "lon": -73.9784640 }, + { "lat": 40.7116299, "lon": -73.9783599 }, + { "lat": 40.7117076, "lon": -73.9782651 }, + { "lat": 40.7117868, "lon": -73.9781725 }, + { "lat": 40.7118697, "lon": -73.9780877 }, + { "lat": 40.7119605, "lon": -73.9779983 }, + { "lat": 40.7120489, "lon": -73.9779171 }, + { "lat": 40.7121401, "lon": -73.9778462 }, + { "lat": 40.7122338, "lon": -73.9777749 }, + { "lat": 40.7123296, "lon": -73.9777112 }, + { "lat": 40.7124260, "lon": -73.9776500 }, + { "lat": 40.7125260, "lon": -73.9775929 }, + { "lat": 40.7152339, "lon": -73.9761957 } + ], + "tags": { + "alt_name": "East River Drive", + "destination:lanes": "|East 20th Street;East 23rd Street|East Houston Street;Williamsburg Bridge", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "||slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 958178588, + "bounds": { + "minlat": 40.8597515, + "minlon": -73.9156163, + "maxlat": 40.8634445, + "maxlon": -73.9110818 + }, + "nodes": [ + 579655095, + 12058568479, + 12058568478, + 7898998212, + 7898958219, + 60915410, + 7898998203, + 7898958210, + 60915409, + 7898958253, + 7898998195, + 7898958244, + 7898958229, + 7898998221, + 7898958279, + 7898958237, + 7898998228, + 7898998187, + 60915408, + 7898958213, + 42749265 + ], + "geometry": [ + { "lat": 40.8634445, "lon": -73.9110818 }, + { "lat": 40.8633571, "lon": -73.9111700 }, + { "lat": 40.8632685, "lon": -73.9112567 }, + { "lat": 40.8631828, "lon": -73.9113453 }, + { "lat": 40.8630123, "lon": -73.9115214 }, + { "lat": 40.8628385, "lon": -73.9117045 }, + { "lat": 40.8626679, "lon": -73.9118877 }, + { "lat": 40.8624994, "lon": -73.9120757 }, + { "lat": 40.8623328, "lon": -73.9122649 }, + { "lat": 40.8621685, "lon": -73.9124590 }, + { "lat": 40.8619889, "lon": -73.9126855 }, + { "lat": 40.8615294, "lon": -73.9132728 }, + { "lat": 40.8613729, "lon": -73.9134735 }, + { "lat": 40.8612158, "lon": -73.9136791 }, + { "lat": 40.8610643, "lon": -73.9138814 }, + { "lat": 40.8609088, "lon": -73.9140875 }, + { "lat": 40.8607539, "lon": -73.9142919 }, + { "lat": 40.8606012, "lon": -73.9144962 }, + { "lat": 40.8604479, "lon": -73.9147015 }, + { "lat": 40.8599089, "lon": -73.9154149 }, + { "lat": 40.8597515, "lon": -73.9156163 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxheight": "default", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 958181853, + "bounds": { + "minlat": 40.8571524, + "minlon": -73.9172766, + "maxlat": 40.8591400, + "maxlon": -73.9160898 + }, + "nodes": [ + 595750842, + 7898958240, + 7898998231, + 60915930, + 60915929, + 7898998190, + 60915928, + 7898958247, + 60915927, + 60915926, + 595749116 + ], + "geometry": [ + { "lat": 40.8571524, "lon": -73.9172766 }, + { "lat": 40.8573601, "lon": -73.9171901 }, + { "lat": 40.8575671, "lon": -73.9171027 }, + { "lat": 40.8577746, "lon": -73.9170106 }, + { "lat": 40.8579810, "lon": -73.9169077 }, + { "lat": 40.8581830, "lon": -73.9167990 }, + { "lat": 40.8583844, "lon": -73.9166818 }, + { "lat": 40.8585810, "lon": -73.9165535 }, + { "lat": 40.8587685, "lon": -73.9164153 }, + { "lat": 40.8589595, "lon": -73.9162573 }, + { "lat": 40.8591400, "lon": -73.9160898 } + ], + "tags": { + "destination:lanes": "||West 230th Street;West Fordham Road;University Heights Bridge", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 958188024, + "bounds": { + "minlat": 40.7110959, + "minlon": -73.9796338, + "maxlat": 40.7125226, + "maxlon": -73.9777588 + }, + "nodes": [ + 42423296, + 370891816, + 9907942829, + 9907942828, + 370891817, + 9907942826, + 9907942827, + 9907942825, + 42457971, + 9907942824, + 42457964, + 9907942823, + 42457962, + 9907942822, + 9907942821, + 42457958, + 9907942820, + 42457956, + 42457953, + 8859899698 + ], + "geometry": [ + { "lat": 40.7125226, "lon": -73.9777588 }, + { "lat": 40.7123857, "lon": -73.9778316 }, + { "lat": 40.7122834, "lon": -73.9778929 }, + { "lat": 40.7121901, "lon": -73.9779629 }, + { "lat": 40.7121037, "lon": -73.9780368 }, + { "lat": 40.7120110, "lon": -73.9781187 }, + { "lat": 40.7119281, "lon": -73.9782014 }, + { "lat": 40.7118498, "lon": -73.9782841 }, + { "lat": 40.7117678, "lon": -73.9783772 }, + { "lat": 40.7117097, "lon": -73.9784511 }, + { "lat": 40.7116109, "lon": -73.9785774 }, + { "lat": 40.7115407, "lon": -73.9786833 }, + { "lat": 40.7114739, "lon": -73.9787895 }, + { "lat": 40.7114061, "lon": -73.9789041 }, + { "lat": 40.7113481, "lon": -73.9790164 }, + { "lat": 40.7112893, "lon": -73.9791359 }, + { "lat": 40.7112356, "lon": -73.9792567 }, + { "lat": 40.7111861, "lon": -73.9793790 }, + { "lat": 40.7111395, "lon": -73.9795044 }, + { "lat": 40.7110959, "lon": -73.9796338 } + ], + "tags": { + "alt_name": "East River Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 958188025, + "bounds": { + "minlat": 40.7155522, + "minlon": -73.9761820, + "maxlat": 40.7163982, + "maxlon": -73.9757407 + }, + "nodes": [ + 42423039, + 42450820 + ], + "geometry": [ + { "lat": 40.7163982, "lon": -73.9757407 }, + { "lat": 40.7155522, "lon": -73.9761820 } + ], + "tags": { + "alt_name": "East River Drive", + "destination:lanes": "||South Street;Manhattan Bridge|Grand Street;Williamsburg Bridge", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "|||slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 958203289, + "bounds": { + "minlat": 40.7057747, + "minlon": -74.0035408, + "maxlat": 40.7062566, + "maxlon": -74.0027542 + }, + "nodes": [ + 42451436, + 4145680638, + 4145704202, + 42422270 + ], + "geometry": [ + { "lat": 40.7057747, "lon": -74.0035408 }, + { "lat": 40.7059991, "lon": -74.0031927 }, + { "lat": 40.7061400, "lon": -74.0029581 }, + { "lat": 40.7062566, "lon": -74.0027542 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "bridge": "yes", + "destination:lanes": "Franklin Delano Roosevelt Drive North|Franklin Delano Roosevelt Drive North|Brooklyn Bridge;Manhattan Civic Center;Pace University;Fulton Street;New York Presbyterian Lower Manhattan Hospital", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "turn:lanes": "||slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 958204365, + "bounds": { + "minlat": 40.7844055, + "minlon": -73.9418662, + "maxlat": 40.7972731, + "maxlon": -73.9291580 + }, + "nodes": [ + 371209940, + 371211418, + 371212268, + 3785522911, + 371212269, + 3785522912, + 3785522913, + 3785522914, + 371212271, + 3785522915, + 371212274, + 371212784, + 371212785, + 9178958191, + 371212787, + 5822838496, + 9178958192, + 371212788, + 3785522921, + 371212792, + 371212793, + 9178958182, + 371212794, + 9178958181, + 3786724001, + 9178958180, + 3786724002, + 371212795, + 371218354, + 9178958179, + 371218355, + 371218356, + 9178958178, + 3786724045, + 9178958177, + 371218357, + 9178958176, + 371218358, + 3786724046, + 371218359, + 9178958175, + 9178958174, + 9178958173, + 371218362, + 3786724049, + 371218363, + 3786724050, + 371218762, + 371218765, + 3786724051, + 9178958157, + 371218766, + 9178958156, + 371218767, + 9178958155, + 371218768, + 9178958154, + 3786724052, + 371218770, + 3786724053, + 371218771, + 371218772, + 371218774, + 5822838493, + 371225125, + 371225128, + 3786724055, + 3786724056, + 371239958 + ], + "geometry": [ + { "lat": 40.7844055, "lon": -73.9418662 }, + { "lat": 40.7850568, "lon": -73.9405539 }, + { "lat": 40.7851228, "lon": -73.9404309 }, + { "lat": 40.7851842, "lon": -73.9403187 }, + { "lat": 40.7852519, "lon": -73.9402101 }, + { "lat": 40.7853225, "lon": -73.9401094 }, + { "lat": 40.7854054, "lon": -73.9400037 }, + { "lat": 40.7854864, "lon": -73.9399041 }, + { "lat": 40.7855708, "lon": -73.9398108 }, + { "lat": 40.7856554, "lon": -73.9397244 }, + { "lat": 40.7857363, "lon": -73.9396442 }, + { "lat": 40.7870859, "lon": -73.9384615 }, + { "lat": 40.7871748, "lon": -73.9383868 }, + { "lat": 40.7872763, "lon": -73.9383068 }, + { "lat": 40.7873717, "lon": -73.9382358 }, + { "lat": 40.7874664, "lon": -73.9381722 }, + { "lat": 40.7875663, "lon": -73.9381081 }, + { "lat": 40.7876659, "lon": -73.9380507 }, + { "lat": 40.7877717, "lon": -73.9379994 }, + { "lat": 40.7893055, "lon": -73.9373162 }, + { "lat": 40.7894118, "lon": -73.9372666 }, + { "lat": 40.7895087, "lon": -73.9372124 }, + { "lat": 40.7895946, "lon": -73.9371595 }, + { "lat": 40.7896893, "lon": -73.9370968 }, + { "lat": 40.7897904, "lon": -73.9370242 }, + { "lat": 40.7899831, "lon": -73.9368863 }, + { "lat": 40.7901737, "lon": -73.9367478 }, + { "lat": 40.7908259, "lon": -73.9362312 }, + { "lat": 40.7909125, "lon": -73.9361645 }, + { "lat": 40.7910010, "lon": -73.9360893 }, + { "lat": 40.7910938, "lon": -73.9360048 }, + { "lat": 40.7911806, "lon": -73.9359251 }, + { "lat": 40.7912657, "lon": -73.9358386 }, + { "lat": 40.7913497, "lon": -73.9357519 }, + { "lat": 40.7914342, "lon": -73.9356598 }, + { "lat": 40.7915131, "lon": -73.9355645 }, + { "lat": 40.7915934, "lon": -73.9354684 }, + { "lat": 40.7916707, "lon": -73.9353716 }, + { "lat": 40.7917486, "lon": -73.9352672 }, + { "lat": 40.7918329, "lon": -73.9351544 }, + { "lat": 40.7923352, "lon": -73.9344330 }, + { "lat": 40.7924793, "lon": -73.9342181 }, + { "lat": 40.7926221, "lon": -73.9340021 }, + { "lat": 40.7927618, "lon": -73.9337878 }, + { "lat": 40.7929026, "lon": -73.9335602 }, + { "lat": 40.7930352, "lon": -73.9333387 }, + { "lat": 40.7931675, "lon": -73.9331125 }, + { "lat": 40.7932950, "lon": -73.9328857 }, + { "lat": 40.7944308, "lon": -73.9307942 }, + { "lat": 40.7944963, "lon": -73.9306758 }, + { "lat": 40.7945664, "lon": -73.9305592 }, + { "lat": 40.7946364, "lon": -73.9304501 }, + { "lat": 40.7947153, "lon": -73.9303492 }, + { "lat": 40.7947943, "lon": -73.9302560 }, + { "lat": 40.7948849, "lon": -73.9301612 }, + { "lat": 40.7949709, "lon": -73.9300775 }, + { "lat": 40.7950627, "lon": -73.9300034 }, + { "lat": 40.7951599, "lon": -73.9299293 }, + { "lat": 40.7953583, "lon": -73.9297855 }, + { "lat": 40.7955471, "lon": -73.9296551 }, + { "lat": 40.7957492, "lon": -73.9295449 }, + { "lat": 40.7959509, "lon": -73.9294568 }, + { "lat": 40.7961696, "lon": -73.9293809 }, + { "lat": 40.7963763, "lon": -73.9293224 }, + { "lat": 40.7965898, "lon": -73.9292680 }, + { "lat": 40.7968032, "lon": -73.9292270 }, + { "lat": 40.7969644, "lon": -73.9292012 }, + { "lat": 40.7971568, "lon": -73.9291721 }, + { "lat": 40.7972731, "lon": -73.9291580 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "RFK Bridge;Bruckner Expressway;Grand Central Parkway;Randalls Island;Icahn Stadium;Harlem River Drive North;Geo Washington Bridge|Harlem River Drive North;Geo Washington Bridge;Willis Avenue Bridge;Deegan Expressway|Willis Avenue Bridge;Deegan Expressway", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "slight_left;through|none|none", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 958209853, + "bounds": { + "minlat": 40.8306765, + "minlon": -73.9510824, + "maxlat": 40.8319585, + "maxlon": -73.9505849 + }, + "nodes": [ + 7907957252, + 7907957228, + 7907957279, + 7907957256, + 7907957283, + 587934436 + ], + "geometry": [ + { "lat": 40.8319585, "lon": -73.9505849 }, + { "lat": 40.8315213, "lon": -73.9507355 }, + { "lat": 40.8313071, "lon": -73.9508153 }, + { "lat": 40.8310952, "lon": -73.9508985 }, + { "lat": 40.8308887, "lon": -73.9509865 }, + { "lat": 40.8306765, "lon": -73.9510824 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 958210316, + "bounds": { + "minlat": 40.8111918, + "minlon": -73.9315065, + "maxlat": 40.8134360, + "maxlon": -73.9312217 + }, + "nodes": [ + 529049384, + 529049385, + 2408974706, + 9163775372, + 529049386, + 529049387, + 529049388, + 2408974713, + 9163775373, + 529049389, + 529049390, + 2408974715, + 529049391, + 9163775374, + 4736480527 + ], + "geometry": [ + { "lat": 40.8111918, "lon": -73.9312373 }, + { "lat": 40.8112999, "lon": -73.9312932 }, + { "lat": 40.8114070, "lon": -73.9313411 }, + { "lat": 40.8115119, "lon": -73.9313788 }, + { "lat": 40.8116115, "lon": -73.9314098 }, + { "lat": 40.8117234, "lon": -73.9314409 }, + { "lat": 40.8119062, "lon": -73.9314817 }, + { "lat": 40.8120467, "lon": -73.9314970 }, + { "lat": 40.8121554, "lon": -73.9315025 }, + { "lat": 40.8122638, "lon": -73.9315065 }, + { "lat": 40.8123726, "lon": -73.9315013 }, + { "lat": 40.8124780, "lon": -73.9314917 }, + { "lat": 40.8126851, "lon": -73.9314549 }, + { "lat": 40.8127949, "lon": -73.9314234 }, + { "lat": 40.8134360, "lon": -73.9312217 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 958264261, + "bounds": { + "minlat": 40.7117169, + "minlon": -74.0008524, + "maxlat": 40.7117654, + "maxlon": -73.9999968 + }, + "nodes": [ + 7477036738, + 3898690210, + 4158760599 + ], + "geometry": [ + { "lat": 40.7117169, "lon": -74.0008524 }, + { "lat": 40.7117213, "lon": -74.0007550 }, + { "lat": 40.7117654, "lon": -73.9999968 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 958264262, + "bounds": { + "minlat": 40.7113427, + "minlon": -74.0008786, + "maxlat": 40.7117169, + "maxlon": -74.0007998 + }, + "nodes": [ + 42444293, + 11501440561, + 11501440577, + 8279851135, + 7477036737, + 11396764751, + 9369042177, + 9369042178, + 7477036738 + ], + "geometry": [ + { "lat": 40.7113427, "lon": -74.0007998 }, + { "lat": 40.7114058, "lon": -74.0008273 }, + { "lat": 40.7114628, "lon": -74.0008476 }, + { "lat": 40.7115239, "lon": -74.0008639 }, + { "lat": 40.7115964, "lon": -74.0008753 }, + { "lat": 40.7116200, "lon": -74.0008786 }, + { "lat": 40.7116518, "lon": -74.0008763 }, + { "lat": 40.7116812, "lon": -74.0008685 }, + { "lat": 40.7117169, "lon": -74.0008524 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 958268977, + "bounds": { + "minlat": 40.7245552, + "minlon": -74.0026190, + "maxlat": 40.7248800, + "maxlon": -74.0019395 + }, + "nodes": [ + 42436779, + 8231934380, + 8231938430, + 42442276 + ], + "geometry": [ + { "lat": 40.7248800, "lon": -74.0026190 }, + { "lat": 40.7248513, "lon": -74.0025590 }, + { "lat": 40.7245949, "lon": -74.0020228 }, + { "lat": 40.7245552, "lon": -74.0019395 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "motor_vehicle:conditional": "yes @ (Mo-We 22:00-10:00, Th-Su 23:00-10:00)", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 958751961, + "bounds": { + "minlat": 40.7996787, + "minlon": -73.9968400, + "maxlat": 40.7997900, + "maxlon": -73.9968385 + }, + "nodes": [ + 6894972441, + 4215808346 + ], + "geometry": [ + { "lat": 40.7996787, "lon": -73.9968385 }, + { "lat": 40.7997900, "lon": -73.9968400 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "turn:lanes:backward": "left|", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 958751962, + "bounds": { + "minlat": 40.8000560, + "minlon": -73.9968430, + "maxlat": 40.8032093, + "maxlon": -73.9960920 + }, + "nodes": [ + 103858840, + 103870477, + 103870478, + 3575305195, + 103870479, + 3575305207, + 103869216 + ], + "geometry": [ + { "lat": 40.8000560, "lon": -73.9968430 }, + { "lat": 40.8007060, "lon": -73.9966520 }, + { "lat": 40.8014001, "lon": -73.9964268 }, + { "lat": 40.8020008, "lon": -73.9962776 }, + { "lat": 40.8021251, "lon": -73.9962475 }, + { "lat": 40.8027535, "lon": -73.9961393 }, + { "lat": 40.8032093, "lon": -73.9960920 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 958756863, + "bounds": { + "minlat": 40.8273192, + "minlon": -73.9322103, + "maxlat": 40.8303761, + "maxlon": -73.9310942 + }, + "nodes": [ + 529054624, + 529054628, + 9166314481, + 529054632, + 9166314480, + 529054635, + 9166314479, + 9166314478, + 529054639, + 9166314477, + 9166314569, + 529054640, + 9166314568, + 529054651, + 9166314567, + 9166314475, + 9166314566, + 9166314474, + 9166314565, + 529054663, + 9166314564, + 9166314472, + 9166314563, + 529054675 + ], + "geometry": [ + { "lat": 40.8303761, "lon": -73.9322103 }, + { "lat": 40.8301467, "lon": -73.9321603 }, + { "lat": 40.8299870, "lon": -73.9321187 }, + { "lat": 40.8298464, "lon": -73.9320725 }, + { "lat": 40.8297292, "lon": -73.9320298 }, + { "lat": 40.8296158, "lon": -73.9319833 }, + { "lat": 40.8295198, "lon": -73.9319415 }, + { "lat": 40.8294161, "lon": -73.9318887 }, + { "lat": 40.8292940, "lon": -73.9318239 }, + { "lat": 40.8287901, "lon": -73.9315347 }, + { "lat": 40.8286892, "lon": -73.9314782 }, + { "lat": 40.8285857, "lon": -73.9314225 }, + { "lat": 40.8285001, "lon": -73.9313810 }, + { "lat": 40.8284032, "lon": -73.9313363 }, + { "lat": 40.8282860, "lon": -73.9312912 }, + { "lat": 40.8281750, "lon": -73.9312524 }, + { "lat": 40.8280636, "lon": -73.9312164 }, + { "lat": 40.8279554, "lon": -73.9311900 }, + { "lat": 40.8278504, "lon": -73.9311673 }, + { "lat": 40.8277375, "lon": -73.9311440 }, + { "lat": 40.8276353, "lon": -73.9311297 }, + { "lat": 40.8275282, "lon": -73.9311154 }, + { "lat": 40.8274189, "lon": -73.9311006 }, + { "lat": 40.8273192, "lon": -73.9310942 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 958762093, + "bounds": { + "minlat": 40.8174249, + "minlon": -73.9309252, + "maxlat": 40.8234750, + "maxlon": -73.9305752 + }, + "nodes": [ + 529051337, + 9166288552, + 9166288553, + 9166288550, + 9166288551, + 529051338, + 9166288549, + 529051339, + 529051341, + 9166288548, + 529051343, + 9166288592, + 9166288591, + 8865407184 + ], + "geometry": [ + { "lat": 40.8174249, "lon": -73.9308181 }, + { "lat": 40.8178544, "lon": -73.9306945 }, + { "lat": 40.8179636, "lon": -73.9306666 }, + { "lat": 40.8180729, "lon": -73.9306413 }, + { "lat": 40.8181819, "lon": -73.9306200 }, + { "lat": 40.8182952, "lon": -73.9306027 }, + { "lat": 40.8183990, "lon": -73.9305889 }, + { "lat": 40.8185159, "lon": -73.9305803 }, + { "lat": 40.8186242, "lon": -73.9305752 }, + { "lat": 40.8187364, "lon": -73.9305754 }, + { "lat": 40.8188456, "lon": -73.9305788 }, + { "lat": 40.8211435, "lon": -73.9307312 }, + { "lat": 40.8223449, "lon": -73.9308281 }, + { "lat": 40.8234750, "lon": -73.9309252 } + ], + "tags": { + "bridge": "yes", + "ele": "1", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 958792054, + "bounds": { + "minlat": 40.7503995, + "minlon": -73.9775326, + "maxlat": 40.7504628, + "maxlon": -73.9774867 + }, + "nodes": [ + 8871600818, + 10243605318, + 8871600819 + ], + "geometry": [ + { "lat": 40.7503995, "lon": -73.9775326 }, + { "lat": 40.7504534, "lon": -73.9774935 }, + { "lat": 40.7504628, "lon": -73.9774867 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 958792055, + "bounds": { + "minlat": 40.7499476, + "minlon": -73.9783768, + "maxlat": 40.7500131, + "maxlon": -73.9783287 + }, + "nodes": [ + 8871600821, + 10171269353, + 8871600820 + ], + "geometry": [ + { "lat": 40.7499476, "lon": -73.9783768 }, + { "lat": 40.7499988, "lon": -73.9783388 }, + { "lat": 40.7500131, "lon": -73.9783287 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 958795914, + "bounds": { + "minlat": 40.7516587, + "minlon": -73.9652088, + "maxlat": 40.7531937, + "maxlon": -73.9637348 + }, + "nodes": [ + 370924677, + 9142568781, + 42424183 + ], + "geometry": [ + { "lat": 40.7531937, "lon": -73.9637348 }, + { "lat": 40.7526688, "lon": -73.9642563 }, + { "lat": 40.7516587, "lon": -73.9652088 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 958795915, + "bounds": { + "minlat": 40.7531937, + "minlon": -73.9637348, + "maxlat": 40.7535447, + "maxlon": -73.9634115 + }, + "nodes": [ + 5426969133, + 9142584922, + 370924677 + ], + "geometry": [ + { "lat": 40.7535447, "lon": -73.9634115 }, + { "lat": 40.7533579, "lon": -73.9635797 }, + { "lat": 40.7531937, "lon": -73.9637348 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "||Midtown Tunnel;East 34th Street|East 49th Street", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "turn:lanes": "|||slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 958832670, + "bounds": { + "minlat": 40.7579110, + "minlon": -73.9701216, + "maxlat": 40.7579857, + "maxlon": -73.9700699 + }, + "nodes": [ + 8872058239, + 10172968781, + 8872058240 + ], + "geometry": [ + { "lat": 40.7579857, "lon": -73.9700699 }, + { "lat": 40.7579272, "lon": -73.9701108 }, + { "lat": 40.7579110, "lon": -73.9701216 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 958852636, + "bounds": { + "minlat": 40.7332701, + "minlon": -73.9212658, + "maxlat": 40.7336556, + "maxlon": -73.9207644 + }, + "nodes": [ + 479166879, + 597311398 + ], + "geometry": [ + { "lat": 40.7332701, "lon": -73.9207644 }, + { "lat": 40.7336556, "lon": -73.9212658 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 958854611, + "bounds": { + "minlat": 40.7281778, + "minlon": -73.9099944, + "maxlat": 40.7284448, + "maxlon": -73.9092798 + }, + "nodes": [ + 7950054622, + 8872404065, + 8872404066, + 11925728888, + 6859748702 + ], + "geometry": [ + { "lat": 40.7284448, "lon": -73.9099944 }, + { "lat": 40.7281778, "lon": -73.9094602 }, + { "lat": 40.7282590, "lon": -73.9093608 }, + { "lat": 40.7282882, "lon": -73.9093278 }, + { "lat": 40.7283284, "lon": -73.9092798 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 958854612, + "bounds": { + "minlat": 40.7273814, + "minlon": -73.9085315, + "maxlat": 40.7276947, + "maxlon": -73.9082221 + }, + "nodes": [ + 8872404067, + 11925728887, + 8872404068 + ], + "geometry": [ + { "lat": 40.7276947, "lon": -73.9082221 }, + { "lat": 40.7276495, "lon": -73.9082668 }, + { "lat": 40.7273814, "lon": -73.9085315 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 958854613, + "bounds": { + "minlat": 40.7264265, + "minlon": -73.9091722, + "maxlat": 40.7268992, + "maxlon": -73.9084372 + }, + "nodes": [ + 8872404075, + 11925728886, + 8872404077, + 8872404076, + 12353943686, + 8872404071 + ], + "geometry": [ + { "lat": 40.7264265, "lon": -73.9084372 }, + { "lat": 40.7264877, "lon": -73.9085219 }, + { "lat": 40.7266766, "lon": -73.9087837 }, + { "lat": 40.7266927, "lon": -73.9088061 }, + { "lat": 40.7267638, "lon": -73.9089322 }, + { "lat": 40.7268992, "lon": -73.9091722 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 958854614, + "bounds": { + "minlat": 40.7262782, + "minlon": -73.9097002, + "maxlat": 40.7266766, + "maxlon": -73.9087837 + }, + "nodes": [ + 8872404077, + 8872404082, + 8872404078, + 8872404084, + 8872404086, + 8872404079, + 8872404080, + 8872404081 + ], + "geometry": [ + { "lat": 40.7266766, "lon": -73.9087837 }, + { "lat": 40.7265862, "lon": -73.9088943 }, + { "lat": 40.7264979, "lon": -73.9090022 }, + { "lat": 40.7264519, "lon": -73.9090636 }, + { "lat": 40.7263475, "lon": -73.9092026 }, + { "lat": 40.7263344, "lon": -73.9092202 }, + { "lat": 40.7262782, "lon": -73.9094381 }, + { "lat": 40.7263765, "lon": -73.9097002 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 958854615, + "bounds": { + "minlat": 40.7265862, + "minlon": -73.9092744, + "maxlat": 40.7267950, + "maxlon": -73.9088943 + }, + "nodes": [ + 8872404082, + 8872404083 + ], + "geometry": [ + { "lat": 40.7265862, "lon": -73.9088943 }, + { "lat": 40.7267950, "lon": -73.9092744 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 958854616, + "bounds": { + "minlat": 40.7264519, + "minlon": -73.9094190, + "maxlat": 40.7266476, + "maxlon": -73.9090636 + }, + "nodes": [ + 8872404084, + 8872404085 + ], + "geometry": [ + { "lat": 40.7264519, "lon": -73.9090636 }, + { "lat": 40.7266476, "lon": -73.9094190 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 958854617, + "bounds": { + "minlat": 40.7263475, + "minlon": -73.9095496, + "maxlat": 40.7265160, + "maxlon": -73.9092026 + }, + "nodes": [ + 8872404086, + 8872404087 + ], + "geometry": [ + { "lat": 40.7263475, "lon": -73.9092026 }, + { "lat": 40.7265160, "lon": -73.9095496 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 958854618, + "bounds": { + "minlat": 40.7273268, + "minlon": -73.9085847, + "maxlat": 40.7273814, + "maxlon": -73.9085315 + }, + "nodes": [ + 8872404068, + 12353953309, + 8872404088 + ], + "geometry": [ + { "lat": 40.7273814, "lon": -73.9085315 }, + { "lat": 40.7273526, "lon": -73.9085596 }, + { "lat": 40.7273268, "lon": -73.9085847 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 958854619, + "bounds": { + "minlat": 40.7261380, + "minlon": -73.9097785, + "maxlat": 40.7273268, + "maxlon": -73.9085847 + }, + "nodes": [ + 8872404088, + 8872404069, + 8872404070, + 9990029723, + 9990029720, + 8872404071, + 8872404083, + 8872404085, + 8872404072, + 8872404087, + 8872404081, + 8872404073, + 11925728890, + 8872404074 + ], + "geometry": [ + { "lat": 40.7273268, "lon": -73.9085847 }, + { "lat": 40.7271040, "lon": -73.9088017 }, + { "lat": 40.7269751, "lon": -73.9089303 }, + { "lat": 40.7269502, "lon": -73.9090146 }, + { "lat": 40.7269711, "lon": -73.9091030 }, + { "lat": 40.7268992, "lon": -73.9091722 }, + { "lat": 40.7267950, "lon": -73.9092744 }, + { "lat": 40.7266476, "lon": -73.9094190 }, + { "lat": 40.7265326, "lon": -73.9095318 }, + { "lat": 40.7265160, "lon": -73.9095496 }, + { "lat": 40.7263765, "lon": -73.9097002 }, + { "lat": 40.7263426, "lon": -73.9097366 }, + { "lat": 40.7262094, "lon": -73.9097639 }, + { "lat": 40.7261380, "lon": -73.9097785 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 958919323, + "bounds": { + "minlat": 40.7536222, + "minlon": -73.9870696, + "maxlat": 40.7543144, + "maxlon": -73.9868481 + }, + "nodes": [ + 10173490585, + 10689018087, + 10173490584, + 10173490595, + 10689018086, + 42428272 + ], + "geometry": [ + { "lat": 40.7543144, "lon": -73.9868481 }, + { "lat": 40.7542738, "lon": -73.9868627 }, + { "lat": 40.7542534, "lon": -73.9868700 }, + { "lat": 40.7536813, "lon": -73.9870496 }, + { "lat": 40.7536595, "lon": -73.9870570 }, + { "lat": 40.7536222, "lon": -73.9870696 } + ], + "tags": { + "bicycle": "no", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 958919324, + "bounds": { + "minlat": 40.7528867, + "minlon": -73.9873437, + "maxlat": 40.7536222, + "maxlon": -73.9870696 + }, + "nodes": [ + 42428272, + 10268795747, + 10173490594, + 10268795655, + 10268795656, + 10268795657, + 10268795654, + 10173490602, + 10268795748, + 10268795689, + 42428268 + ], + "geometry": [ + { "lat": 40.7536222, "lon": -73.9870696 }, + { "lat": 40.7535545, "lon": -73.9870922 }, + { "lat": 40.7535310, "lon": -73.9870991 }, + { "lat": 40.7533629, "lon": -73.9871532 }, + { "lat": 40.7533402, "lon": -73.9871631 }, + { "lat": 40.7532251, "lon": -73.9872237 }, + { "lat": 40.7532009, "lon": -73.9872336 }, + { "lat": 40.7529769, "lon": -73.9873036 }, + { "lat": 40.7529608, "lon": -73.9873086 }, + { "lat": 40.7529296, "lon": -73.9873234 }, + { "lat": 40.7528867, "lon": -73.9873437 } + ], + "tags": { + "foot": "designated", + "highway": "living_street", + "lanes": "1", + "lit": "yes", + "maxspeed": "10 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 958998479, + "bounds": { + "minlat": 40.7732812, + "minlon": -73.9720549, + "maxlat": 40.7733695, + "maxlon": -73.9719365 + }, + "nodes": [ + 3053662540, + 8873697107, + 8873697108, + 8873697109, + 8873697110, + 8873697111, + 8873697112, + 8873697113, + 3053662540 + ], + "geometry": [ + { "lat": 40.7733576, "lon": -73.9719549 }, + { "lat": 40.7733286, "lon": -73.9719365 }, + { "lat": 40.7732937, "lon": -73.9719540 }, + { "lat": 40.7732812, "lon": -73.9719921 }, + { "lat": 40.7732932, "lon": -73.9720351 }, + { "lat": 40.7733226, "lon": -73.9720549 }, + { "lat": 40.7733576, "lon": -73.9720374 }, + { "lat": 40.7733695, "lon": -73.9719979 }, + { "lat": 40.7733576, "lon": -73.9719549 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes" + } +}, +{ + "type": "way", + "id": 959011550, + "bounds": { + "minlat": 40.7714209, + "minlon": -73.9698691, + "maxlat": 40.7722860, + "maxlon": -73.9690082 + }, + "nodes": [ + 561950429, + 42433892, + 9906929127, + 9906929128, + 2059303812, + 2059303814, + 9906929129, + 2059303815, + 9906929130, + 247221415, + 9906929131, + 2059303816, + 9906929132, + 9906929133, + 561950457 + ], + "geometry": [ + { "lat": 40.7714209, "lon": -73.9698691 }, + { "lat": 40.7714705, "lon": -73.9697575 }, + { "lat": 40.7715192, "lon": -73.9696667 }, + { "lat": 40.7715658, "lon": -73.9695924 }, + { "lat": 40.7716124, "lon": -73.9695237 }, + { "lat": 40.7716649, "lon": -73.9694595 }, + { "lat": 40.7717181, "lon": -73.9693979 }, + { "lat": 40.7717699, "lon": -73.9693480 }, + { "lat": 40.7718178, "lon": -73.9693020 }, + { "lat": 40.7718654, "lon": -73.9692617 }, + { "lat": 40.7719209, "lon": -73.9692207 }, + { "lat": 40.7719651, "lon": -73.9691900 }, + { "lat": 40.7720529, "lon": -73.9691398 }, + { "lat": 40.7721237, "lon": -73.9690979 }, + { "lat": 40.7722860, "lon": -73.9690082 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 959011551, + "bounds": { + "minlat": 40.7744673, + "minlon": -73.9688914, + "maxlat": 40.7745372, + "maxlon": -73.9688260 + }, + "nodes": [ + 8873848834, + 2216963731 + ], + "geometry": [ + { "lat": 40.7744673, "lon": -73.9688914 }, + { "lat": 40.7745372, "lon": -73.9688260 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "bridge": "yes", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "6" + } +}, +{ + "type": "way", + "id": 959024722, + "bounds": { + "minlat": 40.7090407, + "minlon": -73.9566853, + "maxlat": 40.7110715, + "maxlon": -73.9553341 + }, + "nodes": [ + 10601344480, + 479716581, + 479716582, + 479716583, + 479716584, + 598033054 + ], + "geometry": [ + { "lat": 40.7090407, "lon": -73.9566853 }, + { "lat": 40.7091123, "lon": -73.9566420 }, + { "lat": 40.7099191, "lon": -73.9561013 }, + { "lat": 40.7103290, "lon": -73.9558266 }, + { "lat": 40.7108104, "lon": -73.9555090 }, + { "lat": 40.7110715, "lon": -73.9553341 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "||none;Metropolitan Avenue;Williamsburg Bridge;Manhattan;East Williamsburg Industrial Park", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11;A11;A11;A63;A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 959024723, + "bounds": { + "minlat": 40.7110715, + "minlon": -73.9553341, + "maxlat": 40.7136287, + "maxlon": -73.9534422 + }, + "nodes": [ + 598033054, + 479716585, + 479716586, + 479716587, + 479716588, + 598031728 + ], + "geometry": [ + { "lat": 40.7110715, "lon": -73.9553341 }, + { "lat": 40.7125150, "lon": -73.9543675 }, + { "lat": 40.7128533, "lon": -73.9541272 }, + { "lat": 40.7131786, "lon": -73.9538697 }, + { "lat": 40.7134714, "lon": -73.9536036 }, + { "lat": 40.7136287, "lon": -73.9534422 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11; A11; A11; A63; A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 959102718, + "bounds": { + "minlat": 40.8479225, + "minlon": -73.9452429, + "maxlat": 40.8498785, + "maxlon": -73.9449360 + }, + "nodes": [ + 42458670, + 7907916420, + 7907883480, + 7907916469, + 42458679, + 7907916485, + 7907916395, + 42458688, + 7907916435, + 42458695, + 7907916477, + 7907916387, + 5871691029, + 7907916428, + 60917021 + ], + "geometry": [ + { "lat": 40.8498785, "lon": -73.9449360 }, + { "lat": 40.8497779, "lon": -73.9449859 }, + { "lat": 40.8496712, "lon": -73.9450329 }, + { "lat": 40.8495710, "lon": -73.9450715 }, + { "lat": 40.8494608, "lon": -73.9451091 }, + { "lat": 40.8493582, "lon": -73.9451390 }, + { "lat": 40.8492382, "lon": -73.9451689 }, + { "lat": 40.8491051, "lon": -73.9451930 }, + { "lat": 40.8489956, "lon": -73.9452102 }, + { "lat": 40.8488884, "lon": -73.9452215 }, + { "lat": 40.8487798, "lon": -73.9452296 }, + { "lat": 40.8486224, "lon": -73.9452381 }, + { "lat": 40.8484828, "lon": -73.9452428 }, + { "lat": 40.8483413, "lon": -73.9452429 }, + { "lat": 40.8479225, "lon": -73.9452408 } + ], + "tags": { + "destination:lanes": "Riverside Drive;George Washington Bridge;Cross Bronx Expressway|Riverside Drive;George Washington Bridge;Cross Bronx Expressway;Henry Hudson Parkway|Henry Hudson Parkway", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "turn:lanes": "slight_left|slight_left;through|", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 959121926, + "bounds": { + "minlat": 40.7413444, + "minlon": -73.9522734, + "maxlat": 40.7414399, + "maxlon": -73.9511462 + }, + "nodes": [ + 6166413732, + 9179073020, + 6166413733, + 9983412331, + 9179073021, + 6166413737, + 9179073022, + 6166413734, + 9983412333, + 12410999967 + ], + "geometry": [ + { "lat": 40.7413579, "lon": -73.9522734 }, + { "lat": 40.7413456, "lon": -73.9520641 }, + { "lat": 40.7413444, "lon": -73.9519943 }, + { "lat": 40.7413490, "lon": -73.9518869 }, + { "lat": 40.7413566, "lon": -73.9517893 }, + { "lat": 40.7413634, "lon": -73.9517166 }, + { "lat": 40.7413751, "lon": -73.9516344 }, + { "lat": 40.7413938, "lon": -73.9515274 }, + { "lat": 40.7414369, "lon": -73.9513336 }, + { "lat": 40.7414399, "lon": -73.9511462 } + ], + "tags": { + "highway": "motorway", + "hov": "contraflow_lane", + "lanes": "1", + "maxspeed": "40 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 959121927, + "bounds": { + "minlat": 40.7413438, + "minlon": -73.9533573, + "maxlat": 40.7413886, + "maxlon": -73.9527328 + }, + "nodes": [ + 11942111781, + 588178799 + ], + "geometry": [ + { "lat": 40.7413886, "lon": -73.9533573 }, + { "lat": 40.7413438, "lon": -73.9527328 } + ], + "tags": { + "destination:lanes": "|none;Borden Avenue;Pulaski Bridge;Brooklyn", + "highway": "motorway", + "lanes": "2", + "maxspeed": "40 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "|through;right" + } +}, +{ + "type": "way", + "id": 959157334, + "bounds": { + "minlat": 40.7361838, + "minlon": -73.9750543, + "maxlat": 40.7374172, + "maxlon": -73.9745040 + }, + "nodes": [ + 42426865, + 9141034869, + 42422508, + 9141034860, + 42437863, + 9141034859, + 42450924, + 9141034858, + 42450920, + 42450915, + 9141034857, + 42450912, + 42450910 + ], + "geometry": [ + { "lat": 40.7374172, "lon": -73.9745040 }, + { "lat": 40.7372211, "lon": -73.9746286 }, + { "lat": 40.7371327, "lon": -73.9746887 }, + { "lat": 40.7370268, "lon": -73.9747536 }, + { "lat": 40.7369500, "lon": -73.9747997 }, + { "lat": 40.7368449, "lon": -73.9748561 }, + { "lat": 40.7367426, "lon": -73.9749036 }, + { "lat": 40.7366414, "lon": -73.9749449 }, + { "lat": 40.7365503, "lon": -73.9749764 }, + { "lat": 40.7364426, "lon": -73.9750076 }, + { "lat": 40.7363306, "lon": -73.9750314 }, + { "lat": 40.7362261, "lon": -73.9750480 }, + { "lat": 40.7361838, "lon": -73.9750543 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "concrete", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 959157335, + "bounds": { + "minlat": 40.7376221, + "minlon": -73.9743428, + "maxlat": 40.7383390, + "maxlon": -73.9738156 + }, + "nodes": [ + 42423774, + 2985640818 + ], + "geometry": [ + { "lat": 40.7383390, "lon": -73.9738156 }, + { "lat": 40.7376221, "lon": -73.9743428 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "none|none|East Houston Street;Williamsburg Bridge|East 23rd Street;Baruch College", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "turn:lanes": "none|none|none|slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 959159711, + "bounds": { + "minlat": 40.7009651, + "minlon": -73.9945693, + "maxlat": 40.7016537, + "maxlon": -73.9922950 + }, + "nodes": [ + 598054695, + 11679066109, + 451074799, + 11679066110, + 451074804, + 1258945485, + 1258945532, + 465132515, + 1258945534, + 1258945601, + 451074815, + 1258945398, + 451074818, + 451074820 + ], + "geometry": [ + { "lat": 40.7009651, "lon": -73.9945693 }, + { "lat": 40.7010609, "lon": -73.9943646 }, + { "lat": 40.7011458, "lon": -73.9941730 }, + { "lat": 40.7012054, "lon": -73.9940217 }, + { "lat": 40.7012618, "lon": -73.9938708 }, + { "lat": 40.7013156, "lon": -73.9937187 }, + { "lat": 40.7013685, "lon": -73.9935612 }, + { "lat": 40.7014266, "lon": -73.9933842 }, + { "lat": 40.7014846, "lon": -73.9931842 }, + { "lat": 40.7015351, "lon": -73.9929876 }, + { "lat": 40.7015715, "lon": -73.9928149 }, + { "lat": 40.7016029, "lon": -73.9926499 }, + { "lat": 40.7016289, "lon": -73.9924930 }, + { "lat": 40.7016537, "lon": -73.9922950 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxheight": "12'9\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_base_2": "Gowanus", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 959667689, + "bounds": { + "minlat": 40.7137269, + "minlon": -73.9536634, + "maxlat": 40.7179274, + "maxlon": -73.9480003 + }, + "nodes": [ + 598268281, + 476025880, + 476025881, + 476025882, + 479716884, + 598031719 + ], + "geometry": [ + { "lat": 40.7179274, "lon": -73.9480003 }, + { "lat": 40.7167177, "lon": -73.9498783 }, + { "lat": 40.7157045, "lon": -73.9513016 }, + { "lat": 40.7150405, "lon": -73.9521550 }, + { "lat": 40.7143171, "lon": -73.9530114 }, + { "lat": 40.7137269, "lon": -73.9536634 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "Williamsburg Bridge;Manhattan|Williamsburg Bridge;Manhattan;Staten Island|Staten Island", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "turn:lanes": "slight_left|slight_left;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 959667690, + "bounds": { + "minlat": 40.7179274, + "minlon": -73.9480003, + "maxlat": 40.7189644, + "maxlon": -73.9463148 + }, + "nodes": [ + 476025877, + 12162652772, + 12162652770, + 12162652771, + 598268281 + ], + "geometry": [ + { "lat": 40.7189644, "lon": -73.9463148 }, + { "lat": 40.7187032, "lon": -73.9467492 }, + { "lat": 40.7184428, "lon": -73.9471743 }, + { "lat": 40.7181851, "lon": -73.9475942 }, + { "lat": 40.7179274, "lon": -73.9480003 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "none|none|none|Metropolitan Avenue", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "turn:lanes": "none|none|none|slight_right" + } +}, +{ + "type": "way", + "id": 959723772, + "bounds": { + "minlat": 40.8093528, + "minlon": -73.9350420, + "maxlat": 40.8096053, + "maxlon": -73.9349880 + }, + "nodes": [ + 6532254351, + 6532254353, + 9902223907, + 6516908811 + ], + "geometry": [ + { "lat": 40.8096053, "lon": -73.9350420 }, + { "lat": 40.8094657, "lon": -73.9350134 }, + { "lat": 40.8094140, "lon": -73.9350018 }, + { "lat": 40.8093528, "lon": -73.9349880 } + ], + "tags": { + "destination:lanes": "2nd Avenue;East 125th Street|none|none", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "turn:lanes": "slight_left|none|none" + } +}, +{ + "type": "way", + "id": 959767970, + "bounds": { + "minlat": 40.7455844, + "minlon": -73.9704600, + "maxlat": 40.7478125, + "maxlon": -73.9683571 + }, + "nodes": [ + 5779545445, + 5779549441, + 5286096332, + 42450694, + 42450697, + 589099551, + 42450699 + ], + "geometry": [ + { "lat": 40.7478125, "lon": -73.9683571 }, + { "lat": 40.7476011, "lon": -73.9685321 }, + { "lat": 40.7470006, "lon": -73.9690233 }, + { "lat": 40.7468320, "lon": -73.9691818 }, + { "lat": 40.7461648, "lon": -73.9698821 }, + { "lat": 40.7459383, "lon": -73.9701152 }, + { "lat": 40.7455844, "lon": -73.9704600 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 959783796, + "bounds": { + "minlat": 40.8698239, + "minlon": -73.9307590, + "maxlat": 40.8707521, + "maxlon": -73.9302702 + }, + "nodes": [ + 374463462, + 60916099, + 374479219 + ], + "geometry": [ + { "lat": 40.8707521, "lon": -73.9302702 }, + { "lat": 40.8702203, "lon": -73.9305545 }, + { "lat": 40.8698239, "lon": -73.9307590 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "maxweight": "6", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "concrete", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 959803941, + "bounds": { + "minlat": 40.7297259, + "minlon": -73.9903550, + "maxlat": 40.7299270, + "maxlon": -73.9898372 + }, + "nodes": [ + 2494246549, + 8880466807, + 8880466809, + 8880466806, + 2494246516, + 2494246549 + ], + "geometry": [ + { "lat": 40.7298354, "lon": -73.9903550 }, + { "lat": 40.7298220, "lon": -73.9903096 }, + { "lat": 40.7297259, "lon": -73.9899847 }, + { "lat": 40.7299029, "lon": -73.9898548 }, + { "lat": 40.7299270, "lon": -73.9898372 }, + { "lat": 40.7298354, "lon": -73.9903550 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 959989654, + "bounds": { + "minlat": 40.8731559, + "minlon": -74.0127286, + "maxlat": 40.8732034, + "maxlon": -74.0127110 + }, + "nodes": [ + 6592337702, + 4205863453 + ], + "geometry": [ + { "lat": 40.8731559, "lon": -74.0127286 }, + { "lat": 40.8732034, "lon": -74.0127110 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes:backward": "left|left|" + } +}, +{ + "type": "way", + "id": 959989655, + "bounds": { + "minlat": 40.8734795, + "minlon": -74.0145340, + "maxlat": 40.8740160, + "maxlon": -74.0129993 + }, + "nodes": [ + 6592337704, + 6634228362, + 6688222639, + 103162980, + 103162981, + 103162982, + 103162983, + 103162985, + 103162987 + ], + "geometry": [ + { "lat": 40.8734795, "lon": -74.0129993 }, + { "lat": 40.8735363, "lon": -74.0131245 }, + { "lat": 40.8735731, "lon": -74.0132058 }, + { "lat": 40.8735850, "lon": -74.0132320 }, + { "lat": 40.8736140, "lon": -74.0133570 }, + { "lat": 40.8736330, "lon": -74.0135320 }, + { "lat": 40.8736510, "lon": -74.0136070 }, + { "lat": 40.8737420, "lon": -74.0138420 }, + { "lat": 40.8740160, "lon": -74.0145340 } + ], + "tags": { + "highway": "residential", + "name": "Fenimore Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fenimore", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 959989656, + "bounds": { + "minlat": 40.8732666, + "minlon": -74.0126932, + "maxlat": 40.8733323, + "maxlon": -74.0126746 + }, + "nodes": [ + 6592337663, + 103162978 + ], + "geometry": [ + { "lat": 40.8732666, "lon": -74.0126932 }, + { "lat": 40.8733323, "lon": -74.0126746 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 959989657, + "bounds": { + "minlat": 40.8734009, + "minlon": -74.0126474, + "maxlat": 40.8796203, + "maxlon": -74.0102805 + }, + "nodes": [ + 6592337635, + 103214408, + 6592337583, + 6593345186, + 103214409, + 103214411, + 103150117, + 7663069767, + 7663069761, + 6782674511, + 103176594, + 103214412, + 103177137, + 103214413, + 6592348688, + 103210270, + 103214414, + 103214416, + 103159079, + 103214417 + ], + "geometry": [ + { "lat": 40.8734009, "lon": -74.0126474 }, + { "lat": 40.8734969, "lon": -74.0126093 }, + { "lat": 40.8735928, "lon": -74.0125785 }, + { "lat": 40.8738030, "lon": -74.0125110 }, + { "lat": 40.8738440, "lon": -74.0124978 }, + { "lat": 40.8740572, "lon": -74.0124340 }, + { "lat": 40.8748732, "lon": -74.0121840 }, + { "lat": 40.8749731, "lon": -74.0121547 }, + { "lat": 40.8751807, "lon": -74.0120938 }, + { "lat": 40.8752604, "lon": -74.0120704 }, + { "lat": 40.8762383, "lon": -74.0117834 }, + { "lat": 40.8771226, "lon": -74.0114654 }, + { "lat": 40.8772789, "lon": -74.0113972 }, + { "lat": 40.8773987, "lon": -74.0113418 }, + { "lat": 40.8776958, "lon": -74.0112098 }, + { "lat": 40.8779552, "lon": -74.0110877 }, + { "lat": 40.8782204, "lon": -74.0109629 }, + { "lat": 40.8790203, "lon": -74.0106439 }, + { "lat": 40.8793512, "lon": -74.0104813 }, + { "lat": 40.8796203, "lon": -74.0102805 } + ], + "tags": { + "Bergen_County_database_ref": "39", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "lanes": "2", + "name": "Teaneck Road", + "ref": "CR 39", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 959996591, + "bounds": { + "minlat": 40.8683951, + "minlon": -74.0040068, + "maxlat": 40.8720726, + "maxlon": -73.9995283 + }, + "nodes": [ + 13753819041, + 10940262024, + 298604834, + 298604836, + 10940262030, + 298604838, + 13164331394, + 13164331393, + 13164331395, + 13751654227, + 13751654226, + 13751654225, + 298605831 + ], + "geometry": [ + { "lat": 40.8720726, "lon": -73.9995283 }, + { "lat": 40.8718918, "lon": -73.9997899 }, + { "lat": 40.8717094, "lon": -74.0000456 }, + { "lat": 40.8715126, "lon": -74.0003123 }, + { "lat": 40.8713216, "lon": -74.0005606 }, + { "lat": 40.8711208, "lon": -74.0008175 }, + { "lat": 40.8709277, "lon": -74.0010472 }, + { "lat": 40.8704650, "lon": -74.0015901 }, + { "lat": 40.8700747, "lon": -74.0020410 }, + { "lat": 40.8690469, "lon": -74.0032255 }, + { "lat": 40.8689542, "lon": -74.0033337 }, + { "lat": 40.8688293, "lon": -74.0034794 }, + { "lat": 40.8683951, "lon": -74.0040068 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "Newark|Newark;Hackensack;Paterson|Hackensack;Paterson", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "through|through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 960032772, + "bounds": { + "minlat": 40.8658982, + "minlon": -74.0085255, + "maxlat": 40.8668015, + "maxlon": -74.0059858 + }, + "nodes": [ + 298562128, + 10938891812, + 298562129, + 298562130, + 10938777603, + 10938891816, + 298562131, + 10938777598, + 298562132, + 10938891807, + 298562133, + 298562134, + 298562950 + ], + "geometry": [ + { "lat": 40.8668015, "lon": -74.0059858 }, + { "lat": 40.8667355, "lon": -74.0061117 }, + { "lat": 40.8666773, "lon": -74.0062318 }, + { "lat": 40.8666035, "lon": -74.0063863 }, + { "lat": 40.8665296, "lon": -74.0065504 }, + { "lat": 40.8664618, "lon": -74.0067073 }, + { "lat": 40.8663967, "lon": -74.0068695 }, + { "lat": 40.8663327, "lon": -74.0070309 }, + { "lat": 40.8662693, "lon": -74.0072023 }, + { "lat": 40.8662121, "lon": -74.0073728 }, + { "lat": 40.8661582, "lon": -74.0075429 }, + { "lat": 40.8659894, "lon": -74.0080960 }, + { "lat": 40.8658982, "lon": -74.0085255 } + ], + "tags": { + "bicycle": "no", + "destination": "Newark", + "destination:ref": "I 95 South;NJTP South", + "destination:ref:to": "US 46", + "highway": "motorway", + "lanes": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "toll": "no" + } +}, +{ + "type": "way", + "id": 960038634, + "bounds": { + "minlat": 40.8588145, + "minlon": -73.9760404, + "maxlat": 40.8603315, + "maxlon": -73.9756916 + }, + "nodes": [ + 76464426, + 13762329228, + 299124070, + 7924909383, + 7924909375, + 76464425, + 13762329229, + 7924909379, + 299178448, + 7924909381, + 13762329230, + 13762329231, + 76464424, + 13762329232, + 7924909382 + ], + "geometry": [ + { "lat": 40.8603315, "lon": -73.9756916 }, + { "lat": 40.8599612, "lon": -73.9758134 }, + { "lat": 40.8595921, "lon": -73.9759277 }, + { "lat": 40.8594341, "lon": -73.9759714 }, + { "lat": 40.8593587, "lon": -73.9759903 }, + { "lat": 40.8593009, "lon": -73.9760030 }, + { "lat": 40.8592436, "lon": -73.9760147 }, + { "lat": 40.8591908, "lon": -73.9760231 }, + { "lat": 40.8591338, "lon": -73.9760304 }, + { "lat": 40.8590783, "lon": -73.9760358 }, + { "lat": 40.8590273, "lon": -73.9760387 }, + { "lat": 40.8589802, "lon": -73.9760401 }, + { "lat": 40.8589348, "lon": -73.9760404 }, + { "lat": 40.8588821, "lon": -73.9760398 }, + { "lat": 40.8588145, "lon": -73.9760374 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 960060917, + "bounds": { + "minlat": 40.8178802, + "minlon": -73.9618010, + "maxlat": 40.8226363, + "maxlon": -73.9576930 + }, + "nodes": [ + 254342293, + 7907957244, + 7907957268, + 7907988091, + 7907957239, + 7907957263, + 7907988086, + 7907957225, + 7907957250, + 254484073, + 7907957273, + 7907957221, + 7907957245, + 7907957269, + 595338029 + ], + "geometry": [ + { "lat": 40.8226363, "lon": -73.9576930 }, + { "lat": 40.8212995, "lon": -73.9587247 }, + { "lat": 40.8211132, "lon": -73.9588691 }, + { "lat": 40.8209190, "lon": -73.9590213 }, + { "lat": 40.8207303, "lon": -73.9591734 }, + { "lat": 40.8205380, "lon": -73.9593348 }, + { "lat": 40.8203583, "lon": -73.9594897 }, + { "lat": 40.8190926, "lon": -73.9606084 }, + { "lat": 40.8189025, "lon": -73.9607785 }, + { "lat": 40.8187197, "lon": -73.9609504 }, + { "lat": 40.8185440, "lon": -73.9611201 }, + { "lat": 40.8183663, "lon": -73.9612974 }, + { "lat": 40.8181967, "lon": -73.9614703 }, + { "lat": 40.8180204, "lon": -73.9616547 }, + { "lat": 40.8178802, "lon": -73.9618010 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 960060918, + "bounds": { + "minlat": 40.8226363, + "minlon": -73.9576930, + "maxlat": 40.8229028, + "maxlon": -73.9574874 + }, + "nodes": [ + 8882666913, + 254342293 + ], + "geometry": [ + { "lat": 40.8229028, "lon": -73.9574874 }, + { "lat": 40.8226363, "lon": -73.9576930 } + ], + "tags": { + "bridge": "yes", + "destination:lanes": "|||West 125th Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "turn:lanes": "|||slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 960096803, + "bounds": { + "minlat": 40.8647539, + "minlon": -74.0169659, + "maxlat": 40.8650808, + "maxlon": -74.0152677 + }, + "nodes": [ + 8883033062, + 11436234345, + 298289424, + 298289435 + ], + "geometry": [ + { "lat": 40.8650808, "lon": -74.0169659 }, + { "lat": 40.8649812, "lon": -74.0164312 }, + { "lat": 40.8648098, "lon": -74.0155521 }, + { "lat": 40.8647539, "lon": -74.0152677 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000080", + "bicycle": "no", + "destination:lanes": "George Washington Bridge;New York City|George Washington Bridge;New York City|George Washington Bridge;New York City;none|", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 80", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "||through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 960097006, + "bounds": { + "minlat": 40.7442787, + "minlon": -73.9713014, + "maxlat": 40.7455255, + "maxlon": -73.9703520 + }, + "nodes": [ + 370914027, + 3734911592, + 9142507294, + 9142507295, + 5286096333, + 5286096330, + 9142507296, + 589099584 + ], + "geometry": [ + { "lat": 40.7442787, "lon": -73.9713014 }, + { "lat": 40.7445449, "lon": -73.9711207 }, + { "lat": 40.7447426, "lon": -73.9709827 }, + { "lat": 40.7449363, "lon": -73.9708377 }, + { "lat": 40.7451131, "lon": -73.9707034 }, + { "lat": 40.7453029, "lon": -73.9705453 }, + { "lat": 40.7454772, "lon": -73.9703977 }, + { "lat": 40.7455255, "lon": -73.9703520 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "South Street Viaduct", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 960686877, + "bounds": { + "minlat": 40.8209981, + "minlon": -74.0013347, + "maxlat": 40.8213204, + "maxlon": -74.0005558 + }, + "nodes": [ + 103207147, + 10308035020, + 8887144594, + 8887144590, + 8887144591, + 8887144592, + 8887144593, + 8887144594 + ], + "geometry": [ + { "lat": 40.8209981, "lon": -74.0005558 }, + { "lat": 40.8210783, "lon": -74.0007167 }, + { "lat": 40.8211649, "lon": -74.0008905 }, + { "lat": 40.8213140, "lon": -74.0011897 }, + { "lat": 40.8213204, "lon": -74.0012402 }, + { "lat": 40.8211932, "lon": -74.0013347 }, + { "lat": 40.8210358, "lon": -74.0010091 }, + { "lat": 40.8211649, "lon": -74.0008905 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 961527060, + "bounds": { + "minlat": 40.8653668, + "minlon": -74.0183376, + "maxlat": 40.8654769, + "maxlon": -74.0175816 + }, + "nodes": [ + 8894330190, + 298286988 + ], + "geometry": [ + { "lat": 40.8654769, "lon": -74.0183376 }, + { "lat": 40.8653668, "lon": -74.0175816 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000080", + "bicycle": "no", + "destination:lanes": "George Washington Bridge;New York City|George Washington Bridge;New York City|", + "destination:ref:lanes": "I 95 North|I 95 North|I 95 South;NJTP South", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 80", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 961541579, + "bounds": { + "minlat": 40.8596693, + "minlon": -74.0113423, + "maxlat": 40.8602126, + "maxlon": -74.0112603 + }, + "nodes": [ + 8894496326, + 13762277525, + 13762277526, + 10938641105, + 13751654231 + ], + "geometry": [ + { "lat": 40.8596693, "lon": -74.0113423 }, + { "lat": 40.8598062, "lon": -74.0113169 }, + { "lat": 40.8599401, "lon": -74.0112949 }, + { "lat": 40.8600793, "lon": -74.0112753 }, + { "lat": 40.8602126, "lon": -74.0112603 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination": "George Washington Bridge;Fort Lee", + "destination:lanes": "George Washington Bridge;Fort Lee|George Washington Bridge;Fort Lee|Leonia;Teaneck", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 961590636, + "bounds": { + "minlat": 40.7349528, + "minlon": -73.9326382, + "maxlat": 40.7371550, + "maxlon": -73.9233484 + }, + "nodes": [ + 597294501, + 7814275655, + 9179114985, + 9179114984, + 487117061, + 487117077, + 9194902597, + 9194902598, + 487117089, + 9194902599, + 487117096, + 9194902600, + 487117109, + 9194902601, + 487117131, + 9916320665, + 9194902602, + 9194902603, + 487117148 + ], + "geometry": [ + { "lat": 40.7371550, "lon": -73.9326382 }, + { "lat": 40.7369629, "lon": -73.9313951 }, + { "lat": 40.7369193, "lon": -73.9311044 }, + { "lat": 40.7368694, "lon": -73.9308216 }, + { "lat": 40.7368163, "lon": -73.9305388 }, + { "lat": 40.7359993, "lon": -73.9263383 }, + { "lat": 40.7359452, "lon": -73.9260741 }, + { "lat": 40.7358820, "lon": -73.9257945 }, + { "lat": 40.7358140, "lon": -73.9255219 }, + { "lat": 40.7357375, "lon": -73.9252552 }, + { "lat": 40.7356538, "lon": -73.9249902 }, + { "lat": 40.7355637, "lon": -73.9247247 }, + { "lat": 40.7354656, "lon": -73.9244656 }, + { "lat": 40.7353668, "lon": -73.9242188 }, + { "lat": 40.7352616, "lon": -73.9239754 }, + { "lat": 40.7352049, "lon": -73.9238548 }, + { "lat": 40.7351428, "lon": -73.9237226 }, + { "lat": 40.7350488, "lon": -73.9235328 }, + { "lat": 40.7349528, "lon": -73.9233484 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov": "contraflow_lane", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "name_1": "Queens Midtown Expressway", + "note:lanes": "left lane is hov in the other direction during morning rush hour", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 961606321, + "bounds": { + "minlat": 40.7972719, + "minlon": -74.0151050, + "maxlat": 40.7981720, + "maxlon": -74.0132070 + }, + "nodes": [ + 103861908, + 7653963997, + 7653963990, + 103867991, + 7474498763, + 7474498767, + 440243571 + ], + "geometry": [ + { "lat": 40.7972719, "lon": -74.0132070 }, + { "lat": 40.7973092, "lon": -74.0132819 }, + { "lat": 40.7976042, "lon": -74.0139009 }, + { "lat": 40.7976374, "lon": -74.0139705 }, + { "lat": 40.7976719, "lon": -74.0140437 }, + { "lat": 40.7981011, "lon": -74.0149546 }, + { "lat": 40.7981720, "lon": -74.0151050 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09031010", + "highway": "tertiary", + "name": "70th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "70th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 961722198, + "bounds": { + "minlat": 40.7244511, + "minlon": -73.9370753, + "maxlat": 40.7247438, + "maxlon": -73.9367913 + }, + "nodes": [ + 8896035646, + 8896035645, + 8896035644, + 8896035643, + 8896035642, + 8896035641, + 8896035640, + 8896035639, + 8896035638, + 8896035637, + 8896035636, + 8896035624, + 8896035627, + 11875618589, + 8896035626, + 8896035622, + 11875618592, + 11875618590, + 8896035646 + ], + "geometry": [ + { "lat": 40.7245194, "lon": -73.9370753 }, + { "lat": 40.7244511, "lon": -73.9370193 }, + { "lat": 40.7244623, "lon": -73.9369670 }, + { "lat": 40.7245060, "lon": -73.9369885 }, + { "lat": 40.7245182, "lon": -73.9369348 }, + { "lat": 40.7245660, "lon": -73.9369590 }, + { "lat": 40.7245792, "lon": -73.9369074 }, + { "lat": 40.7245375, "lon": -73.9368866 }, + { "lat": 40.7245487, "lon": -73.9368329 }, + { "lat": 40.7246183, "lon": -73.9368711 }, + { "lat": 40.7246351, "lon": -73.9367913 }, + { "lat": 40.7247014, "lon": -73.9368218 }, + { "lat": 40.7247389, "lon": -73.9368374 }, + { "lat": 40.7247435, "lon": -73.9368478 }, + { "lat": 40.7247438, "lon": -73.9368599 }, + { "lat": 40.7247249, "lon": -73.9368803 }, + { "lat": 40.7246366, "lon": -73.9369612 }, + { "lat": 40.7246158, "lon": -73.9369809 }, + { "lat": 40.7245194, "lon": -73.9370753 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 961825346, + "bounds": { + "minlat": 40.7937570, + "minlon": -73.9322765, + "maxlat": 40.7949399, + "maxlon": -73.9302797 + }, + "nodes": [ + 42433431, + 9178958163, + 9178958162, + 3786724039, + 9178958164, + 3786724038, + 42424133 + ], + "geometry": [ + { "lat": 40.7949399, "lon": -73.9302797 }, + { "lat": 40.7948583, "lon": -73.9303694 }, + { "lat": 40.7947814, "lon": -73.9304571 }, + { "lat": 40.7947046, "lon": -73.9305616 }, + { "lat": 40.7946332, "lon": -73.9306701 }, + { "lat": 40.7945722, "lon": -73.9307757 }, + { "lat": 40.7937570, "lon": -73.9322765 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 961825347, + "bounds": { + "minlat": 40.7949399, + "minlon": -73.9302797, + "maxlat": 40.7957756, + "maxlon": -73.9296774 + }, + "nodes": [ + 3786724042, + 3786724041, + 371218660, + 371218659, + 9178958153, + 371218658, + 42433431 + ], + "geometry": [ + { "lat": 40.7957756, "lon": -73.9296774 }, + { "lat": 40.7955866, "lon": -73.9297870 }, + { "lat": 40.7954055, "lon": -73.9299104 }, + { "lat": 40.7952084, "lon": -73.9300561 }, + { "lat": 40.7951138, "lon": -73.9301287 }, + { "lat": 40.7950253, "lon": -73.9301987 }, + { "lat": 40.7949399, "lon": -73.9302797 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "none|none|East 106th Street|East 116th Street", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "none|none|none|slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 961849247, + "bounds": { + "minlat": 40.8795228, + "minlon": -73.9490254, + "maxlat": 40.8825507, + "maxlon": -73.9472421 + }, + "nodes": [ + 114662148, + 12393108951, + 65634434, + 65634433, + 114662150 + ], + "geometry": [ + { "lat": 40.8825507, "lon": -73.9472421 }, + { "lat": 40.8820675, "lon": -73.9475483 }, + { "lat": 40.8810984, "lon": -73.9481198 }, + { "lat": 40.8802677, "lon": -73.9486004 }, + { "lat": 40.8795228, "lon": -73.9490254 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway" + } +}, +{ + "type": "way", + "id": 961888119, + "bounds": { + "minlat": 40.8519357, + "minlon": -73.9677919, + "maxlat": 40.8523972, + "maxlon": -73.9675061 + }, + "nodes": [ + 298810341, + 8431542837 + ], + "geometry": [ + { "lat": 40.8523972, "lon": -73.9675061 }, + { "lat": 40.8519357, "lon": -73.9677919 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Park Avenue", + "oneway": "yes", + "turn:lanes": "left|none", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 961888120, + "bounds": { + "minlat": 40.8523306, + "minlon": -73.9675061, + "maxlat": 40.8523972, + "maxlon": -73.9673360 + }, + "nodes": [ + 298810341, + 5179132362 + ], + "geometry": [ + { "lat": 40.8523972, "lon": -73.9675061 }, + { "lat": 40.8523306, "lon": -73.9673360 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxheight:signed": "no", + "name": "Central Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 961888121, + "bounds": { + "minlat": 40.8523306, + "minlon": -73.9673360, + "maxlat": 40.8527247, + "maxlon": -73.9671414 + }, + "nodes": [ + 5179132362, + 298809214, + 298809215, + 298809217 + ], + "geometry": [ + { "lat": 40.8523306, "lon": -73.9673360 }, + { "lat": 40.8525015, "lon": -73.9672401 }, + { "lat": 40.8526444, "lon": -73.9671714 }, + { "lat": 40.8527247, "lon": -73.9671414 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "name": "Park Avenue", + "oneway": "yes", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 961934129, + "bounds": { + "minlat": 40.8681926, + "minlon": -74.0040184, + "maxlat": 40.8702746, + "maxlon": -74.0015571 + }, + "nodes": [ + 8898146152, + 13759580177, + 13759580176, + 13759580175, + 13759580174, + 13759580173, + 13759580172, + 13759580171, + 13759580170, + 13164331385, + 13751654223, + 13751654220, + 13751654221, + 13751654222, + 298605029 + ], + "geometry": [ + { "lat": 40.8702746, "lon": -74.0015571 }, + { "lat": 40.8700709, "lon": -74.0017932 }, + { "lat": 40.8699682, "lon": -74.0019135 }, + { "lat": 40.8698672, "lon": -74.0020319 }, + { "lat": 40.8697621, "lon": -74.0021551 }, + { "lat": 40.8696624, "lon": -74.0022720 }, + { "lat": 40.8695567, "lon": -74.0023957 }, + { "lat": 40.8694542, "lon": -74.0025160 }, + { "lat": 40.8689393, "lon": -74.0031204 }, + { "lat": 40.8688388, "lon": -74.0032371 }, + { "lat": 40.8687327, "lon": -74.0033615 }, + { "lat": 40.8686279, "lon": -74.0034862 }, + { "lat": 40.8685260, "lon": -74.0036086 }, + { "lat": 40.8684254, "lon": -74.0037313 }, + { "lat": 40.8681926, "lon": -74.0040184 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "Paterson|Paterson;Newark|Newark", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "slight_left|slight_left;through|through" + } +}, +{ + "type": "way", + "id": 961934931, + "bounds": { + "minlat": 40.7664274, + "minlon": -73.9509726, + "maxlat": 40.7668010, + "maxlon": -73.9507038 + }, + "nodes": [ + 42438809, + 9142744768, + 3785451339, + 3785451338 + ], + "geometry": [ + { "lat": 40.7668010, "lon": -73.9507038 }, + { "lat": 40.7667161, "lon": -73.9507613 }, + { "lat": 40.7665827, "lon": -73.9508520 }, + { "lat": 40.7664274, "lon": -73.9509726 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 961976870, + "bounds": { + "minlat": 40.8615504, + "minlon": -73.9348046, + "maxlat": 40.8620097, + "maxlon": -73.9344979 + }, + "nodes": [ + 8898513809, + 60916363, + 60916364, + 595729853 + ], + "geometry": [ + { "lat": 40.8615504, "lon": -73.9348046 }, + { "lat": 40.8617047, "lon": -73.9347061 }, + { "lat": 40.8618724, "lon": -73.9345964 }, + { "lat": 40.8620097, "lon": -73.9344979 } + ], + "tags": { + "destination:lanes": "none|none|none|Fort Tryon Park;The Cloisters", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "turn:lanes": "none|none|none|slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 961976871, + "bounds": { + "minlat": 40.8620097, + "minlon": -73.9344979, + "maxlat": 40.8656067, + "maxlon": -73.9327037 + }, + "nodes": [ + 595729853, + 10846058075, + 60916365, + 374500740, + 10846058077, + 5927469088, + 5927469087, + 374482644, + 374481777, + 60916332, + 60916333, + 8768449700 + ], + "geometry": [ + { "lat": 40.8620097, "lon": -73.9344979 }, + { "lat": 40.8623527, "lon": -73.9343084 }, + { "lat": 40.8632080, "lon": -73.9337733 }, + { "lat": 40.8633625, "lon": -73.9336811 }, + { "lat": 40.8634656, "lon": -73.9336294 }, + { "lat": 40.8635702, "lon": -73.9335836 }, + { "lat": 40.8637808, "lon": -73.9335038 }, + { "lat": 40.8644251, "lon": -73.9332656 }, + { "lat": 40.8648617, "lon": -73.9331090 }, + { "lat": 40.8650554, "lon": -73.9330242 }, + { "lat": 40.8652965, "lon": -73.9328881 }, + { "lat": 40.8656067, "lon": -73.9327037 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 961981711, + "bounds": { + "minlat": 40.8465095, + "minlon": -73.9905278, + "maxlat": 40.8485679, + "maxlon": -73.9884627 + }, + "nodes": [ + 299172024, + 10942990439, + 299172191 + ], + "geometry": [ + { "lat": 40.8485679, "lon": -73.9884627 }, + { "lat": 40.8475433, "lon": -73.9894932 }, + { "lat": 40.8465095, "lon": -73.9905278 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "embankment": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1" + } +}, +{ + "type": "way", + "id": 962155881, + "bounds": { + "minlat": 40.8619625, + "minlon": -73.9577069, + "maxlat": 40.8620824, + "maxlon": -73.9575465 + }, + "nodes": [ + 8900052656, + 60811194 + ], + "geometry": [ + { "lat": 40.8620824, "lon": -73.9575465 }, + { "lat": 40.8619625, "lon": -73.9577069 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "destination:lanes": "George Washington Bridge|George Washington Bridge|George Washington Bridge|Hudson Terrace", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "no", + "turn:lanes": "none|none|none|slight_right" + } +}, +{ + "type": "way", + "id": 962156559, + "bounds": { + "minlat": 40.6997080, + "minlon": -73.9574398, + "maxlat": 40.7008342, + "maxlon": -73.9571670 + }, + "nodes": [ + 42492059, + 6235395092, + 42520238, + 6235395090, + 8617830324, + 42477575 + ], + "geometry": [ + { "lat": 40.6997080, "lon": -73.9571670 }, + { "lat": 40.6999292, "lon": -73.9572167 }, + { "lat": 40.6999991, "lon": -73.9572295 }, + { "lat": 40.7000954, "lon": -73.9572351 }, + { "lat": 40.7007743, "lon": -73.9573893 }, + { "lat": 40.7008342, "lon": -73.9574398 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "yes", + "tiger:zip_left": "11226", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 962163590, + "bounds": { + "minlat": 40.8611700, + "minlon": -73.9679493, + "maxlat": 40.8612974, + "maxlon": -73.9678596 + }, + "nodes": [ + 7921614880, + 103132964 + ], + "geometry": [ + { "lat": 40.8612974, "lon": -73.9678596 }, + { "lat": 40.8611700, "lon": -73.9679493 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Linwood Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 962168420, + "bounds": { + "minlat": 40.8301433, + "minlon": -73.9725370, + "maxlat": 40.8339632, + "maxlon": -73.9719891 + }, + "nodes": [ + 5362451435, + 7672312245, + 103137146, + 5362451417, + 5689881731, + 5315234553, + 103137148, + 103137150, + 103137151, + 103137152, + 3656112558, + 103137153, + 103137154, + 103137155, + 103137156, + 2175700069, + 103137157, + 2175700074, + 2175700066, + 7259829439, + 103137158, + 7259829436 + ], + "geometry": [ + { "lat": 40.8301433, "lon": -73.9720065 }, + { "lat": 40.8305522, "lon": -73.9721840 }, + { "lat": 40.8306062, "lon": -73.9722075 }, + { "lat": 40.8307076, "lon": -73.9722320 }, + { "lat": 40.8307498, "lon": -73.9722422 }, + { "lat": 40.8307813, "lon": -73.9722498 }, + { "lat": 40.8309016, "lon": -73.9722788 }, + { "lat": 40.8317266, "lon": -73.9724665 }, + { "lat": 40.8319980, "lon": -73.9725190 }, + { "lat": 40.8321960, "lon": -73.9725370 }, + { "lat": 40.8322451, "lon": -73.9725347 }, + { "lat": 40.8324452, "lon": -73.9725097 }, + { "lat": 40.8325986, "lon": -73.9724872 }, + { "lat": 40.8328002, "lon": -73.9724534 }, + { "lat": 40.8329850, "lon": -73.9724270 }, + { "lat": 40.8330318, "lon": -73.9724091 }, + { "lat": 40.8331760, "lon": -73.9723540 }, + { "lat": 40.8333811, "lon": -73.9722606 }, + { "lat": 40.8334344, "lon": -73.9722364 }, + { "lat": 40.8337205, "lon": -73.9721062 }, + { "lat": 40.8339348, "lon": -73.9720086 }, + { "lat": 40.8339632, "lon": -73.9719891 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 962177693, + "bounds": { + "minlat": 40.8509460, + "minlon": -73.9644585, + "maxlat": 40.8511177, + "maxlon": -73.9644339 + }, + "nodes": [ + 5449436928, + 4207132435 + ], + "geometry": [ + { "lat": 40.8509460, "lon": -73.9644585 }, + { "lat": 40.8511177, "lon": -73.9644339 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "oneway": "no", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 962179198, + "bounds": { + "minlat": 40.8664342, + "minlon": -73.9845759, + "maxlat": 40.8673070, + "maxlon": -73.9839550 + }, + "nodes": [ + 103224123, + 8219358674, + 8219358675, + 8073299996, + 103224125 + ], + "geometry": [ + { "lat": 40.8664342, "lon": -73.9845759 }, + { "lat": 40.8667583, "lon": -73.9843526 }, + { "lat": 40.8668167, "lon": -73.9843135 }, + { "lat": 40.8672331, "lon": -73.9840075 }, + { "lat": 40.8673070, "lon": -73.9839550 } + ], + "tags": { + "highway": "tertiary", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 962179434, + "bounds": { + "minlat": 40.8625280, + "minlon": -73.9569715, + "maxlat": 40.8636854, + "maxlon": -73.9558816 + }, + "nodes": [ + 60810941, + 7924729983, + 60810942, + 7924762188, + 7924729980, + 7924762185, + 60810943, + 7924729977, + 13788369136, + 13788369135, + 60810944 + ], + "geometry": [ + { "lat": 40.8636854, "lon": -73.9558816 }, + { "lat": 40.8634988, "lon": -73.9560229 }, + { "lat": 40.8634048, "lon": -73.9560988 }, + { "lat": 40.8633139, "lon": -73.9561743 }, + { "lat": 40.8632228, "lon": -73.9562552 }, + { "lat": 40.8631332, "lon": -73.9563378 }, + { "lat": 40.8630377, "lon": -73.9564356 }, + { "lat": 40.8628778, "lon": -73.9565937 }, + { "lat": 40.8627557, "lon": -73.9567210 }, + { "lat": 40.8626428, "lon": -73.9568427 }, + { "lat": 40.8625280, "lon": -73.9569715 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "destination:lanes": "Fletcher Avenue;Fort Lee|Fletcher Avenue;Fort Lee;George Washington Bridge;New York|George Washington Bridge;New York;Hudson Terrace", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway", + "turn:lanes": "none|through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 962208617, + "bounds": { + "minlat": 40.8800962, + "minlon": -73.9485338, + "maxlat": 40.9079655, + "maxlon": -73.9337517 + }, + "nodes": [ + 103098504, + 65614881, + 65614882, + 65614883, + 65614884, + 65614885, + 65614887, + 65614888, + 65614889, + 65614890, + 65614891, + 65614893, + 65614894, + 65614895, + 65614896, + 65614898, + 65614900, + 65614901, + 7916466747, + 7916466755, + 65614903, + 7916532610, + 7916532602, + 65614904, + 114662135, + 7916532594, + 65614905, + 7916532587, + 65614906, + 65614907, + 65614908, + 65614910, + 114662136, + 65614911, + 65614913, + 65614915, + 65614917, + 65614919, + 65614920, + 65614922, + 65614923, + 65614924, + 65614925, + 65614927, + 65614928, + 65614929, + 65614930, + 65614931, + 65614932, + 65614933, + 65614935, + 65614937, + 65614938, + 65614939, + 65614941, + 65614942 + ], + "geometry": [ + { "lat": 40.8800962, "lon": -73.9485338 }, + { "lat": 40.8811568, "lon": -73.9479310 }, + { "lat": 40.8818511, "lon": -73.9475104 }, + { "lat": 40.8826584, "lon": -73.9469643 }, + { "lat": 40.8830127, "lon": -73.9467122 }, + { "lat": 40.8835513, "lon": -73.9462744 }, + { "lat": 40.8841038, "lon": -73.9457995 }, + { "lat": 40.8845429, "lon": -73.9454448 }, + { "lat": 40.8849132, "lon": -73.9452348 }, + { "lat": 40.8853419, "lon": -73.9450191 }, + { "lat": 40.8857741, "lon": -73.9448256 }, + { "lat": 40.8863092, "lon": -73.9446608 }, + { "lat": 40.8870035, "lon": -73.9444720 }, + { "lat": 40.8876783, "lon": -73.9442917 }, + { "lat": 40.8882233, "lon": -73.9441458 }, + { "lat": 40.8887619, "lon": -73.9439742 }, + { "lat": 40.8891772, "lon": -73.9438111 }, + { "lat": 40.8897414, "lon": -73.9435394 }, + { "lat": 40.8899484, "lon": -73.9434335 }, + { "lat": 40.8901533, "lon": -73.9433230 }, + { "lat": 40.8903583, "lon": -73.9432065 }, + { "lat": 40.8905586, "lon": -73.9430867 }, + { "lat": 40.8907617, "lon": -73.9429573 }, + { "lat": 40.8909571, "lon": -73.9428267 }, + { "lat": 40.8911844, "lon": -73.9426752 }, + { "lat": 40.8913502, "lon": -73.9425530 }, + { "lat": 40.8915448, "lon": -73.9424163 }, + { "lat": 40.8917409, "lon": -73.9422800 }, + { "lat": 40.8922332, "lon": -73.9419400 }, + { "lat": 40.8927588, "lon": -73.9416052 }, + { "lat": 40.8933946, "lon": -73.9412104 }, + { "lat": 40.8941213, "lon": -73.9408328 }, + { "lat": 40.8942639, "lon": -73.9407556 }, + { "lat": 40.8951529, "lon": -73.9403006 }, + { "lat": 40.8956525, "lon": -73.9400345 }, + { "lat": 40.8961650, "lon": -73.9397427 }, + { "lat": 40.8967035, "lon": -73.9393994 }, + { "lat": 40.8971123, "lon": -73.9391162 }, + { "lat": 40.8978843, "lon": -73.9385926 }, + { "lat": 40.8984552, "lon": -73.9382149 }, + { "lat": 40.8990716, "lon": -73.9378544 }, + { "lat": 40.8996165, "lon": -73.9375712 }, + { "lat": 40.9005507, "lon": -73.9371249 }, + { "lat": 40.9012968, "lon": -73.9368331 }, + { "lat": 40.9021466, "lon": -73.9365069 }, + { "lat": 40.9026007, "lon": -73.9363352 }, + { "lat": 40.9030808, "lon": -73.9361207 }, + { "lat": 40.9036192, "lon": -73.9358632 }, + { "lat": 40.9041447, "lon": -73.9355713 }, + { "lat": 40.9048842, "lon": -73.9351164 }, + { "lat": 40.9054810, "lon": -73.9347560 }, + { "lat": 40.9059546, "lon": -73.9344985 }, + { "lat": 40.9064411, "lon": -73.9342667 }, + { "lat": 40.9069925, "lon": -73.9340436 }, + { "lat": 40.9074725, "lon": -73.9338891 }, + { "lat": 40.9079655, "lon": -73.9337517 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway" + } +}, +{ + "type": "way", + "id": 962241961, + "bounds": { + "minlat": 40.8612157, + "minlon": -73.9883212, + "maxlat": 40.8613246, + "maxlon": -73.9882441 + }, + "nodes": [ + 6126762859, + 6103601756, + 6126762862 + ], + "geometry": [ + { "lat": 40.8612157, "lon": -73.9883212 }, + { "lat": 40.8612681, "lon": -73.9882841 }, + { "lat": 40.8613246, "lon": -73.9882441 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "parking:lane": "diagonal", + "parking:lane:side": "right", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 962241962, + "bounds": { + "minlat": 40.8613246, + "minlon": -73.9882441, + "maxlat": 40.8614808, + "maxlon": -73.9881337 + }, + "nodes": [ + 6126762862, + 8064363277 + ], + "geometry": [ + { "lat": 40.8613246, "lon": -73.9882441 }, + { "lat": 40.8614808, "lon": -73.9881337 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "parking:lane": "diagonal", + "parking:lane:side": "right", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 962256026, + "bounds": { + "minlat": 40.8582800, + "minlon": -73.9827510, + "maxlat": 40.8587340, + "maxlon": -73.9819650 + }, + "nodes": [ + 103254492, + 103245162 + ], + "geometry": [ + { "lat": 40.8582800, "lon": -73.9819650 }, + { "lat": 40.8587340, "lon": -73.9827510 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Chestnut Street", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Chestnut", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 962282040, + "bounds": { + "minlat": 40.8559602, + "minlon": -73.9722515, + "maxlat": 40.8560677, + "maxlon": -73.9720894 + }, + "nodes": [ + 8901247880, + 13754102631, + 13772860462, + 76464410 + ], + "geometry": [ + { "lat": 40.8560677, "lon": -73.9722515 }, + { "lat": 40.8560314, "lon": -73.9721971 }, + { "lat": 40.8559891, "lon": -73.9721331 }, + { "lat": 40.8559602, "lon": -73.9720894 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination:lanes": "||||none;Lemoine Avenue;Fort Lee", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "5", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "slight_left;through||||through;slight_right", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 962588959, + "bounds": { + "minlat": 40.7919451, + "minlon": -73.9247490, + "maxlat": 40.7922751, + "maxlon": -73.9241068 + }, + "nodes": [ + 8904217215, + 9156860575, + 3040261548 + ], + "geometry": [ + { "lat": 40.7922751, "lon": -73.9247490 }, + { "lat": 40.7919786, "lon": -73.9241719 }, + { "lat": 40.7919451, "lon": -73.9241068 } + ], + "tags": { + "foot": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 962602326, + "bounds": { + "minlat": 40.7168982, + "minlon": -73.9861940, + "maxlat": 40.7175333, + "maxlon": -73.9858645 + }, + "nodes": [ + 42432094, + 13247154118, + 12195869767, + 5296792751, + 7476387556 + ], + "geometry": [ + { "lat": 40.7168982, "lon": -73.9861940 }, + { "lat": 40.7169591, "lon": -73.9861623 }, + { "lat": 40.7174304, "lon": -73.9859172 }, + { "lat": 40.7174703, "lon": -73.9858965 }, + { "lat": 40.7175333, "lon": -73.9858645 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Clinton Street", + "name:etymology:wikidata": "Q201646", + "name:ko": "클린턴 스트리트", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "slight_right;right" + } +}, +{ + "type": "way", + "id": 962609138, + "bounds": { + "minlat": 40.8452873, + "minlon": -73.9225021, + "maxlat": 40.8458562, + "maxlon": -73.9220327 + }, + "nodes": [ + 60921028, + 2907939257, + 60921027, + 12045150806, + 8904392447, + 12045150807, + 2907939264, + 12045150805, + 12045150804, + 12045150803, + 12070869610, + 60921026 + ], + "geometry": [ + { "lat": 40.8458562, "lon": -73.9220327 }, + { "lat": 40.8457756, "lon": -73.9221168 }, + { "lat": 40.8457049, "lon": -73.9221863 }, + { "lat": 40.8456306, "lon": -73.9222551 }, + { "lat": 40.8455732, "lon": -73.9223041 }, + { "lat": 40.8455262, "lon": -73.9223435 }, + { "lat": 40.8454780, "lon": -73.9223817 }, + { "lat": 40.8454454, "lon": -73.9224067 }, + { "lat": 40.8454097, "lon": -73.9224325 }, + { "lat": 40.8453721, "lon": -73.9224571 }, + { "lat": 40.8453327, "lon": -73.9224792 }, + { "lat": 40.8452873, "lon": -73.9225021 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 962612851, + "bounds": { + "minlat": 40.7377954, + "minlon": -74.0045029, + "maxlat": 40.7381289, + "maxlon": -74.0041378 + }, + "nodes": [ + 5331842131, + 8307463707, + 42435581 + ], + "geometry": [ + { "lat": 40.7377954, "lon": -74.0045029 }, + { "lat": 40.7380847, "lon": -74.0041862 }, + { "lat": 40.7381289, "lon": -74.0041378 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 962612852, + "bounds": { + "minlat": 40.7382262, + "minlon": -74.0040312, + "maxlat": 40.7384641, + "maxlon": -74.0037634 + }, + "nodes": [ + 6518638079, + 42435583, + 4492821528 + ], + "geometry": [ + { "lat": 40.7382262, "lon": -74.0040312 }, + { "lat": 40.7384141, "lon": -74.0038140 }, + { "lat": 40.7384641, "lon": -74.0037634 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 962623445, + "bounds": { + "minlat": 40.8109249, + "minlon": -73.9470064, + "maxlat": 40.8112793, + "maxlon": -73.9467446 + }, + "nodes": [ + 8904493700, + 10170874374, + 42439868 + ], + "geometry": [ + { "lat": 40.8112793, "lon": -73.9467446 }, + { "lat": 40.8109890, "lon": -73.9469591 }, + { "lat": 40.8109249, "lon": -73.9470064 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 962626218, + "bounds": { + "minlat": 40.7642754, + "minlon": -73.9730294, + "maxlat": 40.7646148, + "maxlon": -73.9727773 + }, + "nodes": [ + 8904527314, + 3976008178, + 5706568771 + ], + "geometry": [ + { "lat": 40.7646148, "lon": -73.9727773 }, + { "lat": 40.7643758, "lon": -73.9729545 }, + { "lat": 40.7642754, "lon": -73.9730294 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "||through|through|through", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 962669695, + "bounds": { + "minlat": 40.8590785, + "minlon": -73.9314426, + "maxlat": 40.8591414, + "maxlon": -73.9314086 + }, + "nodes": [ + 8904913030, + 7740583558 + ], + "geometry": [ + { "lat": 40.8590785, "lon": -73.9314426 }, + { "lat": 40.8591414, "lon": -73.9314086 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 962669696, + "bounds": { + "minlat": 40.8593291, + "minlon": -73.9313239, + "maxlat": 40.8620582, + "maxlon": -73.9300192 + }, + "nodes": [ + 42421783, + 8904913024, + 11594920849, + 1764387326, + 9561253111, + 1764387318, + 9561386433, + 42429174, + 9561386432, + 1764647104, + 11594920858, + 2052329240, + 1205714859 + ], + "geometry": [ + { "lat": 40.8593291, "lon": -73.9313239 }, + { "lat": 40.8594239, "lon": -73.9312855 }, + { "lat": 40.8595059, "lon": -73.9312557 }, + { "lat": 40.8596364, "lon": -73.9312076 }, + { "lat": 40.8597508, "lon": -73.9311638 }, + { "lat": 40.8600595, "lon": -73.9310455 }, + { "lat": 40.8605992, "lon": -73.9307908 }, + { "lat": 40.8606410, "lon": -73.9307710 }, + { "lat": 40.8607111, "lon": -73.9307305 }, + { "lat": 40.8617817, "lon": -73.9301120 }, + { "lat": 40.8617973, "lon": -73.9301061 }, + { "lat": 40.8619046, "lon": -73.9300657 }, + { "lat": 40.8620582, "lon": -73.9300192 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 962669697, + "bounds": { + "minlat": 40.8591414, + "minlon": -73.9314086, + "maxlat": 40.8593291, + "maxlon": -73.9313239 + }, + "nodes": [ + 7740583558, + 9561253104, + 42421783 + ], + "geometry": [ + { "lat": 40.8591414, "lon": -73.9314086 }, + { "lat": 40.8592811, "lon": -73.9313459 }, + { "lat": 40.8593291, "lon": -73.9313239 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 962813251, + "bounds": { + "minlat": 40.7623849, + "minlon": -73.9659866, + "maxlat": 40.7634317, + "maxlon": -73.9652142 + }, + "nodes": [ + 8906253690, + 4798293332, + 4798293334, + 10166509659, + 42436519, + 10166509658, + 10166509667, + 42449982 + ], + "geometry": [ + { "lat": 40.7623849, "lon": -73.9659866 }, + { "lat": 40.7625747, "lon": -73.9658425 }, + { "lat": 40.7626976, "lon": -73.9657494 }, + { "lat": 40.7627486, "lon": -73.9657108 }, + { "lat": 40.7628079, "lon": -73.9656659 }, + { "lat": 40.7628646, "lon": -73.9656248 }, + { "lat": 40.7633698, "lon": -73.9652590 }, + { "lat": 40.7634317, "lon": -73.9652142 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 962816206, + "bounds": { + "minlat": 40.7009921, + "minlon": -73.9916089, + "maxlat": 40.7012292, + "maxlon": -73.9913099 + }, + "nodes": [ + 7014570048, + 11158142748, + 42519202 + ], + "geometry": [ + { "lat": 40.7012292, "lon": -73.9916089 }, + { "lat": 40.7010570, "lon": -73.9913917 }, + { "lat": 40.7009921, "lon": -73.9913099 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 962829745, + "bounds": { + "minlat": 40.7614374, + "minlon": -73.9652887, + "maxlat": 40.7618349, + "maxlon": -73.9643627 + }, + "nodes": [ + 8906433866, + 8906433867 + ], + "geometry": [ + { "lat": 40.7614374, "lon": -73.9643627 }, + { "lat": 40.7618349, "lon": -73.9652887 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 962829746, + "bounds": { + "minlat": 40.7618349, + "minlon": -73.9661278, + "maxlat": 40.7621951, + "maxlon": -73.9652887 + }, + "nodes": [ + 8906433867, + 4716936973, + 6177439759 + ], + "geometry": [ + { "lat": 40.7618349, "lon": -73.9652887 }, + { "lat": 40.7621357, "lon": -73.9659893 }, + { "lat": 40.7621951, "lon": -73.9661278 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 962831194, + "bounds": { + "minlat": 40.7685495, + "minlon": -73.9715467, + "maxlat": 40.7686268, + "maxlon": -73.9713577 + }, + "nodes": [ + 8906451666, + 1071832221, + 8906451667 + ], + "geometry": [ + { "lat": 40.7686268, "lon": -73.9715467 }, + { "lat": 40.7685924, "lon": -73.9714620 }, + { "lat": 40.7685495, "lon": -73.9713577 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 962831195, + "bounds": { + "minlat": 40.7684901, + "minlon": -73.9713577, + "maxlat": 40.7685495, + "maxlon": -73.9712285 + }, + "nodes": [ + 8906451667, + 422438819 + ], + "geometry": [ + { "lat": 40.7685495, "lon": -73.9713577 }, + { "lat": 40.7684901, "lon": -73.9712285 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 962893181, + "bounds": { + "minlat": 40.7328698, + "minlon": -73.9245093, + "maxlat": 40.7340227, + "maxlon": -73.9230439 + }, + "nodes": [ + 6219006584, + 12162675449, + 12162675450, + 9194902686, + 9194902685, + 8907074291, + 9194902684, + 9194902683, + 9194902682, + 9194902681, + 9194902680, + 9194902679, + 9194902664 + ], + "geometry": [ + { "lat": 40.7328698, "lon": -73.9245093 }, + { "lat": 40.7329909, "lon": -73.9244084 }, + { "lat": 40.7331069, "lon": -73.9242998 }, + { "lat": 40.7332181, "lon": -73.9241891 }, + { "lat": 40.7333134, "lon": -73.9240864 }, + { "lat": 40.7333980, "lon": -73.9239906 }, + { "lat": 40.7334892, "lon": -73.9238830 }, + { "lat": 40.7335841, "lon": -73.9237612 }, + { "lat": 40.7336777, "lon": -73.9236282 }, + { "lat": 40.7337664, "lon": -73.9234948 }, + { "lat": 40.7338413, "lon": -73.9233732 }, + { "lat": 40.7339227, "lon": -73.9232321 }, + { "lat": 40.7340227, "lon": -73.9230439 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 962899097, + "bounds": { + "minlat": 40.7142042, + "minlon": -73.9532772, + "maxlat": 40.7146425, + "maxlon": -73.9527944 + }, + "nodes": [ + 8907127817, + 42476565 + ], + "geometry": [ + { "lat": 40.7146425, "lon": -73.9527944 }, + { "lat": 40.7142042, "lon": -73.9532772 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Meeker", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 962900610, + "bounds": { + "minlat": 40.8260356, + "minlon": -73.9202471, + "maxlat": 40.8261786, + "maxlon": -73.9197861 + }, + "nodes": [ + 8907128165, + 12163704745, + 5539543982, + 42731617 + ], + "geometry": [ + { "lat": 40.8260356, "lon": -73.9197861 }, + { "lat": 40.8261369, "lon": -73.9201060 }, + { "lat": 40.8261554, "lon": -73.9201582 }, + { "lat": 40.8261786, "lon": -73.9202471 } + ], + "tags": { + "bus:lanes:backward": "designated", + "busway:left": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes:forward": "left;through|through", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 962935063, + "bounds": { + "minlat": 40.7615641, + "minlon": -73.9634382, + "maxlat": 40.7618673, + "maxlon": -73.9627156 + }, + "nodes": [ + 8907450705, + 4960208254, + 42436527 + ], + "geometry": [ + { "lat": 40.7615641, "lon": -73.9627156 }, + { "lat": 40.7618074, "lon": -73.9632954 }, + { "lat": 40.7618673, "lon": -73.9634382 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 61st Street", + "name:ru": "Восточная 61-я стрит", + "name_1": "East 61 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 963071968, + "bounds": { + "minlat": 40.7735055, + "minlon": -73.9853181, + "maxlat": 40.7735306, + "maxlon": -73.9851490 + }, + "nodes": [ + 42442410, + 8908553042, + 8692133533, + 3369597122 + ], + "geometry": [ + { "lat": 40.7735306, "lon": -73.9853181 }, + { "lat": 40.7735144, "lon": -73.9852087 }, + { "lat": 40.7735103, "lon": -73.9851810 }, + { "lat": 40.7735055, "lon": -73.9851490 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 963551148, + "bounds": { + "minlat": 40.7017144, + "minlon": -73.9610615, + "maxlat": 40.7036692, + "maxlon": -73.9599755 + }, + "nodes": [ + 479715815, + 479715816, + 479715817 + ], + "geometry": [ + { "lat": 40.7036692, "lon": -73.9599755 }, + { "lat": 40.7020004, "lon": -73.9609052 }, + { "lat": 40.7017144, "lon": -73.9610615 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11; A11; A63; A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 963551149, + "bounds": { + "minlat": 40.7036692, + "minlon": -73.9599755, + "maxlat": 40.7043959, + "maxlon": -73.9595398 + }, + "nodes": [ + 8912881843, + 479715815 + ], + "geometry": [ + { "lat": 40.7043959, "lon": -73.9595398 }, + { "lat": 40.7036692, "lon": -73.9599755 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "||Tillary Street;Manhattan Bridge;Brooklyn Civic Center|Wythe Avenue;Kent Avenue", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11;A11;A63;A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "|||slight_right" + } +}, +{ + "type": "way", + "id": 963551551, + "bounds": { + "minlat": 40.7194015, + "minlon": -74.0018814, + "maxlat": 40.7199362, + "maxlon": -74.0014266 + }, + "nodes": [ + 42428434, + 8307641795, + 8307641803, + 42428433 + ], + "geometry": [ + { "lat": 40.7199362, "lon": -74.0014266 }, + { "lat": 40.7198949, "lon": -74.0014616 }, + { "lat": 40.7194898, "lon": -74.0018056 }, + { "lat": 40.7194015, "lon": -74.0018814 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none|right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 963551552, + "bounds": { + "minlat": 40.7189132, + "minlon": -74.0022210, + "maxlat": 40.7203410, + "maxlon": -73.9992327 + }, + "nodes": [ + 42427322, + 12197904811, + 8307641677, + 13518893887, + 12197904807, + 8231931835, + 42439580, + 8231931838, + 42439581, + 8307641793, + 42428434, + 8307641796, + 13415884643, + 8307641828, + 42439583 + ], + "geometry": [ + { "lat": 40.7189132, "lon": -73.9992327 }, + { "lat": 40.7189372, "lon": -73.9992838 }, + { "lat": 40.7189541, "lon": -73.9993215 }, + { "lat": 40.7190158, "lon": -73.9994555 }, + { "lat": 40.7191186, "lon": -73.9996787 }, + { "lat": 40.7191477, "lon": -73.9997420 }, + { "lat": 40.7192031, "lon": -73.9998623 }, + { "lat": 40.7192416, "lon": -73.9999459 }, + { "lat": 40.7195526, "lon": -74.0006214 }, + { "lat": 40.7198879, "lon": -74.0013497 }, + { "lat": 40.7199362, "lon": -74.0014266 }, + { "lat": 40.7199979, "lon": -74.0015249 }, + { "lat": 40.7202890, "lon": -74.0021154 }, + { "lat": 40.7203147, "lon": -74.0021675 }, + { "lat": 40.7203410, "lon": -74.0022210 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Howard Street", + "name:ko": "하워드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963551553, + "bounds": { + "minlat": 40.7167984, + "minlon": -74.0040877, + "maxlat": 40.7194015, + "maxlon": -74.0018814 + }, + "nodes": [ + 42428433, + 8307641804, + 42428431, + 5481883674, + 4754110661, + 8307641758, + 42428428, + 8307641759, + 4754110663, + 4754110665, + 8307641763, + 42428425, + 8307641764, + 8307641769, + 42428420, + 8307641770, + 4754110667, + 8307641682, + 5706569905, + 8307641683, + 4207150078 + ], + "geometry": [ + { "lat": 40.7194015, "lon": -74.0018814 }, + { "lat": 40.7193053, "lon": -74.0019619 }, + { "lat": 40.7191530, "lon": -74.0020910 }, + { "lat": 40.7190476, "lon": -74.0021807 }, + { "lat": 40.7187523, "lon": -74.0024323 }, + { "lat": 40.7186746, "lon": -74.0024982 }, + { "lat": 40.7186389, "lon": -74.0025285 }, + { "lat": 40.7185847, "lon": -74.0025746 }, + { "lat": 40.7185043, "lon": -74.0026429 }, + { "lat": 40.7181394, "lon": -74.0029533 }, + { "lat": 40.7180708, "lon": -74.0030116 }, + { "lat": 40.7180338, "lon": -74.0030430 }, + { "lat": 40.7179833, "lon": -74.0030854 }, + { "lat": 40.7174957, "lon": -74.0034938 }, + { "lat": 40.7174490, "lon": -74.0035330 }, + { "lat": 40.7174120, "lon": -74.0035645 }, + { "lat": 40.7173337, "lon": -74.0036313 }, + { "lat": 40.7169184, "lon": -74.0039856 }, + { "lat": 40.7168710, "lon": -74.0040260 }, + { "lat": 40.7168282, "lon": -74.0040624 }, + { "lat": 40.7167984, "lon": -74.0040877 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 963567032, + "bounds": { + "minlat": 40.7458555, + "minlon": -74.0018592, + "maxlat": 40.7462289, + "maxlon": -74.0015737 + }, + "nodes": [ + 8913023103, + 10168486336, + 42434279 + ], + "geometry": [ + { "lat": 40.7462289, "lon": -74.0015737 }, + { "lat": 40.7459117, "lon": -74.0018198 }, + { "lat": 40.7458555, "lon": -74.0018592 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 963567033, + "bounds": { + "minlat": 40.7446300, + "minlon": -74.0018592, + "maxlat": 40.7458555, + "maxlon": -73.9989693 + }, + "nodes": [ + 42434279, + 4601466500, + 10168486334, + 10171509270, + 6211484439, + 42434271 + ], + "geometry": [ + { "lat": 40.7458555, "lon": -74.0018592 }, + { "lat": 40.7457974, "lon": -74.0017224 }, + { "lat": 40.7457757, "lon": -74.0016709 }, + { "lat": 40.7446865, "lon": -73.9991051 }, + { "lat": 40.7446765, "lon": -73.9990816 }, + { "lat": 40.7446300, "lon": -73.9989693 } + ], + "tags": { + "alt_name": "West 22 Street", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 22nd Street", + "name:ru": "Западная 22-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963567034, + "bounds": { + "minlat": 40.7452350, + "minlon": -74.0022968, + "maxlat": 40.7458555, + "maxlon": -74.0018592 + }, + "nodes": [ + 42434279, + 10168486332, + 12181309672, + 10168486345, + 42443674 + ], + "geometry": [ + { "lat": 40.7458555, "lon": -74.0018592 }, + { "lat": 40.7457931, "lon": -74.0019034 }, + { "lat": 40.7453302, "lon": -74.0022287 }, + { "lat": 40.7452853, "lon": -74.0022605 }, + { "lat": 40.7452350, "lon": -74.0022968 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 963575309, + "bounds": { + "minlat": 40.8053887, + "minlon": -73.9923819, + "maxlat": 40.8056078, + "maxlon": -73.9922079 + }, + "nodes": [ + 8913088173, + 4215808349 + ], + "geometry": [ + { "lat": 40.8056078, "lon": -73.9922079 }, + { "lat": 40.8053887, "lon": -73.9923819 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 963575583, + "bounds": { + "minlat": 40.7446390, + "minlon": -74.0027325, + "maxlat": 40.7449883, + "maxlon": -74.0024764 + }, + "nodes": [ + 8913108827, + 12181309663, + 10168486389, + 42427386 + ], + "geometry": [ + { "lat": 40.7449883, "lon": -74.0024764 }, + { "lat": 40.7447492, "lon": -74.0026505 }, + { "lat": 40.7447026, "lon": -74.0026843 }, + { "lat": 40.7446390, "lon": -74.0027325 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 963575585, + "bounds": { + "minlat": 40.7434291, + "minlon": -74.0027325, + "maxlat": 40.7446390, + "maxlon": -73.9998503 + }, + "nodes": [ + 42427386, + 10168486387, + 12181309660, + 10171337721, + 42427381 + ], + "geometry": [ + { "lat": 40.7446390, "lon": -74.0027325 }, + { "lat": 40.7445677, "lon": -74.0025632 }, + { "lat": 40.7435078, "lon": -74.0000520 }, + { "lat": 40.7434827, "lon": -73.9999932 }, + { "lat": 40.7434291, "lon": -73.9998503 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 20th Street", + "name:ru": "Западная 20-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963575586, + "bounds": { + "minlat": 40.7438497, + "minlon": -74.0033009, + "maxlat": 40.7446390, + "maxlon": -74.0027325 + }, + "nodes": [ + 42427386, + 10168486385, + 10168486406, + 42444916, + 10168486402, + 8913108828 + ], + "geometry": [ + { "lat": 40.7446390, "lon": -74.0027325 }, + { "lat": 40.7445828, "lon": -74.0027739 }, + { "lat": 40.7441119, "lon": -74.0031131 }, + { "lat": 40.7440561, "lon": -74.0031552 }, + { "lat": 40.7439907, "lon": -74.0032044 }, + { "lat": 40.7438497, "lon": -74.0033009 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 963575587, + "bounds": { + "minlat": 40.7434761, + "minlon": -74.0035806, + "maxlat": 40.7438497, + "maxlon": -74.0033009 + }, + "nodes": [ + 8913108828, + 8310246376, + 42429663 + ], + "geometry": [ + { "lat": 40.7438497, "lon": -74.0033009 }, + { "lat": 40.7435272, "lon": -74.0035433 }, + { "lat": 40.7434761, "lon": -74.0035806 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 963576906, + "bounds": { + "minlat": 40.7023038, + "minlon": -73.9670500, + "maxlat": 40.7026418, + "maxlon": -73.9666003 + }, + "nodes": [ + 7711046942, + 7711046938, + 9115792939, + 8913122327, + 9998827396, + 7711046937, + 8913120111, + 9998827395, + 8913094396, + 8913122325, + 9998827394, + 9814817521, + 8913122323, + 9814817522, + 9998827393, + 8913094399, + 8913122351, + 8913094398, + 8913122354, + 9998827392, + 8913094397, + 9998827391, + 9115792940, + 8913122338, + 9998827388, + 8913094395, + 9998827387, + 8913122336, + 7711046940, + 9998827384, + 7711046941, + 7711066109, + 9998827385, + 9115792941, + 9998827386, + 8913122357, + 7711046942 + ], + "geometry": [ + { "lat": 40.7023737, "lon": -73.9666373 }, + { "lat": 40.7024045, "lon": -73.9666162 }, + { "lat": 40.7024389, "lon": -73.9666034 }, + { "lat": 40.7024746, "lon": -73.9666003 }, + { "lat": 40.7025069, "lon": -73.9666056 }, + { "lat": 40.7025385, "lon": -73.9666204 }, + { "lat": 40.7025601, "lon": -73.9666321 }, + { "lat": 40.7025852, "lon": -73.9666566 }, + { "lat": 40.7026077, "lon": -73.9666896 }, + { "lat": 40.7026231, "lon": -73.9667209 }, + { "lat": 40.7026332, "lon": -73.9667554 }, + { "lat": 40.7026418, "lon": -73.9667978 }, + { "lat": 40.7026413, "lon": -73.9668279 }, + { "lat": 40.7026408, "lon": -73.9668556 }, + { "lat": 40.7026349, "lon": -73.9668901 }, + { "lat": 40.7026263, "lon": -73.9669244 }, + { "lat": 40.7026070, "lon": -73.9669637 }, + { "lat": 40.7025845, "lon": -73.9669940 }, + { "lat": 40.7025599, "lon": -73.9670174 }, + { "lat": 40.7025373, "lon": -73.9670316 }, + { "lat": 40.7025091, "lon": -73.9670454 }, + { "lat": 40.7024800, "lon": -73.9670499 }, + { "lat": 40.7024515, "lon": -73.9670500 }, + { "lat": 40.7024201, "lon": -73.9670412 }, + { "lat": 40.7023949, "lon": -73.9670237 }, + { "lat": 40.7023709, "lon": -73.9670045 }, + { "lat": 40.7023483, "lon": -73.9669762 }, + { "lat": 40.7023284, "lon": -73.9669452 }, + { "lat": 40.7023164, "lon": -73.9669139 }, + { "lat": 40.7023084, "lon": -73.9668801 }, + { "lat": 40.7023038, "lon": -73.9668425 }, + { "lat": 40.7023053, "lon": -73.9667976 }, + { "lat": 40.7023103, "lon": -73.9667610 }, + { "lat": 40.7023223, "lon": -73.9667233 }, + { "lat": 40.7023376, "lon": -73.9666908 }, + { "lat": 40.7023535, "lon": -73.9666647 }, + { "lat": 40.7023737, "lon": -73.9666373 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "junction": "roundabout", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963576907, + "bounds": { + "minlat": 40.7030238, + "minlon": -73.9671055, + "maxlat": 40.7038011, + "maxlon": -73.9662353 + }, + "nodes": [ + 8913094412, + 8913094402, + 8913094414, + 8913094403, + 8913094404, + 8913094405, + 8913094415 + ], + "geometry": [ + { "lat": 40.7033564, "lon": -73.9671055 }, + { "lat": 40.7034135, "lon": -73.9670980 }, + { "lat": 40.7035667, "lon": -73.9670728 }, + { "lat": 40.7037387, "lon": -73.9670701 }, + { "lat": 40.7038011, "lon": -73.9670661 }, + { "lat": 40.7031401, "lon": -73.9662353 }, + { "lat": 40.7030238, "lon": -73.9663758 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 963576908, + "bounds": { + "minlat": 40.7027928, + "minlon": -73.9671538, + "maxlat": 40.7031571, + "maxlon": -73.9666939 + }, + "nodes": [ + 8913094410, + 8913094411 + ], + "geometry": [ + { "lat": 40.7031571, "lon": -73.9671538 }, + { "lat": 40.7027928, "lon": -73.9666939 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 963576909, + "bounds": { + "minlat": 40.7028997, + "minlon": -73.9671055, + "maxlat": 40.7033564, + "maxlon": -73.9665465 + }, + "nodes": [ + 8913094412, + 8913094413 + ], + "geometry": [ + { "lat": 40.7033564, "lon": -73.9671055 }, + { "lat": 40.7028997, "lon": -73.9665465 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 963576910, + "bounds": { + "minlat": 40.7030238, + "minlon": -73.9670728, + "maxlat": 40.7035667, + "maxlon": -73.9663758 + }, + "nodes": [ + 8913094414, + 8913094415 + ], + "geometry": [ + { "lat": 40.7035667, "lon": -73.9670728 }, + { "lat": 40.7030238, "lon": -73.9663758 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 963576911, + "bounds": { + "minlat": 40.7024746, + "minlon": -73.9666003, + "maxlat": 40.7027270, + "maxlon": -73.9663807 + }, + "nodes": [ + 8913122327, + 9998827378, + 9998827380, + 9998827379, + 8913122324, + 8913122344 + ], + "geometry": [ + { "lat": 40.7024746, "lon": -73.9666003 }, + { "lat": 40.7025361, "lon": -73.9665710 }, + { "lat": 40.7025649, "lon": -73.9665508 }, + { "lat": 40.7025878, "lon": -73.9665321 }, + { "lat": 40.7026118, "lon": -73.9665055 }, + { "lat": 40.7027270, "lon": -73.9663807 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "lanes": "1", + "name": "Wilson Street", + "name:etymology:wikidata": "Q365181", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963576912, + "bounds": { + "minlat": 40.7027959, + "minlon": -73.9664804, + "maxlat": 40.7029443, + "maxlon": -73.9662488 + }, + "nodes": [ + 8913122321, + 9998827375, + 8913122322 + ], + "geometry": [ + { "lat": 40.7029443, "lon": -73.9662488 }, + { "lat": 40.7028689, "lon": -73.9663705 }, + { "lat": 40.7027959, "lon": -73.9664804 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "lanes": "2", + "name": "Wilson Street", + "name:etymology:wikidata": "Q365181", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963576913, + "bounds": { + "minlat": 40.7031113, + "minlon": -73.9660358, + "maxlat": 40.7032259, + "maxlon": -73.9658584 + }, + "nodes": [ + 42469430, + 12987250635, + 5861248523, + 9776829175, + 9645230714 + ], + "geometry": [ + { "lat": 40.7032259, "lon": -73.9658584 }, + { "lat": 40.7031959, "lon": -73.9659075 }, + { "lat": 40.7031486, "lon": -73.9659851 }, + { "lat": 40.7031251, "lon": -73.9660157 }, + { "lat": 40.7031113, "lon": -73.9660358 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "name": "Wilson Street", + "name:etymology:wikidata": "Q365181", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963576914, + "bounds": { + "minlat": 40.7022767, + "minlon": -73.9678399, + "maxlat": 40.7028257, + "maxlon": -73.9671413 + }, + "nodes": [ + 8913122328, + 8913122329, + 8913122332, + 10716556281, + 8913122330, + 10716574900, + 10716556276, + 4758931796 + ], + "geometry": [ + { "lat": 40.7024961, "lon": -73.9678399 }, + { "lat": 40.7028257, "lon": -73.9674609 }, + { "lat": 40.7027139, "lon": -73.9672978 }, + { "lat": 40.7026229, "lon": -73.9671649 }, + { "lat": 40.7026068, "lon": -73.9671413 }, + { "lat": 40.7024438, "lon": -73.9673175 }, + { "lat": 40.7022965, "lon": -73.9674769 }, + { "lat": 40.7022767, "lon": -73.9674983 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 963576915, + "bounds": { + "minlat": 40.7023862, + "minlon": -73.9676687, + "maxlat": 40.7027139, + "maxlon": -73.9672978 + }, + "nodes": [ + 8913122331, + 8913122332 + ], + "geometry": [ + { "lat": 40.7023862, "lon": -73.9676687 }, + { "lat": 40.7027139, "lon": -73.9672978 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 963576916, + "bounds": { + "minlat": 40.7020105, + "minlon": -73.9675120, + "maxlat": 40.7022200, + "maxlon": -73.9672198 + }, + "nodes": [ + 4758928102, + 10716574902, + 8913122334 + ], + "geometry": [ + { "lat": 40.7020105, "lon": -73.9675120 }, + { "lat": 40.7020535, "lon": -73.9674521 }, + { "lat": 40.7022200, "lon": -73.9672198 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Washington Avenue", + "name:etymology:wikidata": "Q23", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963576917, + "bounds": { + "minlat": 40.7022200, + "minlon": -73.9672198, + "maxlat": 40.7023284, + "maxlon": -73.9669452 + }, + "nodes": [ + 8913122334, + 8913122335, + 9998827381, + 9998827382, + 9998827383, + 8913122336 + ], + "geometry": [ + { "lat": 40.7022200, "lon": -73.9672198 }, + { "lat": 40.7022854, "lon": -73.9670891 }, + { "lat": 40.7022954, "lon": -73.9670645 }, + { "lat": 40.7023071, "lon": -73.9670333 }, + { "lat": 40.7023155, "lon": -73.9669979 }, + { "lat": 40.7023284, "lon": -73.9669452 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Wilson Street", + "name:etymology:wikidata": "Q365181", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 963576918, + "bounds": { + "minlat": 40.7022200, + "minlon": -73.9672198, + "maxlat": 40.7024201, + "maxlon": -73.9670412 + }, + "nodes": [ + 8913122338, + 9998827390, + 9998827389, + 8913122337, + 8913122334 + ], + "geometry": [ + { "lat": 40.7024201, "lon": -73.9670412 }, + { "lat": 40.7023784, "lon": -73.9670711 }, + { "lat": 40.7023437, "lon": -73.9670990 }, + { "lat": 40.7023100, "lon": -73.9671279 }, + { "lat": 40.7022200, "lon": -73.9672198 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Wilson Street", + "name:etymology:wikidata": "Q365181", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 963576926, + "bounds": { + "minlat": 40.7027270, + "minlon": -73.9663807, + "maxlat": 40.7029106, + "maxlon": -73.9661511 + }, + "nodes": [ + 8913122344, + 8913094416, + 8913120109 + ], + "geometry": [ + { "lat": 40.7027270, "lon": -73.9663807 }, + { "lat": 40.7028058, "lon": -73.9662783 }, + { "lat": 40.7029106, "lon": -73.9661511 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "lanes": "2", + "name": "Wilson Street", + "name:etymology:wikidata": "Q365181", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963576927, + "bounds": { + "minlat": 40.7025599, + "minlon": -73.9671456, + "maxlat": 40.7027855, + "maxlon": -73.9670174 + }, + "nodes": [ + 8913094400, + 8913122352, + 9998827398, + 8913122353, + 9998827397, + 8913122354 + ], + "geometry": [ + { "lat": 40.7027855, "lon": -73.9671456 }, + { "lat": 40.7026972, "lon": -73.9670622 }, + { "lat": 40.7026636, "lon": -73.9670380 }, + { "lat": 40.7026385, "lon": -73.9670266 }, + { "lat": 40.7026123, "lon": -73.9670208 }, + { "lat": 40.7025599, "lon": -73.9670174 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 963576928, + "bounds": { + "minlat": 40.7026408, + "minlon": -73.9671456, + "maxlat": 40.7027855, + "maxlon": -73.9668556 + }, + "nodes": [ + 9814817522, + 9998827400, + 9998827401, + 8913122355, + 9998827399, + 8913094400 + ], + "geometry": [ + { "lat": 40.7026408, "lon": -73.9668556 }, + { "lat": 40.7026597, "lon": -73.9669319 }, + { "lat": 40.7026739, "lon": -73.9669648 }, + { "lat": 40.7026913, "lon": -73.9669952 }, + { "lat": 40.7027146, "lon": -73.9670303 }, + { "lat": 40.7027855, "lon": -73.9671456 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 963576929, + "bounds": { + "minlat": 40.7013152, + "minlon": -73.9660511, + "maxlat": 40.7019041, + "maxlon": -73.9653112 + }, + "nodes": [ + 12560607514, + 7711046934 + ], + "geometry": [ + { "lat": 40.7019041, "lon": -73.9660511 }, + { "lat": 40.7013152, "lon": -73.9653112 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Neilson Street" + } +}, +{ + "type": "way", + "id": 963581311, + "bounds": { + "minlat": 40.7030503, + "minlon": -73.9659656, + "maxlat": 40.7031726, + "maxlon": -73.9657966 + }, + "nodes": [ + 9645230715, + 9776829174, + 9998897944, + 9998897943, + 9998897942 + ], + "geometry": [ + { "lat": 40.7030503, "lon": -73.9659656 }, + { "lat": 40.7030678, "lon": -73.9659423 }, + { "lat": 40.7030896, "lon": -73.9659133 }, + { "lat": 40.7031417, "lon": -73.9658442 }, + { "lat": 40.7031726, "lon": -73.9657966 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "Wilson Street", + "name:etymology:wikidata": "Q365181", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 963599646, + "bounds": { + "minlat": 40.8187385, + "minlon": -73.9610032, + "maxlat": 40.8197265, + "maxlon": -73.9601312 + }, + "nodes": [ + 42424701, + 3874689577, + 7616666777, + 7616666766, + 10049926003 + ], + "geometry": [ + { "lat": 40.8197265, "lon": -73.9601312 }, + { "lat": 40.8196685, "lon": -73.9601786 }, + { "lat": 40.8192731, "lon": -73.9605305 }, + { "lat": 40.8191395, "lon": -73.9606497 }, + { "lat": 40.8187385, "lon": -73.9610032 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Marginal Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 963602838, + "bounds": { + "minlat": 40.8277036, + "minlon": -73.9259320, + "maxlat": 40.8278308, + "maxlon": -73.9255419 + }, + "nodes": [ + 8913307799, + 12163643898, + 9910729416, + 42748139 + ], + "geometry": [ + { "lat": 40.8277036, "lon": -73.9255419 }, + { "lat": 40.8277809, "lon": -73.9257789 }, + { "lat": 40.8278028, "lon": -73.9258461 }, + { "lat": 40.8278308, "lon": -73.9259320 } + ], + "tags": { + "busway:left": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes:forward": "through|through", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 963603329, + "bounds": { + "minlat": 40.7742004, + "minlon": -73.9223173, + "maxlat": 40.7744328, + "maxlon": -73.9220100 + }, + "nodes": [ + 3025036826, + 6452989065, + 42897243 + ], + "geometry": [ + { "lat": 40.7742004, "lon": -73.9220100 }, + { "lat": 40.7743889, "lon": -73.9222738 }, + { "lat": 40.7744328, "lon": -73.9223173 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:separation": "planter", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "left|none|none" + } +}, +{ + "type": "way", + "id": 963603330, + "bounds": { + "minlat": 40.7734519, + "minlon": -73.9220100, + "maxlat": 40.7742004, + "maxlon": -73.9209533 + }, + "nodes": [ + 42808162, + 5042135697, + 5104280923, + 7787351820, + 42861235, + 7787351791, + 3025036826 + ], + "geometry": [ + { "lat": 40.7734519, "lon": -73.9209533 }, + { "lat": 40.7735001, "lon": -73.9210214 }, + { "lat": 40.7735863, "lon": -73.9211431 }, + { "lat": 40.7739012, "lon": -73.9215876 }, + { "lat": 40.7739412, "lon": -73.9216442 }, + { "lat": 40.7739852, "lon": -73.9217062 }, + { "lat": 40.7742004, "lon": -73.9220100 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963603331, + "bounds": { + "minlat": 40.7729638, + "minlon": -73.9209533, + "maxlat": 40.7734519, + "maxlon": -73.9202665 + }, + "nodes": [ + 42897257, + 13327541478, + 5042135698, + 42808162 + ], + "geometry": [ + { "lat": 40.7729638, "lon": -73.9202665 }, + { "lat": 40.7730108, "lon": -73.9203298 }, + { "lat": 40.7734110, "lon": -73.9209000 }, + { "lat": 40.7734519, "lon": -73.9209533 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "no", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "left|none|none" + } +}, +{ + "type": "way", + "id": 963603332, + "bounds": { + "minlat": 40.7729638, + "minlon": -73.9202665, + "maxlat": 40.7782972, + "maxlon": -73.9137636 + }, + "nodes": [ + 42897257, + 7714984350, + 3025036809, + 7746651032, + 3025036813, + 6450583517, + 42818198, + 6450583519, + 8669080495, + 8288329073, + 8288329077, + 8669080481, + 7783823902, + 6450635309, + 42877830, + 6450635310, + 13204445329, + 2389598803, + 1331886639, + 2389598794, + 7722294145, + 9847967604, + 42874602 + ], + "geometry": [ + { "lat": 40.7729638, "lon": -73.9202665 }, + { "lat": 40.7730335, "lon": -73.9201827 }, + { "lat": 40.7730502, "lon": -73.9201627 }, + { "lat": 40.7730603, "lon": -73.9201504 }, + { "lat": 40.7741610, "lon": -73.9188066 }, + { "lat": 40.7743936, "lon": -73.9185226 }, + { "lat": 40.7744490, "lon": -73.9184550 }, + { "lat": 40.7745159, "lon": -73.9183734 }, + { "lat": 40.7747738, "lon": -73.9180587 }, + { "lat": 40.7748174, "lon": -73.9180055 }, + { "lat": 40.7758713, "lon": -73.9167195 }, + { "lat": 40.7762422, "lon": -73.9162697 }, + { "lat": 40.7764380, "lon": -73.9160280 }, + { "lat": 40.7764698, "lon": -73.9159892 }, + { "lat": 40.7765242, "lon": -73.9159229 }, + { "lat": 40.7765809, "lon": -73.9158527 }, + { "lat": 40.7767943, "lon": -73.9155886 }, + { "lat": 40.7774245, "lon": -73.9148089 }, + { "lat": 40.7777913, "lon": -73.9143653 }, + { "lat": 40.7780258, "lon": -73.9140778 }, + { "lat": 40.7782095, "lon": -73.9138653 }, + { "lat": 40.7782431, "lon": -73.9138258 }, + { "lat": 40.7782972, "lon": -73.9137636 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "26th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963613972, + "bounds": { + "minlat": 40.7510824, + "minlon": -73.9876865, + "maxlat": 40.7514446, + "maxlon": -73.9868280 + }, + "nodes": [ + 42428258, + 10169532581, + 9856566012, + 42430311 + ], + "geometry": [ + { "lat": 40.7514446, "lon": -73.9876865 }, + { "lat": 40.7513685, "lon": -73.9875061 }, + { "lat": 40.7511392, "lon": -73.9869627 }, + { "lat": 40.7510824, "lon": -73.9868280 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "name": "West 36th Street", + "name:ru": "Западная 36-я стрит", + "name_1": "West 36 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|none|none" + } +}, +{ + "type": "way", + "id": 963622830, + "bounds": { + "minlat": 40.8264630, + "minlon": -73.9219112, + "maxlat": 40.8265194, + "maxlon": -73.9217119 + }, + "nodes": [ + 8913552936, + 8913552937 + ], + "geometry": [ + { "lat": 40.8265194, "lon": -73.9219112 }, + { "lat": 40.8264630, "lon": -73.9217119 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "|merge_to_left", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 963622831, + "bounds": { + "minlat": 40.8263245, + "minlon": -73.9217119, + "maxlat": 40.8264630, + "maxlon": -73.9212145 + }, + "nodes": [ + 8913552937, + 9910729393, + 12163704737, + 2408448911, + 2411382107, + 9910729392, + 2408448917 + ], + "geometry": [ + { "lat": 40.8264630, "lon": -73.9217119 }, + { "lat": 40.8263889, "lon": -73.9214658 }, + { "lat": 40.8263577, "lon": -73.9213693 }, + { "lat": 40.8263387, "lon": -73.9213103 }, + { "lat": 40.8263303, "lon": -73.9212765 }, + { "lat": 40.8263263, "lon": -73.9212477 }, + { "lat": 40.8263245, "lon": -73.9212145 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 963628073, + "bounds": { + "minlat": 40.8614518, + "minlon": -73.9125878, + "maxlat": 40.8617433, + "maxlon": -73.9121020 + }, + "nodes": [ + 12058477473, + 8913596523, + 8913596526, + 8913596529, + 12058477476, + 12058477477, + 12058477478, + 12058477479, + 8913596530 + ], + "geometry": [ + { "lat": 40.8616495, "lon": -73.9124616 }, + { "lat": 40.8615466, "lon": -73.9125878 }, + { "lat": 40.8614518, "lon": -73.9124625 }, + { "lat": 40.8616626, "lon": -73.9121725 }, + { "lat": 40.8616806, "lon": -73.9121477 }, + { "lat": 40.8616966, "lon": -73.9121295 }, + { "lat": 40.8617129, "lon": -73.9121165 }, + { "lat": 40.8617284, "lon": -73.9121079 }, + { "lat": 40.8617433, "lon": -73.9121020 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 963629778, + "bounds": { + "minlat": 40.8146009, + "minlon": -73.9361049, + "maxlat": 40.8147720, + "maxlon": -73.9356880 + }, + "nodes": [ + 8913610638, + 9557110437, + 371337175 + ], + "geometry": [ + { "lat": 40.8146009, "lon": -73.9356880 }, + { "lat": 40.8147408, "lon": -73.9360268 }, + { "lat": 40.8147720, "lon": -73.9361049 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes", + "turn:lanes": "left|through|right" + } +}, +{ + "type": "way", + "id": 963634929, + "bounds": { + "minlat": 40.7535014, + "minlon": -73.9387100, + "maxlat": 40.7538980, + "maxlon": -73.9379572 + }, + "nodes": [ + 42818573, + 5031422294, + 8490352110, + 42861196 + ], + "geometry": [ + { "lat": 40.7535014, "lon": -73.9379572 }, + { "lat": 40.7535320, "lon": -73.9380162 }, + { "lat": 40.7538658, "lon": -73.9386496 }, + { "lat": 40.7538980, "lon": -73.9387100 } + ], + "tags": { + "highway": "residential", + "name": "40th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963634930, + "bounds": { + "minlat": 40.7522423, + "minlon": -73.9391219, + "maxlat": 40.7535014, + "maxlon": -73.9379572 + }, + "nodes": [ + 42818573, + 5031422291, + 7279610743, + 7279610744, + 7961868557, + 7069690916, + 9971542827, + 5493300579, + 42808193 + ], + "geometry": [ + { "lat": 40.7535014, "lon": -73.9379572 }, + { "lat": 40.7534536, "lon": -73.9380094 }, + { "lat": 40.7532956, "lon": -73.9381567 }, + { "lat": 40.7532158, "lon": -73.9382296 }, + { "lat": 40.7530498, "lon": -73.9383798 }, + { "lat": 40.7526763, "lon": -73.9387263 }, + { "lat": 40.7525099, "lon": -73.9388806 }, + { "lat": 40.7523073, "lon": -73.9390701 }, + { "lat": 40.7522423, "lon": -73.9391219 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 963677085, + "bounds": { + "minlat": 40.8605426, + "minlon": -73.9887935, + "maxlat": 40.8605884, + "maxlon": -73.9887636 + }, + "nodes": [ + 103224112, + 8064363278 + ], + "geometry": [ + { "lat": 40.8605426, "lon": -73.9887935 }, + { "lat": 40.8605884, "lon": -73.9887636 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 963856064, + "bounds": { + "minlat": 40.7625775, + "minlon": -73.9677191, + "maxlat": 40.7628736, + "maxlon": -73.9670246 + }, + "nodes": [ + 8915549080, + 6177439758, + 10125147540, + 42447020 + ], + "geometry": [ + { "lat": 40.7625775, "lon": -73.9670246 }, + { "lat": 40.7628025, "lon": -73.9675523 }, + { "lat": 40.7628304, "lon": -73.9676178 }, + { "lat": 40.7628736, "lon": -73.9677191 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 963902520, + "bounds": { + "minlat": 40.8106117, + "minlon": -73.9278337, + "maxlat": 40.8107216, + "maxlon": -73.9276913 + }, + "nodes": [ + 8915998957, + 2323814568 + ], + "geometry": [ + { "lat": 40.8107216, "lon": -73.9276913 }, + { "lat": 40.8106117, "lon": -73.9278337 } + ], + "tags": { + "alt_name": "Third Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 963948844, + "bounds": { + "minlat": 40.7945998, + "minlon": -73.9783159, + "maxlat": 40.7958825, + "maxlon": -73.9768851 + }, + "nodes": [ + 7910052385, + 7908589031, + 61261106, + 7908589017, + 61261107, + 61261108 + ], + "geometry": [ + { "lat": 40.7958825, "lon": -73.9768851 }, + { "lat": 40.7957485, "lon": -73.9770095 }, + { "lat": 40.7955821, "lon": -73.9771877 }, + { "lat": 40.7954168, "lon": -73.9773736 }, + { "lat": 40.7952551, "lon": -73.9775612 }, + { "lat": 40.7945998, "lon": -73.9783159 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 963948845, + "bounds": { + "minlat": 40.7962058, + "minlon": -73.9765521, + "maxlat": 40.7967704, + "maxlon": -73.9761442 + }, + "nodes": [ + 9168918378, + 9168918377, + 7910052389, + 9168918375, + 7910052390, + 9168918376, + 7910052395 + ], + "geometry": [ + { "lat": 40.7967704, "lon": -73.9761442 }, + { "lat": 40.7966764, "lon": -73.9762004 }, + { "lat": 40.7965733, "lon": -73.9762674 }, + { "lat": 40.7964841, "lon": -73.9763291 }, + { "lat": 40.7963839, "lon": -73.9764021 }, + { "lat": 40.7962912, "lon": -73.9764787 }, + { "lat": 40.7962058, "lon": -73.9765521 } + ], + "tags": { + "destination:lanes": "none|none|none;West 95th Street|West 95th Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "turn:lanes": "none|none|through;slight_right|slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 963970593, + "bounds": { + "minlat": 40.8310238, + "minlon": -73.9359800, + "maxlat": 40.8315256, + "maxlon": -73.9356297 + }, + "nodes": [ + 5333189422, + 9153608707, + 5333189424, + 13535318219, + 42425758 + ], + "geometry": [ + { "lat": 40.8315256, "lon": -73.9356297 }, + { "lat": 40.8314707, "lon": -73.9356607 }, + { "lat": 40.8312441, "lon": -73.9358190 }, + { "lat": 40.8310834, "lon": -73.9359365 }, + { "lat": 40.8310238, "lon": -73.9359800 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Frederick Douglass Boulevard", + "name:etymology:wikidata": "Q215562", + "name:ru": "Проспект Фредерика Дугласа", + "name_1": "8th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "8th;Harlem River", + "tiger:name_base_1": "Frederick Douglass", + "tiger:name_type": "Ave;Dr", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 963982118, + "bounds": { + "minlat": 40.7852012, + "minlon": -73.9405145, + "maxlat": 40.7904084, + "maxlon": -73.9367296 + }, + "nodes": [ + 42427009, + 9178958184, + 3786723999, + 371212472, + 3786724000, + 9178958183, + 42450531, + 42450525, + 42450521, + 9178958189, + 42450515, + 9178958190, + 42450511, + 42450508, + 42450504, + 42422798, + 42450499, + 9178958193, + 9178958194, + 3785522918, + 371212195, + 3785522917, + 3785522916, + 42433505, + 8828070154, + 9178958195, + 42433490 + ], + "geometry": [ + { "lat": 40.7904084, "lon": -73.9367296 }, + { "lat": 40.7897756, "lon": -73.9371937 }, + { "lat": 40.7896713, "lon": -73.9372662 }, + { "lat": 40.7895743, "lon": -73.9373245 }, + { "lat": 40.7894727, "lon": -73.9373813 }, + { "lat": 40.7893690, "lon": -73.9374335 }, + { "lat": 40.7892703, "lon": -73.9374814 }, + { "lat": 40.7878387, "lon": -73.9381111 }, + { "lat": 40.7877318, "lon": -73.9381677 }, + { "lat": 40.7876299, "lon": -73.9382214 }, + { "lat": 40.7875347, "lon": -73.9382797 }, + { "lat": 40.7874406, "lon": -73.9383422 }, + { "lat": 40.7873525, "lon": -73.9384068 }, + { "lat": 40.7872575, "lon": -73.9384819 }, + { "lat": 40.7871609, "lon": -73.9385606 }, + { "lat": 40.7867798, "lon": -73.9388984 }, + { "lat": 40.7860019, "lon": -73.9395740 }, + { "lat": 40.7859072, "lon": -73.9396592 }, + { "lat": 40.7858163, "lon": -73.9397415 }, + { "lat": 40.7857360, "lon": -73.9398160 }, + { "lat": 40.7856504, "lon": -73.9399058 }, + { "lat": 40.7855630, "lon": -73.9400020 }, + { "lat": 40.7854863, "lon": -73.9400897 }, + { "lat": 40.7854123, "lon": -73.9401881 }, + { "lat": 40.7853319, "lon": -73.9402991 }, + { "lat": 40.7852628, "lon": -73.9404072 }, + { "lat": 40.7852012, "lon": -73.9405145 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 963982119, + "bounds": { + "minlat": 40.7904084, + "minlon": -73.9367296, + "maxlat": 40.7937570, + "maxlon": -73.9322765 + }, + "nodes": [ + 42424133, + 3786724022, + 3786724021, + 3786724020, + 3786724018, + 42433425, + 9178958165, + 9178958166, + 9178958167, + 3786724016, + 42433424, + 9178958168, + 3786724005, + 9178958169, + 42450546, + 9178958170, + 3786724004, + 9178958171, + 3786724003, + 9178958172, + 42450538, + 42427009 + ], + "geometry": [ + { "lat": 40.7937570, "lon": -73.9322765 }, + { "lat": 40.7934362, "lon": -73.9328647 }, + { "lat": 40.7933128, "lon": -73.9330902 }, + { "lat": 40.7931817, "lon": -73.9333152 }, + { "lat": 40.7930449, "lon": -73.9335456 }, + { "lat": 40.7929084, "lon": -73.9337711 }, + { "lat": 40.7927725, "lon": -73.9339850 }, + { "lat": 40.7926306, "lon": -73.9342048 }, + { "lat": 40.7924821, "lon": -73.9344200 }, + { "lat": 40.7919006, "lon": -73.9352590 }, + { "lat": 40.7917510, "lon": -73.9354567 }, + { "lat": 40.7916807, "lon": -73.9355472 }, + { "lat": 40.7915957, "lon": -73.9356532 }, + { "lat": 40.7915059, "lon": -73.9357589 }, + { "lat": 40.7914196, "lon": -73.9358562 }, + { "lat": 40.7913298, "lon": -73.9359478 }, + { "lat": 40.7912521, "lon": -73.9360265 }, + { "lat": 40.7911615, "lon": -73.9361121 }, + { "lat": 40.7910754, "lon": -73.9361893 }, + { "lat": 40.7909897, "lon": -73.9362622 }, + { "lat": 40.7909017, "lon": -73.9363344 }, + { "lat": 40.7904084, "lon": -73.9367296 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "none|none|East 96th Street;East 106th Street", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "none|none|through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 964198407, + "bounds": { + "minlat": 40.7403717, + "minlon": -73.9726357, + "maxlat": 40.7407804, + "maxlon": -73.9725332 + }, + "nodes": [ + 8918574033, + 9913607190, + 1478572209 + ], + "geometry": [ + { "lat": 40.7403717, "lon": -73.9726357 }, + { "lat": 40.7406398, "lon": -73.9725674 }, + { "lat": 40.7407804, "lon": -73.9725332 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "FDR Drive Service Road East;Fdr Drive Service Road East", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 964198408, + "bounds": { + "minlat": 40.7407804, + "minlon": -73.9725332, + "maxlat": 40.7419507, + "maxlon": -73.9723824 + }, + "nodes": [ + 1478572209, + 589099671, + 9141029109, + 9141029110, + 589099676, + 9913607194, + 1478572240 + ], + "geometry": [ + { "lat": 40.7407804, "lon": -73.9725332 }, + { "lat": 40.7414446, "lon": -73.9723966 }, + { "lat": 40.7415008, "lon": -73.9723879 }, + { "lat": 40.7415490, "lon": -73.9723824 }, + { "lat": 40.7415964, "lon": -73.9723833 }, + { "lat": 40.7416463, "lon": -73.9723911 }, + { "lat": 40.7419507, "lon": -73.9724414 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "FDR Drive Service Road East;Fdr Drive Service Road East", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 964208970, + "bounds": { + "minlat": 40.7640017, + "minlon": -73.9711294, + "maxlat": 40.7642357, + "maxlon": -73.9709527 + }, + "nodes": [ + 8918680640, + 4796291640, + 10125174401, + 42445953 + ], + "geometry": [ + { "lat": 40.7640017, "lon": -73.9711294 }, + { "lat": 40.7640906, "lon": -73.9710624 }, + { "lat": 40.7641683, "lon": -73.9710060 }, + { "lat": 40.7642357, "lon": -73.9709527 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:left": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none|none|none", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 964220270, + "bounds": { + "minlat": 40.7107237, + "minlon": -73.9847040, + "maxlat": 40.7107689, + "maxlon": -73.9840660 + }, + "nodes": [ + 8310246554, + 11037604148, + 13837911603, + 6411125194, + 42438531 + ], + "geometry": [ + { "lat": 40.7107689, "lon": -73.9840660 }, + { "lat": 40.7107482, "lon": -73.9844602 }, + { "lat": 40.7107466, "lon": -73.9844803 }, + { "lat": 40.7107396, "lon": -73.9845693 }, + { "lat": 40.7107237, "lon": -73.9847040 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 964220271, + "bounds": { + "minlat": 40.7107689, + "minlon": -73.9840660, + "maxlat": 40.7107814, + "maxlon": -73.9837964 + }, + "nodes": [ + 42436971, + 8310246554 + ], + "geometry": [ + { "lat": 40.7107814, "lon": -73.9837964 }, + { "lat": 40.7107689, "lon": -73.9840660 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "merge_to_right|" + } +}, +{ + "type": "way", + "id": 964236440, + "bounds": { + "minlat": 40.7186079, + "minlon": -73.9905383, + "maxlat": 40.7187461, + "maxlon": -73.9904687 + }, + "nodes": [ + 8918973662, + 8918973663 + ], + "geometry": [ + { "lat": 40.7186079, "lon": -73.9905383 }, + { "lat": 40.7187461, "lon": -73.9904687 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 964236441, + "bounds": { + "minlat": 40.7187461, + "minlon": -73.9904687, + "maxlat": 40.7191029, + "maxlon": -73.9902811 + }, + "nodes": [ + 8918973663, + 8821681984, + 3212472655, + 42429762 + ], + "geometry": [ + { "lat": 40.7187461, "lon": -73.9904687 }, + { "lat": 40.7189421, "lon": -73.9903594 }, + { "lat": 40.7190027, "lon": -73.9903292 }, + { "lat": 40.7191029, "lon": -73.9902811 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 964237186, + "bounds": { + "minlat": 40.6999788, + "minlon": -73.9851906, + "maxlat": 40.7002824, + "maxlon": -73.9848474 + }, + "nodes": [ + 2034474321, + 559865266 + ], + "geometry": [ + { "lat": 40.7002824, "lon": -73.9851906 }, + { "lat": 40.6999788, "lon": -73.9848474 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 964241106, + "bounds": { + "minlat": 40.7648306, + "minlon": -73.9270751, + "maxlat": 40.7657446, + "maxlon": -73.9264504 + }, + "nodes": [ + 42818515, + 7661754163, + 2302476357, + 42818520 + ], + "geometry": [ + { "lat": 40.7657446, "lon": -73.9264504 }, + { "lat": 40.7656583, "lon": -73.9264885 }, + { "lat": 40.7652383, "lon": -73.9266714 }, + { "lat": 40.7648306, "lon": -73.9270751 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 964241107, + "bounds": { + "minlat": 40.7642493, + "minlon": -73.9276258, + "maxlat": 40.7648306, + "maxlon": -73.9270751 + }, + "nodes": [ + 42818520, + 42818525 + ], + "geometry": [ + { "lat": 40.7648306, "lon": -73.9270751 }, + { "lat": 40.7642493, "lon": -73.9276258 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 964241108, + "bounds": { + "minlat": 40.7622049, + "minlon": -73.9296076, + "maxlat": 40.7642493, + "maxlon": -73.9276258 + }, + "nodes": [ + 42818525, + 6452415997, + 42818528, + 6452415994, + 6452907631, + 42818534, + 6452907632, + 6452907634, + 42807575, + 6452907636, + 7231859936 + ], + "geometry": [ + { "lat": 40.7642493, "lon": -73.9276258 }, + { "lat": 40.7634866, "lon": -73.9283565 }, + { "lat": 40.7634176, "lon": -73.9284234 }, + { "lat": 40.7633455, "lon": -73.9284933 }, + { "lat": 40.7628833, "lon": -73.9289422 }, + { "lat": 40.7628243, "lon": -73.9289963 }, + { "lat": 40.7627830, "lon": -73.9290387 }, + { "lat": 40.7624461, "lon": -73.9293698 }, + { "lat": 40.7623902, "lon": -73.9294250 }, + { "lat": 40.7622994, "lon": -73.9295129 }, + { "lat": 40.7622049, "lon": -73.9296076 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 964241109, + "bounds": { + "minlat": 40.7615598, + "minlon": -73.9302574, + "maxlat": 40.7622049, + "maxlon": -73.9296076 + }, + "nodes": [ + 7231859936, + 4202420427 + ], + "geometry": [ + { "lat": 40.7622049, "lon": -73.9296076 }, + { "lat": 40.7615598, "lon": -73.9302574 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Crescent Street", + "name_1": "25th Street", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 964249753, + "bounds": { + "minlat": 40.8593054, + "minlon": -73.9745229, + "maxlat": 40.8609282, + "maxlon": -73.9741986 + }, + "nodes": [ + 76464202, + 13765164904, + 76464203, + 13765164905, + 7921808879, + 7921816995, + 7921817012, + 13765164903, + 76464204, + 13765164902, + 7921808838, + 13765116200, + 7921817000, + 13765164901, + 7921808827, + 76464205, + 7921808853, + 7921808869, + 76464206 + ], + "geometry": [ + { "lat": 40.8593054, "lon": -73.9741986 }, + { "lat": 40.8593842, "lon": -73.9742275 }, + { "lat": 40.8594412, "lon": -73.9742471 }, + { "lat": 40.8594901, "lon": -73.9742638 }, + { "lat": 40.8595717, "lon": -73.9742917 }, + { "lat": 40.8597022, "lon": -73.9743334 }, + { "lat": 40.8598354, "lon": -73.9743712 }, + { "lat": 40.8599106, "lon": -73.9743909 }, + { "lat": 40.8599664, "lon": -73.9744053 }, + { "lat": 40.8600354, "lon": -73.9744221 }, + { "lat": 40.8601128, "lon": -73.9744406 }, + { "lat": 40.8602046, "lon": -73.9744598 }, + { "lat": 40.8602745, "lon": -73.9744730 }, + { "lat": 40.8603512, "lon": -73.9744859 }, + { "lat": 40.8604040, "lon": -73.9744939 }, + { "lat": 40.8605209, "lon": -73.9745086 }, + { "lat": 40.8606544, "lon": -73.9745186 }, + { "lat": 40.8607992, "lon": -73.9745229 }, + { "lat": 40.8609282, "lon": -73.9745226 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination": "Hackensack;Local Roadway", + "destination:ref:to": "I 80 West", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "toll": "no" + } +}, +{ + "type": "way", + "id": 964284482, + "bounds": { + "minlat": 40.7590118, + "minlon": -73.9583867, + "maxlat": 40.7595052, + "maxlon": -73.9579979 + }, + "nodes": [ + 371188750, + 3785575832, + 371188752 + ], + "geometry": [ + { "lat": 40.7590118, "lon": -73.9583867 }, + { "lat": 40.7594006, "lon": -73.9580971 }, + { "lat": 40.7595052, "lon": -73.9579979 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "tunnel": "yes", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 964294003, + "bounds": { + "minlat": 40.8738770, + "minlon": -73.9860261, + "maxlat": 40.8739374, + "maxlon": -73.9858201 + }, + "nodes": [ + 8919502800, + 8919502801 + ], + "geometry": [ + { "lat": 40.8739374, "lon": -73.9860261 }, + { "lat": 40.8738770, "lon": -73.9858201 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 964294640, + "bounds": { + "minlat": 40.7805009, + "minlon": -73.9443985, + "maxlat": 40.7828748, + "maxlon": -73.9437833 + }, + "nodes": [ + 6289180298, + 6289180290, + 6289180286, + 9178967039, + 6289180288, + 9178967040, + 6289180289, + 9178967041, + 6289180297, + 9906275228, + 6289180291, + 9906275227, + 6289180287, + 9906275222, + 3785522890, + 589929451, + 9906275223, + 9147289090, + 3785522891, + 3785522892, + 9906275224, + 42424022, + 3785522894, + 6163641237, + 9906275225, + 9147289089, + 9906275226, + 42424025 + ], + "geometry": [ + { "lat": 40.7805009, "lon": -73.9441571 }, + { "lat": 40.7807665, "lon": -73.9442185 }, + { "lat": 40.7812772, "lon": -73.9443433 }, + { "lat": 40.7813799, "lon": -73.9443653 }, + { "lat": 40.7814794, "lon": -73.9443795 }, + { "lat": 40.7815803, "lon": -73.9443919 }, + { "lat": 40.7816703, "lon": -73.9443964 }, + { "lat": 40.7817624, "lon": -73.9443985 }, + { "lat": 40.7818558, "lon": -73.9443980 }, + { "lat": 40.7819433, "lon": -73.9443920 }, + { "lat": 40.7820347, "lon": -73.9443814 }, + { "lat": 40.7821361, "lon": -73.9443672 }, + { "lat": 40.7822280, "lon": -73.9443514 }, + { "lat": 40.7823249, "lon": -73.9443293 }, + { "lat": 40.7824096, "lon": -73.9443032 }, + { "lat": 40.7824845, "lon": -73.9442753 }, + { "lat": 40.7825336, "lon": -73.9442552 }, + { "lat": 40.7825847, "lon": -73.9442281 }, + { "lat": 40.7826155, "lon": -73.9442084 }, + { "lat": 40.7826423, "lon": -73.9441825 }, + { "lat": 40.7826674, "lon": -73.9441500 }, + { "lat": 40.7826890, "lon": -73.9441151 }, + { "lat": 40.7827097, "lon": -73.9440797 }, + { "lat": 40.7827862, "lon": -73.9439211 }, + { "lat": 40.7828110, "lon": -73.9438768 }, + { "lat": 40.7828285, "lon": -73.9438440 }, + { "lat": 40.7828500, "lon": -73.9438137 }, + { "lat": 40.7828748, "lon": -73.9437833 } + ], + "tags": { + "destination": "FDR Drive North", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxheight": "12'10\"", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 964295424, + "bounds": { + "minlat": 40.7156574, + "minlon": -73.9128426, + "maxlat": 40.7161816, + "maxlon": -73.9125652 + }, + "nodes": [ + 8919548809, + 11004089415, + 9759984023, + 597676589 + ], + "geometry": [ + { "lat": 40.7161816, "lon": -73.9128426 }, + { "lat": 40.7157587, "lon": -73.9126188 }, + { "lat": 40.7157145, "lon": -73.9125954 }, + { "lat": 40.7156574, "lon": -73.9125652 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "55th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 964304340, + "bounds": { + "minlat": 40.7177589, + "minlon": -73.9753295, + "maxlat": 40.7180268, + "maxlon": -73.9752627 + }, + "nodes": [ + 8919621235, + 42430973 + ], + "geometry": [ + { "lat": 40.7180268, "lon": -73.9752627 }, + { "lat": 40.7177589, "lon": -73.9753295 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left;through" + } +}, +{ + "type": "way", + "id": 964500186, + "bounds": { + "minlat": 40.7956850, + "minlon": -73.9767319, + "maxlat": 40.7972178, + "maxlon": -73.9756094 + }, + "nodes": [ + 42458435, + 7908637451, + 2029349911, + 2029349914, + 42425555, + 7910052387, + 2029349930, + 7909961983, + 42458439, + 7910052388, + 7908637448, + 9168918373 + ], + "geometry": [ + { "lat": 40.7956850, "lon": -73.9767319 }, + { "lat": 40.7958512, "lon": -73.9765500 }, + { "lat": 40.7960038, "lon": -73.9763965 }, + { "lat": 40.7961914, "lon": -73.9762186 }, + { "lat": 40.7963619, "lon": -73.9760831 }, + { "lat": 40.7964632, "lon": -73.9760113 }, + { "lat": 40.7965583, "lon": -73.9759478 }, + { "lat": 40.7966533, "lon": -73.9758900 }, + { "lat": 40.7967663, "lon": -73.9758285 }, + { "lat": 40.7968642, "lon": -73.9757800 }, + { "lat": 40.7969718, "lon": -73.9757299 }, + { "lat": 40.7972178, "lon": -73.9756094 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 964513529, + "bounds": { + "minlat": 40.7973911, + "minlon": -73.9755288, + "maxlat": 40.7988569, + "maxlon": -73.9750417 + }, + "nodes": [ + 587812665, + 595314111 + ], + "geometry": [ + { "lat": 40.7973911, "lon": -73.9755288 }, + { "lat": 40.7988569, "lon": -73.9750417 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 964814693, + "bounds": { + "minlat": 40.7502157, + "minlon": -73.9137629, + "maxlat": 40.7504209, + "maxlon": -73.9137149 + }, + "nodes": [ + 8925257572, + 8925257573, + 8925257574 + ], + "geometry": [ + { "lat": 40.7502157, "lon": -73.9137149 }, + { "lat": 40.7502998, "lon": -73.9137259 }, + { "lat": 40.7504209, "lon": -73.9137629 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 964839357, + "bounds": { + "minlat": 40.7144460, + "minlon": -73.9524298, + "maxlat": 40.7150308, + "maxlon": -73.9517730 + }, + "nodes": [ + 8925471182, + 6228178163, + 42476487 + ], + "geometry": [ + { "lat": 40.7144460, "lon": -73.9524298 }, + { "lat": 40.7149326, "lon": -73.9518878 }, + { "lat": 40.7150308, "lon": -73.9517730 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|none|none" + } +}, +{ + "type": "way", + "id": 964839358, + "bounds": { + "minlat": 40.7164744, + "minlon": -73.9497643, + "maxlat": 40.7188646, + "maxlon": -73.9460173 + }, + "nodes": [ + 42476503, + 9942799073, + 42476509, + 9802943813, + 42476514, + 6228178165, + 42476519, + 5520860787, + 42476522, + 9945078170, + 42476525, + 8925471183 + ], + "geometry": [ + { "lat": 40.7164744, "lon": -73.9497643 }, + { "lat": 40.7165271, "lon": -73.9496812 }, + { "lat": 40.7169685, "lon": -73.9489846 }, + { "lat": 40.7173927, "lon": -73.9483458 }, + { "lat": 40.7174432, "lon": -73.9482647 }, + { "lat": 40.7174995, "lon": -73.9481802 }, + { "lat": 40.7178784, "lon": -73.9475898 }, + { "lat": 40.7183872, "lon": -73.9468151 }, + { "lat": 40.7184348, "lon": -73.9467345 }, + { "lat": 40.7184767, "lon": -73.9466635 }, + { "lat": 40.7186620, "lon": -73.9463575 }, + { "lat": 40.7188646, "lon": -73.9460173 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 964839359, + "bounds": { + "minlat": 40.7188646, + "minlon": -73.9460173, + "maxlat": 40.7192898, + "maxlon": -73.9453991 + }, + "nodes": [ + 8925471183, + 9937287955, + 42463363 + ], + "geometry": [ + { "lat": 40.7188646, "lon": -73.9460173 }, + { "lat": 40.7192340, "lon": -73.9454750 }, + { "lat": 40.7192898, "lon": -73.9453991 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 964839360, + "bounds": { + "minlat": 40.7192898, + "minlon": -73.9469800, + "maxlat": 40.7214740, + "maxlon": -73.9453991 + }, + "nodes": [ + 42463363, + 8702221552, + 42464292, + 9937287965, + 11229826578, + 13040634216, + 42467912, + 13040634215, + 11229826577, + 9789393800, + 42467919, + 9789393802, + 11229826576, + 8589617581, + 9789356728, + 42466383 + ], + "geometry": [ + { "lat": 40.7192898, "lon": -73.9453991 }, + { "lat": 40.7194834, "lon": -73.9455260 }, + { "lat": 40.7195297, "lon": -73.9455580 }, + { "lat": 40.7195957, "lon": -73.9456046 }, + { "lat": 40.7196412, "lon": -73.9456399 }, + { "lat": 40.7201115, "lon": -73.9460039 }, + { "lat": 40.7201590, "lon": -73.9460410 }, + { "lat": 40.7202223, "lon": -73.9460870 }, + { "lat": 40.7204551, "lon": -73.9462585 }, + { "lat": 40.7207463, "lon": -73.9464725 }, + { "lat": 40.7207890, "lon": -73.9465030 }, + { "lat": 40.7208480, "lon": -73.9465440 }, + { "lat": 40.7211980, "lon": -73.9467985 }, + { "lat": 40.7213777, "lon": -73.9469292 }, + { "lat": 40.7214231, "lon": -73.9469515 }, + { "lat": 40.7214740, "lon": -73.9469800 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 964839361, + "bounds": { + "minlat": 40.7192898, + "minlon": -73.9453991, + "maxlat": 40.7199988, + "maxlon": -73.9442114 + }, + "nodes": [ + 42463363, + 6235394680, + 6228788719, + 42463374 + ], + "geometry": [ + { "lat": 40.7192898, "lon": -73.9453991 }, + { "lat": 40.7193372, "lon": -73.9453244 }, + { "lat": 40.7199207, "lon": -73.9443489 }, + { "lat": 40.7199988, "lon": -73.9442114 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "turn:lanes": "left|none|none" + } +}, +{ + "type": "way", + "id": 964964977, + "bounds": { + "minlat": 40.8038513, + "minlon": -74.0191495, + "maxlat": 40.8041197, + "maxlon": -74.0189178 + }, + "nodes": [ + 8926730999, + 103867730, + 4205657192 + ], + "geometry": [ + { "lat": 40.8038513, "lon": -74.0191495 }, + { "lat": 40.8039210, "lon": -74.0190916 }, + { "lat": 40.8041197, "lon": -74.0189178 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 965195996, + "bounds": { + "minlat": 40.7267454, + "minlon": -73.9302317, + "maxlat": 40.7275764, + "maxlon": -73.9293386 + }, + "nodes": [ + 8928837242, + 8928837228, + 8928837258, + 8928837232, + 12128637808, + 11872982426, + 11872982415, + 8928837220, + 12128565900, + 8928837250, + 8928837217, + 8928837242 + ], + "geometry": [ + { "lat": 40.7275764, "lon": -73.9298991 }, + { "lat": 40.7275387, "lon": -73.9297566 }, + { "lat": 40.7273114, "lon": -73.9293386 }, + { "lat": 40.7272707, "lon": -73.9293975 }, + { "lat": 40.7270721, "lon": -73.9296619 }, + { "lat": 40.7269968, "lon": -73.9297621 }, + { "lat": 40.7269396, "lon": -73.9298368 }, + { "lat": 40.7267454, "lon": -73.9300966 }, + { "lat": 40.7268857, "lon": -73.9301437 }, + { "lat": 40.7271479, "lon": -73.9302317 }, + { "lat": 40.7274783, "lon": -73.9299830 }, + { "lat": 40.7275764, "lon": -73.9298991 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 965285845, + "bounds": { + "minlat": 40.7986975, + "minlon": -73.9123823, + "maxlat": 40.7993826, + "maxlon": -73.9115333 + }, + "nodes": [ + 8929677627, + 8929677631, + 8929677628, + 8929677629, + 8929677630 + ], + "geometry": [ + { "lat": 40.7993826, "lon": -73.9122715 }, + { "lat": 40.7993208, "lon": -73.9123319 }, + { "lat": 40.7992717, "lon": -73.9123823 }, + { "lat": 40.7988463, "lon": -73.9116595 }, + { "lat": 40.7986975, "lon": -73.9115333 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 965285846, + "bounds": { + "minlat": 40.7989953, + "minlon": -73.9126197, + "maxlat": 40.7990892, + "maxlon": -73.9124735 + }, + "nodes": [ + 7554016055, + 1241563631 + ], + "geometry": [ + { "lat": 40.7990892, "lon": -73.9124735 }, + { "lat": 40.7989953, "lon": -73.9126197 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 965285847, + "bounds": { + "minlat": 40.7978977, + "minlon": -73.9141764, + "maxlat": 40.7980392, + "maxlon": -73.9139614 + }, + "nodes": [ + 7554016054, + 1241563589 + ], + "geometry": [ + { "lat": 40.7978977, "lon": -73.9141764 }, + { "lat": 40.7980392, "lon": -73.9139614 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 965426137, + "bounds": { + "minlat": 40.7234878, + "minlon": -73.9516433, + "maxlat": 40.7235878, + "maxlon": -73.9513449 + }, + "nodes": [ + 42479277, + 9789402809, + 6980674614 + ], + "geometry": [ + { "lat": 40.7234878, "lon": -73.9516433 }, + { "lat": 40.7235148, "lon": -73.9515657 }, + { "lat": 40.7235878, "lon": -73.9513449 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "name": "Nassau Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 965832804, + "bounds": { + "minlat": 40.7656615, + "minlon": -73.9980172, + "maxlat": 40.7669203, + "maxlon": -73.9971047 + }, + "nodes": [ + 4872564990, + 4872564989 + ], + "geometry": [ + { "lat": 40.7669203, "lon": -73.9971047 }, + { "lat": 40.7656615, "lon": -73.9980172 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 965833822, + "bounds": { + "minlat": 40.7627381, + "minlon": -73.9936874, + "maxlat": 40.7671310, + "maxlon": -73.9832608 + }, + "nodes": [ + 42430713, + 8307463083, + 6895152829, + 6863266402, + 10085807106, + 42446363, + 10085807108, + 3463815151, + 42445027, + 10074068906, + 5481881554, + 9112839749, + 10073946219, + 6210777829, + 42435702, + 10089697025, + 3977886873, + 42428312 + ], + "geometry": [ + { "lat": 40.7671310, "lon": -73.9936874 }, + { "lat": 40.7670831, "lon": -73.9935717 }, + { "lat": 40.7663953, "lon": -73.9919226 }, + { "lat": 40.7662219, "lon": -73.9915094 }, + { "lat": 40.7660044, "lon": -73.9909963 }, + { "lat": 40.7659445, "lon": -73.9908549 }, + { "lat": 40.7659013, "lon": -73.9907531 }, + { "lat": 40.7648090, "lon": -73.9881641 }, + { "lat": 40.7647531, "lon": -73.9880232 }, + { "lat": 40.7647019, "lon": -73.9878963 }, + { "lat": 40.7643869, "lon": -73.9871599 }, + { "lat": 40.7643455, "lon": -73.9870619 }, + { "lat": 40.7636126, "lon": -73.9853249 }, + { "lat": 40.7635983, "lon": -73.9852910 }, + { "lat": 40.7635566, "lon": -73.9851938 }, + { "lat": 40.7634982, "lon": -73.9850550 }, + { "lat": 40.7627752, "lon": -73.9833356 }, + { "lat": 40.7627381, "lon": -73.9832608 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 52nd Street", + "name:ru": "Западная 52-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "33'4\"", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 965833823, + "bounds": { + "minlat": 40.7680051, + "minlon": -73.9957629, + "maxlat": 40.7690278, + "maxlon": -73.9950161 + }, + "nodes": [ + 11017186435, + 13099951759 + ], + "geometry": [ + { "lat": 40.7680051, "lon": -73.9957629 }, + { "lat": 40.7690278, "lon": -73.9950161 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 965836270, + "bounds": { + "minlat": 40.7656615, + "minlon": -73.9981698, + "maxlat": 40.7657232, + "maxlon": -73.9980172 + }, + "nodes": [ + 4872564989, + 4870557356 + ], + "geometry": [ + { "lat": 40.7656615, "lon": -73.9980172 }, + { "lat": 40.7657232, "lon": -73.9981698 } + ], + "tags": { + "highway": "service", + "name": "West 48th Street", + "name:ru": "Западная 48-я стрит", + "name_1": "West 48 Street", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 965836271, + "bounds": { + "minlat": 40.7650658, + "minlon": -73.9981795, + "maxlat": 40.7654276, + "maxlon": -73.9979118 + }, + "nodes": [ + 593854257, + 4215913808 + ], + "geometry": [ + { "lat": 40.7654276, "lon": -73.9979118 }, + { "lat": 40.7650658, "lon": -73.9981795 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 965838249, + "bounds": { + "minlat": 40.8582975, + "minlon": -73.9720583, + "maxlat": 40.8584700, + "maxlon": -73.9720219 + }, + "nodes": [ + 7407010391, + 76465373 + ], + "geometry": [ + { "lat": 40.8582975, "lon": -73.9720219 }, + { "lat": 40.8584700, "lon": -73.9720583 } + ], + "tags": { + "alt_name": "Cross Street", + "destination:ref:lanes": "NJTP South;I 95 South|NJ 4 West|NJ 4 West;US 9W North", + "highway": "primary", + "lanes": "3", + "name": "Bridge Plaza North", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cross", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 965961445, + "bounds": { + "minlat": 40.7725215, + "minlon": -73.9249431, + "maxlat": 40.7728424, + "maxlon": -73.9245458 + }, + "nodes": [ + 8936146399, + 8936146401, + 8936146400, + 8936146402 + ], + "geometry": [ + { "lat": 40.7727883, "lon": -73.9245458 }, + { "lat": 40.7728142, "lon": -73.9246006 }, + { "lat": 40.7728424, "lon": -73.9246983 }, + { "lat": 40.7725215, "lon": -73.9249431 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 966105510, + "bounds": { + "minlat": 40.7532703, + "minlon": -73.9789392, + "maxlat": 40.7534863, + "maxlon": -73.9787764 + }, + "nodes": [ + 8937823540, + 4960516271, + 3944708029, + 42445917 + ], + "geometry": [ + { "lat": 40.7532703, "lon": -73.9789392 }, + { "lat": 40.7533967, "lon": -73.9788416 }, + { "lat": 40.7534217, "lon": -73.9788229 }, + { "lat": 40.7534863, "lon": -73.9787764 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|none|none", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 966105646, + "bounds": { + "minlat": 40.7104069, + "minlon": -73.9654805, + "maxlat": 40.7105221, + "maxlon": -73.9644321 + }, + "nodes": [ + 8937862359, + 9779538172, + 4207788765 + ], + "geometry": [ + { "lat": 40.7104069, "lon": -73.9644321 }, + { "lat": 40.7105131, "lon": -73.9653984 }, + { "lat": 40.7105221, "lon": -73.9654805 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 966146166, + "bounds": { + "minlat": 40.7096315, + "minlon": -74.0004861, + "maxlat": 40.7097164, + "maxlon": -74.0003258 + }, + "nodes": [ + 5753702311, + 13851002610, + 13368199833 + ], + "geometry": [ + { "lat": 40.7096315, "lon": -74.0003258 }, + { "lat": 40.7096719, "lon": -74.0003893 }, + { "lat": 40.7097164, "lon": -74.0004861 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Robert F. Wagner Sr. Place", + "name:etymology:wikidata": "Q213721", + "name:ko": "로버트 F. 와그너 시니어 플레이스", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 966306918, + "bounds": { + "minlat": 40.7626839, + "minlon": -73.9812302, + "maxlat": 40.7627634, + "maxlon": -73.9811707 + }, + "nodes": [ + 8939922336, + 11296226854, + 8939922347 + ], + "geometry": [ + { "lat": 40.7627634, "lon": -73.9811707 }, + { "lat": 40.7627530, "lon": -73.9811785 }, + { "lat": 40.7626839, "lon": -73.9812302 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 966448025, + "bounds": { + "minlat": 40.7607729, + "minlon": -73.9769062, + "maxlat": 40.7608390, + "maxlon": -73.9768604 + }, + "nodes": [ + 8941359203, + 11296226860, + 8941359204 + ], + "geometry": [ + { "lat": 40.7607729, "lon": -73.9769062 }, + { "lat": 40.7608013, "lon": -73.9768865 }, + { "lat": 40.7608390, "lon": -73.9768604 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 966473624, + "bounds": { + "minlat": 40.7444985, + "minlon": -73.9568108, + "maxlat": 40.7446081, + "maxlon": -73.9567746 + }, + "nodes": [ + 8318425491, + 11622832113, + 8941647679 + ], + "geometry": [ + { "lat": 40.7446081, "lon": -73.9567746 }, + { "lat": 40.7445362, "lon": -73.9567983 }, + { "lat": 40.7444985, "lon": -73.9568108 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 966473625, + "bounds": { + "minlat": 40.7440293, + "minlon": -73.9569735, + "maxlat": 40.7441139, + "maxlon": -73.9569473 + }, + "nodes": [ + 8941647680, + 11622832114, + 8941647681 + ], + "geometry": [ + { "lat": 40.7441139, "lon": -73.9569473 }, + { "lat": 40.7440893, "lon": -73.9569549 }, + { "lat": 40.7440293, "lon": -73.9569735 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 966481412, + "bounds": { + "minlat": 40.7624118, + "minlon": -73.9666361, + "maxlat": 40.7624876, + "maxlon": -73.9665840 + }, + "nodes": [ + 8941697842, + 10170751091, + 8941697843 + ], + "geometry": [ + { "lat": 40.7624118, "lon": -73.9666361 }, + { "lat": 40.7624615, "lon": -73.9666016 }, + { "lat": 40.7624876, "lon": -73.9665840 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 966515979, + "bounds": { + "minlat": 40.8546866, + "minlon": -73.9722974, + "maxlat": 40.8558277, + "maxlon": -73.9707653 + }, + "nodes": [ + 8942003713, + 7930510621, + 7930510627, + 103280500, + 7930510626, + 7930510620, + 103280498, + 3257513591, + 7930510634, + 6964853614, + 7930510617, + 7930510623, + 103096338 + ], + "geometry": [ + { "lat": 40.8558277, "lon": -73.9722974 }, + { "lat": 40.8556050, "lon": -73.9720251 }, + { "lat": 40.8554518, "lon": -73.9718314 }, + { "lat": 40.8552867, "lon": -73.9716172 }, + { "lat": 40.8552268, "lon": -73.9715430 }, + { "lat": 40.8550649, "lon": -73.9713543 }, + { "lat": 40.8550003, "lon": -73.9712699 }, + { "lat": 40.8548762, "lon": -73.9710968 }, + { "lat": 40.8548003, "lon": -73.9709941 }, + { "lat": 40.8547212, "lon": -73.9708898 }, + { "lat": 40.8547018, "lon": -73.9708514 }, + { "lat": 40.8546902, "lon": -73.9708113 }, + { "lat": 40.8546866, "lon": -73.9707653 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 967373655, + "bounds": { + "minlat": 40.7358074, + "minlon": -73.9383658, + "maxlat": 40.7360576, + "maxlon": -73.9377105 + }, + "nodes": [ + 6721411017, + 5481983890 + ], + "geometry": [ + { "lat": 40.7360576, "lon": -73.9377105 }, + { "lat": 40.7358074, "lon": -73.9383658 } + ], + "tags": { + "access": "private", + "highway": "service", + "layer": "-1", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 967387748, + "bounds": { + "minlat": 40.7406048, + "minlon": -73.9389006, + "maxlat": 40.7409074, + "maxlon": -73.9387318 + }, + "nodes": [ + 8949664883, + 10762203000, + 8949664884, + 8949664885 + ], + "geometry": [ + { "lat": 40.7406048, "lon": -73.9387318 }, + { "lat": 40.7406633, "lon": -73.9387335 }, + { "lat": 40.7407192, "lon": -73.9387351 }, + { "lat": 40.7409074, "lon": -73.9389006 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 967458619, + "bounds": { + "minlat": 40.7611158, + "minlon": -73.9699903, + "maxlat": 40.7612500, + "maxlon": -73.9698924 + }, + "nodes": [ + 8835719642, + 11296256961, + 8950382042 + ], + "geometry": [ + { "lat": 40.7611158, "lon": -73.9699903 }, + { "lat": 40.7611540, "lon": -73.9699624 }, + { "lat": 40.7612500, "lon": -73.9698924 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 967579317, + "bounds": { + "minlat": 40.8580198, + "minlon": -73.9803770, + "maxlat": 40.8584099, + "maxlon": -73.9788065 + }, + "nodes": [ + 299098708, + 7921551375, + 7921551380, + 299120754, + 7921580685, + 299120660, + 7921587260, + 299120755, + 7921587267, + 299120666, + 7921587273, + 10942990431, + 299120756 + ], + "geometry": [ + { "lat": 40.8584099, "lon": -73.9788065 }, + { "lat": 40.8583920, "lon": -73.9789483 }, + { "lat": 40.8583689, "lon": -73.9791004 }, + { "lat": 40.8583438, "lon": -73.9792461 }, + { "lat": 40.8583150, "lon": -73.9793910 }, + { "lat": 40.8582826, "lon": -73.9795379 }, + { "lat": 40.8582491, "lon": -73.9796740 }, + { "lat": 40.8582113, "lon": -73.9798132 }, + { "lat": 40.8581681, "lon": -73.9799589 }, + { "lat": 40.8581258, "lon": -73.9800908 }, + { "lat": 40.8580779, "lon": -73.9802270 }, + { "lat": 40.8580325, "lon": -73.9803471 }, + { "lat": 40.8580198, "lon": -73.9803770 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 967901075, + "bounds": { + "minlat": 40.8417377, + "minlon": -73.9958323, + "maxlat": 40.8424410, + "maxlon": -73.9945166 + }, + "nodes": [ + 299181632, + 12020325876, + 12020325877, + 12020325878, + 10943435097, + 10943435066, + 299181633, + 10943455744, + 299181970, + 12020325879, + 299181971, + 7934313897, + 7934313898, + 299181705 + ], + "geometry": [ + { "lat": 40.8417377, "lon": -73.9958323 }, + { "lat": 40.8417814, "lon": -73.9957179 }, + { "lat": 40.8418311, "lon": -73.9955882 }, + { "lat": 40.8418800, "lon": -73.9954693 }, + { "lat": 40.8419309, "lon": -73.9953568 }, + { "lat": 40.8419811, "lon": -73.9952507 }, + { "lat": 40.8420267, "lon": -73.9951636 }, + { "lat": 40.8420750, "lon": -73.9950741 }, + { "lat": 40.8421283, "lon": -73.9949769 }, + { "lat": 40.8421819, "lon": -73.9948914 }, + { "lat": 40.8422420, "lon": -73.9947987 }, + { "lat": 40.8423056, "lon": -73.9947046 }, + { "lat": 40.8423751, "lon": -73.9946056 }, + { "lat": 40.8424410, "lon": -73.9945166 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 968003884, + "bounds": { + "minlat": 40.7168797, + "minlon": -73.9388432, + "maxlat": 40.7171964, + "maxlon": -73.9383995 + }, + "nodes": [ + 7721358852, + 8955521575, + 8955521576, + 8955521577, + 8955521578 + ], + "geometry": [ + { "lat": 40.7168797, "lon": -73.9384207 }, + { "lat": 40.7169644, "lon": -73.9383995 }, + { "lat": 40.7171173, "lon": -73.9384802 }, + { "lat": 40.7171964, "lon": -73.9387389 }, + { "lat": 40.7171633, "lon": -73.9388432 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 968081116, + "bounds": { + "minlat": 40.8505814, + "minlon": -73.9862962, + "maxlat": 40.8513530, + "maxlon": -73.9855348 + }, + "nodes": [ + 4695808182, + 4695808168, + 530805915 + ], + "geometry": [ + { "lat": 40.8505814, "lon": -73.9862962 }, + { "lat": 40.8508983, "lon": -73.9859835 }, + { "lat": 40.8513530, "lon": -73.9855348 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "destination": "New York", + "destination:ref": "US 1 North;US 9 North;US 46 East", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "United States Highway 1", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 968081117, + "bounds": { + "minlat": 40.8503703, + "minlon": -73.9865045, + "maxlat": 40.8505814, + "maxlon": -73.9862962 + }, + "nodes": [ + 8956261524, + 4695808182 + ], + "geometry": [ + { "lat": 40.8503703, "lon": -73.9865045 }, + { "lat": 40.8505814, "lon": -73.9862962 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "destination:lanes": "New York|New York;none", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:name_base_2": "United States Highway 46", + "turn:lanes": "none|through;slight_right" + } +}, +{ + "type": "way", + "id": 968359637, + "bounds": { + "minlat": 40.8577001, + "minlon": -74.0178629, + "maxlat": 40.8580935, + "maxlon": -74.0171561 + }, + "nodes": [ + 8958841351, + 8958841352, + 8958841353, + 8958841354, + 8958841355, + 8958841356, + 8958841357, + 8958841358, + 8958841359, + 8958841360, + 8958841361 + ], + "geometry": [ + { "lat": 40.8580935, "lon": -74.0177842 }, + { "lat": 40.8579486, "lon": -74.0171757 }, + { "lat": 40.8579401, "lon": -74.0171631 }, + { "lat": 40.8579248, "lon": -74.0171561 }, + { "lat": 40.8579074, "lon": -74.0171596 }, + { "lat": 40.8577228, "lon": -74.0172350 }, + { "lat": 40.8577106, "lon": -74.0172468 }, + { "lat": 40.8577001, "lon": -74.0172670 }, + { "lat": 40.8577001, "lon": -74.0172929 }, + { "lat": 40.8577101, "lon": -74.0173312 }, + { "lat": 40.8578668, "lon": -74.0178629 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 968388394, + "bounds": { + "minlat": 40.7311289, + "minlon": -74.0042257, + "maxlat": 40.7314049, + "maxlon": -74.0040681 + }, + "nodes": [ + 8959133939, + 8214331029, + 42430791 + ], + "geometry": [ + { "lat": 40.7314049, "lon": -74.0040681 }, + { "lat": 40.7312063, "lon": -74.0041815 }, + { "lat": 40.7311289, "lon": -74.0042257 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through||" + } +}, +{ + "type": "way", + "id": 968388395, + "bounds": { + "minlat": 40.7307190, + "minlon": -74.0044600, + "maxlat": 40.7311289, + "maxlon": -74.0042257 + }, + "nodes": [ + 42430791, + 8214331030, + 8214331033, + 42430782 + ], + "geometry": [ + { "lat": 40.7311289, "lon": -74.0042257 }, + { "lat": 40.7310776, "lon": -74.0042550 }, + { "lat": 40.7308044, "lon": -74.0044112 }, + { "lat": 40.7307190, "lon": -74.0044600 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 968393461, + "bounds": { + "minlat": 40.7605395, + "minlon": -73.9612955, + "maxlat": 40.7608639, + "maxlon": -73.9610636 + }, + "nodes": [ + 8959167156, + 4942649692, + 42436531 + ], + "geometry": [ + { "lat": 40.7605395, "lon": -73.9612955 }, + { "lat": 40.7608105, "lon": -73.9611019 }, + { "lat": 40.7608639, "lon": -73.9610636 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393462, + "bounds": { + "minlat": 40.7608639, + "minlon": -73.9623819, + "maxlat": 40.7614242, + "maxlon": -73.9610636 + }, + "nodes": [ + 42436531, + 4918486950, + 9375594838, + 13033168803 + ], + "geometry": [ + { "lat": 40.7608639, "lon": -73.9610636 }, + { "lat": 40.7609241, "lon": -73.9612055 }, + { "lat": 40.7614075, "lon": -73.9623422 }, + { "lat": 40.7614242, "lon": -73.9623819 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 61st Street", + "name:ru": "Восточная 61-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 968393463, + "bounds": { + "minlat": 40.7608639, + "minlon": -73.9610636, + "maxlat": 40.7614886, + "maxlon": -73.9605894 + }, + "nodes": [ + 42436531, + 4918486952, + 4918486938, + 42456049 + ], + "geometry": [ + { "lat": 40.7608639, "lon": -73.9610636 }, + { "lat": 40.7609205, "lon": -73.9610206 }, + { "lat": 40.7614274, "lon": -73.9606346 }, + { "lat": 40.7614886, "lon": -73.9605894 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393464, + "bounds": { + "minlat": 40.7605391, + "minlon": -73.9605894, + "maxlat": 40.7614886, + "maxlon": -73.9583585 + }, + "nodes": [ + 42456049, + 4918486944, + 8231348297, + 5119773940, + 4918486967, + 42427968 + ], + "geometry": [ + { "lat": 40.7614886, "lon": -73.9605894 }, + { "lat": 40.7614371, "lon": -73.9604667 }, + { "lat": 40.7611646, "lon": -73.9598210 }, + { "lat": 40.7608643, "lon": -73.9591089 }, + { "lat": 40.7606009, "lon": -73.9585004 }, + { "lat": 40.7605391, "lon": -73.9583585 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "East 62nd Street", + "name:ru": "Восточная 62-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 968393465, + "bounds": { + "minlat": 40.7614886, + "minlon": -73.9605894, + "maxlat": 40.7619580, + "maxlon": -73.9602464 + }, + "nodes": [ + 42456049, + 4918486942, + 8959167160 + ], + "geometry": [ + { "lat": 40.7614886, "lon": -73.9605894 }, + { "lat": 40.7615423, "lon": -73.9605497 }, + { "lat": 40.7619580, "lon": -73.9602464 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393466, + "bounds": { + "minlat": 40.7627152, + "minlon": -73.9625150, + "maxlat": 40.7631130, + "maxlon": -73.9615610 + }, + "nodes": [ + 6744466013, + 8112585810, + 42429981 + ], + "geometry": [ + { "lat": 40.7627152, "lon": -73.9615610 }, + { "lat": 40.7630641, "lon": -73.9623969 }, + { "lat": 40.7631130, "lon": -73.9625150 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "lanes": "3", + "lit": "yes", + "name": "East 63rd Street", + "name:ru": "Восточная 63-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left;through|through" + } +}, +{ + "type": "way", + "id": 968393467, + "bounds": { + "minlat": 40.7621180, + "minlon": -73.9601302, + "maxlat": 40.7627398, + "maxlon": -73.9596948 + }, + "nodes": [ + 42429986, + 4918486923, + 4918486817, + 42431661 + ], + "geometry": [ + { "lat": 40.7621180, "lon": -73.9601302 }, + { "lat": 40.7621719, "lon": -73.9600916 }, + { "lat": 40.7626875, "lon": -73.9597323 }, + { "lat": 40.7627398, "lon": -73.9596948 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393468, + "bounds": { + "minlat": 40.7617963, + "minlon": -73.9596948, + "maxlat": 40.7627398, + "maxlon": -73.9574532 + }, + "nodes": [ + 42431661, + 4918486811, + 4918486931, + 42427972 + ], + "geometry": [ + { "lat": 40.7627398, "lon": -73.9596948 }, + { "lat": 40.7626821, "lon": -73.9595579 }, + { "lat": 40.7618461, "lon": -73.9575760 }, + { "lat": 40.7617963, "lon": -73.9574532 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 64th Street", + "name:ru": "Восточная 64-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 968393469, + "bounds": { + "minlat": 40.7627398, + "minlon": -73.9596948, + "maxlat": 40.7633694, + "maxlon": -73.9592368 + }, + "nodes": [ + 42431661, + 4918486813, + 4918486801, + 42455675 + ], + "geometry": [ + { "lat": 40.7627398, "lon": -73.9596948 }, + { "lat": 40.7627981, "lon": -73.9596532 }, + { "lat": 40.7633184, "lon": -73.9592748 }, + { "lat": 40.7633694, "lon": -73.9592368 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393470, + "bounds": { + "minlat": 40.7633694, + "minlon": -73.9592368, + "maxlat": 40.7638426, + "maxlon": -73.9588802 + }, + "nodes": [ + 42455675, + 7837088630, + 8959167157 + ], + "geometry": [ + { "lat": 40.7633694, "lon": -73.9592368 }, + { "lat": 40.7634251, "lon": -73.9591966 }, + { "lat": 40.7638426, "lon": -73.9588802 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393471, + "bounds": { + "minlat": 40.7638426, + "minlon": -73.9588802, + "maxlat": 40.7639926, + "maxlon": -73.9587694 + }, + "nodes": [ + 8959167157, + 9030177786, + 42447237 + ], + "geometry": [ + { "lat": 40.7638426, "lon": -73.9588802 }, + { "lat": 40.7639360, "lon": -73.9588119 }, + { "lat": 40.7639926, "lon": -73.9587694 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393472, + "bounds": { + "minlat": 40.7639926, + "minlon": -73.9587694, + "maxlat": 40.7644620, + "maxlon": -73.9584142 + }, + "nodes": [ + 42447237, + 9030177789, + 8959167158 + ], + "geometry": [ + { "lat": 40.7639926, "lon": -73.9587694 }, + { "lat": 40.7640476, "lon": -73.9587279 }, + { "lat": 40.7644620, "lon": -73.9584142 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393474, + "bounds": { + "minlat": 40.7646145, + "minlon": -73.9583002, + "maxlat": 40.7652359, + "maxlon": -73.9578431 + }, + "nodes": [ + 42437451, + 9030177801, + 6133388381, + 6670244859, + 42431684 + ], + "geometry": [ + { "lat": 40.7646145, "lon": -73.9583002 }, + { "lat": 40.7646735, "lon": -73.9582559 }, + { "lat": 40.7650343, "lon": -73.9579850 }, + { "lat": 40.7651817, "lon": -73.9578812 }, + { "lat": 40.7652359, "lon": -73.9578431 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393475, + "bounds": { + "minlat": 40.7644620, + "minlon": -73.9584142, + "maxlat": 40.7646145, + "maxlon": -73.9583002 + }, + "nodes": [ + 8959167158, + 9030177790, + 42437451 + ], + "geometry": [ + { "lat": 40.7644620, "lon": -73.9584142 }, + { "lat": 40.7645562, "lon": -73.9583442 }, + { "lat": 40.7646145, "lon": -73.9583002 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393476, + "bounds": { + "minlat": 40.7643868, + "minlon": -73.9578431, + "maxlat": 40.7652359, + "maxlon": -73.9558298 + }, + "nodes": [ + 42431684, + 6670244860, + 12969803283, + 9953316131 + ], + "geometry": [ + { "lat": 40.7652359, "lon": -73.9578431 }, + { "lat": 40.7651886, "lon": -73.9577308 }, + { "lat": 40.7644873, "lon": -73.9560727 }, + { "lat": 40.7643868, "lon": -73.9558298 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "East 68th Street", + "name:ru": "Восточная 68-я стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 968393477, + "bounds": { + "minlat": 40.7652359, + "minlon": -73.9578431, + "maxlat": 40.7657232, + "maxlon": -73.9575071 + }, + "nodes": [ + 42431684, + 6670244861, + 8959167159 + ], + "geometry": [ + { "lat": 40.7652359, "lon": -73.9578431 }, + { "lat": 40.7652889, "lon": -73.9578060 }, + { "lat": 40.7657232, "lon": -73.9575071 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393478, + "bounds": { + "minlat": 40.7657232, + "minlon": -73.9575071, + "maxlat": 40.7658671, + "maxlon": -73.9573999 + }, + "nodes": [ + 8959167159, + 6670244854, + 42455695 + ], + "geometry": [ + { "lat": 40.7657232, "lon": -73.9575071 }, + { "lat": 40.7658164, "lon": -73.9574381 }, + { "lat": 40.7658671, "lon": -73.9573999 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393479, + "bounds": { + "minlat": 40.7658671, + "minlon": -73.9684509, + "maxlat": 40.7705251, + "maxlon": -73.9573999 + }, + "nodes": [ + 42455695, + 6670244853, + 6176390173, + 42443000, + 8851344392, + 3116856947, + 6747157055, + 42449991, + 6747157051, + 3278932329, + 3278932321, + 6747157047, + 42447076, + 6747157052, + 6883897069, + 8835701390, + 42455694, + 596776027, + 10171234759, + 10170844881, + 42445994, + 10170844877, + 8412090720, + 7797650101, + 42455693 + ], + "geometry": [ + { "lat": 40.7658671, "lon": -73.9573999 }, + { "lat": 40.7659291, "lon": -73.9575471 }, + { "lat": 40.7668271, "lon": -73.9596775 }, + { "lat": 40.7668715, "lon": -73.9597829 }, + { "lat": 40.7669247, "lon": -73.9599090 }, + { "lat": 40.7674951, "lon": -73.9612621 }, + { "lat": 40.7677559, "lon": -73.9618810 }, + { "lat": 40.7678128, "lon": -73.9620159 }, + { "lat": 40.7678735, "lon": -73.9621597 }, + { "lat": 40.7680106, "lon": -73.9624852 }, + { "lat": 40.7682774, "lon": -73.9631182 }, + { "lat": 40.7684459, "lon": -73.9635179 }, + { "lat": 40.7684894, "lon": -73.9636212 }, + { "lat": 40.7685281, "lon": -73.9637126 }, + { "lat": 40.7688891, "lon": -73.9645695 }, + { "lat": 40.7690862, "lon": -73.9650374 }, + { "lat": 40.7691362, "lon": -73.9651557 }, + { "lat": 40.7692110, "lon": -73.9653333 }, + { "lat": 40.7692555, "lon": -73.9654389 }, + { "lat": 40.7698037, "lon": -73.9667395 }, + { "lat": 40.7698511, "lon": -73.9668519 }, + { "lat": 40.7698955, "lon": -73.9669574 }, + { "lat": 40.7702368, "lon": -73.9677669 }, + { "lat": 40.7704829, "lon": -73.9683508 }, + { "lat": 40.7705251, "lon": -73.9684509 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "East 69th Street", + "name:ru": "Восточная 69-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 968393480, + "bounds": { + "minlat": 40.7658671, + "minlon": -73.9573999, + "maxlat": 40.7664881, + "maxlon": -73.9569436 + }, + "nodes": [ + 42455695, + 6670244856, + 6670244850, + 42429694 + ], + "geometry": [ + { "lat": 40.7658671, "lon": -73.9573999 }, + { "lat": 40.7659270, "lon": -73.9573548 }, + { "lat": 40.7664343, "lon": -73.9569831 }, + { "lat": 40.7664881, "lon": -73.9569436 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393481, + "bounds": { + "minlat": 40.7657018, + "minlon": -73.9569436, + "maxlat": 40.7664881, + "maxlon": -73.9550846 + }, + "nodes": [ + 42429694, + 6670244851, + 11419656041, + 11419656044, + 11419656046, + 9512697968 + ], + "geometry": [ + { "lat": 40.7664881, "lon": -73.9569436 }, + { "lat": 40.7664361, "lon": -73.9568207 }, + { "lat": 40.7659079, "lon": -73.9555720 }, + { "lat": 40.7658357, "lon": -73.9554013 }, + { "lat": 40.7658299, "lon": -73.9553874 }, + { "lat": 40.7657018, "lon": -73.9550846 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 70th Street", + "name:ru": "Восточная 70-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 968393482, + "bounds": { + "minlat": 40.7664881, + "minlon": -73.9569436, + "maxlat": 40.7669703, + "maxlon": -73.9565979 + }, + "nodes": [ + 42429694, + 6670244852, + 9712539304, + 4215940675 + ], + "geometry": [ + { "lat": 40.7664881, "lon": -73.9569436 }, + { "lat": 40.7665497, "lon": -73.9569025 }, + { "lat": 40.7667328, "lon": -73.9567672 }, + { "lat": 40.7669703, "lon": -73.9565979 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968393483, + "bounds": { + "minlat": 40.7619580, + "minlon": -73.9602464, + "maxlat": 40.7621180, + "maxlon": -73.9601302 + }, + "nodes": [ + 8959167160, + 4918486095, + 42429986 + ], + "geometry": [ + { "lat": 40.7619580, "lon": -73.9602464 }, + { "lat": 40.7620550, "lon": -73.9601753 }, + { "lat": 40.7621180, "lon": -73.9601302 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968394450, + "bounds": { + "minlat": 40.7452332, + "minlon": -73.9911079, + "maxlat": 40.7454210, + "maxlon": -73.9909680 + }, + "nodes": [ + 8959187723, + 10168911612, + 42430279 + ], + "geometry": [ + { "lat": 40.7452332, "lon": -73.9911079 }, + { "lat": 40.7453629, "lon": -73.9910103 }, + { "lat": 40.7454210, "lon": -73.9909680 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 968394451, + "bounds": { + "minlat": 40.7454210, + "minlon": -73.9938130, + "maxlat": 40.7466180, + "maxlon": -73.9909680 + }, + "nodes": [ + 42430279, + 10168911610, + 11147382163, + 42434807 + ], + "geometry": [ + { "lat": 40.7454210, "lon": -73.9909680 }, + { "lat": 40.7454788, "lon": -73.9911053 }, + { "lat": 40.7465679, "lon": -73.9936938 }, + { "lat": 40.7466180, "lon": -73.9938130 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 27th Street", + "name:ru": "Западная 27-я стрит", + "name_1": "West 27 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 968394452, + "bounds": { + "minlat": 40.7454210, + "minlon": -73.9909680, + "maxlat": 40.7464375, + "maxlon": -73.9902374 + }, + "nodes": [ + 42430279, + 10168911616, + 6899374961, + 10168911593, + 42430282, + 10168911597, + 6899374968, + 8959187724 + ], + "geometry": [ + { "lat": 40.7454210, "lon": -73.9909680 }, + { "lat": 40.7454830, "lon": -73.9909230 }, + { "lat": 40.7458465, "lon": -73.9906568 }, + { "lat": 40.7459793, "lon": -73.9905605 }, + { "lat": 40.7460380, "lon": -73.9905180 }, + { "lat": 40.7460991, "lon": -73.9904737 }, + { "lat": 40.7462278, "lon": -73.9903802 }, + { "lat": 40.7464375, "lon": -73.9902374 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 968394453, + "bounds": { + "minlat": 40.7464375, + "minlon": -73.9902374, + "maxlat": 40.7466658, + "maxlon": -73.9900676 + }, + "nodes": [ + 8959187724, + 10168911552, + 9143542452, + 42427797 + ], + "geometry": [ + { "lat": 40.7464375, "lon": -73.9902374 }, + { "lat": 40.7466075, "lon": -73.9901094 }, + { "lat": 40.7466233, "lon": -73.9900982 }, + { "lat": 40.7466658, "lon": -73.9900676 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 968394454, + "bounds": { + "minlat": 40.7478634, + "minlon": -73.9982241, + "maxlat": 40.7501141, + "maxlon": -73.9929048 + }, + "nodes": [ + 42427805, + 10168911571, + 7653745266, + 10170593074, + 42427812, + 6814312341, + 11778771890 + ], + "geometry": [ + { "lat": 40.7478634, "lon": -73.9929048 }, + { "lat": 40.7479205, "lon": -73.9930384 }, + { "lat": 40.7481953, "lon": -73.9936912 }, + { "lat": 40.7490048, "lon": -73.9956138 }, + { "lat": 40.7490560, "lon": -73.9957286 }, + { "lat": 40.7491234, "lon": -73.9958756 }, + { "lat": 40.7501141, "lon": -73.9982241 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 968394455, + "bounds": { + "minlat": 40.7466658, + "minlon": -73.9900676, + "maxlat": 40.7476952, + "maxlon": -73.9893046 + }, + "nodes": [ + 42427797, + 10168911556, + 10168911543, + 42430288, + 10168911547, + 8959187725 + ], + "geometry": [ + { "lat": 40.7466658, "lon": -73.9900676 }, + { "lat": 40.7467212, "lon": -73.9900268 }, + { "lat": 40.7472176, "lon": -73.9896608 }, + { "lat": 40.7472770, "lon": -73.9896170 }, + { "lat": 40.7473375, "lon": -73.9895720 }, + { "lat": 40.7476952, "lon": -73.9893046 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 968394456, + "bounds": { + "minlat": 40.7476952, + "minlon": -73.9893046, + "maxlat": 40.7478958, + "maxlon": -73.9891568 + }, + "nodes": [ + 8959187725, + 10168911585, + 42430292 + ], + "geometry": [ + { "lat": 40.7476952, "lon": -73.9893046 }, + { "lat": 40.7478330, "lon": -73.9892035 }, + { "lat": 40.7478958, "lon": -73.9891568 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 968394732, + "bounds": { + "minlat": 40.8105617, + "minlon": -73.9672230, + "maxlat": 40.8178287, + "maxlon": -73.9616777 + }, + "nodes": [ + 42424937, + 7908594148, + 7908594154, + 7908594160, + 7908594166, + 7908594172, + 7908594122, + 7908594127, + 7908594132, + 7908594138, + 7908594144, + 7908594150, + 7908594156, + 42458474, + 7908594162, + 7908594134, + 7908594140, + 7908594146, + 7908594152, + 42458476, + 42458479, + 7908594158, + 7908594164, + 7908594170, + 7908594120, + 7908594126, + 7908588986, + 7908589000, + 7908589014, + 42424745, + 42458483, + 7908589028, + 7908589042, + 3627671779, + 7908589055, + 7908589068, + 42458485, + 7908589081, + 7908575864, + 7908575878, + 7003507528, + 7003507529, + 595314041 + ], + "geometry": [ + { "lat": 40.8105617, "lon": -73.9672230 }, + { "lat": 40.8107298, "lon": -73.9671096 }, + { "lat": 40.8108912, "lon": -73.9669999 }, + { "lat": 40.8110530, "lon": -73.9668867 }, + { "lat": 40.8111998, "lon": -73.9667822 }, + { "lat": 40.8113628, "lon": -73.9666650 }, + { "lat": 40.8115385, "lon": -73.9665359 }, + { "lat": 40.8116898, "lon": -73.9664226 }, + { "lat": 40.8118544, "lon": -73.9662982 }, + { "lat": 40.8119973, "lon": -73.9661873 }, + { "lat": 40.8121529, "lon": -73.9660671 }, + { "lat": 40.8123283, "lon": -73.9659294 }, + { "lat": 40.8124877, "lon": -73.9658017 }, + { "lat": 40.8126270, "lon": -73.9656894 }, + { "lat": 40.8128113, "lon": -73.9655427 }, + { "lat": 40.8129617, "lon": -73.9654226 }, + { "lat": 40.8131321, "lon": -73.9652889 }, + { "lat": 40.8132796, "lon": -73.9651780 }, + { "lat": 40.8134413, "lon": -73.9650588 }, + { "lat": 40.8136048, "lon": -73.9649497 }, + { "lat": 40.8137570, "lon": -73.9648488 }, + { "lat": 40.8139333, "lon": -73.9647400 }, + { "lat": 40.8141016, "lon": -73.9646383 }, + { "lat": 40.8142683, "lon": -73.9645438 }, + { "lat": 40.8144401, "lon": -73.9644483 }, + { "lat": 40.8146106, "lon": -73.9643571 }, + { "lat": 40.8147838, "lon": -73.9642668 }, + { "lat": 40.8149507, "lon": -73.9641804 }, + { "lat": 40.8151173, "lon": -73.9640892 }, + { "lat": 40.8152670, "lon": -73.9640011 }, + { "lat": 40.8154560, "lon": -73.9638753 }, + { "lat": 40.8155965, "lon": -73.9637748 }, + { "lat": 40.8157503, "lon": -73.9636595 }, + { "lat": 40.8159214, "lon": -73.9635258 }, + { "lat": 40.8160894, "lon": -73.9633893 }, + { "lat": 40.8162384, "lon": -73.9632626 }, + { "lat": 40.8163920, "lon": -73.9631305 }, + { "lat": 40.8165447, "lon": -73.9629918 }, + { "lat": 40.8167034, "lon": -73.9628460 }, + { "lat": 40.8168426, "lon": -73.9627073 }, + { "lat": 40.8169929, "lon": -73.9625552 }, + { "lat": 40.8171395, "lon": -73.9624025 }, + { "lat": 40.8178287, "lon": -73.9616777 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 968398607, + "bounds": { + "minlat": 40.8057387, + "minlon": -73.9406432, + "maxlat": 40.8095324, + "maxlon": -73.9378846 + }, + "nodes": [ + 42444453, + 10170762175, + 11255278311, + 10170762184, + 42434122, + 10170762183, + 10171956578, + 42446177, + 10171956579, + 4970669710, + 10171956587, + 42446182, + 10171956586, + 10171956594, + 2799368116, + 10171956595, + 10168169598, + 42446184, + 10168169594, + 10168169620, + 42446187 + ], + "geometry": [ + { "lat": 40.8057387, "lon": -73.9406432 }, + { "lat": 40.8058384, "lon": -73.9405725 }, + { "lat": 40.8059862, "lon": -73.9404668 }, + { "lat": 40.8063581, "lon": -73.9402008 }, + { "lat": 40.8064085, "lon": -73.9401645 }, + { "lat": 40.8064760, "lon": -73.9401151 }, + { "lat": 40.8069833, "lon": -73.9397430 }, + { "lat": 40.8070341, "lon": -73.9397061 }, + { "lat": 40.8070987, "lon": -73.9396587 }, + { "lat": 40.8072681, "lon": -73.9395337 }, + { "lat": 40.8076045, "lon": -73.9392905 }, + { "lat": 40.8076491, "lon": -73.9392584 }, + { "lat": 40.8077193, "lon": -73.9392074 }, + { "lat": 40.8082279, "lon": -73.9388379 }, + { "lat": 40.8082841, "lon": -73.9387971 }, + { "lat": 40.8083410, "lon": -73.9387555 }, + { "lat": 40.8088556, "lon": -73.9383799 }, + { "lat": 40.8089094, "lon": -73.9383407 }, + { "lat": 40.8089702, "lon": -73.9382961 }, + { "lat": 40.8094759, "lon": -73.9379266 }, + { "lat": 40.8095324, "lon": -73.9378846 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 968398608, + "bounds": { + "minlat": 40.8107354, + "minlon": -73.9369938, + "maxlat": 40.8115063, + "maxlon": -73.9364361 + }, + "nodes": [ + 7616585422, + 9559424865, + 9559424843, + 11886502733, + 6680394957, + 7616585434 + ], + "geometry": [ + { "lat": 40.8107354, "lon": -73.9369938 }, + { "lat": 40.8108226, "lon": -73.9369314 }, + { "lat": 40.8110748, "lon": -73.9367493 }, + { "lat": 40.8113652, "lon": -73.9365373 }, + { "lat": 40.8114214, "lon": -73.9364963 }, + { "lat": 40.8115063, "lon": -73.9364361 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 968399414, + "bounds": { + "minlat": 40.8325805, + "minlon": -73.9502612, + "maxlat": 40.8333847, + "maxlon": -73.9500240 + }, + "nodes": [ + 587934347, + 595352913 + ], + "geometry": [ + { "lat": 40.8325805, "lon": -73.9502612 }, + { "lat": 40.8333847, "lon": -73.9500240 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 968401193, + "bounds": { + "minlat": 40.7902846, + "minlon": -73.9395853, + "maxlat": 40.7909050, + "maxlon": -73.9391320 + }, + "nodes": [ + 7474626847, + 6216541854, + 7777426415, + 42436653 + ], + "geometry": [ + { "lat": 40.7902846, "lon": -73.9395853 }, + { "lat": 40.7903890, "lon": -73.9395088 }, + { "lat": 40.7908301, "lon": -73.9391868 }, + { "lat": 40.7909050, "lon": -73.9391320 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968401194, + "bounds": { + "minlat": 40.7909050, + "minlon": -73.9391320, + "maxlat": 40.7911013, + "maxlon": -73.9389920 + }, + "nodes": [ + 42436653, + 7777426444, + 3514651030, + 4207779532 + ], + "geometry": [ + { "lat": 40.7909050, "lon": -73.9391320 }, + { "lat": 40.7909972, "lon": -73.9390640 }, + { "lat": 40.7910383, "lon": -73.9390334 }, + { "lat": 40.7911013, "lon": -73.9389920 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968403921, + "bounds": { + "minlat": 40.7833636, + "minlon": -73.9436401, + "maxlat": 40.7845470, + "maxlon": -73.9418238 + }, + "nodes": [ + 3631837584, + 42450618, + 42450614, + 9178958210, + 42450611, + 9178958209, + 589929432, + 9178958208, + 589929433, + 9178958207, + 3785522880, + 9178958206, + 589929434, + 589929435 + ], + "geometry": [ + { "lat": 40.7845470, "lon": -73.9418238 }, + { "lat": 40.7843068, "lon": -73.9422943 }, + { "lat": 40.7841857, "lon": -73.9425274 }, + { "lat": 40.7841241, "lon": -73.9426457 }, + { "lat": 40.7840608, "lon": -73.9427604 }, + { "lat": 40.7839946, "lon": -73.9428746 }, + { "lat": 40.7839252, "lon": -73.9429829 }, + { "lat": 40.7838523, "lon": -73.9430921 }, + { "lat": 40.7837769, "lon": -73.9431949 }, + { "lat": 40.7836975, "lon": -73.9432953 }, + { "lat": 40.7836166, "lon": -73.9433885 }, + { "lat": 40.7835332, "lon": -73.9434796 }, + { "lat": 40.7834456, "lon": -73.9435646 }, + { "lat": 40.7833636, "lon": -73.9436401 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 968418375, + "bounds": { + "minlat": 40.7064590, + "minlon": -74.0149227, + "maxlat": 40.7072020, + "maxlon": -74.0145723 + }, + "nodes": [ + 5209071190, + 2012177067, + 4149936230, + 4149936239, + 10315959487, + 4149936227, + 246909447, + 4149936238, + 4149748664, + 4149748665, + 246909448, + 4149748674, + 2012177077, + 4149748670, + 246909449, + 4149748675, + 3574612293 + ], + "geometry": [ + { "lat": 40.7064590, "lon": -74.0145755 }, + { "lat": 40.7065004, "lon": -74.0145723 }, + { "lat": 40.7065561, "lon": -74.0145749 }, + { "lat": 40.7066077, "lon": -74.0145811 }, + { "lat": 40.7066354, "lon": -74.0145859 }, + { "lat": 40.7066596, "lon": -74.0145900 }, + { "lat": 40.7067112, "lon": -74.0146018 }, + { "lat": 40.7067610, "lon": -74.0146183 }, + { "lat": 40.7068080, "lon": -74.0146350 }, + { "lat": 40.7068606, "lon": -74.0146575 }, + { "lat": 40.7069087, "lon": -74.0146822 }, + { "lat": 40.7069540, "lon": -74.0147087 }, + { "lat": 40.7070017, "lon": -74.0147414 }, + { "lat": 40.7070500, "lon": -74.0147742 }, + { "lat": 40.7070895, "lon": -74.0148106 }, + { "lat": 40.7071418, "lon": -74.0148585 }, + { "lat": 40.7072020, "lon": -74.0149227 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "FDR Drive;East Side;Staten Island Ferry|FDR Drive;East Side;Staten Island Ferry|West Street;Holland Tunnel;Lincoln Tunnel;George Washington Bridge|West Street;Holland Tunnel;Lincoln Tunnel;George Washington Bridge", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxspeed": "25 mph", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "left|left|right|right", + "unsigned_ref": "I 478" + } +}, +{ + "type": "way", + "id": 968427207, + "bounds": { + "minlat": 40.7921784, + "minlon": -73.9382001, + "maxlat": 40.7923340, + "maxlon": -73.9380804 + }, + "nodes": [ + 42434389, + 7924346962, + 4207945899 + ], + "geometry": [ + { "lat": 40.7921784, "lon": -73.9382001 }, + { "lat": 40.7922541, "lon": -73.9381435 }, + { "lat": 40.7923340, "lon": -73.9380804 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 968428932, + "bounds": { + "minlat": 40.7601965, + "minlon": -74.0027594, + "maxlat": 40.7606551, + "maxlon": -74.0024285 + }, + "nodes": [ + 247084442, + 12154605948, + 247085079 + ], + "geometry": [ + { "lat": 40.7606551, "lon": -74.0024285 }, + { "lat": 40.7603641, "lon": -74.0026385 }, + { "lat": 40.7601965, "lon": -74.0027594 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "yes", + "sidewalk:right": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 968513228, + "bounds": { + "minlat": 40.7597283, + "minlon": -73.9916836, + "maxlat": 40.7598812, + "maxlon": -73.9915684 + }, + "nodes": [ + 8960303403, + 10168047521, + 42443561 + ], + "geometry": [ + { "lat": 40.7598812, "lon": -73.9915684 }, + { "lat": 40.7597865, "lon": -73.9916398 }, + { "lat": 40.7597283, "lon": -73.9916836 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 968513229, + "bounds": { + "minlat": 40.7591038, + "minlon": -73.9921385, + "maxlat": 40.7597283, + "maxlon": -73.9916836 + }, + "nodes": [ + 42443561, + 10168047525, + 10168047531, + 42445011 + ], + "geometry": [ + { "lat": 40.7597283, "lon": -73.9916836 }, + { "lat": 40.7596727, "lon": -73.9917241 }, + { "lat": 40.7591653, "lon": -73.9920937 }, + { "lat": 40.7591038, "lon": -73.9921385 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 968513230, + "bounds": { + "minlat": 40.7603553, + "minlon": -73.9946460, + "maxlat": 40.7618010, + "maxlon": -73.9912267 + }, + "nodes": [ + 42432703, + 10168047580, + 10168047550, + 42432706, + 10168047546, + 593921856 + ], + "geometry": [ + { "lat": 40.7603553, "lon": -73.9912267 }, + { "lat": 40.7604105, "lon": -73.9913577 }, + { "lat": 40.7615025, "lon": -73.9939522 }, + { "lat": 40.7615516, "lon": -73.9940688 }, + { "lat": 40.7616109, "lon": -73.9942065 }, + { "lat": 40.7618010, "lon": -73.9946460 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 968513231, + "bounds": { + "minlat": 40.7598812, + "minlon": -73.9915684, + "maxlat": 40.7603553, + "maxlon": -73.9912267 + }, + "nodes": [ + 42432703, + 10168047578, + 8960303403 + ], + "geometry": [ + { "lat": 40.7603553, "lon": -73.9912267 }, + { "lat": 40.7603020, "lon": -73.9912651 }, + { "lat": 40.7598812, "lon": -73.9915684 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 968521513, + "bounds": { + "minlat": 40.7162003, + "minlon": -73.9875301, + "maxlat": 40.7171547, + "maxlon": -73.9870412 + }, + "nodes": [ + 42432095, + 4646776167, + 8231896476, + 5804835261, + 42447428 + ], + "geometry": [ + { "lat": 40.7171547, "lon": -73.9870412 }, + { "lat": 40.7170957, "lon": -73.9870715 }, + { "lat": 40.7170000, "lon": -73.9871206 }, + { "lat": 40.7162967, "lon": -73.9874811 }, + { "lat": 40.7162003, "lon": -73.9875301 } + ], + "tags": { + "fixme": "check surface", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Suffolk Street", + "name:etymology:wikidata": "Q23111", + "name:ko": "서퍽 스트리트", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 968541922, + "bounds": { + "minlat": 40.7154464, + "minlon": -73.9357424, + "maxlat": 40.7156050, + "maxlon": -73.9351165 + }, + "nodes": [ + 8960594753, + 8960594755, + 8960594754 + ], + "geometry": [ + { "lat": 40.7154464, "lon": -73.9357424 }, + { "lat": 40.7154675, "lon": -73.9356540 }, + { "lat": 40.7156050, "lon": -73.9351165 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 968541923, + "bounds": { + "minlat": 40.7149976, + "minlon": -73.9355270, + "maxlat": 40.7151776, + "maxlon": -73.9348097 + }, + "nodes": [ + 8960594756, + 8960594758, + 8960594757 + ], + "geometry": [ + { "lat": 40.7149976, "lon": -73.9355270 }, + { "lat": 40.7150168, "lon": -73.9354506 }, + { "lat": 40.7151776, "lon": -73.9348097 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 968706245, + "bounds": { + "minlat": 40.7349832, + "minlon": -73.9527648, + "maxlat": 40.7367336, + "maxlon": -73.9524468 + }, + "nodes": [ + 8962299835, + 9996409542, + 9996409543, + 277046409, + 597261843 + ], + "geometry": [ + { "lat": 40.7349832, "lon": -73.9524468 }, + { "lat": 40.7352201, "lon": -73.9525062 }, + { "lat": 40.7353279, "lon": -73.9525308 }, + { "lat": 40.7354416, "lon": -73.9525534 }, + { "lat": 40.7367336, "lon": -73.9527648 } + ], + "tags": { + "bicycle": "no", + "cycleway:both": "no", + "foot": "no", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt", + "tiger:cfcc": "A49", + "tiger:county": "Kings, NY", + "tiger:name_base": "Mc Guinness", + "tiger:name_base_1": "Pulaski", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Brg", + "tiger:reviewed": "no", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 968737540, + "bounds": { + "minlat": 40.7230210, + "minlon": -73.9988120, + "maxlat": 40.7242350, + "maxlon": -73.9977850 + }, + "nodes": [ + 42428444, + 8231906895, + 4755831435, + 3573482110, + 42428441 + ], + "geometry": [ + { "lat": 40.7242350, "lon": -73.9977850 }, + { "lat": 40.7241989, "lon": -73.9978158 }, + { "lat": 40.7239729, "lon": -73.9980067 }, + { "lat": 40.7230679, "lon": -73.9987723 }, + { "lat": 40.7230210, "lon": -73.9988120 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 968737541, + "bounds": { + "minlat": 40.7242350, + "minlon": -74.0009057, + "maxlat": 40.7257774, + "maxlon": -73.9977850 + }, + "nodes": [ + 42428444, + 8231906896, + 8231906901, + 42449576, + 8231906904, + 8231934413, + 42456197, + 8231934416, + 8231934409, + 42433578, + 8231934412, + 1927715353, + 8764758192, + 8231934405, + 42454423 + ], + "geometry": [ + { "lat": 40.7242350, "lon": -73.9977850 }, + { "lat": 40.7242872, "lon": -73.9978900 }, + { "lat": 40.7246082, "lon": -73.9985370 }, + { "lat": 40.7246320, "lon": -73.9985850 }, + { "lat": 40.7246637, "lon": -73.9986493 }, + { "lat": 40.7249795, "lon": -73.9992874 }, + { "lat": 40.7250080, "lon": -73.9993450 }, + { "lat": 40.7250406, "lon": -73.9994108 }, + { "lat": 40.7253533, "lon": -74.0000431 }, + { "lat": 40.7253820, "lon": -74.0001010 }, + { "lat": 40.7254126, "lon": -74.0001636 }, + { "lat": 40.7256397, "lon": -74.0006264 }, + { "lat": 40.7257194, "lon": -74.0007889 }, + { "lat": 40.7257327, "lon": -74.0008172 }, + { "lat": 40.7257774, "lon": -74.0009057 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Prince Street", + "name:ar": "شارع الامير", + "name:en": "Prince Street", + "name:ko": "프린스 스트리트", + "name:ru": "Принс-стрит", + "oneway": "yes", + "parking:lane:right": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 968737542, + "bounds": { + "minlat": 40.7217942, + "minlon": -73.9998623, + "maxlat": 40.7230210, + "maxlon": -73.9988120 + }, + "nodes": [ + 42428441, + 3573482108, + 4755831437, + 12187433926, + 7741546977, + 42428438 + ], + "geometry": [ + { "lat": 40.7230210, "lon": -73.9988120 }, + { "lat": 40.7229804, "lon": -73.9988463 }, + { "lat": 40.7227353, "lon": -73.9990540 }, + { "lat": 40.7219048, "lon": -73.9997653 }, + { "lat": 40.7218569, "lon": -73.9998074 }, + { "lat": 40.7217942, "lon": -73.9998623 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 968737543, + "bounds": { + "minlat": 40.7217942, + "minlon": -74.0029951, + "maxlat": 40.7233168, + "maxlon": -73.9998623 + }, + "nodes": [ + 42428438, + 7741546978, + 12187433925, + 12187433928, + 8231922398, + 42432156, + 8231922400, + 12187433929, + 8231922393, + 42432152, + 8231922395, + 12187433932, + 8231922388, + 42432148, + 8231922391, + 12187433930, + 8231885409, + 12187433934, + 12187433935, + 12187433940, + 42432142 + ], + "geometry": [ + { "lat": 40.7217942, "lon": -73.9998623 }, + { "lat": 40.7218415, "lon": -73.9999528 }, + { "lat": 40.7218560, "lon": -73.9999806 }, + { "lat": 40.7221395, "lon": -74.0005533 }, + { "lat": 40.7221666, "lon": -74.0006080 }, + { "lat": 40.7221954, "lon": -74.0006646 }, + { "lat": 40.7222213, "lon": -74.0007180 }, + { "lat": 40.7225152, "lon": -74.0013158 }, + { "lat": 40.7225352, "lon": -74.0013565 }, + { "lat": 40.7225657, "lon": -74.0014195 }, + { "lat": 40.7225945, "lon": -74.0014771 }, + { "lat": 40.7228839, "lon": -74.0020653 }, + { "lat": 40.7229067, "lon": -74.0021116 }, + { "lat": 40.7229396, "lon": -74.0021789 }, + { "lat": 40.7229649, "lon": -74.0022300 }, + { "lat": 40.7232627, "lon": -74.0028353 }, + { "lat": 40.7232839, "lon": -74.0028802 }, + { "lat": 40.7232928, "lon": -74.0029023 }, + { "lat": 40.7233034, "lon": -74.0029318 }, + { "lat": 40.7233110, "lon": -74.0029612 }, + { "lat": 40.7233168, "lon": -74.0029951 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 968737544, + "bounds": { + "minlat": 40.7208456, + "minlon": -74.0006622, + "maxlat": 40.7217942, + "maxlon": -73.9998623 + }, + "nodes": [ + 42428438, + 7741546979, + 4755831440, + 8231922364, + 42428436 + ], + "geometry": [ + { "lat": 40.7217942, "lon": -73.9998623 }, + { "lat": 40.7217278, "lon": -73.9999205 }, + { "lat": 40.7216111, "lon": -74.0000212 }, + { "lat": 40.7209046, "lon": -74.0006132 }, + { "lat": 40.7208456, "lon": -74.0006622 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 968740578, + "bounds": { + "minlat": 40.8108543, + "minlon": -73.9390289, + "maxlat": 40.8113932, + "maxlon": -73.9386492 + }, + "nodes": [ + 8962620263, + 10168169642, + 42429530 + ], + "geometry": [ + { "lat": 40.8113932, "lon": -73.9386492 }, + { "lat": 40.8109495, "lon": -73.9389619 }, + { "lat": 40.8108543, "lon": -73.9390289 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:lane:width": "13'", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 968806228, + "bounds": { + "minlat": 40.8096148, + "minlon": -73.9477655, + "maxlat": 40.8097456, + "maxlon": -73.9476654 + }, + "nodes": [ + 2141026501, + 11875873072, + 9682605807 + ], + "geometry": [ + { "lat": 40.8096148, "lon": -73.9477655 }, + { "lat": 40.8096789, "lon": -73.9477165 }, + { "lat": 40.8097456, "lon": -73.9476654 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 968810076, + "bounds": { + "minlat": 40.7002740, + "minlon": -73.9621464, + "maxlat": 40.7009313, + "maxlon": -73.9618636 + }, + "nodes": [ + 42490972, + 6245943461, + 42469400 + ], + "geometry": [ + { "lat": 40.7009313, "lon": -73.9618636 }, + { "lat": 40.7003442, "lon": -73.9621248 }, + { "lat": 40.7002740, "lon": -73.9621464 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Williamsburg Street West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Williamsburg", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "St", + "turn:lanes": "left;through|through" + } +}, +{ + "type": "way", + "id": 968943119, + "bounds": { + "minlat": 40.7062557, + "minlon": -73.9486299, + "maxlat": 40.7063017, + "maxlon": -73.9481221 + }, + "nodes": [ + 5481854368, + 5481854366, + 9752593917, + 5481854367 + ], + "geometry": [ + { "lat": 40.7062557, "lon": -73.9486299 }, + { "lat": 40.7062770, "lon": -73.9483913 }, + { "lat": 40.7062898, "lon": -73.9482518 }, + { "lat": 40.7063017, "lon": -73.9481221 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 968943120, + "bounds": { + "minlat": 40.7058404, + "minlon": -73.9485622, + "maxlat": 40.7058877, + "maxlon": -73.9480528 + }, + "nodes": [ + 5481854370, + 9752593916, + 6870964704, + 5481854365, + 5481854369 + ], + "geometry": [ + { "lat": 40.7058877, "lon": -73.9480528 }, + { "lat": 40.7058758, "lon": -73.9481794 }, + { "lat": 40.7058732, "lon": -73.9482068 }, + { "lat": 40.7058616, "lon": -73.9483234 }, + { "lat": 40.7058404, "lon": -73.9485622 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 969446260, + "bounds": { + "minlat": 40.8278635, + "minlon": -73.9804516, + "maxlat": 40.8279276, + "maxlon": -73.9797594 + }, + "nodes": [ + 7533716666, + 8971240693 + ], + "geometry": [ + { "lat": 40.8278635, "lon": -73.9804516 }, + { "lat": 40.8279276, "lon": -73.9797594 } + ], + "tags": { + "covered": "no", + "highway": "service", + "incline": "down", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 969446261, + "bounds": { + "minlat": 40.8277928, + "minlon": -73.9804390, + "maxlat": 40.8278383, + "maxlon": -73.9799015 + }, + "nodes": [ + 8971240695, + 8971240694 + ], + "geometry": [ + { "lat": 40.8278383, "lon": -73.9799015 }, + { "lat": 40.8277928, "lon": -73.9804390 } + ], + "tags": { + "covered": "no", + "highway": "service", + "incline": "up", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 969446262, + "bounds": { + "minlat": 40.8271034, + "minlon": -73.9808645, + "maxlat": 40.8273887, + "maxlon": -73.9808300 + }, + "nodes": [ + 8374501213, + 8971240698 + ], + "geometry": [ + { "lat": 40.8273887, "lon": -73.9808645 }, + { "lat": 40.8271034, "lon": -73.9808300 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 969446263, + "bounds": { + "minlat": 40.8271239, + "minlon": -73.9806499, + "maxlat": 40.8274249, + "maxlon": -73.9805922 + }, + "nodes": [ + 8971240699, + 8971240700 + ], + "geometry": [ + { "lat": 40.8274249, "lon": -73.9806499 }, + { "lat": 40.8271239, "lon": -73.9805922 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 969446264, + "bounds": { + "minlat": 40.8274249, + "minlon": -73.9806874, + "maxlat": 40.8276703, + "maxlon": -73.9806499 + }, + "nodes": [ + 8971240699, + 8971240701 + ], + "geometry": [ + { "lat": 40.8274249, "lon": -73.9806499 }, + { "lat": 40.8276703, "lon": -73.9806874 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 969446266, + "bounds": { + "minlat": 40.8280260, + "minlon": -73.9801956, + "maxlat": 40.8281751, + "maxlon": -73.9801775 + }, + "nodes": [ + 5691967822, + 5691967824 + ], + "geometry": [ + { "lat": 40.8280260, "lon": -73.9801775 }, + { "lat": 40.8281751, "lon": -73.9801956 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 969448823, + "bounds": { + "minlat": 40.8263960, + "minlon": -73.9787506, + "maxlat": 40.8265752, + "maxlon": -73.9784944 + }, + "nodes": [ + 1854444506, + 8971272825, + 8971272826, + 8971272827, + 8971272828, + 8971272829, + 8971272830, + 8971272831, + 8971272832 + ], + "geometry": [ + { "lat": 40.8263960, "lon": -73.9787391 }, + { "lat": 40.8264747, "lon": -73.9787506 }, + { "lat": 40.8265113, "lon": -73.9787452 }, + { "lat": 40.8265356, "lon": -73.9787251 }, + { "lat": 40.8265529, "lon": -73.9786916 }, + { "lat": 40.8265610, "lon": -73.9786607 }, + { "lat": 40.8265651, "lon": -73.9786219 }, + { "lat": 40.8265681, "lon": -73.9785763 }, + { "lat": 40.8265752, "lon": -73.9784944 } + ], + "tags": { + "covered": "no", + "highway": "service", + "incline": "down", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 969448824, + "bounds": { + "minlat": 40.8264245, + "minlon": -73.9784561, + "maxlat": 40.8266568, + "maxlon": -73.9780758 + }, + "nodes": [ + 1854444518, + 1854444512, + 1854444480, + 1854444508, + 8971272833, + 1854444502, + 8971272834, + 1854444482, + 1854444513, + 1854444518 + ], + "geometry": [ + { "lat": 40.8264265, "lon": -73.9784561 }, + { "lat": 40.8264245, "lon": -73.9782456 }, + { "lat": 40.8264793, "lon": -73.9781517 }, + { "lat": 40.8265686, "lon": -73.9780758 }, + { "lat": 40.8266203, "lon": -73.9780802 }, + { "lat": 40.8266538, "lon": -73.9781303 }, + { "lat": 40.8266568, "lon": -73.9781759 }, + { "lat": 40.8266457, "lon": -73.9782188 }, + { "lat": 40.8265503, "lon": -73.9783207 }, + { "lat": 40.8264265, "lon": -73.9784561 } + ], + "tags": { + "covered": "no", + "highway": "service", + "name": "Winston Drive", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Winston", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 969448825, + "bounds": { + "minlat": 40.8266902, + "minlon": -73.9804226, + "maxlat": 40.8268252, + "maxlon": -73.9801903 + }, + "nodes": [ + 7533716668, + 7533716669 + ], + "geometry": [ + { "lat": 40.8266902, "lon": -73.9801903 }, + { "lat": 40.8268252, "lon": -73.9804226 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 969448826, + "bounds": { + "minlat": 40.8290309, + "minlon": -73.9799580, + "maxlat": 40.8290859, + "maxlon": -73.9799046 + }, + "nodes": [ + 5691967838, + 8971272837 + ], + "geometry": [ + { "lat": 40.8290309, "lon": -73.9799580 }, + { "lat": 40.8290859, "lon": -73.9799046 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 969683894, + "bounds": { + "minlat": 40.8457241, + "minlon": -74.0054732, + "maxlat": 40.8460421, + "maxlon": -74.0051632 + }, + "nodes": [ + 8973299142, + 8973299143, + 9915262029, + 8973299144, + 8973299145, + 8973299146 + ], + "geometry": [ + { "lat": 40.8460421, "lon": -74.0053818 }, + { "lat": 40.8459334, "lon": -74.0054676 }, + { "lat": 40.8459170, "lon": -74.0054732 }, + { "lat": 40.8459002, "lon": -74.0054691 }, + { "lat": 40.8458813, "lon": -74.0054406 }, + { "lat": 40.8457241, "lon": -74.0051632 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 970237587, + "bounds": { + "minlat": 40.8311333, + "minlon": -73.9827359, + "maxlat": 40.8312975, + "maxlon": -73.9827035 + }, + "nodes": [ + 2814617299, + 103282024 + ], + "geometry": [ + { "lat": 40.8312975, "lon": -73.9827035 }, + { "lat": 40.8311333, "lon": -73.9827359 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Abbott Boulevard", + "oneway": "no", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 970247726, + "bounds": { + "minlat": 40.8415878, + "minlon": -73.9744531, + "maxlat": 40.8416515, + "maxlon": -73.9743813 + }, + "nodes": [ + 5449351814, + 5340687622 + ], + "geometry": [ + { "lat": 40.8415878, "lon": -73.9744531 }, + { "lat": 40.8416515, "lon": -73.9743813 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "4", + "name": "Palisade Avenue", + "ref": "NJ 67", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 970247727, + "bounds": { + "minlat": 40.8416515, + "minlon": -73.9743813, + "maxlat": 40.8456982, + "maxlon": -73.9713436 + }, + "nodes": [ + 5340687622, + 103235768, + 5449347316, + 5449347313, + 5449350822, + 5449350823, + 5449347314, + 103235392, + 103235769, + 103235770, + 103235771, + 103186444, + 5449346900, + 103182286, + 5449346896, + 7472864424, + 7483134209, + 6901994432, + 103232116, + 103235772, + 13523703023, + 103230886, + 13523703025, + 5449315448, + 103235773, + 5449315453, + 103235774, + 5449315439, + 103235775 + ], + "geometry": [ + { "lat": 40.8416515, "lon": -73.9743813 }, + { "lat": 40.8418307, "lon": -73.9741888 }, + { "lat": 40.8419858, "lon": -73.9740166 }, + { "lat": 40.8420962, "lon": -73.9739054 }, + { "lat": 40.8421391, "lon": -73.9738635 }, + { "lat": 40.8421884, "lon": -73.9738154 }, + { "lat": 40.8422706, "lon": -73.9737360 }, + { "lat": 40.8423811, "lon": -73.9736366 }, + { "lat": 40.8425475, "lon": -73.9734989 }, + { "lat": 40.8426879, "lon": -73.9733908 }, + { "lat": 40.8428358, "lon": -73.9732849 }, + { "lat": 40.8429805, "lon": -73.9731845 }, + { "lat": 40.8433424, "lon": -73.9729773 }, + { "lat": 40.8436270, "lon": -73.9728210 }, + { "lat": 40.8438528, "lon": -73.9726965 }, + { "lat": 40.8438888, "lon": -73.9726766 }, + { "lat": 40.8440549, "lon": -73.9725850 }, + { "lat": 40.8442485, "lon": -73.9724782 }, + { "lat": 40.8442670, "lon": -73.9724680 }, + { "lat": 40.8444814, "lon": -73.9723127 }, + { "lat": 40.8448179, "lon": -73.9720718 }, + { "lat": 40.8448657, "lon": -73.9720376 }, + { "lat": 40.8449104, "lon": -73.9720001 }, + { "lat": 40.8451882, "lon": -73.9717664 }, + { "lat": 40.8452162, "lon": -73.9717429 }, + { "lat": 40.8453841, "lon": -73.9716037 }, + { "lat": 40.8454455, "lon": -73.9715528 }, + { "lat": 40.8456344, "lon": -73.9713943 }, + { "lat": 40.8456982, "lon": -73.9713436 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "4", + "name": "Palisade Avenue", + "ref": "NJ 67", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 970251285, + "bounds": { + "minlat": 40.8307628, + "minlon": -73.9787624, + "maxlat": 40.8308590, + "maxlon": -73.9787287 + }, + "nodes": [ + 7494742116, + 7494742115 + ], + "geometry": [ + { "lat": 40.8307628, "lon": -73.9787624 }, + { "lat": 40.8308590, "lon": -73.9787287 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lit": "yes", + "name": "Kensington Drive", + "oneway": "no", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 970628513, + "bounds": { + "minlat": 40.7197383, + "minlon": -73.9899686, + "maxlat": 40.7198259, + "maxlon": -73.9899253 + }, + "nodes": [ + 8983103712, + 9953303865 + ], + "geometry": [ + { "lat": 40.7197383, "lon": -73.9899686 }, + { "lat": 40.7198259, "lon": -73.9899253 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 970628514, + "bounds": { + "minlat": 40.7201605, + "minlon": -73.9897602, + "maxlat": 40.7204582, + "maxlon": -73.9896132 + }, + "nodes": [ + 8983103713, + 3314293712, + 42437108 + ], + "geometry": [ + { "lat": 40.7201605, "lon": -73.9897602 }, + { "lat": 40.7204170, "lon": -73.9896335 }, + { "lat": 40.7204582, "lon": -73.9896132 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 970704071, + "bounds": { + "minlat": 40.7394366, + "minlon": -74.0043119, + "maxlat": 40.7394476, + "maxlon": -74.0039828 + }, + "nodes": [ + 11728146527, + 8983894794 + ], + "geometry": [ + { "lat": 40.7394476, "lon": -74.0039828 }, + { "lat": 40.7394366, "lon": -74.0043119 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Gansevoort Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 970704072, + "bounds": { + "minlat": 40.7394038, + "minlon": -74.0064406, + "maxlat": 40.7394127, + "maxlon": -74.0054071 + }, + "nodes": [ + 42436431, + 8262308643, + 42431149, + 12162436981, + 8262308622, + 12162436970 + ], + "geometry": [ + { "lat": 40.7394127, "lon": -74.0054071 }, + { "lat": 40.7394122, "lon": -74.0055102 }, + { "lat": 40.7394110, "lon": -74.0057758 }, + { "lat": 40.7394047, "lon": -74.0063264 }, + { "lat": 40.7394042, "lon": -74.0063720 }, + { "lat": 40.7394038, "lon": -74.0064406 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:left:surface": "paving_stones", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (We-Fr 14:00-22:00; Sa-Su 12:00-22:00))", + "name": "Gansevoort Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 970750137, + "bounds": { + "minlat": 40.7398722, + "minlon": -73.9895636, + "maxlat": 40.7403752, + "maxlon": -73.9894536 + }, + "nodes": [ + 8264701247, + 10179028038, + 10179028037, + 9470120000, + 12181309683, + 3857400388, + 10179045295, + 42428192 + ], + "geometry": [ + { "lat": 40.7403752, "lon": -73.9895193 }, + { "lat": 40.7403440, "lon": -73.9895209 }, + { "lat": 40.7402439, "lon": -73.9894561 }, + { "lat": 40.7402266, "lon": -73.9894536 }, + { "lat": 40.7399753, "lon": -73.9895334 }, + { "lat": 40.7399198, "lon": -73.9895510 }, + { "lat": 40.7398923, "lon": -73.9895582 }, + { "lat": 40.7398722, "lon": -73.9895636 } + ], + "tags": { + "cycleway:right": "separate", + "foot": "designated", + "hgv": "local", + "highway": "living_street", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "traffic_calming": "chicane", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 970973310, + "bounds": { + "minlat": 40.8790235, + "minlon": -74.0082157, + "maxlat": 40.8790686, + "maxlon": -74.0081903 + }, + "nodes": [ + 8986320032, + 6592348882 + ], + "geometry": [ + { "lat": 40.8790235, "lon": -74.0082157 }, + { "lat": 40.8790686, "lon": -74.0081903 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 970973311, + "bounds": { + "minlat": 40.8790190, + "minlon": -74.0082183, + "maxlat": 40.8790235, + "maxlon": -74.0082157 + }, + "nodes": [ + 4469438833, + 8986320032 + ], + "geometry": [ + { "lat": 40.8790190, "lon": -74.0082183 }, + { "lat": 40.8790235, "lon": -74.0082157 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 970973312, + "bounds": { + "minlat": 40.8787441, + "minlon": -74.0080926, + "maxlat": 40.8789821, + "maxlon": -74.0072890 + }, + "nodes": [ + 8986320033, + 475154858, + 559864640, + 103216550 + ], + "geometry": [ + { "lat": 40.8789821, "lon": -74.0080926 }, + { "lat": 40.8789751, "lon": -74.0080679 }, + { "lat": 40.8789190, "lon": -74.0079008 }, + { "lat": 40.8787441, "lon": -74.0072890 } + ], + "tags": { + "highway": "residential", + "name": "Fycke Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fycke", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 970973313, + "bounds": { + "minlat": 40.8789821, + "minlon": -74.0081691, + "maxlat": 40.8790038, + "maxlon": -74.0080926 + }, + "nodes": [ + 103216549, + 8986320033 + ], + "geometry": [ + { "lat": 40.8790038, "lon": -74.0081691 }, + { "lat": 40.8789821, "lon": -74.0080926 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Fycke Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fycke", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 970974108, + "bounds": { + "minlat": 40.8801512, + "minlon": -73.9950604, + "maxlat": 40.8807549, + "maxlon": -73.9944749 + }, + "nodes": [ + 7432141897, + 8986300014, + 8986300015, + 8986300016, + 8986327417, + 8986327418, + 8986327419, + 8986327420, + 8986327421, + 8986327422 + ], + "geometry": [ + { "lat": 40.8807549, "lon": -73.9950604 }, + { "lat": 40.8807045, "lon": -73.9950360 }, + { "lat": 40.8806158, "lon": -73.9950290 }, + { "lat": 40.8805430, "lon": -73.9949938 }, + { "lat": 40.8804915, "lon": -73.9948999 }, + { "lat": 40.8804382, "lon": -73.9947707 }, + { "lat": 40.8803619, "lon": -73.9946040 }, + { "lat": 40.8802998, "lon": -73.9945007 }, + { "lat": 40.8802412, "lon": -73.9944749 }, + { "lat": 40.8801512, "lon": -73.9944845 } + ], + "tags": { + "golf": "cartpath", + "golf_cart": "designated", + "highway": "service" + } +}, +{ + "type": "way", + "id": 971665365, + "bounds": { + "minlat": 40.7646295, + "minlon": -73.9819059, + "maxlat": 40.7646904, + "maxlon": -73.9818609 + }, + "nodes": [ + 8993169376, + 10173346256, + 8993169377 + ], + "geometry": [ + { "lat": 40.7646904, "lon": -73.9818609 }, + { "lat": 40.7646733, "lon": -73.9818735 }, + { "lat": 40.7646295, "lon": -73.9819059 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 972017223, + "bounds": { + "minlat": 40.7728341, + "minlon": -73.9517381, + "maxlat": 40.7734598, + "maxlon": -73.9512565 + }, + "nodes": [ + 8996371851, + 8996371854, + 8996371853, + 8996371852 + ], + "geometry": [ + { "lat": 40.7728341, "lon": -73.9517381 }, + { "lat": 40.7728940, "lon": -73.9516920 }, + { "lat": 40.7734123, "lon": -73.9512931 }, + { "lat": 40.7734598, "lon": -73.9512565 } + ], + "tags": { + "highway": "service", + "horse": "no", + "oneway": "yes", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 972017224, + "bounds": { + "minlat": 40.7733158, + "minlon": -73.9514557, + "maxlat": 40.7734598, + "maxlon": -73.9512565 + }, + "nodes": [ + 8996371852, + 8996371856, + 8996371857, + 8996371855 + ], + "geometry": [ + { "lat": 40.7734598, "lon": -73.9512565 }, + { "lat": 40.7734552, "lon": -73.9513466 }, + { "lat": 40.7734399, "lon": -73.9513585 }, + { "lat": 40.7733158, "lon": -73.9514557 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 972044630, + "bounds": { + "minlat": 40.7460156, + "minlon": -73.9801221, + "maxlat": 40.7460570, + "maxlon": -73.9800291 + }, + "nodes": [ + 6347916314, + 11298623358, + 8996587919 + ], + "geometry": [ + { "lat": 40.7460570, "lon": -73.9801221 }, + { "lat": 40.7460554, "lon": -73.9801183 }, + { "lat": 40.7460156, "lon": -73.9800291 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 972044631, + "bounds": { + "minlat": 40.7470840, + "minlon": -73.9796615, + "maxlat": 40.7472138, + "maxlon": -73.9795720 + }, + "nodes": [ + 8996587953, + 11298623354, + 8996587931 + ], + "geometry": [ + { "lat": 40.7470840, "lon": -73.9796615 }, + { "lat": 40.7471526, "lon": -73.9796141 }, + { "lat": 40.7472138, "lon": -73.9795720 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 972597726, + "bounds": { + "minlat": 40.7732379, + "minlon": -73.9526857, + "maxlat": 40.7733893, + "maxlon": -73.9525796 + }, + "nodes": [ + 9001600168, + 9001600169, + 8996988342 + ], + "geometry": [ + { "lat": 40.7732379, "lon": -73.9526857 }, + { "lat": 40.7732961, "lon": -73.9526447 }, + { "lat": 40.7733893, "lon": -73.9525796 } + ], + "tags": { + "covered": "no", + "highway": "service", + "incline": "down", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 972926362, + "bounds": { + "minlat": 40.7601126, + "minlon": -73.9848196, + "maxlat": 40.7604717, + "maxlon": -73.9846012 + }, + "nodes": [ + 10942563109, + 10942563108, + 42428305 + ], + "geometry": [ + { "lat": 40.7604717, "lon": -73.9846012 }, + { "lat": 40.7601677, "lon": -73.9847448 }, + { "lat": 40.7601126, "lon": -73.9848196 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "living_street", + "lanes": "1", + "lit": "yes", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left": "no", + "parking:left:restriction": "no_stopping", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk": "both", + "sidewalk:both:surface": "asphalt", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 973117512, + "bounds": { + "minlat": 40.7805015, + "minlon": -73.9873489, + "maxlat": 40.7807084, + "maxlon": -73.9869955 + }, + "nodes": [ + 595245840, + 9168918155, + 4906056152, + 9168918156, + 595245842, + 4906056150, + 9168918157, + 595245843 + ], + "geometry": [ + { "lat": 40.7805015, "lon": -73.9873489 }, + { "lat": 40.7805502, "lon": -73.9873043 }, + { "lat": 40.7805908, "lon": -73.9872591 }, + { "lat": 40.7806213, "lon": -73.9872127 }, + { "lat": 40.7806503, "lon": -73.9871560 }, + { "lat": 40.7806734, "lon": -73.9871001 }, + { "lat": 40.7806929, "lon": -73.9870428 }, + { "lat": 40.7807084, "lon": -73.9869955 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Riverside Boulevard", + "oneway": "no", + "sidewalk": "both", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 973416442, + "bounds": { + "minlat": 40.8260640, + "minlon": -73.9181345, + "maxlat": 40.8261618, + "maxlon": -73.9178020 + }, + "nodes": [ + 9009148302, + 9009148304, + 13033599659, + 9009148303 + ], + "geometry": [ + { "lat": 40.8260640, "lon": -73.9178020 }, + { "lat": 40.8261233, "lon": -73.9180036 }, + { "lat": 40.8261348, "lon": -73.9180428 }, + { "lat": 40.8261618, "lon": -73.9181345 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 973448963, + "bounds": { + "minlat": 40.7998302, + "minlon": -73.9326135, + "maxlat": 40.8002752, + "maxlon": -73.9322842 + }, + "nodes": [ + 4567359415, + 42438084 + ], + "geometry": [ + { "lat": 40.7998302, "lon": -73.9326135 }, + { "lat": 40.8002752, "lon": -73.9322842 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 973448965, + "bounds": { + "minlat": 40.7985686, + "minlon": -73.9335312, + "maxlat": 40.7998302, + "maxlon": -73.9326135 + }, + "nodes": [ + 42443824, + 3931519753, + 13239384170, + 7472058130, + 11805832619, + 11805832618, + 4567359415 + ], + "geometry": [ + { "lat": 40.7985686, "lon": -73.9335312 }, + { "lat": 40.7986638, "lon": -73.9334651 }, + { "lat": 40.7986852, "lon": -73.9334495 }, + { "lat": 40.7993583, "lon": -73.9329598 }, + { "lat": 40.7996970, "lon": -73.9327112 }, + { "lat": 40.7997827, "lon": -73.9326483 }, + { "lat": 40.7998302, "lon": -73.9326135 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 973448966, + "bounds": { + "minlat": 40.7989421, + "minlon": -73.9402084, + "maxlat": 40.8005680, + "maxlon": -73.9363574 + }, + "nodes": [ + 42435234, + 8796934785, + 12919727227, + 10127369882, + 10166326151, + 42435231, + 10166326155, + 10122952989, + 10122952990, + 42435230 + ], + "geometry": [ + { "lat": 40.7989421, "lon": -73.9363574 }, + { "lat": 40.7989973, "lon": -73.9364881 }, + { "lat": 40.7996080, "lon": -73.9379345 }, + { "lat": 40.7998350, "lon": -73.9384721 }, + { "lat": 40.7998381, "lon": -73.9384795 }, + { "lat": 40.7998895, "lon": -73.9386013 }, + { "lat": 40.7999466, "lon": -73.9387367 }, + { "lat": 40.7999509, "lon": -73.9387468 }, + { "lat": 40.8005307, "lon": -73.9401201 }, + { "lat": 40.8005680, "lon": -73.9402084 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 119th Street", + "name:ru": "Восточная 119-я стрит", + "name_1": "East 119 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 973448967, + "bounds": { + "minlat": 40.7979434, + "minlon": -73.9339919, + "maxlat": 40.7985686, + "maxlon": -73.9335312 + }, + "nodes": [ + 42435237, + 4980851578, + 7926756722, + 42443824 + ], + "geometry": [ + { "lat": 40.7979434, "lon": -73.9339919 }, + { "lat": 40.7980023, "lon": -73.9339496 }, + { "lat": 40.7985094, "lon": -73.9335771 }, + { "lat": 40.7985686, "lon": -73.9335312 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 973521991, + "bounds": { + "minlat": 40.7152227, + "minlon": -73.9929634, + "maxlat": 40.7153184, + "maxlon": -73.9929138 + }, + "nodes": [ + 9010154523, + 9010154526, + 9010154521 + ], + "geometry": [ + { "lat": 40.7153184, "lon": -73.9929138 }, + { "lat": 40.7153062, "lon": -73.9929216 }, + { "lat": 40.7152227, "lon": -73.9929634 } + ], + "tags": { + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 974294810, + "bounds": { + "minlat": 40.7113948, + "minlon": -74.0086548, + "maxlat": 40.7115948, + "maxlon": -74.0084808 + }, + "nodes": [ + 8262936580, + 8262936589, + 42428391 + ], + "geometry": [ + { "lat": 40.7115948, "lon": -74.0084808 }, + { "lat": 40.7114771, "lon": -74.0085812 }, + { "lat": 40.7113948, "lon": -74.0086548 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|yes|designated", + "busway:right": "lane", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-18:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left|through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 974336290, + "bounds": { + "minlat": 40.7404533, + "minlon": -73.9759372, + "maxlat": 40.7406465, + "maxlon": -73.9757944 + }, + "nodes": [ + 9017126040, + 6133333101, + 8119192790, + 42436756 + ], + "geometry": [ + { "lat": 40.7404533, "lon": -73.9759372 }, + { "lat": 40.7404944, "lon": -73.9759054 }, + { "lat": 40.7405941, "lon": -73.9758310 }, + { "lat": 40.7406465, "lon": -73.9757944 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 974350882, + "bounds": { + "minlat": 40.7045137, + "minlon": -74.0107891, + "maxlat": 40.7045626, + "maxlon": -74.0107536 + }, + "nodes": [ + 9017251855, + 11050101289, + 9448202420, + 9017251856 + ], + "geometry": [ + { "lat": 40.7045137, "lon": -74.0107536 }, + { "lat": 40.7045396, "lon": -74.0107724 }, + { "lat": 40.7045491, "lon": -74.0107793 }, + { "lat": 40.7045626, "lon": -74.0107891 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 974611015, + "bounds": { + "minlat": 40.7608084, + "minlon": -73.9982421, + "maxlat": 40.7614359, + "maxlon": -73.9978497 + }, + "nodes": [ + 7280430895, + 9140954082, + 9140954079, + 9019680391, + 9019680388 + ], + "geometry": [ + { "lat": 40.7614359, "lon": -73.9978497 }, + { "lat": 40.7612053, "lon": -73.9979616 }, + { "lat": 40.7609473, "lon": -73.9981392 }, + { "lat": 40.7609083, "lon": -73.9981684 }, + { "lat": 40.7608084, "lon": -73.9982421 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|through" + } +}, +{ + "type": "way", + "id": 974611016, + "bounds": { + "minlat": 40.7595158, + "minlon": -73.9991828, + "maxlat": 40.7601279, + "maxlon": -73.9987232 + }, + "nodes": [ + 9019680389, + 10168212480, + 9019680393, + 9019680390 + ], + "geometry": [ + { "lat": 40.7601279, "lon": -73.9987232 }, + { "lat": 40.7600666, "lon": -73.9987693 }, + { "lat": 40.7595737, "lon": -73.9991390 }, + { "lat": 40.7595158, "lon": -73.9991828 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|left|left" + } +}, +{ + "type": "way", + "id": 974611017, + "bounds": { + "minlat": 40.7601279, + "minlon": -73.9988397, + "maxlat": 40.7601736, + "maxlon": -73.9987232 + }, + "nodes": [ + 9019680389, + 42430669 + ], + "geometry": [ + { "lat": 40.7601279, "lon": -73.9987232 }, + { "lat": 40.7601736, "lon": -73.9988397 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 974611018, + "bounds": { + "minlat": 40.7601279, + "minlon": -73.9987232, + "maxlat": 40.7608084, + "maxlon": -73.9982421 + }, + "nodes": [ + 9019680388, + 9019680392, + 10168212476, + 9019680389 + ], + "geometry": [ + { "lat": 40.7608084, "lon": -73.9982421 }, + { "lat": 40.7606968, "lon": -73.9983231 }, + { "lat": 40.7601943, "lon": -73.9986754 }, + { "lat": 40.7601279, "lon": -73.9987232 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|through" + } +}, +{ + "type": "way", + "id": 974611019, + "bounds": { + "minlat": 40.7604226, + "minlon": -73.9982421, + "maxlat": 40.7608084, + "maxlon": -73.9973393 + }, + "nodes": [ + 9019680388, + 9019680394, + 5481846617 + ], + "geometry": [ + { "lat": 40.7608084, "lon": -73.9982421 }, + { "lat": 40.7607743, "lon": -73.9981661 }, + { "lat": 40.7604226, "lon": -73.9973393 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lit": "yes", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:backward": "left|left;through|", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 974921687, + "bounds": { + "minlat": 40.8150204, + "minlon": -73.9440141, + "maxlat": 40.8153400, + "maxlon": -73.9437801 + }, + "nodes": [ + 42439887, + 10171603043, + 4205440401 + ], + "geometry": [ + { "lat": 40.8153400, "lon": -73.9437801 }, + { "lat": 40.8152536, "lon": -73.9438433 }, + { "lat": 40.8150204, "lon": -73.9440141 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 975439536, + "bounds": { + "minlat": 40.7045596, + "minlon": -74.0097419, + "maxlat": 40.7047851, + "maxlon": -74.0094849 + }, + "nodes": [ + 42427956, + 8276468676, + 10344354959, + 42427951 + ], + "geometry": [ + { "lat": 40.7045596, "lon": -74.0094849 }, + { "lat": 40.7045966, "lon": -74.0095295 }, + { "lat": 40.7047628, "lon": -74.0097184 }, + { "lat": 40.7047851, "lon": -74.0097419 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Hanover Square", + "name:etymology:wikidata": "Q157217", + "name:ko": "해노버 스퀘어", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "William", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 975575528, + "bounds": { + "minlat": 40.8544734, + "minlon": -73.9159997, + "maxlat": 40.8548541, + "maxlon": -73.9157915 + }, + "nodes": [ + 9027916856, + 9027916857, + 9027916860, + 13067995244, + 9027916858, + 9027916859 + ], + "geometry": [ + { "lat": 40.8548541, "lon": -73.9157915 }, + { "lat": 40.8547018, "lon": -73.9158550 }, + { "lat": 40.8546110, "lon": -73.9159054 }, + { "lat": 40.8545537, "lon": -73.9159429 }, + { "lat": 40.8545289, "lon": -73.9159591 }, + { "lat": 40.8544734, "lon": -73.9159997 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 975593636, + "bounds": { + "minlat": 40.8248965, + "minlon": -73.9291905, + "maxlat": 40.8250616, + "maxlon": -73.9287989 + }, + "nodes": [ + 9028107117, + 13038755629, + 9036768816, + 9028107118 + ], + "geometry": [ + { "lat": 40.8250616, "lon": -73.9287989 }, + { "lat": 40.8250319, "lon": -73.9288693 }, + { "lat": 40.8250261, "lon": -73.9288831 }, + { "lat": 40.8248965, "lon": -73.9291905 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 975853437, + "bounds": { + "minlat": 40.7632726, + "minlon": -73.9570608, + "maxlat": 40.7634649, + "maxlon": -73.9569172 + }, + "nodes": [ + 9030177779, + 9030177806, + 9030177782 + ], + "geometry": [ + { "lat": 40.7632726, "lon": -73.9570608 }, + { "lat": 40.7633345, "lon": -73.9570145 }, + { "lat": 40.7634649, "lon": -73.9569172 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 976050703, + "bounds": { + "minlat": 40.7438166, + "minlon": -73.9890279, + "maxlat": 40.7440931, + "maxlon": -73.9889755 + }, + "nodes": [ + 7369969945, + 3009534488, + 42428216 + ], + "geometry": [ + { "lat": 40.7440931, "lon": -73.9889755 }, + { "lat": 40.7438697, "lon": -73.9890170 }, + { "lat": 40.7438166, "lon": -73.9890279 } + ], + "tags": { + "bicycle": "designated", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "pedestrian", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 976050704, + "bounds": { + "minlat": 40.7450990, + "minlon": -73.9887752, + "maxlat": 40.7454486, + "maxlon": -73.9887015 + }, + "nodes": [ + 7369969937, + 7369969940, + 42428223, + 10171531340, + 11355997388 + ], + "geometry": [ + { "lat": 40.7454486, "lon": -73.9887015 }, + { "lat": 40.7453684, "lon": -73.9887376 }, + { "lat": 40.7452886, "lon": -73.9887531 }, + { "lat": 40.7452324, "lon": -73.9887633 }, + { "lat": 40.7450990, "lon": -73.9887752 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 976050705, + "bounds": { + "minlat": 40.7465988, + "minlon": -73.9884909, + "maxlat": 40.7467961, + "maxlon": -73.9884727 + }, + "nodes": [ + 42428227, + 9198484657, + 11355997385 + ], + "geometry": [ + { "lat": 40.7467961, "lon": -73.9884727 }, + { "lat": 40.7467273, "lon": -73.9884853 }, + { "lat": 40.7465988, "lon": -73.9884909 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "kurb", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 976050707, + "bounds": { + "minlat": 40.7675144, + "minlon": -73.9818824, + "maxlat": 40.7676746, + "maxlon": -73.9817045 + }, + "nodes": [ + 1825841743, + 1825841696, + 1825841689, + 1825841691, + 8821677084, + 9170790590, + 1701856476 + ], + "geometry": [ + { "lat": 40.7676746, "lon": -73.9818824 }, + { "lat": 40.7676557, "lon": -73.9818343 }, + { "lat": 40.7676277, "lon": -73.9817925 }, + { "lat": 40.7676086, "lon": -73.9817668 }, + { "lat": 40.7675830, "lon": -73.9817433 }, + { "lat": 40.7675489, "lon": -73.9817259 }, + { "lat": 40.7675144, "lon": -73.9817045 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 976377172, + "bounds": { + "minlat": 40.7361139, + "minlon": -73.9843056, + "maxlat": 40.7363349, + "maxlon": -73.9841342 + }, + "nodes": [ + 8392896514, + 10173112101, + 8392896515 + ], + "geometry": [ + { "lat": 40.7361139, "lon": -73.9843056 }, + { "lat": 40.7361679, "lon": -73.9842631 }, + { "lat": 40.7363349, "lon": -73.9841342 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 976860719, + "bounds": { + "minlat": 40.8319585, + "minlon": -73.9505849, + "maxlat": 40.8323460, + "maxlon": -73.9504724 + }, + "nodes": [ + 9039624678, + 7907957247, + 7907957252 + ], + "geometry": [ + { "lat": 40.8323460, "lon": -73.9504724 }, + { "lat": 40.8321730, "lon": -73.9505234 }, + { "lat": 40.8319585, "lon": -73.9505849 } + ], + "tags": { + "destination:lanes": "none|none|none|West 158th Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "turn:lanes": "none|none|none|slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 977775626, + "bounds": { + "minlat": 40.8011217, + "minlon": -73.9207127, + "maxlat": 40.8023219, + "maxlon": -73.9178464 + }, + "nodes": [ + 9047273962, + 9047273963, + 9047273964, + 9047273965, + 9047273966, + 11427299989, + 9047273967 + ], + "geometry": [ + { "lat": 40.8011217, "lon": -73.9178464 }, + { "lat": 40.8014069, "lon": -73.9185339 }, + { "lat": 40.8018055, "lon": -73.9194798 }, + { "lat": 40.8019327, "lon": -73.9197598 }, + { "lat": 40.8020332, "lon": -73.9199855 }, + { "lat": 40.8022837, "lon": -73.9206165 }, + { "lat": 40.8023219, "lon": -73.9207127 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 977785372, + "bounds": { + "minlat": 40.8710617, + "minlon": -73.9125803, + "maxlat": 40.8713772, + "maxlon": -73.9124142 + }, + "nodes": [ + 9047393183, + 9561126002, + 9047393184, + 9047393185, + 9047393186, + 9047393187, + 9047393188 + ], + "geometry": [ + { "lat": 40.8713772, "lon": -73.9124856 }, + { "lat": 40.8713197, "lon": -73.9125291 }, + { "lat": 40.8712959, "lon": -73.9125471 }, + { "lat": 40.8712386, "lon": -73.9125803 }, + { "lat": 40.8711893, "lon": -73.9125721 }, + { "lat": 40.8711082, "lon": -73.9124142 }, + { "lat": 40.8710617, "lon": -73.9124248 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 977816369, + "bounds": { + "minlat": 40.8157383, + "minlon": -73.9254113, + "maxlat": 40.8166468, + "maxlon": -73.9247879 + }, + "nodes": [ + 419365804, + 9047703699, + 9047703700, + 9047703696, + 9047703697, + 9047703698 + ], + "geometry": [ + { "lat": 40.8157383, "lon": -73.9254113 }, + { "lat": 40.8157968, "lon": -73.9253850 }, + { "lat": 40.8159676, "lon": -73.9253081 }, + { "lat": 40.8165880, "lon": -73.9250289 }, + { "lat": 40.8166468, "lon": -73.9249512 }, + { "lat": 40.8166468, "lon": -73.9247879 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 978048147, + "bounds": { + "minlat": 40.7998052, + "minlon": -73.9143410, + "maxlat": 40.8001672, + "maxlon": -73.9137193 + }, + "nodes": [ + 5370086794, + 9049910584, + 9049910585, + 9049910586 + ], + "geometry": [ + { "lat": 40.8001672, "lon": -73.9137193 }, + { "lat": 40.8000575, "lon": -73.9138011 }, + { "lat": 40.7999750, "lon": -73.9139426 }, + { "lat": 40.7998052, "lon": -73.9143410 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 978161521, + "bounds": { + "minlat": 40.7481021, + "minlon": -73.9890050, + "maxlat": 40.7485081, + "maxlon": -73.9886948 + }, + "nodes": [ + 9051115967, + 6224278793, + 42430295 + ], + "geometry": [ + { "lat": 40.7481021, "lon": -73.9890050 }, + { "lat": 40.7484561, "lon": -73.9887335 }, + { "lat": 40.7485081, "lon": -73.9886948 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 978200211, + "bounds": { + "minlat": 40.6992081, + "minlon": -73.9966353, + "maxlat": 40.7005475, + "maxlon": -73.9954589 + }, + "nodes": [ + 451020895, + 11679053634, + 11685281473, + 451020889, + 11685281474, + 451020886, + 11685281479, + 11685281480, + 11685281478, + 451021104, + 11685281481, + 451021101, + 11686402291, + 11686402292, + 451021018 + ], + "geometry": [ + { "lat": 40.7005475, "lon": -73.9954589 }, + { "lat": 40.7004726, "lon": -73.9955688 }, + { "lat": 40.7003946, "lon": -73.9956725 }, + { "lat": 40.7003125, "lon": -73.9957801 }, + { "lat": 40.7002224, "lon": -73.9958882 }, + { "lat": 40.7001455, "lon": -73.9959776 }, + { "lat": 40.7000599, "lon": -73.9960636 }, + { "lat": 40.6999818, "lon": -73.9961413 }, + { "lat": 40.6998989, "lon": -73.9962133 }, + { "lat": 40.6997826, "lon": -73.9963069 }, + { "lat": 40.6996698, "lon": -73.9963835 }, + { "lat": 40.6995631, "lon": -73.9964524 }, + { "lat": 40.6994581, "lon": -73.9965125 }, + { "lat": 40.6993564, "lon": -73.9965649 }, + { "lat": 40.6992081, "lon": -73.9966353 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_base_2": "Gowanus", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy" + } +}, +{ + "type": "way", + "id": 978320981, + "bounds": { + "minlat": 40.7592574, + "minlon": -73.9622320, + "maxlat": 40.7596231, + "maxlon": -73.9619550 + }, + "nodes": [ + 9052451695, + 4918486747, + 42448326 + ], + "geometry": [ + { "lat": 40.7592574, "lon": -73.9622320 }, + { "lat": 40.7595537, "lon": -73.9620070 }, + { "lat": 40.7596231, "lon": -73.9619550 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|through||", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 978320982, + "bounds": { + "minlat": 40.7580419, + "minlon": -73.9624288, + "maxlat": 40.7589866, + "maxlon": -73.9601820 + }, + "nodes": [ + 42456041, + 4918486723, + 6293701622, + 4918486730, + 42454660 + ], + "geometry": [ + { "lat": 40.7589866, "lon": -73.9624288 }, + { "lat": 40.7589300, "lon": -73.9622928 }, + { "lat": 40.7585489, "lon": -73.9613876 }, + { "lat": 40.7580966, "lon": -73.9603106 }, + { "lat": 40.7580419, "lon": -73.9601820 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 978320983, + "bounds": { + "minlat": 40.7589866, + "minlon": -73.9624288, + "maxlat": 40.7592574, + "maxlon": -73.9622320 + }, + "nodes": [ + 42456041, + 4918486729, + 9052451695 + ], + "geometry": [ + { "lat": 40.7589866, "lon": -73.9624288 }, + { "lat": 40.7590466, "lon": -73.9623835 }, + { "lat": 40.7592574, "lon": -73.9622320 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 978329305, + "bounds": { + "minlat": 40.7578683, + "minlon": -73.9632467, + "maxlat": 40.7583127, + "maxlon": -73.9629223 + }, + "nodes": [ + 9052542036, + 10170862031, + 2711029280 + ], + "geometry": [ + { "lat": 40.7578683, "lon": -73.9632467 }, + { "lat": 40.7582107, "lon": -73.9629959 }, + { "lat": 40.7583127, "lon": -73.9629223 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 978359532, + "bounds": { + "minlat": 40.8349260, + "minlon": -73.9875959, + "maxlat": 40.8349678, + "maxlon": -73.9864210 + }, + "nodes": [ + 103190783, + 103190785, + 103190787, + 103190789, + 103162200 + ], + "geometry": [ + { "lat": 40.8349430, "lon": -73.9864210 }, + { "lat": 40.8349290, "lon": -73.9867000 }, + { "lat": 40.8349260, "lon": -73.9871750 }, + { "lat": 40.8349300, "lon": -73.9872630 }, + { "lat": 40.8349678, "lon": -73.9875959 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "ref": "NJ 5", + "sidewalk": "both", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 5", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 978401792, + "bounds": { + "minlat": 40.8745145, + "minlon": -74.0063311, + "maxlat": 40.8746620, + "maxlon": -74.0059859 + }, + "nodes": [ + 103288385, + 9803099406, + 9803099405, + 9803099412, + 9803099407, + 9803107718 + ], + "geometry": [ + { "lat": 40.8745160, "lon": -74.0063311 }, + { "lat": 40.8745145, "lon": -74.0062859 }, + { "lat": 40.8745604, "lon": -74.0061650 }, + { "lat": 40.8746004, "lon": -74.0060715 }, + { "lat": 40.8746280, "lon": -74.0060289 }, + { "lat": 40.8746620, "lon": -74.0059859 } + ], + "tags": { + "highway": "residential", + "name": "Frank W Burr Boulevard", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Frank W Burr", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 978401793, + "bounds": { + "minlat": 40.8714603, + "minlon": -74.0059859, + "maxlat": 40.8746620, + "maxlon": -74.0040270 + }, + "nodes": [ + 9803107718, + 103288323, + 4469436714, + 103288377, + 103288376, + 4469429041, + 4469436724, + 6536061797, + 4469429077, + 103288375, + 103288373, + 6536061782, + 103288371, + 4469429060, + 103288369 + ], + "geometry": [ + { "lat": 40.8746620, "lon": -74.0059859 }, + { "lat": 40.8746447, "lon": -74.0059693 }, + { "lat": 40.8745953, "lon": -74.0059055 }, + { "lat": 40.8745670, "lon": -74.0058690 }, + { "lat": 40.8745330, "lon": -74.0058310 }, + { "lat": 40.8742465, "lon": -74.0056481 }, + { "lat": 40.8721383, "lon": -74.0043093 }, + { "lat": 40.8720334, "lon": -74.0042427 }, + { "lat": 40.8719383, "lon": -74.0041823 }, + { "lat": 40.8717964, "lon": -74.0041225 }, + { "lat": 40.8716643, "lon": -74.0040773 }, + { "lat": 40.8716409, "lon": -74.0040722 }, + { "lat": 40.8715635, "lon": -74.0040555 }, + { "lat": 40.8714952, "lon": -74.0040401 }, + { "lat": 40.8714603, "lon": -74.0040270 } + ], + "tags": { + "highway": "residential", + "name": "Frank W Burr Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Frank W Burr", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 978431658, + "bounds": { + "minlat": 40.7137911, + "minlon": -74.0139410, + "maxlat": 40.7150409, + "maxlon": -74.0135806 + }, + "nodes": [ + 3594896445, + 4143835694, + 3594896442, + 4143835705, + 3594896439, + 10282972445, + 5813280746, + 373880031 + ], + "geometry": [ + { "lat": 40.7150409, "lon": -74.0135806 }, + { "lat": 40.7144848, "lon": -74.0137213 }, + { "lat": 40.7143765, "lon": -74.0137492 }, + { "lat": 40.7142697, "lon": -74.0137785 }, + { "lat": 40.7141445, "lon": -74.0138168 }, + { "lat": 40.7139477, "lon": -74.0138874 }, + { "lat": 40.7138926, "lon": -74.0139087 }, + { "lat": 40.7137911, "lon": -74.0139410 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "through|through|through|right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 978439270, + "bounds": { + "minlat": 40.7165175, + "minlon": -74.0132067, + "maxlat": 40.7170322, + "maxlon": -74.0130705 + }, + "nodes": [ + 9053623216, + 10911890468, + 4872879379, + 246858449 + ], + "geometry": [ + { "lat": 40.7170322, "lon": -74.0130705 }, + { "lat": 40.7167052, "lon": -74.0131563 }, + { "lat": 40.7166119, "lon": -74.0131812 }, + { "lat": 40.7165175, "lon": -74.0132067 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "through|through|through|right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 978439473, + "bounds": { + "minlat": 40.8048609, + "minlon": -73.9477222, + "maxlat": 40.8056052, + "maxlon": -73.9471780 + }, + "nodes": [ + 9053638140, + 7004418422, + 3099327957, + 10171554203, + 4207724573 + ], + "geometry": [ + { "lat": 40.8056052, "lon": -73.9471780 }, + { "lat": 40.8053104, "lon": -73.9473953 }, + { "lat": 40.8052502, "lon": -73.9474392 }, + { "lat": 40.8051997, "lon": -73.9474758 }, + { "lat": 40.8048609, "lon": -73.9477222 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 978443489, + "bounds": { + "minlat": 40.7227585, + "minlon": -73.9881591, + "maxlat": 40.7228469, + "maxlon": -73.9878608 + }, + "nodes": [ + 4332491210, + 4598752835, + 4202899501 + ], + "geometry": [ + { "lat": 40.7227585, "lon": -73.9878608 }, + { "lat": 40.7227852, "lon": -73.9879538 }, + { "lat": 40.7228469, "lon": -73.9881591 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 978638882, + "bounds": { + "minlat": 40.8071315, + "minlon": -73.9460569, + "maxlat": 40.8074784, + "maxlon": -73.9458086 + }, + "nodes": [ + 9055306042, + 10170875056, + 3099326118 + ], + "geometry": [ + { "lat": 40.8074784, "lon": -73.9458086 }, + { "lat": 40.8072064, "lon": -73.9460033 }, + { "lat": 40.8071315, "lon": -73.9460569 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 978645353, + "bounds": { + "minlat": 40.8039962, + "minlon": -73.9527966, + "maxlat": 40.8058775, + "maxlon": -73.9483526 + }, + "nodes": [ + 3099326128, + 10127369899, + 8758345336, + 2141026504, + 42439852, + 8758287374, + 11840444668, + 42432900 + ], + "geometry": [ + { "lat": 40.8039962, "lon": -73.9483526 }, + { "lat": 40.8040329, "lon": -73.9484400 }, + { "lat": 40.8050746, "lon": -73.9509199 }, + { "lat": 40.8051196, "lon": -73.9510272 }, + { "lat": 40.8051892, "lon": -73.9511928 }, + { "lat": 40.8052364, "lon": -73.9513053 }, + { "lat": 40.8058224, "lon": -73.9526685 }, + { "lat": 40.8058775, "lon": -73.9527966 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "name": "West 119th Street", + "name:ru": "Западная 119-я стрит", + "name_1": "West 119 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 978645354, + "bounds": { + "minlat": 40.8036541, + "minlon": -73.9486101, + "maxlat": 40.8039962, + "maxlon": -73.9483526 + }, + "nodes": [ + 3099326128, + 10127369900, + 4207724571 + ], + "geometry": [ + { "lat": 40.8039962, "lon": -73.9483526 }, + { "lat": 40.8039382, "lon": -73.9483959 }, + { "lat": 40.8036541, "lon": -73.9486101 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 978670457, + "bounds": { + "minlat": 40.8115242, + "minlon": -73.9284174, + "maxlat": 40.8117304, + "maxlon": -73.9281344 + }, + "nodes": [ + 8666778901, + 9163778719, + 11882279816, + 7553826299 + ], + "geometry": [ + { "lat": 40.8115242, "lon": -73.9284174 }, + { "lat": 40.8116343, "lon": -73.9282780 }, + { "lat": 40.8116597, "lon": -73.9282401 }, + { "lat": 40.8117304, "lon": -73.9281344 } + ], + "tags": { + "highway": "residential", + "name": "Rider Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Rider", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 978675658, + "bounds": { + "minlat": 40.7205482, + "minlon": -74.0039761, + "maxlat": 40.7209100, + "maxlon": -74.0034713 + }, + "nodes": [ + 42440825, + 8307641825, + 11658947739, + 42433573, + 2151385470 + ], + "geometry": [ + { "lat": 40.7205482, "lon": -74.0034713 }, + { "lat": 40.7206361, "lon": -74.0035934 }, + { "lat": 40.7206685, "lon": -74.0036386 }, + { "lat": 40.7208746, "lon": -74.0039266 }, + { "lat": 40.7209100, "lon": -74.0039761 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 978675659, + "bounds": { + "minlat": 40.7204261, + "minlon": -74.0034713, + "maxlat": 40.7205482, + "maxlon": -74.0032974 + }, + "nodes": [ + 8996353563, + 42440825 + ], + "geometry": [ + { "lat": 40.7204261, "lon": -74.0032974 }, + { "lat": 40.7205482, "lon": -74.0034713 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 978696614, + "bounds": { + "minlat": 40.8065348, + "minlon": -73.9874375, + "maxlat": 40.8066882, + "maxlon": -73.9873297 + }, + "nodes": [ + 9055811834, + 9055811833 + ], + "geometry": [ + { "lat": 40.8066882, "lon": -73.9873297 }, + { "lat": 40.8065348, "lon": -73.9874375 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 978720012, + "bounds": { + "minlat": 40.7529888, + "minlon": -73.9108699, + "maxlat": 40.7530144, + "maxlon": -73.9106835 + }, + "nodes": [ + 3938728150, + 9188971689, + 8288365779 + ], + "geometry": [ + { "lat": 40.7530144, "lon": -73.9108699 }, + { "lat": 40.7530018, "lon": -73.9107772 }, + { "lat": 40.7529888, "lon": -73.9106835 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 978720013, + "bounds": { + "minlat": 40.7528667, + "minlon": -73.9108813, + "maxlat": 40.7530144, + "maxlon": -73.9108699 + }, + "nodes": [ + 8288365782, + 8288365778, + 3938728150 + ], + "geometry": [ + { "lat": 40.7528667, "lon": -73.9108813 }, + { "lat": 40.7529013, "lon": -73.9108746 }, + { "lat": 40.7530144, "lon": -73.9108699 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 978721785, + "bounds": { + "minlat": 40.8384719, + "minlon": -73.9415896, + "maxlat": 40.8391449, + "maxlon": -73.9410996 + }, + "nodes": [ + 9935939392, + 8746375050, + 9566927283, + 13320061255 + ], + "geometry": [ + { "lat": 40.8384719, "lon": -73.9415896 }, + { "lat": 40.8390547, "lon": -73.9411652 }, + { "lat": 40.8390828, "lon": -73.9411448 }, + { "lat": 40.8391449, "lon": -73.9410996 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "turn:lanes": "left|through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 978740977, + "bounds": { + "minlat": 40.8582524, + "minlon": -73.9228907, + "maxlat": 40.8587919, + "maxlon": -73.9228628 + }, + "nodes": [ + 589927894, + 1764424358 + ], + "geometry": [ + { "lat": 40.8582524, "lon": -73.9228628 }, + { "lat": 40.8587919, "lon": -73.9228907 } + ], + "tags": { + "destination:lanes": "Dyckman Street|10th Avenue", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "oneway": "yes", + "ref": "HRD", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East River:Harlem River", + "tiger:name_type": "Dr", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 980853075, + "bounds": { + "minlat": 40.8064478, + "minlon": -73.9530399, + "maxlat": 40.8076082, + "maxlon": -73.9502721 + }, + "nodes": [ + 42439855, + 8758287372, + 10168029048, + 42432905, + 6185556300, + 42435785 + ], + "geometry": [ + { "lat": 40.8064478, "lon": -73.9502721 }, + { "lat": 40.8064968, "lon": -73.9503896 }, + { "lat": 40.8074929, "lon": -73.9527663 }, + { "lat": 40.8075507, "lon": -73.9529047 }, + { "lat": 40.8075807, "lon": -73.9529737 }, + { "lat": 40.8076082, "lon": -73.9530399 } + ], + "tags": { + "highway": "residential", + "name": "West 121st Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 980853215, + "bounds": { + "minlat": 40.8038654, + "minlon": -73.9519490, + "maxlat": 40.8046267, + "maxlon": -73.9513890 + }, + "nodes": [ + 2141026498, + 10172883043, + 10172883033, + 2141026492, + 10172883037, + 9658594744 + ], + "geometry": [ + { "lat": 40.8038654, "lon": -73.9519490 }, + { "lat": 40.8039238, "lon": -73.9519060 }, + { "lat": 40.8044413, "lon": -73.9515247 }, + { "lat": 40.8044957, "lon": -73.9514846 }, + { "lat": 40.8045549, "lon": -73.9514414 }, + { "lat": 40.8046267, "lon": -73.9513890 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 980855831, + "bounds": { + "minlat": 40.7971010, + "minlon": -73.9490776, + "maxlat": 40.7974838, + "maxlon": -73.9488026 + }, + "nodes": [ + 42446721, + 7803460125, + 7123873175, + 42432352 + ], + "geometry": [ + { "lat": 40.7974838, "lon": -73.9488026 }, + { "lat": 40.7974325, "lon": -73.9488396 }, + { "lat": 40.7971474, "lon": -73.9490443 }, + { "lat": 40.7971010, "lon": -73.9490776 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "3", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 980855832, + "bounds": { + "minlat": 40.7974838, + "minlon": -73.9488026, + "maxlat": 40.7981256, + "maxlon": -73.9483211 + }, + "nodes": [ + 42437201, + 7802964938, + 7803460138, + 42446721 + ], + "geometry": [ + { "lat": 40.7981256, "lon": -73.9483211 }, + { "lat": 40.7980548, "lon": -73.9483746 }, + { "lat": 40.7975430, "lon": -73.9487589 }, + { "lat": 40.7974838, "lon": -73.9488026 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 980855833, + "bounds": { + "minlat": 40.7981256, + "minlon": -73.9483211, + "maxlat": 40.7985106, + "maxlon": -73.9480424 + }, + "nodes": [ + 9073283237, + 9177562827, + 42437201 + ], + "geometry": [ + { "lat": 40.7985106, "lon": -73.9480424 }, + { "lat": 40.7982212, "lon": -73.9482464 }, + { "lat": 40.7981256, "lon": -73.9483211 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "3", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "oneway:bicycle": "no", + "turn:lanes": "left|none|none", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 980885902, + "bounds": { + "minlat": 40.8213460, + "minlon": -73.9393928, + "maxlat": 40.8215209, + "maxlon": -73.9392660 + }, + "nodes": [ + 9582985643, + 9073529283 + ], + "geometry": [ + { "lat": 40.8215209, "lon": -73.9392660 }, + { "lat": 40.8213460, "lon": -73.9393928 } + ], + "tags": { + "alt_name": "7th Ave", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name1": "7th Ave", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 980885903, + "bounds": { + "minlat": 40.8210002, + "minlon": -73.9396466, + "maxlat": 40.8213460, + "maxlon": -73.9393928 + }, + "nodes": [ + 9073529283, + 9557086576, + 42439910 + ], + "geometry": [ + { "lat": 40.8213460, "lon": -73.9393928 }, + { "lat": 40.8210603, "lon": -73.9396025 }, + { "lat": 40.8210002, "lon": -73.9396466 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 980885904, + "bounds": { + "minlat": 40.8197420, + "minlon": -73.9396466, + "maxlat": 40.8210002, + "maxlon": -73.9366464 + }, + "nodes": [ + 42439910, + 2141026496, + 8758299312, + 9557086555, + 4207863943, + 3099326126 + ], + "geometry": [ + { "lat": 40.8210002, "lon": -73.9396466 }, + { "lat": 40.8209346, "lon": -73.9394886 }, + { "lat": 40.8208851, "lon": -73.9393711 }, + { "lat": 40.8198453, "lon": -73.9368844 }, + { "lat": 40.8198059, "lon": -73.9367953 }, + { "lat": 40.8197420, "lon": -73.9366464 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 144th Street", + "name_1": "West 144 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 980885905, + "bounds": { + "minlat": 40.8200892, + "minlon": -73.9403172, + "maxlat": 40.8210002, + "maxlon": -73.9396466 + }, + "nodes": [ + 42439910, + 9557086573, + 9557086585, + 42439905, + 9557086582, + 9073529284 + ], + "geometry": [ + { "lat": 40.8210002, "lon": -73.9396466 }, + { "lat": 40.8209517, "lon": -73.9396823 }, + { "lat": 40.8204374, "lon": -73.9400609 }, + { "lat": 40.8203792, "lon": -73.9401037 }, + { "lat": 40.8203297, "lon": -73.9401402 }, + { "lat": 40.8200892, "lon": -73.9403172 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 980885906, + "bounds": { + "minlat": 40.8197590, + "minlon": -73.9405581, + "maxlat": 40.8200892, + "maxlon": -73.9403172 + }, + "nodes": [ + 9073529284, + 9557086579, + 42438281 + ], + "geometry": [ + { "lat": 40.8200892, "lon": -73.9403172 }, + { "lat": 40.8198162, "lon": -73.9405164 }, + { "lat": 40.8197590, "lon": -73.9405581 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 980885907, + "bounds": { + "minlat": 40.8185482, + "minlon": -73.9405581, + "maxlat": 40.8197590, + "maxlon": -73.9377219 + }, + "nodes": [ + 42438281, + 2141026536, + 8758299314, + 9557104476, + 42438275 + ], + "geometry": [ + { "lat": 40.8197590, "lon": -73.9405581 }, + { "lat": 40.8196887, "lon": -73.9403912 }, + { "lat": 40.8196447, "lon": -73.9402828 }, + { "lat": 40.8185905, "lon": -73.9378191 }, + { "lat": 40.8185482, "lon": -73.9377219 } + ], + "tags": { + "highway": "residential", + "name": "West 142nd Street", + "name_1": "West 142 Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 980885909, + "bounds": { + "minlat": 40.8188555, + "minlon": -73.9412159, + "maxlat": 40.8197590, + "maxlon": -73.9405581 + }, + "nodes": [ + 42438281, + 9557104482, + 9557104484, + 42439899, + 9557104488, + 9073529286 + ], + "geometry": [ + { "lat": 40.8197590, "lon": -73.9405581 }, + { "lat": 40.8197072, "lon": -73.9405958 }, + { "lat": 40.8191882, "lon": -73.9409737 }, + { "lat": 40.8191327, "lon": -73.9410141 }, + { "lat": 40.8190790, "lon": -73.9410531 }, + { "lat": 40.8188555, "lon": -73.9412159 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 980885910, + "bounds": { + "minlat": 40.8185042, + "minlon": -73.9414703, + "maxlat": 40.8188555, + "maxlon": -73.9412159 + }, + "nodes": [ + 9073529286, + 9557104494, + 42433781 + ], + "geometry": [ + { "lat": 40.8188555, "lon": -73.9412159 }, + { "lat": 40.8185684, "lon": -73.9414238 }, + { "lat": 40.8185042, "lon": -73.9414703 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 980885911, + "bounds": { + "minlat": 40.8184380, + "minlon": -73.9414703, + "maxlat": 40.8185042, + "maxlon": -73.9413096 + }, + "nodes": [ + 42433781, + 2141026520 + ], + "geometry": [ + { "lat": 40.8185042, "lon": -73.9414703 }, + { "lat": 40.8184380, "lon": -73.9413096 } + ], + "tags": { + "highway": "residential", + "maxspeed:type": "US-NY:urban", + "name": "West 140th Street", + "name_1": "West 140 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 980885912, + "bounds": { + "minlat": 40.8176309, + "minlon": -73.9421132, + "maxlat": 40.8185042, + "maxlon": -73.9414703 + }, + "nodes": [ + 42433781, + 9557104498, + 5378420478, + 9557110322, + 42439897, + 9557110319, + 9073529288 + ], + "geometry": [ + { "lat": 40.8185042, "lon": -73.9414703 }, + { "lat": 40.8184562, "lon": -73.9415056 }, + { "lat": 40.8181884, "lon": -73.9417028 }, + { "lat": 40.8179441, "lon": -73.9418826 }, + { "lat": 40.8178879, "lon": -73.9419240 }, + { "lat": 40.8178321, "lon": -73.9419651 }, + { "lat": 40.8176309, "lon": -73.9421132 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 980885914, + "bounds": { + "minlat": 40.8172609, + "minlon": -73.9423832, + "maxlat": 40.8176309, + "maxlon": -73.9421132 + }, + "nodes": [ + 9073529288, + 5378413084, + 9557110367, + 42435967 + ], + "geometry": [ + { "lat": 40.8176309, "lon": -73.9421132 }, + { "lat": 40.8175764, "lon": -73.9421530 }, + { "lat": 40.8173198, "lon": -73.9423402 }, + { "lat": 40.8172609, "lon": -73.9423832 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 980885915, + "bounds": { + "minlat": 40.8171915, + "minlon": -73.9423832, + "maxlat": 40.8172609, + "maxlon": -73.9422181 + }, + "nodes": [ + 42435967, + 2141026542 + ], + "geometry": [ + { "lat": 40.8172609, "lon": -73.9423832 }, + { "lat": 40.8171915, "lon": -73.9422181 } + ], + "tags": { + "highway": "residential", + "name": "West 138th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 980885917, + "bounds": { + "minlat": 40.8163661, + "minlon": -73.9430295, + "maxlat": 40.8172609, + "maxlon": -73.9423832 + }, + "nodes": [ + 42435967, + 9557110364, + 5378419178, + 9557110361, + 42439894, + 9559408291, + 4205440407 + ], + "geometry": [ + { "lat": 40.8172609, "lon": -73.9423832 }, + { "lat": 40.8172093, "lon": -73.9424205 }, + { "lat": 40.8169410, "lon": -73.9426143 }, + { "lat": 40.8166946, "lon": -73.9427922 }, + { "lat": 40.8166299, "lon": -73.9428389 }, + { "lat": 40.8165825, "lon": -73.9428732 }, + { "lat": 40.8163661, "lon": -73.9430295 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 980924794, + "bounds": { + "minlat": 40.8061176, + "minlon": -73.9673729, + "maxlat": 40.8069441, + "maxlon": -73.9654027 + }, + "nodes": [ + 42428807, + 9339406570, + 1506445736, + 1506445768, + 7785881410, + 42431193, + 5004570644 + ], + "geometry": [ + { "lat": 40.8061176, "lon": -73.9654027 }, + { "lat": 40.8061638, "lon": -73.9655127 }, + { "lat": 40.8066538, "lon": -73.9666789 }, + { "lat": 40.8066609, "lon": -73.9666959 }, + { "lat": 40.8068353, "lon": -73.9670769 }, + { "lat": 40.8068579, "lon": -73.9671331 }, + { "lat": 40.8069441, "lon": -73.9673729 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 113th Street", + "name:ru": "Западная 113-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 980924795, + "bounds": { + "minlat": 40.8054904, + "minlon": -73.9658601, + "maxlat": 40.8061176, + "maxlon": -73.9654027 + }, + "nodes": [ + 42428807, + 7004385801, + 7004399551, + 42428799 + ], + "geometry": [ + { "lat": 40.8061176, "lon": -73.9654027 }, + { "lat": 40.8060700, "lon": -73.9654375 }, + { "lat": 40.8055559, "lon": -73.9658127 }, + { "lat": 40.8054904, "lon": -73.9658601 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 980924796, + "bounds": { + "minlat": 40.8042605, + "minlon": -73.9658601, + "maxlat": 40.8054904, + "maxlon": -73.9629314 + }, + "nodes": [ + 42428799, + 7004392892, + 561035333, + 7004396257, + 1506445754, + 1506445757, + 6910530530, + 6814307795, + 42437222 + ], + "geometry": [ + { "lat": 40.8054904, "lon": -73.9658601 }, + { "lat": 40.8054486, "lon": -73.9657608 }, + { "lat": 40.8054119, "lon": -73.9656735 }, + { "lat": 40.8053668, "lon": -73.9655655 }, + { "lat": 40.8046209, "lon": -73.9637915 }, + { "lat": 40.8045866, "lon": -73.9637111 }, + { "lat": 40.8045237, "lon": -73.9635608 }, + { "lat": 40.8043137, "lon": -73.9630586 }, + { "lat": 40.8042605, "lon": -73.9629314 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 112th Street", + "name:ru": "Западная 112-я стрит", + "name_1": "West 112 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 980924797, + "bounds": { + "minlat": 40.8048633, + "minlon": -73.9663136, + "maxlat": 40.8054904, + "maxlon": -73.9658601 + }, + "nodes": [ + 42428799, + 7004399552, + 7004393036, + 42428790 + ], + "geometry": [ + { "lat": 40.8054904, "lon": -73.9658601 }, + { "lat": 40.8054364, "lon": -73.9658992 }, + { "lat": 40.8049272, "lon": -73.9662673 }, + { "lat": 40.8048633, "lon": -73.9663136 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 980927703, + "bounds": { + "minlat": 40.7110688, + "minlon": -73.9562262, + "maxlat": 40.7129041, + "maxlon": -73.9550463 + }, + "nodes": [ + 598033037, + 42482403, + 42482410, + 42482417, + 9957055553 + ], + "geometry": [ + { "lat": 40.7129041, "lon": -73.9550463 }, + { "lat": 40.7122660, "lon": -73.9554760 }, + { "lat": 40.7117520, "lon": -73.9557970 }, + { "lat": 40.7111130, "lon": -73.9561990 }, + { "lat": 40.7110688, "lon": -73.9562262 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 980927704, + "bounds": { + "minlat": 40.7129041, + "minlon": -73.9550463, + "maxlat": 40.7131385, + "maxlon": -73.9549048 + }, + "nodes": [ + 9073820763, + 598033037 + ], + "geometry": [ + { "lat": 40.7131385, "lon": -73.9549048 }, + { "lat": 40.7129041, "lon": -73.9550463 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left;through" + } +}, +{ + "type": "way", + "id": 980932663, + "bounds": { + "minlat": 40.8393918, + "minlon": -73.9409192, + "maxlat": 40.8398371, + "maxlon": -73.9405938 + }, + "nodes": [ + 9073844906, + 9566927306, + 13320061252 + ], + "geometry": [ + { "lat": 40.8393918, "lon": -73.9409192 }, + { "lat": 40.8397986, "lon": -73.9406220 }, + { "lat": 40.8398371, "lon": -73.9405938 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 980932664, + "bounds": { + "minlat": 40.8395698, + "minlon": -73.9405865, + "maxlat": 40.8398471, + "maxlon": -73.9398826 + }, + "nodes": [ + 561035381, + 9566927304, + 9567002607, + 9566997286, + 42433030 + ], + "geometry": [ + { "lat": 40.8398471, "lon": -73.9405865 }, + { "lat": 40.8397938, "lon": -73.9404513 }, + { "lat": 40.8397150, "lon": -73.9402511 }, + { "lat": 40.8396191, "lon": -73.9400076 }, + { "lat": 40.8395698, "lon": -73.9398826 } + ], + "tags": { + "highway": "residential", + "name": "West 166th Street", + "name_1": "West 166 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "166th", + "tiger:name_base_1": "166", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 980932665, + "bounds": { + "minlat": 40.8398575, + "minlon": -73.9405790, + "maxlat": 40.8407691, + "maxlon": -73.9399133 + }, + "nodes": [ + 13320061251, + 9566927305, + 9567002608, + 2499802988, + 7403173687, + 8344404000, + 6861072081, + 4207731297 + ], + "geometry": [ + { "lat": 40.8398575, "lon": -73.9405790 }, + { "lat": 40.8399356, "lon": -73.9405228 }, + { "lat": 40.8402045, "lon": -73.9403292 }, + { "lat": 40.8403523, "lon": -73.9402230 }, + { "lat": 40.8404036, "lon": -73.9401844 }, + { "lat": 40.8404944, "lon": -73.9401219 }, + { "lat": 40.8405806, "lon": -73.9400608 }, + { "lat": 40.8407691, "lon": -73.9399133 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 981144708, + "bounds": { + "minlat": 40.8216757, + "minlon": -73.9391536, + "maxlat": 40.8220664, + "maxlon": -73.9388694 + }, + "nodes": [ + 9075676539, + 9557088475, + 42434246 + ], + "geometry": [ + { "lat": 40.8220664, "lon": -73.9388694 }, + { "lat": 40.8217715, "lon": -73.9390839 }, + { "lat": 40.8216757, "lon": -73.9391536 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 981173306, + "bounds": { + "minlat": 40.7585710, + "minlon": -73.9678025, + "maxlat": 40.7586489, + "maxlon": -73.9677418 + }, + "nodes": [ + 9075938182, + 9140929853, + 10172968772, + 9075938181 + ], + "geometry": [ + { "lat": 40.7586489, "lon": -73.9677418 }, + { "lat": 40.7586064, "lon": -73.9677750 }, + { "lat": 40.7585873, "lon": -73.9677898 }, + { "lat": 40.7585710, "lon": -73.9678025 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 981180671, + "bounds": { + "minlat": 40.7490355, + "minlon": -73.9762098, + "maxlat": 40.7490992, + "maxlon": -73.9761608 + }, + "nodes": [ + 9076023712, + 10171269358, + 9076023711 + ], + "geometry": [ + { "lat": 40.7490355, "lon": -73.9762098 }, + { "lat": 40.7490863, "lon": -73.9761708 }, + { "lat": 40.7490992, "lon": -73.9761608 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 981182867, + "bounds": { + "minlat": 40.7673574, + "minlon": -73.9697099, + "maxlat": 40.7678000, + "maxlon": -73.9686619 + }, + "nodes": [ + 9076023379, + 10171134798, + 42445972 + ], + "geometry": [ + { "lat": 40.7678000, "lon": -73.9697099 }, + { "lat": 40.7674033, "lon": -73.9687718 }, + { "lat": 40.7673574, "lon": -73.9686619 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 65th Street", + "name:ru": "Восточная 65-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 981198331, + "bounds": { + "minlat": 40.7439971, + "minlon": -73.9719493, + "maxlat": 40.7441114, + "maxlon": -73.9718648 + }, + "nodes": [ + 9076206578, + 9076206579, + 9076206580 + ], + "geometry": [ + { "lat": 40.7439971, "lon": -73.9719493 }, + { "lat": 40.7440548, "lon": -73.9719067 }, + { "lat": 40.7441114, "lon": -73.9718648 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 981198332, + "bounds": { + "minlat": 40.7438847, + "minlon": -73.9720323, + "maxlat": 40.7439971, + "maxlon": -73.9719493 + }, + "nodes": [ + 9076206578, + 9076206581, + 9076206582 + ], + "geometry": [ + { "lat": 40.7439971, "lon": -73.9719493 }, + { "lat": 40.7439311, "lon": -73.9719980 }, + { "lat": 40.7438847, "lon": -73.9720323 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 981267647, + "bounds": { + "minlat": 40.8223451, + "minlon": -73.9386646, + "maxlat": 40.8226947, + "maxlon": -73.9384071 + }, + "nodes": [ + 9076983995, + 9557088496, + 42439922 + ], + "geometry": [ + { "lat": 40.8226947, "lon": -73.9384071 }, + { "lat": 40.8224069, "lon": -73.9386191 }, + { "lat": 40.8223451, "lon": -73.9386646 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 981274194, + "bounds": { + "minlat": 40.7602510, + "minlon": -73.9620193, + "maxlat": 40.7604641, + "maxlon": -73.9615019 + }, + "nodes": [ + 9077027774, + 6177439753, + 6177439749 + ], + "geometry": [ + { "lat": 40.7604641, "lon": -73.9620193 }, + { "lat": 40.7603118, "lon": -73.9616495 }, + { "lat": 40.7602510, "lon": -73.9615019 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "name_1": "East 60 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through" + } +}, +{ + "type": "way", + "id": 981274600, + "bounds": { + "minlat": 40.8235986, + "minlon": -73.9377556, + "maxlat": 40.8239648, + "maxlon": -73.9374863 + }, + "nodes": [ + 9077012505, + 10177607141, + 42439225 + ], + "geometry": [ + { "lat": 40.8239648, "lon": -73.9374863 }, + { "lat": 40.8236556, "lon": -73.9377137 }, + { "lat": 40.8235986, "lon": -73.9377556 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes": "reverse||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 981274601, + "bounds": { + "minlat": 40.8235315, + "minlon": -73.9377556, + "maxlat": 40.8235986, + "maxlon": -73.9375898 + }, + "nodes": [ + 42439225, + 2141026548 + ], + "geometry": [ + { "lat": 40.8235986, "lon": -73.9377556 }, + { "lat": 40.8235315, "lon": -73.9375898 } + ], + "tags": { + "highway": "residential", + "name": "West 148th Street", + "name_1": "West 148 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "148th", + "tiger:name_base_1": "148", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 981274603, + "bounds": { + "minlat": 40.8229671, + "minlon": -73.9382108, + "maxlat": 40.8235986, + "maxlon": -73.9377556 + }, + "nodes": [ + 42439225, + 10177607138, + 9557088483, + 42439924 + ], + "geometry": [ + { "lat": 40.8235986, "lon": -73.9377556 }, + { "lat": 40.8235451, "lon": -73.9377941 }, + { "lat": 40.8230330, "lon": -73.9381633 }, + { "lat": 40.8229671, "lon": -73.9382108 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 981500699, + "bounds": { + "minlat": 40.7125260, + "minlon": -73.9625520, + "maxlat": 40.7153060, + "maxlon": -73.9604360 + }, + "nodes": [ + 42474121, + 9957055534, + 9955210321, + 42520409, + 9955210320, + 9955210331, + 42504282, + 9955210332, + 9779538153, + 42520404, + 9779538151, + 9949550261, + 42489010, + 9949550260, + 9779533105, + 42484171 + ], + "geometry": [ + { "lat": 40.7125260, "lon": -73.9625520 }, + { "lat": 40.7125859, "lon": -73.9625140 }, + { "lat": 40.7132167, "lon": -73.9621141 }, + { "lat": 40.7132690, "lon": -73.9620810 }, + { "lat": 40.7133276, "lon": -73.9620438 }, + { "lat": 40.7138563, "lon": -73.9617084 }, + { "lat": 40.7139010, "lon": -73.9616800 }, + { "lat": 40.7139508, "lon": -73.9616474 }, + { "lat": 40.7144310, "lon": -73.9613334 }, + { "lat": 40.7144978, "lon": -73.9612775 }, + { "lat": 40.7145669, "lon": -73.9612199 }, + { "lat": 40.7148504, "lon": -73.9609244 }, + { "lat": 40.7148920, "lon": -73.9608810 }, + { "lat": 40.7149394, "lon": -73.9608301 }, + { "lat": 40.7152427, "lon": -73.9605041 }, + { "lat": 40.7153060, "lon": -73.9604360 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 981500700, + "bounds": { + "minlat": 40.7107667, + "minlon": -73.9633640, + "maxlat": 40.7112358, + "maxlon": -73.9617922 + }, + "nodes": [ + 42514918, + 8842464608, + 8842473773, + 8842473778, + 6338024009, + 42509277 + ], + "geometry": [ + { "lat": 40.7112358, "lon": -73.9633640 }, + { "lat": 40.7112144, "lon": -73.9632934 }, + { "lat": 40.7109781, "lon": -73.9625126 }, + { "lat": 40.7109385, "lon": -73.9623816 }, + { "lat": 40.7107862, "lon": -73.9618784 }, + { "lat": 40.7107667, "lon": -73.9617922 } + ], + "tags": { + "highway": "residential", + "name": "South 5th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 981500701, + "bounds": { + "minlat": 40.7108716, + "minlon": -73.9635930, + "maxlat": 40.7112358, + "maxlon": -73.9633640 + }, + "nodes": [ + 9078626930, + 9990599464, + 8842464605, + 42514918 + ], + "geometry": [ + { "lat": 40.7108716, "lon": -73.9635930 }, + { "lat": 40.7111559, "lon": -73.9634162 }, + { "lat": 40.7111886, "lon": -73.9633958 }, + { "lat": 40.7112358, "lon": -73.9633640 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Bedford Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "through|right", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 981500815, + "bounds": { + "minlat": 40.7168361, + "minlon": -73.9914435, + "maxlat": 40.7170158, + "maxlon": -73.9913486 + }, + "nodes": [ + 9078597262, + 9078597263 + ], + "geometry": [ + { "lat": 40.7168361, "lon": -73.9914435 }, + { "lat": 40.7170158, "lon": -73.9913486 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 981500816, + "bounds": { + "minlat": 40.7170158, + "minlon": -73.9913486, + "maxlat": 40.7173510, + "maxlon": -73.9911718 + }, + "nodes": [ + 9078597263, + 13518772744, + 6133388365, + 5043084243, + 42437962 + ], + "geometry": [ + { "lat": 40.7170158, "lon": -73.9913486 }, + { "lat": 40.7171105, "lon": -73.9912986 }, + { "lat": 40.7171955, "lon": -73.9912537 }, + { "lat": 40.7172753, "lon": -73.9912117 }, + { "lat": 40.7173510, "lon": -73.9911718 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 981500817, + "bounds": { + "minlat": 40.7161764, + "minlon": -73.9917920, + "maxlat": 40.7168361, + "maxlon": -73.9914435 + }, + "nodes": [ + 42437965, + 5863593978, + 9078597262 + ], + "geometry": [ + { "lat": 40.7161764, "lon": -73.9917920 }, + { "lat": 40.7162312, "lon": -73.9917631 }, + { "lat": 40.7168361, "lon": -73.9914435 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 981500818, + "bounds": { + "minlat": 40.7151738, + "minlon": -73.9923108, + "maxlat": 40.7161764, + "maxlon": -73.9917920 + }, + "nodes": [ + 9505971541, + 7167585624, + 5863596401, + 42437965 + ], + "geometry": [ + { "lat": 40.7151738, "lon": -73.9923108 }, + { "lat": 40.7157021, "lon": -73.9920375 }, + { "lat": 40.7161268, "lon": -73.9918177 }, + { "lat": 40.7161764, "lon": -73.9917920 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 981500819, + "bounds": { + "minlat": 40.7150484, + "minlon": -73.9926355, + "maxlat": 40.7151254, + "maxlon": -73.9923757 + }, + "nodes": [ + 42437967, + 7480410396, + 12404979787, + 42437990 + ], + "geometry": [ + { "lat": 40.7150484, "lon": -73.9923757 }, + { "lat": 40.7150852, "lon": -73.9924998 }, + { "lat": 40.7151075, "lon": -73.9925750 }, + { "lat": 40.7151254, "lon": -73.9926355 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 981501066, + "bounds": { + "minlat": 40.8008231, + "minlon": -73.9590911, + "maxlat": 40.8009880, + "maxlon": -73.9586780 + }, + "nodes": [ + 9078592316, + 9078631517 + ], + "geometry": [ + { "lat": 40.8008231, "lon": -73.9586780 }, + { "lat": 40.8009880, "lon": -73.9590911 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 981501067, + "bounds": { + "minlat": 40.8012041, + "minlon": -73.9600692, + "maxlat": 40.8014005, + "maxlon": -73.9596153 + }, + "nodes": [ + 12534082093, + 12534082092, + 13788017734 + ], + "geometry": [ + { "lat": 40.8012041, "lon": -73.9596153 }, + { "lat": 40.8012450, "lon": -73.9597165 }, + { "lat": 40.8014005, "lon": -73.9600692 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 981687053, + "bounds": { + "minlat": 40.7287733, + "minlon": -74.0113340, + "maxlat": 40.7287813, + "maxlon": -74.0112169 + }, + "nodes": [ + 2562448026, + 246879397, + 2562448027 + ], + "geometry": [ + { "lat": 40.7287733, "lon": -74.0112169 }, + { "lat": 40.7287789, "lon": -74.0113024 }, + { "lat": 40.7287813, "lon": -74.0113340 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 981687428, + "bounds": { + "minlat": 40.7282935, + "minlon": -74.0112584, + "maxlat": 40.7287733, + "maxlon": -74.0111730 + }, + "nodes": [ + 2562448026, + 2562448016, + 2562448014, + 4379966339, + 11049420895, + 2562448012, + 2562448011 + ], + "geometry": [ + { "lat": 40.7287733, "lon": -74.0112169 }, + { "lat": 40.7284399, "lon": -74.0112551 }, + { "lat": 40.7283753, "lon": -74.0112584 }, + { "lat": 40.7283424, "lon": -74.0112495 }, + { "lat": 40.7283111, "lon": -74.0112241 }, + { "lat": 40.7282964, "lon": -74.0111983 }, + { "lat": 40.7282935, "lon": -74.0111730 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 981687430, + "bounds": { + "minlat": 40.7288667, + "minlon": -74.0112056, + "maxlat": 40.7290340, + "maxlon": -74.0111883 + }, + "nodes": [ + 9609713323, + 9609713330 + ], + "geometry": [ + { "lat": 40.7290340, "lon": -74.0111883 }, + { "lat": 40.7288667, "lon": -74.0112056 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 981878273, + "bounds": { + "minlat": 40.7314917, + "minlon": -74.0109904, + "maxlat": 40.7318385, + "maxlon": -74.0109369 + }, + "nodes": [ + 9081186899, + 9081186898, + 9081186901, + 9081186900, + 9081186899 + ], + "geometry": [ + { "lat": 40.7318385, "lon": -74.0109610 }, + { "lat": 40.7314929, "lon": -74.0109904 }, + { "lat": 40.7314917, "lon": -74.0109652 }, + { "lat": 40.7318374, "lon": -74.0109369 }, + { "lat": 40.7318385, "lon": -74.0109610 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 982319344, + "bounds": { + "minlat": 40.7142278, + "minlon": -73.9314780, + "maxlat": 40.7142560, + "maxlon": -73.9313674 + }, + "nodes": [ + 9084746097, + 12218168094, + 7477262855 + ], + "geometry": [ + { "lat": 40.7142278, "lon": -73.9314780 }, + { "lat": 40.7142470, "lon": -73.9314027 }, + { "lat": 40.7142560, "lon": -73.9313674 } + ], + "tags": { + "bicycle": "yes", + "bridge": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|right", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 983849667, + "bounds": { + "minlat": 40.7400610, + "minlon": -74.0022723, + "maxlat": 40.7404441, + "maxlon": -74.0019879 + }, + "nodes": [ + 9097308661, + 8262308759, + 42435598 + ], + "geometry": [ + { "lat": 40.7400610, "lon": -74.0022723 }, + { "lat": 40.7403803, "lon": -74.0020338 }, + { "lat": 40.7404441, "lon": -74.0019879 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 984243828, + "bounds": { + "minlat": 40.7657003, + "minlon": -73.9536706, + "maxlat": 40.7658836, + "maxlon": -73.9535379 + }, + "nodes": [ + 4205892229, + 10173093629, + 9100506061 + ], + "geometry": [ + { "lat": 40.7658836, "lon": -73.9535379 }, + { "lat": 40.7658230, "lon": -73.9535818 }, + { "lat": 40.7657003, "lon": -73.9536706 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 984374875, + "bounds": { + "minlat": 40.8478688, + "minlon": -73.9077695, + "maxlat": 40.8493446, + "maxlon": -73.9063578 + }, + "nodes": [ + 2028327981, + 2028383636, + 2028383618, + 12798385414, + 2028383644, + 12798385411, + 2028383622, + 12798385476, + 2028383646 + ], + "geometry": [ + { "lat": 40.8493446, "lon": -73.9063578 }, + { "lat": 40.8489870, "lon": -73.9066192 }, + { "lat": 40.8488407, "lon": -73.9067462 }, + { "lat": 40.8486488, "lon": -73.9069263 }, + { "lat": 40.8485925, "lon": -73.9069786 }, + { "lat": 40.8485371, "lon": -73.9070340 }, + { "lat": 40.8482521, "lon": -73.9073200 }, + { "lat": 40.8479333, "lon": -73.9076931 }, + { "lat": 40.8478688, "lon": -73.9077695 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 984374878, + "bounds": { + "minlat": 40.8450657, + "minlon": -73.9066417, + "maxlat": 40.8491155, + "maxlon": -73.9058044 + }, + "nodes": [ + 2028328032, + 9920174015, + 11492469781, + 42747315, + 11492469787, + 8571799134, + 11492469802, + 42747312, + 11492469803, + 12041068737, + 8571799137, + 12041893360, + 8571799224, + 13039046221, + 42740535, + 13039046227, + 10117419121, + 13039046218, + 42746578, + 12041872699 + ], + "geometry": [ + { "lat": 40.8491155, "lon": -73.9058044 }, + { "lat": 40.8490469, "lon": -73.9058288 }, + { "lat": 40.8484720, "lon": -73.9060298 }, + { "lat": 40.8484066, "lon": -73.9060528 }, + { "lat": 40.8483467, "lon": -73.9060735 }, + { "lat": 40.8476824, "lon": -73.9063066 }, + { "lat": 40.8476502, "lon": -73.9063178 }, + { "lat": 40.8475834, "lon": -73.9063413 }, + { "lat": 40.8475231, "lon": -73.9063604 }, + { "lat": 40.8472835, "lon": -73.9064396 }, + { "lat": 40.8472396, "lon": -73.9064488 }, + { "lat": 40.8471964, "lon": -73.9064539 }, + { "lat": 40.8468649, "lon": -73.9064831 }, + { "lat": 40.8468030, "lon": -73.9064867 }, + { "lat": 40.8467435, "lon": -73.9064938 }, + { "lat": 40.8466695, "lon": -73.9065004 }, + { "lat": 40.8452311, "lon": -73.9066271 }, + { "lat": 40.8451852, "lon": -73.9066311 }, + { "lat": 40.8451355, "lon": -73.9066355 }, + { "lat": 40.8450657, "lon": -73.9066417 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Monroe Avenue", + "name:etymology:wikidata": "Q11815", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Monroe", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 985151995, + "bounds": { + "minlat": 40.7030693, + "minlon": -73.9600891, + "maxlat": 40.7036946, + "maxlon": -73.9597364 + }, + "nodes": [ + 479715931, + 8873994765 + ], + "geometry": [ + { "lat": 40.7030693, "lon": -73.9600891 }, + { "lat": 40.7036946, "lon": -73.9597364 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11;A11;A11;A63;A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 985180522, + "bounds": { + "minlat": 40.7485258, + "minlon": -73.9116420, + "maxlat": 40.7486850, + "maxlon": -73.9101150 + }, + "nodes": [ + 42892898, + 7667084773, + 42892893 + ], + "geometry": [ + { "lat": 40.7485258, "lon": -73.9101150 }, + { "lat": 40.7485346, "lon": -73.9102322 }, + { "lat": 40.7486850, "lon": -73.9116420 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "39th Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 985218173, + "bounds": { + "minlat": 40.7488186, + "minlon": -73.9136934, + "maxlat": 40.7489287, + "maxlon": -73.9128144 + }, + "nodes": [ + 42819582, + 7671808584, + 10971338118, + 10971338115 + ], + "geometry": [ + { "lat": 40.7488186, "lon": -73.9128144 }, + { "lat": 40.7488286, "lon": -73.9129015 }, + { "lat": 40.7489259, "lon": -73.9136703 }, + { "lat": 40.7489287, "lon": -73.9136934 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "39th Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 985285508, + "bounds": { + "minlat": 40.7489398, + "minlon": -73.9146680, + "maxlat": 40.7490340, + "maxlon": -73.9137931 + }, + "nodes": [ + 42807823, + 11467993927, + 42892852, + 10971338117, + 10971338116 + ], + "geometry": [ + { "lat": 40.7490340, "lon": -73.9146680 }, + { "lat": 40.7490278, "lon": -73.9146150 }, + { "lat": 40.7490140, "lon": -73.9144980 }, + { "lat": 40.7489442, "lon": -73.9138339 }, + { "lat": 40.7489398, "lon": -73.9137931 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "39th Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 985405829, + "bounds": { + "minlat": 40.7228703, + "minlon": -73.9815557, + "maxlat": 40.7231415, + "maxlon": -73.9813576 + }, + "nodes": [ + 9109840962, + 9109840964, + 9109840963 + ], + "geometry": [ + { "lat": 40.7228703, "lon": -73.9815557 }, + { "lat": 40.7229307, "lon": -73.9815099 }, + { "lat": 40.7231415, "lon": -73.9813576 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 985415394, + "bounds": { + "minlat": 40.7248855, + "minlon": -73.9923990, + "maxlat": 40.7249108, + "maxlon": -73.9922896 + }, + "nodes": [ + 1773084410, + 42437613 + ], + "geometry": [ + { "lat": 40.7248855, "lon": -73.9922896 }, + { "lat": 40.7249108, "lon": -73.9923990 } + ], + "tags": { + "alt_name:ko": "이스트 1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 1st Street", + "name:en": "East 1st Street", + "name:ko": "이스트 1st 스트리트", + "name:ru": "Восточная 1-я стрит", + "name_1": "East 1 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 985591893, + "bounds": { + "minlat": 40.7491430, + "minlon": -73.9165210, + "maxlat": 40.7492586, + "maxlon": -73.9156000 + }, + "nodes": [ + 42859942, + 7671808579, + 11467993923, + 42892863 + ], + "geometry": [ + { "lat": 40.7491430, "lon": -73.9156000 }, + { "lat": 40.7491667, "lon": -73.9157107 }, + { "lat": 40.7492506, "lon": -73.9164503 }, + { "lat": 40.7492586, "lon": -73.9165210 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "39th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 985591895, + "bounds": { + "minlat": 40.7491430, + "minlon": -73.9156000, + "maxlat": 40.7501311, + "maxlon": -73.9154002 + }, + "nodes": [ + 42815107, + 10762234045, + 42859938, + 7667084783, + 42859942 + ], + "geometry": [ + { "lat": 40.7501311, "lon": -73.9154002 }, + { "lat": 40.7500649, "lon": -73.9154136 }, + { "lat": 40.7495360, "lon": -73.9155210 }, + { "lat": 40.7492192, "lon": -73.9155832 }, + { "lat": 40.7491430, "lon": -73.9156000 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxheight": "11'5\"", + "maxspeed": "20 mph", + "name": "48th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 985837490, + "bounds": { + "minlat": 40.8446308, + "minlon": -73.9145483, + "maxlat": 40.8448969, + "maxlon": -73.9143586 + }, + "nodes": [ + 596668857, + 2408357240 + ], + "geometry": [ + { "lat": 40.8448969, "lon": -73.9143586 }, + { "lat": 40.8446308, "lon": -73.9145483 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 986121292, + "bounds": { + "minlat": 40.7627250, + "minlon": -73.9269880, + "maxlat": 40.7676528, + "maxlon": -73.9230022 + }, + "nodes": [ + 42833321, + 6452416005, + 7677611009, + 5780073552, + 7661698542, + 42833316, + 7661698541, + 6859769339, + 6453014983, + 42833312, + 6453014984, + 8032268637, + 11649832520, + 42810494, + 2297358938, + 42833309 + ], + "geometry": [ + { "lat": 40.7627250, "lon": -73.9269880 }, + { "lat": 40.7627987, "lon": -73.9269281 }, + { "lat": 40.7630423, "lon": -73.9267302 }, + { "lat": 40.7637229, "lon": -73.9261773 }, + { "lat": 40.7650223, "lon": -73.9251235 }, + { "lat": 40.7651045, "lon": -73.9250575 }, + { "lat": 40.7651894, "lon": -73.9249894 }, + { "lat": 40.7657817, "lon": -73.9245018 }, + { "lat": 40.7659323, "lon": -73.9243788 }, + { "lat": 40.7659810, "lon": -73.9243390 }, + { "lat": 40.7660357, "lon": -73.9242945 }, + { "lat": 40.7664767, "lon": -73.9239361 }, + { "lat": 40.7669602, "lon": -73.9235433 }, + { "lat": 40.7670110, "lon": -73.9235020 }, + { "lat": 40.7675826, "lon": -73.9230437 }, + { "lat": 40.7676528, "lon": -73.9230022 } + ], + "tags": { + "highway": "residential", + "name": "29th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 986121293, + "bounds": { + "minlat": 40.7620394, + "minlon": -73.9269880, + "maxlat": 40.7627250, + "maxlon": -73.9255202 + }, + "nodes": [ + 42833321, + 6452416003, + 6452424180, + 42882973, + 6452424181, + 11186117019, + 3570249922 + ], + "geometry": [ + { "lat": 40.7627250, "lon": -73.9269880 }, + { "lat": 40.7626923, "lon": -73.9269181 }, + { "lat": 40.7623861, "lon": -73.9262629 }, + { "lat": 40.7623523, "lon": -73.9261907 }, + { "lat": 40.7623177, "lon": -73.9261165 }, + { "lat": 40.7621498, "lon": -73.9257567 }, + { "lat": 40.7620394, "lon": -73.9255202 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Broadway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 986157727, + "bounds": { + "minlat": 40.7366969, + "minlon": -73.9744992, + "maxlat": 40.7367697, + "maxlon": -73.9744597 + }, + "nodes": [ + 1728266963, + 42458017 + ], + "geometry": [ + { "lat": 40.7366969, "lon": -73.9744992 }, + { "lat": 40.7367697, "lon": -73.9744597 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "Fdr Drive Service Road East", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 986615539, + "bounds": { + "minlat": 40.7460176, + "minlon": -73.9942525, + "maxlat": 40.7462049, + "maxlon": -73.9941150 + }, + "nodes": [ + 9119739665, + 11147382160, + 42439842 + ], + "geometry": [ + { "lat": 40.7462049, "lon": -73.9941150 }, + { "lat": 40.7460654, "lon": -73.9942171 }, + { "lat": 40.7460176, "lon": -73.9942525 } + ], + "tags": { + "alt_name": "7 Avenue", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 986615540, + "bounds": { + "minlat": 40.7448186, + "minlon": -73.9942525, + "maxlat": 40.7460176, + "maxlon": -73.9914085 + }, + "nodes": [ + 42439842, + 11147382159, + 8397237737, + 10171337649, + 42430277 + ], + "geometry": [ + { "lat": 40.7460176, "lon": -73.9942525 }, + { "lat": 40.7459657, "lon": -73.9941293 }, + { "lat": 40.7450423, "lon": -73.9919405 }, + { "lat": 40.7448756, "lon": -73.9915414 }, + { "lat": 40.7448186, "lon": -73.9914085 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 986615541, + "bounds": { + "minlat": 40.7453830, + "minlon": -73.9947090, + "maxlat": 40.7460176, + "maxlon": -73.9942525 + }, + "nodes": [ + 42439842, + 11147382161, + 11147382157, + 42439840 + ], + "geometry": [ + { "lat": 40.7460176, "lon": -73.9942525 }, + { "lat": 40.7459449, "lon": -73.9943045 }, + { "lat": 40.7454490, "lon": -73.9946615 }, + { "lat": 40.7453830, "lon": -73.9947090 } + ], + "tags": { + "alt_name": "7 Avenue", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 986615542, + "bounds": { + "minlat": 40.7447650, + "minlon": -73.9951595, + "maxlat": 40.7449661, + "maxlon": -73.9950129 + }, + "nodes": [ + 9119739666, + 10171337692, + 42427426 + ], + "geometry": [ + { "lat": 40.7449661, "lon": -73.9950129 }, + { "lat": 40.7448354, "lon": -73.9951079 }, + { "lat": 40.7447650, "lon": -73.9951595 } + ], + "tags": { + "alt_name": "7 Avenue", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 986807784, + "bounds": { + "minlat": 40.7131200, + "minlon": -74.0039898, + "maxlat": 40.7134052, + "maxlon": -74.0037255 + }, + "nodes": [ + 9121386334, + 9121386337, + 12301282830 + ], + "geometry": [ + { "lat": 40.7131200, "lon": -74.0039898 }, + { "lat": 40.7131782, "lon": -74.0039330 }, + { "lat": 40.7134052, "lon": -74.0037255 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 986808853, + "bounds": { + "minlat": 40.7131550, + "minlon": -74.0044520, + "maxlat": 40.7133129, + "maxlon": -74.0041090 + }, + "nodes": [ + 12311624272, + 3942249541, + 4878831008 + ], + "geometry": [ + { "lat": 40.7133129, "lon": -74.0044520 }, + { "lat": 40.7131907, "lon": -74.0041879 }, + { "lat": 40.7131550, "lon": -74.0041090 } + ], + "tags": { + "hgv": "destination", + "highway": "unclassified", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "oneway": "no", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "right", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 986838188, + "bounds": { + "minlat": 40.7136103, + "minlon": -74.0036108, + "maxlat": 40.7136430, + "maxlon": -74.0035418 + }, + "nodes": [ + 42427278, + 9121386349 + ], + "geometry": [ + { "lat": 40.7136103, "lon": -74.0035418 }, + { "lat": 40.7136430, "lon": -74.0036108 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Reade Street", + "name:etymology:wikidata": "Q38099995", + "name:ko": "리드 스트리트", + "oneway": "yes", + "oneway:bicycle": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 986961326, + "bounds": { + "minlat": 40.7715508, + "minlon": -73.9856926, + "maxlat": 40.7716197, + "maxlon": -73.9855824 + }, + "nodes": [ + 6479461809, + 9122683600, + 9122683601, + 9122683599, + 6479461808, + 6479461809 + ], + "geometry": [ + { "lat": 40.7716197, "lon": -73.9856681 }, + { "lat": 40.7715839, "lon": -73.9855824 }, + { "lat": 40.7715508, "lon": -73.9856065 }, + { "lat": 40.7715795, "lon": -73.9856755 }, + { "lat": 40.7715866, "lon": -73.9856926 }, + { "lat": 40.7716197, "lon": -73.9856681 } + ], + "tags": { + "access": "private", + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "horse": "no", + "motor_vehicle": "no" + } +}, +{ + "type": "way", + "id": 987628955, + "bounds": { + "minlat": 40.8188825, + "minlon": -73.9344052, + "maxlat": 40.8190877, + "maxlon": -73.9343644 + }, + "nodes": [ + 371337213, + 42426971 + ], + "geometry": [ + { "lat": 40.8190877, "lon": -73.9344052 }, + { "lat": 40.8188825, "lon": -73.9343644 } + ], + "tags": { + "destination:lanes": "||Park Avenue;East 132nd Street|5th Avenue;West 142nd Street", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "turn:lanes": "|||slight_right" + } +}, +{ + "type": "way", + "id": 987643910, + "bounds": { + "minlat": 40.8824657, + "minlon": -73.9159915, + "maxlat": 40.8844679, + "maxlon": -73.9147751 + }, + "nodes": [ + 42782254, + 1581505567, + 10763690738, + 252127387, + 1581505555, + 1545532993, + 1581505529, + 1545532966, + 1545532978, + 1581505588, + 1545532985, + 10763690742, + 252127388, + 1581505539, + 10763690743, + 1545532976 + ], + "geometry": [ + { "lat": 40.8824657, "lon": -73.9159915 }, + { "lat": 40.8827053, "lon": -73.9158043 }, + { "lat": 40.8828535, "lon": -73.9156966 }, + { "lat": 40.8829900, "lon": -73.9156022 }, + { "lat": 40.8831407, "lon": -73.9155018 }, + { "lat": 40.8833115, "lon": -73.9154112 }, + { "lat": 40.8834543, "lon": -73.9153490 }, + { "lat": 40.8836166, "lon": -73.9152930 }, + { "lat": 40.8837605, "lon": -73.9152429 }, + { "lat": 40.8839018, "lon": -73.9151818 }, + { "lat": 40.8840137, "lon": -73.9151210 }, + { "lat": 40.8840973, "lon": -73.9150701 }, + { "lat": 40.8841800, "lon": -73.9150139 }, + { "lat": 40.8843009, "lon": -73.9149231 }, + { "lat": 40.8843890, "lon": -73.9148451 }, + { "lat": 40.8844679, "lon": -73.9147751 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 987643911, + "bounds": { + "minlat": 40.8816107, + "minlon": -73.9168930, + "maxlat": 40.8824657, + "maxlon": -73.9159915 + }, + "nodes": [ + 9129024053, + 12064274939, + 12064274940, + 60915214, + 12064274941, + 42782251, + 10763690737, + 1581505502, + 42782254 + ], + "geometry": [ + { "lat": 40.8816107, "lon": -73.9168930 }, + { "lat": 40.8817778, "lon": -73.9167069 }, + { "lat": 40.8819450, "lon": -73.9165194 }, + { "lat": 40.8820286, "lon": -73.9164256 }, + { "lat": 40.8821129, "lon": -73.9163323 }, + { "lat": 40.8821994, "lon": -73.9162398 }, + { "lat": 40.8822859, "lon": -73.9161528 }, + { "lat": 40.8823757, "lon": -73.9160698 }, + { "lat": 40.8824657, "lon": -73.9159915 } + ], + "tags": { + "destination:lanes": "||West 232nd Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "yes", + "turn:lanes": "||slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 987645701, + "bounds": { + "minlat": 40.7605963, + "minlon": -73.9568408, + "maxlat": 40.7610958, + "maxlon": -73.9561062 + }, + "nodes": [ + 371188320, + 9142744772, + 371189410 + ], + "geometry": [ + { "lat": 40.7610958, "lon": -73.9561062 }, + { "lat": 40.7608691, "lon": -73.9564395 }, + { "lat": 40.7605963, "lon": -73.9568408 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 987728623, + "bounds": { + "minlat": 40.7501830, + "minlon": -73.9405782, + "maxlat": 40.7507705, + "maxlon": -73.9392412 + }, + "nodes": [ + 9129797944, + 13598289379, + 6813394102, + 592643543, + 6813394108, + 592643526 + ], + "geometry": [ + { "lat": 40.7507705, "lon": -73.9405782 }, + { "lat": 40.7506988, "lon": -73.9404150 }, + { "lat": 40.7504034, "lon": -73.9397428 }, + { "lat": 40.7503744, "lon": -73.9396767 }, + { "lat": 40.7503434, "lon": -73.9396062 }, + { "lat": 40.7501830, "lon": -73.9392412 } + ], + "tags": { + "bicycle": "use_sidepath", + "destination:ref": "NY 25A;NY 25", + "destination:street": "Northern Boulevard;Queens Boulevard", + "foot": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "2", + "maxheight": "below_default", + "oneway": "yes", + "ref": "NY 25", + "sidewalk:both": "no", + "surface": "asphalt", + "turn:lanes": "through|through;slight_right" + } +}, +{ + "type": "way", + "id": 988030906, + "bounds": { + "minlat": 40.7092039, + "minlon": -73.9689197, + "maxlat": 40.7092414, + "maxlon": -73.9686493 + }, + "nodes": [ + 9132411773, + 9132411772, + 9132411771 + ], + "geometry": [ + { "lat": 40.7092039, "lon": -73.9689197 }, + { "lat": 40.7092057, "lon": -73.9687022 }, + { "lat": 40.7092414, "lon": -73.9686493 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 988030907, + "bounds": { + "minlat": 40.7092414, + "minlon": -73.9689235, + "maxlat": 40.7092764, + "maxlon": -73.9686493 + }, + "nodes": [ + 9132411771, + 9132411774, + 9132411775 + ], + "geometry": [ + { "lat": 40.7092414, "lon": -73.9686493 }, + { "lat": 40.7092764, "lon": -73.9687008 }, + { "lat": 40.7092756, "lon": -73.9689235 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 988030908, + "bounds": { + "minlat": 40.7092186, + "minlon": -73.9686493, + "maxlat": 40.7092414, + "maxlon": -73.9684687 + }, + "nodes": [ + 9132411771, + 9785653056, + 4207774907 + ], + "geometry": [ + { "lat": 40.7092414, "lon": -73.9686493 }, + { "lat": 40.7092413, "lon": -73.9685840 }, + { "lat": 40.7092186, "lon": -73.9684687 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 988500273, + "bounds": { + "minlat": 40.7581268, + "minlon": -73.9285028, + "maxlat": 40.7595483, + "maxlon": -73.9273468 + }, + "nodes": [ + 3576314065, + 6452568283, + 42849735 + ], + "geometry": [ + { "lat": 40.7595483, "lon": -73.9273468 }, + { "lat": 40.7582095, "lon": -73.9284355 }, + { "lat": 40.7581268, "lon": -73.9285028 } + ], + "tags": { + "cycleway": "track", + "highway": "secondary", + "lanes": "2", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "31st Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 988500274, + "bounds": { + "minlat": 40.7596656, + "minlon": -73.9275482, + "maxlat": 40.7598041, + "maxlon": -73.9272514 + }, + "nodes": [ + 3576314064, + 4971257833, + 42824124 + ], + "geometry": [ + { "lat": 40.7598041, "lon": -73.9275482 }, + { "lat": 40.7597250, "lon": -73.9273787 }, + { "lat": 40.7596656, "lon": -73.9272514 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "34th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 988515374, + "bounds": { + "minlat": 40.7546861, + "minlon": -73.9953826, + "maxlat": 40.7548814, + "maxlon": -73.9952392 + }, + "nodes": [ + 9137045217, + 8288270452, + 42444964 + ], + "geometry": [ + { "lat": 40.7548814, "lon": -73.9952392 }, + { "lat": 40.7547481, "lon": -73.9953395 }, + { "lat": 40.7546861, "lon": -73.9953826 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 988956475, + "bounds": { + "minlat": 40.7521950, + "minlon": -73.9778871, + "maxlat": 40.7524505, + "maxlon": -73.9775965 + }, + "nodes": [ + 100521835, + 11023021048, + 11022425826, + 100521834, + 11022425830, + 11022425827, + 11022425831, + 8122411163, + 11022425828, + 1690448976, + 11022425829, + 11029989171, + 100521831, + 9140654137 + ], + "geometry": [ + { "lat": 40.7524505, "lon": -73.9778871 }, + { "lat": 40.7523504, "lon": -73.9776441 }, + { "lat": 40.7523454, "lon": -73.9776340 }, + { "lat": 40.7523397, "lon": -73.9776248 }, + { "lat": 40.7523317, "lon": -73.9776161 }, + { "lat": 40.7523262, "lon": -73.9776107 }, + { "lat": 40.7523186, "lon": -73.9776054 }, + { "lat": 40.7523103, "lon": -73.9776013 }, + { "lat": 40.7523013, "lon": -73.9775982 }, + { "lat": 40.7522918, "lon": -73.9775965 }, + { "lat": 40.7522823, "lon": -73.9775965 }, + { "lat": 40.7522736, "lon": -73.9775975 }, + { "lat": 40.7522564, "lon": -73.9776017 }, + { "lat": 40.7521950, "lon": -73.9776221 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "primary", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed:advisory": "15 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "turn:lanes": "right", + "wikidata": "Q7137641", + "wikipedia": "en:Park Avenue Viaduct" + } +}, +{ + "type": "way", + "id": 988956476, + "bounds": { + "minlat": 40.7513353, + "minlon": -73.9782521, + "maxlat": 40.7521950, + "maxlon": -73.9776221 + }, + "nodes": [ + 561042202, + 9140654137 + ], + "geometry": [ + { "lat": 40.7513353, "lon": -73.9782521 }, + { "lat": 40.7521950, "lon": -73.9776221 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "primary", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "no", + "sidewalk": "no", + "surface": "concrete", + "wikidata": "Q7137641", + "wikipedia": "en:Park Avenue Viaduct" + } +}, +{ + "type": "way", + "id": 988977538, + "bounds": { + "minlat": 40.7483776, + "minlon": -73.9689733, + "maxlat": 40.7484144, + "maxlon": -73.9689477 + }, + "nodes": [ + 9140864932, + 9140864931 + ], + "geometry": [ + { "lat": 40.7484144, "lon": -73.9689477 }, + { "lat": 40.7483776, "lon": -73.9689733 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 988977540, + "bounds": { + "minlat": 40.7518449, + "minlon": -73.9674542, + "maxlat": 40.7519194, + "maxlon": -73.9673480 + }, + "nodes": [ + 595105581, + 4012935769 + ], + "geometry": [ + { "lat": 40.7518449, "lon": -73.9674542 }, + { "lat": 40.7519194, "lon": -73.9673480 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 988977541, + "bounds": { + "minlat": 40.7518298, + "minlon": -73.9674542, + "maxlat": 40.7518449, + "maxlon": -73.9673633 + }, + "nodes": [ + 4249006828, + 595105581 + ], + "geometry": [ + { "lat": 40.7518298, "lon": -73.9673633 }, + { "lat": 40.7518449, "lon": -73.9674542 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 988977543, + "bounds": { + "minlat": 40.7517174, + "minlon": -73.9673876, + "maxlat": 40.7517786, + "maxlon": -73.9673117 + }, + "nodes": [ + 4249006833, + 11000990927, + 3827342889, + 3827336883 + ], + "geometry": [ + { "lat": 40.7517786, "lon": -73.9673876 }, + { "lat": 40.7517499, "lon": -73.9673602 }, + { "lat": 40.7517284, "lon": -73.9673331 }, + { "lat": 40.7517174, "lon": -73.9673117 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 988977545, + "bounds": { + "minlat": 40.7520288, + "minlon": -73.9754421, + "maxlat": 40.7553471, + "maxlon": -73.9676741 + }, + "nodes": [ + 42455932, + 10998191804, + 9140864985, + 3827599085, + 3830783523, + 6175849562, + 42442948, + 10168666953, + 5319114464, + 3830786441, + 5319121991, + 12673751287, + 42449954, + 12673751285, + 10165986966, + 42446986, + 10165986969, + 8073701750, + 12834723263, + 10125233050, + 100522728, + 42457476 + ], + "geometry": [ + { "lat": 40.7520288, "lon": -73.9676741 }, + { "lat": 40.7520433, "lon": -73.9677003 }, + { "lat": 40.7520560, "lon": -73.9677246 }, + { "lat": 40.7520688, "lon": -73.9677513 }, + { "lat": 40.7522513, "lon": -73.9681679 }, + { "lat": 40.7529323, "lon": -73.9697662 }, + { "lat": 40.7529887, "lon": -73.9698972 }, + { "lat": 40.7530492, "lon": -73.9700388 }, + { "lat": 40.7531895, "lon": -73.9703706 }, + { "lat": 40.7533962, "lon": -73.9708526 }, + { "lat": 40.7535763, "lon": -73.9712678 }, + { "lat": 40.7538908, "lon": -73.9719989 }, + { "lat": 40.7539543, "lon": -73.9721493 }, + { "lat": 40.7540080, "lon": -73.9722782 }, + { "lat": 40.7545730, "lon": -73.9736383 }, + { "lat": 40.7546132, "lon": -73.9737339 }, + { "lat": 40.7546591, "lon": -73.9738410 }, + { "lat": 40.7547872, "lon": -73.9741363 }, + { "lat": 40.7551980, "lon": -73.9750879 }, + { "lat": 40.7552233, "lon": -73.9751465 }, + { "lat": 40.7552747, "lon": -73.9752679 }, + { "lat": 40.7553471, "lon": -73.9754421 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed:type": "US-NY:urban", + "name": "East 47th Street", + "name:ru": "Восточная 47-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4638574", + "wikipedia": "en:47th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 988980354, + "bounds": { + "minlat": 40.7501798, + "minlon": -73.9736027, + "maxlat": 40.7504178, + "maxlon": -73.9730335 + }, + "nodes": [ + 4202958489, + 2929098299, + 9140884594 + ], + "geometry": [ + { "lat": 40.7504178, "lon": -73.9736027 }, + { "lat": 40.7503710, "lon": -73.9734902 }, + { "lat": 40.7501798, "lon": -73.9730335 } + ], + "tags": { + "bus:lanes": "yes|designated", + "busway": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 988984235, + "bounds": { + "minlat": 40.7610471, + "minlon": -73.9753806, + "maxlat": 40.7616197, + "maxlon": -73.9749688 + }, + "nodes": [ + 9140929842, + 13706172216, + 13706172217, + 3977886859, + 42450426 + ], + "geometry": [ + { "lat": 40.7616197, "lon": -73.9749688 }, + { "lat": 40.7614373, "lon": -73.9751000 }, + { "lat": 40.7611786, "lon": -73.9752860 }, + { "lat": 40.7610997, "lon": -73.9753428 }, + { "lat": 40.7610471, "lon": -73.9753806 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 988987061, + "bounds": { + "minlat": 40.7589139, + "minlon": -73.9996835, + "maxlat": 40.7594216, + "maxlon": -73.9992068 + }, + "nodes": [ + 593839894, + 9144983242, + 9140954088, + 9421657717, + 9140954087, + 9421657546, + 9421657550, + 427804029 + ], + "geometry": [ + { "lat": 40.7589139, "lon": -73.9996835 }, + { "lat": 40.7589702, "lon": -73.9996111 }, + { "lat": 40.7590266, "lon": -73.9995356 }, + { "lat": 40.7591402, "lon": -73.9994546 }, + { "lat": 40.7593883, "lon": -73.9992778 }, + { "lat": 40.7594072, "lon": -73.9992540 }, + { "lat": 40.7594178, "lon": -73.9992326 }, + { "lat": 40.7594216, "lon": -73.9992068 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "right|right" + } +}, +{ + "type": "way", + "id": 988987062, + "bounds": { + "minlat": 40.7595158, + "minlon": -73.9992852, + "maxlat": 40.7595749, + "maxlon": -73.9991828 + }, + "nodes": [ + 42430664, + 9019680390 + ], + "geometry": [ + { "lat": 40.7595749, "lon": -73.9992852 }, + { "lat": 40.7595158, "lon": -73.9991828 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 988987066, + "bounds": { + "minlat": 40.7601736, + "minlon": -74.0016475, + "maxlat": 40.7613307, + "maxlon": -73.9988397 + }, + "nodes": [ + 42430669, + 10168212474, + 9140954084, + 6293725834, + 5542715086, + 12154605933, + 4870298749, + 9143503701, + 12154605934, + 42453545 + ], + "geometry": [ + { "lat": 40.7601736, "lon": -73.9988397 }, + { "lat": 40.7602209, "lon": -73.9989494 }, + { "lat": 40.7602391, "lon": -73.9989925 }, + { "lat": 40.7604093, "lon": -73.9993926 }, + { "lat": 40.7607805, "lon": -74.0002785 }, + { "lat": 40.7612724, "lon": -74.0014573 }, + { "lat": 40.7612917, "lon": -74.0015034 }, + { "lat": 40.7613077, "lon": -74.0015483 }, + { "lat": 40.7613202, "lon": -74.0015955 }, + { "lat": 40.7613307, "lon": -74.0016475 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 988992295, + "bounds": { + "minlat": 40.7346774, + "minlon": -73.9798916, + "maxlat": 40.7350119, + "maxlon": -73.9791401 + }, + "nodes": [ + 9141016318, + 5286408259, + 12179607167, + 3601295724, + 42439181 + ], + "geometry": [ + { "lat": 40.7346774, "lon": -73.9791401 }, + { "lat": 40.7348280, "lon": -73.9794676 }, + { "lat": 40.7349216, "lon": -73.9796885 }, + { "lat": 40.7349569, "lon": -73.9797718 }, + { "lat": 40.7350119, "lon": -73.9798916 } + ], + "tags": { + "cycleway:right": "separate", + "highway": "tertiary", + "lanes": "2", + "lanes:bus": "1", + "lanes:bus:right": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 988994177, + "bounds": { + "minlat": 40.7403717, + "minlon": -73.9726357, + "maxlat": 40.7407804, + "maxlon": -73.9724784 + }, + "nodes": [ + 8918574033, + 9141029111, + 9913607193, + 1478572209 + ], + "geometry": [ + { "lat": 40.7403717, "lon": -73.9726357 }, + { "lat": 40.7404556, "lon": -73.9725358 }, + { "lat": 40.7407220, "lon": -73.9724784 }, + { "lat": 40.7407804, "lon": -73.9725332 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:left:separation:left": "flex_post", + "cycleway:right": "shared_lane", + "highway": "service", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 988994184, + "bounds": { + "minlat": 40.7373672, + "minlon": -73.9743448, + "maxlat": 40.7375608, + "maxlon": -73.9742051 + }, + "nodes": [ + 370913758, + 9141034853 + ], + "geometry": [ + { "lat": 40.7373672, "lon": -73.9743448 }, + { "lat": 40.7375608, "lon": -73.9742051 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "South Street Viaduct", + "oneway": "yes", + "ref": "FDR", + "surface": "concrete", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 988994185, + "bounds": { + "minlat": 40.7374172, + "minlon": -73.9745040, + "maxlat": 40.7376221, + "maxlon": -73.9743428 + }, + "nodes": [ + 2985640818, + 42426865 + ], + "geometry": [ + { "lat": 40.7376221, "lon": -73.9743428 }, + { "lat": 40.7374172, "lon": -73.9745040 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "none|none|East Houston Street;Williamsburg Bridge|East 23rd Street;Baruch College", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "concrete", + "turn:lanes": "none|none|none|slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 988994186, + "bounds": { + "minlat": 40.7430523, + "minlon": -73.9720697, + "maxlat": 40.7431778, + "maxlon": -73.9719754 + }, + "nodes": [ + 4412035601, + 42445392 + ], + "geometry": [ + { "lat": 40.7430523, "lon": -73.9719754 }, + { "lat": 40.7431778, "lon": -73.9720697 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 989145094, + "bounds": { + "minlat": 40.7308911, + "minlon": -73.9739414, + "maxlat": 40.7309615, + "maxlon": -73.9739360 + }, + "nodes": [ + 4161569146, + 7147636388, + 9142398633, + 7147636389 + ], + "geometry": [ + { "lat": 40.7308911, "lon": -73.9739414 }, + { "lat": 40.7309098, "lon": -73.9739382 }, + { "lat": 40.7309343, "lon": -73.9739360 }, + { "lat": 40.7309615, "lon": -73.9739374 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "name_1": "Loisada Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 989145098, + "bounds": { + "minlat": 40.7310019, + "minlon": -73.9740778, + "maxlat": 40.7310849, + "maxlon": -73.9740570 + }, + "nodes": [ + 9142398641, + 4161568888 + ], + "geometry": [ + { "lat": 40.7310849, "lon": -73.9740778 }, + { "lat": 40.7310019, "lon": -73.9740570 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 989159058, + "bounds": { + "minlat": 40.7608900, + "minlon": -73.9561742, + "maxlat": 40.7611782, + "maxlon": -73.9558329 + }, + "nodes": [ + 371188756, + 9142584948, + 9142584947 + ], + "geometry": [ + { "lat": 40.7608900, "lon": -73.9561742 }, + { "lat": 40.7610215, "lon": -73.9560116 }, + { "lat": 40.7611782, "lon": -73.9558329 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 989194616, + "bounds": { + "minlat": 40.8695575, + "minlon": -73.9139179, + "maxlat": 40.8703282, + "maxlon": -73.9127671 + }, + "nodes": [ + 9142910493, + 9561143931, + 9142910494 + ], + "geometry": [ + { "lat": 40.8703282, "lon": -73.9139179 }, + { "lat": 40.8696183, "lon": -73.9128578 }, + { "lat": 40.8695575, "lon": -73.9127671 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 989194617, + "bounds": { + "minlat": 40.8706092, + "minlon": -73.9143750, + "maxlat": 40.8706718, + "maxlon": -73.9139315 + }, + "nodes": [ + 9142910495, + 9142910496, + 9142910497, + 9561143932, + 9142910498, + 9142910499 + ], + "geometry": [ + { "lat": 40.8706718, "lon": -73.9139315 }, + { "lat": 40.8706242, "lon": -73.9140090 }, + { "lat": 40.8706092, "lon": -73.9141366 }, + { "lat": 40.8706241, "lon": -73.9142494 }, + { "lat": 40.8706264, "lon": -73.9142670 }, + { "lat": 40.8706409, "lon": -73.9143750 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 989228450, + "bounds": { + "minlat": 40.7594216, + "minlon": -73.9992068, + "maxlat": 40.7595158, + "maxlon": -73.9991828 + }, + "nodes": [ + 9019680390, + 9143220943, + 427804029 + ], + "geometry": [ + { "lat": 40.7595158, "lon": -73.9991828 }, + { "lat": 40.7594684, "lon": -73.9991949 }, + { "lat": 40.7594216, "lon": -73.9992068 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 989228451, + "bounds": { + "minlat": 40.7586789, + "minlon": -73.9973105, + "maxlat": 40.7587259, + "maxlon": -73.9971988 + }, + "nodes": [ + 593920840, + 6905716426 + ], + "geometry": [ + { "lat": 40.7587259, "lon": -73.9973105 }, + { "lat": 40.7586789, "lon": -73.9971988 } + ], + "tags": { + "alt_name": "West 40 Street", + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 989228452, + "bounds": { + "minlat": 40.7585865, + "minlon": -73.9981326, + "maxlat": 40.7593452, + "maxlon": -73.9968491 + }, + "nodes": [ + 593920893, + 10169614495, + 9143220953, + 9421657692, + 9143220944, + 9143220945, + 9143220946, + 9143220947, + 9143220948, + 9143220949, + 9143220950, + 13048849852, + 11149329295, + 9143220951, + 593926734 + ], + "geometry": [ + { "lat": 40.7593452, "lon": -73.9968491 }, + { "lat": 40.7592906, "lon": -73.9969109 }, + { "lat": 40.7588433, "lon": -73.9974173 }, + { "lat": 40.7588189, "lon": -73.9974501 }, + { "lat": 40.7588009, "lon": -73.9974764 }, + { "lat": 40.7587624, "lon": -73.9975409 }, + { "lat": 40.7587196, "lon": -73.9976158 }, + { "lat": 40.7586850, "lon": -73.9976796 }, + { "lat": 40.7586570, "lon": -73.9977341 }, + { "lat": 40.7586260, "lon": -73.9978049 }, + { "lat": 40.7585978, "lon": -73.9978744 }, + { "lat": 40.7585909, "lon": -73.9978971 }, + { "lat": 40.7585865, "lon": -73.9979380 }, + { "lat": 40.7585890, "lon": -73.9980016 }, + { "lat": 40.7586026, "lon": -73.9981326 } + ], + "tags": { + "access": "no", + "bicycle": "no", + "bus": "yes", + "foot": "no", + "highway": "service", + "lanes:bus": "1", + "maxspeed": "25 mph", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 989261432, + "bounds": { + "minlat": 40.7698720, + "minlon": -73.9945360, + "maxlat": 40.7699411, + "maxlon": -73.9943515 + }, + "nodes": [ + 247123611, + 61275380 + ], + "geometry": [ + { "lat": 40.7698720, "lon": -73.9943515 }, + { "lat": 40.7699411, "lon": -73.9945360 } + ], + "tags": { + "bicycle": "yes", + "bicycle:lanes": "|designated||", + "cycleway": "lane", + "foot": "use_sidepath", + "highway": "unclassified", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|no|yes|yes", + "name": "West 55th Street", + "name:ru": "Западная 55-я стрит", + "name_1": "West 55 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 989265263, + "bounds": { + "minlat": 40.7606551, + "minlon": -74.0025637, + "maxlat": 40.7607102, + "maxlon": -74.0024285 + }, + "nodes": [ + 247084442, + 247084443 + ], + "geometry": [ + { "lat": 40.7606551, "lon": -74.0024285 }, + { "lat": 40.7607102, "lon": -74.0025637 } + ], + "tags": { + "highway": "service", + "name": "West 40th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 989265265, + "bounds": { + "minlat": 40.7593320, + "minlon": -74.0035533, + "maxlat": 40.7599061, + "maxlon": -74.0032263 + }, + "nodes": [ + 9143547655, + 9143547656, + 1760567000, + 1760567044, + 1760566992, + 9143547657, + 9143547658, + 1760566988 + ], + "geometry": [ + { "lat": 40.7599061, "lon": -74.0032263 }, + { "lat": 40.7596601, "lon": -74.0034229 }, + { "lat": 40.7595071, "lon": -74.0035350 }, + { "lat": 40.7594775, "lon": -74.0035460 }, + { "lat": 40.7594486, "lon": -74.0035520 }, + { "lat": 40.7594095, "lon": -74.0035533 }, + { "lat": 40.7593714, "lon": -74.0035471 }, + { "lat": 40.7593320, "lon": -74.0035421 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 989265266, + "bounds": { + "minlat": 40.7592811, + "minlon": -74.0034288, + "maxlat": 40.7601965, + "maxlon": -74.0027594 + }, + "nodes": [ + 247085079, + 247119420, + 12154605947 + ], + "geometry": [ + { "lat": 40.7601965, "lon": -74.0027594 }, + { "lat": 40.7600951, "lon": -74.0028366 }, + { "lat": 40.7592811, "lon": -74.0034288 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 989265267, + "bounds": { + "minlat": 40.7599061, + "minlon": -74.0032263, + "maxlat": 40.7603152, + "maxlon": -74.0029352 + }, + "nodes": [ + 1760566994, + 2710280632, + 9143547655 + ], + "geometry": [ + { "lat": 40.7603152, "lon": -74.0029352 }, + { "lat": 40.7601816, "lon": -74.0030377 }, + { "lat": 40.7599061, "lon": -74.0032263 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 989265268, + "bounds": { + "minlat": 40.7560193, + "minlon": -74.0017940, + "maxlat": 40.7564645, + "maxlon": -74.0014663 + }, + "nodes": [ + 42430639, + 8261122892, + 12217517288 + ], + "geometry": [ + { "lat": 40.7564645, "lon": -74.0014663 }, + { "lat": 40.7563747, "lon": -74.0015307 }, + { "lat": 40.7560193, "lon": -74.0017940 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "no", + "surface": "concrete", + "turn:lanes:forward": "none|none|through;right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 989265269, + "bounds": { + "minlat": 40.7608557, + "minlon": -73.9989027, + "maxlat": 40.7610857, + "maxlon": -73.9983473 + }, + "nodes": [ + 6293725833, + 13516165059, + 5542715080, + 42430673 + ], + "geometry": [ + { "lat": 40.7610857, "lon": -73.9989027 }, + { "lat": 40.7610611, "lon": -73.9988433 }, + { "lat": 40.7608998, "lon": -73.9984537 }, + { "lat": 40.7608557, "lon": -73.9983473 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:forward": "through|right", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 989265270, + "bounds": { + "minlat": 40.7649073, + "minlon": -73.9975936, + "maxlat": 40.7654973, + "maxlon": -73.9961932 + }, + "nodes": [ + 11017187936, + 3874681649, + 9143547670 + ], + "geometry": [ + { "lat": 40.7654973, "lon": -73.9975936 }, + { "lat": 40.7654426, "lon": -73.9974639 }, + { "lat": 40.7649073, "lon": -73.9961932 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 48th Street", + "name:ru": "Западная 48-я стрит", + "name_1": "West 48 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 989265271, + "bounds": { + "minlat": 40.7646184, + "minlon": -73.9961932, + "maxlat": 40.7649073, + "maxlon": -73.9955216 + }, + "nodes": [ + 9143547670, + 10166521646, + 42430694 + ], + "geometry": [ + { "lat": 40.7649073, "lon": -73.9961932 }, + { "lat": 40.7646879, "lon": -73.9956832 }, + { "lat": 40.7646184, "lon": -73.9955216 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 48th Street", + "name:ru": "Западная 48-я стрит", + "name_1": "West 48 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 989265272, + "bounds": { + "minlat": 40.7639924, + "minlon": -73.9959815, + "maxlat": 40.7646184, + "maxlon": -73.9955216 + }, + "nodes": [ + 42430694, + 10166521648, + 10166521642, + 42430691 + ], + "geometry": [ + { "lat": 40.7646184, "lon": -73.9955216 }, + { "lat": 40.7645636, "lon": -73.9955619 }, + { "lat": 40.7640537, "lon": -73.9959365 }, + { "lat": 40.7639924, "lon": -73.9959815 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through;right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 989265273, + "bounds": { + "minlat": 40.7646184, + "minlon": -73.9955216, + "maxlat": 40.7658780, + "maxlon": -73.9946061 + }, + "nodes": [ + 42430704, + 10111368921, + 10166521660, + 42430698, + 10166521656, + 10698841369, + 10166521652, + 42430694 + ], + "geometry": [ + { "lat": 40.7658780, "lon": -73.9946061 }, + { "lat": 40.7658197, "lon": -73.9946488 }, + { "lat": 40.7653063, "lon": -73.9950237 }, + { "lat": 40.7652498, "lon": -73.9950660 }, + { "lat": 40.7651946, "lon": -73.9951058 }, + { "lat": 40.7649679, "lon": -73.9952687 }, + { "lat": 40.7646775, "lon": -73.9954773 }, + { "lat": 40.7646184, "lon": -73.9955216 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 989265274, + "bounds": { + "minlat": 40.7658780, + "minlon": -73.9965547, + "maxlat": 40.7666943, + "maxlon": -73.9946061 + }, + "nodes": [ + 3874681652, + 4782404430, + 11866515447, + 5481838621, + 4782404429, + 10111328816, + 42430704 + ], + "geometry": [ + { "lat": 40.7666943, "lon": -73.9965547 }, + { "lat": 40.7666269, "lon": -73.9963940 }, + { "lat": 40.7665394, "lon": -73.9961850 }, + { "lat": 40.7661596, "lon": -73.9952784 }, + { "lat": 40.7659708, "lon": -73.9948276 }, + { "lat": 40.7659494, "lon": -73.9947765 }, + { "lat": 40.7658780, "lon": -73.9946061 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 50th Street", + "name:ru": "Западная 50-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 989267823, + "bounds": { + "minlat": 40.7482041, + "minlon": -74.0074153, + "maxlat": 40.7484224, + "maxlon": -74.0072425 + }, + "nodes": [ + 42422258, + 9143569914, + 9143569913 + ], + "geometry": [ + { "lat": 40.7482041, "lon": -74.0074153 }, + { "lat": 40.7483007, "lon": -74.0073407 }, + { "lat": 40.7484224, "lon": -74.0072425 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 989267824, + "bounds": { + "minlat": 40.7536056, + "minlon": -74.0070373, + "maxlat": 40.7538181, + "maxlon": -74.0065174 + }, + "nodes": [ + 9143574639, + 9143569885, + 12161224637 + ], + "geometry": [ + { "lat": 40.7536056, "lon": -74.0065174 }, + { "lat": 40.7537668, "lon": -74.0069060 }, + { "lat": 40.7538181, "lon": -74.0070373 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 989267825, + "bounds": { + "minlat": 40.7538181, + "minlon": -74.0070373, + "maxlat": 40.7544661, + "maxlon": -74.0066345 + }, + "nodes": [ + 12161224637, + 12161224635, + 247073285, + 9143569880, + 12161224634, + 61273651, + 373915205, + 12154605981, + 373915670, + 42437699 + ], + "geometry": [ + { "lat": 40.7538181, "lon": -74.0070373 }, + { "lat": 40.7538541, "lon": -74.0070194 }, + { "lat": 40.7539040, "lon": -74.0069962 }, + { "lat": 40.7539632, "lon": -74.0069683 }, + { "lat": 40.7540257, "lon": -74.0069350 }, + { "lat": 40.7541045, "lon": -74.0068859 }, + { "lat": 40.7542053, "lon": -74.0068212 }, + { "lat": 40.7543200, "lon": -74.0067431 }, + { "lat": 40.7543639, "lon": -74.0067118 }, + { "lat": 40.7544661, "lon": -74.0066345 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 989267826, + "bounds": { + "minlat": 40.7538181, + "minlon": -74.0072465, + "maxlat": 40.7538740, + "maxlon": -74.0070373 + }, + "nodes": [ + 12161224637, + 4899886584 + ], + "geometry": [ + { "lat": 40.7538181, "lon": -74.0070373 }, + { "lat": 40.7538740, "lon": -74.0072465 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 989267827, + "bounds": { + "minlat": 40.7514035, + "minlon": -74.0074052, + "maxlat": 40.7523499, + "maxlon": -74.0051771 + }, + "nodes": [ + 42430600, + 8261123026, + 4599130019 + ], + "geometry": [ + { "lat": 40.7514035, "lon": -74.0051771 }, + { "lat": 40.7514623, "lon": -74.0053198 }, + { "lat": 40.7523499, "lon": -74.0074052 } + ], + "tags": { + "alt_name": "West 27 Street", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 27th Street", + "name:ru": "Западная 27-я стрит", + "oneway": "yes", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 989267828, + "bounds": { + "minlat": 40.7501036, + "minlon": -74.0061230, + "maxlat": 40.7514035, + "maxlon": -74.0051771 + }, + "nodes": [ + 42430600, + 8261123025, + 12152904599, + 5730369215, + 42430597, + 8261123002, + 5730369218, + 42430594, + 5730369220 + ], + "geometry": [ + { "lat": 40.7514035, "lon": -74.0051771 }, + { "lat": 40.7513469, "lon": -74.0052189 }, + { "lat": 40.7508967, "lon": -74.0055515 }, + { "lat": 40.7508562, "lon": -74.0055814 }, + { "lat": 40.7508082, "lon": -74.0056216 }, + { "lat": 40.7507364, "lon": -74.0056794 }, + { "lat": 40.7502532, "lon": -74.0060184 }, + { "lat": 40.7501781, "lon": -74.0060705 }, + { "lat": 40.7501036, "lon": -74.0061230 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 989270322, + "bounds": { + "minlat": 40.7502754, + "minlon": -73.9986119, + "maxlat": 40.7509074, + "maxlon": -73.9981555 + }, + "nodes": [ + 42437688, + 10173309978, + 10171484168, + 5545401594 + ], + "geometry": [ + { "lat": 40.7509074, "lon": -73.9981555 }, + { "lat": 40.7508269, "lon": -73.9982123 }, + { "lat": 40.7503296, "lon": -73.9985740 }, + { "lat": 40.7502754, "lon": -73.9986119 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 989381742, + "bounds": { + "minlat": 40.7244198, + "minlon": -74.0060539, + "maxlat": 40.7250366, + "maxlon": -74.0059578 + }, + "nodes": [ + 4616536352, + 4890333642, + 4890333641, + 4616536348 + ], + "geometry": [ + { "lat": 40.7250366, "lon": -74.0059578 }, + { "lat": 40.7249795, "lon": -74.0059668 }, + { "lat": 40.7244785, "lon": -74.0060452 }, + { "lat": 40.7244198, "lon": -74.0060539 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "none|slight_right|slight_right", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 989390263, + "bounds": { + "minlat": 40.7019726, + "minlon": -74.0100288, + "maxlat": 40.7020631, + "maxlon": -74.0097583 + }, + "nodes": [ + 4145735057, + 9939558881, + 3790255310, + 4145735066 + ], + "geometry": [ + { "lat": 40.7020631, "lon": -74.0097583 }, + { "lat": 40.7020264, "lon": -74.0098582 }, + { "lat": 40.7020181, "lon": -74.0098807 }, + { "lat": 40.7019726, "lon": -74.0100288 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "West Street|West Street;Brooklyn-Battery Tunnel;Battery Park;Staten Island Ferry;Downtown Manhattan Heliport", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "30 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "South Street Viaduct", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "turn:lanes": "through|through;right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 989390264, + "bounds": { + "minlat": 40.7015123, + "minlon": -74.0119682, + "maxlat": 40.7019726, + "maxlon": -74.0100288 + }, + "nodes": [ + 4145735066, + 9181607972, + 205021626, + 8110710263, + 4149739462 + ], + "geometry": [ + { "lat": 40.7019726, "lon": -74.0100288 }, + { "lat": 40.7019118, "lon": -74.0102318 }, + { "lat": 40.7018684, "lon": -74.0103945 }, + { "lat": 40.7018314, "lon": -74.0105425 }, + { "lat": 40.7015123, "lon": -74.0119682 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 989390266, + "bounds": { + "minlat": 40.7017865, + "minlon": -74.0111627, + "maxlat": 40.7019381, + "maxlon": -74.0105080 + }, + "nodes": [ + 4147546533, + 42431902 + ], + "geometry": [ + { "lat": 40.7019381, "lon": -74.0105080 }, + { "lat": 40.7017865, "lon": -74.0111627 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 989390267, + "bounds": { + "minlat": 40.7020473, + "minlon": -74.0100785, + "maxlat": 40.7022883, + "maxlon": -74.0094947 + }, + "nodes": [ + 4145794861, + 42444206, + 4145794858, + 1251359554, + 42433846 + ], + "geometry": [ + { "lat": 40.7022883, "lon": -74.0094947 }, + { "lat": 40.7022134, "lon": -74.0096469 }, + { "lat": 40.7021571, "lon": -74.0097805 }, + { "lat": 40.7021028, "lon": -74.0099209 }, + { "lat": 40.7020473, "lon": -74.0100785 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 19:00-24:00)", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 989675595, + "bounds": { + "minlat": 40.7144188, + "minlon": -73.9306883, + "maxlat": 40.7144439, + "maxlon": -73.9305759 + }, + "nodes": [ + 9146235532, + 5330321644 + ], + "geometry": [ + { "lat": 40.7144188, "lon": -73.9306883 }, + { "lat": 40.7144439, "lon": -73.9305759 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 989791207, + "bounds": { + "minlat": 40.7478756, + "minlon": -73.9754367, + "maxlat": 40.7485092, + "maxlon": -73.9749721 + }, + "nodes": [ + 42453999, + 9987259765, + 12187390439, + 9987259766, + 42445664 + ], + "geometry": [ + { "lat": 40.7478756, "lon": -73.9754367 }, + { "lat": 40.7479441, "lon": -73.9753865 }, + { "lat": 40.7484235, "lon": -73.9750350 }, + { "lat": 40.7484483, "lon": -73.9750168 }, + { "lat": 40.7485092, "lon": -73.9749721 } + ], + "tags": { + "highway": "unclassified", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Tunnel Exit Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through" + } +}, +{ + "type": "way", + "id": 989791208, + "bounds": { + "minlat": 40.7485092, + "minlon": -73.9758481, + "maxlat": 40.7488906, + "maxlon": -73.9749721 + }, + "nodes": [ + 42445664, + 9147322862, + 12187343199, + 9147322863, + 42445661 + ], + "geometry": [ + { "lat": 40.7485092, "lon": -73.9749721 }, + { "lat": 40.7485363, "lon": -73.9750343 }, + { "lat": 40.7487898, "lon": -73.9756167 }, + { "lat": 40.7488195, "lon": -73.9756848 }, + { "lat": 40.7488906, "lon": -73.9758481 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 989793292, + "bounds": { + "minlat": 40.7470801, + "minlon": -73.9806200, + "maxlat": 40.7476558, + "maxlon": -73.9792550 + }, + "nodes": [ + 42434954, + 10171137627, + 12183285335, + 8996587931, + 12181374927 + ], + "geometry": [ + { "lat": 40.7470801, "lon": -73.9792550 }, + { "lat": 40.7471192, "lon": -73.9793478 }, + { "lat": 40.7471602, "lon": -73.9794448 }, + { "lat": 40.7472138, "lon": -73.9795720 }, + { "lat": 40.7476558, "lon": -73.9806200 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 35th Street", + "name:ru": "Восточная 35-я стрит", + "name_1": "East 35 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 989793293, + "bounds": { + "minlat": 40.7470461, + "minlon": -73.9812660, + "maxlat": 40.7477174, + "maxlon": -73.9807655 + }, + "nodes": [ + 3786901743, + 8119462456, + 13677213620, + 12181374929, + 11336685984, + 42434951 + ], + "geometry": [ + { "lat": 40.7470461, "lon": -73.9812660 }, + { "lat": 40.7471348, "lon": -73.9811908 }, + { "lat": 40.7473364, "lon": -73.9810436 }, + { "lat": 40.7476200, "lon": -73.9808366 }, + { "lat": 40.7476552, "lon": -73.9808109 }, + { "lat": 40.7477174, "lon": -73.9807655 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 989793294, + "bounds": { + "minlat": 40.7476558, + "minlon": -73.9809560, + "maxlat": 40.7477980, + "maxlon": -73.9806200 + }, + "nodes": [ + 12181374927, + 11336685982, + 42434951, + 12181374928, + 561042191 + ], + "geometry": [ + { "lat": 40.7476558, "lon": -73.9806200 }, + { "lat": 40.7476775, "lon": -73.9806713 }, + { "lat": 40.7477174, "lon": -73.9807655 }, + { "lat": 40.7477711, "lon": -73.9808926 }, + { "lat": 40.7477980, "lon": -73.9809560 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 35th Street", + "name:ru": "Восточная 35-я стрит", + "name_1": "East 35 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 989793295, + "bounds": { + "minlat": 40.7471247, + "minlon": -73.9814539, + "maxlat": 40.7477980, + "maxlon": -73.9809560 + }, + "nodes": [ + 561042191, + 11336685986, + 12181374924, + 8119462434, + 561042190 + ], + "geometry": [ + { "lat": 40.7477980, "lon": -73.9809560 }, + { "lat": 40.7477349, "lon": -73.9810007 }, + { "lat": 40.7472673, "lon": -73.9813516 }, + { "lat": 40.7472179, "lon": -73.9813870 }, + { "lat": 40.7471247, "lon": -73.9814539 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 989895232, + "bounds": { + "minlat": 40.8020834, + "minlon": -73.9379787, + "maxlat": 40.8023065, + "maxlon": -73.9375991 + }, + "nodes": [ + 9148335673, + 11296628891, + 9148335674, + 9148335675, + 9148335676, + 9148335677, + 9148335678 + ], + "geometry": [ + { "lat": 40.8020834, "lon": -73.9379787 }, + { "lat": 40.8021423, "lon": -73.9379357 }, + { "lat": 40.8021631, "lon": -73.9379205 }, + { "lat": 40.8022708, "lon": -73.9378296 }, + { "lat": 40.8022929, "lon": -73.9377901 }, + { "lat": 40.8023065, "lon": -73.9377362 }, + { "lat": 40.8022529, "lon": -73.9375991 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 990068382, + "bounds": { + "minlat": 40.7160364, + "minlon": -74.0039501, + "maxlat": 40.7160997, + "maxlon": -74.0038958 + }, + "nodes": [ + 9149294704, + 9149294697, + 9149294706 + ], + "geometry": [ + { "lat": 40.7160997, "lon": -74.0038958 }, + { "lat": 40.7160824, "lon": -74.0039121 }, + { "lat": 40.7160364, "lon": -74.0039501 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 990219223, + "bounds": { + "minlat": 40.7999836, + "minlon": -73.9586275, + "maxlat": 40.8001174, + "maxlon": -73.9585194 + }, + "nodes": [ + 42435343, + 10171241039, + 9150529698 + ], + "geometry": [ + { "lat": 40.7999836, "lon": -73.9586275 }, + { "lat": 40.8000524, "lon": -73.9585775 }, + { "lat": 40.8001174, "lon": -73.9585194 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "4", + "lit": "yes", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990228161, + "bounds": { + "minlat": 40.8266582, + "minlon": -73.9354680, + "maxlat": 40.8267175, + "maxlon": -73.9353305 + }, + "nodes": [ + 7477194679, + 12739219135, + 7477194680 + ], + "geometry": [ + { "lat": 40.8267175, "lon": -73.9354680 }, + { "lat": 40.8267011, "lon": -73.9354300 }, + { "lat": 40.8266582, "lon": -73.9353305 } + ], + "tags": { + "bridge": "yes", + "highway": "unclassified", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "West 153rd Street", + "name_1": "West 153 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West 153rd;153rd", + "tiger:name_base_1": "153", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 990228162, + "bounds": { + "minlat": 40.8266348, + "minlon": -73.9353305, + "maxlat": 40.8266582, + "maxlon": -73.9352723 + }, + "nodes": [ + 7477194680, + 371337227 + ], + "geometry": [ + { "lat": 40.8266582, "lon": -73.9353305 }, + { "lat": 40.8266348, "lon": -73.9352723 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 153rd Street", + "name_1": "West 153 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West 153rd;153rd", + "tiger:name_base_1": "153", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 990228163, + "bounds": { + "minlat": 40.8267175, + "minlon": -73.9355215, + "maxlat": 40.8267401, + "maxlon": -73.9354680 + }, + "nodes": [ + 371337226, + 7477194679 + ], + "geometry": [ + { "lat": 40.8267401, "lon": -73.9355215 }, + { "lat": 40.8267175, "lon": -73.9354680 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 153rd Street", + "name_1": "West 153 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West 153rd;153rd", + "tiger:name_base_1": "153", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 990288467, + "bounds": { + "minlat": 40.7733899, + "minlon": -73.9931589, + "maxlat": 40.7744006, + "maxlon": -73.9924462 + }, + "nodes": [ + 9151174953, + 9151174954 + ], + "geometry": [ + { "lat": 40.7744006, "lon": -73.9924462 }, + { "lat": 40.7733899, "lon": -73.9931589 } + ], + "tags": { + "alt_name": "12th Avenue", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "layer": "1", + "maxspeed": "40 mph", + "name": "West Side Highway", + "name:ru": "Вест-Сайд-Хайвей", + "not:name": "Henry Hudson Parkway", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "source:name": "https://en.wikipedia.org/wiki/West_Side_Highway" + } +}, +{ + "type": "way", + "id": 990288468, + "bounds": { + "minlat": 40.7722013, + "minlon": -73.9940383, + "maxlat": 40.7733899, + "maxlon": -73.9931589 + }, + "nodes": [ + 9151174954, + 61270472, + 61272996 + ], + "geometry": [ + { "lat": 40.7733899, "lon": -73.9931589 }, + { "lat": 40.7733719, "lon": -73.9931716 }, + { "lat": 40.7722013, "lon": -73.9940383 } + ], + "tags": { + "alt_name": "12th Avenue", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "5", + "layer": "1", + "maxspeed": "40 mph", + "name": "West Side Highway", + "name:ru": "Вест-Сайд-Хайвей", + "not:name": "Henry Hudson Parkway", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "source:name": "https://en.wikipedia.org/wiki/West_Side_Highway" + } +}, +{ + "type": "way", + "id": 990626891, + "bounds": { + "minlat": 40.7994668, + "minlon": -73.9553630, + "maxlat": 40.7998693, + "maxlon": -73.9550751 + }, + "nodes": [ + 9153603240, + 7784826664, + 42433743 + ], + "geometry": [ + { "lat": 40.7998693, "lon": -73.9550751 }, + { "lat": 40.7995518, "lon": -73.9553022 }, + { "lat": 40.7994668, "lon": -73.9553630 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990626892, + "bounds": { + "minlat": 40.7994068, + "minlon": -73.9552205, + "maxlat": 40.7996476, + "maxlon": -73.9550310 + }, + "nodes": [ + 2141026499, + 7784826663, + 9153603241 + ], + "geometry": [ + { "lat": 40.7994068, "lon": -73.9552205 }, + { "lat": 40.7994899, "lon": -73.9551551 }, + { "lat": 40.7996476, "lon": -73.9550310 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990626893, + "bounds": { + "minlat": 40.8000053, + "minlon": -73.9576916, + "maxlat": 40.8012375, + "maxlon": -73.9547684 + }, + "nodes": [ + 2141026500, + 42446728, + 9150563667, + 5481882809, + 10171241031, + 42435743 + ], + "geometry": [ + { "lat": 40.8000053, "lon": -73.9547684 }, + { "lat": 40.8000749, "lon": -73.9549272 }, + { "lat": 40.8001222, "lon": -73.9550395 }, + { "lat": 40.8008570, "lon": -73.9567838 }, + { "lat": 40.8011928, "lon": -73.9575850 }, + { "lat": 40.8012375, "lon": -73.9576916 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "name": "West 111th Street", + "name:ru": "Западная 111-я стрит", + "name_1": "West 111 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 990626894, + "bounds": { + "minlat": 40.7996476, + "minlon": -73.9550310, + "maxlat": 40.8000053, + "maxlon": -73.9547684 + }, + "nodes": [ + 9153603241, + 10177600401, + 2141026500 + ], + "geometry": [ + { "lat": 40.7996476, "lon": -73.9550310 }, + { "lat": 40.7999479, "lon": -73.9548106 }, + { "lat": 40.8000053, "lon": -73.9547684 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990626895, + "bounds": { + "minlat": 40.7998693, + "minlon": -73.9550751, + "maxlat": 40.8006953, + "maxlon": -73.9544809 + }, + "nodes": [ + 42437211, + 10171043060, + 10177600393, + 42446728, + 10177600402, + 9153603240 + ], + "geometry": [ + { "lat": 40.8006953, "lon": -73.9544809 }, + { "lat": 40.8006488, "lon": -73.9545144 }, + { "lat": 40.8001323, "lon": -73.9548859 }, + { "lat": 40.8000749, "lon": -73.9549272 }, + { "lat": 40.8000150, "lon": -73.9549703 }, + { "lat": 40.7998693, "lon": -73.9550751 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990626896, + "bounds": { + "minlat": 40.8006953, + "minlon": -73.9544809, + "maxlat": 40.8010553, + "maxlon": -73.9542177 + }, + "nodes": [ + 9153603242, + 10171043063, + 42437211 + ], + "geometry": [ + { "lat": 40.8010553, "lon": -73.9542177 }, + { "lat": 40.8007515, "lon": -73.9544398 }, + { "lat": 40.8006953, "lon": -73.9544809 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990626897, + "bounds": { + "minlat": 40.8021620, + "minlon": -73.9531914, + "maxlat": 40.8025132, + "maxlon": -73.9529374 + }, + "nodes": [ + 9153603243, + 10170606877, + 2141026546 + ], + "geometry": [ + { "lat": 40.8021620, "lon": -73.9531914 }, + { "lat": 40.8024592, "lon": -73.9529764 }, + { "lat": 40.8025132, "lon": -73.9529374 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990626898, + "bounds": { + "minlat": 40.8025132, + "minlon": -73.9582498, + "maxlat": 40.8047385, + "maxlon": -73.9529374 + }, + "nodes": [ + 2141026546, + 42446775, + 8758287378, + 10173400458, + 42435761, + 10173400461, + 10187643801, + 42446778, + 10187643803, + 8151881622, + 10165996995, + 9150563658, + 7732243546 + ], + "geometry": [ + { "lat": 40.8025132, "lon": -73.9529374 }, + { "lat": 40.8025813, "lon": -73.9530992 }, + { "lat": 40.8026310, "lon": -73.9532175 }, + { "lat": 40.8036956, "lon": -73.9557450 }, + { "lat": 40.8037455, "lon": -73.9558634 }, + { "lat": 40.8037922, "lon": -73.9559736 }, + { "lat": 40.8043203, "lon": -73.9572196 }, + { "lat": 40.8043600, "lon": -73.9573132 }, + { "lat": 40.8044009, "lon": -73.9574101 }, + { "lat": 40.8046822, "lon": -73.9580792 }, + { "lat": 40.8047090, "lon": -73.9581492 }, + { "lat": 40.8047237, "lon": -73.9581890 }, + { "lat": 40.8047385, "lon": -73.9582498 } + ], + "tags": { + "highway": "residential", + "name": "West 115th Street", + "name:ru": "Западная 115-я стрит", + "name_1": "West 115 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 990626899, + "bounds": { + "minlat": 40.8026500, + "minlon": -73.9528376, + "maxlat": 40.8028342, + "maxlon": -73.9527034 + }, + "nodes": [ + 9684399425, + 4207716482 + ], + "geometry": [ + { "lat": 40.8026500, "lon": -73.9528376 }, + { "lat": 40.8028342, "lon": -73.9527034 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990626912, + "bounds": { + "minlat": 40.8022881, + "minlon": -73.9533135, + "maxlat": 40.8032537, + "maxlon": -73.9526080 + }, + "nodes": [ + 42432889, + 10171493831, + 10170606874, + 42446775, + 10170606878, + 9153603252 + ], + "geometry": [ + { "lat": 40.8032537, "lon": -73.9526080 }, + { "lat": 40.8031710, "lon": -73.9526684 }, + { "lat": 40.8026380, "lon": -73.9530578 }, + { "lat": 40.8025813, "lon": -73.9530992 }, + { "lat": 40.8025259, "lon": -73.9531398 }, + { "lat": 40.8022881, "lon": -73.9533135 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990626913, + "bounds": { + "minlat": 40.8019538, + "minlon": -73.9535577, + "maxlat": 40.8022881, + "maxlon": -73.9533135 + }, + "nodes": [ + 9153603252, + 10170606863, + 42448506 + ], + "geometry": [ + { "lat": 40.8022881, "lon": -73.9533135 }, + { "lat": 40.8020130, "lon": -73.9535145 }, + { "lat": 40.8019538, "lon": -73.9535577 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990626914, + "bounds": { + "minlat": 40.8019538, + "minlon": -73.9563200, + "maxlat": 40.8031162, + "maxlon": -73.9535577 + }, + "nodes": [ + 42435755, + 11298975874, + 3910057563, + 3910057564, + 3910057568, + 3910057567, + 8758287379, + 42448506 + ], + "geometry": [ + { "lat": 40.8031162, "lon": -73.9563200 }, + { "lat": 40.8030714, "lon": -73.9562134 }, + { "lat": 40.8029346, "lon": -73.9558874 }, + { "lat": 40.8029177, "lon": -73.9558478 }, + { "lat": 40.8024514, "lon": -73.9547384 }, + { "lat": 40.8021629, "lon": -73.9540522 }, + { "lat": 40.8020002, "lon": -73.9536671 }, + { "lat": 40.8019538, "lon": -73.9535577 } + ], + "tags": { + "highway": "residential", + "name": "West 114th Street", + "name:ru": "Западная 114-я стрит", + "name_1": "West 114 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 990626917, + "bounds": { + "minlat": 40.8190607, + "minlon": -73.9408456, + "maxlat": 40.8199987, + "maxlon": -73.9401669 + }, + "nodes": [ + 2141026514, + 9557104483, + 9557104481, + 2141026536, + 9557086578, + 9153603255 + ], + "geometry": [ + { "lat": 40.8190607, "lon": -73.9408456 }, + { "lat": 40.8191154, "lon": -73.9408060 }, + { "lat": 40.8196342, "lon": -73.9404306 }, + { "lat": 40.8196887, "lon": -73.9403912 }, + { "lat": 40.8197475, "lon": -73.9403487 }, + { "lat": 40.8199987, "lon": -73.9401669 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990626918, + "bounds": { + "minlat": 40.8191777, + "minlon": -73.9399427, + "maxlat": 40.8203089, + "maxlon": -73.9372632 + }, + "nodes": [ + 42440385, + 9557086594, + 8758299313, + 2141026502 + ], + "geometry": [ + { "lat": 40.8191777, "lon": -73.9372632 }, + { "lat": 40.8192177, "lon": -73.9373582 }, + { "lat": 40.8202638, "lon": -73.9398379 }, + { "lat": 40.8203089, "lon": -73.9399427 } + ], + "tags": { + "highway": "residential", + "name": "West 143rd Street", + "name_1": "West 143 Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 990626919, + "bounds": { + "minlat": 40.8199987, + "minlon": -73.9401669, + "maxlat": 40.8203089, + "maxlon": -73.9399427 + }, + "nodes": [ + 9153603255, + 9557086581, + 2141026502 + ], + "geometry": [ + { "lat": 40.8199987, "lon": -73.9401669 }, + { "lat": 40.8202585, "lon": -73.9399791 }, + { "lat": 40.8203089, "lon": -73.9399427 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990626920, + "bounds": { + "minlat": 40.8247731, + "minlon": -73.9366870, + "maxlat": 40.8249149, + "maxlon": -73.9365846 + }, + "nodes": [ + 2141026522, + 10177607152, + 10564565153, + 8695926123 + ], + "geometry": [ + { "lat": 40.8247731, "lon": -73.9366870 }, + { "lat": 40.8248327, "lon": -73.9366441 }, + { "lat": 40.8248483, "lon": -73.9366327 }, + { "lat": 40.8249149, "lon": -73.9365846 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990628955, + "bounds": { + "minlat": 40.8260626, + "minlon": -73.9358564, + "maxlat": 40.8263097, + "maxlon": -73.9356686 + }, + "nodes": [ + 9153608660, + 9150629567, + 2141002593 + ], + "geometry": [ + { "lat": 40.8263097, "lon": -73.9356686 }, + { "lat": 40.8261249, "lon": -73.9358061 }, + { "lat": 40.8260626, "lon": -73.9358564 } + ], + "tags": { + "alt_name": "7th Avenue", + "cutting": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "oneway": "no", + "sidewalk": "no", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "tiger:cfcc": "A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes:forward": "reverse|through", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990635625, + "bounds": { + "minlat": 40.7377249, + "minlon": -73.9571806, + "maxlat": 40.7382462, + "maxlon": -73.9564614 + }, + "nodes": [ + 9153637233, + 9153637237, + 11921616883, + 9153637232, + 11921616884, + 11921616881, + 9153637231, + 11921616882, + 9153637230, + 9153637229, + 9153637237 + ], + "geometry": [ + { "lat": 40.7377249, "lon": -73.9564614 }, + { "lat": 40.7381729, "lon": -73.9569269 }, + { "lat": 40.7382339, "lon": -73.9569926 }, + { "lat": 40.7382462, "lon": -73.9570222 }, + { "lat": 40.7382352, "lon": -73.9570700 }, + { "lat": 40.7381775, "lon": -73.9571709 }, + { "lat": 40.7381620, "lon": -73.9571806 }, + { "lat": 40.7381365, "lon": -73.9571714 }, + { "lat": 40.7380973, "lon": -73.9571307 }, + { "lat": 40.7380955, "lon": -73.9570786 }, + { "lat": 40.7381729, "lon": -73.9569269 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 990639823, + "bounds": { + "minlat": 40.8090357, + "minlon": -73.9348726, + "maxlat": 40.8095517, + "maxlon": -73.9347341 + }, + "nodes": [ + 5959713759, + 5959713758, + 9153700010, + 371337150 + ], + "geometry": [ + { "lat": 40.8090357, "lon": -73.9347341 }, + { "lat": 40.8092368, "lon": -73.9347988 }, + { "lat": 40.8094451, "lon": -73.9348515 }, + { "lat": 40.8095517, "lon": -73.9348726 } + ], + "tags": { + "destination:lanes": "8th Avenue;West 155th Street|none|none|East 135th Street;Madison Avenue Bridge", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "lit": "yes", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "smoothness": "good", + "surface": "concrete", + "turn:lanes": "none|none|none|slight_right" + } +}, +{ + "type": "way", + "id": 990640276, + "bounds": { + "minlat": 40.8039145, + "minlon": -73.9320106, + "maxlat": 40.8039936, + "maxlon": -73.9311626 + }, + "nodes": [ + 3786728788, + 9153698171, + 9153698172, + 9153698173, + 9153698174, + 9153698175, + 9153698176, + 9153698177, + 9153698178 + ], + "geometry": [ + { "lat": 40.8039604, "lon": -73.9320106 }, + { "lat": 40.8039202, "lon": -73.9317298 }, + { "lat": 40.8039145, "lon": -73.9316364 }, + { "lat": 40.8039165, "lon": -73.9315584 }, + { "lat": 40.8039208, "lon": -73.9314769 }, + { "lat": 40.8039337, "lon": -73.9313933 }, + { "lat": 40.8039498, "lon": -73.9313140 }, + { "lat": 40.8039692, "lon": -73.9312393 }, + { "lat": 40.8039936, "lon": -73.9311626 } + ], + "tags": { + "destination": "Marginal Street", + "highway": "service", + "lanes": "1", + "name": "Marginal Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 990640277, + "bounds": { + "minlat": 40.8039936, + "minlon": -73.9311626, + "maxlat": 40.8041560, + "maxlon": -73.9307603 + }, + "nodes": [ + 9153698178, + 9153698179, + 9153698180 + ], + "geometry": [ + { "lat": 40.8039936, "lon": -73.9311626 }, + { "lat": 40.8040147, "lon": -73.9311070 }, + { "lat": 40.8041560, "lon": -73.9307603 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "layer": "-1", + "name": "Marginal Street", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 990640278, + "bounds": { + "minlat": 40.8039434, + "minlon": -73.9311128, + "maxlat": 40.8040726, + "maxlon": -73.9307123 + }, + "nodes": [ + 9153698183, + 9153698184 + ], + "geometry": [ + { "lat": 40.8040726, "lon": -73.9307123 }, + { "lat": 40.8039434, "lon": -73.9311128 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "layer": "-1", + "name": "Marginal Street", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 990640280, + "bounds": { + "minlat": 40.8034994, + "minlon": -73.9313300, + "maxlat": 40.8039434, + "maxlon": -73.9311128 + }, + "nodes": [ + 9153698184, + 9153698185, + 9153698186, + 9153698187, + 9153698188, + 9153698189, + 9153698190, + 9153698191, + 9153698192, + 9153698193, + 9153698194, + 9153698195, + 9153698196 + ], + "geometry": [ + { "lat": 40.8039434, "lon": -73.9311128 }, + { "lat": 40.8039306, "lon": -73.9311380 }, + { "lat": 40.8039097, "lon": -73.9311745 }, + { "lat": 40.8038801, "lon": -73.9312130 }, + { "lat": 40.8038476, "lon": -73.9312494 }, + { "lat": 40.8038127, "lon": -73.9312794 }, + { "lat": 40.8037730, "lon": -73.9313049 }, + { "lat": 40.8037362, "lon": -73.9313206 }, + { "lat": 40.8036943, "lon": -73.9313287 }, + { "lat": 40.8036571, "lon": -73.9313300 }, + { "lat": 40.8036188, "lon": -73.9313276 }, + { "lat": 40.8035531, "lon": -73.9313186 }, + { "lat": 40.8034994, "lon": -73.9313055 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "name": "Marginal Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 990643310, + "bounds": { + "minlat": 40.8027638, + "minlon": -73.9335768, + "maxlat": 40.8030320, + "maxlon": -73.9333779 + }, + "nodes": [ + 5161751674, + 8741475159, + 4980799123, + 42443116 + ], + "geometry": [ + { "lat": 40.8030320, "lon": -73.9333779 }, + { "lat": 40.8028887, "lon": -73.9334841 }, + { "lat": 40.8028511, "lon": -73.9335120 }, + { "lat": 40.8027638, "lon": -73.9335768 } + ], + "tags": { + "alt_name:ko": "2번가", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "turn:lanes": "left|left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 990651424, + "bounds": { + "minlat": 40.7986850, + "minlon": -73.9246252, + "maxlat": 40.7990796, + "maxlon": -73.9237419 + }, + "nodes": [ + 9153831826, + 9153831829, + 9153831830, + 9153831831, + 9153831832, + 9153831833, + 9153831834, + 9153831835, + 9153831836 + ], + "geometry": [ + { "lat": 40.7986850, "lon": -73.9237419 }, + { "lat": 40.7987866, "lon": -73.9238010 }, + { "lat": 40.7988805, "lon": -73.9239050 }, + { "lat": 40.7990011, "lon": -73.9241277 }, + { "lat": 40.7990196, "lon": -73.9241741 }, + { "lat": 40.7990391, "lon": -73.9242392 }, + { "lat": 40.7990508, "lon": -73.9242991 }, + { "lat": 40.7990602, "lon": -73.9243777 }, + { "lat": 40.7990796, "lon": -73.9246252 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "2", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 990925723, + "bounds": { + "minlat": 40.8287229, + "minlon": -73.9219098, + "maxlat": 40.8296298, + "maxlon": -73.9214003 + }, + "nodes": [ + 10126973902, + 13533563285, + 10126985450 + ], + "geometry": [ + { "lat": 40.8296298, "lon": -73.9214003 }, + { "lat": 40.8287661, "lon": -73.9218870 }, + { "lat": 40.8287229, "lon": -73.9219098 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 990925724, + "bounds": { + "minlat": 40.8285068, + "minlon": -73.9220236, + "maxlat": 40.8287229, + "maxlon": -73.9219098 + }, + "nodes": [ + 10126985450, + 10126985438, + 2408446156 + ], + "geometry": [ + { "lat": 40.8287229, "lon": -73.9219098 }, + { "lat": 40.8285848, "lon": -73.9219825 }, + { "lat": 40.8285068, "lon": -73.9220236 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 990925725, + "bounds": { + "minlat": 40.8270302, + "minlon": -73.9228486, + "maxlat": 40.8277260, + "maxlon": -73.9224630 + }, + "nodes": [ + 2821981636, + 12688831315, + 5762096225, + 2408446193 + ], + "geometry": [ + { "lat": 40.8277260, "lon": -73.9224630 }, + { "lat": 40.8271464, "lon": -73.9227841 }, + { "lat": 40.8271032, "lon": -73.9228081 }, + { "lat": 40.8270302, "lon": -73.9228486 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 990925726, + "bounds": { + "minlat": 40.8267602, + "minlon": -73.9232528, + "maxlat": 40.8268831, + "maxlon": -73.9227803 + }, + "nodes": [ + 9155871820, + 12163704721, + 9910729394, + 9910729395, + 12163704733, + 13246334376, + 5762096227, + 2408448900 + ], + "geometry": [ + { "lat": 40.8268831, "lon": -73.9232528 }, + { "lat": 40.8268609, "lon": -73.9231820 }, + { "lat": 40.8268391, "lon": -73.9231052 }, + { "lat": 40.8268161, "lon": -73.9230164 }, + { "lat": 40.8268017, "lon": -73.9229575 }, + { "lat": 40.8267890, "lon": -73.9229036 }, + { "lat": 40.8267835, "lon": -73.9228783 }, + { "lat": 40.8267602, "lon": -73.9227803 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 990929552, + "bounds": { + "minlat": 40.8301559, + "minlon": -73.9284799, + "maxlat": 40.8302231, + "maxlon": -73.9284461 + }, + "nodes": [ + 2912071090, + 7594160288 + ], + "geometry": [ + { "lat": 40.8302231, "lon": -73.9284799 }, + { "lat": 40.8301559, "lon": -73.9284461 } + ], + "tags": { + "foot": "no", + "highway": "residential", + "name": "Anderson Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 991043394, + "bounds": { + "minlat": 40.7987505, + "minlon": -73.9212861, + "maxlat": 40.7988273, + "maxlon": -73.9212178 + }, + "nodes": [ + 2054405689, + 3607948344 + ], + "geometry": [ + { "lat": 40.7988273, "lon": -73.9212178 }, + { "lat": 40.7987505, "lon": -73.9212861 } + ], + "tags": { + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 991043395, + "bounds": { + "minlat": 40.7987505, + "minlon": -73.9217445, + "maxlat": 40.7991781, + "maxlon": -73.9212861 + }, + "nodes": [ + 7937558691, + 3640160564, + 9153856259, + 277482074, + 12998425186, + 3607948344 + ], + "geometry": [ + { "lat": 40.7991781, "lon": -73.9217445 }, + { "lat": 40.7990180, "lon": -73.9215519 }, + { "lat": 40.7989294, "lon": -73.9214546 }, + { "lat": 40.7988384, "lon": -73.9213627 }, + { "lat": 40.7987968, "lon": -73.9213263 }, + { "lat": 40.7987505, "lon": -73.9212861 } + ], + "tags": { + "destination": "Manhattan", + "highway": "unclassified", + "name": "Bronx Shore Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 991043396, + "bounds": { + "minlat": 40.7991781, + "minlon": -73.9220479, + "maxlat": 40.7993888, + "maxlon": -73.9217445 + }, + "nodes": [ + 7734748127, + 9153856260, + 7937558691 + ], + "geometry": [ + { "lat": 40.7993888, "lon": -73.9220479 }, + { "lat": 40.7992739, "lon": -73.9218781 }, + { "lat": 40.7991781, "lon": -73.9217445 } + ], + "tags": { + "destination": "Manhattan", + "highway": "unclassified", + "name": "Bronx Shore Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 991043397, + "bounds": { + "minlat": 40.7993888, + "minlon": -73.9220479, + "maxlat": 40.7994731, + "maxlon": -73.9219927 + }, + "nodes": [ + 7734748123, + 7734748127 + ], + "geometry": [ + { "lat": 40.7994731, "lon": -73.9219927 }, + { "lat": 40.7993888, "lon": -73.9220479 } + ], + "tags": { + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 991043398, + "bounds": { + "minlat": 40.7993888, + "minlon": -73.9236490, + "maxlat": 40.7999827, + "maxlon": -73.9220479 + }, + "nodes": [ + 3549074022, + 277482078, + 9153856272, + 3640160337, + 9153856271, + 277482077, + 9153856264, + 3640160338, + 9153856263, + 277482076, + 9153856262, + 7734748127 + ], + "geometry": [ + { "lat": 40.7999827, "lon": -73.9236490 }, + { "lat": 40.7999509, "lon": -73.9234844 }, + { "lat": 40.7999154, "lon": -73.9233366 }, + { "lat": 40.7998800, "lon": -73.9231969 }, + { "lat": 40.7998367, "lon": -73.9230402 }, + { "lat": 40.7997844, "lon": -73.9228815 }, + { "lat": 40.7997262, "lon": -73.9227317 }, + { "lat": 40.7996621, "lon": -73.9225790 }, + { "lat": 40.7995921, "lon": -73.9224276 }, + { "lat": 40.7995221, "lon": -73.9222913 }, + { "lat": 40.7994546, "lon": -73.9221650 }, + { "lat": 40.7993888, "lon": -73.9220479 } + ], + "tags": { + "destination": "Manhattan", + "highway": "unclassified", + "name": "Bronx Shore Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 991043399, + "bounds": { + "minlat": 40.7999827, + "minlon": -73.9236490, + "maxlat": 40.8000897, + "maxlon": -73.9235565 + }, + "nodes": [ + 7734748115, + 3549074022 + ], + "geometry": [ + { "lat": 40.8000897, "lon": -73.9235565 }, + { "lat": 40.7999827, "lon": -73.9236490 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 991043400, + "bounds": { + "minlat": 40.7965309, + "minlon": -73.9204052, + "maxlat": 40.7965686, + "maxlon": -73.9199011 + }, + "nodes": [ + 9156856695, + 9156856696, + 9156856697, + 9156856698, + 9156856699, + 9156856700, + 9156856701, + 9156856702, + 9156856703, + 9156856704 + ], + "geometry": [ + { "lat": 40.7965372, "lon": -73.9199011 }, + { "lat": 40.7965572, "lon": -73.9199570 }, + { "lat": 40.7965653, "lon": -73.9199998 }, + { "lat": 40.7965686, "lon": -73.9200421 }, + { "lat": 40.7965677, "lon": -73.9200866 }, + { "lat": 40.7965330, "lon": -73.9202657 }, + { "lat": 40.7965309, "lon": -73.9203043 }, + { "lat": 40.7965324, "lon": -73.9203457 }, + { "lat": 40.7965403, "lon": -73.9203802 }, + { "lat": 40.7965492, "lon": -73.9204052 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 991043402, + "bounds": { + "minlat": 40.7961544, + "minlon": -73.9196563, + "maxlat": 40.7964164, + "maxlon": -73.9193700 + }, + "nodes": [ + 5906371179, + 9156856692, + 9156856693, + 9156856694, + 3960273885 + ], + "geometry": [ + { "lat": 40.7961544, "lon": -73.9193700 }, + { "lat": 40.7962473, "lon": -73.9194274 }, + { "lat": 40.7962888, "lon": -73.9194621 }, + { "lat": 40.7963227, "lon": -73.9195108 }, + { "lat": 40.7964164, "lon": -73.9196563 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 991043403, + "bounds": { + "minlat": 40.7964164, + "minlon": -73.9199011, + "maxlat": 40.7965372, + "maxlon": -73.9196563 + }, + "nodes": [ + 3960273885, + 9156856695 + ], + "geometry": [ + { "lat": 40.7964164, "lon": -73.9196563 }, + { "lat": 40.7965372, "lon": -73.9199011 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 991043405, + "bounds": { + "minlat": 40.7969676, + "minlon": -73.9197540, + "maxlat": 40.7970116, + "maxlon": -73.9194697 + }, + "nodes": [ + 2339559977, + 9156856705 + ], + "geometry": [ + { "lat": 40.7970116, "lon": -73.9194697 }, + { "lat": 40.7969676, "lon": -73.9197540 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 991043406, + "bounds": { + "minlat": 40.7970116, + "minlon": -73.9194697, + "maxlat": 40.7970655, + "maxlon": -73.9191167 + }, + "nodes": [ + 277482068, + 2339559977 + ], + "geometry": [ + { "lat": 40.7970655, "lon": -73.9191167 }, + { "lat": 40.7970116, "lon": -73.9194697 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 991043408, + "bounds": { + "minlat": 40.7969391, + "minlon": -73.9199634, + "maxlat": 40.7969676, + "maxlon": -73.9197540 + }, + "nodes": [ + 9156856705, + 9156856706 + ], + "geometry": [ + { "lat": 40.7969676, "lon": -73.9197540 }, + { "lat": 40.7969391, "lon": -73.9199634 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 991043410, + "bounds": { + "minlat": 40.7934561, + "minlon": -73.9226340, + "maxlat": 40.7937963, + "maxlon": -73.9219812 + }, + "nodes": [ + 9156860438, + 9156860439, + 9156860457 + ], + "geometry": [ + { "lat": 40.7937963, "lon": -73.9226340 }, + { "lat": 40.7936958, "lon": -73.9224350 }, + { "lat": 40.7934561, "lon": -73.9219812 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043411, + "bounds": { + "minlat": 40.7930257, + "minlon": -73.9228578, + "maxlat": 40.7940809, + "maxlon": -73.9216186 + }, + "nodes": [ + 7734748095, + 9156860458, + 9156860460, + 9156860457, + 9156860456, + 9156860455, + 9156860454, + 9156860453, + 9156860452, + 9156860451, + 9156860450, + 9156860449, + 9156860448, + 9156860447, + 9156860446, + 9156860445, + 9156860444, + 9156860443, + 9156860442, + 9156860462, + 9156860441, + 9156860439, + 9156860461, + 9156860459, + 9156860440, + 7734748095 + ], + "geometry": [ + { "lat": 40.7938409, "lon": -73.9216186 }, + { "lat": 40.7937242, "lon": -73.9217285 }, + { "lat": 40.7935868, "lon": -73.9218580 }, + { "lat": 40.7934561, "lon": -73.9219812 }, + { "lat": 40.7933313, "lon": -73.9221055 }, + { "lat": 40.7931967, "lon": -73.9222447 }, + { "lat": 40.7930860, "lon": -73.9224093 }, + { "lat": 40.7930508, "lon": -73.9224774 }, + { "lat": 40.7930298, "lon": -73.9225502 }, + { "lat": 40.7930257, "lon": -73.9226111 }, + { "lat": 40.7930292, "lon": -73.9226740 }, + { "lat": 40.7930426, "lon": -73.9227310 }, + { "lat": 40.7930682, "lon": -73.9227789 }, + { "lat": 40.7931033, "lon": -73.9228198 }, + { "lat": 40.7931420, "lon": -73.9228470 }, + { "lat": 40.7931831, "lon": -73.9228578 }, + { "lat": 40.7932145, "lon": -73.9228578 }, + { "lat": 40.7932476, "lon": -73.9228432 }, + { "lat": 40.7932984, "lon": -73.9228072 }, + { "lat": 40.7934325, "lon": -73.9226934 }, + { "lat": 40.7935685, "lon": -73.9225748 }, + { "lat": 40.7936958, "lon": -73.9224350 }, + { "lat": 40.7938199, "lon": -73.9223237 }, + { "lat": 40.7939549, "lon": -73.9222028 }, + { "lat": 40.7940809, "lon": -73.9220898 }, + { "lat": 40.7938409, "lon": -73.9216186 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043412, + "bounds": { + "minlat": 40.7937242, + "minlon": -73.9222028, + "maxlat": 40.7939549, + "maxlon": -73.9217285 + }, + "nodes": [ + 9156860458, + 9156860459 + ], + "geometry": [ + { "lat": 40.7937242, "lon": -73.9217285 }, + { "lat": 40.7939549, "lon": -73.9222028 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043413, + "bounds": { + "minlat": 40.7935868, + "minlon": -73.9223237, + "maxlat": 40.7938199, + "maxlon": -73.9218580 + }, + "nodes": [ + 9156860460, + 9156860461 + ], + "geometry": [ + { "lat": 40.7935868, "lon": -73.9218580 }, + { "lat": 40.7938199, "lon": -73.9223237 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043414, + "bounds": { + "minlat": 40.7933313, + "minlon": -73.9225748, + "maxlat": 40.7935685, + "maxlon": -73.9221055 + }, + "nodes": [ + 9156860441, + 9156860456 + ], + "geometry": [ + { "lat": 40.7935685, "lon": -73.9225748 }, + { "lat": 40.7933313, "lon": -73.9221055 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043415, + "bounds": { + "minlat": 40.7931967, + "minlon": -73.9226934, + "maxlat": 40.7934325, + "maxlon": -73.9222447 + }, + "nodes": [ + 9156860462, + 9156860455 + ], + "geometry": [ + { "lat": 40.7934325, "lon": -73.9226934 }, + { "lat": 40.7931967, "lon": -73.9222447 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043416, + "bounds": { + "minlat": 40.7930860, + "minlon": -73.9228072, + "maxlat": 40.7932984, + "maxlon": -73.9224093 + }, + "nodes": [ + 9156860442, + 9156860454 + ], + "geometry": [ + { "lat": 40.7932984, "lon": -73.9228072 }, + { "lat": 40.7930860, "lon": -73.9224093 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043417, + "bounds": { + "minlat": 40.7940230, + "minlon": -73.9216269, + "maxlat": 40.7955194, + "maxlon": -73.9200724 + }, + "nodes": [ + 9156860463, + 9156860464, + 9156860465, + 9156860466, + 9156860467, + 9156860470, + 9156860471, + 9156860463 + ], + "geometry": [ + { "lat": 40.7947510, "lon": -73.9207664 }, + { "lat": 40.7954137, "lon": -73.9200724 }, + { "lat": 40.7954941, "lon": -73.9200819 }, + { "lat": 40.7955194, "lon": -73.9201185 }, + { "lat": 40.7948213, "lon": -73.9208725 }, + { "lat": 40.7941088, "lon": -73.9216269 }, + { "lat": 40.7940230, "lon": -73.9214667 }, + { "lat": 40.7947510, "lon": -73.9207664 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043418, + "bounds": { + "minlat": 40.7958723, + "minlon": -73.9208633, + "maxlat": 40.7960025, + "maxlon": -73.9201897 + }, + "nodes": [ + 9156860482, + 9156860483, + 9156860484, + 9156860485, + 9156860486, + 9156860487, + 9156860488, + 9156860489, + 9156860490 + ], + "geometry": [ + { "lat": 40.7958723, "lon": -73.9201897 }, + { "lat": 40.7959802, "lon": -73.9203658 }, + { "lat": 40.7959949, "lon": -73.9203942 }, + { "lat": 40.7960020, "lon": -73.9204200 }, + { "lat": 40.7960025, "lon": -73.9204436 }, + { "lat": 40.7959684, "lon": -73.9207200 }, + { "lat": 40.7959583, "lon": -73.9207566 }, + { "lat": 40.7959426, "lon": -73.9207863 }, + { "lat": 40.7958731, "lon": -73.9208633 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 991043419, + "bounds": { + "minlat": 40.7957719, + "minlon": -73.9209157, + "maxlat": 40.7959213, + "maxlon": -73.9207511 + }, + "nodes": [ + 9156860491, + 9156860490, + 277482241 + ], + "geometry": [ + { "lat": 40.7959213, "lon": -73.9209157 }, + { "lat": 40.7958731, "lon": -73.9208633 }, + { "lat": 40.7957719, "lon": -73.9207511 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 991043420, + "bounds": { + "minlat": 40.7956384, + "minlon": -73.9211150, + "maxlat": 40.7957719, + "maxlon": -73.9207511 + }, + "nodes": [ + 277482241, + 9156860492, + 9156860493, + 731931110 + ], + "geometry": [ + { "lat": 40.7957719, "lon": -73.9207511 }, + { "lat": 40.7956884, "lon": -73.9209953 }, + { "lat": 40.7956660, "lon": -73.9210529 }, + { "lat": 40.7956384, "lon": -73.9211150 } + ], + "tags": { + "highway": "tertiary", + "name": "Central Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 991043421, + "bounds": { + "minlat": 40.7947272, + "minlon": -73.9219462, + "maxlat": 40.7956384, + "maxlon": -73.9211150 + }, + "nodes": [ + 731931110, + 9156860494, + 9156860495, + 9156860496, + 9156860497 + ], + "geometry": [ + { "lat": 40.7956384, "lon": -73.9211150 }, + { "lat": 40.7955976, "lon": -73.9211757 }, + { "lat": 40.7955479, "lon": -73.9212277 }, + { "lat": 40.7951728, "lon": -73.9215599 }, + { "lat": 40.7947272, "lon": -73.9219462 } + ], + "tags": { + "highway": "unclassified", + "name": "Central Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 991043422, + "bounds": { + "minlat": 40.7940088, + "minlon": -73.9225938, + "maxlat": 40.7947272, + "maxlon": -73.9219462 + }, + "nodes": [ + 9156860497, + 9156860505, + 9156860503, + 9156860501, + 9156860498 + ], + "geometry": [ + { "lat": 40.7947272, "lon": -73.9219462 }, + { "lat": 40.7945627, "lon": -73.9220970 }, + { "lat": 40.7943915, "lon": -73.9222488 }, + { "lat": 40.7942169, "lon": -73.9224063 }, + { "lat": 40.7940088, "lon": -73.9225938 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 991043423, + "bounds": { + "minlat": 40.7946728, + "minlon": -73.9219462, + "maxlat": 40.7947272, + "maxlon": -73.9218314 + }, + "nodes": [ + 5871340510, + 9156860497 + ], + "geometry": [ + { "lat": 40.7946728, "lon": -73.9218314 }, + { "lat": 40.7947272, "lon": -73.9219462 } + ], + "tags": { + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 991043424, + "bounds": { + "minlat": 40.7940088, + "minlon": -73.9230479, + "maxlat": 40.7942364, + "maxlon": -73.9225938 + }, + "nodes": [ + 9156860500, + 9156860498 + ], + "geometry": [ + { "lat": 40.7942364, "lon": -73.9230479 }, + { "lat": 40.7940088, "lon": -73.9225938 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043425, + "bounds": { + "minlat": 40.7939510, + "minlon": -73.9225938, + "maxlat": 40.7940088, + "maxlon": -73.9224923 + }, + "nodes": [ + 9156860498, + 9156860499 + ], + "geometry": [ + { "lat": 40.7940088, "lon": -73.9225938 }, + { "lat": 40.7939510, "lon": -73.9224923 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 991043426, + "bounds": { + "minlat": 40.7942169, + "minlon": -73.9228909, + "maxlat": 40.7944509, + "maxlon": -73.9224063 + }, + "nodes": [ + 9156860501, + 9156860502 + ], + "geometry": [ + { "lat": 40.7942169, "lon": -73.9224063 }, + { "lat": 40.7944509, "lon": -73.9228909 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043427, + "bounds": { + "minlat": 40.7943915, + "minlon": -73.9227484, + "maxlat": 40.7946423, + "maxlon": -73.9222488 + }, + "nodes": [ + 9156860503, + 9156860504 + ], + "geometry": [ + { "lat": 40.7943915, "lon": -73.9222488 }, + { "lat": 40.7946423, "lon": -73.9227484 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043428, + "bounds": { + "minlat": 40.7945627, + "minlon": -73.9226437, + "maxlat": 40.7948199, + "maxlon": -73.9220970 + }, + "nodes": [ + 9156860505, + 9156860506 + ], + "geometry": [ + { "lat": 40.7945627, "lon": -73.9220970 }, + { "lat": 40.7948199, "lon": -73.9226437 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043429, + "bounds": { + "minlat": 40.7947272, + "minlon": -73.9227354, + "maxlat": 40.7950441, + "maxlon": -73.9219462 + }, + "nodes": [ + 9156860497, + 6159356512, + 7734748106 + ], + "geometry": [ + { "lat": 40.7947272, "lon": -73.9219462 }, + { "lat": 40.7950015, "lon": -73.9225257 }, + { "lat": 40.7950441, "lon": -73.9227354 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 991043430, + "bounds": { + "minlat": 40.7974408, + "minlon": -73.9242702, + "maxlat": 40.7978367, + "maxlon": -73.9235861 + }, + "nodes": [ + 5482405100, + 5482405095, + 3659139068, + 3659139069 + ], + "geometry": [ + { "lat": 40.7974408, "lon": -73.9235861 }, + { "lat": 40.7975424, "lon": -73.9237635 }, + { "lat": 40.7976218, "lon": -73.9238981 }, + { "lat": 40.7978367, "lon": -73.9242702 } + ], + "tags": { + "access": "private", + "bicycle": "yes", + "highway": "service", + "lanes": "2", + "name": "Bronx Shore Road" + } +}, +{ + "type": "way", + "id": 991043431, + "bounds": { + "minlat": 40.7969199, + "minlon": -73.9226870, + "maxlat": 40.7973040, + "maxlon": -73.9222609 + }, + "nodes": [ + 3659139064, + 9156860542, + 9156860543 + ], + "geometry": [ + { "lat": 40.7969199, "lon": -73.9226870 }, + { "lat": 40.7970050, "lon": -73.9225767 }, + { "lat": 40.7973040, "lon": -73.9222609 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 991043432, + "bounds": { + "minlat": 40.7970753, + "minlon": -73.9230541, + "maxlat": 40.7976924, + "maxlon": -73.9219274 + }, + "nodes": [ + 9156860544, + 9156860545, + 9156860543, + 9156860546, + 9156860547, + 9156860548, + 9156860549, + 9156860550 + ], + "geometry": [ + { "lat": 40.7970753, "lon": -73.9219274 }, + { "lat": 40.7972098, "lon": -73.9221579 }, + { "lat": 40.7973040, "lon": -73.9222609 }, + { "lat": 40.7973985, "lon": -73.9223597 }, + { "lat": 40.7974426, "lon": -73.9224248 }, + { "lat": 40.7976147, "lon": -73.9227532 }, + { "lat": 40.7976626, "lon": -73.9229884 }, + { "lat": 40.7976924, "lon": -73.9230541 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 991043433, + "bounds": { + "minlat": 40.7976924, + "minlon": -73.9235137, + "maxlat": 40.7977572, + "maxlon": -73.9230541 + }, + "nodes": [ + 9156860550, + 9156860554, + 9156860551 + ], + "geometry": [ + { "lat": 40.7976924, "lon": -73.9230541 }, + { "lat": 40.7977280, "lon": -73.9233067 }, + { "lat": 40.7977572, "lon": -73.9235137 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 991043434, + "bounds": { + "minlat": 40.7975424, + "minlon": -73.9237635, + "maxlat": 40.7977572, + "maxlon": -73.9235137 + }, + "nodes": [ + 9156860551, + 9156860552, + 9156860553, + 5482405095 + ], + "geometry": [ + { "lat": 40.7977572, "lon": -73.9235137 }, + { "lat": 40.7977434, "lon": -73.9235480 }, + { "lat": 40.7977252, "lon": -73.9235747 }, + { "lat": 40.7975424, "lon": -73.9237635 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043435, + "bounds": { + "minlat": 40.7974408, + "minlon": -73.9235861, + "maxlat": 40.7977280, + "maxlon": -73.9233067 + }, + "nodes": [ + 5482405100, + 9156860554 + ], + "geometry": [ + { "lat": 40.7974408, "lon": -73.9235861 }, + { "lat": 40.7977280, "lon": -73.9233067 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043436, + "bounds": { + "minlat": 40.7958465, + "minlon": -73.9221914, + "maxlat": 40.7964897, + "maxlon": -73.9217857 + }, + "nodes": [ + 7734784506, + 9156860535, + 9156860555 + ], + "geometry": [ + { "lat": 40.7964897, "lon": -73.9217857 }, + { "lat": 40.7960951, "lon": -73.9220281 }, + { "lat": 40.7958465, "lon": -73.9221914 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043437, + "bounds": { + "minlat": 40.7958465, + "minlon": -73.9223082, + "maxlat": 40.7963512, + "maxlon": -73.9221914 + }, + "nodes": [ + 9156860555, + 9156860556, + 9156860557, + 9156860558, + 9156860559 + ], + "geometry": [ + { "lat": 40.7958465, "lon": -73.9221914 }, + { "lat": 40.7959270, "lon": -73.9222955 }, + { "lat": 40.7959750, "lon": -73.9223082 }, + { "lat": 40.7962142, "lon": -73.9222798 }, + { "lat": 40.7963512, "lon": -73.9222138 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 991043438, + "bounds": { + "minlat": 40.7982076, + "minlon": -73.9247111, + "maxlat": 40.7984378, + "maxlon": -73.9245416 + }, + "nodes": [ + 9156860562, + 2346816333 + ], + "geometry": [ + { "lat": 40.7984378, "lon": -73.9245416 }, + { "lat": 40.7982076, "lon": -73.9247111 } + ], + "tags": { + "bicycle": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 991043439, + "bounds": { + "minlat": 40.7987913, + "minlon": -73.9245447, + "maxlat": 40.7992128, + "maxlon": -73.9242300 + }, + "nodes": [ + 5105109961, + 3933430640 + ], + "geometry": [ + { "lat": 40.7992128, "lon": -73.9242300 }, + { "lat": 40.7987913, "lon": -73.9245447 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "layer": "-1", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 991052690, + "bounds": { + "minlat": 40.8012930, + "minlon": -73.9171560, + "maxlat": 40.8016036, + "maxlon": -73.9168778 + }, + "nodes": [ + 100662035, + 9156930391 + ], + "geometry": [ + { "lat": 40.8012930, "lon": -73.9171560 }, + { "lat": 40.8016036, "lon": -73.9168778 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "I-278", + "tiger:name_type": "Expy", + "tiger:reviewed": "no", + "toll": "no" + } +}, +{ + "type": "way", + "id": 991052695, + "bounds": { + "minlat": 40.8015595, + "minlon": -73.9171513, + "maxlat": 40.8016697, + "maxlon": -73.9170459 + }, + "nodes": [ + 9156942227, + 100659881 + ], + "geometry": [ + { "lat": 40.8016697, "lon": -73.9170459 }, + { "lat": 40.8015595, "lon": -73.9171513 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "50 mph", + "maxspeed:advisory": "25 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 991052698, + "bounds": { + "minlat": 40.8044569, + "minlon": -73.9188757, + "maxlat": 40.8046021, + "maxlon": -73.9185377 + }, + "nodes": [ + 471243697, + 9156942309 + ], + "geometry": [ + { "lat": 40.8044569, "lon": -73.9185377 }, + { "lat": 40.8046021, "lon": -73.9188757 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 991059851, + "bounds": { + "minlat": 40.8004078, + "minlon": -73.9141428, + "maxlat": 40.8010064, + "maxlon": -73.9137124 + }, + "nodes": [ + 42750274, + 9908642212, + 9908642211 + ], + "geometry": [ + { "lat": 40.8010064, "lon": -73.9137124 }, + { "lat": 40.8004492, "lon": -73.9141128 }, + { "lat": 40.8004078, "lon": -73.9141428 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:separation": "jersey_barrier", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Willow Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willow", + "tiger:name_type": "Ave", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 991176567, + "bounds": { + "minlat": 40.7297923, + "minlon": -74.0050171, + "maxlat": 40.7303210, + "maxlon": -74.0046880 + }, + "nodes": [ + 42430770, + 9627010522, + 9158085621 + ], + "geometry": [ + { "lat": 40.7303210, "lon": -74.0046880 }, + { "lat": 40.7302556, "lon": -74.0047152 }, + { "lat": 40.7297923, "lon": -74.0050171 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 991176568, + "bounds": { + "minlat": 40.7294638, + "minlon": -74.0051849, + "maxlat": 40.7297923, + "maxlon": -74.0050171 + }, + "nodes": [ + 9158085621, + 5837116451, + 42430761 + ], + "geometry": [ + { "lat": 40.7297923, "lon": -74.0050171 }, + { "lat": 40.7295495, "lon": -74.0051411 }, + { "lat": 40.7294638, "lon": -74.0051849 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through" + } +}, +{ + "type": "way", + "id": 991205021, + "bounds": { + "minlat": 40.7214592, + "minlon": -73.9977932, + "maxlat": 40.7215953, + "maxlon": -73.9973963 + }, + "nodes": [ + 42430041, + 12197904824, + 5152337881, + 12187436350, + 12187436349, + 5152337875, + 12197904823, + 42430044 + ], + "geometry": [ + { "lat": 40.7214592, "lon": -73.9973963 }, + { "lat": 40.7214736, "lon": -73.9974393 }, + { "lat": 40.7214835, "lon": -73.9974689 }, + { "lat": 40.7215046, "lon": -73.9975290 }, + { "lat": 40.7215423, "lon": -73.9976389 }, + { "lat": 40.7215602, "lon": -73.9976916 }, + { "lat": 40.7215731, "lon": -73.9977289 }, + { "lat": 40.7215953, "lon": -73.9977932 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Kenmare Street", + "name:etymology:wikidata": "Q166232", + "name:ko": "켄메어 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left;through", + "turn:lanes:forward": "left" + } +}, +{ + "type": "way", + "id": 991205022, + "bounds": { + "minlat": 40.7214592, + "minlon": -73.9973963, + "maxlat": 40.7222994, + "maxlon": -73.9971193 + }, + "nodes": [ + 42430041, + 5152337873, + 12187436353, + 12187436344, + 2154628332, + 42442247 + ], + "geometry": [ + { "lat": 40.7214592, "lon": -73.9973963 }, + { "lat": 40.7215382, "lon": -73.9973701 }, + { "lat": 40.7215665, "lon": -73.9973607 }, + { "lat": 40.7221948, "lon": -73.9971333 }, + { "lat": 40.7222503, "lon": -73.9971272 }, + { "lat": 40.7222994, "lon": -73.9971193 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Cleveland Place", + "name:etymology:wikidata": "Q35171", + "name:ko": "클리블랜드 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 991821092, + "bounds": { + "minlat": 40.8079110, + "minlon": -73.9271696, + "maxlat": 40.8080090, + "maxlon": -73.9269973 + }, + "nodes": [ + 9163759226, + 471242600 + ], + "geometry": [ + { "lat": 40.8079110, "lon": -73.9269973 }, + { "lat": 40.8080090, "lon": -73.9271696 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 991825672, + "bounds": { + "minlat": 40.8115063, + "minlon": -73.9364361, + "maxlat": 40.8120958, + "maxlon": -73.9360803 + }, + "nodes": [ + 7616585434, + 9163819558, + 9163819559, + 9559342283, + 7541804762 + ], + "geometry": [ + { "lat": 40.8115063, "lon": -73.9364361 }, + { "lat": 40.8116533, "lon": -73.9363805 }, + { "lat": 40.8119338, "lon": -73.9361848 }, + { "lat": 40.8119853, "lon": -73.9361519 }, + { "lat": 40.8120958, "lon": -73.9360803 } + ], + "tags": { + "destination": "Harlem River Drive", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 991939499, + "bounds": { + "minlat": 40.7439971, + "minlon": -73.9747430, + "maxlat": 40.7451792, + "maxlon": -73.9719493 + }, + "nodes": [ + 9076206578, + 5130933105, + 42434974, + 5130933119, + 9987340023, + 4259278558, + 42434969 + ], + "geometry": [ + { "lat": 40.7439971, "lon": -73.9719493 }, + { "lat": 40.7443894, "lon": -73.9728887 }, + { "lat": 40.7444485, "lon": -73.9730270 }, + { "lat": 40.7445135, "lon": -73.9731678 }, + { "lat": 40.7445620, "lon": -73.9732825 }, + { "lat": 40.7451549, "lon": -73.9746845 }, + { "lat": 40.7451792, "lon": -73.9747430 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 35th Street", + "name:ru": "Восточная 35-я стрит", + "oneway": "yes", + "short_name": "East 35 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 992031742, + "bounds": { + "minlat": 40.7416910, + "minlon": -73.9789793, + "maxlat": 40.7419305, + "maxlon": -73.9788122 + }, + "nodes": [ + 9165725162, + 11298623349, + 9165725163 + ], + "geometry": [ + { "lat": 40.7419305, "lon": -73.9788122 }, + { "lat": 40.7418556, "lon": -73.9788664 }, + { "lat": 40.7416910, "lon": -73.9789793 } + ], + "tags": { + "covered": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 992098822, + "bounds": { + "minlat": 40.8194250, + "minlon": -73.9300925, + "maxlat": 40.8194814, + "maxlon": -73.9300638 + }, + "nodes": [ + 7557695123, + 9166288612 + ], + "geometry": [ + { "lat": 40.8194814, "lon": -73.9300638 }, + { "lat": 40.8194250, "lon": -73.9300925 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "River Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 992129026, + "bounds": { + "minlat": 40.7357626, + "minlon": -74.0017616, + "maxlat": 40.7357944, + "maxlon": -74.0015452 + }, + "nodes": [ + 42433272, + 9297714753, + 42430824 + ], + "geometry": [ + { "lat": 40.7357626, "lon": -74.0017616 }, + { "lat": 40.7357685, "lon": -74.0017161 }, + { "lat": 40.7357944, "lon": -74.0015452 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Perry Street", + "name:etymology:wikidata": "Q580513", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 992129197, + "bounds": { + "minlat": 40.8148680, + "minlon": -73.9289370, + "maxlat": 40.8149072, + "maxlon": -73.9287848 + }, + "nodes": [ + 42741445, + 2408974720 + ], + "geometry": [ + { "lat": 40.8149072, "lon": -73.9289370 }, + { "lat": 40.8148680, "lon": -73.9287848 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 140th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 992129198, + "bounds": { + "minlat": 40.8137872, + "minlon": -73.9299131, + "maxlat": 40.8147133, + "maxlon": -73.9290102 + }, + "nodes": [ + 2408985655, + 12162704270, + 12162704275 + ], + "geometry": [ + { "lat": 40.8147133, "lon": -73.9290102 }, + { "lat": 40.8146154, "lon": -73.9291161 }, + { "lat": 40.8137872, "lon": -73.9299131 } + ], + "tags": { + "destination:ref": "To I 87 North", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 992129199, + "bounds": { + "minlat": 40.8147095, + "minlon": -73.9288438, + "maxlat": 40.8148680, + "maxlon": -73.9287848 + }, + "nodes": [ + 2408974705, + 12162704288, + 12162704290, + 2408974720 + ], + "geometry": [ + { "lat": 40.8147095, "lon": -73.9288438 }, + { "lat": 40.8147408, "lon": -73.9288322 }, + { "lat": 40.8147951, "lon": -73.9288116 }, + { "lat": 40.8148680, "lon": -73.9287848 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 992132287, + "bounds": { + "minlat": 40.7446911, + "minlon": -74.0082636, + "maxlat": 40.7450810, + "maxlon": -74.0081928 + }, + "nodes": [ + 42439295, + 12097469457 + ], + "geometry": [ + { "lat": 40.7446911, "lon": -74.0082636 }, + { "lat": 40.7450810, "lon": -74.0081928 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 992132288, + "bounds": { + "minlat": 40.7444331, + "minlon": -74.0084979, + "maxlat": 40.7447576, + "maxlon": -74.0084387 + }, + "nodes": [ + 11049420899, + 8288270026, + 4207863000 + ], + "geometry": [ + { "lat": 40.7447576, "lon": -74.0084387 }, + { "lat": 40.7446107, "lon": -74.0084655 }, + { "lat": 40.7444331, "lon": -74.0084979 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 992137197, + "bounds": { + "minlat": 40.8183042, + "minlon": -73.9263684, + "maxlat": 40.8183301, + "maxlon": -73.9262717 + }, + "nodes": [ + 42743020, + 42778538 + ], + "geometry": [ + { "lat": 40.8183301, "lon": -73.9263684 }, + { "lat": 40.8183042, "lon": -73.9262717 } + ], + "tags": { + "busway:both": "lane", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "lanes:backward": "3", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 149th Street", + "sidewalk": "both", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455", + "turn:lanes:backward": "||right", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 992141077, + "bounds": { + "minlat": 40.7223827, + "minlon": -73.9977850, + "maxlat": 40.7242350, + "maxlon": -73.9933264 + }, + "nodes": [ + 42437608, + 8231909751, + 12196062127, + 12196062126, + 8231909752, + 42458313, + 8231909755, + 8231909756, + 42432305, + 3463814537, + 3463814540, + 42435477, + 3463814541, + 12187436335, + 8231877103, + 42445498, + 8231877106, + 10606723144, + 8231906897, + 42458267, + 8231906900, + 12187436336, + 8764758198, + 8231906893, + 42428444 + ], + "geometry": [ + { "lat": 40.7223827, "lon": -73.9933264 }, + { "lat": 40.7224173, "lon": -73.9934194 }, + { "lat": 40.7224371, "lon": -73.9934731 }, + { "lat": 40.7224586, "lon": -73.9935243 }, + { "lat": 40.7226987, "lon": -73.9940953 }, + { "lat": 40.7227230, "lon": -73.9941530 }, + { "lat": 40.7227471, "lon": -73.9942112 }, + { "lat": 40.7230093, "lon": -73.9948447 }, + { "lat": 40.7230360, "lon": -73.9949090 }, + { "lat": 40.7230640, "lon": -73.9949763 }, + { "lat": 40.7233405, "lon": -73.9956423 }, + { "lat": 40.7233679, "lon": -73.9957075 }, + { "lat": 40.7233931, "lon": -73.9957685 }, + { "lat": 40.7236282, "lon": -73.9963147 }, + { "lat": 40.7236534, "lon": -73.9963748 }, + { "lat": 40.7236896, "lon": -73.9964625 }, + { "lat": 40.7237384, "lon": -73.9965775 }, + { "lat": 40.7238472, "lon": -73.9968368 }, + { "lat": 40.7238647, "lon": -73.9968825 }, + { "lat": 40.7238889, "lon": -73.9969461 }, + { "lat": 40.7239116, "lon": -73.9970056 }, + { "lat": 40.7239373, "lon": -73.9970728 }, + { "lat": 40.7241816, "lon": -73.9976598 }, + { "lat": 40.7241957, "lon": -73.9976920 }, + { "lat": 40.7242350, "lon": -73.9977850 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Prince Street", + "name:ar": "شارع الامير", + "name:en": "Prince Street", + "name:ko": "프린스 스트리트", + "name:ru": "Принс-стрит", + "oneway": "yes", + "parking:lane:right": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 992144531, + "bounds": { + "minlat": 40.7633667, + "minlon": -73.9985035, + "maxlat": 40.7642432, + "maxlon": -73.9964368 + }, + "nodes": [ + 11017187937, + 3874681646, + 5458524659, + 5458524666, + 10166521632, + 9140941071, + 42430688 + ], + "geometry": [ + { "lat": 40.7642432, "lon": -73.9985035 }, + { "lat": 40.7641916, "lon": -73.9983789 }, + { "lat": 40.7638973, "lon": -73.9976862 }, + { "lat": 40.7636868, "lon": -73.9971920 }, + { "lat": 40.7634367, "lon": -73.9966046 }, + { "lat": 40.7634159, "lon": -73.9965570 }, + { "lat": 40.7633667, "lon": -73.9964368 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 992144532, + "bounds": { + "minlat": 40.7642432, + "minlon": -73.9985035, + "maxlat": 40.7648743, + "maxlon": -73.9980477 + }, + "nodes": [ + 11017187937, + 4782363326, + 62915531 + ], + "geometry": [ + { "lat": 40.7642432, "lon": -73.9985035 }, + { "lat": 40.7643992, "lon": -73.9983917 }, + { "lat": 40.7648743, "lon": -73.9980477 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 992164859, + "bounds": { + "minlat": 40.7580107, + "minlon": -74.0043507, + "maxlat": 40.7583806, + "maxlon": -74.0040809 + }, + "nodes": [ + 12154605956, + 9714517347 + ], + "geometry": [ + { "lat": 40.7583806, "lon": -74.0040809 }, + { "lat": 40.7580107, "lon": -74.0043507 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 992164861, + "bounds": { + "minlat": 40.7583508, + "minlon": -74.0038169, + "maxlat": 40.7586935, + "maxlon": -74.0035701 + }, + "nodes": [ + 7073877295, + 10858288588 + ], + "geometry": [ + { "lat": 40.7583508, "lon": -74.0038169 }, + { "lat": 40.7586935, "lon": -74.0035701 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 992379432, + "bounds": { + "minlat": 40.8429687, + "minlon": -73.9971993, + "maxlat": 40.8440298, + "maxlon": -73.9952726 + }, + "nodes": [ + 103271817, + 103110253, + 103295502, + 12692332166, + 103208158 + ], + "geometry": [ + { "lat": 40.8440298, "lon": -73.9971993 }, + { "lat": 40.8435720, "lon": -73.9963870 }, + { "lat": 40.8431473, "lon": -73.9955748 }, + { "lat": 40.8430225, "lon": -73.9953640 }, + { "lat": 40.8429687, "lon": -73.9952726 } + ], + "tags": { + "highway": "residential", + "name": "East Homestead Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Homestead", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650" + } +}, +{ + "type": "way", + "id": 992379433, + "bounds": { + "minlat": 40.8433275, + "minlon": -73.9978077, + "maxlat": 40.8440298, + "maxlon": -73.9971993 + }, + "nodes": [ + 103271817, + 103271814, + 12537534797, + 103153165 + ], + "geometry": [ + { "lat": 40.8440298, "lon": -73.9971993 }, + { "lat": 40.8437164, "lon": -73.9975024 }, + { "lat": 40.8434074, "lon": -73.9977336 }, + { "lat": 40.8433275, "lon": -73.9978077 } + ], + "tags": { + "highway": "residential", + "name": "Roff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 992379434, + "bounds": { + "minlat": 40.8422724, + "minlon": -73.9978077, + "maxlat": 40.8433275, + "maxlon": -73.9959647 + }, + "nodes": [ + 103153165, + 103153166 + ], + "geometry": [ + { "lat": 40.8433275, "lon": -73.9978077 }, + { "lat": 40.8422724, "lon": -73.9959647 } + ], + "tags": { + "highway": "residential", + "name": "East Harwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Harwood", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 992379435, + "bounds": { + "minlat": 40.8427849, + "minlon": -73.9983532, + "maxlat": 40.8433275, + "maxlon": -73.9978077 + }, + "nodes": [ + 103153165, + 103215670 + ], + "geometry": [ + { "lat": 40.8433275, "lon": -73.9978077 }, + { "lat": 40.8427849, "lon": -73.9983532 } + ], + "tags": { + "highway": "residential", + "name": "Roff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 992380311, + "bounds": { + "minlat": 40.8454018, + "minlon": -73.9985659, + "maxlat": 40.8469480, + "maxlon": -73.9958308 + }, + "nodes": [ + 103191323, + 12537534798, + 5767017610, + 5764484403, + 103256366, + 5976411338, + 103236648, + 103294153, + 103172164 + ], + "geometry": [ + { "lat": 40.8469480, "lon": -73.9985659 }, + { "lat": 40.8468983, "lon": -73.9984505 }, + { "lat": 40.8466784, "lon": -73.9980756 }, + { "lat": 40.8466686, "lon": -73.9980579 }, + { "lat": 40.8466480, "lon": -73.9980210 }, + { "lat": 40.8465150, "lon": -73.9977827 }, + { "lat": 40.8462254, "lon": -73.9972761 }, + { "lat": 40.8458167, "lon": -73.9965603 }, + { "lat": 40.8454018, "lon": -73.9958308 } + ], + "tags": { + "highway": "tertiary", + "name": "East Brinkerhoff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brinkerhoff", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 992380312, + "bounds": { + "minlat": 40.8440298, + "minlon": -73.9971993, + "maxlat": 40.8454018, + "maxlon": -73.9958308 + }, + "nodes": [ + 103172164, + 103271817 + ], + "geometry": [ + { "lat": 40.8454018, "lon": -73.9958308 }, + { "lat": 40.8440298, "lon": -73.9971993 } + ], + "tags": { + "highway": "residential", + "name": "Roff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 992405800, + "bounds": { + "minlat": 40.7228463, + "minlon": -73.9887754, + "maxlat": 40.7229037, + "maxlon": -73.9885922 + }, + "nodes": [ + 7480301864, + 7480301866 + ], + "geometry": [ + { "lat": 40.7229037, "lon": -73.9887754 }, + { "lat": 40.7228463, "lon": -73.9885922 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 992405802, + "bounds": { + "minlat": 40.7242224, + "minlon": -73.9922896, + "maxlat": 40.7248855, + "maxlon": -73.9906937 + }, + "nodes": [ + 7977873324, + 42442842, + 7977873328, + 42434919, + 12187431495, + 12187431903, + 8309479080, + 12187431904, + 12187431905, + 1773084410 + ], + "geometry": [ + { "lat": 40.7242224, "lon": -73.9906937 }, + { "lat": 40.7242862, "lon": -73.9908290 }, + { "lat": 40.7243375, "lon": -73.9909401 }, + { "lat": 40.7246250, "lon": -73.9916185 }, + { "lat": 40.7248345, "lon": -73.9921091 }, + { "lat": 40.7248451, "lon": -73.9921385 }, + { "lat": 40.7248554, "lon": -73.9921678 }, + { "lat": 40.7248663, "lon": -73.9922061 }, + { "lat": 40.7248762, "lon": -73.9922482 }, + { "lat": 40.7248855, "lon": -73.9922896 } + ], + "tags": { + "alt_name:ko": "이스트 1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 1st Street", + "name:en": "East 1st Street", + "name:ko": "이스트 1st 스트리트", + "name:ru": "Восточная 1-я стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 992406368, + "bounds": { + "minlat": 40.7745633, + "minlon": -74.0130151, + "maxlat": 40.7750962, + "maxlon": -74.0126339 + }, + "nodes": [ + 8219391062, + 295870208, + 1286793938 + ], + "geometry": [ + { "lat": 40.7745633, "lon": -74.0130151 }, + { "lat": 40.7748300, "lon": -74.0128326 }, + { "lat": 40.7750962, "lon": -74.0126339 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 992603344, + "bounds": { + "minlat": 40.7713853, + "minlon": -73.9776645, + "maxlat": 40.7717082, + "maxlon": -73.9771742 + }, + "nodes": [ + 247223720, + 9908336689, + 3248816568 + ], + "geometry": [ + { "lat": 40.7717082, "lon": -73.9776645 }, + { "lat": 40.7716796, "lon": -73.9776163 }, + { "lat": 40.7713853, "lon": -73.9771742 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight": "9'1\"", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 992603345, + "bounds": { + "minlat": 40.7690909, + "minlon": -73.9738312, + "maxlat": 40.7693532, + "maxlon": -73.9731493 + }, + "nodes": [ + 5307238005, + 1420634187, + 9908336685, + 9170842309, + 5307238007, + 9170842308, + 9170842307 + ], + "geometry": [ + { "lat": 40.7693532, "lon": -73.9738312 }, + { "lat": 40.7692823, "lon": -73.9736750 }, + { "lat": 40.7692354, "lon": -73.9735628 }, + { "lat": 40.7691888, "lon": -73.9734430 }, + { "lat": 40.7691581, "lon": -73.9733565 }, + { "lat": 40.7691263, "lon": -73.9732596 }, + { "lat": 40.7690909, "lon": -73.9731493 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 992603346, + "bounds": { + "minlat": 40.7696540, + "minlon": -73.9747411, + "maxlat": 40.7699024, + "maxlon": -73.9743655 + }, + "nodes": [ + 9170842304, + 9170842305 + ], + "geometry": [ + { "lat": 40.7699024, "lon": -73.9747411 }, + { "lat": 40.7696540, "lon": -73.9743655 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight": "10'0\"", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 992603347, + "bounds": { + "minlat": 40.7694382, + "minlon": -73.9743655, + "maxlat": 40.7696540, + "maxlon": -73.9740009 + }, + "nodes": [ + 9170842305, + 9908336687, + 1420634177, + 9908336686, + 9170842306 + ], + "geometry": [ + { "lat": 40.7696540, "lon": -73.9743655 }, + { "lat": 40.7695953, "lon": -73.9742726 }, + { "lat": 40.7695366, "lon": -73.9741738 }, + { "lat": 40.7694874, "lon": -73.9740916 }, + { "lat": 40.7694382, "lon": -73.9740009 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 992603348, + "bounds": { + "minlat": 40.7693532, + "minlon": -73.9740009, + "maxlat": 40.7694382, + "maxlon": -73.9738312 + }, + "nodes": [ + 9170842306, + 5307238005 + ], + "geometry": [ + { "lat": 40.7694382, "lon": -73.9740009 }, + { "lat": 40.7693532, "lon": -73.9738312 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 992603349, + "bounds": { + "minlat": 40.7688761, + "minlon": -73.9727106, + "maxlat": 40.7689724, + "maxlon": -73.9723598 + }, + "nodes": [ + 595703452, + 42457788 + ], + "geometry": [ + { "lat": 40.7689724, "lon": -73.9727106 }, + { "lat": 40.7688761, "lon": -73.9723598 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 992603350, + "bounds": { + "minlat": 40.7689724, + "minlon": -73.9731493, + "maxlat": 40.7690909, + "maxlon": -73.9727106 + }, + "nodes": [ + 9170842307, + 595703452 + ], + "geometry": [ + { "lat": 40.7690909, "lon": -73.9731493 }, + { "lat": 40.7689724, "lon": -73.9727106 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight": "9'9\"", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 992605605, + "bounds": { + "minlat": 40.7814954, + "minlon": -73.9629964, + "maxlat": 40.7816986, + "maxlon": -73.9626819 + }, + "nodes": [ + 12099277793, + 1901016118 + ], + "geometry": [ + { "lat": 40.7814954, "lon": -73.9626819 }, + { "lat": 40.7816986, "lon": -73.9629964 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight": "10'5\"", + "maxheight:physical:backward": "10'5\"", + "maxheight:physical:forward": "10'10\"", + "maxspeed": "25 mph", + "name": "86th Street Transverse", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tunnel": "yes", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 993368836, + "bounds": { + "minlat": 40.7779122, + "minlon": -73.9820960, + "maxlat": 40.7779466, + "maxlon": -73.9820717 + }, + "nodes": [ + 9177424868, + 5708001199 + ], + "geometry": [ + { "lat": 40.7779122, "lon": -73.9820960 }, + { "lat": 40.7779466, "lon": -73.9820717 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 993368837, + "bounds": { + "minlat": 40.7779122, + "minlon": -73.9821878, + "maxlat": 40.7779528, + "maxlon": -73.9820960 + }, + "nodes": [ + 9177424868, + 1061531448 + ], + "geometry": [ + { "lat": 40.7779122, "lon": -73.9820960 }, + { "lat": 40.7779528, "lon": -73.9821878 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 71st Street", + "name:ru": "Западная 71-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993368838, + "bounds": { + "minlat": 40.7778034, + "minlon": -73.9821832, + "maxlat": 40.7779122, + "maxlon": -73.9820960 + }, + "nodes": [ + 9177424867, + 8727756026, + 9177424868 + ], + "geometry": [ + { "lat": 40.7778034, "lon": -73.9821832 }, + { "lat": 40.7778496, "lon": -73.9821460 }, + { "lat": 40.7779122, "lon": -73.9820960 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 993368839, + "bounds": { + "minlat": 40.7739227, + "minlon": -73.9823216, + "maxlat": 40.7778034, + "maxlon": -73.9821832 + }, + "nodes": [ + 9177424867, + 5708001200, + 5115916410, + 42428610, + 5115917322, + 9914812807, + 9914806631, + 42428604, + 9914806634, + 9913342496, + 42428601, + 8780665906, + 9910065651, + 42428598, + 9910065655, + 7515300913, + 42428595 + ], + "geometry": [ + { "lat": 40.7778034, "lon": -73.9821832 }, + { "lat": 40.7776389, "lon": -73.9821916 }, + { "lat": 40.7772387, "lon": -73.9822099 }, + { "lat": 40.7771434, "lon": -73.9822172 }, + { "lat": 40.7770790, "lon": -73.9822235 }, + { "lat": 40.7764220, "lon": -73.9822287 }, + { "lat": 40.7764070, "lon": -73.9822300 }, + { "lat": 40.7763295, "lon": -73.9822243 }, + { "lat": 40.7762603, "lon": -73.9822258 }, + { "lat": 40.7756088, "lon": -73.9822572 }, + { "lat": 40.7755283, "lon": -73.9822622 }, + { "lat": 40.7754527, "lon": -73.9822642 }, + { "lat": 40.7748054, "lon": -73.9822937 }, + { "lat": 40.7747214, "lon": -73.9822972 }, + { "lat": 40.7746561, "lon": -73.9822967 }, + { "lat": 40.7739947, "lon": -73.9823216 }, + { "lat": 40.7739227, "lon": -73.9823188 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 993379223, + "bounds": { + "minlat": 40.7920649, + "minlon": -73.9765740, + "maxlat": 40.7933236, + "maxlon": -73.9735644 + }, + "nodes": [ + 42441526, + 10061127985, + 9492542175, + 42431078, + 9492556529, + 8687882625, + 42428701, + 1061531736 + ], + "geometry": [ + { "lat": 40.7933236, "lon": -73.9765740 }, + { "lat": 40.7933052, "lon": -73.9765300 }, + { "lat": 40.7927515, "lon": -73.9752062 }, + { "lat": 40.7927000, "lon": -73.9750829 }, + { "lat": 40.7926444, "lon": -73.9749499 }, + { "lat": 40.7921882, "lon": -73.9738592 }, + { "lat": 40.7921405, "lon": -73.9737451 }, + { "lat": 40.7920649, "lon": -73.9735644 } + ], + "tags": { + "alt_name": "West 92 Street", + "highway": "residential", + "name": "West 92nd Street", + "name:ru": "Западная 92-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993379224, + "bounds": { + "minlat": 40.7920649, + "minlon": -73.9735644, + "maxlat": 40.7923966, + "maxlon": -73.9733189 + }, + "nodes": [ + 1061531736, + 8687882620, + 9177516877 + ], + "geometry": [ + { "lat": 40.7920649, "lon": -73.9735644 }, + { "lat": 40.7921159, "lon": -73.9735266 }, + { "lat": 40.7923966, "lon": -73.9733189 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 993379225, + "bounds": { + "minlat": 40.7926891, + "minlon": -73.9763032, + "maxlat": 40.7940047, + "maxlon": -73.9730999 + }, + "nodes": [ + 1061531790, + 42428705, + 10061186361, + 9492556554, + 42431089, + 9492556606, + 9177505603, + 9177505604, + 10061243492, + 9177505605, + 42441521 + ], + "geometry": [ + { "lat": 40.7926891, "lon": -73.9730999 }, + { "lat": 40.7927728, "lon": -73.9733006 }, + { "lat": 40.7928130, "lon": -73.9733970 }, + { "lat": 40.7932751, "lon": -73.9744941 }, + { "lat": 40.7933289, "lon": -73.9746223 }, + { "lat": 40.7933836, "lon": -73.9747529 }, + { "lat": 40.7939866, "lon": -73.9761960 }, + { "lat": 40.7939983, "lon": -73.9762293 }, + { "lat": 40.7940008, "lon": -73.9762476 }, + { "lat": 40.7940033, "lon": -73.9762655 }, + { "lat": 40.7940047, "lon": -73.9763032 } + ], + "tags": { + "alt_name": "West 93 Street", + "highway": "residential", + "name": "West 93rd Street", + "name:ru": "Западная 93-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q4645924", + "wikipedia": "en:93rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 993379226, + "bounds": { + "minlat": 40.7923966, + "minlon": -73.9733189, + "maxlat": 40.7926891, + "maxlon": -73.9730999 + }, + "nodes": [ + 9177516877, + 9177516875, + 10061230053, + 1061531790 + ], + "geometry": [ + { "lat": 40.7923966, "lon": -73.9733189 }, + { "lat": 40.7925901, "lon": -73.9731768 }, + { "lat": 40.7926360, "lon": -73.9731424 }, + { "lat": 40.7926891, "lon": -73.9730999 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 993379227, + "bounds": { + "minlat": 40.7953010, + "minlon": -73.9712080, + "maxlat": 40.7971801, + "maxlon": -73.9698184 + }, + "nodes": [ + 1061531504, + 7801775748, + 10170980710, + 1061531727, + 10170980709, + 7801775713, + 1061531730, + 10170980693, + 11803957853, + 1061531596 + ], + "geometry": [ + { "lat": 40.7953010, "lon": -73.9712080 }, + { "lat": 40.7953541, "lon": -73.9711663 }, + { "lat": 40.7958678, "lon": -73.9707886 }, + { "lat": 40.7959244, "lon": -73.9707469 }, + { "lat": 40.7959887, "lon": -73.9706998 }, + { "lat": 40.7965012, "lon": -73.9703300 }, + { "lat": 40.7965554, "lon": -73.9702876 }, + { "lat": 40.7966102, "lon": -73.9702448 }, + { "lat": 40.7971246, "lon": -73.9698597 }, + { "lat": 40.7971801, "lon": -73.9698184 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 993379229, + "bounds": { + "minlat": 40.7951149, + "minlon": -73.9716113, + "maxlat": 40.7972636, + "maxlon": -73.9700162 + }, + "nodes": [ + 42428725, + 11803957854, + 10170980694, + 42428723, + 10170980695, + 10170980711, + 42428720, + 7801775771, + 11803957858, + 42428716, + 11803957859, + 4205805401 + ], + "geometry": [ + { "lat": 40.7972636, "lon": -73.9700162 }, + { "lat": 40.7972062, "lon": -73.9700584 }, + { "lat": 40.7966914, "lon": -73.9704414 }, + { "lat": 40.7966367, "lon": -73.9704799 }, + { "lat": 40.7965810, "lon": -73.9705227 }, + { "lat": 40.7960712, "lon": -73.9708991 }, + { "lat": 40.7960068, "lon": -73.9709423 }, + { "lat": 40.7959507, "lon": -73.9709825 }, + { "lat": 40.7954380, "lon": -73.9713668 }, + { "lat": 40.7953849, "lon": -73.9714074 }, + { "lat": 40.7953323, "lon": -73.9714471 }, + { "lat": 40.7951149, "lon": -73.9716113 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 993379230, + "bounds": { + "minlat": 40.7971801, + "minlon": -73.9700162, + "maxlat": 40.7972636, + "maxlon": -73.9698184 + }, + "nodes": [ + 42428725, + 1061531596 + ], + "geometry": [ + { "lat": 40.7972636, "lon": -73.9700162 }, + { "lat": 40.7971801, "lon": -73.9698184 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 100th Street", + "name:ru": "Западная 100-я стрит", + "name_1": "West 100 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993379231, + "bounds": { + "minlat": 40.7972636, + "minlon": -73.9700162, + "maxlat": 40.7975824, + "maxlon": -73.9697872 + }, + "nodes": [ + 9177516878, + 11803957856, + 42428725 + ], + "geometry": [ + { "lat": 40.7975824, "lon": -73.9697872 }, + { "lat": 40.7973260, "lon": -73.9699714 }, + { "lat": 40.7972636, "lon": -73.9700162 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 993495865, + "bounds": { + "minlat": 40.7865479, + "minlon": -73.9504365, + "maxlat": 40.7878098, + "maxlon": -73.9495290 + }, + "nodes": [ + 42445259, + 6248342701, + 5481907913, + 5481907910, + 6248342749, + 42447174, + 6248342724, + 6070217084, + 42447169 + ], + "geometry": [ + { "lat": 40.7878098, "lon": -73.9495290 }, + { "lat": 40.7877512, "lon": -73.9495636 }, + { "lat": 40.7876621, "lon": -73.9496285 }, + { "lat": 40.7873292, "lon": -73.9498722 }, + { "lat": 40.7872337, "lon": -73.9499412 }, + { "lat": 40.7871827, "lon": -73.9499793 }, + { "lat": 40.7871241, "lon": -73.9500237 }, + { "lat": 40.7866036, "lon": -73.9503988 }, + { "lat": 40.7865479, "lon": -73.9504365 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 993495866, + "bounds": { + "minlat": 40.7878098, + "minlon": -73.9510061, + "maxlat": 40.7884393, + "maxlon": -73.9495290 + }, + "nodes": [ + 42445259, + 6248342573, + 8735320762, + 3901503159, + 42445258 + ], + "geometry": [ + { "lat": 40.7878098, "lon": -73.9495290 }, + { "lat": 40.7878493, "lon": -73.9496200 }, + { "lat": 40.7883876, "lon": -73.9508854 }, + { "lat": 40.7884091, "lon": -73.9509359 }, + { "lat": 40.7884393, "lon": -73.9510061 } + ], + "tags": { + "highway": "residential", + "name": "East 99th Street", + "name:ru": "Восточная 99-я стрит", + "name_1": "East 99 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 993495867, + "bounds": { + "minlat": 40.7878098, + "minlon": -73.9495290, + "maxlat": 40.7881232, + "maxlon": -73.9492851 + }, + "nodes": [ + 10122953005, + 9178585621, + 6248342723, + 42445259 + ], + "geometry": [ + { "lat": 40.7881232, "lon": -73.9492851 }, + { "lat": 40.7879711, "lon": -73.9494174 }, + { "lat": 40.7878691, "lon": -73.9494908 }, + { "lat": 40.7878098, "lon": -73.9495290 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 993495868, + "bounds": { + "minlat": 40.7881232, + "minlon": -73.9492851, + "maxlat": 40.7896902, + "maxlon": -73.9481549 + }, + "nodes": [ + 42430479, + 7779545006, + 8732555134, + 8732555179, + 9726158593, + 7779440483, + 42438949, + 7779533907, + 9726158603, + 7779533914, + 42447176, + 7779533885, + 7923889519, + 10122953005 + ], + "geometry": [ + { "lat": 40.7896902, "lon": -73.9481549 }, + { "lat": 40.7896362, "lon": -73.9481940 }, + { "lat": 40.7895742, "lon": -73.9482379 }, + { "lat": 40.7894182, "lon": -73.9483494 }, + { "lat": 40.7893457, "lon": -73.9484021 }, + { "lat": 40.7891192, "lon": -73.9485665 }, + { "lat": 40.7890610, "lon": -73.9486102 }, + { "lat": 40.7890085, "lon": -73.9486483 }, + { "lat": 40.7885740, "lon": -73.9489639 }, + { "lat": 40.7884875, "lon": -73.9490272 }, + { "lat": 40.7884305, "lon": -73.9490654 }, + { "lat": 40.7883790, "lon": -73.9490997 }, + { "lat": 40.7882058, "lon": -73.9492238 }, + { "lat": 40.7881232, "lon": -73.9492851 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 993495869, + "bounds": { + "minlat": 40.7896902, + "minlon": -73.9481549, + "maxlat": 40.7903181, + "maxlon": -73.9476894 + }, + "nodes": [ + 42434895, + 7779545021, + 7779545012, + 42430479 + ], + "geometry": [ + { "lat": 40.7903181, "lon": -73.9476894 }, + { "lat": 40.7902648, "lon": -73.9477291 }, + { "lat": 40.7897493, "lon": -73.9481135 }, + { "lat": 40.7896902, "lon": -73.9481549 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:be": "Лексінгтан Авеню", + "name:en": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:pl": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 993495870, + "bounds": { + "minlat": 40.7903181, + "minlon": -73.9492200, + "maxlat": 40.7909539, + "maxlon": -73.9476894 + }, + "nodes": [ + 42434895, + 7779545008, + 6254630459, + 42434894, + 7787545801 + ], + "geometry": [ + { "lat": 40.7903181, "lon": -73.9476894 }, + { "lat": 40.7903575, "lon": -73.9477830 }, + { "lat": 40.7909130, "lon": -73.9491091 }, + { "lat": 40.7909386, "lon": -73.9491789 }, + { "lat": 40.7909539, "lon": -73.9492200 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 103rd Street", + "name:be": "Усходняя 103-я вуліца", + "name:en": "East 103rd Street", + "name:pl": "Wschodnia 103 Ulica", + "name:ru": "Восточная 103-я улица", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993495871, + "bounds": { + "minlat": 40.7903181, + "minlon": -73.9476894, + "maxlat": 40.7909469, + "maxlon": -73.9472342 + }, + "nodes": [ + 42436619, + 7779545031, + 9726158605, + 7779545017, + 42434895 + ], + "geometry": [ + { "lat": 40.7909469, "lon": -73.9472342 }, + { "lat": 40.7908940, "lon": -73.9472736 }, + { "lat": 40.7905720, "lon": -73.9475058 }, + { "lat": 40.7903760, "lon": -73.9476468 }, + { "lat": 40.7903181, "lon": -73.9476894 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 993495872, + "bounds": { + "minlat": 40.7909469, + "minlon": -73.9487212, + "maxlat": 40.7915693, + "maxlon": -73.9472342 + }, + "nodes": [ + 42436614, + 6254630412, + 7779545005, + 42436619 + ], + "geometry": [ + { "lat": 40.7915693, "lon": -73.9487212 }, + { "lat": 40.7915388, "lon": -73.9486550 }, + { "lat": 40.7909850, "lon": -73.9473228 }, + { "lat": 40.7909469, "lon": -73.9472342 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 104th Street", + "name:ru": "Восточная 104-я стрит", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 993495873, + "bounds": { + "minlat": 40.7909469, + "minlon": -73.9472342, + "maxlat": 40.7915775, + "maxlon": -73.9467764 + }, + "nodes": [ + 42447179, + 7779545013, + 7779545036, + 42436619 + ], + "geometry": [ + { "lat": 40.7915775, "lon": -73.9467764 }, + { "lat": 40.7915217, "lon": -73.9468158 }, + { "lat": 40.7910028, "lon": -73.9471938 }, + { "lat": 40.7909469, "lon": -73.9472342 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 993495874, + "bounds": { + "minlat": 40.7915775, + "minlon": -73.9483118, + "maxlat": 40.7922164, + "maxlon": -73.9467764 + }, + "nodes": [ + 42447179, + 7779545023, + 6860586790, + 6860586786, + 7325349521, + 42459041, + 9178807965 + ], + "geometry": [ + { "lat": 40.7915775, "lon": -73.9467764 }, + { "lat": 40.7916114, "lon": -73.9468642 }, + { "lat": 40.7917317, "lon": -73.9471533 }, + { "lat": 40.7918810, "lon": -73.9475064 }, + { "lat": 40.7921693, "lon": -73.9481966 }, + { "lat": 40.7921962, "lon": -73.9482635 }, + { "lat": 40.7922164, "lon": -73.9483118 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "East 105th Street", + "name:ru": "Восточная 105-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 993505682, + "bounds": { + "minlat": 40.7862775, + "minlon": -73.9528792, + "maxlat": 40.7866031, + "maxlon": -73.9526692 + }, + "nodes": [ + 596776260, + 6254816631, + 9178805727 + ], + "geometry": [ + { "lat": 40.7866031, "lon": -73.9526692 }, + { "lat": 40.7865029, "lon": -73.9527338 }, + { "lat": 40.7862775, "lon": -73.9528792 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 993506887, + "bounds": { + "minlat": 40.7922860, + "minlon": -73.9485228, + "maxlat": 40.7923046, + "maxlon": -73.9484782 + }, + "nodes": [ + 9178807964, + 596775819 + ], + "geometry": [ + { "lat": 40.7922860, "lon": -73.9484782 }, + { "lat": 40.7923046, "lon": -73.9485228 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "East 105th Street", + "name:ru": "Восточная 105-я стрит", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 993506888, + "bounds": { + "minlat": 40.7922164, + "minlon": -73.9484782, + "maxlat": 40.7922860, + "maxlon": -73.9483118 + }, + "nodes": [ + 9178807965, + 9178807964 + ], + "geometry": [ + { "lat": 40.7922164, "lon": -73.9483118 }, + { "lat": 40.7922860, "lon": -73.9484782 } + ], + "tags": { + "highway": "residential", + "layer": "-1", + "maxspeed": "20 mph", + "name": "East 105th Street", + "name:ru": "Восточная 105-я стрит", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 993506891, + "bounds": { + "minlat": 40.7922499, + "minlon": -73.9478278, + "maxlat": 40.7928588, + "maxlon": -73.9462871 + }, + "nodes": [ + 9178805720, + 7076060068, + 7076060070, + 7076060069, + 7076060064, + 42447182 + ], + "geometry": [ + { "lat": 40.7928588, "lon": -73.9478278 }, + { "lat": 40.7928444, "lon": -73.9477848 }, + { "lat": 40.7928227, "lon": -73.9477173 }, + { "lat": 40.7923882, "lon": -73.9466971 }, + { "lat": 40.7922574, "lon": -73.9463914 }, + { "lat": 40.7922499, "lon": -73.9462871 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "yes", + "sidewalk": "right" + } +}, +{ + "type": "way", + "id": 993506892, + "bounds": { + "minlat": 40.7928588, + "minlon": -73.9480080, + "maxlat": 40.7929337, + "maxlon": -73.9478278 + }, + "nodes": [ + 9178805721, + 9178805720 + ], + "geometry": [ + { "lat": 40.7929337, "lon": -73.9480080 }, + { "lat": 40.7928588, "lon": -73.9478278 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "layer": "-1", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "yes", + "sidewalk": "right", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 993506893, + "bounds": { + "minlat": 40.7929932, + "minlon": -73.9495058, + "maxlat": 40.7936162, + "maxlon": -73.9479590 + }, + "nodes": [ + 9178805723, + 596776201, + 6254630481, + 6254630394, + 42446138 + ], + "geometry": [ + { "lat": 40.7929932, "lon": -73.9479590 }, + { "lat": 40.7930118, "lon": -73.9480120 }, + { "lat": 40.7930375, "lon": -73.9480788 }, + { "lat": 40.7935852, "lon": -73.9493820 }, + { "lat": 40.7936162, "lon": -73.9495058 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993506894, + "bounds": { + "minlat": 40.7929208, + "minlon": -73.9479590, + "maxlat": 40.7929932, + "maxlon": -73.9477852 + }, + "nodes": [ + 9178805722, + 9178805723 + ], + "geometry": [ + { "lat": 40.7929208, "lon": -73.9477852 }, + { "lat": 40.7929932, "lon": -73.9479590 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "layer": "-1", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "yes", + "sidewalk": "right", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 993506895, + "bounds": { + "minlat": 40.7935621, + "minlon": -73.9474963, + "maxlat": 40.7936334, + "maxlon": -73.9473273 + }, + "nodes": [ + 9178807968, + 9178807969 + ], + "geometry": [ + { "lat": 40.7935621, "lon": -73.9473273 }, + { "lat": 40.7936334, "lon": -73.9474963 } + ], + "tags": { + "highway": "residential", + "layer": "-1", + "name": "East 107th Street", + "name:ru": "Восточная 107-я стрит", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 993506896, + "bounds": { + "minlat": 40.7936334, + "minlon": -73.9475371, + "maxlat": 40.7936506, + "maxlon": -73.9474963 + }, + "nodes": [ + 9178807969, + 596775808 + ], + "geometry": [ + { "lat": 40.7936334, "lon": -73.9474963 }, + { "lat": 40.7936506, "lon": -73.9475371 } + ], + "tags": { + "highway": "residential", + "layer": "-1", + "name": "East 107th Street", + "name:ru": "Восточная 107-я стрит", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 993506897, + "bounds": { + "minlat": 40.7942706, + "minlon": -73.9501580, + "maxlat": 40.7955852, + "maxlon": -73.9470308 + }, + "nodes": [ + 42436637, + 7781090348, + 6256723774, + 42436640, + 6256723756, + 6256723748, + 6256723765, + 6256723745, + 596776349, + 9178807970 + ], + "geometry": [ + { "lat": 40.7955852, "lon": -73.9501580 }, + { "lat": 40.7955441, "lon": -73.9500545 }, + { "lat": 40.7949595, "lon": -73.9486681 }, + { "lat": 40.7949134, "lon": -73.9485565 }, + { "lat": 40.7948669, "lon": -73.9484487 }, + { "lat": 40.7946694, "lon": -73.9479803 }, + { "lat": 40.7945103, "lon": -73.9476031 }, + { "lat": 40.7943171, "lon": -73.9471451 }, + { "lat": 40.7942889, "lon": -73.9470750 }, + { "lat": 40.7942706, "lon": -73.9470308 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 108th Street", + "name:ru": "Восточная 108-я стрит", + "name_1": "East 108 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993506898, + "bounds": { + "minlat": 40.7941983, + "minlon": -73.9470308, + "maxlat": 40.7942706, + "maxlon": -73.9468558 + }, + "nodes": [ + 9178807970, + 9178807971 + ], + "geometry": [ + { "lat": 40.7942706, "lon": -73.9470308 }, + { "lat": 40.7941983, "lon": -73.9468558 } + ], + "tags": { + "highway": "residential", + "layer": "-1", + "name": "East 108th Street", + "name:ru": "Восточная 108-я стрит", + "name_1": "East 108 Street", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 993506899, + "bounds": { + "minlat": 40.7948956, + "minlon": -73.9496927, + "maxlat": 40.7962219, + "maxlon": -73.9465694 + }, + "nodes": [ + 9178807972, + 596776386, + 7781090353, + 7777321730, + 42446147, + 11292691117, + 6961065604, + 42456711 + ], + "geometry": [ + { "lat": 40.7948956, "lon": -73.9465694 }, + { "lat": 40.7949177, "lon": -73.9466169 }, + { "lat": 40.7949476, "lon": -73.9466852 }, + { "lat": 40.7954990, "lon": -73.9479885 }, + { "lat": 40.7955444, "lon": -73.9480973 }, + { "lat": 40.7955920, "lon": -73.9482094 }, + { "lat": 40.7961775, "lon": -73.9495894 }, + { "lat": 40.7962219, "lon": -73.9496927 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "name": "East 109th Street", + "name:ru": "Восточная 109-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993506900, + "bounds": { + "minlat": 40.7948263, + "minlon": -73.9465694, + "maxlat": 40.7948956, + "maxlon": -73.9464058 + }, + "nodes": [ + 9178807973, + 9178807972 + ], + "geometry": [ + { "lat": 40.7948263, "lon": -73.9464058 }, + { "lat": 40.7948956, "lon": -73.9465694 } + ], + "tags": { + "highway": "residential", + "layer": "-1", + "name": "East 109th Street", + "name:ru": "Восточная 109-я стрит", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 993510828, + "bounds": { + "minlat": 40.8115063, + "minlon": -73.9364361, + "maxlat": 40.8119805, + "maxlon": -73.9360360 + }, + "nodes": [ + 7616585434, + 9163819554, + 9163819556, + 9163819555, + 9559342282, + 2481877063 + ], + "geometry": [ + { "lat": 40.8115063, "lon": -73.9364361 }, + { "lat": 40.8116246, "lon": -73.9363168 }, + { "lat": 40.8117393, "lon": -73.9362212 }, + { "lat": 40.8118642, "lon": -73.9361228 }, + { "lat": 40.8119324, "lon": -73.9360734 }, + { "lat": 40.8119805, "lon": -73.9360360 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 993510829, + "bounds": { + "minlat": 40.8101814, + "minlon": -73.9374066, + "maxlat": 40.8107354, + "maxlon": -73.9369938 + }, + "nodes": [ + 42446190, + 7616589946, + 10168169632, + 12688865137, + 7616585422 + ], + "geometry": [ + { "lat": 40.8101814, "lon": -73.9374066 }, + { "lat": 40.8102480, "lon": -73.9373574 }, + { "lat": 40.8102665, "lon": -73.9373436 }, + { "lat": 40.8106750, "lon": -73.9370388 }, + { "lat": 40.8107354, "lon": -73.9369938 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 993510830, + "bounds": { + "minlat": 40.8095503, + "minlon": -73.9374066, + "maxlat": 40.8101814, + "maxlon": -73.9359324 + }, + "nodes": [ + 42446190, + 10168169633, + 7455120789, + 9902223902, + 9178793211, + 589927991 + ], + "geometry": [ + { "lat": 40.8101814, "lon": -73.9374066 }, + { "lat": 40.8101416, "lon": -73.9373122 }, + { "lat": 40.8098556, "lon": -73.9366338 }, + { "lat": 40.8096503, "lon": -73.9361524 }, + { "lat": 40.8095881, "lon": -73.9360140 }, + { "lat": 40.8095503, "lon": -73.9359324 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 132nd Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993510831, + "bounds": { + "minlat": 40.7999781, + "minlon": -73.9448411, + "maxlat": 40.8002957, + "maxlon": -73.9446239 + }, + "nodes": [ + 42446161, + 10167086803, + 9178841525 + ], + "geometry": [ + { "lat": 40.7999781, "lon": -73.9448411 }, + { "lat": 40.8000845, "lon": -73.9447563 }, + { "lat": 40.8002957, "lon": -73.9446239 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 993517671, + "bounds": { + "minlat": 40.7936080, + "minlon": -73.9516020, + "maxlat": 40.7942850, + "maxlon": -73.9511110 + }, + "nodes": [ + 42450456, + 7779645990, + 8746317600, + 7076109545, + 7779641278, + 42456708 + ], + "geometry": [ + { "lat": 40.7942850, "lon": -73.9511110 }, + { "lat": 40.7941920, "lon": -73.9511785 }, + { "lat": 40.7940901, "lon": -73.9512524 }, + { "lat": 40.7939618, "lon": -73.9513454 }, + { "lat": 40.7936633, "lon": -73.9515619 }, + { "lat": 40.7936080, "lon": -73.9516020 } + ], + "tags": { + "alt_name": "Museum Mile", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 993520991, + "bounds": { + "minlat": 40.7958419, + "minlon": -73.9557036, + "maxlat": 40.7971919, + "maxlon": -73.9546388 + }, + "nodes": [ + 247225016, + 4302966182, + 2058919690, + 2058919700, + 247225017, + 2058919704, + 9908358312, + 9178942105, + 2058919710, + 9178942106, + 9908358313, + 2058919779, + 9178942107, + 2058919797, + 2058919830, + 9178942108, + 247225018, + 2058919883 + ], + "geometry": [ + { "lat": 40.7958419, "lon": -73.9556878 }, + { "lat": 40.7959116, "lon": -73.9557018 }, + { "lat": 40.7959539, "lon": -73.9557036 }, + { "lat": 40.7959936, "lon": -73.9556997 }, + { "lat": 40.7960400, "lon": -73.9556917 }, + { "lat": 40.7960893, "lon": -73.9556744 }, + { "lat": 40.7961378, "lon": -73.9556457 }, + { "lat": 40.7961804, "lon": -73.9556126 }, + { "lat": 40.7962322, "lon": -73.9555653 }, + { "lat": 40.7962820, "lon": -73.9555151 }, + { "lat": 40.7963364, "lon": -73.9554587 }, + { "lat": 40.7966666, "lon": -73.9550909 }, + { "lat": 40.7967289, "lon": -73.9550235 }, + { "lat": 40.7968010, "lon": -73.9549490 }, + { "lat": 40.7968798, "lon": -73.9548715 }, + { "lat": 40.7969712, "lon": -73.9547958 }, + { "lat": 40.7970753, "lon": -73.9547208 }, + { "lat": 40.7971919, "lon": -73.9546388 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993524201, + "bounds": { + "minlat": 40.7788741, + "minlon": -73.9449784, + "maxlat": 40.7791490, + "maxlon": -73.9447790 + }, + "nodes": [ + 42428049, + 6214889064, + 9178967047 + ], + "geometry": [ + { "lat": 40.7791490, "lon": -73.9447790 }, + { "lat": 40.7790915, "lon": -73.9448207 }, + { "lat": 40.7788741, "lon": -73.9449784 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "4 mph", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "surface": "asphalt", + "turn:lanes:backward": "left;through|through;right", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 993524202, + "bounds": { + "minlat": 40.7799516, + "minlon": -73.9441571, + "maxlat": 40.7805009, + "maxlon": -73.9440712 + }, + "nodes": [ + 3785532382, + 6289180293, + 9178967038, + 6289180299, + 6289180300, + 6289180292, + 6289180298 + ], + "geometry": [ + { "lat": 40.7799516, "lon": -73.9441142 }, + { "lat": 40.7799833, "lon": -73.9440920 }, + { "lat": 40.7800238, "lon": -73.9440777 }, + { "lat": 40.7800536, "lon": -73.9440727 }, + { "lat": 40.7801089, "lon": -73.9440712 }, + { "lat": 40.7801651, "lon": -73.9440757 }, + { "lat": 40.7805009, "lon": -73.9441571 } + ], + "tags": { + "cycleway": "no", + "destination": "FDR Drive North", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxheight": "12'10\"", + "maxspeed": "25 mph", + "name": "York Avenue", + "name:etymology:wikidata": "Q8007", + "name:ru": "Йорк-авеню", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993524203, + "bounds": { + "minlat": 40.7805009, + "minlon": -73.9442562, + "maxlat": 40.7805427, + "maxlon": -73.9441571 + }, + "nodes": [ + 6289180298, + 589929417 + ], + "geometry": [ + { "lat": 40.7805009, "lon": -73.9441571 }, + { "lat": 40.7805427, "lon": -73.9442562 } + ], + "tags": { + "highway": "residential", + "name": "East 93rd Street", + "name:ru": "Восточная 93-я стрит", + "oneway": "no", + "wikidata": "Q4645924", + "wikipedia": "en:93rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 993524204, + "bounds": { + "minlat": 40.7801930, + "minlon": -73.9442562, + "maxlat": 40.7805427, + "maxlon": -73.9441831 + }, + "nodes": [ + 589929417, + 3785530556, + 3785530554, + 3785532381 + ], + "geometry": [ + { "lat": 40.7805427, "lon": -73.9442562 }, + { "lat": 40.7803193, "lon": -73.9442028 }, + { "lat": 40.7802563, "lon": -73.9441908 }, + { "lat": 40.7801930, "lon": -73.9441831 } + ], + "tags": { + "destination": "FDR Drive south and York Avenue", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "York Avenue", + "name:etymology:wikidata": "Q8007", + "name:ru": "Йорк-авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|" + } +}, +{ + "type": "way", + "id": 993539706, + "bounds": { + "minlat": 40.7377897, + "minlon": -73.9349617, + "maxlat": 40.7394412, + "maxlon": -73.9346328 + }, + "nodes": [ + 42866370, + 13294008247, + 13294008237, + 42799103, + 9981925202, + 5482274837, + 9179114940, + 42866373 + ], + "geometry": [ + { "lat": 40.7394412, "lon": -73.9346328 }, + { "lat": 40.7390583, "lon": -73.9347085 }, + { "lat": 40.7387644, "lon": -73.9347666 }, + { "lat": 40.7385634, "lon": -73.9348063 }, + { "lat": 40.7380002, "lon": -73.9349178 }, + { "lat": 40.7379664, "lon": -73.9349245 }, + { "lat": 40.7378568, "lon": -73.9349461 }, + { "lat": 40.7377897, "lon": -73.9349617 } + ], + "tags": { + "foot": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Van Dam Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993553210, + "bounds": { + "minlat": 40.7702677, + "minlon": -73.9160810, + "maxlat": 40.7703057, + "maxlon": -73.9158287 + }, + "nodes": [ + 42897727, + 3778263939 + ], + "geometry": [ + { "lat": 40.7702677, "lon": -73.9158287 }, + { "lat": 40.7703057, "lon": -73.9160810 } + ], + "tags": { + "foot": "no", + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Astoria Boulevard North", + "oneway": "yes", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 993553211, + "bounds": { + "minlat": 40.7703362, + "minlon": -73.9167768, + "maxlat": 40.7704058, + "maxlon": -73.9165684 + }, + "nodes": [ + 6406731015, + 9179198064, + 9179198063 + ], + "geometry": [ + { "lat": 40.7703362, "lon": -73.9165684 }, + { "lat": 40.7703705, "lon": -73.9166803 }, + { "lat": 40.7704058, "lon": -73.9167768 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "level": "0", + "maxspeed": "25 mph", + "name": "Astoria Boulevard North", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993553213, + "bounds": { + "minlat": 40.7704363, + "minlon": -73.9167553, + "maxlat": 40.7705376, + "maxlon": -73.9165405 + }, + "nodes": [ + 42905185, + 8751746010, + 276209330 + ], + "geometry": [ + { "lat": 40.7704363, "lon": -73.9165405 }, + { "lat": 40.7704836, "lon": -73.9166470 }, + { "lat": 40.7705376, "lon": -73.9167553 } + ], + "tags": { + "foot": "no", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Astoria Boulevard North", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 993793439, + "bounds": { + "minlat": 40.7055026, + "minlon": -74.0149463, + "maxlat": 40.7058009, + "maxlon": -74.0148091 + }, + "nodes": [ + 4916899612, + 9181525939, + 9906966865, + 9181525938 + ], + "geometry": [ + { "lat": 40.7055026, "lon": -74.0149463 }, + { "lat": 40.7056176, "lon": -74.0148988 }, + { "lat": 40.7056409, "lon": -74.0148878 }, + { "lat": 40.7058009, "lon": -74.0148091 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "25 mph", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "I 478" + } +}, +{ + "type": "way", + "id": 993793441, + "bounds": { + "minlat": 40.7048188, + "minlon": -74.0167012, + "maxlat": 40.7048802, + "maxlon": -74.0164104 + }, + "nodes": [ + 246923513, + 9181525952, + 9371204344, + 4207802391 + ], + "geometry": [ + { "lat": 40.7048802, "lon": -74.0164104 }, + { "lat": 40.7048543, "lon": -74.0165200 }, + { "lat": 40.7048338, "lon": -74.0166121 }, + { "lat": 40.7048188, "lon": -74.0167012 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "name_1": "Battery Place", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bowling Grn", + "tiger:name_base_1": "Battery", + "tiger:name_type": "Pl", + "tiger:name_type_1": "Pl", + "tiger:zip_left": "10280", + "tiger:zip_right": "10280", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 993793442, + "bounds": { + "minlat": 40.7048188, + "minlon": -74.0169161, + "maxlat": 40.7048276, + "maxlon": -74.0167012 + }, + "nodes": [ + 4207802391, + 9181525953, + 10292280004, + 246858654 + ], + "geometry": [ + { "lat": 40.7048188, "lon": -74.0167012 }, + { "lat": 40.7048196, "lon": -74.0167832 }, + { "lat": 40.7048231, "lon": -74.0168637 }, + { "lat": 40.7048276, "lon": -74.0169161 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bowling Grn", + "tiger:name_base_1": "Battery", + "tiger:name_type_1": "Pl", + "tiger:zip_left": "10280", + "tiger:zip_right": "10280", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 993795183, + "bounds": { + "minlat": 40.7017511, + "minlon": -74.0105880, + "maxlat": 40.7019107, + "maxlon": -74.0098765 + }, + "nodes": [ + 9181607973, + 12301115764, + 9181607975, + 4145735059 + ], + "geometry": [ + { "lat": 40.7017511, "lon": -74.0105880 }, + { "lat": 40.7017692, "lon": -74.0105105 }, + { "lat": 40.7018455, "lon": -74.0101843 }, + { "lat": 40.7019107, "lon": -74.0098765 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "25 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "note": "this is supposed to be a local truck route but signs say no trucks", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "turn:lanes": "|through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 993795184, + "bounds": { + "minlat": 40.7015359, + "minlon": -74.0123761, + "maxlat": 40.7016101, + "maxlon": -74.0119669 + }, + "nodes": [ + 370880739, + 9181607980, + 6163410983 + ], + "geometry": [ + { "lat": 40.7016101, "lon": -74.0119669 }, + { "lat": 40.7015720, "lon": -74.0122032 }, + { "lat": 40.7015359, "lon": -74.0123761 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "turn:lanes": "right", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 993795185, + "bounds": { + "minlat": 40.7016101, + "minlon": -74.0119669, + "maxlat": 40.7016535, + "maxlon": -74.0117885 + }, + "nodes": [ + 9181607981, + 370880739 + ], + "geometry": [ + { "lat": 40.7016535, "lon": -74.0117885 }, + { "lat": 40.7016101, "lon": -74.0119669 } + ], + "tags": { + "destination:lanes": "FDR Drive;Governors Island Ferry|", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "turn:lanes": "left|right", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 993795186, + "bounds": { + "minlat": 40.7042528, + "minlon": -74.0062946, + "maxlat": 40.7048067, + "maxlon": -74.0054108 + }, + "nodes": [ + 42444230, + 10557070630, + 10557070629, + 7139624491, + 42429861 + ], + "geometry": [ + { "lat": 40.7042528, "lon": -74.0062946 }, + { "lat": 40.7042701, "lon": -74.0062595 }, + { "lat": 40.7042912, "lon": -74.0062232 }, + { "lat": 40.7043128, "lon": -74.0061893 }, + { "lat": 40.7048067, "lon": -74.0054108 } + ], + "tags": { + "cycleway:right": "separate", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:left": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 993795938, + "bounds": { + "minlat": 40.8391493, + "minlon": -73.9151086, + "maxlat": 40.8392427, + "maxlon": -73.9148614 + }, + "nodes": [ + 42739226, + 5762102231, + 2408364031 + ], + "geometry": [ + { "lat": 40.8392427, "lon": -73.9151086 }, + { "lat": 40.8392182, "lon": -73.9150384 }, + { "lat": 40.8391493, "lon": -73.9148614 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 993795939, + "bounds": { + "minlat": 40.8392427, + "minlon": -73.9151086, + "maxlat": 40.8393163, + "maxlon": -73.9150551 + }, + "nodes": [ + 42739226, + 2408359280 + ], + "geometry": [ + { "lat": 40.8392427, "lon": -73.9151086 }, + { "lat": 40.8393163, "lon": -73.9150551 } + ], + "tags": { + "highway": "residential", + "name": "Wythe Place", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 993795940, + "bounds": { + "minlat": 40.8393163, + "minlon": -73.9153377, + "maxlat": 40.8393337, + "maxlon": -73.9150551 + }, + "nodes": [ + 2408359280, + 5762102233, + 2408359283 + ], + "geometry": [ + { "lat": 40.8393163, "lon": -73.9150551 }, + { "lat": 40.8393230, "lon": -73.9151562 }, + { "lat": 40.8393337, "lon": -73.9153377 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 993795941, + "bounds": { + "minlat": 40.8387645, + "minlon": -73.9151570, + "maxlat": 40.8391692, + "maxlon": -73.9141514 + }, + "nodes": [ + 2327276555, + 2327276557, + 13020258183, + 2408364037, + 5543337911 + ], + "geometry": [ + { "lat": 40.8391692, "lon": -73.9151570 }, + { "lat": 40.8391372, "lon": -73.9150969 }, + { "lat": 40.8390892, "lon": -73.9149768 }, + { "lat": 40.8389252, "lon": -73.9145658 }, + { "lat": 40.8387645, "lon": -73.9141514 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 993796464, + "bounds": { + "minlat": 40.8335430, + "minlon": -73.9203650, + "maxlat": 40.8350294, + "maxlon": -73.9194803 + }, + "nodes": [ + 2408379338, + 12739350639, + 42733742, + 13033188186, + 42733738 + ], + "geometry": [ + { "lat": 40.8350294, "lon": -73.9194803 }, + { "lat": 40.8349859, "lon": -73.9195066 }, + { "lat": 40.8343230, "lon": -73.9199070 }, + { "lat": 40.8336091, "lon": -73.9203262 }, + { "lat": 40.8335430, "lon": -73.9203650 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 993796465, + "bounds": { + "minlat": 40.8346255, + "minlon": -73.9194803, + "maxlat": 40.8350294, + "maxlon": -73.9183051 + }, + "nodes": [ + 2408379338, + 12998477320, + 2408393048, + 7686390450, + 2408393077, + 2408393013 + ], + "geometry": [ + { "lat": 40.8350294, "lon": -73.9194803 }, + { "lat": 40.8350085, "lon": -73.9194194 }, + { "lat": 40.8348077, "lon": -73.9188353 }, + { "lat": 40.8347875, "lon": -73.9187764 }, + { "lat": 40.8346470, "lon": -73.9183677 }, + { "lat": 40.8346255, "lon": -73.9183051 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 167th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 993796466, + "bounds": { + "minlat": 40.8350294, + "minlon": -73.9194803, + "maxlat": 40.8351063, + "maxlon": -73.9194349 + }, + "nodes": [ + 2408379376, + 2408379338 + ], + "geometry": [ + { "lat": 40.8351063, "lon": -73.9194349 }, + { "lat": 40.8350294, "lon": -73.9194803 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "name": "Walton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 993796467, + "bounds": { + "minlat": 40.8350152, + "minlon": -73.9194349, + "maxlat": 40.8351063, + "maxlon": -73.9191738 + }, + "nodes": [ + 2408379376, + 12998477321, + 2408379367 + ], + "geometry": [ + { "lat": 40.8351063, "lon": -73.9194349 }, + { "lat": 40.8350848, "lon": -73.9193732 }, + { "lat": 40.8350152, "lon": -73.9191738 } + ], + "tags": { + "highway": "tertiary", + "name": "East 167th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 993797873, + "bounds": { + "minlat": 40.7234280, + "minlon": -73.9902426, + "maxlat": 40.7234794, + "maxlon": -73.9900790 + }, + "nodes": [ + 8821475422, + 5783028387, + 42451665 + ], + "geometry": [ + { "lat": 40.7234280, "lon": -73.9900790 }, + { "lat": 40.7234503, "lon": -73.9901495 }, + { "lat": 40.7234794, "lon": -73.9902426 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797874, + "bounds": { + "minlat": 40.7206832, + "minlon": -73.9812727, + "maxlat": 40.7207645, + "maxlon": -73.9810026 + }, + "nodes": [ + 9181587096, + 3783146170, + 1919595922 + ], + "geometry": [ + { "lat": 40.7206832, "lon": -73.9810026 }, + { "lat": 40.7207372, "lon": -73.9811773 }, + { "lat": 40.7207645, "lon": -73.9812727 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797875, + "bounds": { + "minlat": 40.7210233, + "minlon": -73.9810829, + "maxlat": 40.7218857, + "maxlon": -73.9804520 + }, + "nodes": [ + 42453610, + 5648878922, + 8309479340, + 42437349, + 8309479339, + 12954862729 + ], + "geometry": [ + { "lat": 40.7210233, "lon": -73.9810829 }, + { "lat": 40.7210838, "lon": -73.9810386 }, + { "lat": 40.7216252, "lon": -73.9806425 }, + { "lat": 40.7216770, "lon": -73.9806046 }, + { "lat": 40.7217324, "lon": -73.9805641 }, + { "lat": 40.7218857, "lon": -73.9804520 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 993797876, + "bounds": { + "minlat": 40.7210233, + "minlon": -73.9879681, + "maxlat": 40.7239400, + "maxlon": -73.9810829 + }, + "nodes": [ + 42453610, + 3783146167, + 8272824064, + 7977832478, + 42453607, + 8960461822, + 7977832440, + 42453604, + 7977832443, + 6781574665, + 4505948472, + 3291987532, + 4886404634, + 4968494269, + 42453601 + ], + "geometry": [ + { "lat": 40.7210233, "lon": -73.9810829 }, + { "lat": 40.7210599, "lon": -73.9811698 }, + { "lat": 40.7217275, "lon": -73.9827572 }, + { "lat": 40.7219854, "lon": -73.9833642 }, + { "lat": 40.7220190, "lon": -73.9834440 }, + { "lat": 40.7220493, "lon": -73.9835146 }, + { "lat": 40.7229646, "lon": -73.9856486 }, + { "lat": 40.7230074, "lon": -73.9857481 }, + { "lat": 40.7230537, "lon": -73.9858584 }, + { "lat": 40.7232384, "lon": -73.9862972 }, + { "lat": 40.7233374, "lon": -73.9865325 }, + { "lat": 40.7236239, "lon": -73.9872124 }, + { "lat": 40.7237504, "lon": -73.9875128 }, + { "lat": 40.7238901, "lon": -73.9878352 }, + { "lat": 40.7239400, "lon": -73.9879681 } + ], + "tags": { + "alt_name:ko": "이스트 2번가", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 2nd Street", + "name:ko": "이스트 2nd 스트리트", + "name:ru": "Восточная 2-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 993797877, + "bounds": { + "minlat": 40.7212016, + "minlon": -73.9829678, + "maxlat": 40.7212780, + "maxlon": -73.9827157 + }, + "nodes": [ + 9181587097, + 3783146157, + 3783071109 + ], + "geometry": [ + { "lat": 40.7212016, "lon": -73.9827157 }, + { "lat": 40.7212502, "lon": -73.9828747 }, + { "lat": 40.7212780, "lon": -73.9829678 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797878, + "bounds": { + "minlat": 40.7219426, + "minlon": -73.9854838, + "maxlat": 40.7220363, + "maxlon": -73.9851667 + }, + "nodes": [ + 9181587098, + 8821475424, + 8307642247, + 42451604 + ], + "geometry": [ + { "lat": 40.7219426, "lon": -73.9851667 }, + { "lat": 40.7219843, "lon": -73.9853057 }, + { "lat": 40.7220129, "lon": -73.9854071 }, + { "lat": 40.7220363, "lon": -73.9854838 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797879, + "bounds": { + "minlat": 40.7220363, + "minlon": -73.9855770, + "maxlat": 40.7220644, + "maxlon": -73.9854838 + }, + "nodes": [ + 42451604, + 8307642243 + ], + "geometry": [ + { "lat": 40.7220363, "lon": -73.9854838 }, + { "lat": 40.7220644, "lon": -73.9855770 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797880, + "bounds": { + "minlat": 40.7224155, + "minlon": -73.9870920, + "maxlat": 40.7225365, + "maxlon": -73.9866832 + }, + "nodes": [ + 9181587100, + 5783020909, + 4478001045 + ], + "geometry": [ + { "lat": 40.7224155, "lon": -73.9866832 }, + { "lat": 40.7225041, "lon": -73.9869868 }, + { "lat": 40.7225365, "lon": -73.9870920 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797881, + "bounds": { + "minlat": 40.7226798, + "minlon": -73.9878608, + "maxlat": 40.7227585, + "maxlon": -73.9876023 + }, + "nodes": [ + 9181587101, + 8821425916, + 4598752834, + 4332491210 + ], + "geometry": [ + { "lat": 40.7226798, "lon": -73.9876023 }, + { "lat": 40.7227156, "lon": -73.9877190 }, + { "lat": 40.7227348, "lon": -73.9877838 }, + { "lat": 40.7227585, "lon": -73.9878608 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797882, + "bounds": { + "minlat": 40.7229857, + "minlon": -73.9894340, + "maxlat": 40.7231118, + "maxlon": -73.9890373 + }, + "nodes": [ + 1918039876, + 4202908168 + ], + "geometry": [ + { "lat": 40.7231118, "lon": -73.9894340 }, + { "lat": 40.7229857, "lon": -73.9890373 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797883, + "bounds": { + "minlat": 40.7226441, + "minlon": -73.9882047, + "maxlat": 40.7227315, + "maxlon": -73.9879176 + }, + "nodes": [ + 9181587102, + 8821425915, + 4598752833, + 1919595914 + ], + "geometry": [ + { "lat": 40.7227315, "lon": -73.9882047 }, + { "lat": 40.7226914, "lon": -73.9880715 }, + { "lat": 40.7226733, "lon": -73.9880148 }, + { "lat": 40.7226441, "lon": -73.9879176 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797884, + "bounds": { + "minlat": 40.7224119, + "minlon": -73.9873603, + "maxlat": 40.7224734, + "maxlon": -73.9871601 + }, + "nodes": [ + 9181587103, + 5783020902, + 1919595911 + ], + "geometry": [ + { "lat": 40.7224734, "lon": -73.9873603 }, + { "lat": 40.7224367, "lon": -73.9872452 }, + { "lat": 40.7224119, "lon": -73.9871601 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797885, + "bounds": { + "minlat": 40.7223300, + "minlon": -73.9871601, + "maxlat": 40.7224119, + "maxlon": -73.9868775 + }, + "nodes": [ + 1919595911, + 8307642239, + 9181587104 + ], + "geometry": [ + { "lat": 40.7224119, "lon": -73.9871601 }, + { "lat": 40.7223819, "lon": -73.9870570 }, + { "lat": 40.7223300, "lon": -73.9868775 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797887, + "bounds": { + "minlat": 40.7211632, + "minlon": -73.9833991, + "maxlat": 40.7212758, + "maxlon": -73.9830269 + }, + "nodes": [ + 9181587106, + 1919595912 + ], + "geometry": [ + { "lat": 40.7212758, "lon": -73.9833991 }, + { "lat": 40.7211632, "lon": -73.9830269 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797888, + "bounds": { + "minlat": 40.7191499, + "minlon": -73.9772402, + "maxlat": 40.7192576, + "maxlon": -73.9767051 + }, + "nodes": [ + 42453365, + 3783073263, + 9181587107 + ], + "geometry": [ + { "lat": 40.7192576, "lon": -73.9772402 }, + { "lat": 40.7192388, "lon": -73.9771595 }, + { "lat": 40.7191499, "lon": -73.9767051 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797889, + "bounds": { + "minlat": 40.7192576, + "minlon": -73.9774149, + "maxlat": 40.7193136, + "maxlon": -73.9772402 + }, + "nodes": [ + 9181587086, + 3783073287, + 3783073233, + 42453365 + ], + "geometry": [ + { "lat": 40.7193136, "lon": -73.9774149 }, + { "lat": 40.7193090, "lon": -73.9773982 }, + { "lat": 40.7192867, "lon": -73.9773361 }, + { "lat": 40.7192576, "lon": -73.9772402 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797890, + "bounds": { + "minlat": 40.7190823, + "minlon": -73.9767051, + "maxlat": 40.7191499, + "maxlon": -73.9763832 + }, + "nodes": [ + 9181587107, + 13519263280, + 3783073257, + 3783073253, + 42442788 + ], + "geometry": [ + { "lat": 40.7191499, "lon": -73.9767051 }, + { "lat": 40.7191361, "lon": -73.9766423 }, + { "lat": 40.7191160, "lon": -73.9765507 }, + { "lat": 40.7191031, "lon": -73.9764857 }, + { "lat": 40.7190823, "lon": -73.9763832 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797891, + "bounds": { + "minlat": 40.7227315, + "minlon": -73.9885922, + "maxlat": 40.7228463, + "maxlon": -73.9882047 + }, + "nodes": [ + 7480301866, + 4241743161, + 9181587102 + ], + "geometry": [ + { "lat": 40.7228463, "lon": -73.9885922 }, + { "lat": 40.7228079, "lon": -73.9884668 }, + { "lat": 40.7227315, "lon": -73.9882047 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993797893, + "bounds": { + "minlat": 40.7231118, + "minlon": -73.9898859, + "maxlat": 40.7232495, + "maxlon": -73.9894340 + }, + "nodes": [ + 11772132432, + 1918039876 + ], + "geometry": [ + { "lat": 40.7232495, "lon": -73.9898859 }, + { "lat": 40.7231118, "lon": -73.9894340 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 993799930, + "bounds": { + "minlat": 40.7205303, + "minlon": -73.9898501, + "maxlat": 40.7208768, + "maxlon": -73.9896674 + }, + "nodes": [ + 9181660645, + 3314293710, + 42437109 + ], + "geometry": [ + { "lat": 40.7208768, "lon": -73.9896674 }, + { "lat": 40.7205926, "lon": -73.9898182 }, + { "lat": 40.7205303, "lon": -73.9898501 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 993824704, + "bounds": { + "minlat": 40.8651830, + "minlon": -74.0081369, + "maxlat": 40.8656712, + "maxlon": -74.0067935 + }, + "nodes": [ + 9181865344, + 298562082, + 298562083, + 13762277538, + 10938641106, + 298562084, + 10938641137, + 298562085, + 298562220, + 10938641147, + 10938641144 + ], + "geometry": [ + { "lat": 40.8651830, "lon": -74.0081369 }, + { "lat": 40.8652345, "lon": -74.0079469 }, + { "lat": 40.8652818, "lon": -74.0077800 }, + { "lat": 40.8653076, "lon": -74.0076963 }, + { "lat": 40.8653299, "lon": -74.0076240 }, + { "lat": 40.8653798, "lon": -74.0074788 }, + { "lat": 40.8654339, "lon": -74.0073337 }, + { "lat": 40.8654892, "lon": -74.0071959 }, + { "lat": 40.8655616, "lon": -74.0070304 }, + { "lat": 40.8656320, "lon": -74.0068778 }, + { "lat": 40.8656712, "lon": -74.0067935 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 994905128, + "bounds": { + "minlat": 40.8056693, + "minlon": -73.9384003, + "maxlat": 40.8094377, + "maxlon": -73.9356770 + }, + "nodes": [ + 589928028, + 10169411284, + 10172935820, + 10186193918, + 589928029, + 3627799978, + 10172935817, + 10186193919, + 10168169522, + 589928030, + 10168169518, + 10169411224, + 589928033, + 10169411218, + 10168169550, + 589928034, + 10168169556, + 10168169564, + 589928035, + 10168169561, + 10168169573, + 589928020 + ], + "geometry": [ + { "lat": 40.8056693, "lon": -73.9384003 }, + { "lat": 40.8057421, "lon": -73.9383491 }, + { "lat": 40.8062407, "lon": -73.9380055 }, + { "lat": 40.8062508, "lon": -73.9379986 }, + { "lat": 40.8063016, "lon": -73.9379637 }, + { "lat": 40.8063541, "lon": -73.9379277 }, + { "lat": 40.8063719, "lon": -73.9379148 }, + { "lat": 40.8063755, "lon": -73.9379122 }, + { "lat": 40.8068742, "lon": -73.9375512 }, + { "lat": 40.8069166, "lon": -73.9375205 }, + { "lat": 40.8069847, "lon": -73.9374708 }, + { "lat": 40.8075021, "lon": -73.9370934 }, + { "lat": 40.8075512, "lon": -73.9370575 }, + { "lat": 40.8076093, "lon": -73.9370154 }, + { "lat": 40.8081227, "lon": -73.9366440 }, + { "lat": 40.8081768, "lon": -73.9366047 }, + { "lat": 40.8082356, "lon": -73.9365608 }, + { "lat": 40.8087321, "lon": -73.9361901 }, + { "lat": 40.8088106, "lon": -73.9361311 }, + { "lat": 40.8088741, "lon": -73.9360851 }, + { "lat": 40.8093675, "lon": -73.9357282 }, + { "lat": 40.8094377, "lon": -73.9356770 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 994913132, + "bounds": { + "minlat": 40.8256041, + "minlon": -73.9232807, + "maxlat": 40.8261392, + "maxlon": -73.9229539 + }, + "nodes": [ + 9910729402, + 12162740290, + 10635449513, + 2408448908, + 4207879606 + ], + "geometry": [ + { "lat": 40.8256041, "lon": -73.9232807 }, + { "lat": 40.8259783, "lon": -73.9230521 }, + { "lat": 40.8260181, "lon": -73.9230278 }, + { "lat": 40.8260853, "lon": -73.9229868 }, + { "lat": 40.8261392, "lon": -73.9229539 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 994919036, + "bounds": { + "minlat": 40.8208023, + "minlon": -73.9309022, + "maxlat": 40.8222250, + "maxlon": -73.9307543 + }, + "nodes": [ + 7931142274, + 13146413886, + 595786272 + ], + "geometry": [ + { "lat": 40.8208023, "lon": -73.9307543 }, + { "lat": 40.8221063, "lon": -73.9308571 }, + { "lat": 40.8222250, "lon": -73.9309022 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 995097900, + "bounds": { + "minlat": 40.7535433, + "minlon": -73.9145488, + "maxlat": 40.7536331, + "maxlon": -73.9140019 + }, + "nodes": [ + 8088642722, + 8088629347, + 4202403582, + 12046186750 + ], + "geometry": [ + { "lat": 40.7536331, "lon": -73.9145488 }, + { "lat": 40.7536195, "lon": -73.9144582 }, + { "lat": 40.7535695, "lon": -73.9141580 }, + { "lat": 40.7535433, "lon": -73.9140019 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 995099445, + "bounds": { + "minlat": 40.7457495, + "minlon": -73.9403233, + "maxlat": 40.7458350, + "maxlon": -73.9399335 + }, + "nodes": [ + 3049953949, + 276035449 + ], + "geometry": [ + { "lat": 40.7458350, "lon": -73.9403233 }, + { "lat": 40.7457495, "lon": -73.9399335 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "layer": "1", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 995215714, + "bounds": { + "minlat": 40.8012672, + "minlon": -73.9300369, + "maxlat": 40.8018953, + "maxlon": -73.9298760 + }, + "nodes": [ + 9190083396, + 371225090, + 9153702838, + 6266152785 + ], + "geometry": [ + { "lat": 40.8012672, "lon": -73.9298760 }, + { "lat": 40.8015811, "lon": -73.9299705 }, + { "lat": 40.8017397, "lon": -73.9300080 }, + { "lat": 40.8018953, "lon": -73.9300369 } + ], + "tags": { + "destination:lanes": "none|East 135th Street;Madison Avenue Bridge|East 125th Street", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "surface": "asphalt", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 995482529, + "bounds": { + "minlat": 40.8472704, + "minlon": -73.9443684, + "maxlat": 40.8495854, + "maxlon": -73.9432830 + }, + "nodes": [ + 7907883471, + 60927655, + 60916892, + 7907916427, + 7907916468, + 60916893, + 7907883479, + 7907916419, + 12067234223, + 60916894 + ], + "geometry": [ + { "lat": 40.8472704, "lon": -73.9443684 }, + { "lat": 40.8474729, "lon": -73.9442675 }, + { "lat": 40.8477533, "lon": -73.9441260 }, + { "lat": 40.8489515, "lon": -73.9435169 }, + { "lat": 40.8490565, "lon": -73.9434629 }, + { "lat": 40.8491834, "lon": -73.9434030 }, + { "lat": 40.8492884, "lon": -73.9433620 }, + { "lat": 40.8493964, "lon": -73.9433276 }, + { "lat": 40.8495034, "lon": -73.9433008 }, + { "lat": 40.8495854, "lon": -73.9432830 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 995482530, + "bounds": { + "minlat": 40.8439315, + "minlon": -73.9449629, + "maxlat": 40.8445812, + "maxlon": -73.9449217 + }, + "nodes": [ + 7908589026, + 60927648, + 7908589040, + 7908589053, + 7908589066, + 7908589079, + 7908575862, + 60927650 + ], + "geometry": [ + { "lat": 40.8439315, "lon": -73.9449629 }, + { "lat": 40.8440355, "lon": -73.9449549 }, + { "lat": 40.8441512, "lon": -73.9449480 }, + { "lat": 40.8442518, "lon": -73.9449412 }, + { "lat": 40.8443508, "lon": -73.9449346 }, + { "lat": 40.8444568, "lon": -73.9449286 }, + { "lat": 40.8445559, "lon": -73.9449232 }, + { "lat": 40.8445812, "lon": -73.9449217 } + ], + "tags": { + "destination:lanes": "none|none|Riverside Drive South", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "turn:lanes": "none|none|slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 995588442, + "bounds": { + "minlat": 40.8692007, + "minlon": -73.9199704, + "maxlat": 40.8701866, + "maxlon": -73.9190257 + }, + "nodes": [ + 9193390723, + 2034003301, + 1764672570, + 2034003311, + 1764670313, + 2034003313, + 1202018681, + 2034003337, + 2034003351, + 1202018683, + 2034003357, + 2034003360, + 1202018665, + 2034003369, + 2034003371, + 1202018726, + 2034003375, + 1202018734, + 2034003384, + 1764672567, + 1202018673, + 2034003387, + 6865009901 + ], + "geometry": [ + { "lat": 40.8692007, "lon": -73.9199704 }, + { "lat": 40.8692341, "lon": -73.9199475 }, + { "lat": 40.8692783, "lon": -73.9199257 }, + { "lat": 40.8693203, "lon": -73.9199110 }, + { "lat": 40.8693654, "lon": -73.9199033 }, + { "lat": 40.8694184, "lon": -73.9199023 }, + { "lat": 40.8696628, "lon": -73.9199262 }, + { "lat": 40.8697149, "lon": -73.9199226 }, + { "lat": 40.8697675, "lon": -73.9199139 }, + { "lat": 40.8698106, "lon": -73.9199002 }, + { "lat": 40.8698489, "lon": -73.9198814 }, + { "lat": 40.8698864, "lon": -73.9198558 }, + { "lat": 40.8699220, "lon": -73.9198224 }, + { "lat": 40.8699684, "lon": -73.9197585 }, + { "lat": 40.8699951, "lon": -73.9197151 }, + { "lat": 40.8700126, "lon": -73.9196784 }, + { "lat": 40.8700337, "lon": -73.9196172 }, + { "lat": 40.8700485, "lon": -73.9195536 }, + { "lat": 40.8700651, "lon": -73.9194127 }, + { "lat": 40.8700784, "lon": -73.9193502 }, + { "lat": 40.8701298, "lon": -73.9191607 }, + { "lat": 40.8701566, "lon": -73.9190900 }, + { "lat": 40.8701866, "lon": -73.9190257 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Park Terrace West", + "oneway": "yes", + "sidewalk": "left" + } +}, +{ + "type": "way", + "id": 995588445, + "bounds": { + "minlat": 40.8690010, + "minlon": -73.9203200, + "maxlat": 40.8692007, + "maxlon": -73.9199704 + }, + "nodes": [ + 42453354, + 9561229736, + 2034003282, + 2034003291, + 2034003295, + 2034003297, + 2034003299, + 1202018698, + 9193390723 + ], + "geometry": [ + { "lat": 40.8690010, "lon": -73.9203200 }, + { "lat": 40.8690369, "lon": -73.9202202 }, + { "lat": 40.8690440, "lon": -73.9202003 }, + { "lat": 40.8690798, "lon": -73.9201148 }, + { "lat": 40.8691023, "lon": -73.9200727 }, + { "lat": 40.8691193, "lon": -73.9200492 }, + { "lat": 40.8691459, "lon": -73.9200142 }, + { "lat": 40.8691708, "lon": -73.9199910 }, + { "lat": 40.8692007, "lon": -73.9199704 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Park Terrace West", + "oneway": "yes", + "sidewalk": "both" + } +}, +{ + "type": "way", + "id": 995605512, + "bounds": { + "minlat": 40.8117861, + "minlon": -73.9095984, + "maxlat": 40.8132432, + "maxlon": -73.9090809 + }, + "nodes": [ + 42764638, + 9917835170, + 8320867365, + 5487854703, + 42764633 + ], + "geometry": [ + { "lat": 40.8132432, "lon": -73.9090809 }, + { "lat": 40.8131240, "lon": -73.9091242 }, + { "lat": 40.8127813, "lon": -73.9092487 }, + { "lat": 40.8122616, "lon": -73.9094423 }, + { "lat": 40.8117861, "lon": -73.9095984 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "residential", + "name": "Jackson Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jackson", + "tiger:name_type": "Ave", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 995605513, + "bounds": { + "minlat": 40.8160301, + "minlon": -73.9080787, + "maxlat": 40.8163495, + "maxlon": -73.9080413 + }, + "nodes": [ + 42764645, + 12537097674, + 42760441 + ], + "geometry": [ + { "lat": 40.8160301, "lon": -73.9080787 }, + { "lat": 40.8160953, "lon": -73.9080711 }, + { "lat": 40.8163495, "lon": -73.9080413 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "residential", + "maxheight": "11'2\"", + "name": "Jackson Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jackson", + "tiger:name_type": "Ave", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 995607078, + "bounds": { + "minlat": 40.7497687, + "minlon": -73.9377840, + "maxlat": 40.7499835, + "maxlon": -73.9367394 + }, + "nodes": [ + 3114612553, + 42866451, + 11149714791, + 2963821757, + 3785669486, + 3785669485, + 3785669484, + 2963821771, + 3785669483, + 3785669482, + 2963821758, + 2963821773, + 6785727236 + ], + "geometry": [ + { "lat": 40.7499494, "lon": -73.9367394 }, + { "lat": 40.7499835, "lon": -73.9368085 }, + { "lat": 40.7499399, "lon": -73.9369283 }, + { "lat": 40.7497843, "lon": -73.9373564 }, + { "lat": 40.7497769, "lon": -73.9373843 }, + { "lat": 40.7497696, "lon": -73.9374158 }, + { "lat": 40.7497687, "lon": -73.9374388 }, + { "lat": 40.7497705, "lon": -73.9374606 }, + { "lat": 40.7497769, "lon": -73.9374909 }, + { "lat": 40.7497843, "lon": -73.9375152 }, + { "lat": 40.7497953, "lon": -73.9375418 }, + { "lat": 40.7498714, "lon": -73.9377135 }, + { "lat": 40.7498992, "lon": -73.9377840 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "1", + "name": "Queens Plaza North", + "name_1": "Bridge Plaza North", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 995629128, + "bounds": { + "minlat": 40.8060827, + "minlon": -73.9894384, + "maxlat": 40.8061264, + "maxlon": -73.9894013 + }, + "nodes": [ + 3480351542, + 3483176876 + ], + "geometry": [ + { "lat": 40.8061264, "lon": -73.9894384 }, + { "lat": 40.8060827, "lon": -73.9894013 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "source": "maxar" + } +}, +{ + "type": "way", + "id": 995629129, + "bounds": { + "minlat": 40.8058275, + "minlon": -73.9894013, + "maxlat": 40.8061899, + "maxlon": -73.9886789 + }, + "nodes": [ + 3483176876, + 9193705215, + 9193705216, + 9193727117 + ], + "geometry": [ + { "lat": 40.8060827, "lon": -73.9894013 }, + { "lat": 40.8058275, "lon": -73.9887754 }, + { "lat": 40.8059726, "lon": -73.9886789 }, + { "lat": 40.8061899, "lon": -73.9892126 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 995629130, + "bounds": { + "minlat": 40.8058589, + "minlon": -73.9886789, + "maxlat": 40.8059726, + "maxlon": -73.9883785 + }, + "nodes": [ + 9193705216, + 9193727118 + ], + "geometry": [ + { "lat": 40.8059726, "lon": -73.9886789 }, + { "lat": 40.8058589, "lon": -73.9883785 } + ], + "tags": { + "covered": "no", + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 995768727, + "bounds": { + "minlat": 40.7340597, + "minlon": -73.9230947, + "maxlat": 40.7342466, + "maxlon": -73.9226233 + }, + "nodes": [ + 9194902663, + 6219006685 + ], + "geometry": [ + { "lat": 40.7340597, "lon": -73.9230947 }, + { "lat": 40.7342466, "lon": -73.9226233 } + ], + "tags": { + "bridge": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 995768728, + "bounds": { + "minlat": 40.7340227, + "minlon": -73.9230439, + "maxlat": 40.7342466, + "maxlon": -73.9226233 + }, + "nodes": [ + 9194902664, + 6219006685 + ], + "geometry": [ + { "lat": 40.7340227, "lon": -73.9230439 }, + { "lat": 40.7342466, "lon": -73.9226233 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 995768729, + "bounds": { + "minlat": 40.7324864, + "minlon": -73.9249503, + "maxlat": 40.7340597, + "maxlon": -73.9230947 + }, + "nodes": [ + 9194902665, + 8907074295, + 9194902678, + 12162675409, + 9194902677, + 9194902676, + 8907074294, + 9194902675, + 9194902674, + 8907074293, + 9194902673, + 9194902672, + 8907074292, + 9194902671, + 12162675410, + 9194902670, + 9194902669, + 9194902668, + 9194902667, + 9194902666, + 9194902663 + ], + "geometry": [ + { "lat": 40.7324864, "lon": -73.9249503 }, + { "lat": 40.7325764, "lon": -73.9248885 }, + { "lat": 40.7326682, "lon": -73.9248235 }, + { "lat": 40.7327413, "lon": -73.9247669 }, + { "lat": 40.7328236, "lon": -73.9246985 }, + { "lat": 40.7329099, "lon": -73.9246259 }, + { "lat": 40.7329962, "lon": -73.9245508 }, + { "lat": 40.7330758, "lon": -73.9244764 }, + { "lat": 40.7331652, "lon": -73.9243892 }, + { "lat": 40.7332510, "lon": -73.9242989 }, + { "lat": 40.7333437, "lon": -73.9241973 }, + { "lat": 40.7334250, "lon": -73.9241032 }, + { "lat": 40.7335127, "lon": -73.9239895 }, + { "lat": 40.7336032, "lon": -73.9238653 }, + { "lat": 40.7336820, "lon": -73.9237491 }, + { "lat": 40.7337522, "lon": -73.9236415 }, + { "lat": 40.7338205, "lon": -73.9235357 }, + { "lat": 40.7338823, "lon": -73.9234278 }, + { "lat": 40.7339446, "lon": -73.9233182 }, + { "lat": 40.7340013, "lon": -73.9232144 }, + { "lat": 40.7340597, "lon": -73.9230947 } + ], + "tags": { + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 995768730, + "bounds": { + "minlat": 40.7242808, + "minlon": -73.9362852, + "maxlat": 40.7246725, + "maxlon": -73.9347807 + }, + "nodes": [ + 476025198, + 9194902740, + 9194902739 + ], + "geometry": [ + { "lat": 40.7242808, "lon": -73.9362852 }, + { "lat": 40.7245598, "lon": -73.9352568 }, + { "lat": 40.7246725, "lon": -73.9347807 } + ], + "tags": { + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 995768731, + "bounds": { + "minlat": 40.7247649, + "minlon": -73.9343989, + "maxlat": 40.7250034, + "maxlon": -73.9334125 + }, + "nodes": [ + 9194902738, + 9194902736 + ], + "geometry": [ + { "lat": 40.7247649, "lon": -73.9343989 }, + { "lat": 40.7250034, "lon": -73.9334125 } + ], + "tags": { + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 995768732, + "bounds": { + "minlat": 40.7246725, + "minlon": -73.9347807, + "maxlat": 40.7247649, + "maxlon": -73.9343989 + }, + "nodes": [ + 9194902739, + 9194902738 + ], + "geometry": [ + { "lat": 40.7246725, "lon": -73.9347807 }, + { "lat": 40.7247649, "lon": -73.9343989 } + ], + "tags": { + "bridge": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 995768733, + "bounds": { + "minlat": 40.7240350, + "minlon": -73.9372537, + "maxlat": 40.7242808, + "maxlon": -73.9362852 + }, + "nodes": [ + 9194902741, + 9194920870, + 12162675416, + 476025198 + ], + "geometry": [ + { "lat": 40.7240350, "lon": -73.9372537 }, + { "lat": 40.7240801, "lon": -73.9370887 }, + { "lat": 40.7241322, "lon": -73.9368873 }, + { "lat": 40.7242808, "lon": -73.9362852 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "turn:lanes": "through|through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 995770626, + "bounds": { + "minlat": 40.7251698, + "minlon": -73.9334779, + "maxlat": 40.7253841, + "maxlon": -73.9327549 + }, + "nodes": [ + 9194902751, + 9194920846 + ], + "geometry": [ + { "lat": 40.7253841, "lon": -73.9327549 }, + { "lat": 40.7251698, "lon": -73.9334779 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 995899769, + "bounds": { + "minlat": 40.7296097, + "minlon": -73.9118241, + "maxlat": 40.7297363, + "maxlon": -73.9113398 + }, + "nodes": [ + 277390603, + 10087637254, + 10087637256, + 10087637255, + 13443778421, + 9196051095, + 6819995536 + ], + "geometry": [ + { "lat": 40.7297363, "lon": -73.9118241 }, + { "lat": 40.7297025, "lon": -73.9116480 }, + { "lat": 40.7296935, "lon": -73.9116038 }, + { "lat": 40.7296806, "lon": -73.9115548 }, + { "lat": 40.7296772, "lon": -73.9115434 }, + { "lat": 40.7296679, "lon": -73.9115119 }, + { "lat": 40.7296097, "lon": -73.9113398 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 995899770, + "bounds": { + "minlat": 40.7292095, + "minlon": -73.9113398, + "maxlat": 40.7296097, + "maxlon": -73.9106058 + }, + "nodes": [ + 6819995536, + 10087637253, + 9196051102, + 9196051101, + 597324683, + 9196051100, + 5481965997 + ], + "geometry": [ + { "lat": 40.7296097, "lon": -73.9113398 }, + { "lat": 40.7295719, "lon": -73.9112317 }, + { "lat": 40.7295353, "lon": -73.9111381 }, + { "lat": 40.7294779, "lon": -73.9110276 }, + { "lat": 40.7294122, "lon": -73.9109151 }, + { "lat": 40.7293403, "lon": -73.9108039 }, + { "lat": 40.7292095, "lon": -73.9106058 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 995899771, + "bounds": { + "minlat": 40.7297888, + "minlon": -73.9117399, + "maxlat": 40.7299501, + "maxlon": -73.9105375 + }, + "nodes": [ + 597328420, + 9196051124, + 9196051123, + 9196051099, + 42786725, + 13247222704, + 42786722 + ], + "geometry": [ + { "lat": 40.7297888, "lon": -73.9105375 }, + { "lat": 40.7298322, "lon": -73.9106860 }, + { "lat": 40.7298659, "lon": -73.9108419 }, + { "lat": 40.7298958, "lon": -73.9109884 }, + { "lat": 40.7299390, "lon": -73.9112481 }, + { "lat": 40.7299501, "lon": -73.9116196 }, + { "lat": 40.7299492, "lon": -73.9117399 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Queens-Midtown Expressway", + "oneway": "yes", + "tiger:cfcc": "A41;A64", + "tiger:county": "Queens, NY", + "tiger:name_base": "54th;Long Island Exwy Service Road", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 995903245, + "bounds": { + "minlat": 40.7265149, + "minlon": -73.9074125, + "maxlat": 40.7272103, + "maxlon": -73.9062553 + }, + "nodes": [ + 42901476, + 11925728880, + 5481971923, + 5481971924, + 7725251754, + 7725251758, + 10183062430 + ], + "geometry": [ + { "lat": 40.7272103, "lon": -73.9074125 }, + { "lat": 40.7271620, "lon": -73.9073337 }, + { "lat": 40.7271133, "lon": -73.9072543 }, + { "lat": 40.7268603, "lon": -73.9068334 }, + { "lat": 40.7266119, "lon": -73.9064189 }, + { "lat": 40.7265599, "lon": -73.9063318 }, + { "lat": 40.7265149, "lon": -73.9062553 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 996107909, + "bounds": { + "minlat": 40.7562875, + "minlon": -73.9606065, + "maxlat": 40.7564971, + "maxlon": -73.9604025 + }, + "nodes": [ + 9197973004, + 9683429909, + 9197981224, + 9197973010, + 9197973003, + 9197973005, + 9197973013, + 9197973006, + 9683429910, + 9197973009, + 9197973014, + 9197973015, + 9197981218, + 9197981222, + 9197973016, + 9197973011, + 9197973004 + ], + "geometry": [ + { "lat": 40.7564971, "lon": -73.9604873 }, + { "lat": 40.7564867, "lon": -73.9604931 }, + { "lat": 40.7564777, "lon": -73.9604980 }, + { "lat": 40.7564934, "lon": -73.9605359 }, + { "lat": 40.7563874, "lon": -73.9606065 }, + { "lat": 40.7563257, "lon": -73.9604542 }, + { "lat": 40.7563043, "lon": -73.9604701 }, + { "lat": 40.7562875, "lon": -73.9604193 }, + { "lat": 40.7563682, "lon": -73.9604089 }, + { "lat": 40.7564176, "lon": -73.9604025 }, + { "lat": 40.7564186, "lon": -73.9604210 }, + { "lat": 40.7564238, "lon": -73.9604379 }, + { "lat": 40.7564360, "lon": -73.9604542 }, + { "lat": 40.7564506, "lon": -73.9604616 }, + { "lat": 40.7564689, "lon": -73.9604625 }, + { "lat": 40.7564829, "lon": -73.9604541 }, + { "lat": 40.7564971, "lon": -73.9604873 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 996521784, + "bounds": { + "minlat": 40.7567054, + "minlon": -73.9914548, + "maxlat": 40.7570743, + "maxlon": -73.9906107 + }, + "nodes": [ + 9201440705, + 9201440708 + ], + "geometry": [ + { "lat": 40.7567054, "lon": -73.9906107 }, + { "lat": 40.7570743, "lon": -73.9914548 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "layer": "-2", + "note": "buses only", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 996963682, + "bounds": { + "minlat": 40.7176180, + "minlon": -73.9801440, + "maxlat": 40.7176349, + "maxlon": -73.9800851 + }, + "nodes": [ + 9205440810, + 8236347426 + ], + "geometry": [ + { "lat": 40.7176349, "lon": -73.9801440 }, + { "lat": 40.7176180, "lon": -73.9800851 } + ], + "tags": { + "access": "private", + "highway": "pedestrian", + "lit": "yes", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 996963683, + "bounds": { + "minlat": 40.7182465, + "minlon": -73.9823324, + "maxlat": 40.7182607, + "maxlon": -73.9822823 + }, + "nodes": [ + 8236341513, + 9205440811 + ], + "geometry": [ + { "lat": 40.7182607, "lon": -73.9823324 }, + { "lat": 40.7182465, "lon": -73.9822823 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 997124853, + "bounds": { + "minlat": 40.6984827, + "minlon": -73.9214715, + "maxlat": 40.7083460, + "maxlon": -73.9115480 + }, + "nodes": [ + 42509643, + 9799250802, + 2568643639, + 9753035579, + 42509649, + 9753035580, + 10693892816, + 9753035569, + 42509655, + 9753035568, + 7721927441, + 2997129976, + 9753035522, + 42509659, + 9753035523, + 9755789713, + 42509663, + 9755789712, + 9761709232, + 42888324, + 9761709231, + 9761722041, + 42888327, + 9761722043, + 9761722018, + 9761709315, + 42827605, + 9761709292, + 10686521694, + 9761709262, + 42809946 + ], + "geometry": [ + { "lat": 40.6984827, "lon": -73.9214715 }, + { "lat": 40.6985756, "lon": -73.9213349 }, + { "lat": 40.6995793, "lon": -73.9203607 }, + { "lat": 40.6997613, "lon": -73.9201840 }, + { "lat": 40.6998200, "lon": -73.9201270 }, + { "lat": 40.6998758, "lon": -73.9200722 }, + { "lat": 40.7013129, "lon": -73.9186613 }, + { "lat": 40.7013478, "lon": -73.9186270 }, + { "lat": 40.7014055, "lon": -73.9185704 }, + { "lat": 40.7014586, "lon": -73.9185174 }, + { "lat": 40.7024994, "lon": -73.9174881 }, + { "lat": 40.7025215, "lon": -73.9174663 }, + { "lat": 40.7028975, "lon": -73.9171035 }, + { "lat": 40.7029530, "lon": -73.9170500 }, + { "lat": 40.7030083, "lon": -73.9169937 }, + { "lat": 40.7040616, "lon": -73.9159213 }, + { "lat": 40.7041140, "lon": -73.9158680 }, + { "lat": 40.7041738, "lon": -73.9158067 }, + { "lat": 40.7051299, "lon": -73.9148260 }, + { "lat": 40.7051871, "lon": -73.9147674 }, + { "lat": 40.7052464, "lon": -73.9147072 }, + { "lat": 40.7062553, "lon": -73.9136817 }, + { "lat": 40.7063160, "lon": -73.9136200 }, + { "lat": 40.7063796, "lon": -73.9135550 }, + { "lat": 40.7071481, "lon": -73.9127705 }, + { "lat": 40.7071720, "lon": -73.9127460 }, + { "lat": 40.7072230, "lon": -73.9126940 }, + { "lat": 40.7072776, "lon": -73.9126382 }, + { "lat": 40.7082677, "lon": -73.9116279 }, + { "lat": 40.7082980, "lon": -73.9115970 }, + { "lat": 40.7083460, "lon": -73.9115480 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:lane": "exclusive", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Himrod Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "width": "28'0\"" + } +}, +{ + "type": "way", + "id": 997125811, + "bounds": { + "minlat": 40.7184777, + "minlon": -73.9948080, + "maxlat": 40.7194667, + "maxlon": -73.9943946 + }, + "nodes": [ + 42432184, + 8231909732, + 12195871651, + 12195871653, + 7641718020, + 42437589 + ], + "geometry": [ + { "lat": 40.7194667, "lon": -73.9943946 }, + { "lat": 40.7194061, "lon": -73.9944193 }, + { "lat": 40.7193536, "lon": -73.9944438 }, + { "lat": 40.7185868, "lon": -73.9947564 }, + { "lat": 40.7185360, "lon": -73.9947800 }, + { "lat": 40.7184777, "lon": -73.9948080 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 997143658, + "bounds": { + "minlat": 40.7566665, + "minlon": -73.9861358, + "maxlat": 40.7573266, + "maxlon": -73.9857916 + }, + "nodes": [ + 9004888713, + 12055677930, + 12055677931, + 12055677932, + 6597498396, + 6597498385 + ], + "geometry": [ + { "lat": 40.7573266, "lon": -73.9857916 }, + { "lat": 40.7573098, "lon": -73.9858019 }, + { "lat": 40.7572664, "lon": -73.9858286 }, + { "lat": 40.7572266, "lon": -73.9858531 }, + { "lat": 40.7572013, "lon": -73.9858687 }, + { "lat": 40.7566665, "lon": -73.9861358 } + ], + "tags": { + "access": "yes", + "bicycle": "dismount", + "cycleway": "no", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "note": "closed to motor vehicles May 24, 2009", + "oneway": "no", + "surface": "paving_stones", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 997433602, + "bounds": { + "minlat": 40.7609342, + "minlon": -73.9508241, + "maxlat": 40.7610278, + "maxlon": -73.9506916 + }, + "nodes": [ + 5692100568, + 10891946379, + 5487049925 + ], + "geometry": [ + { "lat": 40.7609342, "lon": -73.9508241 }, + { "lat": 40.7610186, "lon": -73.9507047 }, + { "lat": 40.7610278, "lon": -73.9506916 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 997454371, + "bounds": { + "minlat": 40.8507983, + "minlon": -73.9430067, + "maxlat": 40.8542367, + "maxlon": -73.9403011 + }, + "nodes": [ + 374511042, + 12067234235, + 7908589006, + 12067234236, + 374511066, + 12067234237, + 7908589020, + 12067234238, + 374511073, + 12067234239, + 7908589034, + 374511079, + 7908589047, + 374511085, + 374511094, + 7908589060, + 374509575, + 7908589074, + 60916850, + 7908589087, + 60916851, + 374505953, + 7911483094, + 7911469477, + 7911483086, + 60916829 + ], + "geometry": [ + { "lat": 40.8507983, "lon": -73.9430067 }, + { "lat": 40.8508516, "lon": -73.9429890 }, + { "lat": 40.8509018, "lon": -73.9429699 }, + { "lat": 40.8509536, "lon": -73.9429465 }, + { "lat": 40.8510055, "lon": -73.9429218 }, + { "lat": 40.8510557, "lon": -73.9428949 }, + { "lat": 40.8511060, "lon": -73.9428666 }, + { "lat": 40.8511558, "lon": -73.9428361 }, + { "lat": 40.8512035, "lon": -73.9428056 }, + { "lat": 40.8512523, "lon": -73.9427704 }, + { "lat": 40.8512991, "lon": -73.9427352 }, + { "lat": 40.8513734, "lon": -73.9426757 }, + { "lat": 40.8514648, "lon": -73.9425925 }, + { "lat": 40.8515516, "lon": -73.9425042 }, + { "lat": 40.8516346, "lon": -73.9424135 }, + { "lat": 40.8522224, "lon": -73.9417658 }, + { "lat": 40.8523075, "lon": -73.9416743 }, + { "lat": 40.8523956, "lon": -73.9415859 }, + { "lat": 40.8524879, "lon": -73.9415037 }, + { "lat": 40.8525803, "lon": -73.9414305 }, + { "lat": 40.8526750, "lon": -73.9413603 }, + { "lat": 40.8538311, "lon": -73.9405189 }, + { "lat": 40.8539279, "lon": -73.9404516 }, + { "lat": 40.8540304, "lon": -73.9403924 }, + { "lat": 40.8541342, "lon": -73.9403446 }, + { "lat": 40.8542367, "lon": -73.9403011 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 997454372, + "bounds": { + "minlat": 40.8502609, + "minlon": -73.9431424, + "maxlat": 40.8507983, + "maxlon": -73.9430067 + }, + "nodes": [ + 60916849, + 12067234233, + 12067234234, + 7908588992, + 374511042 + ], + "geometry": [ + { "lat": 40.8502609, "lon": -73.9431424 }, + { "lat": 40.8504749, "lon": -73.9430910 }, + { "lat": 40.8505839, "lon": -73.9430642 }, + { "lat": 40.8506930, "lon": -73.9430358 }, + { "lat": 40.8507983, "lon": -73.9430067 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 997454373, + "bounds": { + "minlat": 40.8500707, + "minlon": -73.9431817, + "maxlat": 40.8502609, + "maxlon": -73.9431424 + }, + "nodes": [ + 7911307251, + 12067234229, + 60916849 + ], + "geometry": [ + { "lat": 40.8500707, "lon": -73.9431817 }, + { "lat": 40.8501545, "lon": -73.9431653 }, + { "lat": 40.8502609, "lon": -73.9431424 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 997455683, + "bounds": { + "minlat": 40.7211998, + "minlon": -74.0079995, + "maxlat": 40.7214979, + "maxlon": -74.0078471 + }, + "nodes": [ + 42424276, + 42424279, + 4136560589, + 3788379687, + 42424282, + 3788379688, + 42424286, + 4136899155, + 4136899153, + 42424334 + ], + "geometry": [ + { "lat": 40.7214979, "lon": -74.0078471 }, + { "lat": 40.7214697, "lon": -74.0078807 }, + { "lat": 40.7214384, "lon": -74.0079120 }, + { "lat": 40.7214080, "lon": -74.0079363 }, + { "lat": 40.7213785, "lon": -74.0079546 }, + { "lat": 40.7213450, "lon": -74.0079723 }, + { "lat": 40.7213081, "lon": -74.0079862 }, + { "lat": 40.7212674, "lon": -74.0079952 }, + { "lat": 40.7212330, "lon": -74.0079986 }, + { "lat": 40.7211998, "lon": -74.0079995 } + ], + "tags": { + "bicycle": "no", + "destination": "Canal Street East;Uptown;Hudson Street;Brooklyn;Downtown", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxaxles": "3", + "maxspeed": "25 mph", + "name": "Holland Tunnel Rotary", + "oneway": "yes", + "ref": "I 78", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "no", + "toll": "yes", + "turn:lanes": "none|none|right", + "unsigned_ref": "I 78" + } +}, +{ + "type": "way", + "id": 998076942, + "bounds": { + "minlat": 40.8186514, + "minlon": -73.9245581, + "maxlat": 40.8187553, + "maxlon": -73.9241564 + }, + "nodes": [ + 8344525033, + 8344525034, + 9215520912 + ], + "geometry": [ + { "lat": 40.8187553, "lon": -73.9245581 }, + { "lat": 40.8187347, "lon": -73.9244834 }, + { "lat": 40.8186514, "lon": -73.9241564 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 998387703, + "bounds": { + "minlat": 40.8106033, + "minlon": -74.0051509, + "maxlat": 40.8106856, + "maxlon": -74.0049190 + }, + "nodes": [ + 2813943261, + 7475993659, + 103865023 + ], + "geometry": [ + { "lat": 40.8106856, "lon": -74.0049190 }, + { "lat": 40.8106325, "lon": -74.0050689 }, + { "lat": 40.8106033, "lon": -74.0051509 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "highway": "primary", + "name": "John F. Kennedy Boulevard", + "name:etymology:wikidata": "Q9696", + "name_1": "Kennedy Boulevard", + "oneway": "yes", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "John F Kennedy", + "tiger:name_base_1": "Kennedy", + "tiger:name_base_2": "State Route 501", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 998387704, + "bounds": { + "minlat": 40.8105475, + "minlon": -74.0050569, + "maxlat": 40.8106856, + "maxlon": -74.0049190 + }, + "nodes": [ + 2813943258, + 7475993658, + 2813943261 + ], + "geometry": [ + { "lat": 40.8105475, "lon": -74.0050569 }, + { "lat": 40.8106031, "lon": -74.0050011 }, + { "lat": 40.8106856, "lon": -74.0049190 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "State Route 63", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047" + } +}, +{ + "type": "way", + "id": 998387705, + "bounds": { + "minlat": 40.8106856, + "minlon": -74.0049190, + "maxlat": 40.8108495, + "maxlon": -74.0047435 + }, + "nodes": [ + 2813943261, + 2813943270, + 9218372753 + ], + "geometry": [ + { "lat": 40.8106856, "lon": -74.0049190 }, + { "lat": 40.8107911, "lon": -74.0047962 }, + { "lat": 40.8108495, "lon": -74.0047435 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "1", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "State Route 63", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047" + } +}, +{ + "type": "way", + "id": 999019169, + "bounds": { + "minlat": 40.7646423, + "minlon": -73.9322587, + "maxlat": 40.7650850, + "maxlon": -73.9318341 + }, + "nodes": [ + 5487911895, + 5487911891, + 42881454 + ], + "geometry": [ + { "lat": 40.7650850, "lon": -73.9318341 }, + { "lat": 40.7647890, "lon": -73.9321200 }, + { "lat": 40.7646423, "lon": -73.9322587 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 999738157, + "bounds": { + "minlat": 40.7368653, + "minlon": -73.9228071, + "maxlat": 40.7368802, + "maxlon": -73.9226471 + }, + "nodes": [ + 9228746104, + 10084797179, + 10084797180, + 9228746105 + ], + "geometry": [ + { "lat": 40.7368802, "lon": -73.9228071 }, + { "lat": 40.7368717, "lon": -73.9227355 }, + { "lat": 40.7368676, "lon": -73.9226898 }, + { "lat": 40.7368653, "lon": -73.9226471 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1000935686, + "bounds": { + "minlat": 40.8673893, + "minlon": -73.9915532, + "maxlat": 40.8675435, + "maxlon": -73.9914340 + }, + "nodes": [ + 103308119, + 8061356770, + 8061356709 + ], + "geometry": [ + { "lat": 40.8673893, "lon": -73.9915532 }, + { "lat": 40.8674214, "lon": -73.9915285 }, + { "lat": 40.8675435, "lon": -73.9914340 } + ], + "tags": { + "access": "private", + "highway": "track", + "name": "Willow Street", + "smoothness": "bad", + "surface": "gravel", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Willow", + "tiger:name_type": "St", + "tiger:reviewed": "yes", + "tracktype": "grade2" + } +}, +{ + "type": "way", + "id": 1000972461, + "bounds": { + "minlat": 40.8795337, + "minlon": -73.9501404, + "maxlat": 40.8798768, + "maxlon": -73.9495382 + }, + "nodes": [ + 8374457901, + 103101556, + 12367941759, + 103195292 + ], + "geometry": [ + { "lat": 40.8798768, "lon": -73.9501404 }, + { "lat": 40.8797063, "lon": -73.9498414 }, + { "lat": 40.8796677, "lon": -73.9497736 }, + { "lat": 40.8795337, "lon": -73.9495382 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Palisade Avenue", + "old_ref": "CR 66", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 1000972462, + "bounds": { + "minlat": 40.8802987, + "minlon": -73.9512583, + "maxlat": 40.8805244, + "maxlon": -73.9508779 + }, + "nodes": [ + 103215751, + 9239519755, + 12367941760, + 103101524 + ], + "geometry": [ + { "lat": 40.8805244, "lon": -73.9512583 }, + { "lat": 40.8804268, "lon": -73.9510956 }, + { "lat": 40.8804070, "lon": -73.9510619 }, + { "lat": 40.8802987, "lon": -73.9508779 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East Palisade Avenue", + "old_ref": "CR 66", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 1000972463, + "bounds": { + "minlat": 40.8798768, + "minlon": -73.9503911, + "maxlat": 40.8800199, + "maxlon": -73.9501404 + }, + "nodes": [ + 103098551, + 8374457901 + ], + "geometry": [ + { "lat": 40.8800199, "lon": -73.9503911 }, + { "lat": 40.8798768, "lon": -73.9501404 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East Palisade Avenue", + "old_ref": "CR 66", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 1000972464, + "bounds": { + "minlat": 40.8802380, + "minlon": -73.9508779, + "maxlat": 40.8802987, + "maxlon": -73.9507733 + }, + "nodes": [ + 103101524, + 8374457899 + ], + "geometry": [ + { "lat": 40.8802987, "lon": -73.9508779 }, + { "lat": 40.8802380, "lon": -73.9507733 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Palisade Avenue", + "old_ref": "CR 66", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 1000972466, + "bounds": { + "minlat": 40.8818829, + "minlon": -73.9601352, + "maxlat": 40.8855964, + "maxlon": -73.9536404 + }, + "nodes": [ + 6892372777, + 7893059829, + 103128980, + 103186686, + 103119164, + 2200930079, + 7115788438, + 103186690, + 12367941766, + 103179948, + 9239519771, + 12367941765, + 6131279894, + 7690668269, + 5692712389, + 7115788431, + 7690668273, + 7690668267, + 7115788422, + 7936517748, + 103140289, + 7936517756 + ], + "geometry": [ + { "lat": 40.8855964, "lon": -73.9601352 }, + { "lat": 40.8851722, "lon": -73.9593875 }, + { "lat": 40.8847548, "lon": -73.9586580 }, + { "lat": 40.8843862, "lon": -73.9580173 }, + { "lat": 40.8843206, "lon": -73.9579054 }, + { "lat": 40.8839771, "lon": -73.9573000 }, + { "lat": 40.8837906, "lon": -73.9569724 }, + { "lat": 40.8835710, "lon": -73.9565882 }, + { "lat": 40.8832161, "lon": -73.9559722 }, + { "lat": 40.8831437, "lon": -73.9558426 }, + { "lat": 40.8831088, "lon": -73.9557822 }, + { "lat": 40.8830776, "lon": -73.9557275 }, + { "lat": 40.8829249, "lon": -73.9554593 }, + { "lat": 40.8828145, "lon": -73.9552683 }, + { "lat": 40.8827690, "lon": -73.9551865 }, + { "lat": 40.8826583, "lon": -73.9549925 }, + { "lat": 40.8826312, "lon": -73.9549440 }, + { "lat": 40.8824803, "lon": -73.9546829 }, + { "lat": 40.8823665, "lon": -73.9544823 }, + { "lat": 40.8822500, "lon": -73.9542766 }, + { "lat": 40.8821120, "lon": -73.9540351 }, + { "lat": 40.8818829, "lon": -73.9536404 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Palisade Avenue", + "old_ref": "CR 66", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632;07631" + } +}, +{ + "type": "way", + "id": 1000977249, + "bounds": { + "minlat": 40.8815319, + "minlon": -73.9830435, + "maxlat": 40.8816182, + "maxlon": -73.9828724 + }, + "nodes": [ + 9239580231, + 7256921775 + ], + "geometry": [ + { "lat": 40.8815319, "lon": -73.9828724 }, + { "lat": 40.8816182, "lon": -73.9830435 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1000977250, + "bounds": { + "minlat": 40.8810961, + "minlon": -73.9830721, + "maxlat": 40.8818305, + "maxlon": -73.9825990 + }, + "nodes": [ + 4207692889, + 9239580239, + 9239580231, + 9239580238, + 9239580237, + 9239580232 + ], + "geometry": [ + { "lat": 40.8818305, "lon": -73.9825990 }, + { "lat": 40.8815803, "lon": -73.9828419 }, + { "lat": 40.8815319, "lon": -73.9828724 }, + { "lat": 40.8814955, "lon": -73.9828954 }, + { "lat": 40.8813034, "lon": -73.9830110 }, + { "lat": 40.8810961, "lon": -73.9830721 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "30 mph", + "name": "South Dean Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dean", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1001075052, + "bounds": { + "minlat": 40.8150661, + "minlon": -73.9826793, + "maxlat": 40.8151224, + "maxlon": -73.9826182 + }, + "nodes": [ + 1751405036, + 1750475721 + ], + "geometry": [ + { "lat": 40.8150661, "lon": -73.9826793 }, + { "lat": 40.8151224, "lon": -73.9826182 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1001075053, + "bounds": { + "minlat": 40.8151224, + "minlon": -73.9826182, + "maxlat": 40.8153101, + "maxlon": -73.9824141 + }, + "nodes": [ + 1750475721, + 4205589199 + ], + "geometry": [ + { "lat": 40.8151224, "lon": -73.9826182 }, + { "lat": 40.8153101, "lon": -73.9824141 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1001075054, + "bounds": { + "minlat": 40.8148790, + "minlon": -73.9828827, + "maxlat": 40.8150661, + "maxlon": -73.9826793 + }, + "nodes": [ + 7679292218, + 1751405036 + ], + "geometry": [ + { "lat": 40.8148790, "lon": -73.9828827 }, + { "lat": 40.8150661, "lon": -73.9826793 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1001075055, + "bounds": { + "minlat": 40.8132820, + "minlon": -73.9825561, + "maxlat": 40.8148021, + "maxlon": -73.9807963 + }, + "nodes": [ + 1751405031, + 1751405028, + 5929254192, + 5929254191, + 13015336064, + 1751404984 + ], + "geometry": [ + { "lat": 40.8148021, "lon": -73.9825561 }, + { "lat": 40.8141209, "lon": -73.9808296 }, + { "lat": 40.8141022, "lon": -73.9807988 }, + { "lat": 40.8140790, "lon": -73.9807963 }, + { "lat": 40.8133282, "lon": -73.9812973 }, + { "lat": 40.8132820, "lon": -73.9813281 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1001549629, + "bounds": { + "minlat": 40.7971209, + "minlon": -73.9943978, + "maxlat": 40.7971683, + "maxlon": -73.9942895 + }, + "nodes": [ + 2308993447, + 6656196023 + ], + "geometry": [ + { "lat": 40.7971209, "lon": -73.9942895 }, + { "lat": 40.7971683, "lon": -73.9943978 } + ], + "tags": { + "highway": "residential", + "name": "Cove Lane", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Cove", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1001549633, + "bounds": { + "minlat": 40.7646183, + "minlon": -74.0201506, + "maxlat": 40.7647091, + "maxlon": -74.0199584 + }, + "nodes": [ + 7297001520, + 4205799629 + ], + "geometry": [ + { "lat": 40.7646183, "lon": -74.0199584 }, + { "lat": 40.7647091, "lon": -74.0201506 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "name": "Waterfront Park Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1001560162, + "bounds": { + "minlat": 40.8047194, + "minlon": -73.9127950, + "maxlat": 40.8048440, + "maxlon": -73.9124649 + }, + "nodes": [ + 42764615, + 13003675173, + 12088432113, + 13003675197, + 12088432096, + 42753396 + ], + "geometry": [ + { "lat": 40.8048440, "lon": -73.9127950 }, + { "lat": 40.8048124, "lon": -73.9127114 }, + { "lat": 40.8047976, "lon": -73.9126721 }, + { "lat": 40.8047578, "lon": -73.9125632 }, + { "lat": 40.8047442, "lon": -73.9125277 }, + { "lat": 40.8047194, "lon": -73.9124649 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1001560163, + "bounds": { + "minlat": 40.8042229, + "minlon": -73.9116270, + "maxlat": 40.8043371, + "maxlon": -73.9113577 + }, + "nodes": [ + 42750288, + 4915701077 + ], + "geometry": [ + { "lat": 40.8042229, "lon": -73.9113577 }, + { "lat": 40.8043371, "lon": -73.9116270 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1001560166, + "bounds": { + "minlat": 40.7994798, + "minlon": -73.9263568, + "maxlat": 40.8001031, + "maxlon": -73.9255947 + }, + "nodes": [ + 401787634, + 401787635, + 9156860561, + 401787636, + 9156860560, + 401787638, + 401787641, + 401787642, + 3640160571 + ], + "geometry": [ + { "lat": 40.7994798, "lon": -73.9263568 }, + { "lat": 40.7995442, "lon": -73.9263405 }, + { "lat": 40.7996135, "lon": -73.9263007 }, + { "lat": 40.7996834, "lon": -73.9262505 }, + { "lat": 40.7997657, "lon": -73.9261779 }, + { "lat": 40.7998275, "lon": -73.9261057 }, + { "lat": 40.7999825, "lon": -73.9258800 }, + { "lat": 40.8000632, "lon": -73.9257006 }, + { "lat": 40.8001031, "lon": -73.9255947 } + ], + "tags": { + "bicycle": "designated", + "covered": "no", + "highway": "service", + "lanes": "2", + "name": "Bronx Shore Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1001560167, + "bounds": { + "minlat": 40.7915439, + "minlon": -73.9244535, + "maxlat": 40.7925576, + "maxlon": -73.9235694 + }, + "nodes": [ + 277482205, + 3040261548, + 8123418696 + ], + "geometry": [ + { "lat": 40.7925576, "lon": -73.9235694 }, + { "lat": 40.7919451, "lon": -73.9241068 }, + { "lat": 40.7915439, "lon": -73.9244535 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "lcn": "yes", + "name": "Central Road", + "parking:lane:both": "no_parking" + } +}, +{ + "type": "way", + "id": 1001560169, + "bounds": { + "minlat": 40.7915439, + "minlon": -73.9245219, + "maxlat": 40.7915794, + "maxlon": -73.9244535 + }, + "nodes": [ + 9156860571, + 8123418696 + ], + "geometry": [ + { "lat": 40.7915794, "lon": -73.9245219 }, + { "lat": 40.7915439, "lon": -73.9244535 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1001560170, + "bounds": { + "minlat": 40.7917522, + "minlon": -73.9251876, + "maxlat": 40.7918731, + "maxlon": -73.9250877 + }, + "nodes": [ + 2346816259, + 9153856319 + ], + "geometry": [ + { "lat": 40.7917522, "lon": -73.9251876 }, + { "lat": 40.7918731, "lon": -73.9250877 } + ], + "tags": { + "bicycle": "designated", + "foot": "yes", + "highway": "service", + "lanes": "2", + "name": "Randalls Island Greenway", + "name:etymology:wikidata": "Q1198892" + } +}, +{ + "type": "way", + "id": 1001560171, + "bounds": { + "minlat": 40.7915794, + "minlon": -73.9250877, + "maxlat": 40.7918731, + "maxlon": -73.9245219 + }, + "nodes": [ + 9153856319, + 9156860571 + ], + "geometry": [ + { "lat": 40.7918731, "lon": -73.9250877 }, + { "lat": 40.7915794, "lon": -73.9245219 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1001769515, + "bounds": { + "minlat": 40.8099370, + "minlon": -73.9073007, + "maxlat": 40.8126698, + "maxlon": -73.9063346 + }, + "nodes": [ + 42763800, + 9917835156, + 13247374547, + 42763797, + 13247374549, + 3647228876, + 3647228875, + 13247432505, + 42762533 + ], + "geometry": [ + { "lat": 40.8126698, "lon": -73.9063346 }, + { "lat": 40.8125581, "lon": -73.9063733 }, + { "lat": 40.8112742, "lon": -73.9068339 }, + { "lat": 40.8112143, "lon": -73.9068554 }, + { "lat": 40.8111383, "lon": -73.9068844 }, + { "lat": 40.8103840, "lon": -73.9071719 }, + { "lat": 40.8100379, "lon": -73.9073007 }, + { "lat": 40.8100137, "lon": -73.9072909 }, + { "lat": 40.8099370, "lon": -73.9072600 } + ], + "tags": { + "highway": "residential", + "name": "Tinton Avenue", + "name:etymology:wikidata": "Q2243491", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tinton", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1001769516, + "bounds": { + "minlat": 40.8126698, + "minlon": -73.9068368, + "maxlat": 40.8127721, + "maxlon": -73.9063346 + }, + "nodes": [ + 42763800, + 9917835159, + 5430150044, + 9917835160 + ], + "geometry": [ + { "lat": 40.8126698, "lon": -73.9063346 }, + { "lat": 40.8126868, "lon": -73.9064196 }, + { "lat": 40.8127404, "lon": -73.9066782 }, + { "lat": 40.8127721, "lon": -73.9068368 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1001775137, + "bounds": { + "minlat": 40.7960142, + "minlon": -73.9930964, + "maxlat": 40.7961079, + "maxlon": -73.9930668 + }, + "nodes": [ + 9246211753, + 9246211754, + 9246211755, + 9246211756 + ], + "geometry": [ + { "lat": 40.7961079, "lon": -73.9930839 }, + { "lat": 40.7960710, "lon": -73.9930668 }, + { "lat": 40.7960422, "lon": -73.9930739 }, + { "lat": 40.7960142, "lon": -73.9930964 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1001780088, + "bounds": { + "minlat": 40.7044455, + "minlon": -73.9391863, + "maxlat": 40.7045653, + "maxlon": -73.9390068 + }, + "nodes": [ + 7722378714, + 9704064497, + 9704064479, + 7722378715 + ], + "geometry": [ + { "lat": 40.7045653, "lon": -73.9391863 }, + { "lat": 40.7045178, "lon": -73.9391266 }, + { "lat": 40.7044771, "lon": -73.9390729 }, + { "lat": 40.7044455, "lon": -73.9390068 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Bushwick Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1001780089, + "bounds": { + "minlat": 40.7045916, + "minlon": -73.9390786, + "maxlat": 40.7048220, + "maxlon": -73.9378490 + }, + "nodes": [ + 7722378720, + 9704064502, + 10923311499, + 42504272 + ], + "geometry": [ + { "lat": 40.7045916, "lon": -73.9390786 }, + { "lat": 40.7046082, "lon": -73.9389907 }, + { "lat": 40.7047488, "lon": -73.9382398 }, + { "lat": 40.7048220, "lon": -73.9378490 } + ], + "tags": { + "highway": "residential", + "name": "Seigel Street", + "name:etymology:wikidata": "Q63190", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1001780090, + "bounds": { + "minlat": 40.7045916, + "minlon": -73.9394380, + "maxlat": 40.7052611, + "maxlon": -73.9390786 + }, + "nodes": [ + 7722378720, + 4660922276, + 4660922259, + 4660922272, + 8548018140, + 7722378719 + ], + "geometry": [ + { "lat": 40.7045916, "lon": -73.9390786 }, + { "lat": 40.7046559, "lon": -73.9391106 }, + { "lat": 40.7048979, "lon": -73.9392292 }, + { "lat": 40.7051035, "lon": -73.9393303 }, + { "lat": 40.7051986, "lon": -73.9393801 }, + { "lat": 40.7052611, "lon": -73.9394380 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Bushwick Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1001849537, + "bounds": { + "minlat": 40.7013949, + "minlon": -73.9638021, + "maxlat": 40.7014869, + "maxlon": -73.9636963 + }, + "nodes": [ + 5861248524, + 9246837705, + 9246837706 + ], + "geometry": [ + { "lat": 40.7013949, "lon": -73.9638021 }, + { "lat": 40.7014454, "lon": -73.9637421 }, + { "lat": 40.7014869, "lon": -73.9636963 } + ], + "tags": { + "bicycle": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1001849538, + "bounds": { + "minlat": 40.7015272, + "minlon": -73.9639690, + "maxlat": 40.7015540, + "maxlon": -73.9638766 + }, + "nodes": [ + 8280978687, + 3552687147 + ], + "geometry": [ + { "lat": 40.7015272, "lon": -73.9639690 }, + { "lat": 40.7015540, "lon": -73.9638766 } + ], + "tags": { + "bicycle": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1001849539, + "bounds": { + "minlat": 40.7013295, + "minlon": -73.9638870, + "maxlat": 40.7013949, + "maxlon": -73.9638021 + }, + "nodes": [ + 8280978685, + 9246837707, + 9776829145, + 5861248524 + ], + "geometry": [ + { "lat": 40.7013295, "lon": -73.9638870 }, + { "lat": 40.7013576, "lon": -73.9638503 }, + { "lat": 40.7013688, "lon": -73.9638357 }, + { "lat": 40.7013949, "lon": -73.9638021 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1001849540, + "bounds": { + "minlat": 40.7011473, + "minlon": -73.9634968, + "maxlat": 40.7011962, + "maxlon": -73.9634335 + }, + "nodes": [ + 8280978682, + 8280978683 + ], + "geometry": [ + { "lat": 40.7011962, "lon": -73.9634335 }, + { "lat": 40.7011473, "lon": -73.9634968 } + ], + "tags": { + "bicycle": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1002537278, + "bounds": { + "minlat": 40.8596569, + "minlon": -73.9649976, + "maxlat": 40.8598278, + "maxlon": -73.9648439 + }, + "nodes": [ + 65903770, + 65903769 + ], + "geometry": [ + { "lat": 40.8596569, "lon": -73.9649976 }, + { "lat": 40.8598278, "lon": -73.9648439 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "2", + "maxheight": "13'11\"", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "oneway": "yes", + "ref": "NJ 67", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1002798653, + "bounds": { + "minlat": 40.7048276, + "minlon": -74.0169161, + "maxlat": 40.7051367, + "maxlon": -74.0168143 + }, + "nodes": [ + 587987721, + 8821315484, + 4145434712, + 4145439099, + 4145439089, + 246858654 + ], + "geometry": [ + { "lat": 40.7051367, "lon": -74.0168143 }, + { "lat": 40.7049641, "lon": -74.0168691 }, + { "lat": 40.7049299, "lon": -74.0168948 }, + { "lat": 40.7048957, "lon": -74.0169046 }, + { "lat": 40.7048617, "lon": -74.0169120 }, + { "lat": 40.7048276, "lon": -74.0169161 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "destination": "Battery Place", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "|right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1002798654, + "bounds": { + "minlat": 40.7052235, + "minlon": -74.0164260, + "maxlat": 40.7066739, + "maxlon": -74.0159381 + }, + "nodes": [ + 11385942380, + 4145434705, + 10316226220, + 4145434708, + 4145434707, + 4145434713, + 4145416874, + 8821315482, + 5345057744, + 42451370 + ], + "geometry": [ + { "lat": 40.7052235, "lon": -74.0164260 }, + { "lat": 40.7059492, "lon": -74.0161509 }, + { "lat": 40.7059766, "lon": -74.0161410 }, + { "lat": 40.7060317, "lon": -74.0161210 }, + { "lat": 40.7061211, "lon": -74.0160904 }, + { "lat": 40.7062142, "lon": -74.0160603 }, + { "lat": 40.7062898, "lon": -74.0160372 }, + { "lat": 40.7064968, "lon": -74.0159763 }, + { "lat": 40.7065483, "lon": -74.0159631 }, + { "lat": 40.7066739, "lon": -74.0159381 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1002976452, + "bounds": { + "minlat": 40.8130536, + "minlon": -73.9081620, + "maxlat": 40.8158462, + "maxlon": -73.9071577 + }, + "nodes": [ + 42755244, + 9917835165, + 42733578, + 8602600503, + 13809174740, + 42755247, + 13809174741, + 8602600459, + 11807677219, + 13809174733, + 42755248 + ], + "geometry": [ + { "lat": 40.8130536, "lon": -73.9081620 }, + { "lat": 40.8131570, "lon": -73.9081245 }, + { "lat": 40.8138428, "lon": -73.9078759 }, + { "lat": 40.8148133, "lon": -73.9075279 }, + { "lat": 40.8148458, "lon": -73.9075163 }, + { "lat": 40.8149164, "lon": -73.9074910 }, + { "lat": 40.8149554, "lon": -73.9074770 }, + { "lat": 40.8150259, "lon": -73.9074517 }, + { "lat": 40.8157258, "lon": -73.9072008 }, + { "lat": 40.8157649, "lon": -73.9071868 }, + { "lat": 40.8158462, "lon": -73.9071577 } + ], + "tags": { + "highway": "residential", + "name": "Concord Avenue", + "name:etymology:wikidata": "Q523240", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concord", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1002976453, + "bounds": { + "minlat": 40.8135446, + "minlon": -73.9118102, + "maxlat": 40.8138956, + "maxlon": -73.9105427 + }, + "nodes": [ + 9917835182, + 7042957088, + 9917835179, + 9917835181, + 42735078, + 9917835180, + 2827172609, + 9917835183, + 9903127485, + 9903127484, + 9917835184, + 42756063 + ], + "geometry": [ + { "lat": 40.8135446, "lon": -73.9105427 }, + { "lat": 40.8135552, "lon": -73.9105942 }, + { "lat": 40.8136091, "lon": -73.9108559 }, + { "lat": 40.8136194, "lon": -73.9109060 }, + { "lat": 40.8136295, "lon": -73.9109553 }, + { "lat": 40.8136463, "lon": -73.9110352 }, + { "lat": 40.8136500, "lon": -73.9110524 }, + { "lat": 40.8136654, "lon": -73.9111044 }, + { "lat": 40.8136791, "lon": -73.9111508 }, + { "lat": 40.8137080, "lon": -73.9112471 }, + { "lat": 40.8138730, "lon": -73.9117423 }, + { "lat": 40.8138956, "lon": -73.9118102 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1003466060, + "bounds": { + "minlat": 40.7284709, + "minlon": -74.0053413, + "maxlat": 40.7286179, + "maxlon": -74.0053218 + }, + "nodes": [ + 42448563, + 8307641954, + 9259617996 + ], + "geometry": [ + { "lat": 40.7286179, "lon": -74.0053218 }, + { "lat": 40.7285453, "lon": -74.0053314 }, + { "lat": 40.7284709, "lon": -74.0053413 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 1003466061, + "bounds": { + "minlat": 40.7244077, + "minlon": -74.0059462, + "maxlat": 40.7256010, + "maxlon": -74.0057203 + }, + "nodes": [ + 4890333656, + 4890333634, + 42436567, + 4890333636, + 9988098411, + 4890333654, + 42424864 + ], + "geometry": [ + { "lat": 40.7256010, "lon": -74.0057203 }, + { "lat": 40.7250753, "lon": -74.0058132 }, + { "lat": 40.7250240, "lon": -74.0058223 }, + { "lat": 40.7249677, "lon": -74.0058354 }, + { "lat": 40.7247918, "lon": -74.0058708 }, + { "lat": 40.7244667, "lon": -74.0059343 }, + { "lat": 40.7244077, "lon": -74.0059462 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "old_ref": "NY 1A", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 1003466062, + "bounds": { + "minlat": 40.7264350, + "minlon": -74.0074309, + "maxlat": 40.7266017, + "maxlon": -74.0056580 + }, + "nodes": [ + 42445574, + 3252582133, + 13698684119, + 13698684116, + 13698684113, + 13698684122, + 8307641878, + 42436359 + ], + "geometry": [ + { "lat": 40.7264350, "lon": -74.0056580 }, + { "lat": 40.7264485, "lon": -74.0058026 }, + { "lat": 40.7264944, "lon": -74.0062906 }, + { "lat": 40.7265074, "lon": -74.0064288 }, + { "lat": 40.7265197, "lon": -74.0065590 }, + { "lat": 40.7265304, "lon": -74.0066728 }, + { "lat": 40.7265906, "lon": -74.0073132 }, + { "lat": 40.7266017, "lon": -74.0074309 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Vandam Street", + "name:ko": "밴담 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29135239", + "wikipedia": "en:Vandam Street" + } +}, +{ + "type": "way", + "id": 1003466063, + "bounds": { + "minlat": 40.7256753, + "minlon": -74.0058541, + "maxlat": 40.7256907, + "maxlon": -74.0057082 + }, + "nodes": [ + 4616536351, + 42442286 + ], + "geometry": [ + { "lat": 40.7256907, "lon": -74.0058541 }, + { "lat": 40.7256753, "lon": -74.0057082 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1003466064, + "bounds": { + "minlat": 40.7256753, + "minlon": -74.0057082, + "maxlat": 40.7264350, + "maxlon": -74.0056109 + }, + "nodes": [ + 42445574, + 8307641849, + 3252582131, + 8231935495, + 42442286 + ], + "geometry": [ + { "lat": 40.7264350, "lon": -74.0056580 }, + { "lat": 40.7263675, "lon": -74.0056334 }, + { "lat": 40.7263055, "lon": -74.0056109 }, + { "lat": 40.7257387, "lon": -74.0056984 }, + { "lat": 40.7256753, "lon": -74.0057082 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "old_ref": "NY 1A", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "none|through", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 1003466066, + "bounds": { + "minlat": 40.7256010, + "minlon": -74.0057203, + "maxlat": 40.7256753, + "maxlon": -74.0057082 + }, + "nodes": [ + 42442286, + 4890333656 + ], + "geometry": [ + { "lat": 40.7256753, "lon": -74.0057082 }, + { "lat": 40.7256010, "lon": -74.0057203 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "old_ref": "NY 1A", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 1003466067, + "bounds": { + "minlat": 40.7264350, + "minlon": -74.0056580, + "maxlat": 40.7265020, + "maxlon": -74.0056475 + }, + "nodes": [ + 3252582134, + 42445574 + ], + "geometry": [ + { "lat": 40.7265020, "lon": -74.0056475 }, + { "lat": 40.7264350, "lon": -74.0056580 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 1003870611, + "bounds": { + "minlat": 40.8334848, + "minlon": -73.9454338, + "maxlat": 40.8336477, + "maxlon": -73.9453237 + }, + "nodes": [ + 595352904, + 9680957588, + 42428958 + ], + "geometry": [ + { "lat": 40.8336477, "lon": -73.9453237 }, + { "lat": 40.8335467, "lon": -73.9453889 }, + { "lat": 40.8334848, "lon": -73.9454338 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1003871114, + "bounds": { + "minlat": 40.7443472, + "minlon": -73.9713203, + "maxlat": 40.7445132, + "maxlon": -73.9712406 + }, + "nodes": [ + 589099881, + 9140821886, + 589099968, + 589099734 + ], + "geometry": [ + { "lat": 40.7445132, "lon": -73.9712406 }, + { "lat": 40.7444744, "lon": -73.9712457 }, + { "lat": 40.7444343, "lon": -73.9712687 }, + { "lat": 40.7443472, "lon": -73.9713203 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1003905435, + "bounds": { + "minlat": 40.8384885, + "minlon": -73.9434650, + "maxlat": 40.8391740, + "maxlon": -73.9418259 + }, + "nodes": [ + 42427128, + 9421763714, + 9935939396, + 42428970 + ], + "geometry": [ + { "lat": 40.8391740, "lon": -73.9434650 }, + { "lat": 40.8391389, "lon": -73.9433817 }, + { "lat": 40.8385149, "lon": -73.9418889 }, + { "lat": 40.8384885, "lon": -73.9418259 } + ], + "tags": { + "highway": "residential", + "name": "West 164th Street", + "name_1": "West 164 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "164th", + "tiger:name_base_1": "164", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1003905436, + "bounds": { + "minlat": 40.8384885, + "minlon": -73.9418259, + "maxlat": 40.8392425, + "maxlon": -73.9412769 + }, + "nodes": [ + 42428973, + 9566927284, + 9935939394, + 42428970 + ], + "geometry": [ + { "lat": 40.8392425, "lon": -73.9412769 }, + { "lat": 40.8391777, "lon": -73.9413241 }, + { "lat": 40.8385511, "lon": -73.9417803 }, + { "lat": 40.8384885, "lon": -73.9418259 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1003905437, + "bounds": { + "minlat": 40.8382014, + "minlon": -73.9420345, + "maxlat": 40.8384885, + "maxlon": -73.9418259 + }, + "nodes": [ + 42428970, + 9935939395, + 9263230749 + ], + "geometry": [ + { "lat": 40.8384885, "lon": -73.9418259 }, + { "lat": 40.8384296, "lon": -73.9418686 }, + { "lat": 40.8382014, "lon": -73.9420345 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1003905438, + "bounds": { + "minlat": 40.8363466, + "minlon": -73.9427148, + "maxlat": 40.8372403, + "maxlon": -73.9405875 + }, + "nodes": [ + 42428966, + 561035377, + 11292676884, + 9625649347 + ], + "geometry": [ + { "lat": 40.8372403, "lon": -73.9427148 }, + { "lat": 40.8371502, "lon": -73.9425038 }, + { "lat": 40.8371088, "lon": -73.9424051 }, + { "lat": 40.8363466, "lon": -73.9405875 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 162nd Street", + "name_1": "West 162 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "162nd", + "tiger:name_base_1": "162", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1003905439, + "bounds": { + "minlat": 40.8372403, + "minlon": -73.9427148, + "maxlat": 40.8382014, + "maxlon": -73.9420345 + }, + "nodes": [ + 9263230749, + 11292676879, + 42428967, + 11292676882, + 11292676887, + 42428966 + ], + "geometry": [ + { "lat": 40.8382014, "lon": -73.9420345 }, + { "lat": 40.8379157, "lon": -73.9422197 }, + { "lat": 40.8378550, "lon": -73.9422590 }, + { "lat": 40.8377994, "lon": -73.9423028 }, + { "lat": 40.8372933, "lon": -73.9426757 }, + { "lat": 40.8372403, "lon": -73.9427148 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1003905440, + "bounds": { + "minlat": 40.8369869, + "minlon": -73.9428906, + "maxlat": 40.8372403, + "maxlon": -73.9427148 + }, + "nodes": [ + 42428966, + 11292676888, + 9263230750 + ], + "geometry": [ + { "lat": 40.8372403, "lon": -73.9427148 }, + { "lat": 40.8371711, "lon": -73.9427628 }, + { "lat": 40.8369869, "lon": -73.9428906 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1003905441, + "bounds": { + "minlat": 40.8347248, + "minlon": -73.9436263, + "maxlat": 40.8359859, + "maxlon": -73.9406514 + }, + "nodes": [ + 42428964, + 2541754705, + 561035375, + 13161289200, + 9935939407, + 42442664 + ], + "geometry": [ + { "lat": 40.8359859, "lon": -73.9436263 }, + { "lat": 40.8359314, "lon": -73.9434968 }, + { "lat": 40.8359013, "lon": -73.9434196 }, + { "lat": 40.8358625, "lon": -73.9433294 }, + { "lat": 40.8347869, "lon": -73.9407981 }, + { "lat": 40.8347248, "lon": -73.9406514 } + ], + "tags": { + "highway": "residential", + "name": "West 160th Street", + "name_1": "West 160 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "160th", + "tiger:name_base_1": "160", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1003905442, + "bounds": { + "minlat": 40.8353625, + "minlon": -73.9440835, + "maxlat": 40.8357345, + "maxlon": -73.9438141 + }, + "nodes": [ + 9263230751, + 9935939380, + 42427086 + ], + "geometry": [ + { "lat": 40.8357345, "lon": -73.9438141 }, + { "lat": 40.8354302, "lon": -73.9440367 }, + { "lat": 40.8353625, "lon": -73.9440835 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1003905443, + "bounds": { + "minlat": 40.8357345, + "minlon": -73.9438141, + "maxlat": 40.8359859, + "maxlon": -73.9436263 + }, + "nodes": [ + 42428964, + 5708485234, + 9263230751 + ], + "geometry": [ + { "lat": 40.8359859, "lon": -73.9436263 }, + { "lat": 40.8359321, "lon": -73.9436658 }, + { "lat": 40.8357345, "lon": -73.9438141 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1003912526, + "bounds": { + "minlat": 40.8325065, + "minlon": -73.9461559, + "maxlat": 40.8328147, + "maxlon": -73.9459388 + }, + "nodes": [ + 42428956, + 11191773497, + 9263279180 + ], + "geometry": [ + { "lat": 40.8328147, "lon": -73.9459388 }, + { "lat": 40.8327236, "lon": -73.9460030 }, + { "lat": 40.8325065, "lon": -73.9461559 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1004365128, + "bounds": { + "minlat": 40.7008329, + "minlon": -73.9422576, + "maxlat": 40.7016390, + "maxlon": -73.9421159 + }, + "nodes": [ + 2568052329, + 9752127019, + 9752127034, + 9752127010, + 42467803 + ], + "geometry": [ + { "lat": 40.7008329, "lon": -73.9421159 }, + { "lat": 40.7009627, "lon": -73.9421387 }, + { "lat": 40.7011578, "lon": -73.9421730 }, + { "lat": 40.7015847, "lon": -73.9422480 }, + { "lat": 40.7016390, "lon": -73.9422576 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Graham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1004365129, + "bounds": { + "minlat": 40.7007250, + "minlon": -73.9421159, + "maxlat": 40.7008329, + "maxlon": -73.9419310 + }, + "nodes": [ + 2568052329, + 9752127027, + 42504102 + ], + "geometry": [ + { "lat": 40.7008329, "lon": -73.9421159 }, + { "lat": 40.7008127, "lon": -73.9420814 }, + { "lat": 40.7007250, "lon": -73.9419310 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 1004367243, + "bounds": { + "minlat": 40.7503356, + "minlon": -74.0084888, + "maxlat": 40.7504355, + "maxlon": -74.0084864 + }, + "nodes": [ + 9143569898, + 12161224662, + 246580797 + ], + "geometry": [ + { "lat": 40.7504355, "lon": -74.0084864 }, + { "lat": 40.7503680, "lon": -74.0084888 }, + { "lat": 40.7503356, "lon": -74.0084887 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|||" + } +}, +{ + "type": "way", + "id": 1004369132, + "bounds": { + "minlat": 40.7151254, + "minlon": -73.9933988, + "maxlat": 40.7153571, + "maxlon": -73.9926355 + }, + "nodes": [ + 42437990, + 7480410399, + 9010154521, + 42429637, + 7480410410 + ], + "geometry": [ + { "lat": 40.7151254, "lon": -73.9926355 }, + { "lat": 40.7151446, "lon": -73.9927046 }, + { "lat": 40.7152227, "lon": -73.9929634 }, + { "lat": 40.7153394, "lon": -73.9933424 }, + { "lat": 40.7153571, "lon": -73.9933988 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1004369133, + "bounds": { + "minlat": 40.7147010, + "minlon": -73.9928559, + "maxlat": 40.7151254, + "maxlon": -73.9926355 + }, + "nodes": [ + 42437990, + 7480410403, + 7480346927 + ], + "geometry": [ + { "lat": 40.7151254, "lon": -73.9926355 }, + { "lat": 40.7150530, "lon": -73.9926723 }, + { "lat": 40.7147010, "lon": -73.9928559 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left|slight_left;through;right", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 1005716161, + "bounds": { + "minlat": 40.7701485, + "minlon": -74.0169385, + "maxlat": 40.7702596, + "maxlon": -74.0168245 + }, + "nodes": [ + 9279210558, + 9279210559, + 9279210572, + 9279210560, + 9279210561, + 9279210562, + 9279210563, + 9279210564, + 9279210565, + 9279210566, + 9279210567, + 9279210568, + 9279210569, + 9279210570, + 9279210571, + 9279210574, + 9279210558 + ], + "geometry": [ + { "lat": 40.7702258, "lon": -74.0168882 }, + { "lat": 40.7702596, "lon": -74.0168644 }, + { "lat": 40.7702532, "lon": -74.0168523 }, + { "lat": 40.7702452, "lon": -74.0168419 }, + { "lat": 40.7702272, "lon": -74.0168287 }, + { "lat": 40.7702095, "lon": -74.0168245 }, + { "lat": 40.7701922, "lon": -74.0168272 }, + { "lat": 40.7701754, "lon": -74.0168371 }, + { "lat": 40.7701604, "lon": -74.0168556 }, + { "lat": 40.7701531, "lon": -74.0168722 }, + { "lat": 40.7701488, "lon": -74.0168930 }, + { "lat": 40.7701485, "lon": -74.0169085 }, + { "lat": 40.7701499, "lon": -74.0169209 }, + { "lat": 40.7701525, "lon": -74.0169317 }, + { "lat": 40.7701548, "lon": -74.0169385 }, + { "lat": 40.7701921, "lon": -74.0169117 }, + { "lat": 40.7702258, "lon": -74.0168882 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1005717696, + "bounds": { + "minlat": 40.7709175, + "minlon": -74.0163129, + "maxlat": 40.7709865, + "maxlon": -74.0162217 + }, + "nodes": [ + 9279228841, + 9279228842, + 9279228843, + 5909817436, + 9279228834, + 9279228835, + 5909817435, + 9279228836, + 5909817434, + 9279228837, + 5909817433, + 9279228838, + 5909817432, + 9279228839, + 5909817431, + 9279228840, + 5909817430, + 9279228830, + 9279228831, + 9279228832, + 9279228833, + 9279228841 + ], + "geometry": [ + { "lat": 40.7709299, "lon": -74.0162322 }, + { "lat": 40.7709391, "lon": -74.0162249 }, + { "lat": 40.7709497, "lon": -74.0162217 }, + { "lat": 40.7709605, "lon": -74.0162229 }, + { "lat": 40.7709681, "lon": -74.0162268 }, + { "lat": 40.7709749, "lon": -74.0162330 }, + { "lat": 40.7709804, "lon": -74.0162411 }, + { "lat": 40.7709854, "lon": -74.0162552 }, + { "lat": 40.7709865, "lon": -74.0162708 }, + { "lat": 40.7709836, "lon": -74.0162860 }, + { "lat": 40.7709768, "lon": -74.0162991 }, + { "lat": 40.7709691, "lon": -74.0163070 }, + { "lat": 40.7709599, "lon": -74.0163117 }, + { "lat": 40.7709511, "lon": -74.0163129 }, + { "lat": 40.7709422, "lon": -74.0163110 }, + { "lat": 40.7709330, "lon": -74.0163054 }, + { "lat": 40.7709255, "lon": -74.0162965 }, + { "lat": 40.7709199, "lon": -74.0162842 }, + { "lat": 40.7709175, "lon": -74.0162703 }, + { "lat": 40.7709188, "lon": -74.0162557 }, + { "lat": 40.7709228, "lon": -74.0162430 }, + { "lat": 40.7709299, "lon": -74.0162322 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1005717700, + "bounds": { + "minlat": 40.7713332, + "minlon": -74.0160379, + "maxlat": 40.7713951, + "maxlon": -74.0159609 + }, + "nodes": [ + 9279228855, + 9279228856, + 9279228857, + 9279228858, + 9279228859, + 9279228860, + 9279228861, + 9279228862, + 9279228863, + 9279228864, + 9279228865, + 9279228855 + ], + "geometry": [ + { "lat": 40.7713951, "lon": -74.0160035 }, + { "lat": 40.7713858, "lon": -74.0159755 }, + { "lat": 40.7713765, "lon": -74.0159626 }, + { "lat": 40.7713597, "lon": -74.0159609 }, + { "lat": 40.7713447, "lon": -74.0159690 }, + { "lat": 40.7713363, "lon": -74.0159813 }, + { "lat": 40.7713332, "lon": -74.0159912 }, + { "lat": 40.7713354, "lon": -74.0160070 }, + { "lat": 40.7713416, "lon": -74.0160222 }, + { "lat": 40.7713482, "lon": -74.0160379 }, + { "lat": 40.7713703, "lon": -74.0160217 }, + { "lat": 40.7713951, "lon": -74.0160035 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1005719659, + "bounds": { + "minlat": 40.7719108, + "minlon": -74.0159965, + "maxlat": 40.7723543, + "maxlon": -74.0157416 + }, + "nodes": [ + 2837054153, + 9279216430, + 9279216431, + 9279216432, + 9279216433, + 9279216434, + 9279216435, + 9279216447, + 9279216438, + 2837054153 + ], + "geometry": [ + { "lat": 40.7723543, "lon": -74.0158013 }, + { "lat": 40.7723396, "lon": -74.0157450 }, + { "lat": 40.7722652, "lon": -74.0157787 }, + { "lat": 40.7722555, "lon": -74.0157416 }, + { "lat": 40.7720827, "lon": -74.0158200 }, + { "lat": 40.7720937, "lon": -74.0158625 }, + { "lat": 40.7719108, "lon": -74.0159456 }, + { "lat": 40.7719240, "lon": -74.0159965 }, + { "lat": 40.7721651, "lon": -74.0158885 }, + { "lat": 40.7723543, "lon": -74.0158013 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1006048151, + "bounds": { + "minlat": 40.7041501, + "minlon": -73.9460272, + "maxlat": 40.7041786, + "maxlon": -73.9457605 + }, + "nodes": [ + 5487698317, + 9752593948, + 9282161493 + ], + "geometry": [ + { "lat": 40.7041786, "lon": -73.9457605 }, + { "lat": 40.7041622, "lon": -73.9459135 }, + { "lat": 40.7041501, "lon": -73.9460272 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1006180969, + "bounds": { + "minlat": 40.8707577, + "minlon": -73.9541657, + "maxlat": 40.8708722, + "maxlon": -73.9538513 + }, + "nodes": [ + 7656323495, + 9283355921, + 13829810712, + 9283355922 + ], + "geometry": [ + { "lat": 40.8708722, "lon": -73.9541657 }, + { "lat": 40.8708136, "lon": -73.9540102 }, + { "lat": 40.8708029, "lon": -73.9539804 }, + { "lat": 40.8707577, "lon": -73.9538513 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1006180971, + "bounds": { + "minlat": 40.8699967, + "minlon": -73.9548245, + "maxlat": 40.8703869, + "maxlon": -73.9544767 + }, + "nodes": [ + 9283355935, + 9283355938, + 9283355936 + ], + "geometry": [ + { "lat": 40.8703869, "lon": -73.9544767 }, + { "lat": 40.8701096, "lon": -73.9547238 }, + { "lat": 40.8699967, "lon": -73.9548245 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1006180972, + "bounds": { + "minlat": 40.8699953, + "minlon": -73.9547238, + "maxlat": 40.8701096, + "maxlon": -73.9545014 + }, + "nodes": [ + 9283355937, + 9283355938 + ], + "geometry": [ + { "lat": 40.8699953, "lon": -73.9545014 }, + { "lat": 40.8701096, "lon": -73.9547238 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1006180973, + "bounds": { + "minlat": 40.8692593, + "minlon": -73.9551520, + "maxlat": 40.8693389, + "maxlon": -73.9549904 + }, + "nodes": [ + 9283355940, + 9283355946, + 7958583261, + 7958583262 + ], + "geometry": [ + { "lat": 40.8693389, "lon": -73.9551520 }, + { "lat": 40.8693133, "lon": -73.9551030 }, + { "lat": 40.8692876, "lon": -73.9550539 }, + { "lat": 40.8692593, "lon": -73.9549904 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1006180974, + "bounds": { + "minlat": 40.8684267, + "minlon": -73.9557070, + "maxlat": 40.8687472, + "maxlon": -73.9556801 + }, + "nodes": [ + 7958583249, + 9283355942, + 9283355943 + ], + "geometry": [ + { "lat": 40.8687472, "lon": -73.9557070 }, + { "lat": 40.8685378, "lon": -73.9556929 }, + { "lat": 40.8684267, "lon": -73.9556801 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1006180975, + "bounds": { + "minlat": 40.8678272, + "minlon": -73.9565086, + "maxlat": 40.8680963, + "maxlon": -73.9560195 + }, + "nodes": [ + 9283355947, + 9283355952, + 9283355948, + 9283355949 + ], + "geometry": [ + { "lat": 40.8680963, "lon": -73.9565086 }, + { "lat": 40.8679960, "lon": -73.9563231 }, + { "lat": 40.8679129, "lon": -73.9561695 }, + { "lat": 40.8678272, "lon": -73.9560195 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1006180976, + "bounds": { + "minlat": 40.8676207, + "minlon": -73.9568755, + "maxlat": 40.8686437, + "maxlon": -73.9558824 + }, + "nodes": [ + 9283355947, + 9283355950, + 9283355951, + 9283355952, + 9283355953, + 9283355954, + 9283355955, + 9283355947 + ], + "geometry": [ + { "lat": 40.8680963, "lon": -73.9565086 }, + { "lat": 40.8677255, "lon": -73.9568755 }, + { "lat": 40.8676207, "lon": -73.9566923 }, + { "lat": 40.8679960, "lon": -73.9563231 }, + { "lat": 40.8684538, "lon": -73.9558824 }, + { "lat": 40.8686002, "lon": -73.9558968 }, + { "lat": 40.8686437, "lon": -73.9559780 }, + { "lat": 40.8680963, "lon": -73.9565086 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1006180977, + "bounds": { + "minlat": 40.8675000, + "minlon": -73.9563338, + "maxlat": 40.8682643, + "maxlon": -73.9555972 + }, + "nodes": [ + 9283355956, + 9283355949, + 9283355957 + ], + "geometry": [ + { "lat": 40.8675000, "lon": -73.9563338 }, + { "lat": 40.8678272, "lon": -73.9560195 }, + { "lat": 40.8682643, "lon": -73.9555972 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1006180990, + "bounds": { + "minlat": 40.8711379, + "minlon": -73.9550130, + "maxlat": 40.8713430, + "maxlon": -73.9548451 + }, + "nodes": [ + 7656323491, + 13829810724, + 7656323493 + ], + "geometry": [ + { "lat": 40.8711379, "lon": -73.9548451 }, + { "lat": 40.8712562, "lon": -73.9549221 }, + { "lat": 40.8713430, "lon": -73.9550130 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1006213722, + "bounds": { + "minlat": 40.8626434, + "minlon": -73.9660660, + "maxlat": 40.8631743, + "maxlon": -73.9660581 + }, + "nodes": [ + 9283632969, + 9283632970 + ], + "geometry": [ + { "lat": 40.8631743, "lon": -73.9660581 }, + { "lat": 40.8626434, "lon": -73.9660660 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1006213723, + "bounds": { + "minlat": 40.8631743, + "minlon": -73.9660581, + "maxlat": 40.8632398, + "maxlon": -73.9660571 + }, + "nodes": [ + 5753470508, + 9283632969 + ], + "geometry": [ + { "lat": 40.8632398, "lon": -73.9660571 }, + { "lat": 40.8631743, "lon": -73.9660581 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1006213724, + "bounds": { + "minlat": 40.8621613, + "minlon": -73.9668808, + "maxlat": 40.8626234, + "maxlon": -73.9663163 + }, + "nodes": [ + 9283632971, + 5757502416, + 5757502417 + ], + "geometry": [ + { "lat": 40.8626234, "lon": -73.9663163 }, + { "lat": 40.8625896, "lon": -73.9663404 }, + { "lat": 40.8621613, "lon": -73.9668808 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1006213725, + "bounds": { + "minlat": 40.8626234, + "minlon": -73.9664225, + "maxlat": 40.8629980, + "maxlon": -73.9663052 + }, + "nodes": [ + 9283632972, + 5757502414, + 5757502415, + 9283632971 + ], + "geometry": [ + { "lat": 40.8629980, "lon": -73.9664225 }, + { "lat": 40.8629970, "lon": -73.9663052 }, + { "lat": 40.8626580, "lon": -73.9663129 }, + { "lat": 40.8626234, "lon": -73.9663163 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1006338541, + "bounds": { + "minlat": 40.8663486, + "minlon": -73.9629519, + "maxlat": 40.8664271, + "maxlon": -73.9628084 + }, + "nodes": [ + 9284780342, + 9284780343 + ], + "geometry": [ + { "lat": 40.8663486, "lon": -73.9628084 }, + { "lat": 40.8664271, "lon": -73.9629519 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006338544, + "bounds": { + "minlat": 40.8665375, + "minlon": -73.9627826, + "maxlat": 40.8666037, + "maxlon": -73.9626512 + }, + "nodes": [ + 9284780388, + 9284780398, + 9284780389 + ], + "geometry": [ + { "lat": 40.8665375, "lon": -73.9626512 }, + { "lat": 40.8665831, "lon": -73.9627328 }, + { "lat": 40.8666037, "lon": -73.9627826 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006338545, + "bounds": { + "minlat": 40.8665341, + "minlon": -73.9629657, + "maxlat": 40.8666014, + "maxlon": -73.9628484 + }, + "nodes": [ + 9284780394, + 9284780395 + ], + "geometry": [ + { "lat": 40.8666014, "lon": -73.9629657 }, + { "lat": 40.8665341, "lon": -73.9628484 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006338546, + "bounds": { + "minlat": 40.8666037, + "minlon": -73.9629064, + "maxlat": 40.8666667, + "maxlon": -73.9627826 + }, + "nodes": [ + 9284780396, + 9284780397, + 9284780389 + ], + "geometry": [ + { "lat": 40.8666667, "lon": -73.9629064 }, + { "lat": 40.8666239, "lon": -73.9628312 }, + { "lat": 40.8666037, "lon": -73.9627826 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006338551, + "bounds": { + "minlat": 40.8661344, + "minlon": -73.9620769, + "maxlat": 40.8661725, + "maxlon": -73.9619482 + }, + "nodes": [ + 9284797819, + 9284797820, + 9284797821 + ], + "geometry": [ + { "lat": 40.8661344, "lon": -73.9619482 }, + { "lat": 40.8661606, "lon": -73.9620270 }, + { "lat": 40.8661725, "lon": -73.9620769 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006338552, + "bounds": { + "minlat": 40.8661725, + "minlon": -73.9622177, + "maxlat": 40.8662096, + "maxlon": -73.9620769 + }, + "nodes": [ + 9284797821, + 9284797822, + 9284797823 + ], + "geometry": [ + { "lat": 40.8661725, "lon": -73.9620769 }, + { "lat": 40.8661873, "lon": -73.9621512 }, + { "lat": 40.8662096, "lon": -73.9622177 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006338555, + "bounds": { + "minlat": 40.8662421, + "minlon": -73.9620194, + "maxlat": 40.8662799, + "maxlon": -73.9618953 + }, + "nodes": [ + 9284797833, + 9284797834 + ], + "geometry": [ + { "lat": 40.8662421, "lon": -73.9618953 }, + { "lat": 40.8662799, "lon": -73.9620194 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006338556, + "bounds": { + "minlat": 40.8663597, + "minlon": -73.9621014, + "maxlat": 40.8664013, + "maxlon": -73.9619766 + }, + "nodes": [ + 9284797835, + 9284797836 + ], + "geometry": [ + { "lat": 40.8664013, "lon": -73.9621014 }, + { "lat": 40.8663597, "lon": -73.9619766 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006338557, + "bounds": { + "minlat": 40.8664435, + "minlon": -73.9620572, + "maxlat": 40.8664885, + "maxlon": -73.9619317 + }, + "nodes": [ + 9284797837, + 9284797838, + 9284797839 + ], + "geometry": [ + { "lat": 40.8664885, "lon": -73.9620572 }, + { "lat": 40.8664649, "lon": -73.9619839 }, + { "lat": 40.8664435, "lon": -73.9619317 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006338558, + "bounds": { + "minlat": 40.8663941, + "minlon": -73.9619317, + "maxlat": 40.8664435, + "maxlon": -73.9618097 + }, + "nodes": [ + 9284797839, + 9284797840, + 9284797841 + ], + "geometry": [ + { "lat": 40.8664435, "lon": -73.9619317 }, + { "lat": 40.8664205, "lon": -73.9618903 }, + { "lat": 40.8663941, "lon": -73.9618097 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006338564, + "bounds": { + "minlat": 40.8656849, + "minlon": -73.9615303, + "maxlat": 40.8657349, + "maxlon": -73.9613977 + }, + "nodes": [ + 9284797875, + 9284797876, + 9284797877 + ], + "geometry": [ + { "lat": 40.8656849, "lon": -73.9613977 }, + { "lat": 40.8657261, "lon": -73.9614922 }, + { "lat": 40.8657349, "lon": -73.9615303 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006338568, + "bounds": { + "minlat": 40.8657835, + "minlon": -73.9606814, + "maxlat": 40.8658921, + "maxlon": -73.9605060 + }, + "nodes": [ + 7652321328, + 7652321331 + ], + "geometry": [ + { "lat": 40.8658921, "lon": -73.9606814 }, + { "lat": 40.8657835, "lon": -73.9605060 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1006492535, + "bounds": { + "minlat": 40.8694156, + "minlon": -73.9606265, + "maxlat": 40.8694916, + "maxlon": -73.9604809 + }, + "nodes": [ + 9286084049, + 9286084050 + ], + "geometry": [ + { "lat": 40.8694916, "lon": -73.9606265 }, + { "lat": 40.8694156, "lon": -73.9604809 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006492537, + "bounds": { + "minlat": 40.8691904, + "minlon": -73.9605824, + "maxlat": 40.8692679, + "maxlon": -73.9604365 + }, + "nodes": [ + 9286084059, + 9286084060 + ], + "geometry": [ + { "lat": 40.8691904, "lon": -73.9604365 }, + { "lat": 40.8692679, "lon": -73.9605824 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006492539, + "bounds": { + "minlat": 40.8695332, + "minlon": -73.9603342, + "maxlat": 40.8695932, + "maxlon": -73.9601792 + }, + "nodes": [ + 9286084065, + 9286084066, + 9286084067 + ], + "geometry": [ + { "lat": 40.8695332, "lon": -73.9601792 }, + { "lat": 40.8695861, "lon": -73.9602715 }, + { "lat": 40.8695932, "lon": -73.9603342 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006492540, + "bounds": { + "minlat": 40.8695932, + "minlon": -73.9604977, + "maxlat": 40.8696434, + "maxlon": -73.9603342 + }, + "nodes": [ + 9286084067, + 9286084068, + 9286084069 + ], + "geometry": [ + { "lat": 40.8695932, "lon": -73.9603342 }, + { "lat": 40.8695979, "lon": -73.9604055 }, + { "lat": 40.8696434, "lon": -73.9604977 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006492547, + "bounds": { + "minlat": 40.8689382, + "minlon": -73.9606834, + "maxlat": 40.8690441, + "maxlon": -73.9605791 + }, + "nodes": [ + 9286167727, + 9286167728 + ], + "geometry": [ + { "lat": 40.8689382, "lon": -73.9606834 }, + { "lat": 40.8690441, "lon": -73.9605791 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006492548, + "bounds": { + "minlat": 40.8688508, + "minlon": -73.9605166, + "maxlat": 40.8689484, + "maxlon": -73.9604130 + }, + "nodes": [ + 9286167729, + 9286167730 + ], + "geometry": [ + { "lat": 40.8688508, "lon": -73.9605166 }, + { "lat": 40.8689484, "lon": -73.9604130 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006492549, + "bounds": { + "minlat": 40.8687392, + "minlon": -73.9603323, + "maxlat": 40.8689457, + "maxlon": -73.9601334 + }, + "nodes": [ + 9286167731, + 9286167732, + 9286167733 + ], + "geometry": [ + { "lat": 40.8687392, "lon": -73.9603323 }, + { "lat": 40.8688436, "lon": -73.9602312 }, + { "lat": 40.8689457, "lon": -73.9601334 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006492555, + "bounds": { + "minlat": 40.8669522, + "minlon": -73.9639815, + "maxlat": 40.8670872, + "maxlon": -73.9637454 + }, + "nodes": [ + 9286167810, + 9286167811, + 9286167812 + ], + "geometry": [ + { "lat": 40.8670872, "lon": -73.9639815 }, + { "lat": 40.8670066, "lon": -73.9638378 }, + { "lat": 40.8669522, "lon": -73.9637454 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006492556, + "bounds": { + "minlat": 40.8670882, + "minlon": -73.9638998, + "maxlat": 40.8671629, + "maxlon": -73.9637574 + }, + "nodes": [ + 9286167813, + 9286167814 + ], + "geometry": [ + { "lat": 40.8671629, "lon": -73.9638998 }, + { "lat": 40.8670882, "lon": -73.9637574 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006493642, + "bounds": { + "minlat": 40.8759535, + "minlon": -73.9539498, + "maxlat": 40.8763185, + "maxlon": -73.9532894 + }, + "nodes": [ + 9286167820, + 9286167821 + ], + "geometry": [ + { "lat": 40.8759535, "lon": -73.9532894 }, + { "lat": 40.8763185, "lon": -73.9539498 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1006493643, + "bounds": { + "minlat": 40.8758144, + "minlon": -73.9540207, + "maxlat": 40.8761451, + "maxlon": -73.9534280 + }, + "nodes": [ + 9286167822, + 9286167823 + ], + "geometry": [ + { "lat": 40.8758144, "lon": -73.9534280 }, + { "lat": 40.8761451, "lon": -73.9540207 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1006493644, + "bounds": { + "minlat": 40.8752532, + "minlon": -73.9535637, + "maxlat": 40.8756781, + "maxlon": -73.9528045 + }, + "nodes": [ + 6605713608, + 6605713601, + 6605713605 + ], + "geometry": [ + { "lat": 40.8756781, "lon": -73.9535637 }, + { "lat": 40.8754074, "lon": -73.9531198 }, + { "lat": 40.8752532, "lon": -73.9528045 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1006530402, + "bounds": { + "minlat": 40.7610612, + "minlon": -73.9882109, + "maxlat": 40.7614274, + "maxlon": -73.9879463 + }, + "nodes": [ + 9286503617, + 11296253750, + 9286503620, + 9286503618, + 9286433216 + ], + "geometry": [ + { "lat": 40.7614274, "lon": -73.9879463 }, + { "lat": 40.7613765, "lon": -73.9879831 }, + { "lat": 40.7613548, "lon": -73.9879988 }, + { "lat": 40.7611956, "lon": -73.9881138 }, + { "lat": 40.7610612, "lon": -73.9882109 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006530403, + "bounds": { + "minlat": 40.7611633, + "minlon": -73.9881138, + "maxlat": 40.7611956, + "maxlon": -73.9880352 + }, + "nodes": [ + 9286503618, + 9286503619 + ], + "geometry": [ + { "lat": 40.7611956, "lon": -73.9881138 }, + { "lat": 40.7611633, "lon": -73.9880352 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006642342, + "bounds": { + "minlat": 40.8673266, + "minlon": -73.9645856, + "maxlat": 40.8673915, + "maxlon": -73.9644783 + }, + "nodes": [ + 9287376850, + 9287376851 + ], + "geometry": [ + { "lat": 40.8673266, "lon": -73.9644783 }, + { "lat": 40.8673915, "lon": -73.9645856 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006642343, + "bounds": { + "minlat": 40.8674556, + "minlon": -73.9644542, + "maxlat": 40.8675208, + "maxlon": -73.9643376 + }, + "nodes": [ + 9287376852, + 9287376853 + ], + "geometry": [ + { "lat": 40.8674556, "lon": -73.9643376 }, + { "lat": 40.8675208, "lon": -73.9644542 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006642344, + "bounds": { + "minlat": 40.8674617, + "minlon": -73.9646053, + "maxlat": 40.8675125, + "maxlon": -73.9645142 + }, + "nodes": [ + 9287376854, + 9287376855 + ], + "geometry": [ + { "lat": 40.8675125, "lon": -73.9646053 }, + { "lat": 40.8674617, "lon": -73.9645142 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006642346, + "bounds": { + "minlat": 40.8675672, + "minlon": -73.9643422, + "maxlat": 40.8676310, + "maxlon": -73.9642310 + }, + "nodes": [ + 9287376862, + 9287376863 + ], + "geometry": [ + { "lat": 40.8675672, "lon": -73.9642310 }, + { "lat": 40.8676310, "lon": -73.9643422 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006642349, + "bounds": { + "minlat": 40.8673886, + "minlon": -73.9633164, + "maxlat": 40.8675421, + "maxlon": -73.9630439 + }, + "nodes": [ + 9287376876, + 9287376877 + ], + "geometry": [ + { "lat": 40.8673886, "lon": -73.9630439 }, + { "lat": 40.8675421, "lon": -73.9633164 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006642351, + "bounds": { + "minlat": 40.8675047, + "minlon": -73.9634845, + "maxlat": 40.8675814, + "maxlon": -73.9633528 + }, + "nodes": [ + 9287376882, + 9287376883 + ], + "geometry": [ + { "lat": 40.8675814, "lon": -73.9634845 }, + { "lat": 40.8675047, "lon": -73.9633528 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006642353, + "bounds": { + "minlat": 40.8676991, + "minlon": -73.9627454, + "maxlat": 40.8678035, + "maxlon": -73.9626457 + }, + "nodes": [ + 9287376888, + 9287376889 + ], + "geometry": [ + { "lat": 40.8676991, "lon": -73.9627454 }, + { "lat": 40.8678035, "lon": -73.9626457 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1006642354, + "bounds": { + "minlat": 40.8706415, + "minlon": -73.9580157, + "maxlat": 40.8711162, + "maxlon": -73.9574894 + }, + "nodes": [ + 9287376894, + 9287376895, + 6895957644 + ], + "geometry": [ + { "lat": 40.8711162, "lon": -73.9574894 }, + { "lat": 40.8706602, "lon": -73.9579395 }, + { "lat": 40.8706415, "lon": -73.9580157 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1006642355, + "bounds": { + "minlat": 40.8703270, + "minlon": -73.9580157, + "maxlat": 40.8706415, + "maxlon": -73.9575275 + }, + "nodes": [ + 6895957644, + 9287376897, + 6895957642, + 6895957643 + ], + "geometry": [ + { "lat": 40.8706415, "lon": -73.9580157 }, + { "lat": 40.8705207, "lon": -73.9578044 }, + { "lat": 40.8704296, "lon": -73.9576450 }, + { "lat": 40.8703270, "lon": -73.9575275 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1006642356, + "bounds": { + "minlat": 40.8703002, + "minlon": -73.9563430, + "maxlat": 40.8704200, + "maxlon": -73.9561133 + }, + "nodes": [ + 6895957636, + 6895957637 + ], + "geometry": [ + { "lat": 40.8703002, "lon": -73.9561133 }, + { "lat": 40.8704200, "lon": -73.9563430 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1006642357, + "bounds": { + "minlat": 40.8705207, + "minlon": -73.9578044, + "maxlat": 40.8710178, + "maxlon": -73.9573148 + }, + "nodes": [ + 9287376896, + 9287376897 + ], + "geometry": [ + { "lat": 40.8710178, "lon": -73.9573148 }, + { "lat": 40.8705207, "lon": -73.9578044 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1006642358, + "bounds": { + "minlat": 40.8704296, + "minlon": -73.9576450, + "maxlat": 40.8709229, + "maxlon": -73.9571462 + }, + "nodes": [ + 6895957642, + 9287376898, + 9287376899 + ], + "geometry": [ + { "lat": 40.8704296, "lon": -73.9576450 }, + { "lat": 40.8704853, "lon": -73.9575681 }, + { "lat": 40.8709229, "lon": -73.9571462 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1007118637, + "bounds": { + "minlat": 40.7831525, + "minlon": -73.9451484, + "maxlat": 40.7833680, + "maxlon": -73.9449996 + }, + "nodes": [ + 9291131963, + 9379330620, + 6181480031, + 6070360952 + ], + "geometry": [ + { "lat": 40.7831525, "lon": -73.9451484 }, + { "lat": 40.7832186, "lon": -73.9451034 }, + { "lat": 40.7832727, "lon": -73.9450660 }, + { "lat": 40.7833680, "lon": -73.9449996 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1007118638, + "bounds": { + "minlat": 40.7830217, + "minlon": -73.9452432, + "maxlat": 40.7831525, + "maxlon": -73.9451484 + }, + "nodes": [ + 9291131964, + 9291131963 + ], + "geometry": [ + { "lat": 40.7830217, "lon": -73.9452432 }, + { "lat": 40.7831525, "lon": -73.9451484 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "maxheight": "12'6\"", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1007178971, + "bounds": { + "minlat": 40.8264236, + "minlon": -73.9293879, + "maxlat": 40.8265003, + "maxlon": -73.9292726 + }, + "nodes": [ + 9291799157, + 9291799156 + ], + "geometry": [ + { "lat": 40.8265003, "lon": -73.9292726 }, + { "lat": 40.8264236, "lon": -73.9293879 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1007450159, + "bounds": { + "minlat": 40.7165486, + "minlon": -73.9846808, + "maxlat": 40.7168852, + "maxlon": -73.9845235 + }, + "nodes": [ + 9294358693, + 7668835414, + 9294358694 + ], + "geometry": [ + { "lat": 40.7168852, "lon": -73.9845235 }, + { "lat": 40.7167092, "lon": -73.9846058 }, + { "lat": 40.7165486, "lon": -73.9846808 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1007465483, + "bounds": { + "minlat": 40.7751865, + "minlon": -73.9511733, + "maxlat": 40.7752536, + "maxlon": -73.9511445 + }, + "nodes": [ + 9294497945, + 9294497946, + 9294497947 + ], + "geometry": [ + { "lat": 40.7751865, "lon": -73.9511702 }, + { "lat": 40.7752119, "lon": -73.9511733 }, + { "lat": 40.7752536, "lon": -73.9511445 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1007629837, + "bounds": { + "minlat": 40.7224747, + "minlon": -74.0080264, + "maxlat": 40.7226350, + "maxlon": -74.0067245 + }, + "nodes": [ + 11494950098, + 8304498372, + 11494950097, + 4136500817, + 4136500819, + 4136500818, + 4136500820, + 246885162 + ], + "geometry": [ + { "lat": 40.7226350, "lon": -74.0080264 }, + { "lat": 40.7226331, "lon": -74.0079894 }, + { "lat": 40.7226291, "lon": -74.0079665 }, + { "lat": 40.7225191, "lon": -74.0068462 }, + { "lat": 40.7225148, "lon": -74.0068068 }, + { "lat": 40.7225057, "lon": -74.0067702 }, + { "lat": 40.7224915, "lon": -74.0067447 }, + { "lat": 40.7224747, "lon": -74.0067245 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Vestry Street", + "name:ko": "배스트리 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1007629838, + "bounds": { + "minlat": 40.7219884, + "minlon": -74.0082870, + "maxlat": 40.7226474, + "maxlon": -74.0081643 + }, + "nodes": [ + 42424408, + 8304498077, + 13294718045, + 8304498374, + 42436340 + ], + "geometry": [ + { "lat": 40.7219884, "lon": -74.0082870 }, + { "lat": 40.7220523, "lon": -74.0082782 }, + { "lat": 40.7221035, "lon": -74.0082683 }, + { "lat": 40.7225704, "lon": -74.0081765 }, + { "lat": 40.7226474, "lon": -74.0081643 } + ], + "tags": { + "bicycle": "yes", + "change:lanes": "yes|yes", + "expressway": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1007629839, + "bounds": { + "minlat": 40.7232866, + "minlon": -74.0080506, + "maxlat": 40.7236607, + "maxlon": -74.0079501 + }, + "nodes": [ + 11659009136, + 13294718037, + 5708229593, + 4142105822 + ], + "geometry": [ + { "lat": 40.7232866, "lon": -74.0080506 }, + { "lat": 40.7233840, "lon": -74.0080295 }, + { "lat": 40.7235883, "lon": -74.0079703 }, + { "lat": 40.7236607, "lon": -74.0079501 } + ], + "tags": { + "bicycle": "yes", + "change:lanes": "no|no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "left;through|through", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1007650684, + "bounds": { + "minlat": 40.8515080, + "minlon": -73.9931120, + "maxlat": 40.8530226, + "maxlon": -73.9915985 + }, + "nodes": [ + 103256375, + 8078713078, + 5724810707 + ], + "geometry": [ + { "lat": 40.8515080, "lon": -73.9931120 }, + { "lat": 40.8529487, "lon": -73.9916723 }, + { "lat": 40.8530226, "lon": -73.9915985 } + ], + "tags": { + "highway": "residential", + "name": "1st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1007650685, + "bounds": { + "minlat": 40.8519260, + "minlon": -73.9946620, + "maxlat": 40.8524200, + "maxlon": -73.9938220 + }, + "nodes": [ + 103137589, + 5970474328, + 5970474331, + 5976411331, + 103277688 + ], + "geometry": [ + { "lat": 40.8524200, "lon": -73.9946620 }, + { "lat": 40.8522036, "lon": -73.9942940 }, + { "lat": 40.8520603, "lon": -73.9940504 }, + { "lat": 40.8520497, "lon": -73.9940324 }, + { "lat": 40.8519260, "lon": -73.9938220 } + ], + "tags": { + "highway": "residential", + "name": "East Edsall Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edsall", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 1007650686, + "bounds": { + "minlat": 40.8519260, + "minlon": -73.9938220, + "maxlat": 40.8534327, + "maxlon": -73.9923265 + }, + "nodes": [ + 10265496293, + 103296732, + 5976408276, + 103277688 + ], + "geometry": [ + { "lat": 40.8534327, "lon": -73.9923265 }, + { "lat": 40.8533634, "lon": -73.9923942 }, + { "lat": 40.8523552, "lon": -73.9933961 }, + { "lat": 40.8519260, "lon": -73.9938220 } + ], + "tags": { + "highway": "residential", + "name": "Lincoln Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lincoln", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1007650687, + "bounds": { + "minlat": 40.8515080, + "minlon": -73.9938220, + "maxlat": 40.8519260, + "maxlon": -73.9931120 + }, + "nodes": [ + 103277688, + 103256375 + ], + "geometry": [ + { "lat": 40.8519260, "lon": -73.9938220 }, + { "lat": 40.8515080, "lon": -73.9931120 } + ], + "tags": { + "highway": "residential", + "name": "East Edsall Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edsall", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 1007811374, + "bounds": { + "minlat": 40.7143755, + "minlon": -73.9816369, + "maxlat": 40.7144648, + "maxlon": -73.9813220 + }, + "nodes": [ + 42445630, + 7499263657, + 11040029983, + 7499263656 + ], + "geometry": [ + { "lat": 40.7144648, "lon": -73.9816369 }, + { "lat": 40.7144496, "lon": -73.9815776 }, + { "lat": 40.7144305, "lon": -73.9815108 }, + { "lat": 40.7143755, "lon": -73.9813220 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1007833787, + "bounds": { + "minlat": 40.7343413, + "minlon": -74.0023950, + "maxlat": 40.7345778, + "maxlon": -74.0022578 + }, + "nodes": [ + 7956044493, + 8307642090, + 42430811 + ], + "geometry": [ + { "lat": 40.7345778, "lon": -74.0022578 }, + { "lat": 40.7343947, "lon": -74.0023643 }, + { "lat": 40.7343413, "lon": -74.0023950 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|none|none|none" + } +}, +{ + "type": "way", + "id": 1007834429, + "bounds": { + "minlat": 40.7427367, + "minlon": -73.9540991, + "maxlat": 40.7434296, + "maxlon": -73.9538694 + }, + "nodes": [ + 42826882, + 5034728017, + 13299962230, + 11211160255, + 6593145588 + ], + "geometry": [ + { "lat": 40.7434296, "lon": -73.9538694 }, + { "lat": 40.7433625, "lon": -73.9538919 }, + { "lat": 40.7428400, "lon": -73.9540649 }, + { "lat": 40.7427986, "lon": -73.9540786 }, + { "lat": 40.7427367, "lon": -73.9540991 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Vernon Boulevard", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Vernon", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1007835069, + "bounds": { + "minlat": 40.7476667, + "minlon": -73.9455985, + "maxlat": 40.7477784, + "maxlon": -73.9450503 + }, + "nodes": [ + 42825546, + 9982745661, + 9982745660, + 9297747810 + ], + "geometry": [ + { "lat": 40.7476667, "lon": -73.9450503 }, + { "lat": 40.7476859, "lon": -73.9451573 }, + { "lat": 40.7476954, "lon": -73.9452014 }, + { "lat": 40.7477784, "lon": -73.9455985 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1007837779, + "bounds": { + "minlat": 40.7222831, + "minlon": -73.9801612, + "maxlat": 40.7228867, + "maxlon": -73.9797217 + }, + "nodes": [ + 42455175, + 8309479332, + 8309479358, + 42453158 + ], + "geometry": [ + { "lat": 40.7222831, "lon": -73.9801612 }, + { "lat": 40.7223396, "lon": -73.9801199 }, + { "lat": 40.7228353, "lon": -73.9797591 }, + { "lat": 40.7228867, "lon": -73.9797217 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1007837780, + "bounds": { + "minlat": 40.7258818, + "minlon": -73.9775411, + "maxlat": 40.7261955, + "maxlon": -73.9772986 + }, + "nodes": [ + 42430938, + 8309479409, + 12179582416, + 12179582415, + 11501059435 + ], + "geometry": [ + { "lat": 40.7258818, "lon": -73.9775411 }, + { "lat": 40.7259409, "lon": -73.9774887 }, + { "lat": 40.7259797, "lon": -73.9774548 }, + { "lat": 40.7260062, "lon": -73.9774352 }, + { "lat": 40.7261955, "lon": -73.9772986 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1007837781, + "bounds": { + "minlat": 40.7267624, + "minlon": -73.9768747, + "maxlat": 40.7270883, + "maxlon": -73.9766448 + }, + "nodes": [ + 11501059437, + 42446571, + 8309479456, + 13205966915 + ], + "geometry": [ + { "lat": 40.7267624, "lon": -73.9768747 }, + { "lat": 40.7269937, "lon": -73.9767116 }, + { "lat": 40.7270389, "lon": -73.9766797 }, + { "lat": 40.7270883, "lon": -73.9766448 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1007846636, + "bounds": { + "minlat": 40.8371124, + "minlon": -73.9367288, + "maxlat": 40.8371845, + "maxlon": -73.9366936 + }, + "nodes": [ + 4281505674, + 13319742511 + ], + "geometry": [ + { "lat": 40.8371124, "lon": -73.9367288 }, + { "lat": 40.8371845, "lon": -73.9366936 } + ], + "tags": { + "alt_name": "Paul Robeson Boulevard", + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "description": "This honorary street name memorializes Paul Robeson.", + "highway": "tertiary", + "historic": "memorial", + "lanes": "2", + "name": "Edgecombe Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1008075183, + "bounds": { + "minlat": 40.8746718, + "minlon": -73.9097899, + "maxlat": 40.8757242, + "maxlon": -73.9083295 + }, + "nodes": [ + 1544782730, + 10128431591, + 5871416182, + 10128431599, + 1544809891 + ], + "geometry": [ + { "lat": 40.8757242, "lon": -73.9083295 }, + { "lat": 40.8756304, "lon": -73.9084514 }, + { "lat": 40.8747845, "lon": -73.9095507 }, + { "lat": 40.8747341, "lon": -73.9096577 }, + { "lat": 40.8746718, "lon": -73.9097899 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "turn:lanes": "left;through|through", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1008075184, + "bounds": { + "minlat": 40.8757242, + "minlon": -73.9083857, + "maxlat": 40.8757899, + "maxlon": -73.9083295 + }, + "nodes": [ + 1544782730, + 5871416389 + ], + "geometry": [ + { "lat": 40.8757242, "lon": -73.9083295 }, + { "lat": 40.8757899, "lon": -73.9083857 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "West 228th Street", + "name_1": "West 228 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "228th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1008104782, + "bounds": { + "minlat": 40.8191869, + "minlon": -74.0007938, + "maxlat": 40.8195630, + "maxlon": -74.0005679 + }, + "nodes": [ + 5727986082, + 103147935, + 103147936 + ], + "geometry": [ + { "lat": 40.8191869, "lon": -74.0007938 }, + { "lat": 40.8194790, "lon": -74.0006240 }, + { "lat": 40.8195630, "lon": -74.0005679 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1008115667, + "bounds": { + "minlat": 40.7134959, + "minlon": -73.9163384, + "maxlat": 40.7135349, + "maxlon": -73.9156780 + }, + "nodes": [ + 6397746196, + 13018332804, + 9744131390, + 42843568 + ], + "geometry": [ + { "lat": 40.7135349, "lon": -73.9163384 }, + { "lat": 40.7135241, "lon": -73.9161879 }, + { "lat": 40.7135085, "lon": -73.9159698 }, + { "lat": 40.7134959, "lon": -73.9156780 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1008121933, + "bounds": { + "minlat": 40.7627838, + "minlon": -73.9492535, + "maxlat": 40.7629715, + "maxlon": -73.9490990 + }, + "nodes": [ + 8152930806, + 9913669038, + 3785702993, + 3785702994, + 9189040212, + 9913669039, + 42426931 + ], + "geometry": [ + { "lat": 40.7627838, "lon": -73.9492535 }, + { "lat": 40.7627922, "lon": -73.9492480 }, + { "lat": 40.7628335, "lon": -73.9492222 }, + { "lat": 40.7628660, "lon": -73.9491994 }, + { "lat": 40.7629073, "lon": -73.9491655 }, + { "lat": 40.7629377, "lon": -73.9491345 }, + { "lat": 40.7629715, "lon": -73.9490990 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1008803350, + "bounds": { + "minlat": 40.7580638, + "minlon": -73.9943910, + "maxlat": 40.7583714, + "maxlon": -73.9937877 + }, + "nodes": [ + 9307956352, + 11149329270, + 11149329259, + 11149329261, + 11149329260, + 593977711, + 11149329272, + 11149329273, + 42434434 + ], + "geometry": [ + { "lat": 40.7580638, "lon": -73.9937877 }, + { "lat": 40.7581089, "lon": -73.9938617 }, + { "lat": 40.7581422, "lon": -73.9939261 }, + { "lat": 40.7582068, "lon": -73.9940844 }, + { "lat": 40.7582418, "lon": -73.9941758 }, + { "lat": 40.7582813, "lon": -73.9942971 }, + { "lat": 40.7583037, "lon": -73.9943366 }, + { "lat": 40.7583369, "lon": -73.9943693 }, + { "lat": 40.7583714, "lon": -73.9943910 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1008803351, + "bounds": { + "minlat": 40.7580638, + "minlon": -73.9945329, + "maxlat": 40.7582012, + "maxlon": -73.9937877 + }, + "nodes": [ + 9307956353, + 11149329274, + 11149329283, + 9307956354, + 10171120547, + 11149329267, + 11149329268, + 11149329269, + 11149329271, + 9307956352 + ], + "geometry": [ + { "lat": 40.7581732, "lon": -73.9945329 }, + { "lat": 40.7581944, "lon": -73.9943736 }, + { "lat": 40.7581996, "lon": -73.9943189 }, + { "lat": 40.7582011, "lon": -73.9943026 }, + { "lat": 40.7582012, "lon": -73.9942526 }, + { "lat": 40.7581929, "lon": -73.9941916 }, + { "lat": 40.7581677, "lon": -73.9941032 }, + { "lat": 40.7581155, "lon": -73.9939626 }, + { "lat": 40.7580890, "lon": -73.9938857 }, + { "lat": 40.7580638, "lon": -73.9937877 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "PABT Bus Ramp", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1009853236, + "bounds": { + "minlat": 40.8045451, + "minlon": -74.0186989, + "maxlat": 40.8051169, + "maxlon": -74.0182090 + }, + "nodes": [ + 5752813110, + 13525592752, + 5344617787 + ], + "geometry": [ + { "lat": 40.8051169, "lon": -74.0182090 }, + { "lat": 40.8046096, "lon": -74.0186436 }, + { "lat": 40.8045451, "lon": -74.0186989 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1009853238, + "bounds": { + "minlat": 40.8030978, + "minlon": -74.0199346, + "maxlat": 40.8033477, + "maxlon": -74.0197175 + }, + "nodes": [ + 9768819018, + 13525592733, + 5554920856 + ], + "geometry": [ + { "lat": 40.8033477, "lon": -74.0197175 }, + { "lat": 40.8031493, "lon": -74.0198899 }, + { "lat": 40.8030978, "lon": -74.0199346 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 1010159653, + "bounds": { + "minlat": 40.7139851, + "minlon": -74.0063041, + "maxlat": 40.7141733, + "maxlon": -74.0058972 + }, + "nodes": [ + 7816179466, + 5083818853, + 272195271 + ], + "geometry": [ + { "lat": 40.7139851, "lon": -74.0058972 }, + { "lat": 40.7141268, "lon": -74.0062038 }, + { "lat": 40.7141733, "lon": -74.0063041 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "unclassified", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "oneway": "no", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1010169527, + "bounds": { + "minlat": 40.7695978, + "minlon": -73.9943515, + "maxlat": 40.7698720, + "maxlon": -73.9936985 + }, + "nodes": [ + 9320463274, + 12153915834, + 3874682460, + 247123611 + ], + "geometry": [ + { "lat": 40.7695978, "lon": -73.9936985 }, + { "lat": 40.7698110, "lon": -73.9942063 }, + { "lat": 40.7698353, "lon": -73.9942643 }, + { "lat": 40.7698720, "lon": -73.9943515 } + ], + "tags": { + "bicycle": "yes", + "bicycle:lanes": "|designated||", + "cycleway": "lane", + "foot": "use_sidepath", + "highway": "unclassified", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|no|yes|yes", + "name": "West 55th Street", + "name:ru": "Западная 55-я стрит", + "name_1": "West 55 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|right|right", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1010539575, + "bounds": { + "minlat": 40.7930256, + "minlon": -73.9221112, + "maxlat": 40.7930755, + "maxlon": -73.9220089 + }, + "nodes": [ + 277482098, + 9323739412 + ], + "geometry": [ + { "lat": 40.7930755, "lon": -73.9221112 }, + { "lat": 40.7930256, "lon": -73.9220089 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1010539576, + "bounds": { + "minlat": 40.7929328, + "minlon": -73.9220089, + "maxlat": 40.7930256, + "maxlon": -73.9218258 + }, + "nodes": [ + 9323739412, + 3843180746, + 9323739413 + ], + "geometry": [ + { "lat": 40.7930256, "lon": -73.9220089 }, + { "lat": 40.7929847, "lon": -73.9219250 }, + { "lat": 40.7929328, "lon": -73.9218258 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1010539577, + "bounds": { + "minlat": 40.8053500, + "minlon": -73.9089576, + "maxlat": 40.8059500, + "maxlon": -73.9079258 + }, + "nodes": [ + 9323739415, + 13247555776, + 42743481 + ], + "geometry": [ + { "lat": 40.8053500, "lon": -73.9079258 }, + { "lat": 40.8059066, "lon": -73.9088829 }, + { "lat": 40.8059500, "lon": -73.9089576 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 141st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "141st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1010539578, + "bounds": { + "minlat": 40.8051417, + "minlon": -73.9079258, + "maxlat": 40.8053500, + "maxlon": -73.9075650 + }, + "nodes": [ + 9323739414, + 9323739415 + ], + "geometry": [ + { "lat": 40.8051417, "lon": -73.9075650 }, + { "lat": 40.8053500, "lon": -73.9079258 } + ], + "tags": { + "covered": "yes", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 141st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "141st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1010882769, + "bounds": { + "minlat": 40.8310476, + "minlon": -73.9322505, + "maxlat": 40.8331640, + "maxlon": -73.9317296 + }, + "nodes": [ + 529288546, + 13533533128, + 7899202043, + 529054592, + 13533533127, + 9166314562, + 13533533126, + 529054610 + ], + "geometry": [ + { "lat": 40.8331640, "lon": -73.9317296 }, + { "lat": 40.8317781, "lon": -73.9321208 }, + { "lat": 40.8316629, "lon": -73.9321523 }, + { "lat": 40.8315468, "lon": -73.9321808 }, + { "lat": 40.8314374, "lon": -73.9322037 }, + { "lat": 40.8313285, "lon": -73.9322223 }, + { "lat": 40.8311979, "lon": -73.9322409 }, + { "lat": 40.8310476, "lon": -73.9322505 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1010959853, + "bounds": { + "minlat": 40.8089461, + "minlon": -74.0160616, + "maxlat": 40.8090487, + "maxlon": -74.0159471 + }, + "nodes": [ + 5813807525, + 5813807524 + ], + "geometry": [ + { "lat": 40.8089461, "lon": -74.0160616 }, + { "lat": 40.8090487, "lon": -74.0159471 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1010959854, + "bounds": { + "minlat": 40.8086634, + "minlon": -74.0156068, + "maxlat": 40.8087601, + "maxlon": -74.0155120 + }, + "nodes": [ + 5813807528, + 7549492876, + 5813807529 + ], + "geometry": [ + { "lat": 40.8087601, "lon": -74.0155120 }, + { "lat": 40.8087369, "lon": -74.0155337 }, + { "lat": 40.8086634, "lon": -74.0156068 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1010959855, + "bounds": { + "minlat": 40.8087601, + "minlon": -74.0155120, + "maxlat": 40.8097042, + "maxlon": -74.0144727 + }, + "nodes": [ + 5813807537, + 5813807538, + 5813807528 + ], + "geometry": [ + { "lat": 40.8096135, "lon": -74.0144727 }, + { "lat": 40.8097042, "lon": -74.0146465 }, + { "lat": 40.8087601, "lon": -74.0155120 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1011617504, + "bounds": { + "minlat": 40.8241997, + "minlon": -74.0090818, + "maxlat": 40.8248522, + "maxlon": -74.0087091 + }, + "nodes": [ + 103168154, + 5751062636, + 5751062641, + 103139525 + ], + "geometry": [ + { "lat": 40.8241997, "lon": -74.0087091 }, + { "lat": 40.8244967, "lon": -74.0088791 }, + { "lat": 40.8246235, "lon": -74.0089517 }, + { "lat": 40.8248522, "lon": -74.0090818 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657" + } +}, +{ + "type": "way", + "id": 1011689831, + "bounds": { + "minlat": 40.8715673, + "minlon": -73.9815818, + "maxlat": 40.8719894, + "maxlon": -73.9808582 + }, + "nodes": [ + 103203328, + 10166159163, + 103105724 + ], + "geometry": [ + { "lat": 40.8719894, "lon": -73.9815818 }, + { "lat": 40.8716372, "lon": -73.9809805 }, + { "lat": 40.8715673, "lon": -73.9808582 } + ], + "tags": { + "highway": "residential", + "name": "Lakeview Avenue", + "oneway": "yes", + "sidewalk": "left", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lakeview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1011874918, + "bounds": { + "minlat": 40.7240259, + "minlon": -74.0086477, + "maxlat": 40.7241763, + "maxlon": -74.0084450 + }, + "nodes": [ + 4207143424, + 4142105811 + ], + "geometry": [ + { "lat": 40.7241763, "lon": -74.0086477 }, + { "lat": 40.7240259, "lon": -74.0084450 } + ], + "tags": { + "bicycle": "yes", + "change": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "noref": "yes", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1012145829, + "bounds": { + "minlat": 40.7126648, + "minlon": -74.0069151, + "maxlat": 40.7129658, + "maxlon": -74.0065004 + }, + "nodes": [ + 9337872352, + 9337872353, + 9368527097, + 9368824105, + 9337872354 + ], + "geometry": [ + { "lat": 40.7126648, "lon": -74.0065826 }, + { "lat": 40.7127600, "lon": -74.0065004 }, + { "lat": 40.7127665, "lon": -74.0065134 }, + { "lat": 40.7127833, "lon": -74.0065473 }, + { "lat": 40.7129658, "lon": -74.0069151 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1012470183, + "bounds": { + "minlat": 40.8319569, + "minlon": -73.9098034, + "maxlat": 40.8321591, + "maxlon": -73.9096919 + }, + "nodes": [ + 7062529351, + 4202402635 + ], + "geometry": [ + { "lat": 40.8321591, "lon": -73.9096919 }, + { "lat": 40.8319569, "lon": -73.9098034 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "Webster Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "turn:lanes:backward": "left||", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 1012470184, + "bounds": { + "minlat": 40.8318507, + "minlon": -73.9100479, + "maxlat": 40.8322158, + "maxlon": -73.9098631 + }, + "nodes": [ + 7044464262, + 7044464263, + 12038056029, + 7044464264 + ], + "geometry": [ + { "lat": 40.8322158, "lon": -73.9098770 }, + { "lat": 40.8319140, "lon": -73.9100479 }, + { "lat": 40.8319007, "lon": -73.9100091 }, + { "lat": 40.8318507, "lon": -73.9098631 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1012887937, + "bounds": { + "minlat": 40.7129404, + "minlon": -73.9066702, + "maxlat": 40.7130241, + "maxlon": -73.9066605 + }, + "nodes": [ + 9344811899, + 9759657449, + 9344811896 + ], + "geometry": [ + { "lat": 40.7130241, "lon": -73.9066605 }, + { "lat": 40.7130088, "lon": -73.9066623 }, + { "lat": 40.7129404, "lon": -73.9066702 } + ], + "tags": { + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 1013233201, + "bounds": { + "minlat": 40.8751935, + "minlon": -73.9571467, + "maxlat": 40.8753482, + "maxlon": -73.9569797 + }, + "nodes": [ + 9347930951, + 9347930952 + ], + "geometry": [ + { "lat": 40.8751935, "lon": -73.9571467 }, + { "lat": 40.8753482, "lon": -73.9569797 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1013233207, + "bounds": { + "minlat": 40.8763265, + "minlon": -73.9549540, + "maxlat": 40.8764208, + "maxlon": -73.9548623 + }, + "nodes": [ + 9347930998, + 9347930999 + ], + "geometry": [ + { "lat": 40.8763265, "lon": -73.9549540 }, + { "lat": 40.8764208, "lon": -73.9548623 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1013331672, + "bounds": { + "minlat": 40.8750249, + "minlon": -73.9574197, + "maxlat": 40.8752275, + "maxlon": -73.9572063 + }, + "nodes": [ + 9348842157, + 9348842158 + ], + "geometry": [ + { "lat": 40.8750249, "lon": -73.9574197 }, + { "lat": 40.8752275, "lon": -73.9572063 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1013331674, + "bounds": { + "minlat": 40.8753521, + "minlon": -73.9578548, + "maxlat": 40.8755169, + "maxlon": -73.9576889 + }, + "nodes": [ + 9348842165, + 9348842166 + ], + "geometry": [ + { "lat": 40.8753521, "lon": -73.9578548 }, + { "lat": 40.8755169, "lon": -73.9576889 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1013331676, + "bounds": { + "minlat": 40.8743998, + "minlon": -73.9557568, + "maxlat": 40.8745161, + "maxlon": -73.9556356 + }, + "nodes": [ + 9348842178, + 9348842179 + ], + "geometry": [ + { "lat": 40.8745161, "lon": -73.9556356 }, + { "lat": 40.8743998, "lon": -73.9557568 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1013331679, + "bounds": { + "minlat": 40.8754857, + "minlon": -73.9576368, + "maxlat": 40.8756364, + "maxlon": -73.9574776 + }, + "nodes": [ + 9348842192, + 9348842193 + ], + "geometry": [ + { "lat": 40.8756364, "lon": -73.9574776 }, + { "lat": 40.8754857, "lon": -73.9576368 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1013331681, + "bounds": { + "minlat": 40.8760315, + "minlon": -73.9588344, + "maxlat": 40.8761155, + "maxlon": -73.9587568 + }, + "nodes": [ + 9348842200, + 9348842201 + ], + "geometry": [ + { "lat": 40.8760315, "lon": -73.9588344 }, + { "lat": 40.8761155, "lon": -73.9587568 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1013331684, + "bounds": { + "minlat": 40.8754204, + "minlon": -73.9593625, + "maxlat": 40.8755448, + "maxlon": -73.9589879 + }, + "nodes": [ + 9348842212, + 9348842213, + 9348842214, + 9348842215, + 9348842216, + 9348848217, + 9348848218, + 9348848219, + 9348848220, + 9348848221, + 9348848222, + 9348848223 + ], + "geometry": [ + { "lat": 40.8755126, "lon": -73.9589879 }, + { "lat": 40.8755370, "lon": -73.9590367 }, + { "lat": 40.8755448, "lon": -73.9590665 }, + { "lat": 40.8755423, "lon": -73.9591000 }, + { "lat": 40.8755282, "lon": -73.9591298 }, + { "lat": 40.8754969, "lon": -73.9591633 }, + { "lat": 40.8754818, "lon": -73.9591892 }, + { "lat": 40.8754764, "lon": -73.9592234 }, + { "lat": 40.8754793, "lon": -73.9592577 }, + { "lat": 40.8754764, "lon": -73.9592964 }, + { "lat": 40.8754535, "lon": -73.9593274 }, + { "lat": 40.8754204, "lon": -73.9593625 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1013331687, + "bounds": { + "minlat": 40.8734623, + "minlon": -73.9585823, + "maxlat": 40.8735625, + "maxlon": -73.9585237 + }, + "nodes": [ + 9348848232, + 9348848233, + 9348848234 + ], + "geometry": [ + { "lat": 40.8735625, "lon": -73.9585237 }, + { "lat": 40.8735042, "lon": -73.9585679 }, + { "lat": 40.8734623, "lon": -73.9585823 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1013331688, + "bounds": { + "minlat": 40.8736761, + "minlon": -73.9582798, + "maxlat": 40.8737468, + "maxlon": -73.9581261 + }, + "nodes": [ + 9348848235, + 9348848236 + ], + "geometry": [ + { "lat": 40.8737468, "lon": -73.9582798 }, + { "lat": 40.8736761, "lon": -73.9581261 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1013655882, + "bounds": { + "minlat": 40.8214914, + "minlon": -73.9485390, + "maxlat": 40.8283084, + "maxlon": -73.9431310 + }, + "nodes": [ + 42427735, + 10743755758, + 10743755833, + 42447399, + 10743755832, + 10743755847, + 42438291, + 10743755848, + 42443658, + 10743755854, + 42444854, + 10743755853, + 9903106013, + 42434259, + 9903106011, + 11200341591, + 42448655, + 11200341594, + 11218080006, + 42448661, + 11218080009, + 11218864384, + 42439210, + 11218864383, + 11218864399, + 42434338, + 11218864398, + 9150598866, + 42443582, + 9150598867, + 11218890517, + 2504882513, + 11221649582, + 42448674 + ], + "geometry": [ + { "lat": 40.8214914, "lon": -73.9485390 }, + { "lat": 40.8215397, "lon": -73.9484928 }, + { "lat": 40.8220587, "lon": -73.9481145 }, + { "lat": 40.8221058, "lon": -73.9480802 }, + { "lat": 40.8221730, "lon": -73.9480332 }, + { "lat": 40.8226854, "lon": -73.9476751 }, + { "lat": 40.8227363, "lon": -73.9476376 }, + { "lat": 40.8228018, "lon": -73.9475904 }, + { "lat": 40.8233637, "lon": -73.9471685 }, + { "lat": 40.8239328, "lon": -73.9467610 }, + { "lat": 40.8239826, "lon": -73.9467254 }, + { "lat": 40.8240459, "lon": -73.9466784 }, + { "lat": 40.8245698, "lon": -73.9462897 }, + { "lat": 40.8246596, "lon": -73.9462230 }, + { "lat": 40.8247527, "lon": -73.9461543 }, + { "lat": 40.8252740, "lon": -73.9457696 }, + { "lat": 40.8253247, "lon": -73.9457322 }, + { "lat": 40.8253816, "lon": -73.9456851 }, + { "lat": 40.8258952, "lon": -73.9453146 }, + { "lat": 40.8259476, "lon": -73.9452763 }, + { "lat": 40.8260047, "lon": -73.9452345 }, + { "lat": 40.8265199, "lon": -73.9448570 }, + { "lat": 40.8265704, "lon": -73.9448200 }, + { "lat": 40.8266236, "lon": -73.9447812 }, + { "lat": 40.8271379, "lon": -73.9444058 }, + { "lat": 40.8271966, "lon": -73.9443629 }, + { "lat": 40.8272558, "lon": -73.9443203 }, + { "lat": 40.8277652, "lon": -73.9439534 }, + { "lat": 40.8278201, "lon": -73.9439099 }, + { "lat": 40.8278533, "lon": -73.9438787 }, + { "lat": 40.8278722, "lon": -73.9438539 }, + { "lat": 40.8278820, "lon": -73.9438410 }, + { "lat": 40.8282622, "lon": -73.9432079 }, + { "lat": 40.8283084, "lon": -73.9431310 } + ], + "tags": { + "highway": "tertiary", + "name": "Convent Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1013655883, + "bounds": { + "minlat": 40.8179231, + "minlon": -73.9507717, + "maxlat": 40.8183502, + "maxlon": -73.9497399 + }, + "nodes": [ + 3898480791, + 8151881643, + 8835729561, + 42427649 + ], + "geometry": [ + { "lat": 40.8183502, "lon": -73.9507717 }, + { "lat": 40.8179755, "lon": -73.9498665 }, + { "lat": 40.8179535, "lon": -73.9498134 }, + { "lat": 40.8179231, "lon": -73.9497399 } + ], + "tags": { + "highway": "tertiary", + "name": "West 135th Street" + } +}, +{ + "type": "way", + "id": 1013721697, + "bounds": { + "minlat": 40.7875225, + "minlon": -74.0006770, + "maxlat": 40.7876969, + "maxlon": -74.0002974 + }, + "nodes": [ + 103866875, + 103866873 + ], + "geometry": [ + { "lat": 40.7876969, "lon": -74.0006770 }, + { "lat": 40.7875225, "lon": -74.0002974 } + ], + "tags": { + "highway": "residential", + "name": "Half Moon Court", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Half Moon", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 1013793342, + "bounds": { + "minlat": 40.7011251, + "minlon": -73.9614463, + "maxlat": 40.7016683, + "maxlon": -73.9608545 + }, + "nodes": [ + 42464239, + 9998897941, + 9772858925, + 42504249 + ], + "geometry": [ + { "lat": 40.7016683, "lon": -73.9614463 }, + { "lat": 40.7015773, "lon": -73.9613692 }, + { "lat": 40.7011883, "lon": -73.9609247 }, + { "lat": 40.7011251, "lon": -73.9608545 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave", + "turn:lanes": "left|left;through" + } +}, +{ + "type": "way", + "id": 1014255988, + "bounds": { + "minlat": 40.7233530, + "minlon": -73.9900790, + "maxlat": 40.7234280, + "maxlon": -73.9898400 + }, + "nodes": [ + 9181587095, + 8821475422 + ], + "geometry": [ + { "lat": 40.7233530, "lon": -73.9898400 }, + { "lat": 40.7234280, "lon": -73.9900790 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1014261791, + "bounds": { + "minlat": 40.8175183, + "minlon": -73.9255955, + "maxlat": 40.8180211, + "maxlon": -73.9251816 + }, + "nodes": [ + 6853667900, + 9903127456, + 42778545 + ], + "geometry": [ + { "lat": 40.8175183, "lon": -73.9255955 }, + { "lat": 40.8179133, "lon": -73.9252693 }, + { "lat": 40.8180211, "lon": -73.9251816 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "lit": "yes", + "name": "Park Avenue", + "oneway": "yes", + "oneway:emergency": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1014336157, + "bounds": { + "minlat": 40.8408932, + "minlon": -73.9447121, + "maxlat": 40.8410394, + "maxlon": -73.9444186 + }, + "nodes": [ + 595352889, + 42437324 + ], + "geometry": [ + { "lat": 40.8408932, "lon": -73.9444186 }, + { "lat": 40.8410394, "lon": -73.9447121 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "West 165th Street", + "name_1": "West 165 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "165th", + "tiger:name_base_1": "165", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1014336158, + "bounds": { + "minlat": 40.8406863, + "minlon": -73.9447550, + "maxlat": 40.8408932, + "maxlon": -73.9444186 + }, + "nodes": [ + 587933855, + 2499827799, + 2499827800, + 595352889 + ], + "geometry": [ + { "lat": 40.8406863, "lon": -73.9447550 }, + { "lat": 40.8408423, "lon": -73.9446132 }, + { "lat": 40.8408847, "lon": -73.9445514 }, + { "lat": 40.8408932, "lon": -73.9444186 } + ], + "tags": { + "highway": "residential", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1014414688, + "bounds": { + "minlat": 40.7310034, + "minlon": -74.0058626, + "maxlat": 40.7331509, + "maxlon": -74.0046246 + }, + "nodes": [ + 42431528, + 8214320099, + 8429014582, + 42431273, + 8429014583, + 8429014586, + 42431531, + 8429014587, + 8429031338, + 42431536, + 8429031339, + 8429031341, + 339044224 + ], + "geometry": [ + { "lat": 40.7310034, "lon": -74.0046246 }, + { "lat": 40.7310409, "lon": -74.0046463 }, + { "lat": 40.7315135, "lon": -74.0049198 }, + { "lat": 40.7315444, "lon": -74.0049377 }, + { "lat": 40.7315864, "lon": -74.0049620 }, + { "lat": 40.7318008, "lon": -74.0050861 }, + { "lat": 40.7318361, "lon": -74.0051065 }, + { "lat": 40.7318733, "lon": -74.0051276 }, + { "lat": 40.7324064, "lon": -74.0054366 }, + { "lat": 40.7324485, "lon": -74.0054610 }, + { "lat": 40.7324968, "lon": -74.0054890 }, + { "lat": 40.7331021, "lon": -74.0058393 }, + { "lat": 40.7331509, "lon": -74.0058626 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Bedford Street", + "name:etymology:wikidata": "Q64402624", + "name:ko": "배드포드 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1014630788, + "bounds": { + "minlat": 40.8524310, + "minlon": -73.9740496, + "maxlat": 40.8532074, + "maxlon": -73.9728346 + }, + "nodes": [ + 5449450826, + 5362323121, + 103276283, + 7442921526, + 5449463782, + 5449463793, + 12818594364 + ], + "geometry": [ + { "lat": 40.8524310, "lon": -73.9728346 }, + { "lat": 40.8526672, "lon": -73.9731923 }, + { "lat": 40.8528364, "lon": -73.9734512 }, + { "lat": 40.8528759, "lon": -73.9735132 }, + { "lat": 40.8530251, "lon": -73.9737473 }, + { "lat": 40.8530702, "lon": -73.9738204 }, + { "lat": 40.8532074, "lon": -73.9740496 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1014630789, + "bounds": { + "minlat": 40.8523384, + "minlon": -73.9728346, + "maxlat": 40.8524310, + "maxlon": -73.9726942 + }, + "nodes": [ + 5362322546, + 5449450826 + ], + "geometry": [ + { "lat": 40.8523384, "lon": -73.9726942 }, + { "lat": 40.8524310, "lon": -73.9728346 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1015379882, + "bounds": { + "minlat": 40.7087788, + "minlon": -74.0132433, + "maxlat": 40.7091384, + "maxlon": -74.0130890 + }, + "nodes": [ + 42436187, + 11415663288, + 42436184 + ], + "geometry": [ + { "lat": 40.7091384, "lon": -74.0130890 }, + { "lat": 40.7090969, "lon": -74.0131068 }, + { "lat": 40.7087788, "lon": -74.0132433 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1015379883, + "bounds": { + "minlat": 40.7096771, + "minlon": -74.0147978, + "maxlat": 40.7098267, + "maxlon": -74.0147403 + }, + "nodes": [ + 42437396, + 4143835082, + 12413032498 + ], + "geometry": [ + { "lat": 40.7096771, "lon": -74.0147978 }, + { "lat": 40.7097261, "lon": -74.0147777 }, + { "lat": 40.7098267, "lon": -74.0147403 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "through|through|through|through;right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1015670163, + "bounds": { + "minlat": 40.7126648, + "minlon": -74.0071139, + "maxlat": 40.7129231, + "maxlon": -74.0065826 + }, + "nodes": [ + 9337872352, + 9368824113, + 6150573757, + 2821289715 + ], + "geometry": [ + { "lat": 40.7126648, "lon": -74.0065826 }, + { "lat": 40.7126769, "lon": -74.0066073 }, + { "lat": 40.7126834, "lon": -74.0066206 }, + { "lat": 40.7129231, "lon": -74.0071139 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Steve Flanders Square", + "service": "parking_aisle", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1015679930, + "bounds": { + "minlat": 40.7147890, + "minlon": -74.0161825, + "maxlat": 40.7151170, + "maxlon": -74.0159482 + }, + "nodes": [ + 42446849, + 11432613016, + 5836025488, + 11429768225, + 42446854 + ], + "geometry": [ + { "lat": 40.7151170, "lon": -74.0159482 }, + { "lat": 40.7149906, "lon": -74.0160439 }, + { "lat": 40.7148989, "lon": -74.0161101 }, + { "lat": 40.7148434, "lon": -74.0161472 }, + { "lat": 40.7147890, "lon": -74.0161825 } + ], + "tags": { + "highway": "residential", + "lanes": "4", + "maxspeed": "20 mph", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1015679931, + "bounds": { + "minlat": 40.7154302, + "minlon": -74.0166772, + "maxlat": 40.7155474, + "maxlon": -74.0166445 + }, + "nodes": [ + 42445286, + 8282447527, + 11432612974, + 11432612975, + 1702442150, + 1702442163 + ], + "geometry": [ + { "lat": 40.7155474, "lon": -74.0166469 }, + { "lat": 40.7154921, "lon": -74.0166737 }, + { "lat": 40.7154747, "lon": -74.0166772 }, + { "lat": 40.7154568, "lon": -74.0166724 }, + { "lat": 40.7154421, "lon": -74.0166604 }, + { "lat": 40.7154302, "lon": -74.0166445 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Vesey Place", + "name:etymology:wikidata": "Q8019717", + "name:ko": "비지 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1015701544, + "bounds": { + "minlat": 40.6999324, + "minlon": -73.9895901, + "maxlat": 40.7000502, + "maxlon": -73.9892921 + }, + "nodes": [ + 10042577615, + 9368823960, + 9368823961, + 9368823962, + 9368823963, + 9368823964 + ], + "geometry": [ + { "lat": 40.7000502, "lon": -73.9895901 }, + { "lat": 40.7000468, "lon": -73.9894604 }, + { "lat": 40.7000396, "lon": -73.9893918 }, + { "lat": 40.7000176, "lon": -73.9893350 }, + { "lat": 40.6999889, "lon": -73.9893047 }, + { "lat": 40.6999324, "lon": -73.9892921 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1015939516, + "bounds": { + "minlat": 40.7269580, + "minlon": -74.0055450, + "maxlat": 40.7271570, + "maxlon": -74.0034450 + }, + "nodes": [ + 42430164, + 8231934393, + 8764758195, + 8307641872, + 42439345 + ], + "geometry": [ + { "lat": 40.7269580, "lon": -74.0034450 }, + { "lat": 40.7269709, "lon": -74.0035810 }, + { "lat": 40.7271389, "lon": -74.0053536 }, + { "lat": 40.7271442, "lon": -74.0054104 }, + { "lat": 40.7271570, "lon": -74.0055450 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Charlton Street", + "name:ko": "찰튼 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1015939517, + "bounds": { + "minlat": 40.7271570, + "minlon": -74.0088420, + "maxlat": 40.7274691, + "maxlon": -74.0055450 + }, + "nodes": [ + 42439345, + 8307641875, + 8307641924, + 42436364, + 8307641923, + 8304878669, + 8307641928, + 42436097 + ], + "geometry": [ + { "lat": 40.7271570, "lon": -74.0055450 }, + { "lat": 40.7271715, "lon": -74.0056942 }, + { "lat": 40.7273174, "lon": -74.0071931 }, + { "lat": 40.7273286, "lon": -74.0073112 }, + { "lat": 40.7273404, "lon": -74.0074347 }, + { "lat": 40.7274545, "lon": -74.0086738 }, + { "lat": 40.7274600, "lon": -74.0087368 }, + { "lat": 40.7274691, "lon": -74.0088420 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Charlton Street", + "name:ko": "찰튼 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1016079672, + "bounds": { + "minlat": 40.7966871, + "minlon": -73.9348246, + "maxlat": 40.7968018, + "maxlon": -73.9345713 + }, + "nodes": [ + 9372214665, + 9431041187, + 9372214669, + 9372214666 + ], + "geometry": [ + { "lat": 40.7968018, "lon": -73.9348246 }, + { "lat": 40.7967460, "lon": -73.9347020 }, + { "lat": 40.7967406, "lon": -73.9346894 }, + { "lat": 40.7966871, "lon": -73.9345713 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016079673, + "bounds": { + "minlat": 40.7968266, + "minlon": -73.9347567, + "maxlat": 40.7968968, + "maxlon": -73.9345846 + }, + "nodes": [ + 9372214678, + 9431041185, + 9431041186, + 9372214668 + ], + "geometry": [ + { "lat": 40.7968266, "lon": -73.9345846 }, + { "lat": 40.7968397, "lon": -73.9346167 }, + { "lat": 40.7968450, "lon": -73.9346293 }, + { "lat": 40.7968968, "lon": -73.9347567 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016079674, + "bounds": { + "minlat": 40.7967406, + "minlon": -73.9346894, + "maxlat": 40.7969373, + "maxlon": -73.9345451 + }, + "nodes": [ + 9372214669, + 9372214673, + 9431041185, + 9372214672, + 9372214670 + ], + "geometry": [ + { "lat": 40.7967406, "lon": -73.9346894 }, + { "lat": 40.7967808, "lon": -73.9346599 }, + { "lat": 40.7968397, "lon": -73.9346167 }, + { "lat": 40.7968867, "lon": -73.9345822 }, + { "lat": 40.7969373, "lon": -73.9345451 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016079675, + "bounds": { + "minlat": 40.7968430, + "minlon": -73.9345489, + "maxlat": 40.7968734, + "maxlon": -73.9344809 + }, + "nodes": [ + 9372214679, + 9372214680 + ], + "geometry": [ + { "lat": 40.7968430, "lon": -73.9344809 }, + { "lat": 40.7968734, "lon": -73.9345489 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016079676, + "bounds": { + "minlat": 40.7967356, + "minlon": -73.9346301, + "maxlat": 40.7967669, + "maxlon": -73.9345627 + }, + "nodes": [ + 9372214675, + 9372214676 + ], + "geometry": [ + { "lat": 40.7967669, "lon": -73.9346301 }, + { "lat": 40.7967356, "lon": -73.9345627 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016079677, + "bounds": { + "minlat": 40.7967669, + "minlon": -73.9346599, + "maxlat": 40.7967808, + "maxlon": -73.9346301 + }, + "nodes": [ + 9372214673, + 9372214675 + ], + "geometry": [ + { "lat": 40.7967808, "lon": -73.9346599 }, + { "lat": 40.7967669, "lon": -73.9346301 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016079678, + "bounds": { + "minlat": 40.7967256, + "minlon": -73.9345627, + "maxlat": 40.7967356, + "maxlon": -73.9345432 + }, + "nodes": [ + 9372214676, + 9372214674 + ], + "geometry": [ + { "lat": 40.7967356, "lon": -73.9345627 }, + { "lat": 40.7967256, "lon": -73.9345432 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016079679, + "bounds": { + "minlat": 40.7967897, + "minlon": -73.9345149, + "maxlat": 40.7967985, + "maxlon": -73.9344963 + }, + "nodes": [ + 9372214667, + 9372214677 + ], + "geometry": [ + { "lat": 40.7967897, "lon": -73.9344963 }, + { "lat": 40.7967985, "lon": -73.9345149 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016079680, + "bounds": { + "minlat": 40.7967985, + "minlon": -73.9345846, + "maxlat": 40.7968266, + "maxlon": -73.9345149 + }, + "nodes": [ + 9372214677, + 9372214678 + ], + "geometry": [ + { "lat": 40.7967985, "lon": -73.9345149 }, + { "lat": 40.7968266, "lon": -73.9345846 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016079681, + "bounds": { + "minlat": 40.7968357, + "minlon": -73.9344809, + "maxlat": 40.7968430, + "maxlon": -73.9344626 + }, + "nodes": [ + 9372214671, + 9372214679 + ], + "geometry": [ + { "lat": 40.7968357, "lon": -73.9344626 }, + { "lat": 40.7968430, "lon": -73.9344809 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016079682, + "bounds": { + "minlat": 40.7968734, + "minlon": -73.9345822, + "maxlat": 40.7968867, + "maxlon": -73.9345489 + }, + "nodes": [ + 9372214680, + 9372214672 + ], + "geometry": [ + { "lat": 40.7968734, "lon": -73.9345489 }, + { "lat": 40.7968867, "lon": -73.9345822 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016208790, + "bounds": { + "minlat": 40.7528832, + "minlon": -73.9214780, + "maxlat": 40.7529175, + "maxlon": -73.9212653 + }, + "nodes": [ + 6833058492, + 9373239974, + 9373239975 + ], + "geometry": [ + { "lat": 40.7528877, "lon": -73.9212653 }, + { "lat": 40.7528832, "lon": -73.9213793 }, + { "lat": 40.7529175, "lon": -73.9214780 } + ], + "tags": { + "highway": "service", + "lit": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1016208791, + "bounds": { + "minlat": 40.7525372, + "minlon": -73.9218655, + "maxlat": 40.7527905, + "maxlon": -73.9215156 + }, + "nodes": [ + 9373239977, + 9373239978, + 9373239979, + 9373239980, + 6833058490 + ], + "geometry": [ + { "lat": 40.7527831, "lon": -73.9215156 }, + { "lat": 40.7527905, "lon": -73.9216314 }, + { "lat": 40.7527457, "lon": -73.9218224 }, + { "lat": 40.7525700, "lon": -73.9218655 }, + { "lat": 40.7525372, "lon": -73.9215845 } + ], + "tags": { + "highway": "service", + "lit": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1016425694, + "bounds": { + "minlat": 40.7804511, + "minlon": -73.9862482, + "maxlat": 40.7805446, + "maxlon": -73.9860353 + }, + "nodes": [ + 9374838670, + 4205820212 + ], + "geometry": [ + { "lat": 40.7804511, "lon": -73.9860353 }, + { "lat": 40.7805446, "lon": -73.9862482 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "name_1": "West 72 Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "through|right", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1016486743, + "bounds": { + "minlat": 40.7961717, + "minlon": -74.0108616, + "maxlat": 40.7997300, + "maxlon": -74.0081390 + }, + "nodes": [ + 103866658, + 7678477559, + 7678477555, + 103866656, + 7678477552, + 7678477542, + 103866654, + 7678477540, + 7678477604, + 103866652, + 7653964063, + 7207762889, + 7653964062, + 103866651, + 7653988909, + 7653988908, + 103866650, + 7653988906, + 440243582, + 440243583, + 7653988889, + 103866645 + ], + "geometry": [ + { "lat": 40.7997300, "lon": -74.0081390 }, + { "lat": 40.7996655, "lon": -74.0081876 }, + { "lat": 40.7991642, "lon": -74.0085646 }, + { "lat": 40.7991200, "lon": -74.0085980 }, + { "lat": 40.7990768, "lon": -74.0086304 }, + { "lat": 40.7985805, "lon": -74.0090030 }, + { "lat": 40.7985268, "lon": -74.0090433 }, + { "lat": 40.7984941, "lon": -74.0090688 }, + { "lat": 40.7979650, "lon": -74.0094819 }, + { "lat": 40.7979111, "lon": -74.0095240 }, + { "lat": 40.7978713, "lon": -74.0095536 }, + { "lat": 40.7975380, "lon": -74.0098020 }, + { "lat": 40.7973994, "lon": -74.0099078 }, + { "lat": 40.7973621, "lon": -74.0099362 }, + { "lat": 40.7973045, "lon": -74.0099806 }, + { "lat": 40.7967930, "lon": -74.0103752 }, + { "lat": 40.7967404, "lon": -74.0104157 }, + { "lat": 40.7967019, "lon": -74.0104450 }, + { "lat": 40.7964444, "lon": -74.0106407 }, + { "lat": 40.7963445, "lon": -74.0107250 }, + { "lat": 40.7962334, "lon": -74.0108160 }, + { "lat": 40.7961717, "lon": -74.0108616 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680; Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721; Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093; 07087", + "tiger:zip_right": "07047:07087:07093; 07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 1016495852, + "bounds": { + "minlat": 40.7598300, + "minlon": -73.9624299, + "maxlat": 40.7600486, + "maxlon": -73.9622666 + }, + "nodes": [ + 9375594174, + 10836230409, + 9375594175, + 9375594176 + ], + "geometry": [ + { "lat": 40.7600486, "lon": -73.9622666 }, + { "lat": 40.7599116, "lon": -73.9623687 }, + { "lat": 40.7598932, "lon": -73.9623824 }, + { "lat": 40.7598300, "lon": -73.9624299 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016561844, + "bounds": { + "minlat": 40.7701449, + "minlon": -73.9189912, + "maxlat": 40.7701785, + "maxlon": -73.9188592 + }, + "nodes": [ + 9376232978, + 9376232979 + ], + "geometry": [ + { "lat": 40.7701785, "lon": -73.9189912 }, + { "lat": 40.7701449, "lon": -73.9188592 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016561845, + "bounds": { + "minlat": 40.7700998, + "minlon": -73.9190123, + "maxlat": 40.7701352, + "maxlon": -73.9188780 + }, + "nodes": [ + 9376232967, + 9376232968 + ], + "geometry": [ + { "lat": 40.7701352, "lon": -73.9190123 }, + { "lat": 40.7700998, "lon": -73.9188780 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016561846, + "bounds": { + "minlat": 40.7700530, + "minlon": -73.9190339, + "maxlat": 40.7700875, + "maxlon": -73.9188995 + }, + "nodes": [ + 9376232970, + 9376232980 + ], + "geometry": [ + { "lat": 40.7700875, "lon": -73.9190339 }, + { "lat": 40.7700530, "lon": -73.9188995 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016561847, + "bounds": { + "minlat": 40.7699943, + "minlon": -73.9189154, + "maxlat": 40.7702295, + "maxlon": -73.9186876 + }, + "nodes": [ + 9376232972, + 9376232975, + 9376232966, + 9376232973, + 9376232974 + ], + "geometry": [ + { "lat": 40.7699943, "lon": -73.9189154 }, + { "lat": 40.7700242, "lon": -73.9188497 }, + { "lat": 40.7700778, "lon": -73.9188029 }, + { "lat": 40.7701557, "lon": -73.9187326 }, + { "lat": 40.7702295, "lon": -73.9186876 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016561848, + "bounds": { + "minlat": 40.7700884, + "minlon": -73.9188780, + "maxlat": 40.7700998, + "maxlon": -73.9188373 + }, + "nodes": [ + 9376232968, + 9376232976 + ], + "geometry": [ + { "lat": 40.7700998, "lon": -73.9188780 }, + { "lat": 40.7700884, "lon": -73.9188373 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016561849, + "bounds": { + "minlat": 40.7701352, + "minlon": -73.9190482, + "maxlat": 40.7701446, + "maxlon": -73.9190123 + }, + "nodes": [ + 9376232963, + 9376232967 + ], + "geometry": [ + { "lat": 40.7701446, "lon": -73.9190482 }, + { "lat": 40.7701352, "lon": -73.9190123 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016561850, + "bounds": { + "minlat": 40.7701446, + "minlon": -73.9191255, + "maxlat": 40.7701992, + "maxlon": -73.9189912 + }, + "nodes": [ + 9376232962, + 9376232977, + 9376232963, + 9376232964, + 9376232978 + ], + "geometry": [ + { "lat": 40.7701992, "lon": -73.9191255 }, + { "lat": 40.7701553, "lon": -73.9190666 }, + { "lat": 40.7701446, "lon": -73.9190482 }, + { "lat": 40.7701824, "lon": -73.9190065 }, + { "lat": 40.7701785, "lon": -73.9189912 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016561851, + "bounds": { + "minlat": 40.7700778, + "minlon": -73.9188592, + "maxlat": 40.7701449, + "maxlon": -73.9188029 + }, + "nodes": [ + 9376232979, + 9376232965, + 9376232976, + 9376232966 + ], + "geometry": [ + { "lat": 40.7701449, "lon": -73.9188592 }, + { "lat": 40.7701404, "lon": -73.9188433 }, + { "lat": 40.7700884, "lon": -73.9188373 }, + { "lat": 40.7700778, "lon": -73.9188029 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016561852, + "bounds": { + "minlat": 40.7700489, + "minlon": -73.9188995, + "maxlat": 40.7700884, + "maxlon": -73.9188373 + }, + "nodes": [ + 9376232980, + 9376232971, + 9376232976 + ], + "geometry": [ + { "lat": 40.7700530, "lon": -73.9188995 }, + { "lat": 40.7700489, "lon": -73.9188835 }, + { "lat": 40.7700884, "lon": -73.9188373 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016561853, + "bounds": { + "minlat": 40.7700875, + "minlon": -73.9190484, + "maxlat": 40.7701446, + "maxlon": -73.9190339 + }, + "nodes": [ + 9376232963, + 9376232969, + 9376232970 + ], + "geometry": [ + { "lat": 40.7701446, "lon": -73.9190482 }, + { "lat": 40.7700922, "lon": -73.9190484 }, + { "lat": 40.7700875, "lon": -73.9190339 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1016693504, + "bounds": { + "minlat": 40.7128404, + "minlon": -74.0037505, + "maxlat": 40.7130151, + "maxlon": -74.0033635 + }, + "nodes": [ + 9377535320, + 9390090944 + ], + "geometry": [ + { "lat": 40.7128404, "lon": -74.0033635 }, + { "lat": 40.7130151, "lon": -74.0037505 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "sett", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1016693506, + "bounds": { + "minlat": 40.7130151, + "minlon": -74.0039282, + "maxlat": 40.7131019, + "maxlon": -74.0037505 + }, + "nodes": [ + 9390090944, + 9390091293, + 9390091290, + 9377535330 + ], + "geometry": [ + { "lat": 40.7130151, "lon": -74.0037505 }, + { "lat": 40.7130904, "lon": -74.0039025 }, + { "lat": 40.7130957, "lon": -74.0039145 }, + { "lat": 40.7131019, "lon": -74.0039282 } + ], + "tags": { + "access": "private", + "highway": "service", + "layer": "-1", + "service": "driveway", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1016693507, + "bounds": { + "minlat": 40.7131019, + "minlon": -74.0039898, + "maxlat": 40.7131200, + "maxlon": -74.0039282 + }, + "nodes": [ + 9377535330, + 9377535328, + 9121386334 + ], + "geometry": [ + { "lat": 40.7131019, "lon": -74.0039282 }, + { "lat": 40.7131115, "lon": -74.0039610 }, + { "lat": 40.7131200, "lon": -74.0039898 } + ], + "tags": { + "access": "private", + "highway": "service", + "layer": "-1", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1016693509, + "bounds": { + "minlat": 40.7130326, + "minlon": -74.0038702, + "maxlat": 40.7133259, + "maxlon": -74.0035801 + }, + "nodes": [ + 9377535331, + 9377535332, + 9377535338, + 9377535322, + 1241256442, + 9377509610, + 9377535339, + 9377535331 + ], + "geometry": [ + { "lat": 40.7130986, "lon": -74.0038702 }, + { "lat": 40.7130326, "lon": -74.0037365 }, + { "lat": 40.7130683, "lon": -74.0037009 }, + { "lat": 40.7131951, "lon": -74.0035801 }, + { "lat": 40.7132873, "lon": -74.0035841 }, + { "lat": 40.7133259, "lon": -74.0036553 }, + { "lat": 40.7131329, "lon": -74.0038378 }, + { "lat": 40.7130986, "lon": -74.0038702 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1016693510, + "bounds": { + "minlat": 40.7128135, + "minlon": -74.0041020, + "maxlat": 40.7130634, + "maxlon": -74.0037677 + }, + "nodes": [ + 9377535333, + 9377535334, + 9377535336, + 2242203980, + 1241256529, + 9377509609, + 9377535340, + 9377535333 + ], + "geometry": [ + { "lat": 40.7130634, "lon": -74.0039034 }, + { "lat": 40.7129963, "lon": -74.0037677 }, + { "lat": 40.7129605, "lon": -74.0038008 }, + { "lat": 40.7128441, "lon": -74.0039129 }, + { "lat": 40.7128135, "lon": -74.0040288 }, + { "lat": 40.7128534, "lon": -74.0041020 }, + { "lat": 40.7130218, "lon": -74.0039429 }, + { "lat": 40.7130634, "lon": -74.0039034 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1016721724, + "bounds": { + "minlat": 40.7172520, + "minlon": -73.9658264, + "maxlat": 40.7172921, + "maxlon": -73.9657340 + }, + "nodes": [ + 42488999, + 10045033591, + 9377680319 + ], + "geometry": [ + { "lat": 40.7172520, "lon": -73.9657340 }, + { "lat": 40.7172850, "lon": -73.9658100 }, + { "lat": 40.7172921, "lon": -73.9658264 } + ], + "tags": { + "highway": "residential", + "name": "North 1st Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "1st", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1016727643, + "bounds": { + "minlat": 40.7132942, + "minlon": -73.9682452, + "maxlat": 40.7135042, + "maxlon": -73.9673932 + }, + "nodes": [ + 42469464, + 11249142509, + 11249142502, + 11249142503, + 5980485761 + ], + "geometry": [ + { "lat": 40.7132942, "lon": -73.9673932 }, + { "lat": 40.7133129, "lon": -73.9674708 }, + { "lat": 40.7133164, "lon": -73.9674856 }, + { "lat": 40.7134957, "lon": -73.9682096 }, + { "lat": 40.7135042, "lon": -73.9682452 } + ], + "tags": { + "highway": "residential", + "name": "South 4th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1016808887, + "bounds": { + "minlat": 40.8133573, + "minlon": -73.9450192, + "maxlat": 40.8135069, + "maxlon": -73.9449091 + }, + "nodes": [ + 2141026534, + 10171603035, + 4205440397 + ], + "geometry": [ + { "lat": 40.8133573, "lon": -73.9450192 }, + { "lat": 40.8134215, "lon": -73.9449724 }, + { "lat": 40.8135069, "lon": -73.9449091 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1016884495, + "bounds": { + "minlat": 40.7831251, + "minlon": -73.9451034, + "maxlat": 40.7832186, + "maxlon": -73.9450638 + }, + "nodes": [ + 9379330620, + 9379330621, + 9379330622 + ], + "geometry": [ + { "lat": 40.7832186, "lon": -73.9451034 }, + { "lat": 40.7831525, "lon": -73.9450638 }, + { "lat": 40.7831251, "lon": -73.9450828 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1016884496, + "bounds": { + "minlat": 40.7829922, + "minlon": -73.9451726, + "maxlat": 40.7831251, + "maxlon": -73.9450828 + }, + "nodes": [ + 9379330622, + 9379330623 + ], + "geometry": [ + { "lat": 40.7831251, "lon": -73.9450828 }, + { "lat": 40.7829922, "lon": -73.9451726 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "maxheight": "12'6\"", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1016884497, + "bounds": { + "minlat": 40.7831806, + "minlon": -73.9452155, + "maxlat": 40.7832186, + "maxlon": -73.9451034 + }, + "nodes": [ + 9379330620, + 9379330625, + 9379330626 + ], + "geometry": [ + { "lat": 40.7832186, "lon": -73.9451034 }, + { "lat": 40.7832028, "lon": -73.9451994 }, + { "lat": 40.7831806, "lon": -73.9452155 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1016884498, + "bounds": { + "minlat": 40.7830486, + "minlon": -73.9453077, + "maxlat": 40.7831806, + "maxlon": -73.9452155 + }, + "nodes": [ + 9379330626, + 9379330627 + ], + "geometry": [ + { "lat": 40.7831806, "lon": -73.9452155 }, + { "lat": 40.7830486, "lon": -73.9453077 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "maxheight": "12'6\"", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1016884499, + "bounds": { + "minlat": 40.7829964, + "minlon": -73.9453157, + "maxlat": 40.7830486, + "maxlon": -73.9452605 + }, + "nodes": [ + 9379330627, + 9379330628, + 5482216784 + ], + "geometry": [ + { "lat": 40.7830486, "lon": -73.9453077 }, + { "lat": 40.7830341, "lon": -73.9453157 }, + { "lat": 40.7829964, "lon": -73.9452605 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1016884500, + "bounds": { + "minlat": 40.7829813, + "minlon": -73.9452605, + "maxlat": 40.7829964, + "maxlon": -73.9451726 + }, + "nodes": [ + 9379330623, + 9379330624, + 5482216784 + ], + "geometry": [ + { "lat": 40.7829922, "lon": -73.9451726 }, + { "lat": 40.7829813, "lon": -73.9451811 }, + { "lat": 40.7829964, "lon": -73.9452605 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1018049315, + "bounds": { + "minlat": 40.7120958, + "minlon": -74.0031747, + "maxlat": 40.7123207, + "maxlon": -74.0029474 + }, + "nodes": [ + 7477074115, + 588751662, + 9369021512, + 9369021511, + 7948537298, + 11394594200, + 11394594187, + 7477074114 + ], + "geometry": [ + { "lat": 40.7120958, "lon": -74.0031747 }, + { "lat": 40.7122050, "lon": -74.0029976 }, + { "lat": 40.7122331, "lon": -74.0029594 }, + { "lat": 40.7122548, "lon": -74.0029474 }, + { "lat": 40.7122698, "lon": -74.0029529 }, + { "lat": 40.7122875, "lon": -74.0029661 }, + { "lat": 40.7122941, "lon": -74.0029710 }, + { "lat": 40.7123207, "lon": -74.0030026 } + ], + "tags": { + "access": "no", + "highway": "service", + "maxspeed": "25 mph", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1018049321, + "bounds": { + "minlat": 40.7135117, + "minlon": -74.0016983, + "maxlat": 40.7136329, + "maxlon": -74.0013495 + }, + "nodes": [ + 9390090733, + 9390090734, + 9390090735, + 9390090736, + 9390090738, + 8307637706, + 9390090737 + ], + "geometry": [ + { "lat": 40.7136329, "lon": -74.0016983 }, + { "lat": 40.7135317, "lon": -74.0015369 }, + { "lat": 40.7135157, "lon": -74.0015011 }, + { "lat": 40.7135117, "lon": -74.0014773 }, + { "lat": 40.7135127, "lon": -74.0014467 }, + { "lat": 40.7135240, "lon": -74.0014037 }, + { "lat": 40.7135543, "lon": -74.0013495 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1018454468, + "bounds": { + "minlat": 40.7453830, + "minlon": -73.9975495, + "maxlat": 40.7465800, + "maxlon": -73.9947090 + }, + "nodes": [ + 42439840, + 11147382158, + 11147382153, + 42435629 + ], + "geometry": [ + { "lat": 40.7453830, "lon": -73.9947090 }, + { "lat": 40.7454437, "lon": -73.9948530 }, + { "lat": 40.7465224, "lon": -73.9974128 }, + { "lat": 40.7465800, "lon": -73.9975495 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 25th Street", + "name:ru": "Западная 25-я стрит", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1018454469, + "bounds": { + "minlat": 40.7449661, + "minlon": -73.9950129, + "maxlat": 40.7453830, + "maxlon": -73.9947090 + }, + "nodes": [ + 42439840, + 11147382156, + 9119739666 + ], + "geometry": [ + { "lat": 40.7453830, "lon": -73.9947090 }, + { "lat": 40.7453308, "lon": -73.9947470 }, + { "lat": 40.7449661, "lon": -73.9950129 } + ], + "tags": { + "alt_name": "7 Avenue", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1018479442, + "bounds": { + "minlat": 40.8242269, + "minlon": -73.9094750, + "maxlat": 40.8243317, + "maxlon": -73.9091596 + }, + "nodes": [ + 7557648830, + 9917683085 + ], + "geometry": [ + { "lat": 40.8243317, "lon": -73.9094750 }, + { "lat": 40.8242269, "lon": -73.9091596 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 163rd Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1018607680, + "bounds": { + "minlat": 40.8334415, + "minlon": -73.9074076, + "maxlat": 40.8335111, + "maxlon": -73.9071861 + }, + "nodes": [ + 1657650816, + 9395115892 + ], + "geometry": [ + { "lat": 40.8334415, "lon": -73.9071861 }, + { "lat": 40.8335111, "lon": -73.9074076 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "East 169th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "169th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1018633065, + "bounds": { + "minlat": 40.7206497, + "minlon": -73.9440866, + "maxlat": 40.7231127, + "maxlon": -73.9436843 + }, + "nodes": [ + 42472683, + 9789356776, + 8610941950, + 9789356777, + 42466395, + 9789356859, + 6732842570, + 8672287425 + ], + "geometry": [ + { "lat": 40.7206497, "lon": -73.9436843 }, + { "lat": 40.7207306, "lon": -73.9436951 }, + { "lat": 40.7216752, "lon": -73.9438475 }, + { "lat": 40.7217144, "lon": -73.9438539 }, + { "lat": 40.7217700, "lon": -73.9438630 }, + { "lat": 40.7218437, "lon": -73.9438753 }, + { "lat": 40.7230384, "lon": -73.9440740 }, + { "lat": 40.7231127, "lon": -73.9440866 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Russell Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1020095010, + "bounds": { + "minlat": 40.7193341, + "minlon": -73.9879213, + "maxlat": 40.7193682, + "maxlon": -73.9878052 + }, + "nodes": [ + 9408434729, + 9408434733 + ], + "geometry": [ + { "lat": 40.7193341, "lon": -73.9878052 }, + { "lat": 40.7193682, "lon": -73.9879213 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1020095011, + "bounds": { + "minlat": 40.7192925, + "minlon": -73.9879429, + "maxlat": 40.7193271, + "maxlon": -73.9878266 + }, + "nodes": [ + 9408434732, + 9408434731 + ], + "geometry": [ + { "lat": 40.7193271, "lon": -73.9879429 }, + { "lat": 40.7192925, "lon": -73.9878266 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1020095012, + "bounds": { + "minlat": 40.7193271, + "minlon": -73.9879595, + "maxlat": 40.7193320, + "maxlon": -73.9879429 + }, + "nodes": [ + 9408434730, + 9408434732 + ], + "geometry": [ + { "lat": 40.7193320, "lon": -73.9879595 }, + { "lat": 40.7193271, "lon": -73.9879429 } + ], + "tags": { + "highway": "service", + "maxheight": "6'8\"", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1020095013, + "bounds": { + "minlat": 40.7192016, + "minlon": -73.9885352, + "maxlat": 40.7195189, + "maxlon": -73.9880559 + }, + "nodes": [ + 9408434737, + 9408434734, + 9408434735, + 9408434736, + 9408434738, + 9408434737 + ], + "geometry": [ + { "lat": 40.7194078, "lon": -73.9880559 }, + { "lat": 40.7195189, "lon": -73.9884281 }, + { "lat": 40.7193127, "lon": -73.9885352 }, + { "lat": 40.7192016, "lon": -73.9881629 }, + { "lat": 40.7193668, "lon": -73.9880771 }, + { "lat": 40.7194078, "lon": -73.9880559 } + ], + "tags": { + "highway": "service", + "maxheight": "6'8\"", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1020095014, + "bounds": { + "minlat": 40.7193320, + "minlon": -73.9880771, + "maxlat": 40.7193668, + "maxlon": -73.9879595 + }, + "nodes": [ + 9408434738, + 10308481594, + 9408434730 + ], + "geometry": [ + { "lat": 40.7193668, "lon": -73.9880771 }, + { "lat": 40.7193359, "lon": -73.9879727 }, + { "lat": 40.7193320, "lon": -73.9879595 } + ], + "tags": { + "highway": "service", + "maxheight": "6'8\"", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1020095015, + "bounds": { + "minlat": 40.7193682, + "minlon": -73.9879384, + "maxlat": 40.7193733, + "maxlon": -73.9879213 + }, + "nodes": [ + 9408434733, + 9408434739 + ], + "geometry": [ + { "lat": 40.7193682, "lon": -73.9879213 }, + { "lat": 40.7193733, "lon": -73.9879384 } + ], + "tags": { + "highway": "service", + "maxheight": "6'8\"", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1020095016, + "bounds": { + "minlat": 40.7193733, + "minlon": -73.9880559, + "maxlat": 40.7194078, + "maxlon": -73.9879384 + }, + "nodes": [ + 9408434739, + 10308481593, + 9408434737 + ], + "geometry": [ + { "lat": 40.7193733, "lon": -73.9879384 }, + { "lat": 40.7193772, "lon": -73.9879515 }, + { "lat": 40.7194078, "lon": -73.9880559 } + ], + "tags": { + "highway": "service", + "maxheight": "6'8\"", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1020162350, + "bounds": { + "minlat": 40.7936162, + "minlon": -73.9501454, + "maxlat": 40.7938880, + "maxlon": -73.9495058 + }, + "nodes": [ + 9178805724, + 7076092218, + 6254630500, + 42446138 + ], + "geometry": [ + { "lat": 40.7938880, "lon": -73.9501454 }, + { "lat": 40.7937427, "lon": -73.9498051 }, + { "lat": 40.7936657, "lon": -73.9496177 }, + { "lat": 40.7936162, "lon": -73.9495058 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1020185304, + "bounds": { + "minlat": 40.8496631, + "minlon": -74.0131199, + "maxlat": 40.8500746, + "maxlon": -74.0131152 + }, + "nodes": [ + 5674744910, + 298560092, + 10936388953, + 5674744901 + ], + "geometry": [ + { "lat": 40.8500746, "lon": -74.0131152 }, + { "lat": 40.8499668, "lon": -74.0131168 }, + { "lat": 40.8498569, "lon": -74.0131180 }, + { "lat": 40.8496631, "lon": -74.0131199 } + ], + "tags": { + "Bergen_County_database_ref": "S-39", + "HFCS": "Urban Local", + "NJDOT_SRI": "020000333", + "highway": "secondary", + "name": "Challenger Road", + "ref": "CR S-39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Challenger", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 1020185305, + "bounds": { + "minlat": 40.8497859, + "minlon": -74.0128528, + "maxlat": 40.8500507, + "maxlon": -74.0128040 + }, + "nodes": [ + 5674744911, + 5674744912 + ], + "geometry": [ + { "lat": 40.8500507, "lon": -74.0128040 }, + { "lat": 40.8497859, "lon": -74.0128528 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1020231982, + "bounds": { + "minlat": 40.7558914, + "minlon": -73.9981096, + "maxlat": 40.7560097, + "maxlon": -73.9979691 + }, + "nodes": [ + 9409760260, + 9490502654, + 9409760261, + 9409760262, + 9409760273 + ], + "geometry": [ + { "lat": 40.7560097, "lon": -73.9981096 }, + { "lat": 40.7559505, "lon": -73.9979773 }, + { "lat": 40.7559468, "lon": -73.9979691 }, + { "lat": 40.7558952, "lon": -73.9980047 }, + { "lat": 40.7558914, "lon": -73.9979948 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231983, + "bounds": { + "minlat": 40.7559468, + "minlon": -73.9979691, + "maxlat": 40.7561280, + "maxlon": -73.9978361 + }, + "nodes": [ + 9409760264, + 9409760270, + 9409760268, + 9409760266, + 9409760261 + ], + "geometry": [ + { "lat": 40.7561280, "lon": -73.9978361 }, + { "lat": 40.7560958, "lon": -73.9978597 }, + { "lat": 40.7560544, "lon": -73.9978902 }, + { "lat": 40.7560015, "lon": -73.9979290 }, + { "lat": 40.7559468, "lon": -73.9979691 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231984, + "bounds": { + "minlat": 40.7559010, + "minlon": -73.9979586, + "maxlat": 40.7559422, + "maxlon": -73.9978680 + }, + "nodes": [ + 9409760276, + 9409760275 + ], + "geometry": [ + { "lat": 40.7559422, "lon": -73.9979586 }, + { "lat": 40.7559010, "lon": -73.9978680 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231985, + "bounds": { + "minlat": 40.7559552, + "minlon": -73.9979198, + "maxlat": 40.7559967, + "maxlon": -73.9978295 + }, + "nodes": [ + 9409760278, + 9409760277 + ], + "geometry": [ + { "lat": 40.7559967, "lon": -73.9979198 }, + { "lat": 40.7559552, "lon": -73.9978295 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231986, + "bounds": { + "minlat": 40.7560087, + "minlon": -73.9978816, + "maxlat": 40.7560503, + "maxlon": -73.9977914 + }, + "nodes": [ + 9409760280, + 9409760279 + ], + "geometry": [ + { "lat": 40.7560503, "lon": -73.9978816 }, + { "lat": 40.7560087, "lon": -73.9977914 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231987, + "bounds": { + "minlat": 40.7560518, + "minlon": -73.9978519, + "maxlat": 40.7560921, + "maxlon": -73.9977607 + }, + "nodes": [ + 9409760282, + 9409760281 + ], + "geometry": [ + { "lat": 40.7560921, "lon": -73.9978519 }, + { "lat": 40.7560518, "lon": -73.9977607 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231988, + "bounds": { + "minlat": 40.7560544, + "minlon": -73.9980328, + "maxlat": 40.7561150, + "maxlon": -73.9978902 + }, + "nodes": [ + 9409760272, + 9490502653, + 9409760268 + ], + "geometry": [ + { "lat": 40.7561150, "lon": -73.9980328 }, + { "lat": 40.7560582, "lon": -73.9978992 }, + { "lat": 40.7560544, "lon": -73.9978902 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231989, + "bounds": { + "minlat": 40.7558519, + "minlon": -73.9979948, + "maxlat": 40.7558914, + "maxlon": -73.9979030 + }, + "nodes": [ + 9409760273, + 9409760274 + ], + "geometry": [ + { "lat": 40.7558914, "lon": -73.9979948 }, + { "lat": 40.7558519, "lon": -73.9979030 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231990, + "bounds": { + "minlat": 40.7558407, + "minlon": -73.9979030, + "maxlat": 40.7558519, + "maxlon": -73.9978771 + }, + "nodes": [ + 9409760274, + 9409760263 + ], + "geometry": [ + { "lat": 40.7558519, "lon": -73.9979030 }, + { "lat": 40.7558407, "lon": -73.9978771 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231991, + "bounds": { + "minlat": 40.7558891, + "minlon": -73.9978680, + "maxlat": 40.7559010, + "maxlon": -73.9978422 + }, + "nodes": [ + 9409760275, + 9409760265 + ], + "geometry": [ + { "lat": 40.7559010, "lon": -73.9978680 }, + { "lat": 40.7558891, "lon": -73.9978422 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231992, + "bounds": { + "minlat": 40.7559422, + "minlon": -73.9979691, + "maxlat": 40.7559468, + "maxlon": -73.9979586 + }, + "nodes": [ + 9409760261, + 9409760276 + ], + "geometry": [ + { "lat": 40.7559468, "lon": -73.9979691 }, + { "lat": 40.7559422, "lon": -73.9979586 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231993, + "bounds": { + "minlat": 40.7559427, + "minlon": -73.9978295, + "maxlat": 40.7559552, + "maxlon": -73.9978035 + }, + "nodes": [ + 9409760277, + 9409760267 + ], + "geometry": [ + { "lat": 40.7559552, "lon": -73.9978295 }, + { "lat": 40.7559427, "lon": -73.9978035 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231994, + "bounds": { + "minlat": 40.7559967, + "minlon": -73.9979290, + "maxlat": 40.7560015, + "maxlon": -73.9979198 + }, + "nodes": [ + 9409760266, + 9409760278 + ], + "geometry": [ + { "lat": 40.7560015, "lon": -73.9979290 }, + { "lat": 40.7559967, "lon": -73.9979198 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231995, + "bounds": { + "minlat": 40.7559963, + "minlon": -73.9977914, + "maxlat": 40.7560087, + "maxlon": -73.9977649 + }, + "nodes": [ + 9409760279, + 9409760269 + ], + "geometry": [ + { "lat": 40.7560087, "lon": -73.9977914 }, + { "lat": 40.7559963, "lon": -73.9977649 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231996, + "bounds": { + "minlat": 40.7560503, + "minlon": -73.9978902, + "maxlat": 40.7560544, + "maxlon": -73.9978816 + }, + "nodes": [ + 9409760268, + 9409760280 + ], + "geometry": [ + { "lat": 40.7560544, "lon": -73.9978902 }, + { "lat": 40.7560503, "lon": -73.9978816 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231997, + "bounds": { + "minlat": 40.7560399, + "minlon": -73.9977607, + "maxlat": 40.7560518, + "maxlon": -73.9977335 + }, + "nodes": [ + 9409760281, + 9409760271 + ], + "geometry": [ + { "lat": 40.7560518, "lon": -73.9977607 }, + { "lat": 40.7560399, "lon": -73.9977335 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020231998, + "bounds": { + "minlat": 40.7560921, + "minlon": -73.9978597, + "maxlat": 40.7560958, + "maxlon": -73.9978519 + }, + "nodes": [ + 9409760270, + 9409760282 + ], + "geometry": [ + { "lat": 40.7560958, "lon": -73.9978597 }, + { "lat": 40.7560921, "lon": -73.9978519 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020237326, + "bounds": { + "minlat": 40.8111033, + "minlon": -74.0114621, + "maxlat": 40.8113071, + "maxlon": -74.0110466 + }, + "nodes": [ + 103872649, + 103872651 + ], + "geometry": [ + { "lat": 40.8111033, "lon": -74.0110466 }, + { "lat": 40.8113071, "lon": -74.0114621 } + ], + "tags": { + "highway": "residential", + "maxweight": "4", + "name": "88th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "88th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1020473691, + "bounds": { + "minlat": 40.8484334, + "minlon": -73.9650403, + "maxlat": 40.8497137, + "maxlon": -73.9646517 + }, + "nodes": [ + 752617944, + 103276259, + 5103460839, + 103276261, + 103276265, + 103195190 + ], + "geometry": [ + { "lat": 40.8484334, "lon": -73.9650403 }, + { "lat": 40.8487777, "lon": -73.9648906 }, + { "lat": 40.8492560, "lon": -73.9647292 }, + { "lat": 40.8494805, "lon": -73.9646848 }, + { "lat": 40.8496071, "lon": -73.9646636 }, + { "lat": 40.8497137, "lon": -73.9646517 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Main Street", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1020544126, + "bounds": { + "minlat": 40.8482830, + "minlon": -73.9991640, + "maxlat": 40.8491780, + "maxlon": -73.9976200 + }, + "nodes": [ + 103119429, + 5976782467, + 5976782477, + 5976782474, + 5779116555, + 103119431 + ], + "geometry": [ + { "lat": 40.8482830, "lon": -73.9976200 }, + { "lat": 40.8485455, "lon": -73.9980728 }, + { "lat": 40.8487105, "lon": -73.9983574 }, + { "lat": 40.8488942, "lon": -73.9986744 }, + { "lat": 40.8490258, "lon": -73.9989014 }, + { "lat": 40.8491780, "lon": -73.9991640 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "name": "West Central Boulevard", + "old_ref": "CR 54", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1020544127, + "bounds": { + "minlat": 40.8491780, + "minlon": -73.9991640, + "maxlat": 40.8505550, + "maxlon": -73.9977690 + }, + "nodes": [ + 103119431, + 5779116561, + 8230264278, + 5772191923, + 5976782494, + 103166974, + 103142413 + ], + "geometry": [ + { "lat": 40.8491780, "lon": -73.9991640 }, + { "lat": 40.8495515, "lon": -73.9987963 }, + { "lat": 40.8495683, "lon": -73.9987798 }, + { "lat": 40.8496838, "lon": -73.9986660 }, + { "lat": 40.8497049, "lon": -73.9986434 }, + { "lat": 40.8499380, "lon": -73.9983940 }, + { "lat": 40.8505550, "lon": -73.9977690 } + ], + "tags": { + "highway": "residential", + "name": "Highland Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Highland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1020558572, + "bounds": { + "minlat": 40.8123973, + "minlon": -74.0115564, + "maxlat": 40.8132039, + "maxlon": -74.0108314 + }, + "nodes": [ + 103858398, + 103867752, + 4205657199 + ], + "geometry": [ + { "lat": 40.8123973, "lon": -74.0115564 }, + { "lat": 40.8128650, "lon": -74.0111310 }, + { "lat": 40.8132039, "lon": -74.0108314 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1020738655, + "bounds": { + "minlat": 40.7496378, + "minlon": -73.9932838, + "maxlat": 40.7498872, + "maxlon": -73.9931948 + }, + "nodes": [ + 9414461036, + 9414461040, + 9414461041, + 9414461042, + 9414461043, + 9414461044, + 9414461046, + 9414461045 + ], + "geometry": [ + { "lat": 40.7498872, "lon": -73.9932285 }, + { "lat": 40.7498430, "lon": -73.9932074 }, + { "lat": 40.7498130, "lon": -73.9931958 }, + { "lat": 40.7497898, "lon": -73.9931948 }, + { "lat": 40.7497591, "lon": -73.9932023 }, + { "lat": 40.7497393, "lon": -73.9932124 }, + { "lat": 40.7497163, "lon": -73.9932288 }, + { "lat": 40.7496378, "lon": -73.9932838 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1020756530, + "bounds": { + "minlat": 40.8202079, + "minlon": -74.0079331, + "maxlat": 40.8203759, + "maxlon": -74.0078529 + }, + "nodes": [ + 5837332128, + 5837332126 + ], + "geometry": [ + { "lat": 40.8202079, "lon": -74.0078529 }, + { "lat": 40.8203759, "lon": -74.0079331 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657" + } +}, +{ + "type": "way", + "id": 1020756531, + "bounds": { + "minlat": 40.8204309, + "minlon": -74.0081377, + "maxlat": 40.8208305, + "maxlon": -74.0079578 + }, + "nodes": [ + 7933006739, + 7933006745, + 103223998 + ], + "geometry": [ + { "lat": 40.8204309, "lon": -74.0079578 }, + { "lat": 40.8205754, "lon": -74.0080218 }, + { "lat": 40.8208305, "lon": -74.0081377 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657" + } +}, +{ + "type": "way", + "id": 1020756532, + "bounds": { + "minlat": 40.8203563, + "minlon": -74.0077109, + "maxlat": 40.8204504, + "maxlon": -74.0074249 + }, + "nodes": [ + 7933006740, + 7933006733, + 7933006734, + 7933006735, + 7933006736, + 7933006737, + 7933006738 + ], + "geometry": [ + { "lat": 40.8204504, "lon": -74.0077109 }, + { "lat": 40.8204476, "lon": -74.0077042 }, + { "lat": 40.8204369, "lon": -74.0076737 }, + { "lat": 40.8204182, "lon": -74.0075968 }, + { "lat": 40.8204108, "lon": -74.0075831 }, + { "lat": 40.8203914, "lon": -74.0075641 }, + { "lat": 40.8203563, "lon": -74.0074249 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1020756533, + "bounds": { + "minlat": 40.8202079, + "minlon": -74.0081285, + "maxlat": 40.8202421, + "maxlon": -74.0078529 + }, + "nodes": [ + 5837332127, + 5837332128 + ], + "geometry": [ + { "lat": 40.8202421, "lon": -74.0081285 }, + { "lat": 40.8202079, "lon": -74.0078529 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1020756534, + "bounds": { + "minlat": 40.8203759, + "minlon": -74.0079578, + "maxlat": 40.8204309, + "maxlon": -74.0079331 + }, + "nodes": [ + 5837332126, + 7933006739 + ], + "geometry": [ + { "lat": 40.8203759, "lon": -74.0079331 }, + { "lat": 40.8204309, "lon": -74.0079578 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657" + } +}, +{ + "type": "way", + "id": 1020772819, + "bounds": { + "minlat": 40.8076008, + "minlon": -73.9343735, + "maxlat": 40.8078972, + "maxlon": -73.9341865 + }, + "nodes": [ + 373756705, + 3786741806, + 9153699982 + ], + "geometry": [ + { "lat": 40.8078972, "lon": -73.9343735 }, + { "lat": 40.8077905, "lon": -73.9343104 }, + { "lat": 40.8076008, "lon": -73.9341865 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1020776818, + "bounds": { + "minlat": 40.8516894, + "minlon": -73.9723130, + "maxlat": 40.8521006, + "maxlon": -73.9717293 + }, + "nodes": [ + 3748229043, + 103174599 + ], + "geometry": [ + { "lat": 40.8516894, "lon": -73.9717293 }, + { "lat": 40.8521006, "lon": -73.9723130 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1020783057, + "bounds": { + "minlat": 40.7220040, + "minlon": -73.9414578, + "maxlat": 40.7222806, + "maxlon": -73.9410898 + }, + "nodes": [ + 42476656, + 9937834467, + 42466405 + ], + "geometry": [ + { "lat": 40.7222806, "lon": -73.9410898 }, + { "lat": 40.7221851, "lon": -73.9412180 }, + { "lat": 40.7220040, "lon": -73.9414578 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1020783058, + "bounds": { + "minlat": 40.7216544, + "minlon": -73.9419561, + "maxlat": 40.7220040, + "maxlon": -73.9414578 + }, + "nodes": [ + 42466405, + 9649686765, + 6235394692, + 42476651 + ], + "geometry": [ + { "lat": 40.7220040, "lon": -73.9414578 }, + { "lat": 40.7218350, "lon": -73.9416986 }, + { "lat": 40.7217055, "lon": -73.9418839 }, + { "lat": 40.7216544, "lon": -73.9419561 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1020783059, + "bounds": { + "minlat": 40.7211437, + "minlon": -73.9428264, + "maxlat": 40.7216544, + "maxlon": -73.9419561 + }, + "nodes": [ + 42476651, + 12162675491, + 12188648365, + 12162675493, + 12162675494, + 12162675492, + 6235394690, + 42476648 + ], + "geometry": [ + { "lat": 40.7216544, "lon": -73.9419561 }, + { "lat": 40.7216109, "lon": -73.9420163 }, + { "lat": 40.7215984, "lon": -73.9420360 }, + { "lat": 40.7215424, "lon": -73.9421243 }, + { "lat": 40.7214852, "lon": -73.9422220 }, + { "lat": 40.7214373, "lon": -73.9423042 }, + { "lat": 40.7211931, "lon": -73.9427358 }, + { "lat": 40.7211437, "lon": -73.9428264 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1020783060, + "bounds": { + "minlat": 40.7210594, + "minlon": -73.9429666, + "maxlat": 40.7211437, + "maxlon": -73.9428264 + }, + "nodes": [ + 42476648, + 6235394689, + 9414914118 + ], + "geometry": [ + { "lat": 40.7211437, "lon": -73.9428264 }, + { "lat": 40.7210993, "lon": -73.9429021 }, + { "lat": 40.7210594, "lon": -73.9429666 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1020832418, + "bounds": { + "minlat": 40.7456459, + "minlon": -73.9752586, + "maxlat": 40.7458075, + "maxlon": -73.9751397 + }, + "nodes": [ + 9415339771, + 4207683806 + ], + "geometry": [ + { "lat": 40.7458075, "lon": -73.9751397 }, + { "lat": 40.7456459, "lon": -73.9752586 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1020835925, + "bounds": { + "minlat": 40.7638466, + "minlon": -73.9990628, + "maxlat": 40.7642006, + "maxlon": -73.9988027 + }, + "nodes": [ + 12154598296, + 4782543122, + 42432714 + ], + "geometry": [ + { "lat": 40.7642006, "lon": -73.9988027 }, + { "lat": 40.7640501, "lon": -73.9989118 }, + { "lat": 40.7638466, "lon": -73.9990628 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1020870271, + "bounds": { + "minlat": 40.8264920, + "minlon": -73.9092906, + "maxlat": 40.8270028, + "maxlon": -73.9077390 + }, + "nodes": [ + 42768572, + 13247238249, + 5482222819, + 13031288226, + 42730085 + ], + "geometry": [ + { "lat": 40.8264920, "lon": -73.9077390 }, + { "lat": 40.8265312, "lon": -73.9078582 }, + { "lat": 40.8267017, "lon": -73.9083760 }, + { "lat": 40.8269710, "lon": -73.9091939 }, + { "lat": 40.8270028, "lon": -73.9092906 } + ], + "tags": { + "highway": "residential", + "name": "East 165th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1021037338, + "bounds": { + "minlat": 40.7416144, + "minlon": -74.0088735, + "maxlat": 40.7418214, + "maxlon": -74.0088229 + }, + "nodes": [ + 9417132054, + 11027819095 + ], + "geometry": [ + { "lat": 40.7416144, "lon": -74.0088735 }, + { "lat": 40.7418214, "lon": -74.0088229 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "yes|yes|not_right|not_left|yes", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "through|through|through|right|right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1021042405, + "bounds": { + "minlat": 40.7158330, + "minlon": -74.0133803, + "maxlat": 40.7161708, + "maxlon": -74.0132926 + }, + "nodes": [ + 9417252931, + 4207143416 + ], + "geometry": [ + { "lat": 40.7161708, "lon": -74.0132926 }, + { "lat": 40.7158330, "lon": -74.0133803 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left||||right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1021047632, + "bounds": { + "minlat": 40.7588274, + "minlon": -73.9923474, + "maxlat": 40.7591038, + "maxlon": -73.9921385 + }, + "nodes": [ + 42445011, + 10168047527, + 9417289897 + ], + "geometry": [ + { "lat": 40.7591038, "lon": -73.9921385 }, + { "lat": 40.7590414, "lon": -73.9921860 }, + { "lat": 40.7588274, "lon": -73.9923474 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021051876, + "bounds": { + "minlat": 40.7496297, + "minlon": -73.9723523, + "maxlat": 40.7498334, + "maxlon": -73.9721997 + }, + "nodes": [ + 42442937, + 7964920725, + 12362248176 + ], + "geometry": [ + { "lat": 40.7498334, "lon": -73.9721997 }, + { "lat": 40.7497285, "lon": -73.9722783 }, + { "lat": 40.7496297, "lon": -73.9723523 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021063591, + "bounds": { + "minlat": 40.7144270, + "minlon": -74.0134218, + "maxlat": 40.7147252, + "maxlon": -74.0133348 + }, + "nodes": [ + 42453398, + 4143838194, + 4143838195, + 4207143415 + ], + "geometry": [ + { "lat": 40.7144270, "lon": -74.0134218 }, + { "lat": 40.7145390, "lon": -74.0133839 }, + { "lat": 40.7146293, "lon": -74.0133583 }, + { "lat": 40.7147252, "lon": -74.0133348 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1021065071, + "bounds": { + "minlat": 40.7541770, + "minlon": -73.9845960, + "maxlat": 40.7544067, + "maxlon": -73.9844321 + }, + "nodes": [ + 42430329, + 10169532642, + 9417458967 + ], + "geometry": [ + { "lat": 40.7541770, "lon": -73.9845960 }, + { "lat": 40.7542363, "lon": -73.9845535 }, + { "lat": 40.7544067, "lon": -73.9844321 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1021068251, + "bounds": { + "minlat": 40.7535585, + "minlon": -73.9850397, + "maxlat": 40.7536909, + "maxlon": -73.9849447 + }, + "nodes": [ + 42430324, + 10169532591, + 9417469211 + ], + "geometry": [ + { "lat": 40.7535585, "lon": -73.9850397 }, + { "lat": 40.7536191, "lon": -73.9849960 }, + { "lat": 40.7536909, "lon": -73.9849447 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1021124545, + "bounds": { + "minlat": 40.7446201, + "minlon": -73.9952652, + "maxlat": 40.7447650, + "maxlon": -73.9951595 + }, + "nodes": [ + 42427426, + 10171337689, + 9418022243 + ], + "geometry": [ + { "lat": 40.7447650, "lon": -73.9951595 }, + { "lat": 40.7447074, "lon": -73.9952015 }, + { "lat": 40.7446201, "lon": -73.9952652 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "oneway:bicycle": "yes", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021258187, + "bounds": { + "minlat": 40.7498148, + "minlon": -73.9931941, + "maxlat": 40.7500331, + "maxlon": -73.9928784 + }, + "nodes": [ + 9419005603, + 9419005604, + 9419005605, + 9419005606, + 9419005607, + 9419005608, + 9419005609, + 9419005610, + 9419005611, + 9419005612, + 9419005613, + 9419005614, + 9419005615, + 9419005616, + 9419131117, + 9419131118, + 9419131119, + 9419131120, + 9419131121, + 1514353100, + 9413881802, + 2870201891, + 1514352957, + 1514353051, + 1514353074, + 1514353091, + 1514352992, + 2870201890, + 9419005603 + ], + "geometry": [ + { "lat": 40.7498949, "lon": -73.9931941 }, + { "lat": 40.7498528, "lon": -73.9931785 }, + { "lat": 40.7498328, "lon": -73.9931659 }, + { "lat": 40.7498248, "lon": -73.9931576 }, + { "lat": 40.7498199, "lon": -73.9931480 }, + { "lat": 40.7498159, "lon": -73.9931353 }, + { "lat": 40.7498148, "lon": -73.9931239 }, + { "lat": 40.7498148, "lon": -73.9931115 }, + { "lat": 40.7498170, "lon": -73.9930989 }, + { "lat": 40.7498204, "lon": -73.9930866 }, + { "lat": 40.7498257, "lon": -73.9930760 }, + { "lat": 40.7498377, "lon": -73.9930595 }, + { "lat": 40.7498535, "lon": -73.9930378 }, + { "lat": 40.7498740, "lon": -73.9930161 }, + { "lat": 40.7499345, "lon": -73.9929544 }, + { "lat": 40.7499621, "lon": -73.9929285 }, + { "lat": 40.7499833, "lon": -73.9929100 }, + { "lat": 40.7500028, "lon": -73.9928936 }, + { "lat": 40.7500221, "lon": -73.9928784 }, + { "lat": 40.7500254, "lon": -73.9928862 }, + { "lat": 40.7500063, "lon": -73.9929093 }, + { "lat": 40.7499889, "lon": -73.9929348 }, + { "lat": 40.7499658, "lon": -73.9929785 }, + { "lat": 40.7500331, "lon": -73.9930406 }, + { "lat": 40.7500114, "lon": -73.9930874 }, + { "lat": 40.7499940, "lon": -73.9931313 }, + { "lat": 40.7499150, "lon": -73.9931276 }, + { "lat": 40.7498957, "lon": -73.9931907 }, + { "lat": 40.7498949, "lon": -73.9931941 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021258188, + "bounds": { + "minlat": 40.7506682, + "minlon": -73.9926292, + "maxlat": 40.7507197, + "maxlon": -73.9923114 + }, + "nodes": [ + 9419131122, + 11512945746, + 11512945747, + 11512945745, + 11512945748, + 11512945749, + 9419131123 + ], + "geometry": [ + { "lat": 40.7507010, "lon": -73.9926292 }, + { "lat": 40.7507142, "lon": -73.9925439 }, + { "lat": 40.7507197, "lon": -73.9925002 }, + { "lat": 40.7507163, "lon": -73.9924530 }, + { "lat": 40.7507061, "lon": -73.9924083 }, + { "lat": 40.7506876, "lon": -73.9923572 }, + { "lat": 40.7506682, "lon": -73.9923114 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1021481767, + "bounds": { + "minlat": 40.7522461, + "minlon": -74.0008579, + "maxlat": 40.7526895, + "maxlon": -74.0005305 + }, + "nodes": [ + 1701844618, + 8261122518, + 42451695 + ], + "geometry": [ + { "lat": 40.7522461, "lon": -74.0008579 }, + { "lat": 40.7526324, "lon": -74.0005720 }, + { "lat": 40.7526895, "lon": -74.0005305 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021481768, + "bounds": { + "minlat": 40.7519630, + "minlon": -74.0010586, + "maxlat": 40.7520747, + "maxlon": -74.0009801 + }, + "nodes": [ + 9421123761, + 10171326404, + 42437693 + ], + "geometry": [ + { "lat": 40.7519630, "lon": -74.0010586 }, + { "lat": 40.7520333, "lon": -74.0010100 }, + { "lat": 40.7520747, "lon": -74.0009801 } + ], + "tags": { + "covered": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021525071, + "bounds": { + "minlat": 40.7095053, + "minlon": -74.0138882, + "maxlat": 40.7100289, + "maxlon": -74.0136870 + }, + "nodes": [ + 3772840882, + 8262936696, + 42434401, + 10288473109, + 6417761631, + 6417761630 + ], + "geometry": [ + { "lat": 40.7095053, "lon": -74.0138882 }, + { "lat": 40.7095661, "lon": -74.0138628 }, + { "lat": 40.7099524, "lon": -74.0137041 }, + { "lat": 40.7099778, "lon": -74.0136938 }, + { "lat": 40.7100050, "lon": -74.0136870 }, + { "lat": 40.7100289, "lon": -74.0136883 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021536504, + "bounds": { + "minlat": 40.7572815, + "minlon": -74.0014554, + "maxlat": 40.7576805, + "maxlon": -74.0010623 + }, + "nodes": [ + 12974291646, + 9421649600, + 9421649598, + 12974291647, + 9421649606, + 9421649603, + 12974291648, + 9421649599 + ], + "geometry": [ + { "lat": 40.7576805, "lon": -74.0010623 }, + { "lat": 40.7576442, "lon": -74.0011852 }, + { "lat": 40.7576241, "lon": -74.0012013 }, + { "lat": 40.7575429, "lon": -74.0012584 }, + { "lat": 40.7574467, "lon": -74.0012628 }, + { "lat": 40.7573177, "lon": -74.0013704 }, + { "lat": 40.7573003, "lon": -74.0014412 }, + { "lat": 40.7572815, "lon": -74.0014554 } + ], + "tags": { + "highway": "service", + "lane_markings": "no", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021536513, + "bounds": { + "minlat": 40.7560507, + "minlon": -74.0045290, + "maxlat": 40.7561676, + "maxlon": -74.0044254 + }, + "nodes": [ + 4696815198, + 9421657366, + 9421657367, + 9421657368, + 9421657369 + ], + "geometry": [ + { "lat": 40.7561676, "lon": -74.0045290 }, + { "lat": 40.7561445, "lon": -74.0044787 }, + { "lat": 40.7561222, "lon": -74.0044431 }, + { "lat": 40.7560891, "lon": -74.0044269 }, + { "lat": 40.7560507, "lon": -74.0044254 } + ], + "tags": { + "access": "private", + "foot": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1021536514, + "bounds": { + "minlat": 40.7559662, + "minlon": -74.0044870, + "maxlat": 40.7560699, + "maxlon": -74.0041694 + }, + "nodes": [ + 8261044803, + 8261044809, + 9423680750, + 9421657369, + 8261044804, + 9421657370, + 8261044806, + 9441264671, + 9421657371 + ], + "geometry": [ + { "lat": 40.7559662, "lon": -74.0044870 }, + { "lat": 40.7560269, "lon": -74.0044429 }, + { "lat": 40.7560431, "lon": -74.0044310 }, + { "lat": 40.7560507, "lon": -74.0044254 }, + { "lat": 40.7560640, "lon": -74.0044007 }, + { "lat": 40.7560699, "lon": -74.0043652 }, + { "lat": 40.7560698, "lon": -74.0043007 }, + { "lat": 40.7560576, "lon": -74.0042275 }, + { "lat": 40.7560417, "lon": -74.0041694 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1021536518, + "bounds": { + "minlat": 40.7568411, + "minlon": -74.0042770, + "maxlat": 40.7569028, + "maxlon": -74.0041820 + }, + "nodes": [ + 9421657382, + 9421649554, + 9421657383, + 9421657384, + 9421657385, + 9421657386, + 9421649557, + 9421657387, + 9421657388, + 9421657389, + 9421657390, + 9421657391, + 9421649555, + 9421657393, + 9421657394, + 9421657395, + 9421657396, + 9421657397, + 9421657398, + 9421657399, + 9421657382 + ], + "geometry": [ + { "lat": 40.7568601, "lon": -74.0042749 }, + { "lat": 40.7568838, "lon": -74.0042574 }, + { "lat": 40.7568993, "lon": -74.0042464 }, + { "lat": 40.7569023, "lon": -74.0042391 }, + { "lat": 40.7569028, "lon": -74.0042292 }, + { "lat": 40.7569007, "lon": -74.0042210 }, + { "lat": 40.7568879, "lon": -74.0041917 }, + { "lat": 40.7568844, "lon": -74.0041862 }, + { "lat": 40.7568801, "lon": -74.0041829 }, + { "lat": 40.7568753, "lon": -74.0041820 }, + { "lat": 40.7568700, "lon": -74.0041844 }, + { "lat": 40.7568642, "lon": -74.0041904 }, + { "lat": 40.7568619, "lon": -74.0042015 }, + { "lat": 40.7568512, "lon": -74.0042325 }, + { "lat": 40.7568438, "lon": -74.0042473 }, + { "lat": 40.7568411, "lon": -74.0042561 }, + { "lat": 40.7568416, "lon": -74.0042634 }, + { "lat": 40.7568448, "lon": -74.0042718 }, + { "lat": 40.7568489, "lon": -74.0042761 }, + { "lat": 40.7568542, "lon": -74.0042770 }, + { "lat": 40.7568601, "lon": -74.0042749 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021536519, + "bounds": { + "minlat": 40.7569514, + "minlon": -74.0046425, + "maxlat": 40.7570662, + "maxlon": -74.0044060 + }, + "nodes": [ + 9421657400, + 9421649561, + 9421657401, + 9421657402, + 9421657403, + 9421657404, + 8261122868, + 9421657405, + 9421657406, + 9421657407, + 9421657408, + 9421649566, + 9421657409, + 9421657410, + 9421657411, + 9421657412, + 9421657413, + 9421657414, + 9421657415, + 9421657416, + 9421657400 + ], + "geometry": [ + { "lat": 40.7570662, "lon": -74.0046077 }, + { "lat": 40.7570497, "lon": -74.0045687 }, + { "lat": 40.7569843, "lon": -74.0044163 }, + { "lat": 40.7569791, "lon": -74.0044077 }, + { "lat": 40.7569738, "lon": -74.0044060 }, + { "lat": 40.7569699, "lon": -74.0044103 }, + { "lat": 40.7569601, "lon": -74.0044526 }, + { "lat": 40.7569527, "lon": -74.0044845 }, + { "lat": 40.7569514, "lon": -74.0045021 }, + { "lat": 40.7569524, "lon": -74.0045176 }, + { "lat": 40.7569560, "lon": -74.0045326 }, + { "lat": 40.7569889, "lon": -74.0046117 }, + { "lat": 40.7569953, "lon": -74.0046270 }, + { "lat": 40.7570051, "lon": -74.0046369 }, + { "lat": 40.7570184, "lon": -74.0046425 }, + { "lat": 40.7570298, "lon": -74.0046425 }, + { "lat": 40.7570418, "lon": -74.0046373 }, + { "lat": 40.7570620, "lon": -74.0046232 }, + { "lat": 40.7570652, "lon": -74.0046185 }, + { "lat": 40.7570662, "lon": -74.0046129 }, + { "lat": 40.7570662, "lon": -74.0046077 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021536524, + "bounds": { + "minlat": 40.7568728, + "minlon": -74.0050738, + "maxlat": 40.7569702, + "maxlon": -74.0049412 + }, + "nodes": [ + 4903972509, + 9421657421, + 9421657422, + 9421657423, + 9421657424, + 9421657425, + 9421657426, + 9421657427, + 9421657428, + 9421657429, + 9421657430, + 9421657420, + 4903972475, + 4903972509 + ], + "geometry": [ + { "lat": 40.7569125, "lon": -74.0050738 }, + { "lat": 40.7569281, "lon": -74.0050635 }, + { "lat": 40.7569602, "lon": -74.0050422 }, + { "lat": 40.7569665, "lon": -74.0050356 }, + { "lat": 40.7569694, "lon": -74.0050272 }, + { "lat": 40.7569702, "lon": -74.0050178 }, + { "lat": 40.7569681, "lon": -74.0050057 }, + { "lat": 40.7569417, "lon": -74.0049454 }, + { "lat": 40.7569367, "lon": -74.0049419 }, + { "lat": 40.7569296, "lon": -74.0049412 }, + { "lat": 40.7569230, "lon": -74.0049430 }, + { "lat": 40.7568873, "lon": -74.0049677 }, + { "lat": 40.7568728, "lon": -74.0049778 }, + { "lat": 40.7569125, "lon": -74.0050738 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021536532, + "bounds": { + "minlat": 40.7574442, + "minlon": -74.0012628, + "maxlat": 40.7584085, + "maxlon": -74.0001285 + }, + "nodes": [ + 42430651, + 8261122947, + 593915313, + 9421657450, + 9421657453, + 9421657452, + 9421657451, + 9421657543, + 4604294525, + 9421657529, + 593915237, + 8261122907, + 12974291646, + 9421649601, + 9421649595, + 9421649602, + 9421649606 + ], + "geometry": [ + { "lat": 40.7582961, "lon": -74.0001285 }, + { "lat": 40.7583716, "lon": -74.0002897 }, + { "lat": 40.7583938, "lon": -74.0003507 }, + { "lat": 40.7584035, "lon": -74.0003882 }, + { "lat": 40.7584084, "lon": -74.0004267 }, + { "lat": 40.7584085, "lon": -74.0004687 }, + { "lat": 40.7583961, "lon": -74.0005169 }, + { "lat": 40.7583875, "lon": -74.0005356 }, + { "lat": 40.7583742, "lon": -74.0005543 }, + { "lat": 40.7579424, "lon": -74.0008654 }, + { "lat": 40.7578305, "lon": -74.0009472 }, + { "lat": 40.7577750, "lon": -74.0009906 }, + { "lat": 40.7576805, "lon": -74.0010623 }, + { "lat": 40.7575828, "lon": -74.0010255 }, + { "lat": 40.7574602, "lon": -74.0011174 }, + { "lat": 40.7574442, "lon": -74.0011757 }, + { "lat": 40.7574467, "lon": -74.0012628 } + ], + "tags": { + "highway": "service", + "lane_markings": "no", + "maxspeed": "5 mph", + "motor_vehicle": "destination", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021536533, + "bounds": { + "minlat": 40.7565619, + "minlon": -74.0018518, + "maxlat": 40.7572417, + "maxlon": -74.0013603 + }, + "nodes": [ + 593915314, + 9421657440 + ], + "geometry": [ + { "lat": 40.7572417, "lon": -74.0013603 }, + { "lat": 40.7565619, "lon": -74.0018518 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "motor_vehicle": "destination", + "oneway": "yes", + "service": "driveway", + "surface": "paved", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1021536534, + "bounds": { + "minlat": 40.7566052, + "minlon": -74.0019554, + "maxlat": 40.7572815, + "maxlon": -74.0014554 + }, + "nodes": [ + 9421649599, + 9421657441 + ], + "geometry": [ + { "lat": 40.7572815, "lon": -74.0014554 }, + { "lat": 40.7566052, "lon": -74.0019554 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1021536535, + "bounds": { + "minlat": 40.7561312, + "minlon": -74.0022983, + "maxlat": 40.7566052, + "maxlon": -74.0019343 + }, + "nodes": [ + 9421657441, + 12974291644, + 593915315, + 12974291641, + 12974291642, + 9421657445 + ], + "geometry": [ + { "lat": 40.7566052, "lon": -74.0019554 }, + { "lat": 40.7565879, "lon": -74.0019682 }, + { "lat": 40.7565335, "lon": -74.0019343 }, + { "lat": 40.7563973, "lon": -74.0020281 }, + { "lat": 40.7563579, "lon": -74.0021348 }, + { "lat": 40.7561312, "lon": -74.0022983 } + ], + "tags": { + "highway": "service", + "lane_markings": "no", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021536594, + "bounds": { + "minlat": 40.7590641, + "minlon": -73.9994546, + "maxlat": 40.7593214, + "maxlon": -73.9989285 + }, + "nodes": [ + 9421657722, + 9421657754, + 9421657725, + 9421657728, + 9421657721, + 9421657723, + 9421657720, + 9421657724, + 9421657719, + 9421657718, + 9421657727, + 9421657726, + 9421657755, + 9421657717 + ], + "geometry": [ + { "lat": 40.7593214, "lon": -73.9989285 }, + { "lat": 40.7592859, "lon": -73.9989543 }, + { "lat": 40.7592688, "lon": -73.9989668 }, + { "lat": 40.7592517, "lon": -73.9989801 }, + { "lat": 40.7591050, "lon": -73.9990862 }, + { "lat": 40.7590828, "lon": -73.9991152 }, + { "lat": 40.7590662, "lon": -73.9991535 }, + { "lat": 40.7590641, "lon": -73.9991953 }, + { "lat": 40.7590658, "lon": -73.9992423 }, + { "lat": 40.7590749, "lon": -73.9992882 }, + { "lat": 40.7591028, "lon": -73.9993623 }, + { "lat": 40.7591105, "lon": -73.9993788 }, + { "lat": 40.7591193, "lon": -73.9994014 }, + { "lat": 40.7591402, "lon": -73.9994546 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021536596, + "bounds": { + "minlat": 40.7584002, + "minlon": -73.9995371, + "maxlat": 40.7593614, + "maxlon": -73.9980908 + }, + "nodes": [ + 9421657618, + 9421657729, + 9421657730, + 9421657731, + 9421657732, + 9421657733, + 9421657734, + 9421657735, + 9421657736, + 9421657619, + 9421657737, + 9421657755, + 9421657738, + 9421657739, + 9140954086, + 9421657740, + 9421657551, + 9421657741, + 9421657742, + 9421657743, + 9421657744, + 9421657754, + 9421657745, + 9421657746, + 9421657747, + 9421657748, + 9421657749, + 9421657750, + 9421657751, + 9421657752, + 9421657753, + 9421657560, + 9421657566, + 9421657561, + 9421657567, + 9421657568, + 9421657562, + 9421657569, + 9421657563, + 9421657556, + 9421657728, + 9421657716, + 9421657715, + 9421657727, + 9421657714, + 9421657713, + 9421657617, + 9421657658, + 9421657675, + 9421657618 + ], + "geometry": [ + { "lat": 40.7584469, "lon": -73.9983392 }, + { "lat": 40.7584085, "lon": -73.9983024 }, + { "lat": 40.7584035, "lon": -73.9982996 }, + { "lat": 40.7584009, "lon": -73.9983021 }, + { "lat": 40.7584002, "lon": -73.9983092 }, + { "lat": 40.7589026, "lon": -73.9995141 }, + { "lat": 40.7589111, "lon": -73.9995262 }, + { "lat": 40.7589169, "lon": -73.9995327 }, + { "lat": 40.7589275, "lon": -73.9995371 }, + { "lat": 40.7589371, "lon": -73.9995332 }, + { "lat": 40.7589457, "lon": -73.9995265 }, + { "lat": 40.7591193, "lon": -73.9994014 }, + { "lat": 40.7593202, "lon": -73.9992568 }, + { "lat": 40.7593329, "lon": -73.9992459 }, + { "lat": 40.7593441, "lon": -73.9992298 }, + { "lat": 40.7593503, "lon": -73.9992148 }, + { "lat": 40.7593569, "lon": -73.9991938 }, + { "lat": 40.7593602, "lon": -73.9991775 }, + { "lat": 40.7593614, "lon": -73.9991595 }, + { "lat": 40.7593599, "lon": -73.9991390 }, + { "lat": 40.7593531, "lon": -73.9991141 }, + { "lat": 40.7592859, "lon": -73.9989543 }, + { "lat": 40.7589325, "lon": -73.9981144 }, + { "lat": 40.7589238, "lon": -73.9981016 }, + { "lat": 40.7589120, "lon": -73.9980929 }, + { "lat": 40.7589005, "lon": -73.9980908 }, + { "lat": 40.7588877, "lon": -73.9980945 }, + { "lat": 40.7588731, "lon": -73.9981041 }, + { "lat": 40.7588656, "lon": -73.9981178 }, + { "lat": 40.7588597, "lon": -73.9981371 }, + { "lat": 40.7588543, "lon": -73.9981837 }, + { "lat": 40.7588932, "lon": -73.9981924 }, + { "lat": 40.7588992, "lon": -73.9981869 }, + { "lat": 40.7589062, "lon": -73.9981841 }, + { "lat": 40.7589117, "lon": -73.9981841 }, + { "lat": 40.7589170, "lon": -73.9981857 }, + { "lat": 40.7589219, "lon": -73.9981890 }, + { "lat": 40.7589274, "lon": -73.9981957 }, + { "lat": 40.7589310, "lon": -73.9982044 }, + { "lat": 40.7589589, "lon": -73.9982747 }, + { "lat": 40.7592517, "lon": -73.9989801 }, + { "lat": 40.7593274, "lon": -73.9991625 }, + { "lat": 40.7593165, "lon": -73.9992071 }, + { "lat": 40.7591028, "lon": -73.9993623 }, + { "lat": 40.7590209, "lon": -73.9994217 }, + { "lat": 40.7589311, "lon": -73.9994927 }, + { "lat": 40.7588195, "lon": -73.9992227 }, + { "lat": 40.7585268, "lon": -73.9985301 }, + { "lat": 40.7585193, "lon": -73.9985117 }, + { "lat": 40.7584469, "lon": -73.9983392 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1021556009, + "bounds": { + "minlat": 40.8456558, + "minlon": -73.9661706, + "maxlat": 40.8457227, + "maxlon": -73.9656359 + }, + "nodes": [ + 9421814829, + 9421814825, + 9421814828, + 9421814827, + 9421814826 + ], + "geometry": [ + { "lat": 40.8456558, "lon": -73.9661706 }, + { "lat": 40.8457227, "lon": -73.9661304 }, + { "lat": 40.8457030, "lon": -73.9660100 }, + { "lat": 40.8456842, "lon": -73.9658035 }, + { "lat": 40.8456820, "lon": -73.9656359 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Colony", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 1021565809, + "bounds": { + "minlat": 40.8748354, + "minlon": -73.9486799, + "maxlat": 40.8752663, + "maxlon": -73.9484616 + }, + "nodes": [ + 2961785349, + 9421906477, + 4072572068, + 2961785350 + ], + "geometry": [ + { "lat": 40.8752663, "lon": -73.9484616 }, + { "lat": 40.8751730, "lon": -73.9484804 }, + { "lat": 40.8751010, "lon": -73.9485113 }, + { "lat": 40.8748354, "lon": -73.9486799 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1021565810, + "bounds": { + "minlat": 40.8752663, + "minlon": -73.9489722, + "maxlat": 40.8755969, + "maxlon": -73.9484033 + }, + "nodes": [ + 2961785349, + 9421906476, + 9421906475, + 9421906474, + 9421906467, + 9421906473, + 9421906472, + 9421906471, + 9421906470, + 9421906469, + 9421906468, + 2961785345 + ], + "geometry": [ + { "lat": 40.8752663, "lon": -73.9484616 }, + { "lat": 40.8753165, "lon": -73.9484107 }, + { "lat": 40.8753499, "lon": -73.9484033 }, + { "lat": 40.8753804, "lon": -73.9484080 }, + { "lat": 40.8754417, "lon": -73.9484502 }, + { "lat": 40.8755097, "lon": -73.9485414 }, + { "lat": 40.8755604, "lon": -73.9486641 }, + { "lat": 40.8755918, "lon": -73.9487855 }, + { "lat": 40.8755969, "lon": -73.9488184 }, + { "lat": 40.8755938, "lon": -73.9488445 }, + { "lat": 40.8755715, "lon": -73.9488935 }, + { "lat": 40.8755188, "lon": -73.9489722 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1021565814, + "bounds": { + "minlat": 40.8709310, + "minlon": -73.9524535, + "maxlat": 40.8710057, + "maxlon": -73.9522778 + }, + "nodes": [ + 9421906491, + 9421906490 + ], + "geometry": [ + { "lat": 40.8710057, "lon": -73.9524535 }, + { "lat": 40.8709310, "lon": -73.9522778 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1021569484, + "bounds": { + "minlat": 40.7563799, + "minlon": -73.9994045, + "maxlat": 40.7569803, + "maxlon": -73.9989119 + }, + "nodes": [ + 9421933505, + 9421933509, + 9421933506, + 9421933507, + 9421933508, + 8592620027 + ], + "geometry": [ + { "lat": 40.7563799, "lon": -73.9994045 }, + { "lat": 40.7564362, "lon": -73.9993606 }, + { "lat": 40.7565742, "lon": -73.9992529 }, + { "lat": 40.7566661, "lon": -73.9991680 }, + { "lat": 40.7569199, "lon": -73.9989614 }, + { "lat": 40.7569803, "lon": -73.9989119 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Hudson Boulevard East", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021569495, + "bounds": { + "minlat": 40.7606344, + "minlon": -74.0023105, + "maxlat": 40.7608190, + "maxlon": -74.0021396 + }, + "nodes": [ + 4904248095, + 9421942635, + 9421942646, + 9421942647, + 9421942648, + 9421942649, + 9421942650, + 9421942651, + 9421942652, + 9421942653, + 9421942654, + 9143547654, + 4904248094, + 4904248095 + ], + "geometry": [ + { "lat": 40.7608190, "lon": -74.0022310 }, + { "lat": 40.7607553, "lon": -74.0022807 }, + { "lat": 40.7607195, "lon": -74.0023074 }, + { "lat": 40.7607111, "lon": -74.0023105 }, + { "lat": 40.7607013, "lon": -74.0023087 }, + { "lat": 40.7606519, "lon": -74.0022869 }, + { "lat": 40.7606407, "lon": -74.0022749 }, + { "lat": 40.7606355, "lon": -74.0022638 }, + { "lat": 40.7606344, "lon": -74.0022545 }, + { "lat": 40.7606365, "lon": -74.0022466 }, + { "lat": 40.7606418, "lon": -74.0022383 }, + { "lat": 40.7607184, "lon": -74.0021835 }, + { "lat": 40.7607788, "lon": -74.0021396 }, + { "lat": 40.7608190, "lon": -74.0022310 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021569496, + "bounds": { + "minlat": 40.7607617, + "minlon": -74.0025056, + "maxlat": 40.7608330, + "maxlon": -74.0024243 + }, + "nodes": [ + 4904248522, + 9421942669, + 9421942665, + 9421942666, + 9421942670, + 9421942667, + 9421942668, + 9421942638, + 4904248084, + 4904248522 + ], + "geometry": [ + { "lat": 40.7608330, "lon": -74.0024460 }, + { "lat": 40.7608221, "lon": -74.0024562 }, + { "lat": 40.7607617, "lon": -74.0025056 }, + { "lat": 40.7607623, "lon": -74.0024879 }, + { "lat": 40.7607655, "lon": -74.0024752 }, + { "lat": 40.7607726, "lon": -74.0024652 }, + { "lat": 40.7607813, "lon": -74.0024567 }, + { "lat": 40.7608132, "lon": -74.0024328 }, + { "lat": 40.7608246, "lon": -74.0024243 }, + { "lat": 40.7608330, "lon": -74.0024460 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021569536, + "bounds": { + "minlat": 40.7560242, + "minlon": -74.0004455, + "maxlat": 40.7565953, + "maxlon": -73.9999215 + }, + "nodes": [ + 3270031031, + 6636032321, + 10691086272, + 6636032319, + 5165632724 + ], + "geometry": [ + { "lat": 40.7565953, "lon": -73.9999215 }, + { "lat": 40.7565404, "lon": -73.9999727 }, + { "lat": 40.7561101, "lon": -74.0003680 }, + { "lat": 40.7560717, "lon": -74.0004034 }, + { "lat": 40.7560242, "lon": -74.0004455 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Hudson Boulevard West", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q16980469", + "wikipedia": "en:Hudson Park and Boulevard" + } +}, +{ + "type": "way", + "id": 1021580377, + "bounds": { + "minlat": 40.7561927, + "minlon": -74.0041898, + "maxlat": 40.7569822, + "maxlon": -74.0019989 + }, + "nodes": [ + 9422037922, + 9422037924, + 9421649580, + 9421649571, + 9422037925, + 9422037926, + 9422037927, + 9422037928, + 9422037929, + 9422037930, + 9421649587, + 1241334066, + 1587437455, + 9421649591, + 9421649590, + 9422037931, + 9421649589, + 9421649588, + 2827312669, + 9421649576, + 9421649579, + 9422037922 + ], + "geometry": [ + { "lat": 40.7569822, "lon": -74.0041898 }, + { "lat": 40.7569664, "lon": -74.0041875 }, + { "lat": 40.7569495, "lon": -74.0041472 }, + { "lat": 40.7567516, "lon": -74.0036771 }, + { "lat": 40.7561963, "lon": -74.0023580 }, + { "lat": 40.7561927, "lon": -74.0023435 }, + { "lat": 40.7561927, "lon": -74.0023275 }, + { "lat": 40.7561978, "lon": -74.0023130 }, + { "lat": 40.7562063, "lon": -74.0023021 }, + { "lat": 40.7566234, "lon": -74.0019989 }, + { "lat": 40.7566327, "lon": -74.0020212 }, + { "lat": 40.7566416, "lon": -74.0020425 }, + { "lat": 40.7564401, "lon": -74.0021893 }, + { "lat": 40.7564078, "lon": -74.0022163 }, + { "lat": 40.7564001, "lon": -74.0021987 }, + { "lat": 40.7563299, "lon": -74.0022519 }, + { "lat": 40.7562591, "lon": -74.0023055 }, + { "lat": 40.7562668, "lon": -74.0023231 }, + { "lat": 40.7562151, "lon": -74.0023645 }, + { "lat": 40.7567692, "lon": -74.0036689 }, + { "lat": 40.7569629, "lon": -74.0041398 }, + { "lat": 40.7569822, "lon": -74.0041898 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021580378, + "bounds": { + "minlat": 40.7559237, + "minlon": -74.0041741, + "maxlat": 40.7577214, + "maxlon": -74.0007590 + }, + "nodes": [ + 9422037932, + 9422037933, + 9422037934, + 9422037935, + 9421649553, + 9422037936, + 9422037937, + 9422037938, + 9422037939, + 9421649570, + 9422037940, + 9421649573, + 9421649574, + 9422037976, + 9421649575, + 9421649593, + 9422037941, + 2827312671, + 9422037958, + 1587260829, + 1587260832, + 9422037961, + 1241334048, + 9422037942, + 9421657491, + 9422037943, + 9421657479, + 9421657485, + 9421657484, + 9421657483, + 9422037969, + 9421657478, + 9421657477, + 9421657471, + 9422037944, + 9422037945, + 9421657461, + 9422037946, + 9422037947, + 9421657464, + 9422037948, + 9422037949, + 9422037950, + 9421657818, + 9421657820, + 9421657782, + 9421657784, + 9422037951, + 9422037952, + 9421657438, + 11511554783, + 9422037953, + 9422037954, + 9422037955, + 9422037956, + 9421657436, + 9421649551, + 9422037957, + 9422037932 + ], + "geometry": [ + { "lat": 40.7568068, "lon": -74.0041720 }, + { "lat": 40.7568129, "lon": -74.0041741 }, + { "lat": 40.7568205, "lon": -74.0041694 }, + { "lat": 40.7568237, "lon": -74.0041640 }, + { "lat": 40.7568275, "lon": -74.0041536 }, + { "lat": 40.7568304, "lon": -74.0041430 }, + { "lat": 40.7568327, "lon": -74.0041222 }, + { "lat": 40.7568306, "lon": -74.0041015 }, + { "lat": 40.7568082, "lon": -74.0039932 }, + { "lat": 40.7566915, "lon": -74.0037200 }, + { "lat": 40.7566332, "lon": -74.0035833 }, + { "lat": 40.7566257, "lon": -74.0035903 }, + { "lat": 40.7559950, "lon": -74.0020931 }, + { "lat": 40.7564164, "lon": -74.0017907 }, + { "lat": 40.7565089, "lon": -74.0017243 }, + { "lat": 40.7565178, "lon": -74.0017438 }, + { "lat": 40.7565244, "lon": -74.0017609 }, + { "lat": 40.7565428, "lon": -74.0017469 }, + { "lat": 40.7566503, "lon": -74.0016685 }, + { "lat": 40.7567315, "lon": -74.0016093 }, + { "lat": 40.7569679, "lon": -74.0014367 }, + { "lat": 40.7570812, "lon": -74.0013541 }, + { "lat": 40.7571791, "lon": -74.0012827 }, + { "lat": 40.7571999, "lon": -74.0012676 }, + { "lat": 40.7571935, "lon": -74.0012528 }, + { "lat": 40.7571869, "lon": -74.0012375 }, + { "lat": 40.7571638, "lon": -74.0012545 }, + { "lat": 40.7571586, "lon": -74.0012422 }, + { "lat": 40.7571858, "lon": -74.0012221 }, + { "lat": 40.7571911, "lon": -74.0012344 }, + { "lat": 40.7572827, "lon": -74.0011666 }, + { "lat": 40.7576868, "lon": -74.0008675 }, + { "lat": 40.7576708, "lon": -74.0008305 }, + { "lat": 40.7577084, "lon": -74.0008040 }, + { "lat": 40.7577214, "lon": -74.0007949 }, + { "lat": 40.7577156, "lon": -74.0007803 }, + { "lat": 40.7577073, "lon": -74.0007703 }, + { "lat": 40.7576947, "lon": -74.0007622 }, + { "lat": 40.7576850, "lon": -74.0007590 }, + { "lat": 40.7576777, "lon": -74.0007609 }, + { "lat": 40.7576226, "lon": -74.0008008 }, + { "lat": 40.7576093, "lon": -74.0008177 }, + { "lat": 40.7575628, "lon": -74.0008859 }, + { "lat": 40.7571930, "lon": -74.0011559 }, + { "lat": 40.7570695, "lon": -74.0012423 }, + { "lat": 40.7565756, "lon": -74.0016035 }, + { "lat": 40.7564453, "lon": -74.0016991 }, + { "lat": 40.7561063, "lon": -74.0019471 }, + { "lat": 40.7560228, "lon": -74.0019637 }, + { "lat": 40.7559389, "lon": -74.0020278 }, + { "lat": 40.7559324, "lon": -74.0020327 }, + { "lat": 40.7559273, "lon": -74.0020414 }, + { "lat": 40.7559241, "lon": -74.0020527 }, + { "lat": 40.7559237, "lon": -74.0020728 }, + { "lat": 40.7559257, "lon": -74.0020868 }, + { "lat": 40.7559368, "lon": -74.0021156 }, + { "lat": 40.7567947, "lon": -74.0041509 }, + { "lat": 40.7568005, "lon": -74.0041637 }, + { "lat": 40.7568068, "lon": -74.0041720 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021580383, + "bounds": { + "minlat": 40.7559950, + "minlon": -74.0035903, + "maxlat": 40.7566332, + "maxlon": -74.0017469 + }, + "nodes": [ + 2827312671, + 9422037941, + 9421649592, + 9421649594, + 9422037976, + 9421649574, + 9421649573, + 9422037940, + 9422037977, + 9422037978, + 9422037979, + 9422037980, + 9422037981, + 9422037982, + 9422037983, + 9422037984, + 9422037985, + 9422037986, + 9422037987, + 9422037988, + 9422037989, + 1241334050, + 2827312671 + ], + "geometry": [ + { "lat": 40.7565428, "lon": -74.0017469 }, + { "lat": 40.7565244, "lon": -74.0017609 }, + { "lat": 40.7564332, "lon": -74.0018305 }, + { "lat": 40.7564251, "lon": -74.0018115 }, + { "lat": 40.7564164, "lon": -74.0017907 }, + { "lat": 40.7559950, "lon": -74.0020931 }, + { "lat": 40.7566257, "lon": -74.0035903 }, + { "lat": 40.7566332, "lon": -74.0035833 }, + { "lat": 40.7560802, "lon": -74.0022698 }, + { "lat": 40.7560706, "lon": -74.0022374 }, + { "lat": 40.7560634, "lon": -74.0022009 }, + { "lat": 40.7560642, "lon": -74.0021738 }, + { "lat": 40.7560685, "lon": -74.0021460 }, + { "lat": 40.7560749, "lon": -74.0021175 }, + { "lat": 40.7560837, "lon": -74.0020918 }, + { "lat": 40.7560962, "lon": -74.0020683 }, + { "lat": 40.7561146, "lon": -74.0020479 }, + { "lat": 40.7561404, "lon": -74.0020254 }, + { "lat": 40.7563293, "lon": -74.0018882 }, + { "lat": 40.7564982, "lon": -74.0018488 }, + { "lat": 40.7565453, "lon": -74.0018119 }, + { "lat": 40.7565360, "lon": -74.0017898 }, + { "lat": 40.7565428, "lon": -74.0017469 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021580398, + "bounds": { + "minlat": 40.7600259, + "minlon": -74.0027908, + "maxlat": 40.7601171, + "maxlon": -74.0027121 + }, + "nodes": [ + 4903972487, + 9422038021, + 9422038022, + 9422038023, + 9422038024, + 9422038025, + 9422038026, + 9422038027, + 9422038028, + 9422038029, + 4903972470, + 4903972487 + ], + "geometry": [ + { "lat": 40.7600486, "lon": -74.0027908 }, + { "lat": 40.7600693, "lon": -74.0027767 }, + { "lat": 40.7601033, "lon": -74.0027535 }, + { "lat": 40.7601133, "lon": -74.0027447 }, + { "lat": 40.7601171, "lon": -74.0027331 }, + { "lat": 40.7601157, "lon": -74.0027202 }, + { "lat": 40.7601085, "lon": -74.0027124 }, + { "lat": 40.7600803, "lon": -74.0027121 }, + { "lat": 40.7600620, "lon": -74.0027168 }, + { "lat": 40.7600467, "lon": -74.0027242 }, + { "lat": 40.7600259, "lon": -74.0027373 }, + { "lat": 40.7600486, "lon": -74.0027908 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021580402, + "bounds": { + "minlat": 40.7600878, + "minlon": -74.0029388, + "maxlat": 40.7601849, + "maxlon": -74.0028655 + }, + "nodes": [ + 4903972497, + 9422038048, + 9422038020, + 9422038049, + 9422038040, + 9422038041, + 9422038042, + 9422038043, + 9422038044, + 9422038019, + 4903972463, + 9422038030, + 9422038031, + 4903972497 + ], + "geometry": [ + { "lat": 40.7601149, "lon": -74.0029295 }, + { "lat": 40.7601191, "lon": -74.0029388 }, + { "lat": 40.7601341, "lon": -74.0029280 }, + { "lat": 40.7601849, "lon": -74.0028912 }, + { "lat": 40.7601814, "lon": -74.0028824 }, + { "lat": 40.7601759, "lon": -74.0028736 }, + { "lat": 40.7601700, "lon": -74.0028670 }, + { "lat": 40.7601638, "lon": -74.0028655 }, + { "lat": 40.7601552, "lon": -74.0028664 }, + { "lat": 40.7601191, "lon": -74.0028925 }, + { "lat": 40.7600878, "lon": -74.0029152 }, + { "lat": 40.7600978, "lon": -74.0029130 }, + { "lat": 40.7601080, "lon": -74.0029184 }, + { "lat": 40.7601149, "lon": -74.0029295 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021580403, + "bounds": { + "minlat": 40.7601378, + "minlon": -74.0030136, + "maxlat": 40.7602150, + "maxlon": -74.0029386 + }, + "nodes": [ + 4903978403, + 9422038017, + 9422038045, + 9422038046, + 9422038018, + 9422038047, + 4903978406, + 4903978403 + ], + "geometry": [ + { "lat": 40.7601493, "lon": -74.0030136 }, + { "lat": 40.7601661, "lon": -74.0030017 }, + { "lat": 40.7602150, "lon": -74.0029668 }, + { "lat": 40.7602034, "lon": -74.0029386 }, + { "lat": 40.7601541, "lon": -74.0029738 }, + { "lat": 40.7601378, "lon": -74.0029855 }, + { "lat": 40.7601427, "lon": -74.0029976 }, + { "lat": 40.7601493, "lon": -74.0030136 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021580404, + "bounds": { + "minlat": 40.7603494, + "minlon": -74.0030084, + "maxlat": 40.7607074, + "maxlon": -74.0027198 + }, + "nodes": [ + 9422038053, + 9422038054, + 9422038055, + 9422038056, + 9422038057, + 9422038058, + 8261122958, + 9422038059, + 9422038060, + 9422038061, + 9422038062, + 9422038063, + 9422038064, + 9422038065, + 9422038066, + 9422038067, + 9422038068, + 9422038069, + 9422038070, + 9422038071, + 5538485408, + 9422038053 + ], + "geometry": [ + { "lat": 40.7604118, "lon": -74.0030005 }, + { "lat": 40.7603975, "lon": -74.0030061 }, + { "lat": 40.7603796, "lon": -74.0030084 }, + { "lat": 40.7603632, "lon": -74.0030065 }, + { "lat": 40.7603574, "lon": -74.0030030 }, + { "lat": 40.7603537, "lon": -74.0029964 }, + { "lat": 40.7603509, "lon": -74.0029898 }, + { "lat": 40.7603494, "lon": -74.0029742 }, + { "lat": 40.7603510, "lon": -74.0029630 }, + { "lat": 40.7603543, "lon": -74.0029574 }, + { "lat": 40.7603613, "lon": -74.0029512 }, + { "lat": 40.7606760, "lon": -74.0027212 }, + { "lat": 40.7606851, "lon": -74.0027198 }, + { "lat": 40.7606938, "lon": -74.0027225 }, + { "lat": 40.7607015, "lon": -74.0027318 }, + { "lat": 40.7607074, "lon": -74.0027433 }, + { "lat": 40.7607060, "lon": -74.0027594 }, + { "lat": 40.7607001, "lon": -74.0027788 }, + { "lat": 40.7606896, "lon": -74.0027907 }, + { "lat": 40.7606781, "lon": -74.0028046 }, + { "lat": 40.7605259, "lon": -74.0029201 }, + { "lat": 40.7604118, "lon": -74.0030005 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1021760833, + "bounds": { + "minlat": 40.7561504, + "minlon": -74.0040451, + "maxlat": 40.7564463, + "maxlon": -74.0034181 + }, + "nodes": [ + 8261044787, + 3091410976, + 9423680776, + 9423680775, + 9423680774, + 9423680773, + 9423680772, + 9423680771, + 9423680770, + 9423680769, + 9423680768, + 9423680767, + 9423680766, + 9423680765, + 9423680801, + 9423680756, + 9423680746, + 9423680784, + 9423680783, + 9423680782, + 9423680781, + 9423680780, + 9423680779, + 9423680778, + 9423680777, + 9423680728, + 8261044787 + ], + "geometry": [ + { "lat": 40.7564463, "lon": -74.0040372 }, + { "lat": 40.7564282, "lon": -74.0040414 }, + { "lat": 40.7564121, "lon": -74.0040451 }, + { "lat": 40.7564054, "lon": -74.0040040 }, + { "lat": 40.7563920, "lon": -74.0039435 }, + { "lat": 40.7563764, "lon": -74.0038851 }, + { "lat": 40.7563567, "lon": -74.0038262 }, + { "lat": 40.7563277, "lon": -74.0037510 }, + { "lat": 40.7563003, "lon": -74.0036901 }, + { "lat": 40.7562685, "lon": -74.0036321 }, + { "lat": 40.7562373, "lon": -74.0035829 }, + { "lat": 40.7561969, "lon": -74.0035215 }, + { "lat": 40.7561504, "lon": -74.0034641 }, + { "lat": 40.7562216, "lon": -74.0034181 }, + { "lat": 40.7563062, "lon": -74.0036167 }, + { "lat": 40.7563214, "lon": -74.0036309 }, + { "lat": 40.7563383, "lon": -74.0036469 }, + { "lat": 40.7563592, "lon": -74.0036959 }, + { "lat": 40.7563391, "lon": -74.0037121 }, + { "lat": 40.7563636, "lon": -74.0037665 }, + { "lat": 40.7563807, "lon": -74.0038059 }, + { "lat": 40.7563962, "lon": -74.0038434 }, + { "lat": 40.7564106, "lon": -74.0038851 }, + { "lat": 40.7564224, "lon": -74.0039252 }, + { "lat": 40.7564313, "lon": -74.0039605 }, + { "lat": 40.7564401, "lon": -74.0040013 }, + { "lat": 40.7564463, "lon": -74.0040372 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021760856, + "bounds": { + "minlat": 40.7538642, + "minlon": -74.0062153, + "maxlat": 40.7550423, + "maxlon": -74.0036176 + }, + "nodes": [ + 9423683507, + 9423683520, + 9423683508, + 9423683509, + 9423683510, + 9423683511, + 9423683512, + 9423683513, + 11507256018, + 9423683514, + 9423683519, + 9423683515, + 9423683516, + 9423683517, + 9423683518 + ], + "geometry": [ + { "lat": 40.7550423, "lon": -74.0062153 }, + { "lat": 40.7549894, "lon": -74.0060882 }, + { "lat": 40.7545685, "lon": -74.0050864 }, + { "lat": 40.7545371, "lon": -74.0050242 }, + { "lat": 40.7544995, "lon": -74.0049757 }, + { "lat": 40.7544605, "lon": -74.0049290 }, + { "lat": 40.7544295, "lon": -74.0048798 }, + { "lat": 40.7544008, "lon": -74.0048195 }, + { "lat": 40.7540599, "lon": -74.0039960 }, + { "lat": 40.7540005, "lon": -74.0038525 }, + { "lat": 40.7539811, "lon": -74.0038168 }, + { "lat": 40.7539588, "lon": -74.0037833 }, + { "lat": 40.7539153, "lon": -74.0037217 }, + { "lat": 40.7538907, "lon": -74.0036791 }, + { "lat": 40.7538642, "lon": -74.0036176 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1021760859, + "bounds": { + "minlat": 40.7542825, + "minlon": -74.0063844, + "maxlat": 40.7548063, + "maxlon": -74.0060114 + }, + "nodes": [ + 9423683538, + 9423683548, + 9423683557, + 9423683539, + 9423683540, + 9423683541, + 9423683542, + 9423683543, + 9423683544, + 9423683545, + 9423683558, + 9423683547, + 9423683546 + ], + "geometry": [ + { "lat": 40.7548063, "lon": -74.0063844 }, + { "lat": 40.7547528, "lon": -74.0062599 }, + { "lat": 40.7547466, "lon": -74.0062453 }, + { "lat": 40.7547180, "lon": -74.0061791 }, + { "lat": 40.7546799, "lon": -74.0061051 }, + { "lat": 40.7546391, "lon": -74.0060527 }, + { "lat": 40.7546047, "lon": -74.0060226 }, + { "lat": 40.7545708, "lon": -74.0060114 }, + { "lat": 40.7545417, "lon": -74.0060184 }, + { "lat": 40.7545163, "lon": -74.0060324 }, + { "lat": 40.7543486, "lon": -74.0061517 }, + { "lat": 40.7543322, "lon": -74.0061633 }, + { "lat": 40.7542825, "lon": -74.0061976 } + ], + "tags": { + "access": "permit", + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1021760892, + "bounds": { + "minlat": 40.7528506, + "minlon": -74.0028130, + "maxlat": 40.7529718, + "maxlon": -74.0027093 + }, + "nodes": [ + 9423683690, + 11318413778, + 9423683691, + 11511992544, + 9423683689, + 11511992543, + 11315890959, + 11318413779, + 11315890950 + ], + "geometry": [ + { "lat": 40.7529718, "lon": -74.0027475 }, + { "lat": 40.7529287, "lon": -74.0027791 }, + { "lat": 40.7529089, "lon": -74.0027937 }, + { "lat": 40.7528951, "lon": -74.0027999 }, + { "lat": 40.7528506, "lon": -74.0028130 }, + { "lat": 40.7528825, "lon": -74.0027662 }, + { "lat": 40.7528926, "lon": -74.0027551 }, + { "lat": 40.7529129, "lon": -74.0027407 }, + { "lat": 40.7529570, "lon": -74.0027093 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1021760893, + "bounds": { + "minlat": 40.7528920, + "minlon": -74.0029142, + "maxlat": 40.7530059, + "maxlon": -74.0028296 + }, + "nodes": [ + 9423683692, + 9423683694, + 11315890952, + 9423683695 + ], + "geometry": [ + { "lat": 40.7528920, "lon": -74.0029142 }, + { "lat": 40.7529429, "lon": -74.0028764 }, + { "lat": 40.7529649, "lon": -74.0028601 }, + { "lat": 40.7530059, "lon": -74.0028296 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1021760894, + "bounds": { + "minlat": 40.7530059, + "minlon": -74.0028296, + "maxlat": 40.7530734, + "maxlon": -74.0027795 + }, + "nodes": [ + 9423683695, + 9423683696 + ], + "geometry": [ + { "lat": 40.7530059, "lon": -74.0028296 }, + { "lat": 40.7530734, "lon": -74.0027795 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1021760895, + "bounds": { + "minlat": 40.7530734, + "minlon": -74.0027795, + "maxlat": 40.7530951, + "maxlon": -74.0027637 + }, + "nodes": [ + 9423683696, + 9423683693 + ], + "geometry": [ + { "lat": 40.7530734, "lon": -74.0027795 }, + { "lat": 40.7530951, "lon": -74.0027637 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1021949718, + "bounds": { + "minlat": 40.7293730, + "minlon": -73.9863742, + "maxlat": 40.7303818, + "maxlon": -73.9839987 + }, + "nodes": [ + 42454994, + 8309479286, + 13205862067, + 4236104523, + 13205862066 + ], + "geometry": [ + { "lat": 40.7293730, "lon": -73.9839987 }, + { "lat": 40.7294356, "lon": -73.9841490 }, + { "lat": 40.7303133, "lon": -73.9862130 }, + { "lat": 40.7303315, "lon": -73.9862557 }, + { "lat": 40.7303818, "lon": -73.9863742 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 11th Street", + "name:el": "Ανατολική 11η Οδός", + "name:ru": "Восточная 11-я стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021949719, + "bounds": { + "minlat": 40.7303818, + "minlon": -73.9863742, + "maxlat": 40.7310190, + "maxlon": -73.9859090 + }, + "nodes": [ + 13205862064, + 8309479600, + 42442862, + 8309479268, + 13205862066 + ], + "geometry": [ + { "lat": 40.7310190, "lon": -73.9859090 }, + { "lat": 40.7309644, "lon": -73.9859490 }, + { "lat": 40.7304799, "lon": -73.9863036 }, + { "lat": 40.7304353, "lon": -73.9863363 }, + { "lat": 40.7303818, "lon": -73.9863742 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021949720, + "bounds": { + "minlat": 40.7287790, + "minlon": -73.9868120, + "maxlat": 40.7297790, + "maxlon": -73.9844432 + }, + "nodes": [ + 42430898, + 4236104524, + 12179524700, + 8309479511, + 42430903 + ], + "geometry": [ + { "lat": 40.7297790, "lon": -73.9868120 }, + { "lat": 40.7297260, "lon": -73.9866848 }, + { "lat": 40.7288698, "lon": -73.9846521 }, + { "lat": 40.7288408, "lon": -73.9845838 }, + { "lat": 40.7287790, "lon": -73.9844432 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 10th Street", + "name:ru": "Восточная 10-я стрит", + "name_1": "East 10 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021949721, + "bounds": { + "minlat": 40.7297790, + "minlon": -73.9868120, + "maxlat": 40.7303818, + "maxlon": -73.9863742 + }, + "nodes": [ + 13205862066, + 4236104525, + 12179524699, + 3420766638, + 42430898 + ], + "geometry": [ + { "lat": 40.7303818, "lon": -73.9863742 }, + { "lat": 40.7303223, "lon": -73.9864184 }, + { "lat": 40.7298814, "lon": -73.9867377 }, + { "lat": 40.7298373, "lon": -73.9867697 }, + { "lat": 40.7297790, "lon": -73.9868120 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021949722, + "bounds": { + "minlat": 40.7292016, + "minlon": -73.9886967, + "maxlat": 40.7298259, + "maxlon": -73.9872326 + }, + "nodes": [ + 42442857, + 4235738196, + 11032214441, + 4235734223 + ], + "geometry": [ + { "lat": 40.7292016, "lon": -73.9872326 }, + { "lat": 40.7292587, "lon": -73.9873611 }, + { "lat": 40.7296388, "lon": -73.9882570 }, + { "lat": 40.7298259, "lon": -73.9886967 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 9th Street", + "name:ru": "Восточная 9-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021949723, + "bounds": { + "minlat": 40.7292016, + "minlon": -73.9872326, + "maxlat": 40.7297790, + "maxlon": -73.9868120 + }, + "nodes": [ + 42430898, + 3420766637, + 12179582423, + 3420766636, + 42442857 + ], + "geometry": [ + { "lat": 40.7297790, "lon": -73.9868120 }, + { "lat": 40.7297240, "lon": -73.9868521 }, + { "lat": 40.7292963, "lon": -73.9871632 }, + { "lat": 40.7292577, "lon": -73.9871912 }, + { "lat": 40.7292016, "lon": -73.9872326 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021949724, + "bounds": { + "minlat": 40.7286043, + "minlon": -73.9876651, + "maxlat": 40.7292016, + "maxlon": -73.9872326 + }, + "nodes": [ + 42442857, + 3420766635, + 12509877250, + 3420766634, + 42434142 + ], + "geometry": [ + { "lat": 40.7292016, "lon": -73.9872326 }, + { "lat": 40.7291349, "lon": -73.9872808 }, + { "lat": 40.7287554, "lon": -73.9875557 }, + { "lat": 40.7286560, "lon": -73.9876277 }, + { "lat": 40.7286043, "lon": -73.9876651 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021949725, + "bounds": { + "minlat": 40.7279851, + "minlon": -73.9881196, + "maxlat": 40.7286043, + "maxlon": -73.9876651 + }, + "nodes": [ + 42434142, + 3420766633, + 3420766632, + 42434201 + ], + "geometry": [ + { "lat": 40.7286043, "lon": -73.9876651 }, + { "lat": 40.7285447, "lon": -73.9877090 }, + { "lat": 40.7280430, "lon": -73.9880771 }, + { "lat": 40.7279851, "lon": -73.9881196 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021949726, + "bounds": { + "minlat": 40.7279851, + "minlon": -73.9903653, + "maxlat": 40.7289384, + "maxlon": -73.9881196 + }, + "nodes": [ + 42434201, + 8309479215, + 5481937338, + 42434197, + 12179562777, + 8309479190, + 42434196 + ], + "geometry": [ + { "lat": 40.7279851, "lon": -73.9881196 }, + { "lat": 40.7280376, "lon": -73.9882418 }, + { "lat": 40.7285527, "lon": -73.9894521 }, + { "lat": 40.7287000, "lon": -73.9898044 }, + { "lat": 40.7288558, "lon": -73.9901727 }, + { "lat": 40.7288759, "lon": -73.9902202 }, + { "lat": 40.7289384, "lon": -73.9903653 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 7th Street", + "name:ru": "Восточная 7-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021949727, + "bounds": { + "minlat": 40.7274076, + "minlon": -73.9885349, + "maxlat": 40.7279851, + "maxlon": -73.9881196 + }, + "nodes": [ + 42434201, + 3420766631, + 8309479219, + 42442851 + ], + "geometry": [ + { "lat": 40.7279851, "lon": -73.9881196 }, + { "lat": 40.7279296, "lon": -73.9881596 }, + { "lat": 40.7274579, "lon": -73.9884987 }, + { "lat": 40.7274076, "lon": -73.9885349 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021949728, + "bounds": { + "minlat": 40.7274076, + "minlon": -73.9907884, + "maxlat": 40.7283561, + "maxlon": -73.9885349 + }, + "nodes": [ + 4015190382, + 8309479198, + 42443799, + 8309479221, + 42442851 + ], + "geometry": [ + { "lat": 40.7283561, "lon": -73.9907884 }, + { "lat": 40.7283017, "lon": -73.9906468 }, + { "lat": 40.7281239, "lon": -73.9902269 }, + { "lat": 40.7274646, "lon": -73.9886696 }, + { "lat": 40.7274076, "lon": -73.9885349 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 6th Street", + "name:ru": "Восточная 6-я стрит", + "name_1": "East 6 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021949729, + "bounds": { + "minlat": 40.7267997, + "minlon": -73.9889783, + "maxlat": 40.7274076, + "maxlon": -73.9885349 + }, + "nodes": [ + 42442851, + 4275822495, + 7977873364, + 42442850 + ], + "geometry": [ + { "lat": 40.7274076, "lon": -73.9885349 }, + { "lat": 40.7273489, "lon": -73.9885776 }, + { "lat": 40.7268456, "lon": -73.9889439 }, + { "lat": 40.7267997, "lon": -73.9889783 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021949730, + "bounds": { + "minlat": 40.7267997, + "minlon": -73.9912289, + "maxlat": 40.7277529, + "maxlon": -73.9889783 + }, + "nodes": [ + 42442850, + 7977873367, + 10223156262, + 4577294519, + 12179562783, + 8309479289, + 1773121034 + ], + "geometry": [ + { "lat": 40.7267997, "lon": -73.9889783 }, + { "lat": 40.7268497, "lon": -73.9890983 }, + { "lat": 40.7275413, "lon": -73.9907454 }, + { "lat": 40.7276504, "lon": -73.9909931 }, + { "lat": 40.7276719, "lon": -73.9910425 }, + { "lat": 40.7276935, "lon": -73.9910918 }, + { "lat": 40.7277529, "lon": -73.9912289 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 5th Street", + "name:ru": "Восточная 5-я стрит", + "name_1": "East 5 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021949731, + "bounds": { + "minlat": 40.7261880, + "minlon": -73.9894290, + "maxlat": 40.7267997, + "maxlon": -73.9889783 + }, + "nodes": [ + 42442850, + 7977873366, + 7977873355, + 42442848 + ], + "geometry": [ + { "lat": 40.7267997, "lon": -73.9889783 }, + { "lat": 40.7267298, "lon": -73.9890297 }, + { "lat": 40.7262377, "lon": -73.9893925 }, + { "lat": 40.7261880, "lon": -73.9894290 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021949732, + "bounds": { + "minlat": 40.7252030, + "minlon": -73.9894290, + "maxlat": 40.7261880, + "maxlon": -73.9870530 + }, + "nodes": [ + 42442848, + 4376122102, + 7977873354, + 7977873313, + 3834459537, + 42455867 + ], + "geometry": [ + { "lat": 40.7261880, "lon": -73.9894290 }, + { "lat": 40.7261557, "lon": -73.9893510 }, + { "lat": 40.7261370, "lon": -73.9893059 }, + { "lat": 40.7252627, "lon": -73.9871970 }, + { "lat": 40.7252462, "lon": -73.9871571 }, + { "lat": 40.7252030, "lon": -73.9870530 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 4th Street", + "name:ru": "Восточная 4-я стрит", + "name_1": "East 4 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021949733, + "bounds": { + "minlat": 40.7255809, + "minlon": -73.9898675, + "maxlat": 40.7261880, + "maxlon": -73.9894290 + }, + "nodes": [ + 42442848, + 7977873357, + 7977873345, + 42437333 + ], + "geometry": [ + { "lat": 40.7261880, "lon": -73.9894290 }, + { "lat": 40.7261341, "lon": -73.9894682 }, + { "lat": 40.7256413, "lon": -73.9898231 }, + { "lat": 40.7255809, "lon": -73.9898675 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1021949734, + "bounds": { + "minlat": 40.7255809, + "minlon": -73.9918457, + "maxlat": 40.7264229, + "maxlon": -73.9898675 + }, + "nodes": [ + 42437333, + 7977873348, + 10679724539, + 12187431464, + 8309479102, + 1773084405, + 42431168 + ], + "geometry": [ + { "lat": 40.7255809, "lon": -73.9898675 }, + { "lat": 40.7256361, "lon": -73.9899971 }, + { "lat": 40.7259058, "lon": -73.9906308 }, + { "lat": 40.7263071, "lon": -73.9915736 }, + { "lat": 40.7263334, "lon": -73.9916355 }, + { "lat": 40.7263820, "lon": -73.9917495 }, + { "lat": 40.7264229, "lon": -73.9918457 } + ], + "tags": { + "alt_name:ko": "이스트 3번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 3rd Street", + "name:ko": "이스트 3rd 스트리트", + "name:ru": "Восточная 3-я стрит", + "name_1": "East 3 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1021949735, + "bounds": { + "minlat": 40.7249299, + "minlon": -73.9903454, + "maxlat": 40.7252011, + "maxlon": -73.9901455 + }, + "nodes": [ + 775996460, + 7977873335, + 42442843 + ], + "geometry": [ + { "lat": 40.7252011, "lon": -73.9901455 }, + { "lat": 40.7249890, "lon": -73.9903021 }, + { "lat": 40.7249299, "lon": -73.9903454 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:el": "2η Λεωφόρος", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1022060921, + "bounds": { + "minlat": 40.8522907, + "minlon": -73.9385188, + "maxlat": 40.8529137, + "maxlon": -73.9377979 + }, + "nodes": [ + 9426398770, + 9426398771, + 9426398772, + 9426398773, + 9426398774, + 9426398775, + 9426398776, + 9426398777, + 9426398778, + 9426398779, + 9426278449, + 9426398780, + 9426398781, + 9426398782, + 9426398783, + 9426398784, + 9426398794, + 9426398801, + 9426398795, + 9426398800, + 9426398796, + 9426398797, + 9426398799, + 9426398798, + 9426398770 + ], + "geometry": [ + { "lat": 40.8523224, "lon": -73.9380671 }, + { "lat": 40.8522907, "lon": -73.9379769 }, + { "lat": 40.8523883, "lon": -73.9379200 }, + { "lat": 40.8524175, "lon": -73.9379352 }, + { "lat": 40.8526901, "lon": -73.9378497 }, + { "lat": 40.8526924, "lon": -73.9378550 }, + { "lat": 40.8527048, "lon": -73.9378519 }, + { "lat": 40.8527105, "lon": -73.9378200 }, + { "lat": 40.8527694, "lon": -73.9377979 }, + { "lat": 40.8527731, "lon": -73.9378289 }, + { "lat": 40.8527828, "lon": -73.9378766 }, + { "lat": 40.8527915, "lon": -73.9379178 }, + { "lat": 40.8527557, "lon": -73.9379731 }, + { "lat": 40.8527711, "lon": -73.9381001 }, + { "lat": 40.8529137, "lon": -73.9382155 }, + { "lat": 40.8528400, "lon": -73.9382972 }, + { "lat": 40.8528371, "lon": -73.9383252 }, + { "lat": 40.8528465, "lon": -73.9383884 }, + { "lat": 40.8528502, "lon": -73.9384126 }, + { "lat": 40.8527211, "lon": -73.9384513 }, + { "lat": 40.8524956, "lon": -73.9385188 }, + { "lat": 40.8524194, "lon": -73.9381061 }, + { "lat": 40.8523803, "lon": -73.9381048 }, + { "lat": 40.8523484, "lon": -73.9380895 }, + { "lat": 40.8523224, "lon": -73.9380671 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1022184080, + "bounds": { + "minlat": 40.7478634, + "minlon": -73.9929048, + "maxlat": 40.7484690, + "maxlon": -73.9924631 + }, + "nodes": [ + 42435420, + 10168911565, + 10168911575, + 42427805 + ], + "geometry": [ + { "lat": 40.7484690, "lon": -73.9924631 }, + { "lat": 40.7484118, "lon": -73.9925048 }, + { "lat": 40.7479141, "lon": -73.9928678 }, + { "lat": 40.7478634, "lon": -73.9929048 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1022184081, + "bounds": { + "minlat": 40.7466658, + "minlon": -73.9929048, + "maxlat": 40.7478634, + "maxlon": -73.9900676 + }, + "nodes": [ + 42427797, + 10168911557, + 4493840503, + 10168911576, + 42427805 + ], + "geometry": [ + { "lat": 40.7466658, "lon": -73.9900676 }, + { "lat": 40.7467193, "lon": -73.9901940 }, + { "lat": 40.7469638, "lon": -73.9907735 }, + { "lat": 40.7478111, "lon": -73.9927820 }, + { "lat": 40.7478634, "lon": -73.9929048 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1022184082, + "bounds": { + "minlat": 40.7475340, + "minlon": -73.9931560, + "maxlat": 40.7478634, + "maxlon": -73.9929048 + }, + "nodes": [ + 42427805, + 10168911573, + 9582526980 + ], + "geometry": [ + { "lat": 40.7478634, "lon": -73.9929048 }, + { "lat": 40.7477955, "lon": -73.9929543 }, + { "lat": 40.7475340, "lon": -73.9931560 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1022184083, + "bounds": { + "minlat": 40.7460380, + "minlon": -73.9933621, + "maxlat": 40.7472363, + "maxlon": -73.9905180 + }, + "nodes": [ + 42438547, + 10168911606, + 10168911591, + 42430282 + ], + "geometry": [ + { "lat": 40.7472363, "lon": -73.9933621 }, + { "lat": 40.7471849, "lon": -73.9932402 }, + { "lat": 40.7460941, "lon": -73.9906514 }, + { "lat": 40.7460380, "lon": -73.9905180 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 28th Street", + "name:ru": "Западная 28-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1022184084, + "bounds": { + "minlat": 40.7472363, + "minlon": -73.9933621, + "maxlat": 40.7474118, + "maxlon": -73.9932393 + }, + "nodes": [ + 9427432088, + 6899374959, + 10168911608, + 42438547 + ], + "geometry": [ + { "lat": 40.7474118, "lon": -73.9932393 }, + { "lat": 40.7473034, "lon": -73.9933132 }, + { "lat": 40.7472939, "lon": -73.9933201 }, + { "lat": 40.7472363, "lon": -73.9933621 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|through||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1022205621, + "bounds": { + "minlat": 40.8638989, + "minlon": -73.9948890, + "maxlat": 40.8648828, + "maxlon": -73.9940645 + }, + "nodes": [ + 103229124, + 8076363793, + 8076363794, + 103229129, + 103229128, + 8076363795, + 103229127, + 103229126, + 103229125 + ], + "geometry": [ + { "lat": 40.8638989, "lon": -73.9948890 }, + { "lat": 40.8640079, "lon": -73.9948281 }, + { "lat": 40.8641682, "lon": -73.9947381 }, + { "lat": 40.8644267, "lon": -73.9945415 }, + { "lat": 40.8644818, "lon": -73.9944855 }, + { "lat": 40.8645976, "lon": -73.9943710 }, + { "lat": 40.8646608, "lon": -73.9943065 }, + { "lat": 40.8647466, "lon": -73.9941859 }, + { "lat": 40.8648828, "lon": -73.9940645 } + ], + "tags": { + "highway": "residential", + "name": "Station Parkway", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Station", + "tiger:name_type": "Pky", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1022205622, + "bounds": { + "minlat": 40.8633490, + "minlon": -73.9952683, + "maxlat": 40.8638989, + "maxlon": -73.9948890 + }, + "nodes": [ + 103229124, + 5767726833, + 9427526784, + 5767726834, + 5767726835, + 5767726836, + 5767726837, + 103229114 + ], + "geometry": [ + { "lat": 40.8638989, "lon": -73.9948890 }, + { "lat": 40.8638436, "lon": -73.9949659 }, + { "lat": 40.8637783, "lon": -73.9950511 }, + { "lat": 40.8637260, "lon": -73.9951192 }, + { "lat": 40.8636380, "lon": -73.9952153 }, + { "lat": 40.8635617, "lon": -73.9952582 }, + { "lat": 40.8634545, "lon": -73.9952556 }, + { "lat": 40.8633490, "lon": -73.9952683 } + ], + "tags": { + "highway": "residential", + "name": "Station Parkway", + "oneway": "yes", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Station", + "tiger:name_type": "Pky", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1022362658, + "bounds": { + "minlat": 40.8556188, + "minlon": -73.9377867, + "maxlat": 40.8557845, + "maxlon": -73.9373235 + }, + "nodes": [ + 9429828944, + 9429067556, + 9429067557 + ], + "geometry": [ + { "lat": 40.8557845, "lon": -73.9377867 }, + { "lat": 40.8557574, "lon": -73.9377156 }, + { "lat": 40.8556188, "lon": -73.9373235 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1022427093, + "bounds": { + "minlat": 40.8614722, + "minlon": -73.9337955, + "maxlat": 40.8620196, + "maxlon": -73.9332050 + }, + "nodes": [ + 9429656938, + 9429656939, + 9429656940, + 9429656941, + 9429656942, + 9429656943, + 9429656944, + 9429656945, + 9429656953, + 9429656946, + 2895436493, + 2895436486, + 9429656947, + 9429656948, + 9429656949, + 9429656950, + 9429656951, + 3808466567, + 9429656938 + ], + "geometry": [ + { "lat": 40.8614722, "lon": -73.9336540 }, + { "lat": 40.8615197, "lon": -73.9337495 }, + { "lat": 40.8615933, "lon": -73.9337955 }, + { "lat": 40.8617164, "lon": -73.9337477 }, + { "lat": 40.8619379, "lon": -73.9335743 }, + { "lat": 40.8620196, "lon": -73.9334239 }, + { "lat": 40.8620075, "lon": -73.9333151 }, + { "lat": 40.8619573, "lon": -73.9332912 }, + { "lat": 40.8619371, "lon": -73.9332970 }, + { "lat": 40.8618931, "lon": -73.9333098 }, + { "lat": 40.8618722, "lon": -73.9332050 }, + { "lat": 40.8618458, "lon": -73.9332114 }, + { "lat": 40.8618550, "lon": -73.9332301 }, + { "lat": 40.8616877, "lon": -73.9333107 }, + { "lat": 40.8615478, "lon": -73.9333965 }, + { "lat": 40.8615277, "lon": -73.9334496 }, + { "lat": 40.8615779, "lon": -73.9335734 }, + { "lat": 40.8615214, "lon": -73.9336165 }, + { "lat": 40.8614722, "lon": -73.9336540 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Linden Terrace", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1022549184, + "bounds": { + "minlat": 40.7166109, + "minlon": -74.0091078, + "maxlat": 40.7169280, + "maxlon": -74.0083863 + }, + "nodes": [ + 42430571, + 8304498505, + 8312361687, + 42430557 + ], + "geometry": [ + { "lat": 40.7169280, "lon": -74.0091078 }, + { "lat": 40.7168839, "lon": -74.0090162 }, + { "lat": 40.7166503, "lon": -74.0084703 }, + { "lat": 40.7166109, "lon": -74.0083863 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Duane Street", + "name:etymology:wikidata": "Q339274", + "name:ko": "두에인 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1022549185, + "bounds": { + "minlat": 40.7166109, + "minlon": -74.0083863, + "maxlat": 40.7176762, + "maxlon": -74.0075505 + }, + "nodes": [ + 42452816, + 8312361694, + 8312361689, + 42429832, + 8312361690, + 8312361685, + 42430557 + ], + "geometry": [ + { "lat": 40.7176762, "lon": -74.0075505 }, + { "lat": 40.7176151, "lon": -74.0075998 }, + { "lat": 40.7171667, "lon": -74.0079542 }, + { "lat": 40.7171326, "lon": -74.0079807 }, + { "lat": 40.7171031, "lon": -74.0080038 }, + { "lat": 40.7166551, "lon": -74.0083518 }, + { "lat": 40.7166109, "lon": -74.0083863 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 1022549186, + "bounds": { + "minlat": 40.7163480, + "minlon": -74.0085910, + "maxlat": 40.7166109, + "maxlon": -74.0083863 + }, + "nodes": [ + 42430557, + 8312361686, + 9430719481 + ], + "geometry": [ + { "lat": 40.7166109, "lon": -74.0083863 }, + { "lat": 40.7165432, "lon": -74.0084374 }, + { "lat": 40.7163480, "lon": -74.0085910 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 1022553086, + "bounds": { + "minlat": 40.7078287, + "minlon": -73.9567263, + "maxlat": 40.7078693, + "maxlon": -73.9561856 + }, + "nodes": [ + 11055055719, + 5849451132, + 42474684 + ], + "geometry": [ + { "lat": 40.7078693, "lon": -73.9567263 }, + { "lat": 40.7078294, "lon": -73.9563810 }, + { "lat": 40.7078287, "lon": -73.9561856 } + ], + "tags": { + "highway": "pedestrian", + "name": "South 9th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1022553087, + "bounds": { + "minlat": 40.7078790, + "minlon": -73.9568080, + "maxlat": 40.7079556, + "maxlon": -73.9567629 + }, + "nodes": [ + 42474681, + 9985920606, + 11055051872 + ], + "geometry": [ + { "lat": 40.7078790, "lon": -73.9568080 }, + { "lat": 40.7079323, "lon": -73.9567771 }, + { "lat": 40.7079556, "lon": -73.9567629 } + ], + "tags": { + "covered": "yes", + "hgv": "local", + "highway": "secondary", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1022602200, + "bounds": { + "minlat": 40.7230651, + "minlon": -73.9399056, + "maxlat": 40.7233880, + "maxlon": -73.9393242 + }, + "nodes": [ + 42476669, + 9929558945, + 9431197065 + ], + "geometry": [ + { "lat": 40.7233880, "lon": -73.9393242 }, + { "lat": 40.7233348, "lon": -73.9394176 }, + { "lat": 40.7230651, "lon": -73.9399056 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1022602201, + "bounds": { + "minlat": 40.7228790, + "minlon": -73.9402304, + "maxlat": 40.7230651, + "maxlon": -73.9399056 + }, + "nodes": [ + 9431197065, + 42476663 + ], + "geometry": [ + { "lat": 40.7230651, "lon": -73.9399056 }, + { "lat": 40.7228790, "lon": -73.9402304 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1022700867, + "bounds": { + "minlat": 40.8590247, + "minlon": -73.9363548, + "maxlat": 40.8591821, + "maxlon": -73.9360198 + }, + "nodes": [ + 9432083877, + 9432083878, + 9432083879, + 9432083880, + 3808466586, + 9432083881, + 9432083877 + ], + "geometry": [ + { "lat": 40.8590560, "lon": -73.9363548 }, + { "lat": 40.8590247, "lon": -73.9362767 }, + { "lat": 40.8590708, "lon": -73.9361166 }, + { "lat": 40.8591452, "lon": -73.9360198 }, + { "lat": 40.8591520, "lon": -73.9360415 }, + { "lat": 40.8591821, "lon": -73.9361662 }, + { "lat": 40.8590560, "lon": -73.9363548 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1022712668, + "bounds": { + "minlat": 40.8026757, + "minlon": -73.9515995, + "maxlat": 40.8027982, + "maxlon": -73.9515109 + }, + "nodes": [ + 5481882788, + 10173400451, + 6223478860 + ], + "geometry": [ + { "lat": 40.8027982, "lon": -73.9515109 }, + { "lat": 40.8027185, "lon": -73.9515686 }, + { "lat": 40.8026757, "lon": -73.9515995 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1022790246, + "bounds": { + "minlat": 40.7507505, + "minlon": -73.9684095, + "maxlat": 40.7513685, + "maxlon": -73.9679588 + }, + "nodes": [ + 42444055, + 3569749122, + 3569749125, + 42434092 + ], + "geometry": [ + { "lat": 40.7507505, "lon": -73.9684095 }, + { "lat": 40.7508185, "lon": -73.9683613 }, + { "lat": 40.7512805, "lon": -73.9680263 }, + { "lat": 40.7513685, "lon": -73.9679588 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1022790247, + "bounds": { + "minlat": 40.7505566, + "minlon": -73.9685478, + "maxlat": 40.7507505, + "maxlon": -73.9684095 + }, + "nodes": [ + 9432876280, + 3569749119, + 42444055 + ], + "geometry": [ + { "lat": 40.7505566, "lon": -73.9685478 }, + { "lat": 40.7506902, "lon": -73.9684522 }, + { "lat": 40.7507505, "lon": -73.9684095 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1022796561, + "bounds": { + "minlat": 40.7533011, + "minlon": -73.9985193, + "maxlat": 40.7534567, + "maxlon": -73.9981406 + }, + "nodes": [ + 427845235, + 427845226 + ], + "geometry": [ + { "lat": 40.7533011, "lon": -73.9981406 }, + { "lat": 40.7534567, "lon": -73.9985193 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "name_1": "West 33 Street", + "oneway": "yes", + "parking:both": "no", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1022802568, + "bounds": { + "minlat": 40.7074629, + "minlon": -73.9320720, + "maxlat": 40.7077860, + "maxlon": -73.9317649 + }, + "nodes": [ + 9432967506, + 9767625245, + 42496384 + ], + "geometry": [ + { "lat": 40.7074629, "lon": -73.9317649 }, + { "lat": 40.7077256, "lon": -73.9320153 }, + { "lat": 40.7077860, "lon": -73.9320720 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "highway": "residential", + "lanes": "2", + "name": "Knickerbocker Avenue", + "name:etymology:wikidata": "Q55609555", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through;right" + } +}, +{ + "type": "way", + "id": 1022813500, + "bounds": { + "minlat": 40.7649692, + "minlon": -73.9733392, + "maxlat": 40.7651082, + "maxlon": -73.9730260 + }, + "nodes": [ + 4347534768, + 10125174403, + 9906929148, + 9906929139, + 9906929154, + 4347535693, + 3377461259, + 1283225262, + 10125174404, + 9906929138, + 9433097821 + ], + "geometry": [ + { "lat": 40.7651079, "lon": -73.9730260 }, + { "lat": 40.7651082, "lon": -73.9730593 }, + { "lat": 40.7651056, "lon": -73.9730931 }, + { "lat": 40.7651006, "lon": -73.9731274 }, + { "lat": 40.7650904, "lon": -73.9731669 }, + { "lat": 40.7650793, "lon": -73.9731956 }, + { "lat": 40.7650618, "lon": -73.9732319 }, + { "lat": 40.7650458, "lon": -73.9732587 }, + { "lat": 40.7650237, "lon": -73.9732882 }, + { "lat": 40.7650003, "lon": -73.9733125 }, + { "lat": 40.7649692, "lon": -73.9733392 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Army Plaza", + "name_1": "5 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|right" + } +}, +{ + "type": "way", + "id": 1022822152, + "bounds": { + "minlat": 40.7662134, + "minlon": -73.9817493, + "maxlat": 40.7671354, + "maxlon": -73.9795321 + }, + "nodes": [ + 42428332, + 10183983986, + 4544455461, + 10036563038, + 13597337260, + 10170864617, + 42440025 + ], + "geometry": [ + { "lat": 40.7671354, "lon": -73.9817493 }, + { "lat": 40.7671035, "lon": -73.9816728 }, + { "lat": 40.7670838, "lon": -73.9816254 }, + { "lat": 40.7670697, "lon": -73.9815877 }, + { "lat": 40.7666470, "lon": -73.9805728 }, + { "lat": 40.7662624, "lon": -73.9796494 }, + { "lat": 40.7662134, "lon": -73.9795321 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 58th Street", + "name:ru": "Западная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1022822153, + "bounds": { + "minlat": 40.7662134, + "minlon": -73.9795321, + "maxlat": 40.7668760, + "maxlon": -73.9790760 + }, + "nodes": [ + 42423674, + 7830685366, + 10170842515, + 42440025 + ], + "geometry": [ + { "lat": 40.7668760, "lon": -73.9790760 }, + { "lat": 40.7667796, "lon": -73.9791423 }, + { "lat": 40.7662721, "lon": -73.9794917 }, + { "lat": 40.7662134, "lon": -73.9795321 } + ], + "tags": { + "cycleway:left": "track", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "15.5", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1023136586, + "bounds": { + "minlat": 40.7617189, + "minlon": -73.9828071, + "maxlat": 40.7623476, + "maxlon": -73.9823472 + }, + "nodes": [ + 42440009, + 9140940652, + 3977886867, + 3977886862, + 42440004 + ], + "geometry": [ + { "lat": 40.7623476, "lon": -73.9823472 }, + { "lat": 40.7623147, "lon": -73.9823715 }, + { "lat": 40.7622902, "lon": -73.9823897 }, + { "lat": 40.7617902, "lon": -73.9827554 }, + { "lat": 40.7617189, "lon": -73.9828071 } + ], + "tags": { + "cycleway:left": "track", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "name_1": "7 Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1023167223, + "bounds": { + "minlat": 40.7350119, + "minlon": -73.9798916, + "maxlat": 40.7353308, + "maxlon": -73.9796601 + }, + "nodes": [ + 42439181, + 3601295765, + 5341393936, + 3601295731 + ], + "geometry": [ + { "lat": 40.7350119, "lon": -73.9798916 }, + { "lat": 40.7350799, "lon": -73.9798443 }, + { "lat": 40.7352930, "lon": -73.9796893 }, + { "lat": 40.7353308, "lon": -73.9796601 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1023236297, + "bounds": { + "minlat": 40.7583152, + "minlon": -73.9752603, + "maxlat": 40.7584878, + "maxlon": -73.9751336 + }, + "nodes": [ + 9436315334, + 10165986930, + 42440453 + ], + "geometry": [ + { "lat": 40.7583152, "lon": -73.9752603 }, + { "lat": 40.7584389, "lon": -73.9751694 }, + { "lat": 40.7584878, "lon": -73.9751336 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 1023238044, + "bounds": { + "minlat": 40.7595517, + "minlon": -73.9743623, + "maxlat": 40.7596367, + "maxlon": -73.9742994 + }, + "nodes": [ + 9436315352, + 4960516277 + ], + "geometry": [ + { "lat": 40.7595517, "lon": -73.9743623 }, + { "lat": 40.7596367, "lon": -73.9742994 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 1023290075, + "bounds": { + "minlat": 40.7648965, + "minlon": -73.9612132, + "maxlat": 40.7649919, + "maxlon": -73.9611441 + }, + "nodes": [ + 42442983, + 5542680296, + 5550244687 + ], + "geometry": [ + { "lat": 40.7649919, "lon": -73.9611441 }, + { "lat": 40.7649314, "lon": -73.9611874 }, + { "lat": 40.7648965, "lon": -73.9612132 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1023764837, + "bounds": { + "minlat": 40.7421823, + "minlon": -74.0088753, + "maxlat": 40.7422503, + "maxlon": -74.0088079 + }, + "nodes": [ + 4892640997, + 9440836425, + 4892640969, + 9440836417, + 9440654016, + 9440654015, + 4892640978, + 9440836424, + 9440654012, + 9440654013, + 9440654014, + 4892640935, + 4892640997 + ], + "geometry": [ + { "lat": 40.7422409, "lon": -74.0088613 }, + { "lat": 40.7422193, "lon": -74.0088665 }, + { "lat": 40.7421823, "lon": -74.0088753 }, + { "lat": 40.7421880, "lon": -74.0088712 }, + { "lat": 40.7421926, "lon": -74.0088648 }, + { "lat": 40.7421949, "lon": -74.0088574 }, + { "lat": 40.7421914, "lon": -74.0088197 }, + { "lat": 40.7422123, "lon": -74.0088155 }, + { "lat": 40.7422503, "lon": -74.0088079 }, + { "lat": 40.7422436, "lon": -74.0088118 }, + { "lat": 40.7422404, "lon": -74.0088184 }, + { "lat": 40.7422381, "lon": -74.0088246 }, + { "lat": 40.7422409, "lon": -74.0088613 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1023764840, + "bounds": { + "minlat": 40.7421997, + "minlon": -74.0090466, + "maxlat": 40.7422625, + "maxlon": -74.0089896 + }, + "nodes": [ + 9015896834, + 9440836423, + 4892640984, + 9440836419, + 9440836420, + 9440836421, + 4892640972, + 9440836422, + 9015896835, + 9015896834 + ], + "geometry": [ + { "lat": 40.7422625, "lon": -74.0090356 }, + { "lat": 40.7422432, "lon": -74.0090401 }, + { "lat": 40.7422157, "lon": -74.0090466 }, + { "lat": 40.7422117, "lon": -74.0090158 }, + { "lat": 40.7422086, "lon": -74.0090096 }, + { "lat": 40.7422052, "lon": -74.0090052 }, + { "lat": 40.7421997, "lon": -74.0090040 }, + { "lat": 40.7422370, "lon": -74.0089949 }, + { "lat": 40.7422589, "lon": -74.0089896 }, + { "lat": 40.7422625, "lon": -74.0090356 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1023764848, + "bounds": { + "minlat": 40.7430097, + "minlon": -74.0087008, + "maxlat": 40.7430992, + "maxlon": -74.0086242 + }, + "nodes": [ + 9440836445, + 9440836450, + 9440836451, + 9440836449, + 9440836452, + 9440836453, + 9440836454, + 9440836455, + 9440836456, + 9440836457, + 9440836458, + 9440836459, + 9440836460, + 9440836448, + 4892640964, + 4892640953, + 9440836446, + 9440836445 + ], + "geometry": [ + { "lat": 40.7430117, "lon": -74.0087002 }, + { "lat": 40.7430221, "lon": -74.0087008 }, + { "lat": 40.7430359, "lon": -74.0086994 }, + { "lat": 40.7430527, "lon": -74.0086968 }, + { "lat": 40.7430823, "lon": -74.0086907 }, + { "lat": 40.7430913, "lon": -74.0086869 }, + { "lat": 40.7430968, "lon": -74.0086799 }, + { "lat": 40.7430992, "lon": -74.0086701 }, + { "lat": 40.7430974, "lon": -74.0086442 }, + { "lat": 40.7430945, "lon": -74.0086347 }, + { "lat": 40.7430881, "lon": -74.0086267 }, + { "lat": 40.7430804, "lon": -74.0086242 }, + { "lat": 40.7430703, "lon": -74.0086253 }, + { "lat": 40.7430457, "lon": -74.0086301 }, + { "lat": 40.7430097, "lon": -74.0086415 }, + { "lat": 40.7430174, "lon": -74.0086934 }, + { "lat": 40.7430156, "lon": -74.0086982 }, + { "lat": 40.7430117, "lon": -74.0087002 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1023764851, + "bounds": { + "minlat": 40.7430318, + "minlon": -74.0088628, + "maxlat": 40.7431213, + "maxlon": -74.0088145 + }, + "nodes": [ + 4892641000, + 11251893385, + 9440836461, + 4892640966, + 11062144000, + 4892640931, + 9440836462, + 11251893384, + 4892640955, + 11062143999, + 4892641000 + ], + "geometry": [ + { "lat": 40.7431213, "lon": -74.0088453 }, + { "lat": 40.7430887, "lon": -74.0088519 }, + { "lat": 40.7430732, "lon": -74.0088551 }, + { "lat": 40.7430354, "lon": -74.0088628 }, + { "lat": 40.7430337, "lon": -74.0088478 }, + { "lat": 40.7430318, "lon": -74.0088320 }, + { "lat": 40.7430692, "lon": -74.0088243 }, + { "lat": 40.7431027, "lon": -74.0088167 }, + { "lat": 40.7431176, "lon": -74.0088145 }, + { "lat": 40.7431194, "lon": -74.0088291 }, + { "lat": 40.7431213, "lon": -74.0088453 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1023764861, + "bounds": { + "minlat": 40.7414490, + "minlon": -74.0090268, + "maxlat": 40.7415405, + "maxlon": -74.0089748 + }, + "nodes": [ + 4892641016, + 9112000209, + 9112000206, + 9440836527, + 9440836528, + 9440836529, + 9112000205, + 9440836526, + 9112000204, + 4892641016 + ], + "geometry": [ + { "lat": 40.7415405, "lon": -74.0090088 }, + { "lat": 40.7415021, "lon": -74.0090164 }, + { "lat": 40.7414490, "lon": -74.0090268 }, + { "lat": 40.7414543, "lon": -74.0090223 }, + { "lat": 40.7414595, "lon": -74.0090144 }, + { "lat": 40.7414613, "lon": -74.0090070 }, + { "lat": 40.7414613, "lon": -74.0089969 }, + { "lat": 40.7414975, "lon": -74.0089862 }, + { "lat": 40.7415362, "lon": -74.0089748 }, + { "lat": 40.7415405, "lon": -74.0090088 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1023764864, + "bounds": { + "minlat": 40.7414664, + "minlon": -74.0092224, + "maxlat": 40.7419504, + "maxlon": -74.0090887 + }, + "nodes": [ + 4892640956, + 9440836540, + 12117376825, + 4892640930, + 12117376828, + 9112060818, + 9440836542, + 9440836543, + 9440836544, + 9440836545, + 9440836541, + 9440836518, + 9440836517, + 7779310098, + 7779310099, + 4892640956 + ], + "geometry": [ + { "lat": 40.7414893, "lon": -74.0092224 }, + { "lat": 40.7415214, "lon": -74.0092156 }, + { "lat": 40.7415415, "lon": -74.0092114 }, + { "lat": 40.7419504, "lon": -74.0091252 }, + { "lat": 40.7419490, "lon": -74.0091116 }, + { "lat": 40.7419484, "lon": -74.0091067 }, + { "lat": 40.7419465, "lon": -74.0090887 }, + { "lat": 40.7416315, "lon": -74.0091568 }, + { "lat": 40.7415819, "lon": -74.0091338 }, + { "lat": 40.7415755, "lon": -74.0091326 }, + { "lat": 40.7415147, "lon": -74.0091460 }, + { "lat": 40.7414664, "lon": -74.0091567 }, + { "lat": 40.7414759, "lon": -74.0091596 }, + { "lat": 40.7414805, "lon": -74.0091658 }, + { "lat": 40.7414835, "lon": -74.0091745 }, + { "lat": 40.7414893, "lon": -74.0092224 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1023817144, + "bounds": { + "minlat": 40.7584045, + "minlon": -74.0043692, + "maxlat": 40.7584915, + "maxlon": -74.0043150 + }, + "nodes": [ + 9441264814, + 9441264738, + 9441264829 + ], + "geometry": [ + { "lat": 40.7584045, "lon": -74.0043692 }, + { "lat": 40.7584802, "lon": -74.0043150 }, + { "lat": 40.7584915, "lon": -74.0043429 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1023817145, + "bounds": { + "minlat": 40.7582279, + "minlon": -74.0046117, + "maxlat": 40.7584045, + "maxlon": -74.0043692 + }, + "nodes": [ + 9441264814, + 9441264817, + 9441264818, + 9441264819, + 9441264820, + 9441264821, + 9441264822, + 9441264823 + ], + "geometry": [ + { "lat": 40.7584045, "lon": -74.0043692 }, + { "lat": 40.7583926, "lon": -74.0043776 }, + { "lat": 40.7583849, "lon": -74.0043909 }, + { "lat": 40.7583804, "lon": -74.0044132 }, + { "lat": 40.7583738, "lon": -74.0044796 }, + { "lat": 40.7583658, "lon": -74.0045001 }, + { "lat": 40.7583537, "lon": -74.0045166 }, + { "lat": 40.7582279, "lon": -74.0046117 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1023818802, + "bounds": { + "minlat": 40.7741641, + "minlon": -73.9848524, + "maxlat": 40.7744405, + "maxlon": -73.9846511 + }, + "nodes": [ + 42442415, + 3690549743, + 7556282024 + ], + "geometry": [ + { "lat": 40.7741641, "lon": -73.9848524 }, + { "lat": 40.7742265, "lon": -73.9848079 }, + { "lat": 40.7744405, "lon": -73.9846511 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1023827394, + "bounds": { + "minlat": 40.7708511, + "minlon": -73.9831939, + "maxlat": 40.7709814, + "maxlon": -73.9830135 + }, + "nodes": [ + 9441357365, + 9904385883, + 9441357366, + 9441357367, + 9904385881, + 9441357368 + ], + "geometry": [ + { "lat": 40.7709814, "lon": -73.9831370 }, + { "lat": 40.7709319, "lon": -73.9831736 }, + { "lat": 40.7709032, "lon": -73.9831939 }, + { "lat": 40.7708511, "lon": -73.9830740 }, + { "lat": 40.7708791, "lon": -73.9830527 }, + { "lat": 40.7709308, "lon": -73.9830135 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1024425027, + "bounds": { + "minlat": 40.7683054, + "minlon": -73.9822632, + "maxlat": 40.7685204, + "maxlon": -73.9821935 + }, + "nodes": [ + 1825803850, + 1825841728, + 1825841702, + 1825841716, + 1825841655 + ], + "geometry": [ + { "lat": 40.7685204, "lon": -73.9821935 }, + { "lat": 40.7684594, "lon": -73.9822004 }, + { "lat": 40.7684095, "lon": -73.9822122 }, + { "lat": 40.7683647, "lon": -73.9822294 }, + { "lat": 40.7683054, "lon": -73.9822632 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:taxi": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024425029, + "bounds": { + "minlat": 40.7683994, + "minlon": -73.9819534, + "maxlat": 40.7685440, + "maxlon": -73.9816789 + }, + "nodes": [ + 1825841742, + 8821677086, + 10183978878, + 9170790586 + ], + "geometry": [ + { "lat": 40.7683994, "lon": -73.9816789 }, + { "lat": 40.7685039, "lon": -73.9818905 }, + { "lat": 40.7685237, "lon": -73.9819263 }, + { "lat": 40.7685440, "lon": -73.9819534 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024425032, + "bounds": { + "minlat": 40.7685525, + "minlon": -73.9815179, + "maxlat": 40.7688168, + "maxlon": -73.9813914 + }, + "nodes": [ + 4347550054, + 9915560876, + 9170790593 + ], + "geometry": [ + { "lat": 40.7685525, "lon": -73.9815179 }, + { "lat": 40.7685857, "lon": -73.9815030 }, + { "lat": 40.7688168, "lon": -73.9813914 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024425034, + "bounds": { + "minlat": 40.7681017, + "minlon": -73.9823861, + "maxlat": 40.7683054, + "maxlon": -73.9822632 + }, + "nodes": [ + 1825841655, + 9446375820, + 7333394057, + 1825841713, + 1825841724, + 9446375827 + ], + "geometry": [ + { "lat": 40.7683054, "lon": -73.9822632 }, + { "lat": 40.7682719, "lon": -73.9822985 }, + { "lat": 40.7682195, "lon": -73.9823395 }, + { "lat": 40.7681741, "lon": -73.9823641 }, + { "lat": 40.7681380, "lon": -73.9823775 }, + { "lat": 40.7681017, "lon": -73.9823861 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "junction": "circular", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Circle", + "name:etymology:wikidata": "Q7322", + "name:ja": "コロンバスサークル", + "name:ko": "콜럼버스 서클", + "name:ru": "Коламбус-сёркл", + "oneway": "yes", + "parking:lane:left": "no_parking", + "ref": "8", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109968" + } +}, +{ + "type": "way", + "id": 1024458692, + "bounds": { + "minlat": 40.7770459, + "minlon": -73.9790712, + "maxlat": 40.7774164, + "maxlon": -73.9787995 + }, + "nodes": [ + 42443336, + 9668801882, + 9446688953 + ], + "geometry": [ + { "lat": 40.7774164, "lon": -73.9787995 }, + { "lat": 40.7773256, "lon": -73.9788661 }, + { "lat": 40.7770459, "lon": -73.9790712 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:width": "1.8", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024458693, + "bounds": { + "minlat": 40.7767307, + "minlon": -73.9819708, + "maxlat": 40.7778592, + "maxlon": -73.9793024 + }, + "nodes": [ + 42437384, + 9668801886, + 5115907029, + 1996323622 + ], + "geometry": [ + { "lat": 40.7767307, "lon": -73.9793024 }, + { "lat": 40.7767817, "lon": -73.9794230 }, + { "lat": 40.7778035, "lon": -73.9818419 }, + { "lat": 40.7778592, "lon": -73.9819708 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 71st Street", + "name:ru": "Западная 71-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1024458694, + "bounds": { + "minlat": 40.7767307, + "minlon": -73.9793024, + "maxlat": 40.7770459, + "maxlon": -73.9790712 + }, + "nodes": [ + 9446688953, + 9897874379, + 42437384 + ], + "geometry": [ + { "lat": 40.7770459, "lon": -73.9790712 }, + { "lat": 40.7767954, "lon": -73.9792549 }, + { "lat": 40.7767307, "lon": -73.9793024 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:width": "1.8", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024458695, + "bounds": { + "minlat": 40.7749199, + "minlon": -73.9797528, + "maxlat": 40.7761092, + "maxlon": -73.9769198 + }, + "nodes": [ + 42443332, + 9897874396, + 7802856345, + 7802856356 + ], + "geometry": [ + { "lat": 40.7761092, "lon": -73.9797528 }, + { "lat": 40.7760570, "lon": -73.9796283 }, + { "lat": 40.7749695, "lon": -73.9770367 }, + { "lat": 40.7749199, "lon": -73.9769198 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "West 70th Street", + "name:ru": "Западная 70-я стрит", + "name_1": "West 70 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1024458696, + "bounds": { + "minlat": 40.7761092, + "minlon": -73.9797528, + "maxlat": 40.7767307, + "maxlon": -73.9793024 + }, + "nodes": [ + 42437384, + 9668750181, + 9897874400, + 42443332 + ], + "geometry": [ + { "lat": 40.7767307, "lon": -73.9793024 }, + { "lat": 40.7766819, "lon": -73.9793378 }, + { "lat": 40.7761708, "lon": -73.9797082 }, + { "lat": 40.7761092, "lon": -73.9797528 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:width": "1.8", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|none", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024458697, + "bounds": { + "minlat": 40.7754797, + "minlon": -73.9830397, + "maxlat": 40.7766527, + "maxlon": -73.9802121 + }, + "nodes": [ + 42443329, + 9902312977, + 9914806629, + 1061531608, + 42428604, + 9914806632, + 9912934227, + 3377383056, + 1733614298 + ], + "geometry": [ + { "lat": 40.7754797, "lon": -73.9802121 }, + { "lat": 40.7755341, "lon": -73.9803403 }, + { "lat": 40.7762035, "lon": -73.9819169 }, + { "lat": 40.7762516, "lon": -73.9820341 }, + { "lat": 40.7763295, "lon": -73.9822243 }, + { "lat": 40.7763909, "lon": -73.9823631 }, + { "lat": 40.7764671, "lon": -73.9825557 }, + { "lat": 40.7766168, "lon": -73.9829162 }, + { "lat": 40.7766527, "lon": -73.9830397 } + ], + "tags": { + "alt_name": "West 69 Street", + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 69th Street", + "name:ru": "Западная 69-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1024458698, + "bounds": { + "minlat": 40.7750170, + "minlon": -73.9805480, + "maxlat": 40.7754797, + "maxlon": -73.9802121 + }, + "nodes": [ + 42443329, + 9902312981, + 8427872795 + ], + "geometry": [ + { "lat": 40.7754797, "lon": -73.9802121 }, + { "lat": 40.7754314, "lon": -73.9802472 }, + { "lat": 40.7750170, "lon": -73.9805480 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:width": "1.8", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024491588, + "bounds": { + "minlat": 40.8036804, + "minlon": -73.9522965, + "maxlat": 40.8038074, + "maxlon": -73.9522043 + }, + "nodes": [ + 9446943731, + 4207716484 + ], + "geometry": [ + { "lat": 40.8038074, "lon": -73.9522043 }, + { "lat": 40.8036804, "lon": -73.9522965 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "rcn_ref": "9", + "route": "bicycle", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556665, + "bounds": { + "minlat": 40.7755591, + "minlon": -73.9527041, + "maxlat": 40.7765623, + "maxlon": -73.9503323 + }, + "nodes": [ + 42435516, + 6176390169, + 8250715784, + 7834030789, + 6263083516, + 42435518 + ], + "geometry": [ + { "lat": 40.7765623, "lon": -73.9527041 }, + { "lat": 40.7765258, "lon": -73.9526178 }, + { "lat": 40.7765079, "lon": -73.9525757 }, + { "lat": 40.7756213, "lon": -73.9504792 }, + { "lat": 40.7756047, "lon": -73.9504400 }, + { "lat": 40.7755591, "lon": -73.9503323 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "name": "East 84th Street", + "name:ru": "Восточная 84-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1024556666, + "bounds": { + "minlat": 40.7765623, + "minlon": -73.9527041, + "maxlat": 40.7767459, + "maxlon": -73.9525671 + }, + "nodes": [ + 9447528015, + 8251531283, + 42435516 + ], + "geometry": [ + { "lat": 40.7767459, "lon": -73.9525671 }, + { "lat": 40.7766236, "lon": -73.9526590 }, + { "lat": 40.7765623, "lon": -73.9527041 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556667, + "bounds": { + "minlat": 40.7767459, + "minlon": -73.9525671, + "maxlat": 40.7771941, + "maxlon": -73.9522399 + }, + "nodes": [ + 42443037, + 8250715788, + 9447528015 + ], + "geometry": [ + { "lat": 40.7771941, "lon": -73.9522399 }, + { "lat": 40.7771437, "lon": -73.9522769 }, + { "lat": 40.7767459, "lon": -73.9525671 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556668, + "bounds": { + "minlat": 40.7771941, + "minlon": -73.9522399, + "maxlat": 40.7778838, + "maxlon": -73.9517401 + }, + "nodes": [ + 42429340, + 7834025502, + 8250715782, + 42443037 + ], + "geometry": [ + { "lat": 40.7778838, "lon": -73.9517401 }, + { "lat": 40.7777944, "lon": -73.9518067 }, + { "lat": 40.7772558, "lon": -73.9521954 }, + { "lat": 40.7771941, "lon": -73.9522399 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556669, + "bounds": { + "minlat": 40.7759238, + "minlon": -73.9531654, + "maxlat": 40.7765623, + "maxlon": -73.9527041 + }, + "nodes": [ + 42435516, + 8251531288, + 7942955452, + 8251531263, + 42443032 + ], + "geometry": [ + { "lat": 40.7765623, "lon": -73.9527041 }, + { "lat": 40.7765132, "lon": -73.9527395 }, + { "lat": 40.7761737, "lon": -73.9529849 }, + { "lat": 40.7759832, "lon": -73.9531225 }, + { "lat": 40.7759238, "lon": -73.9531654 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556670, + "bounds": { + "minlat": 40.7754560, + "minlon": -73.9535146, + "maxlat": 40.7759238, + "maxlon": -73.9531654 + }, + "nodes": [ + 42443032, + 8251531275, + 9447528016 + ], + "geometry": [ + { "lat": 40.7759238, "lon": -73.9531654 }, + { "lat": 40.7758756, "lon": -73.9532015 }, + { "lat": 40.7754560, "lon": -73.9535146 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556671, + "bounds": { + "minlat": 40.7752935, + "minlon": -73.9536366, + "maxlat": 40.7754560, + "maxlon": -73.9535146 + }, + "nodes": [ + 9447528016, + 8250715755, + 42439406 + ], + "geometry": [ + { "lat": 40.7754560, "lon": -73.9535146 }, + { "lat": 40.7753562, "lon": -73.9535898 }, + { "lat": 40.7752935, "lon": -73.9536366 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556672, + "bounds": { + "minlat": 40.7746660, + "minlon": -73.9540995, + "maxlat": 40.7752935, + "maxlon": -73.9536366 + }, + "nodes": [ + 42439406, + 8250715760, + 7942955459, + 7834024310, + 42443029 + ], + "geometry": [ + { "lat": 40.7752935, "lon": -73.9536366 }, + { "lat": 40.7752407, "lon": -73.9536756 }, + { "lat": 40.7750628, "lon": -73.9538068 }, + { "lat": 40.7747248, "lon": -73.9540561 }, + { "lat": 40.7746660, "lon": -73.9540995 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556673, + "bounds": { + "minlat": 40.7741987, + "minlon": -73.9544398, + "maxlat": 40.7746660, + "maxlon": -73.9540995 + }, + "nodes": [ + 42443029, + 7834024331, + 9447550723 + ], + "geometry": [ + { "lat": 40.7746660, "lon": -73.9540995 }, + { "lat": 40.7746098, "lon": -73.9541393 }, + { "lat": 40.7741987, "lon": -73.9544398 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556674, + "bounds": { + "minlat": 40.7737756, + "minlon": -73.9547571, + "maxlat": 40.7740206, + "maxlon": -73.9545699 + }, + "nodes": [ + 42438506, + 8258925535, + 9447550717 + ], + "geometry": [ + { "lat": 40.7740206, "lon": -73.9545699 }, + { "lat": 40.7739763, "lon": -73.9546022 }, + { "lat": 40.7737756, "lon": -73.9547571 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556675, + "bounds": { + "minlat": 40.7733539, + "minlon": -73.9550691, + "maxlat": 40.7737756, + "maxlon": -73.9547571 + }, + "nodes": [ + 9447550717, + 8258925531, + 42443027 + ], + "geometry": [ + { "lat": 40.7737756, "lon": -73.9547571 }, + { "lat": 40.7734476, "lon": -73.9550021 }, + { "lat": 40.7733539, "lon": -73.9550691 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556676, + "bounds": { + "minlat": 40.7728321, + "minlon": -73.9554500, + "maxlat": 40.7733539, + "maxlon": -73.9550691 + }, + "nodes": [ + 42443027, + 8258925537, + 6139477299, + 9447550718 + ], + "geometry": [ + { "lat": 40.7733539, "lon": -73.9550691 }, + { "lat": 40.7732537, "lon": -73.9551420 }, + { "lat": 40.7730319, "lon": -73.9553019 }, + { "lat": 40.7728321, "lon": -73.9554500 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556677, + "bounds": { + "minlat": 40.7726645, + "minlon": -73.9555742, + "maxlat": 40.7728321, + "maxlon": -73.9554500 + }, + "nodes": [ + 9447550718, + 8251531264, + 42436921 + ], + "geometry": [ + { "lat": 40.7728321, "lon": -73.9554500 }, + { "lat": 40.7727225, "lon": -73.9555313 }, + { "lat": 40.7726645, "lon": -73.9555742 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556678, + "bounds": { + "minlat": 40.7720395, + "minlon": -73.9560266, + "maxlat": 40.7726645, + "maxlon": -73.9555742 + }, + "nodes": [ + 42436921, + 8251531265, + 8250894453, + 42443024 + ], + "geometry": [ + { "lat": 40.7726645, "lon": -73.9555742 }, + { "lat": 40.7726116, "lon": -73.9556111 }, + { "lat": 40.7720921, "lon": -73.9559900 }, + { "lat": 40.7720395, "lon": -73.9560266 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556679, + "bounds": { + "minlat": 40.7717416, + "minlon": -73.9562437, + "maxlat": 40.7720395, + "maxlon": -73.9560266 + }, + "nodes": [ + 42443024, + 8250894446, + 9737272791 + ], + "geometry": [ + { "lat": 40.7720395, "lon": -73.9560266 }, + { "lat": 40.7719797, "lon": -73.9560692 }, + { "lat": 40.7717416, "lon": -73.9562437 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556680, + "bounds": { + "minlat": 40.7714057, + "minlon": -73.9564910, + "maxlat": 40.7715807, + "maxlon": -73.9563609 + }, + "nodes": [ + 9447550719, + 8250780930, + 42443020 + ], + "geometry": [ + { "lat": 40.7715807, "lon": -73.9563609 }, + { "lat": 40.7714585, "lon": -73.9564516 }, + { "lat": 40.7714057, "lon": -73.9564910 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556681, + "bounds": { + "minlat": 40.7707623, + "minlon": -73.9569342, + "maxlat": 40.7714057, + "maxlon": -73.9564910 + }, + "nodes": [ + 42443020, + 8250780931, + 8250780938, + 42430068 + ], + "geometry": [ + { "lat": 40.7714057, "lon": -73.9564910 }, + { "lat": 40.7713484, "lon": -73.9565340 }, + { "lat": 40.7708161, "lon": -73.9568950 }, + { "lat": 40.7707623, "lon": -73.9569342 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556682, + "bounds": { + "minlat": 40.7702832, + "minlon": -73.9572817, + "maxlat": 40.7707623, + "maxlon": -73.9569342 + }, + "nodes": [ + 42430068, + 8250780939, + 7942955450, + 9447550720 + ], + "geometry": [ + { "lat": 40.7707623, "lon": -73.9569342 }, + { "lat": 40.7707027, "lon": -73.9569772 }, + { "lat": 40.7704998, "lon": -73.9571237 }, + { "lat": 40.7702832, "lon": -73.9572817 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556683, + "bounds": { + "minlat": 40.7701167, + "minlon": -73.9574004, + "maxlat": 40.7702832, + "maxlon": -73.9572817 + }, + "nodes": [ + 9447550720, + 8250780927, + 42439563 + ], + "geometry": [ + { "lat": 40.7702832, "lon": -73.9572817 }, + { "lat": 40.7701761, "lon": -73.9573574 }, + { "lat": 40.7701167, "lon": -73.9574004 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556684, + "bounds": { + "minlat": 40.7694904, + "minlon": -73.9578623, + "maxlat": 40.7701167, + "maxlon": -73.9574004 + }, + "nodes": [ + 42439563, + 8250780925, + 8250780935, + 42438802 + ], + "geometry": [ + { "lat": 40.7701167, "lon": -73.9574004 }, + { "lat": 40.7700633, "lon": -73.9574397 }, + { "lat": 40.7695411, "lon": -73.9578249 }, + { "lat": 40.7694904, "lon": -73.9578623 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556685, + "bounds": { + "minlat": 40.7693056, + "minlon": -73.9580092, + "maxlat": 40.7694904, + "maxlon": -73.9578623 + }, + "nodes": [ + 42438802, + 8250780936, + 9447550721 + ], + "geometry": [ + { "lat": 40.7694904, "lon": -73.9578623 }, + { "lat": 40.7694371, "lon": -73.9579010 }, + { "lat": 40.7693056, "lon": -73.9580092 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556686, + "bounds": { + "minlat": 40.7688122, + "minlon": -73.9583845, + "maxlat": 40.7693056, + "maxlon": -73.9580092 + }, + "nodes": [ + 9447550721, + 3562587903, + 42436489 + ], + "geometry": [ + { "lat": 40.7693056, "lon": -73.9580092 }, + { "lat": 40.7689035, "lon": -73.9583183 }, + { "lat": 40.7688122, "lon": -73.9583845 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none|none|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556687, + "bounds": { + "minlat": 40.7676948, + "minlon": -73.9591968, + "maxlat": 40.7681385, + "maxlon": -73.9588757 + }, + "nodes": [ + 42443009, + 8855606716, + 9447550722 + ], + "geometry": [ + { "lat": 40.7681385, "lon": -73.9588757 }, + { "lat": 40.7680762, "lon": -73.9589200 }, + { "lat": 40.7676948, "lon": -73.9591968 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556688, + "bounds": { + "minlat": 40.7675009, + "minlon": -73.9593404, + "maxlat": 40.7676948, + "maxlon": -73.9591968 + }, + "nodes": [ + 9447550722, + 8851347588, + 42429693 + ], + "geometry": [ + { "lat": 40.7676948, "lon": -73.9591968 }, + { "lat": 40.7675617, "lon": -73.9592976 }, + { "lat": 40.7675009, "lon": -73.9593404 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024556689, + "bounds": { + "minlat": 40.7740206, + "minlon": -73.9545699, + "maxlat": 40.7741987, + "maxlon": -73.9544398 + }, + "nodes": [ + 9447550723, + 8258925521, + 42438506 + ], + "geometry": [ + { "lat": 40.7741987, "lon": -73.9544398 }, + { "lat": 40.7740866, "lon": -73.9545217 }, + { "lat": 40.7740206, "lon": -73.9545699 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024634984, + "bounds": { + "minlat": 40.7869495, + "minlon": -73.9541623, + "maxlat": 40.7872310, + "maxlon": -73.9534929 + }, + "nodes": [ + 42446086, + 7075509770, + 7066686011, + 7058708517, + 9448174588 + ], + "geometry": [ + { "lat": 40.7872310, "lon": -73.9541623 }, + { "lat": 40.7871861, "lon": -73.9540556 }, + { "lat": 40.7871061, "lon": -73.9538646 }, + { "lat": 40.7870864, "lon": -73.9538181 }, + { "lat": 40.7869495, "lon": -73.9534929 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|right|right", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1024746125, + "bounds": { + "minlat": 40.8150686, + "minlon": -73.9402581, + "maxlat": 40.8154373, + "maxlon": -73.9399886 + }, + "nodes": [ + 3099327951, + 9559408277, + 9449106388 + ], + "geometry": [ + { "lat": 40.8154373, "lon": -73.9399886 }, + { "lat": 40.8153863, "lon": -73.9400259 }, + { "lat": 40.8150686, "lon": -73.9402581 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 1024943815, + "bounds": { + "minlat": 40.7158693, + "minlon": -73.9662346, + "maxlat": 40.7162014, + "maxlon": -73.9660716 + }, + "nodes": [ + 9450686170, + 9949550292, + 42469478 + ], + "geometry": [ + { "lat": 40.7158693, "lon": -73.9662346 }, + { "lat": 40.7161267, "lon": -73.9661140 }, + { "lat": 40.7162014, "lon": -73.9660716 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1024943816, + "bounds": { + "minlat": 40.7126936, + "minlon": -73.9682502, + "maxlat": 40.7127746, + "maxlon": -73.9680033 + }, + "nodes": [ + 42514906, + 10045033588, + 5782087172 + ], + "geometry": [ + { "lat": 40.7127746, "lon": -73.9682502 }, + { "lat": 40.7127401, "lon": -73.9681450 }, + { "lat": 40.7126936, "lon": -73.9680033 } + ], + "tags": { + "highway": "residential", + "name": "South 5th Street", + "oneway": "no", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 1024943817, + "bounds": { + "minlat": 40.7042648, + "minlon": -73.9674532, + "maxlat": 40.7046375, + "maxlon": -73.9671611 + }, + "nodes": [ + 42469437, + 6248573336, + 9246837701, + 9998897923, + 9998897924, + 9998897925, + 9998897926, + 2173208182 + ], + "geometry": [ + { "lat": 40.7042648, "lon": -73.9671611 }, + { "lat": 40.7043492, "lon": -73.9672429 }, + { "lat": 40.7043881, "lon": -73.9672808 }, + { "lat": 40.7044325, "lon": -73.9673182 }, + { "lat": 40.7044789, "lon": -73.9673562 }, + { "lat": 40.7045269, "lon": -73.9673897 }, + { "lat": 40.7045783, "lon": -73.9674214 }, + { "lat": 40.7046375, "lon": -73.9674532 } + ], + "tags": { + "bicycle": "use_sidepath", + "cycleway:left": "separate", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1025137731, + "bounds": { + "minlat": 40.8078270, + "minlon": -73.9641703, + "maxlat": 40.8080645, + "maxlon": -73.9639884 + }, + "nodes": [ + 470209120, + 7004416696, + 9452317499 + ], + "geometry": [ + { "lat": 40.8080645, "lon": -73.9639884 }, + { "lat": 40.8079667, "lon": -73.9640678 }, + { "lat": 40.8078270, "lon": -73.9641703 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025163366, + "bounds": { + "minlat": 40.8564069, + "minlon": -73.9738470, + "maxlat": 40.8568017, + "maxlon": -73.9733074 + }, + "nodes": [ + 9452566125, + 9452566126, + 9452566127, + 9452566133 + ], + "geometry": [ + { "lat": 40.8568017, "lon": -73.9738470 }, + { "lat": 40.8567273, "lon": -73.9738231 }, + { "lat": 40.8566510, "lon": -73.9737248 }, + { "lat": 40.8564069, "lon": -73.9733074 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1025163367, + "bounds": { + "minlat": 40.8564069, + "minlon": -73.9733399, + "maxlat": 40.8565600, + "maxlon": -73.9733074 + }, + "nodes": [ + 9452566129, + 9452566132, + 9452566133 + ], + "geometry": [ + { "lat": 40.8565600, "lon": -73.9733399 }, + { "lat": 40.8564712, "lon": -73.9733219 }, + { "lat": 40.8564069, "lon": -73.9733074 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1025163368, + "bounds": { + "minlat": 40.8564069, + "minlon": -73.9733074, + "maxlat": 40.8564163, + "maxlon": -73.9730982 + }, + "nodes": [ + 9452566133, + 9452566130, + 9452566131 + ], + "geometry": [ + { "lat": 40.8564069, "lon": -73.9733074 }, + { "lat": 40.8564163, "lon": -73.9732324 }, + { "lat": 40.8564119, "lon": -73.9730982 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1025163369, + "bounds": { + "minlat": 40.8563874, + "minlon": -73.9733260, + "maxlat": 40.8564069, + "maxlon": -73.9733074 + }, + "nodes": [ + 9452566133, + 9452566128 + ], + "geometry": [ + { "lat": 40.8564069, "lon": -73.9733074 }, + { "lat": 40.8563874, "lon": -73.9733260 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1025163370, + "bounds": { + "minlat": 40.8560458, + "minlon": -73.9736858, + "maxlat": 40.8563874, + "maxlon": -73.9733260 + }, + "nodes": [ + 9452566128, + 9452566135 + ], + "geometry": [ + { "lat": 40.8563874, "lon": -73.9733260 }, + { "lat": 40.8560458, "lon": -73.9736858 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1025163371, + "bounds": { + "minlat": 40.8558919, + "minlon": -73.9737068, + "maxlat": 40.8560268, + "maxlon": -73.9736813 + }, + "nodes": [ + 9452566136, + 9452566137, + 9452566138 + ], + "geometry": [ + { "lat": 40.8558919, "lon": -73.9736813 }, + { "lat": 40.8559530, "lon": -73.9736970 }, + { "lat": 40.8560268, "lon": -73.9737068 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1025163372, + "bounds": { + "minlat": 40.8560098, + "minlon": -73.9738761, + "maxlat": 40.8560268, + "maxlon": -73.9737068 + }, + "nodes": [ + 9452566138, + 9452566139, + 9452566140 + ], + "geometry": [ + { "lat": 40.8560268, "lon": -73.9737068 }, + { "lat": 40.8560121, "lon": -73.9737826 }, + { "lat": 40.8560098, "lon": -73.9738761 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1025163373, + "bounds": { + "minlat": 40.8560268, + "minlon": -73.9737068, + "maxlat": 40.8560458, + "maxlon": -73.9736858 + }, + "nodes": [ + 9452566138, + 9452566135 + ], + "geometry": [ + { "lat": 40.8560268, "lon": -73.9737068 }, + { "lat": 40.8560458, "lon": -73.9736858 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1025731514, + "bounds": { + "minlat": 40.7843100, + "minlon": -73.9774740, + "maxlat": 40.7844692, + "maxlon": -73.9773536 + }, + "nodes": [ + 9457151133, + 9906904520, + 42442469 + ], + "geometry": [ + { "lat": 40.7843100, "lon": -73.9774740 }, + { "lat": 40.7844124, "lon": -73.9773960 }, + { "lat": 40.7844692, "lon": -73.9773536 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731515, + "bounds": { + "minlat": 40.7870011, + "minlon": -73.9755093, + "maxlat": 40.7872801, + "maxlon": -73.9753024 + }, + "nodes": [ + 42442475, + 10039932503, + 7194269381 + ], + "geometry": [ + { "lat": 40.7870011, "lon": -73.9755093 }, + { "lat": 40.7870641, "lon": -73.9754626 }, + { "lat": 40.7872801, "lon": -73.9753024 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|none|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731516, + "bounds": { + "minlat": 40.7876861, + "minlon": -73.9750103, + "maxlat": 40.7882053, + "maxlon": -73.9746302 + }, + "nodes": [ + 42442480, + 9547662380, + 9457151134 + ], + "geometry": [ + { "lat": 40.7876861, "lon": -73.9750103 }, + { "lat": 40.7877828, "lon": -73.9749385 }, + { "lat": 40.7882053, "lon": -73.9746302 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731517, + "bounds": { + "minlat": 40.7882053, + "minlon": -73.9746302, + "maxlat": 40.7883610, + "maxlon": -73.9745165 + }, + "nodes": [ + 9457151134, + 10039808173, + 42434160 + ], + "geometry": [ + { "lat": 40.7882053, "lon": -73.9746302 }, + { "lat": 40.7883145, "lon": -73.9745505 }, + { "lat": 40.7883610, "lon": -73.9745165 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731518, + "bounds": { + "minlat": 40.7883610, + "minlon": -73.9745165, + "maxlat": 40.7894666, + "maxlon": -73.9737095 + }, + "nodes": [ + 42434160, + 10039808180, + 8699239290, + 42438045, + 8699239286, + 9457151135 + ], + "geometry": [ + { "lat": 40.7883610, "lon": -73.9745165 }, + { "lat": 40.7884219, "lon": -73.9744722 }, + { "lat": 40.7889362, "lon": -73.9740968 }, + { "lat": 40.7889871, "lon": -73.9740595 }, + { "lat": 40.7890509, "lon": -73.9740127 }, + { "lat": 40.7894666, "lon": -73.9737095 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731519, + "bounds": { + "minlat": 40.7894666, + "minlon": -73.9737095, + "maxlat": 40.7896131, + "maxlon": -73.9736025 + }, + "nodes": [ + 9457151135, + 10058589294, + 42422000 + ], + "geometry": [ + { "lat": 40.7894666, "lon": -73.9737095 }, + { "lat": 40.7895649, "lon": -73.9736368 }, + { "lat": 40.7896131, "lon": -73.9736025 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731520, + "bounds": { + "minlat": 40.7896131, + "minlon": -73.9736025, + "maxlat": 40.7907176, + "maxlon": -73.9727963 + }, + "nodes": [ + 42422000, + 8699239313, + 8699249544, + 42437052, + 10060593490, + 9457151136 + ], + "geometry": [ + { "lat": 40.7896131, "lon": -73.9736025 }, + { "lat": 40.7896769, "lon": -73.9735558 }, + { "lat": 40.7901916, "lon": -73.9731802 }, + { "lat": 40.7902424, "lon": -73.9731431 }, + { "lat": 40.7903067, "lon": -73.9730963 }, + { "lat": 40.7907176, "lon": -73.9727963 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731521, + "bounds": { + "minlat": 40.7907176, + "minlon": -73.9727963, + "maxlat": 40.7908816, + "maxlon": -73.9726774 + }, + "nodes": [ + 9457151136, + 8687882638, + 42442492 + ], + "geometry": [ + { "lat": 40.7907176, "lon": -73.9727963 }, + { "lat": 40.7908128, "lon": -73.9727268 }, + { "lat": 40.7908816, "lon": -73.9726774 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731522, + "bounds": { + "minlat": 40.7908816, + "minlon": -73.9726774, + "maxlat": 40.7918326, + "maxlon": -73.9719976 + }, + "nodes": [ + 42442492, + 8687882634, + 8687882654, + 42442502, + 8687882657, + 9457151137 + ], + "geometry": [ + { "lat": 40.7908816, "lon": -73.9726774 }, + { "lat": 40.7909319, "lon": -73.9726399 }, + { "lat": 40.7914473, "lon": -73.9722740 }, + { "lat": 40.7915049, "lon": -73.9722334 }, + { "lat": 40.7915639, "lon": -73.9721917 }, + { "lat": 40.7918326, "lon": -73.9719976 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731523, + "bounds": { + "minlat": 40.7918326, + "minlon": -73.9719976, + "maxlat": 40.7921309, + "maxlon": -73.9717771 + }, + "nodes": [ + 9457151137, + 8687882662, + 42442514 + ], + "geometry": [ + { "lat": 40.7918326, "lon": -73.9719976 }, + { "lat": 40.7920740, "lon": -73.9718218 }, + { "lat": 40.7921309, "lon": -73.9717771 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731524, + "bounds": { + "minlat": 40.7936681, + "minlon": -73.9706595, + "maxlat": 40.7940644, + "maxlon": -73.9703681 + }, + "nodes": [ + 9457151138, + 8687882786, + 42442534 + ], + "geometry": [ + { "lat": 40.7936681, "lon": -73.9706595 }, + { "lat": 40.7939696, "lon": -73.9704367 }, + { "lat": 40.7940644, "lon": -73.9703681 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731525, + "bounds": { + "minlat": 40.7945859, + "minlon": -73.9699879, + "maxlat": 40.7947346, + "maxlon": -73.9698719 + }, + "nodes": [ + 9457151139, + 7801775768, + 42442542 + ], + "geometry": [ + { "lat": 40.7945859, "lon": -73.9699879 }, + { "lat": 40.7946798, "lon": -73.9699146 }, + { "lat": 40.7947346, "lon": -73.9698719 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731526, + "bounds": { + "minlat": 40.7947346, + "minlon": -73.9698719, + "maxlat": 40.7958415, + "maxlon": -73.9690412 + }, + "nodes": [ + 42442542, + 7801775721, + 11296201244, + 42433252, + 11296201243, + 9457151140 + ], + "geometry": [ + { "lat": 40.7947346, "lon": -73.9698719 }, + { "lat": 40.7948045, "lon": -73.9698302 }, + { "lat": 40.7953039, "lon": -73.9694625 }, + { "lat": 40.7953672, "lon": -73.9694159 }, + { "lat": 40.7954214, "lon": -73.9693730 }, + { "lat": 40.7958415, "lon": -73.9690412 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731527, + "bounds": { + "minlat": 40.7958415, + "minlon": -73.9690412, + "maxlat": 40.7959832, + "maxlon": -73.9689386 + }, + "nodes": [ + 9457151140, + 11296201237, + 42442549 + ], + "geometry": [ + { "lat": 40.7958415, "lon": -73.9690412 }, + { "lat": 40.7959313, "lon": -73.9689766 }, + { "lat": 40.7959832, "lon": -73.9689386 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731528, + "bounds": { + "minlat": 40.7959832, + "minlon": -73.9689386, + "maxlat": 40.7970925, + "maxlon": -73.9681276 + }, + "nodes": [ + 42442549, + 11296201236, + 11296201229, + 42442552, + 11296201228, + 9457151141 + ], + "geometry": [ + { "lat": 40.7959832, "lon": -73.9689386 }, + { "lat": 40.7960424, "lon": -73.9688953 }, + { "lat": 40.7965562, "lon": -73.9685198 }, + { "lat": 40.7966412, "lon": -73.9684577 }, + { "lat": 40.7967317, "lon": -73.9683914 }, + { "lat": 40.7970925, "lon": -73.9681276 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731529, + "bounds": { + "minlat": 40.7970925, + "minlon": -73.9681276, + "maxlat": 40.7972412, + "maxlon": -73.9680189 + }, + "nodes": [ + 9457151141, + 10166004056, + 42442555 + ], + "geometry": [ + { "lat": 40.7970925, "lon": -73.9681276 }, + { "lat": 40.7971844, "lon": -73.9680604 }, + { "lat": 40.7972412, "lon": -73.9680189 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "cycleway:right:lane": "exclusive", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731530, + "bounds": { + "minlat": 40.7972412, + "minlon": -73.9680189, + "maxlat": 40.7974323, + "maxlon": -73.9678810 + }, + "nodes": [ + 42442555, + 10166004055, + 13768413586 + ], + "geometry": [ + { "lat": 40.7972412, "lon": -73.9680189 }, + { "lat": 40.7973034, "lon": -73.9679738 }, + { "lat": 40.7974323, "lon": -73.9678810 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731531, + "bounds": { + "minlat": 40.7983602, + "minlon": -73.9672260, + "maxlat": 40.7985077, + "maxlon": -73.9671272 + }, + "nodes": [ + 9675461940, + 7571274545, + 42442559 + ], + "geometry": [ + { "lat": 40.7983602, "lon": -73.9672260 }, + { "lat": 40.7984536, "lon": -73.9671619 }, + { "lat": 40.7985077, "lon": -73.9671272 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731532, + "bounds": { + "minlat": 40.7999964, + "minlon": -73.9660235, + "maxlat": 40.8004295, + "maxlon": -73.9656909 + }, + "nodes": [ + 9457151144, + 10166004079, + 42421741 + ], + "geometry": [ + { "lat": 40.7999964, "lon": -73.9660235 }, + { "lat": 40.8003345, "lon": -73.9657605 }, + { "lat": 40.8004295, "lon": -73.9656909 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:lane": "exclusive", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731533, + "bounds": { + "minlat": 40.7996114, + "minlon": -73.9663103, + "maxlat": 40.7997657, + "maxlon": -73.9662021 + }, + "nodes": [ + 9675461941, + 11803975683, + 42437918 + ], + "geometry": [ + { "lat": 40.7996114, "lon": -73.9663103 }, + { "lat": 40.7997073, "lon": -73.9662431 }, + { "lat": 40.7997657, "lon": -73.9662021 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025731534, + "bounds": { + "minlat": 40.7997657, + "minlon": -73.9662021, + "maxlat": 40.7999964, + "maxlon": -73.9660235 + }, + "nodes": [ + 42437918, + 11803975681, + 9457151144 + ], + "geometry": [ + { "lat": 40.7997657, "lon": -73.9662021 }, + { "lat": 40.7998250, "lon": -73.9661562 }, + { "lat": 40.7999964, "lon": -73.9660235 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025734017, + "bounds": { + "minlat": 40.7689144, + "minlon": -73.9849943, + "maxlat": 40.7692310, + "maxlon": -73.9847685 + }, + "nodes": [ + 42440934, + 10616984020, + 9457138082 + ], + "geometry": [ + { "lat": 40.7692310, "lon": -73.9847685 }, + { "lat": 40.7691564, "lon": -73.9848217 }, + { "lat": 40.7689144, "lon": -73.9849943 } + ], + "tags": { + "covered": "no", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025734018, + "bounds": { + "minlat": 40.7637447, + "minlon": -73.9887575, + "maxlat": 40.7641124, + "maxlon": -73.9884895 + }, + "nodes": [ + 42445025, + 3463815147, + 9457138083 + ], + "geometry": [ + { "lat": 40.7641124, "lon": -73.9884895 }, + { "lat": 40.7640609, "lon": -73.9885270 }, + { "lat": 40.7637447, "lon": -73.9887575 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025734019, + "bounds": { + "minlat": 40.7634901, + "minlon": -73.9889429, + "maxlat": 40.7637447, + "maxlon": -73.9887575 + }, + "nodes": [ + 9457138083, + 3463813446, + 42440163 + ], + "geometry": [ + { "lat": 40.7637447, "lon": -73.9887575 }, + { "lat": 40.7635464, "lon": -73.9889020 }, + { "lat": 40.7634901, "lon": -73.9889429 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025734020, + "bounds": { + "minlat": 40.7625004, + "minlon": -73.9896640, + "maxlat": 40.7628617, + "maxlon": -73.9894017 + }, + "nodes": [ + 42432594, + 3463813443, + 12217543110 + ], + "geometry": [ + { "lat": 40.7628617, "lon": -73.9894017 }, + { "lat": 40.7628075, "lon": -73.9894404 }, + { "lat": 40.7625004, "lon": -73.9896640 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025734021, + "bounds": { + "minlat": 40.7622326, + "minlon": -73.9898591, + "maxlat": 40.7622934, + "maxlon": -73.9898150 + }, + "nodes": [ + 10171089668, + 42443532 + ], + "geometry": [ + { "lat": 40.7622934, "lon": -73.9898150 }, + { "lat": 40.7622326, "lon": -73.9898591 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025734022, + "bounds": { + "minlat": 40.7573173, + "minlon": -73.9934566, + "maxlat": 40.7578400, + "maxlon": -73.9930728 + }, + "nodes": [ + 42445001, + 7903850294, + 9457138085 + ], + "geometry": [ + { "lat": 40.7578400, "lon": -73.9930728 }, + { "lat": 40.7577260, "lon": -73.9931508 }, + { "lat": 40.7573173, "lon": -73.9934566 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1025734023, + "bounds": { + "minlat": 40.7571536, + "minlon": -73.9935785, + "maxlat": 40.7573173, + "maxlon": -73.9934566 + }, + "nodes": [ + 9457138085, + 7903850293, + 42444991 + ], + "geometry": [ + { "lat": 40.7573173, "lon": -73.9934566 }, + { "lat": 40.7572146, "lon": -73.9935336 }, + { "lat": 40.7571536, "lon": -73.9935785 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1026222359, + "bounds": { + "minlat": 40.8656002, + "minlon": -73.9082019, + "maxlat": 40.8657744, + "maxlon": -73.9081262 + }, + "nodes": [ + 1396352590, + 2328996405 + ], + "geometry": [ + { "lat": 40.8656002, "lon": -73.9082019 }, + { "lat": 40.8657744, "lon": -73.9081262 } + ], + "tags": { + "highway": "tertiary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 1026371206, + "bounds": { + "minlat": 40.8531696, + "minlon": -73.9617468, + "maxlat": 40.8533173, + "maxlon": -73.9607266 + }, + "nodes": [ + 2408237865, + 595462048, + 12213447902, + 12213447903, + 298792359 + ], + "geometry": [ + { "lat": 40.8533173, "lon": -73.9617468 }, + { "lat": 40.8532567, "lon": -73.9612837 }, + { "lat": 40.8532165, "lon": -73.9610074 }, + { "lat": 40.8531936, "lon": -73.9608611 }, + { "lat": 40.8531696, "lon": -73.9607266 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "toll": "yes", + "tunnel": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 1026371207, + "bounds": { + "minlat": 40.8535590, + "minlon": -73.9627697, + "maxlat": 40.8539211, + "maxlon": -73.9616639 + }, + "nodes": [ + 2408237862, + 76464178, + 76464179, + 76464180 + ], + "geometry": [ + { "lat": 40.8535590, "lon": -73.9616639 }, + { "lat": 40.8536582, "lon": -73.9620097 }, + { "lat": 40.8537717, "lon": -73.9623584 }, + { "lat": 40.8539211, "lon": -73.9627697 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 1026450528, + "bounds": { + "minlat": 40.8325915, + "minlon": -73.9455884, + "maxlat": 40.8329462, + "maxlon": -73.9452570 + }, + "nodes": [ + 9775435992, + 11291880592, + 9463603354, + 11295759936, + 9463603355 + ], + "geometry": [ + { "lat": 40.8325915, "lon": -73.9454140 }, + { "lat": 40.8326959, "lon": -73.9453364 }, + { "lat": 40.8328027, "lon": -73.9452570 }, + { "lat": 40.8329021, "lon": -73.9454865 }, + { "lat": 40.8329462, "lon": -73.9455884 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1026652612, + "bounds": { + "minlat": 40.8289584, + "minlon": -73.9801741, + "maxlat": 40.8291132, + "maxlon": -73.9800932 + }, + "nodes": [ + 5340819449, + 5691967840 + ], + "geometry": [ + { "lat": 40.8289584, "lon": -73.9801741 }, + { "lat": 40.8291132, "lon": -73.9800932 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "2", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1026652613, + "bounds": { + "minlat": 40.8291132, + "minlon": -73.9800932, + "maxlat": 40.8295555, + "maxlon": -73.9798514 + }, + "nodes": [ + 5691967840, + 5340819450 + ], + "geometry": [ + { "lat": 40.8291132, "lon": -73.9800932 }, + { "lat": 40.8295555, "lon": -73.9798514 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "2", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1026652614, + "bounds": { + "minlat": 40.8290309, + "minlon": -73.9800932, + "maxlat": 40.8291132, + "maxlon": -73.9799580 + }, + "nodes": [ + 5691967838, + 5691967839, + 5691967840 + ], + "geometry": [ + { "lat": 40.8290309, "lon": -73.9799580 }, + { "lat": 40.8290545, "lon": -73.9799945 }, + { "lat": 40.8291132, "lon": -73.9800932 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1026652615, + "bounds": { + "minlat": 40.8287151, + "minlon": -73.9801636, + "maxlat": 40.8290309, + "maxlon": -73.9799580 + }, + "nodes": [ + 5691967841, + 5691967837, + 5691967838 + ], + "geometry": [ + { "lat": 40.8287151, "lon": -73.9801636 }, + { "lat": 40.8288321, "lon": -73.9801068 }, + { "lat": 40.8290309, "lon": -73.9799580 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1026652616, + "bounds": { + "minlat": 40.8286158, + "minlon": -73.9805185, + "maxlat": 40.8290805, + "maxlon": -73.9802619 + }, + "nodes": [ + 103235739, + 7533932722 + ], + "geometry": [ + { "lat": 40.8290805, "lon": -73.9802619 }, + { "lat": 40.8286158, "lon": -73.9805185 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "3", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "turn:lanes": "left||", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1026653618, + "bounds": { + "minlat": 40.8277928, + "minlon": -73.9804516, + "maxlat": 40.8278635, + "maxlon": -73.9804390 + }, + "nodes": [ + 7533716666, + 8971240694 + ], + "geometry": [ + { "lat": 40.8278635, "lon": -73.9804516 }, + { "lat": 40.8277928, "lon": -73.9804390 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Winston Drive", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Winston", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1026720299, + "bounds": { + "minlat": 40.8508026, + "minlon": -73.9671300, + "maxlat": 40.8508325, + "maxlon": -73.9668772 + }, + "nodes": [ + 7111637699, + 7111637702, + 103276277 + ], + "geometry": [ + { "lat": 40.8508026, "lon": -73.9668772 }, + { "lat": 40.8508048, "lon": -73.9668951 }, + { "lat": 40.8508325, "lon": -73.9671300 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1027049029, + "bounds": { + "minlat": 40.8157123, + "minlon": -73.9397877, + "maxlat": 40.8158754, + "maxlon": -73.9396685 + }, + "nodes": [ + 9468882851, + 4205440403 + ], + "geometry": [ + { "lat": 40.8158754, "lon": -73.9396685 }, + { "lat": 40.8157123, "lon": -73.9397877 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "turn:lanes": "||left", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 1027130505, + "bounds": { + "minlat": 40.7510694, + "minlon": -73.9980426, + "maxlat": 40.7515074, + "maxlon": -73.9977245 + }, + "nodes": [ + 4557517549, + 8262309045, + 11509842328, + 358448394 + ], + "geometry": [ + { "lat": 40.7515074, "lon": -73.9977245 }, + { "lat": 40.7514485, "lon": -73.9977649 }, + { "lat": 40.7511575, "lon": -73.9979779 }, + { "lat": 40.7510694, "lon": -73.9980426 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027130506, + "bounds": { + "minlat": 40.7509074, + "minlon": -73.9981555, + "maxlat": 40.7510694, + "maxlon": -73.9980426 + }, + "nodes": [ + 358448394, + 10173309977, + 42437688 + ], + "geometry": [ + { "lat": 40.7510694, "lon": -73.9980426 }, + { "lat": 40.7509742, "lon": -73.9981107 }, + { "lat": 40.7509074, "lon": -73.9981555 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027130507, + "bounds": { + "minlat": 40.7496585, + "minlon": -73.9990646, + "maxlat": 40.7501371, + "maxlon": -73.9987141 + }, + "nodes": [ + 9143542442, + 12152894793, + 8262308980, + 42438672 + ], + "geometry": [ + { "lat": 40.7501371, "lon": -73.9987141 }, + { "lat": 40.7497483, "lon": -73.9989980 }, + { "lat": 40.7497031, "lon": -73.9990310 }, + { "lat": 40.7496585, "lon": -73.9990646 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027130508, + "bounds": { + "minlat": 40.7501371, + "minlon": -73.9987141, + "maxlat": 40.7502754, + "maxlon": -73.9986119 + }, + "nodes": [ + 5545401594, + 10171484169, + 9143542442 + ], + "geometry": [ + { "lat": 40.7502754, "lon": -73.9986119 }, + { "lat": 40.7502063, "lon": -73.9986630 }, + { "lat": 40.7501371, "lon": -73.9987141 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027130509, + "bounds": { + "minlat": 40.7487888, + "minlon": -73.9996964, + "maxlat": 40.7496585, + "maxlon": -73.9990646 + }, + "nodes": [ + 42438672, + 5143758609, + 10911890471, + 3254626250, + 9469550700 + ], + "geometry": [ + { "lat": 40.7496585, "lon": -73.9990646 }, + { "lat": 40.7495996, "lon": -73.9991068 }, + { "lat": 40.7491228, "lon": -73.9994538 }, + { "lat": 40.7489511, "lon": -73.9995772 }, + { "lat": 40.7487888, "lon": -73.9996964 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027130510, + "bounds": { + "minlat": 40.7484299, + "minlon": -73.9999571, + "maxlat": 40.7487888, + "maxlon": -73.9996964 + }, + "nodes": [ + 9469550700, + 12152909711, + 5143758605, + 42444933 + ], + "geometry": [ + { "lat": 40.7487888, "lon": -73.9996964 }, + { "lat": 40.7485178, "lon": -73.9998932 }, + { "lat": 40.7484743, "lon": -73.9999247 }, + { "lat": 40.7484299, "lon": -73.9999571 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027130511, + "bounds": { + "minlat": 40.7465212, + "minlon": -74.0013497, + "maxlat": 40.7469114, + "maxlon": -74.0010612 + }, + "nodes": [ + 9469550702, + 8239225250, + 42437909 + ], + "geometry": [ + { "lat": 40.7469114, "lon": -74.0010612 }, + { "lat": 40.7465967, "lon": -74.0012866 }, + { "lat": 40.7465212, "lon": -74.0013497 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027130512, + "bounds": { + "minlat": 40.7471710, + "minlon": -74.0008681, + "maxlat": 40.7475359, + "maxlon": -74.0006047 + }, + "nodes": [ + 9469550701, + 8239225231, + 42427477 + ], + "geometry": [ + { "lat": 40.7475359, "lon": -74.0006047 }, + { "lat": 40.7472337, "lon": -74.0008247 }, + { "lat": 40.7471710, "lon": -74.0008681 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027130513, + "bounds": { + "minlat": 40.7469114, + "minlon": -74.0010612, + "maxlat": 40.7471710, + "maxlon": -74.0008681 + }, + "nodes": [ + 42427477, + 8239225237, + 9469550702 + ], + "geometry": [ + { "lat": 40.7471710, "lon": -74.0008681 }, + { "lat": 40.7471155, "lon": -74.0009092 }, + { "lat": 40.7469114, "lon": -74.0010612 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "source:oneway": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027130514, + "bounds": { + "minlat": 40.7405180, + "minlon": -74.0052346, + "maxlat": 40.7408488, + "maxlon": -74.0051364 + }, + "nodes": [ + 42436439, + 8262308700, + 4685465959 + ], + "geometry": [ + { "lat": 40.7408488, "lon": -74.0051364 }, + { "lat": 40.7407553, "lon": -74.0051567 }, + { "lat": 40.7405180, "lon": -74.0052346 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027181001, + "bounds": { + "minlat": 40.7381289, + "minlon": -74.0041378, + "maxlat": 40.7382262, + "maxlon": -74.0040312 + }, + "nodes": [ + 42435581, + 8307463706, + 6518638079 + ], + "geometry": [ + { "lat": 40.7381289, "lon": -74.0041378 }, + { "lat": 40.7381873, "lon": -74.0040751 }, + { "lat": 40.7382262, "lon": -74.0040312 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027181003, + "bounds": { + "minlat": 40.7490560, + "minlon": -73.9957286, + "maxlat": 40.7496742, + "maxlon": -73.9952961 + }, + "nodes": [ + 42427812, + 10170593075, + 10170593080, + 4443775464 + ], + "geometry": [ + { "lat": 40.7490560, "lon": -73.9957286 }, + { "lat": 40.7491047, "lon": -73.9956928 }, + { "lat": 40.7496218, "lon": -73.9953327 }, + { "lat": 40.7496742, "lon": -73.9952961 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027181004, + "bounds": { + "minlat": 40.7486647, + "minlon": -73.9960202, + "maxlat": 40.7490560, + "maxlon": -73.9957286 + }, + "nodes": [ + 9469803473, + 10170593076, + 42427812 + ], + "geometry": [ + { "lat": 40.7486647, "lon": -73.9960202 }, + { "lat": 40.7489852, "lon": -73.9957797 }, + { "lat": 40.7490560, "lon": -73.9957286 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027181005, + "bounds": { + "minlat": 40.7521986, + "minlon": -73.9934580, + "maxlat": 40.7525910, + "maxlon": -73.9931720 + }, + "nodes": [ + 42435644, + 8660596990, + 9469803475 + ], + "geometry": [ + { "lat": 40.7521986, "lon": -73.9934580 }, + { "lat": 40.7522826, "lon": -73.9933974 }, + { "lat": 40.7525910, "lon": -73.9931720 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027181006, + "bounds": { + "minlat": 40.7525910, + "minlon": -73.9931720, + "maxlat": 40.7528582, + "maxlon": -73.9929759 + }, + "nodes": [ + 9469803475, + 8660596975, + 42435645 + ], + "geometry": [ + { "lat": 40.7525910, "lon": -73.9931720 }, + { "lat": 40.7528046, "lon": -73.9930150 }, + { "lat": 40.7528582, "lon": -73.9929759 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027181007, + "bounds": { + "minlat": 40.7577210, + "minlon": -73.9894354, + "maxlat": 40.7579117, + "maxlon": -73.9892961 + }, + "nodes": [ + 9469803476, + 10168088472, + 5849918504 + ], + "geometry": [ + { "lat": 40.7577210, "lon": -73.9894354 }, + { "lat": 40.7578519, "lon": -73.9893398 }, + { "lat": 40.7579117, "lon": -73.9892961 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027189507, + "bounds": { + "minlat": 40.7604088, + "minlon": -73.9874753, + "maxlat": 40.7610365, + "maxlon": -73.9870177 + }, + "nodes": [ + 42435677, + 10168088491, + 10168088500, + 42435680 + ], + "geometry": [ + { "lat": 40.7604088, "lon": -73.9874753 }, + { "lat": 40.7604731, "lon": -73.9874291 }, + { "lat": 40.7609807, "lon": -73.9870584 }, + { "lat": 40.7610365, "lon": -73.9870177 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|none", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027189508, + "bounds": { + "minlat": 40.7601095, + "minlon": -73.9876912, + "maxlat": 40.7604088, + "maxlon": -73.9874753 + }, + "nodes": [ + 9469961217, + 10168088492, + 42435677 + ], + "geometry": [ + { "lat": 40.7601095, "lon": -73.9876912 }, + { "lat": 40.7603605, "lon": -73.9875105 }, + { "lat": 40.7604088, "lon": -73.9874753 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027189509, + "bounds": { + "minlat": 40.7631725, + "minlon": -73.9854660, + "maxlat": 40.7640077, + "maxlon": -73.9848520 + }, + "nodes": [ + 9469961218, + 10089666758, + 9140940655, + 42435702, + 10089637978, + 4207815979 + ], + "geometry": [ + { "lat": 40.7631725, "lon": -73.9854660 }, + { "lat": 40.7634946, "lon": -73.9852378 }, + { "lat": 40.7635153, "lon": -73.9852231 }, + { "lat": 40.7635566, "lon": -73.9851938 }, + { "lat": 40.7636060, "lon": -73.9851564 }, + { "lat": 40.7640077, "lon": -73.9848520 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|through|through", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027189510, + "bounds": { + "minlat": 40.7629156, + "minlon": -73.9856481, + "maxlat": 40.7631725, + "maxlon": -73.9854660 + }, + "nodes": [ + 42435687, + 10091039011, + 13030609835, + 9469961218 + ], + "geometry": [ + { "lat": 40.7629156, "lon": -73.9856481 }, + { "lat": 40.7629780, "lon": -73.9856038 }, + { "lat": 40.7630863, "lon": -73.9855271 }, + { "lat": 40.7631725, "lon": -73.9854660 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027206709, + "bounds": { + "minlat": 40.7348467, + "minlon": -73.9944743, + "maxlat": 40.7360074, + "maxlon": -73.9936325 + }, + "nodes": [ + 42440710, + 8310246305, + 8310246296, + 42429373, + 8309479792, + 9470088387 + ], + "geometry": [ + { "lat": 40.7360074, "lon": -73.9936325 }, + { "lat": 40.7359224, "lon": -73.9936924 }, + { "lat": 40.7353684, "lon": -73.9940794 }, + { "lat": 40.7353130, "lon": -73.9941180 }, + { "lat": 40.7352631, "lon": -73.9941561 }, + { "lat": 40.7348467, "lon": -73.9944743 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1027206710, + "bounds": { + "minlat": 40.7346805, + "minlon": -73.9946012, + "maxlat": 40.7348467, + "maxlon": -73.9944743 + }, + "nodes": [ + 9470088387, + 8309479788, + 42439070 + ], + "geometry": [ + { "lat": 40.7348467, "lon": -73.9944743 }, + { "lat": 40.7347317, "lon": -73.9945621 }, + { "lat": 40.7346805, "lon": -73.9946012 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1027206711, + "bounds": { + "minlat": 40.7328696, + "minlon": -73.9959296, + "maxlat": 40.7334463, + "maxlon": -73.9955159 + }, + "nodes": [ + 42430857, + 8309479728, + 12179562796, + 8265964350, + 42421877 + ], + "geometry": [ + { "lat": 40.7334463, "lon": -73.9955159 }, + { "lat": 40.7333940, "lon": -73.9955555 }, + { "lat": 40.7329609, "lon": -73.9958729 }, + { "lat": 40.7329191, "lon": -73.9959008 }, + { "lat": 40.7328696, "lon": -73.9959296 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1027206712, + "bounds": { + "minlat": 40.7334463, + "minlon": -73.9955159, + "maxlat": 40.7336073, + "maxlon": -73.9953994 + }, + "nodes": [ + 9470088388, + 12179524682, + 8309479727, + 42430857 + ], + "geometry": [ + { "lat": 40.7336073, "lon": -73.9953994 }, + { "lat": 40.7335474, "lon": -73.9954438 }, + { "lat": 40.7335029, "lon": -73.9954768 }, + { "lat": 40.7334463, "lon": -73.9955159 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1027206713, + "bounds": { + "minlat": 40.7314217, + "minlon": -73.9969810, + "maxlat": 40.7315898, + "maxlon": -73.9968539 + }, + "nodes": [ + 9470088389, + 3584752516, + 3584752508 + ], + "geometry": [ + { "lat": 40.7315898, "lon": -73.9968539 }, + { "lat": 40.7314772, "lon": -73.9969364 }, + { "lat": 40.7314217, "lon": -73.9969810 } + ], + "tags": { + "bus": "no", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1027208771, + "bounds": { + "minlat": 40.7440931, + "minlon": -73.9889755, + "maxlat": 40.7445363, + "maxlon": -73.9888917 + }, + "nodes": [ + 42428220, + 10167162590, + 7369969945 + ], + "geometry": [ + { "lat": 40.7445363, "lon": -73.9888917 }, + { "lat": 40.7444761, "lon": -73.9889052 }, + { "lat": 40.7440931, "lon": -73.9889755 } + ], + "tags": { + "bicycle": "designated", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "pedestrian", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027208772, + "bounds": { + "minlat": 40.7454486, + "minlon": -73.9887015, + "maxlat": 40.7458213, + "maxlon": -73.9886532 + }, + "nodes": [ + 11355997387, + 11766442637, + 11766442638, + 11766442639, + 7369969937 + ], + "geometry": [ + { "lat": 40.7458213, "lon": -73.9886532 }, + { "lat": 40.7456683, "lon": -73.9886824 }, + { "lat": 40.7455796, "lon": -73.9886759 }, + { "lat": 40.7455236, "lon": -73.9886730 }, + { "lat": 40.7454486, "lon": -73.9887015 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1027227118, + "bounds": { + "minlat": 40.7354060, + "minlon": -73.9796043, + "maxlat": 40.7356057, + "maxlon": -73.9794530 + }, + "nodes": [ + 9470272145, + 3601295722, + 42451787 + ], + "geometry": [ + { "lat": 40.7354060, "lon": -73.9796043 }, + { "lat": 40.7355483, "lon": -73.9794969 }, + { "lat": 40.7356057, "lon": -73.9794530 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027227119, + "bounds": { + "minlat": 40.7372190, + "minlon": -73.9783054, + "maxlat": 40.7375593, + "maxlon": -73.9780485 + }, + "nodes": [ + 9470272146, + 13701036517, + 8127675285, + 42436598 + ], + "geometry": [ + { "lat": 40.7372190, "lon": -73.9783054 }, + { "lat": 40.7372764, "lon": -73.9782616 }, + { "lat": 40.7374938, "lon": -73.9780957 }, + { "lat": 40.7375593, "lon": -73.9780485 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027227120, + "bounds": { + "minlat": 40.7368956, + "minlon": -73.9785412, + "maxlat": 40.7372190, + "maxlon": -73.9783054 + }, + "nodes": [ + 42448707, + 3601295762, + 9470272146 + ], + "geometry": [ + { "lat": 40.7368956, "lon": -73.9785412 }, + { "lat": 40.7369933, "lon": -73.9784698 }, + { "lat": 40.7372190, "lon": -73.9783054 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027227121, + "bounds": { + "minlat": 40.7375593, + "minlon": -73.9780485, + "maxlat": 40.7379802, + "maxlon": -73.9777424 + }, + "nodes": [ + 42436598, + 8127675288, + 9470272147 + ], + "geometry": [ + { "lat": 40.7375593, "lon": -73.9780485 }, + { "lat": 40.7376167, "lon": -73.9780068 }, + { "lat": 40.7379802, "lon": -73.9777424 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027227122, + "bounds": { + "minlat": 40.7379802, + "minlon": -73.9777424, + "maxlat": 40.7381697, + "maxlon": -73.9776048 + }, + "nodes": [ + 9470272147, + 6133355291, + 8119542594, + 42455897 + ], + "geometry": [ + { "lat": 40.7379802, "lon": -73.9777424 }, + { "lat": 40.7380422, "lon": -73.9776973 }, + { "lat": 40.7381173, "lon": -73.9776429 }, + { "lat": 40.7381697, "lon": -73.9776048 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027227123, + "bounds": { + "minlat": 40.7381697, + "minlon": -73.9776048, + "maxlat": 40.7385887, + "maxlon": -73.9772992 + }, + "nodes": [ + 42455897, + 8119542586, + 9470272148 + ], + "geometry": [ + { "lat": 40.7381697, "lon": -73.9776048 }, + { "lat": 40.7382326, "lon": -73.9775590 }, + { "lat": 40.7385887, "lon": -73.9772992 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027227124, + "bounds": { + "minlat": 40.7385887, + "minlon": -73.9772992, + "maxlat": 40.7387960, + "maxlon": -73.9771480 + }, + "nodes": [ + 9470272148, + 5007384476, + 42429918 + ], + "geometry": [ + { "lat": 40.7385887, "lon": -73.9772992 }, + { "lat": 40.7387358, "lon": -73.9771920 }, + { "lat": 40.7387960, "lon": -73.9771480 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027227125, + "bounds": { + "minlat": 40.7398373, + "minlon": -73.9763904, + "maxlat": 40.7400362, + "maxlon": -73.9762474 + }, + "nodes": [ + 9470272149, + 8119193327, + 42446293 + ], + "geometry": [ + { "lat": 40.7398373, "lon": -73.9763904 }, + { "lat": 40.7399803, "lon": -73.9762870 }, + { "lat": 40.7400362, "lon": -73.9762474 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027227126, + "bounds": { + "minlat": 40.7400362, + "minlon": -73.9762474, + "maxlat": 40.7401752, + "maxlon": -73.9761435 + }, + "nodes": [ + 42446293, + 8119192804, + 1632878994 + ], + "geometry": [ + { "lat": 40.7400362, "lon": -73.9762474 }, + { "lat": 40.7400882, "lon": -73.9762085 }, + { "lat": 40.7401752, "lon": -73.9761435 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027227127, + "bounds": { + "minlat": 40.7430899, + "minlon": -73.9740139, + "maxlat": 40.7433462, + "maxlon": -73.9738280 + }, + "nodes": [ + 42453187, + 3928841148, + 6298391901, + 9470272151 + ], + "geometry": [ + { "lat": 40.7430899, "lon": -73.9740139 }, + { "lat": 40.7431665, "lon": -73.9739574 }, + { "lat": 40.7433081, "lon": -73.9738561 }, + { "lat": 40.7433462, "lon": -73.9738280 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027227128, + "bounds": { + "minlat": 40.7428683, + "minlon": -73.9741764, + "maxlat": 40.7430899, + "maxlon": -73.9740139 + }, + "nodes": [ + 9470272150, + 3928841145, + 42453187 + ], + "geometry": [ + { "lat": 40.7428683, "lon": -73.9741764 }, + { "lat": 40.7430164, "lon": -73.9740681 }, + { "lat": 40.7430899, "lon": -73.9740139 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027227129, + "bounds": { + "minlat": 40.7433462, + "minlon": -73.9738280, + "maxlat": 40.7437863, + "maxlon": -73.9735080 + }, + "nodes": [ + 9470272151, + 3932847289, + 42445390 + ], + "geometry": [ + { "lat": 40.7433462, "lon": -73.9738280 }, + { "lat": 40.7436855, "lon": -73.9735827 }, + { "lat": 40.7437863, "lon": -73.9735080 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027228244, + "bounds": { + "minlat": 40.7465280, + "minlon": -73.9715090, + "maxlat": 40.7469293, + "maxlon": -73.9712165 + }, + "nodes": [ + 4917679392, + 3569749097, + 42445667 + ], + "geometry": [ + { "lat": 40.7465280, "lon": -73.9715090 }, + { "lat": 40.7468639, "lon": -73.9712672 }, + { "lat": 40.7469293, "lon": -73.9712165 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1027372597, + "bounds": { + "minlat": 40.8498300, + "minlon": -73.9965100, + "maxlat": 40.8504670, + "maxlon": -73.9960530 + }, + "nodes": [ + 103142411, + 103118176 + ], + "geometry": [ + { "lat": 40.8498300, "lon": -73.9965100 }, + { "lat": 40.8504670, "lon": -73.9960530 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1028142991, + "bounds": { + "minlat": 40.8575656, + "minlon": -73.9354769, + "maxlat": 40.8580746, + "maxlon": -73.9349583 + }, + "nodes": [ + 9476704231, + 9472229490, + 9472229485, + 9476704232, + 9566181269, + 9476704233, + 9476704234, + 9476704235, + 9476704239, + 9476704236, + 9476704237, + 9472229487, + 9472229493, + 9476704238 + ], + "geometry": [ + { "lat": 40.8575656, "lon": -73.9352613 }, + { "lat": 40.8576092, "lon": -73.9353680 }, + { "lat": 40.8576206, "lon": -73.9353958 }, + { "lat": 40.8576417, "lon": -73.9354416 }, + { "lat": 40.8576564, "lon": -73.9354557 }, + { "lat": 40.8576703, "lon": -73.9354691 }, + { "lat": 40.8577048, "lon": -73.9354769 }, + { "lat": 40.8577424, "lon": -73.9354621 }, + { "lat": 40.8578448, "lon": -73.9353846 }, + { "lat": 40.8578784, "lon": -73.9353588 }, + { "lat": 40.8580746, "lon": -73.9351967 }, + { "lat": 40.8580306, "lon": -73.9350872 }, + { "lat": 40.8580202, "lon": -73.9350645 }, + { "lat": 40.8579727, "lon": -73.9349583 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1028148121, + "bounds": { + "minlat": 40.8043508, + "minlon": -74.0033002, + "maxlat": 40.8043822, + "maxlon": -74.0030372 + }, + "nodes": [ + 5481963156, + 5512683274, + 5481963155 + ], + "geometry": [ + { "lat": 40.8043822, "lon": -74.0033002 }, + { "lat": 40.8043667, "lon": -74.0031823 }, + { "lat": 40.8043508, "lon": -74.0030372 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1028148122, + "bounds": { + "minlat": 40.8049777, + "minlon": -74.0021642, + "maxlat": 40.8052195, + "maxlon": -74.0019509 + }, + "nodes": [ + 5481963139, + 5481963138 + ], + "geometry": [ + { "lat": 40.8049777, "lon": -74.0021642 }, + { "lat": 40.8052195, "lon": -74.0019509 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1028148123, + "bounds": { + "minlat": 40.8050979, + "minlon": -74.0031700, + "maxlat": 40.8051375, + "maxlon": -74.0029561 + }, + "nodes": [ + 5481963135, + 103879015 + ], + "geometry": [ + { "lat": 40.8050979, "lon": -74.0029561 }, + { "lat": 40.8051375, "lon": -74.0031700 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1028241521, + "bounds": { + "minlat": 40.7276874, + "minlon": -73.9595492, + "maxlat": 40.7282771, + "maxlon": -73.9593035 + }, + "nodes": [ + 6895004590, + 9478398307, + 9478398306, + 9478398305 + ], + "geometry": [ + { "lat": 40.7282620, "lon": -73.9595492 }, + { "lat": 40.7276874, "lon": -73.9594603 }, + { "lat": 40.7277013, "lon": -73.9593035 }, + { "lat": 40.7282771, "lon": -73.9593926 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1028897919, + "bounds": { + "minlat": 40.8244860, + "minlon": -73.9519566, + "maxlat": 40.8245675, + "maxlon": -73.9517593 + }, + "nodes": [ + 42428922, + 2541754724, + 561035358 + ], + "geometry": [ + { "lat": 40.8245675, "lon": -73.9519566 }, + { "lat": 40.8245287, "lon": -73.9518675 }, + { "lat": 40.8244860, "lon": -73.9517593 } + ], + "tags": { + "highway": "residential", + "name": "West 142nd Street", + "name_1": "West 142 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "142nd", + "tiger:name_base_1": "142", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1028897920, + "bounds": { + "minlat": 40.8223836, + "minlon": -73.9535578, + "maxlat": 40.8230592, + "maxlon": -73.9530623 + }, + "nodes": [ + 9660687202, + 10170641701, + 42428914, + 10170641702, + 9660687203 + ], + "geometry": [ + { "lat": 40.8230592, "lon": -73.9530623 }, + { "lat": 40.8227549, "lon": -73.9532809 }, + { "lat": 40.8226911, "lon": -73.9533268 }, + { "lat": 40.8226418, "lon": -73.9533643 }, + { "lat": 40.8223836, "lon": -73.9535578 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1028897921, + "bounds": { + "minlat": 40.8244860, + "minlon": -73.9517593, + "maxlat": 40.8257202, + "maxlon": -73.9508622 + }, + "nodes": [ + 561035358, + 10743657296, + 2922071089, + 561035359, + 2922071091, + 11193596016, + 561035360 + ], + "geometry": [ + { "lat": 40.8244860, "lon": -73.9517593 }, + { "lat": 40.8245451, "lon": -73.9517161 }, + { "lat": 40.8250484, "lon": -73.9513490 }, + { "lat": 40.8251039, "lon": -73.9513097 }, + { "lat": 40.8251711, "lon": -73.9512588 }, + { "lat": 40.8256682, "lon": -73.9508998 }, + { "lat": 40.8257202, "lon": -73.9508622 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1028897922, + "bounds": { + "minlat": 40.8227363, + "minlon": -73.9517593, + "maxlat": 40.8244860, + "maxlon": -73.9476376 + }, + "nodes": [ + 561035358, + 10743657298, + 10617235677, + 42438295, + 10617235678, + 11221649617, + 42438292, + 11221649614, + 10743755755, + 42438291 + ], + "geometry": [ + { "lat": 40.8244860, "lon": -73.9517593 }, + { "lat": 40.8244423, "lon": -73.9516572 }, + { "lat": 40.8236514, "lon": -73.9497882 }, + { "lat": 40.8236097, "lon": -73.9496898 }, + { "lat": 40.8235748, "lon": -73.9496070 }, + { "lat": 40.8233754, "lon": -73.9491346 }, + { "lat": 40.8233158, "lon": -73.9489935 }, + { "lat": 40.8232682, "lon": -73.9488820 }, + { "lat": 40.8227672, "lon": -73.9477099 }, + { "lat": 40.8227363, "lon": -73.9476376 } + ], + "tags": { + "highway": "residential", + "name": "West 142nd Street", + "name_1": "West 142 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1029268299, + "bounds": { + "minlat": 40.7950957, + "minlon": -74.0149624, + "maxlat": 40.7959272, + "maxlon": -74.0142932 + }, + "nodes": [ + 103861902, + 7474498734, + 103861904, + 7474498719, + 103861906 + ], + "geometry": [ + { "lat": 40.7950957, "lon": -74.0149624 }, + { "lat": 40.7951648, "lon": -74.0149048 }, + { "lat": 40.7954294, "lon": -74.0146846 }, + { "lat": 40.7958797, "lon": -74.0143306 }, + { "lat": 40.7959272, "lon": -74.0142932 } + ], + "tags": { + "highway": "residential", + "name": "Jackson Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Jackson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 1029268300, + "bounds": { + "minlat": 40.7950957, + "minlon": -74.0163899, + "maxlat": 40.7957972, + "maxlon": -74.0149624 + }, + "nodes": [ + 103872884, + 7474498705, + 7474498707, + 103861902 + ], + "geometry": [ + { "lat": 40.7957972, "lon": -74.0163899 }, + { "lat": 40.7957077, "lon": -74.0162943 }, + { "lat": 40.7951394, "lon": -74.0150556 }, + { "lat": 40.7950957, "lon": -74.0149624 } + ], + "tags": { + "highway": "residential", + "name": "67th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "67th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 1029395780, + "bounds": { + "minlat": 40.7535842, + "minlon": -73.9663741, + "maxlat": 40.7536872, + "maxlon": -73.9662667 + }, + "nodes": [ + 9490559519, + 6133355290 + ], + "geometry": [ + { "lat": 40.7535842, "lon": -73.9663741 }, + { "lat": 40.7536872, "lon": -73.9662667 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1029395781, + "bounds": { + "minlat": 40.7563888, + "minlon": -73.9643154, + "maxlat": 40.7566809, + "maxlon": -73.9641021 + }, + "nodes": [ + 42455963, + 10168544065, + 9490559520 + ], + "geometry": [ + { "lat": 40.7563888, "lon": -73.9643154 }, + { "lat": 40.7564378, "lon": -73.9642770 }, + { "lat": 40.7566809, "lon": -73.9641021 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1029395782, + "bounds": { + "minlat": 40.8006925, + "minlon": -73.9319786, + "maxlat": 40.8009701, + "maxlon": -73.9317759 + }, + "nodes": [ + 42438153, + 7925143970, + 7925258800, + 9490559522, + 9490559521 + ], + "geometry": [ + { "lat": 40.8006925, "lon": -73.9319786 }, + { "lat": 40.8007453, "lon": -73.9319406 }, + { "lat": 40.8009196, "lon": -73.9318127 }, + { "lat": 40.8009418, "lon": -73.9317971 }, + { "lat": 40.8009701, "lon": -73.9317759 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1029395783, + "bounds": { + "minlat": 40.8009701, + "minlon": -73.9317759, + "maxlat": 40.8010376, + "maxlon": -73.9317332 + }, + "nodes": [ + 9490559521, + 6336676027 + ], + "geometry": [ + { "lat": 40.8009701, "lon": -73.9317759 }, + { "lat": 40.8010376, "lon": -73.9317332 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1029434609, + "bounds": { + "minlat": 40.8018840, + "minlon": -73.9341730, + "maxlat": 40.8019596, + "maxlon": -73.9339793 + }, + "nodes": [ + 3931524260, + 3786728679 + ], + "geometry": [ + { "lat": 40.8018840, "lon": -73.9339793 }, + { "lat": 40.8019596, "lon": -73.9341730 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 124th Street", + "oneway": "yes", + "oneway:bicycle": "no" + } +}, +{ + "type": "way", + "id": 1029434610, + "bounds": { + "minlat": 40.8008201, + "minlon": -73.9349913, + "maxlat": 40.8009841, + "maxlon": -73.9348736 + }, + "nodes": [ + 3931534872, + 7927319050, + 42443099 + ], + "geometry": [ + { "lat": 40.8009841, "lon": -73.9348736 }, + { "lat": 40.8008827, "lon": -73.9349467 }, + { "lat": 40.8008201, "lon": -73.9349913 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1029579214, + "bounds": { + "minlat": 40.7131084, + "minlon": -73.9514517, + "maxlat": 40.7133200, + "maxlon": -73.9492450 + }, + "nodes": [ + 42527653, + 9795356155, + 7154190649, + 8233048579, + 9768177756, + 42520585 + ], + "geometry": [ + { "lat": 40.7133200, "lon": -73.9492450 }, + { "lat": 40.7133104, "lon": -73.9493473 }, + { "lat": 40.7132427, "lon": -73.9500361 }, + { "lat": 40.7131223, "lon": -73.9513056 }, + { "lat": 40.7131177, "lon": -73.9513537 }, + { "lat": 40.7131084, "lon": -73.9514517 } + ], + "tags": { + "highway": "residential", + "name": "Devoe Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 1029579215, + "bounds": { + "minlat": 40.7154640, + "minlon": -73.9497154, + "maxlat": 40.7161773, + "maxlon": -73.9495980 + }, + "nodes": [ + 42527659, + 9802943866, + 9942799061, + 42509922 + ], + "geometry": [ + { "lat": 40.7154640, "lon": -73.9495980 }, + { "lat": 40.7155359, "lon": -73.9496098 }, + { "lat": 40.7161148, "lon": -73.9497051 }, + { "lat": 40.7161773, "lon": -73.9497154 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1029628025, + "bounds": { + "minlat": 40.7208383, + "minlon": -73.9427770, + "maxlat": 40.7213317, + "maxlon": -73.9419099 + }, + "nodes": [ + 42476532, + 6235394687, + 12162675499, + 12162675500, + 12162675498, + 12162675497, + 12188648364, + 42476534 + ], + "geometry": [ + { "lat": 40.7208383, "lon": -73.9427770 }, + { "lat": 40.7208874, "lon": -73.9426967 }, + { "lat": 40.7210690, "lon": -73.9423641 }, + { "lat": 40.7211380, "lon": -73.9422415 }, + { "lat": 40.7212070, "lon": -73.9421190 }, + { "lat": 40.7212658, "lon": -73.9420193 }, + { "lat": 40.7212791, "lon": -73.9419972 }, + { "lat": 40.7213317, "lon": -73.9419099 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1029629816, + "bounds": { + "minlat": 40.7300191, + "minlon": -73.9859090, + "maxlat": 40.7310190, + "maxlon": -73.9835360 + }, + "nodes": [ + 13205862064, + 4376122110, + 8309479596, + 8309479591, + 3834459543, + 42446547 + ], + "geometry": [ + { "lat": 40.7310190, "lon": -73.9859090 }, + { "lat": 40.7309842, "lon": -73.9858264 }, + { "lat": 40.7309663, "lon": -73.9857839 }, + { "lat": 40.7300802, "lon": -73.9836809 }, + { "lat": 40.7300646, "lon": -73.9836439 }, + { "lat": 40.7300191, "lon": -73.9835360 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 12th Street", + "name:el": "Ανατολική 12η Οδός", + "name:ru": "Восточная 12-я стрит", + "name_1": "East 12 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1029629817, + "bounds": { + "minlat": 40.7310190, + "minlon": -73.9862916, + "maxlat": 40.7311859, + "maxlon": -73.9859090 + }, + "nodes": [ + 9492586118, + 13205862065, + 8309479601, + 13205862064 + ], + "geometry": [ + { "lat": 40.7311859, "lon": -73.9862916 }, + { "lat": 40.7311150, "lon": -73.9861292 }, + { "lat": 40.7310765, "lon": -73.9860408 }, + { "lat": 40.7310190, "lon": -73.9859090 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 12th Street", + "name:el": "Ανατολική 12η Οδός", + "name:ru": "Восточная 12-я стрит", + "name_1": "East 12 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1029634435, + "bounds": { + "minlat": 40.7526895, + "minlon": -74.0005305, + "maxlat": 40.7527961, + "maxlon": -74.0004526 + }, + "nodes": [ + 42451695, + 8261122517, + 9492618960 + ], + "geometry": [ + { "lat": 40.7526895, "lon": -74.0005305 }, + { "lat": 40.7527520, "lon": -74.0004860 }, + { "lat": 40.7527961, "lon": -74.0004526 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1029634742, + "bounds": { + "minlat": 40.8006794, + "minlon": -73.9692604, + "maxlat": 40.8011915, + "maxlon": -73.9688902 + }, + "nodes": [ + 9916138285, + 10166004086, + 42431118, + 9916138282, + 9492618964 + ], + "geometry": [ + { "lat": 40.8011915, "lon": -73.9688902 }, + { "lat": 40.8010266, "lon": -73.9690109 }, + { "lat": 40.8009668, "lon": -73.9690527 }, + { "lat": 40.8009103, "lon": -73.9690947 }, + { "lat": 40.8006794, "lon": -73.9692604 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1029634743, + "bounds": { + "minlat": 40.8003353, + "minlon": -73.9695103, + "maxlat": 40.8006794, + "maxlon": -73.9692604 + }, + "nodes": [ + 9492618964, + 9916138286, + 42431116 + ], + "geometry": [ + { "lat": 40.8006794, "lon": -73.9692604 }, + { "lat": 40.8003939, "lon": -73.9694673 }, + { "lat": 40.8003353, "lon": -73.9695103 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1029634744, + "bounds": { + "minlat": 40.7997050, + "minlon": -73.9699722, + "maxlat": 40.8003353, + "maxlon": -73.9695103 + }, + "nodes": [ + 42431113, + 9496980743, + 9916138289, + 42431116 + ], + "geometry": [ + { "lat": 40.7997050, "lon": -73.9699722 }, + { "lat": 40.7997689, "lon": -73.9699258 }, + { "lat": 40.8002785, "lon": -73.9695529 }, + { "lat": 40.8003353, "lon": -73.9695103 } + ], + "tags": { + "hgv": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030026416, + "bounds": { + "minlat": 40.8304936, + "minlon": -74.0103337, + "maxlat": 40.8307949, + "maxlon": -74.0102614 + }, + "nodes": [ + 103224037, + 695054584 + ], + "geometry": [ + { "lat": 40.8304936, "lon": -74.0103337 }, + { "lat": 40.8307949, "lon": -74.0102614 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "40 mph", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657" + } +}, +{ + "type": "way", + "id": 1030119880, + "bounds": { + "minlat": 40.7832429, + "minlon": -73.9478245, + "maxlat": 40.7832858, + "maxlon": -73.9477905 + }, + "nodes": [ + 5637143331, + 5475082078 + ], + "geometry": [ + { "lat": 40.7832858, "lon": -73.9477905 }, + { "lat": 40.7832429, "lon": -73.9478245 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 14:00-19:00)", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119881, + "bounds": { + "minlat": 40.7798089, + "minlon": -73.9503368, + "maxlat": 40.7804348, + "maxlon": -73.9498809 + }, + "nodes": [ + 42443044, + 7132406719, + 7134855800, + 42436549 + ], + "geometry": [ + { "lat": 40.7804348, "lon": -73.9498809 }, + { "lat": 40.7803854, "lon": -73.9499171 }, + { "lat": 40.7798749, "lon": -73.9502894 }, + { "lat": 40.7798089, "lon": -73.9503368 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk": "both", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119882, + "bounds": { + "minlat": 40.7791759, + "minlon": -73.9507943, + "maxlat": 40.7793347, + "maxlon": -73.9506796 + }, + "nodes": [ + 9496052473, + 7134855789, + 42443042 + ], + "geometry": [ + { "lat": 40.7793347, "lon": -73.9506796 }, + { "lat": 40.7792427, "lon": -73.9507461 }, + { "lat": 40.7791759, "lon": -73.9507943 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119883, + "bounds": { + "minlat": 40.7778838, + "minlon": -73.9517401, + "maxlat": 40.7784443, + "maxlon": -73.9513268 + }, + "nodes": [ + 9496052474, + 6162473815, + 6139477295, + 7834025506, + 42429340 + ], + "geometry": [ + { "lat": 40.7784443, "lon": -73.9513268 }, + { "lat": 40.7782984, "lon": -73.9514347 }, + { "lat": 40.7780385, "lon": -73.9516268 }, + { "lat": 40.7779677, "lon": -73.9516792 }, + { "lat": 40.7778838, "lon": -73.9517401 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left|through|||", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119884, + "bounds": { + "minlat": 40.7662419, + "minlon": -73.9602285, + "maxlat": 40.7664053, + "maxlon": -73.9601107 + }, + "nodes": [ + 9496052475, + 6670244877, + 42431681 + ], + "geometry": [ + { "lat": 40.7664053, "lon": -73.9601107 }, + { "lat": 40.7663021, "lon": -73.9601855 }, + { "lat": 40.7662419, "lon": -73.9602285 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119885, + "bounds": { + "minlat": 40.7643672, + "minlon": -73.9616072, + "maxlat": 40.7645684, + "maxlon": -73.9614573 + }, + "nodes": [ + 8750047669, + 5542680283, + 42442977 + ], + "geometry": [ + { "lat": 40.7645684, "lon": -73.9614573 }, + { "lat": 40.7644243, "lon": -73.9615646 }, + { "lat": 40.7643672, "lon": -73.9616072 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119886, + "bounds": { + "minlat": 40.7639679, + "minlon": -73.9618955, + "maxlat": 40.7643672, + "maxlon": -73.9616072 + }, + "nodes": [ + 42442977, + 8855629721, + 9496052476 + ], + "geometry": [ + { "lat": 40.7643672, "lon": -73.9616072 }, + { "lat": 40.7643125, "lon": -73.9616464 }, + { "lat": 40.7639679, "lon": -73.9618955 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119887, + "bounds": { + "minlat": 40.7637382, + "minlon": -73.9620616, + "maxlat": 40.7639679, + "maxlon": -73.9618955 + }, + "nodes": [ + 9496052476, + 10170658701, + 42431659 + ], + "geometry": [ + { "lat": 40.7639679, "lon": -73.9618955 }, + { "lat": 40.7638041, "lon": -73.9620139 }, + { "lat": 40.7637382, "lon": -73.9620616 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119888, + "bounds": { + "minlat": 40.7618673, + "minlon": -73.9634382, + "maxlat": 40.7624971, + "maxlon": -73.9629831 + }, + "nodes": [ + 42442963, + 8112585804, + 4918486108, + 42436527 + ], + "geometry": [ + { "lat": 40.7624971, "lon": -73.9629831 }, + { "lat": 40.7624355, "lon": -73.9630276 }, + { "lat": 40.7619239, "lon": -73.9633973 }, + { "lat": 40.7618673, "lon": -73.9634382 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119889, + "bounds": { + "minlat": 40.7624971, + "minlon": -73.9629831, + "maxlat": 40.7627043, + "maxlon": -73.9628257 + }, + "nodes": [ + 9496052477, + 8112585803, + 42442963 + ], + "geometry": [ + { "lat": 40.7627043, "lon": -73.9628257 }, + { "lat": 40.7625477, "lon": -73.9629448 }, + { "lat": 40.7624971, "lon": -73.9629831 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119890, + "bounds": { + "minlat": 40.7612397, + "minlon": -73.9639021, + "maxlat": 40.7614854, + "maxlon": -73.9637205 + }, + "nodes": [ + 9496052478, + 4918486793, + 6176483595 + ], + "geometry": [ + { "lat": 40.7614854, "lon": -73.9637205 }, + { "lat": 40.7613000, "lon": -73.9638575 }, + { "lat": 40.7612397, "lon": -73.9639021 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|none|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119891, + "bounds": { + "minlat": 40.7598012, + "minlon": -73.9649454, + "maxlat": 40.7599916, + "maxlon": -73.9648028 + }, + "nodes": [ + 42442961, + 6188803954, + 9496052479 + ], + "geometry": [ + { "lat": 40.7599916, "lon": -73.9648028 }, + { "lat": 40.7599347, "lon": -73.9648454 }, + { "lat": 40.7598012, "lon": -73.9649454 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "21", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119892, + "bounds": { + "minlat": 40.7589604, + "minlon": -73.9655676, + "maxlat": 40.7593168, + "maxlon": -73.9653081 + }, + "nodes": [ + 42432861, + 10121802251, + 6139477282 + ], + "geometry": [ + { "lat": 40.7593168, "lon": -73.9653081 }, + { "lat": 40.7592184, "lon": -73.9653796 }, + { "lat": 40.7589604, "lon": -73.9655676 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "21", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030119893, + "bounds": { + "minlat": 40.7586470, + "minlon": -73.9657958, + "maxlat": 40.7589604, + "maxlon": -73.9655676 + }, + "nodes": [ + 6139477282, + 9216586543, + 42442960 + ], + "geometry": [ + { "lat": 40.7589604, "lon": -73.9655676 }, + { "lat": 40.7586990, "lon": -73.9657579 }, + { "lat": 40.7586470, "lon": -73.9657958 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "21", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030123270, + "bounds": { + "minlat": 40.7505017, + "minlon": -73.9717073, + "maxlat": 40.7511220, + "maxlon": -73.9712630 + }, + "nodes": [ + 42442943, + 12673774520, + 4207912630, + 9496073803, + 3569749116, + 42442939 + ], + "geometry": [ + { "lat": 40.7511220, "lon": -73.9712630 }, + { "lat": 40.7510702, "lon": -73.9713001 }, + { "lat": 40.7508010, "lon": -73.9714930 }, + { "lat": 40.7506768, "lon": -73.9715820 }, + { "lat": 40.7505560, "lon": -73.9716668 }, + { "lat": 40.7505017, "lon": -73.9717073 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030123272, + "bounds": { + "minlat": 40.7511220, + "minlon": -73.9712630, + "maxlat": 40.7513267, + "maxlon": -73.9711102 + }, + "nodes": [ + 4207912631, + 12673774518, + 42442943 + ], + "geometry": [ + { "lat": 40.7513267, "lon": -73.9711102 }, + { "lat": 40.7511842, "lon": -73.9712166 }, + { "lat": 40.7511220, "lon": -73.9712630 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030123273, + "bounds": { + "minlat": 40.7513267, + "minlon": -73.9711102, + "maxlat": 40.7523790, + "maxlon": -73.9703410 + }, + "nodes": [ + 42434090, + 10168666986, + 12673774528, + 42442947, + 12673774535, + 4207912631 + ], + "geometry": [ + { "lat": 40.7523790, "lon": -73.9703410 }, + { "lat": 40.7523146, "lon": -73.9703880 }, + { "lat": 40.7518075, "lon": -73.9707603 }, + { "lat": 40.7517476, "lon": -73.9708043 }, + { "lat": 40.7516987, "lon": -73.9708399 }, + { "lat": 40.7513267, "lon": -73.9711102 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030123275, + "bounds": { + "minlat": 40.7536240, + "minlon": -73.9694310, + "maxlat": 40.7542510, + "maxlon": -73.9689780 + }, + "nodes": [ + 42438894, + 10170640094, + 9496073805, + 10166171342, + 42442949 + ], + "geometry": [ + { "lat": 40.7542510, "lon": -73.9689780 }, + { "lat": 40.7541954, "lon": -73.9690181 }, + { "lat": 40.7538048, "lon": -73.9693004 }, + { "lat": 40.7536830, "lon": -73.9693886 }, + { "lat": 40.7536240, "lon": -73.9694310 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030123277, + "bounds": { + "minlat": 40.7561457, + "minlon": -73.9676181, + "maxlat": 40.7563014, + "maxlon": -73.9675059 + }, + "nodes": [ + 9496073807, + 10168544021, + 42442955 + ], + "geometry": [ + { "lat": 40.7563014, "lon": -73.9675059 }, + { "lat": 40.7561884, "lon": -73.9675874 }, + { "lat": 40.7561457, "lon": -73.9676181 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030123278, + "bounds": { + "minlat": 40.7575332, + "minlon": -73.9665983, + "maxlat": 40.7580289, + "maxlon": -73.9662476 + }, + "nodes": [ + 42442959, + 10168544046, + 9496073808 + ], + "geometry": [ + { "lat": 40.7580289, "lon": -73.9662476 }, + { "lat": 40.7579473, "lon": -73.9663050 }, + { "lat": 40.7575332, "lon": -73.9665983 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "21", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030123279, + "bounds": { + "minlat": 40.7573810, + "minlon": -73.9667020, + "maxlat": 40.7575332, + "maxlon": -73.9665983 + }, + "nodes": [ + 9496073808, + 10168544054, + 42442957 + ], + "geometry": [ + { "lat": 40.7575332, "lon": -73.9665983 }, + { "lat": 40.7574421, "lon": -73.9666617 }, + { "lat": 40.7573810, "lon": -73.9667020 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "21", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030139835, + "bounds": { + "minlat": 40.7491639, + "minlon": -73.9727006, + "maxlat": 40.7496297, + "maxlon": -73.9723523 + }, + "nodes": [ + 12362248176, + 6139477278, + 9496199167, + 9509151988, + 42432464 + ], + "geometry": [ + { "lat": 40.7496297, "lon": -73.9723523 }, + { "lat": 40.7495308, "lon": -73.9724263 }, + { "lat": 40.7494286, "lon": -73.9725027 }, + { "lat": 40.7492208, "lon": -73.9726581 }, + { "lat": 40.7491639, "lon": -73.9727006 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030139836, + "bounds": { + "minlat": 40.7485484, + "minlon": -73.9731474, + "maxlat": 40.7487598, + "maxlon": -73.9729945 + }, + "nodes": [ + 9496199168, + 3997454660, + 42442935 + ], + "geometry": [ + { "lat": 40.7487598, "lon": -73.9729945 }, + { "lat": 40.7486058, "lon": -73.9731059 }, + { "lat": 40.7485484, "lon": -73.9731474 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030139837, + "bounds": { + "minlat": 40.7472945, + "minlon": -73.9740550, + "maxlat": 40.7475868, + "maxlon": -73.9738435 + }, + "nodes": [ + 4207912625, + 7640856879, + 42442931 + ], + "geometry": [ + { "lat": 40.7475868, "lon": -73.9738435 }, + { "lat": 40.7473678, "lon": -73.9740020 }, + { "lat": 40.7472945, "lon": -73.9740550 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030142749, + "bounds": { + "minlat": 40.8592644, + "minlon": -73.9342479, + "maxlat": 40.8593130, + "maxlon": -73.9341761 + }, + "nodes": [ + 9338511504, + 9496235102, + 1205714875 + ], + "geometry": [ + { "lat": 40.8593130, "lon": -73.9342479 }, + { "lat": 40.8592846, "lon": -73.9342160 }, + { "lat": 40.8592644, "lon": -73.9341761 } + ], + "tags": { + "highway": "unclassified", + "junction": "roundabout", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Plaza", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "surface": "asphalt", + "width": "52'0\"" + } +}, +{ + "type": "way", + "id": 1030243868, + "bounds": { + "minlat": 40.7959381, + "minlon": -73.9727170, + "maxlat": 40.7965612, + "maxlon": -73.9722665 + }, + "nodes": [ + 42431102, + 7801775715, + 9496980741, + 42431104 + ], + "geometry": [ + { "lat": 40.7959381, "lon": -73.9727170 }, + { "lat": 40.7959972, "lon": -73.9726739 }, + { "lat": 40.7965097, "lon": -73.9723046 }, + { "lat": 40.7965612, "lon": -73.9722665 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:left": "separate", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030243869, + "bounds": { + "minlat": 40.7965612, + "minlon": -73.9722665, + "maxlat": 40.7969053, + "maxlon": -73.9720122 + }, + "nodes": [ + 42431104, + 9496980739, + 9496980731 + ], + "geometry": [ + { "lat": 40.7965612, "lon": -73.9722665 }, + { "lat": 40.7966218, "lon": -73.9722213 }, + { "lat": 40.7969053, "lon": -73.9720122 } + ], + "tags": { + "hgv": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:left": "separate", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030243870, + "bounds": { + "minlat": 40.7969053, + "minlon": -73.9720122, + "maxlat": 40.7971932, + "maxlon": -73.9718028 + }, + "nodes": [ + 9496980731, + 9496980735, + 42431106 + ], + "geometry": [ + { "lat": 40.7969053, "lon": -73.9720122 }, + { "lat": 40.7971382, "lon": -73.9718443 }, + { "lat": 40.7971932, "lon": -73.9718028 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:left": "separate", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030243871, + "bounds": { + "minlat": 40.7971932, + "minlon": -73.9718028, + "maxlat": 40.7978263, + "maxlon": -73.9713433 + }, + "nodes": [ + 42431106, + 9496980736, + 9916138295, + 42431107 + ], + "geometry": [ + { "lat": 40.7971932, "lon": -73.9718028 }, + { "lat": 40.7972475, "lon": -73.9717641 }, + { "lat": 40.7977672, "lon": -73.9713853 }, + { "lat": 40.7978263, "lon": -73.9713433 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "tertiary", + "lanes": "2", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk:left": "separate", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030243872, + "bounds": { + "minlat": 40.7978263, + "minlon": -73.9713433, + "maxlat": 40.7981450, + "maxlon": -73.9711069 + }, + "nodes": [ + 42431107, + 9916138292, + 9496980732 + ], + "geometry": [ + { "lat": 40.7978263, "lon": -73.9713433 }, + { "lat": 40.7978799, "lon": -73.9713026 }, + { "lat": 40.7981450, "lon": -73.9711069 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk:left": "separate", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030243873, + "bounds": { + "minlat": 40.7981450, + "minlon": -73.9711069, + "maxlat": 40.7984503, + "maxlon": -73.9708850 + }, + "nodes": [ + 9496980732, + 9916138291, + 42431108 + ], + "geometry": [ + { "lat": 40.7981450, "lon": -73.9711069 }, + { "lat": 40.7983968, "lon": -73.9709237 }, + { "lat": 40.7984503, "lon": -73.9708850 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk:left": "separate", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030243874, + "bounds": { + "minlat": 40.7993999, + "minlon": -73.9701925, + "maxlat": 40.7997050, + "maxlon": -73.9699722 + }, + "nodes": [ + 9496980733, + 6880029875, + 42431113 + ], + "geometry": [ + { "lat": 40.7993999, "lon": -73.9701925 }, + { "lat": 40.7996539, "lon": -73.9700112 }, + { "lat": 40.7997050, "lon": -73.9699722 } + ], + "tags": { + "hgv": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk:left": "separate", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030243875, + "bounds": { + "minlat": 40.7990793, + "minlon": -73.9704265, + "maxlat": 40.7993999, + "maxlon": -73.9701925 + }, + "nodes": [ + 9496980733, + 6880029851, + 42431111 + ], + "geometry": [ + { "lat": 40.7993999, "lon": -73.9701925 }, + { "lat": 40.7991328, "lon": -73.9703867 }, + { "lat": 40.7990793, "lon": -73.9704265 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "route": "bicycle", + "sidewalk:left": "separate", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030243877, + "bounds": { + "minlat": 40.7984503, + "minlon": -73.9708850, + "maxlat": 40.7985053, + "maxlon": -73.9708452 + }, + "nodes": [ + 6912871508, + 42431108 + ], + "geometry": [ + { "lat": 40.7985053, "lon": -73.9708452 }, + { "lat": 40.7984503, "lon": -73.9708850 } + ], + "tags": { + "hgv": "no", + "highway": "tertiary", + "lanes": "2", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1030282418, + "bounds": { + "minlat": 40.7141387, + "minlon": -74.0034162, + "maxlat": 40.7143858, + "maxlon": -74.0033360 + }, + "nodes": [ + 10583167620, + 12198027570, + 1241256377, + 42430535 + ], + "geometry": [ + { "lat": 40.7143858, "lon": -74.0033360 }, + { "lat": 40.7143086, "lon": -74.0033675 }, + { "lat": 40.7142413, "lon": -74.0033941 }, + { "lat": 40.7141387, "lon": -74.0034162 } + ], + "tags": { + "alt_name": "Federal Plaza", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 1030283845, + "bounds": { + "minlat": 40.7521702, + "minlon": -74.0015407, + "maxlat": 40.7523103, + "maxlon": -74.0012032 + }, + "nodes": [ + 9497340689, + 2823833594 + ], + "geometry": [ + { "lat": 40.7523103, "lon": -74.0015407 }, + { "lat": 40.7521702, "lon": -74.0012032 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1030286005, + "bounds": { + "minlat": 40.7015940, + "minlon": -73.9493790, + "maxlat": 40.7021590, + "maxlon": -73.9487480 + }, + "nodes": [ + 42475328, + 9988456303, + 9755373146, + 42492003 + ], + "geometry": [ + { "lat": 40.7021590, "lon": -73.9493790 }, + { "lat": 40.7021120, "lon": -73.9493265 }, + { "lat": 40.7016565, "lon": -73.9488178 }, + { "lat": 40.7015940, "lon": -73.9487480 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Harrison Avenue", + "name:etymology:wikidata": "Q387664", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Harrison", + "tiger:name_type": "Ave", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 1030317519, + "bounds": { + "minlat": 40.8037070, + "minlon": -74.0118626, + "maxlat": 40.8038482, + "maxlon": -74.0115594 + }, + "nodes": [ + 9497611831, + 13620586457, + 7474656029, + 103868253 + ], + "geometry": [ + { "lat": 40.8038482, "lon": -74.0118626 }, + { "lat": 40.8037850, "lon": -74.0117268 }, + { "lat": 40.8037589, "lon": -74.0116708 }, + { "lat": 40.8037070, "lon": -74.0115594 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "79th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "79th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 1031024695, + "bounds": { + "minlat": 40.8580022, + "minlon": -73.9361731, + "maxlat": 40.8580318, + "maxlon": -73.9360660 + }, + "nodes": [ + 9503566607, + 9503566609, + 9503566608 + ], + "geometry": [ + { "lat": 40.8580022, "lon": -73.9360660 }, + { "lat": 40.8580111, "lon": -73.9360984 }, + { "lat": 40.8580318, "lon": -73.9361731 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1031024700, + "bounds": { + "minlat": 40.8576535, + "minlon": -73.9363611, + "maxlat": 40.8576849, + "maxlon": -73.9361543 + }, + "nodes": [ + 9503585322, + 9503585323, + 2348610358 + ], + "geometry": [ + { "lat": 40.8576535, "lon": -73.9361543 }, + { "lat": 40.8576718, "lon": -73.9362748 }, + { "lat": 40.8576849, "lon": -73.9363611 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1031024701, + "bounds": { + "minlat": 40.8578724, + "minlon": -73.9362418, + "maxlat": 40.8579000, + "maxlon": -73.9361368 + }, + "nodes": [ + 9503585324, + 9503585326, + 9503585325 + ], + "geometry": [ + { "lat": 40.8578724, "lon": -73.9361368 }, + { "lat": 40.8578811, "lon": -73.9361679 }, + { "lat": 40.8579000, "lon": -73.9362418 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1031400324, + "bounds": { + "minlat": 40.7443489, + "minlon": -73.9762095, + "maxlat": 40.7447916, + "maxlon": -73.9758876 + }, + "nodes": [ + 5131026388, + 7640856867, + 6139477293, + 9505880049 + ], + "geometry": [ + { "lat": 40.7447916, "lon": -73.9758876 }, + { "lat": 40.7446904, "lon": -73.9759621 }, + { "lat": 40.7445383, "lon": -73.9760723 }, + { "lat": 40.7443489, "lon": -73.9762095 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1031400325, + "bounds": { + "minlat": 40.7441114, + "minlon": -73.9763847, + "maxlat": 40.7443489, + "maxlon": -73.9762095 + }, + "nodes": [ + 9505880049, + 6716668070, + 42442913 + ], + "geometry": [ + { "lat": 40.7443489, "lon": -73.9762095 }, + { "lat": 40.7441793, "lon": -73.9763346 }, + { "lat": 40.7441114, "lon": -73.9763847 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1031408121, + "bounds": { + "minlat": 40.7150484, + "minlon": -73.9923757, + "maxlat": 40.7151738, + "maxlon": -73.9923108 + }, + "nodes": [ + 42437967, + 5863593964, + 9505971541 + ], + "geometry": [ + { "lat": 40.7150484, "lon": -73.9923757 }, + { "lat": 40.7151316, "lon": -73.9923327 }, + { "lat": 40.7151738, "lon": -73.9923108 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 1031408122, + "bounds": { + "minlat": 40.7133571, + "minlon": -73.9924861, + "maxlat": 40.7138690, + "maxlon": -73.9924061 + }, + "nodes": [ + 9505971542, + 9525441198, + 8307641626, + 42433545 + ], + "geometry": [ + { "lat": 40.7133571, "lon": -73.9924061 }, + { "lat": 40.7137313, "lon": -73.9924646 }, + { "lat": 40.7137769, "lon": -73.9924717 }, + { "lat": 40.7138690, "lon": -73.9924861 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 1031408124, + "bounds": { + "minlat": 40.7124636, + "minlon": -73.9926284, + "maxlat": 40.7129452, + "maxlon": -73.9925563 + }, + "nodes": [ + 9505971547, + 7787627727, + 9525441197, + 8279851250, + 3212472978 + ], + "geometry": [ + { "lat": 40.7129452, "lon": -73.9926284 }, + { "lat": 40.7127297, "lon": -73.9925962 }, + { "lat": 40.7125916, "lon": -73.9925746 }, + { "lat": 40.7125374, "lon": -73.9925680 }, + { "lat": 40.7124636, "lon": -73.9925563 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 1031408125, + "bounds": { + "minlat": 40.7135255, + "minlon": -73.9927579, + "maxlat": 40.7138465, + "maxlon": -73.9927106 + }, + "nodes": [ + 42457821, + 8307641630, + 9505971548 + ], + "geometry": [ + { "lat": 40.7138465, "lon": -73.9927579 }, + { "lat": 40.7137540, "lon": -73.9927454 }, + { "lat": 40.7135255, "lon": -73.9927106 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 1031408126, + "bounds": { + "minlat": 40.7129452, + "minlon": -73.9926598, + "maxlat": 40.7131690, + "maxlon": -73.9926284 + }, + "nodes": [ + 5706568658, + 8279851226, + 9505971547 + ], + "geometry": [ + { "lat": 40.7131690, "lon": -73.9926598 }, + { "lat": 40.7131151, "lon": -73.9926536 }, + { "lat": 40.7129452, "lon": -73.9926284 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 1031408127, + "bounds": { + "minlat": 40.7142842, + "minlon": -73.9928102, + "maxlat": 40.7143695, + "maxlon": -73.9927984 + }, + "nodes": [ + 7480301987, + 5863601510, + 9505971549 + ], + "geometry": [ + { "lat": 40.7143695, "lon": -73.9928102 }, + { "lat": 40.7143118, "lon": -73.9928022 }, + { "lat": 40.7142842, "lon": -73.9927984 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 1031408128, + "bounds": { + "minlat": 40.7155400, + "minlon": -73.9924212, + "maxlat": 40.7160352, + "maxlon": -73.9921686 + }, + "nodes": [ + 9505971550, + 9651072563 + ], + "geometry": [ + { "lat": 40.7160352, "lon": -73.9921686 }, + { "lat": 40.7155400, "lon": -73.9924212 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 1031721443, + "bounds": { + "minlat": 40.7575515, + "minlon": -73.9946658, + "maxlat": 40.7580530, + "maxlon": -73.9930950 + }, + "nodes": [ + 477284549, + 11149329285, + 427851464, + 427851463, + 427851462, + 427851461, + 319859936, + 427851459, + 427851460, + 427851457 + ], + "geometry": [ + { "lat": 40.7575515, "lon": -73.9930950 }, + { "lat": 40.7576367, "lon": -73.9932442 }, + { "lat": 40.7576975, "lon": -73.9933631 }, + { "lat": 40.7580124, "lon": -73.9941168 }, + { "lat": 40.7580327, "lon": -73.9942027 }, + { "lat": 40.7580489, "lon": -73.9942858 }, + { "lat": 40.7580530, "lon": -73.9943636 }, + { "lat": 40.7580509, "lon": -73.9944548 }, + { "lat": 40.7580428, "lon": -73.9945379 }, + { "lat": 40.7580174, "lon": -73.9946658 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "1", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1031879416, + "bounds": { + "minlat": 40.7571689, + "minlon": -73.9945421, + "maxlat": 40.7572085, + "maxlon": -73.9945123 + }, + "nodes": [ + 427850887, + 427850889 + ], + "geometry": [ + { "lat": 40.7572085, "lon": -73.9945123 }, + { "lat": 40.7571689, "lon": -73.9945421 } + ], + "tags": { + "access": "no", + "destination": "Port Authority Bus Terminal", + "foot": "no", + "highway": "service", + "motor_vehicle": "customers", + "name": "PABT Ramp", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1031879417, + "bounds": { + "minlat": 40.7563991, + "minlon": -73.9929737, + "maxlat": 40.7575118, + "maxlon": -73.9902062 + }, + "nodes": [ + 9201440711, + 10686429944, + 10686429945, + 10686429946, + 10686429933 + ], + "geometry": [ + { "lat": 40.7563991, "lon": -73.9907236 }, + { "lat": 40.7571329, "lon": -73.9902062 }, + { "lat": 40.7575118, "lon": -73.9911748 }, + { "lat": 40.7569509, "lon": -73.9915971 }, + { "lat": 40.7574909, "lon": -73.9929737 } + ], + "tags": { + "highway": "service", + "layer": "4", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1031879418, + "bounds": { + "minlat": 40.7565817, + "minlon": -73.9934660, + "maxlat": 40.7571061, + "maxlon": -73.9922192 + }, + "nodes": [ + 2351532388, + 8288270442, + 4600847096, + 9509518365 + ], + "geometry": [ + { "lat": 40.7571061, "lon": -73.9934660 }, + { "lat": 40.7570991, "lon": -73.9934495 }, + { "lat": 40.7569880, "lon": -73.9931852 }, + { "lat": 40.7565817, "lon": -73.9922192 } + ], + "tags": { + "alt_name": "West 40 Street", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "no", + "highway": "residential", + "lanes": "2", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1031978967, + "bounds": { + "minlat": 40.7423533, + "minlon": -74.0089056, + "maxlat": 40.7426460, + "maxlon": -74.0088432 + }, + "nodes": [ + 11027819094, + 11049420897, + 402480678 + ], + "geometry": [ + { "lat": 40.7426460, "lon": -74.0088432 }, + { "lat": 40.7425139, "lon": -74.0088733 }, + { "lat": 40.7423533, "lon": -74.0089056 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1031982033, + "bounds": { + "minlat": 40.8459638, + "minlon": -73.9135977, + "maxlat": 40.8462018, + "maxlon": -73.9134281 + }, + "nodes": [ + 2408357241, + 12530500316, + 42725658 + ], + "geometry": [ + { "lat": 40.8462018, "lon": -73.9134281 }, + { "lat": 40.8460568, "lon": -73.9135314 }, + { "lat": 40.8459638, "lon": -73.9135977 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1031982187, + "bounds": { + "minlat": 40.8431984, + "minlon": -73.9121538, + "maxlat": 40.8433352, + "maxlon": -73.9121079 + }, + "nodes": [ + 2408354082, + 2408354092 + ], + "geometry": [ + { "lat": 40.8433352, "lon": -73.9121079 }, + { "lat": 40.8431984, "lon": -73.9121538 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "foot": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1031982189, + "bounds": { + "minlat": 40.8429311, + "minlon": -73.9118215, + "maxlat": 40.8432022, + "maxlon": -73.9117338 + }, + "nodes": [ + 2408350747, + 2408354081 + ], + "geometry": [ + { "lat": 40.8429311, "lon": -73.9118215 }, + { "lat": 40.8432022, "lon": -73.9117338 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "foot": "no", + "highway": "tertiary", + "lanes": "1", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1031982727, + "bounds": { + "minlat": 40.8613637, + "minlon": -73.9252612, + "maxlat": 40.8614188, + "maxlon": -73.9251086 + }, + "nodes": [ + 4814440062, + 1764400300 + ], + "geometry": [ + { "lat": 40.8613637, "lon": -73.9252612 }, + { "lat": 40.8614188, "lon": -73.9251086 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Nagle Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1031982728, + "bounds": { + "minlat": 40.8612590, + "minlon": -73.9256680, + "maxlat": 40.8612972, + "maxlon": -73.9255794 + }, + "nodes": [ + 42452485, + 1764400297 + ], + "geometry": [ + { "lat": 40.8612590, "lon": -73.9256680 }, + { "lat": 40.8612972, "lon": -73.9255794 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Nagle Avenue", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1032026280, + "bounds": { + "minlat": 40.7390177, + "minlon": -73.9346328, + "maxlat": 40.7394412, + "maxlon": -73.9343565 + }, + "nodes": [ + 9510717669, + 13294008249, + 10118310676, + 8549589542, + 42866370 + ], + "geometry": [ + { "lat": 40.7390177, "lon": -73.9343565 }, + { "lat": 40.7390458, "lon": -73.9343745 }, + { "lat": 40.7390862, "lon": -73.9343998 }, + { "lat": 40.7392865, "lon": -73.9345322 }, + { "lat": 40.7394412, "lon": -73.9346328 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "name": "Gale Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1032028704, + "bounds": { + "minlat": 40.7375654, + "minlon": -73.9361574, + "maxlat": 40.7376836, + "maxlon": -73.9354223 + }, + "nodes": [ + 597269956, + 13049334874, + 597269945, + 13049334876, + 9981925184, + 9179114931, + 5082097496 + ], + "geometry": [ + { "lat": 40.7376836, "lon": -73.9361574 }, + { "lat": 40.7376622, "lon": -73.9360069 }, + { "lat": 40.7376517, "lon": -73.9359352 }, + { "lat": 40.7376427, "lon": -73.9358787 }, + { "lat": 40.7376247, "lon": -73.9357661 }, + { "lat": 40.7375982, "lon": -73.9355991 }, + { "lat": 40.7375654, "lon": -73.9354223 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 1032028705, + "bounds": { + "minlat": 40.7374945, + "minlon": -73.9354223, + "maxlat": 40.7375654, + "maxlon": -73.9350527 + }, + "nodes": [ + 5082097496, + 9981925183, + 277385050 + ], + "geometry": [ + { "lat": 40.7375654, "lon": -73.9354223 }, + { "lat": 40.7375303, "lon": -73.9352357 }, + { "lat": 40.7374945, "lon": -73.9350527 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through" + } +}, +{ + "type": "way", + "id": 1032030270, + "bounds": { + "minlat": 40.8160871, + "minlon": -73.9621672, + "maxlat": 40.8163356, + "maxlon": -73.9618860 + }, + "nodes": [ + 1705982037, + 7732571838, + 7732571840, + 1705982139, + 42441212, + 7732551670 + ], + "geometry": [ + { "lat": 40.8163356, "lon": -73.9618860 }, + { "lat": 40.8162435, "lon": -73.9619956 }, + { "lat": 40.8161993, "lon": -73.9620497 }, + { "lat": 40.8161528, "lon": -73.9621003 }, + { "lat": 40.8161070, "lon": -73.9621487 }, + { "lat": 40.8160871, "lon": -73.9621672 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "hgv": "no", + "highway": "secondary", + "lanes": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk": "right", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032030521, + "bounds": { + "minlat": 40.7600450, + "minlon": -73.9949720, + "maxlat": 40.7603122, + "maxlon": -73.9943459 + }, + "nodes": [ + 9510751089, + 12810580299, + 42454433 + ], + "geometry": [ + { "lat": 40.7600450, "lon": -73.9943459 }, + { "lat": 40.7602597, "lon": -73.9948490 }, + { "lat": 40.7603122, "lon": -73.9949720 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "2", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1032031974, + "bounds": { + "minlat": 40.7388975, + "minlon": -73.9872595, + "maxlat": 40.7391622, + "maxlon": -73.9870659 + }, + "nodes": [ + 12181309686, + 10172843077, + 5307048043 + ], + "geometry": [ + { "lat": 40.7388975, "lon": -73.9872595 }, + { "lat": 40.7389477, "lon": -73.9872224 }, + { "lat": 40.7391622, "lon": -73.9870659 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1032033403, + "bounds": { + "minlat": 40.7424195, + "minlon": -73.9804162, + "maxlat": 40.7426044, + "maxlon": -73.9799687 + }, + "nodes": [ + 9510729384, + 12183286756, + 4234425019, + 42436753 + ], + "geometry": [ + { "lat": 40.7424195, "lon": -73.9799687 }, + { "lat": 40.7425216, "lon": -73.9802136 }, + { "lat": 40.7425465, "lon": -73.9802745 }, + { "lat": 40.7426044, "lon": -73.9804162 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 29th Street", + "name:ru": "Восточная 29-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1032043567, + "bounds": { + "minlat": 40.7375794, + "minlon": -73.9922478, + "maxlat": 40.7379242, + "maxlon": -73.9914128 + }, + "nodes": [ + 9510853474, + 7111566463, + 8429175891, + 8264701237, + 42439272 + ], + "geometry": [ + { "lat": 40.7375794, "lon": -73.9914128 }, + { "lat": 40.7376832, "lon": -73.9916634 }, + { "lat": 40.7378676, "lon": -73.9921063 }, + { "lat": 40.7378865, "lon": -73.9921517 }, + { "lat": 40.7379242, "lon": -73.9922478 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 17th Street", + "name:ru": "Восточная 17-я стрит", + "name_1": "East 17 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1032451923, + "bounds": { + "minlat": 40.7655447, + "minlon": -73.9550846, + "maxlat": 40.7657018, + "maxlon": -73.9547105 + }, + "nodes": [ + 9512697968, + 6670244840, + 42428003 + ], + "geometry": [ + { "lat": 40.7657018, "lon": -73.9550846 }, + { "lat": 40.7655953, "lon": -73.9548309 }, + { "lat": 40.7655447, "lon": -73.9547105 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 70th Street", + "name:ru": "Восточная 70-я стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|right" + } +}, +{ + "type": "way", + "id": 1032453060, + "bounds": { + "minlat": 40.7204280, + "minlon": -74.0066917, + "maxlat": 40.7204530, + "maxlon": -74.0064614 + }, + "nodes": [ + 42434845, + 4890553383, + 42434842 + ], + "geometry": [ + { "lat": 40.7204530, "lon": -74.0066917 }, + { "lat": 40.7204382, "lon": -74.0065541 }, + { "lat": 40.7204280, "lon": -74.0064614 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Beach Street", + "name:ko": "비치 스트리트", + "noref": "yes", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through;slight_right" + } +}, +{ + "type": "way", + "id": 1032454983, + "bounds": { + "minlat": 40.7340344, + "minlon": -73.9991816, + "maxlat": 40.7341578, + "maxlon": -73.9987019 + }, + "nodes": [ + 9512766062, + 4841945996, + 12179562790, + 12179562795, + 42421882, + 12179562791, + 12179562794, + 12179562793, + 12179562792, + 42421889 + ], + "geometry": [ + { "lat": 40.7340344, "lon": -73.9987019 }, + { "lat": 40.7341362, "lon": -73.9989519 }, + { "lat": 40.7341450, "lon": -73.9989743 }, + { "lat": 40.7341503, "lon": -73.9989906 }, + { "lat": 40.7341556, "lon": -73.9990116 }, + { "lat": 40.7341578, "lon": -73.9990365 }, + { "lat": 40.7341577, "lon": -73.9990542 }, + { "lat": 40.7341576, "lon": -73.9990771 }, + { "lat": 40.7341560, "lon": -73.9990963 }, + { "lat": 40.7341463, "lon": -73.9991816 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 9th Street", + "name:ru": "Западная 9-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left|right" + } +}, +{ + "type": "way", + "id": 1032457575, + "bounds": { + "minlat": 40.8156143, + "minlon": -73.9582064, + "maxlat": 40.8160067, + "maxlon": -73.9579309 + }, + "nodes": [ + 561035343, + 10049830846, + 9512801659 + ], + "geometry": [ + { "lat": 40.8156143, "lon": -73.9582064 }, + { "lat": 40.8157260, "lon": -73.9581283 }, + { "lat": 40.8160067, "lon": -73.9579309 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032457576, + "bounds": { + "minlat": 40.8162833, + "minlon": -73.9578477, + "maxlat": 40.8163297, + "maxlon": -73.9577315 + }, + "nodes": [ + 561035344, + 2541754794 + ], + "geometry": [ + { "lat": 40.8162833, "lon": -73.9577315 }, + { "lat": 40.8163297, "lon": -73.9578477 } + ], + "tags": { + "highway": "residential", + "name": "West 126th Street", + "name_1": "West 126 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1032457577, + "bounds": { + "minlat": 40.8160067, + "minlon": -73.9579309, + "maxlat": 40.8162833, + "maxlon": -73.9577315 + }, + "nodes": [ + 9512801659, + 10050036787, + 561035344 + ], + "geometry": [ + { "lat": 40.8160067, "lon": -73.9579309 }, + { "lat": 40.8162318, "lon": -73.9577687 }, + { "lat": 40.8162833, "lon": -73.9577315 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032459844, + "bounds": { + "minlat": 40.7181637, + "minlon": -73.9942144, + "maxlat": 40.7182844, + "maxlon": -73.9938390 + }, + "nodes": [ + 9512791614, + 12196062154, + 12196062155, + 6369613048, + 42452067 + ], + "geometry": [ + { "lat": 40.7182844, "lon": -73.9942144 }, + { "lat": 40.7182208, "lon": -73.9940166 }, + { "lat": 40.7182127, "lon": -73.9939912 }, + { "lat": 40.7181993, "lon": -73.9939498 }, + { "lat": 40.7181637, "lon": -73.9938390 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|none", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032460512, + "bounds": { + "minlat": 40.7968119, + "minlon": -73.9483211, + "maxlat": 40.7981256, + "maxlon": -73.9452335 + }, + "nodes": [ + 42437201, + 6784911813, + 5481978582, + 6223478668, + 6784911815, + 42446155, + 7096519005, + 8809269782, + 8809259384, + 7096519023, + 596776546 + ], + "geometry": [ + { "lat": 40.7981256, "lon": -73.9483211 }, + { "lat": 40.7980770, "lon": -73.9482037 }, + { "lat": 40.7978161, "lon": -73.9475860 }, + { "lat": 40.7977537, "lon": -73.9474379 }, + { "lat": 40.7974945, "lon": -73.9468212 }, + { "lat": 40.7974442, "lon": -73.9467077 }, + { "lat": 40.7973940, "lon": -73.9466005 }, + { "lat": 40.7972352, "lon": -73.9462257 }, + { "lat": 40.7970444, "lon": -73.9457785 }, + { "lat": 40.7968428, "lon": -73.9453084 }, + { "lat": 40.7968119, "lon": -73.9452335 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "East 112th Street", + "name:ru": "Восточная 112-я стрит", + "name_1": "East 112 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1032460513, + "bounds": { + "minlat": 40.8012931, + "minlon": -73.9419552, + "maxlat": 40.8019158, + "maxlon": -73.9415029 + }, + "nodes": [ + 596776594, + 10170646995, + 10127369887, + 596776624 + ], + "geometry": [ + { "lat": 40.8019158, "lon": -73.9415029 }, + { "lat": 40.8018659, "lon": -73.9415391 }, + { "lat": 40.8013536, "lon": -73.9419113 }, + { "lat": 40.8012931, "lon": -73.9419552 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1032460514, + "bounds": { + "minlat": 40.7960809, + "minlon": -73.9452335, + "maxlat": 40.7968119, + "maxlon": -73.9434893 + }, + "nodes": [ + 596776546, + 42449413, + 7096519033, + 7096519025, + 42447196 + ], + "geometry": [ + { "lat": 40.7968119, "lon": -73.9452335 }, + { "lat": 40.7967023, "lon": -73.9449726 }, + { "lat": 40.7966802, "lon": -73.9449025 }, + { "lat": 40.7961175, "lon": -73.9435750 }, + { "lat": 40.7960809, "lon": -73.9434893 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 112th Street", + "name:ru": "Восточная 112-я стрит", + "name_1": "East 112 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1032460516, + "bounds": { + "minlat": 40.7954069, + "minlon": -73.9434893, + "maxlat": 40.7960809, + "maxlon": -73.9418755 + }, + "nodes": [ + 42447196, + 7096519016, + 7924346879, + 42449422 + ], + "geometry": [ + { "lat": 40.7960809, "lon": -73.9434893 }, + { "lat": 40.7960426, "lon": -73.9433992 }, + { "lat": 40.7954642, "lon": -73.9420270 }, + { "lat": 40.7954069, "lon": -73.9418755 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "East 112th Street", + "name:ru": "Восточная 112-я стрит", + "name_1": "East 112 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1032460517, + "bounds": { + "minlat": 40.7954069, + "minlon": -73.9418755, + "maxlat": 40.7972671, + "maxlon": -73.9405201 + }, + "nodes": [ + 42449422, + 7924346695, + 1775171884, + 7924346600, + 5764773007, + 7658692106, + 4983782407, + 42435396 + ], + "geometry": [ + { "lat": 40.7954069, "lon": -73.9418755 }, + { "lat": 40.7954840, "lon": -73.9418174 }, + { "lat": 40.7959838, "lon": -73.9414543 }, + { "lat": 40.7961019, "lon": -73.9413681 }, + { "lat": 40.7963381, "lon": -73.9411957 }, + { "lat": 40.7966320, "lon": -73.9409805 }, + { "lat": 40.7971972, "lon": -73.9405718 }, + { "lat": 40.7972671, "lon": -73.9405201 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1032461112, + "bounds": { + "minlat": 40.7045653, + "minlon": -73.9394069, + "maxlat": 40.7048659, + "maxlon": -73.9391863 + }, + "nodes": [ + 4660922258, + 42513666, + 7722378718, + 4660922273, + 7722378714 + ], + "geometry": [ + { "lat": 40.7048659, "lon": -73.9394069 }, + { "lat": 40.7047968, "lon": -73.9393927 }, + { "lat": 40.7047004, "lon": -73.9393340 }, + { "lat": 40.7046153, "lon": -73.9392552 }, + { "lat": 40.7045653, "lon": -73.9391863 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Bushwick Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1032465582, + "bounds": { + "minlat": 40.8189029, + "minlon": -73.9292342, + "maxlat": 40.8190183, + "maxlon": -73.9287397 + }, + "nodes": [ + 42734149, + 9903127438, + 9903127444, + 9512880305 + ], + "geometry": [ + { "lat": 40.8190183, "lon": -73.9292342 }, + { "lat": 40.8189907, "lon": -73.9291521 }, + { "lat": 40.8189811, "lon": -73.9291061 }, + { "lat": 40.8189029, "lon": -73.9287397 } + ], + "tags": { + "busway:right": "lane", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455" + } +}, +{ + "type": "way", + "id": 1032465583, + "bounds": { + "minlat": 40.8187803, + "minlon": -73.9282771, + "maxlat": 40.8215451, + "maxlon": -73.9272980 + }, + "nodes": [ + 1213918199, + 10133486217, + 42733694, + 13330151055, + 9166288606, + 13250295306, + 42733555, + 13250295302, + 9166288607, + 8602649363, + 13329984719, + 8859016388, + 42733691 + ], + "geometry": [ + { "lat": 40.8215451, "lon": -73.9272980 }, + { "lat": 40.8212129, "lon": -73.9274383 }, + { "lat": 40.8211078, "lon": -73.9274827 }, + { "lat": 40.8210252, "lon": -73.9275169 }, + { "lat": 40.8198916, "lon": -73.9279865 }, + { "lat": 40.8198591, "lon": -73.9280003 }, + { "lat": 40.8198002, "lon": -73.9280253 }, + { "lat": 40.8197437, "lon": -73.9280365 }, + { "lat": 40.8197107, "lon": -73.9280431 }, + { "lat": 40.8189518, "lon": -73.9282262 }, + { "lat": 40.8189358, "lon": -73.9282313 }, + { "lat": 40.8188561, "lon": -73.9282567 }, + { "lat": 40.8187803, "lon": -73.9282771 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1032465584, + "bounds": { + "minlat": 40.8187803, + "minlon": -73.9287397, + "maxlat": 40.8189029, + "maxlon": -73.9282771 + }, + "nodes": [ + 9512880305, + 9903127447, + 42733691 + ], + "geometry": [ + { "lat": 40.8189029, "lon": -73.9287397 }, + { "lat": 40.8188076, "lon": -73.9283783 }, + { "lat": 40.8187803, "lon": -73.9282771 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455", + "turn:lanes": "||right" + } +}, +{ + "type": "way", + "id": 1032468212, + "bounds": { + "minlat": 40.8102846, + "minlon": -73.9437153, + "maxlat": 40.8103559, + "maxlon": -73.9435449 + }, + "nodes": [ + 42451564, + 3099326127 + ], + "geometry": [ + { "lat": 40.8102846, "lon": -73.9435449 }, + { "lat": 40.8103559, "lon": -73.9437153 } + ], + "tags": { + "highway": "residential", + "name": "West 129th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1032468213, + "bounds": { + "minlat": 40.8099970, + "minlon": -73.9439714, + "maxlat": 40.8103559, + "maxlon": -73.9437153 + }, + "nodes": [ + 3099326127, + 11947052604, + 4207724579 + ], + "geometry": [ + { "lat": 40.8103559, "lon": -73.9437153 }, + { "lat": 40.8103102, "lon": -73.9437479 }, + { "lat": 40.8099970, "lon": -73.9439714 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 1032471936, + "bounds": { + "minlat": 40.8384913, + "minlon": -73.9219633, + "maxlat": 40.8389086, + "maxlon": -73.9216852 + }, + "nodes": [ + 42745194, + 2912071019, + 12163756852, + 12163756851, + 42745190 + ], + "geometry": [ + { "lat": 40.8389086, "lon": -73.9216852 }, + { "lat": 40.8388108, "lon": -73.9217514 }, + { "lat": 40.8386500, "lon": -73.9218580 }, + { "lat": 40.8385997, "lon": -73.9218914 }, + { "lat": 40.8384913, "lon": -73.9219633 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "turn:lanes": "|through" + } +}, +{ + "type": "way", + "id": 1032474958, + "bounds": { + "minlat": 40.8088597, + "minlon": -73.9658901, + "maxlat": 40.8089504, + "maxlon": -73.9658117 + }, + "nodes": [ + 2329912061, + 1506445822 + ], + "geometry": [ + { "lat": 40.8089504, "lon": -73.9658117 }, + { "lat": 40.8088597, "lon": -73.9658901 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lane_markings": "no", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032480137, + "bounds": { + "minlat": 40.8036478, + "minlon": -73.9692822, + "maxlat": 40.8040086, + "maxlon": -73.9690395 + }, + "nodes": [ + 5004570651, + 7785880663, + 9513053640 + ], + "geometry": [ + { "lat": 40.8036478, "lon": -73.9692822 }, + { "lat": 40.8037053, "lon": -73.9692444 }, + { "lat": 40.8040086, "lon": -73.9690395 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032481034, + "bounds": { + "minlat": 40.7221111, + "minlon": -74.0037680, + "maxlat": 40.7223840, + "maxlon": -74.0032089 + }, + "nodes": [ + 42452026, + 8231935505, + 9513049126 + ], + "geometry": [ + { "lat": 40.7223840, "lon": -74.0037680 }, + { "lat": 40.7223451, "lon": -74.0036883 }, + { "lat": 40.7221111, "lon": -74.0032089 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032481035, + "bounds": { + "minlat": 40.7209857, + "minlon": -74.0038257, + "maxlat": 40.7219950, + "maxlon": -74.0029710 + }, + "nodes": [ + 42433574, + 8231922384, + 11658947747 + ], + "geometry": [ + { "lat": 40.7219950, "lon": -74.0029710 }, + { "lat": 40.7219521, "lon": -74.0030069 }, + { "lat": 40.7209857, "lon": -74.0038257 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Wooster Street", + "name:etymology:wikidata": "Q4993246", + "name:ko": "우스터 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q19582621", + "wikipedia": "en:Wooster Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032481036, + "bounds": { + "minlat": 40.7219950, + "minlon": -74.0032089, + "maxlat": 40.7221111, + "maxlon": -74.0029710 + }, + "nodes": [ + 9513049126, + 8231922385, + 42433574 + ], + "geometry": [ + { "lat": 40.7221111, "lon": -74.0032089 }, + { "lat": 40.7220281, "lon": -74.0030387 }, + { "lat": 40.7219950, "lon": -74.0029710 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032481037, + "bounds": { + "minlat": 40.7210015, + "minlon": -74.0014470, + "maxlat": 40.7212520, + "maxlon": -74.0009335 + }, + "nodes": [ + 42449570, + 8231922369, + 9513049128 + ], + "geometry": [ + { "lat": 40.7212520, "lon": -74.0014470 }, + { "lat": 40.7212238, "lon": -74.0013892 }, + { "lat": 40.7210015, "lon": -74.0009335 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032481038, + "bounds": { + "minlat": 40.7212520, + "minlon": -74.0016857, + "maxlat": 40.7213678, + "maxlon": -74.0014470 + }, + "nodes": [ + 9513049127, + 8231922372, + 42449570 + ], + "geometry": [ + { "lat": 40.7213678, "lon": -74.0016857 }, + { "lat": 40.7212863, "lon": -74.0015177 }, + { "lat": 40.7212520, "lon": -74.0014470 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032481039, + "bounds": { + "minlat": 40.7208456, + "minlon": -74.0009335, + "maxlat": 40.7210015, + "maxlon": -74.0006622 + }, + "nodes": [ + 9513049128, + 8231922366, + 42428436 + ], + "geometry": [ + { "lat": 40.7210015, "lon": -74.0009335 }, + { "lat": 40.7209058, "lon": -74.0007387 }, + { "lat": 40.7208456, "lon": -74.0006622 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032481427, + "bounds": { + "minlat": 40.8004750, + "minlon": -73.9717928, + "maxlat": 40.8006928, + "maxlon": -73.9715716 + }, + "nodes": [ + 42441308, + 7785782261, + 42441310 + ], + "geometry": [ + { "lat": 40.8006928, "lon": -73.9715716 }, + { "lat": 40.8006284, "lon": -73.9716306 }, + { "lat": 40.8004750, "lon": -73.9717928 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "merge_to_right", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1032481529, + "bounds": { + "minlat": 40.7381346, + "minlon": -73.9387070, + "maxlat": 40.7384107, + "maxlon": -73.9386311 + }, + "nodes": [ + 42901424, + 11211159977, + 11211159970, + 7824536275 + ], + "geometry": [ + { "lat": 40.7384107, "lon": -73.9386311 }, + { "lat": 40.7383487, "lon": -73.9386481 }, + { "lat": 40.7382643, "lon": -73.9386714 }, + { "lat": 40.7381346, "lon": -73.9387070 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "30th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1032481530, + "bounds": { + "minlat": 40.7384107, + "minlon": -73.9398575, + "maxlat": 40.7388316, + "maxlon": -73.9386311 + }, + "nodes": [ + 42901424, + 9179114919, + 9179114918, + 9179114917, + 9982287317, + 7824544633, + 9179086316, + 9179086315, + 597269957 + ], + "geometry": [ + { "lat": 40.7384107, "lon": -73.9386311 }, + { "lat": 40.7384393, "lon": -73.9387298 }, + { "lat": 40.7384868, "lon": -73.9388900 }, + { "lat": 40.7385364, "lon": -73.9390520 }, + { "lat": 40.7385791, "lon": -73.9391778 }, + { "lat": 40.7386330, "lon": -73.9393290 }, + { "lat": 40.7386808, "lon": -73.9394627 }, + { "lat": 40.7387286, "lon": -73.9395955 }, + { "lat": 40.7388316, "lon": -73.9398575 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1032502934, + "bounds": { + "minlat": 40.7077766, + "minlon": -74.0129583, + "maxlat": 40.7083300, + "maxlon": -74.0125841 + }, + "nodes": [ + 42446622, + 4206997181, + 4739552807, + 4739552805, + 12354084733 + ], + "geometry": [ + { "lat": 40.7077766, "lon": -74.0129583 }, + { "lat": 40.7078205, "lon": -74.0129287 }, + { "lat": 40.7079878, "lon": -74.0128155 }, + { "lat": 40.7082220, "lon": -74.0126571 }, + { "lat": 40.7083300, "lon": -74.0125841 } + ], + "tags": { + "bus:lanes": "yes|yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "maxspeed": "20 mph", + "name": "Trinity Place", + "name:etymology:wikidata": "Q866896", + "name:ko": "트리니티 플레이스", + "name:ru": "Тринити-Плейс", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "merge_to_right|none|none", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1032502935, + "bounds": { + "minlat": 40.7086084, + "minlon": -74.0123955, + "maxlat": 40.7090349, + "maxlon": -74.0121098 + }, + "nodes": [ + 9513259943, + 8262936655, + 42456888 + ], + "geometry": [ + { "lat": 40.7086084, "lon": -74.0123955 }, + { "lat": 40.7089638, "lon": -74.0121570 }, + { "lat": 40.7090349, "lon": -74.0121098 } + ], + "tags": { + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Trinity Place", + "name:etymology:wikidata": "Q866896", + "name:ko": "트리니티 플레이스", + "name:ru": "Тринити-Плейс", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1032502936, + "bounds": { + "minlat": 40.7093107, + "minlon": -74.0128433, + "maxlat": 40.7096876, + "maxlon": -74.0119350 + }, + "nodes": [ + 42434412, + 10288802755, + 8262936648, + 10288473154, + 8262936661, + 10288473151, + 10288473152, + 10288473153, + 42434413 + ], + "geometry": [ + { "lat": 40.7093107, "lon": -74.0119350 }, + { "lat": 40.7093294, "lon": -74.0119820 }, + { "lat": 40.7093487, "lon": -74.0120281 }, + { "lat": 40.7096560, "lon": -74.0127079 }, + { "lat": 40.7096786, "lon": -74.0127584 }, + { "lat": 40.7096836, "lon": -74.0127769 }, + { "lat": 40.7096876, "lon": -74.0128049 }, + { "lat": 40.7096876, "lon": -74.0128249 }, + { "lat": 40.7096833, "lon": -74.0128433 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cedar Street", + "name:etymology:wikidata": "Q128550", + "name:ko": "시더 스트리트", + "name:ru": "Сидар-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "15'8\"", + "wikidata": "Q13933858" + } +}, +{ + "type": "way", + "id": 1032502937, + "bounds": { + "minlat": 40.7090349, + "minlon": -74.0121098, + "maxlat": 40.7093107, + "maxlon": -74.0119350 + }, + "nodes": [ + 42456888, + 10299850210, + 8262936647, + 42434412 + ], + "geometry": [ + { "lat": 40.7090349, "lon": -74.0121098 }, + { "lat": 40.7090471, "lon": -74.0121019 }, + { "lat": 40.7092766, "lon": -74.0119541 }, + { "lat": 40.7093107, "lon": -74.0119350 } + ], + "tags": { + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Trinity Place", + "name:etymology:wikidata": "Q866896", + "name:ko": "트리니티 플레이스", + "name:ru": "Тринити-Плейс", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1032525906, + "bounds": { + "minlat": 40.8420593, + "minlon": -73.9254981, + "maxlat": 40.8428369, + "maxlon": -73.9247909 + }, + "nodes": [ + 42741647, + 9516503988, + 9513378612, + 9516503989, + 9513378613, + 9513378614, + 9513378615 + ], + "geometry": [ + { "lat": 40.8427575, "lon": -73.9247909 }, + { "lat": 40.8428071, "lon": -73.9248591 }, + { "lat": 40.8428369, "lon": -73.9249329 }, + { "lat": 40.8427932, "lon": -73.9249501 }, + { "lat": 40.8426687, "lon": -73.9250421 }, + { "lat": 40.8424736, "lon": -73.9252058 }, + { "lat": 40.8420593, "lon": -73.9254981 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1032556362, + "bounds": { + "minlat": 40.8414200, + "minlon": -74.0057681, + "maxlat": 40.8417023, + "maxlon": -74.0052799 + }, + "nodes": [ + 103265287, + 12016147234, + 12016147231, + 103265288 + ], + "geometry": [ + { "lat": 40.8414200, "lon": -74.0052799 }, + { "lat": 40.8414642, "lon": -74.0053568 }, + { "lat": 40.8414824, "lon": -74.0053885 }, + { "lat": 40.8417023, "lon": -74.0057681 } + ], + "tags": { + "highway": "unclassified", + "name": "Elm Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Elm", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657" + } +}, +{ + "type": "way", + "id": 1032556363, + "bounds": { + "minlat": 40.8400675, + "minlon": -74.0060351, + "maxlat": 40.8414200, + "maxlon": -74.0052799 + }, + "nodes": [ + 103265287, + 12016147235, + 103156937, + 6615844729, + 10262495354, + 12016147239, + 103206969 + ], + "geometry": [ + { "lat": 40.8414200, "lon": -74.0052799 }, + { "lat": 40.8413674, "lon": -74.0053095 }, + { "lat": 40.8407701, "lon": -74.0056451 }, + { "lat": 40.8404674, "lon": -74.0058150 }, + { "lat": 40.8403635, "lon": -74.0058768 }, + { "lat": 40.8401016, "lon": -74.0060168 }, + { "lat": 40.8400675, "lon": -74.0060351 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "40 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1032561435, + "bounds": { + "minlat": 40.7945742, + "minlon": -74.0120394, + "maxlat": 40.7948030, + "maxlon": -74.0118736 + }, + "nodes": [ + 103866644, + 7674820839, + 6890653284 + ], + "geometry": [ + { "lat": 40.7948030, "lon": -74.0118736 }, + { "lat": 40.7947523, "lon": -74.0119103 }, + { "lat": 40.7945742, "lon": -74.0120394 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680;Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721;Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093;07087", + "tiger:zip_right": "07047:07087:07093;07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 1032561436, + "bounds": { + "minlat": 40.7898880, + "minlon": -74.0155848, + "maxlat": 40.7945742, + "maxlon": -74.0120394 + }, + "nodes": [ + 6890653284, + 440244401, + 7674820842, + 440244399, + 7674820845, + 7674820847, + 103866641, + 7674820799, + 7674820802, + 103866639, + 7674820805, + 103866637, + 7674807382, + 103864416, + 7674820785, + 7674820787, + 103866635, + 7668140059, + 7278552195, + 7668140056, + 103866634, + 7668140053, + 7668140050, + 103864952, + 7660979659, + 7660979662, + 103866633, + 7660979665, + 7660979667, + 103866632 + ], + "geometry": [ + { "lat": 40.7945742, "lon": -74.0120394 }, + { "lat": 40.7944790, "lon": -74.0121110 }, + { "lat": 40.7942685, "lon": -74.0122693 }, + { "lat": 40.7941930, "lon": -74.0123260 }, + { "lat": 40.7941520, "lon": -74.0123567 }, + { "lat": 40.7940184, "lon": -74.0124568 }, + { "lat": 40.7939540, "lon": -74.0125050 }, + { "lat": 40.7939002, "lon": -74.0125455 }, + { "lat": 40.7936663, "lon": -74.0127215 }, + { "lat": 40.7936024, "lon": -74.0127676 }, + { "lat": 40.7935318, "lon": -74.0128225 }, + { "lat": 40.7934320, "lon": -74.0128970 }, + { "lat": 40.7930671, "lon": -74.0131711 }, + { "lat": 40.7930119, "lon": -74.0132125 }, + { "lat": 40.7929696, "lon": -74.0132451 }, + { "lat": 40.7924872, "lon": -74.0136163 }, + { "lat": 40.7924108, "lon": -74.0136751 }, + { "lat": 40.7923717, "lon": -74.0137039 }, + { "lat": 40.7919402, "lon": -74.0140218 }, + { "lat": 40.7918790, "lon": -74.0140680 }, + { "lat": 40.7918340, "lon": -74.0141020 }, + { "lat": 40.7918052, "lon": -74.0141237 }, + { "lat": 40.7912703, "lon": -74.0145463 }, + { "lat": 40.7912092, "lon": -74.0145911 }, + { "lat": 40.7911289, "lon": -74.0146523 }, + { "lat": 40.7902985, "lon": -74.0152723 }, + { "lat": 40.7902303, "lon": -74.0153229 }, + { "lat": 40.7901620, "lon": -74.0153777 }, + { "lat": 40.7899458, "lon": -74.0155401 }, + { "lat": 40.7898880, "lon": -74.0155848 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680;Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721;Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093;07087", + "tiger:zip_right": "07047:07087:07093;07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 1032561437, + "bounds": { + "minlat": 40.7949988, + "minlon": -74.0156534, + "maxlat": 40.7965842, + "maxlon": -74.0122904 + }, + "nodes": [ + 6890653280, + 7653988900, + 103869035, + 7653964039, + 7653964037, + 103869202, + 7653964034, + 7653964032, + 103861906, + 7474498721, + 7474498723, + 440244416, + 7474498757, + 13826822476, + 7474498737, + 440243586 + ], + "geometry": [ + { "lat": 40.7949988, "lon": -74.0122904 }, + { "lat": 40.7951816, "lon": -74.0126730 }, + { "lat": 40.7952126, "lon": -74.0127378 }, + { "lat": 40.7952535, "lon": -74.0128167 }, + { "lat": 40.7955399, "lon": -74.0134422 }, + { "lat": 40.7955650, "lon": -74.0134970 }, + { "lat": 40.7956067, "lon": -74.0135888 }, + { "lat": 40.7958863, "lon": -74.0142032 }, + { "lat": 40.7959272, "lon": -74.0142932 }, + { "lat": 40.7959610, "lon": -74.0143642 }, + { "lat": 40.7962506, "lon": -74.0149734 }, + { "lat": 40.7962877, "lon": -74.0150514 }, + { "lat": 40.7963220, "lon": -74.0151209 }, + { "lat": 40.7964574, "lon": -74.0153958 }, + { "lat": 40.7965277, "lon": -74.0155387 }, + { "lat": 40.7965842, "lon": -74.0156534 } + ], + "tags": { + "highway": "residential", + "name": "68th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "68th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 1032593281, + "bounds": { + "minlat": 40.7955574, + "minlon": -74.0113184, + "maxlat": 40.7961717, + "maxlon": -74.0108616 + }, + "nodes": [ + 103866645, + 7653988895, + 7653988898, + 103855259 + ], + "geometry": [ + { "lat": 40.7961717, "lon": -74.0108616 }, + { "lat": 40.7961078, "lon": -74.0109105 }, + { "lat": 40.7956121, "lon": -74.0112766 }, + { "lat": 40.7955574, "lon": -74.0113184 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680; Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721; Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093; 07087", + "tiger:zip_right": "07047:07087:07093; 07087", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 1032836284, + "bounds": { + "minlat": 40.8071276, + "minlon": -74.0162439, + "maxlat": 40.8072816, + "maxlon": -74.0158302 + }, + "nodes": [ + 9516003629, + 7265483744, + 103860883 + ], + "geometry": [ + { "lat": 40.8071276, "lon": -74.0158302 }, + { "lat": 40.8071719, "lon": -74.0159492 }, + { "lat": 40.8072816, "lon": -74.0162439 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "81st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "81st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes": "left|through;right" + } +}, +{ + "type": "way", + "id": 1032897833, + "bounds": { + "minlat": 40.8428369, + "minlon": -73.9249329, + "maxlat": 40.8428882, + "maxlon": -73.9249225 + }, + "nodes": [ + 9513378612, + 9516503990 + ], + "geometry": [ + { "lat": 40.8428369, "lon": -73.9249329 }, + { "lat": 40.8428882, "lon": -73.9249225 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1034066235, + "bounds": { + "minlat": 40.8236751, + "minlon": -74.0116309, + "maxlat": 40.8243258, + "maxlon": -74.0115715 + }, + "nodes": [ + 5751062631, + 9526207106 + ], + "geometry": [ + { "lat": 40.8243258, "lon": -74.0115715 }, + { "lat": 40.8236751, "lon": -74.0116309 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1034066236, + "bounds": { + "minlat": 40.8243258, + "minlon": -74.0120654, + "maxlat": 40.8243507, + "maxlon": -74.0115715 + }, + "nodes": [ + 5751062631, + 9526207109, + 9526207108, + 9526207107 + ], + "geometry": [ + { "lat": 40.8243258, "lon": -74.0115715 }, + { "lat": 40.8243324, "lon": -74.0117017 }, + { "lat": 40.8243381, "lon": -74.0118164 }, + { "lat": 40.8243507, "lon": -74.0120654 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1034066237, + "bounds": { + "minlat": 40.8236771, + "minlon": -74.0118694, + "maxlat": 40.8243381, + "maxlon": -74.0118164 + }, + "nodes": [ + 5751062627, + 9526207108 + ], + "geometry": [ + { "lat": 40.8236771, "lon": -74.0118694 }, + { "lat": 40.8243381, "lon": -74.0118164 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1034066238, + "bounds": { + "minlat": 40.8243324, + "minlon": -74.0117017, + "maxlat": 40.8246115, + "maxlon": -74.0116780 + }, + "nodes": [ + 5751062623, + 9526207109 + ], + "geometry": [ + { "lat": 40.8246115, "lon": -74.0116780 }, + { "lat": 40.8243324, "lon": -74.0117017 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1034066239, + "bounds": { + "minlat": 40.8246667, + "minlon": -74.0114511, + "maxlat": 40.8251217, + "maxlon": -74.0112882 + }, + "nodes": [ + 9526207110, + 9526207111, + 9526207112 + ], + "geometry": [ + { "lat": 40.8246667, "lon": -74.0112882 }, + { "lat": 40.8249370, "lon": -74.0113849 }, + { "lat": 40.8251217, "lon": -74.0114511 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1034066240, + "bounds": { + "minlat": 40.8247110, + "minlon": -74.0112522, + "maxlat": 40.8251661, + "maxlon": -74.0110787 + }, + "nodes": [ + 9526207113, + 9526207114, + 9526207115 + ], + "geometry": [ + { "lat": 40.8247110, "lon": -74.0110787 }, + { "lat": 40.8249805, "lon": -74.0111814 }, + { "lat": 40.8251661, "lon": -74.0112522 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1034066241, + "bounds": { + "minlat": 40.8246115, + "minlon": -74.0116480, + "maxlat": 40.8250778, + "maxlon": -74.0115254 + }, + "nodes": [ + 9526207116, + 7860914910, + 9526241317, + 5751062622 + ], + "geometry": [ + { "lat": 40.8250778, "lon": -74.0116480 }, + { "lat": 40.8248903, "lon": -74.0115822 }, + { "lat": 40.8246724, "lon": -74.0115254 }, + { "lat": 40.8246115, "lon": -74.0115495 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1034066242, + "bounds": { + "minlat": 40.8247540, + "minlon": -74.0110469, + "maxlat": 40.8252118, + "maxlon": -74.0108748 + }, + "nodes": [ + 9526241318, + 9526241319, + 9526241320 + ], + "geometry": [ + { "lat": 40.8252118, "lon": -74.0110469 }, + { "lat": 40.8250242, "lon": -74.0109764 }, + { "lat": 40.8247540, "lon": -74.0108748 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1034066243, + "bounds": { + "minlat": 40.8248000, + "minlon": -74.0108260, + "maxlat": 40.8252611, + "maxlon": -74.0106570 + }, + "nodes": [ + 9526241321, + 9526241322, + 9526241323 + ], + "geometry": [ + { "lat": 40.8252611, "lon": -74.0108260 }, + { "lat": 40.8250712, "lon": -74.0107564 }, + { "lat": 40.8248000, "lon": -74.0106570 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1034066244, + "bounds": { + "minlat": 40.8248434, + "minlon": -74.0106231, + "maxlat": 40.8253063, + "maxlon": -74.0104516 + }, + "nodes": [ + 9526241324, + 9526241325, + 9526241326 + ], + "geometry": [ + { "lat": 40.8253063, "lon": -74.0106231 }, + { "lat": 40.8251148, "lon": -74.0105522 }, + { "lat": 40.8248434, "lon": -74.0104516 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1034066245, + "bounds": { + "minlat": 40.8248895, + "minlon": -74.0104065, + "maxlat": 40.8253546, + "maxlon": -74.0102334 + }, + "nodes": [ + 9526241327, + 9526241328, + 9526241329 + ], + "geometry": [ + { "lat": 40.8253546, "lon": -74.0104065 }, + { "lat": 40.8251613, "lon": -74.0103345 }, + { "lat": 40.8248895, "lon": -74.0102334 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1034066246, + "bounds": { + "minlat": 40.8252101, + "minlon": -74.0101060, + "maxlat": 40.8254382, + "maxlon": -74.0099575 + }, + "nodes": [ + 9526241331, + 9526241330, + 7860914911 + ], + "geometry": [ + { "lat": 40.8254382, "lon": -74.0100313 }, + { "lat": 40.8252421, "lon": -74.0099575 }, + { "lat": 40.8252101, "lon": -74.0101060 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1034066247, + "bounds": { + "minlat": 40.8250021, + "minlon": -74.0099218, + "maxlat": 40.8251983, + "maxlon": -74.0098513 + }, + "nodes": [ + 9526241332, + 9526241333 + ], + "geometry": [ + { "lat": 40.8251983, "lon": -74.0099218 }, + { "lat": 40.8250021, "lon": -74.0098513 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1034066248, + "bounds": { + "minlat": 40.8248914, + "minlon": -74.0098513, + "maxlat": 40.8250021, + "maxlon": -74.0098323 + }, + "nodes": [ + 9526241333, + 5751062649 + ], + "geometry": [ + { "lat": 40.8250021, "lon": -74.0098513 }, + { "lat": 40.8248914, "lon": -74.0098323 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1034455808, + "bounds": { + "minlat": 40.8128587, + "minlon": -73.9072527, + "maxlat": 40.8156521, + "maxlon": -73.9062412 + }, + "nodes": [ + 42768288, + 9917835162, + 42733581, + 5482340555, + 7564343611, + 13809174746, + 42758623, + 13809174744, + 8208196766, + 5859955163, + 13809174732, + 42768295 + ], + "geometry": [ + { "lat": 40.8128587, "lon": -73.9072527 }, + { "lat": 40.8129726, "lon": -73.9072115 }, + { "lat": 40.8136563, "lon": -73.9069645 }, + { "lat": 40.8144482, "lon": -73.9066782 }, + { "lat": 40.8144511, "lon": -73.9066772 }, + { "lat": 40.8146609, "lon": -73.9066013 }, + { "lat": 40.8147191, "lon": -73.9065802 }, + { "lat": 40.8147641, "lon": -73.9065639 }, + { "lat": 40.8152434, "lon": -73.9063897 }, + { "lat": 40.8155350, "lon": -73.9062838 }, + { "lat": 40.8155703, "lon": -73.9062709 }, + { "lat": 40.8156521, "lon": -73.9062412 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Wales Avenue", + "name:etymology:wikidata": "Q25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Wales", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 1034455809, + "bounds": { + "minlat": 40.8128587, + "minlon": -73.9081620, + "maxlat": 40.8130536, + "maxlon": -73.9072527 + }, + "nodes": [ + 42768288, + 9917835164, + 9917835167, + 42755244 + ], + "geometry": [ + { "lat": 40.8128587, "lon": -73.9072527 }, + { "lat": 40.8128773, "lon": -73.9073382 }, + { "lat": 40.8130360, "lon": -73.9080797 }, + { "lat": 40.8130536, "lon": -73.9081620 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:forward": "through|right" + } +}, +{ + "type": "way", + "id": 1034527687, + "bounds": { + "minlat": 40.7184492, + "minlon": -74.0005519, + "maxlat": 40.7187349, + "maxlon": -74.0002887 + }, + "nodes": [ + 4202984493, + 12197904825, + 8307641785, + 5706569898 + ], + "geometry": [ + { "lat": 40.7187349, "lon": -74.0002887 }, + { "lat": 40.7185801, "lon": -74.0004310 }, + { "lat": 40.7185394, "lon": -74.0004681 }, + { "lat": 40.7184492, "lon": -74.0005519 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "||right", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 1034528020, + "bounds": { + "minlat": 40.7109120, + "minlon": -73.9923229, + "maxlat": 40.7111223, + "maxlon": -73.9922162 + }, + "nodes": [ + 9530140907, + 7787627745, + 4207806923 + ], + "geometry": [ + { "lat": 40.7111223, "lon": -73.9923229 }, + { "lat": 40.7109697, "lon": -73.9922468 }, + { "lat": 40.7109120, "lon": -73.9922162 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|none", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 1034528354, + "bounds": { + "minlat": 40.7121483, + "minlon": -73.9922797, + "maxlat": 40.7124807, + "maxlon": -73.9922317 + }, + "nodes": [ + 9530140478, + 11648317251, + 8279851243, + 6330018917 + ], + "geometry": [ + { "lat": 40.7121483, "lon": -73.9922317 }, + { "lat": 40.7123546, "lon": -73.9922630 }, + { "lat": 40.7123779, "lon": -73.9922657 }, + { "lat": 40.7124807, "lon": -73.9922797 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pike Street", + "name:etymology:wikidata": "Q169549", + "name:ko": "파이크 스트리트", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|none", + "wikidata": "Q55091804", + "wikipedia": "en:Pike street (New York City)" + } +}, +{ + "type": "way", + "id": 1034529064, + "bounds": { + "minlat": 40.7534779, + "minlon": -73.9929120, + "maxlat": 40.7536401, + "maxlon": -73.9925251 + }, + "nodes": [ + 9530100567, + 8660596976, + 6211484436, + 42435646 + ], + "geometry": [ + { "lat": 40.7536401, "lon": -73.9929120 }, + { "lat": 40.7535359, "lon": -73.9926634 }, + { "lat": 40.7535237, "lon": -73.9926344 }, + { "lat": 40.7534779, "lon": -73.9925251 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 36th Street", + "name:ru": "Западная 36-я стрит", + "name_1": "West 36 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1034698260, + "bounds": { + "minlat": 40.7126120, + "minlon": -73.9492450, + "maxlat": 40.7133200, + "maxlon": -73.9491310 + }, + "nodes": [ + 42525812, + 9767624832, + 9795356152, + 42527653 + ], + "geometry": [ + { "lat": 40.7126120, "lon": -73.9491310 }, + { "lat": 40.7126839, "lon": -73.9491428 }, + { "lat": 40.7132655, "lon": -73.9492362 }, + { "lat": 40.7133200, "lon": -73.9492450 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1034698261, + "bounds": { + "minlat": 40.7124006, + "minlon": -73.9513324, + "maxlat": 40.7126120, + "maxlon": -73.9491310 + }, + "nodes": [ + 42520582, + 9767549616, + 9767624833, + 42525812 + ], + "geometry": [ + { "lat": 40.7124006, "lon": -73.9513324 }, + { "lat": 40.7124095, "lon": -73.9512397 }, + { "lat": 40.7126022, "lon": -73.9492335 }, + { "lat": 40.7126120, "lon": -73.9491310 } + ], + "tags": { + "highway": "residential", + "name": "Ainslie Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 1034698262, + "bounds": { + "minlat": 40.7140807, + "minlon": -73.9495980, + "maxlat": 40.7154640, + "maxlon": -73.9493717 + }, + "nodes": [ + 5482177473, + 6248588905, + 9795355989, + 42518609, + 9795355986, + 9802943868, + 42527659 + ], + "geometry": [ + { "lat": 40.7140807, "lon": -73.9493717 }, + { "lat": 40.7141567, "lon": -73.9493844 }, + { "lat": 40.7146991, "lon": -73.9494729 }, + { "lat": 40.7147550, "lon": -73.9494820 }, + { "lat": 40.7148267, "lon": -73.9494937 }, + { "lat": 40.7154075, "lon": -73.9495887 }, + { "lat": 40.7154640, "lon": -73.9495980 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1034698263, + "bounds": { + "minlat": 40.7153185, + "minlon": -73.9513418, + "maxlat": 40.7154640, + "maxlon": -73.9495980 + }, + "nodes": [ + 42476494, + 9802943852, + 9949556551, + 9802943867, + 42527659 + ], + "geometry": [ + { "lat": 40.7153585, "lon": -73.9513418 }, + { "lat": 40.7153378, "lon": -73.9512647 }, + { "lat": 40.7153185, "lon": -73.9511878 }, + { "lat": 40.7154549, "lon": -73.9496919 }, + { "lat": 40.7154640, "lon": -73.9495980 } + ], + "tags": { + "highway": "residential", + "name": "Skillman Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1034703028, + "bounds": { + "minlat": 40.7523898, + "minlon": -74.0042686, + "maxlat": 40.7526648, + "maxlon": -74.0036235 + }, + "nodes": [ + 9531564558, + 10168324134, + 12152879562, + 8261122840, + 42427824 + ], + "geometry": [ + { "lat": 40.7523898, "lon": -74.0036235 }, + { "lat": 40.7525630, "lon": -74.0040305 }, + { "lat": 40.7525836, "lon": -74.0040787 }, + { "lat": 40.7526041, "lon": -74.0041270 }, + { "lat": 40.7526648, "lon": -74.0042686 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1034706635, + "bounds": { + "minlat": 40.6999102, + "minlon": -73.9828634, + "maxlat": 40.7002573, + "maxlon": -73.9828474 + }, + "nodes": [ + 5912952466, + 9531583113 + ], + "geometry": [ + { "lat": 40.6999102, "lon": -73.9828634 }, + { "lat": 40.7002573, "lon": -73.9828474 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Gold Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1034711427, + "bounds": { + "minlat": 40.8125091, + "minlon": -73.9421310, + "maxlat": 40.8126288, + "maxlon": -73.9420440 + }, + "nodes": [ + 9531614982, + 4207724582 + ], + "geometry": [ + { "lat": 40.8126288, "lon": -73.9420440 }, + { "lat": 40.8125091, "lon": -73.9421310 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 1034716084, + "bounds": { + "minlat": 40.8047992, + "minlon": -73.9475605, + "maxlat": 40.8049721, + "maxlon": -73.9474352 + }, + "nodes": [ + 9531712058, + 4207724574 + ], + "geometry": [ + { "lat": 40.8047992, "lon": -73.9475605 }, + { "lat": 40.8049721, "lon": -73.9474352 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 1035489417, + "bounds": { + "minlat": 40.7569880, + "minlon": -73.9931852, + "maxlat": 40.7570487, + "maxlon": -73.9931412 + }, + "nodes": [ + 4600847096, + 9538820171 + ], + "geometry": [ + { "lat": 40.7569880, "lon": -73.9931852 }, + { "lat": 40.7570487, "lon": -73.9931412 } + ], + "tags": { + "access": "no", + "highway": "service", + "motor_vehicle": "no", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1036491301, + "bounds": { + "minlat": 40.8115253, + "minlon": -74.0043252, + "maxlat": 40.8116710, + "maxlon": -74.0041370 + }, + "nodes": [ + 103147899, + 6896030083, + 103879744, + 9549128773 + ], + "geometry": [ + { "lat": 40.8116710, "lon": -74.0041370 }, + { "lat": 40.8115934, "lon": -74.0042432 }, + { "lat": 40.8115436, "lon": -74.0043114 }, + { "lat": 40.8115253, "lon": -74.0043252 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "1", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63;CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "State Route 63", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047" + } +}, +{ + "type": "way", + "id": 1036546555, + "bounds": { + "minlat": 40.7149705, + "minlon": -73.9780428, + "maxlat": 40.7150598, + "maxlon": -73.9777493 + }, + "nodes": [ + 9549667211, + 8309738058, + 4375208207 + ], + "geometry": [ + { "lat": 40.7150598, "lon": -73.9780428 }, + { "lat": 40.7149785, "lon": -73.9777756 }, + { "lat": 40.7149705, "lon": -73.9777493 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 1036553257, + "bounds": { + "minlat": 40.7377897, + "minlon": -73.9358769, + "maxlat": 40.7379376, + "maxlon": -73.9349617 + }, + "nodes": [ + 42866373, + 10743730242, + 9982189107, + 9982189108, + 9982189109, + 13049334865, + 42901430 + ], + "geometry": [ + { "lat": 40.7377897, "lon": -73.9349617 }, + { "lat": 40.7378205, "lon": -73.9351336 }, + { "lat": 40.7378538, "lon": -73.9353210 }, + { "lat": 40.7378813, "lon": -73.9354861 }, + { "lat": 40.7379089, "lon": -73.9356750 }, + { "lat": 40.7379279, "lon": -73.9358082 }, + { "lat": 40.7379376, "lon": -73.9358769 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through;right" + } +}, +{ + "type": "way", + "id": 1036553258, + "bounds": { + "minlat": 40.7379376, + "minlon": -73.9367993, + "maxlat": 40.7380463, + "maxlon": -73.9358769 + }, + "nodes": [ + 42901430, + 13049334871, + 9982189111, + 13049334878, + 42849642 + ], + "geometry": [ + { "lat": 40.7379376, "lon": -73.9358769 }, + { "lat": 40.7379472, "lon": -73.9359579 }, + { "lat": 40.7379687, "lon": -73.9361408 }, + { "lat": 40.7380387, "lon": -73.9367347 }, + { "lat": 40.7380463, "lon": -73.9367993 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through" + } +}, +{ + "type": "way", + "id": 1036553259, + "bounds": { + "minlat": 40.7377757, + "minlon": -73.9368531, + "maxlat": 40.7380463, + "maxlon": -73.9367993 + }, + "nodes": [ + 42849642, + 597269955 + ], + "geometry": [ + { "lat": 40.7380463, "lon": -73.9367993 }, + { "lat": 40.7377757, "lon": -73.9368531 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "31st Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1036553260, + "bounds": { + "minlat": 40.7381084, + "minlon": -73.9377342, + "maxlat": 40.7381931, + "maxlon": -73.9372514 + }, + "nodes": [ + 9179114926, + 9982189113, + 9179114925, + 13048095847, + 42867660 + ], + "geometry": [ + { "lat": 40.7381084, "lon": -73.9372514 }, + { "lat": 40.7381350, "lon": -73.9374207 }, + { "lat": 40.7381632, "lon": -73.9375939 }, + { "lat": 40.7381765, "lon": -73.9376564 }, + { "lat": 40.7381931, "lon": -73.9377342 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "||right" + } +}, +{ + "type": "way", + "id": 1036553262, + "bounds": { + "minlat": 40.7379218, + "minlon": -73.9377958, + "maxlat": 40.7381931, + "maxlon": -73.9377342 + }, + "nodes": [ + 597269954, + 13048095843, + 13048095842, + 9982189114, + 42867660 + ], + "geometry": [ + { "lat": 40.7379218, "lon": -73.9377958 }, + { "lat": 40.7379602, "lon": -73.9377872 }, + { "lat": 40.7381235, "lon": -73.9377502 }, + { "lat": 40.7381290, "lon": -73.9377491 }, + { "lat": 40.7381931, "lon": -73.9377342 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "30th Place", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1036554450, + "bounds": { + "minlat": 40.7422741, + "minlon": -73.9783500, + "maxlat": 40.7425358, + "maxlon": -73.9777196 + }, + "nodes": [ + 9549750338, + 7640871308, + 42442902 + ], + "geometry": [ + { "lat": 40.7425358, "lon": -73.9783500 }, + { "lat": 40.7423274, "lon": -73.9778579 }, + { "lat": 40.7422741, "lon": -73.9777196 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 30th Street", + "name:ru": "Восточная 30-я стрит", + "name_1": "East 30 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1036557609, + "bounds": { + "minlat": 40.8076441, + "minlon": -73.9261427, + "maxlat": 40.8079826, + "maxlon": -73.9253558 + }, + "nodes": [ + 595800973, + 10168258154, + 9549699816 + ], + "geometry": [ + { "lat": 40.8076441, "lon": -73.9253558 }, + { "lat": 40.8077784, "lon": -73.9256598 }, + { "lat": 40.8079826, "lon": -73.9261427 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1036557610, + "bounds": { + "minlat": 40.8075201, + "minlon": -73.9270069, + "maxlat": 40.8081583, + "maxlon": -73.9265383 + }, + "nodes": [ + 42732845, + 9908621501, + 9908621502, + 42732852 + ], + "geometry": [ + { "lat": 40.8075201, "lon": -73.9270069 }, + { "lat": 40.8075839, "lon": -73.9269585 }, + { "lat": 40.8080808, "lon": -73.9265950 }, + { "lat": 40.8081583, "lon": -73.9265383 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Alexander Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Alexander", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1036557611, + "bounds": { + "minlat": 40.8079826, + "minlon": -73.9265383, + "maxlat": 40.8081583, + "maxlon": -73.9261427 + }, + "nodes": [ + 9549699816, + 9163759286, + 42732852 + ], + "geometry": [ + { "lat": 40.8079826, "lon": -73.9261427 }, + { "lat": 40.8080992, "lon": -73.9264188 }, + { "lat": 40.8081583, "lon": -73.9265383 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "left;through|through|through;right" + } +}, +{ + "type": "way", + "id": 1036557637, + "bounds": { + "minlat": 40.7371642, + "minlon": -73.9325775, + "maxlat": 40.7375295, + "maxlon": -73.9308371 + }, + "nodes": [ + 42896796, + 9179114962, + 9981925187, + 42866723, + 9179114982, + 9179114981, + 9179114980, + 277385122 + ], + "geometry": [ + { "lat": 40.7371642, "lon": -73.9308371 }, + { "lat": 40.7371991, "lon": -73.9309912 }, + { "lat": 40.7373032, "lon": -73.9314809 }, + { "lat": 40.7374111, "lon": -73.9319527 }, + { "lat": 40.7374404, "lon": -73.9320746 }, + { "lat": 40.7374730, "lon": -73.9322266 }, + { "lat": 40.7374990, "lon": -73.9323700 }, + { "lat": 40.7375295, "lon": -73.9325775 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left|slight_right|" + } +}, +{ + "type": "way", + "id": 1036557638, + "bounds": { + "minlat": 40.7375295, + "minlon": -73.9328443, + "maxlat": 40.7375381, + "maxlon": -73.9325775 + }, + "nodes": [ + 277385122, + 277385120 + ], + "geometry": [ + { "lat": 40.7375295, "lon": -73.9325775 }, + { "lat": 40.7375381, "lon": -73.9328443 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "slight_left|slight_right" + } +}, +{ + "type": "way", + "id": 1036561583, + "bounds": { + "minlat": 40.7722036, + "minlon": -73.9822863, + "maxlat": 40.7726558, + "maxlon": -73.9822758 + }, + "nodes": [ + 42428588, + 6547993888, + 42428583 + ], + "geometry": [ + { "lat": 40.7726558, "lon": -73.9822863 }, + { "lat": 40.7724996, "lon": -73.9822829 }, + { "lat": 40.7722036, "lon": -73.9822758 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1036712190, + "bounds": { + "minlat": 40.7513757, + "minlon": -73.9859694, + "maxlat": 40.7515125, + "maxlon": -73.9856437 + }, + "nodes": [ + 9551028264, + 4207937591 + ], + "geometry": [ + { "lat": 40.7513757, "lon": -73.9856437 }, + { "lat": 40.7515125, "lon": -73.9859694 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "||right" + } +}, +{ + "type": "way", + "id": 1036714796, + "bounds": { + "minlat": 40.7182549, + "minlon": -74.0052698, + "maxlat": 40.7186284, + "maxlon": -74.0049980 + }, + "nodes": [ + 4143851144, + 8304498311, + 11495531258, + 9551078699 + ], + "geometry": [ + { "lat": 40.7182549, "lon": -74.0052698 }, + { "lat": 40.7182972, "lon": -74.0052375 }, + { "lat": 40.7184545, "lon": -74.0051202 }, + { "lat": 40.7186284, "lon": -74.0049980 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1036714797, + "bounds": { + "minlat": 40.7186284, + "minlon": -74.0049980, + "maxlat": 40.7188572, + "maxlon": -74.0048363 + }, + "nodes": [ + 9551078699, + 8304498288, + 42453777 + ], + "geometry": [ + { "lat": 40.7186284, "lon": -74.0049980 }, + { "lat": 40.7188032, "lon": -74.0048756 }, + { "lat": 40.7188572, "lon": -74.0048363 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1036714798, + "bounds": { + "minlat": 40.7188572, + "minlon": -74.0061502, + "maxlat": 40.7194648, + "maxlon": -74.0048363 + }, + "nodes": [ + 42453777, + 8304498295, + 42430118, + 11515468970, + 8304498291, + 10748446188, + 8312344413, + 42453773 + ], + "geometry": [ + { "lat": 40.7188572, "lon": -74.0048363 }, + { "lat": 40.7189303, "lon": -74.0049973 }, + { "lat": 40.7190003, "lon": -74.0051464 }, + { "lat": 40.7190525, "lon": -74.0052567 }, + { "lat": 40.7190668, "lon": -74.0052869 }, + { "lat": 40.7191812, "lon": -74.0055264 }, + { "lat": 40.7194068, "lon": -74.0060212 }, + { "lat": 40.7194648, "lon": -74.0061502 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "White Street", + "name:ko": "화이트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1036714799, + "bounds": { + "minlat": 40.7200394, + "minlon": -74.0039146, + "maxlat": 40.7205482, + "maxlon": -74.0034713 + }, + "nodes": [ + 42447246, + 8307641815, + 11658947736, + 8307641824, + 11658947725, + 11658947726, + 42440825 + ], + "geometry": [ + { "lat": 40.7200394, "lon": -74.0039146 }, + { "lat": 40.7200884, "lon": -74.0038738 }, + { "lat": 40.7203995, "lon": -74.0036148 }, + { "lat": 40.7204458, "lon": -74.0035763 }, + { "lat": 40.7204828, "lon": -74.0035411 }, + { "lat": 40.7205184, "lon": -74.0035053 }, + { "lat": 40.7205482, "lon": -74.0034713 } + ], + "tags": { + "highway": "residential", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1036714800, + "bounds": { + "minlat": 40.7200394, + "minlon": -74.0052237, + "maxlat": 40.7206562, + "maxlon": -74.0039146 + }, + "nodes": [ + 42430126, + 11492801288, + 2155551110, + 8307641817, + 42447246 + ], + "geometry": [ + { "lat": 40.7206562, "lon": -74.0052237 }, + { "lat": 40.7206454, "lon": -74.0051762 }, + { "lat": 40.7205833, "lon": -74.0050678 }, + { "lat": 40.7200990, "lon": -74.0040406 }, + { "lat": 40.7200394, "lon": -74.0039146 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Lispenard Street", + "name:ko": "리스페너드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1036771935, + "bounds": { + "minlat": 40.7084795, + "minlon": -73.9595160, + "maxlat": 40.7088858, + "maxlon": -73.9592632 + }, + "nodes": [ + 9551483254, + 2782255525, + 42480086 + ], + "geometry": [ + { "lat": 40.7084795, "lon": -73.9595160 }, + { "lat": 40.7087997, "lon": -73.9593151 }, + { "lat": 40.7088858, "lon": -73.9592632 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "name": "Havemeyer Street", + "name_1": "South 5th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Havemeyer", + "tiger:name_base_1": "5th", + "tiger:name_direction_prefix_1": "S", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "turn:lanes": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 1036832449, + "bounds": { + "minlat": 40.8524757, + "minlon": -73.9649268, + "maxlat": 40.8526089, + "maxlon": -73.9645551 + }, + "nodes": [ + 9551976628, + 9551976627, + 9551976626, + 9551976625, + 10000901903, + 4204767289 + ], + "geometry": [ + { "lat": 40.8525385, "lon": -73.9649268 }, + { "lat": 40.8525038, "lon": -73.9648844 }, + { "lat": 40.8524757, "lon": -73.9647009 }, + { "lat": 40.8525012, "lon": -73.9646327 }, + { "lat": 40.8525201, "lon": -73.9646206 }, + { "lat": 40.8526089, "lon": -73.9645551 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1036880280, + "bounds": { + "minlat": 40.8461647, + "minlon": -73.9705058, + "maxlat": 40.8465633, + "maxlon": -73.9702291 + }, + "nodes": [ + 5449328010, + 5449327989, + 5449327985, + 5449327979, + 5449327976, + 5449327981, + 5449328031, + 5449327945, + 5449327988, + 5449327997, + 5449327938, + 5449327967 + ], + "geometry": [ + { "lat": 40.8461647, "lon": -73.9704195 }, + { "lat": 40.8461859, "lon": -73.9704404 }, + { "lat": 40.8462342, "lon": -73.9704816 }, + { "lat": 40.8463022, "lon": -73.9705058 }, + { "lat": 40.8464006, "lon": -73.9704991 }, + { "lat": 40.8464669, "lon": -73.9704766 }, + { "lat": 40.8465234, "lon": -73.9704387 }, + { "lat": 40.8465511, "lon": -73.9703935 }, + { "lat": 40.8465633, "lon": -73.9703599 }, + { "lat": 40.8465623, "lon": -73.9703076 }, + { "lat": 40.8465436, "lon": -73.9702577 }, + { "lat": 40.8465322, "lon": -73.9702291 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1037055196, + "bounds": { + "minlat": 40.8545913, + "minlon": -73.9639716, + "maxlat": 40.8549609, + "maxlon": -73.9632666 + }, + "nodes": [ + 11170628912, + 11170628911, + 5449397630, + 5449397631, + 5449400759 + ], + "geometry": [ + { "lat": 40.8545913, "lon": -73.9632666 }, + { "lat": 40.8546306, "lon": -73.9633753 }, + { "lat": 40.8547824, "lon": -73.9636543 }, + { "lat": 40.8548754, "lon": -73.9638151 }, + { "lat": 40.8549609, "lon": -73.9639716 } + ], + "tags": { + "highway": "residential", + "name": "Merkle Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Merkle", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1037055422, + "bounds": { + "minlat": 40.8523972, + "minlon": -73.9675061, + "maxlat": 40.8527418, + "maxlon": -73.9673179 + }, + "nodes": [ + 9553536873, + 298810340, + 298809695, + 298810341 + ], + "geometry": [ + { "lat": 40.8527418, "lon": -73.9673179 }, + { "lat": 40.8526858, "lon": -73.9673391 }, + { "lat": 40.8525672, "lon": -73.9674083 }, + { "lat": 40.8523972, "lon": -73.9675061 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "name": "Park Avenue", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1037118764, + "bounds": { + "minlat": 40.8790038, + "minlon": -74.0082183, + "maxlat": 40.8790190, + "maxlon": -74.0081691 + }, + "nodes": [ + 4469438833, + 103216549 + ], + "geometry": [ + { "lat": 40.8790190, "lon": -74.0082183 }, + { "lat": 40.8790038, "lon": -74.0081691 } + ], + "tags": { + "highway": "residential", + "name": "Fycke Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fycke", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 1037119279, + "bounds": { + "minlat": 40.8480928, + "minlon": -73.9706612, + "maxlat": 40.8482206, + "maxlon": -73.9703327 + }, + "nodes": [ + 9554102346, + 630656243, + 103205043 + ], + "geometry": [ + { "lat": 40.8480928, "lon": -73.9703327 }, + { "lat": 40.8481414, "lon": -73.9705068 }, + { "lat": 40.8482206, "lon": -73.9706612 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Whiteman Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Whiteman", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1037772009, + "bounds": { + "minlat": 40.7457792, + "minlon": -73.9822176, + "maxlat": 40.7463935, + "maxlon": -73.9817611 + }, + "nodes": [ + 42449308, + 8119462496, + 9150486269, + 5250625883, + 3786901738 + ], + "geometry": [ + { "lat": 40.7457792, "lon": -73.9822176 }, + { "lat": 40.7458359, "lon": -73.9821748 }, + { "lat": 40.7462996, "lon": -73.9818403 }, + { "lat": 40.7463380, "lon": -73.9818079 }, + { "lat": 40.7463935, "lon": -73.9817611 } + ], + "tags": { + "alt_name": "4th Avenue", + "destination:lanes": "Tunnel||", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through||", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1037772010, + "bounds": { + "minlat": 40.7541791, + "minlon": -73.9757004, + "maxlat": 40.7546355, + "maxlon": -73.9746273 + }, + "nodes": [ + 100522741, + 420591231, + 9753730048 + ], + "geometry": [ + { "lat": 40.7546355, "lon": -73.9757004 }, + { "lat": 40.7545963, "lon": -73.9756025 }, + { "lat": 40.7541791, "lon": -73.9746273 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "East 46th Street", + "name:ru": "Восточная 46-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1037772011, + "bounds": { + "minlat": 40.7521254, + "minlon": -73.9776221, + "maxlat": 40.7522770, + "maxlon": -73.9769219 + }, + "nodes": [ + 9140654137, + 11506834516, + 42459051, + 11022425832, + 11022425837, + 1690448997, + 11022425838, + 11022425833, + 11022425839, + 595142277, + 11022425834, + 11022425840, + 3786901755, + 11022425835, + 1690449001, + 11022425836, + 3786901756, + 11022425841, + 100522739, + 9140654136, + 100522737, + 100522736, + 3786902257, + 1690448974, + 3786902258, + 9140654135, + 9140654134, + 3842775636 + ], + "geometry": [ + { "lat": 40.7521950, "lon": -73.9776221 }, + { "lat": 40.7522407, "lon": -73.9775643 }, + { "lat": 40.7522516, "lon": -73.9775515 }, + { "lat": 40.7522586, "lon": -73.9775426 }, + { "lat": 40.7522611, "lon": -73.9775383 }, + { "lat": 40.7522643, "lon": -73.9775329 }, + { "lat": 40.7522667, "lon": -73.9775277 }, + { "lat": 40.7522694, "lon": -73.9775214 }, + { "lat": 40.7522716, "lon": -73.9775145 }, + { "lat": 40.7522738, "lon": -73.9775061 }, + { "lat": 40.7522755, "lon": -73.9774959 }, + { "lat": 40.7522762, "lon": -73.9774900 }, + { "lat": 40.7522768, "lon": -73.9774836 }, + { "lat": 40.7522770, "lon": -73.9774746 }, + { "lat": 40.7522764, "lon": -73.9774660 }, + { "lat": 40.7522746, "lon": -73.9774549 }, + { "lat": 40.7522719, "lon": -73.9774440 }, + { "lat": 40.7522692, "lon": -73.9774345 }, + { "lat": 40.7522662, "lon": -73.9774254 }, + { "lat": 40.7521351, "lon": -73.9771087 }, + { "lat": 40.7521280, "lon": -73.9770855 }, + { "lat": 40.7521256, "lon": -73.9770630 }, + { "lat": 40.7521254, "lon": -73.9770429 }, + { "lat": 40.7521270, "lon": -73.9770201 }, + { "lat": 40.7521320, "lon": -73.9769893 }, + { "lat": 40.7521399, "lon": -73.9769656 }, + { "lat": 40.7521509, "lon": -73.9769397 }, + { "lat": 40.7521643, "lon": -73.9769219 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "hgv": "no", + "highway": "primary", + "lanes": "1", + "layer": "1", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:advisory": "15 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q7137641", + "wikipedia": "en:Park Avenue Viaduct" + } +}, +{ + "type": "way", + "id": 1037772578, + "bounds": { + "minlat": 40.7401771, + "minlon": -73.9842672, + "maxlat": 40.7408008, + "maxlon": -73.9838155 + }, + "nodes": [ + 2302133933, + 10166167583, + 12181379212, + 12181379209, + 8835579631, + 42436582 + ], + "geometry": [ + { "lat": 40.7408008, "lon": -73.9838155 }, + { "lat": 40.7407413, "lon": -73.9838604 }, + { "lat": 40.7407270, "lon": -73.9838711 }, + { "lat": 40.7402822, "lon": -73.9841919 }, + { "lat": 40.7402361, "lon": -73.9842247 }, + { "lat": 40.7401771, "lon": -73.9842672 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1037772579, + "bounds": { + "minlat": 40.7398424, + "minlon": -73.9845089, + "maxlat": 40.7401771, + "maxlon": -73.9842672 + }, + "nodes": [ + 42436582, + 10166167591, + 9558740370 + ], + "geometry": [ + { "lat": 40.7401771, "lon": -73.9842672 }, + { "lat": 40.7401215, "lon": -73.9843087 }, + { "lat": 40.7398424, "lon": -73.9845089 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1037922628, + "bounds": { + "minlat": 40.8068378, + "minlon": -73.9213585, + "maxlat": 40.8070870, + "maxlon": -73.9207499 + }, + "nodes": [ + 9559993571, + 9559993570, + 9559993569, + 9559993568, + 9559993572, + 9559993567, + 9559993566, + 9559993565, + 9559993564, + 9559993571, + 11738513801, + 5482371841 + ], + "geometry": [ + { "lat": 40.8070364, "lon": -73.9209478 }, + { "lat": 40.8068378, "lon": -73.9210862 }, + { "lat": 40.8069486, "lon": -73.9213585 }, + { "lat": 40.8070233, "lon": -73.9213021 }, + { "lat": 40.8070535, "lon": -73.9212619 }, + { "lat": 40.8070710, "lon": -73.9212106 }, + { "lat": 40.8070848, "lon": -73.9211579 }, + { "lat": 40.8070870, "lon": -73.9211053 }, + { "lat": 40.8070821, "lon": -73.9210606 }, + { "lat": 40.8070364, "lon": -73.9209478 }, + { "lat": 40.8069939, "lon": -73.9208422 }, + { "lat": 40.8069549, "lon": -73.9207499 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1038355662, + "bounds": { + "minlat": 40.8604936, + "minlon": -73.9215062, + "maxlat": 40.8609294, + "maxlon": -73.9212428 + }, + "nodes": [ + 9563435886, + 9563435887, + 11587200867, + 9563435890, + 42439065 + ], + "geometry": [ + { "lat": 40.8609294, "lon": -73.9215062 }, + { "lat": 40.8608213, "lon": -73.9214409 }, + { "lat": 40.8606195, "lon": -73.9213189 }, + { "lat": 40.8605637, "lon": -73.9212842 }, + { "lat": 40.8604936, "lon": -73.9212428 } + ], + "tags": { + "highway": "residential", + "name": "West 201st Street", + "name_1": "West 201 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1038772917, + "bounds": { + "minlat": 40.7179831, + "minlon": -73.9911709, + "maxlat": 40.7191808, + "maxlon": -73.9905372 + }, + "nodes": [ + 3212472843, + 3212472654, + 3212698619, + 42432108, + 3212698624, + 9566164221 + ], + "geometry": [ + { "lat": 40.7191808, "lon": -73.9905372 }, + { "lat": 40.7190862, "lon": -73.9905941 }, + { "lat": 40.7184108, "lon": -73.9909513 }, + { "lat": 40.7183505, "lon": -73.9909824 }, + { "lat": 40.7183039, "lon": -73.9910061 }, + { "lat": 40.7179831, "lon": -73.9911709 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 1038772918, + "bounds": { + "minlat": 40.7174356, + "minlon": -73.9914520, + "maxlat": 40.7179831, + "maxlon": -73.9911709 + }, + "nodes": [ + 9566164221, + 5043084249, + 42437996 + ], + "geometry": [ + { "lat": 40.7179831, "lon": -73.9911709 }, + { "lat": 40.7175087, "lon": -73.9914145 }, + { "lat": 40.7174356, "lon": -73.9914520 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 1038772919, + "bounds": { + "minlat": 40.7173510, + "minlon": -73.9914520, + "maxlat": 40.7174356, + "maxlon": -73.9911718 + }, + "nodes": [ + 42437996, + 3212472853, + 3212472646, + 5804809463, + 42437962 + ], + "geometry": [ + { "lat": 40.7174356, "lon": -73.9914520 }, + { "lat": 40.7174077, "lon": -73.9913589 }, + { "lat": 40.7173948, "lon": -73.9913163 }, + { "lat": 40.7173813, "lon": -73.9912718 }, + { "lat": 40.7173510, "lon": -73.9911718 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1038780408, + "bounds": { + "minlat": 40.7496742, + "minlon": -73.9952961, + "maxlat": 40.7499526, + "maxlon": -73.9950935 + }, + "nodes": [ + 4443775464, + 10170593081, + 9469803474 + ], + "geometry": [ + { "lat": 40.7496742, "lon": -73.9952961 }, + { "lat": 40.7497300, "lon": -73.9952555 }, + { "lat": 40.7499526, "lon": -73.9950935 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|none|none|none", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1038782688, + "bounds": { + "minlat": 40.7513332, + "minlon": -73.9418628, + "maxlat": 40.7516905, + "maxlon": -73.9410644 + }, + "nodes": [ + 42861204, + 2468400264, + 42920889 + ], + "geometry": [ + { "lat": 40.7513332, "lon": -73.9410644 }, + { "lat": 40.7516563, "lon": -73.9417763 }, + { "lat": 40.7516905, "lon": -73.9418628 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "name": "Queens Plaza North", + "name_1": "Bridge Plaza North", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 1038784416, + "bounds": { + "minlat": 40.7451890, + "minlon": -73.9868460, + "maxlat": 40.7453010, + "maxlon": -73.9865822 + }, + "nodes": [ + 9566279635, + 10167162603, + 42427786 + ], + "geometry": [ + { "lat": 40.7451890, "lon": -73.9865822 }, + { "lat": 40.7452518, "lon": -73.9867281 }, + { "lat": 40.7453010, "lon": -73.9868460 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr-Su 17:00-23:00)", + "name": "East 29th Street", + "name:ru": "Восточная 29-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1038939784, + "bounds": { + "minlat": 40.7484690, + "minlon": -73.9930688, + "maxlat": 40.7487267, + "maxlon": -73.9924631 + }, + "nodes": [ + 9567470137, + 8614943069, + 10168911563, + 42435420 + ], + "geometry": [ + { "lat": 40.7487267, "lon": -73.9930688 }, + { "lat": 40.7485473, "lon": -73.9926471 }, + { "lat": 40.7485278, "lon": -73.9926013 }, + { "lat": 40.7484690, "lon": -73.9924631 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1038965622, + "bounds": { + "minlat": 40.7200781, + "minlon": -73.9608891, + "maxlat": 40.7207274, + "maxlon": -73.9598401 + }, + "nodes": [ + 42506310, + 9794844976, + 9998760567 + ], + "geometry": [ + { "lat": 40.7200781, "lon": -73.9598401 }, + { "lat": 40.7201200, "lon": -73.9599082 }, + { "lat": 40.7207274, "lon": -73.9608891 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North 8th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "8th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1038965623, + "bounds": { + "minlat": 40.7200781, + "minlon": -73.9598401, + "maxlat": 40.7217289, + "maxlon": -73.9580613 + }, + "nodes": [ + 42506305, + 6245642018, + 9794890471, + 42482458, + 9794890470, + 9945078135, + 42492539, + 9945078136, + 11163899179, + 9794844977, + 42506310 + ], + "geometry": [ + { "lat": 40.7217289, "lon": -73.9580613 }, + { "lat": 40.7216826, "lon": -73.9581100 }, + { "lat": 40.7212330, "lon": -73.9585923 }, + { "lat": 40.7211810, "lon": -73.9586480 }, + { "lat": 40.7211291, "lon": -73.9587038 }, + { "lat": 40.7206793, "lon": -73.9591877 }, + { "lat": 40.7206270, "lon": -73.9592440 }, + { "lat": 40.7205787, "lon": -73.9592963 }, + { "lat": 40.7204557, "lon": -73.9594296 }, + { "lat": 40.7201256, "lon": -73.9597871 }, + { "lat": 40.7200781, "lon": -73.9598401 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1038966483, + "bounds": { + "minlat": 40.7157352, + "minlon": -73.9644708, + "maxlat": 40.7178711, + "maxlon": -73.9622061 + }, + "nodes": [ + 42473950, + 9795044525, + 9948150008, + 42506321, + 9948150010, + 6245642037, + 42484164, + 6245642036, + 11163899187, + 9949550285, + 42489001, + 9949550286, + 5572434502, + 42506325 + ], + "geometry": [ + { "lat": 40.7178711, "lon": -73.9622061 }, + { "lat": 40.7178105, "lon": -73.9622710 }, + { "lat": 40.7173156, "lon": -73.9628012 }, + { "lat": 40.7172723, "lon": -73.9628475 }, + { "lat": 40.7172337, "lon": -73.9628888 }, + { "lat": 40.7168307, "lon": -73.9633204 }, + { "lat": 40.7167650, "lon": -73.9633910 }, + { "lat": 40.7167036, "lon": -73.9634592 }, + { "lat": 40.7165331, "lon": -73.9636498 }, + { "lat": 40.7163820, "lon": -73.9637996 }, + { "lat": 40.7163392, "lon": -73.9638453 }, + { "lat": 40.7162952, "lon": -73.9638923 }, + { "lat": 40.7158060, "lon": -73.9644142 }, + { "lat": 40.7157352, "lon": -73.9644708 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1038966484, + "bounds": { + "minlat": 40.7178711, + "minlon": -73.9634800, + "maxlat": 40.7186525, + "maxlon": -73.9622061 + }, + "nodes": [ + 42473950, + 9795044531, + 7740582269, + 9794890513, + 42469494 + ], + "geometry": [ + { "lat": 40.7178711, "lon": -73.9622061 }, + { "lat": 40.7179143, "lon": -73.9622778 }, + { "lat": 40.7183634, "lon": -73.9630242 }, + { "lat": 40.7186179, "lon": -73.9634255 }, + { "lat": 40.7186525, "lon": -73.9634800 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "North 4th Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "4th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 1038972476, + "bounds": { + "minlat": 40.8664380, + "minlon": -73.9305736, + "maxlat": 40.8665599, + "maxlon": -73.9304693 + }, + "nodes": [ + 42441000, + 374473284, + 9567696632, + 9567696633 + ], + "geometry": [ + { "lat": 40.8664380, "lon": -73.9304693 }, + { "lat": 40.8665267, "lon": -73.9305300 }, + { "lat": 40.8665397, "lon": -73.9305470 }, + { "lat": 40.8665599, "lon": -73.9305736 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1038988561, + "bounds": { + "minlat": 40.7110739, + "minlon": -73.9909342, + "maxlat": 40.7114912, + "maxlon": -73.9908691 + }, + "nodes": [ + 9567864091, + 9567864094, + 9567864093, + 9567864092 + ], + "geometry": [ + { "lat": 40.7110739, "lon": -73.9908691 }, + { "lat": 40.7111426, "lon": -73.9908798 }, + { "lat": 40.7111488, "lon": -73.9908808 }, + { "lat": 40.7114912, "lon": -73.9909342 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1039008582, + "bounds": { + "minlat": 40.8257202, + "minlon": -73.9525777, + "maxlat": 40.8264614, + "maxlon": -73.9508622 + }, + "nodes": [ + 42441953, + 12952282854, + 11193723030, + 11193596008, + 42428928, + 561035360 + ], + "geometry": [ + { "lat": 40.8264614, "lon": -73.9525777 }, + { "lat": 40.8264207, "lon": -73.9524858 }, + { "lat": 40.8263832, "lon": -73.9524024 }, + { "lat": 40.8258398, "lon": -73.9511427 }, + { "lat": 40.8258004, "lon": -73.9510490 }, + { "lat": 40.8257202, "lon": -73.9508622 } + ], + "tags": { + "highway": "residential", + "incline": "up", + "name": "West 144th Street", + "name_1": "West 144 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "144th", + "tiger:name_base_1": "144", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1039008583, + "bounds": { + "minlat": 40.8257202, + "minlon": -73.9508622, + "maxlat": 40.8264034, + "maxlon": -73.9503603 + }, + "nodes": [ + 561035360, + 11193596012, + 9703359669, + 561035361 + ], + "geometry": [ + { "lat": 40.8257202, "lon": -73.9508622 }, + { "lat": 40.8257924, "lon": -73.9508095 }, + { "lat": 40.8263043, "lon": -73.9504357 }, + { "lat": 40.8264034, "lon": -73.9503603 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "turn:lanes": "through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1039050546, + "bounds": { + "minlat": 40.7169760, + "minlon": -73.9826968, + "maxlat": 40.7171005, + "maxlon": -73.9822890 + }, + "nodes": [ + 42429809, + 4300940094 + ], + "geometry": [ + { "lat": 40.7169760, "lon": -73.9822890 }, + { "lat": 40.7171005, "lon": -73.9826968 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 1039093717, + "bounds": { + "minlat": 40.8561187, + "minlon": -73.9731305, + "maxlat": 40.8564317, + "maxlon": -73.9726533 + }, + "nodes": [ + 9568936478, + 9452566131, + 3257513646, + 7930510628, + 7930510622, + 103141025, + 13620890035, + 7930510614, + 103132816 + ], + "geometry": [ + { "lat": 40.8564317, "lon": -73.9731305 }, + { "lat": 40.8564119, "lon": -73.9730982 }, + { "lat": 40.8563913, "lon": -73.9730646 }, + { "lat": 40.8563307, "lon": -73.9729644 }, + { "lat": 40.8562651, "lon": -73.9728585 }, + { "lat": 40.8561960, "lon": -73.9727553 }, + { "lat": 40.8561822, "lon": -73.9727367 }, + { "lat": 40.8561579, "lon": -73.9727040 }, + { "lat": 40.8561187, "lon": -73.9726533 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Kelby Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kelby", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 1039135845, + "bounds": { + "minlat": 40.7439962, + "minlon": -73.9456623, + "maxlat": 40.7444208, + "maxlon": -73.9447209 + }, + "nodes": [ + 9569264916, + 9569264915, + 9569264907, + 9569264906, + 9569264905, + 9569264904, + 9569264903, + 9569264902, + 9569264901, + 9569264900, + 9569265117, + 9569264898, + 9569264897, + 9569264896, + 9569264895, + 9569264894, + 9569264893, + 9569264892, + 9569265118, + 9569264891, + 9569264890, + 9569264889, + 9569264888, + 9569264887, + 9569264886, + 9569264885, + 9569264884, + 9569264883, + 9569264882, + 9569264881, + 9569264880, + 9569264879, + 9569264878, + 9569264877, + 9569264876, + 9569264875, + 9569264874, + 9569264873, + 9569264872, + 9569264871, + 9569264870, + 9569264869, + 9569265157, + 9569264914, + 9569265158, + 9569265159, + 9569265119, + 9569265120, + 9569265121, + 9569265122, + 9569265123, + 9569265124, + 9569265168, + 9569265125, + 9569265126, + 9569265127, + 9569265128, + 9569265129, + 9569265169, + 9569265130, + 9569265131, + 9569265132, + 9569265133, + 9569265167, + 9569265134, + 9569265135, + 9569265136, + 9569265137, + 9569265138, + 9569265139, + 9569265140, + 9569265141, + 9569265142, + 9569265143, + 9569265144, + 9569265145, + 9569265146, + 9569265147, + 9569265148, + 9569265149, + 9569265150, + 9569265151, + 9569265152, + 9569265153, + 9569265154, + 9569265165, + 9569265155, + 9569265156, + 9569264916 + ], + "geometry": [ + { "lat": 40.7442605, "lon": -73.9456586 }, + { "lat": 40.7442856, "lon": -73.9456206 }, + { "lat": 40.7443176, "lon": -73.9455595 }, + { "lat": 40.7443060, "lon": -73.9455664 }, + { "lat": 40.7442938, "lon": -73.9455672 }, + { "lat": 40.7442809, "lon": -73.9455518 }, + { "lat": 40.7442711, "lon": -73.9455340 }, + { "lat": 40.7442582, "lon": -73.9455113 }, + { "lat": 40.7442416, "lon": -73.9454975 }, + { "lat": 40.7442244, "lon": -73.9454959 }, + { "lat": 40.7441823, "lon": -73.9454923 }, + { "lat": 40.7441588, "lon": -73.9454676 }, + { "lat": 40.7441521, "lon": -73.9454571 }, + { "lat": 40.7441472, "lon": -73.9454109 }, + { "lat": 40.7441410, "lon": -73.9453850 }, + { "lat": 40.7441306, "lon": -73.9453664 }, + { "lat": 40.7441146, "lon": -73.9453486 }, + { "lat": 40.7440944, "lon": -73.9453437 }, + { "lat": 40.7440887, "lon": -73.9453257 }, + { "lat": 40.7440803, "lon": -73.9452992 }, + { "lat": 40.7440864, "lon": -73.9452660 }, + { "lat": 40.7440877, "lon": -73.9452271 }, + { "lat": 40.7440797, "lon": -73.9452093 }, + { "lat": 40.7440723, "lon": -73.9451729 }, + { "lat": 40.7440797, "lon": -73.9451445 }, + { "lat": 40.7441024, "lon": -73.9451324 }, + { "lat": 40.7441195, "lon": -73.9450992 }, + { "lat": 40.7441245, "lon": -73.9450700 }, + { "lat": 40.7441269, "lon": -73.9450385 }, + { "lat": 40.7441465, "lon": -73.9450093 }, + { "lat": 40.7441649, "lon": -73.9449963 }, + { "lat": 40.7441864, "lon": -73.9449712 }, + { "lat": 40.7441938, "lon": -73.9449381 }, + { "lat": 40.7442030, "lon": -73.9449089 }, + { "lat": 40.7442220, "lon": -73.9448879 }, + { "lat": 40.7442435, "lon": -73.9448919 }, + { "lat": 40.7442613, "lon": -73.9449057 }, + { "lat": 40.7443030, "lon": -73.9449300 }, + { "lat": 40.7443251, "lon": -73.9449291 }, + { "lat": 40.7443539, "lon": -73.9449162 }, + { "lat": 40.7443821, "lon": -73.9449097 }, + { "lat": 40.7444054, "lon": -73.9449170 }, + { "lat": 40.7444136, "lon": -73.9448971 }, + { "lat": 40.7444208, "lon": -73.9448727 }, + { "lat": 40.7443865, "lon": -73.9448196 }, + { "lat": 40.7443275, "lon": -73.9447735 }, + { "lat": 40.7441993, "lon": -73.9447322 }, + { "lat": 40.7440867, "lon": -73.9447209 }, + { "lat": 40.7440796, "lon": -73.9447379 }, + { "lat": 40.7440981, "lon": -73.9447435 }, + { "lat": 40.7441209, "lon": -73.9447416 }, + { "lat": 40.7441494, "lon": -73.9447407 }, + { "lat": 40.7441526, "lon": -73.9447451 }, + { "lat": 40.7441615, "lon": -73.9447576 }, + { "lat": 40.7441679, "lon": -73.9447830 }, + { "lat": 40.7441658, "lon": -73.9448131 }, + { "lat": 40.7441359, "lon": -73.9448329 }, + { "lat": 40.7441045, "lon": -73.9448583 }, + { "lat": 40.7440938, "lon": -73.9448488 }, + { "lat": 40.7440831, "lon": -73.9448394 }, + { "lat": 40.7440724, "lon": -73.9448347 }, + { "lat": 40.7440511, "lon": -73.9448441 }, + { "lat": 40.7440461, "lon": -73.9448695 }, + { "lat": 40.7440476, "lon": -73.9448760 }, + { "lat": 40.7440518, "lon": -73.9448940 }, + { "lat": 40.7440432, "lon": -73.9449137 }, + { "lat": 40.7440283, "lon": -73.9449354 }, + { "lat": 40.7440233, "lon": -73.9449570 }, + { "lat": 40.7440418, "lon": -73.9449909 }, + { "lat": 40.7440575, "lon": -73.9450078 }, + { "lat": 40.7440368, "lon": -73.9450473 }, + { "lat": 40.7440033, "lon": -73.9450746 }, + { "lat": 40.7439962, "lon": -73.9451112 }, + { "lat": 40.7440112, "lon": -73.9451742 }, + { "lat": 40.7440126, "lon": -73.9452119 }, + { "lat": 40.7440019, "lon": -73.9452664 }, + { "lat": 40.7439998, "lon": -73.9452956 }, + { "lat": 40.7440226, "lon": -73.9453510 }, + { "lat": 40.7440382, "lon": -73.9454009 }, + { "lat": 40.7440504, "lon": -73.9454451 }, + { "lat": 40.7440575, "lon": -73.9454733 }, + { "lat": 40.7440561, "lon": -73.9455100 }, + { "lat": 40.7440618, "lon": -73.9455457 }, + { "lat": 40.7440703, "lon": -73.9455598 }, + { "lat": 40.7440390, "lon": -73.9456426 }, + { "lat": 40.7440407, "lon": -73.9456465 }, + { "lat": 40.7440475, "lon": -73.9456623 }, + { "lat": 40.7441002, "lon": -73.9455363 }, + { "lat": 40.7442605, "lon": -73.9456586 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1039256952, + "bounds": { + "minlat": 40.8062308, + "minlon": -73.9904477, + "maxlat": 40.8063148, + "maxlon": -73.9897604 + }, + "nodes": [ + 3480327310, + 3480327309, + 3480333151, + 1239453889 + ], + "geometry": [ + { "lat": 40.8063148, "lon": -73.9904477 }, + { "lat": 40.8063117, "lon": -73.9902738 }, + { "lat": 40.8062715, "lon": -73.9899435 }, + { "lat": 40.8062308, "lon": -73.9897604 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "City Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1039257972, + "bounds": { + "minlat": 40.8115419, + "minlon": -74.0122240, + "maxlat": 40.8116965, + "maxlon": -74.0119215 + }, + "nodes": [ + 9570193602, + 12456262111, + 103867747 + ], + "geometry": [ + { "lat": 40.8115419, "lon": -74.0119215 }, + { "lat": 40.8116497, "lon": -74.0121320 }, + { "lat": 40.8116965, "lon": -74.0122240 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxweight": "4", + "name": "88th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "88th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes": "left|through;right" + } +}, +{ + "type": "way", + "id": 1039266888, + "bounds": { + "minlat": 40.8506730, + "minlon": -73.9699617, + "maxlat": 40.8508180, + "maxlon": -73.9698960 + }, + "nodes": [ + 9570301922, + 4204789605 + ], + "geometry": [ + { "lat": 40.8506730, "lon": -73.9699617 }, + { "lat": 40.8508180, "lon": -73.9698960 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "3", + "name": "Schlosser Street", + "oneway": "yes", + "ref": "NJ 67", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Schlosser", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1039267737, + "bounds": { + "minlat": 40.8070433, + "minlon": -73.9922715, + "maxlat": 40.8072939, + "maxlon": -73.9921953 + }, + "nodes": [ + 9570280572, + 752618676, + 4205741392 + ], + "geometry": [ + { "lat": 40.8072939, "lon": -73.9922715 }, + { "lat": 40.8071909, "lon": -73.9922650 }, + { "lat": 40.8070433, "lon": -73.9921953 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "lanes": "3", + "name": "Gorge Road", + "oneway": "yes", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010", + "turn:lanes": "left|through|right" + } +}, +{ + "type": "way", + "id": 1039270126, + "bounds": { + "minlat": 40.8110082, + "minlon": -74.0047420, + "maxlat": 40.8111359, + "maxlon": -74.0046182 + }, + "nodes": [ + 103858392, + 9570339744 + ], + "geometry": [ + { "lat": 40.8111359, "lon": -74.0046182 }, + { "lat": 40.8110082, "lon": -74.0047420 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "1", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63;CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "State Route 63", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_left_1": "07047" + } +}, +{ + "type": "way", + "id": 1039325013, + "bounds": { + "minlat": 40.8270394, + "minlon": -73.9807427, + "maxlat": 40.8270704, + "maxlon": -73.9803168 + }, + "nodes": [ + 6964853596, + 5340819445, + 1854444479 + ], + "geometry": [ + { "lat": 40.8270704, "lon": -73.9803168 }, + { "lat": 40.8270547, "lon": -73.9804946 }, + { "lat": 40.8270394, "lon": -73.9807427 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "Norman Drive", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 1040203223, + "bounds": { + "minlat": 40.7450349, + "minlon": -73.9086343, + "maxlat": 40.7451177, + "maxlon": -73.9086072 + }, + "nodes": [ + 42855342, + 10074125222, + 5538919095 + ], + "geometry": [ + { "lat": 40.7451177, "lon": -73.9086072 }, + { "lat": 40.7450755, "lon": -73.9086218 }, + { "lat": 40.7450349, "lon": -73.9086343 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxheight": "12'2\"", + "name": "56th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1040459236, + "bounds": { + "minlat": 40.8230362, + "minlon": -73.9760197, + "maxlat": 40.8231548, + "maxlon": -73.9758107 + }, + "nodes": [ + 9580069001, + 9580069002 + ], + "geometry": [ + { "lat": 40.8230362, "lon": -73.9758107 }, + { "lat": 40.8231548, "lon": -73.9760197 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738856, + "bounds": { + "minlat": 40.8109130, + "minlon": -73.9278332, + "maxlat": 40.8109336, + "maxlon": -73.9278105 + }, + "nodes": [ + 9582307252, + 9582307234 + ], + "geometry": [ + { "lat": 40.8109130, "lon": -73.9278105 }, + { "lat": 40.8109336, "lon": -73.9278332 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738857, + "bounds": { + "minlat": 40.8106725, + "minlon": -73.9282660, + "maxlat": 40.8107656, + "maxlon": -73.9281120 + }, + "nodes": [ + 9582307235, + 9582307238, + 9582307237 + ], + "geometry": [ + { "lat": 40.8107656, "lon": -73.9281120 }, + { "lat": 40.8107372, "lon": -73.9281590 }, + { "lat": 40.8106725, "lon": -73.9282660 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738858, + "bounds": { + "minlat": 40.8106525, + "minlon": -73.9280687, + "maxlat": 40.8106815, + "maxlon": -73.9280215 + }, + "nodes": [ + 9582307239, + 9582307249 + ], + "geometry": [ + { "lat": 40.8106525, "lon": -73.9280687 }, + { "lat": 40.8106815, "lon": -73.9280215 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738859, + "bounds": { + "minlat": 40.8107217, + "minlon": -73.9280225, + "maxlat": 40.8107839, + "maxlon": -73.9279570 + }, + "nodes": [ + 9582307242, + 9582307258 + ], + "geometry": [ + { "lat": 40.8107217, "lon": -73.9279570 }, + { "lat": 40.8107839, "lon": -73.9280225 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738860, + "bounds": { + "minlat": 40.8107625, + "minlon": -73.9279512, + "maxlat": 40.8108271, + "maxlon": -73.9278809 + }, + "nodes": [ + 9582307244, + 9582307256 + ], + "geometry": [ + { "lat": 40.8107625, "lon": -73.9278809 }, + { "lat": 40.8108271, "lon": -73.9279512 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 1040738861, + "bounds": { + "minlat": 40.8108086, + "minlon": -73.9278880, + "maxlat": 40.8108702, + "maxlon": -73.9278060 + }, + "nodes": [ + 9582307246, + 9582307255 + ], + "geometry": [ + { "lat": 40.8108086, "lon": -73.9278060 }, + { "lat": 40.8108702, "lon": -73.9278880 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738862, + "bounds": { + "minlat": 40.8109336, + "minlon": -73.9278332, + "maxlat": 40.8109624, + "maxlon": -73.9277670 + }, + "nodes": [ + 9582307250, + 9582307241, + 9582307234 + ], + "geometry": [ + { "lat": 40.8109444, "lon": -73.9277670 }, + { "lat": 40.8109624, "lon": -73.9277863 }, + { "lat": 40.8109336, "lon": -73.9278332 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738863, + "bounds": { + "minlat": 40.8108842, + "minlon": -73.9277670, + "maxlat": 40.8109444, + "maxlon": -73.9276941 + }, + "nodes": [ + 9582307240, + 9582307250 + ], + "geometry": [ + { "lat": 40.8108842, "lon": -73.9276941 }, + { "lat": 40.8109444, "lon": -73.9277670 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738864, + "bounds": { + "minlat": 40.8107603, + "minlon": -73.9277434, + "maxlat": 40.8108502, + "maxlon": -73.9276433 + }, + "nodes": [ + 9582307233, + 11882279942, + 9582307248 + ], + "geometry": [ + { "lat": 40.8107603, "lon": -73.9276433 }, + { "lat": 40.8108430, "lon": -73.9277354 }, + { "lat": 40.8108502, "lon": -73.9277434 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738865, + "bounds": { + "minlat": 40.8108502, + "minlon": -73.9277434, + "maxlat": 40.8108842, + "maxlon": -73.9276941 + }, + "nodes": [ + 9582307248, + 9582307240 + ], + "geometry": [ + { "lat": 40.8108502, "lon": -73.9277434 }, + { "lat": 40.8108842, "lon": -73.9276941 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738866, + "bounds": { + "minlat": 40.8108502, + "minlon": -73.9278105, + "maxlat": 40.8109130, + "maxlon": -73.9277434 + }, + "nodes": [ + 9582307248, + 9582307252 + ], + "geometry": [ + { "lat": 40.8108502, "lon": -73.9277434 }, + { "lat": 40.8109130, "lon": -73.9278105 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738869, + "bounds": { + "minlat": 40.8108702, + "minlon": -73.9279083, + "maxlat": 40.8108883, + "maxlon": -73.9278880 + }, + "nodes": [ + 9582307255, + 9582307247 + ], + "geometry": [ + { "lat": 40.8108702, "lon": -73.9278880 }, + { "lat": 40.8108883, "lon": -73.9279083 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738870, + "bounds": { + "minlat": 40.8108271, + "minlon": -73.9279745, + "maxlat": 40.8108485, + "maxlon": -73.9279512 + }, + "nodes": [ + 9582307256, + 9582307245 + ], + "geometry": [ + { "lat": 40.8108271, "lon": -73.9279512 }, + { "lat": 40.8108485, "lon": -73.9279745 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738872, + "bounds": { + "minlat": 40.8107839, + "minlon": -73.9280454, + "maxlat": 40.8108057, + "maxlon": -73.9280225 + }, + "nodes": [ + 9582307258, + 9582307243 + ], + "geometry": [ + { "lat": 40.8107839, "lon": -73.9280225 }, + { "lat": 40.8108057, "lon": -73.9280454 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738874, + "bounds": { + "minlat": 40.8105662, + "minlon": -73.9280215, + "maxlat": 40.8106815, + "maxlon": -73.9278974 + }, + "nodes": [ + 9582307249, + 11882279943, + 9582307236 + ], + "geometry": [ + { "lat": 40.8106815, "lon": -73.9280215 }, + { "lat": 40.8106624, "lon": -73.9280010 }, + { "lat": 40.8105662, "lon": -73.9278974 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738875, + "bounds": { + "minlat": 40.8106815, + "minlon": -73.9280865, + "maxlat": 40.8107419, + "maxlon": -73.9280215 + }, + "nodes": [ + 9582307260, + 9582307249 + ], + "geometry": [ + { "lat": 40.8107419, "lon": -73.9280865 }, + { "lat": 40.8106815, "lon": -73.9280215 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738876, + "bounds": { + "minlat": 40.8107127, + "minlon": -73.9281590, + "maxlat": 40.8107372, + "maxlon": -73.9281330 + }, + "nodes": [ + 9582307238, + 9582307262 + ], + "geometry": [ + { "lat": 40.8107372, "lon": -73.9281590 }, + { "lat": 40.8107127, "lon": -73.9281330 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040738877, + "bounds": { + "minlat": 40.8106525, + "minlon": -73.9281330, + "maxlat": 40.8107127, + "maxlon": -73.9280687 + }, + "nodes": [ + 9582307262, + 9582307239 + ], + "geometry": [ + { "lat": 40.8107127, "lon": -73.9281330 }, + { "lat": 40.8106525, "lon": -73.9280687 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040753131, + "bounds": { + "minlat": 40.7077271, + "minlon": -73.9509235, + "maxlat": 40.7077439, + "maxlon": -73.9507470 + }, + "nodes": [ + 9582431927, + 9582431921, + 9582431917 + ], + "geometry": [ + { "lat": 40.7077439, "lon": -73.9507470 }, + { "lat": 40.7077381, "lon": -73.9508120 }, + { "lat": 40.7077271, "lon": -73.9509235 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040753132, + "bounds": { + "minlat": 40.7074983, + "minlon": -73.9508266, + "maxlat": 40.7076265, + "maxlon": -73.9507883 + }, + "nodes": [ + 9582431919, + 9755373488, + 9582431920, + 9582431928 + ], + "geometry": [ + { "lat": 40.7074983, "lon": -73.9508266 }, + { "lat": 40.7075456, "lon": -73.9507996 }, + { "lat": 40.7075644, "lon": -73.9507883 }, + { "lat": 40.7076265, "lon": -73.9507957 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040753133, + "bounds": { + "minlat": 40.7075644, + "minlon": -73.9509758, + "maxlat": 40.7076279, + "maxlon": -73.9507883 + }, + "nodes": [ + 9582431922, + 9582431920 + ], + "geometry": [ + { "lat": 40.7076279, "lon": -73.9509758 }, + { "lat": 40.7075644, "lon": -73.9507883 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040753135, + "bounds": { + "minlat": 40.7075622, + "minlon": -73.9510135, + "maxlat": 40.7077271, + "maxlon": -73.9509235 + }, + "nodes": [ + 9582431917, + 9582431922, + 9755373489, + 9582431918 + ], + "geometry": [ + { "lat": 40.7077271, "lon": -73.9509235 }, + { "lat": 40.7076279, "lon": -73.9509758 }, + { "lat": 40.7076129, "lon": -73.9509847 }, + { "lat": 40.7075622, "lon": -73.9510135 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040753136, + "bounds": { + "minlat": 40.7077439, + "minlon": -73.9507470, + "maxlat": 40.7077586, + "maxlon": -73.9505907 + }, + "nodes": [ + 9582402616, + 9755373487, + 9582431927 + ], + "geometry": [ + { "lat": 40.7077586, "lon": -73.9505907 }, + { "lat": 40.7077475, "lon": -73.9507087 }, + { "lat": 40.7077439, "lon": -73.9507470 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040753137, + "bounds": { + "minlat": 40.7076265, + "minlon": -73.9508120, + "maxlat": 40.7077381, + "maxlon": -73.9507957 + }, + "nodes": [ + 9582431928, + 9582431921 + ], + "geometry": [ + { "lat": 40.7076265, "lon": -73.9507957 }, + { "lat": 40.7077381, "lon": -73.9508120 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1040760556, + "bounds": { + "minlat": 40.7874774, + "minlon": -73.9325678, + "maxlat": 40.7876320, + "maxlon": -73.9322746 + }, + "nodes": [ + 3036229808, + 9582472542, + 9582472543, + 9582472544, + 7734633963 + ], + "geometry": [ + { "lat": 40.7876320, "lon": -73.9325678 }, + { "lat": 40.7876061, "lon": -73.9325506 }, + { "lat": 40.7875783, "lon": -73.9325300 }, + { "lat": 40.7874872, "lon": -73.9323265 }, + { "lat": 40.7874774, "lon": -73.9322746 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1040766903, + "bounds": { + "minlat": 40.7474118, + "minlon": -73.9932393, + "maxlat": 40.7475340, + "maxlon": -73.9931560 + }, + "nodes": [ + 9582526980, + 9427432088 + ], + "geometry": [ + { "lat": 40.7475340, "lon": -73.9931560 }, + { "lat": 40.7474118, "lon": -73.9932393 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|through||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1040825596, + "bounds": { + "minlat": 40.8215209, + "minlon": -73.9392660, + "maxlat": 40.8216757, + "maxlon": -73.9391536 + }, + "nodes": [ + 42434246, + 9557088472, + 9582985643 + ], + "geometry": [ + { "lat": 40.8216757, "lon": -73.9391536 }, + { "lat": 40.8215771, "lon": -73.9392252 }, + { "lat": 40.8215209, "lon": -73.9392660 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1040863519, + "bounds": { + "minlat": 40.7357989, + "minlon": -73.9858628, + "maxlat": 40.7360082, + "maxlon": -73.9853657 + }, + "nodes": [ + 9583218041, + 12183286732, + 9679181032, + 42437283 + ], + "geometry": [ + { "lat": 40.7360082, "lon": -73.9858628 }, + { "lat": 40.7358803, "lon": -73.9855619 }, + { "lat": 40.7358553, "lon": -73.9855031 }, + { "lat": 40.7357989, "lon": -73.9853657 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 18th Street", + "name:ru": "Восточная 18-я стрит", + "name_1": "East 18 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|right" + } +}, +{ + "type": "way", + "id": 1040877493, + "bounds": { + "minlat": 40.7325841, + "minlon": -73.9814480, + "maxlat": 40.7335467, + "maxlon": -73.9807458 + }, + "nodes": [ + 685164631, + 4298757062, + 4298757012, + 9913595416, + 4298757040, + 4298757032, + 4298757015, + 9583324043 + ], + "geometry": [ + { "lat": 40.7325841, "lon": -73.9814480 }, + { "lat": 40.7326487, "lon": -73.9814014 }, + { "lat": 40.7329830, "lon": -73.9811598 }, + { "lat": 40.7330954, "lon": -73.9810763 }, + { "lat": 40.7331379, "lon": -73.9810472 }, + { "lat": 40.7332465, "lon": -73.9809616 }, + { "lat": 40.7333400, "lon": -73.9808912 }, + { "lat": 40.7335467, "lon": -73.9807458 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue Service Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1040877494, + "bounds": { + "minlat": 40.7337515, + "minlon": -73.9807369, + "maxlat": 40.7338271, + "maxlon": -73.9806008 + }, + "nodes": [ + 42437289, + 685164633 + ], + "geometry": [ + { "lat": 40.7338271, "lon": -73.9807369 }, + { "lat": 40.7337515, "lon": -73.9806008 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "First Avenue Loop", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1040877495, + "bounds": { + "minlat": 40.7335467, + "minlon": -73.9807458, + "maxlat": 40.7337515, + "maxlon": -73.9806008 + }, + "nodes": [ + 9583324043, + 9913605324, + 4298757070, + 685164633 + ], + "geometry": [ + { "lat": 40.7335467, "lon": -73.9807458 }, + { "lat": 40.7336398, "lon": -73.9806788 }, + { "lat": 40.7336816, "lon": -73.9806520 }, + { "lat": 40.7337515, "lon": -73.9806008 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue Service Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 1040888764, + "bounds": { + "minlat": 40.7561557, + "minlon": -73.9940178, + "maxlat": 40.7565324, + "maxlon": -73.9931035 + }, + "nodes": [ + 9583416934, + 8288270375, + 42444985 + ], + "geometry": [ + { "lat": 40.7561557, "lon": -73.9931035 }, + { "lat": 40.7564831, "lon": -73.9938932 }, + { "lat": 40.7565324, "lon": -73.9940178 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1041011016, + "bounds": { + "minlat": 40.8222870, + "minlon": -73.9291613, + "maxlat": 40.8223864, + "maxlon": -73.9289670 + }, + "nodes": [ + 9584388673, + 9584388674, + 9584388675, + 5079055357 + ], + "geometry": [ + { "lat": 40.8223864, "lon": -73.9291613 }, + { "lat": 40.8223581, "lon": -73.9291321 }, + { "lat": 40.8223321, "lon": -73.9290882 }, + { "lat": 40.8222870, "lon": -73.9289670 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "yes", + "turn:lanes": "none|right" + } +}, +{ + "type": "way", + "id": 1041012063, + "bounds": { + "minlat": 40.7577433, + "minlon": -73.9968456, + "maxlat": 40.7583460, + "maxlon": -73.9964055 + }, + "nodes": [ + 42423885, + 8288270411, + 11149329007, + 428219648, + 8288270424, + 42446504 + ], + "geometry": [ + { "lat": 40.7577433, "lon": -73.9968456 }, + { "lat": 40.7578063, "lon": -73.9968010 }, + { "lat": 40.7578188, "lon": -73.9967918 }, + { "lat": 40.7579622, "lon": -73.9966861 }, + { "lat": 40.7582784, "lon": -73.9964554 }, + { "lat": 40.7583460, "lon": -73.9964055 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1041016547, + "bounds": { + "minlat": 40.7162923, + "minlon": -73.9835484, + "maxlat": 40.7165240, + "maxlon": -73.9833897 + }, + "nodes": [ + 9584424993, + 5173488749 + ], + "geometry": [ + { "lat": 40.7162923, "lon": -73.9835484 }, + { "lat": 40.7165240, "lon": -73.9833897 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Pitt Street", + "name:etymology:wikidata": "Q208663", + "name:ko": "피트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1041018376, + "bounds": { + "minlat": 40.7507021, + "minlon": -73.9981555, + "maxlat": 40.7509074, + "maxlon": -73.9977072 + }, + "nodes": [ + 42437688, + 5545401596, + 9584459602 + ], + "geometry": [ + { "lat": 40.7509074, "lon": -73.9981555 }, + { "lat": 40.7508394, "lon": -73.9979955 }, + { "lat": 40.7507021, "lon": -73.9977072 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "merge_to_right|" + } +}, +{ + "type": "way", + "id": 1041018377, + "bounds": { + "minlat": 40.7496742, + "minlon": -73.9958929, + "maxlat": 40.7499302, + "maxlon": -73.9952961 + }, + "nodes": [ + 9584459603, + 6814312340, + 6211484421, + 4443775464 + ], + "geometry": [ + { "lat": 40.7499302, "lon": -73.9958929 }, + { "lat": 40.7497351, "lon": -73.9954381 }, + { "lat": 40.7497215, "lon": -73.9954064 }, + { "lat": 40.7496742, "lon": -73.9952961 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1041021164, + "bounds": { + "minlat": 40.7772886, + "minlon": -73.9825693, + "maxlat": 40.7775253, + "maxlon": -73.9823934 + }, + "nodes": [ + 42442422, + 5115916420, + 9584468481 + ], + "geometry": [ + { "lat": 40.7772886, "lon": -73.9825693 }, + { "lat": 40.7773651, "lon": -73.9825087 }, + { "lat": 40.7775253, "lon": -73.9823934 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "3", + "lit": "yes", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1041028175, + "bounds": { + "minlat": 40.7212920, + "minlon": -73.9488750, + "maxlat": 40.7213791, + "maxlon": -73.9479498 + }, + "nodes": [ + 42466376, + 6228788699, + 5482193514, + 9935605457, + 42466378 + ], + "geometry": [ + { "lat": 40.7212920, "lon": -73.9488750 }, + { "lat": 40.7212994, "lon": -73.9487591 }, + { "lat": 40.7213617, "lon": -73.9481344 }, + { "lat": 40.7213714, "lon": -73.9480316 }, + { "lat": 40.7213791, "lon": -73.9479498 } + ], + "tags": { + "highway": "residential", + "name": "Engert Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1041028176, + "bounds": { + "minlat": 40.7204725, + "minlon": -73.9479241, + "maxlat": 40.7209205, + "maxlon": -73.9478161 + }, + "nodes": [ + 42523210, + 9731450865, + 9731450866, + 9731450867, + 5482193501 + ], + "geometry": [ + { "lat": 40.7204725, "lon": -73.9479241 }, + { "lat": 40.7205086, "lon": -73.9478737 }, + { "lat": 40.7205446, "lon": -73.9478233 }, + { "lat": 40.7206182, "lon": -73.9478161 }, + { "lat": 40.7209205, "lon": -73.9478647 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Eckford Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1041028177, + "bounds": { + "minlat": 40.7209205, + "minlon": -73.9479498, + "maxlat": 40.7213791, + "maxlon": -73.9478647 + }, + "nodes": [ + 5482193501, + 8589617607, + 9789393816, + 42466378 + ], + "geometry": [ + { "lat": 40.7209205, "lon": -73.9478647 }, + { "lat": 40.7212880, "lon": -73.9479341 }, + { "lat": 40.7213216, "lon": -73.9479400 }, + { "lat": 40.7213791, "lon": -73.9479498 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Eckford Street", + "oneway": "yes", + "sidewalk:both": "separate", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 1041094059, + "bounds": { + "minlat": 40.7926532, + "minlon": -74.0018674, + "maxlat": 40.7927216, + "maxlon": -74.0014937 + }, + "nodes": [ + 9585091175, + 752619452, + 752619448, + 7468539749, + 103870410 + ], + "geometry": [ + { "lat": 40.7927216, "lon": -74.0018674 }, + { "lat": 40.7927028, "lon": -74.0018275 }, + { "lat": 40.7926532, "lon": -74.0016739 }, + { "lat": 40.7926554, "lon": -74.0015785 }, + { "lat": 40.7926788, "lon": -74.0014937 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "71st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "71st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1041145719, + "bounds": { + "minlat": 40.8058923, + "minlon": -73.9504693, + "maxlat": 40.8060422, + "maxlon": -73.9503622 + }, + "nodes": [ + 9585469564, + 4207716487 + ], + "geometry": [ + { "lat": 40.8058923, "lon": -73.9504693 }, + { "lat": 40.8060422, "lon": -73.9503622 } + ], + "tags": { + "alt_name": "7th Ave", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name1": "7th Ave", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1041149360, + "bounds": { + "minlat": 40.8077005, + "minlon": -73.9530050, + "maxlat": 40.8092377, + "maxlon": -73.9493541 + }, + "nodes": [ + 42438913, + 8758287371, + 11298919649, + 42435802, + 11298919652, + 10171069668, + 42432926 + ], + "geometry": [ + { "lat": 40.8077005, "lon": -73.9493541 }, + { "lat": 40.8077502, "lon": -73.9494734 }, + { "lat": 40.8088117, "lon": -73.9520030 }, + { "lat": 40.8088651, "lon": -73.9521304 }, + { "lat": 40.8089230, "lon": -73.9522658 }, + { "lat": 40.8091760, "lon": -73.9528578 }, + { "lat": 40.8092377, "lon": -73.9530050 } + ], + "tags": { + "highway": "residential", + "name": "West 123rd Street", + "name_1": "West 123 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1041149361, + "bounds": { + "minlat": 40.8074302, + "minlon": -73.9495525, + "maxlat": 40.8077005, + "maxlon": -73.9493541 + }, + "nodes": [ + 42438913, + 10171219281, + 4207716490 + ], + "geometry": [ + { "lat": 40.8077005, "lon": -73.9493541 }, + { "lat": 40.8076528, "lon": -73.9493891 }, + { "lat": 40.8074302, "lon": -73.9495525 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1041349413, + "bounds": { + "minlat": 40.8394415, + "minlon": -73.9702113, + "maxlat": 40.8396957, + "maxlon": -73.9701948 + }, + "nodes": [ + 3882414963, + 103137174, + 103137175, + 3882414958 + ], + "geometry": [ + { "lat": 40.8394415, "lon": -73.9702113 }, + { "lat": 40.8395510, "lon": -73.9702100 }, + { "lat": 40.8396440, "lon": -73.9702050 }, + { "lat": 40.8396957, "lon": -73.9701948 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1041349414, + "bounds": { + "minlat": 40.8420432, + "minlon": -73.9691776, + "maxlat": 40.8470501, + "maxlon": -73.9663140 + }, + "nodes": [ + 11099079367, + 3584033962, + 7672312132, + 103124442, + 7071428756, + 103137189, + 5449447079, + 103131327, + 103137191, + 103137193, + 103137195, + 103137196, + 103137197, + 3882426682, + 103137198, + 103137199, + 103137200, + 103137201, + 103137202, + 3882426683, + 103137203, + 103137204, + 103137205, + 103137206, + 103137207, + 103137208, + 103135400, + 103137209, + 5106288674, + 103137210, + 103137211, + 103137212, + 103137214, + 5106288680, + 103137216, + 103137218, + 440208740 + ], + "geometry": [ + { "lat": 40.8420432, "lon": -73.9691776 }, + { "lat": 40.8423196, "lon": -73.9689005 }, + { "lat": 40.8423511, "lon": -73.9688690 }, + { "lat": 40.8423790, "lon": -73.9688410 }, + { "lat": 40.8424871, "lon": -73.9687333 }, + { "lat": 40.8426090, "lon": -73.9686090 }, + { "lat": 40.8427052, "lon": -73.9685087 }, + { "lat": 40.8428932, "lon": -73.9683408 }, + { "lat": 40.8430216, "lon": -73.9682235 }, + { "lat": 40.8431453, "lon": -73.9680974 }, + { "lat": 40.8432798, "lon": -73.9679492 }, + { "lat": 40.8434532, "lon": -73.9677662 }, + { "lat": 40.8436724, "lon": -73.9675395 }, + { "lat": 40.8437348, "lon": -73.9674798 }, + { "lat": 40.8437840, "lon": -73.9674356 }, + { "lat": 40.8438525, "lon": -73.9673840 }, + { "lat": 40.8439407, "lon": -73.9673337 }, + { "lat": 40.8440523, "lon": -73.9672907 }, + { "lat": 40.8442002, "lon": -73.9672474 }, + { "lat": 40.8442990, "lon": -73.9672374 }, + { "lat": 40.8444800, "lon": -73.9672190 }, + { "lat": 40.8447377, "lon": -73.9671694 }, + { "lat": 40.8449172, "lon": -73.9670996 }, + { "lat": 40.8450990, "lon": -73.9670156 }, + { "lat": 40.8454670, "lon": -73.9668500 }, + { "lat": 40.8459580, "lon": -73.9666330 }, + { "lat": 40.8460671, "lon": -73.9665802 }, + { "lat": 40.8461735, "lon": -73.9665279 }, + { "lat": 40.8462874, "lon": -73.9664674 }, + { "lat": 40.8463732, "lon": -73.9664327 }, + { "lat": 40.8464605, "lon": -73.9664035 }, + { "lat": 40.8465761, "lon": -73.9663777 }, + { "lat": 40.8466724, "lon": -73.9663730 }, + { "lat": 40.8467842, "lon": -73.9663749 }, + { "lat": 40.8468600, "lon": -73.9663670 }, + { "lat": 40.8469520, "lon": -73.9663520 }, + { "lat": 40.8470501, "lon": -73.9663140 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1041360963, + "bounds": { + "minlat": 40.8203950, + "minlon": -73.9773989, + "maxlat": 40.8205130, + "maxlon": -73.9770749 + }, + "nodes": [ + 9587267752, + 103137103 + ], + "geometry": [ + { "lat": 40.8203950, "lon": -73.9770749 }, + { "lat": 40.8205130, "lon": -73.9773989 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1041401849, + "bounds": { + "minlat": 40.8513967, + "minlon": -73.9679471, + "maxlat": 40.8516557, + "maxlon": -73.9677514 + }, + "nodes": [ + 9587560524, + 298810197, + 298810324 + ], + "geometry": [ + { "lat": 40.8513967, "lon": -73.9679471 }, + { "lat": 40.8514498, "lon": -73.9679010 }, + { "lat": 40.8516557, "lon": -73.9677514 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "name": "Park Avenue", + "oneway": "yes", + "turn:lanes": "left|||", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1042406035, + "bounds": { + "minlat": 40.7353990, + "minlon": -73.9601510, + "maxlat": 40.7355469, + "maxlon": -73.9598804 + }, + "nodes": [ + 9478443379, + 2479546857, + 9997952317 + ], + "geometry": [ + { "lat": 40.7353990, "lon": -73.9601510 }, + { "lat": 40.7354230, "lon": -73.9601091 }, + { "lat": 40.7355469, "lon": -73.9598804 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Commercial Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Commercial", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1042406036, + "bounds": { + "minlat": 40.7345901, + "minlon": -73.9611415, + "maxlat": 40.7346892, + "maxlon": -73.9600471 + }, + "nodes": [ + 9121317157, + 9121317167, + 9121317155, + 42531618 + ], + "geometry": [ + { "lat": 40.7345901, "lon": -73.9611415 }, + { "lat": 40.7345969, "lon": -73.9610662 }, + { "lat": 40.7346817, "lon": -73.9601299 }, + { "lat": 40.7346892, "lon": -73.9600471 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Eagle Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Eagle", + "tiger:name_type": "St", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1042555938, + "bounds": { + "minlat": 40.8375765, + "minlon": -73.9222345, + "maxlat": 40.8384458, + "maxlon": -73.9218540 + }, + "nodes": [ + 2912071057, + 9596731065, + 12163756832, + 9596731066, + 9596731067, + 12163756833, + 12163756834, + 9596731068, + 9596731069, + 9596731070, + 2912071068 + ], + "geometry": [ + { "lat": 40.8375765, "lon": -73.9222345 }, + { "lat": 40.8377141, "lon": -73.9221882 }, + { "lat": 40.8378017, "lon": -73.9221554 }, + { "lat": 40.8378664, "lon": -73.9221296 }, + { "lat": 40.8379458, "lon": -73.9220933 }, + { "lat": 40.8380277, "lon": -73.9220525 }, + { "lat": 40.8380922, "lon": -73.9220175 }, + { "lat": 40.8381519, "lon": -73.9219811 }, + { "lat": 40.8383065, "lon": -73.9218822 }, + { "lat": 40.8383541, "lon": -73.9218584 }, + { "lat": 40.8384458, "lon": -73.9218540 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1042555939, + "bounds": { + "minlat": 40.8375821, + "minlon": -73.9223485, + "maxlat": 40.8376479, + "maxlon": -73.9223445 + }, + "nodes": [ + 2912071028, + 2912071029 + ], + "geometry": [ + { "lat": 40.8376479, "lon": -73.9223445 }, + { "lat": 40.8375821, "lon": -73.9223485 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1042555940, + "bounds": { + "minlat": 40.8376479, + "minlon": -73.9223598, + "maxlat": 40.8384913, + "maxlon": -73.9219633 + }, + "nodes": [ + 42745190, + 9596731071, + 12163756850, + 9596731073, + 12163756849, + 12163756848, + 9596731074, + 9596731075, + 12163756847, + 9596731076, + 12163756846, + 9596731077, + 2912071028 + ], + "geometry": [ + { "lat": 40.8384913, "lon": -73.9219633 }, + { "lat": 40.8384338, "lon": -73.9220664 }, + { "lat": 40.8382002, "lon": -73.9222184 }, + { "lat": 40.8381435, "lon": -73.9222522 }, + { "lat": 40.8381027, "lon": -73.9222747 }, + { "lat": 40.8380686, "lon": -73.9222938 }, + { "lat": 40.8380270, "lon": -73.9223120 }, + { "lat": 40.8379931, "lon": -73.9223231 }, + { "lat": 40.8379468, "lon": -73.9223349 }, + { "lat": 40.8378937, "lon": -73.9223453 }, + { "lat": 40.8378341, "lon": -73.9223544 }, + { "lat": 40.8377749, "lon": -73.9223598 }, + { "lat": 40.8376479, "lon": -73.9223445 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1042837399, + "bounds": { + "minlat": 40.7149115, + "minlon": -73.9136215, + "maxlat": 40.7150179, + "maxlon": -73.9134755 + }, + "nodes": [ + 9598979210, + 9755788645, + 9598979216, + 9598979211 + ], + "geometry": [ + { "lat": 40.7149115, "lon": -73.9134755 }, + { "lat": 40.7149787, "lon": -73.9135669 }, + { "lat": 40.7149897, "lon": -73.9135847 }, + { "lat": 40.7150179, "lon": -73.9136215 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1042837400, + "bounds": { + "minlat": 40.7149671, + "minlon": -73.9143607, + "maxlat": 40.7155397, + "maxlon": -73.9136215 + }, + "nodes": [ + 9598979211, + 9598979212, + 9598979213, + 9598979214 + ], + "geometry": [ + { "lat": 40.7150179, "lon": -73.9136215 }, + { "lat": 40.7149671, "lon": -73.9136940 }, + { "lat": 40.7154339, "lon": -73.9142949 }, + { "lat": 40.7155397, "lon": -73.9143607 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1042837401, + "bounds": { + "minlat": 40.7150179, + "minlon": -73.9136215, + "maxlat": 40.7151315, + "maxlon": -73.9134578 + }, + "nodes": [ + 9598979211, + 9598979215 + ], + "geometry": [ + { "lat": 40.7150179, "lon": -73.9136215 }, + { "lat": 40.7151315, "lon": -73.9134578 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1042962307, + "bounds": { + "minlat": 40.7364774, + "minlon": -73.9276479, + "maxlat": 40.7365883, + "maxlon": -73.9268031 + }, + "nodes": [ + 9599937424, + 9179114996, + 597294484, + 42825296 + ], + "geometry": [ + { "lat": 40.7364774, "lon": -73.9268031 }, + { "lat": 40.7365213, "lon": -73.9271413 }, + { "lat": 40.7365585, "lon": -73.9274895 }, + { "lat": 40.7365883, "lon": -73.9276479 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden;Gale:Laurel Hill", + "tiger:name_type": "Ave:Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_left_1": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 1042962308, + "bounds": { + "minlat": 40.7365883, + "minlon": -73.9277687, + "maxlat": 40.7366110, + "maxlon": -73.9276479 + }, + "nodes": [ + 42825296, + 42901459 + ], + "geometry": [ + { "lat": 40.7365883, "lon": -73.9276479 }, + { "lat": 40.7366110, "lon": -73.9277687 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Borden;Gale:Laurel Hill", + "tiger:name_type": "Ave:Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_left_1": "11101", + "tiger:zip_right": "11101", + "turn:lanes": "slight_left;slight_right" + } +}, +{ + "type": "way", + "id": 1042964168, + "bounds": { + "minlat": 40.7332265, + "minlon": -74.0030292, + "maxlat": 40.7333766, + "maxlon": -74.0025813 + }, + "nodes": [ + 42433822, + 4320028822, + 4320028816, + 42430803 + ], + "geometry": [ + { "lat": 40.7333766, "lon": -74.0025813 }, + { "lat": 40.7333520, "lon": -74.0026579 }, + { "lat": 40.7332935, "lon": -74.0028413 }, + { "lat": 40.7332265, "lon": -74.0030292 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grove Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 1042964169, + "bounds": { + "minlat": 40.7333766, + "minlon": -74.0028114, + "maxlat": 40.7336094, + "maxlon": -74.0025813 + }, + "nodes": [ + 42430805, + 4320028842, + 4320028809, + 42433822 + ], + "geometry": [ + { "lat": 40.7336094, "lon": -74.0028114 }, + { "lat": 40.7335191, "lon": -74.0027058 }, + { "lat": 40.7334148, "lon": -74.0026142 }, + { "lat": 40.7333766, "lon": -74.0025813 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 4th Street", + "name:ru": "Западная 4-я стрит", + "name_1": "West 4 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1042970371, + "bounds": { + "minlat": 40.7149130, + "minlon": -74.0113363, + "maxlat": 40.7151947, + "maxlon": -74.0112125 + }, + "nodes": [ + 3777860991, + 4143763630, + 4143763631, + 8304497701, + 42429565 + ], + "geometry": [ + { "lat": 40.7151947, "lon": -74.0112125 }, + { "lat": 40.7151051, "lon": -74.0112448 }, + { "lat": 40.7150132, "lon": -74.0112860 }, + { "lat": 40.7149931, "lon": -74.0112961 }, + { "lat": 40.7149130, "lon": -74.0113363 } + ], + "tags": { + "construction": "minor", + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "parking:both:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1043336389, + "bounds": { + "minlat": 40.7031959, + "minlon": -73.9661750, + "maxlat": 40.7034091, + "maxlon": -73.9659075 + }, + "nodes": [ + 9602381232, + 9776829179, + 12987250635 + ], + "geometry": [ + { "lat": 40.7034091, "lon": -73.9661750 }, + { "lat": 40.7032420, "lon": -73.9659648 }, + { "lat": 40.7031959, "lon": -73.9659075 } + ], + "tags": { + "bicycle": "use_sidepath", + "cycleway:right": "separate", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1043336433, + "bounds": { + "minlat": 40.7576127, + "minlon": -73.9930728, + "maxlat": 40.7578400, + "maxlon": -73.9927303 + }, + "nodes": [ + 593972687, + 7903850300, + 1695371014, + 42445001 + ], + "geometry": [ + { "lat": 40.7576127, "lon": -73.9927303 }, + { "lat": 40.7577556, "lon": -73.9929444 }, + { "lat": 40.7577774, "lon": -73.9929792 }, + { "lat": 40.7578400, "lon": -73.9930728 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 1043337748, + "bounds": { + "minlat": 40.7042648, + "minlon": -73.9671611, + "maxlat": 40.7044291, + "maxlon": -73.9669128 + }, + "nodes": [ + 9602393170, + 5849350240, + 42469437 + ], + "geometry": [ + { "lat": 40.7044291, "lon": -73.9669128 }, + { "lat": 40.7043033, "lon": -73.9670992 }, + { "lat": 40.7042648, "lon": -73.9671611 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Clymer Street", + "name:etymology:wikidata": "Q708913", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Clymer", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left|through;right" + } +}, +{ + "type": "way", + "id": 1043338631, + "bounds": { + "minlat": 40.7441661, + "minlon": -73.9128806, + "maxlat": 40.7442885, + "maxlon": -73.9124839 + }, + "nodes": [ + 9602404334, + 10074123188, + 10074123190, + 10074123189, + 42817819 + ], + "geometry": [ + { "lat": 40.7442885, "lon": -73.9128806 }, + { "lat": 40.7442821, "lon": -73.9128424 }, + { "lat": 40.7442754, "lon": -73.9128069 }, + { "lat": 40.7442322, "lon": -73.9126367 }, + { "lat": 40.7441661, "lon": -73.9124839 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|slight_right" + } +}, +{ + "type": "way", + "id": 1043341289, + "bounds": { + "minlat": 40.7736120, + "minlon": -73.9823188, + "maxlat": 40.7739227, + "maxlon": -73.9815824 + }, + "nodes": [ + 3718672443, + 5117991227, + 5117991231, + 1061531707, + 42428595 + ], + "geometry": [ + { "lat": 40.7736120, "lon": -73.9815824 }, + { "lat": 40.7736600, "lon": -73.9816978 }, + { "lat": 40.7737932, "lon": -73.9820093 }, + { "lat": 40.7738424, "lon": -73.9821234 }, + { "lat": 40.7739227, "lon": -73.9823188 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 66th Street", + "name:ru": "Западная 66-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1043341291, + "bounds": { + "minlat": 40.7733398, + "minlon": -73.9814415, + "maxlat": 40.7735510, + "maxlon": -73.9809442 + }, + "nodes": [ + 9602428100, + 8124631981, + 5117991237 + ], + "geometry": [ + { "lat": 40.7733398, "lon": -73.9809442 }, + { "lat": 40.7733596, "lon": -73.9809918 }, + { "lat": 40.7735510, "lon": -73.9814415 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 66th Street", + "name:ru": "Западная 66-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1043341295, + "bounds": { + "minlat": 40.7402910, + "minlon": -74.0059134, + "maxlat": 40.7409804, + "maxlon": -74.0054299 + }, + "nodes": [ + 4557517555, + 8262308685, + 12162436966, + 8262308690, + 4557517554 + ], + "geometry": [ + { "lat": 40.7402910, "lon": -74.0059134 }, + { "lat": 40.7403556, "lon": -74.0058682 }, + { "lat": 40.7408704, "lon": -74.0055070 }, + { "lat": 40.7408875, "lon": -74.0054951 }, + { "lat": 40.7409804, "lon": -74.0054299 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "turn:lanes": "left", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1043350176, + "bounds": { + "minlat": 40.8150353, + "minlon": -73.9588371, + "maxlat": 40.8151597, + "maxlon": -73.9586275 + }, + "nodes": [ + 5763775589, + 42428858 + ], + "geometry": [ + { "lat": 40.8150353, "lon": -73.9586275 }, + { "lat": 40.8151597, "lon": -73.9588371 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "maxheight": "11'4\"", + "name": "Tiemann Place", + "name:etymology:wikidata": "Q5217103", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1043350177, + "bounds": { + "minlat": 40.8151597, + "minlon": -73.9588371, + "maxlat": 40.8158098, + "maxlon": -73.9583906 + }, + "nodes": [ + 42428863, + 10049830850, + 1506346479, + 10049830860, + 42428858 + ], + "geometry": [ + { "lat": 40.8158098, "lon": -73.9583906 }, + { "lat": 40.8156850, "lon": -73.9584790 }, + { "lat": 40.8155011, "lon": -73.9586100 }, + { "lat": 40.8152328, "lon": -73.9587885 }, + { "lat": 40.8151597, "lon": -73.9588371 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1043350178, + "bounds": { + "minlat": 40.8105801, + "minlon": -73.9621587, + "maxlat": 40.8118836, + "maxlon": -73.9612283 + }, + "nodes": [ + 1506591534, + 9520170422, + 9518259634, + 42428844, + 9518259639, + 11851500943, + 1506591536 + ], + "geometry": [ + { "lat": 40.8118836, "lon": -73.9612283 }, + { "lat": 40.8118116, "lon": -73.9612797 }, + { "lat": 40.8113137, "lon": -73.9616351 }, + { "lat": 40.8112551, "lon": -73.9616769 }, + { "lat": 40.8111935, "lon": -73.9617209 }, + { "lat": 40.8106730, "lon": -73.9620924 }, + { "lat": 40.8105801, "lon": -73.9621587 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1043350179, + "bounds": { + "minlat": 40.8118836, + "minlon": -73.9630020, + "maxlat": 40.8126411, + "maxlon": -73.9612283 + }, + "nodes": [ + 1506591534, + 9520170425, + 10054949346, + 10050039071, + 1332860731, + 10050039074, + 10054949344, + 8839381831, + 10050004447, + 1332860726 + ], + "geometry": [ + { "lat": 40.8118836, "lon": -73.9612283 }, + { "lat": 40.8119187, "lon": -73.9613108 }, + { "lat": 40.8121956, "lon": -73.9619588 }, + { "lat": 40.8122219, "lon": -73.9620204 }, + { "lat": 40.8122569, "lon": -73.9621024 }, + { "lat": 40.8122989, "lon": -73.9622006 }, + { "lat": 40.8123277, "lon": -73.9622682 }, + { "lat": 40.8125763, "lon": -73.9628503 }, + { "lat": 40.8126011, "lon": -73.9629083 }, + { "lat": 40.8126411, "lon": -73.9630020 } + ], + "tags": { + "alt_name": "Seminary Row", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "name": "West 122nd Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1043414245, + "bounds": { + "minlat": 40.7959661, + "minlon": -74.0036046, + "maxlat": 40.7965503, + "maxlon": -74.0031322 + }, + "nodes": [ + 103862632, + 7678472882, + 7678472884, + 103862633 + ], + "geometry": [ + { "lat": 40.7959661, "lon": -74.0036046 }, + { "lat": 40.7960303, "lon": -74.0035527 }, + { "lat": 40.7965050, "lon": -74.0031689 }, + { "lat": 40.7965503, "lon": -74.0031322 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081253", + "highway": "tertiary", + "name": "Broadway", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087", + "tiger:zip_right": "07047:07087" + } +}, +{ + "type": "way", + "id": 1043414246, + "bounds": { + "minlat": 40.7958674, + "minlon": -74.0036046, + "maxlat": 40.7959661, + "maxlon": -74.0033859 + }, + "nodes": [ + 6917350902, + 7678472874, + 103862632 + ], + "geometry": [ + { "lat": 40.7958674, "lon": -74.0033859 }, + { "lat": 40.7959057, "lon": -74.0034709 }, + { "lat": 40.7959661, "lon": -74.0036046 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081168", + "highway": "tertiary", + "name": "74th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1043414247, + "bounds": { + "minlat": 40.7957572, + "minlon": -74.0037735, + "maxlat": 40.7959661, + "maxlon": -74.0036046 + }, + "nodes": [ + 6917350898, + 7678472872, + 103862632 + ], + "geometry": [ + { "lat": 40.7957572, "lon": -74.0037735 }, + { "lat": 40.7959195, "lon": -74.0036423 }, + { "lat": 40.7959661, "lon": -74.0036046 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081253", + "highway": "tertiary", + "name": "Broadway", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087", + "tiger:zip_right": "07047:07087" + } +}, +{ + "type": "way", + "id": 1043424177, + "bounds": { + "minlat": 40.8265781, + "minlon": -73.9985650, + "maxlat": 40.8268170, + "maxlon": -73.9984845 + }, + "nodes": [ + 103196360, + 103209159, + 103209160 + ], + "geometry": [ + { "lat": 40.8265781, "lon": -73.9984845 }, + { "lat": 40.8266991, "lon": -73.9985279 }, + { "lat": 40.8268170, "lon": -73.9985650 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "name": "Edgewater Avenue", + "ref": "CR 50", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd;Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022;07657", + "tiger:zip_right": "07010;07657" + } +}, +{ + "type": "way", + "id": 1043424178, + "bounds": { + "minlat": 40.8268170, + "minlon": -73.9985690, + "maxlat": 40.8291076, + "maxlon": -73.9984583 + }, + "nodes": [ + 103209160, + 103209161, + 3633035280, + 6065323844, + 103209162, + 103184988, + 8530347113, + 103185074 + ], + "geometry": [ + { "lat": 40.8268170, "lon": -73.9985650 }, + { "lat": 40.8268790, "lon": -73.9985690 }, + { "lat": 40.8274063, "lon": -73.9985452 }, + { "lat": 40.8275802, "lon": -73.9985332 }, + { "lat": 40.8281090, "lon": -73.9984978 }, + { "lat": 40.8286879, "lon": -73.9984595 }, + { "lat": 40.8288825, "lon": -73.9984583 }, + { "lat": 40.8291076, "lon": -73.9985188 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "name": "Edgewater Avenue", + "ref": "CR 50", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd;Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022;07657", + "tiger:zip_right": "07010;07657" + } +}, +{ + "type": "way", + "id": 1043424179, + "bounds": { + "minlat": 40.8267768, + "minlon": -73.9983052, + "maxlat": 40.8307779, + "maxlon": -73.9940018 + }, + "nodes": [ + 5341017983, + 103196361, + 103135101, + 103150174, + 103150151, + 103196362, + 8530362440, + 103196363, + 103196364, + 103196365, + 103196366, + 103196368, + 103196369, + 103133191 + ], + "geometry": [ + { "lat": 40.8267768, "lon": -73.9983052 }, + { "lat": 40.8272290, "lon": -73.9978607 }, + { "lat": 40.8282434, "lon": -73.9968532 }, + { "lat": 40.8289439, "lon": -73.9961785 }, + { "lat": 40.8289620, "lon": -73.9961598 }, + { "lat": 40.8294813, "lon": -73.9956760 }, + { "lat": 40.8297041, "lon": -73.9954519 }, + { "lat": 40.8301820, "lon": -73.9949940 }, + { "lat": 40.8303010, "lon": -73.9948630 }, + { "lat": 40.8304390, "lon": -73.9946840 }, + { "lat": 40.8305410, "lon": -73.9945300 }, + { "lat": 40.8306340, "lon": -73.9943670 }, + { "lat": 40.8307190, "lon": -73.9941950 }, + { "lat": 40.8307779, "lon": -73.9940018 } + ], + "tags": { + "highway": "residential", + "name": "Studio Road", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Studio", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1043447242, + "bounds": { + "minlat": 40.8381650, + "minlon": -73.9803776, + "maxlat": 40.8383260, + "maxlon": -73.9801250 + }, + "nodes": [ + 103174031, + 103174030 + ], + "geometry": [ + { "lat": 40.8383260, "lon": -73.9803776 }, + { "lat": 40.8381650, "lon": -73.9801250 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Central Boulevard", + "oneway": "yes", + "ref": "NJ 5", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1043517682, + "bounds": { + "minlat": 40.7124983, + "minlon": -74.0048136, + "maxlat": 40.7127537, + "maxlon": -74.0045249 + }, + "nodes": [ + 9603866900, + 11922694712, + 370705004 + ], + "geometry": [ + { "lat": 40.7127537, "lon": -74.0045249 }, + { "lat": 40.7126656, "lon": -74.0046123 }, + { "lat": 40.7124983, "lon": -74.0048136 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "expressway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;through", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1043679571, + "bounds": { + "minlat": 40.8309523, + "minlon": -73.9797042, + "maxlat": 40.8312000, + "maxlon": -73.9792090 + }, + "nodes": [ + 9605143623, + 103162129, + 6895111582, + 103162131, + 103162133 + ], + "geometry": [ + { "lat": 40.8312000, "lon": -73.9797042 }, + { "lat": 40.8311633, "lon": -73.9796179 }, + { "lat": 40.8310900, "lon": -73.9794684 }, + { "lat": 40.8310143, "lon": -73.9793245 }, + { "lat": 40.8309523, "lon": -73.9792090 } + ], + "tags": { + "Bergen_County_database_ref": "119", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000119", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "2", + "name": "Columbia Avenue", + "oneway": "yes", + "ref": "CR 119", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "left;through|right" + } +}, +{ + "type": "way", + "id": 1044082706, + "bounds": { + "minlat": 40.7433325, + "minlon": -73.9215157, + "maxlat": 40.7436366, + "maxlon": -73.9214533 + }, + "nodes": [ + 2844853154, + 2844853158 + ], + "geometry": [ + { "lat": 40.7433325, "lon": -73.9215157 }, + { "lat": 40.7436366, "lon": -73.9214533 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "43rd Street" + } +}, +{ + "type": "way", + "id": 1044082707, + "bounds": { + "minlat": 40.7494648, + "minlon": -73.9187436, + "maxlat": 40.7495480, + "maxlon": -73.9183730 + }, + "nodes": [ + 9111623471, + 11467993914, + 42815092 + ], + "geometry": [ + { "lat": 40.7495480, "lon": -73.9183730 }, + { "lat": 40.7495289, "lon": -73.9184339 }, + { "lat": 40.7494648, "lon": -73.9187436 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Barnett Avenue", + "name_1": "38th Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 1044082708, + "bounds": { + "minlat": 40.7429865, + "minlon": -73.9170738, + "maxlat": 40.7429957, + "maxlon": -73.9169355 + }, + "nodes": [ + 3798377319, + 3798377291 + ], + "geometry": [ + { "lat": 40.7429865, "lon": -73.9169355 }, + { "lat": 40.7429957, "lon": -73.9170738 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1044082710, + "bounds": { + "minlat": 40.7429776, + "minlon": -73.9169355, + "maxlat": 40.7429865, + "maxlon": -73.9168213 + }, + "nodes": [ + 3798377326, + 3798377319 + ], + "geometry": [ + { "lat": 40.7429776, "lon": -73.9168213 }, + { "lat": 40.7429865, "lon": -73.9169355 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1044345491, + "bounds": { + "minlat": 40.7290340, + "minlon": -74.0111883, + "maxlat": 40.7291697, + "maxlon": -74.0111702 + }, + "nodes": [ + 2562448041, + 9609713323 + ], + "geometry": [ + { "lat": 40.7291697, "lon": -74.0111702 }, + { "lat": 40.7290340, "lon": -74.0111883 } + ], + "tags": { + "highway": "service", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1044345495, + "bounds": { + "minlat": 40.7288667, + "minlon": -74.0113257, + "maxlat": 40.7288748, + "maxlon": -74.0112056 + }, + "nodes": [ + 2562448029, + 9609713329, + 9609713330 + ], + "geometry": [ + { "lat": 40.7288748, "lon": -74.0113257 }, + { "lat": 40.7288718, "lon": -74.0112933 }, + { "lat": 40.7288667, "lon": -74.0112056 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1044345496, + "bounds": { + "minlat": 40.7291697, + "minlon": -74.0112846, + "maxlat": 40.7292306, + "maxlon": -74.0111702 + }, + "nodes": [ + 2562448041, + 9609713331, + 9609713332 + ], + "geometry": [ + { "lat": 40.7291697, "lon": -74.0111702 }, + { "lat": 40.7292281, "lon": -74.0112585 }, + { "lat": 40.7292306, "lon": -74.0112846 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1044345499, + "bounds": { + "minlat": 40.7287733, + "minlon": -74.0112169, + "maxlat": 40.7288667, + "maxlon": -74.0112056 + }, + "nodes": [ + 9609713330, + 2562448026 + ], + "geometry": [ + { "lat": 40.7288667, "lon": -74.0112056 }, + { "lat": 40.7287733, "lon": -74.0112169 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1044612330, + "bounds": { + "minlat": 40.6989110, + "minlon": -73.9339510, + "maxlat": 40.7026740, + "maxlon": -73.9307700 + }, + "nodes": [ + 42499820, + 9743987255, + 42499816, + 9950989222, + 42499813, + 42499809, + 42499806, + 10066758362, + 42484343, + 10066758361, + 9743987310, + 42479511, + 9743987311, + 42499800, + 9744012809, + 42499797 + ], + "geometry": [ + { "lat": 40.6989110, "lon": -73.9307700 }, + { "lat": 40.6989688, "lon": -73.9308692 }, + { "lat": 40.6992020, "lon": -73.9312800 }, + { "lat": 40.6993471, "lon": -73.9315327 }, + { "lat": 40.6993811, "lon": -73.9315931 }, + { "lat": 40.6996280, "lon": -73.9320310 }, + { "lat": 40.6998140, "lon": -73.9323500 }, + { "lat": 40.7000302, "lon": -73.9327304 }, + { "lat": 40.7000590, "lon": -73.9327810 }, + { "lat": 40.7001843, "lon": -73.9328404 }, + { "lat": 40.7008127, "lon": -73.9331359 }, + { "lat": 40.7008635, "lon": -73.9331617 }, + { "lat": 40.7009470, "lon": -73.9331977 }, + { "lat": 40.7017160, "lon": -73.9335300 }, + { "lat": 40.7025995, "lon": -73.9339182 }, + { "lat": 40.7026740, "lon": -73.9339510 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Evergreen Avenue", + "name:etymology:wikidata": "Q5058720", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Evergreen", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1045880682, + "bounds": { + "minlat": 40.7312426, + "minlon": -74.0107728, + "maxlat": 40.7313900, + "maxlon": -74.0107296 + }, + "nodes": [ + 9618902375, + 9618902376, + 9618902385, + 9618902380, + 9618902384, + 9618902379, + 9618902383, + 9618902381, + 9618902382, + 9618902377, + 9618902378, + 9618902375 + ], + "geometry": [ + { "lat": 40.7313882, "lon": -74.0107296 }, + { "lat": 40.7313900, "lon": -74.0107453 }, + { "lat": 40.7313740, "lon": -74.0107567 }, + { "lat": 40.7313576, "lon": -74.0107658 }, + { "lat": 40.7313413, "lon": -74.0107701 }, + { "lat": 40.7313241, "lon": -74.0107721 }, + { "lat": 40.7313042, "lon": -74.0107728 }, + { "lat": 40.7312843, "lon": -74.0107717 }, + { "lat": 40.7312642, "lon": -74.0107670 }, + { "lat": 40.7312441, "lon": -74.0107587 }, + { "lat": 40.7312426, "lon": -74.0107423 }, + { "lat": 40.7313882, "lon": -74.0107296 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1046481426, + "bounds": { + "minlat": 40.7726558, + "minlon": -73.9822863, + "maxlat": 40.7728902, + "maxlon": -73.9821074 + }, + "nodes": [ + 13208007103, + 42428588 + ], + "geometry": [ + { "lat": 40.7728902, "lon": -73.9821074 }, + { "lat": 40.7726558, "lon": -73.9822863 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1046481427, + "bounds": { + "minlat": 40.7728902, + "minlon": -73.9821077, + "maxlat": 40.7729979, + "maxlon": -73.9821059 + }, + "nodes": [ + 13208007103, + 9909932989, + 6173564360 + ], + "geometry": [ + { "lat": 40.7728902, "lon": -73.9821074 }, + { "lat": 40.7729239, "lon": -73.9821077 }, + { "lat": 40.7729979, "lon": -73.9821059 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1046481428, + "bounds": { + "minlat": 40.7728902, + "minlon": -73.9821074, + "maxlat": 40.7729730, + "maxlon": -73.9820473 + }, + "nodes": [ + 9170816532, + 9909932988, + 13208007103 + ], + "geometry": [ + { "lat": 40.7729730, "lon": -73.9820473 }, + { "lat": 40.7729172, "lon": -73.9820900 }, + { "lat": 40.7728902, "lon": -73.9821074 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1046481429, + "bounds": { + "minlat": 40.7720393, + "minlon": -73.9820473, + "maxlat": 40.7729730, + "maxlon": -73.9798319 + }, + "nodes": [ + 9170816532, + 5117963660, + 7504495668 + ], + "geometry": [ + { "lat": 40.7729730, "lon": -73.9820473 }, + { "lat": 40.7729164, "lon": -73.9819141 }, + { "lat": 40.7720393, "lon": -73.9798319 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 65th Street", + "name:ru": "Западная 65-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1046539765, + "bounds": { + "minlat": 40.7524881, + "minlon": -73.9455452, + "maxlat": 40.7527820, + "maxlon": -73.9451046 + }, + "nodes": [ + 3785649062, + 2472695918, + 2472695916 + ], + "geometry": [ + { "lat": 40.7524881, "lon": -73.9451046 }, + { "lat": 40.7527518, "lon": -73.9454854 }, + { "lat": 40.7527820, "lon": -73.9455452 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Queens Plaza South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1046745000, + "bounds": { + "minlat": 40.7501697, + "minlon": -73.9774266, + "maxlat": 40.7503541, + "maxlon": -73.9769912 + }, + "nodes": [ + 9625590216, + 12183285347, + 12831235618, + 42446949 + ], + "geometry": [ + { "lat": 40.7503541, "lon": -73.9774266 }, + { "lat": 40.7502334, "lon": -73.9771411 }, + { "lat": 40.7502110, "lon": -73.9770883 }, + { "lat": 40.7501697, "lon": -73.9769912 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 40th Street", + "name:ru": "Восточная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1046750793, + "bounds": { + "minlat": 40.7371730, + "minlon": -73.9892013, + "maxlat": 40.7374111, + "maxlon": -73.9886277 + }, + "nodes": [ + 9625662426, + 12181339163, + 9679181077, + 4597668026 + ], + "geometry": [ + { "lat": 40.7374111, "lon": -73.9892013 }, + { "lat": 40.7372390, "lon": -73.9887774 }, + { "lat": 40.7372131, "lon": -73.9887182 }, + { "lat": 40.7371730, "lon": -73.9886277 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 18th Street", + "name:ru": "Восточная 18-я стрит", + "name_1": "East 18 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|none|right" + } +}, +{ + "type": "way", + "id": 1046751100, + "bounds": { + "minlat": 40.8082283, + "minlon": -73.9449268, + "maxlat": 40.8084187, + "maxlon": -73.9444754 + }, + "nodes": [ + 9625658173, + 10171038454, + 42446203 + ], + "geometry": [ + { "lat": 40.8082283, "lon": -73.9444754 }, + { "lat": 40.8083818, "lon": -73.9448394 }, + { "lat": 40.8084187, "lon": -73.9449268 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "2", + "name": "West 126th Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "none|right" + } +}, +{ + "type": "way", + "id": 1046751142, + "bounds": { + "minlat": 40.8361153, + "minlon": -73.9405875, + "maxlat": 40.8363466, + "maxlon": -73.9400362 + }, + "nodes": [ + 9625649347, + 2499827806, + 11292676871, + 42433017 + ], + "geometry": [ + { "lat": 40.8363466, "lon": -73.9405875 }, + { "lat": 40.8361568, "lon": -73.9401352 }, + { "lat": 40.8361501, "lon": -73.9401191 }, + { "lat": 40.8361153, "lon": -73.9400362 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "West 162nd Street", + "name_1": "West 162 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "162nd", + "tiger:name_base_1": "162", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1046751735, + "bounds": { + "minlat": 40.8582890, + "minlon": -73.9102080, + "maxlat": 40.8585589, + "maxlon": -73.9099573 + }, + "nodes": [ + 9625644980, + 8174133667, + 42742756 + ], + "geometry": [ + { "lat": 40.8585589, "lon": -73.9099573 }, + { "lat": 40.8583937, "lon": -73.9101107 }, + { "lat": 40.8582890, "lon": -73.9102080 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Andrews Avenue North", + "name:etymology:wikidata": "Q56000453", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Andrews", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1046752231, + "bounds": { + "minlat": 40.7429975, + "minlon": -73.9597890, + "maxlat": 40.7430837, + "maxlon": -73.9593469 + }, + "nodes": [ + 9625666918, + 4886156170, + 2297172754 + ], + "geometry": [ + { "lat": 40.7429975, "lon": -73.9593469 }, + { "lat": 40.7430613, "lon": -73.9596800 }, + { "lat": 40.7430837, "lon": -73.9597890 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "51st Avenue", + "oneway": "yes", + "source": "Bing", + "surface": "asphalt", + "turn:lanes": "left;right" + } +}, +{ + "type": "way", + "id": 1046897977, + "bounds": { + "minlat": 40.7592010, + "minlon": -74.0000185, + "maxlat": 40.7595742, + "maxlon": -73.9995832 + }, + "nodes": [ + 5481848948, + 5481848947, + 5481848946, + 5481848950 + ], + "geometry": [ + { "lat": 40.7592804, "lon": -74.0000185 }, + { "lat": 40.7592010, "lon": -73.9998308 }, + { "lat": 40.7595368, "lon": -73.9995832 }, + { "lat": 40.7595742, "lon": -73.9996716 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1047024436, + "bounds": { + "minlat": 40.7420093, + "minlon": -73.9074523, + "maxlat": 40.7420476, + "maxlon": -73.9071219 + }, + "nodes": [ + 5481947966, + 9986759186, + 276314183 + ], + "geometry": [ + { "lat": 40.7420093, "lon": -73.9071219 }, + { "lat": 40.7420378, "lon": -73.9073558 }, + { "lat": 40.7420476, "lon": -73.9074523 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Queens Boulevard", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 1047067668, + "bounds": { + "minlat": 40.8113373, + "minlon": -73.9640405, + "maxlat": 40.8113749, + "maxlon": -73.9639549 + }, + "nodes": [ + 7620540917, + 6868145381 + ], + "geometry": [ + { "lat": 40.8113373, "lon": -73.9639549 }, + { "lat": 40.8113749, "lon": -73.9640405 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 120th Street", + "name:ru": "Западная 120-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1047067669, + "bounds": { + "minlat": 40.8113373, + "minlon": -73.9639549, + "maxlat": 40.8114305, + "maxlon": -73.9638811 + }, + "nodes": [ + 7620540917, + 6868145384 + ], + "geometry": [ + { "lat": 40.8113373, "lon": -73.9639549 }, + { "lat": 40.8114305, "lon": -73.9638811 } + ], + "tags": { + "alt_name": "Riverside Drive West", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1047074621, + "bounds": { + "minlat": 40.8652474, + "minlon": -74.0074141, + "maxlat": 40.8654835, + "maxlon": -74.0069734 + }, + "nodes": [ + 9628408959, + 298607103, + 298607104, + 9252529318 + ], + "geometry": [ + { "lat": 40.8652474, "lon": -74.0074141 }, + { "lat": 40.8653252, "lon": -74.0072620 }, + { "lat": 40.8654036, "lon": -74.0071179 }, + { "lat": 40.8654835, "lon": -74.0069734 } + ], + "tags": { + "destination": "New York City", + "destination:ref": "I 95 North", + "destination:street": "G. Washington Bridge", + "highway": "motorway", + "lanes": "3", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 80", + "toll": "no", + "turn:lanes": "none|none|merge_to_left" + } +}, +{ + "type": "way", + "id": 1049536604, + "bounds": { + "minlat": 40.7451399, + "minlon": -73.9338690, + "maxlat": 40.7453783, + "maxlon": -73.9337556 + }, + "nodes": [ + 9645094518, + 10142831530, + 9645094519, + 9645094520, + 9645094524 + ], + "geometry": [ + { "lat": 40.7453783, "lon": -73.9337556 }, + { "lat": 40.7453031, "lon": -73.9338114 }, + { "lat": 40.7452523, "lon": -73.9338515 }, + { "lat": 40.7451600, "lon": -73.9338690 }, + { "lat": 40.7451399, "lon": -73.9338031 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1049536605, + "bounds": { + "minlat": 40.7449412, + "minlon": -73.9337485, + "maxlat": 40.7451231, + "maxlon": -73.9337113 + }, + "nodes": [ + 9645094523, + 9645094521, + 9645094522 + ], + "geometry": [ + { "lat": 40.7451231, "lon": -73.9337485 }, + { "lat": 40.7451118, "lon": -73.9337113 }, + { "lat": 40.7449412, "lon": -73.9337462 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1049536606, + "bounds": { + "minlat": 40.7451231, + "minlon": -73.9338031, + "maxlat": 40.7451399, + "maxlon": -73.9337485 + }, + "nodes": [ + 9645094524, + 9645094523 + ], + "geometry": [ + { "lat": 40.7451399, "lon": -73.9338031 }, + { "lat": 40.7451231, "lon": -73.9337485 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1049555703, + "bounds": { + "minlat": 40.7029106, + "minlon": -73.9661511, + "maxlat": 40.7030503, + "maxlon": -73.9659656 + }, + "nodes": [ + 8913120109, + 9645230715 + ], + "geometry": [ + { "lat": 40.7029106, "lon": -73.9661511 }, + { "lat": 40.7030503, "lon": -73.9659656 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "lanes": "2", + "name": "60 Kent Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 1049837362, + "bounds": { + "minlat": 40.7437288, + "minlon": -73.9835670, + "maxlat": 40.7439299, + "maxlon": -73.9830904 + }, + "nodes": [ + 9647667077, + 12181374907, + 10166167630, + 42436748 + ], + "geometry": [ + { "lat": 40.7437288, "lon": -73.9830904 }, + { "lat": 40.7438757, "lon": -73.9834395 }, + { "lat": 40.7438978, "lon": -73.9834915 }, + { "lat": 40.7439299, "lon": -73.9835670 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 29th Street", + "name:ru": "Восточная 29-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|right" + } +}, +{ + "type": "way", + "id": 1049837953, + "bounds": { + "minlat": 40.7254288, + "minlon": -73.9930426, + "maxlat": 40.7254617, + "maxlon": -73.9929195 + }, + "nodes": [ + 42431822, + 9647705405 + ], + "geometry": [ + { "lat": 40.7254617, "lon": -73.9930426 }, + { "lat": 40.7254288, "lon": -73.9929195 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Bleecker Street", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "parking:lane:left:parallel": "no_parking", + "sidewalk:both": "separate", + "source:geometry": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 1049837954, + "bounds": { + "minlat": 40.7253935, + "minlon": -73.9929195, + "maxlat": 40.7254288, + "maxlon": -73.9927873 + }, + "nodes": [ + 9647705405, + 9647705406 + ], + "geometry": [ + { "lat": 40.7254288, "lon": -73.9929195 }, + { "lat": 40.7253935, "lon": -73.9927873 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Bleecker Street", + "name:ko": "블리커 스트리트", + "oneway": "yes", + "parking:lane:left": "no_parking", + "parking:lane:left:parallel": "no_parking", + "sidewalk:both": "separate", + "source:geometry": "Bing aerial imagery", + "surface": "asphalt", + "wikidata": "Q2724557", + "wikipedia": "en:Bleecker Street" + } +}, +{ + "type": "way", + "id": 1049841322, + "bounds": { + "minlat": 40.7546355, + "minlon": -73.9757004, + "maxlat": 40.7559030, + "maxlon": -73.9748081 + }, + "nodes": [ + 100522741, + 11509720081, + 11509720080, + 9140654139, + 11509720075, + 12834723264, + 10125233053, + 100522728, + 10125233047, + 12834723260, + 10165922708, + 42448811 + ], + "geometry": [ + { "lat": 40.7546355, "lon": -73.9757004 }, + { "lat": 40.7546597, "lon": -73.9756969 }, + { "lat": 40.7546791, "lon": -73.9756918 }, + { "lat": 40.7547021, "lon": -73.9756808 }, + { "lat": 40.7547331, "lon": -73.9756615 }, + { "lat": 40.7551860, "lon": -73.9753323 }, + { "lat": 40.7552199, "lon": -73.9753077 }, + { "lat": 40.7552747, "lon": -73.9752679 }, + { "lat": 40.7553261, "lon": -73.9752304 }, + { "lat": 40.7557979, "lon": -73.9748854 }, + { "lat": 40.7558434, "lon": -73.9748522 }, + { "lat": 40.7559030, "lon": -73.9748081 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1049841323, + "bounds": { + "minlat": 40.7577792, + "minlon": -73.9736145, + "maxlat": 40.7578528, + "maxlon": -73.9734395 + }, + "nodes": [ + 42440456, + 596775876 + ], + "geometry": [ + { "lat": 40.7577792, "lon": -73.9734395 }, + { "lat": 40.7578528, "lon": -73.9736145 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "name": "East 51st Street", + "name:ru": "Восточная 51-я стрит", + "name_1": "East 51 Street", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1049843664, + "bounds": { + "minlat": 40.7621180, + "minlon": -73.9606603, + "maxlat": 40.7623392, + "maxlon": -73.9601302 + }, + "nodes": [ + 42429986, + 4918486925, + 9647707410 + ], + "geometry": [ + { "lat": 40.7621180, "lon": -73.9601302 }, + { "lat": 40.7621788, "lon": -73.9602832 }, + { "lat": 40.7623392, "lon": -73.9606603 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "lanes": "2", + "name": "East 63rd Street", + "name:ru": "Восточная 63-я стрит", + "name_1": "East 63 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1049843665, + "bounds": { + "minlat": 40.7623392, + "minlon": -73.9615610, + "maxlat": 40.7627152, + "maxlon": -73.9606603 + }, + "nodes": [ + 9647707410, + 10121802231, + 6744466013 + ], + "geometry": [ + { "lat": 40.7623392, "lon": -73.9606603 }, + { "lat": 40.7626763, "lon": -73.9614678 }, + { "lat": 40.7627152, "lon": -73.9615610 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "lanes": "3", + "name": "East 63rd Street", + "name:ru": "Восточная 63-я стрит", + "name_1": "East 63 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1049844343, + "bounds": { + "minlat": 40.7565163, + "minlon": -73.9863565, + "maxlat": 40.7566673, + "maxlon": -73.9859959 + }, + "nodes": [ + 4578017557, + 10222417558, + 12055677929, + 10222417542, + 4578017558 + ], + "geometry": [ + { "lat": 40.7565163, "lon": -73.9859959 }, + { "lat": 40.7565320, "lon": -73.9860335 }, + { "lat": 40.7565845, "lon": -73.9861590 }, + { "lat": 40.7566385, "lon": -73.9862881 }, + { "lat": 40.7566673, "lon": -73.9863565 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "no", + "highway": "residential", + "lanes": "3", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones", + "turn:lanes": "left|through|through" + } +}, +{ + "type": "way", + "id": 1049845754, + "bounds": { + "minlat": 40.7575242, + "minlon": -73.9892961, + "maxlat": 40.7579117, + "maxlon": -73.9883815 + }, + "nodes": [ + 8669764313, + 6597498398, + 5849918504 + ], + "geometry": [ + { "lat": 40.7575242, "lon": -73.9883815 }, + { "lat": 40.7578580, "lon": -73.9891695 }, + { "lat": 40.7579117, "lon": -73.9892961 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "3", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|right" + } +}, +{ + "type": "way", + "id": 1049852135, + "bounds": { + "minlat": 40.7265899, + "minlon": -74.0110728, + "maxlat": 40.7272392, + "maxlon": -74.0109844 + }, + "nodes": [ + 4141593653, + 4142073863, + 12162542923, + 4207143435 + ], + "geometry": [ + { "lat": 40.7272392, "lon": -74.0109844 }, + { "lat": 40.7270258, "lon": -74.0110112 }, + { "lat": 40.7268007, "lon": -74.0110420 }, + { "lat": 40.7265899, "lon": -74.0110728 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1049854214, + "bounds": { + "minlat": 40.7250344, + "minlon": -73.9953692, + "maxlat": 40.7251518, + "maxlon": -73.9952749 + }, + "nodes": [ + 1918039897, + 42445511 + ], + "geometry": [ + { "lat": 40.7250344, "lon": -73.9953692 }, + { "lat": 40.7251518, "lon": -73.9952749 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:ar": "شارع لافايات", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 1049854215, + "bounds": { + "minlat": 40.7251518, + "minlon": -73.9957848, + "maxlat": 40.7252760, + "maxlon": -73.9952749 + }, + "nodes": [ + 42445511, + 5829927765, + 5829927769, + 42457319 + ], + "geometry": [ + { "lat": 40.7251518, "lon": -73.9952749 }, + { "lat": 40.7251834, "lon": -73.9953931 }, + { "lat": 40.7252593, "lon": -73.9957124 }, + { "lat": 40.7252760, "lon": -73.9957848 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1049879867, + "bounds": { + "minlat": 40.7492162, + "minlon": -73.9794227, + "maxlat": 40.7495623, + "maxlon": -73.9786069 + }, + "nodes": [ + 42453986, + 10171035518, + 12181374946, + 12183285340 + ], + "geometry": [ + { "lat": 40.7495623, "lon": -73.9794227 }, + { "lat": 40.7495197, "lon": -73.9793265 }, + { "lat": 40.7495068, "lon": -73.9792972 }, + { "lat": 40.7492162, "lon": -73.9786069 } + ], + "tags": { + "alt_name": "E 38th st", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 38th Street", + "name:ru": "Восточная 38-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1049879868, + "bounds": { + "minlat": 40.7478756, + "minlon": -73.9763154, + "maxlat": 40.7482498, + "maxlon": -73.9754367 + }, + "nodes": [ + 42449938, + 9987259775, + 12187343196, + 12187390438, + 9987259776, + 42453999 + ], + "geometry": [ + { "lat": 40.7482498, "lon": -73.9763154 }, + { "lat": 40.7481828, "lon": -73.9761578 }, + { "lat": 40.7481734, "lon": -73.9761356 }, + { "lat": 40.7479336, "lon": -73.9755750 }, + { "lat": 40.7479006, "lon": -73.9754961 }, + { "lat": 40.7478756, "lon": -73.9754367 } + ], + "tags": { + "alt_name": "E 38th st", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 38th Street", + "name:ru": "Восточная 38-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1049888072, + "bounds": { + "minlat": 40.7610365, + "minlon": -73.9870177, + "maxlat": 40.7613013, + "maxlon": -73.9868339 + }, + "nodes": [ + 42435680, + 10168088499, + 9648221827 + ], + "geometry": [ + { "lat": 40.7610365, "lon": -73.9870177 }, + { "lat": 40.7611050, "lon": -73.9869680 }, + { "lat": 40.7613013, "lon": -73.9868339 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1049896121, + "bounds": { + "minlat": 40.8185036, + "minlon": -73.9772433, + "maxlat": 40.8190248, + "maxlon": -73.9768707 + }, + "nodes": [ + 5362514439, + 12248807226, + 12248807230, + 5362514139, + 3441690509 + ], + "geometry": [ + { "lat": 40.8185036, "lon": -73.9772433 }, + { "lat": 40.8185107, "lon": -73.9772291 }, + { "lat": 40.8185166, "lon": -73.9772194 }, + { "lat": 40.8185264, "lon": -73.9772110 }, + { "lat": 40.8190248, "lon": -73.9768707 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1049920715, + "bounds": { + "minlat": 40.7539626, + "minlon": -73.9883230, + "maxlat": 40.7541474, + "maxlon": -73.9878801 + }, + "nodes": [ + 9821598084, + 10169532539, + 42439964 + ], + "geometry": [ + { "lat": 40.7539626, "lon": -73.9878801 }, + { "lat": 40.7541008, "lon": -73.9882074 }, + { "lat": 40.7541474, "lon": -73.9883230 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1049920716, + "bounds": { + "minlat": 40.7541474, + "minlon": -73.9883230, + "maxlat": 40.7547554, + "maxlon": -73.9878881 + }, + "nodes": [ + 42439968, + 10169532533, + 10169532540, + 42439964 + ], + "geometry": [ + { "lat": 40.7547554, "lon": -73.9878881 }, + { "lat": 40.7546999, "lon": -73.9879278 }, + { "lat": 40.7542134, "lon": -73.9882755 }, + { "lat": 40.7541474, "lon": -73.9883230 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "through|through||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1049920717, + "bounds": { + "minlat": 40.7528867, + "minlon": -73.9887981, + "maxlat": 40.7535034, + "maxlon": -73.9873437 + }, + "nodes": [ + 42433611, + 10169532564, + 10173490604, + 42428268 + ], + "geometry": [ + { "lat": 40.7535034, "lon": -73.9887981 }, + { "lat": 40.7534497, "lon": -73.9886726 }, + { "lat": 40.7529342, "lon": -73.9874576 }, + { "lat": 40.7528867, "lon": -73.9873437 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1049920718, + "bounds": { + "minlat": 40.7535034, + "minlon": -73.9887981, + "maxlat": 40.7541474, + "maxlon": -73.9883230 + }, + "nodes": [ + 42439964, + 10169532541, + 10169532565, + 42433611 + ], + "geometry": [ + { "lat": 40.7541474, "lon": -73.9883230 }, + { "lat": 40.7540718, "lon": -73.9883779 }, + { "lat": 40.7535863, "lon": -73.9887359 }, + { "lat": 40.7535034, "lon": -73.9887981 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1049942367, + "bounds": { + "minlat": 40.8375446, + "minlon": -73.9906323, + "maxlat": 40.8375717, + "maxlon": -73.9906213 + }, + "nodes": [ + 103148019, + 5972163095 + ], + "geometry": [ + { "lat": 40.8375446, "lon": -73.9906323 }, + { "lat": 40.8375717, "lon": -73.9906213 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1049942368, + "bounds": { + "minlat": 40.8375717, + "minlon": -73.9906213, + "maxlat": 40.8404361, + "maxlon": -73.9889511 + }, + "nodes": [ + 5972163095, + 103148020, + 103148022, + 103148024, + 103148026, + 103148028, + 7920535421, + 5340742198 + ], + "geometry": [ + { "lat": 40.8375717, "lon": -73.9906213 }, + { "lat": 40.8376710, "lon": -73.9905810 }, + { "lat": 40.8379760, "lon": -73.9904520 }, + { "lat": 40.8382750, "lon": -73.9903010 }, + { "lat": 40.8395640, "lon": -73.9894960 }, + { "lat": 40.8396110, "lon": -73.9894650 }, + { "lat": 40.8396603, "lon": -73.9894343 }, + { "lat": 40.8404361, "lon": -73.9889511 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1049948413, + "bounds": { + "minlat": 40.7408256, + "minlon": -73.9858267, + "maxlat": 40.7414523, + "maxlon": -73.9853699 + }, + "nodes": [ + 42436578, + 10166167526, + 12181339179, + 10166167564, + 42456555 + ], + "geometry": [ + { "lat": 40.7408256, "lon": -73.9858267 }, + { "lat": 40.7408922, "lon": -73.9857760 }, + { "lat": 40.7413560, "lon": -73.9854397 }, + { "lat": 40.7413950, "lon": -73.9854126 }, + { "lat": 40.7414523, "lon": -73.9853699 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1049948414, + "bounds": { + "minlat": 40.7408256, + "minlon": -73.9859403, + "maxlat": 40.7408738, + "maxlon": -73.9858267 + }, + "nodes": [ + 4597668029, + 42436578 + ], + "geometry": [ + { "lat": 40.7408738, "lon": -73.9859403 }, + { "lat": 40.7408256, "lon": -73.9858267 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 24th Street", + "name:ru": "Восточная 24-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1050098516, + "bounds": { + "minlat": 40.7720413, + "minlon": -73.9322382, + "maxlat": 40.7721090, + "maxlon": -73.9305988 + }, + "nodes": [ + 7745197942, + 11308870995, + 5104280937, + 9650262376, + 4679523591, + 42881130 + ], + "geometry": [ + { "lat": 40.7720413, "lon": -73.9322382 }, + { "lat": 40.7720476, "lon": -73.9320735 }, + { "lat": 40.7720817, "lon": -73.9311816 }, + { "lat": 40.7720848, "lon": -73.9310952 }, + { "lat": 40.7720889, "lon": -73.9309796 }, + { "lat": 40.7721090, "lon": -73.9305988 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Main Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1050098517, + "bounds": { + "minlat": 40.7714418, + "minlon": -73.9322382, + "maxlat": 40.7720413, + "maxlon": -73.9311337 + }, + "nodes": [ + 7745197942, + 11308870994, + 12044698820, + 7745197949, + 7745197939, + 42824405, + 7745197947, + 7745197941 + ], + "geometry": [ + { "lat": 40.7720413, "lon": -73.9322382 }, + { "lat": 40.7719911, "lon": -73.9321453 }, + { "lat": 40.7719318, "lon": -73.9320354 }, + { "lat": 40.7715946, "lon": -73.9314113 }, + { "lat": 40.7715516, "lon": -73.9313331 }, + { "lat": 40.7715187, "lon": -73.9312734 }, + { "lat": 40.7714603, "lon": -73.9311674 }, + { "lat": 40.7714418, "lon": -73.9311337 } + ], + "tags": { + "highway": "tertiary", + "name": "30th Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 1050175622, + "bounds": { + "minlat": 40.7350119, + "minlon": -73.9803927, + "maxlat": 40.7352285, + "maxlon": -73.9798916 + }, + "nodes": [ + 6804917583, + 12179607169, + 4296710218, + 42439181 + ], + "geometry": [ + { "lat": 40.7352285, "lon": -73.9803927 }, + { "lat": 40.7351066, "lon": -73.9800990 }, + { "lat": 40.7350803, "lon": -73.9800387 }, + { "lat": 40.7350119, "lon": -73.9798916 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1050195960, + "bounds": { + "minlat": 40.7151254, + "minlon": -73.9926355, + "maxlat": 40.7155400, + "maxlon": -73.9924212 + }, + "nodes": [ + 9651072563, + 9525441200, + 5863593981, + 42437990 + ], + "geometry": [ + { "lat": 40.7155400, "lon": -73.9924212 }, + { "lat": 40.7152495, "lon": -73.9925694 }, + { "lat": 40.7152074, "lon": -73.9925918 }, + { "lat": 40.7151254, "lon": -73.9926355 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 1050212324, + "bounds": { + "minlat": 40.8710683, + "minlon": -74.0050461, + "maxlat": 40.8711875, + "maxlon": -74.0049652 + }, + "nodes": [ + 4469429050, + 4469429059 + ], + "geometry": [ + { "lat": 40.8710683, "lon": -74.0049652 }, + { "lat": 40.8711875, "lon": -74.0050461 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1050212325, + "bounds": { + "minlat": 40.8710879, + "minlon": -74.0053229, + "maxlat": 40.8711875, + "maxlon": -74.0050461 + }, + "nodes": [ + 4469429059, + 4469429043 + ], + "geometry": [ + { "lat": 40.8711875, "lon": -74.0050461 }, + { "lat": 40.8710879, "lon": -74.0053229 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1050247346, + "bounds": { + "minlat": 40.8511342, + "minlon": -73.9858800, + "maxlat": 40.8514479, + "maxlon": -73.9855636 + }, + "nodes": [ + 530805916, + 4695817865 + ], + "geometry": [ + { "lat": 40.8514479, "lon": -73.9855636 }, + { "lat": 40.8511342, "lon": -73.9858800 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "turn:lanes": "|through;right" + } +}, +{ + "type": "way", + "id": 1050255674, + "bounds": { + "minlat": 40.7317820, + "minlon": -73.9963683, + "maxlat": 40.7322611, + "maxlon": -73.9952285 + }, + "nodes": [ + 42437949, + 8309478849, + 6255601608, + 6255601607, + 9651514501 + ], + "geometry": [ + { "lat": 40.7322611, "lon": -73.9963683 }, + { "lat": 40.7322185, "lon": -73.9962671 }, + { "lat": 40.7319678, "lon": -73.9956705 }, + { "lat": 40.7319369, "lon": -73.9955971 }, + { "lat": 40.7317820, "lon": -73.9952285 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 8th Street", + "name:en": "East 8th Street", + "name:ru": "Восточная 8-я стрит", + "name_1": "East 8 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2142493", + "wikipedia": "en:8th Street and St. Mark's Place" + } +}, +{ + "type": "way", + "id": 1050255675, + "bounds": { + "minlat": 40.7307210, + "minlon": -73.9955665, + "maxlat": 40.7316016, + "maxlon": -73.9948040 + }, + "nodes": [ + 42433298, + 3584752292, + 42433356, + 12179562742, + 8309478880, + 42456303 + ], + "geometry": [ + { "lat": 40.7307210, "lon": -73.9955665 }, + { "lat": 40.7307723, "lon": -73.9955133 }, + { "lat": 40.7312141, "lon": -73.9951339 }, + { "lat": 40.7315061, "lon": -73.9948837 }, + { "lat": 40.7315569, "lon": -73.9948414 }, + { "lat": 40.7316016, "lon": -73.9948040 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "University Place", + "name:etymology:wikidata": "Q49210", + "name:ru": "Юниверсити-Плейс", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7894878", + "wikipedia": "en:University Place (Manhattan)" + } +}, +{ + "type": "way", + "id": 1050255676, + "bounds": { + "minlat": 40.7316016, + "minlon": -73.9952285, + "maxlat": 40.7317820, + "maxlon": -73.9948040 + }, + "nodes": [ + 9651514501, + 12179562741, + 8309478881, + 42456303 + ], + "geometry": [ + { "lat": 40.7317820, "lon": -73.9952285 }, + { "lat": 40.7316607, "lon": -73.9949397 }, + { "lat": 40.7316326, "lon": -73.9948746 }, + { "lat": 40.7316016, "lon": -73.9948040 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 8th Street", + "name:en": "East 8th Street", + "name:ru": "Восточная 8-я стрит", + "name_1": "East 8 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|", + "wikidata": "Q2142493", + "wikipedia": "en:8th Street and St. Mark's Place" + } +}, +{ + "type": "way", + "id": 1050255677, + "bounds": { + "minlat": 40.7306005, + "minlon": -73.9932574, + "maxlat": 40.7309483, + "maxlon": -73.9924142 + }, + "nodes": [ + 42449589, + 8309479170, + 4755898678, + 12179562746, + 8309479166, + 42428473 + ], + "geometry": [ + { "lat": 40.7309483, "lon": -73.9932574 }, + { "lat": 40.7309195, "lon": -73.9931899 }, + { "lat": 40.7307890, "lon": -73.9928706 }, + { "lat": 40.7306613, "lon": -73.9925637 }, + { "lat": 40.7306408, "lon": -73.9925149 }, + { "lat": 40.7306005, "lon": -73.9924142 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 8th Street", + "name:en": "East 8th Street", + "name:ru": "Восточная 8-я стрит", + "name_1": "East 8 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q2142493", + "wikipedia": "en:8th Street and St. Mark's Place" + } +}, +{ + "type": "way", + "id": 1050267939, + "bounds": { + "minlat": 40.7932503, + "minlon": -74.0012338, + "maxlat": 40.7933827, + "maxlon": -74.0008110 + }, + "nodes": [ + 5482013271, + 7468539775, + 5482013270, + 5482013269 + ], + "geometry": [ + { "lat": 40.7933827, "lon": -74.0012338 }, + { "lat": 40.7933487, "lon": -74.0011473 }, + { "lat": 40.7933092, "lon": -74.0010470 }, + { "lat": 40.7932503, "lon": -74.0008110 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1050276042, + "bounds": { + "minlat": 40.8236071, + "minlon": -73.9754783, + "maxlat": 40.8237107, + "maxlon": -73.9751508 + }, + "nodes": [ + 5688937314, + 5688937922, + 5688937921, + 5688937320 + ], + "geometry": [ + { "lat": 40.8236071, "lon": -73.9751508 }, + { "lat": 40.8236152, "lon": -73.9752165 }, + { "lat": 40.8236345, "lon": -73.9752916 }, + { "lat": 40.8237107, "lon": -73.9754783 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1051013420, + "bounds": { + "minlat": 40.8063799, + "minlon": -73.9501152, + "maxlat": 40.8066607, + "maxlon": -73.9499106 + }, + "nodes": [ + 2141026510, + 10171219269, + 9055916302 + ], + "geometry": [ + { "lat": 40.8063799, "lon": -73.9501152 }, + { "lat": 40.8064400, "lon": -73.9500714 }, + { "lat": 40.8066607, "lon": -73.9499106 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051014410, + "bounds": { + "minlat": 40.7994417, + "minlon": -73.9627266, + "maxlat": 40.7996063, + "maxlon": -73.9626120 + }, + "nodes": [ + 4205830394, + 9658346967 + ], + "geometry": [ + { "lat": 40.7996063, "lon": -73.9626120 }, + { "lat": 40.7994417, "lon": -73.9627266 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051038563, + "bounds": { + "minlat": 40.8046267, + "minlon": -73.9513890, + "maxlat": 40.8047927, + "maxlon": -73.9512678 + }, + "nodes": [ + 9658594744, + 4207716485 + ], + "geometry": [ + { "lat": 40.8046267, "lon": -73.9513890 }, + { "lat": 40.8047927, "lon": -73.9512678 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051266487, + "bounds": { + "minlat": 40.8243088, + "minlon": -73.9521487, + "maxlat": 40.8245675, + "maxlon": -73.9519566 + }, + "nodes": [ + 42428922, + 10743657292, + 9660687201 + ], + "geometry": [ + { "lat": 40.8245675, "lon": -73.9519566 }, + { "lat": 40.8245146, "lon": -73.9519959 }, + { "lat": 40.8243088, "lon": -73.9521487 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051266488, + "bounds": { + "minlat": 40.8233117, + "minlon": -73.9528694, + "maxlat": 40.8243088, + "maxlon": -73.9521487 + }, + "nodes": [ + 9660687201, + 10170641716, + 42428919, + 10170703017, + 10170641708, + 42428917 + ], + "geometry": [ + { "lat": 40.8243088, "lon": -73.9521487 }, + { "lat": 40.8240021, "lon": -73.9523702 }, + { "lat": 40.8239367, "lon": -73.9524172 }, + { "lat": 40.8238852, "lon": -73.9524544 }, + { "lat": 40.8233706, "lon": -73.9528268 }, + { "lat": 40.8233117, "lon": -73.9528694 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051266489, + "bounds": { + "minlat": 40.8233117, + "minlon": -73.9548300, + "maxlat": 40.8241260, + "maxlon": -73.9528694 + }, + "nodes": [ + 42433811, + 10168100464, + 6934113725, + 6865755474, + 10168100460, + 42428917 + ], + "geometry": [ + { "lat": 40.8241260, "lon": -73.9548300 }, + { "lat": 40.8241022, "lon": -73.9547732 }, + { "lat": 40.8238272, "lon": -73.9541172 }, + { "lat": 40.8236692, "lon": -73.9537405 }, + { "lat": 40.8233487, "lon": -73.9529595 }, + { "lat": 40.8233117, "lon": -73.9528694 } + ], + "tags": { + "highway": "residential", + "incline": "up", + "name": "West 140th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1051266490, + "bounds": { + "minlat": 40.8230592, + "minlon": -73.9530623, + "maxlat": 40.8233117, + "maxlon": -73.9528694 + }, + "nodes": [ + 42428917, + 10170641709, + 9660687202 + ], + "geometry": [ + { "lat": 40.8233117, "lon": -73.9528694 }, + { "lat": 40.8232586, "lon": -73.9529100 }, + { "lat": 40.8230592, "lon": -73.9530623 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051266491, + "bounds": { + "minlat": 40.8219884, + "minlon": -73.9537903, + "maxlat": 40.8220717, + "maxlon": -73.9535995 + }, + "nodes": [ + 561035354, + 42428913 + ], + "geometry": [ + { "lat": 40.8219884, "lon": -73.9535995 }, + { "lat": 40.8220717, "lon": -73.9537903 } + ], + "tags": { + "highway": "residential", + "name": "West 138th Street", + "name_1": "West 138 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1051266492, + "bounds": { + "minlat": 40.8214361, + "minlon": -73.9542488, + "maxlat": 40.8218414, + "maxlon": -73.9539564 + }, + "nodes": [ + 9660687204, + 10177688694, + 42428912 + ], + "geometry": [ + { "lat": 40.8218414, "lon": -73.9539564 }, + { "lat": 40.8214996, "lon": -73.9542029 }, + { "lat": 40.8214361, "lon": -73.9542488 } + ], + "tags": { + "cycleway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051266493, + "bounds": { + "minlat": 40.8220717, + "minlon": -73.9537903, + "maxlat": 40.8223836, + "maxlon": -73.9535578 + }, + "nodes": [ + 9660687203, + 10168100451, + 42428913 + ], + "geometry": [ + { "lat": 40.8223836, "lon": -73.9535578 }, + { "lat": 40.8221368, "lon": -73.9537417 }, + { "lat": 40.8220717, "lon": -73.9537903 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051266494, + "bounds": { + "minlat": 40.8218414, + "minlon": -73.9539564, + "maxlat": 40.8220717, + "maxlon": -73.9537903 + }, + "nodes": [ + 42428913, + 10168100458, + 9660687204 + ], + "geometry": [ + { "lat": 40.8220717, "lon": -73.9537903 }, + { "lat": 40.8220077, "lon": -73.9538363 }, + { "lat": 40.8218414, "lon": -73.9539564 } + ], + "tags": { + "cycleway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051283454, + "bounds": { + "minlat": 40.8071751, + "minlon": -73.9909135, + "maxlat": 40.8075930, + "maxlon": -73.9905352 + }, + "nodes": [ + 4215808373, + 4215808371, + 6888063814, + 8835728605 + ], + "geometry": [ + { "lat": 40.8075930, "lon": -73.9905352 }, + { "lat": 40.8074844, "lon": -73.9906653 }, + { "lat": 40.8072336, "lon": -73.9908669 }, + { "lat": 40.8071751, "lon": -73.9909135 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1051460602, + "bounds": { + "minlat": 40.7531860, + "minlon": -73.9095975, + "maxlat": 40.7532043, + "maxlon": -73.9094323 + }, + "nodes": [ + 9662522085, + 9662522086 + ], + "geometry": [ + { "lat": 40.7531860, "lon": -73.9095975 }, + { "lat": 40.7532043, "lon": -73.9094323 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1051460603, + "bounds": { + "minlat": 40.7532208, + "minlon": -73.9096032, + "maxlat": 40.7532377, + "maxlon": -73.9094382 + }, + "nodes": [ + 9662522083, + 9662522084 + ], + "geometry": [ + { "lat": 40.7532208, "lon": -73.9096032 }, + { "lat": 40.7532377, "lon": -73.9094382 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1051460604, + "bounds": { + "minlat": 40.7530362, + "minlon": -73.9093894, + "maxlat": 40.7532277, + "maxlon": -73.9093472 + }, + "nodes": [ + 9662522081, + 9662522088, + 9662522082 + ], + "geometry": [ + { "lat": 40.7532277, "lon": -73.9093894 }, + { "lat": 40.7531573, "lon": -73.9093739 }, + { "lat": 40.7530362, "lon": -73.9093472 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1051460605, + "bounds": { + "minlat": 40.7531937, + "minlon": -73.9096818, + "maxlat": 40.7532208, + "maxlon": -73.9096032 + }, + "nodes": [ + 9662522076, + 9662522079, + 9662522083 + ], + "geometry": [ + { "lat": 40.7531937, "lon": -73.9096818 }, + { "lat": 40.7532137, "lon": -73.9096719 }, + { "lat": 40.7532208, "lon": -73.9096032 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1051460606, + "bounds": { + "minlat": 40.7532277, + "minlon": -73.9094382, + "maxlat": 40.7532405, + "maxlon": -73.9093894 + }, + "nodes": [ + 9662522084, + 9662522080, + 9662522081 + ], + "geometry": [ + { "lat": 40.7532377, "lon": -73.9094382 }, + { "lat": 40.7532405, "lon": -73.9094131 }, + { "lat": 40.7532277, "lon": -73.9093894 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1051460607, + "bounds": { + "minlat": 40.7531786, + "minlon": -73.9097965, + "maxlat": 40.7531937, + "maxlon": -73.9095975 + }, + "nodes": [ + 7661187837, + 9662522076, + 9662522077, + 9662522085 + ], + "geometry": [ + { "lat": 40.7531850, "lon": -73.9097965 }, + { "lat": 40.7531937, "lon": -73.9096818 }, + { "lat": 40.7531786, "lon": -73.9096627 }, + { "lat": 40.7531860, "lon": -73.9095975 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1051460608, + "bounds": { + "minlat": 40.7532043, + "minlon": -73.9094323, + "maxlat": 40.7532078, + "maxlon": -73.9094044 + }, + "nodes": [ + 9662522086, + 9662522078 + ], + "geometry": [ + { "lat": 40.7532043, "lon": -73.9094323 }, + { "lat": 40.7532078, "lon": -73.9094044 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1051460609, + "bounds": { + "minlat": 40.7529918, + "minlon": -73.9097965, + "maxlat": 40.7531850, + "maxlon": -73.9097693 + }, + "nodes": [ + 7661187837, + 9662522087, + 7762260246 + ], + "geometry": [ + { "lat": 40.7531850, "lon": -73.9097965 }, + { "lat": 40.7531189, "lon": -73.9097872 }, + { "lat": 40.7529918, "lon": -73.9097693 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1051460610, + "bounds": { + "minlat": 40.7532078, + "minlon": -73.9094044, + "maxlat": 40.7532277, + "maxlon": -73.9093894 + }, + "nodes": [ + 9662522078, + 9662522081 + ], + "geometry": [ + { "lat": 40.7532078, "lon": -73.9094044 }, + { "lat": 40.7532277, "lon": -73.9093894 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1051520235, + "bounds": { + "minlat": 40.7103565, + "minlon": -73.9591583, + "maxlat": 40.7104314, + "maxlon": -73.9589528 + }, + "nodes": [ + 9663197933, + 9663197934, + 9663197935, + 9663197936, + 9957055529, + 9663197937, + 9663197968, + 9663197938, + 11090749540, + 9663197939, + 9663197940, + 9663197932, + 9663197941, + 9663197933 + ], + "geometry": [ + { "lat": 40.7104314, "lon": -73.9591429 }, + { "lat": 40.7104153, "lon": -73.9590590 }, + { "lat": 40.7104028, "lon": -73.9590038 }, + { "lat": 40.7103867, "lon": -73.9589709 }, + { "lat": 40.7103778, "lon": -73.9589639 }, + { "lat": 40.7103637, "lon": -73.9589528 }, + { "lat": 40.7103623, "lon": -73.9589719 }, + { "lat": 40.7103565, "lon": -73.9590510 }, + { "lat": 40.7103652, "lon": -73.9590790 }, + { "lat": 40.7103899, "lon": -73.9591583 }, + { "lat": 40.7104000, "lon": -73.9591456 }, + { "lat": 40.7104176, "lon": -73.9591347 }, + { "lat": 40.7104225, "lon": -73.9591381 }, + { "lat": 40.7104314, "lon": -73.9591429 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1051520236, + "bounds": { + "minlat": 40.7096476, + "minlon": -73.9592243, + "maxlat": 40.7103001, + "maxlon": -73.9586789 + }, + "nodes": [ + 9663197942, + 9663197943, + 9663197944, + 9663197945, + 9663197946, + 9663197947, + 10605121720, + 9663197948, + 9663197949, + 11133278763, + 9663197950, + 9663197951, + 9663197952, + 9663197953, + 9663197954, + 9663197955, + 9663197956, + 9663197989, + 9663197957, + 9663197958, + 9663197959, + 9663197960, + 9663197961, + 9663197962, + 9663197963, + 11133277189, + 9663197964, + 9768177716, + 9663197966, + 9663197965, + 9663197994, + 9663197967, + 9663197942 + ], + "geometry": [ + { "lat": 40.7102858, "lon": -73.9589449 }, + { "lat": 40.7101203, "lon": -73.9589095 }, + { "lat": 40.7100787, "lon": -73.9589449 }, + { "lat": 40.7100907, "lon": -73.9590437 }, + { "lat": 40.7100695, "lon": -73.9592243 }, + { "lat": 40.7100196, "lon": -73.9591759 }, + { "lat": 40.7100102, "lon": -73.9591504 }, + { "lat": 40.7099745, "lon": -73.9590532 }, + { "lat": 40.7100014, "lon": -73.9589980 }, + { "lat": 40.7099909, "lon": -73.9589483 }, + { "lat": 40.7099906, "lon": -73.9589470 }, + { "lat": 40.7099624, "lon": -73.9589305 }, + { "lat": 40.7098718, "lon": -73.9589305 }, + { "lat": 40.7097986, "lon": -73.9589491 }, + { "lat": 40.7097145, "lon": -73.9589884 }, + { "lat": 40.7096670, "lon": -73.9590219 }, + { "lat": 40.7096480, "lon": -73.9589523 }, + { "lat": 40.7096476, "lon": -73.9589420 }, + { "lat": 40.7096482, "lon": -73.9589241 }, + { "lat": 40.7096533, "lon": -73.9589027 }, + { "lat": 40.7096641, "lon": -73.9588881 }, + { "lat": 40.7096819, "lon": -73.9588753 }, + { "lat": 40.7098590, "lon": -73.9587654 }, + { "lat": 40.7099813, "lon": -73.9586932 }, + { "lat": 40.7100570, "lon": -73.9586789 }, + { "lat": 40.7100965, "lon": -73.9586856 }, + { "lat": 40.7101286, "lon": -73.9586911 }, + { "lat": 40.7101402, "lon": -73.9586994 }, + { "lat": 40.7102233, "lon": -73.9587589 }, + { "lat": 40.7103001, "lon": -73.9588328 }, + { "lat": 40.7102939, "lon": -73.9588818 }, + { "lat": 40.7102891, "lon": -73.9589196 }, + { "lat": 40.7102858, "lon": -73.9589449 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1051520238, + "bounds": { + "minlat": 40.7089611, + "minlon": -73.9593871, + "maxlat": 40.7095530, + "maxlon": -73.9589223 + }, + "nodes": [ + 9663197970, + 9663197987, + 9663197971, + 9663197972, + 9663197973, + 9663197974, + 9663197975, + 9663197976, + 10689789904, + 9663197977, + 9779538359, + 9663197978, + 9779538355, + 9663197979, + 9663197980, + 9663197981, + 9663197982, + 9663197983, + 9663197984, + 9663197985, + 9663197988, + 9663197986, + 9663197970 + ], + "geometry": [ + { "lat": 40.7095487, "lon": -73.9590138 }, + { "lat": 40.7095228, "lon": -73.9590773 }, + { "lat": 40.7094939, "lon": -73.9591408 }, + { "lat": 40.7094352, "lon": -73.9592159 }, + { "lat": 40.7093747, "lon": -73.9592579 }, + { "lat": 40.7093032, "lon": -73.9592829 }, + { "lat": 40.7092110, "lon": -73.9593039 }, + { "lat": 40.7091126, "lon": -73.9593256 }, + { "lat": 40.7090286, "lon": -73.9593727 }, + { "lat": 40.7090029, "lon": -73.9593871 }, + { "lat": 40.7089678, "lon": -73.9592936 }, + { "lat": 40.7089611, "lon": -73.9592762 }, + { "lat": 40.7089772, "lon": -73.9592661 }, + { "lat": 40.7089952, "lon": -73.9592544 }, + { "lat": 40.7095126, "lon": -73.9589267 }, + { "lat": 40.7095240, "lon": -73.9589228 }, + { "lat": 40.7095324, "lon": -73.9589223 }, + { "lat": 40.7095380, "lon": -73.9589296 }, + { "lat": 40.7095460, "lon": -73.9589528 }, + { "lat": 40.7095512, "lon": -73.9589741 }, + { "lat": 40.7095520, "lon": -73.9589824 }, + { "lat": 40.7095530, "lon": -73.9589930 }, + { "lat": 40.7095487, "lon": -73.9590138 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1051525736, + "bounds": { + "minlat": 40.8306616, + "minlon": -73.9474931, + "maxlat": 40.8308954, + "maxlon": -73.9473375 + }, + "nodes": [ + 42428951, + 11191773454, + 9663165813 + ], + "geometry": [ + { "lat": 40.8308954, "lon": -73.9473375 }, + { "lat": 40.8308311, "lon": -73.9473803 }, + { "lat": 40.8306616, "lon": -73.9474931 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051525737, + "bounds": { + "minlat": 40.8277777, + "minlon": -73.9496148, + "maxlat": 40.8306616, + "maxlon": -73.9474931 + }, + "nodes": [ + 9663165813, + 11218866102, + 42428947, + 11218866103, + 11218866108, + 42428944, + 11218866109, + 11218890528, + 42428941, + 11218890527, + 11193743245, + 42428939, + 11193743248, + 11193722997, + 42428936 + ], + "geometry": [ + { "lat": 40.8306616, "lon": -73.9474931 }, + { "lat": 40.8303223, "lon": -73.9477427 }, + { "lat": 40.8302605, "lon": -73.9477882 }, + { "lat": 40.8302133, "lon": -73.9478229 }, + { "lat": 40.8296995, "lon": -73.9482009 }, + { "lat": 40.8296454, "lon": -73.9482407 }, + { "lat": 40.8295873, "lon": -73.9482834 }, + { "lat": 40.8290849, "lon": -73.9486531 }, + { "lat": 40.8290276, "lon": -73.9486953 }, + { "lat": 40.8289712, "lon": -73.9487377 }, + { "lat": 40.8284589, "lon": -73.9491136 }, + { "lat": 40.8284002, "lon": -73.9491568 }, + { "lat": 40.8283543, "lon": -73.9491906 }, + { "lat": 40.8278375, "lon": -73.9495708 }, + { "lat": 40.8277777, "lon": -73.9496148 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051525738, + "bounds": { + "minlat": 40.8277777, + "minlon": -73.9509088, + "maxlat": 40.8283175, + "maxlon": -73.9496148 + }, + "nodes": [ + 42428936, + 11193722999, + 11193743251, + 12952282872, + 42441956 + ], + "geometry": [ + { "lat": 40.8277777, "lon": -73.9496148 }, + { "lat": 40.8278105, "lon": -73.9496934 }, + { "lat": 40.8282447, "lon": -73.9507349 }, + { "lat": 40.8282812, "lon": -73.9508221 }, + { "lat": 40.8283175, "lon": -73.9509088 } + ], + "tags": { + "highway": "residential", + "name": "West 147th Street", + "name_1": "West 147 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "147th", + "tiger:name_base_1": "147", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1051525739, + "bounds": { + "minlat": 40.8274984, + "minlon": -73.9498149, + "maxlat": 40.8277777, + "maxlon": -73.9496148 + }, + "nodes": [ + 42428936, + 11193723005, + 9663165814 + ], + "geometry": [ + { "lat": 40.8277777, "lon": -73.9496148 }, + { "lat": 40.8277218, "lon": -73.9496547 }, + { "lat": 40.8274984, "lon": -73.9498149 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051525740, + "bounds": { + "minlat": 40.8271527, + "minlon": -73.9500743, + "maxlat": 40.8274984, + "maxlon": -73.9498149 + }, + "nodes": [ + 9663165814, + 11193723020, + 42428934 + ], + "geometry": [ + { "lat": 40.8274984, "lon": -73.9498149 }, + { "lat": 40.8272176, "lon": -73.9500256 }, + { "lat": 40.8271527, "lon": -73.9500743 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051525741, + "bounds": { + "minlat": 40.8271527, + "minlon": -73.9513637, + "maxlat": 40.8276981, + "maxlon": -73.9500743 + }, + "nodes": [ + 42441955, + 12952282867, + 11193743266, + 11193723021, + 42428934 + ], + "geometry": [ + { "lat": 40.8276981, "lon": -73.9513637 }, + { "lat": 40.8276590, "lon": -73.9512742 }, + { "lat": 40.8276279, "lon": -73.9512030 }, + { "lat": 40.8271880, "lon": -73.9501579 }, + { "lat": 40.8271527, "lon": -73.9500743 } + ], + "tags": { + "highway": "residential", + "name": "West 146th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "146th", + "tiger:name_base_1": "146", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1051525742, + "bounds": { + "minlat": 40.8264888, + "minlon": -73.9505640, + "maxlat": 40.8271527, + "maxlon": -73.9500743 + }, + "nodes": [ + 42428934, + 11193723013, + 9703359672, + 42428931 + ], + "geometry": [ + { "lat": 40.8271527, "lon": -73.9500743 }, + { "lat": 40.8271061, "lon": -73.9501085 }, + { "lat": 40.8265877, "lon": -73.9504902 }, + { "lat": 40.8264888, "lon": -73.9505640 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "turn:lanes": "left||", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051550982, + "bounds": { + "minlat": 40.7297250, + "minlon": -73.9808580, + "maxlat": 40.7304142, + "maxlon": -73.9803596 + }, + "nodes": [ + 42436944, + 8309479554, + 4298781041, + 42439006 + ], + "geometry": [ + { "lat": 40.7297250, "lon": -73.9808580 }, + { "lat": 40.7297864, "lon": -73.9808142 }, + { "lat": 40.7303341, "lon": -73.9804132 }, + { "lat": 40.7304142, "lon": -73.9803596 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Avenue A", + "name:ru": "Авеню A", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790552", + "wikipedia": "en:Avenue A (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051554486, + "bounds": { + "minlat": 40.7109437, + "minlon": -73.9919892, + "maxlat": 40.7110581, + "maxlon": -73.9910093 + }, + "nodes": [ + 9663511457, + 8288820796, + 11133638262, + 7480515814, + 7787627737, + 42437481 + ], + "geometry": [ + { "lat": 40.7110581, "lon": -73.9910093 }, + { "lat": 40.7110405, "lon": -73.9911657 }, + { "lat": 40.7110277, "lon": -73.9912698 }, + { "lat": 40.7110131, "lon": -73.9913892 }, + { "lat": 40.7109537, "lon": -73.9918916 }, + { "lat": 40.7109437, "lon": -73.9919892 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Cherry Street", + "name:ko": "체리 스트리트", + "name:ru": "Черри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|right", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051734605, + "bounds": { + "minlat": 40.7559045, + "minlon": -73.9949636, + "maxlat": 40.7561004, + "maxlon": -73.9944753 + }, + "nodes": [ + 427842142, + 12899504187, + 8288270386, + 42433625 + ], + "geometry": [ + { "lat": 40.7561004, "lon": -73.9949636 }, + { "lat": 40.7560918, "lon": -73.9949433 }, + { "lat": 40.7559556, "lon": -73.9946203 }, + { "lat": 40.7559045, "lon": -73.9944753 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1051734606, + "bounds": { + "minlat": 40.7554715, + "minlon": -73.9947995, + "maxlat": 40.7559045, + "maxlon": -73.9944753 + }, + "nodes": [ + 42433625, + 8288270385, + 4207913309 + ], + "geometry": [ + { "lat": 40.7559045, "lon": -73.9944753 }, + { "lat": 40.7558555, "lon": -73.9945134 }, + { "lat": 40.7554715, "lon": -73.9947995 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051734607, + "bounds": { + "minlat": 40.7547070, + "minlon": -73.9921117, + "maxlat": 40.7549099, + "maxlon": -73.9916330 + }, + "nodes": [ + 9664959634, + 10168381338, + 6211484430, + 42433620 + ], + "geometry": [ + { "lat": 40.7549099, "lon": -73.9921117 }, + { "lat": 40.7547656, "lon": -73.9917708 }, + { "lat": 40.7547558, "lon": -73.9917480 }, + { "lat": 40.7547070, "lon": -73.9916330 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "3", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|through|through" + } +}, +{ + "type": "way", + "id": 1051743127, + "bounds": { + "minlat": 40.7572359, + "minlon": -73.9765587, + "maxlat": 40.7574489, + "maxlon": -73.9760484 + }, + "nodes": [ + 42438881, + 7788529730, + 4782506035, + 4737669349 + ], + "geometry": [ + { "lat": 40.7572359, "lon": -73.9760484 }, + { "lat": 40.7572829, "lon": -73.9761612 }, + { "lat": 40.7573431, "lon": -73.9763052 }, + { "lat": 40.7574489, "lon": -73.9765587 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1051744070, + "bounds": { + "minlat": 40.7573902, + "minlon": -73.9827028, + "maxlat": 40.7575793, + "maxlon": -73.9822537 + }, + "nodes": [ + 8318633104, + 3944708058, + 42430347 + ], + "geometry": [ + { "lat": 40.7575793, "lon": -73.9827028 }, + { "lat": 40.7574479, "lon": -73.9823908 }, + { "lat": 40.7573902, "lon": -73.9822537 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "parking:lane:left": "no", + "parking:lane:right": "parallel", + "parking:lane:right:parallel": "painted_area_only", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1051744778, + "bounds": { + "minlat": 40.7602164, + "minlon": -73.9912267, + "maxlat": 40.7603553, + "maxlon": -73.9908914 + }, + "nodes": [ + 9665064785, + 10168047576, + 42432703 + ], + "geometry": [ + { "lat": 40.7602164, "lon": -73.9908914 }, + { "lat": 40.7603005, "lon": -73.9910909 }, + { "lat": 40.7603553, "lon": -73.9912267 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1051745205, + "bounds": { + "minlat": 40.7602667, + "minlon": -73.9837062, + "maxlat": 40.7604633, + "maxlon": -73.9832392 + }, + "nodes": [ + 9665064838, + 4782363332, + 42432585 + ], + "geometry": [ + { "lat": 40.7602667, "lon": -73.9832392 }, + { "lat": 40.7604205, "lon": -73.9836047 }, + { "lat": 40.7604633, "lon": -73.9837062 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "name": "West 49th Street", + "name:ru": "Западная 49-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|" + } +}, +{ + "type": "way", + "id": 1051747577, + "bounds": { + "minlat": 40.8286859, + "minlon": -73.9116018, + "maxlat": 40.8288733, + "maxlon": -73.9115553 + }, + "nodes": [ + 9665096119, + 42764695 + ], + "geometry": [ + { "lat": 40.8286859, "lon": -73.9116018 }, + { "lat": 40.8288733, "lon": -73.9115553 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "name": "Webster Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:zip_left": "10467", + "tiger:zip_right": "10470", + "turn:lanes": "left||", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 1051750425, + "bounds": { + "minlat": 40.7504574, + "minlon": -73.9877857, + "maxlat": 40.7506820, + "maxlon": -73.9872874 + }, + "nodes": [ + 42430308, + 6224277860, + 6224277873, + 42428253 + ], + "geometry": [ + { "lat": 40.7504574, "lon": -73.9872874 }, + { "lat": 40.7505092, "lon": -73.9874078 }, + { "lat": 40.7506157, "lon": -73.9876638 }, + { "lat": 40.7506820, "lon": -73.9877857 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "name": "West 35th Street", + "name:ru": "Западная 35-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1051750426, + "bounds": { + "minlat": 40.7506820, + "minlon": -73.9901341, + "maxlat": 40.7516588, + "maxlon": -73.9877857 + }, + "nodes": [ + 42428253, + 6224278786, + 10169532546, + 42439952 + ], + "geometry": [ + { "lat": 40.7506820, "lon": -73.9877857 }, + { "lat": 40.7507232, "lon": -73.9879154 }, + { "lat": 40.7516081, "lon": -73.9900137 }, + { "lat": 40.7516588, "lon": -73.9901341 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "West 35th Street", + "name:ru": "Западная 35-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1051750427, + "bounds": { + "minlat": 40.7510092, + "minlon": -73.9906121, + "maxlat": 40.7516588, + "maxlon": -73.9901341 + }, + "nodes": [ + 42439952, + 9945692441, + 9698661091, + 42437654 + ], + "geometry": [ + { "lat": 40.7516588, "lon": -73.9901341 }, + { "lat": 40.7516039, "lon": -73.9901745 }, + { "lat": 40.7510939, "lon": -73.9905497 }, + { "lat": 40.7510092, "lon": -73.9906121 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1051750428, + "bounds": { + "minlat": 40.7526646, + "minlon": -73.9929759, + "maxlat": 40.7528582, + "maxlon": -73.9925170 + }, + "nodes": [ + 9665062199, + 8660596949, + 42435645 + ], + "geometry": [ + { "lat": 40.7526646, "lon": -73.9925170 }, + { "lat": 40.7528008, "lon": -73.9928397 }, + { "lat": 40.7528582, "lon": -73.9929759 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "West 35th Street", + "name:ru": "Западная 35-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1051751160, + "bounds": { + "minlat": 40.7523790, + "minlon": -73.9726040, + "maxlat": 40.7533320, + "maxlon": -73.9703410 + }, + "nodes": [ + 42434087, + 10125260527, + 5319124079, + 10168666985, + 42434090 + ], + "geometry": [ + { "lat": 40.7533320, "lon": -73.9726040 }, + { "lat": 40.7532698, "lon": -73.9724563 }, + { "lat": 40.7529577, "lon": -73.9717151 }, + { "lat": 40.7524389, "lon": -73.9704832 }, + { "lat": 40.7523790, "lon": -73.9703410 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "East 46th Street", + "name:ru": "Восточная 46-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9.2" + } +}, +{ + "type": "way", + "id": 1051760021, + "bounds": { + "minlat": 40.8426584, + "minlon": -73.9385669, + "maxlat": 40.8429055, + "maxlon": -73.9384302 + }, + "nodes": [ + 9665234542, + 7604384234, + 42433043 + ], + "geometry": [ + { "lat": 40.8426584, "lon": -73.9385669 }, + { "lat": 40.8428509, "lon": -73.9384604 }, + { "lat": 40.8429055, "lon": -73.9384302 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1051760022, + "bounds": { + "minlat": 40.8425704, + "minlon": -73.9386276, + "maxlat": 40.8426584, + "maxlon": -73.9385669 + }, + "nodes": [ + 2499757466, + 9665234542 + ], + "geometry": [ + { "lat": 40.8425704, "lon": -73.9386276 }, + { "lat": 40.8426584, "lon": -73.9385669 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1051841852, + "bounds": { + "minlat": 40.7432748, + "minlon": -73.9820126, + "maxlat": 40.7438891, + "maxlon": -73.9815652 + }, + "nodes": [ + 8482948064, + 8133342853, + 12181379221, + 3997461348, + 42436751 + ], + "geometry": [ + { "lat": 40.7438891, "lon": -73.9815652 }, + { "lat": 40.7438297, "lon": -73.9816082 }, + { "lat": 40.7433700, "lon": -73.9819445 }, + { "lat": 40.7433252, "lon": -73.9819763 }, + { "lat": 40.7432748, "lon": -73.9820126 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|none", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1051841854, + "bounds": { + "minlat": 40.7426527, + "minlon": -73.9824654, + "maxlat": 40.7432748, + "maxlon": -73.9820126 + }, + "nodes": [ + 42436751, + 3997461347, + 12181379219, + 11308882993, + 42446270 + ], + "geometry": [ + { "lat": 40.7432748, "lon": -73.9820126 }, + { "lat": 40.7432190, "lon": -73.9820539 }, + { "lat": 40.7427567, "lon": -73.9823898 }, + { "lat": 40.7427064, "lon": -73.9824276 }, + { "lat": 40.7426527, "lon": -73.9824654 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1051841855, + "bounds": { + "minlat": 40.7404187, + "minlon": -73.9824519, + "maxlat": 40.7418438, + "maxlon": -73.9790880 + }, + "nodes": [ + 42442895, + 7640871332, + 13808086033, + 12183286752, + 4234425028, + 42449918, + 4234425044, + 42454333, + 12181379215 + ], + "geometry": [ + { "lat": 40.7404187, "lon": -73.9790880 }, + { "lat": 40.7404704, "lon": -73.9792056 }, + { "lat": 40.7407067, "lon": -73.9797659 }, + { "lat": 40.7412790, "lon": -73.9811230 }, + { "lat": 40.7413013, "lon": -73.9811752 }, + { "lat": 40.7413630, "lon": -73.9813211 }, + { "lat": 40.7414184, "lon": -73.9814507 }, + { "lat": 40.7415765, "lon": -73.9818234 }, + { "lat": 40.7418438, "lon": -73.9824519 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 27th Street", + "name:ru": "Восточная 27-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1051841856, + "bounds": { + "minlat": 40.7420359, + "minlon": -73.9829129, + "maxlat": 40.7426527, + "maxlon": -73.9824654 + }, + "nodes": [ + 42446270, + 11308882994, + 12181379217, + 10167162575, + 42446932 + ], + "geometry": [ + { "lat": 40.7426527, "lon": -73.9824654 }, + { "lat": 40.7425928, "lon": -73.9825096 }, + { "lat": 40.7421367, "lon": -73.9828376 }, + { "lat": 40.7420899, "lon": -73.9828726 }, + { "lat": 40.7420359, "lon": -73.9829129 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|none", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1051841857, + "bounds": { + "minlat": 40.7414165, + "minlon": -73.9833669, + "maxlat": 40.7420359, + "maxlon": -73.9829129 + }, + "nodes": [ + 42446932, + 3997461342, + 12181379213, + 3997461341, + 42429890 + ], + "geometry": [ + { "lat": 40.7420359, "lon": -73.9829129 }, + { "lat": 40.7419762, "lon": -73.9829576 }, + { "lat": 40.7415208, "lon": -73.9832903 }, + { "lat": 40.7414758, "lon": -73.9833241 }, + { "lat": 40.7414165, "lon": -73.9833669 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1051841858, + "bounds": { + "minlat": 40.7414165, + "minlon": -73.9849181, + "maxlat": 40.7420713, + "maxlon": -73.9833669 + }, + "nodes": [ + 42429888, + 10166167572, + 12181379214, + 4234425050, + 42429890 + ], + "geometry": [ + { "lat": 40.7420713, "lon": -73.9849181 }, + { "lat": 40.7420411, "lon": -73.9848451 }, + { "lat": 40.7414658, "lon": -73.9834952 }, + { "lat": 40.7414570, "lon": -73.9834744 }, + { "lat": 40.7414165, "lon": -73.9833669 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 26th Street", + "name:ru": "Восточная 26-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1051846230, + "bounds": { + "minlat": 40.7547828, + "minlon": -73.9804576, + "maxlat": 40.7550013, + "maxlon": -73.9799429 + }, + "nodes": [ + 9666047678, + 3942050708, + 42443556 + ], + "geometry": [ + { "lat": 40.7550013, "lon": -73.9804576 }, + { "lat": 40.7548363, "lon": -73.9800657 }, + { "lat": 40.7547828, "lon": -73.9799429 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1051856442, + "bounds": { + "minlat": 40.7353308, + "minlon": -73.9796601, + "maxlat": 40.7354060, + "maxlon": -73.9796043 + }, + "nodes": [ + 3601295731, + 9470272145 + ], + "geometry": [ + { "lat": 40.7353308, "lon": -73.9796601 }, + { "lat": 40.7354060, "lon": -73.9796043 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1051858090, + "bounds": { + "minlat": 40.7210819, + "minlon": -73.9982238, + "maxlat": 40.7215953, + "maxlon": -73.9977932 + }, + "nodes": [ + 42430044, + 5152337874, + 12187436348, + 8231927648, + 42432165 + ], + "geometry": [ + { "lat": 40.7215953, "lon": -73.9977932 }, + { "lat": 40.7215305, "lon": -73.9978505 }, + { "lat": 40.7211938, "lon": -73.9981379 }, + { "lat": 40.7211514, "lon": -73.9981735 }, + { "lat": 40.7210819, "lon": -73.9982238 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right|right", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 1051974107, + "bounds": { + "minlat": 40.8269346, + "minlon": -73.9804390, + "maxlat": 40.8277928, + "maxlon": -73.9799884 + }, + "nodes": [ + 8971240694, + 5691967850, + 8374501211, + 5691967843, + 7533716644, + 6964853596, + 103226490, + 103163896, + 103226488, + 103226487, + 103226486, + 103226484 + ], + "geometry": [ + { "lat": 40.8277928, "lon": -73.9804390 }, + { "lat": 40.8275698, "lon": -73.9803993 }, + { "lat": 40.8274548, "lon": -73.9803788 }, + { "lat": 40.8273823, "lon": -73.9803659 }, + { "lat": 40.8273382, "lon": -73.9803590 }, + { "lat": 40.8270704, "lon": -73.9803168 }, + { "lat": 40.8270510, "lon": -73.9803137 }, + { "lat": 40.8270150, "lon": -73.9802830 }, + { "lat": 40.8270068, "lon": -73.9802416 }, + { "lat": 40.8269915, "lon": -73.9801795 }, + { "lat": 40.8269664, "lon": -73.9800883 }, + { "lat": 40.8269346, "lon": -73.9799884 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Winston Drive", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Winston", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1051974108, + "bounds": { + "minlat": 40.8284703, + "minlon": -73.9805989, + "maxlat": 40.8286158, + "maxlon": -73.9805185 + }, + "nodes": [ + 7533932722, + 103226492 + ], + "geometry": [ + { "lat": 40.8286158, "lon": -73.9805185 }, + { "lat": 40.8284703, "lon": -73.9805989 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "3", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "turn:lanes": "left||", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1051974109, + "bounds": { + "minlat": 40.8271172, + "minlon": -73.9813078, + "maxlat": 40.8281893, + "maxlon": -73.9807549 + }, + "nodes": [ + 7538747878, + 6964853592, + 6964853598, + 6964853599, + 1854444492 + ], + "geometry": [ + { "lat": 40.8281893, "lon": -73.9807549 }, + { "lat": 40.8278313, "lon": -73.9809537 }, + { "lat": 40.8276757, "lon": -73.9810401 }, + { "lat": 40.8272421, "lon": -73.9812891 }, + { "lat": 40.8271172, "lon": -73.9813078 } + ], + "tags": { + "cycleway:right": "no", + "highway": "secondary", + "lanes": "2", + "name": "Palisade Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1051974110, + "bounds": { + "minlat": 40.8279956, + "minlon": -73.9805047, + "maxlat": 40.8283630, + "maxlon": -73.9804380 + }, + "nodes": [ + 5691967821, + 9667259756, + 9667259755, + 5340819448 + ], + "geometry": [ + { "lat": 40.8279956, "lon": -73.9804801 }, + { "lat": 40.8280453, "lon": -73.9804380 }, + { "lat": 40.8282037, "lon": -73.9804563 }, + { "lat": 40.8283630, "lon": -73.9805047 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Winston Drive", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Winston", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1052613965, + "bounds": { + "minlat": 40.7533011, + "minlon": -73.9775045, + "maxlat": 40.7533682, + "maxlon": -73.9773447 + }, + "nodes": [ + 9673654626, + 9673654627 + ], + "geometry": [ + { "lat": 40.7533682, "lon": -73.9775045 }, + { "lat": 40.7533011, "lon": -73.9773447 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1052613966, + "bounds": { + "minlat": 40.7528922, + "minlon": -73.9765311, + "maxlat": 40.7529509, + "maxlon": -73.9763926 + }, + "nodes": [ + 9673654628, + 9673654629 + ], + "geometry": [ + { "lat": 40.7529509, "lon": -73.9765311 }, + { "lat": 40.7528922, "lon": -73.9763926 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1052627487, + "bounds": { + "minlat": 40.7264090, + "minlon": -73.9861760, + "maxlat": 40.7267291, + "maxlon": -73.9859422 + }, + "nodes": [ + 42444827, + 7977873292, + 8841425139 + ], + "geometry": [ + { "lat": 40.7264090, "lon": -73.9861760 }, + { "lat": 40.7264645, "lon": -73.9861355 }, + { "lat": 40.7267291, "lon": -73.9859422 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1052631409, + "bounds": { + "minlat": 40.7647032, + "minlon": -73.9725564, + "maxlat": 40.7649193, + "maxlon": -73.9720675 + }, + "nodes": [ + 8254176965, + 4347534784, + 4347534783 + ], + "geometry": [ + { "lat": 40.7647032, "lon": -73.9720675 }, + { "lat": 40.7648615, "lon": -73.9724350 }, + { "lat": 40.7649193, "lon": -73.9725564 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1052660934, + "bounds": { + "minlat": 40.7704036, + "minlon": -73.9875948, + "maxlat": 40.7709002, + "maxlon": -73.9872331 + }, + "nodes": [ + 42440935, + 9441141804, + 13207939304, + 9674081996 + ], + "geometry": [ + { "lat": 40.7704036, "lon": -73.9875948 }, + { "lat": 40.7704750, "lon": -73.9875428 }, + { "lat": 40.7706453, "lon": -73.9874188 }, + { "lat": 40.7709002, "lon": -73.9872331 } + ], + "tags": { + "change": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1052660935, + "bounds": { + "minlat": 40.7709002, + "minlon": -73.9872331, + "maxlat": 40.7710474, + "maxlon": -73.9871245 + }, + "nodes": [ + 9674081996, + 7341373899, + 1241742743 + ], + "geometry": [ + { "lat": 40.7709002, "lon": -73.9872331 }, + { "lat": 40.7709770, "lon": -73.9871758 }, + { "lat": 40.7710474, "lon": -73.9871245 } + ], + "tags": { + "change": "no", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1052660936, + "bounds": { + "minlat": 40.7708566, + "minlon": -73.9871245, + "maxlat": 40.7710474, + "maxlon": -73.9866271 + }, + "nodes": [ + 7382801856, + 6452665612, + 7341373900, + 1241742743 + ], + "geometry": [ + { "lat": 40.7708566, "lon": -73.9866271 }, + { "lat": 40.7708842, "lon": -73.9866954 }, + { "lat": 40.7710128, "lon": -73.9870094 }, + { "lat": 40.7710474, "lon": -73.9871245 } + ], + "tags": { + "change": "no", + "highway": "tertiary", + "lane_markings": "yes", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 60th Street", + "name:ru": "Западная 60-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1052660937, + "bounds": { + "minlat": 40.7722805, + "minlon": -73.9862242, + "maxlat": 40.7729216, + "maxlon": -73.9857560 + }, + "nodes": [ + 7050687060, + 7050687058, + 13207939305, + 12852256584, + 12852256581, + 7050687076 + ], + "geometry": [ + { "lat": 40.7722805, "lon": -73.9862242 }, + { "lat": 40.7723679, "lon": -73.9861603 }, + { "lat": 40.7726929, "lon": -73.9859228 }, + { "lat": 40.7727979, "lon": -73.9858460 }, + { "lat": 40.7728617, "lon": -73.9857995 }, + { "lat": 40.7729216, "lon": -73.9857560 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1052686445, + "bounds": { + "minlat": 40.7096669, + "minlon": -74.0116583, + "maxlat": 40.7098636, + "maxlon": -74.0115309 + }, + "nodes": [ + 42422038, + 8262936614, + 10288802579, + 9674242346 + ], + "geometry": [ + { "lat": 40.7096669, "lon": -74.0116583 }, + { "lat": 40.7097461, "lon": -74.0116042 }, + { "lat": 40.7098075, "lon": -74.0115619 }, + { "lat": 40.7098636, "lon": -74.0115309 } + ], + "tags": { + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1052693007, + "bounds": { + "minlat": 40.8079127, + "minlon": -73.9311303, + "maxlat": 40.8081831, + "maxlon": -73.9308622 + }, + "nodes": [ + 595801152, + 11881123108, + 9674381953, + 9674381954, + 9674381955, + 9674381956 + ], + "geometry": [ + { "lat": 40.8081831, "lon": -73.9308806 }, + { "lat": 40.8081369, "lon": -73.9308717 }, + { "lat": 40.8080879, "lon": -73.9308622 }, + { "lat": 40.8080093, "lon": -73.9309138 }, + { "lat": 40.8079400, "lon": -73.9310617 }, + { "lat": 40.8079127, "lon": -73.9311303 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1052693008, + "bounds": { + "minlat": 40.8082748, + "minlon": -73.9317043, + "maxlat": 40.8084131, + "maxlon": -73.9315282 + }, + "nodes": [ + 9674381960, + 11882271263 + ], + "geometry": [ + { "lat": 40.8082748, "lon": -73.9315282 }, + { "lat": 40.8084131, "lon": -73.9317043 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 1052693009, + "bounds": { + "minlat": 40.8084456, + "minlon": -73.9318526, + "maxlat": 40.8084652, + "maxlon": -73.9317701 + }, + "nodes": [ + 9674381961, + 11881123111 + ], + "geometry": [ + { "lat": 40.8084652, "lon": -73.9317701 }, + { "lat": 40.8084456, "lon": -73.9318526 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1052799032, + "bounds": { + "minlat": 40.7810636, + "minlon": -73.9761556, + "maxlat": 40.7812798, + "maxlon": -73.9759984 + }, + "nodes": [ + 42428061, + 10156924787, + 10172954506, + 9675339211 + ], + "geometry": [ + { "lat": 40.7812798, "lon": -73.9759984 }, + { "lat": 40.7812240, "lon": -73.9760389 }, + { "lat": 40.7811325, "lon": -73.9761055 }, + { "lat": 40.7810636, "lon": -73.9761556 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1052934774, + "bounds": { + "minlat": 40.8334033, + "minlon": -73.9454338, + "maxlat": 40.8334848, + "maxlon": -73.9452488 + }, + "nodes": [ + 42428958, + 561035371 + ], + "geometry": [ + { "lat": 40.8334848, "lon": -73.9454338 }, + { "lat": 40.8334033, "lon": -73.9452488 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 156th Street", + "name_1": "West 156 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "156th", + "tiger:name_base_1": "156", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1052934775, + "bounds": { + "minlat": 40.8334033, + "minlon": -73.9452488, + "maxlat": 40.8340255, + "maxlon": -73.9447869 + }, + "nodes": [ + 561035371, + 9680957585, + 9703359680, + 561035372 + ], + "geometry": [ + { "lat": 40.8334033, "lon": -73.9452488 }, + { "lat": 40.8334693, "lon": -73.9452019 }, + { "lat": 40.8339618, "lon": -73.9448331 }, + { "lat": 40.8340255, "lon": -73.9447869 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "turn:lanes": "left|through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1052940920, + "bounds": { + "minlat": 40.7931731, + "minlon": -73.9673196, + "maxlat": 40.7932957, + "maxlon": -73.9672257 + }, + "nodes": [ + 9676474996, + 4205805393 + ], + "geometry": [ + { "lat": 40.7932957, "lon": -73.9672257 }, + { "lat": 40.7931731, "lon": -73.9673196 } + ], + "tags": { + "cycleway:left": "track", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1052948641, + "bounds": { + "minlat": 40.8516741, + "minlon": -73.9951933, + "maxlat": 40.8524200, + "maxlon": -73.9946620 + }, + "nodes": [ + 5976422965, + 5976782504, + 5976422972, + 103137589 + ], + "geometry": [ + { "lat": 40.8516741, "lon": -73.9951933 }, + { "lat": 40.8517316, "lon": -73.9951524 }, + { "lat": 40.8520751, "lon": -73.9949077 }, + { "lat": 40.8524200, "lon": -73.9946620 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1052948642, + "bounds": { + "minlat": 40.8514847, + "minlon": -73.9953282, + "maxlat": 40.8516741, + "maxlon": -73.9951933 + }, + "nodes": [ + 5970474325, + 5976422965 + ], + "geometry": [ + { "lat": 40.8514847, "lon": -73.9953282 }, + { "lat": 40.8516741, "lon": -73.9951933 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1052970500, + "bounds": { + "minlat": 40.7922238, + "minlon": -73.9412646, + "maxlat": 40.7925561, + "maxlon": -73.9410289 + }, + "nodes": [ + 42443072, + 7777321740, + 4207779533 + ], + "geometry": [ + { "lat": 40.7925561, "lon": -73.9410289 }, + { "lat": 40.7924827, "lon": -73.9410814 }, + { "lat": 40.7922238, "lon": -73.9412646 } + ], + "tags": { + "alt_name:ko": "2번가", + "construction": "minor", + "cycleway:left": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1052996917, + "bounds": { + "minlat": 40.8207479, + "minlon": -73.9545230, + "maxlat": 40.8213579, + "maxlon": -73.9540665 + }, + "nodes": [ + 561035350, + 10170977569, + 10177688691, + 561035353 + ], + "geometry": [ + { "lat": 40.8207479, "lon": -73.9545230 }, + { "lat": 40.8207950, "lon": -73.9544909 }, + { "lat": 40.8213152, "lon": -73.9540987 }, + { "lat": 40.8213579, "lon": -73.9540665 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1053075075, + "bounds": { + "minlat": 40.8435328, + "minlon": -73.9231141, + "maxlat": 40.8440769, + "maxlon": -73.9230676 + }, + "nodes": [ + 60924188, + 12046777286, + 12046777287, + 11042951974, + 12046777288, + 2907939267, + 12046777289, + 12046777290, + 12046777291, + 12046799882, + 60921022, + 12046799881, + 12046799883, + 11042951973 + ], + "geometry": [ + { "lat": 40.8440769, "lon": -73.9230676 }, + { "lat": 40.8440518, "lon": -73.9230776 }, + { "lat": 40.8440269, "lon": -73.9230855 }, + { "lat": 40.8439982, "lon": -73.9230914 }, + { "lat": 40.8439617, "lon": -73.9230989 }, + { "lat": 40.8439199, "lon": -73.9231052 }, + { "lat": 40.8438799, "lon": -73.9231095 }, + { "lat": 40.8438428, "lon": -73.9231120 }, + { "lat": 40.8437935, "lon": -73.9231141 }, + { "lat": 40.8437464, "lon": -73.9231134 }, + { "lat": 40.8436992, "lon": -73.9231108 }, + { "lat": 40.8436450, "lon": -73.9231066 }, + { "lat": 40.8435853, "lon": -73.9230993 }, + { "lat": 40.8435328, "lon": -73.9230926 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1053092449, + "bounds": { + "minlat": 40.7480628, + "minlon": -73.9107911, + "maxlat": 40.7482723, + "maxlon": -73.9101483 + }, + "nodes": [ + 9677940598, + 10762221361, + 9677940589, + 9677940593, + 9677940578 + ], + "geometry": [ + { "lat": 40.7482723, "lon": -73.9101483 }, + { "lat": 40.7482356, "lon": -73.9102591 }, + { "lat": 40.7481548, "lon": -73.9105033 }, + { "lat": 40.7480628, "lon": -73.9105314 }, + { "lat": 40.7480924, "lon": -73.9107911 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1053113336, + "bounds": { + "minlat": 40.7335619, + "minlon": -73.9430793, + "maxlat": 40.7342841, + "maxlon": -73.9429620 + }, + "nodes": [ + 2839943360, + 12381737059, + 12381737047, + 42495916 + ], + "geometry": [ + { "lat": 40.7335619, "lon": -73.9429620 }, + { "lat": 40.7337347, "lon": -73.9429937 }, + { "lat": 40.7338066, "lon": -73.9430070 }, + { "lat": 40.7342841, "lon": -73.9430793 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "name_1": "Grandparents Avenue", + "sidewalk:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1053113337, + "bounds": { + "minlat": 40.7222241, + "minlon": -73.9410898, + "maxlat": 40.7222806, + "maxlon": -73.9410593 + }, + "nodes": [ + 9649686763, + 42476656 + ], + "geometry": [ + { "lat": 40.7222241, "lon": -73.9410593 }, + { "lat": 40.7222806, "lon": -73.9410898 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "name_1": "Grandparents Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1053361185, + "bounds": { + "minlat": 40.7002334, + "minlon": -73.9894385, + "maxlat": 40.7003710, + "maxlon": -73.9892305 + }, + "nodes": [ + 278630283, + 9680322049 + ], + "geometry": [ + { "lat": 40.7002334, "lon": -73.9892305 }, + { "lat": 40.7003710, "lon": -73.9894385 } + ], + "tags": { + "bicycle": "use_sidepath", + "bus": "no", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Brooklyn Bridge Boulevard", + "name:etymology:wikidata": "Q125006", + "name:etymology:wikipedia": "en:Brooklyn Bridge", + "noref": "yes", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41:A49:A63", + "tiger:county": "Kings, NY;New York, NY", + "tiger:name_base": "Brooklyn", + "tiger:name_type": "Brg", + "turn:lanes": "none|merge_to_left" + } +}, +{ + "type": "way", + "id": 1053369944, + "bounds": { + "minlat": 40.7438166, + "minlon": -73.9893490, + "maxlat": 40.7439501, + "maxlon": -73.9890279 + }, + "nodes": [ + 9680380723, + 3009534487, + 42428216 + ], + "geometry": [ + { "lat": 40.7439501, "lon": -73.9893490 }, + { "lat": 40.7438501, "lon": -73.9891124 }, + { "lat": 40.7438166, "lon": -73.9890279 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1053526614, + "bounds": { + "minlat": 40.7698859, + "minlon": -73.9167363, + "maxlat": 40.7699189, + "maxlon": -73.9166947 + }, + "nodes": [ + 42898289, + 7659376755 + ], + "geometry": [ + { "lat": 40.7699189, "lon": -73.9167363 }, + { "lat": 40.7698859, "lon": -73.9166947 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "name": "Hoyt Avenue South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1053552023, + "bounds": { + "minlat": 40.7102289, + "minlon": -74.0146121, + "maxlat": 40.7104600, + "maxlon": -74.0145533 + }, + "nodes": [ + 9682039657, + 11413750597, + 6417761624 + ], + "geometry": [ + { "lat": 40.7102289, "lon": -74.0146121 }, + { "lat": 40.7104182, "lon": -74.0145644 }, + { "lat": 40.7104600, "lon": -74.0145533 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "6", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1053554760, + "bounds": { + "minlat": 40.7130857, + "minlon": -74.0141631, + "maxlat": 40.7137911, + "maxlon": -74.0139410 + }, + "nodes": [ + 373880031, + 5813280739, + 10282972446, + 10285341118, + 5813259900 + ], + "geometry": [ + { "lat": 40.7137911, "lon": -74.0139410 }, + { "lat": 40.7136863, "lon": -74.0139760 }, + { "lat": 40.7133807, "lon": -74.0140712 }, + { "lat": 40.7131597, "lon": -74.0141399 }, + { "lat": 40.7130857, "lon": -74.0141631 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1053554762, + "bounds": { + "minlat": 40.7111162, + "minlon": -74.0146587, + "maxlat": 40.7116675, + "maxlon": -74.0145374 + }, + "nodes": [ + 9682069932, + 4143835715, + 8262936768, + 246858433 + ], + "geometry": [ + { "lat": 40.7116675, "lon": -74.0145374 }, + { "lat": 40.7115152, "lon": -74.0145699 }, + { "lat": 40.7112761, "lon": -74.0146222 }, + { "lat": 40.7111162, "lon": -74.0146587 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "6", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|left|through|through|through|right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1053589474, + "bounds": { + "minlat": 40.7834033, + "minlon": -74.0064790, + "maxlat": 40.7837218, + "maxlon": -74.0057279 + }, + "nodes": [ + 308679581, + 103856504, + 4205626690 + ], + "geometry": [ + { "lat": 40.7837218, "lon": -74.0057279 }, + { "lat": 40.7835431, "lon": -74.0061485 }, + { "lat": 40.7834033, "lon": -74.0064790 } + ], + "tags": { + "highway": "primary", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1053594325, + "bounds": { + "minlat": 40.8381650, + "minlon": -73.9801250, + "maxlat": 40.8382363, + "maxlon": -73.9801107 + }, + "nodes": [ + 103174030, + 5108622201 + ], + "geometry": [ + { "lat": 40.8381650, "lon": -73.9801250 }, + { "lat": 40.8382363, "lon": -73.9801107 } + ], + "tags": { + "highway": "residential", + "name": "Abbott Boulevard", + "oneway": "yes", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1053594326, + "bounds": { + "minlat": 40.8381315, + "minlon": -73.9801250, + "maxlat": 40.8381650, + "maxlon": -73.9800669 + }, + "nodes": [ + 103174030, + 13523728892, + 9603250061 + ], + "geometry": [ + { "lat": 40.8381650, "lon": -73.9801250 }, + { "lat": 40.8381409, "lon": -73.9800831 }, + { "lat": 40.8381315, "lon": -73.9800669 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Central Boulevard", + "oneway": "yes", + "ref": "NJ 5", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1053594327, + "bounds": { + "minlat": 40.8335241, + "minlon": -73.9820126, + "maxlat": 40.8383260, + "maxlon": -73.9803776 + }, + "nodes": [ + 103174031, + 13525434323, + 103222965, + 7504150153, + 103282027, + 7504158889, + 103282026, + 7504158909, + 103093123, + 103125397 + ], + "geometry": [ + { "lat": 40.8383260, "lon": -73.9803776 }, + { "lat": 40.8382417, "lon": -73.9804130 }, + { "lat": 40.8377890, "lon": -73.9806030 }, + { "lat": 40.8377671, "lon": -73.9806109 }, + { "lat": 40.8363260, "lon": -73.9811290 }, + { "lat": 40.8358119, "lon": -73.9813179 }, + { "lat": 40.8357790, "lon": -73.9813300 }, + { "lat": 40.8357229, "lon": -73.9813475 }, + { "lat": 40.8350110, "lon": -73.9815700 }, + { "lat": 40.8335241, "lon": -73.9820126 } + ], + "tags": { + "highway": "residential", + "name": "Abbott Boulevard", + "oneway": "yes", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1053594328, + "bounds": { + "minlat": 40.8376405, + "minlon": -73.9798846, + "maxlat": 40.8380263, + "maxlon": -73.9792294 + }, + "nodes": [ + 5108622208, + 6964853608, + 103174026 + ], + "geometry": [ + { "lat": 40.8380263, "lon": -73.9798846 }, + { "lat": 40.8379690, "lon": -73.9798140 }, + { "lat": 40.8376405, "lon": -73.9792294 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "1", + "name": "Central Boulevard", + "oneway": "yes", + "ref": "NJ 5", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1053594329, + "bounds": { + "minlat": 40.8382363, + "minlon": -73.9803776, + "maxlat": 40.8383260, + "maxlon": -73.9801107 + }, + "nodes": [ + 5108622201, + 5108622215, + 103174031 + ], + "geometry": [ + { "lat": 40.8382363, "lon": -73.9801107 }, + { "lat": 40.8382961, "lon": -73.9802708 }, + { "lat": 40.8383260, "lon": -73.9803776 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Central Boulevard", + "oneway": "yes", + "ref": "NJ 5", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1053594330, + "bounds": { + "minlat": 40.8382363, + "minlon": -73.9801107, + "maxlat": 40.8465370, + "maxlon": -73.9751120 + }, + "nodes": [ + 5108622201, + 13525434301, + 103166408, + 103149540, + 103230925, + 103264714, + 103241417, + 103282057, + 103282059, + 103282061, + 103282063, + 103143808, + 103282065, + 103272688, + 103235395, + 103186447, + 103282067, + 103182290, + 103282069, + 103282073, + 103232118, + 103282075, + 103230889 + ], + "geometry": [ + { "lat": 40.8382363, "lon": -73.9801107 }, + { "lat": 40.8382813, "lon": -73.9800934 }, + { "lat": 40.8389070, "lon": -73.9798530 }, + { "lat": 40.8396180, "lon": -73.9795930 }, + { "lat": 40.8403340, "lon": -73.9793290 }, + { "lat": 40.8410450, "lon": -73.9790670 }, + { "lat": 40.8417500, "lon": -73.9788010 }, + { "lat": 40.8420550, "lon": -73.9786820 }, + { "lat": 40.8422400, "lon": -73.9785930 }, + { "lat": 40.8424190, "lon": -73.9784880 }, + { "lat": 40.8424940, "lon": -73.9784380 }, + { "lat": 40.8426880, "lon": -73.9782920 }, + { "lat": 40.8428140, "lon": -73.9781960 }, + { "lat": 40.8436120, "lon": -73.9774910 }, + { "lat": 40.8441850, "lon": -73.9769740 }, + { "lat": 40.8447663, "lon": -73.9764622 }, + { "lat": 40.8449507, "lon": -73.9762994 }, + { "lat": 40.8453120, "lon": -73.9759670 }, + { "lat": 40.8455400, "lon": -73.9757710 }, + { "lat": 40.8457430, "lon": -73.9756190 }, + { "lat": 40.8459170, "lon": -73.9755080 }, + { "lat": 40.8459930, "lon": -73.9754650 }, + { "lat": 40.8465370, "lon": -73.9751120 } + ], + "tags": { + "highway": "residential", + "name": "Abbott Boulevard", + "oneway": "yes", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1053596689, + "bounds": { + "minlat": 40.8007390, + "minlon": -74.0095629, + "maxlat": 40.8008003, + "maxlon": -74.0094362 + }, + "nodes": [ + 103873559, + 103868331 + ], + "geometry": [ + { "lat": 40.8007390, "lon": -74.0094362 }, + { "lat": 40.8008003, "lon": -74.0095629 } + ], + "tags": { + "highway": "tertiary", + "name": "76th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1053596690, + "bounds": { + "minlat": 40.8008003, + "minlon": -74.0127270, + "maxlat": 40.8022557, + "maxlon": -74.0095629 + }, + "nodes": [ + 103868331, + 6358322906, + 103880577, + 103881359, + 103881361, + 103881363, + 103881365, + 13545168236, + 7474655985, + 103872909 + ], + "geometry": [ + { "lat": 40.8008003, "lon": -74.0095629 }, + { "lat": 40.8010236, "lon": -74.0100493 }, + { "lat": 40.8010706, "lon": -74.0101608 }, + { "lat": 40.8014036, "lon": -74.0108824 }, + { "lat": 40.8015320, "lon": -74.0111573 }, + { "lat": 40.8017460, "lon": -74.0116190 }, + { "lat": 40.8018722, "lon": -74.0118922 }, + { "lat": 40.8021121, "lon": -74.0124230 }, + { "lat": 40.8022075, "lon": -74.0126342 }, + { "lat": 40.8022557, "lon": -74.0127270 } + ], + "tags": { + "highway": "tertiary", + "name": "76th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1053621930, + "bounds": { + "minlat": 40.8097456, + "minlon": -73.9476654, + "maxlat": 40.8098754, + "maxlon": -73.9475614 + }, + "nodes": [ + 9682605807, + 4207716495 + ], + "geometry": [ + { "lat": 40.8097456, "lon": -73.9476654 }, + { "lat": 40.8098754, "lon": -73.9475614 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1053628248, + "bounds": { + "minlat": 40.7826383, + "minlon": -73.9750067, + "maxlat": 40.7832589, + "maxlon": -73.9745499 + }, + "nodes": [ + 42443280, + 4689234438, + 9897810860, + 42421769 + ], + "geometry": [ + { "lat": 40.7832589, "lon": -73.9745499 }, + { "lat": 40.7831881, "lon": -73.9746071 }, + { "lat": 40.7826966, "lon": -73.9749624 }, + { "lat": 40.7826383, "lon": -73.9750067 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1053630777, + "bounds": { + "minlat": 40.7795073, + "minlon": -73.9555832, + "maxlat": 40.7798836, + "maxlon": -73.9553083 + }, + "nodes": [ + 9682829121, + 7924099740, + 42429334 + ], + "geometry": [ + { "lat": 40.7798836, "lon": -73.9553083 }, + { "lat": 40.7795990, "lon": -73.9555182 }, + { "lat": 40.7795073, "lon": -73.9555832 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "surface": "asphalt", + "turn:lanes": "none|through|none|right", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1053641173, + "bounds": { + "minlat": 40.8083860, + "minlon": -73.9486513, + "maxlat": 40.8085556, + "maxlon": -73.9485282 + }, + "nodes": [ + 9682934117, + 4207716491 + ], + "geometry": [ + { "lat": 40.8083860, "lon": -73.9486513 }, + { "lat": 40.8085556, "lon": -73.9485282 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1053644745, + "bounds": { + "minlat": 40.8315206, + "minlon": -73.9496167, + "maxlat": 40.8326563, + "maxlon": -73.9468720 + }, + "nodes": [ + 42428953, + 11191773480, + 7693632091, + 11191809963, + 595352927 + ], + "geometry": [ + { "lat": 40.8315206, "lon": -73.9468720 }, + { "lat": 40.8315603, "lon": -73.9469684 }, + { "lat": 40.8320543, "lon": -73.9481783 }, + { "lat": 40.8326312, "lon": -73.9495568 }, + { "lat": 40.8326563, "lon": -73.9496167 } + ], + "tags": { + "highway": "residential", + "maxweight": "16 st", + "name": "West 153rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "153rd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1053644746, + "bounds": { + "minlat": 40.8308032, + "minlon": -73.9471314, + "maxlat": 40.8314368, + "maxlon": -73.9466740 + }, + "nodes": [ + 561035368, + 11191773466, + 11191773482, + 561035369 + ], + "geometry": [ + { "lat": 40.8308032, "lon": -73.9471314 }, + { "lat": 40.8308694, "lon": -73.9470836 }, + { "lat": 40.8313731, "lon": -73.9467199 }, + { "lat": 40.8314368, "lon": -73.9466740 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1053644747, + "bounds": { + "minlat": 40.8314368, + "minlon": -73.9466740, + "maxlat": 40.8315650, + "maxlon": -73.9465803 + }, + "nodes": [ + 561035369, + 11191773477, + 9682921006 + ], + "geometry": [ + { "lat": 40.8314368, "lon": -73.9466740 }, + { "lat": 40.8314929, "lon": -73.9466330 }, + { "lat": 40.8315650, "lon": -73.9465803 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1053809535, + "bounds": { + "minlat": 40.8025132, + "minlon": -73.9529374, + "maxlat": 40.8026500, + "maxlon": -73.9528376 + }, + "nodes": [ + 2141026546, + 10170606873, + 9684399425 + ], + "geometry": [ + { "lat": 40.8025132, "lon": -73.9529374 }, + { "lat": 40.8025670, "lon": -73.9528982 }, + { "lat": 40.8026500, "lon": -73.9528376 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1053854886, + "bounds": { + "minlat": 40.7070560, + "minlon": -73.9648800, + "maxlat": 40.7074502, + "maxlon": -73.9643930 + }, + "nodes": [ + 42487630, + 9776829040, + 9351722077, + 9776814810, + 42477972 + ], + "geometry": [ + { "lat": 40.7070560, "lon": -73.9643930 }, + { "lat": 40.7070967, "lon": -73.9644825 }, + { "lat": 40.7073737, "lon": -73.9647855 }, + { "lat": 40.7074008, "lon": -73.9648190 }, + { "lat": 40.7074502, "lon": -73.9648800 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "yes", + "tiger:zip_left": "11226", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 1053854887, + "bounds": { + "minlat": 40.7066522, + "minlon": -73.9643930, + "maxlat": 40.7070560, + "maxlon": -73.9639395 + }, + "nodes": [ + 9684800599, + 9776829036, + 42487630 + ], + "geometry": [ + { "lat": 40.7066522, "lon": -73.9639395 }, + { "lat": 40.7070073, "lon": -73.9643383 }, + { "lat": 40.7070560, "lon": -73.9643930 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "yes", + "tiger:zip_left": "11226", + "turn:lanes": "slight_left|slight_right", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 1053855041, + "bounds": { + "minlat": 40.8019955, + "minlon": -73.9533119, + "maxlat": 40.8021620, + "maxlon": -73.9531914 + }, + "nodes": [ + 9684753438, + 9153603243 + ], + "geometry": [ + { "lat": 40.8019955, "lon": -73.9533119 }, + { "lat": 40.8021620, "lon": -73.9531914 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1053934583, + "bounds": { + "minlat": 40.8099318, + "minlon": -73.9623955, + "maxlat": 40.8104994, + "maxlon": -73.9619636 + }, + "nodes": [ + 6223571522, + 11851500952, + 11851500949, + 1504153604 + ], + "geometry": [ + { "lat": 40.8099318, "lon": -73.9623955 }, + { "lat": 40.8099741, "lon": -73.9623633 }, + { "lat": 40.8104031, "lon": -73.9620371 }, + { "lat": 40.8104994, "lon": -73.9619636 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1054539080, + "bounds": { + "minlat": 40.7375851, + "minlon": -73.9564614, + "maxlat": 40.7377249, + "maxlon": -73.9563274 + }, + "nodes": [ + 9153637234, + 9153637233 + ], + "geometry": [ + { "lat": 40.7375851, "lon": -73.9563274 }, + { "lat": 40.7377249, "lon": -73.9564614 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1054539081, + "bounds": { + "minlat": 40.7375022, + "minlon": -73.9563274, + "maxlat": 40.7375851, + "maxlon": -73.9562480 + }, + "nodes": [ + 9153637236, + 9153637235, + 9153637234 + ], + "geometry": [ + { "lat": 40.7375022, "lon": -73.9562480 }, + { "lat": 40.7375600, "lon": -73.9563033 }, + { "lat": 40.7375851, "lon": -73.9563274 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1054539095, + "bounds": { + "minlat": 40.7396198, + "minlon": -73.9526755, + "maxlat": 40.7396934, + "maxlon": -73.9522908 + }, + "nodes": [ + 6594514422, + 6594514208 + ], + "geometry": [ + { "lat": 40.7396934, "lon": -73.9526755 }, + { "lat": 40.7396198, "lon": -73.9522908 } + ], + "tags": { + "highway": "unclassified", + "name": "11th Street" + } +}, +{ + "type": "way", + "id": 1054627117, + "bounds": { + "minlat": 40.8800595, + "minlon": -73.9103766, + "maxlat": 40.8802115, + "maxlon": -73.9102610 + }, + "nodes": [ + 9691381112, + 1544756424, + 10207247489, + 1544756440 + ], + "geometry": [ + { "lat": 40.8800595, "lon": -73.9102610 }, + { "lat": 40.8800900, "lon": -73.9102965 }, + { "lat": 40.8801476, "lon": -73.9103351 }, + { "lat": 40.8802115, "lon": -73.9103766 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "West 230th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1054658122, + "bounds": { + "minlat": 40.8467927, + "minlon": -74.0186081, + "maxlat": 40.8473131, + "maxlon": -74.0173350 + }, + "nodes": [ + 298566887, + 10927869390, + 298566860, + 12014234115, + 298566837, + 9691651156 + ], + "geometry": [ + { "lat": 40.8467927, "lon": -74.0173350 }, + { "lat": 40.8468528, "lon": -74.0174727 }, + { "lat": 40.8469282, "lon": -74.0176480 }, + { "lat": 40.8470254, "lon": -74.0178861 }, + { "lat": 40.8471113, "lon": -74.0180974 }, + { "lat": 40.8473131, "lon": -74.0186081 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1054666057, + "bounds": { + "minlat": 40.8716701, + "minlon": -74.0078398, + "maxlat": 40.8717362, + "maxlon": -74.0075722 + }, + "nodes": [ + 4205863449, + 12323099080, + 12323099084, + 12323099079, + 12323099082, + 4472892618, + 12323099077, + 9691712169 + ], + "geometry": [ + { "lat": 40.8717362, "lon": -74.0078398 }, + { "lat": 40.8717243, "lon": -74.0077907 }, + { "lat": 40.8717167, "lon": -74.0077596 }, + { "lat": 40.8717123, "lon": -74.0077415 }, + { "lat": 40.8717100, "lon": -74.0077321 }, + { "lat": 40.8717030, "lon": -74.0077031 }, + { "lat": 40.8716981, "lon": -74.0076837 }, + { "lat": 40.8716701, "lon": -74.0075722 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "4", + "maxspeed": "45 mph", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes": "left|||" + } +}, +{ + "type": "way", + "id": 1054707250, + "bounds": { + "minlat": 40.8307628, + "minlon": -73.9789326, + "maxlat": 40.8307977, + "maxlon": -73.9787624 + }, + "nodes": [ + 9692073851, + 7494742121, + 7494742122, + 7494742123, + 7494742116 + ], + "geometry": [ + { "lat": 40.8307977, "lon": -73.9789326 }, + { "lat": 40.8307741, "lon": -73.9788907 }, + { "lat": 40.8307660, "lon": -73.9788721 }, + { "lat": 40.8307637, "lon": -73.9788407 }, + { "lat": 40.8307628, "lon": -73.9787624 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lit": "yes", + "name": "Kensington Drive", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1054707251, + "bounds": { + "minlat": 40.8308590, + "minlon": -73.9788207, + "maxlat": 40.8309194, + "maxlon": -73.9787287 + }, + "nodes": [ + 7494742115, + 7494742118, + 9692073852 + ], + "geometry": [ + { "lat": 40.8308590, "lon": -73.9787287 }, + { "lat": 40.8308943, "lon": -73.9787727 }, + { "lat": 40.8309194, "lon": -73.9788207 } + ], + "tags": { + "access": "private", + "highway": "residential", + "lit": "yes", + "name": "Kensington Drive", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1054707252, + "bounds": { + "minlat": 40.8290442, + "minlon": -73.9789066, + "maxlat": 40.8290848, + "maxlon": -73.9788679 + }, + "nodes": [ + 103294219, + 9692073853 + ], + "geometry": [ + { "lat": 40.8290442, "lon": -73.9789066 }, + { "lat": 40.8290848, "lon": -73.9788679 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Lenox Court", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lenox", + "tiger:name_type": "Ct", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1054741393, + "bounds": { + "minlat": 40.8711735, + "minlon": -74.0068114, + "maxlat": 40.8716618, + "maxlon": -74.0058956 + }, + "nodes": [ + 103247019, + 10940833286, + 10940833238, + 103247022, + 10940833230, + 10940833254, + 103247024, + 10940833264, + 103247026, + 775937815 + ], + "geometry": [ + { "lat": 40.8711735, "lon": -74.0058956 }, + { "lat": 40.8712429, "lon": -74.0059990 }, + { "lat": 40.8713114, "lon": -74.0061107 }, + { "lat": 40.8713758, "lon": -74.0062198 }, + { "lat": 40.8714396, "lon": -74.0063373 }, + { "lat": 40.8714934, "lon": -74.0064416 }, + { "lat": 40.8715479, "lon": -74.0065550 }, + { "lat": 40.8715868, "lon": -74.0066379 }, + { "lat": 40.8716268, "lon": -74.0067278 }, + { "lat": 40.8716618, "lon": -74.0068114 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "4", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 1054741394, + "bounds": { + "minlat": 40.8714853, + "minlon": -74.0069796, + "maxlat": 40.8716618, + "maxlon": -74.0068114 + }, + "nodes": [ + 567269855, + 10940833237, + 10940833246, + 775937815 + ], + "geometry": [ + { "lat": 40.8714853, "lon": -74.0069796 }, + { "lat": 40.8715363, "lon": -74.0069214 }, + { "lat": 40.8716020, "lon": -74.0068587 }, + { "lat": 40.8716618, "lon": -74.0068114 } + ], + "tags": { + "highway": "residential", + "name": "Frank W Burr Boulevard", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Frank W Burr", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 1054741395, + "bounds": { + "minlat": 40.8716618, + "minlon": -74.0069071, + "maxlat": 40.8716993, + "maxlon": -74.0068114 + }, + "nodes": [ + 775937815, + 10940833239, + 567269853 + ], + "geometry": [ + { "lat": 40.8716618, "lon": -74.0068114 }, + { "lat": 40.8716809, "lon": -74.0068593 }, + { "lat": 40.8716993, "lon": -74.0069071 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 1054741396, + "bounds": { + "minlat": 40.8706576, + "minlon": -74.0054607, + "maxlat": 40.8708663, + "maxlon": -74.0051669 + }, + "nodes": [ + 103247016, + 9692248037 + ], + "geometry": [ + { "lat": 40.8706576, "lon": -74.0051669 }, + { "lat": 40.8708663, "lon": -74.0054607 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "3", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 1054796577, + "bounds": { + "minlat": 40.7357918, + "minlon": -73.9239713, + "maxlat": 40.7379026, + "maxlon": -73.9235457 + }, + "nodes": [ + 42910082, + 10084797173, + 6908928770, + 10743722363, + 8097303852, + 10084797181, + 42825300 + ], + "geometry": [ + { "lat": 40.7379026, "lon": -73.9235457 }, + { "lat": 40.7378220, "lon": -73.9235617 }, + { "lat": 40.7375907, "lon": -73.9236128 }, + { "lat": 40.7367600, "lon": -73.9237777 }, + { "lat": 40.7358955, "lon": -73.9239493 }, + { "lat": 40.7358530, "lon": -73.9239587 }, + { "lat": 40.7357918, "lon": -73.9239713 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "42nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1055279558, + "bounds": { + "minlat": 40.7622984, + "minlon": -73.9803141, + "maxlat": 40.7623780, + "maxlon": -73.9802537 + }, + "nodes": [ + 9696772607, + 11296226852, + 9696772608 + ], + "geometry": [ + { "lat": 40.7622984, "lon": -73.9803141 }, + { "lat": 40.7623656, "lon": -73.9802631 }, + { "lat": 40.7623780, "lon": -73.9802537 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1055388090, + "bounds": { + "minlat": 40.7637577, + "minlon": -73.9984773, + "maxlat": 40.7638538, + "maxlon": -73.9980935 + }, + "nodes": [ + 5458524653, + 5458524654, + 5458524655, + 9140140782, + 5458524656 + ], + "geometry": [ + { "lat": 40.7638538, "lon": -73.9984773 }, + { "lat": 40.7638021, "lon": -73.9983464 }, + { "lat": 40.7637743, "lon": -73.9982196 }, + { "lat": 40.7637702, "lon": -73.9981904 }, + { "lat": 40.7637577, "lon": -73.9980935 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1055774824, + "bounds": { + "minlat": 40.8358485, + "minlon": -73.9910560, + "maxlat": 40.8362030, + "maxlon": -73.9905137 + }, + "nodes": [ + 103162216, + 5978850777, + 103162217, + 103162218 + ], + "geometry": [ + { "lat": 40.8358485, "lon": -73.9905137 }, + { "lat": 40.8359492, "lon": -73.9906789 }, + { "lat": 40.8361040, "lon": -73.9909330 }, + { "lat": 40.8362030, "lon": -73.9910560 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "maxheight": "13'7\"", + "name": "Columbia Avenue", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_base_1": "State Route 5", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1056095625, + "bounds": { + "minlat": 40.7040345, + "minlon": -73.9388615, + "maxlat": 40.7041047, + "maxlon": -73.9387001 + }, + "nodes": [ + 9704064506, + 9704064507, + 9704064508, + 9704064480, + 9704064509, + 9704064510, + 9704064481, + 9704064511, + 9704064512, + 9704064514, + 9704064482, + 9704064513, + 9704064506 + ], + "geometry": [ + { "lat": 40.7040474, "lon": -73.9388615 }, + { "lat": 40.7040780, "lon": -73.9388585 }, + { "lat": 40.7040849, "lon": -73.9388494 }, + { "lat": 40.7040998, "lon": -73.9387971 }, + { "lat": 40.7041047, "lon": -73.9387739 }, + { "lat": 40.7041018, "lon": -73.9387633 }, + { "lat": 40.7040605, "lon": -73.9387189 }, + { "lat": 40.7040438, "lon": -73.9387001 }, + { "lat": 40.7040365, "lon": -73.9387007 }, + { "lat": 40.7040345, "lon": -73.9387073 }, + { "lat": 40.7040347, "lon": -73.9387181 }, + { "lat": 40.7040411, "lon": -73.9388525 }, + { "lat": 40.7040474, "lon": -73.9388615 } + ], + "tags": { + "area:highway": "traffic_island", + "highway": "pedestrian", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 1056729641, + "bounds": { + "minlat": 40.8369692, + "minlon": -73.9096129, + "maxlat": 40.8371232, + "maxlon": -73.9091912 + }, + "nodes": [ + 42739243, + 42739246 + ], + "geometry": [ + { "lat": 40.8371232, "lon": -73.9096129 }, + { "lat": 40.8369692, "lon": -73.9091912 } + ], + "tags": { + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "name": "East 170th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 1056729642, + "bounds": { + "minlat": 40.8277630, + "minlon": -73.9152880, + "maxlat": 40.8287381, + "maxlon": -73.9147216 + }, + "nodes": [ + 42743934, + 12038440224, + 8187805237, + 12038440213, + 42742410 + ], + "geometry": [ + { "lat": 40.8287381, "lon": -73.9147216 }, + { "lat": 40.8286761, "lon": -73.9147576 }, + { "lat": 40.8278623, "lon": -73.9152303 }, + { "lat": 40.8278196, "lon": -73.9152551 }, + { "lat": 40.8277630, "lon": -73.9152880 } + ], + "tags": { + "highway": "residential", + "name": "Findlay Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller; Findlay", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10457; 10456", + "tiger:zip_right_1": "10456" + } +}, +{ + "type": "way", + "id": 1056729643, + "bounds": { + "minlat": 40.8258209, + "minlon": -73.9157366, + "maxlat": 40.8284651, + "maxlon": -73.9138754 + }, + "nodes": [ + 42732941, + 3640176434, + 10558971193, + 42739709, + 12038440204, + 12038440208, + 42742412, + 12038440206, + 12038440193, + 8575373963, + 12038440189, + 12038440187, + 42782478 + ], + "geometry": [ + { "lat": 40.8258209, "lon": -73.9157366 }, + { "lat": 40.8260017, "lon": -73.9156239 }, + { "lat": 40.8260886, "lon": -73.9155747 }, + { "lat": 40.8265460, "lon": -73.9153160 }, + { "lat": 40.8274600, "lon": -73.9148129 }, + { "lat": 40.8275037, "lon": -73.9147888 }, + { "lat": 40.8275560, "lon": -73.9147600 }, + { "lat": 40.8276040, "lon": -73.9147141 }, + { "lat": 40.8276930, "lon": -73.9146290 }, + { "lat": 40.8279514, "lon": -73.9143818 }, + { "lat": 40.8281518, "lon": -73.9141842 }, + { "lat": 40.8284091, "lon": -73.9139306 }, + { "lat": 40.8284651, "lon": -73.9138754 } + ], + "tags": { + "highway": "residential", + "name": "Teller Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1057153169, + "bounds": { + "minlat": 40.7523482, + "minlon": -74.0078241, + "maxlat": 40.7538740, + "maxlon": -74.0072465 + }, + "nodes": [ + 4899886584, + 12161224642, + 247073198, + 4207978499 + ], + "geometry": [ + { "lat": 40.7538740, "lon": -74.0072465 }, + { "lat": 40.7538001, "lon": -74.0072765 }, + { "lat": 40.7537401, "lon": -74.0072990 }, + { "lat": 40.7523482, "lon": -74.0078241 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1057161124, + "bounds": { + "minlat": 40.8350475, + "minlon": -73.9239831, + "maxlat": 40.8361348, + "maxlon": -73.9223269 + }, + "nodes": [ + 42734978, + 10133344434, + 2912071085, + 10133344432, + 2912071078, + 12163757012, + 10133344458, + 42736005 + ], + "geometry": [ + { "lat": 40.8350475, "lon": -73.9239831 }, + { "lat": 40.8353903, "lon": -73.9234671 }, + { "lat": 40.8354358, "lon": -73.9233988 }, + { "lat": 40.8354864, "lon": -73.9233221 }, + { "lat": 40.8359114, "lon": -73.9226727 }, + { "lat": 40.8360094, "lon": -73.9225241 }, + { "lat": 40.8360522, "lon": -73.9224591 }, + { "lat": 40.8361348, "lon": -73.9223269 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1057245973, + "bounds": { + "minlat": 40.8105629, + "minlon": -73.9545043, + "maxlat": 40.8106928, + "maxlon": -73.9541968 + }, + "nodes": [ + 42440138, + 10171069643, + 9714409350 + ], + "geometry": [ + { "lat": 40.8106928, "lon": -73.9545043 }, + { "lat": 40.8106439, "lon": -73.9543885 }, + { "lat": 40.8105629, "lon": -73.9541968 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "West 124th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1057257709, + "bounds": { + "minlat": 40.7578066, + "minlon": -74.0044993, + "maxlat": 40.7580107, + "maxlon": -74.0043507 + }, + "nodes": [ + 9714517347, + 9714517348 + ], + "geometry": [ + { "lat": 40.7580107, "lon": -74.0043507 }, + { "lat": 40.7578066, "lon": -74.0044993 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|||" + } +}, +{ + "type": "way", + "id": 1057257710, + "bounds": { + "minlat": 40.7576450, + "minlon": -74.0046169, + "maxlat": 40.7578066, + "maxlon": -74.0044993 + }, + "nodes": [ + 9714517348, + 4207978501 + ], + "geometry": [ + { "lat": 40.7578066, "lon": -74.0044993 }, + { "lat": 40.7576450, "lon": -74.0046169 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|left|||" + } +}, +{ + "type": "way", + "id": 1057527156, + "bounds": { + "minlat": 40.7439419, + "minlon": -73.9765073, + "maxlat": 40.7441114, + "maxlon": -73.9763847 + }, + "nodes": [ + 42442913, + 3817760672, + 5696984871 + ], + "geometry": [ + { "lat": 40.7441114, "lon": -73.9763847 }, + { "lat": 40.7440480, "lon": -73.9764305 }, + { "lat": 40.7439419, "lon": -73.9765073 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1057527157, + "bounds": { + "minlat": 40.7427556, + "minlon": -73.9773736, + "maxlat": 40.7428905, + "maxlon": -73.9772763 + }, + "nodes": [ + 42442906, + 3817760030, + 4207683800 + ], + "geometry": [ + { "lat": 40.7428905, "lon": -73.9772763 }, + { "lat": 40.7428261, "lon": -73.9773229 }, + { "lat": 40.7427556, "lon": -73.9773736 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1057604960, + "bounds": { + "minlat": 40.8523205, + "minlon": -73.9670730, + "maxlat": 40.8524668, + "maxlon": -73.9668995 + }, + "nodes": [ + 5330468445, + 5330468444, + 5330468439, + 5330468438, + 5330468437, + 5330468436, + 5330468452, + 5330468451, + 5330468450, + 5330468449, + 5179132349 + ], + "geometry": [ + { "lat": 40.8524480, "lon": -73.9668995 }, + { "lat": 40.8524609, "lon": -73.9669272 }, + { "lat": 40.8524668, "lon": -73.9669587 }, + { "lat": 40.8524651, "lon": -73.9669912 }, + { "lat": 40.8524560, "lon": -73.9670214 }, + { "lat": 40.8524403, "lon": -73.9670465 }, + { "lat": 40.8524171, "lon": -73.9670655 }, + { "lat": 40.8523903, "lon": -73.9670730 }, + { "lat": 40.8523632, "lon": -73.9670681 }, + { "lat": 40.8523390, "lon": -73.9670513 }, + { "lat": 40.8523205, "lon": -73.9670246 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1057613219, + "bounds": { + "minlat": 40.7894903, + "minlon": -73.9432652, + "maxlat": 40.7899429, + "maxlon": -73.9429284 + }, + "nodes": [ + 42443066, + 6216628272, + 5475082073 + ], + "geometry": [ + { "lat": 40.7899429, "lon": -73.9429284 }, + { "lat": 40.7898964, "lon": -73.9429627 }, + { "lat": 40.7894903, "lon": -73.9432652 } + ], + "tags": { + "alt_name:ko": "2번가", + "construction": "minor", + "cycleway:left": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1057638529, + "bounds": { + "minlat": 40.8531209, + "minlon": -73.9941510, + "maxlat": 40.8532896, + "maxlon": -73.9940279 + }, + "nodes": [ + 6891318601, + 6891318610 + ], + "geometry": [ + { "lat": 40.8531209, "lon": -73.9941510 }, + { "lat": 40.8532896, "lon": -73.9940279 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1057638530, + "bounds": { + "minlat": 40.8528555, + "minlon": -73.9940599, + "maxlat": 40.8530708, + "maxlon": -73.9935801 + }, + "nodes": [ + 6891318602, + 6891318603, + 6891318604 + ], + "geometry": [ + { "lat": 40.8530708, "lon": -73.9940599 }, + { "lat": 40.8530679, "lon": -73.9939780 }, + { "lat": 40.8528555, "lon": -73.9935801 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1057638531, + "bounds": { + "minlat": 40.8532896, + "minlon": -73.9940279, + "maxlat": 40.8605426, + "maxlon": -73.9887935 + }, + "nodes": [ + 6891318610, + 7088158241, + 440215454, + 440215455, + 103164812, + 103164801, + 103224105, + 103215836, + 103215847, + 10261638516, + 103155362, + 103224106, + 103224107, + 103224108, + 103224109, + 103224110, + 10239483820, + 103224111, + 10239462498, + 6888187034, + 8075114220, + 8073300000, + 103224112 + ], + "geometry": [ + { "lat": 40.8532896, "lon": -73.9940279 }, + { "lat": 40.8537581, "lon": -73.9936863 }, + { "lat": 40.8539780, "lon": -73.9935260 }, + { "lat": 40.8540700, "lon": -73.9934610 }, + { "lat": 40.8549333, "lon": -73.9928322 }, + { "lat": 40.8549608, "lon": -73.9928109 }, + { "lat": 40.8555413, "lon": -73.9923899 }, + { "lat": 40.8558332, "lon": -73.9921813 }, + { "lat": 40.8561304, "lon": -73.9919619 }, + { "lat": 40.8566744, "lon": -73.9915644 }, + { "lat": 40.8567130, "lon": -73.9915360 }, + { "lat": 40.8575965, "lon": -73.9909033 }, + { "lat": 40.8583040, "lon": -73.9903930 }, + { "lat": 40.8586610, "lon": -73.9901380 }, + { "lat": 40.8590470, "lon": -73.9898610 }, + { "lat": 40.8596248, "lon": -73.9894429 }, + { "lat": 40.8596992, "lon": -73.9893928 }, + { "lat": 40.8597750, "lon": -73.9893410 }, + { "lat": 40.8598946, "lon": -73.9892570 }, + { "lat": 40.8600674, "lon": -73.9891339 }, + { "lat": 40.8601945, "lon": -73.9890424 }, + { "lat": 40.8605040, "lon": -73.9888194 }, + { "lat": 40.8605426, "lon": -73.9887935 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1057822239, + "bounds": { + "minlat": 40.8518971, + "minlon": -73.9701217, + "maxlat": 40.8520599, + "maxlon": -73.9696532 + }, + "nodes": [ + 7442921452, + 9719956011, + 12824924125, + 6964853610 + ], + "geometry": [ + { "lat": 40.8520598, "lon": -73.9701217 }, + { "lat": 40.8520599, "lon": -73.9701154 }, + { "lat": 40.8519417, "lon": -73.9697799 }, + { "lat": 40.8518971, "lon": -73.9696532 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1057929086, + "bounds": { + "minlat": 40.7000646, + "minlon": -73.9323574, + "maxlat": 40.7004894, + "maxlon": -73.9316016 + }, + "nodes": [ + 9720880132, + 9755699178, + 9720880133 + ], + "geometry": [ + { "lat": 40.7004894, "lon": -73.9323574 }, + { "lat": 40.7004563, "lon": -73.9322985 }, + { "lat": 40.7000646, "lon": -73.9316016 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1057930195, + "bounds": { + "minlat": 40.6999858, + "minlon": -73.9315591, + "maxlat": 40.7003404, + "maxlon": -73.9306932 + }, + "nodes": [ + 1275778441, + 9720903685, + 9720903686 + ], + "geometry": [ + { "lat": 40.7001073, "lon": -73.9315591 }, + { "lat": 40.7003404, "lon": -73.9313313 }, + { "lat": 40.6999858, "lon": -73.9306932 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1058466923, + "bounds": { + "minlat": 40.8011859, + "minlon": -73.9397578, + "maxlat": 40.8037081, + "maxlon": -73.9379207 + }, + "nodes": [ + 42438772, + 9726158592, + 10122952971, + 42447207, + 10122952974, + 10122952975, + 42445189, + 10122952978, + 9726158601, + 10122952979, + 42447206, + 10122952983, + 10122952980, + 42443819 + ], + "geometry": [ + { "lat": 40.8037081, "lon": -73.9379207 }, + { "lat": 40.8036534, "lon": -73.9379594 }, + { "lat": 40.8031363, "lon": -73.9383351 }, + { "lat": 40.8030771, "lon": -73.9383782 }, + { "lat": 40.8030214, "lon": -73.9384193 }, + { "lat": 40.8025046, "lon": -73.9388005 }, + { "lat": 40.8024528, "lon": -73.9388372 }, + { "lat": 40.8023960, "lon": -73.9388774 }, + { "lat": 40.8021232, "lon": -73.9390745 }, + { "lat": 40.8018729, "lon": -73.9392578 }, + { "lat": 40.8018200, "lon": -73.9392953 }, + { "lat": 40.8017683, "lon": -73.9393329 }, + { "lat": 40.8012491, "lon": -73.9397112 }, + { "lat": 40.8011859, "lon": -73.9397578 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1058673087, + "bounds": { + "minlat": 40.7163490, + "minlon": -73.9509874, + "maxlat": 40.7163896, + "maxlon": -73.9508193 + }, + "nodes": [ + 10707323283, + 9727866465, + 9727866464 + ], + "geometry": [ + { "lat": 40.7163896, "lon": -73.9508193 }, + { "lat": 40.7163610, "lon": -73.9508615 }, + { "lat": 40.7163490, "lon": -73.9509874 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1058673088, + "bounds": { + "minlat": 40.7163207, + "minlon": -73.9508193, + "maxlat": 40.7164813, + "maxlon": -73.9507381 + }, + "nodes": [ + 9727866463, + 9727866466, + 10707323283, + 9727866467, + 9727866468 + ], + "geometry": [ + { "lat": 40.7163207, "lon": -73.9507381 }, + { "lat": 40.7163677, "lon": -73.9507935 }, + { "lat": 40.7163896, "lon": -73.9508193 }, + { "lat": 40.7164191, "lon": -73.9507756 }, + { "lat": 40.7164813, "lon": -73.9507860 } + ], + "tags": { + "foot": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1058770835, + "bounds": { + "minlat": 40.7852261, + "minlon": -73.9438917, + "maxlat": 40.7853654, + "maxlon": -73.9437931 + }, + "nodes": [ + 3900961253, + 6181709397, + 3900961248 + ], + "geometry": [ + { "lat": 40.7852261, "lon": -73.9438917 }, + { "lat": 40.7853095, "lon": -73.9438325 }, + { "lat": 40.7853654, "lon": -73.9437931 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1058909064, + "bounds": { + "minlat": 40.7637558, + "minlon": -73.9554673, + "maxlat": 40.7639887, + "maxlon": -73.9548914 + }, + "nodes": [ + 9729779302, + 9729779303 + ], + "geometry": [ + { "lat": 40.7637558, "lon": -73.9548914 }, + { "lat": 40.7639887, "lon": -73.9554673 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1058909065, + "bounds": { + "minlat": 40.7637889, + "minlon": -73.9555658, + "maxlat": 40.7638493, + "maxlon": -73.9554199 + }, + "nodes": [ + 9729779304, + 9729779307 + ], + "geometry": [ + { "lat": 40.7638493, "lon": -73.9555658 }, + { "lat": 40.7637889, "lon": -73.9554199 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1058909066, + "bounds": { + "minlat": 40.7638493, + "minlon": -73.9558630, + "maxlat": 40.7639887, + "maxlon": -73.9554673 + }, + "nodes": [ + 9729779303, + 9729779304, + 9729779309, + 9729779306, + 9729779305 + ], + "geometry": [ + { "lat": 40.7639887, "lon": -73.9554673 }, + { "lat": 40.7638493, "lon": -73.9555658 }, + { "lat": 40.7638916, "lon": -73.9556712 }, + { "lat": 40.7639181, "lon": -73.9557373 }, + { "lat": 40.7639685, "lon": -73.9558630 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1058909067, + "bounds": { + "minlat": 40.7636863, + "minlon": -73.9548914, + "maxlat": 40.7638321, + "maxlon": -73.9544731 + }, + "nodes": [ + 1733612464, + 9729779308, + 9729779299, + 9729779300, + 9729779301, + 9729779302 + ], + "geometry": [ + { "lat": 40.7638321, "lon": -73.9544731 }, + { "lat": 40.7637349, "lon": -73.9545382 }, + { "lat": 40.7636863, "lon": -73.9545708 }, + { "lat": 40.7637569, "lon": -73.9547528 }, + { "lat": 40.7637565, "lon": -73.9548201 }, + { "lat": 40.7637558, "lon": -73.9548914 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1059119864, + "bounds": { + "minlat": 40.7220106, + "minlon": -73.9465847, + "maxlat": 40.7222056, + "maxlon": -73.9465548 + }, + "nodes": [ + 2987758894, + 9789356746, + 9731450849 + ], + "geometry": [ + { "lat": 40.7222056, "lon": -73.9465751 }, + { "lat": 40.7221094, "lon": -73.9465847 }, + { "lat": 40.7220106, "lon": -73.9465548 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1059119867, + "bounds": { + "minlat": 40.7208388, + "minlon": -73.9455009, + "maxlat": 40.7213919, + "maxlon": -73.9449106 + }, + "nodes": [ + 2987758901, + 6228788716, + 2987758838, + 6228788711, + 2987758899 + ], + "geometry": [ + { "lat": 40.7208388, "lon": -73.9449106 }, + { "lat": 40.7208953, "lon": -73.9449717 }, + { "lat": 40.7209002, "lon": -73.9449773 }, + { "lat": 40.7213580, "lon": -73.9454624 }, + { "lat": 40.7213919, "lon": -73.9455009 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "no", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1059119868, + "bounds": { + "minlat": 40.7213919, + "minlon": -73.9455009, + "maxlat": 40.7216560, + "maxlon": -73.9450680 + }, + "nodes": [ + 2987758899, + 9789356814, + 9789356813, + 9935605451, + 42466389 + ], + "geometry": [ + { "lat": 40.7213919, "lon": -73.9455009 }, + { "lat": 40.7214368, "lon": -73.9454274 }, + { "lat": 40.7215640, "lon": -73.9452188 }, + { "lat": 40.7215971, "lon": -73.9451646 }, + { "lat": 40.7216560, "lon": -73.9450680 } + ], + "tags": { + "highway": "residential", + "name": "Newton Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1059169120, + "bounds": { + "minlat": 40.8086957, + "minlon": -73.9902445, + "maxlat": 40.8088116, + "maxlon": -73.9901996 + }, + "nodes": [ + 8260603330, + 8260603332 + ], + "geometry": [ + { "lat": 40.8086957, "lon": -73.9902445 }, + { "lat": 40.8088116, "lon": -73.9901996 } + ], + "tags": { + "bicycle": "no", + "covered": "no", + "highway": "service", + "horse": "no", + "maxspeed": "10 mph", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1059169121, + "bounds": { + "minlat": 40.8087726, + "minlon": -73.9904974, + "maxlat": 40.8088810, + "maxlon": -73.9904504 + }, + "nodes": [ + 8260603333, + 8260603329 + ], + "geometry": [ + { "lat": 40.8088810, "lon": -73.9904504 }, + { "lat": 40.8087726, "lon": -73.9904974 } + ], + "tags": { + "bicycle": "no", + "covered": "no", + "highway": "service", + "horse": "no", + "maxspeed": "10 mph", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1059309735, + "bounds": { + "minlat": 40.7529386, + "minlon": -73.9659899, + "maxlat": 40.7529937, + "maxlon": -73.9658594 + }, + "nodes": [ + 9732870948, + 6090927937 + ], + "geometry": [ + { "lat": 40.7529386, "lon": -73.9658594 }, + { "lat": 40.7529937, "lon": -73.9659899 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "oneway": "yes", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1059314307, + "bounds": { + "minlat": 40.8133235, + "minlon": -73.9303513, + "maxlat": 40.8133843, + "maxlon": -73.9302993 + }, + "nodes": [ + 6096486615, + 529280909 + ], + "geometry": [ + { "lat": 40.8133843, "lon": -73.9302993 }, + { "lat": 40.8133235, "lon": -73.9303513 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1059314985, + "bounds": { + "minlat": 40.7617189, + "minlon": -73.9831922, + "maxlat": 40.7618811, + "maxlon": -73.9828071 + }, + "nodes": [ + 42440004, + 10173292890, + 9732912239 + ], + "geometry": [ + { "lat": 40.7617189, "lon": -73.9828071 }, + { "lat": 40.7617767, "lon": -73.9829444 }, + { "lat": 40.7618811, "lon": -73.9831922 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:lane": "advisory", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "parking:right": "yes", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1059329369, + "bounds": { + "minlat": 40.7414863, + "minlon": -74.0089072, + "maxlat": 40.7416144, + "maxlon": -74.0088735 + }, + "nodes": [ + 11027819090, + 9417132054 + ], + "geometry": [ + { "lat": 40.7414863, "lon": -74.0089072 }, + { "lat": 40.7416144, "lon": -74.0088735 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "yes|yes|not_right|no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "|||right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1059374432, + "bounds": { + "minlat": 40.7140515, + "minlon": -73.9277814, + "maxlat": 40.7141041, + "maxlon": -73.9271656 + }, + "nodes": [ + 4205919100, + 9733391628 + ], + "geometry": [ + { "lat": 40.7141041, "lon": -73.9277814 }, + { "lat": 40.7140515, "lon": -73.9271656 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1059498183, + "bounds": { + "minlat": 40.8193625, + "minlon": -73.9211017, + "maxlat": 40.8201088, + "maxlon": -73.9182831 + }, + "nodes": [ + 42749752, + 12040128376, + 7043950438, + 9734396002 + ], + "geometry": [ + { "lat": 40.8193625, "lon": -73.9182831 }, + { "lat": 40.8193856, "lon": -73.9183711 }, + { "lat": 40.8195929, "lon": -73.9191618 }, + { "lat": 40.8201088, "lon": -73.9211017 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "East 153rd Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "153rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 1059498184, + "bounds": { + "minlat": 40.8186910, + "minlon": -73.9185700, + "maxlat": 40.8193625, + "maxlon": -73.9182831 + }, + "nodes": [ + 42750600, + 42749752 + ], + "geometry": [ + { "lat": 40.8186910, "lon": -73.9185700 }, + { "lat": 40.8193625, "lon": -73.9182831 } + ], + "tags": { + "highway": "residential", + "name": "Courtlandt Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Courtland", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1059498185, + "bounds": { + "minlat": 40.8201088, + "minlon": -73.9214864, + "maxlat": 40.8202003, + "maxlon": -73.9211017 + }, + "nodes": [ + 9734396002, + 9910711709, + 42735703 + ], + "geometry": [ + { "lat": 40.8201088, "lon": -73.9211017 }, + { "lat": 40.8201796, "lon": -73.9213726 }, + { "lat": 40.8202003, "lon": -73.9214864 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "East 153rd Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "153rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 1059545194, + "bounds": { + "minlat": 40.7684416, + "minlon": -73.9615751, + "maxlat": 40.7690777, + "maxlon": -73.9611072 + }, + "nodes": [ + 42429690, + 6747157040, + 10122943665, + 42445236 + ], + "geometry": [ + { "lat": 40.7684416, "lon": -73.9615751 }, + { "lat": 40.7685006, "lon": -73.9615313 }, + { "lat": 40.7690094, "lon": -73.9611552 }, + { "lat": 40.7690777, "lon": -73.9611072 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1059551869, + "bounds": { + "minlat": 40.7275990, + "minlon": -73.9853070, + "maxlat": 40.7279586, + "maxlon": -73.9850459 + }, + "nodes": [ + 4012724171, + 8309479524, + 8841425138 + ], + "geometry": [ + { "lat": 40.7275990, "lon": -73.9853070 }, + { "lat": 40.7276536, "lon": -73.9852674 }, + { "lat": 40.7279586, "lon": -73.9850459 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1059596037, + "bounds": { + "minlat": 40.7957326, + "minlon": -73.9372797, + "maxlat": 40.7976795, + "maxlon": -73.9326614 + }, + "nodes": [ + 42448283, + 6216836451, + 5871240090, + 8797068785, + 42449843, + 6216349367, + 8797068778, + 10170834277, + 6175905215, + 42443088 + ], + "geometry": [ + { "lat": 40.7957326, "lon": -73.9326614 }, + { "lat": 40.7957890, "lon": -73.9327924 }, + { "lat": 40.7965742, "lon": -73.9346539 }, + { "lat": 40.7966297, "lon": -73.9347874 }, + { "lat": 40.7966814, "lon": -73.9349120 }, + { "lat": 40.7967270, "lon": -73.9350202 }, + { "lat": 40.7967411, "lon": -73.9350537 }, + { "lat": 40.7976281, "lon": -73.9371577 }, + { "lat": 40.7976489, "lon": -73.9372070 }, + { "lat": 40.7976795, "lon": -73.9372797 } + ], + "tags": { + "highway": "residential", + "name": "East 117th Street", + "name:ru": "Восточная 117-я стрит", + "name_1": "East 117 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1059596038, + "bounds": { + "minlat": 40.7974567, + "minlon": -73.9374499, + "maxlat": 40.7976795, + "maxlon": -73.9372797 + }, + "nodes": [ + 42443088, + 10170834279, + 4207669594 + ], + "geometry": [ + { "lat": 40.7976795, "lon": -73.9372797 }, + { "lat": 40.7976278, "lon": -73.9373192 }, + { "lat": 40.7974567, "lon": -73.9374499 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1059754075, + "bounds": { + "minlat": 40.7972178, + "minlon": -73.9756094, + "maxlat": 40.7973911, + "maxlon": -73.9755288 + }, + "nodes": [ + 9168918373, + 587812665 + ], + "geometry": [ + { "lat": 40.7972178, "lon": -73.9756094 }, + { "lat": 40.7973911, "lon": -73.9755288 } + ], + "tags": { + "destination:lanes": "|||Henry Hudson Parkway South", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "turn:lanes": "|||slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1059826031, + "bounds": { + "minlat": 40.7715807, + "minlon": -73.9563609, + "maxlat": 40.7717416, + "maxlon": -73.9562437 + }, + "nodes": [ + 9737272791, + 9447550719 + ], + "geometry": [ + { "lat": 40.7717416, "lon": -73.9562437 }, + { "lat": 40.7715807, "lon": -73.9563609 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1059928696, + "bounds": { + "minlat": 40.7149776, + "minlon": -73.9967631, + "maxlat": 40.7152905, + "maxlon": -73.9961072 + }, + "nodes": [ + 6330243011, + 6330243010, + 11496531746, + 11496531745, + 4160352515, + 9738162863, + 9738162862, + 6330243006, + 6330243025, + 9738162864, + 11496532006, + 11496532007, + 6330243005, + 11496532008, + 6330242994, + 11504615974, + 42437564 + ], + "geometry": [ + { "lat": 40.7150783, "lon": -73.9961072 }, + { "lat": 40.7152573, "lon": -73.9961286 }, + { "lat": 40.7152754, "lon": -73.9961369 }, + { "lat": 40.7152873, "lon": -73.9961535 }, + { "lat": 40.7152905, "lon": -73.9961902 }, + { "lat": 40.7152854, "lon": -73.9962425 }, + { "lat": 40.7152610, "lon": -73.9962921 }, + { "lat": 40.7152107, "lon": -73.9963424 }, + { "lat": 40.7151492, "lon": -73.9963840 }, + { "lat": 40.7150276, "lon": -73.9964415 }, + { "lat": 40.7150035, "lon": -73.9964643 }, + { "lat": 40.7149868, "lon": -73.9964977 }, + { "lat": 40.7149776, "lon": -73.9965384 }, + { "lat": 40.7149787, "lon": -73.9965944 }, + { "lat": 40.7149855, "lon": -73.9966421 }, + { "lat": 40.7149982, "lon": -73.9966813 }, + { "lat": 40.7150259, "lon": -73.9967631 } + ], + "tags": { + "access": "private", + "highway": "service", + "incline": "up", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1060571121, + "bounds": { + "minlat": 40.7056412, + "minlon": -73.9265996, + "maxlat": 40.7057095, + "maxlon": -73.9264391 + }, + "nodes": [ + 9744012711, + 9744012710, + 9744012704, + 9744012705, + 9744012709, + 9744012708, + 9744012707, + 9744012711 + ], + "geometry": [ + { "lat": 40.7056518, "lon": -73.9265889 }, + { "lat": 40.7056412, "lon": -73.9265674 }, + { "lat": 40.7056907, "lon": -73.9264427 }, + { "lat": 40.7056999, "lon": -73.9264391 }, + { "lat": 40.7057095, "lon": -73.9264484 }, + { "lat": 40.7057080, "lon": -73.9265872 }, + { "lat": 40.7057001, "lon": -73.9265996 }, + { "lat": 40.7056518, "lon": -73.9265889 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 1060585171, + "bounds": { + "minlat": 40.7134026, + "minlon": -73.9162513, + "maxlat": 40.7134778, + "maxlon": -73.9160921 + }, + "nodes": [ + 9744109077, + 9744109076, + 9744109075, + 9744109074, + 9744131396, + 9744109073, + 9744109072, + 9744109077 + ], + "geometry": [ + { "lat": 40.7134575, "lon": -73.9162513 }, + { "lat": 40.7134092, "lon": -73.9162248 }, + { "lat": 40.7134026, "lon": -73.9162004 }, + { "lat": 40.7134399, "lon": -73.9160958 }, + { "lat": 40.7134521, "lon": -73.9160921 }, + { "lat": 40.7134643, "lon": -73.9161065 }, + { "lat": 40.7134778, "lon": -73.9162396 }, + { "lat": 40.7134575, "lon": -73.9162513 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete:plates", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 1060899113, + "bounds": { + "minlat": 40.7135487, + "minlon": -73.9153846, + "maxlat": 40.7136194, + "maxlon": -73.9152767 + }, + "nodes": [ + 9744131394, + 9747646560, + 9747646559, + 9747646558, + 9747646557, + 9747646556, + 9744131394 + ], + "geometry": [ + { "lat": 40.7135625, "lon": -73.9153846 }, + { "lat": 40.7136194, "lon": -73.9152968 }, + { "lat": 40.7136148, "lon": -73.9152767 }, + { "lat": 40.7135634, "lon": -73.9152814 }, + { "lat": 40.7135487, "lon": -73.9152988 }, + { "lat": 40.7135518, "lon": -73.9153779 }, + { "lat": 40.7135625, "lon": -73.9153846 } + ], + "tags": { + "area:highway": "traffic_island", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1060975728, + "bounds": { + "minlat": 40.8201114, + "minlon": -73.9792488, + "maxlat": 40.8202703, + "maxlon": -73.9789509 + }, + "nodes": [ + 9748349223, + 9748349224 + ], + "geometry": [ + { "lat": 40.8201114, "lon": -73.9789509 }, + { "lat": 40.8202703, "lon": -73.9792488 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1061439211, + "bounds": { + "minlat": 40.7240550, + "minlon": -74.0045754, + "maxlat": 40.7241732, + "maxlon": -74.0043800 + }, + "nodes": [ + 42432127, + 5708230097, + 42430147 + ], + "geometry": [ + { "lat": 40.7240550, "lon": -74.0043800 }, + { "lat": 40.7240976, "lon": -74.0044504 }, + { "lat": 40.7241732, "lon": -74.0045754 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 1061439470, + "bounds": { + "minlat": 40.7009788, + "minlon": -73.9423470, + "maxlat": 40.7011578, + "maxlon": -73.9421730 + }, + "nodes": [ + 9752127035, + 9752127018, + 9752127034 + ], + "geometry": [ + { "lat": 40.7009788, "lon": -73.9423470 }, + { "lat": 40.7010497, "lon": -73.9422781 }, + { "lat": 40.7011578, "lon": -73.9421730 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Graham Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1061485811, + "bounds": { + "minlat": 40.7624489, + "minlon": -73.9202848, + "maxlat": 40.7628239, + "maxlon": -73.9194825 + }, + "nodes": [ + 42856546, + 7668020451, + 7949923913, + 7668020448, + 42856544 + ], + "geometry": [ + { "lat": 40.7624489, "lon": -73.9194825 }, + { "lat": 40.7624852, "lon": -73.9195596 }, + { "lat": 40.7626348, "lon": -73.9198809 }, + { "lat": 40.7627921, "lon": -73.9202169 }, + { "lat": 40.7628239, "lon": -73.9202848 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "31st Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1061485812, + "bounds": { + "minlat": 40.7635731, + "minlon": -73.9226715, + "maxlat": 40.7639664, + "maxlon": -73.9218781 + }, + "nodes": [ + 42856527, + 7668020443, + 7668020444, + 42856537 + ], + "geometry": [ + { "lat": 40.7639664, "lon": -73.9226715 }, + { "lat": 40.7639289, "lon": -73.9226103 }, + { "lat": 40.7636155, "lon": -73.9219627 }, + { "lat": 40.7635731, "lon": -73.9218781 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "31st Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1061577181, + "bounds": { + "minlat": 40.7073613, + "minlon": -74.0078932, + "maxlat": 40.7074365, + "maxlon": -74.0078076 + }, + "nodes": [ + 9753289200, + 11369490711, + 9753289202, + 9753289203 + ], + "geometry": [ + { "lat": 40.7074365, "lon": -74.0078076 }, + { "lat": 40.7074040, "lon": -74.0078446 }, + { "lat": 40.7073983, "lon": -74.0078511 }, + { "lat": 40.7073613, "lon": -74.0078932 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1061622295, + "bounds": { + "minlat": 40.7554134, + "minlon": -73.9800189, + "maxlat": 40.7556389, + "maxlon": -73.9794895 + }, + "nodes": [ + 42432693, + 3942050711, + 9753722444 + ], + "geometry": [ + { "lat": 40.7554134, "lon": -73.9794895 }, + { "lat": 40.7554669, "lon": -73.9796135 }, + { "lat": 40.7556389, "lon": -73.9800189 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "name_1": "West 45 Street", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1061622296, + "bounds": { + "minlat": 40.7566051, + "minlon": -73.9827118, + "maxlat": 40.7567712, + "maxlon": -73.9823131 + }, + "nodes": [ + 9753722445, + 10164937729, + 42430344 + ], + "geometry": [ + { "lat": 40.7566051, "lon": -73.9823131 }, + { "lat": 40.7567152, "lon": -73.9825776 }, + { "lat": 40.7567712, "lon": -73.9827118 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "name_1": "West 45 Street", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1061623142, + "bounds": { + "minlat": 40.7539937, + "minlon": -73.9746273, + "maxlat": 40.7541791, + "maxlon": -73.9741902 + }, + "nodes": [ + 9753730048, + 8073701752, + 10165986961, + 42434085 + ], + "geometry": [ + { "lat": 40.7541791, "lon": -73.9746273 }, + { "lat": 40.7541387, "lon": -73.9745317 }, + { "lat": 40.7540368, "lon": -73.9742889 }, + { "lat": 40.7539937, "lon": -73.9741902 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 46th Street", + "name:ru": "Восточная 46-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1061633368, + "bounds": { + "minlat": 40.8454999, + "minlon": -73.9787131, + "maxlat": 40.8456954, + "maxlon": -73.9787049 + }, + "nodes": [ + 103186452, + 9753804641 + ], + "geometry": [ + { "lat": 40.8456954, "lon": -73.9787049 }, + { "lat": 40.8454999, "lon": -73.9787131 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "lanes": "2", + "name": "Anderson Avenue", + "oneway": "yes", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1061693983, + "bounds": { + "minlat": 40.7341670, + "minlon": -74.0024942, + "maxlat": 40.7343413, + "maxlon": -74.0023950 + }, + "nodes": [ + 42430811, + 8307642091, + 9297714752 + ], + "geometry": [ + { "lat": 40.7343413, "lon": -74.0023950 }, + { "lat": 40.7342821, "lon": -74.0024287 }, + { "lat": 40.7341670, "lon": -74.0024942 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1061693997, + "bounds": { + "minlat": 40.8711182, + "minlon": -74.0040353, + "maxlat": 40.8713464, + "maxlon": -74.0037938 + }, + "nodes": [ + 4469429054, + 4469429064, + 4469429071, + 4469429065, + 103093310 + ], + "geometry": [ + { "lat": 40.8713464, "lon": -74.0040353 }, + { "lat": 40.8713063, "lon": -74.0040270 }, + { "lat": 40.8711897, "lon": -74.0039546 }, + { "lat": 40.8711438, "lon": -74.0038942 }, + { "lat": 40.8711182, "lon": -74.0037938 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Frank W Burr Boulevard", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Frank W Burr", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1061696311, + "bounds": { + "minlat": 40.8160672, + "minlon": -73.9903640, + "maxlat": 40.8165619, + "maxlon": -73.9891826 + }, + "nodes": [ + 103194942, + 7613378237, + 103194944, + 5341017953, + 103194948 + ], + "geometry": [ + { "lat": 40.8165619, "lon": -73.9903640 }, + { "lat": 40.8163545, "lon": -73.9899275 }, + { "lat": 40.8162707, "lon": -73.9897510 }, + { "lat": 40.8162120, "lon": -73.9896128 }, + { "lat": 40.8160672, "lon": -73.9891826 } + ], + "tags": { + "highway": "residential", + "name": "Jersey Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jersey", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 1061696312, + "bounds": { + "minlat": 40.8165619, + "minlon": -73.9903640, + "maxlat": 40.8178405, + "maxlon": -73.9897372 + }, + "nodes": [ + 103194942, + 7613378242, + 7581460876, + 7581464888, + 103235638, + 7581460879, + 7613378198, + 103112587 + ], + "geometry": [ + { "lat": 40.8165619, "lon": -73.9903640 }, + { "lat": 40.8167628, "lon": -73.9902558 }, + { "lat": 40.8169039, "lon": -73.9901798 }, + { "lat": 40.8170685, "lon": -73.9900912 }, + { "lat": 40.8172230, "lon": -73.9900080 }, + { "lat": 40.8173141, "lon": -73.9899681 }, + { "lat": 40.8173191, "lon": -73.9899659 }, + { "lat": 40.8178405, "lon": -73.9897372 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "highway": "secondary", + "name": "Palisade Avenue", + "ref": "CR 27", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1061731838, + "bounds": { + "minlat": 40.7461987, + "minlon": -73.9978228, + "maxlat": 40.7463062, + "maxlon": -73.9977458 + }, + "nodes": [ + 4205565537, + 9754548550 + ], + "geometry": [ + { "lat": 40.7461987, "lon": -73.9978228 }, + { "lat": 40.7463062, "lon": -73.9977458 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|none|none|none", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1061891617, + "bounds": { + "minlat": 40.7136544, + "minlon": -73.9388176, + "maxlat": 40.7138769, + "maxlon": -73.9388049 + }, + "nodes": [ + 9755789501, + 9947391760, + 42494201 + ], + "geometry": [ + { "lat": 40.7136544, "lon": -73.9388176 }, + { "lat": 40.7138179, "lon": -73.9388083 }, + { "lat": 40.7138769, "lon": -73.9388049 } + ], + "tags": { + "highway": "residential", + "name": "Olive Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 1061891618, + "bounds": { + "minlat": 40.7135949, + "minlon": -73.9388210, + "maxlat": 40.7136544, + "maxlon": -73.9388176 + }, + "nodes": [ + 9755789502, + 9755789501 + ], + "geometry": [ + { "lat": 40.7135949, "lon": -73.9388210 }, + { "lat": 40.7136544, "lon": -73.9388176 } + ], + "tags": { + "highway": "residential", + "name": "Olive Street", + "oneway": "yes", + "traffic_calming": "bump" + } +}, +{ + "type": "way", + "id": 1061979012, + "bounds": { + "minlat": 40.7677520, + "minlon": -73.9932376, + "maxlat": 40.7683700, + "maxlon": -73.9927860 + }, + "nodes": [ + 42430736, + 8307463094, + 8307463102, + 42430722 + ], + "geometry": [ + { "lat": 40.7683700, "lon": -73.9927860 }, + { "lat": 40.7683152, "lon": -73.9928286 }, + { "lat": 40.7678131, "lon": -73.9931915 }, + { "lat": 40.7677520, "lon": -73.9932376 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1061979013, + "bounds": { + "minlat": 40.7671310, + "minlon": -73.9936874, + "maxlat": 40.7677520, + "maxlon": -73.9932376 + }, + "nodes": [ + 42430722, + 8307463103, + 8307463084, + 42430713 + ], + "geometry": [ + { "lat": 40.7677520, "lon": -73.9932376 }, + { "lat": 40.7676953, "lon": -73.9932817 }, + { "lat": 40.7671836, "lon": -73.9936486 }, + { "lat": 40.7671310, "lon": -73.9936874 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1061979014, + "bounds": { + "minlat": 40.7671310, + "minlon": -73.9956654, + "maxlat": 40.7679647, + "maxlon": -73.9936874 + }, + "nodes": [ + 12153915855, + 3874681655, + 13701209658, + 8307463086, + 42430713 + ], + "geometry": [ + { "lat": 40.7679647, "lon": -73.9956654 }, + { "lat": 40.7679505, "lon": -73.9956316 }, + { "lat": 40.7674758, "lon": -73.9944962 }, + { "lat": 40.7672057, "lon": -73.9938504 }, + { "lat": 40.7671310, "lon": -73.9936874 } + ], + "tags": { + "cycleway:right": "track", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 52nd Street", + "name:ru": "Западная 52-я стрит", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1061979015, + "bounds": { + "minlat": 40.7658780, + "minlon": -73.9946061, + "maxlat": 40.7664978, + "maxlon": -73.9941564 + }, + "nodes": [ + 42430707, + 10111271632, + 10111318239, + 10111307785, + 42430704 + ], + "geometry": [ + { "lat": 40.7664978, "lon": -73.9941564 }, + { "lat": 40.7664475, "lon": -73.9941929 }, + { "lat": 40.7663401, "lon": -73.9942708 }, + { "lat": 40.7659353, "lon": -73.9945645 }, + { "lat": 40.7658780, "lon": -73.9946061 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1061979016, + "bounds": { + "minlat": 40.7664978, + "minlon": -73.9961292, + "maxlat": 40.7673331, + "maxlon": -73.9941564 + }, + "nodes": [ + 42430707, + 9900802714, + 5481838629, + 11866515444, + 7060282622, + 7588050919, + 4872429936, + 12153915858 + ], + "geometry": [ + { "lat": 40.7664978, "lon": -73.9941564 }, + { "lat": 40.7665662, "lon": -73.9943179 }, + { "lat": 40.7669660, "lon": -73.9952622 }, + { "lat": 40.7671558, "lon": -73.9957106 }, + { "lat": 40.7671733, "lon": -73.9957519 }, + { "lat": 40.7672448, "lon": -73.9959207 }, + { "lat": 40.7673182, "lon": -73.9960940 }, + { "lat": 40.7673331, "lon": -73.9961292 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1061993519, + "bounds": { + "minlat": 40.7125440, + "minlon": -74.0076683, + "maxlat": 40.7130447, + "maxlon": -74.0072254 + }, + "nodes": [ + 2821304137, + 8262309226, + 4742697051, + 4742692779, + 6456908261, + 2821304138 + ], + "geometry": [ + { "lat": 40.7130447, "lon": -74.0072254 }, + { "lat": 40.7129586, "lon": -74.0073003 }, + { "lat": 40.7128347, "lon": -74.0074080 }, + { "lat": 40.7126923, "lon": -74.0075319 }, + { "lat": 40.7126176, "lon": -74.0075952 }, + { "lat": 40.7125440, "lon": -74.0076683 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-18:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1062029895, + "bounds": { + "minlat": 40.7314416, + "minlon": -73.9948040, + "maxlat": 40.7316016, + "maxlon": -73.9944260 + }, + "nodes": [ + 42456303, + 8309478878, + 9756897963 + ], + "geometry": [ + { "lat": 40.7316016, "lon": -73.9948040 }, + { "lat": 40.7315583, "lon": -73.9947020 }, + { "lat": 40.7314416, "lon": -73.9944260 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 8th Street", + "name:en": "East 8th Street", + "name:ru": "Восточная 8-я стрит", + "name_1": "East 8 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2142493", + "wikipedia": "en:8th Street and St. Mark's Place" + } +}, +{ + "type": "way", + "id": 1062097097, + "bounds": { + "minlat": 40.8061587, + "minlon": -73.9504852, + "maxlat": 40.8063272, + "maxlon": -73.9503603 + }, + "nodes": [ + 9757416137, + 4207716488 + ], + "geometry": [ + { "lat": 40.8063272, "lon": -73.9503603 }, + { "lat": 40.8061587, "lon": -73.9504852 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1063013372, + "bounds": { + "minlat": 40.7248903, + "minlon": -73.9364690, + "maxlat": 40.7250759, + "maxlon": -73.9362066 + }, + "nodes": [ + 9765073782, + 9765073784, + 9765073783 + ], + "geometry": [ + { "lat": 40.7250759, "lon": -73.9364690 }, + { "lat": 40.7250249, "lon": -73.9363975 }, + { "lat": 40.7248903, "lon": -73.9362066 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1063024317, + "bounds": { + "minlat": 40.7257645, + "minlon": -73.9315040, + "maxlat": 40.7260795, + "maxlon": -73.9311837 + }, + "nodes": [ + 9765199850, + 9765199853, + 9765199854, + 9765199855 + ], + "geometry": [ + { "lat": 40.7260795, "lon": -73.9315040 }, + { "lat": 40.7259395, "lon": -73.9311837 }, + { "lat": 40.7258533, "lon": -73.9313094 }, + { "lat": 40.7257645, "lon": -73.9314757 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1063254528, + "bounds": { + "minlat": 40.8409947, + "minlon": -73.9699307, + "maxlat": 40.8411033, + "maxlon": -73.9696000 + }, + "nodes": [ + 9767024641, + 7672312134, + 5560289555, + 103137183 + ], + "geometry": [ + { "lat": 40.8411033, "lon": -73.9699307 }, + { "lat": 40.8410046, "lon": -73.9696700 }, + { "lat": 40.8410013, "lon": -73.9696613 }, + { "lat": 40.8409947, "lon": -73.9696000 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Orchard Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Orchard", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020", + "turn:lanes:forward": "left;through|right" + } +}, +{ + "type": "way", + "id": 1063268459, + "bounds": { + "minlat": 40.7493679, + "minlon": -73.9178847, + "maxlat": 40.7494111, + "maxlon": -73.9174560 + }, + "nodes": [ + 42833548, + 11467993917, + 2699913202 + ], + "geometry": [ + { "lat": 40.7493679, "lon": -73.9174560 }, + { "lat": 40.7493774, "lon": -73.9175424 }, + { "lat": 40.7494111, "lon": -73.9178847 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "39th Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1063292710, + "bounds": { + "minlat": 40.7937567, + "minlon": -73.9341084, + "maxlat": 40.7943904, + "maxlon": -73.9336715 + }, + "nodes": [ + 42445430, + 7924346865, + 42435403 + ], + "geometry": [ + { "lat": 40.7937567, "lon": -73.9341084 }, + { "lat": 40.7943335, "lon": -73.9337083 }, + { "lat": 40.7943904, "lon": -73.9336715 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Pleasant Avenue", + "old_name:1811-1879": "Avenue A", + "old_name:1954-1957": "Paladino Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q16932984", + "wikipedia": "en:Pleasant Avenue" + } +}, +{ + "type": "way", + "id": 1063489731, + "bounds": { + "minlat": 40.8033477, + "minlon": -74.0197175, + "maxlat": 40.8035681, + "maxlon": -74.0195261 + }, + "nodes": [ + 5344617793, + 9768819018 + ], + "geometry": [ + { "lat": 40.8035681, "lon": -74.0195261 }, + { "lat": 40.8033477, "lon": -74.0197175 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1063597966, + "bounds": { + "minlat": 40.8817887, + "minlon": -73.9576251, + "maxlat": 40.8818854, + "maxlon": -73.9574271 + }, + "nodes": [ + 8219172716, + 9769612728 + ], + "geometry": [ + { "lat": 40.8818854, "lon": -73.9576251 }, + { "lat": 40.8817887, "lon": -73.9574271 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1063735560, + "bounds": { + "minlat": 40.7286749, + "minlon": -73.9859863, + "maxlat": 40.7287373, + "maxlon": -73.9859423 + }, + "nodes": [ + 9770582310, + 9770582312, + 9770582311 + ], + "geometry": [ + { "lat": 40.7287373, "lon": -73.9859423 }, + { "lat": 40.7287199, "lon": -73.9859544 }, + { "lat": 40.7286749, "lon": -73.9859863 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1063807609, + "bounds": { + "minlat": 40.7230820, + "minlon": -73.9131700, + "maxlat": 40.7232625, + "maxlon": -73.9129194 + }, + "nodes": [ + 9771248817, + 42854204 + ], + "geometry": [ + { "lat": 40.7232625, "lon": -73.9129194 }, + { "lat": 40.7230820, "lon": -73.9131700 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "58th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "56th", + "tiger:name_type": "Ter", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1064928434, + "bounds": { + "minlat": 40.7375381, + "minlon": -73.9335602, + "maxlat": 40.7377883, + "maxlon": -73.9328443 + }, + "nodes": [ + 277385120, + 9981925169, + 9179114970, + 9179114971, + 9179114968, + 9981925168, + 9179114969, + 277385116, + 9981925175, + 9179114967, + 9179114966, + 277385119 + ], + "geometry": [ + { "lat": 40.7375381, "lon": -73.9328443 }, + { "lat": 40.7375759, "lon": -73.9331309 }, + { "lat": 40.7375863, "lon": -73.9331898 }, + { "lat": 40.7376003, "lon": -73.9332543 }, + { "lat": 40.7376183, "lon": -73.9333123 }, + { "lat": 40.7376345, "lon": -73.9333626 }, + { "lat": 40.7376546, "lon": -73.9334096 }, + { "lat": 40.7376796, "lon": -73.9334549 }, + { "lat": 40.7377007, "lon": -73.9334839 }, + { "lat": 40.7377212, "lon": -73.9335078 }, + { "lat": 40.7377511, "lon": -73.9335340 }, + { "lat": 40.7377883, "lon": -73.9335602 } + ], + "tags": { + "foot": "no", + "highway": "unclassified", + "lanes": "1", + "name": "Gale Avenue", + "oneway": "yes", + "sidewalk:both": "no" + } +}, +{ + "type": "way", + "id": 1065415708, + "bounds": { + "minlat": 40.8259698, + "minlon": -73.9317458, + "maxlat": 40.8262081, + "maxlon": -73.9317256 + }, + "nodes": [ + 2611640935, + 2799382021, + 2611678452 + ], + "geometry": [ + { "lat": 40.8259698, "lon": -73.9317256 }, + { "lat": 40.8260966, "lon": -73.9317366 }, + { "lat": 40.8262081, "lon": -73.9317458 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1065415709, + "bounds": { + "minlat": 40.8262081, + "minlon": -73.9317951, + "maxlat": 40.8267902, + "maxlon": -73.9317458 + }, + "nodes": [ + 2611678471, + 2611678452 + ], + "geometry": [ + { "lat": 40.8267902, "lon": -73.9317951 }, + { "lat": 40.8262081, "lon": -73.9317458 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1065499241, + "bounds": { + "minlat": 40.7320981, + "minlon": -73.9423632, + "maxlat": 40.7324311, + "maxlon": -73.9407785 + }, + "nodes": [ + 7838488172, + 7838488173, + 7838488175, + 3430733407 + ], + "geometry": [ + { "lat": 40.7324311, "lon": -73.9407785 }, + { "lat": 40.7320981, "lon": -73.9417643 }, + { "lat": 40.7321515, "lon": -73.9422800 }, + { "lat": 40.7322800, "lon": -73.9423632 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1065499242, + "bounds": { + "minlat": 40.7322322, + "minlon": -73.9427296, + "maxlat": 40.7322800, + "maxlon": -73.9423632 + }, + "nodes": [ + 3430733406, + 9788947422, + 3430733370, + 3430733407 + ], + "geometry": [ + { "lat": 40.7322322, "lon": -73.9427296 }, + { "lat": 40.7322382, "lon": -73.9426459 }, + { "lat": 40.7322417, "lon": -73.9426058 }, + { "lat": 40.7322800, "lon": -73.9423632 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1065572643, + "bounds": { + "minlat": 40.7068929, + "minlon": -73.9546961, + "maxlat": 40.7070132, + "maxlon": -73.9541580 + }, + "nodes": [ + 9785858292, + 9785858293, + 9785858286, + 12931973738, + 10880783976, + 12931973741, + 9785858285, + 9785858294, + 9785858291, + 9785858290, + 9785858289, + 9785858288, + 12931973739, + 9785858287, + 9785858292 + ], + "geometry": [ + { "lat": 40.7068929, "lon": -73.9542029 }, + { "lat": 40.7069327, "lon": -73.9541818 }, + { "lat": 40.7069750, "lon": -73.9541580 }, + { "lat": 40.7069772, "lon": -73.9541894 }, + { "lat": 40.7069891, "lon": -73.9543567 }, + { "lat": 40.7070118, "lon": -73.9546768 }, + { "lat": 40.7070132, "lon": -73.9546961 }, + { "lat": 40.7069798, "lon": -73.9546543 }, + { "lat": 40.7069028, "lon": -73.9545682 }, + { "lat": 40.7069118, "lon": -73.9545674 }, + { "lat": 40.7069163, "lon": -73.9545639 }, + { "lat": 40.7069240, "lon": -73.9545500 }, + { "lat": 40.7069034, "lon": -73.9542509 }, + { "lat": 40.7069011, "lon": -73.9542179 }, + { "lat": 40.7068929, "lon": -73.9542029 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1065572645, + "bounds": { + "minlat": 40.7068636, + "minlon": -73.9545682, + "maxlat": 40.7069240, + "maxlon": -73.9542029 + }, + "nodes": [ + 9785858291, + 9785858297, + 9785858296, + 9785858298, + 9785858295, + 9785858299, + 9785858300, + 9785858292, + 9785858287, + 12931973739, + 9785858288, + 9785858289, + 9785858290, + 9785858291 + ], + "geometry": [ + { "lat": 40.7069028, "lon": -73.9545682 }, + { "lat": 40.7068859, "lon": -73.9545522 }, + { "lat": 40.7068946, "lon": -73.9545382 }, + { "lat": 40.7068986, "lon": -73.9545277 }, + { "lat": 40.7068729, "lon": -73.9542763 }, + { "lat": 40.7068636, "lon": -73.9542451 }, + { "lat": 40.7068837, "lon": -73.9542107 }, + { "lat": 40.7068929, "lon": -73.9542029 }, + { "lat": 40.7069011, "lon": -73.9542179 }, + { "lat": 40.7069034, "lon": -73.9542509 }, + { "lat": 40.7069240, "lon": -73.9545500 }, + { "lat": 40.7069163, "lon": -73.9545639 }, + { "lat": 40.7069118, "lon": -73.9545674 }, + { "lat": 40.7069028, "lon": -73.9545682 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1065572646, + "bounds": { + "minlat": 40.7069750, + "minlon": -73.9543567, + "maxlat": 40.7071115, + "maxlon": -73.9541272 + }, + "nodes": [ + 9785858301, + 2838022942, + 2838022930, + 12931973736, + 10880783976, + 12931973738, + 9785858286, + 9776829370, + 9785858303, + 9776829363, + 9785858304, + 9785858301 + ], + "geometry": [ + { "lat": 40.7070994, "lon": -73.9543247 }, + { "lat": 40.7070640, "lon": -73.9543350 }, + { "lat": 40.7070330, "lon": -73.9543440 }, + { "lat": 40.7070087, "lon": -73.9543510 }, + { "lat": 40.7069891, "lon": -73.9543567 }, + { "lat": 40.7069772, "lon": -73.9541894 }, + { "lat": 40.7069750, "lon": -73.9541580 }, + { "lat": 40.7070169, "lon": -73.9541355 }, + { "lat": 40.7070366, "lon": -73.9541272 }, + { "lat": 40.7070476, "lon": -73.9541363 }, + { "lat": 40.7071115, "lon": -73.9543212 }, + { "lat": 40.7070994, "lon": -73.9543247 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1065572649, + "bounds": { + "minlat": 40.7067972, + "minlon": -73.9541430, + "maxlat": 40.7069413, + "maxlon": -73.9534829 + }, + "nodes": [ + 9785858306, + 9785858314, + 9785858313, + 9785858312, + 9785858311, + 13071370246, + 13071365886, + 9785858310, + 9785858309, + 13071365884, + 9785858308, + 9785858307, + 9785858305, + 9785858306 + ], + "geometry": [ + { "lat": 40.7067972, "lon": -73.9541430 }, + { "lat": 40.7069120, "lon": -73.9540693 }, + { "lat": 40.7069413, "lon": -73.9540502 }, + { "lat": 40.7069377, "lon": -73.9540478 }, + { "lat": 40.7069359, "lon": -73.9540414 }, + { "lat": 40.7069337, "lon": -73.9540121 }, + { "lat": 40.7069199, "lon": -73.9538314 }, + { "lat": 40.7069116, "lon": -73.9537224 }, + { "lat": 40.7068275, "lon": -73.9534829 }, + { "lat": 40.7068328, "lon": -73.9535466 }, + { "lat": 40.7068705, "lon": -73.9540227 }, + { "lat": 40.7068695, "lon": -73.9540300 }, + { "lat": 40.7068653, "lon": -73.9540410 }, + { "lat": 40.7067972, "lon": -73.9541430 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1065572650, + "bounds": { + "minlat": 40.7067609, + "minlon": -73.9541430, + "maxlat": 40.7068705, + "maxlon": -73.9534829 + }, + "nodes": [ + 9785858306, + 9785890820, + 9785858315, + 2838354369, + 2838354368, + 2838354367, + 2838354366, + 2838354365, + 2838354364, + 2838354363, + 2838354362, + 9755373415, + 9785858309, + 13071365884, + 9785858308, + 9785858307, + 9785858305, + 9785858306 + ], + "geometry": [ + { "lat": 40.7067972, "lon": -73.9541430 }, + { "lat": 40.7067858, "lon": -73.9541305 }, + { "lat": 40.7067609, "lon": -73.9541030 }, + { "lat": 40.7068212, "lon": -73.9540130 }, + { "lat": 40.7068139, "lon": -73.9539333 }, + { "lat": 40.7068075, "lon": -73.9538635 }, + { "lat": 40.7068022, "lon": -73.9537894 }, + { "lat": 40.7067976, "lon": -73.9537248 }, + { "lat": 40.7067922, "lon": -73.9536504 }, + { "lat": 40.7067873, "lon": -73.9535812 }, + { "lat": 40.7067713, "lon": -73.9535009 }, + { "lat": 40.7068145, "lon": -73.9534870 }, + { "lat": 40.7068275, "lon": -73.9534829 }, + { "lat": 40.7068328, "lon": -73.9535466 }, + { "lat": 40.7068705, "lon": -73.9540227 }, + { "lat": 40.7068695, "lon": -73.9540300 }, + { "lat": 40.7068653, "lon": -73.9540410 }, + { "lat": 40.7067972, "lon": -73.9541430 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1065572651, + "bounds": { + "minlat": 40.7069116, + "minlon": -73.9540502, + "maxlat": 40.7069994, + "maxlon": -73.9537224 + }, + "nodes": [ + 9785858313, + 9785890817, + 9776829369, + 9785890818, + 9785890819, + 9776829368, + 9785858310, + 13071365886, + 13071370246, + 9785858311, + 9785858312, + 9785858313 + ], + "geometry": [ + { "lat": 40.7069413, "lon": -73.9540502 }, + { "lat": 40.7069490, "lon": -73.9540502 }, + { "lat": 40.7069798, "lon": -73.9540376 }, + { "lat": 40.7069948, "lon": -73.9540249 }, + { "lat": 40.7069994, "lon": -73.9540107 }, + { "lat": 40.7069963, "lon": -73.9539910 }, + { "lat": 40.7069116, "lon": -73.9537224 }, + { "lat": 40.7069199, "lon": -73.9538314 }, + { "lat": 40.7069337, "lon": -73.9540121 }, + { "lat": 40.7069359, "lon": -73.9540414 }, + { "lat": 40.7069377, "lon": -73.9540478 }, + { "lat": 40.7069413, "lon": -73.9540502 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1065990940, + "bounds": { + "minlat": 40.7950544, + "minlon": -73.9783805, + "maxlat": 40.7962058, + "maxlon": -73.9765521 + }, + "nodes": [ + 9168918345, + 9789372024, + 9789372025, + 9789372026, + 9789372027, + 7910052395 + ], + "geometry": [ + { "lat": 40.7950544, "lon": -73.9783805 }, + { "lat": 40.7952120, "lon": -73.9782339 }, + { "lat": 40.7955194, "lon": -73.9779622 }, + { "lat": 40.7958994, "lon": -73.9772299 }, + { "lat": 40.7960570, "lon": -73.9768431 }, + { "lat": 40.7962058, "lon": -73.9765521 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1066115920, + "bounds": { + "minlat": 40.8549089, + "minlon": -73.9767211, + "maxlat": 40.8556371, + "maxlon": -73.9759329 + }, + "nodes": [ + 103140893, + 7561327498, + 475228223, + 7407574876, + 7419012844 + ], + "geometry": [ + { "lat": 40.8549089, "lon": -73.9767211 }, + { "lat": 40.8553639, "lon": -73.9762286 }, + { "lat": 40.8554919, "lon": -73.9760901 }, + { "lat": 40.8555027, "lon": -73.9760783 }, + { "lat": 40.8556371, "lon": -73.9759329 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "name": "Fletcher Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fletcher", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1067164445, + "bounds": { + "minlat": 40.8203857, + "minlon": -73.9269460, + "maxlat": 40.8207281, + "maxlon": -73.9267891 + }, + "nodes": [ + 42758665, + 10133472994, + 7557697912 + ], + "geometry": [ + { "lat": 40.8203857, "lon": -73.9269460 }, + { "lat": 40.8204763, "lon": -73.9269037 }, + { "lat": 40.8207281, "lon": -73.9267891 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed:type": "US-NY:urban", + "name": "Cedar Lane", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cedar", + "tiger:name_type": "Ln", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1067164446, + "bounds": { + "minlat": 40.8200259, + "minlon": -73.9269460, + "maxlat": 40.8203857, + "maxlon": -73.9265374 + }, + "nodes": [ + 42758665, + 12162740222, + 6839004633, + 10133486278, + 12162740223, + 12162740225, + 12162740224, + 42741432, + 12162740226, + 12162740227, + 2409018665 + ], + "geometry": [ + { "lat": 40.8203857, "lon": -73.9269460 }, + { "lat": 40.8201997, "lon": -73.9268043 }, + { "lat": 40.8201642, "lon": -73.9267772 }, + { "lat": 40.8201394, "lon": -73.9267570 }, + { "lat": 40.8201228, "lon": -73.9267427 }, + { "lat": 40.8201061, "lon": -73.9267247 }, + { "lat": 40.8200898, "lon": -73.9267061 }, + { "lat": 40.8200762, "lon": -73.9266837 }, + { "lat": 40.8200650, "lon": -73.9266639 }, + { "lat": 40.8200556, "lon": -73.9266396 }, + { "lat": 40.8200259, "lon": -73.9265374 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 151st Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "151st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1067440045, + "bounds": { + "minlat": 40.7035762, + "minlon": -73.9810717, + "maxlat": 40.7042290, + "maxlon": -73.9810200 + }, + "nodes": [ + 42479472, + 10725896484, + 42472734 + ], + "geometry": [ + { "lat": 40.7042290, "lon": -73.9810200 }, + { "lat": 40.7036292, "lon": -73.9810675 }, + { "lat": 40.7035762, "lon": -73.9810717 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Hudson Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1067440048, + "bounds": { + "minlat": 40.7015605, + "minlon": -73.9876747, + "maxlat": 40.7016424, + "maxlon": -73.9876550 + }, + "nodes": [ + 9800456565, + 10722370786, + 42469205 + ], + "geometry": [ + { "lat": 40.7016424, "lon": -73.9876550 }, + { "lat": 40.7016180, "lon": -73.9876609 }, + { "lat": 40.7015605, "lon": -73.9876747 } + ], + "tags": { + "covered": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Pearl Street", + "oneway": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1067440049, + "bounds": { + "minlat": 40.7015132, + "minlon": -73.9876860, + "maxlat": 40.7015605, + "maxlon": -73.9876747 + }, + "nodes": [ + 42469205, + 9800456566 + ], + "geometry": [ + { "lat": 40.7015605, "lon": -73.9876747 }, + { "lat": 40.7015132, "lon": -73.9876860 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Pearl Street", + "oneway": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1067440050, + "bounds": { + "minlat": 40.7038340, + "minlon": -73.9894428, + "maxlat": 40.7038572, + "maxlon": -73.9889306 + }, + "nodes": [ + 9800456568, + 10170379773, + 42462219 + ], + "geometry": [ + { "lat": 40.7038572, "lon": -73.9894428 }, + { "lat": 40.7038359, "lon": -73.9889853 }, + { "lat": 40.7038340, "lon": -73.9889306 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:surface": "paving_stones", + "highway": "residential", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1067440051, + "bounds": { + "minlat": 40.7038572, + "minlon": -73.9896480, + "maxlat": 40.7038643, + "maxlon": -73.9894428 + }, + "nodes": [ + 9800456567, + 8262935507, + 42472714, + 8262935515, + 9800456568 + ], + "geometry": [ + { "lat": 40.7038643, "lon": -73.9896480 }, + { "lat": 40.7038635, "lon": -73.9896296 }, + { "lat": 40.7038599, "lon": -73.9895376 }, + { "lat": 40.7038576, "lon": -73.9894616 }, + { "lat": 40.7038572, "lon": -73.9894428 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1067440052, + "bounds": { + "minlat": 40.7037568, + "minlon": -73.9875523, + "maxlat": 40.7037882, + "maxlon": -73.9866077 + }, + "nodes": [ + 42469184, + 8262935916, + 10725916735, + 9928127509, + 42472725 + ], + "geometry": [ + { "lat": 40.7037882, "lon": -73.9875523 }, + { "lat": 40.7037868, "lon": -73.9874966 }, + { "lat": 40.7037603, "lon": -73.9867130 }, + { "lat": 40.7037592, "lon": -73.9866779 }, + { "lat": 40.7037568, "lon": -73.9866077 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:left:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1067449180, + "bounds": { + "minlat": 40.7316248, + "minlon": -73.9966562, + "maxlat": 40.7318643, + "maxlon": -73.9960959 + }, + "nodes": [ + 42433354, + 8309478839, + 5784502859, + 9800536167 + ], + "geometry": [ + { "lat": 40.7318643, "lon": -73.9966562 }, + { "lat": 40.7318223, "lon": -73.9965575 }, + { "lat": 40.7317788, "lon": -73.9964577 }, + { "lat": 40.7316248, "lon": -73.9960959 } + ], + "tags": { + "access": "permissive", + "attraction": "yes", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "private", + "name": "Washington Mews", + "name:etymology:wikidata": "Q909592", + "sidewalk:both": "separate", + "surface": "concrete", + "tourism": "yes", + "wikidata": "Q4018413", + "wikipedia": "en:Washington Mews" + } +}, +{ + "type": "way", + "id": 1067449185, + "bounds": { + "minlat": 40.7312141, + "minlon": -73.9952332, + "maxlat": 40.7312576, + "maxlon": -73.9951339 + }, + "nodes": [ + 5784502858, + 8309478843, + 42433356 + ], + "geometry": [ + { "lat": 40.7312576, "lon": -73.9952332 }, + { "lat": 40.7312457, "lon": -73.9952053 }, + { "lat": 40.7312141, "lon": -73.9951339 } + ], + "tags": { + "access": "permissive", + "attraction": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle": "private", + "name": "Washington Mews", + "name:etymology:wikidata": "Q909592", + "sidewalk:both": "separate", + "surface": "asphalt", + "tourism": "yes", + "wikidata": "Q4018413", + "wikipedia": "en:Washington Mews" + } +}, +{ + "type": "way", + "id": 1067455316, + "bounds": { + "minlat": 40.7016424, + "minlon": -73.9876550, + "maxlat": 40.7023297, + "maxlon": -73.9876139 + }, + "nodes": [ + 9800597453, + 598054770, + 598054735, + 9800456565 + ], + "geometry": [ + { "lat": 40.7023297, "lon": -73.9876367 }, + { "lat": 40.7019899, "lon": -73.9876536 }, + { "lat": 40.7018138, "lon": -73.9876139 }, + { "lat": 40.7016424, "lon": -73.9876550 } + ], + "tags": { + "covered": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Pearl Street", + "oneway": "yes", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1067641536, + "bounds": { + "minlat": 40.8338346, + "minlon": -73.9482964, + "maxlat": 40.8341197, + "maxlon": -73.9482040 + }, + "nodes": [ + 595352906, + 11295759935, + 595352934, + 9801962061 + ], + "geometry": [ + { "lat": 40.8341197, "lon": -73.9482127 }, + { "lat": 40.8340881, "lon": -73.9482206 }, + { "lat": 40.8338755, "lon": -73.9482964 }, + { "lat": 40.8338346, "lon": -73.9482040 } + ], + "tags": { + "highway": "residential", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1067641537, + "bounds": { + "minlat": 40.8330613, + "minlon": -73.9469172, + "maxlat": 40.8332352, + "maxlon": -73.9465126 + }, + "nodes": [ + 587934139, + 9801962062 + ], + "geometry": [ + { "lat": 40.8332352, "lon": -73.9469172 }, + { "lat": 40.8330613, "lon": -73.9465126 } + ], + "tags": { + "highway": "residential", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1067728687, + "bounds": { + "minlat": 40.7079294, + "minlon": -74.0166109, + "maxlat": 40.7081724, + "maxlon": -74.0162175 + }, + "nodes": [ + 9802614798, + 10291808121, + 9802614799, + 10291808120, + 4876394042, + 42427411 + ], + "geometry": [ + { "lat": 40.7079294, "lon": -74.0162175 }, + { "lat": 40.7079881, "lon": -74.0162913 }, + { "lat": 40.7080469, "lon": -74.0163763 }, + { "lat": 40.7080983, "lon": -74.0164620 }, + { "lat": 40.7081258, "lon": -74.0165162 }, + { "lat": 40.7081724, "lon": -74.0166109 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1067728688, + "bounds": { + "minlat": 40.7081012, + "minlon": -74.0173040, + "maxlat": 40.7083634, + "maxlon": -74.0166595 + }, + "nodes": [ + 9802614800, + 10612369331, + 9802614801, + 9802614802 + ], + "geometry": [ + { "lat": 40.7083634, "lon": -74.0173040 }, + { "lat": 40.7081626, "lon": -74.0168068 }, + { "lat": 40.7081410, "lon": -74.0167530 }, + { "lat": 40.7081012, "lon": -74.0166595 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1067731737, + "bounds": { + "minlat": 40.7633794, + "minlon": -73.9485345, + "maxlat": 40.7634635, + "maxlon": -73.9484168 + }, + "nodes": [ + 8265114653, + 9913669041, + 3569402531 + ], + "geometry": [ + { "lat": 40.7633794, "lon": -73.9485345 }, + { "lat": 40.7633966, "lon": -73.9485105 }, + { "lat": 40.7634635, "lon": -73.9484168 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1067778272, + "bounds": { + "minlat": 40.7387624, + "minlon": -74.0063602, + "maxlat": 40.7387639, + "maxlon": -74.0056350 + }, + "nodes": [ + 9802967325, + 10305311705, + 12988216586, + 9802967326 + ], + "geometry": [ + { "lat": 40.7387624, "lon": -74.0063602 }, + { "lat": 40.7387631, "lon": -74.0060020 }, + { "lat": 40.7387635, "lon": -74.0057998 }, + { "lat": 40.7387639, "lon": -74.0056350 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Horatio Street", + "name:etymology:wikidata": "Q365124", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1067778273, + "bounds": { + "minlat": 40.7387639, + "minlon": -74.0056350, + "maxlat": 40.7387641, + "maxlon": -74.0055102 + }, + "nodes": [ + 9802967326, + 8307463654, + 42431503 + ], + "geometry": [ + { "lat": 40.7387639, "lon": -74.0056350 }, + { "lat": 40.7387639, "lon": -74.0056130 }, + { "lat": 40.7387641, "lon": -74.0055102 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Horatio Street", + "name:etymology:wikidata": "Q365124", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1067793237, + "bounds": { + "minlat": 40.8745160, + "minlon": -74.0063311, + "maxlat": 40.8747247, + "maxlon": -74.0060218 + }, + "nodes": [ + 103288379, + 9803099411, + 9803099410, + 9803099409, + 103288385 + ], + "geometry": [ + { "lat": 40.8747247, "lon": -74.0060218 }, + { "lat": 40.8746962, "lon": -74.0061159 }, + { "lat": 40.8746375, "lon": -74.0062402 }, + { "lat": 40.8745763, "lon": -74.0063181 }, + { "lat": 40.8745160, "lon": -74.0063311 } + ], + "tags": { + "highway": "residential", + "name": "Frank W Burr Boulevard", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Frank W Burr", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1067793238, + "bounds": { + "minlat": 40.8745160, + "minlon": -74.0064136, + "maxlat": 40.8747005, + "maxlon": -74.0063311 + }, + "nodes": [ + 103288385, + 4469436717, + 9803099413, + 9803099414 + ], + "geometry": [ + { "lat": 40.8745160, "lon": -74.0063311 }, + { "lat": 40.8745811, "lon": -74.0063480 }, + { "lat": 40.8746838, "lon": -74.0063815 }, + { "lat": 40.8747005, "lon": -74.0064136 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1067793239, + "bounds": { + "minlat": 40.8744971, + "minlon": -74.0064231, + "maxlat": 40.8747005, + "maxlon": -74.0063642 + }, + "nodes": [ + 9803099414, + 9803099415, + 9803099416, + 9803107717 + ], + "geometry": [ + { "lat": 40.8747005, "lon": -74.0064136 }, + { "lat": 40.8746731, "lon": -74.0064231 }, + { "lat": 40.8745748, "lon": -74.0063949 }, + { "lat": 40.8744971, "lon": -74.0063642 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1067793240, + "bounds": { + "minlat": 40.8744971, + "minlon": -74.0063642, + "maxlat": 40.8745160, + "maxlon": -74.0063311 + }, + "nodes": [ + 9803107717, + 103288385 + ], + "geometry": [ + { "lat": 40.8744971, "lon": -74.0063642 }, + { "lat": 40.8745160, "lon": -74.0063311 } + ], + "tags": { + "highway": "residential", + "name": "Frank W Burr Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Frank W Burr", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1068067607, + "bounds": { + "minlat": 40.7177400, + "minlon": -74.0041540, + "maxlat": 40.7179114, + "maxlon": -74.0040126 + }, + "nodes": [ + 42448146, + 8307641767, + 9805151007 + ], + "geometry": [ + { "lat": 40.7177400, "lon": -74.0041540 }, + { "lat": 40.7177863, "lon": -74.0041158 }, + { "lat": 40.7179114, "lon": -74.0040126 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "name": "Franklin Place", + "name:etymology:wikidata": "Q34969", + "name:ko": "프랭클린 플레이스", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1068067608, + "bounds": { + "minlat": 40.7158297, + "minlon": -74.0155049, + "maxlat": 40.7158827, + "maxlon": -74.0153827 + }, + "nodes": [ + 11432613324, + 42429630 + ], + "geometry": [ + { "lat": 40.7158827, "lon": -74.0155049 }, + { "lat": 40.7158297, "lon": -74.0153827 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1068067609, + "bounds": { + "minlat": 40.7162693, + "minlon": -74.0164449, + "maxlat": 40.7162867, + "maxlon": -74.0163497 + }, + "nodes": [ + 11432613325, + 11432613111, + 11432613112, + 42429633 + ], + "geometry": [ + { "lat": 40.7162693, "lon": -74.0163497 }, + { "lat": 40.7162759, "lon": -74.0163730 }, + { "lat": 40.7162814, "lon": -74.0164018 }, + { "lat": 40.7162867, "lon": -74.0164449 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1068246255, + "bounds": { + "minlat": 40.8009841, + "minlon": -73.9348736, + "maxlat": 40.8014525, + "maxlon": -73.9345304 + }, + "nodes": [ + 42443105, + 4980851557, + 3931534872 + ], + "geometry": [ + { "lat": 40.8014525, "lon": -73.9345304 }, + { "lat": 40.8013843, "lon": -73.9345818 }, + { "lat": 40.8009841, "lon": -73.9348736 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1068246256, + "bounds": { + "minlat": 40.8019596, + "minlon": -73.9341730, + "maxlat": 40.8020916, + "maxlon": -73.9340754 + }, + "nodes": [ + 3786728678, + 7925258655, + 3786728679 + ], + "geometry": [ + { "lat": 40.8020916, "lon": -73.9340754 }, + { "lat": 40.8020305, "lon": -73.9341194 }, + { "lat": 40.8019596, "lon": -73.9341730 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "turn:lanes": "through|through|none|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1068266120, + "bounds": { + "minlat": 40.7287790, + "minlon": -73.9844432, + "maxlat": 40.7291097, + "maxlon": -73.9841953 + }, + "nodes": [ + 42430903, + 8309479508, + 8841425137 + ], + "geometry": [ + { "lat": 40.7287790, "lon": -73.9844432 }, + { "lat": 40.7288338, "lon": -73.9844014 }, + { "lat": 40.7291097, "lon": -73.9841953 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1068409393, + "bounds": { + "minlat": 40.7806434, + "minlon": -74.0097664, + "maxlat": 40.7807898, + "maxlon": -74.0094231 + }, + "nodes": [ + 9807964109, + 5910252632, + 308693081 + ], + "geometry": [ + { "lat": 40.7806434, "lon": -74.0094231 }, + { "lat": 40.7806822, "lon": -74.0095110 }, + { "lat": 40.7807898, "lon": -74.0097664 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "Riverbend Drive", + "oneway": "yes", + "source:geometry": "Bing", + "source:name": "TIGER", + "source:oneway": "Bing;guess", + "surface": "asphalt", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 1068446964, + "bounds": { + "minlat": 40.7081724, + "minlon": -74.0168193, + "maxlat": 40.7082678, + "maxlon": -74.0166109 + }, + "nodes": [ + 42427411, + 7728026093, + 9808249305 + ], + "geometry": [ + { "lat": 40.7081724, "lon": -74.0166109 }, + { "lat": 40.7082140, "lon": -74.0166981 }, + { "lat": 40.7082678, "lon": -74.0168193 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1068493214, + "bounds": { + "minlat": 40.7375527, + "minlon": -74.0065669, + "maxlat": 40.7375563, + "maxlon": -74.0057088 + }, + "nodes": [ + 9808616779, + 42436152, + 10168546906, + 8307463785, + 42436423 + ], + "geometry": [ + { "lat": 40.7375563, "lon": -74.0065669 }, + { "lat": 40.7375559, "lon": -74.0064757 }, + { "lat": 40.7375556, "lon": -74.0063987 }, + { "lat": 40.7375531, "lon": -74.0058162 }, + { "lat": 40.7375527, "lon": -74.0057088 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 12th Street", + "name:ru": "Западная 12-я стрит", + "name_1": "West 12 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1069150527, + "bounds": { + "minlat": 40.7884599, + "minlon": -74.0175592, + "maxlat": 40.7886554, + "maxlon": -74.0173616 + }, + "nodes": [ + 7588288488, + 7657469057, + 7588288487, + 7588288491 + ], + "geometry": [ + { "lat": 40.7886554, "lon": -74.0173616 }, + { "lat": 40.7886267, "lon": -74.0173852 }, + { "lat": 40.7884599, "lon": -74.0175224 }, + { "lat": 40.7884768, "lon": -74.0175592 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1069212277, + "bounds": { + "minlat": 40.8179672, + "minlon": -74.0198881, + "maxlat": 40.8186309, + "maxlon": -74.0194419 + }, + "nodes": [ + 9814297597, + 9814297598, + 9814297599, + 9814297600, + 9814297601, + 3740792844 + ], + "geometry": [ + { "lat": 40.8186309, "lon": -74.0198881 }, + { "lat": 40.8183125, "lon": -74.0194419 }, + { "lat": 40.8182498, "lon": -74.0194802 }, + { "lat": 40.8180569, "lon": -74.0196523 }, + { "lat": 40.8180183, "lon": -74.0196937 }, + { "lat": 40.8179672, "lon": -74.0196095 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1069212278, + "bounds": { + "minlat": 40.8166428, + "minlon": -74.0195508, + "maxlat": 40.8169154, + "maxlon": -74.0189309 + }, + "nodes": [ + 9814297604, + 9814297605 + ], + "geometry": [ + { "lat": 40.8169154, "lon": -74.0195508 }, + { "lat": 40.8166428, "lon": -74.0189309 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1069212279, + "bounds": { + "minlat": 40.8167894, + "minlon": -74.0196195, + "maxlat": 40.8171187, + "maxlon": -74.0188197 + }, + "nodes": [ + 9814297606, + 9814297607, + 9814297608 + ], + "geometry": [ + { "lat": 40.8171187, "lon": -74.0196195 }, + { "lat": 40.8171115, "lon": -74.0195254 }, + { "lat": 40.8167894, "lon": -74.0188197 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1069212280, + "bounds": { + "minlat": 40.8169490, + "minlon": -74.0197008, + "maxlat": 40.8173597, + "maxlon": -74.0186986 + }, + "nodes": [ + 9814297609, + 9814297610 + ], + "geometry": [ + { "lat": 40.8173597, "lon": -74.0197008 }, + { "lat": 40.8169490, "lon": -74.0186986 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1069212281, + "bounds": { + "minlat": 40.8171168, + "minlon": -74.0196566, + "maxlat": 40.8175905, + "maxlon": -74.0185714 + }, + "nodes": [ + 9814297611, + 9814297612 + ], + "geometry": [ + { "lat": 40.8175905, "lon": -74.0196566 }, + { "lat": 40.8171168, "lon": -74.0185714 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1069212282, + "bounds": { + "minlat": 40.8149795, + "minlon": -74.0187593, + "maxlat": 40.8153296, + "maxlon": -74.0179289 + }, + "nodes": [ + 9814297615, + 9910360533, + 9910360530, + 9814297614 + ], + "geometry": [ + { "lat": 40.8149795, "lon": -74.0179289 }, + { "lat": 40.8149796, "lon": -74.0179510 }, + { "lat": 40.8149848, "lon": -74.0179700 }, + { "lat": 40.8153296, "lon": -74.0187593 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1069212283, + "bounds": { + "minlat": 40.8151119, + "minlon": -74.0186732, + "maxlat": 40.8154948, + "maxlon": -74.0178111 + }, + "nodes": [ + 9814310217, + 9814310218 + ], + "geometry": [ + { "lat": 40.8154948, "lon": -74.0186732 }, + { "lat": 40.8151119, "lon": -74.0178111 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1069235926, + "bounds": { + "minlat": 40.7622245, + "minlon": -73.9245763, + "maxlat": 40.7623283, + "maxlon": -73.9244947 + }, + "nodes": [ + 5488242215, + 5488242214 + ], + "geometry": [ + { "lat": 40.7622245, "lon": -73.9245763 }, + { "lat": 40.7623283, "lon": -73.9244947 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1069253281, + "bounds": { + "minlat": 40.7134357, + "minlon": -73.9166288, + "maxlat": 40.7135533, + "maxlon": -73.9165939 + }, + "nodes": [ + 9814561714, + 10632847295, + 9814561715, + 9814561716 + ], + "geometry": [ + { "lat": 40.7135533, "lon": -73.9166288 }, + { "lat": 40.7134949, "lon": -73.9165993 }, + { "lat": 40.7134842, "lon": -73.9165939 }, + { "lat": 40.7134357, "lon": -73.9166189 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1069253282, + "bounds": { + "minlat": 40.7133614, + "minlon": -73.9165289, + "maxlat": 40.7134606, + "maxlon": -73.9164674 + }, + "nodes": [ + 9814611718, + 9814611719 + ], + "geometry": [ + { "lat": 40.7134606, "lon": -73.9165289 }, + { "lat": 40.7133614, "lon": -73.9164674 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1069253283, + "bounds": { + "minlat": 40.7133271, + "minlon": -73.9165564, + "maxlat": 40.7133614, + "maxlon": -73.9164674 + }, + "nodes": [ + 9814611717, + 9814611720, + 9814611719 + ], + "geometry": [ + { "lat": 40.7133322, "lon": -73.9165564 }, + { "lat": 40.7133271, "lon": -73.9164951 }, + { "lat": 40.7133614, "lon": -73.9164674 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1069253284, + "bounds": { + "minlat": 40.7132337, + "minlon": -73.9164951, + "maxlat": 40.7133271, + "maxlon": -73.9164325 + }, + "nodes": [ + 9814611720, + 10632847294, + 9814611721 + ], + "geometry": [ + { "lat": 40.7133271, "lon": -73.9164951 }, + { "lat": 40.7133140, "lon": -73.9164863 }, + { "lat": 40.7132337, "lon": -73.9164325 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1069253285, + "bounds": { + "minlat": 40.7133322, + "minlon": -73.9166189, + "maxlat": 40.7134357, + "maxlon": -73.9165564 + }, + "nodes": [ + 9814561716, + 9814611717 + ], + "geometry": [ + { "lat": 40.7134357, "lon": -73.9166189 }, + { "lat": 40.7133322, "lon": -73.9165564 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1069253286, + "bounds": { + "minlat": 40.7134606, + "minlon": -73.9165939, + "maxlat": 40.7134842, + "maxlon": -73.9165289 + }, + "nodes": [ + 9814561715, + 9814611718 + ], + "geometry": [ + { "lat": 40.7134842, "lon": -73.9165939 }, + { "lat": 40.7134606, "lon": -73.9165289 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1069253287, + "bounds": { + "minlat": 40.7133271, + "minlon": -73.9165939, + "maxlat": 40.7134842, + "maxlon": -73.9163947 + }, + "nodes": [ + 9814561715, + 9814611724, + 9814611722, + 9814611723, + 9814611720 + ], + "geometry": [ + { "lat": 40.7134842, "lon": -73.9165939 }, + { "lat": 40.7134817, "lon": -73.9164992 }, + { "lat": 40.7134762, "lon": -73.9164480 }, + { "lat": 40.7133827, "lon": -73.9163947 }, + { "lat": 40.7133271, "lon": -73.9164951 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1069297909, + "bounds": { + "minlat": 40.7057214, + "minlon": -74.0052076, + "maxlat": 40.7060012, + "maxlon": -74.0048632 + }, + "nodes": [ + 42427254, + 8094558991, + 9814893489 + ], + "geometry": [ + { "lat": 40.7060012, "lon": -74.0052076 }, + { "lat": 40.7059604, "lon": -74.0051550 }, + { "lat": 40.7057214, "lon": -74.0048632 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Fletcher Street", + "name:etymology:wikidata": "Q4888590", + "name:ko": "플렛처 스트리트", + "name:ru": "Флетчер-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fletcher", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q13882294" + } +}, +{ + "type": "way", + "id": 1069417216, + "bounds": { + "minlat": 40.7260317, + "minlon": -73.9984801, + "maxlat": 40.7262337, + "maxlon": -73.9983091 + }, + "nodes": [ + 9815692294, + 6024767164, + 1919595917, + 5799117244 + ], + "geometry": [ + { "lat": 40.7260317, "lon": -73.9984801 }, + { "lat": 40.7260528, "lon": -73.9984623 }, + { "lat": 40.7261180, "lon": -73.9984070 }, + { "lat": 40.7262337, "lon": -73.9983091 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greene Street", + "name:etymology:wikidata": "Q366113", + "name:ko": "그린 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q83170568" + } +}, +{ + "type": "way", + "id": 1069677804, + "bounds": { + "minlat": 40.8594822, + "minlon": -73.9604510, + "maxlat": 40.8598802, + "maxlon": -73.9602013 + }, + "nodes": [ + 7912952252, + 60811201, + 7921635515, + 7921635512, + 7921635527 + ], + "geometry": [ + { "lat": 40.8598802, "lon": -73.9602013 }, + { "lat": 40.8597922, "lon": -73.9602628 }, + { "lat": 40.8596900, "lon": -73.9603287 }, + { "lat": 40.8595884, "lon": -73.9603907 }, + { "lat": 40.8594822, "lon": -73.9604510 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "destination": "George Washington Bridge", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1069677805, + "bounds": { + "minlat": 40.8598095, + "minlon": -73.9606550, + "maxlat": 40.8610364, + "maxlon": -73.9593664 + }, + "nodes": [ + 7930464679, + 103195225, + 7930464678, + 7390300969, + 478297828, + 7930464682, + 103195226, + 7930464680, + 103098296, + 103107331, + 103195227 + ], + "geometry": [ + { "lat": 40.8598095, "lon": -73.9606550 }, + { "lat": 40.8598604, "lon": -73.9606156 }, + { "lat": 40.8599092, "lon": -73.9605753 }, + { "lat": 40.8599581, "lon": -73.9605323 }, + { "lat": 40.8599950, "lon": -73.9604992 }, + { "lat": 40.8600418, "lon": -73.9604550 }, + { "lat": 40.8600906, "lon": -73.9604064 }, + { "lat": 40.8601419, "lon": -73.9603513 }, + { "lat": 40.8602216, "lon": -73.9602653 }, + { "lat": 40.8606850, "lon": -73.9597538 }, + { "lat": 40.8610364, "lon": -73.9593664 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 1069677806, + "bounds": { + "minlat": 40.8594650, + "minlon": -73.9608810, + "maxlat": 40.8598095, + "maxlon": -73.9606550 + }, + "nodes": [ + 103195223, + 7391395631, + 7930464679 + ], + "geometry": [ + { "lat": 40.8594650, "lon": -73.9608810 }, + { "lat": 40.8597531, "lon": -73.9606963 }, + { "lat": 40.8598095, "lon": -73.9606550 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "maxheight:signed": "no", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 1069677807, + "bounds": { + "minlat": 40.8594153, + "minlon": -73.9598648, + "maxlat": 40.8596939, + "maxlon": -73.9595751 + }, + "nodes": [ + 60810561, + 13772860464, + 60810562 + ], + "geometry": [ + { "lat": 40.8594153, "lon": -73.9598648 }, + { "lat": 40.8596024, "lon": -73.9596699 }, + { "lat": 40.8596939, "lon": -73.9595751 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1069677808, + "bounds": { + "minlat": 40.8596939, + "minlon": -73.9595751, + "maxlat": 40.8610959, + "maxlon": -73.9581875 + }, + "nodes": [ + 60810562, + 13772860465, + 7912952256, + 7912952267, + 7912952281, + 60810564 + ], + "geometry": [ + { "lat": 40.8596939, "lon": -73.9595751 }, + { "lat": 40.8597907, "lon": -73.9594761 }, + { "lat": 40.8600599, "lon": -73.9592045 }, + { "lat": 40.8603426, "lon": -73.9589229 }, + { "lat": 40.8606227, "lon": -73.9586415 }, + { "lat": 40.8610959, "lon": -73.9581875 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1069696856, + "bounds": { + "minlat": 40.8562676, + "minlon": -73.9733858, + "maxlat": 40.8570627, + "maxlon": -73.9721865 + }, + "nodes": [ + 60811500, + 60811501, + 60811502 + ], + "geometry": [ + { "lat": 40.8570627, "lon": -73.9733858 }, + { "lat": 40.8567683, "lon": -73.9729442 }, + { "lat": 40.8562676, "lon": -73.9721865 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge Plaza", + "destination:lanes": "George Washington Bridge;New York City|George Washington Bridge;New York City|George Washington Bridge;New York City|George Washington Bridge;New York City;Fort Lee;Palisades Interstate Parkway", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "hov:lanes": "|||designated", + "lanes": "4", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "none|none|none|through;slight_right" + } +}, +{ + "type": "way", + "id": 1069936630, + "bounds": { + "minlat": 40.8198002, + "minlon": -73.9297513, + "maxlat": 40.8202675, + "maxlon": -73.9280253 + }, + "nodes": [ + 42733555, + 13250295304, + 13329965797, + 42733551, + 13329965799, + 13337724687, + 7557695124 + ], + "geometry": [ + { "lat": 40.8198002, "lon": -73.9280253 }, + { "lat": 40.8198218, "lon": -73.9281077 }, + { "lat": 40.8199933, "lon": -73.9287615 }, + { "lat": 40.8200162, "lon": -73.9288483 }, + { "lat": 40.8200386, "lon": -73.9289284 }, + { "lat": 40.8202403, "lon": -73.9296536 }, + { "lat": 40.8202675, "lon": -73.9297513 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 150th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "150th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1069936631, + "bounds": { + "minlat": 40.8185896, + "minlon": -73.9273865, + "maxlat": 40.8191787, + "maxlon": -73.9271094 + }, + "nodes": [ + 12162740210, + 12162740211, + 9903127452, + 42741436 + ], + "geometry": [ + { "lat": 40.8191787, "lon": -73.9271094 }, + { "lat": 40.8187430, "lon": -73.9273158 }, + { "lat": 40.8186933, "lon": -73.9273393 }, + { "lat": 40.8185896, "lon": -73.9273865 } + ], + "tags": { + "bus:lanes": "designated||", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "left|through|", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1069942148, + "bounds": { + "minlat": 40.8137713, + "minlon": -73.9449282, + "maxlat": 40.8140459, + "maxlon": -73.9447305 + }, + "nodes": [ + 42434111, + 10170797785, + 9153603254 + ], + "geometry": [ + { "lat": 40.8140459, "lon": -73.9447305 }, + { "lat": 40.8139965, "lon": -73.9447661 }, + { "lat": 40.8137713, "lon": -73.9449282 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1069943556, + "bounds": { + "minlat": 40.8356164, + "minlon": -73.9235889, + "maxlat": 40.8386850, + "maxlon": -73.9229770 + }, + "nodes": [ + 2912071080, + 10133344454, + 42734981, + 2912071082, + 2912071083, + 2799900469, + 2912071084, + 42734985, + 42734987, + 42734992 + ], + "geometry": [ + { "lat": 40.8356164, "lon": -73.9235889 }, + { "lat": 40.8356810, "lon": -73.9235710 }, + { "lat": 40.8357730, "lon": -73.9235330 }, + { "lat": 40.8359966, "lon": -73.9234309 }, + { "lat": 40.8361140, "lon": -73.9233873 }, + { "lat": 40.8362325, "lon": -73.9233574 }, + { "lat": 40.8363458, "lon": -73.9233438 }, + { "lat": 40.8372079, "lon": -73.9233038 }, + { "lat": 40.8381310, "lon": -73.9232504 }, + { "lat": 40.8386850, "lon": -73.9229770 } + ], + "tags": { + "highway": "residential", + "name": "Shakespeare Avenue", + "name:etymology:wikidata": "Q692", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Shakespeare", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1069953226, + "bounds": { + "minlat": 40.7591917, + "minlon": -73.9519572, + "maxlat": 40.7592633, + "maxlon": -73.9518874 + }, + "nodes": [ + 7247181415, + 2141121124 + ], + "geometry": [ + { "lat": 40.7592633, "lon": -73.9518874 }, + { "lat": 40.7591917, "lon": -73.9519572 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "name_1": "East Road", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1069970676, + "bounds": { + "minlat": 40.8304978, + "minlon": -73.9827496, + "maxlat": 40.8309000, + "maxlon": -73.9826181 + }, + "nodes": [ + 103282022, + 7533932721, + 6895111584, + 6895127599 + ], + "geometry": [ + { "lat": 40.8304978, "lon": -73.9827496 }, + { "lat": 40.8308424, "lon": -73.9826370 }, + { "lat": 40.8308558, "lon": -73.9826326 }, + { "lat": 40.8309000, "lon": -73.9826181 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Abbott Boulevard", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1070126888, + "bounds": { + "minlat": 40.7536222, + "minlon": -73.9875222, + "maxlat": 40.7538130, + "maxlon": -73.9870696 + }, + "nodes": [ + 42428272, + 10268795725, + 10268795787, + 10173490596, + 9821598083 + ], + "geometry": [ + { "lat": 40.7536222, "lon": -73.9870696 }, + { "lat": 40.7536458, "lon": -73.9871265 }, + { "lat": 40.7536655, "lon": -73.9871733 }, + { "lat": 40.7536903, "lon": -73.9872321 }, + { "lat": 40.7538130, "lon": -73.9875222 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1070126889, + "bounds": { + "minlat": 40.7538130, + "minlon": -73.9878801, + "maxlat": 40.7539626, + "maxlon": -73.9875222 + }, + "nodes": [ + 9821598083, + 9821598084 + ], + "geometry": [ + { "lat": 40.7538130, "lon": -73.9875222 }, + { "lat": 40.7539626, "lon": -73.9878801 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 39th Street", + "name:ru": "Западная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1070132461, + "bounds": { + "minlat": 40.7474330, + "minlon": -73.9259331, + "maxlat": 40.7474860, + "maxlon": -73.9254850 + }, + "nodes": [ + 42932839, + 10069673233, + 5867098660 + ], + "geometry": [ + { "lat": 40.7474330, "lon": -73.9254850 }, + { "lat": 40.7474456, "lon": -73.9255832 }, + { "lat": 40.7474860, "lon": -73.9259331 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1070136320, + "bounds": { + "minlat": 40.8620458, + "minlon": -74.0065373, + "maxlat": 40.8622938, + "maxlon": -74.0064570 + }, + "nodes": [ + 2468196272, + 10941394494, + 2468165341, + 10941394480, + 10940220010, + 10941394504, + 2468165387, + 10941421006, + 2468165355, + 10941394501, + 10294311019, + 10941394482, + 2468300411, + 10941394483, + 2468165353 + ], + "geometry": [ + { "lat": 40.8622938, "lon": -74.0064570 }, + { "lat": 40.8622806, "lon": -74.0064757 }, + { "lat": 40.8622657, "lon": -74.0064924 }, + { "lat": 40.8622461, "lon": -74.0065092 }, + { "lat": 40.8622255, "lon": -74.0065220 }, + { "lat": 40.8622057, "lon": -74.0065305 }, + { "lat": 40.8621850, "lon": -74.0065356 }, + { "lat": 40.8621661, "lon": -74.0065373 }, + { "lat": 40.8621482, "lon": -74.0065363 }, + { "lat": 40.8621294, "lon": -74.0065325 }, + { "lat": 40.8621122, "lon": -74.0065264 }, + { "lat": 40.8620939, "lon": -74.0065170 }, + { "lat": 40.8620757, "lon": -74.0065041 }, + { "lat": 40.8620591, "lon": -74.0064887 }, + { "lat": 40.8620458, "lon": -74.0064731 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "name": "Challenger Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1070136321, + "bounds": { + "minlat": 40.8616742, + "minlon": -74.0063840, + "maxlat": 40.8620374, + "maxlon": -74.0061674 + }, + "nodes": [ + 2468165393, + 2468196235, + 2468196278, + 2468196257, + 2468196261, + 2468196279, + 2468196281 + ], + "geometry": [ + { "lat": 40.8616742, "lon": -74.0063840 }, + { "lat": 40.8617293, "lon": -74.0063578 }, + { "lat": 40.8617800, "lon": -74.0063336 }, + { "lat": 40.8618308, "lon": -74.0063095 }, + { "lat": 40.8618957, "lon": -74.0062800 }, + { "lat": 40.8619403, "lon": -74.0062397 }, + { "lat": 40.8620374, "lon": -74.0061674 } + ], + "tags": { + "highway": "tertiary", + "name": "Challenger Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1070136322, + "bounds": { + "minlat": 40.8620374, + "minlon": -74.0061689, + "maxlat": 40.8622921, + "maxlon": -74.0060915 + }, + "nodes": [ + 2468196281, + 10941394484, + 2468196267, + 10941394503, + 2468196246, + 10941394493, + 2468196255, + 10941394500, + 2468196237, + 10941394492, + 2468196240, + 10941394489, + 10940220009, + 10941394479, + 2468196283, + 10941394478, + 2468196259 + ], + "geometry": [ + { "lat": 40.8620374, "lon": -74.0061674 }, + { "lat": 40.8620500, "lon": -74.0061503 }, + { "lat": 40.8620653, "lon": -74.0061338 }, + { "lat": 40.8620820, "lon": -74.0061197 }, + { "lat": 40.8620982, "lon": -74.0061091 }, + { "lat": 40.8621169, "lon": -74.0061003 }, + { "lat": 40.8621337, "lon": -74.0060950 }, + { "lat": 40.8621525, "lon": -74.0060919 }, + { "lat": 40.8621710, "lon": -74.0060915 }, + { "lat": 40.8621905, "lon": -74.0060941 }, + { "lat": 40.8622086, "lon": -74.0060992 }, + { "lat": 40.8622238, "lon": -74.0061057 }, + { "lat": 40.8622388, "lon": -74.0061143 }, + { "lat": 40.8622533, "lon": -74.0061250 }, + { "lat": 40.8622665, "lon": -74.0061370 }, + { "lat": 40.8622790, "lon": -74.0061510 }, + { "lat": 40.8622921, "lon": -74.0061689 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "name": "Challenger Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1070141363, + "bounds": { + "minlat": 40.7462415, + "minlon": -73.9158603, + "maxlat": 40.7463199, + "maxlon": -73.9152334 + }, + "nodes": [ + 42807836, + 7667163186, + 8626106359 + ], + "geometry": [ + { "lat": 40.7462415, "lon": -73.9152334 }, + { "lat": 40.7462545, "lon": -73.9153210 }, + { "lat": 40.7463199, "lon": -73.9158603 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1070141364, + "bounds": { + "minlat": 40.7463199, + "minlon": -73.9161557, + "maxlat": 40.7463540, + "maxlon": -73.9158603 + }, + "nodes": [ + 8626106359, + 10074123171, + 42859957 + ], + "geometry": [ + { "lat": 40.7463199, "lon": -73.9158603 }, + { "lat": 40.7463427, "lon": -73.9160584 }, + { "lat": 40.7463540, "lon": -73.9161557 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "none|through|right" + } +}, +{ + "type": "way", + "id": 1070141365, + "bounds": { + "minlat": 40.7463540, + "minlon": -73.9168440, + "maxlat": 40.7464326, + "maxlon": -73.9161557 + }, + "nodes": [ + 42859957, + 10074123170, + 9821720656 + ], + "geometry": [ + { "lat": 40.7463540, "lon": -73.9161557 }, + { "lat": 40.7463675, "lon": -73.9162748 }, + { "lat": 40.7464326, "lon": -73.9168440 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1070141366, + "bounds": { + "minlat": 40.7464326, + "minlon": -73.9170838, + "maxlat": 40.7464584, + "maxlon": -73.9168440 + }, + "nodes": [ + 9821720656, + 10074123167, + 42904454 + ], + "geometry": [ + { "lat": 40.7464326, "lon": -73.9168440 }, + { "lat": 40.7464509, "lon": -73.9170138 }, + { "lat": 40.7464584, "lon": -73.9170838 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 1070141367, + "bounds": { + "minlat": 40.7464584, + "minlon": -73.9187086, + "maxlat": 40.7466475, + "maxlon": -73.9170838 + }, + "nodes": [ + 42904454, + 10074123166, + 7530789549, + 10074123163, + 42833561, + 10074123162, + 9821720657 + ], + "geometry": [ + { "lat": 40.7464584, "lon": -73.9170838 }, + { "lat": 40.7464687, "lon": -73.9171731 }, + { "lat": 40.7465127, "lon": -73.9175567 }, + { "lat": 40.7465583, "lon": -73.9179397 }, + { "lat": 40.7465678, "lon": -73.9180192 }, + { "lat": 40.7465770, "lon": -73.9180988 }, + { "lat": 40.7466475, "lon": -73.9187086 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1070141368, + "bounds": { + "minlat": 40.7466475, + "minlon": -73.9189441, + "maxlat": 40.7466747, + "maxlon": -73.9187086 + }, + "nodes": [ + 9821720657, + 10069693834, + 42885753 + ], + "geometry": [ + { "lat": 40.7466475, "lon": -73.9187086 }, + { "lat": 40.7466656, "lon": -73.9188644 }, + { "lat": 40.7466747, "lon": -73.9189441 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 1070141369, + "bounds": { + "minlat": 40.7468528, + "minlon": -73.9208044, + "maxlat": 40.7468906, + "maxlon": -73.9204631 + }, + "nodes": [ + 9821720658, + 10069648913, + 42900618 + ], + "geometry": [ + { "lat": 40.7468528, "lon": -73.9204631 }, + { "lat": 40.7468776, "lon": -73.9206866 }, + { "lat": 40.7468906, "lon": -73.9208044 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "none|through|right" + } +}, +{ + "type": "way", + "id": 1070276229, + "bounds": { + "minlat": 40.8659507, + "minlon": -73.9329905, + "maxlat": 40.8663173, + "maxlon": -73.9327916 + }, + "nodes": [ + 374475605, + 60916141, + 9822407115 + ], + "geometry": [ + { "lat": 40.8663173, "lon": -73.9327916 }, + { "lat": 40.8660349, "lon": -73.9329463 }, + { "lat": 40.8659507, "lon": -73.9329905 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "concrete", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1070286495, + "bounds": { + "minlat": 40.8589045, + "minlon": -73.9724460, + "maxlat": 40.8589837, + "maxlon": -73.9723219 + }, + "nodes": [ + 7298101920, + 76463562 + ], + "geometry": [ + { "lat": 40.8589045, "lon": -73.9723219 }, + { "lat": 40.8589837, "lon": -73.9724460 } + ], + "tags": { + "highway": "trunk", + "lanes": "2", + "oneway": "yes", + "ref": "NJ 4", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:reviewed": "no", + "turn:lanes": "left;through|through" + } +}, +{ + "type": "way", + "id": 1070337295, + "bounds": { + "minlat": 40.7412561, + "minlon": -73.9798165, + "maxlat": 40.7414720, + "maxlon": -73.9796611 + }, + "nodes": [ + 5481959620, + 10166970907, + 5481959619 + ], + "geometry": [ + { "lat": 40.7414720, "lon": -73.9796611 }, + { "lat": 40.7414090, "lon": -73.9797067 }, + { "lat": 40.7412561, "lon": -73.9798165 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1070337296, + "bounds": { + "minlat": 40.7412546, + "minlon": -73.9800480, + "maxlat": 40.7415462, + "maxlon": -73.9798374 + }, + "nodes": [ + 5481960322, + 10166970908, + 5481960321 + ], + "geometry": [ + { "lat": 40.7415462, "lon": -73.9798374 }, + { "lat": 40.7414833, "lon": -73.9798829 }, + { "lat": 40.7412546, "lon": -73.9800480 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1070790377, + "bounds": { + "minlat": 40.7183225, + "minlon": -73.9984045, + "maxlat": 40.7185449, + "maxlon": -73.9982669 + }, + "nodes": [ + 9826534635, + 9925551914, + 9826534633, + 9826534632 + ], + "geometry": [ + { "lat": 40.7183225, "lon": -73.9984045 }, + { "lat": 40.7183802, "lon": -73.9983758 }, + { "lat": 40.7183917, "lon": -73.9983701 }, + { "lat": 40.7185449, "lon": -73.9982669 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1070833169, + "bounds": { + "minlat": 40.8746620, + "minlon": -74.0060218, + "maxlat": 40.8747247, + "maxlon": -74.0059859 + }, + "nodes": [ + 103288379, + 9803107718 + ], + "geometry": [ + { "lat": 40.8747247, "lon": -74.0060218 }, + { "lat": 40.8746620, "lon": -74.0059859 } + ], + "tags": { + "highway": "residential", + "name": "Frank W Burr Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Frank W Burr", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1070895252, + "bounds": { + "minlat": 40.8255535, + "minlon": -73.9742694, + "maxlat": 40.8260002, + "maxlon": -73.9740122 + }, + "nodes": [ + 7510674627, + 5362538477, + 103137132 + ], + "geometry": [ + { "lat": 40.8255535, "lon": -73.9742694 }, + { "lat": 40.8256430, "lon": -73.9742179 }, + { "lat": 40.8260002, "lon": -73.9740122 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1071442623, + "bounds": { + "minlat": 40.7361760, + "minlon": -73.9763404, + "maxlat": 40.7371835, + "maxlon": -73.9756057 + }, + "nodes": [ + 9832349992, + 9832349995 + ], + "geometry": [ + { "lat": 40.7361760, "lon": -73.9763404 }, + { "lat": 40.7371835, "lon": -73.9756057 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1071442624, + "bounds": { + "minlat": 40.7371835, + "minlon": -73.9756057, + "maxlat": 40.7372893, + "maxlon": -73.9755264 + }, + "nodes": [ + 9832349995, + 9832349993, + 9832349994 + ], + "geometry": [ + { "lat": 40.7371835, "lon": -73.9756057 }, + { "lat": 40.7372384, "lon": -73.9755657 }, + { "lat": 40.7372893, "lon": -73.9755264 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1071442625, + "bounds": { + "minlat": 40.7360172, + "minlon": -73.9764585, + "maxlat": 40.7361760, + "maxlon": -73.9763404 + }, + "nodes": [ + 9832349990, + 9832349991, + 9832349992 + ], + "geometry": [ + { "lat": 40.7360172, "lon": -73.9764585 }, + { "lat": 40.7361117, "lon": -73.9763851 }, + { "lat": 40.7361760, "lon": -73.9763404 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1071482502, + "bounds": { + "minlat": 40.8339548, + "minlon": -73.9087646, + "maxlat": 40.8362675, + "maxlon": -73.9074050 + }, + "nodes": [ + 42739165, + 10126902021, + 9832626701, + 9832626705, + 10126901991, + 9832626702 + ], + "geometry": [ + { "lat": 40.8362675, "lon": -73.9074050 }, + { "lat": 40.8361928, "lon": -73.9074938 }, + { "lat": 40.8361874, "lon": -73.9075002 }, + { "lat": 40.8352149, "lon": -73.9080546 }, + { "lat": 40.8340036, "lon": -73.9087371 }, + { "lat": 40.8339548, "lon": -73.9087646 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "Webster Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1071482503, + "bounds": { + "minlat": 40.8327428, + "minlon": -73.9093618, + "maxlat": 40.8339548, + "maxlon": -73.9087646 + }, + "nodes": [ + 9832626702, + 10126901996, + 12038123090, + 9832626704, + 9832626703, + 4202402636 + ], + "geometry": [ + { "lat": 40.8339548, "lon": -73.9087646 }, + { "lat": 40.8338896, "lon": -73.9087999 }, + { "lat": 40.8331344, "lon": -73.9092088 }, + { "lat": 40.8330634, "lon": -73.9092472 }, + { "lat": 40.8329005, "lon": -73.9093355 }, + { "lat": 40.8327428, "lon": -73.9093618 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "Webster Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1071620699, + "bounds": { + "minlat": 40.7001547, + "minlon": -73.9112037, + "maxlat": 40.7002534, + "maxlon": -73.9110348 + }, + "nodes": [ + 5482373242, + 5482373239 + ], + "geometry": [ + { "lat": 40.7002534, "lon": -73.9112037 }, + { "lat": 40.7001547, "lon": -73.9110348 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1071919872, + "bounds": { + "minlat": 40.8593400, + "minlon": -73.9340537, + "maxlat": 40.8594694, + "maxlon": -73.9339773 + }, + "nodes": [ + 5051482020, + 12663385192, + 12663385193, + 12663385191, + 12663385199, + 1205714897 + ], + "geometry": [ + { "lat": 40.8593400, "lon": -73.9339800 }, + { "lat": 40.8593716, "lon": -73.9339773 }, + { "lat": 40.8594047, "lon": -73.9339854 }, + { "lat": 40.8594296, "lon": -73.9339962 }, + { "lat": 40.8594526, "lon": -73.9340182 }, + { "lat": 40.8594694, "lon": -73.9340537 } + ], + "tags": { + "highway": "unclassified", + "junction": "roundabout", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Plaza", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "surface": "asphalt", + "width": "70'0\"" + } +}, +{ + "type": "way", + "id": 1071919873, + "bounds": { + "minlat": 40.7483045, + "minlon": -73.9883715, + "maxlat": 40.7483789, + "maxlon": -73.9881935 + }, + "nodes": [ + 4769084859, + 6223969251, + 6223969260 + ], + "geometry": [ + { "lat": 40.7483789, "lon": -73.9883715 }, + { "lat": 40.7483381, "lon": -73.9882741 }, + { "lat": 40.7483045, "lon": -73.9881935 } + ], + "tags": { + "cycleway:both": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "-1", + "cycleway:right:oneway": "yes", + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 32nd Street", + "name:ru": "Западная 32-я стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1071929277, + "bounds": { + "minlat": 40.7961631, + "minlon": -73.9476486, + "maxlat": 40.7999781, + "maxlon": -73.9448411 + }, + "nodes": [ + 42434377, + 6900706762, + 7803460137, + 42446152, + 7803460163, + 7096507178, + 42446155, + 6784911814, + 6223478657, + 6270715276, + 7523953835, + 9178841528, + 6223478803, + 7523953831, + 7096507173, + 42435388, + 8807694450, + 9178841527, + 10167086804, + 42446161 + ], + "geometry": [ + { "lat": 40.7961631, "lon": -73.9476486 }, + { "lat": 40.7962299, "lon": -73.9476001 }, + { "lat": 40.7967448, "lon": -73.9472164 }, + { "lat": 40.7968004, "lon": -73.9471765 }, + { "lat": 40.7968560, "lon": -73.9471369 }, + { "lat": 40.7973735, "lon": -73.9467605 }, + { "lat": 40.7974442, "lon": -73.9467077 }, + { "lat": 40.7975377, "lon": -73.9466390 }, + { "lat": 40.7979251, "lon": -73.9463579 }, + { "lat": 40.7979704, "lon": -73.9463257 }, + { "lat": 40.7980390, "lon": -73.9462758 }, + { "lat": 40.7984690, "lon": -73.9459613 }, + { "lat": 40.7985197, "lon": -73.9459251 }, + { "lat": 40.7987027, "lon": -73.9457923 }, + { "lat": 40.7992114, "lon": -73.9454190 }, + { "lat": 40.7992916, "lon": -73.9453586 }, + { "lat": 40.7993709, "lon": -73.9453000 }, + { "lat": 40.7998374, "lon": -73.9449598 }, + { "lat": 40.7998900, "lon": -73.9449161 }, + { "lat": 40.7999781, "lon": -73.9448411 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 1071945060, + "bounds": { + "minlat": 40.8320681, + "minlon": -73.9787641, + "maxlat": 40.8321405, + "maxlon": -73.9787352 + }, + "nodes": [ + 5772822709, + 4205772570 + ], + "geometry": [ + { "lat": 40.8321405, "lon": -73.9787352 }, + { "lat": 40.8320681, "lon": -73.9787641 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "cycleway:both": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Palisade Avenue", + "ref": "NJ 5", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1071960482, + "bounds": { + "minlat": 40.8290805, + "minlon": -73.9802619, + "maxlat": 40.8294579, + "maxlon": -73.9800415 + }, + "nodes": [ + 7081878840, + 103235739 + ], + "geometry": [ + { "lat": 40.8294579, "lon": -73.9800415 }, + { "lat": 40.8290805, "lon": -73.9802619 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "3", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "turn:lanes": "left||", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1071960483, + "bounds": { + "minlat": 40.8296122, + "minlon": -73.9799514, + "maxlat": 40.8297060, + "maxlon": -73.9798995 + }, + "nodes": [ + 103235745, + 103235743 + ], + "geometry": [ + { "lat": 40.8297060, "lon": -73.9798995 }, + { "lat": 40.8296122, "lon": -73.9799514 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "3", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "turn:lanes": "left||", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1071960484, + "bounds": { + "minlat": 40.8285567, + "minlon": -73.9798514, + "maxlat": 40.8295555, + "maxlon": -73.9780624 + }, + "nodes": [ + 5340819450, + 6895127595, + 7634888702, + 7634888705, + 103294219, + 103258841, + 103237392 + ], + "geometry": [ + { "lat": 40.8295555, "lon": -73.9798514 }, + { "lat": 40.8293573, "lon": -73.9794797 }, + { "lat": 40.8292229, "lon": -73.9792336 }, + { "lat": 40.8291464, "lon": -73.9790937 }, + { "lat": 40.8290442, "lon": -73.9789066 }, + { "lat": 40.8286882, "lon": -73.9782676 }, + { "lat": 40.8285567, "lon": -73.9780624 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Tower Drive", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A74", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Tower", + "tiger:name_type": "Dr", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1071960485, + "bounds": { + "minlat": 40.8295555, + "minlon": -73.9798514, + "maxlat": 40.8303780, + "maxlon": -73.9794137 + }, + "nodes": [ + 5340819450, + 5340819451, + 103235747 + ], + "geometry": [ + { "lat": 40.8295555, "lon": -73.9798514 }, + { "lat": 40.8303334, "lon": -73.9794137 }, + { "lat": 40.8303780, "lon": -73.9795033 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "2", + "name": "Palisade Avenue", + "oneway": "yes", + "ref": "CR 27", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1072272145, + "bounds": { + "minlat": 40.8755730, + "minlon": -73.9844797, + "maxlat": 40.8768896, + "maxlon": -73.9832385 + }, + "nodes": [ + 7114045973, + 8374650165, + 7114045970, + 12022105757, + 12022105763, + 103161330, + 103161326, + 12022105762, + 12022105758, + 12022105753, + 103296548, + 12022105752, + 12022105751, + 103256841, + 12022105747, + 12022105746, + 103262199 + ], + "geometry": [ + { "lat": 40.8768896, "lon": -73.9832385 }, + { "lat": 40.8767505, "lon": -73.9833839 }, + { "lat": 40.8766680, "lon": -73.9834699 }, + { "lat": 40.8764257, "lon": -73.9837232 }, + { "lat": 40.8763817, "lon": -73.9837723 }, + { "lat": 40.8763671, "lon": -73.9837834 }, + { "lat": 40.8762888, "lon": -73.9838646 }, + { "lat": 40.8762580, "lon": -73.9838959 }, + { "lat": 40.8761921, "lon": -73.9839631 }, + { "lat": 40.8760274, "lon": -73.9841299 }, + { "lat": 40.8759677, "lon": -73.9841870 }, + { "lat": 40.8759014, "lon": -73.9842429 }, + { "lat": 40.8758280, "lon": -73.9843012 }, + { "lat": 40.8757546, "lon": -73.9843577 }, + { "lat": 40.8756975, "lon": -73.9843968 }, + { "lat": 40.8756375, "lon": -73.9844377 }, + { "lat": 40.8755730, "lon": -73.9844797 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1072300372, + "bounds": { + "minlat": 40.7965503, + "minlon": -74.0031322, + "maxlat": 40.7977242, + "maxlon": -74.0021830 + }, + "nodes": [ + 103862637, + 7678477407, + 7678477405, + 103862635, + 7678477396, + 7678477394, + 103862633 + ], + "geometry": [ + { "lat": 40.7977242, "lon": -74.0021830 }, + { "lat": 40.7976719, "lon": -74.0022252 }, + { "lat": 40.7971969, "lon": -74.0026094 }, + { "lat": 40.7971370, "lon": -74.0026578 }, + { "lat": 40.7970885, "lon": -74.0026970 }, + { "lat": 40.7966113, "lon": -74.0030829 }, + { "lat": 40.7965503, "lon": -74.0031322 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081253", + "highway": "tertiary", + "name": "Broadway", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087", + "tiger:zip_right": "07047:07087" + } +}, +{ + "type": "way", + "id": 1072300373, + "bounds": { + "minlat": 40.7977242, + "minlon": -74.0077154, + "maxlat": 40.8003222, + "maxlon": -74.0021830 + }, + "nodes": [ + 103862637, + 7678477445, + 7250289722, + 7250289719, + 7678477447, + 103855709, + 7678484089, + 7678484091, + 103883600, + 7678477587, + 2577450303, + 3809706345, + 103866662 + ], + "geometry": [ + { "lat": 40.7977242, "lon": -74.0021830 }, + { "lat": 40.7977695, "lon": -74.0022792 }, + { "lat": 40.7981088, "lon": -74.0030016 }, + { "lat": 40.7982110, "lon": -74.0032192 }, + { "lat": 40.7985110, "lon": -74.0038581 }, + { "lat": 40.7985418, "lon": -74.0039236 }, + { "lat": 40.7985793, "lon": -74.0040038 }, + { "lat": 40.7993392, "lon": -74.0056278 }, + { "lat": 40.7993715, "lon": -74.0056968 }, + { "lat": 40.7994052, "lon": -74.0057694 }, + { "lat": 40.8001279, "lon": -74.0073228 }, + { "lat": 40.8002663, "lon": -74.0076142 }, + { "lat": 40.8003222, "lon": -74.0077154 } + ], + "tags": { + "highway": "residential", + "name": "77th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "77th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1072607222, + "bounds": { + "minlat": 40.8482830, + "minlon": -73.9976200, + "maxlat": 40.8492870, + "maxlon": -73.9968990 + }, + "nodes": [ + 103119429, + 103224103, + 103224104 + ], + "geometry": [ + { "lat": 40.8482830, "lon": -73.9976200 }, + { "lat": 40.8489920, "lon": -73.9971110 }, + { "lat": 40.8492870, "lon": -73.9968990 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1072679628, + "bounds": { + "minlat": 40.8514268, + "minlon": -73.9700171, + "maxlat": 40.8518971, + "maxlon": -73.9696532 + }, + "nodes": [ + 6964853610, + 103205066, + 103205064, + 103205063, + 4397826872, + 4204792289 + ], + "geometry": [ + { "lat": 40.8518971, "lon": -73.9696532 }, + { "lat": 40.8517760, "lon": -73.9697510 }, + { "lat": 40.8516760, "lon": -73.9698450 }, + { "lat": 40.8515480, "lon": -73.9699440 }, + { "lat": 40.8515304, "lon": -73.9699546 }, + { "lat": 40.8514268, "lon": -73.9700171 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "2", + "name": "Lemoine Avenue", + "oneway": "yes", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1073736367, + "bounds": { + "minlat": 40.7244690, + "minlon": -73.9203999, + "maxlat": 40.7245953, + "maxlon": -73.9203636 + }, + "nodes": [ + 7712008380, + 7712008361 + ], + "geometry": [ + { "lat": 40.7245953, "lon": -73.9203636 }, + { "lat": 40.7244690, "lon": -73.9203999 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1073736368, + "bounds": { + "minlat": 40.7243994, + "minlon": -73.9203999, + "maxlat": 40.7244690, + "maxlon": -73.9200311 + }, + "nodes": [ + 7712008376, + 8509164455, + 7712008361 + ], + "geometry": [ + { "lat": 40.7243994, "lon": -73.9200311 }, + { "lat": 40.7244220, "lon": -73.9201511 }, + { "lat": 40.7244690, "lon": -73.9203999 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1073736369, + "bounds": { + "minlat": 40.7251069, + "minlon": -73.9228238, + "maxlat": 40.7253852, + "maxlon": -73.9227162 + }, + "nodes": [ + 6420466826, + 6420466823 + ], + "geometry": [ + { "lat": 40.7251069, "lon": -73.9228238 }, + { "lat": 40.7253852, "lon": -73.9227162 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1073742531, + "bounds": { + "minlat": 40.8246638, + "minlon": -73.9756682, + "maxlat": 40.8248768, + "maxlon": -73.9754558 + }, + "nodes": [ + 5662656746, + 9849466253 + ], + "geometry": [ + { "lat": 40.8246638, "lon": -73.9756682 }, + { "lat": 40.8248768, "lon": -73.9754558 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1073742532, + "bounds": { + "minlat": 40.8243644, + "minlon": -73.9758702, + "maxlat": 40.8246638, + "maxlon": -73.9756682 + }, + "nodes": [ + 5662656747, + 5662656746 + ], + "geometry": [ + { "lat": 40.8243644, "lon": -73.9758702 }, + { "lat": 40.8246638, "lon": -73.9756682 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1073900647, + "bounds": { + "minlat": 40.7623263, + "minlon": -74.0013787, + "maxlat": 40.7624932, + "maxlon": -74.0011602 + }, + "nodes": [ + 3679458105, + 12152950986, + 12152950985, + 247119751 + ], + "geometry": [ + { "lat": 40.7624932, "lon": -74.0011602 }, + { "lat": 40.7624198, "lon": -74.0012613 }, + { "lat": 40.7623464, "lon": -74.0013557 }, + { "lat": 40.7623263, "lon": -74.0013787 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1073907382, + "bounds": { + "minlat": 40.7488097, + "minlon": -74.0082190, + "maxlat": 40.7491267, + "maxlon": -74.0080584 + }, + "nodes": [ + 9143574631, + 246580295, + 9143574632, + 12161224687, + 246580296, + 9850767747 + ], + "geometry": [ + { "lat": 40.7491267, "lon": -74.0082190 }, + { "lat": 40.7490331, "lon": -74.0081605 }, + { "lat": 40.7489667, "lon": -74.0081248 }, + { "lat": 40.7489099, "lon": -74.0080983 }, + { "lat": 40.7488629, "lon": -74.0080758 }, + { "lat": 40.7488097, "lon": -74.0080584 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "lanes": "2", + "maxspeed": "25 mph", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1073907383, + "bounds": { + "minlat": 40.7493636, + "minlon": -74.0082537, + "maxlat": 40.7494463, + "maxlon": -74.0081941 + }, + "nodes": [ + 246650840, + 8703673335 + ], + "geometry": [ + { "lat": 40.7494463, "lon": -74.0082537 }, + { "lat": 40.7493636, "lon": -74.0081941 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "|||right" + } +}, +{ + "type": "way", + "id": 1073911447, + "bounds": { + "minlat": 40.8226947, + "minlon": -73.9384071, + "maxlat": 40.8229671, + "maxlon": -73.9382108 + }, + "nodes": [ + 42439924, + 9557088479, + 9076983995 + ], + "geometry": [ + { "lat": 40.8229671, "lon": -73.9382108 }, + { "lat": 40.8229149, "lon": -73.9382484 }, + { "lat": 40.8226947, "lon": -73.9384071 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1073968600, + "bounds": { + "minlat": 40.7526036, + "minlon": -73.9139734, + "maxlat": 40.7526594, + "maxlon": -73.9139617 + }, + "nodes": [ + 3569858098, + 9851251037 + ], + "geometry": [ + { "lat": 40.7526036, "lon": -73.9139734 }, + { "lat": 40.7526594, "lon": -73.9139617 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "level": "1" + } +}, +{ + "type": "way", + "id": 1073968601, + "bounds": { + "minlat": 40.7530630, + "minlon": -73.9136650, + "maxlat": 40.7531765, + "maxlon": -73.9135668 + }, + "nodes": [ + 3569858102, + 9851251035, + 9851251039 + ], + "geometry": [ + { "lat": 40.7530630, "lon": -73.9136650 }, + { "lat": 40.7531201, "lon": -73.9136077 }, + { "lat": 40.7531765, "lon": -73.9135668 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "level": "0;1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1073968602, + "bounds": { + "minlat": 40.7513348, + "minlon": -73.9144375, + "maxlat": 40.7515906, + "maxlon": -73.9141917 + }, + "nodes": [ + 9851251044, + 13185910966, + 6855479995, + 2883385962 + ], + "geometry": [ + { "lat": 40.7515906, "lon": -73.9141917 }, + { "lat": 40.7514448, "lon": -73.9143433 }, + { "lat": 40.7514079, "lon": -73.9143615 }, + { "lat": 40.7513348, "lon": -73.9144375 } + ], + "tags": { + "highway": "service", + "level": "0", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1073968603, + "bounds": { + "minlat": 40.7522327, + "minlon": -73.9138987, + "maxlat": 40.7522659, + "maxlon": -73.9137545 + }, + "nodes": [ + 5482228840, + 5871727213, + 9851251040 + ], + "geometry": [ + { "lat": 40.7522659, "lon": -73.9138987 }, + { "lat": 40.7522529, "lon": -73.9137963 }, + { "lat": 40.7522327, "lon": -73.9137545 } + ], + "tags": { + "highway": "service", + "layer": "1", + "level": "1" + } +}, +{ + "type": "way", + "id": 1074108389, + "bounds": { + "minlat": 40.7898880, + "minlon": -74.0160362, + "maxlat": 40.7900997, + "maxlon": -74.0155848 + }, + "nodes": [ + 103876879, + 7660979593, + 7660979595, + 103866632 + ], + "geometry": [ + { "lat": 40.7900997, "lon": -74.0160362 }, + { "lat": 40.7900834, "lon": -74.0159894 }, + { "lat": 40.7899415, "lon": -74.0156927 }, + { "lat": 40.7898880, "lon": -74.0155848 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "61st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "61st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 1074108390, + "bounds": { + "minlat": 40.7891676, + "minlon": -74.0167836, + "maxlat": 40.7900997, + "maxlon": -74.0160362 + }, + "nodes": [ + 103864129, + 7660979580, + 7660979582, + 103876879 + ], + "geometry": [ + { "lat": 40.7891676, "lon": -74.0167836 }, + { "lat": 40.7892066, "lon": -74.0167524 }, + { "lat": 40.7900433, "lon": -74.0160807 }, + { "lat": 40.7900997, "lon": -74.0160362 } + ], + "tags": { + "highway": "residential", + "name": "Van Buren Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Van Buren", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093" + } +}, +{ + "type": "way", + "id": 1074149126, + "bounds": { + "minlat": 40.8498117, + "minlon": -73.9662489, + "maxlat": 40.8502316, + "maxlon": -73.9660371 + }, + "nodes": [ + 103191796, + 5106307795, + 9852775525 + ], + "geometry": [ + { "lat": 40.8498117, "lon": -73.9662489 }, + { "lat": 40.8500853, "lon": -73.9661217 }, + { "lat": 40.8502316, "lon": -73.9660371 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Federspiel Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_type": "St", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1076190093, + "bounds": { + "minlat": 40.7199988, + "minlon": -73.9443505, + "maxlat": 40.7201887, + "maxlon": -73.9442114 + }, + "nodes": [ + 42463374, + 42502915 + ], + "geometry": [ + { "lat": 40.7199988, "lon": -73.9442114 }, + { "lat": 40.7201887, "lon": -73.9443505 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694" + } +}, +{ + "type": "way", + "id": 1076213172, + "bounds": { + "minlat": 40.8019158, + "minlon": -73.9415029, + "maxlat": 40.8038080, + "maxlon": -73.9401148 + }, + "nodes": [ + 596776659, + 10170656858, + 10170656836, + 596776578, + 10170656842, + 10170647008, + 596776613, + 10170647014, + 10170646989, + 596776594 + ], + "geometry": [ + { "lat": 40.8038080, "lon": -73.9401148 }, + { "lat": 40.8037550, "lon": -73.9401534 }, + { "lat": 40.8032334, "lon": -73.9405324 }, + { "lat": 40.8031784, "lon": -73.9405724 }, + { "lat": 40.8031253, "lon": -73.9406126 }, + { "lat": 40.8026200, "lon": -73.9409953 }, + { "lat": 40.8025533, "lon": -73.9410458 }, + { "lat": 40.8025007, "lon": -73.9410835 }, + { "lat": 40.8019856, "lon": -73.9414528 }, + { "lat": 40.8019158, "lon": -73.9415029 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1076213173, + "bounds": { + "minlat": 40.7986336, + "minlon": -73.9416222, + "maxlat": 40.8011859, + "maxlon": -73.9397578 + }, + "nodes": [ + 42443819, + 10122952987, + 10122952986, + 42435230, + 10122952988, + 9726158586, + 10122952992, + 42439489, + 10122952996, + 10122952995, + 42447201, + 10122953001, + 10122953000, + 42447199 + ], + "geometry": [ + { "lat": 40.8011859, "lon": -73.9397578 }, + { "lat": 40.8011291, "lon": -73.9397993 }, + { "lat": 40.8006218, "lon": -73.9401687 }, + { "lat": 40.8005680, "lon": -73.9402084 }, + { "lat": 40.8005082, "lon": -73.9402548 }, + { "lat": 40.8001906, "lon": -73.9404868 }, + { "lat": 40.8000004, "lon": -73.9406272 }, + { "lat": 40.7999397, "lon": -73.9406719 }, + { "lat": 40.7998832, "lon": -73.9407133 }, + { "lat": 40.7993621, "lon": -73.9410961 }, + { "lat": 40.7993112, "lon": -73.9411335 }, + { "lat": 40.7992566, "lon": -73.9411726 }, + { "lat": 40.7987287, "lon": -73.9415513 }, + { "lat": 40.7986336, "lon": -73.9416222 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1076338293, + "bounds": { + "minlat": 40.7124708, + "minlon": -73.9297275, + "maxlat": 40.7125789, + "maxlon": -73.9292782 + }, + "nodes": [ + 9767625279, + 9870296975, + 9870296976, + 9870296977 + ], + "geometry": [ + { "lat": 40.7125571, "lon": -73.9292782 }, + { "lat": 40.7125789, "lon": -73.9293711 }, + { "lat": 40.7125071, "lon": -73.9296626 }, + { "lat": 40.7124708, "lon": -73.9297275 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1076338294, + "bounds": { + "minlat": 40.7118423, + "minlon": -73.9306227, + "maxlat": 40.7125121, + "maxlon": -73.9291552 + }, + "nodes": [ + 9870296980, + 10003499554, + 9870296981, + 9870296982, + 9870296983 + ], + "geometry": [ + { "lat": 40.7125121, "lon": -73.9291552 }, + { "lat": 40.7124892, "lon": -73.9292480 }, + { "lat": 40.7122784, "lon": -73.9300882 }, + { "lat": 40.7119539, "lon": -73.9301337 }, + { "lat": 40.7118423, "lon": -73.9306227 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1076338295, + "bounds": { + "minlat": 40.7120182, + "minlon": -73.9306975, + "maxlat": 40.7122880, + "maxlon": -73.9304961 + }, + "nodes": [ + 9870296984, + 13730004820, + 9870296985, + 42502462 + ], + "geometry": [ + { "lat": 40.7120182, "lon": -73.9306975 }, + { "lat": 40.7120864, "lon": -73.9306498 }, + { "lat": 40.7122268, "lon": -73.9305981 }, + { "lat": 40.7122880, "lon": -73.9304961 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1076338296, + "bounds": { + "minlat": 40.7118423, + "minlon": -73.9306975, + "maxlat": 40.7120182, + "maxlon": -73.9306227 + }, + "nodes": [ + 9870296983, + 9870296984 + ], + "geometry": [ + { "lat": 40.7118423, "lon": -73.9306227 }, + { "lat": 40.7120182, "lon": -73.9306975 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1076434710, + "bounds": { + "minlat": 40.8724965, + "minlon": -74.0012123, + "maxlat": 40.8727106, + "maxlon": -74.0011038 + }, + "nodes": [ + 9871154452, + 9871154460, + 9871154453 + ], + "geometry": [ + { "lat": 40.8727106, "lon": -74.0011038 }, + { "lat": 40.8725291, "lon": -74.0011958 }, + { "lat": 40.8724965, "lon": -74.0012123 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1076434711, + "bounds": { + "minlat": 40.8725524, + "minlon": -74.0013899, + "maxlat": 40.8727923, + "maxlon": -74.0012775 + }, + "nodes": [ + 9871154454, + 9871154455, + 9871154461, + 9871154456 + ], + "geometry": [ + { "lat": 40.8727923, "lon": -74.0012775 }, + { "lat": 40.8727045, "lon": -74.0013132 }, + { "lat": 40.8725830, "lon": -74.0013744 }, + { "lat": 40.8725524, "lon": -74.0013899 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1076438167, + "bounds": { + "minlat": 40.8755450, + "minlon": -74.0012418, + "maxlat": 40.8756114, + "maxlon": -74.0010644 + }, + "nodes": [ + 9871181593, + 9871181611, + 9871181594 + ], + "geometry": [ + { "lat": 40.8755450, "lon": -74.0010644 }, + { "lat": 40.8755885, "lon": -74.0011805 }, + { "lat": 40.8756114, "lon": -74.0012418 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1076438168, + "bounds": { + "minlat": 40.8750661, + "minlon": -74.0009081, + "maxlat": 40.8753591, + "maxlon": -74.0007258 + }, + "nodes": [ + 9871181595, + 9871181596, + 9871181604, + 9871181597 + ], + "geometry": [ + { "lat": 40.8753591, "lon": -74.0007258 }, + { "lat": 40.8752250, "lon": -74.0007998 }, + { "lat": 40.8751120, "lon": -74.0008768 }, + { "lat": 40.8750661, "lon": -74.0009081 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1076778658, + "bounds": { + "minlat": 40.8456954, + "minlon": -73.9791093, + "maxlat": 40.8458459, + "maxlon": -73.9787049 + }, + "nodes": [ + 7460513513, + 5108604346, + 7071445831, + 8008642482, + 103186452 + ], + "geometry": [ + { "lat": 40.8458459, "lon": -73.9791093 }, + { "lat": 40.8458358, "lon": -73.9790803 }, + { "lat": 40.8457533, "lon": -73.9789444 }, + { "lat": 40.8457015, "lon": -73.9788444 }, + { "lat": 40.8456954, "lon": -73.9787049 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "16th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "16th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1077735923, + "bounds": { + "minlat": 40.7199869, + "minlon": -73.9794406, + "maxlat": 40.7202092, + "maxlon": -73.9787229 + }, + "nodes": [ + 42453613, + 3783073217, + 9881399146 + ], + "geometry": [ + { "lat": 40.7199869, "lon": -73.9787229 }, + { "lat": 40.7200253, "lon": -73.9788329 }, + { "lat": 40.7202092, "lon": -73.9794406 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1077735924, + "bounds": { + "minlat": 40.7202092, + "minlon": -73.9800520, + "maxlat": 40.7203948, + "maxlon": -73.9794406 + }, + "nodes": [ + 9881399146, + 592509222 + ], + "geometry": [ + { "lat": 40.7202092, "lon": -73.9794406 }, + { "lat": 40.7203948, "lon": -73.9800520 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "||right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1077840265, + "bounds": { + "minlat": 40.7306378, + "minlon": -73.9810239, + "maxlat": 40.7308610, + "maxlon": -73.9808999 + }, + "nodes": [ + 9882223232, + 9882223241, + 9907956897, + 9882223231 + ], + "geometry": [ + { "lat": 40.7306378, "lon": -73.9808999 }, + { "lat": 40.7307919, "lon": -73.9809851 }, + { "lat": 40.7308190, "lon": -73.9810003 }, + { "lat": 40.7308610, "lon": -73.9810239 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1077840266, + "bounds": { + "minlat": 40.7310166, + "minlon": -73.9817484, + "maxlat": 40.7310503, + "maxlon": -73.9814758 + }, + "nodes": [ + 9882223233, + 9882223240, + 9907956901, + 9882223234 + ], + "geometry": [ + { "lat": 40.7310503, "lon": -73.9814758 }, + { "lat": 40.7310376, "lon": -73.9815783 }, + { "lat": 40.7310328, "lon": -73.9816175 }, + { "lat": 40.7310166, "lon": -73.9817484 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1078009881, + "bounds": { + "minlat": 40.7567547, + "minlon": -73.9710211, + "maxlat": 40.7568252, + "maxlon": -73.9709729 + }, + "nodes": [ + 9883551034, + 11296575610, + 9883551035 + ], + "geometry": [ + { "lat": 40.7568252, "lon": -73.9709729 }, + { "lat": 40.7568121, "lon": -73.9709819 }, + { "lat": 40.7567547, "lon": -73.9710211 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1078130635, + "bounds": { + "minlat": 40.8192217, + "minlon": -74.0111550, + "maxlat": 40.8206071, + "maxlon": -74.0107506 + }, + "nodes": [ + 9884491814, + 9884491815, + 9884491816, + 9884516117, + 9884516118, + 9884516119, + 9884516120, + 9884516121, + 9884516122, + 9884516123, + 9884516124, + 9884516125, + 9884516126, + 9884516127, + 9884516128, + 9884516129, + 9884516130, + 9884516131, + 9884516132, + 9884516133, + 9884516134, + 9884516135, + 8187030555 + ], + "geometry": [ + { "lat": 40.8206071, "lon": -74.0110555 }, + { "lat": 40.8205490, "lon": -74.0110456 }, + { "lat": 40.8205018, "lon": -74.0110510 }, + { "lat": 40.8204050, "lon": -74.0110787 }, + { "lat": 40.8202389, "lon": -74.0111219 }, + { "lat": 40.8201532, "lon": -74.0111450 }, + { "lat": 40.8201159, "lon": -74.0111535 }, + { "lat": 40.8200914, "lon": -74.0111550 }, + { "lat": 40.8200611, "lon": -74.0111535 }, + { "lat": 40.8200343, "lon": -74.0111458 }, + { "lat": 40.8199405, "lon": -74.0111088 }, + { "lat": 40.8198134, "lon": -74.0110633 }, + { "lat": 40.8197802, "lon": -74.0110425 }, + { "lat": 40.8197493, "lon": -74.0110117 }, + { "lat": 40.8197085, "lon": -74.0109632 }, + { "lat": 40.8195930, "lon": -74.0107891 }, + { "lat": 40.8195656, "lon": -74.0107668 }, + { "lat": 40.8195417, "lon": -74.0107552 }, + { "lat": 40.8195190, "lon": -74.0107506 }, + { "lat": 40.8194992, "lon": -74.0107583 }, + { "lat": 40.8194817, "lon": -74.0107714 }, + { "lat": 40.8192940, "lon": -74.0109632 }, + { "lat": 40.8192217, "lon": -74.0110089 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1078130636, + "bounds": { + "minlat": 40.8185056, + "minlon": -74.0107506, + "maxlat": 40.8196064, + "maxlon": -74.0096779 + }, + "nodes": [ + 9884516132, + 9884516136, + 9884516137, + 9884516138, + 9884516139, + 9884516140, + 9884516141, + 9884516142, + 9884516143, + 9884516144, + 9884516145, + 9884516146, + 9884516147, + 9884516148, + 9884516149, + 9884516150, + 9884516151, + 9884516152, + 9884516153, + 9884516154, + 9884516155, + 9884516156, + 9884516157, + 9884516158, + 9884516159, + 9884516160, + 9884516161, + 9884516162 + ], + "geometry": [ + { "lat": 40.8195190, "lon": -74.0107506 }, + { "lat": 40.8195339, "lon": -74.0106971 }, + { "lat": 40.8195578, "lon": -74.0106107 }, + { "lat": 40.8195790, "lon": -74.0105593 }, + { "lat": 40.8195975, "lon": -74.0105232 }, + { "lat": 40.8196055, "lon": -74.0104928 }, + { "lat": 40.8196064, "lon": -74.0104601 }, + { "lat": 40.8195993, "lon": -74.0104344 }, + { "lat": 40.8195551, "lon": -74.0103340 }, + { "lat": 40.8192097, "lon": -74.0097222 }, + { "lat": 40.8191955, "lon": -74.0097047 }, + { "lat": 40.8191743, "lon": -74.0096872 }, + { "lat": 40.8191522, "lon": -74.0096779 }, + { "lat": 40.8191284, "lon": -74.0096779 }, + { "lat": 40.8191080, "lon": -74.0096872 }, + { "lat": 40.8190815, "lon": -74.0097071 }, + { "lat": 40.8188698, "lon": -74.0098984 }, + { "lat": 40.8188448, "lon": -74.0099213 }, + { "lat": 40.8188302, "lon": -74.0099382 }, + { "lat": 40.8188198, "lon": -74.0099583 }, + { "lat": 40.8188157, "lon": -74.0099814 }, + { "lat": 40.8188168, "lon": -74.0100091 }, + { "lat": 40.8188180, "lon": -74.0100268 }, + { "lat": 40.8188180, "lon": -74.0100453 }, + { "lat": 40.8188151, "lon": -74.0100592 }, + { "lat": 40.8188052, "lon": -74.0100738 }, + { "lat": 40.8185965, "lon": -74.0102556 }, + { "lat": 40.8185056, "lon": -74.0103398 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1078131792, + "bounds": { + "minlat": 40.8405225, + "minlon": -74.0038317, + "maxlat": 40.8412951, + "maxlon": -74.0033193 + }, + "nodes": [ + 9884522564, + 9884522574, + 9884522565, + 9884522566, + 9884522567, + 9884522568, + 9884522569, + 9884522570, + 9884522572, + 9884522571 + ], + "geometry": [ + { "lat": 40.8405225, "lon": -74.0033193 }, + { "lat": 40.8406917, "lon": -74.0036794 }, + { "lat": 40.8407666, "lon": -74.0038196 }, + { "lat": 40.8407932, "lon": -74.0038317 }, + { "lat": 40.8409604, "lon": -74.0036800 }, + { "lat": 40.8409828, "lon": -74.0036864 }, + { "lat": 40.8410479, "lon": -74.0037873 }, + { "lat": 40.8410703, "lon": -74.0037882 }, + { "lat": 40.8411778, "lon": -74.0036798 }, + { "lat": 40.8412951, "lon": -74.0035540 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1078131793, + "bounds": { + "minlat": 40.8408449, + "minlon": -74.0036798, + "maxlat": 40.8411778, + "maxlon": -74.0030544 + }, + "nodes": [ + 9884522572, + 9884522573 + ], + "geometry": [ + { "lat": 40.8411778, "lon": -74.0036798 }, + { "lat": 40.8408449, "lon": -74.0030544 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1078131815, + "bounds": { + "minlat": 40.8289436, + "minlon": -73.9973843, + "maxlat": 40.8300440, + "maxlon": -73.9963370 + }, + "nodes": [ + 103216024, + 103150162 + ], + "geometry": [ + { "lat": 40.8289436, "lon": -73.9973843 }, + { "lat": 40.8300440, "lon": -73.9963370 } + ], + "tags": { + "highway": "residential", + "name": "Stewart Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Stewart", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 1078487726, + "bounds": { + "minlat": 40.8571034, + "minlon": -73.9715467, + "maxlat": 40.8572874, + "maxlon": -73.9713520 + }, + "nodes": [ + 9887211338, + 12020552496, + 12020552499, + 76465370 + ], + "geometry": [ + { "lat": 40.8572874, "lon": -73.9713520 }, + { "lat": 40.8571797, "lon": -73.9714660 }, + { "lat": 40.8571596, "lon": -73.9714853 }, + { "lat": 40.8571034, "lon": -73.9715467 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000029", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Linwood Avenue", + "oneway": "yes", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1078496232, + "bounds": { + "minlat": 40.8271172, + "minlon": -73.9815813, + "maxlat": 40.8272698, + "maxlon": -73.9813078 + }, + "nodes": [ + 9887279347, + 1854444492 + ], + "geometry": [ + { "lat": 40.8272698, "lon": -73.9815813 }, + { "lat": 40.8271172, "lon": -73.9813078 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "Lafayette Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lafayette", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_left_1": "07657", + "tiger:zip_right": "07657", + "turn:lanes": "left|through;right" + } +}, +{ + "type": "way", + "id": 1078676046, + "bounds": { + "minlat": 40.7303652, + "minlon": -73.9362373, + "maxlat": 40.7345888, + "maxlon": -73.9322387 + }, + "nodes": [ + 3440153613, + 10088187239, + 761583753, + 3440153365, + 761583756, + 3440153366, + 761583758, + 10088187210, + 761583759, + 10088187209, + 10088187208, + 761583764, + 10088187207, + 3440153367, + 10088187206, + 10088187205, + 761583769, + 10088187204, + 3440153368, + 10088187203, + 6793902633, + 10088187202, + 761583770, + 10088187199, + 10088187201, + 10088187200, + 3440153369, + 761583773, + 761583775, + 10088187198, + 10088187197, + 10088187196, + 3440153371, + 10088187195, + 10088187194, + 761583776, + 10088187193, + 10088187192, + 10088187191, + 3440153370, + 10088187190, + 761583779, + 10088187189, + 10088187188, + 3440153516, + 10088187187, + 761583780, + 10088187185, + 10088187186, + 761583782 + ], + "geometry": [ + { "lat": 40.7303652, "lon": -73.9322387 }, + { "lat": 40.7303755, "lon": -73.9322845 }, + { "lat": 40.7304000, "lon": -73.9324331 }, + { "lat": 40.7304437, "lon": -73.9325176 }, + { "lat": 40.7304905, "lon": -73.9325833 }, + { "lat": 40.7307425, "lon": -73.9328811 }, + { "lat": 40.7311156, "lon": -73.9332494 }, + { "lat": 40.7311534, "lon": -73.9332911 }, + { "lat": 40.7311877, "lon": -73.9333353 }, + { "lat": 40.7312247, "lon": -73.9334015 }, + { "lat": 40.7315716, "lon": -73.9340878 }, + { "lat": 40.7316158, "lon": -73.9341709 }, + { "lat": 40.7316591, "lon": -73.9342462 }, + { "lat": 40.7317067, "lon": -73.9343207 }, + { "lat": 40.7317472, "lon": -73.9343817 }, + { "lat": 40.7317837, "lon": -73.9344307 }, + { "lat": 40.7318252, "lon": -73.9344788 }, + { "lat": 40.7319197, "lon": -73.9345830 }, + { "lat": 40.7319661, "lon": -73.9346308 }, + { "lat": 40.7320036, "lon": -73.9346611 }, + { "lat": 40.7320328, "lon": -73.9346854 }, + { "lat": 40.7320575, "lon": -73.9347087 }, + { "lat": 40.7320783, "lon": -73.9347321 }, + { "lat": 40.7324245, "lon": -73.9352082 }, + { "lat": 40.7324732, "lon": -73.9352736 }, + { "lat": 40.7325189, "lon": -73.9353282 }, + { "lat": 40.7325726, "lon": -73.9353899 }, + { "lat": 40.7329458, "lon": -73.9357524 }, + { "lat": 40.7332900, "lon": -73.9360875 }, + { "lat": 40.7333496, "lon": -73.9361419 }, + { "lat": 40.7333975, "lon": -73.9361787 }, + { "lat": 40.7334385, "lon": -73.9362057 }, + { "lat": 40.7334770, "lon": -73.9362267 }, + { "lat": 40.7335113, "lon": -73.9362368 }, + { "lat": 40.7335382, "lon": -73.9362373 }, + { "lat": 40.7335624, "lon": -73.9362292 }, + { "lat": 40.7335868, "lon": -73.9362176 }, + { "lat": 40.7336125, "lon": -73.9362008 }, + { "lat": 40.7336386, "lon": -73.9361800 }, + { "lat": 40.7336610, "lon": -73.9361568 }, + { "lat": 40.7336842, "lon": -73.9361235 }, + { "lat": 40.7337100, "lon": -73.9360771 }, + { "lat": 40.7337438, "lon": -73.9360072 }, + { "lat": 40.7337775, "lon": -73.9359303 }, + { "lat": 40.7339948, "lon": -73.9354441 }, + { "lat": 40.7340961, "lon": -73.9351987 }, + { "lat": 40.7341917, "lon": -73.9349692 }, + { "lat": 40.7342702, "lon": -73.9347784 }, + { "lat": 40.7345445, "lon": -73.9341036 }, + { "lat": 40.7345888, "lon": -73.9339794 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Thomas Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1078676047, + "bounds": { + "minlat": 40.7347351, + "minlon": -73.9344860, + "maxlat": 40.7366866, + "maxlon": -73.9242947 + }, + "nodes": [ + 3440153570, + 10088187177, + 3440153555, + 10088187176, + 3440153554, + 10088187175, + 761583784, + 3440153552, + 10088180867, + 5482246018, + 10088180868, + 10088180866, + 761583729, + 10088180869, + 10088180870, + 3440153622, + 10088180871, + 3440153621, + 10088180872, + 3440153549, + 5482246017, + 3440153632, + 3440153637, + 761583584, + 10088180880, + 10088180882, + 3440153678, + 3440153679, + 761583731, + 3440153677, + 3440153675, + 3440153676, + 10088180883, + 761583732, + 10088180884, + 761583734, + 10088180885, + 10088180886, + 10088180887, + 761583735 + ], + "geometry": [ + { "lat": 40.7354477, "lon": -73.9344860 }, + { "lat": 40.7354672, "lon": -73.9344818 }, + { "lat": 40.7354867, "lon": -73.9344727 }, + { "lat": 40.7355114, "lon": -73.9344531 }, + { "lat": 40.7355292, "lon": -73.9344351 }, + { "lat": 40.7355447, "lon": -73.9344097 }, + { "lat": 40.7355569, "lon": -73.9343837 }, + { "lat": 40.7359950, "lon": -73.9331871 }, + { "lat": 40.7361714, "lon": -73.9326374 }, + { "lat": 40.7362129, "lon": -73.9325220 }, + { "lat": 40.7362370, "lon": -73.9324634 }, + { "lat": 40.7362685, "lon": -73.9323928 }, + { "lat": 40.7366608, "lon": -73.9315815 }, + { "lat": 40.7366726, "lon": -73.9315518 }, + { "lat": 40.7366810, "lon": -73.9315214 }, + { "lat": 40.7366862, "lon": -73.9314947 }, + { "lat": 40.7366866, "lon": -73.9314701 }, + { "lat": 40.7366850, "lon": -73.9314449 }, + { "lat": 40.7366797, "lon": -73.9314102 }, + { "lat": 40.7365280, "lon": -73.9306322 }, + { "lat": 40.7363396, "lon": -73.9296558 }, + { "lat": 40.7361340, "lon": -73.9285857 }, + { "lat": 40.7359690, "lon": -73.9277467 }, + { "lat": 40.7358467, "lon": -73.9271271 }, + { "lat": 40.7358196, "lon": -73.9269915 }, + { "lat": 40.7357901, "lon": -73.9268583 }, + { "lat": 40.7355652, "lon": -73.9259327 }, + { "lat": 40.7355531, "lon": -73.9258870 }, + { "lat": 40.7355350, "lon": -73.9258336 }, + { "lat": 40.7351941, "lon": -73.9250061 }, + { "lat": 40.7349543, "lon": -73.9244284 }, + { "lat": 40.7349379, "lon": -73.9243966 }, + { "lat": 40.7349198, "lon": -73.9243702 }, + { "lat": 40.7348984, "lon": -73.9243469 }, + { "lat": 40.7348722, "lon": -73.9243282 }, + { "lat": 40.7348444, "lon": -73.9243170 }, + { "lat": 40.7348167, "lon": -73.9243064 }, + { "lat": 40.7347882, "lon": -73.9242986 }, + { "lat": 40.7347630, "lon": -73.9242947 }, + { "lat": 40.7347351, "lon": -73.9242969 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Boundary Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1078676049, + "bounds": { + "minlat": 40.7294249, + "minlon": -73.9322387, + "maxlat": 40.7303652, + "maxlon": -73.9308236 + }, + "nodes": [ + 3440153361, + 10088187230, + 3440153363, + 10088187231, + 10088187232, + 761583745, + 10088187233, + 10088187234, + 3440153360, + 10088187235, + 761583747, + 10088187236, + 3440153364, + 10088187237, + 761583751, + 10088187238, + 3440153613 + ], + "geometry": [ + { "lat": 40.7294249, "lon": -73.9308236 }, + { "lat": 40.7294260, "lon": -73.9308416 }, + { "lat": 40.7294314, "lon": -73.9308650 }, + { "lat": 40.7294432, "lon": -73.9308846 }, + { "lat": 40.7294591, "lon": -73.9309016 }, + { "lat": 40.7294751, "lon": -73.9309162 }, + { "lat": 40.7295981, "lon": -73.9310123 }, + { "lat": 40.7296500, "lon": -73.9310576 }, + { "lat": 40.7296925, "lon": -73.9310987 }, + { "lat": 40.7297338, "lon": -73.9311457 }, + { "lat": 40.7297792, "lon": -73.9312061 }, + { "lat": 40.7298355, "lon": -73.9312906 }, + { "lat": 40.7298817, "lon": -73.9313683 }, + { "lat": 40.7299499, "lon": -73.9314844 }, + { "lat": 40.7303141, "lon": -73.9321259 }, + { "lat": 40.7303396, "lon": -73.9321792 }, + { "lat": 40.7303652, "lon": -73.9322387 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Jerome Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1078676055, + "bounds": { + "minlat": 40.7322029, + "minlon": -73.9313033, + "maxlat": 40.7322849, + "maxlon": -73.9307675 + }, + "nodes": [ + 3440153591, + 3440153595, + 761583590 + ], + "geometry": [ + { "lat": 40.7322029, "lon": -73.9307675 }, + { "lat": 40.7322110, "lon": -73.9309123 }, + { "lat": 40.7322849, "lon": -73.9313033 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "5 mph", + "source": "Yahoo" + } +}, +{ + "type": "way", + "id": 1078676056, + "bounds": { + "minlat": 40.7336084, + "minlon": -73.9282851, + "maxlat": 40.7340668, + "maxlon": -73.9267561 + }, + "nodes": [ + 10088187174, + 10088187156, + 761583705, + 10088187155, + 3440153674, + 761583708, + 10088187154, + 10088187153, + 10088187152, + 761583709, + 10088187151, + 10088187150, + 761583710, + 10088187149, + 10088187148, + 761583711, + 3440153646, + 10088187128, + 10088187127, + 761583713, + 10088187126, + 10088187125, + 761583580 + ], + "geometry": [ + { "lat": 40.7336084, "lon": -73.9282851 }, + { "lat": 40.7336420, "lon": -73.9282575 }, + { "lat": 40.7336870, "lon": -73.9282153 }, + { "lat": 40.7337276, "lon": -73.9281671 }, + { "lat": 40.7337682, "lon": -73.9281164 }, + { "lat": 40.7339968, "lon": -73.9277965 }, + { "lat": 40.7340209, "lon": -73.9277581 }, + { "lat": 40.7340377, "lon": -73.9277220 }, + { "lat": 40.7340495, "lon": -73.9276862 }, + { "lat": 40.7340563, "lon": -73.9276460 }, + { "lat": 40.7340613, "lon": -73.9276056 }, + { "lat": 40.7340656, "lon": -73.9275490 }, + { "lat": 40.7340668, "lon": -73.9274844 }, + { "lat": 40.7340640, "lon": -73.9274301 }, + { "lat": 40.7340584, "lon": -73.9273682 }, + { "lat": 40.7340505, "lon": -73.9273075 }, + { "lat": 40.7340256, "lon": -73.9271676 }, + { "lat": 40.7340058, "lon": -73.9270601 }, + { "lat": 40.7339959, "lon": -73.9269981 }, + { "lat": 40.7339911, "lon": -73.9269301 }, + { "lat": 40.7339936, "lon": -73.9268704 }, + { "lat": 40.7339972, "lon": -73.9268099 }, + { "lat": 40.7340038, "lon": -73.9267561 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Cathedral Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1078676060, + "bounds": { + "minlat": 40.7319007, + "minlon": -73.9181342, + "maxlat": 40.7338695, + "maxlon": -73.9176718 + }, + "nodes": [ + 761564887, + 6794149492, + 761564902 + ], + "geometry": [ + { "lat": 40.7338695, "lon": -73.9176718 }, + { "lat": 40.7326600, "lon": -73.9179543 }, + { "lat": 40.7319007, "lon": -73.9181342 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Cecilia Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1078676061, + "bounds": { + "minlat": 40.7339206, + "minlon": -73.9180547, + "maxlat": 40.7352898, + "maxlon": -73.9176284 + }, + "nodes": [ + 761564890, + 10087633286, + 10087633287, + 10087633288, + 10087633289, + 10087633285, + 3795557333 + ], + "geometry": [ + { "lat": 40.7339206, "lon": -73.9180547 }, + { "lat": 40.7346932, "lon": -73.9177868 }, + { "lat": 40.7348347, "lon": -73.9177396 }, + { "lat": 40.7349377, "lon": -73.9177068 }, + { "lat": 40.7350382, "lon": -73.9176769 }, + { "lat": 40.7352096, "lon": -73.9176320 }, + { "lat": 40.7352898, "lon": -73.9176284 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Boundary Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1078676063, + "bounds": { + "minlat": 40.7354837, + "minlon": -73.9133660, + "maxlat": 40.7358388, + "maxlon": -73.9101447 + }, + "nodes": [ + 761564742, + 10087633313, + 10087633314, + 10087633312, + 761564747, + 10087633315, + 10087633316, + 10087637017, + 10087637018, + 761564749, + 10087637019, + 10087637020, + 761564750, + 10087637021, + 10087637022, + 761564751, + 10087637023, + 10087637024, + 761564753, + 10087637025, + 9888646024, + 10087637026, + 761564754 + ], + "geometry": [ + { "lat": 40.7355174, "lon": -73.9133660 }, + { "lat": 40.7355241, "lon": -73.9133546 }, + { "lat": 40.7355267, "lon": -73.9133346 }, + { "lat": 40.7355266, "lon": -73.9133139 }, + { "lat": 40.7354837, "lon": -73.9120962 }, + { "lat": 40.7355842, "lon": -73.9113512 }, + { "lat": 40.7355933, "lon": -73.9112944 }, + { "lat": 40.7356038, "lon": -73.9112459 }, + { "lat": 40.7356157, "lon": -73.9111953 }, + { "lat": 40.7356327, "lon": -73.9111413 }, + { "lat": 40.7357578, "lon": -73.9107584 }, + { "lat": 40.7357777, "lon": -73.9106952 }, + { "lat": 40.7357949, "lon": -73.9106357 }, + { "lat": 40.7358104, "lon": -73.9105728 }, + { "lat": 40.7358244, "lon": -73.9105104 }, + { "lat": 40.7358340, "lon": -73.9104488 }, + { "lat": 40.7358383, "lon": -73.9103931 }, + { "lat": 40.7358388, "lon": -73.9103440 }, + { "lat": 40.7358355, "lon": -73.9102921 }, + { "lat": 40.7358279, "lon": -73.9102508 }, + { "lat": 40.7358164, "lon": -73.9102121 }, + { "lat": 40.7357998, "lon": -73.9101751 }, + { "lat": 40.7357817, "lon": -73.9101447 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Boundary Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1078676065, + "bounds": { + "minlat": 40.7308285, + "minlon": -73.9131343, + "maxlat": 40.7357817, + "maxlon": -73.9100720 + }, + "nodes": [ + 761564754, + 10087637027, + 10087637028, + 9888646023, + 10087637029, + 10087637030, + 761564755, + 10087637031, + 9888646025, + 10087637032, + 761564756, + 10087637033, + 761564758, + 10087637034, + 10087637035, + 10087637036, + 761564761, + 10087637037, + 10087637038, + 10087637039, + 761564763, + 10087637040, + 10087637041, + 10087637042, + 10087637043, + 9888658239, + 761564766, + 10087637044, + 10087637045, + 761564768, + 10087637046, + 10087637048, + 10087637047, + 761564783, + 761564785, + 10087637053, + 10087637054, + 10087637055, + 9888658240, + 10087637056, + 10087637057, + 761564791, + 10087637058, + 10087637059, + 10087637060, + 761564800, + 10087637061, + 761564806, + 10087637062, + 10087637063, + 10087637064, + 761564811, + 10087637065, + 10087637066, + 10087637067, + 761564815 + ], + "geometry": [ + { "lat": 40.7357817, "lon": -73.9101447 }, + { "lat": 40.7357624, "lon": -73.9101184 }, + { "lat": 40.7357389, "lon": -73.9100970 }, + { "lat": 40.7357138, "lon": -73.9100814 }, + { "lat": 40.7356932, "lon": -73.9100748 }, + { "lat": 40.7356732, "lon": -73.9100720 }, + { "lat": 40.7356509, "lon": -73.9100735 }, + { "lat": 40.7356297, "lon": -73.9100808 }, + { "lat": 40.7356067, "lon": -73.9100922 }, + { "lat": 40.7355798, "lon": -73.9101110 }, + { "lat": 40.7355516, "lon": -73.9101338 }, + { "lat": 40.7355105, "lon": -73.9101709 }, + { "lat": 40.7351889, "lon": -73.9104964 }, + { "lat": 40.7351632, "lon": -73.9105197 }, + { "lat": 40.7351362, "lon": -73.9105410 }, + { "lat": 40.7351074, "lon": -73.9105587 }, + { "lat": 40.7350801, "lon": -73.9105729 }, + { "lat": 40.7350496, "lon": -73.9105876 }, + { "lat": 40.7349253, "lon": -73.9106439 }, + { "lat": 40.7348671, "lon": -73.9106718 }, + { "lat": 40.7348085, "lon": -73.9107017 }, + { "lat": 40.7347376, "lon": -73.9107397 }, + { "lat": 40.7346684, "lon": -73.9107788 }, + { "lat": 40.7345985, "lon": -73.9108204 }, + { "lat": 40.7345179, "lon": -73.9108705 }, + { "lat": 40.7344487, "lon": -73.9109161 }, + { "lat": 40.7340887, "lon": -73.9111575 }, + { "lat": 40.7340318, "lon": -73.9111936 }, + { "lat": 40.7339602, "lon": -73.9112338 }, + { "lat": 40.7338906, "lon": -73.9112688 }, + { "lat": 40.7338224, "lon": -73.9112977 }, + { "lat": 40.7333354, "lon": -73.9114946 }, + { "lat": 40.7331911, "lon": -73.9115498 }, + { "lat": 40.7328273, "lon": -73.9116855 }, + { "lat": 40.7310204, "lon": -73.9123485 }, + { "lat": 40.7309860, "lon": -73.9123642 }, + { "lat": 40.7309533, "lon": -73.9123809 }, + { "lat": 40.7309301, "lon": -73.9123951 }, + { "lat": 40.7309116, "lon": -73.9124093 }, + { "lat": 40.7308882, "lon": -73.9124337 }, + { "lat": 40.7308695, "lon": -73.9124624 }, + { "lat": 40.7308545, "lon": -73.9124915 }, + { "lat": 40.7308441, "lon": -73.9125216 }, + { "lat": 40.7308355, "lon": -73.9125554 }, + { "lat": 40.7308302, "lon": -73.9125888 }, + { "lat": 40.7308285, "lon": -73.9126239 }, + { "lat": 40.7308310, "lon": -73.9126553 }, + { "lat": 40.7308581, "lon": -73.9128640 }, + { "lat": 40.7308650, "lon": -73.9129015 }, + { "lat": 40.7308763, "lon": -73.9129361 }, + { "lat": 40.7308923, "lon": -73.9129738 }, + { "lat": 40.7309146, "lon": -73.9130169 }, + { "lat": 40.7309366, "lon": -73.9130495 }, + { "lat": 40.7309596, "lon": -73.9130782 }, + { "lat": 40.7309886, "lon": -73.9131062 }, + { "lat": 40.7310217, "lon": -73.9131343 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Anne Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1078676068, + "bounds": { + "minlat": 40.7307044, + "minlon": -73.9175329, + "maxlat": 40.7310113, + "maxlon": -73.9167792 + }, + "nodes": [ + 277390491, + 10087637083, + 10087637082, + 277390492, + 10087637085, + 10087637086, + 10087637087, + 10087637088, + 10087637089, + 10087637161, + 42786880 + ], + "geometry": [ + { "lat": 40.7307044, "lon": -73.9167792 }, + { "lat": 40.7307213, "lon": -73.9168258 }, + { "lat": 40.7307407, "lon": -73.9168675 }, + { "lat": 40.7307802, "lon": -73.9169399 }, + { "lat": 40.7308230, "lon": -73.9170263 }, + { "lat": 40.7308696, "lon": -73.9171293 }, + { "lat": 40.7309126, "lon": -73.9172321 }, + { "lat": 40.7309445, "lon": -73.9173213 }, + { "lat": 40.7309731, "lon": -73.9174051 }, + { "lat": 40.7309944, "lon": -73.9174762 }, + { "lat": 40.7310113, "lon": -73.9175329 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "54th Avenue", + "sidewalk:right": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1078676069, + "bounds": { + "minlat": 40.7286921, + "minlon": -73.9147502, + "maxlat": 40.7302856, + "maxlon": -73.9141600 + }, + "nodes": [ + 9888602269, + 10087637280, + 761564658, + 10087637279, + 10087637278, + 761564659, + 761564653 + ], + "geometry": [ + { "lat": 40.7286921, "lon": -73.9147403 }, + { "lat": 40.7287133, "lon": -73.9147482 }, + { "lat": 40.7287310, "lon": -73.9147502 }, + { "lat": 40.7287526, "lon": -73.9147487 }, + { "lat": 40.7287733, "lon": -73.9147427 }, + { "lat": 40.7291529, "lon": -73.9145987 }, + { "lat": 40.7302856, "lon": -73.9141600 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Mark Avenue", + "source": "Yahoo", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1078677248, + "bounds": { + "minlat": 40.7351817, + "minlon": -73.9172520, + "maxlat": 40.7353356, + "maxlon": -73.9161950 + }, + "nodes": [ + 10087633304, + 10087633305, + 10087633303, + 3795557339, + 10087633302, + 761564907 + ], + "geometry": [ + { "lat": 40.7351817, "lon": -73.9172520 }, + { "lat": 40.7352031, "lon": -73.9171984 }, + { "lat": 40.7352123, "lon": -73.9171719 }, + { "lat": 40.7352173, "lon": -73.9171473 }, + { "lat": 40.7352615, "lon": -73.9167561 }, + { "lat": 40.7353356, "lon": -73.9161950 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Boundary Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1078679195, + "bounds": { + "minlat": 40.7321707, + "minlon": -73.9318762, + "maxlat": 40.7322849, + "maxlon": -73.9313033 + }, + "nodes": [ + 761583590, + 10088187249, + 761583812, + 761583813 + ], + "geometry": [ + { "lat": 40.7322849, "lon": -73.9313033 }, + { "lat": 40.7322609, "lon": -73.9314705 }, + { "lat": 40.7322346, "lon": -73.9316076 }, + { "lat": 40.7321707, "lon": -73.9318762 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "5 mph", + "source": "Yahoo" + } +}, +{ + "type": "way", + "id": 1078987118, + "bounds": { + "minlat": 40.8384580, + "minlon": -73.9943589, + "maxlat": 40.8385964, + "maxlon": -73.9941195 + }, + "nodes": [ + 9891196048, + 103314334 + ], + "geometry": [ + { "lat": 40.8385964, "lon": -73.9943589 }, + { "lat": 40.8384580, "lon": -73.9941195 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "East Columbia Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 1079478359, + "bounds": { + "minlat": 40.8318418, + "minlon": -74.0114801, + "maxlat": 40.8323355, + "maxlon": -74.0111257 + }, + "nodes": [ + 9895312489, + 9895312488, + 9895312487, + 9895312486, + 9895312485, + 9895312484, + 9895312483, + 5673866990, + 5673866991 + ], + "geometry": [ + { "lat": 40.8318418, "lon": -74.0114801 }, + { "lat": 40.8322718, "lon": -74.0114660 }, + { "lat": 40.8322910, "lon": -74.0114604 }, + { "lat": 40.8323091, "lon": -74.0114462 }, + { "lat": 40.8323214, "lon": -74.0114309 }, + { "lat": 40.8323279, "lon": -74.0114136 }, + { "lat": 40.8323310, "lon": -74.0113872 }, + { "lat": 40.8323317, "lon": -74.0113485 }, + { "lat": 40.8323355, "lon": -74.0111257 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1079478360, + "bounds": { + "minlat": 40.8323317, + "minlon": -74.0113518, + "maxlat": 40.8330744, + "maxlon": -74.0112707 + }, + "nodes": [ + 695055283, + 5673866988, + 9895312492, + 9895312491, + 5673866989, + 9895312490, + 9895341172, + 5673866990 + ], + "geometry": [ + { "lat": 40.8330744, "lon": -74.0112707 }, + { "lat": 40.8330317, "lon": -74.0113142 }, + { "lat": 40.8330110, "lon": -74.0113297 }, + { "lat": 40.8329870, "lon": -74.0113426 }, + { "lat": 40.8329591, "lon": -74.0113492 }, + { "lat": 40.8329179, "lon": -74.0113518 }, + { "lat": 40.8326739, "lon": -74.0113504 }, + { "lat": 40.8323317, "lon": -74.0113485 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1079478361, + "bounds": { + "minlat": 40.8319382, + "minlon": -74.0106984, + "maxlat": 40.8324601, + "maxlon": -74.0106791 + }, + "nodes": [ + 5673866994, + 5673866995 + ], + "geometry": [ + { "lat": 40.8319382, "lon": -74.0106791 }, + { "lat": 40.8324601, "lon": -74.0106984 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1079478362, + "bounds": { + "minlat": 40.8319289, + "minlon": -74.0111063, + "maxlat": 40.8319382, + "maxlon": -74.0106791 + }, + "nodes": [ + 5673866993, + 8374850349, + 5673866994 + ], + "geometry": [ + { "lat": 40.8319289, "lon": -74.0111063 }, + { "lat": 40.8319337, "lon": -74.0108858 }, + { "lat": 40.8319382, "lon": -74.0106791 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1079478513, + "bounds": { + "minlat": 40.8326739, + "minlon": -74.0113504, + "maxlat": 40.8326760, + "maxlon": -74.0111419 + }, + "nodes": [ + 9895341172, + 9895341173 + ], + "geometry": [ + { "lat": 40.8326739, "lon": -74.0113504 }, + { "lat": 40.8326760, "lon": -74.0111419 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1079478531, + "bounds": { + "minlat": 40.8318950, + "minlon": -74.0103994, + "maxlat": 40.8319016, + "maxlon": -74.0102529 + }, + "nodes": [ + 5673867000, + 5673867001 + ], + "geometry": [ + { "lat": 40.8319016, "lon": -74.0102529 }, + { "lat": 40.8318950, "lon": -74.0103994 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1079478532, + "bounds": { + "minlat": 40.8313599, + "minlon": -74.0103994, + "maxlat": 40.8318950, + "maxlon": -74.0103623 + }, + "nodes": [ + 5673867001, + 5673867002 + ], + "geometry": [ + { "lat": 40.8318950, "lon": -74.0103994 }, + { "lat": 40.8313599, "lon": -74.0103623 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1079478533, + "bounds": { + "minlat": 40.8313599, + "minlon": -74.0112948, + "maxlat": 40.8315753, + "maxlon": -74.0103623 + }, + "nodes": [ + 5673867002, + 9895341455, + 9895341457, + 5673867003, + 9895341458, + 9895341456 + ], + "geometry": [ + { "lat": 40.8313599, "lon": -74.0103623 }, + { "lat": 40.8315749, "lon": -74.0112412 }, + { "lat": 40.8315753, "lon": -74.0112606 }, + { "lat": 40.8315727, "lon": -74.0112756 }, + { "lat": 40.8315653, "lon": -74.0112873 }, + { "lat": 40.8315578, "lon": -74.0112948 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1079478534, + "bounds": { + "minlat": 40.8306131, + "minlon": -74.0116096, + "maxlat": 40.8310044, + "maxlon": -74.0115274 + }, + "nodes": [ + 9895341459, + 5673867004, + 9895341454 + ], + "geometry": [ + { "lat": 40.8310044, "lon": -74.0115274 }, + { "lat": 40.8308368, "lon": -74.0115978 }, + { "lat": 40.8306131, "lon": -74.0116096 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1079478535, + "bounds": { + "minlat": 40.8308151, + "minlon": -74.0106403, + "maxlat": 40.8308556, + "maxlon": -74.0104776 + }, + "nodes": [ + 9895341460, + 9895341461 + ], + "geometry": [ + { "lat": 40.8308556, "lon": -74.0106403 }, + { "lat": 40.8308151, "lon": -74.0104776 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1079478536, + "bounds": { + "minlat": 40.8303800, + "minlon": -74.0107829, + "maxlat": 40.8306493, + "maxlon": -74.0105504 + }, + "nodes": [ + 9895341462, + 9895341463, + 9895341464, + 9895341465, + 9895341466, + 9895341467 + ], + "geometry": [ + { "lat": 40.8303800, "lon": -74.0107829 }, + { "lat": 40.8306331, "lon": -74.0106875 }, + { "lat": 40.8306438, "lon": -74.0106781 }, + { "lat": 40.8306488, "lon": -74.0106654 }, + { "lat": 40.8306493, "lon": -74.0106479 }, + { "lat": 40.8306238, "lon": -74.0105504 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1080060912, + "bounds": { + "minlat": 40.7231127, + "minlon": -73.9440866, + "maxlat": 40.7232911, + "maxlon": -73.9422257 + }, + "nodes": [ + 42509193, + 6732842567, + 13046962492, + 8672287431, + 9935605481, + 6732842573, + 8672287425 + ], + "geometry": [ + { "lat": 40.7232911, "lon": -73.9422257 }, + { "lat": 40.7232824, "lon": -73.9423132 }, + { "lat": 40.7232090, "lon": -73.9430862 }, + { "lat": 40.7232021, "lon": -73.9431587 }, + { "lat": 40.7231920, "lon": -73.9432585 }, + { "lat": 40.7231201, "lon": -73.9440058 }, + { "lat": 40.7231127, "lon": -73.9440866 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Driggs Avenue", + "note": "confirm side of street for bike lane", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1080068095, + "bounds": { + "minlat": 40.7776527, + "minlon": -73.9880662, + "maxlat": 40.7779024, + "maxlon": -73.9878882 + }, + "nodes": [ + 9900069571, + 9900041159, + 9900069573, + 9900069574, + 9900069575, + 9900069576, + 9900069577, + 9900069571 + ], + "geometry": [ + { "lat": 40.7779024, "lon": -73.9880633 }, + { "lat": 40.7778348, "lon": -73.9878882 }, + { "lat": 40.7776527, "lon": -73.9879701 }, + { "lat": 40.7777251, "lon": -73.9880306 }, + { "lat": 40.7778161, "lon": -73.9880626 }, + { "lat": 40.7778575, "lon": -73.9880662 }, + { "lat": 40.7778965, "lon": -73.9880631 }, + { "lat": 40.7779024, "lon": -73.9880633 } + ], + "tags": { + "access": "yes", + "area": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes" + } +}, +{ + "type": "way", + "id": 1080174339, + "bounds": { + "minlat": 40.8810149, + "minlon": -73.9529140, + "maxlat": 40.8814676, + "maxlon": -73.9521095 + }, + "nodes": [ + 103187020, + 103235604 + ], + "geometry": [ + { "lat": 40.8814676, "lon": -73.9529140 }, + { "lat": 40.8810149, "lon": -73.9521095 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Palisade Avenue", + "old_ref": "CR 66", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 1080174340, + "bounds": { + "minlat": 40.8817560, + "minlon": -73.9535345, + "maxlat": 40.8818237, + "maxlon": -73.9534173 + }, + "nodes": [ + 7115788416, + 7936517751 + ], + "geometry": [ + { "lat": 40.8818237, "lon": -73.9535345 }, + { "lat": 40.8817560, "lon": -73.9534173 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Palisade Avenue", + "old_ref": "CR 66", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 1080174341, + "bounds": { + "minlat": 40.8814676, + "minlon": -73.9534173, + "maxlat": 40.8817560, + "maxlon": -73.9529140 + }, + "nodes": [ + 7936517751, + 103187020 + ], + "geometry": [ + { "lat": 40.8817560, "lon": -73.9534173 }, + { "lat": 40.8814676, "lon": -73.9529140 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxweightrating:hgv": "4", + "name": "East Palisade Avenue", + "old_ref": "CR 66", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 1080179859, + "bounds": { + "minlat": 40.8561233, + "minlon": -73.9787713, + "maxlat": 40.8564670, + "maxlon": -73.9783333 + }, + "nodes": [ + 9901107246, + 9901107247, + 9901107248, + 9901107249, + 9901107250, + 9901107251, + 9901107252, + 9901107253, + 9901107254, + 11007764190, + 9901107255, + 9901107256, + 9901107257, + 9901107258 + ], + "geometry": [ + { "lat": 40.8563181, "lon": -73.9787713 }, + { "lat": 40.8563656, "lon": -73.9786979 }, + { "lat": 40.8564114, "lon": -73.9786167 }, + { "lat": 40.8564654, "lon": -73.9785104 }, + { "lat": 40.8564670, "lon": -73.9784668 }, + { "lat": 40.8564305, "lon": -73.9784159 }, + { "lat": 40.8563823, "lon": -73.9783615 }, + { "lat": 40.8563563, "lon": -73.9783338 }, + { "lat": 40.8563287, "lon": -73.9783333 }, + { "lat": 40.8563101, "lon": -73.9783496 }, + { "lat": 40.8562670, "lon": -73.9783872 }, + { "lat": 40.8562138, "lon": -73.9784447 }, + { "lat": 40.8561594, "lon": -73.9785084 }, + { "lat": 40.8561233, "lon": -73.9785556 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1080183164, + "bounds": { + "minlat": 40.8154478, + "minlon": -73.9814369, + "maxlat": 40.8158065, + "maxlon": -73.9804740 + }, + "nodes": [ + 1750475740, + 1750475757, + 1750475756 + ], + "geometry": [ + { "lat": 40.8154478, "lon": -73.9804740 }, + { "lat": 40.8157880, "lon": -73.9813775 }, + { "lat": 40.8158065, "lon": -73.9814369 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1080185967, + "bounds": { + "minlat": 40.7696336, + "minlon": -73.9918836, + "maxlat": 40.7700346, + "maxlon": -73.9915880 + }, + "nodes": [ + 9901113506, + 10083919741, + 42430742 + ], + "geometry": [ + { "lat": 40.7700346, "lon": -73.9915880 }, + { "lat": 40.7697037, "lon": -73.9918333 }, + { "lat": 40.7696336, "lon": -73.9918836 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080185968, + "bounds": { + "minlat": 40.7694063, + "minlon": -73.9920442, + "maxlat": 40.7696336, + "maxlon": -73.9918836 + }, + "nodes": [ + 42430742, + 10083930811, + 9901113505 + ], + "geometry": [ + { "lat": 40.7696336, "lon": -73.9918836 }, + { "lat": 40.7695804, "lon": -73.9919218 }, + { "lat": 40.7694063, "lon": -73.9920442 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080185969, + "bounds": { + "minlat": 40.7690170, + "minlon": -73.9923216, + "maxlat": 40.7694063, + "maxlon": -73.9920442 + }, + "nodes": [ + 9901113505, + 10084943013, + 42430739 + ], + "geometry": [ + { "lat": 40.7694063, "lon": -73.9920442 }, + { "lat": 40.7690684, "lon": -73.9922855 }, + { "lat": 40.7690170, "lon": -73.9923216 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080185970, + "bounds": { + "minlat": 40.7700346, + "minlon": -73.9915880, + "maxlat": 40.7703169, + "maxlon": -73.9913932 + }, + "nodes": [ + 42430745, + 7595748180, + 9901113506 + ], + "geometry": [ + { "lat": 40.7703169, "lon": -73.9913932 }, + { "lat": 40.7702193, "lon": -73.9914633 }, + { "lat": 40.7700346, "lon": -73.9915880 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080319437, + "bounds": { + "minlat": 40.7218857, + "minlon": -73.9804520, + "maxlat": 40.7222831, + "maxlon": -73.9801612 + }, + "nodes": [ + 12954862729, + 8309479333, + 42455175 + ], + "geometry": [ + { "lat": 40.7218857, "lon": -73.9804520 }, + { "lat": 40.7222271, "lon": -73.9802022 }, + { "lat": 40.7222831, "lon": -73.9801612 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway": "track", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080319438, + "bounds": { + "minlat": 40.7228867, + "minlon": -73.9797217, + "maxlat": 40.7232027, + "maxlon": -73.9794917 + }, + "nodes": [ + 42453158, + 8309479357, + 10778677019 + ], + "geometry": [ + { "lat": 40.7228867, "lon": -73.9797217 }, + { "lat": 40.7229445, "lon": -73.9796797 }, + { "lat": 40.7232027, "lon": -73.9794917 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080319439, + "bounds": { + "minlat": 40.7252889, + "minlon": -73.9779731, + "maxlat": 40.7256425, + "maxlon": -73.9777249 + }, + "nodes": [ + 42449029, + 8309479395, + 12954862731 + ], + "geometry": [ + { "lat": 40.7252889, "lon": -73.9779731 }, + { "lat": 40.7253340, "lon": -73.9779403 }, + { "lat": 40.7256425, "lon": -73.9777249 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway": "track", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080324895, + "bounds": { + "minlat": 40.8571506, + "minlon": -73.9228628, + "maxlat": 40.8582524, + "maxlon": -73.9228010 + }, + "nodes": [ + 9902223857, + 9902223858, + 9902223859, + 9902223861, + 9902223860, + 589927894 + ], + "geometry": [ + { "lat": 40.8571506, "lon": -73.9228010 }, + { "lat": 40.8574684, "lon": -73.9228204 }, + { "lat": 40.8577418, "lon": -73.9228345 }, + { "lat": 40.8579330, "lon": -73.9228451 }, + { "lat": 40.8581242, "lon": -73.9228557 }, + { "lat": 40.8582524, "lon": -73.9228628 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "25 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "oneway": "yes", + "ref": "HRD", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East River:Harlem River", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 1080324899, + "bounds": { + "minlat": 40.8304679, + "minlon": -73.9400893, + "maxlat": 40.8309959, + "maxlon": -73.9398777 + }, + "nodes": [ + 42444712, + 13535333041, + 42444715, + 42444718, + 9166241192, + 13535333042, + 42444722, + 13535333043, + 6407228007 + ], + "geometry": [ + { "lat": 40.8309959, "lon": -73.9398777 }, + { "lat": 40.8309388, "lon": -73.9399163 }, + { "lat": 40.8308960, "lon": -73.9399420 }, + { "lat": 40.8308468, "lon": -73.9399664 }, + { "lat": 40.8307922, "lon": -73.9399867 }, + { "lat": 40.8307436, "lon": -73.9400038 }, + { "lat": 40.8305373, "lon": -73.9400605 }, + { "lat": 40.8304988, "lon": -73.9400749 }, + { "lat": 40.8304679, "lon": -73.9400893 } + ], + "tags": { + "alt_name": "Willie Mays Drive", + "bicycle": "use_sidepath", + "cycleway:left": "separate", + "cycleway:right": "no", + "description": "This honorary street name memorializes Willie Mays.", + "hgv": "destination", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Harlem River Driveway", + "name:etymology:wikidata": "Q597451", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Harlem River", + "tiger:name_base_1": "159th", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Dr", + "tiger:name_type_1": "St", + "turn:lanes:forward": "left;through|right" + } +}, +{ + "type": "way", + "id": 1080324900, + "bounds": { + "minlat": 40.8338249, + "minlon": -73.9374900, + "maxlat": 40.8339232, + "maxlon": -73.9373610 + }, + "nodes": [ + 42426665, + 9166241204 + ], + "geometry": [ + { "lat": 40.8339232, "lon": -73.9373610 }, + { "lat": 40.8338249, "lon": -73.9374900 } + ], + "tags": { + "alt_name": "Willie Mays Drive", + "bicycle": "use_sidepath", + "description": "This honorary street name memorializes Willie Mays.", + "hgv": "destination", + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Harlem River Driveway", + "name:etymology:wikidata": "Q597451", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Harlem River", + "tiger:name_base_1": "159th", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Dr", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "turn:lanes:backward": "through|right" + } +}, +{ + "type": "way", + "id": 1080324902, + "bounds": { + "minlat": 40.8095503, + "minlon": -73.9359324, + "maxlat": 40.8102242, + "maxlon": -73.9354432 + }, + "nodes": [ + 373850916, + 589927991 + ], + "geometry": [ + { "lat": 40.8102242, "lon": -73.9354432 }, + { "lat": 40.8095503, "lon": -73.9359324 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1080324903, + "bounds": { + "minlat": 40.8095348, + "minlon": -73.9359324, + "maxlat": 40.8095503, + "maxlon": -73.9358982 + }, + "nodes": [ + 589927991, + 7785803398 + ], + "geometry": [ + { "lat": 40.8095503, "lon": -73.9359324 }, + { "lat": 40.8095348, "lon": -73.9358982 } + ], + "tags": { + "highway": "residential", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 132nd Street", + "surface": "asphalt", + "turn:lanes:forward": "left|left" + } +}, +{ + "type": "way", + "id": 1080324904, + "bounds": { + "minlat": 40.8032879, + "minlon": -73.9312143, + "maxlat": 40.8034625, + "maxlon": -73.9308128 + }, + "nodes": [ + 42425747, + 7471942373 + ], + "geometry": [ + { "lat": 40.8034625, "lon": -73.9312143 }, + { "lat": 40.8032879, "lon": -73.9308128 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 127th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1080339124, + "bounds": { + "minlat": 40.7739449, + "minlon": -73.9785123, + "maxlat": 40.7740599, + "maxlon": -73.9784274 + }, + "nodes": [ + 9902381179, + 9902381181, + 9902381180 + ], + "geometry": [ + { "lat": 40.7740599, "lon": -73.9784274 }, + { "lat": 40.7740037, "lon": -73.9784688 }, + { "lat": 40.7739449, "lon": -73.9785123 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1080341485, + "bounds": { + "minlat": 40.7739048, + "minlon": -73.9805864, + "maxlat": 40.7739774, + "maxlon": -73.9805309 + }, + "nodes": [ + 9902399056, + 9902399058, + 9902399057 + ], + "geometry": [ + { "lat": 40.7739774, "lon": -73.9805309 }, + { "lat": 40.7739287, "lon": -73.9805681 }, + { "lat": 40.7739048, "lon": -73.9805864 } + ], + "tags": { + "amenity": "loading_dock", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1080341488, + "bounds": { + "minlat": 40.7738682, + "minlon": -73.9804985, + "maxlat": 40.7739399, + "maxlon": -73.9804419 + }, + "nodes": [ + 9902399060, + 9902399062, + 9902399061 + ], + "geometry": [ + { "lat": 40.7738682, "lon": -73.9804985 }, + { "lat": 40.7738914, "lon": -73.9804798 }, + { "lat": 40.7739399, "lon": -73.9804419 } + ], + "tags": { + "amenity": "loading_dock", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1080341489, + "bounds": { + "minlat": 40.7733705, + "minlon": -73.9793091, + "maxlat": 40.7734406, + "maxlon": -73.9792557 + }, + "nodes": [ + 9902399063, + 9902399065, + 9902399064 + ], + "geometry": [ + { "lat": 40.7733705, "lon": -73.9793091 }, + { "lat": 40.7733904, "lon": -73.9792939 }, + { "lat": 40.7734406, "lon": -73.9792557 } + ], + "tags": { + "amenity": "loading_dock", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1080342473, + "bounds": { + "minlat": 40.7720240, + "minlon": -73.9797962, + "maxlat": 40.7721044, + "maxlon": -73.9797356 + }, + "nodes": [ + 7504573822, + 9902399068, + 9902399066 + ], + "geometry": [ + { "lat": 40.7721044, "lon": -73.9797356 }, + { "lat": 40.7720865, "lon": -73.9797490 }, + { "lat": 40.7720240, "lon": -73.9797962 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1080379606, + "bounds": { + "minlat": 40.7990577, + "minlon": -73.9263711, + "maxlat": 40.7996693, + "maxlon": -73.9249306 + }, + "nodes": [ + 277481436, + 13703746579, + 13703746577 + ], + "geometry": [ + { "lat": 40.7996693, "lon": -73.9263711 }, + { "lat": 40.7991130, "lon": -73.9250580 }, + { "lat": 40.7990577, "lon": -73.9249306 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "destination:lanes": "Randalls Island;Icahn Stadium;Bronx;Yankee Stadium|Queens;Airports;Citi Field|Queens;Airports;Citi Field", + "hgv": "local", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "toll": "yes", + "turn:lanes": "|right|right", + "unsigned_ref": "NY 900G", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 1080379610, + "bounds": { + "minlat": 40.7991924, + "minlon": -73.9264394, + "maxlat": 40.7998083, + "maxlon": -73.9248936 + }, + "nodes": [ + 6532277255, + 9153827713, + 9902723836, + 6532277257, + 9153827712, + 9902723835, + 277481423 + ], + "geometry": [ + { "lat": 40.7991924, "lon": -73.9248936 }, + { "lat": 40.7992952, "lon": -73.9251435 }, + { "lat": 40.7994020, "lon": -73.9254094 }, + { "lat": 40.7995033, "lon": -73.9256659 }, + { "lat": 40.7995997, "lon": -73.9259160 }, + { "lat": 40.7996947, "lon": -73.9261589 }, + { "lat": 40.7998083, "lon": -73.9264394 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "hgv": "local", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "tiger:cfcc": "A71", + "tiger:county": "New York, NY", + "tiger:name_base": "Triborough", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "toll": "no", + "unsigned_ref": "NY 900G", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 1080379611, + "bounds": { + "minlat": 40.7984987, + "minlon": -73.9238679, + "maxlat": 40.7987437, + "maxlon": -73.9233187 + }, + "nodes": [ + 6159356499, + 9153831826, + 9902723837 + ], + "geometry": [ + { "lat": 40.7984987, "lon": -73.9233187 }, + { "lat": 40.7986850, "lon": -73.9237419 }, + { "lat": 40.7987437, "lon": -73.9238679 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "hgv": "local", + "highway": "motorway", + "lanes": "4", + "layer": "2", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "tiger:cfcc": "A71", + "tiger:county": "New York, NY", + "tiger:name_base": "Triborough", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "toll": "no", + "unsigned_ref": "NY 900G", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 1080379613, + "bounds": { + "minlat": 40.7976476, + "minlon": -73.9199769, + "maxlat": 40.7992671, + "maxlon": -73.9188234 + }, + "nodes": [ + 277481443, + 9153831901, + 9153831727 + ], + "geometry": [ + { "lat": 40.7992671, "lon": -73.9188234 }, + { "lat": 40.7989897, "lon": -73.9189916 }, + { "lat": 40.7976476, "lon": -73.9199769 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "destination": "Queens;Long Island;New York Airports;Randalls Island", + "destination:ref": "I 278 West", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY;Queens, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Triborough;Brooklyn Queens", + "tiger:name_type_1": "Brg;Expy", + "toll": "yes", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 1080379614, + "bounds": { + "minlat": 40.7992671, + "minlon": -73.9188234, + "maxlat": 40.8000377, + "maxlon": -73.9182621 + }, + "nodes": [ + 9902723841, + 277481443 + ], + "geometry": [ + { "lat": 40.8000377, "lon": -73.9182621 }, + { "lat": 40.7992671, "lon": -73.9188234 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "destination:lanes": "Queens;New York Airports;Randalls Island|Queens;New York Airports;Randalls Island|Manhattan;FDR Drive|Manhattan;FDR Drive", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY;Queens, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Triborough;Brooklyn Queens", + "tiger:name_type_1": "Brg;Expy", + "toll": "yes", + "turn:lanes": "none|none|right|right", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 1080387538, + "bounds": { + "minlat": 40.7738987, + "minlon": -73.9840012, + "maxlat": 40.7740881, + "maxlon": -73.9838648 + }, + "nodes": [ + 9902764947, + 13341784858, + 2744944586 + ], + "geometry": [ + { "lat": 40.7740881, "lon": -73.9838648 }, + { "lat": 40.7740505, "lon": -73.9838921 }, + { "lat": 40.7738987, "lon": -73.9840012 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1080387539, + "bounds": { + "minlat": 40.7738196, + "minlon": -73.9840594, + "maxlat": 40.7738987, + "maxlon": -73.9840012 + }, + "nodes": [ + 2744944586, + 9902764948, + 2744944555 + ], + "geometry": [ + { "lat": 40.7738987, "lon": -73.9840012 }, + { "lat": 40.7738855, "lon": -73.9840109 }, + { "lat": 40.7738196, "lon": -73.9840594 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1080419242, + "bounds": { + "minlat": 40.8141450, + "minlon": -73.9427783, + "maxlat": 40.8149184, + "maxlon": -73.9409348 + }, + "nodes": [ + 3099327955, + 9559444361, + 9903051303 + ], + "geometry": [ + { "lat": 40.8141450, "lon": -73.9409348 }, + { "lat": 40.8141851, "lon": -73.9410243 }, + { "lat": 40.8149184, "lon": -73.9427783 } + ], + "tags": { + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 135th Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 1080419243, + "bounds": { + "minlat": 40.8149184, + "minlon": -73.9437801, + "maxlat": 40.8153400, + "maxlon": -73.9427783 + }, + "nodes": [ + 9903051303, + 8758345323, + 2141026532, + 42439887 + ], + "geometry": [ + { "lat": 40.8149184, "lon": -73.9427783 }, + { "lat": 40.8152300, "lon": -73.9435188 }, + { "lat": 40.8152726, "lon": -73.9436204 }, + { "lat": 40.8153400, "lon": -73.9437801 } + ], + "tags": { + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 135th Street", + "oneway": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1080421613, + "bounds": { + "minlat": 40.8116272, + "minlon": -73.9321716, + "maxlat": 40.8118784, + "maxlon": -73.9321413 + }, + "nodes": [ + 9903106225, + 2408979623, + 42725501, + 9903106226, + 2408979628, + 12748980348 + ], + "geometry": [ + { "lat": 40.8118784, "lon": -73.9321706 }, + { "lat": 40.8118251, "lon": -73.9321716 }, + { "lat": 40.8117606, "lon": -73.9321679 }, + { "lat": 40.8117133, "lon": -73.9321620 }, + { "lat": 40.8116606, "lon": -73.9321515 }, + { "lat": 40.8116272, "lon": -73.9321413 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Exterior Street", + "name_1": "I-87", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "New York State Office of Cyber Security (OCS) StreetSegmentPublic Dataset (http://gis.ny.gov/gisdata/inventories/details.cfm?DSID=932)", + "tiger:cfcc": "A15", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Major Deegan", + "tiger:name_base_1": "I-87", + "tiger:name_type": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1080421614, + "bounds": { + "minlat": 40.8133235, + "minlon": -73.9305450, + "maxlat": 40.8134113, + "maxlon": -73.9303513 + }, + "nodes": [ + 529280909, + 9903106229, + 42733678 + ], + "geometry": [ + { "lat": 40.8133235, "lon": -73.9303513 }, + { "lat": 40.8133655, "lon": -73.9304469 }, + { "lat": 40.8134113, "lon": -73.9305450 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 1080421616, + "bounds": { + "minlat": 40.8134113, + "minlon": -73.9310144, + "maxlat": 40.8136295, + "maxlon": -73.9305450 + }, + "nodes": [ + 42733678, + 42760015 + ], + "geometry": [ + { "lat": 40.8134113, "lon": -73.9305450 }, + { "lat": 40.8136295, "lon": -73.9310144 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 1080424222, + "bounds": { + "minlat": 40.8201165, + "minlon": -73.9362503, + "maxlat": 40.8204475, + "maxlon": -73.9354633 + }, + "nodes": [ + 9903127425, + 9166288602, + 9557088452, + 42432659 + ], + "geometry": [ + { "lat": 40.8201165, "lon": -73.9354633 }, + { "lat": 40.8203379, "lon": -73.9359876 }, + { "lat": 40.8203791, "lon": -73.9360811 }, + { "lat": 40.8204475, "lon": -73.9362503 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "145th Street Bridge", + "oneway": "no", + "sidewalk": "separate", + "turn:lanes:forward": "left||", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080424223, + "bounds": { + "minlat": 40.8193917, + "minlon": -73.9316774, + "maxlat": 40.8194470, + "maxlon": -73.9310840 + }, + "nodes": [ + 3982552826, + 7612920614, + 9166288605 + ], + "geometry": [ + { "lat": 40.8194470, "lon": -73.9316774 }, + { "lat": 40.8194338, "lon": -73.9315352 }, + { "lat": 40.8193917, "lon": -73.9310840 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "145th Street Bridge", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455" + } +}, +{ + "type": "way", + "id": 1080424224, + "bounds": { + "minlat": 40.8191488, + "minlon": -73.9296267, + "maxlat": 40.8192272, + "maxlon": -73.9293411 + }, + "nodes": [ + 9903127437, + 9903127434 + ], + "geometry": [ + { "lat": 40.8191488, "lon": -73.9293411 }, + { "lat": 40.8192272, "lon": -73.9296267 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455" + } +}, +{ + "type": "way", + "id": 1080424225, + "bounds": { + "minlat": 40.8165679, + "minlon": -73.9203181, + "maxlat": 40.8167696, + "maxlon": -73.9195490 + }, + "nodes": [ + 4207863935, + 9903127463, + 9903127466 + ], + "geometry": [ + { "lat": 40.8167696, "lon": -73.9203181 }, + { "lat": 40.8165882, "lon": -73.9196290 }, + { "lat": 40.8165679, "lon": -73.9195490 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "turn:lanes:forward": "left|through|" + } +}, +{ + "type": "way", + "id": 1080424227, + "bounds": { + "minlat": 40.8142783, + "minlon": -73.9135249, + "maxlat": 40.8144662, + "maxlon": -73.9129572 + }, + "nodes": [ + 2826899798, + 9903127478, + 5430145101, + 9903127477 + ], + "geometry": [ + { "lat": 40.8142783, "lon": -73.9129572 }, + { "lat": 40.8143142, "lon": -73.9130654 }, + { "lat": 40.8144223, "lon": -73.9133901 }, + { "lat": 40.8144662, "lon": -73.9135249 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through|" + } +}, +{ + "type": "way", + "id": 1080424228, + "bounds": { + "minlat": 40.8140349, + "minlon": -73.9129572, + "maxlat": 40.8142783, + "maxlon": -73.9122260 + }, + "nodes": [ + 9903127482, + 1241570322, + 5430145100, + 9903127479, + 2826899798 + ], + "geometry": [ + { "lat": 40.8140349, "lon": -73.9122260 }, + { "lat": 40.8140842, "lon": -73.9123730 }, + { "lat": 40.8141978, "lon": -73.9127109 }, + { "lat": 40.8142415, "lon": -73.9128446 }, + { "lat": 40.8142783, "lon": -73.9129572 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1080429669, + "bounds": { + "minlat": 40.8618912, + "minlon": -73.9134747, + "maxlat": 40.8621855, + "maxlon": -73.9130620 + }, + "nodes": [ + 42731051, + 12058469332, + 12074547760, + 12058469333 + ], + "geometry": [ + { "lat": 40.8621855, "lon": -73.9134747 }, + { "lat": 40.8619064, "lon": -73.9130877 }, + { "lat": 40.8618985, "lon": -73.9130748 }, + { "lat": 40.8618912, "lon": -73.9130620 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "layer": "1", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "turn:lanes": "through|through" + } +}, +{ + "type": "way", + "id": 1080429672, + "bounds": { + "minlat": 40.8622788, + "minlon": -73.9099012, + "maxlat": 40.8625205, + "maxlon": -73.9095004 + }, + "nodes": [ + 9903143765, + 9903143764, + 9903143763, + 42731026 + ], + "geometry": [ + { "lat": 40.8625205, "lon": -73.9095004 }, + { "lat": 40.8624882, "lon": -73.9095677 }, + { "lat": 40.8624527, "lon": -73.9096362 }, + { "lat": 40.8622788, "lon": -73.9099012 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "West Fordham Road", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "turn:lanes:backward": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 1080727325, + "bounds": { + "minlat": 40.7752920, + "minlon": -73.9352860, + "maxlat": 40.7753210, + "maxlon": -73.9351958 + }, + "nodes": [ + 42811423, + 5104280951 + ], + "geometry": [ + { "lat": 40.7753210, "lon": -73.9352860 }, + { "lat": 40.7752920, "lon": -73.9351958 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "27th Avenue" + } +}, +{ + "type": "way", + "id": 1080727326, + "bounds": { + "minlat": 40.7751708, + "minlon": -73.9351958, + "maxlat": 40.7752920, + "maxlon": -73.9348189 + }, + "nodes": [ + 5104280951, + 2891718064, + 5104280953 + ], + "geometry": [ + { "lat": 40.7752920, "lon": -73.9351958 }, + { "lat": 40.7752809, "lon": -73.9351614 }, + { "lat": 40.7751708, "lon": -73.9348189 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "27th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1080734859, + "bounds": { + "minlat": 40.7608253, + "minlon": -73.9636159, + "maxlat": 40.7611218, + "maxlon": -73.9628962 + }, + "nodes": [ + 4798293326, + 12899701016, + 1775201764 + ], + "geometry": [ + { "lat": 40.7611218, "lon": -73.9636159 }, + { "lat": 40.7608611, "lon": -73.9629830 }, + { "lat": 40.7608253, "lon": -73.9628962 } + ], + "tags": { + "busway": "opposite_lane", + "highway": "unclassified", + "lanes": "3", + "lanes:bus:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "name_1": "East 60 Street", + "oneway": "yes", + "oneway:bus": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1080796656, + "bounds": { + "minlat": 40.7943904, + "minlon": -73.9336715, + "maxlat": 40.7945736, + "maxlon": -73.9335538 + }, + "nodes": [ + 42435403, + 7924346893, + 9906259297 + ], + "geometry": [ + { "lat": 40.7943904, "lon": -73.9336715 }, + { "lat": 40.7944489, "lon": -73.9336453 }, + { "lat": 40.7945736, "lon": -73.9335538 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Pleasant Avenue", + "old_name:1811-1879": "Avenue A", + "old_name:1954-1957": "Paladino Avenue", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "right", + "wikidata": "Q16932984", + "wikipedia": "en:Pleasant Avenue" + } +}, +{ + "type": "way", + "id": 1080860661, + "bounds": { + "minlat": 40.7789315, + "minlon": -73.9430492, + "maxlat": 40.7792485, + "maxlon": -73.9429652 + }, + "nodes": [ + 5920714785, + 9906868454, + 9906868453, + 5920714788, + 9906868451, + 9906868450, + 9906868449, + 9906868448, + 5920714787, + 5920714786, + 9906868447, + 5534202684 + ], + "geometry": [ + { "lat": 40.7789315, "lon": -73.9430283 }, + { "lat": 40.7789472, "lon": -73.9430079 }, + { "lat": 40.7789626, "lon": -73.9429935 }, + { "lat": 40.7789830, "lon": -73.9429781 }, + { "lat": 40.7790063, "lon": -73.9429689 }, + { "lat": 40.7790265, "lon": -73.9429659 }, + { "lat": 40.7790473, "lon": -73.9429652 }, + { "lat": 40.7790687, "lon": -73.9429673 }, + { "lat": 40.7790912, "lon": -73.9429739 }, + { "lat": 40.7791416, "lon": -73.9429979 }, + { "lat": 40.7791914, "lon": -73.9430214 }, + { "lat": 40.7792485, "lon": -73.9430492 } + ], + "tags": { + "access": "private", + "bridge": "yes", + "highway": "service", + "lanes": "2", + "layer": "1", + "maxspeed": "5 mph", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1080860662, + "bounds": { + "minlat": 40.7789223, + "minlon": -73.9430565, + "maxlat": 40.7789315, + "maxlon": -73.9430283 + }, + "nodes": [ + 9906868452, + 5920714785 + ], + "geometry": [ + { "lat": 40.7789223, "lon": -73.9430565 }, + { "lat": 40.7789315, "lon": -73.9430283 } + ], + "tags": { + "access": "private", + "bridge": "yes", + "highway": "service", + "lanes": "2", + "layer": "1", + "maxspeed": "5 mph", + "name": "East 91st Street", + "name:ru": "Восточная 91-я стрит", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1080860663, + "bounds": { + "minlat": 40.7792485, + "minlon": -73.9430830, + "maxlat": 40.7793832, + "maxlon": -73.9428728 + }, + "nodes": [ + 5534202684, + 9906868467, + 9906868466 + ], + "geometry": [ + { "lat": 40.7792485, "lon": -73.9430492 }, + { "lat": 40.7793254, "lon": -73.9430830 }, + { "lat": 40.7793832, "lon": -73.9428728 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service", + "lanes": "2", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1080860664, + "bounds": { + "minlat": 40.7793051, + "minlon": -73.9428728, + "maxlat": 40.7793832, + "maxlon": -73.9428351 + }, + "nodes": [ + 9906868466, + 3900961218 + ], + "geometry": [ + { "lat": 40.7793832, "lon": -73.9428728 }, + { "lat": 40.7793051, "lon": -73.9428351 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1080862159, + "bounds": { + "minlat": 40.7767506, + "minlon": -73.9637197, + "maxlat": 40.7769914, + "maxlon": -73.9631415 + }, + "nodes": [ + 42440397, + 3278932313, + 5402554236, + 9906826293 + ], + "geometry": [ + { "lat": 40.7769914, "lon": -73.9637197 }, + { "lat": 40.7769548, "lon": -73.9636350 }, + { "lat": 40.7768836, "lon": -73.9634632 }, + { "lat": 40.7767506, "lon": -73.9631415 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862160, + "bounds": { + "minlat": 40.7765956, + "minlon": -73.9631415, + "maxlat": 40.7767506, + "maxlon": -73.9627682 + }, + "nodes": [ + 9906826293, + 9906826295 + ], + "geometry": [ + { "lat": 40.7767506, "lon": -73.9631415 }, + { "lat": 40.7765956, "lon": -73.9627682 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862161, + "bounds": { + "minlat": 40.7761257, + "minlon": -73.9621347, + "maxlat": 40.7763336, + "maxlon": -73.9616402 + }, + "nodes": [ + 42446021, + 9906826297, + 5402554237, + 5402554238, + 9906826299 + ], + "geometry": [ + { "lat": 40.7763336, "lon": -73.9621347 }, + { "lat": 40.7762775, "lon": -73.9619992 }, + { "lat": 40.7762486, "lon": -73.9619293 }, + { "lat": 40.7761560, "lon": -73.9617119 }, + { "lat": 40.7761257, "lon": -73.9616402 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "3", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "|through|", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862162, + "bounds": { + "minlat": 40.7756889, + "minlon": -73.9610597, + "maxlat": 40.7758822, + "maxlon": -73.9606062 + }, + "nodes": [ + 9906826300, + 9906826301, + 596776089 + ], + "geometry": [ + { "lat": 40.7758822, "lon": -73.9610597 }, + { "lat": 40.7757366, "lon": -73.9607181 }, + { "lat": 40.7756889, "lon": -73.9606062 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|right", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862163, + "bounds": { + "minlat": 40.7759423, + "minlon": -73.9616402, + "maxlat": 40.7761257, + "maxlon": -73.9612015 + }, + "nodes": [ + 9906826299, + 9906826298 + ], + "geometry": [ + { "lat": 40.7761257, "lon": -73.9616402 }, + { "lat": 40.7759423, "lon": -73.9612015 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "|through", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862164, + "bounds": { + "minlat": 40.7758822, + "minlon": -73.9612015, + "maxlat": 40.7759423, + "maxlon": -73.9610597 + }, + "nodes": [ + 9906826298, + 9906826300 + ], + "geometry": [ + { "lat": 40.7759423, "lon": -73.9612015 }, + { "lat": 40.7758822, "lon": -73.9610597 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862165, + "bounds": { + "minlat": 40.7756143, + "minlon": -73.9606062, + "maxlat": 40.7756889, + "maxlon": -73.9604288 + }, + "nodes": [ + 596776089, + 42459137 + ], + "geometry": [ + { "lat": 40.7756889, "lon": -73.9606062 }, + { "lat": 40.7756143, "lon": -73.9604288 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through", + "turn:lanes:forward": "left|through", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862166, + "bounds": { + "minlat": 40.7754083, + "minlon": -73.9604288, + "maxlat": 40.7756143, + "maxlon": -73.9599420 + }, + "nodes": [ + 42459137, + 9906826302, + 9906826303 + ], + "geometry": [ + { "lat": 40.7756143, "lon": -73.9604288 }, + { "lat": 40.7755640, "lon": -73.9603123 }, + { "lat": 40.7754083, "lon": -73.9599420 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "3", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through|right", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862167, + "bounds": { + "minlat": 40.7752087, + "minlon": -73.9599420, + "maxlat": 40.7754083, + "maxlon": -73.9594747 + }, + "nodes": [ + 9906826303, + 9906826304 + ], + "geometry": [ + { "lat": 40.7754083, "lon": -73.9599420 }, + { "lat": 40.7752087, "lon": -73.9594747 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862168, + "bounds": { + "minlat": 40.7746991, + "minlon": -73.9588958, + "maxlat": 40.7749669, + "maxlon": -73.9582606 + }, + "nodes": [ + 42447105, + 10125087304, + 5402545374, + 9906826305 + ], + "geometry": [ + { "lat": 40.7749669, "lon": -73.9588958 }, + { "lat": 40.7749209, "lon": -73.9587859 }, + { "lat": 40.7748689, "lon": -73.9586621 }, + { "lat": 40.7746991, "lon": -73.9582606 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862169, + "bounds": { + "minlat": 40.7749669, + "minlon": -73.9594747, + "maxlat": 40.7752087, + "maxlon": -73.9588958 + }, + "nodes": [ + 9906826304, + 5402545373, + 10125087305, + 42447105 + ], + "geometry": [ + { "lat": 40.7752087, "lon": -73.9594747 }, + { "lat": 40.7750965, "lon": -73.9592080 }, + { "lat": 40.7750126, "lon": -73.9590057 }, + { "lat": 40.7749669, "lon": -73.9588958 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862170, + "bounds": { + "minlat": 40.7745492, + "minlon": -73.9582606, + "maxlat": 40.7746991, + "maxlon": -73.9579059 + }, + "nodes": [ + 9906826305, + 9906826306 + ], + "geometry": [ + { "lat": 40.7746991, "lon": -73.9582606 }, + { "lat": 40.7745492, "lon": -73.9579059 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862171, + "bounds": { + "minlat": 40.7742888, + "minlon": -73.9579059, + "maxlat": 40.7745492, + "maxlon": -73.9572919 + }, + "nodes": [ + 9906826306, + 9906826307, + 42450015 + ], + "geometry": [ + { "lat": 40.7745492, "lon": -73.9579059 }, + { "lat": 40.7743510, "lon": -73.9574385 }, + { "lat": 40.7742888, "lon": -73.9572919 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862172, + "bounds": { + "minlat": 40.7740265, + "minlon": -73.9572919, + "maxlat": 40.7742888, + "maxlon": -73.9566720 + }, + "nodes": [ + 42450015, + 9906826309, + 9906826308 + ], + "geometry": [ + { "lat": 40.7742888, "lon": -73.9572919 }, + { "lat": 40.7742315, "lon": -73.9571562 }, + { "lat": 40.7740265, "lon": -73.9566720 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862173, + "bounds": { + "minlat": 40.7736588, + "minlon": -73.9566720, + "maxlat": 40.7740265, + "maxlon": -73.9558031 + }, + "nodes": [ + 9906826308, + 9906826310 + ], + "geometry": [ + { "lat": 40.7740265, "lon": -73.9566720 }, + { "lat": 40.7736588, "lon": -73.9558031 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862174, + "bounds": { + "minlat": 40.7733539, + "minlon": -73.9558031, + "maxlat": 40.7736588, + "maxlon": -73.9550691 + }, + "nodes": [ + 9906826310, + 8250715783, + 42443027 + ], + "geometry": [ + { "lat": 40.7736588, "lon": -73.9558031 }, + { "lat": 40.7733982, "lon": -73.9551804 }, + { "lat": 40.7733539, "lon": -73.9550691 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862175, + "bounds": { + "minlat": 40.7731065, + "minlon": -73.9550691, + "maxlat": 40.7733539, + "maxlon": -73.9544790 + }, + "nodes": [ + 42443027, + 8250715775, + 9906826311 + ], + "geometry": [ + { "lat": 40.7733539, "lon": -73.9550691 }, + { "lat": 40.7732947, "lon": -73.9549204 }, + { "lat": 40.7731065, "lon": -73.9544790 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862176, + "bounds": { + "minlat": 40.7723435, + "minlon": -73.9533096, + "maxlat": 40.7726108, + "maxlon": -73.9526796 + }, + "nodes": [ + 9906826312, + 6691104526, + 42456060 + ], + "geometry": [ + { "lat": 40.7726108, "lon": -73.9533096 }, + { "lat": 40.7724041, "lon": -73.9528255 }, + { "lat": 40.7723435, "lon": -73.9526796 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862177, + "bounds": { + "minlat": 40.7721212, + "minlon": -73.9526796, + "maxlat": 40.7723435, + "maxlon": -73.9521445 + }, + "nodes": [ + 42456060, + 6691104524, + 9906826313 + ], + "geometry": [ + { "lat": 40.7723435, "lon": -73.9526796 }, + { "lat": 40.7722887, "lon": -73.9525421 }, + { "lat": 40.7721212, "lon": -73.9521445 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|right", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862178, + "bounds": { + "minlat": 40.7719569, + "minlon": -73.9521445, + "maxlat": 40.7721212, + "maxlon": -73.9517545 + }, + "nodes": [ + 9906826313, + 9906826314 + ], + "geometry": [ + { "lat": 40.7721212, "lon": -73.9521445 }, + { "lat": 40.7719569, "lon": -73.9517545 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862179, + "bounds": { + "minlat": 40.7713990, + "minlon": -73.9510848, + "maxlat": 40.7716726, + "maxlon": -73.9504381 + }, + "nodes": [ + 9906826315, + 6689923786, + 42428020 + ], + "geometry": [ + { "lat": 40.7716726, "lon": -73.9510848 }, + { "lat": 40.7714518, "lon": -73.9505619 }, + { "lat": 40.7713990, "lon": -73.9504381 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|right", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862180, + "bounds": { + "minlat": 40.7711878, + "minlon": -73.9504381, + "maxlat": 40.7713990, + "maxlon": -73.9499325 + }, + "nodes": [ + 42428020, + 6689923788, + 9906887423, + 9906826316 + ], + "geometry": [ + { "lat": 40.7713990, "lon": -73.9504381 }, + { "lat": 40.7713454, "lon": -73.9503085 }, + { "lat": 40.7711936, "lon": -73.9499464 }, + { "lat": 40.7711878, "lon": -73.9499325 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "3", + "lanes:bus:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 79th Street", + "name:ru": "Восточная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||right", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862181, + "bounds": { + "minlat": 40.7705115, + "minlon": -73.9504469, + "maxlat": 40.7711936, + "maxlon": -73.9499464 + }, + "nodes": [ + 9906887420, + 9906887421, + 9906887424, + 9906887422, + 9906887423 + ], + "geometry": [ + { "lat": 40.7705115, "lon": -73.9504469 }, + { "lat": 40.7705637, "lon": -73.9504058 }, + { "lat": 40.7708256, "lon": -73.9502149 }, + { "lat": 40.7710968, "lon": -73.9500197 }, + { "lat": 40.7711936, "lon": -73.9499464 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Wayne Clark Drive", + "service": "alley", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1080862182, + "bounds": { + "minlat": 40.7700949, + "minlon": -73.9502149, + "maxlat": 40.7708256, + "maxlon": -73.9482168 + }, + "nodes": [ + 9906887424, + 9906887425, + 9906887426, + 9906887427 + ], + "geometry": [ + { "lat": 40.7708256, "lon": -73.9502149 }, + { "lat": 40.7700949, "lon": -73.9484794 }, + { "lat": 40.7703654, "lon": -73.9482876 }, + { "lat": 40.7704665, "lon": -73.9482168 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley", + "sidewalk": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1080862791, + "bounds": { + "minlat": 40.7771085, + "minlon": -73.9512609, + "maxlat": 40.7776805, + "maxlon": -73.9499036 + }, + "nodes": [ + 3119952619, + 3119952610, + 9906879190 + ], + "geometry": [ + { "lat": 40.7776805, "lon": -73.9512609 }, + { "lat": 40.7775792, "lon": -73.9510183 }, + { "lat": 40.7771085, "lon": -73.9499036 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862792, + "bounds": { + "minlat": 40.7768880, + "minlon": -73.9499036, + "maxlat": 40.7771085, + "maxlon": -73.9493698 + }, + "nodes": [ + 9906879190, + 7834025527, + 42429342 + ], + "geometry": [ + { "lat": 40.7771085, "lon": -73.9499036 }, + { "lat": 40.7769462, "lon": -73.9495095 }, + { "lat": 40.7768880, "lon": -73.9493698 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862793, + "bounds": { + "minlat": 40.7765538, + "minlon": -73.9493698, + "maxlat": 40.7768880, + "maxlon": -73.9485819 + }, + "nodes": [ + 42429342, + 7834030834, + 5401397593, + 5401397594, + 9906879191 + ], + "geometry": [ + { "lat": 40.7768880, "lon": -73.9493698 }, + { "lat": 40.7768303, "lon": -73.9492332 }, + { "lat": 40.7767909, "lon": -73.9491393 }, + { "lat": 40.7767317, "lon": -73.9489995 }, + { "lat": 40.7765538, "lon": -73.9485819 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862794, + "bounds": { + "minlat": 40.7790528, + "minlon": -73.9555832, + "maxlat": 40.7795073, + "maxlon": -73.9545072 + }, + "nodes": [ + 42429334, + 7924099694, + 5402547523, + 9906879192 + ], + "geometry": [ + { "lat": 40.7795073, "lon": -73.9555832 }, + { "lat": 40.7794670, "lon": -73.9554861 }, + { "lat": 40.7793957, "lon": -73.9553185 }, + { "lat": 40.7790528, "lon": -73.9545072 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862795, + "bounds": { + "minlat": 40.7788275, + "minlon": -73.9545072, + "maxlat": 40.7790528, + "maxlon": -73.9539771 + }, + "nodes": [ + 9906879192, + 7924094070, + 42429338 + ], + "geometry": [ + { "lat": 40.7790528, "lon": -73.9545072 }, + { "lat": 40.7788894, "lon": -73.9541214 }, + { "lat": 40.7788275, "lon": -73.9539771 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862796, + "bounds": { + "minlat": 40.7795073, + "minlon": -73.9571181, + "maxlat": 40.7801496, + "maxlon": -73.9555832 + }, + "nodes": [ + 42429334, + 7924094077, + 7924099812, + 42429330 + ], + "geometry": [ + { "lat": 40.7795073, "lon": -73.9555832 }, + { "lat": 40.7795488, "lon": -73.9556810 }, + { "lat": 40.7801016, "lon": -73.9570081 }, + { "lat": 40.7801496, "lon": -73.9571181 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862797, + "bounds": { + "minlat": 40.7801496, + "minlon": -73.9572984, + "maxlat": 40.7802244, + "maxlon": -73.9571181 + }, + "nodes": [ + 42429330, + 596776164 + ], + "geometry": [ + { "lat": 40.7801496, "lon": -73.9571181 }, + { "lat": 40.7802244, "lon": -73.9572984 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862798, + "bounds": { + "minlat": 40.7813130, + "minlon": -73.9604148, + "maxlat": 40.7815342, + "maxlon": -73.9598803 + }, + "nodes": [ + 9906879194, + 5402554233, + 3392519867, + 42429314 + ], + "geometry": [ + { "lat": 40.7813130, "lon": -73.9598803 }, + { "lat": 40.7814311, "lon": -73.9601665 }, + { "lat": 40.7814939, "lon": -73.9603155 }, + { "lat": 40.7815342, "lon": -73.9604148 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|none", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862799, + "bounds": { + "minlat": 40.7811984, + "minlon": -73.9598803, + "maxlat": 40.7813130, + "maxlon": -73.9596069 + }, + "nodes": [ + 9906879193, + 9906879194 + ], + "geometry": [ + { "lat": 40.7811984, "lon": -73.9596069 }, + { "lat": 40.7813130, "lon": -73.9598803 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 86th Street", + "name:ru": "Восточная 86-я стрит", + "name_1": "East 86 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "|merge_to_left", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080862800, + "bounds": { + "minlat": 40.7795447, + "minlon": -73.9602882, + "maxlat": 40.7797538, + "maxlon": -73.9597737 + }, + "nodes": [ + 9906879196, + 9906879195, + 2238282275, + 42435499 + ], + "geometry": [ + { "lat": 40.7797538, "lon": -73.9602882 }, + { "lat": 40.7796168, "lon": -73.9599470 }, + { "lat": 40.7795914, "lon": -73.9598872 }, + { "lat": 40.7795447, "lon": -73.9597737 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 84th Street", + "name:ru": "Восточная 84-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1080863335, + "bounds": { + "minlat": 40.7849459, + "minlon": -73.9688086, + "maxlat": 40.7851330, + "maxlon": -73.9682769 + }, + "nodes": [ + 2059304025, + 12099277786, + 8752153663, + 2059304028, + 2059304029 + ], + "geometry": [ + { "lat": 40.7849459, "lon": -73.9682769 }, + { "lat": 40.7850057, "lon": -73.9683559 }, + { "lat": 40.7850617, "lon": -73.9685639 }, + { "lat": 40.7850921, "lon": -73.9686803 }, + { "lat": 40.7851330, "lon": -73.9688086 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "change": "yes", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "maxheight": "10'5\"", + "maxspeed": "25 mph", + "name": "86th Street Transverse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080863336, + "bounds": { + "minlat": 40.7834091, + "minlon": -73.9648286, + "maxlat": 40.7836213, + "maxlon": -73.9644858 + }, + "nodes": [ + 1382339080, + 10171022065, + 9906895083, + 12099277770, + 12099277772, + 375858655 + ], + "geometry": [ + { "lat": 40.7835281, "lon": -73.9644858 }, + { "lat": 40.7834871, "lon": -73.9645122 }, + { "lat": 40.7834091, "lon": -73.9645625 }, + { "lat": 40.7835073, "lon": -73.9648286 }, + { "lat": 40.7835798, "lon": -73.9647820 }, + { "lat": 40.7836213, "lon": -73.9647553 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1080863337, + "bounds": { + "minlat": 40.7808949, + "minlon": -73.9622529, + "maxlat": 40.7810920, + "maxlon": -73.9620893 + }, + "nodes": [ + 12099277794, + 9906895090, + 9906895091, + 1382339050 + ], + "geometry": [ + { "lat": 40.7810920, "lon": -73.9622529 }, + { "lat": 40.7810451, "lon": -73.9622183 }, + { "lat": 40.7809671, "lon": -73.9621530 }, + { "lat": 40.7808949, "lon": -73.9620893 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "lit": "yes", + "maxheight": "10'5\"", + "maxspeed": "25 mph", + "maxspeed:advisory": "20 mph", + "name": "86th Street Transverse", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080863338, + "bounds": { + "minlat": 40.7812573, + "minlon": -73.9624476, + "maxlat": 40.7813574, + "maxlon": -73.9621039 + }, + "nodes": [ + 705234784, + 9170796885, + 2059303960, + 2059303961, + 42433927 + ], + "geometry": [ + { "lat": 40.7812573, "lon": -73.9621039 }, + { "lat": 40.7812947, "lon": -73.9622116 }, + { "lat": 40.7813316, "lon": -73.9623097 }, + { "lat": 40.7813574, "lon": -73.9623763 }, + { "lat": 40.7813573, "lon": -73.9624476 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "bicycle": "yes", + "foot": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxheight": "10'5\"", + "maxspeed": "25 mph", + "motor_vehicle": "yes", + "name": "86th Street Transverse", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080863339, + "bounds": { + "minlat": 40.7811492, + "minlon": -73.9621039, + "maxlat": 40.7812573, + "maxlon": -73.9617315 + }, + "nodes": [ + 2059303954, + 9170796886, + 705234784 + ], + "geometry": [ + { "lat": 40.7811492, "lon": -73.9617315 }, + { "lat": 40.7812191, "lon": -73.9619775 }, + { "lat": 40.7812573, "lon": -73.9621039 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "bicycle": "yes", + "foot": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxheight": "10'5\"", + "maxspeed": "25 mph", + "motor_vehicle": "yes", + "name": "86th Street Transverse", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "merge_to_right|", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080864177, + "bounds": { + "minlat": 40.7822663, + "minlon": -73.9726629, + "maxlat": 40.7824381, + "maxlon": -73.9722580 + }, + "nodes": [ + 4205805389, + 9906904518 + ], + "geometry": [ + { "lat": 40.7824381, "lon": -73.9726629 }, + { "lat": 40.7822663, "lon": -73.9722580 } + ], + "tags": { + "alt_name": "West 81 Street", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West 81st Street", + "name:ru": "Западная 81-я стрит", + "surface": "asphalt", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 1080864178, + "bounds": { + "minlat": 40.7824381, + "minlon": -73.9730915, + "maxlat": 40.7826188, + "maxlon": -73.9726629 + }, + "nodes": [ + 3248774451, + 4205805389 + ], + "geometry": [ + { "lat": 40.7826188, "lon": -73.9730915 }, + { "lat": 40.7824381, "lon": -73.9726629 } + ], + "tags": { + "alt_name": "West 81 Street", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "West 81st Street", + "name:ru": "Западная 81-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1080864179, + "bounds": { + "minlat": 40.7819606, + "minlon": -73.9761686, + "maxlat": 40.7822414, + "maxlon": -73.9754991 + }, + "nodes": [ + 42443347, + 9897810840, + 5316108106 + ], + "geometry": [ + { "lat": 40.7819606, "lon": -73.9754991 }, + { "lat": 40.7820115, "lon": -73.9756177 }, + { "lat": 40.7822414, "lon": -73.9761686 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 79th Street", + "name:ru": "Западная 79-я стрит", + "name_1": "West 79 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "right|right", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080864180, + "bounds": { + "minlat": 40.7847833, + "minlon": -73.9826519, + "maxlat": 40.7849764, + "maxlon": -73.9821955 + }, + "nodes": [ + 9906904523, + 4906056158, + 42422592 + ], + "geometry": [ + { "lat": 40.7847833, "lon": -73.9821955 }, + { "lat": 40.7849307, "lon": -73.9825457 }, + { "lat": 40.7849764, "lon": -73.9826519 } + ], + "tags": { + "alt_name": "West 79 Street", + "bicycle": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 79th Street", + "name:ru": "Западная 79-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|through;right", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080864181, + "bounds": { + "minlat": 40.7850603, + "minlon": -73.9833865, + "maxlat": 40.7852901, + "maxlon": -73.9828455 + }, + "nodes": [ + 4205820213, + 9906904524, + 7912855687 + ], + "geometry": [ + { "lat": 40.7852901, "lon": -73.9833865 }, + { "lat": 40.7851596, "lon": -73.9830841 }, + { "lat": 40.7850603, "lon": -73.9828455 } + ], + "tags": { + "bicycle": "no", + "fixme": "bicycle=no and oneway=yes are temporary during construction; restore oneway=no and cycleway tags after survey once construction is complete", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 79th Street", + "name:ru": "Западная 79-я стрит", + "name_1": "West 79 Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080864182, + "bounds": { + "minlat": 40.7855409, + "minlon": -73.9847561, + "maxlat": 40.7858438, + "maxlon": -73.9840936 + }, + "nodes": [ + 62912067, + 6996574452, + 1329122503, + 6996574523, + 6996564355, + 42425945, + 6996574468, + 6996574454, + 6996574412, + 6996564329, + 6996564369, + 6996574484, + 6996574429, + 6996574511, + 6996574456, + 10160789954, + 10160789953, + 10160789951, + 42425188 + ], + "geometry": [ + { "lat": 40.7858438, "lon": -73.9847316 }, + { "lat": 40.7858048, "lon": -73.9847492 }, + { "lat": 40.7857680, "lon": -73.9847561 }, + { "lat": 40.7857338, "lon": -73.9847533 }, + { "lat": 40.7856944, "lon": -73.9847449 }, + { "lat": 40.7856572, "lon": -73.9847291 }, + { "lat": 40.7856217, "lon": -73.9847005 }, + { "lat": 40.7855963, "lon": -73.9846706 }, + { "lat": 40.7855714, "lon": -73.9846224 }, + { "lat": 40.7855554, "lon": -73.9845765 }, + { "lat": 40.7855461, "lon": -73.9845381 }, + { "lat": 40.7855409, "lon": -73.9844833 }, + { "lat": 40.7855457, "lon": -73.9844289 }, + { "lat": 40.7855589, "lon": -73.9843733 }, + { "lat": 40.7855786, "lon": -73.9843158 }, + { "lat": 40.7855941, "lon": -73.9842659 }, + { "lat": 40.7856012, "lon": -73.9842217 }, + { "lat": 40.7856059, "lon": -73.9841769 }, + { "lat": 40.7856022, "lon": -73.9840936 } + ], + "tags": { + "bicycle": "no", + "cycleway:right": "lane", + "fixme": "temporary bicycle=no and foot=no during construction", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "junction": "roundabout", + "lanes": "1", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1080864183, + "bounds": { + "minlat": 40.7855212, + "minlon": -73.9704795, + "maxlat": 40.7857827, + "maxlon": -73.9698584 + }, + "nodes": [ + 4205805392, + 9906904528 + ], + "geometry": [ + { "lat": 40.7855212, "lon": -73.9698584 }, + { "lat": 40.7857827, "lon": -73.9704795 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "West 86th Street", + "name:ru": "Западная 86-я стрит", + "name_1": "West 86 Street", + "sidewalk:both": "separate", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080866700, + "bounds": { + "minlat": 40.7865093, + "minlon": -73.9526692, + "maxlat": 40.7866031, + "maxlon": -73.9524444 + }, + "nodes": [ + 596776260, + 42457660 + ], + "geometry": [ + { "lat": 40.7866031, "lon": -73.9526692 }, + { "lat": 40.7865093, "lon": -73.9524444 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080866701, + "bounds": { + "minlat": 40.7872310, + "minlon": -73.9549351, + "maxlat": 40.7875598, + "maxlon": -73.9541623 + }, + "nodes": [ + 9906892370, + 6270714178, + 42446086 + ], + "geometry": [ + { "lat": 40.7875598, "lon": -73.9549351 }, + { "lat": 40.7872785, "lon": -73.9542734 }, + { "lat": 40.7872310, "lon": -73.9541623 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080866702, + "bounds": { + "minlat": 40.7877362, + "minlon": -73.9557669, + "maxlat": 40.7879006, + "maxlon": -73.9553573 + }, + "nodes": [ + 42443268, + 7058749372, + 7066686013 + ], + "geometry": [ + { "lat": 40.7879006, "lon": -73.9557669 }, + { "lat": 40.7878668, "lon": -73.9556738 }, + { "lat": 40.7877362, "lon": -73.9553573 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080866703, + "bounds": { + "minlat": 40.7879020, + "minlon": -73.9541807, + "maxlat": 40.7881213, + "maxlon": -73.9536721 + }, + "nodes": [ + 42446093, + 6270714182, + 9906892371 + ], + "geometry": [ + { "lat": 40.7879020, "lon": -73.9536721 }, + { "lat": 40.7879506, "lon": -73.9537846 }, + { "lat": 40.7881213, "lon": -73.9541807 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 97th Street", + "name:ru": "Восточная 97-я стрит", + "name_1": "East 97 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1080868579, + "bounds": { + "minlat": 40.7728709, + "minlon": -73.9688801, + "maxlat": 40.7732460, + "maxlon": -73.9683604 + }, + "nodes": [ + 9178915128, + 12767438119, + 9178915129, + 2059303827, + 2059303830, + 9178915131, + 2059303832, + 2059303833, + 9178915132, + 373268376, + 9896622294, + 2059303838, + 9906887497, + 247221417 + ], + "geometry": [ + { "lat": 40.7728709, "lon": -73.9683604 }, + { "lat": 40.7728788, "lon": -73.9684062 }, + { "lat": 40.7728800, "lon": -73.9684129 }, + { "lat": 40.7728916, "lon": -73.9684572 }, + { "lat": 40.7729068, "lon": -73.9685029 }, + { "lat": 40.7729243, "lon": -73.9685443 }, + { "lat": 40.7729424, "lon": -73.9685788 }, + { "lat": 40.7729654, "lon": -73.9686152 }, + { "lat": 40.7729903, "lon": -73.9686501 }, + { "lat": 40.7730151, "lon": -73.9686763 }, + { "lat": 40.7730380, "lon": -73.9686982 }, + { "lat": 40.7731022, "lon": -73.9687452 }, + { "lat": 40.7731558, "lon": -73.9687890 }, + { "lat": 40.7732460, "lon": -73.9688801 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "no", + "highway": "service", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "width": "5" + } +}, +{ + "type": "way", + "id": 1080868581, + "bounds": { + "minlat": 40.7728156, + "minlon": -73.9683604, + "maxlat": 40.7728709, + "maxlon": -73.9680407 + }, + "nodes": [ + 6091080882, + 5416769298, + 9178915128 + ], + "geometry": [ + { "lat": 40.7728156, "lon": -73.9680407 }, + { "lat": 40.7728658, "lon": -73.9683047 }, + { "lat": 40.7728709, "lon": -73.9683604 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "cycleway": "shared_lane", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "surface": "asphalt", + "width": "5" + } +}, +{ + "type": "way", + "id": 1080868582, + "bounds": { + "minlat": 40.7746316, + "minlon": -73.9748273, + "maxlat": 40.7747049, + "maxlon": -73.9742793 + }, + "nodes": [ + 1490116234, + 9906887514, + 12106478057, + 2059303863, + 3156429739, + 9906887516, + 9178915159, + 4332562568, + 42442175 + ], + "geometry": [ + { "lat": 40.7746316, "lon": -73.9742793 }, + { "lat": 40.7746519, "lon": -73.9743522 }, + { "lat": 40.7746599, "lon": -73.9743828 }, + { "lat": 40.7746678, "lon": -73.9744134 }, + { "lat": 40.7746800, "lon": -73.9744573 }, + { "lat": 40.7746837, "lon": -73.9745155 }, + { "lat": 40.7746887, "lon": -73.9745734 }, + { "lat": 40.7746954, "lon": -73.9746501 }, + { "lat": 40.7747049, "lon": -73.9748273 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "Olmstead and Vaux Way", + "cycleway": "track", + "cycleway:oneway": "no", + "footway": "track", + "hgv": "no", + "highway": "service", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes:forward": "slight_left;slight_right", + "width": "15" + } +}, +{ + "type": "way", + "id": 1080868584, + "bounds": { + "minlat": 40.7745261, + "minlon": -73.9754351, + "maxlat": 40.7747937, + "maxlon": -73.9754013 + }, + "nodes": [ + 2059303895, + 595703339, + 2059303866, + 9906929020, + 2059303862, + 9906929021, + 595703341 + ], + "geometry": [ + { "lat": 40.7747937, "lon": -73.9754304 }, + { "lat": 40.7747419, "lon": -73.9754126 }, + { "lat": 40.7747125, "lon": -73.9754069 }, + { "lat": 40.7746875, "lon": -73.9754028 }, + { "lat": 40.7746631, "lon": -73.9754013 }, + { "lat": 40.7746420, "lon": -73.9754029 }, + { "lat": 40.7745261, "lon": -73.9754351 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1080868586, + "bounds": { + "minlat": 40.7742471, + "minlon": -73.9742793, + "maxlat": 40.7746316, + "maxlon": -73.9736490 + }, + "nodes": [ + 42442164, + 9178915154, + 9178915155, + 9178915156, + 9178915157, + 1490116233, + 9178915158, + 1492282469, + 1490116234 + ], + "geometry": [ + { "lat": 40.7742471, "lon": -73.9736490 }, + { "lat": 40.7743171, "lon": -73.9737241 }, + { "lat": 40.7743624, "lon": -73.9737780 }, + { "lat": 40.7744156, "lon": -73.9738457 }, + { "lat": 40.7744762, "lon": -73.9739326 }, + { "lat": 40.7745226, "lon": -73.9740164 }, + { "lat": 40.7745685, "lon": -73.9741116 }, + { "lat": 40.7746028, "lon": -73.9741926 }, + { "lat": 40.7746316, "lon": -73.9742793 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "Olmstead and Vaux Way", + "cycleway": "track", + "cycleway:oneway": "no", + "footway": "track", + "hgv": "no", + "highway": "service", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "width": "15" + } +}, +{ + "type": "way", + "id": 1080868587, + "bounds": { + "minlat": 40.7741221, + "minlon": -73.9736490, + "maxlat": 40.7742471, + "maxlon": -73.9735273 + }, + "nodes": [ + 9178915152, + 42442164 + ], + "geometry": [ + { "lat": 40.7741221, "lon": -73.9735273 }, + { "lat": 40.7742471, "lon": -73.9736490 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "Olmstead and Vaux Way", + "cycleway": "track", + "cycleway:oneway": "no", + "footway": "track", + "hgv": "no", + "highway": "service", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes:forward": "through", + "width": "15" + } +}, +{ + "type": "way", + "id": 1080868588, + "bounds": { + "minlat": 40.7734213, + "minlon": -73.9705949, + "maxlat": 40.7735720, + "maxlon": -73.9693120 + }, + "nodes": [ + 4257949348, + 9178915138, + 9906887501, + 2216963675, + 9908390671, + 248709340, + 9178915139, + 9906887502, + 9178915140, + 9178915141, + 1490116214, + 9178915142, + 2216963667, + 9906887503, + 9178915143, + 248709337, + 9178915144, + 9906887504, + 1490116215, + 9906887505, + 2425178183 + ], + "geometry": [ + { "lat": 40.7734667, "lon": -73.9693120 }, + { "lat": 40.7734732, "lon": -73.9693563 }, + { "lat": 40.7734778, "lon": -73.9694051 }, + { "lat": 40.7734804, "lon": -73.9694608 }, + { "lat": 40.7734793, "lon": -73.9694882 }, + { "lat": 40.7734783, "lon": -73.9695148 }, + { "lat": 40.7734732, "lon": -73.9695769 }, + { "lat": 40.7734632, "lon": -73.9696407 }, + { "lat": 40.7734377, "lon": -73.9697755 }, + { "lat": 40.7734300, "lon": -73.9698314 }, + { "lat": 40.7734249, "lon": -73.9698834 }, + { "lat": 40.7734213, "lon": -73.9699412 }, + { "lat": 40.7734214, "lon": -73.9699966 }, + { "lat": 40.7734237, "lon": -73.9700501 }, + { "lat": 40.7734309, "lon": -73.9700998 }, + { "lat": 40.7734416, "lon": -73.9701539 }, + { "lat": 40.7734572, "lon": -73.9702192 }, + { "lat": 40.7734726, "lon": -73.9702769 }, + { "lat": 40.7734893, "lon": -73.9703320 }, + { "lat": 40.7735486, "lon": -73.9705147 }, + { "lat": 40.7735720, "lon": -73.9705949 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "Olmstead and Vaux Way", + "cycleway": "track", + "cycleway:oneway": "no", + "footway": "track", + "hgv": "no", + "highway": "service", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "width": "15" + } +}, +{ + "type": "way", + "id": 1080868589, + "bounds": { + "minlat": 40.7735720, + "minlon": -73.9708689, + "maxlat": 40.7736439, + "maxlon": -73.9705949 + }, + "nodes": [ + 2425178183, + 1490115565, + 2425163054, + 561950491 + ], + "geometry": [ + { "lat": 40.7735720, "lon": -73.9705949 }, + { "lat": 40.7735966, "lon": -73.9706758 }, + { "lat": 40.7736233, "lon": -73.9707807 }, + { "lat": 40.7736439, "lon": -73.9708689 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "Olmstead and Vaux Way", + "cycleway": "track", + "cycleway:oneway": "no", + "footway": "track", + "hgv": "no", + "highway": "service", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes:forward": "through", + "width": "15" + } +}, +{ + "type": "way", + "id": 1080868590, + "bounds": { + "minlat": 40.7732460, + "minlon": -73.9691095, + "maxlat": 40.7734012, + "maxlon": -73.9688801 + }, + "nodes": [ + 247221417, + 4332700903, + 4332700774, + 1490116213 + ], + "geometry": [ + { "lat": 40.7732460, "lon": -73.9688801 }, + { "lat": 40.7733525, "lon": -73.9690098 }, + { "lat": 40.7733796, "lon": -73.9690625 }, + { "lat": 40.7734012, "lon": -73.9691095 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "Olmstead and Vaux Way", + "cycleway": "track", + "cycleway:oneway": "no", + "footway": "track", + "hgv": "no", + "highway": "service", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "width": "15" + } +}, +{ + "type": "way", + "id": 1080868591, + "bounds": { + "minlat": 40.7734012, + "minlon": -73.9693120, + "maxlat": 40.7734667, + "maxlon": -73.9691095 + }, + "nodes": [ + 1490116213, + 2216963671, + 248709341, + 9906887500, + 4257949348 + ], + "geometry": [ + { "lat": 40.7734012, "lon": -73.9691095 }, + { "lat": 40.7734265, "lon": -73.9691748 }, + { "lat": 40.7734430, "lon": -73.9692220 }, + { "lat": 40.7734574, "lon": -73.9692682 }, + { "lat": 40.7734667, "lon": -73.9693120 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "Olmstead and Vaux Way", + "cycleway": "track", + "cycleway:oneway": "no", + "footway": "track", + "hgv": "no", + "highway": "service", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Terrace Drive", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes:forward": "through", + "width": "15" + } +}, +{ + "type": "way", + "id": 1080868592, + "bounds": { + "minlat": 40.7739918, + "minlon": -73.9759380, + "maxlat": 40.7745261, + "maxlon": -73.9754351 + }, + "nodes": [ + 595703341, + 9178915175, + 9178915176, + 9178915177, + 9906929026, + 247224177, + 9906929031, + 9906929027 + ], + "geometry": [ + { "lat": 40.7745261, "lon": -73.9754351 }, + { "lat": 40.7744825, "lon": -73.9755007 }, + { "lat": 40.7744413, "lon": -73.9755554 }, + { "lat": 40.7743912, "lon": -73.9756123 }, + { "lat": 40.7743444, "lon": -73.9756574 }, + { "lat": 40.7742931, "lon": -73.9757032 }, + { "lat": 40.7742462, "lon": -73.9757408 }, + { "lat": 40.7739918, "lon": -73.9759380 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 1080868593, + "bounds": { + "minlat": 40.7738371, + "minlon": -73.9760520, + "maxlat": 40.7739918, + "maxlon": -73.9759380 + }, + "nodes": [ + 9906929027, + 3377460323 + ], + "geometry": [ + { "lat": 40.7739918, "lon": -73.9759380 }, + { "lat": 40.7738371, "lon": -73.9760520 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through|through", + "width": "10" + } +}, +{ + "type": "way", + "id": 1080868595, + "bounds": { + "minlat": 40.7727230, + "minlon": -73.9766253, + "maxlat": 40.7730736, + "maxlon": -73.9764777 + }, + "nodes": [ + 4332562577, + 3391966026, + 3377460331 + ], + "geometry": [ + { "lat": 40.7730736, "lon": -73.9764777 }, + { "lat": 40.7728705, "lon": -73.9765690 }, + { "lat": 40.7727230, "lon": -73.9766253 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through|through;right", + "width": "10" + } +}, +{ + "type": "way", + "id": 1080868596, + "bounds": { + "minlat": 40.7676861, + "minlon": -73.9788872, + "maxlat": 40.7678551, + "maxlon": -73.9785915 + }, + "nodes": [ + 42424609, + 9906929055, + 42423677 + ], + "geometry": [ + { "lat": 40.7678551, "lon": -73.9788872 }, + { "lat": 40.7677495, "lon": -73.9787075 }, + { "lat": 40.7676861, "lon": -73.9785915 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 1080868597, + "bounds": { + "minlat": 40.7695269, + "minlon": -73.9726031, + "maxlat": 40.7695384, + "maxlon": -73.9722423 + }, + "nodes": [ + 9906929108, + 2216963614, + 9906929109, + 9906929110, + 9906929111, + 42433881 + ], + "geometry": [ + { "lat": 40.7695356, "lon": -73.9726031 }, + { "lat": 40.7695308, "lon": -73.9725484 }, + { "lat": 40.7695273, "lon": -73.9724988 }, + { "lat": 40.7695269, "lon": -73.9724100 }, + { "lat": 40.7695301, "lon": -73.9723280 }, + { "lat": 40.7695384, "lon": -73.9722423 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Center Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1080868598, + "bounds": { + "minlat": 40.7737056, + "minlon": -73.9691638, + "maxlat": 40.7744673, + "maxlon": -73.9688914 + }, + "nodes": [ + 1490116221, + 9178915137, + 9178914798, + 2216963707, + 9178914799, + 2216963712, + 9178914800, + 2216963717, + 9908358281, + 561950518, + 9178914801, + 247221419, + 8873848834 + ], + "geometry": [ + { "lat": 40.7737056, "lon": -73.9691398 }, + { "lat": 40.7737465, "lon": -73.9691508 }, + { "lat": 40.7738022, "lon": -73.9691600 }, + { "lat": 40.7738784, "lon": -73.9691638 }, + { "lat": 40.7739476, "lon": -73.9691627 }, + { "lat": 40.7740236, "lon": -73.9691566 }, + { "lat": 40.7740914, "lon": -73.9691464 }, + { "lat": 40.7741422, "lon": -73.9691331 }, + { "lat": 40.7741883, "lon": -73.9691150 }, + { "lat": 40.7742303, "lon": -73.9690947 }, + { "lat": 40.7742783, "lon": -73.9690607 }, + { "lat": 40.7743215, "lon": -73.9690263 }, + { "lat": 40.7744673, "lon": -73.9688914 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "6" + } +}, +{ + "type": "way", + "id": 1080868599, + "bounds": { + "minlat": 40.7702695, + "minlon": -73.9711648, + "maxlat": 40.7713179, + "maxlon": -73.9700833 + }, + "nodes": [ + 4332700906, + 12175730078, + 247221413, + 9906929121, + 3377461230, + 9906929122, + 247221414, + 9906929123, + 9906929124, + 42433889, + 9906929125, + 4332700892, + 9906929126 + ], + "geometry": [ + { "lat": 40.7702695, "lon": -73.9711648 }, + { "lat": 40.7703832, "lon": -73.9710953 }, + { "lat": 40.7707311, "lon": -73.9709099 }, + { "lat": 40.7707903, "lon": -73.9708693 }, + { "lat": 40.7708458, "lon": -73.9708229 }, + { "lat": 40.7708983, "lon": -73.9707722 }, + { "lat": 40.7709495, "lon": -73.9707165 }, + { "lat": 40.7710010, "lon": -73.9706543 }, + { "lat": 40.7710518, "lon": -73.9705858 }, + { "lat": 40.7711001, "lon": -73.9705160 }, + { "lat": 40.7711429, "lon": -73.9704433 }, + { "lat": 40.7711816, "lon": -73.9703670 }, + { "lat": 40.7713179, "lon": -73.9700833 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 1080868600, + "bounds": { + "minlat": 40.7713179, + "minlon": -73.9700833, + "maxlat": 40.7714209, + "maxlon": -73.9698691 + }, + "nodes": [ + 9906929126, + 561950429 + ], + "geometry": [ + { "lat": 40.7713179, "lon": -73.9700833 }, + { "lat": 40.7714209, "lon": -73.9698691 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through", + "width": "10" + } +}, +{ + "type": "way", + "id": 1080868602, + "bounds": { + "minlat": 40.7722860, + "minlon": -73.9690082, + "maxlat": 40.7724535, + "maxlon": -73.9689208 + }, + "nodes": [ + 561950457, + 373268478 + ], + "geometry": [ + { "lat": 40.7722860, "lon": -73.9690082 }, + { "lat": 40.7724535, "lon": -73.9689208 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 1080868603, + "bounds": { + "minlat": 40.7724535, + "minlon": -73.9689208, + "maxlat": 40.7732460, + "maxlon": -73.9687959 + }, + "nodes": [ + 373268478, + 9906929137, + 9906929134, + 2059303818, + 2059303819, + 2059303820, + 2059303823, + 9906929135, + 42433896, + 2059303831, + 9906929136, + 2059303834, + 2059303837, + 9178915133, + 247221417 + ], + "geometry": [ + { "lat": 40.7724535, "lon": -73.9689208 }, + { "lat": 40.7725013, "lon": -73.9689017 }, + { "lat": 40.7725492, "lon": -73.9688837 }, + { "lat": 40.7726140, "lon": -73.9688596 }, + { "lat": 40.7726792, "lon": -73.9688388 }, + { "lat": 40.7727433, "lon": -73.9688227 }, + { "lat": 40.7728065, "lon": -73.9688102 }, + { "lat": 40.7728591, "lon": -73.9688031 }, + { "lat": 40.7729028, "lon": -73.9687984 }, + { "lat": 40.7729517, "lon": -73.9687959 }, + { "lat": 40.7729965, "lon": -73.9687976 }, + { "lat": 40.7730334, "lon": -73.9688021 }, + { "lat": 40.7731022, "lon": -73.9688161 }, + { "lat": 40.7731665, "lon": -73.9688406 }, + { "lat": 40.7732460, "lon": -73.9688801 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through;left", + "width": "10" + } +}, +{ + "type": "way", + "id": 1080871809, + "bounds": { + "minlat": 40.7656887, + "minlon": -73.9535379, + "maxlat": 40.7658836, + "maxlon": -73.9530789 + }, + "nodes": [ + 9906953431, + 4205892229 + ], + "geometry": [ + { "lat": 40.7656887, "lon": -73.9530789 }, + { "lat": 40.7658836, "lon": -73.9535379 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 71st Street", + "name:ru": "Восточная 71-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through;right" + } +}, +{ + "type": "way", + "id": 1080871810, + "bounds": { + "minlat": 40.7639925, + "minlon": -73.9552174, + "maxlat": 40.7641355, + "maxlon": -73.9548639 + }, + "nodes": [ + 9906953433, + 1733612459 + ], + "geometry": [ + { "lat": 40.7641355, "lon": -73.9552174 }, + { "lat": 40.7639925, "lon": -73.9548639 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "East 68th Street", + "name:ru": "Восточная 68-я стрит", + "oneway": "no", + "parking:both": "no", + "sidewalk:left": "separate", + "sidewalk:right": "yes", + "surface": "asphalt", + "turn:lanes:backward": "left|right" + } +}, +{ + "type": "way", + "id": 1080871811, + "bounds": { + "minlat": 40.7652254, + "minlon": -73.9540564, + "maxlat": 40.7652700, + "maxlon": -73.9539504 + }, + "nodes": [ + 9906953435, + 6695964688 + ], + "geometry": [ + { "lat": 40.7652700, "lon": -73.9540564 }, + { "lat": 40.7652254, "lon": -73.9539504 } + ], + "tags": { + "bicycle": "dismount", + "highway": "unclassified", + "lanes": "2", + "name": "East 70th Street", + "name:ru": "Восточная 70-я стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1080871812, + "bounds": { + "minlat": 40.7652700, + "minlon": -73.9540564, + "maxlat": 40.7653440, + "maxlon": -73.9540016 + }, + "nodes": [ + 9906953435, + 10165922632, + 9906953436 + ], + "geometry": [ + { "lat": 40.7652700, "lon": -73.9540564 }, + { "lat": 40.7653320, "lon": -73.9540105 }, + { "lat": 40.7653440, "lon": -73.9540016 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1080871813, + "bounds": { + "minlat": 40.7653096, + "minlon": -73.9541508, + "maxlat": 40.7654093, + "maxlon": -73.9540776 + }, + "nodes": [ + 9906953437, + 10165922633, + 9906953438 + ], + "geometry": [ + { "lat": 40.7654093, "lon": -73.9540776 }, + { "lat": 40.7653719, "lon": -73.9541048 }, + { "lat": 40.7653096, "lon": -73.9541508 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1080873866, + "bounds": { + "minlat": 40.7130646, + "minlon": -73.9776047, + "maxlat": 40.7132542, + "maxlon": -73.9775923 + }, + "nodes": [ + 42423295, + 9906966855 + ], + "geometry": [ + { "lat": 40.7132542, "lon": -73.9775923 }, + { "lat": 40.7130646, "lon": -73.9776047 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1080873868, + "bounds": { + "minlat": 40.7106401, + "minlon": -73.9852574, + "maxlat": 40.7107237, + "maxlon": -73.9847040 + }, + "nodes": [ + 42438531, + 6411125198, + 9907939583, + 11037604131, + 588455697 + ], + "geometry": [ + { "lat": 40.7107237, "lon": -73.9847040 }, + { "lat": 40.7107091, "lon": -73.9848390 }, + { "lat": 40.7106796, "lon": -73.9850742 }, + { "lat": 40.7106631, "lon": -73.9851646 }, + { "lat": 40.7106401, "lon": -73.9852574 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "maxspeed": "25 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080923487, + "bounds": { + "minlat": 40.7720194, + "minlon": -73.9825723, + "maxlat": 40.7724213, + "maxlon": -73.9823377 + }, + "nodes": [ + 9907374428, + 9907374438, + 9907374440, + 9907374441, + 9907374439, + 9907374429, + 9907386584, + 8780665870, + 9907374430, + 9907374431, + 9907374432, + 9907374425, + 13208006993, + 13208007101, + 13208006992, + 9907374442, + 9907374433, + 9907374434, + 9907374435, + 9902453600, + 9907374436, + 9907374437, + 9907374428 + ], + "geometry": [ + { "lat": 40.7724168, "lon": -73.9823688 }, + { "lat": 40.7724204, "lon": -73.9823541 }, + { "lat": 40.7724213, "lon": -73.9823461 }, + { "lat": 40.7724177, "lon": -73.9823456 }, + { "lat": 40.7724167, "lon": -73.9823455 }, + { "lat": 40.7724121, "lon": -73.9823442 }, + { "lat": 40.7724063, "lon": -73.9823441 }, + { "lat": 40.7722180, "lon": -73.9823388 }, + { "lat": 40.7721726, "lon": -73.9823377 }, + { "lat": 40.7721517, "lon": -73.9823695 }, + { "lat": 40.7720194, "lon": -73.9823641 }, + { "lat": 40.7720251, "lon": -73.9823950 }, + { "lat": 40.7720353, "lon": -73.9824481 }, + { "lat": 40.7720404, "lon": -73.9824757 }, + { "lat": 40.7720453, "lon": -73.9825024 }, + { "lat": 40.7720592, "lon": -73.9825461 }, + { "lat": 40.7720675, "lon": -73.9825723 }, + { "lat": 40.7722069, "lon": -73.9824725 }, + { "lat": 40.7722539, "lon": -73.9824899 }, + { "lat": 40.7722712, "lon": -73.9824769 }, + { "lat": 40.7723085, "lon": -73.9824490 }, + { "lat": 40.7723995, "lon": -73.9823824 }, + { "lat": 40.7724168, "lon": -73.9823688 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1080924640, + "bounds": { + "minlat": 40.7725323, + "minlon": -73.9822331, + "maxlat": 40.7726903, + "maxlon": -73.9821565 + }, + "nodes": [ + 6547993887, + 9907386570, + 9907386571, + 9907386572, + 9907386573, + 9907386574, + 9907386575, + 9907386576, + 9907386583, + 9907386578, + 9907386581, + 9907386582, + 6547993887 + ], + "geometry": [ + { "lat": 40.7726717, "lon": -73.9821577 }, + { "lat": 40.7726839, "lon": -73.9821582 }, + { "lat": 40.7726889, "lon": -73.9821635 }, + { "lat": 40.7726903, "lon": -73.9821710 }, + { "lat": 40.7726878, "lon": -73.9821758 }, + { "lat": 40.7726566, "lon": -73.9821987 }, + { "lat": 40.7726271, "lon": -73.9822195 }, + { "lat": 40.7726063, "lon": -73.9822331 }, + { "lat": 40.7725761, "lon": -73.9822328 }, + { "lat": 40.7725323, "lon": -73.9822309 }, + { "lat": 40.7726032, "lon": -73.9821795 }, + { "lat": 40.7725964, "lon": -73.9821565 }, + { "lat": 40.7726717, "lon": -73.9821577 } + ], + "tags": { + "area": "yes", + "colour": "red", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1080926149, + "bounds": { + "minlat": 40.7721142, + "minlon": -73.9822247, + "maxlat": 40.7722842, + "maxlon": -73.9821427 + }, + "nodes": [ + 9907362186, + 9907362187, + 9902703840, + 9907362190, + 9907362188, + 9907362189, + 9907362185, + 9902703839, + 9907362186 + ], + "geometry": [ + { "lat": 40.7722842, "lon": -73.9822247 }, + { "lat": 40.7722782, "lon": -73.9821478 }, + { "lat": 40.7722236, "lon": -73.9821461 }, + { "lat": 40.7721257, "lon": -73.9821431 }, + { "lat": 40.7721142, "lon": -73.9821427 }, + { "lat": 40.7721417, "lon": -73.9822234 }, + { "lat": 40.7721624, "lon": -73.9822236 }, + { "lat": 40.7722296, "lon": -73.9822247 }, + { "lat": 40.7722842, "lon": -73.9822247 } + ], + "tags": { + "area": "yes", + "colour": "red", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1080928850, + "bounds": { + "minlat": 40.7689757, + "minlon": -73.9821354, + "maxlat": 40.7690394, + "maxlon": -73.9820641 + }, + "nodes": [ + 9907441335, + 10187594370, + 9907441336, + 10187594372, + 10187594376, + 10187594375, + 10187594374, + 9907441337, + 9907441338, + 10187594399, + 9907441339, + 9907441340, + 10187594400, + 9907441342, + 10187594371, + 9907441335 + ], + "geometry": [ + { "lat": 40.7689809, "lon": -73.9820703 }, + { "lat": 40.7689770, "lon": -73.9820825 }, + { "lat": 40.7689757, "lon": -73.9820966 }, + { "lat": 40.7689768, "lon": -73.9821101 }, + { "lat": 40.7689795, "lon": -73.9821202 }, + { "lat": 40.7689847, "lon": -73.9821283 }, + { "lat": 40.7689920, "lon": -73.9821328 }, + { "lat": 40.7689994, "lon": -73.9821338 }, + { "lat": 40.7690213, "lon": -73.9821345 }, + { "lat": 40.7690276, "lon": -73.9821348 }, + { "lat": 40.7690394, "lon": -73.9821354 }, + { "lat": 40.7690138, "lon": -73.9820649 }, + { "lat": 40.7690028, "lon": -73.9820644 }, + { "lat": 40.7689963, "lon": -73.9820641 }, + { "lat": 40.7689873, "lon": -73.9820653 }, + { "lat": 40.7689809, "lon": -73.9820703 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1080964112, + "bounds": { + "minlat": 40.7014642, + "minlon": -74.0122624, + "maxlat": 40.7016101, + "maxlon": -74.0119669 + }, + "nodes": [ + 370880739, + 4147198090, + 2895164301, + 370880741, + 370880743, + 2895163399 + ], + "geometry": [ + { "lat": 40.7016101, "lon": -74.0119669 }, + { "lat": 40.7015535, "lon": -74.0121679 }, + { "lat": 40.7015412, "lon": -74.0122021 }, + { "lat": 40.7015205, "lon": -74.0122273 }, + { "lat": 40.7014950, "lon": -74.0122515 }, + { "lat": 40.7014642, "lon": -74.0122624 } + ], + "tags": { + "destination": "FDR Drive;Governors Island Ferry", + "foot": "no", + "hgv": "no", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "surface": "asphalt", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 1080964113, + "bounds": { + "minlat": 40.7019107, + "minlon": -74.0098765, + "maxlat": 40.7020119, + "maxlon": -74.0095892 + }, + "nodes": [ + 4145735059, + 9181607976, + 5178357336, + 205020852 + ], + "geometry": [ + { "lat": 40.7019107, "lon": -74.0098765 }, + { "lat": 40.7019460, "lon": -74.0097675 }, + { "lat": 40.7019942, "lon": -74.0096298 }, + { "lat": 40.7020119, "lon": -74.0095892 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "Franklin Delano Roosevelt Drive North|Franklin Delano Roosevelt Drive North|Brooklyn Bridge;Manhattan Civic Center;South Street", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "25 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "South Street Viaduct", + "note": "this is supposed to be a local truck route but signs say no trucks", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "turn:lanes": "through|through|through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1080978582, + "bounds": { + "minlat": 40.7082903, + "minlon": -74.0002125, + "maxlat": 40.7092334, + "maxlon": -73.9994418 + }, + "nodes": [ + 588455738, + 9907939568, + 9907939569, + 9907939567, + 9907939570, + 278609759, + 4158693313, + 4158693306, + 8279851794, + 278609760 + ], + "geometry": [ + { "lat": 40.7092334, "lon": -74.0002125 }, + { "lat": 40.7091590, "lon": -74.0001395 }, + { "lat": 40.7090821, "lon": -74.0000712 }, + { "lat": 40.7089982, "lon": -74.0000096 }, + { "lat": 40.7086386, "lon": -73.9997681 }, + { "lat": 40.7085354, "lon": -73.9996913 }, + { "lat": 40.7084637, "lon": -73.9996288 }, + { "lat": 40.7083870, "lon": -73.9995459 }, + { "lat": 40.7083630, "lon": -73.9995181 }, + { "lat": 40.7082903, "lon": -73.9994418 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Robert F. Wagner Sr. Place", + "name:etymology:wikidata": "Q213721", + "name:ko": "로버트 F. 와그너 시니어 플레이스", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "New York, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1080978583, + "bounds": { + "minlat": 40.7049084, + "minlon": -74.0052645, + "maxlat": 40.7052329, + "maxlon": -74.0047485 + }, + "nodes": [ + 9181607984, + 3350483345, + 8094558972, + 42444242 + ], + "geometry": [ + { "lat": 40.7049084, "lon": -74.0052645 }, + { "lat": 40.7051500, "lon": -74.0048876 }, + { "lat": 40.7051868, "lon": -74.0048276 }, + { "lat": 40.7052329, "lon": -74.0047485 } + ], + "tags": { + "cycleway:right": "separate", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "parking:both:restriction": "no_standing", + "sidewalk:left": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "turn:lanes:forward": "left|through", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080978584, + "bounds": { + "minlat": 40.7072908, + "minlon": -74.0013145, + "maxlat": 40.7079260, + "maxlon": -74.0001461 + }, + "nodes": [ + 12299314860, + 12299314861, + 12299314863, + 12303931402, + 11032985217, + 42433243, + 42433218 + ], + "geometry": [ + { "lat": 40.7079260, "lon": -74.0001461 }, + { "lat": 40.7078943, "lon": -74.0002024 }, + { "lat": 40.7076269, "lon": -74.0007177 }, + { "lat": 40.7075113, "lon": -74.0009498 }, + { "lat": 40.7074825, "lon": -74.0010010 }, + { "lat": 40.7074606, "lon": -74.0010414 }, + { "lat": 40.7072908, "lon": -74.0013145 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080978585, + "bounds": { + "minlat": 40.7078803, + "minlon": -74.0001149, + "maxlat": 40.7081350, + "maxlon": -73.9997130 + }, + "nodes": [ + 42438476, + 11032985358, + 9907939572, + 12299314857 + ], + "geometry": [ + { "lat": 40.7078803, "lon": -74.0001149 }, + { "lat": 40.7080087, "lon": -73.9998767 }, + { "lat": 40.7080714, "lon": -73.9997634 }, + { "lat": 40.7081350, "lon": -73.9997130 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080978586, + "bounds": { + "minlat": 40.7085457, + "minlon": -73.9990003, + "maxlat": 40.7092114, + "maxlon": -73.9962351 + }, + "nodes": [ + 42444108, + 9907939574, + 4158693300, + 4158693292, + 9907939575, + 4158693324, + 4158693329, + 4158693330, + 1538237325, + 9907939576, + 11543863233, + 9907939577, + 8276469282, + 42437135 + ], + "geometry": [ + { "lat": 40.7085457, "lon": -73.9990003 }, + { "lat": 40.7086446, "lon": -73.9988162 }, + { "lat": 40.7086979, "lon": -73.9986985 }, + { "lat": 40.7087599, "lon": -73.9985536 }, + { "lat": 40.7088186, "lon": -73.9984006 }, + { "lat": 40.7088654, "lon": -73.9982576 }, + { "lat": 40.7089085, "lon": -73.9981103 }, + { "lat": 40.7089408, "lon": -73.9979890 }, + { "lat": 40.7089774, "lon": -73.9978326 }, + { "lat": 40.7090027, "lon": -73.9977043 }, + { "lat": 40.7090209, "lon": -73.9975863 }, + { "lat": 40.7090268, "lon": -73.9975483 }, + { "lat": 40.7091961, "lon": -73.9963432 }, + { "lat": 40.7092114, "lon": -73.9962351 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "no", + "parking:left:restriction": "no_standing", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080978587, + "bounds": { + "minlat": 40.7133365, + "minlon": -73.9782576, + "maxlat": 40.7134578, + "maxlon": -73.9778682 + }, + "nodes": [ + 11040080970, + 9907942850, + 11040029985 + ], + "geometry": [ + { "lat": 40.7134578, "lon": -73.9782576 }, + { "lat": 40.7133920, "lon": -73.9780496 }, + { "lat": 40.7133365, "lon": -73.9778682 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "right", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080978590, + "bounds": { + "minlat": 40.7189791, + "minlon": -73.9750822, + "maxlat": 40.7194963, + "maxlon": -73.9750225 + }, + "nodes": [ + 9907942880, + 9438441032, + 3783088880, + 42454391 + ], + "geometry": [ + { "lat": 40.7194963, "lon": -73.9750225 }, + { "lat": 40.7190612, "lon": -73.9750712 }, + { "lat": 40.7190291, "lon": -73.9750747 }, + { "lat": 40.7189791, "lon": -73.9750822 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1080982427, + "bounds": { + "minlat": 40.7284433, + "minlon": -73.9761669, + "maxlat": 40.7286492, + "maxlon": -73.9756824 + }, + "nodes": [ + 1989931124, + 4161568811, + 42440754 + ], + "geometry": [ + { "lat": 40.7286492, "lon": -73.9761669 }, + { "lat": 40.7284918, "lon": -73.9757965 }, + { "lat": 40.7284433, "lon": -73.9756824 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|right", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080982428, + "bounds": { + "minlat": 40.7296139, + "minlon": -73.9785245, + "maxlat": 40.7298092, + "maxlon": -73.9784368 + }, + "nodes": [ + 9907956888, + 9907956890, + 9907956891, + 9907956889 + ], + "geometry": [ + { "lat": 40.7296139, "lon": -73.9784368 }, + { "lat": 40.7297369, "lon": -73.9784916 }, + { "lat": 40.7297730, "lon": -73.9785081 }, + { "lat": 40.7298092, "lon": -73.9785245 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1080982429, + "bounds": { + "minlat": 40.7302737, + "minlon": -73.9799937, + "maxlat": 40.7303089, + "maxlon": -73.9797101 + }, + "nodes": [ + 9907956894, + 9907956895, + 9907956896, + 9907956893 + ], + "geometry": [ + { "lat": 40.7303089, "lon": -73.9797101 }, + { "lat": 40.7302945, "lon": -73.9798260 }, + { "lat": 40.7302906, "lon": -73.9798575 }, + { "lat": 40.7302737, "lon": -73.9799937 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1080982430, + "bounds": { + "minlat": 40.7313525, + "minlon": -73.9831254, + "maxlat": 40.7315864, + "maxlon": -73.9825607 + }, + "nodes": [ + 9907956902, + 4161568341, + 42440743 + ], + "geometry": [ + { "lat": 40.7315864, "lon": -73.9831254 }, + { "lat": 40.7314072, "lon": -73.9826960 }, + { "lat": 40.7313525, "lon": -73.9825607 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080982431, + "bounds": { + "minlat": 40.7323530, + "minlon": -73.9856077, + "maxlat": 40.7326298, + "maxlon": -73.9849374 + }, + "nodes": [ + 9907956910, + 11040050923, + 9907956911, + 8309479684, + 13205862060 + ], + "geometry": [ + { "lat": 40.7326298, "lon": -73.9856077 }, + { "lat": 40.7325198, "lon": -73.9853486 }, + { "lat": 40.7324806, "lon": -73.9852563 }, + { "lat": 40.7324009, "lon": -73.9850686 }, + { "lat": 40.7323530, "lon": -73.9849374 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|right", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080982432, + "bounds": { + "minlat": 40.7326298, + "minlon": -73.9863189, + "maxlat": 40.7329347, + "maxlon": -73.9856077 + }, + "nodes": [ + 9907956912, + 9907956910 + ], + "geometry": [ + { "lat": 40.7329347, "lon": -73.9863189 }, + { "lat": 40.7326298, "lon": -73.9856077 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080982433, + "bounds": { + "minlat": 40.7352039, + "minlon": -73.9923108, + "maxlat": 40.7354508, + "maxlon": -73.9917243 + }, + "nodes": [ + 9907956916, + 5243716993, + 11040080992, + 5148103566, + 42438784 + ], + "geometry": [ + { "lat": 40.7354508, "lon": -73.9923108 }, + { "lat": 40.7353383, "lon": -73.9920435 }, + { "lat": 40.7352743, "lon": -73.9918914 }, + { "lat": 40.7352324, "lon": -73.9917922 }, + { "lat": 40.7352039, "lon": -73.9917243 } + ], + "tags": { + "bus": "yes", + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080982434, + "bounds": { + "minlat": 40.7360074, + "minlon": -73.9941739, + "maxlat": 40.7362368, + "maxlon": -73.9936325 + }, + "nodes": [ + 42440710, + 8310246306, + 11040029965, + 9907978318 + ], + "geometry": [ + { "lat": 40.7360074, "lon": -73.9936325 }, + { "lat": 40.7360551, "lon": -73.9937450 }, + { "lat": 40.7362156, "lon": -73.9941237 }, + { "lat": 40.7362368, "lon": -73.9941739 } + ], + "tags": { + "bus": "yes", + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "|right", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080982435, + "bounds": { + "minlat": 40.7370478, + "minlon": -73.9968400, + "maxlat": 40.7373610, + "maxlon": -73.9960876 + }, + "nodes": [ + 5416901182, + 11040080994, + 8310246315, + 42430253 + ], + "geometry": [ + { "lat": 40.7370478, "lon": -73.9960876 }, + { "lat": 40.7371936, "lon": -73.9964358 }, + { "lat": 40.7373078, "lon": -73.9967083 }, + { "lat": 40.7373610, "lon": -73.9968400 } + ], + "tags": { + "bus": "yes", + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "|right", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080982436, + "bounds": { + "minlat": 40.7373610, + "minlon": -73.9975522, + "maxlat": 40.7376569, + "maxlon": -73.9968400 + }, + "nodes": [ + 9907978323, + 5244228886, + 8310246318, + 42430253 + ], + "geometry": [ + { "lat": 40.7376569, "lon": -73.9975522 }, + { "lat": 40.7375547, "lon": -73.9973088 }, + { "lat": 40.7374183, "lon": -73.9969792 }, + { "lat": 40.7373610, "lon": -73.9968400 } + ], + "tags": { + "bus": "yes", + "hgv": "local", + "highway": "residential", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080982437, + "bounds": { + "minlat": 40.7383560, + "minlon": -73.9996800, + "maxlat": 40.7385578, + "maxlon": -73.9991785 + }, + "nodes": [ + 42439823, + 8310246339, + 11040080995, + 5244228885 + ], + "geometry": [ + { "lat": 40.7385578, "lon": -73.9996800 }, + { "lat": 40.7385134, "lon": -73.9995557 }, + { "lat": 40.7383943, "lon": -73.9992704 }, + { "lat": 40.7383560, "lon": -73.9991785 } + ], + "tags": { + "bus": "yes", + "cycleway": "no", + "hgv": "local", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080982438, + "bounds": { + "minlat": 40.7385578, + "minlon": -74.0001941, + "maxlat": 40.7387663, + "maxlon": -73.9996800 + }, + "nodes": [ + 42439823, + 8310246342, + 11040029964, + 9907978327 + ], + "geometry": [ + { "lat": 40.7385578, "lon": -73.9996800 }, + { "lat": 40.7386063, "lon": -73.9998072 }, + { "lat": 40.7387072, "lon": -74.0000511 }, + { "lat": 40.7387663, "lon": -74.0001941 } + ], + "tags": { + "bus": "yes", + "cycleway": "no", + "hgv": "local", + "highway": "residential", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "|right", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080982439, + "bounds": { + "minlat": 40.7395519, + "minlon": -74.0024948, + "maxlat": 40.7397428, + "maxlon": -74.0020341 + }, + "nodes": [ + 9907978333, + 11040080996, + 8310246332, + 42435596 + ], + "geometry": [ + { "lat": 40.7395519, "lon": -74.0020341 }, + { "lat": 40.7395963, "lon": -74.0021394 }, + { "lat": 40.7396956, "lon": -74.0023750 }, + { "lat": 40.7397428, "lon": -74.0024948 } + ], + "tags": { + "bus": "yes", + "hgv": "local", + "highway": "residential", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "|right", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1080982440, + "bounds": { + "minlat": 40.7342854, + "minlon": -73.9898898, + "maxlat": 40.7344282, + "maxlon": -73.9895403 + }, + "nodes": [ + 42440721, + 3670742460, + 11040029967, + 9907978334 + ], + "geometry": [ + { "lat": 40.7344282, "lon": -73.9898898 }, + { "lat": 40.7343821, "lon": -73.9897701 }, + { "lat": 40.7343188, "lon": -73.9896196 }, + { "lat": 40.7342854, "lon": -73.9895403 } + ], + "tags": { + "bus": "yes", + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (06:00-22:00)", + "name": "East 14th Street", + "name:ru": "Восточная 14-я стрит", + "note": "`highway=service` is \"for access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc.\" Despite being referred to as a a \"busway,\" `highway=residential` is a much more appropriate tag for this road. The access tags a", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "|right", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1081019373, + "bounds": { + "minlat": 40.7747449, + "minlon": -73.9686348, + "maxlat": 40.7779561, + "maxlon": -73.9665925 + }, + "nodes": [ + 480492539, + 9178914802, + 9178914803, + 42433908, + 9178914804, + 480492646, + 9178914805, + 9178914806, + 247221420, + 9178914807, + 3341828646, + 4254509560, + 9178914811, + 247221422, + 9178914812, + 2216963796, + 9178914813, + 1901016106, + 9178914814, + 2216963813, + 7094731959, + 9178914815, + 4254514506, + 7094731966, + 9178914816, + 9908358282, + 2216963837, + 247221424, + 9178942017, + 2216963847, + 247221425, + 9178942018, + 9908358283, + 4304632511, + 9178942019, + 9178942020, + 9178942021, + 9178942022, + 4254508563, + 7094731925, + 42433915, + 9178942024, + 4254502087, + 247221428 + ], + "geometry": [ + { "lat": 40.7747449, "lon": -73.9686348 }, + { "lat": 40.7748150, "lon": -73.9685622 }, + { "lat": 40.7748581, "lon": -73.9685108 }, + { "lat": 40.7749022, "lon": -73.9684496 }, + { "lat": 40.7749501, "lon": -73.9683780 }, + { "lat": 40.7750080, "lon": -73.9682812 }, + { "lat": 40.7750490, "lon": -73.9682112 }, + { "lat": 40.7751015, "lon": -73.9681122 }, + { "lat": 40.7751433, "lon": -73.9680195 }, + { "lat": 40.7752702, "lon": -73.9677168 }, + { "lat": 40.7752997, "lon": -73.9676573 }, + { "lat": 40.7753471, "lon": -73.9675684 }, + { "lat": 40.7753828, "lon": -73.9675060 }, + { "lat": 40.7754138, "lon": -73.9674646 }, + { "lat": 40.7754493, "lon": -73.9674189 }, + { "lat": 40.7754812, "lon": -73.9673862 }, + { "lat": 40.7755216, "lon": -73.9673505 }, + { "lat": 40.7755616, "lon": -73.9673223 }, + { "lat": 40.7756097, "lon": -73.9672960 }, + { "lat": 40.7756622, "lon": -73.9672786 }, + { "lat": 40.7757126, "lon": -73.9672651 }, + { "lat": 40.7757607, "lon": -73.9672570 }, + { "lat": 40.7758053, "lon": -73.9672534 }, + { "lat": 40.7758431, "lon": -73.9672560 }, + { "lat": 40.7758949, "lon": -73.9672607 }, + { "lat": 40.7759614, "lon": -73.9672743 }, + { "lat": 40.7760883, "lon": -73.9673056 }, + { "lat": 40.7761367, "lon": -73.9673163 }, + { "lat": 40.7761738, "lon": -73.9673203 }, + { "lat": 40.7762137, "lon": -73.9673210 }, + { "lat": 40.7762588, "lon": -73.9673157 }, + { "lat": 40.7763105, "lon": -73.9673019 }, + { "lat": 40.7763587, "lon": -73.9672817 }, + { "lat": 40.7767063, "lon": -73.9671170 }, + { "lat": 40.7767807, "lon": -73.9670835 }, + { "lat": 40.7768575, "lon": -73.9670548 }, + { "lat": 40.7769404, "lon": -73.9670242 }, + { "lat": 40.7772740, "lon": -73.9669227 }, + { "lat": 40.7773558, "lon": -73.9668927 }, + { "lat": 40.7775771, "lon": -73.9668067 }, + { "lat": 40.7776467, "lon": -73.9667753 }, + { "lat": 40.7777351, "lon": -73.9667294 }, + { "lat": 40.7778199, "lon": -73.9666780 }, + { "lat": 40.7779561, "lon": -73.9665925 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "6" + } +}, +{ + "type": "way", + "id": 1081019374, + "bounds": { + "minlat": 40.7779561, + "minlon": -73.9665925, + "maxlat": 40.7780983, + "maxlon": -73.9664994 + }, + "nodes": [ + 247221428, + 480492947 + ], + "geometry": [ + { "lat": 40.7779561, "lon": -73.9665925 }, + { "lat": 40.7780983, "lon": -73.9664994 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through", + "width": "6" + } +}, +{ + "type": "way", + "id": 1081019375, + "bounds": { + "minlat": 40.7971919, + "minlon": -73.9546388, + "maxlat": 40.7977354, + "maxlon": -73.9543428 + }, + "nodes": [ + 2058919883, + 2058919897, + 9178942109, + 2058919909, + 9178942110, + 12815556379, + 2058919917, + 247225027 + ], + "geometry": [ + { "lat": 40.7971919, "lon": -73.9546388 }, + { "lat": 40.7973145, "lon": -73.9545619 }, + { "lat": 40.7974025, "lon": -73.9545033 }, + { "lat": 40.7974936, "lon": -73.9544527 }, + { "lat": 40.7975791, "lon": -73.9544086 }, + { "lat": 40.7976539, "lon": -73.9543743 }, + { "lat": 40.7976942, "lon": -73.9543551 }, + { "lat": 40.7977354, "lon": -73.9543428 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1081019376, + "bounds": { + "minlat": 40.7982266, + "minlon": -73.9541717, + "maxlat": 40.7983189, + "maxlon": -73.9538133 + }, + "nodes": [ + 2058920018, + 12815989213, + 9178942111, + 2058920021, + 9908383424, + 595703224 + ], + "geometry": [ + { "lat": 40.7982266, "lon": -73.9538133 }, + { "lat": 40.7982376, "lon": -73.9538890 }, + { "lat": 40.7982574, "lon": -73.9539713 }, + { "lat": 40.7982796, "lon": -73.9540562 }, + { "lat": 40.7982966, "lon": -73.9541117 }, + { "lat": 40.7983189, "lon": -73.9541717 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "hgv": "no", + "highway": "service", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Lenox Avenue Approach", + "oneway": "yes", + "oneway:bicycle": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081021540, + "bounds": { + "minlat": 40.7982220, + "minlon": -73.9538133, + "maxlat": 40.7982287, + "maxlon": -73.9536660 + }, + "nodes": [ + 9908390655, + 2562438662, + 2058920020, + 2058920018 + ], + "geometry": [ + { "lat": 40.7982220, "lon": -73.9536660 }, + { "lat": 40.7982269, "lon": -73.9537152 }, + { "lat": 40.7982287, "lon": -73.9537606 }, + { "lat": 40.7982266, "lon": -73.9538133 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "hgv": "no", + "highway": "service", + "lanes": "4", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "surface": "asphalt", + "turn:lanes:forward": "through|through" + } +}, +{ + "type": "way", + "id": 1081021541, + "bounds": { + "minlat": 40.7952396, + "minlon": -73.9556431, + "maxlat": 40.7960075, + "maxlon": -73.9533073 + }, + "nodes": [ + 2058919631, + 9178942091, + 432755911, + 2058919645, + 9178942092, + 9178942093, + 9908358303, + 2058919646, + 432755909, + 9178942094, + 2058919660, + 9178942095, + 247225010, + 9908358304, + 432755910, + 9178942096, + 247225011, + 3377460307, + 9178942097, + 432755908, + 247225012, + 9908358305, + 9178942098, + 2058919695, + 2058919694, + 42434050, + 9908358306, + 9178942099, + 2058919678, + 9178942100, + 247225013, + 9908358307, + 12815556374, + 12814803444, + 247225014, + 9178942101, + 2058919651, + 9908358308, + 9178942102, + 2058919648, + 2058919650, + 9178942103, + 2058919652, + 9908358309, + 2058919655, + 4302966022, + 4302966051, + 4302966091, + 9908358310, + 247225015 + ], + "geometry": [ + { "lat": 40.7952396, "lon": -73.9534661 }, + { "lat": 40.7952692, "lon": -73.9534338 }, + { "lat": 40.7953043, "lon": -73.9534045 }, + { "lat": 40.7953423, "lon": -73.9533759 }, + { "lat": 40.7953841, "lon": -73.9533503 }, + { "lat": 40.7954302, "lon": -73.9533294 }, + { "lat": 40.7954727, "lon": -73.9533176 }, + { "lat": 40.7955145, "lon": -73.9533105 }, + { "lat": 40.7955571, "lon": -73.9533073 }, + { "lat": 40.7956003, "lon": -73.9533089 }, + { "lat": 40.7956530, "lon": -73.9533189 }, + { "lat": 40.7956967, "lon": -73.9533388 }, + { "lat": 40.7957389, "lon": -73.9533642 }, + { "lat": 40.7957898, "lon": -73.9534021 }, + { "lat": 40.7958335, "lon": -73.9534446 }, + { "lat": 40.7958736, "lon": -73.9534904 }, + { "lat": 40.7959101, "lon": -73.9535425 }, + { "lat": 40.7959425, "lon": -73.9536042 }, + { "lat": 40.7959709, "lon": -73.9536774 }, + { "lat": 40.7959884, "lon": -73.9537406 }, + { "lat": 40.7960013, "lon": -73.9538153 }, + { "lat": 40.7960075, "lon": -73.9539043 }, + { "lat": 40.7960066, "lon": -73.9539782 }, + { "lat": 40.7959987, "lon": -73.9540590 }, + { "lat": 40.7959854, "lon": -73.9541409 }, + { "lat": 40.7959683, "lon": -73.9542226 }, + { "lat": 40.7959430, "lon": -73.9543088 }, + { "lat": 40.7959111, "lon": -73.9543904 }, + { "lat": 40.7958744, "lon": -73.9544641 }, + { "lat": 40.7958388, "lon": -73.9545369 }, + { "lat": 40.7957841, "lon": -73.9546222 }, + { "lat": 40.7957252, "lon": -73.9547068 }, + { "lat": 40.7957118, "lon": -73.9547267 }, + { "lat": 40.7956776, "lon": -73.9547772 }, + { "lat": 40.7956270, "lon": -73.9548562 }, + { "lat": 40.7955989, "lon": -73.9549104 }, + { "lat": 40.7955763, "lon": -73.9549668 }, + { "lat": 40.7955592, "lon": -73.9550261 }, + { "lat": 40.7955523, "lon": -73.9550781 }, + { "lat": 40.7955478, "lon": -73.9551357 }, + { "lat": 40.7955475, "lon": -73.9551988 }, + { "lat": 40.7955543, "lon": -73.9552655 }, + { "lat": 40.7955680, "lon": -73.9553314 }, + { "lat": 40.7955832, "lon": -73.9553850 }, + { "lat": 40.7956006, "lon": -73.9554335 }, + { "lat": 40.7956286, "lon": -73.9554929 }, + { "lat": 40.7956568, "lon": -73.9555425 }, + { "lat": 40.7956912, "lon": -73.9555871 }, + { "lat": 40.7957199, "lon": -73.9556181 }, + { "lat": 40.7957570, "lon": -73.9556431 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081021542, + "bounds": { + "minlat": 40.7951113, + "minlon": -73.9537256, + "maxlat": 40.7952396, + "maxlon": -73.9534661 + }, + "nodes": [ + 247225008, + 12815989147, + 9178942089, + 9908358302, + 9178942090, + 2058919631 + ], + "geometry": [ + { "lat": 40.7951113, "lon": -73.9537256 }, + { "lat": 40.7951205, "lon": -73.9537017 }, + { "lat": 40.7951559, "lon": -73.9536092 }, + { "lat": 40.7951782, "lon": -73.9535577 }, + { "lat": 40.7951997, "lon": -73.9535176 }, + { "lat": 40.7952396, "lon": -73.9534661 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081021543, + "bounds": { + "minlat": 40.7940446, + "minlon": -73.9548651, + "maxlat": 40.7951113, + "maxlon": -73.9537256 + }, + "nodes": [ + 600524003, + 9178942081, + 42434038, + 9178942082, + 9178942083, + 247225007, + 9178942084, + 2058919617, + 9178942085, + 9178942086, + 2058919619, + 42434044, + 9178942087, + 9178942088, + 247225008 + ], + "geometry": [ + { "lat": 40.7940446, "lon": -73.9548651 }, + { "lat": 40.7941833, "lon": -73.9548272 }, + { "lat": 40.7943218, "lon": -73.9547813 }, + { "lat": 40.7943840, "lon": -73.9547495 }, + { "lat": 40.7944456, "lon": -73.9547125 }, + { "lat": 40.7945122, "lon": -73.9546656 }, + { "lat": 40.7945879, "lon": -73.9546026 }, + { "lat": 40.7946641, "lon": -73.9545238 }, + { "lat": 40.7947456, "lon": -73.9544317 }, + { "lat": 40.7948136, "lon": -73.9543423 }, + { "lat": 40.7948759, "lon": -73.9542478 }, + { "lat": 40.7949461, "lon": -73.9541188 }, + { "lat": 40.7950066, "lon": -73.9539987 }, + { "lat": 40.7950685, "lon": -73.9538482 }, + { "lat": 40.7951113, "lon": -73.9537256 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081021545, + "bounds": { + "minlat": 40.7938775, + "minlon": -73.9549053, + "maxlat": 40.7940446, + "maxlon": -73.9548651 + }, + "nodes": [ + 9908358301, + 600524003 + ], + "geometry": [ + { "lat": 40.7938775, "lon": -73.9549053 }, + { "lat": 40.7940446, "lon": -73.9548651 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081021548, + "bounds": { + "minlat": 40.7931398, + "minlon": -73.9550527, + "maxlat": 40.7938775, + "maxlon": -73.9549053 + }, + "nodes": [ + 2057103336, + 3391966111, + 9178942080, + 9908358300, + 9908358301 + ], + "geometry": [ + { "lat": 40.7931398, "lon": -73.9550527 }, + { "lat": 40.7931989, "lon": -73.9550433 }, + { "lat": 40.7932368, "lon": -73.9550372 }, + { "lat": 40.7933161, "lon": -73.9550240 }, + { "lat": 40.7938775, "lon": -73.9549053 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081021551, + "bounds": { + "minlat": 40.7929302, + "minlon": -73.9550554, + "maxlat": 40.7931398, + "maxlon": -73.9550465 + }, + "nodes": [ + 2057103330, + 9908358299, + 247225006, + 2057103336 + ], + "geometry": [ + { "lat": 40.7929302, "lon": -73.9550465 }, + { "lat": 40.7930103, "lon": -73.9550554 }, + { "lat": 40.7930802, "lon": -73.9550552 }, + { "lat": 40.7931398, "lon": -73.9550527 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081021552, + "bounds": { + "minlat": 40.7927125, + "minlon": -73.9550465, + "maxlat": 40.7929302, + "maxlon": -73.9549942 + }, + "nodes": [ + 432760382, + 9178942079, + 4331407422, + 2057103330 + ], + "geometry": [ + { "lat": 40.7927125, "lon": -73.9549942 }, + { "lat": 40.7928295, "lon": -73.9550280 }, + { "lat": 40.7928517, "lon": -73.9550321 }, + { "lat": 40.7929302, "lon": -73.9550465 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081021553, + "bounds": { + "minlat": 40.7924711, + "minlon": -73.9549942, + "maxlat": 40.7927125, + "maxlon": -73.9549642 + }, + "nodes": [ + 2057103325, + 9178942078, + 9908358298, + 432760382 + ], + "geometry": [ + { "lat": 40.7924711, "lon": -73.9549642 }, + { "lat": 40.7925321, "lon": -73.9549662 }, + { "lat": 40.7926126, "lon": -73.9549785 }, + { "lat": 40.7927125, "lon": -73.9549942 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081021555, + "bounds": { + "minlat": 40.7917276, + "minlon": -73.9555663, + "maxlat": 40.7924711, + "maxlon": -73.9549642 + }, + "nodes": [ + 581365776, + 2059119588, + 9178942074, + 2059119591, + 9178942075, + 2058919571, + 9178942076, + 247225005, + 9178942077, + 9908358297, + 2057103325 + ], + "geometry": [ + { "lat": 40.7917276, "lon": -73.9555663 }, + { "lat": 40.7919000, "lon": -73.9553513 }, + { "lat": 40.7919802, "lon": -73.9552524 }, + { "lat": 40.7920457, "lon": -73.9551832 }, + { "lat": 40.7921128, "lon": -73.9551210 }, + { "lat": 40.7921732, "lon": -73.9550705 }, + { "lat": 40.7922257, "lon": -73.9550339 }, + { "lat": 40.7922827, "lon": -73.9550050 }, + { "lat": 40.7923439, "lon": -73.9549800 }, + { "lat": 40.7924059, "lon": -73.9549661 }, + { "lat": 40.7924711, "lon": -73.9549642 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081021557, + "bounds": { + "minlat": 40.7915893, + "minlon": -73.9557458, + "maxlat": 40.7917276, + "maxlon": -73.9555663 + }, + "nodes": [ + 9908390658, + 581365776 + ], + "geometry": [ + { "lat": 40.7915893, "lon": -73.9557458 }, + { "lat": 40.7917276, "lon": -73.9555663 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081021559, + "bounds": { + "minlat": 40.7895217, + "minlon": -73.9573740, + "maxlat": 40.7897220, + "maxlon": -73.9573402 + }, + "nodes": [ + 2059119505, + 9178942067, + 4331407459, + 247224999 + ], + "geometry": [ + { "lat": 40.7895217, "lon": -73.9573740 }, + { "lat": 40.7895782, "lon": -73.9573679 }, + { "lat": 40.7896352, "lon": -73.9573607 }, + { "lat": 40.7897220, "lon": -73.9573402 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081021563, + "bounds": { + "minlat": 40.7876095, + "minlon": -73.9573773, + "maxlat": 40.7895217, + "maxlon": -73.9568383 + }, + "nodes": [ + 2216999449, + 9178942058, + 2059119418, + 9178942059, + 42433957, + 9908358293, + 9178942060, + 42433960, + 9178942061, + 42433963, + 9178942062, + 2059119476, + 9178942063, + 42433964, + 9178942064, + 42433968, + 9178942065, + 7106445671, + 9178942066, + 42433973, + 7106445673, + 42433992, + 42434011, + 7106445670, + 7106445672, + 42434016, + 42434030, + 2059119505 + ], + "geometry": [ + { "lat": 40.7876095, "lon": -73.9570200 }, + { "lat": 40.7876620, "lon": -73.9570227 }, + { "lat": 40.7877328, "lon": -73.9570201 }, + { "lat": 40.7877975, "lon": -73.9570114 }, + { "lat": 40.7878740, "lon": -73.9569949 }, + { "lat": 40.7879360, "lon": -73.9569780 }, + { "lat": 40.7879784, "lon": -73.9569579 }, + { "lat": 40.7880575, "lon": -73.9569277 }, + { "lat": 40.7881419, "lon": -73.9568910 }, + { "lat": 40.7882237, "lon": -73.9568646 }, + { "lat": 40.7882814, "lon": -73.9568509 }, + { "lat": 40.7883326, "lon": -73.9568416 }, + { "lat": 40.7883980, "lon": -73.9568383 }, + { "lat": 40.7884558, "lon": -73.9568406 }, + { "lat": 40.7885283, "lon": -73.9568458 }, + { "lat": 40.7886072, "lon": -73.9568620 }, + { "lat": 40.7886689, "lon": -73.9568782 }, + { "lat": 40.7887404, "lon": -73.9569032 }, + { "lat": 40.7888155, "lon": -73.9569408 }, + { "lat": 40.7888789, "lon": -73.9569785 }, + { "lat": 40.7889516, "lon": -73.9570309 }, + { "lat": 40.7890241, "lon": -73.9570933 }, + { "lat": 40.7892440, "lon": -73.9573165 }, + { "lat": 40.7892867, "lon": -73.9573456 }, + { "lat": 40.7893320, "lon": -73.9573638 }, + { "lat": 40.7893854, "lon": -73.9573760 }, + { "lat": 40.7894437, "lon": -73.9573773 }, + { "lat": 40.7895217, "lon": -73.9573740 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081021565, + "bounds": { + "minlat": 40.7873736, + "minlon": -73.9570200, + "maxlat": 40.7876095, + "maxlon": -73.9569898 + }, + "nodes": [ + 9178942057, + 42433953, + 9908390670, + 9908358292, + 2216999449 + ], + "geometry": [ + { "lat": 40.7873736, "lon": -73.9569898 }, + { "lat": 40.7874737, "lon": -73.9570050 }, + { "lat": 40.7875051, "lon": -73.9570089 }, + { "lat": 40.7875437, "lon": -73.9570138 }, + { "lat": 40.7876095, "lon": -73.9570200 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081021566, + "bounds": { + "minlat": 40.7842128, + "minlon": -73.9588732, + "maxlat": 40.7873736, + "maxlon": -73.9569704 + }, + "nodes": [ + 42433933, + 4304633191, + 4331407471, + 4331407433, + 9908358290, + 9178942055, + 42433937, + 42433942, + 9908358291, + 7106435066, + 42433945, + 7106435068, + 42433946, + 9178942056, + 7106435065, + 42433950, + 9178942057 + ], + "geometry": [ + { "lat": 40.7842128, "lon": -73.9588732 }, + { "lat": 40.7843176, "lon": -73.9587975 }, + { "lat": 40.7863029, "lon": -73.9573435 }, + { "lat": 40.7864039, "lon": -73.9572751 }, + { "lat": 40.7864771, "lon": -73.9572307 }, + { "lat": 40.7865637, "lon": -73.9571786 }, + { "lat": 40.7867389, "lon": -73.9570736 }, + { "lat": 40.7867814, "lon": -73.9570504 }, + { "lat": 40.7868192, "lon": -73.9570332 }, + { "lat": 40.7868680, "lon": -73.9570164 }, + { "lat": 40.7869196, "lon": -73.9570013 }, + { "lat": 40.7869901, "lon": -73.9569869 }, + { "lat": 40.7870510, "lon": -73.9569775 }, + { "lat": 40.7871296, "lon": -73.9569704 }, + { "lat": 40.7872287, "lon": -73.9569710 }, + { "lat": 40.7872868, "lon": -73.9569766 }, + { "lat": 40.7873736, "lon": -73.9569898 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081021567, + "bounds": { + "minlat": 40.7839495, + "minlon": -73.9590659, + "maxlat": 40.7842128, + "maxlon": -73.9588732 + }, + "nodes": [ + 9908390661, + 1901016191, + 42433933 + ], + "geometry": [ + { "lat": 40.7839495, "lon": -73.9590659 }, + { "lat": 40.7841356, "lon": -73.9589292 }, + { "lat": 40.7842128, "lon": -73.9588732 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 1081021576, + "bounds": { + "minlat": 40.7813491, + "minlon": -73.9635759, + "maxlat": 40.7815442, + "maxlon": -73.9629601 + }, + "nodes": [ + 480491548, + 9178942043, + 7094731926, + 9178942044, + 9178942045, + 595703332 + ], + "geometry": [ + { "lat": 40.7813491, "lon": -73.9635759 }, + { "lat": 40.7813884, "lon": -73.9634850 }, + { "lat": 40.7814208, "lon": -73.9634040 }, + { "lat": 40.7814525, "lon": -73.9633075 }, + { "lat": 40.7814869, "lon": -73.9631860 }, + { "lat": 40.7815442, "lon": -73.9629601 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "6" + } +}, +{ + "type": "way", + "id": 1081021577, + "bounds": { + "minlat": 40.7812284, + "minlon": -73.9638119, + "maxlat": 40.7813491, + "maxlon": -73.9635759 + }, + "nodes": [ + 1382339088, + 9178942042, + 1382339065, + 480491548 + ], + "geometry": [ + { "lat": 40.7812284, "lon": -73.9638119 }, + { "lat": 40.7812734, "lon": -73.9637324 }, + { "lat": 40.7813158, "lon": -73.9636468 }, + { "lat": 40.7813491, "lon": -73.9635759 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through", + "width": "6" + } +}, +{ + "type": "way", + "id": 1081021581, + "bounds": { + "minlat": 40.7745372, + "minlon": -73.9688260, + "maxlat": 40.7747449, + "maxlon": -73.9686348 + }, + "nodes": [ + 2216963731, + 480492539 + ], + "geometry": [ + { "lat": 40.7745372, "lon": -73.9688260 }, + { "lat": 40.7747449, "lon": -73.9686348 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through", + "width": "6" + } +}, +{ + "type": "way", + "id": 1081021582, + "bounds": { + "minlat": 40.7732460, + "minlon": -73.9690513, + "maxlat": 40.7735153, + "maxlon": -73.9688801 + }, + "nodes": [ + 247221417, + 9178915134, + 42433901, + 2216963677 + ], + "geometry": [ + { "lat": 40.7732460, "lon": -73.9688801 }, + { "lat": 40.7732876, "lon": -73.9689059 }, + { "lat": 40.7733434, "lon": -73.9689396 }, + { "lat": 40.7735153, "lon": -73.9690513 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "6" + } +}, +{ + "type": "way", + "id": 1081021584, + "bounds": { + "minlat": 40.7735153, + "minlon": -73.9691398, + "maxlat": 40.7737056, + "maxlon": -73.9690513 + }, + "nodes": [ + 2216963677, + 9178915135, + 9908358280, + 9908390669, + 9178915136, + 1490116221 + ], + "geometry": [ + { "lat": 40.7735153, "lon": -73.9690513 }, + { "lat": 40.7735650, "lon": -73.9690827 }, + { "lat": 40.7736053, "lon": -73.9691035 }, + { "lat": 40.7736378, "lon": -73.9691185 }, + { "lat": 40.7736457, "lon": -73.9691222 }, + { "lat": 40.7737056, "lon": -73.9691398 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "East Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through", + "width": "6" + } +}, +{ + "type": "way", + "id": 1081021589, + "bounds": { + "minlat": 40.7760426, + "minlon": -73.9759630, + "maxlat": 40.7762266, + "maxlon": -73.9755334 + }, + "nodes": [ + 42435275, + 7106318839, + 9906929025, + 248709587 + ], + "geometry": [ + { "lat": 40.7762266, "lon": -73.9759630 }, + { "lat": 40.7761708, "lon": -73.9758238 }, + { "lat": 40.7760591, "lon": -73.9755666 }, + { "lat": 40.7760426, "lon": -73.9755334 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "cycleway": "lane", + "highway": "service", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West 72nd Street", + "name:ru": "Западная 72-я стрит", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081022882, + "bounds": { + "minlat": 40.7717082, + "minlon": -73.9780948, + "maxlat": 40.7719960, + "maxlon": -73.9776645 + }, + "nodes": [ + 247223720, + 9170842296, + 9908336690, + 9170842297 + ], + "geometry": [ + { "lat": 40.7717082, "lon": -73.9776645 }, + { "lat": 40.7717925, "lon": -73.9777671 }, + { "lat": 40.7718950, "lon": -73.9779340 }, + { "lat": 40.7719960, "lon": -73.9780948 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1081028161, + "bounds": { + "minlat": 40.7990112, + "minlon": -73.9553585, + "maxlat": 40.7991806, + "maxlon": -73.9552750 + }, + "nodes": [ + 247225034, + 2058920038, + 2058920039, + 2058920042, + 595703216 + ], + "geometry": [ + { "lat": 40.7990112, "lon": -73.9552750 }, + { "lat": 40.7990694, "lon": -73.9553158 }, + { "lat": 40.7991072, "lon": -73.9553379 }, + { "lat": 40.7991428, "lon": -73.9553516 }, + { "lat": 40.7991806, "lon": -73.9553585 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "alt_name": "7th Avenue", + "bicycle": "designated", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "no", + "highway": "service", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "oneway:bicycle": "yes", + "route": "bicycle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028162, + "bounds": { + "minlat": 40.7974585, + "minlon": -73.9585317, + "maxlat": 40.7995658, + "maxlon": -73.9552750 + }, + "nodes": [ + 247225034, + 9178942125, + 2058920040, + 247225035, + 6804416819, + 6804416818, + 9908455760, + 595703242, + 9178942129, + 9908455764, + 12818282371, + 2058920055, + 9908455765, + 6804416817, + 247225037, + 6804416816, + 247225038, + 6804416815, + 2058920060, + 9908455766, + 2058920063, + 6804416814, + 9908455767, + 6804416813, + 2058920065, + 9908455768, + 247225040, + 2058920067, + 247225041, + 2058920066, + 9908455769, + 9908455774, + 1203884134, + 9908455770, + 247225042, + 2058920064, + 9908455775, + 2058920062, + 247225043, + 2058920053, + 2058920049, + 9908455776, + 247225044, + 2058920041, + 2058920037, + 9908455777, + 247225045, + 4332460241, + 2058920034, + 9908455778, + 2058920033, + 2058920032, + 6804416810, + 761849063, + 6804416811, + 6804416812, + 247225047, + 9908455779, + 2058920026, + 2058920025, + 2058920024, + 247225048, + 2058920023, + 2058920022, + 9908455780, + 247225049, + 9908455781, + 247225050, + 2058920008, + 2058920003, + 2058919999, + 9908455782, + 247225051, + 2058919981, + 9908455783, + 2058919970, + 2058919962, + 9908455784, + 247225052, + 2058919950, + 2058919930, + 2058919920, + 9908455785, + 247225053, + 9908455786, + 247225054 + ], + "geometry": [ + { "lat": 40.7990112, "lon": -73.9552750 }, + { "lat": 40.7990715, "lon": -73.9553909 }, + { "lat": 40.7991216, "lon": -73.9554954 }, + { "lat": 40.7991594, "lon": -73.9555844 }, + { "lat": 40.7991909, "lon": -73.9556745 }, + { "lat": 40.7992265, "lon": -73.9557819 }, + { "lat": 40.7992529, "lon": -73.9558749 }, + { "lat": 40.7992792, "lon": -73.9559762 }, + { "lat": 40.7993059, "lon": -73.9560915 }, + { "lat": 40.7993308, "lon": -73.9562093 }, + { "lat": 40.7993472, "lon": -73.9562937 }, + { "lat": 40.7993554, "lon": -73.9563356 }, + { "lat": 40.7993738, "lon": -73.9564483 }, + { "lat": 40.7993910, "lon": -73.9565594 }, + { "lat": 40.7994039, "lon": -73.9566616 }, + { "lat": 40.7994105, "lon": -73.9567662 }, + { "lat": 40.7994237, "lon": -73.9569876 }, + { "lat": 40.7994290, "lon": -73.9570476 }, + { "lat": 40.7994379, "lon": -73.9571219 }, + { "lat": 40.7994514, "lon": -73.9571960 }, + { "lat": 40.7994691, "lon": -73.9572757 }, + { "lat": 40.7994879, "lon": -73.9573471 }, + { "lat": 40.7995099, "lon": -73.9574237 }, + { "lat": 40.7995334, "lon": -73.9574960 }, + { "lat": 40.7995471, "lon": -73.9575407 }, + { "lat": 40.7995566, "lon": -73.9575898 }, + { "lat": 40.7995632, "lon": -73.9576452 }, + { "lat": 40.7995658, "lon": -73.9577023 }, + { "lat": 40.7995652, "lon": -73.9577541 }, + { "lat": 40.7995600, "lon": -73.9578044 }, + { "lat": 40.7995510, "lon": -73.9578552 }, + { "lat": 40.7995391, "lon": -73.9579016 }, + { "lat": 40.7995283, "lon": -73.9579411 }, + { "lat": 40.7995140, "lon": -73.9579792 }, + { "lat": 40.7994926, "lon": -73.9580271 }, + { "lat": 40.7994642, "lon": -73.9580848 }, + { "lat": 40.7994366, "lon": -73.9581314 }, + { "lat": 40.7994058, "lon": -73.9581771 }, + { "lat": 40.7993649, "lon": -73.9582296 }, + { "lat": 40.7993242, "lon": -73.9582766 }, + { "lat": 40.7992783, "lon": -73.9583242 }, + { "lat": 40.7992273, "lon": -73.9583684 }, + { "lat": 40.7991754, "lon": -73.9584077 }, + { "lat": 40.7991268, "lon": -73.9584368 }, + { "lat": 40.7990763, "lon": -73.9584658 }, + { "lat": 40.7990161, "lon": -73.9584902 }, + { "lat": 40.7989644, "lon": -73.9585080 }, + { "lat": 40.7989344, "lon": -73.9585156 }, + { "lat": 40.7989090, "lon": -73.9585221 }, + { "lat": 40.7988565, "lon": -73.9585292 }, + { "lat": 40.7988082, "lon": -73.9585317 }, + { "lat": 40.7987644, "lon": -73.9585288 }, + { "lat": 40.7987201, "lon": -73.9585211 }, + { "lat": 40.7986744, "lon": -73.9585094 }, + { "lat": 40.7986461, "lon": -73.9584987 }, + { "lat": 40.7986067, "lon": -73.9584824 }, + { "lat": 40.7985718, "lon": -73.9584637 }, + { "lat": 40.7985323, "lon": -73.9584400 }, + { "lat": 40.7984867, "lon": -73.9584019 }, + { "lat": 40.7984454, "lon": -73.9583595 }, + { "lat": 40.7984124, "lon": -73.9583187 }, + { "lat": 40.7983742, "lon": -73.9582666 }, + { "lat": 40.7983455, "lon": -73.9582156 }, + { "lat": 40.7983190, "lon": -73.9581654 }, + { "lat": 40.7982948, "lon": -73.9581064 }, + { "lat": 40.7982779, "lon": -73.9580483 }, + { "lat": 40.7982627, "lon": -73.9579848 }, + { "lat": 40.7981647, "lon": -73.9575617 }, + { "lat": 40.7981463, "lon": -73.9574902 }, + { "lat": 40.7981301, "lon": -73.9574403 }, + { "lat": 40.7981166, "lon": -73.9574036 }, + { "lat": 40.7980919, "lon": -73.9573574 }, + { "lat": 40.7980618, "lon": -73.9573133 }, + { "lat": 40.7980225, "lon": -73.9572581 }, + { "lat": 40.7979825, "lon": -73.9572087 }, + { "lat": 40.7979508, "lon": -73.9571758 }, + { "lat": 40.7979186, "lon": -73.9571486 }, + { "lat": 40.7978776, "lon": -73.9571174 }, + { "lat": 40.7978418, "lon": -73.9570943 }, + { "lat": 40.7977970, "lon": -73.9570725 }, + { "lat": 40.7977534, "lon": -73.9570563 }, + { "lat": 40.7977047, "lon": -73.9570406 }, + { "lat": 40.7976582, "lon": -73.9570319 }, + { "lat": 40.7976082, "lon": -73.9570289 }, + { "lat": 40.7975652, "lon": -73.9570321 }, + { "lat": 40.7974585, "lon": -73.9570487 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081028170, + "bounds": { + "minlat": 40.7969773, + "minlon": -73.9570527, + "maxlat": 40.7974585, + "maxlon": -73.9569253 + }, + "nodes": [ + 247225054, + 9908455787, + 4332457587, + 6804416808, + 432756990, + 6804416807, + 247225055, + 9908455788, + 4332457990, + 9908455789 + ], + "geometry": [ + { "lat": 40.7974585, "lon": -73.9570487 }, + { "lat": 40.7974021, "lon": -73.9570524 }, + { "lat": 40.7973486, "lon": -73.9570527 }, + { "lat": 40.7973004, "lon": -73.9570473 }, + { "lat": 40.7972469, "lon": -73.9570392 }, + { "lat": 40.7972026, "lon": -73.9570270 }, + { "lat": 40.7971459, "lon": -73.9570102 }, + { "lat": 40.7970900, "lon": -73.9569902 }, + { "lat": 40.7970306, "lon": -73.9569592 }, + { "lat": 40.7969773, "lon": -73.9569253 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081028171, + "bounds": { + "minlat": 40.7967427, + "minlon": -73.9569253, + "maxlat": 40.7969773, + "maxlon": -73.9568154 + }, + "nodes": [ + 9908455789, + 247225056, + 9908455790, + 4332457989, + 9908455791 + ], + "geometry": [ + { "lat": 40.7969773, "lon": -73.9569253 }, + { "lat": 40.7969220, "lon": -73.9568922 }, + { "lat": 40.7968651, "lon": -73.9568599 }, + { "lat": 40.7968056, "lon": -73.9568351 }, + { "lat": 40.7967427, "lon": -73.9568154 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028172, + "bounds": { + "minlat": 40.7963009, + "minlon": -73.9568490, + "maxlat": 40.7967427, + "maxlon": -73.9567951 + }, + "nodes": [ + 9908455791, + 247225057, + 2059304086, + 2059304082, + 2059304076, + 247225058, + 9908455792, + 2059304071, + 2059304070 + ], + "geometry": [ + { "lat": 40.7967427, "lon": -73.9568154 }, + { "lat": 40.7966806, "lon": -73.9568038 }, + { "lat": 40.7966204, "lon": -73.9567981 }, + { "lat": 40.7965634, "lon": -73.9567951 }, + { "lat": 40.7965162, "lon": -73.9567982 }, + { "lat": 40.7964647, "lon": -73.9568008 }, + { "lat": 40.7964084, "lon": -73.9568122 }, + { "lat": 40.7963569, "lon": -73.9568267 }, + { "lat": 40.7963009, "lon": -73.9568490 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081028173, + "bounds": { + "minlat": 40.7941130, + "minlon": -73.9597620, + "maxlat": 40.7945777, + "maxlon": -73.9592349 + }, + "nodes": [ + 1203806373, + 9908455801, + 2057103396, + 4332457584, + 4332457585, + 1203806294, + 9908455802, + 247225068, + 2057103384, + 9908455803, + 247225069, + 2057103373 + ], + "geometry": [ + { "lat": 40.7945777, "lon": -73.9592349 }, + { "lat": 40.7945225, "lon": -73.9592622 }, + { "lat": 40.7944725, "lon": -73.9592894 }, + { "lat": 40.7944352, "lon": -73.9593132 }, + { "lat": 40.7943982, "lon": -73.9593404 }, + { "lat": 40.7943568, "lon": -73.9593790 }, + { "lat": 40.7943051, "lon": -73.9594373 }, + { "lat": 40.7942667, "lon": -73.9594859 }, + { "lat": 40.7942207, "lon": -73.9595519 }, + { "lat": 40.7941763, "lon": -73.9596260 }, + { "lat": 40.7941392, "lon": -73.9596983 }, + { "lat": 40.7941130, "lon": -73.9597620 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081028177, + "bounds": { + "minlat": 40.7936822, + "minlon": -73.9610489, + "maxlat": 40.7941130, + "maxlon": -73.9597620 + }, + "nodes": [ + 2057103373, + 9908455804, + 432757027, + 9908455805, + 247225070, + 9908455806, + 247225071, + 2057103365, + 9908455807, + 595703304 + ], + "geometry": [ + { "lat": 40.7941130, "lon": -73.9597620 }, + { "lat": 40.7940879, "lon": -73.9598442 }, + { "lat": 40.7940136, "lon": -73.9601081 }, + { "lat": 40.7939141, "lon": -73.9604713 }, + { "lat": 40.7938862, "lon": -73.9605715 }, + { "lat": 40.7938527, "lon": -73.9606712 }, + { "lat": 40.7938159, "lon": -73.9607685 }, + { "lat": 40.7937776, "lon": -73.9608590 }, + { "lat": 40.7937289, "lon": -73.9609595 }, + { "lat": 40.7936822, "lon": -73.9610489 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028178, + "bounds": { + "minlat": 40.7928785, + "minlon": -73.9618830, + "maxlat": 40.7936822, + "maxlon": -73.9610489 + }, + "nodes": [ + 595703304, + 9908455809, + 9908455810, + 4332457586, + 9908455811, + 595703307, + 9908455812, + 247225990, + 9908455813, + 2057103332, + 9908455808 + ], + "geometry": [ + { "lat": 40.7936822, "lon": -73.9610489 }, + { "lat": 40.7936277, "lon": -73.9611412 }, + { "lat": 40.7935790, "lon": -73.9612193 }, + { "lat": 40.7935324, "lon": -73.9612872 }, + { "lat": 40.7934626, "lon": -73.9613769 }, + { "lat": 40.7933921, "lon": -73.9614614 }, + { "lat": 40.7933313, "lon": -73.9615270 }, + { "lat": 40.7932662, "lon": -73.9615897 }, + { "lat": 40.7931905, "lon": -73.9616548 }, + { "lat": 40.7931061, "lon": -73.9617201 }, + { "lat": 40.7928785, "lon": -73.9618830 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081028181, + "bounds": { + "minlat": 40.7917790, + "minlon": -73.9624930, + "maxlat": 40.7928785, + "maxlon": -73.9618830 + }, + "nodes": [ + 9908455808, + 247225991, + 9908460326, + 2057103328, + 9908460327, + 42425231, + 247225992, + 4276626601 + ], + "geometry": [ + { "lat": 40.7928785, "lon": -73.9618830 }, + { "lat": 40.7928093, "lon": -73.9619315 }, + { "lat": 40.7927076, "lon": -73.9619986 }, + { "lat": 40.7926105, "lon": -73.9620596 }, + { "lat": 40.7924715, "lon": -73.9621407 }, + { "lat": 40.7923308, "lon": -73.9622159 }, + { "lat": 40.7920790, "lon": -73.9623459 }, + { "lat": 40.7917790, "lon": -73.9624930 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028182, + "bounds": { + "minlat": 40.7915301, + "minlon": -73.9626567, + "maxlat": 40.7917790, + "maxlon": -73.9624930 + }, + "nodes": [ + 4276626601, + 595703309, + 2057103309, + 595703313, + 4276626333 + ], + "geometry": [ + { "lat": 40.7917790, "lon": -73.9624930 }, + { "lat": 40.7917284, "lon": -73.9625212 }, + { "lat": 40.7916716, "lon": -73.9625548 }, + { "lat": 40.7915917, "lon": -73.9626093 }, + { "lat": 40.7915301, "lon": -73.9626567 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081028183, + "bounds": { + "minlat": 40.7896491, + "minlon": -73.9642234, + "maxlat": 40.7915301, + "maxlon": -73.9626567 + }, + "nodes": [ + 4276626333, + 7106580383, + 247226076, + 9908460328, + 2057103277, + 9908460329, + 4332481677, + 9908460330, + 247226077, + 9908460331, + 9908460332, + 9908460333, + 9908460334, + 42424456, + 1203806304, + 9908460341, + 42431295, + 9908460343, + 42431297, + 42431299, + 9908460342, + 42431301, + 9908460344, + 42431303, + 9908460345, + 42431304, + 9908460346, + 42431305, + 9908460347, + 42431306, + 9908460348, + 9908460349 + ], + "geometry": [ + { "lat": 40.7915301, "lon": -73.9626567 }, + { "lat": 40.7914624, "lon": -73.9627140 }, + { "lat": 40.7913956, "lon": -73.9627719 }, + { "lat": 40.7913242, "lon": -73.9628392 }, + { "lat": 40.7912563, "lon": -73.9629173 }, + { "lat": 40.7912036, "lon": -73.9629874 }, + { "lat": 40.7911558, "lon": -73.9630549 }, + { "lat": 40.7911145, "lon": -73.9631218 }, + { "lat": 40.7910751, "lon": -73.9631905 }, + { "lat": 40.7910319, "lon": -73.9632786 }, + { "lat": 40.7909912, "lon": -73.9633653 }, + { "lat": 40.7909279, "lon": -73.9635218 }, + { "lat": 40.7908931, "lon": -73.9636050 }, + { "lat": 40.7908584, "lon": -73.9636781 }, + { "lat": 40.7908388, "lon": -73.9637159 }, + { "lat": 40.7908041, "lon": -73.9637747 }, + { "lat": 40.7907592, "lon": -73.9638386 }, + { "lat": 40.7907049, "lon": -73.9639042 }, + { "lat": 40.7906507, "lon": -73.9639613 }, + { "lat": 40.7905864, "lon": -73.9640200 }, + { "lat": 40.7905301, "lon": -73.9640625 }, + { "lat": 40.7904753, "lon": -73.9641007 }, + { "lat": 40.7904163, "lon": -73.9641358 }, + { "lat": 40.7903562, "lon": -73.9641650 }, + { "lat": 40.7902916, "lon": -73.9641879 }, + { "lat": 40.7902259, "lon": -73.9642060 }, + { "lat": 40.7901644, "lon": -73.9642172 }, + { "lat": 40.7901075, "lon": -73.9642231 }, + { "lat": 40.7900304, "lon": -73.9642234 }, + { "lat": 40.7899660, "lon": -73.9642175 }, + { "lat": 40.7899006, "lon": -73.9642100 }, + { "lat": 40.7896491, "lon": -73.9641757 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028184, + "bounds": { + "minlat": 40.7891771, + "minlon": -73.9642835, + "maxlat": 40.7896491, + "maxlon": -73.9641680 + }, + "nodes": [ + 9908460349, + 42431309, + 42431311, + 9908460350, + 42431313, + 9908460351, + 42431316, + 9908460352, + 42431320 + ], + "geometry": [ + { "lat": 40.7896491, "lon": -73.9641757 }, + { "lat": 40.7895669, "lon": -73.9641685 }, + { "lat": 40.7894820, "lon": -73.9641680 }, + { "lat": 40.7894342, "lon": -73.9641778 }, + { "lat": 40.7893941, "lon": -73.9641876 }, + { "lat": 40.7893347, "lon": -73.9642063 }, + { "lat": 40.7892784, "lon": -73.9642280 }, + { "lat": 40.7892279, "lon": -73.9642532 }, + { "lat": 40.7891771, "lon": -73.9642835 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081028187, + "bounds": { + "minlat": 40.7885236, + "minlon": -73.9656365, + "maxlat": 40.7891771, + "maxlon": -73.9642835 + }, + "nodes": [ + 42431320, + 42431324, + 9908460353, + 42431326, + 9908460354, + 42431327, + 9908460355, + 42431330, + 9908460356, + 42431331, + 10765205990, + 42431346 + ], + "geometry": [ + { "lat": 40.7891771, "lon": -73.9642835 }, + { "lat": 40.7891145, "lon": -73.9643288 }, + { "lat": 40.7890515, "lon": -73.9643849 }, + { "lat": 40.7890005, "lon": -73.9644353 }, + { "lat": 40.7889482, "lon": -73.9645036 }, + { "lat": 40.7889013, "lon": -73.9645737 }, + { "lat": 40.7888614, "lon": -73.9646404 }, + { "lat": 40.7888275, "lon": -73.9647089 }, + { "lat": 40.7887962, "lon": -73.9647836 }, + { "lat": 40.7887700, "lon": -73.9648607 }, + { "lat": 40.7886528, "lon": -73.9652298 }, + { "lat": 40.7885236, "lon": -73.9656365 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028190, + "bounds": { + "minlat": 40.7882931, + "minlon": -73.9661539, + "maxlat": 40.7885236, + "maxlon": -73.9656365 + }, + "nodes": [ + 42431346, + 9908460357, + 42431353, + 2057103256, + 42431355, + 9908460358 + ], + "geometry": [ + { "lat": 40.7885236, "lon": -73.9656365 }, + { "lat": 40.7884922, "lon": -73.9657255 }, + { "lat": 40.7884591, "lon": -73.9658104 }, + { "lat": 40.7884123, "lon": -73.9659225 }, + { "lat": 40.7883523, "lon": -73.9660430 }, + { "lat": 40.7882931, "lon": -73.9661539 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081028197, + "bounds": { + "minlat": 40.7875941, + "minlon": -73.9670082, + "maxlat": 40.7882931, + "maxlon": -73.9661539 + }, + "nodes": [ + 9908460358, + 42431356, + 9908460359, + 42431360, + 9908460360, + 42431361, + 2216999460, + 3616582587, + 3616582586, + 9908460372 + ], + "geometry": [ + { "lat": 40.7882931, "lon": -73.9661539 }, + { "lat": 40.7882339, "lon": -73.9662578 }, + { "lat": 40.7881648, "lon": -73.9663603 }, + { "lat": 40.7880972, "lon": -73.9664572 }, + { "lat": 40.7880320, "lon": -73.9665423 }, + { "lat": 40.7879791, "lon": -73.9666084 }, + { "lat": 40.7879156, "lon": -73.9666836 }, + { "lat": 40.7877372, "lon": -73.9668688 }, + { "lat": 40.7876852, "lon": -73.9669207 }, + { "lat": 40.7875941, "lon": -73.9670082 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081028199, + "bounds": { + "minlat": 40.7850623, + "minlon": -73.9675544, + "maxlat": 40.7875941, + "maxlon": -73.9670082 + }, + "nodes": [ + 9908460372, + 356623353, + 9908460373, + 9908460374, + 1071832228, + 9908460375, + 4332540841, + 9908460376, + 4332547310, + 356623352, + 9908460377, + 4332540842, + 9908460378, + 4332540830, + 9908460379, + 42431373, + 4332540834, + 9908460380, + 1071832236, + 9908460381, + 356623350, + 9908460382, + 9908460383 + ], + "geometry": [ + { "lat": 40.7875941, "lon": -73.9670082 }, + { "lat": 40.7875081, "lon": -73.9670843 }, + { "lat": 40.7874015, "lon": -73.9671660 }, + { "lat": 40.7872917, "lon": -73.9672444 }, + { "lat": 40.7871772, "lon": -73.9673198 }, + { "lat": 40.7870762, "lon": -73.9673817 }, + { "lat": 40.7869913, "lon": -73.9674243 }, + { "lat": 40.7869028, "lon": -73.9674614 }, + { "lat": 40.7868176, "lon": -73.9674922 }, + { "lat": 40.7867343, "lon": -73.9675154 }, + { "lat": 40.7866453, "lon": -73.9675329 }, + { "lat": 40.7865667, "lon": -73.9675454 }, + { "lat": 40.7864828, "lon": -73.9675538 }, + { "lat": 40.7863956, "lon": -73.9675544 }, + { "lat": 40.7863059, "lon": -73.9675494 }, + { "lat": 40.7862169, "lon": -73.9675398 }, + { "lat": 40.7861213, "lon": -73.9675219 }, + { "lat": 40.7860273, "lon": -73.9674984 }, + { "lat": 40.7859464, "lon": -73.9674718 }, + { "lat": 40.7858538, "lon": -73.9674346 }, + { "lat": 40.7852004, "lon": -73.9671591 }, + { "lat": 40.7851362, "lon": -73.9671387 }, + { "lat": 40.7850623, "lon": -73.9671234 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028200, + "bounds": { + "minlat": 40.7845286, + "minlon": -73.9672059, + "maxlat": 40.7850623, + "maxlon": -73.9671110 + }, + "nodes": [ + 9908460383, + 4332540829, + 1071832230, + 9908460384, + 9908460385, + 356623349, + 4332540837, + 9908460386, + 595703314 + ], + "geometry": [ + { "lat": 40.7850623, "lon": -73.9671234 }, + { "lat": 40.7849869, "lon": -73.9671130 }, + { "lat": 40.7849251, "lon": -73.9671110 }, + { "lat": 40.7848591, "lon": -73.9671124 }, + { "lat": 40.7848055, "lon": -73.9671194 }, + { "lat": 40.7847537, "lon": -73.9671253 }, + { "lat": 40.7846787, "lon": -73.9671463 }, + { "lat": 40.7845996, "lon": -73.9671732 }, + { "lat": 40.7845286, "lon": -73.9672059 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081028201, + "bounds": { + "minlat": 40.7840110, + "minlon": -73.9675942, + "maxlat": 40.7845286, + "maxlon": -73.9672059 + }, + "nodes": [ + 595703314, + 7106818625, + 595703331, + 9908460387, + 11392826359, + 247224528, + 9908460388 + ], + "geometry": [ + { "lat": 40.7845286, "lon": -73.9672059 }, + { "lat": 40.7844488, "lon": -73.9672508 }, + { "lat": 40.7843761, "lon": -73.9672984 }, + { "lat": 40.7842903, "lon": -73.9673608 }, + { "lat": 40.7842334, "lon": -73.9674064 }, + { "lat": 40.7841367, "lon": -73.9674839 }, + { "lat": 40.7840110, "lon": -73.9675942 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028204, + "bounds": { + "minlat": 40.7837431, + "minlon": -73.9678511, + "maxlat": 40.7840110, + "maxlon": -73.9675942 + }, + "nodes": [ + 9908460388, + 4332540824, + 9908460389, + 247224529 + ], + "geometry": [ + { "lat": 40.7840110, "lon": -73.9675942 }, + { "lat": 40.7838959, "lon": -73.9676994 }, + { "lat": 40.7838166, "lon": -73.9677759 }, + { "lat": 40.7837431, "lon": -73.9678511 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028205, + "bounds": { + "minlat": 40.7819549, + "minlon": -73.9694553, + "maxlat": 40.7823917, + "maxlon": -73.9694289 + }, + "nodes": [ + 2059303993, + 2059303992, + 9908460403, + 247224532, + 9908460404, + 3248830964 + ], + "geometry": [ + { "lat": 40.7823917, "lon": -73.9694396 }, + { "lat": 40.7823375, "lon": -73.9694496 }, + { "lat": 40.7822826, "lon": -73.9694545 }, + { "lat": 40.7822160, "lon": -73.9694553 }, + { "lat": 40.7821426, "lon": -73.9694492 }, + { "lat": 40.7819549, "lon": -73.9694289 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028206, + "bounds": { + "minlat": 40.7825726, + "minlon": -73.9693772, + "maxlat": 40.7829668, + "maxlon": -73.9690390 + }, + "nodes": [ + 4332540831, + 247224531, + 9908460399, + 4332540835, + 9908460400, + 4332540839, + 9908460401, + 42424850 + ], + "geometry": [ + { "lat": 40.7829668, "lon": -73.9690390 }, + { "lat": 40.7829116, "lon": -73.9691069 }, + { "lat": 40.7828521, "lon": -73.9691737 }, + { "lat": 40.7828044, "lon": -73.9692231 }, + { "lat": 40.7827556, "lon": -73.9692648 }, + { "lat": 40.7827120, "lon": -73.9692982 }, + { "lat": 40.7826547, "lon": -73.9693317 }, + { "lat": 40.7825726, "lon": -73.9693772 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081028209, + "bounds": { + "minlat": 40.7837952, + "minlon": -73.9698495, + "maxlat": 40.7846230, + "maxlon": -73.9691268 + }, + "nodes": [ + 42424851, + 561950766, + 2059304016, + 9908460405, + 9908460406, + 6936298727, + 1071832223, + 2059304013, + 9908460407, + 2059304011, + 9908460408, + 375858774, + 2059304008, + 582992207, + 9908460411, + 9908460412, + 2059304005 + ], + "geometry": [ + { "lat": 40.7846230, "lon": -73.9698495 }, + { "lat": 40.7845575, "lon": -73.9696979 }, + { "lat": 40.7845334, "lon": -73.9696398 }, + { "lat": 40.7844958, "lon": -73.9695654 }, + { "lat": 40.7844561, "lon": -73.9694936 }, + { "lat": 40.7844213, "lon": -73.9694371 }, + { "lat": 40.7843800, "lon": -73.9693851 }, + { "lat": 40.7843329, "lon": -73.9693389 }, + { "lat": 40.7842822, "lon": -73.9692974 }, + { "lat": 40.7842199, "lon": -73.9692566 }, + { "lat": 40.7841609, "lon": -73.9692245 }, + { "lat": 40.7841174, "lon": -73.9692049 }, + { "lat": 40.7840545, "lon": -73.9691777 }, + { "lat": 40.7839964, "lon": -73.9691624 }, + { "lat": 40.7839337, "lon": -73.9691462 }, + { "lat": 40.7838657, "lon": -73.9691338 }, + { "lat": 40.7837952, "lon": -73.9691268 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "highway": "service", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West 85th Street", + "name:ru": "Западная 85-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028210, + "bounds": { + "minlat": 40.7810456, + "minlon": -73.9695943, + "maxlat": 40.7817478, + "maxlon": -73.9693960 + }, + "nodes": [ + 4332540828, + 4332540843, + 9908460419, + 247224533, + 3248816530, + 9908460420, + 4332540825, + 9908460421, + 42431385, + 9908460422, + 4332540826 + ], + "geometry": [ + { "lat": 40.7817478, "lon": -73.9694078 }, + { "lat": 40.7816656, "lon": -73.9693995 }, + { "lat": 40.7815905, "lon": -73.9693960 }, + { "lat": 40.7815188, "lon": -73.9694003 }, + { "lat": 40.7814629, "lon": -73.9694067 }, + { "lat": 40.7814024, "lon": -73.9694180 }, + { "lat": 40.7813246, "lon": -73.9694391 }, + { "lat": 40.7812537, "lon": -73.9694658 }, + { "lat": 40.7811876, "lon": -73.9694973 }, + { "lat": 40.7811236, "lon": -73.9695377 }, + { "lat": 40.7810456, "lon": -73.9695943 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028213, + "bounds": { + "minlat": 40.7806594, + "minlon": -73.9699943, + "maxlat": 40.7810456, + "maxlon": -73.9695943 + }, + "nodes": [ + 4332540826, + 9908460423, + 1740700811, + 3248816504, + 480491182, + 9908460424 + ], + "geometry": [ + { "lat": 40.7810456, "lon": -73.9695943 }, + { "lat": 40.7809713, "lon": -73.9696549 }, + { "lat": 40.7809026, "lon": -73.9697162 }, + { "lat": 40.7807726, "lon": -73.9698505 }, + { "lat": 40.7807281, "lon": -73.9699024 }, + { "lat": 40.7806594, "lon": -73.9699943 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081028215, + "bounds": { + "minlat": 40.7783008, + "minlon": -73.9731289, + "maxlat": 40.7786470, + "maxlon": -73.9725126 + }, + "nodes": [ + 6463087958, + 3248816651, + 42424229, + 3248816643 + ], + "geometry": [ + { "lat": 40.7786470, "lon": -73.9725126 }, + { "lat": 40.7784772, "lon": -73.9728170 }, + { "lat": 40.7783652, "lon": -73.9730123 }, + { "lat": 40.7783008, "lon": -73.9731289 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028219, + "bounds": { + "minlat": 40.7775721, + "minlon": -73.9740095, + "maxlat": 40.7783008, + "maxlon": -73.9731289 + }, + "nodes": [ + 3248816643, + 7106318823, + 247224537, + 7106318830, + 4331118555, + 4332562564, + 9908460427, + 247224538, + 4332562531, + 4331118558 + ], + "geometry": [ + { "lat": 40.7783008, "lon": -73.9731289 }, + { "lat": 40.7781247, "lon": -73.9734424 }, + { "lat": 40.7780648, "lon": -73.9735398 }, + { "lat": 40.7779999, "lon": -73.9736265 }, + { "lat": 40.7779362, "lon": -73.9737045 }, + { "lat": 40.7778612, "lon": -73.9737871 }, + { "lat": 40.7777910, "lon": -73.9738559 }, + { "lat": 40.7777246, "lon": -73.9739131 }, + { "lat": 40.7776503, "lon": -73.9739662 }, + { "lat": 40.7775721, "lon": -73.9740095 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081028220, + "bounds": { + "minlat": 40.7770071, + "minlon": -73.9741555, + "maxlat": 40.7775721, + "maxlon": -73.9740095 + }, + "nodes": [ + 4331118558, + 9908460428, + 42431413, + 248709595, + 9178915160, + 4331118560, + 9178915161 + ], + "geometry": [ + { "lat": 40.7775721, "lon": -73.9740095 }, + { "lat": 40.7775058, "lon": -73.9740422 }, + { "lat": 40.7773902, "lon": -73.9740918 }, + { "lat": 40.7772929, "lon": -73.9741224 }, + { "lat": 40.7772010, "lon": -73.9741396 }, + { "lat": 40.7771082, "lon": -73.9741505 }, + { "lat": 40.7770071, "lon": -73.9741555 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081031897, + "bounds": { + "minlat": 40.8468750, + "minlon": -73.9339681, + "maxlat": 40.8470928, + "maxlon": -73.9335395 + }, + "nodes": [ + 60925795, + 12065306205, + 12065074542, + 12065306207, + 12065306208, + 9897252113 + ], + "geometry": [ + { "lat": 40.8470928, "lon": -73.9339681 }, + { "lat": 40.8470382, "lon": -73.9338463 }, + { "lat": 40.8469976, "lon": -73.9337589 }, + { "lat": 40.8469606, "lon": -73.9336881 }, + { "lat": 40.8469210, "lon": -73.9336154 }, + { "lat": 40.8468750, "lon": -73.9335395 } + ], + "tags": { + "bicycle": "no", + "destination:ref:lanes": "I 95 North;I 87|I 87", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "-1", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1081031898, + "bounds": { + "minlat": 40.8470180, + "minlon": -73.9340047, + "maxlat": 40.8472477, + "maxlon": -73.9334396 + }, + "nodes": [ + 13768792958, + 9908464006 + ], + "geometry": [ + { "lat": 40.8472477, "lon": -73.9340047 }, + { "lat": 40.8470180, "lon": -73.9334396 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "-1", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1081036134, + "bounds": { + "minlat": 40.8457916, + "minlon": -73.9303025, + "maxlat": 40.8460698, + "maxlon": -73.9293064 + }, + "nodes": [ + 373850887, + 12213447939, + 12044080396, + 12213447938, + 12044080395, + 12044080394, + 12044080393, + 60918319 + ], + "geometry": [ + { "lat": 40.8457916, "lon": -73.9293064 }, + { "lat": 40.8458388, "lon": -73.9294887 }, + { "lat": 40.8458877, "lon": -73.9296733 }, + { "lat": 40.8459214, "lon": -73.9297983 }, + { "lat": 40.8459551, "lon": -73.9299181 }, + { "lat": 40.8459953, "lon": -73.9300587 }, + { "lat": 40.8460385, "lon": -73.9302023 }, + { "lat": 40.8460698, "lon": -73.9303025 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Alexander Hamilton Bridge", + "destination": "Lower Level", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxheight": "default", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1081036135, + "bounds": { + "minlat": 40.8457916, + "minlon": -73.9303257, + "maxlat": 40.8460144, + "maxlon": -73.9293064 + }, + "nodes": [ + 373850887, + 60925702 + ], + "geometry": [ + { "lat": 40.8457916, "lon": -73.9293064 }, + { "lat": 40.8460144, "lon": -73.9303257 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Alexander Hamilton Bridge", + "destination": "Upper Level", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1081036136, + "bounds": { + "minlat": 40.8460698, + "minlon": -73.9317621, + "maxlat": 40.8466364, + "maxlon": -73.9303025 + }, + "nodes": [ + 60918319, + 12213447936, + 12213447937, + 9908548251, + 60918320, + 9908548252, + 60918321 + ], + "geometry": [ + { "lat": 40.8460698, "lon": -73.9303025 }, + { "lat": 40.8461160, "lon": -73.9304485 }, + { "lat": 40.8461398, "lon": -73.9305218 }, + { "lat": 40.8461637, "lon": -73.9305923 }, + { "lat": 40.8462177, "lon": -73.9307421 }, + { "lat": 40.8462734, "lon": -73.9308830 }, + { "lat": 40.8466364, "lon": -73.9317621 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight": "default", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1081036137, + "bounds": { + "minlat": 40.8460144, + "minlon": -73.9309682, + "maxlat": 40.8461615, + "maxlon": -73.9303257 + }, + "nodes": [ + 60925702, + 5891063542 + ], + "geometry": [ + { "lat": 40.8460144, "lon": -73.9303257 }, + { "lat": 40.8461615, "lon": -73.9309682 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "concrete", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1081036139, + "bounds": { + "minlat": 40.8488607, + "minlon": -73.9413598, + "maxlat": 40.8492585, + "maxlon": -73.9392371 + }, + "nodes": [ + 595448572, + 12066733749, + 12066733755, + 12066733750, + 12066733754, + 12066733751, + 12066733752, + 12066733753, + 9908548309, + 9908548310, + 9908548311, + 595464725, + 12066733743, + 9908548312, + 12066733744, + 9908548313, + 595464726, + 12068938943, + 595464727, + 9908548316, + 12069055171, + 12069055170, + 9908548315, + 9908557517, + 12069055169, + 12069043568, + 595473107 + ], + "geometry": [ + { "lat": 40.8492549, "lon": -73.9413598 }, + { "lat": 40.8492585, "lon": -73.9413027 }, + { "lat": 40.8492585, "lon": -73.9412594 }, + { "lat": 40.8492564, "lon": -73.9412207 }, + { "lat": 40.8492533, "lon": -73.9411798 }, + { "lat": 40.8492476, "lon": -73.9411320 }, + { "lat": 40.8492318, "lon": -73.9410205 }, + { "lat": 40.8492255, "lon": -73.9409711 }, + { "lat": 40.8492204, "lon": -73.9409267 }, + { "lat": 40.8492168, "lon": -73.9408834 }, + { "lat": 40.8492132, "lon": -73.9408421 }, + { "lat": 40.8492083, "lon": -73.9407470 }, + { "lat": 40.8492043, "lon": -73.9406846 }, + { "lat": 40.8492002, "lon": -73.9406344 }, + { "lat": 40.8491946, "lon": -73.9405866 }, + { "lat": 40.8491870, "lon": -73.9405430 }, + { "lat": 40.8491772, "lon": -73.9404932 }, + { "lat": 40.8489712, "lon": -73.9395705 }, + { "lat": 40.8489460, "lon": -73.9394604 }, + { "lat": 40.8489357, "lon": -73.9394191 }, + { "lat": 40.8489242, "lon": -73.9393758 }, + { "lat": 40.8489169, "lon": -73.9393522 }, + { "lat": 40.8489072, "lon": -73.9393276 }, + { "lat": 40.8488957, "lon": -73.9393038 }, + { "lat": 40.8488826, "lon": -73.9392821 }, + { "lat": 40.8488710, "lon": -73.9392598 }, + { "lat": 40.8488607, "lon": -73.9392371 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "2", + "motor_vehicle": "private", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1081036140, + "bounds": { + "minlat": 40.8491727, + "minlon": -73.9412163, + "maxlat": 40.8495877, + "maxlon": -73.9391155 + }, + "nodes": [ + 595473098, + 9908557519, + 9908557520, + 12069043538, + 595464693, + 12069043545, + 12069043546, + 12069043544, + 12069043543, + 12069043542, + 12069043539, + 595464696, + 12069043540, + 9908548302, + 9908548303, + 595464697, + 12069043541, + 9908548304, + 9908548305, + 9908548306, + 9908570819, + 9908570820, + 60925897 + ], + "geometry": [ + { "lat": 40.8491976, "lon": -73.9391155 }, + { "lat": 40.8491952, "lon": -73.9391441 }, + { "lat": 40.8491910, "lon": -73.9391723 }, + { "lat": 40.8491851, "lon": -73.9392008 }, + { "lat": 40.8491790, "lon": -73.9392249 }, + { "lat": 40.8491744, "lon": -73.9392558 }, + { "lat": 40.8491727, "lon": -73.9392847 }, + { "lat": 40.8491742, "lon": -73.9393185 }, + { "lat": 40.8491776, "lon": -73.9393532 }, + { "lat": 40.8491813, "lon": -73.9393809 }, + { "lat": 40.8492017, "lon": -73.9394933 }, + { "lat": 40.8493726, "lon": -73.9404368 }, + { "lat": 40.8493818, "lon": -73.9404825 }, + { "lat": 40.8493934, "lon": -73.9405301 }, + { "lat": 40.8494090, "lon": -73.9405847 }, + { "lat": 40.8494465, "lon": -73.9407070 }, + { "lat": 40.8494586, "lon": -73.9407541 }, + { "lat": 40.8494718, "lon": -73.9408096 }, + { "lat": 40.8495016, "lon": -73.9409488 }, + { "lat": 40.8495234, "lon": -73.9410465 }, + { "lat": 40.8495363, "lon": -73.9410944 }, + { "lat": 40.8495558, "lon": -73.9411508 }, + { "lat": 40.8495877, "lon": -73.9412163 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "2", + "motor_vehicle": "private", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1081036141, + "bounds": { + "minlat": 40.8488957, + "minlon": -73.9393515, + "maxlat": 40.8491790, + "maxlon": -73.9392249 + }, + "nodes": [ + 595464693, + 12069043547, + 12069043548, + 12069043549, + 9908557531, + 12069043562, + 12069043563, + 9908557530, + 12069043564, + 9908557527, + 12069043565, + 9908557528, + 12069043566, + 12069043567, + 9908557529, + 12069055174, + 12069055173, + 12069055172, + 9908557517 + ], + "geometry": [ + { "lat": 40.8491790, "lon": -73.9392249 }, + { "lat": 40.8491715, "lon": -73.9392460 }, + { "lat": 40.8491618, "lon": -73.9392655 }, + { "lat": 40.8491508, "lon": -73.9392824 }, + { "lat": 40.8491380, "lon": -73.9392969 }, + { "lat": 40.8491236, "lon": -73.9393101 }, + { "lat": 40.8491085, "lon": -73.9393215 }, + { "lat": 40.8490913, "lon": -73.9393312 }, + { "lat": 40.8490762, "lon": -73.9393385 }, + { "lat": 40.8490592, "lon": -73.9393445 }, + { "lat": 40.8490412, "lon": -73.9393484 }, + { "lat": 40.8490232, "lon": -73.9393509 }, + { "lat": 40.8490040, "lon": -73.9393515 }, + { "lat": 40.8489838, "lon": -73.9393501 }, + { "lat": 40.8489605, "lon": -73.9393464 }, + { "lat": 40.8489439, "lon": -73.9393409 }, + { "lat": 40.8489269, "lon": -73.9393324 }, + { "lat": 40.8489101, "lon": -73.9393199 }, + { "lat": 40.8488957, "lon": -73.9393038 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "lanes": "1", + "layer": "2", + "motor_vehicle": "private", + "oneway": "yes", + "surface": "concrete", + "turn:lanes": "left" + } +}, +{ + "type": "way", + "id": 1081036142, + "bounds": { + "minlat": 40.8485340, + "minlon": -73.9392371, + "maxlat": 40.8488607, + "maxlon": -73.9377348 + }, + "nodes": [ + 595473107, + 9908557526, + 9908557525, + 12069025545, + 595473110 + ], + "geometry": [ + { "lat": 40.8488607, "lon": -73.9392371 }, + { "lat": 40.8488442, "lon": -73.9391910 }, + { "lat": 40.8488299, "lon": -73.9391470 }, + { "lat": 40.8488187, "lon": -73.9391010 }, + { "lat": 40.8485340, "lon": -73.9377348 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "layer": "2", + "motor_vehicle": "private", + "oneway": "yes", + "surface": "concrete", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1081036143, + "bounds": { + "minlat": 40.8482190, + "minlon": -73.9373622, + "maxlat": 40.8488160, + "maxlon": -73.9365219 + }, + "nodes": [ + 595473578, + 595473595, + 595473603, + 9908557537, + 12069066472, + 595473649 + ], + "geometry": [ + { "lat": 40.8484472, "lon": -73.9373622 }, + { "lat": 40.8482190, "lon": -73.9368220 }, + { "lat": 40.8486245, "lon": -73.9365219 }, + { "lat": 40.8487961, "lon": -73.9369175 }, + { "lat": 40.8488059, "lon": -73.9369432 }, + { "lat": 40.8488160, "lon": -73.9369767 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "2", + "motor_vehicle": "private", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081037801, + "bounds": { + "minlat": 40.8468056, + "minlon": -73.9333038, + "maxlat": 40.8474152, + "maxlon": -73.9318532 + }, + "nodes": [ + 42442733, + 12077214222, + 12077214224, + 42455059 + ], + "geometry": [ + { "lat": 40.8468056, "lon": -73.9318532 }, + { "lat": 40.8468590, "lon": -73.9319803 }, + { "lat": 40.8473759, "lon": -73.9332102 }, + { "lat": 40.8474152, "lon": -73.9333038 } + ], + "tags": { + "destination": "G.W. Bridge;Fort Tryon Park;Cloisters Museum", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 179th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "179th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1081037805, + "bounds": { + "minlat": 40.8485765, + "minlon": -73.9391834, + "maxlat": 40.8486832, + "maxlon": -73.9386441 + }, + "nodes": [ + 60925950, + 9566938921, + 9908570824 + ], + "geometry": [ + { "lat": 40.8486832, "lon": -73.9391834 }, + { "lat": 40.8486619, "lon": -73.9390765 }, + { "lat": 40.8485765, "lon": -73.9386441 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "West 178th Street", + "name_1": "West 178 Street", + "oneway": "yes", + "ref": "US 9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "178th", + "tiger:name_base_1": "178", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033" + } +}, +{ + "type": "way", + "id": 1081037806, + "bounds": { + "minlat": 40.8486733, + "minlon": -73.9401528, + "maxlat": 40.8488344, + "maxlon": -73.9391834 + }, + "nodes": [ + 60926009, + 60925990, + 12065640518, + 9566938924, + 12065640519, + 12065640520, + 12065640521, + 60925950 + ], + "geometry": [ + { "lat": 40.8488344, "lon": -73.9401528 }, + { "lat": 40.8486792, "lon": -73.9393572 }, + { "lat": 40.8486754, "lon": -73.9393284 }, + { "lat": 40.8486733, "lon": -73.9392998 }, + { "lat": 40.8486739, "lon": -73.9392777 }, + { "lat": 40.8486748, "lon": -73.9392499 }, + { "lat": 40.8486779, "lon": -73.9392228 }, + { "lat": 40.8486832, "lon": -73.9391834 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 178th Street", + "oneway": "yes", + "rcn_ref": "9", + "ref": "US 9", + "surface": "asphalt", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 1081037809, + "bounds": { + "minlat": 40.8488159, + "minlon": -73.9411176, + "maxlat": 40.8490098, + "maxlon": -73.9410524 + }, + "nodes": [ + 9908570837, + 9908570836, + 8071760417, + 5048446875 + ], + "geometry": [ + { "lat": 40.8488159, "lon": -73.9411176 }, + { "lat": 40.8489289, "lon": -73.9410796 }, + { "lat": 40.8489553, "lon": -73.9410707 }, + { "lat": 40.8490098, "lon": -73.9410524 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Cabrini Boulevard", + "name:etymology:wikidata": "Q238983", + "oneway": "yes", + "rcn_ref": "9", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cabrini", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes": "right", + "wikidata": "Q5015842", + "wikipedia": "en:Cabrini Boulevard" + } +}, +{ + "type": "way", + "id": 1081039024, + "bounds": { + "minlat": 40.8408106, + "minlon": -73.9354807, + "maxlat": 40.8408796, + "maxlon": -73.9354706 + }, + "nodes": [ + 13319742506, + 9908577524 + ], + "geometry": [ + { "lat": 40.8408106, "lon": -73.9354706 }, + { "lat": 40.8408796, "lon": -73.9354807 } + ], + "tags": { + "alt_name": "Paul Robeson Boulevard", + "alt_name:en": "Officer Michael Buczek Avenue", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "description": "This honorary street name memorializes Paul Robeson.", + "description:de": "This honorary street name memorializes Officer Michael Buczek.", + "highway": "residential", + "historic": "memorial", + "name": "Edgecombe Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1081039026, + "bounds": { + "minlat": 40.8422438, + "minlon": -73.9388621, + "maxlat": 40.8422988, + "maxlon": -73.9388231 + }, + "nodes": [ + 42433041, + 9908577545 + ], + "geometry": [ + { "lat": 40.8422438, "lon": -73.9388621 }, + { "lat": 40.8422988, "lon": -73.9388231 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1081043339, + "bounds": { + "minlat": 40.8071758, + "minlon": -73.9242442, + "maxlat": 40.8078043, + "maxlon": -73.9238102 + }, + "nodes": [ + 42725346, + 9163759251, + 7672646853, + 7672646850, + 11882279938, + 42719455 + ], + "geometry": [ + { "lat": 40.8071758, "lon": -73.9242442 }, + { "lat": 40.8072594, "lon": -73.9242076 }, + { "lat": 40.8073495, "lon": -73.9241424 }, + { "lat": 40.8074954, "lon": -73.9240358 }, + { "lat": 40.8077439, "lon": -73.9238543 }, + { "lat": 40.8078043, "lon": -73.9238102 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "right" + } +}, +{ + "type": "way", + "id": 1081043340, + "bounds": { + "minlat": 40.8086486, + "minlon": -73.9231933, + "maxlat": 40.8091026, + "maxlon": -73.9228681 + }, + "nodes": [ + 9908621359, + 9908621360, + 42761233 + ], + "geometry": [ + { "lat": 40.8086486, "lon": -73.9231933 }, + { "lat": 40.8090191, "lon": -73.9229238 }, + { "lat": 40.8091026, "lon": -73.9228681 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1081043341, + "bounds": { + "minlat": 40.8091026, + "minlon": -73.9228681, + "maxlat": 40.8094700, + "maxlon": -73.9226092 + }, + "nodes": [ + 42761233, + 9908621361, + 9908621366 + ], + "geometry": [ + { "lat": 40.8091026, "lon": -73.9228681 }, + { "lat": 40.8091902, "lon": -73.9228093 }, + { "lat": 40.8094700, "lon": -73.9226092 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "through|right" + } +}, +{ + "type": "way", + "id": 1081043342, + "bounds": { + "minlat": 40.8094700, + "minlon": -73.9226092, + "maxlat": 40.8097761, + "maxlon": -73.9223837 + }, + "nodes": [ + 9908621366, + 11217140001, + 42761235 + ], + "geometry": [ + { "lat": 40.8094700, "lon": -73.9226092 }, + { "lat": 40.8097204, "lon": -73.9224248 }, + { "lat": 40.8097761, "lon": -73.9223837 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1081043343, + "bounds": { + "minlat": 40.8097761, + "minlon": -73.9223837, + "maxlat": 40.8100244, + "maxlon": -73.9222043 + }, + "nodes": [ + 42761235, + 11217140000, + 9908621375 + ], + "geometry": [ + { "lat": 40.8097761, "lon": -73.9223837 }, + { "lat": 40.8098363, "lon": -73.9223402 }, + { "lat": 40.8100244, "lon": -73.9222043 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "|right" + } +}, +{ + "type": "way", + "id": 1081043344, + "bounds": { + "minlat": 40.8100244, + "minlon": -73.9222043, + "maxlat": 40.8107638, + "maxlon": -73.9216654 + }, + "nodes": [ + 9908621375, + 9908621374, + 42761237, + 9908621380, + 9908621377 + ], + "geometry": [ + { "lat": 40.8100244, "lon": -73.9222043 }, + { "lat": 40.8103522, "lon": -73.9219673 }, + { "lat": 40.8104007, "lon": -73.9219307 }, + { "lat": 40.8104913, "lon": -73.9218645 }, + { "lat": 40.8107638, "lon": -73.9216654 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1081043345, + "bounds": { + "minlat": 40.8107638, + "minlon": -73.9216654, + "maxlat": 40.8110296, + "maxlon": -73.9214680 + }, + "nodes": [ + 9908621377, + 9908621376, + 42743425 + ], + "geometry": [ + { "lat": 40.8107638, "lon": -73.9216654 }, + { "lat": 40.8109556, "lon": -73.9215230 }, + { "lat": 40.8110296, "lon": -73.9214680 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1081043346, + "bounds": { + "minlat": 40.8110296, + "minlon": -73.9214680, + "maxlat": 40.8112912, + "maxlon": -73.9212797 + }, + "nodes": [ + 42743425, + 9908621382, + 9908621385 + ], + "geometry": [ + { "lat": 40.8110296, "lon": -73.9214680 }, + { "lat": 40.8110956, "lon": -73.9214216 }, + { "lat": 40.8112912, "lon": -73.9212797 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "|right" + } +}, +{ + "type": "way", + "id": 1081043347, + "bounds": { + "minlat": 40.8112912, + "minlon": -73.9212797, + "maxlat": 40.8119843, + "maxlon": -73.9207743 + }, + "nodes": [ + 9908621385, + 9908621387, + 42761241, + 9908621389, + 9908621390 + ], + "geometry": [ + { "lat": 40.8112912, "lon": -73.9212797 }, + { "lat": 40.8115781, "lon": -73.9210719 }, + { "lat": 40.8116518, "lon": -73.9210184 }, + { "lat": 40.8117201, "lon": -73.9209683 }, + { "lat": 40.8119843, "lon": -73.9207743 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1081043348, + "bounds": { + "minlat": 40.8119843, + "minlon": -73.9207743, + "maxlat": 40.8122532, + "maxlon": -73.9205759 + }, + "nodes": [ + 9908621390, + 9908621388, + 42733958 + ], + "geometry": [ + { "lat": 40.8119843, "lon": -73.9207743 }, + { "lat": 40.8121931, "lon": -73.9206210 }, + { "lat": 40.8122532, "lon": -73.9205759 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1081043349, + "bounds": { + "minlat": 40.8122532, + "minlon": -73.9205759, + "maxlat": 40.8125899, + "maxlon": -73.9203332 + }, + "nodes": [ + 42733958, + 11217139987, + 9908621394 + ], + "geometry": [ + { "lat": 40.8122532, "lon": -73.9205759 }, + { "lat": 40.8123438, "lon": -73.9205106 }, + { "lat": 40.8125899, "lon": -73.9203332 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "|right" + } +}, +{ + "type": "way", + "id": 1081043350, + "bounds": { + "minlat": 40.8135171, + "minlon": -73.9196479, + "maxlat": 40.8138123, + "maxlon": -73.9194295 + }, + "nodes": [ + 42761249, + 9908621403, + 9908621406 + ], + "geometry": [ + { "lat": 40.8135171, "lon": -73.9196479 }, + { "lat": 40.8135885, "lon": -73.9195951 }, + { "lat": 40.8138123, "lon": -73.9194295 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "|right" + } +}, +{ + "type": "way", + "id": 1081043351, + "bounds": { + "minlat": 40.8144879, + "minlon": -73.9189485, + "maxlat": 40.8147793, + "maxlon": -73.9187408 + }, + "nodes": [ + 9908621413, + 9908621414, + 7564284929 + ], + "geometry": [ + { "lat": 40.8144879, "lon": -73.9189485 }, + { "lat": 40.8147061, "lon": -73.9187926 }, + { "lat": 40.8147793, "lon": -73.9187408 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willis", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1081047124, + "bounds": { + "minlat": 40.8077491, + "minlon": -73.9295356, + "maxlat": 40.8080913, + "maxlon": -73.9292854 + }, + "nodes": [ + 9908636604, + 9908636601, + 42749813 + ], + "geometry": [ + { "lat": 40.8080913, "lon": -73.9292854 }, + { "lat": 40.8078254, "lon": -73.9294833 }, + { "lat": 40.8077491, "lon": -73.9295356 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Lincoln Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 1081047125, + "bounds": { + "minlat": 40.8080913, + "minlon": -73.9292854, + "maxlat": 40.8083858, + "maxlon": -73.9290658 + }, + "nodes": [ + 42749817, + 11597335040, + 9908636604 + ], + "geometry": [ + { "lat": 40.8083858, "lon": -73.9290658 }, + { "lat": 40.8083300, "lon": -73.9291074 }, + { "lat": 40.8080913, "lon": -73.9292854 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Lincoln Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 1081047126, + "bounds": { + "minlat": 40.8098909, + "minlon": -73.9279574, + "maxlat": 40.8100660, + "maxlon": -73.9278693 + }, + "nodes": [ + 9163759304, + 8706869342 + ], + "geometry": [ + { "lat": 40.8100660, "lon": -73.9278693 }, + { "lat": 40.8098909, "lon": -73.9279574 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lincoln Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1081047127, + "bounds": { + "minlat": 40.8065429, + "minlon": -73.9250268, + "maxlat": 40.8066532, + "maxlon": -73.9249892 + }, + "nodes": [ + 595801007, + 9908636616, + 9163759270, + 9163759269, + 9163759268, + 9908650917 + ], + "geometry": [ + { "lat": 40.8066532, "lon": -73.9249991 }, + { "lat": 40.8066330, "lon": -73.9249910 }, + { "lat": 40.8066136, "lon": -73.9249892 }, + { "lat": 40.8065966, "lon": -73.9249923 }, + { "lat": 40.8065795, "lon": -73.9250016 }, + { "lat": 40.8065429, "lon": -73.9250268 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Willis Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1081047128, + "bounds": { + "minlat": 40.8080090, + "minlon": -73.9276469, + "maxlat": 40.8082740, + "maxlon": -73.9271696 + }, + "nodes": [ + 471242600, + 250546965, + 9163759284 + ], + "geometry": [ + { "lat": 40.8080090, "lon": -73.9271696 }, + { "lat": 40.8081376, "lon": -73.9274147 }, + { "lat": 40.8082740, "lon": -73.9276469 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081176953, + "bounds": { + "minlat": 40.8145562, + "minlon": -74.0154297, + "maxlat": 40.8148008, + "maxlon": -74.0148487 + }, + "nodes": [ + 9909759202, + 9909759204, + 9909759205, + 9909759203 + ], + "geometry": [ + { "lat": 40.8145562, "lon": -74.0148487 }, + { "lat": 40.8146411, "lon": -74.0150501 }, + { "lat": 40.8147233, "lon": -74.0152454 }, + { "lat": 40.8148008, "lon": -74.0154297 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1081176954, + "bounds": { + "minlat": 40.8143035, + "minlon": -74.0155570, + "maxlat": 40.8147233, + "maxlon": -74.0152454 + }, + "nodes": [ + 9909759205, + 5994285508 + ], + "geometry": [ + { "lat": 40.8147233, "lon": -74.0152454 }, + { "lat": 40.8143035, "lon": -74.0155570 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081176955, + "bounds": { + "minlat": 40.8142231, + "minlon": -74.0153714, + "maxlat": 40.8146411, + "maxlon": -74.0150501 + }, + "nodes": [ + 9909759204, + 5994285510 + ], + "geometry": [ + { "lat": 40.8146411, "lon": -74.0150501 }, + { "lat": 40.8142231, "lon": -74.0153714 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081177738, + "bounds": { + "minlat": 40.7204937, + "minlon": -73.9853164, + "maxlat": 40.7210837, + "maxlon": -73.9850116 + }, + "nodes": [ + 9909731088, + 8231900987, + 42432073 + ], + "geometry": [ + { "lat": 40.7210837, "lon": -73.9850116 }, + { "lat": 40.7205425, "lon": -73.9852911 }, + { "lat": 40.7204937, "lon": -73.9853164 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Suffolk Street", + "name:etymology:wikidata": "Q23111", + "name:ko": "서퍽 스트리트", + "oneway": "yes", + "parking:lane": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081177739, + "bounds": { + "minlat": 40.7215727, + "minlon": -73.9847590, + "maxlat": 40.7217853, + "maxlon": -73.9846444 + }, + "nodes": [ + 42447435, + 1919595910, + 3783146158, + 9909731089 + ], + "geometry": [ + { "lat": 40.7217853, "lon": -73.9846444 }, + { "lat": 40.7216715, "lon": -73.9847057 }, + { "lat": 40.7215975, "lon": -73.9847456 }, + { "lat": 40.7215727, "lon": -73.9847590 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Suffolk Street", + "name:etymology:wikidata": "Q23111", + "name:ko": "서퍽 스트리트", + "oneway": "yes", + "parking:lane": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081178555, + "bounds": { + "minlat": 40.8340067, + "minlon": -74.0126128, + "maxlat": 40.8344408, + "maxlon": -74.0120979 + }, + "nodes": [ + 9909757188, + 9909757189, + 9909757190, + 9909757191, + 9909757192, + 9909757208, + 9909757193, + 9909757194, + 9909757195, + 9909757196, + 9909757197 + ], + "geometry": [ + { "lat": 40.8344408, "lon": -74.0123862 }, + { "lat": 40.8341417, "lon": -74.0126040 }, + { "lat": 40.8341182, "lon": -74.0126128 }, + { "lat": 40.8340995, "lon": -74.0126102 }, + { "lat": 40.8340861, "lon": -74.0125934 }, + { "lat": 40.8340171, "lon": -74.0124175 }, + { "lat": 40.8340089, "lon": -74.0123964 }, + { "lat": 40.8340067, "lon": -74.0123621 }, + { "lat": 40.8340156, "lon": -74.0123318 }, + { "lat": 40.8340359, "lon": -74.0123111 }, + { "lat": 40.8343157, "lon": -74.0120979 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1081178557, + "bounds": { + "minlat": 40.8336758, + "minlon": -74.0125974, + "maxlat": 40.8340171, + "maxlon": -74.0124175 + }, + "nodes": [ + 9909757208, + 9909757209, + 9909757210, + 9909757211, + 9909757212, + 9909757213 + ], + "geometry": [ + { "lat": 40.8340171, "lon": -74.0124175 }, + { "lat": 40.8337434, "lon": -74.0125921 }, + { "lat": 40.8337267, "lon": -74.0125974 }, + { "lat": 40.8337153, "lon": -74.0125930 }, + { "lat": 40.8337046, "lon": -74.0125806 }, + { "lat": 40.8336758, "lon": -74.0125169 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1081236452, + "bounds": { + "minlat": 40.7137922, + "minlon": -73.9997962, + "maxlat": 40.7139788, + "maxlon": -73.9996559 + }, + "nodes": [ + 9910234385, + 9910234387, + 9910234386 + ], + "geometry": [ + { "lat": 40.7139788, "lon": -73.9996559 }, + { "lat": 40.7139154, "lon": -73.9997037 }, + { "lat": 40.7137922, "lon": -73.9997962 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1081236777, + "bounds": { + "minlat": 40.7140254, + "minlon": -74.0003839, + "maxlat": 40.7142447, + "maxlon": -74.0002099 + }, + "nodes": [ + 9910222078, + 9910222080, + 11393290121, + 9910222079 + ], + "geometry": [ + { "lat": 40.7142447, "lon": -74.0002099 }, + { "lat": 40.7141795, "lon": -74.0002610 }, + { "lat": 40.7141044, "lon": -74.0003216 }, + { "lat": 40.7140254, "lon": -74.0003839 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1081238622, + "bounds": { + "minlat": 40.7169935, + "minlon": -73.9996006, + "maxlat": 40.7170840, + "maxlon": -73.9993442 + }, + "nodes": [ + 9910248819, + 9910248821, + 9910248820 + ], + "geometry": [ + { "lat": 40.7170840, "lon": -73.9996006 }, + { "lat": 40.7170611, "lon": -73.9995357 }, + { "lat": 40.7169935, "lon": -73.9993442 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081251360, + "bounds": { + "minlat": 40.8152570, + "minlon": -74.0185140, + "maxlat": 40.8156094, + "maxlon": -74.0177054 + }, + "nodes": [ + 9910336150, + 3740797444 + ], + "geometry": [ + { "lat": 40.8156094, "lon": -74.0185140 }, + { "lat": 40.8152570, "lon": -74.0177054 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1081251361, + "bounds": { + "minlat": 40.8149795, + "minlon": -74.0179289, + "maxlat": 40.8152570, + "maxlon": -74.0177054 + }, + "nodes": [ + 3740797444, + 9814310218, + 9910360531, + 9910360532, + 9814297615 + ], + "geometry": [ + { "lat": 40.8152570, "lon": -74.0177054 }, + { "lat": 40.8151119, "lon": -74.0178111 }, + { "lat": 40.8149980, "lon": -74.0178941 }, + { "lat": 40.8149847, "lon": -74.0179106 }, + { "lat": 40.8149795, "lon": -74.0179289 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1081251362, + "bounds": { + "minlat": 40.8146759, + "minlon": -74.0177054, + "maxlat": 40.8152570, + "maxlon": -74.0162277 + }, + "nodes": [ + 3740793573, + 9910336151, + 3740793572, + 9910336152, + 3740793574, + 9910336165, + 9910336153, + 3740797444 + ], + "geometry": [ + { "lat": 40.8147068, "lon": -74.0162277 }, + { "lat": 40.8146847, "lon": -74.0162633 }, + { "lat": 40.8146777, "lon": -74.0163035 }, + { "lat": 40.8146759, "lon": -74.0163532 }, + { "lat": 40.8146847, "lon": -74.0163998 }, + { "lat": 40.8150981, "lon": -74.0173428 }, + { "lat": 40.8151915, "lon": -74.0175559 }, + { "lat": 40.8152570, "lon": -74.0177054 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1081251363, + "bounds": { + "minlat": 40.8149606, + "minlon": -74.0176403, + "maxlat": 40.8151915, + "maxlon": -74.0173428 + }, + "nodes": [ + 9910336153, + 9910336154, + 9910336155, + 9910336156, + 9910336157, + 9910336158, + 9910336159, + 9910336160, + 9910336161, + 9910336162, + 9910336163, + 9910336164, + 9910336165 + ], + "geometry": [ + { "lat": 40.8151915, "lon": -74.0175559 }, + { "lat": 40.8150977, "lon": -74.0176275 }, + { "lat": 40.8150748, "lon": -74.0176369 }, + { "lat": 40.8150479, "lon": -74.0176403 }, + { "lat": 40.8150180, "lon": -74.0176329 }, + { "lat": 40.8149906, "lon": -74.0176088 }, + { "lat": 40.8149733, "lon": -74.0175806 }, + { "lat": 40.8149606, "lon": -74.0175340 }, + { "lat": 40.8149632, "lon": -74.0174921 }, + { "lat": 40.8149723, "lon": -74.0174565 }, + { "lat": 40.8149931, "lon": -74.0174270 }, + { "lat": 40.8150190, "lon": -74.0174022 }, + { "lat": 40.8150981, "lon": -74.0173428 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1081251364, + "bounds": { + "minlat": 40.8153296, + "minlon": -74.0187729, + "maxlat": 40.8156174, + "maxlon": -74.0185140 + }, + "nodes": [ + 9814297614, + 9910336169, + 9910336167, + 9910336168, + 9910336166, + 9814310217, + 9814297613, + 9910336172, + 9910336170, + 9910336171, + 9910336150 + ], + "geometry": [ + { "lat": 40.8153296, "lon": -74.0187593 }, + { "lat": 40.8153383, "lon": -74.0187692 }, + { "lat": 40.8153511, "lon": -74.0187729 }, + { "lat": 40.8153624, "lon": -74.0187714 }, + { "lat": 40.8153756, "lon": -74.0187642 }, + { "lat": 40.8154948, "lon": -74.0186732 }, + { "lat": 40.8156051, "lon": -74.0185905 }, + { "lat": 40.8156135, "lon": -74.0185752 }, + { "lat": 40.8156174, "lon": -74.0185565 }, + { "lat": 40.8156156, "lon": -74.0185367 }, + { "lat": 40.8156094, "lon": -74.0185140 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1081255680, + "bounds": { + "minlat": 40.7455153, + "minlon": -73.9894271, + "maxlat": 40.7457745, + "maxlon": -73.9890078 + }, + "nodes": [ + 2706940130, + 9906308441, + 9910391108, + 9910391105, + 9910391106, + 9910391109, + 2706940130 + ], + "geometry": [ + { "lat": 40.7456812, "lon": -73.9894271 }, + { "lat": 40.7457745, "lon": -73.9893603 }, + { "lat": 40.7456270, "lon": -73.9890078 }, + { "lat": 40.7455643, "lon": -73.9890537 }, + { "lat": 40.7455483, "lon": -73.9890157 }, + { "lat": 40.7455153, "lon": -73.9890392 }, + { "lat": 40.7456812, "lon": -73.9894271 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "landuse": "recreation_ground", + "leisure": "outdoor_seating" + } +}, +{ + "type": "way", + "id": 1081289698, + "bounds": { + "minlat": 40.7430994, + "minlon": -73.9168046, + "maxlat": 40.7433255, + "maxlon": -73.9167604 + }, + "nodes": [ + 9910693364, + 10743722570, + 276207582 + ], + "geometry": [ + { "lat": 40.7433255, "lon": -73.9167604 }, + { "lat": 40.7432122, "lon": -73.9167825 }, + { "lat": 40.7430994, "lon": -73.9168046 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "48th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081289699, + "bounds": { + "minlat": 40.7646160, + "minlon": -73.9377960, + "maxlat": 40.7648356, + "maxlon": -73.9376568 + }, + "nodes": [ + 42824080, + 6452522193, + 7059887697, + 9910693365 + ], + "geometry": [ + { "lat": 40.7646160, "lon": -73.9377960 }, + { "lat": 40.7646976, "lon": -73.9377452 }, + { "lat": 40.7647529, "lon": -73.9377107 }, + { "lat": 40.7648356, "lon": -73.9376568 } + ], + "tags": { + "highway": "residential", + "name": "11th Street" + } +}, +{ + "type": "way", + "id": 1081290492, + "bounds": { + "minlat": 40.8023147, + "minlon": -73.9146403, + "maxlat": 40.8031161, + "maxlon": -73.9127547 + }, + "nodes": [ + 42747203, + 9822828713, + 8285359935, + 8285359927, + 9908669934, + 42747208 + ], + "geometry": [ + { "lat": 40.8031161, "lon": -73.9146403 }, + { "lat": 40.8030715, "lon": -73.9145353 }, + { "lat": 40.8030377, "lon": -73.9144558 }, + { "lat": 40.8023708, "lon": -73.9128856 }, + { "lat": 40.8023488, "lon": -73.9128345 }, + { "lat": 40.8023147, "lon": -73.9127547 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 135th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "135th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1081290493, + "bounds": { + "minlat": 40.8016693, + "minlon": -73.9132303, + "maxlat": 40.8023147, + "maxlon": -73.9127547 + }, + "nodes": [ + 42747208, + 8285355486, + 9908669925, + 42750278 + ], + "geometry": [ + { "lat": 40.8023147, "lon": -73.9127547 }, + { "lat": 40.8017941, "lon": -73.9131361 }, + { "lat": 40.8017418, "lon": -73.9131756 }, + { "lat": 40.8016693, "lon": -73.9132303 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Willow Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willow", + "tiger:name_type": "Ave", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1081290494, + "bounds": { + "minlat": 40.8029387, + "minlon": -73.9136829, + "maxlat": 40.8035278, + "maxlon": -73.9122979 + }, + "nodes": [ + 42719481, + 9822828708, + 8285355494, + 8285355509, + 9822828711, + 42719483 + ], + "geometry": [ + { "lat": 40.8035278, "lon": -73.9136829 }, + { "lat": 40.8034902, "lon": -73.9135943 }, + { "lat": 40.8034528, "lon": -73.9135118 }, + { "lat": 40.8029919, "lon": -73.9124278 }, + { "lat": 40.8029720, "lon": -73.9123791 }, + { "lat": 40.8029387, "lon": -73.9122979 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 136th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "136th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1081290495, + "bounds": { + "minlat": 40.8023147, + "minlon": -73.9127547, + "maxlat": 40.8029387, + "maxlon": -73.9122979 + }, + "nodes": [ + 42719483, + 13039080762, + 42747208 + ], + "geometry": [ + { "lat": 40.8029387, "lon": -73.9122979 }, + { "lat": 40.8028857, "lon": -73.9123367 }, + { "lat": 40.8023147, "lon": -73.9127547 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Willow Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willow", + "tiger:name_type": "Ave", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1081290496, + "bounds": { + "minlat": 40.8035651, + "minlon": -73.9127450, + "maxlat": 40.8039522, + "maxlon": -73.9118468 + }, + "nodes": [ + 42737584, + 13018613949, + 8285359932, + 8285355491, + 9908669932, + 42737587 + ], + "geometry": [ + { "lat": 40.8039522, "lon": -73.9127450 }, + { "lat": 40.8039112, "lon": -73.9126560 }, + { "lat": 40.8038770, "lon": -73.9125817 }, + { "lat": 40.8036112, "lon": -73.9119554 }, + { "lat": 40.8035945, "lon": -73.9119161 }, + { "lat": 40.8035651, "lon": -73.9118468 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 137th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "137th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1081290497, + "bounds": { + "minlat": 40.8029387, + "minlon": -73.9122979, + "maxlat": 40.8035651, + "maxlon": -73.9118468 + }, + "nodes": [ + 42737587, + 13038955249, + 13039080761, + 42719483 + ], + "geometry": [ + { "lat": 40.8035651, "lon": -73.9118468 }, + { "lat": 40.8035081, "lon": -73.9118879 }, + { "lat": 40.8029975, "lon": -73.9122556 }, + { "lat": 40.8029387, "lon": -73.9122979 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Willow Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willow", + "tiger:name_type": "Ave", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1081290876, + "bounds": { + "minlat": 40.7213617, + "minlon": -74.0012081, + "maxlat": 40.7215333, + "maxlon": -74.0008510 + }, + "nodes": [ + 9910707287, + 9910707285, + 9910707284 + ], + "geometry": [ + { "lat": 40.7213617, "lon": -74.0008510 }, + { "lat": 40.7215029, "lon": -74.0011449 }, + { "lat": 40.7215333, "lon": -74.0012081 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1081290877, + "bounds": { + "minlat": 40.7213199, + "minlon": -74.0012461, + "maxlat": 40.7214885, + "maxlon": -74.0008878 + }, + "nodes": [ + 9910707279, + 9910707286, + 9910707280 + ], + "geometry": [ + { "lat": 40.7214885, "lon": -74.0012461 }, + { "lat": 40.7214586, "lon": -74.0011828 }, + { "lat": 40.7213199, "lon": -74.0008878 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1081290878, + "bounds": { + "minlat": 40.7212786, + "minlon": -74.0008878, + "maxlat": 40.7213617, + "maxlon": -74.0007647 + }, + "nodes": [ + 9910707280, + 9910707281, + 9910707282, + 9910707283, + 9910707287 + ], + "geometry": [ + { "lat": 40.7213199, "lon": -74.0008878 }, + { "lat": 40.7212910, "lon": -74.0008275 }, + { "lat": 40.7212786, "lon": -74.0008009 }, + { "lat": 40.7213202, "lon": -74.0007647 }, + { "lat": 40.7213617, "lon": -74.0008510 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1081291422, + "bounds": { + "minlat": 40.7222745, + "minlon": -74.0047102, + "maxlat": 40.7224088, + "maxlon": -74.0044476 + }, + "nodes": [ + 4387367047, + 9910686164, + 9910686163 + ], + "geometry": [ + { "lat": 40.7224088, "lon": -74.0047102 }, + { "lat": 40.7223812, "lon": -74.0046567 }, + { "lat": 40.7222745, "lon": -74.0044476 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081293184, + "bounds": { + "minlat": 40.7141484, + "minlon": -73.9961060, + "maxlat": 40.7143150, + "maxlon": -73.9960850 + }, + "nodes": [ + 9910698777, + 11504615972, + 9910698779, + 11504615893, + 9213186921 + ], + "geometry": [ + { "lat": 40.7141484, "lon": -73.9960850 }, + { "lat": 40.7142433, "lon": -73.9960969 }, + { "lat": 40.7142735, "lon": -73.9961007 }, + { "lat": 40.7142854, "lon": -73.9961022 }, + { "lat": 40.7143150, "lon": -73.9961060 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1081294472, + "bounds": { + "minlat": 40.8253935, + "minlon": -73.9234019, + "maxlat": 40.8256041, + "maxlon": -73.9232807 + }, + "nodes": [ + 2408448912, + 8251591982, + 9910729402 + ], + "geometry": [ + { "lat": 40.8253935, "lon": -73.9234019 }, + { "lat": 40.8254743, "lon": -73.9233553 }, + { "lat": 40.8256041, "lon": -73.9232807 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1081294473, + "bounds": { + "minlat": 40.8250735, + "minlon": -73.9235849, + "maxlat": 40.8253935, + "maxlon": -73.9234019 + }, + "nodes": [ + 9910729404, + 13036525625, + 12162740287, + 9910729403, + 2408448912 + ], + "geometry": [ + { "lat": 40.8250735, "lon": -73.9235849 }, + { "lat": 40.8251808, "lon": -73.9235238 }, + { "lat": 40.8252881, "lon": -73.9234626 }, + { "lat": 40.8253232, "lon": -73.9234422 }, + { "lat": 40.8253935, "lon": -73.9234019 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1081294474, + "bounds": { + "minlat": 40.8301135, + "minlon": -73.9287492, + "maxlat": 40.8301559, + "maxlon": -73.9284461 + }, + "nodes": [ + 595786252, + 7594160288 + ], + "geometry": [ + { "lat": 40.8301135, "lon": -73.9287492 }, + { "lat": 40.8301559, "lon": -73.9284461 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1081294475, + "bounds": { + "minlat": 40.8299650, + "minlon": -73.9299337, + "maxlat": 40.8300343, + "maxlon": -73.9293736 + }, + "nodes": [ + 42735968, + 9910738432, + 9910738449 + ], + "geometry": [ + { "lat": 40.8299650, "lon": -73.9299337 }, + { "lat": 40.8299838, "lon": -73.9297643 }, + { "lat": 40.8300343, "lon": -73.9293736 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1081297479, + "bounds": { + "minlat": 40.8278462, + "minlon": -73.9309062, + "maxlat": 40.8281748, + "maxlon": -73.9308122 + }, + "nodes": [ + 9166314448, + 9166314591, + 595779472 + ], + "geometry": [ + { "lat": 40.8278462, "lon": -73.9308122 }, + { "lat": 40.8279904, "lon": -73.9308512 }, + { "lat": 40.8281748, "lon": -73.9309062 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1081297480, + "bounds": { + "minlat": 40.8283273, + "minlon": -73.9311613, + "maxlat": 40.8283582, + "maxlon": -73.9309943 + }, + "nodes": [ + 9910769964, + 42725739 + ], + "geometry": [ + { "lat": 40.8283582, "lon": -73.9309943 }, + { "lat": 40.8283273, "lon": -73.9311613 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "ele": "2", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "layer": "2", + "maxspeed": "25 mph", + "name": "Macombs Dam Bridge", + "name:etymology:wikidata": "Q6724819", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs Dam", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 1081297481, + "bounds": { + "minlat": 40.8282886, + "minlon": -73.9314573, + "maxlat": 40.8283273, + "maxlon": -73.9311613 + }, + "nodes": [ + 42725739, + 9910769965, + 193868326 + ], + "geometry": [ + { "lat": 40.8283273, "lon": -73.9311613 }, + { "lat": 40.8282970, "lon": -73.9313896 }, + { "lat": 40.8282886, "lon": -73.9314573 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "ele": "2", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "layer": "2", + "maxspeed": "25 mph", + "name": "Macombs Dam Bridge", + "name:etymology:wikidata": "Q6724819", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs Dam", + "tiger:name_type": "Brg", + "tiger:reviewed": "no", + "turn:lanes:forward": "left||", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 1081297483, + "bounds": { + "minlat": 40.8296745, + "minlon": -73.9310689, + "maxlat": 40.8298538, + "maxlon": -73.9305504 + }, + "nodes": [ + 2912071100, + 9910769974, + 9910769975, + 9910769969 + ], + "geometry": [ + { "lat": 40.8298538, "lon": -73.9305504 }, + { "lat": 40.8297987, "lon": -73.9308226 }, + { "lat": 40.8297133, "lon": -73.9309926 }, + { "lat": 40.8296745, "lon": -73.9310689 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1081297484, + "bounds": { + "minlat": 40.8296024, + "minlon": -73.9310062, + "maxlat": 40.8298538, + "maxlon": -73.9305504 + }, + "nodes": [ + 595786274, + 9910769976, + 9910769973, + 2912071100 + ], + "geometry": [ + { "lat": 40.8296024, "lon": -73.9310062 }, + { "lat": 40.8296327, "lon": -73.9309432 }, + { "lat": 40.8297265, "lon": -73.9307555 }, + { "lat": 40.8298538, "lon": -73.9305504 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1081297487, + "bounds": { + "minlat": 40.8266887, + "minlon": -73.9297247, + "maxlat": 40.8267504, + "maxlon": -73.9294723 + }, + "nodes": [ + 13038755612, + 920581182, + 1932727598 + ], + "geometry": [ + { "lat": 40.8266887, "lon": -73.9297247 }, + { "lat": 40.8267142, "lon": -73.9295984 }, + { "lat": 40.8267504, "lon": -73.9294723 } + ], + "tags": { + "highway": "pedestrian", + "name": "Ruppert Place", + "name:etymology:wikidata": "Q6119204", + "surface": "paved", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "157th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1081297496, + "bounds": { + "minlat": 40.8250798, + "minlon": -73.9315039, + "maxlat": 40.8252565, + "maxlon": -73.9314780 + }, + "nodes": [ + 2611640931, + 2611640958, + 9166314421, + 2611640959 + ], + "geometry": [ + { "lat": 40.8252565, "lon": -73.9315039 }, + { "lat": 40.8251648, "lon": -73.9314953 }, + { "lat": 40.8251210, "lon": -73.9314884 }, + { "lat": 40.8250798, "lon": -73.9314780 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081297497, + "bounds": { + "minlat": 40.8246289, + "minlon": -73.9314780, + "maxlat": 40.8250798, + "maxlon": -73.9311040 + }, + "nodes": [ + 2611640959, + 595786281, + 9166314422, + 595786282, + 595786271 + ], + "geometry": [ + { "lat": 40.8250798, "lon": -73.9314780 }, + { "lat": 40.8250400, "lon": -73.9314636 }, + { "lat": 40.8249950, "lon": -73.9314379 }, + { "lat": 40.8249507, "lon": -73.9314062 }, + { "lat": 40.8246289, "lon": -73.9311040 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081562443, + "bounds": { + "minlat": 40.7762913, + "minlon": -73.9826824, + "maxlat": 40.7764671, + "maxlon": -73.9825557 + }, + "nodes": [ + 9912934227, + 9912934229, + 9912934228 + ], + "geometry": [ + { "lat": 40.7764671, "lon": -73.9825557 }, + { "lat": 40.7764120, "lon": -73.9825952 }, + { "lat": 40.7762913, "lon": -73.9826824 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1081627901, + "bounds": { + "minlat": 40.8486910, + "minlon": -74.0094863, + "maxlat": 40.8490530, + "maxlon": -74.0092227 + }, + "nodes": [ + 2468337428, + 2468337441, + 2468337366, + 2468337569, + 2468337393, + 2468337387, + 2468337587 + ], + "geometry": [ + { "lat": 40.8490530, "lon": -74.0092227 }, + { "lat": 40.8489591, "lon": -74.0092681 }, + { "lat": 40.8488916, "lon": -74.0092948 }, + { "lat": 40.8488003, "lon": -74.0093296 }, + { "lat": 40.8487518, "lon": -74.0093733 }, + { "lat": 40.8487116, "lon": -74.0094207 }, + { "lat": 40.8486910, "lon": -74.0094863 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1081634664, + "bounds": { + "minlat": 40.8465172, + "minlon": -74.0045941, + "maxlat": 40.8467513, + "maxlon": -74.0043632 + }, + "nodes": [ + 9913452844, + 9913452845 + ], + "geometry": [ + { "lat": 40.8467513, "lon": -74.0043632 }, + { "lat": 40.8465172, "lon": -74.0045941 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1081634669, + "bounds": { + "minlat": 40.8468236, + "minlon": -74.0051360, + "maxlat": 40.8470670, + "maxlon": -74.0047098 + }, + "nodes": [ + 9913452856, + 9913452857, + 9913452858, + 9913452859, + 9913452860, + 9913452861, + 9913452862 + ], + "geometry": [ + { "lat": 40.8469774, "lon": -74.0047098 }, + { "lat": 40.8470589, "lon": -74.0048502 }, + { "lat": 40.8470660, "lon": -74.0048696 }, + { "lat": 40.8470670, "lon": -74.0048837 }, + { "lat": 40.8470650, "lon": -74.0048968 }, + { "lat": 40.8470587, "lon": -74.0049082 }, + { "lat": 40.8468236, "lon": -74.0051360 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1081634670, + "bounds": { + "minlat": 40.8469238, + "minlon": -74.0053133, + "maxlat": 40.8470755, + "maxlon": -74.0052209 + }, + "nodes": [ + 7271026937, + 9913452863, + 9913452864, + 7271026938 + ], + "geometry": [ + { "lat": 40.8469238, "lon": -74.0053133 }, + { "lat": 40.8469904, "lon": -74.0052583 }, + { "lat": 40.8470124, "lon": -74.0052447 }, + { "lat": 40.8470755, "lon": -74.0052209 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1081634671, + "bounds": { + "minlat": 40.8471655, + "minlon": -74.0054148, + "maxlat": 40.8475812, + "maxlon": -74.0052460 + }, + "nodes": [ + 9913452869, + 9913452867 + ], + "geometry": [ + { "lat": 40.8471655, "lon": -74.0054148 }, + { "lat": 40.8475812, "lon": -74.0052460 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxheight": "7'0\"", + "service": "parking_aisle", + "surface": "paving_stones", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1081634672, + "bounds": { + "minlat": 40.8471563, + "minlon": -74.0051904, + "maxlat": 40.8472560, + "maxlon": -74.0051527 + }, + "nodes": [ + 9913452868, + 9913452865 + ], + "geometry": [ + { "lat": 40.8471563, "lon": -74.0051904 }, + { "lat": 40.8472560, "lon": -74.0051527 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1081634673, + "bounds": { + "minlat": 40.8470755, + "minlon": -74.0052209, + "maxlat": 40.8471563, + "maxlon": -74.0051904 + }, + "nodes": [ + 7271026938, + 9913452868 + ], + "geometry": [ + { "lat": 40.8470755, "lon": -74.0052209 }, + { "lat": 40.8471563, "lon": -74.0051904 } + ], + "tags": { + "highway": "service", + "maxheight": "7'0\"", + "service": "parking_aisle", + "surface": "paving_stones", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1081634674, + "bounds": { + "minlat": 40.8470159, + "minlon": -74.0054762, + "maxlat": 40.8471655, + "maxlon": -74.0054148 + }, + "nodes": [ + 9913452866, + 9913452869 + ], + "geometry": [ + { "lat": 40.8470159, "lon": -74.0054762 }, + { "lat": 40.8471655, "lon": -74.0054148 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1081634699, + "bounds": { + "minlat": 40.8477337, + "minlon": -74.0050272, + "maxlat": 40.8480325, + "maxlon": -74.0047394 + }, + "nodes": [ + 9913452949, + 9913452950 + ], + "geometry": [ + { "lat": 40.8480325, "lon": -74.0047394 }, + { "lat": 40.8477337, "lon": -74.0050272 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1081634700, + "bounds": { + "minlat": 40.8484929, + "minlon": -74.0050655, + "maxlat": 40.8486218, + "maxlon": -74.0046713 + }, + "nodes": [ + 9913452951, + 9913452952 + ], + "geometry": [ + { "lat": 40.8486218, "lon": -74.0050655 }, + { "lat": 40.8484929, "lon": -74.0046713 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1081634701, + "bounds": { + "minlat": 40.8491604, + "minlon": -74.0046996, + "maxlat": 40.8492853, + "maxlon": -74.0043012 + }, + "nodes": [ + 7940813660, + 7940813661 + ], + "geometry": [ + { "lat": 40.8492853, "lon": -74.0046996 }, + { "lat": 40.8491604, "lon": -74.0043012 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1081634702, + "bounds": { + "minlat": 40.8483283, + "minlon": -74.0047381, + "maxlat": 40.8483696, + "maxlon": -74.0046049 + }, + "nodes": [ + 9913452953, + 9913452954 + ], + "geometry": [ + { "lat": 40.8483283, "lon": -74.0046049 }, + { "lat": 40.8483696, "lon": -74.0047381 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1081648975, + "bounds": { + "minlat": 40.7422186, + "minlon": -73.9896577, + "maxlat": 40.7424535, + "maxlon": -73.9891071 + }, + "nodes": [ + 9913562560, + 10177727006, + 5147973331, + 10177726965, + 42428206 + ], + "geometry": [ + { "lat": 40.7424535, "lon": -73.9896577 }, + { "lat": 40.7423449, "lon": -73.9894032 }, + { "lat": 40.7423233, "lon": -73.9893526 }, + { "lat": 40.7422535, "lon": -73.9891889 }, + { "lat": 40.7422186, "lon": -73.9891071 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 24th Street", + "name:ru": "Западная 24-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1081651278, + "bounds": { + "minlat": 40.7323851, + "minlon": -73.9815944, + "maxlat": 40.7325841, + "maxlon": -73.9814480 + }, + "nodes": [ + 9913605317, + 4298757039, + 685164631 + ], + "geometry": [ + { "lat": 40.7323851, "lon": -73.9815944 }, + { "lat": 40.7325339, "lon": -73.9814854 }, + { "lat": 40.7325841, "lon": -73.9814480 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue Service Road", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081651279, + "bounds": { + "minlat": 40.7353308, + "minlon": -73.9796601, + "maxlat": 40.7359400, + "maxlon": -73.9790033 + }, + "nodes": [ + 3601295731, + 3601295738, + 9141016339, + 7136857054, + 3601295750, + 9141016338, + 3686061910, + 9913605327 + ], + "geometry": [ + { "lat": 40.7353308, "lon": -73.9796601 }, + { "lat": 40.7354290, "lon": -73.9794145 }, + { "lat": 40.7354459, "lon": -73.9793853 }, + { "lat": 40.7354651, "lon": -73.9793618 }, + { "lat": 40.7354875, "lon": -73.9793413 }, + { "lat": 40.7355135, "lon": -73.9793195 }, + { "lat": 40.7355935, "lon": -73.9792547 }, + { "lat": 40.7359400, "lon": -73.9790033 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081651280, + "bounds": { + "minlat": 40.7359400, + "minlon": -73.9790033, + "maxlat": 40.7361488, + "maxlon": -73.9788523 + }, + "nodes": [ + 9913605327, + 3686062426, + 3601295727 + ], + "geometry": [ + { "lat": 40.7359400, "lon": -73.9790033 }, + { "lat": 40.7360823, "lon": -73.9789005 }, + { "lat": 40.7361488, "lon": -73.9788523 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "oneway": "yes", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1081651281, + "bounds": { + "minlat": 40.7353029, + "minlon": -73.9755954, + "maxlat": 40.7354913, + "maxlon": -73.9751427 + }, + "nodes": [ + 9913605332, + 3601295768, + 3601295733 + ], + "geometry": [ + { "lat": 40.7354913, "lon": -73.9755954 }, + { "lat": 40.7353395, "lon": -73.9752296 }, + { "lat": 40.7353029, "lon": -73.9751427 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1081657907, + "bounds": { + "minlat": 40.7650392, + "minlon": -73.9461266, + "maxlat": 40.7654568, + "maxlon": -73.9455151 + }, + "nodes": [ + 11442895655, + 9913669048, + 9913669049 + ], + "geometry": [ + { "lat": 40.7651543, "lon": -73.9461266 }, + { "lat": 40.7650392, "lon": -73.9458687 }, + { "lat": 40.7654568, "lon": -73.9455151 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1081657908, + "bounds": { + "minlat": 40.7659174, + "minlon": -73.9462394, + "maxlat": 40.7659857, + "maxlon": -73.9461073 + }, + "nodes": [ + 42448852, + 3580758425 + ], + "geometry": [ + { "lat": 40.7659174, "lon": -73.9461073 }, + { "lat": 40.7659857, "lon": -73.9462394 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "15 mph", + "name": "River Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081657909, + "bounds": { + "minlat": 40.7647677, + "minlon": -73.9472354, + "maxlat": 40.7648205, + "maxlon": -73.9471386 + }, + "nodes": [ + 3569402548, + 42448850 + ], + "geometry": [ + { "lat": 40.7648205, "lon": -73.9472354 }, + { "lat": 40.7647677, "lon": -73.9471386 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "15 mph", + "name": "River Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081657910, + "bounds": { + "minlat": 40.7699401, + "minlon": -73.9408835, + "maxlat": 40.7700073, + "maxlon": -73.9408320 + }, + "nodes": [ + 3216637125, + 7529909890 + ], + "geometry": [ + { "lat": 40.7700073, "lon": -73.9408320 }, + { "lat": 40.7699401, "lon": -73.9408835 } + ], + "tags": { + "highway": "service", + "maxspeed": "15 mph", + "name": "East Road" + } +}, +{ + "type": "way", + "id": 1081657911, + "bounds": { + "minlat": 40.7703074, + "minlon": -73.9437867, + "maxlat": 40.7704079, + "maxlon": -73.9436706 + }, + "nodes": [ + 9913669142, + 5487813176 + ], + "geometry": [ + { "lat": 40.7704079, "lon": -73.9436706 }, + { "lat": 40.7703074, "lon": -73.9437867 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "10 mph", + "name": "West Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1081804717, + "bounds": { + "minlat": 40.7067997, + "minlon": -73.9585426, + "maxlat": 40.7072602, + "maxlon": -73.9584546 + }, + "nodes": [ + 42478008, + 6235394762, + 598033029 + ], + "geometry": [ + { "lat": 40.7072602, "lon": -73.9584546 }, + { "lat": 40.7071818, "lon": -73.9584720 }, + { "lat": 40.7067997, "lon": -73.9585426 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Williamsburg Street West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Williamsburg", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1081824061, + "bounds": { + "minlat": 40.7199234, + "minlon": -74.0032974, + "maxlat": 40.7204261, + "maxlon": -74.0025960 + }, + "nodes": [ + 42440820, + 8307641833, + 11658947738, + 8307641823, + 8996353563 + ], + "geometry": [ + { "lat": 40.7199234, "lon": -74.0025960 }, + { "lat": 40.7199609, "lon": -74.0026511 }, + { "lat": 40.7203902, "lon": -74.0032498 }, + { "lat": 40.7204226, "lon": -74.0032918 }, + { "lat": 40.7204261, "lon": -74.0032974 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1081844850, + "bounds": { + "minlat": 40.7685804, + "minlon": -73.9429344, + "maxlat": 40.7688389, + "maxlon": -73.9426639 + }, + "nodes": [ + 42448857, + 8265114831, + 10891946374, + 1241986599 + ], + "geometry": [ + { "lat": 40.7685804, "lon": -73.9426639 }, + { "lat": 40.7686393, "lon": -73.9427241 }, + { "lat": 40.7687334, "lon": -73.9428232 }, + { "lat": 40.7688389, "lon": -73.9429344 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "10 mph", + "name": "Main Street", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081844851, + "bounds": { + "minlat": 40.7688232, + "minlon": -73.9430953, + "maxlat": 40.7688389, + "maxlon": -73.9429344 + }, + "nodes": [ + 9915145350, + 9913669095, + 9913669096, + 8265114692, + 9913669097, + 9913669098, + 1241986599 + ], + "geometry": [ + { "lat": 40.7688361, "lon": -73.9430953 }, + { "lat": 40.7688280, "lon": -73.9430606 }, + { "lat": 40.7688238, "lon": -73.9430343 }, + { "lat": 40.7688232, "lon": -73.9430125 }, + { "lat": 40.7688235, "lon": -73.9429881 }, + { "lat": 40.7688288, "lon": -73.9429595 }, + { "lat": 40.7688389, "lon": -73.9429344 } + ], + "tags": { + "highway": "service", + "maxspeed": "10 mph", + "name": "The Octagon", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1081844852, + "bounds": { + "minlat": 40.7688389, + "minlon": -73.9431618, + "maxlat": 40.7690911, + "maxlon": -73.9429344 + }, + "nodes": [ + 1241986599, + 9913669099, + 9913669100, + 593428194 + ], + "geometry": [ + { "lat": 40.7688389, "lon": -73.9429344 }, + { "lat": 40.7690218, "lon": -73.9430962 }, + { "lat": 40.7690602, "lon": -73.9431289 }, + { "lat": 40.7690911, "lon": -73.9431618 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "10 mph", + "name": "Main Street", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081844853, + "bounds": { + "minlat": 40.7533795, + "minlon": -73.9584840, + "maxlat": 40.7534137, + "maxlon": -73.9584288 + }, + "nodes": [ + 9915145351, + 2300353428 + ], + "geometry": [ + { "lat": 40.7533795, "lon": -73.9584288 }, + { "lat": 40.7534137, "lon": -73.9584840 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "no", + "highway": "unclassified", + "lanes": "1", + "lcn": "yes", + "maxspeed": "15 mph", + "name": "South Loop Road", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Road 3", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1081844854, + "bounds": { + "minlat": 40.7593285, + "minlon": -73.9534095, + "maxlat": 40.7594178, + "maxlon": -73.9533338 + }, + "nodes": [ + 9915145353, + 5487049921, + 42448079 + ], + "geometry": [ + { "lat": 40.7593285, "lon": -73.9534095 }, + { "lat": 40.7593674, "lon": -73.9533800 }, + { "lat": 40.7594178, "lon": -73.9533338 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "lanes": "2", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "15 mph", + "name": "West Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1081844855, + "bounds": { + "minlat": 40.7615188, + "minlon": -73.9499971, + "maxlat": 40.7616784, + "maxlon": -73.9498417 + }, + "nodes": [ + 3785702996, + 3785702997, + 42427078, + 9913669033, + 8265114610, + 9913669034, + 42448838 + ], + "geometry": [ + { "lat": 40.7615188, "lon": -73.9499971 }, + { "lat": 40.7615433, "lon": -73.9499650 }, + { "lat": 40.7615702, "lon": -73.9499354 }, + { "lat": 40.7615900, "lon": -73.9499140 }, + { "lat": 40.7616211, "lon": -73.9498848 }, + { "lat": 40.7616508, "lon": -73.9498603 }, + { "lat": 40.7616784, "lon": -73.9498417 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1081844856, + "bounds": { + "minlat": 40.7616784, + "minlon": -73.9498417, + "maxlat": 40.7618105, + "maxlon": -73.9497680 + }, + "nodes": [ + 42448838, + 42448840, + 9915145354 + ], + "geometry": [ + { "lat": 40.7616784, "lon": -73.9498417 }, + { "lat": 40.7617057, "lon": -73.9498255 }, + { "lat": 40.7618105, "lon": -73.9497680 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1081844857, + "bounds": { + "minlat": 40.7673348, + "minlon": -73.9371757, + "maxlat": 40.7675601, + "maxlon": -73.9365529 + }, + "nodes": [ + 2459401775, + 2402842575, + 11101851189, + 2459401776, + 5538983375, + 8331997137, + 42826801 + ], + "geometry": [ + { "lat": 40.7675601, "lon": -73.9365529 }, + { "lat": 40.7675285, "lon": -73.9366440 }, + { "lat": 40.7675140, "lon": -73.9366838 }, + { "lat": 40.7674977, "lon": -73.9367284 }, + { "lat": 40.7674760, "lon": -73.9367895 }, + { "lat": 40.7673572, "lon": -73.9371151 }, + { "lat": 40.7673348, "lon": -73.9371757 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081844859, + "bounds": { + "minlat": 40.7675601, + "minlon": -73.9365529, + "maxlat": 40.7676918, + "maxlon": -73.9361838 + }, + "nodes": [ + 2796727177, + 2459401772, + 2459401775 + ], + "geometry": [ + { "lat": 40.7676918, "lon": -73.9361838 }, + { "lat": 40.7676564, "lon": -73.9362844 }, + { "lat": 40.7675601, "lon": -73.9365529 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "surface": "asphalt", + "turn:lanes:backward": "|right" + } +}, +{ + "type": "way", + "id": 1081844860, + "bounds": { + "minlat": 40.7620839, + "minlon": -73.9424065, + "maxlat": 40.7623070, + "maxlon": -73.9422737 + }, + "nodes": [ + 9915145364, + 3785702958 + ], + "geometry": [ + { "lat": 40.7623070, "lon": -73.9422737 }, + { "lat": 40.7620839, "lon": -73.9424065 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1081853985, + "bounds": { + "minlat": 40.7618768, + "minlon": -73.9425406, + "maxlat": 40.7619852, + "maxlon": -73.9424748 + }, + "nodes": [ + 3785702957, + 3785702959 + ], + "geometry": [ + { "lat": 40.7619852, "lon": -73.9424748 }, + { "lat": 40.7618768, "lon": -73.9425406 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "oneway": "no", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1081857543, + "bounds": { + "minlat": 40.8447590, + "minlon": -74.0050441, + "maxlat": 40.8448869, + "maxlon": -74.0048177 + }, + "nodes": [ + 9915262511, + 9915262512 + ], + "geometry": [ + { "lat": 40.8447590, "lon": -74.0048177 }, + { "lat": 40.8448869, "lon": -74.0050441 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1081857544, + "bounds": { + "minlat": 40.8449130, + "minlon": -74.0048993, + "maxlat": 40.8450408, + "maxlon": -74.0046679 + }, + "nodes": [ + 9915262513, + 9915262514 + ], + "geometry": [ + { "lat": 40.8449130, "lon": -74.0046679 }, + { "lat": 40.8450408, "lon": -74.0048993 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1081857638, + "bounds": { + "minlat": 40.8444554, + "minlon": -74.0049537, + "maxlat": 40.8445186, + "maxlon": -74.0045781 + }, + "nodes": [ + 9915262730, + 9915262731 + ], + "geometry": [ + { "lat": 40.8445186, "lon": -74.0049537 }, + { "lat": 40.8444554, "lon": -74.0045781 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081861195, + "bounds": { + "minlat": 40.7618768, + "minlon": -73.9430791, + "maxlat": 40.7620721, + "maxlon": -73.9425406 + }, + "nodes": [ + 3785702963, + 9915261984, + 3569402521, + 3785702959 + ], + "geometry": [ + { "lat": 40.7620721, "lon": -73.9430791 }, + { "lat": 40.7619322, "lon": -73.9426983 }, + { "lat": 40.7619188, "lon": -73.9426618 }, + { "lat": 40.7618768, "lon": -73.9425406 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "36th Avenue", + "oneway": "yes", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1081861196, + "bounds": { + "minlat": 40.7615662, + "minlon": -73.9427264, + "maxlat": 40.7618768, + "maxlon": -73.9425406 + }, + "nodes": [ + 3785702959, + 5538983368, + 5538983367 + ], + "geometry": [ + { "lat": 40.7618768, "lon": -73.9425406 }, + { "lat": 40.7618361, "lon": -73.9425641 }, + { "lat": 40.7615662, "lon": -73.9427264 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1081861197, + "bounds": { + "minlat": 40.7619852, + "minlon": -73.9424748, + "maxlat": 40.7620839, + "maxlon": -73.9424065 + }, + "nodes": [ + 3785702958, + 6452697941, + 3785702957 + ], + "geometry": [ + { "lat": 40.7620839, "lon": -73.9424065 }, + { "lat": 40.7620654, "lon": -73.9424185 }, + { "lat": 40.7619852, "lon": -73.9424748 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "oneway": "no", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1081861198, + "bounds": { + "minlat": 40.7619852, + "minlon": -73.9426019, + "maxlat": 40.7620172, + "maxlon": -73.9424748 + }, + "nodes": [ + 6452697943, + 3785702957 + ], + "geometry": [ + { "lat": 40.7620172, "lon": -73.9426019 }, + { "lat": 40.7619852, "lon": -73.9424748 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "maxspeed": "25 mph", + "name": "Roosevelt Island Bridge", + "sidewalk:left": "separate", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1081861200, + "bounds": { + "minlat": 40.7640008, + "minlon": -73.9474602, + "maxlat": 40.7640809, + "maxlon": -73.9474560 + }, + "nodes": [ + 5487813168, + 5212739096 + ], + "geometry": [ + { "lat": 40.7640809, "lon": -73.9474602 }, + { "lat": 40.7640008, "lon": -73.9474560 } + ], + "tags": { + "bridge": "yes", + "destination": "Island Access", + "highway": "service", + "lanes": "1", + "layer": "1", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1081861201, + "bounds": { + "minlat": 40.7634791, + "minlon": -73.9477440, + "maxlat": 40.7640684, + "maxlon": -73.9469736 + }, + "nodes": [ + 3569402536, + 9915262005, + 1241986504, + 9915262004, + 9051915209, + 9915262003, + 1241986702, + 9915262002, + 9051915210, + 9915262001, + 1241986701, + 9051915211, + 9915262000, + 1241986506, + 9915261999, + 1241986522, + 9051915212, + 9915261998, + 9051915213, + 9915261997, + 1241986505, + 9915261996, + 1241986636, + 9915261995, + 9051915214, + 9915261994, + 9915261993, + 1241986680, + 1241986446 + ], + "geometry": [ + { "lat": 40.7640684, "lon": -73.9475295 }, + { "lat": 40.7639190, "lon": -73.9476783 }, + { "lat": 40.7638929, "lon": -73.9476987 }, + { "lat": 40.7638695, "lon": -73.9477138 }, + { "lat": 40.7638407, "lon": -73.9477277 }, + { "lat": 40.7638081, "lon": -73.9477383 }, + { "lat": 40.7637736, "lon": -73.9477440 }, + { "lat": 40.7637406, "lon": -73.9477437 }, + { "lat": 40.7637059, "lon": -73.9477381 }, + { "lat": 40.7636707, "lon": -73.9477251 }, + { "lat": 40.7636350, "lon": -73.9477065 }, + { "lat": 40.7636008, "lon": -73.9476824 }, + { "lat": 40.7635739, "lon": -73.9476537 }, + { "lat": 40.7635466, "lon": -73.9476163 }, + { "lat": 40.7635238, "lon": -73.9475797 }, + { "lat": 40.7635058, "lon": -73.9475394 }, + { "lat": 40.7634919, "lon": -73.9474910 }, + { "lat": 40.7634842, "lon": -73.9474478 }, + { "lat": 40.7634791, "lon": -73.9474013 }, + { "lat": 40.7634793, "lon": -73.9473574 }, + { "lat": 40.7634840, "lon": -73.9473125 }, + { "lat": 40.7634917, "lon": -73.9472726 }, + { "lat": 40.7635048, "lon": -73.9472298 }, + { "lat": 40.7635208, "lon": -73.9471916 }, + { "lat": 40.7635402, "lon": -73.9471565 }, + { "lat": 40.7635603, "lon": -73.9471268 }, + { "lat": 40.7635842, "lon": -73.9471000 }, + { "lat": 40.7636117, "lon": -73.9470756 }, + { "lat": 40.7637282, "lon": -73.9469736 } + ], + "tags": { + "bridge": "yes", + "destination": "Exit to Queens", + "highway": "service", + "lanes": "1", + "layer": "1", + "maxspeed": "10 mph", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1081861202, + "bounds": { + "minlat": 40.7643651, + "minlon": -73.9470006, + "maxlat": 40.7645531, + "maxlon": -73.9468257 + }, + "nodes": [ + 3569402546, + 3569402541 + ], + "geometry": [ + { "lat": 40.7645531, "lon": -73.9468257 }, + { "lat": 40.7643651, "lon": -73.9470006 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "lanes": "3", + "layer": "1", + "maxspeed": "10 mph", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1081861203, + "bounds": { + "minlat": 40.7642973, + "minlon": -73.9467434, + "maxlat": 40.7644430, + "maxlon": -73.9466121 + }, + "nodes": [ + 9915286719, + 7966097307, + 3569402542 + ], + "geometry": [ + { "lat": 40.7642973, "lon": -73.9467434 }, + { "lat": 40.7643542, "lon": -73.9466910 }, + { "lat": 40.7644430, "lon": -73.9466121 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "lanes": "3", + "layer": "1", + "maxspeed": "10 mph", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1081876231, + "bounds": { + "minlat": 40.7076835, + "minlon": -73.9283512, + "maxlat": 40.7082840, + "maxlon": -73.9281846 + }, + "nodes": [ + 9915387868, + 9915387880, + 9915387873, + 9915387870, + 9915387869 + ], + "geometry": [ + { "lat": 40.7076835, "lon": -73.9281846 }, + { "lat": 40.7077501, "lon": -73.9282031 }, + { "lat": 40.7077920, "lon": -73.9282147 }, + { "lat": 40.7082095, "lon": -73.9283305 }, + { "lat": 40.7082840, "lon": -73.9283512 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1081876232, + "bounds": { + "minlat": 40.7077920, + "minlon": -73.9283305, + "maxlat": 40.7082452, + "maxlon": -73.9279859 + }, + "nodes": [ + 9915387870, + 9915387871, + 9915387872, + 9915387873 + ], + "geometry": [ + { "lat": 40.7082095, "lon": -73.9283305 }, + { "lat": 40.7082452, "lon": -73.9281059 }, + { "lat": 40.7078315, "lon": -73.9279859 }, + { "lat": 40.7077920, "lon": -73.9282147 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1081883660, + "bounds": { + "minlat": 40.7735510, + "minlon": -73.9815824, + "maxlat": 40.7736120, + "maxlon": -73.9814415 + }, + "nodes": [ + 5117991237, + 3718672443 + ], + "geometry": [ + { "lat": 40.7735510, "lon": -73.9814415 }, + { "lat": 40.7736120, "lon": -73.9815824 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 66th Street", + "name:ru": "Западная 66-я стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q4642229", + "wikipedia": "en:66th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1081883662, + "bounds": { + "minlat": 40.7717404, + "minlon": -73.9792016, + "maxlat": 40.7717854, + "maxlon": -73.9790541 + }, + "nodes": [ + 7802856365, + 7630577026 + ], + "geometry": [ + { "lat": 40.7717854, "lon": -73.9792016 }, + { "lat": 40.7717404, "lon": -73.9790541 } + ], + "tags": { + "alt_name": "Transverse Road 1", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "65th Street Transverse", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081883663, + "bounds": { + "minlat": 40.7741641, + "minlon": -73.9850078, + "maxlat": 40.7742359, + "maxlon": -73.9848524 + }, + "nodes": [ + 7050687051, + 42442415 + ], + "geometry": [ + { "lat": 40.7742359, "lon": -73.9850078 }, + { "lat": 40.7741641, "lon": -73.9848524 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 65th Street", + "name:ru": "Западная 65-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081883664, + "bounds": { + "minlat": 40.7753178, + "minlon": -73.9877140, + "maxlat": 40.7753734, + "maxlon": -73.9875786 + }, + "nodes": [ + 42430985, + 7595763588 + ], + "geometry": [ + { "lat": 40.7753734, "lon": -73.9877140 }, + { "lat": 40.7753178, "lon": -73.9875786 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 65th Street", + "name:ru": "Западная 65-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081893303, + "bounds": { + "minlat": 40.7708960, + "minlon": -73.9798514, + "maxlat": 40.7713495, + "maxlon": -73.9795207 + }, + "nodes": [ + 9915560877, + 7837165559, + 42435257, + 7837178992, + 9915560878 + ], + "geometry": [ + { "lat": 40.7708960, "lon": -73.9798514 }, + { "lat": 40.7711057, "lon": -73.9797004 }, + { "lat": 40.7711608, "lon": -73.9796589 }, + { "lat": 40.7712179, "lon": -73.9796159 }, + { "lat": 40.7713495, "lon": -73.9795207 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:right": "no", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1081893304, + "bounds": { + "minlat": 40.7684537, + "minlon": -73.9815303, + "maxlat": 40.7685525, + "maxlon": -73.9815179 + }, + "nodes": [ + 1792549686, + 6991124675, + 9446375824, + 9446375823, + 4347550054 + ], + "geometry": [ + { "lat": 40.7684537, "lon": -73.9815245 }, + { "lat": 40.7684736, "lon": -73.9815283 }, + { "lat": 40.7684955, "lon": -73.9815303 }, + { "lat": 40.7685172, "lon": -73.9815272 }, + { "lat": 40.7685525, "lon": -73.9815179 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "right|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1081895353, + "bounds": { + "minlat": 40.7816180, + "minlon": -73.9720367, + "maxlat": 40.7820388, + "maxlon": -73.9717224 + }, + "nodes": [ + 9915712168, + 9170771794, + 42427915 + ], + "geometry": [ + { "lat": 40.7816180, "lon": -73.9720367 }, + { "lat": 40.7819198, "lon": -73.9718126 }, + { "lat": 40.7820388, "lon": -73.9717224 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "||right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1081895354, + "bounds": { + "minlat": 40.7848398, + "minlon": -73.9696855, + "maxlat": 40.7852965, + "maxlon": -73.9693444 + }, + "nodes": [ + 9915712170, + 7106818624, + 7106818626 + ], + "geometry": [ + { "lat": 40.7848398, "lon": -73.9696855 }, + { "lat": 40.7852035, "lon": -73.9694094 }, + { "lat": 40.7852965, "lon": -73.9693444 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1081895355, + "bounds": { + "minlat": 40.7846230, + "minlon": -73.9698495, + "maxlat": 40.7848398, + "maxlon": -73.9696855 + }, + "nodes": [ + 42424851, + 7784826630, + 9915712170 + ], + "geometry": [ + { "lat": 40.7846230, "lon": -73.9698495 }, + { "lat": 40.7846848, "lon": -73.9698012 }, + { "lat": 40.7848398, "lon": -73.9696855 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through;left|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1081895356, + "bounds": { + "minlat": 40.7852965, + "minlon": -73.9693444, + "maxlat": 40.7859742, + "maxlon": -73.9688537 + }, + "nodes": [ + 7106818626, + 2539225339, + 7106818635, + 7106818623 + ], + "geometry": [ + { "lat": 40.7852965, "lon": -73.9693444 }, + { "lat": 40.7854012, "lon": -73.9692709 }, + { "lat": 40.7859234, "lon": -73.9688909 }, + { "lat": 40.7859742, "lon": -73.9688537 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1081926289, + "bounds": { + "minlat": 40.7942085, + "minlon": -73.9633047, + "maxlat": 40.7943717, + "maxlon": -73.9628541 + }, + "nodes": [ + 9915643014, + 7083286376, + 42425570 + ], + "geometry": [ + { "lat": 40.7943717, "lon": -73.9633047 }, + { "lat": 40.7942369, "lon": -73.9629807 }, + { "lat": 40.7942085, "lon": -73.9628541 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 100th Street", + "name:ru": "Западная 100-я стрит", + "name_1": "West 100 Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 1081926290, + "bounds": { + "minlat": 40.7954194, + "minlon": -73.9656255, + "maxlat": 40.7954860, + "maxlon": -73.9654994 + }, + "nodes": [ + 42443403, + 7083286370 + ], + "geometry": [ + { "lat": 40.7954860, "lon": -73.9656255 }, + { "lat": 40.7954194, "lon": -73.9654994 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 100th Street", + "name:ru": "Западная 100-я стрит", + "name_1": "West 100 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081976610, + "bounds": { + "minlat": 40.7915656, + "minlon": -73.9770873, + "maxlat": 40.7927220, + "maxlon": -73.9743043 + }, + "nodes": [ + 8687853812, + 9492542214, + 9492556607, + 42431067, + 9492556532, + 9916159527, + 8831843007, + 9168918325, + 42441535 + ], + "geometry": [ + { "lat": 40.7915656, "lon": -73.9743043 }, + { "lat": 40.7920187, "lon": -73.9753736 }, + { "lat": 40.7920331, "lon": -73.9754076 }, + { "lat": 40.7920832, "lon": -73.9755293 }, + { "lat": 40.7921348, "lon": -73.9756566 }, + { "lat": 40.7922539, "lon": -73.9759408 }, + { "lat": 40.7926782, "lon": -73.9769455 }, + { "lat": 40.7926903, "lon": -73.9769773 }, + { "lat": 40.7927220, "lon": -73.9770873 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 91st Street", + "name:ru": "Западная 91-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1081976612, + "bounds": { + "minlat": 40.7908320, + "minlon": -73.9743043, + "maxlat": 40.7915656, + "maxlon": -73.9725593 + }, + "nodes": [ + 8687882636, + 42442492, + 8687882632, + 7004379683, + 1061531731, + 42428695, + 8687853812 + ], + "geometry": [ + { "lat": 40.7908320, "lon": -73.9725593 }, + { "lat": 40.7908816, "lon": -73.9726774 }, + { "lat": 40.7909398, "lon": -73.9728170 }, + { "lat": 40.7914020, "lon": -73.9739147 }, + { "lat": 40.7914466, "lon": -73.9740219 }, + { "lat": 40.7915225, "lon": -73.9742027 }, + { "lat": 40.7915656, "lon": -73.9743043 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "5 mph", + "name": "West 91st Street", + "name:ru": "Западная 91-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1081976616, + "bounds": { + "minlat": 40.7902424, + "minlon": -73.9747804, + "maxlat": 40.7909289, + "maxlon": -73.9731431 + }, + "nodes": [ + 10060611744, + 42428689, + 1061531682, + 7004379684, + 9916159531, + 10060593489, + 42437052 + ], + "geometry": [ + { "lat": 40.7909289, "lon": -73.9747804 }, + { "lat": 40.7908834, "lon": -73.9746726 }, + { "lat": 40.7908085, "lon": -73.9744941 }, + { "lat": 40.7907624, "lon": -73.9743833 }, + { "lat": 40.7903204, "lon": -73.9733300 }, + { "lat": 40.7902970, "lon": -73.9732769 }, + { "lat": 40.7902424, "lon": -73.9731431 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "name": "West 90th Street", + "name:ru": "Западная 90-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081976618, + "bounds": { + "minlat": 40.7859742, + "minlon": -73.9688537, + "maxlat": 40.7866050, + "maxlon": -73.9683927 + }, + "nodes": [ + 7106818623, + 7106818620, + 9796827004, + 7106818627 + ], + "geometry": [ + { "lat": 40.7859742, "lon": -73.9688537 }, + { "lat": 40.7860311, "lon": -73.9688136 }, + { "lat": 40.7865517, "lon": -73.9684311 }, + { "lat": 40.7866050, "lon": -73.9683927 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1081976620, + "bounds": { + "minlat": 40.7903702, + "minlon": -73.9657660, + "maxlat": 40.7904200, + "maxlon": -73.9656483 + }, + "nodes": [ + 7123525306, + 42435323 + ], + "geometry": [ + { "lat": 40.7904200, "lon": -73.9657660 }, + { "lat": 40.7903702, "lon": -73.9656483 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081976622, + "bounds": { + "minlat": 40.7904200, + "minlon": -73.9658405, + "maxlat": 40.7904514, + "maxlon": -73.9657660 + }, + "nodes": [ + 9916159534, + 7123525306 + ], + "geometry": [ + { "lat": 40.7904514, "lon": -73.9658405 }, + { "lat": 40.7904200, "lon": -73.9657660 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "material": "brick", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1081976623, + "bounds": { + "minlat": 40.7904514, + "minlon": -73.9679888, + "maxlat": 40.7913595, + "maxlon": -73.9658405 + }, + "nodes": [ + 3114292143, + 9916159534 + ], + "geometry": [ + { "lat": 40.7913595, "lon": -73.9679888 }, + { "lat": 40.7904514, "lon": -73.9658405 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081976624, + "bounds": { + "minlat": 40.7913595, + "minlon": -73.9683518, + "maxlat": 40.7915130, + "maxlon": -73.9679888 + }, + "nodes": [ + 3718670414, + 3114292143 + ], + "geometry": [ + { "lat": 40.7915130, "lon": -73.9683518 }, + { "lat": 40.7913595, "lon": -73.9679888 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "material": "brick", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1081976625, + "bounds": { + "minlat": 40.7915130, + "minlon": -73.9685964, + "maxlat": 40.7916163, + "maxlon": -73.9683518 + }, + "nodes": [ + 7792793734, + 42436985, + 3718670414 + ], + "geometry": [ + { "lat": 40.7916163, "lon": -73.9685964 }, + { "lat": 40.7915736, "lon": -73.9684954 }, + { "lat": 40.7915130, "lon": -73.9683518 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081976626, + "bounds": { + "minlat": 40.7916163, + "minlon": -73.9687300, + "maxlat": 40.7916725, + "maxlon": -73.9685964 + }, + "nodes": [ + 9916159535, + 7792793734 + ], + "geometry": [ + { "lat": 40.7916725, "lon": -73.9687300 }, + { "lat": 40.7916163, "lon": -73.9685964 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "material": "brick", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1081976627, + "bounds": { + "minlat": 40.7916725, + "minlon": -73.9694439, + "maxlat": 40.7919731, + "maxlon": -73.9687300 + }, + "nodes": [ + 9916159537, + 9916159535 + ], + "geometry": [ + { "lat": 40.7919731, "lon": -73.9694439 }, + { "lat": 40.7916725, "lon": -73.9687300 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081976628, + "bounds": { + "minlat": 40.7919731, + "minlon": -73.9696369, + "maxlat": 40.7920544, + "maxlon": -73.9694439 + }, + "nodes": [ + 9916159536, + 9916159537 + ], + "geometry": [ + { "lat": 40.7920544, "lon": -73.9696369 }, + { "lat": 40.7919731, "lon": -73.9694439 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "material": "brick", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1081976629, + "bounds": { + "minlat": 40.7920544, + "minlon": -73.9705234, + "maxlat": 40.7924276, + "maxlon": -73.9696369 + }, + "nodes": [ + 9916159539, + 9916159536 + ], + "geometry": [ + { "lat": 40.7924276, "lon": -73.9705234 }, + { "lat": 40.7920544, "lon": -73.9696369 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081976630, + "bounds": { + "minlat": 40.7924276, + "minlon": -73.9706551, + "maxlat": 40.7924830, + "maxlon": -73.9705234 + }, + "nodes": [ + 9916159538, + 9916159539 + ], + "geometry": [ + { "lat": 40.7924830, "lon": -73.9706551 }, + { "lat": 40.7924276, "lon": -73.9705234 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "material": "brick", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1081976631, + "bounds": { + "minlat": 40.7924830, + "minlon": -73.9711209, + "maxlat": 40.7926791, + "maxlon": -73.9706551 + }, + "nodes": [ + 9916159540, + 9916159538 + ], + "geometry": [ + { "lat": 40.7926791, "lon": -73.9711209 }, + { "lat": 40.7924830, "lon": -73.9706551 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1081976633, + "bounds": { + "minlat": 40.7926791, + "minlon": -73.9711972, + "maxlat": 40.7927109, + "maxlon": -73.9711209 + }, + "nodes": [ + 8687882685, + 9916159540 + ], + "geometry": [ + { "lat": 40.7927109, "lon": -73.9711972 }, + { "lat": 40.7926791, "lon": -73.9711209 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "material": "brick", + "maxspeed": "25 mph", + "name": "West 94th Street", + "name:ru": "Западная 94-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1081977532, + "bounds": { + "minlat": 40.8060655, + "minlon": -73.9875702, + "maxlat": 40.8063508, + "maxlon": -73.9869351 + }, + "nodes": [ + 1256269854, + 3480327293, + 9861373204, + 3480318392, + 1256269850 + ], + "geometry": [ + { "lat": 40.8063508, "lon": -73.9869351 }, + { "lat": 40.8060954, "lon": -73.9871141 }, + { "lat": 40.8060697, "lon": -73.9871883 }, + { "lat": 40.8060655, "lon": -73.9872654 }, + { "lat": 40.8061827, "lon": -73.9875702 } + ], + "tags": { + "hgv": "no", + "highway": "residential", + "name": "The Promenade" + } +}, +{ + "type": "way", + "id": 1081978812, + "bounds": { + "minlat": 40.7882037, + "minlon": -73.9783631, + "maxlat": 40.7882660, + "maxlon": -73.9783146 + }, + "nodes": [ + 42431034, + 8727756052 + ], + "geometry": [ + { "lat": 40.7882037, "lon": -73.9783631 }, + { "lat": 40.7882660, "lon": -73.9783146 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1081978814, + "bounds": { + "minlat": 40.7842620, + "minlon": -73.9812367, + "maxlat": 40.7843536, + "maxlon": -73.9811697 + }, + "nodes": [ + 8727756099, + 42431019 + ], + "geometry": [ + { "lat": 40.7842620, "lon": -73.9812367 }, + { "lat": 40.7843536, "lon": -73.9811697 } + ], + "tags": { + "goods": "no", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West End Avenue", + "name:ru": "Вест-Энд-авеню", + "network": "lcn", + "oneway": "no", + "route": "bicycle", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1082072647, + "bounds": { + "minlat": 40.7494479, + "minlon": -73.9915630, + "maxlat": 40.7497060, + "maxlon": -73.9909497 + }, + "nodes": [ + 42439440, + 9414480621, + 4960503202 + ], + "geometry": [ + { "lat": 40.7497060, "lon": -73.9915630 }, + { "lat": 40.7496545, "lon": -73.9914413 }, + { "lat": 40.7494479, "lon": -73.9909497 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "layer": "0", + "maxspeed": "25 mph", + "name": "West 32nd Street", + "name:ru": "Западная 32-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1082158173, + "bounds": { + "minlat": 40.8255848, + "minlon": -73.9188800, + "maxlat": 40.8257251, + "maxlon": -73.9184587 + }, + "nodes": [ + 7029503717, + 7847666901, + 42735824 + ], + "geometry": [ + { "lat": 40.8257251, "lon": -73.9188800 }, + { "lat": 40.8256210, "lon": -73.9185620 }, + { "lat": 40.8255848, "lon": -73.9184587 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes:forward": "through;left|through", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1082158174, + "bounds": { + "minlat": 40.8254376, + "minlon": -73.9184587, + "maxlat": 40.8255848, + "maxlon": -73.9180035 + }, + "nodes": [ + 42735824, + 9910723152, + 9917683043 + ], + "geometry": [ + { "lat": 40.8255848, "lon": -73.9184587 }, + { "lat": 40.8255501, "lon": -73.9183561 }, + { "lat": 40.8254376, "lon": -73.9180035 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes:backward": "left|", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1082158175, + "bounds": { + "minlat": 40.8250014, + "minlon": -73.9180035, + "maxlat": 40.8254376, + "maxlon": -73.9166222 + }, + "nodes": [ + 9917683043, + 9917683044, + 7257137831, + 5540161854, + 9910723151, + 42748162 + ], + "geometry": [ + { "lat": 40.8254376, "lon": -73.9180035 }, + { "lat": 40.8254162, "lon": -73.9179366 }, + { "lat": 40.8252091, "lon": -73.9172878 }, + { "lat": 40.8250858, "lon": -73.9168894 }, + { "lat": 40.8250295, "lon": -73.9167110 }, + { "lat": 40.8250014, "lon": -73.9166222 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1082158176, + "bounds": { + "minlat": 40.8248635, + "minlon": -73.9166222, + "maxlat": 40.8250014, + "maxlon": -73.9160850 + }, + "nodes": [ + 42748162, + 42748167, + 42748169 + ], + "geometry": [ + { "lat": 40.8250014, "lon": -73.9166222 }, + { "lat": 40.8248953, "lon": -73.9162587 }, + { "lat": 40.8248635, "lon": -73.9160850 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1082158177, + "bounds": { + "minlat": 40.8243698, + "minlon": -73.9160850, + "maxlat": 40.8248635, + "maxlon": -73.9144034 + }, + "nodes": [ + 42748169, + 9917683045, + 9910723148, + 9917683049, + 42748171, + 9917683050, + 9917683057 + ], + "geometry": [ + { "lat": 40.8248635, "lon": -73.9160850 }, + { "lat": 40.8248491, "lon": -73.9160123 }, + { "lat": 40.8248391, "lon": -73.9159573 }, + { "lat": 40.8247372, "lon": -73.9155998 }, + { "lat": 40.8247137, "lon": -73.9155174 }, + { "lat": 40.8246865, "lon": -73.9154291 }, + { "lat": 40.8243698, "lon": -73.9144034 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1082158178, + "bounds": { + "minlat": 40.8241974, + "minlon": -73.9144034, + "maxlat": 40.8243698, + "maxlon": -73.9138450 + }, + "nodes": [ + 9917683057, + 13703009847, + 9917683058, + 42748174 + ], + "geometry": [ + { "lat": 40.8243698, "lon": -73.9144034 }, + { "lat": 40.8243102, "lon": -73.9142108 }, + { "lat": 40.8242330, "lon": -73.9139571 }, + { "lat": 40.8241974, "lon": -73.9138450 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1082158179, + "bounds": { + "minlat": 40.8240134, + "minlon": -73.9138450, + "maxlat": 40.8241974, + "maxlon": -73.9132578 + }, + "nodes": [ + 42748174, + 12039986445, + 9917683059 + ], + "geometry": [ + { "lat": 40.8241974, "lon": -73.9138450 }, + { "lat": 40.8241612, "lon": -73.9137296 }, + { "lat": 40.8240134, "lon": -73.9132578 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes:backward": "left|through;right", + "turn:lanes:forward": "|merge_to_right", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1082158180, + "bounds": { + "minlat": 40.8240696, + "minlon": -73.9091596, + "maxlat": 40.8242269, + "maxlon": -73.9087114 + }, + "nodes": [ + 9917683085, + 9917683080, + 2827501292 + ], + "geometry": [ + { "lat": 40.8242269, "lon": -73.9091596 }, + { "lat": 40.8241222, "lon": -73.9088442 }, + { "lat": 40.8240696, "lon": -73.9087114 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 163rd Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456", + "turn:lanes:forward": "left;through|through|" + } +}, +{ + "type": "way", + "id": 1082158181, + "bounds": { + "minlat": 40.8243317, + "minlon": -73.9097214, + "maxlat": 40.8244096, + "maxlon": -73.9094750 + }, + "nodes": [ + 7557648828, + 7557648830 + ], + "geometry": [ + { "lat": 40.8244096, "lon": -73.9097214 }, + { "lat": 40.8243317, "lon": -73.9094750 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 163rd Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1082158182, + "bounds": { + "minlat": 40.8248590, + "minlon": -73.9114115, + "maxlat": 40.8252307, + "maxlon": -73.9112930 + }, + "nodes": [ + 42739733, + 9917683089, + 12757328264 + ], + "geometry": [ + { "lat": 40.8248590, "lon": -73.9112930 }, + { "lat": 40.8249329, "lon": -73.9113168 }, + { "lat": 40.8252307, "lon": -73.9114115 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Brook Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "left" + } +}, +{ + "type": "way", + "id": 1082158183, + "bounds": { + "minlat": 40.8238243, + "minlon": -73.9087114, + "maxlat": 40.8240696, + "maxlon": -73.9077479 + }, + "nodes": [ + 2827501292, + 9917683090, + 7397544479, + 9917683091, + 42739751 + ], + "geometry": [ + { "lat": 40.8240696, "lon": -73.9087114 }, + { "lat": 40.8240272, "lon": -73.9085718 }, + { "lat": 40.8239235, "lon": -73.9081520 }, + { "lat": 40.8238403, "lon": -73.9078183 }, + { "lat": 40.8238243, "lon": -73.9077479 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 163rd Street", + "oneway": "no", + "sidewalk": "both", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1082158185, + "bounds": { + "minlat": 40.8233463, + "minlon": -73.9077479, + "maxlat": 40.8238243, + "maxlon": -73.9057567 + }, + "nodes": [ + 42739751, + 9917683092, + 9917683094, + 42735050, + 9917683097, + 9917683098, + 42739755 + ], + "geometry": [ + { "lat": 40.8238243, "lon": -73.9077479 }, + { "lat": 40.8238077, "lon": -73.9076808 }, + { "lat": 40.8236059, "lon": -73.9068448 }, + { "lat": 40.8235846, "lon": -73.9067539 }, + { "lat": 40.8235661, "lon": -73.9066747 }, + { "lat": 40.8233717, "lon": -73.9058631 }, + { "lat": 40.8233463, "lon": -73.9057567 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 163rd Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "163rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1082173921, + "bounds": { + "minlat": 40.8127721, + "minlon": -73.9072527, + "maxlat": 40.8128587, + "maxlon": -73.9068368 + }, + "nodes": [ + 9917835160, + 5430150043, + 9917835163, + 42768288 + ], + "geometry": [ + { "lat": 40.8127721, "lon": -73.9068368 }, + { "lat": 40.8127854, "lon": -73.9069035 }, + { "lat": 40.8128417, "lon": -73.9071716 }, + { "lat": 40.8128587, "lon": -73.9072527 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|right" + } +}, +{ + "type": "way", + "id": 1082173922, + "bounds": { + "minlat": 40.8130536, + "minlon": -73.9086158, + "maxlat": 40.8131466, + "maxlon": -73.9081620 + }, + "nodes": [ + 42755244, + 9917835168, + 5430150040, + 9917835169 + ], + "geometry": [ + { "lat": 40.8130536, "lon": -73.9081620 }, + { "lat": 40.8130717, "lon": -73.9082507 }, + { "lat": 40.8131345, "lon": -73.9085584 }, + { "lat": 40.8131466, "lon": -73.9086158 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through|right" + } +}, +{ + "type": "way", + "id": 1082173923, + "bounds": { + "minlat": 40.8131466, + "minlon": -73.9090809, + "maxlat": 40.8132432, + "maxlon": -73.9086158 + }, + "nodes": [ + 9917835169, + 5430150039, + 9917835173, + 42764638 + ], + "geometry": [ + { "lat": 40.8131466, "lon": -73.9086158 }, + { "lat": 40.8131586, "lon": -73.9086732 }, + { "lat": 40.8132240, "lon": -73.9089883 }, + { "lat": 40.8132432, "lon": -73.9090809 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|" + } +}, +{ + "type": "way", + "id": 1082173924, + "bounds": { + "minlat": 40.8132432, + "minlon": -73.9095318, + "maxlat": 40.8133357, + "maxlon": -73.9090809 + }, + "nodes": [ + 42764638, + 9917835172, + 7669422135, + 9917835174 + ], + "geometry": [ + { "lat": 40.8132432, "lon": -73.9090809 }, + { "lat": 40.8132609, "lon": -73.9091671 }, + { "lat": 40.8132823, "lon": -73.9092717 }, + { "lat": 40.8133357, "lon": -73.9095318 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through|right" + } +}, +{ + "type": "way", + "id": 1082173925, + "bounds": { + "minlat": 40.8133357, + "minlon": -73.9100285, + "maxlat": 40.8134383, + "maxlon": -73.9095318 + }, + "nodes": [ + 9917835174, + 7669422139, + 9917835175, + 42774181 + ], + "geometry": [ + { "lat": 40.8133357, "lon": -73.9095318 }, + { "lat": 40.8133701, "lon": -73.9096996 }, + { "lat": 40.8134180, "lon": -73.9099304 }, + { "lat": 40.8134383, "lon": -73.9100285 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1082173926, + "bounds": { + "minlat": 40.8134383, + "minlon": -73.9105427, + "maxlat": 40.8135446, + "maxlon": -73.9100285 + }, + "nodes": [ + 42774181, + 9917835176, + 5430150038, + 9917835182 + ], + "geometry": [ + { "lat": 40.8134383, "lon": -73.9100285 }, + { "lat": 40.8134563, "lon": -73.9101150 }, + { "lat": 40.8134861, "lon": -73.9102583 }, + { "lat": 40.8135446, "lon": -73.9105427 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through|right" + } +}, +{ + "type": "way", + "id": 1082173927, + "bounds": { + "minlat": 40.8138956, + "minlon": -73.9122260, + "maxlat": 40.8140349, + "maxlon": -73.9118102 + }, + "nodes": [ + 42756063, + 9917835185, + 5430145102, + 9903127482 + ], + "geometry": [ + { "lat": 40.8138956, "lon": -73.9118102 }, + { "lat": 40.8139205, "lon": -73.9118846 }, + { "lat": 40.8139855, "lon": -73.9120791 }, + { "lat": 40.8140349, "lon": -73.9122260 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:backward": "through|right" + } +}, +{ + "type": "way", + "id": 1082179001, + "bounds": { + "minlat": 40.8191085, + "minlon": -73.9293411, + "maxlat": 40.8191488, + "maxlon": -73.9292073 + }, + "nodes": [ + 4207899735, + 9903127440, + 9903127437 + ], + "geometry": [ + { "lat": 40.8191085, "lon": -73.9292073 }, + { "lat": 40.8191331, "lon": -73.9292889 }, + { "lat": 40.8191488, "lon": -73.9293411 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk": "right", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455" + } +}, +{ + "type": "way", + "id": 1082226579, + "bounds": { + "minlat": 40.8535741, + "minlon": -73.9205959, + "maxlat": 40.8537624, + "maxlon": -73.9204182 + }, + "nodes": [ + 9918291019, + 9918291018, + 595750836 + ], + "geometry": [ + { "lat": 40.8535741, "lon": -73.9205959 }, + { "lat": 40.8536868, "lon": -73.9204896 }, + { "lat": 40.8537624, "lon": -73.9204182 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Matthewson Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Matthewson", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1082226580, + "bounds": { + "minlat": 40.8536989, + "minlon": -73.9208287, + "maxlat": 40.8538439, + "maxlon": -73.9204182 + }, + "nodes": [ + 595750836, + 9918291020, + 12058067227, + 9918291021, + 12058067226, + 9918291022, + 9918291023, + 42781084, + 9918291024, + 9918291025, + 9918291026 + ], + "geometry": [ + { "lat": 40.8537624, "lon": -73.9204182 }, + { "lat": 40.8538165, "lon": -73.9205185 }, + { "lat": 40.8538270, "lon": -73.9205432 }, + { "lat": 40.8538350, "lon": -73.9205671 }, + { "lat": 40.8538411, "lon": -73.9205916 }, + { "lat": 40.8538439, "lon": -73.9206200 }, + { "lat": 40.8538412, "lon": -73.9206539 }, + { "lat": 40.8538311, "lon": -73.9206857 }, + { "lat": 40.8538166, "lon": -73.9207138 }, + { "lat": 40.8538006, "lon": -73.9207333 }, + { "lat": 40.8536989, "lon": -73.9208287 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "maxspeed": "25 mph", + "name": "West Tremont Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 1082226581, + "bounds": { + "minlat": 40.8535741, + "minlon": -73.9208287, + "maxlat": 40.8536989, + "maxlon": -73.9205959 + }, + "nodes": [ + 9918291026, + 9918291030, + 12058062052, + 13068308641, + 9918291019 + ], + "geometry": [ + { "lat": 40.8536989, "lon": -73.9208287 }, + { "lat": 40.8536276, "lon": -73.9206963 }, + { "lat": 40.8536103, "lon": -73.9206639 }, + { "lat": 40.8535914, "lon": -73.9206284 }, + { "lat": 40.8535741, "lon": -73.9205959 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "maxspeed": "25 mph", + "name": "West Tremont Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 1082226582, + "bounds": { + "minlat": 40.8525071, + "minlon": -73.9215760, + "maxlat": 40.8538291, + "maxlon": -73.9203503 + }, + "nodes": [ + 12058067239, + 12058067238, + 9918291028, + 12058107123 + ], + "geometry": [ + { "lat": 40.8525071, "lon": -73.9215760 }, + { "lat": 40.8526862, "lon": -73.9214288 }, + { "lat": 40.8533225, "lon": -73.9208281 }, + { "lat": 40.8538291, "lon": -73.9203503 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1082226583, + "bounds": { + "minlat": 40.8533638, + "minlon": -73.9210262, + "maxlat": 40.8536482, + "maxlon": -73.9208763 + }, + "nodes": [ + 12058062054, + 12058067228, + 12058067233, + 12058067236, + 12058067234, + 12058067235, + 9918291027, + 12058067232, + 12058067231, + 12058067230, + 12058067229, + 9918291029 + ], + "geometry": [ + { "lat": 40.8536482, "lon": -73.9208763 }, + { "lat": 40.8535194, "lon": -73.9209965 }, + { "lat": 40.8535059, "lon": -73.9210072 }, + { "lat": 40.8534905, "lon": -73.9210175 }, + { "lat": 40.8534743, "lon": -73.9210243 }, + { "lat": 40.8534609, "lon": -73.9210262 }, + { "lat": 40.8534483, "lon": -73.9210234 }, + { "lat": 40.8534339, "lon": -73.9210151 }, + { "lat": 40.8534212, "lon": -73.9210016 }, + { "lat": 40.8534056, "lon": -73.9209780 }, + { "lat": 40.8533909, "lon": -73.9209531 }, + { "lat": 40.8533638, "lon": -73.9209036 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1082226586, + "bounds": { + "minlat": 40.8520677, + "minlon": -73.9224838, + "maxlat": 40.8522101, + "maxlon": -73.9222875 + }, + "nodes": [ + 9918291041, + 9918291042, + 12057681788, + 9918291043, + 9918291044, + 12057681787, + 9918291045, + 12057681789, + 12057681790, + 1396354599 + ], + "geometry": [ + { "lat": 40.8521243, "lon": -73.9222875 }, + { "lat": 40.8522101, "lon": -73.9224438 }, + { "lat": 40.8521803, "lon": -73.9224706 }, + { "lat": 40.8521687, "lon": -73.9224788 }, + { "lat": 40.8521565, "lon": -73.9224831 }, + { "lat": 40.8521438, "lon": -73.9224838 }, + { "lat": 40.8521299, "lon": -73.9224815 }, + { "lat": 40.8521166, "lon": -73.9224750 }, + { "lat": 40.8521032, "lon": -73.9224655 }, + { "lat": 40.8520677, "lon": -73.9224400 } + ], + "tags": { + "access": "private", + "bridge": "yes", + "highway": "service", + "layer": "1", + "maxspeed": "5 mph", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1082428983, + "bounds": { + "minlat": 40.8504067, + "minlon": -73.9070489, + "maxlat": 40.8504472, + "maxlon": -73.9069824 + }, + "nodes": [ + 2028361285, + 9920174006 + ], + "geometry": [ + { "lat": 40.8504067, "lon": -73.9069824 }, + { "lat": 40.8504472, "lon": -73.9070489 } + ], + "tags": { + "foot": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 1082428984, + "bounds": { + "minlat": 40.8504660, + "minlon": -73.9072767, + "maxlat": 40.8506287, + "maxlon": -73.9069227 + }, + "nodes": [ + 2028361261, + 2028361253, + 9920174013, + 2028361249 + ], + "geometry": [ + { "lat": 40.8504660, "lon": -73.9069227 }, + { "lat": 40.8505117, "lon": -73.9069900 }, + { "lat": 40.8505883, "lon": -73.9071538 }, + { "lat": 40.8506287, "lon": -73.9072767 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 1082428985, + "bounds": { + "minlat": 40.8500703, + "minlon": -73.9070040, + "maxlat": 40.8503855, + "maxlon": -73.9066977 + }, + "nodes": [ + 2028361257, + 9920174007, + 4635132294 + ], + "geometry": [ + { "lat": 40.8503855, "lon": -73.9070040 }, + { "lat": 40.8503493, "lon": -73.9069774 }, + { "lat": 40.8500703, "lon": -73.9066977 } + ], + "tags": { + "foot": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 1082428986, + "bounds": { + "minlat": 40.8503289, + "minlon": -73.9070603, + "maxlat": 40.8503855, + "maxlon": -73.9070040 + }, + "nodes": [ + 2028361257, + 2028361251 + ], + "geometry": [ + { "lat": 40.8503855, "lon": -73.9070040 }, + { "lat": 40.8503289, "lon": -73.9070603 } + ], + "tags": { + "highway": "residential", + "name": "Creston Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Creston", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1082428987, + "bounds": { + "minlat": 40.8504472, + "minlon": -73.9072767, + "maxlat": 40.8506287, + "maxlon": -73.9070489 + }, + "nodes": [ + 2028361249, + 9920174006 + ], + "geometry": [ + { "lat": 40.8506287, "lon": -73.9072767 }, + { "lat": 40.8504472, "lon": -73.9070489 } + ], + "tags": { + "cycleway": "no", + "foot": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "no", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 1082428988, + "bounds": { + "minlat": 40.8506287, + "minlon": -73.9074056, + "maxlat": 40.8507091, + "maxlon": -73.9072767 + }, + "nodes": [ + 2028328020, + 9920174012, + 2028361249 + ], + "geometry": [ + { "lat": 40.8507091, "lon": -73.9074056 }, + { "lat": 40.8506611, "lon": -73.9073263 }, + { "lat": 40.8506287, "lon": -73.9072767 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 1082428989, + "bounds": { + "minlat": 40.8507091, + "minlon": -73.9076281, + "maxlat": 40.8508433, + "maxlon": -73.9074056 + }, + "nodes": [ + 42735771, + 12832556082, + 2028328020 + ], + "geometry": [ + { "lat": 40.8508433, "lon": -73.9076281 }, + { "lat": 40.8507851, "lon": -73.9075400 }, + { "lat": 40.8507091, "lon": -73.9074056 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East Tremont Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tremont", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "wikidata": "Q54933087", + "wikipedia": "en:Tremont Avenue" + } +}, +{ + "type": "way", + "id": 1082428990, + "bounds": { + "minlat": 40.8508433, + "minlon": -73.9076281, + "maxlat": 40.8549635, + "maxlon": -73.9039715 + }, + "nodes": [ + 42735771, + 12739101052, + 2028327990, + 13031091954, + 42735774, + 13031091951, + 10117419120, + 13016926975, + 42735777, + 12748250477, + 10093776742, + 10093776799, + 13031114118, + 42735778 + ], + "geometry": [ + { "lat": 40.8508433, "lon": -73.9076281 }, + { "lat": 40.8509416, "lon": -73.9075933 }, + { "lat": 40.8509687, "lon": -73.9075814 }, + { "lat": 40.8517547, "lon": -73.9068693 }, + { "lat": 40.8518080, "lon": -73.9068210 }, + { "lat": 40.8518692, "lon": -73.9067654 }, + { "lat": 40.8524001, "lon": -73.9062828 }, + { "lat": 40.8530791, "lon": -73.9056657 }, + { "lat": 40.8531490, "lon": -73.9056020 }, + { "lat": 40.8532263, "lon": -73.9055314 }, + { "lat": 40.8543527, "lon": -73.9045028 }, + { "lat": 40.8545770, "lon": -73.9043077 }, + { "lat": 40.8549161, "lon": -73.9040127 }, + { "lat": 40.8549635, "lon": -73.9039715 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Morris Avenue", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1082604723, + "bounds": { + "minlat": 40.7506609, + "minlon": -73.9411693, + "maxlat": 40.7507653, + "maxlon": -73.9409255 + }, + "nodes": [ + 9921707303, + 6785945701 + ], + "geometry": [ + { "lat": 40.7507653, "lon": -73.9411693 }, + { "lat": 40.7506609, "lon": -73.9409255 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxheight": "below_default", + "name": "Queens Plaza South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1083065555, + "bounds": { + "minlat": 40.7125587, + "minlon": -74.0006826, + "maxlat": 40.7127844, + "maxlon": -74.0000711 + }, + "nodes": [ + 1730318401, + 9925815181, + 9942189795, + 9942189796, + 9942189797, + 11399612968, + 1730318428 + ], + "geometry": [ + { "lat": 40.7126790, "lon": -74.0006826 }, + { "lat": 40.7127778, "lon": -74.0002168 }, + { "lat": 40.7127844, "lon": -74.0001818 }, + { "lat": 40.7127748, "lon": -74.0001510 }, + { "lat": 40.7127572, "lon": -74.0001389 }, + { "lat": 40.7126812, "lon": -74.0001130 }, + { "lat": 40.7125587, "lon": -74.0000711 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1083121352, + "bounds": { + "minlat": 40.8580400, + "minlon": -73.9752738, + "maxlat": 40.8591693, + "maxlon": -73.9746883 + }, + "nodes": [ + 76464365, + 13759310527, + 299127839, + 13758734100, + 7921569525, + 76464366, + 7921569550, + 76464367, + 76464368, + 7921569542, + 76464369 + ], + "geometry": [ + { "lat": 40.8591693, "lon": -73.9752738 }, + { "lat": 40.8590393, "lon": -73.9752505 }, + { "lat": 40.8589379, "lon": -73.9752267 }, + { "lat": 40.8588505, "lon": -73.9751998 }, + { "lat": 40.8587661, "lon": -73.9751673 }, + { "lat": 40.8586370, "lon": -73.9751103 }, + { "lat": 40.8585098, "lon": -73.9750434 }, + { "lat": 40.8583854, "lon": -73.9749670 }, + { "lat": 40.8582655, "lon": -73.9748822 }, + { "lat": 40.8581514, "lon": -73.9747896 }, + { "lat": 40.8580400, "lon": -73.9746883 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge Plaza", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "hov:lanes": "|||designated", + "lanes": "4", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1083430083, + "bounds": { + "minlat": 40.8574212, + "minlon": -73.9818950, + "maxlat": 40.8575114, + "maxlon": -73.9817905 + }, + "nodes": [ + 9928818978, + 9928818979 + ], + "geometry": [ + { "lat": 40.8575114, "lon": -73.9817905 }, + { "lat": 40.8574212, "lon": -73.9818950 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1083430084, + "bounds": { + "minlat": 40.8573723, + "minlon": -73.9819507, + "maxlat": 40.8574212, + "maxlon": -73.9818950 + }, + "nodes": [ + 9928818979, + 9928818980 + ], + "geometry": [ + { "lat": 40.8574212, "lon": -73.9818950 }, + { "lat": 40.8573723, "lon": -73.9819507 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1083430085, + "bounds": { + "minlat": 40.8575114, + "minlon": -73.9817905, + "maxlat": 40.8575531, + "maxlon": -73.9817442 + }, + "nodes": [ + 7634718718, + 9928818978 + ], + "geometry": [ + { "lat": 40.8575531, "lon": -73.9817442 }, + { "lat": 40.8575114, "lon": -73.9817905 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1083470575, + "bounds": { + "minlat": 40.8559287, + "minlon": -73.9671434, + "maxlat": 40.8560920, + "maxlon": -73.9670447 + }, + "nodes": [ + 2565327512, + 5108595002 + ], + "geometry": [ + { "lat": 40.8559287, "lon": -73.9671434 }, + { "lat": 40.8560920, "lon": -73.9670447 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1083470576, + "bounds": { + "minlat": 40.8556576, + "minlon": -73.9689609, + "maxlat": 40.8563288, + "maxlon": -73.9673028 + }, + "nodes": [ + 5108595018, + 5108595003, + 5108595010, + 5108595012, + 5108595009, + 5921527282, + 5108595000, + 5108595008, + 5108595007, + 5108595005, + 5108595011, + 5108595004, + 5108595017, + 5108595013 + ], + "geometry": [ + { "lat": 40.8561885, "lon": -73.9673028 }, + { "lat": 40.8562601, "lon": -73.9674985 }, + { "lat": 40.8563288, "lon": -73.9676813 }, + { "lat": 40.8562622, "lon": -73.9677514 }, + { "lat": 40.8559545, "lon": -73.9679397 }, + { "lat": 40.8559068, "lon": -73.9679730 }, + { "lat": 40.8558839, "lon": -73.9680109 }, + { "lat": 40.8558909, "lon": -73.9680840 }, + { "lat": 40.8560411, "lon": -73.9685037 }, + { "lat": 40.8560421, "lon": -73.9685627 }, + { "lat": 40.8560345, "lon": -73.9685998 }, + { "lat": 40.8560071, "lon": -73.9686427 }, + { "lat": 40.8559290, "lon": -73.9687151 }, + { "lat": 40.8556576, "lon": -73.9689609 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1083470577, + "bounds": { + "minlat": 40.8557111, + "minlon": -73.9675373, + "maxlat": 40.8558072, + "maxlon": -73.9672749 + }, + "nodes": [ + 5108595001, + 4207161477 + ], + "geometry": [ + { "lat": 40.8558072, "lon": -73.9675373 }, + { "lat": 40.8557111, "lon": -73.9672749 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1083470578, + "bounds": { + "minlat": 40.8558608, + "minlon": -73.9671434, + "maxlat": 40.8559287, + "maxlon": -73.9669533 + }, + "nodes": [ + 2565327507, + 2565327512 + ], + "geometry": [ + { "lat": 40.8558608, "lon": -73.9669533 }, + { "lat": 40.8559287, "lon": -73.9671434 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1084022187, + "bounds": { + "minlat": 40.8210540, + "minlon": -73.9829434, + "maxlat": 40.8211899, + "maxlon": -73.9827132 + }, + "nodes": [ + 103150182, + 103150184 + ], + "geometry": [ + { "lat": 40.8210540, "lon": -73.9827132 }, + { "lat": 40.8211899, "lon": -73.9829434 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Oakdene", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 1084033950, + "bounds": { + "minlat": 40.7168584, + "minlon": -74.0064105, + "maxlat": 40.7170784, + "maxlon": -74.0062368 + }, + "nodes": [ + 5216470721, + 8312361658, + 42452817 + ], + "geometry": [ + { "lat": 40.7168584, "lon": -74.0064105 }, + { "lat": 40.7170147, "lon": -74.0062871 }, + { "lat": 40.7170784, "lon": -74.0062368 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "structure", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1084139383, + "bounds": { + "minlat": 40.7281884, + "minlon": -73.9976480, + "maxlat": 40.7282983, + "maxlon": -73.9974154 + }, + "nodes": [ + 9934776539, + 9934776562, + 2550551620 + ], + "geometry": [ + { "lat": 40.7282983, "lon": -73.9976480 }, + { "lat": 40.7282713, "lon": -73.9975903 }, + { "lat": 40.7281884, "lon": -73.9974154 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1084235588, + "bounds": { + "minlat": 40.7184426, + "minlon": -73.9406048, + "maxlat": 40.7185346, + "maxlon": -73.9405092 + }, + "nodes": [ + 9935605425, + 9935590211, + 9935590210, + 9935605427, + 9935590209, + 9935590208, + 9935605426, + 9935590207, + 9935590206, + 9935605425 + ], + "geometry": [ + { "lat": 40.7185193, "lon": -73.9405529 }, + { "lat": 40.7184530, "lon": -73.9406048 }, + { "lat": 40.7184429, "lon": -73.9406011 }, + { "lat": 40.7184432, "lon": -73.9405380 }, + { "lat": 40.7184426, "lon": -73.9405159 }, + { "lat": 40.7184487, "lon": -73.9405092 }, + { "lat": 40.7184885, "lon": -73.9405178 }, + { "lat": 40.7185331, "lon": -73.9405243 }, + { "lat": 40.7185346, "lon": -73.9405401 }, + { "lat": 40.7185193, "lon": -73.9405529 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete:plates", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 1084481683, + "bounds": { + "minlat": 40.7219327, + "minlon": -73.9410991, + "maxlat": 40.7222806, + "maxlon": -73.9410334 + }, + "nodes": [ + 42476656, + 9937834480, + 10825900617, + 42476536 + ], + "geometry": [ + { "lat": 40.7222806, "lon": -73.9410898 }, + { "lat": 40.7221954, "lon": -73.9410960 }, + { "lat": 40.7220781, "lon": -73.9410991 }, + { "lat": 40.7219327, "lon": -73.9410334 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1084633290, + "bounds": { + "minlat": 40.7035328, + "minlon": -74.0139887, + "maxlat": 40.7035745, + "maxlon": -74.0139868 + }, + "nodes": [ + 9939135574, + 9939135573, + 9939135571 + ], + "geometry": [ + { "lat": 40.7035745, "lon": -74.0139868 }, + { "lat": 40.7035506, "lon": -74.0139879 }, + { "lat": 40.7035328, "lon": -74.0139887 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1084633291, + "bounds": { + "minlat": 40.7036345, + "minlon": -74.0137064, + "maxlat": 40.7036916, + "maxlon": -74.0137056 + }, + "nodes": [ + 9939135582, + 9939135581, + 9939135575 + ], + "geometry": [ + { "lat": 40.7036345, "lon": -74.0137064 }, + { "lat": 40.7036466, "lon": -74.0137062 }, + { "lat": 40.7036916, "lon": -74.0137056 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1084633292, + "bounds": { + "minlat": 40.7036359, + "minlon": -74.0137671, + "maxlat": 40.7036930, + "maxlon": -74.0137649 + }, + "nodes": [ + 9939135580, + 9939135579, + 9939135576 + ], + "geometry": [ + { "lat": 40.7036359, "lon": -74.0137671 }, + { "lat": 40.7036478, "lon": -74.0137667 }, + { "lat": 40.7036930, "lon": -74.0137649 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1084633293, + "bounds": { + "minlat": 40.7036617, + "minlon": -74.0139073, + "maxlat": 40.7036961, + "maxlon": -74.0139059 + }, + "nodes": [ + 9939135585, + 7687295648 + ], + "geometry": [ + { "lat": 40.7036617, "lon": -74.0139073 }, + { "lat": 40.7036961, "lon": -74.0139059 } + ], + "tags": { + "access": "private", + "highway": "service", + "incline": "down", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1084633294, + "bounds": { + "minlat": 40.7035745, + "minlon": -74.0139868, + "maxlat": 40.7036116, + "maxlon": -74.0139852 + }, + "nodes": [ + 9939135572, + 9939135574 + ], + "geometry": [ + { "lat": 40.7036116, "lon": -74.0139852 }, + { "lat": 40.7035745, "lon": -74.0139868 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1084633295, + "bounds": { + "minlat": 40.7036398, + "minlon": -74.0139082, + "maxlat": 40.7036617, + "maxlon": -74.0139073 + }, + "nodes": [ + 9939135583, + 7687295647, + 9939135585 + ], + "geometry": [ + { "lat": 40.7036398, "lon": -74.0139082 }, + { "lat": 40.7036511, "lon": -74.0139077 }, + { "lat": 40.7036617, "lon": -74.0139073 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1084633296, + "bounds": { + "minlat": 40.7036082, + "minlon": -74.0137683, + "maxlat": 40.7036359, + "maxlon": -74.0137671 + }, + "nodes": [ + 9939135578, + 9939135580 + ], + "geometry": [ + { "lat": 40.7036082, "lon": -74.0137683 }, + { "lat": 40.7036359, "lon": -74.0137671 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1084633298, + "bounds": { + "minlat": 40.7036072, + "minlon": -74.0137067, + "maxlat": 40.7036345, + "maxlon": -74.0137064 + }, + "nodes": [ + 9939135577, + 9939135582 + ], + "geometry": [ + { "lat": 40.7036072, "lon": -74.0137067 }, + { "lat": 40.7036345, "lon": -74.0137064 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1084636361, + "bounds": { + "minlat": 40.7868140, + "minlon": -73.9307399, + "maxlat": 40.7870193, + "maxlon": -73.9302799 + }, + "nodes": [ + 9939158158, + 9939158159, + 9939158160 + ], + "geometry": [ + { "lat": 40.7868140, "lon": -73.9302799 }, + { "lat": 40.7868735, "lon": -73.9304176 }, + { "lat": 40.7870193, "lon": -73.9307399 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1084636362, + "bounds": { + "minlat": 40.7883384, + "minlon": -73.9300050, + "maxlat": 40.7884382, + "maxlon": -73.9298100 + }, + "nodes": [ + 9939158161, + 9939158162 + ], + "geometry": [ + { "lat": 40.7884382, "lon": -73.9300050 }, + { "lat": 40.7883384, "lon": -73.9298100 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1084940049, + "bounds": { + "minlat": 40.7270726, + "minlon": -73.9571809, + "maxlat": 40.7273244, + "maxlon": -73.9569301 + }, + "nodes": [ + 42488139, + 9789402725, + 8468050576, + 11361160045, + 2276312211 + ], + "geometry": [ + { "lat": 40.7270726, "lon": -73.9569301 }, + { "lat": 40.7271278, "lon": -73.9569856 }, + { "lat": 40.7272103, "lon": -73.9570689 }, + { "lat": 40.7272486, "lon": -73.9571065 }, + { "lat": 40.7273244, "lon": -73.9571809 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Banker Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Banker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1085113913, + "bounds": { + "minlat": 40.7172635, + "minlon": -73.9525235, + "maxlat": 40.7175208, + "maxlon": -73.9522174 + }, + "nodes": [ + 9942799043, + 9942799042, + 9942799041, + 9942799040, + 9942799039, + 9789424693, + 9942799038, + 9942799037, + 9789424691, + 9942799036, + 9942799045, + 9942799035, + 9942799034, + 9789424688, + 9789424687, + 9942799043 + ], + "geometry": [ + { "lat": 40.7174422, "lon": -73.9525235 }, + { "lat": 40.7173974, "lon": -73.9525205 }, + { "lat": 40.7173608, "lon": -73.9524619 }, + { "lat": 40.7172686, "lon": -73.9523062 }, + { "lat": 40.7172635, "lon": -73.9522798 }, + { "lat": 40.7172640, "lon": -73.9522583 }, + { "lat": 40.7172696, "lon": -73.9522335 }, + { "lat": 40.7172851, "lon": -73.9522174 }, + { "lat": 40.7173225, "lon": -73.9522174 }, + { "lat": 40.7173776, "lon": -73.9522257 }, + { "lat": 40.7174392, "lon": -73.9522359 }, + { "lat": 40.7174768, "lon": -73.9522426 }, + { "lat": 40.7175208, "lon": -73.9523039 }, + { "lat": 40.7174358, "lon": -73.9522898 }, + { "lat": 40.7174190, "lon": -73.9524870 }, + { "lat": 40.7174422, "lon": -73.9525235 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1085503136, + "bounds": { + "minlat": 40.8556995, + "minlon": -73.9715182, + "maxlat": 40.8562398, + "maxlon": -73.9702698 + }, + "nodes": [ + 5108601660, + 3257513639, + 3257513641, + 76464192, + 76464193, + 7925039038, + 7925039032, + 7925039026, + 76464194, + 3257513644, + 7925039080 + ], + "geometry": [ + { "lat": 40.8556995, "lon": -73.9702698 }, + { "lat": 40.8557358, "lon": -73.9703971 }, + { "lat": 40.8557769, "lon": -73.9705325 }, + { "lat": 40.8558258, "lon": -73.9706750 }, + { "lat": 40.8558727, "lon": -73.9707949 }, + { "lat": 40.8559254, "lon": -73.9709175 }, + { "lat": 40.8559828, "lon": -73.9710385 }, + { "lat": 40.8560448, "lon": -73.9711637 }, + { "lat": 40.8561118, "lon": -73.9712910 }, + { "lat": 40.8561717, "lon": -73.9714012 }, + { "lat": 40.8562398, "lon": -73.9715182 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxheight": "14'6\"", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 1085521244, + "bounds": { + "minlat": 40.8339284, + "minlon": -73.9895174, + "maxlat": 40.8350795, + "maxlon": -73.9888372 + }, + "nodes": [ + 103242169, + 103242168, + 103242167, + 103242166, + 103187741 + ], + "geometry": [ + { "lat": 40.8350795, "lon": -73.9888372 }, + { "lat": 40.8349980, "lon": -73.9889020 }, + { "lat": 40.8346715, "lon": -73.9891276 }, + { "lat": 40.8344420, "lon": -73.9892610 }, + { "lat": 40.8339284, "lon": -73.9895174 } + ], + "tags": { + "highway": "residential", + "name": "Kingsland Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Kingsland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 1085590196, + "bounds": { + "minlat": 40.7728493, + "minlon": -73.9234008, + "maxlat": 40.7732396, + "maxlon": -73.9225004 + }, + "nodes": [ + 9947294579, + 9947294584, + 9947294586, + 9947294583, + 9947294585 + ], + "geometry": [ + { "lat": 40.7731340, "lon": -73.9234008 }, + { "lat": 40.7731048, "lon": -73.9233408 }, + { "lat": 40.7728493, "lon": -73.9227339 }, + { "lat": 40.7731592, "lon": -73.9225004 }, + { "lat": 40.7732396, "lon": -73.9226711 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1085598720, + "bounds": { + "minlat": 40.7150041, + "minlon": -73.9421615, + "maxlat": 40.7150716, + "maxlon": -73.9421434 + }, + "nodes": [ + 9947391751, + 7722378710 + ], + "geometry": [ + { "lat": 40.7150041, "lon": -73.9421434 }, + { "lat": 40.7150716, "lon": -73.9421615 } + ], + "tags": { + "highway": "residential", + "name": "Woodpoint Road", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 1085598721, + "bounds": { + "minlat": 40.7147353, + "minlon": -73.9421886, + "maxlat": 40.7150041, + "maxlon": -73.9420710 + }, + "nodes": [ + 9947391751, + 9947391750, + 9947391749, + 7722378707 + ], + "geometry": [ + { "lat": 40.7150041, "lon": -73.9421434 }, + { "lat": 40.7149558, "lon": -73.9421886 }, + { "lat": 40.7148160, "lon": -73.9421640 }, + { "lat": 40.7147353, "lon": -73.9420710 } + ], + "tags": { + "highway": "residential", + "name": "Woodpoint Road", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 1085615423, + "bounds": { + "minlat": 40.7002771, + "minlon": -73.9102864, + "maxlat": 40.7006082, + "maxlon": -73.9099331 + }, + "nodes": [ + 9947478054, + 9799250942, + 42870690 + ], + "geometry": [ + { "lat": 40.7002771, "lon": -73.9102864 }, + { "lat": 40.7005533, "lon": -73.9099917 }, + { "lat": 40.7006082, "lon": -73.9099331 } + ], + "tags": { + "access": "destination", + "bus": "yes", + "delivery": "yes", + "foot": "yes", + "highway": "residential", + "name": "Palmetto Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Palmetto", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11385", + "tiger:zip_right": "11385" + } +}, +{ + "type": "way", + "id": 1085686679, + "bounds": { + "minlat": 40.7177890, + "minlon": -73.9660045, + "maxlat": 40.7182257, + "maxlon": -73.9652030 + }, + "nodes": [ + 7712107363, + 9794845009, + 42484162 + ], + "geometry": [ + { "lat": 40.7182257, "lon": -73.9660045 }, + { "lat": 40.7178201, "lon": -73.9652602 }, + { "lat": 40.7177890, "lon": -73.9652030 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "private", + "highway": "service", + "horse": "no", + "motor_vehicle": "private", + "name": "Metropolitan Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Metropolitan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1085842582, + "bounds": { + "minlat": 40.7173450, + "minlon": -73.9663855, + "maxlat": 40.7175614, + "maxlon": -73.9659361 + }, + "nodes": [ + 9949556525, + 42488997 + ], + "geometry": [ + { "lat": 40.7173450, "lon": -73.9659361 }, + { "lat": 40.7175614, "lon": -73.9663855 } + ], + "tags": { + "access": "private", + "highway": "residential", + "motor_vehicle": "private", + "name": "North 1st Street", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "1st", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1086266613, + "bounds": { + "minlat": 40.7198259, + "minlon": -73.9899253, + "maxlat": 40.7201605, + "maxlon": -73.9897602 + }, + "nodes": [ + 9953303865, + 8983103713 + ], + "geometry": [ + { "lat": 40.7198259, "lon": -73.9899253 }, + { "lat": 40.7201605, "lon": -73.9897602 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 1086267975, + "bounds": { + "minlat": 40.7642988, + "minlon": -73.9558298, + "maxlat": 40.7643868, + "maxlon": -73.9556211 + }, + "nodes": [ + 9953316131, + 6670244843, + 42427991 + ], + "geometry": [ + { "lat": 40.7643868, "lon": -73.9558298 }, + { "lat": 40.7643497, "lon": -73.9557417 }, + { "lat": 40.7642988, "lon": -73.9556211 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 68th Street", + "name:ru": "Восточная 68-я стрит", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1086272873, + "bounds": { + "minlat": 40.8030320, + "minlon": -73.9333779, + "maxlat": 40.8034339, + "maxlon": -73.9330811 + }, + "nodes": [ + 42434134, + 7926756888, + 5161751674 + ], + "geometry": [ + { "lat": 40.8034339, "lon": -73.9330811 }, + { "lat": 40.8033467, "lon": -73.9331416 }, + { "lat": 40.8030320, "lon": -73.9333779 } + ], + "tags": { + "alt_name:ko": "2번가", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "turn:lanes": "left|left|through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1086272874, + "bounds": { + "minlat": 40.7015254, + "minlon": -74.0124277, + "maxlat": 40.7015359, + "maxlon": -74.0123761 + }, + "nodes": [ + 6163410983, + 42444200 + ], + "geometry": [ + { "lat": 40.7015359, "lon": -74.0123761 }, + { "lat": 40.7015254, "lon": -74.0124277 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "turn:lanes": "right", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1086282557, + "bounds": { + "minlat": 40.8037081, + "minlon": -73.9379207, + "maxlat": 40.8037990, + "maxlon": -73.9378528 + }, + "nodes": [ + 9726158604, + 9726158600, + 42438772 + ], + "geometry": [ + { "lat": 40.8037990, "lon": -73.9378528 }, + { "lat": 40.8037653, "lon": -73.9378772 }, + { "lat": 40.8037081, "lon": -73.9379207 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1086287942, + "bounds": { + "minlat": 40.8281256, + "minlon": -73.9270358, + "maxlat": 40.8281829, + "maxlon": -73.9268730 + }, + "nodes": [ + 9166334413, + 42748131 + ], + "geometry": [ + { "lat": 40.8281256, "lon": -73.9268730 }, + { "lat": 40.8281829, "lon": -73.9270358 } + ], + "tags": { + "busway:left": "opposite_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "oneway:bus": "no", + "oneway:conditional": "no @ (Mo-Fr 00:00-07:00,20:00-24:00; Sa,Su 00:00-24:00)", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes:forward": "through|", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1086296283, + "bounds": { + "minlat": 40.8296024, + "minlon": -73.9310689, + "maxlat": 40.8296745, + "maxlon": -73.9310062 + }, + "nodes": [ + 595786274, + 9910769969 + ], + "geometry": [ + { "lat": 40.8296024, "lon": -73.9310062 }, + { "lat": 40.8296745, "lon": -73.9310689 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Ogden Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ogden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1086479297, + "bounds": { + "minlat": 40.7104487, + "minlon": -73.9547028, + "maxlat": 40.7105491, + "maxlon": -73.9544621 + }, + "nodes": [ + 9955210449, + 9955210448, + 9955210447, + 8842929846, + 9955210446, + 9955210445, + 9955210456, + 9955210449 + ], + "geometry": [ + { "lat": 40.7105308, "lon": -73.9547028 }, + { "lat": 40.7105491, "lon": -73.9545224 }, + { "lat": 40.7105377, "lon": -73.9545097 }, + { "lat": 40.7105170, "lon": -73.9545055 }, + { "lat": 40.7104973, "lon": -73.9544993 }, + { "lat": 40.7104487, "lon": -73.9544621 }, + { "lat": 40.7105051, "lon": -73.9546246 }, + { "lat": 40.7105308, "lon": -73.9547028 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1086479318, + "bounds": { + "minlat": 40.7106071, + "minlon": -73.9530526, + "maxlat": 40.7107095, + "maxlon": -73.9528206 + }, + "nodes": [ + 9955210485, + 9955210484, + 9955210483, + 8842929744, + 9955210482, + 9955210481, + 9955210485 + ], + "geometry": [ + { "lat": 40.7106919, "lon": -73.9530526 }, + { "lat": 40.7107095, "lon": -73.9528705 }, + { "lat": 40.7107003, "lon": -73.9528467 }, + { "lat": 40.7106830, "lon": -73.9528422 }, + { "lat": 40.7106071, "lon": -73.9528206 }, + { "lat": 40.7106701, "lon": -73.9529969 }, + { "lat": 40.7106919, "lon": -73.9530526 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1086531992, + "bounds": { + "minlat": 40.8657118, + "minlon": -74.0216812, + "maxlat": 40.8662058, + "maxlon": -74.0179942 + }, + "nodes": [ + 298288914, + 13753819019, + 13753819018, + 13753819023, + 298286314, + 10938663144, + 10938663143, + 10938663153, + 11439046631, + 9955683669 + ], + "geometry": [ + { "lat": 40.8657118, "lon": -74.0179942 }, + { "lat": 40.8657317, "lon": -74.0181761 }, + { "lat": 40.8657904, "lon": -74.0186757 }, + { "lat": 40.8658248, "lon": -74.0189666 }, + { "lat": 40.8658643, "lon": -74.0192810 }, + { "lat": 40.8659028, "lon": -74.0195818 }, + { "lat": 40.8659419, "lon": -74.0198607 }, + { "lat": 40.8659850, "lon": -74.0201544 }, + { "lat": 40.8661042, "lon": -74.0209792 }, + { "lat": 40.8662058, "lon": -74.0216812 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000080", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight": "14'3\"", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 80", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1086565173, + "bounds": { + "minlat": 40.7936162, + "minlon": -73.9495058, + "maxlat": 40.7961631, + "maxlon": -73.9476486 + }, + "nodes": [ + 42446138, + 6254630504, + 11292691121, + 6256723780, + 42445843, + 11292691119, + 6256725787, + 42436640, + 6256723731, + 11292691116, + 42446147, + 11292691118, + 6900706753, + 42434377 + ], + "geometry": [ + { "lat": 40.7936162, "lon": -73.9495058 }, + { "lat": 40.7937090, "lon": -73.9494353 }, + { "lat": 40.7942152, "lon": -73.9490648 }, + { "lat": 40.7942372, "lon": -73.9490487 }, + { "lat": 40.7942835, "lon": -73.9490156 }, + { "lat": 40.7943479, "lon": -73.9489687 }, + { "lat": 40.7948603, "lon": -73.9485951 }, + { "lat": 40.7949134, "lon": -73.9485565 }, + { "lat": 40.7949716, "lon": -73.9485130 }, + { "lat": 40.7954844, "lon": -73.9481408 }, + { "lat": 40.7955444, "lon": -73.9480973 }, + { "lat": 40.7956068, "lon": -73.9480521 }, + { "lat": 40.7960949, "lon": -73.9476982 }, + { "lat": 40.7961631, "lon": -73.9476486 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 1086566310, + "bounds": { + "minlat": 40.8156990, + "minlon": -73.9167710, + "maxlat": 40.8159624, + "maxlon": -73.9163366 + }, + "nodes": [ + 42746069, + 6415815537, + 42746073, + 9956030392 + ], + "geometry": [ + { "lat": 40.8156990, "lon": -73.9167710 }, + { "lat": 40.8157678, "lon": -73.9166536 }, + { "lat": 40.8158830, "lon": -73.9164570 }, + { "lat": 40.8159624, "lon": -73.9163366 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Bergen Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bergen", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1086566311, + "bounds": { + "minlat": 40.8156990, + "minlon": -73.9172191, + "maxlat": 40.8158964, + "maxlon": -73.9167710 + }, + "nodes": [ + 42746069, + 12040128261, + 9917864248 + ], + "geometry": [ + { "lat": 40.8156990, "lon": -73.9167710 }, + { "lat": 40.8157334, "lon": -73.9168491 }, + { "lat": 40.8158964, "lon": -73.9172191 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1086701571, + "bounds": { + "minlat": 40.7103547, + "minlon": -73.9588874, + "maxlat": 40.7104635, + "maxlon": -73.9585568 + }, + "nodes": [ + 9957055533, + 9957055532, + 9957055528, + 9957055531, + 9957055530, + 9957055526, + 9957055533 + ], + "geometry": [ + { "lat": 40.7103547, "lon": -73.9585568 }, + { "lat": 40.7103745, "lon": -73.9587848 }, + { "lat": 40.7103939, "lon": -73.9588207 }, + { "lat": 40.7104335, "lon": -73.9588874 }, + { "lat": 40.7104635, "lon": -73.9588626 }, + { "lat": 40.7104057, "lon": -73.9587049 }, + { "lat": 40.7103547, "lon": -73.9585568 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1086701605, + "bounds": { + "minlat": 40.7115792, + "minlon": -73.9516049, + "maxlat": 40.7117665, + "maxlon": -73.9512930 + }, + "nodes": [ + 9957055592, + 9768177814, + 9957055591, + 9957055590, + 9957055585, + 9957055589, + 9957055588, + 9957055584, + 9957055587, + 9957055586, + 9957055592 + ], + "geometry": [ + { "lat": 40.7116978, "lon": -73.9516049 }, + { "lat": 40.7115836, "lon": -73.9513242 }, + { "lat": 40.7115792, "lon": -73.9513058 }, + { "lat": 40.7115860, "lon": -73.9512930 }, + { "lat": 40.7117505, "lon": -73.9513172 }, + { "lat": 40.7117665, "lon": -73.9513195 }, + { "lat": 40.7117644, "lon": -73.9513396 }, + { "lat": 40.7117487, "lon": -73.9513446 }, + { "lat": 40.7117310, "lon": -73.9513588 }, + { "lat": 40.7117243, "lon": -73.9513725 }, + { "lat": 40.7116978, "lon": -73.9516049 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1086727925, + "bounds": { + "minlat": 40.8539211, + "minlon": -73.9632928, + "maxlat": 40.8540687, + "maxlon": -73.9627697 + }, + "nodes": [ + 76464180, + 7921817007, + 7921816990, + 76464181 + ], + "geometry": [ + { "lat": 40.8539211, "lon": -73.9627697 }, + { "lat": 40.8539564, "lon": -73.9628864 }, + { "lat": 40.8539935, "lon": -73.9630177 }, + { "lat": 40.8540687, "lon": -73.9632928 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 1086743836, + "bounds": { + "minlat": 40.8427267, + "minlon": -73.9918410, + "maxlat": 40.8449445, + "maxlon": -73.9880459 + }, + "nodes": [ + 9957436911, + 103255683, + 103238958, + 103302584, + 103166098, + 103193291, + 103258708 + ], + "geometry": [ + { "lat": 40.8449445, "lon": -73.9918410 }, + { "lat": 40.8448276, "lon": -73.9916417 }, + { "lat": 40.8444089, "lon": -73.9909315 }, + { "lat": 40.8439932, "lon": -73.9902087 }, + { "lat": 40.8435706, "lon": -73.9894782 }, + { "lat": 40.8431468, "lon": -73.9887644 }, + { "lat": 40.8427267, "lon": -73.9880459 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "name": "East Central Boulevard", + "old_ref": "CR 54", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1086743837, + "bounds": { + "minlat": 40.8449445, + "minlon": -73.9920695, + "maxlat": 40.8450768, + "maxlon": -73.9918410 + }, + "nodes": [ + 9957436912, + 9957436911 + ], + "geometry": [ + { "lat": 40.8450768, "lon": -73.9920695 }, + { "lat": 40.8449445, "lon": -73.9918410 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "maxheight:signed": "no", + "name": "East Central Boulevard", + "old_ref": "CR 54", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1086744448, + "bounds": { + "minlat": 40.8138070, + "minlon": -74.0030890, + "maxlat": 40.8141940, + "maxlon": -74.0028690 + }, + "nodes": [ + 103232634, + 12535377638, + 103232635 + ], + "geometry": [ + { "lat": 40.8138070, "lon": -74.0028690 }, + { "lat": 40.8139496, "lon": -74.0029189 }, + { "lat": 40.8141940, "lon": -74.0030890 } + ], + "tags": { + "Bergen_County_database_ref": "48", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000048", + "highway": "secondary", + "maxheight": "14'2\"", + "name": "Fairview Avenue", + "old_ref": "CR 16", + "ref": "CR 48", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 1086744449, + "bounds": { + "minlat": 40.8130551, + "minlon": -74.0028690, + "maxlat": 40.8138070, + "maxlon": -74.0026614 + }, + "nodes": [ + 103142132, + 103232632, + 5481884106, + 103232633, + 103232634 + ], + "geometry": [ + { "lat": 40.8130551, "lon": -74.0026614 }, + { "lat": 40.8132820, "lon": -74.0027189 }, + { "lat": 40.8134812, "lon": -74.0027710 }, + { "lat": 40.8136571, "lon": -74.0028200 }, + { "lat": 40.8138070, "lon": -74.0028690 } + ], + "tags": { + "Bergen_County_database_ref": "48", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000048", + "highway": "secondary", + "name": "Fairview Avenue", + "old_ref": "CR 16", + "ref": "CR 48", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 1086752465, + "bounds": { + "minlat": 40.8548806, + "minlon": -73.9841384, + "maxlat": 40.8555007, + "maxlon": -73.9835651 + }, + "nodes": [ + 299171744, + 10942990438, + 299171879, + 10942990437, + 299171880, + 10943435104, + 10943435079, + 299171936 + ], + "geometry": [ + { "lat": 40.8555007, "lon": -73.9835651 }, + { "lat": 40.8553579, "lon": -73.9837103 }, + { "lat": 40.8552712, "lon": -73.9837962 }, + { "lat": 40.8551797, "lon": -73.9838841 }, + { "lat": 40.8550920, "lon": -73.9839641 }, + { "lat": 40.8549965, "lon": -73.9840455 }, + { "lat": 40.8549039, "lon": -73.9841201 }, + { "lat": 40.8548806, "lon": -73.9841384 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "lanes": "2", + "maxheight": "13'8\"", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1086752466, + "bounds": { + "minlat": 40.8553684, + "minlon": -73.9835757, + "maxlat": 40.8565159, + "maxlon": -73.9824125 + }, + "nodes": [ + 299172094, + 5362388586, + 299172093, + 299172092 + ], + "geometry": [ + { "lat": 40.8553684, "lon": -73.9835757 }, + { "lat": 40.8558316, "lon": -73.9831050 }, + { "lat": 40.8560025, "lon": -73.9829315 }, + { "lat": 40.8565159, "lon": -73.9824125 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "United States Highway 1", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1086752467, + "bounds": { + "minlat": 40.8546823, + "minlon": -73.9841725, + "maxlat": 40.8553684, + "maxlon": -73.9835757 + }, + "nodes": [ + 5362392159, + 10943455716, + 299172097, + 299172193, + 10943435063, + 299172095, + 10942990445, + 10942990432, + 299172094 + ], + "geometry": [ + { "lat": 40.8546823, "lon": -73.9841725 }, + { "lat": 40.8547307, "lon": -73.9841387 }, + { "lat": 40.8548164, "lon": -73.9840748 }, + { "lat": 40.8549110, "lon": -73.9840001 }, + { "lat": 40.8550037, "lon": -73.9839247 }, + { "lat": 40.8550991, "lon": -73.9838396 }, + { "lat": 40.8551845, "lon": -73.9837593 }, + { "lat": 40.8552717, "lon": -73.9836736 }, + { "lat": 40.8553684, "lon": -73.9835757 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "lanes": "2", + "maxheight": "13'8\"", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "United States Highway 1", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1086761037, + "bounds": { + "minlat": 40.8472939, + "minlon": -74.0210033, + "maxlat": 40.8480525, + "maxlon": -74.0189552 + }, + "nodes": [ + 298567557, + 12014234128, + 12014234127, + 10928116454, + 298567558, + 10928116466, + 10928116453, + 10928116463, + 298566965, + 10928116451, + 298567059, + 10928116449, + 8480506076, + 10928116455, + 10928116452, + 298567579 + ], + "geometry": [ + { "lat": 40.8480525, "lon": -74.0210033 }, + { "lat": 40.8480321, "lon": -74.0209485 }, + { "lat": 40.8479506, "lon": -74.0207229 }, + { "lat": 40.8478706, "lon": -74.0204871 }, + { "lat": 40.8478277, "lon": -74.0203587 }, + { "lat": 40.8477831, "lon": -74.0202296 }, + { "lat": 40.8477390, "lon": -74.0200996 }, + { "lat": 40.8476929, "lon": -74.0199691 }, + { "lat": 40.8476478, "lon": -74.0198442 }, + { "lat": 40.8475994, "lon": -74.0197189 }, + { "lat": 40.8475478, "lon": -74.0195868 }, + { "lat": 40.8475019, "lon": -74.0194720 }, + { "lat": 40.8474462, "lon": -74.0193343 }, + { "lat": 40.8473961, "lon": -74.0192107 }, + { "lat": 40.8473456, "lon": -74.0190842 }, + { "lat": 40.8472939, "lon": -74.0189552 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight": "14'3\"", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1086766006, + "bounds": { + "minlat": 40.8491584, + "minlon": -73.9430242, + "maxlat": 40.8500286, + "maxlon": -73.9429047 + }, + "nodes": [ + 60927837, + 12068606742, + 12068606743, + 12068606744, + 60927838 + ], + "geometry": [ + { "lat": 40.8491584, "lon": -73.9430242 }, + { "lat": 40.8492174, "lon": -73.9430184 }, + { "lat": 40.8492818, "lon": -73.9430106 }, + { "lat": 40.8495277, "lon": -73.9429790 }, + { "lat": 40.8500286, "lon": -73.9429047 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "25 mph", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1086782362, + "bounds": { + "minlat": 40.8429225, + "minlon": -74.0049169, + "maxlat": 40.8433629, + "maxlon": -74.0048715 + }, + "nodes": [ + 103162301, + 12016116967, + 12016116968, + 12016147176, + 530805415, + 12016147216, + 103241068 + ], + "geometry": [ + { "lat": 40.8433629, "lon": -74.0048715 }, + { "lat": 40.8433129, "lon": -74.0048800 }, + { "lat": 40.8432714, "lon": -74.0048849 }, + { "lat": 40.8431747, "lon": -74.0048952 }, + { "lat": 40.8431241, "lon": -74.0048995 }, + { "lat": 40.8429818, "lon": -74.0049117 }, + { "lat": 40.8429225, "lon": -74.0049169 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1086782363, + "bounds": { + "minlat": 40.8434775, + "minlon": -74.0048473, + "maxlat": 40.8436894, + "maxlon": -74.0047910 + }, + "nodes": [ + 299182056, + 12016116965 + ], + "geometry": [ + { "lat": 40.8436894, "lon": -74.0047910 }, + { "lat": 40.8434775, "lon": -74.0048473 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxheight": "14'4\"", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through" + } +}, +{ + "type": "way", + "id": 1086782503, + "bounds": { + "minlat": 40.8741462, + "minlon": -73.9852520, + "maxlat": 40.8755730, + "maxlon": -73.9844797 + }, + "nodes": [ + 103262199, + 103296552, + 6104463717, + 6122487525, + 103296554, + 103203324 + ], + "geometry": [ + { "lat": 40.8755730, "lon": -73.9844797 }, + { "lat": 40.8747915, "lon": -73.9849226 }, + { "lat": 40.8747775, "lon": -73.9849302 }, + { "lat": 40.8746687, "lon": -73.9849891 }, + { "lat": 40.8744160, "lon": -73.9851260 }, + { "lat": 40.8741462, "lon": -73.9852520 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxheight:signed": "no", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1086787339, + "bounds": { + "minlat": 40.8519719, + "minlon": -73.9855573, + "maxlat": 40.8538879, + "maxlon": -73.9846794 + }, + "nodes": [ + 299171950, + 12020325907, + 12020325900, + 12020325902, + 12020325901, + 12020325899, + 299385538, + 10943482391, + 299385569, + 10943492059, + 299385575, + 10943492016, + 10943492085, + 299385571, + 103108780, + 10943482397, + 10943492011, + 103108777, + 4695818110 + ], + "geometry": [ + { "lat": 40.8538879, "lon": -73.9846794 }, + { "lat": 40.8538815, "lon": -73.9846835 }, + { "lat": 40.8534406, "lon": -73.9848832 }, + { "lat": 40.8533691, "lon": -73.9849187 }, + { "lat": 40.8532995, "lon": -73.9849505 }, + { "lat": 40.8532277, "lon": -73.9849897 }, + { "lat": 40.8531551, "lon": -73.9850311 }, + { "lat": 40.8529139, "lon": -73.9851978 }, + { "lat": 40.8528283, "lon": -73.9852585 }, + { "lat": 40.8527334, "lon": -73.9853196 }, + { "lat": 40.8526356, "lon": -73.9853726 }, + { "lat": 40.8525386, "lon": -73.9854198 }, + { "lat": 40.8524464, "lon": -73.9854575 }, + { "lat": 40.8523636, "lon": -73.9854877 }, + { "lat": 40.8522791, "lon": -73.9855109 }, + { "lat": 40.8522026, "lon": -73.9855309 }, + { "lat": 40.8521286, "lon": -73.9855447 }, + { "lat": 40.8520517, "lon": -73.9855532 }, + { "lat": 40.8519719, "lon": -73.9855573 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "1", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 1086787340, + "bounds": { + "minlat": 40.8500833, + "minlon": -73.9850965, + "maxlat": 40.8507747, + "maxlon": -73.9848423 + }, + "nodes": [ + 7393466954, + 10943492019, + 299385577, + 299385578, + 12020325893, + 10943492018, + 299385588, + 12020325892, + 299385581, + 12692250277, + 103100034 + ], + "geometry": [ + { "lat": 40.8507747, "lon": -73.9850965 }, + { "lat": 40.8507005, "lon": -73.9850496 }, + { "lat": 40.8506347, "lon": -73.9850096 }, + { "lat": 40.8505705, "lon": -73.9849747 }, + { "lat": 40.8505280, "lon": -73.9849553 }, + { "lat": 40.8504771, "lon": -73.9849368 }, + { "lat": 40.8504213, "lon": -73.9849190 }, + { "lat": 40.8503738, "lon": -73.9849080 }, + { "lat": 40.8503050, "lon": -73.9848947 }, + { "lat": 40.8501558, "lon": -73.9848761 }, + { "lat": 40.8500833, "lon": -73.9848423 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "1", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 1086792658, + "bounds": { + "minlat": 40.8733106, + "minlon": -73.9747301, + "maxlat": 40.8754507, + "maxlon": -73.9727616 + }, + "nodes": [ + 298917927, + 10942822208, + 298917948, + 10942795500, + 298917930, + 10942822205, + 10942795504, + 298918551, + 10942822207, + 10942795498, + 298917932, + 10942795502, + 298917950, + 10942795499, + 10942795501, + 298940359, + 10942822209, + 298940519, + 10942795503, + 10942822206, + 298940361, + 10942741367, + 298940520, + 10942741363, + 298940363 + ], + "geometry": [ + { "lat": 40.8733106, "lon": -73.9727616 }, + { "lat": 40.8734155, "lon": -73.9728156 }, + { "lat": 40.8735161, "lon": -73.9728709 }, + { "lat": 40.8736104, "lon": -73.9729263 }, + { "lat": 40.8737171, "lon": -73.9729907 }, + { "lat": 40.8738175, "lon": -73.9730550 }, + { "lat": 40.8739160, "lon": -73.9731210 }, + { "lat": 40.8740117, "lon": -73.9731889 }, + { "lat": 40.8741086, "lon": -73.9732608 }, + { "lat": 40.8742041, "lon": -73.9733362 }, + { "lat": 40.8742957, "lon": -73.9734128 }, + { "lat": 40.8743888, "lon": -73.9734928 }, + { "lat": 40.8744805, "lon": -73.9735760 }, + { "lat": 40.8745684, "lon": -73.9736579 }, + { "lat": 40.8746596, "lon": -73.9737474 }, + { "lat": 40.8747441, "lon": -73.9738347 }, + { "lat": 40.8748298, "lon": -73.9739267 }, + { "lat": 40.8749132, "lon": -73.9740206 }, + { "lat": 40.8749976, "lon": -73.9741188 }, + { "lat": 40.8750782, "lon": -73.9742167 }, + { "lat": 40.8751563, "lon": -73.9743156 }, + { "lat": 40.8752348, "lon": -73.9744204 }, + { "lat": 40.8753101, "lon": -73.9745249 }, + { "lat": 40.8753855, "lon": -73.9746331 }, + { "lat": 40.8754507, "lon": -73.9747301 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "change:lanes": "yes|not_right|no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lane_markings": "yes", + "lanes": "3", + "maxheight": "14'4\"", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "left_of:2", + "ref": "NJ 4", + "shoulder": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1086826517, + "bounds": { + "minlat": 40.8387091, + "minlon": -73.9141514, + "maxlat": 40.8387645, + "maxlon": -73.9140083 + }, + "nodes": [ + 5543337911, + 13535816385, + 5543337908, + 2327276565 + ], + "geometry": [ + { "lat": 40.8387645, "lon": -73.9141514 }, + { "lat": 40.8387587, "lon": -73.9141365 }, + { "lat": 40.8387411, "lon": -73.9140911 }, + { "lat": 40.8387091, "lon": -73.9140083 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1086962994, + "bounds": { + "minlat": 40.7571381, + "minlon": -74.0046930, + "maxlat": 40.7583508, + "maxlon": -74.0038169 + }, + "nodes": [ + 593840108, + 247081715, + 7073877295 + ], + "geometry": [ + { "lat": 40.7571381, "lon": -74.0046930 }, + { "lat": 40.7582281, "lon": -74.0039073 }, + { "lat": 40.7583508, "lon": -74.0038169 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1086962995, + "bounds": { + "minlat": 40.7569054, + "minlon": -74.0048129, + "maxlat": 40.7569758, + "maxlon": -74.0046443 + }, + "nodes": [ + 11511554772, + 3874681623, + 42437678 + ], + "geometry": [ + { "lat": 40.7569054, "lon": -74.0046443 }, + { "lat": 40.7569153, "lon": -74.0046674 }, + { "lat": 40.7569758, "lon": -74.0048129 } + ], + "tags": { + "change:lanes:backward": "yes", + "change:lanes:forward": "yes|not_right|no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "surface": "concrete", + "turn:lanes:forward": "left||right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1087008122, + "bounds": { + "minlat": 40.7078046, + "minlon": -73.9323799, + "maxlat": 40.7080031, + "maxlon": -73.9321957 + }, + "nodes": [ + 9959635970, + 9767625253, + 9959635969, + 9959635968, + 9959635967, + 9959635966, + 9767625252, + 9959635965, + 9959635964, + 9959635970 + ], + "geometry": [ + { "lat": 40.7079972, "lon": -73.9323799 }, + { "lat": 40.7078222, "lon": -73.9323021 }, + { "lat": 40.7078114, "lon": -73.9322945 }, + { "lat": 40.7078046, "lon": -73.9322814 }, + { "lat": 40.7078169, "lon": -73.9321979 }, + { "lat": 40.7078252, "lon": -73.9321957 }, + { "lat": 40.7078372, "lon": -73.9322073 }, + { "lat": 40.7080031, "lon": -73.9323690 }, + { "lat": 40.7080025, "lon": -73.9323766 }, + { "lat": 40.7079972, "lon": -73.9323799 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete:plates", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 1087028865, + "bounds": { + "minlat": 40.7090214, + "minlon": -73.9510248, + "maxlat": 40.7091815, + "maxlon": -73.9508947 + }, + "nodes": [ + 9959900715, + 9755372930, + 9959900711, + 9959900714, + 9959900712, + 9959900713, + 9959904518, + 9959904517, + 9959900716, + 9959900715 + ], + "geometry": [ + { "lat": 40.7091815, "lon": -73.9509189 }, + { "lat": 40.7091794, "lon": -73.9509478 }, + { "lat": 40.7091765, "lon": -73.9509863 }, + { "lat": 40.7091633, "lon": -73.9509839 }, + { "lat": 40.7091508, "lon": -73.9509594 }, + { "lat": 40.7091366, "lon": -73.9509618 }, + { "lat": 40.7090214, "lon": -73.9510248 }, + { "lat": 40.7090341, "lon": -73.9509131 }, + { "lat": 40.7090362, "lon": -73.9508947 }, + { "lat": 40.7091815, "lon": -73.9509189 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1087048475, + "bounds": { + "minlat": 40.7622945, + "minlon": -73.9731390, + "maxlat": 40.7626208, + "maxlon": -73.9723653 + }, + "nodes": [ + 9960054857, + 10173152538, + 42432825 + ], + "geometry": [ + { "lat": 40.7626208, "lon": -73.9731390 }, + { "lat": 40.7623400, "lon": -73.9724730 }, + { "lat": 40.7622945, "lon": -73.9723653 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:left": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1087393141, + "bounds": { + "minlat": 40.8418864, + "minlon": -73.9992332, + "maxlat": 40.8420020, + "maxlon": -73.9991175 + }, + "nodes": [ + 9963068413, + 308363480 + ], + "geometry": [ + { "lat": 40.8420020, "lon": -73.9991175 }, + { "lat": 40.8418864, "lon": -73.9992332 } + ], + "tags": { + "highway": "residential", + "name": "Roff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1087393142, + "bounds": { + "minlat": 40.8418516, + "minlon": -73.9992674, + "maxlat": 40.8418864, + "maxlon": -73.9992332 + }, + "nodes": [ + 530805886, + 308363480 + ], + "geometry": [ + { "lat": 40.8418516, "lon": -73.9992674 }, + { "lat": 40.8418864, "lon": -73.9992332 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Roff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650", + "turn:lanes:backward": "left;through", + "turn:lanes:forward": "left;through" + } +}, +{ + "type": "way", + "id": 1087556933, + "bounds": { + "minlat": 40.8498785, + "minlon": -73.9449360, + "maxlat": 40.8502920, + "maxlon": -73.9446786 + }, + "nodes": [ + 60916563, + 60916655, + 7907916412, + 7907916453, + 42458670 + ], + "geometry": [ + { "lat": 40.8502920, "lon": -73.9446786 }, + { "lat": 40.8501856, "lon": -73.9447562 }, + { "lat": 40.8500860, "lon": -73.9448228 }, + { "lat": 40.8499875, "lon": -73.9448793 }, + { "lat": 40.8498785, "lon": -73.9449360 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1087557588, + "bounds": { + "minlat": 40.8495854, + "minlon": -73.9432830, + "maxlat": 40.8500707, + "maxlon": -73.9431817 + }, + "nodes": [ + 60916894, + 7911307251 + ], + "geometry": [ + { "lat": 40.8495854, "lon": -73.9432830 }, + { "lat": 40.8500707, "lon": -73.9431817 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1087558025, + "bounds": { + "minlat": 40.8532978, + "minlon": -73.9599844, + "maxlat": 40.8575894, + "maxlon": -73.9590520 + }, + "nodes": [ + 9965186779, + 11860299700, + 103205592, + 171240499, + 171241668, + 5074649257, + 5074649258, + 1711527529 + ], + "geometry": [ + { "lat": 40.8532978, "lon": -73.9599844 }, + { "lat": 40.8534532, "lon": -73.9599299 }, + { "lat": 40.8537474, "lon": -73.9598267 }, + { "lat": 40.8547991, "lon": -73.9596207 }, + { "lat": 40.8559027, "lon": -73.9593975 }, + { "lat": 40.8562991, "lon": -73.9594329 }, + { "lat": 40.8566400, "lon": -73.9594005 }, + { "lat": 40.8575894, "lon": -73.9590520 } + ], + "tags": { + "bicycle": "yes", + "covered": "no", + "cycleway": "no", + "highway": "unclassified", + "lanes": "2", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "surface": "asphalt", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 1087630662, + "bounds": { + "minlat": 40.8529423, + "minlon": -73.9601219, + "maxlat": 40.8532978, + "maxlon": -73.9599844 + }, + "nodes": [ + 171240497, + 9965186779 + ], + "geometry": [ + { "lat": 40.8529423, "lon": -73.9601219 }, + { "lat": 40.8532978, "lon": -73.9599844 } + ], + "tags": { + "bicycle": "yes", + "covered": "yes", + "cycleway": "no", + "highway": "unclassified", + "lanes": "2", + "maxheight:signed": "no", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "surface": "asphalt", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 1087744935, + "bounds": { + "minlat": 40.7494989, + "minlon": -73.9754041, + "maxlat": 40.7501166, + "maxlon": -73.9749540 + }, + "nodes": [ + 11337295601, + 10125260549, + 12187391603, + 1731564125, + 12187391605, + 10125260548, + 42432451 + ], + "geometry": [ + { "lat": 40.7494989, "lon": -73.9754041 }, + { "lat": 40.7495509, "lon": -73.9753651 }, + { "lat": 40.7495788, "lon": -73.9753441 }, + { "lat": 40.7497204, "lon": -73.9752415 }, + { "lat": 40.7500096, "lon": -73.9750303 }, + { "lat": 40.7500510, "lon": -73.9750008 }, + { "lat": 40.7501166, "lon": -73.9749540 } + ], + "tags": { + "bus:lanes": "|||designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1087928485, + "bounds": { + "minlat": 40.7105360, + "minlon": -73.9551195, + "maxlat": 40.7106440, + "maxlon": -73.9540484 + }, + "nodes": [ + 4593135560, + 8842929730, + 8842568889, + 9955210451, + 9967927269 + ], + "geometry": [ + { "lat": 40.7105360, "lon": -73.9551195 }, + { "lat": 40.7105446, "lon": -73.9550423 }, + { "lat": 40.7106013, "lon": -73.9544651 }, + { "lat": 40.7106092, "lon": -73.9543817 }, + { "lat": 40.7106440, "lon": -73.9540484 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base_1": "Borinquen", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1087928486, + "bounds": { + "minlat": 40.7106440, + "minlon": -73.9540484, + "maxlat": 40.7106885, + "maxlon": -73.9536005 + }, + "nodes": [ + 9967927269, + 8842929751, + 42488301 + ], + "geometry": [ + { "lat": 40.7106440, "lon": -73.9540484 }, + { "lat": 40.7106780, "lon": -73.9537037 }, + { "lat": 40.7106885, "lon": -73.9536005 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base_1": "Borinquen", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1087928487, + "bounds": { + "minlat": 40.7109363, + "minlon": -73.9513980, + "maxlat": 40.7109607, + "maxlon": -73.9511193 + }, + "nodes": [ + 9967927280, + 10827599900, + 5379075742, + 42520579 + ], + "geometry": [ + { "lat": 40.7109363, "lon": -73.9513980 }, + { "lat": 40.7109464, "lon": -73.9512838 }, + { "lat": 40.7109505, "lon": -73.9512374 }, + { "lat": 40.7109607, "lon": -73.9511193 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1087928488, + "bounds": { + "minlat": 40.7108889, + "minlon": -73.9516718, + "maxlat": 40.7109363, + "maxlon": -73.9513980 + }, + "nodes": [ + 42491478, + 9967927280 + ], + "geometry": [ + { "lat": 40.7108889, "lon": -73.9516718 }, + { "lat": 40.7109363, "lon": -73.9513980 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1087974356, + "bounds": { + "minlat": 40.7104506, + "minlon": -73.9649789, + "maxlat": 40.7112944, + "maxlon": -73.9621372 + }, + "nodes": [ + 9968370327, + 9968370328 + ], + "geometry": [ + { "lat": 40.7112944, "lon": -73.9649789 }, + { "lat": 40.7104506, "lon": -73.9621372 } + ], + "tags": { + "bridge": "yes", + "destination:lanes": "Queens;Bronx|Queens;Bronx|Broadway East|Broadway West", + "hgv": "designated", + "highway": "motorway", + "lanes": "4", + "layer": "2", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A63;A63;A41;A41;A63", + "tiger:county": "New York, NY;Kings, NY", + "tiger:name_base": "Williamsburg", + "tiger:name_type": "Brg", + "turn:lanes": "slight_left|slight_left|slight_right|slight_right", + "wikidata": "Q125068", + "wikipedia": "en:Williamsburg Bridge" + } +}, +{ + "type": "way", + "id": 1087974357, + "bounds": { + "minlat": 40.7103459, + "minlon": -73.9621372, + "maxlat": 40.7104506, + "maxlon": -73.9617571 + }, + "nodes": [ + 9968370328, + 592627490 + ], + "geometry": [ + { "lat": 40.7104506, "lon": -73.9621372 }, + { "lat": 40.7103459, "lon": -73.9617571 } + ], + "tags": { + "bridge": "yes", + "destination": "Queens;Bronx", + "destination:ref": "I 278 East", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "2", + "maxheight": "12'11\"", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A63;A63;A41;A41;A63", + "tiger:county": "New York, NY;Kings, NY", + "tiger:name_base": "Williamsburg", + "tiger:name_type": "Brg", + "wikidata": "Q125068", + "wikipedia": "en:Williamsburg Bridge" + } +}, +{ + "type": "way", + "id": 1087974359, + "bounds": { + "minlat": 40.7095345, + "minlon": -73.9614023, + "maxlat": 40.7096154, + "maxlon": -73.9611656 + }, + "nodes": [ + 486873300, + 8617429476 + ], + "geometry": [ + { "lat": 40.7095345, "lon": -73.9611656 }, + { "lat": 40.7096154, "lon": -73.9614023 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 1087974360, + "bounds": { + "minlat": 40.7096154, + "minlon": -73.9622778, + "maxlat": 40.7099130, + "maxlon": -73.9614023 + }, + "nodes": [ + 8617429476, + 8617440620, + 2782255549, + 42505389 + ], + "geometry": [ + { "lat": 40.7096154, "lon": -73.9614023 }, + { "lat": 40.7097041, "lon": -73.9616638 }, + { "lat": 40.7098945, "lon": -73.9622234 }, + { "lat": 40.7099130, "lon": -73.9622778 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 1087974362, + "bounds": { + "minlat": 40.7094135, + "minlon": -73.9611656, + "maxlat": 40.7095345, + "maxlon": -73.9608098 + }, + "nodes": [ + 9968370346, + 2782255534, + 486873300 + ], + "geometry": [ + { "lat": 40.7094135, "lon": -73.9608098 }, + { "lat": 40.7094485, "lon": -73.9609127 }, + { "lat": 40.7095345, "lon": -73.9611656 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 1087974363, + "bounds": { + "minlat": 40.7091686, + "minlon": -73.9608366, + "maxlat": 40.7092967, + "maxlon": -73.9608075 + }, + "nodes": [ + 9968370342, + 6226508720, + 42501318 + ], + "geometry": [ + { "lat": 40.7092967, "lon": -73.9608075 }, + { "lat": 40.7092418, "lon": -73.9608211 }, + { "lat": 40.7091686, "lon": -73.9608366 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Roebling Street", + "name:etymology:wikidata": "Q77237", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Roebling", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1087974364, + "bounds": { + "minlat": 40.7095407, + "minlon": -73.9591557, + "maxlat": 40.7096072, + "maxlon": -73.9590101 + }, + "nodes": [ + 2307215729, + 8384292627 + ], + "geometry": [ + { "lat": 40.7095407, "lon": -73.9591557 }, + { "lat": 40.7096072, "lon": -73.9590101 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Williamsburg Bridge Plaza", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1087974367, + "bounds": { + "minlat": 40.7096622, + "minlon": -73.9604078, + "maxlat": 40.7099889, + "maxlon": -73.9600342 + }, + "nodes": [ + 486871373, + 2307215740 + ], + "geometry": [ + { "lat": 40.7099889, "lon": -73.9604078 }, + { "lat": 40.7096622, "lon": -73.9600342 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Williamsburg Bridge Plaza", + "oneway": "yes", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1087974368, + "bounds": { + "minlat": 40.7095407, + "minlon": -73.9594048, + "maxlat": 40.7096283, + "maxlon": -73.9591557 + }, + "nodes": [ + 9968370398, + 2307215729 + ], + "geometry": [ + { "lat": 40.7096283, "lon": -73.9594048 }, + { "lat": 40.7095407, "lon": -73.9591557 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Williamsburg Bridge Plaza Lane 1", + "oneway": "yes", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1087974369, + "bounds": { + "minlat": 40.7094836, + "minlon": -73.9593953, + "maxlat": 40.7095388, + "maxlon": -73.9592472 + }, + "nodes": [ + 2307215735, + 9968370401, + 2307215739 + ], + "geometry": [ + { "lat": 40.7095388, "lon": -73.9593953 }, + { "lat": 40.7095197, "lon": -73.9593425 }, + { "lat": 40.7094836, "lon": -73.9592472 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Washington Plaza Lane 2", + "oneway": "yes", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1087974370, + "bounds": { + "minlat": 40.7094836, + "minlon": -73.9592472, + "maxlat": 40.7095407, + "maxlon": -73.9591557 + }, + "nodes": [ + 2307215739, + 9968370399, + 9968370408, + 2307215729 + ], + "geometry": [ + { "lat": 40.7094836, "lon": -73.9592472 }, + { "lat": 40.7095040, "lon": -73.9592218 }, + { "lat": 40.7095223, "lon": -73.9591922 }, + { "lat": 40.7095407, "lon": -73.9591557 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Williamsburg Bridge Plaza", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1087974371, + "bounds": { + "minlat": 40.7094255, + "minlon": -73.9594238, + "maxlat": 40.7094760, + "maxlon": -73.9592903 + }, + "nodes": [ + 9968370409, + 9968370402, + 2307215746 + ], + "geometry": [ + { "lat": 40.7094760, "lon": -73.9594238 }, + { "lat": 40.7094595, "lon": -73.9593802 }, + { "lat": 40.7094255, "lon": -73.9592903 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Washington Plaza Lane 3", + "oneway": "yes", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1087974372, + "bounds": { + "minlat": 40.7094255, + "minlon": -73.9592903, + "maxlat": 40.7094836, + "maxlon": -73.9592472 + }, + "nodes": [ + 2307215746, + 9968370400, + 2307215739 + ], + "geometry": [ + { "lat": 40.7094255, "lon": -73.9592903 }, + { "lat": 40.7094573, "lon": -73.9592696 }, + { "lat": 40.7094836, "lon": -73.9592472 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Williamsburg Bridge Plaza", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1087974373, + "bounds": { + "minlat": 40.7093457, + "minlon": -73.9594820, + "maxlat": 40.7094017, + "maxlon": -73.9593364 + }, + "nodes": [ + 9968370410, + 9968370403, + 2307215731 + ], + "geometry": [ + { "lat": 40.7094017, "lon": -73.9594820 }, + { "lat": 40.7093817, "lon": -73.9594289 }, + { "lat": 40.7093457, "lon": -73.9593364 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Washington Plaza Lane 4", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1087974374, + "bounds": { + "minlat": 40.7092675, + "minlon": -73.9593691, + "maxlat": 40.7093457, + "maxlon": -73.9593364 + }, + "nodes": [ + 2307215728, + 9968370407, + 2307215731 + ], + "geometry": [ + { "lat": 40.7092675, "lon": -73.9593691 }, + { "lat": 40.7093067, "lon": -73.9593539 }, + { "lat": 40.7093457, "lon": -73.9593364 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Williamsburg Bridge Plaza", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1087974375, + "bounds": { + "minlat": 40.7093113, + "minlon": -73.9607439, + "maxlat": 40.7093911, + "maxlon": -73.9605191 + }, + "nodes": [ + 10689802506, + 6226508722, + 42505393 + ], + "geometry": [ + { "lat": 40.7093113, "lon": -73.9605191 }, + { "lat": 40.7093501, "lon": -73.9606286 }, + { "lat": 40.7093911, "lon": -73.9607439 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 1087977623, + "bounds": { + "minlat": 40.7101447, + "minlon": -73.9599738, + "maxlat": 40.7102384, + "maxlon": -73.9589524 + }, + "nodes": [ + 592627493, + 9968376557, + 9968376556, + 479718667 + ], + "geometry": [ + { "lat": 40.7102384, "lon": -73.9589524 }, + { "lat": 40.7101592, "lon": -73.9597699 }, + { "lat": 40.7101504, "lon": -73.9598731 }, + { "lat": 40.7101447, "lon": -73.9599738 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1087977624, + "bounds": { + "minlat": 40.7128788, + "minlon": -73.9544111, + "maxlat": 40.7132909, + "maxlon": -73.9540603 + }, + "nodes": [ + 9968376571, + 9968376572, + 479718679, + 9968376570, + 479718678 + ], + "geometry": [ + { "lat": 40.7132909, "lon": -73.9540603 }, + { "lat": 40.7131897, "lon": -73.9541521 }, + { "lat": 40.7130890, "lon": -73.9542394 }, + { "lat": 40.7129870, "lon": -73.9543242 }, + { "lat": 40.7128788, "lon": -73.9544111 } + ], + "tags": { + "destination": "Williamsburg Bridge;Manhattan", + "hgv": "designated", + "highway": "motorway", + "junction:ref": "32A", + "lanes": "2", + "lit": "yes", + "maxspeed": "35 mph", + "name": "Williamsburg Bridge", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1087977625, + "bounds": { + "minlat": 40.7132909, + "minlon": -73.9540603, + "maxlat": 40.7137269, + "maxlon": -73.9536634 + }, + "nodes": [ + 598031719, + 13519263277, + 9968376571 + ], + "geometry": [ + { "lat": 40.7137269, "lon": -73.9536634 }, + { "lat": 40.7133612, "lon": -73.9539963 }, + { "lat": 40.7132909, "lon": -73.9540603 } + ], + "tags": { + "destination": "Williamsburg Bridge;Manhattan", + "hgv": "designated", + "highway": "motorway", + "junction:ref": "32A", + "lanes": "2", + "lit": "yes", + "maxspeed": "35 mph", + "name": "Williamsburg Bridge", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1087977627, + "bounds": { + "minlat": 40.7103519, + "minlon": -73.9616663, + "maxlat": 40.7105010, + "maxlon": -73.9611978 + }, + "nodes": [ + 9968376551, + 486859031 + ], + "geometry": [ + { "lat": 40.7103519, "lon": -73.9611978 }, + { "lat": 40.7105010, "lon": -73.9616663 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1088005912, + "bounds": { + "minlat": 40.7379874, + "minlon": -73.9776048, + "maxlat": 40.7381697, + "maxlon": -73.9771965 + }, + "nodes": [ + 9968663365, + 8119542591, + 42455897 + ], + "geometry": [ + { "lat": 40.7379874, "lon": -73.9771965 }, + { "lat": 40.7381052, "lon": -73.9774697 }, + { "lat": 40.7381697, "lon": -73.9776048 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 25th Street", + "name:ru": "Восточная 25-я стрит", + "name_1": "East 25 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|right" + } +}, +{ + "type": "way", + "id": 1088005913, + "bounds": { + "minlat": 40.7399596, + "minlon": -73.9822169, + "maxlat": 40.7401252, + "maxlon": -73.9818184 + }, + "nodes": [ + 9968663366, + 12183286747, + 4115878743, + 4138911201 + ], + "geometry": [ + { "lat": 40.7399596, "lon": -73.9818184 }, + { "lat": 40.7400446, "lon": -73.9820220 }, + { "lat": 40.7400642, "lon": -73.9820689 }, + { "lat": 40.7401252, "lon": -73.9822169 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 25th Street", + "name:ru": "Восточная 25-я стрит", + "name_1": "East 25 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "turn:lanes": "right", + "width": "28'4\"" + } +}, +{ + "type": "way", + "id": 1088196238, + "bounds": { + "minlat": 40.8058864, + "minlon": -73.9878875, + "maxlat": 40.8065348, + "maxlon": -73.9874375 + }, + "nodes": [ + 9055811833, + 3480338239 + ], + "geometry": [ + { "lat": 40.8065348, "lon": -73.9874375 }, + { "lat": 40.8058864, "lon": -73.9878875 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1088320646, + "bounds": { + "minlat": 40.7370748, + "minlon": -73.9791876, + "maxlat": 40.7371681, + "maxlon": -73.9789653 + }, + "nodes": [ + 9971262455, + 4015192894 + ], + "geometry": [ + { "lat": 40.7371681, "lon": -73.9791876 }, + { "lat": 40.7370748, "lon": -73.9789653 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "|merge_to_left", + "turn:lanes:forward": "left|through|", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088320647, + "bounds": { + "minlat": 40.7376333, + "minlon": -73.9809116, + "maxlat": 40.7378893, + "maxlon": -73.9802923 + }, + "nodes": [ + 42442889, + 4296650377, + 13706322765, + 4015192893 + ], + "geometry": [ + { "lat": 40.7378893, "lon": -73.9809116 }, + { "lat": 40.7378317, "lon": -73.9807722 }, + { "lat": 40.7377396, "lon": -73.9805494 }, + { "lat": 40.7376333, "lon": -73.9802923 } + ], + "tags": { + "bus:lanes:backward": "yes|yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088320648, + "bounds": { + "minlat": 40.7378893, + "minlon": -73.9814041, + "maxlat": 40.7380916, + "maxlon": -73.9809116 + }, + "nodes": [ + 42442889, + 5690422189, + 13706322766, + 9971262458 + ], + "geometry": [ + { "lat": 40.7378893, "lon": -73.9809116 }, + { "lat": 40.7379436, "lon": -73.9810438 }, + { "lat": 40.7379636, "lon": -73.9810924 }, + { "lat": 40.7380916, "lon": -73.9814041 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088320649, + "bounds": { + "minlat": 40.7386149, + "minlon": -73.9831493, + "maxlat": 40.7388377, + "maxlon": -73.9826181 + }, + "nodes": [ + 5266429277, + 12183286742, + 4132605271, + 42448701 + ], + "geometry": [ + { "lat": 40.7386149, "lon": -73.9826181 }, + { "lat": 40.7387554, "lon": -73.9829531 }, + { "lat": 40.7387768, "lon": -73.9830040 }, + { "lat": 40.7388377, "lon": -73.9831493 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088320650, + "bounds": { + "minlat": 40.7388377, + "minlon": -73.9836528, + "maxlat": 40.7390514, + "maxlon": -73.9831493 + }, + "nodes": [ + 42448701, + 4132605272, + 12183286741, + 5266429278, + 11043134789, + 9971262460 + ], + "geometry": [ + { "lat": 40.7388377, "lon": -73.9831493 }, + { "lat": 40.7388942, "lon": -73.9832837 }, + { "lat": 40.7389225, "lon": -73.9833505 }, + { "lat": 40.7390009, "lon": -73.9835343 }, + { "lat": 40.7390286, "lon": -73.9835993 }, + { "lat": 40.7390514, "lon": -73.9836528 } + ], + "tags": { + "bus:lanes:backward": "yes|yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through|", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088320651, + "bounds": { + "minlat": 40.7393571, + "minlon": -73.9847521, + "maxlat": 40.7395138, + "maxlon": -73.9843835 + }, + "nodes": [ + 9971262462, + 12181379208, + 8835579646, + 42446925 + ], + "geometry": [ + { "lat": 40.7393571, "lon": -73.9843835 }, + { "lat": 40.7394475, "lon": -73.9845947 }, + { "lat": 40.7394717, "lon": -73.9846520 }, + { "lat": 40.7395138, "lon": -73.9847521 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088320652, + "bounds": { + "minlat": 40.7395138, + "minlon": -73.9852227, + "maxlat": 40.7397109, + "maxlon": -73.9847521 + }, + "nodes": [ + 42446925, + 9971262461, + 12181379207, + 5266429279, + 9971262463 + ], + "geometry": [ + { "lat": 40.7395138, "lon": -73.9847521 }, + { "lat": 40.7395548, "lon": -73.9848494 }, + { "lat": 40.7395809, "lon": -73.9849115 }, + { "lat": 40.7396545, "lon": -73.9850890 }, + { "lat": 40.7397109, "lon": -73.9852227 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088320653, + "bounds": { + "minlat": 40.7399969, + "minlon": -73.9863033, + "maxlat": 40.7401693, + "maxlon": -73.9859003 + }, + "nodes": [ + 9971262464, + 13706256149, + 12181339174, + 10166167540, + 42448693 + ], + "geometry": [ + { "lat": 40.7399969, "lon": -73.9859003 }, + { "lat": 40.7400015, "lon": -73.9859110 }, + { "lat": 40.7401138, "lon": -73.9861735 }, + { "lat": 40.7401370, "lon": -73.9862277 }, + { "lat": 40.7401693, "lon": -73.9863033 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088320654, + "bounds": { + "minlat": 40.7412165, + "minlon": -73.9891378, + "maxlat": 40.7413643, + "maxlon": -73.9887819 + }, + "nodes": [ + 42428201, + 3019039007, + 4763900915 + ], + "geometry": [ + { "lat": 40.7413643, "lon": -73.9891378 }, + { "lat": 40.7413340, "lon": -73.9890652 }, + { "lat": 40.7412165, "lon": -73.9887819 } + ], + "tags": { + "alt_name": "East 23 Street", + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|", + "turn:lanes:forward": "left|through||", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088320655, + "bounds": { + "minlat": 40.7415506, + "minlon": -73.9903271, + "maxlat": 40.7418601, + "maxlon": -73.9895966 + }, + "nodes": [ + 9971262468, + 3019039006, + 42437881 + ], + "geometry": [ + { "lat": 40.7418601, "lon": -73.9903271 }, + { "lat": 40.7416002, "lon": -73.9897118 }, + { "lat": 40.7415506, "lon": -73.9895966 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|yes|designated|yes", + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "4", + "maxspeed": "25 mph", + "name": "West 23rd Street", + "name:ru": "Западная 23-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|through||right", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088320656, + "bounds": { + "minlat": 40.7426974, + "minlon": -73.9927979, + "maxlat": 40.7429103, + "maxlon": -73.9923036 + }, + "nodes": [ + 42430271, + 9971262469, + 9971262471 + ], + "geometry": [ + { "lat": 40.7429103, "lon": -73.9927979 }, + { "lat": 40.7428505, "lon": -73.9926657 }, + { "lat": 40.7426974, "lon": -73.9923036 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "West 23rd Street", + "name:ru": "Западная 23-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:forward": "through|right", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088320657, + "bounds": { + "minlat": 40.7429103, + "minlon": -73.9932219, + "maxlat": 40.7430966, + "maxlon": -73.9927979 + }, + "nodes": [ + 9971262472, + 9971262470, + 42430271 + ], + "geometry": [ + { "lat": 40.7430966, "lon": -73.9932219 }, + { "lat": 40.7429700, "lon": -73.9929262 }, + { "lat": 40.7429103, "lon": -73.9927979 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "West 23rd Street", + "name:ru": "Западная 23-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:forward": "through|right", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088320658, + "bounds": { + "minlat": 40.7439222, + "minlon": -73.9956382, + "maxlat": 40.7441065, + "maxlon": -73.9952122 + }, + "nodes": [ + 42437890, + 10171337696, + 4205565526 + ], + "geometry": [ + { "lat": 40.7441065, "lon": -73.9956382 }, + { "lat": 40.7440494, "lon": -73.9955062 }, + { "lat": 40.7439222, "lon": -73.9952122 } + ], + "tags": { + "bus:lanes": "yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "West 23rd Street", + "name:ru": "Западная 23-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:backward": "through|", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088321123, + "bounds": { + "minlat": 40.7474390, + "minlon": -74.0041638, + "maxlat": 40.7477028, + "maxlon": -74.0035356 + }, + "nodes": [ + 9971263898, + 9971263899, + 42437914 + ], + "geometry": [ + { "lat": 40.7474390, "lon": -74.0035356 }, + { "lat": 40.7476444, "lon": -74.0040246 }, + { "lat": 40.7477028, "lon": -74.0041638 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 23rd Street", + "name:ru": "Западная 23-я стрит", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes:backward": "|merge_to_left", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088321124, + "bounds": { + "minlat": 40.7487158, + "minlon": -73.9990646, + "maxlat": 40.7496585, + "maxlon": -73.9966580 + }, + "nodes": [ + 42438672, + 7341378759, + 42438666, + 7252758848, + 42438663, + 7252758846, + 12152894795, + 42438660, + 7252758844, + 12152894796, + 7690154498, + 42438657, + 42438651, + 12152894797, + 7252758832, + 42438641, + 12152894798, + 42438634, + 7252758841, + 42438624, + 7252758838, + 7252758856, + 42438610, + 7252758852, + 42438601, + 7252758850, + 7690154522, + 42438596, + 7690154524, + 42438592, + 42438587, + 42438577, + 42438572, + 7252758847, + 42438567, + 42438561, + 7690154520, + 7252758845, + 42438556, + 42438553, + 7252758843, + 10026259307 + ], + "geometry": [ + { "lat": 40.7496585, "lon": -73.9990646 }, + { "lat": 40.7495983, "lon": -73.9988978 }, + { "lat": 40.7495752, "lon": -73.9988367 }, + { "lat": 40.7495560, "lon": -73.9987841 }, + { "lat": 40.7495390, "lon": -73.9987319 }, + { "lat": 40.7495251, "lon": -73.9986818 }, + { "lat": 40.7495135, "lon": -73.9986261 }, + { "lat": 40.7495042, "lon": -73.9985708 }, + { "lat": 40.7494977, "lon": -73.9985228 }, + { "lat": 40.7494939, "lon": -73.9984795 }, + { "lat": 40.7494904, "lon": -73.9984335 }, + { "lat": 40.7494906, "lon": -73.9983866 }, + { "lat": 40.7494923, "lon": -73.9983296 }, + { "lat": 40.7494970, "lon": -73.9982640 }, + { "lat": 40.7495105, "lon": -73.9980988 }, + { "lat": 40.7495121, "lon": -73.9980510 }, + { "lat": 40.7495119, "lon": -73.9980011 }, + { "lat": 40.7495086, "lon": -73.9979542 }, + { "lat": 40.7495054, "lon": -73.9979156 }, + { "lat": 40.7494987, "lon": -73.9978593 }, + { "lat": 40.7494894, "lon": -73.9978010 }, + { "lat": 40.7494774, "lon": -73.9977408 }, + { "lat": 40.7494616, "lon": -73.9976827 }, + { "lat": 40.7494422, "lon": -73.9976262 }, + { "lat": 40.7494191, "lon": -73.9975656 }, + { "lat": 40.7493895, "lon": -73.9974905 }, + { "lat": 40.7493636, "lon": -73.9974296 }, + { "lat": 40.7493375, "lon": -73.9973654 }, + { "lat": 40.7493088, "lon": -73.9973116 }, + { "lat": 40.7492667, "lon": -73.9972170 }, + { "lat": 40.7492262, "lon": -73.9971332 }, + { "lat": 40.7491856, "lon": -73.9970686 }, + { "lat": 40.7491378, "lon": -73.9970022 }, + { "lat": 40.7490881, "lon": -73.9969452 }, + { "lat": 40.7490281, "lon": -73.9968884 }, + { "lat": 40.7489834, "lon": -73.9968529 }, + { "lat": 40.7489701, "lon": -73.9968435 }, + { "lat": 40.7489215, "lon": -73.9968094 }, + { "lat": 40.7488589, "lon": -73.9967711 }, + { "lat": 40.7488013, "lon": -73.9967348 }, + { "lat": 40.7487414, "lon": -73.9966839 }, + { "lat": 40.7487158, "lon": -73.9966580 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 28th Street", + "name:ru": "Западная 28-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1088321125, + "bounds": { + "minlat": 40.7472363, + "minlon": -73.9961920, + "maxlat": 40.7484350, + "maxlon": -73.9933621 + }, + "nodes": [ + 42435633, + 10170593057, + 5481861485, + 5481861484, + 10168911602, + 42438547 + ], + "geometry": [ + { "lat": 40.7484350, "lon": -73.9961920 }, + { "lat": 40.7483719, "lon": -73.9960489 }, + { "lat": 40.7481072, "lon": -73.9954398 }, + { "lat": 40.7480009, "lon": -73.9951861 }, + { "lat": 40.7472898, "lon": -73.9934848 }, + { "lat": 40.7472363, "lon": -73.9933621 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 28th Street", + "name:ru": "Западная 28-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1088325193, + "bounds": { + "minlat": 40.7447916, + "minlon": -73.9763778, + "maxlat": 40.7449988, + "maxlon": -73.9758876 + }, + "nodes": [ + 9971314375, + 3932847281, + 5131026388 + ], + "geometry": [ + { "lat": 40.7449988, "lon": -73.9763778 }, + { "lat": 40.7448447, "lon": -73.9760122 }, + { "lat": 40.7447916, "lon": -73.9758876 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|yes|designated", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088325194, + "bounds": { + "minlat": 40.7454012, + "minlon": -73.9776389, + "maxlat": 40.7455275, + "maxlon": -73.9773346 + }, + "nodes": [ + 42445382, + 9971314378 + ], + "geometry": [ + { "lat": 40.7454012, "lon": -73.9773346 }, + { "lat": 40.7455275, "lon": -73.9776389 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088325195, + "bounds": { + "minlat": 40.7468789, + "minlon": -73.9812660, + "maxlat": 40.7470461, + "maxlon": -73.9808685 + }, + "nodes": [ + 9971314381, + 12181374926, + 8119462466, + 3786901743 + ], + "geometry": [ + { "lat": 40.7468789, "lon": -73.9808685 }, + { "lat": 40.7469855, "lon": -73.9811210 }, + { "lat": 40.7470113, "lon": -73.9811827 }, + { "lat": 40.7470461, "lon": -73.9812660 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated|yes", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "||right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088325196, + "bounds": { + "minlat": 40.7484537, + "minlon": -73.9849473, + "maxlat": 40.7486189, + "maxlon": -73.9845455 + }, + "nodes": [ + 42437644, + 8133342841, + 9971314382 + ], + "geometry": [ + { "lat": 40.7484537, "lon": -73.9845455 }, + { "lat": 40.7485082, "lon": -73.9846794 }, + { "lat": 40.7486189, "lon": -73.9849473 } + ], + "tags": { + "access": "yes", + "access:lanes:backward": "yes|no|yes", + "access:lanes:forward": "yes|no", + "bus:lanes:backward": "yes|designated|yes", + "bus:lanes:forward": "yes|designated", + "foot": "designated", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "||right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088325197, + "bounds": { + "minlat": 40.7534078, + "minlon": -73.9968801, + "maxlat": 40.7536418, + "maxlon": -73.9963175 + }, + "nodes": [ + 9971314388, + 5851792229, + 42437663 + ], + "geometry": [ + { "lat": 40.7536418, "lon": -73.9968801 }, + { "lat": 40.7534591, "lon": -73.9964409 }, + { "lat": 40.7534078, "lon": -73.9963175 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|designated|yes", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "||right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088325198, + "bounds": { + "minlat": 40.7542744, + "minlon": -73.9984789, + "maxlat": 40.7543070, + "maxlon": -73.9984019 + }, + "nodes": [ + 6905716423, + 2779131560 + ], + "geometry": [ + { "lat": 40.7543070, "lon": -73.9984789 }, + { "lat": 40.7542744, "lon": -73.9984019 } + ], + "tags": { + "access:lanes": "yes|no", + "bus:lanes": "yes|designated", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "surface": "asphalt", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088325199, + "bounds": { + "minlat": 40.7553870, + "minlon": -74.0014670, + "maxlat": 40.7555666, + "maxlon": -74.0010421 + }, + "nodes": [ + 9971314389, + 9971314390 + ], + "geometry": [ + { "lat": 40.7555666, "lon": -74.0014670 }, + { "lat": 40.7553870, "lon": -74.0010421 } + ], + "tags": { + "bus:lanes:forward": "yes|designated", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "surface": "asphalt", + "turn:lanes:backward": "left|through;right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1088327048, + "bounds": { + "minlat": 40.7543104, + "minlon": -73.9973473, + "maxlat": 40.7545890, + "maxlon": -73.9970628 + }, + "nodes": [ + 9971300853, + 11144700328, + 11144700327, + 9971300854, + 11144700353, + 7037071175 + ], + "geometry": [ + { "lat": 40.7543104, "lon": -73.9973473 }, + { "lat": 40.7543883, "lon": -73.9972403 }, + { "lat": 40.7544336, "lon": -73.9971926 }, + { "lat": 40.7545359, "lon": -73.9971175 }, + { "lat": 40.7545635, "lon": -73.9970916 }, + { "lat": 40.7545890, "lon": -73.9970628 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 1088327049, + "bounds": { + "minlat": 40.7543104, + "minlon": -73.9973473, + "maxlat": 40.7546303, + "maxlon": -73.9971610 + }, + "nodes": [ + 1533280147, + 8261123400, + 11144700329, + 9971300853 + ], + "geometry": [ + { "lat": 40.7546303, "lon": -73.9971610 }, + { "lat": 40.7545716, "lon": -73.9971929 }, + { "lat": 40.7544727, "lon": -73.9972555 }, + { "lat": 40.7543104, "lon": -73.9973473 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "sidewalk:right": "separate", + "source:hgv": "Rules of the City of New York Title 34 §4-13 http://24.97.137.100/nyc/rcny/Title34_4-13.asp", + "surface": "asphalt", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 1088327050, + "bounds": { + "minlat": 40.7540713, + "minlon": -73.9974065, + "maxlat": 40.7547329, + "maxlon": -73.9958428 + }, + "nodes": [ + 42444960, + 8660596954, + 10089242333, + 8261123398, + 7037071175, + 1533280147, + 8261123401, + 2779131561 + ], + "geometry": [ + { "lat": 40.7540713, "lon": -73.9958428 }, + { "lat": 40.7541194, "lon": -73.9959536 }, + { "lat": 40.7543354, "lon": -73.9964643 }, + { "lat": 40.7545331, "lon": -73.9969235 }, + { "lat": 40.7545890, "lon": -73.9970628 }, + { "lat": 40.7546303, "lon": -73.9971610 }, + { "lat": 40.7546597, "lon": -73.9972292 }, + { "lat": 40.7547329, "lon": -73.9974065 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "West 35th Street", + "name:ru": "Западная 35-я стрит", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1088354566, + "bounds": { + "minlat": 40.7523014, + "minlon": -73.9392335, + "maxlat": 40.7525699, + "maxlon": -73.9388806 + }, + "nodes": [ + 9971542827, + 9971542830, + 9971542828, + 9971542831, + 9971542829 + ], + "geometry": [ + { "lat": 40.7525099, "lon": -73.9388806 }, + { "lat": 40.7525371, "lon": -73.9389336 }, + { "lat": 40.7525699, "lon": -73.9389992 }, + { "lat": 40.7523652, "lon": -73.9391779 }, + { "lat": 40.7523014, "lon": -73.9392335 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1088596790, + "bounds": { + "minlat": 40.8540291, + "minlon": -73.9635538, + "maxlat": 40.8540730, + "maxlon": -73.9635326 + }, + "nodes": [ + 76465622, + 595485042 + ], + "geometry": [ + { "lat": 40.8540291, "lon": -73.9635538 }, + { "lat": 40.8540730, "lon": -73.9635326 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 1088596791, + "bounds": { + "minlat": 40.8535859, + "minlon": -73.9638041, + "maxlat": 40.8540291, + "maxlon": -73.9635538 + }, + "nodes": [ + 76465622, + 9973298519, + 9973298520, + 103121480 + ], + "geometry": [ + { "lat": 40.8540291, "lon": -73.9635538 }, + { "lat": 40.8540009, "lon": -73.9636421 }, + { "lat": 40.8536600, "lon": -73.9638041 }, + { "lat": 40.8535859, "lon": -73.9637699 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "maxheight": "13'2\"", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "oneway": "yes", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 1088611812, + "bounds": { + "minlat": 40.8575551, + "minlon": -73.9802208, + "maxlat": 40.8577622, + "maxlon": -73.9799967 + }, + "nodes": [ + 103146639, + 12020325927, + 12020325922, + 103105925 + ], + "geometry": [ + { "lat": 40.8575551, "lon": -73.9799967 }, + { "lat": 40.8576170, "lon": -73.9800633 }, + { "lat": 40.8576789, "lon": -73.9801298 }, + { "lat": 40.8577622, "lon": -73.9802208 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "lanes": "2", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1089183361, + "bounds": { + "minlat": 40.6990885, + "minlon": -73.9746022, + "maxlat": 40.7000237, + "maxlon": -73.9731260 + }, + "nodes": [ + 9977620208, + 10716575101, + 9977620209 + ], + "geometry": [ + { "lat": 40.7000237, "lon": -73.9731260 }, + { "lat": 40.6999298, "lon": -73.9732742 }, + { "lat": 40.6990885, "lon": -73.9746022 } + ], + "tags": { + "access": "destination", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1089186681, + "bounds": { + "minlat": 40.8240921, + "minlon": -73.9106869, + "maxlat": 40.8242477, + "maxlon": -73.9106032 + }, + "nodes": [ + 9977850231, + 10647825087, + 9977850232 + ], + "geometry": [ + { "lat": 40.8242477, "lon": -73.9106869 }, + { "lat": 40.8241420, "lon": -73.9106296 }, + { "lat": 40.8240921, "lon": -73.9106032 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1089315322, + "bounds": { + "minlat": 40.8326404, + "minlon": -74.0112707, + "maxlat": 40.8330744, + "maxlon": -74.0106710 + }, + "nodes": [ + 695055283, + 695055286, + 9895312494, + 695055289, + 5673866999, + 9895312497, + 695055291 + ], + "geometry": [ + { "lat": 40.8330744, "lon": -74.0112707 }, + { "lat": 40.8330303, "lon": -74.0112359 }, + { "lat": 40.8329956, "lon": -74.0111981 }, + { "lat": 40.8329499, "lon": -74.0111470 }, + { "lat": 40.8328943, "lon": -74.0110644 }, + { "lat": 40.8328839, "lon": -74.0110490 }, + { "lat": 40.8326404, "lon": -74.0106710 } + ], + "tags": { + "highway": "tertiary", + "junction": "jughandle", + "name": "Remsen Place", + "sidewalk:left": "separate", + "sidewalk:right": "no" + } +}, +{ + "type": "way", + "id": 1089315323, + "bounds": { + "minlat": 40.8335964, + "minlon": -74.0112803, + "maxlat": 40.8338628, + "maxlon": -74.0111300 + }, + "nodes": [ + 752204773, + 5498647265, + 5498647266, + 5498647267, + 695055278 + ], + "geometry": [ + { "lat": 40.8338628, "lon": -74.0111300 }, + { "lat": 40.8338338, "lon": -74.0111701 }, + { "lat": 40.8338032, "lon": -74.0111993 }, + { "lat": 40.8337148, "lon": -74.0112388 }, + { "lat": 40.8335964, "lon": -74.0112803 } + ], + "tags": { + "highway": "tertiary", + "junction": "jughandle", + "name": "Remsen Place" + } +}, +{ + "type": "way", + "id": 1089315324, + "bounds": { + "minlat": 40.8330744, + "minlon": -74.0112803, + "maxlat": 40.8335964, + "maxlon": -74.0112267 + }, + "nodes": [ + 695055283, + 9978525840, + 9978525841, + 695055278 + ], + "geometry": [ + { "lat": 40.8330744, "lon": -74.0112707 }, + { "lat": 40.8331745, "lon": -74.0112333 }, + { "lat": 40.8333190, "lon": -74.0112267 }, + { "lat": 40.8335964, "lon": -74.0112803 } + ], + "tags": { + "highway": "tertiary", + "junction": "jughandle", + "maxheight:signed": "no", + "name": "Remsen Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1089388101, + "bounds": { + "minlat": 40.7061998, + "minlon": -73.9691310, + "maxlat": 40.7070290, + "maxlon": -73.9688871 + }, + "nodes": [ + 42477965, + 10011208626, + 9979175087, + 9979204925 + ], + "geometry": [ + { "lat": 40.7070290, "lon": -73.9691310 }, + { "lat": 40.7069633, "lon": -73.9691117 }, + { "lat": 40.7069473, "lon": -73.9691070 }, + { "lat": 40.7061998, "lon": -73.9688871 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1089388102, + "bounds": { + "minlat": 40.7058585, + "minlon": -73.9689703, + "maxlat": 40.7060076, + "maxlon": -73.9680238 + }, + "nodes": [ + 9979204926, + 10011208636, + 9979175088, + 9979204927, + 9979204928, + 9979204929 + ], + "geometry": [ + { "lat": 40.7059669, "lon": -73.9680238 }, + { "lat": 40.7059379, "lon": -73.9681340 }, + { "lat": 40.7059333, "lon": -73.9681516 }, + { "lat": 40.7058860, "lon": -73.9683316 }, + { "lat": 40.7060076, "lon": -73.9684365 }, + { "lat": 40.7058585, "lon": -73.9689703 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "unpaved" + } +}, +{ + "type": "way", + "id": 1089396226, + "bounds": { + "minlat": 40.8400564, + "minlon": -73.9391870, + "maxlat": 40.8403202, + "maxlon": -73.9389446 + }, + "nodes": [ + 9979245309, + 9979245310, + 9979245316, + 9979245311, + 9979245312, + 9979245313 + ], + "geometry": [ + { "lat": 40.8400564, "lon": -73.9391870 }, + { "lat": 40.8401214, "lon": -73.9391316 }, + { "lat": 40.8401587, "lon": -73.9391020 }, + { "lat": 40.8402616, "lon": -73.9390201 }, + { "lat": 40.8402680, "lon": -73.9389883 }, + { "lat": 40.8403202, "lon": -73.9389446 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1089396227, + "bounds": { + "minlat": 40.8402616, + "minlon": -73.9390291, + "maxlat": 40.8403398, + "maxlon": -73.9389904 + }, + "nodes": [ + 9979245311, + 9979245314, + 9979245315 + ], + "geometry": [ + { "lat": 40.8402616, "lon": -73.9390201 }, + { "lat": 40.8402838, "lon": -73.9390291 }, + { "lat": 40.8403398, "lon": -73.9389904 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1089396228, + "bounds": { + "minlat": 40.8401063, + "minlon": -73.9389405, + "maxlat": 40.8402466, + "maxlon": -73.9388357 + }, + "nodes": [ + 9979278918, + 9979278919 + ], + "geometry": [ + { "lat": 40.8401063, "lon": -73.9389405 }, + { "lat": 40.8402466, "lon": -73.9388357 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1089396229, + "bounds": { + "minlat": 40.8400998, + "minlon": -73.9391020, + "maxlat": 40.8401587, + "maxlon": -73.9389405 + }, + "nodes": [ + 9979245316, + 9979278917, + 9979278918 + ], + "geometry": [ + { "lat": 40.8401587, "lon": -73.9391020 }, + { "lat": 40.8400998, "lon": -73.9389738 }, + { "lat": 40.8401063, "lon": -73.9389405 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1089398155, + "bounds": { + "minlat": 40.7242566, + "minlon": -73.9227443, + "maxlat": 40.7244610, + "maxlon": -73.9212070 + }, + "nodes": [ + 8509164453, + 11217410754, + 9979286445, + 11217410755, + 9979286446 + ], + "geometry": [ + { "lat": 40.7243801, "lon": -73.9212070 }, + { "lat": 40.7242566, "lon": -73.9217710 }, + { "lat": 40.7242722, "lon": -73.9219350 }, + { "lat": 40.7244356, "lon": -73.9227145 }, + { "lat": 40.7244610, "lon": -73.9227443 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1089508893, + "bounds": { + "minlat": 40.8440785, + "minlon": -73.9958308, + "maxlat": 40.8454018, + "maxlon": -73.9935209 + }, + "nodes": [ + 103172164, + 103110254, + 103294155, + 103189429 + ], + "geometry": [ + { "lat": 40.8454018, "lon": -73.9958308 }, + { "lat": 40.8449510, "lon": -73.9950366 }, + { "lat": 40.8444934, "lon": -73.9942453 }, + { "lat": 40.8440785, "lon": -73.9935209 } + ], + "tags": { + "highway": "tertiary", + "name": "East Brinkerhoff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brinkerhoff", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1089508894, + "bounds": { + "minlat": 40.8436752, + "minlon": -73.9935209, + "maxlat": 40.8440785, + "maxlon": -73.9928056 + }, + "nodes": [ + 103189429, + 103255681 + ], + "geometry": [ + { "lat": 40.8440785, "lon": -73.9935209 }, + { "lat": 40.8436752, "lon": -73.9928056 } + ], + "tags": { + "highway": "tertiary", + "maxheight:signed": "no", + "name": "East Brinkerhoff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brinkerhoff", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1089573084, + "bounds": { + "minlat": 40.7071509, + "minlon": -74.0133710, + "maxlat": 40.7077766, + "maxlon": -74.0129583 + }, + "nodes": [ + 42456884, + 4739552810, + 4206997175, + 42446622 + ], + "geometry": [ + { "lat": 40.7071509, "lon": -74.0133710 }, + { "lat": 40.7075305, "lon": -74.0131198 }, + { "lat": 40.7077386, "lon": -74.0129844 }, + { "lat": 40.7077766, "lon": -74.0129583 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Trinity Place", + "name:etymology:wikidata": "Q866896", + "name:ko": "트리니티 플레이스", + "name:ru": "Тринити-Плейс", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1089715892, + "bounds": { + "minlat": 40.7363566, + "minlon": -73.9326659, + "maxlat": 40.7365507, + "maxlon": -73.9322348 + }, + "nodes": [ + 42896787, + 11155242464, + 9981925177 + ], + "geometry": [ + { "lat": 40.7363566, "lon": -73.9326659 }, + { "lat": 40.7364167, "lon": -73.9325324 }, + { "lat": 40.7365507, "lon": -73.9322348 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 1089715893, + "bounds": { + "minlat": 40.7447251, + "minlon": -73.9345028, + "maxlat": 40.7448625, + "maxlon": -73.9335542 + }, + "nodes": [ + 42913049, + 5538983346, + 10762127809, + 11180927135, + 11180927134, + 6853863063, + 3785676228, + 42866365 + ], + "geometry": [ + { "lat": 40.7448625, "lon": -73.9345028 }, + { "lat": 40.7448528, "lon": -73.9344235 }, + { "lat": 40.7448475, "lon": -73.9343789 }, + { "lat": 40.7448421, "lon": -73.9343325 }, + { "lat": 40.7448211, "lon": -73.9341503 }, + { "lat": 40.7448107, "lon": -73.9340600 }, + { "lat": 40.7447704, "lon": -73.9337174 }, + { "lat": 40.7447251, "lon": -73.9335542 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "||right" + } +}, +{ + "type": "way", + "id": 1089742803, + "bounds": { + "minlat": 40.7444059, + "minlon": -73.9307848, + "maxlat": 40.7468520, + "maxlon": -73.9303172 + }, + "nodes": [ + 42908548, + 10069673256, + 10069673255, + 10069673254, + 10069673253, + 5538983344, + 10069673252, + 42817756, + 10069673273, + 10069673272, + 10743722079, + 597294551, + 3798410774, + 597294553 + ], + "geometry": [ + { "lat": 40.7468520, "lon": -73.9303251 }, + { "lat": 40.7468265, "lon": -73.9303202 }, + { "lat": 40.7467967, "lon": -73.9303172 }, + { "lat": 40.7467739, "lon": -73.9303191 }, + { "lat": 40.7467493, "lon": -73.9303228 }, + { "lat": 40.7464301, "lon": -73.9303841 }, + { "lat": 40.7463898, "lon": -73.9303929 }, + { "lat": 40.7463239, "lon": -73.9304070 }, + { "lat": 40.7462870, "lon": -73.9304142 }, + { "lat": 40.7462223, "lon": -73.9304272 }, + { "lat": 40.7448170, "lon": -73.9307031 }, + { "lat": 40.7447128, "lon": -73.9307236 }, + { "lat": 40.7445801, "lon": -73.9307528 }, + { "lat": 40.7444059, "lon": -73.9307848 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "34th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1089742804, + "bounds": { + "minlat": 40.7442973, + "minlon": -73.9298588, + "maxlat": 40.7462165, + "maxlon": -73.9294943 + }, + "nodes": [ + 597294545, + 3798410772, + 597294546, + 10743722074, + 10069673268, + 42817758 + ], + "geometry": [ + { "lat": 40.7442973, "lon": -73.9298588 }, + { "lat": 40.7444746, "lon": -73.9298199 }, + { "lat": 40.7446033, "lon": -73.9297939 }, + { "lat": 40.7447083, "lon": -73.9297742 }, + { "lat": 40.7461124, "lon": -73.9295091 }, + { "lat": 40.7462165, "lon": -73.9294943 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "35th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1089742805, + "bounds": { + "minlat": 40.7441914, + "minlon": -73.9289298, + "maxlat": 40.7461093, + "maxlon": -73.9285535 + }, + "nodes": [ + 42817761, + 10069673275, + 10069673274, + 11272980333, + 3798410796, + 597294520 + ], + "geometry": [ + { "lat": 40.7461093, "lon": -73.9285535 }, + { "lat": 40.7460078, "lon": -73.9285728 }, + { "lat": 40.7446039, "lon": -73.9288496 }, + { "lat": 40.7444948, "lon": -73.9288708 }, + { "lat": 40.7443655, "lon": -73.9288959 }, + { "lat": 40.7441914, "lon": -73.9289298 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "36th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1089749110, + "bounds": { + "minlat": 40.7380463, + "minlon": -73.9372514, + "maxlat": 40.7381084, + "maxlon": -73.9367993 + }, + "nodes": [ + 42849642, + 13049334884, + 9982189112, + 9179114926 + ], + "geometry": [ + { "lat": 40.7380463, "lon": -73.9367993 }, + { "lat": 40.7380585, "lon": -73.9368928 }, + { "lat": 40.7380733, "lon": -73.9370075 }, + { "lat": 40.7381084, "lon": -73.9372514 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1089749111, + "bounds": { + "minlat": 40.7384935, + "minlon": -73.9406589, + "maxlat": 40.7386473, + "maxlon": -73.9400286 + }, + "nodes": [ + 597269937, + 9179086306, + 7761549843 + ], + "geometry": [ + { "lat": 40.7386473, "lon": -73.9406589 }, + { "lat": 40.7385462, "lon": -73.9403124 }, + { "lat": 40.7384935, "lon": -73.9400286 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:right": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1089753144, + "bounds": { + "minlat": 40.7176559, + "minlon": -73.9387447, + "maxlat": 40.7183236, + "maxlon": -73.9384529 + }, + "nodes": [ + 42504218, + 13684710150, + 9695771700, + 6348484389, + 6100649476 + ], + "geometry": [ + { "lat": 40.7176559, "lon": -73.9384529 }, + { "lat": 40.7177643, "lon": -73.9384978 }, + { "lat": 40.7177911, "lon": -73.9385080 }, + { "lat": 40.7179158, "lon": -73.9385648 }, + { "lat": 40.7183236, "lon": -73.9387447 } + ], + "tags": { + "access": "permit", + "highway": "service", + "name": "Debevoise Avenue", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1089779104, + "bounds": { + "minlat": 40.7390221, + "minlon": -73.9428053, + "maxlat": 40.7390740, + "maxlon": -73.9425426 + }, + "nodes": [ + 6644592936, + 9982697923 + ], + "geometry": [ + { "lat": 40.7390740, "lon": -73.9428053 }, + { "lat": 40.7390221, "lon": -73.9425426 } + ], + "tags": { + "bridge": "movable", + "bridge:movable": "retractable", + "bridge:name": "Borden Avenue Bridge", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "yes", + "wikidata": "Q48743392", + "wikipedia": "en:Borden Avenue Bridge" + } +}, +{ + "type": "way", + "id": 1089779105, + "bounds": { + "minlat": 40.7354379, + "minlon": -73.9370583, + "maxlat": 40.7357486, + "maxlon": -73.9367642 + }, + "nodes": [ + 42866381, + 9982697953, + 42866384 + ], + "geometry": [ + { "lat": 40.7357486, "lon": -73.9367642 }, + { "lat": 40.7356862, "lon": -73.9368230 }, + { "lat": 40.7354379, "lon": -73.9370583 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Van Dam Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1089779106, + "bounds": { + "minlat": 40.7350026, + "minlon": -73.9362915, + "maxlat": 40.7351255, + "maxlon": -73.9359672 + }, + "nodes": [ + 42896778, + 11155242467, + 9982697957 + ], + "geometry": [ + { "lat": 40.7350026, "lon": -73.9362915 }, + { "lat": 40.7350395, "lon": -73.9361942 }, + { "lat": 40.7351255, "lon": -73.9359672 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "right", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 1089780544, + "bounds": { + "minlat": 40.7466884, + "minlon": -73.9423781, + "maxlat": 40.7470835, + "maxlon": -73.9420831 + }, + "nodes": [ + 9982698533, + 4228583952, + 9982745652, + 2971841379 + ], + "geometry": [ + { "lat": 40.7466884, "lon": -73.9420831 }, + { "lat": 40.7470364, "lon": -73.9423253 }, + { "lat": 40.7470629, "lon": -73.9423511 }, + { "lat": 40.7470835, "lon": -73.9423781 } + ], + "tags": { + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left;through|right" + } +}, +{ + "type": "way", + "id": 1089780545, + "bounds": { + "minlat": 40.7477306, + "minlon": -73.9406353, + "maxlat": 40.7478172, + "maxlon": -73.9405840 + }, + "nodes": [ + 9982698546, + 6643455983 + ], + "geometry": [ + { "lat": 40.7478172, "lon": -73.9406353 }, + { "lat": 40.7477306, "lon": -73.9405840 } + ], + "tags": { + "highway": "service", + "name": "Dutch Kills Street", + "service": "emergency_access", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1089780546, + "bounds": { + "minlat": 40.7466130, + "minlon": -73.9438229, + "maxlat": 40.7468246, + "maxlon": -73.9433013 + }, + "nodes": [ + 2971841366, + 4228583933, + 11520102380, + 2971841370 + ], + "geometry": [ + { "lat": 40.7468246, "lon": -73.9433013 }, + { "lat": 40.7467889, "lon": -73.9433861 }, + { "lat": 40.7466967, "lon": -73.9436150 }, + { "lat": 40.7466130, "lon": -73.9438229 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Jackson Avenue", + "oneway": "yes", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1089784562, + "bounds": { + "minlat": 40.7475718, + "minlon": -73.9450503, + "maxlat": 40.7476667, + "maxlon": -73.9445566 + }, + "nodes": [ + 9982745659, + 11180928340, + 9982745662, + 42825546 + ], + "geometry": [ + { "lat": 40.7475718, "lon": -73.9445566 }, + { "lat": 40.7476092, "lon": -73.9447523 }, + { "lat": 40.7476466, "lon": -73.9449475 }, + { "lat": 40.7476667, "lon": -73.9450503 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1089784563, + "bounds": { + "minlat": 40.7480271, + "minlon": -73.9473607, + "maxlat": 40.7481130, + "maxlon": -73.9469057 + }, + "nodes": [ + 7478004216, + 11163899157, + 5034782283, + 42825544 + ], + "geometry": [ + { "lat": 40.7480271, "lon": -73.9469057 }, + { "lat": 40.7480779, "lon": -73.9471760 }, + { "lat": 40.7480907, "lon": -73.9472441 }, + { "lat": 40.7481130, "lon": -73.9473607 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1089784564, + "bounds": { + "minlat": 40.7481130, + "minlon": -73.9479369, + "maxlat": 40.7482259, + "maxlon": -73.9473607 + }, + "nodes": [ + 9982750328, + 12259922436, + 5034782279, + 42825544 + ], + "geometry": [ + { "lat": 40.7482259, "lon": -73.9479369 }, + { "lat": 40.7482141, "lon": -73.9478763 }, + { "lat": 40.7481363, "lon": -73.9474774 }, + { "lat": 40.7481130, "lon": -73.9473607 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1089784565, + "bounds": { + "minlat": 40.7484653, + "minlon": -73.9496291, + "maxlat": 40.7485546, + "maxlon": -73.9491667 + }, + "nodes": [ + 42825542, + 9982750329, + 9982750330 + ], + "geometry": [ + { "lat": 40.7485546, "lon": -73.9496291 }, + { "lat": 40.7485291, "lon": -73.9494953 }, + { "lat": 40.7484653, "lon": -73.9491667 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 1089787527, + "bounds": { + "minlat": 40.7448588, + "minlon": -73.9507827, + "maxlat": 40.7450298, + "maxlon": -73.9507230 + }, + "nodes": [ + 11384101538, + 9982728599, + 42860531 + ], + "geometry": [ + { "lat": 40.7448588, "lon": -73.9507827 }, + { "lat": 40.7449683, "lon": -73.9507466 }, + { "lat": 40.7450298, "lon": -73.9507230 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1089787528, + "bounds": { + "minlat": 40.7489444, + "minlon": -73.9522085, + "maxlat": 40.7490527, + "maxlon": -73.9516444 + }, + "nodes": [ + 42825539, + 8549589535, + 5034184402, + 42825534 + ], + "geometry": [ + { "lat": 40.7489444, "lon": -73.9516444 }, + { "lat": 40.7490255, "lon": -73.9520572 }, + { "lat": 40.7490333, "lon": -73.9520982 }, + { "lat": 40.7490527, "lon": -73.9522085 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1089787529, + "bounds": { + "minlat": 40.7490527, + "minlon": -73.9527738, + "maxlat": 40.7491503, + "maxlon": -73.9522085 + }, + "nodes": [ + 42825534, + 5034184406, + 2991208457 + ], + "geometry": [ + { "lat": 40.7490527, "lon": -73.9522085 }, + { "lat": 40.7490746, "lon": -73.9523288 }, + { "lat": 40.7491503, "lon": -73.9527738 } + ], + "tags": { + "highway": "unclassified", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lcn": "proposed", + "maxspeed": "25 mph", + "name": "44th Drive", + "surface": "asphalt", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 1089787530, + "bounds": { + "minlat": 40.7485546, + "minlon": -73.9500428, + "maxlat": 40.7486335, + "maxlon": -73.9496291 + }, + "nodes": [ + 42825542, + 9982771921, + 2472137214 + ], + "geometry": [ + { "lat": 40.7485546, "lon": -73.9496291 }, + { "lat": 40.7485791, "lon": -73.9497572 }, + { "lat": 40.7486335, "lon": -73.9500428 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "track", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "44th Drive", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 1089789814, + "bounds": { + "minlat": 40.7469389, + "minlon": -73.9568933, + "maxlat": 40.7485250, + "maxlon": -73.9563631 + }, + "nodes": [ + 1696727885, + 9982771521, + 9982771522, + 8018964706, + 9982771525, + 2387504625, + 9982771524, + 1696727886, + 2053820243, + 9982771526, + 2053820242, + 2053820241, + 2053820240, + 3406635899, + 2053820239, + 2053820238, + 276318083, + 2618763594 + ], + "geometry": [ + { "lat": 40.7485250, "lon": -73.9568933 }, + { "lat": 40.7484764, "lon": -73.9568725 }, + { "lat": 40.7484402, "lon": -73.9568576 }, + { "lat": 40.7484058, "lon": -73.9568428 }, + { "lat": 40.7476933, "lon": -73.9565332 }, + { "lat": 40.7476217, "lon": -73.9565026 }, + { "lat": 40.7475389, "lon": -73.9564707 }, + { "lat": 40.7473843, "lon": -73.9564095 }, + { "lat": 40.7473419, "lon": -73.9563940 }, + { "lat": 40.7473027, "lon": -73.9563811 }, + { "lat": 40.7472643, "lon": -73.9563717 }, + { "lat": 40.7472286, "lon": -73.9563667 }, + { "lat": 40.7471873, "lon": -73.9563642 }, + { "lat": 40.7471457, "lon": -73.9563631 }, + { "lat": 40.7471053, "lon": -73.9563650 }, + { "lat": 40.7470595, "lon": -73.9563694 }, + { "lat": 40.7469974, "lon": -73.9563802 }, + { "lat": 40.7469389, "lon": -73.9563950 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Center", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 1089789815, + "bounds": { + "minlat": 40.7467853, + "minlon": -73.9564440, + "maxlat": 40.7469389, + "maxlon": -73.9563950 + }, + "nodes": [ + 2618763594, + 11241325982, + 11241325980, + 5834590677 + ], + "geometry": [ + { "lat": 40.7469389, "lon": -73.9563950 }, + { "lat": 40.7469243, "lon": -73.9563995 }, + { "lat": 40.7468007, "lon": -73.9564391 }, + { "lat": 40.7467853, "lon": -73.9564440 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "cycleway:surface": "paving_stones", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "oneway": "no", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Center", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 1089789816, + "bounds": { + "minlat": 40.7462491, + "minlon": -73.9566302, + "maxlat": 40.7467853, + "maxlon": -73.9564440 + }, + "nodes": [ + 5834590677, + 5834590675 + ], + "geometry": [ + { "lat": 40.7467853, "lon": -73.9564440 }, + { "lat": 40.7462491, "lon": -73.9566302 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Center", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1089789818, + "bounds": { + "minlat": 40.7461010, + "minlon": -73.9567091, + "maxlat": 40.7462491, + "maxlon": -73.9566302 + }, + "nodes": [ + 5834590675, + 6883911063, + 276318084, + 2053820237, + 2053820235, + 5834590676 + ], + "geometry": [ + { "lat": 40.7462491, "lon": -73.9566302 }, + { "lat": 40.7462350, "lon": -73.9566351 }, + { "lat": 40.7461746, "lon": -73.9566576 }, + { "lat": 40.7461443, "lon": -73.9566760 }, + { "lat": 40.7461131, "lon": -73.9566995 }, + { "lat": 40.7461010, "lon": -73.9567091 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "cycleway:surface": "paving_stones", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "oneway": "no", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Center", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 1089789819, + "bounds": { + "minlat": 40.7461454, + "minlon": -73.9566576, + "maxlat": 40.7461746, + "maxlon": -73.9565111 + }, + "nodes": [ + 9982771529, + 276318084 + ], + "geometry": [ + { "lat": 40.7461454, "lon": -73.9565111 }, + { "lat": 40.7461746, "lon": -73.9566576 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "47th Avenue", + "oneway": "yes", + "sidewalk": "both", + "sidewalk:both:surface": "concrete", + "smoothness": "excellent", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "47th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 1089789820, + "bounds": { + "minlat": 40.7449222, + "minlon": -73.9578086, + "maxlat": 40.7449819, + "maxlon": -73.9577572 + }, + "nodes": [ + 4886088631, + 42807444 + ], + "geometry": [ + { "lat": 40.7449819, "lon": -73.9577572 }, + { "lat": 40.7449222, "lon": -73.9578086 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Center", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1089789821, + "bounds": { + "minlat": 40.7448801, + "minlon": -73.9578086, + "maxlat": 40.7449222, + "maxlon": -73.9576126 + }, + "nodes": [ + 9982771536, + 11241326017, + 42807444 + ], + "geometry": [ + { "lat": 40.7448801, "lon": -73.9576126 }, + { "lat": 40.7448838, "lon": -73.9576409 }, + { "lat": 40.7449222, "lon": -73.9578086 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Avenue", + "oneway": "yes", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "48th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1089789822, + "bounds": { + "minlat": 40.7447884, + "minlon": -73.9579040, + "maxlat": 40.7448287, + "maxlon": -73.9577172 + }, + "nodes": [ + 276318086, + 11241326018, + 9982771535 + ], + "geometry": [ + { "lat": 40.7448287, "lon": -73.9579040 }, + { "lat": 40.7447884, "lon": -73.9577462 }, + { "lat": 40.7447885, "lon": -73.9577172 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "48th Avenue", + "oneway": "yes", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "48th", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1089789823, + "bounds": { + "minlat": 40.7439937, + "minlon": -73.9590051, + "maxlat": 40.7442734, + "maxlon": -73.9585873 + }, + "nodes": [ + 4886088625, + 9982771542 + ], + "geometry": [ + { "lat": 40.7442734, "lon": -73.9585873 }, + { "lat": 40.7439937, "lon": -73.9590051 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Center", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1089789824, + "bounds": { + "minlat": 40.7442965, + "minlon": -73.9585095, + "maxlat": 40.7443287, + "maxlon": -73.9583433 + }, + "nodes": [ + 4411700985, + 3575033053 + ], + "geometry": [ + { "lat": 40.7443287, "lon": -73.9585095 }, + { "lat": 40.7442965, "lon": -73.9583433 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "49th Avenue", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "49th", + "tiger:name_base_1": "Hunters Point", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 1089789825, + "bounds": { + "minlat": 40.7437507, + "minlon": -73.9593576, + "maxlat": 40.7439937, + "maxlon": -73.9590051 + }, + "nodes": [ + 9982771542, + 9982771541, + 9982771540, + 9982771543, + 9982771544, + 6633383602 + ], + "geometry": [ + { "lat": 40.7439937, "lon": -73.9590051 }, + { "lat": 40.7438921, "lon": -73.9591556 }, + { "lat": 40.7438606, "lon": -73.9592021 }, + { "lat": 40.7438056, "lon": -73.9592860 }, + { "lat": 40.7437803, "lon": -73.9593221 }, + { "lat": 40.7437507, "lon": -73.9593576 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Center", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left;through" + } +}, +{ + "type": "way", + "id": 1089789826, + "bounds": { + "minlat": 40.7430837, + "minlon": -73.9597890, + "maxlat": 40.7434136, + "maxlon": -73.9596265 + }, + "nodes": [ + 9982771549, + 9982771550, + 3575033051, + 4886088627, + 2297172754 + ], + "geometry": [ + { "lat": 40.7434136, "lon": -73.9596265 }, + { "lat": 40.7433265, "lon": -73.9596731 }, + { "lat": 40.7432325, "lon": -73.9597213 }, + { "lat": 40.7431686, "lon": -73.9597524 }, + { "lat": 40.7430837, "lon": -73.9597890 } + ], + "tags": { + "direction": "forward", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "surface": "asphalt", + "turn:lanes:forward": "through" + } +}, +{ + "type": "way", + "id": 1089789827, + "bounds": { + "minlat": 40.7427597, + "minlon": -73.9598983, + "maxlat": 40.7430837, + "maxlon": -73.9597890 + }, + "nodes": [ + 2297172754, + 4886088621, + 3567864522, + 9982771551, + 9982771552, + 2297172756 + ], + "geometry": [ + { "lat": 40.7430837, "lon": -73.9597890 }, + { "lat": 40.7430295, "lon": -73.9598109 }, + { "lat": 40.7429766, "lon": -73.9598304 }, + { "lat": 40.7429164, "lon": -73.9598521 }, + { "lat": 40.7428387, "lon": -73.9598766 }, + { "lat": 40.7427597, "lon": -73.9598983 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Boulevard", + "surface": "asphalt", + "turn:lanes:backward": "through" + } +}, +{ + "type": "way", + "id": 1089789828, + "bounds": { + "minlat": 40.7421891, + "minlon": -73.9593875, + "maxlat": 40.7422833, + "maxlon": -73.9589108 + }, + "nodes": [ + 9982771555, + 11196902803, + 9982771554, + 42852816 + ], + "geometry": [ + { "lat": 40.7422833, "lon": -73.9593875 }, + { "lat": 40.7422174, "lon": -73.9590598 }, + { "lat": 40.7422063, "lon": -73.9590009 }, + { "lat": 40.7421891, "lon": -73.9589108 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "4", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "source": "Bing", + "surface": "asphalt", + "turn:lanes:forward": "through|through;right" + } +}, +{ + "type": "way", + "id": 1089864102, + "bounds": { + "minlat": 40.7416251, + "minlon": -73.9495193, + "maxlat": 40.7417529, + "maxlon": -73.9494536 + }, + "nodes": [ + 276317345, + 2734740573, + 2135570984, + 9179070591, + 9983412342 + ], + "geometry": [ + { "lat": 40.7416251, "lon": -73.9495193 }, + { "lat": 40.7416536, "lon": -73.9494995 }, + { "lat": 40.7416946, "lon": -73.9494779 }, + { "lat": 40.7417284, "lon": -73.9494622 }, + { "lat": 40.7417529, "lon": -73.9494536 } + ], + "tags": { + "destination": "21st Street", + "destination:ref": "NY 25A East", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "yes", + "ref": "NY 25A", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1089864105, + "bounds": { + "minlat": 40.7420937, + "minlon": -73.9510988, + "maxlat": 40.7421447, + "maxlon": -73.9508408 + }, + "nodes": [ + 5935119763, + 9983412350 + ], + "geometry": [ + { "lat": 40.7420937, "lon": -73.9508408 }, + { "lat": 40.7421447, "lon": -73.9510988 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "50th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1089864108, + "bounds": { + "minlat": 40.7423708, + "minlon": -73.9527543, + "maxlat": 40.7424742, + "maxlon": -73.9522145 + }, + "nodes": [ + 2799469682, + 6593516415, + 9983412358, + 9983412357, + 42844233 + ], + "geometry": [ + { "lat": 40.7423708, "lon": -73.9522145 }, + { "lat": 40.7424007, "lon": -73.9523707 }, + { "lat": 40.7424293, "lon": -73.9525166 }, + { "lat": 40.7424487, "lon": -73.9526102 }, + { "lat": 40.7424742, "lon": -73.9527543 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "50th Avenue", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes:forward": "left" + } +}, +{ + "type": "way", + "id": 1089864109, + "bounds": { + "minlat": 40.7422928, + "minlon": -73.9522145, + "maxlat": 40.7423708, + "maxlon": -73.9518110 + }, + "nodes": [ + 42806188, + 2799469682 + ], + "geometry": [ + { "lat": 40.7422928, "lon": -73.9518110 }, + { "lat": 40.7423708, "lon": -73.9522145 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "50th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1089864110, + "bounds": { + "minlat": 40.7421447, + "minlon": -73.9514130, + "maxlat": 40.7422151, + "maxlon": -73.9510988 + }, + "nodes": [ + 9983412350, + 9983412355, + 42866953 + ], + "geometry": [ + { "lat": 40.7421447, "lon": -73.9510988 }, + { "lat": 40.7421928, "lon": -73.9513076 }, + { "lat": 40.7422151, "lon": -73.9514130 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "50th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1089864111, + "bounds": { + "minlat": 40.7413130, + "minlon": -73.9524503, + "maxlat": 40.7414399, + "maxlon": -73.9511462 + }, + "nodes": [ + 9983412330, + 11942111827, + 11942111828, + 11942111829, + 11942111830, + 11942111831, + 12410999967 + ], + "geometry": [ + { "lat": 40.7413238, "lon": -73.9524503 }, + { "lat": 40.7413130, "lon": -73.9521223 }, + { "lat": 40.7413130, "lon": -73.9520216 }, + { "lat": 40.7413157, "lon": -73.9518963 }, + { "lat": 40.7413368, "lon": -73.9516588 }, + { "lat": 40.7413844, "lon": -73.9513854 }, + { "lat": 40.7414399, "lon": -73.9511462 } + ], + "tags": { + "highway": "motorway", + "lanes": "1", + "maxspeed": "40 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1089875883, + "bounds": { + "minlat": 40.7042820, + "minlon": -73.9481455, + "maxlat": 40.7044581, + "maxlon": -73.9478195 + }, + "nodes": [ + 9983487199, + 11128557566, + 9983487197, + 9983487198, + 42501132 + ], + "geometry": [ + { "lat": 40.7044581, "lon": -73.9478195 }, + { "lat": 40.7043727, "lon": -73.9479039 }, + { "lat": 40.7043425, "lon": -73.9479648 }, + { "lat": 40.7043174, "lon": -73.9480149 }, + { "lat": 40.7042820, "lon": -73.9481455 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "oneway": "yes", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 1089994598, + "bounds": { + "minlat": 40.7121785, + "minlon": -73.9315434, + "maxlat": 40.7126727, + "maxlon": -73.9307248 + }, + "nodes": [ + 5510296572, + 9984593509, + 9984593499, + 9984593500, + 9984593501, + 9984593502, + 9984593503, + 9984593504, + 9984593505, + 9984593506, + 9984593507 + ], + "geometry": [ + { "lat": 40.7126727, "lon": -73.9311292 }, + { "lat": 40.7126045, "lon": -73.9313786 }, + { "lat": 40.7125723, "lon": -73.9314600 }, + { "lat": 40.7125203, "lon": -73.9315226 }, + { "lat": 40.7124218, "lon": -73.9315434 }, + { "lat": 40.7123218, "lon": -73.9315328 }, + { "lat": 40.7122166, "lon": -73.9314844 }, + { "lat": 40.7121958, "lon": -73.9314537 }, + { "lat": 40.7121821, "lon": -73.9314021 }, + { "lat": 40.7121785, "lon": -73.9313528 }, + { "lat": 40.7123290, "lon": -73.9307248 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1089994599, + "bounds": { + "minlat": 40.7122880, + "minlon": -73.9311292, + "maxlat": 40.7126727, + "maxlon": -73.9304961 + }, + "nodes": [ + 42502462, + 9984593507, + 5510296570, + 5510296572 + ], + "geometry": [ + { "lat": 40.7122880, "lon": -73.9304961 }, + { "lat": 40.7123290, "lon": -73.9307248 }, + { "lat": 40.7125400, "lon": -73.9309737 }, + { "lat": 40.7126727, "lon": -73.9311292 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1090207753, + "bounds": { + "minlat": 40.7040531, + "minlon": -73.9685426, + "maxlat": 40.7055152, + "maxlon": -73.9673447 + }, + "nodes": [ + 9220204635, + 10716574916, + 9985913134, + 9985913135, + 9985913136, + 11065677177, + 9985913137 + ], + "geometry": [ + { "lat": 40.7040531, "lon": -73.9673447 }, + { "lat": 40.7040872, "lon": -73.9674262 }, + { "lat": 40.7041452, "lon": -73.9675646 }, + { "lat": 40.7042289, "lon": -73.9676984 }, + { "lat": 40.7045203, "lon": -73.9679556 }, + { "lat": 40.7050098, "lon": -73.9682999 }, + { "lat": 40.7055152, "lon": -73.9685426 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090215919, + "bounds": { + "minlat": 40.7068052, + "minlon": -73.9556567, + "maxlat": 40.7069877, + "maxlon": -73.9552986 + }, + "nodes": [ + 9985920599, + 9985920598, + 9985920597, + 9772859271, + 9985920596, + 9985920595, + 9772859258, + 9985920599 + ], + "geometry": [ + { "lat": 40.7068052, "lon": -73.9556567 }, + { "lat": 40.7069135, "lon": -73.9556392 }, + { "lat": 40.7069541, "lon": -73.9556218 }, + { "lat": 40.7069674, "lon": -73.9556050 }, + { "lat": 40.7069877, "lon": -73.9555500 }, + { "lat": 40.7069719, "lon": -73.9552986 }, + { "lat": 40.7069452, "lon": -73.9553895 }, + { "lat": 40.7068052, "lon": -73.9556567 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1090215971, + "bounds": { + "minlat": 40.7094275, + "minlon": -73.9567090, + "maxlat": 40.7095980, + "maxlon": -73.9563106 + }, + "nodes": [ + 9985973843, + 9985973844, + 9985973845, + 9985973842, + 9985973843 + ], + "geometry": [ + { "lat": 40.7094275, "lon": -73.9563307 }, + { "lat": 40.7095636, "lon": -73.9567090 }, + { "lat": 40.7095980, "lon": -73.9566877 }, + { "lat": 40.7094609, "lon": -73.9563106 }, + { "lat": 40.7094275, "lon": -73.9563307 } + ], + "tags": { + "area": "yes", + "bridge": "yes", + "highway": "pedestrian", + "level": "2", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1090215972, + "bounds": { + "minlat": 40.7092791, + "minlon": -73.9563307, + "maxlat": 40.7094609, + "maxlon": -73.9559658 + }, + "nodes": [ + 9985973842, + 9985973853, + 9985973852, + 9985973841, + 9985973851, + 9985973850, + 9768177549, + 9985973849, + 9985973843, + 9985973842 + ], + "geometry": [ + { "lat": 40.7094609, "lon": -73.9563106 }, + { "lat": 40.7093408, "lon": -73.9559802 }, + { "lat": 40.7093196, "lon": -73.9559658 }, + { "lat": 40.7092950, "lon": -73.9559819 }, + { "lat": 40.7092791, "lon": -73.9559923 }, + { "lat": 40.7092941, "lon": -73.9559956 }, + { "lat": 40.7093025, "lon": -73.9560037 }, + { "lat": 40.7093152, "lon": -73.9560188 }, + { "lat": 40.7094275, "lon": -73.9563307 }, + { "lat": 40.7094609, "lon": -73.9563106 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1090215974, + "bounds": { + "minlat": 40.7095636, + "minlon": -73.9570614, + "maxlat": 40.7097160, + "maxlon": -73.9566877 + }, + "nodes": [ + 9985973844, + 9985973848, + 9767625322, + 9985973847, + 9985973846, + 9985973854, + 9985973855, + 9985973845, + 9985973844 + ], + "geometry": [ + { "lat": 40.7095636, "lon": -73.9567090 }, + { "lat": 40.7096794, "lon": -73.9570310 }, + { "lat": 40.7096802, "lon": -73.9570484 }, + { "lat": 40.7096726, "lon": -73.9570614 }, + { "lat": 40.7096826, "lon": -73.9570544 }, + { "lat": 40.7097160, "lon": -73.9570310 }, + { "lat": 40.7097155, "lon": -73.9570108 }, + { "lat": 40.7095980, "lon": -73.9566877 }, + { "lat": 40.7095636, "lon": -73.9567090 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1090227032, + "bounds": { + "minlat": 40.8773293, + "minlon": -73.9125956, + "maxlat": 40.8776920, + "maxlon": -73.9121732 + }, + "nodes": [ + 9986044916, + 9986050717 + ], + "geometry": [ + { "lat": 40.8776920, "lon": -73.9121732 }, + { "lat": 40.8773293, "lon": -73.9125956 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090227033, + "bounds": { + "minlat": 40.8768179, + "minlon": -73.9132062, + "maxlat": 40.8770492, + "maxlon": -73.9129020 + }, + "nodes": [ + 9986050722, + 9986050723 + ], + "geometry": [ + { "lat": 40.8770492, "lon": -73.9129020 }, + { "lat": 40.8768179, "lon": -73.9132062 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1090227034, + "bounds": { + "minlat": 40.8771303, + "minlon": -73.9125597, + "maxlat": 40.8776294, + "maxlon": -73.9120517 + }, + "nodes": [ + 1544847094, + 9986050718, + 9986050719 + ], + "geometry": [ + { "lat": 40.8776294, "lon": -73.9120517 }, + { "lat": 40.8775653, "lon": -73.9120805 }, + { "lat": 40.8771303, "lon": -73.9125597 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090227035, + "bounds": { + "minlat": 40.8770437, + "minlon": -73.9126723, + "maxlat": 40.8771303, + "maxlon": -73.9125597 + }, + "nodes": [ + 9986050719, + 9986050720 + ], + "geometry": [ + { "lat": 40.8771303, "lon": -73.9125597 }, + { "lat": 40.8770437, "lon": -73.9126723 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090227036, + "bounds": { + "minlat": 40.8769603, + "minlon": -73.9129020, + "maxlat": 40.8770492, + "maxlon": -73.9126723 + }, + "nodes": [ + 9986050720, + 9986050721, + 9986050722 + ], + "geometry": [ + { "lat": 40.8770437, "lon": -73.9126723 }, + { "lat": 40.8769603, "lon": -73.9127753 }, + { "lat": 40.8770492, "lon": -73.9129020 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090370025, + "bounds": { + "minlat": 40.7456883, + "minlon": -73.9723585, + "maxlat": 40.7457863, + "maxlon": -73.9721236 + }, + "nodes": [ + 42422899, + 9987259761, + 9147343630 + ], + "geometry": [ + { "lat": 40.7456883, "lon": -73.9721236 }, + { "lat": 40.7457452, "lon": -73.9722599 }, + { "lat": 40.7457863, "lon": -73.9723585 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "oneway": "yes", + "sidewalk": "both" + } +}, +{ + "type": "way", + "id": 1090370026, + "bounds": { + "minlat": 40.7475701, + "minlon": -73.9735914, + "maxlat": 40.7479353, + "maxlon": -73.9727421 + }, + "nodes": [ + 42445666, + 9987259785, + 9147322861, + 42442933 + ], + "geometry": [ + { "lat": 40.7475701, "lon": -73.9727421 }, + { "lat": 40.7475966, "lon": -73.9728049 }, + { "lat": 40.7478711, "lon": -73.9734538 }, + { "lat": 40.7479353, "lon": -73.9735914 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "short_name": "East 39 Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1090370031, + "bounds": { + "minlat": 40.7457049, + "minlon": -73.9743190, + "maxlat": 40.7457827, + "maxlon": -73.9741124 + }, + "nodes": [ + 42454495, + 3846857066 + ], + "geometry": [ + { "lat": 40.7457827, "lon": -73.9743190 }, + { "lat": 40.7457049, "lon": -73.9741124 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 36th Street", + "name:ru": "Восточная 36-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1090399407, + "bounds": { + "minlat": 40.7452742, + "minlon": -73.9381777, + "maxlat": 40.7453533, + "maxlon": -73.9378334 + }, + "nodes": [ + 9987580022, + 42941870 + ], + "geometry": [ + { "lat": 40.7453533, "lon": -73.9381777 }, + { "lat": 40.7452742, "lon": -73.9378334 } + ], + "tags": { + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "6", + "lanes:backward": "3", + "lanes:forward": "3", + "layer": "1", + "maxspeed": "25 mph", + "name": "Thomson Avenue", + "sidewalk:both": "separate", + "surface": "concrete", + "turn:lanes:forward": "through|through|through;right" + } +}, +{ + "type": "way", + "id": 1090458890, + "bounds": { + "minlat": 40.7573064, + "minlon": -73.9631484, + "maxlat": 40.7575025, + "maxlon": -73.9630762 + }, + "nodes": [ + 9988058436, + 11296256960, + 9988058437, + 9988058438, + 9988058439, + 9988058440 + ], + "geometry": [ + { "lat": 40.7575025, "lon": -73.9630914 }, + { "lat": 40.7574399, "lon": -73.9631262 }, + { "lat": 40.7574223, "lon": -73.9631359 }, + { "lat": 40.7573744, "lon": -73.9631484 }, + { "lat": 40.7573317, "lon": -73.9631288 }, + { "lat": 40.7573064, "lon": -73.9630762 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090462013, + "bounds": { + "minlat": 40.7106132, + "minlon": -74.0039466, + "maxlat": 40.7106979, + "maxlon": -74.0037732 + }, + "nodes": [ + 9988073561, + 10277180450, + 9988073563 + ], + "geometry": [ + { "lat": 40.7106132, "lon": -74.0037732 }, + { "lat": 40.7106675, "lon": -74.0038902 }, + { "lat": 40.7106979, "lon": -74.0039466 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1090462014, + "bounds": { + "minlat": 40.7106979, + "minlon": -74.0041905, + "maxlat": 40.7108666, + "maxlon": -74.0039466 + }, + "nodes": [ + 9988073563, + 11349528727, + 9988073564 + ], + "geometry": [ + { "lat": 40.7106979, "lon": -74.0039466 }, + { "lat": 40.7107752, "lon": -74.0040739 }, + { "lat": 40.7108666, "lon": -74.0041905 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1090462020, + "bounds": { + "minlat": 40.8159933, + "minlon": -73.9306846, + "maxlat": 40.8163277, + "maxlon": -73.9304051 + }, + "nodes": [ + 9988093605, + 13039106122, + 9988093606, + 9988093607, + 9988093608, + 9988093609 + ], + "geometry": [ + { "lat": 40.8159933, "lon": -73.9304051 }, + { "lat": 40.8160144, "lon": -73.9304837 }, + { "lat": 40.8160371, "lon": -73.9305680 }, + { "lat": 40.8161411, "lon": -73.9306057 }, + { "lat": 40.8163250, "lon": -73.9305310 }, + { "lat": 40.8163277, "lon": -73.9306846 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090462213, + "bounds": { + "minlat": 40.7096596, + "minlon": -73.9608827, + "maxlat": 40.7099760, + "maxlon": -73.9604951 + }, + "nodes": [ + 9968370419, + 9988095471, + 9988095472, + 9988095473 + ], + "geometry": [ + { "lat": 40.7096596, "lon": -73.9604951 }, + { "lat": 40.7097484, "lon": -73.9605510 }, + { "lat": 40.7098387, "lon": -73.9606430 }, + { "lat": 40.7099760, "lon": -73.9608827 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090466547, + "bounds": { + "minlat": 40.7247623, + "minlon": -74.0058708, + "maxlat": 40.7249919, + "maxlon": -74.0054843 + }, + "nodes": [ + 9988098411, + 9988098412, + 9988098413, + 9988098414, + 9988098415, + 9988098416 + ], + "geometry": [ + { "lat": 40.7247918, "lon": -74.0058708 }, + { "lat": 40.7247834, "lon": -74.0057868 }, + { "lat": 40.7247623, "lon": -74.0055706 }, + { "lat": 40.7247931, "lon": -74.0055180 }, + { "lat": 40.7249266, "lon": -74.0054954 }, + { "lat": 40.7249919, "lon": -74.0054843 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090506096, + "bounds": { + "minlat": 40.7117395, + "minlon": -73.9843041, + "maxlat": 40.7117960, + "maxlon": -73.9837857 + }, + "nodes": [ + 9988423645, + 9988423646 + ], + "geometry": [ + { "lat": 40.7117395, "lon": -73.9843041 }, + { "lat": 40.7117960, "lon": -73.9837857 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1090506097, + "bounds": { + "minlat": 40.7117960, + "minlon": -73.9837857, + "maxlat": 40.7118076, + "maxlon": -73.9836819 + }, + "nodes": [ + 9988423646, + 9988423647 + ], + "geometry": [ + { "lat": 40.7117960, "lon": -73.9837857 }, + { "lat": 40.7118076, "lon": -73.9836819 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090510499, + "bounds": { + "minlat": 40.6999088, + "minlon": -73.9559742, + "maxlat": 40.7000336, + "maxlon": -73.9557807 + }, + "nodes": [ + 9988456301, + 9755372101, + 9755372100, + 9988456300, + 9988456302, + 9988456301 + ], + "geometry": [ + { "lat": 40.6999088, "lon": -73.9559742 }, + { "lat": 40.6999289, "lon": -73.9558179 }, + { "lat": 40.6999482, "lon": -73.9557908 }, + { "lat": 40.7000336, "lon": -73.9557807 }, + { "lat": 40.6999292, "lon": -73.9559412 }, + { "lat": 40.6999088, "lon": -73.9559742 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1090512670, + "bounds": { + "minlat": 40.7424831, + "minlon": -73.9169555, + "maxlat": 40.7427648, + "maxlon": -73.9165364 + }, + "nodes": [ + 9988416597, + 10743722552, + 9988416598, + 9988416599, + 10743722548, + 9988416600 + ], + "geometry": [ + { "lat": 40.7427648, "lon": -73.9165364 }, + { "lat": 40.7426752, "lon": -73.9165557 }, + { "lat": 40.7425141, "lon": -73.9165892 }, + { "lat": 40.7424831, "lon": -73.9166242 }, + { "lat": 40.7425042, "lon": -73.9168149 }, + { "lat": 40.7425197, "lon": -73.9169555 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1090531109, + "bounds": { + "minlat": 40.7103399, + "minlon": -73.9856476, + "maxlat": 40.7104178, + "maxlon": -73.9849463 + }, + "nodes": [ + 5496610248, + 5496610247 + ], + "geometry": [ + { "lat": 40.7104178, "lon": -73.9849463 }, + { "lat": 40.7103399, "lon": -73.9856476 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1090531110, + "bounds": { + "minlat": 40.7102014, + "minlon": -73.9856232, + "maxlat": 40.7102764, + "maxlon": -73.9849217 + }, + "nodes": [ + 9988618213, + 5496610249 + ], + "geometry": [ + { "lat": 40.7102014, "lon": -73.9856232 }, + { "lat": 40.7102764, "lon": -73.9849217 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1090531111, + "bounds": { + "minlat": 40.7102764, + "minlon": -73.9849217, + "maxlat": 40.7103062, + "maxlon": -73.9846220 + }, + "nodes": [ + 5496610264, + 5496610240, + 11037604106, + 5496610249 + ], + "geometry": [ + { "lat": 40.7103062, "lon": -73.9846220 }, + { "lat": 40.7102940, "lon": -73.9847571 }, + { "lat": 40.7102907, "lon": -73.9847878 }, + { "lat": 40.7102764, "lon": -73.9849217 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1090531112, + "bounds": { + "minlat": 40.7100895, + "minlon": -73.9850021, + "maxlat": 40.7102764, + "maxlon": -73.9849217 + }, + "nodes": [ + 5496610244, + 5496610243, + 11037590304, + 11037604105, + 5496610249 + ], + "geometry": [ + { "lat": 40.7100895, "lon": -73.9850021 }, + { "lat": 40.7101170, "lon": -73.9849680 }, + { "lat": 40.7101552, "lon": -73.9849443 }, + { "lat": 40.7102424, "lon": -73.9849217 }, + { "lat": 40.7102764, "lon": -73.9849217 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1090633956, + "bounds": { + "minlat": 40.7411659, + "minlon": -73.9887819, + "maxlat": 40.7412165, + "maxlon": -73.9886588 + }, + "nodes": [ + 4763900915, + 9971262467 + ], + "geometry": [ + { "lat": 40.7412165, "lon": -73.9887819 }, + { "lat": 40.7411659, "lon": -73.9886588 } + ], + "tags": { + "alt_name": "East 23 Street", + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1090667464, + "bounds": { + "minlat": 40.8768214, + "minlon": -73.9831573, + "maxlat": 40.8770891, + "maxlon": -73.9827661 + }, + "nodes": [ + 9989889722, + 13525915007, + 9989889723, + 9989889724, + 9989889725, + 9989889726, + 13525915008, + 9989889727 + ], + "geometry": [ + { "lat": 40.8769665, "lon": -73.9831573 }, + { "lat": 40.8769262, "lon": -73.9830881 }, + { "lat": 40.8768227, "lon": -73.9829107 }, + { "lat": 40.8768214, "lon": -73.9828269 }, + { "lat": 40.8768786, "lon": -73.9827661 }, + { "lat": 40.8769457, "lon": -73.9827852 }, + { "lat": 40.8770476, "lon": -73.9829576 }, + { "lat": 40.8770891, "lon": -73.9830277 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1090667465, + "bounds": { + "minlat": 40.8768896, + "minlon": -73.9832385, + "maxlat": 40.8769665, + "maxlon": -73.9831573 + }, + "nodes": [ + 9989889722, + 7114045973 + ], + "geometry": [ + { "lat": 40.8769665, "lon": -73.9831573 }, + { "lat": 40.8768896, "lon": -73.9832385 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1090667468, + "bounds": { + "minlat": 40.8772085, + "minlon": -73.9835264, + "maxlat": 40.8773764, + "maxlon": -73.9831723 + }, + "nodes": [ + 5735550958, + 5735550959, + 5735550960 + ], + "geometry": [ + { "lat": 40.8772085, "lon": -73.9831723 }, + { "lat": 40.8773599, "lon": -73.9834530 }, + { "lat": 40.8773764, "lon": -73.9835264 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671757, + "bounds": { + "minlat": 40.7459032, + "minlon": -73.9340229, + "maxlat": 40.7459437, + "maxlon": -73.9339554 + }, + "nodes": [ + 9989941067, + 9989941066 + ], + "geometry": [ + { "lat": 40.7459032, "lon": -73.9340229 }, + { "lat": 40.7459437, "lon": -73.9339554 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671758, + "bounds": { + "minlat": 40.7458581, + "minlon": -73.9339745, + "maxlat": 40.7458988, + "maxlon": -73.9339045 + }, + "nodes": [ + 9989941068, + 9989941069 + ], + "geometry": [ + { "lat": 40.7458581, "lon": -73.9339745 }, + { "lat": 40.7458988, "lon": -73.9339045 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671759, + "bounds": { + "minlat": 40.7458136, + "minlon": -73.9339267, + "maxlat": 40.7458554, + "maxlon": -73.9338604 + }, + "nodes": [ + 9989941071, + 9989941070 + ], + "geometry": [ + { "lat": 40.7458136, "lon": -73.9339267 }, + { "lat": 40.7458554, "lon": -73.9338604 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671760, + "bounds": { + "minlat": 40.7460534, + "minlon": -73.9337230, + "maxlat": 40.7461850, + "maxlon": -73.9336870 + }, + "nodes": [ + 9989941065, + 9989941060, + 10762174397, + 9989941061 + ], + "geometry": [ + { "lat": 40.7460534, "lon": -73.9337230 }, + { "lat": 40.7460663, "lon": -73.9336870 }, + { "lat": 40.7461155, "lon": -73.9336944 }, + { "lat": 40.7461850, "lon": -73.9337049 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671762, + "bounds": { + "minlat": 40.7458635, + "minlon": -73.9339939, + "maxlat": 40.7459982, + "maxlon": -73.9338477 + }, + "nodes": [ + 9989941056, + 9989941054, + 9989941052, + 9989941062 + ], + "geometry": [ + { "lat": 40.7458635, "lon": -73.9338477 }, + { "lat": 40.7459067, "lon": -73.9338909 }, + { "lat": 40.7459526, "lon": -73.9339406 }, + { "lat": 40.7459982, "lon": -73.9339939 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671763, + "bounds": { + "minlat": 40.7457984, + "minlon": -73.9340449, + "maxlat": 40.7458900, + "maxlon": -73.9339508 + }, + "nodes": [ + 9989941055, + 9989941053, + 9989941051 + ], + "geometry": [ + { "lat": 40.7457984, "lon": -73.9339508 }, + { "lat": 40.7458438, "lon": -73.9339991 }, + { "lat": 40.7458900, "lon": -73.9340449 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671764, + "bounds": { + "minlat": 40.7457024, + "minlon": -73.9340881, + "maxlat": 40.7457984, + "maxlon": -73.9339508 + }, + "nodes": [ + 10927727734, + 12299669170, + 10762174400, + 9989941055 + ], + "geometry": [ + { "lat": 40.7457024, "lon": -73.9340881 }, + { "lat": 40.7457517, "lon": -73.9340110 }, + { "lat": 40.7457819, "lon": -73.9339639 }, + { "lat": 40.7457984, "lon": -73.9339508 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671765, + "bounds": { + "minlat": 40.7459622, + "minlon": -73.9338993, + "maxlat": 40.7459878, + "maxlon": -73.9337890 + }, + "nodes": [ + 9989922512, + 9989922513 + ], + "geometry": [ + { "lat": 40.7459622, "lon": -73.9338993 }, + { "lat": 40.7459878, "lon": -73.9337890 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671766, + "bounds": { + "minlat": 40.7459904, + "minlon": -73.9337777, + "maxlat": 40.7460534, + "maxlon": -73.9337230 + }, + "nodes": [ + 9989941065, + 9989941059 + ], + "geometry": [ + { "lat": 40.7460534, "lon": -73.9337230 }, + { "lat": 40.7459904, "lon": -73.9337777 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671768, + "bounds": { + "minlat": 40.7459982, + "minlon": -73.9341063, + "maxlat": 40.7461001, + "maxlon": -73.9339939 + }, + "nodes": [ + 9989941062, + 10762174396, + 9989941063 + ], + "geometry": [ + { "lat": 40.7459982, "lon": -73.9339939 }, + { "lat": 40.7460476, "lon": -73.9340484 }, + { "lat": 40.7461001, "lon": -73.9341063 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671769, + "bounds": { + "minlat": 40.7459437, + "minlon": -73.9339554, + "maxlat": 40.7459526, + "maxlon": -73.9339406 + }, + "nodes": [ + 9989941066, + 9989941052 + ], + "geometry": [ + { "lat": 40.7459437, "lon": -73.9339554 }, + { "lat": 40.7459526, "lon": -73.9339406 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671770, + "bounds": { + "minlat": 40.7458900, + "minlon": -73.9340449, + "maxlat": 40.7459032, + "maxlon": -73.9340229 + }, + "nodes": [ + 9989941051, + 9989941067 + ], + "geometry": [ + { "lat": 40.7458900, "lon": -73.9340449 }, + { "lat": 40.7459032, "lon": -73.9340229 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671771, + "bounds": { + "minlat": 40.7458988, + "minlon": -73.9339045, + "maxlat": 40.7459067, + "maxlon": -73.9338909 + }, + "nodes": [ + 9989941069, + 9989941054 + ], + "geometry": [ + { "lat": 40.7458988, "lon": -73.9339045 }, + { "lat": 40.7459067, "lon": -73.9338909 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671772, + "bounds": { + "minlat": 40.7458554, + "minlon": -73.9338604, + "maxlat": 40.7458635, + "maxlon": -73.9338477 + }, + "nodes": [ + 9989941070, + 9989941056 + ], + "geometry": [ + { "lat": 40.7458554, "lon": -73.9338604 }, + { "lat": 40.7458635, "lon": -73.9338477 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671773, + "bounds": { + "minlat": 40.7457984, + "minlon": -73.9339508, + "maxlat": 40.7458136, + "maxlon": -73.9339267 + }, + "nodes": [ + 9989941055, + 9989941071 + ], + "geometry": [ + { "lat": 40.7457984, "lon": -73.9339508 }, + { "lat": 40.7458136, "lon": -73.9339267 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671774, + "bounds": { + "minlat": 40.7458438, + "minlon": -73.9339991, + "maxlat": 40.7458581, + "maxlon": -73.9339745 + }, + "nodes": [ + 9989941053, + 9989941068 + ], + "geometry": [ + { "lat": 40.7458438, "lon": -73.9339991 }, + { "lat": 40.7458581, "lon": -73.9339745 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671775, + "bounds": { + "minlat": 40.7460646, + "minlon": -73.9336870, + "maxlat": 40.7460663, + "maxlon": -73.9335114 + }, + "nodes": [ + 9989941060, + 9989941072 + ], + "geometry": [ + { "lat": 40.7460663, "lon": -73.9336870 }, + { "lat": 40.7460646, "lon": -73.9335114 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671776, + "bounds": { + "minlat": 40.7460150, + "minlon": -73.9339206, + "maxlat": 40.7460368, + "maxlon": -73.9338094 + }, + "nodes": [ + 9989941073, + 9989941076 + ], + "geometry": [ + { "lat": 40.7460150, "lon": -73.9339206 }, + { "lat": 40.7460368, "lon": -73.9338094 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671780, + "bounds": { + "minlat": 40.7459982, + "minlon": -73.9339939, + "maxlat": 40.7460150, + "maxlon": -73.9339206 + }, + "nodes": [ + 9989941073, + 9989941062 + ], + "geometry": [ + { "lat": 40.7460150, "lon": -73.9339206 }, + { "lat": 40.7459982, "lon": -73.9339939 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090671781, + "bounds": { + "minlat": 40.7460368, + "minlon": -73.9338094, + "maxlat": 40.7460534, + "maxlon": -73.9337230 + }, + "nodes": [ + 9989941076, + 9989941065 + ], + "geometry": [ + { "lat": 40.7460368, "lon": -73.9338094 }, + { "lat": 40.7460534, "lon": -73.9337230 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090672173, + "bounds": { + "minlat": 40.7459526, + "minlon": -73.9339406, + "maxlat": 40.7459622, + "maxlon": -73.9338993 + }, + "nodes": [ + 9989941052, + 9989922512 + ], + "geometry": [ + { "lat": 40.7459526, "lon": -73.9339406 }, + { "lat": 40.7459622, "lon": -73.9338993 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090672174, + "bounds": { + "minlat": 40.7459878, + "minlon": -73.9337890, + "maxlat": 40.7459904, + "maxlon": -73.9337777 + }, + "nodes": [ + 9989922513, + 9989941059 + ], + "geometry": [ + { "lat": 40.7459878, "lon": -73.9337890 }, + { "lat": 40.7459904, "lon": -73.9337777 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090675122, + "bounds": { + "minlat": 40.7698683, + "minlon": -73.9903347, + "maxlat": 40.7700413, + "maxlon": -73.9902036 + }, + "nodes": [ + 9989925889, + 10083837280, + 9989925888 + ], + "geometry": [ + { "lat": 40.7700413, "lon": -73.9902036 }, + { "lat": 40.7699642, "lon": -73.9902620 }, + { "lat": 40.7698683, "lon": -73.9903347 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1090681847, + "bounds": { + "minlat": 40.7269711, + "minlon": -73.9091304, + "maxlat": 40.7271823, + "maxlon": -73.9089946 + }, + "nodes": [ + 9990029717, + 9990029718, + 9990029719, + 9990029720 + ], + "geometry": [ + { "lat": 40.7271823, "lon": -73.9089946 }, + { "lat": 40.7270553, "lon": -73.9091131 }, + { "lat": 40.7270082, "lon": -73.9091304 }, + { "lat": 40.7269711, "lon": -73.9091030 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090681848, + "bounds": { + "minlat": 40.7266766, + "minlon": -73.9087837, + "maxlat": 40.7268061, + "maxlon": -73.9086284 + }, + "nodes": [ + 8872404077, + 9990029722, + 9990029721 + ], + "geometry": [ + { "lat": 40.7266766, "lon": -73.9087837 }, + { "lat": 40.7267455, "lon": -73.9087010 }, + { "lat": 40.7268061, "lon": -73.9086284 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090681849, + "bounds": { + "minlat": 40.7262448, + "minlon": -73.9072140, + "maxlat": 40.7265732, + "maxlon": -73.9069792 + }, + "nodes": [ + 9990029733, + 9990029729, + 9990029730, + 10021763464, + 10021763465, + 10021763466, + 10021763467, + 10021763468, + 10021763469, + 10021763470, + 10021763471, + 10021763472, + 9990029727 + ], + "geometry": [ + { "lat": 40.7265732, "lon": -73.9072140 }, + { "lat": 40.7265620, "lon": -73.9070701 }, + { "lat": 40.7265583, "lon": -73.9070547 }, + { "lat": 40.7265477, "lon": -73.9070353 }, + { "lat": 40.7265078, "lon": -73.9070056 }, + { "lat": 40.7264733, "lon": -73.9069897 }, + { "lat": 40.7264316, "lon": -73.9069792 }, + { "lat": 40.7263963, "lon": -73.9069802 }, + { "lat": 40.7262943, "lon": -73.9069965 }, + { "lat": 40.7262661, "lon": -73.9070075 }, + { "lat": 40.7262585, "lon": -73.9070198 }, + { "lat": 40.7262485, "lon": -73.9070688 }, + { "lat": 40.7262448, "lon": -73.9071209 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1090681850, + "bounds": { + "minlat": 40.7265813, + "minlon": -73.9075862, + "maxlat": 40.7266021, + "maxlon": -73.9073183 + }, + "nodes": [ + 9990029728, + 9990029732 + ], + "geometry": [ + { "lat": 40.7266021, "lon": -73.9075862 }, + { "lat": 40.7265813, "lon": -73.9073183 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1090681851, + "bounds": { + "minlat": 40.7265732, + "minlon": -73.9073183, + "maxlat": 40.7265813, + "maxlon": -73.9072140 + }, + "nodes": [ + 9990029732, + 9990029733 + ], + "geometry": [ + { "lat": 40.7265813, "lon": -73.9073183 }, + { "lat": 40.7265732, "lon": -73.9072140 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1090686120, + "bounds": { + "minlat": 40.8217519, + "minlon": -73.9113702, + "maxlat": 40.8221062, + "maxlon": -73.9112526 + }, + "nodes": [ + 9990066031, + 9990066032 + ], + "geometry": [ + { "lat": 40.8221062, "lon": -73.9112526 }, + { "lat": 40.8217519, "lon": -73.9113702 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1090686121, + "bounds": { + "minlat": 40.8221062, + "minlon": -73.9112720, + "maxlat": 40.8222129, + "maxlon": -73.9112526 + }, + "nodes": [ + 9990066030, + 9990066031 + ], + "geometry": [ + { "lat": 40.8222129, "lon": -73.9112720 }, + { "lat": 40.8221062, "lon": -73.9112526 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090698176, + "bounds": { + "minlat": 40.8276352, + "minlon": -73.9112774, + "maxlat": 40.8280750, + "maxlon": -73.9111096 + }, + "nodes": [ + 9990169406, + 12038440397, + 9990169407, + 9990169408, + 12038440392, + 9990169409 + ], + "geometry": [ + { "lat": 40.8280750, "lon": -73.9112488 }, + { "lat": 40.8280360, "lon": -73.9111971 }, + { "lat": 40.8279953, "lon": -73.9111432 }, + { "lat": 40.8279466, "lon": -73.9111096 }, + { "lat": 40.8276932, "lon": -73.9112461 }, + { "lat": 40.8276352, "lon": -73.9112774 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090698177, + "bounds": { + "minlat": 40.8279719, + "minlon": -73.9102202, + "maxlat": 40.8286121, + "maxlon": -73.9098075 + }, + "nodes": [ + 9990169410, + 13327574324, + 9990169411, + 9990169412, + 9990169413 + ], + "geometry": [ + { "lat": 40.8286121, "lon": -73.9098075 }, + { "lat": 40.8285616, "lon": -73.9098354 }, + { "lat": 40.8283027, "lon": -73.9099785 }, + { "lat": 40.8282720, "lon": -73.9100634 }, + { "lat": 40.8279719, "lon": -73.9102202 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090698178, + "bounds": { + "minlat": 40.8278903, + "minlon": -73.9102202, + "maxlat": 40.8279719, + "maxlon": -73.9099716 + }, + "nodes": [ + 9990169414, + 9990169413 + ], + "geometry": [ + { "lat": 40.8278903, "lon": -73.9099716 }, + { "lat": 40.8279719, "lon": -73.9102202 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1090749587, + "bounds": { + "minlat": 40.7104055, + "minlon": -73.9641690, + "maxlat": 40.7105380, + "maxlon": -73.9639172 + }, + "nodes": [ + 9990599475, + 9990599459, + 9990599460, + 9990599474, + 9785653154, + 9990599473, + 9990599472, + 9785653152, + 9990599471, + 9990599470, + 9990599484, + 9990599475 + ], + "geometry": [ + { "lat": 40.7105380, "lon": -73.9641200 }, + { "lat": 40.7105090, "lon": -73.9641363 }, + { "lat": 40.7104480, "lon": -73.9641614 }, + { "lat": 40.7104231, "lon": -73.9641690 }, + { "lat": 40.7104069, "lon": -73.9639775 }, + { "lat": 40.7104055, "lon": -73.9639474 }, + { "lat": 40.7104223, "lon": -73.9639239 }, + { "lat": 40.7104381, "lon": -73.9639188 }, + { "lat": 40.7104589, "lon": -73.9639172 }, + { "lat": 40.7104797, "lon": -73.9639340 }, + { "lat": 40.7104884, "lon": -73.9639554 }, + { "lat": 40.7105380, "lon": -73.9641200 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 1090749594, + "bounds": { + "minlat": 40.7103313, + "minlon": -73.9637938, + "maxlat": 40.7105303, + "maxlon": -73.9632817 + }, + "nodes": [ + 9990599486, + 9990599485, + 9990599493, + 9785653151, + 9990599492, + 9785653149, + 9990599491, + 9990599490, + 9990599489, + 9990599488, + 11748692152, + 9990599487, + 9990599486 + ], + "geometry": [ + { "lat": 40.7105303, "lon": -73.9637564 }, + { "lat": 40.7104811, "lon": -73.9637763 }, + { "lat": 40.7104327, "lon": -73.9637938 }, + { "lat": 40.7104169, "lon": -73.9637909 }, + { "lat": 40.7103997, "lon": -73.9637891 }, + { "lat": 40.7103846, "lon": -73.9637688 }, + { "lat": 40.7103745, "lon": -73.9637449 }, + { "lat": 40.7103313, "lon": -73.9633781 }, + { "lat": 40.7103318, "lon": -73.9633399 }, + { "lat": 40.7103356, "lon": -73.9632999 }, + { "lat": 40.7103510, "lon": -73.9632817 }, + { "lat": 40.7105052, "lon": -73.9637355 }, + { "lat": 40.7105303, "lon": -73.9637564 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete:plates" + } +}, +{ + "type": "way", + "id": 1090749595, + "bounds": { + "minlat": 40.7103485, + "minlon": -73.9644321, + "maxlat": 40.7104069, + "maxlon": -73.9638637 + }, + "nodes": [ + 9990599495, + 4207788763, + 8937862359 + ], + "geometry": [ + { "lat": 40.7103485, "lon": -73.9638637 }, + { "lat": 40.7103606, "lon": -73.9639819 }, + { "lat": 40.7104069, "lon": -73.9644321 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 1090749596, + "bounds": { + "minlat": 40.7103485, + "minlon": -73.9638637, + "maxlat": 40.7104770, + "maxlon": -73.9638390 + }, + "nodes": [ + 9990599495, + 9990599482, + 42468744 + ], + "geometry": [ + { "lat": 40.7103485, "lon": -73.9638637 }, + { "lat": 40.7104265, "lon": -73.9638487 }, + { "lat": 40.7104770, "lon": -73.9638390 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 1090755974, + "bounds": { + "minlat": 40.7356514, + "minlon": -73.9764585, + "maxlat": 40.7360172, + "maxlon": -73.9755877 + }, + "nodes": [ + 9832349990, + 1814477468, + 4592061570, + 3601295702, + 4207683793 + ], + "geometry": [ + { "lat": 40.7360172, "lon": -73.9764585 }, + { "lat": 40.7359983, "lon": -73.9764135 }, + { "lat": 40.7359578, "lon": -73.9763172 }, + { "lat": 40.7359196, "lon": -73.9762262 }, + { "lat": 40.7356514, "lon": -73.9755877 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "name_1": "East 23 Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1090894543, + "bounds": { + "minlat": 40.7413238, + "minlon": -73.9527328, + "maxlat": 40.7413438, + "maxlon": -73.9524503 + }, + "nodes": [ + 588178799, + 9983412330 + ], + "geometry": [ + { "lat": 40.7413438, "lon": -73.9527328 }, + { "lat": 40.7413238, "lon": -73.9524503 } + ], + "tags": { + "highway": "motorway", + "lanes": "2", + "maxspeed": "40 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "|slight_right" + } +}, +{ + "type": "way", + "id": 1091015083, + "bounds": { + "minlat": 40.8652533, + "minlon": -73.9085904, + "maxlat": 40.8654628, + "maxlon": -73.9084886 + }, + "nodes": [ + 9461627674, + 42743114 + ], + "geometry": [ + { "lat": 40.8652533, "lon": -73.9085904 }, + { "lat": 40.8654628, "lon": -73.9084886 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 1091181804, + "bounds": { + "minlat": 40.8659097, + "minlon": -73.9581683, + "maxlat": 40.8676663, + "maxlon": -73.9550554 + }, + "nodes": [ + 5362438647, + 5362438646, + 5362438652, + 6179959731, + 103234560, + 7132418481 + ], + "geometry": [ + { "lat": 40.8659097, "lon": -73.9550554 }, + { "lat": 40.8659606, "lon": -73.9551786 }, + { "lat": 40.8660448, "lon": -73.9553395 }, + { "lat": 40.8676037, "lon": -73.9580588 }, + { "lat": 40.8676560, "lon": -73.9581500 }, + { "lat": 40.8676663, "lon": -73.9581683 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Van Nostrand Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 1091336189, + "bounds": { + "minlat": 40.8677479, + "minlon": -73.9300831, + "maxlat": 40.8678058, + "maxlon": -73.9300052 + }, + "nodes": [ + 9561543894, + 42431666 + ], + "geometry": [ + { "lat": 40.8677479, "lon": -73.9300831 }, + { "lat": 40.8678058, "lon": -73.9300052 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Staff Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Staff", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1091399056, + "bounds": { + "minlat": 40.7045416, + "minlon": -74.0144561, + "maxlat": 40.7047105, + "maxlon": -74.0142564 + }, + "nodes": [ + 588546891, + 10316226212, + 10316226198, + 10316226196, + 10316226197, + 9371204506, + 10316226195, + 4145586932, + 10316226194, + 588546885 + ], + "geometry": [ + { "lat": 40.7045416, "lon": -74.0142564 }, + { "lat": 40.7045497, "lon": -74.0142570 }, + { "lat": 40.7045653, "lon": -74.0142581 }, + { "lat": 40.7045911, "lon": -74.0142619 }, + { "lat": 40.7046073, "lon": -74.0142664 }, + { "lat": 40.7046241, "lon": -74.0142759 }, + { "lat": 40.7046460, "lon": -74.0142999 }, + { "lat": 40.7046641, "lon": -74.0143363 }, + { "lat": 40.7046844, "lon": -74.0143876 }, + { "lat": 40.7047105, "lon": -74.0144561 } + ], + "tags": { + "bus:lanes": "yes|yes|designated", + "busway:right": "lane", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Battery", + "tiger:name_type": "Pl" + } +}, +{ + "type": "way", + "id": 1091645655, + "bounds": { + "minlat": 40.7332230, + "minlon": -73.9603550, + "maxlat": 40.7333907, + "maxlon": -73.9603274 + }, + "nodes": [ + 7154190650, + 7154190651 + ], + "geometry": [ + { "lat": 40.7333907, "lon": -73.9603550 }, + { "lat": 40.7332230, "lon": -73.9603274 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1091645656, + "bounds": { + "minlat": 40.7333743, + "minlon": -73.9605443, + "maxlat": 40.7334044, + "maxlon": -73.9602000 + }, + "nodes": [ + 5481981179, + 7154190650, + 5481981172 + ], + "geometry": [ + { "lat": 40.7334044, "lon": -73.9602000 }, + { "lat": 40.7333907, "lon": -73.9603550 }, + { "lat": 40.7333743, "lon": -73.9605443 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1091706625, + "bounds": { + "minlat": 40.7408812, + "minlon": -73.9883579, + "maxlat": 40.7410390, + "maxlon": -73.9879853 + }, + "nodes": [ + 4763900906, + 4276517114, + 42445867 + ], + "geometry": [ + { "lat": 40.7410390, "lon": -73.9883579 }, + { "lat": 40.7409238, "lon": -73.9880858 }, + { "lat": 40.7408812, "lon": -73.9879853 } + ], + "tags": { + "alt_name": "East 23 Street", + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "yes|yes|designated", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "East 23rd Street", + "name:ru": "Восточная 23-я стрит", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|", + "wikidata": "Q118599", + "wikipedia": "en:23rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1091726255, + "bounds": { + "minlat": 40.7858747, + "minlon": -73.9524444, + "maxlat": 40.7865093, + "maxlon": -73.9509302 + }, + "nodes": [ + 42447166, + 6221717910, + 7066686010, + 7058672152, + 6254816633, + 42457660 + ], + "geometry": [ + { "lat": 40.7858747, "lon": -73.9509302 }, + { "lat": 40.7859175, "lon": -73.9510303 }, + { "lat": 40.7859502, "lon": -73.9511087 }, + { "lat": 40.7859987, "lon": -73.9512249 }, + { "lat": 40.7864692, "lon": -73.9523478 }, + { "lat": 40.7865093, "lon": -73.9524444 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1091742648, + "bounds": { + "minlat": 40.7239172, + "minlon": -73.9576918, + "maxlat": 40.7242699, + "maxlon": -73.9571219 + }, + "nodes": [ + 42469534, + 9789402667, + 9998760549, + 13271280511 + ], + "geometry": [ + { "lat": 40.7242699, "lon": -73.9576918 }, + { "lat": 40.7242335, "lon": -73.9576343 }, + { "lat": 40.7241008, "lon": -73.9574190 }, + { "lat": 40.7239172, "lon": -73.9571219 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North 14th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "14th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1091742649, + "bounds": { + "minlat": 40.7239215, + "minlon": -73.9578326, + "maxlat": 40.7242699, + "maxlon": -73.9576918 + }, + "nodes": [ + 2357946660, + 9998760550, + 9998760551, + 5861248536, + 9143611887, + 9143611886, + 5861248535, + 9998760552, + 9998760547, + 42469534 + ], + "geometry": [ + { "lat": 40.7239215, "lon": -73.9578326 }, + { "lat": 40.7239396, "lon": -73.9578153 }, + { "lat": 40.7239580, "lon": -73.9577997 }, + { "lat": 40.7239752, "lon": -73.9577868 }, + { "lat": 40.7239940, "lon": -73.9577755 }, + { "lat": 40.7240155, "lon": -73.9577660 }, + { "lat": 40.7240380, "lon": -73.9577574 }, + { "lat": 40.7240661, "lon": -73.9577483 }, + { "lat": 40.7241796, "lon": -73.9577155 }, + { "lat": 40.7242699, "lon": -73.9576918 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1091742650, + "bounds": { + "minlat": 40.7229006, + "minlon": -73.9587393, + "maxlat": 40.7230751, + "maxlon": -73.9584601 + }, + "nodes": [ + 9998760559, + 8468050638, + 3285698876, + 42469528 + ], + "geometry": [ + { "lat": 40.7229006, "lon": -73.9584601 }, + { "lat": 40.7230047, "lon": -73.9586280 }, + { "lat": 40.7230362, "lon": -73.9586791 }, + { "lat": 40.7230751, "lon": -73.9587393 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North 12th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "12th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 1091742651, + "bounds": { + "minlat": 40.7207274, + "minlon": -73.9611052, + "maxlat": 40.7208608, + "maxlon": -73.9608891 + }, + "nodes": [ + 9998760567, + 6245642022, + 42469507 + ], + "geometry": [ + { "lat": 40.7207274, "lon": -73.9608891 }, + { "lat": 40.7208284, "lon": -73.9610524 }, + { "lat": 40.7208608, "lon": -73.9611052 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "North 8th Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "8th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1091757184, + "bounds": { + "minlat": 40.7026418, + "minlon": -73.9667978, + "maxlat": 40.7027959, + "maxlon": -73.9664804 + }, + "nodes": [ + 8913122322, + 8913122343, + 8913122326, + 9998827376, + 9998827377, + 9814817521 + ], + "geometry": [ + { "lat": 40.7027959, "lon": -73.9664804 }, + { "lat": 40.7027082, "lon": -73.9666249 }, + { "lat": 40.7026895, "lon": -73.9666572 }, + { "lat": 40.7026751, "lon": -73.9666911 }, + { "lat": 40.7026623, "lon": -73.9667292 }, + { "lat": 40.7026418, "lon": -73.9667978 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "lanes": "1", + "name": "Wilson Street", + "name:etymology:wikidata": "Q365181", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1091757185, + "bounds": { + "minlat": 40.7029443, + "minlon": -73.9662488, + "maxlat": 40.7031113, + "maxlon": -73.9660358 + }, + "nodes": [ + 9645230714, + 8913122339, + 8913122321 + ], + "geometry": [ + { "lat": 40.7031113, "lon": -73.9660358 }, + { "lat": 40.7030041, "lon": -73.9661866 }, + { "lat": 40.7029443, "lon": -73.9662488 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "lanes": "1", + "name": "60 Kent Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1091757186, + "bounds": { + "minlat": 40.7027855, + "minlon": -73.9672931, + "maxlat": 40.7030179, + "maxlon": -73.9671456 + }, + "nodes": [ + 8913094400, + 8913094401, + 8913094409 + ], + "geometry": [ + { "lat": 40.7027855, "lon": -73.9671456 }, + { "lat": 40.7029082, "lon": -73.9672931 }, + { "lat": 40.7030179, "lon": -73.9672341 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Neilson Street", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1091757187, + "bounds": { + "minlat": 40.7027306, + "minlon": -73.9672341, + "maxlat": 40.7030238, + "maxlon": -73.9663758 + }, + "nodes": [ + 8913094415, + 8913094413, + 8913094406, + 8913094411, + 8913094407, + 8913094408, + 8913094409 + ], + "geometry": [ + { "lat": 40.7030238, "lon": -73.9663758 }, + { "lat": 40.7028997, "lon": -73.9665465 }, + { "lat": 40.7028136, "lon": -73.9666579 }, + { "lat": 40.7027928, "lon": -73.9666939 }, + { "lat": 40.7027306, "lon": -73.9668107 }, + { "lat": 40.7027306, "lon": -73.9668883 }, + { "lat": 40.7030179, "lon": -73.9672341 } + ], + "tags": { + "access": "destination", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1091757188, + "bounds": { + "minlat": 40.7030179, + "minlon": -73.9672341, + "maxlat": 40.7033564, + "maxlon": -73.9671055 + }, + "nodes": [ + 8913094409, + 8913094410, + 8913094412 + ], + "geometry": [ + { "lat": 40.7030179, "lon": -73.9672341 }, + { "lat": 40.7031571, "lon": -73.9671538 }, + { "lat": 40.7033564, "lon": -73.9671055 } + ], + "tags": { + "access": "destination", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1091757189, + "bounds": { + "minlat": 40.7029126, + "minlon": -73.9658584, + "maxlat": 40.7032259, + "maxlon": -73.9654658 + }, + "nodes": [ + 9998827415, + 9776829176, + 9998897942, + 42469430 + ], + "geometry": [ + { "lat": 40.7029126, "lon": -73.9654658 }, + { "lat": 40.7031254, "lon": -73.9657346 }, + { "lat": 40.7031726, "lon": -73.9657966 }, + { "lat": 40.7032259, "lon": -73.9658584 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1091757190, + "bounds": { + "minlat": 40.7042303, + "minlon": -73.9672023, + "maxlat": 40.7042648, + "maxlon": -73.9671611 + }, + "nodes": [ + 42469437, + 9998897921 + ], + "geometry": [ + { "lat": 40.7042648, "lon": -73.9671611 }, + { "lat": 40.7042303, "lon": -73.9672023 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Washington Avenue", + "name:etymology:wikidata": "Q23", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1091997730, + "bounds": { + "minlat": 40.6999244, + "minlon": -73.9892305, + "maxlat": 40.7002334, + "maxlon": -73.9888038 + }, + "nodes": [ + 10001058371, + 486819749, + 10001058374, + 486819750, + 10001058373, + 10001058372, + 278630283 + ], + "geometry": [ + { "lat": 40.6999244, "lon": -73.9888038 }, + { "lat": 40.6999750, "lon": -73.9888524 }, + { "lat": 40.7000213, "lon": -73.9889031 }, + { "lat": 40.7000607, "lon": -73.9889549 }, + { "lat": 40.7001018, "lon": -73.9890132 }, + { "lat": 40.7001389, "lon": -73.9890718 }, + { "lat": 40.7002334, "lon": -73.9892305 } + ], + "tags": { + "bicycle": "use_sidepath", + "bus": "no", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "1", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "2.7", + "name": "Brooklyn Bridge Boulevard", + "name:etymology:wikidata": "Q125006", + "name:etymology:wikipedia": "en:Brooklyn Bridge", + "noref": "yes", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Brooklyn", + "tiger:name_type": "Brg", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1092183199, + "bounds": { + "minlat": 40.8507824, + "minlon": -73.9667055, + "maxlat": 40.8509412, + "maxlon": -73.9666347 + }, + "nodes": [ + 10002778583, + 10002778584, + 10002778585 + ], + "geometry": [ + { "lat": 40.8507824, "lon": -73.9667055 }, + { "lat": 40.8508601, "lon": -73.9666857 }, + { "lat": 40.8509412, "lon": -73.9666347 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1092183203, + "bounds": { + "minlat": 40.8519751, + "minlon": -73.9675303, + "maxlat": 40.8521791, + "maxlon": -73.9673191 + }, + "nodes": [ + 10002778597, + 10002778598, + 10002778599, + 10002778600, + 10002778601, + 10002778602, + 10002778603, + 10002778611, + 10002778604 + ], + "geometry": [ + { "lat": 40.8520067, "lon": -73.9675303 }, + { "lat": 40.8519837, "lon": -73.9674676 }, + { "lat": 40.8519751, "lon": -73.9674295 }, + { "lat": 40.8519832, "lon": -73.9673914 }, + { "lat": 40.8520989, "lon": -73.9673221 }, + { "lat": 40.8521277, "lon": -73.9673191 }, + { "lat": 40.8521508, "lon": -73.9673404 }, + { "lat": 40.8521586, "lon": -73.9673640 }, + { "lat": 40.8521791, "lon": -73.9674259 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1092183231, + "bounds": { + "minlat": 40.8504730, + "minlon": -73.9680916, + "maxlat": 40.8505824, + "maxlon": -73.9676538 + }, + "nodes": [ + 10002778713, + 5330468359, + 10002778682, + 5330468357 + ], + "geometry": [ + { "lat": 40.8505824, "lon": -73.9680916 }, + { "lat": 40.8505519, "lon": -73.9679665 }, + { "lat": 40.8504877, "lon": -73.9677122 }, + { "lat": 40.8504730, "lon": -73.9676538 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1092183232, + "bounds": { + "minlat": 40.8505824, + "minlon": -73.9681479, + "maxlat": 40.8505976, + "maxlon": -73.9680916 + }, + "nodes": [ + 10002778712, + 10002778713 + ], + "geometry": [ + { "lat": 40.8505976, "lon": -73.9681479 }, + { "lat": 40.8505824, "lon": -73.9680916 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1092183233, + "bounds": { + "minlat": 40.8504891, + "minlon": -73.9680704, + "maxlat": 40.8505270, + "maxlon": -73.9680104 + }, + "nodes": [ + 10002778715, + 10002778714 + ], + "geometry": [ + { "lat": 40.8504891, "lon": -73.9680704 }, + { "lat": 40.8505270, "lon": -73.9680104 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1092183234, + "bounds": { + "minlat": 40.8505270, + "minlon": -73.9680104, + "maxlat": 40.8505519, + "maxlon": -73.9679665 + }, + "nodes": [ + 10002778714, + 9419673479, + 5330468359 + ], + "geometry": [ + { "lat": 40.8505270, "lon": -73.9680104 }, + { "lat": 40.8505348, "lon": -73.9679953 }, + { "lat": 40.8505519, "lon": -73.9679665 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1092265665, + "bounds": { + "minlat": 40.7085012, + "minlon": -73.9277630, + "maxlat": 40.7087918, + "maxlon": -73.9276560 + }, + "nodes": [ + 10003499550, + 10003499552, + 10003499551 + ], + "geometry": [ + { "lat": 40.7085012, "lon": -73.9276560 }, + { "lat": 40.7085708, "lon": -73.9276834 }, + { "lat": 40.7087918, "lon": -73.9277630 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1092265666, + "bounds": { + "minlat": 40.7080824, + "minlon": -73.9303839, + "maxlat": 40.7084668, + "maxlon": -73.9302335 + }, + "nodes": [ + 10003499555, + 10003499557, + 10003499556 + ], + "geometry": [ + { "lat": 40.7080824, "lon": -73.9302335 }, + { "lat": 40.7081535, "lon": -73.9302629 }, + { "lat": 40.7084668, "lon": -73.9303839 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1092319800, + "bounds": { + "minlat": 40.7634965, + "minlon": -73.9794771, + "maxlat": 40.7635805, + "maxlon": -73.9794188 + }, + "nodes": [ + 10003982619, + 10173346250, + 10003982620 + ], + "geometry": [ + { "lat": 40.7635805, "lon": -73.9794188 }, + { "lat": 40.7635188, "lon": -73.9794618 }, + { "lat": 40.7634965, "lon": -73.9794771 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1092319801, + "bounds": { + "minlat": 40.7640935, + "minlon": -73.9789835, + "maxlat": 40.7641716, + "maxlon": -73.9789302 + }, + "nodes": [ + 10003982621, + 11296226825, + 10003982622 + ], + "geometry": [ + { "lat": 40.7641716, "lon": -73.9789302 }, + { "lat": 40.7641201, "lon": -73.9789653 }, + { "lat": 40.7640935, "lon": -73.9789835 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1092319802, + "bounds": { + "minlat": 40.7639072, + "minlon": -73.9783036, + "maxlat": 40.7640028, + "maxlon": -73.9782347 + }, + "nodes": [ + 10003982623, + 11296226828, + 10003982624 + ], + "geometry": [ + { "lat": 40.7639072, "lon": -73.9783036 }, + { "lat": 40.7639717, "lon": -73.9782571 }, + { "lat": 40.7640028, "lon": -73.9782347 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1092553225, + "bounds": { + "minlat": 40.8250545, + "minlon": -73.9440139, + "maxlat": 40.8253320, + "maxlon": -73.9438130 + }, + "nodes": [ + 10005912258, + 11221649570, + 42432967 + ], + "geometry": [ + { "lat": 40.8250545, "lon": -73.9440139 }, + { "lat": 40.8252632, "lon": -73.9438628 }, + { "lat": 40.8253320, "lon": -73.9438130 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:forward": "left|", + "width": "18", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1092575232, + "bounds": { + "minlat": 40.8355075, + "minlon": -74.0190308, + "maxlat": 40.8358797, + "maxlon": -74.0183436 + }, + "nodes": [ + 10006078580, + 10006078581, + 10006078582 + ], + "geometry": [ + { "lat": 40.8355075, "lon": -74.0183436 }, + { "lat": 40.8358797, "lon": -74.0189414 }, + { "lat": 40.8357852, "lon": -74.0190308 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1092575233, + "bounds": { + "minlat": 40.8349679, + "minlon": -74.0190787, + "maxlat": 40.8352764, + "maxlon": -74.0186502 + }, + "nodes": [ + 10006078583, + 10006078584, + 10006078585 + ], + "geometry": [ + { "lat": 40.8352194, "lon": -74.0186502 }, + { "lat": 40.8352764, "lon": -74.0187485 }, + { "lat": 40.8349679, "lon": -74.0190787 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1092603758, + "bounds": { + "minlat": 40.7579299, + "minlon": -73.9683328, + "maxlat": 40.7580418, + "maxlon": -73.9682543 + }, + "nodes": [ + 10006361868, + 10168635430, + 10006361869 + ], + "geometry": [ + { "lat": 40.7579299, "lon": -73.9683328 }, + { "lat": 40.7579865, "lon": -73.9682931 }, + { "lat": 40.7580418, "lon": -73.9682543 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1092603759, + "bounds": { + "minlat": 40.7583585, + "minlon": -73.9673005, + "maxlat": 40.7584415, + "maxlon": -73.9672420 + }, + "nodes": [ + 10006361873, + 10172968773, + 10006361871 + ], + "geometry": [ + { "lat": 40.7583585, "lon": -73.9673005 }, + { "lat": 40.7583756, "lon": -73.9672885 }, + { "lat": 40.7584415, "lon": -73.9672420 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1092603760, + "bounds": { + "minlat": 40.7578060, + "minlon": -73.9677004, + "maxlat": 40.7578778, + "maxlon": -73.9676479 + }, + "nodes": [ + 10006361870, + 10168635427, + 10006361872 + ], + "geometry": [ + { "lat": 40.7578060, "lon": -73.9677004 }, + { "lat": 40.7578528, "lon": -73.9676656 }, + { "lat": 40.7578778, "lon": -73.9676479 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1092603761, + "bounds": { + "minlat": 40.7577545, + "minlon": -73.9675793, + "maxlat": 40.7578260, + "maxlon": -73.9675248 + }, + "nodes": [ + 10006361874, + 10168635426, + 10006361875 + ], + "geometry": [ + { "lat": 40.7577545, "lon": -73.9675793 }, + { "lat": 40.7578019, "lon": -73.9675517 }, + { "lat": 40.7578260, "lon": -73.9675248 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1092603762, + "bounds": { + "minlat": 40.7583083, + "minlon": -73.9671818, + "maxlat": 40.7583910, + "maxlon": -73.9671202 + }, + "nodes": [ + 10006361876, + 10172968774, + 10006361877 + ], + "geometry": [ + { "lat": 40.7583083, "lon": -73.9671818 }, + { "lat": 40.7583229, "lon": -73.9671709 }, + { "lat": 40.7583910, "lon": -73.9671202 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1092603763, + "bounds": { + "minlat": 40.7584759, + "minlon": -73.9673247, + "maxlat": 40.7585412, + "maxlon": -73.9672770 + }, + "nodes": [ + 10006361878, + 10172968775, + 10006361879 + ], + "geometry": [ + { "lat": 40.7584759, "lon": -73.9673247 }, + { "lat": 40.7585228, "lon": -73.9672904 }, + { "lat": 40.7585412, "lon": -73.9672770 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1092606548, + "bounds": { + "minlat": 40.7505748, + "minlon": -73.9355975, + "maxlat": 40.7507819, + "maxlon": -73.9351951 + }, + "nodes": [ + 10006374932, + 10006374945, + 10006374944, + 10006374943, + 10006374946 + ], + "geometry": [ + { "lat": 40.7507819, "lon": -73.9355975 }, + { "lat": 40.7506685, "lon": -73.9353727 }, + { "lat": 40.7506501, "lon": -73.9353361 }, + { "lat": 40.7506297, "lon": -73.9352956 }, + { "lat": 40.7505748, "lon": -73.9351951 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1092635359, + "bounds": { + "minlat": 40.7187088, + "minlon": -73.9152716, + "maxlat": 40.7200853, + "maxlon": -73.9146253 + }, + "nodes": [ + 10006612432, + 10301640196, + 10301640195 + ], + "geometry": [ + { "lat": 40.7187088, "lon": -73.9146253 }, + { "lat": 40.7188245, "lon": -73.9146796 }, + { "lat": 40.7200853, "lon": -73.9152716 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1092897538, + "bounds": { + "minlat": 40.7251818, + "minlon": -73.9569257, + "maxlat": 40.7257048, + "maxlon": -73.9566286 + }, + "nodes": [ + 10009024569, + 5801598835, + 9789402651, + 42512889 + ], + "geometry": [ + { "lat": 40.7251818, "lon": -73.9566286 }, + { "lat": 40.7256154, "lon": -73.9568767 }, + { "lat": 40.7256456, "lon": -73.9568926 }, + { "lat": 40.7257048, "lon": -73.9569257 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Gem Street", + "oneway": "yes", + "parking:left": "separate", + "parking:right": "lane", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Gem", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1093058959, + "bounds": { + "minlat": 40.8417670, + "minlon": -73.9988837, + "maxlat": 40.8422290, + "maxlon": -73.9980832 + }, + "nodes": [ + 103271812, + 10285495823, + 10285468158 + ], + "geometry": [ + { "lat": 40.8422290, "lon": -73.9988837 }, + { "lat": 40.8421886, "lon": -73.9988137 }, + { "lat": 40.8417670, "lon": -73.9980832 } + ], + "tags": { + "highway": "residential", + "name": "East Ruby Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ruby", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1093058960, + "bounds": { + "minlat": 40.8420020, + "minlon": -73.9991175, + "maxlat": 40.8422290, + "maxlon": -73.9988837 + }, + "nodes": [ + 103271812, + 9963068413 + ], + "geometry": [ + { "lat": 40.8422290, "lon": -73.9988837 }, + { "lat": 40.8420020, "lon": -73.9991175 } + ], + "tags": { + "highway": "residential", + "name": "Roff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1093097093, + "bounds": { + "minlat": 40.7411842, + "minlon": -73.9387972, + "maxlat": 40.7412799, + "maxlon": -73.9387804 + }, + "nodes": [ + 2340430335, + 5481972209 + ], + "geometry": [ + { "lat": 40.7411842, "lon": -73.9387972 }, + { "lat": 40.7412799, "lon": -73.9387804 } + ], + "tags": { + "highway": "unclassified", + "name": "29th Street" + } +}, +{ + "type": "way", + "id": 1093380346, + "bounds": { + "minlat": 40.7913980, + "minlon": -73.9992934, + "maxlat": 40.7916406, + "maxlon": -73.9990194 + }, + "nodes": [ + 10013380684, + 10013380685, + 10013380686, + 10013380687 + ], + "geometry": [ + { "lat": 40.7915791, "lon": -73.9990194 }, + { "lat": 40.7916406, "lon": -73.9991939 }, + { "lat": 40.7914569, "lon": -73.9992934 }, + { "lat": 40.7913980, "lon": -73.9991271 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1093380347, + "bounds": { + "minlat": 40.7914698, + "minlon": -73.9988835, + "maxlat": 40.7915335, + "maxlon": -73.9986995 + }, + "nodes": [ + 10013380682, + 12715549671 + ], + "geometry": [ + { "lat": 40.7914698, "lon": -73.9986995 }, + { "lat": 40.7915335, "lon": -73.9988835 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1093380348, + "bounds": { + "minlat": 40.7915674, + "minlon": -73.9990194, + "maxlat": 40.7915791, + "maxlon": -73.9989814 + }, + "nodes": [ + 10013380683, + 10013380684 + ], + "geometry": [ + { "lat": 40.7915674, "lon": -73.9989814 }, + { "lat": 40.7915791, "lon": -73.9990194 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1093380349, + "bounds": { + "minlat": 40.7913541, + "minlon": -73.9990883, + "maxlat": 40.7913857, + "maxlon": -73.9989910 + }, + "nodes": [ + 10013380688, + 12715549670 + ], + "geometry": [ + { "lat": 40.7913857, "lon": -73.9990883 }, + { "lat": 40.7913541, "lon": -73.9989910 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1093380350, + "bounds": { + "minlat": 40.7913857, + "minlon": -73.9991271, + "maxlat": 40.7913980, + "maxlon": -73.9990883 + }, + "nodes": [ + 10013380687, + 10013380688 + ], + "geometry": [ + { "lat": 40.7913980, "lon": -73.9991271 }, + { "lat": 40.7913857, "lon": -73.9990883 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1093516812, + "bounds": { + "minlat": 40.8064223, + "minlon": -73.9905404, + "maxlat": 40.8064513, + "maxlon": -73.9904064 + }, + "nodes": [ + 3477651020, + 10015270513 + ], + "geometry": [ + { "lat": 40.8064223, "lon": -73.9904064 }, + { "lat": 40.8064513, "lon": -73.9905404 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "City Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1093700387, + "bounds": { + "minlat": 40.7508842, + "minlon": -73.9726092, + "maxlat": 40.7509469, + "maxlon": -73.9725657 + }, + "nodes": [ + 10017163238, + 10702853772, + 10017163240 + ], + "geometry": [ + { "lat": 40.7509469, "lon": -73.9725657 }, + { "lat": 40.7509332, "lon": -73.9725753 }, + { "lat": 40.7508842, "lon": -73.9726092 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1093809196, + "bounds": { + "minlat": 40.8781269, + "minlon": -73.9820159, + "maxlat": 40.8785731, + "maxlon": -73.9817564 + }, + "nodes": [ + 10018166823, + 13525915105, + 10018166824, + 10018166825, + 10018166826, + 13525892976, + 7701684513 + ], + "geometry": [ + { "lat": 40.8785731, "lon": -73.9817564 }, + { "lat": 40.8785233, "lon": -73.9818050 }, + { "lat": 40.8784545, "lon": -73.9818722 }, + { "lat": 40.8783743, "lon": -73.9818585 }, + { "lat": 40.8782375, "lon": -73.9820159 }, + { "lat": 40.8781813, "lon": -73.9819466 }, + { "lat": 40.8781269, "lon": -73.9818795 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1093994788, + "bounds": { + "minlat": 40.7227664, + "minlon": -73.9475020, + "maxlat": 40.7233163, + "maxlon": -73.9471520 + }, + "nodes": [ + 2987758888, + 2987758854, + 2987758855, + 6228788703, + 2987758892 + ], + "geometry": [ + { "lat": 40.7233163, "lon": -73.9475020 }, + { "lat": 40.7231983, "lon": -73.9474289 }, + { "lat": 40.7228751, "lon": -73.9472344 }, + { "lat": 40.7228411, "lon": -73.9472090 }, + { "lat": 40.7227664, "lon": -73.9471520 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:both": "no", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1093994789, + "bounds": { + "minlat": 40.7347071, + "minlon": -73.9523967, + "maxlat": 40.7352906, + "maxlon": -73.9523393 + }, + "nodes": [ + 42486604, + 12068940233, + 9996409546, + 2987758907, + 9996409545, + 9996409544, + 9996409529 + ], + "geometry": [ + { "lat": 40.7347071, "lon": -73.9523393 }, + { "lat": 40.7347724, "lon": -73.9523440 }, + { "lat": 40.7349391, "lon": -73.9523567 }, + { "lat": 40.7349878, "lon": -73.9523563 }, + { "lat": 40.7350634, "lon": -73.9523608 }, + { "lat": 40.7351250, "lon": -73.9523689 }, + { "lat": 40.7352906, "lon": -73.9523967 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1094071927, + "bounds": { + "minlat": 40.8028219, + "minlon": -74.0194940, + "maxlat": 40.8035763, + "maxlon": -74.0181980 + }, + "nodes": [ + 10020358522, + 10020358527, + 10020358526, + 10020358523, + 12990469915, + 12990469914, + 10020358543, + 12990469920, + 10020358541, + 12990469917, + 10020358524, + 12990469938, + 12990469937, + 10020358525, + 10020358529, + 10020358542, + 10020358526 + ], + "geometry": [ + { "lat": 40.8035763, "lon": -74.0181980 }, + { "lat": 40.8032693, "lon": -74.0184605 }, + { "lat": 40.8031231, "lon": -74.0185855 }, + { "lat": 40.8028292, "lon": -74.0188303 }, + { "lat": 40.8028219, "lon": -74.0188554 }, + { "lat": 40.8028293, "lon": -74.0188805 }, + { "lat": 40.8028657, "lon": -74.0189541 }, + { "lat": 40.8029522, "lon": -74.0191244 }, + { "lat": 40.8030066, "lon": -74.0192316 }, + { "lat": 40.8031006, "lon": -74.0194148 }, + { "lat": 40.8031412, "lon": -74.0194940 }, + { "lat": 40.8032448, "lon": -74.0194102 }, + { "lat": 40.8033716, "lon": -74.0193076 }, + { "lat": 40.8034527, "lon": -74.0192420 }, + { "lat": 40.8034207, "lon": -74.0191795 }, + { "lat": 40.8033112, "lon": -74.0189626 }, + { "lat": 40.8031231, "lon": -74.0185855 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094071928, + "bounds": { + "minlat": 40.8032693, + "minlon": -74.0191795, + "maxlat": 40.8035514, + "maxlon": -74.0184605 + }, + "nodes": [ + 10020358527, + 10020358530, + 12990469916, + 10020358528, + 10020358529 + ], + "geometry": [ + { "lat": 40.8032693, "lon": -74.0184605 }, + { "lat": 40.8033457, "lon": -74.0186038 }, + { "lat": 40.8035411, "lon": -74.0190089 }, + { "lat": 40.8035514, "lon": -74.0190644 }, + { "lat": 40.8034207, "lon": -74.0191795 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094071929, + "bounds": { + "minlat": 40.8033457, + "minlon": -74.0191572, + "maxlat": 40.8037948, + "maxlon": -74.0185004 + }, + "nodes": [ + 10020358530, + 10020358531, + 10020358532, + 10020358533, + 10020358534, + 10020358535, + 10020358536, + 10020358537, + 10020358538, + 12990469931, + 12990469934, + 12990469932, + 12990469933, + 10020358528 + ], + "geometry": [ + { "lat": 40.8033457, "lon": -74.0186038 }, + { "lat": 40.8034800, "lon": -74.0185010 }, + { "lat": 40.8035094, "lon": -74.0185004 }, + { "lat": 40.8035590, "lon": -74.0185249 }, + { "lat": 40.8035977, "lon": -74.0185862 }, + { "lat": 40.8037828, "lon": -74.0189541 }, + { "lat": 40.8037948, "lon": -74.0189965 }, + { "lat": 40.8037621, "lon": -74.0190622 }, + { "lat": 40.8036978, "lon": -74.0191290 }, + { "lat": 40.8036670, "lon": -74.0191477 }, + { "lat": 40.8036253, "lon": -74.0191572 }, + { "lat": 40.8035916, "lon": -74.0191366 }, + { "lat": 40.8035716, "lon": -74.0191101 }, + { "lat": 40.8035514, "lon": -74.0190644 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1094071930, + "bounds": { + "minlat": 40.8030066, + "minlon": -74.0192316, + "maxlat": 40.8033112, + "maxlon": -74.0189626 + }, + "nodes": [ + 10020358541, + 10020358542 + ], + "geometry": [ + { "lat": 40.8030066, "lon": -74.0192316 }, + { "lat": 40.8033112, "lon": -74.0189626 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094071931, + "bounds": { + "minlat": 40.8027414, + "minlon": -74.0190500, + "maxlat": 40.8028657, + "maxlon": -74.0189541 + }, + "nodes": [ + 10020358543, + 103859561 + ], + "geometry": [ + { "lat": 40.8028657, "lon": -74.0189541 }, + { "lat": 40.8027414, "lon": -74.0190500 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094098101, + "bounds": { + "minlat": 40.8187124, + "minlon": -73.9791916, + "maxlat": 40.8189913, + "maxlon": -73.9789550 + }, + "nodes": [ + 10020578012, + 10020578013, + 10020578015, + 10020578014 + ], + "geometry": [ + { "lat": 40.8189913, "lon": -73.9789550 }, + { "lat": 40.8187594, "lon": -73.9791789 }, + { "lat": 40.8187374, "lon": -73.9791916 }, + { "lat": 40.8187124, "lon": -73.9791788 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1094098102, + "bounds": { + "minlat": 40.8193062, + "minlon": -73.9787547, + "maxlat": 40.8193311, + "maxlon": -73.9787051 + }, + "nodes": [ + 10020578016, + 10020602017 + ], + "geometry": [ + { "lat": 40.8193062, "lon": -73.9787051 }, + { "lat": 40.8193311, "lon": -73.9787547 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094098103, + "bounds": { + "minlat": 40.8192439, + "minlon": -73.9787051, + "maxlat": 40.8193617, + "maxlon": -73.9784407 + }, + "nodes": [ + 10020578008, + 10020578009, + 10020578016 + ], + "geometry": [ + { "lat": 40.8192439, "lon": -73.9784407 }, + { "lat": 40.8193617, "lon": -73.9786482 }, + { "lat": 40.8193062, "lon": -73.9787051 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094098104, + "bounds": { + "minlat": 40.8186438, + "minlon": -73.9791788, + "maxlat": 40.8187124, + "maxlon": -73.9790543 + }, + "nodes": [ + 10020578014, + 4205789000 + ], + "geometry": [ + { "lat": 40.8187124, "lon": -73.9791788 }, + { "lat": 40.8186438, "lon": -73.9790543 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1094098105, + "bounds": { + "minlat": 40.8189913, + "minlon": -73.9789550, + "maxlat": 40.8190877, + "maxlon": -73.9789293 + }, + "nodes": [ + 10020578010, + 10020578011, + 10020578012 + ], + "geometry": [ + { "lat": 40.8190877, "lon": -73.9789293 }, + { "lat": 40.8190063, "lon": -73.9789383 }, + { "lat": 40.8189913, "lon": -73.9789550 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1094102440, + "bounds": { + "minlat": 40.8224402, + "minlon": -74.0092384, + "maxlat": 40.8225885, + "maxlon": -74.0089475 + }, + "nodes": [ + 7594276855, + 10020624830, + 10020624831 + ], + "geometry": [ + { "lat": 40.8225885, "lon": -74.0092302 }, + { "lat": 40.8224504, "lon": -74.0092384 }, + { "lat": 40.8224402, "lon": -74.0089475 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094102441, + "bounds": { + "minlat": 40.8222359, + "minlon": -74.0093385, + "maxlat": 40.8222920, + "maxlon": -74.0087379 + }, + "nodes": [ + 103224005, + 10020624832, + 10020624833, + 10020624834 + ], + "geometry": [ + { "lat": 40.8222359, "lon": -74.0087379 }, + { "lat": 40.8222425, "lon": -74.0091769 }, + { "lat": 40.8222869, "lon": -74.0091769 }, + { "lat": 40.8222920, "lon": -74.0093385 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094102442, + "bounds": { + "minlat": 40.8217654, + "minlon": -74.0097579, + "maxlat": 40.8223689, + "maxlon": -74.0094152 + }, + "nodes": [ + 10020624839, + 10020624835, + 10020624836, + 10020624837, + 10020624838 + ], + "geometry": [ + { "lat": 40.8217671, "lon": -74.0094152 }, + { "lat": 40.8217654, "lon": -74.0097579 }, + { "lat": 40.8223689, "lon": -74.0097300 }, + { "lat": 40.8223612, "lon": -74.0095049 }, + { "lat": 40.8221967, "lon": -74.0095107 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094102443, + "bounds": { + "minlat": 40.8220575, + "minlon": -74.0088996, + "maxlat": 40.8220694, + "maxlon": -74.0087282 + }, + "nodes": [ + 103112481, + 10020624843, + 10020624840 + ], + "geometry": [ + { "lat": 40.8220694, "lon": -74.0087282 }, + { "lat": 40.8220627, "lon": -74.0088257 }, + { "lat": 40.8220575, "lon": -74.0088996 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094102444, + "bounds": { + "minlat": 40.8219884, + "minlon": -74.0088996, + "maxlat": 40.8220575, + "maxlon": -74.0088912 + }, + "nodes": [ + 10020624840, + 10020624842 + ], + "geometry": [ + { "lat": 40.8220575, "lon": -74.0088996 }, + { "lat": 40.8219884, "lon": -74.0088912 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094102445, + "bounds": { + "minlat": 40.8220575, + "minlon": -74.0089136, + "maxlat": 40.8221759, + "maxlon": -74.0088996 + }, + "nodes": [ + 10020624840, + 10020624841 + ], + "geometry": [ + { "lat": 40.8220575, "lon": -74.0088996 }, + { "lat": 40.8221759, "lon": -74.0089136 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094102446, + "bounds": { + "minlat": 40.8227007, + "minlon": -74.0092947, + "maxlat": 40.8229996, + "maxlon": -74.0089157 + }, + "nodes": [ + 10020624844, + 10020624845, + 10020624846, + 10020624847, + 10020624848, + 7594276857 + ], + "geometry": [ + { "lat": 40.8227163, "lon": -74.0092231 }, + { "lat": 40.8227007, "lon": -74.0089578 }, + { "lat": 40.8227229, "lon": -74.0089343 }, + { "lat": 40.8228587, "lon": -74.0089222 }, + { "lat": 40.8229736, "lon": -74.0089157 }, + { "lat": 40.8229996, "lon": -74.0092947 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094102447, + "bounds": { + "minlat": 40.8228587, + "minlon": -74.0092133, + "maxlat": 40.8228763, + "maxlon": -74.0089222 + }, + "nodes": [ + 7594276862, + 10020624847 + ], + "geometry": [ + { "lat": 40.8228763, "lon": -74.0092133 }, + { "lat": 40.8228587, "lon": -74.0089222 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094102448, + "bounds": { + "minlat": 40.8229996, + "minlon": -74.0096233, + "maxlat": 40.8233373, + "maxlon": -74.0092562 + }, + "nodes": [ + 7594276857, + 10020624849, + 7594276860 + ], + "geometry": [ + { "lat": 40.8229996, "lon": -74.0092947 }, + { "lat": 40.8230178, "lon": -74.0096233 }, + { "lat": 40.8233373, "lon": -74.0092562 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094109099, + "bounds": { + "minlat": 40.8621598, + "minlon": -73.9758004, + "maxlat": 40.8625451, + "maxlon": -73.9755030 + }, + "nodes": [ + 10020669543, + 10020669537, + 12670717815, + 12670717823, + 12670717816, + 12670717824, + 12670717817, + 12670717825, + 12670717826, + 12670717818, + 12670717821, + 12670717819, + 12670717822, + 12670717820, + 10020669538, + 10020669539 + ], + "geometry": [ + { "lat": 40.8621598, "lon": -73.9755905 }, + { "lat": 40.8624832, "lon": -73.9755039 }, + { "lat": 40.8624925, "lon": -73.9755030 }, + { "lat": 40.8625031, "lon": -73.9755050 }, + { "lat": 40.8625110, "lon": -73.9755090 }, + { "lat": 40.8625184, "lon": -73.9755171 }, + { "lat": 40.8625249, "lon": -73.9755265 }, + { "lat": 40.8625290, "lon": -73.9755385 }, + { "lat": 40.8625447, "lon": -73.9756532 }, + { "lat": 40.8625451, "lon": -73.9756666 }, + { "lat": 40.8625424, "lon": -73.9756794 }, + { "lat": 40.8625385, "lon": -73.9756901 }, + { "lat": 40.8625328, "lon": -73.9756991 }, + { "lat": 40.8625255, "lon": -73.9757075 }, + { "lat": 40.8625160, "lon": -73.9757128 }, + { "lat": 40.8621927, "lon": -73.9758004 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094109100, + "bounds": { + "minlat": 40.8622282, + "minlon": -73.9762283, + "maxlat": 40.8627405, + "maxlon": -73.9758990 + }, + "nodes": [ + 7936445124, + 7936445118, + 12670717830, + 7936445119, + 12670717829, + 12670717832, + 12670717831, + 7936445120, + 7936445121, + 10020669542, + 12670717828, + 12670717827, + 7936445122, + 7936445123 + ], + "geometry": [ + { "lat": 40.8622604, "lon": -73.9762283 }, + { "lat": 40.8627004, "lon": -73.9761017 }, + { "lat": 40.8627111, "lon": -73.9760951 }, + { "lat": 40.8627207, "lon": -73.9760850 }, + { "lat": 40.8627291, "lon": -73.9760733 }, + { "lat": 40.8627349, "lon": -73.9760589 }, + { "lat": 40.8627405, "lon": -73.9760361 }, + { "lat": 40.8627400, "lon": -73.9760116 }, + { "lat": 40.8627359, "lon": -73.9759931 }, + { "lat": 40.8626921, "lon": -73.9759239 }, + { "lat": 40.8626781, "lon": -73.9759073 }, + { "lat": 40.8626606, "lon": -73.9758990 }, + { "lat": 40.8626452, "lon": -73.9759006 }, + { "lat": 40.8622282, "lon": -73.9760015 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094109101, + "bounds": { + "minlat": 40.8621598, + "minlon": -73.9762283, + "maxlat": 40.8622604, + "maxlon": -73.9755905 + }, + "nodes": [ + 10020669543, + 10020669539, + 7936445123, + 7936445124 + ], + "geometry": [ + { "lat": 40.8621598, "lon": -73.9755905 }, + { "lat": 40.8621927, "lon": -73.9758004 }, + { "lat": 40.8622282, "lon": -73.9760015 }, + { "lat": 40.8622604, "lon": -73.9762283 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094109102, + "bounds": { + "minlat": 40.8615187, + "minlon": -73.9757830, + "maxlat": 40.8621598, + "maxlon": -73.9755905 + }, + "nodes": [ + 10020669536, + 10020669559, + 10020669554, + 10020669543 + ], + "geometry": [ + { "lat": 40.8615187, "lon": -73.9757830 }, + { "lat": 40.8617733, "lon": -73.9757058 }, + { "lat": 40.8620945, "lon": -73.9756100 }, + { "lat": 40.8621598, "lon": -73.9755905 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094109103, + "bounds": { + "minlat": 40.8625773, + "minlon": -73.9754117, + "maxlat": 40.8630536, + "maxlon": -73.9750524 + }, + "nodes": [ + 10020669544, + 10020669545, + 10020669548, + 10020669546, + 7373684928 + ], + "geometry": [ + { "lat": 40.8630536, "lon": -73.9750524 }, + { "lat": 40.8630455, "lon": -73.9753226 }, + { "lat": 40.8628962, "lon": -73.9753560 }, + { "lat": 40.8626721, "lon": -73.9754117 }, + { "lat": 40.8625773, "lon": -73.9751878 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094109104, + "bounds": { + "minlat": 40.8628962, + "minlon": -73.9753560, + "maxlat": 40.8629093, + "maxlon": -73.9750945 + }, + "nodes": [ + 10020669547, + 10020669548 + ], + "geometry": [ + { "lat": 40.8629093, "lon": -73.9750945 }, + { "lat": 40.8628962, "lon": -73.9753560 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094109105, + "bounds": { + "minlat": 40.8628694, + "minlon": -73.9757225, + "maxlat": 40.8631560, + "maxlon": -73.9753226 + }, + "nodes": [ + 10020669545, + 10020669549, + 10020669550, + 10020669551, + 10020669552 + ], + "geometry": [ + { "lat": 40.8630455, "lon": -73.9753226 }, + { "lat": 40.8631211, "lon": -73.9753530 }, + { "lat": 40.8631560, "lon": -73.9755012 }, + { "lat": 40.8631542, "lon": -73.9756017 }, + { "lat": 40.8628694, "lon": -73.9757225 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094109106, + "bounds": { + "minlat": 40.8617733, + "minlon": -73.9757709, + "maxlat": 40.8619000, + "maxlon": -73.9757058 + }, + "nodes": [ + 10020669557, + 10020669558, + 10020669559 + ], + "geometry": [ + { "lat": 40.8619000, "lon": -73.9757709 }, + { "lat": 40.8618305, "lon": -73.9757605 }, + { "lat": 40.8617733, "lon": -73.9757058 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094109107, + "bounds": { + "minlat": 40.8619932, + "minlon": -73.9757470, + "maxlat": 40.8620945, + "maxlon": -73.9756100 + }, + "nodes": [ + 10020669554, + 10020669555, + 10020669556 + ], + "geometry": [ + { "lat": 40.8620945, "lon": -73.9756100 }, + { "lat": 40.8620582, "lon": -73.9756986 }, + { "lat": 40.8619932, "lon": -73.9757470 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094109108, + "bounds": { + "minlat": 40.8619000, + "minlon": -73.9757709, + "maxlat": 40.8619932, + "maxlon": -73.9757470 + }, + "nodes": [ + 10020669556, + 10020669557 + ], + "geometry": [ + { "lat": 40.8619932, "lon": -73.9757470 }, + { "lat": 40.8619000, "lon": -73.9757709 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094119267, + "bounds": { + "minlat": 40.7954149, + "minlon": -73.9972023, + "maxlat": 40.7956329, + "maxlon": -73.9968687 + }, + "nodes": [ + 3642793668, + 10020765323, + 10020765324, + 10020765325, + 10020765329 + ], + "geometry": [ + { "lat": 40.7956006, "lon": -73.9968687 }, + { "lat": 40.7956329, "lon": -73.9970328 }, + { "lat": 40.7956319, "lon": -73.9971024 }, + { "lat": 40.7956079, "lon": -73.9971423 }, + { "lat": 40.7954149, "lon": -73.9972023 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1094119268, + "bounds": { + "minlat": 40.7950208, + "minlon": -73.9972905, + "maxlat": 40.7953517, + "maxlon": -73.9970303 + }, + "nodes": [ + 10020765330, + 10020765326, + 10020765327 + ], + "geometry": [ + { "lat": 40.7953517, "lon": -73.9972219 }, + { "lat": 40.7951312, "lon": -73.9972905 }, + { "lat": 40.7950208, "lon": -73.9970303 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1094119269, + "bounds": { + "minlat": 40.7953517, + "minlon": -73.9972219, + "maxlat": 40.7954149, + "maxlon": -73.9972023 + }, + "nodes": [ + 10020765329, + 10020765330 + ], + "geometry": [ + { "lat": 40.7954149, "lon": -73.9972023 }, + { "lat": 40.7953517, "lon": -73.9972219 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1094225961, + "bounds": { + "minlat": 40.8183643, + "minlon": -74.0100033, + "maxlat": 40.8189682, + "maxlon": -74.0078520 + }, + "nodes": [ + 7139376170, + 12706461744, + 10021317510, + 10021317511, + 10021423317, + 10021317512, + 10021317513, + 10021423319, + 10021423321, + 10021423322, + 10021317514, + 10021423324, + 10021317515, + 10021317516 + ], + "geometry": [ + { "lat": 40.8183643, "lon": -74.0078520 }, + { "lat": 40.8184154, "lon": -74.0080144 }, + { "lat": 40.8184332, "lon": -74.0080710 }, + { "lat": 40.8185903, "lon": -74.0084328 }, + { "lat": 40.8186171, "lon": -74.0085113 }, + { "lat": 40.8186395, "lon": -74.0085772 }, + { "lat": 40.8186707, "lon": -74.0087821 }, + { "lat": 40.8187009, "lon": -74.0088431 }, + { "lat": 40.8187864, "lon": -74.0090159 }, + { "lat": 40.8188805, "lon": -74.0092059 }, + { "lat": 40.8189682, "lon": -74.0093832 }, + { "lat": 40.8187241, "lon": -74.0096192 }, + { "lat": 40.8186209, "lon": -74.0097190 }, + { "lat": 40.8185936, "lon": -74.0100033 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094225962, + "bounds": { + "minlat": 40.8182437, + "minlon": -74.0088392, + "maxlat": 40.8186171, + "maxlon": -74.0085113 + }, + "nodes": [ + 10021423317, + 10021423318 + ], + "geometry": [ + { "lat": 40.8186171, "lon": -74.0085113 }, + { "lat": 40.8182437, "lon": -74.0088392 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094225963, + "bounds": { + "minlat": 40.8183873, + "minlon": -74.0091202, + "maxlat": 40.8187009, + "maxlon": -74.0088431 + }, + "nodes": [ + 10021423319, + 10021423320 + ], + "geometry": [ + { "lat": 40.8187009, "lon": -74.0088431 }, + { "lat": 40.8183873, "lon": -74.0091202 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094225964, + "bounds": { + "minlat": 40.8184839, + "minlon": -74.0093039, + "maxlat": 40.8187864, + "maxlon": -74.0090159 + }, + "nodes": [ + 10021423321, + 10021423325, + 7612325110 + ], + "geometry": [ + { "lat": 40.8187864, "lon": -74.0090159 }, + { "lat": 40.8185317, "lon": -74.0092614 }, + { "lat": 40.8184839, "lon": -74.0093039 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094225965, + "bounds": { + "minlat": 40.8186275, + "minlon": -74.0096192, + "maxlat": 40.8188805, + "maxlon": -74.0092059 + }, + "nodes": [ + 10021423322, + 10021423323, + 10021423324 + ], + "geometry": [ + { "lat": 40.8188805, "lon": -74.0092059 }, + { "lat": 40.8186275, "lon": -74.0094350 }, + { "lat": 40.8187241, "lon": -74.0096192 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094225966, + "bounds": { + "minlat": 40.8185317, + "minlon": -74.0094350, + "maxlat": 40.8186275, + "maxlon": -74.0092614 + }, + "nodes": [ + 10021423323, + 10021423325 + ], + "geometry": [ + { "lat": 40.8186275, "lon": -74.0094350 }, + { "lat": 40.8185317, "lon": -74.0092614 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094225967, + "bounds": { + "minlat": 40.8182437, + "minlon": -74.0090741, + "maxlat": 40.8183631, + "maxlon": -74.0088392 + }, + "nodes": [ + 7612325111, + 10021423318 + ], + "geometry": [ + { "lat": 40.8183631, "lon": -74.0090741 }, + { "lat": 40.8182437, "lon": -74.0088392 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094248786, + "bounds": { + "minlat": 40.7644930, + "minlon": -74.0014923, + "maxlat": 40.7655060, + "maxlon": -73.9988992 + }, + "nodes": [ + 247120624, + 10021706997, + 10021706998, + 10021706999, + 10021715043, + 10021715036, + 10021707000, + 10021707001, + 10021715028, + 10021707016, + 10021707002, + 10021715020, + 10021707003 + ], + "geometry": [ + { "lat": 40.7644930, "lon": -73.9988992 }, + { "lat": 40.7645046, "lon": -73.9989381 }, + { "lat": 40.7646315, "lon": -73.9993111 }, + { "lat": 40.7647338, "lon": -73.9996443 }, + { "lat": 40.7647708, "lon": -73.9997304 }, + { "lat": 40.7648549, "lon": -73.9999257 }, + { "lat": 40.7648833, "lon": -73.9999917 }, + { "lat": 40.7649448, "lon": -74.0001448 }, + { "lat": 40.7649561, "lon": -74.0001726 }, + { "lat": 40.7652132, "lon": -74.0008048 }, + { "lat": 40.7652658, "lon": -74.0009342 }, + { "lat": 40.7654668, "lon": -74.0014011 }, + { "lat": 40.7655060, "lon": -74.0014923 } + ], + "tags": { + "highway": "service", + "maxspeed": "15 mph", + "name": "Pier 86 Drive", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1094254913, + "bounds": { + "minlat": 40.7265620, + "minlon": -73.9070701, + "maxlat": 40.7266599, + "maxlon": -73.9070467 + }, + "nodes": [ + 10021763460, + 10021763461, + 10021763462, + 10021763463, + 9990029729 + ], + "geometry": [ + { "lat": 40.7266599, "lon": -73.9070467 }, + { "lat": 40.7266240, "lon": -73.9070509 }, + { "lat": 40.7266113, "lon": -73.9070545 }, + { "lat": 40.7265848, "lon": -73.9070611 }, + { "lat": 40.7265620, "lon": -73.9070701 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094254914, + "bounds": { + "minlat": 40.7260824, + "minlon": -73.9075587, + "maxlat": 40.7261066, + "maxlon": -73.9071015 + }, + "nodes": [ + 10021763473, + 10021763474 + ], + "geometry": [ + { "lat": 40.7261066, "lon": -73.9075587 }, + { "lat": 40.7260824, "lon": -73.9071015 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094398759, + "bounds": { + "minlat": 40.8358778, + "minlon": -73.9708860, + "maxlat": 40.8360091, + "maxlon": -73.9704277 + }, + "nodes": [ + 3588356659, + 2308996667, + 3588356660 + ], + "geometry": [ + { "lat": 40.8358778, "lon": -73.9704277 }, + { "lat": 40.8359890, "lon": -73.9708158 }, + { "lat": 40.8360091, "lon": -73.9708860 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Cove", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1094398760, + "bounds": { + "minlat": 40.8357044, + "minlon": -73.9701219, + "maxlat": 40.8357788, + "maxlon": -73.9700821 + }, + "nodes": [ + 5720061683, + 5720061664 + ], + "geometry": [ + { "lat": 40.8357044, "lon": -73.9701219 }, + { "lat": 40.8357788, "lon": -73.9700821 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 1094417966, + "bounds": { + "minlat": 40.8111993, + "minlon": -74.0128499, + "maxlat": 40.8112964, + "maxlon": -74.0126667 + }, + "nodes": [ + 10023463242, + 12456262022, + 10023463243 + ], + "geometry": [ + { "lat": 40.8111993, "lon": -74.0126667 }, + { "lat": 40.8112393, "lon": -74.0127424 }, + { "lat": 40.8112964, "lon": -74.0128499 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094417967, + "bounds": { + "minlat": 40.8112964, + "minlon": -74.0130088, + "maxlat": 40.8115751, + "maxlon": -74.0126646 + }, + "nodes": [ + 10023463244, + 10023463245, + 10023463246, + 10023463247, + 10023463248, + 10023463249, + 10023463250, + 10023463251, + 10023463243 + ], + "geometry": [ + { "lat": 40.8115173, "lon": -74.0126646 }, + { "lat": 40.8115666, "lon": -74.0127663 }, + { "lat": 40.8115751, "lon": -74.0128023 }, + { "lat": 40.8115719, "lon": -74.0128374 }, + { "lat": 40.8115552, "lon": -74.0128679 }, + { "lat": 40.8113877, "lon": -74.0130088 }, + { "lat": 40.8113547, "lon": -74.0130038 }, + { "lat": 40.8113239, "lon": -74.0129644 }, + { "lat": 40.8112964, "lon": -74.0128499 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1094417968, + "bounds": { + "minlat": 40.8111160, + "minlon": -74.0130638, + "maxlat": 40.8112785, + "maxlon": -74.0127410 + }, + "nodes": [ + 10023463252, + 12456261915, + 10023463253 + ], + "geometry": [ + { "lat": 40.8112785, "lon": -74.0130638 }, + { "lat": 40.8111549, "lon": -74.0128182 }, + { "lat": 40.8111160, "lon": -74.0127410 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094692355, + "bounds": { + "minlat": 40.8529056, + "minlon": -73.9707065, + "maxlat": 40.8531792, + "maxlon": -73.9699225 + }, + "nodes": [ + 10026273684, + 4397826841 + ], + "geometry": [ + { "lat": 40.8529056, "lon": -73.9699225 }, + { "lat": 40.8531792, "lon": -73.9707065 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094692356, + "bounds": { + "minlat": 40.8517497, + "minlon": -73.9705569, + "maxlat": 40.8518220, + "maxlon": -73.9705192 + }, + "nodes": [ + 4397826870, + 5487759029 + ], + "geometry": [ + { "lat": 40.8517497, "lon": -73.9705569 }, + { "lat": 40.8518220, "lon": -73.9705192 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1094692357, + "bounds": { + "minlat": 40.8530642, + "minlon": -73.9706111, + "maxlat": 40.8533378, + "maxlon": -73.9698314 + }, + "nodes": [ + 5487759021, + 5487759024 + ], + "geometry": [ + { "lat": 40.8530642, "lon": -73.9698314 }, + { "lat": 40.8533378, "lon": -73.9706111 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1094692358, + "bounds": { + "minlat": 40.8522009, + "minlon": -73.9705463, + "maxlat": 40.8527833, + "maxlon": -73.9700367 + }, + "nodes": [ + 10026273686, + 10026273687, + 10026273688, + 7111637687 + ], + "geometry": [ + { "lat": 40.8522009, "lon": -73.9703097 }, + { "lat": 40.8522836, "lon": -73.9705463 }, + { "lat": 40.8527833, "lon": -73.9702410 }, + { "lat": 40.8527119, "lon": -73.9700367 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094692359, + "bounds": { + "minlat": 40.8525150, + "minlon": -73.9700963, + "maxlat": 40.8526176, + "maxlon": -73.9698106 + }, + "nodes": [ + 10026273689, + 10026273690 + ], + "geometry": [ + { "lat": 40.8526176, "lon": -73.9700963 }, + { "lat": 40.8525150, "lon": -73.9698106 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094692360, + "bounds": { + "minlat": 40.8521277, + "minlon": -73.9702287, + "maxlat": 40.8524008, + "maxlon": -73.9694694 + }, + "nodes": [ + 10026273691, + 12824924124, + 10026273692 + ], + "geometry": [ + { "lat": 40.8521277, "lon": -73.9694694 }, + { "lat": 40.8521851, "lon": -73.9696290 }, + { "lat": 40.8524008, "lon": -73.9702287 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1094692377, + "bounds": { + "minlat": 40.7484350, + "minlon": -73.9966580, + "maxlat": 40.7487158, + "maxlon": -73.9961920 + }, + "nodes": [ + 10026259307, + 7252758840, + 42438550, + 7252758837, + 7252758834, + 7252758831, + 6814312342, + 42435633 + ], + "geometry": [ + { "lat": 40.7487158, "lon": -73.9966580 }, + { "lat": 40.7486903, "lon": -73.9966320 }, + { "lat": 40.7486458, "lon": -73.9965751 }, + { "lat": 40.7486025, "lon": -73.9965097 }, + { "lat": 40.7485726, "lon": -73.9964564 }, + { "lat": 40.7485406, "lon": -73.9963985 }, + { "lat": 40.7485089, "lon": -73.9963409 }, + { "lat": 40.7484350, "lon": -73.9961920 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 28th Street", + "name:ru": "Западная 28-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1094754000, + "bounds": { + "minlat": 40.8165858, + "minlon": -74.0026590, + "maxlat": 40.8168466, + "maxlon": -74.0021218 + }, + "nodes": [ + 4205589202, + 10026792560, + 10026792558 + ], + "geometry": [ + { "lat": 40.8165858, "lon": -74.0021218 }, + { "lat": 40.8166339, "lon": -74.0022270 }, + { "lat": 40.8168466, "lon": -74.0026590 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094754001, + "bounds": { + "minlat": 40.8166339, + "minlon": -74.0022270, + "maxlat": 40.8169917, + "maxlon": -74.0020694 + }, + "nodes": [ + 10026792559, + 10026792560 + ], + "geometry": [ + { "lat": 40.8169917, "lon": -74.0020694 }, + { "lat": 40.8166339, "lon": -74.0022270 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094767126, + "bounds": { + "minlat": 40.8778773, + "minlon": -73.9833668, + "maxlat": 40.8779889, + "maxlon": -73.9831650 + }, + "nodes": [ + 10026909347, + 10026909348 + ], + "geometry": [ + { "lat": 40.8779889, "lon": -73.9833668 }, + { "lat": 40.8778773, "lon": -73.9831650 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1094767127, + "bounds": { + "minlat": 40.8780058, + "minlon": -73.9832383, + "maxlat": 40.8781200, + "maxlon": -73.9830369 + }, + "nodes": [ + 10026909349, + 10026909350 + ], + "geometry": [ + { "lat": 40.8780058, "lon": -73.9830369 }, + { "lat": 40.8781200, "lon": -73.9832383 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1094767128, + "bounds": { + "minlat": 40.8779889, + "minlon": -73.9833668, + "maxlat": 40.8781200, + "maxlon": -73.9832383 + }, + "nodes": [ + 10026909350, + 10026909347 + ], + "geometry": [ + { "lat": 40.8781200, "lon": -73.9832383 }, + { "lat": 40.8779889, "lon": -73.9833668 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1094767129, + "bounds": { + "minlat": 40.8777111, + "minlon": -73.9834591, + "maxlat": 40.8779889, + "maxlon": -73.9831345 + }, + "nodes": [ + 10026909347, + 10026909351, + 10026909352 + ], + "geometry": [ + { "lat": 40.8779889, "lon": -73.9833668 }, + { "lat": 40.8778974, "lon": -73.9834591 }, + { "lat": 40.8777111, "lon": -73.9831345 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1094767130, + "bounds": { + "minlat": 40.8774637, + "minlon": -73.9830224, + "maxlat": 40.8777309, + "maxlon": -73.9826270 + }, + "nodes": [ + 10026909353, + 13525892974, + 10026909354, + 10026909355 + ], + "geometry": [ + { "lat": 40.8774637, "lon": -73.9826270 }, + { "lat": 40.8775085, "lon": -73.9827055 }, + { "lat": 40.8776846, "lon": -73.9830144 }, + { "lat": 40.8777309, "lon": -73.9830224 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095014324, + "bounds": { + "minlat": 40.8517397, + "minlon": -73.9282498, + "maxlat": 40.8524955, + "maxlon": -73.9276972 + }, + "nodes": [ + 4207702050, + 8740550825, + 42436285, + 8740550828, + 8740550835, + 42442764 + ], + "geometry": [ + { "lat": 40.8517397, "lon": -73.9282498 }, + { "lat": 40.8518003, "lon": -73.9282064 }, + { "lat": 40.8518669, "lon": -73.9281588 }, + { "lat": 40.8519323, "lon": -73.9281107 }, + { "lat": 40.8524313, "lon": -73.9277444 }, + { "lat": 40.8524955, "lon": -73.9276972 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1095014325, + "bounds": { + "minlat": 40.8581831, + "minlon": -73.9257097, + "maxlat": 40.8582334, + "maxlon": -73.9254584 + }, + "nodes": [ + 5403858703, + 42451874, + 11619176465, + 42451879 + ], + "geometry": [ + { "lat": 40.8581831, "lon": -73.9254584 }, + { "lat": 40.8582019, "lon": -73.9255184 }, + { "lat": 40.8582222, "lon": -73.9256083 }, + { "lat": 40.8582334, "lon": -73.9257097 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Fort George Avenue", + "name:etymology:wikidata": "Q1438535", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort George", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1095362607, + "bounds": { + "minlat": 40.7139020, + "minlon": -73.9335904, + "maxlat": 40.7142472, + "maxlon": -73.9334119 + }, + "nodes": [ + 10031328564, + 10031328531, + 10031328562, + 10031328543, + 10031328541, + 10031328546, + 10031328539, + 10031328537, + 10031328544, + 10031328535, + 10031328532, + 10031328560 + ], + "geometry": [ + { "lat": 40.7139020, "lon": -73.9334409 }, + { "lat": 40.7139095, "lon": -73.9334119 }, + { "lat": 40.7139338, "lon": -73.9334233 }, + { "lat": 40.7139541, "lon": -73.9334328 }, + { "lat": 40.7140138, "lon": -73.9334609 }, + { "lat": 40.7140384, "lon": -73.9334725 }, + { "lat": 40.7140779, "lon": -73.9334910 }, + { "lat": 40.7141395, "lon": -73.9335199 }, + { "lat": 40.7141934, "lon": -73.9335453 }, + { "lat": 40.7142002, "lon": -73.9335485 }, + { "lat": 40.7142472, "lon": -73.9335706 }, + { "lat": 40.7142417, "lon": -73.9335904 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362608, + "bounds": { + "minlat": 40.7141729, + "minlon": -73.9336539, + "maxlat": 40.7141944, + "maxlon": -73.9335706 + }, + "nodes": [ + 10031328558, + 10031328559 + ], + "geometry": [ + { "lat": 40.7141729, "lon": -73.9336539 }, + { "lat": 40.7141944, "lon": -73.9335706 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362609, + "bounds": { + "minlat": 40.7141099, + "minlon": -73.9336261, + "maxlat": 40.7141329, + "maxlon": -73.9335435 + }, + "nodes": [ + 10031328557, + 10031328556 + ], + "geometry": [ + { "lat": 40.7141099, "lon": -73.9336261 }, + { "lat": 40.7141329, "lon": -73.9335435 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362610, + "bounds": { + "minlat": 40.7140480, + "minlon": -73.9335990, + "maxlat": 40.7140706, + "maxlon": -73.9335174 + }, + "nodes": [ + 10031328554, + 10031328555 + ], + "geometry": [ + { "lat": 40.7140480, "lon": -73.9335990 }, + { "lat": 40.7140706, "lon": -73.9335174 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362611, + "bounds": { + "minlat": 40.7139844, + "minlon": -73.9335708, + "maxlat": 40.7140064, + "maxlon": -73.9334886 + }, + "nodes": [ + 10031328553, + 10031328552 + ], + "geometry": [ + { "lat": 40.7139844, "lon": -73.9335708 }, + { "lat": 40.7140064, "lon": -73.9334886 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362612, + "bounds": { + "minlat": 40.7139241, + "minlon": -73.9335428, + "maxlat": 40.7139463, + "maxlon": -73.9334616 + }, + "nodes": [ + 10031328550, + 10031328551 + ], + "geometry": [ + { "lat": 40.7139241, "lon": -73.9335428 }, + { "lat": 40.7139463, "lon": -73.9334616 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362613, + "bounds": { + "minlat": 40.7141934, + "minlon": -73.9335453, + "maxlat": 40.7142355, + "maxlon": -73.9333777 + }, + "nodes": [ + 10031328544, + 10031328549, + 10031328545 + ], + "geometry": [ + { "lat": 40.7141934, "lon": -73.9335453 }, + { "lat": 40.7142029, "lon": -73.9335097 }, + { "lat": 40.7142355, "lon": -73.9333777 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362614, + "bounds": { + "minlat": 40.7140384, + "minlon": -73.9334725, + "maxlat": 40.7140799, + "maxlon": -73.9333069 + }, + "nodes": [ + 10031328546, + 10031328548, + 10031328547 + ], + "geometry": [ + { "lat": 40.7140384, "lon": -73.9334725 }, + { "lat": 40.7140469, "lon": -73.9334381 }, + { "lat": 40.7140799, "lon": -73.9333069 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362615, + "bounds": { + "minlat": 40.7139107, + "minlon": -73.9335920, + "maxlat": 40.7139241, + "maxlon": -73.9335428 + }, + "nodes": [ + 10031328542, + 10031328550 + ], + "geometry": [ + { "lat": 40.7139107, "lon": -73.9335920 }, + { "lat": 40.7139241, "lon": -73.9335428 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362616, + "bounds": { + "minlat": 40.7139463, + "minlon": -73.9334616, + "maxlat": 40.7139541, + "maxlon": -73.9334328 + }, + "nodes": [ + 10031328551, + 10031328543 + ], + "geometry": [ + { "lat": 40.7139463, "lon": -73.9334616 }, + { "lat": 40.7139541, "lon": -73.9334328 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362617, + "bounds": { + "minlat": 40.7140064, + "minlon": -73.9334886, + "maxlat": 40.7140138, + "maxlon": -73.9334609 + }, + "nodes": [ + 10031328552, + 10031328541 + ], + "geometry": [ + { "lat": 40.7140064, "lon": -73.9334886 }, + { "lat": 40.7140138, "lon": -73.9334609 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362618, + "bounds": { + "minlat": 40.7139707, + "minlon": -73.9336218, + "maxlat": 40.7139844, + "maxlon": -73.9335708 + }, + "nodes": [ + 10031328540, + 10031328553 + ], + "geometry": [ + { "lat": 40.7139707, "lon": -73.9336218 }, + { "lat": 40.7139844, "lon": -73.9335708 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362619, + "bounds": { + "minlat": 40.7140331, + "minlon": -73.9336528, + "maxlat": 40.7140480, + "maxlon": -73.9335990 + }, + "nodes": [ + 10031328538, + 10031328554 + ], + "geometry": [ + { "lat": 40.7140331, "lon": -73.9336528 }, + { "lat": 40.7140480, "lon": -73.9335990 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362620, + "bounds": { + "minlat": 40.7140706, + "minlon": -73.9335174, + "maxlat": 40.7140779, + "maxlon": -73.9334910 + }, + "nodes": [ + 10031328555, + 10031328539 + ], + "geometry": [ + { "lat": 40.7140706, "lon": -73.9335174 }, + { "lat": 40.7140779, "lon": -73.9334910 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362621, + "bounds": { + "minlat": 40.7141329, + "minlon": -73.9335435, + "maxlat": 40.7141395, + "maxlon": -73.9335199 + }, + "nodes": [ + 10031328556, + 10031328537 + ], + "geometry": [ + { "lat": 40.7141329, "lon": -73.9335435 }, + { "lat": 40.7141395, "lon": -73.9335199 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362622, + "bounds": { + "minlat": 40.7140940, + "minlon": -73.9336830, + "maxlat": 40.7141099, + "maxlon": -73.9336261 + }, + "nodes": [ + 10031328536, + 10031328557 + ], + "geometry": [ + { "lat": 40.7140940, "lon": -73.9336830 }, + { "lat": 40.7141099, "lon": -73.9336261 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362623, + "bounds": { + "minlat": 40.7141573, + "minlon": -73.9337143, + "maxlat": 40.7141729, + "maxlon": -73.9336539 + }, + "nodes": [ + 10031328534, + 10031328558 + ], + "geometry": [ + { "lat": 40.7141573, "lon": -73.9337143 }, + { "lat": 40.7141729, "lon": -73.9336539 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362624, + "bounds": { + "minlat": 40.7141944, + "minlon": -73.9335706, + "maxlat": 40.7142002, + "maxlon": -73.9335485 + }, + "nodes": [ + 10031328559, + 10031328535 + ], + "geometry": [ + { "lat": 40.7141944, "lon": -73.9335706 }, + { "lat": 40.7142002, "lon": -73.9335485 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362625, + "bounds": { + "minlat": 40.7142182, + "minlon": -73.9336742, + "maxlat": 40.7142417, + "maxlon": -73.9335904 + }, + "nodes": [ + 10031328560, + 10031328561 + ], + "geometry": [ + { "lat": 40.7142417, "lon": -73.9335904 }, + { "lat": 40.7142182, "lon": -73.9336742 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362626, + "bounds": { + "minlat": 40.7142013, + "minlon": -73.9337363, + "maxlat": 40.7142182, + "maxlon": -73.9336742 + }, + "nodes": [ + 10031328561, + 10031328533 + ], + "geometry": [ + { "lat": 40.7142182, "lon": -73.9336742 }, + { "lat": 40.7142013, "lon": -73.9337363 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362627, + "bounds": { + "minlat": 40.7139338, + "minlon": -73.9334233, + "maxlat": 40.7139771, + "maxlon": -73.9332602 + }, + "nodes": [ + 10031328562, + 10031328566, + 10031328563 + ], + "geometry": [ + { "lat": 40.7139338, "lon": -73.9334233 }, + { "lat": 40.7139432, "lon": -73.9333904 }, + { "lat": 40.7139771, "lon": -73.9332602 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362628, + "bounds": { + "minlat": 40.7138806, + "minlon": -73.9335216, + "maxlat": 40.7139020, + "maxlon": -73.9334409 + }, + "nodes": [ + 10031328565, + 10031328564 + ], + "geometry": [ + { "lat": 40.7138806, "lon": -73.9335216 }, + { "lat": 40.7139020, "lon": -73.9334409 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095362629, + "bounds": { + "minlat": 40.7138683, + "minlon": -73.9335709, + "maxlat": 40.7138806, + "maxlon": -73.9335216 + }, + "nodes": [ + 10031328530, + 10031328565 + ], + "geometry": [ + { "lat": 40.7138683, "lon": -73.9335709 }, + { "lat": 40.7138806, "lon": -73.9335216 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1095617683, + "bounds": { + "minlat": 40.8227569, + "minlon": -73.9244759, + "maxlat": 40.8234164, + "maxlon": -73.9242848 + }, + "nodes": [ + 10033555159, + 13533563282, + 10133486227, + 6224283287 + ], + "geometry": [ + { "lat": 40.8227569, "lon": -73.9244759 }, + { "lat": 40.8231895, "lon": -73.9243349 }, + { "lat": 40.8233486, "lon": -73.9242998 }, + { "lat": 40.8234164, "lon": -73.9242848 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "pedestrian", + "lanes": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "motor_vehicle": "no", + "name": "Grand Concourse", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "right", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1095617685, + "bounds": { + "minlat": 40.8196471, + "minlon": -73.9271883, + "maxlat": 40.8200102, + "maxlon": -73.9268771 + }, + "nodes": [ + 5468179331, + 10033555156, + 10033555150, + 10033555173, + 10033555178, + 10033555175, + 10033555154, + 10033555158, + 10033555177 + ], + "geometry": [ + { "lat": 40.8200102, "lon": -73.9269466 }, + { "lat": 40.8200083, "lon": -73.9270272 }, + { "lat": 40.8199953, "lon": -73.9270610 }, + { "lat": 40.8197177, "lon": -73.9271883 }, + { "lat": 40.8196755, "lon": -73.9271827 }, + { "lat": 40.8196471, "lon": -73.9271300 }, + { "lat": 40.8196506, "lon": -73.9270552 }, + { "lat": 40.8197079, "lon": -73.9270066 }, + { "lat": 40.8199900, "lon": -73.9268771 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1096147404, + "bounds": { + "minlat": 40.8385503, + "minlon": -74.0068949, + "maxlat": 40.8388745, + "maxlon": -74.0067125 + }, + "nodes": [ + 5772293401, + 7059495723 + ], + "geometry": [ + { "lat": 40.8388745, "lon": -74.0067125 }, + { "lat": 40.8385503, "lon": -74.0068949 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "40 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 1096159986, + "bounds": { + "minlat": 40.7406238, + "minlon": -74.0116093, + "maxlat": 40.7406285, + "maxlon": -74.0114788 + }, + "nodes": [ + 42440582, + 10038323439 + ], + "geometry": [ + { "lat": 40.7406238, "lon": -74.0114788 }, + { "lat": 40.7406285, "lon": -74.0116093 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1096304299, + "bounds": { + "minlat": 40.7125440, + "minlon": -74.0077424, + "maxlat": 40.7125773, + "maxlon": -74.0076683 + }, + "nodes": [ + 10039501934, + 2821304138 + ], + "geometry": [ + { "lat": 40.7125773, "lon": -74.0077424 }, + { "lat": 40.7125440, "lon": -74.0076683 } + ], + "tags": { + "cycleway:both": "lane", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Park Place", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 플레이스", + "name:ru": "Парк-Плейс", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "right" + } +}, +{ + "type": "way", + "id": 1096427014, + "bounds": { + "minlat": 40.7257578, + "minlon": -73.9953950, + "maxlat": 40.7261371, + "maxlon": -73.9950679 + }, + "nodes": [ + 10040606324, + 13518893889, + 12187431481, + 8309479018, + 1692433918 + ], + "geometry": [ + { "lat": 40.7257578, "lon": -73.9953950 }, + { "lat": 40.7258585, "lon": -73.9953081 }, + { "lat": 40.7260621, "lon": -73.9951326 }, + { "lat": 40.7260870, "lon": -73.9951111 }, + { "lat": 40.7261371, "lon": -73.9950679 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Crosby Street", + "name:etymology:wikidata": "Q96242792", + "name:ko": "크로즈비 스트리트", + "name:ru": "Кросби-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1096427015, + "bounds": { + "minlat": 40.7195526, + "minlon": -74.0006214, + "maxlat": 40.7206285, + "maxlon": -73.9997024 + }, + "nodes": [ + 42439581, + 8231931830, + 8231931826, + 42452048, + 8231931824, + 10040606325 + ], + "geometry": [ + { "lat": 40.7195526, "lon": -74.0006214 }, + { "lat": 40.7195929, "lon": -74.0005870 }, + { "lat": 40.7203745, "lon": -73.9999187 }, + { "lat": 40.7204371, "lon": -73.9998645 }, + { "lat": 40.7204964, "lon": -73.9998143 }, + { "lat": 40.7206285, "lon": -73.9997024 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Crosby Street", + "name:etymology:wikidata": "Q96242792", + "name:ko": "크로즈비 스트리트", + "name:ru": "Кросби-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1096427016, + "bounds": { + "minlat": 40.7206285, + "minlon": -73.9997024, + "maxlat": 40.7208883, + "maxlon": -73.9994823 + }, + "nodes": [ + 10040606325, + 10040606326 + ], + "geometry": [ + { "lat": 40.7206285, "lon": -73.9997024 }, + { "lat": 40.7208883, "lon": -73.9994823 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Crosby Street", + "name:etymology:wikidata": "Q96242792", + "name:ko": "크로즈비 스트리트", + "name:ru": "Кросби-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1096700009, + "bounds": { + "minlat": 40.7000502, + "minlon": -73.9897731, + "maxlat": 40.7000557, + "maxlon": -73.9895901 + }, + "nodes": [ + 9368823959, + 9818783391, + 10042577615 + ], + "geometry": [ + { "lat": 40.7000557, "lon": -73.9897731 }, + { "lat": 40.7000529, "lon": -73.9896838 }, + { "lat": 40.7000502, "lon": -73.9895901 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1096715407, + "bounds": { + "minlat": 40.8146014, + "minlon": -73.9441122, + "maxlat": 40.8148735, + "maxlon": -73.9439145 + }, + "nodes": [ + 2141026494, + 10170605764, + 4205440400 + ], + "geometry": [ + { "lat": 40.8146014, "lon": -73.9441122 }, + { "lat": 40.8146626, "lon": -73.9440677 }, + { "lat": 40.8148735, "lon": -73.9439145 } + ], + "tags": { + "alt_name": "7th Avenue", + "bicycle": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1096773498, + "bounds": { + "minlat": 40.7021382, + "minlon": -73.9945183, + "maxlat": 40.7022859, + "maxlon": -73.9944573 + }, + "nodes": [ + 10043160449, + 10737091580, + 42499339 + ], + "geometry": [ + { "lat": 40.7021382, "lon": -73.9945183 }, + { "lat": 40.7022506, "lon": -73.9944647 }, + { "lat": 40.7022859, "lon": -73.9944573 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Columbia Heights", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Columbia Heights:Everit", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1096773499, + "bounds": { + "minlat": 40.7021044, + "minlon": -73.9945344, + "maxlat": 40.7021382, + "maxlon": -73.9945183 + }, + "nodes": [ + 10043160450, + 10043160449 + ], + "geometry": [ + { "lat": 40.7021044, "lon": -73.9945344 }, + { "lat": 40.7021382, "lon": -73.9945183 } + ], + "tags": { + "covered": "yes", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Columbia Heights", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Columbia Heights:Everit", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1096958482, + "bounds": { + "minlat": 40.7923020, + "minlon": -73.9978150, + "maxlat": 40.7923974, + "maxlon": -73.9975588 + }, + "nodes": [ + 5482013296, + 5482013295, + 5482013294, + 5482013293 + ], + "geometry": [ + { "lat": 40.7923974, "lon": -73.9978150 }, + { "lat": 40.7923314, "lon": -73.9977238 }, + { "lat": 40.7923020, "lon": -73.9976165 }, + { "lat": 40.7923477, "lon": -73.9975588 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1096958483, + "bounds": { + "minlat": 40.7927714, + "minlon": -73.9982209, + "maxlat": 40.7931721, + "maxlon": -73.9979075 + }, + "nodes": [ + 5482013245, + 7662750142, + 5482013244, + 5482013243 + ], + "geometry": [ + { "lat": 40.7927714, "lon": -73.9982209 }, + { "lat": 40.7927787, "lon": -73.9981760 }, + { "lat": 40.7927965, "lon": -73.9981355 }, + { "lat": 40.7931721, "lon": -73.9979075 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1096977214, + "bounds": { + "minlat": 40.8370828, + "minlon": -73.9209064, + "maxlat": 40.8381341, + "maxlon": -73.9193042 + }, + "nodes": [ + 1916621953, + 3163952833, + 42736018, + 3163952832, + 13703398759, + 42736025, + 42736029, + 42726504, + 42736033 + ], + "geometry": [ + { "lat": 40.8370828, "lon": -73.9209064 }, + { "lat": 40.8373728, "lon": -73.9204814 }, + { "lat": 40.8374369, "lon": -73.9203874 }, + { "lat": 40.8374966, "lon": -73.9202993 }, + { "lat": 40.8375848, "lon": -73.9201692 }, + { "lat": 40.8376805, "lon": -73.9200279 }, + { "lat": 40.8378815, "lon": -73.9197079 }, + { "lat": 40.8380770, "lon": -73.9193840 }, + { "lat": 40.8381341, "lon": -73.9193042 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1096977215, + "bounds": { + "minlat": 40.8363108, + "minlon": -73.9222910, + "maxlat": 40.8373433, + "maxlon": -73.9222469 + }, + "nodes": [ + 2912071061, + 42736405, + 11042991210 + ], + "geometry": [ + { "lat": 40.8363108, "lon": -73.9222910 }, + { "lat": 40.8366055, "lon": -73.9222754 }, + { "lat": 40.8373433, "lon": -73.9222469 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1097114222, + "bounds": { + "minlat": 40.7737103, + "minlon": -73.9897822, + "maxlat": 40.7737615, + "maxlon": -73.9897277 + }, + "nodes": [ + 10045967175, + 10045967177, + 10045967176 + ], + "geometry": [ + { "lat": 40.7737615, "lon": -73.9897277 }, + { "lat": 40.7737223, "lon": -73.9897717 }, + { "lat": 40.7737103, "lon": -73.9897822 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1097216778, + "bounds": { + "minlat": 40.7420714, + "minlon": -73.9076538, + "maxlat": 40.7423176, + "maxlon": -73.9075992 + }, + "nodes": [ + 7038557964, + 9950327737, + 7038557972 + ], + "geometry": [ + { "lat": 40.7420714, "lon": -73.9076538 }, + { "lat": 40.7421434, "lon": -73.9076378 }, + { "lat": 40.7423176, "lon": -73.9075992 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1097344775, + "bounds": { + "minlat": 40.7529788, + "minlon": -73.9347665, + "maxlat": 40.7532060, + "maxlon": -73.9343325 + }, + "nodes": [ + 10047899227, + 10047899228, + 10047899229 + ], + "geometry": [ + { "lat": 40.7529788, "lon": -73.9343325 }, + { "lat": 40.7531738, "lon": -73.9347051 }, + { "lat": 40.7532060, "lon": -73.9347665 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1097487346, + "bounds": { + "minlat": 40.7274250, + "minlon": -73.9922659, + "maxlat": 40.7274975, + "maxlon": -73.9922039 + }, + "nodes": [ + 10049007836, + 10049007838, + 10049007837 + ], + "geometry": [ + { "lat": 40.7274250, "lon": -73.9922659 }, + { "lat": 40.7274892, "lon": -73.9922106 }, + { "lat": 40.7274975, "lon": -73.9922039 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1097933042, + "bounds": { + "minlat": 40.8353064, + "minlon": -74.0183052, + "maxlat": 40.8355440, + "maxlon": -74.0179211 + }, + "nodes": [ + 10053318718, + 10053318719 + ], + "geometry": [ + { "lat": 40.8355440, "lon": -74.0183052 }, + { "lat": 40.8353064, "lon": -74.0179211 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1097933043, + "bounds": { + "minlat": 40.8353997, + "minlon": -74.0179017, + "maxlat": 40.8358170, + "maxlon": -74.0176518 + }, + "nodes": [ + 103198926, + 9909584472, + 10053318720, + 10053318721, + 10053318722 + ], + "geometry": [ + { "lat": 40.8358170, "lon": -74.0177460 }, + { "lat": 40.8357619, "lon": -74.0177941 }, + { "lat": 40.8356682, "lon": -74.0179017 }, + { "lat": 40.8355125, "lon": -74.0176518 }, + { "lat": 40.8353997, "lon": -74.0177633 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1097933044, + "bounds": { + "minlat": 40.8343147, + "minlon": -74.0194146, + "maxlat": 40.8345119, + "maxlon": -74.0191057 + }, + "nodes": [ + 10053318723, + 10053318724 + ], + "geometry": [ + { "lat": 40.8345119, "lon": -74.0194146 }, + { "lat": 40.8343147, "lon": -74.0191057 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1098090457, + "bounds": { + "minlat": 40.7276155, + "minlon": -73.9941506, + "maxlat": 40.7276605, + "maxlon": -73.9941132 + }, + "nodes": [ + 10054496568, + 8309479047, + 5243701136 + ], + "geometry": [ + { "lat": 40.7276155, "lon": -73.9941506 }, + { "lat": 40.7276298, "lon": -73.9941387 }, + { "lat": 40.7276605, "lon": -73.9941132 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "name": "Great Jones Alley", + "name:etymology:wikidata": "Q2218465", + "name:ko": "그레이트 존스 앨리", + "note": "nameing: http://forgotten-ny.com/2013/08/shinbone-alley-noho/", + "service": "alley", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Shinbone;Great Jones", + "tiger:name_type": "Aly", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1098090458, + "bounds": { + "minlat": 40.7275705, + "minlon": -73.9941899, + "maxlat": 40.7276155, + "maxlon": -73.9941506 + }, + "nodes": [ + 42429676, + 10054496568 + ], + "geometry": [ + { "lat": 40.7275705, "lon": -73.9941899 }, + { "lat": 40.7276155, "lon": -73.9941506 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "name": "Great Jones Alley", + "name:etymology:wikidata": "Q2218465", + "name:ko": "그레이트 존스 앨리", + "note": "nameing: http://forgotten-ny.com/2013/08/shinbone-alley-noho/", + "service": "alley", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Shinbone;Great Jones", + "tiger:name_type": "Aly", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1098144277, + "bounds": { + "minlat": 40.8186803, + "minlon": -73.9610583, + "maxlat": 40.8187385, + "maxlon": -73.9610032 + }, + "nodes": [ + 10049926003, + 42424703 + ], + "geometry": [ + { "lat": 40.8187385, "lon": -73.9610032 }, + { "lat": 40.8186803, "lon": -73.9610583 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Marginal Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1098148713, + "bounds": { + "minlat": 40.8225750, + "minlon": -73.9559559, + "maxlat": 40.8228306, + "maxlon": -73.9558115 + }, + "nodes": [ + 10055059290, + 7491182054 + ], + "geometry": [ + { "lat": 40.8228306, "lon": -73.9558115 }, + { "lat": 40.8225750, "lon": -73.9559559 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "bridge": "yes", + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1098148714, + "bounds": { + "minlat": 40.8224991, + "minlon": -73.9558905, + "maxlat": 40.8227976, + "maxlon": -73.9557251 + }, + "nodes": [ + 7491182058, + 10055142724, + 595338090 + ], + "geometry": [ + { "lat": 40.8224991, "lon": -73.9558905 }, + { "lat": 40.8227430, "lon": -73.9557553 }, + { "lat": 40.8227976, "lon": -73.9557251 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "bridge": "yes", + "cycleway:right": "no", + "hgv": "no", + "highway": "secondary", + "layer": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1098148715, + "bounds": { + "minlat": 40.8234539, + "minlon": -73.9555025, + "maxlat": 40.8235700, + "maxlon": -73.9554447 + }, + "nodes": [ + 7491182059, + 10170703027, + 10055059295 + ], + "geometry": [ + { "lat": 40.8235700, "lon": -73.9554447 }, + { "lat": 40.8235107, "lon": -73.9554742 }, + { "lat": 40.8234539, "lon": -73.9555025 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "oneway": "yes", + "tiger:cfcc": "A45;A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_base_1": "Riverside", + "tiger:name_direction_suffix_1": "E", + "tiger:name_type": "Dr", + "tiger:name_type_1": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1098148716, + "bounds": { + "minlat": 40.8234352, + "minlon": -73.9553927, + "maxlat": 40.8235401, + "maxlon": -73.9553367 + }, + "nodes": [ + 10055059296, + 10170703025, + 42441950 + ], + "geometry": [ + { "lat": 40.8234352, "lon": -73.9553927 }, + { "lat": 40.8234725, "lon": -73.9553728 }, + { "lat": 40.8235401, "lon": -73.9553367 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive", + "oneway": "yes", + "tiger:cfcc": "A45; A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_base_1": "Riverside", + "tiger:name_direction_suffix_1": "E", + "tiger:name_type": "Dr", + "tiger:name_type_1": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1098355543, + "bounds": { + "minlat": 40.8148064, + "minlon": -73.9585814, + "maxlat": 40.8151023, + "maxlon": -73.9581337 + }, + "nodes": [ + 10056815671, + 10056815675, + 10056815674, + 10056815672, + 10056815673 + ], + "geometry": [ + { "lat": 40.8151023, "lon": -73.9585814 }, + { "lat": 40.8150645, "lon": -73.9584893 }, + { "lat": 40.8150513, "lon": -73.9584572 }, + { "lat": 40.8149798, "lon": -73.9582831 }, + { "lat": 40.8148064, "lon": -73.9581337 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1098378667, + "bounds": { + "minlat": 40.8547688, + "minlon": -73.9354967, + "maxlat": 40.8548587, + "maxlon": -73.9354543 + }, + "nodes": [ + 10057037401, + 10057037403, + 10057037402 + ], + "geometry": [ + { "lat": 40.8548587, "lon": -73.9354543 }, + { "lat": 40.8548301, "lon": -73.9354678 }, + { "lat": 40.8547688, "lon": -73.9354967 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1098561545, + "bounds": { + "minlat": 40.7015540, + "minlon": -73.9655234, + "maxlat": 40.7028760, + "maxlon": -73.9638766 + }, + "nodes": [ + 12987250636, + 10058693147, + 3552687147 + ], + "geometry": [ + { "lat": 40.7028760, "lon": -73.9655234 }, + { "lat": 40.7028158, "lon": -73.9654481 }, + { "lat": 40.7015540, "lon": -73.9638766 } + ], + "tags": { + "bicycle": "use_sidepath", + "cycleway:right": "separate", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1098561546, + "bounds": { + "minlat": 40.7034091, + "minlon": -73.9667512, + "maxlat": 40.7039036, + "maxlon": -73.9661750 + }, + "nodes": [ + 5104592947, + 10058693148, + 9602381232 + ], + "geometry": [ + { "lat": 40.7039036, "lon": -73.9667512 }, + { "lat": 40.7038142, "lon": -73.9666946 }, + { "lat": 40.7034091, "lon": -73.9661750 } + ], + "tags": { + "bicycle": "use_sidepath", + "cycleway:right": "separate", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1098652367, + "bounds": { + "minlat": 40.7353685, + "minlon": -73.9596576, + "maxlat": 40.7354529, + "maxlon": -73.9596438 + }, + "nodes": [ + 7740257824, + 8097025075, + 13057491743, + 13057491744 + ], + "geometry": [ + { "lat": 40.7354529, "lon": -73.9596576 }, + { "lat": 40.7353895, "lon": -73.9596472 }, + { "lat": 40.7353840, "lon": -73.9596463 }, + { "lat": 40.7353685, "lon": -73.9596438 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1098652369, + "bounds": { + "minlat": 40.7355469, + "minlon": -73.9598804, + "maxlat": 40.7362211, + "maxlon": -73.9586354 + }, + "nodes": [ + 9997952317, + 10170251945, + 6578689034, + 10170251948, + 42520831 + ], + "geometry": [ + { "lat": 40.7355469, "lon": -73.9598804 }, + { "lat": 40.7356812, "lon": -73.9596340 }, + { "lat": 40.7360666, "lon": -73.9589215 }, + { "lat": 40.7361475, "lon": -73.9587790 }, + { "lat": 40.7362211, "lon": -73.9586354 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Commercial Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Commercial", + "tiger:name_type": "St", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1098686789, + "bounds": { + "minlat": 40.8735311, + "minlon": -73.9589370, + "maxlat": 40.8736252, + "maxlon": -73.9588822 + }, + "nodes": [ + 10059739061, + 10059739062, + 10059739063 + ], + "geometry": [ + { "lat": 40.8736252, "lon": -73.9588822 }, + { "lat": 40.8735707, "lon": -73.9589229 }, + { "lat": 40.8735311, "lon": -73.9589370 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1098734619, + "bounds": { + "minlat": 40.7171684, + "minlon": -73.9831408, + "maxlat": 40.7174266, + "maxlon": -73.9829775 + }, + "nodes": [ + 42427345, + 8310245590, + 7500756892 + ], + "geometry": [ + { "lat": 40.7171684, "lon": -73.9831408 }, + { "lat": 40.7172193, "lon": -73.9831028 }, + { "lat": 40.7174266, "lon": -73.9829775 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Pitt Street", + "name:etymology:wikidata": "Q208663", + "name:ko": "피트 스트리트", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1098734620, + "bounds": { + "minlat": 40.7194618, + "minlon": -73.9819415, + "maxlat": 40.7206496, + "maxlon": -73.9813453 + }, + "nodes": [ + 42427352, + 4835844136, + 4561702109, + 3783146184, + 42427358 + ], + "geometry": [ + { "lat": 40.7194618, "lon": -73.9819415 }, + { "lat": 40.7195107, "lon": -73.9819182 }, + { "lat": 40.7200510, "lon": -73.9816516 }, + { "lat": 40.7205798, "lon": -73.9813878 }, + { "lat": 40.7206496, "lon": -73.9813453 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Pitt Street", + "name:etymology:wikidata": "Q208663", + "name:ko": "피트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1098734621, + "bounds": { + "minlat": 40.7191795, + "minlon": -73.9820818, + "maxlat": 40.7194618, + "maxlon": -73.9819415 + }, + "nodes": [ + 10060182578, + 4835844134, + 42427352 + ], + "geometry": [ + { "lat": 40.7191795, "lon": -73.9820818 }, + { "lat": 40.7194141, "lon": -73.9819642 }, + { "lat": 40.7194618, "lon": -73.9819415 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Pitt Street", + "name:etymology:wikidata": "Q208663", + "name:ko": "피트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1099956087, + "bounds": { + "minlat": 40.7472062, + "minlon": -73.9295246, + "maxlat": 40.7474759, + "maxlon": -73.9293783 + }, + "nodes": [ + 10069637114, + 42838410 + ], + "geometry": [ + { "lat": 40.7474759, "lon": -73.9295246 }, + { "lat": 40.7472062, "lon": -73.9293783 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "lanes": "3", + "layer": "1", + "lcn": "yes", + "maxspeed": "25 mph", + "maxweight:signed": "no", + "name": "Honeywell Street", + "oneway": "no", + "parking:both": "no", + "parking:both:restriction": "no_parking", + "surface": "concrete", + "turn:lanes:forward": "through|right" + } +}, +{ + "type": "way", + "id": 1099956094, + "bounds": { + "minlat": 40.7462165, + "minlon": -73.9294943, + "maxlat": 40.7465536, + "maxlon": -73.9294298 + }, + "nodes": [ + 42817758, + 10069673267, + 8549558978, + 7095826106, + 10069673249 + ], + "geometry": [ + { "lat": 40.7462165, "lon": -73.9294943 }, + { "lat": 40.7462828, "lon": -73.9294825 }, + { "lat": 40.7463175, "lon": -73.9294775 }, + { "lat": 40.7464024, "lon": -73.9294594 }, + { "lat": 40.7465536, "lon": -73.9294298 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "35th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left" + } +}, +{ + "type": "way", + "id": 1099956095, + "bounds": { + "minlat": 40.7464862, + "minlon": -73.9322774, + "maxlat": 40.7465923, + "maxlon": -73.9317540 + }, + "nodes": [ + 11694597421, + 7985719893, + 10069673266, + 42817750 + ], + "geometry": [ + { "lat": 40.7465923, "lon": -73.9317540 }, + { "lat": 40.7465500, "lon": -73.9320232 }, + { "lat": 40.7465360, "lon": -73.9320961 }, + { "lat": 40.7464862, "lon": -73.9322774 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1099956097, + "bounds": { + "minlat": 40.7438735, + "minlon": -73.9261861, + "maxlat": 40.7446385, + "maxlon": -73.9260367 + }, + "nodes": [ + 10069673336, + 11272980335, + 598433544, + 3798410773, + 9192032619, + 598433545 + ], + "geometry": [ + { "lat": 40.7446385, "lon": -73.9260367 }, + { "lat": 40.7442807, "lon": -73.9261010 }, + { "lat": 40.7441770, "lon": -73.9261196 }, + { "lat": 40.7440468, "lon": -73.9261448 }, + { "lat": 40.7439709, "lon": -73.9261629 }, + { "lat": 40.7438735, "lon": -73.9261861 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "39th Street", + "surface": "asphalt", + "turn:lanes:forward": "through|through;right" + } +}, +{ + "type": "way", + "id": 1099956098, + "bounds": { + "minlat": 40.7446385, + "minlon": -73.9260367, + "maxlat": 40.7449859, + "maxlon": -73.9259692 + }, + "nodes": [ + 10069673337, + 10088753859, + 10069673336 + ], + "geometry": [ + { "lat": 40.7449859, "lon": -73.9259692 }, + { "lat": 40.7447136, "lon": -73.9260220 }, + { "lat": 40.7446385, "lon": -73.9260367 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "39th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1099956099, + "bounds": { + "minlat": 40.7458243, + "minlon": -73.9266986, + "maxlat": 40.7458916, + "maxlon": -73.9261863 + }, + "nodes": [ + 42817769, + 11694597424, + 10069673280, + 10069673338 + ], + "geometry": [ + { "lat": 40.7458916, "lon": -73.9266986 }, + { "lat": 40.7458779, "lon": -73.9266126 }, + { "lat": 40.7458723, "lon": -73.9265771 }, + { "lat": 40.7458243, "lon": -73.9261863 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1099956100, + "bounds": { + "minlat": 40.7457824, + "minlon": -73.9261863, + "maxlat": 40.7458243, + "maxlon": -73.9258079 + }, + "nodes": [ + 10069673338, + 5538983340, + 42817771 + ], + "geometry": [ + { "lat": 40.7458243, "lon": -73.9261863 }, + { "lat": 40.7457951, "lon": -73.9259137 }, + { "lat": 40.7457824, "lon": -73.9258079 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "smoothness": "excellent", + "surface": "asphalt", + "turn:lanes": "|through|right" + } +}, +{ + "type": "way", + "id": 1099956102, + "bounds": { + "minlat": 40.7456077, + "minlon": -73.9258079, + "maxlat": 40.7457824, + "maxlon": -73.9242864 + }, + "nodes": [ + 42817771, + 5538983342, + 11694583042, + 42817773, + 11694583041, + 10069673347 + ], + "geometry": [ + { "lat": 40.7457824, "lon": -73.9258079 }, + { "lat": 40.7457703, "lon": -73.9256949 }, + { "lat": 40.7456799, "lon": -73.9249204 }, + { "lat": 40.7456709, "lon": -73.9248433 }, + { "lat": 40.7456616, "lon": -73.9247614 }, + { "lat": 40.7456077, "lon": -73.9242864 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1099956103, + "bounds": { + "minlat": 40.7455658, + "minlon": -73.9242864, + "maxlat": 40.7456077, + "maxlon": -73.9239173 + }, + "nodes": [ + 10069673347, + 10069673348, + 42817776 + ], + "geometry": [ + { "lat": 40.7456077, "lon": -73.9242864 }, + { "lat": 40.7455741, "lon": -73.9239902 }, + { "lat": 40.7455658, "lon": -73.9239173 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "smoothness": "excellent", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 1099958361, + "bounds": { + "minlat": 40.7452437, + "minlon": -73.9215032, + "maxlat": 40.7452857, + "maxlon": -73.9211389 + }, + "nodes": [ + 10069693823, + 10069693822, + 42817789 + ], + "geometry": [ + { "lat": 40.7452857, "lon": -73.9215032 }, + { "lat": 40.7452550, "lon": -73.9212432 }, + { "lat": 40.7452437, "lon": -73.9211389 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "smoothness": "excellent", + "surface": "asphalt", + "turn:lanes": "|through|right" + } +}, +{ + "type": "way", + "id": 1099958362, + "bounds": { + "minlat": 40.7452857, + "minlon": -73.9220715, + "maxlat": 40.7453526, + "maxlon": -73.9215032 + }, + "nodes": [ + 42817784, + 10069693825, + 10069693823 + ], + "geometry": [ + { "lat": 40.7453526, "lon": -73.9220715 }, + { "lat": 40.7453424, "lon": -73.9219847 }, + { "lat": 40.7452857, "lon": -73.9215032 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1099958363, + "bounds": { + "minlat": 40.7453526, + "minlon": -73.9224474, + "maxlat": 40.7453960, + "maxlon": -73.9220715 + }, + "nodes": [ + 10069693824, + 10069693821, + 42817784 + ], + "geometry": [ + { "lat": 40.7453960, "lon": -73.9224474 }, + { "lat": 40.7453605, "lon": -73.9221398 }, + { "lat": 40.7453526, "lon": -73.9220715 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "smoothness": "excellent", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 1099977538, + "bounds": { + "minlat": 40.7268603, + "minlon": -73.9078292, + "maxlat": 40.7269966, + "maxlon": -73.9073864 + }, + "nodes": [ + 5481971922, + 10069871464, + 10069871465, + 10069871466, + 10069871467 + ], + "geometry": [ + { "lat": 40.7269966, "lon": -73.9073864 }, + { "lat": 40.7269126, "lon": -73.9074908 }, + { "lat": 40.7268668, "lon": -73.9076088 }, + { "lat": 40.7268603, "lon": -73.9077251 }, + { "lat": 40.7268875, "lon": -73.9078292 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1100735530, + "bounds": { + "minlat": 40.7211520, + "minlon": -73.9623764, + "maxlat": 40.7211967, + "maxlon": -73.9623224 + }, + "nodes": [ + 10074012101, + 10074012100 + ], + "geometry": [ + { "lat": 40.7211520, "lon": -73.9623764 }, + { "lat": 40.7211967, "lon": -73.9623224 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1100735531, + "bounds": { + "minlat": 40.7210617, + "minlon": -73.9622322, + "maxlat": 40.7211071, + "maxlon": -73.9621784 + }, + "nodes": [ + 10074012103, + 10074012102 + ], + "geometry": [ + { "lat": 40.7210617, "lon": -73.9622322 }, + { "lat": 40.7211071, "lon": -73.9621784 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1100735532, + "bounds": { + "minlat": 40.7209228, + "minlon": -73.9620105, + "maxlat": 40.7211622, + "maxlon": -73.9617509 + }, + "nodes": [ + 5082129675, + 10074012105, + 10074012104 + ], + "geometry": [ + { "lat": 40.7211622, "lon": -73.9617509 }, + { "lat": 40.7209713, "lon": -73.9619599 }, + { "lat": 40.7209228, "lon": -73.9620105 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1100736746, + "bounds": { + "minlat": 40.7807074, + "minlon": -73.9768354, + "maxlat": 40.7807910, + "maxlon": -73.9767736 + }, + "nodes": [ + 12850047598, + 12850047599, + 10074104794 + ], + "geometry": [ + { "lat": 40.7807910, "lon": -73.9767736 }, + { "lat": 40.7807285, "lon": -73.9768198 }, + { "lat": 40.7807074, "lon": -73.9768354 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1100739402, + "bounds": { + "minlat": 40.7448139, + "minlon": -73.9183557, + "maxlat": 40.7449234, + "maxlon": -73.9174103 + }, + "nodes": [ + 42817799, + 11228297763, + 10074123174, + 42817802 + ], + "geometry": [ + { "lat": 40.7449234, "lon": -73.9183557 }, + { "lat": 40.7449136, "lon": -73.9182713 }, + { "lat": 40.7448242, "lon": -73.9174990 }, + { "lat": 40.7448139, "lon": -73.9174103 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1100739403, + "bounds": { + "minlat": 40.7449234, + "minlon": -73.9186919, + "maxlat": 40.7449622, + "maxlon": -73.9183557 + }, + "nodes": [ + 10074123160, + 11228297766, + 42817799 + ], + "geometry": [ + { "lat": 40.7449622, "lon": -73.9186919 }, + { "lat": 40.7449316, "lon": -73.9184268 }, + { "lat": 40.7449234, "lon": -73.9183557 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 1100739404, + "bounds": { + "minlat": 40.7444903, + "minlon": -73.9150039, + "maxlat": 40.7445344, + "maxlon": -73.9146334 + }, + "nodes": [ + 10074123177, + 10074123191, + 42817812 + ], + "geometry": [ + { "lat": 40.7445344, "lon": -73.9150039 }, + { "lat": 40.7445010, "lon": -73.9147239 }, + { "lat": 40.7444903, "lon": -73.9146334 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 1100739405, + "bounds": { + "minlat": 40.7443853, + "minlon": -73.9139221, + "maxlat": 40.7444083, + "maxlon": -73.9137209 + }, + "nodes": [ + 11177302953, + 10074123187, + 42817817 + ], + "geometry": [ + { "lat": 40.7444083, "lon": -73.9139221 }, + { "lat": 40.7443936, "lon": -73.9137891 }, + { "lat": 40.7443853, "lon": -73.9137209 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "share_busway", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt", + "turn:lanes:forward": "through|through|right" + } +}, +{ + "type": "way", + "id": 1100797664, + "bounds": { + "minlat": 40.7114828, + "minlon": -73.9680093, + "maxlat": 40.7118084, + "maxlon": -73.9676992 + }, + "nodes": [ + 10074624136, + 10074624137, + 10074624138, + 10074624139, + 10074624140 + ], + "geometry": [ + { "lat": 40.7118084, "lon": -73.9676992 }, + { "lat": 40.7117525, "lon": -73.9677238 }, + { "lat": 40.7116870, "lon": -73.9677547 }, + { "lat": 40.7116751, "lon": -73.9679206 }, + { "lat": 40.7114828, "lon": -73.9680093 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1100797665, + "bounds": { + "minlat": 40.7114941, + "minlon": -73.9676484, + "maxlat": 40.7117713, + "maxlon": -73.9675450 + }, + "nodes": [ + 10074624141, + 10074624142, + 10074624143, + 10074624144, + 10074624145 + ], + "geometry": [ + { "lat": 40.7117713, "lon": -73.9675906 }, + { "lat": 40.7117157, "lon": -73.9676165 }, + { "lat": 40.7116489, "lon": -73.9676484 }, + { "lat": 40.7116158, "lon": -73.9675450 }, + { "lat": 40.7114941, "lon": -73.9676012 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1100797666, + "bounds": { + "minlat": 40.7114828, + "minlon": -73.9681926, + "maxlat": 40.7115331, + "maxlon": -73.9680093 + }, + "nodes": [ + 10074624140, + 10074624146, + 10074624147 + ], + "geometry": [ + { "lat": 40.7114828, "lon": -73.9680093 }, + { "lat": 40.7115140, "lon": -73.9681232 }, + { "lat": 40.7115331, "lon": -73.9681926 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1100841640, + "bounds": { + "minlat": 40.8013370, + "minlon": -74.0161258, + "maxlat": 40.8015362, + "maxlon": -74.0159482 + }, + "nodes": [ + 10074988663, + 10074988664 + ], + "geometry": [ + { "lat": 40.8015362, "lon": -74.0159482 }, + { "lat": 40.8013370, "lon": -74.0161258 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1100884446, + "bounds": { + "minlat": 40.8057132, + "minlon": -73.9349414, + "maxlat": 40.8058396, + "maxlon": -73.9346439 + }, + "nodes": [ + 9903045879, + 3786741452 + ], + "geometry": [ + { "lat": 40.8058396, "lon": -73.9349414 }, + { "lat": 40.8057132, "lon": -73.9346439 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 128th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1101352855, + "bounds": { + "minlat": 40.7208551, + "minlon": -73.9625537, + "maxlat": 40.7209282, + "maxlon": -73.9624473 + }, + "nodes": [ + 1422507548, + 10078622615, + 8139045388, + 10078622614 + ], + "geometry": [ + { "lat": 40.7208551, "lon": -73.9625537 }, + { "lat": 40.7208975, "lon": -73.9624920 }, + { "lat": 40.7209064, "lon": -73.9624791 }, + { "lat": 40.7209282, "lon": -73.9624473 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1101384335, + "bounds": { + "minlat": 40.8034654, + "minlon": -74.0193522, + "maxlat": 40.8036072, + "maxlon": -74.0192699 + }, + "nodes": [ + 10079118571, + 10079118569, + 13525592756, + 10079118570 + ], + "geometry": [ + { "lat": 40.8034654, "lon": -74.0192699 }, + { "lat": 40.8035147, "lon": -74.0193089 }, + { "lat": 40.8035517, "lon": -74.0193262 }, + { "lat": 40.8036072, "lon": -74.0193522 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1101384336, + "bounds": { + "minlat": 40.8034527, + "minlon": -74.0192699, + "maxlat": 40.8034654, + "maxlon": -74.0192420 + }, + "nodes": [ + 10020358525, + 10079118571 + ], + "geometry": [ + { "lat": 40.8034527, "lon": -74.0192420 }, + { "lat": 40.8034654, "lon": -74.0192699 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101384337, + "bounds": { + "minlat": 40.8034608, + "minlon": -74.0194739, + "maxlat": 40.8034797, + "maxlon": -74.0192699 + }, + "nodes": [ + 10079118572, + 13525592757, + 10079118573, + 10079118571 + ], + "geometry": [ + { "lat": 40.8034608, "lon": -74.0194739 }, + { "lat": 40.8034744, "lon": -74.0193897 }, + { "lat": 40.8034797, "lon": -74.0193572 }, + { "lat": 40.8034654, "lon": -74.0192699 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1101402501, + "bounds": { + "minlat": 40.8085528, + "minlon": -74.0101314, + "maxlat": 40.8090991, + "maxlon": -74.0096736 + }, + "nodes": [ + 103876827, + 7475993484, + 103876829 + ], + "geometry": [ + { "lat": 40.8085528, "lon": -74.0101314 }, + { "lat": 40.8090509, "lon": -74.0097142 }, + { "lat": 40.8090991, "lon": -74.0096736 } + ], + "tags": { + "highway": "residential", + "name": "Durham Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Durham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1101435153, + "bounds": { + "minlat": 40.8207663, + "minlon": -73.9292297, + "maxlat": 40.8214524, + "maxlon": -73.9286933 + }, + "nodes": [ + 10079555988, + 10079555989, + 10079555993, + 10079555990, + 10079555991, + 10079555994, + 10079555992, + 7043272428 + ], + "geometry": [ + { "lat": 40.8208338, "lon": -73.9292297 }, + { "lat": 40.8214184, "lon": -73.9289803 }, + { "lat": 40.8214452, "lon": -73.9289469 }, + { "lat": 40.8214524, "lon": -73.9288946 }, + { "lat": 40.8214165, "lon": -73.9287347 }, + { "lat": 40.8213909, "lon": -73.9286944 }, + { "lat": 40.8213524, "lon": -73.9286933 }, + { "lat": 40.8207663, "lon": -73.9289117 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1101436497, + "bounds": { + "minlat": 40.8300532, + "minlon": -73.9405618, + "maxlat": 40.8302115, + "maxlon": -73.9403700 + }, + "nodes": [ + 10079540194, + 11218709956, + 10079540193, + 10079540199 + ], + "geometry": [ + { "lat": 40.8300532, "lon": -73.9403700 }, + { "lat": 40.8301300, "lon": -73.9405067 }, + { "lat": 40.8301609, "lon": -73.9405618 }, + { "lat": 40.8302115, "lon": -73.9405428 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101436498, + "bounds": { + "minlat": 40.8302167, + "minlon": -73.9405781, + "maxlat": 40.8303063, + "maxlon": -73.9405445 + }, + "nodes": [ + 10079540197, + 10079540200 + ], + "geometry": [ + { "lat": 40.8303063, "lon": -73.9405445 }, + { "lat": 40.8302167, "lon": -73.9405781 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101436499, + "bounds": { + "minlat": 40.8303063, + "minlon": -73.9405445, + "maxlat": 40.8303305, + "maxlon": -73.9405036 + }, + "nodes": [ + 10079540191, + 10079540195, + 10079540197 + ], + "geometry": [ + { "lat": 40.8303162, "lon": -73.9405036 }, + { "lat": 40.8303305, "lon": -73.9405354 }, + { "lat": 40.8303063, "lon": -73.9405445 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101436500, + "bounds": { + "minlat": 40.8303004, + "minlon": -73.9405095, + "maxlat": 40.8303162, + "maxlon": -73.9405036 + }, + "nodes": [ + 10079540198, + 10079540191 + ], + "geometry": [ + { "lat": 40.8303004, "lon": -73.9405095 }, + { "lat": 40.8303162, "lon": -73.9405036 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101436501, + "bounds": { + "minlat": 40.8302115, + "minlon": -73.9405428, + "maxlat": 40.8303004, + "maxlon": -73.9405095 + }, + "nodes": [ + 10079540199, + 10079540198 + ], + "geometry": [ + { "lat": 40.8302115, "lon": -73.9405428 }, + { "lat": 40.8303004, "lon": -73.9405095 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101436502, + "bounds": { + "minlat": 40.8301609, + "minlon": -73.9405932, + "maxlat": 40.8302167, + "maxlon": -73.9405618 + }, + "nodes": [ + 10079540200, + 10079540196, + 10079540193 + ], + "geometry": [ + { "lat": 40.8302167, "lon": -73.9405781 }, + { "lat": 40.8301764, "lon": -73.9405932 }, + { "lat": 40.8301609, "lon": -73.9405618 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101461564, + "bounds": { + "minlat": 40.8104724, + "minlon": -73.9261000, + "maxlat": 40.8106844, + "maxlon": -73.9258271 + }, + "nodes": [ + 10079791634, + 11882279872, + 10079791637, + 10079791635, + 10079791636 + ], + "geometry": [ + { "lat": 40.8104724, "lon": -73.9261000 }, + { "lat": 40.8105549, "lon": -73.9260430 }, + { "lat": 40.8106172, "lon": -73.9260000 }, + { "lat": 40.8106844, "lon": -73.9259537 }, + { "lat": 40.8106337, "lon": -73.9258271 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101609966, + "bounds": { + "minlat": 40.7458436, + "minlon": -73.9351814, + "maxlat": 40.7460292, + "maxlon": -73.9344235 + }, + "nodes": [ + 9179115054, + 10142831522, + 8315037311, + 42911782 + ], + "geometry": [ + { "lat": 40.7458436, "lon": -73.9351814 }, + { "lat": 40.7459144, "lon": -73.9348948 }, + { "lat": 40.7460042, "lon": -73.9345311 }, + { "lat": 40.7460292, "lon": -73.9344235 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1101609967, + "bounds": { + "minlat": 40.7423339, + "minlon": -73.9414536, + "maxlat": 40.7427592, + "maxlon": -73.9411635 + }, + "nodes": [ + 10081023553, + 5680112983, + 10081023552, + 42872051 + ], + "geometry": [ + { "lat": 40.7427592, "lon": -73.9414536 }, + { "lat": 40.7424421, "lon": -73.9412352 }, + { "lat": 40.7424034, "lon": -73.9412096 }, + { "lat": 40.7423339, "lon": -73.9411635 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Austell Place", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1101609968, + "bounds": { + "minlat": 40.7432136, + "minlon": -73.9263194, + "maxlat": 40.7435530, + "maxlon": -73.9262505 + }, + "nodes": [ + 5482367302, + 5482367299, + 5482367306 + ], + "geometry": [ + { "lat": 40.7435530, "lon": -73.9262505 }, + { "lat": 40.7433889, "lon": -73.9262838 }, + { "lat": 40.7432136, "lon": -73.9263194 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "39th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1101609969, + "bounds": { + "minlat": 40.7435530, + "minlon": -73.9262505, + "maxlat": 40.7438735, + "maxlon": -73.9261861 + }, + "nodes": [ + 598433545, + 11272980334, + 5482367302 + ], + "geometry": [ + { "lat": 40.7438735, "lon": -73.9261861 }, + { "lat": 40.7437822, "lon": -73.9262059 }, + { "lat": 40.7435530, "lon": -73.9262505 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "39th Street", + "surface": "asphalt", + "turn:lanes:backward": "|through;right" + } +}, +{ + "type": "way", + "id": 1101678200, + "bounds": { + "minlat": 40.8722501, + "minlon": -73.9553616, + "maxlat": 40.8725924, + "maxlon": -73.9547440 + }, + "nodes": [ + 10081535269, + 10081535288, + 10081535270 + ], + "geometry": [ + { "lat": 40.8722501, "lon": -73.9547440 }, + { "lat": 40.8722765, "lon": -73.9547915 }, + { "lat": 40.8725924, "lon": -73.9553616 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101678201, + "bounds": { + "minlat": 40.8725924, + "minlon": -73.9556568, + "maxlat": 40.8727611, + "maxlon": -73.9553616 + }, + "nodes": [ + 10081535270, + 10081535287, + 10081535271 + ], + "geometry": [ + { "lat": 40.8725924, "lon": -73.9553616 }, + { "lat": 40.8726133, "lon": -73.9553982 }, + { "lat": 40.8727611, "lon": -73.9556568 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101678202, + "bounds": { + "minlat": 40.8721384, + "minlon": -73.9547440, + "maxlat": 40.8722501, + "maxlon": -73.9545421 + }, + "nodes": [ + 10081535268, + 10081535269 + ], + "geometry": [ + { "lat": 40.8721384, "lon": -73.9545421 }, + { "lat": 40.8722501, "lon": -73.9547440 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101678203, + "bounds": { + "minlat": 40.8727600, + "minlon": -73.9555176, + "maxlat": 40.8729007, + "maxlon": -73.9552487 + }, + "nodes": [ + 10081535284, + 10081535275 + ], + "geometry": [ + { "lat": 40.8727600, "lon": -73.9552487 }, + { "lat": 40.8729007, "lon": -73.9555176 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101678204, + "bounds": { + "minlat": 40.8722899, + "minlon": -73.9546042, + "maxlat": 40.8723945, + "maxlon": -73.9544149 + }, + "nodes": [ + 10081535272, + 10081535273 + ], + "geometry": [ + { "lat": 40.8722899, "lon": -73.9544149 }, + { "lat": 40.8723945, "lon": -73.9546042 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101678205, + "bounds": { + "minlat": 40.8730237, + "minlon": -73.9552549, + "maxlat": 40.8731642, + "maxlon": -73.9550025 + }, + "nodes": [ + 10081535278, + 10081535279 + ], + "geometry": [ + { "lat": 40.8730237, "lon": -73.9550025 }, + { "lat": 40.8731642, "lon": -73.9552549 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101678206, + "bounds": { + "minlat": 40.8725488, + "minlon": -73.9543414, + "maxlat": 40.8726691, + "maxlon": -73.9541255 + }, + "nodes": [ + 10081535276, + 10081535277 + ], + "geometry": [ + { "lat": 40.8725488, "lon": -73.9541255 }, + { "lat": 40.8726691, "lon": -73.9543414 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101678207, + "bounds": { + "minlat": 40.8728898, + "minlon": -73.9553949, + "maxlat": 40.8730238, + "maxlon": -73.9551372 + }, + "nodes": [ + 10081535285, + 10081535283 + ], + "geometry": [ + { "lat": 40.8728898, "lon": -73.9551372 }, + { "lat": 40.8730238, "lon": -73.9553949 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101678208, + "bounds": { + "minlat": 40.8724222, + "minlon": -73.9544718, + "maxlat": 40.8725313, + "maxlon": -73.9542663 + }, + "nodes": [ + 10081535280, + 10081535281 + ], + "geometry": [ + { "lat": 40.8724222, "lon": -73.9542663 }, + { "lat": 40.8725313, "lon": -73.9544718 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101678209, + "bounds": { + "minlat": 40.8726133, + "minlon": -73.9553982, + "maxlat": 40.8730237, + "maxlon": -73.9550025 + }, + "nodes": [ + 10081535278, + 10081535285, + 10081535284, + 10081535287 + ], + "geometry": [ + { "lat": 40.8730237, "lon": -73.9550025 }, + { "lat": 40.8728898, "lon": -73.9551372 }, + { "lat": 40.8727600, "lon": -73.9552487 }, + { "lat": 40.8726133, "lon": -73.9553982 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101678210, + "bounds": { + "minlat": 40.8722765, + "minlon": -73.9547915, + "maxlat": 40.8726920, + "maxlon": -73.9543414 + }, + "nodes": [ + 10081535288, + 10081535291, + 10081535290, + 10081535289, + 10081535277 + ], + "geometry": [ + { "lat": 40.8722765, "lon": -73.9547915 }, + { "lat": 40.8724209, "lon": -73.9546525 }, + { "lat": 40.8725580, "lon": -73.9545206 }, + { "lat": 40.8726920, "lon": -73.9543875 }, + { "lat": 40.8726691, "lon": -73.9543414 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101678211, + "bounds": { + "minlat": 40.8725313, + "minlon": -73.9545206, + "maxlat": 40.8725580, + "maxlon": -73.9544718 + }, + "nodes": [ + 10081535281, + 10081535290 + ], + "geometry": [ + { "lat": 40.8725313, "lon": -73.9544718 }, + { "lat": 40.8725580, "lon": -73.9545206 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101678212, + "bounds": { + "minlat": 40.8723945, + "minlon": -73.9546525, + "maxlat": 40.8724209, + "maxlon": -73.9546042 + }, + "nodes": [ + 10081535273, + 10081535291 + ], + "geometry": [ + { "lat": 40.8723945, "lon": -73.9546042 }, + { "lat": 40.8724209, "lon": -73.9546525 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1101867445, + "bounds": { + "minlat": 40.7398781, + "minlon": -73.9250345, + "maxlat": 40.7399626, + "maxlon": -73.9243285 + }, + "nodes": [ + 42880313, + 10083107654, + 11155242454, + 11155242453, + 10083107656, + 42880316 + ], + "geometry": [ + { "lat": 40.7399626, "lon": -73.9250345 }, + { "lat": 40.7399539, "lon": -73.9249539 }, + { "lat": 40.7399296, "lon": -73.9247531 }, + { "lat": 40.7399290, "lon": -73.9247485 }, + { "lat": 40.7398950, "lon": -73.9244602 }, + { "lat": 40.7398781, "lon": -73.9243285 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "48th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left;through" + } +}, +{ + "type": "way", + "id": 1101867446, + "bounds": { + "minlat": 40.7397502, + "minlon": -73.9240463, + "maxlat": 40.7398468, + "maxlon": -73.9231811 + }, + "nodes": [ + 4215943289, + 10774439569, + 10774439574, + 10774439579, + 10083107661, + 10083107662, + 42880323 + ], + "geometry": [ + { "lat": 40.7398468, "lon": -73.9240463 }, + { "lat": 40.7398227, "lon": -73.9238298 }, + { "lat": 40.7398022, "lon": -73.9236457 }, + { "lat": 40.7397813, "lon": -73.9234586 }, + { "lat": 40.7397658, "lon": -73.9233190 }, + { "lat": 40.7397592, "lon": -73.9232606 }, + { "lat": 40.7397502, "lon": -73.9231811 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "48th Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left;through" + } +}, +{ + "type": "way", + "id": 1102150853, + "bounds": { + "minlat": 40.7355313, + "minlon": -73.9224632, + "maxlat": 40.7355684, + "maxlon": -73.9221309 + }, + "nodes": [ + 42825302, + 10084797191, + 4203113822 + ], + "geometry": [ + { "lat": 40.7355313, "lon": -73.9221309 }, + { "lat": 40.7355405, "lon": -73.9222242 }, + { "lat": 40.7355684, "lon": -73.9224632 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "30 mph", + "name": "Queens-Midtown Expressway", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Laurel Hill", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes": "left|left;through|through" + } +}, +{ + "type": "way", + "id": 1102399090, + "bounds": { + "minlat": 40.7362841, + "minlon": -73.9101078, + "maxlat": 40.7363952, + "maxlon": -73.9092686 + }, + "nodes": [ + 597294481, + 10203944867, + 10087484100 + ], + "geometry": [ + { "lat": 40.7363952, "lon": -73.9092686 }, + { "lat": 40.7363799, "lon": -73.9093844 }, + { "lat": 40.7362841, "lon": -73.9101078 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1102399091, + "bounds": { + "minlat": 40.7363952, + "minlon": -73.9092686, + "maxlat": 40.7366977, + "maxlon": -73.9081856 + }, + "nodes": [ + 42825313, + 10087484112, + 597294481 + ], + "geometry": [ + { "lat": 40.7366977, "lon": -73.9081856 }, + { "lat": 40.7364973, "lon": -73.9090819 }, + { "lat": 40.7363952, "lon": -73.9092686 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Laurel Hill Boulevard", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 1102412392, + "bounds": { + "minlat": 40.7294384, + "minlon": -73.9171904, + "maxlat": 40.7307044, + "maxlon": -73.9167792 + }, + "nodes": [ + 761564667, + 10087637268, + 10087637267, + 10087637266, + 761564668, + 10087637257, + 10087637258, + 10087637259, + 761564669, + 10087637261, + 10087637260, + 10087637262, + 761564670, + 10087637263, + 10087637265, + 277390491 + ], + "geometry": [ + { "lat": 40.7294384, "lon": -73.9171629 }, + { "lat": 40.7294554, "lon": -73.9171774 }, + { "lat": 40.7294724, "lon": -73.9171876 }, + { "lat": 40.7294927, "lon": -73.9171904 }, + { "lat": 40.7295106, "lon": -73.9171895 }, + { "lat": 40.7304397, "lon": -73.9170461 }, + { "lat": 40.7304702, "lon": -73.9170383 }, + { "lat": 40.7304982, "lon": -73.9170300 }, + { "lat": 40.7305254, "lon": -73.9170187 }, + { "lat": 40.7305501, "lon": -73.9170035 }, + { "lat": 40.7305764, "lon": -73.9169821 }, + { "lat": 40.7305988, "lon": -73.9169577 }, + { "lat": 40.7306226, "lon": -73.9169276 }, + { "lat": 40.7306447, "lon": -73.9168954 }, + { "lat": 40.7306746, "lon": -73.9168429 }, + { "lat": 40.7307044, "lon": -73.9167792 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Matthew Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102412393, + "bounds": { + "minlat": 40.7306131, + "minlon": -73.9167792, + "maxlat": 40.7307044, + "maxlon": -73.9158866 + }, + "nodes": [ + 277390491, + 10087637264, + 10087637084, + 10087637077, + 10087637081, + 10087637080, + 10087637078, + 277390489, + 10087637079, + 10087637076, + 10087637074, + 277390488 + ], + "geometry": [ + { "lat": 40.7307044, "lon": -73.9167792 }, + { "lat": 40.7306947, "lon": -73.9167380 }, + { "lat": 40.7306863, "lon": -73.9166902 }, + { "lat": 40.7306265, "lon": -73.9162521 }, + { "lat": 40.7306187, "lon": -73.9161942 }, + { "lat": 40.7306146, "lon": -73.9161446 }, + { "lat": 40.7306131, "lon": -73.9160968 }, + { "lat": 40.7306165, "lon": -73.9160575 }, + { "lat": 40.7306248, "lon": -73.9160191 }, + { "lat": 40.7306336, "lon": -73.9159833 }, + { "lat": 40.7306500, "lon": -73.9159342 }, + { "lat": 40.7306725, "lon": -73.9158866 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Matthew Avenue", + "sidewalk:right": "yes", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102412394, + "bounds": { + "minlat": 40.7298790, + "minlon": -73.9177300, + "maxlat": 40.7310113, + "maxlon": -73.9175329 + }, + "nodes": [ + 42786880, + 10087637160, + 42786912, + 42810325 + ], + "geometry": [ + { "lat": 40.7310113, "lon": -73.9175329 }, + { "lat": 40.7309560, "lon": -73.9175428 }, + { "lat": 40.7305674, "lon": -73.9176122 }, + { "lat": 40.7298790, "lon": -73.9177300 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "50th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "50th", + "tiger:name_type": "St", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 1102412395, + "bounds": { + "minlat": 40.7310415, + "minlon": -73.9193118, + "maxlat": 40.7311347, + "maxlon": -73.9186898 + }, + "nodes": [ + 42786857, + 10087637100, + 8097303865, + 10087637101, + 10087637104, + 10087637102, + 10087637103, + 42786860 + ], + "geometry": [ + { "lat": 40.7311347, "lon": -73.9193118 }, + { "lat": 40.7311051, "lon": -73.9191612 }, + { "lat": 40.7310939, "lon": -73.9191046 }, + { "lat": 40.7310505, "lon": -73.9188846 }, + { "lat": 40.7310442, "lon": -73.9188227 }, + { "lat": 40.7310415, "lon": -73.9187838 }, + { "lat": 40.7310439, "lon": -73.9187380 }, + { "lat": 40.7310506, "lon": -73.9186898 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "54th Avenue", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102412396, + "bounds": { + "minlat": 40.7311347, + "minlon": -73.9217855, + "maxlat": 40.7316586, + "maxlon": -73.9193118 + }, + "nodes": [ + 42786855, + 13259926326, + 7397278518, + 7397278512, + 8097303878, + 10087637118, + 42786857 + ], + "geometry": [ + { "lat": 40.7316586, "lon": -73.9217855 }, + { "lat": 40.7316452, "lon": -73.9217015 }, + { "lat": 40.7313913, "lon": -73.9205185 }, + { "lat": 40.7313483, "lon": -73.9203181 }, + { "lat": 40.7311733, "lon": -73.9195028 }, + { "lat": 40.7311619, "lon": -73.9194494 }, + { "lat": 40.7311347, "lon": -73.9193118 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "54th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102412397, + "bounds": { + "minlat": 40.7316586, + "minlon": -73.9217855, + "maxlat": 40.7323615, + "maxlon": -73.9215164 + }, + "nodes": [ + 42833522, + 10087637157, + 10087637162, + 10087637163, + 10087637166, + 42786855 + ], + "geometry": [ + { "lat": 40.7323615, "lon": -73.9215164 }, + { "lat": 40.7322944, "lon": -73.9215421 }, + { "lat": 40.7322658, "lon": -73.9215530 }, + { "lat": 40.7317456, "lon": -73.9217522 }, + { "lat": 40.7317185, "lon": -73.9217626 }, + { "lat": 40.7316586, "lon": -73.9217855 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "46th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102412398, + "bounds": { + "minlat": 40.7306097, + "minlon": -73.9237103, + "maxlat": 40.7326673, + "maxlon": -73.9229589 + }, + "nodes": [ + 42848960, + 10087637173, + 10087637149, + 42810306, + 10087637152, + 10087637172, + 10087637120, + 42786848, + 10087637119, + 10087637170, + 10087637171, + 42862674 + ], + "geometry": [ + { "lat": 40.7306097, "lon": -73.9237103 }, + { "lat": 40.7312130, "lon": -73.9234873 }, + { "lat": 40.7312270, "lon": -73.9234821 }, + { "lat": 40.7312777, "lon": -73.9234634 }, + { "lat": 40.7313479, "lon": -73.9234381 }, + { "lat": 40.7313569, "lon": -73.9234348 }, + { "lat": 40.7319205, "lon": -73.9232319 }, + { "lat": 40.7319702, "lon": -73.9232141 }, + { "lat": 40.7320426, "lon": -73.9231874 }, + { "lat": 40.7325971, "lon": -73.9229846 }, + { "lat": 40.7326152, "lon": -73.9229779 }, + { "lat": 40.7326673, "lon": -73.9229589 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "44th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102412399, + "bounds": { + "minlat": 40.7306097, + "minlon": -73.9242709, + "maxlat": 40.7307486, + "maxlon": -73.9237103 + }, + "nodes": [ + 4636005911, + 13701195854, + 10087637174, + 42848960 + ], + "geometry": [ + { "lat": 40.7307486, "lon": -73.9242709 }, + { "lat": 40.7306550, "lon": -73.9238661 }, + { "lat": 40.7306417, "lon": -73.9238085 }, + { "lat": 40.7306097, "lon": -73.9237103 } + ], + "tags": { + "highway": "service", + "maxspeed": "25 mph", + "name": "54th Drive", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102412400, + "bounds": { + "minlat": 40.7257729, + "minlon": -73.9235676, + "maxlat": 40.7266128, + "maxlon": -73.9224388 + }, + "nodes": [ + 10087637195, + 10087637196, + 10087637197, + 10087637198, + 10087637201, + 6291247571, + 10087637199, + 10087637200, + 10087637202, + 10087637203, + 10087637204, + 10087637205, + 8324527892, + 10087637206, + 10087637207, + 10087637208, + 10087637209, + 10087637210, + 10087637211, + 10087637212, + 10087637213, + 8324527893 + ], + "geometry": [ + { "lat": 40.7266128, "lon": -73.9235676 }, + { "lat": 40.7265601, "lon": -73.9234524 }, + { "lat": 40.7264125, "lon": -73.9231294 }, + { "lat": 40.7262269, "lon": -73.9227231 }, + { "lat": 40.7262130, "lon": -73.9226934 }, + { "lat": 40.7261998, "lon": -73.9226660 }, + { "lat": 40.7261825, "lon": -73.9226413 }, + { "lat": 40.7261648, "lon": -73.9226209 }, + { "lat": 40.7261440, "lon": -73.9226012 }, + { "lat": 40.7261224, "lon": -73.9225856 }, + { "lat": 40.7261012, "lon": -73.9225725 }, + { "lat": 40.7260737, "lon": -73.9225624 }, + { "lat": 40.7260336, "lon": -73.9225490 }, + { "lat": 40.7259918, "lon": -73.9225355 }, + { "lat": 40.7259503, "lon": -73.9225195 }, + { "lat": 40.7259172, "lon": -73.9225038 }, + { "lat": 40.7258900, "lon": -73.9224867 }, + { "lat": 40.7258334, "lon": -73.9224488 }, + { "lat": 40.7258191, "lon": -73.9224422 }, + { "lat": 40.7258017, "lon": -73.9224388 }, + { "lat": 40.7257876, "lon": -73.9224404 }, + { "lat": 40.7257729, "lon": -73.9224452 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "57th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102467790, + "bounds": { + "minlat": 40.7306725, + "minlon": -73.9158866, + "maxlat": 40.7351991, + "maxlon": -73.9147048 + }, + "nodes": [ + 10088171283, + 761564882, + 277390486, + 10087633307, + 10087633308, + 10087633309, + 277390487, + 10087637072, + 10087637073, + 10087637075, + 277390488 + ], + "geometry": [ + { "lat": 40.7351991, "lon": -73.9147048 }, + { "lat": 40.7335139, "lon": -73.9150964 }, + { "lat": 40.7311376, "lon": -73.9156713 }, + { "lat": 40.7308915, "lon": -73.9157518 }, + { "lat": 40.7308453, "lon": -73.9157674 }, + { "lat": 40.7308129, "lon": -73.9157811 }, + { "lat": 40.7307731, "lon": -73.9158000 }, + { "lat": 40.7307376, "lon": -73.9158213 }, + { "lat": 40.7307145, "lon": -73.9158365 }, + { "lat": 40.7306905, "lon": -73.9158607 }, + { "lat": 40.7306725, "lon": -73.9158866 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Lawrence Avenue", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102467791, + "bounds": { + "minlat": 40.7419597, + "minlon": -73.9131040, + "maxlat": 40.7423183, + "maxlon": -73.9129918 + }, + "nodes": [ + 276315699, + 9192059023, + 10088171130, + 10088171129 + ], + "geometry": [ + { "lat": 40.7423183, "lon": -73.9129918 }, + { "lat": 40.7422554, "lon": -73.9130247 }, + { "lat": 40.7422374, "lon": -73.9130333 }, + { "lat": 40.7419597, "lon": -73.9131040 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Saint Lawrence Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102467793, + "bounds": { + "minlat": 40.7291529, + "minlon": -73.9157108, + "maxlat": 40.7292733, + "maxlon": -73.9145987 + }, + "nodes": [ + 761564659, + 761564662, + 761564664, + 10087637277, + 10087637276, + 761564665 + ], + "geometry": [ + { "lat": 40.7291529, "lon": -73.9145987 }, + { "lat": 40.7292733, "lon": -73.9156201 }, + { "lat": 40.7292202, "lon": -73.9156598 }, + { "lat": 40.7292017, "lon": -73.9156738 }, + { "lat": 40.7291855, "lon": -73.9156898 }, + { "lat": 40.7291716, "lon": -73.9157108 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Theresa Avenue", + "source": "Yahoo", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1102467796, + "bounds": { + "minlat": 40.7351991, + "minlon": -73.9147048, + "maxlat": 40.7361357, + "maxlon": -73.9144844 + }, + "nodes": [ + 10088043112, + 10088043109, + 10088043108, + 9888647747, + 10088171282, + 761594218, + 10088171281, + 6794149490, + 10088171283 + ], + "geometry": [ + { "lat": 40.7361357, "lon": -73.9144844 }, + { "lat": 40.7359674, "lon": -73.9145244 }, + { "lat": 40.7359297, "lon": -73.9145346 }, + { "lat": 40.7358695, "lon": -73.9145513 }, + { "lat": 40.7358041, "lon": -73.9145650 }, + { "lat": 40.7356920, "lon": -73.9145884 }, + { "lat": 40.7355785, "lon": -73.9146156 }, + { "lat": 40.7354328, "lon": -73.9146505 }, + { "lat": 40.7351991, "lon": -73.9147048 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Saint Lawrence Avenue", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102469822, + "bounds": { + "minlat": 40.7352211, + "minlon": -73.9275987, + "maxlat": 40.7355025, + "maxlon": -73.9274381 + }, + "nodes": [ + 761583575, + 10088180895, + 10088180894, + 3440153505, + 10088180896 + ], + "geometry": [ + { "lat": 40.7355025, "lon": -73.9275987 }, + { "lat": 40.7354630, "lon": -73.9275617 }, + { "lat": 40.7354303, "lon": -73.9275363 }, + { "lat": 40.7354010, "lon": -73.9275194 }, + { "lat": 40.7352211, "lon": -73.9274381 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "5 mph", + "name": "Saint Stephen's Avenue", + "source": "Yahoo" + } +}, +{ + "type": "way", + "id": 1102469823, + "bounds": { + "minlat": 40.7336717, + "minlon": -73.9267561, + "maxlat": 40.7341014, + "maxlon": -73.9255012 + }, + "nodes": [ + 761583580, + 10088187124, + 761583715, + 10088187123, + 10088187141, + 10088187122, + 761583718, + 10088187121, + 10088187120, + 761583719, + 10088187119, + 10088187118, + 761583721, + 10088187117, + 10088180916, + 761583722, + 10088180915, + 10088180914, + 761583723, + 761583724 + ], + "geometry": [ + { "lat": 40.7340038, "lon": -73.9267561 }, + { "lat": 40.7340115, "lon": -73.9267021 }, + { "lat": 40.7340209, "lon": -73.9266556 }, + { "lat": 40.7340821, "lon": -73.9263408 }, + { "lat": 40.7340860, "lon": -73.9263178 }, + { "lat": 40.7340942, "lon": -73.9262690 }, + { "lat": 40.7341008, "lon": -73.9262020 }, + { "lat": 40.7341014, "lon": -73.9261433 }, + { "lat": 40.7340978, "lon": -73.9260867 }, + { "lat": 40.7340879, "lon": -73.9260321 }, + { "lat": 40.7340744, "lon": -73.9259685 }, + { "lat": 40.7340553, "lon": -73.9259078 }, + { "lat": 40.7340354, "lon": -73.9258565 }, + { "lat": 40.7340137, "lon": -73.9258072 }, + { "lat": 40.7339811, "lon": -73.9257569 }, + { "lat": 40.7339456, "lon": -73.9257109 }, + { "lat": 40.7339104, "lon": -73.9256740 }, + { "lat": 40.7338626, "lon": -73.9256333 }, + { "lat": 40.7338214, "lon": -73.9256024 }, + { "lat": 40.7336717, "lon": -73.9255012 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Stephen's Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102469824, + "bounds": { + "minlat": 40.7322849, + "minlon": -73.9313033, + "maxlat": 40.7335658, + "maxlon": -73.9302273 + }, + "nodes": [ + 761583588, + 761583589, + 10088180904, + 10088180905, + 10088180906, + 10088180907, + 10088180903, + 761583590 + ], + "geometry": [ + { "lat": 40.7335658, "lon": -73.9302273 }, + { "lat": 40.7325700, "lon": -73.9311787 }, + { "lat": 40.7325366, "lon": -73.9312086 }, + { "lat": 40.7324949, "lon": -73.9312382 }, + { "lat": 40.7324560, "lon": -73.9312612 }, + { "lat": 40.7324137, "lon": -73.9312780 }, + { "lat": 40.7323724, "lon": -73.9312888 }, + { "lat": 40.7322849, "lon": -73.9313033 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Mary's Avenue", + "sidewalk:right": "yes", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102469825, + "bounds": { + "minlat": 40.7321836, + "minlon": -73.9283365, + "maxlat": 40.7332771, + "maxlon": -73.9273870 + }, + "nodes": [ + 761583739, + 3440153354, + 10088187171, + 10088187170, + 761583809, + 10088187169, + 10088187168, + 10088187167, + 761583807, + 3440153662, + 10088187166, + 10088187165, + 10088187164, + 761583805, + 761583691 + ], + "geometry": [ + { "lat": 40.7321836, "lon": -73.9273870 }, + { "lat": 40.7323167, "lon": -73.9276038 }, + { "lat": 40.7323457, "lon": -73.9276487 }, + { "lat": 40.7323755, "lon": -73.9276881 }, + { "lat": 40.7324131, "lon": -73.9277290 }, + { "lat": 40.7324448, "lon": -73.9277511 }, + { "lat": 40.7324751, "lon": -73.9277691 }, + { "lat": 40.7326040, "lon": -73.9278366 }, + { "lat": 40.7327090, "lon": -73.9279014 }, + { "lat": 40.7328169, "lon": -73.9279691 }, + { "lat": 40.7329353, "lon": -73.9280488 }, + { "lat": 40.7330370, "lon": -73.9281253 }, + { "lat": 40.7331210, "lon": -73.9281957 }, + { "lat": 40.7332120, "lon": -73.9282811 }, + { "lat": 40.7332771, "lon": -73.9283365 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint John's Avenue", + "sidewalk:right": "yes", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102469827, + "bounds": { + "minlat": 40.7332771, + "minlon": -73.9283818, + "maxlat": 40.7336084, + "maxlon": -73.9282851 + }, + "nodes": [ + 761583691, + 10088187163, + 761583700, + 10088187162, + 10088187161, + 10088187160, + 3440153494, + 10088187159, + 10088187158, + 761583704, + 10088187157, + 10088187174 + ], + "geometry": [ + { "lat": 40.7332771, "lon": -73.9283365 }, + { "lat": 40.7333024, "lon": -73.9283521 }, + { "lat": 40.7333362, "lon": -73.9283677 }, + { "lat": 40.7333655, "lon": -73.9283771 }, + { "lat": 40.7333895, "lon": -73.9283810 }, + { "lat": 40.7334217, "lon": -73.9283818 }, + { "lat": 40.7334487, "lon": -73.9283760 }, + { "lat": 40.7334809, "lon": -73.9283654 }, + { "lat": 40.7335142, "lon": -73.9283490 }, + { "lat": 40.7335471, "lon": -73.9283295 }, + { "lat": 40.7335936, "lon": -73.9282973 }, + { "lat": 40.7336084, "lon": -73.9282851 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Cathedral Avenue", + "sidewalk:right": "yes", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102469830, + "bounds": { + "minlat": 40.7335172, + "minlon": -73.9340587, + "maxlat": 40.7345888, + "maxlon": -73.9339794 + }, + "nodes": [ + 761583782, + 3440153383, + 761583564 + ], + "geometry": [ + { "lat": 40.7345888, "lon": -73.9339794 }, + { "lat": 40.7343863, "lon": -73.9340151 }, + { "lat": 40.7335172, "lon": -73.9340587 } + ], + "tags": { + "access": "permissive", + "bicycle": "no", + "highway": "service", + "maxspeed": "15 mph", + "name": "Saint Peter Avenue", + "source": "Yahoo", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1102561804, + "bounds": { + "minlat": 40.7537073, + "minlon": -73.9970372, + "maxlat": 40.7538172, + "maxlon": -73.9969471 + }, + "nodes": [ + 10089242335, + 10089242336, + 10089242337 + ], + "geometry": [ + { "lat": 40.7538172, "lon": -73.9969471 }, + { "lat": 40.7537971, "lon": -73.9969637 }, + { "lat": 40.7537073, "lon": -73.9970372 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1103026522, + "bounds": { + "minlat": 40.7568056, + "minlon": -73.9408677, + "maxlat": 40.7568904, + "maxlon": -73.9407096 + }, + "nodes": [ + 5487837579, + 7781269195, + 10093644995 + ], + "geometry": [ + { "lat": 40.7568904, "lon": -73.9408677 }, + { "lat": 40.7568597, "lon": -73.9408077 }, + { "lat": 40.7568056, "lon": -73.9407096 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1103026523, + "bounds": { + "minlat": 40.7562896, + "minlon": -73.9405178, + "maxlat": 40.7564491, + "maxlon": -73.9402289 + }, + "nodes": [ + 5487837582, + 7737868081, + 13701213608, + 10093644996 + ], + "geometry": [ + { "lat": 40.7562896, "lon": -73.9402289 }, + { "lat": 40.7563500, "lon": -73.9403392 }, + { "lat": 40.7564214, "lon": -73.9404678 }, + { "lat": 40.7564491, "lon": -73.9405178 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1103026524, + "bounds": { + "minlat": 40.7566281, + "minlon": -73.9406057, + "maxlat": 40.7568951, + "maxlon": -73.9403602 + }, + "nodes": [ + 10093644999, + 10093644998 + ], + "geometry": [ + { "lat": 40.7566281, "lon": -73.9406057 }, + { "lat": 40.7568951, "lon": -73.9403602 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1103026525, + "bounds": { + "minlat": 40.7564491, + "minlon": -73.9406857, + "maxlat": 40.7568951, + "maxlon": -73.9401848 + }, + "nodes": [ + 10093644998, + 10093645001, + 10093644996, + 10093645002, + 10093644999 + ], + "geometry": [ + { "lat": 40.7568951, "lon": -73.9403602 }, + { "lat": 40.7567988, "lon": -73.9401848 }, + { "lat": 40.7564491, "lon": -73.9405178 }, + { "lat": 40.7565369, "lon": -73.9406857 }, + { "lat": 40.7566281, "lon": -73.9406057 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1104450749, + "bounds": { + "minlat": 40.8108335, + "minlon": -73.9575037, + "maxlat": 40.8111207, + "maxlon": -73.9574471 + }, + "nodes": [ + 10106642888, + 10106642876, + 10106642885, + 10106642889, + 10106642878, + 10106642881, + 10106642880, + 10106642886, + 10106642887, + 10106642877, + 10106642882 + ], + "geometry": [ + { "lat": 40.8111207, "lon": -73.9574471 }, + { "lat": 40.8110790, "lon": -73.9574697 }, + { "lat": 40.8110542, "lon": -73.9574831 }, + { "lat": 40.8110396, "lon": -73.9574915 }, + { "lat": 40.8110127, "lon": -73.9575019 }, + { "lat": 40.8109823, "lon": -73.9575037 }, + { "lat": 40.8109619, "lon": -73.9574964 }, + { "lat": 40.8109052, "lon": -73.9574760 }, + { "lat": 40.8108866, "lon": -73.9574693 }, + { "lat": 40.8108484, "lon": -73.9574633 }, + { "lat": 40.8108335, "lon": -73.9574609 } + ], + "tags": { + "highway": "service", + "incline": "up", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1104583179, + "bounds": { + "minlat": 40.7012617, + "minlon": -74.0121783, + "maxlat": 40.7013292, + "maxlon": -74.0121277 + }, + "nodes": [ + 370880748, + 11014606926, + 10107930166, + 10107898853, + 10107930168, + 10107930167 + ], + "geometry": [ + { "lat": 40.7013292, "lon": -74.0121783 }, + { "lat": 40.7013158, "lon": -74.0121591 }, + { "lat": 40.7013023, "lon": -74.0121454 }, + { "lat": 40.7012852, "lon": -74.0121355 }, + { "lat": 40.7012751, "lon": -74.0121324 }, + { "lat": 40.7012617, "lon": -74.0121277 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1104583180, + "bounds": { + "minlat": 40.7013313, + "minlon": -74.0118466, + "maxlat": 40.7013998, + "maxlon": -74.0118205 + }, + "nodes": [ + 10107930169, + 10107930171, + 10107898854, + 10107930170 + ], + "geometry": [ + { "lat": 40.7013313, "lon": -74.0118205 }, + { "lat": 40.7013463, "lon": -74.0118262 }, + { "lat": 40.7013639, "lon": -74.0118329 }, + { "lat": 40.7013998, "lon": -74.0118466 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1104641371, + "bounds": { + "minlat": 40.8246429, + "minlon": -73.9189064, + "maxlat": 40.8247635, + "maxlon": -73.9184953 + }, + "nodes": [ + 10108383861, + 12480685987, + 10108383867, + 10108383863, + 10108383865, + 10108383862 + ], + "geometry": [ + { "lat": 40.8247635, "lon": -73.9189064 }, + { "lat": 40.8247321, "lon": -73.9187993 }, + { "lat": 40.8247269, "lon": -73.9187816 }, + { "lat": 40.8247000, "lon": -73.9186899 }, + { "lat": 40.8246636, "lon": -73.9185658 }, + { "lat": 40.8246429, "lon": -73.9184953 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1104641372, + "bounds": { + "minlat": 40.8245623, + "minlon": -73.9187593, + "maxlat": 40.8247000, + "maxlon": -73.9186899 + }, + "nodes": [ + 10108383863, + 10108383864 + ], + "geometry": [ + { "lat": 40.8247000, "lon": -73.9186899 }, + { "lat": 40.8245623, "lon": -73.9187593 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1104641373, + "bounds": { + "minlat": 40.8245316, + "minlon": -73.9186339, + "maxlat": 40.8246636, + "maxlon": -73.9185658 + }, + "nodes": [ + 10108383865, + 10108383866 + ], + "geometry": [ + { "lat": 40.8246636, "lon": -73.9185658 }, + { "lat": 40.8245316, "lon": -73.9186339 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1104950438, + "bounds": { + "minlat": 40.7662824, + "minlon": -73.9942708, + "maxlat": 40.7663401, + "maxlon": -73.9941322 + }, + "nodes": [ + 10111318238, + 10111318240, + 10111318239 + ], + "geometry": [ + { "lat": 40.7662824, "lon": -73.9941322 }, + { "lat": 40.7662941, "lon": -73.9941602 }, + { "lat": 40.7663401, "lon": -73.9942708 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1104950439, + "bounds": { + "minlat": 40.7663388, + "minlon": -73.9939972, + "maxlat": 40.7664092, + "maxlon": -73.9939445 + }, + "nodes": [ + 10111318241, + 10111318243, + 10111318242 + ], + "geometry": [ + { "lat": 40.7663388, "lon": -73.9939972 }, + { "lat": 40.7663622, "lon": -73.9939796 }, + { "lat": 40.7664092, "lon": -73.9939445 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1104950440, + "bounds": { + "minlat": 40.7662825, + "minlon": -73.9938618, + "maxlat": 40.7663529, + "maxlon": -73.9938100 + }, + "nodes": [ + 10111318244, + 10111318246, + 10111318245 + ], + "geometry": [ + { "lat": 40.7662825, "lon": -73.9938618 }, + { "lat": 40.7663052, "lon": -73.9938451 }, + { "lat": 40.7663529, "lon": -73.9938100 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1105415774, + "bounds": { + "minlat": 40.8576792, + "minlon": -73.9988326, + "maxlat": 40.8580558, + "maxlon": -73.9981767 + }, + "nodes": [ + 10115677188, + 10115677187 + ], + "geometry": [ + { "lat": 40.8580558, "lon": -73.9988326 }, + { "lat": 40.8576792, "lon": -73.9981767 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1105415775, + "bounds": { + "minlat": 40.8577741, + "minlon": -73.9987329, + "maxlat": 40.8581372, + "maxlon": -73.9980811 + }, + "nodes": [ + 10115677190, + 10115677189 + ], + "geometry": [ + { "lat": 40.8581372, "lon": -73.9987329 }, + { "lat": 40.8577741, "lon": -73.9980811 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1105474273, + "bounds": { + "minlat": 40.7713718, + "minlon": -74.0137629, + "maxlat": 40.7719182, + "maxlon": -74.0126851 + }, + "nodes": [ + 7621170855, + 10116091110, + 10116091104, + 10116091105, + 10116091106, + 10116091107, + 10116091108, + 10116091111, + 2325759301 + ], + "geometry": [ + { "lat": 40.7719182, "lon": -74.0126851 }, + { "lat": 40.7718092, "lon": -74.0127575 }, + { "lat": 40.7715270, "lon": -74.0129449 }, + { "lat": 40.7714123, "lon": -74.0130505 }, + { "lat": 40.7713915, "lon": -74.0131019 }, + { "lat": 40.7713718, "lon": -74.0131865 }, + { "lat": 40.7713796, "lon": -74.0132688 }, + { "lat": 40.7715077, "lon": -74.0135614 }, + { "lat": 40.7715959, "lon": -74.0137629 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1105728935, + "bounds": { + "minlat": 40.7390862, + "minlon": -73.9343998, + "maxlat": 40.7393740, + "maxlon": -73.9338847 + }, + "nodes": [ + 10118310676, + 10743722218, + 10118310675, + 10118310674, + 10118310673, + 10118310672, + 10743722215, + 10118310671 + ], + "geometry": [ + { "lat": 40.7390862, "lon": -73.9343998 }, + { "lat": 40.7391131, "lon": -73.9343258 }, + { "lat": 40.7391385, "lon": -73.9342560 }, + { "lat": 40.7391873, "lon": -73.9341286 }, + { "lat": 40.7392543, "lon": -73.9340065 }, + { "lat": 40.7392930, "lon": -73.9339583 }, + { "lat": 40.7393092, "lon": -73.9339436 }, + { "lat": 40.7393740, "lon": -73.9338847 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1105728936, + "bounds": { + "minlat": 40.7396245, + "minlon": -73.9362422, + "maxlat": 40.7398960, + "maxlon": -73.9356668 + }, + "nodes": [ + 7079159417, + 10118310683, + 10118310682, + 10118310679, + 10118310681, + 10118310678, + 10118310677, + 10118310680 + ], + "geometry": [ + { "lat": 40.7398960, "lon": -73.9362092 }, + { "lat": 40.7397754, "lon": -73.9362422 }, + { "lat": 40.7397495, "lon": -73.9362354 }, + { "lat": 40.7397299, "lon": -73.9362113 }, + { "lat": 40.7396245, "lon": -73.9357336 }, + { "lat": 40.7396252, "lon": -73.9357084 }, + { "lat": 40.7396379, "lon": -73.9356930 }, + { "lat": 40.7397609, "lon": -73.9356668 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1105728937, + "bounds": { + "minlat": 40.7542488, + "minlon": -73.9238075, + "maxlat": 40.7544073, + "maxlon": -73.9234360 + }, + "nodes": [ + 10118310686, + 10118310684, + 10609398737, + 10118310685 + ], + "geometry": [ + { "lat": 40.7542488, "lon": -73.9234360 }, + { "lat": 40.7543667, "lon": -73.9237082 }, + { "lat": 40.7543768, "lon": -73.9237326 }, + { "lat": 40.7544073, "lon": -73.9238075 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1106167120, + "bounds": { + "minlat": 40.7589866, + "minlon": -73.9630951, + "maxlat": 40.7592704, + "maxlon": -73.9624288 + }, + "nodes": [ + 10121802240, + 4918486727, + 42456041 + ], + "geometry": [ + { "lat": 40.7592704, "lon": -73.9630951 }, + { "lat": 40.7590453, "lon": -73.9625684 }, + { "lat": 40.7589866, "lon": -73.9624288 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1106233654, + "bounds": { + "minlat": 40.8641669, + "minlon": -73.9944855, + "maxlat": 40.8644818, + "maxlon": -73.9939322 + }, + "nodes": [ + 103229128, + 10122889648, + 10122889649, + 10122889642, + 10243214287 + ], + "geometry": [ + { "lat": 40.8644818, "lon": -73.9944855 }, + { "lat": 40.8644109, "lon": -73.9943951 }, + { "lat": 40.8642902, "lon": -73.9941940 }, + { "lat": 40.8642241, "lon": -73.9940488 }, + { "lat": 40.8641669, "lon": -73.9939322 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1106233655, + "bounds": { + "minlat": 40.8646710, + "minlon": -73.9815540, + "maxlat": 40.8649730, + "maxlon": -73.9809230 + }, + "nodes": [ + 103110773, + 103110776, + 103110778, + 103110780, + 103110782, + 103110784 + ], + "geometry": [ + { "lat": 40.8649730, "lon": -73.9809230 }, + { "lat": 40.8648310, "lon": -73.9811070 }, + { "lat": 40.8647620, "lon": -73.9812280 }, + { "lat": 40.8647150, "lon": -73.9813500 }, + { "lat": 40.8646820, "lon": -73.9814790 }, + { "lat": 40.8646710, "lon": -73.9815540 } + ], + "tags": { + "highway": "residential", + "name": "Pine Hill Road", + "noexit": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pine Hill", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1106233702, + "bounds": { + "minlat": 40.7697690, + "minlon": -73.9504462, + "maxlat": 40.7700988, + "maxlon": -73.9496858 + }, + "nodes": [ + 10122913409, + 10122913411, + 10122913410 + ], + "geometry": [ + { "lat": 40.7697690, "lon": -73.9496858 }, + { "lat": 40.7697902, "lon": -73.9497345 }, + { "lat": 40.7700988, "lon": -73.9504462 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1106469540, + "bounds": { + "minlat": 40.7753677, + "minlon": -73.9586025, + "maxlat": 40.7795073, + "maxlon": -73.9555832 + }, + "nodes": [ + 42429334, + 7924099723, + 5402547522, + 8250514383, + 42447132, + 8782927423, + 10125087282, + 42435509, + 10125087286, + 10125087285, + 42447126, + 10125087289, + 5402547521, + 10125087290, + 42439399, + 10125087293, + 10125087296, + 42447115, + 10125087298, + 10156669045, + 10125087297, + 42438498, + 10125087302, + 10125087303 + ], + "geometry": [ + { "lat": 40.7795073, "lon": -73.9555832 }, + { "lat": 40.7794073, "lon": -73.9556546 }, + { "lat": 40.7789151, "lon": -73.9560172 }, + { "lat": 40.7788786, "lon": -73.9560423 }, + { "lat": 40.7788196, "lon": -73.9560836 }, + { "lat": 40.7787629, "lon": -73.9561258 }, + { "lat": 40.7782439, "lon": -73.9565074 }, + { "lat": 40.7781874, "lon": -73.9565490 }, + { "lat": 40.7781308, "lon": -73.9565903 }, + { "lat": 40.7776085, "lon": -73.9569721 }, + { "lat": 40.7775539, "lon": -73.9570119 }, + { "lat": 40.7774900, "lon": -73.9570580 }, + { "lat": 40.7772577, "lon": -73.9572240 }, + { "lat": 40.7769744, "lon": -73.9574313 }, + { "lat": 40.7769156, "lon": -73.9574742 }, + { "lat": 40.7768629, "lon": -73.9575129 }, + { "lat": 40.7763415, "lon": -73.9578944 }, + { "lat": 40.7762807, "lon": -73.9579390 }, + { "lat": 40.7762206, "lon": -73.9579824 }, + { "lat": 40.7757060, "lon": -73.9583552 }, + { "lat": 40.7756976, "lon": -73.9583613 }, + { "lat": 40.7756450, "lon": -73.9583993 }, + { "lat": 40.7755959, "lon": -73.9584353 }, + { "lat": 40.7753677, "lon": -73.9586025 } + ], + "tags": { + "alt_name:el": "Λέξιγκτων", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:el": "Λεξιγκτώνος", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1106469541, + "bounds": { + "minlat": 40.7749669, + "minlon": -73.9588958, + "maxlat": 40.7753677, + "maxlon": -73.9586025 + }, + "nodes": [ + 10125087303, + 10125087301, + 42447105 + ], + "geometry": [ + { "lat": 40.7753677, "lon": -73.9586025 }, + { "lat": 40.7750572, "lon": -73.9588301 }, + { "lat": 40.7749669, "lon": -73.9588958 } + ], + "tags": { + "alt_name:el": "Λέξιγκτων", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:el": "Λεξιγκτώνος", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "none|through|none|right", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1106469542, + "bounds": { + "minlat": 40.7682073, + "minlon": -73.9638262, + "maxlat": 40.7704253, + "maxlon": -73.9622127 + }, + "nodes": [ + 42436484, + 3562587896, + 10122943670, + 42445232, + 10122943669, + 6747157044, + 42429688, + 6747157043, + 6747157049, + 42447076, + 6747157042, + 10125139621 + ], + "geometry": [ + { "lat": 40.7704253, "lon": -73.9622127 }, + { "lat": 40.7703337, "lon": -73.9622794 }, + { "lat": 40.7697995, "lon": -73.9626676 }, + { "lat": 40.7697511, "lon": -73.9627039 }, + { "lat": 40.7696860, "lon": -73.9627509 }, + { "lat": 40.7691724, "lon": -73.9631263 }, + { "lat": 40.7691137, "lon": -73.9631686 }, + { "lat": 40.7690620, "lon": -73.9632063 }, + { "lat": 40.7685445, "lon": -73.9635825 }, + { "lat": 40.7684894, "lon": -73.9636212 }, + { "lat": 40.7684388, "lon": -73.9636566 }, + { "lat": 40.7682073, "lon": -73.9638262 } + ], + "tags": { + "alt_name:el": "Λέξιγκτων", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:el": "Λεξιγκτώνος", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1106469543, + "bounds": { + "minlat": 40.7704253, + "minlon": -73.9622127, + "maxlat": 40.7708305, + "maxlon": -73.9619153 + }, + "nodes": [ + 10125139619, + 3562587895, + 42436484 + ], + "geometry": [ + { "lat": 40.7708305, "lon": -73.9619153 }, + { "lat": 40.7705196, "lon": -73.9621427 }, + { "lat": 40.7704253, "lon": -73.9622127 } + ], + "tags": { + "alt_name:el": "Λέξιγκτων", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:el": "Λεξιγκτώνος", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "both", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "none|through|none|right", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1106469544, + "bounds": { + "minlat": 40.7672413, + "minlon": -73.9645312, + "maxlat": 40.7678647, + "maxlon": -73.9640765 + }, + "nodes": [ + 42431678, + 3278932316, + 8835703617, + 42437433 + ], + "geometry": [ + { "lat": 40.7678647, "lon": -73.9640765 }, + { "lat": 40.7678101, "lon": -73.9641155 }, + { "lat": 40.7672913, "lon": -73.9644943 }, + { "lat": 40.7672413, "lon": -73.9645312 } + ], + "tags": { + "alt_name:el": "Λέξιγκτων", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:el": "Λεξιγκτώνος", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk": "both", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1106469545, + "bounds": { + "minlat": 40.7678647, + "minlon": -73.9640765, + "maxlat": 40.7682073, + "maxlon": -73.9638262 + }, + "nodes": [ + 10125139621, + 3278932317, + 42431678 + ], + "geometry": [ + { "lat": 40.7682073, "lon": -73.9638262 }, + { "lat": 40.7679163, "lon": -73.9640392 }, + { "lat": 40.7678647, "lon": -73.9640765 } + ], + "tags": { + "alt_name:el": "Λέξιγκτων", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:el": "Λεξιγκτώνος", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1106470992, + "bounds": { + "minlat": 40.7686004, + "minlon": -73.9693618, + "maxlat": 40.7692758, + "maxlon": -73.9677557 + }, + "nodes": [ + 42437425, + 2792787011, + 6929267038, + 42437423 + ], + "geometry": [ + { "lat": 40.7686004, "lon": -73.9677557 }, + { "lat": 40.7686531, "lon": -73.9678816 }, + { "lat": 40.7692337, "lon": -73.9692589 }, + { "lat": 40.7692758, "lon": -73.9693618 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 67th Street", + "name:ru": "Восточная 67-я стрит", + "name_1": "East 67 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1106470993, + "bounds": { + "minlat": 40.7683253, + "minlon": -73.9677557, + "maxlat": 40.7686004, + "maxlon": -73.9671021 + }, + "nodes": [ + 10125112340, + 2792787015, + 42437425 + ], + "geometry": [ + { "lat": 40.7683253, "lon": -73.9671021 }, + { "lat": 40.7685585, "lon": -73.9676557 }, + { "lat": 40.7686004, "lon": -73.9677557 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 67th Street", + "name:ru": "Восточная 67-я стрит", + "name_1": "East 67 Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1106470994, + "bounds": { + "minlat": 40.7656160, + "minlon": -73.9629303, + "maxlat": 40.7665573, + "maxlon": -73.9606894 + }, + "nodes": [ + 42437445, + 8851344391, + 13701309123, + 13680975215, + 10125112353, + 42437436 + ], + "geometry": [ + { "lat": 40.7656160, "lon": -73.9606894 }, + { "lat": 40.7656703, "lon": -73.9608247 }, + { "lat": 40.7657939, "lon": -73.9611201 }, + { "lat": 40.7658277, "lon": -73.9612010 }, + { "lat": 40.7664957, "lon": -73.9627977 }, + { "lat": 40.7665573, "lon": -73.9629303 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 67th Street", + "name:ru": "Восточная 67-я стрит", + "name_1": "East 67 Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1106471567, + "bounds": { + "minlat": 40.7647390, + "minlon": -73.9663609, + "maxlat": 40.7659911, + "maxlon": -73.9654486 + }, + "nodes": [ + 42447060, + 9178272150, + 10125147523, + 42431654, + 10166238417, + 10125147526, + 42429976 + ], + "geometry": [ + { "lat": 40.7659911, "lon": -73.9654486 }, + { "lat": 40.7659310, "lon": -73.9654902 }, + { "lat": 40.7654201, "lon": -73.9658596 }, + { "lat": 40.7653629, "lon": -73.9659010 }, + { "lat": 40.7653030, "lon": -73.9659451 }, + { "lat": 40.7647969, "lon": -73.9663185 }, + { "lat": 40.7647390, "lon": -73.9663609 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "|||right", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1106471568, + "bounds": { + "minlat": 40.7628736, + "minlon": -73.9677191, + "maxlat": 40.7632426, + "maxlon": -73.9674482 + }, + "nodes": [ + 10125147538, + 9178272151, + 42447020 + ], + "geometry": [ + { "lat": 40.7632426, "lon": -73.9674482 }, + { "lat": 40.7629206, "lon": -73.9676833 }, + { "lat": 40.7628736, "lon": -73.9677191 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:both": "no", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "|||right", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1106474772, + "bounds": { + "minlat": 40.7632286, + "minlon": -73.9734832, + "maxlat": 40.7636536, + "maxlon": -73.9724791 + }, + "nodes": [ + 42427762, + 3976008172, + 10125156111 + ], + "geometry": [ + { "lat": 40.7636536, "lon": -73.9734832 }, + { "lat": 40.7636003, "lon": -73.9733503 }, + { "lat": 40.7632286, "lon": -73.9724791 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1106474773, + "bounds": { + "minlat": 40.7629713, + "minlon": -73.9724791, + "maxlat": 40.7632286, + "maxlon": -73.9718668 + }, + "nodes": [ + 10125156111, + 6188877009, + 42445947 + ], + "geometry": [ + { "lat": 40.7632286, "lon": -73.9724791 }, + { "lat": 40.7630173, "lon": -73.9719776 }, + { "lat": 40.7629713, "lon": -73.9718668 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1106474774, + "bounds": { + "minlat": 40.7623289, + "minlon": -73.9708345, + "maxlat": 40.7625319, + "maxlon": -73.9703537 + }, + "nodes": [ + 10125156112, + 12834723224, + 10125156114, + 596775941 + ], + "geometry": [ + { "lat": 40.7625319, "lon": -73.9708345 }, + { "lat": 40.7623975, "lon": -73.9705148 }, + { "lat": 40.7623719, "lon": -73.9704539 }, + { "lat": 40.7623289, "lon": -73.9703537 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "||right" + } +}, +{ + "type": "way", + "id": 1106474775, + "bounds": { + "minlat": 40.7616103, + "minlon": -73.9690376, + "maxlat": 40.7617746, + "maxlon": -73.9686382 + }, + "nodes": [ + 10125156115, + 10125147543, + 42447007 + ], + "geometry": [ + { "lat": 40.7617746, "lon": -73.9690376 }, + { "lat": 40.7616513, "lon": -73.9687448 }, + { "lat": 40.7616103, "lon": -73.9686382 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1106482765, + "bounds": { + "minlat": 40.7556019, + "minlon": -73.9785571, + "maxlat": 40.7566594, + "maxlon": -73.9760646 + }, + "nodes": [ + 42443811, + 11296575609, + 10165986975, + 42445924, + 10165986978, + 3944708049, + 42452353 + ], + "geometry": [ + { "lat": 40.7556019, "lon": -73.9760646 }, + { "lat": 40.7556415, "lon": -73.9761572 }, + { "lat": 40.7559427, "lon": -73.9768612 }, + { "lat": 40.7559868, "lon": -73.9769642 }, + { "lat": 40.7560303, "lon": -73.9770662 }, + { "lat": 40.7566138, "lon": -73.9784518 }, + { "lat": 40.7566594, "lon": -73.9785571 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed:type": "US-NY:urban", + "name": "East 47th Street", + "name:ru": "Восточная 47-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4638574", + "wikipedia": "en:47th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1106482766, + "bounds": { + "minlat": 40.7553471, + "minlon": -73.9760646, + "maxlat": 40.7556019, + "maxlon": -73.9754421 + }, + "nodes": [ + 42457476, + 10125233049, + 12074685809, + 12418115548, + 42443811 + ], + "geometry": [ + { "lat": 40.7553471, "lon": -73.9754421 }, + { "lat": 40.7553889, "lon": -73.9755445 }, + { "lat": 40.7553937, "lon": -73.9755563 }, + { "lat": 40.7553994, "lon": -73.9755697 }, + { "lat": 40.7556019, "lon": -73.9760646 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "US-NY:urban", + "name": "East 47th Street", + "name:ru": "Восточная 47-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q4638574", + "wikipedia": "en:47th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1106482767, + "bounds": { + "minlat": 40.7551748, + "minlon": -73.9774077, + "maxlat": 40.7553621, + "maxlon": -73.9769598 + }, + "nodes": [ + 42434074, + 3944708039, + 8536656980 + ], + "geometry": [ + { "lat": 40.7553621, "lon": -73.9774077 }, + { "lat": 40.7553239, "lon": -73.9773139 }, + { "lat": 40.7551748, "lon": -73.9769598 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 46th Street", + "name:ru": "Восточная 46-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1106482768, + "bounds": { + "minlat": 40.7548884, + "minlon": -73.9765138, + "maxlat": 40.7549885, + "maxlon": -73.9762853 + }, + "nodes": [ + 42434077, + 10125247887, + 4207915682 + ], + "geometry": [ + { "lat": 40.7549885, "lon": -73.9765138 }, + { "lat": 40.7549535, "lon": -73.9764320 }, + { "lat": 40.7548884, "lon": -73.9762853 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "East 46th Street", + "name:ru": "Восточная 46-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1106482769, + "bounds": { + "minlat": 40.7531295, + "minlon": -73.9783286, + "maxlat": 40.7533008, + "maxlon": -73.9778381 + }, + "nodes": [ + 3639382769, + 11507273140, + 11507273141, + 11507273142, + 11507273139, + 11507273138, + 11507273119, + 10125247902 + ], + "geometry": [ + { "lat": 40.7531481, "lon": -73.9778381 }, + { "lat": 40.7531380, "lon": -73.9778515 }, + { "lat": 40.7531315, "lon": -73.9778711 }, + { "lat": 40.7531295, "lon": -73.9778906 }, + { "lat": 40.7531306, "lon": -73.9779130 }, + { "lat": 40.7531369, "lon": -73.9779390 }, + { "lat": 40.7531455, "lon": -73.9779608 }, + { "lat": 40.7533008, "lon": -73.9783286 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 43rd Street", + "name:ru": "Восточная 43-я стрит", + "official_name": "David Ben Gurion Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1106503313, + "bounds": { + "minlat": 40.8562676, + "minlon": -73.9744717, + "maxlat": 40.8575105, + "maxlon": -73.9721865 + }, + "nodes": [ + 7921607624, + 13754021080, + 13754021079, + 13754021078, + 13754021077, + 13754021076, + 13754021075, + 13754021074, + 13754021073, + 13754021072, + 13756544965, + 13754021071, + 13754021069, + 60811502 + ], + "geometry": [ + { "lat": 40.8575105, "lon": -73.9744717 }, + { "lat": 40.8574232, "lon": -73.9742710 }, + { "lat": 40.8572846, "lon": -73.9740211 }, + { "lat": 40.8571755, "lon": -73.9738198 }, + { "lat": 40.8570758, "lon": -73.9736350 }, + { "lat": 40.8570202, "lon": -73.9735291 }, + { "lat": 40.8569599, "lon": -73.9734164 }, + { "lat": 40.8568931, "lon": -73.9732960 }, + { "lat": 40.8568209, "lon": -73.9731695 }, + { "lat": 40.8567612, "lon": -73.9730703 }, + { "lat": 40.8567122, "lon": -73.9729906 }, + { "lat": 40.8566560, "lon": -73.9729048 }, + { "lat": 40.8564816, "lon": -73.9726455 }, + { "lat": 40.8562676, "lon": -73.9721865 } + ], + "tags": { + "destination": "George Washington Bridge Upper Level", + "destination:ref:to": "I 95 Toll North", + "highway": "motorway", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "oneway": "yes", + "ref": "US 1;US 9;US 46" + } +}, +{ + "type": "way", + "id": 1106681970, + "bounds": { + "minlat": 40.8366945, + "minlon": -73.9071281, + "maxlat": 40.8372180, + "maxlon": -73.9068033 + }, + "nodes": [ + 10126902031, + 12038123083, + 4202402637 + ], + "geometry": [ + { "lat": 40.8372180, "lon": -73.9068033 }, + { "lat": 40.8370313, "lon": -73.9069220 }, + { "lat": 40.8366945, "lon": -73.9071281 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "Webster Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Webster", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10470", + "tiger:zip_right": "10467", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 1106681971, + "bounds": { + "minlat": 40.8372180, + "minlon": -73.9068033, + "maxlat": 40.8385050, + "maxlon": -73.9059790 + }, + "nodes": [ + 42763602, + 10126902033, + 12038123082, + 10126902032, + 10126902031 + ], + "geometry": [ + { "lat": 40.8385050, "lon": -73.9059790 }, + { "lat": 40.8384339, "lon": -73.9060915 }, + { "lat": 40.8374666, "lon": -73.9067246 }, + { "lat": 40.8373978, "lon": -73.9067696 }, + { "lat": 40.8372180, "lon": -73.9068033 } + ], + "tags": { + "fixme": "Add bus relations to this side of divided street", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "Webster Avenue", + "oneway": "yes", + "wikidata": "Q7978887", + "wikipedia": "en:Webster Avenue" + } +}, +{ + "type": "way", + "id": 1106691598, + "bounds": { + "minlat": 40.8308659, + "minlon": -73.9206693, + "maxlat": 40.8309354, + "maxlon": -73.9204811 + }, + "nodes": [ + 10126985489, + 10126985490 + ], + "geometry": [ + { "lat": 40.8309354, "lon": -73.9206693 }, + { "lat": 40.8308659, "lon": -73.9204811 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "name": "East 165th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1106691599, + "bounds": { + "minlat": 40.8310217, + "minlon": -73.9210193, + "maxlat": 40.8311209, + "maxlon": -73.9206191 + }, + "nodes": [ + 2408438463, + 10126985492, + 10034673468, + 10126985484 + ], + "geometry": [ + { "lat": 40.8310217, "lon": -73.9206191 }, + { "lat": 40.8310533, "lon": -73.9207167 }, + { "lat": 40.8311110, "lon": -73.9208759 }, + { "lat": 40.8311209, "lon": -73.9210193 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "East 165th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1106691600, + "bounds": { + "minlat": 40.8305966, + "minlon": -73.9197865, + "maxlat": 40.8307262, + "maxlon": -73.9194518 + }, + "nodes": [ + 42767100, + 11118481023 + ], + "geometry": [ + { "lat": 40.8305966, "lon": -73.9194518 }, + { "lat": 40.8307262, "lon": -73.9197865 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "name": "East 165th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1106691601, + "bounds": { + "minlat": 40.8309354, + "minlon": -73.9210193, + "maxlat": 40.8311209, + "maxlon": -73.9206693 + }, + "nodes": [ + 10126985484, + 10126985485, + 10126985488, + 10126985493, + 10126985489 + ], + "geometry": [ + { "lat": 40.8311209, "lon": -73.9210193 }, + { "lat": 40.8310362, "lon": -73.9209383 }, + { "lat": 40.8309938, "lon": -73.9208252 }, + { "lat": 40.8309706, "lon": -73.9207631 }, + { "lat": 40.8309354, "lon": -73.9206693 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "East 165th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1106691604, + "bounds": { + "minlat": 40.8303891, + "minlon": -73.9207468, + "maxlat": 40.8308659, + "maxlon": -73.9204811 + }, + "nodes": [ + 10126985490, + 13534912292, + 13534912294, + 2408446178 + ], + "geometry": [ + { "lat": 40.8308659, "lon": -73.9204811 }, + { "lat": 40.8307937, "lon": -73.9205214 }, + { "lat": 40.8307561, "lon": -73.9205423 }, + { "lat": 40.8303891, "lon": -73.9207468 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1106691605, + "bounds": { + "minlat": 40.8308020, + "minlon": -73.9204811, + "maxlat": 40.8308659, + "maxlon": -73.9203119 + }, + "nodes": [ + 10126985490, + 10126985491 + ], + "geometry": [ + { "lat": 40.8308659, "lon": -73.9204811 }, + { "lat": 40.8308020, "lon": -73.9203119 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "name": "East 165th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1106691607, + "bounds": { + "minlat": 40.8306276, + "minlon": -73.9203119, + "maxlat": 40.8308020, + "maxlon": -73.9198560 + }, + "nodes": [ + 10126985491, + 12739350616, + 10126985486, + 10126985483 + ], + "geometry": [ + { "lat": 40.8308020, "lon": -73.9203119 }, + { "lat": 40.8307686, "lon": -73.9202227 }, + { "lat": 40.8306978, "lon": -73.9200353 }, + { "lat": 40.8306276, "lon": -73.9198560 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "name": "East 165th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1106691608, + "bounds": { + "minlat": 40.8296298, + "minlon": -73.9214003, + "maxlat": 40.8309354, + "maxlon": -73.9206693 + }, + "nodes": [ + 10126985489, + 10126985508, + 10126985499, + 2408446191, + 10126973902 + ], + "geometry": [ + { "lat": 40.8309354, "lon": -73.9206693 }, + { "lat": 40.8308579, "lon": -73.9207143 }, + { "lat": 40.8297567, "lon": -73.9213310 }, + { "lat": 40.8296938, "lon": -73.9213643 }, + { "lat": 40.8296298, "lon": -73.9214003 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1106736160, + "bounds": { + "minlat": 40.8679153, + "minlon": -73.9205194, + "maxlat": 40.8681187, + "maxlon": -73.9197555 + }, + "nodes": [ + 13320061236, + 9561229751, + 42429226 + ], + "geometry": [ + { "lat": 40.8679153, "lon": -73.9205194 }, + { "lat": 40.8680890, "lon": -73.9198676 }, + { "lat": 40.8681187, "lon": -73.9197555 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1106873463, + "bounds": { + "minlat": 40.8736965, + "minlon": -73.9095316, + "maxlat": 40.8740996, + "maxlon": -73.9090163 + }, + "nodes": [ + 2041169566, + 10128431620, + 2041169558, + 2041169552 + ], + "geometry": [ + { "lat": 40.8740996, "lon": -73.9090163 }, + { "lat": 40.8740220, "lon": -73.9091152 }, + { "lat": 40.8738110, "lon": -73.9093819 }, + { "lat": 40.8736965, "lon": -73.9095316 } + ], + "tags": { + "highway": "service", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1106873468, + "bounds": { + "minlat": 40.8741906, + "minlon": -73.9088845, + "maxlat": 40.8743838, + "maxlon": -73.9085987 + }, + "nodes": [ + 7037961266, + 7037961267 + ], + "geometry": [ + { "lat": 40.8741906, "lon": -73.9085987 }, + { "lat": 40.8743838, "lon": -73.9088845 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1106873469, + "bounds": { + "minlat": 40.8744544, + "minlon": -73.9085638, + "maxlat": 40.8746084, + "maxlon": -73.9084124 + }, + "nodes": [ + 8393678986, + 8393678987, + 8393678988, + 8393678989 + ], + "geometry": [ + { "lat": 40.8744544, "lon": -73.9084124 }, + { "lat": 40.8744953, "lon": -73.9084142 }, + { "lat": 40.8745266, "lon": -73.9084520 }, + { "lat": 40.8746084, "lon": -73.9085638 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1106873473, + "bounds": { + "minlat": 40.8736965, + "minlon": -73.9096303, + "maxlat": 40.8737719, + "maxlon": -73.9095316 + }, + "nodes": [ + 10128431656, + 2041169552 + ], + "geometry": [ + { "lat": 40.8737719, "lon": -73.9096303 }, + { "lat": 40.8736965, "lon": -73.9095316 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1106873476, + "bounds": { + "minlat": 40.8769548, + "minlon": -73.9068850, + "maxlat": 40.8772731, + "maxlon": -73.9064098 + }, + "nodes": [ + 10128431669, + 10128431670, + 10128431671, + 10128431672, + 10128431673, + 10128431674, + 10128431675, + 12529719490, + 1544782755 + ], + "geometry": [ + { "lat": 40.8771985, "lon": -73.9064098 }, + { "lat": 40.8772674, "lon": -73.9065818 }, + { "lat": 40.8772727, "lon": -73.9066031 }, + { "lat": 40.8772731, "lon": -73.9066243 }, + { "lat": 40.8772689, "lon": -73.9066436 }, + { "lat": 40.8772593, "lon": -73.9066613 }, + { "lat": 40.8772490, "lon": -73.9066720 }, + { "lat": 40.8770674, "lon": -73.9068035 }, + { "lat": 40.8769548, "lon": -73.9068850 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1106938541, + "bounds": { + "minlat": 40.8203839, + "minlon": -73.9584715, + "maxlat": 40.8206298, + "maxlon": -73.9579057 + }, + "nodes": [ + 10128931543, + 10128931547, + 10128931544 + ], + "geometry": [ + { "lat": 40.8206298, "lon": -73.9584715 }, + { "lat": 40.8205467, "lon": -73.9582785 }, + { "lat": 40.8203839, "lon": -73.9579057 } + ], + "tags": { + "alt_name": "West 134th Street (lower)", + "highway": "residential", + "lit": "yes", + "name": "West 134th Street", + "oneway": "no", + "sidewalk:both": "separate", + "source": "survey;mapillary=1461348517551835" + } +}, +{ + "type": "way", + "id": 1107166764, + "bounds": { + "minlat": 40.8626910, + "minlon": -73.9091025, + "maxlat": 40.8630984, + "maxlon": -73.9090191 + }, + "nodes": [ + 42743109, + 10130913934, + 10130913935, + 42731023 + ], + "geometry": [ + { "lat": 40.8630984, "lon": -73.9090676 }, + { "lat": 40.8629606, "lon": -73.9091025 }, + { "lat": 40.8627978, "lon": -73.9090862 }, + { "lat": 40.8626910, "lon": -73.9090191 } + ], + "tags": { + "fixme": "Add bus relations from other one-way segment", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 1107278839, + "bounds": { + "minlat": 40.8231231, + "minlon": -73.9786261, + "maxlat": 40.8232646, + "maxlon": -73.9782559 + }, + "nodes": [ + 10131740178, + 10131740179 + ], + "geometry": [ + { "lat": 40.8232646, "lon": -73.9786261 }, + { "lat": 40.8231231, "lon": -73.9782559 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1107488988, + "bounds": { + "minlat": 40.8213359, + "minlon": -73.9258612, + "maxlat": 40.8214774, + "maxlon": -73.9257405 + }, + "nodes": [ + 2822074732, + 10133486237, + 10133486238, + 10133486239, + 10133486242, + 10133486240, + 2822074822 + ], + "geometry": [ + { "lat": 40.8214774, "lon": -73.9258553 }, + { "lat": 40.8214446, "lon": -73.9258612 }, + { "lat": 40.8214236, "lon": -73.9258612 }, + { "lat": 40.8213975, "lon": -73.9258492 }, + { "lat": 40.8213829, "lon": -73.9258317 }, + { "lat": 40.8213713, "lon": -73.9258177 }, + { "lat": 40.8213359, "lon": -73.9257405 } + ], + "tags": { + "foot": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1107684899, + "bounds": { + "minlat": 40.8178325, + "minlon": -74.0115144, + "maxlat": 40.8186593, + "maxlon": -74.0104399 + }, + "nodes": [ + 10135064437, + 10135064442, + 10135064438, + 10135064439, + 10135064441, + 10135064440 + ], + "geometry": [ + { "lat": 40.8183219, "lon": -74.0104399 }, + { "lat": 40.8184626, "lon": -74.0107089 }, + { "lat": 40.8186593, "lon": -74.0110865 }, + { "lat": 40.8181993, "lon": -74.0115144 }, + { "lat": 40.8179885, "lon": -74.0111565 }, + { "lat": 40.8178325, "lon": -74.0108811 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1107684900, + "bounds": { + "minlat": 40.8179885, + "minlon": -74.0111565, + "maxlat": 40.8184626, + "maxlon": -74.0107089 + }, + "nodes": [ + 10135064441, + 10135064442 + ], + "geometry": [ + { "lat": 40.8179885, "lon": -74.0111565 }, + { "lat": 40.8184626, "lon": -74.0107089 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1107684901, + "bounds": { + "minlat": 40.8180725, + "minlon": -74.0101292, + "maxlat": 40.8182084, + "maxlon": -74.0098734 + }, + "nodes": [ + 10135064443, + 10135064444 + ], + "geometry": [ + { "lat": 40.8182084, "lon": -74.0101292 }, + { "lat": 40.8180725, "lon": -74.0098734 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1107684902, + "bounds": { + "minlat": 40.8178828, + "minlon": -74.0102962, + "maxlat": 40.8180213, + "maxlon": -74.0100411 + }, + "nodes": [ + 8187030551, + 10135064445 + ], + "geometry": [ + { "lat": 40.8180213, "lon": -74.0102962 }, + { "lat": 40.8178828, "lon": -74.0100411 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1107684903, + "bounds": { + "minlat": 40.8178828, + "minlon": -74.0100411, + "maxlat": 40.8180725, + "maxlon": -74.0098734 + }, + "nodes": [ + 10135064444, + 10135064445 + ], + "geometry": [ + { "lat": 40.8180725, "lon": -74.0098734 }, + { "lat": 40.8178828, "lon": -74.0100411 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1107684904, + "bounds": { + "minlat": 40.8181587, + "minlon": -74.0105791, + "maxlat": 40.8183219, + "maxlon": -74.0104399 + }, + "nodes": [ + 10135064437, + 10135064434 + ], + "geometry": [ + { "lat": 40.8183219, "lon": -74.0104399 }, + { "lat": 40.8181587, "lon": -74.0105791 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1107684905, + "bounds": { + "minlat": 40.8171399, + "minlon": -74.0103141, + "maxlat": 40.8174503, + "maxlon": -74.0098754 + }, + "nodes": [ + 7612325103, + 10135064446, + 10135064447, + 10135064436 + ], + "geometry": [ + { "lat": 40.8171399, "lon": -74.0098754 }, + { "lat": 40.8172385, "lon": -74.0100495 }, + { "lat": 40.8173663, "lon": -74.0099484 }, + { "lat": 40.8174503, "lon": -74.0103141 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1107684906, + "bounds": { + "minlat": 40.8175444, + "minlon": -74.0100528, + "maxlat": 40.8180847, + "maxlon": -74.0095637 + }, + "nodes": [ + 10135064448, + 10135064449 + ], + "geometry": [ + { "lat": 40.8180847, "lon": -74.0095637 }, + { "lat": 40.8175444, "lon": -74.0100528 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1107700467, + "bounds": { + "minlat": 40.8108010, + "minlon": -73.9883608, + "maxlat": 40.8109887, + "maxlon": -73.9882331 + }, + "nodes": [ + 6758967298, + 103137047 + ], + "geometry": [ + { "lat": 40.8109887, "lon": -73.9883608 }, + { "lat": 40.8108010, "lon": -73.9882331 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1107700468, + "bounds": { + "minlat": 40.8109217, + "minlon": -73.9883324, + "maxlat": 40.8110101, + "maxlon": -73.9881083 + }, + "nodes": [ + 10135191717, + 10135155516 + ], + "geometry": [ + { "lat": 40.8109217, "lon": -73.9881083 }, + { "lat": 40.8110101, "lon": -73.9883324 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1107709943, + "bounds": { + "minlat": 40.8459563, + "minlon": -73.9801541, + "maxlat": 40.8460719, + "maxlon": -73.9799666 + }, + "nodes": [ + 10135251988, + 10135251989 + ], + "geometry": [ + { "lat": 40.8459563, "lon": -73.9799666 }, + { "lat": 40.8460719, "lon": -73.9801541 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1107762239, + "bounds": { + "minlat": 40.8574167, + "minlon": -73.9121708, + "maxlat": 40.8577212, + "maxlon": -73.9119859 + }, + "nodes": [ + 10135688074, + 10135688075 + ], + "geometry": [ + { "lat": 40.8577212, "lon": -73.9119859 }, + { "lat": 40.8574167, "lon": -73.9121708 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1107762250, + "bounds": { + "minlat": 40.8588025, + "minlon": -73.9119558, + "maxlat": 40.8590864, + "maxlon": -73.9117365 + }, + "nodes": [ + 10135688180, + 10135688181, + 10135688191, + 10135688182 + ], + "geometry": [ + { "lat": 40.8588025, "lon": -73.9119558 }, + { "lat": 40.8588669, "lon": -73.9118628 }, + { "lat": 40.8590197, "lon": -73.9117749 }, + { "lat": 40.8590864, "lon": -73.9117365 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1107762251, + "bounds": { + "minlat": 40.8588025, + "minlon": -73.9119558, + "maxlat": 40.8591088, + "maxlon": -73.9118005 + }, + "nodes": [ + 2906620267, + 10135688192, + 8174133670, + 10135688180 + ], + "geometry": [ + { "lat": 40.8591088, "lon": -73.9118005 }, + { "lat": 40.8590407, "lon": -73.9118420 }, + { "lat": 40.8588895, "lon": -73.9119342 }, + { "lat": 40.8588025, "lon": -73.9119558 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1107762269, + "bounds": { + "minlat": 40.8593191, + "minlon": -73.9124015, + "maxlat": 40.8594610, + "maxlon": -73.9122715 + }, + "nodes": [ + 1891639854, + 10135688391, + 10135688395, + 10135688407, + 10135688392 + ], + "geometry": [ + { "lat": 40.8594610, "lon": -73.9122715 }, + { "lat": 40.8594422, "lon": -73.9123264 }, + { "lat": 40.8593946, "lon": -73.9123554 }, + { "lat": 40.8593678, "lon": -73.9123718 }, + { "lat": 40.8593191, "lon": -73.9124015 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1107762270, + "bounds": { + "minlat": 40.8593002, + "minlon": -73.9123474, + "maxlat": 40.8594610, + "maxlon": -73.9122688 + }, + "nodes": [ + 1891639854, + 10135688393, + 10135688396, + 10135688406, + 10135688394 + ], + "geometry": [ + { "lat": 40.8594610, "lon": -73.9122715 }, + { "lat": 40.8594287, "lon": -73.9122688 }, + { "lat": 40.8593760, "lon": -73.9123010 }, + { "lat": 40.8593491, "lon": -73.9123175 }, + { "lat": 40.8593002, "lon": -73.9123474 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1107762271, + "bounds": { + "minlat": 40.8600783, + "minlon": -73.9117645, + "maxlat": 40.8602371, + "maxlon": -73.9111093 + }, + "nodes": [ + 1891639895, + 1891639896, + 1891639897, + 10135688397 + ], + "geometry": [ + { "lat": 40.8602028, "lon": -73.9111093 }, + { "lat": 40.8602305, "lon": -73.9111813 }, + { "lat": 40.8602371, "lon": -73.9112657 }, + { "lat": 40.8600783, "lon": -73.9117645 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1107762272, + "bounds": { + "minlat": 40.8597646, + "minlon": -73.9112145, + "maxlat": 40.8599269, + "maxlon": -73.9111467 + }, + "nodes": [ + 1891639863, + 5487859641, + 5487859642 + ], + "geometry": [ + { "lat": 40.8597646, "lon": -73.9111957 }, + { "lat": 40.8598376, "lon": -73.9112145 }, + { "lat": 40.8599269, "lon": -73.9111467 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1107762279, + "bounds": { + "minlat": 40.8586072, + "minlon": -73.9097758, + "maxlat": 40.8587543, + "maxlon": -73.9093724 + }, + "nodes": [ + 10135688408, + 10135688409, + 10135688410, + 10135688411, + 10135688412, + 10135688413, + 10135688414, + 10135688415 + ], + "geometry": [ + { "lat": 40.8586072, "lon": -73.9093724 }, + { "lat": 40.8587132, "lon": -73.9095810 }, + { "lat": 40.8587227, "lon": -73.9096055 }, + { "lat": 40.8587236, "lon": -73.9096261 }, + { "lat": 40.8587115, "lon": -73.9096603 }, + { "lat": 40.8587102, "lon": -73.9096802 }, + { "lat": 40.8587137, "lon": -73.9097002 }, + { "lat": 40.8587543, "lon": -73.9097758 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1108467203, + "bounds": { + "minlat": 40.7639421, + "minlon": -73.9842275, + "maxlat": 40.7640245, + "maxlon": -73.9841667 + }, + "nodes": [ + 10142214274, + 10142214275, + 10142214277, + 10142214276 + ], + "geometry": [ + { "lat": 40.7640245, "lon": -73.9841667 }, + { "lat": 40.7640158, "lon": -73.9841724 }, + { "lat": 40.7639940, "lon": -73.9841880 }, + { "lat": 40.7639421, "lon": -73.9842275 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1108538559, + "bounds": { + "minlat": 40.6997235, + "minlon": -73.9621854, + "maxlat": 40.7001835, + "maxlon": -73.9614677 + }, + "nodes": [ + 10142828160, + 10142828161, + 10142828164, + 10142828163 + ], + "geometry": [ + { "lat": 40.7001835, "lon": -73.9621854 }, + { "lat": 40.7000175, "lon": -73.9619206 }, + { "lat": 40.6998461, "lon": -73.9616565 }, + { "lat": 40.6997235, "lon": -73.9614677 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1108538561, + "bounds": { + "minlat": 40.6996977, + "minlon": -73.9623573, + "maxlat": 40.7001835, + "maxlon": -73.9621854 + }, + "nodes": [ + 10142828160, + 5861248529, + 598035407 + ], + "geometry": [ + { "lat": 40.7001835, "lon": -73.9621854 }, + { "lat": 40.7000840, "lon": -73.9622306 }, + { "lat": 40.6996977, "lon": -73.9623573 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Williamsburg Street West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Williamsburg", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1108539039, + "bounds": { + "minlat": 40.7456093, + "minlon": -73.9348948, + "maxlat": 40.7459144, + "maxlon": -73.9342832 + }, + "nodes": [ + 10142831522, + 10142831523, + 10142831524, + 10142831527, + 10142831525, + 10142831529, + 10142831526 + ], + "geometry": [ + { "lat": 40.7459144, "lon": -73.9348948 }, + { "lat": 40.7458748, "lon": -73.9348764 }, + { "lat": 40.7458465, "lon": -73.9348612 }, + { "lat": 40.7457974, "lon": -73.9348222 }, + { "lat": 40.7456844, "lon": -73.9347323 }, + { "lat": 40.7456358, "lon": -73.9344414 }, + { "lat": 40.7456093, "lon": -73.9342832 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1108539040, + "bounds": { + "minlat": 40.7456358, + "minlon": -73.9348222, + "maxlat": 40.7458487, + "maxlon": -73.9344414 + }, + "nodes": [ + 10142831527, + 10142831528, + 10142831529 + ], + "geometry": [ + { "lat": 40.7457974, "lon": -73.9348222 }, + { "lat": 40.7458487, "lon": -73.9345641 }, + { "lat": 40.7456358, "lon": -73.9344414 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1108788014, + "bounds": { + "minlat": 40.7348437, + "minlon": -73.9450892, + "maxlat": 40.7357360, + "maxlon": -73.9445577 + }, + "nodes": [ + 42523815, + 42523819 + ], + "geometry": [ + { "lat": 40.7348437, "lon": -73.9450892 }, + { "lat": 40.7357360, "lon": -73.9445577 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "North Henry Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1108845073, + "bounds": { + "minlat": 40.7354495, + "minlon": -73.9598804, + "maxlat": 40.7355605, + "maxlon": -73.9585271 + }, + "nodes": [ + 9997952317, + 9997952321, + 9997952323, + 9997952322, + 13362464600, + 9997945916, + 9997952320, + 9997952319, + 9997952318, + 7740257824, + 7008335439, + 42520827 + ], + "geometry": [ + { "lat": 40.7355469, "lon": -73.9598804 }, + { "lat": 40.7355083, "lon": -73.9598465 }, + { "lat": 40.7354917, "lon": -73.9598299 }, + { "lat": 40.7354741, "lon": -73.9598071 }, + { "lat": 40.7354679, "lon": -73.9597956 }, + { "lat": 40.7354613, "lon": -73.9597833 }, + { "lat": 40.7354530, "lon": -73.9597585 }, + { "lat": 40.7354500, "lon": -73.9597283 }, + { "lat": 40.7354495, "lon": -73.9597014 }, + { "lat": 40.7354529, "lon": -73.9596576 }, + { "lat": 40.7355494, "lon": -73.9586292 }, + { "lat": 40.7355605, "lon": -73.9585271 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Dupont Street", + "name:etymology:wikidata": "Q127406", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Dupont", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1108957155, + "bounds": { + "minlat": 40.8368093, + "minlon": -74.0101636, + "maxlat": 40.8374043, + "maxlon": -74.0098191 + }, + "nodes": [ + 103135125, + 10146812026, + 103126798 + ], + "geometry": [ + { "lat": 40.8374043, "lon": -74.0098191 }, + { "lat": 40.8368939, "lon": -74.0101144 }, + { "lat": 40.8368093, "lon": -74.0101636 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 1109088010, + "bounds": { + "minlat": 40.8455715, + "minlon": -73.9151286, + "maxlat": 40.8457118, + "maxlon": -73.9148258 + }, + "nodes": [ + 10147967376, + 10147967377, + 12044682201, + 12044682202, + 12044682221, + 12044682220, + 12044682207, + 12044682208, + 10147967376 + ], + "geometry": [ + { "lat": 40.8455830, "lon": -73.9151286 }, + { "lat": 40.8457094, "lon": -73.9150390 }, + { "lat": 40.8457118, "lon": -73.9150249 }, + { "lat": 40.8456484, "lon": -73.9148688 }, + { "lat": 40.8456704, "lon": -73.9148527 }, + { "lat": 40.8456593, "lon": -73.9148258 }, + { "lat": 40.8455861, "lon": -73.9148815 }, + { "lat": 40.8455715, "lon": -73.9151215 }, + { "lat": 40.8455830, "lon": -73.9151286 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1109226770, + "bounds": { + "minlat": 40.7568056, + "minlon": -73.9407096, + "maxlat": 40.7569858, + "maxlon": -73.9403602 + }, + "nodes": [ + 10093644995, + 10093644997, + 10093644998 + ], + "geometry": [ + { "lat": 40.7568056, "lon": -73.9407096 }, + { "lat": 40.7569858, "lon": -73.9405327 }, + { "lat": 40.7568951, "lon": -73.9403602 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1109226771, + "bounds": { + "minlat": 40.7566281, + "minlon": -73.9407751, + "maxlat": 40.7567298, + "maxlon": -73.9406057 + }, + "nodes": [ + 10093644999, + 10093645000 + ], + "geometry": [ + { "lat": 40.7566281, "lon": -73.9406057 }, + { "lat": 40.7567298, "lon": -73.9407751 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1109226772, + "bounds": { + "minlat": 40.7567298, + "minlon": -73.9407751, + "maxlat": 40.7568056, + "maxlon": -73.9407096 + }, + "nodes": [ + 10093645000, + 10093644995 + ], + "geometry": [ + { "lat": 40.7567298, "lon": -73.9407751 }, + { "lat": 40.7568056, "lon": -73.9407096 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1109542392, + "bounds": { + "minlat": 40.7131084, + "minlon": -73.9516294, + "maxlat": 40.7140670, + "maxlon": -73.9514517 + }, + "nodes": [ + 42520585, + 42488313, + 9779533043, + 42484200 + ], + "geometry": [ + { "lat": 40.7131084, "lon": -73.9514517 }, + { "lat": 40.7138240, "lon": -73.9515907 }, + { "lat": 40.7139882, "lon": -73.9516210 }, + { "lat": 40.7140670, "lon": -73.9516294 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1109630246, + "bounds": { + "minlat": 40.8532924, + "minlon": -73.9345044, + "maxlat": 40.8537358, + "maxlon": -73.9339676 + }, + "nodes": [ + 10151452100, + 10151452103, + 10151452105, + 10151452101, + 10151509621, + 10151509619, + 10151509617, + 10151452115, + 10151452107, + 10151452104, + 10151452102 + ], + "geometry": [ + { "lat": 40.8536407, "lon": -73.9339676 }, + { "lat": 40.8536828, "lon": -73.9341046 }, + { "lat": 40.8536906, "lon": -73.9341300 }, + { "lat": 40.8537358, "lon": -73.9342772 }, + { "lat": 40.8536703, "lon": -73.9343107 }, + { "lat": 40.8535991, "lon": -73.9343472 }, + { "lat": 40.8535313, "lon": -73.9343819 }, + { "lat": 40.8534587, "lon": -73.9344187 }, + { "lat": 40.8534054, "lon": -73.9344465 }, + { "lat": 40.8533580, "lon": -73.9344708 }, + { "lat": 40.8532924, "lon": -73.9345044 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630247, + "bounds": { + "minlat": 40.8533582, + "minlon": -73.9344465, + "maxlat": 40.8536906, + "maxlon": -73.9341300 + }, + "nodes": [ + 10151452105, + 10151509620, + 10151509618, + 10151452112, + 10151452116, + 10151452114, + 10151452109, + 10151452106, + 10151452107 + ], + "geometry": [ + { "lat": 40.8536906, "lon": -73.9341300 }, + { "lat": 40.8536266, "lon": -73.9341620 }, + { "lat": 40.8535556, "lon": -73.9341970 }, + { "lat": 40.8535329, "lon": -73.9342071 }, + { "lat": 40.8534857, "lon": -73.9342310 }, + { "lat": 40.8534140, "lon": -73.9342658 }, + { "lat": 40.8533889, "lon": -73.9342776 }, + { "lat": 40.8533582, "lon": -73.9342926 }, + { "lat": 40.8534054, "lon": -73.9344465 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630248, + "bounds": { + "minlat": 40.8533423, + "minlon": -73.9342776, + "maxlat": 40.8533889, + "maxlon": -73.9341202 + }, + "nodes": [ + 10151452108, + 10151452110, + 10151452109 + ], + "geometry": [ + { "lat": 40.8533423, "lon": -73.9341202 }, + { "lat": 40.8533834, "lon": -73.9342593 }, + { "lat": 40.8533889, "lon": -73.9342776 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630249, + "bounds": { + "minlat": 40.8534888, + "minlon": -73.9342071, + "maxlat": 40.8535329, + "maxlon": -73.9340453 + }, + "nodes": [ + 10151452111, + 10151452113, + 10151452112 + ], + "geometry": [ + { "lat": 40.8534888, "lon": -73.9340453 }, + { "lat": 40.8535269, "lon": -73.9341852 }, + { "lat": 40.8535329, "lon": -73.9342071 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630250, + "bounds": { + "minlat": 40.8534224, + "minlon": -73.9343755, + "maxlat": 40.8534458, + "maxlon": -73.9342972 + }, + "nodes": [ + 10151509629, + 10151509628 + ], + "geometry": [ + { "lat": 40.8534224, "lon": -73.9342972 }, + { "lat": 40.8534458, "lon": -73.9343755 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630251, + "bounds": { + "minlat": 40.8534950, + "minlon": -73.9343383, + "maxlat": 40.8535182, + "maxlon": -73.9342599 + }, + "nodes": [ + 10151509627, + 10151509626 + ], + "geometry": [ + { "lat": 40.8534950, "lon": -73.9342599 }, + { "lat": 40.8535182, "lon": -73.9343383 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630252, + "bounds": { + "minlat": 40.8535637, + "minlon": -73.9343030, + "maxlat": 40.8535869, + "maxlon": -73.9342246 + }, + "nodes": [ + 10151509625, + 10151509624 + ], + "geometry": [ + { "lat": 40.8535637, "lon": -73.9342246 }, + { "lat": 40.8535869, "lon": -73.9343030 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630253, + "bounds": { + "minlat": 40.8536343, + "minlon": -73.9342668, + "maxlat": 40.8536571, + "maxlon": -73.9341883 + }, + "nodes": [ + 10151509623, + 10151509622 + ], + "geometry": [ + { "lat": 40.8536343, "lon": -73.9341883 }, + { "lat": 40.8536571, "lon": -73.9342668 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630254, + "bounds": { + "minlat": 40.8536571, + "minlon": -73.9343107, + "maxlat": 40.8536703, + "maxlon": -73.9342668 + }, + "nodes": [ + 10151509622, + 10151509621 + ], + "geometry": [ + { "lat": 40.8536571, "lon": -73.9342668 }, + { "lat": 40.8536703, "lon": -73.9343107 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630255, + "bounds": { + "minlat": 40.8536266, + "minlon": -73.9341883, + "maxlat": 40.8536343, + "maxlon": -73.9341620 + }, + "nodes": [ + 10151509620, + 10151509623 + ], + "geometry": [ + { "lat": 40.8536266, "lon": -73.9341620 }, + { "lat": 40.8536343, "lon": -73.9341883 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630256, + "bounds": { + "minlat": 40.8535869, + "minlon": -73.9343472, + "maxlat": 40.8535991, + "maxlon": -73.9343030 + }, + "nodes": [ + 10151509624, + 10151509619 + ], + "geometry": [ + { "lat": 40.8535869, "lon": -73.9343030 }, + { "lat": 40.8535991, "lon": -73.9343472 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630257, + "bounds": { + "minlat": 40.8535556, + "minlon": -73.9342246, + "maxlat": 40.8535637, + "maxlon": -73.9341970 + }, + "nodes": [ + 10151509618, + 10151509625 + ], + "geometry": [ + { "lat": 40.8535556, "lon": -73.9341970 }, + { "lat": 40.8535637, "lon": -73.9342246 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630258, + "bounds": { + "minlat": 40.8535182, + "minlon": -73.9343819, + "maxlat": 40.8535313, + "maxlon": -73.9343383 + }, + "nodes": [ + 10151509626, + 10151509617 + ], + "geometry": [ + { "lat": 40.8535182, "lon": -73.9343383 }, + { "lat": 40.8535313, "lon": -73.9343819 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630259, + "bounds": { + "minlat": 40.8534857, + "minlon": -73.9342599, + "maxlat": 40.8534950, + "maxlon": -73.9342310 + }, + "nodes": [ + 10151452116, + 10151509627 + ], + "geometry": [ + { "lat": 40.8534857, "lon": -73.9342310 }, + { "lat": 40.8534950, "lon": -73.9342599 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630260, + "bounds": { + "minlat": 40.8534458, + "minlon": -73.9344187, + "maxlat": 40.8534587, + "maxlon": -73.9343755 + }, + "nodes": [ + 10151509628, + 10151452115 + ], + "geometry": [ + { "lat": 40.8534458, "lon": -73.9343755 }, + { "lat": 40.8534587, "lon": -73.9344187 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109630261, + "bounds": { + "minlat": 40.8534140, + "minlon": -73.9342972, + "maxlat": 40.8534224, + "maxlon": -73.9342658 + }, + "nodes": [ + 10151452114, + 10151509629 + ], + "geometry": [ + { "lat": 40.8534140, "lon": -73.9342658 }, + { "lat": 40.8534224, "lon": -73.9342972 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109982723, + "bounds": { + "minlat": 40.8062374, + "minlon": -73.9150064, + "maxlat": 40.8065836, + "maxlon": -73.9147724 + }, + "nodes": [ + 10154430609, + 10154430614, + 10154430612, + 10154430610, + 10154430611 + ], + "geometry": [ + { "lat": 40.8065836, "lon": -73.9148325 }, + { "lat": 40.8065165, "lon": -73.9148791 }, + { "lat": 40.8064844, "lon": -73.9149014 }, + { "lat": 40.8063333, "lon": -73.9150064 }, + { "lat": 40.8062374, "lon": -73.9147724 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1109982724, + "bounds": { + "minlat": 40.8063742, + "minlon": -73.9149014, + "maxlat": 40.8064844, + "maxlon": -73.9146402 + }, + "nodes": [ + 10154430612, + 10154430613 + ], + "geometry": [ + { "lat": 40.8064844, "lon": -73.9149014 }, + { "lat": 40.8063742, "lon": -73.9146402 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1110192138, + "bounds": { + "minlat": 40.8565441, + "minlon": -73.9736185, + "maxlat": 40.8570287, + "maxlon": -73.9729550 + }, + "nodes": [ + 299121891, + 13756544966, + 7922003523, + 13754021065, + 7922003529, + 13754021063, + 299121905 + ], + "geometry": [ + { "lat": 40.8570287, "lon": -73.9736185 }, + { "lat": 40.8569752, "lon": -73.9735244 }, + { "lat": 40.8569321, "lon": -73.9734529 }, + { "lat": 40.8568839, "lon": -73.9733780 }, + { "lat": 40.8568352, "lon": -73.9733054 }, + { "lat": 40.8567777, "lon": -73.9732207 }, + { "lat": 40.8565441, "lon": -73.9729550 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "1", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1110453976, + "bounds": { + "minlat": 40.8806312, + "minlon": -73.9191149, + "maxlat": 40.8871264, + "maxlon": -73.9122694 + }, + "nodes": [ + 42720202, + 1991938253, + 11250077546, + 1581489810, + 1581489798, + 2520488893, + 1581489806, + 1581489800, + 42747587, + 1581489794, + 1581489741, + 1581489832, + 1581489782, + 1581489707, + 1581489816, + 2520457321, + 721834112, + 1581489717, + 1581489762, + 1581489680, + 1581489746, + 1581489740, + 5762032508, + 42748877, + 5762032509, + 2520449224, + 2520449209, + 2520449216, + 2520449200, + 2520449195, + 42763390, + 2520287797, + 2520287870, + 2520287781, + 2520287767, + 42746760, + 2520287787, + 13701271504, + 2520287815, + 42759296, + 721834121, + 12321483875, + 2520287833, + 42763385, + 2532396910, + 374457769, + 2520287912, + 374457762, + 2520287805, + 374457757, + 2520287871, + 2520361781, + 374457751, + 5762032514, + 2520287889 + ], + "geometry": [ + { "lat": 40.8871264, "lon": -73.9122694 }, + { "lat": 40.8869925, "lon": -73.9123536 }, + { "lat": 40.8867829, "lon": -73.9125087 }, + { "lat": 40.8867300, "lon": -73.9125478 }, + { "lat": 40.8865839, "lon": -73.9126660 }, + { "lat": 40.8864893, "lon": -73.9127435 }, + { "lat": 40.8864416, "lon": -73.9127851 }, + { "lat": 40.8863119, "lon": -73.9128981 }, + { "lat": 40.8861748, "lon": -73.9130304 }, + { "lat": 40.8860939, "lon": -73.9131065 }, + { "lat": 40.8860304, "lon": -73.9131633 }, + { "lat": 40.8859384, "lon": -73.9132652 }, + { "lat": 40.8858137, "lon": -73.9134013 }, + { "lat": 40.8856800, "lon": -73.9135600 }, + { "lat": 40.8855617, "lon": -73.9137098 }, + { "lat": 40.8854453, "lon": -73.9138552 }, + { "lat": 40.8853819, "lon": -73.9139345 }, + { "lat": 40.8852486, "lon": -73.9141126 }, + { "lat": 40.8851225, "lon": -73.9142732 }, + { "lat": 40.8849991, "lon": -73.9144372 }, + { "lat": 40.8848745, "lon": -73.9146061 }, + { "lat": 40.8847111, "lon": -73.9148183 }, + { "lat": 40.8846996, "lon": -73.9148310 }, + { "lat": 40.8846236, "lon": -73.9149146 }, + { "lat": 40.8845651, "lon": -73.9149692 }, + { "lat": 40.8844798, "lon": -73.9150489 }, + { "lat": 40.8843337, "lon": -73.9151688 }, + { "lat": 40.8841325, "lon": -73.9153084 }, + { "lat": 40.8839385, "lon": -73.9154218 }, + { "lat": 40.8837620, "lon": -73.9155120 }, + { "lat": 40.8836060, "lon": -73.9155760 }, + { "lat": 40.8833844, "lon": -73.9156476 }, + { "lat": 40.8832451, "lon": -73.9157067 }, + { "lat": 40.8830909, "lon": -73.9157924 }, + { "lat": 40.8828432, "lon": -73.9159677 }, + { "lat": 40.8825960, "lon": -73.9161687 }, + { "lat": 40.8824194, "lon": -73.9163407 }, + { "lat": 40.8824147, "lon": -73.9163459 }, + { "lat": 40.8820745, "lon": -73.9167185 }, + { "lat": 40.8815009, "lon": -73.9173760 }, + { "lat": 40.8811593, "lon": -73.9177666 }, + { "lat": 40.8809628, "lon": -73.9179963 }, + { "lat": 40.8808597, "lon": -73.9181168 }, + { "lat": 40.8807275, "lon": -73.9182722 }, + { "lat": 40.8806943, "lon": -73.9183105 }, + { "lat": 40.8806407, "lon": -73.9184301 }, + { "lat": 40.8806312, "lon": -73.9184913 }, + { "lat": 40.8806313, "lon": -73.9185740 }, + { "lat": 40.8806430, "lon": -73.9186743 }, + { "lat": 40.8806710, "lon": -73.9187743 }, + { "lat": 40.8807026, "lon": -73.9188614 }, + { "lat": 40.8807347, "lon": -73.9189260 }, + { "lat": 40.8807664, "lon": -73.9189877 }, + { "lat": 40.8807840, "lon": -73.9190149 }, + { "lat": 40.8808487, "lon": -73.9191149 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Henry Hudson Parkway West", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "parking:lane:left": "no", + "parking:lane:right": "parallel", + "parking:lane:right:parallel": "on_street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Henry Hudson", + "tiger:name_base_1": "Riverdale", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Pky", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10471", + "tiger:zip_right": "10471" + } +}, +{ + "type": "way", + "id": 1110659290, + "bounds": { + "minlat": 40.8667088, + "minlon": -73.9995247, + "maxlat": 40.8667541, + "maxlon": -73.9992902 + }, + "nodes": [ + 2468214184, + 10940838078, + 2468214188, + 10160745187, + 10940838082, + 2468214101 + ], + "geometry": [ + { "lat": 40.8667088, "lon": -73.9992902 }, + { "lat": 40.8667250, "lon": -73.9993355 }, + { "lat": 40.8667385, "lon": -73.9993861 }, + { "lat": 40.8667483, "lon": -73.9994345 }, + { "lat": 40.8667528, "lon": -73.9994781 }, + { "lat": 40.8667541, "lon": -73.9995247 } + ], + "tags": { + "highway": "tertiary", + "name": "Challenger Road" + } +}, +{ + "type": "way", + "id": 1110659291, + "bounds": { + "minlat": 40.8667541, + "minlon": -74.0000352, + "maxlat": 40.8667607, + "maxlon": -73.9995247 + }, + "nodes": [ + 2468214101, + 10160745186 + ], + "geometry": [ + { "lat": 40.8667541, "lon": -73.9995247 }, + { "lat": 40.8667607, "lon": -74.0000352 } + ], + "tags": { + "bridge": "yes", + "bridge:structure": "arch", + "highway": "tertiary", + "layer": "1", + "name": "Challenger Road" + } +}, +{ + "type": "way", + "id": 1110659671, + "bounds": { + "minlat": 40.7856525, + "minlon": -73.9843129, + "maxlat": 40.7860085, + "maxlon": -73.9840606 + }, + "nodes": [ + 10160790012, + 2329911457, + 10160790011, + 10160790010, + 10160790009, + 10160790008, + 10160790007, + 10160790006, + 10160790005, + 10160789942, + 10160789943, + 10160789944, + 10160789945, + 10160789946, + 10160789947, + 10160789948, + 10160790027, + 10160664824, + 10160790026, + 10160790025, + 10160790024, + 10160790017, + 10160790018, + 10160790019, + 10160790020, + 10160790021, + 10160790023, + 10160790022, + 10160790013, + 10160790012 + ], + "geometry": [ + { "lat": 40.7859734, "lon": -73.9843129 }, + { "lat": 40.7859575, "lon": -73.9842877 }, + { "lat": 40.7859332, "lon": -73.9842551 }, + { "lat": 40.7859098, "lon": -73.9842236 }, + { "lat": 40.7858843, "lon": -73.9841994 }, + { "lat": 40.7858533, "lon": -73.9841812 }, + { "lat": 40.7858258, "lon": -73.9841678 }, + { "lat": 40.7857958, "lon": -73.9841570 }, + { "lat": 40.7857643, "lon": -73.9841525 }, + { "lat": 40.7857363, "lon": -73.9841503 }, + { "lat": 40.7857198, "lon": -73.9841463 }, + { "lat": 40.7857004, "lon": -73.9841368 }, + { "lat": 40.7856854, "lon": -73.9841269 }, + { "lat": 40.7856692, "lon": -73.9841103 }, + { "lat": 40.7856593, "lon": -73.9840937 }, + { "lat": 40.7856525, "lon": -73.9840784 }, + { "lat": 40.7856664, "lon": -73.9840683 }, + { "lat": 40.7856773, "lon": -73.9840606 }, + { "lat": 40.7856926, "lon": -73.9840817 }, + { "lat": 40.7857196, "lon": -73.9840941 }, + { "lat": 40.7857474, "lon": -73.9840965 }, + { "lat": 40.7857916, "lon": -73.9841023 }, + { "lat": 40.7858254, "lon": -73.9841124 }, + { "lat": 40.7858579, "lon": -73.9841266 }, + { "lat": 40.7858955, "lon": -73.9841463 }, + { "lat": 40.7859276, "lon": -73.9841689 }, + { "lat": 40.7859582, "lon": -73.9842023 }, + { "lat": 40.7859850, "lon": -73.9842384 }, + { "lat": 40.7860085, "lon": -73.9842793 }, + { "lat": 40.7859734, "lon": -73.9843129 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1110659672, + "bounds": { + "minlat": 40.7854558, + "minlon": -73.9846429, + "maxlat": 40.7855532, + "maxlon": -73.9841595 + }, + "nodes": [ + 10160664913, + 10160789924, + 10160789925, + 10160789926, + 10160789927, + 10160789928, + 10160789929, + 10160789930, + 10160789931, + 10160789932, + 10160789933, + 10160789934, + 10160789935, + 10160664825, + 10160791186, + 10160789941, + 10160789940, + 10160789939, + 10160789938, + 10160789937, + 10160789936, + 10160789923, + 10160789922, + 10160789921, + 10160789920, + 10160789919, + 10160789918, + 10160789917, + 10160664916, + 10160664915, + 10160664914, + 1584183231, + 10160664913 + ], + "geometry": [ + { "lat": 40.7855190, "lon": -73.9846268 }, + { "lat": 40.7854811, "lon": -73.9846429 }, + { "lat": 40.7854707, "lon": -73.9846070 }, + { "lat": 40.7854618, "lon": -73.9845679 }, + { "lat": 40.7854568, "lon": -73.9845222 }, + { "lat": 40.7854558, "lon": -73.9844722 }, + { "lat": 40.7854600, "lon": -73.9844181 }, + { "lat": 40.7854686, "lon": -73.9843677 }, + { "lat": 40.7854818, "lon": -73.9843224 }, + { "lat": 40.7854975, "lon": -73.9842772 }, + { "lat": 40.7855078, "lon": -73.9842471 }, + { "lat": 40.7855155, "lon": -73.9842179 }, + { "lat": 40.7855178, "lon": -73.9841956 }, + { "lat": 40.7855137, "lon": -73.9841783 }, + { "lat": 40.7855265, "lon": -73.9841691 }, + { "lat": 40.7855398, "lon": -73.9841595 }, + { "lat": 40.7855479, "lon": -73.9841833 }, + { "lat": 40.7855519, "lon": -73.9842037 }, + { "lat": 40.7855532, "lon": -73.9842253 }, + { "lat": 40.7855511, "lon": -73.9842491 }, + { "lat": 40.7855445, "lon": -73.9842736 }, + { "lat": 40.7855378, "lon": -73.9842909 }, + { "lat": 40.7855267, "lon": -73.9843201 }, + { "lat": 40.7855143, "lon": -73.9843550 }, + { "lat": 40.7855050, "lon": -73.9843977 }, + { "lat": 40.7854990, "lon": -73.9844290 }, + { "lat": 40.7854956, "lon": -73.9844604 }, + { "lat": 40.7854952, "lon": -73.9844890 }, + { "lat": 40.7854956, "lon": -73.9845181 }, + { "lat": 40.7854990, "lon": -73.9845483 }, + { "lat": 40.7855054, "lon": -73.9845775 }, + { "lat": 40.7855113, "lon": -73.9846058 }, + { "lat": 40.7855190, "lon": -73.9846268 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1110659766, + "bounds": { + "minlat": 40.7815062, + "minlon": -73.9868476, + "maxlat": 40.7816278, + "maxlon": -73.9867312 + }, + "nodes": [ + 10160790469, + 61269797 + ], + "geometry": [ + { "lat": 40.7815062, "lon": -73.9868476 }, + { "lat": 40.7816278, "lon": -73.9867312 } + ], + "tags": { + "alt_name": "12th Avenue", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "West Side Highway", + "name:ru": "Вест-Сайд-Хайвей", + "not:name": "Henry Hudson Parkway", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "source:name": "https://en.wikipedia.org/wiki/West_Side_Highway" + } +}, +{ + "type": "way", + "id": 1110659869, + "bounds": { + "minlat": 40.7858438, + "minlon": -73.9847316, + "maxlat": 40.7859492, + "maxlon": -73.9844232 + }, + "nodes": [ + 6996574447, + 6996574549, + 9168918165, + 2837768961, + 6996574476, + 62912068, + 5527646046, + 62912067 + ], + "geometry": [ + { "lat": 40.7859459, "lon": -73.9844232 }, + { "lat": 40.7859492, "lon": -73.9844796 }, + { "lat": 40.7859462, "lon": -73.9845280 }, + { "lat": 40.7859387, "lon": -73.9845707 }, + { "lat": 40.7859245, "lon": -73.9846152 }, + { "lat": 40.7859055, "lon": -73.9846589 }, + { "lat": 40.7858789, "lon": -73.9846995 }, + { "lat": 40.7858438, "lon": -73.9847316 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "no", + "highway": "secondary", + "junction": "roundabout", + "lanes": "1", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1110902876, + "bounds": { + "minlat": 40.7298427, + "minlon": -73.9273923, + "maxlat": 40.7299387, + "maxlon": -73.9271956 + }, + "nodes": [ + 194585952, + 13250524397, + 11740106046, + 10164025293 + ], + "geometry": [ + { "lat": 40.7299387, "lon": -73.9273923 }, + { "lat": 40.7298972, "lon": -73.9273073 }, + { "lat": 40.7298782, "lon": -73.9272683 }, + { "lat": 40.7298427, "lon": -73.9271956 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1111038396, + "bounds": { + "minlat": 40.8741462, + "minlon": -73.9872049, + "maxlat": 40.8747589, + "maxlon": -73.9852520 + }, + "nodes": [ + 5691951845, + 10234828463, + 10234828498, + 10234828464, + 10234828465, + 5691951857, + 10234828466, + 10234828494, + 5700932769, + 10234828500, + 10234933913, + 10234828501, + 10234933912, + 10234828562, + 10234828551, + 10234828482, + 10234828480, + 7307803370, + 10234828478, + 10234828476, + 10234828224, + 103203324 + ], + "geometry": [ + { "lat": 40.8747589, "lon": -73.9872049 }, + { "lat": 40.8747339, "lon": -73.9872001 }, + { "lat": 40.8747040, "lon": -73.9871820 }, + { "lat": 40.8746832, "lon": -73.9871605 }, + { "lat": 40.8746639, "lon": -73.9871264 }, + { "lat": 40.8746518, "lon": -73.9870610 }, + { "lat": 40.8746553, "lon": -73.9870077 }, + { "lat": 40.8746690, "lon": -73.9869621 }, + { "lat": 40.8746838, "lon": -73.9868590 }, + { "lat": 40.8746518, "lon": -73.9867631 }, + { "lat": 40.8746400, "lon": -73.9867278 }, + { "lat": 40.8746054, "lon": -73.9866240 }, + { "lat": 40.8745935, "lon": -73.9865857 }, + { "lat": 40.8745799, "lon": -73.9865475 }, + { "lat": 40.8744527, "lon": -73.9861700 }, + { "lat": 40.8744334, "lon": -73.9861090 }, + { "lat": 40.8743892, "lon": -73.9859743 }, + { "lat": 40.8743427, "lon": -73.9858357 }, + { "lat": 40.8742974, "lon": -73.9856991 }, + { "lat": 40.8742389, "lon": -73.9855202 }, + { "lat": 40.8741924, "lon": -73.9853829 }, + { "lat": 40.8741462, "lon": -73.9852520 } + ], + "tags": { + "highway": "residential", + "name": "Lakeview Avenue", + "noexit": "yes", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lakeview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1111042074, + "bounds": { + "minlat": 40.8661417, + "minlon": -73.9871834, + "maxlat": 40.8673190, + "maxlon": -73.9862400 + }, + "nodes": [ + 103143501, + 10115605023, + 103143503 + ], + "geometry": [ + { "lat": 40.8661417, "lon": -73.9871834 }, + { "lat": 40.8672431, "lon": -73.9863029 }, + { "lat": 40.8673190, "lon": -73.9862400 } + ], + "tags": { + "highway": "residential", + "name": "Coover Street" + } +}, +{ + "type": "way", + "id": 1111259088, + "bounds": { + "minlat": 40.8077784, + "minlon": -73.9256598, + "maxlat": 40.8080050, + "maxlon": -73.9254033 + }, + "nodes": [ + 10168258154, + 11427300209, + 10168258157, + 10168258155, + 10168258156 + ], + "geometry": [ + { "lat": 40.8077784, "lon": -73.9256598 }, + { "lat": 40.8078734, "lon": -73.9255901 }, + { "lat": 40.8079000, "lon": -73.9255706 }, + { "lat": 40.8080050, "lon": -73.9254936 }, + { "lat": 40.8079678, "lon": -73.9254033 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111263703, + "bounds": { + "minlat": 40.7410353, + "minlon": -74.0086615, + "maxlat": 40.7413095, + "maxlon": -74.0083420 + }, + "nodes": [ + 10168276337, + 13684007660, + 10168276338, + 10168276349, + 10168276340 + ], + "geometry": [ + { "lat": 40.7413095, "lon": -74.0083420 }, + { "lat": 40.7412496, "lon": -74.0083834 }, + { "lat": 40.7412373, "lon": -74.0083924 }, + { "lat": 40.7412064, "lon": -74.0085586 }, + { "lat": 40.7410353, "lon": -74.0086615 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1111263704, + "bounds": { + "minlat": 40.7406327, + "minlon": -74.0087319, + "maxlat": 40.7409995, + "maxlon": -74.0086365 + }, + "nodes": [ + 10168276341, + 10168276348, + 10168276346, + 10168276347 + ], + "geometry": [ + { "lat": 40.7409995, "lon": -74.0086365 }, + { "lat": 40.7407160, "lon": -74.0086746 }, + { "lat": 40.7406938, "lon": -74.0086897 }, + { "lat": 40.7406327, "lon": -74.0087319 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111263820, + "bounds": { + "minlat": 40.8316697, + "minlon": -73.9318029, + "maxlat": 40.8316959, + "maxlon": -73.9316659 + }, + "nodes": [ + 10168291860, + 10168291861 + ], + "geometry": [ + { "lat": 40.8316959, "lon": -73.9318029 }, + { "lat": 40.8316697, "lon": -73.9316659 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111264626, + "bounds": { + "minlat": 40.8045453, + "minlon": -73.9218639, + "maxlat": 40.8047348, + "maxlon": -73.9215608 + }, + "nodes": [ + 10168305437, + 10168305448, + 10168305445, + 10168305438, + 10168305439, + 10168305447, + 10168305450, + 10168305443, + 10168305440, + 10168305437 + ], + "geometry": [ + { "lat": 40.8046383, "lon": -73.9215608 }, + { "lat": 40.8046715, "lon": -73.9216443 }, + { "lat": 40.8047061, "lon": -73.9217284 }, + { "lat": 40.8047348, "lon": -73.9218040 }, + { "lat": 40.8046438, "lon": -73.9218639 }, + { "lat": 40.8046113, "lon": -73.9217840 }, + { "lat": 40.8045798, "lon": -73.9217063 }, + { "lat": 40.8045634, "lon": -73.9216659 }, + { "lat": 40.8045453, "lon": -73.9216211 }, + { "lat": 40.8046383, "lon": -73.9215608 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111264627, + "bounds": { + "minlat": 40.8045828, + "minlon": -73.9215608, + "maxlat": 40.8046383, + "maxlon": -73.9214130 + }, + "nodes": [ + 10168305437, + 11427300206, + 10168305441 + ], + "geometry": [ + { "lat": 40.8046383, "lon": -73.9215608 }, + { "lat": 40.8046243, "lon": -73.9215236 }, + { "lat": 40.8045828, "lon": -73.9214130 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111264628, + "bounds": { + "minlat": 40.8045117, + "minlon": -73.9219613, + "maxlat": 40.8046438, + "maxlon": -73.9218639 + }, + "nodes": [ + 10168305439, + 11427299919, + 10168305442 + ], + "geometry": [ + { "lat": 40.8046438, "lon": -73.9218639 }, + { "lat": 40.8046167, "lon": -73.9218839 }, + { "lat": 40.8045117, "lon": -73.9219613 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111264629, + "bounds": { + "minlat": 40.8044258, + "minlon": -73.9217600, + "maxlat": 40.8045634, + "maxlon": -73.9216659 + }, + "nodes": [ + 10168305443, + 11427299918, + 10168305444 + ], + "geometry": [ + { "lat": 40.8045634, "lon": -73.9216659 }, + { "lat": 40.8045332, "lon": -73.9216866 }, + { "lat": 40.8044258, "lon": -73.9217600 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111264630, + "bounds": { + "minlat": 40.8046373, + "minlon": -73.9217694, + "maxlat": 40.8046785, + "maxlon": -73.9217461 + }, + "nodes": [ + 10168305446, + 10168305451 + ], + "geometry": [ + { "lat": 40.8046785, "lon": -73.9217461 }, + { "lat": 40.8046373, "lon": -73.9217694 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111264631, + "bounds": { + "minlat": 40.8046026, + "minlon": -73.9216913, + "maxlat": 40.8046438, + "maxlon": -73.9216643 + }, + "nodes": [ + 10168305449, + 10168305452 + ], + "geometry": [ + { "lat": 40.8046438, "lon": -73.9216643 }, + { "lat": 40.8046026, "lon": -73.9216913 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111264632, + "bounds": { + "minlat": 40.8046785, + "minlon": -73.9217461, + "maxlat": 40.8047061, + "maxlon": -73.9217284 + }, + "nodes": [ + 10168305445, + 10168305446 + ], + "geometry": [ + { "lat": 40.8047061, "lon": -73.9217284 }, + { "lat": 40.8046785, "lon": -73.9217461 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111264633, + "bounds": { + "minlat": 40.8046113, + "minlon": -73.9217840, + "maxlat": 40.8046373, + "maxlon": -73.9217694 + }, + "nodes": [ + 10168305451, + 10168305447 + ], + "geometry": [ + { "lat": 40.8046373, "lon": -73.9217694 }, + { "lat": 40.8046113, "lon": -73.9217840 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111264634, + "bounds": { + "minlat": 40.8046438, + "minlon": -73.9216643, + "maxlat": 40.8046715, + "maxlon": -73.9216443 + }, + "nodes": [ + 10168305448, + 10168305449 + ], + "geometry": [ + { "lat": 40.8046715, "lon": -73.9216443 }, + { "lat": 40.8046438, "lon": -73.9216643 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111264635, + "bounds": { + "minlat": 40.8045798, + "minlon": -73.9217063, + "maxlat": 40.8046026, + "maxlon": -73.9216913 + }, + "nodes": [ + 10168305452, + 10168305450 + ], + "geometry": [ + { "lat": 40.8046026, "lon": -73.9216913 }, + { "lat": 40.8045798, "lon": -73.9217063 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111264636, + "bounds": { + "minlat": 40.8046383, + "minlon": -73.9215608, + "maxlat": 40.8047564, + "maxlon": -73.9214848 + }, + "nodes": [ + 10168305437, + 10168305453 + ], + "geometry": [ + { "lat": 40.8046383, "lon": -73.9215608 }, + { "lat": 40.8047564, "lon": -73.9214848 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111264737, + "bounds": { + "minlat": 40.7166439, + "minlon": -73.9760211, + "maxlat": 40.7169151, + "maxlon": -73.9757168 + }, + "nodes": [ + 10168307451, + 10168307452, + 10168307453, + 10168307454, + 10168307455, + 10168307456, + 10168307457, + 10168307458, + 10168307459 + ], + "geometry": [ + { "lat": 40.7169054, "lon": -73.9757168 }, + { "lat": 40.7169151, "lon": -73.9758108 }, + { "lat": 40.7169031, "lon": -73.9759043 }, + { "lat": 40.7168770, "lon": -73.9759855 }, + { "lat": 40.7168606, "lon": -73.9760170 }, + { "lat": 40.7168360, "lon": -73.9760211 }, + { "lat": 40.7167521, "lon": -73.9759592 }, + { "lat": 40.7166999, "lon": -73.9759053 }, + { "lat": 40.7166439, "lon": -73.9758352 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111267448, + "bounds": { + "minlat": 40.7525630, + "minlon": -74.0041852, + "maxlat": 40.7527782, + "maxlon": -74.0039477 + }, + "nodes": [ + 10168324134, + 11512413103, + 10168324137, + 11512413102, + 10168324135, + 11512413104, + 10168324138, + 11512413105, + 10168324136 + ], + "geometry": [ + { "lat": 40.7525630, "lon": -74.0040305 }, + { "lat": 40.7525907, "lon": -74.0040115 }, + { "lat": 40.7526087, "lon": -74.0039988 }, + { "lat": 40.7526233, "lon": -74.0039884 }, + { "lat": 40.7526811, "lon": -74.0039477 }, + { "lat": 40.7527135, "lon": -74.0040275 }, + { "lat": 40.7527208, "lon": -74.0040457 }, + { "lat": 40.7527334, "lon": -74.0040767 }, + { "lat": 40.7527782, "lon": -74.0041852 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1111289320, + "bounds": { + "minlat": 40.7215886, + "minlon": -73.9869703, + "maxlat": 40.7218757, + "maxlon": -73.9868141 + }, + "nodes": [ + 10168325607, + 10168325608, + 10168325609 + ], + "geometry": [ + { "lat": 40.7215886, "lon": -73.9869523 }, + { "lat": 40.7215946, "lon": -73.9869703 }, + { "lat": 40.7218757, "lon": -73.9868141 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1111289321, + "bounds": { + "minlat": 40.7215364, + "minlon": -73.9869523, + "maxlat": 40.7215886, + "maxlon": -73.9868186 + }, + "nodes": [ + 10168325607, + 10168325611, + 10168325612, + 10168325610, + 10168325604 + ], + "geometry": [ + { "lat": 40.7215886, "lon": -73.9869523 }, + { "lat": 40.7215571, "lon": -73.9869320 }, + { "lat": 40.7215380, "lon": -73.9868678 }, + { "lat": 40.7215364, "lon": -73.9868623 }, + { "lat": 40.7215442, "lon": -73.9868186 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1111289322, + "bounds": { + "minlat": 40.7215058, + "minlon": -73.9868186, + "maxlat": 40.7215442, + "maxlon": -73.9866789 + }, + "nodes": [ + 10168325603, + 10168325614, + 10168325604 + ], + "geometry": [ + { "lat": 40.7215058, "lon": -73.9866789 }, + { "lat": 40.7215376, "lon": -73.9867958 }, + { "lat": 40.7215442, "lon": -73.9868186 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1111289323, + "bounds": { + "minlat": 40.7215442, + "minlon": -73.9869523, + "maxlat": 40.7215937, + "maxlon": -73.9868186 + }, + "nodes": [ + 10168325604, + 10168325605, + 10168325613, + 10168325606, + 10168325607 + ], + "geometry": [ + { "lat": 40.7215442, "lon": -73.9868186 }, + { "lat": 40.7215717, "lon": -73.9868399 }, + { "lat": 40.7215891, "lon": -73.9869003 }, + { "lat": 40.7215937, "lon": -73.9869165 }, + { "lat": 40.7215886, "lon": -73.9869523 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1111319111, + "bounds": { + "minlat": 40.8044117, + "minlon": -73.9177582, + "maxlat": 40.8045975, + "maxlon": -73.9175549 + }, + "nodes": [ + 10168413325, + 13039080740, + 10168413330, + 10168413326, + 10168413327, + 10168413329, + 13039080739, + 10168413328 + ], + "geometry": [ + { "lat": 40.8044117, "lon": -73.9176585 }, + { "lat": 40.8044688, "lon": -73.9176180 }, + { "lat": 40.8045029, "lon": -73.9175938 }, + { "lat": 40.8045577, "lon": -73.9175549 }, + { "lat": 40.8045975, "lon": -73.9176445 }, + { "lat": 40.8045406, "lon": -73.9176872 }, + { "lat": 40.8045090, "lon": -73.9177126 }, + { "lat": 40.8044523, "lon": -73.9177582 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111363560, + "bounds": { + "minlat": 40.7371328, + "minlon": -73.9305699, + "maxlat": 40.7372787, + "maxlon": -73.9301561 + }, + "nodes": [ + 10168482213, + 10743722279, + 10168482214, + 10168482215, + 10168482216 + ], + "geometry": [ + { "lat": 40.7372787, "lon": -73.9305699 }, + { "lat": 40.7372196, "lon": -73.9304973 }, + { "lat": 40.7371867, "lon": -73.9304568 }, + { "lat": 40.7371328, "lon": -73.9302488 }, + { "lat": 40.7372417, "lon": -73.9301561 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111387476, + "bounds": { + "minlat": 40.7519648, + "minlon": -73.9331844, + "maxlat": 40.7524679, + "maxlon": -73.9324814 + }, + "nodes": [ + 10168540996, + 10168540997, + 10168540998, + 10168540999, + 10168541000, + 10168541001 + ], + "geometry": [ + { "lat": 40.7524679, "lon": -73.9324814 }, + { "lat": 40.7524140, "lon": -73.9325284 }, + { "lat": 40.7523826, "lon": -73.9325549 }, + { "lat": 40.7522619, "lon": -73.9328542 }, + { "lat": 40.7520964, "lon": -73.9330649 }, + { "lat": 40.7519648, "lon": -73.9331844 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111516732, + "bounds": { + "minlat": 40.7436104, + "minlon": -73.9905050, + "maxlat": 40.7438668, + "maxlon": -73.9903196 + }, + "nodes": [ + 10169019489, + 10169019490 + ], + "geometry": [ + { "lat": 40.7436104, "lon": -73.9905050 }, + { "lat": 40.7438668, "lon": -73.9903196 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111639554, + "bounds": { + "minlat": 40.7365037, + "minlon": -73.9593262, + "maxlat": 40.7365567, + "maxlon": -73.9592268 + }, + "nodes": [ + 10170251976, + 13026964853, + 10170251975 + ], + "geometry": [ + { "lat": 40.7365037, "lon": -73.9593262 }, + { "lat": 40.7365351, "lon": -73.9592672 }, + { "lat": 40.7365567, "lon": -73.9592268 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1111639555, + "bounds": { + "minlat": 40.7364665, + "minlon": -73.9594460, + "maxlat": 40.7365216, + "maxlon": -73.9593428 + }, + "nodes": [ + 10170251978, + 13026964844, + 10170251977 + ], + "geometry": [ + { "lat": 40.7364665, "lon": -73.9594460 }, + { "lat": 40.7364830, "lon": -73.9594151 }, + { "lat": 40.7365216, "lon": -73.9593428 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1111653271, + "bounds": { + "minlat": 40.7030107, + "minlon": -73.9886641, + "maxlat": 40.7030390, + "maxlon": -73.9885691 + }, + "nodes": [ + 1329106711, + 10170379775 + ], + "geometry": [ + { "lat": 40.7030107, "lon": -73.9886641 }, + { "lat": 40.7030390, "lon": -73.9885691 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1111706621, + "bounds": { + "minlat": 40.7614242, + "minlon": -73.9625040, + "maxlat": 40.7614755, + "maxlon": -73.9623819 + }, + "nodes": [ + 13033168803, + 593300940, + 13033168824 + ], + "geometry": [ + { "lat": 40.7614242, "lon": -73.9623819 }, + { "lat": 40.7614575, "lon": -73.9624612 }, + { "lat": 40.7614755, "lon": -73.9625040 } + ], + "tags": { + "covered": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxheight": "12'10\"", + "maxspeed": "25 mph", + "name": "East 61st Street", + "name:ru": "Восточная 61-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1111727034, + "bounds": { + "minlat": 40.7105323, + "minlon": -73.9277286, + "maxlat": 40.7107446, + "maxlon": -73.9268068 + }, + "nodes": [ + 10171007022, + 13684744705, + 10171007025, + 10171007023, + 10171007024 + ], + "geometry": [ + { "lat": 40.7106729, "lon": -73.9277286 }, + { "lat": 40.7106081, "lon": -73.9276984 }, + { "lat": 40.7105964, "lon": -73.9276924 }, + { "lat": 40.7105323, "lon": -73.9276608 }, + { "lat": 40.7107446, "lon": -73.9268068 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111727035, + "bounds": { + "minlat": 40.7105649, + "minlon": -73.9267201, + "maxlat": 40.7106066, + "maxlon": -73.9265576 + }, + "nodes": [ + 10171007026, + 13684762548, + 10171007029, + 10171007027 + ], + "geometry": [ + { "lat": 40.7106066, "lon": -73.9265576 }, + { "lat": 40.7105838, "lon": -73.9266510 }, + { "lat": 40.7105802, "lon": -73.9266664 }, + { "lat": 40.7105649, "lon": -73.9267201 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111910063, + "bounds": { + "minlat": 40.7006328, + "minlon": -73.9866795, + "maxlat": 40.7006346, + "maxlon": -73.9866358 + }, + "nodes": [ + 10172586222, + 42497724 + ], + "geometry": [ + { "lat": 40.7006346, "lon": -73.9866795 }, + { "lat": 40.7006328, "lon": -73.9866358 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "turn:lanes": "through;right|right" + } +}, +{ + "type": "way", + "id": 1111910064, + "bounds": { + "minlat": 40.7006346, + "minlon": -73.9867783, + "maxlat": 40.7006389, + "maxlon": -73.9866795 + }, + "nodes": [ + 4555926569, + 10722387762, + 10172586222 + ], + "geometry": [ + { "lat": 40.7006389, "lon": -73.9867783 }, + { "lat": 40.7006353, "lon": -73.9866962 }, + { "lat": 40.7006346, "lon": -73.9866795 } + ], + "tags": { + "covered": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "turn:lanes": "through;right|right" + } +}, +{ + "type": "way", + "id": 1111910065, + "bounds": { + "minlat": 40.7002043, + "minlon": -73.9865221, + "maxlat": 40.7002082, + "maxlon": -73.9864414 + }, + "nodes": [ + 10001058424, + 2357946612 + ], + "geometry": [ + { "lat": 40.7002082, "lon": -73.9864414 }, + { "lat": 40.7002043, "lon": -73.9865221 } + ], + "tags": { + "covered": "yes", + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Sands Street", + "name:etymology:wikidata": "Q1708602", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Sands", + "tiger:name_type": "St", + "turn:lanes": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 1111914323, + "bounds": { + "minlat": 40.7024238, + "minlon": -73.9877037, + "maxlat": 40.7024551, + "maxlon": -73.9866885 + }, + "nodes": [ + 6424524888, + 42469193, + 7707712193, + 10726079558, + 2358967539, + 13339698316, + 9805235576, + 42497720 + ], + "geometry": [ + { "lat": 40.7024551, "lon": -73.9877037 }, + { "lat": 40.7024529, "lon": -73.9876313 }, + { "lat": 40.7024514, "lon": -73.9875845 }, + { "lat": 40.7024513, "lon": -73.9875661 }, + { "lat": 40.7024414, "lon": -73.9872590 }, + { "lat": 40.7024407, "lon": -73.9872371 }, + { "lat": 40.7024265, "lon": -73.9867759 }, + { "lat": 40.7024238, "lon": -73.9866885 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Front", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1111914324, + "bounds": { + "minlat": 40.7024551, + "minlon": -73.9881918, + "maxlat": 40.7024701, + "maxlon": -73.9877037 + }, + "nodes": [ + 6424524890, + 10726079548, + 6424524888 + ], + "geometry": [ + { "lat": 40.7024701, "lon": -73.9881918 }, + { "lat": 40.7024553, "lon": -73.9877103 }, + { "lat": 40.7024551, "lon": -73.9877037 } + ], + "tags": { + "covered": "yes", + "cycleway": "shared_lane", + "cycleway:surface": "paving_stones", + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:name_base": "Front", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1111914325, + "bounds": { + "minlat": 40.7015443, + "minlon": -73.9876747, + "maxlat": 40.7015605, + "maxlon": -73.9871947 + }, + "nodes": [ + 10172645856, + 10722370784, + 42469205 + ], + "geometry": [ + { "lat": 40.7015443, "lon": -73.9871947 }, + { "lat": 40.7015579, "lon": -73.9876006 }, + { "lat": 40.7015605, "lon": -73.9876747 } + ], + "tags": { + "covered": "yes", + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "York Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:name_base": "York", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1111914326, + "bounds": { + "minlat": 40.7006389, + "minlon": -73.9867800, + "maxlat": 40.7007984, + "maxlon": -73.9867764 + }, + "nodes": [ + 4555926569, + 10722387753, + 42497722 + ], + "geometry": [ + { "lat": 40.7006389, "lon": -73.9867783 }, + { "lat": 40.7007099, "lon": -73.9867800 }, + { "lat": 40.7007984, "lon": -73.9867764 } + ], + "tags": { + "bicycle": "yes", + "covered": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Jay", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1111951022, + "bounds": { + "minlat": 40.7799769, + "minlon": -73.9747351, + "maxlat": 40.7804842, + "maxlon": -73.9745005 + }, + "nodes": [ + 3916376283, + 8318991977, + 3916376268, + 10172953648, + 3916369293, + 10172953649, + 3916369285, + 10172953650, + 10172953651, + 3916369354, + 10172954149 + ], + "geometry": [ + { "lat": 40.7799769, "lon": -73.9747351 }, + { "lat": 40.7800752, "lon": -73.9746638 }, + { "lat": 40.7802701, "lon": -73.9745295 }, + { "lat": 40.7803027, "lon": -73.9745117 }, + { "lat": 40.7803343, "lon": -73.9745029 }, + { "lat": 40.7803663, "lon": -73.9745005 }, + { "lat": 40.7804013, "lon": -73.9745083 }, + { "lat": 40.7804374, "lon": -73.9745278 }, + { "lat": 40.7804566, "lon": -73.9745483 }, + { "lat": 40.7804717, "lon": -73.9745727 }, + { "lat": 40.7804842, "lon": -73.9746010 } + ], + "tags": { + "access": "private", + "foot": "yes", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1111951023, + "bounds": { + "minlat": 40.7804842, + "minlon": -73.9747493, + "maxlat": 40.7805464, + "maxlon": -73.9746010 + }, + "nodes": [ + 10172954149, + 10172954150 + ], + "geometry": [ + { "lat": 40.7804842, "lon": -73.9746010 }, + { "lat": 40.7805464, "lon": -73.9747493 } + ], + "tags": { + "access": "private", + "foot": "yes", + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "driveway", + "surface": "paving_stones", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1111951093, + "bounds": { + "minlat": 40.7810595, + "minlon": -73.9761055, + "maxlat": 40.7814924, + "maxlon": -73.9752855 + }, + "nodes": [ + 10172954506, + 10172954507, + 10172954522, + 10172954508, + 10172954509, + 10172954510, + 10172954511, + 10172954512, + 10172954513, + 10172954514, + 10172954515, + 10172954516, + 10172954517, + 10172954518, + 10172954519, + 10172954520, + 10172954521 + ], + "geometry": [ + { "lat": 40.7811325, "lon": -73.9761055 }, + { "lat": 40.7810747, "lon": -73.9759577 }, + { "lat": 40.7810713, "lon": -73.9759449 }, + { "lat": 40.7810648, "lon": -73.9759201 }, + { "lat": 40.7810595, "lon": -73.9758655 }, + { "lat": 40.7810607, "lon": -73.9758232 }, + { "lat": 40.7810659, "lon": -73.9757817 }, + { "lat": 40.7810776, "lon": -73.9757525 }, + { "lat": 40.7810939, "lon": -73.9757257 }, + { "lat": 40.7811189, "lon": -73.9756980 }, + { "lat": 40.7814121, "lon": -73.9754652 }, + { "lat": 40.7814645, "lon": -73.9754198 }, + { "lat": 40.7814808, "lon": -73.9753960 }, + { "lat": 40.7814913, "lon": -73.9753699 }, + { "lat": 40.7814924, "lon": -73.9753391 }, + { "lat": 40.7814866, "lon": -73.9753107 }, + { "lat": 40.7814768, "lon": -73.9752855 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1111951212, + "bounds": { + "minlat": 40.7819138, + "minlon": -73.9735038, + "maxlat": 40.7820923, + "maxlon": -73.9732505 + }, + "nodes": [ + 10172955268, + 10172955269, + 10172955270, + 10172955271, + 10172955272, + 10172955273, + 10172955314, + 10172954616 + ], + "geometry": [ + { "lat": 40.7819138, "lon": -73.9735038 }, + { "lat": 40.7819492, "lon": -73.9734790 }, + { "lat": 40.7819770, "lon": -73.9734502 }, + { "lat": 40.7820095, "lon": -73.9734129 }, + { "lat": 40.7820373, "lon": -73.9733726 }, + { "lat": 40.7820583, "lon": -73.9733298 }, + { "lat": 40.7820658, "lon": -73.9733124 }, + { "lat": 40.7820923, "lon": -73.9732505 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1111952949, + "bounds": { + "minlat": 40.7285450, + "minlon": -74.0053218, + "maxlat": 40.7286179, + "maxlon": -74.0045750 + }, + "nodes": [ + 10172950538, + 8307641952, + 42448563 + ], + "geometry": [ + { "lat": 40.7285450, "lon": -74.0045750 }, + { "lat": 40.7286042, "lon": -74.0051725 }, + { "lat": 40.7286179, "lon": -74.0053218 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1111954748, + "bounds": { + "minlat": 40.7127409, + "minlon": -74.0043573, + "maxlat": 40.7128973, + "maxlon": -74.0042063 + }, + "nodes": [ + 9377509596, + 1272562792 + ], + "geometry": [ + { "lat": 40.7127409, "lon": -74.0043573 }, + { "lat": 40.7128973, "lon": -74.0042063 } + ], + "tags": { + "expressway": "yes", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1111965485, + "bounds": { + "minlat": 40.8506957, + "minlon": -73.9171582, + "maxlat": 40.8514304, + "maxlon": -73.9164758 + }, + "nodes": [ + 10173054000, + 13703273462, + 13703273460, + 13703273459, + 13703273458, + 13703273457, + 13703273456, + 13703273455, + 13703273454, + 13703273453, + 13703273452, + 13703273451, + 13703273450 + ], + "geometry": [ + { "lat": 40.8514304, "lon": -73.9164758 }, + { "lat": 40.8513926, "lon": -73.9164837 }, + { "lat": 40.8513201, "lon": -73.9164944 }, + { "lat": 40.8512820, "lon": -73.9164931 }, + { "lat": 40.8512354, "lon": -73.9164776 }, + { "lat": 40.8512019, "lon": -73.9164810 }, + { "lat": 40.8511745, "lon": -73.9164957 }, + { "lat": 40.8511451, "lon": -73.9165380 }, + { "lat": 40.8510203, "lon": -73.9167197 }, + { "lat": 40.8508068, "lon": -73.9170536 }, + { "lat": 40.8507880, "lon": -73.9170892 }, + { "lat": 40.8507560, "lon": -73.9171536 }, + { "lat": 40.8506957, "lon": -73.9171582 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111965486, + "bounds": { + "minlat": 40.8511215, + "minlon": -73.9174038, + "maxlat": 40.8512288, + "maxlon": -73.9172755 + }, + "nodes": [ + 10173054002, + 10173054004, + 13036548033, + 10173054003 + ], + "geometry": [ + { "lat": 40.8511215, "lon": -73.9172755 }, + { "lat": 40.8511667, "lon": -73.9173295 }, + { "lat": 40.8511909, "lon": -73.9173584 }, + { "lat": 40.8512288, "lon": -73.9174038 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1111965487, + "bounds": { + "minlat": 40.8511215, + "minlon": -73.9172755, + "maxlat": 40.8515453, + "maxlon": -73.9165911 + }, + "nodes": [ + 10173054007, + 13703273475, + 10173054005, + 10173054002 + ], + "geometry": [ + { "lat": 40.8515135, "lon": -73.9165911 }, + { "lat": 40.8515453, "lon": -73.9166272 }, + { "lat": 40.8513624, "lon": -73.9169269 }, + { "lat": 40.8511215, "lon": -73.9172755 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1111965488, + "bounds": { + "minlat": 40.8514304, + "minlon": -73.9165911, + "maxlat": 40.8516219, + "maxlon": -73.9163388 + }, + "nodes": [ + 10173054007, + 10173054008, + 13703273474, + 13703273464, + 13703273469, + 13703273472, + 13703273473, + 13703273468, + 13703273467, + 10173054009, + 13703273465, + 13703273471, + 13703273466, + 13703273470, + 10173054000, + 10173054007 + ], + "geometry": [ + { "lat": 40.8515135, "lon": -73.9165911 }, + { "lat": 40.8516057, "lon": -73.9164283 }, + { "lat": 40.8516201, "lon": -73.9163931 }, + { "lat": 40.8516219, "lon": -73.9163767 }, + { "lat": 40.8516180, "lon": -73.9163610 }, + { "lat": 40.8516021, "lon": -73.9163469 }, + { "lat": 40.8515798, "lon": -73.9163388 }, + { "lat": 40.8515625, "lon": -73.9163388 }, + { "lat": 40.8515412, "lon": -73.9163432 }, + { "lat": 40.8515158, "lon": -73.9163575 }, + { "lat": 40.8515049, "lon": -73.9163797 }, + { "lat": 40.8514930, "lon": -73.9164086 }, + { "lat": 40.8514824, "lon": -73.9164367 }, + { "lat": 40.8514608, "lon": -73.9164629 }, + { "lat": 40.8514304, "lon": -73.9164758 }, + { "lat": 40.8515135, "lon": -73.9165911 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111968351, + "bounds": { + "minlat": 40.8348880, + "minlon": -74.0195909, + "maxlat": 40.8353740, + "maxlon": -74.0189699 + }, + "nodes": [ + 10173086635, + 10173086634, + 10173086633, + 10173086630, + 10173086627, + 10173086628, + 10173086629, + 10006078585, + 10173086626 + ], + "geometry": [ + { "lat": 40.8353740, "lon": -74.0194439 }, + { "lat": 40.8351816, "lon": -74.0195546 }, + { "lat": 40.8350180, "lon": -74.0195909 }, + { "lat": 40.8349174, "lon": -74.0195390 }, + { "lat": 40.8348880, "lon": -74.0194844 }, + { "lat": 40.8348920, "lon": -74.0193556 }, + { "lat": 40.8349448, "lon": -74.0191410 }, + { "lat": 40.8349679, "lon": -74.0190787 }, + { "lat": 40.8349190, "lon": -74.0189699 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1111968352, + "bounds": { + "minlat": 40.8353725, + "minlon": -74.0191676, + "maxlat": 40.8357786, + "maxlon": -74.0184872 + }, + "nodes": [ + 10173086631, + 10173086632 + ], + "geometry": [ + { "lat": 40.8357786, "lon": -74.0191676 }, + { "lat": 40.8353725, "lon": -74.0184872 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1112132942, + "bounds": { + "minlat": 40.7353919, + "minlon": -73.9898905, + "maxlat": 40.7354346, + "maxlon": -73.9898463 + }, + "nodes": [ + 10174524719, + 10174524720, + 10174524726, + 10174524721, + 10174524722, + 10174524723, + 10174524724, + 10174524725, + 10174524732, + 10174524719 + ], + "geometry": [ + { "lat": 40.7354346, "lon": -73.9898682 }, + { "lat": 40.7354253, "lon": -73.9898463 }, + { "lat": 40.7354043, "lon": -73.9898621 }, + { "lat": 40.7353956, "lon": -73.9898688 }, + { "lat": 40.7353919, "lon": -73.9898762 }, + { "lat": 40.7353936, "lon": -73.9898841 }, + { "lat": 40.7353978, "lon": -73.9898905 }, + { "lat": 40.7354041, "lon": -73.9898890 }, + { "lat": 40.7354133, "lon": -73.9898828 }, + { "lat": 40.7354346, "lon": -73.9898682 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1112170171, + "bounds": { + "minlat": 40.7359056, + "minlon": -73.9895134, + "maxlat": 40.7359469, + "maxlon": -73.9894705 + }, + "nodes": [ + 10174832722, + 10174832731, + 10174832724, + 10174832725, + 10174832726, + 10174832727, + 10174832728, + 10174832729, + 10174832730, + 10174832723, + 10174832722 + ], + "geometry": [ + { "lat": 40.7359148, "lon": -73.9895134 }, + { "lat": 40.7359294, "lon": -73.9895027 }, + { "lat": 40.7359421, "lon": -73.9894934 }, + { "lat": 40.7359464, "lon": -73.9894871 }, + { "lat": 40.7359469, "lon": -73.9894780 }, + { "lat": 40.7359437, "lon": -73.9894717 }, + { "lat": 40.7359383, "lon": -73.9894705 }, + { "lat": 40.7359335, "lon": -73.9894726 }, + { "lat": 40.7359211, "lon": -73.9894810 }, + { "lat": 40.7359056, "lon": -73.9894916 }, + { "lat": 40.7359148, "lon": -73.9895134 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1112170175, + "bounds": { + "minlat": 40.7364927, + "minlon": -73.9890770, + "maxlat": 40.7365295, + "maxlon": -73.9890346 + }, + "nodes": [ + 10174832733, + 10174832734, + 10174832745, + 10174832747, + 10174832749, + 10174832748, + 10174832746, + 10174832750, + 10174832735, + 10174832733 + ], + "geometry": [ + { "lat": 40.7365003, "lon": -73.9890770 }, + { "lat": 40.7365170, "lon": -73.9890652 }, + { "lat": 40.7365281, "lon": -73.9890558 }, + { "lat": 40.7365295, "lon": -73.9890484 }, + { "lat": 40.7365288, "lon": -73.9890410 }, + { "lat": 40.7365257, "lon": -73.9890356 }, + { "lat": 40.7365204, "lon": -73.9890346 }, + { "lat": 40.7365082, "lon": -73.9890442 }, + { "lat": 40.7364927, "lon": -73.9890563 }, + { "lat": 40.7365003, "lon": -73.9890770 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1112170177, + "bounds": { + "minlat": 40.7360221, + "minlon": -73.9894231, + "maxlat": 40.7360648, + "maxlon": -73.9893789 + }, + "nodes": [ + 10174832737, + 10174832736, + 10174832738, + 10174832739, + 10174832740, + 10174832741, + 10174832742, + 10174832743, + 10174832744, + 10174832737 + ], + "geometry": [ + { "lat": 40.7360648, "lon": -73.9894007 }, + { "lat": 40.7360555, "lon": -73.9893789 }, + { "lat": 40.7360460, "lon": -73.9893866 }, + { "lat": 40.7360258, "lon": -73.9894014 }, + { "lat": 40.7360221, "lon": -73.9894088 }, + { "lat": 40.7360238, "lon": -73.9894167 }, + { "lat": 40.7360280, "lon": -73.9894231 }, + { "lat": 40.7360343, "lon": -73.9894216 }, + { "lat": 40.7360548, "lon": -73.9894070 }, + { "lat": 40.7360648, "lon": -73.9894007 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1112172807, + "bounds": { + "minlat": 40.8686570, + "minlon": -73.9884720, + "maxlat": 40.8708400, + "maxlon": -73.9871237 + }, + "nodes": [ + 103135952, + 5938918650, + 5938918186, + 5938918649, + 103264933, + 10218962295, + 103245609 + ], + "geometry": [ + { "lat": 40.8708400, "lon": -73.9871237 }, + { "lat": 40.8701207, "lon": -73.9875717 }, + { "lat": 40.8696742, "lon": -73.9878509 }, + { "lat": 40.8696137, "lon": -73.9878886 }, + { "lat": 40.8695836, "lon": -73.9879100 }, + { "lat": 40.8693120, "lon": -73.9880747 }, + { "lat": 40.8686570, "lon": -73.9884720 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "sidewalk": "right", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1112172808, + "bounds": { + "minlat": 40.8708400, + "minlon": -73.9871237, + "maxlat": 40.8741462, + "maxlon": -73.9852520 + }, + "nodes": [ + 103203324, + 10234828046, + 10234828047, + 10234828048, + 10234828049, + 10234828050, + 10234828051, + 10234828596, + 103271518, + 10234828639, + 103296558, + 8374953663, + 103225049, + 103156934, + 103262295, + 10277144523, + 103135952 + ], + "geometry": [ + { "lat": 40.8741462, "lon": -73.9852520 }, + { "lat": 40.8739704, "lon": -73.9853557 }, + { "lat": 40.8738666, "lon": -73.9854069 }, + { "lat": 40.8737733, "lon": -73.9854548 }, + { "lat": 40.8736880, "lon": -73.9855001 }, + { "lat": 40.8735672, "lon": -73.9855560 }, + { "lat": 40.8734642, "lon": -73.9856123 }, + { "lat": 40.8733412, "lon": -73.9856729 }, + { "lat": 40.8733228, "lon": -73.9856827 }, + { "lat": 40.8731054, "lon": -73.9857841 }, + { "lat": 40.8728792, "lon": -73.9858920 }, + { "lat": 40.8728101, "lon": -73.9859307 }, + { "lat": 40.8722206, "lon": -73.9862600 }, + { "lat": 40.8720530, "lon": -73.9863660 }, + { "lat": 40.8714678, "lon": -73.9867262 }, + { "lat": 40.8712200, "lon": -73.9868826 }, + { "lat": 40.8708400, "lon": -73.9871237 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1112213573, + "bounds": { + "minlat": 40.7986801, + "minlon": -73.9658855, + "maxlat": 40.7987617, + "maxlon": -73.9658309 + }, + "nodes": [ + 5790702444, + 10166004107 + ], + "geometry": [ + { "lat": 40.7987617, "lon": -73.9658309 }, + { "lat": 40.7986801, "lon": -73.9658855 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1112274782, + "bounds": { + "minlat": 40.8172253, + "minlon": -73.9812381, + "maxlat": 40.8176658, + "maxlon": -73.9804786 + }, + "nodes": [ + 10175772765, + 10175772766, + 10175772773 + ], + "geometry": [ + { "lat": 40.8172253, "lon": -73.9804786 }, + { "lat": 40.8173274, "lon": -73.9806346 }, + { "lat": 40.8176658, "lon": -73.9812381 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1112274783, + "bounds": { + "minlat": 40.8171403, + "minlon": -73.9814405, + "maxlat": 40.8174491, + "maxlon": -73.9806346 + }, + "nodes": [ + 10175772766, + 10175772772, + 10175772767, + 10175772770, + 10175772768, + 10175772769 + ], + "geometry": [ + { "lat": 40.8173274, "lon": -73.9806346 }, + { "lat": 40.8172442, "lon": -73.9807191 }, + { "lat": 40.8171571, "lon": -73.9808007 }, + { "lat": 40.8171418, "lon": -73.9808305 }, + { "lat": 40.8171403, "lon": -73.9808681 }, + { "lat": 40.8174491, "lon": -73.9814405 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1112274784, + "bounds": { + "minlat": 40.8172442, + "minlon": -73.9813097, + "maxlat": 40.8175926, + "maxlon": -73.9807191 + }, + "nodes": [ + 10175772771, + 10175772772 + ], + "geometry": [ + { "lat": 40.8175926, "lon": -73.9813097 }, + { "lat": 40.8172442, "lon": -73.9807191 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1112274785, + "bounds": { + "minlat": 40.8174491, + "minlon": -73.9814405, + "maxlat": 40.8176658, + "maxlon": -73.9812381 + }, + "nodes": [ + 10175772769, + 10175772771, + 10175772773 + ], + "geometry": [ + { "lat": 40.8174491, "lon": -73.9814405 }, + { "lat": 40.8175926, "lon": -73.9813097 }, + { "lat": 40.8176658, "lon": -73.9812381 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1112274886, + "bounds": { + "minlat": 40.8124489, + "minlon": -74.0128101, + "maxlat": 40.8127327, + "maxlon": -74.0125900 + }, + "nodes": [ + 10175774459, + 10175774468, + 10175774460, + 10175774461, + 10175774470, + 10175774462, + 10175774463 + ], + "geometry": [ + { "lat": 40.8127301, "lon": -74.0125900 }, + { "lat": 40.8127327, "lon": -74.0126358 }, + { "lat": 40.8127214, "lon": -74.0126761 }, + { "lat": 40.8125605, "lon": -74.0128027 }, + { "lat": 40.8125314, "lon": -74.0128101 }, + { "lat": 40.8125007, "lon": -74.0127972 }, + { "lat": 40.8124489, "lon": -74.0126922 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1112274887, + "bounds": { + "minlat": 40.8127301, + "minlon": -74.0125900, + "maxlat": 40.8128369, + "maxlon": -74.0125027 + }, + "nodes": [ + 5994285442, + 10175774459 + ], + "geometry": [ + { "lat": 40.8128369, "lon": -74.0125027 }, + { "lat": 40.8127301, "lon": -74.0125900 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1112274888, + "bounds": { + "minlat": 40.8124489, + "minlon": -74.0126922, + "maxlat": 40.8127301, + "maxlon": -74.0124806 + }, + "nodes": [ + 10175774463, + 10175774469, + 10175774464, + 10175774465, + 10175774467, + 10175774466, + 10175774459 + ], + "geometry": [ + { "lat": 40.8124489, "lon": -74.0126922 }, + { "lat": 40.8124489, "lon": -74.0126484 }, + { "lat": 40.8124637, "lon": -74.0126046 }, + { "lat": 40.8126264, "lon": -74.0124806 }, + { "lat": 40.8126593, "lon": -74.0124809 }, + { "lat": 40.8126870, "lon": -74.0124975 }, + { "lat": 40.8127301, "lon": -74.0125900 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1112403345, + "bounds": { + "minlat": 40.8706015, + "minlon": -73.9829676, + "maxlat": 40.8719894, + "maxlon": -73.9815818 + }, + "nodes": [ + 10177410439, + 10177410437, + 10177410438, + 103203328 + ], + "geometry": [ + { "lat": 40.8706015, "lon": -73.9829676 }, + { "lat": 40.8706329, "lon": -73.9829434 }, + { "lat": 40.8719381, "lon": -73.9816332 }, + { "lat": 40.8719894, "lon": -73.9815818 } + ], + "tags": { + "highway": "residential", + "name": "Eastview Avenue", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Eastview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1112416211, + "bounds": { + "minlat": 40.8208162, + "minlon": -73.9543145, + "maxlat": 40.8216641, + "maxlon": -73.9529701 + }, + "nodes": [ + 10170703037, + 10177409670 + ], + "geometry": [ + { "lat": 40.8216641, "lon": -73.9529701 }, + { "lat": 40.8208162, "lon": -73.9543145 } + ], + "tags": { + "highway": "pedestrian", + "name": "Hamilton Place", + "name:etymology:wikidata": "Q178903" + } +}, +{ + "type": "way", + "id": 1112436260, + "bounds": { + "minlat": 40.7413633, + "minlon": -73.9896498, + "maxlat": 40.7414810, + "maxlon": -73.9895613 + }, + "nodes": [ + 10177726765, + 10177726773, + 10177726766, + 10177726767, + 10177726768, + 10177726769, + 10177726772, + 10177726770, + 10177726771, + 10177726765 + ], + "geometry": [ + { "lat": 40.7414060, "lon": -73.9896498 }, + { "lat": 40.7414403, "lon": -73.9896257 }, + { "lat": 40.7414790, "lon": -73.9895984 }, + { "lat": 40.7414810, "lon": -73.9895928 }, + { "lat": 40.7414733, "lon": -73.9895632 }, + { "lat": 40.7414685, "lon": -73.9895613 }, + { "lat": 40.7414258, "lon": -73.9895914 }, + { "lat": 40.7413633, "lon": -73.9896351 }, + { "lat": 40.7413997, "lon": -73.9896491 }, + { "lat": 40.7414060, "lon": -73.9896498 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1112436268, + "bounds": { + "minlat": 40.7408935, + "minlon": -73.9899984, + "maxlat": 40.7410330, + "maxlon": -73.9898846 + }, + "nodes": [ + 10177726778, + 10177726779, + 10177726785, + 10177726780, + 10177726781, + 10179045236, + 10177726782, + 10177726784, + 10177726783, + 10177726778 + ], + "geometry": [ + { "lat": 40.7410330, "lon": -73.9899185 }, + { "lat": 40.7410193, "lon": -73.9898846 }, + { "lat": 40.7409111, "lon": -73.9899646 }, + { "lat": 40.7408935, "lon": -73.9899777 }, + { "lat": 40.7409002, "lon": -73.9899900 }, + { "lat": 40.7409066, "lon": -73.9899963 }, + { "lat": 40.7409148, "lon": -73.9899984 }, + { "lat": 40.7409250, "lon": -73.9899970 }, + { "lat": 40.7409352, "lon": -73.9899916 }, + { "lat": 40.7410330, "lon": -73.9899185 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1112436287, + "bounds": { + "minlat": 40.7406336, + "minlon": -73.9894814, + "maxlat": 40.7413341, + "maxlon": -73.9891367 + }, + "nodes": [ + 10177726826, + 10179028035, + 10177726864, + 10177726865, + 10177726866, + 10177726741, + 10177726867, + 10177726868, + 10177726869, + 10177726870, + 10177726871, + 10177726872, + 10177726873, + 10177726874, + 10177726875, + 10177726885, + 10177726876, + 10177726877, + 10177726878, + 10177726879, + 10177726880, + 10177726881, + 10177726882, + 10177726724, + 10177726883, + 10177726884, + 10179028036, + 10177726810, + 10177726811, + 10177726812, + 10177726813, + 7761301146, + 10177726814, + 10177726815, + 10177726816, + 10177726817, + 10177726818, + 10177726819, + 10177726820, + 10177726821, + 10177726740, + 10177726822, + 10177726823, + 10177726824, + 10177726825, + 10177726826 + ], + "geometry": [ + { "lat": 40.7413341, "lon": -73.9892283 }, + { "lat": 40.7412912, "lon": -73.9891623 }, + { "lat": 40.7412746, "lon": -73.9891367 }, + { "lat": 40.7412731, "lon": -73.9891431 }, + { "lat": 40.7412694, "lon": -73.9891473 }, + { "lat": 40.7412422, "lon": -73.9891554 }, + { "lat": 40.7412117, "lon": -73.9891646 }, + { "lat": 40.7412066, "lon": -73.9891635 }, + { "lat": 40.7412011, "lon": -73.9891567 }, + { "lat": 40.7411886, "lon": -73.9891431 }, + { "lat": 40.7411811, "lon": -73.9891420 }, + { "lat": 40.7411700, "lon": -73.9891420 }, + { "lat": 40.7408980, "lon": -73.9892295 }, + { "lat": 40.7408937, "lon": -73.9892340 }, + { "lat": 40.7408494, "lon": -73.9893388 }, + { "lat": 40.7408252, "lon": -73.9893149 }, + { "lat": 40.7408197, "lon": -73.9893124 }, + { "lat": 40.7407485, "lon": -73.9893332 }, + { "lat": 40.7407428, "lon": -73.9893377 }, + { "lat": 40.7407217, "lon": -73.9893739 }, + { "lat": 40.7407171, "lon": -73.9893788 }, + { "lat": 40.7406868, "lon": -73.9893894 }, + { "lat": 40.7406745, "lon": -73.9893898 }, + { "lat": 40.7406623, "lon": -73.9893876 }, + { "lat": 40.7406514, "lon": -73.9893788 }, + { "lat": 40.7406336, "lon": -73.9893539 }, + { "lat": 40.7406634, "lon": -73.9894253 }, + { "lat": 40.7406868, "lon": -73.9894814 }, + { "lat": 40.7406851, "lon": -73.9894743 }, + { "lat": 40.7406862, "lon": -73.9894693 }, + { "lat": 40.7406897, "lon": -73.9894666 }, + { "lat": 40.7406934, "lon": -73.9894654 }, + { "lat": 40.7408605, "lon": -73.9894127 }, + { "lat": 40.7408659, "lon": -73.9894089 }, + { "lat": 40.7409600, "lon": -73.9893143 }, + { "lat": 40.7409663, "lon": -73.9893105 }, + { "lat": 40.7411125, "lon": -73.9892654 }, + { "lat": 40.7411402, "lon": -73.9892607 }, + { "lat": 40.7411689, "lon": -73.9892560 }, + { "lat": 40.7412021, "lon": -73.9892486 }, + { "lat": 40.7412716, "lon": -73.9892252 }, + { "lat": 40.7412958, "lon": -73.9892184 }, + { "lat": 40.7413049, "lon": -73.9892181 }, + { "lat": 40.7413149, "lon": -73.9892189 }, + { "lat": 40.7413262, "lon": -73.9892222 }, + { "lat": 40.7413341, "lon": -73.9892283 } + ], + "tags": { + "area": "yes", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1112436289, + "bounds": { + "minlat": 40.7404033, + "minlon": -73.9889309, + "maxlat": 40.7405215, + "maxlon": -73.9888423 + }, + "nodes": [ + 10177726902, + 10177726904, + 10177726903 + ], + "geometry": [ + { "lat": 40.7405215, "lon": -73.9888423 }, + { "lat": 40.7404645, "lon": -73.9888851 }, + { "lat": 40.7404033, "lon": -73.9889309 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1112436319, + "bounds": { + "minlat": 40.7423942, + "minlon": -73.9892751, + "maxlat": 40.7430182, + "maxlon": -73.9889765 + }, + "nodes": [ + 10177727009, + 5147973330, + 10177726987, + 6210354203, + 3008856925, + 10177726999, + 10177726998, + 10177726997, + 10177726996, + 10177726995, + 10177726994, + 3008856927, + 3008857237, + 3008857238, + 10177726993, + 10177727031, + 10177726992, + 10177726991, + 10177726990, + 10177727036, + 10177727024, + 10177727029, + 10177727023, + 10177727022, + 10177727021, + 10177727020, + 10177727019, + 10177727018, + 10177727017, + 10177727016, + 10177727015, + 10177727014, + 10177727013, + 10177727012, + 10177727059, + 10177727011, + 10177727010, + 10177727009 + ], + "geometry": [ + { "lat": 40.7424896, "lon": -73.9889765 }, + { "lat": 40.7424325, "lon": -73.9890182 }, + { "lat": 40.7423942, "lon": -73.9890436 }, + { "lat": 40.7424064, "lon": -73.9890755 }, + { "lat": 40.7424218, "lon": -73.9891104 }, + { "lat": 40.7424412, "lon": -73.9891497 }, + { "lat": 40.7424678, "lon": -73.9891882 }, + { "lat": 40.7424987, "lon": -73.9892251 }, + { "lat": 40.7425271, "lon": -73.9892493 }, + { "lat": 40.7425503, "lon": -73.9892626 }, + { "lat": 40.7425802, "lon": -73.9892728 }, + { "lat": 40.7426096, "lon": -73.9892751 }, + { "lat": 40.7428460, "lon": -73.9892437 }, + { "lat": 40.7428707, "lon": -73.9892137 }, + { "lat": 40.7429663, "lon": -73.9892012 }, + { "lat": 40.7429805, "lon": -73.9892016 }, + { "lat": 40.7429866, "lon": -73.9892019 }, + { "lat": 40.7430052, "lon": -73.9892081 }, + { "lat": 40.7430182, "lon": -73.9892204 }, + { "lat": 40.7429950, "lon": -73.9891692 }, + { "lat": 40.7429818, "lon": -73.9891402 }, + { "lat": 40.7429550, "lon": -73.9891440 }, + { "lat": 40.7428743, "lon": -73.9891551 }, + { "lat": 40.7428710, "lon": -73.9891126 }, + { "lat": 40.7425944, "lon": -73.9891505 }, + { "lat": 40.7425977, "lon": -73.9891930 }, + { "lat": 40.7425892, "lon": -73.9891921 }, + { "lat": 40.7425676, "lon": -73.9891846 }, + { "lat": 40.7425399, "lon": -73.9891696 }, + { "lat": 40.7425151, "lon": -73.9891444 }, + { "lat": 40.7424981, "lon": -73.9891158 }, + { "lat": 40.7424871, "lon": -73.9890897 }, + { "lat": 40.7424797, "lon": -73.9890550 }, + { "lat": 40.7424769, "lon": -73.9890317 }, + { "lat": 40.7424776, "lon": -73.9890233 }, + { "lat": 40.7424790, "lon": -73.9890078 }, + { "lat": 40.7424832, "lon": -73.9889882 }, + { "lat": 40.7424896, "lon": -73.9889765 } + ], + "tags": { + "area": "yes", + "area:highway": "service", + "bicycle": "designated", + "foot": "designated", + "highway": "pedestrian", + "name": "Broadway", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1112578506, + "bounds": { + "minlat": 40.7399523, + "minlon": -73.9896142, + "maxlat": 40.7403322, + "maxlon": -73.9894849 + }, + "nodes": [ + 10179028039, + 10179028059, + 10179028040, + 10179028041, + 10179028042, + 10179028043, + 10179028044, + 10179028060, + 10179028045, + 10179028046, + 10179028047, + 10179028048, + 10179028049, + 10179028050, + 10179028051, + 10179028052, + 10179028039 + ], + "geometry": [ + { "lat": 40.7403322, "lon": -73.9895588 }, + { "lat": 40.7402458, "lon": -73.9894971 }, + { "lat": 40.7402304, "lon": -73.9894861 }, + { "lat": 40.7402249, "lon": -73.9894849 }, + { "lat": 40.7400143, "lon": -73.9895480 }, + { "lat": 40.7399996, "lon": -73.9895553 }, + { "lat": 40.7399815, "lon": -73.9895673 }, + { "lat": 40.7399697, "lon": -73.9895809 }, + { "lat": 40.7399636, "lon": -73.9895879 }, + { "lat": 40.7399561, "lon": -73.9895986 }, + { "lat": 40.7399523, "lon": -73.9896059 }, + { "lat": 40.7399524, "lon": -73.9896091 }, + { "lat": 40.7399540, "lon": -73.9896120 }, + { "lat": 40.7399578, "lon": -73.9896142 }, + { "lat": 40.7400483, "lon": -73.9896023 }, + { "lat": 40.7403319, "lon": -73.9895601 }, + { "lat": 40.7403322, "lon": -73.9895588 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1112578525, + "bounds": { + "minlat": 40.7401332, + "minlon": -73.9905515, + "maxlat": 40.7402106, + "maxlon": -73.9904905 + }, + "nodes": [ + 10179028097, + 10179028098, + 10179028099, + 10179028111, + 10179028100, + 10179028101, + 10179028102, + 10179028110, + 10179028103, + 10179028097 + ], + "geometry": [ + { "lat": 40.7402106, "lon": -73.9905175 }, + { "lat": 40.7402007, "lon": -73.9904926 }, + { "lat": 40.7401973, "lon": -73.9904905 }, + { "lat": 40.7401825, "lon": -73.9905012 }, + { "lat": 40.7401332, "lon": -73.9905369 }, + { "lat": 40.7401361, "lon": -73.9905456 }, + { "lat": 40.7401696, "lon": -73.9905515 }, + { "lat": 40.7401953, "lon": -73.9905326 }, + { "lat": 40.7402102, "lon": -73.9905215 }, + { "lat": 40.7402106, "lon": -73.9905175 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1112578536, + "bounds": { + "minlat": 40.7402829, + "minlon": -73.9904583, + "maxlat": 40.7403516, + "maxlon": -73.9903809 + }, + "nodes": [ + 10179028112, + 10179028113, + 10179028114, + 10179028115, + 10179028116, + 10179045217, + 10179045218, + 10179045219, + 10179045220, + 10179028112 + ], + "geometry": [ + { "lat": 40.7402934, "lon": -73.9904566 }, + { "lat": 40.7402829, "lon": -73.9904322 }, + { "lat": 40.7402834, "lon": -73.9904272 }, + { "lat": 40.7402992, "lon": -73.9904158 }, + { "lat": 40.7403476, "lon": -73.9903809 }, + { "lat": 40.7403516, "lon": -73.9903888 }, + { "lat": 40.7403373, "lon": -73.9904293 }, + { "lat": 40.7403126, "lon": -73.9904467 }, + { "lat": 40.7402962, "lon": -73.9904583 }, + { "lat": 40.7402934, "lon": -73.9904566 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1112578539, + "bounds": { + "minlat": 40.7407585, + "minlon": -73.9900980, + "maxlat": 40.7408359, + "maxlon": -73.9900370 + }, + "nodes": [ + 10179045223, + 10179045224, + 10179045225, + 10179045226, + 10179045227, + 10179045228, + 10179045229, + 10179045230, + 10179045231, + 10179045223 + ], + "geometry": [ + { "lat": 40.7408359, "lon": -73.9900639 }, + { "lat": 40.7408260, "lon": -73.9900391 }, + { "lat": 40.7408226, "lon": -73.9900370 }, + { "lat": 40.7408013, "lon": -73.9900524 }, + { "lat": 40.7407585, "lon": -73.9900833 }, + { "lat": 40.7407614, "lon": -73.9900921 }, + { "lat": 40.7407949, "lon": -73.9900980 }, + { "lat": 40.7408140, "lon": -73.9900839 }, + { "lat": 40.7408355, "lon": -73.9900680 }, + { "lat": 40.7408359, "lon": -73.9900639 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1112578549, + "bounds": { + "minlat": 40.7398359, + "minlon": -73.9895337, + "maxlat": 40.7405840, + "maxlon": -73.9891874 + }, + "nodes": [ + 10179045265, + 10179045292, + 10179045266, + 10179045267, + 10179045268, + 9470120013, + 10179045269, + 10179045270, + 10179045271, + 10179028057, + 10179045272, + 10179045273, + 10179045274, + 10179045275, + 10179045276, + 10179045277, + 10179045278, + 10179045279, + 10179045280, + 10179045281, + 10177726730, + 10179045282, + 10179045283, + 10179045284, + 10179045285, + 10179028068, + 10179045286, + 10179045287, + 10179045288, + 10179045289, + 10179045291, + 10179045290, + 2555136689, + 2555136691, + 2555136690, + 2555136688, + 2555136687, + 2555136663, + 2555136648, + 2555136629, + 2555136614, + 10179045265 + ], + "geometry": [ + { "lat": 40.7398729, "lon": -73.9893768 }, + { "lat": 40.7398536, "lon": -73.9893912 }, + { "lat": 40.7398381, "lon": -73.9894027 }, + { "lat": 40.7398359, "lon": -73.9894149 }, + { "lat": 40.7398367, "lon": -73.9894246 }, + { "lat": 40.7398612, "lon": -73.9894826 }, + { "lat": 40.7398792, "lon": -73.9895263 }, + { "lat": 40.7398857, "lon": -73.9895326 }, + { "lat": 40.7398942, "lon": -73.9895337 }, + { "lat": 40.7399107, "lon": -73.9895296 }, + { "lat": 40.7399887, "lon": -73.9895102 }, + { "lat": 40.7399935, "lon": -73.9895061 }, + { "lat": 40.7400112, "lon": -73.9894701 }, + { "lat": 40.7402657, "lon": -73.9893895 }, + { "lat": 40.7403917, "lon": -73.9894798 }, + { "lat": 40.7404040, "lon": -73.9894405 }, + { "lat": 40.7404886, "lon": -73.9894167 }, + { "lat": 40.7404970, "lon": -73.9894171 }, + { "lat": 40.7405222, "lon": -73.9894334 }, + { "lat": 40.7405282, "lon": -73.9894355 }, + { "lat": 40.7405433, "lon": -73.9894319 }, + { "lat": 40.7405771, "lon": -73.9894241 }, + { "lat": 40.7405817, "lon": -73.9894207 }, + { "lat": 40.7405840, "lon": -73.9894149 }, + { "lat": 40.7405834, "lon": -73.9894070 }, + { "lat": 40.7405250, "lon": -73.9892673 }, + { "lat": 40.7404934, "lon": -73.9891927 }, + { "lat": 40.7404880, "lon": -73.9891889 }, + { "lat": 40.7404803, "lon": -73.9891874 }, + { "lat": 40.7404707, "lon": -73.9891897 }, + { "lat": 40.7404461, "lon": -73.9892059 }, + { "lat": 40.7404257, "lon": -73.9892194 }, + { "lat": 40.7404287, "lon": -73.9892263 }, + { "lat": 40.7404330, "lon": -73.9892395 }, + { "lat": 40.7404319, "lon": -73.9892480 }, + { "lat": 40.7404282, "lon": -73.9892551 }, + { "lat": 40.7404227, "lon": -73.9892598 }, + { "lat": 40.7401653, "lon": -73.9893416 }, + { "lat": 40.7400591, "lon": -73.9893753 }, + { "lat": 40.7399540, "lon": -73.9894087 }, + { "lat": 40.7398947, "lon": -73.9894275 }, + { "lat": 40.7398729, "lon": -73.9893768 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1112578595, + "bounds": { + "minlat": 40.7415763, + "minlon": -73.9887592, + "maxlat": 40.7419188, + "maxlon": -73.9884771 + }, + "nodes": [ + 10179045537, + 10179045538, + 10179045539, + 10179045540, + 10179045541, + 10179045542, + 10179045543, + 10179045544, + 10179045545, + 10179045546, + 10179045547, + 10179045548, + 10179045549, + 10179045550, + 10179045551, + 10179045552, + 10179045553, + 10179045554, + 10181690631, + 10179045555, + 10179045699, + 10179045556, + 10179045557, + 10181690574, + 10179045558, + 10179045559, + 10179045560, + 10179045561, + 10179045562, + 10179045537 + ], + "geometry": [ + { "lat": 40.7419188, "lon": -73.9887017 }, + { "lat": 40.7418832, "lon": -73.9887227 }, + { "lat": 40.7418415, "lon": -73.9887394 }, + { "lat": 40.7417904, "lon": -73.9887549 }, + { "lat": 40.7417370, "lon": -73.9887592 }, + { "lat": 40.7416508, "lon": -73.9887511 }, + { "lat": 40.7416119, "lon": -73.9887425 }, + { "lat": 40.7415876, "lon": -73.9887338 }, + { "lat": 40.7415782, "lon": -73.9887208 }, + { "lat": 40.7415763, "lon": -73.9887072 }, + { "lat": 40.7415824, "lon": -73.9886856 }, + { "lat": 40.7416082, "lon": -73.9886429 }, + { "lat": 40.7416344, "lon": -73.9885947 }, + { "lat": 40.7416583, "lon": -73.9885409 }, + { "lat": 40.7416822, "lon": -73.9884852 }, + { "lat": 40.7416958, "lon": -73.9884907 }, + { "lat": 40.7417181, "lon": -73.9884955 }, + { "lat": 40.7417429, "lon": -73.9884955 }, + { "lat": 40.7417685, "lon": -73.9884894 }, + { "lat": 40.7417738, "lon": -73.9884881 }, + { "lat": 40.7417859, "lon": -73.9884844 }, + { "lat": 40.7418039, "lon": -73.9884771 }, + { "lat": 40.7418148, "lon": -73.9885208 }, + { "lat": 40.7418222, "lon": -73.9885439 }, + { "lat": 40.7418374, "lon": -73.9885914 }, + { "lat": 40.7418574, "lon": -73.9886447 }, + { "lat": 40.7418711, "lon": -73.9886716 }, + { "lat": 40.7418878, "lon": -73.9886900 }, + { "lat": 40.7419048, "lon": -73.9886988 }, + { "lat": 40.7419188, "lon": -73.9887017 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "sand" + } +}, +{ + "type": "way", + "id": 1112595205, + "bounds": { + "minlat": 40.8657330, + "minlon": -73.9781564, + "maxlat": 40.8670918, + "maxlon": -73.9780398 + }, + "nodes": [ + 103156430, + 12021450521, + 12021450520, + 12021450518, + 12021450517, + 12021450516, + 12021450519, + 103156431 + ], + "geometry": [ + { "lat": 40.8670918, "lon": -73.9780398 }, + { "lat": 40.8670423, "lon": -73.9780902 }, + { "lat": 40.8670067, "lon": -73.9781180 }, + { "lat": 40.8669651, "lon": -73.9781392 }, + { "lat": 40.8669335, "lon": -73.9781485 }, + { "lat": 40.8668937, "lon": -73.9781536 }, + { "lat": 40.8668595, "lon": -73.9781564 }, + { "lat": 40.8657330, "lon": -73.9780750 } + ], + "tags": { + "direction": "forward", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Nordhoff Drive", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Nordhoff", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_left_1": "07605" + } +}, +{ + "type": "way", + "id": 1112595206, + "bounds": { + "minlat": 40.8670918, + "minlon": -73.9783878, + "maxlat": 40.8673935, + "maxlon": -73.9780398 + }, + "nodes": [ + 103110764, + 12021450522, + 103156426, + 103156428, + 12021450523, + 103156430 + ], + "geometry": [ + { "lat": 40.8673935, "lon": -73.9783878 }, + { "lat": 40.8673346, "lon": -73.9783017 }, + { "lat": 40.8672756, "lon": -73.9782316 }, + { "lat": 40.8671997, "lon": -73.9781501 }, + { "lat": 40.8671773, "lon": -73.9781272 }, + { "lat": 40.8670918, "lon": -73.9780398 } + ], + "tags": { + "direction": "forward", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Nordhoff Drive", + "sidewalk": "left", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Nordhoff", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_left_1": "07605" + } +}, +{ + "type": "way", + "id": 1112595207, + "bounds": { + "minlat": 40.8637680, + "minlon": -73.9795210, + "maxlat": 40.8640190, + "maxlon": -73.9785000 + }, + "nodes": [ + 103174329, + 103237966, + 103237968, + 103237970, + 103156437 + ], + "geometry": [ + { "lat": 40.8637680, "lon": -73.9795210 }, + { "lat": 40.8639770, "lon": -73.9788880 }, + { "lat": 40.8640050, "lon": -73.9787560 }, + { "lat": 40.8640190, "lon": -73.9786200 }, + { "lat": 40.8640110, "lon": -73.9785000 } + ], + "tags": { + "highway": "residential", + "name": "Fairway Drive", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairway", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1112634336, + "bounds": { + "minlat": 40.8642805, + "minlon": -73.9830176, + "maxlat": 40.8676070, + "maxlon": -73.9818440 + }, + "nodes": [ + 103093250, + 10233515895, + 10233515896, + 103093251, + 103093253, + 103093254, + 103093255, + 10536260930, + 103093257, + 103093259, + 103093261, + 103093262, + 103093263, + 103093265, + 103093267, + 103093271, + 103093273, + 103093275, + 10218976765, + 103093277, + 103093279, + 103093281, + 103093283, + 103093285 + ], + "geometry": [ + { "lat": 40.8642805, "lon": -73.9830176 }, + { "lat": 40.8643643, "lon": -73.9829287 }, + { "lat": 40.8643846, "lon": -73.9828965 }, + { "lat": 40.8644982, "lon": -73.9826618 }, + { "lat": 40.8645680, "lon": -73.9825350 }, + { "lat": 40.8646600, "lon": -73.9824500 }, + { "lat": 40.8647531, "lon": -73.9823990 }, + { "lat": 40.8649343, "lon": -73.9822944 }, + { "lat": 40.8650454, "lon": -73.9822198 }, + { "lat": 40.8653094, "lon": -73.9821009 }, + { "lat": 40.8654100, "lon": -73.9820790 }, + { "lat": 40.8655490, "lon": -73.9820560 }, + { "lat": 40.8656890, "lon": -73.9820530 }, + { "lat": 40.8661296, "lon": -73.9821060 }, + { "lat": 40.8662170, "lon": -73.9821070 }, + { "lat": 40.8663290, "lon": -73.9820950 }, + { "lat": 40.8663400, "lon": -73.9820940 }, + { "lat": 40.8664610, "lon": -73.9820650 }, + { "lat": 40.8665005, "lon": -73.9820499 }, + { "lat": 40.8668810, "lon": -73.9819050 }, + { "lat": 40.8670090, "lon": -73.9818650 }, + { "lat": 40.8671380, "lon": -73.9818460 }, + { "lat": 40.8671970, "lon": -73.9818440 }, + { "lat": 40.8676070, "lon": -73.9818620 } + ], + "tags": { + "direction": "backward", + "highway": "residential", + "name": "Glenwood Avenue", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glenwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1112995679, + "bounds": { + "minlat": 40.8150823, + "minlon": -73.9505925, + "maxlat": 40.8153023, + "maxlon": -73.9502080 + }, + "nodes": [ + 10183024494, + 11296306921, + 10183024495, + 10183024498, + 10183024497, + 10183024496 + ], + "geometry": [ + { "lat": 40.8150823, "lon": -73.9502080 }, + { "lat": 40.8151178, "lon": -73.9502731 }, + { "lat": 40.8151338, "lon": -73.9503023 }, + { "lat": 40.8151950, "lon": -73.9504435 }, + { "lat": 40.8152296, "lon": -73.9505012 }, + { "lat": 40.8153023, "lon": -73.9505925 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1112996871, + "bounds": { + "minlat": 40.7695379, + "minlon": -73.9855076, + "maxlat": 40.7697218, + "maxlon": -73.9853659 + }, + "nodes": [ + 10183035757, + 10183035758, + 10183035760, + 10183035759 + ], + "geometry": [ + { "lat": 40.7695379, "lon": -73.9855076 }, + { "lat": 40.7695957, "lon": -73.9854614 }, + { "lat": 40.7696157, "lon": -73.9854462 }, + { "lat": 40.7697218, "lon": -73.9853659 } + ], + "tags": { + "highway": "service", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1113117242, + "bounds": { + "minlat": 40.7677662, + "minlon": -73.9814050, + "maxlat": 40.7679015, + "maxlon": -73.9811777 + }, + "nodes": [ + 10183978839, + 10183978840, + 10183978841, + 10183978831, + 10183978842, + 10183978843, + 10183978844, + 10183978845, + 10183978846, + 10183978847, + 10183978848, + 10183978849, + 10183978850, + 10183978851, + 10183978834, + 10183978852, + 10183978853, + 10183978854, + 10183978855, + 10183978856, + 10183978857, + 10183978858, + 10183978859, + 10183978838, + 10183978860, + 10183978861, + 10183978862, + 10183978863, + 10183978864, + 10183978865, + 10183978866, + 10183978867, + 10183978868, + 10183978869, + 10183978870, + 10183978839 + ], + "geometry": [ + { "lat": 40.7678129, "lon": -73.9814022 }, + { "lat": 40.7678331, "lon": -73.9813820 }, + { "lat": 40.7678489, "lon": -73.9813675 }, + { "lat": 40.7678504, "lon": -73.9813666 }, + { "lat": 40.7678691, "lon": -73.9813553 }, + { "lat": 40.7678985, "lon": -73.9813391 }, + { "lat": 40.7679014, "lon": -73.9813354 }, + { "lat": 40.7679015, "lon": -73.9813285 }, + { "lat": 40.7678985, "lon": -73.9813220 }, + { "lat": 40.7678911, "lon": -73.9813193 }, + { "lat": 40.7678727, "lon": -73.9813085 }, + { "lat": 40.7678576, "lon": -73.9812969 }, + { "lat": 40.7678363, "lon": -73.9812712 }, + { "lat": 40.7678230, "lon": -73.9812471 }, + { "lat": 40.7678121, "lon": -73.9812255 }, + { "lat": 40.7677977, "lon": -73.9811961 }, + { "lat": 40.7677900, "lon": -73.9811828 }, + { "lat": 40.7677843, "lon": -73.9811783 }, + { "lat": 40.7677778, "lon": -73.9811777 }, + { "lat": 40.7677717, "lon": -73.9811816 }, + { "lat": 40.7677673, "lon": -73.9811875 }, + { "lat": 40.7677662, "lon": -73.9811977 }, + { "lat": 40.7677692, "lon": -73.9812103 }, + { "lat": 40.7677821, "lon": -73.9812494 }, + { "lat": 40.7677919, "lon": -73.9812806 }, + { "lat": 40.7678013, "lon": -73.9813120 }, + { "lat": 40.7678041, "lon": -73.9813306 }, + { "lat": 40.7678050, "lon": -73.9813485 }, + { "lat": 40.7678041, "lon": -73.9813652 }, + { "lat": 40.7678023, "lon": -73.9813801 }, + { "lat": 40.7678001, "lon": -73.9813895 }, + { "lat": 40.7677995, "lon": -73.9813955 }, + { "lat": 40.7678008, "lon": -73.9814016 }, + { "lat": 40.7678039, "lon": -73.9814050 }, + { "lat": 40.7678088, "lon": -73.9814048 }, + { "lat": 40.7678129, "lon": -73.9814022 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1113267323, + "bounds": { + "minlat": 40.7180101, + "minlon": -74.0128290, + "maxlat": 40.7185464, + "maxlon": -74.0126980 + }, + "nodes": [ + 10185281699, + 7816666409, + 4207143417 + ], + "geometry": [ + { "lat": 40.7185464, "lon": -74.0126980 }, + { "lat": 40.7182019, "lon": -74.0127840 }, + { "lat": 40.7180101, "lon": -74.0128290 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left||||right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1113346993, + "bounds": { + "minlat": 40.8154761, + "minlon": -73.9308763, + "maxlat": 40.8160135, + "maxlon": -73.9307916 + }, + "nodes": [ + 529049398, + 9163819541, + 529049399 + ], + "geometry": [ + { "lat": 40.8154761, "lon": -73.9307916 }, + { "lat": 40.8155932, "lon": -73.9308082 }, + { "lat": 40.8160135, "lon": -73.9308763 } + ], + "tags": { + "highway": "motorway", + "lanes": "3", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1113528032, + "bounds": { + "minlat": 40.7696226, + "minlon": -73.9821534, + "maxlat": 40.7696863, + "maxlon": -73.9820844 + }, + "nodes": [ + 10187594385, + 10187594379, + 10187594380, + 10187594386, + 9904553344, + 10187594387, + 10187594398, + 10187594388, + 10187594389, + 10187594390, + 10187594391, + 10187594392, + 10187594393, + 10187594394, + 10187594395, + 10187594396, + 9904553346, + 10187594397, + 10187594385 + ], + "geometry": [ + { "lat": 40.7696622, "lon": -73.9821532 }, + { "lat": 40.7696495, "lon": -73.9821531 }, + { "lat": 40.7696226, "lon": -73.9820844 }, + { "lat": 40.7696417, "lon": -73.9820846 }, + { "lat": 40.7696503, "lon": -73.9820850 }, + { "lat": 40.7696574, "lon": -73.9820853 }, + { "lat": 40.7696625, "lon": -73.9820861 }, + { "lat": 40.7696643, "lon": -73.9820864 }, + { "lat": 40.7696708, "lon": -73.9820897 }, + { "lat": 40.7696762, "lon": -73.9820942 }, + { "lat": 40.7696813, "lon": -73.9821026 }, + { "lat": 40.7696846, "lon": -73.9821127 }, + { "lat": 40.7696863, "lon": -73.9821233 }, + { "lat": 40.7696858, "lon": -73.9821329 }, + { "lat": 40.7696846, "lon": -73.9821400 }, + { "lat": 40.7696806, "lon": -73.9821476 }, + { "lat": 40.7696765, "lon": -73.9821515 }, + { "lat": 40.7696693, "lon": -73.9821534 }, + { "lat": 40.7696622, "lon": -73.9821532 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1113528056, + "bounds": { + "minlat": 40.7693223, + "minlon": -73.9814757, + "maxlat": 40.7694372, + "maxlon": -73.9813930 + }, + "nodes": [ + 10187602671, + 10187602673, + 10187602672 + ], + "geometry": [ + { "lat": 40.7693223, "lon": -73.9814757 }, + { "lat": 40.7693811, "lon": -73.9814333 }, + { "lat": 40.7694372, "lon": -73.9813930 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1113528059, + "bounds": { + "minlat": 40.7693482, + "minlon": -73.9815382, + "maxlat": 40.7694632, + "maxlon": -73.9814544 + }, + "nodes": [ + 10187602682, + 10187602684, + 10187602683 + ], + "geometry": [ + { "lat": 40.7693482, "lon": -73.9815382 }, + { "lat": 40.7694073, "lon": -73.9814951 }, + { "lat": 40.7694632, "lon": -73.9814544 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1113528096, + "bounds": { + "minlat": 40.7687349, + "minlon": -73.9818290, + "maxlat": 40.7694793, + "maxlon": -73.9815347 + }, + "nodes": [ + 10187602841, + 7214261680, + 10187602857, + 10187602632, + 10187602633, + 4997760501, + 4997760636, + 4997760500, + 4997760635, + 4997760499, + 4997760634, + 4997760498, + 4997760633, + 10187602621, + 4997760632, + 10187602626, + 10187602634, + 10187602635, + 10187602636, + 7214261679, + 10187602858, + 10187602648, + 10187602647, + 10187602646, + 1634238265, + 1634238273, + 1634238276, + 1634238279, + 1634238281, + 1634238298, + 1634238294, + 1634238319, + 10187602691, + 10187602692, + 10187602693, + 8634037756, + 10187602705, + 10187602704, + 10187602702, + 10187602701, + 10187602710, + 10187602709, + 10187602846, + 10187602854, + 10187602840, + 10187602841 + ], + "geometry": [ + { "lat": 40.7688399, "lon": -73.9818127 }, + { "lat": 40.7688205, "lon": -73.9818127 }, + { "lat": 40.7687927, "lon": -73.9818134 }, + { "lat": 40.7687930, "lon": -73.9818279 }, + { "lat": 40.7687835, "lon": -73.9818277 }, + { "lat": 40.7687562, "lon": -73.9817912 }, + { "lat": 40.7687677, "lon": -73.9817769 }, + { "lat": 40.7687757, "lon": -73.9817592 }, + { "lat": 40.7687799, "lon": -73.9817395 }, + { "lat": 40.7687803, "lon": -73.9817220 }, + { "lat": 40.7687774, "lon": -73.9817042 }, + { "lat": 40.7687723, "lon": -73.9816896 }, + { "lat": 40.7687637, "lon": -73.9816750 }, + { "lat": 40.7687537, "lon": -73.9816643 }, + { "lat": 40.7687420, "lon": -73.9816567 }, + { "lat": 40.7687349, "lon": -73.9816541 }, + { "lat": 40.7687482, "lon": -73.9816117 }, + { "lat": 40.7687559, "lon": -73.9816061 }, + { "lat": 40.7687667, "lon": -73.9816306 }, + { "lat": 40.7687799, "lon": -73.9816214 }, + { "lat": 40.7687947, "lon": -73.9816110 }, + { "lat": 40.7687960, "lon": -73.9816139 }, + { "lat": 40.7688730, "lon": -73.9817976 }, + { "lat": 40.7689297, "lon": -73.9817557 }, + { "lat": 40.7689462, "lon": -73.9817955 }, + { "lat": 40.7690271, "lon": -73.9817370 }, + { "lat": 40.7690507, "lon": -73.9817939 }, + { "lat": 40.7691160, "lon": -73.9817466 }, + { "lat": 40.7691201, "lon": -73.9817566 }, + { "lat": 40.7693066, "lon": -73.9816198 }, + { "lat": 40.7693012, "lon": -73.9816082 }, + { "lat": 40.7693597, "lon": -73.9815660 }, + { "lat": 40.7694033, "lon": -73.9815347 }, + { "lat": 40.7694086, "lon": -73.9815488 }, + { "lat": 40.7693907, "lon": -73.9815617 }, + { "lat": 40.7693939, "lon": -73.9815696 }, + { "lat": 40.7693963, "lon": -73.9815759 }, + { "lat": 40.7694036, "lon": -73.9815937 }, + { "lat": 40.7693855, "lon": -73.9816072 }, + { "lat": 40.7693999, "lon": -73.9816410 }, + { "lat": 40.7694793, "lon": -73.9818290 }, + { "lat": 40.7693414, "lon": -73.9818244 }, + { "lat": 40.7693103, "lon": -73.9818230 }, + { "lat": 40.7692435, "lon": -73.9818199 }, + { "lat": 40.7692125, "lon": -73.9818185 }, + { "lat": 40.7688399, "lon": -73.9818127 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1113541073, + "bounds": { + "minlat": 40.7315928, + "minlon": -73.9445400, + "maxlat": 40.7318017, + "maxlon": -73.9438907 + }, + "nodes": [ + 10187694053, + 10187694029, + 10187694026, + 10187694025, + 10187694023, + 10187694024 + ], + "geometry": [ + { "lat": 40.7318017, "lon": -73.9438907 }, + { "lat": 40.7317925, "lon": -73.9439190 }, + { "lat": 40.7317255, "lon": -73.9441263 }, + { "lat": 40.7316242, "lon": -73.9444392 }, + { "lat": 40.7316154, "lon": -73.9444666 }, + { "lat": 40.7315928, "lon": -73.9445400 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1113541074, + "bounds": { + "minlat": 40.7317255, + "minlon": -73.9442048, + "maxlat": 40.7321293, + "maxlon": -73.9439190 + }, + "nodes": [ + 10187694026, + 10187694027, + 10187694028, + 10187694029 + ], + "geometry": [ + { "lat": 40.7317255, "lon": -73.9441263 }, + { "lat": 40.7320535, "lon": -73.9442048 }, + { "lat": 40.7321293, "lon": -73.9439855 }, + { "lat": 40.7317925, "lon": -73.9439190 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1113541075, + "bounds": { + "minlat": 40.7307007, + "minlon": -73.9442819, + "maxlat": 40.7316457, + "maxlon": -73.9437702 + }, + "nodes": [ + 10187694032, + 10187694033, + 10187694036, + 10187694034, + 10187694035 + ], + "geometry": [ + { "lat": 40.7307007, "lon": -73.9441564 }, + { "lat": 40.7315461, "lon": -73.9442819 }, + { "lat": 40.7315967, "lon": -73.9440793 }, + { "lat": 40.7316457, "lon": -73.9438835 }, + { "lat": 40.7311892, "lon": -73.9437702 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1113541076, + "bounds": { + "minlat": 40.7307234, + "minlon": -73.9440793, + "maxlat": 40.7315967, + "maxlon": -73.9439065 + }, + "nodes": [ + 10187694036, + 10187694037 + ], + "geometry": [ + { "lat": 40.7315967, "lon": -73.9440793 }, + { "lat": 40.7307234, "lon": -73.9439065 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1113541077, + "bounds": { + "minlat": 40.7302009, + "minlon": -73.9433756, + "maxlat": 40.7318793, + "maxlon": -73.9427750 + }, + "nodes": [ + 10187694046, + 10187694041, + 10187694049, + 10187694042, + 10187694047, + 10187694043, + 10187694044, + 10187694045, + 10187694046 + ], + "geometry": [ + { "lat": 40.7302241, "lon": -73.9428969 }, + { "lat": 40.7302009, "lon": -73.9431286 }, + { "lat": 40.7308048, "lon": -73.9432195 }, + { "lat": 40.7318425, "lon": -73.9433756 }, + { "lat": 40.7318571, "lon": -73.9431687 }, + { "lat": 40.7318793, "lon": -73.9429480 }, + { "lat": 40.7306639, "lon": -73.9427750 }, + { "lat": 40.7306483, "lon": -73.9429603 }, + { "lat": 40.7302241, "lon": -73.9428969 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1113541078, + "bounds": { + "minlat": 40.7306483, + "minlon": -73.9431687, + "maxlat": 40.7318571, + "maxlon": -73.9429603 + }, + "nodes": [ + 10187694045, + 10187694047 + ], + "geometry": [ + { "lat": 40.7306483, "lon": -73.9429603 }, + { "lat": 40.7318571, "lon": -73.9431687 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1113541079, + "bounds": { + "minlat": 40.7302241, + "minlon": -73.9428969, + "maxlat": 40.7302780, + "maxlon": -73.9424096 + }, + "nodes": [ + 10187694046, + 10187694051, + 10187694040, + 10187694039 + ], + "geometry": [ + { "lat": 40.7302241, "lon": -73.9428969 }, + { "lat": 40.7302592, "lon": -73.9425489 }, + { "lat": 40.7302649, "lon": -73.9424903 }, + { "lat": 40.7302780, "lon": -73.9424096 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1113541080, + "bounds": { + "minlat": 40.7307659, + "minlon": -73.9434574, + "maxlat": 40.7308048, + "maxlon": -73.9432195 + }, + "nodes": [ + 10187694031, + 10187694048, + 10187694050, + 10187694049 + ], + "geometry": [ + { "lat": 40.7307659, "lon": -73.9434574 }, + { "lat": 40.7307901, "lon": -73.9433700 }, + { "lat": 40.7307923, "lon": -73.9433469 }, + { "lat": 40.7308048, "lon": -73.9432195 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1113541081, + "bounds": { + "minlat": 40.7318421, + "minlon": -73.9437649, + "maxlat": 40.7318714, + "maxlon": -73.9436446 + }, + "nodes": [ + 10187694021, + 10187694022, + 10187694030, + 10187694052 + ], + "geometry": [ + { "lat": 40.7318714, "lon": -73.9436446 }, + { "lat": 40.7318557, "lon": -73.9437239 }, + { "lat": 40.7318479, "lon": -73.9437467 }, + { "lat": 40.7318421, "lon": -73.9437649 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1113541082, + "bounds": { + "minlat": 40.7318017, + "minlon": -73.9438907, + "maxlat": 40.7318421, + "maxlon": -73.9437649 + }, + "nodes": [ + 10187694052, + 10187694053 + ], + "geometry": [ + { "lat": 40.7318421, "lon": -73.9437649 }, + { "lat": 40.7318017, "lon": -73.9438907 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1113542902, + "bounds": { + "minlat": 40.7245091, + "minlon": -73.9941491, + "maxlat": 40.7247637, + "maxlon": -73.9934284 + }, + "nodes": [ + 42457325, + 5829779510, + 12681040945, + 5829779491, + 42432308 + ], + "geometry": [ + { "lat": 40.7245091, "lon": -73.9934284 }, + { "lat": 40.7245346, "lon": -73.9934992 }, + { "lat": 40.7246702, "lon": -73.9938849 }, + { "lat": 40.7247379, "lon": -73.9940774 }, + { "lat": 40.7247637, "lon": -73.9941491 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1115153280, + "bounds": { + "minlat": 40.7622520, + "minlon": -73.9703537, + "maxlat": 40.7623289, + "maxlon": -73.9701729 + }, + "nodes": [ + 596775941, + 42456598 + ], + "geometry": [ + { "lat": 40.7623289, "lon": -73.9703537 }, + { "lat": 40.7622520, "lon": -73.9701729 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 58th Street", + "name:ru": "Восточная 58-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1115300941, + "bounds": { + "minlat": 40.7513808, + "minlon": -73.9817094, + "maxlat": 40.7516861, + "maxlon": -73.9814097 + }, + "nodes": [ + 2710918024, + 2710918047, + 2710918055, + 2710918053, + 2710918045, + 2710918044, + 2710918032, + 2710918024 + ], + "geometry": [ + { "lat": 40.7513808, "lon": -73.9815805 }, + { "lat": 40.7516163, "lon": -73.9814097 }, + { "lat": 40.7516861, "lon": -73.9815761 }, + { "lat": 40.7516540, "lon": -73.9815994 }, + { "lat": 40.7516126, "lon": -73.9816296 }, + { "lat": 40.7515972, "lon": -73.9815931 }, + { "lat": 40.7514382, "lon": -73.9817094 }, + { "lat": 40.7513808, "lon": -73.9815805 } + ], + "tags": { + "access": "yes", + "area": "yes", + "highway": "pedestrian", + "leisure": "outdoor_seating", + "name": "Fifth Avenue Tower Urban Plaza", + "operator": "Fifth Avenue Tower", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1115302771, + "bounds": { + "minlat": 40.8145788, + "minlon": -73.9840253, + "maxlat": 40.8146105, + "maxlon": -73.9832089 + }, + "nodes": [ + 752618871, + 7679292214, + 103181764, + 10200267910 + ], + "geometry": [ + { "lat": 40.8145788, "lon": -73.9832089 }, + { "lat": 40.8146060, "lon": -73.9835454 }, + { "lat": 40.8146105, "lon": -73.9838020 }, + { "lat": 40.8145867, "lon": -73.9840253 } + ], + "tags": { + "highway": "residential", + "name": "Old River Road", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Old River", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 1115991475, + "bounds": { + "minlat": 40.8801899, + "minlon": -73.9102346, + "maxlat": 40.8802201, + "maxlon": -73.9101894 + }, + "nodes": [ + 10207247488, + 10207247491 + ], + "geometry": [ + { "lat": 40.8801899, "lon": -73.9102346 }, + { "lat": 40.8802201, "lon": -73.9101894 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991476, + "bounds": { + "minlat": 40.8801476, + "minlon": -73.9103351, + "maxlat": 40.8801899, + "maxlon": -73.9102346 + }, + "nodes": [ + 10207247488, + 10207247516, + 10207247489 + ], + "geometry": [ + { "lat": 40.8801899, "lon": -73.9102346 }, + { "lat": 40.8801702, "lon": -73.9102701 }, + { "lat": 40.8801476, "lon": -73.9103351 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991477, + "bounds": { + "minlat": 40.8800552, + "minlon": -73.9101987, + "maxlat": 40.8801607, + "maxlon": -73.9100690 + }, + "nodes": [ + 10207247495, + 10207247496 + ], + "geometry": [ + { "lat": 40.8801607, "lon": -73.9101987 }, + { "lat": 40.8800552, "lon": -73.9100690 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991478, + "bounds": { + "minlat": 40.8800846, + "minlon": -73.9101526, + "maxlat": 40.8801898, + "maxlon": -73.9100244 + }, + "nodes": [ + 10207247493, + 10207247494 + ], + "geometry": [ + { "lat": 40.8801898, "lon": -73.9101526 }, + { "lat": 40.8800846, "lon": -73.9100244 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991479, + "bounds": { + "minlat": 40.8801898, + "minlon": -73.9101894, + "maxlat": 40.8802201, + "maxlon": -73.9101526 + }, + "nodes": [ + 10207247491, + 10207247493 + ], + "geometry": [ + { "lat": 40.8802201, "lon": -73.9101894 }, + { "lat": 40.8801898, "lon": -73.9101526 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991480, + "bounds": { + "minlat": 40.8800455, + "minlon": -73.9100244, + "maxlat": 40.8800846, + "maxlon": -73.9099767 + }, + "nodes": [ + 10207247494, + 10207247492 + ], + "geometry": [ + { "lat": 40.8800846, "lon": -73.9100244 }, + { "lat": 40.8800455, "lon": -73.9099767 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991481, + "bounds": { + "minlat": 40.8801607, + "minlon": -73.9102346, + "maxlat": 40.8801899, + "maxlon": -73.9101987 + }, + "nodes": [ + 10207247488, + 10207247495 + ], + "geometry": [ + { "lat": 40.8801899, "lon": -73.9102346 }, + { "lat": 40.8801607, "lon": -73.9101987 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991482, + "bounds": { + "minlat": 40.8800151, + "minlon": -73.9100690, + "maxlat": 40.8800552, + "maxlon": -73.9100197 + }, + "nodes": [ + 10207247496, + 10207247490 + ], + "geometry": [ + { "lat": 40.8800552, "lon": -73.9100690 }, + { "lat": 40.8800151, "lon": -73.9100197 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991483, + "bounds": { + "minlat": 40.8805123, + "minlon": -73.9099156, + "maxlat": 40.8805679, + "maxlon": -73.9098278 + }, + "nodes": [ + 10207247512, + 10207247513 + ], + "geometry": [ + { "lat": 40.8805679, "lon": -73.9099156 }, + { "lat": 40.8805123, "lon": -73.9098278 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991484, + "bounds": { + "minlat": 40.8804686, + "minlon": -73.9099652, + "maxlat": 40.8805256, + "maxlon": -73.9098779 + }, + "nodes": [ + 10207247511, + 10207247510 + ], + "geometry": [ + { "lat": 40.8805256, "lon": -73.9099652 }, + { "lat": 40.8804686, "lon": -73.9098779 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991485, + "bounds": { + "minlat": 40.8804075, + "minlon": -73.9100357, + "maxlat": 40.8804641, + "maxlon": -73.9099477 + }, + "nodes": [ + 10207247508, + 10207247509 + ], + "geometry": [ + { "lat": 40.8804641, "lon": -73.9100357 }, + { "lat": 40.8804075, "lon": -73.9099477 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991486, + "bounds": { + "minlat": 40.8803392, + "minlon": -73.9101083, + "maxlat": 40.8803969, + "maxlon": -73.9100238 + }, + "nodes": [ + 10207247506, + 10207247507 + ], + "geometry": [ + { "lat": 40.8803969, "lon": -73.9101083 }, + { "lat": 40.8803392, "lon": -73.9100238 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991487, + "bounds": { + "minlat": 40.8802000, + "minlon": -73.9094620, + "maxlat": 40.8805332, + "maxlon": -73.9091648 + }, + "nodes": [ + 1581436700, + 10207247505 + ], + "geometry": [ + { "lat": 40.8802000, "lon": -73.9094620 }, + { "lat": 40.8805332, "lon": -73.9091648 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991488, + "bounds": { + "minlat": 40.8803240, + "minlon": -73.9100238, + "maxlat": 40.8803392, + "maxlon": -73.9099975 + }, + "nodes": [ + 10207247507, + 10207247504 + ], + "geometry": [ + { "lat": 40.8803392, "lon": -73.9100238 }, + { "lat": 40.8803240, "lon": -73.9099975 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991489, + "bounds": { + "minlat": 40.8804641, + "minlon": -73.9100710, + "maxlat": 40.8804878, + "maxlon": -73.9100357 + }, + "nodes": [ + 10207247502, + 10207247508 + ], + "geometry": [ + { "lat": 40.8804878, "lon": -73.9100710 }, + { "lat": 40.8804641, "lon": -73.9100357 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991490, + "bounds": { + "minlat": 40.8803897, + "minlon": -73.9099477, + "maxlat": 40.8804075, + "maxlon": -73.9099200 + }, + "nodes": [ + 10207247509, + 10207247503 + ], + "geometry": [ + { "lat": 40.8804075, "lon": -73.9099477 }, + { "lat": 40.8803897, "lon": -73.9099200 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991491, + "bounds": { + "minlat": 40.8804484, + "minlon": -73.9098779, + "maxlat": 40.8804686, + "maxlon": -73.9098469 + }, + "nodes": [ + 10207247510, + 10207247501 + ], + "geometry": [ + { "lat": 40.8804686, "lon": -73.9098779 }, + { "lat": 40.8804484, "lon": -73.9098469 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991492, + "bounds": { + "minlat": 40.8805256, + "minlon": -73.9099994, + "maxlat": 40.8805499, + "maxlon": -73.9099652 + }, + "nodes": [ + 10207247500, + 10207247511 + ], + "geometry": [ + { "lat": 40.8805499, "lon": -73.9099994 }, + { "lat": 40.8805256, "lon": -73.9099652 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991493, + "bounds": { + "minlat": 40.8805679, + "minlon": -73.9099520, + "maxlat": 40.8805910, + "maxlon": -73.9099156 + }, + "nodes": [ + 10207247498, + 10207247512 + ], + "geometry": [ + { "lat": 40.8805910, "lon": -73.9099520 }, + { "lat": 40.8805679, "lon": -73.9099156 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991494, + "bounds": { + "minlat": 40.8804915, + "minlon": -73.9098278, + "maxlat": 40.8805123, + "maxlon": -73.9097951 + }, + "nodes": [ + 10207247513, + 10207247499 + ], + "geometry": [ + { "lat": 40.8805123, "lon": -73.9098278 }, + { "lat": 40.8804915, "lon": -73.9097951 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991495, + "bounds": { + "minlat": 40.8800151, + "minlon": -73.9100197, + "maxlat": 40.8800455, + "maxlon": -73.9099767 + }, + "nodes": [ + 10207247490, + 10207247492 + ], + "geometry": [ + { "lat": 40.8800151, "lon": -73.9100197 }, + { "lat": 40.8800455, "lon": -73.9099767 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991496, + "bounds": { + "minlat": 40.8799386, + "minlon": -73.9101204, + "maxlat": 40.8800151, + "maxlon": -73.9100197 + }, + "nodes": [ + 10207247487, + 10207250517, + 10207247490 + ], + "geometry": [ + { "lat": 40.8799386, "lon": -73.9101204 }, + { "lat": 40.8799770, "lon": -73.9100717 }, + { "lat": 40.8800151, "lon": -73.9100197 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991497, + "bounds": { + "minlat": 40.8804432, + "minlon": -73.9102564, + "maxlat": 40.8804929, + "maxlon": -73.9101800 + }, + "nodes": [ + 10207247514, + 1544756314 + ], + "geometry": [ + { "lat": 40.8804432, "lon": -73.9101800 }, + { "lat": 40.8804929, "lon": -73.9102564 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991498, + "bounds": { + "minlat": 40.8803240, + "minlon": -73.9099975, + "maxlat": 40.8804915, + "maxlon": -73.9097951 + }, + "nodes": [ + 10207247504, + 10207247503, + 10207247501, + 10207247499 + ], + "geometry": [ + { "lat": 40.8803240, "lon": -73.9099975 }, + { "lat": 40.8803897, "lon": -73.9099200 }, + { "lat": 40.8804484, "lon": -73.9098469 }, + { "lat": 40.8804915, "lon": -73.9097951 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991499, + "bounds": { + "minlat": 40.8804223, + "minlon": -73.9101800, + "maxlat": 40.8805910, + "maxlon": -73.9099520 + }, + "nodes": [ + 10207247498, + 10207247500, + 10207247502, + 10207250518, + 10207247514 + ], + "geometry": [ + { "lat": 40.8805910, "lon": -73.9099520 }, + { "lat": 40.8805499, "lon": -73.9099994 }, + { "lat": 40.8804878, "lon": -73.9100710 }, + { "lat": 40.8804223, "lon": -73.9101467 }, + { "lat": 40.8804432, "lon": -73.9101800 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991500, + "bounds": { + "minlat": 40.8803969, + "minlon": -73.9101467, + "maxlat": 40.8804223, + "maxlon": -73.9101083 + }, + "nodes": [ + 10207250518, + 10207247506 + ], + "geometry": [ + { "lat": 40.8804223, "lon": -73.9101467 }, + { "lat": 40.8803969, "lon": -73.9101083 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1115991501, + "bounds": { + "minlat": 40.8805910, + "minlon": -73.9100571, + "maxlat": 40.8806576, + "maxlon": -73.9099520 + }, + "nodes": [ + 10207247498, + 10207247515, + 10207247497 + ], + "geometry": [ + { "lat": 40.8805910, "lon": -73.9099520 }, + { "lat": 40.8806113, "lon": -73.9099836 }, + { "lat": 40.8806576, "lon": -73.9100571 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1116373435, + "bounds": { + "minlat": 40.8421504, + "minlon": -73.9423968, + "maxlat": 40.8422759, + "maxlon": -73.9423442 + }, + "nodes": [ + 7604384465, + 9566927315, + 7604384413 + ], + "geometry": [ + { "lat": 40.8421504, "lon": -73.9423968 }, + { "lat": 40.8422003, "lon": -73.9423759 }, + { "lat": 40.8422759, "lon": -73.9423442 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1116448470, + "bounds": { + "minlat": 40.7734299, + "minlon": -73.9838425, + "maxlat": 40.7736596, + "maxlon": -73.9836797 + }, + "nodes": [ + 10211295972, + 10211295975, + 10211295973, + 10211295976, + 10211295974 + ], + "geometry": [ + { "lat": 40.7736596, "lon": -73.9836797 }, + { "lat": 40.7736083, "lon": -73.9837155 }, + { "lat": 40.7735914, "lon": -73.9837273 }, + { "lat": 40.7735503, "lon": -73.9837566 }, + { "lat": 40.7734299, "lon": -73.9838425 } + ], + "tags": { + "highway": "service", + "maxheight": "6'2\"", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1116636949, + "bounds": { + "minlat": 40.7010069, + "minlon": -73.9808629, + "maxlat": 40.7012341, + "maxlon": -73.9805597 + }, + "nodes": [ + 598050845, + 1670401557, + 8742652242, + 598050853, + 6424527340, + 1670401569 + ], + "geometry": [ + { "lat": 40.7012341, "lon": -73.9808629 }, + { "lat": 40.7011618, "lon": -73.9807312 }, + { "lat": 40.7011050, "lon": -73.9806634 }, + { "lat": 40.7010818, "lon": -73.9806358 }, + { "lat": 40.7010215, "lon": -73.9805745 }, + { "lat": 40.7010069, "lon": -73.9805597 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Navy Street", + "name:etymology:wikidata": "Q524435", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Navy", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1116636950, + "bounds": { + "minlat": 40.7012341, + "minlon": -73.9808629, + "maxlat": 40.7014105, + "maxlon": -73.9808245 + }, + "nodes": [ + 6424527336, + 10004163956, + 598050845 + ], + "geometry": [ + { "lat": 40.7014105, "lon": -73.9808245 }, + { "lat": 40.7013474, "lon": -73.9808382 }, + { "lat": 40.7012341, "lon": -73.9808629 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Hudson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1116636951, + "bounds": { + "minlat": 40.7029090, + "minlon": -73.9811240, + "maxlat": 40.7035285, + "maxlon": -73.9810754 + }, + "nodes": [ + 9800456560, + 42500302, + 10253436248, + 42469364 + ], + "geometry": [ + { "lat": 40.7035285, "lon": -73.9810754 }, + { "lat": 40.7030712, "lon": -73.9811125 }, + { "lat": 40.7029768, "lon": -73.9811183 }, + { "lat": 40.7029090, "lon": -73.9811240 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "Hudson Avenue", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1117291453, + "bounds": { + "minlat": 40.8649730, + "minlon": -73.9809230, + "maxlat": 40.8681830, + "maxlon": -73.9778880 + }, + "nodes": [ + 103110750, + 103110751, + 103110753, + 103110755, + 103110757, + 103110762, + 103110764, + 103110766, + 103110769, + 103110771, + 103110772, + 103110773 + ], + "geometry": [ + { "lat": 40.8681830, "lon": -73.9779010 }, + { "lat": 40.8680890, "lon": -73.9778880 }, + { "lat": 40.8680040, "lon": -73.9778940 }, + { "lat": 40.8679110, "lon": -73.9779210 }, + { "lat": 40.8678240, "lon": -73.9779690 }, + { "lat": 40.8677520, "lon": -73.9780290 }, + { "lat": 40.8673935, "lon": -73.9783878 }, + { "lat": 40.8672640, "lon": -73.9785140 }, + { "lat": 40.8668640, "lon": -73.9788290 }, + { "lat": 40.8666110, "lon": -73.9790510 }, + { "lat": 40.8658020, "lon": -73.9798870 }, + { "lat": 40.8649730, "lon": -73.9809230 } + ], + "tags": { + "highway": "residential", + "name": "Pine Hill Road", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pine Hill", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1117291454, + "bounds": { + "minlat": 40.8681190, + "minlon": -73.9816390, + "maxlat": 40.8695363, + "maxlon": -73.9804437 + }, + "nodes": [ + 103110710, + 103110717, + 103110718, + 103110721, + 103110722, + 103110723, + 103110724, + 103110725, + 103110726, + 103110728 + ], + "geometry": [ + { "lat": 40.8681190, "lon": -73.9816390 }, + { "lat": 40.8684380, "lon": -73.9815290 }, + { "lat": 40.8685480, "lon": -73.9814600 }, + { "lat": 40.8688410, "lon": -73.9812510 }, + { "lat": 40.8692720, "lon": -73.9809410 }, + { "lat": 40.8693496, "lon": -73.9808791 }, + { "lat": 40.8694142, "lon": -73.9807971 }, + { "lat": 40.8694758, "lon": -73.9806800 }, + { "lat": 40.8695113, "lon": -73.9805664 }, + { "lat": 40.8695363, "lon": -73.9804437 } + ], + "tags": { + "highway": "residential", + "name": "Pine Hill Road", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Pine Hill", + "tiger:name_type": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1117295514, + "bounds": { + "minlat": 40.8621040, + "minlon": -73.9826591, + "maxlat": 40.8623404, + "maxlon": -73.9822040 + }, + "nodes": [ + 10219054068, + 103204853 + ], + "geometry": [ + { "lat": 40.8623404, "lon": -73.9826591 }, + { "lat": 40.8621040, "lon": -73.9822040 } + ], + "tags": { + "highway": "residential", + "incline": "steep", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Woodland Place", + "oneway": "no", + "sidewalk": "right", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Woodland", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1117295515, + "bounds": { + "minlat": 40.8623404, + "minlon": -73.9830310, + "maxlat": 40.8625340, + "maxlon": -73.9826591 + }, + "nodes": [ + 103204851, + 10219054068 + ], + "geometry": [ + { "lat": 40.8625340, "lon": -73.9830310 }, + { "lat": 40.8623404, "lon": -73.9826591 } + ], + "tags": { + "highway": "residential", + "incline": "steep", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Woodland Place", + "oneway": "no", + "sidewalk": "left", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Woodland", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1117446653, + "bounds": { + "minlat": 40.7423533, + "minlon": -74.0090763, + "maxlat": 40.7425908, + "maxlon": -74.0089056 + }, + "nodes": [ + 8288270013, + 9015896832, + 12161932042, + 10220180400, + 10220180398, + 12161932046, + 12161932045, + 8288270014, + 12161932044, + 7779310094, + 12161932043, + 8288270015, + 12161932047, + 402480678 + ], + "geometry": [ + { "lat": 40.7425908, "lon": -74.0090483 }, + { "lat": 40.7424601, "lon": -74.0090737 }, + { "lat": 40.7424411, "lon": -74.0090753 }, + { "lat": 40.7424224, "lon": -74.0090763 }, + { "lat": 40.7424062, "lon": -74.0090748 }, + { "lat": 40.7423976, "lon": -74.0090698 }, + { "lat": 40.7423912, "lon": -74.0090640 }, + { "lat": 40.7423854, "lon": -74.0090570 }, + { "lat": 40.7423798, "lon": -74.0090449 }, + { "lat": 40.7423725, "lon": -74.0090262 }, + { "lat": 40.7423683, "lon": -74.0090083 }, + { "lat": 40.7423652, "lon": -74.0089916 }, + { "lat": 40.7423615, "lon": -74.0089682 }, + { "lat": 40.7423533, "lon": -74.0089056 } + ], + "tags": { + "change": "no", + "destination": "Pier 57", + "highway": "service", + "lane_markings": "yes", + "lanes": "2", + "maxspeed:advisory": "15 mph", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt", + "turn:lanes": "reverse|left;through" + } +}, +{ + "type": "way", + "id": 1117680758, + "bounds": { + "minlat": 40.7559184, + "minlon": -73.9863795, + "maxlat": 40.7566665, + "maxlon": -73.9861358 + }, + "nodes": [ + 6597498385, + 12055677927, + 12055677929, + 12055677928, + 6597498409, + 10222417529, + 10222417532, + 7618605781 + ], + "geometry": [ + { "lat": 40.7566665, "lon": -73.9861358 }, + { "lat": 40.7566379, "lon": -73.9861439 }, + { "lat": 40.7565845, "lon": -73.9861590 }, + { "lat": 40.7565422, "lon": -73.9861709 }, + { "lat": 40.7565238, "lon": -73.9861761 }, + { "lat": 40.7563095, "lon": -73.9862496 }, + { "lat": 40.7561713, "lon": -73.9862955 }, + { "lat": 40.7559184, "lon": -73.9863795 } + ], + "tags": { + "access": "yes", + "bicycle": "dismount", + "cycleway": "no", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "note": "closed to motor vehicles May 24, 2009", + "oneway": "no", + "surface": "paving_stones", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1117765645, + "bounds": { + "minlat": 40.7273384, + "minlon": -73.9908856, + "maxlat": 40.7275413, + "maxlon": -73.9907454 + }, + "nodes": [ + 10223156262, + 10223156264, + 10223156265, + 10223156263 + ], + "geometry": [ + { "lat": 40.7275413, "lon": -73.9907454 }, + { "lat": 40.7274777, "lon": -73.9907897 }, + { "lat": 40.7274684, "lon": -73.9907961 }, + { "lat": 40.7273384, "lon": -73.9908856 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1117767124, + "bounds": { + "minlat": 40.7541617, + "minlon": -73.9282165, + "maxlat": 40.7544134, + "maxlon": -73.9276820 + }, + "nodes": [ + 10223171207, + 10223171209, + 10223171210, + 10223171208 + ], + "geometry": [ + { "lat": 40.7544134, "lon": -73.9282165 }, + { "lat": 40.7543805, "lon": -73.9281465 }, + { "lat": 40.7543756, "lon": -73.9281361 }, + { "lat": 40.7541617, "lon": -73.9276820 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1117773406, + "bounds": { + "minlat": 40.7697736, + "minlon": -73.9101261, + "maxlat": 40.7702010, + "maxlon": -73.9098230 + }, + "nodes": [ + 10223199514, + 10223225919, + 10223225920, + 10223199515, + 10223199516, + 10223225917, + 10223225918 + ], + "geometry": [ + { "lat": 40.7697736, "lon": -73.9098230 }, + { "lat": 40.7698308, "lon": -73.9099066 }, + { "lat": 40.7698511, "lon": -73.9099367 }, + { "lat": 40.7699697, "lon": -73.9101119 }, + { "lat": 40.7699877, "lon": -73.9101261 }, + { "lat": 40.7700065, "lon": -73.9101214 }, + { "lat": 40.7702010, "lon": -73.9098880 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1117788989, + "bounds": { + "minlat": 40.7101398, + "minlon": -74.0150586, + "maxlat": 40.7107523, + "maxlon": -74.0148409 + }, + "nodes": [ + 11422226529, + 11422226528, + 11422226527, + 10223354308, + 13019379933, + 10223354309, + 11422226525, + 11422226526, + 11422226530 + ], + "geometry": [ + { "lat": 40.7107523, "lon": -74.0148409 }, + { "lat": 40.7107404, "lon": -74.0148647 }, + { "lat": 40.7107191, "lon": -74.0148961 }, + { "lat": 40.7106904, "lon": -74.0149149 }, + { "lat": 40.7104234, "lon": -74.0149967 }, + { "lat": 40.7102212, "lon": -74.0150586 }, + { "lat": 40.7101878, "lon": -74.0150585 }, + { "lat": 40.7101548, "lon": -74.0150420 }, + { "lat": 40.7101398, "lon": -74.0150329 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1117867024, + "bounds": { + "minlat": 40.7564255, + "minlon": -73.9859959, + "maxlat": 40.7565163, + "maxlon": -73.9857810 + }, + "nodes": [ + 9647769356, + 12055680088, + 4578017557 + ], + "geometry": [ + { "lat": 40.7564255, "lon": -73.9857810 }, + { "lat": 40.7565023, "lon": -73.9859627 }, + { "lat": 40.7565163, "lon": -73.9859959 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "3", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through" + } +}, +{ + "type": "way", + "id": 1117867025, + "bounds": { + "minlat": 40.7566673, + "minlon": -73.9864580, + "maxlat": 40.7567100, + "maxlon": -73.9863565 + }, + "nodes": [ + 4578017558, + 42439981 + ], + "geometry": [ + { "lat": 40.7566673, "lon": -73.9863565 }, + { "lat": 40.7567100, "lon": -73.9864580 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "3", + "name": "West 43rd Street", + "name:ru": "Западная 43-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through" + } +}, +{ + "type": "way", + "id": 1117867026, + "bounds": { + "minlat": 40.7573424, + "minlon": -73.9860883, + "maxlat": 40.7573741, + "maxlon": -73.9860116 + }, + "nodes": [ + 10224024813, + 42439984 + ], + "geometry": [ + { "lat": 40.7573741, "lon": -73.9860883 }, + { "lat": 40.7573424, "lon": -73.9860116 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1117867027, + "bounds": { + "minlat": 40.7573741, + "minlon": -73.9861699, + "maxlat": 40.7574076, + "maxlon": -73.9860883 + }, + "nodes": [ + 10224024814, + 10224024815, + 3974095828, + 10224024813 + ], + "geometry": [ + { "lat": 40.7574076, "lon": -73.9861699 }, + { "lat": 40.7574052, "lon": -73.9861640 }, + { "lat": 40.7573856, "lon": -73.9861159 }, + { "lat": 40.7573741, "lon": -73.9860883 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1117867028, + "bounds": { + "minlat": 40.7572961, + "minlon": -73.9860116, + "maxlat": 40.7573424, + "maxlon": -73.9858994 + }, + "nodes": [ + 42439984, + 10224024816 + ], + "geometry": [ + { "lat": 40.7573424, "lon": -73.9860116 }, + { "lat": 40.7572961, "lon": -73.9858994 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1117867029, + "bounds": { + "minlat": 40.7572084, + "minlon": -73.9858994, + "maxlat": 40.7572961, + "maxlon": -73.9856903 + }, + "nodes": [ + 10224024816, + 10224024800, + 12055677931, + 6598535230, + 9235539560 + ], + "geometry": [ + { "lat": 40.7572961, "lon": -73.9858994 }, + { "lat": 40.7572809, "lon": -73.9858632 }, + { "lat": 40.7572664, "lon": -73.9858286 }, + { "lat": 40.7572239, "lon": -73.9857273 }, + { "lat": 40.7572084, "lon": -73.9856903 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1117867038, + "bounds": { + "minlat": 40.7567712, + "minlon": -73.9853729, + "maxlat": 40.7578953, + "maxlon": -73.9827118 + }, + "nodes": [ + 42430344, + 8373393481, + 8318633103, + 9665064784, + 6597464446 + ], + "geometry": [ + { "lat": 40.7567712, "lon": -73.9827118 }, + { "lat": 40.7568243, "lon": -73.9828376 }, + { "lat": 40.7570948, "lon": -73.9834777 }, + { "lat": 40.7576657, "lon": -73.9848288 }, + { "lat": 40.7578953, "lon": -73.9853729 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1117867039, + "bounds": { + "minlat": 40.7580108, + "minlon": -73.9857320, + "maxlat": 40.7580455, + "maxlon": -73.9856493 + }, + "nodes": [ + 10224032629, + 3974095832, + 6597464445 + ], + "geometry": [ + { "lat": 40.7580108, "lon": -73.9856493 }, + { "lat": 40.7580252, "lon": -73.9856837 }, + { "lat": 40.7580455, "lon": -73.9857320 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1117867040, + "bounds": { + "minlat": 40.7579238, + "minlon": -73.9856493, + "maxlat": 40.7580108, + "maxlon": -73.9854396 + }, + "nodes": [ + 10224032630, + 42428297, + 10224032629 + ], + "geometry": [ + { "lat": 40.7579238, "lon": -73.9854396 }, + { "lat": 40.7579634, "lon": -73.9855335 }, + { "lat": 40.7580108, "lon": -73.9856493 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1117867041, + "bounds": { + "minlat": 40.7578953, + "minlon": -73.9854396, + "maxlat": 40.7579238, + "maxlon": -73.9853729 + }, + "nodes": [ + 6597464446, + 10224032638, + 10224032630 + ], + "geometry": [ + { "lat": 40.7578953, "lon": -73.9853729 }, + { "lat": 40.7579142, "lon": -73.9854172 }, + { "lat": 40.7579238, "lon": -73.9854396 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1117885081, + "bounds": { + "minlat": 40.7239400, + "minlon": -73.9903454, + "maxlat": 40.7249299, + "maxlon": -73.9879681 + }, + "nodes": [ + 42442843, + 7977873333, + 4968494268, + 42453601 + ], + "geometry": [ + { "lat": 40.7249299, "lon": -73.9903454 }, + { "lat": 40.7248819, "lon": -73.9902238 }, + { "lat": 40.7239933, "lon": -73.9881105 }, + { "lat": 40.7239400, "lon": -73.9879681 } + ], + "tags": { + "alt_name": "LaSalle Academy Place", + "alt_name:ko": "이스트 2번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 2nd Street", + "name:ko": "이스트 2nd 스트리트", + "name:ru": "Восточная 2-я стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1117942067, + "bounds": { + "minlat": 40.7430594, + "minlon": -74.0085446, + "maxlat": 40.7431598, + "maxlon": -74.0082405 + }, + "nodes": [ + 4207862999, + 12161932058, + 4379966360, + 12161932048, + 12161932049, + 12161932050, + 42445769 + ], + "geometry": [ + { "lat": 40.7430594, "lon": -74.0082405 }, + { "lat": 40.7431149, "lon": -74.0083777 }, + { "lat": 40.7431427, "lon": -74.0084462 }, + { "lat": 40.7431502, "lon": -74.0084701 }, + { "lat": 40.7431549, "lon": -74.0084912 }, + { "lat": 40.7431576, "lon": -74.0085144 }, + { "lat": 40.7431598, "lon": -74.0085446 } + ], + "tags": { + "access:lanes": "yes|no|yes", + "bicycle": "no|yes|no", + "change": "no", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 15th Street", + "name:ru": "Западная 15-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||right" + } +}, +{ + "type": "way", + "id": 1117988440, + "bounds": { + "minlat": 40.7164942, + "minlon": -73.9430024, + "maxlat": 40.7165299, + "maxlon": -73.9426001 + }, + "nodes": [ + 10225069717, + 10225069719, + 10225069720, + 10225069718 + ], + "geometry": [ + { "lat": 40.7164942, "lon": -73.9430024 }, + { "lat": 40.7165017, "lon": -73.9429207 }, + { "lat": 40.7165040, "lon": -73.9428943 }, + { "lat": 40.7165299, "lon": -73.9426001 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118008622, + "bounds": { + "minlat": 40.7243414, + "minlon": -73.9195093, + "maxlat": 40.7249196, + "maxlon": -73.9190075 + }, + "nodes": [ + 8231732595, + 7644827966, + 10225218316, + 10225223525, + 10225223519, + 10225223517, + 10225223518 + ], + "geometry": [ + { "lat": 40.7249196, "lon": -73.9195093 }, + { "lat": 40.7248776, "lon": -73.9193707 }, + { "lat": 40.7248333, "lon": -73.9192233 }, + { "lat": 40.7247739, "lon": -73.9192619 }, + { "lat": 40.7246278, "lon": -73.9193568 }, + { "lat": 40.7244471, "lon": -73.9194741 }, + { "lat": 40.7243414, "lon": -73.9190075 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118008623, + "bounds": { + "minlat": 40.7242383, + "minlon": -73.9193568, + "maxlat": 40.7247739, + "maxlon": -73.9180308 + }, + "nodes": [ + 10225223519, + 10225223520, + 10225223521, + 10225223522, + 10225223523, + 10225223524, + 10225223526, + 10225223525 + ], + "geometry": [ + { "lat": 40.7246278, "lon": -73.9193568 }, + { "lat": 40.7245997, "lon": -73.9192478 }, + { "lat": 40.7244658, "lon": -73.9187663 }, + { "lat": 40.7243517, "lon": -73.9186767 }, + { "lat": 40.7242383, "lon": -73.9181231 }, + { "lat": 40.7244988, "lon": -73.9180308 }, + { "lat": 40.7247545, "lon": -73.9191750 }, + { "lat": 40.7247739, "lon": -73.9192619 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118011429, + "bounds": { + "minlat": 40.8184748, + "minlon": -73.9283634, + "maxlat": 40.8185541, + "maxlon": -73.9278841 + }, + "nodes": [ + 10225241481, + 13330003697, + 10225241482, + 10225241483, + 10225241484, + 10225241485 + ], + "geometry": [ + { "lat": 40.8185054, "lon": -73.9283634 }, + { "lat": 40.8184936, "lon": -73.9283000 }, + { "lat": 40.8184875, "lon": -73.9282674 }, + { "lat": 40.8184795, "lon": -73.9282252 }, + { "lat": 40.8185541, "lon": -73.9281946 }, + { "lat": 40.8184748, "lon": -73.9278841 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118015256, + "bounds": { + "minlat": 40.7726894, + "minlon": -73.9066083, + "maxlat": 40.7731017, + "maxlon": -73.9062669 + }, + "nodes": [ + 10225266833, + 10225266837, + 10225266834, + 10225266836, + 10225266835 + ], + "geometry": [ + { "lat": 40.7731017, "lon": -73.9064048 }, + { "lat": 40.7730420, "lon": -73.9064736 }, + { "lat": 40.7729314, "lon": -73.9066083 }, + { "lat": 40.7727464, "lon": -73.9063476 }, + { "lat": 40.7726894, "lon": -73.9062669 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118015257, + "bounds": { + "minlat": 40.7725942, + "minlon": -73.9066931, + "maxlat": 40.7728776, + "maxlon": -73.9063827 + }, + "nodes": [ + 10225266838, + 10225266842, + 10225266839, + 10225266840, + 10225266841 + ], + "geometry": [ + { "lat": 40.7725942, "lon": -73.9063827 }, + { "lat": 40.7726495, "lon": -73.9064660 }, + { "lat": 40.7726771, "lon": -73.9065037 }, + { "lat": 40.7727231, "lon": -73.9064699 }, + { "lat": 40.7728776, "lon": -73.9066931 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118087810, + "bounds": { + "minlat": 40.7182133, + "minlon": -73.9283170, + "maxlat": 40.7185621, + "maxlon": -73.9281501 + }, + "nodes": [ + 10225788173, + 10225788172 + ], + "geometry": [ + { "lat": 40.7185621, "lon": -73.9283170 }, + { "lat": 40.7182133, "lon": -73.9281501 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118087811, + "bounds": { + "minlat": 40.7180046, + "minlon": -73.9282933, + "maxlat": 40.7181790, + "maxlon": -73.9282210 + }, + "nodes": [ + 7825997330, + 10225788174 + ], + "geometry": [ + { "lat": 40.7181790, "lon": -73.9282933 }, + { "lat": 40.7180046, "lon": -73.9282210 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118087812, + "bounds": { + "minlat": 40.7182432, + "minlon": -73.9288087, + "maxlat": 40.7187345, + "maxlon": -73.9285878 + }, + "nodes": [ + 7825997327, + 10225788175, + 7825997328 + ], + "geometry": [ + { "lat": 40.7187345, "lon": -73.9288087 }, + { "lat": 40.7186322, "lon": -73.9287484 }, + { "lat": 40.7182432, "lon": -73.9285878 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118087813, + "bounds": { + "minlat": 40.7186774, + "minlon": -73.9276221, + "maxlat": 40.7189217, + "maxlon": -73.9275180 + }, + "nodes": [ + 10225788180, + 10225788178 + ], + "geometry": [ + { "lat": 40.7189217, "lon": -73.9276221 }, + { "lat": 40.7186774, "lon": -73.9275180 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118087814, + "bounds": { + "minlat": 40.7189217, + "minlon": -73.9276672, + "maxlat": 40.7190274, + "maxlon": -73.9276221 + }, + "nodes": [ + 10225788179, + 10225788180 + ], + "geometry": [ + { "lat": 40.7190274, "lon": -73.9276672 }, + { "lat": 40.7189217, "lon": -73.9276221 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118087815, + "bounds": { + "minlat": 40.7185621, + "minlon": -73.9284413, + "maxlat": 40.7188256, + "maxlon": -73.9283170 + }, + "nodes": [ + 10225788171, + 10225788173 + ], + "geometry": [ + { "lat": 40.7188256, "lon": -73.9284413 }, + { "lat": 40.7185621, "lon": -73.9283170 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118343532, + "bounds": { + "minlat": 40.8053811, + "minlon": -73.9383717, + "maxlat": 40.8055986, + "maxlon": -73.9382318 + }, + "nodes": [ + 10228306713, + 10228306715, + 10228306716, + 10228306714 + ], + "geometry": [ + { "lat": 40.8055986, "lon": -73.9382318 }, + { "lat": 40.8055474, "lon": -73.9382649 }, + { "lat": 40.8055211, "lon": -73.9382817 }, + { "lat": 40.8053811, "lon": -73.9383717 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1118420725, + "bounds": { + "minlat": 40.7587749, + "minlon": -73.9853242, + "maxlat": 40.7593562, + "maxlon": -73.9851217 + }, + "nodes": [ + 4578044149, + 6598535184 + ], + "geometry": [ + { "lat": 40.7593562, "lon": -73.9851217 }, + { "lat": 40.7587749, "lon": -73.9853242 } + ], + "tags": { + "access": "yes", + "bicycle": "dismount", + "cycleway": "no", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "note": "closed to motor vehicles May 24, 2009", + "oneway": "no", + "surface": "paving_stones", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1118571812, + "bounds": { + "minlat": 40.7215801, + "minlon": -73.9458801, + "maxlat": 40.7215997, + "maxlon": -73.9457234 + }, + "nodes": [ + 2987758896, + 2987758897 + ], + "geometry": [ + { "lat": 40.7215801, "lon": -73.9458801 }, + { "lat": 40.7215997, "lon": -73.9457234 } + ], + "tags": { + "highway": "residential", + "name": "Engert Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1118571813, + "bounds": { + "minlat": 40.7213919, + "minlon": -73.9457234, + "maxlat": 40.7215997, + "maxlon": -73.9455009 + }, + "nodes": [ + 2987758899, + 6228788712, + 2987758897 + ], + "geometry": [ + { "lat": 40.7213919, "lon": -73.9455009 }, + { "lat": 40.7215339, "lon": -73.9456556 }, + { "lat": 40.7215997, "lon": -73.9457234 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1118571814, + "bounds": { + "minlat": 40.7215997, + "minlon": -73.9457234, + "maxlat": 40.7219460, + "maxlon": -73.9420040 + }, + "nodes": [ + 2987758897, + 9789356801, + 42466389, + 9789356846, + 42466392, + 9789356844, + 9937288022, + 42466395, + 9937288021, + 9789356864, + 42466398, + 9789356862, + 9789356883, + 42466401 + ], + "geometry": [ + { "lat": 40.7215997, "lon": -73.9457234 }, + { "lat": 40.7216097, "lon": -73.9456008 }, + { "lat": 40.7216560, "lon": -73.9450680 }, + { "lat": 40.7216734, "lon": -73.9448833 }, + { "lat": 40.7216825, "lon": -73.9447875 }, + { "lat": 40.7216887, "lon": -73.9447222 }, + { "lat": 40.7217614, "lon": -73.9439543 }, + { "lat": 40.7217700, "lon": -73.9438630 }, + { "lat": 40.7217774, "lon": -73.9437856 }, + { "lat": 40.7218506, "lon": -73.9430241 }, + { "lat": 40.7218590, "lon": -73.9429360 }, + { "lat": 40.7218665, "lon": -73.9428554 }, + { "lat": 40.7219383, "lon": -73.9420864 }, + { "lat": 40.7219460, "lon": -73.9420040 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Engert Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1118588273, + "bounds": { + "minlat": 40.7428796, + "minlon": -74.0087977, + "maxlat": 40.7431307, + "maxlon": -74.0087459 + }, + "nodes": [ + 11027912161, + 246648063, + 11027819092 + ], + "geometry": [ + { "lat": 40.7431307, "lon": -74.0087459 }, + { "lat": 40.7430609, "lon": -74.0087605 }, + { "lat": 40.7428796, "lon": -74.0087977 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1118809353, + "bounds": { + "minlat": 40.8659540, + "minlon": -73.9883870, + "maxlat": 40.8660220, + "maxlon": -73.9879806 + }, + "nodes": [ + 103141308, + 10232277855, + 10232277854 + ], + "geometry": [ + { "lat": 40.8659670, "lon": -73.9883870 }, + { "lat": 40.8659540, "lon": -73.9882703 }, + { "lat": 40.8660220, "lon": -73.9879806 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1118809357, + "bounds": { + "minlat": 40.8611572, + "minlon": -73.9847444, + "maxlat": 40.8617004, + "maxlon": -73.9842604 + }, + "nodes": [ + 10232277878, + 10232277877, + 10232277876, + 10232277875, + 10232277874 + ], + "geometry": [ + { "lat": 40.8617004, "lon": -73.9847444 }, + { "lat": 40.8616096, "lon": -73.9846762 }, + { "lat": 40.8614422, "lon": -73.9845125 }, + { "lat": 40.8612759, "lon": -73.9843878 }, + { "lat": 40.8611572, "lon": -73.9842604 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1118825324, + "bounds": { + "minlat": 40.7304591, + "minlon": -73.9515692, + "maxlat": 40.7304718, + "maxlon": -73.9514256 + }, + "nodes": [ + 5052125058, + 2987758879 + ], + "geometry": [ + { "lat": 40.7304718, "lon": -73.9514256 }, + { "lat": 40.7304591, "lon": -73.9515692 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through;right", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 1119076662, + "bounds": { + "minlat": 40.8747486, + "minlon": -73.9868822, + "maxlat": 40.8752632, + "maxlon": -73.9864866 + }, + "nodes": [ + 10234828496, + 10234828281, + 10234828280, + 10234828279, + 10234828278, + 10234828236, + 10234828230, + 10234828277 + ], + "geometry": [ + { "lat": 40.8747486, "lon": -73.9868822 }, + { "lat": 40.8748160, "lon": -73.9868326 }, + { "lat": 40.8748749, "lon": -73.9867844 }, + { "lat": 40.8749154, "lon": -73.9867321 }, + { "lat": 40.8749519, "lon": -73.9866690 }, + { "lat": 40.8750496, "lon": -73.9866090 }, + { "lat": 40.8751867, "lon": -73.9865312 }, + { "lat": 40.8752632, "lon": -73.9864866 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119076682, + "bounds": { + "minlat": 40.8739616, + "minlon": -73.9877419, + "maxlat": 40.8747907, + "maxlon": -73.9872947 + }, + "nodes": [ + 10234828356, + 10234828344, + 10234948433, + 10234828342, + 10234948431, + 10234828340, + 10234948429, + 10234828338, + 10234828355, + 10234828354, + 10234828353, + 10234828352, + 5691951850 + ], + "geometry": [ + { "lat": 40.8747907, "lon": -73.9872947 }, + { "lat": 40.8746061, "lon": -73.9874186 }, + { "lat": 40.8745368, "lon": -73.9874652 }, + { "lat": 40.8745123, "lon": -73.9874816 }, + { "lat": 40.8743609, "lon": -73.9875834 }, + { "lat": 40.8743348, "lon": -73.9876009 }, + { "lat": 40.8741906, "lon": -73.9876977 }, + { "lat": 40.8741682, "lon": -73.9877127 }, + { "lat": 40.8741427, "lon": -73.9877298 }, + { "lat": 40.8740971, "lon": -73.9877419 }, + { "lat": 40.8740646, "lon": -73.9877298 }, + { "lat": 40.8740190, "lon": -73.9876534 }, + { "lat": 40.8739616, "lon": -73.9874935 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119076746, + "bounds": { + "minlat": 40.8692854, + "minlon": -73.9825089, + "maxlat": 40.8729006, + "maxlon": -73.9799013 + }, + "nodes": [ + 103224127, + 103224128, + 518942815, + 10307987451, + 103224129, + 103105724, + 10940720820, + 103224130, + 528864319, + 530805994 + ], + "geometry": [ + { "lat": 40.8692854, "lon": -73.9825089 }, + { "lat": 40.8699892, "lon": -73.9820036 }, + { "lat": 40.8701783, "lon": -73.9818599 }, + { "lat": 40.8706443, "lon": -73.9815251 }, + { "lat": 40.8711339, "lon": -73.9811732 }, + { "lat": 40.8715673, "lon": -73.9808582 }, + { "lat": 40.8718878, "lon": -73.9806265 }, + { "lat": 40.8719328, "lon": -73.9805940 }, + { "lat": 40.8726990, "lon": -73.9800474 }, + { "lat": 40.8729006, "lon": -73.9799013 } + ], + "tags": { + "highway": "tertiary", + "maxheight:signed": "no", + "name": "Broad Avenue", + "sidewalk": "left", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1119076747, + "bounds": { + "minlat": 40.8651341, + "minlon": -73.9829314, + "maxlat": 40.8653832, + "maxlon": -73.9827624 + }, + "nodes": [ + 103285677, + 10234828655 + ], + "geometry": [ + { "lat": 40.8653832, "lon": -73.9827624 }, + { "lat": 40.8651341, "lon": -73.9829314 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119090173, + "bounds": { + "minlat": 40.8694281, + "minlon": -73.9868400, + "maxlat": 40.8694966, + "maxlon": -73.9863646 + }, + "nodes": [ + 10234908306, + 10234908305, + 10234908304, + 10234908303, + 10234908302, + 10234908301 + ], + "geometry": [ + { "lat": 40.8694352, "lon": -73.9863646 }, + { "lat": 40.8694291, "lon": -73.9864746 }, + { "lat": 40.8694281, "lon": -73.9865926 }, + { "lat": 40.8694575, "lon": -73.9866556 }, + { "lat": 40.8694768, "lon": -73.9867388 }, + { "lat": 40.8694966, "lon": -73.9868400 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119289966, + "bounds": { + "minlat": 40.8546620, + "minlon": -73.9883990, + "maxlat": 40.8560516, + "maxlon": -73.9875732 + }, + "nodes": [ + 103204750, + 10236688086, + 103155260 + ], + "geometry": [ + { "lat": 40.8560516, "lon": -73.9875732 }, + { "lat": 40.8559473, "lon": -73.9876192 }, + { "lat": 40.8546620, "lon": -73.9883990 } + ], + "tags": { + "highway": "residential", + "name": "Palmer Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palmer", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1119289968, + "bounds": { + "minlat": 40.8578121, + "minlon": -73.9837226, + "maxlat": 40.8582879, + "maxlon": -73.9832096 + }, + "nodes": [ + 10236688103, + 10236688104 + ], + "geometry": [ + { "lat": 40.8578121, "lon": -73.9837226 }, + { "lat": 40.8582879, "lon": -73.9832096 } + ], + "tags": { + "highway": "residential", + "name": "Reldyes Avenue", + "sidewalk": "left", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Reldyes", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1119289969, + "bounds": { + "minlat": 40.8582879, + "minlon": -73.9832096, + "maxlat": 40.8587340, + "maxlon": -73.9827510 + }, + "nodes": [ + 10236688104, + 103126295, + 103245162 + ], + "geometry": [ + { "lat": 40.8582879, "lon": -73.9832096 }, + { "lat": 40.8584330, "lon": -73.9830570 }, + { "lat": 40.8587340, "lon": -73.9827510 } + ], + "tags": { + "highway": "residential", + "name": "Reldyes Avenue", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Reldyes", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1119398969, + "bounds": { + "minlat": 40.8628183, + "minlon": -73.9868140, + "maxlat": 40.8632989, + "maxlon": -73.9867735 + }, + "nodes": [ + 6103601329, + 8075088197, + 6103601330 + ], + "geometry": [ + { "lat": 40.8628183, "lon": -73.9868140 }, + { "lat": 40.8631106, "lon": -73.9867735 }, + { "lat": 40.8632989, "lon": -73.9868121 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "Broad Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1119398970, + "bounds": { + "minlat": 40.8631450, + "minlon": -73.9871150, + "maxlat": 40.8633551, + "maxlon": -73.9869708 + }, + "nodes": [ + 10238058300, + 10238058299 + ], + "geometry": [ + { "lat": 40.8633551, "lon": -73.9869708 }, + { "lat": 40.8631450, "lon": -73.9871150 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119398971, + "bounds": { + "minlat": 40.8655337, + "minlon": -73.9849672, + "maxlat": 40.8656812, + "maxlon": -73.9848606 + }, + "nodes": [ + 10238136409, + 10238058306 + ], + "geometry": [ + { "lat": 40.8655337, "lon": -73.9849672 }, + { "lat": 40.8656812, "lon": -73.9848606 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119398972, + "bounds": { + "minlat": 40.8655337, + "minlon": -73.9851660, + "maxlat": 40.8655998, + "maxlon": -73.9849672 + }, + "nodes": [ + 10238136410, + 10238136409 + ], + "geometry": [ + { "lat": 40.8655998, "lon": -73.9851660 }, + { "lat": 40.8655337, "lon": -73.9849672 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119509704, + "bounds": { + "minlat": 40.8599670, + "minlon": -73.9900331, + "maxlat": 40.8600318, + "maxlon": -73.9899593 + }, + "nodes": [ + 6888187039, + 10239462461 + ], + "geometry": [ + { "lat": 40.8600318, "lon": -73.9899593 }, + { "lat": 40.8599670, "lon": -73.9900331 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119509706, + "bounds": { + "minlat": 40.8610444, + "minlon": -73.9931790, + "maxlat": 40.8613514, + "maxlon": -73.9921347 + }, + "nodes": [ + 103304156, + 103304157, + 103146284, + 6126762791, + 103304159, + 103304161, + 103304163, + 103304165, + 103304167, + 10239462470 + ], + "geometry": [ + { "lat": 40.8613514, "lon": -73.9931790 }, + { "lat": 40.8612600, "lon": -73.9931193 }, + { "lat": 40.8611895, "lon": -73.9930778 }, + { "lat": 40.8611749, "lon": -73.9930562 }, + { "lat": 40.8611447, "lon": -73.9929800 }, + { "lat": 40.8611064, "lon": -73.9928900 }, + { "lat": 40.8610664, "lon": -73.9927060 }, + { "lat": 40.8610474, "lon": -73.9925400 }, + { "lat": 40.8610444, "lon": -73.9923730 }, + { "lat": 40.8610639, "lon": -73.9921347 } + ], + "tags": { + "highway": "residential", + "name": "Crescent Avenue", + "sidewalk": "left", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crescent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1119509707, + "bounds": { + "minlat": 40.8613514, + "minlon": -73.9932240, + "maxlat": 40.8625070, + "maxlon": -73.9930416 + }, + "nodes": [ + 103304152, + 103304153, + 103304154, + 103304155, + 103304156 + ], + "geometry": [ + { "lat": 40.8625070, "lon": -73.9930416 }, + { "lat": 40.8616954, "lon": -73.9932170 }, + { "lat": 40.8615744, "lon": -73.9932240 }, + { "lat": 40.8614694, "lon": -73.9932130 }, + { "lat": 40.8613514, "lon": -73.9931790 } + ], + "tags": { + "highway": "residential", + "name": "Crescent Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crescent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1119521811, + "bounds": { + "minlat": 40.7948761, + "minlon": -73.9356054, + "maxlat": 40.7951272, + "maxlon": -73.9354326 + }, + "nodes": [ + 10239576930, + 10239576931, + 10239576933, + 10239576932 + ], + "geometry": [ + { "lat": 40.7951272, "lon": -73.9354326 }, + { "lat": 40.7950778, "lon": -73.9354673 }, + { "lat": 40.7950619, "lon": -73.9354782 }, + { "lat": 40.7948761, "lon": -73.9356054 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1119524145, + "bounds": { + "minlat": 40.8511020, + "minlon": -73.9864114, + "maxlat": 40.8511432, + "maxlon": -73.9863418 + }, + "nodes": [ + 4695817863, + 10239602466 + ], + "geometry": [ + { "lat": 40.8511020, "lon": -73.9863418 }, + { "lat": 40.8511432, "lon": -73.9864114 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119524146, + "bounds": { + "minlat": 40.8512166, + "minlon": -73.9862860, + "maxlat": 40.8521767, + "maxlon": -73.9857756 + }, + "nodes": [ + 10239602475, + 10239602474, + 10239602467, + 10239602473, + 10239602468, + 10239602472, + 12692293538, + 10239602471, + 10239602476, + 12692293540, + 12692293539, + 10239602470, + 10239602477, + 10239602469 + ], + "geometry": [ + { "lat": 40.8512610, "lon": -73.9862860 }, + { "lat": 40.8512206, "lon": -73.9862117 }, + { "lat": 40.8512166, "lon": -73.9861802 }, + { "lat": 40.8512191, "lon": -73.9861487 }, + { "lat": 40.8512343, "lon": -73.9861024 }, + { "lat": 40.8512636, "lon": -73.9860556 }, + { "lat": 40.8515681, "lon": -73.9857803 }, + { "lat": 40.8515829, "lon": -73.9857756 }, + { "lat": 40.8518540, "lon": -73.9857966 }, + { "lat": 40.8520054, "lon": -73.9858071 }, + { "lat": 40.8520196, "lon": -73.9858134 }, + { "lat": 40.8520335, "lon": -73.9858265 }, + { "lat": 40.8520695, "lon": -73.9858881 }, + { "lat": 40.8521767, "lon": -73.9860708 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1119524147, + "bounds": { + "minlat": 40.8513718, + "minlon": -73.9862305, + "maxlat": 40.8518540, + "maxlon": -73.9857966 + }, + "nodes": [ + 10239602484, + 10239602476 + ], + "geometry": [ + { "lat": 40.8513718, "lon": -73.9862305 }, + { "lat": 40.8518540, "lon": -73.9857966 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1119524148, + "bounds": { + "minlat": 40.8514854, + "minlon": -73.9864234, + "maxlat": 40.8520695, + "maxlon": -73.9858881 + }, + "nodes": [ + 10239602478, + 10239602477 + ], + "geometry": [ + { "lat": 40.8514854, "lon": -73.9864234 }, + { "lat": 40.8520695, "lon": -73.9858881 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1119524149, + "bounds": { + "minlat": 40.8515931, + "minlon": -73.9866063, + "maxlat": 40.8522852, + "maxlon": -73.9859713 + }, + "nodes": [ + 10239602479, + 10239602469, + 10239602505 + ], + "geometry": [ + { "lat": 40.8515931, "lon": -73.9866063 }, + { "lat": 40.8521767, "lon": -73.9860708 }, + { "lat": 40.8522852, "lon": -73.9859713 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1119524150, + "bounds": { + "minlat": 40.8532027, + "minlon": -73.9857289, + "maxlat": 40.8534147, + "maxlon": -73.9852392 + }, + "nodes": [ + 4695818108, + 4695818107, + 10239602482 + ], + "geometry": [ + { "lat": 40.8532027, "lon": -73.9852392 }, + { "lat": 40.8534147, "lon": -73.9856121 }, + { "lat": 40.8533235, "lon": -73.9857289 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1119524151, + "bounds": { + "minlat": 40.8505582, + "minlon": -73.9869373, + "maxlat": 40.8510288, + "maxlon": -73.9863794 + }, + "nodes": [ + 10239602490, + 10239602489, + 10239602488, + 10239602487 + ], + "geometry": [ + { "lat": 40.8506942, "lon": -73.9869373 }, + { "lat": 40.8505582, "lon": -73.9867589 }, + { "lat": 40.8509123, "lon": -73.9863794 }, + { "lat": 40.8510288, "lon": -73.9865331 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1119524152, + "bounds": { + "minlat": 40.8514163, + "minlon": -73.9874755, + "maxlat": 40.8533235, + "maxlon": -73.9857289 + }, + "nodes": [ + 10239602482, + 10239602501, + 10239602500, + 10239602499, + 10239602483, + 4695817877 + ], + "geometry": [ + { "lat": 40.8533235, "lon": -73.9857289 }, + { "lat": 40.8532535, "lon": -73.9858255 }, + { "lat": 40.8519135, "lon": -73.9870714 }, + { "lat": 40.8518648, "lon": -73.9870553 }, + { "lat": 40.8518381, "lon": -73.9870526 }, + { "lat": 40.8514163, "lon": -73.9874755 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119524153, + "bounds": { + "minlat": 40.8516962, + "minlon": -73.9867814, + "maxlat": 40.8533235, + "maxlon": -73.9854272 + }, + "nodes": [ + 10239602482, + 10239602481, + 10239602465, + 10239602480 + ], + "geometry": [ + { "lat": 40.8533235, "lon": -73.9857289 }, + { "lat": 40.8531480, "lon": -73.9854272 }, + { "lat": 40.8523751, "lon": -73.9861453 }, + { "lat": 40.8516962, "lon": -73.9867814 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119524154, + "bounds": { + "minlat": 40.8506942, + "minlon": -73.9870526, + "maxlat": 40.8518381, + "maxlon": -73.9862305 + }, + "nodes": [ + 10239602490, + 10239602486, + 10239602487, + 10239602466, + 10239602475, + 10239602485, + 10239602484, + 10239602478, + 10239602479, + 10239602480, + 10239602483 + ], + "geometry": [ + { "lat": 40.8506942, "lon": -73.9869373 }, + { "lat": 40.8507398, "lon": -73.9868407 }, + { "lat": 40.8510288, "lon": -73.9865331 }, + { "lat": 40.8511432, "lon": -73.9864114 }, + { "lat": 40.8512610, "lon": -73.9862860 }, + { "lat": 40.8513069, "lon": -73.9862372 }, + { "lat": 40.8513718, "lon": -73.9862305 }, + { "lat": 40.8514854, "lon": -73.9864234 }, + { "lat": 40.8515931, "lon": -73.9866063 }, + { "lat": 40.8516962, "lon": -73.9867814 }, + { "lat": 40.8518381, "lon": -73.9870526 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119524155, + "bounds": { + "minlat": 40.8522852, + "minlon": -73.9859713, + "maxlat": 40.8532027, + "maxlon": -73.9852392 + }, + "nodes": [ + 10239602505, + 10239602504, + 10239602503, + 10239602502, + 4695818108 + ], + "geometry": [ + { "lat": 40.8522852, "lon": -73.9859713 }, + { "lat": 40.8526662, "lon": -73.9856042 }, + { "lat": 40.8528924, "lon": -73.9854714 }, + { "lat": 40.8530933, "lon": -73.9853480 }, + { "lat": 40.8532027, "lon": -73.9852392 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119524156, + "bounds": { + "minlat": 40.8521909, + "minlon": -73.9861453, + "maxlat": 40.8523751, + "maxlon": -73.9857864 + }, + "nodes": [ + 4695818113, + 10239602505, + 10239602465 + ], + "geometry": [ + { "lat": 40.8521909, "lon": -73.9857864 }, + { "lat": 40.8522852, "lon": -73.9859713 }, + { "lat": 40.8523751, "lon": -73.9861453 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1119549096, + "bounds": { + "minlat": 40.7405102, + "minlon": -73.9812047, + "maxlat": 40.7407836, + "maxlon": -73.9810004 + }, + "nodes": [ + 10239803710, + 10239803712, + 10239803713, + 10239803711 + ], + "geometry": [ + { "lat": 40.7405102, "lon": -73.9812047 }, + { "lat": 40.7405618, "lon": -73.9811667 }, + { "lat": 40.7405780, "lon": -73.9811546 }, + { "lat": 40.7407836, "lon": -73.9810004 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1119954840, + "bounds": { + "minlat": 40.8621340, + "minlon": -73.9957349, + "maxlat": 40.8627618, + "maxlon": -73.9956501 + }, + "nodes": [ + 103229106, + 103229107, + 103229108, + 103229109, + 103229110, + 10243214284, + 103146275 + ], + "geometry": [ + { "lat": 40.8621340, "lon": -73.9957101 }, + { "lat": 40.8622400, "lon": -73.9957277 }, + { "lat": 40.8623302, "lon": -73.9957349 }, + { "lat": 40.8624365, "lon": -73.9957317 }, + { "lat": 40.8625381, "lon": -73.9957171 }, + { "lat": 40.8626116, "lon": -73.9957010 }, + { "lat": 40.8627618, "lon": -73.9956501 } + ], + "tags": { + "highway": "residential", + "name": "Station Parkway", + "sidewalk": "both", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Station", + "tiger:name_type": "Pky", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1120016594, + "bounds": { + "minlat": 40.8682091, + "minlon": -73.9910363, + "maxlat": 40.8685743, + "maxlon": -73.9905407 + }, + "nodes": [ + 10243813013, + 10243813012, + 10243813011 + ], + "geometry": [ + { "lat": 40.8682091, "lon": -73.9910363 }, + { "lat": 40.8685514, "lon": -73.9908090 }, + { "lat": 40.8685743, "lon": -73.9905407 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1120019164, + "bounds": { + "minlat": 40.8716243, + "minlon": -73.9881184, + "maxlat": 40.8719056, + "maxlon": -73.9878586 + }, + "nodes": [ + 5938917446, + 5938917447, + 5938917448 + ], + "geometry": [ + { "lat": 40.8719056, "lon": -73.9878586 }, + { "lat": 40.8717100, "lon": -73.9880553 }, + { "lat": 40.8716243, "lon": -73.9881184 } + ], + "tags": { + "dog": "no", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1120234823, + "bounds": { + "minlat": 40.8378722, + "minlon": -73.9218596, + "maxlat": 40.8383420, + "maxlon": -73.9216045 + }, + "nodes": [ + 10245831933, + 10245831934 + ], + "geometry": [ + { "lat": 40.8383420, "lon": -73.9216045 }, + { "lat": 40.8378722, "lon": -73.9218596 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120250291, + "bounds": { + "minlat": 40.8600907, + "minlon": -73.9859897, + "maxlat": 40.8603980, + "maxlon": -73.9856750 + }, + "nodes": [ + 10245975829, + 10252387564, + 103093236 + ], + "geometry": [ + { "lat": 40.8600907, "lon": -73.9859897 }, + { "lat": 40.8601856, "lon": -73.9858854 }, + { "lat": 40.8603980, "lon": -73.9856750 } + ], + "tags": { + "highway": "residential", + "lanes:forward": "2", + "name": "Glenwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glenwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1120250292, + "bounds": { + "minlat": 40.8603980, + "minlon": -73.9856750, + "maxlat": 40.8607657, + "maxlon": -73.9853950 + }, + "nodes": [ + 103093236, + 10122889689 + ], + "geometry": [ + { "lat": 40.8603980, "lon": -73.9856750 }, + { "lat": 40.8607657, "lon": -73.9853950 } + ], + "tags": { + "direction": "backward", + "highway": "residential", + "lanes:backward": "2", + "name": "Glenwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glenwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "through;right|left" + } +}, +{ + "type": "way", + "id": 1120250293, + "bounds": { + "minlat": 40.8607657, + "minlon": -73.9853950, + "maxlat": 40.8642805, + "maxlon": -73.9830176 + }, + "nodes": [ + 10122889689, + 103093238, + 10232277878, + 103093240, + 103093242, + 103093244, + 8073397781, + 103093245, + 103093246, + 103093247, + 103093248, + 10233515893, + 103093250 + ], + "geometry": [ + { "lat": 40.8607657, "lon": -73.9853950 }, + { "lat": 40.8611477, "lon": -73.9851242 }, + { "lat": 40.8617004, "lon": -73.9847444 }, + { "lat": 40.8617490, "lon": -73.9847110 }, + { "lat": 40.8623622, "lon": -73.9842856 }, + { "lat": 40.8629700, "lon": -73.9838660 }, + { "lat": 40.8633353, "lon": -73.9836133 }, + { "lat": 40.8636190, "lon": -73.9834170 }, + { "lat": 40.8638420, "lon": -73.9832660 }, + { "lat": 40.8640230, "lon": -73.9831590 }, + { "lat": 40.8641880, "lon": -73.9830690 }, + { "lat": 40.8642284, "lon": -73.9830507 }, + { "lat": 40.8642805, "lon": -73.9830176 } + ], + "tags": { + "direction": "backward", + "highway": "residential", + "name": "Glenwood Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Glenwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1120251073, + "bounds": { + "minlat": 40.8620800, + "minlon": -73.9877120, + "maxlat": 40.8623674, + "maxlon": -73.9874865 + }, + "nodes": [ + 103224115, + 103224117 + ], + "geometry": [ + { "lat": 40.8620800, "lon": -73.9877120 }, + { "lat": 40.8623674, "lon": -73.9874865 } + ], + "tags": { + "highway": "tertiary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1120251899, + "bounds": { + "minlat": 40.7018260, + "minlon": -73.9926801, + "maxlat": 40.7019413, + "maxlon": -73.9925272 + }, + "nodes": [ + 10245966642, + 10245966643, + 11674209533, + 11674209532, + 10245966644, + 10245966645, + 10245966646, + 11674209530, + 11674209531, + 10245966647, + 10245966658, + 10245966648, + 11674209534, + 11674209535, + 10245966649, + 10245966642 + ], + "geometry": [ + { "lat": 40.7018378, "lon": -73.9926797 }, + { "lat": 40.7019272, "lon": -73.9926360 }, + { "lat": 40.7019366, "lon": -73.9926304 }, + { "lat": 40.7019413, "lon": -73.9926246 }, + { "lat": 40.7019412, "lon": -73.9926160 }, + { "lat": 40.7019387, "lon": -73.9926086 }, + { "lat": 40.7018769, "lon": -73.9925301 }, + { "lat": 40.7018715, "lon": -73.9925272 }, + { "lat": 40.7018648, "lon": -73.9925285 }, + { "lat": 40.7018622, "lon": -73.9925346 }, + { "lat": 40.7018570, "lon": -73.9925497 }, + { "lat": 40.7018274, "lon": -73.9926598 }, + { "lat": 40.7018260, "lon": -73.9926695 }, + { "lat": 40.7018276, "lon": -73.9926775 }, + { "lat": 40.7018332, "lon": -73.9926801 }, + { "lat": 40.7018378, "lon": -73.9926797 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1120278682, + "bounds": { + "minlat": 40.8646526, + "minlon": -73.9745649, + "maxlat": 40.8654388, + "maxlon": -73.9743162 + }, + "nodes": [ + 298918450, + 76465081 + ], + "geometry": [ + { "lat": 40.8654388, "lon": -73.9743162 }, + { "lat": 40.8646526, "lon": -73.9745649 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "bridge": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no", + "turn:lanes": "slight_left;through|none|none" + } +}, +{ + "type": "way", + "id": 1120467987, + "bounds": { + "minlat": 40.8657426, + "minlon": -73.9882703, + "maxlat": 40.8659540, + "maxlon": -73.9878009 + }, + "nodes": [ + 10232277855, + 10247979337 + ], + "geometry": [ + { "lat": 40.8659540, "lon": -73.9882703 }, + { "lat": 40.8657426, "lon": -73.9878009 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1120494063, + "bounds": { + "minlat": 40.8115978, + "minlon": -73.9866981, + "maxlat": 40.8117815, + "maxlon": -73.9866192 + }, + "nodes": [ + 10248258209, + 10248163705, + 10248163706, + 10248163707, + 10248163708 + ], + "geometry": [ + { "lat": 40.8115978, "lon": -73.9866707 }, + { "lat": 40.8116110, "lon": -73.9866897 }, + { "lat": 40.8116465, "lon": -73.9866981 }, + { "lat": 40.8116940, "lon": -73.9866798 }, + { "lat": 40.8117815, "lon": -73.9866192 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120494064, + "bounds": { + "minlat": 40.8112381, + "minlon": -73.9859121, + "maxlat": 40.8114353, + "maxlon": -73.9857111 + }, + "nodes": [ + 10248163700, + 10248163701, + 10248163702, + 10248163703 + ], + "geometry": [ + { "lat": 40.8114353, "lon": -73.9857111 }, + { "lat": 40.8112546, "lon": -73.9858362 }, + { "lat": 40.8112419, "lon": -73.9858611 }, + { "lat": 40.8112381, "lon": -73.9859121 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120494066, + "bounds": { + "minlat": 40.8108913, + "minlon": -73.9849827, + "maxlat": 40.8110908, + "maxlon": -73.9848809 + }, + "nodes": [ + 10248258212, + 10248258213, + 10248258214, + 10248258215 + ], + "geometry": [ + { "lat": 40.8108913, "lon": -73.9849586 }, + { "lat": 40.8109214, "lon": -73.9849827 }, + { "lat": 40.8109496, "lon": -73.9849802 }, + { "lat": 40.8110908, "lon": -73.9848809 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120494067, + "bounds": { + "minlat": 40.8103189, + "minlon": -73.9835520, + "maxlat": 40.8103482, + "maxlon": -73.9834744 + }, + "nodes": [ + 10248258210, + 10248258211 + ], + "geometry": [ + { "lat": 40.8103189, "lon": -73.9834744 }, + { "lat": 40.8103482, "lon": -73.9835520 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120494069, + "bounds": { + "minlat": 40.8104336, + "minlon": -73.9855561, + "maxlat": 40.8105086, + "maxlon": -73.9855047 + }, + "nodes": [ + 10248258218, + 10248258219 + ], + "geometry": [ + { "lat": 40.8105086, "lon": -73.9855047 }, + { "lat": 40.8104336, "lon": -73.9855561 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120494070, + "bounds": { + "minlat": 40.8111243, + "minlon": -73.9851032, + "maxlat": 40.8111891, + "maxlon": -73.9850591 + }, + "nodes": [ + 10248258216, + 10248258217 + ], + "geometry": [ + { "lat": 40.8111891, "lon": -73.9850591 }, + { "lat": 40.8111243, "lon": -73.9851032 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120494072, + "bounds": { + "minlat": 40.8106393, + "minlon": -73.9860849, + "maxlat": 40.8107061, + "maxlon": -73.9860361 + }, + "nodes": [ + 10248258222, + 10248258223 + ], + "geometry": [ + { "lat": 40.8107061, "lon": -73.9860361 }, + { "lat": 40.8106393, "lon": -73.9860849 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120494073, + "bounds": { + "minlat": 40.8112984, + "minlon": -73.9855757, + "maxlat": 40.8113756, + "maxlon": -73.9855220 + }, + "nodes": [ + 10248258220, + 10248258221 + ], + "geometry": [ + { "lat": 40.8113756, "lon": -73.9855220 }, + { "lat": 40.8112984, "lon": -73.9855757 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120494075, + "bounds": { + "minlat": 40.8110758, + "minlon": -73.9871476, + "maxlat": 40.8112367, + "maxlon": -73.9869626 + }, + "nodes": [ + 10248258228, + 10248258229, + 10248258230, + 10248258231 + ], + "geometry": [ + { "lat": 40.8112367, "lon": -73.9869626 }, + { "lat": 40.8112356, "lon": -73.9870136 }, + { "lat": 40.8112178, "lon": -73.9870463 }, + { "lat": 40.8110758, "lon": -73.9871476 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120494076, + "bounds": { + "minlat": 40.8107079, + "minlon": -73.9862611, + "maxlat": 40.8108709, + "maxlon": -73.9861873 + }, + "nodes": [ + 10248258224, + 10248258225, + 10248258226, + 10248258227 + ], + "geometry": [ + { "lat": 40.8107079, "lon": -73.9862611 }, + { "lat": 40.8108158, "lon": -73.9861923 }, + { "lat": 40.8108511, "lon": -73.9861873 }, + { "lat": 40.8108709, "lon": -73.9862010 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120494078, + "bounds": { + "minlat": 40.8117722, + "minlon": -73.9868332, + "maxlat": 40.8118421, + "maxlon": -73.9867761 + }, + "nodes": [ + 10248258235, + 10248258236 + ], + "geometry": [ + { "lat": 40.8117722, "lon": -73.9868332 }, + { "lat": 40.8118421, "lon": -73.9867761 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120494079, + "bounds": { + "minlat": 40.8110503, + "minlon": -73.9873559, + "maxlat": 40.8111773, + "maxlon": -73.9872788 + }, + "nodes": [ + 10248258232, + 10248258233, + 10248258234 + ], + "geometry": [ + { "lat": 40.8110503, "lon": -73.9873559 }, + { "lat": 40.8111232, "lon": -73.9873120 }, + { "lat": 40.8111773, "lon": -73.9872788 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120560045, + "bounds": { + "minlat": 40.7936640, + "minlon": -73.9960577, + "maxlat": 40.7937476, + "maxlon": -73.9958066 + }, + "nodes": [ + 3633386741, + 10248848701, + 10248848702, + 10248848703, + 10248848704, + 10248848705 + ], + "geometry": [ + { "lat": 40.7936640, "lon": -73.9958066 }, + { "lat": 40.7937083, "lon": -73.9958602 }, + { "lat": 40.7937380, "lon": -73.9959327 }, + { "lat": 40.7937476, "lon": -73.9959942 }, + { "lat": 40.7937330, "lon": -73.9960390 }, + { "lat": 40.7937038, "lon": -73.9960577 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120560046, + "bounds": { + "minlat": 40.7935048, + "minlon": -73.9960895, + "maxlat": 40.7935966, + "maxlon": -73.9958527 + }, + "nodes": [ + 10248848706, + 10248848707, + 10248848708, + 10248850409 + ], + "geometry": [ + { "lat": 40.7935966, "lon": -73.9960895 }, + { "lat": 40.7935601, "lon": -73.9960762 }, + { "lat": 40.7935248, "lon": -73.9960138 }, + { "lat": 40.7935048, "lon": -73.9958527 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120560047, + "bounds": { + "minlat": 40.7935966, + "minlon": -73.9960895, + "maxlat": 40.7937038, + "maxlon": -73.9960577 + }, + "nodes": [ + 10248848705, + 10248848706 + ], + "geometry": [ + { "lat": 40.7937038, "lon": -73.9960577 }, + { "lat": 40.7935966, "lon": -73.9960895 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1120929706, + "bounds": { + "minlat": 40.8587128, + "minlon": -73.9930871, + "maxlat": 40.8589577, + "maxlon": -73.9927335 + }, + "nodes": [ + 10252456988, + 10252456987, + 10252456986, + 10252456985, + 10252456984, + 10252456983, + 10252456982, + 10252456981, + 10252456980 + ], + "geometry": [ + { "lat": 40.8587128, "lon": -73.9928049 }, + { "lat": 40.8587802, "lon": -73.9927587 }, + { "lat": 40.8588801, "lon": -73.9927335 }, + { "lat": 40.8589349, "lon": -73.9927751 }, + { "lat": 40.8589557, "lon": -73.9928576 }, + { "lat": 40.8589577, "lon": -73.9929642 }, + { "lat": 40.8589481, "lon": -73.9929997 }, + { "lat": 40.8589308, "lon": -73.9930259 }, + { "lat": 40.8588820, "lon": -73.9930871 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1120946615, + "bounds": { + "minlat": 40.8307935, + "minlon": -73.9314245, + "maxlat": 40.8310635, + "maxlon": -73.9305911 + }, + "nodes": [ + 10252738338, + 13036769786, + 10252738341, + 10252738340, + 13247454368, + 10252738339 + ], + "geometry": [ + { "lat": 40.8307935, "lon": -73.9305911 }, + { "lat": 40.8308237, "lon": -73.9306845 }, + { "lat": 40.8308340, "lon": -73.9307161 }, + { "lat": 40.8310369, "lon": -73.9313423 }, + { "lat": 40.8310440, "lon": -73.9313644 }, + { "lat": 40.8310635, "lon": -73.9314245 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1121193025, + "bounds": { + "minlat": 40.8098122, + "minlon": -73.9295581, + "maxlat": 40.8099058, + "maxlon": -73.9294407 + }, + "nodes": [ + 10255325985, + 11882279800, + 10255325986 + ], + "geometry": [ + { "lat": 40.8098122, "lon": -73.9295581 }, + { "lat": 40.8098649, "lon": -73.9294920 }, + { "lat": 40.8099058, "lon": -73.9294407 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1121193026, + "bounds": { + "minlat": 40.8098460, + "minlon": -73.9297340, + "maxlat": 40.8101294, + "maxlon": -73.9293616 + }, + "nodes": [ + 10255325987, + 10255325986, + 10255325988 + ], + "geometry": [ + { "lat": 40.8098460, "lon": -73.9293616 }, + { "lat": 40.8099058, "lon": -73.9294407 }, + { "lat": 40.8101294, "lon": -73.9297340 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1121193027, + "bounds": { + "minlat": 40.8099390, + "minlon": -73.9293975, + "maxlat": 40.8100460, + "maxlon": -73.9292627 + }, + "nodes": [ + 10255325989, + 10255325990 + ], + "geometry": [ + { "lat": 40.8099390, "lon": -73.9293975 }, + { "lat": 40.8100460, "lon": -73.9292627 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1121193028, + "bounds": { + "minlat": 40.8100460, + "minlon": -73.9292627, + "maxlat": 40.8100989, + "maxlon": -73.9291897 + }, + "nodes": [ + 10255325990, + 13012943937, + 10255325991 + ], + "geometry": [ + { "lat": 40.8100460, "lon": -73.9292627 }, + { "lat": 40.8100653, "lon": -73.9292361 }, + { "lat": 40.8100989, "lon": -73.9291897 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1121193029, + "bounds": { + "minlat": 40.8099058, + "minlon": -73.9294407, + "maxlat": 40.8099390, + "maxlon": -73.9293975 + }, + "nodes": [ + 10255325986, + 10255325989 + ], + "geometry": [ + { "lat": 40.8099058, "lon": -73.9294407 }, + { "lat": 40.8099390, "lon": -73.9293975 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1121193030, + "bounds": { + "minlat": 40.8102026, + "minlon": -73.9298294, + "maxlat": 40.8103961, + "maxlon": -73.9295809 + }, + "nodes": [ + 10255325992, + 13012943938, + 10255325994, + 10255325993 + ], + "geometry": [ + { "lat": 40.8103961, "lon": -73.9295809 }, + { "lat": 40.8103610, "lon": -73.9296259 }, + { "lat": 40.8103464, "lon": -73.9296446 }, + { "lat": 40.8102026, "lon": -73.9298294 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1121227424, + "bounds": { + "minlat": 40.8020649, + "minlon": -73.9398737, + "maxlat": 40.8023461, + "maxlon": -73.9397065 + }, + "nodes": [ + 10255655743, + 10255655747, + 10255655748, + 10255655744, + 10255655745, + 10255655746 + ], + "geometry": [ + { "lat": 40.8020649, "lon": -73.9398737 }, + { "lat": 40.8021171, "lon": -73.9398273 }, + { "lat": 40.8021345, "lon": -73.9398117 }, + { "lat": 40.8022070, "lon": -73.9397473 }, + { "lat": 40.8022987, "lon": -73.9397065 }, + { "lat": 40.8023461, "lon": -73.9398451 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1121237477, + "bounds": { + "minlat": 40.8580234, + "minlon": -73.9970706, + "maxlat": 40.8591915, + "maxlon": -73.9965467 + }, + "nodes": [ + 2468325310, + 10255727806, + 10255727805, + 10255727804, + 10255727803, + 10255727802, + 10255727801, + 10255727800 + ], + "geometry": [ + { "lat": 40.8580234, "lon": -73.9965467 }, + { "lat": 40.8580773, "lon": -73.9966542 }, + { "lat": 40.8582229, "lon": -73.9969164 }, + { "lat": 40.8582974, "lon": -73.9970163 }, + { "lat": 40.8583395, "lon": -73.9970559 }, + { "lat": 40.8583831, "lon": -73.9970706 }, + { "lat": 40.8584262, "lon": -73.9970706 }, + { "lat": 40.8591915, "lon": -73.9967662 } + ], + "tags": { + "highway": "service", + "name": "John C McCloy Memorial Way", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1121582599, + "bounds": { + "minlat": 40.7499087, + "minlon": -73.9878763, + "maxlat": 40.7506247, + "maxlon": -73.9877125 + }, + "nodes": [ + 10258510499, + 10258552727, + 10258552726, + 10258510453, + 10258510500, + 10258510501, + 10258510502, + 10258510503, + 10258552865, + 10258510504, + 10258510505, + 10258510506, + 10258552871, + 10258510507, + 10258510508, + 10258552709, + 10258552710, + 9490502661, + 10258552711, + 10258552712, + 10258552713, + 10258552714, + 10258552869, + 10258552715, + 10258552716, + 10258552717, + 10258552863, + 10258552718, + 10268795728, + 10258552804, + 10258552719, + 10258552720, + 10258552721, + 10258552722, + 10258510452, + 10258552723, + 10258552724, + 10258552725, + 4707484302, + 10258510499 + ], + "geometry": [ + { "lat": 40.7506247, "lon": -73.9877676 }, + { "lat": 40.7506206, "lon": -73.9877631 }, + { "lat": 40.7506165, "lon": -73.9877601 }, + { "lat": 40.7505913, "lon": -73.9877564 }, + { "lat": 40.7505127, "lon": -73.9877405 }, + { "lat": 40.7505005, "lon": -73.9877389 }, + { "lat": 40.7504856, "lon": -73.9877384 }, + { "lat": 40.7504670, "lon": -73.9877408 }, + { "lat": 40.7500641, "lon": -73.9878271 }, + { "lat": 40.7500398, "lon": -73.9878323 }, + { "lat": 40.7500074, "lon": -73.9878393 }, + { "lat": 40.7499758, "lon": -73.9878494 }, + { "lat": 40.7499495, "lon": -73.9878558 }, + { "lat": 40.7499328, "lon": -73.9878620 }, + { "lat": 40.7499272, "lon": -73.9878656 }, + { "lat": 40.7499245, "lon": -73.9878699 }, + { "lat": 40.7499247, "lon": -73.9878763 }, + { "lat": 40.7499168, "lon": -73.9878583 }, + { "lat": 40.7499087, "lon": -73.9878397 }, + { "lat": 40.7499121, "lon": -73.9878421 }, + { "lat": 40.7499159, "lon": -73.9878435 }, + { "lat": 40.7499222, "lon": -73.9878430 }, + { "lat": 40.7499409, "lon": -73.9878359 }, + { "lat": 40.7499711, "lon": -73.9878267 }, + { "lat": 40.7500021, "lon": -73.9878170 }, + { "lat": 40.7500360, "lon": -73.9878089 }, + { "lat": 40.7500613, "lon": -73.9878033 }, + { "lat": 40.7500934, "lon": -73.9877961 }, + { "lat": 40.7502226, "lon": -73.9877672 }, + { "lat": 40.7502438, "lon": -73.9877625 }, + { "lat": 40.7504616, "lon": -73.9877138 }, + { "lat": 40.7504826, "lon": -73.9877125 }, + { "lat": 40.7505030, "lon": -73.9877136 }, + { "lat": 40.7505168, "lon": -73.9877149 }, + { "lat": 40.7505798, "lon": -73.9877292 }, + { "lat": 40.7506025, "lon": -73.9877354 }, + { "lat": 40.7506057, "lon": -73.9877349 }, + { "lat": 40.7506078, "lon": -73.9877313 }, + { "lat": 40.7506156, "lon": -73.9877483 }, + { "lat": 40.7506247, "lon": -73.9877676 } + ], + "tags": { + "area": "yes", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1121582639, + "bounds": { + "minlat": 40.7496830, + "minlon": -73.9879475, + "maxlat": 40.7498025, + "maxlon": -73.9878652 + }, + "nodes": [ + 10258552913, + 10258552902, + 10258552914, + 10258552915, + 10258552916, + 10258552917, + 10258552918, + 10258552919, + 10258552920, + 10258552903, + 10258552921, + 10258552922, + 10258552923, + 10258552924, + 10258552905, + 10258552925, + 10258552926, + 10258552927, + 10258552928, + 10258552913 + ], + "geometry": [ + { "lat": 40.7497953, "lon": -73.9879198 }, + { "lat": 40.7497692, "lon": -73.9879267 }, + { "lat": 40.7497375, "lon": -73.9879343 }, + { "lat": 40.7496952, "lon": -73.9879465 }, + { "lat": 40.7496900, "lon": -73.9879475 }, + { "lat": 40.7496850, "lon": -73.9879454 }, + { "lat": 40.7496830, "lon": -73.9879409 }, + { "lat": 40.7496830, "lon": -73.9879350 }, + { "lat": 40.7496846, "lon": -73.9879302 }, + { "lat": 40.7497509, "lon": -73.9878842 }, + { "lat": 40.7497781, "lon": -73.9878662 }, + { "lat": 40.7497809, "lon": -73.9878652 }, + { "lat": 40.7497833, "lon": -73.9878656 }, + { "lat": 40.7497849, "lon": -73.9878680 }, + { "lat": 40.7497930, "lon": -73.9878869 }, + { "lat": 40.7498020, "lon": -73.9879081 }, + { "lat": 40.7498025, "lon": -73.9879118 }, + { "lat": 40.7498018, "lon": -73.9879157 }, + { "lat": 40.7497989, "lon": -73.9879185 }, + { "lat": 40.7497953, "lon": -73.9879198 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1121582641, + "bounds": { + "minlat": 40.7496359, + "minlon": -73.9879916, + "maxlat": 40.7498193, + "maxlon": -73.9879081 + }, + "nodes": [ + 10258552909, + 10268795727, + 10258552920, + 10258552919, + 10258552918, + 10258552917, + 10258552916, + 10258552915, + 10258552914, + 10258552902, + 10258552913, + 10258552928, + 10258552927, + 10258552926, + 10258552925, + 3927137574, + 10258552906, + 10258552907, + 10258552904, + 6224277876, + 10258552948, + 6224278788, + 3857343068, + 10258552910, + 10258552911, + 10258552909 + ], + "geometry": [ + { "lat": 40.7496359, "lon": -73.9879916 }, + { "lat": 40.7496598, "lon": -73.9879615 }, + { "lat": 40.7496846, "lon": -73.9879302 }, + { "lat": 40.7496830, "lon": -73.9879350 }, + { "lat": 40.7496830, "lon": -73.9879409 }, + { "lat": 40.7496850, "lon": -73.9879454 }, + { "lat": 40.7496900, "lon": -73.9879475 }, + { "lat": 40.7496952, "lon": -73.9879465 }, + { "lat": 40.7497375, "lon": -73.9879343 }, + { "lat": 40.7497692, "lon": -73.9879267 }, + { "lat": 40.7497953, "lon": -73.9879198 }, + { "lat": 40.7497989, "lon": -73.9879185 }, + { "lat": 40.7498018, "lon": -73.9879157 }, + { "lat": 40.7498025, "lon": -73.9879118 }, + { "lat": 40.7498020, "lon": -73.9879081 }, + { "lat": 40.7498098, "lon": -73.9879260 }, + { "lat": 40.7498193, "lon": -73.9879479 }, + { "lat": 40.7498163, "lon": -73.9879434 }, + { "lat": 40.7498122, "lon": -73.9879414 }, + { "lat": 40.7498075, "lon": -73.9879421 }, + { "lat": 40.7497793, "lon": -73.9879501 }, + { "lat": 40.7497109, "lon": -73.9879681 }, + { "lat": 40.7496781, "lon": -73.9879762 }, + { "lat": 40.7496599, "lon": -73.9879808 }, + { "lat": 40.7496465, "lon": -73.9879860 }, + { "lat": 40.7496359, "lon": -73.9879916 } + ], + "tags": { + "area": "yes", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1121676787, + "bounds": { + "minlat": 40.8103589, + "minlon": -73.9853642, + "maxlat": 40.8104900, + "maxlon": -73.9852052 + }, + "nodes": [ + 10259283594, + 10259283595, + 10259283596, + 10259283597, + 10259283598 + ], + "geometry": [ + { "lat": 40.8103589, "lon": -73.9853642 }, + { "lat": 40.8104672, "lon": -73.9852970 }, + { "lat": 40.8104834, "lon": -73.9852670 }, + { "lat": 40.8104900, "lon": -73.9852306 }, + { "lat": 40.8104812, "lon": -73.9852052 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1121676788, + "bounds": { + "minlat": 40.8100517, + "minlon": -73.9841520, + "maxlat": 40.8100904, + "maxlon": -73.9840533 + }, + "nodes": [ + 10259283599, + 10259283600 + ], + "geometry": [ + { "lat": 40.8100904, "lon": -73.9841520 }, + { "lat": 40.8100517, "lon": -73.9840533 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1121932360, + "bounds": { + "minlat": 40.7498015, + "minlon": -73.9876181, + "maxlat": 40.7503766, + "maxlon": -73.9871674 + }, + "nodes": [ + 2709702813, + 10261412722, + 10261389166, + 10261389167, + 10258552868, + 10261389168, + 10261389169, + 10261389170, + 3857366816, + 10261389171, + 10261389172, + 10261389173, + 10261389174, + 10261389175, + 10261389182, + 10261389176, + 10261389177, + 10261389178, + 10261389179, + 10261389181, + 4488584459, + 2709702936, + 10261389180, + 5005659781, + 10261389158, + 10261389159, + 4144668739, + 10261389160, + 2709702813 + ], + "geometry": [ + { "lat": 40.7498737, "lon": -73.9875298 }, + { "lat": 40.7498243, "lon": -73.9875651 }, + { "lat": 40.7498015, "lon": -73.9875814 }, + { "lat": 40.7498078, "lon": -73.9875963 }, + { "lat": 40.7498152, "lon": -73.9876070 }, + { "lat": 40.7498235, "lon": -73.9876142 }, + { "lat": 40.7498311, "lon": -73.9876177 }, + { "lat": 40.7498395, "lon": -73.9876181 }, + { "lat": 40.7498459, "lon": -73.9876164 }, + { "lat": 40.7498566, "lon": -73.9876107 }, + { "lat": 40.7498756, "lon": -73.9875986 }, + { "lat": 40.7503623, "lon": -73.9872420 }, + { "lat": 40.7503697, "lon": -73.9872352 }, + { "lat": 40.7503733, "lon": -73.9872279 }, + { "lat": 40.7503755, "lon": -73.9872196 }, + { "lat": 40.7503766, "lon": -73.9872101 }, + { "lat": 40.7503758, "lon": -73.9872029 }, + { "lat": 40.7503704, "lon": -73.9871864 }, + { "lat": 40.7503624, "lon": -73.9871674 }, + { "lat": 40.7503517, "lon": -73.9871753 }, + { "lat": 40.7503249, "lon": -73.9871953 }, + { "lat": 40.7502798, "lon": -73.9872282 }, + { "lat": 40.7499264, "lon": -73.9874912 }, + { "lat": 40.7499303, "lon": -73.9875008 }, + { "lat": 40.7499343, "lon": -73.9875107 }, + { "lat": 40.7499006, "lon": -73.9875349 }, + { "lat": 40.7498965, "lon": -73.9875250 }, + { "lat": 40.7498929, "lon": -73.9875162 }, + { "lat": 40.7498737, "lon": -73.9875298 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1121959295, + "bounds": { + "minlat": 40.8549333, + "minlon": -73.9940894, + "maxlat": 40.8556926, + "maxlon": -73.9928322 + }, + "nodes": [ + 10261699288, + 8075114234, + 103164812 + ], + "geometry": [ + { "lat": 40.8556926, "lon": -73.9940894 }, + { "lat": 40.8549972, "lon": -73.9929470 }, + { "lat": 40.8549333, "lon": -73.9928322 } + ], + "tags": { + "highway": "residential", + "name": "Moore Avenue", + "sidewalk": "both", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Moore", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1121962655, + "bounds": { + "minlat": 40.8627150, + "minlon": -73.9921118, + "maxlat": 40.8630689, + "maxlon": -73.9914500 + }, + "nodes": [ + 10261740697, + 103235805 + ], + "geometry": [ + { "lat": 40.8630689, "lon": -73.9921118 }, + { "lat": 40.8627150, "lon": -73.9914500 } + ], + "tags": { + "highway": "residential", + "name": "Palisade Avenue", + "sidewalk": "left", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1121962657, + "bounds": { + "minlat": 40.8593240, + "minlon": -73.9959570, + "maxlat": 40.8613335, + "maxlon": -73.9949598 + }, + "nodes": [ + 6137206344, + 103296583, + 103296585, + 103296587, + 10243690458, + 103239471, + 103155360 + ], + "geometry": [ + { "lat": 40.8613335, "lon": -73.9949598 }, + { "lat": 40.8613110, "lon": -73.9949750 }, + { "lat": 40.8611410, "lon": -73.9950900 }, + { "lat": 40.8609660, "lon": -73.9951890 }, + { "lat": 40.8604994, "lon": -73.9954037 }, + { "lat": 40.8603025, "lon": -73.9954973 }, + { "lat": 40.8593240, "lon": -73.9959570 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "sidewalk": "right", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1122050440, + "bounds": { + "minlat": 40.8401397, + "minlon": -74.0058768, + "maxlat": 40.8403635, + "maxlon": -74.0056757 + }, + "nodes": [ + 10262495354, + 10262495355, + 10262495356 + ], + "geometry": [ + { "lat": 40.8403635, "lon": -74.0058768 }, + { "lat": 40.8402926, "lon": -74.0056757 }, + { "lat": 40.8401397, "lon": -74.0057565 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1122124499, + "bounds": { + "minlat": 40.7485528, + "minlon": -73.9887733, + "maxlat": 40.7486332, + "maxlon": -73.9886899 + }, + "nodes": [ + 10263177589, + 10263177606, + 10263177590, + 10263177600, + 10263177599, + 10263177591, + 10263177592, + 10263177598, + 10263177597, + 10263177593, + 10261412868, + 10263177594, + 10263177602, + 10263177601, + 10263177595, + 10263177596, + 10263177603, + 10263177604, + 10263177589 + ], + "geometry": [ + { "lat": 40.7486310, "lon": -73.9887274 }, + { "lat": 40.7485990, "lon": -73.9887517 }, + { "lat": 40.7485732, "lon": -73.9887713 }, + { "lat": 40.7485698, "lon": -73.9887733 }, + { "lat": 40.7485669, "lon": -73.9887730 }, + { "lat": 40.7485645, "lon": -73.9887711 }, + { "lat": 40.7485533, "lon": -73.9887437 }, + { "lat": 40.7485528, "lon": -73.9887399 }, + { "lat": 40.7485536, "lon": -73.9887366 }, + { "lat": 40.7485562, "lon": -73.9887336 }, + { "lat": 40.7485837, "lon": -73.9887138 }, + { "lat": 40.7486152, "lon": -73.9886912 }, + { "lat": 40.7486176, "lon": -73.9886899 }, + { "lat": 40.7486201, "lon": -73.9886903 }, + { "lat": 40.7486217, "lon": -73.9886927 }, + { "lat": 40.7486326, "lon": -73.9887180 }, + { "lat": 40.7486332, "lon": -73.9887217 }, + { "lat": 40.7486323, "lon": -73.9887254 }, + { "lat": 40.7486310, "lon": -73.9887274 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1122124508, + "bounds": { + "minlat": 40.7485775, + "minlon": -73.9888597, + "maxlat": 40.7491753, + "maxlon": -73.9883639 + }, + "nodes": [ + 2703449764, + 10263178432, + 10263178411, + 10263178410, + 10263178412, + 10263178413, + 10263178414, + 10263178433, + 10263178415, + 10263178416, + 10263178417, + 10263178418, + 10263178419, + 10263178420, + 10263177588, + 10263178421, + 10263178422, + 10263178423, + 10263177587, + 10263178424, + 10263178425, + 10263178426, + 10263178431, + 10263178427, + 2703449849, + 10263178429, + 10263178428, + 2703449764 + ], + "geometry": [ + { "lat": 40.7486460, "lon": -73.9888224 }, + { "lat": 40.7486381, "lon": -73.9888281 }, + { "lat": 40.7485949, "lon": -73.9888597 }, + { "lat": 40.7485797, "lon": -73.9888236 }, + { "lat": 40.7485775, "lon": -73.9888180 }, + { "lat": 40.7485775, "lon": -73.9888157 }, + { "lat": 40.7485803, "lon": -73.9888123 }, + { "lat": 40.7486137, "lon": -73.9887883 }, + { "lat": 40.7486381, "lon": -73.9887707 }, + { "lat": 40.7486432, "lon": -73.9887656 }, + { "lat": 40.7486484, "lon": -73.9887572 }, + { "lat": 40.7487018, "lon": -73.9886790 }, + { "lat": 40.7487064, "lon": -73.9886727 }, + { "lat": 40.7487143, "lon": -73.9886666 }, + { "lat": 40.7491081, "lon": -73.9883849 }, + { "lat": 40.7491356, "lon": -73.9883646 }, + { "lat": 40.7491382, "lon": -73.9883639 }, + { "lat": 40.7491415, "lon": -73.9883655 }, + { "lat": 40.7491618, "lon": -73.9884119 }, + { "lat": 40.7491746, "lon": -73.9884423 }, + { "lat": 40.7491753, "lon": -73.9884498 }, + { "lat": 40.7491703, "lon": -73.9884647 }, + { "lat": 40.7491487, "lon": -73.9884809 }, + { "lat": 40.7491335, "lon": -73.9884924 }, + { "lat": 40.7491250, "lon": -73.9884722 }, + { "lat": 40.7488960, "lon": -73.9886396 }, + { "lat": 40.7488658, "lon": -73.9886617 }, + { "lat": 40.7486460, "lon": -73.9888224 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1122299070, + "bounds": { + "minlat": 40.7164211, + "minlon": -73.9189609, + "maxlat": 40.7169733, + "maxlon": -73.9168918 + }, + "nodes": [ + 10264974719, + 10264974720, + 10264974721, + 10291079263, + 10264974722 + ], + "geometry": [ + { "lat": 40.7164211, "lon": -73.9168918 }, + { "lat": 40.7169544, "lon": -73.9178276 }, + { "lat": 40.7169733, "lon": -73.9179900 }, + { "lat": 40.7167129, "lon": -73.9187237 }, + { "lat": 40.7166287, "lon": -73.9189609 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1122299071, + "bounds": { + "minlat": 40.7168824, + "minlon": -73.9179900, + "maxlat": 40.7171247, + "maxlon": -73.9169616 + }, + "nodes": [ + 10264974721, + 10264974723, + 10264974724, + 10264974725, + 10264974726 + ], + "geometry": [ + { "lat": 40.7169733, "lon": -73.9179900 }, + { "lat": 40.7171219, "lon": -73.9174652 }, + { "lat": 40.7171247, "lon": -73.9173820 }, + { "lat": 40.7171094, "lon": -73.9173378 }, + { "lat": 40.7168824, "lon": -73.9169616 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1122299072, + "bounds": { + "minlat": 40.7157174, + "minlon": -73.9174466, + "maxlat": 40.7162054, + "maxlon": -73.9168883 + }, + "nodes": [ + 5482677952, + 10264974717, + 10264974727, + 10264974718 + ], + "geometry": [ + { "lat": 40.7157174, "lon": -73.9174466 }, + { "lat": 40.7158237, "lon": -73.9171989 }, + { "lat": 40.7159191, "lon": -73.9170573 }, + { "lat": 40.7162054, "lon": -73.9168883 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1122524702, + "bounds": { + "minlat": 40.8593627, + "minlon": -73.9882583, + "maxlat": 40.8602782, + "maxlon": -73.9867246 + }, + "nodes": [ + 6109949875, + 103304150, + 103117243, + 103093232 + ], + "geometry": [ + { "lat": 40.8602782, "lon": -73.9882583 }, + { "lat": 40.8602668, "lon": -73.9882422 }, + { "lat": 40.8599823, "lon": -73.9877162 }, + { "lat": 40.8593627, "lon": -73.9867246 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Crescent Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Crescent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1122566071, + "bounds": { + "minlat": 40.8188665, + "minlon": -74.0016377, + "maxlat": 40.8193015, + "maxlon": -74.0012394 + }, + "nodes": [ + 5727986087, + 10266864256 + ], + "geometry": [ + { "lat": 40.8188665, "lon": -74.0016377 }, + { "lat": 40.8193015, "lon": -74.0012394 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1122601009, + "bounds": { + "minlat": 40.8018201, + "minlon": -73.9215539, + "maxlat": 40.8022612, + "maxlon": -73.9211672 + }, + "nodes": [ + 7554016036, + 10267150286 + ], + "geometry": [ + { "lat": 40.8018201, "lon": -73.9211672 }, + { "lat": 40.8022612, "lon": -73.9215539 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1122816777, + "bounds": { + "minlat": 40.7545113, + "minlon": -73.9875435, + "maxlat": 40.7545858, + "maxlon": -73.9874884 + }, + "nodes": [ + 10268944141, + 10268944143, + 10268944142 + ], + "geometry": [ + { "lat": 40.7545858, "lon": -73.9874884 }, + { "lat": 40.7545357, "lon": -73.9875260 }, + { "lat": 40.7545113, "lon": -73.9875435 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1122816783, + "bounds": { + "minlat": 40.7536977, + "minlon": -73.9872057, + "maxlat": 40.7543130, + "maxlon": -73.9869211 + }, + "nodes": [ + 10268795816, + 10268795782, + 10268944147, + 10268944148, + 10268944149, + 10268944150, + 10268795809, + 10268944151, + 10268944152, + 10268944153, + 10268944154, + 10268944162, + 10268944155, + 10268955517, + 10268944156, + 10268944157, + 10268795764, + 10268944158, + 10268944159, + 10268944160, + 10268795784, + 10268795819, + 10268795820, + 10268795765, + 10268795821, + 10268795822, + 10268795823, + 10268795824, + 10268795825, + 10268795826, + 10268795807, + 10268795813, + 10268795814, + 10268795815, + 10268795816 + ], + "geometry": [ + { "lat": 40.7542990, "lon": -73.9869211 }, + { "lat": 40.7543053, "lon": -73.9869360 }, + { "lat": 40.7543130, "lon": -73.9869542 }, + { "lat": 40.7543104, "lon": -73.9869521 }, + { "lat": 40.7543080, "lon": -73.9869513 }, + { "lat": 40.7543040, "lon": -73.9869510 }, + { "lat": 40.7542908, "lon": -73.9869556 }, + { "lat": 40.7542345, "lon": -73.9869741 }, + { "lat": 40.7542263, "lon": -73.9869777 }, + { "lat": 40.7542163, "lon": -73.9869843 }, + { "lat": 40.7541540, "lon": -73.9870254 }, + { "lat": 40.7541404, "lon": -73.9870347 }, + { "lat": 40.7541288, "lon": -73.9870398 }, + { "lat": 40.7540007, "lon": -73.9870803 }, + { "lat": 40.7537568, "lon": -73.9871575 }, + { "lat": 40.7537383, "lon": -73.9871659 }, + { "lat": 40.7537313, "lon": -73.9871730 }, + { "lat": 40.7537269, "lon": -73.9871809 }, + { "lat": 40.7537227, "lon": -73.9871927 }, + { "lat": 40.7537224, "lon": -73.9872057 }, + { "lat": 40.7537036, "lon": -73.9871612 }, + { "lat": 40.7536977, "lon": -73.9871471 }, + { "lat": 40.7537007, "lon": -73.9871490 }, + { "lat": 40.7537191, "lon": -73.9871428 }, + { "lat": 40.7541275, "lon": -73.9870156 }, + { "lat": 40.7541380, "lon": -73.9870114 }, + { "lat": 40.7541498, "lon": -73.9870041 }, + { "lat": 40.7542073, "lon": -73.9869647 }, + { "lat": 40.7542167, "lon": -73.9869584 }, + { "lat": 40.7542288, "lon": -73.9869522 }, + { "lat": 40.7542812, "lon": -73.9869337 }, + { "lat": 40.7542954, "lon": -73.9869294 }, + { "lat": 40.7542983, "lon": -73.9869279 }, + { "lat": 40.7542998, "lon": -73.9869252 }, + { "lat": 40.7542990, "lon": -73.9869211 } + ], + "tags": { + "area": "yes", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1123337373, + "bounds": { + "minlat": 40.8624405, + "minlon": -73.9869828, + "maxlat": 40.8625511, + "maxlon": -73.9868411 + }, + "nodes": [ + 6109949841, + 6109949840, + 6109949839, + 6109949838, + 6109949844 + ], + "geometry": [ + { "lat": 40.8625511, "lon": -73.9869828 }, + { "lat": 40.8625133, "lon": -73.9869714 }, + { "lat": 40.8624928, "lon": -73.9869514 }, + { "lat": 40.8624680, "lon": -73.9868829 }, + { "lat": 40.8624405, "lon": -73.9868411 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1123350074, + "bounds": { + "minlat": 40.8372325, + "minlon": -73.9273684, + "maxlat": 40.8374416, + "maxlon": -73.9268505 + }, + "nodes": [ + 10273471826, + 10273471827, + 10273471833, + 10273471828, + 10273471829, + 10273471830, + 10273471838, + 10273471831, + 10273471832 + ], + "geometry": [ + { "lat": 40.8373918, "lon": -73.9268505 }, + { "lat": 40.8374303, "lon": -73.9269583 }, + { "lat": 40.8374405, "lon": -73.9270212 }, + { "lat": 40.8374416, "lon": -73.9270276 }, + { "lat": 40.8374357, "lon": -73.9270955 }, + { "lat": 40.8373994, "lon": -73.9271391 }, + { "lat": 40.8372853, "lon": -73.9272049 }, + { "lat": 40.8372591, "lon": -73.9272455 }, + { "lat": 40.8372325, "lon": -73.9273684 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123350075, + "bounds": { + "minlat": 40.8371150, + "minlon": -73.9271615, + "maxlat": 40.8372578, + "maxlon": -73.9270135 + }, + "nodes": [ + 10273471837, + 10273471834, + 10273471835 + ], + "geometry": [ + { "lat": 40.8372578, "lon": -73.9271146 }, + { "lat": 40.8371659, "lon": -73.9271615 }, + { "lat": 40.8371150, "lon": -73.9270135 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123350076, + "bounds": { + "minlat": 40.8373681, + "minlon": -73.9270582, + "maxlat": 40.8374405, + "maxlon": -73.9270212 + }, + "nodes": [ + 10273471833, + 10273471836 + ], + "geometry": [ + { "lat": 40.8374405, "lon": -73.9270212 }, + { "lat": 40.8373681, "lon": -73.9270582 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123350077, + "bounds": { + "minlat": 40.8372578, + "minlon": -73.9271146, + "maxlat": 40.8373681, + "maxlon": -73.9270582 + }, + "nodes": [ + 10273471836, + 10273471837 + ], + "geometry": [ + { "lat": 40.8373681, "lon": -73.9270582 }, + { "lat": 40.8372578, "lon": -73.9271146 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123350078, + "bounds": { + "minlat": 40.8371659, + "minlon": -73.9272455, + "maxlat": 40.8372591, + "maxlon": -73.9271615 + }, + "nodes": [ + 10273471834, + 10273471831 + ], + "geometry": [ + { "lat": 40.8371659, "lon": -73.9271615 }, + { "lat": 40.8372591, "lon": -73.9272455 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123530466, + "bounds": { + "minlat": 40.8775099, + "minlon": -73.9824727, + "maxlat": 40.8776419, + "maxlon": -73.9821628 + }, + "nodes": [ + 10274904123, + 13525915011, + 10274904132, + 10274904124, + 10274904125 + ], + "geometry": [ + { "lat": 40.8776032, "lon": -73.9824727 }, + { "lat": 40.8775636, "lon": -73.9824022 }, + { "lat": 40.8775437, "lon": -73.9823667 }, + { "lat": 40.8775099, "lon": -73.9823083 }, + { "lat": 40.8776419, "lon": -73.9821628 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123530467, + "bounds": { + "minlat": 40.8773614, + "minlon": -73.9826741, + "maxlat": 40.8774207, + "maxlon": -73.9825643 + }, + "nodes": [ + 10274904126, + 13525915010, + 10274904131 + ], + "geometry": [ + { "lat": 40.8774207, "lon": -73.9826741 }, + { "lat": 40.8773810, "lon": -73.9826006 }, + { "lat": 40.8773614, "lon": -73.9825643 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123530468, + "bounds": { + "minlat": 40.8773614, + "minlon": -73.9825643, + "maxlat": 40.8774561, + "maxlon": -73.9824616 + }, + "nodes": [ + 10274904131, + 10274904136 + ], + "geometry": [ + { "lat": 40.8773614, "lon": -73.9825643 }, + { "lat": 40.8774561, "lon": -73.9824616 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123530469, + "bounds": { + "minlat": 40.8773892, + "minlon": -73.9824264, + "maxlat": 40.8774325, + "maxlon": -73.9823553 + }, + "nodes": [ + 10274904134, + 10274904135 + ], + "geometry": [ + { "lat": 40.8773892, "lon": -73.9823553 }, + { "lat": 40.8774325, "lon": -73.9824264 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123530470, + "bounds": { + "minlat": 40.8774325, + "minlon": -73.9824616, + "maxlat": 40.8774561, + "maxlon": -73.9824264 + }, + "nodes": [ + 10274904135, + 10274904136 + ], + "geometry": [ + { "lat": 40.8774325, "lon": -73.9824264 }, + { "lat": 40.8774561, "lon": -73.9824616 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123530471, + "bounds": { + "minlat": 40.8773666, + "minlon": -73.9823553, + "maxlat": 40.8773892, + "maxlon": -73.9823091 + }, + "nodes": [ + 10274904133, + 10274904134 + ], + "geometry": [ + { "lat": 40.8773666, "lon": -73.9823091 }, + { "lat": 40.8773892, "lon": -73.9823553 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123793398, + "bounds": { + "minlat": 40.8712200, + "minlon": -73.9872709, + "maxlat": 40.8714064, + "maxlon": -73.9868826 + }, + "nodes": [ + 10277144523, + 10277144522, + 10277144521, + 10277144520 + ], + "geometry": [ + { "lat": 40.8712200, "lon": -73.9868826 }, + { "lat": 40.8713022, "lon": -73.9870419 }, + { "lat": 40.8713555, "lon": -73.9871555 }, + { "lat": 40.8714064, "lon": -73.9872709 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1123807004, + "bounds": { + "minlat": 40.7848939, + "minlon": -74.0076646, + "maxlat": 40.7854713, + "maxlon": -74.0072541 + }, + "nodes": [ + 10277288820, + 10277288821, + 10277288822, + 10277288823, + 10277288824, + 10277288825, + 10277288826 + ], + "geometry": [ + { "lat": 40.7854713, "lon": -74.0072541 }, + { "lat": 40.7853947, "lon": -74.0073848 }, + { "lat": 40.7853500, "lon": -74.0074464 }, + { "lat": 40.7851277, "lon": -74.0076033 }, + { "lat": 40.7850353, "lon": -74.0076646 }, + { "lat": 40.7850080, "lon": -74.0076605 }, + { "lat": 40.7848939, "lon": -74.0074799 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123877140, + "bounds": { + "minlat": 40.7553245, + "minlon": -73.9954792, + "maxlat": 40.7555338, + "maxlon": -73.9949943 + }, + "nodes": [ + 9807801426, + 8288270362, + 427842141 + ], + "geometry": [ + { "lat": 40.7553245, "lon": -73.9949943 }, + { "lat": 40.7553545, "lon": -73.9950639 }, + { "lat": 40.7555338, "lon": -73.9954792 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1123880569, + "bounds": { + "minlat": 40.8301929, + "minlon": -73.9402680, + "maxlat": 40.8302773, + "maxlon": -73.9402064 + }, + "nodes": [ + 10079540192, + 11221649588, + 42427894 + ], + "geometry": [ + { "lat": 40.8301929, "lon": -73.9402680 }, + { "lat": 40.8302161, "lon": -73.9402510 }, + { "lat": 40.8302773, "lon": -73.9402064 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "Saint Nicholas Place", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1123880570, + "bounds": { + "minlat": 40.8301929, + "minlon": -73.9405036, + "maxlat": 40.8303162, + "maxlon": -73.9402680 + }, + "nodes": [ + 10079540191, + 11218709955, + 10079540192 + ], + "geometry": [ + { "lat": 40.8303162, "lon": -73.9405036 }, + { "lat": 40.8302870, "lon": -73.9404478 }, + { "lat": 40.8301929, "lon": -73.9402680 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1123880703, + "bounds": { + "minlat": 40.7076540, + "minlon": -73.9419695, + "maxlat": 40.7145334, + "maxlon": -73.9398380 + }, + "nodes": [ + 8668750421, + 8668727816, + 9755789592, + 7722378711, + 9755789591, + 9767624944, + 42513623, + 9767624945, + 9767624960, + 42513628, + 9767624958, + 7034559315, + 42513634, + 7034559307, + 42513641, + 9752590846, + 42513647, + 9752590847, + 8931303497, + 42489930, + 9752593823, + 7618802676, + 9752593822, + 9752593901, + 42511123, + 9752593902, + 6943637618, + 42513654, + 6943637617, + 6943630242, + 42513657 + ], + "geometry": [ + { "lat": 40.7145334, "lon": -73.9419695 }, + { "lat": 40.7142985, "lon": -73.9418537 }, + { "lat": 40.7140870, "lon": -73.9417495 }, + { "lat": 40.7140063, "lon": -73.9417098 }, + { "lat": 40.7139361, "lon": -73.9416790 }, + { "lat": 40.7134244, "lon": -73.9414232 }, + { "lat": 40.7133470, "lon": -73.9413850 }, + { "lat": 40.7132987, "lon": -73.9413606 }, + { "lat": 40.7127273, "lon": -73.9410730 }, + { "lat": 40.7126660, "lon": -73.9410410 }, + { "lat": 40.7125915, "lon": -73.9410063 }, + { "lat": 40.7120503, "lon": -73.9407316 }, + { "lat": 40.7119620, "lon": -73.9406880 }, + { "lat": 40.7118816, "lon": -73.9406453 }, + { "lat": 40.7115630, "lon": -73.9404770 }, + { "lat": 40.7112724, "lon": -73.9404320 }, + { "lat": 40.7112180, "lon": -73.9404230 }, + { "lat": 40.7111453, "lon": -73.9404096 }, + { "lat": 40.7108993, "lon": -73.9403731 }, + { "lat": 40.7105220, "lon": -73.9403140 }, + { "lat": 40.7098684, "lon": -73.9401942 }, + { "lat": 40.7098074, "lon": -73.9401830 }, + { "lat": 40.7097584, "lon": -73.9401756 }, + { "lat": 40.7091765, "lon": -73.9400881 }, + { "lat": 40.7091020, "lon": -73.9400760 }, + { "lat": 40.7090441, "lon": -73.9400664 }, + { "lat": 40.7084605, "lon": -73.9399697 }, + { "lat": 40.7083900, "lon": -73.9399580 }, + { "lat": 40.7083369, "lon": -73.9399493 }, + { "lat": 40.7077429, "lon": -73.9398525 }, + { "lat": 40.7076540, "lon": -73.9398380 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "Bushwick Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1123882067, + "bounds": { + "minlat": 40.7652700, + "minlon": -73.9541508, + "maxlat": 40.7653096, + "maxlon": -73.9540564 + }, + "nodes": [ + 9906953438, + 9906953435 + ], + "geometry": [ + { "lat": 40.7653096, "lon": -73.9541508 }, + { "lat": 40.7652700, "lon": -73.9540564 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "name": "East 70th Street", + "name:ru": "Восточная 70-я стрит", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1123883121, + "bounds": { + "minlat": 40.7795842, + "minlon": -73.9818317, + "maxlat": 40.7838930, + "maxlon": -73.9800838 + }, + "nodes": [ + 42428653, + 8709392076, + 8709392047, + 2240269290, + 42428065, + 8709392055, + 2047267756, + 8709392029, + 42428648, + 8709392036, + 2047267754, + 8727756115, + 42428645, + 10039477580, + 8727756103, + 11655721360, + 10039484255, + 8727756037, + 42428640, + 11655743729, + 5115916416, + 42428637 + ], + "geometry": [ + { "lat": 40.7838930, "lon": -73.9800838 }, + { "lat": 40.7837949, "lon": -73.9801555 }, + { "lat": 40.7832716, "lon": -73.9805379 }, + { "lat": 40.7832495, "lon": -73.9805543 }, + { "lat": 40.7832069, "lon": -73.9805809 }, + { "lat": 40.7831487, "lon": -73.9806103 }, + { "lat": 40.7826159, "lon": -73.9808743 }, + { "lat": 40.7825881, "lon": -73.9808874 }, + { "lat": 40.7825317, "lon": -73.9809157 }, + { "lat": 40.7824616, "lon": -73.9809447 }, + { "lat": 40.7824376, "lon": -73.9809523 }, + { "lat": 40.7818702, "lon": -73.9811530 }, + { "lat": 40.7818019, "lon": -73.9811764 }, + { "lat": 40.7817416, "lon": -73.9811976 }, + { "lat": 40.7811432, "lon": -73.9813988 }, + { "lat": 40.7810772, "lon": -73.9814187 }, + { "lat": 40.7810130, "lon": -73.9814396 }, + { "lat": 40.7804022, "lon": -73.9816163 }, + { "lat": 40.7803341, "lon": -73.9816325 }, + { "lat": 40.7802768, "lon": -73.9816470 }, + { "lat": 40.7796588, "lon": -73.9818074 }, + { "lat": 40.7795842, "lon": -73.9818317 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1123883122, + "bounds": { + "minlat": 40.7838080, + "minlon": -73.9800838, + "maxlat": 40.7838930, + "maxlon": -73.9798812 + }, + "nodes": [ + 1061531454, + 42428653 + ], + "geometry": [ + { "lat": 40.7838080, "lon": -73.9798812 }, + { "lat": 40.7838930, "lon": -73.9800838 } + ], + "tags": { + "alt_name": "West 79 Street", + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 79th Street", + "name:ru": "Западная 79-я стрит", + "surface": "asphalt", + "wikidata": "Q2818314", + "wikipedia": "en:79th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1123883123, + "bounds": { + "minlat": 40.7838080, + "minlon": -73.9798812, + "maxlat": 40.7882886, + "maxlon": -73.9764311 + }, + "nodes": [ + 1061531454, + 11655721342, + 11655721344, + 11655721345, + 11655721343, + 11655721346, + 11655721348, + 11655721347, + 11655721349, + 11655721350, + 11655721351, + 5533554870, + 11655721352, + 1061531550, + 11655721353, + 11655721354, + 11655721355, + 7182103209, + 8699239239, + 1061531839, + 8699239235, + 8699239251, + 1061531603 + ], + "geometry": [ + { "lat": 40.7838080, "lon": -73.9798812 }, + { "lat": 40.7839072, "lon": -73.9798090 }, + { "lat": 40.7844321, "lon": -73.9794213 }, + { "lat": 40.7844847, "lon": -73.9793825 }, + { "lat": 40.7845497, "lon": -73.9793345 }, + { "lat": 40.7850614, "lon": -73.9789502 }, + { "lat": 40.7851211, "lon": -73.9789064 }, + { "lat": 40.7851803, "lon": -73.9788630 }, + { "lat": 40.7856965, "lon": -73.9784804 }, + { "lat": 40.7857555, "lon": -73.9784379 }, + { "lat": 40.7858127, "lon": -73.9783938 }, + { "lat": 40.7860117, "lon": -73.9782403 }, + { "lat": 40.7863291, "lon": -73.9780092 }, + { "lat": 40.7863807, "lon": -73.9779716 }, + { "lat": 40.7864441, "lon": -73.9779266 }, + { "lat": 40.7869640, "lon": -73.9775521 }, + { "lat": 40.7870124, "lon": -73.9775145 }, + { "lat": 40.7870796, "lon": -73.9774623 }, + { "lat": 40.7875779, "lon": -73.9770407 }, + { "lat": 40.7876288, "lon": -73.9769983 }, + { "lat": 40.7876904, "lon": -73.9769454 }, + { "lat": 40.7881939, "lon": -73.9765143 }, + { "lat": 40.7882886, "lon": -73.9764311 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1124078896, + "bounds": { + "minlat": 40.7528582, + "minlon": -73.9929759, + "maxlat": 40.7531503, + "maxlon": -73.9927591 + }, + "nodes": [ + 42435645, + 8660596960, + 11191334802 + ], + "geometry": [ + { "lat": 40.7528582, "lon": -73.9929759 }, + { "lat": 40.7529246, "lon": -73.9929276 }, + { "lat": 40.7531503, "lon": -73.9927591 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1124078897, + "bounds": { + "minlat": 40.7534779, + "minlon": -73.9925251, + "maxlat": 40.7540910, + "maxlon": -73.9920790 + }, + "nodes": [ + 42435646, + 8660596994, + 8660596985, + 42435650 + ], + "geometry": [ + { "lat": 40.7534779, "lon": -73.9925251 }, + { "lat": 40.7535374, "lon": -73.9924817 }, + { "lat": 40.7540356, "lon": -73.9921193 }, + { "lat": 40.7540910, "lon": -73.9920790 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1124078898, + "bounds": { + "minlat": 40.7540910, + "minlon": -73.9920790, + "maxlat": 40.7547070, + "maxlon": -73.9916330 + }, + "nodes": [ + 42435650, + 8660596973, + 10168381343, + 42433620 + ], + "geometry": [ + { "lat": 40.7540910, "lon": -73.9920790 }, + { "lat": 40.7541570, "lon": -73.9920313 }, + { "lat": 40.7546504, "lon": -73.9916735 }, + { "lat": 40.7547070, "lon": -73.9916330 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1124078899, + "bounds": { + "minlat": 40.7547070, + "minlon": -73.9916330, + "maxlat": 40.7549400, + "maxlon": -73.9914625 + }, + "nodes": [ + 42433620, + 10168381339, + 10279559005 + ], + "geometry": [ + { "lat": 40.7547070, "lon": -73.9916330 }, + { "lat": 40.7547719, "lon": -73.9915855 }, + { "lat": 40.7549400, "lon": -73.9914625 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1124204218, + "bounds": { + "minlat": 40.7112358, + "minlon": -73.9633640, + "maxlat": 40.7125260, + "maxlon": -73.9625520 + }, + "nodes": [ + 42514918, + 8842464609, + 9955161607, + 42520415, + 9955161606, + 9957055535, + 42474121 + ], + "geometry": [ + { "lat": 40.7112358, "lon": -73.9633640 }, + { "lat": 40.7112969, "lon": -73.9633255 }, + { "lat": 40.7118497, "lon": -73.9629769 }, + { "lat": 40.7119050, "lon": -73.9629420 }, + { "lat": 40.7119690, "lon": -73.9629018 }, + { "lat": 40.7124706, "lon": -73.9625868 }, + { "lat": 40.7125260, "lon": -73.9625520 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 1124463878, + "bounds": { + "minlat": 40.8493440, + "minlon": -73.9893690, + "maxlat": 40.8508022, + "maxlon": -73.9879084 + }, + "nodes": [ + 103277692, + 440215423 + ], + "geometry": [ + { "lat": 40.8493440, "lon": -73.9893690 }, + { "lat": 40.8508022, "lon": -73.9879084 } + ], + "tags": { + "highway": "residential", + "name": "4th Street", + "sidewalk": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "4th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1124499552, + "bounds": { + "minlat": 40.7131730, + "minlon": -74.0111089, + "maxlat": 40.7132516, + "maxlon": -74.0109945 + }, + "nodes": [ + 10282960421, + 10282960426, + 10282960422, + 10282960423, + 10282960424, + 10282960425 + ], + "geometry": [ + { "lat": 40.7131730, "lon": -74.0109945 }, + { "lat": 40.7131944, "lon": -74.0110228 }, + { "lat": 40.7132036, "lon": -74.0110366 }, + { "lat": 40.7132083, "lon": -74.0110436 }, + { "lat": 40.7132191, "lon": -74.0110600 }, + { "lat": 40.7132516, "lon": -74.0111089 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1124499625, + "bounds": { + "minlat": 40.7132516, + "minlon": -74.0111089, + "maxlat": 40.7133376, + "maxlon": -74.0110084 + }, + "nodes": [ + 42454401, + 8262936475, + 10282960425 + ], + "geometry": [ + { "lat": 40.7133376, "lon": -74.0110084 }, + { "lat": 40.7132878, "lon": -74.0110659 }, + { "lat": 40.7132516, "lon": -74.0111089 } + ], + "tags": { + "highway": "unclassified", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "old_name": "West Broadway", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 1124499656, + "bounds": { + "minlat": 40.7137953, + "minlon": -74.0138591, + "maxlat": 40.7139038, + "maxlon": -74.0137289 + }, + "nodes": [ + 10282972430, + 10282972444, + 10282972434, + 10282972435, + 10282972436, + 10282972437, + 10282972438, + 10282972439, + 10282972440, + 10282972441, + 10282972443, + 4899841690, + 10282972432, + 10282972431, + 4899841654, + 10282972433, + 10282972430 + ], + "geometry": [ + { "lat": 40.7139038, "lon": -74.0138361 }, + { "lat": 40.7138704, "lon": -74.0138488 }, + { "lat": 40.7138508, "lon": -74.0138563 }, + { "lat": 40.7138381, "lon": -74.0138591 }, + { "lat": 40.7138288, "lon": -74.0138577 }, + { "lat": 40.7138201, "lon": -74.0138484 }, + { "lat": 40.7137968, "lon": -74.0137792 }, + { "lat": 40.7137953, "lon": -74.0137676 }, + { "lat": 40.7137982, "lon": -74.0137595 }, + { "lat": 40.7138039, "lon": -74.0137541 }, + { "lat": 40.7138325, "lon": -74.0137427 }, + { "lat": 40.7138671, "lon": -74.0137289 }, + { "lat": 40.7138623, "lon": -74.0137353 }, + { "lat": 40.7138620, "lon": -74.0137437 }, + { "lat": 40.7138911, "lon": -74.0138280 }, + { "lat": 40.7138960, "lon": -74.0138348 }, + { "lat": 40.7139038, "lon": -74.0138361 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124499675, + "bounds": { + "minlat": 40.7129779, + "minlon": -74.0141173, + "maxlat": 40.7131106, + "maxlon": -74.0140141 + }, + "nodes": [ + 4899841661, + 10282972507, + 4899841655, + 10282972503, + 10282972502, + 10282972504, + 10282972505, + 4899841700, + 10282972506, + 4899841672, + 10282972500, + 10282972499, + 10282972498, + 10282972501, + 4899841661 + ], + "geometry": [ + { "lat": 40.7131106, "lon": -74.0140884 }, + { "lat": 40.7130584, "lon": -74.0141031 }, + { "lat": 40.7130078, "lon": -74.0141173 }, + { "lat": 40.7130116, "lon": -74.0141114 }, + { "lat": 40.7130114, "lon": -74.0141033 }, + { "lat": 40.7129912, "lon": -74.0140536 }, + { "lat": 40.7129858, "lon": -74.0140461 }, + { "lat": 40.7129779, "lon": -74.0140444 }, + { "lat": 40.7130284, "lon": -74.0140296 }, + { "lat": 40.7130815, "lon": -74.0140141 }, + { "lat": 40.7130778, "lon": -74.0140201 }, + { "lat": 40.7130781, "lon": -74.0140283 }, + { "lat": 40.7130995, "lon": -74.0140825 }, + { "lat": 40.7131035, "lon": -74.0140880 }, + { "lat": 40.7131106, "lon": -74.0140884 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124499680, + "bounds": { + "minlat": 40.7135828, + "minlon": -74.0139270, + "maxlat": 40.7136953, + "maxlon": -74.0138125 + }, + "nodes": [ + 4899841691, + 10282972543, + 10282972532, + 10282972533, + 10282972534, + 10282972535, + 10282972536, + 10282972537, + 10282972538, + 10282972539, + 10282972540, + 10282972541, + 10282972542, + 4899841652, + 10282972521, + 10282972520, + 10282972519, + 10282972522, + 4899841691 + ], + "geometry": [ + { "lat": 40.7136183, "lon": -74.0139270 }, + { "lat": 40.7136599, "lon": -74.0139147 }, + { "lat": 40.7136830, "lon": -74.0139079 }, + { "lat": 40.7136888, "lon": -74.0139050 }, + { "lat": 40.7136941, "lon": -74.0138988 }, + { "lat": 40.7136953, "lon": -74.0138927 }, + { "lat": 40.7136953, "lon": -74.0138849 }, + { "lat": 40.7136689, "lon": -74.0138217 }, + { "lat": 40.7136643, "lon": -74.0138154 }, + { "lat": 40.7136594, "lon": -74.0138125 }, + { "lat": 40.7136532, "lon": -74.0138125 }, + { "lat": 40.7136492, "lon": -74.0138130 }, + { "lat": 40.7136209, "lon": -74.0138241 }, + { "lat": 40.7135828, "lon": -74.0138391 }, + { "lat": 40.7135917, "lon": -74.0138395 }, + { "lat": 40.7135984, "lon": -74.0138466 }, + { "lat": 40.7136243, "lon": -74.0139111 }, + { "lat": 40.7136227, "lon": -74.0139212 }, + { "lat": 40.7136183, "lon": -74.0139270 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124597543, + "bounds": { + "minlat": 40.8674365, + "minlon": -73.9741354, + "maxlat": 40.8674942, + "maxlon": -73.9740832 + }, + "nodes": [ + 7373684766, + 7087554966, + 7087554967 + ], + "geometry": [ + { "lat": 40.8674365, "lon": -73.9740832 }, + { "lat": 40.8674444, "lon": -73.9741030 }, + { "lat": 40.8674942, "lon": -73.9741354 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1124597544, + "bounds": { + "minlat": 40.8671615, + "minlon": -73.9739623, + "maxlat": 40.8672117, + "maxlon": -73.9737230 + }, + "nodes": [ + 7087554963, + 7087554953 + ], + "geometry": [ + { "lat": 40.8672117, "lon": -73.9739623 }, + { "lat": 40.8671615, "lon": -73.9737230 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1124726425, + "bounds": { + "minlat": 40.7127804, + "minlon": -74.0125748, + "maxlat": 40.7131883, + "maxlon": -74.0116480 + }, + "nodes": [ + 4578218122, + 12026658705, + 11301575803, + 11301575802, + 11301575795, + 11301575817, + 11301575809, + 12027842149, + 10282972297, + 6865282549 + ], + "geometry": [ + { "lat": 40.7127804, "lon": -74.0116480 }, + { "lat": 40.7128177, "lon": -74.0117308 }, + { "lat": 40.7128551, "lon": -74.0118159 }, + { "lat": 40.7128756, "lon": -74.0118658 }, + { "lat": 40.7128972, "lon": -74.0119164 }, + { "lat": 40.7129427, "lon": -74.0120215 }, + { "lat": 40.7130323, "lon": -74.0122271 }, + { "lat": 40.7130915, "lon": -74.0123600 }, + { "lat": 40.7131484, "lon": -74.0124880 }, + { "lat": 40.7131883, "lon": -74.0125748 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "foot": "no", + "hgv": "local", + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "motor_vehicle": "permit", + "motorcar": "no", + "name": "Vesey Street", + "name:etymology:wikidata": "Q8019717", + "name:etymology:wikipedia": "en:William Vessey", + "name:ko": "비지 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592975", + "wikipedia": "en:Vesey Street" + } +}, +{ + "type": "way", + "id": 1124726432, + "bounds": { + "minlat": 40.7115166, + "minlon": -74.0123599, + "maxlat": 40.7115724, + "maxlon": -74.0122633 + }, + "nodes": [ + 10285341199, + 6551502947, + 10285341156, + 7133507055, + 6551502949, + 6551502948, + 7133507056, + 10285341157, + 10285341199 + ], + "geometry": [ + { "lat": 40.7115724, "lon": -74.0123534 }, + { "lat": 40.7115554, "lon": -74.0123599 }, + { "lat": 40.7115272, "lon": -74.0122951 }, + { "lat": 40.7115206, "lon": -74.0122793 }, + { "lat": 40.7115166, "lon": -74.0122697 }, + { "lat": 40.7115336, "lon": -74.0122633 }, + { "lat": 40.7115377, "lon": -74.0122731 }, + { "lat": 40.7115443, "lon": -74.0122888 }, + { "lat": 40.7115724, "lon": -74.0123534 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124726444, + "bounds": { + "minlat": 40.7104313, + "minlon": -74.0127414, + "maxlat": 40.7105653, + "maxlon": -74.0126261 + }, + "nodes": [ + 6551501228, + 10288759687, + 6551501221, + 6551502075, + 10285341358, + 6551502078, + 6551501955, + 10285341363, + 6551501228 + ], + "geometry": [ + { "lat": 40.7105653, "lon": -74.0127052 }, + { "lat": 40.7105238, "lon": -74.0127200 }, + { "lat": 40.7104638, "lon": -74.0127414 }, + { "lat": 40.7104630, "lon": -74.0127405 }, + { "lat": 40.7104456, "lon": -74.0126973 }, + { "lat": 40.7104313, "lon": -74.0126618 }, + { "lat": 40.7105344, "lon": -74.0126261 }, + { "lat": 40.7105476, "lon": -74.0126598 }, + { "lat": 40.7105653, "lon": -74.0127052 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124726445, + "bounds": { + "minlat": 40.7103872, + "minlon": -74.0128199, + "maxlat": 40.7104659, + "maxlon": -74.0126694 + }, + "nodes": [ + 6551502859, + 10285341360, + 10285341252, + 6551502077, + 10285341359, + 6551502867, + 6551502859 + ], + "geometry": [ + { "lat": 40.7104465, "lon": -74.0128199 }, + { "lat": 40.7104023, "lon": -74.0127133 }, + { "lat": 40.7103872, "lon": -74.0126771 }, + { "lat": 40.7104093, "lon": -74.0126694 }, + { "lat": 40.7104241, "lon": -74.0127050 }, + { "lat": 40.7104659, "lon": -74.0128058 }, + { "lat": 40.7104465, "lon": -74.0128199 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124726446, + "bounds": { + "minlat": 40.7103621, + "minlon": -74.0128680, + "maxlat": 40.7104598, + "maxlon": -74.0126771 + }, + "nodes": [ + 6551500629, + 6551500630, + 6551500633, + 6551500634, + 6551500592, + 10285341361, + 10285341253, + 10285341252, + 10285341360, + 6551502859, + 6551500590, + 6551500629 + ], + "geometry": [ + { "lat": 40.7104598, "lon": -74.0128521 }, + { "lat": 40.7104502, "lon": -74.0128591 }, + { "lat": 40.7104476, "lon": -74.0128610 }, + { "lat": 40.7104380, "lon": -74.0128680 }, + { "lat": 40.7104309, "lon": -74.0128509 }, + { "lat": 40.7103774, "lon": -74.0127228 }, + { "lat": 40.7103621, "lon": -74.0126861 }, + { "lat": 40.7103872, "lon": -74.0126771 }, + { "lat": 40.7104023, "lon": -74.0127133 }, + { "lat": 40.7104465, "lon": -74.0128199 }, + { "lat": 40.7104571, "lon": -74.0128450 }, + { "lat": 40.7104598, "lon": -74.0128521 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124726447, + "bounds": { + "minlat": 40.7103376, + "minlon": -74.0128665, + "maxlat": 40.7104309, + "maxlon": -74.0126861 + }, + "nodes": [ + 6551500592, + 6551500589, + 10285341362, + 10285341254, + 10285341253, + 10285341361, + 6551500592 + ], + "geometry": [ + { "lat": 40.7104309, "lon": -74.0128509 }, + { "lat": 40.7104095, "lon": -74.0128665 }, + { "lat": 40.7103532, "lon": -74.0127319 }, + { "lat": 40.7103376, "lon": -74.0126944 }, + { "lat": 40.7103621, "lon": -74.0126861 }, + { "lat": 40.7103774, "lon": -74.0127228 }, + { "lat": 40.7104309, "lon": -74.0128509 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124726448, + "bounds": { + "minlat": 40.7103040, + "minlon": -74.0138054, + "maxlat": 40.7108034, + "maxlon": -74.0126944 + }, + "nodes": [ + 10285341254, + 6419521275, + 6551502121, + 10285341357, + 6551502843, + 6551502857, + 6551502858, + 10285341256, + 8641798922, + 8641798923, + 10288472857, + 10288472873, + 6551500593, + 6551500589, + 10285341362, + 10285341254 + ], + "geometry": [ + { "lat": 40.7103376, "lon": -74.0126944 }, + { "lat": 40.7103102, "lon": -74.0127038 }, + { "lat": 40.7103040, "lon": -74.0127065 }, + { "lat": 40.7103201, "lon": -74.0127445 }, + { "lat": 40.7103622, "lon": -74.0128439 }, + { "lat": 40.7103905, "lon": -74.0129105 }, + { "lat": 40.7104176, "lon": -74.0129744 }, + { "lat": 40.7106764, "lon": -74.0135717 }, + { "lat": 40.7107255, "lon": -74.0136604 }, + { "lat": 40.7108034, "lon": -74.0138054 }, + { "lat": 40.7106575, "lon": -74.0134575 }, + { "lat": 40.7106220, "lon": -74.0133727 }, + { "lat": 40.7106040, "lon": -74.0133298 }, + { "lat": 40.7104095, "lon": -74.0128665 }, + { "lat": 40.7103532, "lon": -74.0127319 }, + { "lat": 40.7103376, "lon": -74.0126944 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124726450, + "bounds": { + "minlat": 40.7106040, + "minlon": -74.0138417, + "maxlat": 40.7108325, + "maxlon": -74.0133143 + }, + "nodes": [ + 6551500594, + 6551500593, + 10288472873, + 10288472857, + 8641798923, + 10285341259, + 6551500115, + 6551500112, + 6551584156, + 8213941369, + 10288472858, + 10288472874, + 6551500594 + ], + "geometry": [ + { "lat": 40.7106253, "lon": -74.0133143 }, + { "lat": 40.7106040, "lon": -74.0133298 }, + { "lat": 40.7106220, "lon": -74.0133727 }, + { "lat": 40.7106575, "lon": -74.0134575 }, + { "lat": 40.7108034, "lon": -74.0138054 }, + { "lat": 40.7108204, "lon": -74.0138417 }, + { "lat": 40.7108325, "lon": -74.0138337 }, + { "lat": 40.7108069, "lon": -74.0137724 }, + { "lat": 40.7108151, "lon": -74.0137663 }, + { "lat": 40.7107967, "lon": -74.0137226 }, + { "lat": 40.7107178, "lon": -74.0135348 }, + { "lat": 40.7106433, "lon": -74.0133572 }, + { "lat": 40.7106253, "lon": -74.0133143 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124726451, + "bounds": { + "minlat": 40.7104002, + "minlon": -74.0135717, + "maxlat": 40.7106764, + "maxlon": -74.0129744 + }, + "nodes": [ + 6551502855, + 10285341261, + 10285341256, + 6551502858, + 6551502855 + ], + "geometry": [ + { "lat": 40.7104002, "lon": -74.0129872 }, + { "lat": 40.7105869, "lon": -74.0134153 }, + { "lat": 40.7106764, "lon": -74.0135717 }, + { "lat": 40.7104176, "lon": -74.0129744 }, + { "lat": 40.7104002, "lon": -74.0129872 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124726452, + "bounds": { + "minlat": 40.7102720, + "minlon": -74.0134153, + "maxlat": 40.7105869, + "maxlon": -74.0127194 + }, + "nodes": [ + 6551502115, + 10285341250, + 10285341255, + 8641798918, + 10285341249, + 8641798919, + 8641798920, + 7673318047, + 10285341248, + 8641798921, + 10285341261, + 6551502855, + 6551502848, + 6551502831, + 10285341365, + 6551502115 + ], + "geometry": [ + { "lat": 40.7102864, "lon": -74.0127194 }, + { "lat": 40.7102817, "lon": -74.0127236 }, + { "lat": 40.7102786, "lon": -74.0127311 }, + { "lat": 40.7102755, "lon": -74.0127383 }, + { "lat": 40.7102720, "lon": -74.0127626 }, + { "lat": 40.7102733, "lon": -74.0127861 }, + { "lat": 40.7102798, "lon": -74.0128122 }, + { "lat": 40.7103265, "lon": -74.0129181 }, + { "lat": 40.7104104, "lon": -74.0130889 }, + { "lat": 40.7104977, "lon": -74.0132597 }, + { "lat": 40.7105869, "lon": -74.0134153 }, + { "lat": 40.7104002, "lon": -74.0129872 }, + { "lat": 40.7103731, "lon": -74.0129234 }, + { "lat": 40.7103448, "lon": -74.0128567 }, + { "lat": 40.7103003, "lon": -74.0127520 }, + { "lat": 40.7102864, "lon": -74.0127194 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124726458, + "bounds": { + "minlat": 40.7111270, + "minlon": -74.0144879, + "maxlat": 40.7118265, + "maxlon": -74.0143905 + }, + "nodes": [ + 10285341285, + 10285341314, + 10285341292, + 10285341293, + 10285341294, + 10285341295, + 10285341296, + 10285341297, + 10285341298, + 10285341299, + 10285341300, + 10285341315, + 10285341301, + 10285341302, + 10285341303, + 10285341304, + 10285341305, + 10285341306, + 10285341307, + 10285341308, + 10285341309, + 10285341310, + 4899841643, + 10285341311, + 10285341312, + 10285341313, + 10285341277, + 10285341288, + 10285341289, + 10285341290, + 10285341291, + 10285341278, + 10285341279, + 10285341280, + 10285341282, + 10285341283, + 10285341284, + 10285341281, + 4899841698, + 10285341287, + 10285341286, + 4899841664, + 10285341285 + ], + "geometry": [ + { "lat": 40.7112394, "lon": -74.0144208 }, + { "lat": 40.7111871, "lon": -74.0144330 }, + { "lat": 40.7111422, "lon": -74.0144434 }, + { "lat": 40.7111340, "lon": -74.0144471 }, + { "lat": 40.7111287, "lon": -74.0144539 }, + { "lat": 40.7111270, "lon": -74.0144625 }, + { "lat": 40.7111285, "lon": -74.0144720 }, + { "lat": 40.7111323, "lon": -74.0144784 }, + { "lat": 40.7111401, "lon": -74.0144830 }, + { "lat": 40.7111820, "lon": -74.0144865 }, + { "lat": 40.7112010, "lon": -74.0144879 }, + { "lat": 40.7112122, "lon": -74.0144864 }, + { "lat": 40.7112256, "lon": -74.0144846 }, + { "lat": 40.7112516, "lon": -74.0144792 }, + { "lat": 40.7115434, "lon": -74.0144148 }, + { "lat": 40.7115918, "lon": -74.0144059 }, + { "lat": 40.7116221, "lon": -74.0144013 }, + { "lat": 40.7116460, "lon": -74.0144018 }, + { "lat": 40.7117012, "lon": -74.0144056 }, + { "lat": 40.7118258, "lon": -74.0144158 }, + { "lat": 40.7118265, "lon": -74.0144041 }, + { "lat": 40.7117030, "lon": -74.0143947 }, + { "lat": 40.7116462, "lon": -74.0143906 }, + { "lat": 40.7116214, "lon": -74.0143905 }, + { "lat": 40.7115903, "lon": -74.0143950 }, + { "lat": 40.7115421, "lon": -74.0144035 }, + { "lat": 40.7113309, "lon": -74.0144498 }, + { "lat": 40.7113315, "lon": -74.0144549 }, + { "lat": 40.7112920, "lon": -74.0144628 }, + { "lat": 40.7112892, "lon": -74.0144383 }, + { "lat": 40.7113287, "lon": -74.0144305 }, + { "lat": 40.7113276, "lon": -74.0144195 }, + { "lat": 40.7112719, "lon": -74.0144307 }, + { "lat": 40.7112746, "lon": -74.0144519 }, + { "lat": 40.7112727, "lon": -74.0144589 }, + { "lat": 40.7112688, "lon": -74.0144630 }, + { "lat": 40.7112560, "lon": -74.0144664 }, + { "lat": 40.7112480, "lon": -74.0144639 }, + { "lat": 40.7112425, "lon": -74.0144593 }, + { "lat": 40.7112346, "lon": -74.0144429 }, + { "lat": 40.7112323, "lon": -74.0144341 }, + { "lat": 40.7112329, "lon": -74.0144259 }, + { "lat": 40.7112394, "lon": -74.0144208 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1124746375, + "bounds": { + "minlat": 40.8439100, + "minlon": -74.0006935, + "maxlat": 40.8439966, + "maxlon": -74.0005048 + }, + "nodes": [ + 10285522881, + 10285522880 + ], + "geometry": [ + { "lat": 40.8439966, "lon": -74.0006935 }, + { "lat": 40.8439100, "lon": -74.0005048 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1124746376, + "bounds": { + "minlat": 40.8436313, + "minlon": -74.0005048, + "maxlat": 40.8439100, + "maxlon": -74.0003299 + }, + "nodes": [ + 10285522880, + 10285522879, + 10285522878 + ], + "geometry": [ + { "lat": 40.8439100, "lon": -74.0005048 }, + { "lat": 40.8438010, "lon": -74.0003299 }, + { "lat": 40.8436313, "lon": -74.0004848 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1124771025, + "bounds": { + "minlat": 40.8228050, + "minlon": -73.9759261, + "maxlat": 40.8228824, + "maxlon": -73.9758823 + }, + "nodes": [ + 3493496039, + 103119568 + ], + "geometry": [ + { "lat": 40.8228050, "lon": -73.9759261 }, + { "lat": 40.8228824, "lon": -73.9758823 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1124771026, + "bounds": { + "minlat": 40.8228824, + "minlon": -73.9758823, + "maxlat": 40.8233160, + "maxlon": -73.9756771 + }, + "nodes": [ + 103119568, + 9580069001, + 103137119, + 6924899654 + ], + "geometry": [ + { "lat": 40.8228824, "lon": -73.9758823 }, + { "lat": 40.8230362, "lon": -73.9758107 }, + { "lat": 40.8232610, "lon": -73.9757060 }, + { "lat": 40.8233160, "lon": -73.9756771 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1124772939, + "bounds": { + "minlat": 40.8330785, + "minlon": -73.9915568, + "maxlat": 40.8332504, + "maxlon": -73.9912481 + }, + "nodes": [ + 4205620792, + 13527758495, + 10285702203 + ], + "geometry": [ + { "lat": 40.8330785, "lon": -73.9912481 }, + { "lat": 40.8331358, "lon": -73.9913510 }, + { "lat": 40.8332504, "lon": -73.9915568 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1124902005, + "bounds": { + "minlat": 40.8408240, + "minlon": -73.9972550, + "maxlat": 40.8409660, + "maxlon": -73.9961438 + }, + "nodes": [ + 10286906178, + 12692393418, + 12692393419, + 12692393424, + 12692393423, + 12692393422, + 12692393420, + 12692393416, + 12692393421, + 12692393417, + 12692393429 + ], + "geometry": [ + { "lat": 40.8409660, "lon": -73.9972550 }, + { "lat": 40.8409281, "lon": -73.9971553 }, + { "lat": 40.8409368, "lon": -73.9969696 }, + { "lat": 40.8409301, "lon": -73.9968155 }, + { "lat": 40.8408999, "lon": -73.9966577 }, + { "lat": 40.8409246, "lon": -73.9963780 }, + { "lat": 40.8409251, "lon": -73.9963121 }, + { "lat": 40.8409172, "lon": -73.9962628 }, + { "lat": 40.8408912, "lon": -73.9962014 }, + { "lat": 40.8408643, "lon": -73.9961756 }, + { "lat": 40.8408240, "lon": -73.9961438 } + ], + "tags": { + "highway": "service", + "source": "maxar" + } +}, +{ + "type": "way", + "id": 1125106295, + "bounds": { + "minlat": 40.7121845, + "minlon": -74.0101206, + "maxlat": 40.7124587, + "maxlon": -74.0099030 + }, + "nodes": [ + 10288802616, + 10288802617, + 10288802618, + 10288802619, + 10288802620, + 10288802621, + 10288802622, + 10288802623, + 10288802616 + ], + "geometry": [ + { "lat": 40.7121900, "lon": -74.0101206 }, + { "lat": 40.7121845, "lon": -74.0101082 }, + { "lat": 40.7124516, "lon": -74.0099037 }, + { "lat": 40.7124547, "lon": -74.0099030 }, + { "lat": 40.7124577, "lon": -74.0099063 }, + { "lat": 40.7124587, "lon": -74.0099104 }, + { "lat": 40.7124581, "lon": -74.0099145 }, + { "lat": 40.7124564, "lon": -74.0099165 }, + { "lat": 40.7121900, "lon": -74.0101206 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1125106305, + "bounds": { + "minlat": 40.7127882, + "minlon": -74.0096982, + "maxlat": 40.7128605, + "maxlon": -74.0096403 + }, + "nodes": [ + 10288802640, + 10288802651, + 10288802641, + 10288802642, + 10288802643, + 10288802644, + 10288802645, + 10288802646, + 10288802650, + 10288802647, + 10288802648, + 10288802649, + 10288802640 + ], + "geometry": [ + { "lat": 40.7128605, "lon": -74.0096540 }, + { "lat": 40.7128210, "lon": -74.0096844 }, + { "lat": 40.7128042, "lon": -74.0096973 }, + { "lat": 40.7127998, "lon": -74.0096982 }, + { "lat": 40.7127959, "lon": -74.0096953 }, + { "lat": 40.7127889, "lon": -74.0096798 }, + { "lat": 40.7127882, "lon": -74.0096731 }, + { "lat": 40.7127907, "lon": -74.0096679 }, + { "lat": 40.7128074, "lon": -74.0096550 }, + { "lat": 40.7128250, "lon": -74.0096414 }, + { "lat": 40.7128273, "lon": -74.0096403 }, + { "lat": 40.7128311, "lon": -74.0096409 }, + { "lat": 40.7128605, "lon": -74.0096540 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1125106308, + "bounds": { + "minlat": 40.7131744, + "minlon": -74.0094094, + "maxlat": 40.7132458, + "maxlon": -74.0093259 + }, + "nodes": [ + 10288802652, + 10288802653, + 10288802654, + 10288802655, + 10288802656, + 10288802657, + 10288802658, + 10288802659, + 10288802660, + 10288802661, + 10288802663, + 10288802662, + 10288802652 + ], + "geometry": [ + { "lat": 40.7131744, "lon": -74.0094094 }, + { "lat": 40.7132281, "lon": -74.0093680 }, + { "lat": 40.7132430, "lon": -74.0093562 }, + { "lat": 40.7132458, "lon": -74.0093515 }, + { "lat": 40.7132457, "lon": -74.0093456 }, + { "lat": 40.7132389, "lon": -74.0093300 }, + { "lat": 40.7132347, "lon": -74.0093259 }, + { "lat": 40.7132301, "lon": -74.0093264 }, + { "lat": 40.7132116, "lon": -74.0093406 }, + { "lat": 40.7131862, "lon": -74.0093599 }, + { "lat": 40.7131834, "lon": -74.0093626 }, + { "lat": 40.7131818, "lon": -74.0093663 }, + { "lat": 40.7131744, "lon": -74.0094094 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1125106323, + "bounds": { + "minlat": 40.7097287, + "minlon": -74.0117600, + "maxlat": 40.7097518, + "maxlon": -74.0117165 + }, + "nodes": [ + 8262936616, + 8840333845 + ], + "geometry": [ + { "lat": 40.7097518, "lon": -74.0117600 }, + { "lat": 40.7097287, "lon": -74.0117165 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "foot": "yes", + "highway": "unclassified", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1125106325, + "bounds": { + "minlat": 40.7097350, + "minlon": -74.0116704, + "maxlat": 40.7114422, + "maxlon": -74.0105609 + }, + "nodes": [ + 10288802708, + 10288802676, + 10288802709, + 10288802719, + 10288802710, + 10288802711, + 10288802712, + 10288802737, + 10288802736, + 10288802734, + 10288802732, + 10288802713, + 10288802714, + 10288802731, + 10288802733, + 10288802735, + 10288802738, + 10288802715, + 10288802716, + 10288802717, + 10288802718, + 10288802708 + ], + "geometry": [ + { "lat": 40.7097401, "lon": -74.0116704 }, + { "lat": 40.7097373, "lon": -74.0116642 }, + { "lat": 40.7097350, "lon": -74.0116578 }, + { "lat": 40.7097693, "lon": -74.0116336 }, + { "lat": 40.7098276, "lon": -74.0115936 }, + { "lat": 40.7098337, "lon": -74.0115909 }, + { "lat": 40.7098844, "lon": -74.0115925 }, + { "lat": 40.7103327, "lon": -74.0112944 }, + { "lat": 40.7104735, "lon": -74.0112007 }, + { "lat": 40.7109746, "lon": -74.0108675 }, + { "lat": 40.7110814, "lon": -74.0107965 }, + { "lat": 40.7114357, "lon": -74.0105609 }, + { "lat": 40.7114422, "lon": -74.0105775 }, + { "lat": 40.7110881, "lon": -74.0108130 }, + { "lat": 40.7109811, "lon": -74.0108838 }, + { "lat": 40.7104853, "lon": -74.0112124 }, + { "lat": 40.7103377, "lon": -74.0113103 }, + { "lat": 40.7098904, "lon": -74.0116065 }, + { "lat": 40.7098793, "lon": -74.0116099 }, + { "lat": 40.7098303, "lon": -74.0116074 }, + { "lat": 40.7097775, "lon": -74.0116446 }, + { "lat": 40.7097401, "lon": -74.0116704 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1125106328, + "bounds": { + "minlat": 40.7093880, + "minlon": -74.0119067, + "maxlat": 40.7096763, + "maxlon": -74.0117027 + }, + "nodes": [ + 10288802707, + 10288802720, + 10288802729, + 10288802721, + 10288802722, + 10288802723, + 10288802724, + 10288802725, + 10288802726, + 10288802727, + 10288802730, + 10288802728, + 10288802707 + ], + "geometry": [ + { "lat": 40.7096741, "lon": -74.0117082 }, + { "lat": 40.7096716, "lon": -74.0117027 }, + { "lat": 40.7096437, "lon": -74.0117216 }, + { "lat": 40.7093954, "lon": -74.0118897 }, + { "lat": 40.7093901, "lon": -74.0118939 }, + { "lat": 40.7093880, "lon": -74.0118979 }, + { "lat": 40.7093888, "lon": -74.0119017 }, + { "lat": 40.7093911, "lon": -74.0119061 }, + { "lat": 40.7093949, "lon": -74.0119067 }, + { "lat": 40.7094007, "lon": -74.0119038 }, + { "lat": 40.7096522, "lon": -74.0117304 }, + { "lat": 40.7096763, "lon": -74.0117137 }, + { "lat": 40.7096741, "lon": -74.0117082 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1125232007, + "bounds": { + "minlat": 40.8109089, + "minlon": -74.0041611, + "maxlat": 40.8112674, + "maxlon": -74.0037987 + }, + "nodes": [ + 10289890326, + 10289890330, + 10289890327, + 10289890328, + 10289890329 + ], + "geometry": [ + { "lat": 40.8109089, "lon": -74.0041611 }, + { "lat": 40.8109420, "lon": -74.0041317 }, + { "lat": 40.8110224, "lon": -74.0040603 }, + { "lat": 40.8110877, "lon": -74.0039742 }, + { "lat": 40.8112674, "lon": -74.0037987 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1125232008, + "bounds": { + "minlat": 40.8107950, + "minlon": -74.0039725, + "maxlat": 40.8109591, + "maxlon": -74.0037538 + }, + "nodes": [ + 2325759614, + 10289890339, + 10289890331, + 10289890332, + 10289890333, + 10289890334, + 10289890335, + 10289890336, + 10289890337, + 10289890338, + 10289890340, + 103858394 + ], + "geometry": [ + { "lat": 40.8107950, "lon": -74.0037852 }, + { "lat": 40.8108456, "lon": -74.0037648 }, + { "lat": 40.8108553, "lon": -74.0037608 }, + { "lat": 40.8108958, "lon": -74.0037538 }, + { "lat": 40.8109225, "lon": -74.0037663 }, + { "lat": 40.8109454, "lon": -74.0037999 }, + { "lat": 40.8109591, "lon": -74.0038508 }, + { "lat": 40.8109537, "lon": -74.0038966 }, + { "lat": 40.8109328, "lon": -74.0039359 }, + { "lat": 40.8109018, "lon": -74.0039577 }, + { "lat": 40.8108863, "lon": -74.0039610 }, + { "lat": 40.8108318, "lon": -74.0039725 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1125256558, + "bounds": { + "minlat": 40.7101470, + "minlon": -74.0126706, + "maxlat": 40.7108984, + "maxlon": -74.0124183 + }, + "nodes": [ + 8213944614, + 10285341227, + 2531682690, + 10285341228, + 8262936679, + 10288454364, + 42422035 + ], + "geometry": [ + { "lat": 40.7108984, "lon": -74.0124183 }, + { "lat": 40.7107870, "lon": -74.0124574 }, + { "lat": 40.7107710, "lon": -74.0124630 }, + { "lat": 40.7102804, "lon": -74.0126387 }, + { "lat": 40.7102410, "lon": -74.0126520 }, + { "lat": 40.7101951, "lon": -74.0126631 }, + { "lat": 40.7101470, "lon": -74.0126706 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "yes", + "highway": "unclassified", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1125256607, + "bounds": { + "minlat": 40.7109135, + "minlon": -74.0090374, + "maxlat": 40.7110047, + "maxlon": -74.0089304 + }, + "nodes": [ + 10290135966, + 10290135967, + 10290135968, + 10290135969, + 10290135970, + 10290135971, + 10290135972, + 10290135976, + 10290135973, + 10290135974, + 10290135975, + 10290135966 + ], + "geometry": [ + { "lat": 40.7109824, "lon": -74.0089304 }, + { "lat": 40.7109290, "lon": -74.0089748 }, + { "lat": 40.7109142, "lon": -74.0089887 }, + { "lat": 40.7109135, "lon": -74.0089943 }, + { "lat": 40.7109315, "lon": -74.0090335 }, + { "lat": 40.7109347, "lon": -74.0090374 }, + { "lat": 40.7109391, "lon": -74.0090362 }, + { "lat": 40.7109522, "lon": -74.0090256 }, + { "lat": 40.7110024, "lon": -74.0089835 }, + { "lat": 40.7110047, "lon": -74.0089796 }, + { "lat": 40.7110036, "lon": -74.0089745 }, + { "lat": 40.7109824, "lon": -74.0089304 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1125314881, + "bounds": { + "minlat": 40.8637309, + "minlon": -73.9870962, + "maxlat": 40.8640001, + "maxlon": -73.9869078 + }, + "nodes": [ + 6111818797, + 10290655750 + ], + "geometry": [ + { "lat": 40.8640001, "lon": -73.9869078 }, + { "lat": 40.8637309, "lon": -73.9870962 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1125320409, + "bounds": { + "minlat": 40.7162674, + "minlon": -74.0096179, + "maxlat": 40.7163550, + "maxlon": -74.0095516 + }, + "nodes": [ + 10290705664, + 10290705666, + 11517225802, + 10290705665 + ], + "geometry": [ + { "lat": 40.7162674, "lon": -74.0096179 }, + { "lat": 40.7163002, "lon": -74.0095931 }, + { "lat": 40.7163169, "lon": -74.0095804 }, + { "lat": 40.7163550, "lon": -74.0095516 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1125366598, + "bounds": { + "minlat": 40.7165790, + "minlon": -73.9187237, + "maxlat": 40.7167129, + "maxlon": -73.9184061 + }, + "nodes": [ + 10291079263, + 10291079264, + 10291079265 + ], + "geometry": [ + { "lat": 40.7167129, "lon": -73.9187237 }, + { "lat": 40.7165790, "lon": -73.9186366 }, + { "lat": 40.7166515, "lon": -73.9184061 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1125397945, + "bounds": { + "minlat": 40.8640539, + "minlon": -73.9940102, + "maxlat": 40.8646769, + "maxlon": -73.9934976 + }, + "nodes": [ + 10291328952, + 8075853614, + 10291328954, + 10291328956, + 10243214287, + 10291328953 + ], + "geometry": [ + { "lat": 40.8646769, "lon": -73.9934976 }, + { "lat": 40.8645980, "lon": -73.9935516 }, + { "lat": 40.8645274, "lon": -73.9936065 }, + { "lat": 40.8642291, "lon": -73.9938760 }, + { "lat": 40.8641669, "lon": -73.9939322 }, + { "lat": 40.8640539, "lon": -73.9940102 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1125397946, + "bounds": { + "minlat": 40.8645274, + "minlon": -73.9937668, + "maxlat": 40.8646007, + "maxlon": -73.9936065 + }, + "nodes": [ + 10291328954, + 10291328955 + ], + "geometry": [ + { "lat": 40.8645274, "lon": -73.9936065 }, + { "lat": 40.8646007, "lon": -73.9937668 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1125557552, + "bounds": { + "minlat": 40.7621748, + "minlon": -73.9250618, + "maxlat": 40.7623635, + "maxlon": -73.9245763 + }, + "nodes": [ + 10292696614, + 10292696616, + 10292696615, + 5488242215 + ], + "geometry": [ + { "lat": 40.7623635, "lon": -73.9250618 }, + { "lat": 40.7623129, "lon": -73.9249613 }, + { "lat": 40.7621748, "lon": -73.9246868 }, + { "lat": 40.7622245, "lon": -73.9245763 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1125745164, + "bounds": { + "minlat": 40.8620950, + "minlon": -74.0079340, + "maxlat": 40.8622893, + "maxlon": -74.0078671 + }, + "nodes": [ + 10294311018, + 10294311017 + ], + "geometry": [ + { "lat": 40.8620950, "lon": -74.0078671 }, + { "lat": 40.8622893, "lon": -74.0079340 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1125745165, + "bounds": { + "minlat": 40.8619217, + "minlon": -74.0090108, + "maxlat": 40.8623505, + "maxlon": -74.0064924 + }, + "nodes": [ + 2468165341, + 10294311048, + 10294311047, + 10294311046, + 10294311045, + 10294311044, + 10294311043, + 10294311042, + 10294311041, + 13167768994, + 10294311017, + 3654867020, + 10294311040, + 10294311039, + 10294311038, + 10294311037, + 10294311036, + 3654867008 + ], + "geometry": [ + { "lat": 40.8622657, "lon": -74.0064924 }, + { "lat": 40.8622511, "lon": -74.0065522 }, + { "lat": 40.8622521, "lon": -74.0066260 }, + { "lat": 40.8622765, "lon": -74.0067098 }, + { "lat": 40.8622922, "lon": -74.0067380 }, + { "lat": 40.8623256, "lon": -74.0068325 }, + { "lat": 40.8623505, "lon": -74.0071450 }, + { "lat": 40.8623429, "lon": -74.0075098 }, + { "lat": 40.8623059, "lon": -74.0078283 }, + { "lat": 40.8622969, "lon": -74.0078854 }, + { "lat": 40.8622893, "lon": -74.0079340 }, + { "lat": 40.8622845, "lon": -74.0079650 }, + { "lat": 40.8622202, "lon": -74.0082783 }, + { "lat": 40.8621365, "lon": -74.0085391 }, + { "lat": 40.8620655, "lon": -74.0087235 }, + { "lat": 40.8620107, "lon": -74.0088435 }, + { "lat": 40.8619671, "lon": -74.0089347 }, + { "lat": 40.8619217, "lon": -74.0090108 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1125891092, + "bounds": { + "minlat": 40.8596400, + "minlon": -74.0088568, + "maxlat": 40.8601427, + "maxlon": -74.0086103 + }, + "nodes": [ + 4472813113, + 13173640486, + 4472812861, + 4472813123, + 4472813101 + ], + "geometry": [ + { "lat": 40.8601427, "lon": -74.0088568 }, + { "lat": 40.8600856, "lon": -74.0088301 }, + { "lat": 40.8599981, "lon": -74.0087822 }, + { "lat": 40.8598029, "lon": -74.0086841 }, + { "lat": 40.8596400, "lon": -74.0086103 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1125953961, + "bounds": { + "minlat": 40.8626254, + "minlon": -73.9988711, + "maxlat": 40.8636071, + "maxlon": -73.9963446 + }, + "nodes": [ + 3743113590, + 10296089013, + 10296089012, + 9239200508, + 10296089011, + 10296089010, + 10296089009, + 6117378848, + 6117378872, + 6117378861, + 10296058708, + 2468214206, + 10296058707 + ], + "geometry": [ + { "lat": 40.8632062, "lon": -73.9963446 }, + { "lat": 40.8629023, "lon": -73.9965664 }, + { "lat": 40.8627592, "lon": -73.9966636 }, + { "lat": 40.8626706, "lon": -73.9967286 }, + { "lat": 40.8626254, "lon": -73.9968299 }, + { "lat": 40.8626279, "lon": -73.9970043 }, + { "lat": 40.8627344, "lon": -73.9974696 }, + { "lat": 40.8628512, "lon": -73.9979797 }, + { "lat": 40.8628946, "lon": -73.9981621 }, + { "lat": 40.8629263, "lon": -73.9982895 }, + { "lat": 40.8629697, "lon": -73.9984848 }, + { "lat": 40.8629834, "lon": -73.9985155 }, + { "lat": 40.8636071, "lon": -73.9988711 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1125972606, + "bounds": { + "minlat": 40.7144439, + "minlon": -73.9305759, + "maxlat": 40.7145378, + "maxlon": -73.9304001 + }, + "nodes": [ + 10296243015, + 5330321644 + ], + "geometry": [ + { "lat": 40.7145378, "lon": -73.9304001 }, + { "lat": 40.7144439, "lon": -73.9305759 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Grand Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1125972607, + "bounds": { + "minlat": 40.7142176, + "minlon": -73.9317803, + "maxlat": 40.7142278, + "maxlon": -73.9314780 + }, + "nodes": [ + 9084746097, + 8842568842, + 8842568846, + 8842568843 + ], + "geometry": [ + { "lat": 40.7142278, "lon": -73.9314780 }, + { "lat": 40.7142193, "lon": -73.9316454 }, + { "lat": 40.7142176, "lon": -73.9317107 }, + { "lat": 40.7142251, "lon": -73.9317803 } + ], + "tags": { + "bicycle": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1125972609, + "bounds": { + "minlat": 40.7143448, + "minlon": -73.9323951, + "maxlat": 40.7143837, + "maxlon": -73.9321243 + }, + "nodes": [ + 12437305272, + 10296243052, + 13185769588, + 13185769587, + 1275778413 + ], + "geometry": [ + { "lat": 40.7143804, "lon": -73.9321243 }, + { "lat": 40.7143837, "lon": -73.9322007 }, + { "lat": 40.7143817, "lon": -73.9323168 }, + { "lat": 40.7143668, "lon": -73.9323506 }, + { "lat": 40.7143448, "lon": -73.9323951 } + ], + "tags": { + "highway": "service", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1126152139, + "bounds": { + "minlat": 40.8467133, + "minlon": -73.9707353, + "maxlat": 40.8468557, + "maxlon": -73.9706824 + }, + "nodes": [ + 660546281, + 660546073 + ], + "geometry": [ + { "lat": 40.8467133, "lon": -73.9707353 }, + { "lat": 40.8468557, "lon": -73.9706824 } + ], + "tags": { + "highway": "tertiary", + "name": "Palisade Avenue", + "oneway": "yes", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1126410079, + "bounds": { + "minlat": 40.7098340, + "minlon": -74.0099513, + "maxlat": 40.7099201, + "maxlon": -74.0098588 + }, + "nodes": [ + 10299839460, + 10299839461, + 10299839462, + 10299839463, + 10299839464, + 10299839465, + 10299839466, + 10299839472, + 10299839467, + 10299839460 + ], + "geometry": [ + { "lat": 40.7099201, "lon": -74.0098911 }, + { "lat": 40.7098563, "lon": -74.0099462 }, + { "lat": 40.7098489, "lon": -74.0099513 }, + { "lat": 40.7098471, "lon": -74.0099503 }, + { "lat": 40.7098345, "lon": -74.0099240 }, + { "lat": 40.7098340, "lon": -74.0099211 }, + { "lat": 40.7098348, "lon": -74.0099181 }, + { "lat": 40.7098410, "lon": -74.0099129 }, + { "lat": 40.7099050, "lon": -74.0098588 }, + { "lat": 40.7099201, "lon": -74.0098911 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1126410086, + "bounds": { + "minlat": 40.7091731, + "minlon": -74.0105706, + "maxlat": 40.7093856, + "maxlon": -74.0103931 + }, + "nodes": [ + 10299839473, + 10299849799, + 42422042 + ], + "geometry": [ + { "lat": 40.7093856, "lon": -74.0103931 }, + { "lat": 40.7092678, "lon": -74.0104917 }, + { "lat": 40.7091731, "lon": -74.0105706 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|yes|designated", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete:plates", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1126410098, + "bounds": { + "minlat": 40.7098035, + "minlon": -74.0105464, + "maxlat": 40.7099618, + "maxlon": -74.0102011 + }, + "nodes": [ + 10299849711, + 10299849712 + ], + "geometry": [ + { "lat": 40.7099618, "lon": -74.0105464 }, + { "lat": 40.7098035, "lon": -74.0102011 } + ], + "tags": { + "access": "private", + "cutting": "yes", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1126410207, + "bounds": { + "minlat": 40.7100573, + "minlon": -74.0110996, + "maxlat": 40.7102154, + "maxlon": -74.0107550 + }, + "nodes": [ + 10299849936, + 10299849937 + ], + "geometry": [ + { "lat": 40.7102154, "lon": -74.0110996 }, + { "lat": 40.7100573, "lon": -74.0107550 } + ], + "tags": { + "access": "private", + "cutting": "yes", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1126410208, + "bounds": { + "minlat": 40.7102154, + "minlon": -74.0112785, + "maxlat": 40.7102648, + "maxlon": -74.0110996 + }, + "nodes": [ + 10299849935, + 10299849940, + 10299849939, + 10299849941, + 10299849938, + 10299849946, + 10299849936 + ], + "geometry": [ + { "lat": 40.7102648, "lon": -74.0112785 }, + { "lat": 40.7102605, "lon": -74.0112393 }, + { "lat": 40.7102548, "lon": -74.0112098 }, + { "lat": 40.7102490, "lon": -74.0111851 }, + { "lat": 40.7102426, "lon": -74.0111665 }, + { "lat": 40.7102303, "lon": -74.0111337 }, + { "lat": 40.7102154, "lon": -74.0110996 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1126410209, + "bounds": { + "minlat": 40.7097661, + "minlon": -74.0102011, + "maxlat": 40.7098035, + "maxlon": -74.0100675 + }, + "nodes": [ + 10299849712, + 10299849713, + 10299849714, + 10299849717, + 10299849715, + 10299849716 + ], + "geometry": [ + { "lat": 40.7098035, "lon": -74.0102011 }, + { "lat": 40.7097904, "lon": -74.0101718 }, + { "lat": 40.7097827, "lon": -74.0101490 }, + { "lat": 40.7097781, "lon": -74.0101303 }, + { "lat": 40.7097740, "lon": -74.0101117 }, + { "lat": 40.7097661, "lon": -74.0100675 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1126410242, + "bounds": { + "minlat": 40.7096349, + "minlon": -74.0116583, + "maxlat": 40.7096669, + "maxlon": -74.0115886 + }, + "nodes": [ + 10299850024, + 8262936613, + 42422038 + ], + "geometry": [ + { "lat": 40.7096349, "lon": -74.0115886 }, + { "lat": 40.7096408, "lon": -74.0116015 }, + { "lat": 40.7096669, "lon": -74.0116583 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1126606180, + "bounds": { + "minlat": 40.7112011, + "minlon": -74.0100867, + "maxlat": 40.7113293, + "maxlon": -74.0099905 + }, + "nodes": [ + 10301698981, + 10301699007, + 10301698983, + 10301698982 + ], + "geometry": [ + { "lat": 40.7113293, "lon": -74.0099905 }, + { "lat": 40.7112917, "lon": -74.0100188 }, + { "lat": 40.7112696, "lon": -74.0100353 }, + { "lat": 40.7112011, "lon": -74.0100867 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1126606258, + "bounds": { + "minlat": 40.7077173, + "minlon": -74.0120956, + "maxlat": 40.7081087, + "maxlon": -74.0116782 + }, + "nodes": [ + 2807976917, + 10301699127, + 2807976767, + 10301699296, + 2807976907, + 888690500, + 10285383454, + 10301699125, + 10301699126, + 10301699105, + 10285383435, + 2807976793, + 10301699071, + 10285383455, + 10301699320, + 10301699065, + 888690511, + 10301699069, + 10301699068, + 10301699067, + 10301699297, + 10301699066, + 10301699118, + 2807977057, + 2807977058, + 2807977060, + 2807977056, + 2807977053, + 2807977050, + 2807977049, + 2807977051, + 10301699064, + 10301699294, + 2807977023, + 2807977017, + 2807977013, + 2807977012, + 10301699295, + 888690685, + 2807976988, + 2807976947, + 10301699116, + 2807976778, + 2807976917 + ], + "geometry": [ + { "lat": 40.7078766, "lon": -74.0120189 }, + { "lat": 40.7078241, "lon": -74.0120627 }, + { "lat": 40.7077831, "lon": -74.0120956 }, + { "lat": 40.7077524, "lon": -74.0120287 }, + { "lat": 40.7077450, "lon": -74.0120125 }, + { "lat": 40.7077638, "lon": -74.0119974 }, + { "lat": 40.7077173, "lon": -74.0118963 }, + { "lat": 40.7077210, "lon": -74.0118895 }, + { "lat": 40.7077220, "lon": -74.0118818 }, + { "lat": 40.7077204, "lon": -74.0118750 }, + { "lat": 40.7077356, "lon": -74.0118637 }, + { "lat": 40.7078368, "lon": -74.0117846 }, + { "lat": 40.7079570, "lon": -74.0116918 }, + { "lat": 40.7079746, "lon": -74.0116782 }, + { "lat": 40.7079785, "lon": -74.0116824 }, + { "lat": 40.7079837, "lon": -74.0116834 }, + { "lat": 40.7079892, "lon": -74.0116814 }, + { "lat": 40.7080522, "lon": -74.0118228 }, + { "lat": 40.7080663, "lon": -74.0118116 }, + { "lat": 40.7081087, "lon": -74.0119015 }, + { "lat": 40.7081009, "lon": -74.0119078 }, + { "lat": 40.7080904, "lon": -74.0119164 }, + { "lat": 40.7080868, "lon": -74.0119086 }, + { "lat": 40.7080723, "lon": -74.0118774 }, + { "lat": 40.7080735, "lon": -74.0118763 }, + { "lat": 40.7080741, "lon": -74.0118712 }, + { "lat": 40.7080720, "lon": -74.0118667 }, + { "lat": 40.7080683, "lon": -74.0118655 }, + { "lat": 40.7080660, "lon": -74.0118674 }, + { "lat": 40.7080650, "lon": -74.0118727 }, + { "lat": 40.7080661, "lon": -74.0118750 }, + { "lat": 40.7080472, "lon": -74.0118903 }, + { "lat": 40.7080325, "lon": -74.0119022 }, + { "lat": 40.7080314, "lon": -74.0119004 }, + { "lat": 40.7080275, "lon": -74.0118993 }, + { "lat": 40.7080251, "lon": -74.0119012 }, + { "lat": 40.7080242, "lon": -74.0119065 }, + { "lat": 40.7080250, "lon": -74.0119082 }, + { "lat": 40.7079847, "lon": -74.0119415 }, + { "lat": 40.7079812, "lon": -74.0119339 }, + { "lat": 40.7079196, "lon": -74.0118020 }, + { "lat": 40.7078657, "lon": -74.0118457 }, + { "lat": 40.7078150, "lon": -74.0118870 }, + { "lat": 40.7078766, "lon": -74.0120189 } + ], + "tags": { + "access": "customers", + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1126627442, + "bounds": { + "minlat": 40.8293689, + "minlon": -73.9934923, + "maxlat": 40.8296187, + "maxlon": -73.9932082 + }, + "nodes": [ + 10301902645, + 10301902646, + 10301902647, + 10301902648, + 10301902649, + 10301902652, + 10301902650, + 10301902651 + ], + "geometry": [ + { "lat": 40.8296187, "lon": -73.9933392 }, + { "lat": 40.8294531, "lon": -73.9934825 }, + { "lat": 40.8294281, "lon": -73.9934923 }, + { "lat": 40.8294001, "lon": -73.9934851 }, + { "lat": 40.8293689, "lon": -73.9934237 }, + { "lat": 40.8293744, "lon": -73.9933861 }, + { "lat": 40.8293928, "lon": -73.9933603 }, + { "lat": 40.8295439, "lon": -73.9932082 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1126627443, + "bounds": { + "minlat": 40.8296353, + "minlon": -73.9934171, + "maxlat": 40.8298876, + "maxlon": -73.9932479 + }, + "nodes": [ + 10301902653, + 10301902654, + 10301902655, + 10301902656, + 10301902657 + ], + "geometry": [ + { "lat": 40.8296353, "lon": -73.9933682 }, + { "lat": 40.8297699, "lon": -73.9932571 }, + { "lat": 40.8297998, "lon": -73.9932479 }, + { "lat": 40.8298243, "lon": -73.9932633 }, + { "lat": 40.8298876, "lon": -73.9934171 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1126636630, + "bounds": { + "minlat": 40.7659586, + "minlon": -74.0190766, + "maxlat": 40.7662670, + "maxlon": -74.0183324 + }, + "nodes": [ + 7642029863, + 7297001531, + 307870577 + ], + "geometry": [ + { "lat": 40.7659586, "lon": -74.0183324 }, + { "lat": 40.7662239, "lon": -74.0189726 }, + { "lat": 40.7662670, "lon": -74.0190766 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "name": "Waterfront Park Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1126646149, + "bounds": { + "minlat": 40.8177149, + "minlon": -73.9559205, + "maxlat": 40.8178914, + "maxlon": -73.9554806 + }, + "nodes": [ + 10302073267, + 10302073270, + 10302073273, + 10302073268, + 10302073269 + ], + "geometry": [ + { "lat": 40.8178319, "lon": -73.9554806 }, + { "lat": 40.8178553, "lon": -73.9555825 }, + { "lat": 40.8178648, "lon": -73.9556239 }, + { "lat": 40.8178914, "lon": -73.9557400 }, + { "lat": 40.8177149, "lon": -73.9559205 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1126646150, + "bounds": { + "minlat": 40.8178914, + "minlon": -73.9558633, + "maxlat": 40.8179879, + "maxlon": -73.9557400 + }, + "nodes": [ + 10302073268, + 10302073271, + 10302073272 + ], + "geometry": [ + { "lat": 40.8178914, "lon": -73.9557400 }, + { "lat": 40.8179378, "lon": -73.9557409 }, + { "lat": 40.8179879, "lon": -73.9558633 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1126646151, + "bounds": { + "minlat": 40.8175049, + "minlon": -73.9559151, + "maxlat": 40.8175860, + "maxlon": -73.9555723 + }, + "nodes": [ + 10302073274, + 10302073276, + 10302073277, + 10302073275 + ], + "geometry": [ + { "lat": 40.8175049, "lon": -73.9555723 }, + { "lat": 40.8175286, "lon": -73.9556725 }, + { "lat": 40.8175394, "lon": -73.9557181 }, + { "lat": 40.8175860, "lon": -73.9559151 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1126646152, + "bounds": { + "minlat": 40.8179211, + "minlon": -73.9563618, + "maxlat": 40.8181613, + "maxlon": -73.9560222 + }, + "nodes": [ + 561035346, + 10302073281, + 10302073282, + 10302073278, + 10302073279, + 10302073280 + ], + "geometry": [ + { "lat": 40.8181613, "lon": -73.9563618 }, + { "lat": 40.8181273, "lon": -73.9562665 }, + { "lat": 40.8181108, "lon": -73.9562203 }, + { "lat": 40.8180402, "lon": -73.9560222 }, + { "lat": 40.8179211, "lon": -73.9561030 }, + { "lat": 40.8179795, "lon": -73.9562466 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1126676408, + "bounds": { + "minlat": 40.8192963, + "minlon": -74.0010507, + "maxlat": 40.8196324, + "maxlon": -74.0007791 + }, + "nodes": [ + 5727986085, + 12537534779, + 5727986078 + ], + "geometry": [ + { "lat": 40.8192963, "lon": -74.0010507 }, + { "lat": 40.8195491, "lon": -74.0008450 }, + { "lat": 40.8196324, "lon": -74.0007791 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1126983263, + "bounds": { + "minlat": 40.7381292, + "minlon": -74.0033808, + "maxlat": 40.7383008, + "maxlon": -74.0033808 + }, + "nodes": [ + 10305048565, + 10305048568, + 10305048567, + 10305048566 + ], + "geometry": [ + { "lat": 40.7383008, "lon": -74.0033808 }, + { "lat": 40.7382024, "lon": -74.0033808 }, + { "lat": 40.7381866, "lon": -74.0033808 }, + { "lat": 40.7381292, "lon": -74.0033808 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1127034319, + "bounds": { + "minlat": 40.7386896, + "minlon": -74.0060025, + "maxlat": 40.7387631, + "maxlon": -74.0060020 + }, + "nodes": [ + 10305311704, + 10305311706, + 10305311705 + ], + "geometry": [ + { "lat": 40.7386896, "lon": -74.0060025 }, + { "lat": 40.7387148, "lon": -74.0060023 }, + { "lat": 40.7387631, "lon": -74.0060020 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1127444736, + "bounds": { + "minlat": 40.7538863, + "minlon": -73.9920790, + "maxlat": 40.7540910, + "maxlon": -73.9915935 + }, + "nodes": [ + 10308251046, + 8660597000, + 42435650 + ], + "geometry": [ + { "lat": 40.7538863, "lon": -73.9915935 }, + { "lat": 40.7540358, "lon": -73.9919481 }, + { "lat": 40.7540910, "lon": -73.9920790 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1127448896, + "bounds": { + "minlat": 40.7551077, + "minlon": -73.9949298, + "maxlat": 40.7552967, + "maxlon": -73.9944919 + }, + "nodes": [ + 10308291149, + 8288270357, + 4491359481 + ], + "geometry": [ + { "lat": 40.7551077, "lon": -73.9944919 }, + { "lat": 40.7552329, "lon": -73.9947808 }, + { "lat": 40.7552967, "lon": -73.9949298 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1127471116, + "bounds": { + "minlat": 40.7005421, + "minlon": -73.9110919, + "maxlat": 40.7006430, + "maxlon": -73.9109123 + }, + "nodes": [ + 5482373241, + 10308503066, + 11128557564, + 5482373243 + ], + "geometry": [ + { "lat": 40.7005421, "lon": -73.9109123 }, + { "lat": 40.7005907, "lon": -73.9109989 }, + { "lat": 40.7006105, "lon": -73.9110340 }, + { "lat": 40.7006430, "lon": -73.9110919 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1127471580, + "bounds": { + "minlat": 40.8249348, + "minlon": -73.9900921, + "maxlat": 40.8286384, + "maxlon": -73.9835454 + }, + "nodes": [ + 103162249, + 7456056076, + 7554632056, + 7554632058, + 7456056079, + 7553077154, + 7553077156, + 103162251, + 7552766734, + 103162253, + 7554631960, + 7554631957, + 7542527383, + 7552766736, + 7554631956, + 7542527382, + 7552766733, + 7554624981, + 13525859300, + 103162254, + 13525873304, + 7564371956, + 7563709591, + 103162255, + 103162257 + ], + "geometry": [ + { "lat": 40.8249348, "lon": -73.9835454 }, + { "lat": 40.8251221, "lon": -73.9838736 }, + { "lat": 40.8251854, "lon": -73.9839866 }, + { "lat": 40.8252047, "lon": -73.9840212 }, + { "lat": 40.8252284, "lon": -73.9840635 }, + { "lat": 40.8253263, "lon": -73.9842362 }, + { "lat": 40.8254306, "lon": -73.9844203 }, + { "lat": 40.8256681, "lon": -73.9848507 }, + { "lat": 40.8257250, "lon": -73.9849526 }, + { "lat": 40.8257631, "lon": -73.9850191 }, + { "lat": 40.8259070, "lon": -73.9852789 }, + { "lat": 40.8260719, "lon": -73.9855678 }, + { "lat": 40.8263147, "lon": -73.9859931 }, + { "lat": 40.8263665, "lon": -73.9860839 }, + { "lat": 40.8264801, "lon": -73.9862829 }, + { "lat": 40.8266438, "lon": -73.9865696 }, + { "lat": 40.8267244, "lon": -73.9867108 }, + { "lat": 40.8267610, "lon": -73.9867749 }, + { "lat": 40.8268901, "lon": -73.9870041 }, + { "lat": 40.8269433, "lon": -73.9870943 }, + { "lat": 40.8269901, "lon": -73.9871781 }, + { "lat": 40.8271654, "lon": -73.9874951 }, + { "lat": 40.8272775, "lon": -73.9876974 }, + { "lat": 40.8278570, "lon": -73.9887430 }, + { "lat": 40.8286384, "lon": -73.9900921 } + ], + "tags": { + "highway": "residential", + "name": "Columbia Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Columbia", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 1127471581, + "bounds": { + "minlat": 40.8249348, + "minlon": -73.9835454, + "maxlat": 40.8271172, + "maxlon": -73.9813078 + }, + "nodes": [ + 103162249, + 7591274668, + 7591274495, + 103235726, + 103235728, + 103235730, + 103235731, + 103235732, + 103235733, + 103235735, + 1854444492 + ], + "geometry": [ + { "lat": 40.8249348, "lon": -73.9835454 }, + { "lat": 40.8252132, "lon": -73.9829662 }, + { "lat": 40.8252673, "lon": -73.9828536 }, + { "lat": 40.8253305, "lon": -73.9827220 }, + { "lat": 40.8254625, "lon": -73.9824632 }, + { "lat": 40.8255355, "lon": -73.9823411 }, + { "lat": 40.8256127, "lon": -73.9822553 }, + { "lat": 40.8257010, "lon": -73.9822030 }, + { "lat": 40.8258481, "lon": -73.9821064 }, + { "lat": 40.8264795, "lon": -73.9816970 }, + { "lat": 40.8271172, "lon": -73.9813078 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "highway": "secondary", + "name": "Palisade Avenue", + "ref": "CR 27", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1127506049, + "bounds": { + "minlat": 40.8715420, + "minlon": -74.0138465, + "maxlat": 40.8716589, + "maxlon": -74.0133974 + }, + "nodes": [ + 10308768307, + 10308768308, + 10308780409, + 10308780410 + ], + "geometry": [ + { "lat": 40.8715420, "lon": -74.0133974 }, + { "lat": 40.8716475, "lon": -74.0137659 }, + { "lat": 40.8716589, "lon": -74.0138033 }, + { "lat": 40.8715821, "lon": -74.0138465 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1127506050, + "bounds": { + "minlat": 40.8716589, + "minlon": -74.0138074, + "maxlat": 40.8717885, + "maxlon": -74.0138033 + }, + "nodes": [ + 10308780411, + 10308780409 + ], + "geometry": [ + { "lat": 40.8717885, "lon": -74.0138074 }, + { "lat": 40.8716589, "lon": -74.0138033 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1127572723, + "bounds": { + "minlat": 40.7063780, + "minlon": -74.0094998, + "maxlat": 40.7069579, + "maxlon": -74.0090037 + }, + "nodes": [ + 42448578, + 8276468654, + 11369425029, + 11369414014, + 8276468648, + 42429840 + ], + "geometry": [ + { "lat": 40.7063780, "lon": -74.0094998 }, + { "lat": 40.7064356, "lon": -74.0094508 }, + { "lat": 40.7068808, "lon": -74.0090596 }, + { "lat": 40.7068970, "lon": -74.0090469 }, + { "lat": 40.7069210, "lon": -74.0090297 }, + { "lat": 40.7069579, "lon": -74.0090037 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "William Street", + "name:ko": "윌리엄 스트리트", + "name:ru": "Уильям-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "parking:right:taxi": "designated", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "19'4\"", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1127572732, + "bounds": { + "minlat": 40.7058008, + "minlon": -74.0098642, + "maxlat": 40.7063780, + "maxlon": -74.0094998 + }, + "nodes": [ + 42432679, + 10593159473, + 11053183478, + 11155500020, + 11053183477, + 7097820972, + 42448578 + ], + "geometry": [ + { "lat": 40.7058008, "lon": -74.0098642 }, + { "lat": 40.7058383, "lon": -74.0098477 }, + { "lat": 40.7059248, "lon": -74.0097956 }, + { "lat": 40.7059403, "lon": -74.0097859 }, + { "lat": 40.7062819, "lon": -74.0095732 }, + { "lat": 40.7063245, "lon": -74.0095432 }, + { "lat": 40.7063780, "lon": -74.0094998 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "William Street", + "name:ko": "윌리엄 스트리트", + "name:ru": "Уильям-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "William", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1127573674, + "bounds": { + "minlat": 40.7077288, + "minlon": -74.0082757, + "maxlat": 40.7079949, + "maxlon": -74.0080097 + }, + "nodes": [ + 42422053, + 7138157375, + 8112276468, + 12299278633, + 11365151710, + 42448583 + ], + "geometry": [ + { "lat": 40.7077288, "lon": -74.0082757 }, + { "lat": 40.7077736, "lon": -74.0082238 }, + { "lat": 40.7078058, "lon": -74.0081892 }, + { "lat": 40.7079426, "lon": -74.0080591 }, + { "lat": 40.7079532, "lon": -74.0080491 }, + { "lat": 40.7079949, "lon": -74.0080097 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "William Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "윌리엄 스트리트", + "name:ru": "Уильям-стрит", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1127573855, + "bounds": { + "minlat": 40.7083391, + "minlon": -74.0076543, + "maxlat": 40.7087131, + "maxlon": -74.0072873 + }, + "nodes": [ + 6262915547, + 11369961850, + 11365172135, + 8281922149, + 42440343 + ], + "geometry": [ + { "lat": 40.7083391, "lon": -74.0076543 }, + { "lat": 40.7083881, "lon": -74.0076058 }, + { "lat": 40.7086354, "lon": -74.0073608 }, + { "lat": 40.7086775, "lon": -74.0073231 }, + { "lat": 40.7087131, "lon": -74.0072873 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "William Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "윌리엄 스트리트", + "name:ru": "Уильям-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1127576536, + "bounds": { + "minlat": 40.7072416, + "minlon": -74.0080097, + "maxlat": 40.7079949, + "maxlon": -74.0074540 + }, + "nodes": [ + 6262915548, + 11367912842, + 11367912841, + 11350190938, + 7138157370, + 42448583 + ], + "geometry": [ + { "lat": 40.7072416, "lon": -74.0074540 }, + { "lat": 40.7072867, "lon": -74.0074888 }, + { "lat": 40.7073899, "lon": -74.0075644 }, + { "lat": 40.7078923, "lon": -74.0079412 }, + { "lat": 40.7079460, "lon": -74.0079766 }, + { "lat": 40.7079949, "lon": -74.0080097 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Maiden Lane", + "name:ko": "메이든 레인", + "name:ru": "Мейден-Лейн", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q13422110", + "wikipedia": "en:Maiden Lane (Manhattan)" + } +}, +{ + "type": "way", + "id": 1127576633, + "bounds": { + "minlat": 40.7086249, + "minlon": -74.0105706, + "maxlat": 40.7091731, + "maxlon": -74.0093797 + }, + "nodes": [ + 42422042, + 10299850116, + 5083818848, + 42422046, + 11350133623, + 8281922200, + 42422050 + ], + "geometry": [ + { "lat": 40.7091731, "lon": -74.0105706 }, + { "lat": 40.7091457, "lon": -74.0104927 }, + { "lat": 40.7091252, "lon": -74.0104416 }, + { "lat": 40.7087461, "lon": -74.0096155 }, + { "lat": 40.7086795, "lon": -74.0094818 }, + { "lat": 40.7086607, "lon": -74.0094455 }, + { "lat": 40.7086249, "lon": -74.0093797 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-10:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1127576696, + "bounds": { + "minlat": 40.7069579, + "minlon": -74.0102034, + "maxlat": 40.7077053, + "maxlon": -74.0090037 + }, + "nodes": [ + 42429840, + 8276468649, + 3738917559, + 822475402, + 8276469232, + 42429838 + ], + "geometry": [ + { "lat": 40.7069579, "lon": -74.0090037 }, + { "lat": 40.7069882, "lon": -74.0090512 }, + { "lat": 40.7071732, "lon": -74.0093543 }, + { "lat": 40.7073848, "lon": -74.0096985 }, + { "lat": 40.7076778, "lon": -74.0101555 }, + { "lat": 40.7077053, "lon": -74.0102034 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Pine Street", + "name:ko": "파인 스트리트", + "name:ru": "Пайн-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "25'6\"", + "wikidata": "Q13845373" + } +}, +{ + "type": "way", + "id": 1127609599, + "bounds": { + "minlat": 40.7072377, + "minlon": -74.0040737, + "maxlat": 40.7074428, + "maxlon": -74.0039515 + }, + "nodes": [ + 42440270, + 10942498431, + 10309622501, + 1772144015, + 42440268 + ], + "geometry": [ + { "lat": 40.7074428, "lon": -74.0040737 }, + { "lat": 40.7073723, "lon": -74.0040481 }, + { "lat": 40.7073399, "lon": -74.0040246 }, + { "lat": 40.7073325, "lon": -74.0040191 }, + { "lat": 40.7072377, "lon": -74.0039515 } + ], + "tags": { + "highway": "pedestrian", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "surface": "sett", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1127851301, + "bounds": { + "minlat": 40.7059623, + "minlon": -74.0045671, + "maxlat": 40.7065871, + "maxlon": -74.0036353 + }, + "nodes": [ + 10309622547, + 10311563861, + 10311563862, + 10311563863, + 10311563864, + 10311563870, + 11356801022, + 10311438281, + 10311563837, + 10311438280, + 10311563838, + 10311438279, + 8969222652, + 8969222648, + 10311563833, + 10311563963, + 10311438291, + 10311438292, + 10311438293, + 10311438294, + 10311438290, + 10311563869, + 10311563865, + 10311563866, + 10311563867, + 10311438270, + 10311563868, + 10309622593, + 10309622600, + 10309622547 + ], + "geometry": [ + { "lat": 40.7065871, "lon": -74.0043477 }, + { "lat": 40.7064727, "lon": -74.0045215 }, + { "lat": 40.7064680, "lon": -74.0045341 }, + { "lat": 40.7064661, "lon": -74.0045523 }, + { "lat": 40.7064695, "lon": -74.0045671 }, + { "lat": 40.7064355, "lon": -74.0045309 }, + { "lat": 40.7064156, "lon": -74.0045099 }, + { "lat": 40.7064082, "lon": -74.0045020 }, + { "lat": 40.7064155, "lon": -74.0045004 }, + { "lat": 40.7064231, "lon": -74.0044963 }, + { "lat": 40.7064272, "lon": -74.0044902 }, + { "lat": 40.7065284, "lon": -74.0043373 }, + { "lat": 40.7063858, "lon": -74.0041685 }, + { "lat": 40.7062495, "lon": -74.0040087 }, + { "lat": 40.7062400, "lon": -74.0039983 }, + { "lat": 40.7061266, "lon": -74.0038676 }, + { "lat": 40.7061118, "lon": -74.0038505 }, + { "lat": 40.7059835, "lon": -74.0037019 }, + { "lat": 40.7059757, "lon": -74.0036967 }, + { "lat": 40.7059686, "lon": -74.0036946 }, + { "lat": 40.7059623, "lon": -74.0036952 }, + { "lat": 40.7059773, "lon": -74.0036693 }, + { "lat": 40.7059970, "lon": -74.0036353 }, + { "lat": 40.7059980, "lon": -74.0036498 }, + { "lat": 40.7060002, "lon": -74.0036600 }, + { "lat": 40.7060024, "lon": -74.0036675 }, + { "lat": 40.7060064, "lon": -74.0036754 }, + { "lat": 40.7065388, "lon": -74.0042921 }, + { "lat": 40.7065671, "lon": -74.0043247 }, + { "lat": 40.7065871, "lon": -74.0043477 } + ], + "tags": { + "area": "yes", + "bicycle": "yes", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "private", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1127851303, + "bounds": { + "minlat": 40.7064117, + "minlon": -74.0045692, + "maxlat": 40.7065671, + "maxlon": -74.0043247 + }, + "nodes": [ + 10309622600, + 588455894, + 8276469226, + 10311563870, + 42440353 + ], + "geometry": [ + { "lat": 40.7065671, "lon": -74.0043247 }, + { "lat": 40.7065574, "lon": -74.0043403 }, + { "lat": 40.7064476, "lon": -74.0045121 }, + { "lat": 40.7064355, "lon": -74.0045309 }, + { "lat": 40.7064117, "lon": -74.0045692 } + ], + "tags": { + "bicycle": "yes", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "private", + "name": "Front Street", + "name:ko": "프론트 스트리트", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Front", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038" + } +}, +{ + "type": "way", + "id": 1127892694, + "bounds": { + "minlat": 40.7057284, + "minlon": -74.0031168, + "maxlat": 40.7067120, + "maxlon": -74.0017204 + }, + "nodes": [ + 42440258, + 10311946248, + 10311946172, + 10311946213, + 10311946173, + 10311946160, + 10311946161, + 10311946162, + 10311946163, + 10311946164, + 10311946165, + 10311946166, + 10311946167, + 10311946168, + 10311946174, + 10311946175, + 10311946176, + 10311946177, + 10311946178, + 10311946179, + 10311946180, + 10311946181, + 10311946252, + 10311946182, + 10311946183, + 10311946184, + 10311946192, + 10311946247, + 3350498747 + ], + "geometry": [ + { "lat": 40.7062555, "lon": -74.0031168 }, + { "lat": 40.7062213, "lon": -74.0030630 }, + { "lat": 40.7061775, "lon": -74.0030155 }, + { "lat": 40.7060785, "lon": -74.0029082 }, + { "lat": 40.7060450, "lon": -74.0028719 }, + { "lat": 40.7057731, "lon": -74.0025772 }, + { "lat": 40.7057521, "lon": -74.0025495 }, + { "lat": 40.7057407, "lon": -74.0025193 }, + { "lat": 40.7057320, "lon": -74.0024868 }, + { "lat": 40.7057284, "lon": -74.0024609 }, + { "lat": 40.7057288, "lon": -74.0024314 }, + { "lat": 40.7057366, "lon": -74.0024001 }, + { "lat": 40.7057498, "lon": -74.0023748 }, + { "lat": 40.7061417, "lon": -74.0017525 }, + { "lat": 40.7061581, "lon": -74.0017341 }, + { "lat": 40.7061770, "lon": -74.0017228 }, + { "lat": 40.7061965, "lon": -74.0017204 }, + { "lat": 40.7062227, "lon": -74.0017277 }, + { "lat": 40.7062416, "lon": -74.0017373 }, + { "lat": 40.7065151, "lon": -74.0019985 }, + { "lat": 40.7065304, "lon": -74.0020194 }, + { "lat": 40.7065432, "lon": -74.0020484 }, + { "lat": 40.7065616, "lon": -74.0021041 }, + { "lat": 40.7065767, "lon": -74.0021496 }, + { "lat": 40.7065931, "lon": -74.0021898 }, + { "lat": 40.7066097, "lon": -74.0022167 }, + { "lat": 40.7066316, "lon": -74.0022403 }, + { "lat": 40.7066685, "lon": -74.0022784 }, + { "lat": 40.7067120, "lon": -74.0023233 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1127892743, + "bounds": { + "minlat": 40.7063268, + "minlon": -74.0035189, + "maxlat": 40.7068557, + "maxlon": -74.0030973 + }, + "nodes": [ + 10309622513, + 10309622545, + 10309622514, + 10309622515, + 8276469213, + 10309622517, + 10309622518, + 10311946114, + 10309622519, + 10309622520, + 10309622575, + 10309622574, + 10309622573, + 10309622546, + 10311946111, + 10309644396, + 10311946286, + 10309644397, + 10309644398, + 10311946288, + 10309644399, + 10309644400, + 10309644401, + 10309644402, + 10311946275, + 10309622513 + ], + "geometry": [ + { "lat": 40.7063293, "lon": -74.0030973 }, + { "lat": 40.7063273, "lon": -74.0031079 }, + { "lat": 40.7063268, "lon": -74.0031213 }, + { "lat": 40.7063284, "lon": -74.0031388 }, + { "lat": 40.7063332, "lon": -74.0031567 }, + { "lat": 40.7063406, "lon": -74.0031741 }, + { "lat": 40.7063489, "lon": -74.0031845 }, + { "lat": 40.7067171, "lon": -74.0034723 }, + { "lat": 40.7067708, "lon": -74.0035143 }, + { "lat": 40.7067823, "lon": -74.0035189 }, + { "lat": 40.7067941, "lon": -74.0035160 }, + { "lat": 40.7068060, "lon": -74.0035060 }, + { "lat": 40.7068150, "lon": -74.0034930 }, + { "lat": 40.7068233, "lon": -74.0034765 }, + { "lat": 40.7068453, "lon": -74.0034334 }, + { "lat": 40.7068557, "lon": -74.0034131 }, + { "lat": 40.7068418, "lon": -74.0034307 }, + { "lat": 40.7068383, "lon": -74.0034351 }, + { "lat": 40.7068216, "lon": -74.0034469 }, + { "lat": 40.7068150, "lon": -74.0034496 }, + { "lat": 40.7068017, "lon": -74.0034550 }, + { "lat": 40.7067801, "lon": -74.0034550 }, + { "lat": 40.7067613, "lon": -74.0034478 }, + { "lat": 40.7067381, "lon": -74.0034302 }, + { "lat": 40.7063546, "lon": -74.0031179 }, + { "lat": 40.7063293, "lon": -74.0030973 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1128093731, + "bounds": { + "minlat": 40.8612974, + "minlon": -73.9678596, + "maxlat": 40.8617402, + "maxlon": -73.9676180 + }, + "nodes": [ + 103132980, + 12021383200, + 7921666087, + 103132978, + 12021383199, + 103132976, + 103132974, + 103132972, + 12021383198, + 7921614880 + ], + "geometry": [ + { "lat": 40.8617402, "lon": -73.9676180 }, + { "lat": 40.8616973, "lon": -73.9676251 }, + { "lat": 40.8616577, "lon": -73.9676374 }, + { "lat": 40.8616195, "lon": -73.9676519 }, + { "lat": 40.8615844, "lon": -73.9676679 }, + { "lat": 40.8615484, "lon": -73.9676873 }, + { "lat": 40.8615134, "lon": -73.9677079 }, + { "lat": 40.8614675, "lon": -73.9677391 }, + { "lat": 40.8613817, "lon": -73.9677992 }, + { "lat": 40.8612974, "lon": -73.9678596 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Linwood Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1128358854, + "bounds": { + "minlat": 40.7070893, + "minlon": -74.0139691, + "maxlat": 40.7071527, + "maxlon": -74.0139431 + }, + "nodes": [ + 4149936245, + 42436178 + ], + "geometry": [ + { "lat": 40.7071527, "lon": -74.0139431 }, + { "lat": 40.7070893, "lon": -74.0139691 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1128388435, + "bounds": { + "minlat": 40.7068108, + "minlon": -74.0124596, + "maxlat": 40.7069143, + "maxlon": -74.0123607 + }, + "nodes": [ + 10316225975, + 10316225988, + 10316225976, + 10316225977, + 10316225978, + 10316225979, + 10316225980, + 10316225981, + 10316225987, + 10316225982, + 10316225983, + 10316225984, + 10316225985, + 10316225986, + 10316225975 + ], + "geometry": [ + { "lat": 40.7069132, "lon": -74.0123850 }, + { "lat": 40.7068446, "lon": -74.0124419 }, + { "lat": 40.7068253, "lon": -74.0124579 }, + { "lat": 40.7068219, "lon": -74.0124596 }, + { "lat": 40.7068190, "lon": -74.0124583 }, + { "lat": 40.7068113, "lon": -74.0124415 }, + { "lat": 40.7068108, "lon": -74.0124372 }, + { "lat": 40.7068123, "lon": -74.0124331 }, + { "lat": 40.7068473, "lon": -74.0124050 }, + { "lat": 40.7069023, "lon": -74.0123607 }, + { "lat": 40.7069047, "lon": -74.0123607 }, + { "lat": 40.7069073, "lon": -74.0123624 }, + { "lat": 40.7069143, "lon": -74.0123779 }, + { "lat": 40.7069143, "lon": -74.0123818 }, + { "lat": 40.7069132, "lon": -74.0123850 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1128388444, + "bounds": { + "minlat": 40.7056848, + "minlon": -74.0133161, + "maxlat": 40.7059581, + "maxlon": -74.0131316 + }, + "nodes": [ + 10316226038, + 10316226039, + 10316226040, + 10316226133, + 10316226155, + 10316226041, + 10316226042, + 10316226136, + 10316226043, + 10316226044, + 10316226151, + 10316226045, + 10316226046, + 10316226047, + 10316226048, + 10316226049, + 10316226150, + 10316226137, + 10316226050, + 10316226051, + 10316226052, + 10316226038 + ], + "geometry": [ + { "lat": 40.7057408, "lon": -74.0133161 }, + { "lat": 40.7057150, "lon": -74.0133133 }, + { "lat": 40.7056848, "lon": -74.0133082 }, + { "lat": 40.7056991, "lon": -74.0132924 }, + { "lat": 40.7057036, "lon": -74.0132882 }, + { "lat": 40.7057172, "lon": -74.0132752 }, + { "lat": 40.7057639, "lon": -74.0132517 }, + { "lat": 40.7057952, "lon": -74.0132328 }, + { "lat": 40.7058361, "lon": -74.0132081 }, + { "lat": 40.7058730, "lon": -74.0131835 }, + { "lat": 40.7058940, "lon": -74.0131683 }, + { "lat": 40.7059076, "lon": -74.0131585 }, + { "lat": 40.7059410, "lon": -74.0131316 }, + { "lat": 40.7059581, "lon": -74.0131688 }, + { "lat": 40.7059579, "lon": -74.0131736 }, + { "lat": 40.7059555, "lon": -74.0131776 }, + { "lat": 40.7059110, "lon": -74.0132141 }, + { "lat": 40.7058267, "lon": -74.0132833 }, + { "lat": 40.7058021, "lon": -74.0133035 }, + { "lat": 40.7057885, "lon": -74.0133106 }, + { "lat": 40.7057616, "lon": -74.0133145 }, + { "lat": 40.7057408, "lon": -74.0133161 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1128388462, + "bounds": { + "minlat": 40.7056227, + "minlon": -74.0133569, + "maxlat": 40.7058049, + "maxlon": -74.0133380 + }, + "nodes": [ + 10316226053, + 10316226179, + 7820867973, + 10316226135, + 7820867972, + 10316226098, + 11676490352 + ], + "geometry": [ + { "lat": 40.7058049, "lon": -74.0133569 }, + { "lat": 40.7057504, "lon": -74.0133487 }, + { "lat": 40.7057346, "lon": -74.0133462 }, + { "lat": 40.7057251, "lon": -74.0133445 }, + { "lat": 40.7056861, "lon": -74.0133393 }, + { "lat": 40.7056546, "lon": -74.0133380 }, + { "lat": 40.7056227, "lon": -74.0133391 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "foot": "designated", + "highway": "living_street", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "maxspeed:advisory": "5 mph", + "motor_vehicle": "yes", + "name": "Broadway", + "name:en": "Broadway", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1128388463, + "bounds": { + "minlat": 40.7067932, + "minlon": -74.0125292, + "maxlat": 40.7077691, + "maxlon": -74.0117237 + }, + "nodes": [ + 42428370, + 8281922264, + 8281922243, + 42428368, + 7335430598, + 7335430599, + 42428366 + ], + "geometry": [ + { "lat": 40.7077691, "lon": -74.0117237 }, + { "lat": 40.7076978, "lon": -74.0117836 }, + { "lat": 40.7075130, "lon": -74.0119357 }, + { "lat": 40.7074736, "lon": -74.0119639 }, + { "lat": 40.7074357, "lon": -74.0119962 }, + { "lat": 40.7068412, "lon": -74.0124891 }, + { "lat": 40.7067932, "lon": -74.0125292 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|designated", + "busway:right": "lane", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "jersey_barrier", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1128390256, + "bounds": { + "minlat": 40.7248022, + "minlon": -73.9794771, + "maxlat": 40.7250644, + "maxlon": -73.9792908 + }, + "nodes": [ + 10316212469, + 10316212471, + 10316212472, + 10316212470 + ], + "geometry": [ + { "lat": 40.7248022, "lon": -73.9794771 }, + { "lat": 40.7249986, "lon": -73.9793376 }, + { "lat": 40.7250145, "lon": -73.9793264 }, + { "lat": 40.7250644, "lon": -73.9792908 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1128409648, + "bounds": { + "minlat": 40.8447532, + "minlon": -73.9113360, + "maxlat": 40.8452824, + "maxlon": -73.9109185 + }, + "nodes": [ + 10316416575, + 12044594154, + 12044594153, + 2408348780, + 12044594156, + 12044594157, + 12044594158, + 12044594159, + 12044594160, + 12044594161, + 12044594162, + 42741332 + ], + "geometry": [ + { "lat": 40.8452824, "lon": -73.9109185 }, + { "lat": 40.8452357, "lon": -73.9109639 }, + { "lat": 40.8451910, "lon": -73.9110045 }, + { "lat": 40.8451442, "lon": -73.9110457 }, + { "lat": 40.8450990, "lon": -73.9110835 }, + { "lat": 40.8450502, "lon": -73.9111231 }, + { "lat": 40.8449974, "lon": -73.9111645 }, + { "lat": 40.8449493, "lon": -73.9112007 }, + { "lat": 40.8448998, "lon": -73.9112368 }, + { "lat": 40.8448519, "lon": -73.9112713 }, + { "lat": 40.8448031, "lon": -73.9113031 }, + { "lat": 40.8447532, "lon": -73.9113360 } + ], + "tags": { + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1128409649, + "bounds": { + "minlat": 40.8452824, + "minlon": -73.9109185, + "maxlat": 40.8457686, + "maxlon": -73.9103450 + }, + "nodes": [ + 2408348762, + 12044646022, + 12044646021, + 12044646020, + 2408348774, + 42741327, + 12044646019, + 10316416576, + 12044646023, + 10316416575 + ], + "geometry": [ + { "lat": 40.8457686, "lon": -73.9103450 }, + { "lat": 40.8457243, "lon": -73.9104468 }, + { "lat": 40.8456980, "lon": -73.9104991 }, + { "lat": 40.8456603, "lon": -73.9105585 }, + { "lat": 40.8456224, "lon": -73.9106133 }, + { "lat": 40.8455511, "lon": -73.9107042 }, + { "lat": 40.8454960, "lon": -73.9107684 }, + { "lat": 40.8454492, "lon": -73.9108096 }, + { "lat": 40.8453997, "lon": -73.9108454 }, + { "lat": 40.8452824, "lon": -73.9109185 } + ], + "tags": { + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1128409650, + "bounds": { + "minlat": 40.8452824, + "minlon": -73.9109185, + "maxlat": 40.8457686, + "maxlon": -73.9103450 + }, + "nodes": [ + 10316416575, + 12044637395, + 12044637394, + 10316416580, + 10316416579, + 12044646016, + 10316416578, + 12044646017, + 12044646018, + 2408348762 + ], + "geometry": [ + { "lat": 40.8452824, "lon": -73.9109185 }, + { "lat": 40.8453583, "lon": -73.9107936 }, + { "lat": 40.8453906, "lon": -73.9107476 }, + { "lat": 40.8454286, "lon": -73.9106990 }, + { "lat": 40.8454957, "lon": -73.9106230 }, + { "lat": 40.8455293, "lon": -73.9105818 }, + { "lat": 40.8456038, "lon": -73.9104885 }, + { "lat": 40.8456458, "lon": -73.9104423 }, + { "lat": 40.8456847, "lon": -73.9104078 }, + { "lat": 40.8457686, "lon": -73.9103450 } + ], + "tags": { + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1129810148, + "bounds": { + "minlat": 40.7031693, + "minlon": -74.0079416, + "maxlat": 40.7032372, + "maxlon": -74.0078515 + }, + "nodes": [ + 10457330740, + 10457330741, + 10457330742, + 10457330743, + 10457330744, + 10457330745, + 10457330746, + 10457330747, + 10457330748, + 10457330749, + 8262936248, + 10457330740 + ], + "geometry": [ + { "lat": 40.7031693, "lon": -74.0079292 }, + { "lat": 40.7031819, "lon": -74.0079396 }, + { "lat": 40.7031891, "lon": -74.0079416 }, + { "lat": 40.7031966, "lon": -74.0079404 }, + { "lat": 40.7032034, "lon": -74.0079341 }, + { "lat": 40.7032347, "lon": -74.0078793 }, + { "lat": 40.7032372, "lon": -74.0078695 }, + { "lat": 40.7032366, "lon": -74.0078612 }, + { "lat": 40.7032332, "lon": -74.0078545 }, + { "lat": 40.7032290, "lon": -74.0078515 }, + { "lat": 40.7032160, "lon": -74.0078518 }, + { "lat": 40.7031693, "lon": -74.0079292 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1130990165, + "bounds": { + "minlat": 40.8311209, + "minlon": -73.9216609, + "maxlat": 40.8313372, + "maxlon": -73.9210193 + }, + "nodes": [ + 42733729, + 10126985479, + 9966006697, + 7560827243, + 10126985484 + ], + "geometry": [ + { "lat": 40.8313372, "lon": -73.9216609 }, + { "lat": 40.8313098, "lon": -73.9215865 }, + { "lat": 40.8312946, "lon": -73.9215386 }, + { "lat": 40.8312027, "lon": -73.9212745 }, + { "lat": 40.8311209, "lon": -73.9210193 } + ], + "tags": { + "cycleway": "lane", + "highway": "residential", + "name": "East 165th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1131052144, + "bounds": { + "minlat": 40.7068888, + "minlon": -74.0135614, + "maxlat": 40.7069507, + "maxlon": -74.0135153 + }, + "nodes": [ + 42456297, + 4149936235 + ], + "geometry": [ + { "lat": 40.7068888, "lon": -74.0135614 }, + { "lat": 40.7069507, "lon": -74.0135153 } + ], + "tags": { + "bus:lanes": "yes|yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00)", + "lanes:bus:forward": "1", + "maxspeed": "20 mph", + "name": "Trinity Place", + "name:etymology:wikidata": "Q866896", + "name:ko": "트리니티 플레이스", + "name:ru": "Тринити-Плейс", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1131953888, + "bounds": { + "minlat": 40.7021493, + "minlon": -73.9803369, + "maxlat": 40.7025836, + "maxlon": -73.9801068 + }, + "nodes": [ + 7707712201, + 10554494202, + 10554494203, + 10554494204, + 10554499021, + 10554494205, + 10554499031, + 10554499016, + 10554494206, + 10554494207, + 10554494208, + 10554499009, + 10554499010, + 10554499011, + 10554499012, + 10554499013, + 10554499014, + 10554499015, + 10554494203 + ], + "geometry": [ + { "lat": 40.7025836, "lon": -73.9803369 }, + { "lat": 40.7024733, "lon": -73.9802068 }, + { "lat": 40.7024082, "lon": -73.9801750 }, + { "lat": 40.7023593, "lon": -73.9801838 }, + { "lat": 40.7023329, "lon": -73.9802009 }, + { "lat": 40.7023143, "lon": -73.9802130 }, + { "lat": 40.7022855, "lon": -73.9802589 }, + { "lat": 40.7022519, "lon": -73.9803123 }, + { "lat": 40.7022083, "lon": -73.9803201 }, + { "lat": 40.7021822, "lon": -73.9803095 }, + { "lat": 40.7021567, "lon": -73.9802811 }, + { "lat": 40.7021493, "lon": -73.9802422 }, + { "lat": 40.7021594, "lon": -73.9801856 }, + { "lat": 40.7021835, "lon": -73.9801405 }, + { "lat": 40.7022124, "lon": -73.9801121 }, + { "lat": 40.7022506, "lon": -73.9801068 }, + { "lat": 40.7022942, "lon": -73.9801130 }, + { "lat": 40.7023304, "lon": -73.9801316 }, + { "lat": 40.7024082, "lon": -73.9801750 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1131953889, + "bounds": { + "minlat": 40.7022120, + "minlon": -73.9804912, + "maxlat": 40.7023130, + "maxlon": -73.9803509 + }, + "nodes": [ + 10554494165, + 2568519124, + 10554499025, + 10554499017, + 10554499026, + 10554499018, + 10554494166, + 10554494165 + ], + "geometry": [ + { "lat": 40.7023130, "lon": -73.9803937 }, + { "lat": 40.7022749, "lon": -73.9803509 }, + { "lat": 40.7022641, "lon": -73.9803676 }, + { "lat": 40.7022120, "lon": -73.9804484 }, + { "lat": 40.7022460, "lon": -73.9804866 }, + { "lat": 40.7022501, "lon": -73.9804912 }, + { "lat": 40.7022569, "lon": -73.9804807 }, + { "lat": 40.7023130, "lon": -73.9803937 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1131953897, + "bounds": { + "minlat": 40.7022262, + "minlon": -73.9802410, + "maxlat": 40.7022642, + "maxlon": -73.9801908 + }, + "nodes": [ + 10554499046, + 10554499047, + 10554499048, + 10554499049, + 10554499050, + 10554499033, + 10554499034, + 10554499051, + 10554499032, + 10554499035, + 10554499040, + 10554499041, + 10554499042, + 10554499043, + 10554499044, + 10554499045, + 10554499036, + 10554499039, + 10554499037, + 10554499038, + 10554499046 + ], + "geometry": [ + { "lat": 40.7022398, "lon": -73.9801918 }, + { "lat": 40.7022458, "lon": -73.9801908 }, + { "lat": 40.7022518, "lon": -73.9801924 }, + { "lat": 40.7022571, "lon": -73.9801963 }, + { "lat": 40.7022612, "lon": -73.9802023 }, + { "lat": 40.7022637, "lon": -73.9802097 }, + { "lat": 40.7022642, "lon": -73.9802177 }, + { "lat": 40.7022628, "lon": -73.9802255 }, + { "lat": 40.7022596, "lon": -73.9802324 }, + { "lat": 40.7022552, "lon": -73.9802373 }, + { "lat": 40.7022499, "lon": -73.9802403 }, + { "lat": 40.7022441, "lon": -73.9802410 }, + { "lat": 40.7022384, "lon": -73.9802394 }, + { "lat": 40.7022334, "lon": -73.9802356 }, + { "lat": 40.7022295, "lon": -73.9802301 }, + { "lat": 40.7022270, "lon": -73.9802232 }, + { "lat": 40.7022262, "lon": -73.9802156 }, + { "lat": 40.7022271, "lon": -73.9802081 }, + { "lat": 40.7022299, "lon": -73.9802009 }, + { "lat": 40.7022343, "lon": -73.9801953 }, + { "lat": 40.7022398, "lon": -73.9801918 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1132395861, + "bounds": { + "minlat": 40.7501879, + "minlon": -73.9403653, + "maxlat": 40.7504165, + "maxlon": -73.9398386 + }, + "nodes": [ + 2969267799, + 6813394099, + 42872008 + ], + "geometry": [ + { "lat": 40.7504165, "lon": -73.9403653 }, + { "lat": 40.7502179, "lon": -73.9399071 }, + { "lat": 40.7501879, "lon": -73.9398386 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Queens Plaza South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1132402015, + "bounds": { + "minlat": 40.8259004, + "minlon": -73.9155747, + "maxlat": 40.8260886, + "maxlon": -73.9152214 + }, + "nodes": [ + 10558971191, + 12038440160, + 10558971192, + 12038440176, + 10558971193 + ], + "geometry": [ + { "lat": 40.8259004, "lon": -73.9152214 }, + { "lat": 40.8259502, "lon": -73.9152736 }, + { "lat": 40.8259658, "lon": -73.9152900 }, + { "lat": 40.8260573, "lon": -73.9155022 }, + { "lat": 40.8260886, "lon": -73.9155747 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1132735876, + "bounds": { + "minlat": 40.8658492, + "minlon": -73.9739291, + "maxlat": 40.8661524, + "maxlon": -73.9737748 + }, + "nodes": [ + 10562008953, + 10562008954, + 10562008955 + ], + "geometry": [ + { "lat": 40.8658492, "lon": -73.9739291 }, + { "lat": 40.8659288, "lon": -73.9737957 }, + { "lat": 40.8661524, "lon": -73.9737748 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1132735877, + "bounds": { + "minlat": 40.8661524, + "minlon": -73.9737748, + "maxlat": 40.8662650, + "maxlon": -73.9737121 + }, + "nodes": [ + 10562008955, + 10562008956 + ], + "geometry": [ + { "lat": 40.8661524, "lon": -73.9737748 }, + { "lat": 40.8662650, "lon": -73.9737121 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1132735878, + "bounds": { + "minlat": 40.8663566, + "minlon": -73.9736822, + "maxlat": 40.8664373, + "maxlon": -73.9736441 + }, + "nodes": [ + 10562008957, + 10562008958 + ], + "geometry": [ + { "lat": 40.8663566, "lon": -73.9736822 }, + { "lat": 40.8664373, "lon": -73.9736441 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1132735879, + "bounds": { + "minlat": 40.8662650, + "minlon": -73.9737121, + "maxlat": 40.8663566, + "maxlon": -73.9736822 + }, + "nodes": [ + 10562008956, + 10562008957 + ], + "geometry": [ + { "lat": 40.8662650, "lon": -73.9737121 }, + { "lat": 40.8663566, "lon": -73.9736822 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1132735880, + "bounds": { + "minlat": 40.8661469, + "minlon": -73.9736794, + "maxlat": 40.8662510, + "maxlon": -73.9736347 + }, + "nodes": [ + 7513732185, + 10562008959 + ], + "geometry": [ + { "lat": 40.8661469, "lon": -73.9736794 }, + { "lat": 40.8662510, "lon": -73.9736347 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1132735881, + "bounds": { + "minlat": 40.8663424, + "minlon": -73.9736038, + "maxlat": 40.8663875, + "maxlon": -73.9735848 + }, + "nodes": [ + 10562008960, + 10562008961 + ], + "geometry": [ + { "lat": 40.8663424, "lon": -73.9736038 }, + { "lat": 40.8663875, "lon": -73.9735848 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1132735882, + "bounds": { + "minlat": 40.8662510, + "minlon": -73.9736347, + "maxlat": 40.8663424, + "maxlon": -73.9736038 + }, + "nodes": [ + 10562008959, + 10562008960 + ], + "geometry": [ + { "lat": 40.8662510, "lon": -73.9736347 }, + { "lat": 40.8663424, "lon": -73.9736038 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1132735883, + "bounds": { + "minlat": 40.8662364, + "minlon": -73.9735540, + "maxlat": 40.8663286, + "maxlon": -73.9735271 + }, + "nodes": [ + 10562008963, + 10562008964 + ], + "geometry": [ + { "lat": 40.8662364, "lon": -73.9735540 }, + { "lat": 40.8663286, "lon": -73.9735271 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1132735884, + "bounds": { + "minlat": 40.8663286, + "minlon": -73.9735271, + "maxlat": 40.8663688, + "maxlon": -73.9735169 + }, + "nodes": [ + 10562008964, + 10562008965 + ], + "geometry": [ + { "lat": 40.8663286, "lon": -73.9735271 }, + { "lat": 40.8663688, "lon": -73.9735169 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1132735885, + "bounds": { + "minlat": 40.8661523, + "minlon": -73.9735818, + "maxlat": 40.8662364, + "maxlon": -73.9735540 + }, + "nodes": [ + 10562008962, + 10562008963 + ], + "geometry": [ + { "lat": 40.8661523, "lon": -73.9735818 }, + { "lat": 40.8662364, "lon": -73.9735540 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1133078379, + "bounds": { + "minlat": 40.7105021, + "minlon": -74.0015369, + "maxlat": 40.7106588, + "maxlon": -74.0014170 + }, + "nodes": [ + 10564522615, + 10564522619, + 10564522616 + ], + "geometry": [ + { "lat": 40.7105021, "lon": -74.0015369 }, + { "lat": 40.7105635, "lon": -74.0014893 }, + { "lat": 40.7106588, "lon": -74.0014170 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1133078380, + "bounds": { + "minlat": 40.7105508, + "minlon": -74.0015904, + "maxlat": 40.7106867, + "maxlon": -74.0014836 + }, + "nodes": [ + 10564522617, + 10564522620, + 278642951 + ], + "geometry": [ + { "lat": 40.7106867, "lon": -74.0014836 }, + { "lat": 40.7106147, "lon": -74.0015411 }, + { "lat": 40.7105508, "lon": -74.0015904 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1133081060, + "bounds": { + "minlat": 40.8690840, + "minlon": -73.9076146, + "maxlat": 40.8693259, + "maxlon": -73.9072458 + }, + "nodes": [ + 10564550160, + 10564550165, + 10564550161, + 10564550162, + 10564550164, + 10564550163 + ], + "geometry": [ + { "lat": 40.8691567, "lon": -73.9076146 }, + { "lat": 40.8691169, "lon": -73.9074495 }, + { "lat": 40.8690840, "lon": -73.9073127 }, + { "lat": 40.8692472, "lon": -73.9072458 }, + { "lat": 40.8692827, "lon": -73.9073766 }, + { "lat": 40.8693259, "lon": -73.9075356 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1133081061, + "bounds": { + "minlat": 40.8691169, + "minlon": -73.9074495, + "maxlat": 40.8692827, + "maxlon": -73.9073766 + }, + "nodes": [ + 10564550164, + 10564550165 + ], + "geometry": [ + { "lat": 40.8692827, "lon": -73.9073766 }, + { "lat": 40.8691169, "lon": -73.9074495 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1133089780, + "bounds": { + "minlat": 40.8245507, + "minlon": -73.9366327, + "maxlat": 40.8248483, + "maxlon": -73.9359433 + }, + "nodes": [ + 10564565153, + 10564565154, + 10564565156, + 10564565155 + ], + "geometry": [ + { "lat": 40.8248483, "lon": -73.9366327 }, + { "lat": 40.8247995, "lon": -73.9365146 }, + { "lat": 40.8247821, "lon": -73.9364745 }, + { "lat": 40.8245507, "lon": -73.9359433 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1133109578, + "bounds": { + "minlat": 40.7136779, + "minlon": -73.9165630, + "maxlat": 40.7139007, + "maxlon": -73.9163318 + }, + "nodes": [ + 10564795324, + 10564795325, + 10564795326, + 10564795327, + 10564795328 + ], + "geometry": [ + { "lat": 40.7139007, "lon": -73.9165630 }, + { "lat": 40.7138911, "lon": -73.9163760 }, + { "lat": 40.7138743, "lon": -73.9163341 }, + { "lat": 40.7138426, "lon": -73.9163318 }, + { "lat": 40.7136779, "lon": -73.9163523 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1133523764, + "bounds": { + "minlat": 40.8625230, + "minlon": -73.9175550, + "maxlat": 40.8630200, + "maxlon": -73.9163730 + }, + "nodes": [ + 42440499, + 1764746049, + 7171114289, + 42440502 + ], + "geometry": [ + { "lat": 40.8630200, "lon": -73.9175550 }, + { "lat": 40.8629860, "lon": -73.9174744 }, + { "lat": 40.8628290, "lon": -73.9171007 }, + { "lat": 40.8625230, "lon": -73.9163730 } + ], + "tags": { + "highway": "residential", + "name": "West 206th Street", + "name_1": "West 206 Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "206th", + "tiger:name_base_1": "206", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1133566205, + "bounds": { + "minlat": 40.8014384, + "minlon": -73.9389608, + "maxlat": 40.8016209, + "maxlon": -73.9388271 + }, + "nodes": [ + 10568682761, + 10568682764, + 10568682763, + 10568682762 + ], + "geometry": [ + { "lat": 40.8014384, "lon": -73.9389608 }, + { "lat": 40.8015492, "lon": -73.9388801 }, + { "lat": 40.8015765, "lon": -73.9388597 }, + { "lat": 40.8016209, "lon": -73.9388271 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1133806010, + "bounds": { + "minlat": 40.7062555, + "minlon": -74.0031168, + "maxlat": 40.7067120, + "maxlon": -74.0023233 + }, + "nodes": [ + 42440258, + 10311946149, + 10311946199, + 3350498747 + ], + "geometry": [ + { "lat": 40.7062555, "lon": -74.0031168 }, + { "lat": 40.7063069, "lon": -74.0030254 }, + { "lat": 40.7066734, "lon": -74.0023902 }, + { "lat": 40.7067120, "lon": -74.0023233 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1133985154, + "bounds": { + "minlat": 40.8768665, + "minlon": -73.9065065, + "maxlat": 40.8769280, + "maxlon": -73.9064001 + }, + "nodes": [ + 10128431664, + 1544782753 + ], + "geometry": [ + { "lat": 40.8769280, "lon": -73.9064001 }, + { "lat": 40.8768665, "lon": -73.9065065 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1134450766, + "bounds": { + "minlat": 40.8147720, + "minlon": -73.9361896, + "maxlat": 40.8147982, + "maxlon": -73.9361049 + }, + "nodes": [ + 371337175, + 5378686574 + ], + "geometry": [ + { "lat": 40.8147720, "lon": -73.9361049 }, + { "lat": 40.8147982, "lon": -73.9361896 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "oneway": "yes", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1134655118, + "bounds": { + "minlat": 40.7150716, + "minlon": -73.9132554, + "maxlat": 40.7151364, + "maxlon": -73.9131669 + }, + "nodes": [ + 9759984045, + 42881151 + ], + "geometry": [ + { "lat": 40.7151364, "lon": -73.9131669 }, + { "lat": 40.7150716, "lon": -73.9132554 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Flushing Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1134655119, + "bounds": { + "minlat": 40.7151364, + "minlon": -73.9131669, + "maxlat": 40.7153281, + "maxlon": -73.9129768 + }, + "nodes": [ + 2996303547, + 9759984045 + ], + "geometry": [ + { "lat": 40.7153281, "lon": -73.9129768 }, + { "lat": 40.7151364, "lon": -73.9131669 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Flushing Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1134690192, + "bounds": { + "minlat": 40.7692057, + "minlon": -73.9129693, + "maxlat": 40.7694493, + "maxlon": -73.9115692 + }, + "nodes": [ + 276209383, + 106077769, + 9179198085, + 9179198086, + 6163935033, + 9179198087 + ], + "geometry": [ + { "lat": 40.7694493, "lon": -73.9129693 }, + { "lat": 40.7693148, "lon": -73.9121333 }, + { "lat": 40.7692905, "lon": -73.9119903 }, + { "lat": 40.7692653, "lon": -73.9118536 }, + { "lat": 40.7692369, "lon": -73.9117100 }, + { "lat": 40.7692057, "lon": -73.9115692 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "4", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "I 278;GCP", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "|||merge_to_left" + } +}, +{ + "type": "way", + "id": 1134701737, + "bounds": { + "minlat": 40.7004608, + "minlon": -73.9740846, + "maxlat": 40.7010816, + "maxlon": -73.9735547 + }, + "nodes": [ + 42496969, + 10578211329, + 10578211330, + 10578211331 + ], + "geometry": [ + { "lat": 40.7004608, "lon": -73.9736350 }, + { "lat": 40.7005261, "lon": -73.9735651 }, + { "lat": 40.7006148, "lon": -73.9735547 }, + { "lat": 40.7010816, "lon": -73.9740846 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1134714574, + "bounds": { + "minlat": 40.8172567, + "minlon": -73.9386193, + "maxlat": 40.8173165, + "maxlon": -73.9384793 + }, + "nodes": [ + 42433779, + 3099327948 + ], + "geometry": [ + { "lat": 40.8173165, "lon": -73.9386193 }, + { "lat": 40.8172567, "lon": -73.9384793 } + ], + "tags": { + "highway": "residential", + "name": "West 140th Street", + "name_1": "West 140 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1134714575, + "bounds": { + "minlat": 40.8169809, + "minlon": -73.9388638, + "maxlat": 40.8173165, + "maxlon": -73.9386193 + }, + "nodes": [ + 42433779, + 9557104514, + 4205440410 + ], + "geometry": [ + { "lat": 40.8173165, "lon": -73.9386193 }, + { "lat": 40.8172616, "lon": -73.9386590 }, + { "lat": 40.8169809, "lon": -73.9388638 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 1134714576, + "bounds": { + "minlat": 40.8172567, + "minlon": -73.9384793, + "maxlat": 40.8175623, + "maxlon": -73.9382554 + }, + "nodes": [ + 3099327948, + 8212384289, + 4205440414 + ], + "geometry": [ + { "lat": 40.8172567, "lon": -73.9384793 }, + { "lat": 40.8173108, "lon": -73.9384397 }, + { "lat": 40.8175623, "lon": -73.9382554 } + ], + "tags": { + "alt_name": "Lenox Avenue", + "alt_name:ru": "Ленокс-авеню", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "Malcolm X Boulevard", + "name:etymology:wikidata": "Q43303", + "name:ru": "Проспект Малкольма Икса", + "oneway": "yes", + "source": "Bing", + "wikidata": "Q6523155", + "wikipedia": "en:Lenox Avenue" + } +}, +{ + "type": "way", + "id": 1135082695, + "bounds": { + "minlat": 40.7252079, + "minlon": -73.9300561, + "maxlat": 40.7254755, + "maxlon": -73.9290773 + }, + "nodes": [ + 10581139435, + 10581139439, + 10581139440, + 8509404565 + ], + "geometry": [ + { "lat": 40.7252107, "lon": -73.9300561 }, + { "lat": 40.7252079, "lon": -73.9298950 }, + { "lat": 40.7253589, "lon": -73.9294024 }, + { "lat": 40.7254755, "lon": -73.9290773 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1135082696, + "bounds": { + "minlat": 40.7250162, + "minlon": -73.9294024, + "maxlat": 40.7253589, + "maxlon": -73.9292492 + }, + "nodes": [ + 10581139440, + 10581139441 + ], + "geometry": [ + { "lat": 40.7253589, "lon": -73.9294024 }, + { "lat": 40.7250162, "lon": -73.9292492 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1135124918, + "bounds": { + "minlat": 40.7701546, + "minlon": -73.9813743, + "maxlat": 40.7702258, + "maxlon": -73.9813224 + }, + "nodes": [ + 10581453366, + 10581453367, + 8780665850 + ], + "geometry": [ + { "lat": 40.7702258, "lon": -73.9813224 }, + { "lat": 40.7701708, "lon": -73.9813625 }, + { "lat": 40.7701546, "lon": -73.9813743 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1135134671, + "bounds": { + "minlat": 40.7339449, + "minlon": -73.9604588, + "maxlat": 40.7344613, + "maxlon": -73.9603237 + }, + "nodes": [ + 5481981180, + 10581529743, + 10581529744 + ], + "geometry": [ + { "lat": 40.7339449, "lon": -73.9603237 }, + { "lat": 40.7340322, "lon": -73.9603848 }, + { "lat": 40.7344613, "lon": -73.9604588 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1135143380, + "bounds": { + "minlat": 40.7791490, + "minlon": -73.9447790, + "maxlat": 40.7792798, + "maxlon": -73.9446839 + }, + "nodes": [ + 10581577906, + 6214889059, + 42428049 + ], + "geometry": [ + { "lat": 40.7792798, "lon": -73.9446839 }, + { "lat": 40.7792198, "lon": -73.9447283 }, + { "lat": 40.7791490, "lon": -73.9447790 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "York Avenue", + "name:etymology:wikidata": "Q449068", + "name:ru": "Йорк-авеню", + "old_name:1811-1928": "Avenue A", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "through||", + "wikidata": "Q3572606", + "wikipedia": "en:York Avenue and Sutton Place" + } +}, +{ + "type": "way", + "id": 1135342273, + "bounds": { + "minlat": 40.7135233, + "minlon": -73.9990891, + "maxlat": 40.7137104, + "maxlon": -73.9986438 + }, + "nodes": [ + 1773055865, + 11153640056, + 8827539962, + 12304374264 + ], + "geometry": [ + { "lat": 40.7135233, "lon": -73.9986438 }, + { "lat": 40.7135912, "lon": -73.9988274 }, + { "lat": 40.7136111, "lon": -73.9988791 }, + { "lat": 40.7137104, "lon": -73.9990891 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Worth Street", + "name:etymology:wikidata": "Q3568734", + "name:ko": "워스 스트리트", + "old_name": "Anthony Street", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through", + "wikidata": "Q1318800", + "wikipedia": "en:Worth Street" + } +}, +{ + "type": "way", + "id": 1135342275, + "bounds": { + "minlat": 40.7139391, + "minlon": -74.0005026, + "maxlat": 40.7143955, + "maxlon": -73.9995713 + }, + "nodes": [ + 7132405548, + 9910234385, + 7477038792, + 9910222078, + 7132406726, + 42425955 + ], + "geometry": [ + { "lat": 40.7139391, "lon": -73.9995713 }, + { "lat": 40.7139788, "lon": -73.9996559 }, + { "lat": 40.7140773, "lon": -73.9998632 }, + { "lat": 40.7142447, "lon": -74.0002099 }, + { "lat": 40.7143542, "lon": -74.0004221 }, + { "lat": 40.7143955, "lon": -74.0005026 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Worth Street", + "name:etymology:wikidata": "Q3568734", + "name:ko": "워스 스트리트", + "old_name": "Anthony Street", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1318800", + "wikipedia": "en:Worth Street" + } +}, +{ + "type": "way", + "id": 1135342276, + "bounds": { + "minlat": 40.7153816, + "minlon": -74.0030354, + "maxlat": 40.7155918, + "maxlon": -74.0025779 + }, + "nodes": [ + 10583167614, + 12198027565, + 4878781669, + 42445466 + ], + "geometry": [ + { "lat": 40.7153816, "lon": -74.0025779 }, + { "lat": 40.7155076, "lon": -74.0028422 }, + { "lat": 40.7155349, "lon": -74.0029045 }, + { "lat": 40.7155918, "lon": -74.0030354 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Worth Street", + "name:etymology:wikidata": "Q3568734", + "name:ko": "워스 스트리트", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through", + "turn:lanes:forward": "left|through", + "wikidata": "Q1318800", + "wikipedia": "en:Worth Street" + } +}, +{ + "type": "way", + "id": 1135342277, + "bounds": { + "minlat": 40.7155918, + "minlon": -74.0034618, + "maxlat": 40.7157901, + "maxlon": -74.0030354 + }, + "nodes": [ + 1253070785, + 12198027566, + 8279851411, + 42445466 + ], + "geometry": [ + { "lat": 40.7157901, "lon": -74.0034618 }, + { "lat": 40.7156625, "lon": -74.0031954 }, + { "lat": 40.7156348, "lon": -74.0031322 }, + { "lat": 40.7155918, "lon": -74.0030354 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Worth Street", + "name:etymology:wikidata": "Q3568734", + "name:ko": "워스 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "|right", + "wikidata": "Q1318800", + "wikipedia": "en:Worth Street" + } +}, +{ + "type": "way", + "id": 1135342278, + "bounds": { + "minlat": 40.7143858, + "minlon": -74.0033360, + "maxlat": 40.7147340, + "maxlon": -74.0031947 + }, + "nodes": [ + 1253070530, + 10583167620 + ], + "geometry": [ + { "lat": 40.7147340, "lon": -74.0031947 }, + { "lat": 40.7143858, "lon": -74.0033360 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|merge_to_left", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 1135346522, + "bounds": { + "minlat": 40.7445045, + "minlon": -73.9826736, + "maxlat": 40.7451567, + "maxlon": -73.9811202 + }, + "nodes": [ + 42446933, + 8119462510, + 12181374913, + 8119462441, + 42456568 + ], + "geometry": [ + { "lat": 40.7445045, "lon": -73.9811202 }, + { "lat": 40.7445464, "lon": -73.9812199 }, + { "lat": 40.7450988, "lon": -73.9825356 }, + { "lat": 40.7451235, "lon": -73.9825945 }, + { "lat": 40.7451567, "lon": -73.9826736 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 31st Street", + "name:ru": "Восточная 31-я стрит", + "name_1": "East 31 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1135346523, + "bounds": { + "minlat": 40.7438891, + "minlon": -73.9815652, + "maxlat": 40.7445045, + "maxlon": -73.9811202 + }, + "nodes": [ + 42446933, + 8119462500, + 12181379222, + 8133342842, + 8482948064 + ], + "geometry": [ + { "lat": 40.7445045, "lon": -73.9811202 }, + { "lat": 40.7444470, "lon": -73.9811618 }, + { "lat": 40.7439875, "lon": -73.9814941 }, + { "lat": 40.7439429, "lon": -73.9815263 }, + { "lat": 40.7438891, "lon": -73.9815652 } + ], + "tags": { + "bus:lanes": "|||designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through|none", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1135357725, + "bounds": { + "minlat": 40.7985458, + "minlon": -73.9366495, + "maxlat": 40.7989421, + "maxlon": -73.9363574 + }, + "nodes": [ + 42435234, + 8796934782, + 4207669596 + ], + "geometry": [ + { "lat": 40.7989421, "lon": -73.9363574 }, + { "lat": 40.7988863, "lon": -73.9363982 }, + { "lat": 40.7985458, "lon": -73.9366495 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1135357726, + "bounds": { + "minlat": 40.7979434, + "minlon": -73.9363574, + "maxlat": 40.7989421, + "maxlon": -73.9339919 + }, + "nodes": [ + 42435237, + 8796966336, + 8796934786, + 42435234 + ], + "geometry": [ + { "lat": 40.7979434, "lon": -73.9339919 }, + { "lat": 40.7980023, "lon": -73.9341313 }, + { "lat": 40.7988913, "lon": -73.9362370 }, + { "lat": 40.7989421, "lon": -73.9363574 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 119th Street", + "name:ru": "Восточная 119-я стрит", + "name_1": "East 119 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1135361169, + "bounds": { + "minlat": 40.7242749, + "minlon": -74.0112354, + "maxlat": 40.7248669, + "maxlon": -74.0111204 + }, + "nodes": [ + 42445174, + 246881976, + 10583288367 + ], + "geometry": [ + { "lat": 40.7242749, "lon": -74.0112354 }, + { "lat": 40.7243726, "lon": -74.0112154 }, + { "lat": 40.7248669, "lon": -74.0111204 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "asphalt", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1135361170, + "bounds": { + "minlat": 40.7248669, + "minlon": -74.0111204, + "maxlat": 40.7251803, + "maxlon": -74.0110523 + }, + "nodes": [ + 10583288367, + 4207143428, + 246881640, + 9611529611 + ], + "geometry": [ + { "lat": 40.7248669, "lon": -74.0111204 }, + { "lat": 40.7250195, "lon": -74.0110884 }, + { "lat": 40.7250752, "lon": -74.0110766 }, + { "lat": 40.7251803, "lon": -74.0110523 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "asphalt", + "turn:lanes": "||||right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1135361330, + "bounds": { + "minlat": 40.7088460, + "minlon": -74.0025030, + "maxlat": 40.7091344, + "maxlon": -74.0021248 + }, + "nodes": [ + 10583318293, + 5362212155, + 42433229 + ], + "geometry": [ + { "lat": 40.7091344, "lon": -74.0021248 }, + { "lat": 40.7088867, "lon": -74.0024522 }, + { "lat": 40.7088460, "lon": -74.0025030 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1135403008, + "bounds": { + "minlat": 40.8159841, + "minlon": -74.0041679, + "maxlat": 40.8163621, + "maxlon": -74.0038271 + }, + "nodes": [ + 10583885557, + 12456262037, + 10583885558, + 10583885559, + 10583885560, + 12456262140, + 103232658 + ], + "geometry": [ + { "lat": 40.8159841, "lon": -74.0038271 }, + { "lat": 40.8160106, "lon": -74.0039302 }, + { "lat": 40.8160454, "lon": -74.0040655 }, + { "lat": 40.8162260, "lon": -74.0041469 }, + { "lat": 40.8163224, "lon": -74.0041679 }, + { "lat": 40.8163430, "lon": -74.0040909 }, + { "lat": 40.8163621, "lon": -74.0040196 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1135403009, + "bounds": { + "minlat": 40.8163171, + "minlon": -74.0046480, + "maxlat": 40.8165562, + "maxlon": -74.0044653 + }, + "nodes": [ + 10583885565, + 10583885566, + 10583885562, + 10583885563, + 10583885564, + 10583885565 + ], + "geometry": [ + { "lat": 40.8163171, "lon": -74.0045115 }, + { "lat": 40.8163531, "lon": -74.0045187 }, + { "lat": 40.8165045, "lon": -74.0044653 }, + { "lat": 40.8165562, "lon": -74.0045854 }, + { "lat": 40.8163900, "lon": -74.0046480 }, + { "lat": 40.8163171, "lon": -74.0045115 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1135403010, + "bounds": { + "minlat": 40.8160454, + "minlon": -74.0045115, + "maxlat": 40.8163171, + "maxlon": -74.0040655 + }, + "nodes": [ + 10583885558, + 10583885561, + 10583885565 + ], + "geometry": [ + { "lat": 40.8160454, "lon": -74.0040655 }, + { "lat": 40.8162717, "lon": -74.0045077 }, + { "lat": 40.8163171, "lon": -74.0045115 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1135428602, + "bounds": { + "minlat": 40.7366680, + "minlon": -73.9973410, + "maxlat": 40.7368949, + "maxlon": -73.9971826 + }, + "nodes": [ + 42429374, + 8310246322, + 10584037999 + ], + "geometry": [ + { "lat": 40.7366680, "lon": -73.9973410 }, + { "lat": 40.7367321, "lon": -73.9972946 }, + { "lat": 40.7368949, "lon": -73.9971826 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1135504591, + "bounds": { + "minlat": 40.8744789, + "minlon": -73.9097424, + "maxlat": 40.8745523, + "maxlon": -73.9096352 + }, + "nodes": [ + 10128431624, + 42427926 + ], + "geometry": [ + { "lat": 40.8744789, "lon": -73.9097424 }, + { "lat": 40.8745523, "lon": -73.9096352 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1135504592, + "bounds": { + "minlat": 40.8746035, + "minlon": -73.9098910, + "maxlat": 40.8746718, + "maxlon": -73.9097899 + }, + "nodes": [ + 1544809891, + 10128431625 + ], + "geometry": [ + { "lat": 40.8746718, "lon": -73.9097899 }, + { "lat": 40.8746035, "lon": -73.9098910 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1135576504, + "bounds": { + "minlat": 40.7077053, + "minlon": -74.0102034, + "maxlat": 40.7081076, + "maxlon": -74.0098380 + }, + "nodes": [ + 42429838, + 11053134881, + 11350133686, + 3738917603, + 42434410 + ], + "geometry": [ + { "lat": 40.7077053, "lon": -74.0102034 }, + { "lat": 40.7077444, "lon": -74.0101677 }, + { "lat": 40.7080818, "lon": -74.0098601 }, + { "lat": 40.7080864, "lon": -74.0098559 }, + { "lat": 40.7081076, "lon": -74.0098380 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Nassau Street", + "name:etymology:wikidata": "Q155483", + "name:ko": "나사우 스트리트", + "name:ru": "Нассо-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2597808", + "wikipedia": "en:Nassau Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1135576552, + "bounds": { + "minlat": 40.7081076, + "minlon": -74.0098380, + "maxlat": 40.7086249, + "maxlon": -74.0093797 + }, + "nodes": [ + 42434410, + 3738917605, + 11350133624, + 8281922199, + 42422050 + ], + "geometry": [ + { "lat": 40.7081076, "lon": -74.0098380 }, + { "lat": 40.7081549, "lon": -74.0097941 }, + { "lat": 40.7085400, "lon": -74.0094534 }, + { "lat": 40.7085738, "lon": -74.0094238 }, + { "lat": 40.7086249, "lon": -74.0093797 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Nassau Street", + "name:etymology:wikidata": "Q155483", + "name:ko": "나사우 스트리트", + "name:ru": "Нассо-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2597808", + "wikipedia": "en:Nassau Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1135576553, + "bounds": { + "minlat": 40.7086249, + "minlon": -74.0093797, + "maxlat": 40.7090594, + "maxlon": -74.0088957 + }, + "nodes": [ + 42422050, + 8281922197, + 11350190949, + 10171859896, + 42454795 + ], + "geometry": [ + { "lat": 40.7086249, "lon": -74.0093797 }, + { "lat": 40.7086653, "lon": -74.0093374 }, + { "lat": 40.7086967, "lon": -74.0093038 }, + { "lat": 40.7090153, "lon": -74.0089448 }, + { "lat": 40.7090594, "lon": -74.0088957 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Nassau Street", + "name:etymology:wikidata": "Q155483", + "name:ko": "나사우 스트리트", + "name:ru": "Нассо-стрит", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2597808", + "wikipedia": "en:Nassau Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1135577205, + "bounds": { + "minlat": 40.7108922, + "minlon": -74.0069496, + "maxlat": 40.7112310, + "maxlon": -74.0064780 + }, + "nodes": [ + 10585438628, + 8281922068, + 42456492 + ], + "geometry": [ + { "lat": 40.7108922, "lon": -74.0069496 }, + { "lat": 40.7111972, "lon": -74.0065269 }, + { "lat": 40.7112310, "lon": -74.0064780 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Nassau Street", + "name:etymology:wikidata": "Q155483", + "name:ko": "나사우 스트리트", + "name:ru": "Нассо-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2597808", + "wikipedia": "en:Nassau Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1135614654, + "bounds": { + "minlat": 40.7559045, + "minlon": -73.9944753, + "maxlat": 40.7561052, + "maxlon": -73.9943300 + }, + "nodes": [ + 10585863294, + 8288270384, + 42433625 + ], + "geometry": [ + { "lat": 40.7561052, "lon": -73.9943300 }, + { "lat": 40.7559717, "lon": -73.9944276 }, + { "lat": 40.7559045, "lon": -73.9944753 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through|", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1135614655, + "bounds": { + "minlat": 40.7561052, + "minlon": -73.9943300, + "maxlat": 40.7565324, + "maxlon": -73.9940178 + }, + "nodes": [ + 42444985, + 8288270378, + 10585863294 + ], + "geometry": [ + { "lat": 40.7565324, "lon": -73.9940178 }, + { "lat": 40.7564733, "lon": -73.9940610 }, + { "lat": 40.7561052, "lon": -73.9943300 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1135614656, + "bounds": { + "minlat": 40.7565324, + "minlon": -73.9940178, + "maxlat": 40.7567985, + "maxlon": -73.9938303 + }, + "nodes": [ + 10585863295, + 8288270377, + 42444985 + ], + "geometry": [ + { "lat": 40.7567985, "lon": -73.9938303 }, + { "lat": 40.7565905, "lon": -73.9939769 }, + { "lat": 40.7565324, "lon": -73.9940178 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|through|through||", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1135620537, + "bounds": { + "minlat": 40.7514446, + "minlon": -73.9896878, + "maxlat": 40.7522886, + "maxlon": -73.9876865 + }, + "nodes": [ + 42439955, + 10169532572, + 10169532585, + 42428258 + ], + "geometry": [ + { "lat": 40.7522886, "lon": -73.9896878 }, + { "lat": 40.7522364, "lon": -73.9895632 }, + { "lat": 40.7514804, "lon": -73.9877714 }, + { "lat": 40.7514446, "lon": -73.9876865 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 36th Street", + "name:ru": "Западная 36-я стрит", + "name_1": "West 36 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1135620538, + "bounds": { + "minlat": 40.7522886, + "minlon": -73.9896878, + "maxlat": 40.7528950, + "maxlon": -73.9892430 + }, + "nodes": [ + 42439960, + 10169532517, + 10169532573, + 42439955 + ], + "geometry": [ + { "lat": 40.7528950, "lon": -73.9892430 }, + { "lat": 40.7528446, "lon": -73.9892801 }, + { "lat": 40.7523454, "lon": -73.9896460 }, + { "lat": 40.7522886, "lon": -73.9896878 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1135622595, + "bounds": { + "minlat": 40.7533320, + "minlon": -73.9733359, + "maxlat": 40.7536373, + "maxlon": -73.9726040 + }, + "nodes": [ + 3976829278, + 10125260526, + 42434087 + ], + "geometry": [ + { "lat": 40.7536373, "lon": -73.9733359 }, + { "lat": 40.7533847, "lon": -73.9727304 }, + { "lat": 40.7533320, "lon": -73.9726040 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 46th Street", + "name:ru": "Восточная 46-я стрит", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|", + "width": "9.2" + } +}, +{ + "type": "way", + "id": 1135661890, + "bounds": { + "minlat": 40.7547237, + "minlon": -73.9712357, + "maxlat": 40.7552045, + "maxlon": -73.9700980 + }, + "nodes": [ + 10586374984, + 4550867477, + 10125260533, + 42438891 + ], + "geometry": [ + { "lat": 40.7547237, "lon": -73.9700980 }, + { "lat": 40.7549707, "lon": -73.9706832 }, + { "lat": 40.7551386, "lon": -73.9710798 }, + { "lat": 40.7552045, "lon": -73.9712357 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|right" + } +}, +{ + "type": "way", + "id": 1135661891, + "bounds": { + "minlat": 40.7540410, + "minlon": -73.9689780, + "maxlat": 40.7542510, + "maxlon": -73.9684774 + }, + "nodes": [ + 10586374983, + 10170640092, + 42438894 + ], + "geometry": [ + { "lat": 40.7540410, "lon": -73.9684774 }, + { "lat": 40.7541970, "lon": -73.9688487 }, + { "lat": 40.7542510, "lon": -73.9689780 } + ], + "tags": { + "alt_name": "Katharine Hepburn Place", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none" + } +}, +{ + "type": "way", + "id": 1135661892, + "bounds": { + "minlat": 40.7542510, + "minlon": -73.9700980, + "maxlat": 40.7547237, + "maxlon": -73.9689780 + }, + "nodes": [ + 42438894, + 10170640088, + 4782506040, + 10586374984 + ], + "geometry": [ + { "lat": 40.7542510, "lon": -73.9689780 }, + { "lat": 40.7543100, "lon": -73.9691178 }, + { "lat": 40.7544140, "lon": -73.9693641 }, + { "lat": 40.7547237, "lon": -73.9700980 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1135726215, + "bounds": { + "minlat": 40.7780183, + "minlon": -73.9829602, + "maxlat": 40.7782185, + "maxlon": -73.9828231 + }, + "nodes": [ + 10586962112, + 10586962111, + 10586962114 + ], + "geometry": [ + { "lat": 40.7782185, "lon": -73.9828231 }, + { "lat": 40.7781502, "lon": -73.9828699 }, + { "lat": 40.7780183, "lon": -73.9829602 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1135726216, + "bounds": { + "minlat": 40.7780382, + "minlon": -73.9849751, + "maxlat": 40.7791258, + "maxlon": -73.9823956 + }, + "nodes": [ + 10586962113, + 10586962112, + 9492542208, + 42431002 + ], + "geometry": [ + { "lat": 40.7780382, "lon": -73.9823956 }, + { "lat": 40.7782185, "lon": -73.9828231 }, + { "lat": 40.7790766, "lon": -73.9848584 }, + { "lat": 40.7791258, "lon": -73.9849751 } + ], + "tags": { + "covered": "no", + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 71st Street", + "name:ru": "Западная 71-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1136391283, + "bounds": { + "minlat": 40.7616052, + "minlon": -73.9937550, + "maxlat": 40.7630652, + "maxlon": -73.9903162 + }, + "nodes": [ + 42445020, + 8646554910, + 10168029012, + 42452365, + 10168029014, + 593921860 + ], + "geometry": [ + { "lat": 40.7616052, "lon": -73.9903162 }, + { "lat": 40.7616665, "lon": -73.9904585 }, + { "lat": 40.7627568, "lon": -73.9930479 }, + { "lat": 40.7628026, "lon": -73.9931565 }, + { "lat": 40.7628612, "lon": -73.9932898 }, + { "lat": 40.7630652, "lon": -73.9937550 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 47th Street", + "name:ru": "Западная 47-я стрит", + "name_1": "West 47 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4638574", + "wikipedia": "en:47th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1136391284, + "bounds": { + "minlat": 40.7611718, + "minlon": -73.9906333, + "maxlat": 40.7616052, + "maxlon": -73.9903162 + }, + "nodes": [ + 42445020, + 8646554913, + 4207957614 + ], + "geometry": [ + { "lat": 40.7616052, "lon": -73.9903162 }, + { "lat": 40.7615564, "lon": -73.9903517 }, + { "lat": 40.7611718, "lon": -73.9906333 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1136393331, + "bounds": { + "minlat": 40.7426694, + "minlon": -73.9743233, + "maxlat": 40.7428683, + "maxlon": -73.9741764 + }, + "nodes": [ + 10593550845, + 3871072002, + 9470272150 + ], + "geometry": [ + { "lat": 40.7426694, "lon": -73.9743233 }, + { "lat": 40.7427277, "lon": -73.9742810 }, + { "lat": 40.7428683, "lon": -73.9741764 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through|right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1136398322, + "bounds": { + "minlat": 40.7832858, + "minlon": -73.9477905, + "maxlat": 40.7835688, + "maxlon": -73.9475880 + }, + "nodes": [ + 42434175, + 6070106316, + 5637143331 + ], + "geometry": [ + { "lat": 40.7835688, "lon": -73.9475880 }, + { "lat": 40.7835224, "lon": -73.9476232 }, + { "lat": 40.7832858, "lon": -73.9477905 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 14:00-19:00)", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1136453872, + "bounds": { + "minlat": 40.7143998, + "minlon": -73.9341456, + "maxlat": 40.7144199, + "maxlon": -73.9334534 + }, + "nodes": [ + 7961803893, + 7961803898, + 5482301714, + 5838943013, + 42484221 + ], + "geometry": [ + { "lat": 40.7144199, "lon": -73.9341456 }, + { "lat": 40.7144136, "lon": -73.9339373 }, + { "lat": 40.7144072, "lon": -73.9337815 }, + { "lat": 40.7143998, "lon": -73.9335999 }, + { "lat": 40.7144048, "lon": -73.9334534 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk": "separate", + "turn:lanes:forward": "left;right", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1136455989, + "bounds": { + "minlat": 40.7491713, + "minlon": -73.9367877, + "maxlat": 40.7493056, + "maxlon": -73.9366190 + }, + "nodes": [ + 3785669504, + 12527020795, + 3785669515 + ], + "geometry": [ + { "lat": 40.7491713, "lon": -73.9367877 }, + { "lat": 40.7492084, "lon": -73.9367411 }, + { "lat": 40.7493056, "lon": -73.9366190 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1136456135, + "bounds": { + "minlat": 40.8108846, + "minlon": -74.0134083, + "maxlat": 40.8110676, + "maxlon": -74.0131917 + }, + "nodes": [ + 10594102864, + 10594102865, + 10594102866, + 10594102867 + ], + "geometry": [ + { "lat": 40.8108846, "lon": -74.0134083 }, + { "lat": 40.8109441, "lon": -74.0133590 }, + { "lat": 40.8110415, "lon": -74.0132632 }, + { "lat": 40.8110676, "lon": -74.0131917 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1136460176, + "bounds": { + "minlat": 40.7612779, + "minlon": -73.9840983, + "maxlat": 40.7614503, + "maxlon": -73.9836865 + }, + "nodes": [ + 42428308, + 4322008116, + 2435108447, + 4207978589 + ], + "geometry": [ + { "lat": 40.7614503, "lon": -73.9840983 }, + { "lat": 40.7614200, "lon": -73.9840231 }, + { "lat": 40.7613821, "lon": -73.9839316 }, + { "lat": 40.7612779, "lon": -73.9836865 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 50th Street", + "name:ru": "Западная 50-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1136460177, + "bounds": { + "minlat": 40.7609668, + "minlon": -73.9844145, + "maxlat": 40.7614503, + "maxlon": -73.9840983 + }, + "nodes": [ + 42428308, + 2435108455, + 12986907232 + ], + "geometry": [ + { "lat": 40.7614503, "lon": -73.9840983 }, + { "lat": 40.7613880, "lon": -73.9841402 }, + { "lat": 40.7609668, "lon": -73.9844145 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "asphalt", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1136460178, + "bounds": { + "minlat": 40.7614503, + "minlon": -73.9840983, + "maxlat": 40.7617781, + "maxlon": -73.9838813 + }, + "nodes": [ + 10594155705, + 2435108453, + 42428308 + ], + "geometry": [ + { "lat": 40.7617781, "lon": -73.9838813 }, + { "lat": 40.7615078, "lon": -73.9840613 }, + { "lat": 40.7614503, "lon": -73.9840983 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1136460179, + "bounds": { + "minlat": 40.7617781, + "minlon": -73.9838813, + "maxlat": 40.7620858, + "maxlon": -73.9836782 + }, + "nodes": [ + 42428310, + 3977886863, + 10594155705 + ], + "geometry": [ + { "lat": 40.7620858, "lon": -73.9836782 }, + { "lat": 40.7620141, "lon": -73.9837244 }, + { "lat": 40.7617781, "lon": -73.9838813 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1136460180, + "bounds": { + "minlat": 40.7631283, + "minlon": -73.9830424, + "maxlat": 40.7633820, + "maxlon": -73.9829033 + }, + "nodes": [ + 42428313, + 8785244250, + 10594155706 + ], + "geometry": [ + { "lat": 40.7633820, "lon": -73.9829033 }, + { "lat": 40.7633270, "lon": -73.9829335 }, + { "lat": 40.7631283, "lon": -73.9830424 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1136460181, + "bounds": { + "minlat": 40.7627381, + "minlon": -73.9832608, + "maxlat": 40.7631283, + "maxlon": -73.9830424 + }, + "nodes": [ + 10594155706, + 3977886874, + 42428312 + ], + "geometry": [ + { "lat": 40.7631283, "lon": -73.9830424 }, + { "lat": 40.7627987, "lon": -73.9832226 }, + { "lat": 40.7627381, "lon": -73.9832608 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1136699156, + "bounds": { + "minlat": 40.7200534, + "minlon": -73.9928771, + "maxlat": 40.7206222, + "maxlon": -73.9925863 + }, + "nodes": [ + 486869282, + 5159452344, + 12196062114, + 12196062120, + 13033168291, + 10596183144 + ], + "geometry": [ + { "lat": 40.7200534, "lon": -73.9928771 }, + { "lat": 40.7201570, "lon": -73.9928267 }, + { "lat": 40.7202120, "lon": -73.9928001 }, + { "lat": 40.7202424, "lon": -73.9927836 }, + { "lat": 40.7205003, "lon": -73.9926496 }, + { "lat": 40.7206222, "lon": -73.9925863 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "3", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|left|", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 1136699157, + "bounds": { + "minlat": 40.7206222, + "minlon": -73.9925863, + "maxlat": 40.7209917, + "maxlon": -73.9923843 + }, + "nodes": [ + 10596183144, + 10596183145 + ], + "geometry": [ + { "lat": 40.7206222, "lon": -73.9925863 }, + { "lat": 40.7209917, "lon": -73.9923843 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 1136699158, + "bounds": { + "minlat": 40.7209917, + "minlon": -73.9923843, + "maxlat": 40.7212541, + "maxlon": -73.9922542 + }, + "nodes": [ + 10596183145, + 12196062107, + 8231896503, + 42437113 + ], + "geometry": [ + { "lat": 40.7209917, "lon": -73.9923843 }, + { "lat": 40.7211648, "lon": -73.9922932 }, + { "lat": 40.7212091, "lon": -73.9922735 }, + { "lat": 40.7212541, "lon": -73.9922542 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 1136699159, + "bounds": { + "minlat": 40.7213122, + "minlon": -73.9922275, + "maxlat": 40.7224213, + "maxlon": -73.9916699 + }, + "nodes": [ + 8231896502, + 12196062106, + 12195914999, + 6906849818, + 42432083 + ], + "geometry": [ + { "lat": 40.7213122, "lon": -73.9922275 }, + { "lat": 40.7213570, "lon": -73.9922082 }, + { "lat": 40.7223238, "lon": -73.9917175 }, + { "lat": 40.7223655, "lon": -73.9916969 }, + { "lat": 40.7224213, "lon": -73.9916699 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 1136699160, + "bounds": { + "minlat": 40.7231295, + "minlon": -73.9913065, + "maxlat": 40.7236015, + "maxlon": -73.9910751 + }, + "nodes": [ + 10596183146, + 9543294809, + 5991033039, + 5783022072, + 1918039877 + ], + "geometry": [ + { "lat": 40.7231295, "lon": -73.9913065 }, + { "lat": 40.7234253, "lon": -73.9911548 }, + { "lat": 40.7234720, "lon": -73.9911302 }, + { "lat": 40.7235162, "lon": -73.9911079 }, + { "lat": 40.7236015, "lon": -73.9910751 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|left;right", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 1136710158, + "bounds": { + "minlat": 40.7133011, + "minlon": -73.9641987, + "maxlat": 40.7133885, + "maxlon": -73.9639171 + }, + "nodes": [ + 10596295091, + 10596295092, + 10596295093, + 10596295094, + 10596295096, + 10596295095 + ], + "geometry": [ + { "lat": 40.7133011, "lon": -73.9641987 }, + { "lat": 40.7133674, "lon": -73.9641592 }, + { "lat": 40.7133885, "lon": -73.9641275 }, + { "lat": 40.7133885, "lon": -73.9640842 }, + { "lat": 40.7133580, "lon": -73.9640059 }, + { "lat": 40.7133234, "lon": -73.9639171 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1136710159, + "bounds": { + "minlat": 40.7118576, + "minlon": -73.9647067, + "maxlat": 40.7120737, + "maxlon": -73.9641205 + }, + "nodes": [ + 10596295097, + 10596295099, + 10596295100, + 10596295098 + ], + "geometry": [ + { "lat": 40.7120737, "lon": -73.9647067 }, + { "lat": 40.7120446, "lon": -73.9646277 }, + { "lat": 40.7120391, "lon": -73.9646127 }, + { "lat": 40.7118576, "lon": -73.9641205 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1136710160, + "bounds": { + "minlat": 40.7119168, + "minlon": -73.9657048, + "maxlat": 40.7122398, + "maxlon": -73.9655453 + }, + "nodes": [ + 10596295101, + 10596313305, + 10596313306, + 10596295102, + 10596295103, + 10596295104 + ], + "geometry": [ + { "lat": 40.7119168, "lon": -73.9657048 }, + { "lat": 40.7119755, "lon": -73.9656716 }, + { "lat": 40.7119890, "lon": -73.9656639 }, + { "lat": 40.7120560, "lon": -73.9656259 }, + { "lat": 40.7120949, "lon": -73.9656235 }, + { "lat": 40.7122398, "lon": -73.9655453 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1136710161, + "bounds": { + "minlat": 40.7125759, + "minlon": -73.9652370, + "maxlat": 40.7127052, + "maxlon": -73.9651855 + }, + "nodes": [ + 10596313307, + 10596313313, + 10596313308 + ], + "geometry": [ + { "lat": 40.7127052, "lon": -73.9651855 }, + { "lat": 40.7126463, "lon": -73.9652090 }, + { "lat": 40.7125759, "lon": -73.9652370 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1136710162, + "bounds": { + "minlat": 40.7124481, + "minlon": -73.9652929, + "maxlat": 40.7125759, + "maxlon": -73.9652370 + }, + "nodes": [ + 10596313308, + 10596313309 + ], + "geometry": [ + { "lat": 40.7125759, "lon": -73.9652370 }, + { "lat": 40.7124481, "lon": -73.9652929 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1136710163, + "bounds": { + "minlat": 40.7122428, + "minlon": -73.9654226, + "maxlat": 40.7124481, + "maxlon": -73.9652929 + }, + "nodes": [ + 10596313309, + 10596313310, + 10596313311 + ], + "geometry": [ + { "lat": 40.7124481, "lon": -73.9652929 }, + { "lat": 40.7124083, "lon": -73.9653483 }, + { "lat": 40.7122428, "lon": -73.9654226 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1136710164, + "bounds": { + "minlat": 40.7124083, + "minlon": -73.9654371, + "maxlat": 40.7124314, + "maxlon": -73.9653483 + }, + "nodes": [ + 10596313312, + 10596313310 + ], + "geometry": [ + { "lat": 40.7124314, "lon": -73.9654371 }, + { "lat": 40.7124083, "lon": -73.9653483 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1136943582, + "bounds": { + "minlat": 40.7519789, + "minlon": -73.9319184, + "maxlat": 40.7519885, + "maxlon": -73.9314429 + }, + "nodes": [ + 42838389, + 8088590920, + 4841296388, + 12046209178 + ], + "geometry": [ + { "lat": 40.7519789, "lon": -73.9319184 }, + { "lat": 40.7519840, "lon": -73.9318052 }, + { "lat": 40.7519872, "lon": -73.9314995 }, + { "lat": 40.7519885, "lon": -73.9314429 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1136943583, + "bounds": { + "minlat": 40.7520022, + "minlon": -73.9306069, + "maxlat": 40.7520113, + "maxlon": -73.9300919 + }, + "nodes": [ + 12046209177, + 8088590918, + 42908517 + ], + "geometry": [ + { "lat": 40.7520022, "lon": -73.9306069 }, + { "lat": 40.7520082, "lon": -73.9301987 }, + { "lat": 40.7520113, "lon": -73.9300919 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1136943584, + "bounds": { + "minlat": 40.7520168, + "minlon": -73.9297552, + "maxlat": 40.7520309, + "maxlon": -73.9289487 + }, + "nodes": [ + 10598537440, + 13702980109, + 13702980106, + 8421787218, + 42876795 + ], + "geometry": [ + { "lat": 40.7520168, "lon": -73.9297552 }, + { "lat": 40.7520221, "lon": -73.9294736 }, + { "lat": 40.7520264, "lon": -73.9292644 }, + { "lat": 40.7520283, "lon": -73.9291329 }, + { "lat": 40.7520309, "lon": -73.9289487 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1136943585, + "bounds": { + "minlat": 40.7520309, + "minlon": -73.9289487, + "maxlat": 40.7520602, + "maxlon": -73.9271400 + }, + "nodes": [ + 42876795, + 8088564412, + 42926409, + 8088564410, + 10598537441 + ], + "geometry": [ + { "lat": 40.7520309, "lon": -73.9289487 }, + { "lat": 40.7520492, "lon": -73.9279835 }, + { "lat": 40.7520489, "lon": -73.9279004 }, + { "lat": 40.7520500, "lon": -73.9278254 }, + { "lat": 40.7520602, "lon": -73.9271400 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1136943586, + "bounds": { + "minlat": 40.7520602, + "minlon": -73.9271400, + "maxlat": 40.7520725, + "maxlon": -73.9264731 + }, + "nodes": [ + 10598537441, + 8088564409, + 42888672 + ], + "geometry": [ + { "lat": 40.7520602, "lon": -73.9271400 }, + { "lat": 40.7520704, "lon": -73.9265714 }, + { "lat": 40.7520725, "lon": -73.9264731 } + ], + "tags": { + "cycleway": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1136943587, + "bounds": { + "minlat": 40.7522295, + "minlon": -73.9252362, + "maxlat": 40.7524220, + "maxlon": -73.9243604 + }, + "nodes": [ + 10598537442, + 5488325088, + 42917872 + ], + "geometry": [ + { "lat": 40.7522295, "lon": -73.9252362 }, + { "lat": 40.7523816, "lon": -73.9245245 }, + { "lat": 40.7524220, "lon": -73.9243604 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1136952921, + "bounds": { + "minlat": 40.7556053, + "minlon": -73.9864249, + "maxlat": 40.7558193, + "maxlon": -73.9859192 + }, + "nodes": [ + 10598594003, + 4770624003, + 3974095818, + 42428287 + ], + "geometry": [ + { "lat": 40.7556053, "lon": -73.9859192 }, + { "lat": 40.7556525, "lon": -73.9860306 }, + { "lat": 40.7557622, "lon": -73.9862894 }, + { "lat": 40.7558193, "lon": -73.9864249 } + ], + "tags": { + "access": "yes", + "foot": "designated", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|none", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1136976608, + "bounds": { + "minlat": 40.7102684, + "minlon": -73.9638802, + "maxlat": 40.7103485, + "maxlon": -73.9638637 + }, + "nodes": [ + 9990599496, + 9990599495 + ], + "geometry": [ + { "lat": 40.7102684, "lon": -73.9638802 }, + { "lat": 40.7103485, "lon": -73.9638637 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 1136976609, + "bounds": { + "minlat": 40.7102412, + "minlon": -73.9638802, + "maxlat": 40.7102684, + "maxlon": -73.9633041 + }, + "nodes": [ + 9990599496, + 2782255559, + 11163899201, + 42505383 + ], + "geometry": [ + { "lat": 40.7102684, "lon": -73.9638802 }, + { "lat": 40.7102601, "lon": -73.9637993 }, + { "lat": 40.7102492, "lon": -73.9635129 }, + { "lat": 40.7102412, "lon": -73.9633041 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:lane": "advisory", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Broadway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 1137046265, + "bounds": { + "minlat": 40.7145774, + "minlon": -74.0051938, + "maxlat": 40.7151334, + "maxlon": -74.0040130 + }, + "nodes": [ + 591567060, + 11506493455, + 1253070923, + 7335430595, + 42430540 + ], + "geometry": [ + { "lat": 40.7151334, "lon": -74.0051938 }, + { "lat": 40.7150545, "lon": -74.0050187 }, + { "lat": 40.7147477, "lon": -74.0043380 }, + { "lat": 40.7146058, "lon": -74.0040476 }, + { "lat": 40.7145774, "lon": -74.0040130 } + ], + "tags": { + "access": "no", + "cycleway:both": "no", + "foot": "yes", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Duane Street", + "name:etymology:wikidata": "Q339274", + "name:ko": "두에인 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1137137610, + "bounds": { + "minlat": 40.7439773, + "minlon": -73.9308742, + "maxlat": 40.7444162, + "maxlon": -73.9270770 + }, + "nodes": [ + 10743722713, + 597294553, + 10743722711, + 10743722706, + 597294545, + 10743722703, + 10927727731, + 9982201650, + 10743722692, + 597294520, + 10743722693, + 6167106125, + 6167106128, + 10743722677, + 597294492, + 10743722678, + 10743722656, + 597294491 + ], + "geometry": [ + { "lat": 40.7444162, "lon": -73.9308742 }, + { "lat": 40.7444059, "lon": -73.9307848 }, + { "lat": 40.7443970, "lon": -73.9307085 }, + { "lat": 40.7443072, "lon": -73.9299435 }, + { "lat": 40.7442973, "lon": -73.9298588 }, + { "lat": 40.7442886, "lon": -73.9297822 }, + { "lat": 40.7442633, "lon": -73.9295603 }, + { "lat": 40.7442194, "lon": -73.9291751 }, + { "lat": 40.7442029, "lon": -73.9290307 }, + { "lat": 40.7441914, "lon": -73.9289298 }, + { "lat": 40.7441815, "lon": -73.9288501 }, + { "lat": 40.7441684, "lon": -73.9287423 }, + { "lat": 40.7441068, "lon": -73.9282093 }, + { "lat": 40.7440934, "lon": -73.9280899 }, + { "lat": 40.7440839, "lon": -73.9280018 }, + { "lat": 40.7440747, "lon": -73.9279219 }, + { "lat": 40.7439871, "lon": -73.9271628 }, + { "lat": 40.7439773, "lon": -73.9270770 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 1137137611, + "bounds": { + "minlat": 40.7442785, + "minlon": -73.9325862, + "maxlat": 40.7449297, + "maxlon": -73.9270213 + }, + "nodes": [ + 597294490, + 10743722062, + 10927727730, + 10743722064, + 597294493, + 10743722063, + 12136583407, + 10743722069, + 11272980333, + 10743722068, + 10743722072, + 597294546, + 10743722076, + 10927727732, + 10743722077, + 597294551, + 10743722081, + 10743714092, + 597294548, + 10743714095, + 10927727733, + 10762119899, + 276207583 + ], + "geometry": [ + { "lat": 40.7442785, "lon": -73.9270213 }, + { "lat": 40.7442885, "lon": -73.9271051 }, + { "lat": 40.7443169, "lon": -73.9273447 }, + { "lat": 40.7443787, "lon": -73.9278641 }, + { "lat": 40.7443874, "lon": -73.9279376 }, + { "lat": 40.7443975, "lon": -73.9280259 }, + { "lat": 40.7444503, "lon": -73.9284845 }, + { "lat": 40.7444855, "lon": -73.9287906 }, + { "lat": 40.7444948, "lon": -73.9288708 }, + { "lat": 40.7445063, "lon": -73.9289692 }, + { "lat": 40.7445945, "lon": -73.9297194 }, + { "lat": 40.7446033, "lon": -73.9297939 }, + { "lat": 40.7446140, "lon": -73.9298842 }, + { "lat": 40.7446484, "lon": -73.9301769 }, + { "lat": 40.7447043, "lon": -73.9306513 }, + { "lat": 40.7447128, "lon": -73.9307236 }, + { "lat": 40.7447229, "lon": -73.9308113 }, + { "lat": 40.7448124, "lon": -73.9315879 }, + { "lat": 40.7448198, "lon": -73.9316555 }, + { "lat": 40.7448291, "lon": -73.9317339 }, + { "lat": 40.7448633, "lon": -73.9320240 }, + { "lat": 40.7449202, "lon": -73.9325056 }, + { "lat": 40.7449297, "lon": -73.9325862 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;slight_left|slight_left;slight_right|slight_right", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 1137257240, + "bounds": { + "minlat": 40.7052222, + "minlon": -73.9498349, + "maxlat": 40.7054557, + "maxlon": -73.9479830 + }, + "nodes": [ + 42476779, + 9752593909, + 5487724338, + 8617440636, + 9755373373, + 42476777 + ], + "geometry": [ + { "lat": 40.7054557, "lon": -73.9479830 }, + { "lat": 40.7054439, "lon": -73.9481075 }, + { "lat": 40.7054046, "lon": -73.9485239 }, + { "lat": 40.7053005, "lon": -73.9496766 }, + { "lat": 40.7052732, "lon": -73.9497317 }, + { "lat": 40.7052222, "lon": -73.9498349 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Boerum Street", + "oneway": "yes", + "parking:lane:left": "perpendicular", + "parking:lane:left:perpendicular": "on_street", + "parking:lane:right": "parallel", + "parking:lane:right:parallel": "on_street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1137257393, + "bounds": { + "minlat": 40.7070866, + "minlon": -73.9540209, + "maxlat": 40.7083663, + "maxlon": -73.9532127 + }, + "nodes": [ + 42491456, + 9755373467, + 9755373462, + 42491453, + 9755373461, + 9776829362, + 42491450 + ], + "geometry": [ + { "lat": 40.7083663, "lon": -73.9532127 }, + { "lat": 40.7083033, "lon": -73.9532526 }, + { "lat": 40.7078062, "lon": -73.9535673 }, + { "lat": 40.7077450, "lon": -73.9536060 }, + { "lat": 40.7076909, "lon": -73.9536401 }, + { "lat": 40.7071522, "lon": -73.9539795 }, + { "lat": 40.7070866, "lon": -73.9540209 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Hooper Street", + "name:etymology:wikidata": "Q1345669", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hooper", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1137257584, + "bounds": { + "minlat": 40.7036946, + "minlon": -73.9597364, + "maxlat": 40.7067937, + "maxlon": -73.9579901 + }, + "nodes": [ + 8873994765, + 479715932, + 479715933 + ], + "geometry": [ + { "lat": 40.7036946, "lon": -73.9597364 }, + { "lat": 40.7048866, "lon": -73.9590639 }, + { "lat": 40.7067937, "lon": -73.9579901 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11;A11;A11;A63;A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 1137257585, + "bounds": { + "minlat": 40.7086620, + "minlon": -73.9569126, + "maxlat": 40.7090407, + "maxlon": -73.9566853 + }, + "nodes": [ + 10601344479, + 479715934, + 10601344480 + ], + "geometry": [ + { "lat": 40.7086620, "lon": -73.9569126 }, + { "lat": 40.7087123, "lon": -73.9568839 }, + { "lat": 40.7090407, "lon": -73.9566853 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxheight": "12'1\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11;A11;A11;A63;A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 1137604347, + "bounds": { + "minlat": 40.7037470, + "minlon": -73.9544420, + "maxlat": 40.7059187, + "maxlon": -73.9510745 + }, + "nodes": [ + 42482183, + 9755373351, + 6245642050, + 42531741, + 6245642049, + 9755373395, + 42505415 + ], + "geometry": [ + { "lat": 40.7037470, "lon": -73.9544420 }, + { "lat": 40.7037937, "lon": -73.9543699 }, + { "lat": 40.7049302, "lon": -73.9526136 }, + { "lat": 40.7049830, "lon": -73.9525320 }, + { "lat": 40.7050370, "lon": -73.9524486 }, + { "lat": 40.7058640, "lon": -73.9511597 }, + { "lat": 40.7059187, "lon": -73.9510745 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Rutledge Street", + "name:etymology:wikidata": "Q878666", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1138164081, + "bounds": { + "minlat": 40.7516800, + "minlon": -74.0078289, + "maxlat": 40.7517376, + "maxlon": -74.0076901 + }, + "nodes": [ + 42445314, + 3874681615 + ], + "geometry": [ + { "lat": 40.7517376, "lon": -74.0078289 }, + { "lat": 40.7516800, "lon": -74.0076901 } + ], + "tags": { + "bicycle": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1138164083, + "bounds": { + "minlat": 40.7502088, + "minlon": -74.0083005, + "maxlat": 40.7502621, + "maxlon": -74.0081705 + }, + "nodes": [ + 3874681611, + 42427494 + ], + "geometry": [ + { "lat": 40.7502088, "lon": -74.0081705 }, + { "lat": 40.7502621, "lon": -74.0083005 } + ], + "tags": { + "alt_name": "11 Avenue", + "bicycle": "no", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "West 24th Street", + "name:ru": "Западная 24-я стрит", + "oneway": "no", + "surface": "concrete", + "turn:lanes:forward": "left|left;right|right" + } +}, +{ + "type": "way", + "id": 1138164087, + "bounds": { + "minlat": 40.7453430, + "minlon": -74.0081345, + "maxlat": 40.7453904, + "maxlon": -74.0080237 + }, + "nodes": [ + 11027912164, + 3874653362 + ], + "geometry": [ + { "lat": 40.7453904, "lon": -74.0081345 }, + { "lat": 40.7453430, "lon": -74.0080237 } + ], + "tags": { + "bicycle": "no", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 18th Street", + "name:ru": "Западная 18-я стрит", + "name_1": "West 18 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1138164088, + "bounds": { + "minlat": 40.7446509, + "minlon": -74.0082636, + "maxlat": 40.7446911, + "maxlon": -74.0081671 + }, + "nodes": [ + 3874653359, + 42439295 + ], + "geometry": [ + { "lat": 40.7446509, "lon": -74.0081671 }, + { "lat": 40.7446911, "lon": -74.0082636 } + ], + "tags": { + "bicycle": "no", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 17th Street", + "name:ru": "Западная 17-я стрит", + "name_1": "West 17 Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1138164092, + "bounds": { + "minlat": 40.7387804, + "minlon": -74.0099368, + "maxlat": 40.7389504, + "maxlon": -74.0097426 + }, + "nodes": [ + 3884622511, + 12161966110, + 3884622510, + 12161966111, + 1701920974, + 246649429 + ], + "geometry": [ + { "lat": 40.7389504, "lon": -74.0097426 }, + { "lat": 40.7389161, "lon": -74.0097570 }, + { "lat": 40.7388896, "lon": -74.0097765 }, + { "lat": 40.7388663, "lon": -74.0098023 }, + { "lat": 40.7388425, "lon": -74.0098302 }, + { "lat": 40.7387804, "lon": -74.0099368 } + ], + "tags": { + "bicycle": "no", + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1140680946, + "bounds": { + "minlat": 40.8479260, + "minlon": -73.9703328, + "maxlat": 40.8480787, + "maxlon": -73.9702296 + }, + "nodes": [ + 10628137670, + 10628137671, + 10628137672 + ], + "geometry": [ + { "lat": 40.8480787, "lon": -73.9702821 }, + { "lat": 40.8479528, "lon": -73.9703328 }, + { "lat": 40.8479260, "lon": -73.9702296 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1140716170, + "bounds": { + "minlat": 40.7794990, + "minlon": -73.9818317, + "maxlat": 40.7795842, + "maxlon": -73.9816284 + }, + "nodes": [ + 1061531757, + 42428637 + ], + "geometry": [ + { "lat": 40.7794990, "lon": -73.9816284 }, + { "lat": 40.7795842, "lon": -73.9818317 } + ], + "tags": { + "highway": "residential", + "name": "West 73rd Street", + "name:ru": "Западная 73-я стрит", + "name_1": "West 73 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1140716171, + "bounds": { + "minlat": 40.7787867, + "minlon": -73.9820522, + "maxlat": 40.7795842, + "maxlon": -73.9818317 + }, + "nodes": [ + 42428637, + 5115917333, + 3235708631, + 42428634 + ], + "geometry": [ + { "lat": 40.7795842, "lon": -73.9818317 }, + { "lat": 40.7795157, "lon": -73.9818528 }, + { "lat": 40.7788973, "lon": -73.9820221 }, + { "lat": 40.7787867, "lon": -73.9820522 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1140717165, + "bounds": { + "minlat": 40.7140364, + "minlon": -73.9256364, + "maxlat": 40.7140797, + "maxlon": -73.9245596 + }, + "nodes": [ + 5330321649, + 12847161652, + 12847161630, + 10628566961 + ], + "geometry": [ + { "lat": 40.7140364, "lon": -73.9245596 }, + { "lat": 40.7140393, "lon": -73.9246308 }, + { "lat": 40.7140621, "lon": -73.9251979 }, + { "lat": 40.7140797, "lon": -73.9256364 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1140717166, + "bounds": { + "minlat": 40.7139782, + "minlon": -73.9263646, + "maxlat": 40.7141127, + "maxlon": -73.9263023 + }, + "nodes": [ + 42484146, + 1275778479 + ], + "geometry": [ + { "lat": 40.7139782, "lon": -73.9263023 }, + { "lat": 40.7141127, "lon": -73.9263646 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Gardner Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1140717167, + "bounds": { + "minlat": 40.7140797, + "minlon": -73.9263646, + "maxlat": 40.7141127, + "maxlon": -73.9256364 + }, + "nodes": [ + 10628566961, + 12847161645, + 5423609569, + 1275778479 + ], + "geometry": [ + { "lat": 40.7140797, "lon": -73.9256364 }, + { "lat": 40.7140844, "lon": -73.9257534 }, + { "lat": 40.7141043, "lon": -73.9262499 }, + { "lat": 40.7141127, "lon": -73.9263646 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left|none|none", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1141326820, + "bounds": { + "minlat": 40.7068025, + "minlon": -73.9557225, + "maxlat": 40.7076084, + "maxlon": -73.9555366 + }, + "nodes": [ + 42488270, + 9772859260, + 42478027, + 9772859262, + 42488272, + 9776829372, + 42488278 + ], + "geometry": [ + { "lat": 40.7068025, "lon": -73.9557225 }, + { "lat": 40.7069756, "lon": -73.9557047 }, + { "lat": 40.7070415, "lon": -73.9556990 }, + { "lat": 40.7071190, "lon": -73.9556915 }, + { "lat": 40.7074000, "lon": -73.9556690 }, + { "lat": 40.7075319, "lon": -73.9555852 }, + { "lat": 40.7076084, "lon": -73.9555366 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Keap Street", + "name:etymology:wikidata": "Q880686", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Keap", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 1141326821, + "bounds": { + "minlat": 40.7076084, + "minlon": -73.9555366, + "maxlat": 40.7095220, + "maxlon": -73.9543260 + }, + "nodes": [ + 42488278, + 9776829374, + 5481854395, + 12980289999, + 9768167605, + 42488286, + 9768167607, + 9768177527, + 42488291, + 9768177529, + 9755372039, + 42474153 + ], + "geometry": [ + { "lat": 40.7076084, "lon": -73.9555366 }, + { "lat": 40.7076778, "lon": -73.9554925 }, + { "lat": 40.7078820, "lon": -73.9553629 }, + { "lat": 40.7079574, "lon": -73.9553150 }, + { "lat": 40.7082141, "lon": -73.9551519 }, + { "lat": 40.7082660, "lon": -73.9551190 }, + { "lat": 40.7083286, "lon": -73.9550799 }, + { "lat": 40.7088492, "lon": -73.9547546 }, + { "lat": 40.7089128, "lon": -73.9547149 }, + { "lat": 40.7089623, "lon": -73.9546833 }, + { "lat": 40.7094690, "lon": -73.9543598 }, + { "lat": 40.7095220, "lon": -73.9543260 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Keap Street", + "name:etymology:wikidata": "Q880686", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Keap", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 1141842940, + "bounds": { + "minlat": 40.7007920, + "minlon": -73.9608545, + "maxlat": 40.7011251, + "maxlon": -73.9605000 + }, + "nodes": [ + 42504249, + 9772858923, + 9772858909, + 42482034 + ], + "geometry": [ + { "lat": 40.7011251, "lon": -73.9608545 }, + { "lat": 40.7010792, "lon": -73.9608057 }, + { "lat": 40.7008544, "lon": -73.9605664 }, + { "lat": 40.7007920, "lon": -73.9605000 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "name": "Wythe Avenue", + "name:etymology:wikidata": "Q1397321", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:name_base": "Wythe", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1142122290, + "bounds": { + "minlat": 40.8192962, + "minlon": -73.9296627, + "maxlat": 40.8194884, + "maxlon": -73.9291141 + }, + "nodes": [ + 10637286563, + 10637286570, + 10637286566, + 10637286564, + 10637286565 + ], + "geometry": [ + { "lat": 40.8193624, "lon": -73.9291141 }, + { "lat": 40.8194179, "lon": -73.9292995 }, + { "lat": 40.8194496, "lon": -73.9293894 }, + { "lat": 40.8194884, "lon": -73.9294936 }, + { "lat": 40.8192962, "lon": -73.9296627 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1142122291, + "bounds": { + "minlat": 40.8193141, + "minlon": -73.9294934, + "maxlat": 40.8194190, + "maxlon": -73.9294148 + }, + "nodes": [ + 10637286567, + 10637286568 + ], + "geometry": [ + { "lat": 40.8194190, "lon": -73.9294148 }, + { "lat": 40.8193141, "lon": -73.9294934 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1142122292, + "bounds": { + "minlat": 40.8192730, + "minlon": -73.9293917, + "maxlat": 40.8193817, + "maxlon": -73.9293234 + }, + "nodes": [ + 10637286571, + 10637286572 + ], + "geometry": [ + { "lat": 40.8193817, "lon": -73.9293234 }, + { "lat": 40.8192730, "lon": -73.9293917 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1142122293, + "bounds": { + "minlat": 40.8193817, + "minlon": -73.9293234, + "maxlat": 40.8194179, + "maxlon": -73.9292995 + }, + "nodes": [ + 10637286570, + 10637286571 + ], + "geometry": [ + { "lat": 40.8194179, "lon": -73.9292995 }, + { "lat": 40.8193817, "lon": -73.9293234 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1142122294, + "bounds": { + "minlat": 40.8191945, + "minlon": -73.9294403, + "maxlat": 40.8192730, + "maxlon": -73.9293917 + }, + "nodes": [ + 10637286572, + 10637286573 + ], + "geometry": [ + { "lat": 40.8192730, "lon": -73.9293917 }, + { "lat": 40.8191945, "lon": -73.9294403 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1142122295, + "bounds": { + "minlat": 40.8194190, + "minlon": -73.9294148, + "maxlat": 40.8194496, + "maxlon": -73.9293894 + }, + "nodes": [ + 10637286566, + 10637286567 + ], + "geometry": [ + { "lat": 40.8194496, "lon": -73.9293894 }, + { "lat": 40.8194190, "lon": -73.9294148 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1142122296, + "bounds": { + "minlat": 40.8192442, + "minlon": -73.9295483, + "maxlat": 40.8193141, + "maxlon": -73.9294934 + }, + "nodes": [ + 10637286568, + 10637286569 + ], + "geometry": [ + { "lat": 40.8193141, "lon": -73.9294934 }, + { "lat": 40.8192442, "lon": -73.9295483 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1143771004, + "bounds": { + "minlat": 40.7167395, + "minlon": -73.9943435, + "maxlat": 40.7170314, + "maxlon": -73.9937155 + }, + "nodes": [ + 10647611683, + 10647613318, + 10647611684, + 10647611685, + 10647611686, + 10647611687, + 10647611688, + 10647611689, + 10647611690, + 10647611691, + 10136611567, + 10647613319, + 10136611568, + 10647611692, + 10647611693, + 10647611694, + 10647611695, + 10647611696, + 10647611697, + 10647613320, + 1918039929, + 7132071137, + 10647611698, + 10647611699, + 10647611704, + 10647611700, + 10647613321, + 2567559150, + 2567559153, + 2567559155, + 2567559158, + 2567559161, + 2567559164, + 2567559165, + 2567559177, + 2567559172, + 2567559174, + 2567559171, + 2567559179, + 10647613322, + 10647547480, + 10647547481, + 10647613323, + 10647611701, + 10647611703, + 10647611702, + 10647611683 + ], + "geometry": [ + { "lat": 40.7170221, "lon": -73.9942288 }, + { "lat": 40.7170156, "lon": -73.9942047 }, + { "lat": 40.7170088, "lon": -73.9941795 }, + { "lat": 40.7169762, "lon": -73.9941801 }, + { "lat": 40.7169773, "lon": -73.9941349 }, + { "lat": 40.7169739, "lon": -73.9941037 }, + { "lat": 40.7169661, "lon": -73.9940708 }, + { "lat": 40.7169520, "lon": -73.9940278 }, + { "lat": 40.7169442, "lon": -73.9940322 }, + { "lat": 40.7169400, "lon": -73.9940211 }, + { "lat": 40.7169734, "lon": -73.9940019 }, + { "lat": 40.7169677, "lon": -73.9939784 }, + { "lat": 40.7169606, "lon": -73.9939490 }, + { "lat": 40.7169413, "lon": -73.9939584 }, + { "lat": 40.7169172, "lon": -73.9938726 }, + { "lat": 40.7169013, "lon": -73.9938790 }, + { "lat": 40.7168859, "lon": -73.9938458 }, + { "lat": 40.7168723, "lon": -73.9938293 }, + { "lat": 40.7169041, "lon": -73.9937930 }, + { "lat": 40.7168999, "lon": -73.9937849 }, + { "lat": 40.7168825, "lon": -73.9937515 }, + { "lat": 40.7168699, "lon": -73.9937267 }, + { "lat": 40.7168634, "lon": -73.9937155 }, + { "lat": 40.7168148, "lon": -73.9937354 }, + { "lat": 40.7167731, "lon": -73.9937727 }, + { "lat": 40.7167506, "lon": -73.9938410 }, + { "lat": 40.7167472, "lon": -73.9938645 }, + { "lat": 40.7167395, "lon": -73.9939187 }, + { "lat": 40.7167515, "lon": -73.9939577 }, + { "lat": 40.7167554, "lon": -73.9939556 }, + { "lat": 40.7167679, "lon": -73.9939965 }, + { "lat": 40.7167738, "lon": -73.9939933 }, + { "lat": 40.7167788, "lon": -73.9940097 }, + { "lat": 40.7167865, "lon": -73.9940056 }, + { "lat": 40.7168220, "lon": -73.9941213 }, + { "lat": 40.7168145, "lon": -73.9941253 }, + { "lat": 40.7168190, "lon": -73.9941400 }, + { "lat": 40.7168105, "lon": -73.9941444 }, + { "lat": 40.7168233, "lon": -73.9941863 }, + { "lat": 40.7168362, "lon": -73.9942160 }, + { "lat": 40.7168404, "lon": -73.9942258 }, + { "lat": 40.7168558, "lon": -73.9942852 }, + { "lat": 40.7168608, "lon": -73.9943004 }, + { "lat": 40.7168751, "lon": -73.9943435 }, + { "lat": 40.7169309, "lon": -73.9943140 }, + { "lat": 40.7170314, "lon": -73.9942609 }, + { "lat": 40.7170221, "lon": -73.9942288 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1143800343, + "bounds": { + "minlat": 40.8229708, + "minlon": -73.9132127, + "maxlat": 40.8232374, + "maxlon": -73.9130656 + }, + "nodes": [ + 10647741290, + 10647741292, + 10647741291 + ], + "geometry": [ + { "lat": 40.8232374, "lon": -73.9130656 }, + { "lat": 40.8231878, "lon": -73.9130930 }, + { "lat": 40.8229708, "lon": -73.9132127 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1144267526, + "bounds": { + "minlat": 40.8035998, + "minlon": -73.9138187, + "maxlat": 40.8042769, + "maxlon": -73.9123568 + }, + "nodes": [ + 471244598, + 12521912082, + 471244599, + 9156942283, + 9156942284 + ], + "geometry": [ + { "lat": 40.8035998, "lon": -73.9138187 }, + { "lat": 40.8040762, "lon": -73.9127595 }, + { "lat": 40.8041419, "lon": -73.9126218 }, + { "lat": 40.8042082, "lon": -73.9124863 }, + { "lat": 40.8042769, "lon": -73.9123568 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxspeed": "50 mph", + "name": "Bruckner Expressway", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "tiger:cfcc": "A11", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "I-278", + "tiger:name_type": "Expy", + "tiger:reviewed": "no", + "toll": "no", + "turn:lanes": "|merge_to_left" + } +}, +{ + "type": "way", + "id": 1144268432, + "bounds": { + "minlat": 40.7319680, + "minlon": -73.9902172, + "maxlat": 40.7327562, + "maxlon": -73.9900290 + }, + "nodes": [ + 42453104, + 8309479650, + 12179560530, + 8309479658, + 42446528 + ], + "geometry": [ + { "lat": 40.7319680, "lon": -73.9902172 }, + { "lat": 40.7320411, "lon": -73.9901993 }, + { "lat": 40.7326396, "lon": -73.9900482 }, + { "lat": 40.7326892, "lon": -73.9900386 }, + { "lat": 40.7327562, "lon": -73.9900290 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "4th Avenue", + "name:ru": "4-я Авеню", + "name_1": "4 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "none|none|right" + } +}, +{ + "type": "way", + "id": 1144676468, + "bounds": { + "minlat": 40.8207836, + "minlon": -74.0077096, + "maxlat": 40.8209676, + "maxlon": -74.0072530 + }, + "nodes": [ + 10654412831, + 10654412832, + 10654412833, + 13525555879, + 10654412834 + ], + "geometry": [ + { "lat": 40.8209278, "lon": -74.0072530 }, + { "lat": 40.8209676, "lon": -74.0074895 }, + { "lat": 40.8208870, "lon": -74.0076599 }, + { "lat": 40.8208656, "lon": -74.0076702 }, + { "lat": 40.8207836, "lon": -74.0077096 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1144676469, + "bounds": { + "minlat": 40.8211354, + "minlon": -74.0077826, + "maxlat": 40.8213388, + "maxlon": -74.0077557 + }, + "nodes": [ + 10654412835, + 10654412837, + 10654412836 + ], + "geometry": [ + { "lat": 40.8213388, "lon": -74.0077826 }, + { "lat": 40.8212796, "lon": -74.0077748 }, + { "lat": 40.8211354, "lon": -74.0077557 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1144676470, + "bounds": { + "minlat": 40.8212164, + "minlon": -74.0083234, + "maxlat": 40.8212980, + "maxlon": -74.0077748 + }, + "nodes": [ + 10654412837, + 10654412839, + 10654412838 + ], + "geometry": [ + { "lat": 40.8212796, "lon": -74.0077748 }, + { "lat": 40.8212980, "lon": -74.0078971 }, + { "lat": 40.8212164, "lon": -74.0083234 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1144676471, + "bounds": { + "minlat": 40.8207881, + "minlon": -74.0086631, + "maxlat": 40.8212203, + "maxlon": -74.0084850 + }, + "nodes": [ + 5837332136, + 10654412840, + 10654412841, + 10654412842 + ], + "geometry": [ + { "lat": 40.8207881, "lon": -74.0086109 }, + { "lat": 40.8211139, "lon": -74.0086631 }, + { "lat": 40.8211863, "lon": -74.0086457 }, + { "lat": 40.8212203, "lon": -74.0084850 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1144813644, + "bounds": { + "minlat": 40.7022490, + "minlon": -73.9928485, + "maxlat": 40.7022637, + "maxlon": -73.9928176 + }, + "nodes": [ + 4625676872, + 598054722 + ], + "geometry": [ + { "lat": 40.7022490, "lon": -73.9928176 }, + { "lat": 40.7022637, "lon": -73.9928485 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1145069303, + "bounds": { + "minlat": 40.7067120, + "minlon": -74.0023233, + "maxlat": 40.7072908, + "maxlon": -74.0013145 + }, + "nodes": [ + 3350498747, + 10311946241, + 11032958096, + 42433218 + ], + "geometry": [ + { "lat": 40.7067120, "lon": -74.0023233 }, + { "lat": 40.7067480, "lon": -74.0022604 }, + { "lat": 40.7072505, "lon": -74.0013831 }, + { "lat": 40.7072908, "lon": -74.0013145 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1145132804, + "bounds": { + "minlat": 40.7386742, + "minlon": -73.9393679, + "maxlat": 40.7387891, + "maxlon": -73.9385764 + }, + "nodes": [ + 10657721890, + 10657728505, + 10657721903, + 10657721893, + 10657721891, + 10657721892 + ], + "geometry": [ + { "lat": 40.7386742, "lon": -73.9385764 }, + { "lat": 40.7386833, "lon": -73.9386633 }, + { "lat": 40.7386866, "lon": -73.9386951 }, + { "lat": 40.7386930, "lon": -73.9387563 }, + { "lat": 40.7387236, "lon": -73.9390509 }, + { "lat": 40.7387891, "lon": -73.9393679 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1145132805, + "bounds": { + "minlat": 40.7386930, + "minlon": -73.9387563, + "maxlat": 40.7403109, + "maxlon": -73.9382544 + }, + "nodes": [ + 10657721900, + 10657721901, + 10657721904, + 10657721899, + 10657721898, + 10657721897, + 10657721896, + 10657721895, + 10657721894, + 10657721902, + 10657721893 + ], + "geometry": [ + { "lat": 40.7402934, "lon": -73.9382544 }, + { "lat": 40.7403041, "lon": -73.9383487 }, + { "lat": 40.7403067, "lon": -73.9383717 }, + { "lat": 40.7403109, "lon": -73.9384084 }, + { "lat": 40.7403047, "lon": -73.9384332 }, + { "lat": 40.7402956, "lon": -73.9384535 }, + { "lat": 40.7402859, "lon": -73.9384633 }, + { "lat": 40.7402705, "lon": -73.9384700 }, + { "lat": 40.7394181, "lon": -73.9386365 }, + { "lat": 40.7387568, "lon": -73.9387458 }, + { "lat": 40.7386930, "lon": -73.9387563 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1145454202, + "bounds": { + "minlat": 40.8499993, + "minlon": -73.9396343, + "maxlat": 40.8501945, + "maxlon": -73.9386521 + }, + "nodes": [ + 42428103, + 11595081882, + 9563821107, + 42427185 + ], + "geometry": [ + { "lat": 40.8501945, "lon": -73.9396343 }, + { "lat": 40.8501795, "lon": -73.9395601 }, + { "lat": 40.8500201, "lon": -73.9387566 }, + { "lat": 40.8499993, "lon": -73.9386521 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 180th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "180th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1146051565, + "bounds": { + "minlat": 40.8453757, + "minlon": -73.9405244, + "maxlat": 40.8465308, + "maxlon": -73.9400565 + }, + "nodes": [ + 42427159, + 7604384328, + 7604384339, + 42427156, + 7604384341, + 7604384352, + 42427152 + ], + "geometry": [ + { "lat": 40.8465308, "lon": -73.9400565 }, + { "lat": 40.8464728, "lon": -73.9400798 }, + { "lat": 40.8461081, "lon": -73.9402225 }, + { "lat": 40.8460446, "lon": -73.9402488 }, + { "lat": 40.8459850, "lon": -73.9402743 }, + { "lat": 40.8454365, "lon": -73.9404951 }, + { "lat": 40.8453757, "lon": -73.9405244 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 1146402185, + "bounds": { + "minlat": 40.8372351, + "minlon": -73.9388597, + "maxlat": 40.8375475, + "maxlon": -73.9386211 + }, + "nodes": [ + 42442697, + 9569882309, + 10668997778 + ], + "geometry": [ + { "lat": 40.8372351, "lon": -73.9388597 }, + { "lat": 40.8372984, "lon": -73.9388104 }, + { "lat": 40.8375475, "lon": -73.9386211 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402186, + "bounds": { + "minlat": 40.8375475, + "minlon": -73.9386211, + "maxlat": 40.8378835, + "maxlon": -73.9383539 + }, + "nodes": [ + 10668997778, + 9569882314, + 42437319 + ], + "geometry": [ + { "lat": 40.8375475, "lon": -73.9386211 }, + { "lat": 40.8378205, "lon": -73.9384030 }, + { "lat": 40.8378835, "lon": -73.9383539 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402187, + "bounds": { + "minlat": 40.8378835, + "minlon": -73.9383539, + "maxlat": 40.8382951, + "maxlon": -73.9380516 + }, + "nodes": [ + 42437319, + 9569882313, + 13703112125, + 10668997779 + ], + "geometry": [ + { "lat": 40.8378835, "lon": -73.9383539 }, + { "lat": 40.8379968, "lon": -73.9382695 }, + { "lat": 40.8381226, "lon": -73.9381776 }, + { "lat": 40.8382951, "lon": -73.9380516 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402188, + "bounds": { + "minlat": 40.8382951, + "minlon": -73.9380516, + "maxlat": 40.8384866, + "maxlon": -73.9379120 + }, + "nodes": [ + 10668997779, + 42442702 + ], + "geometry": [ + { "lat": 40.8382951, "lon": -73.9380516 }, + { "lat": 40.8384866, "lon": -73.9379120 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402189, + "bounds": { + "minlat": 40.8384866, + "minlon": -73.9379120, + "maxlat": 40.8386821, + "maxlon": -73.9377692 + }, + "nodes": [ + 42442702, + 11292676873, + 42442703 + ], + "geometry": [ + { "lat": 40.8384866, "lon": -73.9379120 }, + { "lat": 40.8386059, "lon": -73.9378249 }, + { "lat": 40.8386821, "lon": -73.9377692 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402190, + "bounds": { + "minlat": 40.8387106, + "minlon": -73.9377496, + "maxlat": 40.8389856, + "maxlon": -73.9375560 + }, + "nodes": [ + 13319854057, + 6836035776, + 10668997780 + ], + "geometry": [ + { "lat": 40.8387106, "lon": -73.9377496 }, + { "lat": 40.8387374, "lon": -73.9377304 }, + { "lat": 40.8389856, "lon": -73.9375560 } + ], + "tags": { + "alt_name": "Normandía Maldonado Way", + "cycleway": "lane", + "description": "This honorary street name memorializes Normandía Maldonado.", + "hgv": "local", + "highway": "secondary", + "historic": "memorial", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "through|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402191, + "bounds": { + "minlat": 40.8389856, + "minlon": -73.9375560, + "maxlat": 40.8392799, + "maxlon": -73.9373492 + }, + "nodes": [ + 10668997780, + 13716305951, + 13716305941, + 6836035775, + 13319854056 + ], + "geometry": [ + { "lat": 40.8389856, "lon": -73.9375560 }, + { "lat": 40.8390179, "lon": -73.9375333 }, + { "lat": 40.8392219, "lon": -73.9373899 }, + { "lat": 40.8392668, "lon": -73.9373584 }, + { "lat": 40.8392799, "lon": -73.9373492 } + ], + "tags": { + "alt_name": "Normandía Maldonado Way", + "cycleway": "lane", + "description": "This honorary street name memorializes Normandía Maldonado.", + "hgv": "local", + "highway": "secondary", + "historic": "memorial", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402192, + "bounds": { + "minlat": 40.8392951, + "minlon": -73.9373385, + "maxlat": 40.8394631, + "maxlon": -73.9372062 + }, + "nodes": [ + 2075592658, + 42432223 + ], + "geometry": [ + { "lat": 40.8392951, "lon": -73.9373385 }, + { "lat": 40.8394631, "lon": -73.9372062 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402193, + "bounds": { + "minlat": 40.8394631, + "minlon": -73.9372062, + "maxlat": 40.8398640, + "maxlon": -73.9369058 + }, + "nodes": [ + 42432223, + 6836035772, + 6836035780, + 42442710 + ], + "geometry": [ + { "lat": 40.8394631, "lon": -73.9372062 }, + { "lat": 40.8395081, "lon": -73.9371724 }, + { "lat": 40.8397959, "lon": -73.9369565 }, + { "lat": 40.8398640, "lon": -73.9369058 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402194, + "bounds": { + "minlat": 40.8398640, + "minlon": -73.9369058, + "maxlat": 40.8401876, + "maxlon": -73.9366673 + }, + "nodes": [ + 42442710, + 6836035778, + 7675910661, + 10668997781 + ], + "geometry": [ + { "lat": 40.8398640, "lon": -73.9369058 }, + { "lat": 40.8399436, "lon": -73.9368477 }, + { "lat": 40.8400329, "lon": -73.9367824 }, + { "lat": 40.8401876, "lon": -73.9366673 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402195, + "bounds": { + "minlat": 40.8401876, + "minlon": -73.9366673, + "maxlat": 40.8404789, + "maxlon": -73.9364566 + }, + "nodes": [ + 10668997781, + 6836035782, + 42442717 + ], + "geometry": [ + { "lat": 40.8401876, "lon": -73.9366673 }, + { "lat": 40.8404201, "lon": -73.9364997 }, + { "lat": 40.8404789, "lon": -73.9364566 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402196, + "bounds": { + "minlat": 40.8404789, + "minlon": -73.9364566, + "maxlat": 40.8406816, + "maxlon": -73.9363085 + }, + "nodes": [ + 42442717, + 6836035783, + 10668997782 + ], + "geometry": [ + { "lat": 40.8404789, "lon": -73.9364566 }, + { "lat": 40.8405308, "lon": -73.9364187 }, + { "lat": 40.8406816, "lon": -73.9363085 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402197, + "bounds": { + "minlat": 40.8406816, + "minlon": -73.9363085, + "maxlat": 40.8410549, + "maxlon": -73.9360373 + }, + "nodes": [ + 10668997782, + 6836035767, + 42435198 + ], + "geometry": [ + { "lat": 40.8406816, "lon": -73.9363085 }, + { "lat": 40.8409941, "lon": -73.9360802 }, + { "lat": 40.8410549, "lon": -73.9360373 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402198, + "bounds": { + "minlat": 40.8408049, + "minlon": -73.9360373, + "maxlat": 40.8410549, + "maxlon": -73.9354698 + }, + "nodes": [ + 42435198, + 2499802975, + 2499802977, + 9908577523, + 765367023 + ], + "geometry": [ + { "lat": 40.8410549, "lon": -73.9360373 }, + { "lat": 40.8410150, "lon": -73.9359301 }, + { "lat": 40.8408519, "lon": -73.9355421 }, + { "lat": 40.8408332, "lon": -73.9355065 }, + { "lat": 40.8408049, "lon": -73.9354698 } + ], + "tags": { + "bicycle": "use_sidepath", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 170th Street", + "name_1": "West 170 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "170th", + "tiger:name_base_1": "170", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1146402199, + "bounds": { + "minlat": 40.8410549, + "minlon": -73.9360373, + "maxlat": 40.8413754, + "maxlon": -73.9358031 + }, + "nodes": [ + 42435198, + 9908577534, + 6836035765, + 10668997783 + ], + "geometry": [ + { "lat": 40.8410549, "lon": -73.9360373 }, + { "lat": 40.8410933, "lon": -73.9360087 }, + { "lat": 40.8411356, "lon": -73.9359771 }, + { "lat": 40.8413754, "lon": -73.9358031 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402200, + "bounds": { + "minlat": 40.8413754, + "minlon": -73.9358031, + "maxlat": 40.8415827, + "maxlon": -73.9356526 + }, + "nodes": [ + 10668997783, + 42439783 + ], + "geometry": [ + { "lat": 40.8413754, "lon": -73.9358031 }, + { "lat": 40.8415827, "lon": -73.9356526 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402201, + "bounds": { + "minlat": 40.8415827, + "minlon": -73.9356526, + "maxlat": 40.8417005, + "maxlon": -73.9355668 + }, + "nodes": [ + 42439783, + 6836035763, + 42434989 + ], + "geometry": [ + { "lat": 40.8415827, "lon": -73.9356526 }, + { "lat": 40.8416505, "lon": -73.9356033 }, + { "lat": 40.8417005, "lon": -73.9355668 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402202, + "bounds": { + "minlat": 40.8417005, + "minlon": -73.9355668, + "maxlat": 40.8419499, + "maxlon": -73.9353835 + }, + "nodes": [ + 42434989, + 6836035762, + 10668997784 + ], + "geometry": [ + { "lat": 40.8417005, "lon": -73.9355668 }, + { "lat": 40.8417518, "lon": -73.9355286 }, + { "lat": 40.8419499, "lon": -73.9353835 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402203, + "bounds": { + "minlat": 40.8419499, + "minlon": -73.9353835, + "maxlat": 40.8423037, + "maxlon": -73.9351235 + }, + "nodes": [ + 10668997784, + 6836035760, + 42442722 + ], + "geometry": [ + { "lat": 40.8419499, "lon": -73.9353835 }, + { "lat": 40.8422496, "lon": -73.9351633 }, + { "lat": 40.8423037, "lon": -73.9351235 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402204, + "bounds": { + "minlat": 40.8426539, + "minlon": -73.9348771, + "maxlat": 40.8429382, + "maxlon": -73.9346816 + }, + "nodes": [ + 10668997785, + 6836035758, + 42429452 + ], + "geometry": [ + { "lat": 40.8426539, "lon": -73.9348771 }, + { "lat": 40.8428748, "lon": -73.9347252 }, + { "lat": 40.8429382, "lon": -73.9346816 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146402205, + "bounds": { + "minlat": 40.8423037, + "minlon": -73.9351235, + "maxlat": 40.8424347, + "maxlon": -73.9350278 + }, + "nodes": [ + 42442722, + 6836035761, + 765365632 + ], + "geometry": [ + { "lat": 40.8423037, "lon": -73.9351235 }, + { "lat": 40.8423474, "lon": -73.9350917 }, + { "lat": 40.8424347, "lon": -73.9350278 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1146603905, + "bounds": { + "minlat": 40.7555596, + "minlon": -73.9249444, + "maxlat": 40.7557222, + "maxlon": -73.9245927 + }, + "nodes": [ + 10670430927, + 10670430929, + 10670430928 + ], + "geometry": [ + { "lat": 40.7555596, "lon": -73.9245927 }, + { "lat": 40.7556932, "lon": -73.9248817 }, + { "lat": 40.7557222, "lon": -73.9249444 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1146603906, + "bounds": { + "minlat": 40.7554822, + "minlon": -73.9250122, + "maxlat": 40.7556389, + "maxlon": -73.9246616 + }, + "nodes": [ + 10670430930, + 10670430932, + 10670430931 + ], + "geometry": [ + { "lat": 40.7554822, "lon": -73.9246616 }, + { "lat": 40.7556107, "lon": -73.9249490 }, + { "lat": 40.7556389, "lon": -73.9250122 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1146603907, + "bounds": { + "minlat": 40.7573280, + "minlon": -73.9251853, + "maxlat": 40.7575200, + "maxlon": -73.9250535 + }, + "nodes": [ + 6943175628, + 6943175629, + 10670430934 + ], + "geometry": [ + { "lat": 40.7575200, "lon": -73.9250535 }, + { "lat": 40.7573553, "lon": -73.9251853 }, + { "lat": 40.7573280, "lon": -73.9251289 } + ], + "tags": { + "access": "private", + "highway": "service", + "motor_vehicle": "private", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1146603908, + "bounds": { + "minlat": 40.7571966, + "minlon": -73.9249397, + "maxlat": 40.7572389, + "maxlon": -73.9248502 + }, + "nodes": [ + 10670430933, + 6943175630, + 6943175631 + ], + "geometry": [ + { "lat": 40.7572389, "lon": -73.9249397 }, + { "lat": 40.7572274, "lon": -73.9249153 }, + { "lat": 40.7571966, "lon": -73.9248502 } + ], + "tags": { + "access": "private", + "highway": "service", + "motor_vehicle": "private", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1146748992, + "bounds": { + "minlat": 40.8484618, + "minlon": -73.9306162, + "maxlat": 40.8484968, + "maxlon": -73.9305375 + }, + "nodes": [ + 42442738, + 12179453666 + ], + "geometry": [ + { "lat": 40.8484968, "lon": -73.9306162 }, + { "lat": 40.8484618, "lon": -73.9305375 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "2", + "name": "Laurel Hill Terrace", + "name_1": "W 182 St", + "name_2": "McNally Plaza", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1147091261, + "bounds": { + "minlat": 40.7681080, + "minlon": -73.9840132, + "maxlat": 40.7682075, + "maxlon": -73.9839421 + }, + "nodes": [ + 10674102216, + 10674102217, + 10674102218 + ], + "geometry": [ + { "lat": 40.7682075, "lon": -73.9839421 }, + { "lat": 40.7681932, "lon": -73.9839521 }, + { "lat": 40.7681080, "lon": -73.9840132 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1147091262, + "bounds": { + "minlat": 40.7692283, + "minlon": -73.9832120, + "maxlat": 40.7693374, + "maxlon": -73.9831322 + }, + "nodes": [ + 10674102219, + 10674102220, + 10674102221 + ], + "geometry": [ + { "lat": 40.7693374, "lon": -73.9831322 }, + { "lat": 40.7692549, "lon": -73.9831923 }, + { "lat": 40.7692283, "lon": -73.9832120 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1147359092, + "bounds": { + "minlat": 40.8455678, + "minlon": -73.9676744, + "maxlat": 40.8457584, + "maxlon": -73.9675111 + }, + "nodes": [ + 10676268475, + 5449442084 + ], + "geometry": [ + { "lat": 40.8455678, "lon": -73.9676744 }, + { "lat": 40.8457584, "lon": -73.9675111 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1147774883, + "bounds": { + "minlat": 40.8717362, + "minlon": -74.0080072, + "maxlat": 40.8717723, + "maxlon": -74.0078398 + }, + "nodes": [ + 10679533933, + 567269898, + 12323099078, + 12323099083, + 4205863449 + ], + "geometry": [ + { "lat": 40.8717723, "lon": -74.0080072 }, + { "lat": 40.8717661, "lon": -74.0079761 }, + { "lat": 40.8717560, "lon": -74.0079302 }, + { "lat": 40.8717521, "lon": -74.0079121 }, + { "lat": 40.8717362, "lon": -74.0078398 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "4", + "maxspeed": "45 mph", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes": "left|||" + } +}, +{ + "type": "way", + "id": 1147774884, + "bounds": { + "minlat": 40.8717723, + "minlon": -74.0082208, + "maxlat": 40.8718115, + "maxlon": -74.0080072 + }, + "nodes": [ + 567269897, + 10940833275, + 10679533933 + ], + "geometry": [ + { "lat": 40.8718115, "lon": -74.0082208 }, + { "lat": 40.8717926, "lon": -74.0081113 }, + { "lat": 40.8717723, "lon": -74.0080072 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "bridge": "yes", + "cycleway:right": "no", + "highway": "primary", + "lanes": "4", + "layer": "1", + "maxspeed": "45 mph", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666", + "turn:lanes": "left|||" + } +}, +{ + "type": "way", + "id": 1147774885, + "bounds": { + "minlat": 40.8719751, + "minlon": -74.0079382, + "maxlat": 40.8719937, + "maxlon": -74.0078448 + }, + "nodes": [ + 103247038, + 10679533934 + ], + "geometry": [ + { "lat": 40.8719751, "lon": -74.0078448 }, + { "lat": 40.8719937, "lon": -74.0079382 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 1147774886, + "bounds": { + "minlat": 40.8719937, + "minlon": -74.0081567, + "maxlat": 40.8720307, + "maxlon": -74.0079382 + }, + "nodes": [ + 10679533934, + 10940833228, + 10940833229, + 103247042 + ], + "geometry": [ + { "lat": 40.8719937, "lon": -74.0079382 }, + { "lat": 40.8720045, "lon": -74.0079938 }, + { "lat": 40.8720218, "lon": -74.0080990 }, + { "lat": 40.8720307, "lon": -74.0081567 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "bridge": "yes", + "cycleway:right": "no", + "highway": "primary", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 1147801231, + "bounds": { + "minlat": 40.7257839, + "minlon": -73.9907150, + "maxlat": 40.7259058, + "maxlon": -73.9906308 + }, + "nodes": [ + 10679724538, + 10679724540, + 10679724539 + ], + "geometry": [ + { "lat": 40.7257839, "lon": -73.9907150 }, + { "lat": 40.7258459, "lon": -73.9906726 }, + { "lat": 40.7259058, "lon": -73.9906308 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1147842863, + "bounds": { + "minlat": 40.7953901, + "minlon": -73.9448167, + "maxlat": 40.7957119, + "maxlon": -73.9445686 + }, + "nodes": [ + 10680078410, + 10680078412, + 10680078411 + ], + "geometry": [ + { "lat": 40.7957119, "lon": -73.9445686 }, + { "lat": 40.7956468, "lon": -73.9446167 }, + { "lat": 40.7953901, "lon": -73.9448167 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1147907300, + "bounds": { + "minlat": 40.7205076, + "minlon": -73.9978879, + "maxlat": 40.7208346, + "maxlon": -73.9976388 + }, + "nodes": [ + 10680357589, + 12187436358, + 12187436360, + 42427327 + ], + "geometry": [ + { "lat": 40.7205076, "lon": -73.9978879 }, + { "lat": 40.7207165, "lon": -73.9977073 }, + { "lat": 40.7207629, "lon": -73.9976714 }, + { "lat": 40.7208346, "lon": -73.9976388 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|none", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1148134635, + "bounds": { + "minlat": 40.7051298, + "minlon": -73.9128653, + "maxlat": 40.7052847, + "maxlon": -73.9126007 + }, + "nodes": [ + 10682504693, + 10682504691 + ], + "geometry": [ + { "lat": 40.7051298, "lon": -73.9126007 }, + { "lat": 40.7052847, "lon": -73.9128653 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1148134636, + "bounds": { + "minlat": 40.7050788, + "minlon": -73.9126007, + "maxlat": 40.7051298, + "maxlon": -73.9125137 + }, + "nodes": [ + 10682504690, + 10682504692, + 10682504693 + ], + "geometry": [ + { "lat": 40.7050788, "lon": -73.9125137 }, + { "lat": 40.7051165, "lon": -73.9125781 }, + { "lat": 40.7051298, "lon": -73.9126007 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1148342085, + "bounds": { + "minlat": 40.7158199, + "minlon": -73.9428900, + "maxlat": 40.7158418, + "maxlon": -73.9426319 + }, + "nodes": [ + 10684276023, + 10684276025, + 10684276024 + ], + "geometry": [ + { "lat": 40.7158199, "lon": -73.9428900 }, + { "lat": 40.7158267, "lon": -73.9428099 }, + { "lat": 40.7158418, "lon": -73.9426319 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1148384468, + "bounds": { + "minlat": 40.7362836, + "minlon": -73.9585196, + "maxlat": 40.7363206, + "maxlon": -73.9580962 + }, + "nodes": [ + 42509159, + 4593135584 + ], + "geometry": [ + { "lat": 40.7362836, "lon": -73.9585196 }, + { "lat": 40.7363206, "lon": -73.9580962 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clay Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Clay", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1148593539, + "bounds": { + "minlat": 40.7570743, + "minlon": -73.9932752, + "maxlat": 40.7578487, + "maxlon": -73.9914548 + }, + "nodes": [ + 593977712, + 9201440708 + ], + "geometry": [ + { "lat": 40.7578487, "lon": -73.9932752 }, + { "lat": 40.7570743, "lon": -73.9914548 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "level": "-2", + "note": "buses only", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1148593540, + "bounds": { + "minlat": 40.7567054, + "minlon": -73.9914548, + "maxlat": 40.7574657, + "maxlon": -73.9903128 + }, + "nodes": [ + 9201440708, + 9535571862, + 9201440707, + 9201440706, + 9201440705 + ], + "geometry": [ + { "lat": 40.7570743, "lon": -73.9914548 }, + { "lat": 40.7573401, "lon": -73.9912528 }, + { "lat": 40.7574657, "lon": -73.9911574 }, + { "lat": 40.7570976, "lon": -73.9903128 }, + { "lat": 40.7567054, "lon": -73.9906107 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "layer": "-2", + "note": "buses only", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1148593541, + "bounds": { + "minlat": 40.7574909, + "minlon": -73.9930950, + "maxlat": 40.7575515, + "maxlon": -73.9929737 + }, + "nodes": [ + 10686429933, + 477284549 + ], + "geometry": [ + { "lat": 40.7574909, "lon": -73.9929737 }, + { "lat": 40.7575515, "lon": -73.9930950 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "layer": "3", + "note": "buses only", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1148593542, + "bounds": { + "minlat": 40.7561894, + "minlon": -73.9930759, + "maxlat": 40.7571384, + "maxlon": -73.9906324 + }, + "nodes": [ + 10686429935, + 10686429936, + 10686429932, + 10686429941 + ], + "geometry": [ + { "lat": 40.7571384, "lon": -73.9930759 }, + { "lat": 40.7561894, "lon": -73.9908533 }, + { "lat": 40.7564178, "lon": -73.9906972 }, + { "lat": 40.7565044, "lon": -73.9906324 } + ], + "tags": { + "highway": "service", + "layer": "3", + "level": "4", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1148593544, + "bounds": { + "minlat": 40.7565044, + "minlon": -73.9906324, + "maxlat": 40.7567054, + "maxlon": -73.9906107 + }, + "nodes": [ + 10686429941, + 9201440705 + ], + "geometry": [ + { "lat": 40.7565044, "lon": -73.9906324 }, + { "lat": 40.7567054, "lon": -73.9906107 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "layer": "-2", + "note": "buses only", + "oneway": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1148593545, + "bounds": { + "minlat": 40.7563044, + "minlon": -73.9931589, + "maxlat": 40.7574875, + "maxlon": -73.9908095 + }, + "nodes": [ + 477284535, + 10686429948, + 10686429949, + 10686429950, + 10686429951, + 10686429952, + 10686429953, + 10686429954, + 477284535 + ], + "geometry": [ + { "lat": 40.7574639, "lon": -73.9931589 }, + { "lat": 40.7573831, "lon": -73.9930847 }, + { "lat": 40.7572977, "lon": -73.9931360 }, + { "lat": 40.7571493, "lon": -73.9930406 }, + { "lat": 40.7563044, "lon": -73.9910256 }, + { "lat": 40.7566043, "lon": -73.9908095 }, + { "lat": 40.7574875, "lon": -73.9928693 }, + { "lat": 40.7574640, "lon": -73.9930137 }, + { "lat": 40.7574639, "lon": -73.9931589 } + ], + "tags": { + "highway": "service", + "layer": "4", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1148607157, + "bounds": { + "minlat": 40.7113614, + "minlon": -73.9196223, + "maxlat": 40.7117436, + "maxlon": -73.9189675 + }, + "nodes": [ + 551614627, + 9744131350, + 10686537782, + 10686537783 + ], + "geometry": [ + { "lat": 40.7117436, "lon": -73.9196223 }, + { "lat": 40.7116959, "lon": -73.9195405 }, + { "lat": 40.7116845, "lon": -73.9195209 }, + { "lat": 40.7113614, "lon": -73.9189675 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1148680952, + "bounds": { + "minlat": 40.7177386, + "minlon": -74.0030094, + "maxlat": 40.7178962, + "maxlon": -74.0027441 + }, + "nodes": [ + 10687122862, + 10687122858, + 10687122857, + 10687122859, + 10687122872, + 12479654311, + 10687122867, + 10687122866, + 10687122865, + 10687122864, + 10687122873, + 10687122878, + 2563930612, + 2563930585, + 2563930567, + 10687122874, + 10687122849, + 10687122875, + 12479654341, + 10687122854, + 10687122856, + 10687122862 + ], + "geometry": [ + { "lat": 40.7178048, "lon": -74.0027906 }, + { "lat": 40.7178211, "lon": -74.0028243 }, + { "lat": 40.7178156, "lon": -74.0028384 }, + { "lat": 40.7178417, "lon": -74.0028927 }, + { "lat": 40.7178537, "lon": -74.0028920 }, + { "lat": 40.7178652, "lon": -74.0029158 }, + { "lat": 40.7178766, "lon": -74.0029395 }, + { "lat": 40.7178735, "lon": -74.0029474 }, + { "lat": 40.7178771, "lon": -74.0029549 }, + { "lat": 40.7178838, "lon": -74.0029545 }, + { "lat": 40.7178962, "lon": -74.0029802 }, + { "lat": 40.7178674, "lon": -74.0030034 }, + { "lat": 40.7178602, "lon": -74.0030094 }, + { "lat": 40.7177779, "lon": -74.0028388 }, + { "lat": 40.7177603, "lon": -74.0028022 }, + { "lat": 40.7177386, "lon": -74.0027572 }, + { "lat": 40.7177458, "lon": -74.0027511 }, + { "lat": 40.7177531, "lon": -74.0027450 }, + { "lat": 40.7177701, "lon": -74.0027441 }, + { "lat": 40.7177766, "lon": -74.0027575 }, + { "lat": 40.7177886, "lon": -74.0027568 }, + { "lat": 40.7178048, "lon": -74.0027906 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1148680954, + "bounds": { + "minlat": 40.7176905, + "minlon": -74.0027343, + "maxlat": 40.7177721, + "maxlon": -74.0026191 + }, + "nodes": [ + 10687122845, + 10687122843, + 10687122848, + 10687122847, + 2563930553, + 10189477575, + 10687122850, + 10687122851, + 10687122852, + 10687122845 + ], + "geometry": [ + { "lat": 40.7177645, "lon": -74.0026813 }, + { "lat": 40.7177345, "lon": -74.0026191 }, + { "lat": 40.7177050, "lon": -74.0026208 }, + { "lat": 40.7176905, "lon": -74.0026574 }, + { "lat": 40.7177276, "lon": -74.0027343 }, + { "lat": 40.7177348, "lon": -74.0027282 }, + { "lat": 40.7177420, "lon": -74.0027222 }, + { "lat": 40.7177515, "lon": -74.0026981 }, + { "lat": 40.7177721, "lon": -74.0026970 }, + { "lat": 40.7177645, "lon": -74.0026813 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1148802149, + "bounds": { + "minlat": 40.8254398, + "minlon": -73.9967412, + "maxlat": 40.8255366, + "maxlon": -73.9965334 + }, + "nodes": [ + 10688080982, + 10688080983 + ], + "geometry": [ + { "lat": 40.8255366, "lon": -73.9967412 }, + { "lat": 40.8254398, "lon": -73.9965334 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1148802150, + "bounds": { + "minlat": 40.8251038, + "minlon": -73.9966990, + "maxlat": 40.8254398, + "maxlon": -73.9964314 + }, + "nodes": [ + 10688080983, + 10688080984, + 10688080997, + 10688080985, + 10688080986, + 10688080987, + 10688080994 + ], + "geometry": [ + { "lat": 40.8254398, "lon": -73.9965334 }, + { "lat": 40.8253932, "lon": -73.9964446 }, + { "lat": 40.8253640, "lon": -73.9964314 }, + { "lat": 40.8253340, "lon": -73.9964387 }, + { "lat": 40.8251146, "lon": -73.9965768 }, + { "lat": 40.8251038, "lon": -73.9966334 }, + { "lat": 40.8251318, "lon": -73.9966990 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1148802151, + "bounds": { + "minlat": 40.8251966, + "minlon": -73.9968459, + "maxlat": 40.8254398, + "maxlon": -73.9965334 + }, + "nodes": [ + 10688080983, + 10688080989, + 10688080990, + 10688080991, + 10688080988 + ], + "geometry": [ + { "lat": 40.8254398, "lon": -73.9965334 }, + { "lat": 40.8253904, "lon": -73.9965560 }, + { "lat": 40.8252142, "lon": -73.9966871 }, + { "lat": 40.8251966, "lon": -73.9967751 }, + { "lat": 40.8251979, "lon": -73.9968459 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1148802152, + "bounds": { + "minlat": 40.8251979, + "minlon": -73.9969300, + "maxlat": 40.8252383, + "maxlon": -73.9968459 + }, + "nodes": [ + 10688080988, + 10688080992 + ], + "geometry": [ + { "lat": 40.8251979, "lon": -73.9968459 }, + { "lat": 40.8252383, "lon": -73.9969300 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1148802153, + "bounds": { + "minlat": 40.8251613, + "minlon": -73.9968459, + "maxlat": 40.8251979, + "maxlon": -73.9967683 + }, + "nodes": [ + 10688080993, + 10688080988 + ], + "geometry": [ + { "lat": 40.8251613, "lon": -73.9967683 }, + { "lat": 40.8251979, "lon": -73.9968459 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1148802154, + "bounds": { + "minlat": 40.8254364, + "minlon": -73.9966681, + "maxlat": 40.8256559, + "maxlon": -73.9963008 + }, + "nodes": [ + 10688080995, + 10688080996 + ], + "geometry": [ + { "lat": 40.8256559, "lon": -73.9966681 }, + { "lat": 40.8254364, "lon": -73.9963008 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1148802155, + "bounds": { + "minlat": 40.8251318, + "minlon": -73.9967683, + "maxlat": 40.8251613, + "maxlon": -73.9966990 + }, + "nodes": [ + 10688080994, + 10688080993 + ], + "geometry": [ + { "lat": 40.8251318, "lon": -73.9966990 }, + { "lat": 40.8251613, "lon": -73.9967683 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1148931681, + "bounds": { + "minlat": 40.7081076, + "minlon": -74.0108604, + "maxlat": 40.7088206, + "maxlon": -74.0098380 + }, + "nodes": [ + 42434410, + 11350133552, + 11350133553, + 11350133554, + 11350133551, + 3381640178, + 5083818847, + 42428374 + ], + "geometry": [ + { "lat": 40.7081076, "lon": -74.0098380 }, + { "lat": 40.7081254, "lon": -74.0098419 }, + { "lat": 40.7081382, "lon": -74.0098476 }, + { "lat": 40.7081498, "lon": -74.0098589 }, + { "lat": 40.7081597, "lon": -74.0098752 }, + { "lat": 40.7087105, "lon": -74.0107242 }, + { "lat": 40.7087402, "lon": -74.0107682 }, + { "lat": 40.7088206, "lon": -74.0108604 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cedar Street", + "name:etymology:wikidata": "Q128550", + "name:ko": "시더 스트리트", + "name:ru": "Сидар-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q13933858" + } +}, +{ + "type": "way", + "id": 1149014898, + "bounds": { + "minlat": 40.7088206, + "minlon": -74.0108604, + "maxlat": 40.7091731, + "maxlon": -74.0105706 + }, + "nodes": [ + 42422042, + 5083818851, + 5083818846, + 42428374 + ], + "geometry": [ + { "lat": 40.7091731, "lon": -74.0105706 }, + { "lat": 40.7091033, "lon": -74.0106280 }, + { "lat": 40.7088672, "lon": -74.0108222 }, + { "lat": 40.7088206, "lon": -74.0108604 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|designated", + "busway:right": "lane", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1149017059, + "bounds": { + "minlat": 40.7131203, + "minlon": -74.0093483, + "maxlat": 40.7132501, + "maxlon": -74.0092488 + }, + "nodes": [ + 10689662209, + 8279851450, + 42430004 + ], + "geometry": [ + { "lat": 40.7131203, "lon": -74.0093483 }, + { "lat": 40.7131863, "lon": -74.0092984 }, + { "lat": 40.7132501, "lon": -74.0092488 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:both": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1149017114, + "bounds": { + "minlat": 40.7136354, + "minlon": -74.0089506, + "maxlat": 40.7137935, + "maxlon": -74.0088231 + }, + "nodes": [ + 10689654121, + 8279851484, + 42429562 + ], + "geometry": [ + { "lat": 40.7136354, "lon": -74.0089506 }, + { "lat": 40.7137390, "lon": -74.0088674 }, + { "lat": 40.7137935, "lon": -74.0088231 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1149017144, + "bounds": { + "minlat": 40.7133659, + "minlon": -74.0091603, + "maxlat": 40.7134683, + "maxlon": -74.0090814 + }, + "nodes": [ + 10689664920, + 10689668792 + ], + "geometry": [ + { "lat": 40.7133659, "lon": -74.0091603 }, + { "lat": 40.7134683, "lon": -74.0090814 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1149017145, + "bounds": { + "minlat": 40.7134683, + "minlon": -74.0090814, + "maxlat": 40.7136354, + "maxlon": -74.0089506 + }, + "nodes": [ + 10689668792, + 10689654121 + ], + "geometry": [ + { "lat": 40.7134683, "lon": -74.0090814 }, + { "lat": 40.7136354, "lon": -74.0089506 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1149033373, + "bounds": { + "minlat": 40.7163934, + "minlon": -73.9378234, + "maxlat": 40.7165264, + "maxlon": -73.9377586 + }, + "nodes": [ + 10689791477, + 10689791479, + 10689791478 + ], + "geometry": [ + { "lat": 40.7165264, "lon": -73.9378234 }, + { "lat": 40.7164629, "lon": -73.9377923 }, + { "lat": 40.7163934, "lon": -73.9377586 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1149033374, + "bounds": { + "minlat": 40.7164105, + "minlon": -73.9377564, + "maxlat": 40.7165437, + "maxlon": -73.9376935 + }, + "nodes": [ + 10689791480, + 10689791482, + 10689791481 + ], + "geometry": [ + { "lat": 40.7165437, "lon": -73.9377564 }, + { "lat": 40.7164800, "lon": -73.9377262 }, + { "lat": 40.7164105, "lon": -73.9376935 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1149033375, + "bounds": { + "minlat": 40.7164227, + "minlon": -73.9377107, + "maxlat": 40.7165524, + "maxlon": -73.9376471 + }, + "nodes": [ + 10689791483, + 10689791485, + 10689791484 + ], + "geometry": [ + { "lat": 40.7165524, "lon": -73.9377107 }, + { "lat": 40.7164914, "lon": -73.9376824 }, + { "lat": 40.7164227, "lon": -73.9376471 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1149033376, + "bounds": { + "minlat": 40.7164394, + "minlon": -73.9376475, + "maxlat": 40.7165680, + "maxlon": -73.9375833 + }, + "nodes": [ + 10689791486, + 10689791488, + 10689791487 + ], + "geometry": [ + { "lat": 40.7165680, "lon": -73.9376475 }, + { "lat": 40.7165083, "lon": -73.9376174 }, + { "lat": 40.7164394, "lon": -73.9375833 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1149034145, + "bounds": { + "minlat": 40.7186024, + "minlon": -73.9344754, + "maxlat": 40.7188401, + "maxlon": -73.9319832 + }, + "nodes": [ + 10689773930, + 10689773940, + 10689773931, + 10689773932, + 10689773933, + 10689773939, + 10689773934, + 10689773935, + 10689773936, + 10689773937, + 10689773938 + ], + "geometry": [ + { "lat": 40.7188401, "lon": -73.9319832 }, + { "lat": 40.7187496, "lon": -73.9323866 }, + { "lat": 40.7186024, "lon": -73.9330434 }, + { "lat": 40.7186317, "lon": -73.9331802 }, + { "lat": 40.7186889, "lon": -73.9332855 }, + { "lat": 40.7187208, "lon": -73.9335190 }, + { "lat": 40.7187314, "lon": -73.9335962 }, + { "lat": 40.7186875, "lon": -73.9339068 }, + { "lat": 40.7186463, "lon": -73.9341648 }, + { "lat": 40.7186343, "lon": -73.9342771 }, + { "lat": 40.7186822, "lon": -73.9344754 } + ], + "tags": { + "access": "no", + "highway": "track" + } +}, +{ + "type": "way", + "id": 1149034146, + "bounds": { + "minlat": 40.7187496, + "minlon": -73.9331461, + "maxlat": 40.7207919, + "maxlon": -73.9323866 + }, + "nodes": [ + 10689773940, + 10689773941, + 10689773942, + 10689773943, + 10689773944, + 10689773945, + 10689773946, + 10689773947, + 10689773948, + 8281116506 + ], + "geometry": [ + { "lat": 40.7187496, "lon": -73.9323866 }, + { "lat": 40.7190132, "lon": -73.9324958 }, + { "lat": 40.7193043, "lon": -73.9326737 }, + { "lat": 40.7195724, "lon": -73.9328233 }, + { "lat": 40.7197502, "lon": -73.9329567 }, + { "lat": 40.7199907, "lon": -73.9330739 }, + { "lat": 40.7201978, "lon": -73.9331059 }, + { "lat": 40.7204414, "lon": -73.9331306 }, + { "lat": 40.7206006, "lon": -73.9331461 }, + { "lat": 40.7207919, "lon": -73.9330812 } + ], + "tags": { + "access": "no", + "highway": "track" + } +}, +{ + "type": "way", + "id": 1149034147, + "bounds": { + "minlat": 40.7201325, + "minlon": -73.9346272, + "maxlat": 40.7205021, + "maxlon": -73.9344521 + }, + "nodes": [ + 10689773951, + 10689773952 + ], + "geometry": [ + { "lat": 40.7205021, "lon": -73.9346272 }, + { "lat": 40.7201325, "lon": -73.9344521 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1149034792, + "bounds": { + "minlat": 40.7188960, + "minlon": -73.9250560, + "maxlat": 40.7197570, + "maxlon": -73.9246820 + }, + "nodes": [ + 10689800969, + 10689800970, + 10689800971, + 10689800972 + ], + "geometry": [ + { "lat": 40.7197570, "lon": -73.9248384 }, + { "lat": 40.7194552, "lon": -73.9246820 }, + { "lat": 40.7193388, "lon": -73.9246941 }, + { "lat": 40.7188960, "lon": -73.9250560 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1149178606, + "bounds": { + "minlat": 40.7612491, + "minlon": -73.9980383, + "maxlat": 40.7614359, + "maxlon": -73.9978497 + }, + "nodes": [ + 7280430895, + 9140954081 + ], + "geometry": [ + { "lat": 40.7614359, "lon": -73.9978497 }, + { "lat": 40.7612491, "lon": -73.9980383 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1149445652, + "bounds": { + "minlat": 40.7245932, + "minlon": -73.9365407, + "maxlat": 40.7247439, + "maxlon": -73.9362731 + }, + "nodes": [ + 8896031687, + 11839156687, + 10693278014, + 10693278015, + 10693278019, + 12122792835, + 10693278016, + 9765073774, + 9765073781, + 9765073780, + 9765073779, + 10693278017, + 9765073778, + 9765073777, + 9765073776, + 10693278018, + 9765073810, + 9765073807, + 8896031686, + 9765073802, + 9765073801, + 9765073800, + 8896031687 + ], + "geometry": [ + { "lat": 40.7246588, "lon": -73.9365258 }, + { "lat": 40.7246839, "lon": -73.9365363 }, + { "lat": 40.7246943, "lon": -73.9365407 }, + { "lat": 40.7247072, "lon": -73.9364852 }, + { "lat": 40.7247154, "lon": -73.9364889 }, + { "lat": 40.7247190, "lon": -73.9364908 }, + { "lat": 40.7247281, "lon": -73.9364948 }, + { "lat": 40.7247354, "lon": -73.9364660 }, + { "lat": 40.7247209, "lon": -73.9364514 }, + { "lat": 40.7247163, "lon": -73.9364199 }, + { "lat": 40.7247235, "lon": -73.9363995 }, + { "lat": 40.7247276, "lon": -73.9363764 }, + { "lat": 40.7247320, "lon": -73.9363515 }, + { "lat": 40.7247389, "lon": -73.9363286 }, + { "lat": 40.7247439, "lon": -73.9363151 }, + { "lat": 40.7247069, "lon": -73.9362982 }, + { "lat": 40.7246520, "lon": -73.9362731 }, + { "lat": 40.7246232, "lon": -73.9363808 }, + { "lat": 40.7246146, "lon": -73.9364118 }, + { "lat": 40.7246050, "lon": -73.9364469 }, + { "lat": 40.7245932, "lon": -73.9364918 }, + { "lat": 40.7246393, "lon": -73.9365162 }, + { "lat": 40.7246588, "lon": -73.9365258 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1149447978, + "bounds": { + "minlat": 40.7250410, + "minlon": -73.9347065, + "maxlat": 40.7255090, + "maxlon": -73.9332564 + }, + "nodes": [ + 3358914969, + 10693279461, + 10239541050, + 10693279410, + 10693279411, + 10693279412, + 10693279413, + 10693279414, + 10693279415, + 10693279416, + 10693279417, + 10693279418, + 10693279419, + 10693279420, + 10693279421, + 10693279422, + 10693279423, + 10693279424, + 10693279425, + 10693279426, + 10693279427, + 10693279428, + 10693279429, + 10693279430, + 10693279431, + 10693279460, + 3358914973, + 10693279433, + 10693279434, + 10693279435, + 10693279436, + 10693279437, + 10693279438, + 10693279439, + 10693279440, + 10693279441, + 10693279442, + 10693279443, + 10693279444, + 10693279445, + 10693279446, + 10693279447, + 10693279448, + 10693279449, + 10693279450, + 10693279451, + 10693279452, + 10693279453, + 10693279454, + 10693279455, + 10693279456, + 10693279457, + 10693279458, + 10693279459, + 3358914969 + ], + "geometry": [ + { "lat": 40.7251881, "lon": -73.9347065 }, + { "lat": 40.7251201, "lon": -73.9346741 }, + { "lat": 40.7250410, "lon": -73.9346365 }, + { "lat": 40.7250443, "lon": -73.9346235 }, + { "lat": 40.7250763, "lon": -73.9346243 }, + { "lat": 40.7251060, "lon": -73.9346037 }, + { "lat": 40.7251321, "lon": -73.9345653 }, + { "lat": 40.7251541, "lon": -73.9345172 }, + { "lat": 40.7251645, "lon": -73.9344695 }, + { "lat": 40.7251727, "lon": -73.9344198 }, + { "lat": 40.7251723, "lon": -73.9343667 }, + { "lat": 40.7251749, "lon": -73.9342316 }, + { "lat": 40.7251753, "lon": -73.9341814 }, + { "lat": 40.7252014, "lon": -73.9340767 }, + { "lat": 40.7252609, "lon": -73.9338504 }, + { "lat": 40.7252948, "lon": -73.9337241 }, + { "lat": 40.7253133, "lon": -73.9336969 }, + { "lat": 40.7253326, "lon": -73.9336703 }, + { "lat": 40.7253450, "lon": -73.9336080 }, + { "lat": 40.7253717, "lon": -73.9335401 }, + { "lat": 40.7253781, "lon": -73.9334977 }, + { "lat": 40.7253881, "lon": -73.9334307 }, + { "lat": 40.7253855, "lon": -73.9333743 }, + { "lat": 40.7253747, "lon": -73.9333466 }, + { "lat": 40.7253982, "lon": -73.9332564 }, + { "lat": 40.7254271, "lon": -73.9332703 }, + { "lat": 40.7255090, "lon": -73.9333135 }, + { "lat": 40.7254971, "lon": -73.9333167 }, + { "lat": 40.7254767, "lon": -73.9333300 }, + { "lat": 40.7254625, "lon": -73.9333581 }, + { "lat": 40.7254224, "lon": -73.9334964 }, + { "lat": 40.7254062, "lon": -73.9335484 }, + { "lat": 40.7253920, "lon": -73.9336078 }, + { "lat": 40.7253619, "lon": -73.9337110 }, + { "lat": 40.7253425, "lon": -73.9337721 }, + { "lat": 40.7253266, "lon": -73.9338297 }, + { "lat": 40.7252985, "lon": -73.9339090 }, + { "lat": 40.7252791, "lon": -73.9339790 }, + { "lat": 40.7252610, "lon": -73.9340383 }, + { "lat": 40.7252422, "lon": -73.9340908 }, + { "lat": 40.7252296, "lon": -73.9341548 }, + { "lat": 40.7252212, "lon": -73.9342206 }, + { "lat": 40.7252215, "lon": -73.9342743 }, + { "lat": 40.7252202, "lon": -73.9343460 }, + { "lat": 40.7252306, "lon": -73.9344348 }, + { "lat": 40.7252306, "lon": -73.9344634 }, + { "lat": 40.7252206, "lon": -73.9344971 }, + { "lat": 40.7252012, "lon": -73.9345163 }, + { "lat": 40.7251873, "lon": -73.9345500 }, + { "lat": 40.7251743, "lon": -73.9345837 }, + { "lat": 40.7251617, "lon": -73.9346289 }, + { "lat": 40.7251588, "lon": -73.9346580 }, + { "lat": 40.7251717, "lon": -73.9346699 }, + { "lat": 40.7251925, "lon": -73.9346850 }, + { "lat": 40.7251881, "lon": -73.9347065 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1149529108, + "bounds": { + "minlat": 40.7080464, + "minlon": -73.9469095, + "maxlat": 40.7080642, + "maxlon": -73.9467062 + }, + "nodes": [ + 10693921318, + 10693921320, + 10693921319 + ], + "geometry": [ + { "lat": 40.7080464, "lon": -73.9469095 }, + { "lat": 40.7080562, "lon": -73.9467973 }, + { "lat": 40.7080642, "lon": -73.9467062 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1149529112, + "bounds": { + "minlat": 40.7088960, + "minlon": -73.9471173, + "maxlat": 40.7089201, + "maxlon": -73.9468041 + }, + "nodes": [ + 10693921325, + 10693921327, + 10693921326 + ], + "geometry": [ + { "lat": 40.7088960, "lon": -73.9471173 }, + { "lat": 40.7089101, "lon": -73.9469332 }, + { "lat": 40.7089201, "lon": -73.9468041 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1149534344, + "bounds": { + "minlat": 40.7301556, + "minlon": -73.9262292, + "maxlat": 40.7304938, + "maxlon": -73.9258636 + }, + "nodes": [ + 5177091567, + 10693967634, + 10693967635 + ], + "geometry": [ + { "lat": 40.7304801, "lon": -73.9258636 }, + { "lat": 40.7304938, "lon": -73.9259160 }, + { "lat": 40.7301556, "lon": -73.9262292 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1149534347, + "bounds": { + "minlat": 40.7307657, + "minlon": -73.9254371, + "maxlat": 40.7308253, + "maxlon": -73.9252159 + }, + "nodes": [ + 10693967650, + 10693967649 + ], + "geometry": [ + { "lat": 40.7307657, "lon": -73.9252159 }, + { "lat": 40.7308253, "lon": -73.9254371 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1149691532, + "bounds": { + "minlat": 40.7179048, + "minlon": -74.0095136, + "maxlat": 40.7180806, + "maxlon": -74.0094744 + }, + "nodes": [ + 10695199954, + 8304498482, + 42437461, + 8304498476, + 10695199953 + ], + "geometry": [ + { "lat": 40.7179048, "lon": -74.0095136 }, + { "lat": 40.7179384, "lon": -74.0095065 }, + { "lat": 40.7179989, "lon": -74.0094928 }, + { "lat": 40.7180649, "lon": -74.0094781 }, + { "lat": 40.7180806, "lon": -74.0094744 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "name": "Staple Street", + "name:etymology:wikidata": "Q736427", + "name:ko": "스테이플 스트리트", + "oneway": "yes", + "service": "alley", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1149691533, + "bounds": { + "minlat": 40.7180806, + "minlon": -74.0094744, + "maxlat": 40.7186964, + "maxlon": -74.0093292 + }, + "nodes": [ + 10695199953, + 8304878680, + 8304498475, + 42437463 + ], + "geometry": [ + { "lat": 40.7180806, "lon": -74.0094744 }, + { "lat": 40.7185838, "lon": -74.0093555 }, + { "lat": 40.7186292, "lon": -74.0093448 }, + { "lat": 40.7186964, "lon": -74.0093292 } + ], + "tags": { + "highway": "service", + "maxspeed": "20 mph", + "name": "Staple Street", + "name:etymology:wikidata": "Q736427", + "name:ko": "스테이플 스트리트", + "oneway": "yes", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1149695048, + "bounds": { + "minlat": 40.7213666, + "minlon": -74.0046193, + "maxlat": 40.7223840, + "maxlon": -74.0037680 + }, + "nodes": [ + 42440829, + 2151385500, + 13360853067, + 8231935507, + 42452026 + ], + "geometry": [ + { "lat": 40.7213666, "lon": -74.0046193 }, + { "lat": 40.7214634, "lon": -74.0045427 }, + { "lat": 40.7217394, "lon": -74.0043107 }, + { "lat": 40.7223312, "lon": -74.0038131 }, + { "lat": 40.7223840, "lon": -74.0037680 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 1149701654, + "bounds": { + "minlat": 40.7302852, + "minlon": -73.9948888, + "maxlat": 40.7310680, + "maxlon": -73.9942321 + }, + "nodes": [ + 10695321443, + 8309478887, + 42433295, + 8309478885, + 12179562744 + ], + "geometry": [ + { "lat": 40.7302852, "lon": -73.9948888 }, + { "lat": 40.7303028, "lon": -73.9948743 }, + { "lat": 40.7303546, "lon": -73.9948305 }, + { "lat": 40.7304128, "lon": -73.9947856 }, + { "lat": 40.7310680, "lon": -73.9942321 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greene Street", + "name:etymology:wikidata": "Q366113", + "name:ko": "그린 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1149726969, + "bounds": { + "minlat": 40.7346272, + "minlon": -74.0004913, + "maxlat": 40.7346949, + "maxlon": -73.9999737 + }, + "nodes": [ + 10695513187, + 8307642051, + 42432194 + ], + "geometry": [ + { "lat": 40.7346272, "lon": -74.0004913 }, + { "lat": 40.7346867, "lon": -74.0000951 }, + { "lat": 40.7346949, "lon": -73.9999737 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 10th Street", + "name:ru": "Западная 10-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1149728034, + "bounds": { + "minlat": 40.7338470, + "minlon": -74.0013916, + "maxlat": 40.7344915, + "maxlon": -74.0012059 + }, + "nodes": [ + 42433264, + 8307642087, + 11987722725, + 4320028821, + 42433261 + ], + "geometry": [ + { "lat": 40.7344915, "lon": -74.0013916 }, + { "lat": 40.7344362, "lon": -74.0013755 }, + { "lat": 40.7339545, "lon": -74.0012369 }, + { "lat": 40.7339092, "lon": -74.0012239 }, + { "lat": 40.7338470, "lon": -74.0012059 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Waverly Place", + "name:etymology:wikidata": "Q678251", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4993391", + "wikipedia": "en:Waverly Place" + } +}, +{ + "type": "way", + "id": 1149728191, + "bounds": { + "minlat": 40.7337060, + "minlon": -74.0016130, + "maxlat": 40.7338470, + "maxlon": -74.0012059 + }, + "nodes": [ + 42433261, + 11987722728, + 42433286 + ], + "geometry": [ + { "lat": 40.7338470, "lon": -74.0012059 }, + { "lat": 40.7338227, "lon": -74.0012654 }, + { "lat": 40.7337060, "lon": -74.0016130 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grove Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1149822474, + "bounds": { + "minlat": 40.7569899, + "minlon": -73.9095267, + "maxlat": 40.7575774, + "maxlon": -73.9090656 + }, + "nodes": [ + 7660830666, + 10696448606, + 10696448605, + 10696419604 + ], + "geometry": [ + { "lat": 40.7575774, "lon": -73.9090656 }, + { "lat": 40.7575094, "lon": -73.9091412 }, + { "lat": 40.7570554, "lon": -73.9095039 }, + { "lat": 40.7569899, "lon": -73.9095267 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1149827341, + "bounds": { + "minlat": 40.8713944, + "minlon": -73.9566236, + "maxlat": 40.8717774, + "maxlon": -73.9563357 + }, + "nodes": [ + 8374419496, + 8374419509, + 8374419503, + 8374419504, + 8374419505, + 5724370211 + ], + "geometry": [ + { "lat": 40.8717774, "lon": -73.9566236 }, + { "lat": 40.8716352, "lon": -73.9565527 }, + { "lat": 40.8716121, "lon": -73.9565411 }, + { "lat": 40.8715145, "lon": -73.9565125 }, + { "lat": 40.8714508, "lon": -73.9564390 }, + { "lat": 40.8713944, "lon": -73.9563357 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1149827342, + "bounds": { + "minlat": 40.8717774, + "minlon": -73.9566236, + "maxlat": 40.8720416, + "maxlon": -73.9558608 + }, + "nodes": [ + 5724370210, + 8374419506, + 8374419493, + 8374419494, + 8374419495, + 8374419496 + ], + "geometry": [ + { "lat": 40.8718595, "lon": -73.9558608 }, + { "lat": 40.8719663, "lon": -73.9560633 }, + { "lat": 40.8720416, "lon": -73.9562061 }, + { "lat": 40.8720402, "lon": -73.9562473 }, + { "lat": 40.8719196, "lon": -73.9563871 }, + { "lat": 40.8717774, "lon": -73.9566236 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1149827395, + "bounds": { + "minlat": 40.8821418, + "minlon": -73.9547027, + "maxlat": 40.8823665, + "maxlon": -73.9544823 + }, + "nodes": [ + 10696506183, + 7115788422 + ], + "geometry": [ + { "lat": 40.8821418, "lon": -73.9547027 }, + { "lat": 40.8823665, "lon": -73.9544823 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1149862649, + "bounds": { + "minlat": 40.7678721, + "minlon": -74.0168020, + "maxlat": 40.7680994, + "maxlon": -74.0162943 + }, + "nodes": [ + 307870563, + 307870564 + ], + "geometry": [ + { "lat": 40.7678721, "lon": -74.0162943 }, + { "lat": 40.7680994, "lon": -74.0168020 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Cambridge Way", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1149862650, + "bounds": { + "minlat": 40.7686688, + "minlon": -74.0165855, + "maxlat": 40.7687548, + "maxlon": -74.0164101 + }, + "nodes": [ + 7357758959, + 3588875424 + ], + "geometry": [ + { "lat": 40.7687548, "lon": -74.0165855 }, + { "lat": 40.7686688, "lon": -74.0164101 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Oxford Landing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1150096007, + "bounds": { + "minlat": 40.7645297, + "minlon": -73.9950144, + "maxlat": 40.7648835, + "maxlon": -73.9946928 + }, + "nodes": [ + 10698841371, + 10698841372, + 10698841373, + 10698841374 + ], + "geometry": [ + { "lat": 40.7648567, "lon": -73.9950144 }, + { "lat": 40.7648835, "lon": -73.9949281 }, + { "lat": 40.7647900, "lon": -73.9946928 }, + { "lat": 40.7645297, "lon": -73.9948766 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1150096008, + "bounds": { + "minlat": 40.7649100, + "minlon": -73.9952687, + "maxlat": 40.7649679, + "maxlon": -73.9951333 + }, + "nodes": [ + 10698841369, + 10698841375, + 10698841370 + ], + "geometry": [ + { "lat": 40.7649679, "lon": -73.9952687 }, + { "lat": 40.7649209, "lon": -73.9951598 }, + { "lat": 40.7649100, "lon": -73.9951333 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1150096009, + "bounds": { + "minlat": 40.7648567, + "minlon": -73.9951333, + "maxlat": 40.7649100, + "maxlon": -73.9950144 + }, + "nodes": [ + 10698841370, + 10698841371 + ], + "geometry": [ + { "lat": 40.7649100, "lon": -73.9951333 }, + { "lat": 40.7648567, "lon": -73.9950144 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1150096010, + "bounds": { + "minlat": 40.7644118, + "minlon": -73.9950344, + "maxlat": 40.7645297, + "maxlon": -73.9948766 + }, + "nodes": [ + 10698841376, + 11299035043, + 10698841378, + 10698841377, + 10698841374 + ], + "geometry": [ + { "lat": 40.7644118, "lon": -73.9950344 }, + { "lat": 40.7644721, "lon": -73.9949879 }, + { "lat": 40.7644934, "lon": -73.9949715 }, + { "lat": 40.7645142, "lon": -73.9949555 }, + { "lat": 40.7645297, "lon": -73.9948766 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1150096011, + "bounds": { + "minlat": 40.7647900, + "minlon": -73.9947696, + "maxlat": 40.7650767, + "maxlon": -73.9946549 + }, + "nodes": [ + 10698841379, + 11299035044, + 10698841381, + 10698841380, + 10698841373 + ], + "geometry": [ + { "lat": 40.7650767, "lon": -73.9946549 }, + { "lat": 40.7650205, "lon": -73.9946961 }, + { "lat": 40.7649999, "lon": -73.9947112 }, + { "lat": 40.7649207, "lon": -73.9947696 }, + { "lat": 40.7647900, "lon": -73.9946928 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1150155261, + "bounds": { + "minlat": 40.8394959, + "minlon": -73.9735188, + "maxlat": 40.8395639, + "maxlon": -73.9732338 + }, + "nodes": [ + 10699400088, + 10699400089 + ], + "geometry": [ + { "lat": 40.8395639, "lon": -73.9735188 }, + { "lat": 40.8394959, "lon": -73.9732338 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1150155262, + "bounds": { + "minlat": 40.8396432, + "minlon": -73.9734570, + "maxlat": 40.8397116, + "maxlon": -73.9731707 + }, + "nodes": [ + 10699400090, + 10699400091 + ], + "geometry": [ + { "lat": 40.8397116, "lon": -73.9734570 }, + { "lat": 40.8396432, "lon": -73.9731707 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1150168598, + "bounds": { + "minlat": 40.7089515, + "minlon": -73.9206386, + "maxlat": 40.7090718, + "maxlon": -73.9204359 + }, + "nodes": [ + 10699568261, + 10699568263, + 10699568264, + 10699568262 + ], + "geometry": [ + { "lat": 40.7089515, "lon": -73.9204359 }, + { "lat": 40.7089967, "lon": -73.9205098 }, + { "lat": 40.7090131, "lon": -73.9205367 }, + { "lat": 40.7090718, "lon": -73.9206386 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1150168599, + "bounds": { + "minlat": 40.7087833, + "minlon": -73.9208525, + "maxlat": 40.7091606, + "maxlon": -73.9205532 + }, + "nodes": [ + 10699568269, + 10699568262, + 10699568270, + 10699568271, + 10699568266, + 10699568268, + 10699568267, + 10699568265 + ], + "geometry": [ + { "lat": 40.7091606, "lon": -73.9205532 }, + { "lat": 40.7090718, "lon": -73.9206386 }, + { "lat": 40.7090186, "lon": -73.9206903 }, + { "lat": 40.7089820, "lon": -73.9207052 }, + { "lat": 40.7089372, "lon": -73.9207048 }, + { "lat": 40.7088803, "lon": -73.9207543 }, + { "lat": 40.7088369, "lon": -73.9207983 }, + { "lat": 40.7087833, "lon": -73.9208525 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1150214310, + "bounds": { + "minlat": 40.8568118, + "minlon": -73.9369745, + "maxlat": 40.8568565, + "maxlon": -73.9368759 + }, + "nodes": [ + 10699913352, + 10699913354, + 10699913353 + ], + "geometry": [ + { "lat": 40.8568118, "lon": -73.9368759 }, + { "lat": 40.8568250, "lon": -73.9369049 }, + { "lat": 40.8568565, "lon": -73.9369745 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1150265523, + "bounds": { + "minlat": 40.8051645, + "minlon": -73.9114740, + "maxlat": 40.8055684, + "maxlon": -73.9105043 + }, + "nodes": [ + 42753403, + 13038971560, + 10700391949, + 7403861013, + 596271051 + ], + "geometry": [ + { "lat": 40.8055684, "lon": -73.9105043 }, + { "lat": 40.8055359, "lon": -73.9106284 }, + { "lat": 40.8055195, "lon": -73.9106908 }, + { "lat": 40.8052272, "lon": -73.9113311 }, + { "lat": 40.8051645, "lon": -73.9114740 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1150265524, + "bounds": { + "minlat": 40.8055684, + "minlon": -73.9105043, + "maxlat": 40.8061627, + "maxlon": -73.9091832 + }, + "nodes": [ + 42743468, + 13247555766, + 42753405, + 13038971559, + 42753403 + ], + "geometry": [ + { "lat": 40.8061627, "lon": -73.9091832 }, + { "lat": 40.8061070, "lon": -73.9093111 }, + { "lat": 40.8059404, "lon": -73.9096937 }, + { "lat": 40.8056144, "lon": -73.9104023 }, + { "lat": 40.8055684, "lon": -73.9105043 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_type": "Blvd", + "tiger:zip_left": "10472" + } +}, +{ + "type": "way", + "id": 1150265525, + "bounds": { + "minlat": 40.8042999, + "minlon": -73.9128947, + "maxlat": 40.8046449, + "maxlon": -73.9123046 + }, + "nodes": [ + 10700391950, + 13003790091, + 10702583008 + ], + "geometry": [ + { "lat": 40.8046449, "lon": -73.9123046 }, + { "lat": 40.8045843, "lon": -73.9124089 }, + { "lat": 40.8042999, "lon": -73.9128947 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_type": "Blvd", + "tiger:zip_left": "10472" + } +}, +{ + "type": "way", + "id": 1150265526, + "bounds": { + "minlat": 40.8046449, + "minlon": -73.9124649, + "maxlat": 40.8047194, + "maxlon": -73.9123046 + }, + "nodes": [ + 10700391950, + 42753396 + ], + "geometry": [ + { "lat": 40.8046449, "lon": -73.9123046 }, + { "lat": 40.8047194, "lon": -73.9124649 } + ], + "tags": { + "cycleway": "track", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 138th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1150347731, + "bounds": { + "minlat": 40.8751107, + "minlon": -73.9528045, + "maxlat": 40.8752532, + "maxlon": -73.9525340 + }, + "nodes": [ + 6605713605, + 6605713602 + ], + "geometry": [ + { "lat": 40.8752532, "lon": -73.9528045 }, + { "lat": 40.8751107, "lon": -73.9525340 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1150411362, + "bounds": { + "minlat": 40.7085754, + "minlon": -73.9380748, + "maxlat": 40.7088478, + "maxlon": -73.9380366 + }, + "nodes": [ + 10701641663, + 10701641665, + 10701641666, + 10701641664 + ], + "geometry": [ + { "lat": 40.7085754, "lon": -73.9380366 }, + { "lat": 40.7086466, "lon": -73.9380466 }, + { "lat": 40.7086619, "lon": -73.9380488 }, + { "lat": 40.7088478, "lon": -73.9380748 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1150521240, + "bounds": { + "minlat": 40.8032769, + "minlon": -73.9188385, + "maxlat": 40.8033439, + "maxlon": -73.9172895 + }, + "nodes": [ + 10702518397, + 10702518396, + 10702518395, + 10702518394, + 10702518393, + 10702518392, + 10702518391 + ], + "geometry": [ + { "lat": 40.8032769, "lon": -73.9172895 }, + { "lat": 40.8032904, "lon": -73.9184448 }, + { "lat": 40.8032938, "lon": -73.9185327 }, + { "lat": 40.8033016, "lon": -73.9186134 }, + { "lat": 40.8033164, "lon": -73.9187016 }, + { "lat": 40.8033337, "lon": -73.9187984 }, + { "lat": 40.8033439, "lon": -73.9188385 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1150521241, + "bounds": { + "minlat": 40.8032763, + "minlon": -73.9172895, + "maxlat": 40.8033463, + "maxlon": -73.9155443 + }, + "nodes": [ + 10702518398, + 10702518399, + 10702518400, + 10702518401, + 10702518397 + ], + "geometry": [ + { "lat": 40.8033463, "lon": -73.9155443 }, + { "lat": 40.8033164, "lon": -73.9158016 }, + { "lat": 40.8032944, "lon": -73.9160542 }, + { "lat": 40.8032763, "lon": -73.9164306 }, + { "lat": 40.8032769, "lon": -73.9172895 } + ], + "tags": { + "foot": "no", + "hgv": "designated", + "highway": "primary", + "layer": "-1", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1150521242, + "bounds": { + "minlat": 40.8033463, + "minlon": -73.9155443, + "maxlat": 40.8042999, + "maxlon": -73.9128947 + }, + "nodes": [ + 10702583008, + 10702583016, + 10702583007, + 10702583006, + 10702583005, + 10702518404, + 10702518403, + 10702518402, + 10702518398 + ], + "geometry": [ + { "lat": 40.8042999, "lon": -73.9128947 }, + { "lat": 40.8040221, "lon": -73.9134654 }, + { "lat": 40.8037539, "lon": -73.9140425 }, + { "lat": 40.8036624, "lon": -73.9142594 }, + { "lat": 40.8035850, "lon": -73.9144718 }, + { "lat": 40.8034835, "lon": -73.9148396 }, + { "lat": 40.8034241, "lon": -73.9150892 }, + { "lat": 40.8033835, "lon": -73.9152971 }, + { "lat": 40.8033463, "lon": -73.9155443 } + ], + "tags": { + "foot": "no", + "hgv": "designated", + "highway": "primary", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1150521243, + "bounds": { + "minlat": 40.8035651, + "minlon": -73.9204250, + "maxlat": 40.8038695, + "maxlon": -73.9197909 + }, + "nodes": [ + 7457285512, + 9908642163, + 9156976056, + 42753246 + ], + "geometry": [ + { "lat": 40.8038695, "lon": -73.9204250 }, + { "lat": 40.8037031, "lon": -73.9201301 }, + { "lat": 40.8036172, "lon": -73.9199214 }, + { "lat": 40.8035651, "lon": -73.9197909 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1150521244, + "bounds": { + "minlat": 40.8032565, + "minlon": -73.9188969, + "maxlat": 40.8033439, + "maxlon": -73.9188385 + }, + "nodes": [ + 10702518391, + 13071708887, + 471247737 + ], + "geometry": [ + { "lat": 40.8033439, "lon": -73.9188385 }, + { "lat": 40.8033054, "lon": -73.9188643 }, + { "lat": 40.8032565, "lon": -73.9188969 } + ], + "tags": { + "access": "no", + "highway": "residential", + "name": "Saint Ann's Place", + "note": "turn restrictions forbid every way to access way", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "St Ann's", + "tiger:name_type": "Pl" + } +}, +{ + "type": "way", + "id": 1150521245, + "bounds": { + "minlat": 40.8033439, + "minlon": -73.9197388, + "maxlat": 40.8036336, + "maxlon": -73.9188385 + }, + "nodes": [ + 10702518391, + 10702583010, + 10702583011, + 10702583012, + 11427300053, + 10702583014 + ], + "geometry": [ + { "lat": 40.8033439, "lon": -73.9188385 }, + { "lat": 40.8034107, "lon": -73.9191168 }, + { "lat": 40.8034522, "lon": -73.9192496 }, + { "lat": 40.8035891, "lon": -73.9196315 }, + { "lat": 40.8035962, "lon": -73.9196487 }, + { "lat": 40.8036336, "lon": -73.9197388 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1150611283, + "bounds": { + "minlat": 40.7255488, + "minlon": -73.9333440, + "maxlat": 40.7258260, + "maxlon": -73.9332190 + }, + "nodes": [ + 3789157788, + 42516108 + ], + "geometry": [ + { "lat": 40.7255488, "lon": -73.9332190 }, + { "lat": 40.7258260, "lon": -73.9333440 } + ], + "tags": { + "highway": "unclassified", + "name": "Stewart Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1150611284, + "bounds": { + "minlat": 40.7245223, + "minlon": -73.9371013, + "maxlat": 40.7248208, + "maxlon": -73.9367886 + }, + "nodes": [ + 8896031715, + 12162675475, + 8896035620, + 9194920852, + 5943344514 + ], + "geometry": [ + { "lat": 40.7248208, "lon": -73.9367886 }, + { "lat": 40.7247931, "lon": -73.9368410 }, + { "lat": 40.7247449, "lon": -73.9368906 }, + { "lat": 40.7245791, "lon": -73.9370436 }, + { "lat": 40.7245223, "lon": -73.9371013 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1150611285, + "bounds": { + "minlat": 40.7270246, + "minlon": -73.9457350, + "maxlat": 40.7274038, + "maxlon": -73.9456716 + }, + "nodes": [ + 42502933, + 9788947221, + 42502930 + ], + "geometry": [ + { "lat": 40.7274038, "lon": -73.9457350 }, + { "lat": 40.7273220, "lon": -73.9457208 }, + { "lat": 40.7270246, "lon": -73.9456716 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no" + } +}, +{ + "type": "way", + "id": 1150611286, + "bounds": { + "minlat": 40.7274038, + "minlon": -73.9464124, + "maxlat": 40.7314406, + "maxlon": -73.9457350 + }, + "nodes": [ + 2422186264, + 13515590847, + 13515590846, + 8211156905, + 9788947270, + 7725544396, + 9788947269, + 13717879778, + 8288333632, + 9788947312, + 42502935, + 9788947310, + 11701385997, + 9788947218, + 42502933 + ], + "geometry": [ + { "lat": 40.7314406, "lon": -73.9464124 }, + { "lat": 40.7314095, "lon": -73.9464008 }, + { "lat": 40.7313837, "lon": -73.9463949 }, + { "lat": 40.7313361, "lon": -73.9463869 }, + { "lat": 40.7305530, "lon": -73.9462514 }, + { "lat": 40.7304885, "lon": -73.9462406 }, + { "lat": 40.7304293, "lon": -73.9462308 }, + { "lat": 40.7300785, "lon": -73.9461740 }, + { "lat": 40.7298399, "lon": -73.9461354 }, + { "lat": 40.7293414, "lon": -73.9460548 }, + { "lat": 40.7292575, "lon": -73.9460412 }, + { "lat": 40.7292039, "lon": -73.9460324 }, + { "lat": 40.7275222, "lon": -73.9457544 }, + { "lat": 40.7274743, "lon": -73.9457465 }, + { "lat": 40.7274038, "lon": -73.9457350 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1150636496, + "bounds": { + "minlat": 40.7495536, + "minlon": -73.9782172, + "maxlat": 40.7498975, + "maxlon": -73.9774393 + }, + "nodes": [ + 42445656, + 12831235630, + 10703807883 + ], + "geometry": [ + { "lat": 40.7495536, "lon": -73.9774393 }, + { "lat": 40.7495979, "lon": -73.9775395 }, + { "lat": 40.7498975, "lon": -73.9782172 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1150636497, + "bounds": { + "minlat": 40.7499394, + "minlon": -73.9789617, + "maxlat": 40.7501913, + "maxlon": -73.9783507 + }, + "nodes": [ + 12181374949, + 8871600821, + 12181374948, + 12181374951, + 8122411168, + 42445653 + ], + "geometry": [ + { "lat": 40.7499394, "lon": -73.9783507 }, + { "lat": 40.7499476, "lon": -73.9783768 }, + { "lat": 40.7499600, "lon": -73.9784163 }, + { "lat": 40.7501237, "lon": -73.9788038 }, + { "lat": 40.7501510, "lon": -73.9788675 }, + { "lat": 40.7501913, "lon": -73.9789617 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1150636498, + "bounds": { + "minlat": 40.7501913, + "minlon": -73.9791501, + "maxlat": 40.7502720, + "maxlon": -73.9789617 + }, + "nodes": [ + 42445653, + 12181374952, + 561042195 + ], + "geometry": [ + { "lat": 40.7501913, "lon": -73.9789617 }, + { "lat": 40.7502465, "lon": -73.9790905 }, + { "lat": 40.7502720, "lon": -73.9791501 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1150636499, + "bounds": { + "minlat": 40.7502720, + "minlon": -73.9802494, + "maxlat": 40.7507276, + "maxlon": -73.9791501 + }, + "nodes": [ + 561042195, + 8122411153, + 12181374950, + 4711654705, + 10703807884 + ], + "geometry": [ + { "lat": 40.7502720, "lon": -73.9791501 }, + { "lat": 40.7503088, "lon": -73.9792360 }, + { "lat": 40.7503262, "lon": -73.9792766 }, + { "lat": 40.7505707, "lon": -73.9798773 }, + { "lat": 40.7507276, "lon": -73.9802494 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1150636500, + "bounds": { + "minlat": 40.7507276, + "minlon": -73.9806768, + "maxlat": 40.7509069, + "maxlon": -73.9802494 + }, + "nodes": [ + 10703807884, + 4711654714, + 3997454666, + 42445651 + ], + "geometry": [ + { "lat": 40.7507276, "lon": -73.9802494 }, + { "lat": 40.7507456, "lon": -73.9802922 }, + { "lat": 40.7508730, "lon": -73.9805931 }, + { "lat": 40.7509069, "lon": -73.9806768 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1150636501, + "bounds": { + "minlat": 40.7513377, + "minlon": -73.9822757, + "maxlat": 40.7515813, + "maxlon": -73.9816903 + }, + "nodes": [ + 10703807885, + 9965135088, + 42445649 + ], + "geometry": [ + { "lat": 40.7513377, "lon": -73.9816903 }, + { "lat": 40.7515285, "lon": -73.9821502 }, + { "lat": 40.7515813, "lon": -73.9822757 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1150705656, + "bounds": { + "minlat": 40.7636536, + "minlon": -73.9734832, + "maxlat": 40.7642754, + "maxlon": -73.9730294 + }, + "nodes": [ + 5706568771, + 3976008176, + 6188803959, + 42427762 + ], + "geometry": [ + { "lat": 40.7642754, "lon": -73.9730294 }, + { "lat": 40.7642167, "lon": -73.9730706 }, + { "lat": 40.7637292, "lon": -73.9734296 }, + { "lat": 40.7636536, "lon": -73.9734832 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through|through", + "width": "16", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1150810375, + "bounds": { + "minlat": 40.7310019, + "minlon": -73.9749965, + "maxlat": 40.7313827, + "maxlon": -73.9740570 + }, + "nodes": [ + 3236082435, + 247404992, + 5785246006, + 3236082432, + 4161569144, + 4161568888 + ], + "geometry": [ + { "lat": 40.7313827, "lon": -73.9749965 }, + { "lat": 40.7313305, "lon": -73.9748502 }, + { "lat": 40.7312511, "lon": -73.9746534 }, + { "lat": 40.7312022, "lon": -73.9745320 }, + { "lat": 40.7310366, "lon": -73.9741469 }, + { "lat": 40.7310019, "lon": -73.9740570 } + ], + "tags": { + "access": "destination", + "alt_name": "East 18th Street", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C Loop", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1150810376, + "bounds": { + "minlat": 40.7298362, + "minlon": -73.9756997, + "maxlat": 40.7301698, + "maxlon": -73.9748867 + }, + "nodes": [ + 1927758595, + 4161568861, + 8429307329, + 3360773026, + 10705337090 + ], + "geometry": [ + { "lat": 40.7298362, "lon": -73.9748867 }, + { "lat": 40.7298567, "lon": -73.9749389 }, + { "lat": 40.7300792, "lon": -73.9754797 }, + { "lat": 40.7300828, "lon": -73.9754884 }, + { "lat": 40.7301698, "lon": -73.9756997 } + ], + "tags": { + "access": "destination", + "alt_name": "East 16th Street", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C Loop", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1151004404, + "bounds": { + "minlat": 40.7154256, + "minlon": -73.9518508, + "maxlat": 40.7155192, + "maxlon": -73.9518359 + }, + "nodes": [ + 42476585, + 10003855163 + ], + "geometry": [ + { "lat": 40.7154256, "lon": -73.9518359 }, + { "lat": 40.7155192, "lon": -73.9518508 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1151033361, + "bounds": { + "minlat": 40.7095739, + "minlon": -74.0064412, + "maxlat": 40.7099123, + "maxlon": -74.0060881 + }, + "nodes": [ + 42440282, + 8281922087, + 8281922108, + 1538237248 + ], + "geometry": [ + { "lat": 40.7095739, "lon": -74.0064412 }, + { "lat": 40.7096172, "lon": -74.0063961 }, + { "lat": 40.7098924, "lon": -74.0061081 }, + { "lat": 40.7099123, "lon": -74.0060881 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "William Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "윌리엄 스트리트", + "name:ru": "Уильям-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1151033516, + "bounds": { + "minlat": 40.7087131, + "minlon": -74.0078157, + "maxlat": 40.7090976, + "maxlon": -74.0072873 + }, + "nodes": [ + 42440340, + 11365172134, + 8281922148, + 42440343 + ], + "geometry": [ + { "lat": 40.7090976, "lon": -74.0078157 }, + { "lat": 40.7087715, "lon": -74.0073670 }, + { "lat": 40.7087378, "lon": -74.0073203 }, + { "lat": 40.7087131, "lon": -74.0072873 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "John Street", + "name:etymology:wikidata": "Q113897737", + "name:ko": "존 스트리트", + "name:ru": "Джон-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q108240697" + } +}, +{ + "type": "way", + "id": 1151033517, + "bounds": { + "minlat": 40.7073945, + "minlon": -74.0060233, + "maxlat": 40.7079259, + "maxlon": -74.0054889 + }, + "nodes": [ + 42433330, + 11369418304, + 11369418303, + 11369418301, + 11367912997, + 8262936327, + 11367912999, + 42440347 + ], + "geometry": [ + { "lat": 40.7079259, "lon": -74.0060233 }, + { "lat": 40.7079001, "lon": -74.0059835 }, + { "lat": 40.7078765, "lon": -74.0059500 }, + { "lat": 40.7078413, "lon": -74.0059056 }, + { "lat": 40.7074951, "lon": -74.0055689 }, + { "lat": 40.7074480, "lon": -74.0055271 }, + { "lat": 40.7074150, "lon": -74.0055026 }, + { "lat": 40.7073945, "lon": -74.0054889 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "John Street", + "name:etymology:wikidata": "Q113897737", + "name:ko": "존 스트리트", + "name:ru": "Джон-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q108240697" + } +}, +{ + "type": "way", + "id": 1151033591, + "bounds": { + "minlat": 40.7082290, + "minlon": -74.0072873, + "maxlat": 40.7087131, + "maxlon": -74.0065343 + }, + "nodes": [ + 42440343, + 8281922146, + 12299316683, + 10710934677, + 42440345 + ], + "geometry": [ + { "lat": 40.7087131, "lon": -74.0072873 }, + { "lat": 40.7086848, "lon": -74.0072434 }, + { "lat": 40.7082862, "lon": -74.0066222 }, + { "lat": 40.7082551, "lon": -74.0065737 }, + { "lat": 40.7082290, "lon": -74.0065343 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "John Street", + "name:etymology:wikidata": "Q113897737", + "name:ko": "존 스트리트", + "name:ru": "Джон-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q108240697" + } +}, +{ + "type": "way", + "id": 1151034558, + "bounds": { + "minlat": 40.7055443, + "minlon": -74.0079409, + "maxlat": 40.7063877, + "maxlon": -74.0071360 + }, + "nodes": [ + 42434418, + 11367912776, + 8276468633, + 42429842, + 8276468634, + 11053183487, + 11367912773, + 7139624492, + 11053183493, + 42444414 + ], + "geometry": [ + { "lat": 40.7063877, "lon": -74.0071360 }, + { "lat": 40.7061206, "lon": -74.0073978 }, + { "lat": 40.7060827, "lon": -74.0074351 }, + { "lat": 40.7060628, "lon": -74.0074544 }, + { "lat": 40.7060367, "lon": -74.0074795 }, + { "lat": 40.7056503, "lon": -74.0078556 }, + { "lat": 40.7056338, "lon": -74.0078701 }, + { "lat": 40.7055980, "lon": -74.0079017 }, + { "lat": 40.7055713, "lon": -74.0079220 }, + { "lat": 40.7055443, "lon": -74.0079409 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1151035737, + "bounds": { + "minlat": 40.7046776, + "minlon": -74.0081181, + "maxlat": 40.7049269, + "maxlon": -74.0077600 + }, + "nodes": [ + 10707585709, + 8276468524, + 42454600 + ], + "geometry": [ + { "lat": 40.7049269, "lon": -74.0077600 }, + { "lat": 40.7047021, "lon": -74.0080834 }, + { "lat": 40.7046776, "lon": -74.0081181 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 1151036495, + "bounds": { + "minlat": 40.7045596, + "minlon": -74.0094849, + "maxlat": 40.7048531, + "maxlon": -74.0089272 + }, + "nodes": [ + 1251958257, + 10344354964, + 8276468674, + 42427956 + ], + "geometry": [ + { "lat": 40.7048531, "lon": -74.0089272 }, + { "lat": 40.7046423, "lon": -74.0093146 }, + { "lat": 40.7046111, "lon": -74.0093819 }, + { "lat": 40.7045596, "lon": -74.0094849 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1151036496, + "bounds": { + "minlat": 40.7041713, + "minlon": -74.0100178, + "maxlat": 40.7045596, + "maxlon": -74.0094849 + }, + "nodes": [ + 42427956, + 8276468677, + 10344354966, + 10344354965, + 10707589906 + ], + "geometry": [ + { "lat": 40.7045596, "lon": -74.0094849 }, + { "lat": 40.7045213, "lon": -74.0095509 }, + { "lat": 40.7044892, "lon": -74.0096001 }, + { "lat": 40.7043368, "lon": -74.0098118 }, + { "lat": 40.7041713, "lon": -74.0100178 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1151039415, + "bounds": { + "minlat": 40.7035836, + "minlon": -74.0131307, + "maxlat": 40.7035985, + "maxlon": -74.0119073 + }, + "nodes": [ + 42444480, + 7335430607, + 11050054089, + 12297101803 + ], + "geometry": [ + { "lat": 40.7035982, "lon": -74.0131307 }, + { "lat": 40.7035985, "lon": -74.0130369 }, + { "lat": 40.7035879, "lon": -74.0122300 }, + { "lat": 40.7035836, "lon": -74.0119073 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bridge Street", + "name:ko": "브리지 스트리트", + "name:ru": "Бридж-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bridge", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q4966296", + "wikipedia": "en:Bridge Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1151630439, + "bounds": { + "minlat": 40.7906855, + "minlon": -73.9175411, + "maxlat": 40.7912001, + "maxlon": -73.9166772 + }, + "nodes": [ + 3044780333, + 3044780334, + 3044777616 + ], + "geometry": [ + { "lat": 40.7906855, "lon": -73.9166772 }, + { "lat": 40.7911565, "lon": -73.9173674 }, + { "lat": 40.7912001, "lon": -73.9175411 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Cammarata Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1151630440, + "bounds": { + "minlat": 40.7924938, + "minlon": -73.9230392, + "maxlat": 40.7926141, + "maxlon": -73.9228885 + }, + "nodes": [ + 8603460185, + 8603460183, + 10713117969 + ], + "geometry": [ + { "lat": 40.7926141, "lon": -73.9228885 }, + { "lat": 40.7925529, "lon": -73.9229822 }, + { "lat": 40.7924938, "lon": -73.9230392 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "10 mph", + "name": "K Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1151630441, + "bounds": { + "minlat": 40.7924610, + "minlon": -73.9229551, + "maxlat": 40.7926141, + "maxlon": -73.9228885 + }, + "nodes": [ + 10713117970, + 8603460184, + 8603460185 + ], + "geometry": [ + { "lat": 40.7924610, "lon": -73.9229551 }, + { "lat": 40.7925581, "lon": -73.9228987 }, + { "lat": 40.7926141, "lon": -73.9228885 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "10 mph", + "name": "K Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1151630442, + "bounds": { + "minlat": 40.7891644, + "minlon": -73.9245390, + "maxlat": 40.7895990, + "maxlon": -73.9231553 + }, + "nodes": [ + 3041966831, + 3041969977, + 3041966832, + 3044455892, + 3041969933 + ], + "geometry": [ + { "lat": 40.7891910, "lon": -73.9231553 }, + { "lat": 40.7891808, "lon": -73.9232809 }, + { "lat": 40.7891644, "lon": -73.9235439 }, + { "lat": 40.7893714, "lon": -73.9240178 }, + { "lat": 40.7895990, "lon": -73.9245390 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "F Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1151630443, + "bounds": { + "minlat": 40.7901371, + "minlon": -73.9234830, + "maxlat": 40.7909881, + "maxlon": -73.9223423 + }, + "nodes": [ + 3041969941, + 3041969942, + 3041969947, + 3041969945, + 3041969946, + 3041969943, + 3041969944 + ], + "geometry": [ + { "lat": 40.7901371, "lon": -73.9225086 }, + { "lat": 40.7903463, "lon": -73.9223503 }, + { "lat": 40.7903950, "lon": -73.9223423 }, + { "lat": 40.7904316, "lon": -73.9223557 }, + { "lat": 40.7904661, "lon": -73.9223798 }, + { "lat": 40.7904945, "lon": -73.9224254 }, + { "lat": 40.7909881, "lon": -73.9234830 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "I Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1151630444, + "bounds": { + "minlat": 40.7889266, + "minlon": -73.9231553, + "maxlat": 40.7891910, + "maxlon": -73.9225666 + }, + "nodes": [ + 3041966831, + 10713117976 + ], + "geometry": [ + { "lat": 40.7891910, "lon": -73.9231553 }, + { "lat": 40.7889266, "lon": -73.9225666 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "G Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1151630445, + "bounds": { + "minlat": 40.7885391, + "minlon": -73.9226275, + "maxlat": 40.7888486, + "maxlon": -73.9219338 + }, + "nodes": [ + 10713117978, + 10713117977 + ], + "geometry": [ + { "lat": 40.7888486, "lon": -73.9226275 }, + { "lat": 40.7885391, "lon": -73.9219338 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "G Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1151630446, + "bounds": { + "minlat": 40.7858519, + "minlon": -73.9254376, + "maxlat": 40.7882233, + "maxlon": -73.9249346 + }, + "nodes": [ + 3041966781, + 10713117975, + 3041966790, + 3041966791, + 3041966792, + 3041966793, + 3041966794, + 3041966795, + 3041966796, + 3041966797, + 3041966798, + 3041966799, + 3041966800, + 3041966801, + 3041966802, + 3041966803, + 3041966804, + 3041966805, + 3041966806, + 3041966807, + 3041966810 + ], + "geometry": [ + { "lat": 40.7882233, "lon": -73.9249346 }, + { "lat": 40.7880893, "lon": -73.9250594 }, + { "lat": 40.7880576, "lon": -73.9250889 }, + { "lat": 40.7879642, "lon": -73.9251559 }, + { "lat": 40.7878606, "lon": -73.9252310 }, + { "lat": 40.7877550, "lon": -73.9252981 }, + { "lat": 40.7876779, "lon": -73.9253437 }, + { "lat": 40.7875540, "lon": -73.9254080 }, + { "lat": 40.7874606, "lon": -73.9254376 }, + { "lat": 40.7872859, "lon": -73.9254376 }, + { "lat": 40.7870666, "lon": -73.9254215 }, + { "lat": 40.7869123, "lon": -73.9254107 }, + { "lat": 40.7867701, "lon": -73.9253973 }, + { "lat": 40.7866625, "lon": -73.9253785 }, + { "lat": 40.7864777, "lon": -73.9253276 }, + { "lat": 40.7863132, "lon": -73.9252820 }, + { "lat": 40.7861609, "lon": -73.9252525 }, + { "lat": 40.7860532, "lon": -73.9252149 }, + { "lat": 40.7859659, "lon": -73.9251479 }, + { "lat": 40.7858786, "lon": -73.9250352 }, + { "lat": 40.7858519, "lon": -73.9249848 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "2nd Drive", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1151630447, + "bounds": { + "minlat": 40.7886163, + "minlon": -73.9256285, + "maxlat": 40.7886933, + "maxlon": -73.9253095 + }, + "nodes": [ + 10713117985, + 10713117984, + 8112648295, + 10713117983, + 1242159817 + ], + "geometry": [ + { "lat": 40.7886163, "lon": -73.9253095 }, + { "lat": 40.7886346, "lon": -73.9253848 }, + { "lat": 40.7886448, "lon": -73.9254253 }, + { "lat": 40.7886564, "lon": -73.9254797 }, + { "lat": 40.7886933, "lon": -73.9256285 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "name": "C Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1151677433, + "bounds": { + "minlat": 40.7499268, + "minlon": -73.9353236, + "maxlat": 40.7503416, + "maxlon": -73.9344625 + }, + "nodes": [ + 10713533570, + 12132845068, + 10713533574, + 12132845069, + 12132845070, + 12132845071, + 10713533571, + 10713533575, + 10713533572, + 12132845072, + 12132845073, + 12132845074, + 12132845075, + 12132845076, + 12132844976 + ], + "geometry": [ + { "lat": 40.7499268, "lon": -73.9351199 }, + { "lat": 40.7500082, "lon": -73.9352667 }, + { "lat": 40.7500195, "lon": -73.9352847 }, + { "lat": 40.7500378, "lon": -73.9353062 }, + { "lat": 40.7500570, "lon": -73.9353175 }, + { "lat": 40.7500756, "lon": -73.9353236 }, + { "lat": 40.7500945, "lon": -73.9353191 }, + { "lat": 40.7501113, "lon": -73.9353096 }, + { "lat": 40.7503029, "lon": -73.9351390 }, + { "lat": 40.7503331, "lon": -73.9351097 }, + { "lat": 40.7503410, "lon": -73.9350952 }, + { "lat": 40.7503416, "lon": -73.9350746 }, + { "lat": 40.7503382, "lon": -73.9350537 }, + { "lat": 40.7503283, "lon": -73.9350344 }, + { "lat": 40.7499554, "lon": -73.9344625 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1151677434, + "bounds": { + "minlat": 40.7500195, + "minlon": -73.9352847, + "maxlat": 40.7502371, + "maxlon": -73.9350307 + }, + "nodes": [ + 10713533573, + 12132845067, + 12132845066, + 12132845065, + 10713533574 + ], + "geometry": [ + { "lat": 40.7502371, "lon": -73.9350307 }, + { "lat": 40.7502194, "lon": -73.9350851 }, + { "lat": 40.7502054, "lon": -73.9351149 }, + { "lat": 40.7501895, "lon": -73.9351362 }, + { "lat": 40.7500195, "lon": -73.9352847 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1151682807, + "bounds": { + "minlat": 40.7134735, + "minlon": -73.9523204, + "maxlat": 40.7135180, + "maxlon": -73.9518297 + }, + "nodes": [ + 10713579355, + 10713579356, + 10713579357, + 10713579358, + 10713579359 + ], + "geometry": [ + { "lat": 40.7134735, "lon": -73.9518297 }, + { "lat": 40.7134997, "lon": -73.9519116 }, + { "lat": 40.7135151, "lon": -73.9519990 }, + { "lat": 40.7135180, "lon": -73.9521835 }, + { "lat": 40.7135056, "lon": -73.9523204 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1151693515, + "bounds": { + "minlat": 40.7679300, + "minlon": -73.9914192, + "maxlat": 40.7681301, + "maxlon": -73.9912613 + }, + "nodes": [ + 10713675987, + 10713675990 + ], + "geometry": [ + { "lat": 40.7681301, "lon": -73.9912613 }, + { "lat": 40.7679300, "lon": -73.9914192 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1151693516, + "bounds": { + "minlat": 40.7678302, + "minlon": -73.9914985, + "maxlat": 40.7679300, + "maxlon": -73.9914192 + }, + "nodes": [ + 10713675990, + 10713675988, + 10713675989 + ], + "geometry": [ + { "lat": 40.7679300, "lon": -73.9914192 }, + { "lat": 40.7678974, "lon": -73.9914449 }, + { "lat": 40.7678302, "lon": -73.9914985 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1152352633, + "bounds": { + "minlat": 40.8410207, + "minlon": -73.9243894, + "maxlat": 40.8412356, + "maxlon": -73.9242385 + }, + "nodes": [ + 10718451569, + 10718451570, + 10718451571 + ], + "geometry": [ + { "lat": 40.8412356, "lon": -73.9242385 }, + { "lat": 40.8411591, "lon": -73.9242922 }, + { "lat": 40.8410207, "lon": -73.9243894 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1152367388, + "bounds": { + "minlat": 40.7156132, + "minlon": -73.9839124, + "maxlat": 40.7157268, + "maxlon": -73.9835288 + }, + "nodes": [ + 10718621128, + 10718621129, + 10718621131, + 10718621130 + ], + "geometry": [ + { "lat": 40.7157268, "lon": -73.9839124 }, + { "lat": 40.7156888, "lon": -73.9837786 }, + { "lat": 40.7156807, "lon": -73.9837516 }, + { "lat": 40.7156132, "lon": -73.9835288 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1152535932, + "bounds": { + "minlat": 40.8501945, + "minlon": -73.9405973, + "maxlat": 40.8503859, + "maxlon": -73.9396343 + }, + "nodes": [ + 42428107, + 9563821087, + 11595081881, + 42428103 + ], + "geometry": [ + { "lat": 40.8503859, "lon": -73.9405973 }, + { "lat": 40.8503710, "lon": -73.9405228 }, + { "lat": 40.8502113, "lon": -73.9397195 }, + { "lat": 40.8501945, "lon": -73.9396343 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 180th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "180th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1152535933, + "bounds": { + "minlat": 40.8509090, + "minlon": -73.9392359, + "maxlat": 40.8511790, + "maxlon": -73.9382840 + }, + "nodes": [ + 42427190, + 9563821081, + 11595000938, + 42444097 + ], + "geometry": [ + { "lat": 40.8509090, "lon": -73.9382840 }, + { "lat": 40.8509412, "lon": -73.9383969 }, + { "lat": 40.8509542, "lon": -73.9384434 }, + { "lat": 40.8511790, "lon": -73.9392359 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West 181st Street", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1152535934, + "bounds": { + "minlat": 40.8495285, + "minlon": -73.9399248, + "maxlat": 40.8501945, + "maxlon": -73.9396343 + }, + "nodes": [ + 595480989, + 11595081891, + 1763596999, + 9566938937, + 42428103 + ], + "geometry": [ + { "lat": 40.8495285, "lon": -73.9399248 }, + { "lat": 40.8495793, "lon": -73.9399025 }, + { "lat": 40.8500917, "lon": -73.9396763 }, + { "lat": 40.8501321, "lon": -73.9396593 }, + { "lat": 40.8501945, "lon": -73.9396343 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Pinehurst Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pinehurst", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1152558757, + "bounds": { + "minlat": 40.7293850, + "minlon": -73.9735380, + "maxlat": 40.7294744, + "maxlon": -73.9734746 + }, + "nodes": [ + 5481972115, + 5145330173 + ], + "geometry": [ + { "lat": 40.7294744, "lon": -73.9734746 }, + { "lat": 40.7293850, "lon": -73.9735380 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1152818719, + "bounds": { + "minlat": 40.7019460, + "minlon": -73.9557240, + "maxlat": 40.7054366, + "maxlon": -73.9502183 + }, + "nodes": [ + 42477588, + 2838353957, + 6245642055, + 42477584, + 6245642054, + 9755373345, + 42477581, + 9755373344, + 9772859177, + 42477578 + ], + "geometry": [ + { "lat": 40.7054366, "lon": -73.9502183 }, + { "lat": 40.7054203, "lon": -73.9503779 }, + { "lat": 40.7044709, "lon": -73.9518205 }, + { "lat": 40.7044180, "lon": -73.9519000 }, + { "lat": 40.7043659, "lon": -73.9519806 }, + { "lat": 40.7032275, "lon": -73.9537401 }, + { "lat": 40.7031810, "lon": -73.9538120 }, + { "lat": 40.7031348, "lon": -73.9538835 }, + { "lat": 40.7019923, "lon": -73.9556523 }, + { "lat": 40.7019460, "lon": -73.9557240 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Heyward Street", + "name:etymology:wikidata": "Q1399545", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1153053287, + "bounds": { + "minlat": 40.8457632, + "minlon": -73.9187021, + "maxlat": 40.8458072, + "maxlon": -73.9182633 + }, + "nodes": [ + 10724413369, + 10724413370 + ], + "geometry": [ + { "lat": 40.8458072, "lon": -73.9187021 }, + { "lat": 40.8457632, "lon": -73.9182633 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1153992800, + "bounds": { + "minlat": 40.7806093, + "minlon": -73.9497490, + "maxlat": 40.7810699, + "maxlon": -73.9494125 + }, + "nodes": [ + 42443046, + 6214889035, + 5475082080 + ], + "geometry": [ + { "lat": 40.7810699, "lon": -73.9494125 }, + { "lat": 40.7810111, "lon": -73.9494564 }, + { "lat": 40.7806093, "lon": -73.9497490 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "through|through|through|", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1154176201, + "bounds": { + "minlat": 40.7119461, + "minlon": -73.9517247, + "maxlat": 40.7124352, + "maxlon": -73.9516008 + }, + "nodes": [ + 10734121245, + 10734121246, + 10734121249, + 10734121247, + 10734121248 + ], + "geometry": [ + { "lat": 40.7124352, "lon": -73.9516008 }, + { "lat": 40.7123814, "lon": -73.9516330 }, + { "lat": 40.7123532, "lon": -73.9516509 }, + { "lat": 40.7122370, "lon": -73.9517247 }, + { "lat": 40.7119461, "lon": -73.9516974 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1154375171, + "bounds": { + "minlat": 40.7319898, + "minlon": -73.9614298, + "maxlat": 40.7321127, + "maxlon": -73.9614086 + }, + "nodes": [ + 6578720853, + 6578735393 + ], + "geometry": [ + { "lat": 40.7321127, "lon": -73.9614298 }, + { "lat": 40.7319898, "lon": -73.9614086 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1154464987, + "bounds": { + "minlat": 40.7104142, + "minlon": -73.9489815, + "maxlat": 40.7105587, + "maxlon": -73.9487918 + }, + "nodes": [ + 10736651830, + 10736651831, + 10736651832, + 10736651840, + 10736651833, + 10736651834 + ], + "geometry": [ + { "lat": 40.7104142, "lon": -73.9489597 }, + { "lat": 40.7104839, "lon": -73.9489709 }, + { "lat": 40.7105440, "lon": -73.9489815 }, + { "lat": 40.7105506, "lon": -73.9489022 }, + { "lat": 40.7105519, "lon": -73.9488862 }, + { "lat": 40.7105587, "lon": -73.9487918 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1154464988, + "bounds": { + "minlat": 40.7105396, + "minlon": -73.9490580, + "maxlat": 40.7107384, + "maxlon": -73.9488214 + }, + "nodes": [ + 10736651832, + 10736651835, + 10736651836, + 10736651839, + 10736651837, + 10736651838 + ], + "geometry": [ + { "lat": 40.7105440, "lon": -73.9489815 }, + { "lat": 40.7105396, "lon": -73.9490325 }, + { "lat": 40.7107207, "lon": -73.9490580 }, + { "lat": 40.7107305, "lon": -73.9489300 }, + { "lat": 40.7107316, "lon": -73.9489155 }, + { "lat": 40.7107384, "lon": -73.9488214 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1154464989, + "bounds": { + "minlat": 40.7105506, + "minlon": -73.9489300, + "maxlat": 40.7107305, + "maxlon": -73.9489022 + }, + "nodes": [ + 10736651839, + 10736651840 + ], + "geometry": [ + { "lat": 40.7107305, "lon": -73.9489300 }, + { "lat": 40.7105506, "lon": -73.9489022 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1155071791, + "bounds": { + "minlat": 40.7768178, + "minlon": -73.9873183, + "maxlat": 40.7768535, + "maxlon": -73.9872367 + }, + "nodes": [ + 10742000938, + 8250895286 + ], + "geometry": [ + { "lat": 40.7768178, "lon": -73.9872367 }, + { "lat": 40.7768535, "lon": -73.9873183 } + ], + "tags": { + "cutting": "both", + "highway": "service", + "maxheight": "7'", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1155071792, + "bounds": { + "minlat": 40.7767867, + "minlon": -73.9872367, + "maxlat": 40.7768208, + "maxlon": -73.9871639 + }, + "nodes": [ + 10742000937, + 10742000939, + 10742000936, + 10742000938 + ], + "geometry": [ + { "lat": 40.7767867, "lon": -73.9871639 }, + { "lat": 40.7768083, "lon": -73.9871749 }, + { "lat": 40.7768208, "lon": -73.9872071 }, + { "lat": 40.7768178, "lon": -73.9872367 } + ], + "tags": { + "cutting": "right", + "highway": "service", + "maxheight": "7'", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1155071793, + "bounds": { + "minlat": 40.7767841, + "minlon": -73.9872367, + "maxlat": 40.7768178, + "maxlon": -73.9871639 + }, + "nodes": [ + 10742000938, + 10742000940, + 10742000941, + 10742000937 + ], + "geometry": [ + { "lat": 40.7768178, "lon": -73.9872367 }, + { "lat": 40.7767980, "lon": -73.9872258 }, + { "lat": 40.7767841, "lon": -73.9871925 }, + { "lat": 40.7767867, "lon": -73.9871639 } + ], + "tags": { + "cutting": "left", + "highway": "service", + "maxheight": "7'", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1155071798, + "bounds": { + "minlat": 40.7766109, + "minlon": -73.9881829, + "maxlat": 40.7769749, + "maxlon": -73.9879874 + }, + "nodes": [ + 10742000956, + 10742000957, + 10742000958, + 10742000959, + 10742000960 + ], + "geometry": [ + { "lat": 40.7769749, "lon": -73.9881660 }, + { "lat": 40.7769523, "lon": -73.9880822 }, + { "lat": 40.7769495, "lon": -73.9880710 }, + { "lat": 40.7769281, "lon": -73.9879874 }, + { "lat": 40.7766109, "lon": -73.9881829 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1155279197, + "bounds": { + "minlat": 40.7377311, + "minlon": -73.9340562, + "maxlat": 40.7378945, + "maxlon": -73.9336343 + }, + "nodes": [ + 10743722222, + 10743722221, + 10743722220 + ], + "geometry": [ + { "lat": 40.7378945, "lon": -73.9336343 }, + { "lat": 40.7378669, "lon": -73.9337148 }, + { "lat": 40.7377311, "lon": -73.9340562 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1155279245, + "bounds": { + "minlat": 40.7374785, + "minlon": -73.9236128, + "maxlat": 40.7375907, + "maxlon": -73.9226867 + }, + "nodes": [ + 10743722356, + 10743722353, + 10743722355, + 6908928770 + ], + "geometry": [ + { "lat": 40.7374785, "lon": -73.9226867 }, + { "lat": 40.7374907, "lon": -73.9227924 }, + { "lat": 40.7375774, "lon": -73.9235403 }, + { "lat": 40.7375907, "lon": -73.9236128 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1155279246, + "bounds": { + "minlat": 40.7369803, + "minlon": -73.9232392, + "maxlat": 40.7370292, + "maxlon": -73.9227870 + }, + "nodes": [ + 10743722358, + 10743722351, + 10743722357 + ], + "geometry": [ + { "lat": 40.7370292, "lon": -73.9232392 }, + { "lat": 40.7369918, "lon": -73.9228933 }, + { "lat": 40.7369803, "lon": -73.9227870 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1155279247, + "bounds": { + "minlat": 40.7366692, + "minlon": -73.9233206, + "maxlat": 40.7373928, + "maxlon": -73.9231570 + }, + "nodes": [ + 10743722361, + 10743722358, + 10743722360 + ], + "geometry": [ + { "lat": 40.7366692, "lon": -73.9233206 }, + { "lat": 40.7370292, "lon": -73.9232392 }, + { "lat": 40.7373928, "lon": -73.9231570 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1155280758, + "bounds": { + "minlat": 40.7361945, + "minlon": -73.9331317, + "maxlat": 40.7362826, + "maxlon": -73.9330873 + }, + "nodes": [ + 5891894643, + 10743730296, + 5891894642 + ], + "geometry": [ + { "lat": 40.7362826, "lon": -73.9331317 }, + { "lat": 40.7362576, "lon": -73.9331188 }, + { "lat": 40.7361945, "lon": -73.9330873 } + ], + "tags": { + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 1155283625, + "bounds": { + "minlat": 40.8159428, + "minlon": -73.9452087, + "maxlat": 40.8162841, + "maxlon": -73.9449539 + }, + "nodes": [ + 10743755873, + 10743755875, + 10743755874 + ], + "geometry": [ + { "lat": 40.8159428, "lon": -73.9452087 }, + { "lat": 40.8160248, "lon": -73.9451475 }, + { "lat": 40.8162841, "lon": -73.9449539 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1155340001, + "bounds": { + "minlat": 40.7516653, + "minlon": -73.9390960, + "maxlat": 40.7520430, + "maxlon": -73.9387498 + }, + "nodes": [ + 10744356603, + 10744356602, + 10744356601 + ], + "geometry": [ + { "lat": 40.7520430, "lon": -73.9387498 }, + { "lat": 40.7519915, "lon": -73.9387970 }, + { "lat": 40.7516653, "lon": -73.9390960 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1155451377, + "bounds": { + "minlat": 40.7011345, + "minlon": -73.9934673, + "maxlat": 40.7012349, + "maxlon": -73.9930486 + }, + "nodes": [ + 451023550, + 1258945580, + 451023582, + 11682365843, + 42483450 + ], + "geometry": [ + { "lat": 40.7012349, "lon": -73.9934673 }, + { "lat": 40.7012324, "lon": -73.9934197 }, + { "lat": 40.7012187, "lon": -73.9933647 }, + { "lat": 40.7011539, "lon": -73.9931214 }, + { "lat": 40.7011345, "lon": -73.9930486 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Poplar Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Poplar", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1155451378, + "bounds": { + "minlat": 40.7007295, + "minlon": -73.9942250, + "maxlat": 40.7010099, + "maxlon": -73.9940753 + }, + "nodes": [ + 42502400, + 7097820981, + 42513253, + 451023556 + ], + "geometry": [ + { "lat": 40.7007295, "lon": -73.9942250 }, + { "lat": 40.7007833, "lon": -73.9941993 }, + { "lat": 40.7009779, "lon": -73.9941012 }, + { "lat": 40.7010099, "lon": -73.9940753 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Willow Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Willow", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1155693395, + "bounds": { + "minlat": 40.8540997, + "minlon": -73.9746663, + "maxlat": 40.8541889, + "maxlon": -73.9745327 + }, + "nodes": [ + 5108603017, + 5108603126, + 5108603147 + ], + "geometry": [ + { "lat": 40.8541889, "lon": -73.9746663 }, + { "lat": 40.8541493, "lon": -73.9746125 }, + { "lat": 40.8540997, "lon": -73.9745327 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1155722910, + "bounds": { + "minlat": 40.8823894, + "minlon": -73.9157789, + "maxlat": 40.8824889, + "maxlon": -73.9155524 + }, + "nodes": [ + 6853710658, + 13041409054, + 13041409091, + 42746810 + ], + "geometry": [ + { "lat": 40.8823894, "lon": -73.9155524 }, + { "lat": 40.8824422, "lon": -73.9156697 }, + { "lat": 40.8824635, "lon": -73.9157232 }, + { "lat": 40.8824889, "lon": -73.9157789 } + ], + "tags": { + "highway": "residential", + "name": "West 230th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "230th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1155777117, + "bounds": { + "minlat": 40.8411021, + "minlon": -73.9737012, + "maxlat": 40.8412578, + "maxlon": -73.9734203 + }, + "nodes": [ + 5108643230, + 5108635496, + 5108635513, + 5108635508, + 5108635514, + 5108635495 + ], + "geometry": [ + { "lat": 40.8411021, "lon": -73.9734203 }, + { "lat": 40.8411274, "lon": -73.9735315 }, + { "lat": 40.8411477, "lon": -73.9736026 }, + { "lat": 40.8411690, "lon": -73.9736375 }, + { "lat": 40.8412126, "lon": -73.9736723 }, + { "lat": 40.8412578, "lon": -73.9737012 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1155789616, + "bounds": { + "minlat": 40.7191812, + "minlon": -74.0055264, + "maxlat": 40.7194098, + "maxlon": -74.0051562 + }, + "nodes": [ + 10748446190, + 10748446192, + 11493402753, + 11493402754, + 10748446189, + 10748446193, + 10748446188 + ], + "geometry": [ + { "lat": 40.7194098, "lon": -74.0051562 }, + { "lat": 40.7194097, "lon": -74.0053160 }, + { "lat": 40.7194057, "lon": -74.0053385 }, + { "lat": 40.7193980, "lon": -74.0053598 }, + { "lat": 40.7193827, "lon": -74.0053741 }, + { "lat": 40.7192223, "lon": -74.0054959 }, + { "lat": 40.7191812, "lon": -74.0055264 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1156190529, + "bounds": { + "minlat": 40.7665755, + "minlon": -73.9448040, + "maxlat": 40.7666908, + "maxlon": -73.9446836 + }, + "nodes": [ + 10752086827, + 10752086828 + ], + "geometry": [ + { "lat": 40.7666908, "lon": -73.9446836 }, + { "lat": 40.7665755, "lon": -73.9448040 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156190530, + "bounds": { + "minlat": 40.7666908, + "minlon": -73.9448076, + "maxlat": 40.7668703, + "maxlon": -73.9446836 + }, + "nodes": [ + 1241986580, + 1241986746, + 10752086827 + ], + "geometry": [ + { "lat": 40.7668703, "lon": -73.9448076 }, + { "lat": 40.7667111, "lon": -73.9447025 }, + { "lat": 40.7666908, "lon": -73.9446836 } + ], + "tags": { + "highway": "residential", + "name": "East Road", + "surface": "paving_stones", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1156198557, + "bounds": { + "minlat": 40.8322372, + "minlon": -73.9725347, + "maxlat": 40.8324409, + "maxlon": -73.9722112 + }, + "nodes": [ + 3656112558, + 5362446584, + 7672312264, + 3656112556, + 10752210034, + 10752210033, + 3656112560, + 10752210032, + 10752210035, + 10752210031, + 10752210036, + 10752210030, + 10752210029, + 3656112559, + 10752210028 + ], + "geometry": [ + { "lat": 40.8322451, "lon": -73.9725347 }, + { "lat": 40.8322402, "lon": -73.9724719 }, + { "lat": 40.8322372, "lon": -73.9724351 }, + { "lat": 40.8322380, "lon": -73.9724149 }, + { "lat": 40.8322402, "lon": -73.9723925 }, + { "lat": 40.8322448, "lon": -73.9723606 }, + { "lat": 40.8322571, "lon": -73.9723167 }, + { "lat": 40.8322717, "lon": -73.9722760 }, + { "lat": 40.8322795, "lon": -73.9722613 }, + { "lat": 40.8322884, "lon": -73.9722511 }, + { "lat": 40.8322980, "lon": -73.9722408 }, + { "lat": 40.8323120, "lon": -73.9722319 }, + { "lat": 40.8323411, "lon": -73.9722213 }, + { "lat": 40.8323680, "lon": -73.9722159 }, + { "lat": 40.8324409, "lon": -73.9722112 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1156218617, + "bounds": { + "minlat": 40.8565760, + "minlon": -73.9820114, + "maxlat": 40.8568769, + "maxlon": -73.9815898 + }, + "nodes": [ + 10752348281, + 10752348288, + 10752348294, + 10752348290, + 10752348282, + 10752348283, + 10752348291, + 10752348289, + 10752348284, + 10752348281 + ], + "geometry": [ + { "lat": 40.8567357, "lon": -73.9820114 }, + { "lat": 40.8566826, "lon": -73.9819223 }, + { "lat": 40.8566684, "lon": -73.9818996 }, + { "lat": 40.8566306, "lon": -73.9818351 }, + { "lat": 40.8565760, "lon": -73.9817436 }, + { "lat": 40.8567239, "lon": -73.9815898 }, + { "lat": 40.8567790, "lon": -73.9816885 }, + { "lat": 40.8568280, "lon": -73.9817745 }, + { "lat": 40.8568769, "lon": -73.9818592 }, + { "lat": 40.8567357, "lon": -73.9820114 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156218618, + "bounds": { + "minlat": 40.8568769, + "minlon": -73.9818592, + "maxlat": 40.8570628, + "maxlon": -73.9818420 + }, + "nodes": [ + 10752348284, + 299172116 + ], + "geometry": [ + { "lat": 40.8568769, "lon": -73.9818592 }, + { "lat": 40.8570628, "lon": -73.9818420 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1156218619, + "bounds": { + "minlat": 40.8564021, + "minlon": -73.9822155, + "maxlat": 40.8565907, + "maxlon": -73.9820145 + }, + "nodes": [ + 10752348286, + 10752348287 + ], + "geometry": [ + { "lat": 40.8565907, "lon": -73.9820145 }, + { "lat": 40.8564021, "lon": -73.9822155 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156218620, + "bounds": { + "minlat": 40.8567165, + "minlon": -73.9818872, + "maxlat": 40.8567820, + "maxlon": -73.9818212 + }, + "nodes": [ + 10752348295, + 10752348296 + ], + "geometry": [ + { "lat": 40.8567165, "lon": -73.9818872 }, + { "lat": 40.8567820, "lon": -73.9818212 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156218621, + "bounds": { + "minlat": 40.8566657, + "minlon": -73.9818009, + "maxlat": 40.8567316, + "maxlon": -73.9817357 + }, + "nodes": [ + 10752348297, + 10752348298 + ], + "geometry": [ + { "lat": 40.8566657, "lon": -73.9818009 }, + { "lat": 40.8567316, "lon": -73.9817357 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156218622, + "bounds": { + "minlat": 40.8566085, + "minlon": -73.9821732, + "maxlat": 40.8567357, + "maxlon": -73.9820114 + }, + "nodes": [ + 10752348292, + 10752348293, + 10752348281 + ], + "geometry": [ + { "lat": 40.8566085, "lon": -73.9821732 }, + { "lat": 40.8567193, "lon": -73.9820488 }, + { "lat": 40.8567357, "lon": -73.9820114 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156218623, + "bounds": { + "minlat": 40.8565907, + "minlon": -73.9820145, + "maxlat": 40.8566684, + "maxlon": -73.9818996 + }, + "nodes": [ + 10752348286, + 10752348294 + ], + "geometry": [ + { "lat": 40.8565907, "lon": -73.9820145 }, + { "lat": 40.8566684, "lon": -73.9818996 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156218624, + "bounds": { + "minlat": 40.8566826, + "minlon": -73.9819223, + "maxlat": 40.8567165, + "maxlon": -73.9818872 + }, + "nodes": [ + 10752348288, + 10752348295 + ], + "geometry": [ + { "lat": 40.8566826, "lon": -73.9819223 }, + { "lat": 40.8567165, "lon": -73.9818872 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156218625, + "bounds": { + "minlat": 40.8567820, + "minlon": -73.9818212, + "maxlat": 40.8568280, + "maxlon": -73.9817745 + }, + "nodes": [ + 10752348296, + 10752348289 + ], + "geometry": [ + { "lat": 40.8567820, "lon": -73.9818212 }, + { "lat": 40.8568280, "lon": -73.9817745 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156218626, + "bounds": { + "minlat": 40.8566306, + "minlon": -73.9818351, + "maxlat": 40.8566657, + "maxlon": -73.9818009 + }, + "nodes": [ + 10752348290, + 10752348297 + ], + "geometry": [ + { "lat": 40.8566306, "lon": -73.9818351 }, + { "lat": 40.8566657, "lon": -73.9818009 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156218627, + "bounds": { + "minlat": 40.8567316, + "minlon": -73.9817357, + "maxlat": 40.8567790, + "maxlon": -73.9816885 + }, + "nodes": [ + 10752348298, + 10752348291 + ], + "geometry": [ + { "lat": 40.8567316, "lon": -73.9817357 }, + { "lat": 40.8567790, "lon": -73.9816885 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156218635, + "bounds": { + "minlat": 40.8211729, + "minlon": -74.0001302, + "maxlat": 40.8216458, + "maxlon": -73.9997132 + }, + "nodes": [ + 10752415863, + 103194967, + 10752415865, + 10752415870, + 10752415864 + ], + "geometry": [ + { "lat": 40.8216458, "lon": -73.9997132 }, + { "lat": 40.8214721, "lon": -73.9998664 }, + { "lat": 40.8212520, "lon": -74.0000605 }, + { "lat": 40.8211856, "lon": -74.0001190 }, + { "lat": 40.8211729, "lon": -74.0001302 } + ], + "tags": { + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 1156218636, + "bounds": { + "minlat": 40.8211570, + "minlon": -74.0000605, + "maxlat": 40.8213727, + "maxlon": -73.9996768 + }, + "nodes": [ + 10752415865, + 10752415866, + 10752415867 + ], + "geometry": [ + { "lat": 40.8212520, "lon": -74.0000605 }, + { "lat": 40.8211570, "lon": -73.9998736 }, + { "lat": 40.8213727, "lon": -73.9996768 } + ], + "tags": { + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 1156218637, + "bounds": { + "minlat": 40.8210114, + "minlon": -74.0002764, + "maxlat": 40.8211729, + "maxlon": -74.0001302 + }, + "nodes": [ + 10752415869, + 10752415864 + ], + "geometry": [ + { "lat": 40.8210114, "lon": -74.0002764 }, + { "lat": 40.8211729, "lon": -74.0001302 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1156218638, + "bounds": { + "minlat": 40.8209068, + "minlon": -74.0003721, + "maxlat": 40.8210114, + "maxlon": -74.0002764 + }, + "nodes": [ + 10752415868, + 10752415869 + ], + "geometry": [ + { "lat": 40.8209068, "lon": -74.0003721 }, + { "lat": 40.8210114, "lon": -74.0002764 } + ], + "tags": { + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 1156218639, + "bounds": { + "minlat": 40.8210515, + "minlon": -74.0001190, + "maxlat": 40.8211856, + "maxlon": -73.9998569 + }, + "nodes": [ + 10752415870, + 10752415871 + ], + "geometry": [ + { "lat": 40.8211856, "lon": -74.0001190 }, + { "lat": 40.8210515, "lon": -73.9998569 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156301755, + "bounds": { + "minlat": 40.7038530, + "minlon": -73.9512700, + "maxlat": 40.7050197, + "maxlon": -73.9494703 + }, + "nodes": [ + 42522399, + 6245642060, + 9755373360, + 42520562, + 9755373361, + 13495812376, + 9755373364, + 42505420 + ], + "geometry": [ + { "lat": 40.7038530, "lon": -73.9512700 }, + { "lat": 40.7039040, "lon": -73.9511912 }, + { "lat": 40.7044654, "lon": -73.9503235 }, + { "lat": 40.7045440, "lon": -73.9502020 }, + { "lat": 40.7046118, "lon": -73.9500976 }, + { "lat": 40.7048767, "lon": -73.9496903 }, + { "lat": 40.7049661, "lon": -73.9495528 }, + { "lat": 40.7050197, "lon": -73.9494703 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Lynch Street", + "name:etymology:wikidata": "Q537583", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1156301919, + "bounds": { + "minlat": 40.7061090, + "minlon": -73.9537940, + "maxlat": 40.7067090, + "maxlon": -73.9529118 + }, + "nodes": [ + 42490962, + 9772859297, + 9755373410, + 42490968 + ], + "geometry": [ + { "lat": 40.7061090, "lon": -73.9537940 }, + { "lat": 40.7061576, "lon": -73.9537240 }, + { "lat": 40.7066496, "lon": -73.9529992 }, + { "lat": 40.7067090, "lon": -73.9529118 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Hewes Street", + "name:etymology:wikidata": "Q1666382", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hewes", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1156402226, + "bounds": { + "minlat": 40.7108364, + "minlon": -73.9249019, + "maxlat": 40.7110896, + "maxlon": -73.9238709 + }, + "nodes": [ + 10754122134, + 10754122136, + 10754122135 + ], + "geometry": [ + { "lat": 40.7108364, "lon": -73.9249019 }, + { "lat": 40.7108517, "lon": -73.9248397 }, + { "lat": 40.7110896, "lon": -73.9238709 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1156469033, + "bounds": { + "minlat": 40.7128003, + "minlon": -73.9972984, + "maxlat": 40.7134688, + "maxlon": -73.9971151 + }, + "nodes": [ + 42433537, + 11153640071, + 6139477289, + 42435910 + ], + "geometry": [ + { "lat": 40.7134688, "lon": -73.9972984 }, + { "lat": 40.7133808, "lon": -73.9972746 }, + { "lat": 40.7128734, "lon": -73.9971346 }, + { "lat": 40.7128003, "lon": -73.9971151 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Street", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1156469243, + "bounds": { + "minlat": 40.7123696, + "minlon": -73.9937507, + "maxlat": 40.7124636, + "maxlon": -73.9925563 + }, + "nodes": [ + 496707003, + 3316834250, + 9010266063, + 8279851251, + 3212472978 + ], + "geometry": [ + { "lat": 40.7123696, "lon": -73.9937507 }, + { "lat": 40.7124218, "lon": -73.9930957 }, + { "lat": 40.7124525, "lon": -73.9927142 }, + { "lat": 40.7124572, "lon": -73.9926557 }, + { "lat": 40.7124636, "lon": -73.9925563 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "parking:both:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1156474000, + "bounds": { + "minlat": 40.7185836, + "minlon": -73.9917491, + "maxlat": 40.7195624, + "maxlon": -73.9912489 + }, + "nodes": [ + 42429644, + 8231877076, + 8821681988, + 8231896491, + 486867405, + 42429645 + ], + "geometry": [ + { "lat": 40.7185836, "lon": -73.9917491 }, + { "lat": 40.7186433, "lon": -73.9917186 }, + { "lat": 40.7192820, "lon": -73.9913919 }, + { "lat": 40.7193214, "lon": -73.9913718 }, + { "lat": 40.7194191, "lon": -73.9913219 }, + { "lat": 40.7195624, "lon": -73.9912489 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Eldridge Street", + "name:en": "Eldridge Street", + "name:ko": "엘드리지 스트리트", + "name:zh": "愛烈治街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29950420", + "wikipedia": "en:Eldridge Street" + } +}, +{ + "type": "way", + "id": 1156475211, + "bounds": { + "minlat": 40.7181237, + "minlon": -73.9902319, + "maxlat": 40.7189582, + "maxlon": -73.9898116 + }, + "nodes": [ + 42432103, + 8231896468, + 7097867534, + 12195880610, + 5296792750, + 486867490 + ], + "geometry": [ + { "lat": 40.7181237, "lon": -73.9902319 }, + { "lat": 40.7181781, "lon": -73.9902043 }, + { "lat": 40.7181900, "lon": -73.9901982 }, + { "lat": 40.7188171, "lon": -73.9898850 }, + { "lat": 40.7188655, "lon": -73.9898598 }, + { "lat": 40.7189582, "lon": -73.9898116 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Su-We 12:00-21:00; Th-Sa 12:00-23:00)", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 1156475401, + "bounds": { + "minlat": 40.7176500, + "minlon": -73.9886710, + "maxlat": 40.7183352, + "maxlon": -73.9883198 + }, + "nodes": [ + 42432099, + 8231896473, + 12195869793, + 11040080980, + 12195869790 + ], + "geometry": [ + { "lat": 40.7176500, "lon": -73.9886710 }, + { "lat": 40.7177096, "lon": -73.9886416 }, + { "lat": 40.7177574, "lon": -73.9886181 }, + { "lat": 40.7181635, "lon": -73.9884095 }, + { "lat": 40.7183352, "lon": -73.9883198 } + ], + "tags": { + "access:lanes:backward": "yes|yes|no", + "bus:lanes:backward": "yes|yes|designated", + "cycleway:both": "no", + "highway": "residential", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Essex Street", + "name:etymology:wikidata": "Q23240", + "name:ko": "에식스 스트리트", + "name:ru": "Эссекс-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "turn:lanes:forward": "|right", + "wikidata": "Q4532801", + "wikipedia": "en:Essex Street" + } +}, +{ + "type": "way", + "id": 1156566130, + "bounds": { + "minlat": 40.8142312, + "minlon": -73.9889431, + "maxlat": 40.8143573, + "maxlon": -73.9887760 + }, + "nodes": [ + 10755643308, + 10755643309, + 10755643310, + 10755643311, + 10755643312, + 10755602494, + 10755602495, + 10755602496, + 10755602497, + 10755602502, + 10755602503, + 10755602504, + 10755643305, + 10755643306, + 10755643307, + 10755602498, + 10755602499, + 10755602500, + 10755602501, + 10755643308 + ], + "geometry": [ + { "lat": 40.8143573, "lon": -73.9888584 }, + { "lat": 40.8143542, "lon": -73.9888855 }, + { "lat": 40.8143446, "lon": -73.9889098 }, + { "lat": 40.8143295, "lon": -73.9889288 }, + { "lat": 40.8143106, "lon": -73.9889403 }, + { "lat": 40.8142900, "lon": -73.9889431 }, + { "lat": 40.8142696, "lon": -73.9889368 }, + { "lat": 40.8142518, "lon": -73.9889221 }, + { "lat": 40.8142386, "lon": -73.9889005 }, + { "lat": 40.8142315, "lon": -73.9888745 }, + { "lat": 40.8142312, "lon": -73.9888468 }, + { "lat": 40.8142378, "lon": -73.9888205 }, + { "lat": 40.8142504, "lon": -73.9887984 }, + { "lat": 40.8142679, "lon": -73.9887830 }, + { "lat": 40.8142881, "lon": -73.9887760 }, + { "lat": 40.8143091, "lon": -73.9887781 }, + { "lat": 40.8143281, "lon": -73.9887889 }, + { "lat": 40.8143436, "lon": -73.9888073 }, + { "lat": 40.8143536, "lon": -73.9888313 }, + { "lat": 40.8143573, "lon": -73.9888584 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1156566131, + "bounds": { + "minlat": 40.8143295, + "minlon": -73.9893190, + "maxlat": 40.8144933, + "maxlon": -73.9889288 + }, + "nodes": [ + 10755643311, + 10755643314, + 10755643315, + 10755643316, + 7915916143 + ], + "geometry": [ + { "lat": 40.8143295, "lon": -73.9889288 }, + { "lat": 40.8143552, "lon": -73.9890255 }, + { "lat": 40.8144009, "lon": -73.9891403 }, + { "lat": 40.8144933, "lon": -73.9892691 }, + { "lat": 40.8144877, "lon": -73.9893190 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1156566132, + "bounds": { + "minlat": 40.8143493, + "minlon": -73.9891978, + "maxlat": 40.8144009, + "maxlon": -73.9891403 + }, + "nodes": [ + 10755643315, + 10755643317 + ], + "geometry": [ + { "lat": 40.8144009, "lon": -73.9891403 }, + { "lat": 40.8143493, "lon": -73.9891978 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156566133, + "bounds": { + "minlat": 40.8144877, + "minlon": -73.9893762, + "maxlat": 40.8145452, + "maxlon": -73.9893190 + }, + "nodes": [ + 103284386, + 7915916143 + ], + "geometry": [ + { "lat": 40.8145452, "lon": -73.9893762 }, + { "lat": 40.8144877, "lon": -73.9893190 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156566134, + "bounds": { + "minlat": 40.8143536, + "minlon": -73.9891403, + "maxlat": 40.8146428, + "maxlon": -73.9886484 + }, + "nodes": [ + 10755643315, + 10755643318, + 10755643323, + 10755643319, + 10755643320, + 10755643322, + 10755643321, + 10755602501 + ], + "geometry": [ + { "lat": 40.8144009, "lon": -73.9891403 }, + { "lat": 40.8146360, "lon": -73.9888118 }, + { "lat": 40.8146428, "lon": -73.9887840 }, + { "lat": 40.8146395, "lon": -73.9887571 }, + { "lat": 40.8145797, "lon": -73.9886592 }, + { "lat": 40.8145541, "lon": -73.9886484 }, + { "lat": 40.8145296, "lon": -73.9886516 }, + { "lat": 40.8143536, "lon": -73.9888313 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1156566135, + "bounds": { + "minlat": 40.8143943, + "minlon": -73.9899594, + "maxlat": 40.8145452, + "maxlon": -73.9893762 + }, + "nodes": [ + 103284386, + 103284384, + 103284380, + 103284378, + 103207041 + ], + "geometry": [ + { "lat": 40.8145452, "lon": -73.9893762 }, + { "lat": 40.8144752, "lon": -73.9895738 }, + { "lat": 40.8144346, "lon": -73.9896919 }, + { "lat": 40.8143998, "lon": -73.9898398 }, + { "lat": 40.8143943, "lon": -73.9899594 } + ], + "tags": { + "highway": "residential", + "name": "Adolphus Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Adolphus", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 1156810185, + "bounds": { + "minlat": 40.7036181, + "minlon": -74.0144028, + "maxlat": 40.7045416, + "maxlon": -74.0142499 + }, + "nodes": [ + 42444479, + 7685650169, + 9371812382, + 7072589171, + 13706435769, + 10316226199, + 7072589170, + 7685535239, + 588546891 + ], + "geometry": [ + { "lat": 40.7036181, "lon": -74.0144028 }, + { "lat": 40.7036766, "lon": -74.0143914 }, + { "lat": 40.7041836, "lon": -74.0142869 }, + { "lat": 40.7043398, "lon": -74.0142549 }, + { "lat": 40.7043970, "lon": -74.0142513 }, + { "lat": 40.7044122, "lon": -74.0142504 }, + { "lat": 40.7044642, "lon": -74.0142499 }, + { "lat": 40.7045186, "lon": -74.0142537 }, + { "lat": 40.7045416, "lon": -74.0142564 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "State Street", + "name:etymology:wikidata": "Q1384", + "name:ko": "스테이트 스트리트", + "name:ru": "Стейт-стрит", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "State", + "tiger:name_type": "St", + "turn:lanes:backward": "left;through", + "wikidata": "Q13461917", + "wikipedia": "en:State Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1156946156, + "bounds": { + "minlat": 40.7619192, + "minlon": -73.9968900, + "maxlat": 40.7627398, + "maxlon": -73.9949256 + }, + "nodes": [ + 593921857, + 10166521618, + 42430685 + ], + "geometry": [ + { "lat": 40.7619192, "lon": -73.9949256 }, + { "lat": 40.7626942, "lon": -73.9967809 }, + { "lat": 40.7627398, "lon": -73.9968900 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1156946157, + "bounds": { + "minlat": 40.7621145, + "minlon": -73.9973436, + "maxlat": 40.7627398, + "maxlon": -73.9968900 + }, + "nodes": [ + 42430685, + 10166505416, + 10166505408, + 42430680 + ], + "geometry": [ + { "lat": 40.7627398, "lon": -73.9968900 }, + { "lat": 40.7626898, "lon": -73.9969263 }, + { "lat": 40.7621779, "lon": -73.9972975 }, + { "lat": 40.7621145, "lon": -73.9973436 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1156946158, + "bounds": { + "minlat": 40.7627398, + "minlon": -73.9968900, + "maxlat": 40.7633667, + "maxlon": -73.9964368 + }, + "nodes": [ + 42430688, + 10166521627, + 10166521620, + 42430685 + ], + "geometry": [ + { "lat": 40.7633667, "lon": -73.9964368 }, + { "lat": 40.7633193, "lon": -73.9964710 }, + { "lat": 40.7628047, "lon": -73.9968430 }, + { "lat": 40.7627398, "lon": -73.9968900 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "through|through|through|through;right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1156946159, + "bounds": { + "minlat": 40.7625317, + "minlon": -73.9964368, + "maxlat": 40.7633667, + "maxlon": -73.9944293 + }, + "nodes": [ + 42430688, + 10166521629, + 5481842905, + 13701242657, + 593921859 + ], + "geometry": [ + { "lat": 40.7633667, "lon": -73.9964368 }, + { "lat": 40.7633224, "lon": -73.9963275 }, + { "lat": 40.7630840, "lon": -73.9957408 }, + { "lat": 40.7629953, "lon": -73.9955302 }, + { "lat": 40.7625317, "lon": -73.9944293 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1156946160, + "bounds": { + "minlat": 40.7631593, + "minlon": -73.9959815, + "maxlat": 40.7639924, + "maxlon": -73.9939806 + }, + "nodes": [ + 593921845, + 10166521640, + 42430691 + ], + "geometry": [ + { "lat": 40.7631593, "lon": -73.9939806 }, + { "lat": 40.7639441, "lon": -73.9958654 }, + { "lat": 40.7639924, "lon": -73.9959815 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 47th Street", + "name:ru": "Западная 47-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4638574", + "wikipedia": "en:47th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1156946161, + "bounds": { + "minlat": 40.7633667, + "minlon": -73.9964368, + "maxlat": 40.7639924, + "maxlon": -73.9959815 + }, + "nodes": [ + 42430691, + 10166521638, + 10166521631, + 42430688 + ], + "geometry": [ + { "lat": 40.7639924, "lon": -73.9959815 }, + { "lat": 40.7639368, "lon": -73.9960215 }, + { "lat": 40.7634326, "lon": -73.9963888 }, + { "lat": 40.7633667, "lon": -73.9964368 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|through|through|through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1157027206, + "bounds": { + "minlat": 40.7096669, + "minlon": -74.0117165, + "maxlat": 40.7097287, + "maxlon": -74.0116583 + }, + "nodes": [ + 8840333845, + 10759683220, + 42422038 + ], + "geometry": [ + { "lat": 40.7097287, "lon": -74.0117165 }, + { "lat": 40.7096985, "lon": -74.0116883 }, + { "lat": 40.7096669, "lon": -74.0116583 } + ], + "tags": { + "access": "no", + "highway": "service", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "service": "emergency_access", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1157288844, + "bounds": { + "minlat": 40.7461086, + "minlon": -73.9308642, + "maxlat": 40.7463707, + "maxlon": -73.9308163 + }, + "nodes": [ + 10762202912, + 10762202913, + 10762202914 + ], + "geometry": [ + { "lat": 40.7463707, "lon": -73.9308163 }, + { "lat": 40.7462701, "lon": -73.9308347 }, + { "lat": 40.7461086, "lon": -73.9308642 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1157288851, + "bounds": { + "minlat": 40.7468088, + "minlon": -73.9293762, + "maxlat": 40.7468190, + "maxlon": -73.9292830 + }, + "nodes": [ + 7095808408, + 10762202928 + ], + "geometry": [ + { "lat": 40.7468190, "lon": -73.9293762 }, + { "lat": 40.7468088, "lon": -73.9292830 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1157298248, + "bounds": { + "minlat": 40.7356383, + "minlon": -73.9230607, + "maxlat": 40.7357182, + "maxlon": -73.9230405 + }, + "nodes": [ + 9194902524, + 42825301 + ], + "geometry": [ + { "lat": 40.7357182, "lon": -73.9230405 }, + { "lat": 40.7356383, "lon": -73.9230607 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1157427092, + "bounds": { + "minlat": 40.7570688, + "minlon": -73.9128280, + "maxlat": 40.7570794, + "maxlon": -73.9127377 + }, + "nodes": [ + 42904502, + 4912692272 + ], + "geometry": [ + { "lat": 40.7570794, "lon": -73.9128280 }, + { "lat": 40.7570688, "lon": -73.9127377 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1157521335, + "bounds": { + "minlat": 40.7847937, + "minlon": -73.9147710, + "maxlat": 40.7853269, + "maxlon": -73.9140926 + }, + "nodes": [ + 10764684389, + 10764684390, + 10764684391, + 10764684392, + 10764684393, + 10764684394 + ], + "geometry": [ + { "lat": 40.7853269, "lon": -73.9147710 }, + { "lat": 40.7852922, "lon": -73.9147166 }, + { "lat": 40.7852403, "lon": -73.9146486 }, + { "lat": 40.7851853, "lon": -73.9146379 }, + { "lat": 40.7848435, "lon": -73.9141559 }, + { "lat": 40.7847937, "lon": -73.9140926 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1157521336, + "bounds": { + "minlat": 40.7843308, + "minlon": -73.9140372, + "maxlat": 40.7848389, + "maxlon": -73.9134336 + }, + "nodes": [ + 10764684395, + 10764684396, + 10764684397, + 10764684398, + 10764684399, + 10764684400 + ], + "geometry": [ + { "lat": 40.7848389, "lon": -73.9140372 }, + { "lat": 40.7848013, "lon": -73.9139852 }, + { "lat": 40.7847202, "lon": -73.9138979 }, + { "lat": 40.7846046, "lon": -73.9138280 }, + { "lat": 40.7843752, "lon": -73.9134947 }, + { "lat": 40.7843308, "lon": -73.9134336 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1157604392, + "bounds": { + "minlat": 40.8492420, + "minlon": -73.9168251, + "maxlat": 40.8494055, + "maxlon": -73.9165168 + }, + "nodes": [ + 10765464226, + 13181365255, + 10765464227, + 10765464228 + ], + "geometry": [ + { "lat": 40.8494055, "lon": -73.9168251 }, + { "lat": 40.8493374, "lon": -73.9167358 }, + { "lat": 40.8492420, "lon": -73.9166107 }, + { "lat": 40.8492443, "lon": -73.9165168 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1157604393, + "bounds": { + "minlat": 40.8492420, + "minlon": -73.9166300, + "maxlat": 40.8493284, + "maxlon": -73.9166107 + }, + "nodes": [ + 10765464227, + 10765464233 + ], + "geometry": [ + { "lat": 40.8492420, "lon": -73.9166107 }, + { "lat": 40.8493284, "lon": -73.9166300 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1157604394, + "bounds": { + "minlat": 40.8493677, + "minlon": -73.9165715, + "maxlat": 40.8493758, + "maxlon": -73.9164685 + }, + "nodes": [ + 10765464234, + 10765464230 + ], + "geometry": [ + { "lat": 40.8493758, "lon": -73.9165715 }, + { "lat": 40.8493677, "lon": -73.9164685 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1157604395, + "bounds": { + "minlat": 40.8493284, + "minlon": -73.9166300, + "maxlat": 40.8493758, + "maxlon": -73.9165715 + }, + "nodes": [ + 10765464233, + 10765464234 + ], + "geometry": [ + { "lat": 40.8493284, "lon": -73.9166300 }, + { "lat": 40.8493758, "lon": -73.9165715 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1157604396, + "bounds": { + "minlat": 40.8492864, + "minlon": -73.9165734, + "maxlat": 40.8493310, + "maxlon": -73.9165111 + }, + "nodes": [ + 10765464231, + 10765464232 + ], + "geometry": [ + { "lat": 40.8493310, "lon": -73.9165111 }, + { "lat": 40.8492864, "lon": -73.9165734 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1157604397, + "bounds": { + "minlat": 40.8492420, + "minlon": -73.9166107, + "maxlat": 40.8492864, + "maxlon": -73.9165734 + }, + "nodes": [ + 10765464232, + 10765464227 + ], + "geometry": [ + { "lat": 40.8492864, "lon": -73.9165734 }, + { "lat": 40.8492420, "lon": -73.9166107 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1157604398, + "bounds": { + "minlat": 40.8492872, + "minlon": -73.9165111, + "maxlat": 40.8493677, + "maxlon": -73.9164521 + }, + "nodes": [ + 10765464229, + 10765464230, + 10765464231 + ], + "geometry": [ + { "lat": 40.8492872, "lon": -73.9164521 }, + { "lat": 40.8493677, "lon": -73.9164685 }, + { "lat": 40.8493310, "lon": -73.9165111 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1157604399, + "bounds": { + "minlat": 40.8492443, + "minlon": -73.9165168, + "maxlat": 40.8492872, + "maxlon": -73.9164521 + }, + "nodes": [ + 10765464228, + 10765464229 + ], + "geometry": [ + { "lat": 40.8492443, "lon": -73.9165168 }, + { "lat": 40.8492872, "lon": -73.9164521 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1157604400, + "bounds": { + "minlat": 40.8493150, + "minlon": -73.9164685, + "maxlat": 40.8493677, + "maxlon": -73.9161234 + }, + "nodes": [ + 10765464230, + 10765464235, + 10765464236 + ], + "geometry": [ + { "lat": 40.8493677, "lon": -73.9164685 }, + { "lat": 40.8493150, "lon": -73.9163928 }, + { "lat": 40.8493364, "lon": -73.9161234 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1157604401, + "bounds": { + "minlat": 40.8493677, + "minlon": -73.9166486, + "maxlat": 40.8495298, + "maxlon": -73.9164685 + }, + "nodes": [ + 10765464230, + 13181365254, + 10765464237 + ], + "geometry": [ + { "lat": 40.8493677, "lon": -73.9164685 }, + { "lat": 40.8494514, "lon": -73.9165615 }, + { "lat": 40.8495298, "lon": -73.9166486 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1157664114, + "bounds": { + "minlat": 40.7508820, + "minlon": -73.9944155, + "maxlat": 40.7515320, + "maxlon": -73.9939428 + }, + "nodes": [ + 8262309024, + 8660596996, + 42435642 + ], + "geometry": [ + { "lat": 40.7508820, "lon": -73.9944155 }, + { "lat": 40.7514640, "lon": -73.9939926 }, + { "lat": 40.7515320, "lon": -73.9939428 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1157765268, + "bounds": { + "minlat": 40.7058049, + "minlon": -74.0133569, + "maxlat": 40.7058880, + "maxlon": -74.0132806 + }, + "nodes": [ + 42428365, + 7072589168, + 10316226053 + ], + "geometry": [ + { "lat": 40.7058880, "lon": -74.0132806 }, + { "lat": 40.7058483, "lon": -74.0133188 }, + { "lat": 40.7058049, "lon": -74.0133569 } + ], + "tags": { + "bus:lanes": "yes|designated", + "busway:right": "lane", + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:zip_left": "10003", + "tiger:zip_right": "10003", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1157765342, + "bounds": { + "minlat": 40.7063304, + "minlon": -74.0118707, + "maxlat": 40.7065553, + "maxlon": -74.0113467 + }, + "nodes": [ + 11051773159, + 11051773177, + 11051778443, + 42432683 + ], + "geometry": [ + { "lat": 40.7063304, "lon": -74.0113467 }, + { "lat": 40.7065213, "lon": -74.0117913 }, + { "lat": 40.7065339, "lon": -74.0118209 }, + { "lat": 40.7065553, "lon": -74.0118707 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Exchange Place", + "name:etymology:wikidata": "Q1097619", + "name:ko": "익스체인지 플레이스", + "name:ru": "Эксчейндж-Плейс", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Exchange", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q13578686", + "wikipedia": "en:Exchange Place (Manhattan)" + } +}, +{ + "type": "way", + "id": 1158116369, + "bounds": { + "minlat": 40.7232336, + "minlon": -73.9969003, + "maxlat": 40.7234455, + "maxlon": -73.9966751 + }, + "nodes": [ + 10770328374, + 10770328375, + 10770328376, + 10770328377, + 10770328378, + 10770328379 + ], + "geometry": [ + { "lat": 40.7234117, "lon": -73.9966751 }, + { "lat": 40.7234362, "lon": -73.9967930 }, + { "lat": 40.7234455, "lon": -73.9968327 }, + { "lat": 40.7232685, "lon": -73.9969003 }, + { "lat": 40.7232597, "lon": -73.9968626 }, + { "lat": 40.7232336, "lon": -73.9967461 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1158491835, + "bounds": { + "minlat": 40.7113856, + "minlon": -74.0082065, + "maxlat": 40.7114635, + "maxlon": -74.0079458 + }, + "nodes": [ + 8262936586, + 588545728 + ], + "geometry": [ + { "lat": 40.7113856, "lon": -74.0082065 }, + { "lat": 40.7114635, "lon": -74.0079458 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 1158491836, + "bounds": { + "minlat": 40.7103389, + "minlon": -74.0095729, + "maxlat": 40.7104309, + "maxlon": -74.0094861 + }, + "nodes": [ + 42428379, + 10297381655, + 8281922225, + 42428377 + ], + "geometry": [ + { "lat": 40.7104309, "lon": -74.0094861 }, + { "lat": 40.7103887, "lon": -74.0095248 }, + { "lat": 40.7103653, "lon": -74.0095459 }, + { "lat": 40.7103389, "lon": -74.0095729 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|yes|designated", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete:plates", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1158491837, + "bounds": { + "minlat": 40.7097661, + "minlon": -74.0100675, + "maxlat": 40.7098263, + "maxlon": -74.0100172 + }, + "nodes": [ + 42428376, + 8281922230, + 10299849716 + ], + "geometry": [ + { "lat": 40.7098263, "lon": -74.0100172 }, + { "lat": 40.7097866, "lon": -74.0100498 }, + { "lat": 40.7097661, "lon": -74.0100675 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete:plates", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1158491838, + "bounds": { + "minlat": 40.7093856, + "minlon": -74.0103931, + "maxlat": 40.7097661, + "maxlon": -74.0100675 + }, + "nodes": [ + 10299849716, + 10299839473 + ], + "geometry": [ + { "lat": 40.7097661, "lon": -74.0100675 }, + { "lat": 40.7093856, "lon": -74.0103931 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete:plates", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1158567367, + "bounds": { + "minlat": 40.7461835, + "minlon": -73.9203642, + "maxlat": 40.7462302, + "maxlon": -73.9199922 + }, + "nodes": [ + 10774405531, + 11694597574, + 10774405532 + ], + "geometry": [ + { "lat": 40.7462302, "lon": -73.9203642 }, + { "lat": 40.7461934, "lon": -73.9200713 }, + { "lat": 40.7461835, "lon": -73.9199922 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1158568261, + "bounds": { + "minlat": 40.7465024, + "minlon": -73.9284433, + "maxlat": 40.7466606, + "maxlon": -73.9280177 + }, + "nodes": [ + 7095826103, + 10774405542, + 10774405540, + 10774405541 + ], + "geometry": [ + { "lat": 40.7466606, "lon": -73.9284433 }, + { "lat": 40.7466512, "lon": -73.9283617 }, + { "lat": 40.7466115, "lon": -73.9280177 }, + { "lat": 40.7465024, "lon": -73.9280385 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1158571127, + "bounds": { + "minlat": 40.7465433, + "minlon": -73.9138287, + "maxlat": 40.7474203, + "maxlon": -73.9136692 + }, + "nodes": [ + 10774422784, + 10774422785, + 10774422797, + 10774422786, + 10774422787 + ], + "geometry": [ + { "lat": 40.7465433, "lon": -73.9138287 }, + { "lat": 40.7467565, "lon": -73.9137921 }, + { "lat": 40.7468880, "lon": -73.9137693 }, + { "lat": 40.7470137, "lon": -73.9137474 }, + { "lat": 40.7474203, "lon": -73.9136692 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571128, + "bounds": { + "minlat": 40.7475009, + "minlon": -73.9140220, + "maxlat": 40.7475412, + "maxlon": -73.9136550 + }, + "nodes": [ + 10774422789, + 10774422796, + 10774422790 + ], + "geometry": [ + { "lat": 40.7475412, "lon": -73.9140220 }, + { "lat": 40.7475336, "lon": -73.9139528 }, + { "lat": 40.7475009, "lon": -73.9136550 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571129, + "bounds": { + "minlat": 40.7474597, + "minlon": -73.9136633, + "maxlat": 40.7482854, + "maxlon": -73.9134969 + }, + "nodes": [ + 10774422791, + 10774422790, + 10774422793, + 10774422792 + ], + "geometry": [ + { "lat": 40.7474597, "lon": -73.9136633 }, + { "lat": 40.7475009, "lon": -73.9136550 }, + { "lat": 40.7482441, "lon": -73.9135052 }, + { "lat": 40.7482854, "lon": -73.9134969 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571130, + "bounds": { + "minlat": 40.7482441, + "minlon": -73.9138724, + "maxlat": 40.7482887, + "maxlon": -73.9135052 + }, + "nodes": [ + 10774422793, + 10774422795, + 10774422794 + ], + "geometry": [ + { "lat": 40.7482441, "lon": -73.9135052 }, + { "lat": 40.7482802, "lon": -73.9138029 }, + { "lat": 40.7482887, "lon": -73.9138724 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571131, + "bounds": { + "minlat": 40.7468880, + "minlon": -73.9141446, + "maxlat": 40.7469292, + "maxlon": -73.9137693 + }, + "nodes": [ + 10774422797, + 10774439672, + 10774422798 + ], + "geometry": [ + { "lat": 40.7468880, "lon": -73.9137693 }, + { "lat": 40.7469216, "lon": -73.9140757 }, + { "lat": 40.7469292, "lon": -73.9141446 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571132, + "bounds": { + "minlat": 40.7465433, + "minlon": -73.9142125, + "maxlat": 40.7465900, + "maxlon": -73.9138287 + }, + "nodes": [ + 10774422783, + 10774422788, + 10774422784 + ], + "geometry": [ + { "lat": 40.7465900, "lon": -73.9142125 }, + { "lat": 40.7465817, "lon": -73.9141440 }, + { "lat": 40.7465433, "lon": -73.9138287 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571133, + "bounds": { + "minlat": 40.7474875, + "minlon": -73.9134531, + "maxlat": 40.7484749, + "maxlon": -73.9132768 + }, + "nodes": [ + 10774422799, + 10774422804, + 10774422801, + 10774422800 + ], + "geometry": [ + { "lat": 40.7484749, "lon": -73.9132768 }, + { "lat": 40.7480179, "lon": -73.9133584 }, + { "lat": 40.7475276, "lon": -73.9134459 }, + { "lat": 40.7474875, "lon": -73.9134531 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571134, + "bounds": { + "minlat": 40.7474847, + "minlon": -73.9134459, + "maxlat": 40.7475276, + "maxlon": -73.9130874 + }, + "nodes": [ + 10774422801, + 10774422803, + 10774422802 + ], + "geometry": [ + { "lat": 40.7475276, "lon": -73.9134459 }, + { "lat": 40.7474948, "lon": -73.9131722 }, + { "lat": 40.7474847, "lon": -73.9130874 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571135, + "bounds": { + "minlat": 40.7479758, + "minlon": -73.9133584, + "maxlat": 40.7480179, + "maxlon": -73.9129876 + }, + "nodes": [ + 10774422804, + 10774439406, + 10774439405 + ], + "geometry": [ + { "lat": 40.7480179, "lon": -73.9133584 }, + { "lat": 40.7479855, "lon": -73.9130727 }, + { "lat": 40.7479758, "lon": -73.9129876 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571136, + "bounds": { + "minlat": 40.7463647, + "minlon": -73.9127510, + "maxlat": 40.7468105, + "maxlon": -73.9126693 + }, + "nodes": [ + 10774439407, + 10774439408 + ], + "geometry": [ + { "lat": 40.7468105, "lon": -73.9126693 }, + { "lat": 40.7463647, "lon": -73.9127510 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571137, + "bounds": { + "minlat": 40.7463169, + "minlon": -73.9127510, + "maxlat": 40.7463647, + "maxlon": -73.9123627 + }, + "nodes": [ + 10774439408, + 10774439410, + 10774439409 + ], + "geometry": [ + { "lat": 40.7463647, "lon": -73.9127510 }, + { "lat": 40.7463263, "lon": -73.9124391 }, + { "lat": 40.7463169, "lon": -73.9123627 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571138, + "bounds": { + "minlat": 40.7455982, + "minlon": -73.9134577, + "maxlat": 40.7456390, + "maxlon": -73.9130315 + }, + "nodes": [ + 10774439411, + 10774439413, + 10774439412 + ], + "geometry": [ + { "lat": 40.7455982, "lon": -73.9130315 }, + { "lat": 40.7456320, "lon": -73.9133842 }, + { "lat": 40.7456390, "lon": -73.9134577 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571139, + "bounds": { + "minlat": 40.7466646, + "minlon": -73.9145974, + "maxlat": 40.7476419, + "maxlon": -73.9144081 + }, + "nodes": [ + 10774439414, + 10774439416, + 10774439415 + ], + "geometry": [ + { "lat": 40.7466646, "lon": -73.9145974 }, + { "lat": 40.7475865, "lon": -73.9144184 }, + { "lat": 40.7476419, "lon": -73.9144081 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571140, + "bounds": { + "minlat": 40.7475412, + "minlon": -73.9144184, + "maxlat": 40.7475865, + "maxlon": -73.9140220 + }, + "nodes": [ + 10774439416, + 10774439418, + 10774439417, + 10774422789 + ], + "geometry": [ + { "lat": 40.7475865, "lon": -73.9144184 }, + { "lat": 40.7475817, "lon": -73.9143764 }, + { "lat": 40.7475519, "lon": -73.9141155 }, + { "lat": 40.7475412, "lon": -73.9140220 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571141, + "bounds": { + "minlat": 40.7470240, + "minlon": -73.9146915, + "maxlat": 40.7475395, + "maxlon": -73.9145928 + }, + "nodes": [ + 10774439419, + 10774439421, + 10774439420 + ], + "geometry": [ + { "lat": 40.7475395, "lon": -73.9145928 }, + { "lat": 40.7470577, "lon": -73.9146850 }, + { "lat": 40.7470240, "lon": -73.9146915 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571142, + "bounds": { + "minlat": 40.7470577, + "minlon": -73.9150596, + "maxlat": 40.7470998, + "maxlon": -73.9146850 + }, + "nodes": [ + 10774439421, + 10774439675, + 10774439422 + ], + "geometry": [ + { "lat": 40.7470577, "lon": -73.9146850 }, + { "lat": 40.7470921, "lon": -73.9149910 }, + { "lat": 40.7470998, "lon": -73.9150596 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571143, + "bounds": { + "minlat": 40.7475395, + "minlon": -73.9149628, + "maxlat": 40.7475815, + "maxlon": -73.9145928 + }, + "nodes": [ + 10774439423, + 10774439676, + 10774439419 + ], + "geometry": [ + { "lat": 40.7475815, "lon": -73.9149628 }, + { "lat": 40.7475736, "lon": -73.9148930 }, + { "lat": 40.7475395, "lon": -73.9145928 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571144, + "bounds": { + "minlat": 40.7466592, + "minlon": -73.9151404, + "maxlat": 40.7466998, + "maxlon": -73.9147673 + }, + "nodes": [ + 10774439424, + 10774439673, + 10774439425 + ], + "geometry": [ + { "lat": 40.7466998, "lon": -73.9151404 }, + { "lat": 40.7466924, "lon": -73.9150724 }, + { "lat": 40.7466592, "lon": -73.9147673 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571145, + "bounds": { + "minlat": 40.7466592, + "minlon": -73.9147673, + "maxlat": 40.7467130, + "maxlon": -73.9147436 + }, + "nodes": [ + 10774439425, + 10774439427, + 10774439426 + ], + "geometry": [ + { "lat": 40.7466592, "lon": -73.9147673 }, + { "lat": 40.7466839, "lon": -73.9147525 }, + { "lat": 40.7467130, "lon": -73.9147436 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571146, + "bounds": { + "minlat": 40.7467378, + "minlon": -73.9147355, + "maxlat": 40.7468408, + "maxlon": -73.9147156 + }, + "nodes": [ + 10774439428, + 10774439430, + 10774439429 + ], + "geometry": [ + { "lat": 40.7468408, "lon": -73.9147156 }, + { "lat": 40.7467901, "lon": -73.9147254 }, + { "lat": 40.7467378, "lon": -73.9147355 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571147, + "bounds": { + "minlat": 40.7467901, + "minlon": -73.9151108, + "maxlat": 40.7468463, + "maxlon": -73.9147254 + }, + "nodes": [ + 10774439430, + 10774439431, + 10774439432, + 4614980641 + ], + "geometry": [ + { "lat": 40.7467901, "lon": -73.9147254 }, + { "lat": 40.7468254, "lon": -73.9150453 }, + { "lat": 40.7468349, "lon": -73.9150801 }, + { "lat": 40.7468463, "lon": -73.9151108 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571148, + "bounds": { + "minlat": 40.7469273, + "minlon": -73.9150863, + "maxlat": 40.7469679, + "maxlon": -73.9147002 + }, + "nodes": [ + 10774439433, + 10774439674, + 10774439434 + ], + "geometry": [ + { "lat": 40.7469679, "lon": -73.9150863 }, + { "lat": 40.7469607, "lon": -73.9150178 }, + { "lat": 40.7469273, "lon": -73.9147002 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571149, + "bounds": { + "minlat": 40.7468744, + "minlon": -73.9147096, + "maxlat": 40.7469796, + "maxlon": -73.9146908 + }, + "nodes": [ + 10774439435, + 10774439434, + 10774439436 + ], + "geometry": [ + { "lat": 40.7469796, "lon": -73.9146908 }, + { "lat": 40.7469273, "lon": -73.9147002 }, + { "lat": 40.7468744, "lon": -73.9147096 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571150, + "bounds": { + "minlat": 40.7472812, + "minlon": -73.9159495, + "maxlat": 40.7473957, + "maxlon": -73.9150231 + }, + "nodes": [ + 10774439437, + 10774439441, + 10774439439, + 10774439440, + 10774439438 + ], + "geometry": [ + { "lat": 40.7473957, "lon": -73.9159495 }, + { "lat": 40.7473845, "lon": -73.9158584 }, + { "lat": 40.7473033, "lon": -73.9152016 }, + { "lat": 40.7472900, "lon": -73.9150942 }, + { "lat": 40.7472812, "lon": -73.9150231 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571151, + "bounds": { + "minlat": 40.7476859, + "minlon": -73.9143966, + "maxlat": 40.7486029, + "maxlon": -73.9142039 + }, + "nodes": [ + 10774439442, + 10774439447, + 10774439444, + 10774439443 + ], + "geometry": [ + { "lat": 40.7486029, "lon": -73.9142039 }, + { "lat": 40.7481621, "lon": -73.9142965 }, + { "lat": 40.7477218, "lon": -73.9143890 }, + { "lat": 40.7476859, "lon": -73.9143966 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571152, + "bounds": { + "minlat": 40.7476730, + "minlon": -73.9143890, + "maxlat": 40.7477218, + "maxlon": -73.9139956 + }, + "nodes": [ + 10774439444, + 10774439445, + 10774439446 + ], + "geometry": [ + { "lat": 40.7477218, "lon": -73.9143890 }, + { "lat": 40.7476850, "lon": -73.9140890 }, + { "lat": 40.7476730, "lon": -73.9139956 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571153, + "bounds": { + "minlat": 40.7481151, + "minlon": -73.9142965, + "maxlat": 40.7481621, + "maxlon": -73.9139071 + }, + "nodes": [ + 10774439447, + 10774439449, + 10774439448 + ], + "geometry": [ + { "lat": 40.7481621, "lon": -73.9142965 }, + { "lat": 40.7481264, "lon": -73.9140012 }, + { "lat": 40.7481151, "lon": -73.9139071 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571154, + "bounds": { + "minlat": 40.7485599, + "minlon": -73.9142039, + "maxlat": 40.7486029, + "maxlon": -73.9138180 + }, + "nodes": [ + 10774439442, + 10774439451, + 10774439450 + ], + "geometry": [ + { "lat": 40.7486029, "lon": -73.9142039 }, + { "lat": 40.7485705, "lon": -73.9139129 }, + { "lat": 40.7485599, "lon": -73.9138180 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571155, + "bounds": { + "minlat": 40.7481490, + "minlon": -73.9157786, + "maxlat": 40.7482501, + "maxlon": -73.9148478 + }, + "nodes": [ + 10774439452, + 10774439455, + 10774439454, + 10774439453 + ], + "geometry": [ + { "lat": 40.7482501, "lon": -73.9157786 }, + { "lat": 40.7482404, "lon": -73.9156900 }, + { "lat": 40.7481578, "lon": -73.9149287 }, + { "lat": 40.7481490, "lon": -73.9148478 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571156, + "bounds": { + "minlat": 40.7447748, + "minlon": -73.9145643, + "maxlat": 40.7448352, + "maxlon": -73.9139364 + }, + "nodes": [ + 10774439456, + 10774439459, + 10774439458, + 10774439457 + ], + "geometry": [ + { "lat": 40.7448352, "lon": -73.9145643 }, + { "lat": 40.7448278, "lon": -73.9144878 }, + { "lat": 40.7447947, "lon": -73.9141438 }, + { "lat": 40.7447748, "lon": -73.9139364 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571157, + "bounds": { + "minlat": 40.7449992, + "minlon": -73.9135830, + "maxlat": 40.7450335, + "maxlon": -73.9130065 + }, + "nodes": [ + 10774439460, + 10774439461, + 10774439462, + 10774439464, + 10774439463 + ], + "geometry": [ + { "lat": 40.7450072, "lon": -73.9130065 }, + { "lat": 40.7450124, "lon": -73.9130585 }, + { "lat": 40.7449992, "lon": -73.9131906 }, + { "lat": 40.7450271, "lon": -73.9135094 }, + { "lat": 40.7450335, "lon": -73.9135830 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571158, + "bounds": { + "minlat": 40.7431764, + "minlon": -73.9139511, + "maxlat": 40.7432092, + "maxlon": -73.9135872 + }, + "nodes": [ + 10774439465, + 10774439467, + 10774439677, + 10774439466 + ], + "geometry": [ + { "lat": 40.7431764, "lon": -73.9135872 }, + { "lat": 40.7431989, "lon": -73.9138367 }, + { "lat": 40.7432018, "lon": -73.9138689 }, + { "lat": 40.7432092, "lon": -73.9139511 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571159, + "bounds": { + "minlat": 40.7423299, + "minlon": -73.9172466, + "maxlat": 40.7423576, + "maxlon": -73.9169929 + }, + "nodes": [ + 10774439468, + 10774439470, + 10774439469 + ], + "geometry": [ + { "lat": 40.7423576, "lon": -73.9172466 }, + { "lat": 40.7423390, "lon": -73.9170767 }, + { "lat": 40.7423299, "lon": -73.9169929 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571160, + "bounds": { + "minlat": 40.7429266, + "minlon": -73.9215972, + "maxlat": 40.7430992, + "maxlon": -73.9211207 + }, + "nodes": [ + 10774439471, + 10774439486, + 10774439472, + 10774439473, + 10774439474, + 10774439475, + 10774439476, + 10774439477, + 10774439478, + 10774439479, + 10774439480, + 10774439481, + 10774439482, + 10774439483, + 10774439484, + 10774439487, + 10774439485 + ], + "geometry": [ + { "lat": 40.7429656, "lon": -73.9215972 }, + { "lat": 40.7429528, "lon": -73.9214822 }, + { "lat": 40.7429373, "lon": -73.9213425 }, + { "lat": 40.7429273, "lon": -73.9212415 }, + { "lat": 40.7429266, "lon": -73.9212131 }, + { "lat": 40.7429317, "lon": -73.9211783 }, + { "lat": 40.7429423, "lon": -73.9211517 }, + { "lat": 40.7429578, "lon": -73.9211341 }, + { "lat": 40.7429781, "lon": -73.9211230 }, + { "lat": 40.7429971, "lon": -73.9211207 }, + { "lat": 40.7430139, "lon": -73.9211265 }, + { "lat": 40.7430294, "lon": -73.9211400 }, + { "lat": 40.7430431, "lon": -73.9211627 }, + { "lat": 40.7430520, "lon": -73.9211896 }, + { "lat": 40.7430590, "lon": -73.9212176 }, + { "lat": 40.7430861, "lon": -73.9214556 }, + { "lat": 40.7430992, "lon": -73.9215705 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1158571161, + "bounds": { + "minlat": 40.7421443, + "minlon": -73.9221941, + "maxlat": 40.7429909, + "maxlon": -73.9220493 + }, + "nodes": [ + 10774439488, + 10774439489, + 10774439490, + 10774439491, + 10774439492, + 10774439494, + 10774439493 + ], + "geometry": [ + { "lat": 40.7429909, "lon": -73.9220493 }, + { "lat": 40.7426579, "lon": -73.9221116 }, + { "lat": 40.7426407, "lon": -73.9221116 }, + { "lat": 40.7426132, "lon": -73.9221083 }, + { "lat": 40.7425853, "lon": -73.9221096 }, + { "lat": 40.7423881, "lon": -73.9221474 }, + { "lat": 40.7421443, "lon": -73.9221941 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571162, + "bounds": { + "minlat": 40.7423385, + "minlon": -73.9221474, + "maxlat": 40.7423881, + "maxlon": -73.9217226 + }, + "nodes": [ + 10774439494, + 10774439496, + 10774439495 + ], + "geometry": [ + { "lat": 40.7423881, "lon": -73.9221474 }, + { "lat": 40.7423496, "lon": -73.9218180 }, + { "lat": 40.7423385, "lon": -73.9217226 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571163, + "bounds": { + "minlat": 40.7418015, + "minlon": -73.9213959, + "maxlat": 40.7425141, + "maxlon": -73.9212455 + }, + "nodes": [ + 10774439497, + 10774439501, + 10774439499, + 10774439498 + ], + "geometry": [ + { "lat": 40.7418015, "lon": -73.9213959 }, + { "lat": 40.7420232, "lon": -73.9213491 }, + { "lat": 40.7423588, "lon": -73.9212782 }, + { "lat": 40.7425141, "lon": -73.9212455 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571164, + "bounds": { + "minlat": 40.7423588, + "minlon": -73.9217089, + "maxlat": 40.7424073, + "maxlon": -73.9212782 + }, + "nodes": [ + 10774439499, + 10774439679, + 10774439500 + ], + "geometry": [ + { "lat": 40.7423588, "lon": -73.9212782 }, + { "lat": 40.7423943, "lon": -73.9215934 }, + { "lat": 40.7424073, "lon": -73.9217089 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571165, + "bounds": { + "minlat": 40.7420232, + "minlon": -73.9217758, + "maxlat": 40.7420728, + "maxlon": -73.9213491 + }, + "nodes": [ + 10774439501, + 10774439678, + 10774439502 + ], + "geometry": [ + { "lat": 40.7420232, "lon": -73.9213491 }, + { "lat": 40.7420594, "lon": -73.9216601 }, + { "lat": 40.7420728, "lon": -73.9217758 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571166, + "bounds": { + "minlat": 40.7418015, + "minlon": -73.9218203, + "maxlat": 40.7418502, + "maxlon": -73.9213959 + }, + "nodes": [ + 10774439497, + 10774439504, + 10774439503 + ], + "geometry": [ + { "lat": 40.7418015, "lon": -73.9213959 }, + { "lat": 40.7418369, "lon": -73.9217044 }, + { "lat": 40.7418502, "lon": -73.9218203 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571167, + "bounds": { + "minlat": 40.7418055, + "minlon": -73.9212587, + "maxlat": 40.7422674, + "maxlon": -73.9211561 + }, + "nodes": [ + 10774439505, + 10774439507, + 10774439506 + ], + "geometry": [ + { "lat": 40.7422674, "lon": -73.9211561 }, + { "lat": 40.7420626, "lon": -73.9212016 }, + { "lat": 40.7418055, "lon": -73.9212587 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571168, + "bounds": { + "minlat": 40.7420189, + "minlon": -73.9212016, + "maxlat": 40.7420626, + "maxlon": -73.9208268 + }, + "nodes": [ + 10774439507, + 10774439509, + 10774439508 + ], + "geometry": [ + { "lat": 40.7420626, "lon": -73.9212016 }, + { "lat": 40.7420281, "lon": -73.9209059 }, + { "lat": 40.7420189, "lon": -73.9208268 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571169, + "bounds": { + "minlat": 40.7419526, + "minlon": -73.9233562, + "maxlat": 40.7420233, + "maxlon": -73.9227393 + }, + "nodes": [ + 10774439510, + 10774439514, + 10774439512, + 10774439511 + ], + "geometry": [ + { "lat": 40.7420233, "lon": -73.9233562 }, + { "lat": 40.7420026, "lon": -73.9231788 }, + { "lat": 40.7419607, "lon": -73.9228200 }, + { "lat": 40.7419526, "lon": -73.9227393 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571170, + "bounds": { + "minlat": 40.7420026, + "minlon": -73.9231788, + "maxlat": 40.7430930, + "maxlon": -73.9229615 + }, + "nodes": [ + 10774439513, + 10774439519, + 10774439517, + 10774439515, + 10774439514 + ], + "geometry": [ + { "lat": 40.7430930, "lon": -73.9229615 }, + { "lat": 40.7428394, "lon": -73.9230120 }, + { "lat": 40.7425655, "lon": -73.9230666 }, + { "lat": 40.7422941, "lon": -73.9231207 }, + { "lat": 40.7420026, "lon": -73.9231788 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571171, + "bounds": { + "minlat": 40.7422675, + "minlon": -73.9231207, + "maxlat": 40.7422941, + "maxlon": -73.9228930 + }, + "nodes": [ + 10774439515, + 10774439516 + ], + "geometry": [ + { "lat": 40.7422941, "lon": -73.9231207 }, + { "lat": 40.7422675, "lon": -73.9228930 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571172, + "bounds": { + "minlat": 40.7425395, + "minlon": -73.9230666, + "maxlat": 40.7425655, + "maxlon": -73.9228398 + }, + "nodes": [ + 10774439517, + 10774439518 + ], + "geometry": [ + { "lat": 40.7425655, "lon": -73.9230666 }, + { "lat": 40.7425395, "lon": -73.9228398 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571173, + "bounds": { + "minlat": 40.7428128, + "minlon": -73.9230120, + "maxlat": 40.7428394, + "maxlon": -73.9227902 + }, + "nodes": [ + 10774439519, + 10774439520 + ], + "geometry": [ + { "lat": 40.7428394, "lon": -73.9230120 }, + { "lat": 40.7428128, "lon": -73.9227902 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571174, + "bounds": { + "minlat": 40.7425837, + "minlon": -73.9239680, + "maxlat": 40.7431942, + "maxlon": -73.9238540 + }, + "nodes": [ + 10774439521, + 10774439523, + 10774439522 + ], + "geometry": [ + { "lat": 40.7425837, "lon": -73.9239680 }, + { "lat": 40.7428524, "lon": -73.9239178 }, + { "lat": 40.7431942, "lon": -73.9238540 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571175, + "bounds": { + "minlat": 40.7428050, + "minlon": -73.9239178, + "maxlat": 40.7428524, + "maxlon": -73.9235178 + }, + "nodes": [ + 10774439523, + 10774439525, + 10774439524 + ], + "geometry": [ + { "lat": 40.7428524, "lon": -73.9239178 }, + { "lat": 40.7428136, "lon": -73.9235898 }, + { "lat": 40.7428050, "lon": -73.9235178 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571176, + "bounds": { + "minlat": 40.7422765, + "minlon": -73.9261136, + "maxlat": 40.7423426, + "maxlon": -73.9255231 + }, + "nodes": [ + 10774439526, + 10774439528, + 10774439527 + ], + "geometry": [ + { "lat": 40.7423426, "lon": -73.9261136 }, + { "lat": 40.7422847, "lon": -73.9255966 }, + { "lat": 40.7422765, "lon": -73.9255231 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571177, + "bounds": { + "minlat": 40.7412488, + "minlon": -73.9271013, + "maxlat": 40.7412906, + "maxlon": -73.9267157 + }, + "nodes": [ + 7986647162, + 10743722134, + 7986647163, + 7986647164 + ], + "geometry": [ + { "lat": 40.7412488, "lon": -73.9267157 }, + { "lat": 40.7412614, "lon": -73.9268168 }, + { "lat": 40.7412841, "lon": -73.9270493 }, + { "lat": 40.7412906, "lon": -73.9271013 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571178, + "bounds": { + "minlat": 40.7406376, + "minlon": -73.9273616, + "maxlat": 40.7416760, + "maxlon": -73.9271596 + }, + "nodes": [ + 10774439530, + 10774439536, + 10774439532, + 10774439531 + ], + "geometry": [ + { "lat": 40.7406376, "lon": -73.9273616 }, + { "lat": 40.7410088, "lon": -73.9272894 }, + { "lat": 40.7413024, "lon": -73.9272323 }, + { "lat": 40.7416760, "lon": -73.9271596 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571179, + "bounds": { + "minlat": 40.7413024, + "minlon": -73.9276089, + "maxlat": 40.7413443, + "maxlon": -73.9272323 + }, + "nodes": [ + 10774439532, + 10774439534, + 10774439533 + ], + "geometry": [ + { "lat": 40.7413024, "lon": -73.9272323 }, + { "lat": 40.7413348, "lon": -73.9275236 }, + { "lat": 40.7413443, "lon": -73.9276089 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571180, + "bounds": { + "minlat": 40.7410088, + "minlon": -73.9276663, + "maxlat": 40.7410495, + "maxlon": -73.9272894 + }, + "nodes": [ + 10774439535, + 10774439537, + 10774439536 + ], + "geometry": [ + { "lat": 40.7410495, "lon": -73.9276663 }, + { "lat": 40.7410403, "lon": -73.9275815 }, + { "lat": 40.7410088, "lon": -73.9272894 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571181, + "bounds": { + "minlat": 40.7392604, + "minlon": -73.9270985, + "maxlat": 40.7398352, + "maxlon": -73.9264359 + }, + "nodes": [ + 10774439538, + 10774439545, + 10774439539, + 10774439540, + 10774439541, + 10774439542, + 10774439543, + 10774439546, + 10774439544 + ], + "geometry": [ + { "lat": 40.7398352, "lon": -73.9269957 }, + { "lat": 40.7398240, "lon": -73.9268921 }, + { "lat": 40.7397792, "lon": -73.9264772 }, + { "lat": 40.7397387, "lon": -73.9264359 }, + { "lat": 40.7393188, "lon": -73.9265221 }, + { "lat": 40.7392931, "lon": -73.9265350 }, + { "lat": 40.7392604, "lon": -73.9265577 }, + { "lat": 40.7393099, "lon": -73.9269926 }, + { "lat": 40.7393220, "lon": -73.9270985 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1158571182, + "bounds": { + "minlat": 40.7384557, + "minlon": -73.9262707, + "maxlat": 40.7385426, + "maxlon": -73.9255266 + }, + "nodes": [ + 10774439547, + 10774439549, + 10774439553, + 10774439551, + 10774439548 + ], + "geometry": [ + { "lat": 40.7385426, "lon": -73.9262707 }, + { "lat": 40.7385342, "lon": -73.9261990 }, + { "lat": 40.7384981, "lon": -73.9258902 }, + { "lat": 40.7384770, "lon": -73.9257091 }, + { "lat": 40.7384557, "lon": -73.9255266 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571183, + "bounds": { + "minlat": 40.7384770, + "minlon": -73.9257091, + "maxlat": 40.7388055, + "maxlon": -73.9256387 + }, + "nodes": [ + 10774439550, + 10774439551 + ], + "geometry": [ + { "lat": 40.7388055, "lon": -73.9256387 }, + { "lat": 40.7384770, "lon": -73.9257091 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571184, + "bounds": { + "minlat": 40.7384981, + "minlon": -73.9258902, + "maxlat": 40.7387525, + "maxlon": -73.9258413 + }, + "nodes": [ + 10774439552, + 10774439553 + ], + "geometry": [ + { "lat": 40.7387525, "lon": -73.9258413 }, + { "lat": 40.7384981, "lon": -73.9258902 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571185, + "bounds": { + "minlat": 40.7384702, + "minlon": -73.9249257, + "maxlat": 40.7388355, + "maxlon": -73.9248564 + }, + "nodes": [ + 10774439554, + 10774439556, + 10774439555 + ], + "geometry": [ + { "lat": 40.7384702, "lon": -73.9249257 }, + { "lat": 40.7386736, "lon": -73.9248871 }, + { "lat": 40.7388355, "lon": -73.9248564 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571186, + "bounds": { + "minlat": 40.7386736, + "minlon": -73.9252859, + "maxlat": 40.7387180, + "maxlon": -73.9248871 + }, + "nodes": [ + 10774439556, + 10774439558, + 10774439557 + ], + "geometry": [ + { "lat": 40.7386736, "lon": -73.9248871 }, + { "lat": 40.7387102, "lon": -73.9252152 }, + { "lat": 40.7387180, "lon": -73.9252859 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1158571187, + "bounds": { + "minlat": 40.7388650, + "minlon": -73.9252473, + "maxlat": 40.7389094, + "maxlon": -73.9248584 + }, + "nodes": [ + 10774439559, + 10774439562, + 10774439560 + ], + "geometry": [ + { "lat": 40.7389094, "lon": -73.9252473 }, + { "lat": 40.7389013, "lon": -73.9251770 }, + { "lat": 40.7388650, "lon": -73.9248584 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571188, + "bounds": { + "minlat": 40.7388650, + "minlon": -73.9248584, + "maxlat": 40.7391291, + "maxlon": -73.9248071 + }, + "nodes": [ + 10774439560, + 10774439561 + ], + "geometry": [ + { "lat": 40.7388650, "lon": -73.9248584 }, + { "lat": 40.7391291, "lon": -73.9248071 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571189, + "bounds": { + "minlat": 40.7389029, + "minlon": -73.9242887, + "maxlat": 40.7389398, + "maxlon": -73.9239516 + }, + "nodes": [ + 5482367270, + 10743722454, + 5482367269 + ], + "geometry": [ + { "lat": 40.7389398, "lon": -73.9242887 }, + { "lat": 40.7389330, "lon": -73.9242244 }, + { "lat": 40.7389029, "lon": -73.9239516 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1158571190, + "bounds": { + "minlat": 40.7394206, + "minlon": -73.9241868, + "maxlat": 40.7394588, + "maxlon": -73.9238469 + }, + "nodes": [ + 5482367268, + 10774439564, + 10774439565, + 10774439563 + ], + "geometry": [ + { "lat": 40.7394206, "lon": -73.9238469 }, + { "lat": 40.7394319, "lon": -73.9239474 }, + { "lat": 40.7394514, "lon": -73.9241207 }, + { "lat": 40.7394588, "lon": -73.9241868 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571191, + "bounds": { + "minlat": 40.7395094, + "minlon": -73.9239607, + "maxlat": 40.7395264, + "maxlon": -73.9238184 + }, + "nodes": [ + 10774439566, + 10774439568, + 10774439567 + ], + "geometry": [ + { "lat": 40.7395264, "lon": -73.9239607 }, + { "lat": 40.7395179, "lon": -73.9238906 }, + { "lat": 40.7395094, "lon": -73.9238184 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571192, + "bounds": { + "minlat": 40.7395179, + "minlon": -73.9238906, + "maxlat": 40.7398227, + "maxlon": -73.9238298 + }, + "nodes": [ + 10774439568, + 10774439570, + 10774439569 + ], + "geometry": [ + { "lat": 40.7395179, "lon": -73.9238906 }, + { "lat": 40.7397425, "lon": -73.9238458 }, + { "lat": 40.7398227, "lon": -73.9238298 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571193, + "bounds": { + "minlat": 40.7394858, + "minlon": -73.9237824, + "maxlat": 40.7395027, + "maxlon": -73.9236401 + }, + "nodes": [ + 10774439571, + 10774439572, + 10774439573 + ], + "geometry": [ + { "lat": 40.7395027, "lon": -73.9237824 }, + { "lat": 40.7394938, "lon": -73.9237072 }, + { "lat": 40.7394858, "lon": -73.9236401 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571194, + "bounds": { + "minlat": 40.7394938, + "minlon": -73.9237072, + "maxlat": 40.7398022, + "maxlon": -73.9236457 + }, + "nodes": [ + 10774439572, + 10774439575, + 10774439574 + ], + "geometry": [ + { "lat": 40.7394938, "lon": -73.9237072 }, + { "lat": 40.7397215, "lon": -73.9236618 }, + { "lat": 40.7398022, "lon": -73.9236457 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571195, + "bounds": { + "minlat": 40.7394624, + "minlon": -73.9235926, + "maxlat": 40.7394793, + "maxlon": -73.9234503 + }, + "nodes": [ + 10774439576, + 10774439577, + 10774439578 + ], + "geometry": [ + { "lat": 40.7394793, "lon": -73.9235926 }, + { "lat": 40.7394707, "lon": -73.9235205 }, + { "lat": 40.7394624, "lon": -73.9234503 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571196, + "bounds": { + "minlat": 40.7394707, + "minlon": -73.9235205, + "maxlat": 40.7397813, + "maxlon": -73.9234586 + }, + "nodes": [ + 10774439577, + 10774439580, + 10774439579 + ], + "geometry": [ + { "lat": 40.7394707, "lon": -73.9235205 }, + { "lat": 40.7397002, "lon": -73.9234748 }, + { "lat": 40.7397813, "lon": -73.9234586 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571197, + "bounds": { + "minlat": 40.7382163, + "minlon": -73.9238131, + "maxlat": 40.7383067, + "maxlon": -73.9234735 + }, + "nodes": [ + 10774439581, + 10774439582, + 10774439584, + 10774439583 + ], + "geometry": [ + { "lat": 40.7382163, "lon": -73.9238131 }, + { "lat": 40.7383067, "lon": -73.9237963 }, + { "lat": 40.7382774, "lon": -73.9235523 }, + { "lat": 40.7382679, "lon": -73.9234735 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571198, + "bounds": { + "minlat": 40.7382259, + "minlon": -73.9244027, + "maxlat": 40.7383675, + "maxlon": -73.9240317 + }, + "nodes": [ + 10774439588, + 10774439585, + 10774439586, + 10774439587 + ], + "geometry": [ + { "lat": 40.7383675, "lon": -73.9244027 }, + { "lat": 40.7383593, "lon": -73.9243303 }, + { "lat": 40.7383265, "lon": -73.9240317 }, + { "lat": 40.7382259, "lon": -73.9240484 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571199, + "bounds": { + "minlat": 40.7362029, + "minlon": -73.9254377, + "maxlat": 40.7376782, + "maxlon": -73.9251352 + }, + "nodes": [ + 10774439589, + 10774439594, + 10774439590, + 10774439595, + 10774439591 + ], + "geometry": [ + { "lat": 40.7362029, "lon": -73.9254377 }, + { "lat": 40.7362701, "lon": -73.9254212 }, + { "lat": 40.7364003, "lon": -73.9253893 }, + { "lat": 40.7368736, "lon": -73.9252951 }, + { "lat": 40.7376782, "lon": -73.9251352 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158571200, + "bounds": { + "minlat": 40.7376782, + "minlon": -73.9254766, + "maxlat": 40.7377165, + "maxlon": -73.9251352 + }, + "nodes": [ + 10774439591, + 10774439593, + 10774439592 + ], + "geometry": [ + { "lat": 40.7376782, "lon": -73.9251352 }, + { "lat": 40.7377094, "lon": -73.9254129 }, + { "lat": 40.7377165, "lon": -73.9254766 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571201, + "bounds": { + "minlat": 40.7368736, + "minlon": -73.9256356, + "maxlat": 40.7369088, + "maxlon": -73.9252951 + }, + "nodes": [ + 10774439595, + 10774439597, + 10774439596 + ], + "geometry": [ + { "lat": 40.7368736, "lon": -73.9252951 }, + { "lat": 40.7369023, "lon": -73.9255728 }, + { "lat": 40.7369088, "lon": -73.9256356 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571202, + "bounds": { + "minlat": 40.7375927, + "minlon": -73.9286672, + "maxlat": 40.7376299, + "maxlon": -73.9283590 + }, + "nodes": [ + 10774439598, + 10774439601, + 10774439600, + 10774439599 + ], + "geometry": [ + { "lat": 40.7376299, "lon": -73.9286672 }, + { "lat": 40.7376060, "lon": -73.9284675 }, + { "lat": 40.7376028, "lon": -73.9284429 }, + { "lat": 40.7375927, "lon": -73.9283590 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571203, + "bounds": { + "minlat": 40.7375354, + "minlon": -73.9293165, + "maxlat": 40.7377870, + "maxlon": -73.9291532 + }, + "nodes": [ + 10774439602, + 10774439604, + 10774439603 + ], + "geometry": [ + { "lat": 40.7375354, "lon": -73.9291532 }, + { "lat": 40.7377238, "lon": -73.9292755 }, + { "lat": 40.7377870, "lon": -73.9293165 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1158571204, + "bounds": { + "minlat": 40.7384857, + "minlon": -73.9295214, + "maxlat": 40.7385296, + "maxlon": -73.9291264 + }, + "nodes": [ + 10774439605, + 10774439608, + 10774439607, + 10774439606 + ], + "geometry": [ + { "lat": 40.7385296, "lon": -73.9295214 }, + { "lat": 40.7384960, "lon": -73.9292194 }, + { "lat": 40.7384943, "lon": -73.9292040 }, + { "lat": 40.7384857, "lon": -73.9291264 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571205, + "bounds": { + "minlat": 40.7388686, + "minlon": -73.9290391, + "maxlat": 40.7389618, + "maxlon": -73.9286030 + }, + "nodes": [ + 10774439609, + 10774439612, + 10774439610, + 10774439611 + ], + "geometry": [ + { "lat": 40.7389150, "lon": -73.9290391 }, + { "lat": 40.7389066, "lon": -73.9289639 }, + { "lat": 40.7388686, "lon": -73.9286213 }, + { "lat": 40.7389618, "lon": -73.9286030 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571206, + "bounds": { + "minlat": 40.7392371, + "minlon": -73.9293304, + "maxlat": 40.7392829, + "maxlon": -73.9289740 + }, + "nodes": [ + 10774439613, + 10774439614, + 10774439616, + 10774439615 + ], + "geometry": [ + { "lat": 40.7392829, "lon": -73.9293304 }, + { "lat": 40.7392590, "lon": -73.9291320 }, + { "lat": 40.7392483, "lon": -73.9290543 }, + { "lat": 40.7392371, "lon": -73.9289740 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571207, + "bounds": { + "minlat": 40.7388988, + "minlon": -73.9299905, + "maxlat": 40.7389801, + "maxlon": -73.9297536 + }, + "nodes": [ + 10774439617, + 10774439620, + 10774439621, + 10774439618, + 10774439619 + ], + "geometry": [ + { "lat": 40.7389248, "lon": -73.9299905 }, + { "lat": 40.7389163, "lon": -73.9299185 }, + { "lat": 40.7389109, "lon": -73.9298764 }, + { "lat": 40.7388988, "lon": -73.9297710 }, + { "lat": 40.7389801, "lon": -73.9297536 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1158571208, + "bounds": { + "minlat": 40.7410781, + "minlon": -73.9290056, + "maxlat": 40.7411248, + "maxlon": -73.9286079 + }, + "nodes": [ + 10774439622, + 10774439624, + 10774439623 + ], + "geometry": [ + { "lat": 40.7411248, "lon": -73.9290056 }, + { "lat": 40.7410876, "lon": -73.9286886 }, + { "lat": 40.7410781, "lon": -73.9286079 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571209, + "bounds": { + "minlat": 40.7439785, + "minlon": -73.9210112, + "maxlat": 40.7440891, + "maxlon": -73.9209377 + }, + "nodes": [ + 10774439625, + 10774439626, + 10774439628, + 10774439627 + ], + "geometry": [ + { "lat": 40.7440829, "lon": -73.9209377 }, + { "lat": 40.7440891, "lon": -73.9209908 }, + { "lat": 40.7440220, "lon": -73.9210032 }, + { "lat": 40.7439785, "lon": -73.9210112 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571210, + "bounds": { + "minlat": 40.7440220, + "minlon": -73.9213676, + "maxlat": 40.7440638, + "maxlon": -73.9210032 + }, + "nodes": [ + 10774439628, + 10774439630, + 10774439629 + ], + "geometry": [ + { "lat": 40.7440220, "lon": -73.9210032 }, + { "lat": 40.7440514, "lon": -73.9212594 }, + { "lat": 40.7440638, "lon": -73.9213676 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571211, + "bounds": { + "minlat": 40.7437259, + "minlon": -73.9195132, + "maxlat": 40.7438033, + "maxlon": -73.9188892 + }, + "nodes": [ + 10774439632, + 10774439634, + 10774439633 + ], + "geometry": [ + { "lat": 40.7438033, "lon": -73.9195132 }, + { "lat": 40.7437951, "lon": -73.9194471 }, + { "lat": 40.7437259, "lon": -73.9188892 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571212, + "bounds": { + "minlat": 40.7455474, + "minlon": -73.9195540, + "maxlat": 40.7455911, + "maxlon": -73.9191699 + }, + "nodes": [ + 10774439635, + 11694597575, + 10774439636 + ], + "geometry": [ + { "lat": 40.7455911, "lon": -73.9195540 }, + { "lat": 40.7455576, "lon": -73.9192598 }, + { "lat": 40.7455474, "lon": -73.9191699 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1158571213, + "bounds": { + "minlat": 40.7465212, + "minlon": -73.9205040, + "maxlat": 40.7465498, + "maxlon": -73.9202506 + }, + "nodes": [ + 10774439637, + 10774439639, + 10774439638 + ], + "geometry": [ + { "lat": 40.7465498, "lon": -73.9205040 }, + { "lat": 40.7465424, "lon": -73.9204384 }, + { "lat": 40.7465212, "lon": -73.9202506 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571214, + "bounds": { + "minlat": 40.7465424, + "minlon": -73.9204384, + "maxlat": 40.7468422, + "maxlon": -73.9203761 + }, + "nodes": [ + 10774439639, + 11694597516, + 10774439640 + ], + "geometry": [ + { "lat": 40.7465424, "lon": -73.9204384 }, + { "lat": 40.7467632, "lon": -73.9203925 }, + { "lat": 40.7468422, "lon": -73.9203761 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571215, + "bounds": { + "minlat": 40.7421362, + "minlon": -73.9140131, + "maxlat": 40.7424237, + "maxlon": -73.9139151 + }, + "nodes": [ + 10774439641, + 10774439643, + 10774439642 + ], + "geometry": [ + { "lat": 40.7421362, "lon": -73.9140131 }, + { "lat": 40.7423708, "lon": -73.9139332 }, + { "lat": 40.7424237, "lon": -73.9139151 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1158571216, + "bounds": { + "minlat": 40.7423081, + "minlon": -73.9160203, + "maxlat": 40.7423309, + "maxlon": -73.9158193 + }, + "nodes": [ + 10774439644, + 10774439647, + 10774426749, + 10774439646, + 10774439645 + ], + "geometry": [ + { "lat": 40.7423081, "lon": -73.9158193 }, + { "lat": 40.7423172, "lon": -73.9158994 }, + { "lat": 40.7423219, "lon": -73.9159406 }, + { "lat": 40.7423265, "lon": -73.9159818 }, + { "lat": 40.7423309, "lon": -73.9160203 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571219, + "bounds": { + "minlat": 40.7380656, + "minlon": -73.9203012, + "maxlat": 40.7382452, + "maxlon": -73.9202680 + }, + "nodes": [ + 10774439648, + 10774439650, + 10774439649 + ], + "geometry": [ + { "lat": 40.7382452, "lon": -73.9202680 }, + { "lat": 40.7381867, "lon": -73.9202788 }, + { "lat": 40.7380656, "lon": -73.9203012 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571220, + "bounds": { + "minlat": 40.7381867, + "minlon": -73.9206369, + "maxlat": 40.7382294, + "maxlon": -73.9202788 + }, + "nodes": [ + 10774439650, + 10774439652, + 10774439651 + ], + "geometry": [ + { "lat": 40.7381867, "lon": -73.9202788 }, + { "lat": 40.7382197, "lon": -73.9205561 }, + { "lat": 40.7382294, "lon": -73.9206369 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571221, + "bounds": { + "minlat": 40.7383247, + "minlon": -73.9206092, + "maxlat": 40.7383670, + "maxlon": -73.9202539 + }, + "nodes": [ + 10774439653, + 10774439657, + 10774439654 + ], + "geometry": [ + { "lat": 40.7383247, "lon": -73.9202539 }, + { "lat": 40.7383574, "lon": -73.9205286 }, + { "lat": 40.7383670, "lon": -73.9206092 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571222, + "bounds": { + "minlat": 40.7382682, + "minlon": -73.9202643, + "maxlat": 40.7383832, + "maxlon": -73.9202431 + }, + "nodes": [ + 10774439655, + 10774439653, + 10774439656 + ], + "geometry": [ + { "lat": 40.7383832, "lon": -73.9202431 }, + { "lat": 40.7383247, "lon": -73.9202539 }, + { "lat": 40.7382682, "lon": -73.9202643 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571223, + "bounds": { + "minlat": 40.7384626, + "minlon": -73.9205814, + "maxlat": 40.7385052, + "maxlon": -73.9202244 + }, + "nodes": [ + 10774439658, + 10774439667, + 10774439659 + ], + "geometry": [ + { "lat": 40.7384626, "lon": -73.9202244 }, + { "lat": 40.7384956, "lon": -73.9205011 }, + { "lat": 40.7385052, "lon": -73.9205814 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571224, + "bounds": { + "minlat": 40.7384061, + "minlon": -73.9202348, + "maxlat": 40.7385211, + "maxlon": -73.9202136 + }, + "nodes": [ + 10774439660, + 10774439658, + 10774439661 + ], + "geometry": [ + { "lat": 40.7385211, "lon": -73.9202136 }, + { "lat": 40.7384626, "lon": -73.9202244 }, + { "lat": 40.7384061, "lon": -73.9202348 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571225, + "bounds": { + "minlat": 40.7385952, + "minlon": -73.9205547, + "maxlat": 40.7386376, + "maxlon": -73.9201989 + }, + "nodes": [ + 10774439662, + 10774439666, + 10774439663 + ], + "geometry": [ + { "lat": 40.7385952, "lon": -73.9201989 }, + { "lat": 40.7386281, "lon": -73.9204747 }, + { "lat": 40.7386376, "lon": -73.9205547 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571226, + "bounds": { + "minlat": 40.7385387, + "minlon": -73.9202093, + "maxlat": 40.7386538, + "maxlon": -73.9201881 + }, + "nodes": [ + 10774439664, + 10774439662, + 10774439665 + ], + "geometry": [ + { "lat": 40.7386538, "lon": -73.9201881 }, + { "lat": 40.7385952, "lon": -73.9201989 }, + { "lat": 40.7385387, "lon": -73.9202093 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571227, + "bounds": { + "minlat": 40.7370741, + "minlon": -73.9221038, + "maxlat": 40.7371049, + "maxlon": -73.9218214 + }, + "nodes": [ + 10774439668, + 10774439669, + 10774439671, + 10774439670 + ], + "geometry": [ + { "lat": 40.7371049, "lon": -73.9221038 }, + { "lat": 40.7370996, "lon": -73.9220645 }, + { "lat": 40.7370815, "lon": -73.9218914 }, + { "lat": 40.7370741, "lon": -73.9218214 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158571228, + "bounds": { + "minlat": 40.7366096, + "minlon": -73.9233206, + "maxlat": 40.7366692, + "maxlon": -73.9228620 + }, + "nodes": [ + 10743722362, + 10743722350, + 10743722361 + ], + "geometry": [ + { "lat": 40.7366096, "lon": -73.9228620 }, + { "lat": 40.7366236, "lon": -73.9229695 }, + { "lat": 40.7366692, "lon": -73.9233206 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1158571229, + "bounds": { + "minlat": 40.7373414, + "minlon": -73.9231570, + "maxlat": 40.7373928, + "maxlon": -73.9227144 + }, + "nodes": [ + 10743722360, + 10743722352, + 10743722359 + ], + "geometry": [ + { "lat": 40.7373928, "lon": -73.9231570 }, + { "lat": 40.7373535, "lon": -73.9228186 }, + { "lat": 40.7373414, "lon": -73.9227144 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1158572684, + "bounds": { + "minlat": 40.7497445, + "minlon": -73.9509166, + "maxlat": 40.7497890, + "maxlon": -73.9506698 + }, + "nodes": [ + 10774449948, + 11622964632, + 10798917514, + 10774449949 + ], + "geometry": [ + { "lat": 40.7497890, "lon": -73.9509166 }, + { "lat": 40.7497732, "lon": -73.9508289 }, + { "lat": 40.7497677, "lon": -73.9507983 }, + { "lat": 40.7497445, "lon": -73.9506698 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1158572685, + "bounds": { + "minlat": 40.7498946, + "minlon": -73.9507501, + "maxlat": 40.7499752, + "maxlon": -73.9505725 + }, + "nodes": [ + 10774449950, + 10798917515, + 11622964631, + 10774449951 + ], + "geometry": [ + { "lat": 40.7498946, "lon": -73.9505725 }, + { "lat": 40.7499337, "lon": -73.9506561 }, + { "lat": 40.7499450, "lon": -73.9506817 }, + { "lat": 40.7499752, "lon": -73.9507501 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1158572686, + "bounds": { + "minlat": 40.7497445, + "minlon": -73.9506698, + "maxlat": 40.7498946, + "maxlon": -73.9505725 + }, + "nodes": [ + 10774449949, + 10774449950 + ], + "geometry": [ + { "lat": 40.7497445, "lon": -73.9506698 }, + { "lat": 40.7498946, "lon": -73.9505725 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1158573764, + "bounds": { + "minlat": 40.7602505, + "minlon": -73.9414438, + "maxlat": 40.7603503, + "maxlon": -73.9411550 + }, + "nodes": [ + 10774458949, + 10774458951, + 10774458950 + ], + "geometry": [ + { "lat": 40.7603503, "lon": -73.9414438 }, + { "lat": 40.7603289, "lon": -73.9413820 }, + { "lat": 40.7602505, "lon": -73.9411550 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1158574706, + "bounds": { + "minlat": 40.7545268, + "minlon": -73.9189011, + "maxlat": 40.7550642, + "maxlon": -73.9184600 + }, + "nodes": [ + 10774470166, + 10774470168, + 10774470170, + 10774470172, + 10774470174, + 10774470176, + 10774470167 + ], + "geometry": [ + { "lat": 40.7545268, "lon": -73.9189011 }, + { "lat": 40.7545532, "lon": -73.9188794 }, + { "lat": 40.7546702, "lon": -73.9187836 }, + { "lat": 40.7547859, "lon": -73.9186884 }, + { "lat": 40.7549026, "lon": -73.9185926 }, + { "lat": 40.7550176, "lon": -73.9184982 }, + { "lat": 40.7550642, "lon": -73.9184600 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158574707, + "bounds": { + "minlat": 40.7545532, + "minlon": -73.9191693, + "maxlat": 40.7546923, + "maxlon": -73.9188794 + }, + "nodes": [ + 10774470168, + 10774470184, + 10774470169 + ], + "geometry": [ + { "lat": 40.7545532, "lon": -73.9188794 }, + { "lat": 40.7546621, "lon": -73.9191063 }, + { "lat": 40.7546923, "lon": -73.9191693 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574708, + "bounds": { + "minlat": 40.7546702, + "minlon": -73.9190740, + "maxlat": 40.7548093, + "maxlon": -73.9187836 + }, + "nodes": [ + 10774470170, + 10774470185, + 10774470171 + ], + "geometry": [ + { "lat": 40.7546702, "lon": -73.9187836 }, + { "lat": 40.7547796, "lon": -73.9190121 }, + { "lat": 40.7548093, "lon": -73.9190740 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574709, + "bounds": { + "minlat": 40.7547859, + "minlon": -73.9189790, + "maxlat": 40.7549259, + "maxlon": -73.9186884 + }, + "nodes": [ + 10774470172, + 10774470186, + 10774470187, + 10774470173 + ], + "geometry": [ + { "lat": 40.7547859, "lon": -73.9186884 }, + { "lat": 40.7548718, "lon": -73.9188662 }, + { "lat": 40.7548967, "lon": -73.9189182 }, + { "lat": 40.7549259, "lon": -73.9189790 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574710, + "bounds": { + "minlat": 40.7549026, + "minlon": -73.9188841, + "maxlat": 40.7550425, + "maxlon": -73.9185926 + }, + "nodes": [ + 10774470174, + 10774470188, + 10774470175 + ], + "geometry": [ + { "lat": 40.7549026, "lon": -73.9185926 }, + { "lat": 40.7550138, "lon": -73.9188243 }, + { "lat": 40.7550425, "lon": -73.9188841 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574711, + "bounds": { + "minlat": 40.7550176, + "minlon": -73.9187893, + "maxlat": 40.7551589, + "maxlon": -73.9184982 + }, + "nodes": [ + 10774470176, + 10774470189, + 10774470177 + ], + "geometry": [ + { "lat": 40.7550176, "lon": -73.9184982 }, + { "lat": 40.7551307, "lon": -73.9187306 }, + { "lat": 40.7551589, "lon": -73.9187893 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574712, + "bounds": { + "minlat": 40.7548608, + "minlon": -73.9187322, + "maxlat": 40.7552290, + "maxlon": -73.9179305 + }, + "nodes": [ + 10774470178, + 10774470183, + 10774470181, + 10774470198, + 10774470182, + 10774470179 + ], + "geometry": [ + { "lat": 40.7552290, "lon": -73.9187322 }, + { "lat": 40.7552021, "lon": -73.9186733 }, + { "lat": 40.7550873, "lon": -73.9184217 }, + { "lat": 40.7550017, "lon": -73.9182341 }, + { "lat": 40.7548904, "lon": -73.9179903 }, + { "lat": 40.7548608, "lon": -73.9179305 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158574713, + "bounds": { + "minlat": 40.7550873, + "minlon": -73.9184217, + "maxlat": 40.7551631, + "maxlon": -73.9183618 + }, + "nodes": [ + 10774470180, + 10774470181 + ], + "geometry": [ + { "lat": 40.7551631, "lon": -73.9183618 }, + { "lat": 40.7550873, "lon": -73.9184217 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574714, + "bounds": { + "minlat": 40.7543175, + "minlon": -73.9186793, + "maxlat": 40.7544592, + "maxlon": -73.9183727 + }, + "nodes": [ + 10774470190, + 10774470191, + 10774470192 + ], + "geometry": [ + { "lat": 40.7544592, "lon": -73.9186793 }, + { "lat": 40.7543455, "lon": -73.9184334 }, + { "lat": 40.7543175, "lon": -73.9183727 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574715, + "bounds": { + "minlat": 40.7544328, + "minlon": -73.9187010, + "maxlat": 40.7550017, + "maxlon": -73.9182341 + }, + "nodes": [ + 10774470193, + 10774470190, + 10774470194, + 10774470195, + 10774470196, + 10774470197, + 10774470198 + ], + "geometry": [ + { "lat": 40.7544328, "lon": -73.9187010 }, + { "lat": 40.7544592, "lon": -73.9186793 }, + { "lat": 40.7545761, "lon": -73.9185832 }, + { "lat": 40.7546919, "lon": -73.9184883 }, + { "lat": 40.7548086, "lon": -73.9183925 }, + { "lat": 40.7549236, "lon": -73.9182982 }, + { "lat": 40.7550017, "lon": -73.9182341 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158574716, + "bounds": { + "minlat": 40.7544345, + "minlon": -73.9185832, + "maxlat": 40.7545761, + "maxlon": -73.9182775 + }, + "nodes": [ + 10774470194, + 10774470199, + 10774470200 + ], + "geometry": [ + { "lat": 40.7545761, "lon": -73.9185832 }, + { "lat": 40.7544626, "lon": -73.9183382 }, + { "lat": 40.7544345, "lon": -73.9182775 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574717, + "bounds": { + "minlat": 40.7545512, + "minlon": -73.9184883, + "maxlat": 40.7546919, + "maxlon": -73.9181826 + }, + "nodes": [ + 10774470195, + 10774470201, + 10774470202 + ], + "geometry": [ + { "lat": 40.7546919, "lon": -73.9184883 }, + { "lat": 40.7545792, "lon": -73.9182434 }, + { "lat": 40.7545512, "lon": -73.9181826 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574718, + "bounds": { + "minlat": 40.7546677, + "minlon": -73.9183925, + "maxlat": 40.7548086, + "maxlon": -73.9180878 + }, + "nodes": [ + 10774470196, + 10774470203, + 10774470204 + ], + "geometry": [ + { "lat": 40.7548086, "lon": -73.9183925 }, + { "lat": 40.7546958, "lon": -73.9181485 }, + { "lat": 40.7546677, "lon": -73.9180878 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574719, + "bounds": { + "minlat": 40.7547842, + "minlon": -73.9182982, + "maxlat": 40.7549236, + "maxlon": -73.9179930 + }, + "nodes": [ + 10774470197, + 10774472405, + 10774472406 + ], + "geometry": [ + { "lat": 40.7549236, "lon": -73.9182982 }, + { "lat": 40.7548121, "lon": -73.9180540 }, + { "lat": 40.7547842, "lon": -73.9179930 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574721, + "bounds": { + "minlat": 40.7544521, + "minlon": -73.9182398, + "maxlat": 40.7544809, + "maxlon": -73.9181760 + }, + "nodes": [ + 13188236356, + 10774472412 + ], + "geometry": [ + { "lat": 40.7544809, "lon": -73.9182398 }, + { "lat": 40.7544521, "lon": -73.9181760 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1158574722, + "bounds": { + "minlat": 40.7544372, + "minlon": -73.9181760, + "maxlat": 40.7544521, + "maxlon": -73.9181422 + }, + "nodes": [ + 10774472412, + 13188236355 + ], + "geometry": [ + { "lat": 40.7544521, "lon": -73.9181760 }, + { "lat": 40.7544372, "lon": -73.9181422 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574724, + "bounds": { + "minlat": 40.7543531, + "minlon": -73.9200063, + "maxlat": 40.7553467, + "maxlon": -73.9192062 + }, + "nodes": [ + 10774472427, + 10774472423, + 10774472424, + 10774472425, + 10774472426 + ], + "geometry": [ + { "lat": 40.7543531, "lon": -73.9200063 }, + { "lat": 40.7545335, "lon": -73.9198633 }, + { "lat": 40.7550201, "lon": -73.9194657 }, + { "lat": 40.7553157, "lon": -73.9192310 }, + { "lat": 40.7553467, "lon": -73.9192062 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158574725, + "bounds": { + "minlat": 40.7542061, + "minlon": -73.9201212, + "maxlat": 40.7542946, + "maxlon": -73.9200519 + }, + "nodes": [ + 10774472422, + 10774472442, + 10774472428 + ], + "geometry": [ + { "lat": 40.7542061, "lon": -73.9201212 }, + { "lat": 40.7542763, "lon": -73.9200662 }, + { "lat": 40.7542946, "lon": -73.9200519 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158574726, + "bounds": { + "minlat": 40.7542946, + "minlon": -73.9200519, + "maxlat": 40.7543531, + "maxlon": -73.9200063 + }, + "nodes": [ + 10774472428, + 10774472427 + ], + "geometry": [ + { "lat": 40.7542946, "lon": -73.9200519 }, + { "lat": 40.7543531, "lon": -73.9200063 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1158574727, + "bounds": { + "minlat": 40.7559806, + "minlon": -73.9190055, + "maxlat": 40.7562498, + "maxlon": -73.9184380 + }, + "nodes": [ + 10774472429, + 10774472431, + 10774472432, + 10774472434, + 10774472430 + ], + "geometry": [ + { "lat": 40.7562498, "lon": -73.9190055 }, + { "lat": 40.7562256, "lon": -73.9189545 }, + { "lat": 40.7560658, "lon": -73.9186175 }, + { "lat": 40.7559896, "lon": -73.9184569 }, + { "lat": 40.7559806, "lon": -73.9184380 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1158574728, + "bounds": { + "minlat": 40.7559316, + "minlon": -73.9187256, + "maxlat": 40.7560658, + "maxlon": -73.9186175 + }, + "nodes": [ + 10774472432, + 10774472433 + ], + "geometry": [ + { "lat": 40.7560658, "lon": -73.9186175 }, + { "lat": 40.7559316, "lon": -73.9187256 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574729, + "bounds": { + "minlat": 40.7559115, + "minlon": -73.9185164, + "maxlat": 40.7559896, + "maxlon": -73.9184569 + }, + "nodes": [ + 10774472434, + 10774472435 + ], + "geometry": [ + { "lat": 40.7559896, "lon": -73.9184569 }, + { "lat": 40.7559115, "lon": -73.9185164 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574730, + "bounds": { + "minlat": 40.7563287, + "minlon": -73.9181526, + "maxlat": 40.7564782, + "maxlon": -73.9178362 + }, + "nodes": [ + 10774472436, + 10774472438, + 10774472437 + ], + "geometry": [ + { "lat": 40.7564782, "lon": -73.9181526 }, + { "lat": 40.7563615, "lon": -73.9179056 }, + { "lat": 40.7563287, "lon": -73.9178362 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1158574731, + "bounds": { + "minlat": 40.7562156, + "minlon": -73.9198590, + "maxlat": 40.7564009, + "maxlon": -73.9197115 + }, + "nodes": [ + 10774472439, + 10774472441, + 10774472440 + ], + "geometry": [ + { "lat": 40.7564009, "lon": -73.9197115 }, + { "lat": 40.7562868, "lon": -73.9198022 }, + { "lat": 40.7562156, "lon": -73.9198590 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1158931761, + "bounds": { + "minlat": 40.7227664, + "minlon": -73.9471520, + "maxlat": 40.7227831, + "maxlon": -73.9470065 + }, + "nodes": [ + 2987758893, + 42498503, + 2987758892 + ], + "geometry": [ + { "lat": 40.7227831, "lon": -73.9470065 }, + { "lat": 40.7227770, "lon": -73.9470570 }, + { "lat": 40.7227664, "lon": -73.9471520 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Driggs Avenue", + "note": "confirm side of street for bike lane", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Driggs", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1158931762, + "bounds": { + "minlat": 40.7227270, + "minlon": -73.9474740, + "maxlat": 40.7227664, + "maxlon": -73.9471520 + }, + "nodes": [ + 2987758892, + 6228788701, + 9935605477, + 42467934 + ], + "geometry": [ + { "lat": 40.7227664, "lon": -73.9471520 }, + { "lat": 40.7227532, "lon": -73.9472644 }, + { "lat": 40.7227385, "lon": -73.9473802 }, + { "lat": 40.7227270, "lon": -73.9474740 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Driggs Avenue", + "note": "confirm side of street for bike lane", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Driggs", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1159051925, + "bounds": { + "minlat": 40.7280258, + "minlon": -73.9759721, + "maxlat": 40.7284433, + "maxlon": -73.9756824 + }, + "nodes": [ + 5147744247, + 4161568813, + 42440754 + ], + "geometry": [ + { "lat": 40.7280258, "lon": -73.9759721 }, + { "lat": 40.7283514, "lon": -73.9757385 }, + { "lat": 40.7284433, "lon": -73.9756824 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1159051944, + "bounds": { + "minlat": 40.7273877, + "minlon": -73.9764301, + "maxlat": 40.7277504, + "maxlon": -73.9761698 + }, + "nodes": [ + 10778672288, + 12995380999, + 12995380997, + 8309479570, + 42436957 + ], + "geometry": [ + { "lat": 40.7273877, "lon": -73.9764301 }, + { "lat": 40.7274683, "lon": -73.9763722 }, + { "lat": 40.7274994, "lon": -73.9763499 }, + { "lat": 40.7276948, "lon": -73.9762097 }, + { "lat": 40.7277504, "lon": -73.9761698 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway:both": "track", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1159052040, + "bounds": { + "minlat": 40.7262553, + "minlon": -73.9737990, + "maxlat": 40.7267520, + "maxlon": -73.9726487 + }, + "nodes": [ + 3624790934, + 3716628973, + 1989931095 + ], + "geometry": [ + { "lat": 40.7267520, "lon": -73.9737990 }, + { "lat": 40.7264159, "lon": -73.9730207 }, + { "lat": 40.7262553, "lon": -73.9726487 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 13th Street", + "name:ru": "Восточная 13-я стрит", + "name_1": "East 13 Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1159053287, + "bounds": { + "minlat": 40.7236890, + "minlon": -73.9784069, + "maxlat": 40.7246931, + "maxlon": -73.9760300 + }, + "nodes": [ + 42455181, + 8309479401, + 8309479383, + 42455412 + ], + "geometry": [ + { "lat": 40.7246931, "lon": -73.9784069 }, + { "lat": 40.7246568, "lon": -73.9783210 }, + { "lat": 40.7237294, "lon": -73.9761257 }, + { "lat": 40.7236890, "lon": -73.9760300 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 8th Street", + "name:ru": "Восточная 8-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2142493", + "wikipedia": "en:8th Street and St. Mark's Place" + } +}, +{ + "type": "way", + "id": 1159053669, + "bounds": { + "minlat": 40.7232027, + "minlon": -73.9794917, + "maxlat": 40.7240792, + "maxlon": -73.9788537 + }, + "nodes": [ + 10778677019, + 7977873287, + 42444833, + 7977873286, + 8309479376, + 42434233 + ], + "geometry": [ + { "lat": 40.7232027, "lon": -73.9794917 }, + { "lat": 40.7234490, "lon": -73.9793124 }, + { "lat": 40.7235008, "lon": -73.9792747 }, + { "lat": 40.7235606, "lon": -73.9792312 }, + { "lat": 40.7240260, "lon": -73.9788924 }, + { "lat": 40.7240792, "lon": -73.9788537 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1159257333, + "bounds": { + "minlat": 40.7153060, + "minlon": -73.9604360, + "maxlat": 40.7172800, + "maxlon": -73.9583190 + }, + "nodes": [ + 42484171, + 9779533107, + 11502113292, + 9785615166, + 42520398, + 9949550256, + 9949556543, + 42473952, + 9949556542, + 9795044620, + 42520393, + 9795044622, + 9795044637, + 42506177 + ], + "geometry": [ + { "lat": 40.7153060, "lon": -73.9604360 }, + { "lat": 40.7153766, "lon": -73.9603603 }, + { "lat": 40.7155088, "lon": -73.9602185 }, + { "lat": 40.7155416, "lon": -73.9601833 }, + { "lat": 40.7155830, "lon": -73.9601390 }, + { "lat": 40.7156297, "lon": -73.9600892 }, + { "lat": 40.7161262, "lon": -73.9595604 }, + { "lat": 40.7161791, "lon": -73.9595041 }, + { "lat": 40.7162214, "lon": -73.9594573 }, + { "lat": 40.7166848, "lon": -73.9589590 }, + { "lat": 40.7167280, "lon": -73.9589130 }, + { "lat": 40.7167804, "lon": -73.9588566 }, + { "lat": 40.7172359, "lon": -73.9583665 }, + { "lat": 40.7172800, "lon": -73.9583190 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "Bedford Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Bedford", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q2893574", + "wikipedia": "en:Bedford Avenue" + } +}, +{ + "type": "way", + "id": 1159257409, + "bounds": { + "minlat": 40.7163840, + "minlon": -73.9641115, + "maxlat": 40.7180582, + "maxlon": -73.9614230 + }, + "nodes": [ + 42469492, + 9794890525, + 8468050596, + 9794890534, + 42506321, + 9789424777, + 9785615148, + 42536642 + ], + "geometry": [ + { "lat": 40.7180582, "lon": -73.9641115 }, + { "lat": 40.7180284, "lon": -73.9640635 }, + { "lat": 40.7173477, "lon": -73.9629715 }, + { "lat": 40.7173168, "lon": -73.9629212 }, + { "lat": 40.7172723, "lon": -73.9628475 }, + { "lat": 40.7172403, "lon": -73.9627958 }, + { "lat": 40.7164292, "lon": -73.9614955 }, + { "lat": 40.7163840, "lon": -73.9614230 } + ], + "tags": { + "highway": "residential", + "name": "North 3rd Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "3rd", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1160042619, + "bounds": { + "minlat": 40.7393917, + "minlon": -73.9777208, + "maxlat": 40.7398871, + "maxlon": -73.9767888 + }, + "nodes": [ + 10788751692, + 6529190590, + 6529190593, + 8492124957, + 8119596375, + 10788751693, + 2704111040, + 2704111034, + 10788751694, + 5007384480, + 9592830645, + 10788751695, + 8119192791, + 10788751692 + ], + "geometry": [ + { "lat": 40.7395388, "lon": -73.9767888 }, + { "lat": 40.7397656, "lon": -73.9773309 }, + { "lat": 40.7398780, "lon": -73.9775959 }, + { "lat": 40.7398871, "lon": -73.9776158 }, + { "lat": 40.7398175, "lon": -73.9776668 }, + { "lat": 40.7397439, "lon": -73.9777208 }, + { "lat": 40.7396192, "lon": -73.9774285 }, + { "lat": 40.7395059, "lon": -73.9771618 }, + { "lat": 40.7393917, "lon": -73.9768966 }, + { "lat": 40.7394181, "lon": -73.9768773 }, + { "lat": 40.7394690, "lon": -73.9768400 }, + { "lat": 40.7395145, "lon": -73.9768066 }, + { "lat": 40.7395272, "lon": -73.9767973 }, + { "lat": 40.7395388, "lon": -73.9767888 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1160085724, + "bounds": { + "minlat": 40.7525506, + "minlon": -73.9438228, + "maxlat": 40.7530102, + "maxlon": -73.9433786 + }, + "nodes": [ + 42825887, + 7788502007, + 2468400256, + 7746742283 + ], + "geometry": [ + { "lat": 40.7525506, "lon": -73.9438228 }, + { "lat": 40.7526004, "lon": -73.9437730 }, + { "lat": 40.7526663, "lon": -73.9437088 }, + { "lat": 40.7530102, "lon": -73.9433786 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lit": "yes", + "name": "21st Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1160257229, + "bounds": { + "minlat": 40.7028470, + "minlon": -74.0126385, + "maxlat": 40.7032112, + "maxlon": -74.0123832 + }, + "nodes": [ + 7706695191, + 1772062005, + 7706695196, + 8304779700, + 11050101035, + 11050101034, + 11050101033, + 42444360 + ], + "geometry": [ + { "lat": 40.7028470, "lon": -74.0123832 }, + { "lat": 40.7031465, "lon": -74.0125370 }, + { "lat": 40.7031568, "lon": -74.0125426 }, + { "lat": 40.7031783, "lon": -74.0125542 }, + { "lat": 40.7031886, "lon": -74.0125632 }, + { "lat": 40.7031983, "lon": -74.0125804 }, + { "lat": 40.7032070, "lon": -74.0126050 }, + { "lat": 40.7032112, "lon": -74.0126385 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Moore Street", + "name:ko": "무어 스트리트", + "name:ru": "Мур-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water;Moore", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 1160271932, + "bounds": { + "minlat": 40.8395363, + "minlon": -73.9214217, + "maxlat": 40.8396004, + "maxlon": -73.9214151 + }, + "nodes": [ + 2912071013, + 8822253410 + ], + "geometry": [ + { "lat": 40.8396004, "lon": -73.9214151 }, + { "lat": 40.8395363, "lon": -73.9214217 } + ], + "tags": { + "bicycle": "yes", + "bus:lanes": "designated|", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1160271935, + "bounds": { + "minlat": 40.8368246, + "minlon": -73.9223829, + "maxlat": 40.8370165, + "maxlon": -73.9223720 + }, + "nodes": [ + 10790894544, + 4215795997 + ], + "geometry": [ + { "lat": 40.8370165, "lon": -73.9223720 }, + { "lat": 40.8368246, "lon": -73.9223829 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1160273280, + "bounds": { + "minlat": 40.8494512, + "minlon": -73.9162845, + "maxlat": 40.8498495, + "maxlon": -73.9159021 + }, + "nodes": [ + 10790910790, + 12463546971, + 12463546972, + 12463546992, + 12463546982, + 12463546973, + 12463546974, + 12463546975, + 12463546976, + 12463546977, + 12463546978, + 10790910789, + 10790910785, + 10790910788, + 10790910787, + 12463546970, + 10790910786, + 12463546980, + 10790910790 + ], + "geometry": [ + { "lat": 40.8496824, "lon": -73.9162789 }, + { "lat": 40.8496701, "lon": -73.9162845 }, + { "lat": 40.8496560, "lon": -73.9162801 }, + { "lat": 40.8496463, "lon": -73.9162632 }, + { "lat": 40.8496367, "lon": -73.9162464 }, + { "lat": 40.8496199, "lon": -73.9162168 }, + { "lat": 40.8496225, "lon": -73.9161742 }, + { "lat": 40.8495801, "lon": -73.9161184 }, + { "lat": 40.8495238, "lon": -73.9160617 }, + { "lat": 40.8494632, "lon": -73.9160306 }, + { "lat": 40.8494512, "lon": -73.9159900 }, + { "lat": 40.8495042, "lon": -73.9159888 }, + { "lat": 40.8496746, "lon": -73.9159419 }, + { "lat": 40.8497886, "lon": -73.9159021 }, + { "lat": 40.8498495, "lon": -73.9160049 }, + { "lat": 40.8498153, "lon": -73.9160619 }, + { "lat": 40.8497520, "lon": -73.9161875 }, + { "lat": 40.8496913, "lon": -73.9162681 }, + { "lat": 40.8496824, "lon": -73.9162789 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1160297420, + "bounds": { + "minlat": 40.7166900, + "minlon": -73.9858645, + "maxlat": 40.7175333, + "maxlon": -73.9833893 + }, + "nodes": [ + 7476387556, + 12195869748, + 12195869747, + 7612925050, + 12195869746, + 12195869745, + 7612925049, + 12195869744, + 8310245566, + 42435534, + 8310245563, + 5173488758, + 5173488754, + 42427340 + ], + "geometry": [ + { "lat": 40.7175333, "lon": -73.9858645 }, + { "lat": 40.7174846, "lon": -73.9858090 }, + { "lat": 40.7174588, "lon": -73.9857723 }, + { "lat": 40.7174370, "lon": -73.9857380 }, + { "lat": 40.7174110, "lon": -73.9856931 }, + { "lat": 40.7173941, "lon": -73.9856593 }, + { "lat": 40.7173777, "lon": -73.9856224 }, + { "lat": 40.7173659, "lon": -73.9855900 }, + { "lat": 40.7169730, "lon": -73.9843130 }, + { "lat": 40.7169520, "lon": -73.9842443 }, + { "lat": 40.7169249, "lon": -73.9841679 }, + { "lat": 40.7167377, "lon": -73.9835532 }, + { "lat": 40.7167167, "lon": -73.9834843 }, + { "lat": 40.7166900, "lon": -73.9833893 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 1160618888, + "bounds": { + "minlat": 40.7586450, + "minlon": -73.9821356, + "maxlat": 40.7589801, + "maxlon": -73.9813410 + }, + "nodes": [ + 3971196620, + 3971196619, + 42430352 + ], + "geometry": [ + { "lat": 40.7589801, "lon": -73.9821356 }, + { "lat": 40.7587072, "lon": -73.9814844 }, + { "lat": 40.7586450, "lon": -73.9813410 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "West 48th Street", + "name:ru": "Западная 48-я стрит", + "name_1": "West 48 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1160696364, + "bounds": { + "minlat": 40.7659064, + "minlon": -74.0193442, + "maxlat": 40.7662670, + "maxlon": -74.0190766 + }, + "nodes": [ + 307870577, + 10795374678, + 10795374677 + ], + "geometry": [ + { "lat": 40.7662670, "lon": -74.0190766 }, + { "lat": 40.7660426, "lon": -74.0192459 }, + { "lat": 40.7659064, "lon": -74.0193442 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:backward": "through|through;right" + } +}, +{ + "type": "way", + "id": 1160922241, + "bounds": { + "minlat": 40.7167864, + "minlon": -73.9363312, + "maxlat": 40.7172161, + "maxlon": -73.9347055 + }, + "nodes": [ + 42489486, + 9695771689, + 9937797991, + 5838943038 + ], + "geometry": [ + { "lat": 40.7167864, "lon": -73.9363312 }, + { "lat": 40.7168191, "lon": -73.9362473 }, + { "lat": 40.7171823, "lon": -73.9348369 }, + { "lat": 40.7172161, "lon": -73.9347055 } + ], + "tags": { + "highway": "residential", + "name": "Maspeth Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 1161024303, + "bounds": { + "minlat": 40.7236015, + "minlon": -73.9916555, + "maxlat": 40.7237743, + "maxlon": -73.9910751 + }, + "nodes": [ + 10798825171, + 9543294810, + 3927743135, + 1918039877 + ], + "geometry": [ + { "lat": 40.7237743, "lon": -73.9916555 }, + { "lat": 40.7236639, "lon": -73.9912930 }, + { "lat": 40.7236485, "lon": -73.9912422 }, + { "lat": 40.7236015, "lon": -73.9910751 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "through||right", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1161025023, + "bounds": { + "minlat": 40.7721684, + "minlon": -73.9820989, + "maxlat": 40.7727373, + "maxlon": -73.9820764 + }, + "nodes": [ + 1061531685, + 11306314266, + 9915469770, + 6173564344 + ], + "geometry": [ + { "lat": 40.7721684, "lon": -73.9820764 }, + { "lat": 40.7722177, "lon": -73.9820780 }, + { "lat": 40.7726639, "lon": -73.9820959 }, + { "lat": 40.7727373, "lon": -73.9820989 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shoulder", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1161025024, + "bounds": { + "minlat": 40.7713507, + "minlon": -73.9820626, + "maxlat": 40.7717458, + "maxlon": -73.9820496 + }, + "nodes": [ + 1061531447, + 11306331974, + 10798832217 + ], + "geometry": [ + { "lat": 40.7713507, "lon": -73.9820496 }, + { "lat": 40.7714380, "lon": -73.9820525 }, + { "lat": 40.7717458, "lon": -73.9820626 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1161267414, + "bounds": { + "minlat": 40.8511302, + "minlon": -73.9959820, + "maxlat": 40.8515492, + "maxlon": -73.9954284 + }, + "nodes": [ + 10801057724, + 10801057725, + 10801057726, + 10801057727 + ], + "geometry": [ + { "lat": 40.8513440, "lon": -73.9954284 }, + { "lat": 40.8515492, "lon": -73.9958020 }, + { "lat": 40.8513549, "lon": -73.9959820 }, + { "lat": 40.8511302, "lon": -73.9955807 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1161278178, + "bounds": { + "minlat": 40.8021358, + "minlon": -73.9930075, + "maxlat": 40.8030091, + "maxlon": -73.9920930 + }, + "nodes": [ + 10801121160, + 10801121169, + 10801121161, + 10801121168, + 10801121164, + 10801121166, + 10801121162, + 10801121167, + 10801121163 + ], + "geometry": [ + { "lat": 40.8028448, "lon": -73.9920930 }, + { "lat": 40.8030045, "lon": -73.9924616 }, + { "lat": 40.8030091, "lon": -73.9924888 }, + { "lat": 40.8030029, "lon": -73.9925104 }, + { "lat": 40.8024026, "lon": -73.9929597 }, + { "lat": 40.8023411, "lon": -73.9930069 }, + { "lat": 40.8023219, "lon": -73.9930075 }, + { "lat": 40.8023079, "lon": -73.9929932 }, + { "lat": 40.8021358, "lon": -73.9926430 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1161278179, + "bounds": { + "minlat": 40.8022411, + "minlon": -73.9929597, + "maxlat": 40.8024026, + "maxlon": -73.9925551 + }, + "nodes": [ + 10801121164, + 10801121165 + ], + "geometry": [ + { "lat": 40.8024026, "lon": -73.9929597 }, + { "lat": 40.8022411, "lon": -73.9925551 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1162403988, + "bounds": { + "minlat": 40.8111993, + "minlon": -74.0126667, + "maxlat": 40.8116965, + "maxlon": -74.0122240 + }, + "nodes": [ + 10023463242, + 12456223770, + 103867747 + ], + "geometry": [ + { "lat": 40.8111993, "lon": -74.0126667 }, + { "lat": 40.8115746, "lon": -74.0123325 }, + { "lat": 40.8116965, "lon": -74.0122240 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1162403989, + "bounds": { + "minlat": 40.8112964, + "minlon": -74.0128499, + "maxlat": 40.8115992, + "maxlon": -74.0125959 + }, + "nodes": [ + 10023463243, + 10023463244, + 5994285479 + ], + "geometry": [ + { "lat": 40.8112964, "lon": -74.0128499 }, + { "lat": 40.8115173, "lon": -74.0126646 }, + { "lat": 40.8115992, "lon": -74.0125959 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1162403990, + "bounds": { + "minlat": 40.8111160, + "minlon": -74.0127410, + "maxlat": 40.8111993, + "maxlon": -74.0126667 + }, + "nodes": [ + 10023463253, + 10023463242 + ], + "geometry": [ + { "lat": 40.8111160, "lon": -74.0127410 }, + { "lat": 40.8111993, "lon": -74.0126667 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1162404442, + "bounds": { + "minlat": 40.8522817, + "minlon": -73.9653804, + "maxlat": 40.8524315, + "maxlon": -73.9652895 + }, + "nodes": [ + 5449432065, + 5449432073, + 5449432071 + ], + "geometry": [ + { "lat": 40.8522817, "lon": -73.9653804 }, + { "lat": 40.8522939, "lon": -73.9653589 }, + { "lat": 40.8524315, "lon": -73.9652895 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1162406512, + "bounds": { + "minlat": 40.8217509, + "minlon": -73.9878416, + "maxlat": 40.8218437, + "maxlon": -73.9878306 + }, + "nodes": [ + 5341032740, + 7578422378, + 7542575415 + ], + "geometry": [ + { "lat": 40.8218437, "lon": -73.9878306 }, + { "lat": 40.8218150, "lon": -73.9878340 }, + { "lat": 40.8217509, "lon": -73.9878416 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 1162406513, + "bounds": { + "minlat": 40.8213780, + "minlon": -73.9878860, + "maxlat": 40.8217509, + "maxlon": -73.9878416 + }, + "nodes": [ + 7542575415, + 13318551954, + 103207071 + ], + "geometry": [ + { "lat": 40.8217509, "lon": -73.9878416 }, + { "lat": 40.8215826, "lon": -73.9878616 }, + { "lat": 40.8213780, "lon": -73.9878860 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "highway": "secondary", + "name": "Gorge Road", + "ref": "CR S-25", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge;Gorge;George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 1162407163, + "bounds": { + "minlat": 40.8356038, + "minlon": -73.9698062, + "maxlat": 40.8356999, + "maxlon": -73.9694181 + }, + "nodes": [ + 5720061691, + 3588356657, + 3588356656 + ], + "geometry": [ + { "lat": 40.8356999, "lon": -73.9698062 }, + { "lat": 40.8356638, "lon": -73.9696802 }, + { "lat": 40.8356038, "lon": -73.9694181 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Cove" + } +}, +{ + "type": "way", + "id": 1162407164, + "bounds": { + "minlat": 40.8357044, + "minlon": -73.9706480, + "maxlat": 40.8358601, + "maxlon": -73.9701219 + }, + "nodes": [ + 7271518641, + 10172929017, + 5720061683 + ], + "geometry": [ + { "lat": 40.8358601, "lon": -73.9706480 }, + { "lat": 40.8357644, "lon": -73.9703245 }, + { "lat": 40.8357044, "lon": -73.9701219 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1162448225, + "bounds": { + "minlat": 40.8518620, + "minlon": -73.9834106, + "maxlat": 40.8540490, + "maxlon": -73.9796150 + }, + "nodes": [ + 103157078, + 103193281, + 103263553, + 103166300, + 5362345530, + 103263555, + 7428253986, + 5362334357, + 5449468151, + 5449468153, + 5362334360, + 5362334361, + 7427964135, + 7428253985, + 2325759617 + ], + "geometry": [ + { "lat": 40.8518620, "lon": -73.9796150 }, + { "lat": 40.8521290, "lon": -73.9800840 }, + { "lat": 40.8523210, "lon": -73.9804066 }, + { "lat": 40.8525417, "lon": -73.9807929 }, + { "lat": 40.8528578, "lon": -73.9813492 }, + { "lat": 40.8529602, "lon": -73.9815275 }, + { "lat": 40.8531570, "lon": -73.9818649 }, + { "lat": 40.8533339, "lon": -73.9821683 }, + { "lat": 40.8534187, "lon": -73.9823157 }, + { "lat": 40.8535233, "lon": -73.9824974 }, + { "lat": 40.8535511, "lon": -73.9825457 }, + { "lat": 40.8536392, "lon": -73.9826987 }, + { "lat": 40.8536456, "lon": -73.9827098 }, + { "lat": 40.8536742, "lon": -73.9827595 }, + { "lat": 40.8540490, "lon": -73.9834106 } + ], + "tags": { + "highway": "residential", + "name": "North Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "North", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1162461147, + "bounds": { + "minlat": 40.8821025, + "minlon": -74.0118871, + "maxlat": 40.8835597, + "maxlon": -74.0112099 + }, + "nodes": [ + 4163463897, + 6103103284, + 6103103283, + 6103103282, + 6103103281, + 6103103280, + 10752310120, + 6103103279, + 6103103278, + 6103103277, + 6103103276, + 6635342721, + 103197546 + ], + "geometry": [ + { "lat": 40.8835597, "lon": -74.0113064 }, + { "lat": 40.8835232, "lon": -74.0112501 }, + { "lat": 40.8834908, "lon": -74.0112233 }, + { "lat": 40.8834442, "lon": -74.0112126 }, + { "lat": 40.8833914, "lon": -74.0112099 }, + { "lat": 40.8831440, "lon": -74.0113306 }, + { "lat": 40.8826595, "lon": -74.0115344 }, + { "lat": 40.8826148, "lon": -74.0115532 }, + { "lat": 40.8824180, "lon": -74.0116216 }, + { "lat": 40.8823146, "lon": -74.0116739 }, + { "lat": 40.8821919, "lon": -74.0117450 }, + { "lat": 40.8821870, "lon": -74.0117528 }, + { "lat": 40.8821025, "lon": -74.0118871 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1162503096, + "bounds": { + "minlat": 40.8344160, + "minlon": -73.9731650, + "maxlat": 40.8377308, + "maxlon": -73.9723761 + }, + "nodes": [ + 103115552, + 103115550, + 103115548, + 103115546, + 103115544, + 103115541, + 103093386, + 103115539, + 103115537, + 103115536, + 103115535 + ], + "geometry": [ + { "lat": 40.8377308, "lon": -73.9723761 }, + { "lat": 40.8375770, "lon": -73.9724156 }, + { "lat": 40.8367630, "lon": -73.9726090 }, + { "lat": 40.8364500, "lon": -73.9726960 }, + { "lat": 40.8362900, "lon": -73.9727330 }, + { "lat": 40.8361280, "lon": -73.9727550 }, + { "lat": 40.8358580, "lon": -73.9727680 }, + { "lat": 40.8354490, "lon": -73.9728650 }, + { "lat": 40.8348400, "lon": -73.9730520 }, + { "lat": 40.8346100, "lon": -73.9731130 }, + { "lat": 40.8344160, "lon": -73.9731650 } + ], + "tags": { + "highway": "residential", + "name": "Undercliff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07020", + "tiger:zip_right": "07020" + } +}, +{ + "type": "way", + "id": 1163427512, + "bounds": { + "minlat": 40.8600717, + "minlon": -73.9354243, + "maxlat": 40.8600836, + "maxlon": -73.9354092 + }, + "nodes": [ + 10819949896, + 10819949897, + 10819949898, + 10819949899, + 10819949896 + ], + "geometry": [ + { "lat": 40.8600836, "lon": -73.9354226 }, + { "lat": 40.8600717, "lon": -73.9354243 }, + { "lat": 40.8600722, "lon": -73.9354111 }, + { "lat": 40.8600836, "lon": -73.9354092 }, + { "lat": 40.8600836, "lon": -73.9354226 } + ], + "tags": { + "area": "yes", + "description": "A lightpole base in a pinchpoint where the pedestrian path gets very narrow and that narrowness is made worse by the presence of this lightpole base.", + "highway": "service", + "name:en": "Lightpole base", + "note": "A lightpole base in a pinchpoint where the pedestrian path gets very narrow and that narrowness is made worse by the presence of this lightpole base.", + "service": "streetlamp" + } +}, +{ + "type": "way", + "id": 1163529356, + "bounds": { + "minlat": 40.8111915, + "minlon": -73.9905031, + "maxlat": 40.8113964, + "maxlon": -73.9902480 + }, + "nodes": [ + 10821057042, + 10821057043, + 10821057044, + 10821057045 + ], + "geometry": [ + { "lat": 40.8113964, "lon": -73.9905031 }, + { "lat": 40.8113701, "lon": -73.9904143 }, + { "lat": 40.8112919, "lon": -73.9903264 }, + { "lat": 40.8111915, "lon": -73.9902480 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1164213486, + "bounds": { + "minlat": 40.7698008, + "minlon": -73.9168056, + "maxlat": 40.7699189, + "maxlon": -73.9167363 + }, + "nodes": [ + 276209270, + 42898289 + ], + "geometry": [ + { "lat": 40.7698008, "lon": -73.9168056 }, + { "lat": 40.7699189, "lon": -73.9167363 } + ], + "tags": { + "foot": "yes", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "33rd Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through;right|right" + } +}, +{ + "type": "way", + "id": 1164426014, + "bounds": { + "minlat": 40.7252030, + "minlon": -73.9870530, + "maxlat": 40.7256129, + "maxlon": -73.9867557 + }, + "nodes": [ + 42455867, + 7977873310, + 5341393940, + 6133355297 + ], + "geometry": [ + { "lat": 40.7252030, "lon": -73.9870530 }, + { "lat": 40.7252752, "lon": -73.9870006 }, + { "lat": 40.7254313, "lon": -73.9868874 }, + { "lat": 40.7256129, "lon": -73.9867557 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1164741792, + "bounds": { + "minlat": 40.7684951, + "minlon": -73.9504796, + "maxlat": 40.7688591, + "maxlon": -73.9495987 + }, + "nodes": [ + 10832508151, + 6086355078 + ], + "geometry": [ + { "lat": 40.7688591, "lon": -73.9504796 }, + { "lat": 40.7684951, "lon": -73.9495987 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "East 76th Street", + "name:ru": "Восточная 76-я стрит", + "oneway": "no", + "sidewalk": "both", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1165009837, + "bounds": { + "minlat": 40.7590531, + "minlon": -73.9646776, + "maxlat": 40.7593425, + "maxlon": -73.9644641 + }, + "nodes": [ + 10836437297, + 10836437299, + 10836437298 + ], + "geometry": [ + { "lat": 40.7590531, "lon": -73.9646776 }, + { "lat": 40.7591480, "lon": -73.9646076 }, + { "lat": 40.7593425, "lon": -73.9644641 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1165233111, + "bounds": { + "minlat": 40.7228302, + "minlon": -73.9545120, + "maxlat": 40.7232250, + "maxlon": -73.9538711 + }, + "nodes": [ + 9789335901, + 11702273422, + 11146344837, + 42488118 + ], + "geometry": [ + { "lat": 40.7228302, "lon": -73.9538711 }, + { "lat": 40.7231237, "lon": -73.9543477 }, + { "lat": 40.7231876, "lon": -73.9544516 }, + { "lat": 40.7232250, "lon": -73.9545120 } + ], + "tags": { + "highway": "pedestrian", + "name": "Banker's Anchor", + "old_name": "North 15th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "15th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11222" + } +}, +{ + "type": "way", + "id": 1165434472, + "bounds": { + "minlat": 40.7252520, + "minlon": -74.0040310, + "maxlat": 40.7255130, + "maxlon": -74.0033760 + }, + "nodes": [ + 42430154, + 42442282, + 8231934387, + 42439527 + ], + "geometry": [ + { "lat": 40.7255130, "lon": -74.0040310 }, + { "lat": 40.7255003, "lon": -74.0038887 }, + { "lat": 40.7252831, "lon": -74.0034415 }, + { "lat": 40.7252520, "lon": -74.0033760 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1165601348, + "bounds": { + "minlat": 40.7707515, + "minlon": -73.9924314, + "maxlat": 40.7710862, + "maxlon": -73.9921933 + }, + "nodes": [ + 4870256103, + 10841636639, + 10083840628, + 7661292932, + 7661292939 + ], + "geometry": [ + { "lat": 40.7707515, "lon": -73.9924314 }, + { "lat": 40.7707993, "lon": -73.9923974 }, + { "lat": 40.7708471, "lon": -73.9923634 }, + { "lat": 40.7709965, "lon": -73.9922571 }, + { "lat": 40.7710862, "lon": -73.9921933 } + ], + "tags": { + "covered": "no", + "highway": "service", + "lanes": "2", + "motor_vehicle": "destination", + "oneway": "yes", + "service": "driveway", + "surface": "concrete", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1165644579, + "bounds": { + "minlat": 40.7597993, + "minlon": -73.9767177, + "maxlat": 40.7599826, + "maxlon": -73.9762894 + }, + "nodes": [ + 10842005392, + 3977886243, + 42446353 + ], + "geometry": [ + { "lat": 40.7599826, "lon": -73.9767177 }, + { "lat": 40.7598493, "lon": -73.9764000 }, + { "lat": 40.7597993, "lon": -73.9762894 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 52nd Street", + "name:ru": "Западная 52-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1166001816, + "bounds": { + "minlat": 40.7072736, + "minlon": -73.9577028, + "maxlat": 40.7086620, + "maxlon": -73.9569126 + }, + "nodes": [ + 10844877937, + 10601344479 + ], + "geometry": [ + { "lat": 40.7072736, "lon": -73.9577028 }, + { "lat": 40.7086620, "lon": -73.9569126 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11;A11;A11;A63;A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 1166001817, + "bounds": { + "minlat": 40.7067937, + "minlon": -73.9579901, + "maxlat": 40.7072736, + "maxlon": -73.9577028 + }, + "nodes": [ + 479715933, + 10844877937 + ], + "geometry": [ + { "lat": 40.7067937, "lon": -73.9579901 }, + { "lat": 40.7072736, "lon": -73.9577028 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11;A11;A11;A63;A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no", + "tunnel": "yes", + "turn:lanes": "||through;slight_right" + } +}, +{ + "type": "way", + "id": 1166001818, + "bounds": { + "minlat": 40.7043959, + "minlon": -73.9595398, + "maxlat": 40.7068925, + "maxlon": -73.9581054 + }, + "nodes": [ + 479715827, + 479715828, + 8912881843 + ], + "geometry": [ + { "lat": 40.7068925, "lon": -73.9581054 }, + { "lat": 40.7049362, "lon": -73.9592159 }, + { "lat": 40.7043959, "lon": -73.9595398 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11;A11;A63;A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1166001819, + "bounds": { + "minlat": 40.7068925, + "minlon": -73.9581054, + "maxlat": 40.7072870, + "maxlon": -73.9578809 + }, + "nodes": [ + 10844877936, + 479715827 + ], + "geometry": [ + { "lat": 40.7072870, "lon": -73.9578809 }, + { "lat": 40.7068925, "lon": -73.9581054 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11;A11;A63;A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_type_1": "Expy", + "tiger:reviewed": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1166090362, + "bounds": { + "minlat": 40.7268446, + "minlon": -73.9545678, + "maxlat": 40.7270255, + "maxlon": -73.9543876 + }, + "nodes": [ + 10845913427, + 10845913428, + 10845913434, + 10845913429, + 10845913430, + 10845913431, + 10845913432, + 10845913433 + ], + "geometry": [ + { "lat": 40.7268446, "lon": -73.9545678 }, + { "lat": 40.7268643, "lon": -73.9545057 }, + { "lat": 40.7268712, "lon": -73.9544836 }, + { "lat": 40.7268925, "lon": -73.9544154 }, + { "lat": 40.7269005, "lon": -73.9543987 }, + { "lat": 40.7269119, "lon": -73.9543876 }, + { "lat": 40.7269215, "lon": -73.9543876 }, + { "lat": 40.7270255, "lon": -73.9544509 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1166103879, + "bounds": { + "minlat": 40.8534327, + "minlon": -73.9934610, + "maxlat": 40.8540700, + "maxlon": -73.9923265 + }, + "nodes": [ + 10265496293, + 440215455 + ], + "geometry": [ + { "lat": 40.8534327, "lon": -73.9923265 }, + { "lat": 40.8540700, "lon": -73.9934610 } + ], + "tags": { + "highway": "residential", + "name": "Oakdene Avenue" + } +}, +{ + "type": "way", + "id": 1166105935, + "bounds": { + "minlat": 40.8718552, + "minlon": -74.0127358, + "maxlat": 40.8722269, + "maxlon": -74.0120834 + }, + "nodes": [ + 4472892621, + 4472892620, + 775937821, + 775937820, + 775937819 + ], + "geometry": [ + { "lat": 40.8722269, "lon": -74.0127358 }, + { "lat": 40.8721663, "lon": -74.0126691 }, + { "lat": 40.8720931, "lon": -74.0125741 }, + { "lat": 40.8719038, "lon": -74.0121210 }, + { "lat": 40.8718552, "lon": -74.0120834 } + ], + "tags": { + "highway": "residential", + "name": "Willow Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Willow", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 1166106276, + "bounds": { + "minlat": 40.8714444, + "minlon": -74.0122059, + "maxlat": 40.8716779, + "maxlon": -74.0116823 + }, + "nodes": [ + 10846014634, + 10846014640, + 10846014635, + 10846014636, + 10846014637, + 10846014638, + 10846014639 + ], + "geometry": [ + { "lat": 40.8715335, "lon": -74.0122059 }, + { "lat": 40.8714955, "lon": -74.0120542 }, + { "lat": 40.8714602, "lon": -74.0119131 }, + { "lat": 40.8714444, "lon": -74.0118437 }, + { "lat": 40.8714472, "lon": -74.0118037 }, + { "lat": 40.8714682, "lon": -74.0117683 }, + { "lat": 40.8716779, "lon": -74.0116823 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1166106277, + "bounds": { + "minlat": 40.8714955, + "minlon": -74.0120542, + "maxlat": 40.8716406, + "maxlon": -74.0118322 + }, + "nodes": [ + 10846014640, + 10846014641, + 10846014642 + ], + "geometry": [ + { "lat": 40.8714955, "lon": -74.0120542 }, + { "lat": 40.8716406, "lon": -74.0119901 }, + { "lat": 40.8716027, "lon": -74.0118322 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1166126819, + "bounds": { + "minlat": 40.8646026, + "minlon": -73.9956545, + "maxlat": 40.8647833, + "maxlon": -73.9955977 + }, + "nodes": [ + 2807153807, + 10941434044, + 10941434034, + 2807153816, + 10941434041, + 2807153809, + 10941434028, + 10941434055, + 10941434063, + 2807153827 + ], + "geometry": [ + { "lat": 40.8646026, "lon": -73.9956545 }, + { "lat": 40.8646191, "lon": -73.9956370 }, + { "lat": 40.8646379, "lon": -73.9956218 }, + { "lat": 40.8646571, "lon": -73.9956106 }, + { "lat": 40.8646794, "lon": -73.9956021 }, + { "lat": 40.8647017, "lon": -73.9955979 }, + { "lat": 40.8647230, "lon": -73.9955977 }, + { "lat": 40.8647429, "lon": -73.9956009 }, + { "lat": 40.8647624, "lon": -73.9956072 }, + { "lat": 40.8647833, "lon": -73.9956180 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1166126820, + "bounds": { + "minlat": 40.8647419, + "minlon": -73.9960277, + "maxlat": 40.8648711, + "maxlon": -73.9958738 + }, + "nodes": [ + 2807153823, + 10941434045, + 10941434059, + 10941434029, + 2807153804, + 10941434046, + 2807153818, + 10941434062, + 2807153802 + ], + "geometry": [ + { "lat": 40.8648711, "lon": -73.9958738 }, + { "lat": 40.8648608, "lon": -73.9959094 }, + { "lat": 40.8648493, "lon": -73.9959356 }, + { "lat": 40.8648345, "lon": -73.9959604 }, + { "lat": 40.8648177, "lon": -73.9959816 }, + { "lat": 40.8647998, "lon": -73.9959985 }, + { "lat": 40.8647809, "lon": -73.9960118 }, + { "lat": 40.8647598, "lon": -73.9960221 }, + { "lat": 40.8647419, "lon": -73.9960277 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1166126821, + "bounds": { + "minlat": 40.8645651, + "minlon": -73.9960306, + "maxlat": 40.8647419, + "maxlon": -73.9959063 + }, + "nodes": [ + 2807153802, + 10941434031, + 2807153803, + 10941434039, + 10941434040, + 2807153808, + 10941434037, + 2807153805, + 10941434048, + 10941434032, + 10941434057, + 2807153814 + ], + "geometry": [ + { "lat": 40.8647419, "lon": -73.9960277 }, + { "lat": 40.8647235, "lon": -73.9960305 }, + { "lat": 40.8647049, "lon": -73.9960306 }, + { "lat": 40.8646850, "lon": -73.9960276 }, + { "lat": 40.8646647, "lon": -73.9960211 }, + { "lat": 40.8646466, "lon": -73.9960121 }, + { "lat": 40.8646302, "lon": -73.9960008 }, + { "lat": 40.8646146, "lon": -73.9959870 }, + { "lat": 40.8646006, "lon": -73.9959713 }, + { "lat": 40.8645877, "lon": -73.9959531 }, + { "lat": 40.8645748, "lon": -73.9959297 }, + { "lat": 40.8645651, "lon": -73.9959063 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1166126822, + "bounds": { + "minlat": 40.8648711, + "minlon": -73.9958738, + "maxlat": 40.8648754, + "maxlon": -73.9958486 + }, + "nodes": [ + 2807153825, + 2807153823 + ], + "geometry": [ + { "lat": 40.8648754, "lon": -73.9958486 }, + { "lat": 40.8648711, "lon": -73.9958738 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1166126823, + "bounds": { + "minlat": 40.8647833, + "minlon": -73.9958486, + "maxlat": 40.8648774, + "maxlon": -73.9956180 + }, + "nodes": [ + 2807153827, + 10941434038, + 2807153801, + 10941434054, + 10941434053, + 2807153810, + 10941434050, + 10941434042, + 10941434030, + 2807153825 + ], + "geometry": [ + { "lat": 40.8647833, "lon": -73.9956180 }, + { "lat": 40.8648044, "lon": -73.9956338 }, + { "lat": 40.8648219, "lon": -73.9956515 }, + { "lat": 40.8648386, "lon": -73.9956741 }, + { "lat": 40.8648530, "lon": -73.9957002 }, + { "lat": 40.8648648, "lon": -73.9957307 }, + { "lat": 40.8648720, "lon": -73.9957587 }, + { "lat": 40.8648764, "lon": -73.9957898 }, + { "lat": 40.8648774, "lon": -73.9958185 }, + { "lat": 40.8648754, "lon": -73.9958486 } + ], + "tags": { + "highway": "tertiary", + "junction": "roundabout", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1167572182, + "bounds": { + "minlat": 40.7589662, + "minlon": -74.0033682, + "maxlat": 40.7592486, + "maxlon": -74.0031619 + }, + "nodes": [ + 6575692624, + 12154605951, + 247084436 + ], + "geometry": [ + { "lat": 40.7589662, "lon": -74.0033682 }, + { "lat": 40.7591162, "lon": -74.0032574 }, + { "lat": 40.7592486, "lon": -74.0031619 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1167572183, + "bounds": { + "minlat": 40.7586935, + "minlon": -74.0035701, + "maxlat": 40.7589662, + "maxlon": -74.0033682 + }, + "nodes": [ + 10858288588, + 6575692624 + ], + "geometry": [ + { "lat": 40.7586935, "lon": -74.0035701 }, + { "lat": 40.7589662, "lon": -74.0033682 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "no|not_left|yes|yes|yes", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|||" + } +}, +{ + "type": "way", + "id": 1167572184, + "bounds": { + "minlat": 40.7573785, + "minlon": -74.0048127, + "maxlat": 40.7576450, + "maxlon": -74.0046169 + }, + "nodes": [ + 4207978501, + 10858288589 + ], + "geometry": [ + { "lat": 40.7576450, "lon": -74.0046169 }, + { "lat": 40.7573785, "lon": -74.0048127 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|left|through|through|through" + } +}, +{ + "type": "way", + "id": 1167572188, + "bounds": { + "minlat": 40.7487327, + "minlon": -74.0083562, + "maxlat": 40.7491221, + "maxlon": -74.0081537 + }, + "nodes": [ + 246580331, + 12161232201, + 246580332, + 9143574629, + 12161232202, + 9143574628, + 9143574630, + 12161232203, + 10858291408 + ], + "geometry": [ + { "lat": 40.7491221, "lon": -74.0083562 }, + { "lat": 40.7490706, "lon": -74.0083299 }, + { "lat": 40.7490319, "lon": -74.0083026 }, + { "lat": 40.7489908, "lon": -74.0082752 }, + { "lat": 40.7489493, "lon": -74.0082500 }, + { "lat": 40.7489010, "lon": -74.0082219 }, + { "lat": 40.7488525, "lon": -74.0082003 }, + { "lat": 40.7487952, "lon": -74.0081770 }, + { "lat": 40.7487327, "lon": -74.0081537 } + ], + "tags": { + "change": "no", + "destination": "Chelsea Piers", + "highway": "service", + "lanes": "2", + "maxspeed": "25 mph", + "oneway": "yes", + "service": "driveway", + "sidewalk:both": "separate", + "surface": "cobblestone" + } +}, +{ + "type": "way", + "id": 1167762594, + "bounds": { + "minlat": 40.7485004, + "minlon": -74.0081537, + "maxlat": 40.7487327, + "maxlon": -74.0080309 + }, + "nodes": [ + 10858291408, + 12161232204, + 12161232205, + 12161232206, + 246580334, + 9143574640, + 9143574655, + 12161232207 + ], + "geometry": [ + { "lat": 40.7487327, "lon": -74.0081537 }, + { "lat": 40.7486659, "lon": -74.0081309 }, + { "lat": 40.7486342, "lon": -74.0081195 }, + { "lat": 40.7486066, "lon": -74.0081090 }, + { "lat": 40.7485848, "lon": -74.0080963 }, + { "lat": 40.7485534, "lon": -74.0080707 }, + { "lat": 40.7485298, "lon": -74.0080511 }, + { "lat": 40.7485004, "lon": -74.0080309 } + ], + "tags": { + "destination": "Chelsea Piers", + "highway": "service", + "lanes": "1", + "maxspeed": "25 mph", + "oneway": "yes", + "service": "driveway", + "sidewalk:both": "separate", + "surface": "cobblestone" + } +}, +{ + "type": "way", + "id": 1167939119, + "bounds": { + "minlat": 40.7663005, + "minlon": -73.9818935, + "maxlat": 40.7666902, + "maxlon": -73.9818244 + }, + "nodes": [ + 10862166674, + 8785244283, + 42428329 + ], + "geometry": [ + { "lat": 40.7666902, "lon": -73.9818244 }, + { "lat": 40.7664334, "lon": -73.9818683 }, + { "lat": 40.7663005, "lon": -73.9818935 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1167942377, + "bounds": { + "minlat": 40.7422011, + "minlon": -74.0044976, + "maxlat": 40.7422885, + "maxlon": -74.0044325 + }, + "nodes": [ + 42444909, + 8310246352, + 10862160673 + ], + "geometry": [ + { "lat": 40.7422885, "lon": -74.0044325 }, + { "lat": 40.7422437, "lon": -74.0044663 }, + { "lat": 40.7422011, "lon": -74.0044976 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1167942378, + "bounds": { + "minlat": 40.7421252, + "minlon": -74.0045542, + "maxlat": 40.7422011, + "maxlon": -74.0044976 + }, + "nodes": [ + 10862160673, + 4557517552 + ], + "geometry": [ + { "lat": 40.7422011, "lon": -74.0044976 }, + { "lat": 40.7421252, "lon": -74.0045542 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "||slight_right|slight_right", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1167942379, + "bounds": { + "minlat": 40.7418935, + "minlon": -74.0046676, + "maxlat": 40.7421252, + "maxlon": -74.0045542 + }, + "nodes": [ + 4557517552, + 4557517553, + 10862160674 + ], + "geometry": [ + { "lat": 40.7421252, "lon": -74.0045542 }, + { "lat": 40.7420267, "lon": -74.0045863 }, + { "lat": 40.7418935, "lon": -74.0046676 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1168190179, + "bounds": { + "minlat": 40.7067450, + "minlon": -73.9231347, + "maxlat": 40.7070001, + "maxlon": -73.9228679 + }, + "nodes": [ + 10864166198, + 10864166200, + 10864166201, + 10864166199 + ], + "geometry": [ + { "lat": 40.7070001, "lon": -73.9228679 }, + { "lat": 40.7068203, "lon": -73.9230560 }, + { "lat": 40.7067988, "lon": -73.9230785 }, + { "lat": 40.7067450, "lon": -73.9231347 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1168225955, + "bounds": { + "minlat": 40.7657677, + "minlon": -73.9984130, + "maxlat": 40.7658184, + "maxlon": -73.9983744 + }, + "nodes": [ + 10864461087, + 1636819187 + ], + "geometry": [ + { "lat": 40.7657677, "lon": -73.9984130 }, + { "lat": 40.7658184, "lon": -73.9983744 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1168225956, + "bounds": { + "minlat": 40.7662977, + "minlon": -73.9997236, + "maxlat": 40.7664203, + "maxlon": -73.9996339 + }, + "nodes": [ + 10864461088, + 10864461089 + ], + "geometry": [ + { "lat": 40.7662977, "lon": -73.9997236 }, + { "lat": 40.7664203, "lon": -73.9996339 } + ], + "tags": { + "highway": "service", + "layer": "2", + "level": "2", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1168225957, + "bounds": { + "minlat": 40.7659339, + "minlon": -73.9988472, + "maxlat": 40.7660522, + "maxlon": -73.9987604 + }, + "nodes": [ + 10864461091, + 10864461090 + ], + "geometry": [ + { "lat": 40.7660522, "lon": -73.9987604 }, + { "lat": 40.7659339, "lon": -73.9988472 } + ], + "tags": { + "highway": "service", + "layer": "2", + "level": "2", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1168225974, + "bounds": { + "minlat": 40.7535314, + "minlon": -73.9492308, + "maxlat": 40.7536783, + "maxlon": -73.9489309 + }, + "nodes": [ + 10864444178, + 10864444179 + ], + "geometry": [ + { "lat": 40.7535314, "lon": -73.9489309 }, + { "lat": 40.7536783, "lon": -73.9492308 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1168225975, + "bounds": { + "minlat": 40.7539022, + "minlon": -73.9491975, + "maxlat": 40.7540903, + "maxlon": -73.9490420 + }, + "nodes": [ + 10864444184, + 10864444185, + 10864444181, + 10864444182 + ], + "geometry": [ + { "lat": 40.7539022, "lon": -73.9491975 }, + { "lat": 40.7540292, "lon": -73.9490942 }, + { "lat": 40.7540453, "lon": -73.9490811 }, + { "lat": 40.7540903, "lon": -73.9490420 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1168225976, + "bounds": { + "minlat": 40.7538571, + "minlon": -73.9492342, + "maxlat": 40.7539022, + "maxlon": -73.9491975 + }, + "nodes": [ + 10864444183, + 10864444184 + ], + "geometry": [ + { "lat": 40.7538571, "lon": -73.9492342 }, + { "lat": 40.7539022, "lon": -73.9491975 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1168225977, + "bounds": { + "minlat": 40.7536783, + "minlon": -73.9493396, + "maxlat": 40.7538571, + "maxlon": -73.9492308 + }, + "nodes": [ + 10864444179, + 10864444180, + 10864444183 + ], + "geometry": [ + { "lat": 40.7536783, "lon": -73.9492308 }, + { "lat": 40.7537275, "lon": -73.9493396 }, + { "lat": 40.7538571, "lon": -73.9492342 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1168225978, + "bounds": { + "minlat": 40.7534878, + "minlon": -73.9489309, + "maxlat": 40.7535314, + "maxlon": -73.9488387 + }, + "nodes": [ + 10864444176, + 10864444177, + 10864444178 + ], + "geometry": [ + { "lat": 40.7534878, "lon": -73.9488387 }, + { "lat": 40.7535255, "lon": -73.9489180 }, + { "lat": 40.7535314, "lon": -73.9489309 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1168227543, + "bounds": { + "minlat": 40.7670019, + "minlon": -73.9974915, + "maxlat": 40.7670784, + "maxlon": -73.9974359 + }, + "nodes": [ + 10864456161, + 1636819192 + ], + "geometry": [ + { "lat": 40.7670019, "lon": -73.9974915 }, + { "lat": 40.7670784, "lon": -73.9974359 } + ], + "tags": { + "highway": "service", + "layer": "2", + "level": "2", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1168227544, + "bounds": { + "minlat": 40.7675252, + "minlon": -73.9987249, + "maxlat": 40.7676483, + "maxlon": -73.9986314 + }, + "nodes": [ + 10864456163, + 10864456165, + 13102867316, + 10864456164, + 10864456162 + ], + "geometry": [ + { "lat": 40.7676483, "lon": -73.9986314 }, + { "lat": 40.7676263, "lon": -73.9986853 }, + { "lat": 40.7676009, "lon": -73.9987151 }, + { "lat": 40.7675675, "lon": -73.9987249 }, + { "lat": 40.7675252, "lon": -73.9987133 } + ], + "tags": { + "highway": "service", + "layer": "2", + "level": "2", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1168254725, + "bounds": { + "minlat": 40.7016615, + "minlon": -73.9902933, + "maxlat": 40.7023400, + "maxlon": -73.9902726 + }, + "nodes": [ + 10864736900, + 10864736903, + 10864736902, + 13700798062 + ], + "geometry": [ + { "lat": 40.7016615, "lon": -73.9902933 }, + { "lat": 40.7017109, "lon": -73.9902920 }, + { "lat": 40.7018302, "lon": -73.9902889 }, + { "lat": 40.7023400, "lon": -73.9902726 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1168260320, + "bounds": { + "minlat": 40.7686900, + "minlon": -73.9961029, + "maxlat": 40.7687226, + "maxlon": -73.9958389 + }, + "nodes": [ + 10864757222, + 10864757223, + 10864757224, + 247121481 + ], + "geometry": [ + { "lat": 40.7687036, "lon": -73.9958389 }, + { "lat": 40.7686900, "lon": -73.9959349 }, + { "lat": 40.7687006, "lon": -73.9960035 }, + { "lat": 40.7687226, "lon": -73.9961029 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1168260321, + "bounds": { + "minlat": 40.7684761, + "minlon": -73.9960198, + "maxlat": 40.7687036, + "maxlon": -73.9958389 + }, + "nodes": [ + 10864757222, + 247120361 + ], + "geometry": [ + { "lat": 40.7687036, "lon": -73.9958389 }, + { "lat": 40.7684761, "lon": -73.9960198 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1168260322, + "bounds": { + "minlat": 40.7692842, + "minlon": -73.9954188, + "maxlat": 40.7693567, + "maxlon": -73.9953687 + }, + "nodes": [ + 247122530, + 6852401935 + ], + "geometry": [ + { "lat": 40.7693567, "lon": -73.9953687 }, + { "lat": 40.7692842, "lon": -73.9954188 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1168471652, + "bounds": { + "minlat": 40.8402015, + "minlon": -73.9303035, + "maxlat": 40.8403501, + "maxlon": -73.9302885 + }, + "nodes": [ + 595757801, + 5543850733 + ], + "geometry": [ + { "lat": 40.8403501, "lon": -73.9303035 }, + { "lat": 40.8402015, "lon": -73.9302885 } + ], + "tags": { + "highway": "service", + "maxspeed": "5 mph", + "noname": "yes" + } +}, +{ + "type": "way", + "id": 1168933825, + "bounds": { + "minlat": 40.7876313, + "minlon": -73.9331480, + "maxlat": 40.7877152, + "maxlon": -73.9329688 + }, + "nodes": [ + 3037022136, + 3037150115, + 5610577642 + ], + "geometry": [ + { "lat": 40.7876313, "lon": -73.9329688 }, + { "lat": 40.7876695, "lon": -73.9330386 }, + { "lat": 40.7877152, "lon": -73.9331480 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1169395569, + "bounds": { + "minlat": 40.8445812, + "minlon": -73.9449217, + "maxlat": 40.8472704, + "maxlon": -73.9443684 + }, + "nodes": [ + 60927650, + 7908589003, + 7908588989, + 7908575875, + 7908589092, + 7908589078, + 7908589065, + 60927651, + 7908589052, + 7908589039, + 7908589025, + 7908588997, + 60927652, + 7908575883, + 7908589011, + 7908575870, + 7907883463, + 60927653, + 7907916452, + 7907916411, + 7907916403, + 60927654, + 7907883471 + ], + "geometry": [ + { "lat": 40.8445812, "lon": -73.9449217 }, + { "lat": 40.8451837, "lon": -73.9448870 }, + { "lat": 40.8452960, "lon": -73.9448779 }, + { "lat": 40.8454043, "lon": -73.9448689 }, + { "lat": 40.8455115, "lon": -73.9448592 }, + { "lat": 40.8456114, "lon": -73.9448485 }, + { "lat": 40.8457156, "lon": -73.9448366 }, + { "lat": 40.8458120, "lon": -73.9448249 }, + { "lat": 40.8459092, "lon": -73.9448108 }, + { "lat": 40.8460024, "lon": -73.9447951 }, + { "lat": 40.8460961, "lon": -73.9447772 }, + { "lat": 40.8461911, "lon": -73.9447573 }, + { "lat": 40.8462840, "lon": -73.9447355 }, + { "lat": 40.8463765, "lon": -73.9447113 }, + { "lat": 40.8464674, "lon": -73.9446854 }, + { "lat": 40.8465720, "lon": -73.9446519 }, + { "lat": 40.8466681, "lon": -73.9446209 }, + { "lat": 40.8467651, "lon": -73.9445878 }, + { "lat": 40.8468606, "lon": -73.9445524 }, + { "lat": 40.8469756, "lon": -73.9445053 }, + { "lat": 40.8470859, "lon": -73.9444579 }, + { "lat": 40.8471889, "lon": -73.9444101 }, + { "lat": 40.8472704, "lon": -73.9443684 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1169395570, + "bounds": { + "minlat": 40.8542367, + "minlon": -73.9403011, + "maxlat": 40.8552517, + "maxlon": -73.9397533 + }, + "nodes": [ + 60916829, + 7911483095, + 374505264, + 7911469478, + 374504878, + 7911483087, + 60916830, + 7911483096, + 60916831 + ], + "geometry": [ + { "lat": 40.8542367, "lon": -73.9403011 }, + { "lat": 40.8543442, "lon": -73.9402551 }, + { "lat": 40.8546579, "lon": -73.9401204 }, + { "lat": 40.8547598, "lon": -73.9400760 }, + { "lat": 40.8548641, "lon": -73.9400270 }, + { "lat": 40.8549663, "lon": -73.9399692 }, + { "lat": 40.8550636, "lon": -73.9399030 }, + { "lat": 40.8551610, "lon": -73.9398285 }, + { "lat": 40.8552517, "lon": -73.9397533 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "45 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1169395571, + "bounds": { + "minlat": 40.8735347, + "minlon": -73.9285904, + "maxlat": 40.8759388, + "maxlon": -73.9254011 + }, + "nodes": [ + 8584784547, + 8584784548, + 60915162, + 5771241307, + 12063642858, + 12063642857, + 12063642856, + 60915161, + 12063642855, + 60915160, + 12063642854, + 12063642853, + 12063642852, + 12063642851, + 12063642850, + 60915159, + 12063642849, + 12063642848, + 12063642847, + 12063642846, + 12063642845, + 60915158, + 12063642844, + 12063642843, + 12063642842, + 12063642841, + 60915157, + 60915156 + ], + "geometry": [ + { "lat": 40.8759388, "lon": -73.9254011 }, + { "lat": 40.8758842, "lon": -73.9255292 }, + { "lat": 40.8758313, "lon": -73.9256469 }, + { "lat": 40.8757674, "lon": -73.9257724 }, + { "lat": 40.8757113, "lon": -73.9258889 }, + { "lat": 40.8756439, "lon": -73.9260084 }, + { "lat": 40.8755773, "lon": -73.9261256 }, + { "lat": 40.8755116, "lon": -73.9262366 }, + { "lat": 40.8754431, "lon": -73.9263488 }, + { "lat": 40.8753748, "lon": -73.9264560 }, + { "lat": 40.8753001, "lon": -73.9265688 }, + { "lat": 40.8752184, "lon": -73.9266865 }, + { "lat": 40.8751457, "lon": -73.9267916 }, + { "lat": 40.8750737, "lon": -73.9268910 }, + { "lat": 40.8749956, "lon": -73.9269956 }, + { "lat": 40.8749180, "lon": -73.9270971 }, + { "lat": 40.8748402, "lon": -73.9271990 }, + { "lat": 40.8747641, "lon": -73.9272978 }, + { "lat": 40.8746831, "lon": -73.9273995 }, + { "lat": 40.8746024, "lon": -73.9274968 }, + { "lat": 40.8745200, "lon": -73.9275952 }, + { "lat": 40.8744414, "lon": -73.9276884 }, + { "lat": 40.8743532, "lon": -73.9277875 }, + { "lat": 40.8742586, "lon": -73.9278935 }, + { "lat": 40.8741756, "lon": -73.9279833 }, + { "lat": 40.8740907, "lon": -73.9280723 }, + { "lat": 40.8740081, "lon": -73.9281563 }, + { "lat": 40.8735347, "lon": -73.9285904 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "concrete", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1169395572, + "bounds": { + "minlat": 40.7835849, + "minlon": -73.9854512, + "maxlat": 40.7854887, + "maxlon": -73.9841179 + }, + "nodes": [ + 595295438, + 9168918178, + 9168918177, + 61269407, + 7910096915, + 7908017351, + 7910096910, + 61269408, + 9168918176, + 61271527, + 10873903275 + ], + "geometry": [ + { "lat": 40.7854887, "lon": -73.9841179 }, + { "lat": 40.7852267, "lon": -73.9842875 }, + { "lat": 40.7850319, "lon": -73.9844219 }, + { "lat": 40.7848363, "lon": -73.9845549 }, + { "lat": 40.7846469, "lon": -73.9846867 }, + { "lat": 40.7844556, "lon": -73.9848209 }, + { "lat": 40.7842652, "lon": -73.9849556 }, + { "lat": 40.7840794, "lon": -73.9850932 }, + { "lat": 40.7838886, "lon": -73.9852317 }, + { "lat": 40.7836911, "lon": -73.9853737 }, + { "lat": 40.7835849, "lon": -73.9854512 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1169704746, + "bounds": { + "minlat": 40.7461914, + "minlon": -73.9552781, + "maxlat": 40.7466439, + "maxlon": -73.9529451 + }, + "nodes": [ + 2408209083, + 9982771925, + 9982771924, + 42826868 + ], + "geometry": [ + { "lat": 40.7466439, "lon": -73.9552781 }, + { "lat": 40.7466298, "lon": -73.9552021 }, + { "lat": 40.7462114, "lon": -73.9530553 }, + { "lat": 40.7461914, "lon": -73.9529451 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "46th Road", + "oneway": "yes", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "46th", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 1169956837, + "bounds": { + "minlat": 40.8547628, + "minlon": -73.9768894, + "maxlat": 40.8549089, + "maxlon": -73.9767211 + }, + "nodes": [ + 3564403154, + 103140893 + ], + "geometry": [ + { "lat": 40.8547628, "lon": -73.9768894 }, + { "lat": 40.8549089, "lon": -73.9767211 } + ], + "tags": { + "highway": "service", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Ann", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1171080932, + "bounds": { + "minlat": 40.8051105, + "minlon": -73.9113905, + "maxlat": 40.8055684, + "maxlon": -73.9105043 + }, + "nodes": [ + 42753403, + 13038971561, + 10700391948, + 42753400 + ], + "geometry": [ + { "lat": 40.8055684, "lon": -73.9105043 }, + { "lat": 40.8055053, "lon": -73.9105674 }, + { "lat": 40.8054636, "lon": -73.9106092 }, + { "lat": 40.8051105, "lon": -73.9113905 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_type": "Blvd", + "tiger:zip_left": "10472" + } +}, +{ + "type": "way", + "id": 1171460356, + "bounds": { + "minlat": 40.7143922, + "minlon": -74.0069888, + "maxlat": 40.7144650, + "maxlon": -74.0069350 + }, + "nodes": [ + 10885572122, + 12353643020, + 10885572123, + 10885572124 + ], + "geometry": [ + { "lat": 40.7144650, "lon": -74.0069350 }, + { "lat": 40.7144311, "lon": -74.0069599 }, + { "lat": 40.7144067, "lon": -74.0069778 }, + { "lat": 40.7143922, "lon": -74.0069888 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1171527878, + "bounds": { + "minlat": 40.8542029, + "minlon": -73.9700589, + "maxlat": 40.8542790, + "maxlon": -73.9698852 + }, + "nodes": [ + 103280494, + 7929709300, + 103280492 + ], + "geometry": [ + { "lat": 40.8542790, "lon": -73.9700589 }, + { "lat": 40.8542408, "lon": -73.9699743 }, + { "lat": 40.8542029, "lon": -73.9698852 } + ], + "tags": { + "highway": "primary", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1171527879, + "bounds": { + "minlat": 40.8539517, + "minlon": -73.9698852, + "maxlat": 40.8542029, + "maxlon": -73.9692563 + }, + "nodes": [ + 103280492, + 7127895880, + 7929428517 + ], + "geometry": [ + { "lat": 40.8542029, "lon": -73.9698852 }, + { "lat": 40.8541482, "lon": -73.9697534 }, + { "lat": 40.8539517, "lon": -73.9692563 } + ], + "tags": { + "highway": "primary", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1172562784, + "bounds": { + "minlat": 40.7615047, + "minlon": -73.9256725, + "maxlat": 40.7616046, + "maxlon": -73.9254636 + }, + "nodes": [ + 10894218743, + 10894218742, + 5488250137 + ], + "geometry": [ + { "lat": 40.7616046, "lon": -73.9256725 }, + { "lat": 40.7615498, "lon": -73.9255602 }, + { "lat": 40.7615047, "lon": -73.9254636 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1172694082, + "bounds": { + "minlat": 40.7686016, + "minlon": -73.9607356, + "maxlat": 40.7688501, + "maxlon": -73.9605661 + }, + "nodes": [ + 10895851143, + 10895851144, + 10895851145 + ], + "geometry": [ + { "lat": 40.7688501, "lon": -73.9605661 }, + { "lat": 40.7687832, "lon": -73.9606110 }, + { "lat": 40.7686016, "lon": -73.9607356 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1173024583, + "bounds": { + "minlat": 40.7293914, + "minlon": -74.0057654, + "maxlat": 40.7294638, + "maxlon": -74.0051849 + }, + "nodes": [ + 8648032265, + 5837109293, + 1319476957, + 1319476955, + 42430761 + ], + "geometry": [ + { "lat": 40.7293914, "lon": -74.0057654 }, + { "lat": 40.7293957, "lon": -74.0055490 }, + { "lat": 40.7294096, "lon": -74.0054120 }, + { "lat": 40.7294198, "lon": -74.0053386 }, + { "lat": 40.7294638, "lon": -74.0051849 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Clarkson Street", + "name:etymology:wikidata": "Q6790308", + "name:ko": "클락슨 스트리트", + "name:ru": "Кларксон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1173031686, + "bounds": { + "minlat": 40.7609528, + "minlon": -73.9974856, + "maxlat": 40.7612913, + "maxlon": -73.9973205 + }, + "nodes": [ + 10899164836, + 10899164841, + 10899164837, + 10899164838, + 10899164839, + 10899164840 + ], + "geometry": [ + { "lat": 40.7612913, "lon": -73.9973205 }, + { "lat": 40.7612315, "lon": -73.9973626 }, + { "lat": 40.7610576, "lon": -73.9974826 }, + { "lat": 40.7610200, "lon": -73.9974856 }, + { "lat": 40.7609806, "lon": -73.9974595 }, + { "lat": 40.7609528, "lon": -73.9973973 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1173041683, + "bounds": { + "minlat": 40.8179572, + "minlon": -73.9363535, + "maxlat": 40.8185961, + "maxlon": -73.9358865 + }, + "nodes": [ + 10899250515, + 10899250514, + 10899250516, + 10899250510, + 10899250513, + 10899250517, + 10899250511, + 10899250512 + ], + "geometry": [ + { "lat": 40.8179572, "lon": -73.9363535 }, + { "lat": 40.8180311, "lon": -73.9363009 }, + { "lat": 40.8180503, "lon": -73.9362869 }, + { "lat": 40.8180627, "lon": -73.9362780 }, + { "lat": 40.8183787, "lon": -73.9360473 }, + { "lat": 40.8185319, "lon": -73.9359354 }, + { "lat": 40.8185509, "lon": -73.9359215 }, + { "lat": 40.8185961, "lon": -73.9358865 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1173057279, + "bounds": { + "minlat": 40.8708304, + "minlon": -73.9072834, + "maxlat": 40.8730055, + "maxlon": -73.9062767 + }, + "nodes": [ + 42727295, + 8719343604, + 10899381407 + ], + "geometry": [ + { "lat": 40.8730055, "lon": -73.9062767 }, + { "lat": 40.8728809, "lon": -73.9063344 }, + { "lat": 40.8708304, "lon": -73.9072834 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1173127709, + "bounds": { + "minlat": 40.8072023, + "minlon": -73.9066984, + "maxlat": 40.8098312, + "maxlon": -73.9030738 + }, + "nodes": [ + 588115006, + 10900092334, + 7042955000, + 7564343620, + 10902729983, + 42753410, + 9156979754, + 5944903675, + 42724872 + ], + "geometry": [ + { "lat": 40.8098312, "lon": -73.9030738 }, + { "lat": 40.8096377, "lon": -73.9034068 }, + { "lat": 40.8094281, "lon": -73.9037119 }, + { "lat": 40.8090009, "lon": -73.9042800 }, + { "lat": 40.8085638, "lon": -73.9048989 }, + { "lat": 40.8085083, "lon": -73.9049818 }, + { "lat": 40.8079132, "lon": -73.9058109 }, + { "lat": 40.8075864, "lon": -73.9062654 }, + { "lat": 40.8072023, "lon": -73.9066984 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10472" + } +}, +{ + "type": "way", + "id": 1173352487, + "bounds": { + "minlat": 40.7994858, + "minlon": -73.9663944, + "maxlat": 40.7996114, + "maxlon": -73.9663103 + }, + "nodes": [ + 10902020359, + 9675461941 + ], + "geometry": [ + { "lat": 40.7994858, "lon": -73.9663944 }, + { "lat": 40.7996114, "lon": -73.9663103 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1173357723, + "bounds": { + "minlat": 40.7978705, + "minlon": -73.9675624, + "maxlat": 40.7981389, + "maxlon": -73.9673780 + }, + "nodes": [ + 42442557, + 10165989499, + 13768423635 + ], + "geometry": [ + { "lat": 40.7978705, "lon": -73.9675624 }, + { "lat": 40.7979298, "lon": -73.9675217 }, + { "lat": 40.7981389, "lon": -73.9673780 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1173360487, + "bounds": { + "minlat": 40.8723563, + "minlon": -73.9128142, + "maxlat": 40.8727313, + "maxlon": -73.9123588 + }, + "nodes": [ + 10902146187, + 1544809872 + ], + "geometry": [ + { "lat": 40.8727313, "lon": -73.9123588 }, + { "lat": 40.8723563, "lon": -73.9128142 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk": "separate", + "turn:lanes": "left|through|through;right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1173402652, + "bounds": { + "minlat": 40.8202760, + "minlon": -74.0092565, + "maxlat": 40.8203941, + "maxlon": -74.0092424 + }, + "nodes": [ + 10902452091, + 5837332131 + ], + "geometry": [ + { "lat": 40.8203941, "lon": -74.0092565 }, + { "lat": 40.8202760, "lon": -74.0092424 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1173402653, + "bounds": { + "minlat": 40.8203941, + "minlon": -74.0092628, + "maxlat": 40.8204378, + "maxlon": -74.0092565 + }, + "nodes": [ + 10902452092, + 10902452091 + ], + "geometry": [ + { "lat": 40.8204378, "lon": -74.0092628 }, + { "lat": 40.8203941, "lon": -74.0092565 } + ], + "tags": { + "access": "customers", + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1173428372, + "bounds": { + "minlat": 40.8053092, + "minlon": -73.9102195, + "maxlat": 40.8054522, + "maxlon": -73.9098901 + }, + "nodes": [ + 588114535, + 42752947 + ], + "geometry": [ + { "lat": 40.8054522, "lon": -73.9102195 }, + { "lat": 40.8053092, "lon": -73.9098901 } + ], + "tags": { + "highway": "residential", + "name": "East 140th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1173428373, + "bounds": { + "minlat": 40.8071086, + "minlon": -73.9065455, + "maxlat": 40.8095866, + "maxlon": -73.9030371 + }, + "nodes": [ + 588115236, + 10902729981, + 13198296326, + 10902729985, + 588115247, + 588115253 + ], + "geometry": [ + { "lat": 40.8071086, "lon": -73.9065455 }, + { "lat": 40.8078810, "lon": -73.9054398 }, + { "lat": 40.8083588, "lon": -73.9047558 }, + { "lat": 40.8083987, "lon": -73.9046987 }, + { "lat": 40.8085832, "lon": -73.9044346 }, + { "lat": 40.8095866, "lon": -73.9030371 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1173428374, + "bounds": { + "minlat": 40.8059500, + "minlon": -73.9090267, + "maxlat": 40.8060281, + "maxlon": -73.9089576 + }, + "nodes": [ + 588114548, + 42743481 + ], + "geometry": [ + { "lat": 40.8060281, "lon": -73.9090267 }, + { "lat": 40.8059500, "lon": -73.9089576 } + ], + "tags": { + "highway": "residential", + "name": "East 141st Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "141st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454" + } +}, +{ + "type": "way", + "id": 1173428376, + "bounds": { + "minlat": 40.8060281, + "minlon": -73.9091832, + "maxlat": 40.8061627, + "maxlon": -73.9090267 + }, + "nodes": [ + 42743468, + 10687109203, + 588114548 + ], + "geometry": [ + { "lat": 40.8061627, "lon": -73.9091832 }, + { "lat": 40.8060956, "lon": -73.9091051 }, + { "lat": 40.8060281, "lon": -73.9090267 } + ], + "tags": { + "highway": "residential", + "name": "East 141st Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "141st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454" + } +}, +{ + "type": "way", + "id": 1173428377, + "bounds": { + "minlat": 40.8060281, + "minlon": -73.9090267, + "maxlat": 40.8064745, + "maxlon": -73.9079624 + }, + "nodes": [ + 588114548, + 13247555774, + 588114561, + 10700391951 + ], + "geometry": [ + { "lat": 40.8060281, "lon": -73.9090267 }, + { "lat": 40.8060746, "lon": -73.9089072 }, + { "lat": 40.8061291, "lon": -73.9087802 }, + { "lat": 40.8064745, "lon": -73.9079624 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1173428378, + "bounds": { + "minlat": 40.8064745, + "minlon": -73.9079624, + "maxlat": 40.8071086, + "maxlon": -73.9065455 + }, + "nodes": [ + 10700391951, + 10902729992, + 588115229, + 9156979745, + 9156979744, + 588115236 + ], + "geometry": [ + { "lat": 40.8064745, "lon": -73.9079624 }, + { "lat": 40.8065685, "lon": -73.9077398 }, + { "lat": 40.8069596, "lon": -73.9068140 }, + { "lat": 40.8070181, "lon": -73.9066966 }, + { "lat": 40.8070592, "lon": -73.9066222 }, + { "lat": 40.8071086, "lon": -73.9065455 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1173428379, + "bounds": { + "minlat": 40.8059500, + "minlon": -73.9089576, + "maxlat": 40.8068486, + "maxlon": -73.9068819 + }, + "nodes": [ + 42743481, + 9156979737, + 13247555773, + 9156979733, + 9156979738, + 13198296328, + 5944903670, + 10902729979 + ], + "geometry": [ + { "lat": 40.8059500, "lon": -73.9089576 }, + { "lat": 40.8060170, "lon": -73.9088455 }, + { "lat": 40.8060203, "lon": -73.9088379 }, + { "lat": 40.8060820, "lon": -73.9087244 }, + { "lat": 40.8061607, "lon": -73.9085278 }, + { "lat": 40.8064268, "lon": -73.9078855 }, + { "lat": 40.8065065, "lon": -73.9076931 }, + { "lat": 40.8068486, "lon": -73.9068819 } + ], + "tags": { + "fixme": "check lanes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "name_1": "Houghton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "Houghton", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1173428381, + "bounds": { + "minlat": 40.8068486, + "minlon": -73.9068819, + "maxlat": 40.8080960, + "maxlon": -73.9049087 + }, + "nodes": [ + 10902729979, + 5944903671, + 9156979740, + 9156979755, + 9156979741, + 9156979743, + 42752952, + 10902729982 + ], + "geometry": [ + { "lat": 40.8068486, "lon": -73.9068819 }, + { "lat": 40.8068806, "lon": -73.9068060 }, + { "lat": 40.8069812, "lon": -73.9065682 }, + { "lat": 40.8070429, "lon": -73.9064350 }, + { "lat": 40.8071086, "lon": -73.9063097 }, + { "lat": 40.8071845, "lon": -73.9061767 }, + { "lat": 40.8072680, "lon": -73.9060502 }, + { "lat": 40.8080960, "lon": -73.9049087 } + ], + "tags": { + "fixme": "check lanes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "name_1": "Houghton Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "Houghton", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1173920987, + "bounds": { + "minlat": 40.8073404, + "minlon": -73.9916647, + "maxlat": 40.8075895, + "maxlon": -73.9911059 + }, + "nodes": [ + 10907806292, + 10907806294 + ], + "geometry": [ + { "lat": 40.8075895, "lon": -73.9916647 }, + { "lat": 40.8073404, "lon": -73.9911059 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1173920988, + "bounds": { + "minlat": 40.8072958, + "minlon": -73.9910636, + "maxlat": 40.8073215, + "maxlon": -73.9910047 + }, + "nodes": [ + 10907806293, + 6888063813 + ], + "geometry": [ + { "lat": 40.8072958, "lon": -73.9910047 }, + { "lat": 40.8073215, "lon": -73.9910636 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1173920989, + "bounds": { + "minlat": 40.8075895, + "minlon": -73.9917237, + "maxlat": 40.8076185, + "maxlon": -73.9916647 + }, + "nodes": [ + 5482328597, + 10907806292 + ], + "geometry": [ + { "lat": 40.8076185, "lon": -73.9917237 }, + { "lat": 40.8075895, "lon": -73.9916647 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1173920990, + "bounds": { + "minlat": 40.8073215, + "minlon": -73.9911059, + "maxlat": 40.8073404, + "maxlon": -73.9910636 + }, + "nodes": [ + 10907806294, + 6888063813 + ], + "geometry": [ + { "lat": 40.8073404, "lon": -73.9911059 }, + { "lat": 40.8073215, "lon": -73.9910636 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1174567001, + "bounds": { + "minlat": 40.7372951, + "minlon": -73.9931409, + "maxlat": 40.7374332, + "maxlon": -73.9928938 + }, + "nodes": [ + 2702958529, + 10914247282, + 10914247281, + 2702958547, + 2702958529 + ], + "geometry": [ + { "lat": 40.7372951, "lon": -73.9929294 }, + { "lat": 40.7373438, "lon": -73.9928938 }, + { "lat": 40.7374332, "lon": -73.9931051 }, + { "lat": 40.7373834, "lon": -73.9931409 }, + { "lat": 40.7372951, "lon": -73.9929294 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "landuse": "recreation_ground", + "leisure": "outdoor_seating" + } +}, +{ + "type": "way", + "id": 1174924117, + "bounds": { + "minlat": 40.8005810, + "minlon": -73.9589620, + "maxlat": 40.8008002, + "maxlon": -73.9584942 + }, + "nodes": [ + 10917414771, + 12818423531, + 12534148901, + 9150529695, + 12818423529, + 12818423530, + 42452290 + ], + "geometry": [ + { "lat": 40.8008002, "lon": -73.9589620 }, + { "lat": 40.8007052, "lon": -73.9587238 }, + { "lat": 40.8006876, "lon": -73.9586796 }, + { "lat": 40.8006683, "lon": -73.9586367 }, + { "lat": 40.8006421, "lon": -73.9585775 }, + { "lat": 40.8006118, "lon": -73.9585299 }, + { "lat": 40.8005810, "lon": -73.9584942 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1174928402, + "bounds": { + "minlat": 40.7649193, + "minlon": -73.9725564, + "maxlat": 40.7655257, + "maxlon": -73.9721171 + }, + "nodes": [ + 42436510, + 7797650089, + 4347535692, + 4347534783 + ], + "geometry": [ + { "lat": 40.7655257, "lon": -73.9721171 }, + { "lat": 40.7654712, "lon": -73.9721568 }, + { "lat": 40.7649989, "lon": -73.9724990 }, + { "lat": 40.7649193, "lon": -73.9725564 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1174953976, + "bounds": { + "minlat": 40.7687801, + "minlon": -73.9065510, + "maxlat": 40.7690404, + "maxlon": -73.9061696 + }, + "nodes": [ + 10917729766, + 10917729767, + 10917729779, + 10917729768, + 10917729782, + 10917729780, + 10917729769, + 10917729775, + 10917729778, + 10917729770, + 10917729771 + ], + "geometry": [ + { "lat": 40.7687801, "lon": -73.9062277 }, + { "lat": 40.7688706, "lon": -73.9062025 }, + { "lat": 40.7688806, "lon": -73.9061999 }, + { "lat": 40.7689951, "lon": -73.9061696 }, + { "lat": 40.7690128, "lon": -73.9062969 }, + { "lat": 40.7690258, "lon": -73.9063902 }, + { "lat": 40.7690404, "lon": -73.9064945 }, + { "lat": 40.7689597, "lon": -73.9065157 }, + { "lat": 40.7689304, "lon": -73.9065234 }, + { "lat": 40.7689223, "lon": -73.9065255 }, + { "lat": 40.7688294, "lon": -73.9065510 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1174953978, + "bounds": { + "minlat": 40.7689597, + "minlon": -73.9066745, + "maxlat": 40.7690688, + "maxlon": -73.9065157 + }, + "nodes": [ + 10917729775, + 10917729776, + 10917729777 + ], + "geometry": [ + { "lat": 40.7689597, "lon": -73.9065157 }, + { "lat": 40.7690247, "lon": -73.9066089 }, + { "lat": 40.7690688, "lon": -73.9066745 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1174953979, + "bounds": { + "minlat": 40.7688806, + "minlon": -73.9065234, + "maxlat": 40.7689304, + "maxlon": -73.9061999 + }, + "nodes": [ + 10917729778, + 10917729781, + 10917729783, + 10917729779 + ], + "geometry": [ + { "lat": 40.7689304, "lon": -73.9065234 }, + { "lat": 40.7689143, "lon": -73.9064190 }, + { "lat": 40.7689002, "lon": -73.9063273 }, + { "lat": 40.7688806, "lon": -73.9061999 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1175113967, + "bounds": { + "minlat": 40.7325989, + "minlon": -74.0091396, + "maxlat": 40.7329133, + "maxlon": -74.0090580 + }, + "nodes": [ + 10919435177, + 10919435179, + 10919435178 + ], + "geometry": [ + { "lat": 40.7325989, "lon": -74.0090580 }, + { "lat": 40.7326888, "lon": -74.0090814 }, + { "lat": 40.7329133, "lon": -74.0091396 } + ], + "tags": { + "access": "private", + "highway": "service", + "incline": "down", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1175113970, + "bounds": { + "minlat": 40.7301718, + "minlon": -74.0095750, + "maxlat": 40.7304869, + "maxlon": -74.0095335 + }, + "nodes": [ + 10919435182, + 10919435186, + 10919435185, + 10919435187, + 10919435183 + ], + "geometry": [ + { "lat": 40.7301718, "lon": -74.0095610 }, + { "lat": 40.7303660, "lon": -74.0095335 }, + { "lat": 40.7303884, "lon": -74.0095750 }, + { "lat": 40.7304122, "lon": -74.0095722 }, + { "lat": 40.7304869, "lon": -74.0095634 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1175243752, + "bounds": { + "minlat": 40.8319713, + "minlon": -73.9095475, + "maxlat": 40.8321535, + "maxlon": -73.9092156 + }, + "nodes": [ + 10921009052, + 12038056033, + 10921009053, + 10921009054, + 10921009055, + 10921009056, + 10921009057 + ], + "geometry": [ + { "lat": 40.8321535, "lon": -73.9092156 }, + { "lat": 40.8320796, "lon": -73.9092544 }, + { "lat": 40.8320464, "lon": -73.9092718 }, + { "lat": 40.8320001, "lon": -73.9092969 }, + { "lat": 40.8319713, "lon": -73.9093109 }, + { "lat": 40.8319811, "lon": -73.9093510 }, + { "lat": 40.8320433, "lon": -73.9095475 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1175243753, + "bounds": { + "minlat": 40.8319318, + "minlon": -73.9093109, + "maxlat": 40.8319713, + "maxlon": -73.9091756 + }, + "nodes": [ + 10921009055, + 10921009058, + 10921009059 + ], + "geometry": [ + { "lat": 40.8319713, "lon": -73.9093109 }, + { "lat": 40.8319561, "lon": -73.9092628 }, + { "lat": 40.8319318, "lon": -73.9091756 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1175397844, + "bounds": { + "minlat": 40.6990370, + "minlon": -73.9411490, + "maxlat": 40.7002810, + "maxlon": -73.9389020 + }, + "nodes": [ + 42505468, + 9730373404, + 11115023655, + 42505465, + 42505462, + 9752127032, + 42499079 + ], + "geometry": [ + { "lat": 40.6990370, "lon": -73.9389020 }, + { "lat": 40.6990845, "lon": -73.9389939 }, + { "lat": 40.6992089, "lon": -73.9392141 }, + { "lat": 40.6994688, "lon": -73.9396744 }, + { "lat": 40.6998740, "lon": -73.9404200 }, + { "lat": 40.7002457, "lon": -73.9410829 }, + { "lat": 40.7002810, "lon": -73.9411490 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_right": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 1175503130, + "bounds": { + "minlat": 40.7036661, + "minlon": -73.9175959, + "maxlat": 40.7037190, + "maxlon": -73.9175114 + }, + "nodes": [ + 10923276555, + 10923276556, + 10923276557 + ], + "geometry": [ + { "lat": 40.7037190, "lon": -73.9175959 }, + { "lat": 40.7037102, "lon": -73.9175828 }, + { "lat": 40.7036661, "lon": -73.9175114 } + ], + "tags": { + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 1175621002, + "bounds": { + "minlat": 40.7080169, + "minlon": -73.9567281, + "maxlat": 40.7080869, + "maxlon": -73.9566830 + }, + "nodes": [ + 42505402, + 9768167577 + ], + "geometry": [ + { "lat": 40.7080169, "lon": -73.9567281 }, + { "lat": 40.7080869, "lon": -73.9566830 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1175792645, + "bounds": { + "minlat": 40.7494568, + "minlon": -73.9147669, + "maxlat": 40.7498017, + "maxlon": -73.9143835 + }, + "nodes": [ + 10925436206, + 10925436234, + 10925436207, + 10925436236, + 10925436208, + 10925436233, + 10925436209, + 10925436206 + ], + "geometry": [ + { "lat": 40.7498017, "lon": -73.9147048 }, + { "lat": 40.7497851, "lon": -73.9145488 }, + { "lat": 40.7497676, "lon": -73.9143835 }, + { "lat": 40.7496074, "lon": -73.9144165 }, + { "lat": 40.7494568, "lon": -73.9144468 }, + { "lat": 40.7494744, "lon": -73.9146029 }, + { "lat": 40.7494928, "lon": -73.9147669 }, + { "lat": 40.7498017, "lon": -73.9147048 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1175792651, + "bounds": { + "minlat": 40.7495160, + "minlon": -73.9144165, + "maxlat": 40.7496074, + "maxlon": -73.9136233 + }, + "nodes": [ + 10925436235, + 10925436237, + 10925436236 + ], + "geometry": [ + { "lat": 40.7495160, "lon": -73.9136233 }, + { "lat": 40.7495274, "lon": -73.9137203 }, + { "lat": 40.7496074, "lon": -73.9144165 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "private", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1175864206, + "bounds": { + "minlat": 40.7942456, + "minlon": -73.9955660, + "maxlat": 40.7945372, + "maxlon": -73.9954875 + }, + "nodes": [ + 5482013320, + 5482013534 + ], + "geometry": [ + { "lat": 40.7945372, "lon": -73.9954875 }, + { "lat": 40.7942456, "lon": -73.9955660 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "private", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1175976724, + "bounds": { + "minlat": 40.8130332, + "minlon": -73.9907273, + "maxlat": 40.8134254, + "maxlon": -73.9905282 + }, + "nodes": [ + 11789651970, + 10926790017, + 10926790018 + ], + "geometry": [ + { "lat": 40.8130332, "lon": -73.9907273 }, + { "lat": 40.8130443, "lon": -73.9907233 }, + { "lat": 40.8134254, "lon": -73.9905282 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1175976725, + "bounds": { + "minlat": 40.8129062, + "minlon": -73.9910313, + "maxlat": 40.8131553, + "maxlon": -73.9907843 + }, + "nodes": [ + 10926790016, + 10926790020, + 10926790021, + 10926790022, + 10926790023, + 10926790024, + 10926790025 + ], + "geometry": [ + { "lat": 40.8129062, "lon": -73.9907843 }, + { "lat": 40.8129131, "lon": -73.9908232 }, + { "lat": 40.8129586, "lon": -73.9909943 }, + { "lat": 40.8129747, "lon": -73.9910026 }, + { "lat": 40.8130051, "lon": -73.9910061 }, + { "lat": 40.8131257, "lon": -73.9909679 }, + { "lat": 40.8131553, "lon": -73.9910313 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1177179196, + "bounds": { + "minlat": 40.8458343, + "minlon": -74.0137209, + "maxlat": 40.8474448, + "maxlon": -74.0120636 + }, + "nodes": [ + 5769929122, + 10936336942, + 5769929123, + 5769929124, + 5769929125, + 5769929126, + 5769929127, + 5769929128, + 5769929129, + 5769929130, + 5769929131, + 5769929132, + 5769929133, + 5769929134, + 5769929135, + 10936336925 + ], + "geometry": [ + { "lat": 40.8473235, "lon": -74.0137209 }, + { "lat": 40.8463196, "lon": -74.0132684 }, + { "lat": 40.8462194, "lon": -74.0132129 }, + { "lat": 40.8461297, "lon": -74.0131183 }, + { "lat": 40.8460740, "lon": -74.0130207 }, + { "lat": 40.8460218, "lon": -74.0128841 }, + { "lat": 40.8459912, "lon": -74.0127310 }, + { "lat": 40.8459421, "lon": -74.0124599 }, + { "lat": 40.8458990, "lon": -74.0122708 }, + { "lat": 40.8458343, "lon": -74.0121222 }, + { "lat": 40.8458467, "lon": -74.0120816 }, + { "lat": 40.8458865, "lon": -74.0120636 }, + { "lat": 40.8468482, "lon": -74.0120816 }, + { "lat": 40.8472809, "lon": -74.0122933 }, + { "lat": 40.8473345, "lon": -74.0123901 }, + { "lat": 40.8474448, "lon": -74.0130853 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1177184528, + "bounds": { + "minlat": 40.8527136, + "minlon": -74.0132702, + "maxlat": 40.8533557, + "maxlon": -74.0129613 + }, + "nodes": [ + 10936392338, + 10936392317 + ], + "geometry": [ + { "lat": 40.8527136, "lon": -74.0132702 }, + { "lat": 40.8533557, "lon": -74.0129613 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1177187917, + "bounds": { + "minlat": 40.8499107, + "minlon": -74.0136153, + "maxlat": 40.8499142, + "maxlon": -74.0133844 + }, + "nodes": [ + 10936388928, + 6902221528 + ], + "geometry": [ + { "lat": 40.8499142, "lon": -74.0136153 }, + { "lat": 40.8499107, "lon": -74.0133844 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1177232314, + "bounds": { + "minlat": 40.8443575, + "minlon": -74.0169992, + "maxlat": 40.8444096, + "maxlon": -74.0167314 + }, + "nodes": [ + 10936796211, + 11445102197 + ], + "geometry": [ + { "lat": 40.8443575, "lon": -74.0167314 }, + { "lat": 40.8444096, "lon": -74.0169992 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1177362602, + "bounds": { + "minlat": 40.8400589, + "minlon": -74.0173555, + "maxlat": 40.8403039, + "maxlon": -74.0172559 + }, + "nodes": [ + 7933051908, + 7933051909 + ], + "geometry": [ + { "lat": 40.8400589, "lon": -74.0173555 }, + { "lat": 40.8403039, "lon": -74.0172559 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1177476277, + "bounds": { + "minlat": 40.7413978, + "minlon": -73.9069648, + "maxlat": 40.7414497, + "maxlon": -73.9065293 + }, + "nodes": [ + 5481949666, + 10203222038 + ], + "geometry": [ + { "lat": 40.7414497, "lon": -73.9069648 }, + { "lat": 40.7413978, "lon": -73.9065293 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1177696234, + "bounds": { + "minlat": 40.7233880, + "minlon": -73.9393242, + "maxlat": 40.7236021, + "maxlon": -73.9389330 + }, + "nodes": [ + 42476673, + 9765039217, + 42476669 + ], + "geometry": [ + { "lat": 40.7236021, "lon": -73.9389330 }, + { "lat": 40.7234562, "lon": -73.9392125 }, + { "lat": 40.7233880, "lon": -73.9393242 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1177806573, + "bounds": { + "minlat": 40.8095058, + "minlon": -73.9308505, + "maxlat": 40.8099297, + "maxlon": -73.9303055 + }, + "nodes": [ + 10941548371, + 11882279797, + 10941548373, + 10941548372 + ], + "geometry": [ + { "lat": 40.8099297, "lon": -73.9303055 }, + { "lat": 40.8098971, "lon": -73.9303461 }, + { "lat": 40.8098486, "lon": -73.9304067 }, + { "lat": 40.8095058, "lon": -73.9308505 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1177806574, + "bounds": { + "minlat": 40.8098486, + "minlon": -73.9307348, + "maxlat": 40.8101916, + "maxlon": -73.9304067 + }, + "nodes": [ + 10941548373, + 10941548374, + 10941548381, + 10941548375, + 10941548376, + 10941548377, + 10941548378, + 13017048842, + 10941548379, + 10941548380 + ], + "geometry": [ + { "lat": 40.8098486, "lon": -73.9304067 }, + { "lat": 40.8099539, "lon": -73.9305616 }, + { "lat": 40.8100461, "lon": -73.9307187 }, + { "lat": 40.8100610, "lon": -73.9307313 }, + { "lat": 40.8100757, "lon": -73.9307348 }, + { "lat": 40.8100979, "lon": -73.9307255 }, + { "lat": 40.8101117, "lon": -73.9307189 }, + { "lat": 40.8101539, "lon": -73.9306859 }, + { "lat": 40.8101689, "lon": -73.9306742 }, + { "lat": 40.8101916, "lon": -73.9306396 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1177932231, + "bounds": { + "minlat": 40.7077643, + "minlon": -74.0016856, + "maxlat": 40.7078710, + "maxlon": -74.0014617 + }, + "nodes": [ + 42433237, + 10942512953, + 10942512955, + 10942512954, + 42433212 + ], + "geometry": [ + { "lat": 40.7078710, "lon": -74.0014617 }, + { "lat": 40.7078497, "lon": -74.0015068 }, + { "lat": 40.7078022, "lon": -74.0016074 }, + { "lat": 40.7077850, "lon": -74.0016437 }, + { "lat": 40.7077643, "lon": -74.0016856 } + ], + "tags": { + "highway": "pedestrian", + "name": "Front Street", + "name:ko": "프론트 스트리트", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1177967222, + "bounds": { + "minlat": 40.8761740, + "minlon": -73.9775451, + "maxlat": 40.8772963, + "maxlon": -73.9767314 + }, + "nodes": [ + 103224136, + 10942869215, + 10942869225, + 10942869212, + 10942869216, + 10942869213, + 10942869221, + 10942869214, + 103174060 + ], + "geometry": [ + { "lat": 40.8772963, "lon": -73.9767314 }, + { "lat": 40.8772700, "lon": -73.9767808 }, + { "lat": 40.8772435, "lon": -73.9768200 }, + { "lat": 40.8772156, "lon": -73.9768518 }, + { "lat": 40.8769843, "lon": -73.9770249 }, + { "lat": 40.8766267, "lon": -73.9772830 }, + { "lat": 40.8762630, "lon": -73.9775382 }, + { "lat": 40.8762297, "lon": -73.9775451 }, + { "lat": 40.8761740, "lon": -73.9775385 } + ], + "tags": { + "highway": "tertiary", + "maxheight:signed": "no", + "name": "Broad Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1177967223, + "bounds": { + "minlat": 40.8772963, + "minlon": -73.9767314, + "maxlat": 40.8776157, + "maxlon": -73.9764952 + }, + "nodes": [ + 103224136, + 13233957983 + ], + "geometry": [ + { "lat": 40.8772963, "lon": -73.9767314 }, + { "lat": 40.8776157, "lon": -73.9764952 } + ], + "tags": { + "highway": "tertiary", + "maxheight:signed": "no", + "maxspeed": "25 mph", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1177967224, + "bounds": { + "minlat": 40.8761740, + "minlon": -73.9775385, + "maxlat": 40.8772963, + "maxlon": -73.9767314 + }, + "nodes": [ + 103174060, + 10942869217, + 10942869226, + 10942869220, + 10942869223, + 10942869211, + 10942869219, + 10942869224, + 103224136 + ], + "geometry": [ + { "lat": 40.8761740, "lon": -73.9775385 }, + { "lat": 40.8761968, "lon": -73.9774844 }, + { "lat": 40.8762226, "lon": -73.9774418 }, + { "lat": 40.8765764, "lon": -73.9771830 }, + { "lat": 40.8769426, "lon": -73.9769212 }, + { "lat": 40.8771801, "lon": -73.9767586 }, + { "lat": 40.8772179, "lon": -73.9767409 }, + { "lat": 40.8772564, "lon": -73.9767338 }, + { "lat": 40.8772963, "lon": -73.9767314 } + ], + "tags": { + "highway": "tertiary", + "maxheight:signed": "no", + "name": "Broad Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1177979594, + "bounds": { + "minlat": 40.7434569, + "minlon": -73.9886206, + "maxlat": 40.7436380, + "maxlon": -73.9881911 + }, + "nodes": [ + 10943102727, + 3009534477, + 42429874 + ], + "geometry": [ + { "lat": 40.7436380, "lon": -73.9886206 }, + { "lat": 40.7435105, "lon": -73.9883183 }, + { "lat": 40.7434569, "lon": -73.9881911 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1178017518, + "bounds": { + "minlat": 40.8133108, + "minlon": -73.9840500, + "maxlat": 40.8134086, + "maxlon": -73.9838021 + }, + "nodes": [ + 1751404989, + 7672312032, + 5929253677, + 1751404985 + ], + "geometry": [ + { "lat": 40.8134086, "lon": -73.9838021 }, + { "lat": 40.8133615, "lon": -73.9839184 }, + { "lat": 40.8133562, "lon": -73.9839322 }, + { "lat": 40.8133108, "lon": -73.9840500 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1178560913, + "bounds": { + "minlat": 40.7142257, + "minlon": -73.9564835, + "maxlat": 40.7143651, + "maxlon": -73.9562494 + }, + "nodes": [ + 10948775963, + 10948775962, + 9785615260, + 10948775961, + 10948775960, + 9785615262, + 10948775963 + ], + "geometry": [ + { "lat": 40.7143651, "lon": -73.9564552 }, + { "lat": 40.7143068, "lon": -73.9564835 }, + { "lat": 40.7142842, "lon": -73.9564788 }, + { "lat": 40.7142730, "lon": -73.9564674 }, + { "lat": 40.7142257, "lon": -73.9562823 }, + { "lat": 40.7142399, "lon": -73.9562494 }, + { "lat": 40.7143651, "lon": -73.9564552 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1179577277, + "bounds": { + "minlat": 40.7913330, + "minlon": -73.9716531, + "maxlat": 40.7915800, + "maxlon": -73.9714796 + }, + "nodes": [ + 10955366670, + 10955366672, + 10955366671 + ], + "geometry": [ + { "lat": 40.7913330, "lon": -73.9716531 }, + { "lat": 40.7913889, "lon": -73.9716132 }, + { "lat": 40.7915800, "lon": -73.9714796 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1179617811, + "bounds": { + "minlat": 40.7451627, + "minlon": -73.9138131, + "maxlat": 40.7451875, + "maxlon": -73.9135537 + }, + "nodes": [ + 10956028583, + 10956043606, + 10956028587 + ], + "geometry": [ + { "lat": 40.7451627, "lon": -73.9135537 }, + { "lat": 40.7451733, "lon": -73.9136231 }, + { "lat": 40.7451875, "lon": -73.9138131 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1179704376, + "bounds": { + "minlat": 40.7544780, + "minlon": -73.9636705, + "maxlat": 40.7549946, + "maxlon": -73.9633013 + }, + "nodes": [ + 10957063846, + 10994925941, + 10957063849, + 10957063847, + 10957063848 + ], + "geometry": [ + { "lat": 40.7544780, "lon": -73.9636705 }, + { "lat": 40.7545281, "lon": -73.9636288 }, + { "lat": 40.7545703, "lon": -73.9635937 }, + { "lat": 40.7547815, "lon": -73.9634179 }, + { "lat": 40.7549946, "lon": -73.9633013 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1179751886, + "bounds": { + "minlat": 40.7275379, + "minlon": -73.9609817, + "maxlat": 40.7280842, + "maxlon": -73.9603395 + }, + "nodes": [ + 10957424632, + 10957424636, + 10957424633, + 10957424646, + 10957424637, + 10957424634, + 10957424635, + 10957424638, + 10957424636 + ], + "geometry": [ + { "lat": 40.7275379, "lon": -73.9603395 }, + { "lat": 40.7276584, "lon": -73.9603611 }, + { "lat": 40.7280842, "lon": -73.9604308 }, + { "lat": 40.7280745, "lon": -73.9605502 }, + { "lat": 40.7280727, "lon": -73.9605728 }, + { "lat": 40.7280345, "lon": -73.9609817 }, + { "lat": 40.7276030, "lon": -73.9609214 }, + { "lat": 40.7276443, "lon": -73.9605031 }, + { "lat": 40.7276584, "lon": -73.9603611 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1179751887, + "bounds": { + "minlat": 40.7275717, + "minlon": -73.9600640, + "maxlat": 40.7281595, + "maxlon": -73.9596052 + }, + "nodes": [ + 11924946002, + 10957424640, + 10957424644, + 10957424641, + 10957424642, + 10957424643, + 10957424644 + ], + "geometry": [ + { "lat": 40.7275717, "lon": -73.9596052 }, + { "lat": 40.7281595, "lon": -73.9596775 }, + { "lat": 40.7281454, "lon": -73.9598837 }, + { "lat": 40.7281292, "lon": -73.9600640 }, + { "lat": 40.7275972, "lon": -73.9599796 }, + { "lat": 40.7276090, "lon": -73.9597969 }, + { "lat": 40.7281454, "lon": -73.9598837 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1179751888, + "bounds": { + "minlat": 40.7280345, + "minlon": -73.9609978, + "maxlat": 40.7281229, + "maxlon": -73.9609817 + }, + "nodes": [ + 10957424634, + 42498312 + ], + "geometry": [ + { "lat": 40.7280345, "lon": -73.9609817 }, + { "lat": 40.7281229, "lon": -73.9609978 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1179751889, + "bounds": { + "minlat": 40.7280745, + "minlon": -73.9605642, + "maxlat": 40.7281631, + "maxlon": -73.9605502 + }, + "nodes": [ + 10957424646, + 10957424647 + ], + "geometry": [ + { "lat": 40.7280745, "lon": -73.9605502 }, + { "lat": 40.7281631, "lon": -73.9605642 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1179751890, + "bounds": { + "minlat": 40.7281595, + "minlon": -73.9596928, + "maxlat": 40.7282483, + "maxlon": -73.9596775 + }, + "nodes": [ + 10957424648, + 10957424640 + ], + "geometry": [ + { "lat": 40.7282483, "lon": -73.9596928 }, + { "lat": 40.7281595, "lon": -73.9596775 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1180124229, + "bounds": { + "minlat": 40.7451858, + "minlon": -73.9206364, + "maxlat": 40.7457484, + "maxlon": -73.9205206 + }, + "nodes": [ + 10960704695, + 11694597512, + 10960704697, + 10960704696 + ], + "geometry": [ + { "lat": 40.7451858, "lon": -73.9206364 }, + { "lat": 40.7452572, "lon": -73.9206217 }, + { "lat": 40.7452803, "lon": -73.9206170 }, + { "lat": 40.7457484, "lon": -73.9205206 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1180373613, + "bounds": { + "minlat": 40.7259924, + "minlon": -73.9576339, + "maxlat": 40.7261764, + "maxlon": -73.9574110 + }, + "nodes": [ + 10962940424, + 10962940428, + 10962940427, + 10962940425, + 10962940426 + ], + "geometry": [ + { "lat": 40.7259924, "lon": -73.9574110 }, + { "lat": 40.7260006, "lon": -73.9575160 }, + { "lat": 40.7260026, "lon": -73.9575416 }, + { "lat": 40.7260098, "lon": -73.9576339 }, + { "lat": 40.7261764, "lon": -73.9576194 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1180497241, + "bounds": { + "minlat": 40.7602628, + "minlon": -73.9751620, + "maxlat": 40.7604586, + "maxlon": -73.9749520 + }, + "nodes": [ + 10963937784, + 10963937785, + 10963937786, + 10963966105, + 10963937804, + 10963966117, + 10963966111, + 10963966110, + 10963937787, + 10963937784 + ], + "geometry": [ + { "lat": 40.7604586, "lon": -73.9750673 }, + { "lat": 40.7604115, "lon": -73.9749520 }, + { "lat": 40.7602792, "lon": -73.9750463 }, + { "lat": 40.7602924, "lon": -73.9750786 }, + { "lat": 40.7602628, "lon": -73.9750997 }, + { "lat": 40.7602732, "lon": -73.9751254 }, + { "lat": 40.7602831, "lon": -73.9751495 }, + { "lat": 40.7603122, "lon": -73.9751289 }, + { "lat": 40.7603257, "lon": -73.9751620 }, + { "lat": 40.7604586, "lon": -73.9750673 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1180497244, + "bounds": { + "minlat": 40.7601864, + "minlon": -73.9752306, + "maxlat": 40.7602869, + "maxlon": -73.9750761 + }, + "nodes": [ + 10963966112, + 10963966116, + 10963966113, + 10963966114, + 10963966115, + 10963966112 + ], + "geometry": [ + { "lat": 40.7602869, "lon": -73.9751929 }, + { "lat": 40.7602624, "lon": -73.9751330 }, + { "lat": 40.7602391, "lon": -73.9750761 }, + { "lat": 40.7601864, "lon": -73.9751138 }, + { "lat": 40.7602342, "lon": -73.9752306 }, + { "lat": 40.7602869, "lon": -73.9751929 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1180567731, + "bounds": { + "minlat": 40.8619107, + "minlon": -73.9239021, + "maxlat": 40.8624268, + "maxlon": -73.9225094 + }, + "nodes": [ + 1764400304, + 7120723135, + 13720151071, + 9561420846, + 42445634 + ], + "geometry": [ + { "lat": 40.8619107, "lon": -73.9239021 }, + { "lat": 40.8619896, "lon": -73.9236890 }, + { "lat": 40.8622353, "lon": -73.9230261 }, + { "lat": 40.8623941, "lon": -73.9225977 }, + { "lat": 40.8624268, "lon": -73.9225094 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxheight": "11'8\"", + "name": "Nagle Avenue", + "parking:lane:left": "parallel", + "parking:lane:right": "perpendicular", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Nagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:forward": "left;through|right" + } +}, +{ + "type": "way", + "id": 1180777611, + "bounds": { + "minlat": 40.7258508, + "minlon": -73.9508556, + "maxlat": 40.7259693, + "maxlon": -73.9506496 + }, + "nodes": [ + 10966407967, + 10966407965, + 10966407968, + 10966407969, + 10966407970, + 10966407971, + 10966407972, + 10966407973, + 10966407974, + 10966407975, + 10966407976, + 10966407964, + 10966407963, + 10966407962, + 10966407977, + 10966407967 + ], + "geometry": [ + { "lat": 40.7259418, "lon": -73.9506496 }, + { "lat": 40.7259410, "lon": -73.9506632 }, + { "lat": 40.7258787, "lon": -73.9507476 }, + { "lat": 40.7258700, "lon": -73.9507739 }, + { "lat": 40.7258744, "lon": -73.9507776 }, + { "lat": 40.7258767, "lon": -73.9508060 }, + { "lat": 40.7258707, "lon": -73.9508154 }, + { "lat": 40.7258664, "lon": -73.9508127 }, + { "lat": 40.7258622, "lon": -73.9507960 }, + { "lat": 40.7258508, "lon": -73.9508302 }, + { "lat": 40.7258927, "lon": -73.9508556 }, + { "lat": 40.7259103, "lon": -73.9507964 }, + { "lat": 40.7259279, "lon": -73.9507369 }, + { "lat": 40.7259549, "lon": -73.9507120 }, + { "lat": 40.7259693, "lon": -73.9506759 }, + { "lat": 40.7259418, "lon": -73.9506496 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1181320332, + "bounds": { + "minlat": 40.8067166, + "minlon": -74.0167301, + "maxlat": 40.8069653, + "maxlon": -74.0165120 + }, + "nodes": [ + 103867739, + 4205657196 + ], + "geometry": [ + { "lat": 40.8067166, "lon": -74.0167301 }, + { "lat": 40.8069653, "lon": -74.0165120 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "name": "Tonnelle Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1181320333, + "bounds": { + "minlat": 40.8067166, + "minlon": -74.0168879, + "maxlat": 40.8068262, + "maxlon": -74.0167301 + }, + "nodes": [ + 5680919475, + 6711084336, + 103867739 + ], + "geometry": [ + { "lat": 40.8068262, "lon": -74.0168879 }, + { "lat": 40.8067832, "lon": -74.0168421 }, + { "lat": 40.8067166, "lon": -74.0167301 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1181721859, + "bounds": { + "minlat": 40.8450775, + "minlon": -74.0071489, + "maxlat": 40.8455900, + "maxlon": -74.0069030 + }, + "nodes": [ + 10973420250, + 10973420251, + 10973420252, + 10973420253, + 10973420254 + ], + "geometry": [ + { "lat": 40.8455900, "lon": -74.0071489 }, + { "lat": 40.8455458, "lon": -74.0070058 }, + { "lat": 40.8454903, "lon": -74.0069218 }, + { "lat": 40.8454338, "lon": -74.0069030 }, + { "lat": 40.8450775, "lon": -74.0070716 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1182118614, + "bounds": { + "minlat": 40.7052023, + "minlon": -73.9350787, + "maxlat": 40.7053459, + "maxlon": -73.9343408 + }, + "nodes": [ + 10977791967, + 10977791976, + 10977791969, + 10977791968 + ], + "geometry": [ + { "lat": 40.7052023, "lon": -73.9350787 }, + { "lat": 40.7053063, "lon": -73.9345440 }, + { "lat": 40.7053137, "lon": -73.9345065 }, + { "lat": 40.7053459, "lon": -73.9343408 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1182118615, + "bounds": { + "minlat": 40.7050635, + "minlon": -73.9350380, + "maxlat": 40.7053137, + "maxlon": -73.9344598 + }, + "nodes": [ + 10977791969, + 10977791970, + 10977791975, + 10977791972, + 10977791971 + ], + "geometry": [ + { "lat": 40.7053137, "lon": -73.9345065 }, + { "lat": 40.7051763, "lon": -73.9344598 }, + { "lat": 40.7050984, "lon": -73.9348593 }, + { "lat": 40.7050763, "lon": -73.9349723 }, + { "lat": 40.7050635, "lon": -73.9350380 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1182118616, + "bounds": { + "minlat": 40.7048178, + "minlon": -73.9349723, + "maxlat": 40.7050984, + "maxlon": -73.9347729 + }, + "nodes": [ + 10977791972, + 10977791973, + 10977791974, + 10977791975 + ], + "geometry": [ + { "lat": 40.7050763, "lon": -73.9349723 }, + { "lat": 40.7048178, "lon": -73.9348860 }, + { "lat": 40.7048395, "lon": -73.9347729 }, + { "lat": 40.7050984, "lon": -73.9348593 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1182118617, + "bounds": { + "minlat": 40.7053063, + "minlon": -73.9345945, + "maxlat": 40.7054430, + "maxlon": -73.9345440 + }, + "nodes": [ + 10977791976, + 10977791978, + 10977791977 + ], + "geometry": [ + { "lat": 40.7053063, "lon": -73.9345440 }, + { "lat": 40.7053930, "lon": -73.9345760 }, + { "lat": 40.7054430, "lon": -73.9345945 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1182118618, + "bounds": { + "minlat": 40.7047327, + "minlon": -73.9345620, + "maxlat": 40.7050709, + "maxlon": -73.9344498 + }, + "nodes": [ + 10977791979, + 10977791982, + 10977791981, + 10977791980 + ], + "geometry": [ + { "lat": 40.7050709, "lon": -73.9345620 }, + { "lat": 40.7048901, "lon": -73.9345020 }, + { "lat": 40.7047979, "lon": -73.9344714 }, + { "lat": 40.7047327, "lon": -73.9344498 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1182118619, + "bounds": { + "minlat": 40.7048901, + "minlon": -73.9345020, + "maxlat": 40.7051125, + "maxlon": -73.9342780 + }, + "nodes": [ + 10977791982, + 10977791983, + 10977791984 + ], + "geometry": [ + { "lat": 40.7048901, "lon": -73.9345020 }, + { "lat": 40.7049347, "lon": -73.9342780 }, + { "lat": 40.7051125, "lon": -73.9343390 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1182118620, + "bounds": { + "minlat": 40.7053070, + "minlon": -73.9370226, + "maxlat": 40.7053802, + "maxlon": -73.9366723 + }, + "nodes": [ + 7712601179, + 10977791985 + ], + "geometry": [ + { "lat": 40.7053802, "lon": -73.9366723 }, + { "lat": 40.7053070, "lon": -73.9370226 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1182118621, + "bounds": { + "minlat": 40.7007148, + "minlon": -73.9231208, + "maxlat": 40.7009124, + "maxlon": -73.9227645 + }, + "nodes": [ + 10977791987, + 10977791989, + 10977791988 + ], + "geometry": [ + { "lat": 40.7009124, "lon": -73.9231208 }, + { "lat": 40.7007582, "lon": -73.9228427 }, + { "lat": 40.7007148, "lon": -73.9227645 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1182462590, + "bounds": { + "minlat": 40.8208655, + "minlon": -74.0162115, + "maxlat": 40.8217887, + "maxlon": -74.0149959 + }, + "nodes": [ + 7127355662, + 10980602991, + 10980602993, + 10980602992, + 7127355659 + ], + "geometry": [ + { "lat": 40.8215222, "lon": -74.0149959 }, + { "lat": 40.8217887, "lon": -74.0154063 }, + { "lat": 40.8213196, "lon": -74.0160084 }, + { "lat": 40.8211613, "lon": -74.0162115 }, + { "lat": 40.8208655, "lon": -74.0158181 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1182462591, + "bounds": { + "minlat": 40.8213196, + "minlon": -74.0172792, + "maxlat": 40.8228671, + "maxlon": -74.0160084 + }, + "nodes": [ + 10980602993, + 10980602994, + 10980602995, + 10980602996, + 10980602997, + 10980602998, + 10980602999 + ], + "geometry": [ + { "lat": 40.8213196, "lon": -74.0160084 }, + { "lat": 40.8216784, "lon": -74.0160199 }, + { "lat": 40.8218430, "lon": -74.0160653 }, + { "lat": 40.8222371, "lon": -74.0168428 }, + { "lat": 40.8223205, "lon": -74.0172328 }, + { "lat": 40.8223838, "lon": -74.0172792 }, + { "lat": 40.8228671, "lon": -74.0168689 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1182462592, + "bounds": { + "minlat": 40.8208636, + "minlon": -74.0172283, + "maxlat": 40.8213037, + "maxlon": -74.0162115 + }, + "nodes": [ + 10980602992, + 10980603000, + 10980603001, + 10980603002, + 10980603003, + 10980603004, + 10980627805, + 10980627806, + 10980603000 + ], + "geometry": [ + { "lat": 40.8211613, "lon": -74.0162115 }, + { "lat": 40.8212461, "lon": -74.0164993 }, + { "lat": 40.8213037, "lon": -74.0166460 }, + { "lat": 40.8212153, "lon": -74.0168300 }, + { "lat": 40.8209631, "lon": -74.0171906 }, + { "lat": 40.8208636, "lon": -74.0172283 }, + { "lat": 40.8208669, "lon": -74.0171286 }, + { "lat": 40.8210703, "lon": -74.0167888 }, + { "lat": 40.8212461, "lon": -74.0164993 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1182462593, + "bounds": { + "minlat": 40.8208181, + "minlon": -74.0175475, + "maxlat": 40.8209219, + "maxlon": -74.0172283 + }, + "nodes": [ + 10980603004, + 10980627807, + 10980627808 + ], + "geometry": [ + { "lat": 40.8208636, "lon": -74.0172283 }, + { "lat": 40.8208181, "lon": -74.0172822 }, + { "lat": 40.8209219, "lon": -74.0175475 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1182462594, + "bounds": { + "minlat": 40.8213037, + "minlon": -74.0173564, + "maxlat": 40.8223205, + "maxlon": -74.0166460 + }, + "nodes": [ + 10980603001, + 10980627809, + 10980602997 + ], + "geometry": [ + { "lat": 40.8213037, "lon": -74.0166460 }, + { "lat": 40.8218067, "lon": -74.0173564 }, + { "lat": 40.8223205, "lon": -74.0172328 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1182462595, + "bounds": { + "minlat": 40.8211907, + "minlon": -74.0180566, + "maxlat": 40.8218067, + "maxlon": -74.0173564 + }, + "nodes": [ + 10980627810, + 10980627809 + ], + "geometry": [ + { "lat": 40.8211907, "lon": -74.0180566 }, + { "lat": 40.8218067, "lon": -74.0173564 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1183565090, + "bounds": { + "minlat": 40.7681544, + "minlon": -73.9558947, + "maxlat": 40.7682216, + "maxlon": -73.9557432 + }, + "nodes": [ + 10991141055, + 10991141058, + 10991141053 + ], + "geometry": [ + { "lat": 40.7681544, "lon": -73.9557432 }, + { "lat": 40.7682150, "lon": -73.9558798 }, + { "lat": 40.7682216, "lon": -73.9558947 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1183722024, + "bounds": { + "minlat": 40.7530043, + "minlon": -73.9096500, + "maxlat": 40.7530362, + "maxlon": -73.9093472 + }, + "nodes": [ + 8374786609, + 9662522082 + ], + "geometry": [ + { "lat": 40.7530043, "lon": -73.9096500 }, + { "lat": 40.7530362, "lon": -73.9093472 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1183958480, + "bounds": { + "minlat": 40.7518563, + "minlon": -73.9654544, + "maxlat": 40.7519528, + "maxlon": -73.9652298 + }, + "nodes": [ + 370925141, + 3011333828, + 10994926358, + 5220467776 + ], + "geometry": [ + { "lat": 40.7519528, "lon": -73.9654544 }, + { "lat": 40.7518956, "lon": -73.9653032 }, + { "lat": 40.7518771, "lon": -73.9652603 }, + { "lat": 40.7518563, "lon": -73.9652298 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1183958481, + "bounds": { + "minlat": 40.7521308, + "minlon": -73.9671907, + "maxlat": 40.7523347, + "maxlon": -73.9669654 + }, + "nodes": [ + 248708583, + 10994926361, + 11000991021, + 9140864951, + 10994926362, + 3829675223 + ], + "geometry": [ + { "lat": 40.7521308, "lon": -73.9671907 }, + { "lat": 40.7521758, "lon": -73.9671061 }, + { "lat": 40.7522010, "lon": -73.9670680 }, + { "lat": 40.7522312, "lon": -73.9670377 }, + { "lat": 40.7522830, "lon": -73.9670015 }, + { "lat": 40.7523347, "lon": -73.9669654 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "name": "East 48th Street", + "name:ru": "Восточная 48-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1183958575, + "bounds": { + "minlat": 40.7229758, + "minlon": -73.9453607, + "maxlat": 40.7231127, + "maxlon": -73.9440866 + }, + "nodes": [ + 8672287425, + 6732842571, + 9765742515, + 42502927, + 9765784225, + 42478902 + ], + "geometry": [ + { "lat": 40.7231127, "lon": -73.9440866 }, + { "lat": 40.7231041, "lon": -73.9441752 }, + { "lat": 40.7230225, "lon": -73.9449431 }, + { "lat": 40.7230141, "lon": -73.9450173 }, + { "lat": 40.7230040, "lon": -73.9451063 }, + { "lat": 40.7229758, "lon": -73.9453607 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "name": "Driggs Avenue", + "note": "confirm side of street for bike lane", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1183960049, + "bounds": { + "minlat": 40.7228184, + "minlon": -73.9422257, + "maxlat": 40.7232911, + "maxlon": -73.9421472 + }, + "nodes": [ + 42509193, + 6732842568, + 10994923631 + ], + "geometry": [ + { "lat": 40.7232911, "lon": -73.9422257 }, + { "lat": 40.7232135, "lon": -73.9422120 }, + { "lat": 40.7228184, "lon": -73.9421472 } + ], + "tags": { + "highway": "residential", + "maxspeed": "15 mph", + "maxspeed:type": "sign", + "name": "Monitor Street", + "name:etymology:wikidata": "Q857891", + "note": "school speed zone", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1183960050, + "bounds": { + "minlat": 40.7232911, + "minlon": -73.9425712, + "maxlat": 40.7253984, + "maxlon": -73.9422257 + }, + "nodes": [ + 10994923632, + 9763132688, + 8672287433, + 8672301498, + 6732842566, + 42509193 + ], + "geometry": [ + { "lat": 40.7253984, "lon": -73.9425712 }, + { "lat": 40.7246077, "lon": -73.9424413 }, + { "lat": 40.7244572, "lon": -73.9424165 }, + { "lat": 40.7233895, "lon": -73.9422418 }, + { "lat": 40.7233445, "lon": -73.9422342 }, + { "lat": 40.7232911, "lon": -73.9422257 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "maxspeed": "15 mph", + "maxspeed:type": "sign", + "name": "Monitor Street", + "name:etymology:wikidata": "Q857891", + "note": "school speed zone", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1183963690, + "bounds": { + "minlat": 40.7534482, + "minlon": -73.9631988, + "maxlat": 40.7550248, + "maxlon": -73.9617928 + }, + "nodes": [ + 10994925954, + 10994925955, + 10994960049, + 10994960048, + 10994960047, + 10994960046, + 10994960045, + 10994960044, + 10994960043, + 10994960041, + 10994965412, + 10994960040, + 10994960039, + 10994960038, + 10994960037, + 10994960036, + 12365943015, + 10994965421, + 8195670645, + 374372416, + 374372440, + 374372462, + 374372552, + 374372564, + 10994960078, + 1241323592, + 10994925954 + ], + "geometry": [ + { "lat": 40.7535309, "lon": -73.9631230 }, + { "lat": 40.7534482, "lon": -73.9631944 }, + { "lat": 40.7534500, "lon": -73.9631988 }, + { "lat": 40.7536375, "lon": -73.9630616 }, + { "lat": 40.7537541, "lon": -73.9629722 }, + { "lat": 40.7538358, "lon": -73.9629076 }, + { "lat": 40.7540058, "lon": -73.9627603 }, + { "lat": 40.7541448, "lon": -73.9626413 }, + { "lat": 40.7542739, "lon": -73.9625280 }, + { "lat": 40.7545530, "lon": -73.9622861 }, + { "lat": 40.7545609, "lon": -73.9622793 }, + { "lat": 40.7547058, "lon": -73.9621538 }, + { "lat": 40.7547816, "lon": -73.9620879 }, + { "lat": 40.7548687, "lon": -73.9620051 }, + { "lat": 40.7549622, "lon": -73.9619056 }, + { "lat": 40.7550248, "lon": -73.9618376 }, + { "lat": 40.7550094, "lon": -73.9618158 }, + { "lat": 40.7549932, "lon": -73.9617928 }, + { "lat": 40.7548488, "lon": -73.9619168 }, + { "lat": 40.7545217, "lon": -73.9622059 }, + { "lat": 40.7545400, "lon": -73.9622402 }, + { "lat": 40.7541158, "lon": -73.9626146 }, + { "lat": 40.7537730, "lon": -73.9629155 }, + { "lat": 40.7537551, "lon": -73.9628812 }, + { "lat": 40.7535148, "lon": -73.9630908 }, + { "lat": 40.7535251, "lon": -73.9631103 }, + { "lat": 40.7535309, "lon": -73.9631230 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1183963693, + "bounds": { + "minlat": 40.7550373, + "minlon": -73.9617918, + "maxlat": 40.7551068, + "maxlon": -73.9617089 + }, + "nodes": [ + 10994960035, + 12365943016, + 10994965422, + 10994965419, + 10994965418, + 10994960035 + ], + "geometry": [ + { "lat": 40.7550644, "lon": -73.9617918 }, + { "lat": 40.7550520, "lon": -73.9617742 }, + { "lat": 40.7550373, "lon": -73.9617533 }, + { "lat": 40.7550883, "lon": -73.9617089 }, + { "lat": 40.7551068, "lon": -73.9617391 }, + { "lat": 40.7550644, "lon": -73.9617918 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1184227887, + "bounds": { + "minlat": 40.8300474, + "minlon": -73.9292669, + "maxlat": 40.8301135, + "maxlon": -73.9287492 + }, + "nodes": [ + 5335109924, + 595786252 + ], + "geometry": [ + { "lat": 40.8300474, "lon": -73.9292669 }, + { "lat": 40.8301135, "lon": -73.9287492 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1184293792, + "bounds": { + "minlat": 40.7519324, + "minlon": -73.9676363, + "maxlat": 40.7520569, + "maxlon": -73.9673883 + }, + "nodes": [ + 10998191767, + 3670415220, + 10998191795, + 10998191796, + 10998191797, + 10998191798, + 10998191799, + 10998191800, + 10998191801, + 10998191802, + 6271127148, + 10998191803, + 10998191768, + 3831856767, + 595105571, + 12154055786, + 10998191767 + ], + "geometry": [ + { "lat": 40.7520569, "lon": -73.9676202 }, + { "lat": 40.7520446, "lon": -73.9676316 }, + { "lat": 40.7520315, "lon": -73.9676355 }, + { "lat": 40.7520155, "lon": -73.9676363 }, + { "lat": 40.7520012, "lon": -73.9676274 }, + { "lat": 40.7519694, "lon": -73.9675616 }, + { "lat": 40.7519405, "lon": -73.9674884 }, + { "lat": 40.7519338, "lon": -73.9674522 }, + { "lat": 40.7519324, "lon": -73.9674314 }, + { "lat": 40.7519344, "lon": -73.9674095 }, + { "lat": 40.7519403, "lon": -73.9673969 }, + { "lat": 40.7519493, "lon": -73.9673898 }, + { "lat": 40.7519563, "lon": -73.9673883 }, + { "lat": 40.7519925, "lon": -73.9674723 }, + { "lat": 40.7520303, "lon": -73.9675604 }, + { "lat": 40.7520417, "lon": -73.9675860 }, + { "lat": 40.7520569, "lon": -73.9676202 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184293797, + "bounds": { + "minlat": 40.7527363, + "minlon": -73.9672435, + "maxlat": 40.7527726, + "maxlon": -73.9671150 + }, + "nodes": [ + 10998208716, + 10998208706, + 10998208707, + 595105496 + ], + "geometry": [ + { "lat": 40.7527363, "lon": -73.9672435 }, + { "lat": 40.7527393, "lon": -73.9672147 }, + { "lat": 40.7527506, "lon": -73.9671638 }, + { "lat": 40.7527726, "lon": -73.9671150 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 48th Street", + "name:ru": "Восточная 48-я стрит", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1184293801, + "bounds": { + "minlat": 40.7531509, + "minlon": -73.9666996, + "maxlat": 40.7532154, + "maxlon": -73.9666384 + }, + "nodes": [ + 10998208742, + 10998208743, + 10998208752, + 10998208744, + 10998208745, + 10998208746, + 10998208747, + 10998208748, + 10998208749, + 10998208751, + 10998208750, + 10998208742 + ], + "geometry": [ + { "lat": 40.7531574, "lon": -73.9666888 }, + { "lat": 40.7531626, "lon": -73.9666996 }, + { "lat": 40.7532035, "lon": -73.9666703 }, + { "lat": 40.7532115, "lon": -73.9666645 }, + { "lat": 40.7532154, "lon": -73.9666587 }, + { "lat": 40.7532152, "lon": -73.9666490 }, + { "lat": 40.7532113, "lon": -73.9666414 }, + { "lat": 40.7532071, "lon": -73.9666384 }, + { "lat": 40.7531992, "lon": -73.9666417 }, + { "lat": 40.7531927, "lon": -73.9666462 }, + { "lat": 40.7531509, "lon": -73.9666755 }, + { "lat": 40.7531574, "lon": -73.9666888 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184369232, + "bounds": { + "minlat": 40.7517502, + "minlon": -73.9673270, + "maxlat": 40.7517839, + "maxlon": -73.9672864 + }, + "nodes": [ + 3827336875, + 11000990919, + 11000990920, + 11000990921, + 11000990922, + 11000990923, + 11000990924, + 11000990925, + 3827336879, + 3827336875 + ], + "geometry": [ + { "lat": 40.7517791, "lon": -73.9672864 }, + { "lat": 40.7517824, "lon": -73.9672952 }, + { "lat": 40.7517839, "lon": -73.9673060 }, + { "lat": 40.7517807, "lon": -73.9673173 }, + { "lat": 40.7517745, "lon": -73.9673239 }, + { "lat": 40.7517670, "lon": -73.9673270 }, + { "lat": 40.7517590, "lon": -73.9673253 }, + { "lat": 40.7517530, "lon": -73.9673158 }, + { "lat": 40.7517502, "lon": -73.9673085 }, + { "lat": 40.7517791, "lon": -73.9672864 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184369249, + "bounds": { + "minlat": 40.7503542, + "minlon": -73.9681756, + "maxlat": 40.7507946, + "maxlon": -73.9678613 + }, + "nodes": [ + 1357949854, + 11000991007, + 11000990991, + 11000990992 + ], + "geometry": [ + { "lat": 40.7503542, "lon": -73.9681756 }, + { "lat": 40.7504733, "lon": -73.9680990 }, + { "lat": 40.7505454, "lon": -73.9680461 }, + { "lat": 40.7507946, "lon": -73.9678613 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184369253, + "bounds": { + "minlat": 40.7518262, + "minlon": -73.9672617, + "maxlat": 40.7523310, + "maxlon": -73.9667989 + }, + "nodes": [ + 8272069049, + 11000991008, + 10998191771, + 11000991009, + 11000991010, + 10998191770, + 11000991011, + 11000991012, + 11000991013, + 11000991014, + 11000991015, + 4011424282, + 11000991019, + 11000991016, + 10994926366, + 11000991020, + 11000990772, + 11000991018, + 3827330951, + 3827330946, + 11000991017, + 3827336869, + 8272068992, + 11000990946, + 8272069049 + ], + "geometry": [ + { "lat": 40.7518262, "lon": -73.9672218 }, + { "lat": 40.7518325, "lon": -73.9672401 }, + { "lat": 40.7518426, "lon": -73.9672534 }, + { "lat": 40.7518535, "lon": -73.9672601 }, + { "lat": 40.7518646, "lon": -73.9672617 }, + { "lat": 40.7518812, "lon": -73.9672588 }, + { "lat": 40.7518914, "lon": -73.9672513 }, + { "lat": 40.7522601, "lon": -73.9669805 }, + { "lat": 40.7522769, "lon": -73.9669633 }, + { "lat": 40.7522897, "lon": -73.9669430 }, + { "lat": 40.7522993, "lon": -73.9669209 }, + { "lat": 40.7523062, "lon": -73.9669022 }, + { "lat": 40.7523170, "lon": -73.9668680 }, + { "lat": 40.7523269, "lon": -73.9668298 }, + { "lat": 40.7523310, "lon": -73.9667989 }, + { "lat": 40.7523005, "lon": -73.9668110 }, + { "lat": 40.7522782, "lon": -73.9668198 }, + { "lat": 40.7522792, "lon": -73.9668388 }, + { "lat": 40.7522778, "lon": -73.9668623 }, + { "lat": 40.7522707, "lon": -73.9668895 }, + { "lat": 40.7522580, "lon": -73.9669098 }, + { "lat": 40.7522433, "lon": -73.9669269 }, + { "lat": 40.7518439, "lon": -73.9672092 }, + { "lat": 40.7518379, "lon": -73.9672135 }, + { "lat": 40.7518262, "lon": -73.9672218 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184369296, + "bounds": { + "minlat": 40.7494783, + "minlon": -73.9690925, + "maxlat": 40.7506381, + "maxlon": -73.9682085 + }, + "nodes": [ + 11000991174, + 11000991214, + 8272069438, + 11000991283, + 11000991244, + 11000991242, + 11000991239, + 11000991236, + 11000991186, + 2668901061, + 2668901062, + 11000991185, + 2668901065, + 2668901067, + 2668901068, + 11000991184, + 2668901071, + 11000991183, + 11000991258, + 11000991266, + 11000991262, + 5759126971, + 8272069452, + 11000991215, + 11000991216, + 11000991231, + 11000990993, + 11000990994, + 5759126960, + 11000991217, + 11000991218, + 11000991219, + 11000991220, + 11000991221, + 11000991222, + 11000991223, + 11000991003, + 11000991171, + 11000991172, + 11000991224, + 11000991225, + 11000991226, + 11000991210, + 11000991227, + 11000991228, + 11000991229, + 11000991230, + 11000991232, + 11000991176, + 11000991173, + 11000991178, + 11000991174 + ], + "geometry": [ + { "lat": 40.7494783, "lon": -73.9690402 }, + { "lat": 40.7494810, "lon": -73.9690633 }, + { "lat": 40.7494893, "lon": -73.9690925 }, + { "lat": 40.7495067, "lon": -73.9690774 }, + { "lat": 40.7495247, "lon": -73.9690671 }, + { "lat": 40.7495237, "lon": -73.9690228 }, + { "lat": 40.7495450, "lon": -73.9689880 }, + { "lat": 40.7496324, "lon": -73.9688753 }, + { "lat": 40.7496783, "lon": -73.9688208 }, + { "lat": 40.7497327, "lon": -73.9687626 }, + { "lat": 40.7498026, "lon": -73.9686950 }, + { "lat": 40.7498785, "lon": -73.9686313 }, + { "lat": 40.7499591, "lon": -73.9685676 }, + { "lat": 40.7500703, "lon": -73.9684877 }, + { "lat": 40.7501696, "lon": -73.9684255 }, + { "lat": 40.7502587, "lon": -73.9683770 }, + { "lat": 40.7503330, "lon": -73.9683410 }, + { "lat": 40.7504078, "lon": -73.9683122 }, + { "lat": 40.7504864, "lon": -73.9682860 }, + { "lat": 40.7505669, "lon": -73.9682660 }, + { "lat": 40.7506316, "lon": -73.9682578 }, + { "lat": 40.7506353, "lon": -73.9682400 }, + { "lat": 40.7506381, "lon": -73.9682236 }, + { "lat": 40.7506169, "lon": -73.9682179 }, + { "lat": 40.7506016, "lon": -73.9682153 }, + { "lat": 40.7506007, "lon": -73.9682297 }, + { "lat": 40.7505997, "lon": -73.9682475 }, + { "lat": 40.7505654, "lon": -73.9682440 }, + { "lat": 40.7505665, "lon": -73.9682264 }, + { "lat": 40.7505676, "lon": -73.9682085 }, + { "lat": 40.7505481, "lon": -73.9682095 }, + { "lat": 40.7504829, "lon": -73.9682194 }, + { "lat": 40.7504226, "lon": -73.9682380 }, + { "lat": 40.7503612, "lon": -73.9682575 }, + { "lat": 40.7502690, "lon": -73.9682978 }, + { "lat": 40.7501898, "lon": -73.9683394 }, + { "lat": 40.7501521, "lon": -73.9683594 }, + { "lat": 40.7500628, "lon": -73.9684146 }, + { "lat": 40.7499423, "lon": -73.9685038 }, + { "lat": 40.7498674, "lon": -73.9685598 }, + { "lat": 40.7497801, "lon": -73.9686390 }, + { "lat": 40.7496955, "lon": -73.9687157 }, + { "lat": 40.7496601, "lon": -73.9687584 }, + { "lat": 40.7496120, "lon": -73.9688125 }, + { "lat": 40.7495404, "lon": -73.9689026 }, + { "lat": 40.7495023, "lon": -73.9689583 }, + { "lat": 40.7494855, "lon": -73.9689975 }, + { "lat": 40.7495048, "lon": -73.9690008 }, + { "lat": 40.7495173, "lon": -73.9690029 }, + { "lat": 40.7495132, "lon": -73.9690460 }, + { "lat": 40.7494990, "lon": -73.9690440 }, + { "lat": 40.7494783, "lon": -73.9690402 } + ], + "tags": { + "access": "private", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184400328, + "bounds": { + "minlat": 40.8012150, + "minlon": -74.0076336, + "maxlat": 40.8014369, + "maxlon": -74.0074577 + }, + "nodes": [ + 11001215614, + 11001215615, + 11001215616 + ], + "geometry": [ + { "lat": 40.8014369, "lon": -74.0074577 }, + { "lat": 40.8012572, "lon": -74.0075951 }, + { "lat": 40.8012150, "lon": -74.0076336 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1184480985, + "bounds": { + "minlat": 40.7042465, + "minlon": -74.0115763, + "maxlat": 40.7043730, + "maxlon": -74.0110975 + }, + "nodes": [ + 42431875, + 8276468834, + 42437546 + ], + "geometry": [ + { "lat": 40.7042465, "lon": -74.0115763 }, + { "lat": 40.7042728, "lon": -74.0114722 }, + { "lat": 40.7043730, "lon": -74.0110975 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "South William Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "사우스 윌리엄 스트리트", + "oneway": "yes", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "William", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "width": "20'0\"", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1184480986, + "bounds": { + "minlat": 40.7047630, + "minlon": -74.0103270, + "maxlat": 40.7051688, + "maxlon": -74.0099816 + }, + "nodes": [ + 42437537, + 11040350669, + 8276468877, + 11040350668, + 11053183444, + 42437536 + ], + "geometry": [ + { "lat": 40.7047630, "lon": -74.0103270 }, + { "lat": 40.7048248, "lon": -74.0102574 }, + { "lat": 40.7050688, "lon": -74.0100324 }, + { "lat": 40.7051055, "lon": -74.0100074 }, + { "lat": 40.7051363, "lon": -74.0099916 }, + { "lat": 40.7051688, "lon": -74.0099816 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "South William Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "사우스 윌리엄 스트리트", + "oneway": "yes", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "William", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1184516019, + "bounds": { + "minlat": 40.7034746, + "minlon": -74.0115948, + "maxlat": 40.7035808, + "maxlon": -74.0115938 + }, + "nodes": [ + 42431889, + 10710993577, + 11002109566 + ], + "geometry": [ + { "lat": 40.7034746, "lon": -74.0115948 }, + { "lat": 40.7035656, "lon": -74.0115944 }, + { "lat": 40.7035808, "lon": -74.0115938 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Broad Street", + "name:ko": "브로드 스트리트", + "name:ru": "Брод-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broad", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q2613951", + "wikipedia": "en:Broad Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1184574016, + "bounds": { + "minlat": 40.7508010, + "minlon": -73.9679288, + "maxlat": 40.7516758, + "maxlon": -73.9672036 + }, + "nodes": [ + 11000990969, + 8272069052, + 11000990929, + 11000990819, + 11002617431, + 11000990818, + 8272069375, + 3554502496, + 3554502498, + 3554502085, + 3554502499, + 4551291016, + 4551291018, + 11000990933, + 11000990932, + 8272069234, + 11002617430, + 11000990973, + 11000990972, + 11000990971, + 11000990970, + 11000990967, + 11000990968, + 11000990969 + ], + "geometry": [ + { "lat": 40.7516742, "lon": -73.9673440 }, + { "lat": 40.7516645, "lon": -73.9673510 }, + { "lat": 40.7509105, "lon": -73.9678991 }, + { "lat": 40.7509030, "lon": -73.9678807 }, + { "lat": 40.7508731, "lon": -73.9679021 }, + { "lat": 40.7508357, "lon": -73.9679288 }, + { "lat": 40.7508311, "lon": -73.9679182 }, + { "lat": 40.7508010, "lon": -73.9678486 }, + { "lat": 40.7508843, "lon": -73.9677894 }, + { "lat": 40.7508958, "lon": -73.9678169 }, + { "lat": 40.7509059, "lon": -73.9678411 }, + { "lat": 40.7509130, "lon": -73.9678555 }, + { "lat": 40.7516465, "lon": -73.9673275 }, + { "lat": 40.7516428, "lon": -73.9673185 }, + { "lat": 40.7516328, "lon": -73.9672946 }, + { "lat": 40.7515962, "lon": -73.9672056 }, + { "lat": 40.7516062, "lon": -73.9672036 }, + { "lat": 40.7516218, "lon": -73.9672051 }, + { "lat": 40.7516241, "lon": -73.9672213 }, + { "lat": 40.7516558, "lon": -73.9672929 }, + { "lat": 40.7516694, "lon": -73.9672838 }, + { "lat": 40.7516758, "lon": -73.9673027 }, + { "lat": 40.7516612, "lon": -73.9673125 }, + { "lat": 40.7516742, "lon": -73.9673440 } + ], + "tags": { + "access": "private", + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184574017, + "bounds": { + "minlat": 40.7506182, + "minlon": -73.9681280, + "maxlat": 40.7508430, + "maxlon": -73.9679182 + }, + "nodes": [ + 8272069377, + 11002617432, + 6271127139, + 3827336872, + 11000990814, + 11000990930, + 11000990818, + 8272069375, + 8272069376, + 8272069377 + ], + "geometry": [ + { "lat": 40.7506182, "lon": -73.9681090 }, + { "lat": 40.7506270, "lon": -73.9681134 }, + { "lat": 40.7506562, "lon": -73.9681280 }, + { "lat": 40.7506656, "lon": -73.9680787 }, + { "lat": 40.7507501, "lon": -73.9680160 }, + { "lat": 40.7508430, "lon": -73.9679465 }, + { "lat": 40.7508357, "lon": -73.9679288 }, + { "lat": 40.7508311, "lon": -73.9679182 }, + { "lat": 40.7506311, "lon": -73.9680627 }, + { "lat": 40.7506182, "lon": -73.9681090 } + ], + "tags": { + "access": "private", + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184574031, + "bounds": { + "minlat": 40.7493954, + "minlon": -73.9692194, + "maxlat": 40.7494560, + "maxlon": -73.9691367 + }, + "nodes": [ + 8272069387, + 11002617515, + 11002617506, + 11002617508, + 11002617509, + 11002617510, + 11002617511, + 11002617512, + 11002617513, + 11002617507, + 11002617514, + 8272069386, + 8272069387 + ], + "geometry": [ + { "lat": 40.7493977, "lon": -73.9691626 }, + { "lat": 40.7493954, "lon": -73.9691648 }, + { "lat": 40.7494092, "lon": -73.9691992 }, + { "lat": 40.7494158, "lon": -73.9692154 }, + { "lat": 40.7494197, "lon": -73.9692194 }, + { "lat": 40.7494251, "lon": -73.9692190 }, + { "lat": 40.7494520, "lon": -73.9691996 }, + { "lat": 40.7494560, "lon": -73.9691956 }, + { "lat": 40.7494555, "lon": -73.9691891 }, + { "lat": 40.7494497, "lon": -73.9691739 }, + { "lat": 40.7494339, "lon": -73.9691367 }, + { "lat": 40.7494319, "lon": -73.9691380 }, + { "lat": 40.7493977, "lon": -73.9691626 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184574048, + "bounds": { + "minlat": 40.7490766, + "minlon": -73.9693435, + "maxlat": 40.7493452, + "maxlon": -73.9691369 + }, + "nodes": [ + 11000991040, + 11000991042, + 11002617563, + 11000991041, + 11002617562, + 3670415209, + 3670385976, + 3670385977, + 8272069395, + 11002617480, + 11002617479, + 11002617478, + 8272069397, + 11002617457, + 11002617461, + 11002617462, + 11002617463, + 11002617516, + 8272069360, + 11002617518, + 11000991040 + ], + "geometry": [ + { "lat": 40.7491486, "lon": -73.9693329 }, + { "lat": 40.7491380, "lon": -73.9693060 }, + { "lat": 40.7491074, "lon": -73.9693272 }, + { "lat": 40.7490839, "lon": -73.9693435 }, + { "lat": 40.7490766, "lon": -73.9693248 }, + { "lat": 40.7491000, "lon": -73.9693080 }, + { "lat": 40.7491655, "lon": -73.9692610 }, + { "lat": 40.7491456, "lon": -73.9692126 }, + { "lat": 40.7491746, "lon": -73.9692178 }, + { "lat": 40.7491794, "lon": -73.9692258 }, + { "lat": 40.7491990, "lon": -73.9692339 }, + { "lat": 40.7492147, "lon": -73.9692291 }, + { "lat": 40.7492509, "lon": -73.9691988 }, + { "lat": 40.7492724, "lon": -73.9691832 }, + { "lat": 40.7492908, "lon": -73.9691690 }, + { "lat": 40.7493059, "lon": -73.9691524 }, + { "lat": 40.7493149, "lon": -73.9691369 }, + { "lat": 40.7493299, "lon": -73.9691592 }, + { "lat": 40.7493452, "lon": -73.9691973 }, + { "lat": 40.7491836, "lon": -73.9693088 }, + { "lat": 40.7491486, "lon": -73.9693329 } + ], + "tags": { + "access": "private", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184574050, + "bounds": { + "minlat": 40.7490597, + "minlon": -73.9682352, + "maxlat": 40.7491370, + "maxlon": -73.9681561 + }, + "nodes": [ + 11002617566, + 11002617571, + 11002617567, + 11002617568, + 11002617570, + 11002617569, + 11002617566 + ], + "geometry": [ + { "lat": 40.7491370, "lon": -73.9681882 }, + { "lat": 40.7491046, "lon": -73.9682122 }, + { "lat": 40.7490733, "lon": -73.9682352 }, + { "lat": 40.7490597, "lon": -73.9682031 }, + { "lat": 40.7490907, "lon": -73.9681802 }, + { "lat": 40.7491233, "lon": -73.9681561 }, + { "lat": 40.7491370, "lon": -73.9681882 } + ], + "tags": { + "access": "private", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184574055, + "bounds": { + "minlat": 40.7486911, + "minlon": -73.9696770, + "maxlat": 40.7487482, + "maxlon": -73.9695460 + }, + "nodes": [ + 11002617620, + 11002617621, + 11002617622, + 11002617623, + 11002617624, + 11002617625, + 11002617626, + 10606540035, + 11002617627, + 11002617628, + 11002617629, + 11002617630, + 11002617631, + 11002617632, + 10606540034, + 11002617612, + 11002617620 + ], + "geometry": [ + { "lat": 40.7487003, "lon": -73.9695460 }, + { "lat": 40.7486911, "lon": -73.9695516 }, + { "lat": 40.7486961, "lon": -73.9695663 }, + { "lat": 40.7486970, "lon": -73.9695779 }, + { "lat": 40.7486955, "lon": -73.9695920 }, + { "lat": 40.7486933, "lon": -73.9696067 }, + { "lat": 40.7486955, "lon": -73.9696190 }, + { "lat": 40.7487115, "lon": -73.9696588 }, + { "lat": 40.7487159, "lon": -73.9696712 }, + { "lat": 40.7487186, "lon": -73.9696762 }, + { "lat": 40.7487242, "lon": -73.9696770 }, + { "lat": 40.7487445, "lon": -73.9696672 }, + { "lat": 40.7487479, "lon": -73.9696635 }, + { "lat": 40.7487482, "lon": -73.9696582 }, + { "lat": 40.7487421, "lon": -73.9696439 }, + { "lat": 40.7487180, "lon": -73.9695878 }, + { "lat": 40.7487003, "lon": -73.9695460 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184673314, + "bounds": { + "minlat": 40.7484144, + "minlon": -73.9689477, + "maxlat": 40.7485630, + "maxlon": -73.9688425 + }, + "nodes": [ + 9140864932, + 11003445226 + ], + "geometry": [ + { "lat": 40.7484144, "lon": -73.9689477 }, + { "lat": 40.7485630, "lon": -73.9688425 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1184673388, + "bounds": { + "minlat": 40.7486682, + "minlon": -73.9700256, + "maxlat": 40.7487811, + "maxlon": -73.9698192 + }, + "nodes": [ + 3846858278, + 7098760452, + 11003445506, + 11003445507, + 11003445508, + 11003445509, + 11003445510, + 11003445511, + 7098760453, + 3846858279, + 3831856768, + 248708366, + 12029510675, + 3846858278 + ], + "geometry": [ + { "lat": 40.7487511, "lon": -73.9700256 }, + { "lat": 40.7487697, "lon": -73.9700121 }, + { "lat": 40.7487773, "lon": -73.9700045 }, + { "lat": 40.7487811, "lon": -73.9699894 }, + { "lat": 40.7487773, "lon": -73.9699707 }, + { "lat": 40.7487182, "lon": -73.9698346 }, + { "lat": 40.7487091, "lon": -73.9698225 }, + { "lat": 40.7486986, "lon": -73.9698192 }, + { "lat": 40.7486854, "lon": -73.9698237 }, + { "lat": 40.7486682, "lon": -73.9698369 }, + { "lat": 40.7486877, "lon": -73.9698813 }, + { "lat": 40.7487219, "lon": -73.9699638 }, + { "lat": 40.7487383, "lon": -73.9699985 }, + { "lat": 40.7487511, "lon": -73.9700256 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1184706654, + "bounds": { + "minlat": 40.6985370, + "minlon": -73.9178720, + "maxlat": 40.7106295, + "maxlon": -73.9057101 + }, + "nodes": [ + 42877013, + 11004046298, + 10686537733, + 9763022181, + 42851917, + 9763022179, + 10686521687, + 9763022260, + 42806584, + 9763022262, + 42902900, + 9763022341, + 42809955, + 9763022434, + 9762206484, + 42827615, + 9762206486, + 9762206508, + 42902896, + 9762206510, + 9761722141, + 3325564427, + 11047362228, + 7113579447, + 11047362231, + 42518739, + 11047362232, + 9761722290, + 42512120, + 9761722302, + 9083990471, + 9761722285, + 42511953, + 10087025171, + 9799250890, + 42517097, + 9799250888, + 12873793245, + 42518733 + ], + "geometry": [ + { "lat": 40.7106295, "lon": -73.9057101 }, + { "lat": 40.7105744, "lon": -73.9057142 }, + { "lat": 40.7093973, "lon": -73.9069070 }, + { "lat": 40.7093587, "lon": -73.9069463 }, + { "lat": 40.7093060, "lon": -73.9070000 }, + { "lat": 40.7092587, "lon": -73.9070483 }, + { "lat": 40.7081976, "lon": -73.9081326 }, + { "lat": 40.7081618, "lon": -73.9081685 }, + { "lat": 40.7081150, "lon": -73.9082170 }, + { "lat": 40.7080663, "lon": -73.9082669 }, + { "lat": 40.7075510, "lon": -73.9087940 }, + { "lat": 40.7070802, "lon": -73.9092750 }, + { "lat": 40.7070350, "lon": -73.9093220 }, + { "lat": 40.7069865, "lon": -73.9093715 }, + { "lat": 40.7059636, "lon": -73.9104144 }, + { "lat": 40.7059080, "lon": -73.9104710 }, + { "lat": 40.7058586, "lon": -73.9105214 }, + { "lat": 40.7050657, "lon": -73.9113309 }, + { "lat": 40.7050020, "lon": -73.9113960 }, + { "lat": 40.7049410, "lon": -73.9114589 }, + { "lat": 40.7039392, "lon": -73.9124916 }, + { "lat": 40.7038774, "lon": -73.9125553 }, + { "lat": 40.7038206, "lon": -73.9126127 }, + { "lat": 40.7033139, "lon": -73.9131242 }, + { "lat": 40.7028579, "lon": -73.9135845 }, + { "lat": 40.7027990, "lon": -73.9136440 }, + { "lat": 40.7027480, "lon": -73.9136961 }, + { "lat": 40.7016787, "lon": -73.9147871 }, + { "lat": 40.7016170, "lon": -73.9148500 }, + { "lat": 40.7015644, "lon": -73.9149013 }, + { "lat": 40.7001992, "lon": -73.9162403 }, + { "lat": 40.7001783, "lon": -73.9162608 }, + { "lat": 40.7001236, "lon": -73.9163144 }, + { "lat": 40.7000653, "lon": -73.9163719 }, + { "lat": 40.6989812, "lon": -73.9174390 }, + { "lat": 40.6988980, "lon": -73.9175228 }, + { "lat": 40.6988219, "lon": -73.9175964 }, + { "lat": 40.6985926, "lon": -73.9178182 }, + { "lat": 40.6985370, "lon": -73.9178720 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "Bleecker Street", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1184710166, + "bounds": { + "minlat": 40.7134068, + "minlon": -73.9073942, + "maxlat": 40.7138241, + "maxlon": -73.9071817 + }, + "nodes": [ + 11004089409, + 11004089423, + 11004089414, + 11004089421 + ], + "geometry": [ + { "lat": 40.7138241, "lon": -73.9071817 }, + { "lat": 40.7137798, "lon": -73.9072146 }, + { "lat": 40.7136052, "lon": -73.9073723 }, + { "lat": 40.7134068, "lon": -73.9073942 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1185041871, + "bounds": { + "minlat": 40.8560006, + "minlon": -73.9783695, + "maxlat": 40.8563101, + "maxlon": -73.9781595 + }, + "nodes": [ + 11007764188, + 11007764189, + 11007764190 + ], + "geometry": [ + { "lat": 40.8560006, "lon": -73.9783695 }, + { "lat": 40.8561883, "lon": -73.9781595 }, + { "lat": 40.8563101, "lon": -73.9783496 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1185046430, + "bounds": { + "minlat": 40.7062102, + "minlon": -73.9328491, + "maxlat": 40.7069294, + "maxlon": -73.9327238 + }, + "nodes": [ + 11007794926, + 11007794927, + 11007794933, + 11007794928, + 11007794929, + 11007794932, + 11007794930, + 11007794931 + ], + "geometry": [ + { "lat": 40.7069294, "lon": -73.9328491 }, + { "lat": 40.7068754, "lon": -73.9328341 }, + { "lat": 40.7068484, "lon": -73.9328266 }, + { "lat": 40.7064787, "lon": -73.9327238 }, + { "lat": 40.7064001, "lon": -73.9328445 }, + { "lat": 40.7062900, "lon": -73.9328139 }, + { "lat": 40.7062734, "lon": -73.9328093 }, + { "lat": 40.7062102, "lon": -73.9327917 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1185205690, + "bounds": { + "minlat": 40.8649279, + "minlon": -73.9553873, + "maxlat": 40.8651646, + "maxlon": -73.9552610 + }, + "nodes": [ + 5362438122, + 5362437315 + ], + "geometry": [ + { "lat": 40.8651646, "lon": -73.9552610 }, + { "lat": 40.8649279, "lon": -73.9553873 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1185205691, + "bounds": { + "minlat": 40.8651646, + "minlon": -73.9552610, + "maxlat": 40.8657655, + "maxlon": -73.9547936 + }, + "nodes": [ + 62885844, + 5362437320, + 7930701582, + 7930701584, + 5362438121, + 5362438122 + ], + "geometry": [ + { "lat": 40.8657655, "lon": -73.9547936 }, + { "lat": 40.8656696, "lon": -73.9548543 }, + { "lat": 40.8655734, "lon": -73.9549220 }, + { "lat": 40.8654862, "lon": -73.9549888 }, + { "lat": 40.8654157, "lon": -73.9550462 }, + { "lat": 40.8651646, "lon": -73.9552610 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1185466367, + "bounds": { + "minlat": 40.7603953, + "minlon": -73.9594561, + "maxlat": 40.7604618, + "maxlon": -73.9594093 + }, + "nodes": [ + 5119773961, + 11011913631 + ], + "geometry": [ + { "lat": 40.7604618, "lon": -73.9594093 }, + { "lat": 40.7603953, "lon": -73.9594561 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1185622402, + "bounds": { + "minlat": 40.8285343, + "minlon": -73.9809231, + "maxlat": 40.8286105, + "maxlon": -73.9808500 + }, + "nodes": [ + 11013287209, + 7538747884 + ], + "geometry": [ + { "lat": 40.8285343, "lon": -73.9809231 }, + { "lat": 40.8286105, "lon": -73.9808500 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1185622403, + "bounds": { + "minlat": 40.8284907, + "minlon": -73.9809657, + "maxlat": 40.8285343, + "maxlon": -73.9809231 + }, + "nodes": [ + 11013287210, + 11013287209 + ], + "geometry": [ + { "lat": 40.8284907, "lon": -73.9809657 }, + { "lat": 40.8285343, "lon": -73.9809231 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1185622773, + "bounds": { + "minlat": 40.8278299, + "minlon": -73.9866692, + "maxlat": 40.8279494, + "maxlon": -73.9864644 + }, + "nodes": [ + 11013291465, + 7538917953 + ], + "geometry": [ + { "lat": 40.8278299, "lon": -73.9864644 }, + { "lat": 40.8279494, "lon": -73.9866692 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1185622774, + "bounds": { + "minlat": 40.8277929, + "minlon": -73.9864644, + "maxlat": 40.8278299, + "maxlon": -73.9864016 + }, + "nodes": [ + 11013291464, + 11013291465 + ], + "geometry": [ + { "lat": 40.8277929, "lon": -73.9864016 }, + { "lat": 40.8278299, "lon": -73.9864644 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1185632954, + "bounds": { + "minlat": 40.7022630, + "minlon": -74.0151010, + "maxlat": 40.7023706, + "maxlon": -74.0149263 + }, + "nodes": [ + 11013367143, + 11013367185, + 11013367186, + 11013367170, + 11013367169, + 6297396381, + 11013367153, + 11013367154, + 11013367159, + 11013367160, + 11013367158, + 11013367162, + 11013367161, + 11013367155, + 11013367157, + 11013367156, + 6297396382, + 11013367152, + 11013367151, + 11013367148, + 11013367149, + 11013367150, + 11013367147, + 6297398616, + 11013367146, + 11013367145, + 11013367144, + 11013367143 + ], + "geometry": [ + { "lat": 40.7022630, "lon": -74.0150298 }, + { "lat": 40.7022700, "lon": -74.0150084 }, + { "lat": 40.7022738, "lon": -74.0149873 }, + { "lat": 40.7022730, "lon": -74.0149668 }, + { "lat": 40.7022816, "lon": -74.0149605 }, + { "lat": 40.7022940, "lon": -74.0149512 }, + { "lat": 40.7023087, "lon": -74.0149416 }, + { "lat": 40.7023259, "lon": -74.0149291 }, + { "lat": 40.7023415, "lon": -74.0149263 }, + { "lat": 40.7023573, "lon": -74.0149307 }, + { "lat": 40.7023687, "lon": -74.0149447 }, + { "lat": 40.7023706, "lon": -74.0149623 }, + { "lat": 40.7023645, "lon": -74.0149809 }, + { "lat": 40.7023545, "lon": -74.0149969 }, + { "lat": 40.7023477, "lon": -74.0150058 }, + { "lat": 40.7023458, "lon": -74.0150169 }, + { "lat": 40.7023496, "lon": -74.0150330 }, + { "lat": 40.7023575, "lon": -74.0150575 }, + { "lat": 40.7023594, "lon": -74.0150790 }, + { "lat": 40.7023551, "lon": -74.0150942 }, + { "lat": 40.7023466, "lon": -74.0151007 }, + { "lat": 40.7023335, "lon": -74.0151010 }, + { "lat": 40.7023216, "lon": -74.0150963 }, + { "lat": 40.7023063, "lon": -74.0150865 }, + { "lat": 40.7022947, "lon": -74.0150699 }, + { "lat": 40.7022849, "lon": -74.0150501 }, + { "lat": 40.7022732, "lon": -74.0150344 }, + { "lat": 40.7022630, "lon": -74.0150298 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "no", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1185633882, + "bounds": { + "minlat": 40.8437295, + "minlon": -73.9723391, + "maxlat": 40.8437564, + "maxlon": -73.9722595 + }, + "nodes": [ + 11013363511, + 11013363510 + ], + "geometry": [ + { "lat": 40.8437295, "lon": -73.9722595 }, + { "lat": 40.8437564, "lon": -73.9723391 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1185633883, + "bounds": { + "minlat": 40.8436983, + "minlon": -73.9722595, + "maxlat": 40.8437295, + "maxlon": -73.9721758 + }, + "nodes": [ + 5449346894, + 11013363511 + ], + "geometry": [ + { "lat": 40.8436983, "lon": -73.9721758 }, + { "lat": 40.8437295, "lon": -73.9722595 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1185634203, + "bounds": { + "minlat": 40.8388263, + "minlon": -73.9816570, + "maxlat": 40.8388405, + "maxlon": -73.9816509 + }, + "nodes": [ + 11013376369, + 7469386101 + ], + "geometry": [ + { "lat": 40.8388263, "lon": -73.9816570 }, + { "lat": 40.8388405, "lon": -73.9816509 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1185634204, + "bounds": { + "minlat": 40.8386654, + "minlon": -73.9817161, + "maxlat": 40.8388263, + "maxlon": -73.9816570 + }, + "nodes": [ + 11013376368, + 11013376369 + ], + "geometry": [ + { "lat": 40.8386654, "lon": -73.9817161 }, + { "lat": 40.8388263, "lon": -73.9816570 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1185634365, + "bounds": { + "minlat": 40.8273379, + "minlon": -73.9817033, + "maxlat": 40.8274300, + "maxlon": -73.9816162 + }, + "nodes": [ + 7538966453, + 7538966454 + ], + "geometry": [ + { "lat": 40.8274300, "lon": -73.9816162 }, + { "lat": 40.8273379, "lon": -73.9817033 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1185634366, + "bounds": { + "minlat": 40.8274300, + "minlon": -73.9816162, + "maxlat": 40.8274518, + "maxlon": -73.9815985 + }, + "nodes": [ + 11013363514, + 7538966453 + ], + "geometry": [ + { "lat": 40.8274518, "lon": -73.9815985 }, + { "lat": 40.8274300, "lon": -73.9816162 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1185681603, + "bounds": { + "minlat": 40.8544319, + "minlon": -73.9840758, + "maxlat": 40.8545830, + "maxlon": -73.9838982 + }, + "nodes": [ + 5362392175, + 5362397318, + 5362392153, + 5362392157, + 5362392140 + ], + "geometry": [ + { "lat": 40.8544319, "lon": -73.9840758 }, + { "lat": 40.8544748, "lon": -73.9840293 }, + { "lat": 40.8545164, "lon": -73.9839827 }, + { "lat": 40.8545621, "lon": -73.9839251 }, + { "lat": 40.8545830, "lon": -73.9838982 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1185681604, + "bounds": { + "minlat": 40.8545462, + "minlon": -73.9836537, + "maxlat": 40.8549293, + "maxlon": -73.9831191 + }, + "nodes": [ + 11013747565, + 5362392178, + 5362392144, + 5362392161 + ], + "geometry": [ + { "lat": 40.8545720, "lon": -73.9836537 }, + { "lat": 40.8545552, "lon": -73.9836253 }, + { "lat": 40.8545462, "lon": -73.9835302 }, + { "lat": 40.8549293, "lon": -73.9831191 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1185681605, + "bounds": { + "minlat": 40.8545830, + "minlon": -73.9838982, + "maxlat": 40.8546151, + "maxlon": -73.9837178 + }, + "nodes": [ + 5362392140, + 5362392155, + 5362392158 + ], + "geometry": [ + { "lat": 40.8545830, "lon": -73.9838982 }, + { "lat": 40.8546151, "lon": -73.9838199 }, + { "lat": 40.8546105, "lon": -73.9837178 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1185681606, + "bounds": { + "minlat": 40.8545720, + "minlon": -73.9837178, + "maxlat": 40.8546105, + "maxlon": -73.9836537 + }, + "nodes": [ + 5362392158, + 11013747565 + ], + "geometry": [ + { "lat": 40.8546105, "lon": -73.9837178 }, + { "lat": 40.8545720, "lon": -73.9836537 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1185681607, + "bounds": { + "minlat": 40.8547619, + "minlon": -73.9831191, + "maxlat": 40.8549293, + "maxlon": -73.9828522 + }, + "nodes": [ + 5362392161, + 5362392164, + 5362392145, + 5362392174 + ], + "geometry": [ + { "lat": 40.8549293, "lon": -73.9831191 }, + { "lat": 40.8549212, "lon": -73.9830493 }, + { "lat": 40.8548228, "lon": -73.9828803 }, + { "lat": 40.8547619, "lon": -73.9828522 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1185687121, + "bounds": { + "minlat": 40.8554565, + "minlon": -73.9630502, + "maxlat": 40.8554957, + "maxlon": -73.9628478 + }, + "nodes": [ + 11013778281, + 11170628896, + 11013778282 + ], + "geometry": [ + { "lat": 40.8554565, "lon": -73.9628478 }, + { "lat": 40.8554847, "lon": -73.9629337 }, + { "lat": 40.8554957, "lon": -73.9630502 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1185687122, + "bounds": { + "minlat": 40.8553523, + "minlon": -73.9632066, + "maxlat": 40.8554320, + "maxlon": -73.9631686 + }, + "nodes": [ + 11013778283, + 11013778284 + ], + "geometry": [ + { "lat": 40.8553523, "lon": -73.9632066 }, + { "lat": 40.8554320, "lon": -73.9631686 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1185699974, + "bounds": { + "minlat": 40.8712598, + "minlon": -74.0031483, + "maxlat": 40.8714600, + "maxlon": -74.0027952 + }, + "nodes": [ + 11013900459, + 11013900468, + 11013900460, + 11013900461, + 11013900462, + 11013900463, + 11013900464, + 11013900465, + 11013900469, + 11013900466 + ], + "geometry": [ + { "lat": 40.8714600, "lon": -74.0031247 }, + { "lat": 40.8714131, "lon": -74.0031483 }, + { "lat": 40.8713736, "lon": -74.0031472 }, + { "lat": 40.8713317, "lon": -74.0031088 }, + { "lat": 40.8712975, "lon": -74.0030447 }, + { "lat": 40.8712718, "lon": -74.0029769 }, + { "lat": 40.8712598, "lon": -74.0029058 }, + { "lat": 40.8712606, "lon": -74.0028481 }, + { "lat": 40.8712700, "lon": -74.0028189 }, + { "lat": 40.8712927, "lon": -74.0027952 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1185699975, + "bounds": { + "minlat": 40.8712927, + "minlon": -74.0027952, + "maxlat": 40.8713520, + "maxlon": -74.0027352 + }, + "nodes": [ + 11013900466, + 11013900467 + ], + "geometry": [ + { "lat": 40.8712927, "lon": -74.0027952 }, + { "lat": 40.8713520, "lon": -74.0027352 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1185699976, + "bounds": { + "minlat": 40.8714600, + "minlon": -74.0031247, + "maxlat": 40.8715206, + "maxlon": -74.0030707 + }, + "nodes": [ + 11013900458, + 11013900459 + ], + "geometry": [ + { "lat": 40.8715206, "lon": -74.0030707 }, + { "lat": 40.8714600, "lon": -74.0031247 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1185720368, + "bounds": { + "minlat": 40.8585634, + "minlon": -73.9776930, + "maxlat": 40.8588144, + "maxlon": -73.9772595 + }, + "nodes": [ + 299120749, + 11014055295, + 11014055291, + 11014055292, + 11014055293, + 11014055294, + 11014055296, + 7921551368 + ], + "geometry": [ + { "lat": 40.8586639, "lon": -73.9772595 }, + { "lat": 40.8587617, "lon": -73.9773939 }, + { "lat": 40.8587936, "lon": -73.9774378 }, + { "lat": 40.8588144, "lon": -73.9775397 }, + { "lat": 40.8587555, "lon": -73.9776702 }, + { "lat": 40.8586810, "lon": -73.9776930 }, + { "lat": 40.8586378, "lon": -73.9776741 }, + { "lat": 40.8585634, "lon": -73.9776416 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1185720369, + "bounds": { + "minlat": 40.8586378, + "minlon": -73.9776741, + "maxlat": 40.8587617, + "maxlon": -73.9773939 + }, + "nodes": [ + 11014055295, + 11014055296 + ], + "geometry": [ + { "lat": 40.8587617, "lon": -73.9773939 }, + { "lat": 40.8586378, "lon": -73.9776741 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1185734601, + "bounds": { + "minlat": 40.7451910, + "minlon": -73.9712874, + "maxlat": 40.7453403, + "maxlon": -73.9709232 + }, + "nodes": [ + 6176628861, + 10175165875, + 3829688390 + ], + "geometry": [ + { "lat": 40.7451910, "lon": -73.9709232 }, + { "lat": 40.7452116, "lon": -73.9709733 }, + { "lat": 40.7453403, "lon": -73.9712874 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "cycleway:right:oneway": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1185795658, + "bounds": { + "minlat": 40.7012782, + "minlon": -74.0126821, + "maxlat": 40.7013742, + "maxlon": -74.0122402 + }, + "nodes": [ + 11014606848, + 11014606851, + 11014606850, + 11014606853, + 11014606849 + ], + "geometry": [ + { "lat": 40.7013742, "lon": -74.0122402 }, + { "lat": 40.7013528, "lon": -74.0123395 }, + { "lat": 40.7013409, "lon": -74.0123937 }, + { "lat": 40.7013335, "lon": -74.0124277 }, + { "lat": 40.7012782, "lon": -74.0126821 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1185795672, + "bounds": { + "minlat": 40.7014117, + "minlon": -74.0114926, + "maxlat": 40.7014849, + "maxlon": -74.0114653 + }, + "nodes": [ + 11014606927, + 12311280802, + 11014606929, + 11014606930, + 11014606928 + ], + "geometry": [ + { "lat": 40.7014117, "lon": -74.0114653 }, + { "lat": 40.7014190, "lon": -74.0114680 }, + { "lat": 40.7014291, "lon": -74.0114718 }, + { "lat": 40.7014475, "lon": -74.0114787 }, + { "lat": 40.7014849, "lon": -74.0114926 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1185795684, + "bounds": { + "minlat": 40.7018156, + "minlon": -74.0096298, + "maxlat": 40.7019942, + "maxlon": -74.0095048 + }, + "nodes": [ + 11014606989, + 8276468955, + 5178357337, + 8276468956, + 5178357334, + 5178357336 + ], + "geometry": [ + { "lat": 40.7018156, "lon": -74.0095048 }, + { "lat": 40.7018582, "lon": -74.0095346 }, + { "lat": 40.7018794, "lon": -74.0095495 }, + { "lat": 40.7018954, "lon": -74.0095606 }, + { "lat": 40.7019070, "lon": -74.0095688 }, + { "lat": 40.7019942, "lon": -74.0096298 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1185795685, + "bounds": { + "minlat": 40.7018786, + "minlon": -74.0094393, + "maxlat": 40.7020354, + "maxlon": -74.0093281 + }, + "nodes": [ + 5178357333, + 607912679, + 8276468954, + 7454274562, + 8276468953, + 8276468959 + ], + "geometry": [ + { "lat": 40.7020354, "lon": -74.0094393 }, + { "lat": 40.7019704, "lon": -74.0093932 }, + { "lat": 40.7019559, "lon": -74.0093829 }, + { "lat": 40.7019395, "lon": -74.0093713 }, + { "lat": 40.7019168, "lon": -74.0093552 }, + { "lat": 40.7018786, "lon": -74.0093281 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1185795711, + "bounds": { + "minlat": 40.7011278, + "minlon": -74.0137813, + "maxlat": 40.7011309, + "maxlon": -74.0135872 + }, + "nodes": [ + 11014607128, + 11014607129, + 11013387830 + ], + "geometry": [ + { "lat": 40.7011278, "lon": -74.0135872 }, + { "lat": 40.7011290, "lon": -74.0136632 }, + { "lat": 40.7011309, "lon": -74.0137813 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "South Street", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1185872415, + "bounds": { + "minlat": 40.7349953, + "minlon": -74.0070884, + "maxlat": 40.7351330, + "maxlon": -74.0060475 + }, + "nodes": [ + 10168907022, + 42436139, + 10168907020, + 8307463863, + 42436404 + ], + "geometry": [ + { "lat": 40.7349953, "lon": -74.0070884 }, + { "lat": 40.7350121, "lon": -74.0069712 }, + { "lat": 40.7350255, "lon": -74.0068768 }, + { "lat": 40.7351263, "lon": -74.0061950 }, + { "lat": 40.7351330, "lon": -74.0060475 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Perry Street", + "name:etymology:wikidata": "Q580513", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1185872416, + "bounds": { + "minlat": 40.7359907, + "minlon": -74.0099218, + "maxlat": 40.7362145, + "maxlon": -74.0082211 + }, + "nodes": [ + 42440946, + 3874650201, + 8304878675, + 10169052138, + 42440943, + 12162436910 + ], + "geometry": [ + { "lat": 40.7359907, "lon": -74.0099218 }, + { "lat": 40.7360068, "lon": -74.0097789 }, + { "lat": 40.7361829, "lon": -74.0084731 }, + { "lat": 40.7361900, "lon": -74.0084163 }, + { "lat": 40.7362015, "lon": -74.0083335 }, + { "lat": 40.7362145, "lon": -74.0082211 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Bank Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4855978", + "wikipedia": "en:Bank Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1185886971, + "bounds": { + "minlat": 40.8745932, + "minlon": -73.9533102, + "maxlat": 40.8752684, + "maxlon": -73.9529269 + }, + "nodes": [ + 11015313782, + 11015313783, + 11015313784, + 11015313785 + ], + "geometry": [ + { "lat": 40.8752684, "lon": -73.9531666 }, + { "lat": 40.8751281, "lon": -73.9533102 }, + { "lat": 40.8749305, "lon": -73.9529269 }, + { "lat": 40.8745932, "lon": -73.9530565 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1185886972, + "bounds": { + "minlat": 40.8749305, + "minlon": -73.9529269, + "maxlat": 40.8751035, + "maxlon": -73.9528537 + }, + "nodes": [ + 11015313784, + 8219460654 + ], + "geometry": [ + { "lat": 40.8749305, "lon": -73.9529269 }, + { "lat": 40.8751035, "lon": -73.9528537 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1185919679, + "bounds": { + "minlat": 40.8761821, + "minlon": -73.9525562, + "maxlat": 40.8763852, + "maxlon": -73.9523508 + }, + "nodes": [ + 6362121925, + 11015500694 + ], + "geometry": [ + { "lat": 40.8763852, "lon": -73.9523508 }, + { "lat": 40.8761821, "lon": -73.9525562 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1185919680, + "bounds": { + "minlat": 40.8760640, + "minlon": -73.9526745, + "maxlat": 40.8761821, + "maxlon": -73.9525562 + }, + "nodes": [ + 11015500694, + 11015500695 + ], + "geometry": [ + { "lat": 40.8761821, "lon": -73.9525562 }, + { "lat": 40.8760640, "lon": -73.9526745 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1185919681, + "bounds": { + "minlat": 40.8759983, + "minlon": -73.9527407, + "maxlat": 40.8760640, + "maxlon": -73.9526745 + }, + "nodes": [ + 11015500695, + 6362121930 + ], + "geometry": [ + { "lat": 40.8760640, "lon": -73.9526745 }, + { "lat": 40.8759983, "lon": -73.9527407 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1186021636, + "bounds": { + "minlat": 40.7011938, + "minlon": -74.0141394, + "maxlat": 40.7015518, + "maxlon": -74.0138826 + }, + "nodes": [ + 1805328780, + 1805328787, + 11013387826, + 11013387827, + 607911351, + 11013387825, + 11013387824, + 1805328781, + 11013387823, + 11013387822, + 1805328778, + 11013387836, + 2103787748, + 6381998627, + 1805328767, + 11691170383, + 1805328758, + 11013387693, + 11013387833, + 11016298707, + 1805328753 + ], + "geometry": [ + { "lat": 40.7013961, "lon": -74.0138826 }, + { "lat": 40.7014335, "lon": -74.0139137 }, + { "lat": 40.7014876, "lon": -74.0139485 }, + { "lat": 40.7015179, "lon": -74.0139663 }, + { "lat": 40.7015518, "lon": -74.0139809 }, + { "lat": 40.7015015, "lon": -74.0139805 }, + { "lat": 40.7014589, "lon": -74.0139847 }, + { "lat": 40.7014324, "lon": -74.0139909 }, + { "lat": 40.7014076, "lon": -74.0139978 }, + { "lat": 40.7013819, "lon": -74.0140063 }, + { "lat": 40.7013580, "lon": -74.0140225 }, + { "lat": 40.7013454, "lon": -74.0140333 }, + { "lat": 40.7013329, "lon": -74.0140441 }, + { "lat": 40.7013159, "lon": -74.0140633 }, + { "lat": 40.7013081, "lon": -74.0140727 }, + { "lat": 40.7013017, "lon": -74.0140829 }, + { "lat": 40.7012916, "lon": -74.0140990 }, + { "lat": 40.7012724, "lon": -74.0141165 }, + { "lat": 40.7012500, "lon": -74.0141274 }, + { "lat": 40.7012187, "lon": -74.0141394 }, + { "lat": 40.7011938, "lon": -74.0141390 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Peter Minuit Plaza", + "name:etymology:wikidata": "Q312889", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1186021637, + "bounds": { + "minlat": 40.7011190, + "minlon": -74.0141390, + "maxlat": 40.7011938, + "maxlon": -74.0137813 + }, + "nodes": [ + 1805328753, + 1805328750, + 1805328744, + 11691170382, + 4206998241, + 11013387832, + 1805328734, + 1805328735, + 11013387830 + ], + "geometry": [ + { "lat": 40.7011938, "lon": -74.0141390 }, + { "lat": 40.7011769, "lon": -74.0141180 }, + { "lat": 40.7011581, "lon": -74.0140727 }, + { "lat": 40.7011421, "lon": -74.0139985 }, + { "lat": 40.7011325, "lon": -74.0139544 }, + { "lat": 40.7011248, "lon": -74.0139088 }, + { "lat": 40.7011190, "lon": -74.0138562 }, + { "lat": 40.7011213, "lon": -74.0138073 }, + { "lat": 40.7011309, "lon": -74.0137813 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "South Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1186021664, + "bounds": { + "minlat": 40.7027544, + "minlon": -74.0164943, + "maxlat": 40.7030101, + "maxlon": -74.0162686 + }, + "nodes": [ + 6297396688, + 11016298918, + 6297396472, + 6297395939, + 6297396470, + 6297396471, + 6297395940, + 6297396468, + 6297395941, + 6297396469, + 6297395942, + 6297395943, + 11016298856, + 11016298923, + 11016298855, + 11016298854, + 11016298853, + 11016298852, + 11016298851, + 6297396701, + 6297396700, + 6297395953, + 6297396703, + 6297395952, + 6297396702, + 6297395951, + 6297396705, + 6297395950, + 6297395949, + 6297396704, + 6297395948, + 6297396707, + 6297395947, + 6297396706, + 6297396709, + 11016298922, + 6297396696, + 6297396478, + 6297396481, + 6297396480, + 6297396483, + 6297395936, + 6297396482, + 6297396685, + 6297395937, + 6297396484, + 6297395938, + 6297396687, + 11016298935, + 6297396686, + 6297396689, + 11016298944, + 6297396688 + ], + "geometry": [ + { "lat": 40.7030101, "lon": -74.0164411 }, + { "lat": 40.7029976, "lon": -74.0164648 }, + { "lat": 40.7029857, "lon": -74.0164943 }, + { "lat": 40.7029861, "lon": -74.0164751 }, + { "lat": 40.7029760, "lon": -74.0164570 }, + { "lat": 40.7029548, "lon": -74.0164383 }, + { "lat": 40.7029500, "lon": -74.0164342 }, + { "lat": 40.7029344, "lon": -74.0164296 }, + { "lat": 40.7029221, "lon": -74.0164335 }, + { "lat": 40.7029099, "lon": -74.0164447 }, + { "lat": 40.7029058, "lon": -74.0164516 }, + { "lat": 40.7029030, "lon": -74.0164696 }, + { "lat": 40.7028915, "lon": -74.0164289 }, + { "lat": 40.7028821, "lon": -74.0164107 }, + { "lat": 40.7028729, "lon": -74.0163931 }, + { "lat": 40.7028484, "lon": -74.0163643 }, + { "lat": 40.7028192, "lon": -74.0163441 }, + { "lat": 40.7027873, "lon": -74.0163339 }, + { "lat": 40.7027544, "lon": -74.0163341 }, + { "lat": 40.7027624, "lon": -74.0163209 }, + { "lat": 40.7027726, "lon": -74.0163001 }, + { "lat": 40.7027828, "lon": -74.0162867 }, + { "lat": 40.7027937, "lon": -74.0162817 }, + { "lat": 40.7028107, "lon": -74.0162867 }, + { "lat": 40.7028278, "lon": -74.0163014 }, + { "lat": 40.7028397, "lon": -74.0163155 }, + { "lat": 40.7028535, "lon": -74.0163366 }, + { "lat": 40.7028672, "lon": -74.0163443 }, + { "lat": 40.7028819, "lon": -74.0163490 }, + { "lat": 40.7028905, "lon": -74.0163457 }, + { "lat": 40.7029027, "lon": -74.0163376 }, + { "lat": 40.7029075, "lon": -74.0163208 }, + { "lat": 40.7029088, "lon": -74.0162934 }, + { "lat": 40.7029038, "lon": -74.0162766 }, + { "lat": 40.7028936, "lon": -74.0162686 }, + { "lat": 40.7029207, "lon": -74.0162761 }, + { "lat": 40.7029489, "lon": -74.0162840 }, + { "lat": 40.7029404, "lon": -74.0162873 }, + { "lat": 40.7029366, "lon": -74.0162978 }, + { "lat": 40.7029352, "lon": -74.0163178 }, + { "lat": 40.7029364, "lon": -74.0163315 }, + { "lat": 40.7029470, "lon": -74.0163430 }, + { "lat": 40.7029571, "lon": -74.0163443 }, + { "lat": 40.7029736, "lon": -74.0163402 }, + { "lat": 40.7029846, "lon": -74.0163410 }, + { "lat": 40.7029930, "lon": -74.0163462 }, + { "lat": 40.7029943, "lon": -74.0163564 }, + { "lat": 40.7029904, "lon": -74.0163698 }, + { "lat": 40.7029792, "lon": -74.0163893 }, + { "lat": 40.7029788, "lon": -74.0164119 }, + { "lat": 40.7029851, "lon": -74.0164289 }, + { "lat": 40.7029994, "lon": -74.0164415 }, + { "lat": 40.7030101, "lon": -74.0164411 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "fine_gravel" + } +}, +{ + "type": "way", + "id": 1186021669, + "bounds": { + "minlat": 40.7026630, + "minlon": -74.0168754, + "maxlat": 40.7029463, + "maxlon": -74.0166226 + }, + "nodes": [ + 6297395976, + 11016298931, + 6297396744, + 11016298946, + 6297396721, + 6297396720, + 6297396723, + 6297396722, + 6297395958, + 6297396725, + 6297396724, + 6297395962, + 6297396727, + 6297395961, + 6297396726, + 6297396729, + 6297396728, + 11016298850, + 11016298849, + 11016298848, + 11016298934, + 11016298847, + 6297396465, + 6297396462, + 6297395946, + 6297396463, + 6297396460, + 11016298941, + 6297396461, + 11016298943, + 6297396479, + 11016298924, + 6297396458, + 6297396440, + 6297396439, + 6297396442, + 6297396441, + 6297396444, + 6297395968, + 6297396443, + 6297395969, + 6297395970, + 6297395971, + 6297396446, + 6297395972, + 6297396445, + 6297395973, + 6297396448, + 6297395974, + 6297396447, + 6297395975, + 6297396450, + 6297396449, + 11016298945, + 6297395976 + ], + "geometry": [ + { "lat": 40.7027980, "lon": -74.0168754 }, + { "lat": 40.7027740, "lon": -74.0168635 }, + { "lat": 40.7027535, "lon": -74.0168514 }, + { "lat": 40.7027608, "lon": -74.0168471 }, + { "lat": 40.7027656, "lon": -74.0168317 }, + { "lat": 40.7027665, "lon": -74.0168104 }, + { "lat": 40.7027630, "lon": -74.0167815 }, + { "lat": 40.7027533, "lon": -74.0167513 }, + { "lat": 40.7027406, "lon": -74.0167326 }, + { "lat": 40.7027248, "lon": -74.0167225 }, + { "lat": 40.7026950, "lon": -74.0167186 }, + { "lat": 40.7026796, "lon": -74.0167111 }, + { "lat": 40.7026704, "lon": -74.0166963 }, + { "lat": 40.7026648, "lon": -74.0166843 }, + { "lat": 40.7026630, "lon": -74.0166677 }, + { "lat": 40.7026642, "lon": -74.0166463 }, + { "lat": 40.7026679, "lon": -74.0166226 }, + { "lat": 40.7026998, "lon": -74.0166622 }, + { "lat": 40.7027387, "lon": -74.0166840 }, + { "lat": 40.7027809, "lon": -74.0166889 }, + { "lat": 40.7028046, "lon": -74.0166816 }, + { "lat": 40.7028221, "lon": -74.0166763 }, + { "lat": 40.7028584, "lon": -74.0166476 }, + { "lat": 40.7028616, "lon": -74.0166729 }, + { "lat": 40.7028641, "lon": -74.0166890 }, + { "lat": 40.7028768, "lon": -74.0167058 }, + { "lat": 40.7028880, "lon": -74.0167207 }, + { "lat": 40.7029072, "lon": -74.0167303 }, + { "lat": 40.7029225, "lon": -74.0167312 }, + { "lat": 40.7029388, "lon": -74.0167283 }, + { "lat": 40.7029463, "lon": -74.0167229 }, + { "lat": 40.7029449, "lon": -74.0167557 }, + { "lat": 40.7029436, "lon": -74.0167795 }, + { "lat": 40.7029304, "lon": -74.0167776 }, + { "lat": 40.7029067, "lon": -74.0167806 }, + { "lat": 40.7028938, "lon": -74.0167889 }, + { "lat": 40.7028864, "lon": -74.0168044 }, + { "lat": 40.7028869, "lon": -74.0168282 }, + { "lat": 40.7028850, "lon": -74.0168439 }, + { "lat": 40.7028799, "lon": -74.0168472 }, + { "lat": 40.7028748, "lon": -74.0168506 }, + { "lat": 40.7028672, "lon": -74.0168499 }, + { "lat": 40.7028580, "lon": -74.0168392 }, + { "lat": 40.7028519, "lon": -74.0168244 }, + { "lat": 40.7028504, "lon": -74.0168083 }, + { "lat": 40.7028486, "lon": -74.0167946 }, + { "lat": 40.7028412, "lon": -74.0167842 }, + { "lat": 40.7028324, "lon": -74.0167807 }, + { "lat": 40.7028214, "lon": -74.0167809 }, + { "lat": 40.7028134, "lon": -74.0167873 }, + { "lat": 40.7028051, "lon": -74.0168057 }, + { "lat": 40.7027975, "lon": -74.0168338 }, + { "lat": 40.7027955, "lon": -74.0168493 }, + { "lat": 40.7027935, "lon": -74.0168627 }, + { "lat": 40.7027980, "lon": -74.0168754 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "fine_gravel" + } +}, +{ + "type": "way", + "id": 1186131867, + "bounds": { + "minlat": 40.7724668, + "minlon": -73.9942370, + "maxlat": 40.7729587, + "maxlon": -73.9938339 + }, + "nodes": [ + 11017186429, + 11017186430, + 2044146812, + 246942678, + 11017186429 + ], + "geometry": [ + { "lat": 40.7724668, "lon": -73.9941693 }, + { "lat": 40.7729334, "lon": -73.9938339 }, + { "lat": 40.7729587, "lon": -73.9938950 }, + { "lat": 40.7724949, "lon": -73.9942370 }, + { "lat": 40.7724668, "lon": -73.9941693 } + ], + "tags": { + "access": "no", + "area": "yes", + "highway": "pedestrian", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1186131870, + "bounds": { + "minlat": 40.7685482, + "minlon": -73.9961735, + "maxlat": 40.7687028, + "maxlon": -73.9960793 + }, + "nodes": [ + 11017186431, + 11017186432 + ], + "geometry": [ + { "lat": 40.7687028, "lon": -73.9961735 }, + { "lat": 40.7685482, "lon": -73.9960793 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1186131871, + "bounds": { + "minlat": 40.7680917, + "minlon": -73.9959717, + "maxlat": 40.7682628, + "maxlon": -73.9958486 + }, + "nodes": [ + 11017186434, + 12153915853 + ], + "geometry": [ + { "lat": 40.7682628, "lon": -73.9958486 }, + { "lat": 40.7680917, "lon": -73.9959717 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 1186131872, + "bounds": { + "minlat": 40.7668330, + "minlon": -73.9968877, + "maxlat": 40.7669960, + "maxlon": -73.9967689 + }, + "nodes": [ + 11017186438, + 12153915859 + ], + "geometry": [ + { "lat": 40.7669960, "lon": -73.9967689 }, + { "lat": 40.7668330, "lon": -73.9968877 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 1187395398, + "bounds": { + "minlat": 40.7259990, + "minlon": -73.9326983, + "maxlat": 40.7262560, + "maxlon": -73.9317781 + }, + "nodes": [ + 42509715, + 11026254022, + 11026254024 + ], + "geometry": [ + { "lat": 40.7262560, "lon": -73.9317781 }, + { "lat": 40.7262326, "lon": -73.9318621 }, + { "lat": 40.7259990, "lon": -73.9326983 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1187622115, + "bounds": { + "minlat": 40.7427224, + "minlon": -74.0088277, + "maxlat": 40.7428796, + "maxlon": -74.0087977 + }, + "nodes": [ + 11027819092, + 11027819093 + ], + "geometry": [ + { "lat": 40.7428796, "lon": -74.0087977 }, + { "lat": 40.7427224, "lon": -74.0088277 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1187622116, + "bounds": { + "minlat": 40.7426460, + "minlon": -74.0088432, + "maxlat": 40.7427224, + "maxlon": -74.0088277 + }, + "nodes": [ + 11027819093, + 11027819094 + ], + "geometry": [ + { "lat": 40.7427224, "lon": -74.0088277 }, + { "lat": 40.7426460, "lon": -74.0088432 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "no|not_left|yes|yes", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|through|through|through", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1187622117, + "bounds": { + "minlat": 40.7418214, + "minlon": -74.0088229, + "maxlat": 40.7423282, + "maxlon": -74.0087078 + }, + "nodes": [ + 11027819095, + 402475097, + 593816329, + 11027819091 + ], + "geometry": [ + { "lat": 40.7418214, "lon": -74.0088229 }, + { "lat": 40.7421542, "lon": -74.0087381 }, + { "lat": 40.7422001, "lon": -74.0087268 }, + { "lat": 40.7423282, "lon": -74.0087078 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "through|through|through|right|right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1187625139, + "bounds": { + "minlat": 40.7484639, + "minlon": -74.0073547, + "maxlat": 40.7485815, + "maxlon": -74.0072567 + }, + "nodes": [ + 1701920999, + 12161232233, + 9143569908 + ], + "geometry": [ + { "lat": 40.7485815, "lon": -74.0072567 }, + { "lat": 40.7485237, "lon": -74.0073041 }, + { "lat": 40.7484639, "lon": -74.0073547 } + ], + "tags": { + "change": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1187625140, + "bounds": { + "minlat": 40.7475124, + "minlon": -74.0077514, + "maxlat": 40.7476641, + "maxlon": -74.0077241 + }, + "nodes": [ + 42443677, + 11027928256 + ], + "geometry": [ + { "lat": 40.7475124, "lon": -74.0077514 }, + { "lat": 40.7476641, "lon": -74.0077241 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "yes|yes|not_right|no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "|||right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1187931358, + "bounds": { + "minlat": 40.7035401, + "minlon": -74.0072642, + "maxlat": 40.7036272, + "maxlon": -74.0071679 + }, + "nodes": [ + 6129324449, + 6129324450, + 11030812456 + ], + "geometry": [ + { "lat": 40.7036272, "lon": -74.0072642 }, + { "lat": 40.7035827, "lon": -74.0072150 }, + { "lat": 40.7035401, "lon": -74.0071679 } + ], + "tags": { + "access": "permit", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1187931359, + "bounds": { + "minlat": 40.7033661, + "minlon": -74.0075441, + "maxlat": 40.7034558, + "maxlon": -74.0074481 + }, + "nodes": [ + 11030812457, + 11030812459, + 11030812458 + ], + "geometry": [ + { "lat": 40.7034558, "lon": -74.0075441 }, + { "lat": 40.7034138, "lon": -74.0074991 }, + { "lat": 40.7033661, "lon": -74.0074481 } + ], + "tags": { + "access": "permit", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1187931364, + "bounds": { + "minlat": 40.7036953, + "minlon": -74.0070681, + "maxlat": 40.7038015, + "maxlon": -74.0068974 + }, + "nodes": [ + 11030812472, + 11030812473, + 11030812474, + 11030812475, + 11030812453, + 11030812450, + 11030812476, + 11030812477, + 11030812478, + 11030812479, + 11030812472 + ], + "geometry": [ + { "lat": 40.7037988, "lon": -74.0068974 }, + { "lat": 40.7038015, "lon": -74.0069156 }, + { "lat": 40.7038011, "lon": -74.0069299 }, + { "lat": 40.7037970, "lon": -74.0069399 }, + { "lat": 40.7037762, "lon": -74.0069671 }, + { "lat": 40.7037162, "lon": -74.0070502 }, + { "lat": 40.7037035, "lon": -74.0070668 }, + { "lat": 40.7036989, "lon": -74.0070681 }, + { "lat": 40.7036953, "lon": -74.0070668 }, + { "lat": 40.7037698, "lon": -74.0069447 }, + { "lat": 40.7037988, "lon": -74.0068974 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1187931367, + "bounds": { + "minlat": 40.7033661, + "minlon": -74.0074481, + "maxlat": 40.7035401, + "maxlon": -74.0071679 + }, + "nodes": [ + 11030812456, + 11030812458 + ], + "geometry": [ + { "lat": 40.7035401, "lon": -74.0071679 }, + { "lat": 40.7033661, "lon": -74.0074481 } + ], + "tags": { + "access": "permit", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188026419, + "bounds": { + "minlat": 40.7924998, + "minlon": -73.9279636, + "maxlat": 40.7934824, + "maxlon": -73.9265870 + }, + "nodes": [ + 8193189531, + 11031859364, + 11031859365, + 11031859371, + 11031859370, + 12497646641 + ], + "geometry": [ + { "lat": 40.7924998, "lon": -73.9265870 }, + { "lat": 40.7926324, "lon": -73.9270975 }, + { "lat": 40.7929703, "lon": -73.9278583 }, + { "lat": 40.7932072, "lon": -73.9278359 }, + { "lat": 40.7933528, "lon": -73.9277190 }, + { "lat": 40.7934824, "lon": -73.9279636 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1188026420, + "bounds": { + "minlat": 40.7929824, + "minlon": -73.9274830, + "maxlat": 40.7941165, + "maxlon": -73.9264537 + }, + "nodes": [ + 11031859363, + 11031859373, + 11031859372, + 11031859366, + 11031859367, + 11031859368, + 11031859369 + ], + "geometry": [ + { "lat": 40.7929824, "lon": -73.9267947 }, + { "lat": 40.7930653, "lon": -73.9268153 }, + { "lat": 40.7935632, "lon": -73.9264537 }, + { "lat": 40.7939234, "lon": -73.9272149 }, + { "lat": 40.7939827, "lon": -73.9273418 }, + { "lat": 40.7940377, "lon": -73.9274217 }, + { "lat": 40.7941165, "lon": -73.9274830 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1188070562, + "bounds": { + "minlat": 40.7295516, + "minlon": -73.9883192, + "maxlat": 40.7296388, + "maxlon": -73.9882570 + }, + "nodes": [ + 11032214441, + 11032214440, + 2494246184 + ], + "geometry": [ + { "lat": 40.7296388, "lon": -73.9882570 }, + { "lat": 40.7295747, "lon": -73.9883022 }, + { "lat": 40.7295516, "lon": -73.9883192 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1188140010, + "bounds": { + "minlat": 40.7084301, + "minlon": -73.9997435, + "maxlat": 40.7089213, + "maxlon": -73.9993582 + }, + "nodes": [ + 11032985330, + 11032985352, + 11032985354, + 11032985353, + 11032985355, + 11032985331, + 5175468524, + 11032985332 + ], + "geometry": [ + { "lat": 40.7084301, "lon": -73.9994860 }, + { "lat": 40.7084925, "lon": -73.9993885 }, + { "lat": 40.7085292, "lon": -73.9993582 }, + { "lat": 40.7085751, "lon": -73.9993614 }, + { "lat": 40.7086179, "lon": -73.9993895 }, + { "lat": 40.7086654, "lon": -73.9994283 }, + { "lat": 40.7087309, "lon": -73.9995058 }, + { "lat": 40.7089213, "lon": -73.9997435 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188140017, + "bounds": { + "minlat": 40.7081123, + "minlon": -74.0004521, + "maxlat": 40.7086916, + "maxlon": -73.9999544 + }, + "nodes": [ + 11032985369, + 11032985359 + ], + "geometry": [ + { "lat": 40.7081123, "lon": -73.9999544 }, + { "lat": 40.7086916, "lon": -74.0004521 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188140020, + "bounds": { + "minlat": 40.7080562, + "minlon": -73.9999544, + "maxlat": 40.7081123, + "maxlon": -73.9999156 + }, + "nodes": [ + 12299314859, + 11032985360, + 11032985369 + ], + "geometry": [ + { "lat": 40.7080562, "lon": -73.9999156 }, + { "lat": 40.7081040, "lon": -73.9999473 }, + { "lat": 40.7081123, "lon": -73.9999544 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188140028, + "bounds": { + "minlat": 40.7086529, + "minlon": -73.9991294, + "maxlat": 40.7087692, + "maxlon": -73.9989717 + }, + "nodes": [ + 1754823210, + 11032985420, + 11032985421, + 8279851796, + 11032985422, + 11032985423, + 11032985424, + 8279851795, + 11032985425, + 1754823364, + 1754823210 + ], + "geometry": [ + { "lat": 40.7087692, "lon": -73.9991009 }, + { "lat": 40.7087682, "lon": -73.9991137 }, + { "lat": 40.7087636, "lon": -73.9991243 }, + { "lat": 40.7087570, "lon": -73.9991294 }, + { "lat": 40.7087469, "lon": -73.9991233 }, + { "lat": 40.7087324, "lon": -73.9991062 }, + { "lat": 40.7086564, "lon": -73.9990139 }, + { "lat": 40.7086529, "lon": -73.9989985 }, + { "lat": 40.7086560, "lon": -73.9989828 }, + { "lat": 40.7086611, "lon": -73.9989717 }, + { "lat": 40.7087692, "lon": -73.9991009 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1188167951, + "bounds": { + "minlat": 40.7091366, + "minlon": -73.9886265, + "maxlat": 40.7100426, + "maxlon": -73.9881667 + }, + "nodes": [ + 11033263826, + 2826658205, + 5496610256, + 1827914505, + 1318427673, + 1318427660, + 1318427656, + 166878979, + 1318427655, + 166878978, + 11033263801, + 8310246662, + 11033263802, + 3235899213, + 11033263807, + 3235899214, + 3235899215, + 3235899216, + 11033263865, + 11033263814, + 11033263828, + 11033263829, + 11033263830, + 11033263831, + 11033263832, + 11033263833, + 11033263834, + 11033263835, + 11033263836, + 11033263837, + 11033263838, + 11033263839, + 11033263840, + 11033263841, + 11033263842, + 11033263843, + 11033263844, + 11033263845, + 11033263846, + 11033263847, + 11033263848, + 11033263866, + 11033263909, + 11033263910, + 11033263894, + 11033263898, + 11033263892, + 11033263900, + 11033263890, + 11033263883, + 11033263882, + 11033263881, + 11033263880, + 11033263879, + 11033263886, + 11033263887, + 11033263885, + 11033263884, + 11033263888, + 11033263899, + 11033263889, + 11033263891, + 11033263895, + 11033263896, + 11033263897, + 11033263893, + 11033263901, + 11033263902, + 11033263903, + 11033263904, + 11033263905, + 11033263906, + 11033263907, + 11033263908, + 11033263950, + 11033263934, + 11033263948, + 11033263935, + 11033263949, + 11033263947, + 11033263936, + 11033263825, + 11033263826 + ], + "geometry": [ + { "lat": 40.7092472, "lon": -73.9881793 }, + { "lat": 40.7092384, "lon": -73.9881778 }, + { "lat": 40.7092010, "lon": -73.9881727 }, + { "lat": 40.7091597, "lon": -73.9881667 }, + { "lat": 40.7091377, "lon": -73.9883731 }, + { "lat": 40.7091366, "lon": -73.9884160 }, + { "lat": 40.7091443, "lon": -73.9884526 }, + { "lat": 40.7091618, "lon": -73.9884773 }, + { "lat": 40.7091902, "lon": -73.9884985 }, + { "lat": 40.7098570, "lon": -73.9886265 }, + { "lat": 40.7098634, "lon": -73.9885738 }, + { "lat": 40.7098675, "lon": -73.9885387 }, + { "lat": 40.7098733, "lon": -73.9884968 }, + { "lat": 40.7098854, "lon": -73.9883955 }, + { "lat": 40.7098995, "lon": -73.9884032 }, + { "lat": 40.7099596, "lon": -73.9884027 }, + { "lat": 40.7099758, "lon": -73.9884220 }, + { "lat": 40.7100148, "lon": -73.9884165 }, + { "lat": 40.7100373, "lon": -73.9884354 }, + { "lat": 40.7100404, "lon": -73.9884094 }, + { "lat": 40.7100426, "lon": -73.9883904 }, + { "lat": 40.7100303, "lon": -73.9883798 }, + { "lat": 40.7099981, "lon": -73.9883843 }, + { "lat": 40.7099807, "lon": -73.9883688 }, + { "lat": 40.7099417, "lon": -73.9883778 }, + { "lat": 40.7099228, "lon": -73.9883548 }, + { "lat": 40.7098883, "lon": -73.9883655 }, + { "lat": 40.7098662, "lon": -73.9883477 }, + { "lat": 40.7098366, "lon": -73.9883568 }, + { "lat": 40.7098138, "lon": -73.9883381 }, + { "lat": 40.7097822, "lon": -73.9883446 }, + { "lat": 40.7097592, "lon": -73.9883303 }, + { "lat": 40.7097252, "lon": -73.9883373 }, + { "lat": 40.7097038, "lon": -73.9883177 }, + { "lat": 40.7096689, "lon": -73.9883225 }, + { "lat": 40.7096392, "lon": -73.9883049 }, + { "lat": 40.7096010, "lon": -73.9883132 }, + { "lat": 40.7095727, "lon": -73.9882906 }, + { "lat": 40.7095397, "lon": -73.9882945 }, + { "lat": 40.7094811, "lon": -73.9882754 }, + { "lat": 40.7094637, "lon": -73.9882594 }, + { "lat": 40.7094279, "lon": -73.9882690 }, + { "lat": 40.7094018, "lon": -73.9882760 }, + { "lat": 40.7094434, "lon": -73.9882980 }, + { "lat": 40.7095021, "lon": -73.9883085 }, + { "lat": 40.7095384, "lon": -73.9883279 }, + { "lat": 40.7095671, "lon": -73.9883274 }, + { "lat": 40.7096095, "lon": -73.9883329 }, + { "lat": 40.7096632, "lon": -73.9883519 }, + { "lat": 40.7096927, "lon": -73.9883524 }, + { "lat": 40.7097517, "lon": -73.9883728 }, + { "lat": 40.7097767, "lon": -73.9883708 }, + { "lat": 40.7098100, "lon": -73.9883823 }, + { "lat": 40.7098232, "lon": -73.9885111 }, + { "lat": 40.7097676, "lon": -73.9885161 }, + { "lat": 40.7097676, "lon": -73.9885126 }, + { "lat": 40.7097662, "lon": -73.9884999 }, + { "lat": 40.7096957, "lon": -73.9884846 }, + { "lat": 40.7096961, "lon": -73.9885046 }, + { "lat": 40.7096355, "lon": -73.9884991 }, + { "lat": 40.7096322, "lon": -73.9885166 }, + { "lat": 40.7095372, "lon": -73.9884881 }, + { "lat": 40.7095398, "lon": -73.9884745 }, + { "lat": 40.7095145, "lon": -73.9884642 }, + { "lat": 40.7094861, "lon": -73.9884617 }, + { "lat": 40.7094831, "lon": -73.9884901 }, + { "lat": 40.7093522, "lon": -73.9884472 }, + { "lat": 40.7093617, "lon": -73.9884103 }, + { "lat": 40.7093568, "lon": -73.9884078 }, + { "lat": 40.7093617, "lon": -73.9883853 }, + { "lat": 40.7093572, "lon": -73.9883833 }, + { "lat": 40.7093670, "lon": -73.9883364 }, + { "lat": 40.7093617, "lon": -73.9883334 }, + { "lat": 40.7093715, "lon": -73.9882920 }, + { "lat": 40.7092955, "lon": -73.9883247 }, + { "lat": 40.7092082, "lon": -73.9883622 }, + { "lat": 40.7091849, "lon": -73.9883437 }, + { "lat": 40.7091734, "lon": -73.9883346 }, + { "lat": 40.7091881, "lon": -73.9883062 }, + { "lat": 40.7092175, "lon": -73.9882490 }, + { "lat": 40.7092221, "lon": -73.9882400 }, + { "lat": 40.7092443, "lon": -73.9882139 }, + { "lat": 40.7092472, "lon": -73.9881793 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "Pier 35", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1188352331, + "bounds": { + "minlat": 40.7318696, + "minlon": -74.0102770, + "maxlat": 40.7320194, + "maxlon": -74.0086965 + }, + "nodes": [ + 8288270266, + 42452006, + 8288270269, + 4599130011, + 4872777164, + 42452008 + ], + "geometry": [ + { "lat": 40.7318696, "lon": -74.0086965 }, + { "lat": 40.7318782, "lon": -74.0087960 }, + { "lat": 40.7318868, "lon": -74.0088835 }, + { "lat": 40.7320038, "lon": -74.0100754 }, + { "lat": 40.7320086, "lon": -74.0101340 }, + { "lat": 40.7320194, "lon": -74.0102770 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Barrow Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188382097, + "bounds": { + "minlat": 40.8295615, + "minlon": -73.9722880, + "maxlat": 40.8296210, + "maxlon": -73.9718772 + }, + "nodes": [ + 11035015948, + 11035015950, + 11035015949 + ], + "geometry": [ + { "lat": 40.8295615, "lon": -73.9718772 }, + { "lat": 40.8295795, "lon": -73.9720013 }, + { "lat": 40.8296210, "lon": -73.9722880 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1188486321, + "bounds": { + "minlat": 40.8565907, + "minlon": -73.9823048, + "maxlat": 40.8566214, + "maxlon": -73.9820145 + }, + "nodes": [ + 10752348285, + 10752348292, + 10752348286 + ], + "geometry": [ + { "lat": 40.8566214, "lon": -73.9823048 }, + { "lat": 40.8566085, "lon": -73.9821732 }, + { "lat": 40.8565907, "lon": -73.9820145 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1188631471, + "bounds": { + "minlat": 40.7096393, + "minlon": -74.0000503, + "maxlat": 40.7099533, + "maxlon": -73.9996399 + }, + "nodes": [ + 11037200819, + 11037200822, + 11037200821 + ], + "geometry": [ + { "lat": 40.7096393, "lon": -74.0000503 }, + { "lat": 40.7097833, "lon": -73.9998621 }, + { "lat": 40.7099533, "lon": -73.9996399 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188631472, + "bounds": { + "minlat": 40.7094711, + "minlon": -74.0001305, + "maxlat": 40.7097833, + "maxlon": -73.9997794 + }, + "nodes": [ + 11037200822, + 11037188687, + 11037200825, + 11037200823, + 11037200824, + 12353436223, + 11037188688 + ], + "geometry": [ + { "lat": 40.7097833, "lon": -73.9998621 }, + { "lat": 40.7097399, "lon": -73.9998038 }, + { "lat": 40.7097259, "lon": -73.9997856 }, + { "lat": 40.7097208, "lon": -73.9997794 }, + { "lat": 40.7095187, "lon": -74.0000590 }, + { "lat": 40.7095052, "lon": -74.0000783 }, + { "lat": 40.7094711, "lon": -74.0001305 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1188676813, + "bounds": { + "minlat": 40.7101471, + "minlon": -73.9873005, + "maxlat": 40.7104167, + "maxlon": -73.9872469 + }, + "nodes": [ + 5458548434, + 11037590235, + 11037590238, + 11037590232 + ], + "geometry": [ + { "lat": 40.7101471, "lon": -73.9872469 }, + { "lat": 40.7103316, "lon": -73.9872840 }, + { "lat": 40.7103486, "lon": -73.9872872 }, + { "lat": 40.7104167, "lon": -73.9873005 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188676818, + "bounds": { + "minlat": 40.7104945, + "minlon": -73.9866180, + "maxlat": 40.7106979, + "maxlon": -73.9865861 + }, + "nodes": [ + 42440449, + 8310246581, + 11037590244, + 11037590245 + ], + "geometry": [ + { "lat": 40.7104945, "lon": -73.9865861 }, + { "lat": 40.7105715, "lon": -73.9865985 }, + { "lat": 40.7105876, "lon": -73.9866009 }, + { "lat": 40.7106979, "lon": -73.9866180 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clinton Street", + "name:etymology:wikidata": "Q201646", + "name:ko": "클린턴 스트리트", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188676822, + "bounds": { + "minlat": 40.7099695, + "minlon": -73.9865335, + "maxlat": 40.7102152, + "maxlon": -73.9864835 + }, + "nodes": [ + 11037590250, + 5496610252 + ], + "geometry": [ + { "lat": 40.7099695, "lon": -73.9864835 }, + { "lat": 40.7102152, "lon": -73.9865335 } + ], + "tags": { + "access": "private", + "foot": "no", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188676823, + "bounds": { + "minlat": 40.7099695, + "minlon": -73.9864835, + "maxlat": 40.7100868, + "maxlon": -73.9859019 + }, + "nodes": [ + 11037590250, + 11037590251, + 11037590252, + 11037590253, + 5496610250 + ], + "geometry": [ + { "lat": 40.7099695, "lon": -73.9864835 }, + { "lat": 40.7100294, "lon": -73.9859714 }, + { "lat": 40.7100401, "lon": -73.9859404 }, + { "lat": 40.7100576, "lon": -73.9859165 }, + { "lat": 40.7100868, "lon": -73.9859019 } + ], + "tags": { + "access": "private", + "foot": "no", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188676839, + "bounds": { + "minlat": 40.7102764, + "minlon": -73.9849463, + "maxlat": 40.7104178, + "maxlon": -73.9849217 + }, + "nodes": [ + 5496610249, + 5496610248 + ], + "geometry": [ + { "lat": 40.7102764, "lon": -73.9849217 }, + { "lat": 40.7104178, "lon": -73.9849463 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1188676844, + "bounds": { + "minlat": 40.7103062, + "minlon": -73.9846461, + "maxlat": 40.7104336, + "maxlon": -73.9846220 + }, + "nodes": [ + 436764933, + 5496610264 + ], + "geometry": [ + { "lat": 40.7104336, "lon": -73.9846461 }, + { "lat": 40.7103062, "lon": -73.9846220 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188676855, + "bounds": { + "minlat": 40.7098064, + "minlon": -73.9841296, + "maxlat": 40.7101075, + "maxlon": -73.9837131 + }, + "nodes": [ + 10093647943, + 11037604154, + 11037604152, + 11037604153 + ], + "geometry": [ + { "lat": 40.7101075, "lon": -73.9841296 }, + { "lat": 40.7100285, "lon": -73.9841166 }, + { "lat": 40.7098064, "lon": -73.9840800 }, + { "lat": 40.7098411, "lon": -73.9837131 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188676857, + "bounds": { + "minlat": 40.7091597, + "minlon": -73.9881778, + "maxlat": 40.7100930, + "maxlon": -73.9841868 + }, + "nodes": [ + 10093647944, + 11037604156, + 11037604157, + 11037604155, + 2826658213, + 2826658211, + 6411125201, + 2826658214, + 2826658206, + 3235888520, + 2826658205, + 5496610256, + 1827914505, + 10093647945, + 13842298758, + 10093647944 + ], + "geometry": [ + { "lat": 40.7100930, "lon": -73.9842789 }, + { "lat": 40.7100879, "lon": -73.9843283 }, + { "lat": 40.7100518, "lon": -73.9847138 }, + { "lat": 40.7100430, "lon": -73.9848061 }, + { "lat": 40.7100081, "lon": -73.9847989 }, + { "lat": 40.7099808, "lon": -73.9847943 }, + { "lat": 40.7099896, "lon": -73.9847027 }, + { "lat": 40.7100221, "lon": -73.9843656 }, + { "lat": 40.7096124, "lon": -73.9842974 }, + { "lat": 40.7094711, "lon": -73.9857636 }, + { "lat": 40.7092384, "lon": -73.9881778 }, + { "lat": 40.7092010, "lon": -73.9881727 }, + { "lat": 40.7091597, "lon": -73.9881667 }, + { "lat": 40.7095493, "lon": -73.9841868 }, + { "lat": 40.7100309, "lon": -73.9842684 }, + { "lat": 40.7100930, "lon": -73.9842789 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1188730002, + "bounds": { + "minlat": 40.7107237, + "minlon": -73.9850845, + "maxlat": 40.7130809, + "maxlon": -73.9847040 + }, + "nodes": [ + 42437773, + 11038072095, + 11038072096, + 13841278622, + 11038072621, + 11038072110, + 11038072619, + 11038072109, + 11038072104, + 11038072108, + 11038072198, + 42438529, + 11038072203, + 11038072097, + 11038072107, + 11038072098, + 11038072101, + 11038072099, + 11038072100, + 42438531 + ], + "geometry": [ + { "lat": 40.7130809, "lon": -73.9850618 }, + { "lat": 40.7130070, "lon": -73.9850845 }, + { "lat": 40.7129808, "lon": -73.9850821 }, + { "lat": 40.7128045, "lon": -73.9850563 }, + { "lat": 40.7124190, "lon": -73.9849999 }, + { "lat": 40.7123655, "lon": -73.9849920 }, + { "lat": 40.7123352, "lon": -73.9849876 }, + { "lat": 40.7118114, "lon": -73.9849108 }, + { "lat": 40.7117109, "lon": -73.9848963 }, + { "lat": 40.7116336, "lon": -73.9848849 }, + { "lat": 40.7112893, "lon": -73.9848350 }, + { "lat": 40.7112329, "lon": -73.9848266 }, + { "lat": 40.7111880, "lon": -73.9848202 }, + { "lat": 40.7107899, "lon": -73.9847621 }, + { "lat": 40.7107804, "lon": -73.9847598 }, + { "lat": 40.7107712, "lon": -73.9847576 }, + { "lat": 40.7107573, "lon": -73.9847461 }, + { "lat": 40.7107382, "lon": -73.9847212 }, + { "lat": 40.7107322, "lon": -73.9847128 }, + { "lat": 40.7107237, "lon": -73.9847040 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Montgomery Street", + "name:etymology:wikidata": "Q444947", + "name:ko": "몽고메리 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188730007, + "bounds": { + "minlat": 40.7118029, + "minlon": -73.9848864, + "maxlat": 40.7118270, + "maxlon": -73.9848500 + }, + "nodes": [ + 11038072143, + 11038072165, + 11038072153, + 11038072154, + 11038072164, + 11038072144, + 11038072143 + ], + "geometry": [ + { "lat": 40.7118245, "lon": -73.9848864 }, + { "lat": 40.7118130, "lon": -73.9848848 }, + { "lat": 40.7118029, "lon": -73.9848835 }, + { "lat": 40.7118055, "lon": -73.9848500 }, + { "lat": 40.7118152, "lon": -73.9848514 }, + { "lat": 40.7118270, "lon": -73.9848529 }, + { "lat": 40.7118245, "lon": -73.9848864 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1188730031, + "bounds": { + "minlat": 40.7135572, + "minlon": -73.9851739, + "maxlat": 40.7137488, + "maxlon": -73.9851139 + }, + "nodes": [ + 11038072219, + 11038072220, + 11038072221, + 11038072222, + 11038072237, + 11038072223, + 11038072224, + 11038072225, + 11038072226, + 11038072227, + 11038072228, + 11038072229, + 11038072238, + 11038072230, + 11038072231, + 11038072232, + 11038072219 + ], + "geometry": [ + { "lat": 40.7137481, "lon": -73.9851615 }, + { "lat": 40.7137488, "lon": -73.9851264 }, + { "lat": 40.7137452, "lon": -73.9851192 }, + { "lat": 40.7137383, "lon": -73.9851139 }, + { "lat": 40.7137266, "lon": -73.9851147 }, + { "lat": 40.7137077, "lon": -73.9851159 }, + { "lat": 40.7135619, "lon": -73.9851341 }, + { "lat": 40.7135572, "lon": -73.9851365 }, + { "lat": 40.7135572, "lon": -73.9851442 }, + { "lat": 40.7135594, "lon": -73.9851476 }, + { "lat": 40.7135646, "lon": -73.9851499 }, + { "lat": 40.7137151, "lon": -73.9851714 }, + { "lat": 40.7137265, "lon": -73.9851729 }, + { "lat": 40.7137345, "lon": -73.9851739 }, + { "lat": 40.7137411, "lon": -73.9851731 }, + { "lat": 40.7137459, "lon": -73.9851685 }, + { "lat": 40.7137481, "lon": -73.9851615 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1188730038, + "bounds": { + "minlat": 40.7137264, + "minlon": -73.9852253, + "maxlat": 40.7137882, + "maxlon": -73.9852139 + }, + "nodes": [ + 588455700, + 4491534951 + ], + "geometry": [ + { "lat": 40.7137882, "lon": -73.9852253 }, + { "lat": 40.7137264, "lon": -73.9852139 } + ], + "tags": { + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Montgomery Street", + "name:etymology:wikidata": "Q444947", + "name:ko": "몽고메리 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188730054, + "bounds": { + "minlat": 40.7138569, + "minlon": -73.9851237, + "maxlat": 40.7139065, + "maxlon": -73.9850696 + }, + "nodes": [ + 11038072255, + 11038072275, + 11038072276, + 11038072277, + 11038072278, + 11038072287, + 11038072279, + 11038072254, + 11038072280, + 11038072281, + 11038072282, + 11038072283, + 11038072284, + 11038072285, + 11038072286, + 11038072255 + ], + "geometry": [ + { "lat": 40.7138702, "lon": -73.9851212 }, + { "lat": 40.7139022, "lon": -73.9851115 }, + { "lat": 40.7139060, "lon": -73.9851076 }, + { "lat": 40.7139065, "lon": -73.9851002 }, + { "lat": 40.7139041, "lon": -73.9850751 }, + { "lat": 40.7139019, "lon": -73.9850715 }, + { "lat": 40.7138989, "lon": -73.9850696 }, + { "lat": 40.7138776, "lon": -73.9850753 }, + { "lat": 40.7138636, "lon": -73.9850795 }, + { "lat": 40.7138605, "lon": -73.9850831 }, + { "lat": 40.7138597, "lon": -73.9850909 }, + { "lat": 40.7138569, "lon": -73.9851168 }, + { "lat": 40.7138576, "lon": -73.9851207 }, + { "lat": 40.7138594, "lon": -73.9851232 }, + { "lat": 40.7138632, "lon": -73.9851237 }, + { "lat": 40.7138702, "lon": -73.9851212 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188730055, + "bounds": { + "minlat": 40.7136234, + "minlon": -73.9850446, + "maxlat": 40.7137471, + "maxlon": -73.9849852 + }, + "nodes": [ + 11038072288, + 11038072289, + 11038072290, + 11038072253, + 11038072291, + 11038072292, + 11038072293, + 11038072252, + 11038072294, + 11038072295, + 11038072296, + 11038072288 + ], + "geometry": [ + { "lat": 40.7136267, "lon": -73.9850402 }, + { "lat": 40.7136234, "lon": -73.9849998 }, + { "lat": 40.7136709, "lon": -73.9849943 }, + { "lat": 40.7137269, "lon": -73.9849874 }, + { "lat": 40.7137471, "lon": -73.9849852 }, + { "lat": 40.7137452, "lon": -73.9850052 }, + { "lat": 40.7137383, "lon": -73.9850191 }, + { "lat": 40.7137268, "lon": -73.9850284 }, + { "lat": 40.7137101, "lon": -73.9850348 }, + { "lat": 40.7136353, "lon": -73.9850446 }, + { "lat": 40.7136297, "lon": -73.9850439 }, + { "lat": 40.7136267, "lon": -73.9850402 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188730073, + "bounds": { + "minlat": 40.7145818, + "minlon": -73.9847884, + "maxlat": 40.7146944, + "maxlon": -73.9846779 + }, + "nodes": [ + 11038072319, + 11038072320, + 11038072321, + 11038072322, + 11038072308, + 11038072323, + 11038072324, + 11038072325, + 11038072326, + 11038072327, + 11038072307, + 11038072319 + ], + "geometry": [ + { "lat": 40.7146944, "lon": -73.9847139 }, + { "lat": 40.7146835, "lon": -73.9846817 }, + { "lat": 40.7146795, "lon": -73.9846779 }, + { "lat": 40.7146736, "lon": -73.9846779 }, + { "lat": 40.7146080, "lon": -73.9847221 }, + { "lat": 40.7145975, "lon": -73.9847308 }, + { "lat": 40.7145873, "lon": -73.9847433 }, + { "lat": 40.7145829, "lon": -73.9847606 }, + { "lat": 40.7145818, "lon": -73.9847822 }, + { "lat": 40.7145818, "lon": -73.9847884 }, + { "lat": 40.7146027, "lon": -73.9847747 }, + { "lat": 40.7146944, "lon": -73.9847139 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188730074, + "bounds": { + "minlat": 40.7145836, + "minlon": -73.9846072, + "maxlat": 40.7146638, + "maxlon": -73.9845110 + }, + "nodes": [ + 11038072309, + 11038072328, + 11038072329, + 11038072330, + 11038072331, + 11038072310, + 11038072332, + 11038072333, + 11038072334, + 11038072335, + 11038072309 + ], + "geometry": [ + { "lat": 40.7146222, "lon": -73.9845807 }, + { "lat": 40.7145836, "lon": -73.9846072 }, + { "lat": 40.7145898, "lon": -73.9845562 }, + { "lat": 40.7145924, "lon": -73.9845495 }, + { "lat": 40.7145982, "lon": -73.9845452 }, + { "lat": 40.7146280, "lon": -73.9845263 }, + { "lat": 40.7146521, "lon": -73.9845110 }, + { "lat": 40.7146638, "lon": -73.9845461 }, + { "lat": 40.7146638, "lon": -73.9845514 }, + { "lat": 40.7146601, "lon": -73.9845572 }, + { "lat": 40.7146222, "lon": -73.9845807 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188730075, + "bounds": { + "minlat": 40.7145557, + "minlon": -73.9845436, + "maxlat": 40.7146465, + "maxlon": -73.9844561 + }, + "nodes": [ + 11038072336, + 11038072311, + 11038072337, + 11038072338, + 11038072339, + 11038072340, + 11038072312, + 11038072341, + 11038072342, + 11038072343, + 11038072344, + 11038072302, + 11038072345, + 11038072346, + 11038072303, + 11038072347, + 11038072336 + ], + "geometry": [ + { "lat": 40.7146465, "lon": -73.9844867 }, + { "lat": 40.7146308, "lon": -73.9844957 }, + { "lat": 40.7145640, "lon": -73.9845407 }, + { "lat": 40.7145593, "lon": -73.9845436 }, + { "lat": 40.7145560, "lon": -73.9845399 }, + { "lat": 40.7145557, "lon": -73.9845312 }, + { "lat": 40.7145574, "lon": -73.9845099 }, + { "lat": 40.7145593, "lon": -73.9844911 }, + { "lat": 40.7145609, "lon": -73.9844860 }, + { "lat": 40.7145659, "lon": -73.9844820 }, + { "lat": 40.7146104, "lon": -73.9844561 }, + { "lat": 40.7146144, "lon": -73.9844684 }, + { "lat": 40.7146200, "lon": -73.9844769 }, + { "lat": 40.7146258, "lon": -73.9844834 }, + { "lat": 40.7146312, "lon": -73.9844859 }, + { "lat": 40.7146383, "lon": -73.9844871 }, + { "lat": 40.7146465, "lon": -73.9844867 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188730076, + "bounds": { + "minlat": 40.7143387, + "minlon": -73.9847546, + "maxlat": 40.7144500, + "maxlon": -73.9846442 + }, + "nodes": [ + 11038072348, + 11038072349, + 11038072350, + 11038072351, + 11038072314, + 11038072352, + 11038072353, + 11038072354, + 11038072355, + 11038072313, + 11038072348 + ], + "geometry": [ + { "lat": 40.7143387, "lon": -73.9847182 }, + { "lat": 40.7143517, "lon": -73.9847528 }, + { "lat": 40.7143553, "lon": -73.9847546 }, + { "lat": 40.7143617, "lon": -73.9847539 }, + { "lat": 40.7144244, "lon": -73.9847133 }, + { "lat": 40.7144343, "lon": -73.9847040 }, + { "lat": 40.7144440, "lon": -73.9846883 }, + { "lat": 40.7144473, "lon": -73.9846690 }, + { "lat": 40.7144500, "lon": -73.9846442 }, + { "lat": 40.7144287, "lon": -73.9846596 }, + { "lat": 40.7143387, "lon": -73.9847182 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188730083, + "bounds": { + "minlat": 40.7147078, + "minlon": -73.9835273, + "maxlat": 40.7150320, + "maxlon": -73.9824653 + }, + "nodes": [ + 4375208206, + 11038072381, + 4492750446, + 13518893888, + 7499306200, + 5804713746, + 11038072433, + 5804835282, + 11038072383 + ], + "geometry": [ + { "lat": 40.7147078, "lon": -73.9824653 }, + { "lat": 40.7147453, "lon": -73.9825691 }, + { "lat": 40.7147870, "lon": -73.9826907 }, + { "lat": 40.7148691, "lon": -73.9829729 }, + { "lat": 40.7148703, "lon": -73.9829771 }, + { "lat": 40.7149499, "lon": -73.9832532 }, + { "lat": 40.7149720, "lon": -73.9833262 }, + { "lat": 40.7149950, "lon": -73.9834023 }, + { "lat": 40.7150320, "lon": -73.9835273 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1188730084, + "bounds": { + "minlat": 40.7150320, + "minlon": -73.9842337, + "maxlat": 40.7152425, + "maxlon": -73.9835273 + }, + "nodes": [ + 11038072383, + 12220709961, + 9010154529, + 7499270164, + 42427335 + ], + "geometry": [ + { "lat": 40.7150320, "lon": -73.9835273 }, + { "lat": 40.7151144, "lon": -73.9838048 }, + { "lat": 40.7151832, "lon": -73.9840381 }, + { "lat": 40.7152014, "lon": -73.9840980 }, + { "lat": 40.7152425, "lon": -73.9842337 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|none", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1188730085, + "bounds": { + "minlat": 40.7152425, + "minlon": -73.9847964, + "maxlat": 40.7153962, + "maxlon": -73.9842337 + }, + "nodes": [ + 42427335, + 7499270165, + 11038072384, + 11040029981, + 11038072382 + ], + "geometry": [ + { "lat": 40.7152425, "lon": -73.9842337 }, + { "lat": 40.7152896, "lon": -73.9843884 }, + { "lat": 40.7153270, "lon": -73.9845146 }, + { "lat": 40.7153482, "lon": -73.9846007 }, + { "lat": 40.7153962, "lon": -73.9847964 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1188730086, + "bounds": { + "minlat": 40.7153962, + "minlon": -73.9859641, + "maxlat": 40.7157444, + "maxlon": -73.9847964 + }, + "nodes": [ + 11038072382, + 11038072514, + 3234449577, + 7499271059, + 11038072385, + 11038072389, + 11038072391 + ], + "geometry": [ + { "lat": 40.7153962, "lon": -73.9847964 }, + { "lat": 40.7154669, "lon": -73.9850309 }, + { "lat": 40.7154899, "lon": -73.9851075 }, + { "lat": 40.7155743, "lon": -73.9853831 }, + { "lat": 40.7156510, "lon": -73.9856355 }, + { "lat": 40.7157118, "lon": -73.9858426 }, + { "lat": 40.7157444, "lon": -73.9859641 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1188730090, + "bounds": { + "minlat": 40.7159749, + "minlon": -73.9871216, + "maxlat": 40.7161068, + "maxlon": -73.9866936 + }, + "nodes": [ + 42440408, + 8960350840, + 11040029979, + 11038072399 + ], + "geometry": [ + { "lat": 40.7159749, "lon": -73.9866936 }, + { "lat": 40.7160075, "lon": -73.9867868 }, + { "lat": 40.7160917, "lon": -73.9870706 }, + { "lat": 40.7161068, "lon": -73.9871216 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1188730091, + "bounds": { + "minlat": 40.7161068, + "minlon": -73.9874808, + "maxlat": 40.7161863, + "maxlon": -73.9871216 + }, + "nodes": [ + 11038072399, + 11038072545, + 5804835269 + ], + "geometry": [ + { "lat": 40.7161068, "lon": -73.9871216 }, + { "lat": 40.7161324, "lon": -73.9872319 }, + { "lat": 40.7161863, "lon": -73.9874808 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1188730092, + "bounds": { + "minlat": 40.7161863, + "minlon": -73.9875301, + "maxlat": 40.7162003, + "maxlon": -73.9874808 + }, + "nodes": [ + 42447428, + 5804835269 + ], + "geometry": [ + { "lat": 40.7162003, "lon": -73.9875301 }, + { "lat": 40.7161863, "lon": -73.9874808 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1188730093, + "bounds": { + "minlat": 40.7159286, + "minlon": -73.9874808, + "maxlat": 40.7161863, + "maxlon": -73.9867312 + }, + "nodes": [ + 5804835269, + 11038072546, + 11038072400, + 11038072542, + 11038072541 + ], + "geometry": [ + { "lat": 40.7161863, "lon": -73.9874808 }, + { "lat": 40.7160902, "lon": -73.9872485 }, + { "lat": 40.7160548, "lon": -73.9871496 }, + { "lat": 40.7159624, "lon": -73.9868432 }, + { "lat": 40.7159286, "lon": -73.9867312 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1188730130, + "bounds": { + "minlat": 40.7150056, + "minlon": -73.9843168, + "maxlat": 40.7151099, + "maxlon": -73.9842185 + }, + "nodes": [ + 11038072496, + 11038072495, + 11038072497, + 11038072498, + 11038072499, + 11038072500, + 11038072494, + 11038072501, + 11038072502, + 11038072503, + 11038072496 + ], + "geometry": [ + { "lat": 40.7151048, "lon": -73.9842185 }, + { "lat": 40.7150849, "lon": -73.9842307 }, + { "lat": 40.7150056, "lon": -73.9842792 }, + { "lat": 40.7150182, "lon": -73.9843118 }, + { "lat": 40.7150236, "lon": -73.9843168 }, + { "lat": 40.7150316, "lon": -73.9843146 }, + { "lat": 40.7150967, "lon": -73.9842715 }, + { "lat": 40.7151057, "lon": -73.9842610 }, + { "lat": 40.7151099, "lon": -73.9842466 }, + { "lat": 40.7151099, "lon": -73.9842306 }, + { "lat": 40.7151048, "lon": -73.9842185 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188730152, + "bounds": { + "minlat": 40.7145093, + "minlon": -73.9847081, + "maxlat": 40.7147553, + "maxlon": -73.9845456 + }, + "nodes": [ + 42433554, + 5804713751, + 11038072550 + ], + "geometry": [ + { "lat": 40.7145093, "lon": -73.9847081 }, + { "lat": 40.7146160, "lon": -73.9846431 }, + { "lat": 40.7147553, "lon": -73.9845456 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "track", + "cycleway:both:traffic_mode": "parking", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Samuel Dickstein Plaza", + "name:etymology:wikidata": "Q633827", + "name:ko": "사무엘 딕스타인 플라자", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188739700, + "bounds": { + "minlat": 40.7025230, + "minlon": -73.9907042, + "maxlat": 40.7025594, + "maxlon": -73.9896268 + }, + "nodes": [ + 42499999, + 11945611237, + 2358967551, + 10726079573, + 42500003 + ], + "geometry": [ + { "lat": 40.7025594, "lon": -73.9907042 }, + { "lat": 40.7025569, "lon": -73.9906299 }, + { "lat": 40.7025387, "lon": -73.9900901 }, + { "lat": 40.7025261, "lon": -73.9897189 }, + { "lat": 40.7025230, "lon": -73.9896268 } + ], + "tags": { + "cycleway": "shared_lane", + "cycleway:surface": "paving_stones", + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:name_base": "Front", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1188798594, + "bounds": { + "minlat": 40.8475506, + "minlon": -73.9974677, + "maxlat": 40.8476153, + "maxlon": -73.9974384 + }, + "nodes": [ + 11038649367, + 5898166740 + ], + "geometry": [ + { "lat": 40.8475506, "lon": -73.9974384 }, + { "lat": 40.8476153, "lon": -73.9974677 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1188954617, + "bounds": { + "minlat": 40.7375527, + "minlon": -74.0057088, + "maxlat": 40.7376842, + "maxlon": -74.0056852 + }, + "nodes": [ + 11040029959, + 8307463783, + 42436423 + ], + "geometry": [ + { "lat": 40.7376842, "lon": -74.0056852 }, + { "lat": 40.7376144, "lon": -74.0056977 }, + { "lat": 40.7375527, "lon": -74.0057088 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1188954618, + "bounds": { + "minlat": 40.7132542, + "minlon": -73.9778682, + "maxlat": 40.7133365, + "maxlon": -73.9775923 + }, + "nodes": [ + 11040029985, + 7476429026, + 42423295 + ], + "geometry": [ + { "lat": 40.7133365, "lon": -73.9778682 }, + { "lat": 40.7132751, "lon": -73.9776678 }, + { "lat": 40.7132542, "lon": -73.9775923 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "right", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1188964152, + "bounds": { + "minlat": 40.7134578, + "minlon": -73.9784925, + "maxlat": 40.7135321, + "maxlon": -73.9782576 + }, + "nodes": [ + 9907942851, + 11040080970 + ], + "geometry": [ + { "lat": 40.7135321, "lon": -73.9784925 }, + { "lat": 40.7134578, "lon": -73.9782576 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "right", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1188964942, + "bounds": { + "minlat": 40.7371064, + "minlon": -74.0052750, + "maxlat": 40.7375508, + "maxlon": -74.0047770 + }, + "nodes": [ + 11040080997, + 8307463728, + 42435578 + ], + "geometry": [ + { "lat": 40.7371064, "lon": -74.0052750 }, + { "lat": 40.7374882, "lon": -74.0048471 }, + { "lat": 40.7375508, "lon": -74.0047770 } + ], + "tags": { + "alt_name": "Abingdon Square", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1188982033, + "bounds": { + "minlat": 40.7031814, + "minlon": -74.0103378, + "maxlat": 40.7033138, + "maxlon": -74.0099951 + }, + "nodes": [ + 11040253944, + 11040253945, + 11040253946, + 11040253947, + 11040253948, + 11040253949, + 11040253950, + 11040253951, + 11040253952, + 11040253953, + 11040253925, + 11040253961, + 11040253926, + 11040253928, + 11040253927, + 11040253944 + ], + "geometry": [ + { "lat": 40.7031814, "lon": -74.0103289 }, + { "lat": 40.7032033, "lon": -74.0103378 }, + { "lat": 40.7032421, "lon": -74.0101953 }, + { "lat": 40.7032532, "lon": -74.0101638 }, + { "lat": 40.7032660, "lon": -74.0101343 }, + { "lat": 40.7032897, "lon": -74.0100882 }, + { "lat": 40.7033116, "lon": -74.0100523 }, + { "lat": 40.7033138, "lon": -74.0100415 }, + { "lat": 40.7033127, "lon": -74.0100310 }, + { "lat": 40.7033098, "lon": -74.0099951 }, + { "lat": 40.7032786, "lon": -74.0100464 }, + { "lat": 40.7032685, "lon": -74.0100637 }, + { "lat": 40.7032515, "lon": -74.0100929 }, + { "lat": 40.7032372, "lon": -74.0101260 }, + { "lat": 40.7032260, "lon": -74.0101618 }, + { "lat": 40.7031814, "lon": -74.0103289 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1188982057, + "bounds": { + "minlat": 40.7029874, + "minlon": -74.0105380, + "maxlat": 40.7032173, + "maxlon": -74.0103496 + }, + "nodes": [ + 11040280567, + 11040439586, + 11040280571, + 11040280568, + 11040280569, + 11040280570 + ], + "geometry": [ + { "lat": 40.7029874, "lon": -74.0103496 }, + { "lat": 40.7031037, "lon": -74.0104655 }, + { "lat": 40.7031148, "lon": -74.0104765 }, + { "lat": 40.7031384, "lon": -74.0104987 }, + { "lat": 40.7031674, "lon": -74.0105154 }, + { "lat": 40.7032173, "lon": -74.0105380 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1188989255, + "bounds": { + "minlat": 40.7382343, + "minlon": -73.9742004, + "maxlat": 40.7383122, + "maxlon": -73.9741437 + }, + "nodes": [ + 7888039482, + 11543660378 + ], + "geometry": [ + { "lat": 40.7383122, "lon": -73.9741437 }, + { "lat": 40.7382343, "lon": -73.9742004 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1189000396, + "bounds": { + "minlat": 40.7020473, + "minlon": -74.0101759, + "maxlat": 40.7021971, + "maxlon": -74.0100785 + }, + "nodes": [ + 11040382988, + 12311367991, + 11040382989, + 11040382990, + 42433846 + ], + "geometry": [ + { "lat": 40.7021971, "lon": -74.0101759 }, + { "lat": 40.7021777, "lon": -74.0101701 }, + { "lat": 40.7021178, "lon": -74.0101523 }, + { "lat": 40.7020866, "lon": -74.0101296 }, + { "lat": 40.7020473, "lon": -74.0100785 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1189000442, + "bounds": { + "minlat": 40.7029329, + "minlon": -74.0107473, + "maxlat": 40.7031633, + "maxlon": -74.0106693 + }, + "nodes": [ + 11040439525, + 11040439529, + 11040439587, + 11040439526, + 11040439530, + 11040439527, + 11040439588, + 11040439528 + ], + "geometry": [ + { "lat": 40.7029329, "lon": -74.0106693 }, + { "lat": 40.7029561, "lon": -74.0106756 }, + { "lat": 40.7030279, "lon": -74.0106951 }, + { "lat": 40.7030467, "lon": -74.0107002 }, + { "lat": 40.7030559, "lon": -74.0107030 }, + { "lat": 40.7030704, "lon": -74.0107075 }, + { "lat": 40.7030832, "lon": -74.0107130 }, + { "lat": 40.7031633, "lon": -74.0107473 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1189026382, + "bounds": { + "minlat": 40.7035931, + "minlon": -74.0095839, + "maxlat": 40.7036867, + "maxlon": -74.0094455 + }, + "nodes": [ + 11041048720, + 11041048730, + 11041048721, + 11041048722, + 11041048723, + 11041048724, + 11041048728, + 11041048725, + 11041048726, + 11041048727, + 11041048720 + ], + "geometry": [ + { "lat": 40.7035931, "lon": -74.0095839 }, + { "lat": 40.7036411, "lon": -74.0095129 }, + { "lat": 40.7036867, "lon": -74.0094455 }, + { "lat": 40.7036838, "lon": -74.0094736 }, + { "lat": 40.7036813, "lon": -74.0094860 }, + { "lat": 40.7036780, "lon": -74.0094959 }, + { "lat": 40.7036550, "lon": -74.0095292 }, + { "lat": 40.7036337, "lon": -74.0095600 }, + { "lat": 40.7036269, "lon": -74.0095677 }, + { "lat": 40.7036175, "lon": -74.0095731 }, + { "lat": 40.7035931, "lon": -74.0095839 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1189026386, + "bounds": { + "minlat": 40.7040601, + "minlon": -74.0091807, + "maxlat": 40.7041920, + "maxlon": -74.0090758 + }, + "nodes": [ + 11041048732, + 11041048733, + 11041048734, + 11041048735, + 11041048736, + 10435219283, + 11041048737, + 10435219282, + 11041048738, + 11041048739, + 11041048740, + 11041048741, + 11041048742, + 11041048743, + 11041048744, + 10435219281, + 11041048745, + 11041048746, + 10435219280, + 11041048747, + 11041048732 + ], + "geometry": [ + { "lat": 40.7041891, "lon": -74.0091058 }, + { "lat": 40.7041920, "lon": -74.0091130 }, + { "lat": 40.7041911, "lon": -74.0091412 }, + { "lat": 40.7041635, "lon": -74.0091108 }, + { "lat": 40.7041557, "lon": -74.0091055 }, + { "lat": 40.7041491, "lon": -74.0091033 }, + { "lat": 40.7041401, "lon": -74.0091017 }, + { "lat": 40.7041259, "lon": -74.0091051 }, + { "lat": 40.7041142, "lon": -74.0091127 }, + { "lat": 40.7041018, "lon": -74.0091267 }, + { "lat": 40.7040661, "lon": -74.0091807 }, + { "lat": 40.7040601, "lon": -74.0091195 }, + { "lat": 40.7040615, "lon": -74.0091077 }, + { "lat": 40.7040641, "lon": -74.0090998 }, + { "lat": 40.7040823, "lon": -74.0090872 }, + { "lat": 40.7041038, "lon": -74.0090821 }, + { "lat": 40.7041243, "lon": -74.0090777 }, + { "lat": 40.7041433, "lon": -74.0090758 }, + { "lat": 40.7041623, "lon": -74.0090816 }, + { "lat": 40.7041724, "lon": -74.0090880 }, + { "lat": 40.7041891, "lon": -74.0091058 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1189026389, + "bounds": { + "minlat": 40.7039656, + "minlon": -74.0090252, + "maxlat": 40.7040123, + "maxlon": -74.0089302 + }, + "nodes": [ + 10435219307, + 11041048761, + 11041048762, + 11041048763, + 11041048764, + 10435219306, + 11041048765, + 11041048766, + 10435219304, + 11041048767, + 11041048768, + 11041048769, + 11041048770, + 10435219307 + ], + "geometry": [ + { "lat": 40.7040097, "lon": -74.0089844 }, + { "lat": 40.7039881, "lon": -74.0090216 }, + { "lat": 40.7039818, "lon": -74.0090252 }, + { "lat": 40.7039656, "lon": -74.0090242 }, + { "lat": 40.7039933, "lon": -74.0089797 }, + { "lat": 40.7039958, "lon": -74.0089700 }, + { "lat": 40.7039978, "lon": -74.0089547 }, + { "lat": 40.7039960, "lon": -74.0089406 }, + { "lat": 40.7039925, "lon": -74.0089302 }, + { "lat": 40.7040058, "lon": -74.0089448 }, + { "lat": 40.7040100, "lon": -74.0089541 }, + { "lat": 40.7040120, "lon": -74.0089643 }, + { "lat": 40.7040123, "lon": -74.0089755 }, + { "lat": 40.7040097, "lon": -74.0089844 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1189240273, + "bounds": { + "minlat": 40.8430426, + "minlon": -73.9230926, + "maxlat": 40.8435328, + "maxlon": -73.9229816 + }, + "nodes": [ + 11042951973, + 12163757057, + 60921020 + ], + "geometry": [ + { "lat": 40.8435328, "lon": -73.9230926 }, + { "lat": 40.8431797, "lon": -73.9230355 }, + { "lat": 40.8430426, "lon": -73.9229816 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1189241464, + "bounds": { + "minlat": 40.7050541, + "minlon": -74.0101550, + "maxlat": 40.7051232, + "maxlon": -74.0100262 + }, + "nodes": [ + 11042989741, + 11042989755, + 11042989742, + 11042989743, + 11042989744, + 11042989745, + 11042989756, + 11042989746, + 11042989747, + 11042989748, + 11042989749, + 11042989750, + 11042989751, + 8276468842, + 11042989752, + 11042989753, + 11042989737, + 11042989754, + 11042989741 + ], + "geometry": [ + { "lat": 40.7051125, "lon": -74.0101550 }, + { "lat": 40.7051152, "lon": -74.0101260 }, + { "lat": 40.7051232, "lon": -74.0100404 }, + { "lat": 40.7051215, "lon": -74.0100293 }, + { "lat": 40.7051162, "lon": -74.0100262 }, + { "lat": 40.7051078, "lon": -74.0100307 }, + { "lat": 40.7050759, "lon": -74.0100613 }, + { "lat": 40.7050635, "lon": -74.0100731 }, + { "lat": 40.7050578, "lon": -74.0100824 }, + { "lat": 40.7050541, "lon": -74.0100913 }, + { "lat": 40.7050548, "lon": -74.0101010 }, + { "lat": 40.7050665, "lon": -74.0100961 }, + { "lat": 40.7050793, "lon": -74.0100979 }, + { "lat": 40.7050857, "lon": -74.0101016 }, + { "lat": 40.7050961, "lon": -74.0101094 }, + { "lat": 40.7051031, "lon": -74.0101191 }, + { "lat": 40.7051068, "lon": -74.0101305 }, + { "lat": 40.7051105, "lon": -74.0101404 }, + { "lat": 40.7051125, "lon": -74.0101550 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1189241473, + "bounds": { + "minlat": 40.7052232, + "minlon": -74.0099376, + "maxlat": 40.7052551, + "maxlon": -74.0098788 + }, + "nodes": [ + 11042989761, + 11042989767, + 11042989768, + 11042989769, + 11042989770, + 11042989763, + 11042989771, + 11042989772, + 11042989773, + 11042989774, + 11042989775, + 11042989762, + 11042989776, + 11042989777, + 11042989761 + ], + "geometry": [ + { "lat": 40.7052551, "lon": -74.0099376 }, + { "lat": 40.7052365, "lon": -74.0099366 }, + { "lat": 40.7052277, "lon": -74.0099342 }, + { "lat": 40.7052241, "lon": -74.0099302 }, + { "lat": 40.7052232, "lon": -74.0099243 }, + { "lat": 40.7052247, "lon": -74.0099151 }, + { "lat": 40.7052266, "lon": -74.0098986 }, + { "lat": 40.7052308, "lon": -74.0098905 }, + { "lat": 40.7052443, "lon": -74.0098788 }, + { "lat": 40.7052423, "lon": -74.0098992 }, + { "lat": 40.7052425, "lon": -74.0099132 }, + { "lat": 40.7052434, "lon": -74.0099194 }, + { "lat": 40.7052485, "lon": -74.0099296 }, + { "lat": 40.7052522, "lon": -74.0099345 }, + { "lat": 40.7052551, "lon": -74.0099376 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1189241474, + "bounds": { + "minlat": 40.7051872, + "minlon": -74.0100878, + "maxlat": 40.7052794, + "maxlon": -74.0100128 + }, + "nodes": [ + 11042989739, + 11042989778, + 11042989779, + 11042989780, + 11042989781, + 11042989764, + 11042989782, + 11042989783, + 11042989784, + 11042989785, + 11042989786, + 11042989760, + 11042989787, + 11042989788, + 11042989739 + ], + "geometry": [ + { "lat": 40.7051872, "lon": -74.0100878 }, + { "lat": 40.7051925, "lon": -74.0100425 }, + { "lat": 40.7051967, "lon": -74.0100294 }, + { "lat": 40.7052020, "lon": -74.0100236 }, + { "lat": 40.7052142, "lon": -74.0100192 }, + { "lat": 40.7052229, "lon": -74.0100182 }, + { "lat": 40.7052531, "lon": -74.0100128 }, + { "lat": 40.7052595, "lon": -74.0100163 }, + { "lat": 40.7052648, "lon": -74.0100200 }, + { "lat": 40.7052794, "lon": -74.0100440 }, + { "lat": 40.7052166, "lon": -74.0100557 }, + { "lat": 40.7052066, "lon": -74.0100591 }, + { "lat": 40.7052000, "lon": -74.0100653 }, + { "lat": 40.7051925, "lon": -74.0100761 }, + { "lat": 40.7051872, "lon": -74.0100878 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1189241690, + "bounds": { + "minlat": 40.8373433, + "minlon": -73.9222469, + "maxlat": 40.8375765, + "maxlon": -73.9222345 + }, + "nodes": [ + 11042991210, + 2912071058, + 2912071057 + ], + "geometry": [ + { "lat": 40.8373433, "lon": -73.9222469 }, + { "lat": 40.8374385, "lon": -73.9222428 }, + { "lat": 40.8375765, "lon": -73.9222345 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "Edward L. Grant Highway", + "name:etymology:wikidata": "Q5336080", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Edward L Grant", + "tiger:name_type": "Hwy", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1189271470, + "bounds": { + "minlat": 40.8626143, + "minlon": -73.9648124, + "maxlat": 40.8631023, + "maxlon": -73.9642929 + }, + "nodes": [ + 11043139604, + 11043139602, + 11043139603 + ], + "geometry": [ + { "lat": 40.8631023, "lon": -73.9642929 }, + { "lat": 40.8630738, "lon": -73.9643383 }, + { "lat": 40.8626143, "lon": -73.9648124 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1189271471, + "bounds": { + "minlat": 40.8629956, + "minlon": -73.9642929, + "maxlat": 40.8632066, + "maxlon": -73.9641252 + }, + "nodes": [ + 7373529697, + 11043139604, + 11043153106 + ], + "geometry": [ + { "lat": 40.8632066, "lon": -73.9641735 }, + { "lat": 40.8631023, "lon": -73.9642929 }, + { "lat": 40.8629956, "lon": -73.9641252 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1189271472, + "bounds": { + "minlat": 40.8629956, + "minlon": -73.9641252, + "maxlat": 40.8632215, + "maxlon": -73.9640145 + }, + "nodes": [ + 11043153105, + 11043153106 + ], + "geometry": [ + { "lat": 40.8632215, "lon": -73.9640145 }, + { "lat": 40.8629956, "lon": -73.9641252 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1189271473, + "bounds": { + "minlat": 40.8632066, + "minlon": -73.9641735, + "maxlat": 40.8632678, + "maxlon": -73.9639912 + }, + "nodes": [ + 7373529697, + 11043153109 + ], + "geometry": [ + { "lat": 40.8632066, "lon": -73.9641735 }, + { "lat": 40.8632678, "lon": -73.9639912 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1189284691, + "bounds": { + "minlat": 40.7597703, + "minlon": -73.9670715, + "maxlat": 40.7600623, + "maxlon": -73.9663787 + }, + "nodes": [ + 11043134785, + 5610570649 + ], + "geometry": [ + { "lat": 40.7600623, "lon": -73.9670715 }, + { "lat": 40.7597703, "lon": -73.9663787 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1189300795, + "bounds": { + "minlat": 40.8555128, + "minlon": -73.9830767, + "maxlat": 40.8555756, + "maxlon": -73.9830137 + }, + "nodes": [ + 11043396695, + 11043396694 + ], + "geometry": [ + { "lat": 40.8555128, "lon": -73.9830767 }, + { "lat": 40.8555756, "lon": -73.9830137 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1189300796, + "bounds": { + "minlat": 40.8553842, + "minlon": -73.9833033, + "maxlat": 40.8555128, + "maxlon": -73.9830767 + }, + "nodes": [ + 5362388585, + 5362388584, + 11043396695 + ], + "geometry": [ + { "lat": 40.8553842, "lon": -73.9833033 }, + { "lat": 40.8554872, "lon": -73.9831057 }, + { "lat": 40.8555128, "lon": -73.9830767 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1189567313, + "bounds": { + "minlat": 40.7147078, + "minlon": -73.9867312, + "maxlat": 40.7159286, + "maxlon": -73.9824653 + }, + "nodes": [ + 11038072541, + 11038072519, + 11040080977, + 11038072401, + 11038072513, + 11038072512, + 11038072402, + 11040080976, + 11038072466, + 11038072465, + 11038072464, + 11038072403, + 11038072463, + 42452107, + 11038072462, + 11038072405, + 11038072406, + 11038072407, + 11038072409, + 11038072408, + 4375208206 + ], + "geometry": [ + { "lat": 40.7159286, "lon": -73.9867312 }, + { "lat": 40.7159055, "lon": -73.9866550 }, + { "lat": 40.7158096, "lon": -73.9863378 }, + { "lat": 40.7157959, "lon": -73.9862924 }, + { "lat": 40.7154659, "lon": -73.9852079 }, + { "lat": 40.7154424, "lon": -73.9851305 }, + { "lat": 40.7153461, "lon": -73.9848141 }, + { "lat": 40.7152606, "lon": -73.9845275 }, + { "lat": 40.7152307, "lon": -73.9844271 }, + { "lat": 40.7151841, "lon": -73.9842712 }, + { "lat": 40.7151428, "lon": -73.9841325 }, + { "lat": 40.7151006, "lon": -73.9839913 }, + { "lat": 40.7149349, "lon": -73.9834344 }, + { "lat": 40.7149113, "lon": -73.9833552 }, + { "lat": 40.7148897, "lon": -73.9832838 }, + { "lat": 40.7148373, "lon": -73.9831107 }, + { "lat": 40.7148157, "lon": -73.9830127 }, + { "lat": 40.7147763, "lon": -73.9828152 }, + { "lat": 40.7147534, "lon": -73.9827068 }, + { "lat": 40.7147370, "lon": -73.9826277 }, + { "lat": 40.7147078, "lon": -73.9824653 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1189567314, + "bounds": { + "minlat": 40.7159286, + "minlon": -73.9867312, + "maxlat": 40.7159749, + "maxlon": -73.9866936 + }, + "nodes": [ + 11038072541, + 42440408 + ], + "geometry": [ + { "lat": 40.7159286, "lon": -73.9867312 }, + { "lat": 40.7159749, "lon": -73.9866936 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Clinton Street", + "name:etymology:wikidata": "Q201646", + "name:ko": "클린턴 스트리트", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1189567315, + "bounds": { + "minlat": 40.7160381, + "minlon": -73.9866326, + "maxlat": 40.7168982, + "maxlon": -73.9861940 + }, + "nodes": [ + 11038072396, + 8960350839, + 13247154117, + 42432094 + ], + "geometry": [ + { "lat": 40.7160381, "lon": -73.9866326 }, + { "lat": 40.7160454, "lon": -73.9866273 }, + { "lat": 40.7168409, "lon": -73.9862231 }, + { "lat": 40.7168982, "lon": -73.9861940 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Clinton Street", + "name:etymology:wikidata": "Q201646", + "name:ko": "클린턴 스트리트", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1189585094, + "bounds": { + "minlat": 40.8471937, + "minlon": -73.9833366, + "maxlat": 40.8473329, + "maxlon": -73.9832056 + }, + "nodes": [ + 11046003151, + 11046003150 + ], + "geometry": [ + { "lat": 40.8471937, "lon": -73.9833366 }, + { "lat": 40.8473329, "lon": -73.9832056 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1189763213, + "bounds": { + "minlat": 40.8089688, + "minlon": -74.0020394, + "maxlat": 40.8092906, + "maxlon": -74.0016331 + }, + "nodes": [ + 11047421378, + 11047421379, + 11047421380, + 11047421381, + 11047421382, + 11047421383, + 11047421384, + 11047421385, + 11047421386, + 5481884749 + ], + "geometry": [ + { "lat": 40.8089688, "lon": -74.0017747 }, + { "lat": 40.8091429, "lon": -74.0016419 }, + { "lat": 40.8091719, "lon": -74.0016331 }, + { "lat": 40.8092010, "lon": -74.0016336 }, + { "lat": 40.8092502, "lon": -74.0016986 }, + { "lat": 40.8092906, "lon": -74.0018087 }, + { "lat": 40.8092906, "lon": -74.0018517 }, + { "lat": 40.8092417, "lon": -74.0019139 }, + { "lat": 40.8092161, "lon": -74.0019535 }, + { "lat": 40.8090775, "lon": -74.0020394 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1189768527, + "bounds": { + "minlat": 40.7036503, + "minlon": -74.0073167, + "maxlat": 40.7037285, + "maxlon": -74.0072276 + }, + "nodes": [ + 11047466409, + 11047466411, + 11047466410 + ], + "geometry": [ + { "lat": 40.7037285, "lon": -74.0073167 }, + { "lat": 40.7037075, "lon": -74.0072928 }, + { "lat": 40.7036503, "lon": -74.0072276 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1189768528, + "bounds": { + "minlat": 40.7037077, + "minlon": -74.0077548, + "maxlat": 40.7042387, + "maxlon": -74.0071341 + }, + "nodes": [ + 530018349, + 11047466446, + 11047466407, + 11047466447, + 11030812449, + 11047466448, + 11047466449, + 11047466450, + 11047466451, + 11030812448, + 11047466452, + 11047466453, + 10556966461, + 11047466454, + 11047466455, + 11047466456, + 10556966448, + 11047466457, + 11047466458, + 11047466459, + 530018346, + 2659180621, + 2659180613, + 2659180605, + 2659180594, + 2659180584, + 2659180576, + 2659180566, + 2659180558, + 2659180550, + 2659180545, + 530018349 + ], + "geometry": [ + { "lat": 40.7037662, "lon": -74.0072613 }, + { "lat": 40.7037443, "lon": -74.0072935 }, + { "lat": 40.7037237, "lon": -74.0072666 }, + { "lat": 40.7037077, "lon": -74.0072479 }, + { "lat": 40.7037669, "lon": -74.0071456 }, + { "lat": 40.7037729, "lon": -74.0071384 }, + { "lat": 40.7037810, "lon": -74.0071344 }, + { "lat": 40.7037881, "lon": -74.0071341 }, + { "lat": 40.7037950, "lon": -74.0071363 }, + { "lat": 40.7038005, "lon": -74.0071411 }, + { "lat": 40.7038078, "lon": -74.0071486 }, + { "lat": 40.7038184, "lon": -74.0071602 }, + { "lat": 40.7042340, "lon": -74.0076379 }, + { "lat": 40.7042375, "lon": -74.0076478 }, + { "lat": 40.7042387, "lon": -74.0076588 }, + { "lat": 40.7042373, "lon": -74.0076708 }, + { "lat": 40.7042344, "lon": -74.0076792 }, + { "lat": 40.7042298, "lon": -74.0076883 }, + { "lat": 40.7041834, "lon": -74.0077548 }, + { "lat": 40.7041674, "lon": -74.0077358 }, + { "lat": 40.7041388, "lon": -74.0077019 }, + { "lat": 40.7041085, "lon": -74.0076661 }, + { "lat": 40.7040791, "lon": -74.0076313 }, + { "lat": 40.7040497, "lon": -74.0075965 }, + { "lat": 40.7040202, "lon": -74.0075617 }, + { "lat": 40.7039907, "lon": -74.0075268 }, + { "lat": 40.7039132, "lon": -74.0074351 }, + { "lat": 40.7038838, "lon": -74.0074003 }, + { "lat": 40.7038543, "lon": -74.0073655 }, + { "lat": 40.7038249, "lon": -74.0073307 }, + { "lat": 40.7037954, "lon": -74.0072958 }, + { "lat": 40.7037662, "lon": -74.0072613 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Old Slip Plaza", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1189786348, + "bounds": { + "minlat": 40.8526674, + "minlon": -74.0001367, + "maxlat": 40.8529784, + "maxlon": -73.9998340 + }, + "nodes": [ + 11047655230, + 11047655231, + 11047655232, + 11047655233 + ], + "geometry": [ + { "lat": 40.8529284, "lon": -73.9998340 }, + { "lat": 40.8529784, "lon": -74.0000513 }, + { "lat": 40.8528251, "lon": -74.0001367 }, + { "lat": 40.8526674, "lon": -74.0000004 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1189786349, + "bounds": { + "minlat": 40.8525398, + "minlon": -74.0003361, + "maxlat": 40.8526431, + "maxlon": -74.0000874 + }, + "nodes": [ + 11047655234, + 11047655236, + 11047655235 + ], + "geometry": [ + { "lat": 40.8526431, "lon": -74.0003361 }, + { "lat": 40.8525729, "lon": -74.0001670 }, + { "lat": 40.8525398, "lon": -74.0000874 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1189786350, + "bounds": { + "minlat": 40.8523989, + "minlon": -74.0003234, + "maxlat": 40.8525729, + "maxlon": -74.0001670 + }, + "nodes": [ + 11047655236, + 11047655237 + ], + "geometry": [ + { "lat": 40.8525729, "lon": -74.0001670 }, + { "lat": 40.8523989, "lon": -74.0003234 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1189786351, + "bounds": { + "minlat": 40.8522143, + "minlon": -74.0004274, + "maxlat": 40.8523168, + "maxlon": -74.0003091 + }, + "nodes": [ + 11047655238, + 11047655239, + 11047655240 + ], + "geometry": [ + { "lat": 40.8523168, "lon": -74.0003977 }, + { "lat": 40.8522818, "lon": -74.0004274 }, + { "lat": 40.8522143, "lon": -74.0003091 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1189786352, + "bounds": { + "minlat": 40.8523168, + "minlon": -74.0003977, + "maxlat": 40.8523989, + "maxlon": -74.0003234 + }, + "nodes": [ + 11047655237, + 11047655238 + ], + "geometry": [ + { "lat": 40.8523989, "lon": -74.0003234 }, + { "lat": 40.8523168, "lon": -74.0003977 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1189786353, + "bounds": { + "minlat": 40.8523437, + "minlon": -74.0009005, + "maxlat": 40.8527788, + "maxlon": -74.0004294 + }, + "nodes": [ + 11047655241, + 11047655242, + 11047655243, + 11047655244 + ], + "geometry": [ + { "lat": 40.8523437, "lon": -74.0008127 }, + { "lat": 40.8527339, "lon": -74.0004294 }, + { "lat": 40.8527788, "lon": -74.0005136 }, + { "lat": 40.8523980, "lon": -74.0009005 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1189786354, + "bounds": { + "minlat": 40.8522129, + "minlon": -74.0010340, + "maxlat": 40.8523756, + "maxlon": -74.0008643 + }, + "nodes": [ + 11047655245, + 11047655246 + ], + "geometry": [ + { "lat": 40.8523756, "lon": -74.0008643 }, + { "lat": 40.8522129, "lon": -74.0010340 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1189824345, + "bounds": { + "minlat": 40.7080990, + "minlon": -73.9141770, + "maxlat": 40.7081496, + "maxlon": -73.9141252 + }, + "nodes": [ + 9590434391, + 42827600 + ], + "geometry": [ + { "lat": 40.7081496, "lon": -73.9141252 }, + { "lat": 40.7080990, "lon": -73.9141770 } + ], + "tags": { + "alt_name": "Pauline DeBlonde Way", + "highway": "residential", + "name": "Stockholm Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1189824346, + "bounds": { + "minlat": 40.7091716, + "minlon": -73.9130794, + "maxlat": 40.7092180, + "maxlon": -73.9130320 + }, + "nodes": [ + 42809940, + 9755788828 + ], + "geometry": [ + { "lat": 40.7092180, "lon": -73.9130320 }, + { "lat": 40.7091716, "lon": -73.9130794 } + ], + "tags": { + "alt_name": "Pauline DeBlonde Way", + "highway": "residential", + "name": "Stockholm Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY; Kings, NY", + "tiger:name_base": "Stockholm", + "tiger:name_type": "St", + "tiger:reviewed": "name", + "tiger:zip_left": "11385; 11237", + "tiger:zip_right": "11385; 11237" + } +}, +{ + "type": "way", + "id": 1189989592, + "bounds": { + "minlat": 40.7428568, + "minlon": -74.0086050, + "maxlat": 40.7431598, + "maxlon": -74.0085446 + }, + "nodes": [ + 11049420901, + 12161932057, + 246652740, + 42445769 + ], + "geometry": [ + { "lat": 40.7428568, "lon": -74.0086050 }, + { "lat": 40.7429878, "lon": -74.0085783 }, + { "lat": 40.7430422, "lon": -74.0085672 }, + { "lat": 40.7431598, "lon": -74.0085446 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1190058190, + "bounds": { + "minlat": 40.7034906, + "minlon": -74.0132136, + "maxlat": 40.7035575, + "maxlon": -74.0131477 + }, + "nodes": [ + 11050054047, + 11050054048, + 11050054049, + 11050054050, + 11050054051, + 11050054052, + 11050054053, + 11050054054, + 7685185644, + 7685185645, + 7685185646, + 7685185647, + 11042972597, + 7685185649, + 11050054047 + ], + "geometry": [ + { "lat": 40.7034906, "lon": -74.0131643 }, + { "lat": 40.7035024, "lon": -74.0131496 }, + { "lat": 40.7035064, "lon": -74.0131477 }, + { "lat": 40.7035127, "lon": -74.0131487 }, + { "lat": 40.7035286, "lon": -74.0131534 }, + { "lat": 40.7035391, "lon": -74.0131600 }, + { "lat": 40.7035492, "lon": -74.0131740 }, + { "lat": 40.7035540, "lon": -74.0131869 }, + { "lat": 40.7035575, "lon": -74.0132136 }, + { "lat": 40.7035542, "lon": -74.0132004 }, + { "lat": 40.7035504, "lon": -74.0131900 }, + { "lat": 40.7035438, "lon": -74.0131817 }, + { "lat": 40.7035293, "lon": -74.0131723 }, + { "lat": 40.7035011, "lon": -74.0131666 }, + { "lat": 40.7034906, "lon": -74.0131643 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1190058193, + "bounds": { + "minlat": 40.7035879, + "minlon": -74.0122300, + "maxlat": 40.7037784, + "maxlon": -74.0122291 + }, + "nodes": [ + 11050054089, + 11050101032, + 11050054091, + 11050101031, + 11050054090 + ], + "geometry": [ + { "lat": 40.7035879, "lon": -74.0122300 }, + { "lat": 40.7036169, "lon": -74.0122299 }, + { "lat": 40.7036314, "lon": -74.0122298 }, + { "lat": 40.7036500, "lon": -74.0122298 }, + { "lat": 40.7037784, "lon": -74.0122291 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1190058205, + "bounds": { + "minlat": 40.7036246, + "minlon": -74.0133127, + "maxlat": 40.7043489, + "maxlon": -74.0131689 + }, + "nodes": [ + 7685651611, + 11050101041, + 11050101042, + 11050101043, + 11050101044, + 11050101045, + 11050101046, + 11050054097, + 11050101007, + 11050101047, + 11050101048, + 11050101049, + 11050101050, + 11050101053, + 11050101051, + 7685651604, + 7685651605, + 7685651606, + 11042972595, + 11042972596, + 7685651608, + 7685651610, + 7685651611 + ], + "geometry": [ + { "lat": 40.7036246, "lon": -74.0132477 }, + { "lat": 40.7036261, "lon": -74.0132224 }, + { "lat": 40.7036297, "lon": -74.0132036 }, + { "lat": 40.7036366, "lon": -74.0131851 }, + { "lat": 40.7036480, "lon": -74.0131728 }, + { "lat": 40.7036578, "lon": -74.0131692 }, + { "lat": 40.7036711, "lon": -74.0131689 }, + { "lat": 40.7039818, "lon": -74.0132263 }, + { "lat": 40.7041022, "lon": -74.0132447 }, + { "lat": 40.7043327, "lon": -74.0132808 }, + { "lat": 40.7043370, "lon": -74.0132837 }, + { "lat": 40.7043395, "lon": -74.0132890 }, + { "lat": 40.7043489, "lon": -74.0133127 }, + { "lat": 40.7041001, "lon": -74.0132719 }, + { "lat": 40.7039794, "lon": -74.0132520 }, + { "lat": 40.7036825, "lon": -74.0132033 }, + { "lat": 40.7036653, "lon": -74.0131999 }, + { "lat": 40.7036547, "lon": -74.0132003 }, + { "lat": 40.7036430, "lon": -74.0132078 }, + { "lat": 40.7036361, "lon": -74.0132145 }, + { "lat": 40.7036309, "lon": -74.0132230 }, + { "lat": 40.7036260, "lon": -74.0132365 }, + { "lat": 40.7036246, "lon": -74.0132477 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1190058232, + "bounds": { + "minlat": 40.7044746, + "minlon": -74.0133622, + "maxlat": 40.7046559, + "maxlon": -74.0133109 + }, + "nodes": [ + 7685525967, + 11050101102, + 11050101103, + 11050101104, + 11050101108, + 11050101105, + 11050101106, + 11050101107, + 7685525970, + 7685525969, + 7685525967 + ], + "geometry": [ + { "lat": 40.7046559, "lon": -74.0133622 }, + { "lat": 40.7046328, "lon": -74.0133398 }, + { "lat": 40.7046240, "lon": -74.0133335 }, + { "lat": 40.7046090, "lon": -74.0133304 }, + { "lat": 40.7045783, "lon": -74.0133256 }, + { "lat": 40.7044984, "lon": -74.0133109 }, + { "lat": 40.7044918, "lon": -74.0133122 }, + { "lat": 40.7044746, "lon": -74.0133334 }, + { "lat": 40.7045151, "lon": -74.0133401 }, + { "lat": 40.7045757, "lon": -74.0133502 }, + { "lat": 40.7046559, "lon": -74.0133622 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1190058275, + "bounds": { + "minlat": 40.7049939, + "minlon": -74.0115415, + "maxlat": 40.7051376, + "maxlon": -74.0115211 + }, + "nodes": [ + 42431868, + 8276468872, + 11053136346, + 8276468868, + 11050101247 + ], + "geometry": [ + { "lat": 40.7049939, "lon": -74.0115415 }, + { "lat": 40.7050011, "lon": -74.0115404 }, + { "lat": 40.7050435, "lon": -74.0115347 }, + { "lat": 40.7050593, "lon": -74.0115326 }, + { "lat": 40.7051376, "lon": -74.0115211 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broad Street", + "name:ko": "브로드 스트리트", + "name:ru": "Брод-стрит", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broad", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q2613951", + "wikipedia": "en:Broad Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1190058297, + "bounds": { + "minlat": 40.7031496, + "minlon": -74.0131187, + "maxlat": 40.7032034, + "maxlon": -74.0130808 + }, + "nodes": [ + 7685185656, + 11050101309, + 11050101310, + 11050101311, + 11050101317, + 11050101312, + 11050101313, + 11050101314, + 11050101315, + 11050101316, + 7685185651, + 7685185652, + 7685185653, + 7685185654, + 7685185655, + 7685185656 + ], + "geometry": [ + { "lat": 40.7031496, "lon": -74.0131187 }, + { "lat": 40.7031512, "lon": -74.0131054 }, + { "lat": 40.7031554, "lon": -74.0130953 }, + { "lat": 40.7031633, "lon": -74.0130858 }, + { "lat": 40.7031739, "lon": -74.0130815 }, + { "lat": 40.7031846, "lon": -74.0130808 }, + { "lat": 40.7031939, "lon": -74.0130819 }, + { "lat": 40.7031997, "lon": -74.0130834 }, + { "lat": 40.7032015, "lon": -74.0130868 }, + { "lat": 40.7032034, "lon": -74.0131007 }, + { "lat": 40.7031826, "lon": -74.0130957 }, + { "lat": 40.7031724, "lon": -74.0130945 }, + { "lat": 40.7031658, "lon": -74.0130962 }, + { "lat": 40.7031572, "lon": -74.0131032 }, + { "lat": 40.7031523, "lon": -74.0131116 }, + { "lat": 40.7031496, "lon": -74.0131187 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1190058305, + "bounds": { + "minlat": 40.7050628, + "minlon": -74.0133166, + "maxlat": 40.7051279, + "maxlon": -74.0132028 + }, + "nodes": [ + 10316226117, + 10316226188, + 10316226187, + 10316226118, + 10316226119, + 10316226189, + 10316226190, + 10316226120, + 10316226121, + 11050101344, + 10316226180, + 11050101345, + 11050101346, + 11050101347, + 11050101348, + 11050101349, + 10316226094, + 11050101350, + 11050101351, + 11050101352, + 10316226117 + ], + "geometry": [ + { "lat": 40.7051279, "lon": -74.0132904 }, + { "lat": 40.7051254, "lon": -74.0133001 }, + { "lat": 40.7051221, "lon": -74.0133060 }, + { "lat": 40.7051166, "lon": -74.0133120 }, + { "lat": 40.7051088, "lon": -74.0133159 }, + { "lat": 40.7050951, "lon": -74.0133166 }, + { "lat": 40.7050807, "lon": -74.0133116 }, + { "lat": 40.7050717, "lon": -74.0133045 }, + { "lat": 40.7050673, "lon": -74.0132979 }, + { "lat": 40.7050650, "lon": -74.0132862 }, + { "lat": 40.7050638, "lon": -74.0132552 }, + { "lat": 40.7050628, "lon": -74.0132294 }, + { "lat": 40.7050667, "lon": -74.0132153 }, + { "lat": 40.7050727, "lon": -74.0132066 }, + { "lat": 40.7050834, "lon": -74.0132028 }, + { "lat": 40.7050847, "lon": -74.0132483 }, + { "lat": 40.7050864, "lon": -74.0132611 }, + { "lat": 40.7050905, "lon": -74.0132720 }, + { "lat": 40.7050984, "lon": -74.0132830 }, + { "lat": 40.7051106, "lon": -74.0132891 }, + { "lat": 40.7051279, "lon": -74.0132904 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1190083811, + "bounds": { + "minlat": 40.7539189, + "minlon": -73.9077222, + "maxlat": 40.7539661, + "maxlon": -73.9072624 + }, + "nodes": [ + 11050273996, + 11050273995, + 11050273994 + ], + "geometry": [ + { "lat": 40.7539661, "lon": -73.9072624 }, + { "lat": 40.7539283, "lon": -73.9076381 }, + { "lat": 40.7539189, "lon": -73.9077222 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1190104680, + "bounds": { + "minlat": 40.8526058, + "minlon": -74.0195296, + "maxlat": 40.8534085, + "maxlon": -74.0190131 + }, + "nodes": [ + 11050468958, + 11050468959, + 11050468960, + 11050468961, + 11050468962, + 11050468963 + ], + "geometry": [ + { "lat": 40.8526058, "lon": -74.0195296 }, + { "lat": 40.8529560, "lon": -74.0193936 }, + { "lat": 40.8529788, "lon": -74.0193556 }, + { "lat": 40.8529766, "lon": -74.0192324 }, + { "lat": 40.8529949, "lon": -74.0191836 }, + { "lat": 40.8534085, "lon": -74.0190131 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1190239145, + "bounds": { + "minlat": 40.7054040, + "minlon": -74.0133394, + "maxlat": 40.7056792, + "maxlon": -74.0132705 + }, + "nodes": [ + 10316226114, + 11051593212, + 11051593213, + 11051593214, + 11051593215, + 10316226105, + 10316226106, + 10316226107, + 10316226108, + 10316226110, + 10316226111, + 10316226112, + 10316226113, + 10316226114 + ], + "geometry": [ + { "lat": 40.7054040, "lon": -74.0133174 }, + { "lat": 40.7054415, "lon": -74.0133170 }, + { "lat": 40.7055077, "lon": -74.0133144 }, + { "lat": 40.7055694, "lon": -74.0133048 }, + { "lat": 40.7056256, "lon": -74.0132895 }, + { "lat": 40.7056792, "lon": -74.0132705 }, + { "lat": 40.7056566, "lon": -74.0132979 }, + { "lat": 40.7056418, "lon": -74.0133062 }, + { "lat": 40.7056122, "lon": -74.0133166 }, + { "lat": 40.7055227, "lon": -74.0133357 }, + { "lat": 40.7054368, "lon": -74.0133386 }, + { "lat": 40.7054204, "lon": -74.0133394 }, + { "lat": 40.7054144, "lon": -74.0133353 }, + { "lat": 40.7054040, "lon": -74.0133174 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1190239151, + "bounds": { + "minlat": 40.7072796, + "minlon": -74.0120196, + "maxlat": 40.7077749, + "maxlon": -74.0116213 + }, + "nodes": [ + 11051593236, + 10301699326, + 10301699137, + 10301699160, + 11051778515, + 11051593243, + 10301699161, + 11051593237, + 11051593238, + 11051593244, + 11051593245, + 11051593239, + 11051593240, + 11051593247, + 11051593246, + 11051593241, + 11051593242, + 11051593236 + ], + "geometry": [ + { "lat": 40.7072796, "lon": -74.0120196 }, + { "lat": 40.7074011, "lon": -74.0119224 }, + { "lat": 40.7074780, "lon": -74.0118575 }, + { "lat": 40.7076610, "lon": -74.0117071 }, + { "lat": 40.7076730, "lon": -74.0116971 }, + { "lat": 40.7077322, "lon": -74.0116479 }, + { "lat": 40.7077603, "lon": -74.0116246 }, + { "lat": 40.7077657, "lon": -74.0116242 }, + { "lat": 40.7077749, "lon": -74.0116213 }, + { "lat": 40.7077638, "lon": -74.0116319 }, + { "lat": 40.7077368, "lon": -74.0116573 }, + { "lat": 40.7076682, "lon": -74.0117220 }, + { "lat": 40.7075145, "lon": -74.0118557 }, + { "lat": 40.7074875, "lon": -74.0118787 }, + { "lat": 40.7074113, "lon": -74.0119437 }, + { "lat": 40.7073941, "lon": -74.0119583 }, + { "lat": 40.7073774, "lon": -74.0119702 }, + { "lat": 40.7072796, "lon": -74.0120196 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1190239158, + "bounds": { + "minlat": 40.7077322, + "minlon": -74.0117237, + "maxlat": 40.7077691, + "maxlon": -74.0116479 + }, + "nodes": [ + 42428370, + 11051593259, + 11051593245, + 11051593243 + ], + "geometry": [ + { "lat": 40.7077691, "lon": -74.0117237 }, + { "lat": 40.7077426, "lon": -74.0116693 }, + { "lat": 40.7077368, "lon": -74.0116573 }, + { "lat": 40.7077322, "lon": -74.0116479 } + ], + "tags": { + "access": "permit", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "permit", + "name": "Wall Street", + "name:en": "Wall Street", + "name:etymology:wikidata": "Q106706881", + "name:ko": "월 스트리트", + "name:ru": "Уолл-стрит", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q11690", + "wikipedia": "en:Wall Street" + } +}, +{ + "type": "way", + "id": 1190239159, + "bounds": { + "minlat": 40.7071961, + "minlon": -74.0112941, + "maxlat": 40.7075343, + "maxlon": -74.0107892 + }, + "nodes": [ + 11051593261, + 11051778447, + 42453895, + 1279337145, + 11051778418, + 11051773179 + ], + "geometry": [ + { "lat": 40.7075343, "lon": -74.0112941 }, + { "lat": 40.7075276, "lon": -74.0112832 }, + { "lat": 40.7075080, "lon": -74.0112513 }, + { "lat": 40.7074707, "lon": -74.0111934 }, + { "lat": 40.7072326, "lon": -74.0108430 }, + { "lat": 40.7071961, "lon": -74.0107892 } + ], + "tags": { + "access": "private", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Wall Street", + "name:en": "Wall Street", + "name:etymology:wikidata": "Q106706881", + "name:ja": "ウォールストリート", + "name:ko": "월 스트리트", + "name:ru": "Уолл-стрит", + "name:zh": "华尔街", + "oneway": "no", + "sidewalk": "both", + "surface": "sett", + "wikidata": "Q11690", + "wikipedia": "en:Wall Street" + } +}, +{ + "type": "way", + "id": 1190239185, + "bounds": { + "minlat": 40.7119042, + "minlon": -74.0081342, + "maxlat": 40.7119884, + "maxlon": -74.0080524 + }, + "nodes": [ + 272195277, + 10290401138, + 272195270 + ], + "geometry": [ + { "lat": 40.7119042, "lon": -74.0080524 }, + { "lat": 40.7119475, "lon": -74.0080954 }, + { "lat": 40.7119884, "lon": -74.0081342 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 1190258164, + "bounds": { + "minlat": 40.7062780, + "minlon": -74.0113467, + "maxlat": 40.7063304, + "maxlon": -74.0111879 + }, + "nodes": [ + 42431861, + 11051773162, + 8276468865, + 11051773159 + ], + "geometry": [ + { "lat": 40.7062780, "lon": -74.0111879 }, + { "lat": 40.7062936, "lon": -74.0112408 }, + { "lat": 40.7063168, "lon": -74.0113127 }, + { "lat": 40.7063304, "lon": -74.0113467 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "destination", + "name": "Exchange Place", + "name:etymology:wikidata": "Q1097619", + "name:ko": "익스체인지 플레이스", + "name:ru": "Эксчейндж-Плейс", + "oneway": "yes", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Exchange", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q13578686", + "wikipedia": "en:Exchange Place (Manhattan)" + } +}, +{ + "type": "way", + "id": 1190258165, + "bounds": { + "minlat": 40.7067926, + "minlon": -74.0125292, + "maxlat": 40.7067956, + "maxlon": -74.0124181 + }, + "nodes": [ + 42428366, + 10316225994, + 11051773154 + ], + "geometry": [ + { "lat": 40.7067932, "lon": -74.0125292 }, + { "lat": 40.7067956, "lon": -74.0124693 }, + { "lat": 40.7067926, "lon": -74.0124181 } + ], + "tags": { + "access": "permit", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "Exchange Place", + "name:etymology:wikidata": "Q1097619", + "name:ko": "익스체인지 플레이스", + "name:ru": "Эксчейндж-Плейс", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Exchange", + "tiger:name_type": "Pl", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q13578686", + "wikipedia": "en:Exchange Place (Manhattan)" + } +}, +{ + "type": "way", + "id": 1190258166, + "bounds": { + "minlat": 40.7067932, + "minlon": -74.0126086, + "maxlat": 40.7068126, + "maxlon": -74.0125292 + }, + "nodes": [ + 11051773160, + 7335430600, + 10316226230, + 10316225993, + 42428366 + ], + "geometry": [ + { "lat": 40.7068126, "lon": -74.0126086 }, + { "lat": 40.7068054, "lon": -74.0125922 }, + { "lat": 40.7067994, "lon": -74.0125697 }, + { "lat": 40.7067966, "lon": -74.0125593 }, + { "lat": 40.7067932, "lon": -74.0125292 } + ], + "tags": { + "bicycle": "yes", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "Exchange Alley", + "name:etymology:wikidata": "Q1097619", + "name:ko": "익스체인지 플라자", + "name_1": "Exchange Plaza", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Exchange", + "tiger:name_base_1": "Exchange", + "tiger:name_type": "Aly", + "tiger:name_type_1": "Plz", + "tiger:reviewed": "no", + "tiger:zip_left": "10006", + "tiger:zip_right": "10006" + } +}, +{ + "type": "way", + "id": 1190258167, + "bounds": { + "minlat": 40.7065553, + "minlon": -74.0118707, + "maxlat": 40.7074628, + "maxlon": -74.0112910 + }, + "nodes": [ + 11051773181, + 11051778446, + 11051778435, + 42432683 + ], + "geometry": [ + { "lat": 40.7074628, "lon": -74.0112910 }, + { "lat": 40.7066377, "lon": -74.0118181 }, + { "lat": 40.7065897, "lon": -74.0118488 }, + { "lat": 40.7065553, "lon": -74.0118707 } + ], + "tags": { + "access": "private", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "name": "New Street", + "name:ko": "뉴 스트리트", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1190258168, + "bounds": { + "minlat": 40.7065553, + "minlon": -74.0119212, + "maxlat": 40.7065770, + "maxlon": -74.0118707 + }, + "nodes": [ + 11051773153, + 42432683 + ], + "geometry": [ + { "lat": 40.7065770, "lon": -74.0119212 }, + { "lat": 40.7065553, "lon": -74.0118707 } + ], + "tags": { + "access": "permit", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "Exchange Place", + "name:etymology:wikidata": "Q1097619", + "name:ko": "익스체인지 플레이스", + "name:ru": "Эксчейндж-Плейс", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Exchange", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q13578686", + "wikipedia": "en:Exchange Place (Manhattan)" + } +}, +{ + "type": "way", + "id": 1190258169, + "bounds": { + "minlat": 40.7058008, + "minlon": -74.0102113, + "maxlat": 40.7059306, + "maxlon": -74.0098642 + }, + "nodes": [ + 11051773166, + 10593159465, + 8276468862, + 11051851545, + 42432679 + ], + "geometry": [ + { "lat": 40.7059306, "lon": -74.0102113 }, + { "lat": 40.7058397, "lon": -74.0099681 }, + { "lat": 40.7058182, "lon": -74.0099113 }, + { "lat": 40.7058150, "lon": -74.0099023 }, + { "lat": 40.7058008, "lon": -74.0098642 } + ], + "tags": { + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Exchange Place", + "name:etymology:wikidata": "Q1097619", + "name:ko": "익스체인지 플레이스", + "name:ru": "Эксчейндж-Плейс", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Exchange", + "tiger:name_type": "Pl", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q13578686", + "wikipedia": "en:Exchange Place (Manhattan)" + } +}, +{ + "type": "way", + "id": 1190258170, + "bounds": { + "minlat": 40.7062397, + "minlon": -74.0111879, + "maxlat": 40.7062780, + "maxlon": -74.0110376 + }, + "nodes": [ + 42431861, + 11051851535, + 8276468860, + 11051773161 + ], + "geometry": [ + { "lat": 40.7062780, "lon": -74.0111879 }, + { "lat": 40.7062618, "lon": -74.0111139 }, + { "lat": 40.7062533, "lon": -74.0110801 }, + { "lat": 40.7062397, "lon": -74.0110376 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "destination", + "name": "Exchange Place", + "name:etymology:wikidata": "Q1097619", + "name:ko": "익스체인지 플레이스", + "name:ru": "Эксчейндж-Плейс", + "oneway": "yes", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Exchange", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "wikidata": "Q13578686", + "wikipedia": "en:Exchange Place (Manhattan)" + } +}, +{ + "type": "way", + "id": 1190258171, + "bounds": { + "minlat": 40.7074628, + "minlon": -74.0112910, + "maxlat": 40.7075080, + "maxlon": -74.0112513 + }, + "nodes": [ + 42453895, + 11051778453, + 11051778454, + 11051773181 + ], + "geometry": [ + { "lat": 40.7075080, "lon": -74.0112513 }, + { "lat": 40.7074880, "lon": -74.0112702 }, + { "lat": 40.7074759, "lon": -74.0112806 }, + { "lat": 40.7074628, "lon": -74.0112910 } + ], + "tags": { + "access": "private", + "highway": "pedestrian", + "lit": "yes", + "name": "New Street", + "name:ko": "뉴 스트리트", + "oneway": "yes", + "sidewalk": "both", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1190258172, + "bounds": { + "minlat": 40.7071567, + "minlon": -74.0107892, + "maxlat": 40.7071961, + "maxlon": -74.0107312 + }, + "nodes": [ + 11051773179, + 11051778416, + 1693014452 + ], + "geometry": [ + { "lat": 40.7071961, "lon": -74.0107892 }, + { "lat": 40.7071879, "lon": -74.0107771 }, + { "lat": 40.7071567, "lon": -74.0107312 } + ], + "tags": { + "access": "private", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "name": "Wall Street", + "name:en": "Wall Street", + "name:etymology:wikidata": "Q106706881", + "name:ja": "ウォールストリート", + "name:ko": "월 스트리트", + "name:ru": "Уолл-стрит", + "name:zh": "华尔街", + "oneway": "no", + "sidewalk": "both", + "surface": "sett", + "wikidata": "Q11690", + "wikipedia": "en:Wall Street" + } +}, +{ + "type": "way", + "id": 1190266855, + "bounds": { + "minlat": 40.7063780, + "minlon": -74.0095707, + "maxlat": 40.7064224, + "maxlon": -74.0094998 + }, + "nodes": [ + 11051851639, + 8276468861, + 11053136337, + 42448578 + ], + "geometry": [ + { "lat": 40.7064224, "lon": -74.0095707 }, + { "lat": 40.7064067, "lon": -74.0095457 }, + { "lat": 40.7064022, "lon": -74.0095386 }, + { "lat": 40.7063780, "lon": -74.0094998 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "destination", + "name": "Wall Street", + "name:en": "Wall Street", + "name:etymology:wikidata": "Q106706881", + "name:ja": "ウォールストリート", + "name:ko": "월 스트리트", + "name:ru": "Уолл-стрит", + "name:zh": "华尔街", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wall", + "tiger:name_type": "St", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "wikidata": "Q11690", + "wikipedia": "en:Wall Street" + } +}, +{ + "type": "way", + "id": 1190266856, + "bounds": { + "minlat": 40.7071202, + "minlon": -74.0107312, + "maxlat": 40.7071567, + "maxlon": -74.0106735 + }, + "nodes": [ + 1693014452, + 42431858 + ], + "geometry": [ + { "lat": 40.7071567, "lon": -74.0107312 }, + { "lat": 40.7071202, "lon": -74.0106735 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "destination", + "name": "Wall Street", + "name:en": "Wall Street", + "name:etymology:wikidata": "Q106706881", + "name:ja": "ウォールストリート", + "name:ko": "월 스트리트", + "name:ru": "Уолл-стрит", + "name:zh": "华尔街", + "oneway": "no", + "sidewalk": "both", + "surface": "sett", + "wikidata": "Q11690", + "wikipedia": "en:Wall Street" + } +}, +{ + "type": "way", + "id": 1190403000, + "bounds": { + "minlat": 40.7074445, + "minlon": -74.0104542, + "maxlat": 40.7075149, + "maxlon": -74.0103865 + }, + "nodes": [ + 11053134857, + 493889629 + ], + "geometry": [ + { "lat": 40.7074445, "lon": -74.0104542 }, + { "lat": 40.7075149, "lon": -74.0103865 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "foot": "yes", + "highway": "pedestrian", + "maxspeed": "20 mph", + "motor_vehicle": "destination", + "name": "Nassau Street", + "name:etymology:wikidata": "Q155483", + "name:ko": "나사우 스트리트", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2597808", + "wikipedia": "en:Nassau Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1190561550, + "bounds": { + "minlat": 40.8421132, + "minlon": -73.9231372, + "maxlat": 40.8422417, + "maxlon": -73.9230384 + }, + "nodes": [ + 11054511868, + 11054511869 + ], + "geometry": [ + { "lat": 40.8422417, "lon": -73.9230384 }, + { "lat": 40.8421132, "lon": -73.9231372 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1190561551, + "bounds": { + "minlat": 40.8422417, + "minlon": -73.9230384, + "maxlat": 40.8423624, + "maxlon": -73.9229467 + }, + "nodes": [ + 7442778114, + 11054511868 + ], + "geometry": [ + { "lat": 40.8423624, "lon": -73.9229467 }, + { "lat": 40.8422417, "lon": -73.9230384 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1190610325, + "bounds": { + "minlat": 40.7690271, + "minlon": -73.9912614, + "maxlat": 40.7691555, + "maxlon": -73.9911658 + }, + "nodes": [ + 5481877867, + 5481877870 + ], + "geometry": [ + { "lat": 40.7691555, "lon": -73.9911658 }, + { "lat": 40.7690271, "lon": -73.9912614 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1190626379, + "bounds": { + "minlat": 40.7078446, + "minlon": -73.9568324, + "maxlat": 40.7078790, + "maxlon": -73.9568080 + }, + "nodes": [ + 11055051873, + 42474681 + ], + "geometry": [ + { "lat": 40.7078446, "lon": -73.9568324 }, + { "lat": 40.7078790, "lon": -73.9568080 } + ], + "tags": { + "covered": "yes", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1190626380, + "bounds": { + "minlat": 40.7079556, + "minlon": -73.9567629, + "maxlat": 40.7080169, + "maxlon": -73.9567281 + }, + "nodes": [ + 11055051872, + 42505402 + ], + "geometry": [ + { "lat": 40.7079556, "lon": -73.9567629 }, + { "lat": 40.7080169, "lon": -73.9567281 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1190627387, + "bounds": { + "minlat": 40.7078790, + "minlon": -73.9568937, + "maxlat": 40.7078892, + "maxlon": -73.9568080 + }, + "nodes": [ + 42474681, + 11055055718 + ], + "geometry": [ + { "lat": 40.7078790, "lon": -73.9568080 }, + { "lat": 40.7078892, "lon": -73.9568937 } + ], + "tags": { + "covered": "yes", + "highway": "residential", + "name": "South 9th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "9th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1190627388, + "bounds": { + "minlat": 40.7078693, + "minlon": -73.9568080, + "maxlat": 40.7078790, + "maxlon": -73.9567263 + }, + "nodes": [ + 42474681, + 9776829402, + 11055055719 + ], + "geometry": [ + { "lat": 40.7078790, "lon": -73.9568080 }, + { "lat": 40.7078705, "lon": -73.9567352 }, + { "lat": 40.7078693, "lon": -73.9567263 } + ], + "tags": { + "covered": "yes", + "highway": "pedestrian", + "name": "South 9th Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1191911808, + "bounds": { + "minlat": 40.7045800, + "minlon": -73.9791052, + "maxlat": 40.7053778, + "maxlon": -73.9783280 + }, + "nodes": [ + 42504385, + 11065675093, + 11065675092, + 11065675091, + 3590804726 + ], + "geometry": [ + { "lat": 40.7045800, "lon": -73.9783280 }, + { "lat": 40.7049610, "lon": -73.9786774 }, + { "lat": 40.7052985, "lon": -73.9785835 }, + { "lat": 40.7053778, "lon": -73.9790073 }, + { "lat": 40.7053211, "lon": -73.9791052 } + ], + "tags": { + "access": "destination", + "foot": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1191911815, + "bounds": { + "minlat": 40.7027888, + "minlon": -73.9771388, + "maxlat": 40.7043036, + "maxlon": -73.9763354 + }, + "nodes": [ + 42473945, + 11065677113, + 11065677114 + ], + "geometry": [ + { "lat": 40.7027888, "lon": -73.9771388 }, + { "lat": 40.7037186, "lon": -73.9767055 }, + { "lat": 40.7043036, "lon": -73.9763354 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Pier C" + } +}, +{ + "type": "way", + "id": 1191911823, + "bounds": { + "minlat": 40.7070132, + "minlon": -73.9725165, + "maxlat": 40.7088368, + "maxlon": -73.9708170 + }, + "nodes": [ + 7710968250, + 11065677174, + 11065677173, + 11065677172 + ], + "geometry": [ + { "lat": 40.7070132, "lon": -73.9708170 }, + { "lat": 40.7074935, "lon": -73.9713977 }, + { "lat": 40.7078972, "lon": -73.9717861 }, + { "lat": 40.7088368, "lon": -73.9725165 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1192171918, + "bounds": { + "minlat": 40.7066078, + "minlon": -73.9336598, + "maxlat": 40.7066734, + "maxlon": -73.9330435 + }, + "nodes": [ + 11067650330, + 11067650334, + 12980331187, + 12980331188, + 11067650331, + 11067650332, + 11067650333 + ], + "geometry": [ + { "lat": 40.7066078, "lon": -73.9336598 }, + { "lat": 40.7066195, "lon": -73.9335854 }, + { "lat": 40.7066246, "lon": -73.9335549 }, + { "lat": 40.7066390, "lon": -73.9334647 }, + { "lat": 40.7066478, "lon": -73.9334094 }, + { "lat": 40.7066288, "lon": -73.9333223 }, + { "lat": 40.7066734, "lon": -73.9330435 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1192397132, + "bounds": { + "minlat": 40.8430599, + "minlon": -74.0009509, + "maxlat": 40.8432837, + "maxlon": -74.0007184 + }, + "nodes": [ + 11069009851, + 11069009852 + ], + "geometry": [ + { "lat": 40.8432837, "lon": -74.0007184 }, + { "lat": 40.8430599, "lon": -74.0009509 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1192623594, + "bounds": { + "minlat": 40.8675040, + "minlon": -73.9734301, + "maxlat": 40.8676287, + "maxlon": -73.9732480 + }, + "nodes": [ + 11070959252, + 3655086223, + 3655086220 + ], + "geometry": [ + { "lat": 40.8675040, "lon": -73.9732480 }, + { "lat": 40.8675397, "lon": -73.9732889 }, + { "lat": 40.8676287, "lon": -73.9734301 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 1192623595, + "bounds": { + "minlat": 40.8673883, + "minlon": -73.9732754, + "maxlat": 40.8675040, + "maxlon": -73.9732407 + }, + "nodes": [ + 11070959251, + 3655086217, + 3655086539, + 11070959252 + ], + "geometry": [ + { "lat": 40.8673883, "lon": -73.9732754 }, + { "lat": 40.8673966, "lon": -73.9732693 }, + { "lat": 40.8674910, "lon": -73.9732407 }, + { "lat": 40.8675040, "lon": -73.9732480 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "source": "Bing" + } +}, +{ + "type": "way", + "id": 1192636829, + "bounds": { + "minlat": 40.7769260, + "minlon": -73.9334491, + "maxlat": 40.7771577, + "maxlon": -73.9333223 + }, + "nodes": [ + 11071072202, + 11071072203 + ], + "geometry": [ + { "lat": 40.7771577, "lon": -73.9333223 }, + { "lat": 40.7769260, "lon": -73.9334491 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1192636830, + "bounds": { + "minlat": 40.7771577, + "minlon": -73.9333223, + "maxlat": 40.7773497, + "maxlon": -73.9332200 + }, + "nodes": [ + 7745133380, + 11071072202 + ], + "geometry": [ + { "lat": 40.7773497, "lon": -73.9332200 }, + { "lat": 40.7771577, "lon": -73.9333223 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1192695400, + "bounds": { + "minlat": 40.8056078, + "minlon": -73.9922079, + "maxlat": 40.8058818, + "maxlon": -73.9919902 + }, + "nodes": [ + 4215808352, + 8913088173 + ], + "geometry": [ + { "lat": 40.8058818, "lon": -73.9919902 }, + { "lat": 40.8056078, "lon": -73.9922079 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "oneway": "yes", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1192695401, + "bounds": { + "minlat": 40.8071247, + "minlon": -73.9925424, + "maxlat": 40.8073983, + "maxlon": -73.9924029 + }, + "nodes": [ + 11071533435, + 11071533436, + 752618668 + ], + "geometry": [ + { "lat": 40.8073983, "lon": -73.9924029 }, + { "lat": 40.8072563, "lon": -73.9925155 }, + { "lat": 40.8071247, "lon": -73.9925424 } + ], + "tags": { + "highway": "residential", + "source": "maxar" + } +}, +{ + "type": "way", + "id": 1192695402, + "bounds": { + "minlat": 40.8013750, + "minlon": -73.9934214, + "maxlat": 40.8018792, + "maxlon": -73.9930896 + }, + "nodes": [ + 7229615653, + 7229615654 + ], + "geometry": [ + { "lat": 40.8018792, "lon": -73.9930896 }, + { "lat": 40.8013750, "lon": -73.9934214 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1192695403, + "bounds": { + "minlat": 40.8034118, + "minlon": -74.0067791, + "maxlat": 40.8037147, + "maxlon": -74.0063582 + }, + "nodes": [ + 11071533438, + 11071533439, + 11071533440 + ], + "geometry": [ + { "lat": 40.8034118, "lon": -74.0067791 }, + { "lat": 40.8037147, "lon": -74.0065484 }, + { "lat": 40.8036597, "lon": -74.0063582 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1192695404, + "bounds": { + "minlat": 40.8032741, + "minlon": -74.0064637, + "maxlat": 40.8036152, + "maxlon": -74.0061781 + }, + "nodes": [ + 11071533441, + 11071533442, + 11071533443, + 11071533444 + ], + "geometry": [ + { "lat": 40.8032741, "lon": -74.0064637 }, + { "lat": 40.8035030, "lon": -74.0062976 }, + { "lat": 40.8035093, "lon": -74.0062574 }, + { "lat": 40.8036152, "lon": -74.0061781 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1192695412, + "bounds": { + "minlat": 40.7821707, + "minlon": -74.0092213, + "maxlat": 40.7824280, + "maxlon": -74.0087017 + }, + "nodes": [ + 6771776393, + 6771776396, + 6771776397 + ], + "geometry": [ + { "lat": 40.7824280, "lon": -74.0092213 }, + { "lat": 40.7823293, "lon": -74.0090221 }, + { "lat": 40.7821707, "lon": -74.0087017 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1192695415, + "bounds": { + "minlat": 40.7718469, + "minlon": -74.0139429, + "maxlat": 40.7720924, + "maxlon": -74.0137522 + }, + "nodes": [ + 11071540438, + 11071540439 + ], + "geometry": [ + { "lat": 40.7718469, "lon": -74.0139429 }, + { "lat": 40.7720924, "lon": -74.0137522 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1192695416, + "bounds": { + "minlat": 40.7719327, + "minlon": -74.0141301, + "maxlat": 40.7721675, + "maxlon": -74.0139422 + }, + "nodes": [ + 11071540440, + 11071540441 + ], + "geometry": [ + { "lat": 40.7719327, "lon": -74.0141301 }, + { "lat": 40.7721675, "lon": -74.0139422 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1193079853, + "bounds": { + "minlat": 40.8280452, + "minlon": -73.9431310, + "maxlat": 40.8283084, + "maxlon": -73.9425031 + }, + "nodes": [ + 4205440429, + 11221649587, + 11221649580, + 42448674 + ], + "geometry": [ + { "lat": 40.8280452, "lon": -73.9425031 }, + { "lat": 40.8280992, "lon": -73.9426320 }, + { "lat": 40.8282753, "lon": -73.9430521 }, + { "lat": 40.8283084, "lon": -73.9431310 } + ], + "tags": { + "highway": "residential", + "name": "West 151st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "151st", + "tiger:name_base_1": "151", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1193079854, + "bounds": { + "minlat": 40.8283084, + "minlon": -73.9448276, + "maxlat": 40.8290195, + "maxlon": -73.9431310 + }, + "nodes": [ + 42448674, + 11221649583, + 11218880436, + 42442638 + ], + "geometry": [ + { "lat": 40.8283084, "lon": -73.9431310 }, + { "lat": 40.8283512, "lon": -73.9432332 }, + { "lat": 40.8289727, "lon": -73.9447162 }, + { "lat": 40.8290195, "lon": -73.9448276 } + ], + "tags": { + "highway": "residential", + "name": "West 151st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "151st", + "tiger:name_base_1": "151", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1193079855, + "bounds": { + "minlat": 40.8287776, + "minlon": -73.9450041, + "maxlat": 40.8290195, + "maxlon": -73.9448276 + }, + "nodes": [ + 12772131421, + 11218910738, + 42442638 + ], + "geometry": [ + { "lat": 40.8287776, "lon": -73.9450041 }, + { "lat": 40.8289667, "lon": -73.9448659 }, + { "lat": 40.8290195, "lon": -73.9448276 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1193711055, + "bounds": { + "minlat": 40.8128159, + "minlon": -74.0089619, + "maxlat": 40.8134678, + "maxlon": -74.0083058 + }, + "nodes": [ + 103865031, + 12456262040, + 956331751 + ], + "geometry": [ + { "lat": 40.8128159, "lon": -74.0089619 }, + { "lat": 40.8128622, "lon": -74.0089153 }, + { "lat": 40.8134678, "lon": -74.0083058 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1193788918, + "bounds": { + "minlat": 40.7140082, + "minlon": -73.9661370, + "maxlat": 40.7145146, + "maxlon": -73.9659712 + }, + "nodes": [ + 11081343115, + 11081343116, + 11081343117, + 11081343118, + 11081343119, + 11081343120, + 11081343121, + 11081343122 + ], + "geometry": [ + { "lat": 40.7145146, "lon": -73.9659712 }, + { "lat": 40.7144648, "lon": -73.9659898 }, + { "lat": 40.7144369, "lon": -73.9659987 }, + { "lat": 40.7143914, "lon": -73.9660059 }, + { "lat": 40.7143507, "lon": -73.9660063 }, + { "lat": 40.7143087, "lon": -73.9660131 }, + { "lat": 40.7142653, "lon": -73.9660266 }, + { "lat": 40.7140082, "lon": -73.9661370 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1193945212, + "bounds": { + "minlat": 40.8726920, + "minlon": -73.9543875, + "maxlat": 40.8728293, + "maxlon": -73.9542628 + }, + "nodes": [ + 10081535289, + 11083194406 + ], + "geometry": [ + { "lat": 40.8726920, "lon": -73.9543875 }, + { "lat": 40.8728293, "lon": -73.9542628 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1193945213, + "bounds": { + "minlat": 40.8721494, + "minlon": -73.9549143, + "maxlat": 40.8722765, + "maxlon": -73.9547915 + }, + "nodes": [ + 10081535288, + 11083194407 + ], + "geometry": [ + { "lat": 40.8722765, "lon": -73.9547915 }, + { "lat": 40.8721494, "lon": -73.9549143 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1194098521, + "bounds": { + "minlat": 40.8405986, + "minlon": -74.0101800, + "maxlat": 40.8443293, + "maxlon": -74.0076497 + }, + "nodes": [ + 11084293560, + 11084293561, + 11335338400, + 11335338413, + 11335338401, + 11335338402, + 11335338403, + 11335338404, + 11335338405, + 11335338406, + 518910149, + 11335338407, + 11335338408, + 11335338409, + 11335338410, + 11335338411, + 11084293561 + ], + "geometry": [ + { "lat": 40.8443293, "lon": -74.0092815 }, + { "lat": 40.8439614, "lon": -74.0092767 }, + { "lat": 40.8435489, "lon": -74.0094078 }, + { "lat": 40.8429679, "lon": -74.0096715 }, + { "lat": 40.8424973, "lon": -74.0098851 }, + { "lat": 40.8422607, "lon": -74.0099681 }, + { "lat": 40.8418078, "lon": -74.0098914 }, + { "lat": 40.8411286, "lon": -74.0101800 }, + { "lat": 40.8405986, "lon": -74.0092206 }, + { "lat": 40.8406066, "lon": -74.0090647 }, + { "lat": 40.8406451, "lon": -74.0089312 }, + { "lat": 40.8420702, "lon": -74.0083133 }, + { "lat": 40.8436326, "lon": -74.0076497 }, + { "lat": 40.8437011, "lon": -74.0077163 }, + { "lat": 40.8439682, "lon": -74.0088359 }, + { "lat": 40.8439732, "lon": -74.0090595 }, + { "lat": 40.8439614, "lon": -74.0092767 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1195533716, + "bounds": { + "minlat": 40.7101689, + "minlon": -73.9894443, + "maxlat": 40.7105487, + "maxlon": -73.9893917 + }, + "nodes": [ + 4581870333, + 8310246593, + 42443937 + ], + "geometry": [ + { "lat": 40.7105487, "lon": -73.9894443 }, + { "lat": 40.7102411, "lon": -73.9894009 }, + { "lat": 40.7101689, "lon": -73.9893917 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1195533717, + "bounds": { + "minlat": 40.7105487, + "minlon": -73.9894443, + "maxlat": 40.7105656, + "maxlon": -73.9892707 + }, + "nodes": [ + 5487766142, + 4581870333 + ], + "geometry": [ + { "lat": 40.7105656, "lon": -73.9892707 }, + { "lat": 40.7105487, "lon": -73.9894443 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196013868, + "bounds": { + "minlat": 40.7260833, + "minlon": -73.9601819, + "maxlat": 40.7273971, + "maxlon": -73.9597880 + }, + "nodes": [ + 11099032977, + 11099032978, + 11099032979, + 11099032980, + 11784543561, + 11099032983, + 42503837 + ], + "geometry": [ + { "lat": 40.7273971, "lon": -73.9601819 }, + { "lat": 40.7268863, "lon": -73.9599656 }, + { "lat": 40.7267690, "lon": -73.9599728 }, + { "lat": 40.7266343, "lon": -73.9600108 }, + { "lat": 40.7264902, "lon": -73.9600044 }, + { "lat": 40.7262069, "lon": -73.9598393 }, + { "lat": 40.7260833, "lon": -73.9597880 } + ], + "tags": { + "highway": "residential", + "name": "Wharf Drive", + "old_name": "Private Drive" + } +}, +{ + "type": "way", + "id": 1196025524, + "bounds": { + "minlat": 40.8420432, + "minlon": -73.9697832, + "maxlat": 40.8424252, + "maxlon": -73.9691776 + }, + "nodes": [ + 11099079366, + 11099079368, + 11099079367 + ], + "geometry": [ + { "lat": 40.8424252, "lon": -73.9697832 }, + { "lat": 40.8420871, "lon": -73.9692472 }, + { "lat": 40.8420432, "lon": -73.9691776 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325733, + "bounds": { + "minlat": 40.8446215, + "minlon": -74.0091238, + "maxlat": 40.8449180, + "maxlon": -74.0089632 + }, + "nodes": [ + 11101364194, + 11101364158, + 11101364159, + 11101364160, + 11101364161, + 11101364162, + 6902805651 + ], + "geometry": [ + { "lat": 40.8449180, "lon": -74.0091238 }, + { "lat": 40.8449155, "lon": -74.0091003 }, + { "lat": 40.8448996, "lon": -74.0090743 }, + { "lat": 40.8448663, "lon": -74.0090412 }, + { "lat": 40.8447777, "lon": -74.0090232 }, + { "lat": 40.8446989, "lon": -74.0090172 }, + { "lat": 40.8446215, "lon": -74.0089632 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1196325734, + "bounds": { + "minlat": 40.8447008, + "minlon": -74.0099317, + "maxlat": 40.8447262, + "maxlon": -74.0094491 + }, + "nodes": [ + 6902805652, + 11101364196, + 6902805653, + 10927913918 + ], + "geometry": [ + { "lat": 40.8447008, "lon": -74.0094491 }, + { "lat": 40.8447048, "lon": -74.0095599 }, + { "lat": 40.8447118, "lon": -74.0097498 }, + { "lat": 40.8447262, "lon": -74.0099317 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1196325735, + "bounds": { + "minlat": 40.8446136, + "minlon": -74.0100771, + "maxlat": 40.8455612, + "maxlon": -74.0086849 + }, + "nodes": [ + 11101364184, + 11101364165, + 11101364166, + 11101364167, + 11101364168, + 11101387107, + 11101364169, + 11101364170, + 11101364171, + 11101364172, + 11101364173, + 11101364174, + 11101364175, + 11101364176, + 11101364177, + 11101364178, + 11101364179, + 11101364180, + 11101364181 + ], + "geometry": [ + { "lat": 40.8450149, "lon": -74.0100524 }, + { "lat": 40.8451615, "lon": -74.0100771 }, + { "lat": 40.8452864, "lon": -74.0100692 }, + { "lat": 40.8453313, "lon": -74.0100467 }, + { "lat": 40.8453613, "lon": -74.0100005 }, + { "lat": 40.8453834, "lon": -74.0098912 }, + { "lat": 40.8453933, "lon": -74.0098420 }, + { "lat": 40.8454493, "lon": -74.0094722 }, + { "lat": 40.8455092, "lon": -74.0092001 }, + { "lat": 40.8455522, "lon": -74.0090125 }, + { "lat": 40.8455612, "lon": -74.0089108 }, + { "lat": 40.8455462, "lon": -74.0088078 }, + { "lat": 40.8455172, "lon": -74.0087312 }, + { "lat": 40.8454862, "lon": -74.0086995 }, + { "lat": 40.8454383, "lon": -74.0086849 }, + { "lat": 40.8453154, "lon": -74.0086902 }, + { "lat": 40.8450226, "lon": -74.0087272 }, + { "lat": 40.8447338, "lon": -74.0088025 }, + { "lat": 40.8446136, "lon": -74.0088269 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1196325736, + "bounds": { + "minlat": 40.8445854, + "minlon": -74.0088269, + "maxlat": 40.8446136, + "maxlon": -74.0086187 + }, + "nodes": [ + 5672006433, + 11101364182, + 11101364181 + ], + "geometry": [ + { "lat": 40.8445854, "lon": -74.0086187 }, + { "lat": 40.8446049, "lon": -74.0087452 }, + { "lat": 40.8446136, "lon": -74.0088269 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1196325737, + "bounds": { + "minlat": 40.8449452, + "minlon": -74.0100524, + "maxlat": 40.8450149, + "maxlon": -74.0096146 + }, + "nodes": [ + 6902805659, + 11101364183, + 11101364185, + 11101387113, + 11101364184 + ], + "geometry": [ + { "lat": 40.8449452, "lon": -74.0096172 }, + { "lat": 40.8449899, "lon": -74.0096146 }, + { "lat": 40.8449930, "lon": -74.0096690 }, + { "lat": 40.8450081, "lon": -74.0099329 }, + { "lat": 40.8450149, "lon": -74.0100524 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325738, + "bounds": { + "minlat": 40.8449180, + "minlon": -74.0096690, + "maxlat": 40.8453336, + "maxlon": -74.0090929 + }, + "nodes": [ + 11101364185, + 11101364186, + 11101364187, + 11101364188, + 11101364189, + 11101364190, + 11101364191, + 11101364192, + 11101364193, + 11101364194 + ], + "geometry": [ + { "lat": 40.8449930, "lon": -74.0096690 }, + { "lat": 40.8452836, "lon": -74.0096358 }, + { "lat": 40.8453166, "lon": -74.0096054 }, + { "lat": 40.8453336, "lon": -74.0095565 }, + { "lat": 40.8453216, "lon": -74.0092989 }, + { "lat": 40.8453016, "lon": -74.0091668 }, + { "lat": 40.8452806, "lon": -74.0091114 }, + { "lat": 40.8452486, "lon": -74.0090929 }, + { "lat": 40.8451657, "lon": -74.0090968 }, + { "lat": 40.8449180, "lon": -74.0091238 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325739, + "bounds": { + "minlat": 40.8446136, + "minlon": -74.0089632, + "maxlat": 40.8446215, + "maxlon": -74.0088269 + }, + "nodes": [ + 11101364181, + 6902805651 + ], + "geometry": [ + { "lat": 40.8446136, "lon": -74.0088269 }, + { "lat": 40.8446215, "lon": -74.0089632 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1196325740, + "bounds": { + "minlat": 40.8449180, + "minlon": -74.0091662, + "maxlat": 40.8449225, + "maxlon": -74.0091238 + }, + "nodes": [ + 6902805658, + 11101364194 + ], + "geometry": [ + { "lat": 40.8449225, "lon": -74.0091662 }, + { "lat": 40.8449180, "lon": -74.0091238 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325741, + "bounds": { + "minlat": 40.8446734, + "minlon": -74.0091982, + "maxlat": 40.8449225, + "maxlon": -74.0091662 + }, + "nodes": [ + 6902805656, + 6902805657, + 6902805658 + ], + "geometry": [ + { "lat": 40.8446734, "lon": -74.0091982 }, + { "lat": 40.8447914, "lon": -74.0091861 }, + { "lat": 40.8449225, "lon": -74.0091662 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1196325742, + "bounds": { + "minlat": 40.8447262, + "minlon": -74.0100524, + "maxlat": 40.8450149, + "maxlon": -74.0099317 + }, + "nodes": [ + 10927913918, + 11101364163, + 11101364164, + 11101364184 + ], + "geometry": [ + { "lat": 40.8447262, "lon": -74.0099317 }, + { "lat": 40.8448187, "lon": -74.0099860 }, + { "lat": 40.8449736, "lon": -74.0100454 }, + { "lat": 40.8450149, "lon": -74.0100524 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1196325743, + "bounds": { + "minlat": 40.8446734, + "minlon": -74.0094491, + "maxlat": 40.8447008, + "maxlon": -74.0091982 + }, + "nodes": [ + 6902805652, + 11101364199, + 6902805656 + ], + "geometry": [ + { "lat": 40.8447008, "lon": -74.0094491 }, + { "lat": 40.8446868, "lon": -74.0093206 }, + { "lat": 40.8446734, "lon": -74.0091982 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325744, + "bounds": { + "minlat": 40.8446215, + "minlon": -74.0091982, + "maxlat": 40.8446734, + "maxlon": -74.0089632 + }, + "nodes": [ + 6902805656, + 6902805651 + ], + "geometry": [ + { "lat": 40.8446734, "lon": -74.0091982 }, + { "lat": 40.8446215, "lon": -74.0089632 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325745, + "bounds": { + "minlat": 40.8447740, + "minlon": -74.0095518, + "maxlat": 40.8449000, + "maxlon": -74.0095334 + }, + "nodes": [ + 11101364201, + 11101364202 + ], + "geometry": [ + { "lat": 40.8449000, "lon": -74.0095334 }, + { "lat": 40.8447740, "lon": -74.0095518 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325746, + "bounds": { + "minlat": 40.8447656, + "minlon": -74.0094386, + "maxlat": 40.8448914, + "maxlon": -74.0094179 + }, + "nodes": [ + 11101364203, + 11101364204 + ], + "geometry": [ + { "lat": 40.8448914, "lon": -74.0094179 }, + { "lat": 40.8447656, "lon": -74.0094386 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325747, + "bounds": { + "minlat": 40.8447563, + "minlon": -74.0093130, + "maxlat": 40.8448822, + "maxlon": -74.0092947 + }, + "nodes": [ + 11101387105, + 11101387106 + ], + "geometry": [ + { "lat": 40.8448822, "lon": -74.0092947 }, + { "lat": 40.8447563, "lon": -74.0093130 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325748, + "bounds": { + "minlat": 40.8449000, + "minlon": -74.0095334, + "maxlat": 40.8449407, + "maxlon": -74.0095274 + }, + "nodes": [ + 11101364195, + 11101364201 + ], + "geometry": [ + { "lat": 40.8449407, "lon": -74.0095274 }, + { "lat": 40.8449000, "lon": -74.0095334 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325749, + "bounds": { + "minlat": 40.8447048, + "minlon": -74.0095599, + "maxlat": 40.8447740, + "maxlon": -74.0095518 + }, + "nodes": [ + 11101364202, + 11101364196 + ], + "geometry": [ + { "lat": 40.8447740, "lon": -74.0095518 }, + { "lat": 40.8447048, "lon": -74.0095599 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325750, + "bounds": { + "minlat": 40.8448914, + "minlon": -74.0094179, + "maxlat": 40.8449347, + "maxlon": -74.0094082 + }, + "nodes": [ + 11101364197, + 11101364203 + ], + "geometry": [ + { "lat": 40.8449347, "lon": -74.0094082 }, + { "lat": 40.8448914, "lon": -74.0094179 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325751, + "bounds": { + "minlat": 40.8447008, + "minlon": -74.0094491, + "maxlat": 40.8447656, + "maxlon": -74.0094386 + }, + "nodes": [ + 11101364204, + 6902805652 + ], + "geometry": [ + { "lat": 40.8447656, "lon": -74.0094386 }, + { "lat": 40.8447008, "lon": -74.0094491 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325752, + "bounds": { + "minlat": 40.8448822, + "minlon": -74.0092947, + "maxlat": 40.8449287, + "maxlon": -74.0092905 + }, + "nodes": [ + 11101364198, + 11101387105 + ], + "geometry": [ + { "lat": 40.8449287, "lon": -74.0092905 }, + { "lat": 40.8448822, "lon": -74.0092947 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325753, + "bounds": { + "minlat": 40.8446868, + "minlon": -74.0093206, + "maxlat": 40.8447563, + "maxlon": -74.0093130 + }, + "nodes": [ + 11101387106, + 11101364199 + ], + "geometry": [ + { "lat": 40.8447563, "lon": -74.0093130 }, + { "lat": 40.8446868, "lon": -74.0093206 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325754, + "bounds": { + "minlat": 40.8450081, + "minlon": -74.0099878, + "maxlat": 40.8451790, + "maxlon": -74.0099256 + }, + "nodes": [ + 11101387111, + 11101387112, + 11101387113 + ], + "geometry": [ + { "lat": 40.8451790, "lon": -74.0099878 }, + { "lat": 40.8451332, "lon": -74.0099256 }, + { "lat": 40.8450081, "lon": -74.0099329 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325755, + "bounds": { + "minlat": 40.8451741, + "minlon": -74.0099199, + "maxlat": 40.8453005, + "maxlon": -74.0099034 + }, + "nodes": [ + 11101387117, + 11101387118 + ], + "geometry": [ + { "lat": 40.8451741, "lon": -74.0099199 }, + { "lat": 40.8453005, "lon": -74.0099034 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325756, + "bounds": { + "minlat": 40.8451692, + "minlon": -74.0098507, + "maxlat": 40.8452954, + "maxlon": -74.0098319 + }, + "nodes": [ + 11101387114, + 11101387115 + ], + "geometry": [ + { "lat": 40.8451692, "lon": -74.0098507 }, + { "lat": 40.8452954, "lon": -74.0098319 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325757, + "bounds": { + "minlat": 40.8453055, + "minlon": -74.0099724, + "maxlat": 40.8453834, + "maxlon": -74.0098912 + }, + "nodes": [ + 11101387107, + 11101387108, + 11101387109, + 11101387110 + ], + "geometry": [ + { "lat": 40.8453834, "lon": -74.0098912 }, + { "lat": 40.8453560, "lon": -74.0098951 }, + { "lat": 40.8453422, "lon": -74.0099465 }, + { "lat": 40.8453055, "lon": -74.0099724 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325758, + "bounds": { + "minlat": 40.8451790, + "minlon": -74.0099878, + "maxlat": 40.8453055, + "maxlon": -74.0099724 + }, + "nodes": [ + 11101387110, + 11101387111 + ], + "geometry": [ + { "lat": 40.8453055, "lon": -74.0099724 }, + { "lat": 40.8451790, "lon": -74.0099878 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325759, + "bounds": { + "minlat": 40.8451332, + "minlon": -74.0099256, + "maxlat": 40.8451741, + "maxlon": -74.0099199 + }, + "nodes": [ + 11101387112, + 11101387117 + ], + "geometry": [ + { "lat": 40.8451332, "lon": -74.0099256 }, + { "lat": 40.8451741, "lon": -74.0099199 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325760, + "bounds": { + "minlat": 40.8453005, + "minlon": -74.0099034, + "maxlat": 40.8453560, + "maxlon": -74.0098951 + }, + "nodes": [ + 11101387118, + 11101387108 + ], + "geometry": [ + { "lat": 40.8453005, "lon": -74.0099034 }, + { "lat": 40.8453560, "lon": -74.0098951 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325761, + "bounds": { + "minlat": 40.8451332, + "minlon": -74.0099256, + "maxlat": 40.8451692, + "maxlon": -74.0098507 + }, + "nodes": [ + 11101387112, + 11101387114 + ], + "geometry": [ + { "lat": 40.8451332, "lon": -74.0099256 }, + { "lat": 40.8451692, "lon": -74.0098507 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196325762, + "bounds": { + "minlat": 40.8452954, + "minlon": -74.0098951, + "maxlat": 40.8453560, + "maxlon": -74.0098319 + }, + "nodes": [ + 11101387115, + 11101387116, + 11101387108 + ], + "geometry": [ + { "lat": 40.8452954, "lon": -74.0098319 }, + { "lat": 40.8453392, "lon": -74.0098484 }, + { "lat": 40.8453560, "lon": -74.0098951 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196333583, + "bounds": { + "minlat": 40.8284184, + "minlon": -74.0112966, + "maxlat": 40.8288469, + "maxlon": -74.0103674 + }, + "nodes": [ + 11101387827, + 13527758307, + 11101387828, + 11101387829, + 11101387830, + 11101387831, + 11101387832, + 11101387833 + ], + "geometry": [ + { "lat": 40.8284184, "lon": -74.0103674 }, + { "lat": 40.8284497, "lon": -74.0104736 }, + { "lat": 40.8284825, "lon": -74.0105851 }, + { "lat": 40.8285148, "lon": -74.0106442 }, + { "lat": 40.8286923, "lon": -74.0109296 }, + { "lat": 40.8287680, "lon": -74.0110822 }, + { "lat": 40.8288177, "lon": -74.0112199 }, + { "lat": 40.8288469, "lon": -74.0112966 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196400746, + "bounds": { + "minlat": 40.7671647, + "minlon": -73.9368110, + "maxlat": 40.7675140, + "maxlon": -73.9365986 + }, + "nodes": [ + 11101851189, + 11101851193, + 11101851190, + 11101851191, + 11101851192 + ], + "geometry": [ + { "lat": 40.7675140, "lon": -73.9366838 }, + { "lat": 40.7674325, "lon": -73.9366335 }, + { "lat": 40.7673759, "lon": -73.9365986 }, + { "lat": 40.7673132, "lon": -73.9366004 }, + { "lat": 40.7671647, "lon": -73.9368110 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1196760715, + "bounds": { + "minlat": 40.7508112, + "minlon": -73.9190317, + "maxlat": 40.7513110, + "maxlon": -73.9189248 + }, + "nodes": [ + 11104563767, + 3813776457 + ], + "geometry": [ + { "lat": 40.7508112, "lon": -73.9190317 }, + { "lat": 40.7513110, "lon": -73.9189248 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197002659, + "bounds": { + "minlat": 40.7043120, + "minlon": -73.9193663, + "maxlat": 40.7043971, + "maxlon": -73.9192300 + }, + "nodes": [ + 11107097235, + 9755789821, + 42512101 + ], + "geometry": [ + { "lat": 40.7043971, "lon": -73.9193663 }, + { "lat": 40.7043546, "lon": -73.9192979 }, + { "lat": 40.7043120, "lon": -73.9192300 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Wyckoff Avenue", + "name:etymology:wikidata": "Q30434938", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1197045533, + "bounds": { + "minlat": 40.8501873, + "minlon": -74.0023761, + "maxlat": 40.8503705, + "maxlon": -74.0020412 + }, + "nodes": [ + 6477912322, + 8226127110 + ], + "geometry": [ + { "lat": 40.8503705, "lon": -74.0023761 }, + { "lat": 40.8501873, "lon": -74.0020412 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 1197051019, + "bounds": { + "minlat": 40.7114388, + "minlon": -73.9390966, + "maxlat": 40.7115065, + "maxlon": -73.9388137 + }, + "nodes": [ + 11107443444, + 11107443443 + ], + "geometry": [ + { "lat": 40.7115065, "lon": -73.9388137 }, + { "lat": 40.7114388, "lon": -73.9390966 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1197051020, + "bounds": { + "minlat": 40.7115065, + "minlon": -73.9388137, + "maxlat": 40.7117170, + "maxlon": -73.9379333 + }, + "nodes": [ + 7706121928, + 9752593819, + 11107443444 + ], + "geometry": [ + { "lat": 40.7117170, "lon": -73.9379333 }, + { "lat": 40.7116979, "lon": -73.9380133 }, + { "lat": 40.7115065, "lon": -73.9388137 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1197056479, + "bounds": { + "minlat": 40.7454644, + "minlon": -74.0083054, + "maxlat": 40.7457414, + "maxlon": -74.0082607 + }, + "nodes": [ + 12097469456, + 373903786 + ], + "geometry": [ + { "lat": 40.7457414, "lon": -74.0082607 }, + { "lat": 40.7454644, "lon": -74.0083054 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1197063253, + "bounds": { + "minlat": 40.8392209, + "minlon": -73.9399053, + "maxlat": 40.8395698, + "maxlon": -73.9398826 + }, + "nodes": [ + 42433030, + 9566997284, + 2603955402, + 2603955401, + 11107581285 + ], + "geometry": [ + { "lat": 40.8395698, "lon": -73.9398826 }, + { "lat": 40.8394886, "lon": -73.9398983 }, + { "lat": 40.8394410, "lon": -73.9399053 }, + { "lat": 40.8393425, "lon": -73.9399028 }, + { "lat": 40.8392209, "lon": -73.9398919 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:backward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1197063254, + "bounds": { + "minlat": 40.8390431, + "minlon": -73.9398919, + "maxlat": 40.8392209, + "maxlon": -73.9398760 + }, + "nodes": [ + 11107581285, + 11107581284 + ], + "geometry": [ + { "lat": 40.8392209, "lon": -73.9398919 }, + { "lat": 40.8390431, "lon": -73.9398760 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1197063255, + "bounds": { + "minlat": 40.8385135, + "minlon": -73.9398455, + "maxlat": 40.8386617, + "maxlon": -73.9398419 + }, + "nodes": [ + 2499803009, + 42433027 + ], + "geometry": [ + { "lat": 40.8386617, "lon": -73.9398419 }, + { "lat": 40.8385135, "lon": -73.9398455 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1197066228, + "bounds": { + "minlat": 40.7697925, + "minlon": -73.9828614, + "maxlat": 40.7700572, + "maxlon": -73.9822360 + }, + "nodes": [ + 11107632623, + 9446258121, + 9904553340, + 42421972 + ], + "geometry": [ + { "lat": 40.7700572, "lon": -73.9828614 }, + { "lat": 40.7698582, "lon": -73.9823912 }, + { "lat": 40.7698395, "lon": -73.9823500 }, + { "lat": 40.7697925, "lon": -73.9822360 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "name": "West 61st Street", + "name:ru": "Западная 61-я стрит", + "name_1": "West 61 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 1197069043, + "bounds": { + "minlat": 40.7023967, + "minlon": -74.0132927, + "maxlat": 40.7024415, + "maxlon": -74.0128371 + }, + "nodes": [ + 42426747, + 11014606823, + 2034011049, + 11014606822, + 1772058064, + 11107654706 + ], + "geometry": [ + { "lat": 40.7024415, "lon": -74.0128371 }, + { "lat": 40.7024315, "lon": -74.0128591 }, + { "lat": 40.7024241, "lon": -74.0128829 }, + { "lat": 40.7024194, "lon": -74.0129060 }, + { "lat": 40.7024168, "lon": -74.0129335 }, + { "lat": 40.7023967, "lon": -74.0132927 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "State Street", + "name:etymology:wikidata": "Q1384", + "name:ko": "스테이트 스트리트", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "State Street", + "tiger:name_type": "Plz", + "turn:lanes:backward": "left;through", + "wikidata": "Q13461917", + "wikipedia": "en:State Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1197108831, + "bounds": { + "minlat": 40.7747887, + "minlon": -73.9208768, + "maxlat": 40.7753124, + "maxlon": -73.9204742 + }, + "nodes": [ + 11114783728, + 11107942786, + 11107942787, + 11107942788 + ], + "geometry": [ + { "lat": 40.7747887, "lon": -73.9206001 }, + { "lat": 40.7748339, "lon": -73.9206648 }, + { "lat": 40.7749821, "lon": -73.9208768 }, + { "lat": 40.7753124, "lon": -73.9204742 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1197108832, + "bounds": { + "minlat": 40.7752251, + "minlon": -73.9217213, + "maxlat": 40.7754140, + "maxlon": -73.9213462 + }, + "nodes": [ + 11114749969, + 11107942789, + 11107942790, + 11107942791 + ], + "geometry": [ + { "lat": 40.7752251, "lon": -73.9213462 }, + { "lat": 40.7752711, "lon": -73.9214174 }, + { "lat": 40.7754140, "lon": -73.9216261 }, + { "lat": 40.7753343, "lon": -73.9217213 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197108833, + "bounds": { + "minlat": 40.7756646, + "minlon": -73.9224663, + "maxlat": 40.7758493, + "maxlon": -73.9221883 + }, + "nodes": [ + 11107942792, + 11107942793, + 11107942794 + ], + "geometry": [ + { "lat": 40.7758493, "lon": -73.9224663 }, + { "lat": 40.7757854, "lon": -73.9223713 }, + { "lat": 40.7756646, "lon": -73.9221883 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197108834, + "bounds": { + "minlat": 40.7763067, + "minlon": -73.9230610, + "maxlat": 40.7765101, + "maxlon": -73.9227810 + }, + "nodes": [ + 11114807129, + 11107942795, + 11107942796, + 11107942797 + ], + "geometry": [ + { "lat": 40.7765101, "lon": -73.9227810 }, + { "lat": 40.7764726, "lon": -73.9228233 }, + { "lat": 40.7763067, "lon": -73.9230158 }, + { "lat": 40.7763367, "lon": -73.9230610 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197108835, + "bounds": { + "minlat": 40.7766346, + "minlon": -73.9229577, + "maxlat": 40.7768238, + "maxlon": -73.9227187 + }, + "nodes": [ + 11114783729, + 11107942798, + 11107942799 + ], + "geometry": [ + { "lat": 40.7766346, "lon": -73.9229577 }, + { "lat": 40.7766751, "lon": -73.9229079 }, + { "lat": 40.7768238, "lon": -73.9227187 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197108836, + "bounds": { + "minlat": 40.7769174, + "minlon": -73.9225118, + "maxlat": 40.7771294, + "maxlon": -73.9222447 + }, + "nodes": [ + 11107942800, + 11107942801, + 11107942802 + ], + "geometry": [ + { "lat": 40.7771294, "lon": -73.9222447 }, + { "lat": 40.7770726, "lon": -73.9223212 }, + { "lat": 40.7769174, "lon": -73.9225118 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197108837, + "bounds": { + "minlat": 40.7779063, + "minlon": -73.9213079, + "maxlat": 40.7781669, + "maxlon": -73.9209929 + }, + "nodes": [ + 11114803518, + 11107942803, + 11107942804 + ], + "geometry": [ + { "lat": 40.7781669, "lon": -73.9209929 }, + { "lat": 40.7781331, "lon": -73.9210370 }, + { "lat": 40.7779063, "lon": -73.9213079 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197108838, + "bounds": { + "minlat": 40.7781290, + "minlon": -73.9215582, + "maxlat": 40.7783159, + "maxlon": -73.9212920 + }, + "nodes": [ + 11107954505, + 11107954506, + 11107954507 + ], + "geometry": [ + { "lat": 40.7783159, "lon": -73.9215582 }, + { "lat": 40.7782800, "lon": -73.9215076 }, + { "lat": 40.7781290, "lon": -73.9212920 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197108839, + "bounds": { + "minlat": 40.7790156, + "minlon": -73.9204010, + "maxlat": 40.7792661, + "maxlon": -73.9201303 + }, + "nodes": [ + 11114779129, + 11107954508, + 11107954509, + 11107954510 + ], + "geometry": [ + { "lat": 40.7792661, "lon": -73.9204010 }, + { "lat": 40.7792331, "lon": -73.9203523 }, + { "lat": 40.7790879, "lon": -73.9201303 }, + { "lat": 40.7790156, "lon": -73.9202127 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197108840, + "bounds": { + "minlat": 40.7787200, + "minlon": -73.9182567, + "maxlat": 40.7790152, + "maxlon": -73.9178749 + }, + "nodes": [ + 11107954511, + 11107954512, + 11114791742 + ], + "geometry": [ + { "lat": 40.7787200, "lon": -73.9182567 }, + { "lat": 40.7789755, "lon": -73.9179254 }, + { "lat": 40.7790152, "lon": -73.9178749 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1197108841, + "bounds": { + "minlat": 40.7780753, + "minlon": -73.9169022, + "maxlat": 40.7782953, + "maxlon": -73.9165831 + }, + "nodes": [ + 11114805877, + 11107954513, + 11107954514 + ], + "geometry": [ + { "lat": 40.7780753, "lon": -73.9165831 }, + { "lat": 40.7781205, "lon": -73.9166465 }, + { "lat": 40.7782953, "lon": -73.9169022 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197108842, + "bounds": { + "minlat": 40.7777675, + "minlon": -73.9176508, + "maxlat": 40.7782508, + "maxlon": -73.9169598 + }, + "nodes": [ + 11114804476, + 11107954515, + 13006240124, + 11107954516, + 11114804477 + ], + "geometry": [ + { "lat": 40.7782508, "lon": -73.9176508 }, + { "lat": 40.7782105, "lon": -73.9175937 }, + { "lat": 40.7780155, "lon": -73.9173152 }, + { "lat": 40.7778107, "lon": -73.9170227 }, + { "lat": 40.7777675, "lon": -73.9169598 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1197110729, + "bounds": { + "minlat": 40.7758218, + "minlon": -73.9218084, + "maxlat": 40.7760542, + "maxlon": -73.9215063 + }, + "nodes": [ + 11107973907, + 11107973905, + 13545872400 + ], + "geometry": [ + { "lat": 40.7758218, "lon": -73.9218084 }, + { "lat": 40.7758620, "lon": -73.9217500 }, + { "lat": 40.7760542, "lon": -73.9215063 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197110730, + "bounds": { + "minlat": 40.7754200, + "minlon": -73.9208421, + "maxlat": 40.7756386, + "maxlon": -73.9205178 + }, + "nodes": [ + 11107973908, + 11107973909, + 11107973910 + ], + "geometry": [ + { "lat": 40.7756386, "lon": -73.9208421 }, + { "lat": 40.7755989, "lon": -73.9207815 }, + { "lat": 40.7754200, "lon": -73.9205178 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197110731, + "bounds": { + "minlat": 40.7772213, + "minlon": -73.9185262, + "maxlat": 40.7778477, + "maxlon": -73.9176268 + }, + "nodes": [ + 13144277964, + 13144277963, + 11107973911, + 11107973912, + 11107973915, + 11107973913, + 11107973914 + ], + "geometry": [ + { "lat": 40.7778477, "lon": -73.9185262 }, + { "lat": 40.7777484, "lon": -73.9183837 }, + { "lat": 40.7777050, "lon": -73.9183215 }, + { "lat": 40.7776642, "lon": -73.9182621 }, + { "lat": 40.7774672, "lon": -73.9179796 }, + { "lat": 40.7772658, "lon": -73.9176907 }, + { "lat": 40.7772213, "lon": -73.9176268 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1197110732, + "bounds": { + "minlat": 40.7771022, + "minlon": -73.9184049, + "maxlat": 40.7774672, + "maxlon": -73.9179796 + }, + "nodes": [ + 11107973915, + 11107973916 + ], + "geometry": [ + { "lat": 40.7774672, "lon": -73.9179796 }, + { "lat": 40.7771022, "lon": -73.9184049 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1197110733, + "bounds": { + "minlat": 40.7767749, + "minlon": -73.9176268, + "maxlat": 40.7772213, + "maxlon": -73.9170190 + }, + "nodes": [ + 11107973914, + 11107973917, + 11107973919, + 11107973918 + ], + "geometry": [ + { "lat": 40.7772213, "lon": -73.9176268 }, + { "lat": 40.7771836, "lon": -73.9175717 }, + { "lat": 40.7769661, "lon": -73.9172776 }, + { "lat": 40.7767749, "lon": -73.9170190 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1197110734, + "bounds": { + "minlat": 40.7765647, + "minlon": -73.9177937, + "maxlat": 40.7769661, + "maxlon": -73.9172776 + }, + "nodes": [ + 11107973919, + 11107973920 + ], + "geometry": [ + { "lat": 40.7769661, "lon": -73.9172776 }, + { "lat": 40.7765647, "lon": -73.9177937 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1197110735, + "bounds": { + "minlat": 40.7762422, + "minlon": -73.9170190, + "maxlat": 40.7767749, + "maxlon": -73.9162697 + }, + "nodes": [ + 11107973918, + 11107973921, + 11107973922, + 11107973924, + 11107973923, + 8669080481 + ], + "geometry": [ + { "lat": 40.7767749, "lon": -73.9170190 }, + { "lat": 40.7767308, "lon": -73.9169486 }, + { "lat": 40.7766954, "lon": -73.9168930 }, + { "lat": 40.7764922, "lon": -73.9166012 }, + { "lat": 40.7762932, "lon": -73.9163154 }, + { "lat": 40.7762422, "lon": -73.9162697 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1197110736, + "bounds": { + "minlat": 40.7761491, + "minlon": -73.9170252, + "maxlat": 40.7764922, + "maxlon": -73.9166012 + }, + "nodes": [ + 11107973924, + 11107973925 + ], + "geometry": [ + { "lat": 40.7764922, "lon": -73.9166012 }, + { "lat": 40.7761491, "lon": -73.9170252 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1197112414, + "bounds": { + "minlat": 40.7756652, + "minlon": -73.9128596, + "maxlat": 40.7758805, + "maxlon": -73.9125664 + }, + "nodes": [ + 11107965027, + 11107965028, + 11107965029 + ], + "geometry": [ + { "lat": 40.7758805, "lon": -73.9128596 }, + { "lat": 40.7758424, "lon": -73.9128075 }, + { "lat": 40.7756652, "lon": -73.9125664 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197112415, + "bounds": { + "minlat": 40.7765977, + "minlon": -73.9108656, + "maxlat": 40.7771186, + "maxlon": -73.9101664 + }, + "nodes": [ + 11107965030, + 11107965031, + 11107965033, + 11107965032, + 11107965034 + ], + "geometry": [ + { "lat": 40.7765977, "lon": -73.9101664 }, + { "lat": 40.7766611, "lon": -73.9102635 }, + { "lat": 40.7769528, "lon": -73.9106627 }, + { "lat": 40.7770246, "lon": -73.9107240 }, + { "lat": 40.7771186, "lon": -73.9108656 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197112416, + "bounds": { + "minlat": 40.7777669, + "minlon": -73.9103004, + "maxlat": 40.7779788, + "maxlon": -73.9099819 + }, + "nodes": [ + 11107965035, + 11107965036, + 11107965037 + ], + "geometry": [ + { "lat": 40.7779788, "lon": -73.9103004 }, + { "lat": 40.7779440, "lon": -73.9102442 }, + { "lat": 40.7777669, "lon": -73.9099819 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197112417, + "bounds": { + "minlat": 40.7780631, + "minlon": -73.9099331, + "maxlat": 40.7782768, + "maxlon": -73.9096153 + }, + "nodes": [ + 11107965038, + 11107965039, + 11107965040 + ], + "geometry": [ + { "lat": 40.7782768, "lon": -73.9099331 }, + { "lat": 40.7782417, "lon": -73.9098813 }, + { "lat": 40.7780631, "lon": -73.9096153 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197112418, + "bounds": { + "minlat": 40.7783208, + "minlon": -73.9089594, + "maxlat": 40.7786480, + "maxlon": -73.9085582 + }, + "nodes": [ + 11114791907, + 11107965041, + 3144540461 + ], + "geometry": [ + { "lat": 40.7783208, "lon": -73.9089594 }, + { "lat": 40.7783777, "lon": -73.9088880 }, + { "lat": 40.7786480, "lon": -73.9085582 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197112420, + "bounds": { + "minlat": 40.7781925, + "minlon": -73.9154261, + "maxlat": 40.7783866, + "maxlon": -73.9151573 + }, + "nodes": [ + 11107965043, + 11107965044, + 11107965045 + ], + "geometry": [ + { "lat": 40.7783866, "lon": -73.9154261 }, + { "lat": 40.7782398, "lon": -73.9152254 }, + { "lat": 40.7781925, "lon": -73.9151573 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197112421, + "bounds": { + "minlat": 40.7782942, + "minlon": -73.9153144, + "maxlat": 40.7784863, + "maxlon": -73.9150330 + }, + "nodes": [ + 11107965046, + 11107965047, + 11107965048 + ], + "geometry": [ + { "lat": 40.7784863, "lon": -73.9153144 }, + { "lat": 40.7783409, "lon": -73.9151020 }, + { "lat": 40.7782942, "lon": -73.9150330 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197112422, + "bounds": { + "minlat": 40.7783965, + "minlon": -73.9151847, + "maxlat": 40.7785863, + "maxlon": -73.9149080 + }, + "nodes": [ + 11107965049, + 11107965050, + 11107965051 + ], + "geometry": [ + { "lat": 40.7785863, "lon": -73.9151847 }, + { "lat": 40.7784427, "lon": -73.9149776 }, + { "lat": 40.7783965, "lon": -73.9149080 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1197112423, + "bounds": { + "minlat": 40.7785113, + "minlon": -73.9150538, + "maxlat": 40.7786761, + "maxlon": -73.9147678 + }, + "nodes": [ + 11107965052, + 11107965053, + 2389598793 + ], + "geometry": [ + { "lat": 40.7786761, "lon": -73.9150538 }, + { "lat": 40.7785435, "lon": -73.9148545 }, + { "lat": 40.7785113, "lon": -73.9147678 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1198575060, + "bounds": { + "minlat": 40.8298559, + "minlon": -73.9181280, + "maxlat": 40.8299692, + "maxlon": -73.9177049 + }, + "nodes": [ + 11118481025, + 12038479053, + 11118481024 + ], + "geometry": [ + { "lat": 40.8299692, "lon": -73.9181280 }, + { "lat": 40.8299469, "lon": -73.9180448 }, + { "lat": 40.8298559, "lon": -73.9177049 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "East 165th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1198575061, + "bounds": { + "minlat": 40.8298559, + "minlon": -73.9180830, + "maxlat": 40.8300551, + "maxlon": -73.9177049 + }, + "nodes": [ + 11118481024, + 12038479054, + 42731631 + ], + "geometry": [ + { "lat": 40.8298559, "lon": -73.9177049 }, + { "lat": 40.8300166, "lon": -73.9180100 }, + { "lat": 40.8300551, "lon": -73.9180830 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "East 165th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1198575062, + "bounds": { + "minlat": 40.8299692, + "minlon": -73.9194625, + "maxlat": 40.8304788, + "maxlon": -73.9181280 + }, + "nodes": [ + 11118481022, + 13017154379, + 12697054969, + 11118481026, + 12697054963, + 13018326314, + 11118481025 + ], + "geometry": [ + { "lat": 40.8304788, "lon": -73.9194625 }, + { "lat": 40.8304253, "lon": -73.9193303 }, + { "lat": 40.8303126, "lon": -73.9190516 }, + { "lat": 40.8302823, "lon": -73.9189723 }, + { "lat": 40.8302551, "lon": -73.9188990 }, + { "lat": 40.8300020, "lon": -73.9182165 }, + { "lat": 40.8299692, "lon": -73.9181280 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "name": "East 165th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1198575063, + "bounds": { + "minlat": 40.8304788, + "minlon": -73.9198560, + "maxlat": 40.8306276, + "maxlon": -73.9194625 + }, + "nodes": [ + 10126985483, + 11118481022 + ], + "geometry": [ + { "lat": 40.8306276, "lon": -73.9198560 }, + { "lat": 40.8304788, "lon": -73.9194625 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "tertiary", + "name": "East 165th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "165th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1198594026, + "bounds": { + "minlat": 40.7579117, + "minlon": -73.9892961, + "maxlat": 40.7585323, + "maxlon": -73.9888429 + }, + "nodes": [ + 5849918504, + 10168088471, + 10168088478, + 42435671 + ], + "geometry": [ + { "lat": 40.7579117, "lon": -73.9892961 }, + { "lat": 40.7579767, "lon": -73.9892486 }, + { "lat": 40.7584816, "lon": -73.9888800 }, + { "lat": 40.7585323, "lon": -73.9888429 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1198594027, + "bounds": { + "minlat": 40.7574076, + "minlon": -73.9888429, + "maxlat": 40.7585323, + "maxlon": -73.9861699 + }, + "nodes": [ + 42435671, + 10168088476, + 42443559, + 10224024814 + ], + "geometry": [ + { "lat": 40.7585323, "lon": -73.9888429 }, + { "lat": 40.7584814, "lon": -73.9887219 }, + { "lat": 40.7578359, "lon": -73.9871891 }, + { "lat": 40.7574076, "lon": -73.9861699 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "name": "West 44th Street", + "name:ru": "Западная 44-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1198594028, + "bounds": { + "minlat": 40.7591595, + "minlon": -73.9908914, + "maxlat": 40.7602164, + "maxlon": -73.9883858 + }, + "nodes": [ + 42432700, + 10168088484, + 9665064785 + ], + "geometry": [ + { "lat": 40.7591595, "lon": -73.9883858 }, + { "lat": 40.7592205, "lon": -73.9885304 }, + { "lat": 40.7602164, "lon": -73.9908914 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "name": "West 45th Street", + "name:ru": "Западная 45-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1198594029, + "bounds": { + "minlat": 40.7588204, + "minlon": -73.9886329, + "maxlat": 40.7591595, + "maxlon": -73.9883858 + }, + "nodes": [ + 11191334801, + 10168088483, + 42432700 + ], + "geometry": [ + { "lat": 40.7588204, "lon": -73.9886329 }, + { "lat": 40.7591028, "lon": -73.9884271 }, + { "lat": 40.7591595, "lon": -73.9883858 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1198594030, + "bounds": { + "minlat": 40.7597869, + "minlon": -73.9879285, + "maxlat": 40.7601095, + "maxlon": -73.9876912 + }, + "nodes": [ + 42435675, + 2435108457, + 9469961217 + ], + "geometry": [ + { "lat": 40.7597869, "lon": -73.9879285 }, + { "lat": 40.7598511, "lon": -73.9878814 }, + { "lat": 40.7601095, "lon": -73.9876912 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1198898092, + "bounds": { + "minlat": 40.7317583, + "minlon": -73.9614086, + "maxlat": 40.7319898, + "maxlon": -73.9613686 + }, + "nodes": [ + 6578735393, + 12580931543 + ], + "geometry": [ + { "lat": 40.7319898, "lon": -73.9614086 }, + { "lat": 40.7317583, "lon": -73.9613686 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1198898093, + "bounds": { + "minlat": 40.7321127, + "minlon": -73.9614659, + "maxlat": 40.7323151, + "maxlon": -73.9614298 + }, + "nodes": [ + 12580931544, + 6578720853 + ], + "geometry": [ + { "lat": 40.7323151, "lon": -73.9614659 }, + { "lat": 40.7321127, "lon": -73.9614298 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199261475, + "bounds": { + "minlat": 40.7235607, + "minlon": -73.9401150, + "maxlat": 40.7279290, + "maxlon": -73.9393984 + }, + "nodes": [ + 42490491, + 9765038813, + 5891916888, + 9788947046, + 42479402, + 9788947047, + 5891914558, + 9788947409, + 42490496 + ], + "geometry": [ + { "lat": 40.7235607, "lon": -73.9393984 }, + { "lat": 40.7236129, "lon": -73.9394057 }, + { "lat": 40.7259565, "lon": -73.9397879 }, + { "lat": 40.7259994, "lon": -73.9397948 }, + { "lat": 40.7260620, "lon": -73.9398050 }, + { "lat": 40.7261420, "lon": -73.9398182 }, + { "lat": 40.7278156, "lon": -73.9400962 }, + { "lat": 40.7278585, "lon": -73.9401033 }, + { "lat": 40.7279290, "lon": -73.9401150 } + ], + "tags": { + "highway": "residential", + "name": "Morgan Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1199261476, + "bounds": { + "minlat": 40.7232911, + "minlon": -73.9422257, + "maxlat": 40.7235607, + "maxlon": -73.9393984 + }, + "nodes": [ + 42490491, + 9765038810, + 9935605485, + 42509188, + 9935605486, + 6235394700, + 42495896, + 6235394698, + 8672301499, + 6732842565, + 42509193 + ], + "geometry": [ + { "lat": 40.7235607, "lon": -73.9393984 }, + { "lat": 40.7235525, "lon": -73.9394845 }, + { "lat": 40.7234802, "lon": -73.9402420 }, + { "lat": 40.7234722, "lon": -73.9403254 }, + { "lat": 40.7234634, "lon": -73.9404174 }, + { "lat": 40.7233901, "lon": -73.9411855 }, + { "lat": 40.7233810, "lon": -73.9412807 }, + { "lat": 40.7233724, "lon": -73.9413706 }, + { "lat": 40.7233032, "lon": -73.9420959 }, + { "lat": 40.7232984, "lon": -73.9421494 }, + { "lat": 40.7232911, "lon": -73.9422257 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Driggs Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1199356176, + "bounds": { + "minlat": 40.8057996, + "minlon": -74.0173801, + "maxlat": 40.8060506, + "maxlon": -74.0169768 + }, + "nodes": [ + 11124378077, + 11124378078, + 11124378079 + ], + "geometry": [ + { "lat": 40.8058961, "lon": -74.0173801 }, + { "lat": 40.8057996, "lon": -74.0171313 }, + { "lat": 40.8060506, "lon": -74.0169768 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1199722165, + "bounds": { + "minlat": 40.7241149, + "minlon": -73.9433924, + "maxlat": 40.7241695, + "maxlon": -73.9433411 + }, + "nodes": [ + 9858852485, + 9858852486, + 9858852487, + 9858852488, + 9858852489, + 9858852490, + 9858852470, + 9858852485 + ], + "geometry": [ + { "lat": 40.7241303, "lon": -73.9433924 }, + { "lat": 40.7241599, "lon": -73.9433802 }, + { "lat": 40.7241672, "lon": -73.9433748 }, + { "lat": 40.7241695, "lon": -73.9433659 }, + { "lat": 40.7241682, "lon": -73.9433558 }, + { "lat": 40.7241620, "lon": -73.9433468 }, + { "lat": 40.7241149, "lon": -73.9433411 }, + { "lat": 40.7241303, "lon": -73.9433924 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1199722166, + "bounds": { + "minlat": 40.7241084, + "minlon": -73.9432778, + "maxlat": 40.7241528, + "maxlon": -73.9432080 + }, + "nodes": [ + 9858852443, + 9858852444, + 9858852445, + 9858852446, + 9858852448, + 9858852449, + 9858852443 + ], + "geometry": [ + { "lat": 40.7241111, "lon": -73.9432740 }, + { "lat": 40.7241414, "lon": -73.9432778 }, + { "lat": 40.7241528, "lon": -73.9432601 }, + { "lat": 40.7241458, "lon": -73.9432446 }, + { "lat": 40.7241330, "lon": -73.9432291 }, + { "lat": 40.7241084, "lon": -73.9432080 }, + { "lat": 40.7241111, "lon": -73.9432740 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1199973811, + "bounds": { + "minlat": 40.7087211, + "minlon": -73.9114551, + "maxlat": 40.7088983, + "maxlon": -73.9111644 + }, + "nodes": [ + 11128528741, + 11128528743, + 11128528742 + ], + "geometry": [ + { "lat": 40.7088983, "lon": -73.9114551 }, + { "lat": 40.7087615, "lon": -73.9112308 }, + { "lat": 40.7087211, "lon": -73.9111644 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973812, + "bounds": { + "minlat": 40.7108790, + "minlon": -73.9087941, + "maxlat": 40.7110519, + "maxlon": -73.9084996 + }, + "nodes": [ + 11128528744, + 11128528746, + 11128528745 + ], + "geometry": [ + { "lat": 40.7110519, "lon": -73.9087941 }, + { "lat": 40.7110133, "lon": -73.9087284 }, + { "lat": 40.7108790, "lon": -73.9084996 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973813, + "bounds": { + "minlat": 40.7107662, + "minlon": -73.9088998, + "maxlat": 40.7109457, + "maxlon": -73.9085969 + }, + "nodes": [ + 11128528747, + 11128528752, + 11128528748 + ], + "geometry": [ + { "lat": 40.7109457, "lon": -73.9088998 }, + { "lat": 40.7109081, "lon": -73.9088364 }, + { "lat": 40.7107662, "lon": -73.9085969 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973814, + "bounds": { + "minlat": 40.7109813, + "minlon": -73.9086889, + "maxlat": 40.7111583, + "maxlon": -73.9083918 + }, + "nodes": [ + 11128528749, + 11128528751, + 11128528750 + ], + "geometry": [ + { "lat": 40.7111583, "lon": -73.9086889 }, + { "lat": 40.7111179, "lon": -73.9086210 }, + { "lat": 40.7109813, "lon": -73.9083918 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973815, + "bounds": { + "minlat": 40.7110806, + "minlon": -73.9085852, + "maxlat": 40.7112614, + "maxlon": -73.9082757 + }, + "nodes": [ + 11128528753, + 11128528755, + 11128528754 + ], + "geometry": [ + { "lat": 40.7112614, "lon": -73.9085852 }, + { "lat": 40.7112206, "lon": -73.9085155 }, + { "lat": 40.7110806, "lon": -73.9082757 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973816, + "bounds": { + "minlat": 40.7111892, + "minlon": -73.9084784, + "maxlat": 40.7113662, + "maxlon": -73.9081773 + }, + "nodes": [ + 11128528756, + 11128528758, + 11128528757 + ], + "geometry": [ + { "lat": 40.7113662, "lon": -73.9084784 }, + { "lat": 40.7113250, "lon": -73.9084083 }, + { "lat": 40.7111892, "lon": -73.9081773 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973817, + "bounds": { + "minlat": 40.7112952, + "minlon": -73.9083741, + "maxlat": 40.7114730, + "maxlon": -73.9080695 + }, + "nodes": [ + 11128528759, + 11128528761, + 11128528760 + ], + "geometry": [ + { "lat": 40.7114730, "lon": -73.9083741 }, + { "lat": 40.7114300, "lon": -73.9083005 }, + { "lat": 40.7112952, "lon": -73.9080695 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973818, + "bounds": { + "minlat": 40.7114019, + "minlon": -73.9082698, + "maxlat": 40.7115797, + "maxlon": -73.9079651 + }, + "nodes": [ + 11128528762, + 11128528763, + 11128528764 + ], + "geometry": [ + { "lat": 40.7115797, "lon": -73.9082698 }, + { "lat": 40.7115348, "lon": -73.9081928 }, + { "lat": 40.7114019, "lon": -73.9079651 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973819, + "bounds": { + "minlat": 40.7115077, + "minlon": -73.9081665, + "maxlat": 40.7116855, + "maxlon": -73.9078618 + }, + "nodes": [ + 11128528765, + 11128528766, + 11128528767 + ], + "geometry": [ + { "lat": 40.7116855, "lon": -73.9081665 }, + { "lat": 40.7116386, "lon": -73.9080862 }, + { "lat": 40.7115077, "lon": -73.9078618 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973820, + "bounds": { + "minlat": 40.7112659, + "minlon": -73.9076795, + "maxlat": 40.7114434, + "maxlon": -73.9073754 + }, + "nodes": [ + 11128528768, + 11128528770, + 11128528769 + ], + "geometry": [ + { "lat": 40.7114434, "lon": -73.9076795 }, + { "lat": 40.7113113, "lon": -73.9074532 }, + { "lat": 40.7112659, "lon": -73.9073754 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973821, + "bounds": { + "minlat": 40.7111693, + "minlon": -73.9077790, + "maxlat": 40.7113474, + "maxlon": -73.9074738 + }, + "nodes": [ + 11128528771, + 11128528772, + 11128528773 + ], + "geometry": [ + { "lat": 40.7113474, "lon": -73.9077790 }, + { "lat": 40.7112145, "lon": -73.9075513 }, + { "lat": 40.7111693, "lon": -73.9074738 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973822, + "bounds": { + "minlat": 40.7110740, + "minlon": -73.9078718, + "maxlat": 40.7112497, + "maxlon": -73.9075708 + }, + "nodes": [ + 11128528774, + 11128528776, + 11128528775 + ], + "geometry": [ + { "lat": 40.7112497, "lon": -73.9078718 }, + { "lat": 40.7111191, "lon": -73.9076481 }, + { "lat": 40.7110740, "lon": -73.9075708 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973823, + "bounds": { + "minlat": 40.7109787, + "minlon": -73.9079728, + "maxlat": 40.7111567, + "maxlon": -73.9076678 + }, + "nodes": [ + 11128528777, + 11128528779, + 11128528778 + ], + "geometry": [ + { "lat": 40.7111567, "lon": -73.9079728 }, + { "lat": 40.7110237, "lon": -73.9077448 }, + { "lat": 40.7109787, "lon": -73.9076678 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973824, + "bounds": { + "minlat": 40.7108847, + "minlon": -73.9080668, + "maxlat": 40.7110616, + "maxlon": -73.9077637 + }, + "nodes": [ + 11128528780, + 11128528782, + 11128528781 + ], + "geometry": [ + { "lat": 40.7110616, "lon": -73.9080668 }, + { "lat": 40.7109295, "lon": -73.9078404 }, + { "lat": 40.7108847, "lon": -73.9077637 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973825, + "bounds": { + "minlat": 40.7107766, + "minlon": -73.9081783, + "maxlat": 40.7109541, + "maxlon": -73.9078742 + }, + "nodes": [ + 11128528783, + 11128528785, + 11128528784 + ], + "geometry": [ + { "lat": 40.7109541, "lon": -73.9081783 }, + { "lat": 40.7108211, "lon": -73.9079503 }, + { "lat": 40.7107766, "lon": -73.9078742 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973826, + "bounds": { + "minlat": 40.7106701, + "minlon": -73.9082869, + "maxlat": 40.7108474, + "maxlon": -73.9079831 + }, + "nodes": [ + 11128528786, + 11128528788, + 11128528787 + ], + "geometry": [ + { "lat": 40.7108474, "lon": -73.9082869 }, + { "lat": 40.7107143, "lon": -73.9080587 }, + { "lat": 40.7106701, "lon": -73.9079831 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973827, + "bounds": { + "minlat": 40.7105595, + "minlon": -73.9084001, + "maxlat": 40.7107368, + "maxlon": -73.9080962 + }, + "nodes": [ + 11128528789, + 11128528791, + 11128528790 + ], + "geometry": [ + { "lat": 40.7107368, "lon": -73.9084001 }, + { "lat": 40.7106032, "lon": -73.9081712 }, + { "lat": 40.7105595, "lon": -73.9080962 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973828, + "bounds": { + "minlat": 40.7104863, + "minlon": -73.9079894, + "maxlat": 40.7106639, + "maxlon": -73.9076851 + }, + "nodes": [ + 11128528792, + 11128528794, + 11128528793 + ], + "geometry": [ + { "lat": 40.7106639, "lon": -73.9079894 }, + { "lat": 40.7106309, "lon": -73.9079329 }, + { "lat": 40.7104863, "lon": -73.9076851 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973829, + "bounds": { + "minlat": 40.7113952, + "minlon": -73.9070762, + "maxlat": 40.7115619, + "maxlon": -73.9067861 + }, + "nodes": [ + 11128528798, + 11128528796, + 11128528795 + ], + "geometry": [ + { "lat": 40.7115619, "lon": -73.9070762 }, + { "lat": 40.7115284, "lon": -73.9070178 }, + { "lat": 40.7113952, "lon": -73.9067861 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973830, + "bounds": { + "minlat": 40.7115619, + "minlon": -73.9073807, + "maxlat": 40.7117370, + "maxlon": -73.9070762 + }, + "nodes": [ + 11128528797, + 11128528799, + 11128528798 + ], + "geometry": [ + { "lat": 40.7117370, "lon": -73.9073807 }, + { "lat": 40.7116033, "lon": -73.9071481 }, + { "lat": 40.7115619, "lon": -73.9070762 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973831, + "bounds": { + "minlat": 40.7116641, + "minlon": -73.9072821, + "maxlat": 40.7118436, + "maxlon": -73.9069744 + }, + "nodes": [ + 11128528800, + 11128528802, + 11128528801 + ], + "geometry": [ + { "lat": 40.7118436, "lon": -73.9072821 }, + { "lat": 40.7117046, "lon": -73.9070438 }, + { "lat": 40.7116641, "lon": -73.9069744 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973832, + "bounds": { + "minlat": 40.7117720, + "minlon": -73.9071717, + "maxlat": 40.7119498, + "maxlon": -73.9068670 + }, + "nodes": [ + 11128528803, + 11128557505, + 11128528804 + ], + "geometry": [ + { "lat": 40.7119498, "lon": -73.9071717 }, + { "lat": 40.7118111, "lon": -73.9069340 }, + { "lat": 40.7117720, "lon": -73.9068670 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973833, + "bounds": { + "minlat": 40.7118765, + "minlon": -73.9070655, + "maxlat": 40.7120529, + "maxlon": -73.9067631 + }, + "nodes": [ + 11128557506, + 11128557508, + 11128557507 + ], + "geometry": [ + { "lat": 40.7120529, "lon": -73.9070655 }, + { "lat": 40.7119142, "lon": -73.9068277 }, + { "lat": 40.7118765, "lon": -73.9067631 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973834, + "bounds": { + "minlat": 40.7119826, + "minlon": -73.9069622, + "maxlat": 40.7121605, + "maxlon": -73.9066574 + }, + "nodes": [ + 11128557509, + 11128557511, + 11128557510 + ], + "geometry": [ + { "lat": 40.7121605, "lon": -73.9069622 }, + { "lat": 40.7120190, "lon": -73.9067197 }, + { "lat": 40.7119826, "lon": -73.9066574 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973835, + "bounds": { + "minlat": 40.7120880, + "minlon": -73.9068542, + "maxlat": 40.7122640, + "maxlon": -73.9065525 + }, + "nodes": [ + 11128557512, + 11128557514, + 11128557513 + ], + "geometry": [ + { "lat": 40.7122640, "lon": -73.9068542 }, + { "lat": 40.7121230, "lon": -73.9066126 }, + { "lat": 40.7120880, "lon": -73.9065525 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973836, + "bounds": { + "minlat": 40.7121944, + "minlon": -73.9067415, + "maxlat": 40.7123675, + "maxlon": -73.9064465 + }, + "nodes": [ + 11128557515, + 11128557517, + 11128557516 + ], + "geometry": [ + { "lat": 40.7123675, "lon": -73.9067415 }, + { "lat": 40.7122282, "lon": -73.9065041 }, + { "lat": 40.7121944, "lon": -73.9064465 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973837, + "bounds": { + "minlat": 40.7122964, + "minlon": -73.9066405, + "maxlat": 40.7124689, + "maxlon": -73.9063450 + }, + "nodes": [ + 11128557518, + 11128557520, + 11128557519 + ], + "geometry": [ + { "lat": 40.7124689, "lon": -73.9066405 }, + { "lat": 40.7123288, "lon": -73.9064005 }, + { "lat": 40.7122964, "lon": -73.9063450 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973838, + "bounds": { + "minlat": 40.7124039, + "minlon": -73.9065233, + "maxlat": 40.7125703, + "maxlon": -73.9062380 + }, + "nodes": [ + 11128557521, + 11128557523, + 11128557522 + ], + "geometry": [ + { "lat": 40.7125703, "lon": -73.9065233 }, + { "lat": 40.7124349, "lon": -73.9062912 }, + { "lat": 40.7124039, "lon": -73.9062380 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973845, + "bounds": { + "minlat": 40.7101767, + "minlon": -73.9076940, + "maxlat": 40.7102605, + "maxlon": -73.9073749 + }, + "nodes": [ + 11128557542, + 11128557544, + 11128557543 + ], + "geometry": [ + { "lat": 40.7101767, "lon": -73.9076940 }, + { "lat": 40.7102405, "lon": -73.9074511 }, + { "lat": 40.7102605, "lon": -73.9073749 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973846, + "bounds": { + "minlat": 40.7103048, + "minlon": -73.9077484, + "maxlat": 40.7103879, + "maxlon": -73.9074339 + }, + "nodes": [ + 11128557545, + 11128557547, + 11128557546 + ], + "geometry": [ + { "lat": 40.7103048, "lon": -73.9077484 }, + { "lat": 40.7103680, "lon": -73.9075093 }, + { "lat": 40.7103879, "lon": -73.9074339 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973849, + "bounds": { + "minlat": 40.7009074, + "minlon": -73.9104410, + "maxlat": 40.7011395, + "maxlon": -73.9100560 + }, + "nodes": [ + 11128557560, + 11128557563, + 11128557561, + 11128557562 + ], + "geometry": [ + { "lat": 40.7009074, "lon": -73.9104410 }, + { "lat": 40.7009633, "lon": -73.9103856 }, + { "lat": 40.7011395, "lon": -73.9102106 }, + { "lat": 40.7010513, "lon": -73.9100560 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1199973850, + "bounds": { + "minlat": 40.7070851, + "minlon": -73.9527392, + "maxlat": 40.7073870, + "maxlon": -73.9525661 + }, + "nodes": [ + 11128557567, + 11128557569, + 11128557568 + ], + "geometry": [ + { "lat": 40.7070851, "lon": -73.9527392 }, + { "lat": 40.7073331, "lon": -73.9525970 }, + { "lat": 40.7073870, "lon": -73.9525661 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1200747358, + "bounds": { + "minlat": 40.8416946, + "minlon": -73.9994252, + "maxlat": 40.8417248, + "maxlon": -73.9993946 + }, + "nodes": [ + 530805618, + 530805885 + ], + "geometry": [ + { "lat": 40.8416946, "lon": -73.9994252 }, + { "lat": 40.8417248, "lon": -73.9993946 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Roff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Roff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650", + "turn:lanes:backward": "left;through", + "turn:lanes:forward": "left;through" + } +}, +{ + "type": "way", + "id": 1200765971, + "bounds": { + "minlat": 40.7707669, + "minlon": -73.9190989, + "maxlat": 40.7710852, + "maxlon": -73.9187365 + }, + "nodes": [ + 42796436, + 8612091312, + 11133577137 + ], + "geometry": [ + { "lat": 40.7710852, "lon": -73.9187365 }, + { "lat": 40.7710245, "lon": -73.9187904 }, + { "lat": 40.7707669, "lon": -73.9190989 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "1", + "name": "29th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1200773878, + "bounds": { + "minlat": 40.7107672, + "minlon": -73.9912480, + "maxlat": 40.7108543, + "maxlon": -73.9912145 + }, + "nodes": [ + 11133638286, + 11133638264, + 11648380267, + 11133638265, + 11133638266 + ], + "geometry": [ + { "lat": 40.7108543, "lon": -73.9912165 }, + { "lat": 40.7108392, "lon": -73.9912145 }, + { "lat": 40.7108219, "lon": -73.9912151 }, + { "lat": 40.7108024, "lon": -73.9912230 }, + { "lat": 40.7107672, "lon": -73.9912480 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1200773879, + "bounds": { + "minlat": 40.7106332, + "minlon": -73.9914146, + "maxlat": 40.7107857, + "maxlon": -73.9912143 + }, + "nodes": [ + 11133638283, + 11133638266, + 11133638284, + 11648398417, + 11133638267, + 11648398418, + 11133638268, + 11133638269, + 11133638270, + 11133638271, + 11133638272, + 11133638280, + 11133638281, + 11133638282, + 11133638273, + 11133638274, + 11133638275, + 11133638276, + 11133638277, + 11133638278, + 11133638279, + 11133638283 + ], + "geometry": [ + { "lat": 40.7107474, "lon": -73.9912265 }, + { "lat": 40.7107672, "lon": -73.9912480 }, + { "lat": 40.7107780, "lon": -73.9912695 }, + { "lat": 40.7107843, "lon": -73.9912940 }, + { "lat": 40.7107857, "lon": -73.9913197 }, + { "lat": 40.7107820, "lon": -73.9913451 }, + { "lat": 40.7107736, "lon": -73.9913684 }, + { "lat": 40.7107610, "lon": -73.9913882 }, + { "lat": 40.7107450, "lon": -73.9914030 }, + { "lat": 40.7107267, "lon": -73.9914120 }, + { "lat": 40.7107072, "lon": -73.9914146 }, + { "lat": 40.7106879, "lon": -73.9914105 }, + { "lat": 40.7106648, "lon": -73.9913957 }, + { "lat": 40.7106468, "lon": -73.9913715 }, + { "lat": 40.7106359, "lon": -73.9913409 }, + { "lat": 40.7106332, "lon": -73.9913073 }, + { "lat": 40.7106392, "lon": -73.9912743 }, + { "lat": 40.7106531, "lon": -73.9912459 }, + { "lat": 40.7106733, "lon": -73.9912251 }, + { "lat": 40.7106977, "lon": -73.9912143 }, + { "lat": 40.7107233, "lon": -73.9912148 }, + { "lat": 40.7107474, "lon": -73.9912265 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1200773880, + "bounds": { + "minlat": 40.7109231, + "minlon": -73.9912698, + "maxlat": 40.7110277, + "maxlon": -73.9912428 + }, + "nodes": [ + 11133638262, + 11133638263, + 11133638285 + ], + "geometry": [ + { "lat": 40.7110277, "lon": -73.9912698 }, + { "lat": 40.7109363, "lon": -73.9912466 }, + { "lat": 40.7109231, "lon": -73.9912428 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1200773881, + "bounds": { + "minlat": 40.7108543, + "minlon": -73.9912428, + "maxlat": 40.7109231, + "maxlon": -73.9912165 + }, + "nodes": [ + 11133638285, + 11133638286 + ], + "geometry": [ + { "lat": 40.7109231, "lon": -73.9912428 }, + { "lat": 40.7108543, "lon": -73.9912165 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1201027656, + "bounds": { + "minlat": 40.8702841, + "minlon": -74.0143535, + "maxlat": 40.8705181, + "maxlon": -74.0140034 + }, + "nodes": [ + 11135782028, + 11135782032, + 11135782038, + 11135782029, + 11135782039 + ], + "geometry": [ + { "lat": 40.8702841, "lon": -74.0140034 }, + { "lat": 40.8703417, "lon": -74.0141846 }, + { "lat": 40.8703676, "lon": -74.0142658 }, + { "lat": 40.8703992, "lon": -74.0143535 }, + { "lat": 40.8705181, "lon": -74.0142978 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1201027657, + "bounds": { + "minlat": 40.8701542, + "minlon": -74.0143303, + "maxlat": 40.8702331, + "maxlon": -74.0140653 + }, + "nodes": [ + 11135782030, + 11135782035, + 11135782031 + ], + "geometry": [ + { "lat": 40.8702331, "lon": -74.0143303 }, + { "lat": 40.8702071, "lon": -74.0142430 }, + { "lat": 40.8701542, "lon": -74.0140653 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1201027658, + "bounds": { + "minlat": 40.8702525, + "minlon": -74.0142248, + "maxlat": 40.8703184, + "maxlon": -74.0141965 + }, + "nodes": [ + 11135782033, + 11135782034 + ], + "geometry": [ + { "lat": 40.8703184, "lon": -74.0141965 }, + { "lat": 40.8702525, "lon": -74.0142248 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1201027659, + "bounds": { + "minlat": 40.8702766, + "minlon": -74.0143100, + "maxlat": 40.8703415, + "maxlon": -74.0142783 + }, + "nodes": [ + 11135782036, + 11135782037 + ], + "geometry": [ + { "lat": 40.8702766, "lon": -74.0143100 }, + { "lat": 40.8703415, "lon": -74.0142783 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1201027660, + "bounds": { + "minlat": 40.8702331, + "minlon": -74.0143303, + "maxlat": 40.8702766, + "maxlon": -74.0143100 + }, + "nodes": [ + 11135782030, + 11135782036 + ], + "geometry": [ + { "lat": 40.8702331, "lon": -74.0143303 }, + { "lat": 40.8702766, "lon": -74.0143100 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1201027661, + "bounds": { + "minlat": 40.8703415, + "minlon": -74.0142783, + "maxlat": 40.8703676, + "maxlon": -74.0142658 + }, + "nodes": [ + 11135782037, + 11135782038 + ], + "geometry": [ + { "lat": 40.8703415, "lon": -74.0142783 }, + { "lat": 40.8703676, "lon": -74.0142658 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1201027662, + "bounds": { + "minlat": 40.8702071, + "minlon": -74.0142430, + "maxlat": 40.8702525, + "maxlon": -74.0142248 + }, + "nodes": [ + 11135782034, + 11135782035 + ], + "geometry": [ + { "lat": 40.8702525, "lon": -74.0142248 }, + { "lat": 40.8702071, "lon": -74.0142430 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1201027663, + "bounds": { + "minlat": 40.8703184, + "minlon": -74.0141965, + "maxlat": 40.8703417, + "maxlon": -74.0141846 + }, + "nodes": [ + 11135782032, + 11135782033 + ], + "geometry": [ + { "lat": 40.8703417, "lon": -74.0141846 }, + { "lat": 40.8703184, "lon": -74.0141965 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1201027664, + "bounds": { + "minlat": 40.8703417, + "minlon": -74.0141846, + "maxlat": 40.8704532, + "maxlon": -74.0141131 + }, + "nodes": [ + 11135782040, + 11135782032 + ], + "geometry": [ + { "lat": 40.8704532, "lon": -74.0141131 }, + { "lat": 40.8703417, "lon": -74.0141846 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1201031497, + "bounds": { + "minlat": 40.8438215, + "minlon": -73.9156706, + "maxlat": 40.8440253, + "maxlon": -73.9151205 + }, + "nodes": [ + 11135829635, + 12044633654, + 11135829636, + 11135829643, + 11135829637, + 11135829638, + 11135829639, + 11135829640, + 11135829641, + 11135829642, + 11135829643 + ], + "geometry": [ + { "lat": 40.8438215, "lon": -73.9151205 }, + { "lat": 40.8438815, "lon": -73.9152607 }, + { "lat": 40.8438940, "lon": -73.9152898 }, + { "lat": 40.8439358, "lon": -73.9153965 }, + { "lat": 40.8440253, "lon": -73.9156026 }, + { "lat": 40.8440212, "lon": -73.9156246 }, + { "lat": 40.8439615, "lon": -73.9156700 }, + { "lat": 40.8439504, "lon": -73.9156706 }, + { "lat": 40.8438642, "lon": -73.9154757 }, + { "lat": 40.8438712, "lon": -73.9154539 }, + { "lat": 40.8439358, "lon": -73.9153965 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1201126537, + "bounds": { + "minlat": 40.7537566, + "minlon": -74.0022327, + "maxlat": 40.7538631, + "maxlon": -74.0020860 + }, + "nodes": [ + 11136536176, + 11136536177, + 11136536178, + 11136536179, + 11136560123, + 11136536180, + 11136536181, + 11136536182, + 11136536183, + 11136560316, + 11136536184, + 11136536185, + 11136536202, + 11136536186, + 11136536187, + 11136560315, + 11136536188, + 11136536189, + 11136536190, + 11136536191, + 11136560310, + 11136536192, + 11136536193, + 11136536194, + 11136536195, + 11136560318, + 11136536176 + ], + "geometry": [ + { "lat": 40.7538631, "lon": -74.0021688 }, + { "lat": 40.7538355, "lon": -74.0021712 }, + { "lat": 40.7538260, "lon": -74.0021881 }, + { "lat": 40.7538353, "lon": -74.0022248 }, + { "lat": 40.7538292, "lon": -74.0022285 }, + { "lat": 40.7538222, "lon": -74.0022327 }, + { "lat": 40.7538073, "lon": -74.0022004 }, + { "lat": 40.7537910, "lon": -74.0021958 }, + { "lat": 40.7537664, "lon": -74.0022151 }, + { "lat": 40.7537619, "lon": -74.0022080 }, + { "lat": 40.7537566, "lon": -74.0021997 }, + { "lat": 40.7537770, "lon": -74.0021702 }, + { "lat": 40.7537769, "lon": -74.0021584 }, + { "lat": 40.7537767, "lon": -74.0021458 }, + { "lat": 40.7537571, "lon": -74.0021217 }, + { "lat": 40.7537600, "lon": -74.0021157 }, + { "lat": 40.7537633, "lon": -74.0021089 }, + { "lat": 40.7537907, "lon": -74.0021245 }, + { "lat": 40.7538070, "lon": -74.0021191 }, + { "lat": 40.7538171, "lon": -74.0020860 }, + { "lat": 40.7538235, "lon": -74.0020885 }, + { "lat": 40.7538310, "lon": -74.0020915 }, + { "lat": 40.7538251, "lon": -74.0021271 }, + { "lat": 40.7538347, "lon": -74.0021455 }, + { "lat": 40.7538631, "lon": -74.0021484 }, + { "lat": 40.7538631, "lon": -74.0021584 }, + { "lat": 40.7538631, "lon": -74.0021688 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1201126565, + "bounds": { + "minlat": 40.7537127, + "minlon": -74.0027502, + "maxlat": 40.7539072, + "maxlon": -74.0024075 + }, + "nodes": [ + 8261122325, + 11136560253, + 11136560254, + 11136560255, + 11136560256, + 11136560257, + 11136560258, + 11136560259, + 8261122365, + 11136536198, + 8261122364, + 8261122363, + 8261122362, + 8261122361, + 8261122360, + 8261122359, + 8261122358, + 8261122357, + 8261122356, + 8261122325 + ], + "geometry": [ + { "lat": 40.7538792, "lon": -74.0027502 }, + { "lat": 40.7538881, "lon": -74.0027195 }, + { "lat": 40.7538977, "lon": -74.0026728 }, + { "lat": 40.7539072, "lon": -74.0026099 }, + { "lat": 40.7538753, "lon": -74.0025730 }, + { "lat": 40.7538394, "lon": -74.0025231 }, + { "lat": 40.7538080, "lon": -74.0024719 }, + { "lat": 40.7537873, "lon": -74.0024344 }, + { "lat": 40.7537158, "lon": -74.0024099 }, + { "lat": 40.7537127, "lon": -74.0024075 }, + { "lat": 40.7537184, "lon": -74.0024403 }, + { "lat": 40.7537330, "lon": -74.0024892 }, + { "lat": 40.7537531, "lon": -74.0025465 }, + { "lat": 40.7537778, "lon": -74.0026032 }, + { "lat": 40.7537968, "lon": -74.0026417 }, + { "lat": 40.7537869, "lon": -74.0026505 }, + { "lat": 40.7538216, "lon": -74.0027090 }, + { "lat": 40.7538380, "lon": -74.0026909 }, + { "lat": 40.7538586, "lon": -74.0027226 }, + { "lat": 40.7538792, "lon": -74.0027502 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1201126573, + "bounds": { + "minlat": 40.7544654, + "minlon": -74.0011103, + "maxlat": 40.7545174, + "maxlon": -74.0010655 + }, + "nodes": [ + 8261122509, + 6636032331 + ], + "geometry": [ + { "lat": 40.7544654, "lon": -74.0011103 }, + { "lat": 40.7545174, "lon": -74.0010655 } + ], + "tags": { + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "motor_vehicle": "destination", + "name": "Hudson Boulevard East", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q16980469", + "wikipedia": "en:Hudson Park and Boulevard" + } +}, +{ + "type": "way", + "id": 1201193416, + "bounds": { + "minlat": 40.7540388, + "minlon": -74.0026529, + "maxlat": 40.7542518, + "maxlon": -74.0021940 + }, + "nodes": [ + 8261122142, + 11137268531, + 11137268532, + 11137268533, + 11137268534, + 11137268535, + 11137268536, + 11137268537, + 11137268538, + 8261122152, + 8261122151, + 8261122150, + 8261122149, + 8261122148, + 8261122147, + 8261122146, + 8261122145, + 8261122144, + 8261122143, + 8261122142 + ], + "geometry": [ + { "lat": 40.7542518, "lon": -74.0026529 }, + { "lat": 40.7541885, "lon": -74.0026261 }, + { "lat": 40.7541791, "lon": -74.0025744 }, + { "lat": 40.7541662, "lon": -74.0025184 }, + { "lat": 40.7541497, "lon": -74.0024649 }, + { "lat": 40.7541322, "lon": -74.0024133 }, + { "lat": 40.7541103, "lon": -74.0023570 }, + { "lat": 40.7540757, "lon": -74.0022795 }, + { "lat": 40.7540388, "lon": -74.0022110 }, + { "lat": 40.7540578, "lon": -74.0021940 }, + { "lat": 40.7540838, "lon": -74.0022276 }, + { "lat": 40.7541122, "lon": -74.0022674 }, + { "lat": 40.7541366, "lon": -74.0023069 }, + { "lat": 40.7541639, "lon": -74.0023536 }, + { "lat": 40.7541962, "lon": -74.0024215 }, + { "lat": 40.7542197, "lon": -74.0024788 }, + { "lat": 40.7542332, "lon": -74.0025241 }, + { "lat": 40.7542418, "lon": -74.0025670 }, + { "lat": 40.7542470, "lon": -74.0026049 }, + { "lat": 40.7542518, "lon": -74.0026529 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1201193458, + "bounds": { + "minlat": 40.7543996, + "minlon": -74.0018508, + "maxlat": 40.7545962, + "maxlon": -74.0016258 + }, + "nodes": [ + 8261122538, + 11137273819, + 11137273820, + 11137273821, + 11137273822, + 11137273823, + 11137273824, + 11137273825, + 11137273826, + 8261122535, + 8261122536, + 8261122579, + 8261122537, + 11137273817, + 8261122538 + ], + "geometry": [ + { "lat": 40.7545160, "lon": -74.0016258 }, + { "lat": 40.7545649, "lon": -74.0016396 }, + { "lat": 40.7545962, "lon": -74.0016532 }, + { "lat": 40.7545748, "lon": -74.0016935 }, + { "lat": 40.7545480, "lon": -74.0017305 }, + { "lat": 40.7545117, "lon": -74.0017713 }, + { "lat": 40.7544754, "lon": -74.0018056 }, + { "lat": 40.7544371, "lon": -74.0018372 }, + { "lat": 40.7544115, "lon": -74.0018508 }, + { "lat": 40.7543996, "lon": -74.0018302 }, + { "lat": 40.7544314, "lon": -74.0017809 }, + { "lat": 40.7544514, "lon": -74.0017474 }, + { "lat": 40.7544768, "lon": -74.0017051 }, + { "lat": 40.7545007, "lon": -74.0016598 }, + { "lat": 40.7545160, "lon": -74.0016258 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1201193460, + "bounds": { + "minlat": 40.7545353, + "minlon": -74.0016189, + "maxlat": 40.7546146, + "maxlon": -74.0014881 + }, + "nodes": [ + 8261122614, + 11137273842, + 11137273843, + 11137273844, + 11137273845, + 11137273846, + 11137273847, + 11137273848, + 11137273849, + 11137273838, + 8261122620, + 8261122621, + 8261122622, + 8261122614 + ], + "geometry": [ + { "lat": 40.7545353, "lon": -74.0015836 }, + { "lat": 40.7545643, "lon": -74.0015954 }, + { "lat": 40.7545917, "lon": -74.0016088 }, + { "lat": 40.7546084, "lon": -74.0016189 }, + { "lat": 40.7546137, "lon": -74.0015933 }, + { "lat": 40.7546146, "lon": -74.0015713 }, + { "lat": 40.7546109, "lon": -74.0015493 }, + { "lat": 40.7545980, "lon": -74.0015222 }, + { "lat": 40.7545818, "lon": -74.0015039 }, + { "lat": 40.7545582, "lon": -74.0014881 }, + { "lat": 40.7545444, "lon": -74.0015320 }, + { "lat": 40.7545440, "lon": -74.0015506 }, + { "lat": 40.7545408, "lon": -74.0015706 }, + { "lat": 40.7545353, "lon": -74.0015836 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1201193493, + "bounds": { + "minlat": 40.7536078, + "minlon": -74.0024529, + "maxlat": 40.7536721, + "maxlon": -74.0022927 + }, + "nodes": [ + 8261122431, + 11137274022, + 11137274025, + 11137274023, + 11137274024, + 8261122354, + 8261122353, + 8261122352, + 11136536197, + 6364928236, + 8261122430, + 8261122431 + ], + "geometry": [ + { "lat": 40.7536078, "lon": -74.0023821 }, + { "lat": 40.7536268, "lon": -74.0024095 }, + { "lat": 40.7536383, "lon": -74.0024222 }, + { "lat": 40.7536483, "lon": -74.0024333 }, + { "lat": 40.7536721, "lon": -74.0024529 }, + { "lat": 40.7536657, "lon": -74.0024176 }, + { "lat": 40.7536588, "lon": -74.0023810 }, + { "lat": 40.7536526, "lon": -74.0023458 }, + { "lat": 40.7536377, "lon": -74.0023235 }, + { "lat": 40.7536172, "lon": -74.0022927 }, + { "lat": 40.7536148, "lon": -74.0023190 }, + { "lat": 40.7536078, "lon": -74.0023821 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1201217260, + "bounds": { + "minlat": 40.7037882, + "minlon": -73.9875523, + "maxlat": 40.7044557, + "maxlon": -73.9875126 + }, + "nodes": [ + 42469180, + 10726079611, + 8262935917, + 42469184 + ], + "geometry": [ + { "lat": 40.7044557, "lon": -73.9875126 }, + { "lat": 40.7044184, "lon": -73.9875150 }, + { "lat": 40.7038344, "lon": -73.9875488 }, + { "lat": 40.7037882, "lon": -73.9875523 } + ], + "tags": { + "cycleway": "shared_lane", + "cycleway:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Pearl Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1201248207, + "bounds": { + "minlat": 40.8500941, + "minlon": -74.0026295, + "maxlat": 40.8503705, + "maxlon": -74.0023761 + }, + "nodes": [ + 6477912318, + 6477912319, + 6477912322 + ], + "geometry": [ + { "lat": 40.8500941, "lon": -74.0026295 }, + { "lat": 40.8503436, "lon": -74.0023804 }, + { "lat": 40.8503705, "lon": -74.0023761 } + ], + "tags": { + "access": "private", + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1201468179, + "bounds": { + "minlat": 40.7462255, + "minlon": -73.9456937, + "maxlat": 40.7462576, + "maxlon": -73.9455263 + }, + "nodes": [ + 8334074897, + 11139159067, + 8996215477, + 42900397 + ], + "geometry": [ + { "lat": 40.7462576, "lon": -73.9456937 }, + { "lat": 40.7462531, "lon": -73.9456698 }, + { "lat": 40.7462478, "lon": -73.9456413 }, + { "lat": 40.7462255, "lon": -73.9455263 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "45th Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1201643836, + "bounds": { + "minlat": 40.7477980, + "minlon": -73.9821451, + "maxlat": 40.7482914, + "maxlon": -73.9809560 + }, + "nodes": [ + 561042191, + 11336685987, + 11140783103 + ], + "geometry": [ + { "lat": 40.7477980, "lon": -73.9809560 }, + { "lat": 40.7478340, "lon": -73.9810411 }, + { "lat": 40.7482914, "lon": -73.9821451 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 35th Street", + "name:ru": "Восточная 35-я стрит", + "name_1": "East 35 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1201643837, + "bounds": { + "minlat": 40.7484303, + "minlon": -73.9824775, + "maxlat": 40.7490548, + "maxlon": -73.9820225 + }, + "nodes": [ + 42434948, + 10173357077, + 11336685990, + 42445908 + ], + "geometry": [ + { "lat": 40.7484303, "lon": -73.9824775 }, + { "lat": 40.7484941, "lon": -73.9824309 }, + { "lat": 40.7489907, "lon": -73.9820679 }, + { "lat": 40.7490548, "lon": -73.9820225 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 1201643838, + "bounds": { + "minlat": 40.7482914, + "minlon": -73.9824775, + "maxlat": 40.7484303, + "maxlon": -73.9821451 + }, + "nodes": [ + 11140783103, + 10173357079, + 42434948 + ], + "geometry": [ + { "lat": 40.7482914, "lon": -73.9821451 }, + { "lat": 40.7483876, "lon": -73.9823753 }, + { "lat": 40.7484303, "lon": -73.9824775 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lit": "yes", + "name": "East 35th Street", + "name:ru": "Восточная 35-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "||right" + } +}, +{ + "type": "way", + "id": 1201651432, + "bounds": { + "minlat": 40.7583781, + "minlon": -73.9721563, + "maxlat": 40.7588665, + "maxlon": -73.9709896 + }, + "nodes": [ + 42436705, + 10165922659, + 3790180117, + 11140867101 + ], + "geometry": [ + { "lat": 40.7583781, "lon": -73.9709896 }, + { "lat": 40.7584279, "lon": -73.9711073 }, + { "lat": 40.7586848, "lon": -73.9717261 }, + { "lat": 40.7588665, "lon": -73.9721563 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 53rd Street", + "name:ru": "Восточная 53-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1201651434, + "bounds": { + "minlat": 40.7588665, + "minlon": -73.9725324, + "maxlat": 40.7590253, + "maxlon": -73.9721563 + }, + "nodes": [ + 11140867101, + 12834723244, + 10125228015, + 42436703 + ], + "geometry": [ + { "lat": 40.7588665, "lon": -73.9721563 }, + { "lat": 40.7589419, "lon": -73.9723347 }, + { "lat": 40.7589651, "lon": -73.9723898 }, + { "lat": 40.7590253, "lon": -73.9725324 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "name": "East 53rd Street", + "name:ru": "Восточная 53-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|through|right", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1201651435, + "bounds": { + "minlat": 40.7577792, + "minlon": -73.9734395, + "maxlat": 40.7590253, + "maxlon": -73.9725324 + }, + "nodes": [ + 42440456, + 10125233922, + 12834723248, + 10165922701, + 42452875, + 10125233920, + 12834723239, + 3977886227, + 42436703 + ], + "geometry": [ + { "lat": 40.7577792, "lon": -73.9734395 }, + { "lat": 40.7578333, "lon": -73.9734002 }, + { "lat": 40.7582995, "lon": -73.9730595 }, + { "lat": 40.7583483, "lon": -73.9730238 }, + { "lat": 40.7584106, "lon": -73.9729808 }, + { "lat": 40.7584616, "lon": -73.9729436 }, + { "lat": 40.7589272, "lon": -73.9726041 }, + { "lat": 40.7589702, "lon": -73.9725727 }, + { "lat": 40.7590253, "lon": -73.9725324 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1201651436, + "bounds": { + "minlat": 40.7590253, + "minlon": -73.9727039, + "maxlat": 40.7590978, + "maxlon": -73.9725324 + }, + "nodes": [ + 42436703, + 596775900 + ], + "geometry": [ + { "lat": 40.7590253, "lon": -73.9725324 }, + { "lat": 40.7590978, "lon": -73.9727039 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "East 53rd Street", + "name:ru": "Восточная 53-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640404", + "wikipedia": "en:53rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1201651437, + "bounds": { + "minlat": 40.7578528, + "minlon": -73.9736145, + "maxlat": 40.7590978, + "maxlon": -73.9727039 + }, + "nodes": [ + 596775900, + 3977886228, + 12834723247, + 10125233919, + 596775914, + 10165922702, + 12834723251, + 10125233921, + 596775876 + ], + "geometry": [ + { "lat": 40.7590978, "lon": -73.9727039 }, + { "lat": 40.7590412, "lon": -73.9727444 }, + { "lat": 40.7585814, "lon": -73.9730840 }, + { "lat": 40.7585333, "lon": -73.9731195 }, + { "lat": 40.7584847, "lon": -73.9731554 }, + { "lat": 40.7584208, "lon": -73.9732018 }, + { "lat": 40.7579538, "lon": -73.9735407 }, + { "lat": 40.7579063, "lon": -73.9735752 }, + { "lat": 40.7578528, "lon": -73.9736145 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1201728066, + "bounds": { + "minlat": 40.7545174, + "minlon": -74.0011781, + "maxlat": 40.7545676, + "maxlon": -74.0010655 + }, + "nodes": [ + 6636032331, + 8261122526, + 11141800809 + ], + "geometry": [ + { "lat": 40.7545174, "lon": -74.0010655 }, + { "lat": 40.7545522, "lon": -74.0011418 }, + { "lat": 40.7545676, "lon": -74.0011781 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1201829237, + "bounds": { + "minlat": 40.7556448, + "minlon": -74.0004552, + "maxlat": 40.7558878, + "maxlon": -74.0001738 + }, + "nodes": [ + 10299690835, + 11142683216, + 11142683217, + 11142683218, + 11142683219, + 11142683220, + 11142683221, + 11142683222, + 11142683223, + 11142683224, + 11142683225, + 11142683226, + 11142683227, + 11142683228, + 11142683229, + 11142683230, + 11142683231, + 11142683232, + 11142683233, + 11142683234, + 11142683235, + 11142683236, + 11142683237, + 11142683238, + 11142683239, + 11142683240, + 11142683241, + 11142683242, + 11142683243, + 11142683244, + 11142682911, + 11142683245, + 11142683246, + 11142683247, + 11142682912, + 11142683248, + 11142683249, + 11142683250, + 11142683251, + 6634480683, + 11142683252, + 11142683253, + 11142683254, + 6634480680, + 6634480679, + 6634480678, + 11142682919, + 4152119517, + 11142683214, + 11142683213, + 11142683212, + 11142683211, + 11142683210, + 11142683209, + 11142683208, + 11142683207, + 11142683206, + 11142683205, + 11142683204, + 11142683203, + 11142683202, + 11142683201, + 11142683200, + 11142683199, + 11142683198, + 11142683197, + 11142683196, + 11142683195, + 11142683194, + 11142683193, + 11142683192, + 11142683191, + 11142683190, + 11142683189, + 11142683188, + 11142683187, + 11142683186, + 4152119522, + 6634486290, + 10299690832, + 10299690835 + ], + "geometry": [ + { "lat": 40.7557278, "lon": -74.0002365 }, + { "lat": 40.7557164, "lon": -74.0002219 }, + { "lat": 40.7556947, "lon": -74.0002022 }, + { "lat": 40.7556775, "lon": -74.0001872 }, + { "lat": 40.7556635, "lon": -74.0001843 }, + { "lat": 40.7556482, "lon": -74.0001971 }, + { "lat": 40.7556451, "lon": -74.0002140 }, + { "lat": 40.7556448, "lon": -74.0002285 }, + { "lat": 40.7556523, "lon": -74.0002422 }, + { "lat": 40.7556701, "lon": -74.0002619 }, + { "lat": 40.7556818, "lon": -74.0002788 }, + { "lat": 40.7556936, "lon": -74.0003019 }, + { "lat": 40.7557036, "lon": -74.0003287 }, + { "lat": 40.7557096, "lon": -74.0003522 }, + { "lat": 40.7557096, "lon": -74.0003748 }, + { "lat": 40.7557100, "lon": -74.0003997 }, + { "lat": 40.7557096, "lon": -74.0004185 }, + { "lat": 40.7557136, "lon": -74.0004374 }, + { "lat": 40.7557196, "lon": -74.0004486 }, + { "lat": 40.7557317, "lon": -74.0004552 }, + { "lat": 40.7557449, "lon": -74.0004534 }, + { "lat": 40.7557574, "lon": -74.0004477 }, + { "lat": 40.7557763, "lon": -74.0004265 }, + { "lat": 40.7557984, "lon": -74.0004110 }, + { "lat": 40.7558148, "lon": -74.0004030 }, + { "lat": 40.7558340, "lon": -74.0003978 }, + { "lat": 40.7558618, "lon": -74.0003942 }, + { "lat": 40.7558785, "lon": -74.0003885 }, + { "lat": 40.7558854, "lon": -74.0003778 }, + { "lat": 40.7558878, "lon": -74.0003648 }, + { "lat": 40.7558870, "lon": -74.0003395 }, + { "lat": 40.7558833, "lon": -74.0003204 }, + { "lat": 40.7558704, "lon": -74.0002800 }, + { "lat": 40.7558548, "lon": -74.0002495 }, + { "lat": 40.7558395, "lon": -74.0002274 }, + { "lat": 40.7558191, "lon": -74.0002012 }, + { "lat": 40.7557999, "lon": -74.0001830 }, + { "lat": 40.7557897, "lon": -74.0001738 }, + { "lat": 40.7557840, "lon": -74.0001738 }, + { "lat": 40.7557821, "lon": -74.0001779 }, + { "lat": 40.7557810, "lon": -74.0001865 }, + { "lat": 40.7557831, "lon": -74.0001984 }, + { "lat": 40.7557864, "lon": -74.0002064 }, + { "lat": 40.7557939, "lon": -74.0002035 }, + { "lat": 40.7558016, "lon": -74.0002027 }, + { "lat": 40.7558112, "lon": -74.0002067 }, + { "lat": 40.7558184, "lon": -74.0002162 }, + { "lat": 40.7558254, "lon": -74.0002307 }, + { "lat": 40.7558330, "lon": -74.0002460 }, + { "lat": 40.7558505, "lon": -74.0002915 }, + { "lat": 40.7558644, "lon": -74.0003296 }, + { "lat": 40.7558714, "lon": -74.0003517 }, + { "lat": 40.7558691, "lon": -74.0003700 }, + { "lat": 40.7558616, "lon": -74.0003782 }, + { "lat": 40.7558415, "lon": -74.0003789 }, + { "lat": 40.7558186, "lon": -74.0003833 }, + { "lat": 40.7557947, "lon": -74.0003955 }, + { "lat": 40.7557751, "lon": -74.0004091 }, + { "lat": 40.7557609, "lon": -74.0004183 }, + { "lat": 40.7557501, "lon": -74.0004231 }, + { "lat": 40.7557424, "lon": -74.0004214 }, + { "lat": 40.7557331, "lon": -74.0004180 }, + { "lat": 40.7557275, "lon": -74.0004074 }, + { "lat": 40.7557241, "lon": -74.0003955 }, + { "lat": 40.7557246, "lon": -74.0003802 }, + { "lat": 40.7557244, "lon": -74.0003598 }, + { "lat": 40.7557203, "lon": -74.0003405 }, + { "lat": 40.7557141, "lon": -74.0003207 }, + { "lat": 40.7557038, "lon": -74.0002953 }, + { "lat": 40.7556922, "lon": -74.0002745 }, + { "lat": 40.7556824, "lon": -74.0002551 }, + { "lat": 40.7556809, "lon": -74.0002436 }, + { "lat": 40.7556847, "lon": -74.0002334 }, + { "lat": 40.7556904, "lon": -74.0002303 }, + { "lat": 40.7556958, "lon": -74.0002303 }, + { "lat": 40.7557009, "lon": -74.0002361 }, + { "lat": 40.7557092, "lon": -74.0002480 }, + { "lat": 40.7557182, "lon": -74.0002641 }, + { "lat": 40.7557194, "lon": -74.0002522 }, + { "lat": 40.7557225, "lon": -74.0002440 }, + { "lat": 40.7557278, "lon": -74.0002365 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1201829244, + "bounds": { + "minlat": 40.7559767, + "minlon": -74.0006232, + "maxlat": 40.7560148, + "maxlon": -74.0005326 + }, + "nodes": [ + 11142683312, + 2946230308, + 11142682907, + 11142683315, + 11142683314, + 11142682909, + 11142683313, + 11142683312 + ], + "geometry": [ + { "lat": 40.7559767, "lon": -74.0006232 }, + { "lat": 40.7560148, "lon": -74.0005903 }, + { "lat": 40.7560052, "lon": -74.0005670 }, + { "lat": 40.7559905, "lon": -74.0005326 }, + { "lat": 40.7559902, "lon": -74.0005517 }, + { "lat": 40.7559874, "lon": -74.0005721 }, + { "lat": 40.7559836, "lon": -74.0005989 }, + { "lat": 40.7559767, "lon": -74.0006232 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1201839350, + "bounds": { + "minlat": 40.7562515, + "minlon": -73.9954485, + "maxlat": 40.7563830, + "maxlon": -73.9953500 + }, + "nodes": [ + 11142777718, + 11142777719, + 11142777717, + 11142777732 + ], + "geometry": [ + { "lat": 40.7563830, "lon": -73.9953500 }, + { "lat": 40.7563680, "lon": -73.9953610 }, + { "lat": 40.7562911, "lon": -73.9954180 }, + { "lat": 40.7562515, "lon": -73.9954485 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1201839365, + "bounds": { + "minlat": 40.7557672, + "minlon": -73.9963387, + "maxlat": 40.7558935, + "maxlon": -73.9960333 + }, + "nodes": [ + 11142777748, + 12563291463, + 427842134 + ], + "geometry": [ + { "lat": 40.7557672, "lon": -73.9960333 }, + { "lat": 40.7558693, "lon": -73.9962799 }, + { "lat": 40.7558935, "lon": -73.9963387 } + ], + "tags": { + "bridge": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1201839368, + "bounds": { + "minlat": 40.7557196, + "minlon": -73.9960333, + "maxlat": 40.7557672, + "maxlon": -73.9959214 + }, + "nodes": [ + 11142777751, + 11142777779, + 11142777748 + ], + "geometry": [ + { "lat": 40.7557196, "lon": -73.9959214 }, + { "lat": 40.7557316, "lon": -73.9959496 }, + { "lat": 40.7557672, "lon": -73.9960333 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 37th Street", + "name:ru": "Западная 37-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1201839372, + "bounds": { + "minlat": 40.7553058, + "minlon": -73.9968539, + "maxlat": 40.7553596, + "maxlon": -73.9966895 + }, + "nodes": [ + 11142777760, + 11142777758, + 11142777761, + 11142777762, + 11142777763, + 11142777764, + 5889481216, + 11142777765, + 11142777766, + 11142777767, + 11142777768, + 11142777769, + 11142777770, + 11142777771, + 11142777772, + 11142777773, + 11142777778, + 11142777774, + 11142777775, + 11142777776, + 11142777777, + 11142777760 + ], + "geometry": [ + { "lat": 40.7553596, "lon": -73.9968510 }, + { "lat": 40.7553383, "lon": -73.9968023 }, + { "lat": 40.7553264, "lon": -73.9967709 }, + { "lat": 40.7553242, "lon": -73.9967581 }, + { "lat": 40.7553242, "lon": -73.9967477 }, + { "lat": 40.7553270, "lon": -73.9967370 }, + { "lat": 40.7553315, "lon": -73.9967303 }, + { "lat": 40.7553402, "lon": -73.9967188 }, + { "lat": 40.7553593, "lon": -73.9967023 }, + { "lat": 40.7553405, "lon": -73.9966895 }, + { "lat": 40.7553232, "lon": -73.9967077 }, + { "lat": 40.7553164, "lon": -73.9967155 }, + { "lat": 40.7553095, "lon": -73.9967378 }, + { "lat": 40.7553058, "lon": -73.9967568 }, + { "lat": 40.7553058, "lon": -73.9967779 }, + { "lat": 40.7553111, "lon": -73.9967994 }, + { "lat": 40.7553234, "lon": -73.9968287 }, + { "lat": 40.7553286, "lon": -73.9968411 }, + { "lat": 40.7553355, "lon": -73.9968493 }, + { "lat": 40.7553417, "lon": -73.9968531 }, + { "lat": 40.7553499, "lon": -73.9968539 }, + { "lat": 40.7553596, "lon": -73.9968510 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1201839375, + "bounds": { + "minlat": 40.7557316, + "minlon": -73.9959496, + "maxlat": 40.7558039, + "maxlon": -73.9958950 + }, + "nodes": [ + 11142777733, + 11142777780, + 11142777779 + ], + "geometry": [ + { "lat": 40.7558039, "lon": -73.9958950 }, + { "lat": 40.7557872, "lon": -73.9959076 }, + { "lat": 40.7557316, "lon": -73.9959496 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1201839383, + "bounds": { + "minlat": 40.7551640, + "minlon": -73.9964391, + "maxlat": 40.7552103, + "maxlon": -73.9963186 + }, + "nodes": [ + 11142777810, + 11142777811, + 11142777812, + 11142777813, + 11142777814, + 10994871984, + 11142777815, + 11142777816, + 11142777817, + 11142777809, + 11142777818, + 11142777819, + 11142777810 + ], + "geometry": [ + { "lat": 40.7552103, "lon": -73.9964391 }, + { "lat": 40.7551889, "lon": -73.9964269 }, + { "lat": 40.7551700, "lon": -73.9963982 }, + { "lat": 40.7551640, "lon": -73.9963757 }, + { "lat": 40.7551679, "lon": -73.9963563 }, + { "lat": 40.7551800, "lon": -73.9963377 }, + { "lat": 40.7551911, "lon": -73.9963193 }, + { "lat": 40.7552080, "lon": -73.9963186 }, + { "lat": 40.7551961, "lon": -73.9963369 }, + { "lat": 40.7551883, "lon": -73.9963579 }, + { "lat": 40.7551865, "lon": -73.9963733 }, + { "lat": 40.7551889, "lon": -73.9963901 }, + { "lat": 40.7552103, "lon": -73.9964391 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1201839384, + "bounds": { + "minlat": 40.7551865, + "minlon": -73.9964469, + "maxlat": 40.7553267, + "maxlon": -73.9962908 + }, + "nodes": [ + 11142777791, + 11142777825, + 11142777826, + 11142777827, + 10994871985, + 11142777828, + 11142777810, + 11142777819, + 11142777818, + 11142777809, + 11142777817, + 11142777816, + 11142777829, + 11142777792, + 427842125, + 11142777791 + ], + "geometry": [ + { "lat": 40.7553201, "lon": -73.9963756 }, + { "lat": 40.7553267, "lon": -73.9963824 }, + { "lat": 40.7552584, "lon": -73.9964347 }, + { "lat": 40.7552418, "lon": -73.9964460 }, + { "lat": 40.7552271, "lon": -73.9964469 }, + { "lat": 40.7552169, "lon": -73.9964448 }, + { "lat": 40.7552103, "lon": -73.9964391 }, + { "lat": 40.7551889, "lon": -73.9963901 }, + { "lat": 40.7551865, "lon": -73.9963733 }, + { "lat": 40.7551883, "lon": -73.9963579 }, + { "lat": 40.7551961, "lon": -73.9963369 }, + { "lat": 40.7552080, "lon": -73.9963186 }, + { "lat": 40.7552282, "lon": -73.9962908 }, + { "lat": 40.7552484, "lon": -73.9963110 }, + { "lat": 40.7552846, "lon": -73.9963440 }, + { "lat": 40.7553201, "lon": -73.9963756 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1201839404, + "bounds": { + "minlat": 40.7550803, + "minlon": -73.9963315, + "maxlat": 40.7551740, + "maxlon": -73.9962129 + }, + "nodes": [ + 11142777932, + 11142777933, + 11142777934, + 11142777830, + 11142777935, + 11142777936, + 11142777937, + 11142777831, + 11142777938, + 11142777823, + 5175213304, + 11142777822, + 5175213305, + 11142777821, + 11142777820, + 5175213283, + 5175213264, + 11142777932 + ], + "geometry": [ + { "lat": 40.7551740, "lon": -73.9962552 }, + { "lat": 40.7551732, "lon": -73.9962687 }, + { "lat": 40.7551698, "lon": -73.9962806 }, + { "lat": 40.7551616, "lon": -73.9962927 }, + { "lat": 40.7551342, "lon": -73.9963288 }, + { "lat": 40.7551299, "lon": -73.9963315 }, + { "lat": 40.7551260, "lon": -73.9963295 }, + { "lat": 40.7551165, "lon": -73.9963049 }, + { "lat": 40.7550811, "lon": -73.9962213 }, + { "lat": 40.7550803, "lon": -73.9962129 }, + { "lat": 40.7550889, "lon": -73.9962204 }, + { "lat": 40.7550951, "lon": -73.9962247 }, + { "lat": 40.7551237, "lon": -73.9962363 }, + { "lat": 40.7551307, "lon": -73.9962515 }, + { "lat": 40.7551412, "lon": -73.9962634 }, + { "lat": 40.7551513, "lon": -73.9962676 }, + { "lat": 40.7551653, "lon": -73.9962626 }, + { "lat": 40.7551740, "lon": -73.9962552 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1201839409, + "bounds": { + "minlat": 40.7546435, + "minlon": -73.9970797, + "maxlat": 40.7551312, + "maxlon": -73.9965052 + }, + "nodes": [ + 10994871987, + 11142777941, + 11142777973, + 11142777942, + 11142777943, + 11142777944, + 10691086276, + 11142777945, + 11142777946, + 11142777947, + 11142777948, + 11142777949, + 10691086277, + 11142777950, + 11142777951, + 11142777952, + 11142777953, + 11142777954, + 10994871986, + 11142777955, + 11142777956, + 11142777957, + 11142777958, + 11142777959, + 11142777980, + 11142777960, + 10994871987 + ], + "geometry": [ + { "lat": 40.7551249, "lon": -73.9966135 }, + { "lat": 40.7551176, "lon": -73.9966274 }, + { "lat": 40.7551050, "lon": -73.9966423 }, + { "lat": 40.7551014, "lon": -73.9966466 }, + { "lat": 40.7547569, "lon": -73.9969858 }, + { "lat": 40.7546789, "lon": -73.9970609 }, + { "lat": 40.7546631, "lon": -73.9970737 }, + { "lat": 40.7546574, "lon": -73.9970789 }, + { "lat": 40.7546504, "lon": -73.9970797 }, + { "lat": 40.7546447, "lon": -73.9970747 }, + { "lat": 40.7546435, "lon": -73.9970630 }, + { "lat": 40.7546466, "lon": -73.9970526 }, + { "lat": 40.7546518, "lon": -73.9970458 }, + { "lat": 40.7546687, "lon": -73.9970284 }, + { "lat": 40.7547964, "lon": -73.9968615 }, + { "lat": 40.7549712, "lon": -73.9966333 }, + { "lat": 40.7550559, "lon": -73.9965223 }, + { "lat": 40.7550708, "lon": -73.9965077 }, + { "lat": 40.7550808, "lon": -73.9965060 }, + { "lat": 40.7550920, "lon": -73.9965052 }, + { "lat": 40.7551033, "lon": -73.9965110 }, + { "lat": 40.7551128, "lon": -73.9965285 }, + { "lat": 40.7551305, "lon": -73.9965753 }, + { "lat": 40.7551312, "lon": -73.9965903 }, + { "lat": 40.7551297, "lon": -73.9965976 }, + { "lat": 40.7551283, "lon": -73.9966049 }, + { "lat": 40.7551249, "lon": -73.9966135 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1201839412, + "bounds": { + "minlat": 40.7551050, + "minlon": -73.9966603, + "maxlat": 40.7551489, + "maxlon": -73.9965976 + }, + "nodes": [ + 11142777973, + 11142777974, + 11142777981, + 11142777975, + 11142777976, + 11142777977, + 11142777978, + 11142777979, + 11142777980, + 11142777960, + 10994871987, + 11142777941, + 11142777973 + ], + "geometry": [ + { "lat": 40.7551050, "lon": -73.9966423 }, + { "lat": 40.7551152, "lon": -73.9966603 }, + { "lat": 40.7551367, "lon": -73.9966423 }, + { "lat": 40.7551411, "lon": -73.9966385 }, + { "lat": 40.7551486, "lon": -73.9966312 }, + { "lat": 40.7551489, "lon": -73.9966244 }, + { "lat": 40.7551388, "lon": -73.9966018 }, + { "lat": 40.7551344, "lon": -73.9965986 }, + { "lat": 40.7551297, "lon": -73.9965976 }, + { "lat": 40.7551283, "lon": -73.9966049 }, + { "lat": 40.7551249, "lon": -73.9966135 }, + { "lat": 40.7551176, "lon": -73.9966274 }, + { "lat": 40.7551050, "lon": -73.9966423 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1201839427, + "bounds": { + "minlat": 40.7586082, + "minlon": -73.9972521, + "maxlat": 40.7586789, + "maxlon": -73.9971988 + }, + "nodes": [ + 6905716426, + 11142778157, + 8288270416, + 11142778058 + ], + "geometry": [ + { "lat": 40.7586789, "lon": -73.9971988 }, + { "lat": 40.7586402, "lon": -73.9972280 }, + { "lat": 40.7586254, "lon": -73.9972391 }, + { "lat": 40.7586082, "lon": -73.9972521 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1201839428, + "bounds": { + "minlat": 40.7584133, + "minlon": -73.9967920, + "maxlat": 40.7584857, + "maxlon": -73.9967386 + }, + "nodes": [ + 11142778059, + 8288270415, + 11142778156, + 6905716429 + ], + "geometry": [ + { "lat": 40.7584133, "lon": -73.9967920 }, + { "lat": 40.7584303, "lon": -73.9967795 }, + { "lat": 40.7584472, "lon": -73.9967670 }, + { "lat": 40.7584857, "lon": -73.9967386 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1201839435, + "bounds": { + "minlat": 40.7578249, + "minlon": -73.9970461, + "maxlat": 40.7579147, + "maxlon": -73.9969099 + }, + "nodes": [ + 11142778075, + 8288270405, + 11142778076, + 11142778077, + 11142778078, + 11142778079, + 11142778080, + 11142778087, + 11142778081, + 11142778086, + 11142778075 + ], + "geometry": [ + { "lat": 40.7578753, "lon": -73.9969099 }, + { "lat": 40.7578717, "lon": -73.9969298 }, + { "lat": 40.7578736, "lon": -73.9969517 }, + { "lat": 40.7578851, "lon": -73.9969836 }, + { "lat": 40.7579147, "lon": -73.9970461 }, + { "lat": 40.7578602, "lon": -73.9970112 }, + { "lat": 40.7578475, "lon": -73.9969948 }, + { "lat": 40.7578315, "lon": -73.9969603 }, + { "lat": 40.7578249, "lon": -73.9969443 }, + { "lat": 40.7578644, "lon": -73.9969152 }, + { "lat": 40.7578753, "lon": -73.9969099 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1201839445, + "bounds": { + "minlat": 40.7578717, + "minlon": -73.9978681, + "maxlat": 40.7582934, + "maxlon": -73.9967984 + }, + "nodes": [ + 11142778131, + 11142778134, + 11142778120, + 427840949, + 11142778121, + 11142778090, + 11142778091, + 11142778092, + 11142778093, + 11142778094, + 11142778095, + 11142778096, + 11142778097, + 11142778098, + 11142778140, + 11142778141, + 11142778142, + 11142778143, + 11142778078, + 11142778077, + 11142778076, + 8288270405, + 11142778075, + 11142778074, + 11142778073, + 11142778144, + 11142778131 + ], + "geometry": [ + { "lat": 40.7580519, "lon": -73.9968616 }, + { "lat": 40.7580206, "lon": -73.9968914 }, + { "lat": 40.7579894, "lon": -73.9969211 }, + { "lat": 40.7579621, "lon": -73.9969500 }, + { "lat": 40.7579229, "lon": -73.9969917 }, + { "lat": 40.7580138, "lon": -73.9971420 }, + { "lat": 40.7580073, "lon": -73.9971683 }, + { "lat": 40.7580475, "lon": -73.9972408 }, + { "lat": 40.7581208, "lon": -73.9973786 }, + { "lat": 40.7581822, "lon": -73.9975111 }, + { "lat": 40.7582480, "lon": -73.9976635 }, + { "lat": 40.7582934, "lon": -73.9977654 }, + { "lat": 40.7582581, "lon": -73.9977917 }, + { "lat": 40.7582718, "lon": -73.9978245 }, + { "lat": 40.7582888, "lon": -73.9978681 }, + { "lat": 40.7582746, "lon": -73.9978681 }, + { "lat": 40.7582609, "lon": -73.9978632 }, + { "lat": 40.7582436, "lon": -73.9978271 }, + { "lat": 40.7579147, "lon": -73.9970461 }, + { "lat": 40.7578851, "lon": -73.9969836 }, + { "lat": 40.7578736, "lon": -73.9969517 }, + { "lat": 40.7578717, "lon": -73.9969298 }, + { "lat": 40.7578753, "lon": -73.9969099 }, + { "lat": 40.7578893, "lon": -73.9968953 }, + { "lat": 40.7580245, "lon": -73.9967984 }, + { "lat": 40.7580320, "lon": -73.9968157 }, + { "lat": 40.7580519, "lon": -73.9968616 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1201839446, + "bounds": { + "minlat": 40.7580976, + "minlon": -73.9974247, + "maxlat": 40.7586859, + "maxlon": -73.9965715 + }, + "nodes": [ + 11142778056, + 11142778155, + 11142778145, + 11142778146, + 11142778063, + 11142778147, + 11142778064, + 11142778148, + 11142778149, + 11142778156, + 11142778157, + 11142778150, + 11142778151, + 11142778152, + 11142778153, + 11142778154, + 11142778044, + 11142778058, + 11142778059, + 11142778057, + 11142778056 + ], + "geometry": [ + { "lat": 40.7581213, "lon": -73.9968017 }, + { "lat": 40.7581054, "lon": -73.9967636 }, + { "lat": 40.7580976, "lon": -73.9967449 }, + { "lat": 40.7583217, "lon": -73.9965827 }, + { "lat": 40.7583414, "lon": -73.9965719 }, + { "lat": 40.7583531, "lon": -73.9965715 }, + { "lat": 40.7583629, "lon": -73.9965797 }, + { "lat": 40.7583716, "lon": -73.9965915 }, + { "lat": 40.7583820, "lon": -73.9966110 }, + { "lat": 40.7584472, "lon": -73.9967670 }, + { "lat": 40.7586402, "lon": -73.9972280 }, + { "lat": 40.7586655, "lon": -73.9972885 }, + { "lat": 40.7586785, "lon": -73.9973271 }, + { "lat": 40.7586848, "lon": -73.9973627 }, + { "lat": 40.7586859, "lon": -73.9973978 }, + { "lat": 40.7586818, "lon": -73.9974247 }, + { "lat": 40.7586719, "lon": -73.9974021 }, + { "lat": 40.7586082, "lon": -73.9972521 }, + { "lat": 40.7584133, "lon": -73.9967920 }, + { "lat": 40.7583457, "lon": -73.9966327 }, + { "lat": 40.7581213, "lon": -73.9968017 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1202082367, + "bounds": { + "minlat": 40.7551674, + "minlon": -73.9968429, + "maxlat": 40.7552335, + "maxlon": -73.9967512 + }, + "nodes": [ + 11144690838, + 11144690850, + 11144690839, + 11144690840, + 11144690841, + 11144690836, + 11144690848, + 11144690842, + 11144690843, + 11144690844, + 11144690845, + 11144690846, + 11144690847, + 11144690849, + 11144690838 + ], + "geometry": [ + { "lat": 40.7552168, "lon": -73.9968334 }, + { "lat": 40.7552106, "lon": -73.9968205 }, + { "lat": 40.7552079, "lon": -73.9968150 }, + { "lat": 40.7552047, "lon": -73.9968142 }, + { "lat": 40.7551682, "lon": -73.9968429 }, + { "lat": 40.7551674, "lon": -73.9967778 }, + { "lat": 40.7551909, "lon": -73.9967591 }, + { "lat": 40.7551995, "lon": -73.9967523 }, + { "lat": 40.7552050, "lon": -73.9967512 }, + { "lat": 40.7552092, "lon": -73.9967587 }, + { "lat": 40.7552328, "lon": -73.9968119 }, + { "lat": 40.7552335, "lon": -73.9968175 }, + { "lat": 40.7552303, "lon": -73.9968225 }, + { "lat": 40.7552232, "lon": -73.9968283 }, + { "lat": 40.7552168, "lon": -73.9968334 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1202082379, + "bounds": { + "minlat": 40.7547081, + "minlon": -73.9973404, + "maxlat": 40.7552168, + "maxlon": -73.9968142 + }, + "nodes": [ + 8261123375, + 8261123402, + 11144690903, + 11144690904, + 11144700305, + 8261123392, + 11144700306, + 11144700307, + 11144690841, + 11144690840, + 11144690839, + 11144690850, + 11144690838, + 11144690852, + 11144690853, + 11144690854, + 11144690855, + 11144690856, + 11144690857, + 11144690858, + 11144690859, + 11144690874, + 427841043, + 11144690868, + 11144690873, + 427840979, + 11144690860, + 8261123375 + ], + "geometry": [ + { "lat": 40.7547764, "lon": -73.9972893 }, + { "lat": 40.7547660, "lon": -73.9973172 }, + { "lat": 40.7547574, "lon": -73.9973404 }, + { "lat": 40.7547130, "lon": -73.9972398 }, + { "lat": 40.7547081, "lon": -73.9972205 }, + { "lat": 40.7547109, "lon": -73.9971920 }, + { "lat": 40.7547164, "lon": -73.9971733 }, + { "lat": 40.7547326, "lon": -73.9971580 }, + { "lat": 40.7551682, "lon": -73.9968429 }, + { "lat": 40.7552047, "lon": -73.9968142 }, + { "lat": 40.7552079, "lon": -73.9968150 }, + { "lat": 40.7552106, "lon": -73.9968205 }, + { "lat": 40.7552168, "lon": -73.9968334 }, + { "lat": 40.7551516, "lon": -73.9969645 }, + { "lat": 40.7551608, "lon": -73.9969354 }, + { "lat": 40.7551656, "lon": -73.9969161 }, + { "lat": 40.7551626, "lon": -73.9968972 }, + { "lat": 40.7551542, "lon": -73.9968898 }, + { "lat": 40.7551435, "lon": -73.9968882 }, + { "lat": 40.7551227, "lon": -73.9969008 }, + { "lat": 40.7550956, "lon": -73.9969208 }, + { "lat": 40.7550854, "lon": -73.9969283 }, + { "lat": 40.7550288, "lon": -73.9969702 }, + { "lat": 40.7549778, "lon": -73.9970080 }, + { "lat": 40.7549102, "lon": -73.9970580 }, + { "lat": 40.7548577, "lon": -73.9970987 }, + { "lat": 40.7548117, "lon": -73.9971309 }, + { "lat": 40.7547764, "lon": -73.9972893 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1202082384, + "bounds": { + "minlat": 40.7545890, + "minlon": -73.9970628, + "maxlat": 40.7546523, + "maxlon": -73.9969903 + }, + "nodes": [ + 7037071175, + 4604291689, + 11144700326 + ], + "geometry": [ + { "lat": 40.7545890, "lon": -73.9970628 }, + { "lat": 40.7546365, "lon": -73.9970059 }, + { "lat": 40.7546523, "lon": -73.9969903 } + ], + "tags": { + "bicycle": "no", + "destination": "Lincoln Tunnel;New Jersey", + "foot": "no", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 1202082385, + "bounds": { + "minlat": 40.7540604, + "minlon": -73.9976896, + "maxlat": 40.7546216, + "maxlon": -73.9972287 + }, + "nodes": [ + 11144700330, + 11144700331, + 11144700332, + 11144700333, + 11144700334, + 11144700335, + 11144700336, + 11144700337, + 11144700338, + 11144700339, + 11144700340, + 11144700352, + 11144700341, + 11144700342, + 11144700351, + 11144700343, + 11144700344, + 11144700345, + 11144700346, + 11144700347, + 11144700348, + 11144700349, + 11144700350, + 11144700330 + ], + "geometry": [ + { "lat": 40.7540807, "lon": -73.9976896 }, + { "lat": 40.7540682, "lon": -73.9976636 }, + { "lat": 40.7540624, "lon": -73.9976442 }, + { "lat": 40.7540604, "lon": -73.9976224 }, + { "lat": 40.7540631, "lon": -73.9976071 }, + { "lat": 40.7540728, "lon": -73.9975950 }, + { "lat": 40.7540910, "lon": -73.9975814 }, + { "lat": 40.7543403, "lon": -73.9973980 }, + { "lat": 40.7545903, "lon": -73.9972326 }, + { "lat": 40.7545981, "lon": -73.9972287 }, + { "lat": 40.7546032, "lon": -73.9972329 }, + { "lat": 40.7546153, "lon": -73.9972614 }, + { "lat": 40.7546216, "lon": -73.9972764 }, + { "lat": 40.7546102, "lon": -73.9972682 }, + { "lat": 40.7546068, "lon": -73.9972676 }, + { "lat": 40.7545993, "lon": -73.9972662 }, + { "lat": 40.7545880, "lon": -73.9972697 }, + { "lat": 40.7545698, "lon": -73.9972806 }, + { "lat": 40.7543551, "lon": -73.9974340 }, + { "lat": 40.7541340, "lon": -73.9975931 }, + { "lat": 40.7541119, "lon": -73.9976121 }, + { "lat": 40.7540910, "lon": -73.9976380 }, + { "lat": 40.7540848, "lon": -73.9976619 }, + { "lat": 40.7540807, "lon": -73.9976896 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1202082391, + "bounds": { + "minlat": 40.7550017, + "minlon": -73.9964775, + "maxlat": 40.7550685, + "maxlon": -73.9962668 + }, + "nodes": [ + 11144700354, + 11144700355, + 11142777930, + 11144700356, + 11144700357, + 11144700358, + 11142777931, + 11144700359, + 11144700360, + 11144700361, + 11142777928, + 11144700362, + 11144700363, + 11142777929, + 11144700364, + 11144700354 + ], + "geometry": [ + { "lat": 40.7550017, "lon": -73.9964745 }, + { "lat": 40.7550387, "lon": -73.9964775 }, + { "lat": 40.7550581, "lon": -73.9964479 }, + { "lat": 40.7550636, "lon": -73.9964298 }, + { "lat": 40.7550685, "lon": -73.9964045 }, + { "lat": 40.7550659, "lon": -73.9963827 }, + { "lat": 40.7550609, "lon": -73.9963643 }, + { "lat": 40.7550507, "lon": -73.9963386 }, + { "lat": 40.7550204, "lon": -73.9962668 }, + { "lat": 40.7550057, "lon": -73.9962786 }, + { "lat": 40.7550470, "lon": -73.9963791 }, + { "lat": 40.7550494, "lon": -73.9963922 }, + { "lat": 40.7550494, "lon": -73.9964057 }, + { "lat": 40.7550456, "lon": -73.9964159 }, + { "lat": 40.7550351, "lon": -73.9964339 }, + { "lat": 40.7550017, "lon": -73.9964745 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1202082395, + "bounds": { + "minlat": 40.7540210, + "minlon": -73.9974289, + "maxlat": 40.7545390, + "maxlon": -73.9968336 + }, + "nodes": [ + 11144700370, + 11144700371, + 11144700367, + 11144700372, + 11144700373, + 11144700374, + 11144700375, + 11144700376, + 11144700366, + 11144700377, + 11144700378, + 11144700379, + 11144700380, + 11144700365, + 11144700381, + 11144700382, + 11144700383, + 11144700368, + 11144700370 + ], + "geometry": [ + { "lat": 40.7544403, "lon": -73.9968515 }, + { "lat": 40.7544654, "lon": -73.9968336 }, + { "lat": 40.7545165, "lon": -73.9969602 }, + { "lat": 40.7545275, "lon": -73.9969882 }, + { "lat": 40.7545349, "lon": -73.9970197 }, + { "lat": 40.7545390, "lon": -73.9970458 }, + { "lat": 40.7545390, "lon": -73.9970680 }, + { "lat": 40.7545328, "lon": -73.9970843 }, + { "lat": 40.7545257, "lon": -73.9970957 }, + { "lat": 40.7543416, "lon": -73.9972314 }, + { "lat": 40.7540942, "lon": -73.9974099 }, + { "lat": 40.7540605, "lon": -73.9974229 }, + { "lat": 40.7540210, "lon": -73.9974289 }, + { "lat": 40.7545154, "lon": -73.9970740 }, + { "lat": 40.7545201, "lon": -73.9970610 }, + { "lat": 40.7545209, "lon": -73.9970458 }, + { "lat": 40.7545110, "lon": -73.9970224 }, + { "lat": 40.7544916, "lon": -73.9969785 }, + { "lat": 40.7544403, "lon": -73.9968515 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1202082400, + "bounds": { + "minlat": 40.7535294, + "minlon": -73.9986255, + "maxlat": 40.7535724, + "maxlon": -73.9985506 + }, + "nodes": [ + 11144700422, + 11144700423, + 9423683660, + 11144700424, + 11144700425, + 11144700426, + 11144700427, + 11144700428, + 11144700429, + 11144700430, + 9423683661, + 11144700431, + 11144700422 + ], + "geometry": [ + { "lat": 40.7535724, "lon": -73.9985749 }, + { "lat": 40.7535622, "lon": -73.9985506 }, + { "lat": 40.7535456, "lon": -73.9985564 }, + { "lat": 40.7535317, "lon": -73.9985632 }, + { "lat": 40.7535294, "lon": -73.9985667 }, + { "lat": 40.7535303, "lon": -73.9985726 }, + { "lat": 40.7535485, "lon": -73.9986197 }, + { "lat": 40.7535509, "lon": -73.9986252 }, + { "lat": 40.7535530, "lon": -73.9986255 }, + { "lat": 40.7535568, "lon": -73.9986095 }, + { "lat": 40.7535616, "lon": -73.9985945 }, + { "lat": 40.7535669, "lon": -73.9985840 }, + { "lat": 40.7535724, "lon": -73.9985749 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1202320662, + "bounds": { + "minlat": 40.7233191, + "minlon": -73.9548158, + "maxlat": 40.7235268, + "maxlon": -73.9546051 + }, + "nodes": [ + 11146344810, + 11146344820, + 11702273425, + 11702273427, + 11702273426, + 11146344811, + 11146344812, + 11146344813, + 11146344819, + 11146344817, + 11146344810 + ], + "geometry": [ + { "lat": 40.7234378, "lon": -73.9548083 }, + { "lat": 40.7233577, "lon": -73.9546770 }, + { "lat": 40.7233207, "lon": -73.9546159 }, + { "lat": 40.7233191, "lon": -73.9546101 }, + { "lat": 40.7233215, "lon": -73.9546055 }, + { "lat": 40.7233271, "lon": -73.9546051 }, + { "lat": 40.7235064, "lon": -73.9547084 }, + { "lat": 40.7235268, "lon": -73.9547926 }, + { "lat": 40.7235050, "lon": -73.9547897 }, + { "lat": 40.7235085, "lon": -73.9548158 }, + { "lat": 40.7234378, "lon": -73.9548083 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1202320665, + "bounds": { + "minlat": 40.7231252, + "minlon": -73.9547720, + "maxlat": 40.7233097, + "maxlon": -73.9545196 + }, + "nodes": [ + 11146344824, + 13271500540, + 11146344823, + 13271500535, + 11146344825, + 11146344826, + 11146344821, + 11146344827, + 13271500542, + 11146344829, + 9789335914, + 11146344824 + ], + "geometry": [ + { "lat": 40.7231252, "lon": -73.9545572 }, + { "lat": 40.7231515, "lon": -73.9545361 }, + { "lat": 40.7231722, "lon": -73.9545196 }, + { "lat": 40.7232169, "lon": -73.9545433 }, + { "lat": 40.7232226, "lon": -73.9545463 }, + { "lat": 40.7232318, "lon": -73.9545543 }, + { "lat": 40.7232588, "lon": -73.9546021 }, + { "lat": 40.7233097, "lon": -73.9546877 }, + { "lat": 40.7233045, "lon": -73.9547392 }, + { "lat": 40.7233012, "lon": -73.9547720 }, + { "lat": 40.7231949, "lon": -73.9545979 }, + { "lat": 40.7231252, "lon": -73.9545572 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1202320668, + "bounds": { + "minlat": 40.7227769, + "minlon": -73.9544936, + "maxlat": 40.7233221, + "maxlon": -73.9537951 + }, + "nodes": [ + 11146344835, + 11702314033, + 11146344834, + 11146344836, + 11702273423, + 11146344837, + 13271500536, + 11146344838, + 11702314015, + 11702273419, + 13271500538, + 9789402784, + 11702273421, + 9789402789, + 11702314019, + 11146344842, + 11146344852, + 11146344843, + 10009024565, + 11069869468, + 10009024566, + 11069869469, + 11069869470, + 10009024567, + 11146344835 + ], + "geometry": [ + { "lat": 40.7228043, "lon": -73.9541837 }, + { "lat": 40.7228053, "lon": -73.9541940 }, + { "lat": 40.7228093, "lon": -73.9542365 }, + { "lat": 40.7230567, "lon": -73.9543761 }, + { "lat": 40.7230942, "lon": -73.9543977 }, + { "lat": 40.7231876, "lon": -73.9544516 }, + { "lat": 40.7232356, "lon": -73.9544798 }, + { "lat": 40.7232590, "lon": -73.9544936 }, + { "lat": 40.7232975, "lon": -73.9544764 }, + { "lat": 40.7233221, "lon": -73.9544654 }, + { "lat": 40.7232530, "lon": -73.9544259 }, + { "lat": 40.7232335, "lon": -73.9544148 }, + { "lat": 40.7231613, "lon": -73.9542998 }, + { "lat": 40.7228513, "lon": -73.9538059 }, + { "lat": 40.7228356, "lon": -73.9537964 }, + { "lat": 40.7228334, "lon": -73.9537951 }, + { "lat": 40.7228170, "lon": -73.9538496 }, + { "lat": 40.7227769, "lon": -73.9539706 }, + { "lat": 40.7228000, "lon": -73.9539646 }, + { "lat": 40.7228154, "lon": -73.9539782 }, + { "lat": 40.7229410, "lon": -73.9541854 }, + { "lat": 40.7229450, "lon": -73.9542091 }, + { "lat": 40.7229314, "lon": -73.9542361 }, + { "lat": 40.7229143, "lon": -73.9542411 }, + { "lat": 40.7228043, "lon": -73.9541837 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Banker's Anchor", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1202563951, + "bounds": { + "minlat": 40.7219882, + "minlon": -73.9888768, + "maxlat": 40.7223371, + "maxlon": -73.9887515 + }, + "nodes": [ + 11148406716, + 7611187236 + ], + "geometry": [ + { "lat": 40.7219882, "lon": -73.9888768 }, + { "lat": 40.7223371, "lon": -73.9887515 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 1202563952, + "bounds": { + "minlat": 40.7207700, + "minlon": -73.9914850, + "maxlat": 40.7210315, + "maxlon": -73.9906316 + }, + "nodes": [ + 42429646, + 8307642280, + 13519263279, + 12196062165, + 8307642277, + 42437111 + ], + "geometry": [ + { "lat": 40.7207700, "lon": -73.9906316 }, + { "lat": 40.7207918, "lon": -73.9906953 }, + { "lat": 40.7209293, "lon": -73.9911491 }, + { "lat": 40.7209915, "lon": -73.9913545 }, + { "lat": 40.7210078, "lon": -73.9914084 }, + { "lat": 40.7210315, "lon": -73.9914850 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:buffer": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "name:ko": "리빙턴 스트리트", + "oneway": "yes", + "parking:lane:left": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 1202571928, + "bounds": { + "minlat": 40.7264229, + "minlon": -73.9931487, + "maxlat": 40.7270546, + "maxlon": -73.9918457 + }, + "nodes": [ + 42431168, + 5824300186, + 12187431465, + 5481937333 + ], + "geometry": [ + { "lat": 40.7264229, "lon": -73.9918457 }, + { "lat": 40.7264634, "lon": -73.9919520 }, + { "lat": 40.7264766, "lon": -73.9919821 }, + { "lat": 40.7270546, "lon": -73.9931487 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Great Jones Street", + "name:etymology:wikidata": "Q2218465", + "name:ko": "그레이트 존스 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5599378", + "wikipedia": "en:Great Jones Street" + } +}, +{ + "type": "way", + "id": 1202586278, + "bounds": { + "minlat": 40.7260802, + "minlon": -74.0099122, + "maxlat": 40.7263793, + "maxlon": -74.0098428 + }, + "nodes": [ + 11148599482, + 12162542935, + 8307641942, + 42442291 + ], + "geometry": [ + { "lat": 40.7263793, "lon": -74.0098428 }, + { "lat": 40.7262272, "lon": -74.0098727 }, + { "lat": 40.7261685, "lon": -74.0098842 }, + { "lat": 40.7260802, "lon": -74.0099122 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1202586279, + "bounds": { + "minlat": 40.7256883, + "minlon": -74.0099949, + "maxlat": 40.7260802, + "maxlon": -74.0099122 + }, + "nodes": [ + 42442291, + 8307641943, + 11148599483 + ], + "geometry": [ + { "lat": 40.7260802, "lon": -74.0099122 }, + { "lat": 40.7259959, "lon": -74.0099385 }, + { "lat": 40.7256883, "lon": -74.0099949 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1202586280, + "bounds": { + "minlat": 40.7364388, + "minlon": -74.0066141, + "maxlat": 40.7369674, + "maxlon": -74.0064962 + }, + "nodes": [ + 42436146, + 11608874762, + 12162483554, + 10168546911, + 42436149 + ], + "geometry": [ + { "lat": 40.7364388, "lon": -74.0066141 }, + { "lat": 40.7364977, "lon": -74.0066016 }, + { "lat": 40.7368652, "lon": -74.0065165 }, + { "lat": 40.7369148, "lon": -74.0065062 }, + { "lat": 40.7369674, "lon": -74.0064962 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1202586281, + "bounds": { + "minlat": 40.7331574, + "minlon": -74.0074431, + "maxlat": 40.7335770, + "maxlon": -74.0073392 + }, + "nodes": [ + 7593282968, + 42431703, + 12162494517, + 8475999050, + 8429031343, + 42436134 + ], + "geometry": [ + { "lat": 40.7331574, "lon": -74.0074431 }, + { "lat": 40.7333688, "lon": -74.0073908 }, + { "lat": 40.7334731, "lon": -74.0073649 }, + { "lat": 40.7335033, "lon": -74.0073575 }, + { "lat": 40.7335373, "lon": -74.0073490 }, + { "lat": 40.7335770, "lon": -74.0073392 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1202586282, + "bounds": { + "minlat": 40.7296386, + "minlon": -74.0083973, + "maxlat": 40.7331574, + "maxlon": -74.0074431 + }, + "nodes": [ + 42436115, + 8214320078, + 8304878673, + 8214320067, + 42436119, + 8214320066, + 12162494537, + 8214320059, + 42436122, + 8214320058, + 12162494525, + 8288270263, + 42436126, + 8288270262, + 12162494524, + 11609529479, + 42436129, + 11609529476, + 7593282968 + ], + "geometry": [ + { "lat": 40.7296386, "lon": -74.0083973 }, + { "lat": 40.7297014, "lon": -74.0083777 }, + { "lat": 40.7302407, "lon": -74.0082307 }, + { "lat": 40.7302931, "lon": -74.0082163 }, + { "lat": 40.7303583, "lon": -74.0081983 }, + { "lat": 40.7304264, "lon": -74.0081795 }, + { "lat": 40.7309614, "lon": -74.0080329 }, + { "lat": 40.7310080, "lon": -74.0080198 }, + { "lat": 40.7310785, "lon": -74.0080005 }, + { "lat": 40.7311442, "lon": -74.0079814 }, + { "lat": 40.7316786, "lon": -74.0078363 }, + { "lat": 40.7317213, "lon": -74.0078240 }, + { "lat": 40.7317892, "lon": -74.0078047 }, + { "lat": 40.7318597, "lon": -74.0077843 }, + { "lat": 40.7327253, "lon": -74.0075517 }, + { "lat": 40.7327794, "lon": -74.0075372 }, + { "lat": 40.7328774, "lon": -74.0075136 }, + { "lat": 40.7329580, "lon": -74.0074944 }, + { "lat": 40.7331574, "lon": -74.0074431 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1202586283, + "bounds": { + "minlat": 40.7289193, + "minlon": -74.0085913, + "maxlat": 40.7296386, + "maxlon": -74.0083973 + }, + "nodes": [ + 42436109, + 8307641906, + 8304878671, + 8214320079, + 42436115 + ], + "geometry": [ + { "lat": 40.7289193, "lon": -74.0085913 }, + { "lat": 40.7289957, "lon": -74.0085718 }, + { "lat": 40.7295141, "lon": -74.0084309 }, + { "lat": 40.7295673, "lon": -74.0084169 }, + { "lat": 40.7296386, "lon": -74.0083973 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1202586284, + "bounds": { + "minlat": 40.7260025, + "minlon": -74.0090892, + "maxlat": 40.7281978, + "maxlon": -74.0087206 + }, + "nodes": [ + 42436088, + 8307641938, + 42436093, + 42436097, + 42436100 + ], + "geometry": [ + { "lat": 40.7260025, "lon": -74.0090892 }, + { "lat": 40.7260666, "lon": -74.0090780 }, + { "lat": 40.7267539, "lon": -74.0089600 }, + { "lat": 40.7274691, "lon": -74.0088420 }, + { "lat": 40.7281978, "lon": -74.0087206 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1202586285, + "bounds": { + "minlat": 40.7247682, + "minlon": -74.0092999, + "maxlat": 40.7255893, + "maxlon": -74.0091615 + }, + "nodes": [ + 42436083, + 4892579962, + 11148599484 + ], + "geometry": [ + { "lat": 40.7247682, "lon": -74.0092999 }, + { "lat": 40.7248417, "lon": -74.0092881 }, + { "lat": 40.7255893, "lon": -74.0091615 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (10:00-16:00)", + "motor_vehicle:conditional": "destination @ (10:00-16:00)", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1202638283, + "bounds": { + "minlat": 40.7364393, + "minlon": -74.0083183, + "maxlat": 40.7375614, + "maxlon": -74.0082235 + }, + "nodes": [ + 42439096, + 8307642223, + 12162436905, + 11608896514, + 42459436, + 11608896516, + 4741865080 + ], + "geometry": [ + { "lat": 40.7375614, "lon": -74.0082235 }, + { "lat": 40.7375013, "lon": -74.0082278 }, + { "lat": 40.7370732, "lon": -74.0082661 }, + { "lat": 40.7370265, "lon": -74.0082695 }, + { "lat": 40.7369713, "lon": -74.0082739 }, + { "lat": 40.7369168, "lon": -74.0082769 }, + { "lat": 40.7364393, "lon": -74.0083183 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1202638284, + "bounds": { + "minlat": 40.7377794, + "minlon": -74.0082035, + "maxlat": 40.7387650, + "maxlon": -74.0081110 + }, + "nodes": [ + 42431508, + 8307642208, + 12162436901, + 8307642214, + 42454758, + 8307642218, + 11152128438 + ], + "geometry": [ + { "lat": 40.7387650, "lon": -74.0081110 }, + { "lat": 40.7387172, "lon": -74.0081241 }, + { "lat": 40.7382502, "lon": -74.0081615 }, + { "lat": 40.7382055, "lon": -74.0081650 }, + { "lat": 40.7381488, "lon": -74.0081711 }, + { "lat": 40.7381020, "lon": -74.0081757 }, + { "lat": 40.7377794, "lon": -74.0082035 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1202638285, + "bounds": { + "minlat": 40.7331063, + "minlon": -74.0086014, + "maxlat": 40.7333916, + "maxlon": -74.0085749 + }, + "nodes": [ + 42457735, + 8307642122, + 11149009172 + ], + "geometry": [ + { "lat": 40.7333916, "lon": -74.0085749 }, + { "lat": 40.7333515, "lon": -74.0085819 }, + { "lat": 40.7331063, "lon": -74.0086014 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1202638286, + "bounds": { + "minlat": 40.7311635, + "minlon": -74.0089430, + "maxlat": 40.7331063, + "maxlon": -74.0086014 + }, + "nodes": [ + 11149009172, + 12162436931, + 8789178525, + 8288270335, + 42436894, + 8288270274, + 12162494528, + 8288270267, + 42452006, + 8288270268, + 12162494534, + 8214320052, + 42454642 + ], + "geometry": [ + { "lat": 40.7331063, "lon": -74.0086014 }, + { "lat": 40.7328367, "lon": -74.0086226 }, + { "lat": 40.7327990, "lon": -74.0086256 }, + { "lat": 40.7327614, "lon": -74.0086306 }, + { "lat": 40.7326608, "lon": -74.0086473 }, + { "lat": 40.7325425, "lon": -74.0086662 }, + { "lat": 40.7320088, "lon": -74.0087706 }, + { "lat": 40.7319608, "lon": -74.0087811 }, + { "lat": 40.7318782, "lon": -74.0087960 }, + { "lat": 40.7318113, "lon": -74.0088121 }, + { "lat": 40.7312830, "lon": -74.0089099 }, + { "lat": 40.7312310, "lon": -74.0089193 }, + { "lat": 40.7311635, "lon": -74.0089430 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1202638287, + "bounds": { + "minlat": 40.7299657, + "minlon": -74.0091816, + "maxlat": 40.7311635, + "maxlon": -74.0089430 + }, + "nodes": [ + 42454642, + 8214320053, + 12162494538, + 8214320062, + 42456986, + 8214320063, + 11149009173 + ], + "geometry": [ + { "lat": 40.7311635, "lon": -74.0089430 }, + { "lat": 40.7310908, "lon": -74.0089668 }, + { "lat": 40.7305703, "lon": -74.0090663 }, + { "lat": 40.7305151, "lon": -74.0090769 }, + { "lat": 40.7304414, "lon": -74.0090905 }, + { "lat": 40.7303737, "lon": -74.0091036 }, + { "lat": 40.7299657, "lon": -74.0091816 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1202638288, + "bounds": { + "minlat": 40.7293896, + "minlon": -74.0092680, + "maxlat": 40.7297123, + "maxlon": -74.0092108 + }, + "nodes": [ + 42440527, + 8214320073, + 11149009174 + ], + "geometry": [ + { "lat": 40.7297123, "lon": -74.0092108 }, + { "lat": 40.7296463, "lon": -74.0092192 }, + { "lat": 40.7293896, "lon": -74.0092680 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1202638289, + "bounds": { + "minlat": 40.7297123, + "minlon": -74.0092108, + "maxlat": 40.7299657, + "maxlon": -74.0091816 + }, + "nodes": [ + 11149009173, + 8214320072, + 42440527 + ], + "geometry": [ + { "lat": 40.7299657, "lon": -74.0091816 }, + { "lat": 40.7297816, "lon": -74.0092046 }, + { "lat": 40.7297123, "lon": -74.0092108 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1202638290, + "bounds": { + "minlat": 40.7289826, + "minlon": -74.0093445, + "maxlat": 40.7293896, + "maxlon": -74.0092680 + }, + "nodes": [ + 11149009174, + 12162542914, + 8526690245, + 8307641896, + 42448568 + ], + "geometry": [ + { "lat": 40.7293896, "lon": -74.0092680 }, + { "lat": 40.7291063, "lon": -74.0093228 }, + { "lat": 40.7290911, "lon": -74.0093257 }, + { "lat": 40.7290571, "lon": -74.0093319 }, + { "lat": 40.7289826, "lon": -74.0093445 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1202675793, + "bounds": { + "minlat": 40.7580153, + "minlon": -73.9961794, + "maxlat": 40.7581832, + "maxlon": -73.9960077 + }, + "nodes": [ + 593984827, + 11149329038, + 11149329039, + 11149329040, + 11149329041, + 11149329042, + 11149329206, + 11149329043 + ], + "geometry": [ + { "lat": 40.7580153, "lon": -73.9960077 }, + { "lat": 40.7580276, "lon": -73.9960750 }, + { "lat": 40.7580525, "lon": -73.9961272 }, + { "lat": 40.7580824, "lon": -73.9961609 }, + { "lat": 40.7581181, "lon": -73.9961786 }, + { "lat": 40.7581609, "lon": -73.9961794 }, + { "lat": 40.7581765, "lon": -73.9961712 }, + { "lat": 40.7581832, "lon": -73.9961676 } + ], + "tags": { + "access": "no", + "highway": "service", + "motor_vehicle": "customers", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1202675794, + "bounds": { + "minlat": 40.7581832, + "minlon": -73.9961676, + "maxlat": 40.7582079, + "maxlon": -73.9960855 + }, + "nodes": [ + 11149329043, + 11149329047, + 11149329044, + 11149329045, + 11149329046 + ], + "geometry": [ + { "lat": 40.7581832, "lon": -73.9961676 }, + { "lat": 40.7581915, "lon": -73.9961587 }, + { "lat": 40.7581972, "lon": -73.9961525 }, + { "lat": 40.7582068, "lon": -73.9961264 }, + { "lat": 40.7582079, "lon": -73.9960855 } + ], + "tags": { + "access": "no", + "highway": "service", + "motor_vehicle": "customers", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1202675802, + "bounds": { + "minlat": 40.7578245, + "minlon": -73.9963682, + "maxlat": 40.7579659, + "maxlon": -73.9961939 + }, + "nodes": [ + 593984781, + 593984831, + 6872046050, + 11149329032, + 428219642 + ], + "geometry": [ + { "lat": 40.7579659, "lon": -73.9961939 }, + { "lat": 40.7579244, "lon": -73.9962693 }, + { "lat": 40.7579076, "lon": -73.9962912 }, + { "lat": 40.7578724, "lon": -73.9963295 }, + { "lat": 40.7578245, "lon": -73.9963682 } + ], + "tags": { + "access": "no", + "bus": "yes", + "destination": "Port Authority Bus Terminal;10th Avenue", + "highway": "service", + "maxspeed": "15 mph", + "motor_vehicle": "customers", + "name": "PABT Parking Ramp", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1202675812, + "bounds": { + "minlat": 40.7575451, + "minlon": -73.9959555, + "maxlat": 40.7576988, + "maxlon": -73.9953920 + }, + "nodes": [ + 593984818, + 593984819, + 593984820, + 11149329141, + 593984821, + 11149329142, + 11149329138, + 428219720 + ], + "geometry": [ + { "lat": 40.7575475, "lon": -73.9959555 }, + { "lat": 40.7575451, "lon": -73.9958921 }, + { "lat": 40.7575511, "lon": -73.9958010 }, + { "lat": 40.7575677, "lon": -73.9957155 }, + { "lat": 40.7575933, "lon": -73.9956306 }, + { "lat": 40.7576183, "lon": -73.9955598 }, + { "lat": 40.7576389, "lon": -73.9955097 }, + { "lat": 40.7576988, "lon": -73.9953920 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "destination": "Port Authority Bus Terminal", + "highway": "service", + "layer": "1", + "maxspeed": "15 mph", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1202675813, + "bounds": { + "minlat": 40.7575934, + "minlon": -73.9959531, + "maxlat": 40.7576988, + "maxlon": -73.9953920 + }, + "nodes": [ + 428219713, + 428219715, + 428219716, + 428219717, + 11149329137, + 428219719, + 428219720 + ], + "geometry": [ + { "lat": 40.7575956, "lon": -73.9959531 }, + { "lat": 40.7575934, "lon": -73.9958758 }, + { "lat": 40.7575992, "lon": -73.9958018 }, + { "lat": 40.7576073, "lon": -73.9957397 }, + { "lat": 40.7576327, "lon": -73.9956374 }, + { "lat": 40.7576573, "lon": -73.9955555 }, + { "lat": 40.7576988, "lon": -73.9953920 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "destination": "Port Authority Bus Terminal", + "highway": "service", + "layer": "1", + "maxspeed": "15 mph", + "name": "PABT Bus Ramp", + "note": "buses only", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1202675821, + "bounds": { + "minlat": 40.7573509, + "minlon": -73.9950911, + "maxlat": 40.7575294, + "maxlon": -73.9950484 + }, + "nodes": [ + 42424773, + 428219692, + 11149329193, + 593984805 + ], + "geometry": [ + { "lat": 40.7573509, "lon": -73.9950492 }, + { "lat": 40.7573932, "lon": -73.9950484 }, + { "lat": 40.7574574, "lon": -73.9950640 }, + { "lat": 40.7575294, "lon": -73.9950911 } + ], + "tags": { + "access": "no", + "bus": "yes", + "destination": "Port Authority Bus Terminal;10th Avenue", + "highway": "service", + "maxspeed": "15 mph", + "motor_vehicle": "customers", + "name": "PABT Ramp", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1202675836, + "bounds": { + "minlat": 40.7576136, + "minlon": -73.9944429, + "maxlat": 40.7577228, + "maxlon": -73.9943659 + }, + "nodes": [ + 11149329219, + 11149329221 + ], + "geometry": [ + { "lat": 40.7576136, "lon": -73.9944429 }, + { "lat": 40.7577228, "lon": -73.9943659 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1202675844, + "bounds": { + "minlat": 40.7582288, + "minlon": -73.9943490, + "maxlat": 40.7582592, + "maxlon": -73.9942891 + }, + "nodes": [ + 11149329249, + 11149329262, + 11149329250, + 11149329247, + 11149329251, + 11149329252, + 11149329253, + 11149329246, + 11149329254, + 11149329255, + 11149329245, + 11149329249 + ], + "geometry": [ + { "lat": 40.7582551, "lon": -73.9942891 }, + { "lat": 40.7582506, "lon": -73.9942901 }, + { "lat": 40.7582288, "lon": -73.9942951 }, + { "lat": 40.7582315, "lon": -73.9943225 }, + { "lat": 40.7582329, "lon": -73.9943416 }, + { "lat": 40.7582369, "lon": -73.9943485 }, + { "lat": 40.7582417, "lon": -73.9943485 }, + { "lat": 40.7582508, "lon": -73.9943490 }, + { "lat": 40.7582565, "lon": -73.9943443 }, + { "lat": 40.7582592, "lon": -73.9943371 }, + { "lat": 40.7582592, "lon": -73.9943149 }, + { "lat": 40.7582551, "lon": -73.9942891 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1202675851, + "bounds": { + "minlat": 40.7582971, + "minlon": -73.9975574, + "maxlat": 40.7583753, + "maxlon": -73.9973383 + }, + "nodes": [ + 427804105, + 427804078 + ], + "geometry": [ + { "lat": 40.7582971, "lon": -73.9973383 }, + { "lat": 40.7583753, "lon": -73.9975574 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "destination": "Lincoln Tunnel", + "highway": "service", + "layer": "1", + "motor_vehicle": "customers", + "name": "PABT Ramp", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1202675853, + "bounds": { + "minlat": 40.7576145, + "minlon": -73.9967698, + "maxlat": 40.7576774, + "maxlon": -73.9966667 + }, + "nodes": [ + 11149329300, + 11149329311, + 11149329301, + 11149329302, + 11149329303, + 11149329304, + 11149329312, + 11149329305, + 11149329306, + 11149329307, + 11149329300 + ], + "geometry": [ + { "lat": 40.7576774, "lon": -73.9967538 }, + { "lat": 40.7576720, "lon": -73.9967410 }, + { "lat": 40.7576474, "lon": -73.9966825 }, + { "lat": 40.7576432, "lon": -73.9966769 }, + { "lat": 40.7576322, "lon": -73.9966726 }, + { "lat": 40.7576145, "lon": -73.9966667 }, + { "lat": 40.7576542, "lon": -73.9967577 }, + { "lat": 40.7576584, "lon": -73.9967675 }, + { "lat": 40.7576622, "lon": -73.9967698 }, + { "lat": 40.7576770, "lon": -73.9967602 }, + { "lat": 40.7576774, "lon": -73.9967538 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1202675857, + "bounds": { + "minlat": 40.7575348, + "minlon": -73.9944989, + "maxlat": 40.7576136, + "maxlon": -73.9944429 + }, + "nodes": [ + 11149329220, + 11149329222, + 11149329219 + ], + "geometry": [ + { "lat": 40.7575348, "lon": -73.9944989 }, + { "lat": 40.7575961, "lon": -73.9944553 }, + { "lat": 40.7576136, "lon": -73.9944429 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1202726303, + "bounds": { + "minlat": 40.7499399, + "minlon": -73.9369737, + "maxlat": 40.7500117, + "maxlon": -73.9369283 + }, + "nodes": [ + 11149714791, + 11149714792, + 11149714793 + ], + "geometry": [ + { "lat": 40.7499399, "lon": -73.9369283 }, + { "lat": 40.7500008, "lon": -73.9369662 }, + { "lat": 40.7500117, "lon": -73.9369737 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1202727358, + "bounds": { + "minlat": 40.8222909, + "minlon": -73.9295934, + "maxlat": 40.8223815, + "maxlon": -73.9292662 + }, + "nodes": [ + 11149727196, + 6378691545, + 6378691544 + ], + "geometry": [ + { "lat": 40.8222909, "lon": -73.9295934 }, + { "lat": 40.8223042, "lon": -73.9293435 }, + { "lat": 40.8223815, "lon": -73.9292662 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1202727359, + "bounds": { + "minlat": 40.8222858, + "minlon": -73.9296811, + "maxlat": 40.8222909, + "maxlon": -73.9295934 + }, + "nodes": [ + 11149727197, + 11149727196 + ], + "geometry": [ + { "lat": 40.8222858, "lon": -73.9296811 }, + { "lat": 40.8222909, "lon": -73.9295934 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1203013899, + "bounds": { + "minlat": 40.7408488, + "minlon": -74.0051364, + "maxlat": 40.7413187, + "maxlon": -74.0050382 + }, + "nodes": [ + 3564892566, + 3564892565, + 4634753637, + 42436439 + ], + "geometry": [ + { "lat": 40.7413187, "lon": -74.0050382 }, + { "lat": 40.7412230, "lon": -74.0050583 }, + { "lat": 40.7409451, "lon": -74.0051102 }, + { "lat": 40.7408488, "lon": -74.0051364 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1203013900, + "bounds": { + "minlat": 40.7375614, + "minlon": -74.0082235, + "maxlat": 40.7377794, + "maxlon": -74.0082035 + }, + "nodes": [ + 11152128438, + 12162436902, + 8307642222, + 42439096 + ], + "geometry": [ + { "lat": 40.7377794, "lon": -74.0082035 }, + { "lat": 40.7376782, "lon": -74.0082122 }, + { "lat": 40.7376274, "lon": -74.0082166 }, + { "lat": 40.7375614, "lon": -74.0082235 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1203138785, + "bounds": { + "minlat": 40.7543103, + "minlon": -73.9959006, + "maxlat": 40.7544063, + "maxlon": -73.9956652 + }, + "nodes": [ + 5481856939, + 9490502655, + 11153328256, + 5481856938 + ], + "geometry": [ + { "lat": 40.7543103, "lon": -73.9956652 }, + { "lat": 40.7543570, "lon": -73.9957798 }, + { "lat": 40.7543855, "lon": -73.9958496 }, + { "lat": 40.7544063, "lon": -73.9959006 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "customers", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1203138786, + "bounds": { + "minlat": 40.7544063, + "minlon": -73.9959738, + "maxlat": 40.7544167, + "maxlon": -73.9959006 + }, + "nodes": [ + 5481856938, + 5481856937 + ], + "geometry": [ + { "lat": 40.7544063, "lon": -73.9959006 }, + { "lat": 40.7544167, "lon": -73.9959738 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "customers", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203138787, + "bounds": { + "minlat": 40.7544167, + "minlon": -73.9960180, + "maxlat": 40.7544356, + "maxlon": -73.9959738 + }, + "nodes": [ + 5481856937, + 5481856934 + ], + "geometry": [ + { "lat": 40.7544167, "lon": -73.9959738 }, + { "lat": 40.7544356, "lon": -73.9960180 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "customers", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203138788, + "bounds": { + "minlat": 40.7543760, + "minlon": -73.9959738, + "maxlat": 40.7544167, + "maxlon": -73.9959232 + }, + "nodes": [ + 5481856937, + 5481856936 + ], + "geometry": [ + { "lat": 40.7544167, "lon": -73.9959738 }, + { "lat": 40.7543760, "lon": -73.9959232 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "customers", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203138794, + "bounds": { + "minlat": 40.7554710, + "minlon": -73.9984542, + "maxlat": 40.7555349, + "maxlon": -73.9982995 + }, + "nodes": [ + 5837182316, + 8261122932, + 11153328262 + ], + "geometry": [ + { "lat": 40.7555349, "lon": -73.9984542 }, + { "lat": 40.7554794, "lon": -73.9983204 }, + { "lat": 40.7554710, "lon": -73.9982995 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203138842, + "bounds": { + "minlat": 40.7533863, + "minlon": -74.0035983, + "maxlat": 40.7536530, + "maxlon": -74.0033484 + }, + "nodes": [ + 11153346447, + 11153346450, + 9423683671, + 9423683672, + 11153346448, + 4535394674, + 9979531861, + 9979531862, + 11153346378, + 11153346391, + 11153346379, + 11153346449, + 11153346447 + ], + "geometry": [ + { "lat": 40.7534231, "lon": -74.0035983 }, + { "lat": 40.7534013, "lon": -74.0035466 }, + { "lat": 40.7533924, "lon": -74.0035255 }, + { "lat": 40.7533888, "lon": -74.0035282 }, + { "lat": 40.7533863, "lon": -74.0035221 }, + { "lat": 40.7534040, "lon": -74.0035094 }, + { "lat": 40.7534881, "lon": -74.0034493 }, + { "lat": 40.7534980, "lon": -74.0034422 }, + { "lat": 40.7536292, "lon": -74.0033484 }, + { "lat": 40.7536412, "lon": -74.0033763 }, + { "lat": 40.7536530, "lon": -74.0034037 }, + { "lat": 40.7535337, "lon": -74.0034959 }, + { "lat": 40.7534231, "lon": -74.0035983 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1203138843, + "bounds": { + "minlat": 40.7526975, + "minlon": -74.0027377, + "maxlat": 40.7529042, + "maxlon": -74.0023403 + }, + "nodes": [ + 1315234319, + 11511992540, + 11511992542, + 11153346451, + 11153346452, + 11153346453, + 1272608995, + 11511992566, + 1315234319 + ], + "geometry": [ + { "lat": 40.7529042, "lon": -74.0027178 }, + { "lat": 40.7528832, "lon": -74.0027328 }, + { "lat": 40.7528719, "lon": -74.0027377 }, + { "lat": 40.7528655, "lon": -74.0027338 }, + { "lat": 40.7526975, "lon": -74.0023403 }, + { "lat": 40.7527284, "lon": -74.0023669 }, + { "lat": 40.7527734, "lon": -74.0024058 }, + { "lat": 40.7528130, "lon": -74.0025003 }, + { "lat": 40.7529042, "lon": -74.0027178 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1203138865, + "bounds": { + "minlat": 40.7522071, + "minlon": -74.0021306, + "maxlat": 40.7526766, + "maxlon": -74.0012215 + }, + "nodes": [ + 1272608997, + 9421123796, + 9421123797, + 11153346543, + 6005574842, + 11153346544, + 9421123800, + 11153346551, + 9421123801, + 11153346545, + 13618761434, + 11153346546, + 9421123804, + 9421123805, + 11153346547, + 13621468417, + 6005574841, + 13621468420, + 11153346548, + 9421123795, + 9421123794, + 9421123793, + 1315234455, + 9421123765, + 11153346549, + 1272608989, + 8261122474, + 11153346552, + 11511992643, + 1272608997 + ], + "geometry": [ + { "lat": 40.7526599, "lon": -74.0021306 }, + { "lat": 40.7526377, "lon": -74.0020792 }, + { "lat": 40.7526766, "lon": -74.0020513 }, + { "lat": 40.7526738, "lon": -74.0020449 }, + { "lat": 40.7526261, "lon": -74.0020472 }, + { "lat": 40.7525804, "lon": -74.0019398 }, + { "lat": 40.7525654, "lon": -74.0019508 }, + { "lat": 40.7525515, "lon": -74.0019175 }, + { "lat": 40.7525389, "lon": -74.0018874 }, + { "lat": 40.7525534, "lon": -74.0018763 }, + { "lat": 40.7525449, "lon": -74.0018564 }, + { "lat": 40.7525251, "lon": -74.0018099 }, + { "lat": 40.7525146, "lon": -74.0018178 }, + { "lat": 40.7524894, "lon": -74.0017556 }, + { "lat": 40.7524990, "lon": -74.0017487 }, + { "lat": 40.7524784, "lon": -74.0017003 }, + { "lat": 40.7523756, "lon": -74.0014586 }, + { "lat": 40.7523893, "lon": -74.0013948 }, + { "lat": 40.7523928, "lon": -74.0013792 }, + { "lat": 40.7523841, "lon": -74.0013583 }, + { "lat": 40.7523608, "lon": -74.0013958 }, + { "lat": 40.7523236, "lon": -74.0013555 }, + { "lat": 40.7523579, "lon": -74.0013003 }, + { "lat": 40.7522568, "lon": -74.0012464 }, + { "lat": 40.7522071, "lon": -74.0012215 }, + { "lat": 40.7525637, "lon": -74.0020754 }, + { "lat": 40.7525759, "lon": -74.0020824 }, + { "lat": 40.7526183, "lon": -74.0021067 }, + { "lat": 40.7526331, "lon": -74.0021158 }, + { "lat": 40.7526599, "lon": -74.0021306 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1203138885, + "bounds": { + "minlat": 40.7520056, + "minlon": -74.0009801, + "maxlat": 40.7520747, + "maxlon": -74.0008162 + }, + "nodes": [ + 42437693, + 6656308651, + 11153346568 + ], + "geometry": [ + { "lat": 40.7520747, "lon": -74.0009801 }, + { "lat": 40.7520169, "lon": -74.0008439 }, + { "lat": 40.7520056, "lon": -74.0008162 } + ], + "tags": { + "bicycle": "yes", + "covered": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203152694, + "bounds": { + "minlat": 40.7565953, + "minlon": -73.9999215, + "maxlat": 40.7567051, + "maxlon": -73.9998204 + }, + "nodes": [ + 11153451619, + 11153451618, + 9421943106, + 3270031031 + ], + "geometry": [ + { "lat": 40.7567051, "lon": -73.9998204 }, + { "lat": 40.7566903, "lon": -73.9998341 }, + { "lat": 40.7566507, "lon": -73.9998705 }, + { "lat": 40.7565953, "lon": -73.9999215 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Hudson Boulevard West", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q16980469", + "wikipedia": "en:Hudson Park and Boulevard" + } +}, +{ + "type": "way", + "id": 1203185049, + "bounds": { + "minlat": 40.8502127, + "minlon": -73.9740903, + "maxlat": 40.8503220, + "maxlon": -73.9738526 + }, + "nodes": [ + 11153653564, + 11153653565, + 11153653566, + 11153653567, + 11153653568, + 11153653569, + 11153653570, + 11153653571 + ], + "geometry": [ + { "lat": 40.8502379, "lon": -73.9740903 }, + { "lat": 40.8502194, "lon": -73.9740411 }, + { "lat": 40.8502134, "lon": -73.9740147 }, + { "lat": 40.8502127, "lon": -73.9739901 }, + { "lat": 40.8502161, "lon": -73.9739700 }, + { "lat": 40.8502279, "lon": -73.9739483 }, + { "lat": 40.8502474, "lon": -73.9739253 }, + { "lat": 40.8503220, "lon": -73.9738526 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1203185050, + "bounds": { + "minlat": 40.8503131, + "minlon": -73.9739642, + "maxlat": 40.8503723, + "maxlon": -73.9738198 + }, + "nodes": [ + 11153653572, + 11153653571, + 11153653573, + 11153653574 + ], + "geometry": [ + { "lat": 40.8503723, "lon": -73.9739642 }, + { "lat": 40.8503220, "lon": -73.9738526 }, + { "lat": 40.8503169, "lon": -73.9738370 }, + { "lat": 40.8503131, "lon": -73.9738198 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1203375846, + "bounds": { + "minlat": 40.7112066, + "minlon": -73.9484850, + "maxlat": 40.7113240, + "maxlon": -73.9472450 + }, + "nodes": [ + 11544820046, + 6235394663, + 42491173 + ], + "geometry": [ + { "lat": 40.7112066, "lon": -73.9484850 }, + { "lat": 40.7113157, "lon": -73.9473319 }, + { "lat": 40.7113240, "lon": -73.9472450 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "cycleway:right:protection": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1203375847, + "bounds": { + "minlat": 40.7113240, + "minlon": -73.9472450, + "maxlat": 40.7114431, + "maxlon": -73.9459923 + }, + "nodes": [ + 42491173, + 8842929780, + 10166464293, + 11544820047 + ], + "geometry": [ + { "lat": 40.7113240, "lon": -73.9472450 }, + { "lat": 40.7113320, "lon": -73.9471610 }, + { "lat": 40.7113366, "lon": -73.9471127 }, + { "lat": 40.7114431, "lon": -73.9459923 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1203375848, + "bounds": { + "minlat": 40.7107384, + "minlon": -73.9488920, + "maxlat": 40.7111680, + "maxlon": -73.9488214 + }, + "nodes": [ + 10736651838, + 5379075747, + 42527647 + ], + "geometry": [ + { "lat": 40.7107384, "lon": -73.9488214 }, + { "lat": 40.7110807, "lon": -73.9488777 }, + { "lat": 40.7111680, "lon": -73.9488920 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375849, + "bounds": { + "minlat": 40.7105587, + "minlon": -73.9488214, + "maxlat": 40.7107384, + "maxlon": -73.9487918 + }, + "nodes": [ + 10736651834, + 10736651838 + ], + "geometry": [ + { "lat": 40.7105587, "lon": -73.9487918 }, + { "lat": 40.7107384, "lon": -73.9488214 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375850, + "bounds": { + "minlat": 40.7104320, + "minlon": -73.9487918, + "maxlat": 40.7105587, + "maxlon": -73.9487710 + }, + "nodes": [ + 42527642, + 9752590886, + 10736651834 + ], + "geometry": [ + { "lat": 40.7104320, "lon": -73.9487710 }, + { "lat": 40.7105013, "lon": -73.9487824 }, + { "lat": 40.7105587, "lon": -73.9487918 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375851, + "bounds": { + "minlat": 40.7097250, + "minlon": -73.9487710, + "maxlat": 40.7104320, + "maxlon": -73.9486550 + }, + "nodes": [ + 42496943, + 9752590881, + 9752590885, + 42527642 + ], + "geometry": [ + { "lat": 40.7097250, "lon": -73.9486550 }, + { "lat": 40.7097889, "lon": -73.9486648 }, + { "lat": 40.7103797, "lon": -73.9487624 }, + { "lat": 40.7104320, "lon": -73.9487710 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375852, + "bounds": { + "minlat": 40.7090150, + "minlon": -73.9486550, + "maxlat": 40.7097250, + "maxlon": -73.9485390 + }, + "nodes": [ + 42523854, + 9959904537, + 9752590880, + 42496943 + ], + "geometry": [ + { "lat": 40.7090150, "lon": -73.9485390 }, + { "lat": 40.7090853, "lon": -73.9485505 }, + { "lat": 40.7096712, "lon": -73.9486462 }, + { "lat": 40.7097250, "lon": -73.9486550 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375853, + "bounds": { + "minlat": 40.7083050, + "minlon": -73.9485390, + "maxlat": 40.7090150, + "maxlon": -73.9484210 + }, + "nodes": [ + 42511044, + 9752593866, + 9959904536, + 42523854 + ], + "geometry": [ + { "lat": 40.7083050, "lon": -73.9484210 }, + { "lat": 40.7083687, "lon": -73.9484340 }, + { "lat": 40.7089586, "lon": -73.9485296 }, + { "lat": 40.7090150, "lon": -73.9485390 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375854, + "bounds": { + "minlat": 40.7075970, + "minlon": -73.9484210, + "maxlat": 40.7083050, + "maxlon": -73.9483030 + }, + "nodes": [ + 42527635, + 9752593882, + 9752593867, + 42511044 + ], + "geometry": [ + { "lat": 40.7075970, "lon": -73.9483030 }, + { "lat": 40.7076657, "lon": -73.9483148 }, + { "lat": 40.7082387, "lon": -73.9484089 }, + { "lat": 40.7083050, "lon": -73.9484210 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375855, + "bounds": { + "minlat": 40.7068518, + "minlon": -73.9483030, + "maxlat": 40.7075970, + "maxlon": -73.9482053 + }, + "nodes": [ + 42523539, + 9752593930, + 9752593883, + 42527635 + ], + "geometry": [ + { "lat": 40.7068518, "lon": -73.9482068 }, + { "lat": 40.7069395, "lon": -73.9482053 }, + { "lat": 40.7075329, "lon": -73.9482919 }, + { "lat": 40.7075970, "lon": -73.9483030 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375856, + "bounds": { + "minlat": 40.7063017, + "minlon": -73.9482068, + "maxlat": 40.7068518, + "maxlon": -73.9481221 + }, + "nodes": [ + 5481854367, + 4592106548, + 5481854372, + 8232714836, + 42523539 + ], + "geometry": [ + { "lat": 40.7063017, "lon": -73.9481221 }, + { "lat": 40.7063326, "lon": -73.9481276 }, + { "lat": 40.7066675, "lon": -73.9481867 }, + { "lat": 40.7067672, "lon": -73.9482038 }, + { "lat": 40.7068518, "lon": -73.9482068 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375857, + "bounds": { + "minlat": 40.7058877, + "minlon": -73.9481221, + "maxlat": 40.7063017, + "maxlon": -73.9480528 + }, + "nodes": [ + 5481854370, + 5481854367 + ], + "geometry": [ + { "lat": 40.7058877, "lon": -73.9480528 }, + { "lat": 40.7063017, "lon": -73.9481221 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375858, + "bounds": { + "minlat": 40.7054557, + "minlon": -73.9480528, + "maxlat": 40.7058877, + "maxlon": -73.9479830 + }, + "nodes": [ + 42476779, + 9752593912, + 8964499330, + 5481854370 + ], + "geometry": [ + { "lat": 40.7054557, "lon": -73.9479830 }, + { "lat": 40.7055471, "lon": -73.9479970 }, + { "lat": 40.7058507, "lon": -73.9480434 }, + { "lat": 40.7058877, "lon": -73.9480528 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375859, + "bounds": { + "minlat": 40.7044581, + "minlon": -73.9479830, + "maxlat": 40.7054557, + "maxlon": -73.9478195 + }, + "nodes": [ + 9983487199, + 42501130, + 6212365401, + 9752593911, + 42476779 + ], + "geometry": [ + { "lat": 40.7044581, "lon": -73.9478195 }, + { "lat": 40.7045565, "lon": -73.9478269 }, + { "lat": 40.7047203, "lon": -73.9478554 }, + { "lat": 40.7053546, "lon": -73.9479658 }, + { "lat": 40.7054557, "lon": -73.9479830 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375860, + "bounds": { + "minlat": 40.7111680, + "minlon": -73.9490140, + "maxlat": 40.7119040, + "maxlon": -73.9488920 + }, + "nodes": [ + 42527647, + 5379075745, + 9957055600, + 42514864 + ], + "geometry": [ + { "lat": 40.7111680, "lon": -73.9488920 }, + { "lat": 40.7112544, "lon": -73.9489063 }, + { "lat": 40.7118501, "lon": -73.9490051 }, + { "lat": 40.7119040, "lon": -73.9490140 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375861, + "bounds": { + "minlat": 40.7119040, + "minlon": -73.9491310, + "maxlat": 40.7126120, + "maxlon": -73.9490140 + }, + "nodes": [ + 42514864, + 9957055599, + 9767624834, + 42525812 + ], + "geometry": [ + { "lat": 40.7119040, "lon": -73.9490140 }, + { "lat": 40.7119708, "lon": -73.9490250 }, + { "lat": 40.7125489, "lon": -73.9491208 }, + { "lat": 40.7126120, "lon": -73.9491310 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375862, + "bounds": { + "minlat": 40.7160281, + "minlon": -73.9511720, + "maxlat": 40.7169262, + "maxlon": -73.9498387 + }, + "nodes": [ + 42476614, + 9942799076, + 12966258417, + 9727866463, + 42476610 + ], + "geometry": [ + { "lat": 40.7169262, "lon": -73.9498387 }, + { "lat": 40.7168707, "lon": -73.9499223 }, + { "lat": 40.7167992, "lon": -73.9500283 }, + { "lat": 40.7163207, "lon": -73.9507381 }, + { "lat": 40.7160281, "lon": -73.9511720 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375863, + "bounds": { + "minlat": 40.7155192, + "minlon": -73.9518508, + "maxlat": 40.7160281, + "maxlon": -73.9511720 + }, + "nodes": [ + 42476610, + 10705117568, + 9802943892, + 12412240651, + 10003855163 + ], + "geometry": [ + { "lat": 40.7160281, "lon": -73.9511720 }, + { "lat": 40.7156326, "lon": -73.9517111 }, + { "lat": 40.7155921, "lon": -73.9517644 }, + { "lat": 40.7155528, "lon": -73.9518110 }, + { "lat": 40.7155192, "lon": -73.9518508 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375864, + "bounds": { + "minlat": 40.7187967, + "minlon": -73.9467812, + "maxlat": 40.7195297, + "maxlon": -73.9455580 + }, + "nodes": [ + 42464292, + 9937287956, + 9945078161, + 42476636 + ], + "geometry": [ + { "lat": 40.7195297, "lon": -73.9455580 }, + { "lat": 40.7194716, "lon": -73.9456537 }, + { "lat": 40.7188372, "lon": -73.9467141 }, + { "lat": 40.7187967, "lon": -73.9467812 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1203375865, + "bounds": { + "minlat": 40.7185663, + "minlon": -73.9471621, + "maxlat": 40.7187967, + "maxlon": -73.9467812 + }, + "nodes": [ + 42476636, + 9945078178, + 42476629 + ], + "geometry": [ + { "lat": 40.7187967, "lon": -73.9467812 }, + { "lat": 40.7187427, "lon": -73.9468721 }, + { "lat": 40.7185663, "lon": -73.9471621 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1203375866, + "bounds": { + "minlat": 40.7182877, + "minlon": -73.9476344, + "maxlat": 40.7185663, + "maxlon": -73.9471621 + }, + "nodes": [ + 42476629, + 598031731 + ], + "geometry": [ + { "lat": 40.7185663, "lon": -73.9471621 }, + { "lat": 40.7182877, "lon": -73.9476344 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1203375867, + "bounds": { + "minlat": 40.7178728, + "minlon": -73.9483301, + "maxlat": 40.7182877, + "maxlon": -73.9476344 + }, + "nodes": [ + 598031731, + 6228178164, + 42476625 + ], + "geometry": [ + { "lat": 40.7182877, "lon": -73.9476344 }, + { "lat": 40.7179381, "lon": -73.9482353 }, + { "lat": 40.7178728, "lon": -73.9483301 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1203375868, + "bounds": { + "minlat": 40.7176728, + "minlon": -73.9486653, + "maxlat": 40.7178728, + "maxlon": -73.9483301 + }, + "nodes": [ + 42476625, + 9802943811, + 42476621 + ], + "geometry": [ + { "lat": 40.7178728, "lon": -73.9483301 }, + { "lat": 40.7178278, "lon": -73.9484053 }, + { "lat": 40.7176728, "lon": -73.9486653 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1203375869, + "bounds": { + "minlat": 40.7171437, + "minlon": -73.9495047, + "maxlat": 40.7176728, + "maxlon": -73.9486653 + }, + "nodes": [ + 42476621, + 42461444, + 598031726 + ], + "geometry": [ + { "lat": 40.7176728, "lon": -73.9486653 }, + { "lat": 40.7174345, "lon": -73.9490648 }, + { "lat": 40.7171437, "lon": -73.9495047 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1203375870, + "bounds": { + "minlat": 40.7169262, + "minlon": -73.9498387, + "maxlat": 40.7171437, + "maxlon": -73.9495047 + }, + "nodes": [ + 598031726, + 9942799074, + 42476614 + ], + "geometry": [ + { "lat": 40.7171437, "lon": -73.9495047 }, + { "lat": 40.7169765, "lon": -73.9497614 }, + { "lat": 40.7169262, "lon": -73.9498387 } + ], + "tags": { + "foot": "use_sidepath", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1203375871, + "bounds": { + "minlat": 40.7190059, + "minlon": -73.9506513, + "maxlat": 40.7217038, + "maxlon": -73.9501837 + }, + "nodes": [ + 42512058, + 9789393727, + 3865261661, + 10599351372, + 9789343568, + 42509216 + ], + "geometry": [ + { "lat": 40.7190059, "lon": -73.9501837 }, + { "lat": 40.7190779, "lon": -73.9501956 }, + { "lat": 40.7195283, "lon": -73.9502698 }, + { "lat": 40.7206618, "lon": -73.9504665 }, + { "lat": 40.7216355, "lon": -73.9506297 }, + { "lat": 40.7217038, "lon": -73.9506513 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375872, + "bounds": { + "minlat": 40.7183000, + "minlon": -73.9501837, + "maxlat": 40.7190059, + "maxlon": -73.9500650 + }, + "nodes": [ + 42511013, + 9789424633, + 5481954266, + 9789393729, + 42512058 + ], + "geometry": [ + { "lat": 40.7183000, "lon": -73.9500650 }, + { "lat": 40.7183689, "lon": -73.9500762 }, + { "lat": 40.7186960, "lon": -73.9501292 }, + { "lat": 40.7189509, "lon": -73.9501740 }, + { "lat": 40.7190059, "lon": -73.9501837 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375873, + "bounds": { + "minlat": 40.7175903, + "minlon": -73.9500650, + "maxlat": 40.7183000, + "maxlon": -73.9499480 + }, + "nodes": [ + 42527665, + 5673291199, + 9789424631, + 42511013 + ], + "geometry": [ + { "lat": 40.7175903, "lon": -73.9499480 }, + { "lat": 40.7176607, "lon": -73.9499596 }, + { "lat": 40.7182444, "lon": -73.9500558 }, + { "lat": 40.7183000, "lon": -73.9500650 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375874, + "bounds": { + "minlat": 40.7171094, + "minlon": -73.9499480, + "maxlat": 40.7175903, + "maxlon": -73.9498688 + }, + "nodes": [ + 598031727, + 5673291184, + 42527665 + ], + "geometry": [ + { "lat": 40.7171094, "lon": -73.9498688 }, + { "lat": 40.7175324, "lon": -73.9499385 }, + { "lat": 40.7175903, "lon": -73.9499480 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375875, + "bounds": { + "minlat": 40.7169262, + "minlon": -73.9498688, + "maxlat": 40.7171094, + "maxlon": -73.9498387 + }, + "nodes": [ + 42476614, + 9727859132, + 598031727 + ], + "geometry": [ + { "lat": 40.7169262, "lon": -73.9498387 }, + { "lat": 40.7169866, "lon": -73.9498489 }, + { "lat": 40.7171094, "lon": -73.9498688 } + ], + "tags": { + "cycleway:both": "no", + "foot": "yes", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203375876, + "bounds": { + "minlat": 40.7161773, + "minlon": -73.9497643, + "maxlat": 40.7164744, + "maxlon": -73.9497154 + }, + "nodes": [ + 42509922, + 9942799062, + 9802943838, + 42476503 + ], + "geometry": [ + { "lat": 40.7161773, "lon": -73.9497154 }, + { "lat": 40.7162398, "lon": -73.9497263 }, + { "lat": 40.7164192, "lon": -73.9497584 }, + { "lat": 40.7164744, "lon": -73.9497643 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1203375877, + "bounds": { + "minlat": 40.7164744, + "minlon": -73.9498387, + "maxlat": 40.7169262, + "maxlon": -73.9497643 + }, + "nodes": [ + 42476503, + 8702221555, + 42476614 + ], + "geometry": [ + { "lat": 40.7164744, "lon": -73.9497643 }, + { "lat": 40.7165346, "lon": -73.9497748 }, + { "lat": 40.7169262, "lon": -73.9498387 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1203376569, + "bounds": { + "minlat": 40.7074717, + "minlon": -74.0171151, + "maxlat": 40.7081012, + "maxlon": -74.0166595 + }, + "nodes": [ + 42433718, + 4206997170, + 10693842122, + 10612369332, + 4876543173, + 9802614802 + ], + "geometry": [ + { "lat": 40.7074717, "lon": -74.0171151 }, + { "lat": 40.7075341, "lon": -74.0170707 }, + { "lat": 40.7075703, "lon": -74.0170443 }, + { "lat": 40.7079971, "lon": -74.0167332 }, + { "lat": 40.7080346, "lon": -74.0167057 }, + { "lat": 40.7081012, "lon": -74.0166595 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 1203376570, + "bounds": { + "minlat": 40.7068458, + "minlon": -74.0175734, + "maxlat": 40.7074717, + "maxlon": -74.0171151 + }, + "nodes": [ + 42433715, + 11374474039, + 12295878847, + 10693842121, + 4206997167, + 42433718 + ], + "geometry": [ + { "lat": 40.7068458, "lon": -74.0175734 }, + { "lat": 40.7069109, "lon": -74.0175256 }, + { "lat": 40.7069510, "lon": -74.0174961 }, + { "lat": 40.7073673, "lon": -74.0171902 }, + { "lat": 40.7074067, "lon": -74.0171614 }, + { "lat": 40.7074717, "lon": -74.0171151 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 1203376571, + "bounds": { + "minlat": 40.7061729, + "minlon": -74.0179342, + "maxlat": 40.7065254, + "maxlon": -74.0177844 + }, + "nodes": [ + 42433712, + 13645024466, + 4207000203, + 3777894257, + 3777894258, + 3777894259 + ], + "geometry": [ + { "lat": 40.7061729, "lon": -74.0179342 }, + { "lat": 40.7062095, "lon": -74.0179211 }, + { "lat": 40.7062745, "lon": -74.0178979 }, + { "lat": 40.7063446, "lon": -74.0178700 }, + { "lat": 40.7064489, "lon": -74.0178236 }, + { "lat": 40.7065254, "lon": -74.0177844 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "maxspeed:conditional": "20 mph @ (Mo-Fr 07:00-18:00; PH off; SH off)", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "no", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-16:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bowling Grn", + "tiger:name_base_1": "Battery", + "tiger:name_type_1": "Pl", + "tiger:zip_left": "10280", + "tiger:zip_right": "10280", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 1203376572, + "bounds": { + "minlat": 40.7049134, + "minlon": -74.0179645, + "maxlat": 40.7055470, + "maxlon": -74.0173422 + }, + "nodes": [ + 246901366, + 607907589, + 11416159791, + 42433683, + 42433686, + 2053820754, + 2053820756, + 42433689, + 2053820768, + 42433692, + 2053820773, + 42433696, + 2053820774 + ], + "geometry": [ + { "lat": 40.7049134, "lon": -74.0173422 }, + { "lat": 40.7049372, "lon": -74.0173989 }, + { "lat": 40.7049735, "lon": -74.0174673 }, + { "lat": 40.7050157, "lon": -74.0175342 }, + { "lat": 40.7050811, "lon": -74.0176240 }, + { "lat": 40.7051530, "lon": -74.0177105 }, + { "lat": 40.7052049, "lon": -74.0177620 }, + { "lat": 40.7052625, "lon": -74.0178126 }, + { "lat": 40.7052985, "lon": -74.0178373 }, + { "lat": 40.7053275, "lon": -74.0178571 }, + { "lat": 40.7053990, "lon": -74.0179001 }, + { "lat": 40.7054698, "lon": -74.0179336 }, + { "lat": 40.7055470, "lon": -74.0179645 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bowling Grn", + "tiger:name_base_1": "Battery", + "tiger:name_type_1": "Pl", + "tiger:zip_left": "10280", + "tiger:zip_right": "10280", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 1203376573, + "bounds": { + "minlat": 40.7081012, + "minlon": -74.0166595, + "maxlat": 40.7081724, + "maxlon": -74.0166109 + }, + "nodes": [ + 9802614802, + 42427411 + ], + "geometry": [ + { "lat": 40.7081012, "lon": -74.0166595 }, + { "lat": 40.7081724, "lon": -74.0166109 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 1203376574, + "bounds": { + "minlat": 40.7079294, + "minlon": -74.0165623, + "maxlat": 40.7080574, + "maxlon": -74.0162175 + }, + "nodes": [ + 9802614803, + 9802614804, + 10291808122, + 9802614798 + ], + "geometry": [ + { "lat": 40.7080574, "lon": -74.0165623 }, + { "lat": 40.7079740, "lon": -74.0163669 }, + { "lat": 40.7079497, "lon": -74.0162965 }, + { "lat": 40.7079294, "lon": -74.0162175 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203394266, + "bounds": { + "minlat": 40.7092675, + "minlon": -73.9596674, + "maxlat": 40.7093792, + "maxlon": -73.9593691 + }, + "nodes": [ + 11155187994, + 9968370404, + 2307215728 + ], + "geometry": [ + { "lat": 40.7093792, "lon": -73.9596674 }, + { "lat": 40.7093076, "lon": -73.9594753 }, + { "lat": 40.7092675, "lon": -73.9593691 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "name": "Washington Plaza Lane 5", + "oneway": "yes", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1203394740, + "bounds": { + "minlat": 40.7301881, + "minlon": -73.9544396, + "maxlat": 40.7302057, + "maxlon": -73.9542532 + }, + "nodes": [ + 42514448, + 6235394719, + 9997952331, + 5238706267 + ], + "geometry": [ + { "lat": 40.7302057, "lon": -73.9542532 }, + { "lat": 40.7301947, "lon": -73.9543652 }, + { "lat": 40.7301908, "lon": -73.9544097 }, + { "lat": 40.7301881, "lon": -73.9544396 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Greenpoint", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 1203396064, + "bounds": { + "minlat": 40.7325580, + "minlon": -73.9432502, + "maxlat": 40.7326577, + "maxlon": -73.9428072 + }, + "nodes": [ + 622232010, + 6235394704, + 13515590856, + 13515590857, + 13515590832, + 3430220607, + 13515590833, + 11155242469 + ], + "geometry": [ + { "lat": 40.7326577, "lon": -73.9428072 }, + { "lat": 40.7326366, "lon": -73.9429090 }, + { "lat": 40.7326300, "lon": -73.9429366 }, + { "lat": 40.7326200, "lon": -73.9429841 }, + { "lat": 40.7326144, "lon": -73.9430091 }, + { "lat": 40.7325949, "lon": -73.9430998 }, + { "lat": 40.7325777, "lon": -73.9431724 }, + { "lat": 40.7325580, "lon": -73.9432502 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 1203473541, + "bounds": { + "minlat": 40.7270047, + "minlon": -73.9613482, + "maxlat": 40.7282571, + "maxlon": -73.9589859 + }, + "nodes": [ + 6742881818, + 11155865232, + 11155865231, + 11155865230, + 2842929819, + 2842929826, + 2842929908, + 2842929898, + 11155865229, + 11155865228, + 11155865227, + 11155865226, + 11155865225, + 9478443138, + 9478443135, + 9478443134, + 6742881821, + 11099032977, + 6742881820, + 6742881819, + 9478443128, + 6742881818 + ], + "geometry": [ + { "lat": 40.7270047, "lon": -73.9613219 }, + { "lat": 40.7272649, "lon": -73.9613482 }, + { "lat": 40.7272980, "lon": -73.9612954 }, + { "lat": 40.7273665, "lon": -73.9612476 }, + { "lat": 40.7274574, "lon": -73.9612233 }, + { "lat": 40.7274687, "lon": -73.9610913 }, + { "lat": 40.7275795, "lon": -73.9611077 }, + { "lat": 40.7275676, "lon": -73.9612041 }, + { "lat": 40.7277008, "lon": -73.9611541 }, + { "lat": 40.7278364, "lon": -73.9611175 }, + { "lat": 40.7280739, "lon": -73.9610884 }, + { "lat": 40.7281369, "lon": -73.9603352 }, + { "lat": 40.7282571, "lon": -73.9591182 }, + { "lat": 40.7275935, "lon": -73.9590116 }, + { "lat": 40.7274935, "lon": -73.9589859 }, + { "lat": 40.7273930, "lon": -73.9600288 }, + { "lat": 40.7274078, "lon": -73.9600658 }, + { "lat": 40.7273971, "lon": -73.9601819 }, + { "lat": 40.7273867, "lon": -73.9602950 }, + { "lat": 40.7271024, "lon": -73.9602495 }, + { "lat": 40.7270144, "lon": -73.9612151 }, + { "lat": 40.7270047, "lon": -73.9613219 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1203473548, + "bounds": { + "minlat": 40.7264948, + "minlon": -73.9606674, + "maxlat": 40.7266778, + "maxlon": -73.9600108 + }, + "nodes": [ + 11099032980, + 11784543562, + 13018699461, + 11099032981, + 11099032982, + 13018699460, + 13018699461 + ], + "geometry": [ + { "lat": 40.7266343, "lon": -73.9600108 }, + { "lat": 40.7266230, "lon": -73.9601106 }, + { "lat": 40.7265427, "lon": -73.9604150 }, + { "lat": 40.7264948, "lon": -73.9605966 }, + { "lat": 40.7266308, "lon": -73.9606674 }, + { "lat": 40.7266778, "lon": -73.9604950 }, + { "lat": 40.7265427, "lon": -73.9604150 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1203499899, + "bounds": { + "minlat": 40.8813054, + "minlon": -73.9844625, + "maxlat": 40.8816282, + "maxlon": -73.9841427 + }, + "nodes": [ + 7183509537, + 11156088829, + 7183509542 + ], + "geometry": [ + { "lat": 40.8813054, "lon": -73.9843189 }, + { "lat": 40.8815215, "lon": -73.9841427 }, + { "lat": 40.8816282, "lon": -73.9844625 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1203499900, + "bounds": { + "minlat": 40.8821032, + "minlon": -73.9841728, + "maxlat": 40.8825442, + "maxlon": -73.9836961 + }, + "nodes": [ + 11156088835, + 11156088836, + 11156088837, + 11156088840, + 11156088838, + 11156088839 + ], + "geometry": [ + { "lat": 40.8824608, "lon": -73.9836961 }, + { "lat": 40.8825442, "lon": -73.9839204 }, + { "lat": 40.8821754, "lon": -73.9841728 }, + { "lat": 40.8821585, "lon": -73.9841289 }, + { "lat": 40.8821032, "lon": -73.9839853 }, + { "lat": 40.8823691, "lon": -73.9838150 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1203499901, + "bounds": { + "minlat": 40.8818744, + "minlon": -73.9843090, + "maxlat": 40.8821585, + "maxlon": -73.9841289 + }, + "nodes": [ + 7183509543, + 12022105700, + 11156088840 + ], + "geometry": [ + { "lat": 40.8818744, "lon": -73.9843090 }, + { "lat": 40.8819291, "lon": -73.9842785 }, + { "lat": 40.8821585, "lon": -73.9841289 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1203805775, + "bounds": { + "minlat": 40.7481354, + "minlon": -73.9496972, + "maxlat": 40.7483207, + "maxlon": -73.9496350 + }, + "nodes": [ + 11157932402, + 11157932403 + ], + "geometry": [ + { "lat": 40.7481354, "lon": -73.9496972 }, + { "lat": 40.7483207, "lon": -73.9496350 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|right" + } +}, +{ + "type": "way", + "id": 1203805776, + "bounds": { + "minlat": 40.7457370, + "minlon": -73.9505893, + "maxlat": 40.7485546, + "maxlon": -73.9496291 + }, + "nodes": [ + 42825542, + 11157932404, + 11157958427, + 11157958406, + 11157958426, + 11157958425, + 11157958407, + 11157958424, + 11157958423, + 11157958408, + 11157958422, + 11157958421, + 11157958409 + ], + "geometry": [ + { "lat": 40.7485546, "lon": -73.9496291 }, + { "lat": 40.7484455, "lon": -73.9496729 }, + { "lat": 40.7478717, "lon": -73.9498671 }, + { "lat": 40.7478119, "lon": -73.9498872 }, + { "lat": 40.7477479, "lon": -73.9499088 }, + { "lat": 40.7471819, "lon": -73.9501004 }, + { "lat": 40.7471228, "lon": -73.9501204 }, + { "lat": 40.7470527, "lon": -73.9501440 }, + { "lat": 40.7464898, "lon": -73.9503344 }, + { "lat": 40.7464287, "lon": -73.9503553 }, + { "lat": 40.7463664, "lon": -73.9503764 }, + { "lat": 40.7457983, "lon": -73.9505685 }, + { "lat": 40.7457370, "lon": -73.9505893 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203805777, + "bounds": { + "minlat": 40.7438747, + "minlon": -73.9512169, + "maxlat": 40.7450483, + "maxlon": -73.9508224 + }, + "nodes": [ + 11157958405, + 11157958418, + 11157958417, + 11157958410, + 11157958416, + 12044653393 + ], + "geometry": [ + { "lat": 40.7450483, "lon": -73.9508224 }, + { "lat": 40.7449865, "lon": -73.9508427 }, + { "lat": 40.7444108, "lon": -73.9510321 }, + { "lat": 40.7443555, "lon": -73.9510504 }, + { "lat": 40.7442916, "lon": -73.9510725 }, + { "lat": 40.7438747, "lon": -73.9512169 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:separation": "kerb", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203805778, + "bounds": { + "minlat": 40.7432648, + "minlon": -73.9512578, + "maxlat": 40.7436373, + "maxlon": -73.9511803 + }, + "nodes": [ + 11157958412, + 11157958414, + 11211160053, + 11157932401 + ], + "geometry": [ + { "lat": 40.7432648, "lon": -73.9512578 }, + { "lat": 40.7434051, "lon": -73.9512287 }, + { "lat": 40.7435824, "lon": -73.9511916 }, + { "lat": 40.7436373, "lon": -73.9511803 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "secondary", + "lanes": "3", + "name": "11th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left|through|through" + } +}, +{ + "type": "way", + "id": 1203805779, + "bounds": { + "minlat": 40.7431897, + "minlon": -73.9514078, + "maxlat": 40.7432648, + "maxlon": -73.9512578 + }, + "nodes": [ + 42844241, + 11157958412 + ], + "geometry": [ + { "lat": 40.7431897, "lon": -73.9514078 }, + { "lat": 40.7432648, "lon": -73.9512578 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "Jackson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|left|through" + } +}, +{ + "type": "way", + "id": 1203827803, + "bounds": { + "minlat": 40.7025773, + "minlon": -73.9919272, + "maxlat": 40.7025893, + "maxlon": -73.9916125 + }, + "nodes": [ + 11158142756, + 42499996 + ], + "geometry": [ + { "lat": 40.7025893, "lon": -73.9919272 }, + { "lat": 40.7025773, "lon": -73.9916125 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Front", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1203871377, + "bounds": { + "minlat": 40.8458675, + "minlon": -73.9853894, + "maxlat": 40.8460175, + "maxlon": -73.9851619 + }, + "nodes": [ + 11158461440, + 5965026276 + ], + "geometry": [ + { "lat": 40.8458675, "lon": -73.9851619 }, + { "lat": 40.8460175, "lon": -73.9853894 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1203871378, + "bounds": { + "minlat": 40.8459175, + "minlon": -73.9853675, + "maxlat": 40.8460640, + "maxlon": -73.9851116 + }, + "nodes": [ + 11158461439, + 5965026283 + ], + "geometry": [ + { "lat": 40.8459175, "lon": -73.9851116 }, + { "lat": 40.8460640, "lon": -73.9853675 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1203871379, + "bounds": { + "minlat": 40.8457813, + "minlon": -73.9851619, + "maxlat": 40.8458675, + "maxlon": -73.9850135 + }, + "nodes": [ + 5965026275, + 11158461440 + ], + "geometry": [ + { "lat": 40.8457813, "lon": -73.9850135 }, + { "lat": 40.8458675, "lon": -73.9851619 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1203871380, + "bounds": { + "minlat": 40.8458318, + "minlon": -73.9851116, + "maxlat": 40.8459175, + "maxlon": -73.9849617 + }, + "nodes": [ + 5965026282, + 11158461439 + ], + "geometry": [ + { "lat": 40.8458318, "lon": -73.9849617 }, + { "lat": 40.8459175, "lon": -73.9851116 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1203881399, + "bounds": { + "minlat": 40.8233273, + "minlon": -73.9303790, + "maxlat": 40.8233579, + "maxlon": -73.9297708 + }, + "nodes": [ + 11158545859, + 6378691540, + 11158584664 + ], + "geometry": [ + { "lat": 40.8233579, "lon": -73.9297708 }, + { "lat": 40.8233366, "lon": -73.9301948 }, + { "lat": 40.8233273, "lon": -73.9303790 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1203881400, + "bounds": { + "minlat": 40.8233579, + "minlon": -73.9297708, + "maxlat": 40.8233621, + "maxlon": -73.9296855 + }, + "nodes": [ + 11158545858, + 11158545859 + ], + "geometry": [ + { "lat": 40.8233621, "lon": -73.9296855 }, + { "lat": 40.8233579, "lon": -73.9297708 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1203882843, + "bounds": { + "minlat": 40.8232962, + "minlon": -73.9309938, + "maxlat": 40.8233227, + "maxlon": -73.9304704 + }, + "nodes": [ + 11158584665, + 6378691541 + ], + "geometry": [ + { "lat": 40.8233227, "lon": -73.9304704 }, + { "lat": 40.8232962, "lon": -73.9309938 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1203882844, + "bounds": { + "minlat": 40.8233227, + "minlon": -73.9304704, + "maxlat": 40.8233273, + "maxlon": -73.9303790 + }, + "nodes": [ + 11158584664, + 11158584665 + ], + "geometry": [ + { "lat": 40.8233273, "lon": -73.9303790 }, + { "lat": 40.8233227, "lon": -73.9304704 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1203889381, + "bounds": { + "minlat": 40.7645219, + "minlon": -73.9472222, + "maxlat": 40.7646734, + "maxlon": -73.9469831 + }, + "nodes": [ + 11158621538, + 5212861658, + 8549589544, + 5212861660, + 3580758423 + ], + "geometry": [ + { "lat": 40.7645219, "lon": -73.9469831 }, + { "lat": 40.7645731, "lon": -73.9470186 }, + { "lat": 40.7646143, "lon": -73.9471004 }, + { "lat": 40.7646261, "lon": -73.9471210 }, + { "lat": 40.7646734, "lon": -73.9472222 } + ], + "tags": { + "access": "no", + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1203889382, + "bounds": { + "minlat": 40.7643279, + "minlon": -73.9474722, + "maxlat": 40.7643853, + "maxlon": -73.9473546 + }, + "nodes": [ + 5212861654, + 11158621537 + ], + "geometry": [ + { "lat": 40.7643853, "lon": -73.9474722 }, + { "lat": 40.7643279, "lon": -73.9473546 } + ], + "tags": { + "access": "no", + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1204543480, + "bounds": { + "minlat": 40.7477643, + "minlon": -73.9474775, + "maxlat": 40.7481130, + "maxlon": -73.9473607 + }, + "nodes": [ + 42825544, + 5034782281, + 11163899158 + ], + "geometry": [ + { "lat": 40.7481130, "lon": -73.9473607 }, + { "lat": 40.7480097, "lon": -73.9473948 }, + { "lat": 40.7477643, "lon": -73.9474775 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1204547878, + "bounds": { + "minlat": 40.7193234, + "minlon": -73.9904681, + "maxlat": 40.7194380, + "maxlon": -73.9904094 + }, + "nodes": [ + 5296792744, + 5854381564, + 486868873 + ], + "geometry": [ + { "lat": 40.7194380, "lon": -73.9904094 }, + { "lat": 40.7194204, "lon": -73.9904184 }, + { "lat": 40.7193234, "lon": -73.9904681 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 1204773045, + "bounds": { + "minlat": 40.7522624, + "minlon": -74.0036235, + "maxlat": 40.7523898, + "maxlon": -74.0033228 + }, + "nodes": [ + 11165901278, + 9531564558 + ], + "geometry": [ + { "lat": 40.7522624, "lon": -74.0033228 }, + { "lat": 40.7523898, "lon": -74.0036235 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1205112614, + "bounds": { + "minlat": 40.7140670, + "minlon": -73.9516294, + "maxlat": 40.7140807, + "maxlon": -73.9493717 + }, + "nodes": [ + 42484200, + 8117195699, + 11155242411, + 11155242413, + 5515218181, + 6248588906, + 5482177473 + ], + "geometry": [ + { "lat": 40.7140670, "lon": -73.9516294 }, + { "lat": 40.7140670, "lon": -73.9515154 }, + { "lat": 40.7140691, "lon": -73.9511895 }, + { "lat": 40.7140766, "lon": -73.9500301 }, + { "lat": 40.7140799, "lon": -73.9495135 }, + { "lat": 40.7140803, "lon": -73.9494624 }, + { "lat": 40.7140807, "lon": -73.9493717 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1205112615, + "bounds": { + "minlat": 40.7133200, + "minlon": -73.9493717, + "maxlat": 40.7140807, + "maxlon": -73.9492450 + }, + "nodes": [ + 5482177473, + 6248588907, + 9795356154, + 42527653 + ], + "geometry": [ + { "lat": 40.7140807, "lon": -73.9493717 }, + { "lat": 40.7139881, "lon": -73.9493565 }, + { "lat": 40.7133937, "lon": -73.9492574 }, + { "lat": 40.7133200, "lon": -73.9492450 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1205141558, + "bounds": { + "minlat": 40.8557437, + "minlon": -73.9824933, + "maxlat": 40.8558347, + "maxlon": -73.9824054 + }, + "nodes": [ + 11168990086, + 7434431004 + ], + "geometry": [ + { "lat": 40.8558347, "lon": -73.9824054 }, + { "lat": 40.8557437, "lon": -73.9824933 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1205141559, + "bounds": { + "minlat": 40.8558347, + "minlon": -73.9824054, + "maxlat": 40.8560121, + "maxlon": -73.9822340 + }, + "nodes": [ + 7434431003, + 11168990086 + ], + "geometry": [ + { "lat": 40.8560121, "lon": -73.9822340 }, + { "lat": 40.8558347, "lon": -73.9824054 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1205141560, + "bounds": { + "minlat": 40.8557886, + "minlon": -73.9825692, + "maxlat": 40.8558815, + "maxlon": -73.9824849 + }, + "nodes": [ + 11168990087, + 7434430988 + ], + "geometry": [ + { "lat": 40.8558815, "lon": -73.9824849 }, + { "lat": 40.8557886, "lon": -73.9825692 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1205141561, + "bounds": { + "minlat": 40.8558815, + "minlon": -73.9824849, + "maxlat": 40.8561886, + "maxlon": -73.9822137 + }, + "nodes": [ + 7434430984, + 7434430985, + 7434430986, + 7434430987, + 11168990087 + ], + "geometry": [ + { "lat": 40.8561886, "lon": -73.9822137 }, + { "lat": 40.8561763, "lon": -73.9822176 }, + { "lat": 40.8561616, "lon": -73.9822292 }, + { "lat": 40.8561374, "lon": -73.9822526 }, + { "lat": 40.8558815, "lon": -73.9824849 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1205290643, + "bounds": { + "minlat": 40.8564524, + "minlon": -73.9690884, + "maxlat": 40.8566450, + "maxlon": -73.9690085 + }, + "nodes": [ + 11170278563, + 11170278551, + 11170278552 + ], + "geometry": [ + { "lat": 40.8564524, "lon": -73.9690884 }, + { "lat": 40.8565338, "lon": -73.9690085 }, + { "lat": 40.8566450, "lon": -73.9690700 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1205290644, + "bounds": { + "minlat": 40.8560132, + "minlon": -73.9694232, + "maxlat": 40.8562906, + "maxlon": -73.9689468 + }, + "nodes": [ + 11170278554, + 11170278550, + 11170278555 + ], + "geometry": [ + { "lat": 40.8562906, "lon": -73.9694232 }, + { "lat": 40.8562249, "lon": -73.9693119 }, + { "lat": 40.8560132, "lon": -73.9689468 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1205290646, + "bounds": { + "minlat": 40.8562249, + "minlon": -73.9693119, + "maxlat": 40.8563875, + "maxlon": -73.9691522 + }, + "nodes": [ + 11170278550, + 11170278564 + ], + "geometry": [ + { "lat": 40.8562249, "lon": -73.9693119 }, + { "lat": 40.8563875, "lon": -73.9691522 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1205290647, + "bounds": { + "minlat": 40.8563875, + "minlon": -73.9691522, + "maxlat": 40.8564524, + "maxlon": -73.9690884 + }, + "nodes": [ + 11170278564, + 11170278570, + 11170278563 + ], + "geometry": [ + { "lat": 40.8563875, "lon": -73.9691522 }, + { "lat": 40.8564250, "lon": -73.9691153 }, + { "lat": 40.8564524, "lon": -73.9690884 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1205329801, + "bounds": { + "minlat": 40.8560411, + "minlon": -73.9685037, + "maxlat": 40.8561507, + "maxlon": -73.9684060 + }, + "nodes": [ + 5108595007, + 11170572830 + ], + "geometry": [ + { "lat": 40.8560411, "lon": -73.9685037 }, + { "lat": 40.8561507, "lon": -73.9684060 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1205329812, + "bounds": { + "minlat": 40.8550141, + "minlon": -73.9667021, + "maxlat": 40.8551407, + "maxlon": -73.9666475 + }, + "nodes": [ + 76465636, + 11170628884, + 11170628885 + ], + "geometry": [ + { "lat": 40.8550141, "lon": -73.9667021 }, + { "lat": 40.8550851, "lon": -73.9666870 }, + { "lat": 40.8551407, "lon": -73.9666475 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1205523503, + "bounds": { + "minlat": 40.7104554, + "minlon": -73.9654967, + "maxlat": 40.7105221, + "maxlon": -73.9654805 + }, + "nodes": [ + 42505380, + 4207788765 + ], + "geometry": [ + { "lat": 40.7104554, "lon": -73.9654967 }, + { "lat": 40.7105221, "lon": -73.9654805 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "no", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1205533070, + "bounds": { + "minlat": 40.7284697, + "minlon": -74.0028017, + "maxlat": 40.7286951, + "maxlon": -74.0026905 + }, + "nodes": [ + 4321748237, + 3891963909, + 5155816419 + ], + "geometry": [ + { "lat": 40.7284697, "lon": -74.0028017 }, + { "lat": 40.7285361, "lon": -74.0027678 }, + { "lat": 40.7286951, "lon": -74.0026905 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1205533071, + "bounds": { + "minlat": 40.7250916, + "minlon": -73.9970609, + "maxlat": 40.7253844, + "maxlon": -73.9968134 + }, + "nodes": [ + 1919595915, + 5829844675, + 4755898719 + ], + "geometry": [ + { "lat": 40.7253844, "lon": -73.9968134 }, + { "lat": 40.7253161, "lon": -73.9968711 }, + { "lat": 40.7250916, "lon": -73.9970609 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1205900284, + "bounds": { + "minlat": 40.7660406, + "minlon": -73.9776429, + "maxlat": 40.7662706, + "maxlon": -73.9770984 + }, + "nodes": [ + 4207892896, + 4796245038 + ], + "geometry": [ + { "lat": 40.7660406, "lon": -73.9770984 }, + { "lat": 40.7662706, "lon": -73.9776429 } + ], + "tags": { + "alt_name": "West 59th Street", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "name": "Central Park South", + "name_1": "West 59 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|through", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1205928695, + "bounds": { + "minlat": 40.7134203, + "minlon": -73.9146761, + "maxlat": 40.7134454, + "maxlon": -73.9142799 + }, + "nodes": [ + 42843573, + 9755751816, + 11175031790 + ], + "geometry": [ + { "lat": 40.7134454, "lon": -73.9146761 }, + { "lat": 40.7134397, "lon": -73.9145860 }, + { "lat": 40.7134203, "lon": -73.9142799 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1205928696, + "bounds": { + "minlat": 40.7128229, + "minlon": -73.9152972, + "maxlat": 40.7134454, + "maxlon": -73.9146761 + }, + "nodes": [ + 11175031791, + 5482330026, + 9747646549, + 42843573 + ], + "geometry": [ + { "lat": 40.7128229, "lon": -73.9152972 }, + { "lat": 40.7130153, "lon": -73.9151007 }, + { "lat": 40.7133705, "lon": -73.9147379 }, + { "lat": 40.7134454, "lon": -73.9146761 } + ], + "tags": { + "highway": "residential", + "name": "Starr Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1206211381, + "bounds": { + "minlat": 40.7444083, + "minlon": -73.9141135, + "maxlat": 40.7444295, + "maxlon": -73.9139221 + }, + "nodes": [ + 42796341, + 11177302953 + ], + "geometry": [ + { "lat": 40.7444295, "lon": -73.9141135 }, + { "lat": 40.7444083, "lon": -73.9139221 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt", + "turn:lanes:forward": "through|through|right" + } +}, +{ + "type": "way", + "id": 1206211382, + "bounds": { + "minlat": 40.7447072, + "minlon": -73.9167592, + "maxlat": 40.7447387, + "maxlon": -73.9164852 + }, + "nodes": [ + 11177302954, + 10074123175, + 42817805 + ], + "geometry": [ + { "lat": 40.7447387, "lon": -73.9167592 }, + { "lat": 40.7447200, "lon": -73.9165971 }, + { "lat": 40.7447072, "lon": -73.9164852 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt", + "turn:lanes": "|through|right" + } +}, +{ + "type": "way", + "id": 1206211383, + "bounds": { + "minlat": 40.7451593, + "minlon": -73.9211389, + "maxlat": 40.7452437, + "maxlon": -73.9204129 + }, + "nodes": [ + 42817789, + 10069693827, + 8258957009, + 10960704695, + 11177302955 + ], + "geometry": [ + { "lat": 40.7452437, "lon": -73.9211389 }, + { "lat": 40.7452314, "lon": -73.9210193 }, + { "lat": 40.7451895, "lon": -73.9206679 }, + { "lat": 40.7451858, "lon": -73.9206364 }, + { "lat": 40.7451593, "lon": -73.9204129 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1206211384, + "bounds": { + "minlat": 40.7474014, + "minlon": -73.9254850, + "maxlat": 40.7474330, + "maxlon": -73.9252344 + }, + "nodes": [ + 11177302956, + 10069673333, + 42932839 + ], + "geometry": [ + { "lat": 40.7474014, "lon": -73.9252344 }, + { "lat": 40.7474169, "lon": -73.9253683 }, + { "lat": 40.7474330, "lon": -73.9254850 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|through|right" + } +}, +{ + "type": "way", + "id": 1206420877, + "bounds": { + "minlat": 40.7607805, + "minlon": -74.0002785, + "maxlat": 40.7609002, + "maxlon": -74.0001929 + }, + "nodes": [ + 11179060317, + 5542715082, + 5542715086 + ], + "geometry": [ + { "lat": 40.7609002, "lon": -74.0001929 }, + { "lat": 40.7608450, "lon": -74.0002324 }, + { "lat": 40.7607805, "lon": -74.0002785 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1206420878, + "bounds": { + "minlat": 40.7610457, + "minlon": -74.0000889, + "maxlat": 40.7611412, + "maxlon": -74.0000206 + }, + "nodes": [ + 1993431131, + 11179060318 + ], + "geometry": [ + { "lat": 40.7611412, "lon": -74.0000206 }, + { "lat": 40.7610457, "lon": -74.0000889 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1206522401, + "bounds": { + "minlat": 40.7245084, + "minlon": -73.9439347, + "maxlat": 40.7247587, + "maxlon": -73.9435076 + }, + "nodes": [ + 10291494313, + 10291494314, + 10295930068, + 11127090106, + 10295930069, + 10295930071, + 10295930070, + 11127090107, + 10291494315, + 11127090108, + 10291494316, + 11127090109, + 11127090110, + 11127090111, + 10291494317, + 11180277365, + 11180277362, + 11180277361, + 11180277360, + 11180277359, + 11180277358, + 11180277357, + 11180277356, + 11180277355, + 11180277354, + 11180277436, + 11180278621, + 11180278587, + 11180278661, + 10291494313 + ], + "geometry": [ + { "lat": 40.7245509, "lon": -73.9439347 }, + { "lat": 40.7245741, "lon": -73.9436703 }, + { "lat": 40.7245759, "lon": -73.9436555 }, + { "lat": 40.7245858, "lon": -73.9436736 }, + { "lat": 40.7245991, "lon": -73.9436771 }, + { "lat": 40.7246108, "lon": -73.9436745 }, + { "lat": 40.7246221, "lon": -73.9436622 }, + { "lat": 40.7246245, "lon": -73.9436467 }, + { "lat": 40.7246223, "lon": -73.9436263 }, + { "lat": 40.7246573, "lon": -73.9435939 }, + { "lat": 40.7246976, "lon": -73.9435670 }, + { "lat": 40.7247124, "lon": -73.9435681 }, + { "lat": 40.7247219, "lon": -73.9435698 }, + { "lat": 40.7247395, "lon": -73.9435637 }, + { "lat": 40.7247488, "lon": -73.9435498 }, + { "lat": 40.7247587, "lon": -73.9435380 }, + { "lat": 40.7247203, "lon": -73.9435076 }, + { "lat": 40.7246986, "lon": -73.9435076 }, + { "lat": 40.7246732, "lon": -73.9435337 }, + { "lat": 40.7246468, "lon": -73.9435565 }, + { "lat": 40.7246132, "lon": -73.9435861 }, + { "lat": 40.7245814, "lon": -73.9436013 }, + { "lat": 40.7245563, "lon": -73.9436036 }, + { "lat": 40.7245434, "lon": -73.9436159 }, + { "lat": 40.7245347, "lon": -73.9436359 }, + { "lat": 40.7245300, "lon": -73.9436814 }, + { "lat": 40.7245084, "lon": -73.9438917 }, + { "lat": 40.7245137, "lon": -73.9439140 }, + { "lat": 40.7245242, "lon": -73.9439263 }, + { "lat": 40.7245509, "lon": -73.9439347 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1206522409, + "bounds": { + "minlat": 40.7241466, + "minlon": -73.9438935, + "maxlat": 40.7243360, + "maxlon": -73.9434247 + }, + "nodes": [ + 11180278684, + 11180277432, + 11180277419, + 11180278601, + 11180278568, + 11180278644, + 11180278581, + 11180278658, + 11180278627, + 11180278708, + 9858852492, + 9858852495, + 11127090096, + 11127090101, + 11127090097, + 11127090102, + 9858852496, + 11127090098, + 9858852497, + 11127090099, + 9858852498, + 11127090100, + 9858852499, + 9858852500, + 11180277420, + 11180278557, + 11180278684 + ], + "geometry": [ + { "lat": 40.7243360, "lon": -73.9436702 }, + { "lat": 40.7243358, "lon": -73.9436384 }, + { "lat": 40.7243287, "lon": -73.9436010 }, + { "lat": 40.7243137, "lon": -73.9435730 }, + { "lat": 40.7242818, "lon": -73.9435549 }, + { "lat": 40.7242597, "lon": -73.9435316 }, + { "lat": 40.7242420, "lon": -73.9435111 }, + { "lat": 40.7242230, "lon": -73.9434714 }, + { "lat": 40.7241964, "lon": -73.9434323 }, + { "lat": 40.7241690, "lon": -73.9434247 }, + { "lat": 40.7241466, "lon": -73.9434301 }, + { "lat": 40.7241844, "lon": -73.9435115 }, + { "lat": 40.7241825, "lon": -73.9435209 }, + { "lat": 40.7241856, "lon": -73.9435335 }, + { "lat": 40.7241938, "lon": -73.9435425 }, + { "lat": 40.7242048, "lon": -73.9435412 }, + { "lat": 40.7242275, "lon": -73.9435737 }, + { "lat": 40.7242258, "lon": -73.9435907 }, + { "lat": 40.7242298, "lon": -73.9436083 }, + { "lat": 40.7242418, "lon": -73.9436161 }, + { "lat": 40.7242541, "lon": -73.9436157 }, + { "lat": 40.7242639, "lon": -73.9436082 }, + { "lat": 40.7242966, "lon": -73.9436250 }, + { "lat": 40.7242763, "lon": -73.9438935 }, + { "lat": 40.7243042, "lon": -73.9438911 }, + { "lat": 40.7243165, "lon": -73.9438794 }, + { "lat": 40.7243360, "lon": -73.9436702 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1207031796, + "bounds": { + "minlat": 40.7106805, + "minlon": -73.9654490, + "maxlat": 40.7116780, + "maxlon": -73.9649580 + }, + "nodes": [ + 42514914, + 9990599520, + 9990599448, + 42468741, + 9990599447, + 11701378366 + ], + "geometry": [ + { "lat": 40.7116780, "lon": -73.9649580 }, + { "lat": 40.7116350, "lon": -73.9649844 }, + { "lat": 40.7110731, "lon": -73.9653296 }, + { "lat": 40.7110064, "lon": -73.9653673 }, + { "lat": 40.7109480, "lon": -73.9653967 }, + { "lat": 40.7106805, "lon": -73.9654490 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1207031797, + "bounds": { + "minlat": 40.7145897, + "minlon": -73.9631150, + "maxlat": 40.7149553, + "maxlon": -73.9628833 + }, + "nodes": [ + 11701389375, + 11701389376 + ], + "geometry": [ + { "lat": 40.7145897, "lon": -73.9631150 }, + { "lat": 40.7149553, "lon": -73.9628833 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1207031798, + "bounds": { + "minlat": 40.7152479, + "minlon": -73.9626505, + "maxlat": 40.7157941, + "maxlon": -73.9620584 + }, + "nodes": [ + 11701389378, + 9949550270, + 42489006, + 9949550271, + 11701389377 + ], + "geometry": [ + { "lat": 40.7157941, "lon": -73.9620584 }, + { "lat": 40.7156201, "lon": -73.9622458 }, + { "lat": 40.7155800, "lon": -73.9622890 }, + { "lat": 40.7155304, "lon": -73.9623399 }, + { "lat": 40.7152479, "lon": -73.9626505 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "description": "NYC DOT presentation of North Brooklyn Open Streets https://www.nyc.gov/html/dot/downloads/pdf/berry-open-street-mar2023.pdf", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1207031799, + "bounds": { + "minlat": 40.7170974, + "minlon": -73.9606575, + "maxlat": 40.7174108, + "maxlon": -73.9603215 + }, + "nodes": [ + 11701389383, + 11701389384 + ], + "geometry": [ + { "lat": 40.7170974, "lon": -73.9606575 }, + { "lat": 40.7174108, "lon": -73.9603215 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1207031800, + "bounds": { + "minlat": 40.7193119, + "minlon": -73.9582831, + "maxlat": 40.7196269, + "maxlon": -73.9579449 + }, + "nodes": [ + 11701389391, + 11701389392 + ], + "geometry": [ + { "lat": 40.7193119, "lon": -73.9582831 }, + { "lat": 40.7196269, "lon": -73.9579449 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1207039223, + "bounds": { + "minlat": 40.7233594, + "minlon": -73.9393242, + "maxlat": 40.7233880, + "maxlon": -73.9393108 + }, + "nodes": [ + 11184578272, + 42476669 + ], + "geometry": [ + { "lat": 40.7233594, "lon": -73.9393108 }, + { "lat": 40.7233880, "lon": -73.9393242 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "2", + "name": "Morgan Avenue", + "oneway": "yes", + "oneway:bicycle": "no" + } +}, +{ + "type": "way", + "id": 1207326311, + "bounds": { + "minlat": 40.7700985, + "minlon": -73.9846376, + "maxlat": 40.7702631, + "maxlon": -73.9843714 + }, + "nodes": [ + 11186999469, + 11186999477, + 11186999475, + 11186999470, + 11186999474, + 11186999471, + 9491447230, + 11186999472, + 11186999479, + 11186999473, + 8676382821, + 7712324738, + 2710324703, + 11186999469 + ], + "geometry": [ + { "lat": 40.7702631, "lon": -73.9845638 }, + { "lat": 40.7702406, "lon": -73.9845091 }, + { "lat": 40.7702287, "lon": -73.9844802 }, + { "lat": 40.7701839, "lon": -73.9843714 }, + { "lat": 40.7701651, "lon": -73.9843849 }, + { "lat": 40.7700985, "lon": -73.9844329 }, + { "lat": 40.7701512, "lon": -73.9845608 }, + { "lat": 40.7701337, "lon": -73.9845733 }, + { "lat": 40.7701538, "lon": -73.9846220 }, + { "lat": 40.7701602, "lon": -73.9846376 }, + { "lat": 40.7701926, "lon": -73.9846143 }, + { "lat": 40.7702203, "lon": -73.9845945 }, + { "lat": 40.7702527, "lon": -73.9845712 }, + { "lat": 40.7702631, "lon": -73.9845638 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "0", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1207350245, + "bounds": { + "minlat": 40.7842283, + "minlon": -73.9445304, + "maxlat": 40.7842841, + "maxlon": -73.9443933 + }, + "nodes": [ + 5482216805, + 11187203508 + ], + "geometry": [ + { "lat": 40.7842283, "lon": -73.9443933 }, + { "lat": 40.7842841, "lon": -73.9445304 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1207350246, + "bounds": { + "minlat": 40.7843854, + "minlon": -73.9446524, + "maxlat": 40.7844534, + "maxlon": -73.9444543 + }, + "nodes": [ + 3900961240, + 11187203509 + ], + "geometry": [ + { "lat": 40.7844534, "lon": -73.9446524 }, + { "lat": 40.7843854, "lon": -73.9444543 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1207350247, + "bounds": { + "minlat": 40.7843854, + "minlon": -73.9444543, + "maxlat": 40.7845144, + "maxlon": -73.9441840 + }, + "nodes": [ + 5734166931, + 11187203510, + 11187203509 + ], + "geometry": [ + { "lat": 40.7845144, "lon": -73.9441840 }, + { "lat": 40.7844548, "lon": -73.9443907 }, + { "lat": 40.7843854, "lon": -73.9444543 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1207350248, + "bounds": { + "minlat": 40.7842841, + "minlon": -73.9445304, + "maxlat": 40.7843854, + "maxlon": -73.9444543 + }, + "nodes": [ + 11187203509, + 11187203508 + ], + "geometry": [ + { "lat": 40.7843854, "lon": -73.9444543 }, + { "lat": 40.7842841, "lon": -73.9445304 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1207350249, + "bounds": { + "minlat": 40.7847387, + "minlon": -73.9461103, + "maxlat": 40.7848314, + "maxlon": -73.9458678 + }, + "nodes": [ + 3900964267, + 3900964266, + 3900964265, + 3900964264, + 3900964263, + 3900964262, + 3900964268 + ], + "geometry": [ + { "lat": 40.7847387, "lon": -73.9461103 }, + { "lat": 40.7848008, "lon": -73.9460628 }, + { "lat": 40.7848130, "lon": -73.9460292 }, + { "lat": 40.7848222, "lon": -73.9459916 }, + { "lat": 40.7848314, "lon": -73.9459486 }, + { "lat": 40.7848242, "lon": -73.9459123 }, + { "lat": 40.7848054, "lon": -73.9458678 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1207350250, + "bounds": { + "minlat": 40.7853913, + "minlon": -73.9440233, + "maxlat": 40.7854448, + "maxlon": -73.9439910 + }, + "nodes": [ + 3900964258, + 3900961249 + ], + "geometry": [ + { "lat": 40.7853913, "lon": -73.9440233 }, + { "lat": 40.7854448, "lon": -73.9439910 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1207351364, + "bounds": { + "minlat": 40.7368747, + "minlon": -73.9503995, + "maxlat": 40.7370184, + "maxlon": -73.9503192 + }, + "nodes": [ + 11187186021, + 11187186020 + ], + "geometry": [ + { "lat": 40.7370184, "lon": -73.9503192 }, + { "lat": 40.7368747, "lon": -73.9503995 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1207351365, + "bounds": { + "minlat": 40.7367939, + "minlon": -73.9504444, + "maxlat": 40.7368747, + "maxlon": -73.9503995 + }, + "nodes": [ + 11187186020, + 8097082891, + 2473603064 + ], + "geometry": [ + { "lat": 40.7368747, "lon": -73.9503995 }, + { "lat": 40.7368558, "lon": -73.9504095 }, + { "lat": 40.7367939, "lon": -73.9504444 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1207361750, + "bounds": { + "minlat": 40.7666756, + "minlon": -73.9514499, + "maxlat": 40.7667452, + "maxlon": -73.9514025 + }, + "nodes": [ + 596799891, + 11187307840, + 11187307839 + ], + "geometry": [ + { "lat": 40.7667452, "lon": -73.9514025 }, + { "lat": 40.7666989, "lon": -73.9514340 }, + { "lat": 40.7666756, "lon": -73.9514499 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1207774833, + "bounds": { + "minlat": 40.8648090, + "minlon": -73.9193620, + "maxlat": 40.8650743, + "maxlon": -73.9185087 + }, + "nodes": [ + 42446609, + 8701943623, + 9561420906, + 11438966820, + 9561420908, + 42431252 + ], + "geometry": [ + { "lat": 40.8650616, "lon": -73.9185087 }, + { "lat": 40.8650743, "lon": -73.9186354 }, + { "lat": 40.8650703, "lon": -73.9187141 }, + { "lat": 40.8649036, "lon": -73.9192052 }, + { "lat": 40.8648698, "lon": -73.9192689 }, + { "lat": 40.8648090, "lon": -73.9193620 } + ], + "tags": { + "bicycle": "designated", + "foot": "designated", + "highway": "living_street", + "lanes": "1", + "maxspeed:advisory": "5 mph", + "name": "Post Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Post", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1207774834, + "bounds": { + "minlat": 40.8644793, + "minlon": -73.9192173, + "maxlat": 40.8646211, + "maxlon": -73.9189398 + }, + "nodes": [ + 12234649125, + 1764626360, + 2344057812, + 9561420904, + 42431257 + ], + "geometry": [ + { "lat": 40.8646211, "lon": -73.9192173 }, + { "lat": 40.8646072, "lon": -73.9192034 }, + { "lat": 40.8645495, "lon": -73.9191015 }, + { "lat": 40.8645354, "lon": -73.9190690 }, + { "lat": 40.8644793, "lon": -73.9189398 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 207th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:forward": "through|none" + } +}, +{ + "type": "way", + "id": 1207834765, + "bounds": { + "minlat": 40.7622941, + "minlon": -73.9861011, + "maxlat": 40.7627689, + "maxlon": -73.9857550 + }, + "nodes": [ + 42435684, + 10168091319, + 9469961219 + ], + "geometry": [ + { "lat": 40.7622941, "lon": -73.9861011 }, + { "lat": 40.7623552, "lon": -73.9860566 }, + { "lat": 40.7627689, "lon": -73.9857550 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1207834766, + "bounds": { + "minlat": 40.7585323, + "minlon": -73.9888429, + "maxlat": 40.7588204, + "maxlon": -73.9886329 + }, + "nodes": [ + 42435671, + 10168088477, + 11191334801 + ], + "geometry": [ + { "lat": 40.7585323, "lon": -73.9888429 }, + { "lat": 40.7585916, "lon": -73.9887997 }, + { "lat": 40.7588204, "lon": -73.9886329 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1207834767, + "bounds": { + "minlat": 40.7531503, + "minlon": -73.9927591, + "maxlat": 40.7534779, + "maxlon": -73.9925251 + }, + "nodes": [ + 11191334802, + 8660596978, + 42435646 + ], + "geometry": [ + { "lat": 40.7531503, "lon": -73.9927591 }, + { "lat": 40.7534167, "lon": -73.9925697 }, + { "lat": 40.7534779, "lon": -73.9925251 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "||right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1207834768, + "bounds": { + "minlat": 40.7518819, + "minlon": -73.9936882, + "maxlat": 40.7521986, + "maxlon": -73.9934580 + }, + "nodes": [ + 11191334803, + 8660596941, + 42435644 + ], + "geometry": [ + { "lat": 40.7518819, "lon": -73.9936882 }, + { "lat": 40.7521096, "lon": -73.9935224 }, + { "lat": 40.7521986, "lon": -73.9934580 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through||right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1209007823, + "bounds": { + "minlat": 40.8368756, + "minlon": -73.9206204, + "maxlat": 40.8371376, + "maxlon": -73.9204692 + }, + "nodes": [ + 6557983787, + 42742513 + ], + "geometry": [ + { "lat": 40.8368756, "lon": -73.9206204 }, + { "lat": 40.8371376, "lon": -73.9204692 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "River Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1209162444, + "bounds": { + "minlat": 40.7589913, + "minlon": -73.9996605, + "maxlat": 40.7591566, + "maxlon": -73.9994546 + }, + "nodes": [ + 9421657717, + 11203271668, + 11203271669, + 11203271672, + 11203271670, + 11203271671, + 9144983241 + ], + "geometry": [ + { "lat": 40.7591402, "lon": -73.9994546 }, + { "lat": 40.7591490, "lon": -73.9994752 }, + { "lat": 40.7591566, "lon": -73.9994969 }, + { "lat": 40.7591526, "lon": -73.9995088 }, + { "lat": 40.7591435, "lon": -73.9995200 }, + { "lat": 40.7590264, "lon": -73.9996139 }, + { "lat": 40.7589913, "lon": -73.9996605 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1209457860, + "bounds": { + "minlat": 40.7694063, + "minlon": -73.9922192, + "maxlat": 40.7694745, + "maxlon": -73.9920442 + }, + "nodes": [ + 9901113505, + 11205569354, + 11205569355 + ], + "geometry": [ + { "lat": 40.7694063, "lon": -73.9920442 }, + { "lat": 40.7694674, "lon": -73.9922010 }, + { "lat": 40.7694745, "lon": -73.9922192 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1209567443, + "bounds": { + "minlat": 40.7544977, + "minlon": -73.9680652, + "maxlat": 40.7555038, + "maxlon": -73.9656942 + }, + "nodes": [ + 42440469, + 8224676520, + 6746980154, + 6175849559, + 42440465 + ], + "geometry": [ + { "lat": 40.7544977, "lon": -73.9656942 }, + { "lat": 40.7545590, "lon": -73.9658386 }, + { "lat": 40.7554486, "lon": -73.9679349 }, + { "lat": 40.7554628, "lon": -73.9679686 }, + { "lat": 40.7555038, "lon": -73.9680652 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 51st Street", + "name:ru": "Восточная 51-я стрит", + "name_1": "East 51 Street", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1210162807, + "bounds": { + "minlat": 40.7411365, + "minlon": -73.9496907, + "maxlat": 40.7413181, + "maxlon": -73.9496022 + }, + "nodes": [ + 42836343, + 11211159693 + ], + "geometry": [ + { "lat": 40.7411365, "lon": -73.9496907 }, + { "lat": 40.7413181, "lon": -73.9496022 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1210162916, + "bounds": { + "minlat": 40.7381721, + "minlon": -73.9386714, + "maxlat": 40.7382643, + "maxlon": -73.9383101 + }, + "nodes": [ + 11211159970, + 11211159969, + 11211159968 + ], + "geometry": [ + { "lat": 40.7382643, "lon": -73.9386714 }, + { "lat": 40.7382401, "lon": -73.9385874 }, + { "lat": 40.7381721, "lon": -73.9383101 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1210162923, + "bounds": { + "minlat": 40.7424335, + "minlon": -73.9438880, + "maxlat": 40.7427115, + "maxlon": -73.9434627 + }, + "nodes": [ + 10081023567, + 11211159998, + 11211159997, + 11211159996, + 11211159995 + ], + "geometry": [ + { "lat": 40.7427047, "lon": -73.9434627 }, + { "lat": 40.7427115, "lon": -73.9435618 }, + { "lat": 40.7426861, "lon": -73.9436624 }, + { "lat": 40.7426384, "lon": -73.9437752 }, + { "lat": 40.7424335, "lon": -73.9438880 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1210162938, + "bounds": { + "minlat": 40.7431244, + "minlon": -73.9515226, + "maxlat": 40.7431425, + "maxlon": -73.9515122 + }, + "nodes": [ + 11211160076, + 11211160075, + 11211160074, + 11211160073, + 11211160072, + 11211160076 + ], + "geometry": [ + { "lat": 40.7431425, "lon": -73.9515226 }, + { "lat": 40.7431244, "lon": -73.9515226 }, + { "lat": 40.7431292, "lon": -73.9515156 }, + { "lat": 40.7431339, "lon": -73.9515122 }, + { "lat": 40.7431401, "lon": -73.9515155 }, + { "lat": 40.7431425, "lon": -73.9515226 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 1210162939, + "bounds": { + "minlat": 40.7430275, + "minlon": -73.9517568, + "maxlat": 40.7431308, + "maxlon": -73.9515581 + }, + "nodes": [ + 11211160081, + 11211160080, + 11211160079, + 11211160078, + 11211160077, + 11211160081 + ], + "geometry": [ + { "lat": 40.7430398, "lon": -73.9517537 }, + { "lat": 40.7430293, "lon": -73.9517568 }, + { "lat": 40.7430275, "lon": -73.9517414 }, + { "lat": 40.7431098, "lon": -73.9515588 }, + { "lat": 40.7431308, "lon": -73.9515581 }, + { "lat": 40.7430398, "lon": -73.9517537 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 1210162940, + "bounds": { + "minlat": 40.7434062, + "minlon": -73.9512963, + "maxlat": 40.7436057, + "maxlon": -73.9512441 + }, + "nodes": [ + 11211160089, + 11211160055, + 11211160088, + 11211160087, + 11211160086, + 11211160054, + 11211160085, + 11211160084, + 11211160089 + ], + "geometry": [ + { "lat": 40.7436033, "lon": -73.9512583 }, + { "lat": 40.7435939, "lon": -73.9512596 }, + { "lat": 40.7434129, "lon": -73.9512963 }, + { "lat": 40.7434062, "lon": -73.9512892 }, + { "lat": 40.7434129, "lon": -73.9512804 }, + { "lat": 40.7435915, "lon": -73.9512455 }, + { "lat": 40.7436013, "lon": -73.9512441 }, + { "lat": 40.7436057, "lon": -73.9512508 }, + { "lat": 40.7436033, "lon": -73.9512583 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "traffic_calming": "island" + } +}, +{ + "type": "way", + "id": 1210162941, + "bounds": { + "minlat": 40.7429810, + "minlon": -73.9518215, + "maxlat": 40.7431897, + "maxlon": -73.9514078 + }, + "nodes": [ + 42844241, + 11211160092, + 11211160091, + 42832453 + ], + "geometry": [ + { "lat": 40.7431897, "lon": -73.9514078 }, + { "lat": 40.7431830, "lon": -73.9515361 }, + { "lat": 40.7430643, "lon": -73.9517582 }, + { "lat": 40.7429810, "lon": -73.9518215 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "name": "Jackson Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through" + } +}, +{ + "type": "way", + "id": 1210446264, + "bounds": { + "minlat": 40.8059747, + "minlon": -73.9372037, + "maxlat": 40.8061331, + "maxlon": -73.9367681 + }, + "nodes": [ + 8234417274, + 8234417275, + 8234417276, + 8234417277 + ], + "geometry": [ + { "lat": 40.8059747, "lon": -73.9371789 }, + { "lat": 40.8060252, "lon": -73.9372037 }, + { "lat": 40.8060418, "lon": -73.9371599 }, + { "lat": 40.8061331, "lon": -73.9367681 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1210713864, + "bounds": { + "minlat": 40.7244610, + "minlon": -73.9227569, + "maxlat": 40.7255907, + "maxlon": -73.9221165 + }, + "nodes": [ + 11217410747, + 11217410748, + 11217410753, + 11217410749, + 11217410750, + 11217410751, + 9979286446 + ], + "geometry": [ + { "lat": 40.7255059, "lon": -73.9221165 }, + { "lat": 40.7255907, "lon": -73.9223445 }, + { "lat": 40.7255812, "lon": -73.9223841 }, + { "lat": 40.7255562, "lon": -73.9224232 }, + { "lat": 40.7246703, "lon": -73.9227569 }, + { "lat": 40.7245760, "lon": -73.9227010 }, + { "lat": 40.7244610, "lon": -73.9227443 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1210713865, + "bounds": { + "minlat": 40.7242722, + "minlon": -73.9227010, + "maxlat": 40.7245760, + "maxlon": -73.9219350 + }, + "nodes": [ + 11217410751, + 11217410752, + 9979286445 + ], + "geometry": [ + { "lat": 40.7245760, "lon": -73.9227010 }, + { "lat": 40.7243954, "lon": -73.9219507 }, + { "lat": 40.7242722, "lon": -73.9219350 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1211049193, + "bounds": { + "minlat": 40.7600983, + "minlon": -73.9802825, + "maxlat": 40.7605248, + "maxlon": -73.9799722 + }, + "nodes": [ + 3971196628, + 11299050769, + 42430361 + ], + "geometry": [ + { "lat": 40.7600983, "lon": -73.9802825 }, + { "lat": 40.7604688, "lon": -73.9800130 }, + { "lat": 40.7605248, "lon": -73.9799722 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "smoothness": "good", + "surface": "concrete", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1211049194, + "bounds": { + "minlat": 40.7599106, + "minlon": -73.9804176, + "maxlat": 40.7600983, + "maxlon": -73.9802825 + }, + "nodes": [ + 42430358, + 9501912442, + 3971196628 + ], + "geometry": [ + { "lat": 40.7599106, "lon": -73.9804176 }, + { "lat": 40.7600532, "lon": -73.9803150 }, + { "lat": 40.7600983, "lon": -73.9802825 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "smoothness": "good", + "surface": "concrete", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1211049195, + "bounds": { + "minlat": 40.7652917, + "minlon": -73.9764956, + "maxlat": 40.7656797, + "maxlon": -73.9762440 + }, + "nodes": [ + 11220661302, + 7830757191, + 42430394 + ], + "geometry": [ + { "lat": 40.7652917, "lon": -73.9764956 }, + { "lat": 40.7655750, "lon": -73.9762891 }, + { "lat": 40.7656797, "lon": -73.9762440 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete", + "turn:lanes": "left|left|right|right", + "width": "18.5", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1211167140, + "bounds": { + "minlat": 40.7726743, + "minlon": -73.9280766, + "maxlat": 40.7730562, + "maxlon": -73.9280451 + }, + "nodes": [ + 13701404733, + 13701404734, + 11221760294 + ], + "geometry": [ + { "lat": 40.7726743, "lon": -73.9280728 }, + { "lat": 40.7730094, "lon": -73.9280766 }, + { "lat": 40.7730562, "lon": -73.9280451 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1211167141, + "bounds": { + "minlat": 40.7733662, + "minlon": -73.9278906, + "maxlat": 40.7735957, + "maxlon": -73.9277968 + }, + "nodes": [ + 11221760295, + 11221760297, + 11221760298 + ], + "geometry": [ + { "lat": 40.7733662, "lon": -73.9278719 }, + { "lat": 40.7734200, "lon": -73.9278906 }, + { "lat": 40.7735957, "lon": -73.9277968 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1211244202, + "bounds": { + "minlat": 40.7842871, + "minlon": -73.9438950, + "maxlat": 40.7844075, + "maxlon": -73.9436375 + }, + "nodes": [ + 11222397107, + 11222397106, + 11222397108, + 11222397105, + 11222397103, + 11222397104, + 3900961237, + 6181708473, + 3900961232 + ], + "geometry": [ + { "lat": 40.7844075, "lon": -73.9438766 }, + { "lat": 40.7843529, "lon": -73.9437470 }, + { "lat": 40.7843161, "lon": -73.9436625 }, + { "lat": 40.7843084, "lon": -73.9436450 }, + { "lat": 40.7842871, "lon": -73.9436375 }, + { "lat": 40.7842878, "lon": -73.9436681 }, + { "lat": 40.7843040, "lon": -73.9437109 }, + { "lat": 40.7843273, "lon": -73.9437657 }, + { "lat": 40.7843824, "lon": -73.9438950 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1211331844, + "bounds": { + "minlat": 40.8503185, + "minlon": -73.9819499, + "maxlat": 40.8510917, + "maxlon": -73.9814566 + }, + "nodes": [ + 11223143302, + 11223143303, + 11223143304, + 11223143309, + 11223143305, + 11223143306, + 11223143307, + 11223143308 + ], + "geometry": [ + { "lat": 40.8510917, "lon": -73.9817236 }, + { "lat": 40.8508807, "lon": -73.9817841 }, + { "lat": 40.8507825, "lon": -73.9818346 }, + { "lat": 40.8506139, "lon": -73.9819499 }, + { "lat": 40.8505774, "lon": -73.9819358 }, + { "lat": 40.8504786, "lon": -73.9817796 }, + { "lat": 40.8503512, "lon": -73.9815531 }, + { "lat": 40.8503185, "lon": -73.9814566 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1211331845, + "bounds": { + "minlat": 40.8501306, + "minlon": -73.9814566, + "maxlat": 40.8503868, + "maxlon": -73.9812221 + }, + "nodes": [ + 11223143314, + 11223143310, + 11223143311, + 11223143320, + 11223143321, + 11223143322, + 11223143308, + 11223143312, + 11223143313, + 11223143318, + 11223143319, + 11223143317, + 11223143316, + 11223143315, + 11223143314 + ], + "geometry": [ + { "lat": 40.8503530, "lon": -73.9812466 }, + { "lat": 40.8503751, "lon": -73.9812704 }, + { "lat": 40.8503868, "lon": -73.9813141 }, + { "lat": 40.8503865, "lon": -73.9813604 }, + { "lat": 40.8503743, "lon": -73.9814038 }, + { "lat": 40.8503517, "lon": -73.9814392 }, + { "lat": 40.8503185, "lon": -73.9814566 }, + { "lat": 40.8502850, "lon": -73.9814566 }, + { "lat": 40.8502083, "lon": -73.9813882 }, + { "lat": 40.8501306, "lon": -73.9813552 }, + { "lat": 40.8502152, "lon": -73.9812622 }, + { "lat": 40.8502532, "lon": -73.9812299 }, + { "lat": 40.8502895, "lon": -73.9812221 }, + { "lat": 40.8503249, "lon": -73.9812298 }, + { "lat": 40.8503530, "lon": -73.9812466 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1211331846, + "bounds": { + "minlat": 40.8495324, + "minlon": -73.9814320, + "maxlat": 40.8501306, + "maxlon": -73.9808606 + }, + "nodes": [ + 11223143318, + 11223143323, + 11223143324, + 11223143325, + 11223143326, + 11223143327, + 5964343844 + ], + "geometry": [ + { "lat": 40.8501306, "lon": -73.9813552 }, + { "lat": 40.8500318, "lon": -73.9814228 }, + { "lat": 40.8499998, "lon": -73.9814320 }, + { "lat": 40.8499474, "lon": -73.9814305 }, + { "lat": 40.8496599, "lon": -73.9810069 }, + { "lat": 40.8495702, "lon": -73.9808658 }, + { "lat": 40.8495324, "lon": -73.9808606 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1211331847, + "bounds": { + "minlat": 40.8496665, + "minlon": -73.9812221, + "maxlat": 40.8502968, + "maxlon": -73.9798036 + }, + "nodes": [ + 11223143316, + 11223143328, + 11223143329, + 11223143330, + 11223143331, + 11223143332, + 11223143333, + 11223143334, + 11223143335 + ], + "geometry": [ + { "lat": 40.8502895, "lon": -73.9812221 }, + { "lat": 40.8502968, "lon": -73.9811272 }, + { "lat": 40.8502834, "lon": -73.9810904 }, + { "lat": 40.8500167, "lon": -73.9806664 }, + { "lat": 40.8499303, "lon": -73.9806235 }, + { "lat": 40.8497379, "lon": -73.9803359 }, + { "lat": 40.8496665, "lon": -73.9801921 }, + { "lat": 40.8499954, "lon": -73.9798910 }, + { "lat": 40.8500898, "lon": -73.9798036 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1211331848, + "bounds": { + "minlat": 40.8488863, + "minlon": -73.9817344, + "maxlat": 40.8496599, + "maxlon": -73.9810069 + }, + "nodes": [ + 5964343830, + 11223143326 + ], + "geometry": [ + { "lat": 40.8488863, "lon": -73.9817344 }, + { "lat": 40.8496599, "lon": -73.9810069 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1211505059, + "bounds": { + "minlat": 40.7618543, + "minlon": -73.9485033, + "maxlat": 40.7622702, + "maxlon": -73.9481211 + }, + "nodes": [ + 11224277718, + 5314063426, + 5314063425, + 11224277717 + ], + "geometry": [ + { "lat": 40.7622702, "lon": -73.9481211 }, + { "lat": 40.7619499, "lon": -73.9483901 }, + { "lat": 40.7618951, "lon": -73.9484679 }, + { "lat": 40.7618543, "lon": -73.9485033 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "East Road", + "name_1": "East Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1211505060, + "bounds": { + "minlat": 40.7622702, + "minlon": -73.9481211, + "maxlat": 40.7623702, + "maxlon": -73.9480371 + }, + "nodes": [ + 11224277719, + 11224277718 + ], + "geometry": [ + { "lat": 40.7623702, "lon": -73.9480371 }, + { "lat": 40.7622702, "lon": -73.9481211 } + ], + "tags": { + "covered": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "East Road", + "name_1": "East Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1211505061, + "bounds": { + "minlat": 40.7611456, + "minlon": -73.9490978, + "maxlat": 40.7617701, + "maxlon": -73.9485764 + }, + "nodes": [ + 11224277716, + 5314061918, + 5314061919, + 5314063427, + 5314061920, + 11224277715 + ], + "geometry": [ + { "lat": 40.7617701, "lon": -73.9485764 }, + { "lat": 40.7617257, "lon": -73.9486149 }, + { "lat": 40.7616630, "lon": -73.9486389 }, + { "lat": 40.7612225, "lon": -73.9490165 }, + { "lat": 40.7611712, "lon": -73.9490746 }, + { "lat": 40.7611456, "lon": -73.9490978 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "East Road", + "name_1": "East Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1211505062, + "bounds": { + "minlat": 40.7617701, + "minlon": -73.9485764, + "maxlat": 40.7618543, + "maxlon": -73.9485033 + }, + "nodes": [ + 11224277717, + 11224277716 + ], + "geometry": [ + { "lat": 40.7618543, "lon": -73.9485033 }, + { "lat": 40.7617701, "lon": -73.9485764 } + ], + "tags": { + "covered": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "East Road", + "name_1": "East Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1211505063, + "bounds": { + "minlat": 40.7605890, + "minlon": -73.9495982, + "maxlat": 40.7610547, + "maxlon": -73.9491802 + }, + "nodes": [ + 11224277714, + 5314063421, + 5314063428, + 5314063422, + 5314063423, + 11224277713 + ], + "geometry": [ + { "lat": 40.7610547, "lon": -73.9491802 }, + { "lat": 40.7610438, "lon": -73.9491901 }, + { "lat": 40.7609788, "lon": -73.9492212 }, + { "lat": 40.7606745, "lon": -73.9494842 }, + { "lat": 40.7606052, "lon": -73.9495844 }, + { "lat": 40.7605890, "lon": -73.9495982 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "East Road", + "name_1": "East Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1211505064, + "bounds": { + "minlat": 40.7610547, + "minlon": -73.9491802, + "maxlat": 40.7611456, + "maxlon": -73.9490978 + }, + "nodes": [ + 11224277715, + 11224277714 + ], + "geometry": [ + { "lat": 40.7611456, "lon": -73.9490978 }, + { "lat": 40.7610547, "lon": -73.9491802 } + ], + "tags": { + "covered": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "East Road", + "name_1": "East Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1211505065, + "bounds": { + "minlat": 40.7604404, + "minlon": -73.9497252, + "maxlat": 40.7604950, + "maxlon": -73.9496785 + }, + "nodes": [ + 11224277712, + 5314063424 + ], + "geometry": [ + { "lat": 40.7604950, "lon": -73.9496785 }, + { "lat": 40.7604404, "lon": -73.9497252 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "East Road", + "name_1": "East Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1211505066, + "bounds": { + "minlat": 40.7604950, + "minlon": -73.9496785, + "maxlat": 40.7605890, + "maxlon": -73.9495982 + }, + "nodes": [ + 11224277713, + 11224277712 + ], + "geometry": [ + { "lat": 40.7605890, "lon": -73.9495982 }, + { "lat": 40.7604950, "lon": -73.9496785 } + ], + "tags": { + "covered": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "East Road", + "name_1": "East Road", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1211520384, + "bounds": { + "minlat": 40.8572587, + "minlon": -73.9811018, + "maxlat": 40.8577355, + "maxlon": -73.9805487 + }, + "nodes": [ + 11224443183, + 11224443184, + 11224443188, + 11224443185, + 11224443186 + ], + "geometry": [ + { "lat": 40.8572587, "lon": -73.9811018 }, + { "lat": 40.8573352, "lon": -73.9810244 }, + { "lat": 40.8574084, "lon": -73.9809739 }, + { "lat": 40.8575098, "lon": -73.9809041 }, + { "lat": 40.8577355, "lon": -73.9805487 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1211608942, + "bounds": { + "minlat": 40.7570936, + "minlon": -73.9973219, + "maxlat": 40.7577433, + "maxlon": -73.9968456 + }, + "nodes": [ + 42433644, + 8288270401, + 8288270408, + 42423885 + ], + "geometry": [ + { "lat": 40.7570936, "lon": -73.9973219 }, + { "lat": 40.7571718, "lon": -73.9972627 }, + { "lat": 40.7576741, "lon": -73.9968967 }, + { "lat": 40.7577433, "lon": -73.9968456 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1211608943, + "bounds": { + "minlat": 40.7583460, + "minlon": -73.9964055, + "maxlat": 40.7585449, + "maxlon": -73.9962591 + }, + "nodes": [ + 42446504, + 8288270423, + 11225165128 + ], + "geometry": [ + { "lat": 40.7583460, "lon": -73.9964055 }, + { "lat": 40.7584038, "lon": -73.9963630 }, + { "lat": 40.7585449, "lon": -73.9962591 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1211612936, + "bounds": { + "minlat": 40.7676843, + "minlon": -73.9817558, + "maxlat": 40.7676962, + "maxlon": -73.9816785 + }, + "nodes": [ + 1825841693, + 11225191369 + ], + "geometry": [ + { "lat": 40.7676843, "lon": -73.9817558 }, + { "lat": 40.7676962, "lon": -73.9816785 } + ], + "tags": { + "alt_name": "West 59th Street", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park South", + "name_1": "West 59 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "right|right", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1211612937, + "bounds": { + "minlat": 40.7676962, + "minlon": -73.9816785, + "maxlat": 40.7677602, + "maxlon": -73.9813961 + }, + "nodes": [ + 11225191369, + 9170790600, + 1825841710, + 11225191368 + ], + "geometry": [ + { "lat": 40.7676962, "lon": -73.9816785 }, + { "lat": 40.7677036, "lon": -73.9816306 }, + { "lat": 40.7677512, "lon": -73.9814331 }, + { "lat": 40.7677602, "lon": -73.9813961 } + ], + "tags": { + "alt_name": "West 59th Street", + "cycleway:right": "lane", + "cycleway:right:oneway": "-1", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park South", + "name_1": "West 59 Street", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "right|right", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1211612938, + "bounds": { + "minlat": 40.7679285, + "minlon": -73.9813948, + "maxlat": 40.7681044, + "maxlon": -73.9812930 + }, + "nodes": [ + 11225191374, + 10183978835, + 1825841747, + 4347550071 + ], + "geometry": [ + { "lat": 40.7679285, "lon": -73.9812930 }, + { "lat": 40.7679425, "lon": -73.9813004 }, + { "lat": 40.7679883, "lon": -73.9813264 }, + { "lat": 40.7681044, "lon": -73.9813948 } + ], + "tags": { + "alt_name": "West 59th Street", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park South", + "name_1": "West 59 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1211734401, + "bounds": { + "minlat": 40.7091570, + "minlon": -73.9365837, + "maxlat": 40.7094283, + "maxlon": -73.9365402 + }, + "nodes": [ + 11226202509, + 11226202511, + 11226202512, + 11226202510 + ], + "geometry": [ + { "lat": 40.7094283, "lon": -73.9365837 }, + { "lat": 40.7093963, "lon": -73.9365785 }, + { "lat": 40.7093802, "lon": -73.9365760 }, + { "lat": 40.7091570, "lon": -73.9365402 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1211841645, + "bounds": { + "minlat": 40.8512514, + "minlon": -73.9371064, + "maxlat": 40.8513337, + "maxlon": -73.9368772 + }, + "nodes": [ + 11227281113, + 11227281116, + 11227281114, + 11227281115 + ], + "geometry": [ + { "lat": 40.8512514, "lon": -73.9368772 }, + { "lat": 40.8512926, "lon": -73.9369925 }, + { "lat": 40.8513053, "lon": -73.9370279 }, + { "lat": 40.8513337, "lon": -73.9371064 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1212116913, + "bounds": { + "minlat": 40.7371956, + "minlon": -73.9564523, + "maxlat": 40.7372721, + "maxlon": -73.9556380 + }, + "nodes": [ + 2307703079, + 11229826565 + ], + "geometry": [ + { "lat": 40.7371956, "lon": -73.9564523 }, + { "lat": 40.7372721, "lon": -73.9556380 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Box Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Box", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:backward": "through" + } +}, +{ + "type": "way", + "id": 1212776159, + "bounds": { + "minlat": 40.7605257, + "minlon": -73.9985870, + "maxlat": 40.7608557, + "maxlon": -73.9983473 + }, + "nodes": [ + 42430673, + 5542715075, + 11235977918 + ], + "geometry": [ + { "lat": 40.7608557, "lon": -73.9983473 }, + { "lat": 40.7607435, "lon": -73.9984308 }, + { "lat": 40.7605257, "lon": -73.9985870 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1213149195, + "bounds": { + "minlat": 40.7290212, + "minlon": -73.9509801, + "maxlat": 40.7296937, + "maxlon": -73.9505853 + }, + "nodes": [ + 7725544400, + 8097222292, + 9158185344 + ], + "geometry": [ + { "lat": 40.7290212, "lon": -73.9505853 }, + { "lat": 40.7290832, "lon": -73.9506204 }, + { "lat": 40.7296937, "lon": -73.9509801 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1213172795, + "bounds": { + "minlat": 40.7813429, + "minlon": -74.0193394, + "maxlat": 40.7819206, + "maxlon": -74.0188854 + }, + "nodes": [ + 103884448, + 11240111371, + 7613768131, + 103880305 + ], + "geometry": [ + { "lat": 40.7819206, "lon": -74.0188854 }, + { "lat": 40.7818659, "lon": -74.0189283 }, + { "lat": 40.7814045, "lon": -74.0192909 }, + { "lat": 40.7813429, "lon": -74.0193394 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "name": "Palisade Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Palisade", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07093", + "tiger:zip_right": "07093", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1213238784, + "bounds": { + "minlat": 40.7164263, + "minlon": -74.0066153, + "maxlat": 40.7165990, + "maxlon": -74.0062223 + }, + "nodes": [ + 11240615923, + 11240615925, + 12353652554, + 11240615924 + ], + "geometry": [ + { "lat": 40.7164263, "lon": -74.0062223 }, + { "lat": 40.7165536, "lon": -74.0065116 }, + { "lat": 40.7165645, "lon": -74.0065366 }, + { "lat": 40.7165990, "lon": -74.0066153 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1213301201, + "bounds": { + "minlat": 40.7618069, + "minlon": -73.9975737, + "maxlat": 40.7620135, + "maxlon": -73.9974204 + }, + "nodes": [ + 8855911559, + 11241152655 + ], + "geometry": [ + { "lat": 40.7620135, "lon": -73.9974204 }, + { "lat": 40.7618069, "lon": -73.9975737 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1213618957, + "bounds": { + "minlat": 40.8401083, + "minlon": -73.9887834, + "maxlat": 40.8405623, + "maxlon": -73.9881706 + }, + "nodes": [ + 11243809422, + 11243809423, + 11243809424, + 11243809425, + 11243809426, + 11243809427, + 11243809428 + ], + "geometry": [ + { "lat": 40.8403396, "lon": -73.9881706 }, + { "lat": 40.8405623, "lon": -73.9885790 }, + { "lat": 40.8404303, "lon": -73.9887186 }, + { "lat": 40.8403496, "lon": -73.9887834 }, + { "lat": 40.8403232, "lon": -73.9887784 }, + { "lat": 40.8401475, "lon": -73.9884694 }, + { "lat": 40.8401083, "lon": -73.9884010 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1213618958, + "bounds": { + "minlat": 40.8405623, + "minlon": -73.9885790, + "maxlat": 40.8406777, + "maxlon": -73.9885143 + }, + "nodes": [ + 11243809423, + 11243809429 + ], + "geometry": [ + { "lat": 40.8405623, "lon": -73.9885790 }, + { "lat": 40.8406777, "lon": -73.9885143 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1214148118, + "bounds": { + "minlat": 40.7139214, + "minlon": -73.9679593, + "maxlat": 40.7141407, + "maxlon": -73.9671197 + }, + "nodes": [ + 11249142497, + 13146366055, + 11249142499, + 42469468 + ], + "geometry": [ + { "lat": 40.7141407, "lon": -73.9679593 }, + { "lat": 40.7141226, "lon": -73.9678899 }, + { "lat": 40.7139450, "lon": -73.9672100 }, + { "lat": 40.7139214, "lon": -73.9671197 } + ], + "tags": { + "highway": "residential", + "name": "South 3rd Street", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "3rd", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1214199409, + "bounds": { + "minlat": 40.7260660, + "minlon": -73.9615556, + "maxlat": 40.7267208, + "maxlon": -73.9598393 + }, + "nodes": [ + 11784543538, + 11249691300, + 11784585669, + 11784543565, + 11249691299, + 11099032983 + ], + "geometry": [ + { "lat": 40.7267208, "lon": -73.9615556 }, + { "lat": 40.7266724, "lon": -73.9615352 }, + { "lat": 40.7265646, "lon": -73.9614898 }, + { "lat": 40.7261959, "lon": -73.9613116 }, + { "lat": 40.7260660, "lon": -73.9612478 }, + { "lat": 40.7262069, "lon": -73.9598393 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1214199410, + "bounds": { + "minlat": 40.7266343, + "minlon": -73.9600108, + "maxlat": 40.7269586, + "maxlon": -73.9587762 + }, + "nodes": [ + 11249691302, + 11292128903, + 11784543558, + 11784543563, + 11099032980 + ], + "geometry": [ + { "lat": 40.7269586, "lon": -73.9587762 }, + { "lat": 40.7269325, "lon": -73.9588718 }, + { "lat": 40.7267674, "lon": -73.9594419 }, + { "lat": 40.7266548, "lon": -73.9598304 }, + { "lat": 40.7266343, "lon": -73.9600108 } + ], + "tags": { + "highway": "pedestrian", + "name": "Wharf Plaza" + } +}, +{ + "type": "way", + "id": 1214199411, + "bounds": { + "minlat": 40.7273971, + "minlon": -73.9602006, + "maxlat": 40.7274602, + "maxlon": -73.9601819 + }, + "nodes": [ + 11099032984, + 11099032977 + ], + "geometry": [ + { "lat": 40.7274602, "lon": -73.9602006 }, + { "lat": 40.7273971, "lon": -73.9601819 } + ], + "tags": { + "highway": "residential", + "name": "Wharf Drive", + "old_name": "Private Drive" + } +}, +{ + "type": "way", + "id": 1214266929, + "bounds": { + "minlat": 40.8074708, + "minlon": -73.9305280, + "maxlat": 40.8076097, + "maxlon": -73.9303456 + }, + "nodes": [ + 11250500604, + 11250500605, + 11250500606, + 11250500607, + 11250500608, + 11250500609, + 11250500591, + 11250500592, + 11250500593, + 11250500594, + 11250500599, + 11250500600, + 11250500601, + 11250500602, + 11250500603, + 11250500595, + 11250500596, + 11250500597, + 11250500598, + 11250500604 + ], + "geometry": [ + { "lat": 40.8075418, "lon": -73.9303456 }, + { "lat": 40.8075637, "lon": -73.9303510 }, + { "lat": 40.8075832, "lon": -73.9303652 }, + { "lat": 40.8075983, "lon": -73.9303869 }, + { "lat": 40.8076074, "lon": -73.9304137 }, + { "lat": 40.8076097, "lon": -73.9304430 }, + { "lat": 40.8076048, "lon": -73.9304717 }, + { "lat": 40.8075924, "lon": -73.9304982 }, + { "lat": 40.8075741, "lon": -73.9305177 }, + { "lat": 40.8075518, "lon": -73.9305280 }, + { "lat": 40.8075283, "lon": -73.9305279 }, + { "lat": 40.8075061, "lon": -73.9305174 }, + { "lat": 40.8074878, "lon": -73.9304977 }, + { "lat": 40.8074756, "lon": -73.9304711 }, + { "lat": 40.8074708, "lon": -73.9304407 }, + { "lat": 40.8074740, "lon": -73.9304098 }, + { "lat": 40.8074840, "lon": -73.9303835 }, + { "lat": 40.8074998, "lon": -73.9303628 }, + { "lat": 40.8075197, "lon": -73.9303497 }, + { "lat": 40.8075418, "lon": -73.9303456 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1214266930, + "bounds": { + "minlat": 40.8072868, + "minlon": -73.9303628, + "maxlat": 40.8074998, + "maxlon": -73.9298797 + }, + "nodes": [ + 11250500597, + 11427300186, + 11250500610 + ], + "geometry": [ + { "lat": 40.8074998, "lon": -73.9303628 }, + { "lat": 40.8073312, "lon": -73.9299805 }, + { "lat": 40.8072868, "lon": -73.9298797 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1214282885, + "bounds": { + "minlat": 40.7997934, + "minlon": -73.9968414, + "maxlat": 40.7999181, + "maxlon": -73.9961737 + }, + "nodes": [ + 11250613223, + 11250613224, + 11250613225, + 11250613226, + 11250613227, + 11250613228, + 11250613229, + 11250613230, + 11250613231 + ], + "geometry": [ + { "lat": 40.7999181, "lon": -73.9968414 }, + { "lat": 40.7999140, "lon": -73.9966650 }, + { "lat": 40.7998963, "lon": -73.9965594 }, + { "lat": 40.7998418, "lon": -73.9964597 }, + { "lat": 40.7997946, "lon": -73.9963164 }, + { "lat": 40.7997934, "lon": -73.9962487 }, + { "lat": 40.7998170, "lon": -73.9961972 }, + { "lat": 40.7998528, "lon": -73.9961760 }, + { "lat": 40.7998866, "lon": -73.9961737 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1214295976, + "bounds": { + "minlat": 40.7942429, + "minlon": -73.9382247, + "maxlat": 40.7946258, + "maxlon": -73.9381214 + }, + "nodes": [ + 11250700797, + 7924346929, + 11250700798, + 8386364997 + ], + "geometry": [ + { "lat": 40.7946258, "lon": -73.9381214 }, + { "lat": 40.7944735, "lon": -73.9381520 }, + { "lat": 40.7943864, "lon": -73.9381293 }, + { "lat": 40.7942429, "lon": -73.9382247 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1214295977, + "bounds": { + "minlat": 40.7943864, + "minlon": -73.9383755, + "maxlat": 40.7944833, + "maxlon": -73.9381293 + }, + "nodes": [ + 11250700798, + 11250700799 + ], + "geometry": [ + { "lat": 40.7943864, "lon": -73.9381293 }, + { "lat": 40.7944833, "lon": -73.9383755 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1214301900, + "bounds": { + "minlat": 40.8102729, + "minlon": -74.0063612, + "maxlat": 40.8105232, + "maxlon": -74.0059952 + }, + "nodes": [ + 2813943257, + 11250778443, + 11250773935, + 11250773936 + ], + "geometry": [ + { "lat": 40.8102729, "lon": -74.0059952 }, + { "lat": 40.8103291, "lon": -74.0060354 }, + { "lat": 40.8103720, "lon": -74.0060650 }, + { "lat": 40.8105232, "lon": -74.0063612 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1214301901, + "bounds": { + "minlat": 40.8103250, + "minlon": -74.0064142, + "maxlat": 40.8105232, + "maxlon": -74.0062580 + }, + "nodes": [ + 11250773936, + 11250778437, + 11250778438, + 11250778439, + 11250778441 + ], + "geometry": [ + { "lat": 40.8105232, "lon": -74.0063612 }, + { "lat": 40.8104667, "lon": -74.0064087 }, + { "lat": 40.8104400, "lon": -74.0064142 }, + { "lat": 40.8104110, "lon": -74.0063812 }, + { "lat": 40.8103250, "lon": -74.0062580 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1214301902, + "bounds": { + "minlat": 40.8102196, + "minlon": -74.0062236, + "maxlat": 40.8102899, + "maxlon": -74.0061497 + }, + "nodes": [ + 11250778442, + 11250778444, + 11250778440 + ], + "geometry": [ + { "lat": 40.8102899, "lon": -74.0062236 }, + { "lat": 40.8102674, "lon": -74.0062021 }, + { "lat": 40.8102196, "lon": -74.0061497 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1214301903, + "bounds": { + "minlat": 40.8102899, + "minlon": -74.0062580, + "maxlat": 40.8103250, + "maxlon": -74.0062236 + }, + "nodes": [ + 11250778441, + 11250778442 + ], + "geometry": [ + { "lat": 40.8103250, "lon": -74.0062580 }, + { "lat": 40.8102899, "lon": -74.0062236 } + ], + "tags": { + "access": "private", + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1214499996, + "bounds": { + "minlat": 40.7976103, + "minlon": -74.0157126, + "maxlat": 40.7977341, + "maxlon": -74.0152502 + }, + "nodes": [ + 11252572400, + 11252572401, + 11252572402, + 11252572403, + 11252572404, + 11252572405 + ], + "geometry": [ + { "lat": 40.7977129, "lon": -74.0152502 }, + { "lat": 40.7977308, "lon": -74.0153384 }, + { "lat": 40.7977341, "lon": -74.0154046 }, + { "lat": 40.7976938, "lon": -74.0156296 }, + { "lat": 40.7976569, "lon": -74.0156785 }, + { "lat": 40.7976103, "lon": -74.0157126 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1214509176, + "bounds": { + "minlat": 40.8137504, + "minlon": -74.0110999, + "maxlat": 40.8138301, + "maxlon": -74.0109268 + }, + "nodes": [ + 5994285414, + 11252634061 + ], + "geometry": [ + { "lat": 40.8137504, "lon": -74.0110999 }, + { "lat": 40.8138301, "lon": -74.0109268 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1214726732, + "bounds": { + "minlat": 40.7809132, + "minlon": -73.9510136, + "maxlat": 40.7810075, + "maxlon": -73.9509496 + }, + "nodes": [ + 11254540148, + 11254540149, + 11254540150 + ], + "geometry": [ + { "lat": 40.7809132, "lon": -73.9510136 }, + { "lat": 40.7809790, "lon": -73.9509699 }, + { "lat": 40.7810075, "lon": -73.9509496 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1214799854, + "bounds": { + "minlat": 40.7997505, + "minlon": -73.9946010, + "maxlat": 40.7998092, + "maxlon": -73.9944157 + }, + "nodes": [ + 11255071783, + 11255071784 + ], + "geometry": [ + { "lat": 40.7997505, "lon": -73.9944157 }, + { "lat": 40.7998092, "lon": -73.9946010 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1215372282, + "bounds": { + "minlat": 40.8630984, + "minlon": -73.9090681, + "maxlat": 40.8631438, + "maxlon": -73.9090676 + }, + "nodes": [ + 42743109, + 9903143784 + ], + "geometry": [ + { "lat": 40.8630984, "lon": -73.9090676 }, + { "lat": 40.8631438, "lon": -73.9090681 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 1215379295, + "bounds": { + "minlat": 40.8670943, + "minlon": -73.9624327, + "maxlat": 40.8671696, + "maxlon": -73.9623073 + }, + "nodes": [ + 11260254400, + 11260254401 + ], + "geometry": [ + { "lat": 40.8671696, "lon": -73.9624327 }, + { "lat": 40.8670943, "lon": -73.9623073 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1215379299, + "bounds": { + "minlat": 40.8666927, + "minlon": -73.9628034, + "maxlat": 40.8667548, + "maxlon": -73.9626964 + }, + "nodes": [ + 11260263838, + 11260263839 + ], + "geometry": [ + { "lat": 40.8667548, "lon": -73.9628034 }, + { "lat": 40.8666927, "lon": -73.9626964 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1215379302, + "bounds": { + "minlat": 40.8668972, + "minlon": -73.9628042, + "maxlat": 40.8670643, + "maxlon": -73.9624983 + }, + "nodes": [ + 11260263848, + 11260263849 + ], + "geometry": [ + { "lat": 40.8670643, "lon": -73.9628042 }, + { "lat": 40.8668972, "lon": -73.9624983 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1215388280, + "bounds": { + "minlat": 40.7790624, + "minlon": -73.9538059, + "maxlat": 40.7845271, + "maxlon": -73.9498372 + }, + "nodes": [ + 12559421112, + 7134855821, + 42450030, + 7134855828, + 7134855786, + 42445740, + 7134855840, + 7134855845, + 42436546, + 7134855814, + 7132406705, + 42444817, + 7132389367, + 6214889056, + 42450035, + 6214889041, + 3590690736, + 6185259916, + 42448735, + 6185259896, + 6185200502, + 42450037, + 6185200503, + 6181479993, + 42444500, + 6181480044, + 6181480009, + 42434172 + ], + "geometry": [ + { "lat": 40.7790624, "lon": -73.9538059 }, + { "lat": 40.7794444, "lon": -73.9535271 }, + { "lat": 40.7794971, "lon": -73.9534887 }, + { "lat": 40.7795590, "lon": -73.9534436 }, + { "lat": 40.7800743, "lon": -73.9530675 }, + { "lat": 40.7801285, "lon": -73.9530275 }, + { "lat": 40.7801843, "lon": -73.9529872 }, + { "lat": 40.7806999, "lon": -73.9526109 }, + { "lat": 40.7807525, "lon": -73.9525725 }, + { "lat": 40.7808103, "lon": -73.9525303 }, + { "lat": 40.7813274, "lon": -73.9521529 }, + { "lat": 40.7813773, "lon": -73.9521166 }, + { "lat": 40.7814425, "lon": -73.9520689 }, + { "lat": 40.7819558, "lon": -73.9516943 }, + { "lat": 40.7820144, "lon": -73.9516502 }, + { "lat": 40.7820707, "lon": -73.9516098 }, + { "lat": 40.7822921, "lon": -73.9514461 }, + { "lat": 40.7825807, "lon": -73.9512325 }, + { "lat": 40.7826302, "lon": -73.9511964 }, + { "lat": 40.7826924, "lon": -73.9511510 }, + { "lat": 40.7832140, "lon": -73.9507906 }, + { "lat": 40.7832690, "lon": -73.9507524 }, + { "lat": 40.7833273, "lon": -73.9507110 }, + { "lat": 40.7838504, "lon": -73.9503387 }, + { "lat": 40.7839085, "lon": -73.9502957 }, + { "lat": 40.7839559, "lon": -73.9502567 }, + { "lat": 40.7844773, "lon": -73.9498735 }, + { "lat": 40.7845271, "lon": -73.9498372 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1215388281, + "bounds": { + "minlat": 40.7784234, + "minlon": -73.9542723, + "maxlat": 40.7788275, + "maxlon": -73.9539771 + }, + "nodes": [ + 11260347959, + 7924094054, + 42429338 + ], + "geometry": [ + { "lat": 40.7784234, "lon": -73.9542723 }, + { "lat": 40.7787319, "lon": -73.9540471 }, + { "lat": 40.7788275, "lon": -73.9539771 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "bump;flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "6", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:both": "no", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|||||right", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1216028780, + "bounds": { + "minlat": 40.8411510, + "minlon": -73.9429923, + "maxlat": 40.8417143, + "maxlon": -73.9426969 + }, + "nodes": [ + 11266904701, + 11266904702, + 11266904703, + 11266904704, + 11266904705, + 11266904710, + 11266904706, + 11266904707 + ], + "geometry": [ + { "lat": 40.8417143, "lon": -73.9426969 }, + { "lat": 40.8417107, "lon": -73.9427730 }, + { "lat": 40.8416781, "lon": -73.9428274 }, + { "lat": 40.8412790, "lon": -73.9429882 }, + { "lat": 40.8412259, "lon": -73.9429923 }, + { "lat": 40.8411940, "lon": -73.9429840 }, + { "lat": 40.8411664, "lon": -73.9429707 }, + { "lat": 40.8411510, "lon": -73.9429206 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1216028781, + "bounds": { + "minlat": 40.8416731, + "minlon": -73.9426969, + "maxlat": 40.8417143, + "maxlon": -73.9424788 + }, + "nodes": [ + 11266904699, + 11266904700, + 11266904701 + ], + "geometry": [ + { "lat": 40.8416731, "lon": -73.9424788 }, + { "lat": 40.8416943, "lon": -73.9425831 }, + { "lat": 40.8417143, "lon": -73.9426969 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1216028782, + "bounds": { + "minlat": 40.8410954, + "minlon": -73.9429206, + "maxlat": 40.8411510, + "maxlon": -73.9427089 + }, + "nodes": [ + 11266904707, + 11266904708, + 11266904709 + ], + "geometry": [ + { "lat": 40.8411510, "lon": -73.9429206 }, + { "lat": 40.8411259, "lon": -73.9428151 }, + { "lat": 40.8410954, "lon": -73.9427089 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1216462746, + "bounds": { + "minlat": 40.8149881, + "minlon": -73.9469705, + "maxlat": 40.8155111, + "maxlon": -73.9465726 + }, + "nodes": [ + 11271520104, + 11271520107, + 11271520106, + 11271520105 + ], + "geometry": [ + { "lat": 40.8155111, "lon": -73.9465726 }, + { "lat": 40.8150685, "lon": -73.9469089 }, + { "lat": 40.8150493, "lon": -73.9469234 }, + { "lat": 40.8149881, "lon": -73.9469705 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1216505159, + "bounds": { + "minlat": 40.7990701, + "minlon": -73.9686546, + "maxlat": 40.7991535, + "maxlon": -73.9684544 + }, + "nodes": [ + 1061531815, + 42428742 + ], + "geometry": [ + { "lat": 40.7990701, "lon": -73.9684544 }, + { "lat": 40.7991535, "lon": -73.9686546 } + ], + "tags": { + "alt_name": "Odessa Steward Street", + "highway": "living_street", + "maxspeed": "10 mph", + "name": "West 103rd Street", + "name:ru": "Западная 103-я стрит", + "oneway": "yes", + "sidewalk": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1216505160, + "bounds": { + "minlat": 40.7989551, + "minlon": -73.9683593, + "maxlat": 40.7990306, + "maxlon": -73.9681783 + }, + "nodes": [ + 11271754123, + 7004451413 + ], + "geometry": [ + { "lat": 40.7989551, "lon": -73.9681783 }, + { "lat": 40.7990306, "lon": -73.9683593 } + ], + "tags": { + "alt_name": "Odessa Steward Street", + "highway": "living_street", + "maxspeed": "10 mph", + "name": "West 103rd Street", + "name:ru": "Западная 103-я стрит", + "note": "must add elements added about 8/15/2023 per the source url such as asphalt art.", + "official_name": "Norman Rockwell Place", + "oneway": "yes", + "sidewalk": "separate", + "smoothness": "good", + "source": "https://www.nyc.gov/html/dot/downloads/pdf/w103-st-open-street-jun2022.pdf", + "surface": "asphalt", + "traffic_calming": "choker;kerb_extension" + } +}, +{ + "type": "way", + "id": 1216505161, + "bounds": { + "minlat": 40.7990306, + "minlon": -73.9684544, + "maxlat": 40.7990701, + "maxlon": -73.9683593 + }, + "nodes": [ + 7004451413, + 1061531815 + ], + "geometry": [ + { "lat": 40.7990306, "lon": -73.9683593 }, + { "lat": 40.7990701, "lon": -73.9684544 } + ], + "tags": { + "alt_name": "Odessa Steward Street", + "highway": "living_street", + "maxspeed": "10 mph", + "name": "West 103rd Street", + "name:ru": "Западная 103-я стрит", + "oneway": "yes", + "sidewalk": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1216505162, + "bounds": { + "minlat": 40.7991964, + "minlon": -73.9690519, + "maxlat": 40.7993233, + "maxlon": -73.9687571 + }, + "nodes": [ + 10171397823, + 11271754125 + ], + "geometry": [ + { "lat": 40.7991964, "lon": -73.9687571 }, + { "lat": 40.7993233, "lon": -73.9690519 } + ], + "tags": { + "alt_name": "Humphrey Bogart Place", + "cycleway": "shared_lane", + "highway": "living_street", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "10 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "West 103rd Street", + "name:etymology:wikidata": "Q16390", + "name:ru": "Западная 103-я стрит", + "name_1": "West 103 Street", + "oneway": "yes", + "sidewalk": "separate", + "smoothness": "good", + "source": "https://www.nyc.gov/html/dot/downloads/pdf/w103-st-open-street-jun2022.pdf", + "surface": "asphalt", + "traffic_calming": "choker;kerb_extension" + } +}, +{ + "type": "way", + "id": 1216505163, + "bounds": { + "minlat": 40.7991535, + "minlon": -73.9687571, + "maxlat": 40.7991964, + "maxlon": -73.9686546 + }, + "nodes": [ + 42428742, + 10171397823 + ], + "geometry": [ + { "lat": 40.7991535, "lon": -73.9686546 }, + { "lat": 40.7991964, "lon": -73.9687571 } + ], + "tags": { + "alt_name": "Humphrey Bogart Place", + "cycleway": "shared_lane", + "highway": "living_street", + "lit": "yes", + "maxspeed": "10 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "West 103rd Street", + "name:ru": "Западная 103-я стрит", + "oneway": "yes", + "sidewalk": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1217099496, + "bounds": { + "minlat": 40.7809648, + "minlon": -73.9461351, + "maxlat": 40.7813177, + "maxlon": -73.9452485 + }, + "nodes": [ + 11277369013, + 6244796721, + 11277369014, + 6181709392, + 42452814 + ], + "geometry": [ + { "lat": 40.7809648, "lon": -73.9452485 }, + { "lat": 40.7810314, "lon": -73.9454051 }, + { "lat": 40.7810593, "lon": -73.9454736 }, + { "lat": 40.7812690, "lon": -73.9459876 }, + { "lat": 40.7813177, "lon": -73.9461351 } + ], + "tags": { + "highway": "residential", + "name": "East 93rd Street", + "name:ru": "Восточная 93-я стрит", + "oneway": "no", + "wikidata": "Q4645924", + "wikipedia": "en:93rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1217393802, + "bounds": { + "minlat": 40.7815342, + "minlon": -73.9604148, + "maxlat": 40.7822111, + "maxlon": -73.9599188 + }, + "nodes": [ + 42454189, + 7093980561, + 7093980559, + 42429314 + ], + "geometry": [ + { "lat": 40.7822111, "lon": -73.9599188 }, + { "lat": 40.7821529, "lon": -73.9599578 }, + { "lat": 40.7816340, "lon": -73.9603476 }, + { "lat": 40.7815342, "lon": -73.9604148 } + ], + "tags": { + "alt_name": "Museum Mile", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1217707546, + "bounds": { + "minlat": 40.7507765, + "minlon": -73.9293106, + "maxlat": 40.7512851, + "maxlon": -73.9276868 + }, + "nodes": [ + 7857724445, + 11282933547, + 11282933548, + 11282933549, + 11282933550, + 11282933551, + 11282933552, + 11282933553, + 11282933554 + ], + "geometry": [ + { "lat": 40.7512851, "lon": -73.9276868 }, + { "lat": 40.7512767, "lon": -73.9279357 }, + { "lat": 40.7511352, "lon": -73.9283158 }, + { "lat": 40.7510992, "lon": -73.9285542 }, + { "lat": 40.7510216, "lon": -73.9287671 }, + { "lat": 40.7509910, "lon": -73.9290524 }, + { "lat": 40.7509615, "lon": -73.9292179 }, + { "lat": 40.7508368, "lon": -73.9292499 }, + { "lat": 40.7507765, "lon": -73.9293106 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1217707547, + "bounds": { + "minlat": 40.7508368, + "minlon": -73.9292499, + "maxlat": 40.7511352, + "maxlon": -73.9283158 + }, + "nodes": [ + 11282933553, + 11282933555, + 11282933556, + 11282933557, + 11282933548 + ], + "geometry": [ + { "lat": 40.7508368, "lon": -73.9292499 }, + { "lat": 40.7508711, "lon": -73.9291626 }, + { "lat": 40.7509124, "lon": -73.9287864 }, + { "lat": 40.7509936, "lon": -73.9284544 }, + { "lat": 40.7511352, "lon": -73.9283158 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1217707548, + "bounds": { + "minlat": 40.7503691, + "minlon": -73.9258285, + "maxlat": 40.7509101, + "maxlon": -73.9250488 + }, + "nodes": [ + 11282933558, + 11282933559, + 11282933560, + 11282933561, + 11282933562, + 11282933563, + 11282933564, + 11282933565, + 7857650502 + ], + "geometry": [ + { "lat": 40.7503691, "lon": -73.9256439 }, + { "lat": 40.7505463, "lon": -73.9258285 }, + { "lat": 40.7506070, "lon": -73.9257869 }, + { "lat": 40.7506730, "lon": -73.9256608 }, + { "lat": 40.7507895, "lon": -73.9254908 }, + { "lat": 40.7508497, "lon": -73.9254404 }, + { "lat": 40.7509101, "lon": -73.9252253 }, + { "lat": 40.7509053, "lon": -73.9251487 }, + { "lat": 40.7508729, "lon": -73.9250488 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1217707549, + "bounds": { + "minlat": 40.7504973, + "minlon": -73.9261259, + "maxlat": 40.7505463, + "maxlon": -73.9258285 + }, + "nodes": [ + 11282933559, + 11282933566, + 11282933567, + 11282933568 + ], + "geometry": [ + { "lat": 40.7505463, "lon": -73.9258285 }, + { "lat": 40.7504973, "lon": -73.9259593 }, + { "lat": 40.7504980, "lon": -73.9260765 }, + { "lat": 40.7505377, "lon": -73.9261259 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1217707959, + "bounds": { + "minlat": 40.7103566, + "minlon": -73.9898974, + "maxlat": 40.7109154, + "maxlon": -73.9896357 + }, + "nodes": [ + 11282966019, + 11282966023, + 11282966020, + 11282966021 + ], + "geometry": [ + { "lat": 40.7109033, "lon": -73.9898974 }, + { "lat": 40.7109080, "lon": -73.9898494 }, + { "lat": 40.7109154, "lon": -73.9897164 }, + { "lat": 40.7103566, "lon": -73.9896357 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1217707960, + "bounds": { + "minlat": 40.7109154, + "minlon": -73.9897405, + "maxlat": 40.7111145, + "maxlon": -73.9897164 + }, + "nodes": [ + 11282966020, + 11282966022 + ], + "geometry": [ + { "lat": 40.7109154, "lon": -73.9897164 }, + { "lat": 40.7111145, "lon": -73.9897405 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1218051763, + "bounds": { + "minlat": 40.7255801, + "minlon": -73.9314765, + "maxlat": 40.7256724, + "maxlon": -73.9311342 + }, + "nodes": [ + 11286430025, + 13247193378, + 6760897313 + ], + "geometry": [ + { "lat": 40.7256724, "lon": -73.9311342 }, + { "lat": 40.7256000, "lon": -73.9314026 }, + { "lat": 40.7255801, "lon": -73.9314765 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Cherry Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 1218241129, + "bounds": { + "minlat": 40.8233806, + "minlon": -73.9359433, + "maxlat": 40.8245507, + "maxlon": -73.9346891 + }, + "nodes": [ + 10564565155, + 11288450601, + 11288450602, + 11288450603, + 11288450606, + 11288450604 + ], + "geometry": [ + { "lat": 40.8245507, "lon": -73.9359433 }, + { "lat": 40.8244185, "lon": -73.9356307 }, + { "lat": 40.8240531, "lon": -73.9347705 }, + { "lat": 40.8240186, "lon": -73.9346891 }, + { "lat": 40.8237025, "lon": -73.9348983 }, + { "lat": 40.8233806, "lon": -73.9351112 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1218241130, + "bounds": { + "minlat": 40.8231855, + "minlon": -73.9351112, + "maxlat": 40.8240186, + "maxlon": -73.9346306 + }, + "nodes": [ + 11288450603, + 11288450607, + 11288450605, + 11288450604 + ], + "geometry": [ + { "lat": 40.8240186, "lon": -73.9346891 }, + { "lat": 40.8236055, "lon": -73.9346601 }, + { "lat": 40.8231855, "lon": -73.9346306 }, + { "lat": 40.8233806, "lon": -73.9351112 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1218241131, + "bounds": { + "minlat": 40.8236055, + "minlon": -73.9348983, + "maxlat": 40.8237025, + "maxlon": -73.9346601 + }, + "nodes": [ + 11288450606, + 11288450607 + ], + "geometry": [ + { "lat": 40.8237025, "lon": -73.9348983 }, + { "lat": 40.8236055, "lon": -73.9346601 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1218241132, + "bounds": { + "minlat": 40.8233645, + "minlon": -73.9368374, + "maxlat": 40.8240531, + "maxlon": -73.9347705 + }, + "nodes": [ + 11288450602, + 11288450608, + 11288450609 + ], + "geometry": [ + { "lat": 40.8240531, "lon": -73.9347705 }, + { "lat": 40.8233645, "lon": -73.9352717 }, + { "lat": 40.8240185, "lon": -73.9368374 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1218291452, + "bounds": { + "minlat": 40.8774502, + "minlon": -73.9143795, + "maxlat": 40.8777402, + "maxlon": -73.9139776 + }, + "nodes": [ + 11288880278, + 11288880279, + 11288880280 + ], + "geometry": [ + { "lat": 40.8774502, "lon": -73.9143795 }, + { "lat": 40.8774875, "lon": -73.9142905 }, + { "lat": 40.8777402, "lon": -73.9139776 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1218359635, + "bounds": { + "minlat": 40.7023297, + "minlon": -73.9876367, + "maxlat": 40.7024529, + "maxlon": -73.9876313 + }, + "nodes": [ + 42469193, + 10726079546, + 9800597453 + ], + "geometry": [ + { "lat": 40.7024529, "lon": -73.9876313 }, + { "lat": 40.7024089, "lon": -73.9876326 }, + { "lat": 40.7023297, "lon": -73.9876367 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Pearl Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1218473501, + "bounds": { + "minlat": 40.8722159, + "minlon": -73.9562167, + "maxlat": 40.8725208, + "maxlon": -73.9559229 + }, + "nodes": [ + 11290480967, + 11290480968 + ], + "geometry": [ + { "lat": 40.8725208, "lon": -73.9559229 }, + { "lat": 40.8722159, "lon": -73.9562167 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1218473502, + "bounds": { + "minlat": 40.8721451, + "minlon": -73.9560031, + "maxlat": 40.8724368, + "maxlon": -73.9557535 + }, + "nodes": [ + 11290489569, + 11290489570 + ], + "geometry": [ + { "lat": 40.8724368, "lon": -73.9557535 }, + { "lat": 40.8721451, "lon": -73.9560031 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1219684227, + "bounds": { + "minlat": 40.7129268, + "minlon": -74.0122919, + "maxlat": 40.7130323, + "maxlon": -74.0122271 + }, + "nodes": [ + 11301575809, + 11301575810, + 11301575813, + 11301575811, + 11301575812 + ], + "geometry": [ + { "lat": 40.7130323, "lon": -74.0122271 }, + { "lat": 40.7129975, "lon": -74.0122533 }, + { "lat": 40.7129709, "lon": -74.0122687 }, + { "lat": 40.7129479, "lon": -74.0122799 }, + { "lat": 40.7129268, "lon": -74.0122919 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1219684228, + "bounds": { + "minlat": 40.7128442, + "minlon": -74.0121068, + "maxlat": 40.7129427, + "maxlon": -74.0120215 + }, + "nodes": [ + 11301575814, + 11301575815, + 11301575818, + 11301575816, + 11301575817 + ], + "geometry": [ + { "lat": 40.7128442, "lon": -74.0121068 }, + { "lat": 40.7128635, "lon": -74.0120875 }, + { "lat": 40.7128867, "lon": -74.0120665 }, + { "lat": 40.7129159, "lon": -74.0120423 }, + { "lat": 40.7129427, "lon": -74.0120215 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1220027068, + "bounds": { + "minlat": 40.7723874, + "minlon": -73.9114790, + "maxlat": 40.7727667, + "maxlon": -73.9111993 + }, + "nodes": [ + 11304595231, + 11304595232, + 11304595233, + 11304595237, + 11304595234 + ], + "geometry": [ + { "lat": 40.7727667, "lon": -73.9114790 }, + { "lat": 40.7727222, "lon": -73.9114138 }, + { "lat": 40.7725692, "lon": -73.9111993 }, + { "lat": 40.7724689, "lon": -73.9113257 }, + { "lat": 40.7723874, "lon": -73.9114299 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1220027069, + "bounds": { + "minlat": 40.7724689, + "minlon": -73.9116081, + "maxlat": 40.7726618, + "maxlon": -73.9113257 + }, + "nodes": [ + 11304595235, + 11304595236, + 11304595237 + ], + "geometry": [ + { "lat": 40.7726618, "lon": -73.9116081 }, + { "lat": 40.7726175, "lon": -73.9115430 }, + { "lat": 40.7724689, "lon": -73.9113257 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1220027070, + "bounds": { + "minlat": 40.7725692, + "minlon": -73.9111993, + "maxlat": 40.7726095, + "maxlon": -73.9111467 + }, + "nodes": [ + 11304595233, + 11304595246, + 11304595238 + ], + "geometry": [ + { "lat": 40.7725692, "lon": -73.9111993 }, + { "lat": 40.7725804, "lon": -73.9111848 }, + { "lat": 40.7726095, "lon": -73.9111467 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1220028935, + "bounds": { + "minlat": 40.7740961, + "minlon": -73.9092450, + "maxlat": 40.7745966, + "maxlon": -73.9085305 + }, + "nodes": [ + 11304608229, + 11304608230, + 11304608231, + 11304608232 + ], + "geometry": [ + { "lat": 40.7745966, "lon": -73.9092450 }, + { "lat": 40.7745473, "lon": -73.9091755 }, + { "lat": 40.7741343, "lon": -73.9085862 }, + { "lat": 40.7740961, "lon": -73.9085305 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1220195754, + "bounds": { + "minlat": 40.7402793, + "minlon": -73.9605678, + "maxlat": 40.7405570, + "maxlon": -73.9595564 + }, + "nodes": [ + 11306575594, + 11306575595, + 11306575599, + 11306575597, + 11306575596 + ], + "geometry": [ + { "lat": 40.7402793, "lon": -73.9595564 }, + { "lat": 40.7403069, "lon": -73.9596446 }, + { "lat": 40.7403106, "lon": -73.9596581 }, + { "lat": 40.7403791, "lon": -73.9599110 }, + { "lat": 40.7405570, "lon": -73.9605678 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1220195755, + "bounds": { + "minlat": 40.7403791, + "minlon": -73.9599110, + "maxlat": 40.7407102, + "maxlon": -73.9597953 + }, + "nodes": [ + 11306575597, + 11306575598 + ], + "geometry": [ + { "lat": 40.7403791, "lon": -73.9599110 }, + { "lat": 40.7407102, "lon": -73.9597953 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1220197899, + "bounds": { + "minlat": 40.7346824, + "minlon": -73.9465967, + "maxlat": 40.7356566, + "maxlon": -73.9456654 + }, + "nodes": [ + 7984826769, + 11306595173, + 11306595174, + 11306595175, + 11306595176, + 11306595177, + 11306595178, + 11306595179, + 11306595180, + 11306595181, + 11306595182, + 11306595185, + 11306595183 + ], + "geometry": [ + { "lat": 40.7351722, "lon": -73.9456654 }, + { "lat": 40.7355190, "lon": -73.9457844 }, + { "lat": 40.7356026, "lon": -73.9458281 }, + { "lat": 40.7356462, "lon": -73.9459155 }, + { "lat": 40.7356566, "lon": -73.9460420 }, + { "lat": 40.7356497, "lon": -73.9463019 }, + { "lat": 40.7356218, "lon": -73.9463800 }, + { "lat": 40.7355329, "lon": -73.9464467 }, + { "lat": 40.7352901, "lon": -73.9465738 }, + { "lat": 40.7351974, "lon": -73.9465967 }, + { "lat": 40.7349718, "lon": -73.9465850 }, + { "lat": 40.7348089, "lon": -73.9465725 }, + { "lat": 40.7346824, "lon": -73.9464859 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1220197900, + "bounds": { + "minlat": 40.7347621, + "minlon": -73.9464149, + "maxlat": 40.7348560, + "maxlon": -73.9456081 + }, + "nodes": [ + 11306595184, + 11306595186, + 7984826768 + ], + "geometry": [ + { "lat": 40.7347621, "lon": -73.9464149 }, + { "lat": 40.7348377, "lon": -73.9457904 }, + { "lat": 40.7348560, "lon": -73.9456081 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1220242347, + "bounds": { + "minlat": 40.7057768, + "minlon": -73.9407470, + "maxlat": 40.7059280, + "maxlon": -73.9404311 + }, + "nodes": [ + 7191266550, + 11306932583, + 11306932584, + 11306932585, + 11306932586, + 11306932587, + 11306932588, + 11306932589 + ], + "geometry": [ + { "lat": 40.7059280, "lon": -73.9407434 }, + { "lat": 40.7059050, "lon": -73.9407470 }, + { "lat": 40.7058887, "lon": -73.9407470 }, + { "lat": 40.7058067, "lon": -73.9407335 }, + { "lat": 40.7057938, "lon": -73.9407266 }, + { "lat": 40.7057821, "lon": -73.9407055 }, + { "lat": 40.7057768, "lon": -73.9406774 }, + { "lat": 40.7057984, "lon": -73.9404311 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1220242348, + "bounds": { + "minlat": 40.7058095, + "minlon": -73.9402799, + "maxlat": 40.7059926, + "maxlon": -73.9400099 + }, + "nodes": [ + 7191266549, + 11306932590, + 11306932591, + 11306932592, + 11306932593, + 11306932594, + 11306932595 + ], + "geometry": [ + { "lat": 40.7059926, "lon": -73.9400278 }, + { "lat": 40.7058792, "lon": -73.9400099 }, + { "lat": 40.7058640, "lon": -73.9400132 }, + { "lat": 40.7058513, "lon": -73.9400230 }, + { "lat": 40.7058385, "lon": -73.9400431 }, + { "lat": 40.7058300, "lon": -73.9400706 }, + { "lat": 40.7058095, "lon": -73.9402799 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1220393297, + "bounds": { + "minlat": 40.7157191, + "minlon": -74.0092778, + "maxlat": 40.7161148, + "maxlon": -74.0091406 + }, + "nodes": [ + 11308557832, + 11308557833, + 11308590193, + 11308557857, + 11308557854, + 11308557852, + 11308557834, + 11308557835, + 11308557836, + 11308557837, + 11308557838, + 11308557839, + 11308557840, + 11308557841, + 11308557842, + 11308557843, + 11308557844, + 11308590197, + 11308590256, + 11308557845, + 11308557846, + 11308557847, + 11308557848, + 11308557849, + 11308557850, + 11308557851, + 11308557853, + 11308557832 + ], + "geometry": [ + { "lat": 40.7161148, "lon": -74.0092188 }, + { "lat": 40.7160320, "lon": -74.0092778 }, + { "lat": 40.7159789, "lon": -74.0092701 }, + { "lat": 40.7159072, "lon": -74.0092610 }, + { "lat": 40.7158023, "lon": -74.0092462 }, + { "lat": 40.7157686, "lon": -74.0092416 }, + { "lat": 40.7157320, "lon": -74.0092372 }, + { "lat": 40.7157191, "lon": -74.0092070 }, + { "lat": 40.7158056, "lon": -74.0091419 }, + { "lat": 40.7158033, "lon": -74.0091504 }, + { "lat": 40.7158042, "lon": -74.0091616 }, + { "lat": 40.7158086, "lon": -74.0091687 }, + { "lat": 40.7158550, "lon": -74.0091882 }, + { "lat": 40.7158619, "lon": -74.0091899 }, + { "lat": 40.7158701, "lon": -74.0091869 }, + { "lat": 40.7158771, "lon": -74.0091811 }, + { "lat": 40.7158888, "lon": -74.0091673 }, + { "lat": 40.7158949, "lon": -74.0091762 }, + { "lat": 40.7158986, "lon": -74.0091815 }, + { "lat": 40.7159029, "lon": -74.0091879 }, + { "lat": 40.7159872, "lon": -74.0091794 }, + { "lat": 40.7159967, "lon": -74.0091406 }, + { "lat": 40.7160743, "lon": -74.0091679 }, + { "lat": 40.7160807, "lon": -74.0091649 }, + { "lat": 40.7160833, "lon": -74.0091585 }, + { "lat": 40.7160835, "lon": -74.0091500 }, + { "lat": 40.7161102, "lon": -74.0092086 }, + { "lat": 40.7161148, "lon": -74.0092188 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1220393298, + "bounds": { + "minlat": 40.7156308, + "minlon": -74.0092549, + "maxlat": 40.7157686, + "maxlon": -74.0092416 + }, + "nodes": [ + 4142119808, + 11308557852 + ], + "geometry": [ + { "lat": 40.7156308, "lon": -74.0092549 }, + { "lat": 40.7157686, "lon": -74.0092416 } + ], + "tags": { + "hgv": "destination", + "highway": "pedestrian", + "lit": "yes", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "old_name": "Hudson Street", + "oneway": "no", + "surface": "concrete", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1220393299, + "bounds": { + "minlat": 40.7161102, + "minlon": -74.0092101, + "maxlat": 40.7161219, + "maxlon": -74.0092086 + }, + "nodes": [ + 11308557853, + 7410938059 + ], + "geometry": [ + { "lat": 40.7161102, "lon": -74.0092086 }, + { "lat": 40.7161219, "lon": -74.0092101 } + ], + "tags": { + "hgv": "destination", + "highway": "pedestrian", + "lit": "yes", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "old_name": "Hudson Street", + "surface": "concrete", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1220393315, + "bounds": { + "minlat": 40.7158888, + "minlon": -74.0091879, + "maxlat": 40.7160158, + "maxlon": -74.0090363 + }, + "nodes": [ + 11308557846, + 11308557845, + 11308590256, + 11308590197, + 11308557844, + 11308590250, + 11308590249, + 11308590257, + 11308590251, + 11308557847, + 11308557846 + ], + "geometry": [ + { "lat": 40.7159872, "lon": -74.0091794 }, + { "lat": 40.7159029, "lon": -74.0091879 }, + { "lat": 40.7158986, "lon": -74.0091815 }, + { "lat": 40.7158949, "lon": -74.0091762 }, + { "lat": 40.7158888, "lon": -74.0091673 }, + { "lat": 40.7158992, "lon": -74.0091551 }, + { "lat": 40.7159994, "lon": -74.0090363 }, + { "lat": 40.7160055, "lon": -74.0090439 }, + { "lat": 40.7160158, "lon": -74.0090565 }, + { "lat": 40.7159967, "lon": -74.0091406 }, + { "lat": 40.7159872, "lon": -74.0091794 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 1220414623, + "bounds": { + "minlat": 40.7190621, + "minlon": -74.0068931, + "maxlat": 40.7192472, + "maxlon": -74.0068199 + }, + "nodes": [ + 11308760857, + 11308760858, + 11308760859, + 11308760860, + 11308790033, + 11308790037, + 11308760861, + 11308760862, + 11308760863, + 11308760864, + 11308760865, + 11308790038, + 11308790034, + 11308760866, + 11308760867, + 11308760857 + ], + "geometry": [ + { "lat": 40.7192472, "lon": -74.0068615 }, + { "lat": 40.7192428, "lon": -74.0068242 }, + { "lat": 40.7192414, "lon": -74.0068206 }, + { "lat": 40.7192391, "lon": -74.0068199 }, + { "lat": 40.7191832, "lon": -74.0068299 }, + { "lat": 40.7190997, "lon": -74.0068447 }, + { "lat": 40.7190633, "lon": -74.0068512 }, + { "lat": 40.7190621, "lon": -74.0068543 }, + { "lat": 40.7190879, "lon": -74.0068895 }, + { "lat": 40.7190918, "lon": -74.0068922 }, + { "lat": 40.7190987, "lon": -74.0068931 }, + { "lat": 40.7191286, "lon": -74.0068878 }, + { "lat": 40.7191915, "lon": -74.0068764 }, + { "lat": 40.7192437, "lon": -74.0068670 }, + { "lat": 40.7192465, "lon": -74.0068658 }, + { "lat": 40.7192472, "lon": -74.0068615 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1220414624, + "bounds": { + "minlat": 40.7189232, + "minlon": -74.0069528, + "maxlat": 40.7190015, + "maxlon": -74.0068861 + }, + "nodes": [ + 11308760868, + 11308790041, + 11308789969, + 11308789970, + 11308789971, + 11308789972, + 11308789973, + 11308789974, + 11308789975, + 11308790040, + 11308789976, + 11308789977, + 11308789978, + 11308789979, + 11308789980, + 11308789981, + 11308760868 + ], + "geometry": [ + { "lat": 40.7189982, "lon": -74.0069451 }, + { "lat": 40.7189853, "lon": -74.0069475 }, + { "lat": 40.7189561, "lon": -74.0069528 }, + { "lat": 40.7189521, "lon": -74.0069522 }, + { "lat": 40.7189491, "lon": -74.0069485 }, + { "lat": 40.7189244, "lon": -74.0069040 }, + { "lat": 40.7189232, "lon": -74.0068990 }, + { "lat": 40.7189252, "lon": -74.0068959 }, + { "lat": 40.7189294, "lon": -74.0068946 }, + { "lat": 40.7189571, "lon": -74.0068893 }, + { "lat": 40.7189735, "lon": -74.0068861 }, + { "lat": 40.7189767, "lon": -74.0068861 }, + { "lat": 40.7189790, "lon": -74.0068876 }, + { "lat": 40.7190014, "lon": -74.0069368 }, + { "lat": 40.7190015, "lon": -74.0069401 }, + { "lat": 40.7190004, "lon": -74.0069433 }, + { "lat": 40.7189982, "lon": -74.0069451 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1220414640, + "bounds": { + "minlat": 40.7190677, + "minlon": -74.0071167, + "maxlat": 40.7191379, + "maxlon": -74.0069661 + }, + "nodes": [ + 11308790026, + 11308790031, + 8312361626, + 11308790032, + 42453038 + ], + "geometry": [ + { "lat": 40.7191379, "lon": -74.0071167 }, + { "lat": 40.7191317, "lon": -74.0070871 }, + { "lat": 40.7191251, "lon": -74.0070659 }, + { "lat": 40.7191118, "lon": -74.0070396 }, + { "lat": 40.7190677, "lon": -74.0069661 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "name:ko": "프랭클린 스트리트", + "name:ru": "Франклин-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1220414661, + "bounds": { + "minlat": 40.7187628, + "minlon": -74.0066306, + "maxlat": 40.7188325, + "maxlon": -74.0065755 + }, + "nodes": [ + 11308790071, + 11308790083, + 11308790072, + 11308790073, + 11308790082, + 11308790074, + 11308790075, + 11308790076, + 11308790077, + 11308790078, + 11308790071 + ], + "geometry": [ + { "lat": 40.7188299, "lon": -74.0066021 }, + { "lat": 40.7188205, "lon": -74.0066099 }, + { "lat": 40.7187952, "lon": -74.0066306 }, + { "lat": 40.7187628, "lon": -74.0066183 }, + { "lat": 40.7188079, "lon": -74.0065832 }, + { "lat": 40.7188167, "lon": -74.0065764 }, + { "lat": 40.7188202, "lon": -74.0065755 }, + { "lat": 40.7188236, "lon": -74.0065779 }, + { "lat": 40.7188323, "lon": -74.0065947 }, + { "lat": 40.7188325, "lon": -74.0065997 }, + { "lat": 40.7188299, "lon": -74.0066021 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1220414668, + "bounds": { + "minlat": 40.7190474, + "minlon": -74.0068102, + "maxlat": 40.7191765, + "maxlon": -74.0064840 + }, + "nodes": [ + 8312344406, + 11308790091, + 11308789986, + 11308789985, + 11308790023, + 11308789984, + 11308789983, + 11308790090, + 11308789982, + 11308790001, + 11308790009, + 11308790000, + 11308789999, + 11308789998, + 11308789997, + 11308789996, + 11308790084, + 11308790085, + 11308790086, + 11308790042, + 11308790087, + 11308790088, + 11308790089, + 8312344406 + ], + "geometry": [ + { "lat": 40.7191765, "lon": -74.0067925 }, + { "lat": 40.7190744, "lon": -74.0068069 }, + { "lat": 40.7190508, "lon": -74.0068102 }, + { "lat": 40.7190649, "lon": -74.0068064 }, + { "lat": 40.7190711, "lon": -74.0068020 }, + { "lat": 40.7190759, "lon": -74.0067983 }, + { "lat": 40.7190800, "lon": -74.0067917 }, + { "lat": 40.7190831, "lon": -74.0067824 }, + { "lat": 40.7190849, "lon": -74.0067715 }, + { "lat": 40.7190834, "lon": -74.0067513 }, + { "lat": 40.7190650, "lon": -74.0065772 }, + { "lat": 40.7190642, "lon": -74.0065696 }, + { "lat": 40.7190617, "lon": -74.0065622 }, + { "lat": 40.7190574, "lon": -74.0065574 }, + { "lat": 40.7190532, "lon": -74.0065567 }, + { "lat": 40.7190474, "lon": -74.0065593 }, + { "lat": 40.7191417, "lon": -74.0064840 }, + { "lat": 40.7191374, "lon": -74.0064929 }, + { "lat": 40.7191368, "lon": -74.0065020 }, + { "lat": 40.7191380, "lon": -74.0065207 }, + { "lat": 40.7191634, "lon": -74.0067692 }, + { "lat": 40.7191665, "lon": -74.0067830 }, + { "lat": 40.7191703, "lon": -74.0067895 }, + { "lat": 40.7191765, "lon": -74.0067925 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1220414685, + "bounds": { + "minlat": 40.7182780, + "minlon": -74.0072241, + "maxlat": 40.7183429, + "maxlon": -74.0070866 + }, + "nodes": [ + 42448162, + 8312361646, + 11308790130 + ], + "geometry": [ + { "lat": 40.7182780, "lon": -74.0070866 }, + { "lat": 40.7183249, "lon": -74.0071866 }, + { "lat": 40.7183429, "lon": -74.0072241 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Leonard Street", + "name:etymology:wikidata": "Q6525508", + "name:ko": "레오나드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6525759", + "wikipedia": "en:Leonard Street" + } +}, +{ + "type": "way", + "id": 1220467430, + "bounds": { + "minlat": 40.7750332, + "minlon": -74.0160640, + "maxlat": 40.7752630, + "maxlon": -74.0158617 + }, + "nodes": [ + 11309169637, + 11309169640, + 11309169638, + 11309169639 + ], + "geometry": [ + { "lat": 40.7750332, "lon": -74.0160640 }, + { "lat": 40.7750748, "lon": -74.0160262 }, + { "lat": 40.7751625, "lon": -74.0159469 }, + { "lat": 40.7752630, "lon": -74.0158617 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1220586384, + "bounds": { + "minlat": 40.7392299, + "minlon": -74.0097347, + "maxlat": 40.7393666, + "maxlon": -74.0097004 + }, + "nodes": [ + 593816275, + 12161966103, + 12161966104, + 11310311808 + ], + "geometry": [ + { "lat": 40.7393666, "lon": -74.0097004 }, + { "lat": 40.7393223, "lon": -74.0097154 }, + { "lat": 40.7392814, "lon": -74.0097254 }, + { "lat": 40.7392299, "lon": -74.0097347 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1220611715, + "bounds": { + "minlat": 40.8304829, + "minlon": -73.9403502, + "maxlat": 40.8305812, + "maxlon": -73.9403476 + }, + "nodes": [ + 13319742509, + 11221649594 + ], + "geometry": [ + { "lat": 40.8304829, "lon": -73.9403476 }, + { "lat": 40.8305812, "lon": -73.9403502 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "Edgecombe Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1220611718, + "bounds": { + "minlat": 40.8303722, + "minlon": -73.9401371, + "maxlat": 40.8304679, + "maxlon": -73.9400893 + }, + "nodes": [ + 6407228007, + 13320039759, + 4515465264 + ], + "geometry": [ + { "lat": 40.8304679, "lon": -73.9400893 }, + { "lat": 40.8304270, "lon": -73.9401097 }, + { "lat": 40.8303722, "lon": -73.9401371 } + ], + "tags": { + "alt_name": "Willie Mays Drive", + "cycleway:left": "separate", + "cycleway:right": "lane", + "description": "This honorary street name memorializes Willie Mays.", + "hgv": "destination", + "highway": "tertiary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Harlem River Driveway", + "name:etymology:wikidata": "Q597451", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Harlem River", + "tiger:name_base_1": "159th", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Dr", + "tiger:name_type_1": "St", + "turn:lanes:forward": "left;through|right" + } +}, +{ + "type": "way", + "id": 1220650925, + "bounds": { + "minlat": 40.7223558, + "minlon": -74.0063441, + "maxlat": 40.7225692, + "maxlon": -74.0063170 + }, + "nodes": [ + 42440838, + 4778174559, + 11310960993 + ], + "geometry": [ + { "lat": 40.7225692, "lon": -74.0063170 }, + { "lat": 40.7224303, "lon": -74.0063341 }, + { "lat": 40.7223558, "lon": -74.0063441 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:left:surface": "paving_stones", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 1220650926, + "bounds": { + "minlat": 40.7218075, + "minlon": -74.0064418, + "maxlat": 40.7218735, + "maxlon": -74.0064221 + }, + "nodes": [ + 11310960994, + 4778174564 + ], + "geometry": [ + { "lat": 40.7218735, "lon": -74.0064221 }, + { "lat": 40.7218075, "lon": -74.0064418 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:left:surface": "paving_stones", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 1220650955, + "bounds": { + "minlat": 40.7222148, + "minlon": -74.0057752, + "maxlat": 40.7228927, + "maxlon": -74.0052892 + }, + "nodes": [ + 11310961171, + 11310961192, + 11310961190, + 11310961159, + 11310961158, + 11310961157, + 11310961156, + 11310961155, + 11310961154, + 11310961153, + 11310961152, + 11310961151, + 11310961150, + 11310961149, + 11310961148, + 11310961147, + 11310961146, + 11310961145, + 1241260186, + 11310961197, + 11310961205, + 11310961137, + 11310961136, + 11310961139, + 11310961129, + 11310961128, + 11310961127, + 11310961130, + 11310961124, + 11310961123, + 11310961122, + 11310961125, + 11310961119, + 11310961118, + 11310961117, + 11310961120, + 11310961113, + 11310961112, + 11310961111, + 11310961114, + 11310961108, + 11310961107, + 11310961106, + 11310961109, + 11310961091, + 11310961101, + 11310961100, + 11310961099, + 11310961098, + 11310961097, + 11310961096, + 11310961095, + 11310961094, + 11310961093, + 11310961092, + 11311075265, + 11310961167, + 11310961185, + 11310961184, + 11310961183, + 11310961182, + 11310961181, + 11310961180, + 11310961179, + 11310961178, + 11310961177, + 11310961176, + 11310961175, + 11310961174, + 11310961173, + 11310961172, + 11310961171 + ], + "geometry": [ + { "lat": 40.7228843, "lon": -74.0052892 }, + { "lat": 40.7228896, "lon": -74.0053129 }, + { "lat": 40.7228927, "lon": -74.0053269 }, + { "lat": 40.7228044, "lon": -74.0054016 }, + { "lat": 40.7227986, "lon": -74.0053943 }, + { "lat": 40.7227858, "lon": -74.0053904 }, + { "lat": 40.7227748, "lon": -74.0053922 }, + { "lat": 40.7227652, "lon": -74.0053987 }, + { "lat": 40.7227585, "lon": -74.0054122 }, + { "lat": 40.7227437, "lon": -74.0054288 }, + { "lat": 40.7227166, "lon": -74.0054457 }, + { "lat": 40.7226896, "lon": -74.0054540 }, + { "lat": 40.7226695, "lon": -74.0054571 }, + { "lat": 40.7226557, "lon": -74.0054626 }, + { "lat": 40.7226475, "lon": -74.0054730 }, + { "lat": 40.7226445, "lon": -74.0054865 }, + { "lat": 40.7226479, "lon": -74.0055021 }, + { "lat": 40.7226583, "lon": -74.0055254 }, + { "lat": 40.7223632, "lon": -74.0057752 }, + { "lat": 40.7223063, "lon": -74.0056934 }, + { "lat": 40.7222372, "lon": -74.0055937 }, + { "lat": 40.7222148, "lon": -74.0055615 }, + { "lat": 40.7222272, "lon": -74.0055567 }, + { "lat": 40.7222235, "lon": -74.0055405 }, + { "lat": 40.7222816, "lon": -74.0055190 }, + { "lat": 40.7222852, "lon": -74.0055351 }, + { "lat": 40.7222976, "lon": -74.0055303 }, + { "lat": 40.7222940, "lon": -74.0055141 }, + { "lat": 40.7223470, "lon": -74.0054926 }, + { "lat": 40.7223506, "lon": -74.0055087 }, + { "lat": 40.7223630, "lon": -74.0055039 }, + { "lat": 40.7223593, "lon": -74.0054877 }, + { "lat": 40.7224138, "lon": -74.0054658 }, + { "lat": 40.7224174, "lon": -74.0054820 }, + { "lat": 40.7224298, "lon": -74.0054771 }, + { "lat": 40.7224261, "lon": -74.0054610 }, + { "lat": 40.7224717, "lon": -74.0054425 }, + { "lat": 40.7224753, "lon": -74.0054587 }, + { "lat": 40.7224877, "lon": -74.0054538 }, + { "lat": 40.7224840, "lon": -74.0054377 }, + { "lat": 40.7225340, "lon": -74.0054153 }, + { "lat": 40.7225376, "lon": -74.0054314 }, + { "lat": 40.7225500, "lon": -74.0054266 }, + { "lat": 40.7225463, "lon": -74.0054104 }, + { "lat": 40.7225841, "lon": -74.0053956 }, + { "lat": 40.7225905, "lon": -74.0054051 }, + { "lat": 40.7225951, "lon": -74.0054087 }, + { "lat": 40.7226046, "lon": -74.0054114 }, + { "lat": 40.7226160, "lon": -74.0054102 }, + { "lat": 40.7226261, "lon": -74.0054058 }, + { "lat": 40.7226357, "lon": -74.0053968 }, + { "lat": 40.7226460, "lon": -74.0053896 }, + { "lat": 40.7226566, "lon": -74.0053850 }, + { "lat": 40.7226642, "lon": -74.0053753 }, + { "lat": 40.7226651, "lon": -74.0053639 }, + { "lat": 40.7226941, "lon": -74.0053519 }, + { "lat": 40.7227214, "lon": -74.0053407 }, + { "lat": 40.7227246, "lon": -74.0053475 }, + { "lat": 40.7227296, "lon": -74.0053526 }, + { "lat": 40.7227387, "lon": -74.0053519 }, + { "lat": 40.7227493, "lon": -74.0053475 }, + { "lat": 40.7227638, "lon": -74.0053386 }, + { "lat": 40.7227763, "lon": -74.0053315 }, + { "lat": 40.7227935, "lon": -74.0053282 }, + { "lat": 40.7228067, "lon": -74.0053246 }, + { "lat": 40.7228184, "lon": -74.0053203 }, + { "lat": 40.7228296, "lon": -74.0053157 }, + { "lat": 40.7228457, "lon": -74.0053108 }, + { "lat": 40.7228642, "lon": -74.0053101 }, + { "lat": 40.7228752, "lon": -74.0053080 }, + { "lat": 40.7228828, "lon": -74.0052994 }, + { "lat": 40.7228843, "lon": -74.0052892 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1220650964, + "bounds": { + "minlat": 40.7223870, + "minlon": -74.0062077, + "maxlat": 40.7230565, + "maxlon": -74.0053792 + }, + "nodes": [ + 11310917657, + 11310961221, + 11310961222, + 11310961223, + 11310917656, + 11310961207, + 11310961208, + 11310961209, + 4890418792, + 11310961210, + 2477507994, + 11310917668, + 11310960969, + 11310917665, + 11310917666, + 11310917667, + 11310917664, + 11310917663, + 11310917662, + 11310917658, + 11310961224, + 2477507996, + 2477507993, + 2477507989, + 11310961211, + 11310961202, + 11310961212, + 11310961213, + 11310961214, + 11310961217, + 11310961225, + 11310961226, + 11310961227, + 11310961218, + 11310961228, + 11310961229, + 11310917657 + ], + "geometry": [ + { "lat": 40.7226325, "lon": -74.0062077 }, + { "lat": 40.7226228, "lon": -74.0062072 }, + { "lat": 40.7226114, "lon": -74.0062031 }, + { "lat": 40.7226002, "lon": -74.0061961 }, + { "lat": 40.7225955, "lon": -74.0061884 }, + { "lat": 40.7223902, "lon": -74.0059037 }, + { "lat": 40.7223870, "lon": -74.0058878 }, + { "lat": 40.7223873, "lon": -74.0058708 }, + { "lat": 40.7223918, "lon": -74.0058612 }, + { "lat": 40.7224023, "lon": -74.0058453 }, + { "lat": 40.7224132, "lon": -74.0058372 }, + { "lat": 40.7224995, "lon": -74.0059616 }, + { "lat": 40.7224924, "lon": -74.0059688 }, + { "lat": 40.7224853, "lon": -74.0059764 }, + { "lat": 40.7225151, "lon": -74.0060189 }, + { "lat": 40.7225282, "lon": -74.0060030 }, + { "lat": 40.7225716, "lon": -74.0060655 }, + { "lat": 40.7225583, "lon": -74.0060823 }, + { "lat": 40.7225879, "lon": -74.0061246 }, + { "lat": 40.7225953, "lon": -74.0061163 }, + { "lat": 40.7226018, "lon": -74.0061091 }, + { "lat": 40.7226208, "lon": -74.0061366 }, + { "lat": 40.7230160, "lon": -74.0060670 }, + { "lat": 40.7229469, "lon": -74.0053861 }, + { "lat": 40.7229562, "lon": -74.0053804 }, + { "lat": 40.7229649, "lon": -74.0053792 }, + { "lat": 40.7229731, "lon": -74.0053804 }, + { "lat": 40.7229827, "lon": -74.0053870 }, + { "lat": 40.7229897, "lon": -74.0053986 }, + { "lat": 40.7230565, "lon": -74.0060905 }, + { "lat": 40.7230556, "lon": -74.0061010 }, + { "lat": 40.7230514, "lon": -74.0061130 }, + { "lat": 40.7230449, "lon": -74.0061226 }, + { "lat": 40.7230411, "lon": -74.0061279 }, + { "lat": 40.7230328, "lon": -74.0061342 }, + { "lat": 40.7230221, "lon": -74.0061377 }, + { "lat": 40.7226325, "lon": -74.0062077 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1221054225, + "bounds": { + "minlat": 40.7050920, + "minlon": -74.0073125, + "maxlat": 40.7052170, + "maxlon": -74.0071940 + }, + "nodes": [ + 11315551952, + 11315551953, + 11315551954, + 11315551948, + 11315551955, + 11315551956, + 11315551957, + 11315551958, + 3752674865, + 11315551959, + 11315551960, + 11315551961, + 7139608176, + 10556966548, + 7139608181, + 11315551951, + 11315551950, + 11315551949, + 10556966545, + 11315551952 + ], + "geometry": [ + { "lat": 40.7052170, "lon": -74.0071940 }, + { "lat": 40.7052124, "lon": -74.0072299 }, + { "lat": 40.7052089, "lon": -74.0072409 }, + { "lat": 40.7051903, "lon": -74.0072652 }, + { "lat": 40.7051556, "lon": -74.0073093 }, + { "lat": 40.7051505, "lon": -74.0073125 }, + { "lat": 40.7051384, "lon": -74.0073087 }, + { "lat": 40.7051298, "lon": -74.0073011 }, + { "lat": 40.7051153, "lon": -74.0072816 }, + { "lat": 40.7051009, "lon": -74.0072630 }, + { "lat": 40.7050985, "lon": -74.0072555 }, + { "lat": 40.7050920, "lon": -74.0072248 }, + { "lat": 40.7051157, "lon": -74.0072532 }, + { "lat": 40.7051277, "lon": -74.0072656 }, + { "lat": 40.7051354, "lon": -74.0072674 }, + { "lat": 40.7051467, "lon": -74.0072689 }, + { "lat": 40.7051594, "lon": -74.0072641 }, + { "lat": 40.7051681, "lon": -74.0072572 }, + { "lat": 40.7051768, "lon": -74.0072463 }, + { "lat": 40.7052170, "lon": -74.0071940 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1221080047, + "bounds": { + "minlat": 40.7048722, + "minlon": -74.0067339, + "maxlat": 40.7052578, + "maxlon": -74.0061717 + }, + "nodes": [ + 2825052667, + 11316393480, + 11316393483, + 7139624440, + 8276468467, + 2825052619, + 2825052657, + 2825052667 + ], + "geometry": [ + { "lat": 40.7052338, "lon": -74.0061717 }, + { "lat": 40.7052453, "lon": -74.0061907 }, + { "lat": 40.7052578, "lon": -74.0062117 }, + { "lat": 40.7049048, "lon": -74.0067339 }, + { "lat": 40.7048901, "lon": -74.0067116 }, + { "lat": 40.7048722, "lon": -74.0066844 }, + { "lat": 40.7051629, "lon": -74.0062684 }, + { "lat": 40.7052338, "lon": -74.0061717 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1221080048, + "bounds": { + "minlat": 40.7053825, + "minlon": -74.0065551, + "maxlat": 40.7056341, + "maxlon": -74.0062534 + }, + "nodes": [ + 8276468571, + 8276468579 + ], + "geometry": [ + { "lat": 40.7053825, "lon": -74.0062534 }, + { "lat": 40.7056341, "lon": -74.0065551 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Pine Street", + "name:ko": "파인 스트리트", + "oneway": "no", + "surface": "concrete", + "wikidata": "Q13845373" + } +}, +{ + "type": "way", + "id": 1221080050, + "bounds": { + "minlat": 40.7048067, + "minlon": -74.0057063, + "maxlat": 40.7050011, + "maxlon": -74.0054108 + }, + "nodes": [ + 11316393484, + 7139608180, + 42429861 + ], + "geometry": [ + { "lat": 40.7050011, "lon": -74.0057063 }, + { "lat": 40.7048524, "lon": -74.0054802 }, + { "lat": 40.7048067, "lon": -74.0054108 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Pine Street", + "name:ko": "파인 스트리트", + "service": "driveway", + "surface": "concrete", + "wikidata": "Q13845373" + } +}, +{ + "type": "way", + "id": 1221080056, + "bounds": { + "minlat": 40.7044616, + "minlon": -74.0060890, + "maxlat": 40.7048463, + "maxlon": -74.0055015 + }, + "nodes": [ + 2825052612, + 11316393524, + 11316393522, + 11316393523, + 4561414018, + 7139624420, + 2825052390, + 3754096487, + 3754096492, + 3754096512, + 3754096521, + 2825052612 + ], + "geometry": [ + { "lat": 40.7048463, "lon": -74.0055326 }, + { "lat": 40.7048326, "lon": -74.0055110 }, + { "lat": 40.7048270, "lon": -74.0055021 }, + { "lat": 40.7048213, "lon": -74.0055015 }, + { "lat": 40.7044616, "lon": -74.0060603 }, + { "lat": 40.7044706, "lon": -74.0060741 }, + { "lat": 40.7044805, "lon": -74.0060890 }, + { "lat": 40.7045788, "lon": -74.0059389 }, + { "lat": 40.7046199, "lon": -74.0058762 }, + { "lat": 40.7047098, "lon": -74.0057389 }, + { "lat": 40.7047507, "lon": -74.0056764 }, + { "lat": 40.7048463, "lon": -74.0055326 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1221080057, + "bounds": { + "minlat": 40.7049723, + "minlon": -74.0062117, + "maxlat": 40.7057131, + "maxlon": -74.0048812 + }, + "nodes": [ + 822475261, + 11316393525, + 11316393526, + 11316393527, + 11316393528, + 11316393529, + 11316393530, + 11031452743, + 11316393531, + 11316393532, + 11316393533, + 11316393534, + 11316393535, + 11316393536, + 11316393537, + 11316393538, + 7138157384, + 11316393539, + 11316393540, + 11316393541, + 11316393542, + 11316393544, + 11316393483, + 11316393480, + 2825052667, + 11316393489, + 2825052644, + 3754109460, + 11316393484, + 11316393491, + 11316393543, + 822475263, + 2659254078, + 11316393492, + 2659254082, + 822475264, + 12018620646, + 822475265, + 2659254085, + 11316393504, + 2659254084, + 822475266, + 822475259, + 2659254080, + 11316393513, + 2659254077, + 822475260, + 2659254073, + 822475261 + ], + "geometry": [ + { "lat": 40.7050195, "lon": -74.0053230 }, + { "lat": 40.7049861, "lon": -74.0052789 }, + { "lat": 40.7049762, "lon": -74.0052655 }, + { "lat": 40.7052068, "lon": -74.0049055 }, + { "lat": 40.7052162, "lon": -74.0048913 }, + { "lat": 40.7052237, "lon": -74.0048850 }, + { "lat": 40.7052307, "lon": -74.0048814 }, + { "lat": 40.7052371, "lon": -74.0048812 }, + { "lat": 40.7052427, "lon": -74.0048818 }, + { "lat": 40.7052524, "lon": -74.0048839 }, + { "lat": 40.7052588, "lon": -74.0048885 }, + { "lat": 40.7052684, "lon": -74.0048998 }, + { "lat": 40.7056758, "lon": -74.0054577 }, + { "lat": 40.7057007, "lon": -74.0054923 }, + { "lat": 40.7057109, "lon": -74.0055153 }, + { "lat": 40.7057131, "lon": -74.0055256 }, + { "lat": 40.7057124, "lon": -74.0055361 }, + { "lat": 40.7057120, "lon": -74.0055471 }, + { "lat": 40.7057082, "lon": -74.0055595 }, + { "lat": 40.7057015, "lon": -74.0055701 }, + { "lat": 40.7056906, "lon": -74.0055863 }, + { "lat": 40.7053005, "lon": -74.0061500 }, + { "lat": 40.7052578, "lon": -74.0062117 }, + { "lat": 40.7052453, "lon": -74.0061907 }, + { "lat": 40.7052338, "lon": -74.0061717 }, + { "lat": 40.7052052, "lon": -74.0061240 }, + { "lat": 40.7050473, "lon": -74.0058604 }, + { "lat": 40.7049723, "lon": -74.0057381 }, + { "lat": 40.7050011, "lon": -74.0057063 }, + { "lat": 40.7050178, "lon": -74.0056889 }, + { "lat": 40.7050391, "lon": -74.0056654 }, + { "lat": 40.7051132, "lon": -74.0057562 }, + { "lat": 40.7052161, "lon": -74.0058825 }, + { "lat": 40.7052541, "lon": -74.0058809 }, + { "lat": 40.7052876, "lon": -74.0058794 }, + { "lat": 40.7053828, "lon": -74.0057446 }, + { "lat": 40.7054389, "lon": -74.0056649 }, + { "lat": 40.7054631, "lon": -74.0056306 }, + { "lat": 40.7055591, "lon": -74.0054945 }, + { "lat": 40.7055579, "lon": -74.0054491 }, + { "lat": 40.7055566, "lon": -74.0054035 }, + { "lat": 40.7054522, "lon": -74.0052755 }, + { "lat": 40.7053680, "lon": -74.0051722 }, + { "lat": 40.7052651, "lon": -74.0050459 }, + { "lat": 40.7052299, "lon": -74.0050474 }, + { "lat": 40.7051944, "lon": -74.0050490 }, + { "lat": 40.7050991, "lon": -74.0051840 }, + { "lat": 40.7050188, "lon": -74.0052979 }, + { "lat": 40.7050195, "lon": -74.0053230 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1221080063, + "bounds": { + "minlat": 40.7055216, + "minlon": -74.0067585, + "maxlat": 40.7056664, + "maxlon": -74.0065539 + }, + "nodes": [ + 11316404980, + 8276468600, + 8276468598, + 11316404981, + 11316404982, + 11316404983, + 11316404987, + 11316404986, + 11316404984, + 11316404985, + 11316404980 + ], + "geometry": [ + { "lat": 40.7055216, "lon": -74.0067571 }, + { "lat": 40.7055496, "lon": -74.0067171 }, + { "lat": 40.7056064, "lon": -74.0066358 }, + { "lat": 40.7056636, "lon": -74.0065539 }, + { "lat": 40.7056664, "lon": -74.0065856 }, + { "lat": 40.7056647, "lon": -74.0065978 }, + { "lat": 40.7056222, "lon": -74.0066578 }, + { "lat": 40.7055644, "lon": -74.0067394 }, + { "lat": 40.7055528, "lon": -74.0067558 }, + { "lat": 40.7055456, "lon": -74.0067585 }, + { "lat": 40.7055216, "lon": -74.0067571 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1221080073, + "bounds": { + "minlat": 40.7060090, + "minlon": -74.0060675, + "maxlat": 40.7060654, + "maxlon": -74.0059646 + }, + "nodes": [ + 11316405025, + 11316405026, + 11316405027, + 11316405035, + 11316405028, + 11316405029, + 11316405030, + 11316405036, + 11316405031, + 7138157381, + 11316405032, + 11316405034, + 11316405033, + 11316405025 + ], + "geometry": [ + { "lat": 40.7060090, "lon": -74.0060633 }, + { "lat": 40.7060315, "lon": -74.0060675 }, + { "lat": 40.7060375, "lon": -74.0060647 }, + { "lat": 40.7060591, "lon": -74.0060335 }, + { "lat": 40.7060639, "lon": -74.0060266 }, + { "lat": 40.7060654, "lon": -74.0060129 }, + { "lat": 40.7060608, "lon": -74.0060003 }, + { "lat": 40.7060420, "lon": -74.0059746 }, + { "lat": 40.7060347, "lon": -74.0059646 }, + { "lat": 40.7060407, "lon": -74.0059763 }, + { "lat": 40.7060430, "lon": -74.0059881 }, + { "lat": 40.7060449, "lon": -74.0060032 }, + { "lat": 40.7060412, "lon": -74.0060157 }, + { "lat": 40.7060090, "lon": -74.0060633 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1221080075, + "bounds": { + "minlat": 40.7061198, + "minlon": -74.0062269, + "maxlat": 40.7062012, + "maxlon": -74.0061386 + }, + "nodes": [ + 11316405037, + 11316405051, + 11316405038, + 11316405039, + 11316405040, + 11316405041, + 11316405042, + 11316405043, + 11316405044, + 11316405045, + 11316405046, + 11316405047, + 11091865557, + 11316405048, + 11316405049, + 11316405050, + 11316405037 + ], + "geometry": [ + { "lat": 40.7062012, "lon": -74.0061765 }, + { "lat": 40.7061835, "lon": -74.0061509 }, + { "lat": 40.7061776, "lon": -74.0061424 }, + { "lat": 40.7061717, "lon": -74.0061386 }, + { "lat": 40.7061659, "lon": -74.0061392 }, + { "lat": 40.7061585, "lon": -74.0061424 }, + { "lat": 40.7061516, "lon": -74.0061485 }, + { "lat": 40.7061216, "lon": -74.0061917 }, + { "lat": 40.7061198, "lon": -74.0061985 }, + { "lat": 40.7061214, "lon": -74.0062269 }, + { "lat": 40.7061560, "lon": -74.0061789 }, + { "lat": 40.7061614, "lon": -74.0061724 }, + { "lat": 40.7061687, "lon": -74.0061698 }, + { "lat": 40.7061755, "lon": -74.0061676 }, + { "lat": 40.7061843, "lon": -74.0061673 }, + { "lat": 40.7061920, "lon": -74.0061697 }, + { "lat": 40.7062012, "lon": -74.0061765 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1221080078, + "bounds": { + "minlat": 40.7061025, + "minlon": -74.0059056, + "maxlat": 40.7061830, + "maxlon": -74.0058187 + }, + "nodes": [ + 11316405052, + 11316405064, + 11316405053, + 11316405054, + 11316405055, + 11316405056, + 11316405057, + 11316405058, + 11316405059, + 11316405060, + 11316405061, + 11091865556, + 11316405062, + 11316405063, + 11091865555, + 11316405052 + ], + "geometry": [ + { "lat": 40.7061025, "lon": -74.0058713 }, + { "lat": 40.7061086, "lon": -74.0058797 }, + { "lat": 40.7061245, "lon": -74.0059015 }, + { "lat": 40.7061328, "lon": -74.0059056 }, + { "lat": 40.7061420, "lon": -74.0059050 }, + { "lat": 40.7061533, "lon": -74.0058966 }, + { "lat": 40.7061812, "lon": -74.0058574 }, + { "lat": 40.7061830, "lon": -74.0058485 }, + { "lat": 40.7061826, "lon": -74.0058187 }, + { "lat": 40.7061525, "lon": -74.0058639 }, + { "lat": 40.7061453, "lon": -74.0058719 }, + { "lat": 40.7061400, "lon": -74.0058767 }, + { "lat": 40.7061292, "lon": -74.0058802 }, + { "lat": 40.7061187, "lon": -74.0058805 }, + { "lat": 40.7061103, "lon": -74.0058773 }, + { "lat": 40.7061025, "lon": -74.0058713 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1221210430, + "bounds": { + "minlat": 40.7171167, + "minlon": -74.0095773, + "maxlat": 40.7172701, + "maxlon": -74.0092256 + }, + "nodes": [ + 11322939786, + 11322939776, + 11322939852, + 11322939851, + 11322939850, + 11322939849, + 11322939848, + 11322939847, + 11322939846, + 11322939845, + 11322939844, + 11322939843, + 11322939842, + 11322939841, + 11322939840, + 11322939839, + 11322939838, + 11322939837, + 11322939836, + 11322939835, + 11322939834, + 11322939833, + 11322939832, + 11322939864, + 11322939863, + 8304498489, + 11322939778, + 11322939800, + 11322939799, + 11322939798, + 11322939797, + 11322939796, + 11322939795, + 11322939794, + 11322939793, + 11322939792, + 11322939791, + 11322939790, + 11322939789, + 11322939788, + 11322939787, + 11322939786 + ], + "geometry": [ + { "lat": 40.7171490, "lon": -74.0092256 }, + { "lat": 40.7171325, "lon": -74.0092275 }, + { "lat": 40.7171167, "lon": -74.0092315 }, + { "lat": 40.7171236, "lon": -74.0092518 }, + { "lat": 40.7171343, "lon": -74.0092692 }, + { "lat": 40.7171490, "lon": -74.0092859 }, + { "lat": 40.7171614, "lon": -74.0092993 }, + { "lat": 40.7171693, "lon": -74.0093130 }, + { "lat": 40.7171775, "lon": -74.0093333 }, + { "lat": 40.7171822, "lon": -74.0093579 }, + { "lat": 40.7171852, "lon": -74.0093825 }, + { "lat": 40.7171761, "lon": -74.0093824 }, + { "lat": 40.7171753, "lon": -74.0094008 }, + { "lat": 40.7171756, "lon": -74.0094250 }, + { "lat": 40.7171778, "lon": -74.0094464 }, + { "lat": 40.7171811, "lon": -74.0094683 }, + { "lat": 40.7171858, "lon": -74.0094857 }, + { "lat": 40.7171927, "lon": -74.0095031 }, + { "lat": 40.7172049, "lon": -74.0095234 }, + { "lat": 40.7172211, "lon": -74.0095411 }, + { "lat": 40.7172395, "lon": -74.0095569 }, + { "lat": 40.7172512, "lon": -74.0095670 }, + { "lat": 40.7172584, "lon": -74.0095569 }, + { "lat": 40.7172651, "lon": -74.0095665 }, + { "lat": 40.7172701, "lon": -74.0095773 }, + { "lat": 40.7172603, "lon": -74.0094911 }, + { "lat": 40.7172537, "lon": -74.0094331 }, + { "lat": 40.7172460, "lon": -74.0094328 }, + { "lat": 40.7172376, "lon": -74.0094299 }, + { "lat": 40.7172290, "lon": -74.0094248 }, + { "lat": 40.7172347, "lon": -74.0094114 }, + { "lat": 40.7172254, "lon": -74.0093973 }, + { "lat": 40.7172186, "lon": -74.0093821 }, + { "lat": 40.7172142, "lon": -74.0093608 }, + { "lat": 40.7172101, "lon": -74.0093308 }, + { "lat": 40.7172057, "lon": -74.0093063 }, + { "lat": 40.7171987, "lon": -74.0092857 }, + { "lat": 40.7171896, "lon": -74.0092714 }, + { "lat": 40.7171835, "lon": -74.0092776 }, + { "lat": 40.7171679, "lon": -74.0092570 }, + { "lat": 40.7171566, "lon": -74.0092411 }, + { "lat": 40.7171490, "lon": -74.0092256 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1221210431, + "bounds": { + "minlat": 40.7170321, + "minlon": -74.0096514, + "maxlat": 40.7172931, + "maxlon": -74.0091629 + }, + "nodes": [ + 11322939856, + 1602291349, + 11322693553, + 11322693559, + 11322693554, + 11322693552, + 11322693560, + 11322693551, + 11322693550, + 11322693546, + 11322693548, + 11322693562, + 11322693549, + 11322693547, + 11322693561, + 1602291340, + 1602291353, + 8304498484, + 11322693557, + 8304498485, + 11322693558, + 11322693555, + 11322693556, + 1602291342, + 11322939857, + 11322939858, + 11322939859, + 11322939860, + 11322939861, + 11322939862, + 11322939863, + 8304498489, + 11322939778, + 11322939779, + 11322939780, + 11322939781, + 11322939782, + 11322939783, + 11322939784, + 11322939785, + 11322939786, + 11322939776, + 11322939852, + 11322939853, + 11322939854, + 11322939855, + 11322939856 + ], + "geometry": [ + { "lat": 40.7170408, "lon": -74.0092540 }, + { "lat": 40.7170363, "lon": -74.0092444 }, + { "lat": 40.7170321, "lon": -74.0092278 }, + { "lat": 40.7170322, "lon": -74.0092200 }, + { "lat": 40.7170323, "lon": -74.0092151 }, + { "lat": 40.7170369, "lon": -74.0092033 }, + { "lat": 40.7170399, "lon": -74.0091997 }, + { "lat": 40.7170457, "lon": -74.0091926 }, + { "lat": 40.7170569, "lon": -74.0091843 }, + { "lat": 40.7172013, "lon": -74.0091636 }, + { "lat": 40.7172163, "lon": -74.0091629 }, + { "lat": 40.7172254, "lon": -74.0091654 }, + { "lat": 40.7172304, "lon": -74.0091695 }, + { "lat": 40.7172402, "lon": -74.0091816 }, + { "lat": 40.7172438, "lon": -74.0091932 }, + { "lat": 40.7172455, "lon": -74.0091989 }, + { "lat": 40.7172931, "lon": -74.0095834 }, + { "lat": 40.7172911, "lon": -74.0096089 }, + { "lat": 40.7172813, "lon": -74.0096314 }, + { "lat": 40.7172691, "lon": -74.0096453 }, + { "lat": 40.7172554, "lon": -74.0096506 }, + { "lat": 40.7172402, "lon": -74.0096514 }, + { "lat": 40.7172268, "lon": -74.0096439 }, + { "lat": 40.7172149, "lon": -74.0096259 }, + { "lat": 40.7172281, "lon": -74.0096314 }, + { "lat": 40.7172411, "lon": -74.0096314 }, + { "lat": 40.7172537, "lon": -74.0096284 }, + { "lat": 40.7172617, "lon": -74.0096209 }, + { "lat": 40.7172684, "lon": -74.0096081 }, + { "lat": 40.7172716, "lon": -74.0095908 }, + { "lat": 40.7172701, "lon": -74.0095773 }, + { "lat": 40.7172603, "lon": -74.0094911 }, + { "lat": 40.7172537, "lon": -74.0094331 }, + { "lat": 40.7172358, "lon": -74.0092700 }, + { "lat": 40.7172326, "lon": -74.0092578 }, + { "lat": 40.7172271, "lon": -74.0092469 }, + { "lat": 40.7172191, "lon": -74.0092357 }, + { "lat": 40.7172084, "lon": -74.0092259 }, + { "lat": 40.7171967, "lon": -74.0092220 }, + { "lat": 40.7171860, "lon": -74.0092216 }, + { "lat": 40.7171490, "lon": -74.0092256 }, + { "lat": 40.7171325, "lon": -74.0092275 }, + { "lat": 40.7171167, "lon": -74.0092315 }, + { "lat": 40.7170854, "lon": -74.0092351 }, + { "lat": 40.7170698, "lon": -74.0092397 }, + { "lat": 40.7170551, "lon": -74.0092449 }, + { "lat": 40.7170408, "lon": -74.0092540 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1221214221, + "bounds": { + "minlat": 40.7235089, + "minlon": -74.0078345, + "maxlat": 40.7236265, + "maxlon": -74.0076727 + }, + "nodes": [ + 11322962632, + 8526690247, + 11322962633, + 11322962634, + 11322962635, + 11322962636, + 11322962637, + 11322962638, + 11322962639, + 8526690240, + 11322962640, + 11322962641, + 11322962642, + 11322962643, + 11322962644, + 11322962645, + 11322962646, + 11322962632 + ], + "geometry": [ + { "lat": 40.7236051, "lon": -74.0078302 }, + { "lat": 40.7235774, "lon": -74.0077913 }, + { "lat": 40.7235113, "lon": -74.0076976 }, + { "lat": 40.7235089, "lon": -74.0076899 }, + { "lat": 40.7235093, "lon": -74.0076820 }, + { "lat": 40.7235125, "lon": -74.0076754 }, + { "lat": 40.7235170, "lon": -74.0076727 }, + { "lat": 40.7235226, "lon": -74.0076738 }, + { "lat": 40.7235278, "lon": -74.0076762 }, + { "lat": 40.7235962, "lon": -74.0077696 }, + { "lat": 40.7236223, "lon": -74.0078056 }, + { "lat": 40.7236253, "lon": -74.0078107 }, + { "lat": 40.7236265, "lon": -74.0078167 }, + { "lat": 40.7236259, "lon": -74.0078244 }, + { "lat": 40.7236223, "lon": -74.0078310 }, + { "lat": 40.7236163, "lon": -74.0078345 }, + { "lat": 40.7236103, "lon": -74.0078345 }, + { "lat": 40.7236051, "lon": -74.0078302 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1221214222, + "bounds": { + "minlat": 40.7217241, + "minlon": -74.0067668, + "maxlat": 40.7219980, + "maxlon": -74.0065419 + }, + "nodes": [ + 246885882, + 1195433559, + 1701898738, + 4890535521, + 246885883, + 246885884, + 562073779, + 42424258 + ], + "geometry": [ + { "lat": 40.7219980, "lon": -74.0065419 }, + { "lat": 40.7219453, "lon": -74.0065638 }, + { "lat": 40.7218938, "lon": -74.0065913 }, + { "lat": 40.7218854, "lon": -74.0065971 }, + { "lat": 40.7218487, "lon": -74.0066222 }, + { "lat": 40.7218072, "lon": -74.0066608 }, + { "lat": 40.7217593, "lon": -74.0067161 }, + { "lat": 40.7217241, "lon": -74.0067668 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxaxles": "3", + "maxspeed": "35 mph", + "name": "Holland Tunnel Rotary", + "name:etymology:wikidata": "Q5133008", + "name:ko": "홀랜드 터널", + "oneway": "yes", + "ref": "I 78", + "sidewalk": "no", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "slight_left|slight_left|slight_right", + "unsigned_ref": "I 78" + } +}, +{ + "type": "way", + "id": 1221214223, + "bounds": { + "minlat": 40.7234706, + "minlon": -74.0079031, + "maxlat": 40.7235492, + "maxlon": -74.0078146 + }, + "nodes": [ + 11322962649, + 8526690242, + 11322962650, + 11322962651, + 11322962652, + 11322962653, + 8526690228, + 11322962654, + 11322962655, + 11322962656, + 11322962657, + 8526690234, + 11322962658, + 11322962659, + 11322962660, + 11322962649 + ], + "geometry": [ + { "lat": 40.7235459, "lon": -74.0078862 }, + { "lat": 40.7235268, "lon": -74.0078903 }, + { "lat": 40.7234821, "lon": -74.0079022 }, + { "lat": 40.7234754, "lon": -74.0079031 }, + { "lat": 40.7234708, "lon": -74.0078988 }, + { "lat": 40.7234706, "lon": -74.0078899 }, + { "lat": 40.7234893, "lon": -74.0078460 }, + { "lat": 40.7234980, "lon": -74.0078207 }, + { "lat": 40.7235009, "lon": -74.0078161 }, + { "lat": 40.7235057, "lon": -74.0078146 }, + { "lat": 40.7235098, "lon": -74.0078187 }, + { "lat": 40.7235298, "lon": -74.0078464 }, + { "lat": 40.7235475, "lon": -74.0078706 }, + { "lat": 40.7235492, "lon": -74.0078750 }, + { "lat": 40.7235492, "lon": -74.0078816 }, + { "lat": 40.7235459, "lon": -74.0078862 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1221214235, + "bounds": { + "minlat": 40.7238815, + "minlon": -74.0072828, + "maxlat": 40.7239995, + "maxlon": -74.0071901 + }, + "nodes": [ + 4602410644, + 12993639386, + 11322971538 + ], + "geometry": [ + { "lat": 40.7238815, "lon": -74.0072828 }, + { "lat": 40.7239475, "lon": -74.0072316 }, + { "lat": 40.7239995, "lon": -74.0071901 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "25 mph", + "oneway": "no", + "service": "driveway", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1221214236, + "bounds": { + "minlat": 40.7238349, + "minlon": -74.0069607, + "maxlat": 40.7239735, + "maxlon": -74.0068332 + }, + "nodes": [ + 11322971536, + 12993639388, + 4602410642 + ], + "geometry": [ + { "lat": 40.7239735, "lon": -74.0069607 }, + { "lat": 40.7239159, "lon": -74.0069083 }, + { "lat": 40.7238349, "lon": -74.0068332 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "25 mph", + "oneway": "no", + "service": "driveway", + "source": "Bing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1221357802, + "bounds": { + "minlat": 40.7523037, + "minlon": -74.0017531, + "maxlat": 40.7523765, + "maxlon": -74.0016999 + }, + "nodes": [ + 11327620169, + 11512412923, + 11327620171, + 11327602968 + ], + "geometry": [ + { "lat": 40.7523765, "lon": -74.0016999 }, + { "lat": 40.7523399, "lon": -74.0017259 }, + { "lat": 40.7523177, "lon": -74.0017416 }, + { "lat": 40.7523037, "lon": -74.0017531 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1221392602, + "bounds": { + "minlat": 40.7080183, + "minlon": -74.0036265, + "maxlat": 40.7081696, + "maxlon": -74.0034674 + }, + "nodes": [ + 11327964529, + 11327964530, + 11327964531, + 10309622476, + 11327964532, + 11327964533, + 10311946323, + 11327964534, + 11327964535, + 11327964536, + 10311946324, + 11327964537, + 11327964538, + 10309622472, + 11327964529 + ], + "geometry": [ + { "lat": 40.7080183, "lon": -74.0036265 }, + { "lat": 40.7080309, "lon": -74.0035847 }, + { "lat": 40.7080343, "lon": -74.0035785 }, + { "lat": 40.7080451, "lon": -74.0035671 }, + { "lat": 40.7080733, "lon": -74.0035410 }, + { "lat": 40.7081099, "lon": -74.0035040 }, + { "lat": 40.7081321, "lon": -74.0034806 }, + { "lat": 40.7081377, "lon": -74.0034753 }, + { "lat": 40.7081411, "lon": -74.0034728 }, + { "lat": 40.7081696, "lon": -74.0034674 }, + { "lat": 40.7081418, "lon": -74.0035035 }, + { "lat": 40.7081120, "lon": -74.0035358 }, + { "lat": 40.7080810, "lon": -74.0035671 }, + { "lat": 40.7080581, "lon": -74.0035888 }, + { "lat": 40.7080183, "lon": -74.0036265 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1222160772, + "bounds": { + "minlat": 40.7475015, + "minlon": -74.0111662, + "maxlat": 40.7477235, + "maxlon": -74.0091213 + }, + "nodes": [ + 11335187204, + 11925988621, + 11925988616, + 11925988615 + ], + "geometry": [ + { "lat": 40.7477235, "lon": -74.0111662 }, + { "lat": 40.7476791, "lon": -74.0107510 }, + { "lat": 40.7475337, "lon": -74.0093911 }, + { "lat": 40.7475015, "lon": -74.0091213 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1222160773, + "bounds": { + "minlat": 40.7464824, + "minlon": -74.0111499, + "maxlat": 40.7468316, + "maxlon": -74.0084583 + }, + "nodes": [ + 11925988623, + 11925988629, + 11925988622, + 11925988626, + 11925988627, + 11335187205 + ], + "geometry": [ + { "lat": 40.7464824, "lon": -74.0084583 }, + { "lat": 40.7465724, "lon": -74.0092337 }, + { "lat": 40.7465724, "lon": -74.0092898 }, + { "lat": 40.7466359, "lon": -74.0093874 }, + { "lat": 40.7468021, "lon": -74.0108840 }, + { "lat": 40.7468316, "lon": -74.0111499 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1222160774, + "bounds": { + "minlat": 40.7454552, + "minlon": -74.0093096, + "maxlat": 40.7455315, + "maxlon": -74.0086650 + }, + "nodes": [ + 11925988632, + 11925988631, + 11925988646, + 11335187206 + ], + "geometry": [ + { "lat": 40.7454552, "lon": -74.0086650 }, + { "lat": 40.7454879, "lon": -74.0087429 }, + { "lat": 40.7455297, "lon": -74.0092440 }, + { "lat": 40.7455315, "lon": -74.0093096 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1222181284, + "bounds": { + "minlat": 40.8429679, + "minlon": -74.0096715, + "maxlat": 40.8441304, + "maxlon": -74.0096625 + }, + "nodes": [ + 11335338412, + 11335338413 + ], + "geometry": [ + { "lat": 40.8441304, "lon": -74.0096625 }, + { "lat": 40.8429679, "lon": -74.0096715 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1222223960, + "bounds": { + "minlat": 40.8213370, + "minlon": -73.9212616, + "maxlat": 40.8213722, + "maxlon": -73.9211179 + }, + "nodes": [ + 11335643764, + 11335643765 + ], + "geometry": [ + { "lat": 40.8213722, "lon": -73.9212616 }, + { "lat": 40.8213370, "lon": -73.9211179 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1222223961, + "bounds": { + "minlat": 40.8213605, + "minlon": -73.9210938, + "maxlat": 40.8213929, + "maxlon": -73.9209521 + }, + "nodes": [ + 11335643755, + 11335643757, + 12038479005, + 11335643756 + ], + "geometry": [ + { "lat": 40.8213929, "lon": -73.9210938 }, + { "lat": 40.8213882, "lon": -73.9210739 }, + { "lat": 40.8213847, "lon": -73.9210585 }, + { "lat": 40.8213605, "lon": -73.9209521 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1222223962, + "bounds": { + "minlat": 40.8214361, + "minlon": -73.9211782, + "maxlat": 40.8214600, + "maxlon": -73.9210739 + }, + "nodes": [ + 11335643758, + 11335643759 + ], + "geometry": [ + { "lat": 40.8214361, "lon": -73.9210739 }, + { "lat": 40.8214600, "lon": -73.9211782 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1222223963, + "bounds": { + "minlat": 40.8213940, + "minlon": -73.9213064, + "maxlat": 40.8214368, + "maxlon": -73.9212563 + }, + "nodes": [ + 11335643761, + 11335643762 + ], + "geometry": [ + { "lat": 40.8214368, "lon": -73.9212563 }, + { "lat": 40.8213940, "lon": -73.9213064 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1222223964, + "bounds": { + "minlat": 40.8213322, + "minlon": -73.9210986, + "maxlat": 40.8213882, + "maxlon": -73.9210739 + }, + "nodes": [ + 11335643757, + 11335643763 + ], + "geometry": [ + { "lat": 40.8213882, "lon": -73.9210739 }, + { "lat": 40.8213322, "lon": -73.9210986 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1222223965, + "bounds": { + "minlat": 40.8214259, + "minlon": -73.9213126, + "maxlat": 40.8214741, + "maxlon": -73.9212349 + }, + "nodes": [ + 11335643753, + 11335643761, + 11335643754 + ], + "geometry": [ + { "lat": 40.8214741, "lon": -73.9213126 }, + { "lat": 40.8214368, "lon": -73.9212563 }, + { "lat": 40.8214259, "lon": -73.9212349 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1222223966, + "bounds": { + "minlat": 40.8213929, + "minlon": -73.9212349, + "maxlat": 40.8214259, + "maxlon": -73.9210938 + }, + "nodes": [ + 11335643754, + 11335643755 + ], + "geometry": [ + { "lat": 40.8214259, "lon": -73.9212349 }, + { "lat": 40.8213929, "lon": -73.9210938 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1222223967, + "bounds": { + "minlat": 40.8213722, + "minlon": -73.9213703, + "maxlat": 40.8214328, + "maxlon": -73.9212616 + }, + "nodes": [ + 11335643750, + 11335643762, + 11335643751, + 11335643764 + ], + "geometry": [ + { "lat": 40.8214328, "lon": -73.9213703 }, + { "lat": 40.8213940, "lon": -73.9213064 }, + { "lat": 40.8213757, "lon": -73.9212763 }, + { "lat": 40.8213722, "lon": -73.9212616 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1222223968, + "bounds": { + "minlat": 40.8213025, + "minlon": -73.9211179, + "maxlat": 40.8213370, + "maxlon": -73.9209790 + }, + "nodes": [ + 11335643765, + 11335643763, + 12038479004, + 11335643752 + ], + "geometry": [ + { "lat": 40.8213370, "lon": -73.9211179 }, + { "lat": 40.8213322, "lon": -73.9210986 }, + { "lat": 40.8213285, "lon": -73.9210837 }, + { "lat": 40.8213025, "lon": -73.9209790 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1222223969, + "bounds": { + "minlat": 40.8214368, + "minlon": -73.9212563, + "maxlat": 40.8214617, + "maxlon": -73.9211782 + }, + "nodes": [ + 11335643759, + 11335643760, + 11335643761 + ], + "geometry": [ + { "lat": 40.8214600, "lon": -73.9211782 }, + { "lat": 40.8214617, "lon": -73.9212128 }, + { "lat": 40.8214368, "lon": -73.9212563 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1222223970, + "bounds": { + "minlat": 40.8213882, + "minlon": -73.9210739, + "maxlat": 40.8214361, + "maxlon": -73.9210739 + }, + "nodes": [ + 11335643757, + 11335643758 + ], + "geometry": [ + { "lat": 40.8213882, "lon": -73.9210739 }, + { "lat": 40.8214361, "lon": -73.9210739 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1222356565, + "bounds": { + "minlat": 40.7616758, + "minlon": -73.9776024, + "maxlat": 40.7628134, + "maxlon": -73.9749271 + }, + "nodes": [ + 42440951, + 10610255910, + 11336810277 + ], + "geometry": [ + { "lat": 40.7616758, "lon": -73.9749271 }, + { "lat": 40.7617239, "lon": -73.9750447 }, + { "lat": 40.7628134, "lon": -73.9776024 } + ], + "tags": { + "alt_name": "West 55 Street", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "name": "West 55th Street", + "name:ru": "Западная 55-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1222356566, + "bounds": { + "minlat": 40.7628134, + "minlon": -73.9781410, + "maxlat": 40.7630416, + "maxlon": -73.9776024 + }, + "nodes": [ + 11336810277, + 3971302314, + 42430375 + ], + "geometry": [ + { "lat": 40.7628134, "lon": -73.9776024 }, + { "lat": 40.7629865, "lon": -73.9780088 }, + { "lat": 40.7630416, "lon": -73.9781410 } + ], + "tags": { + "alt_name": "West 55 Street", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "2", + "name": "West 55th Street", + "name:ru": "Западная 55-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "width": "9", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1222706004, + "bounds": { + "minlat": 40.7388348, + "minlon": -74.0096946, + "maxlat": 40.7393504, + "maxlon": -74.0093640 + }, + "nodes": [ + 4872626644, + 12405352476, + 12986771000, + 12986793001, + 12986770999, + 12986770998, + 12986793002, + 12986793003, + 11341028955, + 11341028956, + 11341028950, + 11341028953, + 3874650218, + 11310311807, + 4872626644 + ], + "geometry": [ + { "lat": 40.7393030, "lon": -74.0095072 }, + { "lat": 40.7393239, "lon": -74.0095072 }, + { "lat": 40.7393298, "lon": -74.0093640 }, + { "lat": 40.7393504, "lon": -74.0093939 }, + { "lat": 40.7393473, "lon": -74.0095062 }, + { "lat": 40.7393482, "lon": -74.0096253 }, + { "lat": 40.7393229, "lon": -74.0096805 }, + { "lat": 40.7392660, "lon": -74.0096946 }, + { "lat": 40.7392256, "lon": -74.0096871 }, + { "lat": 40.7390708, "lon": -74.0096610 }, + { "lat": 40.7389039, "lon": -74.0096819 }, + { "lat": 40.7388348, "lon": -74.0095959 }, + { "lat": 40.7388886, "lon": -74.0095471 }, + { "lat": 40.7392072, "lon": -74.0095164 }, + { "lat": 40.7393030, "lon": -74.0095072 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1222906816, + "bounds": { + "minlat": 40.7086334, + "minlon": -74.0042454, + "maxlat": 40.7087540, + "maxlon": -74.0039541 + }, + "nodes": [ + 11347777575, + 11343006815, + 42433334 + ], + "geometry": [ + { "lat": 40.7086334, "lon": -74.0042454 }, + { "lat": 40.7087276, "lon": -74.0040179 }, + { "lat": 40.7087540, "lon": -74.0039541 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Cliff Street", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1222906854, + "bounds": { + "minlat": 40.7085166, + "minlon": -74.0029821, + "maxlat": 40.7085675, + "maxlon": -74.0029043 + }, + "nodes": [ + 11343006794, + 5446626916 + ], + "geometry": [ + { "lat": 40.7085675, "lon": -74.0029821 }, + { "lat": 40.7085166, "lon": -74.0029043 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "motor_vehicle": "private", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1222906859, + "bounds": { + "minlat": 40.7088019, + "minlon": -74.0027090, + "maxlat": 40.7089629, + "maxlon": -74.0025019 + }, + "nodes": [ + 11343006807, + 9678321228, + 11343006808, + 9678321227, + 11343006809, + 11343006810, + 11343006811, + 9678321224, + 11343006812, + 3898690194, + 11343006813, + 11343006814, + 11343006807 + ], + "geometry": [ + { "lat": 40.7088019, "lon": -74.0027090 }, + { "lat": 40.7088420, "lon": -74.0026628 }, + { "lat": 40.7088853, "lon": -74.0026074 }, + { "lat": 40.7089389, "lon": -74.0025363 }, + { "lat": 40.7089629, "lon": -74.0025034 }, + { "lat": 40.7089412, "lon": -74.0025019 }, + { "lat": 40.7089343, "lon": -74.0025038 }, + { "lat": 40.7089263, "lon": -74.0025166 }, + { "lat": 40.7088735, "lon": -74.0025860 }, + { "lat": 40.7088298, "lon": -74.0026444 }, + { "lat": 40.7088110, "lon": -74.0026657 }, + { "lat": 40.7088071, "lon": -74.0026749 }, + { "lat": 40.7088019, "lon": -74.0027090 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1222937570, + "bounds": { + "minlat": 40.8026790, + "minlon": -73.9383073, + "maxlat": 40.8028882, + "maxlon": -73.9381637 + }, + "nodes": [ + 11343336392, + 11343336390 + ], + "geometry": [ + { "lat": 40.8028882, "lon": -73.9381637 }, + { "lat": 40.8026790, "lon": -73.9383073 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1222937572, + "bounds": { + "minlat": 40.8028882, + "minlon": -73.9381637, + "maxlat": 40.8029639, + "maxlon": -73.9381116 + }, + "nodes": [ + 11343336389, + 11343336391, + 11343336392 + ], + "geometry": [ + { "lat": 40.8029639, "lon": -73.9381116 }, + { "lat": 40.8029099, "lon": -73.9381487 }, + { "lat": 40.8028882, "lon": -73.9381637 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1223121946, + "bounds": { + "minlat": 40.7098764, + "minlon": -74.0027375, + "maxlat": 40.7101038, + "maxlon": -74.0024423 + }, + "nodes": [ + 11345710770, + 11345710772, + 11345710771 + ], + "geometry": [ + { "lat": 40.7101038, "lon": -74.0024423 }, + { "lat": 40.7100481, "lon": -74.0025110 }, + { "lat": 40.7098764, "lon": -74.0027375 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1223381167, + "bounds": { + "minlat": 40.7097856, + "minlon": -74.0047980, + "maxlat": 40.7098568, + "maxlon": -74.0046859 + }, + "nodes": [ + 11347850258, + 11347850260, + 11350133524, + 11347850259 + ], + "geometry": [ + { "lat": 40.7098568, "lon": -74.0047980 }, + { "lat": 40.7098476, "lon": -74.0047817 }, + { "lat": 40.7098385, "lon": -74.0047680 }, + { "lat": 40.7097856, "lon": -74.0046859 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1223381176, + "bounds": { + "minlat": 40.7104325, + "minlon": -74.0055284, + "maxlat": 40.7109403, + "maxlon": -74.0050681 + }, + "nodes": [ + 11347850291, + 11347850319, + 7477081383, + 11347850299, + 11347850300, + 11347850301, + 11347850323, + 11347850302, + 11347850303, + 11347850304, + 11347850322, + 11347850305, + 7477097785, + 11347850306, + 11347850307, + 11347850308, + 7477081378, + 11347850309, + 11347850334, + 11347850316, + 1253168805, + 11347850311, + 11347850312, + 11347850313, + 11347850314, + 11347850340, + 11347850286, + 11347850285, + 11347850284, + 11347850283, + 11347850315, + 11347850297, + 11347850296, + 11347850295, + 11347850294, + 11347850293, + 11347850337, + 11347850339, + 11347850336, + 11347850338, + 11347850335, + 11347850292, + 11347850291 + ], + "geometry": [ + { "lat": 40.7104471, "lon": -74.0055284 }, + { "lat": 40.7104402, "lon": -74.0055190 }, + { "lat": 40.7104325, "lon": -74.0055085 }, + { "lat": 40.7104880, "lon": -74.0054139 }, + { "lat": 40.7104953, "lon": -74.0054200 }, + { "lat": 40.7105299, "lon": -74.0053777 }, + { "lat": 40.7105347, "lon": -74.0053852 }, + { "lat": 40.7105402, "lon": -74.0053929 }, + { "lat": 40.7106101, "lon": -74.0053096 }, + { "lat": 40.7106039, "lon": -74.0052919 }, + { "lat": 40.7106186, "lon": -74.0052761 }, + { "lat": 40.7106354, "lon": -74.0052582 }, + { "lat": 40.7107336, "lon": -74.0052148 }, + { "lat": 40.7107646, "lon": -74.0051847 }, + { "lat": 40.7107803, "lon": -74.0051916 }, + { "lat": 40.7108279, "lon": -74.0051052 }, + { "lat": 40.7108094, "lon": -74.0050856 }, + { "lat": 40.7108185, "lon": -74.0050681 }, + { "lat": 40.7108741, "lon": -74.0051279 }, + { "lat": 40.7109100, "lon": -74.0051661 }, + { "lat": 40.7109403, "lon": -74.0051992 }, + { "lat": 40.7109059, "lon": -74.0052319 }, + { "lat": 40.7108928, "lon": -74.0052112 }, + { "lat": 40.7108007, "lon": -74.0053033 }, + { "lat": 40.7108111, "lon": -74.0053211 }, + { "lat": 40.7107923, "lon": -74.0053388 }, + { "lat": 40.7107750, "lon": -74.0053550 }, + { "lat": 40.7107653, "lon": -74.0053390 }, + { "lat": 40.7107234, "lon": -74.0053770 }, + { "lat": 40.7107315, "lon": -74.0053958 }, + { "lat": 40.7106713, "lon": -74.0054523 }, + { "lat": 40.7106707, "lon": -74.0054485 }, + { "lat": 40.7106707, "lon": -74.0054402 }, + { "lat": 40.7106733, "lon": -74.0054248 }, + { "lat": 40.7106828, "lon": -74.0054088 }, + { "lat": 40.7107047, "lon": -74.0053853 }, + { "lat": 40.7106638, "lon": -74.0053459 }, + { "lat": 40.7106979, "lon": -74.0053515 }, + { "lat": 40.7107107, "lon": -74.0053022 }, + { "lat": 40.7106978, "lon": -74.0052920 }, + { "lat": 40.7106626, "lon": -74.0053446 }, + { "lat": 40.7106501, "lon": -74.0053321 }, + { "lat": 40.7104471, "lon": -74.0055284 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1223381190, + "bounds": { + "minlat": 40.7104144, + "minlon": -74.0056176, + "maxlat": 40.7104739, + "maxlon": -74.0055584 + }, + "nodes": [ + 11347850345, + 8281922061, + 42448593 + ], + "geometry": [ + { "lat": 40.7104739, "lon": -74.0055584 }, + { "lat": 40.7104608, "lon": -74.0055711 }, + { "lat": 40.7104144, "lon": -74.0056176 } + ], + "tags": { + "bicycle": "dismount", + "foot": "no", + "highway": "service", + "lit": "yes", + "motor_vehicle": "destination", + "name": "William Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "윌리엄 스트리트", + "oneway": "no", + "service": "driveway", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1223381193, + "bounds": { + "minlat": 40.7104992, + "minlon": -74.0055994, + "maxlat": 40.7106252, + "maxlon": -74.0054914 + }, + "nodes": [ + 11347850290, + 11347850348, + 1253168808, + 11347850346, + 9979333116, + 11347850349, + 11347850287, + 11347850288, + 11347850289, + 11347850290 + ], + "geometry": [ + { "lat": 40.7104992, "lon": -74.0055827 }, + { "lat": 40.7105067, "lon": -74.0055907 }, + { "lat": 40.7105149, "lon": -74.0055994 }, + { "lat": 40.7105382, "lon": -74.0055772 }, + { "lat": 40.7105671, "lon": -74.0055501 }, + { "lat": 40.7106252, "lon": -74.0054956 }, + { "lat": 40.7106220, "lon": -74.0054938 }, + { "lat": 40.7106073, "lon": -74.0054914 }, + { "lat": 40.7105930, "lon": -74.0054945 }, + { "lat": 40.7104992, "lon": -74.0055827 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1223381197, + "bounds": { + "minlat": 40.7105299, + "minlon": -74.0053929, + "maxlat": 40.7107336, + "maxlon": -74.0051726 + }, + "nodes": [ + 7477097785, + 11347850255, + 11347850332, + 7477081384, + 11347850256, + 11347850352, + 11347850351, + 11347850301, + 11347850323, + 11347850302, + 11347850303, + 11347850304, + 11347850322, + 11347850305, + 7477097785 + ], + "geometry": [ + { "lat": 40.7107336, "lon": -74.0052148 }, + { "lat": 40.7106946, "lon": -74.0051726 }, + { "lat": 40.7106087, "lon": -74.0052551 }, + { "lat": 40.7105909, "lon": -74.0052722 }, + { "lat": 40.7105794, "lon": -74.0052578 }, + { "lat": 40.7105608, "lon": -74.0052897 }, + { "lat": 40.7105826, "lon": -74.0053096 }, + { "lat": 40.7105299, "lon": -74.0053777 }, + { "lat": 40.7105347, "lon": -74.0053852 }, + { "lat": 40.7105402, "lon": -74.0053929 }, + { "lat": 40.7106101, "lon": -74.0053096 }, + { "lat": 40.7106039, "lon": -74.0052919 }, + { "lat": 40.7106186, "lon": -74.0052761 }, + { "lat": 40.7106354, "lon": -74.0052582 }, + { "lat": 40.7107336, "lon": -74.0052148 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1223524063, + "bounds": { + "minlat": 40.7114116, + "minlon": -74.0057003, + "maxlat": 40.7114677, + "maxlon": -74.0056076 + }, + "nodes": [ + 11349151113, + 11349151115, + 11350133500, + 11349151114 + ], + "geometry": [ + { "lat": 40.7114116, "lon": -74.0057003 }, + { "lat": 40.7114252, "lon": -74.0056778 }, + { "lat": 40.7114398, "lon": -74.0056536 }, + { "lat": 40.7114677, "lon": -74.0056076 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1223577698, + "bounds": { + "minlat": 40.7114536, + "minlon": -74.0044542, + "maxlat": 40.7116372, + "maxlon": -74.0041779 + }, + "nodes": [ + 11349528519, + 11349528520, + 11349528521, + 9369021509, + 11349528522, + 11349528523, + 11349528524, + 11349528525, + 11349528526, + 11349528527, + 11349528528, + 11349528529, + 11349528537, + 11349528530, + 11349528531, + 11349528532, + 11349528533, + 11349528518, + 11349528534, + 11349528535, + 11349528536, + 11349528519 + ], + "geometry": [ + { "lat": 40.7114875, "lon": -74.0042955 }, + { "lat": 40.7114551, "lon": -74.0043305 }, + { "lat": 40.7114536, "lon": -74.0043369 }, + { "lat": 40.7115193, "lon": -74.0044407 }, + { "lat": 40.7115282, "lon": -74.0044535 }, + { "lat": 40.7115327, "lon": -74.0044542 }, + { "lat": 40.7115572, "lon": -74.0044245 }, + { "lat": 40.7115832, "lon": -74.0043909 }, + { "lat": 40.7116050, "lon": -74.0043452 }, + { "lat": 40.7116151, "lon": -74.0043138 }, + { "lat": 40.7116260, "lon": -74.0042668 }, + { "lat": 40.7116372, "lon": -74.0042100 }, + { "lat": 40.7116313, "lon": -74.0041931 }, + { "lat": 40.7116260, "lon": -74.0041779 }, + { "lat": 40.7115792, "lon": -74.0043082 }, + { "lat": 40.7115683, "lon": -74.0043272 }, + { "lat": 40.7115572, "lon": -74.0043395 }, + { "lat": 40.7115430, "lon": -74.0043443 }, + { "lat": 40.7115330, "lon": -74.0043442 }, + { "lat": 40.7115191, "lon": -74.0043395 }, + { "lat": 40.7115097, "lon": -74.0043302 }, + { "lat": 40.7114875, "lon": -74.0042955 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1223577702, + "bounds": { + "minlat": 40.7113564, + "minlon": -74.0045553, + "maxlat": 40.7114795, + "maxlon": -74.0044141 + }, + "nodes": [ + 11349528552, + 11349528770, + 11349528554, + 11349528555, + 11349528553 + ], + "geometry": [ + { "lat": 40.7114795, "lon": -74.0044141 }, + { "lat": 40.7114417, "lon": -74.0044573 }, + { "lat": 40.7114258, "lon": -74.0044755 }, + { "lat": 40.7114115, "lon": -74.0044920 }, + { "lat": 40.7113564, "lon": -74.0045553 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1223577705, + "bounds": { + "minlat": 40.7111871, + "minlon": -74.0046974, + "maxlat": 40.7113888, + "maxlon": -74.0044930 + }, + "nodes": [ + 11349528562, + 12301821023, + 12301821024, + 11349528553, + 11349528565, + 11349528563, + 11349528564 + ], + "geometry": [ + { "lat": 40.7111871, "lon": -74.0045562 }, + { "lat": 40.7112249, "lon": -74.0044963 }, + { "lat": 40.7112986, "lon": -74.0044930 }, + { "lat": 40.7113564, "lon": -74.0045553 }, + { "lat": 40.7113795, "lon": -74.0045811 }, + { "lat": 40.7113888, "lon": -74.0045914 }, + { "lat": 40.7113208, "lon": -74.0046974 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1223577718, + "bounds": { + "minlat": 40.7107422, + "minlon": -74.0040892, + "maxlat": 40.7109359, + "maxlon": -74.0037785 + }, + "nodes": [ + 11349528643, + 11349528659, + 8262309369, + 11349528661, + 11349528606, + 11349528607, + 11349528608, + 11349528609, + 11349528610, + 11349528611, + 11349528612, + 11349528613, + 11349528614, + 11349528615, + 11349528616, + 11349528630, + 11349528617, + 11349528631, + 11349528644, + 11349528645, + 11349528646, + 11349528647, + 11349528648, + 11349528649, + 11349528634, + 11349528635, + 11349528636, + 11349528637, + 11349528638, + 11349528639, + 11349528640, + 11349528641, + 11349528642, + 11349528660, + 11349528643 + ], + "geometry": [ + { "lat": 40.7108282, "lon": -74.0038155 }, + { "lat": 40.7108949, "lon": -74.0037785 }, + { "lat": 40.7109321, "lon": -74.0040632 }, + { "lat": 40.7109342, "lon": -74.0040772 }, + { "lat": 40.7109359, "lon": -74.0040892 }, + { "lat": 40.7109138, "lon": -74.0040815 }, + { "lat": 40.7108933, "lon": -74.0040704 }, + { "lat": 40.7108853, "lon": -74.0040825 }, + { "lat": 40.7108701, "lon": -74.0040709 }, + { "lat": 40.7108400, "lon": -74.0040461 }, + { "lat": 40.7108176, "lon": -74.0040164 }, + { "lat": 40.7107943, "lon": -74.0039736 }, + { "lat": 40.7107815, "lon": -74.0039403 }, + { "lat": 40.7107903, "lon": -74.0039345 }, + { "lat": 40.7107807, "lon": -74.0039091 }, + { "lat": 40.7107606, "lon": -74.0038811 }, + { "lat": 40.7107422, "lon": -74.0038668 }, + { "lat": 40.7107709, "lon": -74.0038503 }, + { "lat": 40.7107959, "lon": -74.0038359 }, + { "lat": 40.7107979, "lon": -74.0038692 }, + { "lat": 40.7108107, "lon": -74.0039217 }, + { "lat": 40.7108282, "lon": -74.0039680 }, + { "lat": 40.7108533, "lon": -74.0040085 }, + { "lat": 40.7108810, "lon": -74.0040332 }, + { "lat": 40.7109091, "lon": -74.0040534 }, + { "lat": 40.7109059, "lon": -74.0040243 }, + { "lat": 40.7109023, "lon": -74.0039968 }, + { "lat": 40.7108891, "lon": -74.0039984 }, + { "lat": 40.7108842, "lon": -74.0039529 }, + { "lat": 40.7108732, "lon": -74.0038974 }, + { "lat": 40.7108832, "lon": -74.0038903 }, + { "lat": 40.7108713, "lon": -74.0038670 }, + { "lat": 40.7108629, "lon": -74.0038761 }, + { "lat": 40.7108468, "lon": -74.0038453 }, + { "lat": 40.7108282, "lon": -74.0038155 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1223577729, + "bounds": { + "minlat": 40.7110011, + "minlon": -74.0037438, + "maxlat": 40.7111823, + "maxlon": -74.0035441 + }, + "nodes": [ + 8262309465, + 10925424183, + 10925424182, + 10224807572, + 11349528706, + 11349528707, + 11349528708, + 11349528699, + 11349528709, + 11349528710, + 11349528711, + 9369042071, + 11349528712, + 9369042098, + 9369042097, + 11349528713, + 9369042099, + 11349528714, + 11349528715, + 8262309465 + ], + "geometry": [ + { "lat": 40.7111823, "lon": -74.0035921 }, + { "lat": 40.7111801, "lon": -74.0035971 }, + { "lat": 40.7111336, "lon": -74.0036684 }, + { "lat": 40.7111187, "lon": -74.0036860 }, + { "lat": 40.7110681, "lon": -74.0037428 }, + { "lat": 40.7110618, "lon": -74.0037438 }, + { "lat": 40.7110559, "lon": -74.0037370 }, + { "lat": 40.7110178, "lon": -74.0036779 }, + { "lat": 40.7110023, "lon": -74.0036536 }, + { "lat": 40.7110011, "lon": -74.0036458 }, + { "lat": 40.7110052, "lon": -74.0036384 }, + { "lat": 40.7110434, "lon": -74.0036203 }, + { "lat": 40.7111098, "lon": -74.0035902 }, + { "lat": 40.7111247, "lon": -74.0035710 }, + { "lat": 40.7111407, "lon": -74.0035916 }, + { "lat": 40.7111548, "lon": -74.0035725 }, + { "lat": 40.7111395, "lon": -74.0035511 }, + { "lat": 40.7111431, "lon": -74.0035441 }, + { "lat": 40.7111643, "lon": -74.0035700 }, + { "lat": 40.7111823, "lon": -74.0035921 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1223670553, + "bounds": { + "minlat": 40.7074852, + "minlon": -74.0081090, + "maxlat": 40.7077557, + "maxlon": -74.0077351 + }, + "nodes": [ + 11350190898, + 11350190918, + 11350190909, + 11350190905, + 11350190904, + 11350190899, + 3738928739, + 3738928737, + 11350190898 + ], + "geometry": [ + { "lat": 40.7076832, "lon": -74.0081090 }, + { "lat": 40.7076906, "lon": -74.0080916 }, + { "lat": 40.7076975, "lon": -74.0080755 }, + { "lat": 40.7077557, "lon": -74.0079406 }, + { "lat": 40.7076230, "lon": -74.0078484 }, + { "lat": 40.7076351, "lon": -74.0078123 }, + { "lat": 40.7075285, "lon": -74.0077351 }, + { "lat": 40.7074852, "lon": -74.0078074 }, + { "lat": 40.7076832, "lon": -74.0081090 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "compacted" + } +}, +{ + "type": "way", + "id": 1223877536, + "bounds": { + "minlat": 40.7155253, + "minlon": -73.9125423, + "maxlat": 40.7163728, + "maxlon": -73.9116055 + }, + "nodes": [ + 11352022276, + 2996303306, + 2996303548, + 2996303272, + 2996303588, + 2996303601 + ], + "geometry": [ + { "lat": 40.7163728, "lon": -73.9116055 }, + { "lat": 40.7163412, "lon": -73.9116335 }, + { "lat": 40.7160193, "lon": -73.9119334 }, + { "lat": 40.7158140, "lon": -73.9121453 }, + { "lat": 40.7156249, "lon": -73.9123625 }, + { "lat": 40.7155253, "lon": -73.9125423 } + ], + "tags": { + "cutting": "yes", + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Flushing Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1223877537, + "bounds": { + "minlat": 40.7163728, + "minlon": -73.9116055, + "maxlat": 40.7164855, + "maxlon": -73.9115058 + }, + "nodes": [ + 11352022277, + 11352022276 + ], + "geometry": [ + { "lat": 40.7164855, "lon": -73.9115058 }, + { "lat": 40.7163728, "lon": -73.9116055 } + ], + "tags": { + "cutting": "yes", + "foot": "use_sidepath", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxheight": "13'6\"", + "name": "Flushing Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1223877538, + "bounds": { + "minlat": 40.7155371, + "minlon": -73.9123524, + "maxlat": 40.7163530, + "maxlon": -73.9115139 + }, + "nodes": [ + 2996303654, + 597676966, + 597676969, + 11352022278 + ], + "geometry": [ + { "lat": 40.7155371, "lon": -73.9123524 }, + { "lat": 40.7156753, "lon": -73.9121779 }, + { "lat": 40.7159460, "lon": -73.9118920 }, + { "lat": 40.7163530, "lon": -73.9115139 } + ], + "tags": { + "cutting": "yes", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Flushing Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1223877539, + "bounds": { + "minlat": 40.7163530, + "minlon": -73.9115139, + "maxlat": 40.7164619, + "maxlon": -73.9114059 + }, + "nodes": [ + 11352022278, + 2996303687, + 11352022279 + ], + "geometry": [ + { "lat": 40.7163530, "lon": -73.9115139 }, + { "lat": 40.7163780, "lon": -73.9114907 }, + { "lat": 40.7164619, "lon": -73.9114059 } + ], + "tags": { + "cutting": "yes", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxheight": "13'6\"", + "name": "Flushing Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1224024360, + "bounds": { + "minlat": 40.8268905, + "minlon": -73.9799153, + "maxlat": 40.8270696, + "maxlon": -73.9795818 + }, + "nodes": [ + 7533716708, + 11353455241, + 11353455242 + ], + "geometry": [ + { "lat": 40.8268905, "lon": -73.9799153 }, + { "lat": 40.8269829, "lon": -73.9797716 }, + { "lat": 40.8270696, "lon": -73.9795818 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1224480428, + "bounds": { + "minlat": 40.7653085, + "minlon": -73.9638433, + "maxlat": 40.7654066, + "maxlon": -73.9637702 + }, + "nodes": [ + 42449985, + 5542680284, + 11355879242 + ], + "geometry": [ + { "lat": 40.7653085, "lon": -73.9638433 }, + { "lat": 40.7653698, "lon": -73.9637970 }, + { "lat": 40.7654066, "lon": -73.9637702 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1224480429, + "bounds": { + "minlat": 40.7678128, + "minlon": -73.9620159, + "maxlat": 40.7684416, + "maxlon": -73.9615751 + }, + "nodes": [ + 42449991, + 6747157050, + 6747157046, + 42429690 + ], + "geometry": [ + { "lat": 40.7678128, "lon": -73.9620159 }, + { "lat": 40.7678754, "lon": -73.9619702 }, + { "lat": 40.7683880, "lon": -73.9616134 }, + { "lat": 40.7684416, "lon": -73.9615751 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1224480430, + "bounds": { + "minlat": 40.7673544, + "minlon": -73.9623502, + "maxlat": 40.7678128, + "maxlon": -73.9620159 + }, + "nodes": [ + 11355879243, + 6747157048, + 42449991 + ], + "geometry": [ + { "lat": 40.7673544, "lon": -73.9623502 }, + { "lat": 40.7677596, "lon": -73.9620545 }, + { "lat": 40.7678128, "lon": -73.9620159 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "bump;flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left||||", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1224480431, + "bounds": { + "minlat": 40.7690777, + "minlon": -73.9611072, + "maxlat": 40.7692505, + "maxlon": -73.9609773 + }, + "nodes": [ + 42445236, + 10122943666, + 11355879244 + ], + "geometry": [ + { "lat": 40.7690777, "lon": -73.9611072 }, + { "lat": 40.7691212, "lon": -73.9610745 }, + { "lat": 40.7692505, "lon": -73.9609773 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1224480432, + "bounds": { + "minlat": 40.7710148, + "minlon": -73.9596877, + "maxlat": 40.7712617, + "maxlon": -73.9595056 + }, + "nodes": [ + 10170793880, + 42439561, + 10170793876, + 11398307497 + ], + "geometry": [ + { "lat": 40.7710148, "lon": -73.9596877 }, + { "lat": 40.7710664, "lon": -73.9596511 }, + { "lat": 40.7711267, "lon": -73.9596062 }, + { "lat": 40.7712617, "lon": -73.9595056 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1224480434, + "bounds": { + "minlat": 40.7723386, + "minlon": -73.9587132, + "maxlat": 40.7738062, + "maxlon": -73.9576507 + }, + "nodes": [ + 42450009, + 10170793901, + 10122937121, + 42446472, + 10122937120, + 10122937117, + 42436919, + 10122937118, + 11355879246 + ], + "geometry": [ + { "lat": 40.7723386, "lon": -73.9587132 }, + { "lat": 40.7723929, "lon": -73.9586746 }, + { "lat": 40.7729235, "lon": -73.9582974 }, + { "lat": 40.7729798, "lon": -73.9582574 }, + { "lat": 40.7730295, "lon": -73.9582210 }, + { "lat": 40.7735548, "lon": -73.9578371 }, + { "lat": 40.7736031, "lon": -73.9578018 }, + { "lat": 40.7736626, "lon": -73.9577575 }, + { "lat": 40.7738062, "lon": -73.9576507 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1224480435, + "bounds": { + "minlat": 40.7738062, + "minlon": -73.9576507, + "maxlat": 40.7742888, + "maxlon": -73.9572919 + }, + "nodes": [ + 11355879246, + 10170793867, + 42450015 + ], + "geometry": [ + { "lat": 40.7738062, "lon": -73.9576507 }, + { "lat": 40.7741967, "lon": -73.9573603 }, + { "lat": 40.7742888, "lon": -73.9572919 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "bump;flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||||", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1224490986, + "bounds": { + "minlat": 40.7480955, + "minlon": -73.9882190, + "maxlat": 40.7483045, + "maxlon": -73.9881935 + }, + "nodes": [ + 6223969260, + 6223969249, + 11355997382 + ], + "geometry": [ + { "lat": 40.7483045, "lon": -73.9881935 }, + { "lat": 40.7482343, "lon": -73.9882068 }, + { "lat": 40.7480955, "lon": -73.9882190 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "kerb", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "living_street", + "lanes": "1", + "lit": "yes", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1224490987, + "bounds": { + "minlat": 40.7473523, + "minlon": -73.9883679, + "maxlat": 40.7475458, + "maxlon": -73.9883326 + }, + "nodes": [ + 42428232, + 9032581896, + 6223969247, + 11355997383 + ], + "geometry": [ + { "lat": 40.7475458, "lon": -73.9883326 }, + { "lat": 40.7475065, "lon": -73.9883404 }, + { "lat": 40.7474858, "lon": -73.9883440 }, + { "lat": 40.7473523, "lon": -73.9883679 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "planter", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1224490988, + "bounds": { + "minlat": 40.7475458, + "minlon": -73.9883326, + "maxlat": 40.7477344, + "maxlon": -73.9882846 + }, + "nodes": [ + 11355997384, + 6223969255, + 42428232 + ], + "geometry": [ + { "lat": 40.7477344, "lon": -73.9882846 }, + { "lat": 40.7476194, "lon": -73.9883151 }, + { "lat": 40.7475458, "lon": -73.9883326 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "kerb", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1224490989, + "bounds": { + "minlat": 40.7458213, + "minlon": -73.9886532, + "maxlat": 40.7462399, + "maxlon": -73.9885524 + }, + "nodes": [ + 11355997386, + 11766442640, + 9198484653, + 42427787, + 9143542453, + 11355997387 + ], + "geometry": [ + { "lat": 40.7462399, "lon": -73.9885524 }, + { "lat": 40.7461704, "lon": -73.9885878 }, + { "lat": 40.7461131, "lon": -73.9885984 }, + { "lat": 40.7460483, "lon": -73.9886101 }, + { "lat": 40.7459726, "lon": -73.9886250 }, + { "lat": 40.7458213, "lon": -73.9886532 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1224490990, + "bounds": { + "minlat": 40.7445363, + "minlon": -73.9888917, + "maxlat": 40.7447254, + "maxlon": -73.9888344 + }, + "nodes": [ + 11355997389, + 10167162591, + 42428220 + ], + "geometry": [ + { "lat": 40.7447254, "lon": -73.9888344 }, + { "lat": 40.7446233, "lon": -73.9888737 }, + { "lat": 40.7445363, "lon": -73.9888917 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1224593084, + "bounds": { + "minlat": 40.7059768, + "minlon": -74.0052445, + "maxlat": 40.7060012, + "maxlon": -74.0052076 + }, + "nodes": [ + 42427254, + 11356786750 + ], + "geometry": [ + { "lat": 40.7060012, "lon": -74.0052076 }, + { "lat": 40.7059768, "lon": -74.0052445 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Front Street", + "name:ko": "프론트 스트리트", + "name:ru": "Фронт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Front", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q4493022", + "wikipedia": "en:Front Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1224593090, + "bounds": { + "minlat": 40.7060012, + "minlon": -74.0052799, + "maxlat": 40.7060547, + "maxlon": -74.0052076 + }, + "nodes": [ + 11356800972, + 8094558993, + 42427254 + ], + "geometry": [ + { "lat": 40.7060547, "lon": -74.0052799 }, + { "lat": 40.7060456, "lon": -74.0052685 }, + { "lat": 40.7060012, "lon": -74.0052076 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Fletcher Street", + "name:etymology:wikidata": "Q4888590", + "name:ko": "플렛처 스트리트", + "name:ru": "Флетчер-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fletcher", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q13882294" + } +}, +{ + "type": "way", + "id": 1224593100, + "bounds": { + "minlat": 40.7054080, + "minlon": -74.0045497, + "maxlat": 40.7054688, + "maxlon": -74.0044743 + }, + "nodes": [ + 9814893490, + 8094558980, + 42427256 + ], + "geometry": [ + { "lat": 40.7054688, "lon": -74.0045497 }, + { "lat": 40.7054619, "lon": -74.0045411 }, + { "lat": 40.7054080, "lon": -74.0044743 } + ], + "tags": { + "access": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Fletcher Street", + "name:etymology:wikidata": "Q4888590", + "name:ko": "플렛처 스트리트", + "name:ru": "Флетчер-стрит", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fletcher", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q13882294" + } +}, +{ + "type": "way", + "id": 1224593108, + "bounds": { + "minlat": 40.7063824, + "minlon": -74.0046155, + "maxlat": 40.7064117, + "maxlon": -74.0045692 + }, + "nodes": [ + 42440353, + 11356801008 + ], + "geometry": [ + { "lat": 40.7064117, "lon": -74.0045692 }, + { "lat": 40.7063824, "lon": -74.0046155 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Front Street", + "name:ko": "프론트 스트리트", + "name:ru": "Фронт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Front", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q4493022", + "wikipedia": "en:Front Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1224593110, + "bounds": { + "minlat": 40.7061616, + "minlon": -74.0046927, + "maxlat": 40.7062327, + "maxlon": -74.0045173 + }, + "nodes": [ + 8094558971, + 11356801013, + 11356801012 + ], + "geometry": [ + { "lat": 40.7062327, "lon": -74.0045173 }, + { "lat": 40.7061616, "lon": -74.0046253 }, + { "lat": 40.7062204, "lon": -74.0046927 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1224593119, + "bounds": { + "minlat": 40.7067790, + "minlon": -74.0049404, + "maxlat": 40.7068612, + "maxlon": -74.0048398 + }, + "nodes": [ + 11356801074, + 11356801075, + 11356801076, + 11356801070, + 11356801077, + 11356801078, + 11356801079, + 11356801080, + 10311946254, + 11356801073, + 11356801072, + 11356801071, + 10311946253, + 11356801074 + ], + "geometry": [ + { "lat": 40.7068595, "lon": -74.0048398 }, + { "lat": 40.7068612, "lon": -74.0048702 }, + { "lat": 40.7068584, "lon": -74.0048804 }, + { "lat": 40.7068361, "lon": -74.0049180 }, + { "lat": 40.7068273, "lon": -74.0049314 }, + { "lat": 40.7068165, "lon": -74.0049385 }, + { "lat": 40.7068054, "lon": -74.0049404 }, + { "lat": 40.7067962, "lon": -74.0049382 }, + { "lat": 40.7067790, "lon": -74.0049208 }, + { "lat": 40.7067861, "lon": -74.0049255 }, + { "lat": 40.7067974, "lon": -74.0049265 }, + { "lat": 40.7068083, "lon": -74.0049205 }, + { "lat": 40.7068150, "lon": -74.0049122 }, + { "lat": 40.7068595, "lon": -74.0048398 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1224928885, + "bounds": { + "minlat": 40.7651890, + "minlon": -73.9731642, + "maxlat": 40.7653390, + "maxlon": -73.9730403 + }, + "nodes": [ + 11359523977, + 11359523978, + 11359523979, + 11359523980, + 11359523981, + 11359523982, + 11359523983, + 11359523984, + 11359523985, + 11359523986, + 11359523987, + 11359523988, + 11359523993, + 11359523989, + 11359523990, + 11359523991, + 11359523992, + 11359523977 + ], + "geometry": [ + { "lat": 40.7653298, "lon": -73.9730839 }, + { "lat": 40.7653390, "lon": -73.9730417 }, + { "lat": 40.7653364, "lon": -73.9730403 }, + { "lat": 40.7652472, "lon": -73.9731065 }, + { "lat": 40.7652369, "lon": -73.9731114 }, + { "lat": 40.7652145, "lon": -73.9731148 }, + { "lat": 40.7651961, "lon": -73.9731145 }, + { "lat": 40.7651911, "lon": -73.9731169 }, + { "lat": 40.7651890, "lon": -73.9731235 }, + { "lat": 40.7651901, "lon": -73.9731576 }, + { "lat": 40.7651924, "lon": -73.9731628 }, + { "lat": 40.7651977, "lon": -73.9731642 }, + { "lat": 40.7652154, "lon": -73.9731631 }, + { "lat": 40.7652254, "lon": -73.9731625 }, + { "lat": 40.7652362, "lon": -73.9731608 }, + { "lat": 40.7652470, "lon": -73.9731531 }, + { "lat": 40.7653268, "lon": -73.9730886 }, + { "lat": 40.7653298, "lon": -73.9730839 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1224928912, + "bounds": { + "minlat": 40.7643622, + "minlon": -73.9735411, + "maxlat": 40.7646426, + "maxlon": -73.9730200 + }, + "nodes": [ + 11359524044, + 11359524208, + 11359524209, + 11359524210, + 11359524045, + 11359524211, + 11359523975, + 11359524212, + 11359524213, + 11359524214, + 11359523974, + 11359481066, + 11359523973, + 11359523972, + 11359523971, + 11359524215, + 11359524046, + 11359481067, + 11359523969, + 11359523970, + 11359481068, + 11359481065, + 11359524044 + ], + "geometry": [ + { "lat": 40.7646426, "lon": -73.9734925 }, + { "lat": 40.7646332, "lon": -73.9734953 }, + { "lat": 40.7646204, "lon": -73.9734933 }, + { "lat": 40.7646119, "lon": -73.9734842 }, + { "lat": 40.7646046, "lon": -73.9734674 }, + { "lat": 40.7644408, "lon": -73.9730808 }, + { "lat": 40.7644351, "lon": -73.9730669 }, + { "lat": 40.7644320, "lon": -73.9730513 }, + { "lat": 40.7644320, "lon": -73.9730389 }, + { "lat": 40.7644350, "lon": -73.9730287 }, + { "lat": 40.7644389, "lon": -73.9730200 }, + { "lat": 40.7643692, "lon": -73.9730711 }, + { "lat": 40.7643625, "lon": -73.9730811 }, + { "lat": 40.7643622, "lon": -73.9730906 }, + { "lat": 40.7643657, "lon": -73.9731034 }, + { "lat": 40.7643702, "lon": -73.9731141 }, + { "lat": 40.7645401, "lon": -73.9735155 }, + { "lat": 40.7645450, "lon": -73.9735273 }, + { "lat": 40.7645511, "lon": -73.9735361 }, + { "lat": 40.7645610, "lon": -73.9735411 }, + { "lat": 40.7645714, "lon": -73.9735407 }, + { "lat": 40.7645808, "lon": -73.9735378 }, + { "lat": 40.7646426, "lon": -73.9734925 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1224928915, + "bounds": { + "minlat": 40.7648240, + "minlon": -73.9728067, + "maxlat": 40.7649705, + "maxlon": -73.9726422 + }, + "nodes": [ + 11359524232, + 11359524233, + 11359524217, + 11359524234, + 11359524218, + 11359524219, + 11359524220, + 11359524221, + 11359524222, + 11359524223, + 11359524224, + 11359524180, + 11359524225, + 11359524226, + 11359524227, + 11359524228, + 11359524181, + 11359524229, + 11359524230, + 11359524231, + 11359524232 + ], + "geometry": [ + { "lat": 40.7649600, "lon": -73.9728067 }, + { "lat": 40.7649166, "lon": -73.9727242 }, + { "lat": 40.7649056, "lon": -73.9727032 }, + { "lat": 40.7649016, "lon": -73.9726963 }, + { "lat": 40.7648971, "lon": -73.9726918 }, + { "lat": 40.7648927, "lon": -73.9726905 }, + { "lat": 40.7648883, "lon": -73.9726915 }, + { "lat": 40.7648240, "lon": -73.9727400 }, + { "lat": 40.7648291, "lon": -73.9727127 }, + { "lat": 40.7648304, "lon": -73.9727064 }, + { "lat": 40.7648341, "lon": -73.9727019 }, + { "lat": 40.7648676, "lon": -73.9726773 }, + { "lat": 40.7649109, "lon": -73.9726457 }, + { "lat": 40.7649172, "lon": -73.9726422 }, + { "lat": 40.7649214, "lon": -73.9726425 }, + { "lat": 40.7649260, "lon": -73.9726457 }, + { "lat": 40.7649462, "lon": -73.9726907 }, + { "lat": 40.7649673, "lon": -73.9727408 }, + { "lat": 40.7649705, "lon": -73.9727508 }, + { "lat": 40.7649693, "lon": -73.9727595 }, + { "lat": 40.7649600, "lon": -73.9728067 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1224928960, + "bounds": { + "minlat": 40.7637398, + "minlon": -73.9740608, + "maxlat": 40.7644763, + "maxlon": -73.9735016 + }, + "nodes": [ + 11359524332, + 11359524004, + 11359524005, + 11359524006, + 11359524007, + 10173346255, + 11359524008, + 11359524009, + 11359524010, + 11359524011, + 11359524012, + 11359524013, + 11359524014, + 11359524358, + 11359524015, + 11359524016, + 11359524206, + 11359524018, + 11359524019, + 11359523998, + 11359524047, + 11359524415, + 11359524414, + 11359524048, + 11359524413, + 11359524412, + 11359524359, + 11359524411, + 11359524410, + 11359524409, + 11359524408, + 11359524407, + 11359524402, + 11359524406, + 11359524405, + 11359524404, + 11359524332 + ], + "geometry": [ + { "lat": 40.7637817, "lon": -73.9735016 }, + { "lat": 40.7637536, "lon": -73.9735222 }, + { "lat": 40.7637444, "lon": -73.9735321 }, + { "lat": 40.7637398, "lon": -73.9735503 }, + { "lat": 40.7637411, "lon": -73.9735702 }, + { "lat": 40.7637440, "lon": -73.9735839 }, + { "lat": 40.7637453, "lon": -73.9735895 }, + { "lat": 40.7639366, "lon": -73.9740373 }, + { "lat": 40.7639474, "lon": -73.9740524 }, + { "lat": 40.7639582, "lon": -73.9740587 }, + { "lat": 40.7639698, "lon": -73.9740608 }, + { "lat": 40.7639812, "lon": -73.9740590 }, + { "lat": 40.7639928, "lon": -73.9740514 }, + { "lat": 40.7640058, "lon": -73.9740418 }, + { "lat": 40.7644621, "lon": -73.9737086 }, + { "lat": 40.7644692, "lon": -73.9736992 }, + { "lat": 40.7644721, "lon": -73.9736923 }, + { "lat": 40.7644763, "lon": -73.9736769 }, + { "lat": 40.7644755, "lon": -73.9736602 }, + { "lat": 40.7644703, "lon": -73.9736435 }, + { "lat": 40.7644499, "lon": -73.9735959 }, + { "lat": 40.7644495, "lon": -73.9736112 }, + { "lat": 40.7644481, "lon": -73.9736232 }, + { "lat": 40.7644426, "lon": -73.9736368 }, + { "lat": 40.7644363, "lon": -73.9736473 }, + { "lat": 40.7644255, "lon": -73.9736563 }, + { "lat": 40.7640196, "lon": -73.9739465 }, + { "lat": 40.7640006, "lon": -73.9739584 }, + { "lat": 40.7639844, "lon": -73.9739677 }, + { "lat": 40.7639699, "lon": -73.9739704 }, + { "lat": 40.7639567, "lon": -73.9739651 }, + { "lat": 40.7639455, "lon": -73.9739499 }, + { "lat": 40.7637806, "lon": -73.9735577 }, + { "lat": 40.7637768, "lon": -73.9735454 }, + { "lat": 40.7637755, "lon": -73.9735269 }, + { "lat": 40.7637782, "lon": -73.9735100 }, + { "lat": 40.7637817, "lon": -73.9735016 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1225536014, + "bounds": { + "minlat": 40.7083660, + "minlon": -74.0084576, + "maxlat": 40.7087673, + "maxlon": -74.0076313 + }, + "nodes": [ + 11365151753, + 11365151754, + 3774727962, + 11365172036, + 3738931767, + 11365151737, + 11365151738, + 3738931768, + 11365151739, + 11365151740, + 11365151736, + 3738931769, + 11365151764, + 3738931754, + 3738931763, + 11365151729, + 11365151730, + 11365151735, + 3738931764, + 3738931762, + 11365151731, + 11365151732, + 3738931759, + 11365151733, + 11365151734, + 11365151728, + 3738931751, + 11365172030, + 2824697522, + 822477096, + 11365172029, + 822477097, + 11365172035, + 822477098, + 822477099, + 3774727977, + 11365151752, + 11365151751, + 3774727968, + 3774727971, + 3774727963, + 11365151753 + ], + "geometry": [ + { "lat": 40.7086956, "lon": -74.0084503 }, + { "lat": 40.7086879, "lon": -74.0084576 }, + { "lat": 40.7086830, "lon": -74.0084487 }, + { "lat": 40.7085464, "lon": -74.0083208 }, + { "lat": 40.7084335, "lon": -74.0082150 }, + { "lat": 40.7084430, "lon": -74.0082164 }, + { "lat": 40.7084557, "lon": -74.0082119 }, + { "lat": 40.7084660, "lon": -74.0082050 }, + { "lat": 40.7084725, "lon": -74.0081940 }, + { "lat": 40.7084754, "lon": -74.0081844 }, + { "lat": 40.7084754, "lon": -74.0081754 }, + { "lat": 40.7084845, "lon": -74.0081672 }, + { "lat": 40.7084261, "lon": -74.0080678 }, + { "lat": 40.7083660, "lon": -74.0079656 }, + { "lat": 40.7084443, "lon": -74.0078863 }, + { "lat": 40.7084396, "lon": -74.0078788 }, + { "lat": 40.7084442, "lon": -74.0078698 }, + { "lat": 40.7084468, "lon": -74.0078564 }, + { "lat": 40.7084470, "lon": -74.0078408 }, + { "lat": 40.7084438, "lon": -74.0078252 }, + { "lat": 40.7084368, "lon": -74.0078076 }, + { "lat": 40.7084280, "lon": -74.0077941 }, + { "lat": 40.7084168, "lon": -74.0077829 }, + { "lat": 40.7084053, "lon": -74.0077771 }, + { "lat": 40.7083947, "lon": -74.0077762 }, + { "lat": 40.7083856, "lon": -74.0077792 }, + { "lat": 40.7083815, "lon": -74.0077722 }, + { "lat": 40.7084252, "lon": -74.0077303 }, + { "lat": 40.7085278, "lon": -74.0076313 }, + { "lat": 40.7086393, "lon": -74.0078218 }, + { "lat": 40.7085375, "lon": -74.0079255 }, + { "lat": 40.7084785, "lon": -74.0079857 }, + { "lat": 40.7086118, "lon": -74.0082133 }, + { "lat": 40.7086842, "lon": -74.0083371 }, + { "lat": 40.7087252, "lon": -74.0082953 }, + { "lat": 40.7087673, "lon": -74.0083653 }, + { "lat": 40.7087414, "lon": -74.0083914 }, + { "lat": 40.7087468, "lon": -74.0084013 }, + { "lat": 40.7087402, "lon": -74.0084076 }, + { "lat": 40.7087385, "lon": -74.0084340 }, + { "lat": 40.7087169, "lon": -74.0084533 }, + { "lat": 40.7086956, "lon": -74.0084503 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1225536035, + "bounds": { + "minlat": 40.7091053, + "minlon": -74.0082877, + "maxlat": 40.7092483, + "maxlon": -74.0081272 + }, + "nodes": [ + 11365172080, + 11365172083, + 11365172084, + 11365172085, + 11365172086, + 11365172087, + 11365172088, + 11365172099, + 11365172098, + 11365172091, + 11365172092, + 11365172093, + 11365172094, + 11365172080 + ], + "geometry": [ + { "lat": 40.7092483, "lon": -74.0081689 }, + { "lat": 40.7092333, "lon": -74.0081469 }, + { "lat": 40.7092183, "lon": -74.0081272 }, + { "lat": 40.7091760, "lon": -74.0081721 }, + { "lat": 40.7091825, "lon": -74.0081827 }, + { "lat": 40.7091670, "lon": -74.0081992 }, + { "lat": 40.7091640, "lon": -74.0081943 }, + { "lat": 40.7091053, "lon": -74.0082568 }, + { "lat": 40.7091249, "lon": -74.0082877 }, + { "lat": 40.7091838, "lon": -74.0082250 }, + { "lat": 40.7091813, "lon": -74.0082210 }, + { "lat": 40.7091946, "lon": -74.0082068 }, + { "lat": 40.7092017, "lon": -74.0082185 }, + { "lat": 40.7092483, "lon": -74.0081689 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1225536046, + "bounds": { + "minlat": 40.7089361, + "minlon": -74.0081805, + "maxlat": 40.7091329, + "maxlon": -74.0079833 + }, + "nodes": [ + 2824697588, + 11365172106, + 11365172108, + 11365172109, + 11365172110, + 11365172125, + 11365172156, + 11365172111, + 11365172123, + 11365172122, + 11365172121, + 11365172112, + 2824697561, + 2824697588 + ], + "geometry": [ + { "lat": 40.7091329, "lon": -74.0080059 }, + { "lat": 40.7091251, "lon": -74.0079946 }, + { "lat": 40.7091172, "lon": -74.0079833 }, + { "lat": 40.7090947, "lon": -74.0080065 }, + { "lat": 40.7090827, "lon": -74.0079873 }, + { "lat": 40.7090166, "lon": -74.0080599 }, + { "lat": 40.7090241, "lon": -74.0080713 }, + { "lat": 40.7089876, "lon": -74.0081053 }, + { "lat": 40.7089668, "lon": -74.0081094 }, + { "lat": 40.7089410, "lon": -74.0081403 }, + { "lat": 40.7089361, "lon": -74.0081636 }, + { "lat": 40.7089473, "lon": -74.0081805 }, + { "lat": 40.7089682, "lon": -74.0081766 }, + { "lat": 40.7091329, "lon": -74.0080059 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1225828374, + "bounds": { + "minlat": 40.7062419, + "minlon": -74.0060726, + "maxlat": 40.7062939, + "maxlon": -74.0059825 + }, + "nodes": [ + 11367912848, + 11367912849, + 11091865558, + 11367912850, + 11367912851, + 11367912852, + 11367912853, + 11367912854, + 11367912855, + 11367912856, + 11367912857, + 11367912858, + 11367912859, + 11367912860, + 11367912848 + ], + "geometry": [ + { "lat": 40.7062595, "lon": -74.0060726 }, + { "lat": 40.7062571, "lon": -74.0060587 }, + { "lat": 40.7062582, "lon": -74.0060502 }, + { "lat": 40.7062599, "lon": -74.0060382 }, + { "lat": 40.7062696, "lon": -74.0060183 }, + { "lat": 40.7062939, "lon": -74.0059825 }, + { "lat": 40.7062696, "lon": -74.0059845 }, + { "lat": 40.7062627, "lon": -74.0059870 }, + { "lat": 40.7062579, "lon": -74.0059910 }, + { "lat": 40.7062444, "lon": -74.0060135 }, + { "lat": 40.7062419, "lon": -74.0060261 }, + { "lat": 40.7062420, "lon": -74.0060399 }, + { "lat": 40.7062461, "lon": -74.0060524 }, + { "lat": 40.7062510, "lon": -74.0060608 }, + { "lat": 40.7062595, "lon": -74.0060726 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1225828392, + "bounds": { + "minlat": 40.7068263, + "minlon": -74.0052212, + "maxlat": 40.7069329, + "maxlon": -74.0050900 + }, + "nodes": [ + 11367912911, + 11367912912, + 11367912913, + 11367912914, + 11367912926, + 11367912915, + 11367912916, + 11367912917, + 11367912918, + 11367912919, + 11367912920, + 11367912921, + 11367912922, + 11367912923, + 11367912924, + 11367912925, + 10311946268, + 11367912911 + ], + "geometry": [ + { "lat": 40.7068263, "lon": -74.0052212 }, + { "lat": 40.7068272, "lon": -74.0051897 }, + { "lat": 40.7068275, "lon": -74.0051821 }, + { "lat": 40.7068296, "lon": -74.0051757 }, + { "lat": 40.7068597, "lon": -74.0051337 }, + { "lat": 40.7068859, "lon": -74.0050953 }, + { "lat": 40.7068927, "lon": -74.0050900 }, + { "lat": 40.7069010, "lon": -74.0050905 }, + { "lat": 40.7069085, "lon": -74.0050930 }, + { "lat": 40.7069163, "lon": -74.0050994 }, + { "lat": 40.7069329, "lon": -74.0051162 }, + { "lat": 40.7069250, "lon": -74.0051125 }, + { "lat": 40.7069153, "lon": -74.0051105 }, + { "lat": 40.7069087, "lon": -74.0051114 }, + { "lat": 40.7069005, "lon": -74.0051162 }, + { "lat": 40.7068932, "lon": -74.0051272 }, + { "lat": 40.7068777, "lon": -74.0051488 }, + { "lat": 40.7068263, "lon": -74.0052212 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1225828406, + "bounds": { + "minlat": 40.7069774, + "minlon": -74.0050029, + "maxlat": 40.7070372, + "maxlon": -74.0048995 + }, + "nodes": [ + 11367913011, + 11367913012, + 11367913013, + 11367913014, + 11367913015, + 11367913016, + 11367913017, + 11367913018, + 11367913019, + 10311946264, + 11367913020, + 11367913021, + 11367913011 + ], + "geometry": [ + { "lat": 40.7070035, "lon": -74.0050029 }, + { "lat": 40.7069827, "lon": -74.0049832 }, + { "lat": 40.7069774, "lon": -74.0049705 }, + { "lat": 40.7069778, "lon": -74.0049567 }, + { "lat": 40.7069823, "lon": -74.0049466 }, + { "lat": 40.7070069, "lon": -74.0049081 }, + { "lat": 40.7070114, "lon": -74.0049033 }, + { "lat": 40.7070372, "lon": -74.0048995 }, + { "lat": 40.7070054, "lon": -74.0049514 }, + { "lat": 40.7070015, "lon": -74.0049632 }, + { "lat": 40.7070001, "lon": -74.0049778 }, + { "lat": 40.7070003, "lon": -74.0049912 }, + { "lat": 40.7070035, "lon": -74.0050029 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1225828411, + "bounds": { + "minlat": 40.7074204, + "minlon": -74.0042749, + "maxlat": 40.7074967, + "maxlon": -74.0041679 + }, + "nodes": [ + 11367913060, + 11367913061, + 11367913062, + 11367913063, + 10309622510, + 11367913064, + 11367913065, + 11367913066, + 11367913067, + 11367913068, + 11367913069, + 11367913070, + 10309622509, + 11367913060 + ], + "geometry": [ + { "lat": 40.7074204, "lon": -74.0042749 }, + { "lat": 40.7074234, "lon": -74.0042396 }, + { "lat": 40.7074265, "lon": -74.0042294 }, + { "lat": 40.7074303, "lon": -74.0042203 }, + { "lat": 40.7074447, "lon": -74.0041984 }, + { "lat": 40.7074590, "lon": -74.0041782 }, + { "lat": 40.7074674, "lon": -74.0041713 }, + { "lat": 40.7074749, "lon": -74.0041679 }, + { "lat": 40.7074872, "lon": -74.0041717 }, + { "lat": 40.7074967, "lon": -74.0041763 }, + { "lat": 40.7074841, "lon": -74.0041804 }, + { "lat": 40.7074746, "lon": -74.0041884 }, + { "lat": 40.7074662, "lon": -74.0042008 }, + { "lat": 40.7074204, "lon": -74.0042749 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1226007463, + "bounds": { + "minlat": 40.7075353, + "minlon": -74.0051471, + "maxlat": 40.7075964, + "maxlon": -74.0051170 + }, + "nodes": [ + 11369418295, + 8262936332, + 11369424997, + 4015192928 + ], + "geometry": [ + { "lat": 40.7075964, "lon": -74.0051471 }, + { "lat": 40.7075812, "lon": -74.0051396 }, + { "lat": 40.7075691, "lon": -74.0051337 }, + { "lat": 40.7075353, "lon": -74.0051170 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1226007464, + "bounds": { + "minlat": 40.7080976, + "minlon": -74.0054241, + "maxlat": 40.7081528, + "maxlon": -74.0053938 + }, + "nodes": [ + 6859553505, + 11369424998, + 8262936333, + 11369418296 + ], + "geometry": [ + { "lat": 40.7081528, "lon": -74.0054241 }, + { "lat": 40.7081308, "lon": -74.0054121 }, + { "lat": 40.7081188, "lon": -74.0054056 }, + { "lat": 40.7080976, "lon": -74.0053938 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1226007480, + "bounds": { + "minlat": 40.7080953, + "minlon": -74.0056060, + "maxlat": 40.7081527, + "maxlon": -74.0055670 + }, + "nodes": [ + 11369418364, + 11369418366, + 11374285244, + 11369418365 + ], + "geometry": [ + { "lat": 40.7081527, "lon": -74.0056060 }, + { "lat": 40.7081444, "lon": -74.0056004 }, + { "lat": 40.7081291, "lon": -74.0055900 }, + { "lat": 40.7080953, "lon": -74.0055670 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1226060855, + "bounds": { + "minlat": 40.7072282, + "minlon": -74.0073661, + "maxlat": 40.7078215, + "maxlon": -74.0063945 + }, + "nodes": [ + 3736135512, + 9773100108, + 11369922663, + 11369922621, + 11369922664, + 11369922665, + 11369922666, + 11369922667, + 11369922668, + 11369922622, + 11369961769, + 11369961770, + 11369961777, + 11369961771, + 11369961772, + 11369961776, + 11369961773, + 11369961774, + 11369961775, + 11369922628, + 2824988437, + 2962660421, + 2962660426, + 12355315790, + 2824988537, + 2824988521, + 2962411322, + 5996105016, + 3736135512 + ], + "geometry": [ + { "lat": 40.7074931, "lon": -74.0064190 }, + { "lat": 40.7075024, "lon": -74.0064064 }, + { "lat": 40.7075119, "lon": -74.0063945 }, + { "lat": 40.7078130, "lon": -74.0068108 }, + { "lat": 40.7078182, "lon": -74.0068165 }, + { "lat": 40.7078211, "lon": -74.0068236 }, + { "lat": 40.7078215, "lon": -74.0068290 }, + { "lat": 40.7078205, "lon": -74.0068344 }, + { "lat": 40.7078172, "lon": -74.0068393 }, + { "lat": 40.7078102, "lon": -74.0068444 }, + { "lat": 40.7077723, "lon": -74.0068678 }, + { "lat": 40.7075603, "lon": -74.0070243 }, + { "lat": 40.7074956, "lon": -74.0070719 }, + { "lat": 40.7074369, "lon": -74.0071279 }, + { "lat": 40.7073043, "lon": -74.0072933 }, + { "lat": 40.7073013, "lon": -74.0073022 }, + { "lat": 40.7072952, "lon": -74.0073348 }, + { "lat": 40.7072925, "lon": -74.0073433 }, + { "lat": 40.7072772, "lon": -74.0073661 }, + { "lat": 40.7072579, "lon": -74.0073383 }, + { "lat": 40.7072282, "lon": -74.0072954 }, + { "lat": 40.7072537, "lon": -74.0072623 }, + { "lat": 40.7073349, "lon": -74.0071537 }, + { "lat": 40.7073491, "lon": -74.0071350 }, + { "lat": 40.7076040, "lon": -74.0067989 }, + { "lat": 40.7075060, "lon": -74.0066698 }, + { "lat": 40.7074033, "lon": -74.0065351 }, + { "lat": 40.7074293, "lon": -74.0065015 }, + { "lat": 40.7074931, "lon": -74.0064190 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Golden Hill Plaza", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1226060861, + "bounds": { + "minlat": 40.7070101, + "minlon": -74.0064831, + "maxlat": 40.7070506, + "maxlon": -74.0064417 + }, + "nodes": [ + 42427249, + 11369961802, + 11369961801, + 7368357603 + ], + "geometry": [ + { "lat": 40.7070101, "lon": -74.0064417 }, + { "lat": 40.7070298, "lon": -74.0064618 }, + { "lat": 40.7070391, "lon": -74.0064714 }, + { "lat": 40.7070506, "lon": -74.0064831 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1226060869, + "bounds": { + "minlat": 40.7077243, + "minlon": -74.0070628, + "maxlat": 40.7077770, + "maxlon": -74.0069289 + }, + "nodes": [ + 11369961855, + 11369961854, + 11369961857, + 11369961860, + 11369961856 + ], + "geometry": [ + { "lat": 40.7077770, "lon": -74.0070628 }, + { "lat": 40.7077422, "lon": -74.0069739 }, + { "lat": 40.7077382, "lon": -74.0069639 }, + { "lat": 40.7077338, "lon": -74.0069528 }, + { "lat": 40.7077243, "lon": -74.0069289 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1226598300, + "bounds": { + "minlat": 40.7088725, + "minlon": -74.0053465, + "maxlat": 40.7089430, + "maxlon": -74.0052457 + }, + "nodes": [ + 42440278, + 4985377330, + 11374285204 + ], + "geometry": [ + { "lat": 40.7089430, "lon": -74.0052457 }, + { "lat": 40.7088908, "lon": -74.0053212 }, + { "lat": 40.7088725, "lon": -74.0053465 } + ], + "tags": { + "access": "delivery", + "foot": "yes", + "highway": "service", + "maxspeed": "20 mph", + "name": "Ryders Alley", + "name:ko": "라이더즈 앨리", + "oneway": "yes", + "service": "alley", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1226764931, + "bounds": { + "minlat": 40.7087820, + "minlon": -74.0025030, + "maxlat": 40.7088460, + "maxlon": -74.0024367 + }, + "nodes": [ + 11375807930, + 42433229 + ], + "geometry": [ + { "lat": 40.7087820, "lon": -74.0024367 }, + { "lat": 40.7088460, "lon": -74.0025030 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 07:30-16:00)", + "name": "Peck Slip", + "name:etymology:wikidata": "Q128782864", + "name:ko": "펙 슬립", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1226764932, + "bounds": { + "minlat": 40.7086940, + "minlon": -74.0025482, + "maxlat": 40.7087644, + "maxlon": -74.0024746 + }, + "nodes": [ + 11375807932, + 11375807933, + 11375807934, + 11375807935, + 11375807941, + 11375807936, + 11375807937, + 11375807938, + 11375807939, + 11375807940, + 11375807932 + ], + "geometry": [ + { "lat": 40.7086940, "lon": -74.0025482 }, + { "lat": 40.7087187, "lon": -74.0025479 }, + { "lat": 40.7087251, "lon": -74.0025449 }, + { "lat": 40.7087300, "lon": -74.0025405 }, + { "lat": 40.7087467, "lon": -74.0025209 }, + { "lat": 40.7087621, "lon": -74.0025028 }, + { "lat": 40.7087644, "lon": -74.0024948 }, + { "lat": 40.7087621, "lon": -74.0024857 }, + { "lat": 40.7087532, "lon": -74.0024746 }, + { "lat": 40.7087327, "lon": -74.0025001 }, + { "lat": 40.7086940, "lon": -74.0025482 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1226764935, + "bounds": { + "minlat": 40.7080296, + "minlon": -74.0033342, + "maxlat": 40.7080906, + "maxlon": -74.0032720 + }, + "nodes": [ + 11375807953, + 11375807954, + 11375807955, + 10311946322, + 11375807956, + 11375807957, + 11375807958, + 11375807959, + 11375807960, + 10309622471, + 11375807961, + 11375807962, + 11375807953 + ], + "geometry": [ + { "lat": 40.7080906, "lon": -74.0032720 }, + { "lat": 40.7080888, "lon": -74.0032999 }, + { "lat": 40.7080853, "lon": -74.0033097 }, + { "lat": 40.7080691, "lon": -74.0033314 }, + { "lat": 40.7080608, "lon": -74.0033342 }, + { "lat": 40.7080529, "lon": -74.0033309 }, + { "lat": 40.7080336, "lon": -74.0033208 }, + { "lat": 40.7080296, "lon": -74.0033110 }, + { "lat": 40.7080352, "lon": -74.0033134 }, + { "lat": 40.7080432, "lon": -74.0033130 }, + { "lat": 40.7080513, "lon": -74.0033100 }, + { "lat": 40.7080610, "lon": -74.0033036 }, + { "lat": 40.7080906, "lon": -74.0032720 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1226764937, + "bounds": { + "minlat": 40.7079632, + "minlon": -74.0034478, + "maxlat": 40.7080602, + "maxlon": -74.0033244 + }, + "nodes": [ + 11375807963, + 5362212151, + 11375807964, + 1538237354, + 10309622473, + 42444271 + ], + "geometry": [ + { "lat": 40.7079632, "lon": -74.0033244 }, + { "lat": 40.7079979, "lon": -74.0033499 }, + { "lat": 40.7080065, "lon": -74.0033581 }, + { "lat": 40.7080194, "lon": -74.0033761 }, + { "lat": 40.7080392, "lon": -74.0034094 }, + { "lat": 40.7080602, "lon": -74.0034478 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Beekman Street", + "name:ko": "비크먼 스트리트", + "name:ru": "Бикман-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1226764938, + "bounds": { + "minlat": 40.7079182, + "minlon": -74.0034625, + "maxlat": 40.7079908, + "maxlon": -74.0033648 + }, + "nodes": [ + 11375807969, + 11375807971, + 10309622475, + 11375807972, + 11375807973, + 11375807974, + 11375807975, + 11375807976, + 10309622474, + 11375807977, + 11375807978, + 11375807979, + 11375807980, + 10309622493, + 10309622468, + 10309622490, + 11375807968, + 11375807967, + 10309622469, + 11375807970, + 11375807969 + ], + "geometry": [ + { "lat": 40.7079544, "lon": -74.0033648 }, + { "lat": 40.7079633, "lon": -74.0033678 }, + { "lat": 40.7079704, "lon": -74.0033722 }, + { "lat": 40.7079827, "lon": -74.0033822 }, + { "lat": 40.7079873, "lon": -74.0033908 }, + { "lat": 40.7079908, "lon": -74.0034080 }, + { "lat": 40.7079903, "lon": -74.0034145 }, + { "lat": 40.7079876, "lon": -74.0034190 }, + { "lat": 40.7079679, "lon": -74.0034379 }, + { "lat": 40.7079438, "lon": -74.0034604 }, + { "lat": 40.7079383, "lon": -74.0034625 }, + { "lat": 40.7079328, "lon": -74.0034613 }, + { "lat": 40.7079182, "lon": -74.0034542 }, + { "lat": 40.7079489, "lon": -74.0034239 }, + { "lat": 40.7079556, "lon": -74.0034164 }, + { "lat": 40.7079606, "lon": -74.0034104 }, + { "lat": 40.7079648, "lon": -74.0033993 }, + { "lat": 40.7079646, "lon": -74.0033894 }, + { "lat": 40.7079622, "lon": -74.0033786 }, + { "lat": 40.7079588, "lon": -74.0033707 }, + { "lat": 40.7079544, "lon": -74.0033648 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1226764939, + "bounds": { + "minlat": 40.7088198, + "minlon": -74.0023991, + "maxlat": 40.7088741, + "maxlon": -74.0023192 + }, + "nodes": [ + 9678321223, + 11375807985, + 11375807986, + 11375807987, + 11375807988, + 11375807948, + 11375807989, + 11375807990, + 11375807991, + 11375807992, + 11375807993, + 11375807994, + 9678321223 + ], + "geometry": [ + { "lat": 40.7088325, "lon": -74.0023641 }, + { "lat": 40.7088198, "lon": -74.0023843 }, + { "lat": 40.7088305, "lon": -74.0023966 }, + { "lat": 40.7088356, "lon": -74.0023991 }, + { "lat": 40.7088415, "lon": -74.0023973 }, + { "lat": 40.7088480, "lon": -74.0023894 }, + { "lat": 40.7088627, "lon": -74.0023698 }, + { "lat": 40.7088660, "lon": -74.0023633 }, + { "lat": 40.7088680, "lon": -74.0023557 }, + { "lat": 40.7088741, "lon": -74.0023192 }, + { "lat": 40.7088498, "lon": -74.0023520 }, + { "lat": 40.7088396, "lon": -74.0023608 }, + { "lat": 40.7088325, "lon": -74.0023641 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1226764953, + "bounds": { + "minlat": 40.7087831, + "minlon": -74.0008975, + "maxlat": 40.7087872, + "maxlon": -74.0008364 + }, + "nodes": [ + 11375808064, + 11375808066, + 11375808067, + 5378284711 + ], + "geometry": [ + { "lat": 40.7087831, "lon": -74.0008975 }, + { "lat": 40.7087866, "lon": -74.0008775 }, + { "lat": 40.7087872, "lon": -74.0008632 }, + { "lat": 40.7087864, "lon": -74.0008364 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-10:00)", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1226764973, + "bounds": { + "minlat": 40.7083391, + "minlon": -74.0005213, + "maxlat": 40.7083786, + "maxlon": -74.0004937 + }, + "nodes": [ + 42438471, + 11375808184, + 11375808183, + 11375808182 + ], + "geometry": [ + { "lat": 40.7083786, "lon": -74.0004937 }, + { "lat": 40.7083630, "lon": -74.0004990 }, + { "lat": 40.7083490, "lon": -74.0005092 }, + { "lat": 40.7083391, "lon": -74.0005213 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Front Street", + "name:ko": "프론트 스트리트", + "name:ru": "Фронт-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "surface": "asphalt", + "wikidata": "Q4493022", + "wikipedia": "en:Front Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1226872296, + "bounds": { + "minlat": 40.8022433, + "minlon": -73.9701845, + "maxlat": 40.8023565, + "maxlon": -73.9700450 + }, + "nodes": [ + 11378635400, + 11377030655, + 11380668226, + 12151100052, + 11377030656, + 11377030657, + 12151100053, + 12151100054, + 11378635400 + ], + "geometry": [ + { "lat": 40.8022761, "lon": -73.9701845 }, + { "lat": 40.8022433, "lon": -73.9701027 }, + { "lat": 40.8022603, "lon": -73.9700905 }, + { "lat": 40.8023080, "lon": -73.9700560 }, + { "lat": 40.8023232, "lon": -73.9700450 }, + { "lat": 40.8023565, "lon": -73.9701249 }, + { "lat": 40.8023373, "lon": -73.9701409 }, + { "lat": 40.8022952, "lon": -73.9701722 }, + { "lat": 40.8022761, "lon": -73.9701845 } + ], + "tags": { + "access": "no", + "area": "yes", + "bicycle": "yes", + "embankment": "yes", + "foot": "yes", + "highway": "pedestrian", + "horse": "yes", + "material": "granite", + "name": "Franz Sigel Stairs", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1227068425, + "bounds": { + "minlat": 40.7151553, + "minlon": -73.9585550, + "maxlat": 40.7152067, + "maxlon": -73.9584658 + }, + "nodes": [ + 11378800218, + 11378800220, + 11378800219 + ], + "geometry": [ + { "lat": 40.7151553, "lon": -73.9584658 }, + { "lat": 40.7151931, "lon": -73.9585315 }, + { "lat": 40.7152067, "lon": -73.9585550 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1227068426, + "bounds": { + "minlat": 40.7152067, + "minlon": -73.9586081, + "maxlat": 40.7152365, + "maxlon": -73.9585550 + }, + "nodes": [ + 11378800219, + 11378800221 + ], + "geometry": [ + { "lat": 40.7152067, "lon": -73.9585550 }, + { "lat": 40.7152365, "lon": -73.9586081 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "service": "driveway", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1227198031, + "bounds": { + "minlat": 40.7139519, + "minlon": -74.0033754, + "maxlat": 40.7140745, + "maxlon": -74.0031760 + }, + "nodes": [ + 11014156145, + 11380040100, + 11380040101, + 11380040102, + 11380040103, + 11380040099, + 11380040104, + 11380040105, + 11380040106, + 11380040107, + 11014156154, + 9377509547, + 11014156152, + 9377509549, + 11014156150, + 11014156149, + 9377509551, + 9377509552, + 9377509535, + 11014156145 + ], + "geometry": [ + { "lat": 40.7140097, "lon": -74.0033754 }, + { "lat": 40.7140666, "lon": -74.0033527 }, + { "lat": 40.7140727, "lon": -74.0033467 }, + { "lat": 40.7140745, "lon": -74.0033380 }, + { "lat": 40.7140727, "lon": -74.0033250 }, + { "lat": 40.7140372, "lon": -74.0032568 }, + { "lat": 40.7139984, "lon": -74.0031823 }, + { "lat": 40.7139931, "lon": -74.0031760 }, + { "lat": 40.7139859, "lon": -74.0031760 }, + { "lat": 40.7139790, "lon": -74.0031805 }, + { "lat": 40.7139519, "lon": -74.0032335 }, + { "lat": 40.7139575, "lon": -74.0032299 }, + { "lat": 40.7139670, "lon": -74.0032274 }, + { "lat": 40.7139727, "lon": -74.0032295 }, + { "lat": 40.7139780, "lon": -74.0032370 }, + { "lat": 40.7139980, "lon": -74.0032940 }, + { "lat": 40.7140166, "lon": -74.0033463 }, + { "lat": 40.7140172, "lon": -74.0033569 }, + { "lat": 40.7140149, "lon": -74.0033666 }, + { "lat": 40.7140097, "lon": -74.0033754 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227198035, + "bounds": { + "minlat": 40.7141457, + "minlon": -74.0033663, + "maxlat": 40.7143515, + "maxlon": -74.0032593 + }, + "nodes": [ + 11380040108, + 11380040117, + 11380040109, + 11380040110, + 11380040111, + 11380040112, + 11380040113, + 11380040118, + 11380040114, + 11380040116, + 11380040115, + 11380040108 + ], + "geometry": [ + { "lat": 40.7143412, "lon": -74.0032593 }, + { "lat": 40.7142178, "lon": -74.0033100 }, + { "lat": 40.7141457, "lon": -74.0033390 }, + { "lat": 40.7141553, "lon": -74.0033516 }, + { "lat": 40.7141736, "lon": -74.0033624 }, + { "lat": 40.7141905, "lon": -74.0033663 }, + { "lat": 40.7142114, "lon": -74.0033643 }, + { "lat": 40.7142308, "lon": -74.0033566 }, + { "lat": 40.7143500, "lon": -74.0033078 }, + { "lat": 40.7143515, "lon": -74.0033046 }, + { "lat": 40.7143513, "lon": -74.0033011 }, + { "lat": 40.7143412, "lon": -74.0032593 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227198040, + "bounds": { + "minlat": 40.7140257, + "minlon": -74.0033183, + "maxlat": 40.7142588, + "maxlon": -74.0029752 + }, + "nodes": [ + 4561384269, + 11380040128, + 11380040129, + 11380040130, + 11380040131, + 11380040126, + 11380040132, + 11380040133, + 11380040134, + 11380040135, + 11380040125, + 9377509573, + 4878781674, + 4687262913, + 4878781668, + 9377509572, + 4878781670, + 7159185483, + 4878781672, + 7159185484, + 4561384268, + 4561384266, + 4561384264, + 4561384265, + 4561384267, + 4561384269 + ], + "geometry": [ + { "lat": 40.7141037, "lon": -74.0029752 }, + { "lat": 40.7140306, "lon": -74.0030960 }, + { "lat": 40.7140257, "lon": -74.0031056 }, + { "lat": 40.7140264, "lon": -74.0031139 }, + { "lat": 40.7140320, "lon": -74.0031291 }, + { "lat": 40.7140766, "lon": -74.0032201 }, + { "lat": 40.7141211, "lon": -74.0033091 }, + { "lat": 40.7141270, "lon": -74.0033183 }, + { "lat": 40.7141340, "lon": -74.0033183 }, + { "lat": 40.7141441, "lon": -74.0033142 }, + { "lat": 40.7142117, "lon": -74.0032883 }, + { "lat": 40.7142588, "lon": -74.0032702 }, + { "lat": 40.7142294, "lon": -74.0032731 }, + { "lat": 40.7142063, "lon": -74.0032690 }, + { "lat": 40.7141827, "lon": -74.0032619 }, + { "lat": 40.7141616, "lon": -74.0032512 }, + { "lat": 40.7141423, "lon": -74.0032354 }, + { "lat": 40.7141252, "lon": -74.0032151 }, + { "lat": 40.7141096, "lon": -74.0031879 }, + { "lat": 40.7140970, "lon": -74.0031586 }, + { "lat": 40.7140874, "lon": -74.0031282 }, + { "lat": 40.7140833, "lon": -74.0030965 }, + { "lat": 40.7140835, "lon": -74.0030626 }, + { "lat": 40.7140873, "lon": -74.0030335 }, + { "lat": 40.7140926, "lon": -74.0030058 }, + { "lat": 40.7141037, "lon": -74.0029752 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227198045, + "bounds": { + "minlat": 40.7142133, + "minlon": -74.0027700, + "maxlat": 40.7142973, + "maxlon": -74.0026596 + }, + "nodes": [ + 11380040146, + 11380040147, + 11380040148, + 11380040149, + 11380040173, + 11380040150, + 11380040151, + 11380040152, + 11380040153, + 11380040154, + 11380040155, + 11380040156, + 11380040157, + 11380040158, + 11380040159, + 11380040165, + 11380040160, + 11380040161, + 11380040162, + 11380040163, + 11380040146 + ], + "geometry": [ + { "lat": 40.7142133, "lon": -74.0027700 }, + { "lat": 40.7142257, "lon": -74.0027537 }, + { "lat": 40.7142414, "lon": -74.0027345 }, + { "lat": 40.7142560, "lon": -74.0027190 }, + { "lat": 40.7142640, "lon": -74.0027119 }, + { "lat": 40.7142774, "lon": -74.0027001 }, + { "lat": 40.7142947, "lon": -74.0026849 }, + { "lat": 40.7142969, "lon": -74.0026793 }, + { "lat": 40.7142973, "lon": -74.0026727 }, + { "lat": 40.7142954, "lon": -74.0026651 }, + { "lat": 40.7142925, "lon": -74.0026617 }, + { "lat": 40.7142881, "lon": -74.0026596 }, + { "lat": 40.7142835, "lon": -74.0026598 }, + { "lat": 40.7142794, "lon": -74.0026620 }, + { "lat": 40.7142576, "lon": -74.0026808 }, + { "lat": 40.7142504, "lon": -74.0026875 }, + { "lat": 40.7142419, "lon": -74.0026955 }, + { "lat": 40.7142293, "lon": -74.0027087 }, + { "lat": 40.7142231, "lon": -74.0027170 }, + { "lat": 40.7142196, "lon": -74.0027280 }, + { "lat": 40.7142133, "lon": -74.0027700 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227227870, + "bounds": { + "minlat": 40.7574406, + "minlon": -73.9750138, + "maxlat": 40.7575808, + "maxlon": -73.9749324 + }, + "nodes": [ + 11380320193, + 11380320186, + 11380320196 + ], + "geometry": [ + { "lat": 40.7575808, "lon": -73.9749324 }, + { "lat": 40.7575237, "lon": -73.9749679 }, + { "lat": 40.7574406, "lon": -73.9750138 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1227461778, + "bounds": { + "minlat": 40.7028746, + "minlon": -74.0135711, + "maxlat": 40.7031188, + "maxlon": -74.0135644 + }, + "nodes": [ + 11382526199, + 11382526202, + 11382526201, + 11382526203, + 11382526200 + ], + "geometry": [ + { "lat": 40.7028746, "lon": -74.0135711 }, + { "lat": 40.7030066, "lon": -74.0135675 }, + { "lat": 40.7030646, "lon": -74.0135659 }, + { "lat": 40.7030896, "lon": -74.0135652 }, + { "lat": 40.7031188, "lon": -74.0135644 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1227555487, + "bounds": { + "minlat": 40.7662245, + "minlon": -73.9522292, + "maxlat": 40.7665441, + "maxlon": -73.9515382 + }, + "nodes": [ + 11383453719, + 11383453720, + 11383453721, + 11383453722 + ], + "geometry": [ + { "lat": 40.7662245, "lon": -73.9522292 }, + { "lat": 40.7663189, "lon": -73.9521613 }, + { "lat": 40.7665441, "lon": -73.9519905 }, + { "lat": 40.7663538, "lon": -73.9515382 } + ], + "tags": { + "highway": "service", + "sidewalk": "right", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1227588718, + "bounds": { + "minlat": 40.7097287, + "minlon": -74.0117165, + "maxlat": 40.7127130, + "maxlon": -74.0096340 + }, + "nodes": [ + 8840333845, + 8840333832, + 10288802699, + 10288802698, + 8840333833, + 10288802574, + 8840333834, + 8840333835, + 10288802697, + 8840333836, + 8840333837, + 10282972477, + 8840333838, + 10288802603, + 8840333839, + 10288802604, + 8840333840, + 10282972184, + 10282972174, + 8840333841, + 8840333842, + 10282972289, + 8840333843, + 10282972179, + 10282972241, + 10282972242, + 10288802630, + 10288802634, + 8840333844, + 10288802635, + 42453952 + ], + "geometry": [ + { "lat": 40.7097287, "lon": -74.0117165 }, + { "lat": 40.7097985, "lon": -74.0116714 }, + { "lat": 40.7098288, "lon": -74.0116552 }, + { "lat": 40.7098787, "lon": -74.0116347 }, + { "lat": 40.7099058, "lon": -74.0116215 }, + { "lat": 40.7102972, "lon": -74.0113614 }, + { "lat": 40.7103438, "lon": -74.0113297 }, + { "lat": 40.7105003, "lon": -74.0112273 }, + { "lat": 40.7109426, "lon": -74.0109336 }, + { "lat": 40.7109888, "lon": -74.0109030 }, + { "lat": 40.7110956, "lon": -74.0108317 }, + { "lat": 40.7114466, "lon": -74.0105962 }, + { "lat": 40.7114907, "lon": -74.0105661 }, + { "lat": 40.7115250, "lon": -74.0105421 }, + { "lat": 40.7115731, "lon": -74.0105082 }, + { "lat": 40.7115877, "lon": -74.0104955 }, + { "lat": 40.7116159, "lon": -74.0104769 }, + { "lat": 40.7116903, "lon": -74.0104326 }, + { "lat": 40.7120245, "lon": -74.0102524 }, + { "lat": 40.7120763, "lon": -74.0102237 }, + { "lat": 40.7121185, "lon": -74.0102008 }, + { "lat": 40.7121297, "lon": -74.0101937 }, + { "lat": 40.7121714, "lon": -74.0101672 }, + { "lat": 40.7122321, "lon": -74.0101268 }, + { "lat": 40.7122560, "lon": -74.0101085 }, + { "lat": 40.7124533, "lon": -74.0099571 }, + { "lat": 40.7126508, "lon": -74.0098003 }, + { "lat": 40.7126718, "lon": -74.0097736 }, + { "lat": 40.7126888, "lon": -74.0097405 }, + { "lat": 40.7127001, "lon": -74.0096994 }, + { "lat": 40.7127130, "lon": -74.0096340 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:left": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1227626316, + "bounds": { + "minlat": 40.7439073, + "minlon": -73.9510823, + "maxlat": 40.7439384, + "maxlon": -73.9509115 + }, + "nodes": [ + 11384101528, + 11384101530, + 11384101529 + ], + "geometry": [ + { "lat": 40.7439073, "lon": -73.9509115 }, + { "lat": 40.7439203, "lon": -73.9509825 }, + { "lat": 40.7439384, "lon": -73.9510823 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1227626319, + "bounds": { + "minlat": 40.7440318, + "minlon": -73.9510343, + "maxlat": 40.7440866, + "maxlon": -73.9507301 + }, + "nodes": [ + 11384101534, + 11384101536, + 11384101537, + 11384101535 + ], + "geometry": [ + { "lat": 40.7440866, "lon": -73.9510343 }, + { "lat": 40.7440686, "lon": -73.9509343 }, + { "lat": 40.7440630, "lon": -73.9509034 }, + { "lat": 40.7440318, "lon": -73.9507301 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227626320, + "bounds": { + "minlat": 40.7436373, + "minlon": -73.9511803, + "maxlat": 40.7438723, + "maxlon": -73.9511037 + }, + "nodes": [ + 11157932401, + 9179073047, + 5538983348 + ], + "geometry": [ + { "lat": 40.7436373, "lon": -73.9511803 }, + { "lat": 40.7436986, "lon": -73.9511604 }, + { "lat": 40.7438723, "lon": -73.9511037 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227626321, + "bounds": { + "minlat": 40.7438723, + "minlon": -73.9511037, + "maxlat": 40.7440866, + "maxlon": -73.9510343 + }, + "nodes": [ + 5538983348, + 11384101529, + 11384101534 + ], + "geometry": [ + { "lat": 40.7438723, "lon": -73.9511037 }, + { "lat": 40.7439384, "lon": -73.9510823 }, + { "lat": 40.7440866, "lon": -73.9510343 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:separation": "kerb", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227626322, + "bounds": { + "minlat": 40.7448268, + "minlon": -73.9507827, + "maxlat": 40.7448588, + "maxlon": -73.9506158 + }, + "nodes": [ + 11384101538, + 11384101540, + 11384101539 + ], + "geometry": [ + { "lat": 40.7448588, "lon": -73.9507827 }, + { "lat": 40.7448383, "lon": -73.9506757 }, + { "lat": 40.7448268, "lon": -73.9506158 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227626323, + "bounds": { + "minlat": 40.7447288, + "minlon": -73.9508152, + "maxlat": 40.7447603, + "maxlon": -73.9506522 + }, + "nodes": [ + 11384101541, + 11384101543, + 11384101542 + ], + "geometry": [ + { "lat": 40.7447288, "lon": -73.9506522 }, + { "lat": 40.7447398, "lon": -73.9507091 }, + { "lat": 40.7447603, "lon": -73.9508152 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227626324, + "bounds": { + "minlat": 40.7446920, + "minlon": -73.9508377, + "maxlat": 40.7447603, + "maxlon": -73.9508152 + }, + "nodes": [ + 9982728598, + 11384101542 + ], + "geometry": [ + { "lat": 40.7446920, "lon": -73.9508377 }, + { "lat": 40.7447603, "lon": -73.9508152 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1227626325, + "bounds": { + "minlat": 40.7447603, + "minlon": -73.9508152, + "maxlat": 40.7448588, + "maxlon": -73.9507827 + }, + "nodes": [ + 11384101542, + 11384101538 + ], + "geometry": [ + { "lat": 40.7447603, "lon": -73.9508152 }, + { "lat": 40.7448588, "lon": -73.9507827 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:separation": "kerb", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1227626326, + "bounds": { + "minlat": 40.7444224, + "minlon": -73.9507303, + "maxlat": 40.7446163, + "maxlon": -73.9506198 + }, + "nodes": [ + 11384101552, + 11384101545, + 11384101553 + ], + "geometry": [ + { "lat": 40.7444224, "lon": -73.9506777 }, + { "lat": 40.7445951, "lon": -73.9506198 }, + { "lat": 40.7446163, "lon": -73.9507303 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227626327, + "bounds": { + "minlat": 40.7444067, + "minlon": -73.9509157, + "maxlat": 40.7444519, + "maxlon": -73.9506829 + }, + "nodes": [ + 11384101549, + 11384101551, + 11384101550 + ], + "geometry": [ + { "lat": 40.7444519, "lon": -73.9509157 }, + { "lat": 40.7444320, "lon": -73.9508135 }, + { "lat": 40.7444067, "lon": -73.9506829 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227626328, + "bounds": { + "minlat": 40.7446163, + "minlon": -73.9508545, + "maxlat": 40.7446402, + "maxlon": -73.9507303 + }, + "nodes": [ + 11384101553, + 11384101548, + 11384101546 + ], + "geometry": [ + { "lat": 40.7446163, "lon": -73.9507303 }, + { "lat": 40.7446201, "lon": -73.9507497 }, + { "lat": 40.7446402, "lon": -73.9508545 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227626329, + "bounds": { + "minlat": 40.7442905, + "minlon": -73.9507219, + "maxlat": 40.7444224, + "maxlon": -73.9506777 + }, + "nodes": [ + 11384101544, + 11384101547, + 11384101550, + 11384101552 + ], + "geometry": [ + { "lat": 40.7442905, "lon": -73.9507219 }, + { "lat": 40.7443491, "lon": -73.9507022 }, + { "lat": 40.7444067, "lon": -73.9506829 }, + { "lat": 40.7444224, "lon": -73.9506777 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227626330, + "bounds": { + "minlat": 40.7444519, + "minlon": -73.9509157, + "maxlat": 40.7446402, + "maxlon": -73.9508545 + }, + "nodes": [ + 11384101549, + 11384101546 + ], + "geometry": [ + { "lat": 40.7444519, "lon": -73.9509157 }, + { "lat": 40.7446402, "lon": -73.9508545 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:separation": "kerb", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227626331, + "bounds": { + "minlat": 40.7446402, + "minlon": -73.9508545, + "maxlat": 40.7446920, + "maxlon": -73.9508377 + }, + "nodes": [ + 11384101546, + 9982728598 + ], + "geometry": [ + { "lat": 40.7446402, "lon": -73.9508545 }, + { "lat": 40.7446920, "lon": -73.9508377 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227626332, + "bounds": { + "minlat": 40.7450298, + "minlon": -73.9507230, + "maxlat": 40.7455101, + "maxlon": -73.9505648 + }, + "nodes": [ + 42860531, + 9982728602, + 5481857858, + 5481857862 + ], + "geometry": [ + { "lat": 40.7450298, "lon": -73.9507230 }, + { "lat": 40.7450885, "lon": -73.9507037 }, + { "lat": 40.7453262, "lon": -73.9506254 }, + { "lat": 40.7455101, "lon": -73.9505648 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1227811497, + "bounds": { + "minlat": 40.7062227, + "minlon": -74.0161482, + "maxlat": 40.7066739, + "maxlon": -74.0159381 + }, + "nodes": [ + 11385942330, + 4145434709, + 4145434710, + 42451370 + ], + "geometry": [ + { "lat": 40.7062227, "lon": -74.0161482 }, + { "lat": 40.7065099, "lon": -74.0160454 }, + { "lat": 40.7065604, "lon": -74.0160175 }, + { "lat": 40.7066739, "lon": -74.0159381 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "30 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "tiger:county": "New York, NY", + "tiger:name_base": "West", + "tiger:name_base_1": "State Highway 9A", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1227811498, + "bounds": { + "minlat": 40.7062258, + "minlon": -74.0162777, + "maxlat": 40.7064673, + "maxlon": -74.0162608 + }, + "nodes": [ + 588593353, + 11416159812, + 11385942358, + 3790255299, + 11385942331, + 11385942332 + ], + "geometry": [ + { "lat": 40.7064673, "lon": -74.0162777 }, + { "lat": 40.7064515, "lon": -74.0162752 }, + { "lat": 40.7063915, "lon": -74.0162656 }, + { "lat": 40.7063232, "lon": -74.0162608 }, + { "lat": 40.7062668, "lon": -74.0162636 }, + { "lat": 40.7062258, "lon": -74.0162702 } + ], + "tags": { + "destination": "FDR Drive north", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "30 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "note": "this is supposed to be a local truck route but signs say no trucks", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1227811501, + "bounds": { + "minlat": 40.7063920, + "minlon": -74.0162063, + "maxlat": 40.7066197, + "maxlon": -74.0160680 + }, + "nodes": [ + 11385942334, + 10693842139, + 11385942337, + 11385942345, + 4899841670, + 11385942344, + 11385942343, + 4899841680, + 11385942333, + 10693842136, + 4899841657, + 11385942338, + 11385942339, + 11385942340, + 4899841681, + 11385942336, + 11385942335, + 11385942334 + ], + "geometry": [ + { "lat": 40.7064595, "lon": -74.0161955 }, + { "lat": 40.7064348, "lon": -74.0161988 }, + { "lat": 40.7063920, "lon": -74.0162063 }, + { "lat": 40.7063972, "lon": -74.0162030 }, + { "lat": 40.7064003, "lon": -74.0161978 }, + { "lat": 40.7064025, "lon": -74.0161902 }, + { "lat": 40.7064023, "lon": -74.0161811 }, + { "lat": 40.7063944, "lon": -74.0161453 }, + { "lat": 40.7065539, "lon": -74.0160879 }, + { "lat": 40.7065746, "lon": -74.0160810 }, + { "lat": 40.7066137, "lon": -74.0160680 }, + { "lat": 40.7066086, "lon": -74.0160729 }, + { "lat": 40.7066050, "lon": -74.0160814 }, + { "lat": 40.7066052, "lon": -74.0160927 }, + { "lat": 40.7066197, "lon": -74.0161541 }, + { "lat": 40.7065616, "lon": -74.0161751 }, + { "lat": 40.7065120, "lon": -74.0161880 }, + { "lat": 40.7064595, "lon": -74.0161955 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1227811507, + "bounds": { + "minlat": 40.7050741, + "minlon": -74.0164593, + "maxlat": 40.7052235, + "maxlon": -74.0164260 + }, + "nodes": [ + 42451375, + 4145432047, + 4145432051, + 11385942380 + ], + "geometry": [ + { "lat": 40.7050741, "lon": -74.0164593 }, + { "lat": 40.7051137, "lon": -74.0164591 }, + { "lat": 40.7051577, "lon": -74.0164509 }, + { "lat": 40.7052235, "lon": -74.0164260 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1227811508, + "bounds": { + "minlat": 40.7051367, + "minlon": -74.0168143, + "maxlat": 40.7052257, + "maxlon": -74.0167779 + }, + "nodes": [ + 11385942381, + 587987721 + ], + "geometry": [ + { "lat": 40.7052257, "lon": -74.0167779 }, + { "lat": 40.7051367, "lon": -74.0168143 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "destination": "Battery Place", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1227811515, + "bounds": { + "minlat": 40.7049880, + "minlon": -74.0164177, + "maxlat": 40.7065932, + "maxlon": -74.0156614 + }, + "nodes": [ + 2824972489, + 11385942396, + 11385942397, + 9371204349, + 7706733705, + 7706733704, + 7706733703, + 7706733702, + 7706733701, + 9371204331, + 7706733700, + 7706733699, + 7706733698, + 7706733697, + 9371193688, + 7706733696, + 7706733695, + 7706733694, + 4876524523, + 7706733693, + 7706733692, + 7706733691, + 7706733690, + 7706733689, + 7706733688, + 7706733687, + 7706733686, + 7706733685, + 7706739226, + 10693842135, + 11385942398, + 11385942399, + 11385942400, + 7706689977, + 7706689976, + 10693842133, + 7706689975, + 11374474029, + 2824972943, + 2824972933, + 3755522853, + 2824972932, + 3755581890, + 11385942369, + 2824972926, + 2824972925, + 1430380089, + 12337133731, + 2824972490, + 12336967628, + 7706983364, + 7706983351, + 7706983353, + 7706983357, + 7706983356, + 7706983355, + 7706983354, + 7706983362, + 7706983352, + 7706983363, + 12336967625, + 2824972489 + ], + "geometry": [ + { "lat": 40.7050662, "lon": -74.0156998 }, + { "lat": 40.7050609, "lon": -74.0156744 }, + { "lat": 40.7050582, "lon": -74.0156614 }, + { "lat": 40.7050477, "lon": -74.0156655 }, + { "lat": 40.7050403, "lon": -74.0156684 }, + { "lat": 40.7050301, "lon": -74.0156765 }, + { "lat": 40.7050256, "lon": -74.0156845 }, + { "lat": 40.7050233, "lon": -74.0156939 }, + { "lat": 40.7050223, "lon": -74.0157066 }, + { "lat": 40.7050224, "lon": -74.0157583 }, + { "lat": 40.7050225, "lon": -74.0158307 }, + { "lat": 40.7050187, "lon": -74.0159527 }, + { "lat": 40.7050126, "lon": -74.0160278 }, + { "lat": 40.7049974, "lon": -74.0162082 }, + { "lat": 40.7049887, "lon": -74.0163011 }, + { "lat": 40.7049880, "lon": -74.0163081 }, + { "lat": 40.7049895, "lon": -74.0163249 }, + { "lat": 40.7049961, "lon": -74.0163457 }, + { "lat": 40.7050009, "lon": -74.0163554 }, + { "lat": 40.7050065, "lon": -74.0163668 }, + { "lat": 40.7050169, "lon": -74.0163795 }, + { "lat": 40.7050334, "lon": -74.0163956 }, + { "lat": 40.7050487, "lon": -74.0164047 }, + { "lat": 40.7050683, "lon": -74.0164124 }, + { "lat": 40.7050927, "lon": -74.0164177 }, + { "lat": 40.7051239, "lon": -74.0164167 }, + { "lat": 40.7051445, "lon": -74.0164120 }, + { "lat": 40.7051923, "lon": -74.0163966 }, + { "lat": 40.7059662, "lon": -74.0160978 }, + { "lat": 40.7065390, "lon": -74.0159211 }, + { "lat": 40.7065756, "lon": -74.0159093 }, + { "lat": 40.7065870, "lon": -74.0158977 }, + { "lat": 40.7065928, "lon": -74.0158818 }, + { "lat": 40.7065932, "lon": -74.0158649 }, + { "lat": 40.7065917, "lon": -74.0158495 }, + { "lat": 40.7065853, "lon": -74.0158229 }, + { "lat": 40.7065757, "lon": -74.0157834 }, + { "lat": 40.7065615, "lon": -74.0157893 }, + { "lat": 40.7065514, "lon": -74.0157935 }, + { "lat": 40.7063622, "lon": -74.0158720 }, + { "lat": 40.7063479, "lon": -74.0158131 }, + { "lat": 40.7063467, "lon": -74.0158080 }, + { "lat": 40.7062869, "lon": -74.0158328 }, + { "lat": 40.7062567, "lon": -74.0158453 }, + { "lat": 40.7061511, "lon": -74.0158891 }, + { "lat": 40.7061659, "lon": -74.0159503 }, + { "lat": 40.7053712, "lon": -74.0162584 }, + { "lat": 40.7052289, "lon": -74.0163137 }, + { "lat": 40.7051912, "lon": -74.0163283 }, + { "lat": 40.7051750, "lon": -74.0162469 }, + { "lat": 40.7051556, "lon": -74.0161495 }, + { "lat": 40.7051628, "lon": -74.0161475 }, + { "lat": 40.7051544, "lon": -74.0161040 }, + { "lat": 40.7051459, "lon": -74.0160611 }, + { "lat": 40.7051254, "lon": -74.0160686 }, + { "lat": 40.7051053, "lon": -74.0159662 }, + { "lat": 40.7051256, "lon": -74.0159591 }, + { "lat": 40.7051154, "lon": -74.0159080 }, + { "lat": 40.7051046, "lon": -74.0158542 }, + { "lat": 40.7050974, "lon": -74.0158566 }, + { "lat": 40.7050809, "lon": -74.0157739 }, + { "lat": 40.7050662, "lon": -74.0156998 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1227811516, + "bounds": { + "minlat": 40.7050582, + "minlon": -74.0157935, + "maxlat": 40.7065757, + "maxlon": -74.0151424 + }, + "nodes": [ + 7706689975, + 11374474029, + 2824972943, + 3755522878, + 3755522876, + 2824972937, + 2824972928, + 3755522837, + 2824972929, + 11385942319, + 7725157382, + 7725157383, + 7725157384, + 7725259185, + 7725259186, + 7725259187, + 2824972917, + 7706689974, + 2824972913, + 2824972495, + 2824972491, + 2824972489, + 11385942396, + 11385942397, + 7706733706, + 11384283350, + 7706733708, + 7706733709, + 7706733710, + 7706733711, + 7706689975 + ], + "geometry": [ + { "lat": 40.7065757, "lon": -74.0157834 }, + { "lat": 40.7065615, "lon": -74.0157893 }, + { "lat": 40.7065514, "lon": -74.0157935 }, + { "lat": 40.7064267, "lon": -74.0152742 }, + { "lat": 40.7064169, "lon": -74.0152334 }, + { "lat": 40.7064051, "lon": -74.0151855 }, + { "lat": 40.7062163, "lon": -74.0152643 }, + { "lat": 40.7062277, "lon": -74.0153119 }, + { "lat": 40.7062324, "lon": -74.0153313 }, + { "lat": 40.7061607, "lon": -74.0153611 }, + { "lat": 40.7061394, "lon": -74.0153699 }, + { "lat": 40.7061203, "lon": -74.0152892 }, + { "lat": 40.7060191, "lon": -74.0153301 }, + { "lat": 40.7060343, "lon": -74.0153915 }, + { "lat": 40.7060791, "lon": -74.0153734 }, + { "lat": 40.7060837, "lon": -74.0153930 }, + { "lat": 40.7060257, "lon": -74.0154170 }, + { "lat": 40.7060233, "lon": -74.0154183 }, + { "lat": 40.7060047, "lon": -74.0153361 }, + { "lat": 40.7054735, "lon": -74.0155431 }, + { "lat": 40.7052324, "lon": -74.0156350 }, + { "lat": 40.7050662, "lon": -74.0156998 }, + { "lat": 40.7050609, "lon": -74.0156744 }, + { "lat": 40.7050582, "lon": -74.0156614 }, + { "lat": 40.7063833, "lon": -74.0151440 }, + { "lat": 40.7063918, "lon": -74.0151424 }, + { "lat": 40.7064054, "lon": -74.0151440 }, + { "lat": 40.7064143, "lon": -74.0151504 }, + { "lat": 40.7064222, "lon": -74.0151615 }, + { "lat": 40.7064278, "lon": -74.0151752 }, + { "lat": 40.7065757, "lon": -74.0157834 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1227812996, + "bounds": { + "minlat": 40.7066943, + "minlon": -74.0145522, + "maxlat": 40.7069126, + "maxlon": -74.0144073 + }, + "nodes": [ + 11385951553, + 11385951554, + 11385951555, + 11385951556, + 11385951557, + 11385951558, + 11385951559, + 11385951560, + 2824641236, + 2824641233, + 2824641232, + 2824641230, + 2824641229, + 2824641227, + 2824641224, + 2824641222, + 2824641215, + 11385951553 + ], + "geometry": [ + { "lat": 40.7067309, "lon": -74.0144073 }, + { "lat": 40.7066992, "lon": -74.0144197 }, + { "lat": 40.7066956, "lon": -74.0144244 }, + { "lat": 40.7066943, "lon": -74.0144296 }, + { "lat": 40.7067083, "lon": -74.0144658 }, + { "lat": 40.7067211, "lon": -74.0144810 }, + { "lat": 40.7067375, "lon": -74.0144905 }, + { "lat": 40.7068052, "lon": -74.0145142 }, + { "lat": 40.7069126, "lon": -74.0145522 }, + { "lat": 40.7068969, "lon": -74.0145419 }, + { "lat": 40.7068895, "lon": -74.0145358 }, + { "lat": 40.7068756, "lon": -74.0145216 }, + { "lat": 40.7068692, "lon": -74.0145137 }, + { "lat": 40.7068578, "lon": -74.0144962 }, + { "lat": 40.7068482, "lon": -74.0144769 }, + { "lat": 40.7068282, "lon": -74.0144215 }, + { "lat": 40.7067431, "lon": -74.0144573 }, + { "lat": 40.7067309, "lon": -74.0144073 } + ], + "tags": { + "access": "private", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1227812998, + "bounds": { + "minlat": 40.7066781, + "minlon": -74.0143730, + "maxlat": 40.7067186, + "maxlon": -74.0143173 + }, + "nodes": [ + 11385951563, + 11385951564, + 11385951565, + 11385951566, + 10315971021, + 10315971020, + 2824641213, + 11385951563 + ], + "geometry": [ + { "lat": 40.7067186, "lon": -74.0143568 }, + { "lat": 40.7066847, "lon": -74.0143730 }, + { "lat": 40.7066799, "lon": -74.0143716 }, + { "lat": 40.7066781, "lon": -74.0143667 }, + { "lat": 40.7066802, "lon": -74.0143606 }, + { "lat": 40.7067081, "lon": -74.0143173 }, + { "lat": 40.7067140, "lon": -74.0143382 }, + { "lat": 40.7067186, "lon": -74.0143568 } + ], + "tags": { + "access": "private", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1227941702, + "bounds": { + "minlat": 40.8170728, + "minlon": -73.9570440, + "maxlat": 40.8176025, + "maxlon": -73.9558163 + }, + "nodes": [ + 42438224, + 9459407318, + 2541754747, + 42428873 + ], + "geometry": [ + { "lat": 40.8170728, "lon": -73.9558163 }, + { "lat": 40.8174577, "lon": -73.9567434 }, + { "lat": 40.8175078, "lon": -73.9568442 }, + { "lat": 40.8176025, "lon": -73.9570440 } + ], + "tags": { + "highway": "residential", + "name": "West 131st Street" + } +}, +{ + "type": "way", + "id": 1227941703, + "bounds": { + "minlat": 40.8169831, + "minlon": -73.9574793, + "maxlat": 40.8176025, + "maxlon": -73.9570440 + }, + "nodes": [ + 42428873, + 10128823996, + 7732654932 + ], + "geometry": [ + { "lat": 40.8176025, "lon": -73.9570440 }, + { "lat": 40.8175348, "lon": -73.9570916 }, + { "lat": 40.8169831, "lon": -73.9574793 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1228493204, + "bounds": { + "minlat": 40.7186103, + "minlon": -73.9071798, + "maxlat": 40.7188802, + "maxlon": -73.9067277 + }, + "nodes": [ + 11392563455, + 11392563457, + 11392563456 + ], + "geometry": [ + { "lat": 40.7186103, "lon": -73.9071798 }, + { "lat": 40.7188519, "lon": -73.9067913 }, + { "lat": 40.7188802, "lon": -73.9067277 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1228502676, + "bounds": { + "minlat": 40.7672027, + "minlon": -73.9767027, + "maxlat": 40.7683576, + "maxlon": -73.9757560 + }, + "nodes": [ + 42442142, + 9906929086, + 9906929085, + 4332679981, + 73787300, + 9906929084, + 1283225249, + 9906929083, + 582992247, + 9906929082, + 9906929081, + 1283225243, + 9906929088, + 73787302, + 9906929087, + 4332679976, + 3898029174 + ], + "geometry": [ + { "lat": 40.7672027, "lon": -73.9767027 }, + { "lat": 40.7672238, "lon": -73.9766457 }, + { "lat": 40.7672449, "lon": -73.9765950 }, + { "lat": 40.7672841, "lon": -73.9765216 }, + { "lat": 40.7673377, "lon": -73.9764451 }, + { "lat": 40.7673881, "lon": -73.9763812 }, + { "lat": 40.7674328, "lon": -73.9763283 }, + { "lat": 40.7674816, "lon": -73.9762768 }, + { "lat": 40.7675347, "lon": -73.9762287 }, + { "lat": 40.7675909, "lon": -73.9761863 }, + { "lat": 40.7676398, "lon": -73.9761576 }, + { "lat": 40.7677036, "lon": -73.9761230 }, + { "lat": 40.7680602, "lon": -73.9759336 }, + { "lat": 40.7681606, "lon": -73.9758742 }, + { "lat": 40.7682353, "lon": -73.9758317 }, + { "lat": 40.7682839, "lon": -73.9758036 }, + { "lat": 40.7683576, "lon": -73.9757560 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Center Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 1228547852, + "bounds": { + "minlat": 40.7140348, + "minlon": -74.0021493, + "maxlat": 40.7141431, + "maxlon": -74.0020183 + }, + "nodes": [ + 11393290112, + 11393290173, + 11393290114, + 11393290172, + 11393290113 + ], + "geometry": [ + { "lat": 40.7141431, "lon": -74.0020183 }, + { "lat": 40.7140932, "lon": -74.0020787 }, + { "lat": 40.7140815, "lon": -74.0020928 }, + { "lat": 40.7140674, "lon": -74.0021099 }, + { "lat": 40.7140348, "lon": -74.0021493 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1228588549, + "bounds": { + "minlat": 40.8457868, + "minlon": -73.9714401, + "maxlat": 40.8458287, + "maxlon": -73.9712949 + }, + "nodes": [ + 11393694875, + 13523713602, + 11393694878 + ], + "geometry": [ + { "lat": 40.8457868, "lon": -73.9712949 }, + { "lat": 40.8458154, "lon": -73.9713941 }, + { "lat": 40.8458287, "lon": -73.9714401 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1228588550, + "bounds": { + "minlat": 40.8458287, + "minlon": -73.9714401, + "maxlat": 40.8459367, + "maxlon": -73.9713656 + }, + "nodes": [ + 11393694878, + 11393694879 + ], + "geometry": [ + { "lat": 40.8458287, "lon": -73.9714401 }, + { "lat": 40.8459367, "lon": -73.9713656 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1228693942, + "bounds": { + "minlat": 40.7133800, + "minlon": -73.9990562, + "maxlat": 40.7135233, + "maxlon": -73.9986438 + }, + "nodes": [ + 1773055865, + 11153640064, + 7476968849, + 11398600402, + 9373577364, + 11394592600, + 7611215246 + ], + "geometry": [ + { "lat": 40.7135233, "lon": -73.9986438 }, + { "lat": 40.7134586, "lon": -73.9987895 }, + { "lat": 40.7134283, "lon": -73.9988587 }, + { "lat": 40.7134065, "lon": -73.9989137 }, + { "lat": 40.7133908, "lon": -73.9989767 }, + { "lat": 40.7133854, "lon": -73.9990165 }, + { "lat": 40.7133800, "lon": -73.9990562 } + ], + "tags": { + "access": "no", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "emergency": "designated", + "foot": "yes", + "highway": "residential", + "lanes": "2", + "motor_vehicle": "yes", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "old_name": "Chatham Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 1228693943, + "bounds": { + "minlat": 40.7133586, + "minlon": -73.9992442, + "maxlat": 40.7133800, + "maxlon": -73.9990562 + }, + "nodes": [ + 7611215246, + 11394592598, + 1773055856 + ], + "geometry": [ + { "lat": 40.7133800, "lon": -73.9990562 }, + { "lat": 40.7133657, "lon": -73.9991818 }, + { "lat": 40.7133586, "lon": -73.9992442 } + ], + "tags": { + "access": "no", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "emergency": "designated", + "foot": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "10 mph", + "motor_vehicle": "yes", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "old_name": "Chatham Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 1228693946, + "bounds": { + "minlat": 40.7130782, + "minlon": -74.0008317, + "maxlat": 40.7133032, + "maxlon": -73.9995931 + }, + "nodes": [ + 11394592619, + 11394592620, + 11394592621, + 11394592622, + 11394592623, + 11394592626, + 11394592624, + 11394592625, + 7476968855 + ], + "geometry": [ + { "lat": 40.7133032, "lon": -73.9995931 }, + { "lat": 40.7132991, "lon": -73.9999165 }, + { "lat": 40.7132879, "lon": -74.0000141 }, + { "lat": 40.7132132, "lon": -74.0004667 }, + { "lat": 40.7131698, "lon": -74.0007005 }, + { "lat": 40.7131605, "lon": -74.0007375 }, + { "lat": 40.7131495, "lon": -74.0007603 }, + { "lat": 40.7131214, "lon": -74.0008006 }, + { "lat": 40.7130782, "lon": -74.0008317 } + ], + "tags": { + "access": "no", + "foot": "yes", + "highway": "service", + "maxspeed": "10 mph", + "motor_vehicle": "private", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1228693948, + "bounds": { + "minlat": 40.7133032, + "minlon": -73.9995931, + "maxlat": 40.7133586, + "maxlon": -73.9992442 + }, + "nodes": [ + 1773055856, + 11394592619 + ], + "geometry": [ + { "lat": 40.7133586, "lon": -73.9992442 }, + { "lat": 40.7133032, "lon": -73.9995931 } + ], + "tags": { + "access": "no", + "bus": "no", + "bus:conditional": "yes @ (operator=Metropolitan Transportation Authority)", + "emergency": "designated", + "foot": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "10 mph", + "motor_vehicle": "private", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "old_name": "Chatham Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 1228693949, + "bounds": { + "minlat": 40.7129024, + "minlon": -74.0007929, + "maxlat": 40.7130838, + "maxlon": -74.0001858 + }, + "nodes": [ + 11394592628, + 11394592629, + 11394592630, + 11394592627, + 11394592631, + 11394592632, + 11394592633, + 11394592634, + 11394592645, + 11394592635, + 11394592636, + 9369042105, + 11394592637, + 11394592638, + 11394592639, + 11394592640, + 11394592641, + 11394592642, + 11394592628 + ], + "geometry": [ + { "lat": 40.7130838, "lon": -74.0001858 }, + { "lat": 40.7130537, "lon": -74.0003697 }, + { "lat": 40.7130217, "lon": -74.0005399 }, + { "lat": 40.7129801, "lon": -74.0007568 }, + { "lat": 40.7129757, "lon": -74.0007764 }, + { "lat": 40.7129735, "lon": -74.0007855 }, + { "lat": 40.7129691, "lon": -74.0007908 }, + { "lat": 40.7129647, "lon": -74.0007915 }, + { "lat": 40.7129110, "lon": -74.0007927 }, + { "lat": 40.7129024, "lon": -74.0007929 }, + { "lat": 40.7129084, "lon": -74.0007903 }, + { "lat": 40.7129136, "lon": -74.0007848 }, + { "lat": 40.7129209, "lon": -74.0007780 }, + { "lat": 40.7129260, "lon": -74.0007687 }, + { "lat": 40.7129357, "lon": -74.0007419 }, + { "lat": 40.7130101, "lon": -74.0005222 }, + { "lat": 40.7130194, "lon": -74.0004879 }, + { "lat": 40.7130315, "lon": -74.0004374 }, + { "lat": 40.7130838, "lon": -74.0001858 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1228693954, + "bounds": { + "minlat": 40.7116579, + "minlon": -74.0040860, + "maxlat": 40.7116862, + "maxlon": -74.0040281 + }, + "nodes": [ + 11394592659, + 11394592660, + 11394592662, + 8262309345, + 11394592661, + 11394592659 + ], + "geometry": [ + { "lat": 40.7116772, "lon": -74.0040860 }, + { "lat": 40.7116862, "lon": -74.0040631 }, + { "lat": 40.7116810, "lon": -74.0040566 }, + { "lat": 40.7116579, "lon": -74.0040281 }, + { "lat": 40.7116738, "lon": -74.0040758 }, + { "lat": 40.7116772, "lon": -74.0040860 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1228798261, + "bounds": { + "minlat": 40.7471813, + "minlon": -73.9718165, + "maxlat": 40.7478013, + "maxlon": -73.9713675 + }, + "nodes": [ + 11395572689, + 11395572690, + 11395572691, + 11395572692 + ], + "geometry": [ + { "lat": 40.7478013, "lon": -73.9713675 }, + { "lat": 40.7477328, "lon": -73.9714190 }, + { "lat": 40.7472320, "lon": -73.9717814 }, + { "lat": 40.7471813, "lon": -73.9718165 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1228801973, + "bounds": { + "minlat": 40.7575336, + "minlon": -73.9650724, + "maxlat": 40.7575923, + "maxlon": -73.9650288 + }, + "nodes": [ + 11395670528, + 11395670529, + 11395670530 + ], + "geometry": [ + { "lat": 40.7575336, "lon": -73.9650724 }, + { "lat": 40.7575846, "lon": -73.9650351 }, + { "lat": 40.7575923, "lon": -73.9650288 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1228926942, + "bounds": { + "minlat": 40.7125691, + "minlon": -74.0023624, + "maxlat": 40.7129161, + "maxlon": -74.0009736 + }, + "nodes": [ + 3973686309, + 11396730099, + 11396730100, + 11396730101, + 11396730102, + 11396730103, + 11396730104, + 11396730105, + 11396730106, + 11396730107, + 11396730108, + 11396730109, + 11396730110, + 9369042057, + 3567498673, + 1251908601, + 1251908598, + 3567495120, + 1251908600, + 9390090842, + 1251908635, + 3567503250, + 11396764593, + 11396764591, + 11396730111, + 11396730112, + 11396730113, + 11396730114, + 3973686309 + ], + "geometry": [ + { "lat": 40.7128544, "lon": -74.0009755 }, + { "lat": 40.7129110, "lon": -74.0009736 }, + { "lat": 40.7129144, "lon": -74.0009752 }, + { "lat": 40.7129161, "lon": -74.0009791 }, + { "lat": 40.7129161, "lon": -74.0009855 }, + { "lat": 40.7128675, "lon": -74.0012108 }, + { "lat": 40.7127891, "lon": -74.0015714 }, + { "lat": 40.7127141, "lon": -74.0019189 }, + { "lat": 40.7126877, "lon": -74.0020401 }, + { "lat": 40.7126635, "lon": -74.0021380 }, + { "lat": 40.7126405, "lon": -74.0022170 }, + { "lat": 40.7126183, "lon": -74.0022918 }, + { "lat": 40.7125927, "lon": -74.0023624 }, + { "lat": 40.7125817, "lon": -74.0023386 }, + { "lat": 40.7125691, "lon": -74.0023106 }, + { "lat": 40.7125879, "lon": -74.0022508 }, + { "lat": 40.7126234, "lon": -74.0021372 }, + { "lat": 40.7126508, "lon": -74.0020277 }, + { "lat": 40.7126732, "lon": -74.0019277 }, + { "lat": 40.7126889, "lon": -74.0018525 }, + { "lat": 40.7127497, "lon": -74.0015783 }, + { "lat": 40.7128013, "lon": -74.0013331 }, + { "lat": 40.7128112, "lon": -74.0012839 }, + { "lat": 40.7128288, "lon": -74.0012012 }, + { "lat": 40.7128685, "lon": -74.0010140 }, + { "lat": 40.7128699, "lon": -74.0010015 }, + { "lat": 40.7128680, "lon": -74.0009907 }, + { "lat": 40.7128632, "lon": -74.0009818 }, + { "lat": 40.7128544, "lon": -74.0009755 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1228926993, + "bounds": { + "minlat": 40.7117402, + "minlon": -74.0013902, + "maxlat": 40.7118347, + "maxlon": -74.0010891 + }, + "nodes": [ + 11396764704, + 11396764727, + 11396764728, + 11396764729, + 11396764730, + 11396764731, + 9369042179, + 11396764732, + 11396764604, + 11396764612, + 11396764603, + 11396764685, + 11396764720, + 11396764719, + 11396764718, + 11396764705, + 11396764704 + ], + "geometry": [ + { "lat": 40.7118347, "lon": -74.0013499 }, + { "lat": 40.7118186, "lon": -74.0013653 }, + { "lat": 40.7118012, "lon": -74.0013768 }, + { "lat": 40.7117853, "lon": -74.0013847 }, + { "lat": 40.7117671, "lon": -74.0013894 }, + { "lat": 40.7117402, "lon": -74.0013902 }, + { "lat": 40.7117584, "lon": -74.0011118 }, + { "lat": 40.7117595, "lon": -74.0010891 }, + { "lat": 40.7117653, "lon": -74.0010891 }, + { "lat": 40.7117959, "lon": -74.0010911 }, + { "lat": 40.7118094, "lon": -74.0010920 }, + { "lat": 40.7118089, "lon": -74.0011139 }, + { "lat": 40.7118027, "lon": -74.0011211 }, + { "lat": 40.7117918, "lon": -74.0013067 }, + { "lat": 40.7118059, "lon": -74.0013344 }, + { "lat": 40.7118214, "lon": -74.0013211 }, + { "lat": 40.7118347, "lon": -74.0013499 } + ], + "tags": { + "access": "private", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1228926994, + "bounds": { + "minlat": 40.7117595, + "minlon": -74.0010920, + "maxlat": 40.7118149, + "maxlon": -74.0009678 + }, + "nodes": [ + 11396764603, + 11396764612, + 11396764604, + 11396764732, + 9369042182, + 11396764733, + 11396764734, + 11396764611, + 11396764735, + 11396764736, + 9369042176, + 11396764737, + 11396764738, + 11396764603 + ], + "geometry": [ + { "lat": 40.7118094, "lon": -74.0010920 }, + { "lat": 40.7117959, "lon": -74.0010911 }, + { "lat": 40.7117653, "lon": -74.0010891 }, + { "lat": 40.7117595, "lon": -74.0010891 }, + { "lat": 40.7117601, "lon": -74.0010766 }, + { "lat": 40.7117622, "lon": -74.0010351 }, + { "lat": 40.7117660, "lon": -74.0010153 }, + { "lat": 40.7117693, "lon": -74.0010060 }, + { "lat": 40.7117761, "lon": -74.0009941 }, + { "lat": 40.7117883, "lon": -74.0009816 }, + { "lat": 40.7118016, "lon": -74.0009710 }, + { "lat": 40.7118115, "lon": -74.0009679 }, + { "lat": 40.7118149, "lon": -74.0009678 }, + { "lat": 40.7118094, "lon": -74.0010920 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1228926996, + "bounds": { + "minlat": 40.7122467, + "minlon": -74.0011665, + "maxlat": 40.7123079, + "maxlon": -74.0009259 + }, + "nodes": [ + 11396764744, + 11396764745, + 11396764746, + 11396764747 + ], + "geometry": [ + { "lat": 40.7123079, "lon": -74.0011665 }, + { "lat": 40.7122557, "lon": -74.0010450 }, + { "lat": 40.7122468, "lon": -74.0010033 }, + { "lat": 40.7122467, "lon": -74.0009259 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1228927006, + "bounds": { + "minlat": 40.7113911, + "minlon": -74.0032176, + "maxlat": 40.7116073, + "maxlon": -74.0027538 + }, + "nodes": [ + 12381062843, + 12381062834, + 12381062837, + 11396764776, + 11396764777, + 11396764778, + 11396764779, + 11396764781, + 8279851331, + 11396764780, + 10960853650, + 10960853651, + 11396764782, + 12381080124, + 12381080125, + 12381062843 + ], + "geometry": [ + { "lat": 40.7114115, "lon": -74.0032176 }, + { "lat": 40.7114042, "lon": -74.0032174 }, + { "lat": 40.7113911, "lon": -74.0032106 }, + { "lat": 40.7115061, "lon": -74.0029760 }, + { "lat": 40.7115343, "lon": -74.0028979 }, + { "lat": 40.7115628, "lon": -74.0028081 }, + { "lat": 40.7115778, "lon": -74.0027538 }, + { "lat": 40.7115905, "lon": -74.0027598 }, + { "lat": 40.7116073, "lon": -74.0027679 }, + { "lat": 40.7115938, "lon": -74.0028132 }, + { "lat": 40.7115856, "lon": -74.0028406 }, + { "lat": 40.7115531, "lon": -74.0029347 }, + { "lat": 40.7115459, "lon": -74.0029526 }, + { "lat": 40.7114574, "lon": -74.0031272 }, + { "lat": 40.7114548, "lon": -74.0031322 }, + { "lat": 40.7114115, "lon": -74.0032176 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1228927007, + "bounds": { + "minlat": 40.7113087, + "minlon": -74.0031534, + "maxlat": 40.7113967, + "maxlon": -74.0030237 + }, + "nodes": [ + 11396764787, + 11396764788, + 11396764789, + 11396764790, + 11396764792, + 11396764791, + 8262309493, + 11396764793, + 11396764787 + ], + "geometry": [ + { "lat": 40.7113352, "lon": -74.0031534 }, + { "lat": 40.7113513, "lon": -74.0031268 }, + { "lat": 40.7113780, "lon": -74.0030818 }, + { "lat": 40.7113967, "lon": -74.0030430 }, + { "lat": 40.7113873, "lon": -74.0030354 }, + { "lat": 40.7113728, "lon": -74.0030237 }, + { "lat": 40.7113087, "lon": -74.0031257 }, + { "lat": 40.7113218, "lon": -74.0031394 }, + { "lat": 40.7113352, "lon": -74.0031534 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1228927009, + "bounds": { + "minlat": 40.7114079, + "minlon": -74.0029694, + "maxlat": 40.7115170, + "maxlon": -74.0027088 + }, + "nodes": [ + 11396764794, + 11396764799, + 8279851332, + 9369042065, + 9369042066, + 10960879837, + 10960879839, + 11396764798, + 11396764795, + 11396764796, + 11396764797, + 11396764794 + ], + "geometry": [ + { "lat": 40.7114412, "lon": -74.0029694 }, + { "lat": 40.7114256, "lon": -74.0029558 }, + { "lat": 40.7114079, "lon": -74.0029403 }, + { "lat": 40.7114377, "lon": -74.0028724 }, + { "lat": 40.7114652, "lon": -74.0027896 }, + { "lat": 40.7114861, "lon": -74.0027088 }, + { "lat": 40.7114938, "lon": -74.0027125 }, + { "lat": 40.7115038, "lon": -74.0027174 }, + { "lat": 40.7115170, "lon": -74.0027239 }, + { "lat": 40.7115018, "lon": -74.0027889 }, + { "lat": 40.7114727, "lon": -74.0028842 }, + { "lat": 40.7114412, "lon": -74.0029694 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1228927333, + "bounds": { + "minlat": 40.7117772, + "minlon": -74.0037687, + "maxlat": 40.7122744, + "maxlon": -74.0030067 + }, + "nodes": [ + 11396760633, + 11394594186, + 9369042053, + 11396760634, + 9369042159, + 9369042158, + 1541938010, + 12381062838, + 1541937972, + 1541937995, + 12381062835, + 1541938107, + 11394594251, + 11396760635, + 11396760636, + 11396760637, + 11396760638, + 11396760639, + 11396760640, + 11396760642, + 11396760641, + 11394594172, + 11394594173, + 11394594174, + 11394594175, + 11396760633 + ], + "geometry": [ + { "lat": 40.7122744, "lon": -74.0030373 }, + { "lat": 40.7122667, "lon": -74.0030266 }, + { "lat": 40.7122574, "lon": -74.0030179 }, + { "lat": 40.7122469, "lon": -74.0030067 }, + { "lat": 40.7120845, "lon": -74.0032643 }, + { "lat": 40.7120515, "lon": -74.0033021 }, + { "lat": 40.7120133, "lon": -74.0033341 }, + { "lat": 40.7119962, "lon": -74.0033599 }, + { "lat": 40.7119101, "lon": -74.0034898 }, + { "lat": 40.7118256, "lon": -74.0036293 }, + { "lat": 40.7117950, "lon": -74.0036909 }, + { "lat": 40.7117772, "lon": -74.0037269 }, + { "lat": 40.7118065, "lon": -74.0037630 }, + { "lat": 40.7118111, "lon": -74.0037687 }, + { "lat": 40.7118341, "lon": -74.0037141 }, + { "lat": 40.7118746, "lon": -74.0036274 }, + { "lat": 40.7119114, "lon": -74.0035537 }, + { "lat": 40.7119544, "lon": -74.0034790 }, + { "lat": 40.7119933, "lon": -74.0034199 }, + { "lat": 40.7119997, "lon": -74.0034263 }, + { "lat": 40.7120128, "lon": -74.0034393 }, + { "lat": 40.7120233, "lon": -74.0034226 }, + { "lat": 40.7120836, "lon": -74.0033351 }, + { "lat": 40.7121671, "lon": -74.0032087 }, + { "lat": 40.7122682, "lon": -74.0030563 }, + { "lat": 40.7122744, "lon": -74.0030373 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1229099859, + "bounds": { + "minlat": 40.7717042, + "minlon": -73.9591761, + "maxlat": 40.7723386, + "maxlon": -73.9587132 + }, + "nodes": [ + 42430063, + 10170793889, + 11355879245, + 10170793905, + 42450009 + ], + "geometry": [ + { "lat": 40.7717042, "lon": -73.9591761 }, + { "lat": 40.7717543, "lon": -73.9591395 }, + { "lat": 40.7719024, "lon": -73.9590314 }, + { "lat": 40.7722814, "lon": -73.9587549 }, + { "lat": 40.7723386, "lon": -73.9587132 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1229099860, + "bounds": { + "minlat": 40.7712617, + "minlon": -73.9595056, + "maxlat": 40.7717042, + "maxlon": -73.9591761 + }, + "nodes": [ + 11398307497, + 10170793893, + 11398307498, + 42430063 + ], + "geometry": [ + { "lat": 40.7712617, "lon": -73.9595056 }, + { "lat": 40.7716443, "lon": -73.9592207 }, + { "lat": 40.7716743, "lon": -73.9591984 }, + { "lat": 40.7717042, "lon": -73.9591761 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "bump;flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||||", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1229108713, + "bounds": { + "minlat": 40.7129387, + "minlon": -74.0018421, + "maxlat": 40.7131892, + "maxlon": -74.0009571 + }, + "nodes": [ + 2825366454, + 9390090812, + 11398317006, + 11398317009, + 11398317016, + 11398317017, + 11398317018, + 11398317019, + 9369042164, + 11398317028, + 11398317030, + 11398317029, + 11398317027, + 11398317020, + 9390090718, + 9390090717, + 9389819416, + 9389819415, + 11398317021, + 9385168395, + 9385168394, + 2825366473, + 2825366481, + 2825366468, + 2825366469, + 2825366467, + 9385168399, + 9385168400, + 9385168397, + 9385168401, + 9385168398, + 9385168403, + 9385168406, + 9385168402, + 9385168405, + 9385168404, + 9385168407, + 9385168411, + 9385168408, + 9385168410, + 9385168409, + 9385168412, + 9385168415, + 9385168414, + 9385168416, + 9385168413, + 9385176818, + 9385176821, + 9385176817, + 9385176820, + 9385176819, + 2825366454 + ], + "geometry": [ + { "lat": 40.7129775, "lon": -74.0018421 }, + { "lat": 40.7129387, "lon": -74.0018262 }, + { "lat": 40.7129443, "lon": -74.0017939 }, + { "lat": 40.7130462, "lon": -74.0013170 }, + { "lat": 40.7131170, "lon": -74.0009925 }, + { "lat": 40.7131236, "lon": -74.0009742 }, + { "lat": 40.7131323, "lon": -74.0009642 }, + { "lat": 40.7131413, "lon": -74.0009604 }, + { "lat": 40.7131488, "lon": -74.0009571 }, + { "lat": 40.7131572, "lon": -74.0009597 }, + { "lat": 40.7131549, "lon": -74.0009727 }, + { "lat": 40.7131696, "lon": -74.0009773 }, + { "lat": 40.7131719, "lon": -74.0009644 }, + { "lat": 40.7131892, "lon": -74.0009691 }, + { "lat": 40.7131765, "lon": -74.0010329 }, + { "lat": 40.7131545, "lon": -74.0010250 }, + { "lat": 40.7131421, "lon": -74.0010847 }, + { "lat": 40.7131641, "lon": -74.0010926 }, + { "lat": 40.7131492, "lon": -74.0011684 }, + { "lat": 40.7131441, "lon": -74.0011726 }, + { "lat": 40.7131418, "lon": -74.0011852 }, + { "lat": 40.7131130, "lon": -74.0012071 }, + { "lat": 40.7131507, "lon": -74.0013005 }, + { "lat": 40.7130787, "lon": -74.0013583 }, + { "lat": 40.7130846, "lon": -74.0013715 }, + { "lat": 40.7130752, "lon": -74.0013775 }, + { "lat": 40.7130602, "lon": -74.0014484 }, + { "lat": 40.7130658, "lon": -74.0014612 }, + { "lat": 40.7130559, "lon": -74.0014687 }, + { "lat": 40.7130612, "lon": -74.0014813 }, + { "lat": 40.7130519, "lon": -74.0014879 }, + { "lat": 40.7130368, "lon": -74.0015591 }, + { "lat": 40.7130422, "lon": -74.0015707 }, + { "lat": 40.7130329, "lon": -74.0015775 }, + { "lat": 40.7130383, "lon": -74.0015890 }, + { "lat": 40.7130289, "lon": -74.0015962 }, + { "lat": 40.7130206, "lon": -74.0016357 }, + { "lat": 40.7130262, "lon": -74.0016480 }, + { "lat": 40.7130165, "lon": -74.0016552 }, + { "lat": 40.7130213, "lon": -74.0016677 }, + { "lat": 40.7130124, "lon": -74.0016742 }, + { "lat": 40.7130043, "lon": -74.0017127 }, + { "lat": 40.7130093, "lon": -74.0017245 }, + { "lat": 40.7130004, "lon": -74.0017311 }, + { "lat": 40.7130058, "lon": -74.0017431 }, + { "lat": 40.7129965, "lon": -74.0017495 }, + { "lat": 40.7129880, "lon": -74.0017890 }, + { "lat": 40.7129940, "lon": -74.0018024 }, + { "lat": 40.7129839, "lon": -74.0018089 }, + { "lat": 40.7129900, "lon": -74.0018216 }, + { "lat": 40.7129797, "lon": -74.0018287 }, + { "lat": 40.7129775, "lon": -74.0018421 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1229108735, + "bounds": { + "minlat": 40.7132837, + "minlon": -74.0006561, + "maxlat": 40.7140055, + "maxlon": -74.0003313 + }, + "nodes": [ + 11398456018, + 11398456021, + 2825290841, + 9910232458, + 9910232459, + 11398456024, + 11398456022, + 2825288973, + 2825290847, + 2825290846, + 2825290845, + 2825290843, + 11398456017, + 13894212123, + 13894212122, + 11398456018 + ], + "geometry": [ + { "lat": 40.7132908, "lon": -74.0005885 }, + { "lat": 40.7132874, "lon": -74.0005728 }, + { "lat": 40.7132837, "lon": -74.0005553 }, + { "lat": 40.7138917, "lon": -74.0003446 }, + { "lat": 40.7139171, "lon": -74.0003931 }, + { "lat": 40.7139999, "lon": -74.0003313 }, + { "lat": 40.7140055, "lon": -74.0003435 }, + { "lat": 40.7136358, "lon": -74.0006561 }, + { "lat": 40.7135693, "lon": -74.0005216 }, + { "lat": 40.7135560, "lon": -74.0005330 }, + { "lat": 40.7135464, "lon": -74.0005136 }, + { "lat": 40.7135293, "lon": -74.0005284 }, + { "lat": 40.7135171, "lon": -74.0005089 }, + { "lat": 40.7134666, "lon": -74.0005267 }, + { "lat": 40.7134161, "lon": -74.0005444 }, + { "lat": 40.7132908, "lon": -74.0005885 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1229121615, + "bounds": { + "minlat": 40.7146241, + "minlon": -74.0031880, + "maxlat": 40.7148053, + "maxlon": -74.0030978 + }, + "nodes": [ + 11398600456, + 11398600457, + 11398600458, + 11398600459, + 11398600460, + 11398600461, + 11398604671, + 11398600462, + 11398600463, + 11398600464, + 11398600465, + 11398600466, + 11398600467, + 11398604670, + 11398600468, + 11398604669, + 11398600456 + ], + "geometry": [ + { "lat": 40.7148037, "lon": -74.0030978 }, + { "lat": 40.7148053, "lon": -74.0031210 }, + { "lat": 40.7148035, "lon": -74.0031253 }, + { "lat": 40.7147986, "lon": -74.0031275 }, + { "lat": 40.7147685, "lon": -74.0031350 }, + { "lat": 40.7147332, "lon": -74.0031469 }, + { "lat": 40.7147243, "lon": -74.0031506 }, + { "lat": 40.7146433, "lon": -74.0031842 }, + { "lat": 40.7146345, "lon": -74.0031880 }, + { "lat": 40.7146315, "lon": -74.0031879 }, + { "lat": 40.7146301, "lon": -74.0031858 }, + { "lat": 40.7146241, "lon": -74.0031602 }, + { "lat": 40.7146774, "lon": -74.0031381 }, + { "lat": 40.7147180, "lon": -74.0031228 }, + { "lat": 40.7147274, "lon": -74.0031193 }, + { "lat": 40.7147638, "lon": -74.0031071 }, + { "lat": 40.7148037, "lon": -74.0030978 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1229223976, + "bounds": { + "minlat": 40.7129712, + "minlon": -73.9993671, + "maxlat": 40.7132460, + "maxlon": -73.9993110 + }, + "nodes": [ + 1730318420, + 11399612935, + 11399612936, + 11399612937, + 11399612938, + 11399612940, + 11399612939 + ], + "geometry": [ + { "lat": 40.7129712, "lon": -73.9993671 }, + { "lat": 40.7130097, "lon": -73.9993378 }, + { "lat": 40.7130313, "lon": -73.9993232 }, + { "lat": 40.7130632, "lon": -73.9993119 }, + { "lat": 40.7130946, "lon": -73.9993110 }, + { "lat": 40.7131790, "lon": -73.9993340 }, + { "lat": 40.7132460, "lon": -73.9993522 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1229513684, + "bounds": { + "minlat": 40.7122146, + "minlon": -74.0007929, + "maxlat": 40.7131958, + "maxlon": -73.9993664 + }, + "nodes": [ + 11399612927, + 11401523468, + 11401523463, + 11394592635, + 11394592636, + 9369042105, + 11394592637, + 11394592638, + 11394592639, + 11394592640, + 11394592642, + 11394592628, + 11401523464, + 11401523465, + 11401523466, + 11401523467, + 11399635802, + 11399635801, + 11399635800, + 11399635799, + 11399612941, + 11399612945, + 11399612946, + 11399612947, + 11399612948, + 11399612949, + 11399612927 + ], + "geometry": [ + { "lat": 40.7122151, "lon": -74.0007297 }, + { "lat": 40.7122148, "lon": -74.0007567 }, + { "lat": 40.7122146, "lon": -74.0007871 }, + { "lat": 40.7129024, "lon": -74.0007929 }, + { "lat": 40.7129084, "lon": -74.0007903 }, + { "lat": 40.7129136, "lon": -74.0007848 }, + { "lat": 40.7129209, "lon": -74.0007780 }, + { "lat": 40.7129260, "lon": -74.0007687 }, + { "lat": 40.7129357, "lon": -74.0007419 }, + { "lat": 40.7130101, "lon": -74.0005222 }, + { "lat": 40.7130315, "lon": -74.0004374 }, + { "lat": 40.7130838, "lon": -74.0001858 }, + { "lat": 40.7131230, "lon": -73.9999024 }, + { "lat": 40.7131382, "lon": -73.9997904 }, + { "lat": 40.7131958, "lon": -73.9993763 }, + { "lat": 40.7131740, "lon": -73.9993711 }, + { "lat": 40.7131547, "lon": -73.9993664 }, + { "lat": 40.7130749, "lon": -73.9999254 }, + { "lat": 40.7130541, "lon": -74.0000886 }, + { "lat": 40.7130356, "lon": -74.0001206 }, + { "lat": 40.7130317, "lon": -74.0001445 }, + { "lat": 40.7130268, "lon": -74.0001741 }, + { "lat": 40.7130324, "lon": -74.0002138 }, + { "lat": 40.7129871, "lon": -74.0004426 }, + { "lat": 40.7129736, "lon": -74.0004921 }, + { "lat": 40.7128912, "lon": -74.0007330 }, + { "lat": 40.7122151, "lon": -74.0007297 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1229513702, + "bounds": { + "minlat": 40.7140166, + "minlon": -74.0044302, + "maxlat": 40.7142176, + "maxlon": -74.0043173 + }, + "nodes": [ + 42443588, + 7182561634, + 4551119133 + ], + "geometry": [ + { "lat": 40.7140166, "lon": -74.0044302 }, + { "lat": 40.7140907, "lon": -74.0044193 }, + { "lat": 40.7142176, "lon": -74.0043173 } + ], + "tags": { + "foot": "yes", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "motor_vehicle": "yes", + "name": "Elk Street", + "name:etymology:wikidata": "Q2895789", + "name:ko": "엘크 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1229513717, + "bounds": { + "minlat": 40.7141387, + "minlon": -74.0036862, + "maxlat": 40.7143201, + "maxlon": -74.0034162 + }, + "nodes": [ + 6457001915, + 4625583183, + 42430535 + ], + "geometry": [ + { "lat": 40.7143201, "lon": -74.0036862 }, + { "lat": 40.7141864, "lon": -74.0035084 }, + { "lat": 40.7141387, "lon": -74.0034162 } + ], + "tags": { + "alt_name": "Paul O'Dwyer Plaza", + "cycleway:both": "no", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Duane Street", + "name:etymology:wikidata": "Q339274", + "name:ko": "두에인 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1229513732, + "bounds": { + "minlat": 40.7151334, + "minlon": -74.0054200, + "maxlat": 40.7152360, + "maxlon": -74.0051938 + }, + "nodes": [ + 42428405, + 8279851418, + 591567060 + ], + "geometry": [ + { "lat": 40.7152360, "lon": -74.0054200 }, + { "lat": 40.7151976, "lon": -74.0053345 }, + { "lat": 40.7151334, "lon": -74.0051938 } + ], + "tags": { + "cycleway:both": "no", + "highway": "unclassified", + "lane_markings": "no", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Duane Street", + "name:etymology:wikidata": "Q339274", + "name:ko": "두에인 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1229751353, + "bounds": { + "minlat": 40.7351299, + "minlon": -73.9528055, + "maxlat": 40.7352133, + "maxlon": -73.9527220 + }, + "nodes": [ + 9996409522, + 11411385997, + 597261862 + ], + "geometry": [ + { "lat": 40.7352133, "lon": -73.9528055 }, + { "lat": 40.7351722, "lon": -73.9527648 }, + { "lat": 40.7351299, "lon": -73.9527220 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A49", + "tiger:county": "Kings, NY", + "tiger:name_base": "Mc Guinness", + "tiger:name_type": "Blvd", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1229788548, + "bounds": { + "minlat": 40.7258100, + "minlon": -73.9392849, + "maxlat": 40.7261118, + "maxlon": -73.9392306 + }, + "nodes": [ + 11404288871, + 11404288872, + 11404278266, + 11404288873 + ], + "geometry": [ + { "lat": 40.7261118, "lon": -73.9392849 }, + { "lat": 40.7260497, "lon": -73.9392726 }, + { "lat": 40.7260331, "lon": -73.9392706 }, + { "lat": 40.7258100, "lon": -73.9392306 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1230499480, + "bounds": { + "minlat": 40.7873097, + "minlon": -73.9329688, + "maxlat": 40.7876313, + "maxlon": -73.9321648 + }, + "nodes": [ + 3037017931, + 7734633931, + 3040306653, + 7734633930, + 3037022137, + 3037022136 + ], + "geometry": [ + { "lat": 40.7873097, "lon": -73.9321648 }, + { "lat": 40.7873796, "lon": -73.9323356 }, + { "lat": 40.7874156, "lon": -73.9324238 }, + { "lat": 40.7875157, "lon": -73.9326687 }, + { "lat": 40.7875978, "lon": -73.9328695 }, + { "lat": 40.7876313, "lon": -73.9329688 } + ], + "tags": { + "access": "private", + "highway": "unclassified" + } +}, +{ + "type": "way", + "id": 1230499481, + "bounds": { + "minlat": 40.7879009, + "minlon": -73.9336472, + "maxlat": 40.7879296, + "maxlon": -73.9335929 + }, + "nodes": [ + 3037150116, + 3039382115 + ], + "geometry": [ + { "lat": 40.7879009, "lon": -73.9335929 }, + { "lat": 40.7879296, "lon": -73.9336472 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1230510436, + "bounds": { + "minlat": 40.7123600, + "minlon": -74.0088791, + "maxlat": 40.7124444, + "maxlon": -74.0088117 + }, + "nodes": [ + 11411576727, + 11411576729, + 11461036402, + 11411576728 + ], + "geometry": [ + { "lat": 40.7124444, "lon": -74.0088117 }, + { "lat": 40.7124272, "lon": -74.0088254 }, + { "lat": 40.7124045, "lon": -74.0088435 }, + { "lat": 40.7123600, "lon": -74.0088791 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1230533115, + "bounds": { + "minlat": 40.7129093, + "minlon": -73.9870806, + "maxlat": 40.7136336, + "maxlon": -73.9869665 + }, + "nodes": [ + 42437770, + 8231945177, + 13528967991, + 5804425620, + 42435928 + ], + "geometry": [ + { "lat": 40.7129093, "lon": -73.9869665 }, + { "lat": 40.7129992, "lon": -73.9869807 }, + { "lat": 40.7134316, "lon": -73.9870488 }, + { "lat": 40.7135738, "lon": -73.9870712 }, + { "lat": 40.7136336, "lon": -73.9870806 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clinton Street", + "name:etymology:wikidata": "Q201646", + "name:ko": "클린턴 스트리트", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1230663911, + "bounds": { + "minlat": 40.7098895, + "minlon": -74.0148946, + "maxlat": 40.7099679, + "maxlon": -74.0147837 + }, + "nodes": [ + 8262936709, + 11374486369, + 11413101800, + 11413101801, + 11413101802, + 11413101803, + 11413101804, + 11413101805, + 11413101806, + 11413101807, + 11374486370, + 11413044165, + 11413044166, + 8262936710, + 11413044167, + 11413044168, + 8262936709 + ], + "geometry": [ + { "lat": 40.7099679, "lon": -74.0148762 }, + { "lat": 40.7099325, "lon": -74.0148871 }, + { "lat": 40.7099136, "lon": -74.0148938 }, + { "lat": 40.7099036, "lon": -74.0148946 }, + { "lat": 40.7098973, "lon": -74.0148898 }, + { "lat": 40.7098939, "lon": -74.0148800 }, + { "lat": 40.7098895, "lon": -74.0148270 }, + { "lat": 40.7098920, "lon": -74.0148145 }, + { "lat": 40.7098970, "lon": -74.0148050 }, + { "lat": 40.7099070, "lon": -74.0148010 }, + { "lat": 40.7099265, "lon": -74.0147943 }, + { "lat": 40.7099568, "lon": -74.0147837 }, + { "lat": 40.7099522, "lon": -74.0147871 }, + { "lat": 40.7099508, "lon": -74.0147927 }, + { "lat": 40.7099556, "lon": -74.0148672 }, + { "lat": 40.7099599, "lon": -74.0148755 }, + { "lat": 40.7099679, "lon": -74.0148762 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1230663913, + "bounds": { + "minlat": 40.7096957, + "minlon": -74.0149634, + "maxlat": 40.7097701, + "maxlon": -74.0148649 + }, + "nodes": [ + 4899841685, + 11374486371, + 11413101825, + 11413101826, + 11413101827, + 11413101828, + 11413101829, + 11413101830, + 11413101831, + 11374486372, + 4899841644, + 11413101813, + 11413101812, + 11413101811, + 11413101814, + 4899841685 + ], + "geometry": [ + { "lat": 40.7097001, "lon": -74.0149634 }, + { "lat": 40.7097325, "lon": -74.0149544 }, + { "lat": 40.7097598, "lon": -74.0149469 }, + { "lat": 40.7097676, "lon": -74.0149392 }, + { "lat": 40.7097701, "lon": -74.0149279 }, + { "lat": 40.7097679, "lon": -74.0148851 }, + { "lat": 40.7097640, "lon": -74.0148726 }, + { "lat": 40.7097562, "lon": -74.0148649 }, + { "lat": 40.7097457, "lon": -74.0148679 }, + { "lat": 40.7097296, "lon": -74.0148727 }, + { "lat": 40.7096957, "lon": -74.0148843 }, + { "lat": 40.7097027, "lon": -74.0148861 }, + { "lat": 40.7097068, "lon": -74.0148948 }, + { "lat": 40.7097089, "lon": -74.0149505 }, + { "lat": 40.7097063, "lon": -74.0149588 }, + { "lat": 40.7097001, "lon": -74.0149634 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1230663915, + "bounds": { + "minlat": 40.7097848, + "minlon": -74.0147403, + "maxlat": 40.7098267, + "maxlon": -74.0145388 + }, + "nodes": [ + 12413032498, + 4143824668, + 4143824669, + 793872212, + 4143824664, + 11413101832 + ], + "geometry": [ + { "lat": 40.7098267, "lon": -74.0147403 }, + { "lat": 40.7098234, "lon": -74.0146817 }, + { "lat": 40.7098190, "lon": -74.0146488 }, + { "lat": 40.7098119, "lon": -74.0146143 }, + { "lat": 40.7098029, "lon": -74.0145810 }, + { "lat": 40.7097848, "lon": -74.0145388 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Albany Street", + "name:etymology:wikidata": "Q24861", + "name:ko": "앨버니 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 08:00-16:00)", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q29110247", + "wikipedia": "en:Albany Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1230663944, + "bounds": { + "minlat": 40.7075394, + "minlon": -74.0157775, + "maxlat": 40.7076432, + "maxlon": -74.0156582 + }, + "nodes": [ + 11413101963, + 11413101986, + 11413101971, + 11413101972, + 11413101973, + 4899841667, + 4899841663, + 11413101985, + 11413101968, + 11413101967, + 11413101966, + 11413101965, + 11413101964, + 11413101963 + ], + "geometry": [ + { "lat": 40.7076432, "lon": -74.0157499 }, + { "lat": 40.7076138, "lon": -74.0157612 }, + { "lat": 40.7075710, "lon": -74.0157775 }, + { "lat": 40.7075768, "lon": -74.0157718 }, + { "lat": 40.7075789, "lon": -74.0157614 }, + { "lat": 40.7075781, "lon": -74.0157519 }, + { "lat": 40.7075394, "lon": -74.0156852 }, + { "lat": 40.7075632, "lon": -74.0156735 }, + { "lat": 40.7075961, "lon": -74.0156582 }, + { "lat": 40.7075929, "lon": -74.0156702 }, + { "lat": 40.7075950, "lon": -74.0156803 }, + { "lat": 40.7076329, "lon": -74.0157479 }, + { "lat": 40.7076377, "lon": -74.0157507 }, + { "lat": 40.7076432, "lon": -74.0157499 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1230733656, + "bounds": { + "minlat": 40.7108461, + "minlon": -74.0146393, + "maxlat": 40.7109636, + "maxlon": -74.0145706 + }, + "nodes": [ + 11413710967, + 11374486381, + 11413750474, + 11413750475, + 11413750476, + 11413750477, + 11413750478, + 11413750479, + 11413750480, + 11413750481, + 11413750482, + 11374486380, + 11413750483, + 11413750472, + 11413750471, + 11413750470, + 11413750469, + 11413710968, + 11413710967 + ], + "geometry": [ + { "lat": 40.7108700, "lon": -74.0146393 }, + { "lat": 40.7109087, "lon": -74.0146317 }, + { "lat": 40.7109416, "lon": -74.0146253 }, + { "lat": 40.7109549, "lon": -74.0146224 }, + { "lat": 40.7109607, "lon": -74.0146165 }, + { "lat": 40.7109636, "lon": -74.0146060 }, + { "lat": 40.7109625, "lon": -74.0145950 }, + { "lat": 40.7109580, "lon": -74.0145883 }, + { "lat": 40.7109430, "lon": -74.0145816 }, + { "lat": 40.7109222, "lon": -74.0145757 }, + { "lat": 40.7108998, "lon": -74.0145724 }, + { "lat": 40.7108827, "lon": -74.0145706 }, + { "lat": 40.7108636, "lon": -74.0145718 }, + { "lat": 40.7108461, "lon": -74.0145752 }, + { "lat": 40.7108502, "lon": -74.0145761 }, + { "lat": 40.7108525, "lon": -74.0145800 }, + { "lat": 40.7108736, "lon": -74.0146312 }, + { "lat": 40.7108725, "lon": -74.0146369 }, + { "lat": 40.7108700, "lon": -74.0146393 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1230733658, + "bounds": { + "minlat": 40.7111162, + "minlon": -74.0147543, + "maxlat": 40.7111542, + "maxlon": -74.0146587 + }, + "nodes": [ + 11413101809, + 246858433 + ], + "geometry": [ + { "lat": 40.7111542, "lon": -74.0147543 }, + { "lat": 40.7111162, "lon": -74.0146587 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "oneway": "no", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "concrete", + "turn:lanes:forward": "left|right", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1230733659, + "bounds": { + "minlat": 40.7098356, + "minlon": -74.0152086, + "maxlat": 40.7098393, + "maxlon": -74.0151385 + }, + "nodes": [ + 246866798, + 4143824663 + ], + "geometry": [ + { "lat": 40.7098393, "lon": -74.0152086 }, + { "lat": 40.7098356, "lon": -74.0151385 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Albany Street", + "name:etymology:wikidata": "Q24861", + "name:ko": "앨버니 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29110247", + "wikipedia": "en:Albany Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1230733663, + "bounds": { + "minlat": 40.7093286, + "minlon": -74.0150996, + "maxlat": 40.7096105, + "maxlon": -74.0148250 + }, + "nodes": [ + 11413101849, + 11413750566, + 11413750562, + 11413750563, + 11413750567, + 11413750564, + 11413750565 + ], + "geometry": [ + { "lat": 40.7093286, "lon": -74.0150996 }, + { "lat": 40.7093853, "lon": -74.0150637 }, + { "lat": 40.7094340, "lon": -74.0150234 }, + { "lat": 40.7094792, "lon": -74.0149764 }, + { "lat": 40.7095264, "lon": -74.0149084 }, + { "lat": 40.7095687, "lon": -74.0148606 }, + { "lat": 40.7096105, "lon": -74.0148250 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "1", + "oneway": "no", + "service": "emergency_access", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1230733673, + "bounds": { + "minlat": 40.7089356, + "minlon": -74.0153370, + "maxlat": 40.7091674, + "maxlon": -74.0151158 + }, + "nodes": [ + 11413101910, + 11413750621, + 11413750620, + 11413750622, + 11413750619, + 11413750618, + 11413750623, + 4143835086 + ], + "geometry": [ + { "lat": 40.7091674, "lon": -74.0151158 }, + { "lat": 40.7091243, "lon": -74.0151366 }, + { "lat": 40.7090888, "lon": -74.0151663 }, + { "lat": 40.7090584, "lon": -74.0152009 }, + { "lat": 40.7090274, "lon": -74.0152421 }, + { "lat": 40.7090020, "lon": -74.0152733 }, + { "lat": 40.7089714, "lon": -74.0153048 }, + { "lat": 40.7089356, "lon": -74.0153370 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "emergency_access", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1230733693, + "bounds": { + "minlat": 40.7072276, + "minlon": -74.0156176, + "maxlat": 40.7072828, + "maxlon": -74.0153824 + }, + "nodes": [ + 11413750725, + 11413750726, + 11413750727, + 11413750720, + 11413750728, + 11413750729, + 11413750730, + 11413750739, + 11413750731, + 11413750732, + 11413750733, + 11413750734, + 11413750719, + 11413750735, + 11413750736, + 11413750737, + 11413750738, + 11413750725 + ], + "geometry": [ + { "lat": 40.7072276, "lon": -74.0154015 }, + { "lat": 40.7072366, "lon": -74.0154567 }, + { "lat": 40.7072419, "lon": -74.0155154 }, + { "lat": 40.7072431, "lon": -74.0155382 }, + { "lat": 40.7072448, "lon": -74.0155726 }, + { "lat": 40.7072468, "lon": -74.0156043 }, + { "lat": 40.7072512, "lon": -74.0156149 }, + { "lat": 40.7072587, "lon": -74.0156176 }, + { "lat": 40.7072653, "lon": -74.0156144 }, + { "lat": 40.7072720, "lon": -74.0156066 }, + { "lat": 40.7072748, "lon": -74.0155928 }, + { "lat": 40.7072784, "lon": -74.0155494 }, + { "lat": 40.7072800, "lon": -74.0155234 }, + { "lat": 40.7072828, "lon": -74.0154769 }, + { "lat": 40.7072821, "lon": -74.0154389 }, + { "lat": 40.7072789, "lon": -74.0154037 }, + { "lat": 40.7072772, "lon": -74.0153824 }, + { "lat": 40.7072276, "lon": -74.0154015 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1230733694, + "bounds": { + "minlat": 40.7077457, + "minlon": -74.0158383, + "maxlat": 40.7077712, + "maxlon": -74.0157786 + }, + "nodes": [ + 588593611, + 11413750741 + ], + "geometry": [ + { "lat": 40.7077457, "lon": -74.0157786 }, + { "lat": 40.7077712, "lon": -74.0158383 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1230895301, + "bounds": { + "minlat": 40.8092062, + "minlon": -73.9988385, + "maxlat": 40.8092808, + "maxlon": -73.9987720 + }, + "nodes": [ + 11415241607, + 11415241608, + 11415241609 + ], + "geometry": [ + { "lat": 40.8092808, "lon": -73.9987720 }, + { "lat": 40.8092426, "lon": -73.9987986 }, + { "lat": 40.8092062, "lon": -73.9988385 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1230895302, + "bounds": { + "minlat": 40.8091592, + "minlon": -73.9987663, + "maxlat": 40.8092546, + "maxlon": -73.9986915 + }, + "nodes": [ + 11415241610, + 11415241611, + 11415241612 + ], + "geometry": [ + { "lat": 40.8092546, "lon": -73.9986915 }, + { "lat": 40.8091937, "lon": -73.9987313 }, + { "lat": 40.8091592, "lon": -73.9987663 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1230895303, + "bounds": { + "minlat": 40.8091267, + "minlon": -73.9987163, + "maxlat": 40.8092017, + "maxlon": -73.9986481 + }, + "nodes": [ + 11415241613, + 11415241614, + 11415241615 + ], + "geometry": [ + { "lat": 40.8092017, "lon": -73.9986481 }, + { "lat": 40.8091609, "lon": -73.9986773 }, + { "lat": 40.8091267, "lon": -73.9987163 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1230895304, + "bounds": { + "minlat": 40.8090865, + "minlon": -73.9986544, + "maxlat": 40.8093009, + "maxlon": -73.9984924 + }, + "nodes": [ + 11415241616, + 11415241617, + 11415241618 + ], + "geometry": [ + { "lat": 40.8093009, "lon": -73.9984924 }, + { "lat": 40.8091234, "lon": -73.9986119 }, + { "lat": 40.8090865, "lon": -73.9986544 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1230895305, + "bounds": { + "minlat": 40.8090261, + "minlon": -73.9985615, + "maxlat": 40.8092299, + "maxlon": -73.9983960 + }, + "nodes": [ + 11415241619, + 11415241620, + 11415241621 + ], + "geometry": [ + { "lat": 40.8092299, "lon": -73.9983960 }, + { "lat": 40.8090658, "lon": -73.9985190 }, + { "lat": 40.8090261, "lon": -73.9985615 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1230895306, + "bounds": { + "minlat": 40.8095031, + "minlon": -73.9988571, + "maxlat": 40.8096394, + "maxlon": -73.9986083 + }, + "nodes": [ + 11415241622, + 11415241623, + 11415241624 + ], + "geometry": [ + { "lat": 40.8095031, "lon": -73.9986083 }, + { "lat": 40.8096116, "lon": -73.9987853 }, + { "lat": 40.8096394, "lon": -73.9988571 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1230946412, + "bounds": { + "minlat": 40.7084467, + "minlon": -74.0152017, + "maxlat": 40.7084917, + "maxlon": -74.0150455 + }, + "nodes": [ + 42446640, + 4876524536, + 11415662946 + ], + "geometry": [ + { "lat": 40.7084917, "lon": -74.0152017 }, + { "lat": 40.7084597, "lon": -74.0150906 }, + { "lat": 40.7084467, "lon": -74.0150455 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Rector Street", + "name:ko": "렉터 스트리트", + "name:ru": "Ректор-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "concrete", + "width": "18'0\"", + "wikidata": "Q14135438" + } +}, +{ + "type": "way", + "id": 1230946416, + "bounds": { + "minlat": 40.7093552, + "minlon": -74.0148836, + "maxlat": 40.7094404, + "maxlon": -74.0146848 + }, + "nodes": [ + 5815243835, + 11374474060, + 42452314 + ], + "geometry": [ + { "lat": 40.7093552, "lon": -74.0146848 }, + { "lat": 40.7093748, "lon": -74.0147301 }, + { "lat": 40.7094404, "lon": -74.0148836 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Carlisle Street", + "name:ko": "칼라일 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "parking:right:taxi": "designated", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "concrete", + "width": "14'4\"" + } +}, +{ + "type": "way", + "id": 1230946419, + "bounds": { + "minlat": 40.7076258, + "minlon": -74.0154003, + "maxlat": 40.7076854, + "maxlon": -74.0152379 + }, + "nodes": [ + 11413750759, + 3767684323, + 7728285933, + 11415663025, + 7728285936, + 11415663026, + 11415663027, + 11415663028, + 11415662879, + 11413750755, + 11413750756, + 7728075498, + 7728075501, + 11413750758, + 11413750759 + ], + "geometry": [ + { "lat": 40.7076516, "lon": -74.0152379 }, + { "lat": 40.7076423, "lon": -74.0152415 }, + { "lat": 40.7076258, "lon": -74.0152479 }, + { "lat": 40.7076629, "lon": -74.0153533 }, + { "lat": 40.7076700, "lon": -74.0153727 }, + { "lat": 40.7076769, "lon": -74.0153870 }, + { "lat": 40.7076821, "lon": -74.0153970 }, + { "lat": 40.7076850, "lon": -74.0154003 }, + { "lat": 40.7076852, "lon": -74.0153673 }, + { "lat": 40.7076854, "lon": -74.0153324 }, + { "lat": 40.7076773, "lon": -74.0153369 }, + { "lat": 40.7076684, "lon": -74.0153108 }, + { "lat": 40.7076570, "lon": -74.0152784 }, + { "lat": 40.7076644, "lon": -74.0152738 }, + { "lat": 40.7076516, "lon": -74.0152379 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1230946437, + "bounds": { + "minlat": 40.7103670, + "minlon": -74.0145533, + "maxlat": 40.7104600, + "maxlon": -74.0143514 + }, + "nodes": [ + 11415663135, + 11374486376, + 6417761625, + 6417761624 + ], + "geometry": [ + { "lat": 40.7103670, "lon": -74.0143514 }, + { "lat": 40.7103829, "lon": -74.0143853 }, + { "lat": 40.7104050, "lon": -74.0144338 }, + { "lat": 40.7104600, "lon": -74.0145533 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cedar Street", + "name:etymology:wikidata": "Q128550", + "name:ru": "Сидар-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q13933858" + } +}, +{ + "type": "way", + "id": 1230946470, + "bounds": { + "minlat": 40.7089468, + "minlon": -74.0137624, + "maxlat": 40.7090670, + "maxlon": -74.0135356 + }, + "nodes": [ + 11415663186, + 11415663224, + 11415663187, + 11415663188, + 11415663189, + 11415663190, + 11415663191, + 11415663229, + 11415663230, + 11415663233, + 11415663192, + 11415663193, + 11415663194, + 11415663221, + 11415663220, + 11415663219, + 11415663218, + 11415663217, + 11415663212, + 11415663211, + 11415663210, + 11415663209, + 11415663208, + 11415663207, + 11415663197, + 11415663242, + 11415663196, + 11415663195, + 11415663186 + ], + "geometry": [ + { "lat": 40.7090670, "lon": -74.0136814 }, + { "lat": 40.7090618, "lon": -74.0137204 }, + { "lat": 40.7090593, "lon": -74.0137397 }, + { "lat": 40.7090290, "lon": -74.0137624 }, + { "lat": 40.7089973, "lon": -74.0137243 }, + { "lat": 40.7089881, "lon": -74.0136756 }, + { "lat": 40.7089468, "lon": -74.0136122 }, + { "lat": 40.7089521, "lon": -74.0135773 }, + { "lat": 40.7089536, "lon": -74.0135685 }, + { "lat": 40.7089547, "lon": -74.0135603 }, + { "lat": 40.7089570, "lon": -74.0135451 }, + { "lat": 40.7089895, "lon": -74.0135356 }, + { "lat": 40.7089948, "lon": -74.0135512 }, + { "lat": 40.7089891, "lon": -74.0135541 }, + { "lat": 40.7089843, "lon": -74.0135594 }, + { "lat": 40.7089811, "lon": -74.0135663 }, + { "lat": 40.7089797, "lon": -74.0135743 }, + { "lat": 40.7089803, "lon": -74.0135824 }, + { "lat": 40.7089828, "lon": -74.0135898 }, + { "lat": 40.7089870, "lon": -74.0135958 }, + { "lat": 40.7089925, "lon": -74.0135997 }, + { "lat": 40.7089985, "lon": -74.0136012 }, + { "lat": 40.7090047, "lon": -74.0135999 }, + { "lat": 40.7090102, "lon": -74.0135962 }, + { "lat": 40.7090145, "lon": -74.0135904 }, + { "lat": 40.7090206, "lon": -74.0135987 }, + { "lat": 40.7090345, "lon": -74.0136177 }, + { "lat": 40.7090343, "lon": -74.0136584 }, + { "lat": 40.7090670, "lon": -74.0136814 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 1230946472, + "bounds": { + "minlat": 40.7089079, + "minlon": -74.0139594, + "maxlat": 40.7092056, + "maxlon": -74.0134439 + }, + "nodes": [ + 3736934494, + 11415663174, + 11415663253, + 11415663179, + 11415663183, + 11415663227, + 11415663191, + 11415663190, + 11415663189, + 11415663188, + 11415663187, + 11415663224, + 11415663186, + 11415663195, + 11415663196, + 11415663242, + 11415663197, + 11415663223, + 11415663222, + 11415663216, + 11415663215, + 11415663214, + 11415663213, + 11415663194, + 11415663193, + 11415663235, + 11415663234, + 11415663233, + 11415663230, + 11415663229, + 11415663228, + 11415663232, + 11415663254, + 2824641550, + 11415663240, + 11415663239, + 11415663238, + 2824641553, + 8279851851, + 3736934492, + 2824641577, + 3736934494 + ], + "geometry": [ + { "lat": 40.7092056, "lon": -74.0139123 }, + { "lat": 40.7091835, "lon": -74.0139214 }, + { "lat": 40.7090923, "lon": -74.0139594 }, + { "lat": 40.7090275, "lon": -74.0138130 }, + { "lat": 40.7090180, "lon": -74.0137914 }, + { "lat": 40.7089407, "lon": -74.0136166 }, + { "lat": 40.7089468, "lon": -74.0136122 }, + { "lat": 40.7089881, "lon": -74.0136756 }, + { "lat": 40.7089973, "lon": -74.0137243 }, + { "lat": 40.7090290, "lon": -74.0137624 }, + { "lat": 40.7090593, "lon": -74.0137397 }, + { "lat": 40.7090618, "lon": -74.0137204 }, + { "lat": 40.7090670, "lon": -74.0136814 }, + { "lat": 40.7090343, "lon": -74.0136584 }, + { "lat": 40.7090345, "lon": -74.0136177 }, + { "lat": 40.7090206, "lon": -74.0135987 }, + { "lat": 40.7090145, "lon": -74.0135904 }, + { "lat": 40.7090173, "lon": -74.0135826 }, + { "lat": 40.7090179, "lon": -74.0135741 }, + { "lat": 40.7090164, "lon": -74.0135658 }, + { "lat": 40.7090128, "lon": -74.0135586 }, + { "lat": 40.7090076, "lon": -74.0135534 }, + { "lat": 40.7090014, "lon": -74.0135509 }, + { "lat": 40.7089948, "lon": -74.0135512 }, + { "lat": 40.7089895, "lon": -74.0135356 }, + { "lat": 40.7089815, "lon": -74.0135114 }, + { "lat": 40.7089234, "lon": -74.0135514 }, + { "lat": 40.7089547, "lon": -74.0135603 }, + { "lat": 40.7089536, "lon": -74.0135685 }, + { "lat": 40.7089521, "lon": -74.0135773 }, + { "lat": 40.7089198, "lon": -74.0135697 }, + { "lat": 40.7089112, "lon": -74.0135521 }, + { "lat": 40.7089079, "lon": -74.0135455 }, + { "lat": 40.7090094, "lon": -74.0134740 }, + { "lat": 40.7090553, "lon": -74.0134439 }, + { "lat": 40.7090610, "lon": -74.0134588 }, + { "lat": 40.7090107, "lon": -74.0134934 }, + { "lat": 40.7090356, "lon": -74.0135519 }, + { "lat": 40.7091110, "lon": -74.0137259 }, + { "lat": 40.7091741, "lon": -74.0138742 }, + { "lat": 40.7091945, "lon": -74.0138668 }, + { "lat": 40.7092056, "lon": -74.0139123 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Gwathmey Plaza", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1230991199, + "bounds": { + "minlat": 40.7075515, + "minlon": -74.0162219, + "maxlat": 40.7076616, + "maxlon": -74.0161417 + }, + "nodes": [ + 7728075504, + 7728075517, + 7728075509, + 11416176575, + 11416176572, + 7728075508, + 7728075504 + ], + "geometry": [ + { "lat": 40.7076616, "lon": -74.0161812 }, + { "lat": 40.7075606, "lon": -74.0162219 }, + { "lat": 40.7075559, "lon": -74.0162014 }, + { "lat": 40.7075515, "lon": -74.0161823 }, + { "lat": 40.7076525, "lon": -74.0161417 }, + { "lat": 40.7076571, "lon": -74.0161615 }, + { "lat": 40.7076616, "lon": -74.0161812 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1231032797, + "bounds": { + "minlat": 40.8759313, + "minlon": -73.9521086, + "maxlat": 40.8763621, + "maxlon": -73.9515992 + }, + "nodes": [ + 6362121924, + 11416653374, + 11416653375, + 11416653376, + 11416653377, + 11416653378 + ], + "geometry": [ + { "lat": 40.8763621, "lon": -73.9521086 }, + { "lat": 40.8763077, "lon": -73.9519199 }, + { "lat": 40.8762096, "lon": -73.9517394 }, + { "lat": 40.8761324, "lon": -73.9516358 }, + { "lat": 40.8760835, "lon": -73.9515992 }, + { "lat": 40.8759313, "lon": -73.9516804 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1231189986, + "bounds": { + "minlat": 40.7096846, + "minlon": -74.0158894, + "maxlat": 40.7099608, + "maxlon": -74.0158031 + }, + "nodes": [ + 11418201557, + 11418201739, + 11418201562, + 11418201740, + 11418201558, + 11418201559, + 11418201560, + 11418201561 + ], + "geometry": [ + { "lat": 40.7099608, "lon": -74.0158031 }, + { "lat": 40.7099013, "lon": -74.0158250 }, + { "lat": 40.7098759, "lon": -74.0158343 }, + { "lat": 40.7098600, "lon": -74.0158401 }, + { "lat": 40.7097340, "lon": -74.0158864 }, + { "lat": 40.7097112, "lon": -74.0158894 }, + { "lat": 40.7096948, "lon": -74.0158720 }, + { "lat": 40.7096846, "lon": -74.0158334 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1231303620, + "bounds": { + "minlat": 40.7658356, + "minlon": -73.9556231, + "maxlat": 40.7659079, + "maxlon": -73.9555720 + }, + "nodes": [ + 11419656041, + 11419656043, + 11419656042 + ], + "geometry": [ + { "lat": 40.7659079, "lon": -73.9555720 }, + { "lat": 40.7658486, "lon": -73.9556139 }, + { "lat": 40.7658356, "lon": -73.9556231 } + ], + "tags": { + "highway": "service", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1231303621, + "bounds": { + "minlat": 40.7657574, + "minlon": -73.9554376, + "maxlat": 40.7658299, + "maxlon": -73.9553874 + }, + "nodes": [ + 11419656047, + 11419656048, + 11419656046 + ], + "geometry": [ + { "lat": 40.7657574, "lon": -73.9554376 }, + { "lat": 40.7657695, "lon": -73.9554292 }, + { "lat": 40.7658299, "lon": -73.9553874 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1231303622, + "bounds": { + "minlat": 40.7652941, + "minlon": -73.9550876, + "maxlat": 40.7653701, + "maxlon": -73.9548939 + }, + "nodes": [ + 11419656049, + 11419656051, + 11419656050 + ], + "geometry": [ + { "lat": 40.7652941, "lon": -73.9548939 }, + { "lat": 40.7653419, "lon": -73.9550158 }, + { "lat": 40.7653701, "lon": -73.9550876 } + ], + "tags": { + "highway": "service", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1231385661, + "bounds": { + "minlat": 40.7681923, + "minlon": -73.9266146, + "maxlat": 40.7685208, + "maxlon": -73.9263436 + }, + "nodes": [ + 11420382884, + 11420382887, + 11420382893 + ], + "geometry": [ + { "lat": 40.7681923, "lon": -73.9266146 }, + { "lat": 40.7682537, "lon": -73.9265695 }, + { "lat": 40.7685208, "lon": -73.9263436 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1231588528, + "bounds": { + "minlat": 40.7086798, + "minlon": -74.0182701, + "maxlat": 40.7088005, + "maxlon": -74.0180549 + }, + "nodes": [ + 4145424858, + 889585049, + 3574509602, + 3574509601, + 3574509600, + 3574509599, + 3574509598, + 272196176, + 889584949, + 889585010, + 889585222, + 889585246, + 3574509597, + 3574509596, + 3574509595, + 3574509594, + 4145424858 + ], + "geometry": [ + { "lat": 40.7087468, "lon": -74.0180549 }, + { "lat": 40.7087859, "lon": -74.0181385 }, + { "lat": 40.7087964, "lon": -74.0181617 }, + { "lat": 40.7088005, "lon": -74.0181882 }, + { "lat": 40.7087976, "lon": -74.0182149 }, + { "lat": 40.7087881, "lon": -74.0182389 }, + { "lat": 40.7087732, "lon": -74.0182573 }, + { "lat": 40.7087544, "lon": -74.0182681 }, + { "lat": 40.7087340, "lon": -74.0182701 }, + { "lat": 40.7087143, "lon": -74.0182630 }, + { "lat": 40.7086974, "lon": -74.0182476 }, + { "lat": 40.7086855, "lon": -74.0182257 }, + { "lat": 40.7086798, "lon": -74.0182012 }, + { "lat": 40.7086803, "lon": -74.0181757 }, + { "lat": 40.7086869, "lon": -74.0181517 }, + { "lat": 40.7086989, "lon": -74.0181316 }, + { "lat": 40.7087468, "lon": -74.0180549 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1231600246, + "bounds": { + "minlat": 40.7103502, + "minlon": -74.0175611, + "maxlat": 40.7103644, + "maxlon": -74.0175250 + }, + "nodes": [ + 11422119938, + 11422119915, + 42437410 + ], + "geometry": [ + { "lat": 40.7103502, "lon": -74.0175250 }, + { "lat": 40.7103554, "lon": -74.0175382 }, + { "lat": 40.7103644, "lon": -74.0175611 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Albany Street", + "name:etymology:wikidata": "Q24861", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "paving_stones", + "wikidata": "Q29110247", + "wikipedia": "en:Albany Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1231606029, + "bounds": { + "minlat": 40.7099647, + "minlon": -74.0158205, + "maxlat": 40.7100566, + "maxlon": -74.0157856 + }, + "nodes": [ + 11422226425, + 11422226427, + 11422226453, + 11422226426 + ], + "geometry": [ + { "lat": 40.7100566, "lon": -74.0157856 }, + { "lat": 40.7100422, "lon": -74.0157911 }, + { "lat": 40.7100208, "lon": -74.0157992 }, + { "lat": 40.7099647, "lon": -74.0158205 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1231606047, + "bounds": { + "minlat": 40.7107523, + "minlon": -74.0148409, + "maxlat": 40.7107999, + "maxlon": -74.0147460 + }, + "nodes": [ + 10223354307, + 11422226529 + ], + "geometry": [ + { "lat": 40.7107999, "lon": -74.0147460 }, + { "lat": 40.7107523, "lon": -74.0148409 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1231606048, + "bounds": { + "minlat": 40.7101214, + "minlon": -74.0150329, + "maxlat": 40.7101398, + "maxlon": -74.0149343 + }, + "nodes": [ + 11422226530, + 10223354310 + ], + "geometry": [ + { "lat": 40.7101398, "lon": -74.0150329 }, + { "lat": 40.7101214, "lon": -74.0149343 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1231606066, + "bounds": { + "minlat": 40.7109109, + "minlon": -74.0153304, + "maxlat": 40.7112198, + "maxlon": -74.0147787 + }, + "nodes": [ + 6417669189, + 11422226643, + 11422226642, + 11422226509, + 11422226637, + 10288473194, + 11422226638, + 11422226639, + 11422226640, + 11422226641, + 11374486383, + 5813259917, + 11422226434, + 11422226436, + 11422226603, + 8262936814, + 8262936813, + 8262936812, + 8262936811, + 11422226644, + 1695926472, + 889262007, + 6417669189 + ], + "geometry": [ + { "lat": 40.7110585, "lon": -74.0152811 }, + { "lat": 40.7110472, "lon": -74.0152448 }, + { "lat": 40.7109638, "lon": -74.0149765 }, + { "lat": 40.7109374, "lon": -74.0148914 }, + { "lat": 40.7109109, "lon": -74.0148061 }, + { "lat": 40.7109754, "lon": -74.0147923 }, + { "lat": 40.7110393, "lon": -74.0147787 }, + { "lat": 40.7110518, "lon": -74.0147787 }, + { "lat": 40.7110635, "lon": -74.0147862 }, + { "lat": 40.7110706, "lon": -74.0147965 }, + { "lat": 40.7110844, "lon": -74.0148326 }, + { "lat": 40.7111148, "lon": -74.0149065 }, + { "lat": 40.7112092, "lon": -74.0151265 }, + { "lat": 40.7111771, "lon": -74.0151462 }, + { "lat": 40.7111608, "lon": -74.0151563 }, + { "lat": 40.7110800, "lon": -74.0149724 }, + { "lat": 40.7109824, "lon": -74.0150108 }, + { "lat": 40.7110596, "lon": -74.0151984 }, + { "lat": 40.7111621, "lon": -74.0151593 }, + { "lat": 40.7111742, "lon": -74.0151952 }, + { "lat": 40.7112198, "lon": -74.0153304 }, + { "lat": 40.7110828, "lon": -74.0152669 }, + { "lat": 40.7110585, "lon": -74.0152811 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1231809438, + "bounds": { + "minlat": 40.7112211, + "minlon": -74.0166645, + "maxlat": 40.7112347, + "maxlon": -74.0166021 + }, + "nodes": [ + 4281671259, + 5490801910 + ], + "geometry": [ + { "lat": 40.7112347, "lon": -74.0166645 }, + { "lat": 40.7112211, "lon": -74.0166021 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "5 mph", + "motor_vehicle": "private", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1231809439, + "bounds": { + "minlat": 40.7110712, + "minlon": -74.0163592, + "maxlat": 40.7111581, + "maxlon": -74.0163260 + }, + "nodes": [ + 11424681238, + 11424681524, + 11424681288, + 11424681239 + ], + "geometry": [ + { "lat": 40.7111581, "lon": -74.0163260 }, + { "lat": 40.7111068, "lon": -74.0163456 }, + { "lat": 40.7110909, "lon": -74.0163517 }, + { "lat": 40.7110712, "lon": -74.0163592 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1231809440, + "bounds": { + "minlat": 40.7108547, + "minlon": -74.0174922, + "maxlat": 40.7111022, + "maxlon": -74.0174255 + }, + "nodes": [ + 4281671257, + 4281671256, + 11424681245, + 11424681247, + 11424681246, + 4281671255 + ], + "geometry": [ + { "lat": 40.7111022, "lon": -74.0174296 }, + { "lat": 40.7109270, "lon": -74.0174901 }, + { "lat": 40.7109045, "lon": -74.0174922 }, + { "lat": 40.7108831, "lon": -74.0174817 }, + { "lat": 40.7108653, "lon": -74.0174575 }, + { "lat": 40.7108547, "lon": -74.0174255 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "5 mph", + "motor_vehicle": "private", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1231809467, + "bounds": { + "minlat": 40.7115841, + "minlon": -74.0157844, + "maxlat": 40.7116585, + "maxlon": -74.0157489 + }, + "nodes": [ + 11424681369, + 11424681367, + 42422026 + ], + "geometry": [ + { "lat": 40.7116585, "lon": -74.0157489 }, + { "lat": 40.7116351, "lon": -74.0157592 }, + { "lat": 40.7115841, "lon": -74.0157844 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "South End Avenue", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1231809481, + "bounds": { + "minlat": 40.7111868, + "minlon": -74.0163604, + "maxlat": 40.7112828, + "maxlon": -74.0161658 + }, + "nodes": [ + 11424681500, + 11424681512, + 11424681293, + 889584942, + 1694299739, + 11424681501, + 11424681292, + 11424681500 + ], + "geometry": [ + { "lat": 40.7111868, "lon": -74.0161882 }, + { "lat": 40.7112255, "lon": -74.0163604 }, + { "lat": 40.7112548, "lon": -74.0163489 }, + { "lat": 40.7112828, "lon": -74.0163380 }, + { "lat": 40.7112579, "lon": -74.0162271 }, + { "lat": 40.7112441, "lon": -74.0161658 }, + { "lat": 40.7112156, "lon": -74.0161769 }, + { "lat": 40.7111868, "lon": -74.0161882 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1232211297, + "bounds": { + "minlat": 40.7122689, + "minlon": -74.0162670, + "maxlat": 40.7130771, + "maxlon": -74.0158039 + }, + "nodes": [ + 11429301058, + 11429301060, + 11429301059, + 1695926490, + 11429301062, + 11429300997, + 11429301002, + 11429301064, + 11429301003, + 1695926486, + 11429301007, + 11429301066, + 11429301008, + 11429301015, + 11429301068, + 11429301016, + 11424681445, + 11424681525, + 889261568, + 2823589925, + 2823589926, + 1696261118, + 1695926488, + 1695926493, + 2823589933, + 2823589932, + 8281922488, + 8282447596, + 11429291454, + 11429301058 + ], + "geometry": [ + { "lat": 40.7130771, "lon": -74.0159476 }, + { "lat": 40.7126532, "lon": -74.0162553 }, + { "lat": 40.7126377, "lon": -74.0162670 }, + { "lat": 40.7125994, "lon": -74.0161738 }, + { "lat": 40.7125949, "lon": -74.0161633 }, + { "lat": 40.7125909, "lon": -74.0161538 }, + { "lat": 40.7125571, "lon": -74.0160719 }, + { "lat": 40.7125543, "lon": -74.0160653 }, + { "lat": 40.7125508, "lon": -74.0160572 }, + { "lat": 40.7125060, "lon": -74.0159518 }, + { "lat": 40.7124595, "lon": -74.0159707 }, + { "lat": 40.7124533, "lon": -74.0159732 }, + { "lat": 40.7124473, "lon": -74.0159757 }, + { "lat": 40.7123469, "lon": -74.0160164 }, + { "lat": 40.7123393, "lon": -74.0160195 }, + { "lat": 40.7123317, "lon": -74.0160226 }, + { "lat": 40.7122850, "lon": -74.0160416 }, + { "lat": 40.7122781, "lon": -74.0160098 }, + { "lat": 40.7122689, "lon": -74.0159676 }, + { "lat": 40.7123304, "lon": -74.0159446 }, + { "lat": 40.7123319, "lon": -74.0159515 }, + { "lat": 40.7123955, "lon": -74.0159286 }, + { "lat": 40.7125214, "lon": -74.0158807 }, + { "lat": 40.7126165, "lon": -74.0161002 }, + { "lat": 40.7126961, "lon": -74.0160406 }, + { "lat": 40.7126931, "lon": -74.0160336 }, + { "lat": 40.7130157, "lon": -74.0158039 }, + { "lat": 40.7130364, "lon": -74.0158518 }, + { "lat": 40.7130580, "lon": -74.0159027 }, + { "lat": 40.7130771, "lon": -74.0159476 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1232255319, + "bounds": { + "minlat": 40.7144600, + "minlon": -74.0163649, + "maxlat": 40.7147890, + "maxlon": -74.0161619 + }, + "nodes": [ + 11429768218, + 11335230573, + 11429768269, + 11429768221, + 11429768233, + 11429768223, + 42446854 + ], + "geometry": [ + { "lat": 40.7144600, "lon": -74.0163649 }, + { "lat": 40.7146509, "lon": -74.0162139 }, + { "lat": 40.7146757, "lon": -74.0161951 }, + { "lat": 40.7147146, "lon": -74.0161657 }, + { "lat": 40.7147295, "lon": -74.0161619 }, + { "lat": 40.7147553, "lon": -74.0161655 }, + { "lat": 40.7147890, "lon": -74.0161825 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "service", + "lanes": "1", + "motor_vehicle": "customers", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1232255320, + "bounds": { + "minlat": 40.7145065, + "minlon": -74.0164791, + "maxlat": 40.7147890, + "maxlon": -74.0161825 + }, + "nodes": [ + 42446854, + 11429768222, + 11429768232, + 11429768219, + 11429768240, + 11429768220 + ], + "geometry": [ + { "lat": 40.7147890, "lon": -74.0161825 }, + { "lat": 40.7147832, "lon": -74.0162346 }, + { "lat": 40.7147736, "lon": -74.0162676 }, + { "lat": 40.7147638, "lon": -74.0162823 }, + { "lat": 40.7147042, "lon": -74.0163279 }, + { "lat": 40.7145065, "lon": -74.0164791 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "service", + "lanes": "1", + "motor_vehicle": "customers", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1232255327, + "bounds": { + "minlat": 40.7143995, + "minlon": -74.0164925, + "maxlat": 40.7144600, + "maxlon": -74.0163649 + }, + "nodes": [ + 11429768244, + 11429768245, + 11429768218 + ], + "geometry": [ + { "lat": 40.7143995, "lon": -74.0164925 }, + { "lat": 40.7144364, "lon": -74.0163993 }, + { "lat": 40.7144600, "lon": -74.0163649 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "service", + "lanes": "1", + "motor_vehicle": "customers", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1232255328, + "bounds": { + "minlat": 40.7143995, + "minlon": -74.0164926, + "maxlat": 40.7145065, + "maxlon": -74.0164791 + }, + "nodes": [ + 11429768220, + 11429768246, + 11429768244 + ], + "geometry": [ + { "lat": 40.7145065, "lon": -74.0164791 }, + { "lat": 40.7144752, "lon": -74.0164926 }, + { "lat": 40.7143995, "lon": -74.0164925 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "service", + "lanes": "1", + "motor_vehicle": "customers", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1232255335, + "bounds": { + "minlat": 40.7143400, + "minlon": -74.0164925, + "maxlat": 40.7143995, + "maxlon": -74.0163567 + }, + "nodes": [ + 11429768244, + 11432613014, + 11429768273, + 11429768272 + ], + "geometry": [ + { "lat": 40.7143995, "lon": -74.0164925 }, + { "lat": 40.7143630, "lon": -74.0164092 }, + { "lat": 40.7143475, "lon": -74.0163737 }, + { "lat": 40.7143400, "lon": -74.0163567 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "motor_vehicle": "customers", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1232423329, + "bounds": { + "minlat": 40.7418942, + "minlon": -73.9338094, + "maxlat": 40.7420050, + "maxlon": -73.9333058 + }, + "nodes": [ + 11432039306, + 5482217745, + 5482217744 + ], + "geometry": [ + { "lat": 40.7418942, "lon": -73.9333058 }, + { "lat": 40.7419349, "lon": -73.9336632 }, + { "lat": 40.7420050, "lon": -73.9338094 } + ], + "tags": { + "highway": "service", + "level": "1", + "maxspeed": "10 mph", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1232481653, + "bounds": { + "minlat": 40.7159369, + "minlon": -74.0157535, + "maxlat": 40.7159813, + "maxlon": -74.0157203 + }, + "nodes": [ + 11432613322, + 11432613321 + ], + "geometry": [ + { "lat": 40.7159369, "lon": -74.0157535 }, + { "lat": 40.7159813, "lon": -74.0157203 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1232481654, + "bounds": { + "minlat": 40.7159032, + "minlon": -74.0157788, + "maxlat": 40.7159369, + "maxlon": -74.0157535 + }, + "nodes": [ + 11432613320, + 11432613323, + 11432613322 + ], + "geometry": [ + { "lat": 40.7159032, "lon": -74.0157788 }, + { "lat": 40.7159164, "lon": -74.0157689 }, + { "lat": 40.7159369, "lon": -74.0157535 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1232561427, + "bounds": { + "minlat": 40.7126342, + "minlon": -74.0148721, + "maxlat": 40.7138745, + "maxlon": -74.0140639 + }, + "nodes": [ + 11432612992, + 5813259937, + 11395163165, + 11433322023, + 11433322024, + 11433322025, + 11433322026, + 10282972531, + 8262936854, + 11429768008, + 11429768007, + 11429768006, + 11429768009, + 5813250364, + 8262936839, + 8262936838, + 8262936853, + 8262936852, + 11429768018, + 11429768019, + 8262936851, + 11429768020, + 8262936850, + 8262936849, + 11429767984, + 8262936858, + 11429767998, + 11429767999, + 11429768000, + 8262936859, + 10282972497, + 11429767990, + 11429767991, + 8262936832, + 8262936833, + 8262936826, + 5813250355, + 8262936837, + 8262936834, + 8262936835, + 8262936836, + 4308240258, + 11433322027, + 8262936827, + 11433322028, + 11423870994, + 5813259902, + 11429695959, + 2531682693, + 889261681, + 11423871006, + 8281922515, + 8281922514, + 8281922513, + 8281922512, + 8281922511, + 8281922510, + 8281922509, + 8281922508, + 8281922507, + 8281922506, + 8281922529, + 8281922505, + 8281922504, + 8281922503, + 8281922502, + 8281922501, + 8281922500, + 8281922499, + 8281922498, + 8281922497, + 8281922496, + 11429695963, + 1695926495, + 2823589935, + 2823589943, + 2823589942, + 2823589945, + 2823589944, + 2823589947, + 2823589946, + 2823589949, + 2823589948, + 2823589960, + 2823589961, + 2823589962, + 2823589963, + 2823589964, + 2823589965, + 2823589966, + 8281922520, + 11432612992 + ], + "geometry": [ + { "lat": 40.7138745, "lon": -74.0142809 }, + { "lat": 40.7138307, "lon": -74.0141864 }, + { "lat": 40.7137990, "lon": -74.0141170 }, + { "lat": 40.7137830, "lon": -74.0140824 }, + { "lat": 40.7137749, "lon": -74.0140718 }, + { "lat": 40.7137656, "lon": -74.0140645 }, + { "lat": 40.7137537, "lon": -74.0140639 }, + { "lat": 40.7137286, "lon": -74.0140726 }, + { "lat": 40.7136863, "lon": -74.0140879 }, + { "lat": 40.7136910, "lon": -74.0140875 }, + { "lat": 40.7136965, "lon": -74.0140902 }, + { "lat": 40.7136993, "lon": -74.0140947 }, + { "lat": 40.7137079, "lon": -74.0141147 }, + { "lat": 40.7137187, "lon": -74.0141419 }, + { "lat": 40.7137309, "lon": -74.0141728 }, + { "lat": 40.7137495, "lon": -74.0142159 }, + { "lat": 40.7137099, "lon": -74.0142378 }, + { "lat": 40.7136654, "lon": -74.0142586 }, + { "lat": 40.7136337, "lon": -74.0142721 }, + { "lat": 40.7135738, "lon": -74.0142915 }, + { "lat": 40.7135004, "lon": -74.0143139 }, + { "lat": 40.7134385, "lon": -74.0143315 }, + { "lat": 40.7132274, "lon": -74.0143911 }, + { "lat": 40.7132158, "lon": -74.0143676 }, + { "lat": 40.7132023, "lon": -74.0143359 }, + { "lat": 40.7131919, "lon": -74.0143115 }, + { "lat": 40.7131746, "lon": -74.0142681 }, + { "lat": 40.7131719, "lon": -74.0142583 }, + { "lat": 40.7131735, "lon": -74.0142477 }, + { "lat": 40.7131797, "lon": -74.0142431 }, + { "lat": 40.7131226, "lon": -74.0142593 }, + { "lat": 40.7130668, "lon": -74.0142752 }, + { "lat": 40.7130756, "lon": -74.0142742 }, + { "lat": 40.7130820, "lon": -74.0142795 }, + { "lat": 40.7130935, "lon": -74.0143069 }, + { "lat": 40.7130999, "lon": -74.0143362 }, + { "lat": 40.7131016, "lon": -74.0143662 }, + { "lat": 40.7131034, "lon": -74.0143978 }, + { "lat": 40.7131122, "lon": -74.0144272 }, + { "lat": 40.7126839, "lon": -74.0145491 }, + { "lat": 40.7126786, "lon": -74.0145248 }, + { "lat": 40.7126712, "lon": -74.0144929 }, + { "lat": 40.7126650, "lon": -74.0144626 }, + { "lat": 40.7126342, "lon": -74.0144730 }, + { "lat": 40.7126359, "lon": -74.0144875 }, + { "lat": 40.7126388, "lon": -74.0145032 }, + { "lat": 40.7126559, "lon": -74.0145753 }, + { "lat": 40.7126643, "lon": -74.0146108 }, + { "lat": 40.7127159, "lon": -74.0148271 }, + { "lat": 40.7127818, "lon": -74.0148721 }, + { "lat": 40.7128187, "lon": -74.0148594 }, + { "lat": 40.7128418, "lon": -74.0148497 }, + { "lat": 40.7128327, "lon": -74.0148075 }, + { "lat": 40.7128168, "lon": -74.0148060 }, + { "lat": 40.7127971, "lon": -74.0147779 }, + { "lat": 40.7127754, "lon": -74.0147273 }, + { "lat": 40.7127603, "lon": -74.0146798 }, + { "lat": 40.7127541, "lon": -74.0146359 }, + { "lat": 40.7127719, "lon": -74.0146185 }, + { "lat": 40.7128102, "lon": -74.0145874 }, + { "lat": 40.7128594, "lon": -74.0145562 }, + { "lat": 40.7128961, "lon": -74.0145440 }, + { "lat": 40.7129268, "lon": -74.0145337 }, + { "lat": 40.7129817, "lon": -74.0145205 }, + { "lat": 40.7130379, "lon": -74.0145179 }, + { "lat": 40.7130541, "lon": -74.0145685 }, + { "lat": 40.7130603, "lon": -74.0146063 }, + { "lat": 40.7130623, "lon": -74.0146522 }, + { "lat": 40.7130611, "lon": -74.0146962 }, + { "lat": 40.7130549, "lon": -74.0147232 }, + { "lat": 40.7130421, "lon": -74.0147299 }, + { "lat": 40.7130525, "lon": -74.0147711 }, + { "lat": 40.7130723, "lon": -74.0147637 }, + { "lat": 40.7130856, "lon": -74.0147587 }, + { "lat": 40.7131267, "lon": -74.0146652 }, + { "lat": 40.7132983, "lon": -74.0145966 }, + { "lat": 40.7132941, "lon": -74.0145043 }, + { "lat": 40.7133059, "lon": -74.0144999 }, + { "lat": 40.7133014, "lon": -74.0144792 }, + { "lat": 40.7133163, "lon": -74.0144737 }, + { "lat": 40.7133123, "lon": -74.0144555 }, + { "lat": 40.7133258, "lon": -74.0144505 }, + { "lat": 40.7133216, "lon": -74.0144308 }, + { "lat": 40.7134835, "lon": -74.0143705 }, + { "lat": 40.7134877, "lon": -74.0143902 }, + { "lat": 40.7135032, "lon": -74.0143844 }, + { "lat": 40.7135071, "lon": -74.0144025 }, + { "lat": 40.7135207, "lon": -74.0143975 }, + { "lat": 40.7135240, "lon": -74.0144124 }, + { "lat": 40.7137587, "lon": -74.0143211 }, + { "lat": 40.7138186, "lon": -74.0143003 }, + { "lat": 40.7138745, "lon": -74.0142809 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1232816965, + "bounds": { + "minlat": 40.8656712, + "minlon": -74.0067935, + "maxlat": 40.8660521, + "maxlon": -74.0061068 + }, + "nodes": [ + 10938641144, + 13164347105, + 12000199475, + 13164331396, + 13753420407, + 298607109 + ], + "geometry": [ + { "lat": 40.8656712, "lon": -74.0067935 }, + { "lat": 40.8657428, "lon": -74.0066531 }, + { "lat": 40.8658063, "lon": -74.0065358 }, + { "lat": 40.8659004, "lon": -74.0063656 }, + { "lat": 40.8659708, "lon": -74.0062402 }, + { "lat": 40.8660521, "lon": -74.0061068 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "placement": "transition", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1232816967, + "bounds": { + "minlat": 40.8642522, + "minlon": -74.0107325, + "maxlat": 40.8642832, + "maxlon": -74.0104613 + }, + "nodes": [ + 11436234344, + 10938740522, + 298289432 + ], + "geometry": [ + { "lat": 40.8642522, "lon": -74.0107325 }, + { "lat": 40.8642707, "lon": -74.0105599 }, + { "lat": 40.8642832, "lon": -74.0104613 } + ], + "tags": { + "destination": "George Washington Bridge;New York City", + "highway": "motorway", + "lanes": "3", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 80", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1232821333, + "bounds": { + "minlat": 40.8671456, + "minlon": -74.0049236, + "maxlat": 40.8673537, + "maxlon": -74.0046623 + }, + "nodes": [ + 3876862738, + 13758734041, + 13164331400, + 298607231 + ], + "geometry": [ + { "lat": 40.8671456, "lon": -74.0049236 }, + { "lat": 40.8672077, "lon": -74.0048437 }, + { "lat": 40.8672746, "lon": -74.0047606 }, + { "lat": 40.8673537, "lon": -74.0046623 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "||merge_to_left" + } +}, +{ + "type": "way", + "id": 1232821335, + "bounds": { + "minlat": 40.8664427, + "minlon": -74.0059290, + "maxlat": 40.8670417, + "maxlon": -74.0050592 + }, + "nodes": [ + 298607359, + 13758734038, + 10938860346, + 13164303715, + 13758734039, + 10938891810, + 13758734040, + 10940617432, + 298607243 + ], + "geometry": [ + { "lat": 40.8664427, "lon": -74.0059290 }, + { "lat": 40.8665248, "lon": -74.0057947 }, + { "lat": 40.8666138, "lon": -74.0056577 }, + { "lat": 40.8666816, "lon": -74.0055568 }, + { "lat": 40.8667510, "lon": -74.0054559 }, + { "lat": 40.8668141, "lon": -74.0053660 }, + { "lat": 40.8668884, "lon": -74.0052642 }, + { "lat": 40.8669482, "lon": -74.0051847 }, + { "lat": 40.8670417, "lon": -74.0050592 } + ], + "tags": { + "destination": "George Washington Bridge;New York City", + "destination:ref": "I 80;I 95 North", + "highway": "motorway", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 95;NJTP", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1232833559, + "bounds": { + "minlat": 40.7313454, + "minlon": -73.9969810, + "maxlat": 40.7314217, + "maxlon": -73.9968302 + }, + "nodes": [ + 11436610909, + 3584752506, + 3584752508 + ], + "geometry": [ + { "lat": 40.7313454, "lon": -73.9968302 }, + { "lat": 40.7313712, "lon": -73.9968822 }, + { "lat": 40.7314217, "lon": -73.9969810 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Washington Square North", + "name:etymology:wikidata": "Q23", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4993391", + "wikipedia": "en:Waverly Place" + } +}, +{ + "type": "way", + "id": 1232990078, + "bounds": { + "minlat": 40.8721554, + "minlon": -73.9810247, + "maxlat": 40.8724518, + "maxlon": -73.9806477 + }, + "nodes": [ + 11438911116, + 10940678102, + 13762277592, + 10940678100 + ], + "geometry": [ + { "lat": 40.8724518, "lon": -73.9810247 }, + { "lat": 40.8723564, "lon": -73.9809009 }, + { "lat": 40.8722549, "lon": -73.9807731 }, + { "lat": 40.8721554, "lon": -73.9806477 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "placement": "middle_of:2", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "|||slight_right" + } +}, +{ + "type": "way", + "id": 1232990079, + "bounds": { + "minlat": 40.8721322, + "minlon": -73.9984967, + "maxlat": 40.8726429, + "maxlon": -73.9976442 + }, + "nodes": [ + 298607164, + 13762277564, + 13762277565, + 13762277566, + 13762277567, + 13762277568, + 298605051 + ], + "geometry": [ + { "lat": 40.8721322, "lon": -73.9984967 }, + { "lat": 40.8722168, "lon": -73.9983606 }, + { "lat": 40.8723054, "lon": -73.9982175 }, + { "lat": 40.8723890, "lon": -73.9980788 }, + { "lat": 40.8724754, "lon": -73.9979350 }, + { "lat": 40.8725588, "lon": -73.9977923 }, + { "lat": 40.8726429, "lon": -73.9976442 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "placement": "middle_of:2", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "|||merge_to_left" + } +}, +{ + "type": "way", + "id": 1232990081, + "bounds": { + "minlat": 40.8670487, + "minlon": -74.0047919, + "maxlat": 40.8721322, + "maxlon": -73.9984967 + }, + "nodes": [ + 3876862744, + 13164347103, + 13762277541, + 13762277539, + 13762277540, + 13762277542, + 298607161, + 13762277543, + 13762277544, + 13762277545, + 13762277546, + 13762277547, + 13762277548, + 13762277549, + 13762277550, + 13762277551, + 10940498982, + 13762277552, + 298607147, + 13762277553, + 10940498996, + 13762277554, + 298607148, + 13762277555, + 298607117, + 13762277556, + 298607149, + 13762277557, + 10940498998, + 13762277558, + 298607162, + 13762277559, + 13762277560, + 13762277561, + 13762277562, + 13762277563, + 298607164 + ], + "geometry": [ + { "lat": 40.8670487, "lon": -74.0047919 }, + { "lat": 40.8684135, "lon": -74.0031777 }, + { "lat": 40.8684554, "lon": -74.0031292 }, + { "lat": 40.8685617, "lon": -74.0030062 }, + { "lat": 40.8686655, "lon": -74.0028861 }, + { "lat": 40.8689747, "lon": -74.0025248 }, + { "lat": 40.8690756, "lon": -74.0024068 }, + { "lat": 40.8691785, "lon": -74.0022874 }, + { "lat": 40.8692789, "lon": -74.0021699 }, + { "lat": 40.8693850, "lon": -74.0020461 }, + { "lat": 40.8694922, "lon": -74.0019210 }, + { "lat": 40.8695926, "lon": -74.0018038 }, + { "lat": 40.8696952, "lon": -74.0016841 }, + { "lat": 40.8698994, "lon": -74.0014464 }, + { "lat": 40.8699996, "lon": -74.0013283 }, + { "lat": 40.8701023, "lon": -74.0012073 }, + { "lat": 40.8702028, "lon": -74.0010898 }, + { "lat": 40.8703090, "lon": -74.0009653 }, + { "lat": 40.8704079, "lon": -74.0008484 }, + { "lat": 40.8705132, "lon": -74.0007223 }, + { "lat": 40.8706158, "lon": -74.0005993 }, + { "lat": 40.8707196, "lon": -74.0004734 }, + { "lat": 40.8708186, "lon": -74.0003509 }, + { "lat": 40.8709183, "lon": -74.0002237 }, + { "lat": 40.8710153, "lon": -74.0000996 }, + { "lat": 40.8711151, "lon": -73.9999696 }, + { "lat": 40.8712101, "lon": -73.9998442 }, + { "lat": 40.8713058, "lon": -73.9997137 }, + { "lat": 40.8713994, "lon": -73.9995844 }, + { "lat": 40.8714985, "lon": -73.9994469 }, + { "lat": 40.8715884, "lon": -73.9993199 }, + { "lat": 40.8716810, "lon": -73.9991857 }, + { "lat": 40.8717741, "lon": -73.9990486 }, + { "lat": 40.8718672, "lon": -73.9989102 }, + { "lat": 40.8719548, "lon": -73.9987760 }, + { "lat": 40.8720440, "lon": -73.9986349 }, + { "lat": 40.8721322, "lon": -73.9984967 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1233001321, + "bounds": { + "minlat": 40.8655508, + "minlon": -74.0217537, + "maxlat": 40.8660692, + "maxlon": -74.0182172 + }, + "nodes": [ + 11439046690, + 7098767049 + ], + "geometry": [ + { "lat": 40.8655508, "lon": -74.0182172 }, + { "lat": 40.8660692, "lon": -74.0217537 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000080", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "placement": "right_of:1", + "ref": "I 80", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "turn:lanes": "||merge_to_left" + } +}, +{ + "type": "way", + "id": 1233049057, + "bounds": { + "minlat": 40.7150998, + "minlon": -74.0134927, + "maxlat": 40.7151863, + "maxlon": -74.0133908 + }, + "nodes": [ + 4899841676, + 11291270869, + 11439633103, + 11439633104, + 11439633105, + 11439633106, + 11439633107, + 11439633108, + 11439633109, + 11439633110, + 11291270870, + 4899841671, + 11439633053, + 11439633052, + 11439633050, + 11439633051, + 4899841676 + ], + "geometry": [ + { "lat": 40.7151140, "lon": -74.0134927 }, + { "lat": 40.7151546, "lon": -74.0134838 }, + { "lat": 40.7151741, "lon": -74.0134791 }, + { "lat": 40.7151818, "lon": -74.0134732 }, + { "lat": 40.7151858, "lon": -74.0134645 }, + { "lat": 40.7151863, "lon": -74.0134542 }, + { "lat": 40.7151786, "lon": -74.0134071 }, + { "lat": 40.7151755, "lon": -74.0134001 }, + { "lat": 40.7151696, "lon": -74.0133931 }, + { "lat": 40.7151627, "lon": -74.0133908 }, + { "lat": 40.7151389, "lon": -74.0133951 }, + { "lat": 40.7150998, "lon": -74.0134041 }, + { "lat": 40.7151039, "lon": -74.0134062 }, + { "lat": 40.7151068, "lon": -74.0134103 }, + { "lat": 40.7151207, "lon": -74.0134810 }, + { "lat": 40.7151183, "lon": -74.0134889 }, + { "lat": 40.7151140, "lon": -74.0134927 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1233049064, + "bounds": { + "minlat": 40.7141445, + "minlon": -74.0138939, + "maxlat": 40.7142409, + "maxlon": -74.0138168 + }, + "nodes": [ + 11439633204, + 3594896439 + ], + "geometry": [ + { "lat": 40.7142409, "lon": -74.0138939 }, + { "lat": 40.7141445, "lon": -74.0138168 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1233049065, + "bounds": { + "minlat": 40.7149598, + "minlon": -74.0137081, + "maxlat": 40.7150409, + "maxlon": -74.0135806 + }, + "nodes": [ + 3594896445, + 11439633207 + ], + "geometry": [ + { "lat": 40.7150409, "lon": -74.0135806 }, + { "lat": 40.7149598, "lon": -74.0137081 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1233049074, + "bounds": { + "minlat": 40.7143573, + "minlon": -74.0151033, + "maxlat": 40.7145039, + "maxlon": -74.0149945 + }, + "nodes": [ + 11439633273, + 5815643321, + 5813249552 + ], + "geometry": [ + { "lat": 40.7145039, "lon": -74.0149945 }, + { "lat": 40.7144261, "lon": -74.0150521 }, + { "lat": 40.7143573, "lon": -74.0151033 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "North End Way", + "oneway": "no", + "source": "Bing Sat Images", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1233049075, + "bounds": { + "minlat": 40.7153146, + "minlon": -74.0146751, + "maxlat": 40.7153829, + "maxlon": -74.0146534 + }, + "nodes": [ + 11439633274, + 5815889995, + 11439633455 + ], + "geometry": [ + { "lat": 40.7153146, "lon": -74.0146751 }, + { "lat": 40.7153399, "lon": -74.0146680 }, + { "lat": 40.7153829, "lon": -74.0146534 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "North End Way", + "oneway": "no", + "source": "Bing Sat Images", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1233049077, + "bounds": { + "minlat": 40.7152938, + "minlon": -74.0136849, + "maxlat": 40.7153045, + "maxlon": -74.0136227 + }, + "nodes": [ + 11439633310, + 246866810 + ], + "geometry": [ + { "lat": 40.7152938, "lon": -74.0136227 }, + { "lat": 40.7153045, "lon": -74.0136849 } + ], + "tags": { + "cycleway:both": "lane", + "highway": "residential", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1233090489, + "bounds": { + "minlat": 40.7155687, + "minlon": -74.0155973, + "maxlat": 40.7156979, + "maxlon": -74.0154911 + }, + "nodes": [ + 11440189918, + 42429595 + ], + "geometry": [ + { "lat": 40.7156979, "lon": -74.0154911 }, + { "lat": 40.7155687, "lon": -74.0155973 } + ], + "tags": { + "highway": "residential", + "lanes": "4", + "maxspeed": "20 mph", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1233090501, + "bounds": { + "minlat": 40.7165534, + "minlon": -74.0133564, + "maxlat": 40.7165750, + "maxlon": -74.0133001 + }, + "nodes": [ + 246866830, + 11440189985 + ], + "geometry": [ + { "lat": 40.7165750, "lon": -74.0133564 }, + { "lat": 40.7165534, "lon": -74.0133001 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Warren Street", + "name:etymology:wikidata": "Q3376953", + "name:ko": "워렌 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1233090510, + "bounds": { + "minlat": 40.7153774, + "minlon": -74.0137731, + "maxlat": 40.7165550, + "maxlon": -74.0133223 + }, + "nodes": [ + 11440190021, + 5813259905, + 11440189974, + 11440190071, + 11440190072, + 11440190073, + 11440190074, + 11440190075, + 11440189972, + 11440190051, + 11440190052, + 11440190053, + 11440190054, + 11440189973, + 11440190067, + 11440190068, + 11440190069, + 11440190070, + 11440120446, + 11440190047, + 11440190048, + 11440190049, + 11440190050, + 11440190076, + 11292548518, + 11440190077, + 11440190078, + 11440190079, + 11395161120, + 11440190080, + 11395161118, + 11440190023, + 11440120447, + 11440190022, + 11440120407, + 11440120406, + 4032952282, + 11440189971, + 11440190021 + ], + "geometry": [ + { "lat": 40.7165550, "lon": -74.0134564 }, + { "lat": 40.7165438, "lon": -74.0134321 }, + { "lat": 40.7165157, "lon": -74.0133719 }, + { "lat": 40.7165045, "lon": -74.0133467 }, + { "lat": 40.7164970, "lon": -74.0133334 }, + { "lat": 40.7164882, "lon": -74.0133261 }, + { "lat": 40.7164769, "lon": -74.0133223 }, + { "lat": 40.7164675, "lon": -74.0133244 }, + { "lat": 40.7164503, "lon": -74.0133282 }, + { "lat": 40.7164178, "lon": -74.0133361 }, + { "lat": 40.7164250, "lon": -74.0133361 }, + { "lat": 40.7164317, "lon": -74.0133417 }, + { "lat": 40.7164381, "lon": -74.0133609 }, + { "lat": 40.7164487, "lon": -74.0133902 }, + { "lat": 40.7164600, "lon": -74.0134217 }, + { "lat": 40.7164669, "lon": -74.0134434 }, + { "lat": 40.7154604, "lon": -74.0137023 }, + { "lat": 40.7154561, "lon": -74.0136746 }, + { "lat": 40.7154506, "lon": -74.0136442 }, + { "lat": 40.7154432, "lon": -74.0136030 }, + { "lat": 40.7154420, "lon": -74.0135935 }, + { "lat": 40.7154453, "lon": -74.0135847 }, + { "lat": 40.7154537, "lon": -74.0135808 }, + { "lat": 40.7154247, "lon": -74.0135881 }, + { "lat": 40.7154120, "lon": -74.0135954 }, + { "lat": 40.7153991, "lon": -74.0136061 }, + { "lat": 40.7153884, "lon": -74.0136206 }, + { "lat": 40.7153796, "lon": -74.0136390 }, + { "lat": 40.7153774, "lon": -74.0136609 }, + { "lat": 40.7153803, "lon": -74.0136844 }, + { "lat": 40.7153901, "lon": -74.0137425 }, + { "lat": 40.7153946, "lon": -74.0137731 }, + { "lat": 40.7154198, "lon": -74.0137664 }, + { "lat": 40.7154335, "lon": -74.0137627 }, + { "lat": 40.7154316, "lon": -74.0137508 }, + { "lat": 40.7155336, "lon": -74.0137221 }, + { "lat": 40.7164542, "lon": -74.0134861 }, + { "lat": 40.7165292, "lon": -74.0134642 }, + { "lat": 40.7165550, "lon": -74.0134564 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1233090511, + "bounds": { + "minlat": 40.7163299, + "minlon": -74.0131773, + "maxlat": 40.7164279, + "maxlon": -74.0130629 + }, + "nodes": [ + 4899829408, + 11440190122, + 11440190112, + 11440190113, + 11440190114, + 11440190115, + 11440190116, + 11440190117, + 11440190118, + 11440190121, + 4899829407, + 11440190083, + 11440190082, + 11440190081, + 11440190084, + 11440190085, + 4899829408 + ], + "geometry": [ + { "lat": 40.7163601, "lon": -74.0131773 }, + { "lat": 40.7163957, "lon": -74.0131690 }, + { "lat": 40.7164187, "lon": -74.0131637 }, + { "lat": 40.7164249, "lon": -74.0131577 }, + { "lat": 40.7164279, "lon": -74.0131495 }, + { "lat": 40.7164267, "lon": -74.0131373 }, + { "lat": 40.7164049, "lon": -74.0130715 }, + { "lat": 40.7163991, "lon": -74.0130653 }, + { "lat": 40.7163901, "lon": -74.0130629 }, + { "lat": 40.7163619, "lon": -74.0130704 }, + { "lat": 40.7163299, "lon": -74.0130789 }, + { "lat": 40.7163390, "lon": -74.0130807 }, + { "lat": 40.7163451, "lon": -74.0130888 }, + { "lat": 40.7163683, "lon": -74.0131560 }, + { "lat": 40.7163695, "lon": -74.0131654 }, + { "lat": 40.7163659, "lon": -74.0131731 }, + { "lat": 40.7163601, "lon": -74.0131773 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1233090516, + "bounds": { + "minlat": 40.7153149, + "minlon": -74.0133551, + "maxlat": 40.7154069, + "maxlon": -74.0132553 + }, + "nodes": [ + 11440190093, + 11292548520, + 11440190165, + 11440190166, + 11440190167, + 11440190168, + 11440190169, + 11440190170, + 11440190171, + 11292548519, + 4899829939, + 11440190092, + 11440190091, + 4899829414, + 11440190094, + 11440190093 + ], + "geometry": [ + { "lat": 40.7154069, "lon": -74.0133384 }, + { "lat": 40.7153652, "lon": -74.0133469 }, + { "lat": 40.7153338, "lon": -74.0133551 }, + { "lat": 40.7153270, "lon": -74.0133526 }, + { "lat": 40.7153231, "lon": -74.0133453 }, + { "lat": 40.7153153, "lon": -74.0132996 }, + { "lat": 40.7153149, "lon": -74.0132866 }, + { "lat": 40.7153185, "lon": -74.0132775 }, + { "lat": 40.7153243, "lon": -74.0132731 }, + { "lat": 40.7153500, "lon": -74.0132661 }, + { "lat": 40.7153906, "lon": -74.0132553 }, + { "lat": 40.7153837, "lon": -74.0132600 }, + { "lat": 40.7153819, "lon": -74.0132697 }, + { "lat": 40.7153934, "lon": -74.0133313 }, + { "lat": 40.7153987, "lon": -74.0133378 }, + { "lat": 40.7154069, "lon": -74.0133384 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1233183531, + "bounds": { + "minlat": 40.7722217, + "minlon": -73.9882352, + "maxlat": 40.7722921, + "maxlon": -73.9881833 + }, + "nodes": [ + 7787649983, + 11441798962, + 11441798961 + ], + "geometry": [ + { "lat": 40.7722217, "lon": -73.9882352 }, + { "lat": 40.7722380, "lon": -73.9882232 }, + { "lat": 40.7722921, "lon": -73.9881833 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1233234591, + "bounds": { + "minlat": 40.7651543, + "minlon": -73.9464881, + "maxlat": 40.7653336, + "maxlon": -73.9461266 + }, + "nodes": [ + 11442895654, + 11442895655 + ], + "geometry": [ + { "lat": 40.7653336, "lon": -73.9464881 }, + { "lat": 40.7651543, "lon": -73.9461266 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1233234592, + "bounds": { + "minlat": 40.7653336, + "minlon": -73.9465895, + "maxlat": 40.7653822, + "maxlon": -73.9464881 + }, + "nodes": [ + 9913669047, + 9913669050, + 11442895654 + ], + "geometry": [ + { "lat": 40.7653822, "lon": -73.9465895 }, + { "lat": 40.7653377, "lon": -73.9464959 }, + { "lat": 40.7653336, "lon": -73.9464881 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1233234595, + "bounds": { + "minlat": 40.7649372, + "minlon": -73.9458404, + "maxlat": 40.7649451, + "maxlon": -73.9458337 + }, + "nodes": [ + 11442895657, + 5212861636 + ], + "geometry": [ + { "lat": 40.7649372, "lon": -73.9458404 }, + { "lat": 40.7649451, "lon": -73.9458337 } + ], + "tags": { + "highway": "pedestrian", + "name": "East Road" + } +}, +{ + "type": "way", + "id": 1233234596, + "bounds": { + "minlat": 40.7643155, + "minlon": -73.9463664, + "maxlat": 40.7643262, + "maxlon": -73.9463572 + }, + "nodes": [ + 11442895658, + 5212861629 + ], + "geometry": [ + { "lat": 40.7643155, "lon": -73.9463664 }, + { "lat": 40.7643262, "lon": -73.9463572 } + ], + "tags": { + "covered": "yes", + "highway": "pedestrian", + "name": "East Road" + } +}, +{ + "type": "way", + "id": 1233260131, + "bounds": { + "minlat": 40.6998119, + "minlon": -73.9498006, + "maxlat": 40.7001135, + "maxlon": -73.9472209 + }, + "nodes": [ + 8229512422, + 42504087, + 9755373180, + 42504093 + ], + "geometry": [ + { "lat": 40.6998119, "lon": -73.9498006 }, + { "lat": 40.7000060, "lon": -73.9481330 }, + { "lat": 40.7001006, "lon": -73.9473258 }, + { "lat": 40.7001135, "lon": -73.9472209 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY;Kings, NY", + "tiger:name_base": "Flushing", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11378;11237", + "tiger:zip_right": "11378", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1233270403, + "bounds": { + "minlat": 40.8732749, + "minlon": -73.9067754, + "maxlat": 40.8734051, + "maxlon": -73.9067173 + }, + "nodes": [ + 2041169526, + 13038826855, + 42731542 + ], + "geometry": [ + { "lat": 40.8732749, "lon": -73.9067754 }, + { "lat": 40.8732998, "lon": -73.9067643 }, + { "lat": 40.8734051, "lon": -73.9067173 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1233270404, + "bounds": { + "minlat": 40.8730304, + "minlon": -73.9090134, + "maxlat": 40.8730920, + "maxlon": -73.9088621 + }, + "nodes": [ + 2041169515, + 2041169511 + ], + "geometry": [ + { "lat": 40.8730920, "lon": -73.9090134 }, + { "lat": 40.8730304, "lon": -73.9088621 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1233392300, + "bounds": { + "minlat": 40.8577295, + "minlon": -73.9814491, + "maxlat": 40.8578069, + "maxlon": -73.9813124 + }, + "nodes": [ + 9944184594, + 11444811790 + ], + "geometry": [ + { "lat": 40.8577295, "lon": -73.9813124 }, + { "lat": 40.8578069, "lon": -73.9814491 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1233392303, + "bounds": { + "minlat": 40.8546445, + "minlon": -73.9843052, + "maxlat": 40.8548806, + "maxlon": -73.9841384 + }, + "nodes": [ + 299171936, + 10943455741, + 299171770, + 11444811897 + ], + "geometry": [ + { "lat": 40.8548806, "lon": -73.9841384 }, + { "lat": 40.8548073, "lon": -73.9841932 }, + { "lat": 40.8547108, "lon": -73.9842614 }, + { "lat": 40.8546445, "lon": -73.9843052 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1233431075, + "bounds": { + "minlat": 40.8446691, + "minlon": -74.0139964, + "maxlat": 40.8447991, + "maxlon": -74.0139644 + }, + "nodes": [ + 11445102200, + 11445102199 + ], + "geometry": [ + { "lat": 40.8447991, "lon": -74.0139964 }, + { "lat": 40.8446691, "lon": -74.0139644 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1233431076, + "bounds": { + "minlat": 40.8446591, + "minlon": -74.0139083, + "maxlat": 40.8447113, + "maxlon": -74.0137496 + }, + "nodes": [ + 6901623410, + 298567786 + ], + "geometry": [ + { "lat": 40.8446591, "lon": -74.0139083 }, + { "lat": 40.8447113, "lon": -74.0137496 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1233431079, + "bounds": { + "minlat": 40.8445838, + "minlon": -74.0156257, + "maxlat": 40.8457500, + "maxlon": -74.0131700 + }, + "nodes": [ + 298566973, + 298567736, + 10927829882, + 10927829880, + 298566975, + 298567065, + 10927829881, + 298566977, + 12016147177, + 13785951909, + 13785951908, + 6901623423 + ], + "geometry": [ + { "lat": 40.8457500, "lon": -74.0156257 }, + { "lat": 40.8450236, "lon": -74.0142648 }, + { "lat": 40.8449599, "lon": -74.0141458 }, + { "lat": 40.8449007, "lon": -74.0140267 }, + { "lat": 40.8448469, "lon": -74.0139079 }, + { "lat": 40.8447937, "lon": -74.0137857 }, + { "lat": 40.8447434, "lon": -74.0136651 }, + { "lat": 40.8446976, "lon": -74.0135466 }, + { "lat": 40.8446597, "lon": -74.0134344 }, + { "lat": 40.8446234, "lon": -74.0133119 }, + { "lat": 40.8446149, "lon": -74.0132817 }, + { "lat": 40.8445838, "lon": -74.0131700 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1233448302, + "bounds": { + "minlat": 40.7161166, + "minlon": -74.0151761, + "maxlat": 40.7164134, + "maxlon": -74.0149192 + }, + "nodes": [ + 11445435954, + 11445435945, + 11445435968, + 11445435967, + 11445435966, + 11445435965, + 11445435964, + 11445435963, + 11445435962, + 11445435961, + 11445435960, + 11445435959, + 11445435958, + 11445435957, + 11445435956, + 11445435955, + 11445435954 + ], + "geometry": [ + { "lat": 40.7164134, "lon": -74.0149435 }, + { "lat": 40.7164076, "lon": -74.0149307 }, + { "lat": 40.7164024, "lon": -74.0149192 }, + { "lat": 40.7161915, "lon": -74.0150857 }, + { "lat": 40.7161626, "lon": -74.0151023 }, + { "lat": 40.7161420, "lon": -74.0151111 }, + { "lat": 40.7161289, "lon": -74.0151205 }, + { "lat": 40.7161198, "lon": -74.0151307 }, + { "lat": 40.7161166, "lon": -74.0151416 }, + { "lat": 40.7161191, "lon": -74.0151582 }, + { "lat": 40.7161285, "lon": -74.0151710 }, + { "lat": 40.7161372, "lon": -74.0151761 }, + { "lat": 40.7161475, "lon": -74.0151743 }, + { "lat": 40.7161594, "lon": -74.0151652 }, + { "lat": 40.7161777, "lon": -74.0151419 }, + { "lat": 40.7162039, "lon": -74.0151111 }, + { "lat": 40.7164134, "lon": -74.0149435 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1233448307, + "bounds": { + "minlat": 40.7163723, + "minlon": -74.0150067, + "maxlat": 40.7165174, + "maxlon": -74.0147925 + }, + "nodes": [ + 11445453889, + 11445453890, + 8282428755, + 11445453883, + 8282428756, + 11445453891, + 11445453892, + 10612369342, + 11445453869, + 11445435968, + 11445435945, + 11445435954, + 11445435953, + 10612369341, + 11445453889 + ], + "geometry": [ + { "lat": 40.7165174, "lon": -74.0149472 }, + { "lat": 40.7165033, "lon": -74.0149161 }, + { "lat": 40.7165140, "lon": -74.0149081 }, + { "lat": 40.7165036, "lon": -74.0148850 }, + { "lat": 40.7164725, "lon": -74.0148157 }, + { "lat": 40.7164628, "lon": -74.0148233 }, + { "lat": 40.7164488, "lon": -74.0147925 }, + { "lat": 40.7164097, "lon": -74.0148234 }, + { "lat": 40.7163723, "lon": -74.0148529 }, + { "lat": 40.7164024, "lon": -74.0149192 }, + { "lat": 40.7164076, "lon": -74.0149307 }, + { "lat": 40.7164134, "lon": -74.0149435 }, + { "lat": 40.7164421, "lon": -74.0150067 }, + { "lat": 40.7164789, "lon": -74.0149776 }, + { "lat": 40.7165174, "lon": -74.0149472 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1233448310, + "bounds": { + "minlat": 40.7169376, + "minlon": -74.0145629, + "maxlat": 40.7170331, + "maxlon": -74.0143957 + }, + "nodes": [ + 8282428754, + 11445453922, + 11445453923, + 11445435893, + 10612369345, + 11445435896, + 11445435897, + 11445435895, + 8282428758, + 8282428759, + 11445435898, + 11445435899, + 11445435901, + 10612369346, + 11445435900, + 11445435894, + 11445453924, + 11445453925, + 8282428757, + 11445453886, + 11445453884, + 8282428754 + ], + "geometry": [ + { "lat": 40.7169877, "lon": -74.0145383 }, + { "lat": 40.7169930, "lon": -74.0145340 }, + { "lat": 40.7170061, "lon": -74.0145629 }, + { "lat": 40.7170157, "lon": -74.0145554 }, + { "lat": 40.7170252, "lon": -74.0145460 }, + { "lat": 40.7170309, "lon": -74.0145350 }, + { "lat": 40.7170331, "lon": -74.0145243 }, + { "lat": 40.7170325, "lon": -74.0145125 }, + { "lat": 40.7170292, "lon": -74.0144984 }, + { "lat": 40.7169896, "lon": -74.0144108 }, + { "lat": 40.7169825, "lon": -74.0144010 }, + { "lat": 40.7169723, "lon": -74.0143967 }, + { "lat": 40.7169640, "lon": -74.0143957 }, + { "lat": 40.7169582, "lon": -74.0143972 }, + { "lat": 40.7169560, "lon": -74.0143978 }, + { "lat": 40.7169465, "lon": -74.0144032 }, + { "lat": 40.7169376, "lon": -74.0144102 }, + { "lat": 40.7169512, "lon": -74.0144418 }, + { "lat": 40.7169462, "lon": -74.0144458 }, + { "lat": 40.7169754, "lon": -74.0145107 }, + { "lat": 40.7169795, "lon": -74.0145199 }, + { "lat": 40.7169877, "lon": -74.0145383 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1233448324, + "bounds": { + "minlat": 40.7170802, + "minlon": -74.0144441, + "maxlat": 40.7171966, + "maxlon": -74.0142696 + }, + "nodes": [ + 2569923698, + 11445453960, + 11445453961, + 11445435902, + 11445435910, + 10612369343, + 11445435909, + 11445435908, + 11445435907, + 8282428768, + 8282428769, + 11445435904, + 11445435905, + 11445435906, + 10612369344, + 11445435903, + 11445453967, + 11445453968, + 2569923694, + 11445453989, + 11445453939, + 11445453938, + 11445453937, + 11445453936, + 11445453990, + 2569923698 + ], + "geometry": [ + { "lat": 40.7171966, "lon": -74.0143993 }, + { "lat": 40.7171715, "lon": -74.0144184 }, + { "lat": 40.7171772, "lon": -74.0144292 }, + { "lat": 40.7171709, "lon": -74.0144342 }, + { "lat": 40.7171622, "lon": -74.0144400 }, + { "lat": 40.7171582, "lon": -74.0144420 }, + { "lat": 40.7171526, "lon": -74.0144441 }, + { "lat": 40.7171398, "lon": -74.0144440 }, + { "lat": 40.7171286, "lon": -74.0144381 }, + { "lat": 40.7171216, "lon": -74.0144280 }, + { "lat": 40.7170847, "lon": -74.0143445 }, + { "lat": 40.7170802, "lon": -74.0143269 }, + { "lat": 40.7170807, "lon": -74.0143090 }, + { "lat": 40.7170878, "lon": -74.0142935 }, + { "lat": 40.7170900, "lon": -74.0142913 }, + { "lat": 40.7171006, "lon": -74.0142821 }, + { "lat": 40.7171070, "lon": -74.0142770 }, + { "lat": 40.7171118, "lon": -74.0142885 }, + { "lat": 40.7171372, "lon": -74.0142696 }, + { "lat": 40.7171422, "lon": -74.0142809 }, + { "lat": 40.7171467, "lon": -74.0142911 }, + { "lat": 40.7171223, "lon": -74.0143109 }, + { "lat": 40.7171615, "lon": -74.0143957 }, + { "lat": 40.7171860, "lon": -74.0143760 }, + { "lat": 40.7171899, "lon": -74.0143844 }, + { "lat": 40.7171966, "lon": -74.0143993 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1233462226, + "bounds": { + "minlat": 40.7164209, + "minlon": -74.0157574, + "maxlat": 40.7164893, + "maxlon": -74.0156709 + }, + "nodes": [ + 11445711536, + 11445711535, + 11445711665, + 11445711664, + 11445711657, + 11445711255, + 11445711534, + 11445711256, + 11445711536 + ], + "geometry": [ + { "lat": 40.7164449, "lon": -74.0156709 }, + { "lat": 40.7164328, "lon": -74.0156904 }, + { "lat": 40.7164209, "lon": -74.0157095 }, + { "lat": 40.7164275, "lon": -74.0157166 }, + { "lat": 40.7164493, "lon": -74.0157401 }, + { "lat": 40.7164654, "lon": -74.0157574 }, + { "lat": 40.7164769, "lon": -74.0157388 }, + { "lat": 40.7164893, "lon": -74.0157188 }, + { "lat": 40.7164449, "lon": -74.0156709 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 1233462227, + "bounds": { + "minlat": 40.7165478, + "minlon": -74.0157748, + "maxlat": 40.7166470, + "maxlon": -74.0157172 + }, + "nodes": [ + 11445711308, + 11445711362, + 11445711273, + 11445711390, + 11445711298, + 11445711299, + 11445711300, + 11445711301, + 11445711274, + 11445711319, + 11445711318, + 11445711305, + 11445711308 + ], + "geometry": [ + { "lat": 40.7166470, "lon": -74.0157471 }, + { "lat": 40.7166250, "lon": -74.0157536 }, + { "lat": 40.7166164, "lon": -74.0157561 }, + { "lat": 40.7166053, "lon": -74.0157594 }, + { "lat": 40.7165974, "lon": -74.0157617 }, + { "lat": 40.7165529, "lon": -74.0157748 }, + { "lat": 40.7165478, "lon": -74.0157449 }, + { "lat": 40.7165709, "lon": -74.0157381 }, + { "lat": 40.7165970, "lon": -74.0157304 }, + { "lat": 40.7166097, "lon": -74.0157266 }, + { "lat": 40.7166419, "lon": -74.0157172 }, + { "lat": 40.7166444, "lon": -74.0157319 }, + { "lat": 40.7166470, "lon": -74.0157471 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 1233471343, + "bounds": { + "minlat": 40.8596607, + "minlon": -73.9764250, + "maxlat": 40.8599754, + "maxlon": -73.9762921 + }, + "nodes": [ + 7373684955, + 7373684956 + ], + "geometry": [ + { "lat": 40.8596607, "lon": -73.9764250 }, + { "lat": 40.8599754, "lon": -73.9762921 } + ], + "tags": { + "highway": "service", + "level": "1" + } +}, +{ + "type": "way", + "id": 1233471344, + "bounds": { + "minlat": 40.8596170, + "minlon": -73.9763600, + "maxlat": 40.8596398, + "maxlon": -73.9762452 + }, + "nodes": [ + 11445776618, + 7373684950 + ], + "geometry": [ + { "lat": 40.8596398, "lon": -73.9763600 }, + { "lat": 40.8596170, "lon": -73.9762452 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1233876692, + "bounds": { + "minlat": 40.7160031, + "minlon": -74.0157694, + "maxlat": 40.7160817, + "maxlon": -74.0157085 + }, + "nodes": [ + 11449987535, + 11449987537, + 11450026963, + 11449987536 + ], + "geometry": [ + { "lat": 40.7160817, "lon": -74.0157085 }, + { "lat": 40.7160690, "lon": -74.0157183 }, + { "lat": 40.7160509, "lon": -74.0157323 }, + { "lat": 40.7160031, "lon": -74.0157694 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1233876693, + "bounds": { + "minlat": 40.7161886, + "minlon": -74.0161737, + "maxlat": 40.7162638, + "maxlon": -74.0161156 + }, + "nodes": [ + 11449987540, + 11449987542, + 11450026964, + 11449987541 + ], + "geometry": [ + { "lat": 40.7162638, "lon": -74.0161156 }, + { "lat": 40.7162535, "lon": -74.0161234 }, + { "lat": 40.7162353, "lon": -74.0161376 }, + { "lat": 40.7161886, "lon": -74.0161737 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1233876729, + "bounds": { + "minlat": 40.7172032, + "minlon": -74.0149689, + "maxlat": 40.7172783, + "maxlon": -74.0149116 + }, + "nodes": [ + 11450026928, + 11450026930, + 11450026962, + 11450026929 + ], + "geometry": [ + { "lat": 40.7172032, "lon": -74.0149689 }, + { "lat": 40.7172116, "lon": -74.0149625 }, + { "lat": 40.7172330, "lon": -74.0149462 }, + { "lat": 40.7172783, "lon": -74.0149116 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1234496205, + "bounds": { + "minlat": 40.7170382, + "minlon": -74.0129933, + "maxlat": 40.7171559, + "maxlon": -74.0128567 + }, + "nodes": [ + 11458369562, + 10612369364, + 11458405480, + 11458405481, + 11458405482, + 11458405483, + 11458405484, + 11458405485, + 11458405486, + 11458405487, + 10612369365, + 4899829954, + 11458369566, + 11458369565, + 4899829955, + 11458369564, + 11458369563, + 11458369562 + ], + "geometry": [ + { "lat": 40.7170862, "lon": -74.0129933 }, + { "lat": 40.7171215, "lon": -74.0129851 }, + { "lat": 40.7171449, "lon": -74.0129785 }, + { "lat": 40.7171518, "lon": -74.0129745 }, + { "lat": 40.7171559, "lon": -74.0129661 }, + { "lat": 40.7171559, "lon": -74.0129542 }, + { "lat": 40.7171520, "lon": -74.0129428 }, + { "lat": 40.7171154, "lon": -74.0128624 }, + { "lat": 40.7171108, "lon": -74.0128574 }, + { "lat": 40.7171039, "lon": -74.0128567 }, + { "lat": 40.7170688, "lon": -74.0128655 }, + { "lat": 40.7170382, "lon": -74.0128720 }, + { "lat": 40.7170451, "lon": -74.0128718 }, + { "lat": 40.7170498, "lon": -74.0128762 }, + { "lat": 40.7170934, "lon": -74.0129694 }, + { "lat": 40.7170951, "lon": -74.0129771 }, + { "lat": 40.7170928, "lon": -74.0129868 }, + { "lat": 40.7170862, "lon": -74.0129933 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1234496206, + "bounds": { + "minlat": 40.7165079, + "minlon": -74.0131269, + "maxlat": 40.7166186, + "maxlon": -74.0129793 + }, + "nodes": [ + 4899829951, + 11458405515, + 11458405504, + 11458405505, + 11458405506, + 11458405507, + 11458405508, + 11458405509, + 11458405510, + 11458405511, + 11458405512, + 11458405514, + 4899829410, + 11458369560, + 11458369559, + 11458369558, + 11458369561, + 4899829951 + ], + "geometry": [ + { "lat": 40.7166186, "lon": -74.0131108 }, + { "lat": 40.7165891, "lon": -74.0131188 }, + { "lat": 40.7165601, "lon": -74.0131266 }, + { "lat": 40.7165520, "lon": -74.0131269 }, + { "lat": 40.7165452, "lon": -74.0131208 }, + { "lat": 40.7165404, "lon": -74.0131095 }, + { "lat": 40.7165092, "lon": -74.0130252 }, + { "lat": 40.7165079, "lon": -74.0130136 }, + { "lat": 40.7165092, "lon": -74.0130037 }, + { "lat": 40.7165138, "lon": -74.0129962 }, + { "lat": 40.7165202, "lon": -74.0129933 }, + { "lat": 40.7165413, "lon": -74.0129880 }, + { "lat": 40.7165763, "lon": -74.0129793 }, + { "lat": 40.7165690, "lon": -74.0129873 }, + { "lat": 40.7165692, "lon": -74.0129970 }, + { "lat": 40.7166069, "lon": -74.0131057 }, + { "lat": 40.7166112, "lon": -74.0131099 }, + { "lat": 40.7166186, "lon": -74.0131108 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1234496210, + "bounds": { + "minlat": 40.7166209, + "minlon": -74.0134269, + "maxlat": 40.7173006, + "maxlon": -74.0131329 + }, + "nodes": [ + 5215088808, + 11458405466, + 11458405534, + 5813259911, + 10014414104, + 11458405535, + 11458405536, + 11458405537, + 11458405538, + 11458405539, + 11458405540, + 11458405467, + 8282428734, + 11458405473, + 11458405472, + 8282428733, + 11458369556, + 8282428739, + 8282428740, + 8282428737, + 8282428738, + 11458369557, + 11458405437, + 11458405438, + 11458405436, + 8282428735, + 11458405439, + 11458405541, + 11458405542, + 11458405543, + 11458405544, + 11458405545, + 11458405546, + 11440189986, + 5813259908, + 11458405547, + 11458405441, + 5215088807, + 11458405447, + 11458405450, + 11458405551, + 11458405548, + 5215088808 + ], + "geometry": [ + { "lat": 40.7172621, "lon": -74.0132744 }, + { "lat": 40.7172733, "lon": -74.0132716 }, + { "lat": 40.7173006, "lon": -74.0132647 }, + { "lat": 40.7172904, "lon": -74.0132419 }, + { "lat": 40.7172633, "lon": -74.0131813 }, + { "lat": 40.7172534, "lon": -74.0131590 }, + { "lat": 40.7172478, "lon": -74.0131485 }, + { "lat": 40.7172391, "lon": -74.0131383 }, + { "lat": 40.7172311, "lon": -74.0131346 }, + { "lat": 40.7172227, "lon": -74.0131329 }, + { "lat": 40.7172117, "lon": -74.0131346 }, + { "lat": 40.7171898, "lon": -74.0131401 }, + { "lat": 40.7171586, "lon": -74.0131480 }, + { "lat": 40.7171670, "lon": -74.0131495 }, + { "lat": 40.7171714, "lon": -74.0131547 }, + { "lat": 40.7171817, "lon": -74.0131738 }, + { "lat": 40.7171926, "lon": -74.0131995 }, + { "lat": 40.7172027, "lon": -74.0132230 }, + { "lat": 40.7172142, "lon": -74.0132504 }, + { "lat": 40.7167120, "lon": -74.0133801 }, + { "lat": 40.7167026, "lon": -74.0133547 }, + { "lat": 40.7166930, "lon": -74.0133260 }, + { "lat": 40.7166806, "lon": -74.0132888 }, + { "lat": 40.7166796, "lon": -74.0132800 }, + { "lat": 40.7166818, "lon": -74.0132742 }, + { "lat": 40.7166875, "lon": -74.0132692 }, + { "lat": 40.7166473, "lon": -74.0132782 }, + { "lat": 40.7166363, "lon": -74.0132815 }, + { "lat": 40.7166286, "lon": -74.0132879 }, + { "lat": 40.7166230, "lon": -74.0132994 }, + { "lat": 40.7166209, "lon": -74.0133119 }, + { "lat": 40.7166220, "lon": -74.0133254 }, + { "lat": 40.7166248, "lon": -74.0133352 }, + { "lat": 40.7166279, "lon": -74.0133425 }, + { "lat": 40.7166515, "lon": -74.0134010 }, + { "lat": 40.7166646, "lon": -74.0134269 }, + { "lat": 40.7166982, "lon": -74.0134185 }, + { "lat": 40.7167134, "lon": -74.0134137 }, + { "lat": 40.7167202, "lon": -74.0134120 }, + { "lat": 40.7167555, "lon": -74.0134032 }, + { "lat": 40.7170214, "lon": -74.0133356 }, + { "lat": 40.7171857, "lon": -74.0132938 }, + { "lat": 40.7172621, "lon": -74.0132744 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1234505618, + "bounds": { + "minlat": 40.7172977, + "minlon": -74.0131667, + "maxlat": 40.7173219, + "maxlon": -74.0131113 + }, + "nodes": [ + 246866828, + 8750271943 + ], + "geometry": [ + { "lat": 40.7173219, "lon": -74.0131667 }, + { "lat": 40.7172977, "lon": -74.0131113 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1234505640, + "bounds": { + "minlat": 40.7173780, + "minlon": -74.0132327, + "maxlat": 40.7174868, + "maxlon": -74.0130846 + }, + "nodes": [ + 11458527757, + 11458527774, + 11458527766, + 11458527764, + 11458527763, + 11458527762, + 11458527761, + 11458527767, + 11458527768, + 11458527769, + 11458527770, + 11458527771, + 10014414103, + 11458509461, + 11458527772, + 11458527775, + 11458527773, + 11458527782, + 11458527758, + 11458527757 + ], + "geometry": [ + { "lat": 40.7174601, "lon": -74.0131680 }, + { "lat": 40.7174471, "lon": -74.0131388 }, + { "lat": 40.7174325, "lon": -74.0131061 }, + { "lat": 40.7174258, "lon": -74.0131080 }, + { "lat": 40.7174183, "lon": -74.0131072 }, + { "lat": 40.7174132, "lon": -74.0131034 }, + { "lat": 40.7174063, "lon": -74.0130846 }, + { "lat": 40.7173961, "lon": -74.0130881 }, + { "lat": 40.7173853, "lon": -74.0130964 }, + { "lat": 40.7173797, "lon": -74.0131078 }, + { "lat": 40.7173780, "lon": -74.0131221 }, + { "lat": 40.7173795, "lon": -74.0131387 }, + { "lat": 40.7173836, "lon": -74.0131523 }, + { "lat": 40.7174104, "lon": -74.0132102 }, + { "lat": 40.7174217, "lon": -74.0132327 }, + { "lat": 40.7174543, "lon": -74.0132287 }, + { "lat": 40.7174868, "lon": -74.0132247 }, + { "lat": 40.7174841, "lon": -74.0132191 }, + { "lat": 40.7174684, "lon": -74.0131857 }, + { "lat": 40.7174601, "lon": -74.0131680 } + ], + "tags": { + "area": "yes", + "bicycle": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1234631159, + "bounds": { + "minlat": 40.7452886, + "minlon": -73.9905180, + "maxlat": 40.7460380, + "maxlon": -73.9887531 + }, + "nodes": [ + 42430282, + 10168911595, + 9198484651, + 42428223 + ], + "geometry": [ + { "lat": 40.7460380, "lon": -73.9905180 }, + { "lat": 40.7459835, "lon": -73.9903898 }, + { "lat": 40.7453227, "lon": -73.9888335 }, + { "lat": 40.7452886, "lon": -73.9887531 } + ], + "tags": { + "alt_name": "Tin Pan Alley", + "alt_name:etymology:wikidata": "Q1121111", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 28th Street", + "name:ru": "Западная 28-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1234696594, + "bounds": { + "minlat": 40.7171208, + "minlon": -74.0125462, + "maxlat": 40.7172906, + "maxlon": -74.0124375 + }, + "nodes": [ + 2565683746, + 1412696734, + 11460524935, + 11460524946, + 11460524947, + 11460524948, + 11460524949, + 11460524950, + 11460524951, + 11460524952, + 11460524953, + 11460524954, + 5204214355, + 8304497239, + 11460524960, + 11460524958, + 11460524957, + 11460524956, + 11460524955, + 2565683738, + 2565683746 + ], + "geometry": [ + { "lat": 40.7172906, "lon": -74.0125421 }, + { "lat": 40.7172530, "lon": -74.0125423 }, + { "lat": 40.7172270, "lon": -74.0125462 }, + { "lat": 40.7172238, "lon": -74.0125350 }, + { "lat": 40.7172163, "lon": -74.0125258 }, + { "lat": 40.7172076, "lon": -74.0125197 }, + { "lat": 40.7171976, "lon": -74.0125160 }, + { "lat": 40.7171847, "lon": -74.0125153 }, + { "lat": 40.7171739, "lon": -74.0125184 }, + { "lat": 40.7171647, "lon": -74.0125231 }, + { "lat": 40.7171547, "lon": -74.0125309 }, + { "lat": 40.7171472, "lon": -74.0125380 }, + { "lat": 40.7171345, "lon": -74.0125117 }, + { "lat": 40.7171208, "lon": -74.0124819 }, + { "lat": 40.7171299, "lon": -74.0124783 }, + { "lat": 40.7171475, "lon": -74.0124716 }, + { "lat": 40.7171652, "lon": -74.0124662 }, + { "lat": 40.7171809, "lon": -74.0124625 }, + { "lat": 40.7171945, "lon": -74.0124611 }, + { "lat": 40.7172793, "lon": -74.0124375 }, + { "lat": 40.7172906, "lon": -74.0125421 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1234696598, + "bounds": { + "minlat": 40.7152595, + "minlon": -74.0130929, + "maxlat": 40.7163151, + "maxlon": -74.0125088 + }, + "nodes": [ + 2823341717, + 11460562405, + 11460562427, + 11460562428, + 11440190120, + 11460562429, + 11460562430, + 11460562431, + 11440190119, + 11460562432, + 11460562433, + 11460562434, + 11460562435, + 11460562436, + 11460562437, + 11460562438, + 11460562439, + 11460562440, + 11292548517, + 11460562441, + 11460562442, + 11460562443, + 11460562444, + 11292548515, + 11460562445, + 11460562406, + 8304497688, + 8304497687, + 8304497699, + 8304497698, + 11461452710, + 8304497697, + 8304497696, + 8304497695, + 8304497694, + 11461452709, + 8304497693, + 8304497692, + 8304497558, + 8304497563, + 8304497562, + 11461456712, + 8304497561, + 8304497560, + 4968269919, + 8304497559, + 4968270222, + 4968270221, + 8304497551, + 8304497660, + 11461456678, + 11461456690, + 11461456691, + 11461456689, + 11461456688, + 11461456684, + 11461456686, + 11461456687, + 11461456685, + 11461456682, + 11461456683, + 11461456681, + 11461456680, + 11461456679, + 8304497677, + 2823341631, + 1945039242, + 1945039225, + 2823341717 + ], + "geometry": [ + { "lat": 40.7162536, "lon": -74.0127928 }, + { "lat": 40.7162653, "lon": -74.0127901 }, + { "lat": 40.7163101, "lon": -74.0127796 }, + { "lat": 40.7163138, "lon": -74.0127932 }, + { "lat": 40.7163151, "lon": -74.0128099 }, + { "lat": 40.7163129, "lon": -74.0128277 }, + { "lat": 40.7163088, "lon": -74.0128447 }, + { "lat": 40.7163008, "lon": -74.0128570 }, + { "lat": 40.7162908, "lon": -74.0128633 }, + { "lat": 40.7162790, "lon": -74.0128687 }, + { "lat": 40.7162657, "lon": -74.0128704 }, + { "lat": 40.7162569, "lon": -74.0128635 }, + { "lat": 40.7162489, "lon": -74.0128584 }, + { "lat": 40.7162377, "lon": -74.0128591 }, + { "lat": 40.7153740, "lon": -74.0130598 }, + { "lat": 40.7153616, "lon": -74.0130654 }, + { "lat": 40.7153471, "lon": -74.0130775 }, + { "lat": 40.7153337, "lon": -74.0130854 }, + { "lat": 40.7153167, "lon": -74.0130895 }, + { "lat": 40.7152984, "lon": -74.0130929 }, + { "lat": 40.7152836, "lon": -74.0130901 }, + { "lat": 40.7152730, "lon": -74.0130812 }, + { "lat": 40.7152666, "lon": -74.0130668 }, + { "lat": 40.7152626, "lon": -74.0130528 }, + { "lat": 40.7152595, "lon": -74.0130332 }, + { "lat": 40.7152882, "lon": -74.0130263 }, + { "lat": 40.7153003, "lon": -74.0130233 }, + { "lat": 40.7154030, "lon": -74.0129993 }, + { "lat": 40.7154005, "lon": -74.0129785 }, + { "lat": 40.7153802, "lon": -74.0129792 }, + { "lat": 40.7153596, "lon": -74.0129757 }, + { "lat": 40.7153404, "lon": -74.0129656 }, + { "lat": 40.7153246, "lon": -74.0129500 }, + { "lat": 40.7153156, "lon": -74.0129347 }, + { "lat": 40.7153107, "lon": -74.0129144 }, + { "lat": 40.7153123, "lon": -74.0128948 }, + { "lat": 40.7153187, "lon": -74.0128805 }, + { "lat": 40.7153297, "lon": -74.0128701 }, + { "lat": 40.7153530, "lon": -74.0129299 }, + { "lat": 40.7153751, "lon": -74.0129488 }, + { "lat": 40.7154037, "lon": -74.0129524 }, + { "lat": 40.7154223, "lon": -74.0129459 }, + { "lat": 40.7154586, "lon": -74.0129331 }, + { "lat": 40.7155451, "lon": -74.0128915 }, + { "lat": 40.7156166, "lon": -74.0128489 }, + { "lat": 40.7156257, "lon": -74.0128332 }, + { "lat": 40.7156274, "lon": -74.0128140 }, + { "lat": 40.7155401, "lon": -74.0125714 }, + { "lat": 40.7155058, "lon": -74.0125780 }, + { "lat": 40.7154881, "lon": -74.0125411 }, + { "lat": 40.7155624, "lon": -74.0125088 }, + { "lat": 40.7155764, "lon": -74.0125423 }, + { "lat": 40.7155609, "lon": -74.0125536 }, + { "lat": 40.7156499, "lon": -74.0127840 }, + { "lat": 40.7156707, "lon": -74.0127693 }, + { "lat": 40.7157033, "lon": -74.0128478 }, + { "lat": 40.7156745, "lon": -74.0128694 }, + { "lat": 40.7156387, "lon": -74.0128892 }, + { "lat": 40.7156070, "lon": -74.0129003 }, + { "lat": 40.7155994, "lon": -74.0128782 }, + { "lat": 40.7155574, "lon": -74.0129053 }, + { "lat": 40.7155154, "lon": -74.0129292 }, + { "lat": 40.7155157, "lon": -74.0129366 }, + { "lat": 40.7155373, "lon": -74.0129352 }, + { "lat": 40.7155403, "lon": -74.0129640 }, + { "lat": 40.7157584, "lon": -74.0129125 }, + { "lat": 40.7159814, "lon": -74.0128583 }, + { "lat": 40.7162175, "lon": -74.0128020 }, + { "lat": 40.7162536, "lon": -74.0127928 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1234696599, + "bounds": { + "minlat": 40.7152035, + "minlon": -74.0132124, + "maxlat": 40.7152226, + "maxlon": -74.0130952 + }, + "nodes": [ + 11460562447, + 42429570 + ], + "geometry": [ + { "lat": 40.7152035, "lon": -74.0130952 }, + { "lat": 40.7152226, "lon": -74.0132124 } + ], + "tags": { + "cycleway:both": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Murray Street", + "name:etymology:wikidata": "Q62185957", + "name:ko": "머레이 스트리트", + "name:ru": "Марри-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1234696606, + "bounds": { + "minlat": 40.7143948, + "minlon": -74.0133122, + "maxlat": 40.7151227, + "maxlon": -74.0126221 + }, + "nodes": [ + 2823341451, + 11460562535, + 11460562536, + 11460562537, + 11460562539, + 11460562538, + 11460562450, + 11460562446, + 11460562558, + 11292548514, + 11460562559, + 11460562560, + 11460562562, + 11460562561, + 11291266767, + 11460562563, + 11460562564, + 11460562565, + 11460562546, + 11460562554, + 11460562557, + 11460562556, + 11460562555, + 11460562549, + 11460562551, + 11460562552, + 11460562553, + 11460562550, + 10282972380, + 11460562547, + 11460562548, + 2823341441, + 2823341470, + 8304497707, + 2823341451 + ], + "geometry": [ + { "lat": 40.7147316, "lon": -74.0126904 }, + { "lat": 40.7147860, "lon": -74.0126764 }, + { "lat": 40.7148529, "lon": -74.0128050 }, + { "lat": 40.7149670, "lon": -74.0126221 }, + { "lat": 40.7149798, "lon": -74.0127077 }, + { "lat": 40.7150365, "lon": -74.0130874 }, + { "lat": 40.7150850, "lon": -74.0130746 }, + { "lat": 40.7150963, "lon": -74.0130718 }, + { "lat": 40.7151198, "lon": -74.0130660 }, + { "lat": 40.7151227, "lon": -74.0130893 }, + { "lat": 40.7151221, "lon": -74.0131052 }, + { "lat": 40.7151173, "lon": -74.0131210 }, + { "lat": 40.7151111, "lon": -74.0131312 }, + { "lat": 40.7151028, "lon": -74.0131385 }, + { "lat": 40.7150919, "lon": -74.0131424 }, + { "lat": 40.7150711, "lon": -74.0131478 }, + { "lat": 40.7150578, "lon": -74.0131473 }, + { "lat": 40.7150381, "lon": -74.0131415 }, + { "lat": 40.7150247, "lon": -74.0131415 }, + { "lat": 40.7145139, "lon": -74.0132619 }, + { "lat": 40.7145056, "lon": -74.0132678 }, + { "lat": 40.7144889, "lon": -74.0132971 }, + { "lat": 40.7144780, "lon": -74.0133064 }, + { "lat": 40.7144595, "lon": -74.0133122 }, + { "lat": 40.7144469, "lon": -74.0133122 }, + { "lat": 40.7144355, "lon": -74.0133091 }, + { "lat": 40.7144261, "lon": -74.0133003 }, + { "lat": 40.7144190, "lon": -74.0132884 }, + { "lat": 40.7144066, "lon": -74.0132620 }, + { "lat": 40.7143948, "lon": -74.0132362 }, + { "lat": 40.7144120, "lon": -74.0132317 }, + { "lat": 40.7144255, "lon": -74.0132281 }, + { "lat": 40.7149301, "lon": -74.0131116 }, + { "lat": 40.7148380, "lon": -74.0129148 }, + { "lat": 40.7147316, "lon": -74.0126904 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1234739899, + "bounds": { + "minlat": 40.7141377, + "minlon": -74.0104613, + "maxlat": 40.7141815, + "maxlon": -74.0103642 + }, + "nodes": [ + 11461036495, + 11461036497, + 11461036515, + 11461036496 + ], + "geometry": [ + { "lat": 40.7141815, "lon": -74.0104613 }, + { "lat": 40.7141761, "lon": -74.0104493 }, + { "lat": 40.7141632, "lon": -74.0104207 }, + { "lat": 40.7141377, "lon": -74.0103642 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1234749627, + "bounds": { + "minlat": 40.7142819, + "minlon": -74.0101910, + "maxlat": 40.7143446, + "maxlon": -74.0101353 + }, + "nodes": [ + 11461123808, + 11461123835, + 11461123809, + 11461123810, + 11461123811, + 11461123812, + 11461123813, + 11461123814, + 11461123834, + 11461123815, + 11461123816, + 11461123817, + 11461123808 + ], + "geometry": [ + { "lat": 40.7142819, "lon": -74.0101791 }, + { "lat": 40.7143160, "lon": -74.0101518 }, + { "lat": 40.7143365, "lon": -74.0101353 }, + { "lat": 40.7143408, "lon": -74.0101365 }, + { "lat": 40.7143441, "lon": -74.0101459 }, + { "lat": 40.7143446, "lon": -74.0101537 }, + { "lat": 40.7143420, "lon": -74.0101616 }, + { "lat": 40.7143377, "lon": -74.0101675 }, + { "lat": 40.7143272, "lon": -74.0101758 }, + { "lat": 40.7143114, "lon": -74.0101882 }, + { "lat": 40.7143057, "lon": -74.0101910 }, + { "lat": 40.7142992, "lon": -74.0101901 }, + { "lat": 40.7142819, "lon": -74.0101791 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1234749628, + "bounds": { + "minlat": 40.7144107, + "minlon": -74.0100829, + "maxlat": 40.7144878, + "maxlon": -74.0099740 + }, + "nodes": [ + 11461123821, + 11461123833, + 11461123822, + 11461123823, + 11461123824, + 11461123825, + 11461123832, + 11461123826, + 11461123827, + 11461123828, + 11461123821 + ], + "geometry": [ + { "lat": 40.7144686, "lon": -74.0100559 }, + { "lat": 40.7144442, "lon": -74.0100741 }, + { "lat": 40.7144323, "lon": -74.0100829 }, + { "lat": 40.7144282, "lon": -74.0100818 }, + { "lat": 40.7144107, "lon": -74.0100423 }, + { "lat": 40.7144113, "lon": -74.0100361 }, + { "lat": 40.7144214, "lon": -74.0100279 }, + { "lat": 40.7144878, "lon": -74.0099740 }, + { "lat": 40.7144750, "lon": -74.0100427 }, + { "lat": 40.7144722, "lon": -74.0100500 }, + { "lat": 40.7144686, "lon": -74.0100559 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1234749637, + "bounds": { + "minlat": 40.7136549, + "minlon": -74.0090363, + "maxlat": 40.7137965, + "maxlon": -74.0089106 + }, + "nodes": [ + 11461123842, + 11461129577, + 11461123843, + 11461123844, + 11461123845, + 11461123846, + 11461123847, + 11461123848, + 11461123849, + 11461123850, + 11461123851, + 11461123842 + ], + "geometry": [ + { "lat": 40.7137965, "lon": -74.0089393 }, + { "lat": 40.7137782, "lon": -74.0089537 }, + { "lat": 40.7136729, "lon": -74.0090363 }, + { "lat": 40.7136549, "lon": -74.0089987 }, + { "lat": 40.7136553, "lon": -74.0089924 }, + { "lat": 40.7137553, "lon": -74.0089145 }, + { "lat": 40.7137594, "lon": -74.0089123 }, + { "lat": 40.7137705, "lon": -74.0089106 }, + { "lat": 40.7137777, "lon": -74.0089129 }, + { "lat": 40.7137842, "lon": -74.0089176 }, + { "lat": 40.7137909, "lon": -74.0089264 }, + { "lat": 40.7137965, "lon": -74.0089393 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1234749644, + "bounds": { + "minlat": 40.7133243, + "minlon": -74.0092802, + "maxlat": 40.7134016, + "maxlon": -74.0092220 + }, + "nodes": [ + 11461129476, + 11461129512, + 11461129477, + 11461129478, + 11461129479, + 11461129480, + 11461129511, + 11461129481, + 11461129482, + 11461129483, + 11461129476 + ], + "geometry": [ + { "lat": 40.7134016, "lon": -74.0092309 }, + { "lat": 40.7133554, "lon": -74.0092653 }, + { "lat": 40.7133353, "lon": -74.0092802 }, + { "lat": 40.7133318, "lon": -74.0092802 }, + { "lat": 40.7133243, "lon": -74.0092585 }, + { "lat": 40.7133253, "lon": -74.0092534 }, + { "lat": 40.7133461, "lon": -74.0092372 }, + { "lat": 40.7133633, "lon": -74.0092238 }, + { "lat": 40.7133686, "lon": -74.0092220 }, + { "lat": 40.7133748, "lon": -74.0092223 }, + { "lat": 40.7134016, "lon": -74.0092309 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1234762562, + "bounds": { + "minlat": 40.7402628, + "minlon": -74.0095897, + "maxlat": 40.7404853, + "maxlon": -74.0095265 + }, + "nodes": [ + 246647993, + 11461275524, + 11461275525, + 11461275527, + 11461275528, + 8862521332 + ], + "geometry": [ + { "lat": 40.7404853, "lon": -74.0095897 }, + { "lat": 40.7404492, "lon": -74.0095735 }, + { "lat": 40.7404219, "lon": -74.0095580 }, + { "lat": 40.7403436, "lon": -74.0095334 }, + { "lat": 40.7402987, "lon": -74.0095265 }, + { "lat": 40.7402628, "lon": -74.0095291 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Bloomfield Street", + "name:etymology:wikidata": "Q435155", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1234781223, + "bounds": { + "minlat": 40.7152889, + "minlon": -74.0122995, + "maxlat": 40.7154596, + "maxlon": -74.0121605 + }, + "nodes": [ + 11461456650, + 11461456651, + 11461456652, + 11461456653, + 11461456654, + 11461456655, + 11461456656, + 11461456657, + 11461456633, + 11461456650 + ], + "geometry": [ + { "lat": 40.7154596, "lon": -74.0122995 }, + { "lat": 40.7154425, "lon": -74.0122840 }, + { "lat": 40.7154190, "lon": -74.0122729 }, + { "lat": 40.7153873, "lon": -74.0122649 }, + { "lat": 40.7153523, "lon": -74.0122637 }, + { "lat": 40.7153240, "lon": -74.0122717 }, + { "lat": 40.7153035, "lon": -74.0122787 }, + { "lat": 40.7152889, "lon": -74.0122469 }, + { "lat": 40.7153958, "lon": -74.0121605 }, + { "lat": 40.7154596, "lon": -74.0122995 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1234808001, + "bounds": { + "minlat": 40.8571782, + "minlon": -73.9720343, + "maxlat": 40.8574136, + "maxlon": -73.9716849 + }, + "nodes": [ + 76465371, + 12020552503, + 12020552502, + 11461733250, + 11461733251 + ], + "geometry": [ + { "lat": 40.8571893, "lon": -73.9716849 }, + { "lat": 40.8571791, "lon": -73.9717669 }, + { "lat": 40.8571782, "lon": -73.9717965 }, + { "lat": 40.8571818, "lon": -73.9718298 }, + { "lat": 40.8574136, "lon": -73.9720343 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1234808002, + "bounds": { + "minlat": 40.8574136, + "minlon": -73.9720736, + "maxlat": 40.8575517, + "maxlon": -73.9718633 + }, + "nodes": [ + 11461733252, + 11461733253, + 11461733251 + ], + "geometry": [ + { "lat": 40.8575517, "lon": -73.9718633 }, + { "lat": 40.8574561, "lon": -73.9720736 }, + { "lat": 40.8574136, "lon": -73.9720343 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1234808003, + "bounds": { + "minlat": 40.8573818, + "minlon": -73.9721056, + "maxlat": 40.8574136, + "maxlon": -73.9720343 + }, + "nodes": [ + 11461733251, + 11461733254 + ], + "geometry": [ + { "lat": 40.8574136, "lon": -73.9720343 }, + { "lat": 40.8573818, "lon": -73.9721056 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1234808004, + "bounds": { + "minlat": 40.8567380, + "minlon": -73.9721138, + "maxlat": 40.8569583, + "maxlon": -73.9719448 + }, + "nodes": [ + 11461733255, + 11461733256 + ], + "geometry": [ + { "lat": 40.8567380, "lon": -73.9719448 }, + { "lat": 40.8569583, "lon": -73.9721138 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1234923529, + "bounds": { + "minlat": 40.8330535, + "minlon": -74.0101635, + "maxlat": 40.8330546, + "maxlon": -74.0100970 + }, + "nodes": [ + 695054577, + 11462878254 + ], + "geometry": [ + { "lat": 40.8330546, "lon": -74.0101635 }, + { "lat": 40.8330535, "lon": -74.0100970 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1234923530, + "bounds": { + "minlat": 40.8330274, + "minlon": -74.0100970, + "maxlat": 40.8330782, + "maxlon": -74.0099916 + }, + "nodes": [ + 11462878254, + 13527758310, + 11462878256, + 11462878257, + 11462878258, + 11462878259, + 11462878260, + 13527758311, + 11462878254 + ], + "geometry": [ + { "lat": 40.8330535, "lon": -74.0100970 }, + { "lat": 40.8330444, "lon": -74.0100859 }, + { "lat": 40.8330274, "lon": -74.0100651 }, + { "lat": 40.8330281, "lon": -74.0100228 }, + { "lat": 40.8330527, "lon": -74.0099916 }, + { "lat": 40.8330782, "lon": -74.0100160 }, + { "lat": 40.8330773, "lon": -74.0100661 }, + { "lat": 40.8330615, "lon": -74.0100867 }, + { "lat": 40.8330535, "lon": -74.0100970 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1234923531, + "bounds": { + "minlat": 40.8330527, + "minlon": -74.0099916, + "maxlat": 40.8330527, + "maxlon": -74.0099652 + }, + "nodes": [ + 11462878258, + 11462878261 + ], + "geometry": [ + { "lat": 40.8330527, "lon": -74.0099916 }, + { "lat": 40.8330527, "lon": -74.0099652 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1234923532, + "bounds": { + "minlat": 40.8330527, + "minlon": -74.0099707, + "maxlat": 40.8333155, + "maxlon": -74.0096122 + }, + "nodes": [ + 11462878261, + 11462878262, + 11462878263, + 11462878264, + 11462878265, + 11462878266, + 11462878267, + 11462878268 + ], + "geometry": [ + { "lat": 40.8330527, "lon": -74.0099652 }, + { "lat": 40.8330928, "lon": -74.0099679 }, + { "lat": 40.8331483, "lon": -74.0099707 }, + { "lat": 40.8331993, "lon": -74.0099696 }, + { "lat": 40.8332561, "lon": -74.0099515 }, + { "lat": 40.8333069, "lon": -74.0099061 }, + { "lat": 40.8333155, "lon": -74.0098610 }, + { "lat": 40.8331840, "lon": -74.0096122 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1234923533, + "bounds": { + "minlat": 40.8323428, + "minlon": -74.0099702, + "maxlat": 40.8330527, + "maxlon": -74.0096511 + }, + "nodes": [ + 11462878261, + 11462946769, + 11462946770, + 11462946771, + 11462946772, + 11462946773, + 11462946774, + 11462946775, + 11462946776, + 11462946777, + 11462946778, + 11462946779, + 11462946780, + 11462946781, + 11462946782 + ], + "geometry": [ + { "lat": 40.8330527, "lon": -74.0099652 }, + { "lat": 40.8329731, "lon": -74.0099670 }, + { "lat": 40.8329181, "lon": -74.0099668 }, + { "lat": 40.8328347, "lon": -74.0099678 }, + { "lat": 40.8327178, "lon": -74.0099702 }, + { "lat": 40.8326277, "lon": -74.0099655 }, + { "lat": 40.8325343, "lon": -74.0099665 }, + { "lat": 40.8324388, "lon": -74.0099499 }, + { "lat": 40.8324074, "lon": -74.0099289 }, + { "lat": 40.8323674, "lon": -74.0098538 }, + { "lat": 40.8323428, "lon": -74.0097727 }, + { "lat": 40.8323456, "lon": -74.0097219 }, + { "lat": 40.8323695, "lon": -74.0096804 }, + { "lat": 40.8324096, "lon": -74.0096511 }, + { "lat": 40.8325957, "lon": -74.0096614 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1234923534, + "bounds": { + "minlat": 40.8325256, + "minlon": -74.0101187, + "maxlat": 40.8325343, + "maxlon": -74.0099665 + }, + "nodes": [ + 11462946774, + 13527758312, + 11462946783 + ], + "geometry": [ + { "lat": 40.8325343, "lon": -74.0099665 }, + { "lat": 40.8325295, "lon": -74.0100503 }, + { "lat": 40.8325256, "lon": -74.0101187 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1235010195, + "bounds": { + "minlat": 40.7162581, + "minlon": -74.0125498, + "maxlat": 40.7163322, + "maxlon": -74.0124897 + }, + "nodes": [ + 11463714759, + 11463714761, + 11463714872, + 11463714760 + ], + "geometry": [ + { "lat": 40.7163322, "lon": -74.0124897 }, + { "lat": 40.7163198, "lon": -74.0124997 }, + { "lat": 40.7163012, "lon": -74.0125148 }, + { "lat": 40.7162581, "lon": -74.0125498 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1235023052, + "bounds": { + "minlat": 40.7189149, + "minlon": -74.0125420, + "maxlat": 40.7190006, + "maxlon": -74.0124198 + }, + "nodes": [ + 4899829935, + 10612369366, + 4899829956, + 4899829952, + 10612369367, + 4899829944, + 11460524913, + 11463821721, + 11463821720, + 4899829935 + ], + "geometry": [ + { "lat": 40.7189149, "lon": -74.0125420 }, + { "lat": 40.7189549, "lon": -74.0125324 }, + { "lat": 40.7190006, "lon": -74.0125204 }, + { "lat": 40.7189870, "lon": -74.0124198 }, + { "lat": 40.7189417, "lon": -74.0124290 }, + { "lat": 40.7189171, "lon": -74.0124355 }, + { "lat": 40.7189288, "lon": -74.0125202 }, + { "lat": 40.7189273, "lon": -74.0125298 }, + { "lat": 40.7189235, "lon": -74.0125371 }, + { "lat": 40.7189149, "lon": -74.0125420 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1235023069, + "bounds": { + "minlat": 40.7188059, + "minlon": -74.0104761, + "maxlat": 40.7188209, + "maxlon": -74.0103517 + }, + "nodes": [ + 11463822883, + 11463822885, + 5812723035 + ], + "geometry": [ + { "lat": 40.7188209, "lon": -74.0104761 }, + { "lat": 40.7188174, "lon": -74.0104455 }, + { "lat": 40.7188059, "lon": -74.0103517 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Harrison Street", + "name:ko": "해리슨 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1235093941, + "bounds": { + "minlat": 40.7170312, + "minlon": -74.0124753, + "maxlat": 40.7171178, + "maxlon": -74.0122446 + }, + "nodes": [ + 11464555820, + 11464555823, + 11464555825, + 10612369361, + 11464555819, + 11464555818, + 11464555820 + ], + "geometry": [ + { "lat": 40.7170364, "lon": -74.0122948 }, + { "lat": 40.7170338, "lon": -74.0122759 }, + { "lat": 40.7170312, "lon": -74.0122571 }, + { "lat": 40.7170899, "lon": -74.0122446 }, + { "lat": 40.7170923, "lon": -74.0122637 }, + { "lat": 40.7171178, "lon": -74.0124753 }, + { "lat": 40.7170364, "lon": -74.0122948 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1235093953, + "bounds": { + "minlat": 40.7168651, + "minlon": -74.0121787, + "maxlat": 40.7169832, + "maxlon": -74.0119108 + }, + "nodes": [ + 889584946, + 11464612974, + 11464555854, + 11464555858, + 11464555855, + 8304497238, + 889585185, + 889584946 + ], + "geometry": [ + { "lat": 40.7169509, "lon": -74.0119108 }, + { "lat": 40.7169176, "lon": -74.0119177 }, + { "lat": 40.7168651, "lon": -74.0119287 }, + { "lat": 40.7168737, "lon": -74.0119469 }, + { "lat": 40.7168848, "lon": -74.0119703 }, + { "lat": 40.7169832, "lon": -74.0121787 }, + { "lat": 40.7169536, "lon": -74.0119326 }, + { "lat": 40.7169509, "lon": -74.0119108 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1235093984, + "bounds": { + "minlat": 40.7168530, + "minlon": -74.0113745, + "maxlat": 40.7171719, + "maxlon": -74.0111194 + }, + "nodes": [ + 11464612616, + 11464612818, + 11464612819, + 11464612820, + 11464612821, + 11464612822, + 11464612823, + 11464612824, + 11464612825, + 11464612806, + 11464612807, + 11464612808, + 11464612809, + 11464612810, + 11464612811, + 11464612812, + 11464612813, + 11464612814, + 11464612815, + 11464612816, + 11464612817, + 11464612596, + 8304497440, + 8304497439, + 8304497438, + 8304497437, + 8304497436, + 11464612594, + 11464612592, + 8304497435, + 11464612593, + 8304497434, + 8304497433, + 11464612591, + 11464612613, + 11464612614, + 11464612615, + 11464612616 + ], + "geometry": [ + { "lat": 40.7171676, "lon": -74.0111310 }, + { "lat": 40.7171487, "lon": -74.0111240 }, + { "lat": 40.7171161, "lon": -74.0111194 }, + { "lat": 40.7170839, "lon": -74.0111194 }, + { "lat": 40.7170369, "lon": -74.0111245 }, + { "lat": 40.7169927, "lon": -74.0111322 }, + { "lat": 40.7169589, "lon": -74.0111419 }, + { "lat": 40.7169194, "lon": -74.0111567 }, + { "lat": 40.7168825, "lon": -74.0111706 }, + { "lat": 40.7168530, "lon": -74.0111885 }, + { "lat": 40.7168806, "lon": -74.0111844 }, + { "lat": 40.7169011, "lon": -74.0111844 }, + { "lat": 40.7169178, "lon": -74.0111885 }, + { "lat": 40.7169244, "lon": -74.0112023 }, + { "lat": 40.7169267, "lon": -74.0112284 }, + { "lat": 40.7169190, "lon": -74.0112586 }, + { "lat": 40.7169073, "lon": -74.0112827 }, + { "lat": 40.7168934, "lon": -74.0112934 }, + { "lat": 40.7168825, "lon": -74.0113062 }, + { "lat": 40.7168744, "lon": -74.0113344 }, + { "lat": 40.7168744, "lon": -74.0113636 }, + { "lat": 40.7168834, "lon": -74.0113745 }, + { "lat": 40.7168923, "lon": -74.0113558 }, + { "lat": 40.7169109, "lon": -74.0113394 }, + { "lat": 40.7169476, "lon": -74.0113282 }, + { "lat": 40.7169793, "lon": -74.0113185 }, + { "lat": 40.7170053, "lon": -74.0113021 }, + { "lat": 40.7170241, "lon": -74.0112789 }, + { "lat": 40.7170452, "lon": -74.0112488 }, + { "lat": 40.7170643, "lon": -74.0112245 }, + { "lat": 40.7170880, "lon": -74.0112059 }, + { "lat": 40.7171121, "lon": -74.0111963 }, + { "lat": 40.7171426, "lon": -74.0111903 }, + { "lat": 40.7171613, "lon": -74.0111923 }, + { "lat": 40.7171685, "lon": -74.0111813 }, + { "lat": 40.7171719, "lon": -74.0111593 }, + { "lat": 40.7171714, "lon": -74.0111424 }, + { "lat": 40.7171676, "lon": -74.0111310 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1235099830, + "bounds": { + "minlat": 40.7181048, + "minlon": -74.0104803, + "maxlat": 40.7181146, + "maxlon": -74.0104033 + }, + "nodes": [ + 42436050, + 11464657938 + ], + "geometry": [ + { "lat": 40.7181146, "lon": -74.0104803 }, + { "lat": 40.7181048, "lon": -74.0104033 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "name:ko": "제이 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1235099835, + "bounds": { + "minlat": 40.7179065, + "minlon": -74.0107709, + "maxlat": 40.7179381, + "maxlon": -74.0105258 + }, + "nodes": [ + 11464657970, + 11464657972, + 11464658111, + 11464657971 + ], + "geometry": [ + { "lat": 40.7179381, "lon": -74.0107709 }, + { "lat": 40.7179251, "lon": -74.0106703 }, + { "lat": 40.7179146, "lon": -74.0105885 }, + { "lat": 40.7179065, "lon": -74.0105258 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1235099847, + "bounds": { + "minlat": 40.7187754, + "minlon": -74.0113309, + "maxlat": 40.7190450, + "maxlon": -74.0112705 + }, + "nodes": [ + 11464658055, + 11464658057, + 11464658075, + 11464658056, + 11466637363, + 11464658060, + 11466076644 + ], + "geometry": [ + { "lat": 40.7187754, "lon": -74.0113309 }, + { "lat": 40.7188303, "lon": -74.0113183 }, + { "lat": 40.7188476, "lon": -74.0113143 }, + { "lat": 40.7189196, "lon": -74.0112979 }, + { "lat": 40.7189832, "lon": -74.0112831 }, + { "lat": 40.7190148, "lon": -74.0112762 }, + { "lat": 40.7190450, "lon": -74.0112705 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1235099854, + "bounds": { + "minlat": 40.7187970, + "minlon": -74.0103517, + "maxlat": 40.7188059, + "maxlon": -74.0102721 + }, + "nodes": [ + 5812723035, + 11464658113 + ], + "geometry": [ + { "lat": 40.7188059, "lon": -74.0103517 }, + { "lat": 40.7187970, "lon": -74.0102721 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Harrison Street", + "name:ko": "해리슨 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1235162908, + "bounds": { + "minlat": 40.8100242, + "minlon": -73.9875136, + "maxlat": 40.8101274, + "maxlon": -73.9872585 + }, + "nodes": [ + 103220231, + 11465427435 + ], + "geometry": [ + { "lat": 40.8101274, "lon": -73.9875136 }, + { "lat": 40.8100242, "lon": -73.9872585 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Independence Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Independence", + "tiger:name_type": "Way", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1235162909, + "bounds": { + "minlat": 40.8098675, + "minlon": -73.9872585, + "maxlat": 40.8100242, + "maxlon": -73.9868612 + }, + "nodes": [ + 11465427435, + 103158212 + ], + "geometry": [ + { "lat": 40.8100242, "lon": -73.9872585 }, + { "lat": 40.8098675, "lon": -73.9868612 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Independence Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Independence", + "tiger:name_type": "Way", + "tiger:reviewed": "no", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1235162910, + "bounds": { + "minlat": 40.8092787, + "minlon": -73.9868612, + "maxlat": 40.8098675, + "maxlon": -73.9853143 + }, + "nodes": [ + 103158212, + 11465427461, + 11465427464, + 103220234, + 11465427453, + 103126121 + ], + "geometry": [ + { "lat": 40.8098675, "lon": -73.9868612 }, + { "lat": 40.8097007, "lon": -73.9864213 }, + { "lat": 40.8096806, "lon": -73.9863685 }, + { "lat": 40.8095793, "lon": -73.9861012 }, + { "lat": 40.8093862, "lon": -73.9855952 }, + { "lat": 40.8092787, "lon": -73.9853143 } + ], + "tags": { + "access": "private", + "highway": "residential", + "layer": "1", + "name": "Independence Way", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Independence", + "tiger:name_type": "Way", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1235162911, + "bounds": { + "minlat": 40.8089780, + "minlon": -73.9853579, + "maxlat": 40.8092133, + "maxlon": -73.9848109 + }, + "nodes": [ + 11465427436, + 11465427437, + 11465427438 + ], + "geometry": [ + { "lat": 40.8092133, "lon": -73.9853579 }, + { "lat": 40.8090846, "lon": -73.9850333 }, + { "lat": 40.8089780, "lon": -73.9848109 } + ], + "tags": { + "access": "private", + "highway": "residential", + "layer": "1", + "name": "Independence Way", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Independence", + "tiger:name_type": "Way", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1235162912, + "bounds": { + "minlat": 40.8091268, + "minlon": -73.9852752, + "maxlat": 40.8093373, + "maxlon": -73.9847155 + }, + "nodes": [ + 11465427439, + 11465427441, + 11465427440 + ], + "geometry": [ + { "lat": 40.8091268, "lon": -73.9847155 }, + { "lat": 40.8092201, "lon": -73.9849679 }, + { "lat": 40.8093373, "lon": -73.9852752 } + ], + "tags": { + "access": "private", + "highway": "residential", + "layer": "1", + "name": "Independence Way", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1235162913, + "bounds": { + "minlat": 40.8085420, + "minlon": -73.9840317, + "maxlat": 40.8088614, + "maxlon": -73.9836203 + }, + "nodes": [ + 11465427442, + 11465427443, + 11465427444, + 11465427445, + 11465427446, + 11465427447, + 11465427442 + ], + "geometry": [ + { "lat": 40.8086473, "lon": -73.9836936 }, + { "lat": 40.8085420, "lon": -73.9837606 }, + { "lat": 40.8086407, "lon": -73.9840317 }, + { "lat": 40.8087496, "lon": -73.9839625 }, + { "lat": 40.8088614, "lon": -73.9838914 }, + { "lat": 40.8087627, "lon": -73.9836203 }, + { "lat": 40.8086473, "lon": -73.9836936 } + ], + "tags": { + "access": "private", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1235162914, + "bounds": { + "minlat": 40.8088482, + "minlon": -73.9848353, + "maxlat": 40.8091665, + "maxlon": -73.9844402 + }, + "nodes": [ + 11465427448, + 11465427449, + 11465427450, + 11465427438, + 103126644, + 11465427439, + 11465427451, + 11465427452, + 11465427448 + ], + "geometry": [ + { "lat": 40.8089591, "lon": -73.9845144 }, + { "lat": 40.8088482, "lon": -73.9845855 }, + { "lat": 40.8089400, "lon": -73.9848353 }, + { "lat": 40.8089780, "lon": -73.9848109 }, + { "lat": 40.8090546, "lon": -73.9847618 }, + { "lat": 40.8091268, "lon": -73.9847155 }, + { "lat": 40.8091665, "lon": -73.9846900 }, + { "lat": 40.8090747, "lon": -73.9844402 }, + { "lat": 40.8089591, "lon": -73.9845144 } + ], + "tags": { + "access": "private", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1235162915, + "bounds": { + "minlat": 40.8091561, + "minlon": -73.9856771, + "maxlat": 40.8094917, + "maxlon": -73.9852438 + }, + "nodes": [ + 11465427453, + 11465427454, + 11465427455, + 11465427436, + 103126121, + 11465427440, + 11465427456, + 11465427457, + 11465427453 + ], + "geometry": [ + { "lat": 40.8093862, "lon": -73.9855952 }, + { "lat": 40.8092636, "lon": -73.9856771 }, + { "lat": 40.8091561, "lon": -73.9853961 }, + { "lat": 40.8092133, "lon": -73.9853579 }, + { "lat": 40.8092787, "lon": -73.9853143 }, + { "lat": 40.8093373, "lon": -73.9852752 }, + { "lat": 40.8093842, "lon": -73.9852438 }, + { "lat": 40.8094917, "lon": -73.9855248 }, + { "lat": 40.8093862, "lon": -73.9855952 } + ], + "tags": { + "access": "private", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1235162916, + "bounds": { + "minlat": 40.8094538, + "minlon": -73.9864879, + "maxlat": 40.8097007, + "maxlon": -73.9861012 + }, + "nodes": [ + 103220234, + 11465427458, + 11465427459, + 11465427460, + 11465454073, + 11465427461 + ], + "geometry": [ + { "lat": 40.8095793, "lon": -73.9861012 }, + { "lat": 40.8094538, "lon": -73.9861845 }, + { "lat": 40.8095635, "lon": -73.9864738 }, + { "lat": 40.8096035, "lon": -73.9864879 }, + { "lat": 40.8096155, "lon": -73.9864796 }, + { "lat": 40.8097007, "lon": -73.9864213 } + ], + "tags": { + "access": "private", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1235162917, + "bounds": { + "minlat": 40.8095793, + "minlon": -73.9863685, + "maxlat": 40.8097884, + "maxlon": -73.9860299 + }, + "nodes": [ + 103220234, + 11465427462, + 11465427463, + 11465427465, + 11465427464 + ], + "geometry": [ + { "lat": 40.8095793, "lon": -73.9861012 }, + { "lat": 40.8096870, "lon": -73.9860299 }, + { "lat": 40.8097884, "lon": -73.9862972 }, + { "lat": 40.8097620, "lon": -73.9863147 }, + { "lat": 40.8096806, "lon": -73.9863685 } + ], + "tags": { + "access": "private", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1235162918, + "bounds": { + "minlat": 40.8097620, + "minlon": -73.9869771, + "maxlat": 40.8099801, + "maxlon": -73.9863147 + }, + "nodes": [ + 11465427465, + 11465427466, + 11465427467, + 11465427468, + 11465454069 + ], + "geometry": [ + { "lat": 40.8097620, "lon": -73.9863147 }, + { "lat": 40.8098173, "lon": -73.9864544 }, + { "lat": 40.8098274, "lon": -73.9865464 }, + { "lat": 40.8098480, "lon": -73.9866235 }, + { "lat": 40.8099801, "lon": -73.9869771 } + ], + "tags": { + "access": "private", + "highway": "service", + "layer": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1235162919, + "bounds": { + "minlat": 40.8096155, + "minlon": -73.9870535, + "maxlat": 40.8098675, + "maxlon": -73.9864796 + }, + "nodes": [ + 11465454070, + 11465454071, + 11465454072, + 11465454073 + ], + "geometry": [ + { "lat": 40.8098675, "lon": -73.9870535 }, + { "lat": 40.8097031, "lon": -73.9866373 }, + { "lat": 40.8096518, "lon": -73.9865778 }, + { "lat": 40.8096155, "lon": -73.9864796 } + ], + "tags": { + "access": "private", + "highway": "service", + "layer": "1", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1235162920, + "bounds": { + "minlat": 40.8097210, + "minlon": -73.9871528, + "maxlat": 40.8101162, + "maxlon": -73.9868849 + }, + "nodes": [ + 11465454074, + 11465454070, + 11465454069, + 11465454075 + ], + "geometry": [ + { "lat": 40.8097210, "lon": -73.9871528 }, + { "lat": 40.8098675, "lon": -73.9870535 }, + { "lat": 40.8099801, "lon": -73.9869771 }, + { "lat": 40.8101162, "lon": -73.9868849 } + ], + "tags": { + "access": "private", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1235162921, + "bounds": { + "minlat": 40.8090546, + "minlon": -73.9852385, + "maxlat": 40.8092359, + "maxlon": -73.9847618 + }, + "nodes": [ + 103126644, + 11465454076 + ], + "geometry": [ + { "lat": 40.8090546, "lon": -73.9847618 }, + { "lat": 40.8092359, "lon": -73.9852385 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1235198283, + "bounds": { + "minlat": 40.8225092, + "minlon": -73.9989145, + "maxlat": 40.8225755, + "maxlon": -73.9986920 + }, + "nodes": [ + 11465835082, + 11465835083, + 103147944 + ], + "geometry": [ + { "lat": 40.8225755, "lon": -73.9989145 }, + { "lat": 40.8225228, "lon": -73.9987948 }, + { "lat": 40.8225092, "lon": -73.9986920 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1235274667, + "bounds": { + "minlat": 40.7197591, + "minlon": -74.0104413, + "maxlat": 40.7197895, + "maxlon": -74.0101835 + }, + "nodes": [ + 11466637156, + 11466637158, + 11466637362, + 11466637157 + ], + "geometry": [ + { "lat": 40.7197895, "lon": -74.0104413 }, + { "lat": 40.7197774, "lon": -74.0103391 }, + { "lat": 40.7197676, "lon": -74.0102558 }, + { "lat": 40.7197591, "lon": -74.0101835 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1235274693, + "bounds": { + "minlat": 40.7194342, + "minlon": -74.0102398, + "maxlat": 40.7194445, + "maxlon": -74.0101307 + }, + "nodes": [ + 42436055, + 8304498459, + 11466637309 + ], + "geometry": [ + { "lat": 40.7194445, "lon": -74.0102398 }, + { "lat": 40.7194358, "lon": -74.0101471 }, + { "lat": 40.7194342, "lon": -74.0101307 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Franklin Street", + "name:etymology:wikidata": "Q34969", + "name:ko": "프랭클린 스트리트", + "name:ru": "Франклин-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1235274707, + "bounds": { + "minlat": 40.7202950, + "minlon": -74.0120514, + "maxlat": 40.7203190, + "maxlon": -74.0118278 + }, + "nodes": [ + 11466637381, + 3874650165, + 4207143418 + ], + "geometry": [ + { "lat": 40.7202950, "lon": -74.0118278 }, + { "lat": 40.7203038, "lon": -74.0119094 }, + { "lat": 40.7203190, "lon": -74.0120514 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "North Moore Street", + "name:etymology:wikidata": "Q16203667", + "name:ko": "노스 무어 스트리트", + "name:ru": "Норт-Мур-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete", + "wikidata": "Q7056143", + "wikipedia": "en:North Moore Street" + } +}, +{ + "type": "way", + "id": 1235287380, + "bounds": { + "minlat": 40.7201811, + "minlon": -74.0122478, + "maxlat": 40.7202614, + "maxlon": -74.0121502 + }, + "nodes": [ + 4899829412, + 10612369372, + 11466760183, + 11466760184, + 11466760185, + 11466760186, + 11466760187, + 11466760188, + 11466760189, + 11466760190, + 10612369373, + 4899829923, + 11466760182, + 11466752249, + 11466752250, + 4899829412 + ], + "geometry": [ + { "lat": 40.7201811, "lon": -74.0122478 }, + { "lat": 40.7202186, "lon": -74.0122408 }, + { "lat": 40.7202470, "lon": -74.0122344 }, + { "lat": 40.7202548, "lon": -74.0122310 }, + { "lat": 40.7202588, "lon": -74.0122240 }, + { "lat": 40.7202614, "lon": -74.0122126 }, + { "lat": 40.7202568, "lon": -74.0121695 }, + { "lat": 40.7202534, "lon": -74.0121599 }, + { "lat": 40.7202461, "lon": -74.0121528 }, + { "lat": 40.7202381, "lon": -74.0121502 }, + { "lat": 40.7202083, "lon": -74.0121559 }, + { "lat": 40.7201864, "lon": -74.0121612 }, + { "lat": 40.7201940, "lon": -74.0122207 }, + { "lat": 40.7201929, "lon": -74.0122341 }, + { "lat": 40.7201883, "lon": -74.0122437 }, + { "lat": 40.7201811, "lon": -74.0122478 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1235287381, + "bounds": { + "minlat": 40.7191286, + "minlon": -74.0124872, + "maxlat": 40.7192094, + "maxlon": -74.0123698 + }, + "nodes": [ + 4899829931, + 10612369368, + 4899829932, + 11466752246, + 11466752247, + 11466752248, + 4899829943, + 10612369369, + 4899829419, + 4899829931 + ], + "geometry": [ + { "lat": 40.7191421, "lon": -74.0124872 }, + { "lat": 40.7191854, "lon": -74.0124782 }, + { "lat": 40.7192094, "lon": -74.0124733 }, + { "lat": 40.7191976, "lon": -74.0123937 }, + { "lat": 40.7191979, "lon": -74.0123833 }, + { "lat": 40.7192011, "lon": -74.0123750 }, + { "lat": 40.7192079, "lon": -74.0123698 }, + { "lat": 40.7191726, "lon": -74.0123773 }, + { "lat": 40.7191286, "lon": -74.0123866 }, + { "lat": 40.7191421, "lon": -74.0124872 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1235287385, + "bounds": { + "minlat": 40.7189298, + "minlon": -74.0126994, + "maxlat": 40.7189982, + "maxlon": -74.0126570 + }, + "nodes": [ + 4899829945, + 11463822855, + 4899829942, + 11460524906, + 11460524907, + 11466760199, + 4899829937, + 11463822854, + 4899829925, + 4899829945 + ], + "geometry": [ + { "lat": 40.7189982, "lon": -74.0126889 }, + { "lat": 40.7189755, "lon": -74.0126942 }, + { "lat": 40.7189531, "lon": -74.0126994 }, + { "lat": 40.7189516, "lon": -74.0126880 }, + { "lat": 40.7189465, "lon": -74.0126773 }, + { "lat": 40.7189395, "lon": -74.0126738 }, + { "lat": 40.7189298, "lon": -74.0126725 }, + { "lat": 40.7189714, "lon": -74.0126621 }, + { "lat": 40.7189941, "lon": -74.0126570 }, + { "lat": 40.7189982, "lon": -74.0126889 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1235287386, + "bounds": { + "minlat": 40.7191483, + "minlon": -74.0126489, + "maxlat": 40.7192157, + "maxlon": -74.0126080 + }, + "nodes": [ + 4899848980, + 11466760198, + 4899829941, + 11466760193, + 11466760192, + 11466760191, + 4899829936, + 11466760197, + 4899848998, + 4899848980 + ], + "geometry": [ + { "lat": 40.7192117, "lon": -74.0126080 }, + { "lat": 40.7192023, "lon": -74.0126101 }, + { "lat": 40.7191483, "lon": -74.0126221 }, + { "lat": 40.7191543, "lon": -74.0126228 }, + { "lat": 40.7191607, "lon": -74.0126284 }, + { "lat": 40.7191644, "lon": -74.0126377 }, + { "lat": 40.7191656, "lon": -74.0126489 }, + { "lat": 40.7192061, "lon": -74.0126405 }, + { "lat": 40.7192157, "lon": -74.0126385 }, + { "lat": 40.7192117, "lon": -74.0126080 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1235287393, + "bounds": { + "minlat": 40.7203967, + "minlon": -74.0121940, + "maxlat": 40.7204765, + "maxlon": -74.0121047 + }, + "nodes": [ + 4899823022, + 10612369370, + 11466760239, + 11466760240, + 11466760241, + 11466760242, + 11466760243, + 11466760246, + 11466760244, + 11466760245, + 10612369371, + 4899823029, + 11466760238, + 11466760237, + 11466760236, + 4899823022 + ], + "geometry": [ + { "lat": 40.7204706, "lon": -74.0121828 }, + { "lat": 40.7204512, "lon": -74.0121871 }, + { "lat": 40.7204226, "lon": -74.0121935 }, + { "lat": 40.7204142, "lon": -74.0121940 }, + { "lat": 40.7204061, "lon": -74.0121884 }, + { "lat": 40.7204014, "lon": -74.0121794 }, + { "lat": 40.7203967, "lon": -74.0121383 }, + { "lat": 40.7203979, "lon": -74.0121307 }, + { "lat": 40.7204012, "lon": -74.0121242 }, + { "lat": 40.7204063, "lon": -74.0121200 }, + { "lat": 40.7204426, "lon": -74.0121121 }, + { "lat": 40.7204765, "lon": -74.0121047 }, + { "lat": 40.7204700, "lon": -74.0121097 }, + { "lat": 40.7204651, "lon": -74.0121164 }, + { "lat": 40.7204640, "lon": -74.0121258 }, + { "lat": 40.7204706, "lon": -74.0121828 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1235287394, + "bounds": { + "minlat": 40.7196921, + "minlon": -74.0125638, + "maxlat": 40.7209679, + "maxlon": -74.0122452 + }, + "nodes": [ + 4899848964, + 11466760209, + 4899848977, + 11466760221, + 11466760225, + 11466760228, + 11466760226, + 11466760227, + 11466760257, + 11466760256, + 4899823027, + 11466760247, + 11466760258, + 11466760248, + 11466760259, + 11466760249, + 11466760250, + 11466760231, + 11466760224, + 11466760251, + 11466760252, + 11466760253, + 11466760254, + 11466760255, + 4899848964 + ], + "geometry": [ + { "lat": 40.7196921, "lon": -74.0125368 }, + { "lat": 40.7196961, "lon": -74.0125477 }, + { "lat": 40.7196979, "lon": -74.0125638 }, + { "lat": 40.7202262, "lon": -74.0124481 }, + { "lat": 40.7202437, "lon": -74.0124441 }, + { "lat": 40.7203881, "lon": -74.0124111 }, + { "lat": 40.7205364, "lon": -74.0123765 }, + { "lat": 40.7208392, "lon": -74.0123102 }, + { "lat": 40.7208641, "lon": -74.0123048 }, + { "lat": 40.7208890, "lon": -74.0122995 }, + { "lat": 40.7209679, "lon": -74.0122825 }, + { "lat": 40.7209623, "lon": -74.0122452 }, + { "lat": 40.7205559, "lon": -74.0123350 }, + { "lat": 40.7205498, "lon": -74.0123352 }, + { "lat": 40.7205457, "lon": -74.0123340 }, + { "lat": 40.7205087, "lon": -74.0123129 }, + { "lat": 40.7204956, "lon": -74.0123087 }, + { "lat": 40.7204657, "lon": -74.0123155 }, + { "lat": 40.7202340, "lon": -74.0123673 }, + { "lat": 40.7201744, "lon": -74.0123807 }, + { "lat": 40.7201582, "lon": -74.0123880 }, + { "lat": 40.7201096, "lon": -74.0124244 }, + { "lat": 40.7200923, "lon": -74.0124385 }, + { "lat": 40.7200745, "lon": -74.0124453 }, + { "lat": 40.7196921, "lon": -74.0125368 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1235287403, + "bounds": { + "minlat": 40.7202524, + "minlon": -74.0113970, + "maxlat": 40.7204084, + "maxlon": -74.0113688 + }, + "nodes": [ + 12214442342, + 12214442341, + 12214442343, + 11466760305, + 12214442364, + 11489120802, + 11466760304 + ], + "geometry": [ + { "lat": 40.7204084, "lon": -74.0113688 }, + { "lat": 40.7203771, "lon": -74.0113745 }, + { "lat": 40.7203754, "lon": -74.0113748 }, + { "lat": 40.7203451, "lon": -74.0113803 }, + { "lat": 40.7203251, "lon": -74.0113839 }, + { "lat": 40.7203158, "lon": -74.0113855 }, + { "lat": 40.7202524, "lon": -74.0113970 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "4", + "lanes:both_ways": "4", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1235287404, + "bounds": { + "minlat": 40.7204084, + "minlon": -74.0113688, + "maxlat": 40.7204364, + "maxlon": -74.0113140 + }, + "nodes": [ + 11466760306, + 12214442342 + ], + "geometry": [ + { "lat": 40.7204364, "lon": -74.0113140 }, + { "lat": 40.7204084, "lon": -74.0113688 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "2", + "lanes:both_ways": "2", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1235363138, + "bounds": { + "minlat": 40.7474759, + "minlon": -73.9296572, + "maxlat": 40.7477318, + "maxlon": -73.9295246 + }, + "nodes": [ + 11467771685, + 10069637114 + ], + "geometry": [ + { "lat": 40.7477318, "lon": -73.9296572 }, + { "lat": 40.7474759, "lon": -73.9295246 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "tertiary", + "lanes": "2", + "layer": "1", + "lcn": "yes", + "lit": "yes", + "maxspeed": "25 mph", + "maxweight:signed": "no", + "name": "Honeywell Street", + "oneway": "no", + "parking:both": "no", + "parking:both:restriction": "no_parking", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1236125144, + "bounds": { + "minlat": 40.7190152, + "minlon": -74.0129421, + "maxlat": 40.7191965, + "maxlon": -74.0127564 + }, + "nodes": [ + 11476958219, + 11476958218, + 11476958344, + 11476958215, + 11476958216, + 11476958217, + 11476958220, + 11476958219 + ], + "geometry": [ + { "lat": 40.7191965, "lon": -74.0129135 }, + { "lat": 40.7191801, "lon": -74.0129167 }, + { "lat": 40.7191242, "lon": -74.0129277 }, + { "lat": 40.7190680, "lon": -74.0129392 }, + { "lat": 40.7190506, "lon": -74.0129421 }, + { "lat": 40.7190152, "lon": -74.0127938 }, + { "lat": 40.7191950, "lon": -74.0127564 }, + { "lat": 40.7191965, "lon": -74.0129135 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1236746369, + "bounds": { + "minlat": 40.7204237, + "minlon": -74.0162929, + "maxlat": 40.7206644, + "maxlon": -74.0161001 + }, + "nodes": [ + 11484323821, + 11484323886, + 11484323874, + 11484323879, + 11484323875, + 11484323887, + 11484323869, + 11484323868, + 11484323867, + 11484323866, + 11484323845, + 11484323876, + 11484323822, + 11484323821 + ], + "geometry": [ + { "lat": 40.7204237, "lon": -74.0161547 }, + { "lat": 40.7204293, "lon": -74.0162014 }, + { "lat": 40.7204404, "lon": -74.0162929 }, + { "lat": 40.7204677, "lon": -74.0162871 }, + { "lat": 40.7206644, "lon": -74.0162460 }, + { "lat": 40.7206533, "lon": -74.0161538 }, + { "lat": 40.7206513, "lon": -74.0161370 }, + { "lat": 40.7206300, "lon": -74.0161415 }, + { "lat": 40.7206250, "lon": -74.0161001 }, + { "lat": 40.7205269, "lon": -74.0161206 }, + { "lat": 40.7204491, "lon": -74.0161369 }, + { "lat": 40.7204422, "lon": -74.0161383 }, + { "lat": 40.7204437, "lon": -74.0161505 }, + { "lat": 40.7204237, "lon": -74.0161547 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 1236759976, + "bounds": { + "minlat": 40.7212253, + "minlon": -74.0155822, + "maxlat": 40.7213739, + "maxlon": -74.0151677 + }, + "nodes": [ + 8282447744, + 11484445138, + 8282447746, + 8282447747, + 11484409659, + 8282447741, + 8282447740, + 11484409661, + 11484409660, + 8282447678, + 8282447745, + 11484409655, + 8282447737, + 8282447736, + 11484409657, + 11484409656, + 8282447744 + ], + "geometry": [ + { "lat": 40.7213074, "lon": -74.0155782 }, + { "lat": 40.7213010, "lon": -74.0155803 }, + { "lat": 40.7212951, "lon": -74.0155822 }, + { "lat": 40.7213023, "lon": -74.0152383 }, + { "lat": 40.7212253, "lon": -74.0152354 }, + { "lat": 40.7212256, "lon": -74.0152224 }, + { "lat": 40.7212820, "lon": -74.0152240 }, + { "lat": 40.7213026, "lon": -74.0152248 }, + { "lat": 40.7213039, "lon": -74.0151677 }, + { "lat": 40.7213105, "lon": -74.0151811 }, + { "lat": 40.7213162, "lon": -74.0151928 }, + { "lat": 40.7213109, "lon": -74.0154160 }, + { "lat": 40.7213170, "lon": -74.0154166 }, + { "lat": 40.7213739, "lon": -74.0154182 }, + { "lat": 40.7213739, "lon": -74.0154293 }, + { "lat": 40.7213105, "lon": -74.0154280 }, + { "lat": 40.7213074, "lon": -74.0155782 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1236759989, + "bounds": { + "minlat": 40.7211731, + "minlon": -74.0156774, + "maxlat": 40.7215466, + "maxlon": -74.0131567 + }, + "nodes": [ + 8282447713, + 8282447716, + 8282447712, + 11484444975, + 11484444974, + 11484444972, + 8282447709, + 8282447708, + 11484444971, + 8282447781, + 11484445012, + 11484445182, + 11484445181, + 11484445175, + 11484445180, + 11484445179, + 11484445178, + 11484445141, + 11484409658, + 11484445132, + 11484445177, + 7817564100, + 8282447677, + 8282447656, + 8282447694, + 8282447672, + 8282447702, + 8282447699, + 8282447669, + 8282447697, + 8282447657, + 8282447674, + 11484409624, + 11484384421, + 8282447649, + 11484445170, + 11484445169, + 11484445168, + 11484445164, + 11484445165, + 11484445166, + 11484445167, + 11484445160, + 11484445161, + 11484445162, + 11484445163, + 11484445156, + 11484445157, + 11484445158, + 11484445159, + 11484445152, + 11484445153, + 11484445154, + 11484445155, + 11484445151, + 11484445150, + 11484445149, + 11484445148, + 11484445145, + 11484445146, + 11484445147, + 11484445015, + 11484409664, + 11484444979, + 8282447714, + 8282447713 + ], + "geometry": [ + { "lat": 40.7212246, "lon": -74.0131567 }, + { "lat": 40.7212068, "lon": -74.0131604 }, + { "lat": 40.7211889, "lon": -74.0131635 }, + { "lat": 40.7211731, "lon": -74.0141883 }, + { "lat": 40.7211946, "lon": -74.0141885 }, + { "lat": 40.7212281, "lon": -74.0141889 }, + { "lat": 40.7212273, "lon": -74.0141224 }, + { "lat": 40.7213242, "lon": -74.0142184 }, + { "lat": 40.7213244, "lon": -74.0142264 }, + { "lat": 40.7213262, "lon": -74.0142455 }, + { "lat": 40.7213819, "lon": -74.0148151 }, + { "lat": 40.7213835, "lon": -74.0148310 }, + { "lat": 40.7212088, "lon": -74.0148657 }, + { "lat": 40.7212362, "lon": -74.0149268 }, + { "lat": 40.7214074, "lon": -74.0153096 }, + { "lat": 40.7214316, "lon": -74.0153060 }, + { "lat": 40.7214526, "lon": -74.0155264 }, + { "lat": 40.7214341, "lon": -74.0155345 }, + { "lat": 40.7213005, "lon": -74.0155921 }, + { "lat": 40.7212335, "lon": -74.0156231 }, + { "lat": 40.7212090, "lon": -74.0156328 }, + { "lat": 40.7212143, "lon": -74.0156774 }, + { "lat": 40.7212398, "lon": -74.0156731 }, + { "lat": 40.7212568, "lon": -74.0156691 }, + { "lat": 40.7212886, "lon": -74.0156628 }, + { "lat": 40.7212974, "lon": -74.0156611 }, + { "lat": 40.7213063, "lon": -74.0156593 }, + { "lat": 40.7214345, "lon": -74.0156341 }, + { "lat": 40.7214444, "lon": -74.0156322 }, + { "lat": 40.7214520, "lon": -74.0156307 }, + { "lat": 40.7214804, "lon": -74.0156251 }, + { "lat": 40.7215020, "lon": -74.0156205 }, + { "lat": 40.7215207, "lon": -74.0156172 }, + { "lat": 40.7215466, "lon": -74.0156128 }, + { "lat": 40.7215439, "lon": -74.0155888 }, + { "lat": 40.7215114, "lon": -74.0155137 }, + { "lat": 40.7214832, "lon": -74.0152554 }, + { "lat": 40.7215036, "lon": -74.0152510 }, + { "lat": 40.7214964, "lon": -74.0151912 }, + { "lat": 40.7214759, "lon": -74.0151959 }, + { "lat": 40.7214685, "lon": -74.0151341 }, + { "lat": 40.7214891, "lon": -74.0151298 }, + { "lat": 40.7214829, "lon": -74.0150779 }, + { "lat": 40.7214617, "lon": -74.0150823 }, + { "lat": 40.7214543, "lon": -74.0150205 }, + { "lat": 40.7214755, "lon": -74.0150159 }, + { "lat": 40.7214699, "lon": -74.0149692 }, + { "lat": 40.7214491, "lon": -74.0149735 }, + { "lat": 40.7214417, "lon": -74.0149117 }, + { "lat": 40.7214626, "lon": -74.0149074 }, + { "lat": 40.7214553, "lon": -74.0148449 }, + { "lat": 40.7214335, "lon": -74.0148493 }, + { "lat": 40.7214243, "lon": -74.0147716 }, + { "lat": 40.7214460, "lon": -74.0147671 }, + { "lat": 40.7214308, "lon": -74.0146396 }, + { "lat": 40.7214085, "lon": -74.0146441 }, + { "lat": 40.7213988, "lon": -74.0145598 }, + { "lat": 40.7214211, "lon": -74.0145553 }, + { "lat": 40.7214038, "lon": -74.0144123 }, + { "lat": 40.7213829, "lon": -74.0144169 }, + { "lat": 40.7213639, "lon": -74.0141865 }, + { "lat": 40.7213477, "lon": -74.0141724 }, + { "lat": 40.7213340, "lon": -74.0141603 }, + { "lat": 40.7213311, "lon": -74.0141307 }, + { "lat": 40.7212238, "lon": -74.0140282 }, + { "lat": 40.7212246, "lon": -74.0131567 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 1237097612, + "bounds": { + "minlat": 40.7222005, + "minlon": -74.0118188, + "maxlat": 40.7222856, + "maxlon": -74.0117372 + }, + "nodes": [ + 4899823028, + 10612369376, + 11489112015, + 11489112016, + 11489112017, + 11489112018, + 11489112019, + 11489112020, + 11489112021, + 11489112022, + 10612369377, + 4899823023, + 11489112008, + 11489112009, + 11489112010, + 4899823028 + ], + "geometry": [ + { "lat": 40.7222005, "lon": -74.0118188 }, + { "lat": 40.7222423, "lon": -74.0118106 }, + { "lat": 40.7222689, "lon": -74.0118054 }, + { "lat": 40.7222779, "lon": -74.0118017 }, + { "lat": 40.7222830, "lon": -74.0117955 }, + { "lat": 40.7222856, "lon": -74.0117850 }, + { "lat": 40.7222818, "lon": -74.0117483 }, + { "lat": 40.7222777, "lon": -74.0117409 }, + { "lat": 40.7222712, "lon": -74.0117372 }, + { "lat": 40.7222628, "lon": -74.0117374 }, + { "lat": 40.7222342, "lon": -74.0117436 }, + { "lat": 40.7222081, "lon": -74.0117491 }, + { "lat": 40.7222139, "lon": -74.0117980 }, + { "lat": 40.7222109, "lon": -74.0118077 }, + { "lat": 40.7222063, "lon": -74.0118148 }, + { "lat": 40.7222005, "lon": -74.0118188 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1237097674, + "bounds": { + "minlat": 40.7214680, + "minlon": -74.0098818, + "maxlat": 40.7215596, + "maxlon": -74.0098665 + }, + "nodes": [ + 11489120590, + 8310246696, + 42436060 + ], + "geometry": [ + { "lat": 40.7215596, "lon": -74.0098665 }, + { "lat": 40.7215345, "lon": -74.0098707 }, + { "lat": 40.7214680, "lon": -74.0098818 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1237097675, + "bounds": { + "minlat": 40.7214670, + "minlon": -74.0098818, + "maxlat": 40.7214707, + "maxlon": -74.0097693 + }, + "nodes": [ + 42436060, + 11489120593, + 5837174091, + 11489120591 + ], + "geometry": [ + { "lat": 40.7214680, "lon": -74.0098818 }, + { "lat": 40.7214707, "lon": -74.0098376 }, + { "lat": 40.7214703, "lon": -74.0098091 }, + { "lat": 40.7214670, "lon": -74.0097693 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Hubert Street", + "name:ko": "휴버트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237097705, + "bounds": { + "minlat": 40.7207543, + "minlon": -74.0100080, + "maxlat": 40.7207650, + "maxlon": -74.0098902 + }, + "nodes": [ + 11489120811, + 8304498439, + 42434871 + ], + "geometry": [ + { "lat": 40.7207543, "lon": -74.0098902 }, + { "lat": 40.7207586, "lon": -74.0099345 }, + { "lat": 40.7207650, "lon": -74.0100080 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Beach Street", + "name:ko": "비치 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237149154, + "bounds": { + "minlat": 40.7213306, + "minlon": -74.0084841, + "maxlat": 40.7213430, + "maxlon": -74.0083435 + }, + "nodes": [ + 11490035759, + 8304498085, + 42436308 + ], + "geometry": [ + { "lat": 40.7213430, "lon": -74.0084841 }, + { "lat": 40.7213410, "lon": -74.0084596 }, + { "lat": 40.7213306, "lon": -74.0083435 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Hubert Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237149160, + "bounds": { + "minlat": 40.7222179, + "minlon": -74.0119764, + "maxlat": 40.7222805, + "maxlon": -74.0119361 + }, + "nodes": [ + 4899819656, + 10612369403, + 4899823024, + 11490138178, + 11490138179, + 11490138180, + 4899823025, + 10612369404, + 4899819647, + 4899819656 + ], + "geometry": [ + { "lat": 40.7222805, "lon": -74.0119682 }, + { "lat": 40.7222619, "lon": -74.0119717 }, + { "lat": 40.7222366, "lon": -74.0119764 }, + { "lat": 40.7222346, "lon": -74.0119629 }, + { "lat": 40.7222305, "lon": -74.0119546 }, + { "lat": 40.7222244, "lon": -74.0119505 }, + { "lat": 40.7222179, "lon": -74.0119489 }, + { "lat": 40.7222581, "lon": -74.0119403 }, + { "lat": 40.7222775, "lon": -74.0119361 }, + { "lat": 40.7222805, "lon": -74.0119682 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237149179, + "bounds": { + "minlat": 40.7222910, + "minlon": -74.0124028, + "maxlat": 40.7225105, + "maxlon": -74.0122739 + }, + "nodes": [ + 3196459733, + 3196459611, + 11490138319, + 11490138331, + 11490138320, + 11490138317, + 11490138321, + 11490138332, + 11490138322, + 2044118379, + 3196459734, + 3196459733 + ], + "geometry": [ + { "lat": 40.7223010, "lon": -74.0124028 }, + { "lat": 40.7222983, "lon": -74.0123792 }, + { "lat": 40.7222923, "lon": -74.0123282 }, + { "lat": 40.7222910, "lon": -74.0123164 }, + { "lat": 40.7223118, "lon": -74.0123122 }, + { "lat": 40.7223944, "lon": -74.0122954 }, + { "lat": 40.7224803, "lon": -74.0122780 }, + { "lat": 40.7225004, "lon": -74.0122739 }, + { "lat": 40.7225016, "lon": -74.0122845 }, + { "lat": 40.7225076, "lon": -74.0123357 }, + { "lat": 40.7225105, "lon": -74.0123603 }, + { "lat": 40.7223010, "lon": -74.0124028 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 1237326681, + "bounds": { + "minlat": 40.7229553, + "minlon": -74.0115025, + "maxlat": 40.7229787, + "maxlon": -74.0112887 + }, + "nodes": [ + 4207143421, + 3874650174, + 11492226802 + ], + "geometry": [ + { "lat": 40.7229787, "lon": -74.0115025 }, + { "lat": 40.7229631, "lon": -74.0113654 }, + { "lat": 40.7229553, "lon": -74.0112887 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Vestry Street", + "name:ko": "배스트리 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1237326682, + "bounds": { + "minlat": 40.7219884, + "minlon": -74.0096998, + "maxlat": 40.7221329, + "maxlon": -74.0082870 + }, + "nodes": [ + 42424408, + 8304498079, + 42440913, + 8310246738, + 11492226808 + ], + "geometry": [ + { "lat": 40.7219884, "lon": -74.0082870 }, + { "lat": 40.7219956, "lon": -74.0083463 }, + { "lat": 40.7220680, "lon": -74.0090561 }, + { "lat": 40.7221311, "lon": -74.0096820 }, + { "lat": 40.7221329, "lon": -74.0096998 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Laight Street", + "name:ko": "레이트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237326683, + "bounds": { + "minlat": 40.7221329, + "minlon": -74.0099059, + "maxlat": 40.7221537, + "maxlon": -74.0096998 + }, + "nodes": [ + 11492226808, + 42436064, + 8429014580, + 11492226807 + ], + "geometry": [ + { "lat": 40.7221329, "lon": -74.0096998 }, + { "lat": 40.7221396, "lon": -74.0097659 }, + { "lat": 40.7221486, "lon": -74.0098550 }, + { "lat": 40.7221537, "lon": -74.0099059 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Laight Street", + "name:ko": "레이트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1237326684, + "bounds": { + "minlat": 40.7222991, + "minlon": -74.0116409, + "maxlat": 40.7223187, + "maxlon": -74.0114317 + }, + "nodes": [ + 11492226809, + 3874650168, + 42440918 + ], + "geometry": [ + { "lat": 40.7222991, "lon": -74.0114317 }, + { "lat": 40.7223056, "lon": -74.0114998 }, + { "lat": 40.7223187, "lon": -74.0116409 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Laight Street", + "name:ko": "레이트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1237326685, + "bounds": { + "minlat": 40.7224016, + "minlon": -74.0119409, + "maxlat": 40.7224741, + "maxlon": -74.0118976 + }, + "nodes": [ + 4899819680, + 10612369399, + 4899819673, + 11490138208, + 11490138209, + 11490138210, + 4899819675, + 10612369400, + 4899819671, + 4899819680 + ], + "geometry": [ + { "lat": 40.7224741, "lon": -74.0119306 }, + { "lat": 40.7224522, "lon": -74.0119349 }, + { "lat": 40.7224213, "lon": -74.0119409 }, + { "lat": 40.7224200, "lon": -74.0119290 }, + { "lat": 40.7224165, "lon": -74.0119193 }, + { "lat": 40.7224098, "lon": -74.0119135 }, + { "lat": 40.7224016, "lon": -74.0119119 }, + { "lat": 40.7224484, "lon": -74.0119022 }, + { "lat": 40.7224705, "lon": -74.0118976 }, + { "lat": 40.7224741, "lon": -74.0119306 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237326686, + "bounds": { + "minlat": 40.7223818, + "minlon": -74.0117784, + "maxlat": 40.7224680, + "maxlon": -74.0116912 + }, + "nodes": [ + 4899823030, + 10612369374, + 11492226824, + 11492226825, + 11492226826, + 11492226827, + 11492226828, + 11492226829, + 11492226830, + 11492226831, + 10612369375, + 4899823032, + 11492226815, + 11492226814, + 11492226813, + 4899823030 + ], + "geometry": [ + { "lat": 40.7224553, "lon": -74.0117681 }, + { "lat": 40.7224334, "lon": -74.0117730 }, + { "lat": 40.7224090, "lon": -74.0117779 }, + { "lat": 40.7223981, "lon": -74.0117784 }, + { "lat": 40.7223906, "lon": -74.0117728 }, + { "lat": 40.7223853, "lon": -74.0117606 }, + { "lat": 40.7223818, "lon": -74.0117355 }, + { "lat": 40.7223827, "lon": -74.0117208 }, + { "lat": 40.7223883, "lon": -74.0117115 }, + { "lat": 40.7223964, "lon": -74.0117064 }, + { "lat": 40.7224241, "lon": -74.0117005 }, + { "lat": 40.7224680, "lon": -74.0116912 }, + { "lat": 40.7224571, "lon": -74.0116977 }, + { "lat": 40.7224514, "lon": -74.0117100 }, + { "lat": 40.7224498, "lon": -74.0117250 }, + { "lat": 40.7224553, "lon": -74.0117681 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1237326690, + "bounds": { + "minlat": 40.7228598, + "minlon": -74.0116849, + "maxlat": 40.7229339, + "maxlon": -74.0116066 + }, + "nodes": [ + 4899823033, + 10612369380, + 11492238969, + 11492238970, + 11492238971, + 11492238972, + 11492238973, + 11492238974, + 11492238975, + 11492238976, + 10612369381, + 4899823031, + 11492226835, + 11492226836, + 11492226837, + 4899823033 + ], + "geometry": [ + { "lat": 40.7228598, "lon": -74.0116849 }, + { "lat": 40.7228926, "lon": -74.0116784 }, + { "lat": 40.7229190, "lon": -74.0116733 }, + { "lat": 40.7229277, "lon": -74.0116684 }, + { "lat": 40.7229323, "lon": -74.0116599 }, + { "lat": 40.7229339, "lon": -74.0116487 }, + { "lat": 40.7229314, "lon": -74.0116242 }, + { "lat": 40.7229281, "lon": -74.0116145 }, + { "lat": 40.7229215, "lon": -74.0116072 }, + { "lat": 40.7229109, "lon": -74.0116066 }, + { "lat": 40.7228844, "lon": -74.0116122 }, + { "lat": 40.7228643, "lon": -74.0116171 }, + { "lat": 40.7228704, "lon": -74.0116634 }, + { "lat": 40.7228700, "lon": -74.0116726 }, + { "lat": 40.7228654, "lon": -74.0116808 }, + { "lat": 40.7228598, "lon": -74.0116849 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1237326691, + "bounds": { + "minlat": 40.7228704, + "minlon": -74.0118433, + "maxlat": 40.7229339, + "maxlon": -74.0118040 + }, + "nodes": [ + 4899819668, + 10612369398, + 4899819669, + 11492226857, + 11492226858, + 11492226859, + 4899819657, + 10612369382, + 4899819677, + 4899819668 + ], + "geometry": [ + { "lat": 40.7229339, "lon": -74.0118343 }, + { "lat": 40.7229120, "lon": -74.0118386 }, + { "lat": 40.7228900, "lon": -74.0118433 }, + { "lat": 40.7228888, "lon": -74.0118301 }, + { "lat": 40.7228837, "lon": -74.0118207 }, + { "lat": 40.7228783, "lon": -74.0118171 }, + { "lat": 40.7228704, "lon": -74.0118164 }, + { "lat": 40.7229083, "lon": -74.0118087 }, + { "lat": 40.7229301, "lon": -74.0118040 }, + { "lat": 40.7229339, "lon": -74.0118343 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237326695, + "bounds": { + "minlat": 40.7231274, + "minlon": -74.0109398, + "maxlat": 40.7233615, + "maxlon": -74.0108985 + }, + "nodes": [ + 11492239006, + 11492239004 + ], + "geometry": [ + { "lat": 40.7231274, "lon": -74.0109398 }, + { "lat": 40.7233615, "lon": -74.0108985 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237326696, + "bounds": { + "minlat": 40.7233615, + "minlon": -74.0108985, + "maxlat": 40.7234820, + "maxlon": -74.0108772 + }, + "nodes": [ + 11492239004, + 11492239005 + ], + "geometry": [ + { "lat": 40.7233615, "lon": -74.0108985 }, + { "lat": 40.7234820, "lon": -74.0108772 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1237326697, + "bounds": { + "minlat": 40.7234820, + "minlon": -74.0108772, + "maxlat": 40.7235761, + "maxlon": -74.0108606 + }, + "nodes": [ + 11492239005, + 11492239002, + 11492239001 + ], + "geometry": [ + { "lat": 40.7234820, "lon": -74.0108772 }, + { "lat": 40.7234990, "lon": -74.0108739 }, + { "lat": 40.7235761, "lon": -74.0108606 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237326698, + "bounds": { + "minlat": 40.7230014, + "minlon": -74.0109621, + "maxlat": 40.7231274, + "maxlon": -74.0109398 + }, + "nodes": [ + 11492239007, + 11492239006 + ], + "geometry": [ + { "lat": 40.7230014, "lon": -74.0109621 }, + { "lat": 40.7231274, "lon": -74.0109398 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1237326699, + "bounds": { + "minlat": 40.7229246, + "minlon": -74.0109757, + "maxlat": 40.7230014, + "maxlon": -74.0109621 + }, + "nodes": [ + 11492239000, + 11492239003, + 11492239007 + ], + "geometry": [ + { "lat": 40.7229246, "lon": -74.0109757 }, + { "lat": 40.7229893, "lon": -74.0109642 }, + { "lat": 40.7230014, "lon": -74.0109621 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237326700, + "bounds": { + "minlat": 40.7226474, + "minlon": -74.0083229, + "maxlat": 40.7226644, + "maxlon": -74.0081643 + }, + "nodes": [ + 11492239008, + 8304498375, + 42436340 + ], + "geometry": [ + { "lat": 40.7226644, "lon": -74.0083229 }, + { "lat": 40.7226560, "lon": -74.0082383 }, + { "lat": 40.7226474, "lon": -74.0081643 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Vestry Street", + "name:ko": "배스트리 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237326701, + "bounds": { + "minlat": 40.7219657, + "minlon": -74.0081991, + "maxlat": 40.7219852, + "maxlon": -74.0078952 + }, + "nodes": [ + 4136469558, + 4136469555, + 4136469550, + 3788379686, + 8304498074, + 3788379685, + 3788379684 + ], + "geometry": [ + { "lat": 40.7219657, "lon": -74.0078952 }, + { "lat": 40.7219740, "lon": -74.0079461 }, + { "lat": 40.7219829, "lon": -74.0080405 }, + { "lat": 40.7219852, "lon": -74.0080912 }, + { "lat": 40.7219850, "lon": -74.0081126 }, + { "lat": 40.7219844, "lon": -74.0081489 }, + { "lat": 40.7219758, "lon": -74.0081991 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Laight Street", + "name:ko": "레이트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237336927, + "bounds": { + "minlat": 40.7217086, + "minlon": -74.0079429, + "maxlat": 40.7218644, + "maxlon": -74.0070982 + }, + "nodes": [ + 11492336695, + 11492336696, + 11492336697, + 11492336698, + 11492336699, + 11492336700, + 11492336701, + 11492336702, + 11492336703, + 11492336704, + 4890528699, + 4890535525, + 4890528695, + 11492336705, + 11492336706, + 11492336707, + 11492336708, + 11492336709, + 11492336710, + 11492336711, + 11492336712, + 11492336713, + 11492336695 + ], + "geometry": [ + { "lat": 40.7217090, "lon": -74.0070982 }, + { "lat": 40.7217190, "lon": -74.0071064 }, + { "lat": 40.7217253, "lon": -74.0071233 }, + { "lat": 40.7217277, "lon": -74.0071447 }, + { "lat": 40.7217296, "lon": -74.0072116 }, + { "lat": 40.7217357, "lon": -74.0073082 }, + { "lat": 40.7217460, "lon": -74.0074100 }, + { "lat": 40.7217596, "lon": -74.0075455 }, + { "lat": 40.7217786, "lon": -74.0076555 }, + { "lat": 40.7217963, "lon": -74.0077287 }, + { "lat": 40.7218212, "lon": -74.0077928 }, + { "lat": 40.7218589, "lon": -74.0078772 }, + { "lat": 40.7218644, "lon": -74.0079429 }, + { "lat": 40.7218244, "lon": -74.0078558 }, + { "lat": 40.7217996, "lon": -74.0077899 }, + { "lat": 40.7217751, "lon": -74.0077129 }, + { "lat": 40.7217589, "lon": -74.0076406 }, + { "lat": 40.7217430, "lon": -74.0075476 }, + { "lat": 40.7217287, "lon": -74.0074095 }, + { "lat": 40.7217179, "lon": -74.0073063 }, + { "lat": 40.7217119, "lon": -74.0072064 }, + { "lat": 40.7217086, "lon": -74.0071483 }, + { "lat": 40.7217090, "lon": -74.0070982 } + ], + "tags": { + "access": "no", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237336934, + "bounds": { + "minlat": 40.7217432, + "minlon": -74.0066459, + "maxlat": 40.7223633, + "maxlon": -74.0063964 + }, + "nodes": [ + 11492336733, + 11492336734, + 11492336735, + 11492336736, + 11311088133, + 11492336737, + 11492336738, + 8304498365, + 11492336739, + 4890528701, + 11492336731, + 4890528709, + 11492336730, + 11492336729, + 4890528720, + 4890528717, + 4890535527, + 4890528710, + 11492336733 + ], + "geometry": [ + { "lat": 40.7217432, "lon": -74.0066459 }, + { "lat": 40.7218429, "lon": -74.0065012 }, + { "lat": 40.7218591, "lon": -74.0064809 }, + { "lat": 40.7218705, "lon": -74.0064719 }, + { "lat": 40.7219253, "lon": -74.0064625 }, + { "lat": 40.7222963, "lon": -74.0063964 }, + { "lat": 40.7223162, "lon": -74.0064006 }, + { "lat": 40.7223350, "lon": -74.0064143 }, + { "lat": 40.7223633, "lon": -74.0064336 }, + { "lat": 40.7223591, "lon": -74.0064340 }, + { "lat": 40.7223289, "lon": -74.0064363 }, + { "lat": 40.7222542, "lon": -74.0064369 }, + { "lat": 40.7221340, "lon": -74.0064492 }, + { "lat": 40.7220058, "lon": -74.0064710 }, + { "lat": 40.7219707, "lon": -74.0064758 }, + { "lat": 40.7218934, "lon": -74.0065013 }, + { "lat": 40.7218599, "lon": -74.0065174 }, + { "lat": 40.7218212, "lon": -74.0065546 }, + { "lat": 40.7217432, "lon": -74.0066459 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1237336941, + "bounds": { + "minlat": 40.7211567, + "minlon": -74.0068774, + "maxlat": 40.7214618, + "maxlon": -74.0066588 + }, + "nodes": [ + 11492336782, + 11492336799, + 11492336800, + 11492336801, + 11492336802, + 11492336803, + 11492336804, + 11492336805, + 11492336806, + 11492336807, + 11492336808, + 11492336809, + 11492336810, + 11492336811, + 11492336812, + 11492336813, + 11492336814, + 11492336815, + 11492336816, + 11492336817, + 11492336818, + 11492336819, + 11492336820, + 11492336821, + 11492336822, + 11492336823, + 11492336824, + 11492336825, + 11492336826, + 11492336828, + 11492336827, + 8304498154, + 4890602319, + 11492336782 + ], + "geometry": [ + { "lat": 40.7212057, "lon": -74.0066595 }, + { "lat": 40.7212073, "lon": -74.0066870 }, + { "lat": 40.7212054, "lon": -74.0067162 }, + { "lat": 40.7211989, "lon": -74.0067560 }, + { "lat": 40.7211865, "lon": -74.0067975 }, + { "lat": 40.7211707, "lon": -74.0068383 }, + { "lat": 40.7211594, "lon": -74.0068577 }, + { "lat": 40.7211567, "lon": -74.0068670 }, + { "lat": 40.7211601, "lon": -74.0068774 }, + { "lat": 40.7211684, "lon": -74.0068767 }, + { "lat": 40.7212269, "lon": -74.0068658 }, + { "lat": 40.7212692, "lon": -74.0068555 }, + { "lat": 40.7213296, "lon": -74.0068388 }, + { "lat": 40.7213831, "lon": -74.0068157 }, + { "lat": 40.7214618, "lon": -74.0067694 }, + { "lat": 40.7214525, "lon": -74.0067603 }, + { "lat": 40.7214422, "lon": -74.0067570 }, + { "lat": 40.7214281, "lon": -74.0067602 }, + { "lat": 40.7213939, "lon": -74.0067826 }, + { "lat": 40.7213588, "lon": -74.0068010 }, + { "lat": 40.7213232, "lon": -74.0068150 }, + { "lat": 40.7212643, "lon": -74.0068307 }, + { "lat": 40.7212185, "lon": -74.0068415 }, + { "lat": 40.7211998, "lon": -74.0068447 }, + { "lat": 40.7211936, "lon": -74.0068425 }, + { "lat": 40.7211930, "lon": -74.0068337 }, + { "lat": 40.7212017, "lon": -74.0068094 }, + { "lat": 40.7212125, "lon": -74.0067725 }, + { "lat": 40.7212216, "lon": -74.0067207 }, + { "lat": 40.7212224, "lon": -74.0066996 }, + { "lat": 40.7212232, "lon": -74.0066778 }, + { "lat": 40.7212170, "lon": -74.0066718 }, + { "lat": 40.7212159, "lon": -74.0066588 }, + { "lat": 40.7212057, "lon": -74.0066595 } + ], + "tags": { + "access": "no", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237364385, + "bounds": { + "minlat": 40.7203187, + "minlon": -74.0066734, + "maxlat": 40.7203872, + "maxlon": -74.0066381 + }, + "nodes": [ + 11492543827, + 11492543834, + 11492543828, + 11492543829, + 11492543830, + 11492543831, + 11492543835, + 11492543832, + 11492543833, + 11492543827 + ], + "geometry": [ + { "lat": 40.7203187, "lon": -74.0066479 }, + { "lat": 40.7203637, "lon": -74.0066408 }, + { "lat": 40.7203806, "lon": -74.0066381 }, + { "lat": 40.7203845, "lon": -74.0066393 }, + { "lat": 40.7203872, "lon": -74.0066625 }, + { "lat": 40.7203847, "lon": -74.0066663 }, + { "lat": 40.7203671, "lon": -74.0066694 }, + { "lat": 40.7203448, "lon": -74.0066734 }, + { "lat": 40.7203391, "lon": -74.0066712 }, + { "lat": 40.7203187, "lon": -74.0066479 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237364388, + "bounds": { + "minlat": 40.7205086, + "minlon": -74.0073639, + "maxlat": 40.7210699, + "maxlon": -74.0067006 + }, + "nodes": [ + 8304498181, + 11492543859, + 11492543860, + 11492543861, + 11492543862, + 11492543863, + 11492543864, + 11492543865, + 11492543866, + 11492543867, + 11492543868, + 11492567969, + 11492567970, + 11492567971, + 11492567972, + 11492567973, + 11492567974, + 11492567975, + 11492567976, + 11492567977, + 11492567978, + 11492567979, + 11492567980, + 11492567981, + 11492567982, + 11492567983, + 11492567984, + 11492567985, + 11492567986, + 11492567987, + 11492567988, + 11492567989, + 11492567990, + 11492567991, + 11492567992, + 11492567993, + 11492567994, + 11492567995, + 11492567996, + 4890604121, + 8304498181 + ], + "geometry": [ + { "lat": 40.7205086, "lon": -74.0068572 }, + { "lat": 40.7205195, "lon": -74.0069483 }, + { "lat": 40.7205260, "lon": -74.0069873 }, + { "lat": 40.7205387, "lon": -74.0070313 }, + { "lat": 40.7206386, "lon": -74.0072781 }, + { "lat": 40.7206755, "lon": -74.0073534 }, + { "lat": 40.7206824, "lon": -74.0073627 }, + { "lat": 40.7206873, "lon": -74.0073639 }, + { "lat": 40.7206909, "lon": -74.0073616 }, + { "lat": 40.7206935, "lon": -74.0073513 }, + { "lat": 40.7207049, "lon": -74.0073053 }, + { "lat": 40.7207208, "lon": -74.0072429 }, + { "lat": 40.7207462, "lon": -74.0071601 }, + { "lat": 40.7207845, "lon": -74.0070803 }, + { "lat": 40.7208230, "lon": -74.0070182 }, + { "lat": 40.7208656, "lon": -74.0069585 }, + { "lat": 40.7209405, "lon": -74.0068720 }, + { "lat": 40.7210495, "lon": -74.0067450 }, + { "lat": 40.7210599, "lon": -74.0067294 }, + { "lat": 40.7210672, "lon": -74.0067112 }, + { "lat": 40.7210699, "lon": -74.0067006 }, + { "lat": 40.7210585, "lon": -74.0067033 }, + { "lat": 40.7210435, "lon": -74.0067194 }, + { "lat": 40.7210111, "lon": -74.0067581 }, + { "lat": 40.7209281, "lon": -74.0068517 }, + { "lat": 40.7208524, "lon": -74.0069393 }, + { "lat": 40.7208092, "lon": -74.0070034 }, + { "lat": 40.7207650, "lon": -74.0070704 }, + { "lat": 40.7207277, "lon": -74.0071546 }, + { "lat": 40.7207025, "lon": -74.0072390 }, + { "lat": 40.7206865, "lon": -74.0073041 }, + { "lat": 40.7206822, "lon": -74.0073140 }, + { "lat": 40.7206770, "lon": -74.0073149 }, + { "lat": 40.7206714, "lon": -74.0073050 }, + { "lat": 40.7206568, "lon": -74.0072686 }, + { "lat": 40.7205580, "lon": -74.0070207 }, + { "lat": 40.7205465, "lon": -74.0069811 }, + { "lat": 40.7205386, "lon": -74.0069408 }, + { "lat": 40.7205275, "lon": -74.0068536 }, + { "lat": 40.7205150, "lon": -74.0068560 }, + { "lat": 40.7205086, "lon": -74.0068572 } + ], + "tags": { + "access": "no", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237364391, + "bounds": { + "minlat": 40.7205302, + "minlon": -74.0074852, + "maxlat": 40.7206185, + "maxlon": -74.0073185 + }, + "nodes": [ + 8304498039, + 11492568003, + 11492568004, + 11492568005, + 11492568006, + 11492568007, + 11492568008, + 11492568009, + 11492568010, + 11492568011, + 11492568012, + 4890553368, + 11492568001, + 11492568002, + 8304498039 + ], + "geometry": [ + { "lat": 40.7206030, "lon": -74.0074852 }, + { "lat": 40.7206006, "lon": -74.0074563 }, + { "lat": 40.7205411, "lon": -74.0074227 }, + { "lat": 40.7205365, "lon": -74.0074159 }, + { "lat": 40.7205302, "lon": -74.0073491 }, + { "lat": 40.7205339, "lon": -74.0073356 }, + { "lat": 40.7205397, "lon": -74.0073253 }, + { "lat": 40.7205470, "lon": -74.0073203 }, + { "lat": 40.7205604, "lon": -74.0073185 }, + { "lat": 40.7205716, "lon": -74.0073273 }, + { "lat": 40.7205818, "lon": -74.0073452 }, + { "lat": 40.7206185, "lon": -74.0074596 }, + { "lat": 40.7206073, "lon": -74.0074666 }, + { "lat": 40.7206039, "lon": -74.0074735 }, + { "lat": 40.7206030, "lon": -74.0074852 } + ], + "tags": { + "access": "no", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237364393, + "bounds": { + "minlat": 40.7206804, + "minlon": -74.0080202, + "maxlat": 40.7208729, + "maxlon": -74.0076053 + }, + "nodes": [ + 8304498048, + 11492568035, + 11492568036, + 11492568037, + 11492568038, + 11492568039, + 11492568040, + 11492568041, + 11492568042, + 11492568043, + 11492568044, + 11492568045, + 11492568046, + 11492568047, + 8304498041, + 11492568021, + 8304498042, + 11492568016, + 8304498043, + 11492568024, + 11492568017, + 11492568034, + 11492568033, + 11492568032, + 11492568031, + 11492568030, + 11492568029, + 11492568023, + 11492568022, + 8304498045, + 11492568019, + 11492568020, + 11492568018, + 8304498048 + ], + "geometry": [ + { "lat": 40.7206966, "lon": -74.0080202 }, + { "lat": 40.7207171, "lon": -74.0079908 }, + { "lat": 40.7207464, "lon": -74.0079619 }, + { "lat": 40.7207725, "lon": -74.0079380 }, + { "lat": 40.7207971, "lon": -74.0079240 }, + { "lat": 40.7208317, "lon": -74.0079115 }, + { "lat": 40.7208661, "lon": -74.0079006 }, + { "lat": 40.7208723, "lon": -74.0078958 }, + { "lat": 40.7208729, "lon": -74.0078902 }, + { "lat": 40.7208689, "lon": -74.0078819 }, + { "lat": 40.7208469, "lon": -74.0078503 }, + { "lat": 40.7207982, "lon": -74.0077835 }, + { "lat": 40.7207501, "lon": -74.0077116 }, + { "lat": 40.7207054, "lon": -74.0076368 }, + { "lat": 40.7206865, "lon": -74.0076053 }, + { "lat": 40.7206804, "lon": -74.0076249 }, + { "lat": 40.7206816, "lon": -74.0076352 }, + { "lat": 40.7207025, "lon": -74.0076739 }, + { "lat": 40.7207304, "lon": -74.0077220 }, + { "lat": 40.7207620, "lon": -74.0077702 }, + { "lat": 40.7207879, "lon": -74.0078065 }, + { "lat": 40.7208069, "lon": -74.0078343 }, + { "lat": 40.7208310, "lon": -74.0078641 }, + { "lat": 40.7208340, "lon": -74.0078744 }, + { "lat": 40.7208326, "lon": -74.0078835 }, + { "lat": 40.7208265, "lon": -74.0078866 }, + { "lat": 40.7208104, "lon": -74.0078912 }, + { "lat": 40.7207867, "lon": -74.0078998 }, + { "lat": 40.7207662, "lon": -74.0079140 }, + { "lat": 40.7207446, "lon": -74.0079313 }, + { "lat": 40.7207169, "lon": -74.0079567 }, + { "lat": 40.7206944, "lon": -74.0079842 }, + { "lat": 40.7206927, "lon": -74.0079930 }, + { "lat": 40.7206966, "lon": -74.0080202 } + ], + "tags": { + "access": "no", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237364395, + "bounds": { + "minlat": 40.7205976, + "minlon": -74.0083063, + "maxlat": 40.7206800, + "maxlon": -74.0080252 + }, + "nodes": [ + 11492568067, + 11492568065, + 11492568066, + 8304498050, + 4890553382, + 4890553378, + 4890553365, + 4890553373, + 11492568054, + 11492568068, + 11492568069, + 11492568070, + 11492568071, + 11492568072, + 11492568073, + 11492568074, + 11492568075, + 11492568076, + 11492568077, + 11492568078, + 11492568079, + 11492568080, + 11492568081, + 11492568067 + ], + "geometry": [ + { "lat": 40.7206800, "lon": -74.0080535 }, + { "lat": 40.7206676, "lon": -74.0080658 }, + { "lat": 40.7206600, "lon": -74.0080949 }, + { "lat": 40.7206522, "lon": -74.0081453 }, + { "lat": 40.7206427, "lon": -74.0082301 }, + { "lat": 40.7206245, "lon": -74.0082334 }, + { "lat": 40.7206157, "lon": -74.0081401 }, + { "lat": 40.7206601, "lon": -74.0080698 }, + { "lat": 40.7206582, "lon": -74.0080501 }, + { "lat": 40.7206164, "lon": -74.0080252 }, + { "lat": 40.7206076, "lon": -74.0080258 }, + { "lat": 40.7206015, "lon": -74.0080315 }, + { "lat": 40.7205976, "lon": -74.0080407 }, + { "lat": 40.7205990, "lon": -74.0080579 }, + { "lat": 40.7206208, "lon": -74.0082949 }, + { "lat": 40.7206251, "lon": -74.0083036 }, + { "lat": 40.7206323, "lon": -74.0083063 }, + { "lat": 40.7206392, "lon": -74.0083019 }, + { "lat": 40.7206441, "lon": -74.0082921 }, + { "lat": 40.7206510, "lon": -74.0082292 }, + { "lat": 40.7206614, "lon": -74.0081463 }, + { "lat": 40.7206694, "lon": -74.0080965 }, + { "lat": 40.7206756, "lon": -74.0080692 }, + { "lat": 40.7206800, "lon": -74.0080535 } + ], + "tags": { + "access": "no", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237364397, + "bounds": { + "minlat": 40.7205746, + "minlon": -74.0084726, + "maxlat": 40.7206149, + "maxlon": -74.0080785 + }, + "nodes": [ + 42424610, + 4890553370, + 11492568085 + ], + "geometry": [ + { "lat": 40.7206149, "lon": -74.0084726 }, + { "lat": 40.7206022, "lon": -74.0083478 }, + { "lat": 40.7205746, "lon": -74.0080785 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Ericsson Place", + "name:etymology:wikidata": "Q435290", + "name:ko": "에릭슨 플레이스", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237364400, + "bounds": { + "minlat": 40.7206149, + "minlon": -74.0086288, + "maxlat": 40.7206309, + "maxlon": -74.0084726 + }, + "nodes": [ + 42424610, + 8304498057, + 3788379698 + ], + "geometry": [ + { "lat": 40.7206149, "lon": -74.0084726 }, + { "lat": 40.7206254, "lon": -74.0085755 }, + { "lat": 40.7206309, "lon": -74.0086288 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Beach Street", + "name:ko": "비치 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237367870, + "bounds": { + "minlat": 40.7890610, + "minlon": -73.9500938, + "maxlat": 40.7896807, + "maxlon": -73.9486102 + }, + "nodes": [ + 42438949, + 7779533898, + 8735320748, + 6254630451, + 42438947 + ], + "geometry": [ + { "lat": 40.7890610, "lon": -73.9486102 }, + { "lat": 40.7890954, "lon": -73.9486964 }, + { "lat": 40.7896319, "lon": -73.9499793 }, + { "lat": 40.7896554, "lon": -73.9500350 }, + { "lat": 40.7896807, "lon": -73.9500938 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "motor_vehicle:conditional": "no @ (Sa 12:00-19:00)", + "name": "East 101st Street", + "name:ru": "Восточная 101-я стрит", + "name_1": "East 101 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237389096, + "bounds": { + "minlat": 40.7210318, + "minlon": -74.0054166, + "maxlat": 40.7210474, + "maxlon": -74.0052509 + }, + "nodes": [ + 11492801308, + 4890621100, + 42430131 + ], + "geometry": [ + { "lat": 40.7210474, "lon": -74.0054166 }, + { "lat": 40.7210442, "lon": -74.0053859 }, + { "lat": 40.7210318, "lon": -74.0052509 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "York Street", + "name:ko": "요크 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237389097, + "bounds": { + "minlat": 40.7216498, + "minlon": -74.0057456, + "maxlat": 40.7217618, + "maxlon": -74.0057305 + }, + "nodes": [ + 11492801326, + 4890553386, + 42438781 + ], + "geometry": [ + { "lat": 40.7216498, "lon": -74.0057456 }, + { "lat": 40.7216679, "lon": -74.0057432 }, + { "lat": 40.7217618, "lon": -74.0057305 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Saint John's Lane", + "name:etymology:wikidata": "Q2957049", + "name:ko": "세인트 존스 레인", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237429425, + "bounds": { + "minlat": 40.7203849, + "minlon": -74.0060136, + "maxlat": 40.7204519, + "maxlon": -74.0059597 + }, + "nodes": [ + 42434839, + 11493357446, + 11493357445, + 11493357444, + 5804849353, + 11493357443 + ], + "geometry": [ + { "lat": 40.7203849, "lon": -74.0060136 }, + { "lat": 40.7203949, "lon": -74.0059887 }, + { "lat": 40.7204069, "lon": -74.0059737 }, + { "lat": 40.7204220, "lon": -74.0059656 }, + { "lat": 40.7204391, "lon": -74.0059619 }, + { "lat": 40.7204519, "lon": -74.0059597 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Saint John's Lane", + "name:etymology:wikidata": "Q2957049", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237429459, + "bounds": { + "minlat": 40.7199488, + "minlon": -74.0056953, + "maxlat": 40.7200177, + "maxlon": -74.0056439 + }, + "nodes": [ + 11493402687, + 11493402688, + 11493402695, + 11493402689, + 11493402690, + 11493402691, + 11493402694, + 11493402692, + 11493402693, + 11493402687 + ], + "geometry": [ + { "lat": 40.7200177, "lon": -74.0056636 }, + { "lat": 40.7200172, "lon": -74.0056682 }, + { "lat": 40.7200017, "lon": -74.0056806 }, + { "lat": 40.7199854, "lon": -74.0056937 }, + { "lat": 40.7199810, "lon": -74.0056953 }, + { "lat": 40.7199488, "lon": -74.0056877 }, + { "lat": 40.7199885, "lon": -74.0056568 }, + { "lat": 40.7200050, "lon": -74.0056439 }, + { "lat": 40.7200092, "lon": -74.0056446 }, + { "lat": 40.7200177, "lon": -74.0056636 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237429467, + "bounds": { + "minlat": 40.7197423, + "minlon": -74.0052550, + "maxlat": 40.7198279, + "maxlon": -74.0052210 + }, + "nodes": [ + 11493402726, + 11493402750, + 11493402727, + 11493402728, + 11493402729, + 11493402730, + 11493402751, + 11493402731, + 11493402726 + ], + "geometry": [ + { "lat": 40.7198279, "lon": -74.0052550 }, + { "lat": 40.7198184, "lon": -74.0052547 }, + { "lat": 40.7197423, "lon": -74.0052527 }, + { "lat": 40.7197546, "lon": -74.0052251 }, + { "lat": 40.7197584, "lon": -74.0052210 }, + { "lat": 40.7198019, "lon": -74.0052210 }, + { "lat": 40.7198090, "lon": -74.0052211 }, + { "lat": 40.7198133, "lon": -74.0052242 }, + { "lat": 40.7198279, "lon": -74.0052550 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237582853, + "bounds": { + "minlat": 40.7207737, + "minlon": -74.0081994, + "maxlat": 40.7218492, + "maxlon": -74.0077029 + }, + "nodes": [ + 11494950007, + 11494950030, + 11494950031, + 11494950032, + 11494950033, + 11494950034, + 11494950035, + 11494950036, + 11494950037, + 11494950038, + 11494950039, + 11494950040, + 11494950041, + 11494950042, + 11494950043, + 11494950044, + 11494950045, + 11494950046, + 11494950047, + 11494950048, + 11494950049, + 11494950050, + 11494950051, + 11494950052, + 11494950053, + 11494950054, + 11494950055, + 11494950056, + 11494950057, + 11494950058, + 11494950059, + 4890553363, + 11494950025, + 11494950024, + 8304498030, + 8304498029, + 8304498027, + 11494950026, + 11494950027, + 11494950028, + 11494950029, + 8304498026, + 8304498025, + 11494950009, + 8304498024, + 8304498023, + 8304498022, + 8304498021, + 8304498020, + 8304498019, + 4890553348, + 8304498032, + 8304498031, + 11494949992, + 11494949993, + 11494949994, + 11494949995, + 11494949996, + 11494949997, + 11494949998, + 11494949999, + 11494950000, + 11494950001, + 11494950002, + 11494950003, + 11494950004, + 11494950005, + 11494950006, + 11494950007 + ], + "geometry": [ + { "lat": 40.7207758, "lon": -74.0081994 }, + { "lat": 40.7207737, "lon": -74.0081697 }, + { "lat": 40.7207782, "lon": -74.0081379 }, + { "lat": 40.7207896, "lon": -74.0081076 }, + { "lat": 40.7208064, "lon": -74.0080805 }, + { "lat": 40.7208246, "lon": -74.0080630 }, + { "lat": 40.7208489, "lon": -74.0080505 }, + { "lat": 40.7208750, "lon": -74.0080443 }, + { "lat": 40.7208997, "lon": -74.0080472 }, + { "lat": 40.7209731, "lon": -74.0080639 }, + { "lat": 40.7210781, "lon": -74.0080937 }, + { "lat": 40.7211360, "lon": -74.0081079 }, + { "lat": 40.7211793, "lon": -74.0081140 }, + { "lat": 40.7212214, "lon": -74.0081174 }, + { "lat": 40.7212653, "lon": -74.0081149 }, + { "lat": 40.7213151, "lon": -74.0081018 }, + { "lat": 40.7213683, "lon": -74.0080831 }, + { "lat": 40.7214180, "lon": -74.0080563 }, + { "lat": 40.7214687, "lon": -74.0080236 }, + { "lat": 40.7215167, "lon": -74.0079797 }, + { "lat": 40.7215634, "lon": -74.0079240 }, + { "lat": 40.7216097, "lon": -74.0078508 }, + { "lat": 40.7216514, "lon": -74.0077660 }, + { "lat": 40.7216750, "lon": -74.0077107 }, + { "lat": 40.7216801, "lon": -74.0077032 }, + { "lat": 40.7216881, "lon": -74.0077029 }, + { "lat": 40.7216927, "lon": -74.0077120 }, + { "lat": 40.7217110, "lon": -74.0077625 }, + { "lat": 40.7217463, "lon": -74.0078595 }, + { "lat": 40.7217843, "lon": -74.0079529 }, + { "lat": 40.7218168, "lon": -74.0080287 }, + { "lat": 40.7218492, "lon": -74.0080929 }, + { "lat": 40.7218319, "lon": -74.0080905 }, + { "lat": 40.7218270, "lon": -74.0080868 }, + { "lat": 40.7217968, "lon": -74.0080222 }, + { "lat": 40.7217598, "lon": -74.0079413 }, + { "lat": 40.7217140, "lon": -74.0078284 }, + { "lat": 40.7216869, "lon": -74.0077520 }, + { "lat": 40.7216829, "lon": -74.0077486 }, + { "lat": 40.7216786, "lon": -74.0077521 }, + { "lat": 40.7216590, "lon": -74.0077978 }, + { "lat": 40.7216383, "lon": -74.0078407 }, + { "lat": 40.7216132, "lon": -74.0078842 }, + { "lat": 40.7215800, "lon": -74.0079368 }, + { "lat": 40.7215372, "lon": -74.0079894 }, + { "lat": 40.7214844, "lon": -74.0080382 }, + { "lat": 40.7214244, "lon": -74.0080798 }, + { "lat": 40.7213595, "lon": -74.0081110 }, + { "lat": 40.7212915, "lon": -74.0081315 }, + { "lat": 40.7212803, "lon": -74.0081919 }, + { "lat": 40.7212629, "lon": -74.0081947 }, + { "lat": 40.7212358, "lon": -74.0081990 }, + { "lat": 40.7212431, "lon": -74.0081664 }, + { "lat": 40.7212486, "lon": -74.0081382 }, + { "lat": 40.7212140, "lon": -74.0081385 }, + { "lat": 40.7211775, "lon": -74.0081376 }, + { "lat": 40.7211349, "lon": -74.0081312 }, + { "lat": 40.7210978, "lon": -74.0081216 }, + { "lat": 40.7209359, "lon": -74.0080789 }, + { "lat": 40.7209007, "lon": -74.0080697 }, + { "lat": 40.7208748, "lon": -74.0080691 }, + { "lat": 40.7208554, "lon": -74.0080720 }, + { "lat": 40.7208305, "lon": -74.0080873 }, + { "lat": 40.7208139, "lon": -74.0081063 }, + { "lat": 40.7208020, "lon": -74.0081305 }, + { "lat": 40.7207921, "lon": -74.0081582 }, + { "lat": 40.7207882, "lon": -74.0081806 }, + { "lat": 40.7207835, "lon": -74.0081925 }, + { "lat": 40.7207758, "lon": -74.0081994 } + ], + "tags": { + "access": "no", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237582862, + "bounds": { + "minlat": 40.7226350, + "minlon": -74.0081643, + "maxlat": 40.7226474, + "maxlon": -74.0080264 + }, + "nodes": [ + 42436340, + 13294718043, + 11494950098 + ], + "geometry": [ + { "lat": 40.7226474, "lon": -74.0081643 }, + { "lat": 40.7226387, "lon": -74.0080678 }, + { "lat": 40.7226350, "lon": -74.0080264 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Vestry Street", + "name:ko": "배스트리 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237616725, + "bounds": { + "minlat": 40.7190696, + "minlon": -74.0052325, + "maxlat": 40.7191679, + "maxlon": -74.0051985 + }, + "nodes": [ + 11495443315, + 11495443574, + 11495443316, + 11495443317, + 11495443318, + 11495443319, + 11495443320, + 11495443573, + 11495443321, + 11495443322, + 11495443315 + ], + "geometry": [ + { "lat": 40.7191679, "lon": -74.0052325 }, + { "lat": 40.7190985, "lon": -74.0052304 }, + { "lat": 40.7190830, "lon": -74.0052299 }, + { "lat": 40.7190779, "lon": -74.0052271 }, + { "lat": 40.7190697, "lon": -74.0052106 }, + { "lat": 40.7190696, "lon": -74.0052027 }, + { "lat": 40.7190729, "lon": -74.0051985 }, + { "lat": 40.7190852, "lon": -74.0051989 }, + { "lat": 40.7191489, "lon": -74.0052007 }, + { "lat": 40.7191545, "lon": -74.0052032 }, + { "lat": 40.7191679, "lon": -74.0052325 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237616728, + "bounds": { + "minlat": 40.7188243, + "minlon": -74.0052652, + "maxlat": 40.7190054, + "maxlon": -74.0052023 + }, + "nodes": [ + 11495443326, + 11495443576, + 11495443327, + 11495443328, + 11495443329, + 11495443330, + 11495443331, + 11495443575, + 11495443332, + 11495443333, + 11495443334, + 11495443335, + 11495443326 + ], + "geometry": [ + { "lat": 40.7190054, "lon": -74.0052450 }, + { "lat": 40.7189963, "lon": -74.0052454 }, + { "lat": 40.7189404, "lon": -74.0052509 }, + { "lat": 40.7188264, "lon": -74.0052652 }, + { "lat": 40.7188243, "lon": -74.0052274 }, + { "lat": 40.7188265, "lon": -74.0052215 }, + { "lat": 40.7188322, "lon": -74.0052193 }, + { "lat": 40.7189703, "lon": -74.0052023 }, + { "lat": 40.7189792, "lon": -74.0052029 }, + { "lat": 40.7189873, "lon": -74.0052045 }, + { "lat": 40.7189959, "lon": -74.0052117 }, + { "lat": 40.7190012, "lon": -74.0052222 }, + { "lat": 40.7190054, "lon": -74.0052450 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237616730, + "bounds": { + "minlat": 40.7189942, + "minlon": -74.0049778, + "maxlat": 40.7191673, + "maxlon": -74.0048410 + }, + "nodes": [ + 2565708502, + 11495443358, + 11495443342, + 11495443343, + 11495443344, + 11495443345, + 2565708492, + 2565708491, + 2565708494, + 2565708485, + 11495443341, + 11495443340, + 2565708486, + 2565708483, + 11495443357, + 2565708488, + 2565708490, + 11495443338, + 11495443339, + 2565708495, + 2565708500, + 2565708502 + ], + "geometry": [ + { "lat": 40.7191673, "lon": -74.0049764 }, + { "lat": 40.7190775, "lon": -74.0049772 }, + { "lat": 40.7190036, "lon": -74.0049778 }, + { "lat": 40.7189967, "lon": -74.0049654 }, + { "lat": 40.7189942, "lon": -74.0049482 }, + { "lat": 40.7189967, "lon": -74.0049356 }, + { "lat": 40.7191248, "lon": -74.0048410 }, + { "lat": 40.7191216, "lon": -74.0048777 }, + { "lat": 40.7191276, "lon": -74.0048911 }, + { "lat": 40.7191072, "lon": -74.0049075 }, + { "lat": 40.7191047, "lon": -74.0049130 }, + { "lat": 40.7191042, "lon": -74.0049216 }, + { "lat": 40.7191012, "lon": -74.0049283 }, + { "lat": 40.7190960, "lon": -74.0049321 }, + { "lat": 40.7191065, "lon": -74.0049542 }, + { "lat": 40.7191164, "lon": -74.0049751 }, + { "lat": 40.7191209, "lon": -74.0049719 }, + { "lat": 40.7191259, "lon": -74.0049711 }, + { "lat": 40.7191316, "lon": -74.0049736 }, + { "lat": 40.7191378, "lon": -74.0049737 }, + { "lat": 40.7191578, "lon": -74.0049563 }, + { "lat": 40.7191673, "lon": -74.0049764 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "layer": "-1", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237627096, + "bounds": { + "minlat": 40.7182984, + "minlon": -74.0052833, + "maxlat": 40.7185737, + "maxlon": -74.0051211 + }, + "nodes": [ + 11495531222, + 11495531223, + 11495531224, + 11495531225, + 11495531256, + 11495531226, + 11495531227, + 11495531228, + 11495531257, + 11495531229, + 11495531230, + 11495531231, + 11495531232, + 11495531233, + 5804843326, + 11495443569, + 11495443570, + 5804843338, + 11495443571, + 11495443368, + 5804843336, + 11495531222 + ], + "geometry": [ + { "lat": 40.7185737, "lon": -74.0051457 }, + { "lat": 40.7185465, "lon": -74.0051808 }, + { "lat": 40.7185315, "lon": -74.0051918 }, + { "lat": 40.7183181, "lon": -74.0052806 }, + { "lat": 40.7183102, "lon": -74.0052833 }, + { "lat": 40.7183026, "lon": -74.0052833 }, + { "lat": 40.7182984, "lon": -74.0052781 }, + { "lat": 40.7182987, "lon": -74.0052683 }, + { "lat": 40.7183023, "lon": -74.0052608 }, + { "lat": 40.7183065, "lon": -74.0052563 }, + { "lat": 40.7184445, "lon": -74.0051485 }, + { "lat": 40.7184604, "lon": -74.0051372 }, + { "lat": 40.7184793, "lon": -74.0051294 }, + { "lat": 40.7185671, "lon": -74.0051211 }, + { "lat": 40.7185314, "lon": -74.0051425 }, + { "lat": 40.7185250, "lon": -74.0051472 }, + { "lat": 40.7185234, "lon": -74.0051519 }, + { "lat": 40.7185242, "lon": -74.0051567 }, + { "lat": 40.7185257, "lon": -74.0051601 }, + { "lat": 40.7185291, "lon": -74.0051611 }, + { "lat": 40.7185357, "lon": -74.0051593 }, + { "lat": 40.7185737, "lon": -74.0051457 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1237664118, + "bounds": { + "minlat": 40.7153073, + "minlon": -73.9955146, + "maxlat": 40.7157617, + "maxlon": -73.9951782 + }, + "nodes": [ + 11495926889, + 11495926914, + 11495926915, + 11495926916, + 11495926917, + 11495926918, + 5799584473, + 11495926912, + 11495926911, + 11495926910, + 11495926909, + 11495926908, + 11495926907, + 11495926906, + 11495926905, + 11495926902, + 11495926900, + 11495926901, + 11495926889 + ], + "geometry": [ + { "lat": 40.7157617, "lon": -73.9954825 }, + { "lat": 40.7157239, "lon": -73.9954506 }, + { "lat": 40.7156773, "lon": -73.9954111 }, + { "lat": 40.7156068, "lon": -73.9953649 }, + { "lat": 40.7154649, "lon": -73.9952746 }, + { "lat": 40.7153168, "lon": -73.9951782 }, + { "lat": 40.7153073, "lon": -73.9952078 }, + { "lat": 40.7153342, "lon": -73.9952660 }, + { "lat": 40.7153586, "lon": -73.9953172 }, + { "lat": 40.7153886, "lon": -73.9953653 }, + { "lat": 40.7154195, "lon": -73.9954082 }, + { "lat": 40.7154541, "lon": -73.9954424 }, + { "lat": 40.7154922, "lon": -73.9954695 }, + { "lat": 40.7155382, "lon": -73.9954955 }, + { "lat": 40.7155845, "lon": -73.9955103 }, + { "lat": 40.7156216, "lon": -73.9955146 }, + { "lat": 40.7156793, "lon": -73.9955108 }, + { "lat": 40.7157327, "lon": -73.9954963 }, + { "lat": 40.7157617, "lon": -73.9954825 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1237664127, + "bounds": { + "minlat": 40.7153501, + "minlon": -73.9952958, + "maxlat": 40.7158215, + "maxlon": -73.9950194 + }, + "nodes": [ + 11495928431, + 11495928432, + 11495928397, + 11495928396, + 11495928395, + 11495928394, + 5799589352, + 11495926930, + 11495926931, + 11495926925, + 11495926926, + 11495926927, + 11495926928, + 11495926929, + 11495926924, + 5799589786, + 11495928431 + ], + "geometry": [ + { "lat": 40.7153501, "lon": -73.9950749 }, + { "lat": 40.7156448, "lon": -73.9952006 }, + { "lat": 40.7158215, "lon": -73.9952958 }, + { "lat": 40.7158057, "lon": -73.9952474 }, + { "lat": 40.7157840, "lon": -73.9951986 }, + { "lat": 40.7157596, "lon": -73.9951599 }, + { "lat": 40.7157252, "lon": -73.9951187 }, + { "lat": 40.7156930, "lon": -73.9950853 }, + { "lat": 40.7156525, "lon": -73.9950555 }, + { "lat": 40.7156101, "lon": -73.9950351 }, + { "lat": 40.7155869, "lon": -73.9950269 }, + { "lat": 40.7155568, "lon": -73.9950208 }, + { "lat": 40.7155166, "lon": -73.9950194 }, + { "lat": 40.7154702, "lon": -73.9950210 }, + { "lat": 40.7154259, "lon": -73.9950292 }, + { "lat": 40.7153591, "lon": -73.9950470 }, + { "lat": 40.7153501, "lon": -73.9950749 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237664130, + "bounds": { + "minlat": 40.7158076, + "minlon": -73.9953675, + "maxlat": 40.7159490, + "maxlon": -73.9950464 + }, + "nodes": [ + 5799589765, + 11495928460, + 11495928461, + 11495928462, + 11495928467, + 11495928463, + 11495928464, + 11495928465, + 11495928466, + 11495926943, + 5799589773, + 11495926936, + 5799589756, + 5159737090, + 11495928398, + 11495928401, + 11495928400, + 11495928399, + 5799589765 + ], + "geometry": [ + { "lat": 40.7159049, "lon": -73.9953435 }, + { "lat": 40.7159419, "lon": -73.9953655 }, + { "lat": 40.7159474, "lon": -73.9953675 }, + { "lat": 40.7159490, "lon": -73.9953638 }, + { "lat": 40.7158809, "lon": -73.9951402 }, + { "lat": 40.7158773, "lon": -73.9951285 }, + { "lat": 40.7158653, "lon": -73.9950990 }, + { "lat": 40.7158503, "lon": -73.9950781 }, + { "lat": 40.7158277, "lon": -73.9950554 }, + { "lat": 40.7158076, "lon": -73.9950464 }, + { "lat": 40.7158194, "lon": -73.9950641 }, + { "lat": 40.7158370, "lon": -73.9950970 }, + { "lat": 40.7158510, "lon": -73.9951313 }, + { "lat": 40.7158579, "lon": -73.9951527 }, + { "lat": 40.7159160, "lon": -73.9953095 }, + { "lat": 40.7159208, "lon": -73.9953266 }, + { "lat": 40.7159189, "lon": -73.9953393 }, + { "lat": 40.7159126, "lon": -73.9953447 }, + { "lat": 40.7159049, "lon": -73.9953435 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237664135, + "bounds": { + "minlat": 40.7156773, + "minlon": -73.9960327, + "maxlat": 40.7161903, + "maxlon": -73.9954111 + }, + "nodes": [ + 5799584479, + 11495928494, + 11495928495, + 11495928496, + 11495928497, + 11495928498, + 11495928499, + 11495928500, + 5799584480, + 11495928501, + 11495928502, + 11495928503, + 11495928504, + 11495928505, + 11495928506, + 11495928507, + 11495926915, + 11495926914, + 11495926889, + 5799584472, + 11495926888, + 5799584474, + 5799584476, + 5799584478, + 5799584483, + 10606723132, + 5799584481, + 11495926885, + 11495926884, + 5799584475, + 11495926887, + 11495926886, + 5799584479 + ], + "geometry": [ + { "lat": 40.7160829, "lon": -73.9960267 }, + { "lat": 40.7160916, "lon": -73.9960308 }, + { "lat": 40.7161072, "lon": -73.9960327 }, + { "lat": 40.7161226, "lon": -73.9960300 }, + { "lat": 40.7161845, "lon": -73.9959906 }, + { "lat": 40.7161893, "lon": -73.9959815 }, + { "lat": 40.7161903, "lon": -73.9959727 }, + { "lat": 40.7161868, "lon": -73.9959601 }, + { "lat": 40.7161721, "lon": -73.9959280 }, + { "lat": 40.7161483, "lon": -73.9958809 }, + { "lat": 40.7161085, "lon": -73.9958085 }, + { "lat": 40.7160628, "lon": -73.9957382 }, + { "lat": 40.7160068, "lon": -73.9956648 }, + { "lat": 40.7159625, "lon": -73.9956151 }, + { "lat": 40.7158915, "lon": -73.9955526 }, + { "lat": 40.7158028, "lon": -73.9954898 }, + { "lat": 40.7156773, "lon": -73.9954111 }, + { "lat": 40.7157239, "lon": -73.9954506 }, + { "lat": 40.7157617, "lon": -73.9954825 }, + { "lat": 40.7158384, "lon": -73.9955612 }, + { "lat": 40.7159066, "lon": -73.9956444 }, + { "lat": 40.7159716, "lon": -73.9957350 }, + { "lat": 40.7160392, "lon": -73.9958330 }, + { "lat": 40.7160780, "lon": -73.9958946 }, + { "lat": 40.7160990, "lon": -73.9959439 }, + { "lat": 40.7161042, "lon": -73.9959658 }, + { "lat": 40.7161063, "lon": -73.9959871 }, + { "lat": 40.7161051, "lon": -73.9960014 }, + { "lat": 40.7161026, "lon": -73.9960111 }, + { "lat": 40.7160997, "lon": -73.9960179 }, + { "lat": 40.7160951, "lon": -73.9960237 }, + { "lat": 40.7160891, "lon": -73.9960270 }, + { "lat": 40.7160829, "lon": -73.9960267 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237664144, + "bounds": { + "minlat": 40.7156523, + "minlon": -73.9943671, + "maxlat": 40.7157068, + "maxlon": -73.9942994 + }, + "nodes": [ + 11495928559, + 11495928560, + 11495928561, + 11495928562, + 11495928572, + 11495928563, + 11495928564, + 11495928565, + 11495928566, + 11495928567, + 11495928568, + 11495928571, + 11495928569, + 11495928570, + 11495928559 + ], + "geometry": [ + { "lat": 40.7157049, "lon": -73.9943499 }, + { "lat": 40.7156769, "lon": -73.9943668 }, + { "lat": 40.7156713, "lon": -73.9943671 }, + { "lat": 40.7156668, "lon": -73.9943625 }, + { "lat": 40.7156604, "lon": -73.9943461 }, + { "lat": 40.7156534, "lon": -73.9943284 }, + { "lat": 40.7156523, "lon": -73.9943207 }, + { "lat": 40.7156546, "lon": -73.9943157 }, + { "lat": 40.7156837, "lon": -73.9942994 }, + { "lat": 40.7156888, "lon": -73.9942995 }, + { "lat": 40.7156943, "lon": -73.9943050 }, + { "lat": 40.7157005, "lon": -73.9943209 }, + { "lat": 40.7157061, "lon": -73.9943353 }, + { "lat": 40.7157068, "lon": -73.9943427 }, + { "lat": 40.7157049, "lon": -73.9943499 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1237664174, + "bounds": { + "minlat": 40.7152149, + "minlon": -73.9947382, + "maxlat": 40.7156054, + "maxlon": -73.9944011 + }, + "nodes": [ + 11495928669, + 6369576672, + 11495928670, + 11495928695, + 11495928696, + 11495928697, + 11495928698, + 11495928699, + 11495928720, + 11495928719, + 11495928718, + 11495928717, + 11495928716, + 11495928715, + 11495928714, + 11495928713, + 11495928712, + 11495928702, + 11495928709, + 11495928630, + 11495928639, + 11495928640, + 11495928641, + 11495928633, + 11495928634, + 11495928635, + 11495928636, + 11495928637, + 11495928638, + 11495928642, + 11495928646, + 11495928647, + 11495928648, + 11495928649, + 11495928624, + 11495928650, + 11495928651, + 11495928652, + 11495928653, + 11495928654, + 11495928755, + 11495928645, + 11495928756, + 11495928757, + 11495928758, + 11495928749, + 11495928665, + 11495928666, + 7132331523, + 11495928667, + 11495928668, + 11495928658, + 7132331522, + 11495928659, + 11495928694, + 11495928743, + 11495928742, + 11495928741, + 11495928740, + 11495928739, + 11495928738, + 11495928737, + 11495928736, + 11495928735, + 11495928734, + 11495928733, + 11495928732, + 11495928731, + 11495928730, + 11495928729, + 11495928728, + 11495928727, + 11495928669 + ], + "geometry": [ + { "lat": 40.7152287, "lon": -73.9946427 }, + { "lat": 40.7152215, "lon": -73.9946472 }, + { "lat": 40.7152149, "lon": -73.9946502 }, + { "lat": 40.7152225, "lon": -73.9946810 }, + { "lat": 40.7152579, "lon": -73.9946911 }, + { "lat": 40.7152875, "lon": -73.9947036 }, + { "lat": 40.7153244, "lon": -73.9947185 }, + { "lat": 40.7153605, "lon": -73.9947287 }, + { "lat": 40.7153844, "lon": -73.9947263 }, + { "lat": 40.7154053, "lon": -73.9947214 }, + { "lat": 40.7154224, "lon": -73.9947131 }, + { "lat": 40.7154423, "lon": -73.9946987 }, + { "lat": 40.7154595, "lon": -73.9946936 }, + { "lat": 40.7154782, "lon": -73.9946942 }, + { "lat": 40.7154903, "lon": -73.9947003 }, + { "lat": 40.7154971, "lon": -73.9947084 }, + { "lat": 40.7154980, "lon": -73.9947261 }, + { "lat": 40.7154957, "lon": -73.9947366 }, + { "lat": 40.7155298, "lon": -73.9947371 }, + { "lat": 40.7155921, "lon": -73.9947382 }, + { "lat": 40.7155900, "lon": -73.9947155 }, + { "lat": 40.7155823, "lon": -73.9947118 }, + { "lat": 40.7155717, "lon": -73.9947027 }, + { "lat": 40.7155596, "lon": -73.9946859 }, + { "lat": 40.7155543, "lon": -73.9946699 }, + { "lat": 40.7155530, "lon": -73.9946471 }, + { "lat": 40.7155568, "lon": -73.9946254 }, + { "lat": 40.7155664, "lon": -73.9946065 }, + { "lat": 40.7155798, "lon": -73.9945946 }, + { "lat": 40.7156054, "lon": -73.9945811 }, + { "lat": 40.7155876, "lon": -73.9945209 }, + { "lat": 40.7155722, "lon": -73.9945032 }, + { "lat": 40.7155587, "lon": -73.9944931 }, + { "lat": 40.7155470, "lon": -73.9944887 }, + { "lat": 40.7155420, "lon": -73.9944697 }, + { "lat": 40.7155391, "lon": -73.9944584 }, + { "lat": 40.7155465, "lon": -73.9944503 }, + { "lat": 40.7155529, "lon": -73.9944365 }, + { "lat": 40.7155549, "lon": -73.9944200 }, + { "lat": 40.7155552, "lon": -73.9944027 }, + { "lat": 40.7155390, "lon": -73.9944011 }, + { "lat": 40.7155269, "lon": -73.9944017 }, + { "lat": 40.7155192, "lon": -73.9944021 }, + { "lat": 40.7154957, "lon": -73.9944100 }, + { "lat": 40.7154754, "lon": -73.9944247 }, + { "lat": 40.7154614, "lon": -73.9944445 }, + { "lat": 40.7154532, "lon": -73.9944655 }, + { "lat": 40.7154900, "lon": -73.9944897 }, + { "lat": 40.7154934, "lon": -73.9944978 }, + { "lat": 40.7154980, "lon": -73.9945135 }, + { "lat": 40.7154900, "lon": -73.9945654 }, + { "lat": 40.7154687, "lon": -73.9945672 }, + { "lat": 40.7154589, "lon": -73.9945240 }, + { "lat": 40.7153760, "lon": -73.9945628 }, + { "lat": 40.7153000, "lon": -73.9946041 }, + { "lat": 40.7152670, "lon": -73.9946220 }, + { "lat": 40.7152734, "lon": -73.9946403 }, + { "lat": 40.7152872, "lon": -73.9946556 }, + { "lat": 40.7153046, "lon": -73.9946610 }, + { "lat": 40.7153312, "lon": -73.9946580 }, + { "lat": 40.7153589, "lon": -73.9946587 }, + { "lat": 40.7153825, "lon": -73.9946688 }, + { "lat": 40.7153978, "lon": -73.9946809 }, + { "lat": 40.7154058, "lon": -73.9946955 }, + { "lat": 40.7153916, "lon": -73.9947015 }, + { "lat": 40.7153671, "lon": -73.9947054 }, + { "lat": 40.7153445, "lon": -73.9947021 }, + { "lat": 40.7153232, "lon": -73.9946935 }, + { "lat": 40.7152998, "lon": -73.9946836 }, + { "lat": 40.7152612, "lon": -73.9946690 }, + { "lat": 40.7152379, "lon": -73.9946608 }, + { "lat": 40.7152324, "lon": -73.9946541 }, + { "lat": 40.7152287, "lon": -73.9946427 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237670402, + "bounds": { + "minlat": 40.7162686, + "minlon": -73.9969875, + "maxlat": 40.7165538, + "maxlon": -73.9960588 + }, + "nodes": [ + 11496014207, + 11496014237, + 11496014208, + 11496014211, + 11496014215, + 42440804 + ], + "geometry": [ + { "lat": 40.7162686, "lon": -73.9960588 }, + { "lat": 40.7163210, "lon": -73.9962058 }, + { "lat": 40.7165436, "lon": -73.9968298 }, + { "lat": 40.7165535, "lon": -73.9968701 }, + { "lat": 40.7165538, "lon": -73.9969156 }, + { "lat": 40.7165497, "lon": -73.9969875 } + ], + "tags": { + "bicycle": "yes", + "expressway": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:ko": "커낼 스트리트", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1237670404, + "bounds": { + "minlat": 40.7162701, + "minlon": -73.9963156, + "maxlat": 40.7163205, + "maxlon": -73.9961966 + }, + "nodes": [ + 11496014220, + 11496014236, + 11496014221, + 11496014222, + 11496014234, + 11496014223, + 11496014224, + 11496014225, + 11496014226, + 11496014235, + 11496014227, + 11496014228, + 11496014233, + 11496014229, + 11496014230, + 11496014231, + 11496014232, + 11496014220 + ], + "geometry": [ + { "lat": 40.7163193, "lon": -73.9962964 }, + { "lat": 40.7162954, "lon": -73.9962269 }, + { "lat": 40.7162873, "lon": -73.9962034 }, + { "lat": 40.7162836, "lon": -73.9961982 }, + { "lat": 40.7162805, "lon": -73.9961966 }, + { "lat": 40.7162759, "lon": -73.9961979 }, + { "lat": 40.7162719, "lon": -73.9962012 }, + { "lat": 40.7162701, "lon": -73.9962069 }, + { "lat": 40.7162706, "lon": -73.9962138 }, + { "lat": 40.7162796, "lon": -73.9962399 }, + { "lat": 40.7163023, "lon": -73.9963055 }, + { "lat": 40.7163052, "lon": -73.9963118 }, + { "lat": 40.7163086, "lon": -73.9963149 }, + { "lat": 40.7163125, "lon": -73.9963156 }, + { "lat": 40.7163175, "lon": -73.9963130 }, + { "lat": 40.7163200, "lon": -73.9963081 }, + { "lat": 40.7163205, "lon": -73.9963021 }, + { "lat": 40.7163193, "lon": -73.9962964 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1237670414, + "bounds": { + "minlat": 40.7158038, + "minlon": -73.9961146, + "maxlat": 40.7159262, + "maxlon": -73.9959562 + }, + "nodes": [ + 8307641595, + 11496014283, + 5799589790, + 11496014263, + 11496014262, + 11496014261, + 5799589762, + 11496014259, + 11496014260, + 5799589777, + 5799589767, + 11496014280, + 11496014281, + 8307641595 + ], + "geometry": [ + { "lat": 40.7159262, "lon": -73.9960407 }, + { "lat": 40.7159161, "lon": -73.9960386 }, + { "lat": 40.7158038, "lon": -73.9959562 }, + { "lat": 40.7158108, "lon": -73.9959813 }, + { "lat": 40.7158173, "lon": -73.9960146 }, + { "lat": 40.7158222, "lon": -73.9960569 }, + { "lat": 40.7158229, "lon": -73.9960982 }, + { "lat": 40.7158233, "lon": -73.9961073 }, + { "lat": 40.7158272, "lon": -73.9961133 }, + { "lat": 40.7158334, "lon": -73.9961146 }, + { "lat": 40.7158405, "lon": -73.9961120 }, + { "lat": 40.7159197, "lon": -73.9960593 }, + { "lat": 40.7159241, "lon": -73.9960507 }, + { "lat": 40.7159262, "lon": -73.9960407 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1237708666, + "bounds": { + "minlat": 40.7142973, + "minlon": -73.9946751, + "maxlat": 40.7156028, + "maxlon": -73.9942412 + }, + "nodes": [ + 11495928523, + 6369576680, + 11496497605, + 11496497606, + 11496497607, + 11495928573, + 11496497608, + 11496497609, + 11496497610, + 11496497611, + 11496497612, + 11496497613, + 11496497614, + 11496497615, + 11496497616, + 11496497617, + 11496497618, + 11496497619, + 11496497620, + 11496497621, + 11496497622, + 11496497623, + 11496497624, + 11496497625, + 11496497626, + 11496532005, + 11495928383, + 11495928384, + 11495928385, + 11495928386, + 11495928387, + 11495928388, + 11495928389, + 11495928390, + 11495928391, + 7132331528, + 11495928670, + 11495928691, + 11495928692, + 11495928693, + 11495928679, + 6369576670, + 11495928694, + 11495928659, + 11495928660, + 11495928661, + 11495928662, + 11495928663, + 11495928664, + 11495928665, + 11495928749, + 11495928758, + 11495928757, + 11495928756, + 11495928645, + 11495928755, + 11495928654, + 11495928655, + 11495928656, + 11495928522, + 11495928523 + ], + "geometry": [ + { "lat": 40.7156028, "lon": -73.9944002 }, + { "lat": 40.7155961, "lon": -73.9943863 }, + { "lat": 40.7155866, "lon": -73.9943691 }, + { "lat": 40.7155755, "lon": -73.9943556 }, + { "lat": 40.7155616, "lon": -73.9943439 }, + { "lat": 40.7155521, "lon": -73.9943405 }, + { "lat": 40.7155422, "lon": -73.9943398 }, + { "lat": 40.7155322, "lon": -73.9943450 }, + { "lat": 40.7154119, "lon": -73.9944063 }, + { "lat": 40.7154062, "lon": -73.9944144 }, + { "lat": 40.7153932, "lon": -73.9944415 }, + { "lat": 40.7153854, "lon": -73.9944497 }, + { "lat": 40.7151108, "lon": -73.9945878 }, + { "lat": 40.7150847, "lon": -73.9945996 }, + { "lat": 40.7150603, "lon": -73.9946039 }, + { "lat": 40.7150347, "lon": -73.9946014 }, + { "lat": 40.7150043, "lon": -73.9945955 }, + { "lat": 40.7149793, "lon": -73.9945852 }, + { "lat": 40.7143431, "lon": -73.9942427 }, + { "lat": 40.7143292, "lon": -73.9942412 }, + { "lat": 40.7143197, "lon": -73.9942429 }, + { "lat": 40.7143098, "lon": -73.9942533 }, + { "lat": 40.7143034, "lon": -73.9942675 }, + { "lat": 40.7142992, "lon": -73.9942902 }, + { "lat": 40.7142973, "lon": -73.9943227 }, + { "lat": 40.7143208, "lon": -73.9943358 }, + { "lat": 40.7146678, "lon": -73.9945290 }, + { "lat": 40.7147161, "lon": -73.9945231 }, + { "lat": 40.7147486, "lon": -73.9945186 }, + { "lat": 40.7147808, "lon": -73.9945215 }, + { "lat": 40.7148035, "lon": -73.9945305 }, + { "lat": 40.7150165, "lon": -73.9946504 }, + { "lat": 40.7150556, "lon": -73.9946674 }, + { "lat": 40.7150911, "lon": -73.9946734 }, + { "lat": 40.7151266, "lon": -73.9946740 }, + { "lat": 40.7151691, "lon": -73.9946751 }, + { "lat": 40.7152149, "lon": -73.9946502 }, + { "lat": 40.7152089, "lon": -73.9946289 }, + { "lat": 40.7152348, "lon": -73.9946070 }, + { "lat": 40.7152645, "lon": -73.9945860 }, + { "lat": 40.7152888, "lon": -73.9945690 }, + { "lat": 40.7152941, "lon": -73.9945856 }, + { "lat": 40.7153000, "lon": -73.9946041 }, + { "lat": 40.7153760, "lon": -73.9945628 }, + { "lat": 40.7154043, "lon": -73.9945417 }, + { "lat": 40.7154188, "lon": -73.9945255 }, + { "lat": 40.7154310, "lon": -73.9945074 }, + { "lat": 40.7154406, "lon": -73.9944887 }, + { "lat": 40.7154468, "lon": -73.9944725 }, + { "lat": 40.7154532, "lon": -73.9944655 }, + { "lat": 40.7154614, "lon": -73.9944445 }, + { "lat": 40.7154754, "lon": -73.9944247 }, + { "lat": 40.7154957, "lon": -73.9944100 }, + { "lat": 40.7155192, "lon": -73.9944021 }, + { "lat": 40.7155269, "lon": -73.9944017 }, + { "lat": 40.7155390, "lon": -73.9944011 }, + { "lat": 40.7155552, "lon": -73.9944027 }, + { "lat": 40.7155651, "lon": -73.9944016 }, + { "lat": 40.7155796, "lon": -73.9944051 }, + { "lat": 40.7155880, "lon": -73.9944089 }, + { "lat": 40.7156028, "lon": -73.9944002 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1237807301, + "bounds": { + "minlat": 40.7119783, + "minlon": -73.9999307, + "maxlat": 40.7120018, + "maxlon": -73.9995273 + }, + "nodes": [ + 11497487858, + 11497504777, + 11497487863, + 11497487859, + 11497504772, + 11497487860, + 11497487861, + 11497487862 + ], + "geometry": [ + { "lat": 40.7119830, "lon": -73.9999307 }, + { "lat": 40.7119971, "lon": -73.9997001 }, + { "lat": 40.7120000, "lon": -73.9996535 }, + { "lat": 40.7120018, "lon": -73.9996144 }, + { "lat": 40.7120014, "lon": -73.9996031 }, + { "lat": 40.7120005, "lon": -73.9995799 }, + { "lat": 40.7119950, "lon": -73.9995615 }, + { "lat": 40.7119783, "lon": -73.9995273 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1237988942, + "bounds": { + "minlat": 40.8042352, + "minlon": -74.0185519, + "maxlat": 40.8044317, + "maxlon": -74.0184303 + }, + "nodes": [ + 11499470068, + 11499493869, + 11499493877, + 11499493870 + ], + "geometry": [ + { "lat": 40.8042352, "lon": -74.0185303 }, + { "lat": 40.8042962, "lon": -74.0185519 }, + { "lat": 40.8043128, "lon": -74.0185356 }, + { "lat": 40.8044317, "lon": -74.0184303 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1237988943, + "bounds": { + "minlat": 40.8041918, + "minlon": -74.0187340, + "maxlat": 40.8042919, + "maxlon": -74.0186524 + }, + "nodes": [ + 11499493871, + 11499493872 + ], + "geometry": [ + { "lat": 40.8042919, "lon": -74.0186524 }, + { "lat": 40.8041918, "lon": -74.0187340 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1237988944, + "bounds": { + "minlat": 40.8041615, + "minlon": -74.0186685, + "maxlat": 40.8042601, + "maxlon": -74.0185841 + }, + "nodes": [ + 11499493875, + 11499493876 + ], + "geometry": [ + { "lat": 40.8041615, "lon": -74.0186685 }, + { "lat": 40.8042601, "lon": -74.0185841 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1237988945, + "bounds": { + "minlat": 40.8041774, + "minlon": -74.0187449, + "maxlat": 40.8041918, + "maxlon": -74.0187340 + }, + "nodes": [ + 11499493872, + 11499493873 + ], + "geometry": [ + { "lat": 40.8041918, "lon": -74.0187340 }, + { "lat": 40.8041774, "lon": -74.0187449 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1237988946, + "bounds": { + "minlat": 40.8041486, + "minlon": -74.0186792, + "maxlat": 40.8041615, + "maxlon": -74.0186685 + }, + "nodes": [ + 11499493874, + 11499493875 + ], + "geometry": [ + { "lat": 40.8041486, "lon": -74.0186792 }, + { "lat": 40.8041615, "lon": -74.0186685 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1237988947, + "bounds": { + "minlat": 40.8041248, + "minlon": -74.0188323, + "maxlat": 40.8042154, + "maxlon": -74.0186147 + }, + "nodes": [ + 11499470065, + 13525592753, + 11499493873, + 11499493874, + 11499470066, + 11499470067 + ], + "geometry": [ + { "lat": 40.8042154, "lon": -74.0188323 }, + { "lat": 40.8041928, "lon": -74.0187802 }, + { "lat": 40.8041774, "lon": -74.0187449 }, + { "lat": 40.8041486, "lon": -74.0186792 }, + { "lat": 40.8041248, "lon": -74.0186239 }, + { "lat": 40.8041367, "lon": -74.0186147 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1237988948, + "bounds": { + "minlat": 40.8041367, + "minlon": -74.0186147, + "maxlat": 40.8042352, + "maxlon": -74.0185303 + }, + "nodes": [ + 11499470067, + 11499470068 + ], + "geometry": [ + { "lat": 40.8041367, "lon": -74.0186147 }, + { "lat": 40.8042352, "lon": -74.0185303 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1237988949, + "bounds": { + "minlat": 40.8042601, + "minlon": -74.0185841, + "maxlat": 40.8042962, + "maxlon": -74.0185519 + }, + "nodes": [ + 11499493876, + 11499493869 + ], + "geometry": [ + { "lat": 40.8042601, "lon": -74.0185841 }, + { "lat": 40.8042962, "lon": -74.0185519 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1237988950, + "bounds": { + "minlat": 40.8042919, + "minlon": -74.0186524, + "maxlat": 40.8042962, + "maxlon": -74.0185519 + }, + "nodes": [ + 11499493869, + 11499493871 + ], + "geometry": [ + { "lat": 40.8042962, "lon": -74.0185519 }, + { "lat": 40.8042919, "lon": -74.0186524 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1237988951, + "bounds": { + "minlat": 40.8042756, + "minlon": -74.0185356, + "maxlat": 40.8043985, + "maxlon": -74.0183451 + }, + "nodes": [ + 11499493877, + 11499493878, + 11499493879 + ], + "geometry": [ + { "lat": 40.8043128, "lon": -74.0185356 }, + { "lat": 40.8042756, "lon": -74.0184480 }, + { "lat": 40.8043985, "lon": -74.0183451 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1237990764, + "bounds": { + "minlat": 40.7643549, + "minlon": -73.9412556, + "maxlat": 40.7646122, + "maxlon": -73.9409040 + }, + "nodes": [ + 11499501734, + 11499501735, + 11499501736, + 11499501737, + 11499501738, + 11499501739 + ], + "geometry": [ + { "lat": 40.7645220, "lon": -73.9409040 }, + { "lat": 40.7645589, "lon": -73.9410008 }, + { "lat": 40.7646122, "lon": -73.9411504 }, + { "lat": 40.7644434, "lon": -73.9412556 }, + { "lat": 40.7643914, "lon": -73.9411078 }, + { "lat": 40.7643549, "lon": -73.9410085 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1238054108, + "bounds": { + "minlat": 40.7639900, + "minlon": -73.9328700, + "maxlat": 40.7641245, + "maxlon": -73.9327413 + }, + "nodes": [ + 1048734622, + 42807567 + ], + "geometry": [ + { "lat": 40.7641245, "lon": -73.9327413 }, + { "lat": 40.7639900, "lon": -73.9328700 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238156663, + "bounds": { + "minlat": 40.7261955, + "minlon": -73.9772986, + "maxlat": 40.7264650, + "maxlon": -73.9770845 + }, + "nodes": [ + 11501059435, + 8309479428, + 42455013 + ], + "geometry": [ + { "lat": 40.7261955, "lon": -73.9772986 }, + { "lat": 40.7264045, "lon": -73.9771293 }, + { "lat": 40.7264650, "lon": -73.9770845 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1238156664, + "bounds": { + "minlat": 40.7264650, + "minlon": -73.9770845, + "maxlat": 40.7267624, + "maxlon": -73.9768747 + }, + "nodes": [ + 42455013, + 8309479427, + 11501059437 + ], + "geometry": [ + { "lat": 40.7264650, "lon": -73.9770845 }, + { "lat": 40.7265185, "lon": -73.9770468 }, + { "lat": 40.7267624, "lon": -73.9768747 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway": "track", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1238156665, + "bounds": { + "minlat": 40.7297709, + "minlon": -73.9747274, + "maxlat": 40.7300024, + "maxlon": -73.9745591 + }, + "nodes": [ + 42437830, + 4161568868, + 1989931107 + ], + "geometry": [ + { "lat": 40.7297709, "lon": -73.9747274 }, + { "lat": 40.7298311, "lon": -73.9746836 }, + { "lat": 40.7300024, "lon": -73.9745591 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1238156666, + "bounds": { + "minlat": 40.7284433, + "minlon": -73.9756824, + "maxlat": 40.7288087, + "maxlon": -73.9754271 + }, + "nodes": [ + 42440754, + 4161568819, + 1989931109 + ], + "geometry": [ + { "lat": 40.7284433, "lon": -73.9756824 }, + { "lat": 40.7285344, "lon": -73.9756265 }, + { "lat": 40.7288087, "lon": -73.9754271 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "track", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1238178928, + "bounds": { + "minlat": 40.7111741, + "minlon": -74.0007998, + "maxlat": 40.7113427, + "maxlon": -74.0006940 + }, + "nodes": [ + 42444293, + 11501440562, + 8279851136, + 42444282 + ], + "geometry": [ + { "lat": 40.7113427, "lon": -74.0007998 }, + { "lat": 40.7112916, "lon": -74.0007724 }, + { "lat": 40.7112437, "lon": -74.0007427 }, + { "lat": 40.7111741, "lon": -74.0006940 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1238240721, + "bounds": { + "minlat": 40.8498495, + "minlon": -73.9693576, + "maxlat": 40.8502072, + "maxlon": -73.9687763 + }, + "nodes": [ + 11502432931, + 11502432932, + 11502432933, + 11502432934 + ], + "geometry": [ + { "lat": 40.8498495, "lon": -73.9688838 }, + { "lat": 40.8499721, "lon": -73.9693576 }, + { "lat": 40.8502072, "lon": -73.9692447 }, + { "lat": 40.8500813, "lon": -73.9687763 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1238240722, + "bounds": { + "minlat": 40.8497166, + "minlon": -73.9688971, + "maxlat": 40.8498208, + "maxlon": -73.9684893 + }, + "nodes": [ + 11502432935, + 11502432936, + 11502432937, + 11502432938, + 11502432939 + ], + "geometry": [ + { "lat": 40.8498208, "lon": -73.9688971 }, + { "lat": 40.8497996, "lon": -73.9688169 }, + { "lat": 40.8497681, "lon": -73.9687342 }, + { "lat": 40.8497166, "lon": -73.9685305 }, + { "lat": 40.8497936, "lon": -73.9684893 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1238240723, + "bounds": { + "minlat": 40.8499647, + "minlon": -73.9688081, + "maxlat": 40.8500129, + "maxlon": -73.9686101 + }, + "nodes": [ + 11502432940, + 11502432941, + 11502432942 + ], + "geometry": [ + { "lat": 40.8500129, "lon": -73.9688081 }, + { "lat": 40.8499923, "lon": -73.9687246 }, + { "lat": 40.8499647, "lon": -73.9686101 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1238244876, + "bounds": { + "minlat": 40.7015034, + "minlon": -73.9860552, + "maxlat": 40.7016045, + "maxlon": -73.9860145 + }, + "nodes": [ + 11502444533, + 11502444534, + 11502444535 + ], + "geometry": [ + { "lat": 40.7015034, "lon": -73.9860180 }, + { "lat": 40.7015603, "lon": -73.9860145 }, + { "lat": 40.7016045, "lon": -73.9860552 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1238244877, + "bounds": { + "minlat": 40.7015109, + "minlon": -73.9862393, + "maxlat": 40.7016059, + "maxlon": -73.9861951 + }, + "nodes": [ + 11502444536, + 11502444537, + 11502444538, + 11502444539 + ], + "geometry": [ + { "lat": 40.7016059, "lon": -73.9861951 }, + { "lat": 40.7015963, "lon": -73.9862163 }, + { "lat": 40.7015685, "lon": -73.9862354 }, + { "lat": 40.7015109, "lon": -73.9862393 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1238244878, + "bounds": { + "minlat": 40.7016045, + "minlon": -73.9861951, + "maxlat": 40.7016059, + "maxlon": -73.9860552 + }, + "nodes": [ + 11502444535, + 11502444536 + ], + "geometry": [ + { "lat": 40.7016045, "lon": -73.9860552 }, + { "lat": 40.7016059, "lon": -73.9861951 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1238304802, + "bounds": { + "minlat": 40.8686022, + "minlon": -73.9592510, + "maxlat": 40.8691975, + "maxlon": -73.9581835 + }, + "nodes": [ + 11503016722, + 11503016728, + 11503016730, + 11503016723, + 8601159331 + ], + "geometry": [ + { "lat": 40.8691975, "lon": -73.9592510 }, + { "lat": 40.8691363, "lon": -73.9591414 }, + { "lat": 40.8687797, "lon": -73.9585030 }, + { "lat": 40.8686135, "lon": -73.9582055 }, + { "lat": 40.8686022, "lon": -73.9581835 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1238304803, + "bounds": { + "minlat": 40.8689139, + "minlon": -73.9589579, + "maxlat": 40.8695022, + "maxlon": -73.9578710 + }, + "nodes": [ + 6339876888, + 11503016721 + ], + "geometry": [ + { "lat": 40.8689139, "lon": -73.9578710 }, + { "lat": 40.8695022, "lon": -73.9589579 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1238304804, + "bounds": { + "minlat": 40.8691975, + "minlon": -73.9592510, + "maxlat": 40.8695022, + "maxlon": -73.9589579 + }, + "nodes": [ + 11503016721, + 11503016724, + 11503016722 + ], + "geometry": [ + { "lat": 40.8695022, "lon": -73.9589579 }, + { "lat": 40.8692197, "lon": -73.9592292 }, + { "lat": 40.8691975, "lon": -73.9592510 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1238304805, + "bounds": { + "minlat": 40.8693177, + "minlon": -73.9594002, + "maxlat": 40.8695966, + "maxlon": -73.9591385 + }, + "nodes": [ + 11503016725, + 11503016726 + ], + "geometry": [ + { "lat": 40.8693177, "lon": -73.9594002 }, + { "lat": 40.8695966, "lon": -73.9591385 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1238304806, + "bounds": { + "minlat": 40.8692197, + "minlon": -73.9594002, + "maxlat": 40.8693177, + "maxlon": -73.9592292 + }, + "nodes": [ + 11503016724, + 11503016725 + ], + "geometry": [ + { "lat": 40.8692197, "lon": -73.9592292 }, + { "lat": 40.8693177, "lon": -73.9594002 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1238304807, + "bounds": { + "minlat": 40.8695022, + "minlon": -73.9591385, + "maxlat": 40.8695966, + "maxlon": -73.9589579 + }, + "nodes": [ + 11503016726, + 11503016721 + ], + "geometry": [ + { "lat": 40.8695966, "lon": -73.9591385 }, + { "lat": 40.8695022, "lon": -73.9589579 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1238304808, + "bounds": { + "minlat": 40.8691363, + "minlon": -73.9591414, + "maxlat": 40.8691655, + "maxlon": -73.9591140 + }, + "nodes": [ + 11503016727, + 11503016728 + ], + "geometry": [ + { "lat": 40.8691655, "lon": -73.9591140 }, + { "lat": 40.8691363, "lon": -73.9591414 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1238304809, + "bounds": { + "minlat": 40.8687797, + "minlon": -73.9585030, + "maxlat": 40.8688114, + "maxlon": -73.9584708 + }, + "nodes": [ + 11503016729, + 11503016730 + ], + "geometry": [ + { "lat": 40.8688114, "lon": -73.9584708 }, + { "lat": 40.8687797, "lon": -73.9585030 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1238342551, + "bounds": { + "minlat": 40.7740084, + "minlon": -73.9812940, + "maxlat": 40.7742310, + "maxlon": -73.9811332 + }, + "nodes": [ + 4557495130, + 9902164240, + 11503371248 + ], + "geometry": [ + { "lat": 40.7742310, "lon": -73.9811332 }, + { "lat": 40.7741804, "lon": -73.9811697 }, + { "lat": 40.7740084, "lon": -73.9812940 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1238347014, + "bounds": { + "minlat": 40.7101928, + "minlon": -74.0014499, + "maxlat": 40.7104266, + "maxlon": -74.0011123 + }, + "nodes": [ + 497412701, + 11503375133, + 11503375154, + 3898690201, + 11503375155, + 3884569931 + ], + "geometry": [ + { "lat": 40.7104266, "lon": -74.0014499 }, + { "lat": 40.7103092, "lon": -74.0013154 }, + { "lat": 40.7102815, "lon": -74.0012806 }, + { "lat": 40.7102618, "lon": -74.0012524 }, + { "lat": 40.7102266, "lon": -74.0011862 }, + { "lat": 40.7101928, "lon": -74.0011123 } + ], + "tags": { + "bicycle": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Avenue of the Finest", + "name:etymology:wikidata": "Q328473", + "name:ko": "애비뉴 오브 더 파이네스트", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238347026, + "bounds": { + "minlat": 40.7117654, + "minlon": -73.9999968, + "maxlat": 40.7117851, + "maxlon": -73.9997076 + }, + "nodes": [ + 4158760599, + 11153640072, + 42437749 + ], + "geometry": [ + { "lat": 40.7117654, "lon": -73.9999968 }, + { "lat": 40.7117721, "lon": -73.9999011 }, + { "lat": 40.7117851, "lon": -73.9997076 } + ], + "tags": { + "bicycle": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1238347028, + "bounds": { + "minlat": 40.7096638, + "minlon": -74.0012900, + "maxlat": 40.7098958, + "maxlon": -74.0010035 + }, + "nodes": [ + 11503416373, + 11503416374, + 11503416375, + 11503416384, + 11503416376, + 11503416377, + 11503416378, + 11503416379, + 11503416380, + 11503416381, + 11503416382, + 11503416383, + 11032985471, + 11032985472, + 11032985473, + 11032985474, + 11032985475, + 11032985476, + 11032985477, + 11032985478, + 11032985479, + 11032985469, + 11032985470, + 11503416385, + 11503416373 + ], + "geometry": [ + { "lat": 40.7097885, "lon": -74.0012900 }, + { "lat": 40.7098751, "lon": -74.0012359 }, + { "lat": 40.7098958, "lon": -74.0012202 }, + { "lat": 40.7098791, "lon": -74.0011995 }, + { "lat": 40.7098091, "lon": -74.0011130 }, + { "lat": 40.7097636, "lon": -74.0010848 }, + { "lat": 40.7097244, "lon": -74.0010541 }, + { "lat": 40.7096638, "lon": -74.0010035 }, + { "lat": 40.7096797, "lon": -74.0010558 }, + { "lat": 40.7096922, "lon": -74.0011090 }, + { "lat": 40.7096959, "lon": -74.0011475 }, + { "lat": 40.7096963, "lon": -74.0011729 }, + { "lat": 40.7097286, "lon": -74.0012139 }, + { "lat": 40.7097261, "lon": -74.0011676 }, + { "lat": 40.7097175, "lon": -74.0011041 }, + { "lat": 40.7097476, "lon": -74.0011305 }, + { "lat": 40.7097878, "lon": -74.0011557 }, + { "lat": 40.7098189, "lon": -74.0011709 }, + { "lat": 40.7098289, "lon": -74.0011729 }, + { "lat": 40.7098329, "lon": -74.0011808 }, + { "lat": 40.7098334, "lon": -74.0011888 }, + { "lat": 40.7098299, "lon": -74.0011974 }, + { "lat": 40.7097598, "lon": -74.0012535 }, + { "lat": 40.7097777, "lon": -74.0012763 }, + { "lat": 40.7097885, "lon": -74.0012900 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238347029, + "bounds": { + "minlat": 40.7099024, + "minlon": -74.0014736, + "maxlat": 40.7100309, + "maxlon": -74.0013530 + }, + "nodes": [ + 8262309517, + 11503416387, + 11503416388, + 11503416395, + 11503416389, + 11503416390, + 11503416391, + 11503416394, + 8262309517 + ], + "geometry": [ + { "lat": 40.7100309, "lon": -74.0013867 }, + { "lat": 40.7099770, "lon": -74.0014270 }, + { "lat": 40.7099328, "lon": -74.0014736 }, + { "lat": 40.7099175, "lon": -74.0014543 }, + { "lat": 40.7099024, "lon": -74.0014349 }, + { "lat": 40.7099482, "lon": -74.0013966 }, + { "lat": 40.7100036, "lon": -74.0013530 }, + { "lat": 40.7100176, "lon": -74.0013702 }, + { "lat": 40.7100309, "lon": -74.0013867 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238347031, + "bounds": { + "minlat": 40.7097057, + "minlon": -74.0016840, + "maxlat": 40.7097517, + "maxlon": -74.0016028 + }, + "nodes": [ + 11503416399, + 11033251584, + 4885904503, + 11503416400, + 11503416401, + 11503416402, + 11503416403, + 11503416399 + ], + "geometry": [ + { "lat": 40.7097517, "lon": -74.0016594 }, + { "lat": 40.7097325, "lon": -74.0016840 }, + { "lat": 40.7097179, "lon": -74.0016569 }, + { "lat": 40.7097074, "lon": -74.0016373 }, + { "lat": 40.7097057, "lon": -74.0016141 }, + { "lat": 40.7097066, "lon": -74.0016028 }, + { "lat": 40.7097350, "lon": -74.0016386 }, + { "lat": 40.7097517, "lon": -74.0016594 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238347033, + "bounds": { + "minlat": 40.7094999, + "minlon": -74.0015026, + "maxlat": 40.7095904, + "maxlon": -74.0014120 + }, + "nodes": [ + 11503416404, + 8262309434, + 11503416412, + 11503416405, + 11503416406, + 11503416407, + 11503416404 + ], + "geometry": [ + { "lat": 40.7095566, "lon": -74.0014120 }, + { "lat": 40.7094999, "lon": -74.0014610 }, + { "lat": 40.7095129, "lon": -74.0014789 }, + { "lat": 40.7095301, "lon": -74.0015026 }, + { "lat": 40.7095904, "lon": -74.0014551 }, + { "lat": 40.7095745, "lon": -74.0014350 }, + { "lat": 40.7095566, "lon": -74.0014120 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238347035, + "bounds": { + "minlat": 40.7100779, + "minlon": -74.0014356, + "maxlat": 40.7101819, + "maxlon": -74.0013124 + }, + "nodes": [ + 11503416418, + 11503416419, + 4885904495, + 11503416420, + 11503416421, + 11503416422, + 11033251576, + 8262309575, + 11503416418 + ], + "geometry": [ + { "lat": 40.7101750, "lon": -74.0014356 }, + { "lat": 40.7101819, "lon": -74.0014273 }, + { "lat": 40.7101222, "lon": -74.0013516 }, + { "lat": 40.7101014, "lon": -74.0013248 }, + { "lat": 40.7100899, "lon": -74.0013158 }, + { "lat": 40.7100779, "lon": -74.0013124 }, + { "lat": 40.7101118, "lon": -74.0013553 }, + { "lat": 40.7101451, "lon": -74.0013976 }, + { "lat": 40.7101750, "lon": -74.0014356 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238347039, + "bounds": { + "minlat": 40.7124150, + "minlon": -74.0048650, + "maxlat": 40.7124645, + "maxlon": -74.0048649 + }, + "nodes": [ + 12554607194, + 11503416426 + ], + "geometry": [ + { "lat": 40.7124645, "lon": -74.0048649 }, + { "lat": 40.7124150, "lon": -74.0048650 } + ], + "tags": { + "bicycle": "no", + "bus": "no", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Centre Street", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:left": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238347040, + "bounds": { + "minlat": 40.7109923, + "minlon": -74.0034757, + "maxlat": 40.7110667, + "maxlon": -74.0034327 + }, + "nodes": [ + 11349528722, + 11503416427, + 11503416428, + 8262309658, + 11503416429, + 11503416430, + 11503416431, + 11503416432, + 11349528722 + ], + "geometry": [ + { "lat": 40.7110667, "lon": -74.0034509 }, + { "lat": 40.7110564, "lon": -74.0034663 }, + { "lat": 40.7110429, "lon": -74.0034757 }, + { "lat": 40.7110307, "lon": -74.0034746 }, + { "lat": 40.7110150, "lon": -74.0034686 }, + { "lat": 40.7109923, "lon": -74.0034445 }, + { "lat": 40.7110518, "lon": -74.0034327 }, + { "lat": 40.7110590, "lon": -74.0034414 }, + { "lat": 40.7110667, "lon": -74.0034509 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238408228, + "bounds": { + "minlat": 40.7141117, + "minlon": -73.9981584, + "maxlat": 40.7148139, + "maxlon": -73.9977019 + }, + "nodes": [ + 11504215731, + 12374690313, + 11504215732, + 11504215733, + 11504215734, + 11504215735, + 11504215736, + 11504215737, + 11504215738, + 11504215739, + 11504215740, + 11504215741, + 11504215742, + 11504215743, + 11504215744, + 11504215745, + 11504215746, + 11504215747, + 11504215748, + 11504215749, + 11504215750, + 11504216870, + 11504215751, + 11504215752, + 11504215753, + 11504215754, + 11504215755, + 11504215756, + 11504215757, + 11504215758, + 11504215759, + 11504215760, + 11504215761, + 11504215762, + 11504215763, + 11504215764, + 11504215765, + 11504215766, + 11504215767, + 11504215768, + 11504216869, + 11504215731 + ], + "geometry": [ + { "lat": 40.7141117, "lon": -73.9977295 }, + { "lat": 40.7141343, "lon": -73.9977162 }, + { "lat": 40.7141606, "lon": -73.9977019 }, + { "lat": 40.7141742, "lon": -73.9977233 }, + { "lat": 40.7141924, "lon": -73.9977446 }, + { "lat": 40.7143207, "lon": -73.9978593 }, + { "lat": 40.7143323, "lon": -73.9978719 }, + { "lat": 40.7143419, "lon": -73.9978873 }, + { "lat": 40.7143663, "lon": -73.9979335 }, + { "lat": 40.7143776, "lon": -73.9979597 }, + { "lat": 40.7144334, "lon": -73.9980913 }, + { "lat": 40.7144401, "lon": -73.9980995 }, + { "lat": 40.7144476, "lon": -73.9981045 }, + { "lat": 40.7144566, "lon": -73.9981054 }, + { "lat": 40.7145776, "lon": -73.9981010 }, + { "lat": 40.7145926, "lon": -73.9980993 }, + { "lat": 40.7146072, "lon": -73.9980941 }, + { "lat": 40.7147820, "lon": -73.9980263 }, + { "lat": 40.7147875, "lon": -73.9980224 }, + { "lat": 40.7147927, "lon": -73.9980131 }, + { "lat": 40.7147943, "lon": -73.9979984 }, + { "lat": 40.7148045, "lon": -73.9980450 }, + { "lat": 40.7148139, "lon": -73.9980873 }, + { "lat": 40.7148070, "lon": -73.9980774 }, + { "lat": 40.7147984, "lon": -73.9980737 }, + { "lat": 40.7147931, "lon": -73.9980744 }, + { "lat": 40.7146020, "lon": -73.9981452 }, + { "lat": 40.7145855, "lon": -73.9981503 }, + { "lat": 40.7145713, "lon": -73.9981528 }, + { "lat": 40.7144427, "lon": -73.9981584 }, + { "lat": 40.7144329, "lon": -73.9981577 }, + { "lat": 40.7144264, "lon": -73.9981519 }, + { "lat": 40.7144212, "lon": -73.9981441 }, + { "lat": 40.7143979, "lon": -73.9981113 }, + { "lat": 40.7143911, "lon": -73.9980973 }, + { "lat": 40.7143453, "lon": -73.9979856 }, + { "lat": 40.7143385, "lon": -73.9979717 }, + { "lat": 40.7143294, "lon": -73.9979559 }, + { "lat": 40.7143046, "lon": -73.9979183 }, + { "lat": 40.7142913, "lon": -73.9979008 }, + { "lat": 40.7142752, "lon": -73.9978845 }, + { "lat": 40.7141117, "lon": -73.9977295 } + ], + "tags": { + "area": "yes", + "bicycle": "designated", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes", + "motor_vehicle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238408237, + "bounds": { + "minlat": 40.7126607, + "minlon": -73.9986312, + "maxlat": 40.7127402, + "maxlon": -73.9984607 + }, + "nodes": [ + 11504216917, + 11504216918, + 11504216919, + 11504216920, + 11504216921, + 11504216922, + 11504216923, + 11504216924, + 11504216925, + 11504216926, + 11504216927, + 11504216928, + 11504216929, + 11504216930, + 11504216931, + 11504216932, + 11504216933, + 11504216934, + 11504216935, + 11504216936, + 11504216916, + 11504216917 + ], + "geometry": [ + { "lat": 40.7126792, "lon": -73.9986312 }, + { "lat": 40.7126666, "lon": -73.9986062 }, + { "lat": 40.7126619, "lon": -73.9985855 }, + { "lat": 40.7126607, "lon": -73.9985599 }, + { "lat": 40.7126645, "lon": -73.9985364 }, + { "lat": 40.7126718, "lon": -73.9985192 }, + { "lat": 40.7126800, "lon": -73.9985063 }, + { "lat": 40.7126836, "lon": -73.9984921 }, + { "lat": 40.7126771, "lon": -73.9984869 }, + { "lat": 40.7126865, "lon": -73.9984607 }, + { "lat": 40.7127402, "lon": -73.9984948 }, + { "lat": 40.7127297, "lon": -73.9985233 }, + { "lat": 40.7127091, "lon": -73.9985099 }, + { "lat": 40.7126961, "lon": -73.9985141 }, + { "lat": 40.7126869, "lon": -73.9985247 }, + { "lat": 40.7126796, "lon": -73.9985416 }, + { "lat": 40.7126764, "lon": -73.9985581 }, + { "lat": 40.7126776, "lon": -73.9985809 }, + { "lat": 40.7126832, "lon": -73.9985979 }, + { "lat": 40.7126939, "lon": -73.9986157 }, + { "lat": 40.7126866, "lon": -73.9986234 }, + { "lat": 40.7126792, "lon": -73.9986312 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238431028, + "bounds": { + "minlat": 40.7127254, + "minlon": -73.9979907, + "maxlat": 40.7128003, + "maxlon": -73.9971151 + }, + "nodes": [ + 42431990, + 6440842970, + 11504054009, + 6139477291, + 42435910 + ], + "geometry": [ + { "lat": 40.7127254, "lon": -73.9979907 }, + { "lat": 40.7127347, "lon": -73.9979069 }, + { "lat": 40.7127396, "lon": -73.9978476 }, + { "lat": 40.7127950, "lon": -73.9971793 }, + { "lat": 40.7128003, "lon": -73.9971151 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Henry Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "헨리 스트리트", + "name:ru": "Хенри-стрит", + "parking:both:restriction:conditional": "no_standing @ (Mo-Sa 07:00-16:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5728794", + "wikipedia": "en:Henry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1238431029, + "bounds": { + "minlat": 40.7128003, + "minlon": -73.9971151, + "maxlat": 40.7128750, + "maxlon": -73.9962516 + }, + "nodes": [ + 11504442619, + 6139477280, + 42435910 + ], + "geometry": [ + { "lat": 40.7128750, "lon": -73.9962516 }, + { "lat": 40.7128048, "lon": -73.9970616 }, + { "lat": 40.7128003, "lon": -73.9971151 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Henry Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "헨리 스트리트", + "name:ru": "Хенри-стрит", + "parking:both:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "sidewalk:both": "separate", + "wikidata": "Q5728794", + "wikipedia": "en:Henry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1238431052, + "bounds": { + "minlat": 40.7117851, + "minlon": -73.9997076, + "maxlat": 40.7119737, + "maxlon": -73.9977759 + }, + "nodes": [ + 42437749, + 11153640074, + 1541937939, + 42437753, + 3884569949, + 11153640076, + 42431992 + ], + "geometry": [ + { "lat": 40.7117851, "lon": -73.9997076 }, + { "lat": 40.7118025, "lon": -73.9995229 }, + { "lat": 40.7118737, "lon": -73.9987412 }, + { "lat": 40.7118790, "lon": -73.9986817 }, + { "lat": 40.7118834, "lon": -73.9986406 }, + { "lat": 40.7119634, "lon": -73.9978742 }, + { "lat": 40.7119737, "lon": -73.9977759 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1238431053, + "bounds": { + "minlat": 40.7120847, + "minlon": -73.9969466, + "maxlat": 40.7121256, + "maxlon": -73.9966100 + }, + "nodes": [ + 12304024420, + 4382842420, + 11504448345, + 42437124 + ], + "geometry": [ + { "lat": 40.7121256, "lon": -73.9966100 }, + { "lat": 40.7121051, "lon": -73.9968608 }, + { "lat": 40.7120956, "lon": -73.9969066 }, + { "lat": 40.7120847, "lon": -73.9969466 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 16:00-19:00)", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-10:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1238440689, + "bounds": { + "minlat": 40.7141541, + "minlon": -73.9972140, + "maxlat": 40.7143064, + "maxlon": -73.9969733 + }, + "nodes": [ + 11504615638, + 11504615639, + 11504615640, + 11504615641, + 11504615642, + 11504615643, + 11504615644, + 11504615645, + 11504615646, + 11504615647, + 11504615648, + 11504615649, + 11504615650, + 11504615651, + 11504615652, + 11504615653, + 11504615654, + 11504615655, + 11504615657, + 11504615656, + 11504615623, + 11504615624, + 11504615625, + 11504615626, + 11504615638 + ], + "geometry": [ + { "lat": 40.7142053, "lon": -73.9969828 }, + { "lat": 40.7141935, "lon": -73.9969755 }, + { "lat": 40.7141808, "lon": -73.9969733 }, + { "lat": 40.7141717, "lon": -73.9969775 }, + { "lat": 40.7141673, "lon": -73.9969894 }, + { "lat": 40.7141541, "lon": -73.9971683 }, + { "lat": 40.7141578, "lon": -73.9971891 }, + { "lat": 40.7141649, "lon": -73.9972024 }, + { "lat": 40.7141755, "lon": -73.9972114 }, + { "lat": 40.7141864, "lon": -73.9972140 }, + { "lat": 40.7142018, "lon": -73.9972088 }, + { "lat": 40.7142108, "lon": -73.9972024 }, + { "lat": 40.7142377, "lon": -73.9971812 }, + { "lat": 40.7142578, "lon": -73.9971565 }, + { "lat": 40.7142803, "lon": -73.9971271 }, + { "lat": 40.7142994, "lon": -73.9971028 }, + { "lat": 40.7143064, "lon": -73.9970912 }, + { "lat": 40.7143061, "lon": -73.9970816 }, + { "lat": 40.7143023, "lon": -73.9970751 }, + { "lat": 40.7142961, "lon": -73.9970719 }, + { "lat": 40.7142836, "lon": -73.9970692 }, + { "lat": 40.7142648, "lon": -73.9970601 }, + { "lat": 40.7142405, "lon": -73.9970403 }, + { "lat": 40.7142195, "lon": -73.9970110 }, + { "lat": 40.7142053, "lon": -73.9969828 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Confucius Plaza", + "name:etymology:wikidata": "Q4604", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238440709, + "bounds": { + "minlat": 40.7141424, + "minlon": -73.9968892, + "maxlat": 40.7142399, + "maxlon": -73.9961366 + }, + "nodes": [ + 11504615770, + 11504615771, + 11504615772, + 11504615773, + 11504615774, + 11504615775, + 11504615776, + 11504615777, + 11504615778, + 11504615779, + 11504615780, + 11504615781, + 11504615782, + 11504615770 + ], + "geometry": [ + { "lat": 40.7142399, "lon": -73.9961423 }, + { "lat": 40.7141943, "lon": -73.9961366 }, + { "lat": 40.7141834, "lon": -73.9961397 }, + { "lat": 40.7141755, "lon": -73.9961486 }, + { "lat": 40.7141749, "lon": -73.9961605 }, + { "lat": 40.7141817, "lon": -73.9961722 }, + { "lat": 40.7141934, "lon": -73.9961857 }, + { "lat": 40.7141949, "lon": -73.9961963 }, + { "lat": 40.7141424, "lon": -73.9968892 }, + { "lat": 40.7141704, "lon": -73.9968232 }, + { "lat": 40.7141878, "lon": -73.9967765 }, + { "lat": 40.7141929, "lon": -73.9967582 }, + { "lat": 40.7141961, "lon": -73.9967304 }, + { "lat": 40.7142399, "lon": -73.9961423 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238440731, + "bounds": { + "minlat": 40.7143329, + "minlon": -73.9963921, + "maxlat": 40.7145938, + "maxlon": -73.9958938 + }, + "nodes": [ + 9910698813, + 11504615833, + 11504615881, + 11504615855, + 11504615858, + 11504615857, + 11504615861, + 11504615882, + 11504615883, + 11504615884, + 11504615885, + 11504615886, + 11504615887, + 11504615888, + 11504615889, + 11504615890, + 9910728017, + 11504615891, + 11504615817, + 11504615830, + 9910698784, + 9910698785, + 9910698810, + 9910698793, + 9910698786, + 9910698787, + 9910698788, + 11504615892, + 9910698811, + 9910698814, + 9910698813 + ], + "geometry": [ + { "lat": 40.7143329, "lon": -73.9962002 }, + { "lat": 40.7143395, "lon": -73.9961091 }, + { "lat": 40.7143539, "lon": -73.9959117 }, + { "lat": 40.7143590, "lon": -73.9959072 }, + { "lat": 40.7143600, "lon": -73.9958938 }, + { "lat": 40.7144296, "lon": -73.9959020 }, + { "lat": 40.7144418, "lon": -73.9959035 }, + { "lat": 40.7144608, "lon": -73.9959058 }, + { "lat": 40.7144984, "lon": -73.9959212 }, + { "lat": 40.7145277, "lon": -73.9959454 }, + { "lat": 40.7145521, "lon": -73.9959837 }, + { "lat": 40.7145633, "lon": -73.9960171 }, + { "lat": 40.7145684, "lon": -73.9960575 }, + { "lat": 40.7145657, "lon": -73.9961054 }, + { "lat": 40.7145938, "lon": -73.9961108 }, + { "lat": 40.7145927, "lon": -73.9961242 }, + { "lat": 40.7145890, "lon": -73.9961413 }, + { "lat": 40.7145850, "lon": -73.9961587 }, + { "lat": 40.7145775, "lon": -73.9961790 }, + { "lat": 40.7145691, "lon": -73.9961940 }, + { "lat": 40.7145575, "lon": -73.9962080 }, + { "lat": 40.7145399, "lon": -73.9962207 }, + { "lat": 40.7145146, "lon": -73.9962293 }, + { "lat": 40.7144861, "lon": -73.9962333 }, + { "lat": 40.7144534, "lon": -73.9962328 }, + { "lat": 40.7144263, "lon": -73.9962284 }, + { "lat": 40.7144134, "lon": -73.9963921 }, + { "lat": 40.7144010, "lon": -73.9963908 }, + { "lat": 40.7143915, "lon": -73.9963899 }, + { "lat": 40.7144033, "lon": -73.9962081 }, + { "lat": 40.7143329, "lon": -73.9962002 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Confucius Plaza Courtyard", + "name:etymology:wikidata": "Q5160304", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238497058, + "bounds": { + "minlat": 40.7142580, + "minlon": -74.0000778, + "maxlat": 40.7143063, + "maxlon": -73.9999878 + }, + "nodes": [ + 11505199639, + 11505205687, + 11505199640, + 9115784325, + 9115779808, + 9115784324, + 11505199656, + 11505199655, + 11505199654, + 11505199653, + 9115779805, + 9115779812, + 11505199639 + ], + "geometry": [ + { "lat": 40.7142911, "lon": -74.0000778 }, + { "lat": 40.7142720, "lon": -74.0000359 }, + { "lat": 40.7142580, "lon": -74.0000049 }, + { "lat": 40.7142674, "lon": -74.0000053 }, + { "lat": 40.7142677, "lon": -73.9999878 }, + { "lat": 40.7142803, "lon": -73.9999882 }, + { "lat": 40.7142910, "lon": -73.9999890 }, + { "lat": 40.7142908, "lon": -73.9999978 }, + { "lat": 40.7142990, "lon": -74.0000114 }, + { "lat": 40.7143063, "lon": -74.0000114 }, + { "lat": 40.7143040, "lon": -74.0000671 }, + { "lat": 40.7142914, "lon": -74.0000662 }, + { "lat": 40.7142911, "lon": -74.0000778 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238497173, + "bounds": { + "minlat": 40.7145212, + "minlon": -73.9997572, + "maxlat": 40.7145716, + "maxlon": -73.9996912 + }, + "nodes": [ + 11505205552, + 11505205553, + 9115784348, + 9115784351, + 9115784364, + 9115784357, + 9115784359, + 9115784362, + 9115784360, + 11505205552 + ], + "geometry": [ + { "lat": 40.7145716, "lon": -73.9996954 }, + { "lat": 40.7145610, "lon": -73.9996944 }, + { "lat": 40.7145245, "lon": -73.9996912 }, + { "lat": 40.7145232, "lon": -73.9997168 }, + { "lat": 40.7145222, "lon": -73.9997366 }, + { "lat": 40.7145212, "lon": -73.9997550 }, + { "lat": 40.7145458, "lon": -73.9997572 }, + { "lat": 40.7145576, "lon": -73.9997424 }, + { "lat": 40.7145699, "lon": -73.9997269 }, + { "lat": 40.7145716, "lon": -73.9996954 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238545752, + "bounds": { + "minlat": 40.7162686, + "minlon": -73.9960588, + "maxlat": 40.7166082, + "maxlon": -73.9958489 + }, + "nodes": [ + 11496014189, + 10606723135, + 12196074925, + 4625620216, + 11496014207 + ], + "geometry": [ + { "lat": 40.7166082, "lon": -73.9958489 }, + { "lat": 40.7165476, "lon": -73.9958863 }, + { "lat": 40.7163854, "lon": -73.9959866 }, + { "lat": 40.7163304, "lon": -73.9960206 }, + { "lat": 40.7162686, "lon": -73.9960588 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|left;through|", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 1238653603, + "bounds": { + "minlat": 40.7160377, + "minlon": -73.9996507, + "maxlat": 40.7162122, + "maxlon": -73.9995420 + }, + "nodes": [ + 11506378174, + 11506378177, + 11506378176, + 11506378175 + ], + "geometry": [ + { "lat": 40.7162122, "lon": -73.9995420 }, + { "lat": 40.7160963, "lon": -73.9996141 }, + { "lat": 40.7160886, "lon": -73.9996190 }, + { "lat": 40.7160377, "lon": -73.9996507 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1238653610, + "bounds": { + "minlat": 40.7125685, + "minlon": -73.9932716, + "maxlat": 40.7131187, + "maxlon": -73.9931982 + }, + "nodes": [ + 11506378186, + 11506378199, + 11506378189, + 11506378187 + ], + "geometry": [ + { "lat": 40.7131187, "lon": -73.9932716 }, + { "lat": 40.7130651, "lon": -73.9932645 }, + { "lat": 40.7130405, "lon": -73.9932612 }, + { "lat": 40.7125685, "lon": -73.9931982 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238653616, + "bounds": { + "minlat": 40.7119323, + "minlon": -73.9959232, + "maxlat": 40.7121817, + "maxlon": -73.9958886 + }, + "nodes": [ + 11506378191, + 11506378194, + 11506378193, + 11506378192 + ], + "geometry": [ + { "lat": 40.7121817, "lon": -73.9959232 }, + { "lat": 40.7121132, "lon": -73.9959136 }, + { "lat": 40.7121030, "lon": -73.9959122 }, + { "lat": 40.7119323, "lon": -73.9958886 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238661699, + "bounds": { + "minlat": 40.7145337, + "minlon": -74.0042004, + "maxlat": 40.7150652, + "maxlon": -74.0034775 + }, + "nodes": [ + 11506493411, + 2567571521, + 2567571493, + 5161079151, + 2567571470, + 2567571487, + 2567571484, + 2567571476, + 11506490578, + 11506490577, + 11506490576, + 11506490575, + 11506490574, + 11506493442, + 11401559441, + 11506493443, + 11506493407, + 11506493408, + 11506493409, + 11506493410, + 11506493411 + ], + "geometry": [ + { "lat": 40.7150652, "lon": -74.0039778 }, + { "lat": 40.7150546, "lon": -74.0039563 }, + { "lat": 40.7148215, "lon": -74.0041542 }, + { "lat": 40.7147069, "lon": -74.0039213 }, + { "lat": 40.7145793, "lon": -74.0036617 }, + { "lat": 40.7147347, "lon": -74.0035297 }, + { "lat": 40.7147090, "lon": -74.0034775 }, + { "lat": 40.7146298, "lon": -74.0035448 }, + { "lat": 40.7146356, "lon": -74.0035572 }, + { "lat": 40.7145337, "lon": -74.0036404 }, + { "lat": 40.7146202, "lon": -74.0038248 }, + { "lat": 40.7146397, "lon": -74.0038089 }, + { "lat": 40.7146607, "lon": -74.0038537 }, + { "lat": 40.7146363, "lon": -74.0038735 }, + { "lat": 40.7146727, "lon": -74.0039487 }, + { "lat": 40.7147034, "lon": -74.0040122 }, + { "lat": 40.7147265, "lon": -74.0039945 }, + { "lat": 40.7147457, "lon": -74.0040346 }, + { "lat": 40.7147264, "lon": -74.0040507 }, + { "lat": 40.7147981, "lon": -74.0042004 }, + { "lat": 40.7150652, "lon": -74.0039778 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238661700, + "bounds": { + "minlat": 40.7145417, + "minlon": -74.0042526, + "maxlat": 40.7147956, + "maxlon": -74.0038378 + }, + "nodes": [ + 11506490583, + 8307637653, + 11506493444, + 11401559446, + 11401559440, + 11506493445, + 11506493446, + 11506493447, + 11506493448, + 11506493449, + 11506493450, + 11506493451, + 11506493405, + 11506493406, + 11506493443, + 11401559441, + 11506493442, + 11506490585, + 11506490584, + 11506490583 + ], + "geometry": [ + { "lat": 40.7145875, "lon": -74.0038521 }, + { "lat": 40.7145616, "lon": -74.0038738 }, + { "lat": 40.7145417, "lon": -74.0038904 }, + { "lat": 40.7145610, "lon": -74.0039151 }, + { "lat": 40.7146382, "lon": -74.0040141 }, + { "lat": 40.7146505, "lon": -74.0040323 }, + { "lat": 40.7146614, "lon": -74.0040504 }, + { "lat": 40.7146737, "lon": -74.0040727 }, + { "lat": 40.7147568, "lon": -74.0042432 }, + { "lat": 40.7147649, "lon": -74.0042514 }, + { "lat": 40.7147752, "lon": -74.0042526 }, + { "lat": 40.7147814, "lon": -74.0042480 }, + { "lat": 40.7147956, "lon": -74.0042354 }, + { "lat": 40.7146907, "lon": -74.0040220 }, + { "lat": 40.7147034, "lon": -74.0040122 }, + { "lat": 40.7146727, "lon": -74.0039487 }, + { "lat": 40.7146363, "lon": -74.0038735 }, + { "lat": 40.7146257, "lon": -74.0038821 }, + { "lat": 40.7146050, "lon": -74.0038378 }, + { "lat": 40.7145875, "lon": -74.0038521 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238661704, + "bounds": { + "minlat": 40.7150545, + "minlon": -74.0050187, + "maxlat": 40.7153259, + "maxlon": -74.0047940 + }, + "nodes": [ + 11506493454, + 11506493457, + 11506493456, + 11506493455 + ], + "geometry": [ + { "lat": 40.7153259, "lon": -74.0047940 }, + { "lat": 40.7152107, "lon": -74.0048894 }, + { "lat": 40.7151164, "lon": -74.0049675 }, + { "lat": 40.7150545, "lon": -74.0050187 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1238661714, + "bounds": { + "minlat": 40.7148148, + "minlon": -74.0049379, + "maxlat": 40.7153223, + "maxlon": -74.0043190 + }, + "nodes": [ + 11506493459, + 11506493503, + 11506493504, + 11506493505, + 11506493506, + 11506493507, + 11506493508, + 11506493509, + 11506493510, + 11506493415, + 11506493414, + 11506493419, + 11506493418, + 5161079145, + 11506493436, + 11506493437, + 11506493438, + 11506493439, + 11506493426, + 11506493431, + 11506493430, + 889616597, + 889616632, + 5161079147, + 889616648, + 11506493468, + 11506493467, + 11506493466, + 11506493469, + 11506493460, + 11506493459 + ], + "geometry": [ + { "lat": 40.7151184, "lon": -74.0049199 }, + { "lat": 40.7151008, "lon": -74.0049345 }, + { "lat": 40.7150886, "lon": -74.0049379 }, + { "lat": 40.7150776, "lon": -74.0049312 }, + { "lat": 40.7150684, "lon": -74.0049153 }, + { "lat": 40.7148185, "lon": -74.0043768 }, + { "lat": 40.7148148, "lon": -74.0043562 }, + { "lat": 40.7148212, "lon": -74.0043338 }, + { "lat": 40.7148257, "lon": -74.0043271 }, + { "lat": 40.7148314, "lon": -74.0043190 }, + { "lat": 40.7148450, "lon": -74.0043474 }, + { "lat": 40.7149253, "lon": -74.0045135 }, + { "lat": 40.7150581, "lon": -74.0044023 }, + { "lat": 40.7150689, "lon": -74.0044264 }, + { "lat": 40.7150783, "lon": -74.0044461 }, + { "lat": 40.7149446, "lon": -74.0045590 }, + { "lat": 40.7150341, "lon": -74.0047437 }, + { "lat": 40.7152229, "lon": -74.0045844 }, + { "lat": 40.7152148, "lon": -74.0045676 }, + { "lat": 40.7151937, "lon": -74.0045239 }, + { "lat": 40.7151381, "lon": -74.0045706 }, + { "lat": 40.7151217, "lon": -74.0045366 }, + { "lat": 40.7152017, "lon": -74.0044701 }, + { "lat": 40.7152558, "lon": -74.0045820 }, + { "lat": 40.7153223, "lon": -74.0047226 }, + { "lat": 40.7153001, "lon": -74.0047419 }, + { "lat": 40.7152414, "lon": -74.0046200 }, + { "lat": 40.7151426, "lon": -74.0047033 }, + { "lat": 40.7150512, "lon": -74.0047786 }, + { "lat": 40.7151016, "lon": -74.0048851 }, + { "lat": 40.7151184, "lon": -74.0049199 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238675868, + "bounds": { + "minlat": 40.7159187, + "minlon": -74.0058524, + "maxlat": 40.7160836, + "maxlon": -74.0055797 + }, + "nodes": [ + 11506537152, + 11506618589, + 11506537147, + 11506537148, + 11506537149, + 1403580565, + 1403580543, + 11506537145, + 11506537144, + 11506537143, + 11506618586, + 11506537151, + 11506537150, + 11506537157, + 11506537156, + 11506537155, + 11506537154, + 11506537153, + 11506537152 + ], + "geometry": [ + { "lat": 40.7159970, "lon": -74.0056387 }, + { "lat": 40.7159833, "lon": -74.0056097 }, + { "lat": 40.7159692, "lon": -74.0055797 }, + { "lat": 40.7159651, "lon": -74.0056011 }, + { "lat": 40.7159187, "lon": -74.0056378 }, + { "lat": 40.7159696, "lon": -74.0057529 }, + { "lat": 40.7159808, "lon": -74.0057550 }, + { "lat": 40.7160245, "lon": -74.0058524 }, + { "lat": 40.7160688, "lon": -74.0058171 }, + { "lat": 40.7160836, "lon": -74.0058223 }, + { "lat": 40.7160695, "lon": -74.0057924 }, + { "lat": 40.7160562, "lon": -74.0057643 }, + { "lat": 40.7160523, "lon": -74.0057859 }, + { "lat": 40.7160322, "lon": -74.0058003 }, + { "lat": 40.7160166, "lon": -74.0057928 }, + { "lat": 40.7159587, "lon": -74.0056675 }, + { "lat": 40.7159611, "lon": -74.0056479 }, + { "lat": 40.7159808, "lon": -74.0056318 }, + { "lat": 40.7159970, "lon": -74.0056387 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238699996, + "bounds": { + "minlat": 40.7501420, + "minlon": -73.9791403, + "maxlat": 40.7501935, + "maxlon": -73.9790587 + }, + "nodes": [ + 4917475375, + 11506785045, + 11506785046, + 11506785047, + 11506785048, + 11506785049, + 11506785050, + 11506785051, + 11506785052, + 4917475381, + 4917475375 + ], + "geometry": [ + { "lat": 40.7501724, "lon": -73.9791403 }, + { "lat": 40.7501860, "lon": -73.9791269 }, + { "lat": 40.7501904, "lon": -73.9791189 }, + { "lat": 40.7501935, "lon": -73.9791054 }, + { "lat": 40.7501922, "lon": -73.9790916 }, + { "lat": 40.7501855, "lon": -73.9790760 }, + { "lat": 40.7501769, "lon": -73.9790644 }, + { "lat": 40.7501669, "lon": -73.9790587 }, + { "lat": 40.7501575, "lon": -73.9790589 }, + { "lat": 40.7501420, "lon": -73.9790658 }, + { "lat": 40.7501724, "lon": -73.9791403 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238700004, + "bounds": { + "minlat": 40.7502574, + "minlon": -73.9790635, + "maxlat": 40.7503235, + "maxlon": -73.9789610 + }, + "nodes": [ + 11506785068, + 11506785065, + 11506834369, + 11506834370, + 11506834371, + 11506834372, + 11506834373, + 11506834374, + 11506834375, + 11506834376, + 11506785064, + 11506834377, + 561042196, + 11506785068 + ], + "geometry": [ + { "lat": 40.7503235, "lon": -73.9790415 }, + { "lat": 40.7503037, "lon": -73.9790579 }, + { "lat": 40.7502984, "lon": -73.9790615 }, + { "lat": 40.7502900, "lon": -73.9790635 }, + { "lat": 40.7502846, "lon": -73.9790604 }, + { "lat": 40.7502791, "lon": -73.9790528 }, + { "lat": 40.7502588, "lon": -73.9790050 }, + { "lat": 40.7502574, "lon": -73.9789960 }, + { "lat": 40.7502581, "lon": -73.9789880 }, + { "lat": 40.7502614, "lon": -73.9789808 }, + { "lat": 40.7502686, "lon": -73.9789750 }, + { "lat": 40.7502896, "lon": -73.9789610 }, + { "lat": 40.7503073, "lon": -73.9790027 }, + { "lat": 40.7503235, "lon": -73.9790415 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238700008, + "bounds": { + "minlat": 40.7507556, + "minlon": -73.9787076, + "maxlat": 40.7508109, + "maxlon": -73.9786451 + }, + "nodes": [ + 11506834382, + 11506834448, + 11506834383, + 11506834384, + 11506834385, + 11506834386, + 11506834387, + 11506834388, + 11506834389, + 11506834390, + 11506834391, + 11506834392, + 11506834393, + 11506834394, + 11506834395, + 11506834382 + ], + "geometry": [ + { "lat": 40.7508003, "lon": -73.9786461 }, + { "lat": 40.7507843, "lon": -73.9786581 }, + { "lat": 40.7507625, "lon": -73.9786742 }, + { "lat": 40.7507564, "lon": -73.9786814 }, + { "lat": 40.7507556, "lon": -73.9786880 }, + { "lat": 40.7507583, "lon": -73.9786976 }, + { "lat": 40.7507636, "lon": -73.9787069 }, + { "lat": 40.7507682, "lon": -73.9787076 }, + { "lat": 40.7507731, "lon": -73.9787032 }, + { "lat": 40.7507897, "lon": -73.9786855 }, + { "lat": 40.7507930, "lon": -73.9786782 }, + { "lat": 40.7508099, "lon": -73.9786604 }, + { "lat": 40.7508109, "lon": -73.9786540 }, + { "lat": 40.7508081, "lon": -73.9786471 }, + { "lat": 40.7508043, "lon": -73.9786451 }, + { "lat": 40.7508003, "lon": -73.9786461 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238700014, + "bounds": { + "minlat": 40.7509134, + "minlon": -73.9786429, + "maxlat": 40.7509494, + "maxlon": -73.9786071 + }, + "nodes": [ + 11506834430, + 11506834452, + 11506834431, + 11506834432, + 11506834444, + 11506834433, + 11506834434, + 11506834435, + 11506834436, + 11506834430 + ], + "geometry": [ + { "lat": 40.7509494, "lon": -73.9786221 }, + { "lat": 40.7509462, "lon": -73.9786146 }, + { "lat": 40.7509430, "lon": -73.9786071 }, + { "lat": 40.7509267, "lon": -73.9786193 }, + { "lat": 40.7509158, "lon": -73.9786274 }, + { "lat": 40.7509134, "lon": -73.9786328 }, + { "lat": 40.7509146, "lon": -73.9786404 }, + { "lat": 40.7509198, "lon": -73.9786429 }, + { "lat": 40.7509332, "lon": -73.9786345 }, + { "lat": 40.7509494, "lon": -73.9786221 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238700015, + "bounds": { + "minlat": 40.7508600, + "minlon": -73.9785153, + "maxlat": 40.7508961, + "maxlon": -73.9784795 + }, + "nodes": [ + 11506834437, + 11506834451, + 11506834438, + 11506834439, + 11506834445, + 11506834440, + 11506834441, + 11506834442, + 11506834443, + 11506834437 + ], + "geometry": [ + { "lat": 40.7508961, "lon": -73.9784945 }, + { "lat": 40.7508926, "lon": -73.9784865 }, + { "lat": 40.7508896, "lon": -73.9784795 }, + { "lat": 40.7508727, "lon": -73.9784920 }, + { "lat": 40.7508624, "lon": -73.9784997 }, + { "lat": 40.7508600, "lon": -73.9785052 }, + { "lat": 40.7508613, "lon": -73.9785127 }, + { "lat": 40.7508665, "lon": -73.9785153 }, + { "lat": 40.7508792, "lon": -73.9785073 }, + { "lat": 40.7508961, "lon": -73.9784945 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238700049, + "bounds": { + "minlat": 40.7521956, + "minlon": -73.9777521, + "maxlat": 40.7522510, + "maxlon": -73.9776829 + }, + "nodes": [ + 11506834615, + 11506834616, + 11506834617, + 11506834618, + 11506834619, + 11506834615 + ], + "geometry": [ + { "lat": 40.7522510, "lon": -73.9777521 }, + { "lat": 40.7522222, "lon": -73.9776829 }, + { "lat": 40.7521956, "lon": -73.9777023 }, + { "lat": 40.7522106, "lon": -73.9777368 }, + { "lat": 40.7522179, "lon": -73.9777420 }, + { "lat": 40.7522510, "lon": -73.9777521 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238700050, + "bounds": { + "minlat": 40.7521068, + "minlon": -73.9775756, + "maxlat": 40.7521705, + "maxlon": -73.9774500 + }, + "nodes": [ + 11506834620, + 11506834621, + 11506834622, + 11506834623, + 11506834624, + 11506834625, + 11506834620 + ], + "geometry": [ + { "lat": 40.7521705, "lon": -73.9775591 }, + { "lat": 40.7521245, "lon": -73.9774500 }, + { "lat": 40.7521068, "lon": -73.9774632 }, + { "lat": 40.7521248, "lon": -73.9775193 }, + { "lat": 40.7521332, "lon": -73.9775423 }, + { "lat": 40.7521479, "lon": -73.9775756 }, + { "lat": 40.7521705, "lon": -73.9775591 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238731795, + "bounds": { + "minlat": 40.7520366, + "minlon": -73.9757262, + "maxlat": 40.7523143, + "maxlon": -73.9755190 + }, + "nodes": [ + 11507193190, + 11507193191, + 11507193192, + 11507193197, + 11507193201, + 11507193193, + 11507193194, + 11507193195, + 11507193200, + 11507193202, + 11507193190 + ], + "geometry": [ + { "lat": 40.7520366, "lon": -73.9757262 }, + { "lat": 40.7520524, "lon": -73.9756712 }, + { "lat": 40.7520599, "lon": -73.9756610 }, + { "lat": 40.7520887, "lon": -73.9756399 }, + { "lat": 40.7521945, "lon": -73.9755634 }, + { "lat": 40.7522509, "lon": -73.9755225 }, + { "lat": 40.7522595, "lon": -73.9755190 }, + { "lat": 40.7523143, "lon": -73.9755223 }, + { "lat": 40.7522097, "lon": -73.9755991 }, + { "lat": 40.7521032, "lon": -73.9756773 }, + { "lat": 40.7520366, "lon": -73.9757262 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238731807, + "bounds": { + "minlat": 40.7526289, + "minlon": -73.9752985, + "maxlat": 40.7528664, + "maxlon": -73.9751118 + }, + "nodes": [ + 11507193211, + 11507193212, + 11507193213, + 11507193221, + 11507193220, + 11507193214, + 11507193215, + 11507193216, + 11507193222, + 11507193210, + 11507193211 + ], + "geometry": [ + { "lat": 40.7526289, "lon": -73.9752985 }, + { "lat": 40.7526423, "lon": -73.9752460 }, + { "lat": 40.7526482, "lon": -73.9752357 }, + { "lat": 40.7527089, "lon": -73.9751926 }, + { "lat": 40.7528121, "lon": -73.9751195 }, + { "lat": 40.7528210, "lon": -73.9751131 }, + { "lat": 40.7528272, "lon": -73.9751118 }, + { "lat": 40.7528664, "lon": -73.9751250 }, + { "lat": 40.7528260, "lon": -73.9751545 }, + { "lat": 40.7527225, "lon": -73.9752313 }, + { "lat": 40.7526289, "lon": -73.9752985 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238736806, + "bounds": { + "minlat": 40.7538297, + "minlon": -74.0044176, + "maxlat": 40.7540599, + "maxlon": -74.0039960 + }, + "nodes": [ + 9423683522, + 11507256017, + 11507256019, + 11507256018 + ], + "geometry": [ + { "lat": 40.7539362, "lon": -74.0044176 }, + { "lat": 40.7538297, "lon": -74.0041578 }, + { "lat": 40.7540018, "lon": -74.0040368 }, + { "lat": 40.7540599, "lon": -74.0039960 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1238738082, + "bounds": { + "minlat": 40.7531709, + "minlon": -73.9779321, + "maxlat": 40.7532776, + "maxlon": -73.9778461 + }, + "nodes": [ + 11507273121, + 11507273122, + 11507273123, + 11507273124, + 11507273132, + 11507273125, + 11507273126, + 11507273127, + 11507273128, + 11507273129, + 11507273130, + 11507273121 + ], + "geometry": [ + { "lat": 40.7531850, "lon": -73.9779321 }, + { "lat": 40.7531722, "lon": -73.9779002 }, + { "lat": 40.7531709, "lon": -73.9778920 }, + { "lat": 40.7531742, "lon": -73.9778843 }, + { "lat": 40.7531912, "lon": -73.9778717 }, + { "lat": 40.7532207, "lon": -73.9778496 }, + { "lat": 40.7532280, "lon": -73.9778461 }, + { "lat": 40.7532776, "lon": -73.9778470 }, + { "lat": 40.7531966, "lon": -73.9779068 }, + { "lat": 40.7531889, "lon": -73.9779141 }, + { "lat": 40.7531855, "lon": -73.9779226 }, + { "lat": 40.7531850, "lon": -73.9779321 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238738098, + "bounds": { + "minlat": 40.7530493, + "minlon": -73.9779849, + "maxlat": 40.7530692, + "maxlon": -73.9779703 + }, + "nodes": [ + 11507279854, + 11507273136 + ], + "geometry": [ + { "lat": 40.7530493, "lon": -73.9779849 }, + { "lat": 40.7530692, "lon": -73.9779703 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Vanderbilt Avenue", + "oneway": "no", + "surface": "concrete", + "wikidata": "Q75889665", + "wikipedia": "en:Vanderbilt Avenue" + } +}, +{ + "type": "way", + "id": 1238738099, + "bounds": { + "minlat": 40.7525438, + "minlon": -73.9783557, + "maxlat": 40.7525763, + "maxlon": -73.9783319 + }, + "nodes": [ + 3919341660, + 11507279855 + ], + "geometry": [ + { "lat": 40.7525438, "lon": -73.9783557 }, + { "lat": 40.7525763, "lon": -73.9783319 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Vanderbilt Avenue", + "oneway": "no", + "surface": "concrete", + "wikidata": "Q75889665", + "wikipedia": "en:Vanderbilt Avenue" + } +}, +{ + "type": "way", + "id": 1238738107, + "bounds": { + "minlat": 40.7522222, + "minlon": -73.9791327, + "maxlat": 40.7542736, + "maxlon": -73.9769066 + }, + "nodes": [ + 11507279872, + 11507279873, + 11507279874, + 11507279875, + 11507279876, + 11507279867, + 11507279857, + 11507273131, + 11507279877, + 11507279878, + 11507279879, + 11507279880, + 11507279881, + 11507279882, + 11507279883, + 11507273117, + 11507279884, + 11507279885, + 11507273112, + 11507279886, + 11507279887, + 11507273113, + 11507279888, + 11507273107, + 11507279889, + 11507279890, + 11507273106, + 11507279891, + 13785909809, + 11506834615, + 11506834616, + 11507279893, + 11506834515, + 4676428309, + 4676428311, + 4676428310, + 4676428315, + 11022425818, + 11022425817, + 11022425819, + 4676428312, + 11022425820, + 11022425816, + 11022425821, + 4676428313, + 11022425822, + 11022425815, + 11022425823, + 11507279855, + 2714855942, + 11507273104, + 2714855950, + 13484753598, + 13484753562, + 2714855957, + 11507273116, + 13484753556, + 2714855955, + 11507279854, + 11507279853, + 11507273151, + 2715512173, + 11507279892, + 11507279872 + ], + "geometry": [ + { "lat": 40.7542663, "lon": -73.9769066 }, + { "lat": 40.7542718, "lon": -73.9769205 }, + { "lat": 40.7542736, "lon": -73.9769336 }, + { "lat": 40.7542684, "lon": -73.9769542 }, + { "lat": 40.7542584, "lon": -73.9769642 }, + { "lat": 40.7537539, "lon": -73.9773277 }, + { "lat": 40.7536394, "lon": -73.9774117 }, + { "lat": 40.7531511, "lon": -73.9777699 }, + { "lat": 40.7531277, "lon": -73.9777874 }, + { "lat": 40.7531091, "lon": -73.9778143 }, + { "lat": 40.7530955, "lon": -73.9778458 }, + { "lat": 40.7530879, "lon": -73.9778734 }, + { "lat": 40.7530841, "lon": -73.9779136 }, + { "lat": 40.7530865, "lon": -73.9779424 }, + { "lat": 40.7530928, "lon": -73.9779677 }, + { "lat": 40.7531000, "lon": -73.9779859 }, + { "lat": 40.7533926, "lon": -73.9786838 }, + { "lat": 40.7533971, "lon": -73.9786973 }, + { "lat": 40.7533991, "lon": -73.9787119 }, + { "lat": 40.7533988, "lon": -73.9787256 }, + { "lat": 40.7533953, "lon": -73.9787387 }, + { "lat": 40.7533898, "lon": -73.9787471 }, + { "lat": 40.7533790, "lon": -73.9787562 }, + { "lat": 40.7528630, "lon": -73.9791293 }, + { "lat": 40.7528529, "lon": -73.9791325 }, + { "lat": 40.7528423, "lon": -73.9791327 }, + { "lat": 40.7528362, "lon": -73.9791254 }, + { "lat": 40.7528279, "lon": -73.9791127 }, + { "lat": 40.7524912, "lon": -73.9783179 }, + { "lat": 40.7522510, "lon": -73.9777521 }, + { "lat": 40.7522222, "lon": -73.9776829 }, + { "lat": 40.7522503, "lon": -73.9776624 }, + { "lat": 40.7522748, "lon": -73.9776445 }, + { "lat": 40.7524633, "lon": -73.9780876 }, + { "lat": 40.7524755, "lon": -73.9781158 }, + { "lat": 40.7524511, "lon": -73.9781318 }, + { "lat": 40.7524713, "lon": -73.9781796 }, + { "lat": 40.7524750, "lon": -73.9781865 }, + { "lat": 40.7524789, "lon": -73.9781927 }, + { "lat": 40.7524829, "lon": -73.9781989 }, + { "lat": 40.7524875, "lon": -73.9782048 }, + { "lat": 40.7524926, "lon": -73.9782100 }, + { "lat": 40.7524981, "lon": -73.9782138 }, + { "lat": 40.7525039, "lon": -73.9782173 }, + { "lat": 40.7525108, "lon": -73.9782201 }, + { "lat": 40.7525158, "lon": -73.9782217 }, + { "lat": 40.7525221, "lon": -73.9782228 }, + { "lat": 40.7525305, "lon": -73.9782228 }, + { "lat": 40.7525763, "lon": -73.9783319 }, + { "lat": 40.7526087, "lon": -73.9784138 }, + { "lat": 40.7527213, "lon": -73.9786885 }, + { "lat": 40.7528611, "lon": -73.9790293 }, + { "lat": 40.7529102, "lon": -73.9789942 }, + { "lat": 40.7529202, "lon": -73.9790172 }, + { "lat": 40.7533487, "lon": -73.9787083 }, + { "lat": 40.7531617, "lon": -73.9782525 }, + { "lat": 40.7531392, "lon": -73.9781978 }, + { "lat": 40.7530709, "lon": -73.9780314 }, + { "lat": 40.7530493, "lon": -73.9779849 }, + { "lat": 40.7529885, "lon": -73.9778407 }, + { "lat": 40.7530623, "lon": -73.9777837 }, + { "lat": 40.7533155, "lon": -73.9775878 }, + { "lat": 40.7542506, "lon": -73.9769178 }, + { "lat": 40.7542663, "lon": -73.9769066 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238738113, + "bounds": { + "minlat": 40.7537559, + "minlon": -73.9768276, + "maxlat": 40.7542139, + "maxlon": -73.9758592 + }, + "nodes": [ + 2715512177, + 11507193169, + 11507279908, + 11507279906, + 11507279899, + 11507279907, + 11507279909, + 11507279862, + 2715512185, + 1508800731, + 2715512187, + 11507279903, + 2715512177 + ], + "geometry": [ + { "lat": 40.7537559, "lon": -73.9758701 }, + { "lat": 40.7537712, "lon": -73.9758592 }, + { "lat": 40.7538039, "lon": -73.9758620 }, + { "lat": 40.7538258, "lon": -73.9758639 }, + { "lat": 40.7540084, "lon": -73.9762942 }, + { "lat": 40.7542139, "lon": -73.9767842 }, + { "lat": 40.7541988, "lon": -73.9767953 }, + { "lat": 40.7541539, "lon": -73.9768276 }, + { "lat": 40.7541448, "lon": -73.9768056 }, + { "lat": 40.7541425, "lon": -73.9768003 }, + { "lat": 40.7541479, "lon": -73.9767963 }, + { "lat": 40.7539527, "lon": -73.9763351 }, + { "lat": 40.7537559, "lon": -73.9758701 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238742488, + "bounds": { + "minlat": 40.7152263, + "minlon": -74.0021221, + "maxlat": 40.7152829, + "maxlon": -74.0020700 + }, + "nodes": [ + 11507343843, + 11507343844, + 11507343845, + 11507343846, + 11507343847, + 11507343848, + 11507343849, + 11507343850, + 11507343851, + 11507343852, + 11507343843 + ], + "geometry": [ + { "lat": 40.7152348, "lon": -74.0021214 }, + { "lat": 40.7152304, "lon": -74.0021221 }, + { "lat": 40.7152281, "lon": -74.0021180 }, + { "lat": 40.7152263, "lon": -74.0021069 }, + { "lat": 40.7152278, "lon": -74.0020955 }, + { "lat": 40.7152308, "lon": -74.0020884 }, + { "lat": 40.7152516, "lon": -74.0020700 }, + { "lat": 40.7152824, "lon": -74.0020807 }, + { "lat": 40.7152829, "lon": -74.0020853 }, + { "lat": 40.7152439, "lon": -74.0021146 }, + { "lat": 40.7152348, "lon": -74.0021214 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238742489, + "bounds": { + "minlat": 40.7149472, + "minlon": -74.0023252, + "maxlat": 40.7151251, + "maxlon": -74.0021807 + }, + "nodes": [ + 11507343856, + 11507343857, + 11507343858, + 11507343860, + 11507343861, + 11507343862, + 11507409275, + 11507343863, + 11507343864, + 11507343865, + 11507409271, + 11507409272, + 11507409273, + 11507409274, + 11507343856 + ], + "geometry": [ + { "lat": 40.7151188, "lon": -74.0022295 }, + { "lat": 40.7151235, "lon": -74.0022210 }, + { "lat": 40.7151251, "lon": -74.0022094 }, + { "lat": 40.7151135, "lon": -74.0021845 }, + { "lat": 40.7151067, "lon": -74.0021807 }, + { "lat": 40.7150987, "lon": -74.0021819 }, + { "lat": 40.7150887, "lon": -74.0021867 }, + { "lat": 40.7150542, "lon": -74.0022106 }, + { "lat": 40.7150263, "lon": -74.0022267 }, + { "lat": 40.7149472, "lon": -74.0022708 }, + { "lat": 40.7149632, "lon": -74.0023252 }, + { "lat": 40.7150425, "lon": -74.0022839 }, + { "lat": 40.7150609, "lon": -74.0022736 }, + { "lat": 40.7151129, "lon": -74.0022356 }, + { "lat": 40.7151188, "lon": -74.0022295 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238742498, + "bounds": { + "minlat": 40.7151561, + "minlon": -74.0021038, + "maxlat": 40.7155124, + "maxlon": -74.0018609 + }, + "nodes": [ + 42427300, + 8307637708, + 12198027584, + 11808312028 + ], + "geometry": [ + { "lat": 40.7151561, "lon": -74.0021038 }, + { "lat": 40.7152195, "lon": -74.0020653 }, + { "lat": 40.7152360, "lon": -74.0020553 }, + { "lat": 40.7155124, "lon": -74.0018609 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1238970689, + "bounds": { + "minlat": 40.7547190, + "minlon": -73.9757955, + "maxlat": 40.7547714, + "maxlon": -73.9757225 + }, + "nodes": [ + 11509692739, + 11509692743, + 11509692744, + 11509692745, + 11509692746, + 11509692747, + 11509692748, + 11509692749, + 11509692750, + 11509692751, + 11509692740, + 11509692739 + ], + "geometry": [ + { "lat": 40.7547714, "lon": -73.9757832 }, + { "lat": 40.7547616, "lon": -73.9757908 }, + { "lat": 40.7547490, "lon": -73.9757955 }, + { "lat": 40.7547343, "lon": -73.9757942 }, + { "lat": 40.7547252, "lon": -73.9757835 }, + { "lat": 40.7547206, "lon": -73.9757741 }, + { "lat": 40.7547190, "lon": -73.9757603 }, + { "lat": 40.7547211, "lon": -73.9757492 }, + { "lat": 40.7547266, "lon": -73.9757407 }, + { "lat": 40.7547379, "lon": -73.9757290 }, + { "lat": 40.7547459, "lon": -73.9757225 }, + { "lat": 40.7547714, "lon": -73.9757832 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238970693, + "bounds": { + "minlat": 40.7546274, + "minlon": -73.9760273, + "maxlat": 40.7546689, + "maxlon": -73.9759982 + }, + "nodes": [ + 11509692764, + 3639381189 + ], + "geometry": [ + { "lat": 40.7546689, "lon": -73.9759982 }, + { "lat": 40.7546274, "lon": -73.9760273 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "concrete", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1238970696, + "bounds": { + "minlat": 40.7545141, + "minlon": -73.9757585, + "maxlat": 40.7545580, + "maxlon": -73.9757284 + }, + "nodes": [ + 3639381192, + 12834723266, + 11509720072 + ], + "geometry": [ + { "lat": 40.7545141, "lon": -73.9757585 }, + { "lat": 40.7545354, "lon": -73.9757439 }, + { "lat": 40.7545580, "lon": -73.9757284 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "concrete", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1238970700, + "bounds": { + "minlat": 40.7545319, + "minlon": -73.9759842, + "maxlat": 40.7546744, + "maxlon": -73.9757624 + }, + "nodes": [ + 11509720082, + 11509720101, + 11509720083, + 11509720096, + 11509720084, + 11509720085, + 11509720086, + 11509720087, + 11509720088, + 11509720089, + 11509720090, + 11509720091, + 11509720097, + 11509720092, + 11509720093, + 11509720094, + 11509720102, + 11509720095, + 11509720100, + 11509720082 + ], + "geometry": [ + { "lat": 40.7546092, "lon": -73.9759842 }, + { "lat": 40.7546336, "lon": -73.9759670 }, + { "lat": 40.7546561, "lon": -73.9759513 }, + { "lat": 40.7546628, "lon": -73.9759444 }, + { "lat": 40.7546677, "lon": -73.9759370 }, + { "lat": 40.7546725, "lon": -73.9759278 }, + { "lat": 40.7546744, "lon": -73.9759132 }, + { "lat": 40.7546732, "lon": -73.9759002 }, + { "lat": 40.7546682, "lon": -73.9758853 }, + { "lat": 40.7546227, "lon": -73.9757793 }, + { "lat": 40.7546164, "lon": -73.9757688 }, + { "lat": 40.7546084, "lon": -73.9757635 }, + { "lat": 40.7546006, "lon": -73.9757624 }, + { "lat": 40.7545936, "lon": -73.9757628 }, + { "lat": 40.7545871, "lon": -73.9757644 }, + { "lat": 40.7545699, "lon": -73.9757732 }, + { "lat": 40.7545530, "lon": -73.9757854 }, + { "lat": 40.7545319, "lon": -73.9758007 }, + { "lat": 40.7545707, "lon": -73.9758926 }, + { "lat": 40.7546092, "lon": -73.9759842 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238970711, + "bounds": { + "minlat": 40.7543628, + "minlon": -73.9768674, + "maxlat": 40.7549085, + "maxlon": -73.9760296 + }, + "nodes": [ + 873859769, + 11509720126, + 11509720113, + 11509720112, + 11509720114, + 11509720115, + 11509720111, + 11509720116, + 11509720117, + 11509720118, + 11509720110, + 11509720119, + 11509720120, + 11509692738, + 11509720121, + 11509720122, + 11509692760, + 11509720123, + 11509720124, + 11509720125, + 2946084363, + 2946084364, + 2946084365, + 2946084366, + 2946084367, + 873859770, + 2946084368, + 2946084362, + 873859769 + ], + "geometry": [ + { "lat": 40.7543878, "lon": -73.9768179 }, + { "lat": 40.7543728, "lon": -73.9768297 }, + { "lat": 40.7543628, "lon": -73.9768375 }, + { "lat": 40.7543711, "lon": -73.9768582 }, + { "lat": 40.7543752, "lon": -73.9768647 }, + { "lat": 40.7543818, "lon": -73.9768673 }, + { "lat": 40.7543886, "lon": -73.9768674 }, + { "lat": 40.7543975, "lon": -73.9768623 }, + { "lat": 40.7548921, "lon": -73.9765030 }, + { "lat": 40.7549021, "lon": -73.9764921 }, + { "lat": 40.7549071, "lon": -73.9764763 }, + { "lat": 40.7549085, "lon": -73.9764587 }, + { "lat": 40.7549052, "lon": -73.9764437 }, + { "lat": 40.7547313, "lon": -73.9760425 }, + { "lat": 40.7547259, "lon": -73.9760358 }, + { "lat": 40.7547184, "lon": -73.9760302 }, + { "lat": 40.7547071, "lon": -73.9760296 }, + { "lat": 40.7546980, "lon": -73.9760325 }, + { "lat": 40.7546876, "lon": -73.9760383 }, + { "lat": 40.7546459, "lon": -73.9760676 }, + { "lat": 40.7546503, "lon": -73.9760735 }, + { "lat": 40.7546583, "lon": -73.9760800 }, + { "lat": 40.7546678, "lon": -73.9760822 }, + { "lat": 40.7546823, "lon": -73.9760818 }, + { "lat": 40.7546936, "lon": -73.9760770 }, + { "lat": 40.7548600, "lon": -73.9764649 }, + { "lat": 40.7546943, "lon": -73.9765888 }, + { "lat": 40.7545541, "lon": -73.9766934 }, + { "lat": 40.7543878, "lon": -73.9768179 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238970731, + "bounds": { + "minlat": 40.7538331, + "minlon": -73.9757473, + "maxlat": 40.7539171, + "maxlon": -73.9756860 + }, + "nodes": [ + 11509720172, + 11509720174, + 11509720191, + 11509720173 + ], + "geometry": [ + { "lat": 40.7539171, "lon": -73.9756860 }, + { "lat": 40.7538994, "lon": -73.9756989 }, + { "lat": 40.7538850, "lon": -73.9757094 }, + { "lat": 40.7538331, "lon": -73.9757473 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1238970733, + "bounds": { + "minlat": 40.7534843, + "minlon": -73.9746977, + "maxlat": 40.7539721, + "maxlon": -73.9743283 + }, + "nodes": [ + 530736979, + 11509720176, + 11509720177, + 11509720178, + 11509720129, + 530736993, + 530736979 + ], + "geometry": [ + { "lat": 40.7534928, "lon": -73.9746977 }, + { "lat": 40.7534893, "lon": -73.9746893 }, + { "lat": 40.7534843, "lon": -73.9746771 }, + { "lat": 40.7539632, "lon": -73.9743283 }, + { "lat": 40.7539680, "lon": -73.9743388 }, + { "lat": 40.7539721, "lon": -73.9743481 }, + { "lat": 40.7534928, "lon": -73.9746977 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238970734, + "bounds": { + "minlat": 40.7534722, + "minlon": -73.9757487, + "maxlat": 40.7544456, + "maxlon": -73.9743152 + }, + "nodes": [ + 530736979, + 11509720176, + 11509720177, + 11509720179, + 11509720180, + 11509720175, + 11509720181, + 11509720182, + 11509720183, + 11509720191, + 11509720184, + 11240006473, + 11507193171, + 873859768, + 2715512180, + 11509720172, + 2715512179, + 11509720159, + 11509720155, + 11509720154, + 11509720153, + 2715512184, + 11509720156, + 2715512194, + 2715512195, + 11509720152, + 11509720151, + 2715512197, + 11509720139, + 873859771, + 11509720127, + 11509720185, + 11509720186, + 11509720187, + 11509720188, + 11509720128, + 11509720189, + 11509720190, + 11509720178, + 11509720129, + 530736993, + 1593915772, + 530736989, + 530736984, + 1593915758, + 530736979 + ], + "geometry": [ + { "lat": 40.7534928, "lon": -73.9746977 }, + { "lat": 40.7534893, "lon": -73.9746893 }, + { "lat": 40.7534843, "lon": -73.9746771 }, + { "lat": 40.7534796, "lon": -73.9746818 }, + { "lat": 40.7534755, "lon": -73.9746901 }, + { "lat": 40.7534734, "lon": -73.9746988 }, + { "lat": 40.7534722, "lon": -73.9747097 }, + { "lat": 40.7534725, "lon": -73.9747235 }, + { "lat": 40.7534760, "lon": -73.9747336 }, + { "lat": 40.7538850, "lon": -73.9757094 }, + { "lat": 40.7539005, "lon": -73.9757463 }, + { "lat": 40.7539201, "lon": -73.9757478 }, + { "lat": 40.7539315, "lon": -73.9757487 }, + { "lat": 40.7539278, "lon": -73.9757400 }, + { "lat": 40.7539368, "lon": -73.9757332 }, + { "lat": 40.7539171, "lon": -73.9756860 }, + { "lat": 40.7538977, "lon": -73.9756397 }, + { "lat": 40.7539107, "lon": -73.9756303 }, + { "lat": 40.7540046, "lon": -73.9755626 }, + { "lat": 40.7540112, "lon": -73.9755781 }, + { "lat": 40.7540336, "lon": -73.9755619 }, + { "lat": 40.7540267, "lon": -73.9755457 }, + { "lat": 40.7542390, "lon": -73.9753917 }, + { "lat": 40.7542542, "lon": -73.9753807 }, + { "lat": 40.7542995, "lon": -73.9753597 }, + { "lat": 40.7543149, "lon": -73.9754261 }, + { "lat": 40.7542992, "lon": -73.9754381 }, + { "lat": 40.7543070, "lon": -73.9754563 }, + { "lat": 40.7543506, "lon": -73.9754238 }, + { "lat": 40.7543989, "lon": -73.9753878 }, + { "lat": 40.7544274, "lon": -73.9753680 }, + { "lat": 40.7544456, "lon": -73.9753553 }, + { "lat": 40.7540187, "lon": -73.9743422 }, + { "lat": 40.7540081, "lon": -73.9743229 }, + { "lat": 40.7539995, "lon": -73.9743181 }, + { "lat": 40.7539915, "lon": -73.9743152 }, + { "lat": 40.7539842, "lon": -73.9743168 }, + { "lat": 40.7539756, "lon": -73.9743204 }, + { "lat": 40.7539632, "lon": -73.9743283 }, + { "lat": 40.7539680, "lon": -73.9743388 }, + { "lat": 40.7539721, "lon": -73.9743481 }, + { "lat": 40.7542960, "lon": -73.9751276 }, + { "lat": 40.7543328, "lon": -73.9752160 }, + { "lat": 40.7538539, "lon": -73.9755638 }, + { "lat": 40.7538171, "lon": -73.9754754 }, + { "lat": 40.7534928, "lon": -73.9746977 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238970735, + "bounds": { + "minlat": 40.7539572, + "minlon": -73.9767131, + "maxlat": 40.7543350, + "maxlon": -73.9758751 + }, + "nodes": [ + 11509720192, + 11507279900, + 11509720193, + 11509720195, + 11507279861, + 3919341659, + 3919341658, + 11507193170, + 11509720194, + 11509720192 + ], + "geometry": [ + { "lat": 40.7539572, "lon": -73.9758751 }, + { "lat": 40.7541046, "lon": -73.9762228 }, + { "lat": 40.7543124, "lon": -73.9767131 }, + { "lat": 40.7543213, "lon": -73.9767067 }, + { "lat": 40.7543350, "lon": -73.9766968 }, + { "lat": 40.7542076, "lon": -73.9764005 }, + { "lat": 40.7540346, "lon": -73.9759909 }, + { "lat": 40.7539866, "lon": -73.9758776 }, + { "lat": 40.7539739, "lon": -73.9758765 }, + { "lat": 40.7539572, "lon": -73.9758751 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238970764, + "bounds": { + "minlat": 40.7543989, + "minlon": -73.9757162, + "maxlat": 40.7545622, + "maxlon": -73.9753553 + }, + "nodes": [ + 11509720185, + 11509713364, + 11509692758, + 11509713365, + 11509713366, + 11509713367, + 11509720077, + 11509713368, + 11509720769, + 2703849397, + 2946084357, + 2946084356, + 2946084358, + 2946084359, + 2946084360, + 873859771, + 11509720127, + 11509720185 + ], + "geometry": [ + { "lat": 40.7544456, "lon": -73.9753553 }, + { "lat": 40.7545555, "lon": -73.9756172 }, + { "lat": 40.7545598, "lon": -73.9756288 }, + { "lat": 40.7545622, "lon": -73.9756428 }, + { "lat": 40.7545613, "lon": -73.9756570 }, + { "lat": 40.7545586, "lon": -73.9756658 }, + { "lat": 40.7545553, "lon": -73.9756729 }, + { "lat": 40.7545482, "lon": -73.9756793 }, + { "lat": 40.7544963, "lon": -73.9757162 }, + { "lat": 40.7544781, "lon": -73.9756730 }, + { "lat": 40.7544744, "lon": -73.9756584 }, + { "lat": 40.7544739, "lon": -73.9756503 }, + { "lat": 40.7544766, "lon": -73.9756338 }, + { "lat": 40.7544835, "lon": -73.9756170 }, + { "lat": 40.7544921, "lon": -73.9756057 }, + { "lat": 40.7543989, "lon": -73.9753878 }, + { "lat": 40.7544274, "lon": -73.9753680 }, + { "lat": 40.7544456, "lon": -73.9753553 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238980975, + "bounds": { + "minlat": 40.7538404, + "minlon": -73.9779292, + "maxlat": 40.7539090, + "maxlon": -73.9778802 + }, + "nodes": [ + 11509763382, + 11509763399, + 11509763384, + 11509763383 + ], + "geometry": [ + { "lat": 40.7539090, "lon": -73.9778802 }, + { "lat": 40.7538679, "lon": -73.9779096 }, + { "lat": 40.7538542, "lon": -73.9779194 }, + { "lat": 40.7538404, "lon": -73.9779292 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238985028, + "bounds": { + "minlat": 40.7508702, + "minlon": -73.9779011, + "maxlat": 40.7519633, + "maxlon": -73.9761997 + }, + "nodes": [ + 2715512141, + 11506834557, + 11506834518, + 11509789249, + 11509789250, + 11509789251, + 11509789252, + 11509789253, + 11509789254, + 10168825914, + 11509789255, + 11509789256, + 11509789241, + 11509789257, + 11509789258, + 11509789259, + 11509789242, + 11509789260, + 11506834521, + 11506834530, + 2715512152, + 2715512150, + 7581054281, + 2715512147, + 2715512145, + 2715512131, + 2935224865, + 2935224835, + 2715512106, + 2935224828, + 2715512117, + 2715512123, + 2715512141 + ], + "geometry": [ + { "lat": 40.7514362, "lon": -73.9778739 }, + { "lat": 40.7514189, "lon": -73.9778865 }, + { "lat": 40.7513989, "lon": -73.9779011 }, + { "lat": 40.7513923, "lon": -73.9778860 }, + { "lat": 40.7513889, "lon": -73.9778701 }, + { "lat": 40.7513883, "lon": -73.9778531 }, + { "lat": 40.7513832, "lon": -73.9778355 }, + { "lat": 40.7508743, "lon": -73.9766267 }, + { "lat": 40.7508702, "lon": -73.9766121 }, + { "lat": 40.7508710, "lon": -73.9766053 }, + { "lat": 40.7508777, "lon": -73.9765840 }, + { "lat": 40.7508899, "lon": -73.9765707 }, + { "lat": 40.7513826, "lon": -73.9762061 }, + { "lat": 40.7513944, "lon": -73.9762004 }, + { "lat": 40.7514036, "lon": -73.9761997 }, + { "lat": 40.7514097, "lon": -73.9761999 }, + { "lat": 40.7514167, "lon": -73.9762063 }, + { "lat": 40.7514220, "lon": -73.9762158 }, + { "lat": 40.7519633, "lon": -73.9774889 }, + { "lat": 40.7519341, "lon": -73.9775102 }, + { "lat": 40.7519063, "lon": -73.9775305 }, + { "lat": 40.7517382, "lon": -73.9771327 }, + { "lat": 40.7517261, "lon": -73.9771042 }, + { "lat": 40.7516008, "lon": -73.9768075 }, + { "lat": 40.7515321, "lon": -73.9766449 }, + { "lat": 40.7513688, "lon": -73.9762586 }, + { "lat": 40.7512533, "lon": -73.9763430 }, + { "lat": 40.7510130, "lon": -73.9765186 }, + { "lat": 40.7508987, "lon": -73.9766021 }, + { "lat": 40.7509409, "lon": -73.9767037 }, + { "lat": 40.7511307, "lon": -73.9771510 }, + { "lat": 40.7512681, "lon": -73.9774762 }, + { "lat": 40.7514362, "lon": -73.9778739 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238990609, + "bounds": { + "minlat": 40.7510036, + "minlon": -73.9992331, + "maxlat": 40.7514764, + "maxlon": -73.9981618 + }, + "nodes": [ + 11509842290, + 11509842312, + 11509842291, + 11509842292, + 11509842293, + 11509842294, + 11509842307, + 11509842295, + 11509842296, + 11509842297, + 11509842298, + 11509842299, + 11509842330, + 11509842300, + 11509842301, + 11509842302, + 11509842303, + 11509842308, + 11509842304, + 11509842305, + 11509842306, + 11509842290 + ], + "geometry": [ + { "lat": 40.7510067, "lon": -73.9981897 }, + { "lat": 40.7510185, "lon": -73.9981808 }, + { "lat": 40.7510408, "lon": -73.9981639 }, + { "lat": 40.7510475, "lon": -73.9981618 }, + { "lat": 40.7510533, "lon": -73.9981636 }, + { "lat": 40.7510582, "lon": -73.9981711 }, + { "lat": 40.7510613, "lon": -73.9981881 }, + { "lat": 40.7510643, "lon": -73.9982030 }, + { "lat": 40.7510707, "lon": -73.9982318 }, + { "lat": 40.7510816, "lon": -73.9982734 }, + { "lat": 40.7510959, "lon": -73.9983147 }, + { "lat": 40.7514764, "lon": -73.9992230 }, + { "lat": 40.7514701, "lon": -73.9992278 }, + { "lat": 40.7514631, "lon": -73.9992331 }, + { "lat": 40.7510775, "lon": -73.9983206 }, + { "lat": 40.7510558, "lon": -73.9982771 }, + { "lat": 40.7510322, "lon": -73.9982417 }, + { "lat": 40.7510162, "lon": -73.9982216 }, + { "lat": 40.7510094, "lon": -73.9982130 }, + { "lat": 40.7510046, "lon": -73.9982059 }, + { "lat": 40.7510036, "lon": -73.9981979 }, + { "lat": 40.7510067, "lon": -73.9981897 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1238990618, + "bounds": { + "minlat": 40.7511575, + "minlon": -73.9982847, + "maxlat": 40.7512883, + "maxlon": -73.9979779 + }, + "nodes": [ + 11509842327, + 11509890691, + 11509842329, + 11509890690, + 11509842328 + ], + "geometry": [ + { "lat": 40.7512883, "lon": -73.9982847 }, + { "lat": 40.7512104, "lon": -73.9980970 }, + { "lat": 40.7512052, "lon": -73.9980845 }, + { "lat": 40.7511933, "lon": -73.9980558 }, + { "lat": 40.7511575, "lon": -73.9979779 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238990620, + "bounds": { + "minlat": 40.7516771, + "minlon": -74.0008162, + "maxlat": 40.7520056, + "maxlon": -74.0000281 + }, + "nodes": [ + 11153346568, + 6865730144, + 10792226610 + ], + "geometry": [ + { "lat": 40.7520056, "lon": -74.0008162 }, + { "lat": 40.7519507, "lon": -74.0006834 }, + { "lat": 40.7516771, "lon": -74.0000281 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 30th Street", + "name:ru": "Западная 30-я стрит", + "name_1": "West 30 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1238990621, + "bounds": { + "minlat": 40.7521328, + "minlon": -73.9994282, + "maxlat": 40.7522065, + "maxlon": -73.9993807 + }, + "nodes": [ + 11509842343, + 10171326398, + 427840998 + ], + "geometry": [ + { "lat": 40.7521328, "lon": -73.9994282 }, + { "lat": 40.7521519, "lon": -73.9994138 }, + { "lat": 40.7522065, "lon": -73.9993807 } + ], + "tags": { + "alt_name": "Lincoln Tunnel Approach", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 1238990622, + "bounds": { + "minlat": 40.7521728, + "minlon": -73.9995182, + "maxlat": 40.7522423, + "maxlon": -73.9994670 + }, + "nodes": [ + 427841062, + 10171326397, + 11509842344 + ], + "geometry": [ + { "lat": 40.7522423, "lon": -73.9994670 }, + { "lat": 40.7521939, "lon": -73.9995015 }, + { "lat": 40.7521728, "lon": -73.9995182 } + ], + "tags": { + "alt_name": "Lincoln Tunnel Approach", + "bicycle": "no", + "destination": "9th Avenue;West 30th Street", + "foot": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 1238990624, + "bounds": { + "minlat": 40.7518133, + "minlon": -73.9997474, + "maxlat": 40.7519043, + "maxlon": -73.9997147 + }, + "nodes": [ + 61274119, + 11509842352, + 12152867540, + 12152867539, + 427841071 + ], + "geometry": [ + { "lat": 40.7519043, "lon": -73.9997147 }, + { "lat": 40.7518742, "lon": -73.9997288 }, + { "lat": 40.7518521, "lon": -73.9997377 }, + { "lat": 40.7518305, "lon": -73.9997445 }, + { "lat": 40.7518133, "lon": -73.9997474 } + ], + "tags": { + "alt_name": "Lincoln Tunnel Approach", + "bicycle": "no", + "destination": "9th Avenue;West 30th Street", + "foot": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Dyer Avenue", + "oneway": "yes", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 1238990629, + "bounds": { + "minlat": 40.7511291, + "minlon": -73.9995631, + "maxlat": 40.7521279, + "maxlon": -73.9978595 + }, + "nodes": [ + 11509842348, + 10171326399, + 11509890672, + 11509890673, + 11509890674, + 11509890675, + 11509890688, + 11509890676, + 11509890677, + 11509890690, + 11509890678, + 11509890679, + 11509890680, + 11509842313, + 11509890681, + 11509890692, + 11509890682, + 11509890683, + 11509890686, + 12152867551, + 12152867552, + 11509890687, + 12152867553, + 12152867554, + 13859163541, + 11509842356, + 12152867555, + 12152867559, + 12152867560, + 11509842355, + 11509842363, + 11509842362, + 11509842325, + 11509842324, + 11509890693, + 11509842319, + 11509842316, + 11509842315, + 11509890691, + 2703339167, + 2703339174, + 2703339177, + 2703339186, + 2703339197, + 11509842348 + ], + "geometry": [ + { "lat": 40.7520976, "lon": -73.9993675 }, + { "lat": 40.7521275, "lon": -73.9993596 }, + { "lat": 40.7521270, "lon": -73.9993425 }, + { "lat": 40.7521279, "lon": -73.9993280 }, + { "lat": 40.7515086, "lon": -73.9978775 }, + { "lat": 40.7515007, "lon": -73.9978671 }, + { "lat": 40.7514931, "lon": -73.9978613 }, + { "lat": 40.7514837, "lon": -73.9978595 }, + { "lat": 40.7514650, "lon": -73.9978663 }, + { "lat": 40.7511933, "lon": -73.9980558 }, + { "lat": 40.7511454, "lon": -73.9980893 }, + { "lat": 40.7511337, "lon": -73.9981030 }, + { "lat": 40.7511292, "lon": -73.9981230 }, + { "lat": 40.7511291, "lon": -73.9981427 }, + { "lat": 40.7511365, "lon": -73.9981672 }, + { "lat": 40.7513144, "lon": -73.9985869 }, + { "lat": 40.7515867, "lon": -73.9992292 }, + { "lat": 40.7516629, "lon": -73.9994050 }, + { "lat": 40.7516861, "lon": -73.9994680 }, + { "lat": 40.7517045, "lon": -73.9994994 }, + { "lat": 40.7517234, "lon": -73.9995225 }, + { "lat": 40.7517452, "lon": -73.9995430 }, + { "lat": 40.7517682, "lon": -73.9995580 }, + { "lat": 40.7517870, "lon": -73.9995631 }, + { "lat": 40.7517910, "lon": -73.9995476 }, + { "lat": 40.7517951, "lon": -73.9995318 }, + { "lat": 40.7517751, "lon": -73.9995178 }, + { "lat": 40.7517539, "lon": -73.9994977 }, + { "lat": 40.7517435, "lon": -73.9994847 }, + { "lat": 40.7517280, "lon": -73.9994622 }, + { "lat": 40.7517117, "lon": -73.9994296 }, + { "lat": 40.7516880, "lon": -73.9993733 }, + { "lat": 40.7516614, "lon": -73.9993078 }, + { "lat": 40.7513781, "lon": -73.9986347 }, + { "lat": 40.7513514, "lon": -73.9985763 }, + { "lat": 40.7513168, "lon": -73.9985008 }, + { "lat": 40.7512944, "lon": -73.9984500 }, + { "lat": 40.7511611, "lon": -73.9981324 }, + { "lat": 40.7512104, "lon": -73.9980970 }, + { "lat": 40.7513044, "lon": -73.9980294 }, + { "lat": 40.7514812, "lon": -73.9979025 }, + { "lat": 40.7516464, "lon": -73.9983005 }, + { "lat": 40.7520361, "lon": -73.9992276 }, + { "lat": 40.7520626, "lon": -73.9992914 }, + { "lat": 40.7520976, "lon": -73.9993675 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238990634, + "bounds": { + "minlat": 40.7522794, + "minlon": -73.9999802, + "maxlat": 40.7524169, + "maxlon": -73.9998834 + }, + "nodes": [ + 11509890709, + 11509890739, + 11509890711, + 11509890740, + 11509890710 + ], + "geometry": [ + { "lat": 40.7522794, "lon": -73.9999802 }, + { "lat": 40.7523397, "lon": -73.9999378 }, + { "lat": 40.7523596, "lon": -73.9999237 }, + { "lat": 40.7523765, "lon": -73.9999118 }, + { "lat": 40.7524169, "lon": -73.9998834 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1238990637, + "bounds": { + "minlat": 40.7518815, + "minlon": -74.0007099, + "maxlat": 40.7525957, + "maxlon": -73.9995397 + }, + "nodes": [ + 11509890700, + 11509890721, + 11509890722, + 11509890723, + 11509890724, + 11509890725, + 11509890726, + 11509890727, + 8261122849, + 11509890728, + 11509890729, + 11509890730, + 11509890731, + 9423683649, + 11509890732, + 11509890733, + 11509890734, + 9423683650, + 11509890735, + 11509890740, + 11509890736, + 11509890737, + 10171326395, + 11509890738, + 2703228625, + 2703228630, + 11509890739, + 11144700474, + 11144700475, + 11144700476, + 11509890705, + 11144700477, + 11509890704, + 11509890703, + 11509890702, + 11509890701, + 11509890700 + ], + "geometry": [ + { "lat": 40.7519296, "lon": -73.9997586 }, + { "lat": 40.7518953, "lon": -73.9997671 }, + { "lat": 40.7518851, "lon": -73.9997807 }, + { "lat": 40.7518815, "lon": -73.9998055 }, + { "lat": 40.7518857, "lon": -73.9998535 }, + { "lat": 40.7518953, "lon": -73.9999061 }, + { "lat": 40.7519106, "lon": -73.9999598 }, + { "lat": 40.7522032, "lon": -74.0006787 }, + { "lat": 40.7522158, "lon": -74.0006976 }, + { "lat": 40.7522266, "lon": -74.0007054 }, + { "lat": 40.7522390, "lon": -74.0007099 }, + { "lat": 40.7522550, "lon": -74.0007057 }, + { "lat": 40.7522657, "lon": -74.0006977 }, + { "lat": 40.7525871, "lon": -74.0004656 }, + { "lat": 40.7525939, "lon": -74.0004555 }, + { "lat": 40.7525957, "lon": -74.0004434 }, + { "lat": 40.7525938, "lon": -74.0004326 }, + { "lat": 40.7525923, "lon": -74.0004281 }, + { "lat": 40.7525886, "lon": -74.0004166 }, + { "lat": 40.7523765, "lon": -73.9999118 }, + { "lat": 40.7522263, "lon": -73.9995544 }, + { "lat": 40.7522192, "lon": -73.9995450 }, + { "lat": 40.7522128, "lon": -73.9995397 }, + { "lat": 40.7522020, "lon": -73.9995416 }, + { "lat": 40.7521779, "lon": -73.9995588 }, + { "lat": 40.7523037, "lon": -73.9998547 }, + { "lat": 40.7523397, "lon": -73.9999378 }, + { "lat": 40.7523576, "lon": -73.9999791 }, + { "lat": 40.7525529, "lon": -74.0004317 }, + { "lat": 40.7522360, "lon": -74.0006632 }, + { "lat": 40.7521035, "lon": -74.0003460 }, + { "lat": 40.7520466, "lon": -74.0002089 }, + { "lat": 40.7519381, "lon": -73.9999478 }, + { "lat": 40.7519225, "lon": -73.9998986 }, + { "lat": 40.7519157, "lon": -73.9998436 }, + { "lat": 40.7519178, "lon": -73.9997989 }, + { "lat": 40.7519296, "lon": -73.9997586 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1238996506, + "bounds": { + "minlat": 40.7537656, + "minlon": -73.9995595, + "maxlat": 40.7538535, + "maxlon": -73.9993744 + }, + "nodes": [ + 11153346485, + 11509911664, + 11509911665, + 11509911666, + 11509915932, + 11509911667, + 11509911668, + 11509915869, + 11153346486, + 11509915870, + 11509915871, + 11153346485 + ], + "geometry": [ + { "lat": 40.7538190, "lon": -73.9995595 }, + { "lat": 40.7538498, "lon": -73.9995364 }, + { "lat": 40.7538535, "lon": -73.9995313 }, + { "lat": 40.7538523, "lon": -73.9995219 }, + { "lat": 40.7538451, "lon": -73.9995048 }, + { "lat": 40.7537901, "lon": -73.9993744 }, + { "lat": 40.7537656, "lon": -73.9993757 }, + { "lat": 40.7538177, "lon": -73.9995011 }, + { "lat": 40.7538229, "lon": -73.9995190 }, + { "lat": 40.7538241, "lon": -73.9995339 }, + { "lat": 40.7538228, "lon": -73.9995473 }, + { "lat": 40.7538190, "lon": -73.9995595 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239145223, + "bounds": { + "minlat": 40.7537017, + "minlon": -74.0059743, + "maxlat": 40.7564702, + "maxlon": -74.0040372 + }, + "nodes": [ + 9423683589, + 9423683594, + 9423683597, + 9423683596, + 9423683595, + 11511434497, + 1315234350, + 1315234554, + 11380791144, + 1315234276, + 9423683570, + 9423683571, + 1315234423, + 1315234301, + 9423683572, + 9423683573, + 1315234449, + 9423683574, + 1315234515, + 9423683575, + 9423683576, + 1315234361, + 9423683577, + 1315234269, + 9423683581, + 9423683580, + 9423683565, + 9423683564, + 1315234383, + 1315234323, + 11511554816, + 9423683449, + 1315234497, + 9423683448, + 9423683446, + 9423683447, + 1315234348, + 9423683445, + 9423683444, + 1315234519, + 9423680808, + 9423680809, + 1315234275, + 9423680805, + 9423680806, + 1315234395, + 9423680787, + 9421657362, + 8261044787, + 3091410976, + 9423680776, + 9423683497, + 9423683496, + 9423683495, + 9423683494, + 9423683493, + 9423683492, + 9423683491, + 9423683490, + 9423683489, + 9423683488, + 9423683487, + 9423683486, + 9423683485, + 9423683484, + 9423683483, + 9423683482, + 9423683481, + 9423683480, + 9423683479, + 1315234506, + 11511543663, + 11511543648, + 4319985867, + 1315234355, + 11511406186, + 11511406187, + 11511406188, + 11511406189, + 11511406190, + 11511406191, + 11511406192, + 11511406193, + 11511406198, + 11511406241, + 11511406242, + 11511406243, + 11511406244, + 11511406245, + 11511406246, + 11511406247, + 11511406248, + 11511406249, + 11511406250, + 11511406251, + 11511406252, + 11511406253, + 11511406254, + 11511406255, + 11511406256, + 11511406257, + 11511406258, + 11511406259, + 11511406260, + 11511406261, + 11511406262, + 11511406263, + 11511406264, + 11511406265, + 11511406266, + 11511406267, + 11511406268, + 11511434469, + 11511434470, + 11511434471, + 11511434472, + 11511434473, + 11511434474, + 11511434475, + 11511434476, + 9423683589 + ], + "geometry": [ + { "lat": 40.7537705, "lon": -74.0044305 }, + { "lat": 40.7537253, "lon": -74.0044635 }, + { "lat": 40.7537017, "lon": -74.0044805 }, + { "lat": 40.7537610, "lon": -74.0046211 }, + { "lat": 40.7537640, "lon": -74.0046188 }, + { "lat": 40.7537731, "lon": -74.0046409 }, + { "lat": 40.7542137, "lon": -74.0057108 }, + { "lat": 40.7542677, "lon": -74.0056732 }, + { "lat": 40.7542727, "lon": -74.0056798 }, + { "lat": 40.7542953, "lon": -74.0057052 }, + { "lat": 40.7543416, "lon": -74.0057528 }, + { "lat": 40.7543930, "lon": -74.0057971 }, + { "lat": 40.7544369, "lon": -74.0058292 }, + { "lat": 40.7544864, "lon": -74.0058614 }, + { "lat": 40.7545330, "lon": -74.0058915 }, + { "lat": 40.7545845, "lon": -74.0059139 }, + { "lat": 40.7546310, "lon": -74.0059328 }, + { "lat": 40.7546698, "lon": -74.0059473 }, + { "lat": 40.7547168, "lon": -74.0059571 }, + { "lat": 40.7547678, "lon": -74.0059660 }, + { "lat": 40.7548084, "lon": -74.0059711 }, + { "lat": 40.7548556, "lon": -74.0059738 }, + { "lat": 40.7548902, "lon": -74.0059743 }, + { "lat": 40.7550765, "lon": -74.0059468 }, + { "lat": 40.7551379, "lon": -74.0059221 }, + { "lat": 40.7552015, "lon": -74.0058927 }, + { "lat": 40.7552408, "lon": -74.0058722 }, + { "lat": 40.7552832, "lon": -74.0058486 }, + { "lat": 40.7553248, "lon": -74.0058222 }, + { "lat": 40.7561585, "lon": -74.0052127 }, + { "lat": 40.7562639, "lon": -74.0050477 }, + { "lat": 40.7562972, "lon": -74.0049956 }, + { "lat": 40.7563125, "lon": -74.0049650 }, + { "lat": 40.7563257, "lon": -74.0049376 }, + { "lat": 40.7563484, "lon": -74.0048896 }, + { "lat": 40.7563685, "lon": -74.0048408 }, + { "lat": 40.7563876, "lon": -74.0047891 }, + { "lat": 40.7564075, "lon": -74.0047294 }, + { "lat": 40.7564240, "lon": -74.0046675 }, + { "lat": 40.7564413, "lon": -74.0045874 }, + { "lat": 40.7564526, "lon": -74.0045230 }, + { "lat": 40.7564619, "lon": -74.0044466 }, + { "lat": 40.7564677, "lon": -74.0043721 }, + { "lat": 40.7564702, "lon": -74.0043083 }, + { "lat": 40.7564683, "lon": -74.0042298 }, + { "lat": 40.7564621, "lon": -74.0041578 }, + { "lat": 40.7564587, "lon": -74.0041263 }, + { "lat": 40.7564539, "lon": -74.0040875 }, + { "lat": 40.7564463, "lon": -74.0040372 }, + { "lat": 40.7564282, "lon": -74.0040414 }, + { "lat": 40.7564121, "lon": -74.0040451 }, + { "lat": 40.7564234, "lon": -74.0041219 }, + { "lat": 40.7564296, "lon": -74.0041745 }, + { "lat": 40.7564332, "lon": -74.0042311 }, + { "lat": 40.7564344, "lon": -74.0042745 }, + { "lat": 40.7564340, "lon": -74.0043241 }, + { "lat": 40.7564321, "lon": -74.0043780 }, + { "lat": 40.7564288, "lon": -74.0044270 }, + { "lat": 40.7564247, "lon": -74.0044700 }, + { "lat": 40.7564169, "lon": -74.0045305 }, + { "lat": 40.7564093, "lon": -74.0045708 }, + { "lat": 40.7564013, "lon": -74.0046108 }, + { "lat": 40.7563896, "lon": -74.0046592 }, + { "lat": 40.7563786, "lon": -74.0046988 }, + { "lat": 40.7563685, "lon": -74.0047331 }, + { "lat": 40.7563548, "lon": -74.0047767 }, + { "lat": 40.7563342, "lon": -74.0048312 }, + { "lat": 40.7563198, "lon": -74.0048666 }, + { "lat": 40.7563029, "lon": -74.0049043 }, + { "lat": 40.7562844, "lon": -74.0049412 }, + { "lat": 40.7562647, "lon": -74.0049194 }, + { "lat": 40.7562302, "lon": -74.0049706 }, + { "lat": 40.7561642, "lon": -74.0050685 }, + { "lat": 40.7561400, "lon": -74.0051045 }, + { "lat": 40.7561286, "lon": -74.0051214 }, + { "lat": 40.7561451, "lon": -74.0051408 }, + { "lat": 40.7561197, "lon": -74.0051706 }, + { "lat": 40.7560749, "lon": -74.0052178 }, + { "lat": 40.7560363, "lon": -74.0052526 }, + { "lat": 40.7559741, "lon": -74.0052996 }, + { "lat": 40.7558161, "lon": -74.0054157 }, + { "lat": 40.7557022, "lon": -74.0054977 }, + { "lat": 40.7556784, "lon": -74.0054379 }, + { "lat": 40.7555045, "lon": -74.0055631 }, + { "lat": 40.7555298, "lon": -74.0056236 }, + { "lat": 40.7554936, "lon": -74.0056484 }, + { "lat": 40.7554523, "lon": -74.0056773 }, + { "lat": 40.7553975, "lon": -74.0057185 }, + { "lat": 40.7553369, "lon": -74.0057610 }, + { "lat": 40.7552950, "lon": -74.0057897 }, + { "lat": 40.7552557, "lon": -74.0058134 }, + { "lat": 40.7552025, "lon": -74.0058434 }, + { "lat": 40.7551572, "lon": -74.0058646 }, + { "lat": 40.7551099, "lon": -74.0058847 }, + { "lat": 40.7550612, "lon": -74.0059000 }, + { "lat": 40.7550097, "lon": -74.0059121 }, + { "lat": 40.7549560, "lon": -74.0059228 }, + { "lat": 40.7549084, "lon": -74.0059260 }, + { "lat": 40.7548572, "lon": -74.0059277 }, + { "lat": 40.7548043, "lon": -74.0059244 }, + { "lat": 40.7547433, "lon": -74.0059149 }, + { "lat": 40.7546958, "lon": -74.0059051 }, + { "lat": 40.7546422, "lon": -74.0058884 }, + { "lat": 40.7545819, "lon": -74.0058641 }, + { "lat": 40.7545287, "lon": -74.0058373 }, + { "lat": 40.7544741, "lon": -74.0058032 }, + { "lat": 40.7544286, "lon": -74.0057706 }, + { "lat": 40.7543694, "lon": -74.0057223 }, + { "lat": 40.7543171, "lon": -74.0056717 }, + { "lat": 40.7542767, "lon": -74.0056274 }, + { "lat": 40.7542380, "lon": -74.0055782 }, + { "lat": 40.7542018, "lon": -74.0055276 }, + { "lat": 40.7541576, "lon": -74.0054515 }, + { "lat": 40.7541294, "lon": -74.0053994 }, + { "lat": 40.7541001, "lon": -74.0053413 }, + { "lat": 40.7540665, "lon": -74.0052653 }, + { "lat": 40.7540309, "lon": -74.0051837 }, + { "lat": 40.7539096, "lon": -74.0048989 }, + { "lat": 40.7537876, "lon": -74.0046002 }, + { "lat": 40.7538299, "lon": -74.0045681 }, + { "lat": 40.7537705, "lon": -74.0044305 } + ], + "tags": { + "access": "no", + "area": "yes", + "bridge": "viaduct", + "check_date": "2024-01-12", + "highway": "pedestrian", + "layer": "3", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239156635, + "bounds": { + "minlat": 40.7538933, + "minlon": -74.0030192, + "maxlat": 40.7541552, + "maxlon": -74.0027982 + }, + "nodes": [ + 11136560216, + 8261122259, + 11136560202, + 8261122258, + 11136560221, + 11136560207, + 11136560206, + 11136560213, + 11136560212, + 11136560211, + 11136560210, + 11136560196, + 8261122215, + 11136560197, + 11136560198, + 11136560219, + 11136560199, + 8261122217, + 8261122218, + 8261122219, + 11136560200, + 11511543634, + 11136560218, + 11511543635, + 11136560214, + 11136560215, + 11136560216 + ], + "geometry": [ + { "lat": 40.7538933, "lon": -74.0028906 }, + { "lat": 40.7539077, "lon": -74.0028562 }, + { "lat": 40.7539181, "lon": -74.0028272 }, + { "lat": 40.7539266, "lon": -74.0027982 }, + { "lat": 40.7539529, "lon": -74.0028071 }, + { "lat": 40.7539320, "lon": -74.0029134 }, + { "lat": 40.7540551, "lon": -74.0029557 }, + { "lat": 40.7540661, "lon": -74.0028994 }, + { "lat": 40.7540881, "lon": -74.0029067 }, + { "lat": 40.7540866, "lon": -74.0029163 }, + { "lat": 40.7541328, "lon": -74.0029314 }, + { "lat": 40.7541552, "lon": -74.0029390 }, + { "lat": 40.7541310, "lon": -74.0029704 }, + { "lat": 40.7541134, "lon": -74.0029862 }, + { "lat": 40.7540831, "lon": -74.0030041 }, + { "lat": 40.7540652, "lon": -74.0030112 }, + { "lat": 40.7540465, "lon": -74.0030167 }, + { "lat": 40.7540163, "lon": -74.0030192 }, + { "lat": 40.7539773, "lon": -74.0030133 }, + { "lat": 40.7539376, "lon": -74.0029938 }, + { "lat": 40.7539044, "lon": -74.0029682 }, + { "lat": 40.7540449, "lon": -74.0030146 }, + { "lat": 40.7540486, "lon": -74.0029967 }, + { "lat": 40.7540725, "lon": -74.0030051 }, + { "lat": 40.7540764, "lon": -74.0029865 }, + { "lat": 40.7539283, "lon": -74.0029334 }, + { "lat": 40.7538933, "lon": -74.0028906 } + ], + "tags": { + "access": "customers", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1239156636, + "bounds": { + "minlat": 40.7562436, + "minlon": -74.0052945, + "maxlat": 40.7563097, + "maxlon": -74.0051412 + }, + "nodes": [ + 11511543644, + 4599130020, + 42446678 + ], + "geometry": [ + { "lat": 40.7562436, "lon": -74.0051412 }, + { "lat": 40.7562562, "lon": -74.0051697 }, + { "lat": 40.7563097, "lon": -74.0052945 } + ], + "tags": { + "access": "permissive", + "description": "NYPD closed street and is using for parking", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "name_1": "West 33 Street", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1239156637, + "bounds": { + "minlat": 40.7535000, + "minlon": -74.0051045, + "maxlat": 40.7561642, + "maxlon": -74.0026299 + }, + "nodes": [ + 4319985867, + 11511543648, + 9423683428, + 11511543649, + 11511543650, + 11511543651, + 9423683429, + 11511543652, + 11511543653, + 11511543654, + 11511543655, + 11511543656, + 9423683670, + 8261122861, + 4319985867 + ], + "geometry": [ + { "lat": 40.7561400, "lon": -74.0051045 }, + { "lat": 40.7561642, "lon": -74.0050685 }, + { "lat": 40.7551518, "lon": -74.0026695 }, + { "lat": 40.7551427, "lon": -74.0026468 }, + { "lat": 40.7551320, "lon": -74.0026335 }, + { "lat": 40.7551204, "lon": -74.0026299 }, + { "lat": 40.7551123, "lon": -74.0026336 }, + { "lat": 40.7550998, "lon": -74.0026371 }, + { "lat": 40.7550884, "lon": -74.0026438 }, + { "lat": 40.7535971, "lon": -74.0037316 }, + { "lat": 40.7535673, "lon": -74.0037477 }, + { "lat": 40.7535000, "lon": -74.0037804 }, + { "lat": 40.7535286, "lon": -74.0038482 }, + { "lat": 40.7551171, "lon": -74.0026864 }, + { "lat": 40.7561400, "lon": -74.0051045 } + ], + "tags": { + "area": "yes", + "bridge": "yes", + "highway": "pedestrian", + "layer": "1", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1239156638, + "bounds": { + "minlat": 40.7560480, + "minlon": -74.0049706, + "maxlat": 40.7562501, + "maxlon": -74.0044800 + }, + "nodes": [ + 11511543659, + 4696815192, + 9421657381, + 11511543660, + 11511543661, + 11511543662, + 11511543663, + 11511543664, + 11511543659 + ], + "geometry": [ + { "lat": 40.7562501, "lon": -74.0049394 }, + { "lat": 40.7560629, "lon": -74.0044800 }, + { "lat": 40.7560515, "lon": -74.0045018 }, + { "lat": 40.7560480, "lon": -74.0045179 }, + { "lat": 40.7560504, "lon": -74.0045408 }, + { "lat": 40.7560559, "lon": -74.0045596 }, + { "lat": 40.7562302, "lon": -74.0049706 }, + { "lat": 40.7562406, "lon": -74.0049543 }, + { "lat": 40.7562501, "lon": -74.0049394 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1239156639, + "bounds": { + "minlat": 40.7568121, + "minlon": -74.0046443, + "maxlat": 40.7569054, + "maxlon": -74.0044180 + }, + "nodes": [ + 8261122874, + 11511554772 + ], + "geometry": [ + { "lat": 40.7568121, "lon": -74.0044180 }, + { "lat": 40.7569054, "lon": -74.0046443 } + ], + "tags": { + "change:lanes:backward": "yes", + "change:lanes:forward": "yes|not_right|no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "surface": "asphalt", + "turn:lanes:forward": "left||right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1239156643, + "bounds": { + "minlat": 40.7552237, + "minlon": -74.0051492, + "maxlat": 40.7568525, + "maxlon": -74.0021672 + }, + "nodes": [ + 11511554791, + 9421657380, + 11511554792, + 11511554793, + 11511554794, + 11511554795, + 9423683426, + 11511554796, + 11511554797, + 11511554798, + 11511554799, + 9423683425, + 11511554800, + 11511554801, + 11511554784, + 11511554802, + 11511554803, + 11511554804, + 11511554805, + 11511554806, + 11511554780, + 11511554823, + 9421649552, + 9421657418, + 11511554807, + 11511554808, + 11511554809, + 11511554810, + 11511554811, + 9421657419, + 11511554812, + 11511554813, + 11511554814, + 9423683433, + 11511554815, + 11511554816, + 11511554824, + 11511554817, + 4696815193, + 4696815194, + 9423680749, + 4696815191, + 9423680729, + 9423680784, + 9423680746, + 9423680756, + 9423680801, + 9423680745, + 9423680743, + 9423680727, + 9423680747, + 8261044814, + 8261044813, + 9423680748, + 9421657376, + 11511554791 + ], + "geometry": [ + { "lat": 40.7560290, "lon": -74.0043967 }, + { "lat": 40.7560091, "lon": -74.0044011 }, + { "lat": 40.7559994, "lon": -74.0044014 }, + { "lat": 40.7559894, "lon": -74.0043961 }, + { "lat": 40.7559827, "lon": -74.0043850 }, + { "lat": 40.7552434, "lon": -74.0026309 }, + { "lat": 40.7552332, "lon": -74.0026079 }, + { "lat": 40.7552266, "lon": -74.0025909 }, + { "lat": 40.7552237, "lon": -74.0025758 }, + { "lat": 40.7552251, "lon": -74.0025586 }, + { "lat": 40.7552292, "lon": -74.0025463 }, + { "lat": 40.7552324, "lon": -74.0025416 }, + { "lat": 40.7552357, "lon": -74.0025369 }, + { "lat": 40.7552451, "lon": -74.0025293 }, + { "lat": 40.7557311, "lon": -74.0021762 }, + { "lat": 40.7557413, "lon": -74.0021687 }, + { "lat": 40.7557529, "lon": -74.0021672 }, + { "lat": 40.7557646, "lon": -74.0021705 }, + { "lat": 40.7557738, "lon": -74.0021791 }, + { "lat": 40.7557805, "lon": -74.0021916 }, + { "lat": 40.7557930, "lon": -74.0022188 }, + { "lat": 40.7566186, "lon": -74.0041793 }, + { "lat": 40.7566522, "lon": -74.0042591 }, + { "lat": 40.7568462, "lon": -74.0047197 }, + { "lat": 40.7568517, "lon": -74.0047357 }, + { "lat": 40.7568525, "lon": -74.0047493 }, + { "lat": 40.7568501, "lon": -74.0047630 }, + { "lat": 40.7568451, "lon": -74.0047745 }, + { "lat": 40.7568352, "lon": -74.0047828 }, + { "lat": 40.7568142, "lon": -74.0047972 }, + { "lat": 40.7563395, "lon": -74.0051429 }, + { "lat": 40.7563268, "lon": -74.0051480 }, + { "lat": 40.7563135, "lon": -74.0051492 }, + { "lat": 40.7563021, "lon": -74.0051364 }, + { "lat": 40.7562913, "lon": -74.0051177 }, + { "lat": 40.7562639, "lon": -74.0050477 }, + { "lat": 40.7562733, "lon": -74.0050327 }, + { "lat": 40.7562823, "lon": -74.0050184 }, + { "lat": 40.7563166, "lon": -74.0051025 }, + { "lat": 40.7568050, "lon": -74.0047572 }, + { "lat": 40.7565755, "lon": -74.0042104 }, + { "lat": 40.7565232, "lon": -74.0040818 }, + { "lat": 40.7564767, "lon": -74.0039721 }, + { "lat": 40.7563592, "lon": -74.0036959 }, + { "lat": 40.7563383, "lon": -74.0036469 }, + { "lat": 40.7563214, "lon": -74.0036309 }, + { "lat": 40.7563062, "lon": -74.0036167 }, + { "lat": 40.7563168, "lon": -74.0035963 }, + { "lat": 40.7562281, "lon": -74.0033879 }, + { "lat": 40.7560567, "lon": -74.0029850 }, + { "lat": 40.7558890, "lon": -74.0025914 }, + { "lat": 40.7557381, "lon": -74.0022371 }, + { "lat": 40.7552625, "lon": -74.0025775 }, + { "lat": 40.7556242, "lon": -74.0034341 }, + { "lat": 40.7560019, "lon": -74.0043305 }, + { "lat": 40.7560290, "lon": -74.0043967 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1239166224, + "bounds": { + "minlat": 40.7533698, + "minlon": -74.0040591, + "maxlat": 40.7534893, + "maxlon": -74.0038349 + }, + "nodes": [ + 11511635744, + 11511635757, + 11511635749, + 11511635750, + 11511635751, + 8261122119, + 11511635752, + 11511635753, + 11511635754, + 11511635756, + 9423683676, + 9423683675, + 11511635743, + 11511635747, + 11511635746, + 11511635755, + 11511635745, + 11511635744 + ], + "geometry": [ + { "lat": 40.7534541, "lon": -74.0040358 }, + { "lat": 40.7534349, "lon": -74.0040494 }, + { "lat": 40.7534212, "lon": -74.0040591 }, + { "lat": 40.7533738, "lon": -74.0039511 }, + { "lat": 40.7533698, "lon": -74.0039339 }, + { "lat": 40.7533708, "lon": -74.0039143 }, + { "lat": 40.7533743, "lon": -74.0038980 }, + { "lat": 40.7533851, "lon": -74.0038815 }, + { "lat": 40.7534241, "lon": -74.0038349 }, + { "lat": 40.7534391, "lon": -74.0038703 }, + { "lat": 40.7534532, "lon": -74.0039037 }, + { "lat": 40.7534579, "lon": -74.0039003 }, + { "lat": 40.7534893, "lon": -74.0039743 }, + { "lat": 40.7534810, "lon": -74.0039804 }, + { "lat": 40.7534376, "lon": -74.0038776 }, + { "lat": 40.7534060, "lon": -74.0039008 }, + { "lat": 40.7533992, "lon": -74.0039058 }, + { "lat": 40.7534541, "lon": -74.0040358 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1239197093, + "bounds": { + "minlat": 40.7525727, + "minlon": -74.0021932, + "maxlat": 40.7526178, + "maxlon": -74.0021278 + }, + "nodes": [ + 11511992645, + 11511992648, + 11511992658, + 11511992650, + 11511992593, + 11511992656, + 11511992645 + ], + "geometry": [ + { "lat": 40.7526048, "lon": -74.0021932 }, + { "lat": 40.7525987, "lon": -74.0021889 }, + { "lat": 40.7525863, "lon": -74.0021596 }, + { "lat": 40.7525727, "lon": -74.0021278 }, + { "lat": 40.7526178, "lon": -74.0021562 }, + { "lat": 40.7526113, "lon": -74.0021749 }, + { "lat": 40.7526048, "lon": -74.0021932 } + ], + "tags": { + "area": "yes", + "bridge": "viaduct", + "check_date": "2024-01-12", + "highway": "pedestrian", + "layer": "3", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1239197094, + "bounds": { + "minlat": 40.7525195, + "minlon": -74.0022113, + "maxlat": 40.7525987, + "maxlon": -74.0020738 + }, + "nodes": [ + 11511992648, + 11511992653, + 11511992657, + 11511992654, + 11511992655, + 11511992650, + 11511992658, + 11511992648 + ], + "geometry": [ + { "lat": 40.7525987, "lon": -74.0021889 }, + { "lat": 40.7525685, "lon": -74.0022113 }, + { "lat": 40.7525324, "lon": -74.0021264 }, + { "lat": 40.7525195, "lon": -74.0020962 }, + { "lat": 40.7525497, "lon": -74.0020738 }, + { "lat": 40.7525727, "lon": -74.0021278 }, + { "lat": 40.7525863, "lon": -74.0021596 }, + { "lat": 40.7525987, "lon": -74.0021889 } + ], + "tags": { + "area": "yes", + "bridge": "viaduct", + "check_date": "2024-01-12", + "highway": "pedestrian", + "layer": "3", + "lit": "yes", + "surface": "metal" + } +}, +{ + "type": "way", + "id": 1239241149, + "bounds": { + "minlat": 40.7520656, + "minlon": -74.0020361, + "maxlat": 40.7524316, + "maxlon": -74.0019152 + }, + "nodes": [ + 11512412932, + 11512412933, + 11512412934, + 6865730147 + ], + "geometry": [ + { "lat": 40.7524316, "lon": -74.0020290 }, + { "lat": 40.7524183, "lon": -74.0020357 }, + { "lat": 40.7524031, "lon": -74.0020361 }, + { "lat": 40.7520656, "lon": -74.0019152 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1239241150, + "bounds": { + "minlat": 40.7517635, + "minlon": -74.0021408, + "maxlat": 40.7518268, + "maxlon": -74.0020920 + }, + "nodes": [ + 6865730145, + 11512413098, + 8261123416, + 11512413097, + 11512412892 + ], + "geometry": [ + { "lat": 40.7517635, "lon": -74.0021408 }, + { "lat": 40.7517938, "lon": -74.0021175 }, + { "lat": 40.7518108, "lon": -74.0021043 }, + { "lat": 40.7518222, "lon": -74.0020956 }, + { "lat": 40.7518268, "lon": -74.0020920 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1239241158, + "bounds": { + "minlat": 40.7524316, + "minlon": -74.0020290, + "maxlat": 40.7524970, + "maxlon": -74.0019849 + }, + "nodes": [ + 11512412931, + 11512412994, + 11512412932 + ], + "geometry": [ + { "lat": 40.7524970, "lon": -74.0019849 }, + { "lat": 40.7524412, "lon": -74.0020226 }, + { "lat": 40.7524316, "lon": -74.0020290 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1239241160, + "bounds": { + "minlat": 40.7518268, + "minlon": -74.0020920, + "maxlat": 40.7520656, + "maxlon": -74.0019152 + }, + "nodes": [ + 6865730147, + 6865730150, + 11512412892 + ], + "geometry": [ + { "lat": 40.7520656, "lon": -74.0019152 }, + { "lat": 40.7519588, "lon": -74.0019943 }, + { "lat": 40.7518268, "lon": -74.0020920 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1239241173, + "bounds": { + "minlat": 40.7521472, + "minlon": -74.0022208, + "maxlat": 40.7525015, + "maxlon": -74.0020149 + }, + "nodes": [ + 11512412993, + 11512412949, + 11512412980, + 11512412979, + 11512412978, + 11512412977, + 11512412976, + 11512412975, + 11512412974, + 11512412973, + 11512412972, + 11512412971, + 11512412970, + 11512412969, + 11512412968, + 11512412967, + 11512412966, + 11512412965, + 11512412964, + 11512412963, + 11512412962, + 11512412961, + 11512412960, + 11512412959, + 11512412958, + 11512412957, + 11512412956, + 11512412995, + 11512412952, + 11512412954, + 11512412955, + 9441166212, + 4143897823, + 11512412991, + 11512412992, + 11512412993 + ], + "geometry": [ + { "lat": 40.7521932, "lon": -74.0020984 }, + { "lat": 40.7521777, "lon": -74.0021105 }, + { "lat": 40.7521708, "lon": -74.0021159 }, + { "lat": 40.7521615, "lon": -74.0021046 }, + { "lat": 40.7521556, "lon": -74.0020715 }, + { "lat": 40.7521472, "lon": -74.0020386 }, + { "lat": 40.7521584, "lon": -74.0020149 }, + { "lat": 40.7521863, "lon": -74.0020312 }, + { "lat": 40.7521992, "lon": -74.0020257 }, + { "lat": 40.7522358, "lon": -74.0020433 }, + { "lat": 40.7522420, "lon": -74.0020529 }, + { "lat": 40.7522504, "lon": -74.0020590 }, + { "lat": 40.7522756, "lon": -74.0020460 }, + { "lat": 40.7522991, "lon": -74.0020653 }, + { "lat": 40.7523124, "lon": -74.0020646 }, + { "lat": 40.7523327, "lon": -74.0020755 }, + { "lat": 40.7523432, "lon": -74.0020672 }, + { "lat": 40.7523536, "lon": -74.0020728 }, + { "lat": 40.7523493, "lon": -74.0020899 }, + { "lat": 40.7523613, "lon": -74.0021004 }, + { "lat": 40.7523740, "lon": -74.0020952 }, + { "lat": 40.7524000, "lon": -74.0021115 }, + { "lat": 40.7524092, "lon": -74.0021025 }, + { "lat": 40.7524232, "lon": -74.0021099 }, + { "lat": 40.7524270, "lon": -74.0021289 }, + { "lat": 40.7524500, "lon": -74.0021400 }, + { "lat": 40.7524591, "lon": -74.0021346 }, + { "lat": 40.7524697, "lon": -74.0021433 }, + { "lat": 40.7524907, "lon": -74.0021945 }, + { "lat": 40.7525015, "lon": -74.0022208 }, + { "lat": 40.7524802, "lon": -74.0022118 }, + { "lat": 40.7524733, "lon": -74.0022185 }, + { "lat": 40.7522162, "lon": -74.0020806 }, + { "lat": 40.7522058, "lon": -74.0020700 }, + { "lat": 40.7521908, "lon": -74.0020804 }, + { "lat": 40.7521932, "lon": -74.0020984 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1239280940, + "bounds": { + "minlat": 40.7489459, + "minlon": -73.9919982, + "maxlat": 40.7490226, + "maxlon": -73.9919173 + }, + "nodes": [ + 11512945697, + 11512945698, + 9414480637, + 11512945699, + 11512945700, + 11512945701, + 9414480635, + 11512945702, + 11512945703, + 11512945704, + 11512945719, + 11512945705, + 11512945706, + 11512945697 + ], + "geometry": [ + { "lat": 40.7489459, "lon": -73.9919982 }, + { "lat": 40.7489918, "lon": -73.9919645 }, + { "lat": 40.7489972, "lon": -73.9919587 }, + { "lat": 40.7490010, "lon": -73.9919546 }, + { "lat": 40.7490061, "lon": -73.9919409 }, + { "lat": 40.7490072, "lon": -73.9919311 }, + { "lat": 40.7490062, "lon": -73.9919173 }, + { "lat": 40.7490222, "lon": -73.9919529 }, + { "lat": 40.7490226, "lon": -73.9919586 }, + { "lat": 40.7490203, "lon": -73.9919651 }, + { "lat": 40.7490054, "lon": -73.9919758 }, + { "lat": 40.7489795, "lon": -73.9919943 }, + { "lat": 40.7489714, "lon": -73.9919982 }, + { "lat": 40.7489459, "lon": -73.9919982 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239280941, + "bounds": { + "minlat": 40.7490743, + "minlon": -73.9923009, + "maxlat": 40.7491730, + "maxlon": -73.9921239 + }, + "nodes": [ + 11512945707, + 11512945718, + 11512945708, + 11512945709, + 11512945710, + 11512945717, + 11512945711, + 11512945712, + 11512945713, + 11512945714, + 11512945715, + 9414480627, + 11512945716, + 11512945707 + ], + "geometry": [ + { "lat": 40.7490743, "lon": -73.9921522 }, + { "lat": 40.7490901, "lon": -73.9921412 }, + { "lat": 40.7491141, "lon": -73.9921245 }, + { "lat": 40.7491186, "lon": -73.9921239 }, + { "lat": 40.7491228, "lon": -73.9921296 }, + { "lat": 40.7491267, "lon": -73.9921394 }, + { "lat": 40.7491722, "lon": -73.9922519 }, + { "lat": 40.7491730, "lon": -73.9922619 }, + { "lat": 40.7491682, "lon": -73.9923009 }, + { "lat": 40.7491157, "lon": -73.9921737 }, + { "lat": 40.7491088, "lon": -73.9921613 }, + { "lat": 40.7490966, "lon": -73.9921537 }, + { "lat": 40.7490864, "lon": -73.9921515 }, + { "lat": 40.7490743, "lon": -73.9921522 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239280945, + "bounds": { + "minlat": 40.7501535, + "minlon": -73.9911178, + "maxlat": 40.7502569, + "maxlon": -73.9909940 + }, + "nodes": [ + 11512945721, + 11512945722, + 11512945723, + 11512945724, + 11512945725, + 9413881741, + 11512945726, + 11512945727, + 11512945728, + 11512945729, + 9413881747, + 11512945730, + 11512945731, + 11512945732, + 11512945721 + ], + "geometry": [ + { "lat": 40.7501535, "lon": -73.9910934 }, + { "lat": 40.7502245, "lon": -73.9910394 }, + { "lat": 40.7502307, "lon": -73.9910336 }, + { "lat": 40.7502366, "lon": -73.9910210 }, + { "lat": 40.7502371, "lon": -73.9910088 }, + { "lat": 40.7502345, "lon": -73.9909940 }, + { "lat": 40.7502542, "lon": -73.9910433 }, + { "lat": 40.7502569, "lon": -73.9910569 }, + { "lat": 40.7502567, "lon": -73.9910707 }, + { "lat": 40.7502527, "lon": -73.9910838 }, + { "lat": 40.7502466, "lon": -73.9910906 }, + { "lat": 40.7502205, "lon": -73.9911105 }, + { "lat": 40.7502108, "lon": -73.9911170 }, + { "lat": 40.7502026, "lon": -73.9911178 }, + { "lat": 40.7501535, "lon": -73.9910934 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239280971, + "bounds": { + "minlat": 40.7508237, + "minlon": -73.9906448, + "maxlat": 40.7509189, + "maxlon": -73.9904772 + }, + "nodes": [ + 11513000310, + 11513000311, + 11513000312, + 7782217015, + 11513000313, + 11513000314, + 11513000315, + 11513000316, + 11513000317, + 11513000335, + 11513000318, + 11513000319, + 11513000320, + 11513000321, + 11513000322, + 11513000323, + 11513000324, + 11513000325, + 11513000310 + ], + "geometry": [ + { "lat": 40.7508237, "lon": -73.9906363 }, + { "lat": 40.7508789, "lon": -73.9905959 }, + { "lat": 40.7508861, "lon": -73.9905836 }, + { "lat": 40.7508881, "lon": -73.9905738 }, + { "lat": 40.7508882, "lon": -73.9905604 }, + { "lat": 40.7508850, "lon": -73.9905474 }, + { "lat": 40.7508555, "lon": -73.9904772 }, + { "lat": 40.7508796, "lon": -73.9904842 }, + { "lat": 40.7508858, "lon": -73.9904880 }, + { "lat": 40.7509116, "lon": -73.9905494 }, + { "lat": 40.7509148, "lon": -73.9905573 }, + { "lat": 40.7509184, "lon": -73.9905690 }, + { "lat": 40.7509189, "lon": -73.9905795 }, + { "lat": 40.7509169, "lon": -73.9905888 }, + { "lat": 40.7509113, "lon": -73.9905985 }, + { "lat": 40.7508997, "lon": -73.9906098 }, + { "lat": 40.7508549, "lon": -73.9906425 }, + { "lat": 40.7508476, "lon": -73.9906448 }, + { "lat": 40.7508237, "lon": -73.9906363 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1239281005, + "bounds": { + "minlat": 40.7514568, + "minlon": -73.9928187, + "maxlat": 40.7517342, + "maxlon": -73.9923503 + }, + "nodes": [ + 11513000426, + 11513000427, + 11513000433, + 11513000414, + 11513000413, + 11513000412, + 11513000411, + 11513000436, + 11513000379, + 11513000430, + 1514413397, + 1514413395, + 11513000415, + 11513000416, + 11513000417, + 11513000418, + 11513000425, + 1514413400, + 11513000426 + ], + "geometry": [ + { "lat": 40.7517342, "lon": -73.9927343 }, + { "lat": 40.7517255, "lon": -73.9927147 }, + { "lat": 40.7517098, "lon": -73.9926792 }, + { "lat": 40.7516973, "lon": -73.9926512 }, + { "lat": 40.7516570, "lon": -73.9926813 }, + { "lat": 40.7516113, "lon": -73.9925747 }, + { "lat": 40.7516517, "lon": -73.9925446 }, + { "lat": 40.7516100, "lon": -73.9924481 }, + { "lat": 40.7515677, "lon": -73.9923503 }, + { "lat": 40.7515063, "lon": -73.9923953 }, + { "lat": 40.7514999, "lon": -73.9923999 }, + { "lat": 40.7514568, "lon": -73.9924311 }, + { "lat": 40.7515395, "lon": -73.9926284 }, + { "lat": 40.7515576, "lon": -73.9926151 }, + { "lat": 40.7516029, "lon": -73.9927220 }, + { "lat": 40.7515845, "lon": -73.9927356 }, + { "lat": 40.7516108, "lon": -73.9927984 }, + { "lat": 40.7516193, "lon": -73.9928187 }, + { "lat": 40.7517342, "lon": -73.9927343 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1239281023, + "bounds": { + "minlat": 40.7503373, + "minlon": -73.9950223, + "maxlat": 40.7511513, + "maxlon": -73.9943724 + }, + "nodes": [ + 11513000508, + 11513000509, + 11513000510, + 11513000511, + 11513000512, + 11513000513, + 11513000520, + 11513000514, + 11513000515, + 11513000516, + 9413881857, + 9413881870, + 9413881869, + 9413881868, + 9413881867, + 9413881871, + 9413881872, + 9413881856, + 9413881844, + 9413881855, + 9413881854, + 9413881853, + 9413881852, + 9413881851, + 9413881861, + 9413881860, + 9413881859, + 9413881780, + 9413881779, + 9413881778, + 9413881777, + 9413881776, + 9413881791, + 9413881790, + 9413881789, + 9413881769, + 9413881788, + 9413881787, + 9413881786, + 9413881785, + 9413881784, + 9413881783, + 9413881782, + 9413881781, + 9413881792, + 11513000517, + 11513000518, + 11513000519, + 9413881770, + 9419131287, + 9419131286, + 9413881845, + 9419131285, + 9419131284, + 9419131283, + 9419131282, + 9419131281, + 9413881846, + 9419131280, + 9419131279, + 11513000508 + ], + "geometry": [ + { "lat": 40.7504221, "lon": -73.9950223 }, + { "lat": 40.7504128, "lon": -73.9950153 }, + { "lat": 40.7504016, "lon": -73.9950143 }, + { "lat": 40.7503914, "lon": -73.9950136 }, + { "lat": 40.7503837, "lon": -73.9950083 }, + { "lat": 40.7503777, "lon": -73.9949963 }, + { "lat": 40.7503696, "lon": -73.9949774 }, + { "lat": 40.7503396, "lon": -73.9949071 }, + { "lat": 40.7503373, "lon": -73.9948945 }, + { "lat": 40.7503399, "lon": -73.9948854 }, + { "lat": 40.7503728, "lon": -73.9948609 }, + { "lat": 40.7503684, "lon": -73.9948649 }, + { "lat": 40.7503665, "lon": -73.9948688 }, + { "lat": 40.7503659, "lon": -73.9948735 }, + { "lat": 40.7503716, "lon": -73.9948884 }, + { "lat": 40.7503745, "lon": -73.9948899 }, + { "lat": 40.7503781, "lon": -73.9948886 }, + { "lat": 40.7503816, "lon": -73.9948866 }, + { "lat": 40.7503944, "lon": -73.9948775 }, + { "lat": 40.7504367, "lon": -73.9948474 }, + { "lat": 40.7504384, "lon": -73.9948449 }, + { "lat": 40.7504395, "lon": -73.9948412 }, + { "lat": 40.7504391, "lon": -73.9948372 }, + { "lat": 40.7504336, "lon": -73.9948243 }, + { "lat": 40.7504316, "lon": -73.9948225 }, + { "lat": 40.7504290, "lon": -73.9948218 }, + { "lat": 40.7504261, "lon": -73.9948231 }, + { "lat": 40.7508563, "lon": -73.9945098 }, + { "lat": 40.7508547, "lon": -73.9945122 }, + { "lat": 40.7508536, "lon": -73.9945160 }, + { "lat": 40.7508540, "lon": -73.9945199 }, + { "lat": 40.7508596, "lon": -73.9945328 }, + { "lat": 40.7508616, "lon": -73.9945346 }, + { "lat": 40.7508642, "lon": -73.9945352 }, + { "lat": 40.7508671, "lon": -73.9945339 }, + { "lat": 40.7509163, "lon": -73.9944978 }, + { "lat": 40.7509505, "lon": -73.9944730 }, + { "lat": 40.7509534, "lon": -73.9944695 }, + { "lat": 40.7509547, "lon": -73.9944645 }, + { "lat": 40.7509546, "lon": -73.9944596 }, + { "lat": 40.7509531, "lon": -73.9944549 }, + { "lat": 40.7509507, "lon": -73.9944502 }, + { "lat": 40.7509475, "lon": -73.9944479 }, + { "lat": 40.7509434, "lon": -73.9944475 }, + { "lat": 40.7509397, "lon": -73.9944484 }, + { "lat": 40.7509516, "lon": -73.9944385 }, + { "lat": 40.7509627, "lon": -73.9944313 }, + { "lat": 40.7511513, "lon": -73.9943724 }, + { "lat": 40.7509312, "lon": -73.9945330 }, + { "lat": 40.7504221, "lon": -73.9949045 }, + { "lat": 40.7504128, "lon": -73.9949119 }, + { "lat": 40.7504066, "lon": -73.9949171 }, + { "lat": 40.7504013, "lon": -73.9949237 }, + { "lat": 40.7503984, "lon": -73.9949302 }, + { "lat": 40.7503956, "lon": -73.9949381 }, + { "lat": 40.7503951, "lon": -73.9949460 }, + { "lat": 40.7503951, "lon": -73.9949530 }, + { "lat": 40.7503963, "lon": -73.9949592 }, + { "lat": 40.7503979, "lon": -73.9949649 }, + { "lat": 40.7504010, "lon": -73.9949722 }, + { "lat": 40.7504221, "lon": -73.9950223 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1239281026, + "bounds": { + "minlat": 40.7500629, + "minlon": -73.9951635, + "maxlat": 40.7503205, + "maxlon": -73.9949811 + }, + "nodes": [ + 11513000527, + 11513000539, + 11513000528, + 11513000529, + 11513000530, + 11513000531, + 11513000532, + 11513000533, + 11513000534, + 11513000535, + 11513000536, + 9413881848, + 11513000537, + 11513000538, + 9413881849, + 11513000527 + ], + "geometry": [ + { "lat": 40.7503205, "lon": -73.9950321 }, + { "lat": 40.7503135, "lon": -73.9950154 }, + { "lat": 40.7503064, "lon": -73.9949982 }, + { "lat": 40.7502997, "lon": -73.9949855 }, + { "lat": 40.7502926, "lon": -73.9949818 }, + { "lat": 40.7502831, "lon": -73.9949811 }, + { "lat": 40.7502719, "lon": -73.9949873 }, + { "lat": 40.7501709, "lon": -73.9950557 }, + { "lat": 40.7501495, "lon": -73.9950758 }, + { "lat": 40.7500629, "lon": -73.9951635 }, + { "lat": 40.7502731, "lon": -73.9950128 }, + { "lat": 40.7502805, "lon": -73.9950075 }, + { "lat": 40.7502911, "lon": -73.9950057 }, + { "lat": 40.7503013, "lon": -73.9950084 }, + { "lat": 40.7503106, "lon": -73.9950174 }, + { "lat": 40.7503205, "lon": -73.9950321 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239474577, + "bounds": { + "minlat": 40.7170055, + "minlon": -73.9990649, + "maxlat": 40.7171881, + "maxlon": -73.9986984 + }, + "nodes": [ + 11514578283, + 11514578284, + 11514578285, + 11514578286, + 11514578287, + 11514578288, + 11514578289, + 11514578290, + 11514578291, + 11514578292, + 11514578293, + 11514578294, + 11514578295, + 11514578296, + 11514578297, + 11514578298, + 11514578299, + 7641859749, + 11514578300, + 11514578301, + 11514578305, + 11514578302, + 11514578303, + 11514578278, + 11514578304, + 11514578283 + ], + "geometry": [ + { "lat": 40.7170055, "lon": -73.9987052 }, + { "lat": 40.7170223, "lon": -73.9986996 }, + { "lat": 40.7170302, "lon": -73.9986984 }, + { "lat": 40.7170370, "lon": -73.9987003 }, + { "lat": 40.7170488, "lon": -73.9987052 }, + { "lat": 40.7170638, "lon": -73.9987184 }, + { "lat": 40.7170770, "lon": -73.9987356 }, + { "lat": 40.7170886, "lon": -73.9987559 }, + { "lat": 40.7171261, "lon": -73.9988496 }, + { "lat": 40.7171404, "lon": -73.9988807 }, + { "lat": 40.7171545, "lon": -73.9989055 }, + { "lat": 40.7171688, "lon": -73.9989288 }, + { "lat": 40.7171807, "lon": -73.9989503 }, + { "lat": 40.7171857, "lon": -73.9989627 }, + { "lat": 40.7171881, "lon": -73.9989734 }, + { "lat": 40.7171880, "lon": -73.9989871 }, + { "lat": 40.7171863, "lon": -73.9990010 }, + { "lat": 40.7171854, "lon": -73.9990053 }, + { "lat": 40.7171819, "lon": -73.9990219 }, + { "lat": 40.7171704, "lon": -73.9990649 }, + { "lat": 40.7171475, "lon": -73.9990034 }, + { "lat": 40.7170437, "lon": -73.9987250 }, + { "lat": 40.7170345, "lon": -73.9987120 }, + { "lat": 40.7170249, "lon": -73.9987070 }, + { "lat": 40.7170173, "lon": -73.9987051 }, + { "lat": 40.7170055, "lon": -73.9987052 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239480101, + "bounds": { + "minlat": 40.7496420, + "minlon": -73.9931856, + "maxlat": 40.7496994, + "maxlon": -73.9930958 + }, + "nodes": [ + 9414461038, + 11514575294, + 11514575295, + 11514575296, + 11514575297, + 11514575298, + 11514575299, + 9414461039, + 11514575300, + 11514575301, + 11514575302, + 11514575303, + 11514575304, + 11514575305, + 11514575306, + 11514575307, + 11514575308, + 11514575309, + 9414461038 + ], + "geometry": [ + { "lat": 40.7496925, "lon": -73.9931722 }, + { "lat": 40.7496971, "lon": -73.9931608 }, + { "lat": 40.7496994, "lon": -73.9931537 }, + { "lat": 40.7496990, "lon": -73.9931459 }, + { "lat": 40.7496814, "lon": -73.9931010 }, + { "lat": 40.7496780, "lon": -73.9930963 }, + { "lat": 40.7496731, "lon": -73.9930958 }, + { "lat": 40.7496606, "lon": -73.9930962 }, + { "lat": 40.7496500, "lon": -73.9930970 }, + { "lat": 40.7496446, "lon": -73.9930993 }, + { "lat": 40.7496420, "lon": -73.9931054 }, + { "lat": 40.7496424, "lon": -73.9931120 }, + { "lat": 40.7496460, "lon": -73.9931213 }, + { "lat": 40.7496695, "lon": -73.9931776 }, + { "lat": 40.7496726, "lon": -73.9931821 }, + { "lat": 40.7496776, "lon": -73.9931856 }, + { "lat": 40.7496823, "lon": -73.9931853 }, + { "lat": 40.7496872, "lon": -73.9931819 }, + { "lat": 40.7496925, "lon": -73.9931722 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1239480103, + "bounds": { + "minlat": 40.7492069, + "minlon": -73.9929791, + "maxlat": 40.7502914, + "maxlon": -73.9912801 + }, + "nodes": [ + 11514575317, + 11514575318, + 11514575319, + 11514575320, + 11514575321, + 11514575322, + 9414461033, + 11514575323, + 11514575324, + 11514575325, + 11514575326, + 11514575327, + 11514575328, + 11514575329, + 11514575330, + 11514575331, + 9413881841, + 11514575332, + 11514575333, + 11514575334, + 9414461115, + 9414480623, + 11514575336, + 11514575337, + 11514575338, + 11514575335, + 11513000262, + 11513000275, + 420156057, + 11372431794, + 11372431784, + 11372431783, + 11514575312, + 11514575311, + 420156060, + 11514575313, + 11514575314, + 11514575317 + ], + "geometry": [ + { "lat": 40.7499595, "lon": -73.9927297 }, + { "lat": 40.7498162, "lon": -73.9928565 }, + { "lat": 40.7497124, "lon": -73.9929518 }, + { "lat": 40.7496874, "lon": -73.9929687 }, + { "lat": 40.7496585, "lon": -73.9929784 }, + { "lat": 40.7496274, "lon": -73.9929791 }, + { "lat": 40.7496095, "lon": -73.9929744 }, + { "lat": 40.7495850, "lon": -73.9929545 }, + { "lat": 40.7495633, "lon": -73.9929184 }, + { "lat": 40.7493393, "lon": -73.9923939 }, + { "lat": 40.7493273, "lon": -73.9923776 }, + { "lat": 40.7493137, "lon": -73.9923713 }, + { "lat": 40.7493040, "lon": -73.9923594 }, + { "lat": 40.7492956, "lon": -73.9923424 }, + { "lat": 40.7492114, "lon": -73.9921367 }, + { "lat": 40.7492069, "lon": -73.9921161 }, + { "lat": 40.7492086, "lon": -73.9920992 }, + { "lat": 40.7492155, "lon": -73.9920815 }, + { "lat": 40.7492256, "lon": -73.9920690 }, + { "lat": 40.7492430, "lon": -73.9920534 }, + { "lat": 40.7497192, "lon": -73.9917140 }, + { "lat": 40.7498255, "lon": -73.9916383 }, + { "lat": 40.7500907, "lon": -73.9914417 }, + { "lat": 40.7501033, "lon": -73.9914283 }, + { "lat": 40.7501176, "lon": -73.9913990 }, + { "lat": 40.7501259, "lon": -73.9913860 }, + { "lat": 40.7502673, "lon": -73.9912801 }, + { "lat": 40.7502842, "lon": -73.9913218 }, + { "lat": 40.7502914, "lon": -73.9913395 }, + { "lat": 40.7498014, "lon": -73.9916986 }, + { "lat": 40.7492385, "lon": -73.9921107 }, + { "lat": 40.7494119, "lon": -73.9925063 }, + { "lat": 40.7495028, "lon": -73.9924399 }, + { "lat": 40.7495220, "lon": -73.9924848 }, + { "lat": 40.7494504, "lon": -73.9925364 }, + { "lat": 40.7496072, "lon": -73.9929103 }, + { "lat": 40.7499332, "lon": -73.9926680 }, + { "lat": 40.7499595, "lon": -73.9927297 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1239513326, + "bounds": { + "minlat": 40.7284454, + "minlon": -74.0052979, + "maxlat": 40.7285662, + "maxlon": -74.0051777 + }, + "nodes": [ + 11515039882, + 11515039883, + 11515039884, + 11515039885, + 11515039886, + 11515039896, + 11515039887, + 11515039888, + 11515039889, + 11515039890, + 11515039891, + 11515039892, + 11515039893, + 11515039894, + 11515039895, + 11515039882 + ], + "geometry": [ + { "lat": 40.7285609, "lon": -74.0051777 }, + { "lat": 40.7285662, "lon": -74.0052298 }, + { "lat": 40.7285648, "lon": -74.0052489 }, + { "lat": 40.7285590, "lon": -74.0052666 }, + { "lat": 40.7285488, "lon": -74.0052831 }, + { "lat": 40.7285412, "lon": -74.0052891 }, + { "lat": 40.7285345, "lon": -74.0052943 }, + { "lat": 40.7285155, "lon": -74.0052979 }, + { "lat": 40.7285097, "lon": -74.0052979 }, + { "lat": 40.7285029, "lon": -74.0052933 }, + { "lat": 40.7284454, "lon": -74.0052341 }, + { "lat": 40.7285343, "lon": -74.0052195 }, + { "lat": 40.7285439, "lon": -74.0052159 }, + { "lat": 40.7285534, "lon": -74.0052050 }, + { "lat": 40.7285591, "lon": -74.0051930 }, + { "lat": 40.7285609, "lon": -74.0051777 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239513332, + "bounds": { + "minlat": 40.7286440, + "minlon": -74.0052762, + "maxlat": 40.7287402, + "maxlon": -74.0052105 + }, + "nodes": [ + 11515039905, + 11515039928, + 11515039906, + 11515039907, + 11515039908, + 11515039909, + 11515039910, + 11515039911, + 11515039927, + 11515039912, + 11515039913, + 11515039914, + 11515039915, + 11515039916, + 11515039917, + 11515039918, + 11515039905 + ], + "geometry": [ + { "lat": 40.7287134, "lon": -74.0052669 }, + { "lat": 40.7286730, "lon": -74.0052731 }, + { "lat": 40.7286529, "lon": -74.0052762 }, + { "lat": 40.7286489, "lon": -74.0052754 }, + { "lat": 40.7286469, "lon": -74.0052699 }, + { "lat": 40.7286440, "lon": -74.0052337 }, + { "lat": 40.7286456, "lon": -74.0052267 }, + { "lat": 40.7286502, "lon": -74.0052235 }, + { "lat": 40.7286709, "lon": -74.0052204 }, + { "lat": 40.7287372, "lon": -74.0052105 }, + { "lat": 40.7287394, "lon": -74.0052120 }, + { "lat": 40.7287402, "lon": -74.0052256 }, + { "lat": 40.7287394, "lon": -74.0052302 }, + { "lat": 40.7287373, "lon": -74.0052356 }, + { "lat": 40.7287196, "lon": -74.0052620 }, + { "lat": 40.7287167, "lon": -74.0052651 }, + { "lat": 40.7287134, "lon": -74.0052669 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239519862, + "bounds": { + "minlat": 40.7154141, + "minlon": -74.0030194, + "maxlat": 40.7154938, + "maxlon": -74.0029805 + }, + "nodes": [ + 11515102149, + 11515102150, + 11515102151, + 11515102152, + 11515102153, + 11515102159, + 11515102154, + 11515102155, + 11515102156, + 11515102157, + 11515102158, + 11515102149 + ], + "geometry": [ + { "lat": 40.7154404, "lon": -74.0030194 }, + { "lat": 40.7154352, "lon": -74.0030189 }, + { "lat": 40.7154303, "lon": -74.0030144 }, + { "lat": 40.7154141, "lon": -74.0029984 }, + { "lat": 40.7154143, "lon": -74.0029956 }, + { "lat": 40.7154715, "lon": -74.0029843 }, + { "lat": 40.7154907, "lon": -74.0029805 }, + { "lat": 40.7154926, "lon": -74.0029824 }, + { "lat": 40.7154938, "lon": -74.0029865 }, + { "lat": 40.7154880, "lon": -74.0030086 }, + { "lat": 40.7154802, "lon": -74.0030123 }, + { "lat": 40.7154404, "lon": -74.0030194 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239543421, + "bounds": { + "minlat": 40.7138594, + "minlon": -74.0088615, + "maxlat": 40.7139379, + "maxlon": -74.0088020 + }, + "nodes": [ + 11515468908, + 11515468927, + 11515468909, + 11515468910, + 11515468911, + 11515468912, + 11515468913, + 11515468914, + 11515468926, + 11515468915, + 11515468916, + 11515468917, + 11515468908 + ], + "geometry": [ + { "lat": 40.7139378, "lon": -74.0088097 }, + { "lat": 40.7138885, "lon": -74.0088494 }, + { "lat": 40.7138753, "lon": -74.0088601 }, + { "lat": 40.7138711, "lon": -74.0088615 }, + { "lat": 40.7138680, "lon": -74.0088586 }, + { "lat": 40.7138598, "lon": -74.0088410 }, + { "lat": 40.7138594, "lon": -74.0088358 }, + { "lat": 40.7138615, "lon": -74.0088319 }, + { "lat": 40.7138744, "lon": -74.0088220 }, + { "lat": 40.7138983, "lon": -74.0088036 }, + { "lat": 40.7139018, "lon": -74.0088020 }, + { "lat": 40.7139379, "lon": -74.0088059 }, + { "lat": 40.7139378, "lon": -74.0088097 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239543425, + "bounds": { + "minlat": 40.7142799, + "minlon": -74.0085395, + "maxlat": 40.7143506, + "maxlon": -74.0084598 + }, + "nodes": [ + 11515468935, + 11515468950, + 11515468936, + 11515468937, + 11515468938, + 11515468939, + 11515468940, + 11515468941, + 11515468949, + 11515468942, + 11515468943, + 11515468935 + ], + "geometry": [ + { "lat": 40.7142799, "lon": -74.0085395 }, + { "lat": 40.7143334, "lon": -74.0084988 }, + { "lat": 40.7143482, "lon": -74.0084876 }, + { "lat": 40.7143506, "lon": -74.0084836 }, + { "lat": 40.7143502, "lon": -74.0084787 }, + { "lat": 40.7143426, "lon": -74.0084620 }, + { "lat": 40.7143403, "lon": -74.0084598 }, + { "lat": 40.7143367, "lon": -74.0084598 }, + { "lat": 40.7143207, "lon": -74.0084720 }, + { "lat": 40.7142951, "lon": -74.0084915 }, + { "lat": 40.7142919, "lon": -74.0084972 }, + { "lat": 40.7142799, "lon": -74.0085395 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239543435, + "bounds": { + "minlat": 40.7144285, + "minlon": -74.0084123, + "maxlat": 40.7145084, + "maxlon": -74.0083530 + }, + "nodes": [ + 11515468995, + 11515469005, + 11515468996, + 11515468997, + 11515468998, + 11515468999, + 11515469000, + 11515469001, + 11515469004, + 11515469002, + 11515469003, + 11515468995 + ], + "geometry": [ + { "lat": 40.7145084, "lon": -74.0083612 }, + { "lat": 40.7144577, "lon": -74.0084005 }, + { "lat": 40.7144426, "lon": -74.0084121 }, + { "lat": 40.7144389, "lon": -74.0084123 }, + { "lat": 40.7144361, "lon": -74.0084095 }, + { "lat": 40.7144294, "lon": -74.0083948 }, + { "lat": 40.7144285, "lon": -74.0083898 }, + { "lat": 40.7144299, "lon": -74.0083854 }, + { "lat": 40.7144451, "lon": -74.0083737 }, + { "lat": 40.7144695, "lon": -74.0083550 }, + { "lat": 40.7144738, "lon": -74.0083530 }, + { "lat": 40.7145084, "lon": -74.0083612 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239703551, + "bounds": { + "minlat": 40.7160394, + "minlon": -74.0087795, + "maxlat": 40.7161081, + "maxlon": -74.0087009 + }, + "nodes": [ + 11517225713, + 11517225737, + 11517225714, + 11517225715, + 11517225716, + 11517225717, + 11517225718, + 11517225719, + 11517225736, + 11517225720, + 11517225721, + 11517225722, + 11517225723, + 11517225713 + ], + "geometry": [ + { "lat": 40.7160907, "lon": -74.0087498 }, + { "lat": 40.7160651, "lon": -74.0087703 }, + { "lat": 40.7160561, "lon": -74.0087776 }, + { "lat": 40.7160514, "lon": -74.0087795 }, + { "lat": 40.7160479, "lon": -74.0087755 }, + { "lat": 40.7160403, "lon": -74.0087594 }, + { "lat": 40.7160394, "lon": -74.0087545 }, + { "lat": 40.7160420, "lon": -74.0087499 }, + { "lat": 40.7160506, "lon": -74.0087435 }, + { "lat": 40.7161068, "lon": -74.0087009 }, + { "lat": 40.7161081, "lon": -74.0087037 }, + { "lat": 40.7160971, "lon": -74.0087395 }, + { "lat": 40.7160945, "lon": -74.0087453 }, + { "lat": 40.7160907, "lon": -74.0087498 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239703554, + "bounds": { + "minlat": 40.7159067, + "minlon": -74.0088704, + "maxlat": 40.7159784, + "maxlon": -74.0088112 + }, + "nodes": [ + 11517225726, + 11517225727, + 11517225728, + 11517225739, + 11517225729, + 11517225730, + 11517225731, + 11517225732, + 11517225738, + 11517225733, + 11517225734, + 11517225735, + 11517225726 + ], + "geometry": [ + { "lat": 40.7159700, "lon": -74.0088142 }, + { "lat": 40.7159676, "lon": -74.0088112 }, + { "lat": 40.7159642, "lon": -74.0088114 }, + { "lat": 40.7159583, "lon": -74.0088161 }, + { "lat": 40.7159067, "lon": -74.0088571 }, + { "lat": 40.7159322, "lon": -74.0088704 }, + { "lat": 40.7159361, "lon": -74.0088703 }, + { "lat": 40.7159413, "lon": -74.0088679 }, + { "lat": 40.7159714, "lon": -74.0088438 }, + { "lat": 40.7159773, "lon": -74.0088390 }, + { "lat": 40.7159784, "lon": -74.0088344 }, + { "lat": 40.7159776, "lon": -74.0088299 }, + { "lat": 40.7159700, "lon": -74.0088142 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239703559, + "bounds": { + "minlat": 40.7155374, + "minlon": -74.0091558, + "maxlat": 40.7156779, + "maxlon": -74.0090338 + }, + "nodes": [ + 11517225744, + 11517225745, + 11517225746, + 11517225747, + 11517225790, + 11517225748, + 11517225749, + 11517225750, + 11517225751, + 11517225752, + 11517225753, + 11517225754, + 11517225744 + ], + "geometry": [ + { "lat": 40.7156766, "lon": -74.0090706 }, + { "lat": 40.7156779, "lon": -74.0090673 }, + { "lat": 40.7156775, "lon": -74.0090630 }, + { "lat": 40.7156656, "lon": -74.0090338 }, + { "lat": 40.7155470, "lon": -74.0091274 }, + { "lat": 40.7155374, "lon": -74.0091349 }, + { "lat": 40.7155410, "lon": -74.0091425 }, + { "lat": 40.7155472, "lon": -74.0091515 }, + { "lat": 40.7155558, "lon": -74.0091558 }, + { "lat": 40.7155665, "lon": -74.0091551 }, + { "lat": 40.7155750, "lon": -74.0091517 }, + { "lat": 40.7155831, "lon": -74.0091452 }, + { "lat": 40.7156766, "lon": -74.0090706 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239703560, + "bounds": { + "minlat": 40.7152154, + "minlon": -74.0094114, + "maxlat": 40.7154648, + "maxlon": -74.0091927 + }, + "nodes": [ + 11517225758, + 11517225759, + 11517225760, + 11517225761, + 11517225762, + 11517225763, + 11517225764, + 11517225765, + 11517225766, + 11517225767, + 11517225768, + 11517225769, + 11517225770, + 11517225771, + 11517225772, + 11517225773, + 11517225774, + 11517225789, + 11517225758 + ], + "geometry": [ + { "lat": 40.7152154, "lon": -74.0093790 }, + { "lat": 40.7152304, "lon": -74.0094114 }, + { "lat": 40.7153857, "lon": -74.0092873 }, + { "lat": 40.7153897, "lon": -74.0092852 }, + { "lat": 40.7153952, "lon": -74.0092848 }, + { "lat": 40.7154285, "lon": -74.0092891 }, + { "lat": 40.7154369, "lon": -74.0092879 }, + { "lat": 40.7154439, "lon": -74.0092833 }, + { "lat": 40.7154508, "lon": -74.0092753 }, + { "lat": 40.7154575, "lon": -74.0092621 }, + { "lat": 40.7154605, "lon": -74.0092527 }, + { "lat": 40.7154648, "lon": -74.0092323 }, + { "lat": 40.7154642, "lon": -74.0092178 }, + { "lat": 40.7154615, "lon": -74.0092084 }, + { "lat": 40.7154551, "lon": -74.0091952 }, + { "lat": 40.7154528, "lon": -74.0091927 }, + { "lat": 40.7154498, "lon": -74.0091929 }, + { "lat": 40.7154406, "lon": -74.0092002 }, + { "lat": 40.7152154, "lon": -74.0093790 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1239874202, + "bounds": { + "minlat": 40.8051714, + "minlon": -73.9196590, + "maxlat": 40.8055082, + "maxlon": -73.9193406 + }, + "nodes": [ + 11518915148, + 6863636606, + 11518915149, + 11518915150, + 11518915151, + 11518915152 + ], + "geometry": [ + { "lat": 40.8051714, "lon": -73.9194321 }, + { "lat": 40.8052771, "lon": -73.9193624 }, + { "lat": 40.8053054, "lon": -73.9193438 }, + { "lat": 40.8053541, "lon": -73.9193406 }, + { "lat": 40.8053890, "lon": -73.9193813 }, + { "lat": 40.8055082, "lon": -73.9196590 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1239987315, + "bounds": { + "minlat": 40.7098555, + "minlon": -73.9960286, + "maxlat": 40.7104910, + "maxlon": -73.9942263 + }, + "nodes": [ + 9845619156, + 11519932655, + 11519945284, + 11519945115, + 11519945285, + 11519945066, + 11519945073, + 11519945117, + 11519945119, + 11519945120, + 7483737464, + 11519945132, + 11519944994, + 11519944935, + 11519944934, + 11519944905, + 11519944904, + 11519944903, + 11519944909, + 11519944908, + 11519944993, + 11519944914, + 11519944913, + 11519945000, + 11519944919, + 11519944918, + 11519944924, + 11519944923, + 11519944926, + 11519944988, + 11519944928, + 11519944931, + 11519944997, + 11519945021, + 11519945016, + 11519945056, + 11519945077, + 11519945059, + 11519945058, + 11519945064, + 11519945116, + 11519945286, + 11519932659, + 9845619159, + 11519932661, + 11519932662, + 11519932660, + 3316837964, + 4121417211, + 4121417271, + 3316837963, + 11519932658, + 11519932657, + 11519932656, + 9845619156 + ], + "geometry": [ + { "lat": 40.7101231, "lon": -73.9942572 }, + { "lat": 40.7101199, "lon": -73.9942738 }, + { "lat": 40.7098555, "lon": -73.9959876 }, + { "lat": 40.7098692, "lon": -73.9959912 }, + { "lat": 40.7098828, "lon": -73.9959945 }, + { "lat": 40.7098869, "lon": -73.9959696 }, + { "lat": 40.7098916, "lon": -73.9959393 }, + { "lat": 40.7099153, "lon": -73.9957859 }, + { "lat": 40.7099263, "lon": -73.9957149 }, + { "lat": 40.7099290, "lon": -73.9956973 }, + { "lat": 40.7099317, "lon": -73.9956798 }, + { "lat": 40.7100197, "lon": -73.9951125 }, + { "lat": 40.7101224, "lon": -73.9944490 }, + { "lat": 40.7101274, "lon": -73.9944175 }, + { "lat": 40.7101307, "lon": -73.9943957 }, + { "lat": 40.7101446, "lon": -73.9943087 }, + { "lat": 40.7101478, "lon": -73.9942869 }, + { "lat": 40.7101654, "lon": -73.9942914 }, + { "lat": 40.7102149, "lon": -73.9942970 }, + { "lat": 40.7102326, "lon": -73.9943000 }, + { "lat": 40.7102576, "lon": -73.9943026 }, + { "lat": 40.7102857, "lon": -73.9943070 }, + { "lat": 40.7103096, "lon": -73.9943102 }, + { "lat": 40.7103385, "lon": -73.9943135 }, + { "lat": 40.7103626, "lon": -73.9943163 }, + { "lat": 40.7103806, "lon": -73.9943189 }, + { "lat": 40.7104292, "lon": -73.9943272 }, + { "lat": 40.7104471, "lon": -73.9943296 }, + { "lat": 40.7104439, "lon": -73.9943533 }, + { "lat": 40.7104373, "lon": -73.9943964 }, + { "lat": 40.7104256, "lon": -73.9944726 }, + { "lat": 40.7104223, "lon": -73.9944944 }, + { "lat": 40.7104074, "lon": -73.9945849 }, + { "lat": 40.7103983, "lon": -73.9946439 }, + { "lat": 40.7103405, "lon": -73.9950261 }, + { "lat": 40.7102347, "lon": -73.9957080 }, + { "lat": 40.7102264, "lon": -73.9957668 }, + { "lat": 40.7102042, "lon": -73.9959143 }, + { "lat": 40.7101909, "lon": -73.9959999 }, + { "lat": 40.7101887, "lon": -73.9960189 }, + { "lat": 40.7102079, "lon": -73.9960240 }, + { "lat": 40.7102253, "lon": -73.9960286 }, + { "lat": 40.7104897, "lon": -73.9943165 }, + { "lat": 40.7104910, "lon": -73.9942969 }, + { "lat": 40.7104874, "lon": -73.9942837 }, + { "lat": 40.7104793, "lon": -73.9942733 }, + { "lat": 40.7104703, "lon": -73.9942691 }, + { "lat": 40.7104578, "lon": -73.9942654 }, + { "lat": 40.7104439, "lon": -73.9942636 }, + { "lat": 40.7101748, "lon": -73.9942288 }, + { "lat": 40.7101555, "lon": -73.9942263 }, + { "lat": 40.7101455, "lon": -73.9942281 }, + { "lat": 40.7101375, "lon": -73.9942329 }, + { "lat": 40.7101283, "lon": -73.9942422 }, + { "lat": 40.7101231, "lon": -73.9942572 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1239993482, + "bounds": { + "minlat": 40.7107185, + "minlon": -73.9928508, + "maxlat": 40.7108846, + "maxlon": -73.9923482 + }, + "nodes": [ + 11519993996, + 9652366149 + ], + "geometry": [ + { "lat": 40.7108846, "lon": -73.9923482 }, + { "lat": 40.7107185, "lon": -73.9928508 } + ], + "tags": { + "covered": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Cherry Street", + "name:ko": "체리 스트리트", + "name:ru": "Черри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1239993492, + "bounds": { + "minlat": 40.7097286, + "minlon": -73.9924604, + "maxlat": 40.7100164, + "maxlon": -73.9924201 + }, + "nodes": [ + 11519994060, + 11519994087, + 11519994063, + 11519994064, + 11519994061, + 11519994065, + 11519994062 + ], + "geometry": [ + { "lat": 40.7097286, "lon": -73.9924201 }, + { "lat": 40.7097947, "lon": -73.9924362 }, + { "lat": 40.7098289, "lon": -73.9924445 }, + { "lat": 40.7098483, "lon": -73.9924497 }, + { "lat": 40.7098949, "lon": -73.9924604 }, + { "lat": 40.7099328, "lon": -73.9924595 }, + { "lat": 40.7100164, "lon": -73.9924478 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1240308124, + "bounds": { + "minlat": 40.7497560, + "minlon": -73.9097177, + "maxlat": 40.7501887, + "maxlon": -73.9095956 + }, + "nodes": [ + 11523614709, + 6450796184, + 42815123 + ], + "geometry": [ + { "lat": 40.7501887, "lon": -73.9095956 }, + { "lat": 40.7498176, "lon": -73.9097005 }, + { "lat": 40.7497560, "lon": -73.9097177 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "Woodside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1240308125, + "bounds": { + "minlat": 40.7501887, + "minlon": -73.9095956, + "maxlat": 40.7505620, + "maxlon": -73.9094897 + }, + "nodes": [ + 42876809, + 11523614709 + ], + "geometry": [ + { "lat": 40.7505620, "lon": -73.9094897 }, + { "lat": 40.7501887, "lon": -73.9095956 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxheight": "12'5\"", + "name": "Woodside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1240315616, + "bounds": { + "minlat": 40.7092753, + "minlon": -73.9963152, + "maxlat": 40.7097458, + "maxlon": -73.9959949 + }, + "nodes": [ + 11523680853, + 7830788105, + 7483737429, + 7830788140, + 11519945030, + 7830788121, + 7483737465, + 11519945028, + 7830788156, + 9845619144, + 11519945029, + 7830788109, + 11523686103, + 11523686102, + 11523686109, + 11523686108, + 11523686107, + 11523686106, + 11523686105, + 11523686104, + 11523686092, + 11523686091, + 11523686090, + 11523686089, + 11523686088, + 11523686087, + 11523686086, + 11523686085, + 11523686084, + 11523686083, + 11523686082, + 11523686081, + 11523686080, + 11523686079, + 11523686078, + 7830788101, + 7830788097, + 7830788126, + 7830788123, + 11519945025, + 7483737391, + 9845619150, + 11519945024, + 7483737471, + 11519945027, + 7830788152, + 7830788149, + 9845619154, + 11523680867, + 11523680866, + 11523680865, + 11523680864, + 11523680863, + 11523680862, + 11523680861, + 11523680860, + 11523680859, + 11523680858, + 11523680857, + 11523680856, + 11523680855, + 11523680854, + 11523680853 + ], + "geometry": [ + { "lat": 40.7093136, "lon": -73.9962107 }, + { "lat": 40.7093018, "lon": -73.9962078 }, + { "lat": 40.7092926, "lon": -73.9962059 }, + { "lat": 40.7092828, "lon": -73.9961977 }, + { "lat": 40.7092762, "lon": -73.9961833 }, + { "lat": 40.7092753, "lon": -73.9961666 }, + { "lat": 40.7092871, "lon": -73.9960234 }, + { "lat": 40.7092919, "lon": -73.9960095 }, + { "lat": 40.7092995, "lon": -73.9960007 }, + { "lat": 40.7093082, "lon": -73.9959973 }, + { "lat": 40.7093166, "lon": -73.9959949 }, + { "lat": 40.7093284, "lon": -73.9959951 }, + { "lat": 40.7093401, "lon": -73.9959983 }, + { "lat": 40.7093284, "lon": -73.9960589 }, + { "lat": 40.7093244, "lon": -73.9960598 }, + { "lat": 40.7093217, "lon": -73.9960636 }, + { "lat": 40.7093193, "lon": -73.9960772 }, + { "lat": 40.7093210, "lon": -73.9960891 }, + { "lat": 40.7093286, "lon": -73.9960998 }, + { "lat": 40.7093421, "lon": -73.9961090 }, + { "lat": 40.7093643, "lon": -73.9961174 }, + { "lat": 40.7094135, "lon": -73.9961327 }, + { "lat": 40.7094235, "lon": -73.9960709 }, + { "lat": 40.7094466, "lon": -73.9960777 }, + { "lat": 40.7094370, "lon": -73.9961388 }, + { "lat": 40.7095424, "lon": -73.9961670 }, + { "lat": 40.7095524, "lon": -73.9961057 }, + { "lat": 40.7095751, "lon": -73.9961116 }, + { "lat": 40.7095654, "lon": -73.9961736 }, + { "lat": 40.7096479, "lon": -73.9961946 }, + { "lat": 40.7096564, "lon": -73.9961360 }, + { "lat": 40.7096792, "lon": -73.9961427 }, + { "lat": 40.7096702, "lon": -73.9962003 }, + { "lat": 40.7096985, "lon": -73.9962079 }, + { "lat": 40.7097151, "lon": -73.9961020 }, + { "lat": 40.7097240, "lon": -73.9961045 }, + { "lat": 40.7097273, "lon": -73.9961065 }, + { "lat": 40.7097358, "lon": -73.9961116 }, + { "lat": 40.7097432, "lon": -73.9961222 }, + { "lat": 40.7097456, "lon": -73.9961327 }, + { "lat": 40.7097458, "lon": -73.9961494 }, + { "lat": 40.7097325, "lon": -73.9962369 }, + { "lat": 40.7097260, "lon": -73.9962776 }, + { "lat": 40.7097221, "lon": -73.9962942 }, + { "lat": 40.7097154, "lon": -73.9963062 }, + { "lat": 40.7097061, "lon": -73.9963125 }, + { "lat": 40.7096963, "lon": -73.9963152 }, + { "lat": 40.7096822, "lon": -73.9963144 }, + { "lat": 40.7096938, "lon": -73.9962427 }, + { "lat": 40.7096638, "lon": -73.9962343 }, + { "lat": 40.7096569, "lon": -73.9962768 }, + { "lat": 40.7096345, "lon": -73.9962705 }, + { "lat": 40.7096411, "lon": -73.9962295 }, + { "lat": 40.7095597, "lon": -73.9962065 }, + { "lat": 40.7095533, "lon": -73.9962459 }, + { "lat": 40.7095306, "lon": -73.9962395 }, + { "lat": 40.7095367, "lon": -73.9962018 }, + { "lat": 40.7094327, "lon": -73.9961720 }, + { "lat": 40.7094262, "lon": -73.9962122 }, + { "lat": 40.7094012, "lon": -73.9962049 }, + { "lat": 40.7094071, "lon": -73.9961661 }, + { "lat": 40.7093247, "lon": -73.9961424 }, + { "lat": 40.7093136, "lon": -73.9962107 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1240949073, + "bounds": { + "minlat": 40.8445628, + "minlon": -74.0076014, + "maxlat": 40.8446679, + "maxlon": -74.0075728 + }, + "nodes": [ + 11530187211, + 11530187212, + 11530187213, + 11530187214 + ], + "geometry": [ + { "lat": 40.8445628, "lon": -74.0075850 }, + { "lat": 40.8446038, "lon": -74.0075728 }, + { "lat": 40.8446379, "lon": -74.0075737 }, + { "lat": 40.8446679, "lon": -74.0076014 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1240949074, + "bounds": { + "minlat": 40.8446962, + "minlon": -74.0078384, + "maxlat": 40.8447038, + "maxlon": -74.0076865 + }, + "nodes": [ + 11530187215, + 11530187216 + ], + "geometry": [ + { "lat": 40.8447038, "lon": -74.0076865 }, + { "lat": 40.8446962, "lon": -74.0078384 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1240949075, + "bounds": { + "minlat": 40.8446679, + "minlon": -74.0076865, + "maxlat": 40.8447038, + "maxlon": -74.0076014 + }, + "nodes": [ + 11530187214, + 11530187215 + ], + "geometry": [ + { "lat": 40.8446679, "lon": -74.0076014 }, + { "lat": 40.8447038, "lon": -74.0076865 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1241559458, + "bounds": { + "minlat": 40.7174772, + "minlon": -73.9858243, + "maxlat": 40.7176161, + "maxlon": -73.9853646 + }, + "nodes": [ + 3630249566, + 11536126181, + 11536126180 + ], + "geometry": [ + { "lat": 40.7176161, "lon": -73.9858243 }, + { "lat": 40.7175229, "lon": -73.9855158 }, + { "lat": 40.7174772, "lon": -73.9853646 } + ], + "tags": { + "hgv": "designated", + "hgv:lanes": "no|no||", + "highway": "motorway", + "lanes": "4", + "maxspeed": "35 mph", + "moped": "no", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1241559459, + "bounds": { + "minlat": 40.7126702, + "minlon": -73.9680033, + "maxlat": 40.7126936, + "maxlon": -73.9679303 + }, + "nodes": [ + 5782087172, + 11536126182 + ], + "geometry": [ + { "lat": 40.7126936, "lon": -73.9680033 }, + { "lat": 40.7126702, "lon": -73.9679303 } + ], + "tags": { + "highway": "residential", + "name": "South 5th Street", + "oneway": "yes", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "5th", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:zip_left": "11211" + } +}, +{ + "type": "way", + "id": 1241776499, + "bounds": { + "minlat": 40.7099994, + "minlon": -73.9981046, + "maxlat": 40.7101948, + "maxlon": -73.9979161 + }, + "nodes": [ + 11538318593, + 11538324041, + 11538324042, + 11538324043, + 11538324044, + 11538324045, + 11538324046, + 8279840166, + 11538318593 + ], + "geometry": [ + { "lat": 40.7101713, "lon": -73.9981046 }, + { "lat": 40.7099994, "lon": -73.9980547 }, + { "lat": 40.7100194, "lon": -73.9979353 }, + { "lat": 40.7100246, "lon": -73.9979221 }, + { "lat": 40.7100349, "lon": -73.9979161 }, + { "lat": 40.7100481, "lon": -73.9979185 }, + { "lat": 40.7101948, "lon": -73.9979601 }, + { "lat": 40.7101928, "lon": -73.9979728 }, + { "lat": 40.7101713, "lon": -73.9981046 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "compacted" + } +}, +{ + "type": "way", + "id": 1241889614, + "bounds": { + "minlat": 40.7437464, + "minlon": -73.9147753, + "maxlat": 40.7437874, + "maxlon": -73.9143579 + }, + "nodes": [ + 6349964622, + 11539481403, + 11539481405, + 11539481404 + ], + "geometry": [ + { "lat": 40.7437874, "lon": -73.9143579 }, + { "lat": 40.7437464, "lon": -73.9145334 }, + { "lat": 40.7437643, "lon": -73.9147049 }, + { "lat": 40.7437718, "lon": -73.9147753 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1241889615, + "bounds": { + "minlat": 40.7437874, + "minlon": -73.9143579, + "maxlat": 40.7438544, + "maxlon": -73.9140711 + }, + "nodes": [ + 7667245263, + 6349964622 + ], + "geometry": [ + { "lat": 40.7438544, "lon": -73.9140711 }, + { "lat": 40.7437874, "lon": -73.9143579 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1241958025, + "bounds": { + "minlat": 40.8732576, + "minlon": -73.9181389, + "maxlat": 40.8734292, + "maxlon": -73.9177234 + }, + "nodes": [ + 11540180869, + 11540180870, + 11548968327, + 11540180871 + ], + "geometry": [ + { "lat": 40.8732576, "lon": -73.9177234 }, + { "lat": 40.8733296, "lon": -73.9179789 }, + { "lat": 40.8733719, "lon": -73.9180463 }, + { "lat": 40.8734292, "lon": -73.9181389 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1242277191, + "bounds": { + "minlat": 40.7390301, + "minlon": -73.9746686, + "maxlat": 40.7395275, + "maxlon": -73.9735586 + }, + "nodes": [ + 11543660372, + 4244408921, + 11543660409, + 5131059180, + 11543660379, + 1632878962 + ], + "geometry": [ + { "lat": 40.7395275, "lon": -73.9746686 }, + { "lat": 40.7393526, "lon": -73.9742784 }, + { "lat": 40.7390884, "lon": -73.9736887 }, + { "lat": 40.7390757, "lon": -73.9736609 }, + { "lat": 40.7390559, "lon": -73.9736161 }, + { "lat": 40.7390301, "lon": -73.9735586 } + ], + "tags": { + "access": "permissive", + "description": "\"Ambulances only\" signage and security guard posted at 1st Avenue corner", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "private", + "name": "East 28th Street", + "name_1": "East 28 Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1242277192, + "bounds": { + "minlat": 40.7398498, + "minlon": -73.9733643, + "maxlat": 40.7400230, + "maxlon": -73.9732529 + }, + "nodes": [ + 1739872170, + 11543660375, + 11543660437, + 11543660376 + ], + "geometry": [ + { "lat": 40.7400230, "lon": -73.9732529 }, + { "lat": 40.7399241, "lon": -73.9733345 }, + { "lat": 40.7398543, "lon": -73.9733630 }, + { "lat": 40.7398498, "lon": -73.9733643 } + ], + "tags": { + "access": "delivery", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1242277193, + "bounds": { + "minlat": 40.7393683, + "minlon": -73.9734636, + "maxlat": 40.7398498, + "maxlon": -73.9733643 + }, + "nodes": [ + 11543660376, + 11543660406, + 11543660377, + 11543660374 + ], + "geometry": [ + { "lat": 40.7398498, "lon": -73.9733643 }, + { "lat": 40.7396999, "lon": -73.9733844 }, + { "lat": 40.7395473, "lon": -73.9734112 }, + { "lat": 40.7393683, "lon": -73.9734636 } + ], + "tags": { + "access": "delivery", + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1242277194, + "bounds": { + "minlat": 40.7389610, + "minlon": -73.9736804, + "maxlat": 40.7390559, + "maxlon": -73.9736161 + }, + "nodes": [ + 11543660379, + 7888069588 + ], + "geometry": [ + { "lat": 40.7390559, "lon": -73.9736161 }, + { "lat": 40.7389610, "lon": -73.9736804 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1242277195, + "bounds": { + "minlat": 40.7383122, + "minlon": -73.9741437, + "maxlat": 40.7389610, + "maxlon": -73.9736804 + }, + "nodes": [ + 7888069588, + 7888039482 + ], + "geometry": [ + { "lat": 40.7389610, "lon": -73.9736804 }, + { "lat": 40.7383122, "lon": -73.9741437 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1242277196, + "bounds": { + "minlat": 40.7392907, + "minlon": -73.9735655, + "maxlat": 40.7393158, + "maxlon": -73.9734287 + }, + "nodes": [ + 11543660381, + 11543660384, + 11543660382, + 11543660389, + 11543660383 + ], + "geometry": [ + { "lat": 40.7392947, "lon": -73.9734287 }, + { "lat": 40.7392907, "lon": -73.9734550 }, + { "lat": 40.7392945, "lon": -73.9734892 }, + { "lat": 40.7392977, "lon": -73.9735009 }, + { "lat": 40.7393158, "lon": -73.9735655 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1242277197, + "bounds": { + "minlat": 40.7390301, + "minlon": -73.9735586, + "maxlat": 40.7392002, + "maxlon": -73.9735475 + }, + "nodes": [ + 11543660387, + 1632878962 + ], + "geometry": [ + { "lat": 40.7392002, "lon": -73.9735475 }, + { "lat": 40.7390301, "lon": -73.9735586 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1242277198, + "bounds": { + "minlat": 40.7392002, + "minlon": -73.9735655, + "maxlat": 40.7393158, + "maxlon": -73.9735335 + }, + "nodes": [ + 11543660383, + 11543660385, + 11543660386, + 11543660387 + ], + "geometry": [ + { "lat": 40.7393158, "lon": -73.9735655 }, + { "lat": 40.7392923, "lon": -73.9735386 }, + { "lat": 40.7392635, "lon": -73.9735335 }, + { "lat": 40.7392002, "lon": -73.9735475 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1242277199, + "bounds": { + "minlat": 40.7393710, + "minlon": -73.9747810, + "maxlat": 40.7395275, + "maxlon": -73.9746686 + }, + "nodes": [ + 11543660372, + 11543660404 + ], + "geometry": [ + { "lat": 40.7395275, "lon": -73.9746686 }, + { "lat": 40.7393710, "lon": -73.9747810 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "motor_vehicle": "private", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 1242277201, + "bounds": { + "minlat": 40.7383541, + "minlon": -73.9747213, + "maxlat": 40.7384310, + "maxlon": -73.9746701 + }, + "nodes": [ + 11543660414, + 11543660415 + ], + "geometry": [ + { "lat": 40.7384310, "lon": -73.9746701 }, + { "lat": 40.7383541, "lon": -73.9747213 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1242277206, + "bounds": { + "minlat": 40.7401455, + "minlon": -73.9739549, + "maxlat": 40.7404393, + "maxlon": -73.9732164 + }, + "nodes": [ + 11543660442, + 11543660443, + 11543660450, + 11543660444, + 11543660445, + 11543660447, + 11543660446 + ], + "geometry": [ + { "lat": 40.7401455, "lon": -73.9739549 }, + { "lat": 40.7404393, "lon": -73.9737389 }, + { "lat": 40.7403722, "lon": -73.9735787 }, + { "lat": 40.7403152, "lon": -73.9734423 }, + { "lat": 40.7402848, "lon": -73.9734234 }, + { "lat": 40.7402172, "lon": -73.9732621 }, + { "lat": 40.7401981, "lon": -73.9732164 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1242277207, + "bounds": { + "minlat": 40.7400162, + "minlon": -73.9735946, + "maxlat": 40.7402848, + "maxlon": -73.9734234 + }, + "nodes": [ + 11543660445, + 11543660448 + ], + "geometry": [ + { "lat": 40.7402848, "lon": -73.9734234 }, + { "lat": 40.7400162, "lon": -73.9735946 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1242277208, + "bounds": { + "minlat": 40.7400808, + "minlon": -73.9737858, + "maxlat": 40.7403722, + "maxlon": -73.9735787 + }, + "nodes": [ + 11543660449, + 11543660450 + ], + "geometry": [ + { "lat": 40.7400808, "lon": -73.9737858 }, + { "lat": 40.7403722, "lon": -73.9735787 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1242277209, + "bounds": { + "minlat": 40.7376661, + "minlon": -73.9745937, + "maxlat": 40.7377449, + "maxlon": -73.9744612 + }, + "nodes": [ + 7060180747, + 7060180748 + ], + "geometry": [ + { "lat": 40.7376661, "lon": -73.9745937 }, + { "lat": 40.7377449, "lon": -73.9744612 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1242297500, + "bounds": { + "minlat": 40.7079797, + "minlon": -74.0015475, + "maxlat": 40.7094037, + "maxlon": -74.0000622 + }, + "nodes": [ + 8262309396, + 11543856216, + 11543856217, + 8262936261, + 11543856218, + 11543856219, + 11543856220, + 11032985221, + 11543856221, + 11543856222, + 11543856223, + 11543856224, + 11543856225, + 11543856226, + 11543856227, + 11543856228, + 11543856229, + 11543856230, + 11543856231, + 11543856232, + 11543856233, + 11375808266, + 11543856234, + 11543856235, + 11033251531, + 11543856236, + 8262309388, + 8262309389, + 11032985364, + 11032985368, + 11032985363, + 11032985362, + 11032985361, + 8262309396 + ], + "geometry": [ + { "lat": 40.7080518, "lon": -74.0000711 }, + { "lat": 40.7080318, "lon": -74.0000664 }, + { "lat": 40.7080143, "lon": -74.0000622 }, + { "lat": 40.7080082, "lon": -74.0000675 }, + { "lat": 40.7079812, "lon": -74.0001111 }, + { "lat": 40.7079797, "lon": -74.0001186 }, + { "lat": 40.7079811, "lon": -74.0001286 }, + { "lat": 40.7079868, "lon": -74.0001401 }, + { "lat": 40.7079929, "lon": -74.0001474 }, + { "lat": 40.7080031, "lon": -74.0001578 }, + { "lat": 40.7082037, "lon": -74.0003206 }, + { "lat": 40.7083453, "lon": -74.0004338 }, + { "lat": 40.7086637, "lon": -74.0006704 }, + { "lat": 40.7087060, "lon": -74.0007025 }, + { "lat": 40.7087290, "lon": -74.0007214 }, + { "lat": 40.7087508, "lon": -74.0007436 }, + { "lat": 40.7087773, "lon": -74.0007732 }, + { "lat": 40.7089293, "lon": -74.0009617 }, + { "lat": 40.7091259, "lon": -74.0012088 }, + { "lat": 40.7093964, "lon": -74.0015474 }, + { "lat": 40.7093986, "lon": -74.0015475 }, + { "lat": 40.7094014, "lon": -74.0015431 }, + { "lat": 40.7094037, "lon": -74.0015389 }, + { "lat": 40.7094035, "lon": -74.0015361 }, + { "lat": 40.7093974, "lon": -74.0015278 }, + { "lat": 40.7090702, "lon": -74.0011226 }, + { "lat": 40.7089337, "lon": -74.0009535 }, + { "lat": 40.7087992, "lon": -74.0007796 }, + { "lat": 40.7087359, "lon": -74.0007019 }, + { "lat": 40.7085591, "lon": -74.0005681 }, + { "lat": 40.7083278, "lon": -74.0003948 }, + { "lat": 40.7080222, "lon": -74.0001505 }, + { "lat": 40.7080187, "lon": -74.0001313 }, + { "lat": 40.7080518, "lon": -74.0000711 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1242297502, + "bounds": { + "minlat": 40.7085273, + "minlon": -73.9992604, + "maxlat": 40.7085736, + "maxlon": -73.9992179 + }, + "nodes": [ + 11032985314, + 11032985315, + 8279851792, + 11543856241, + 11543856242, + 8262309602, + 11543856243, + 11032985345, + 11032985314 + ], + "geometry": [ + { "lat": 40.7085676, "lon": -73.9992604 }, + { "lat": 40.7085736, "lon": -73.9992241 }, + { "lat": 40.7085437, "lon": -73.9992194 }, + { "lat": 40.7085335, "lon": -73.9992179 }, + { "lat": 40.7085273, "lon": -73.9992191 }, + { "lat": 40.7085274, "lon": -73.9992343 }, + { "lat": 40.7085283, "lon": -73.9992407 }, + { "lat": 40.7085299, "lon": -73.9992498 }, + { "lat": 40.7085676, "lon": -73.9992604 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1242297503, + "bounds": { + "minlat": 40.7083729, + "minlon": -73.9995983, + "maxlat": 40.7085051, + "maxlon": -73.9993210 + }, + "nodes": [ + 11032985348, + 11543856244, + 11543856245, + 11543856246, + 11032985356, + 11543856247, + 11543856248, + 11543856249, + 11543856250, + 8262309622, + 11543856252, + 11543856251, + 11032985346, + 11032985347, + 11032985348 + ], + "geometry": [ + { "lat": 40.7085051, "lon": -73.9995983 }, + { "lat": 40.7084656, "lon": -73.9995758 }, + { "lat": 40.7084211, "lon": -73.9995412 }, + { "lat": 40.7083880, "lon": -73.9995090 }, + { "lat": 40.7083771, "lon": -73.9994931 }, + { "lat": 40.7083729, "lon": -73.9994823 }, + { "lat": 40.7083730, "lon": -73.9994647 }, + { "lat": 40.7083758, "lon": -73.9994493 }, + { "lat": 40.7083816, "lon": -73.9994347 }, + { "lat": 40.7084565, "lon": -73.9993210 }, + { "lat": 40.7084614, "lon": -73.9993501 }, + { "lat": 40.7084638, "lon": -73.9993641 }, + { "lat": 40.7083932, "lon": -73.9994855 }, + { "lat": 40.7084768, "lon": -73.9995753 }, + { "lat": 40.7085051, "lon": -73.9995983 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1242297505, + "bounds": { + "minlat": 40.7090816, + "minlon": -73.9986359, + "maxlat": 40.7092750, + "maxlon": -73.9985853 + }, + "nodes": [ + 1538237300, + 11543862988, + 1538237463 + ], + "geometry": [ + { "lat": 40.7092750, "lon": -73.9986359 }, + { "lat": 40.7091826, "lon": -73.9986115 }, + { "lat": 40.7090816, "lon": -73.9985853 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1242297547, + "bounds": { + "minlat": 40.7090209, + "minlon": -73.9976116, + "maxlat": 40.7091111, + "maxlon": -73.9975863 + }, + "nodes": [ + 11543863057, + 11543863234, + 12353436231, + 11543863233 + ], + "geometry": [ + { "lat": 40.7091111, "lon": -73.9976116 }, + { "lat": 40.7090893, "lon": -73.9976055 }, + { "lat": 40.7090676, "lon": -73.9975994 }, + { "lat": 40.7090209, "lon": -73.9975863 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1242394342, + "bounds": { + "minlat": 40.7111321, + "minlon": -73.9492906, + "maxlat": 40.7111680, + "maxlon": -73.9488920 + }, + "nodes": [ + 11544820042, + 6235394661, + 42527647 + ], + "geometry": [ + { "lat": 40.7111321, "lon": -73.9492906 }, + { "lat": 40.7111591, "lon": -73.9489854 }, + { "lat": 40.7111680, "lon": -73.9488920 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1242394343, + "bounds": { + "minlat": 40.7110635, + "minlon": -73.9499923, + "maxlat": 40.7111321, + "maxlon": -73.9492906 + }, + "nodes": [ + 11544820045, + 11544820042 + ], + "geometry": [ + { "lat": 40.7110635, "lon": -73.9499923 }, + { "lat": 40.7111321, "lon": -73.9492906 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "cycleway:right:protection": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1242394344, + "bounds": { + "minlat": 40.7110318, + "minlon": -73.9503362, + "maxlat": 40.7110635, + "maxlon": -73.9499923 + }, + "nodes": [ + 11544820043, + 11544820045 + ], + "geometry": [ + { "lat": 40.7110318, "lon": -73.9503362 }, + { "lat": 40.7110635, "lon": -73.9499923 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1242394345, + "bounds": { + "minlat": 40.7109977, + "minlon": -73.9506941, + "maxlat": 40.7110318, + "maxlon": -73.9503362 + }, + "nodes": [ + 11544820044, + 11544820043 + ], + "geometry": [ + { "lat": 40.7109977, "lon": -73.9506941 }, + { "lat": 40.7110318, "lon": -73.9503362 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "cycleway:right:protection": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1242394346, + "bounds": { + "minlat": 40.7111680, + "minlon": -73.9488920, + "maxlat": 40.7112066, + "maxlon": -73.9484850 + }, + "nodes": [ + 42527647, + 6235394662, + 11544820046 + ], + "geometry": [ + { "lat": 40.7111680, "lon": -73.9488920 }, + { "lat": 40.7111763, "lon": -73.9488042 }, + { "lat": 40.7112066, "lon": -73.9484850 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1242394347, + "bounds": { + "minlat": 40.7114431, + "minlon": -73.9459923, + "maxlat": 40.7114810, + "maxlon": -73.9455960 + }, + "nodes": [ + 11544820047, + 10827599899, + 6235394665, + 42535541 + ], + "geometry": [ + { "lat": 40.7114431, "lon": -73.9459923 }, + { "lat": 40.7114687, "lon": -73.9457245 }, + { "lat": 40.7114729, "lon": -73.9456809 }, + { "lat": 40.7114810, "lon": -73.9455960 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Street", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1242394348, + "bounds": { + "minlat": 40.7116410, + "minlon": -73.9439110, + "maxlat": 40.7116799, + "maxlon": -73.9435051 + }, + "nodes": [ + 42467848, + 5471820440, + 7706137521 + ], + "geometry": [ + { "lat": 40.7116410, "lon": -73.9439110 }, + { "lat": 40.7116508, "lon": -73.9438076 }, + { "lat": 40.7116799, "lon": -73.9435051 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "name": "Grand Street", + "oneway": "no", + "sidewalk": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1242394349, + "bounds": { + "minlat": 40.7116799, + "minlon": -73.9435051, + "maxlat": 40.7118010, + "maxlon": -73.9422280 + }, + "nodes": [ + 7706137521, + 8842929799, + 42502968 + ], + "geometry": [ + { "lat": 40.7116799, "lon": -73.9435051 }, + { "lat": 40.7117928, "lon": -73.9423136 }, + { "lat": 40.7118010, "lon": -73.9422280 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "cycleway:right:protection": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "name": "Grand Street", + "sidewalk": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1242394350, + "bounds": { + "minlat": 40.7119620, + "minlon": -73.9406880, + "maxlat": 40.7125009, + "maxlon": -73.9384713 + }, + "nodes": [ + 42513634, + 7034559312, + 5487714327, + 42494193 + ], + "geometry": [ + { "lat": 40.7119620, "lon": -73.9406880 }, + { "lat": 40.7119889, "lon": -73.9405766 }, + { "lat": 40.7121264, "lon": -73.9400199 }, + { "lat": 40.7125009, "lon": -73.9384713 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "hgv": "local", + "highway": "primary", + "name": "Grand Street", + "sidewalk": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1242730501, + "bounds": { + "minlat": 40.8733719, + "minlon": -73.9180463, + "maxlat": 40.8735180, + "maxlon": -73.9176651 + }, + "nodes": [ + 11548968327, + 11548968329, + 11548968328 + ], + "geometry": [ + { "lat": 40.8733719, "lon": -73.9180463 }, + { "lat": 40.8735180, "lon": -73.9178506 }, + { "lat": 40.8733994, "lon": -73.9176651 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1243084740, + "bounds": { + "minlat": 40.7452751, + "minlon": -73.9774293, + "maxlat": 40.7454012, + "maxlon": -73.9773346 + }, + "nodes": [ + 42445382, + 11552957036, + 3839146838 + ], + "geometry": [ + { "lat": 40.7454012, "lon": -73.9773346 }, + { "lat": 40.7453108, "lon": -73.9774024 }, + { "lat": 40.7452751, "lon": -73.9774293 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1244669275, + "bounds": { + "minlat": 40.8208000, + "minlon": -73.9309180, + "maxlat": 40.8222250, + "maxlon": -73.9308093 + }, + "nodes": [ + 595786272, + 13146413881, + 13146413880 + ], + "geometry": [ + { "lat": 40.8222250, "lon": -73.9309022 }, + { "lat": 40.8221033, "lon": -73.9309180 }, + { "lat": 40.8208000, "lon": -73.9308093 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1244669277, + "bounds": { + "minlat": 40.8193150, + "minlon": -73.9304419, + "maxlat": 40.8195903, + "maxlon": -73.9303313 + }, + "nodes": [ + 13246259562, + 9166288601, + 13246259569, + 13720917648, + 13146413879 + ], + "geometry": [ + { "lat": 40.8193150, "lon": -73.9303313 }, + { "lat": 40.8194299, "lon": -73.9303808 }, + { "lat": 40.8194852, "lon": -73.9304019 }, + { "lat": 40.8195367, "lon": -73.9304215 }, + { "lat": 40.8195903, "lon": -73.9304419 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "3", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "no", + "turn:lanes:backward": "left|through|right" + } +}, +{ + "type": "way", + "id": 1244673148, + "bounds": { + "minlat": 40.8185896, + "minlon": -73.9276391, + "maxlat": 40.8186979, + "maxlon": -73.9273865 + }, + "nodes": [ + 42741436, + 9903127448, + 4207899733, + 11570087957 + ], + "geometry": [ + { "lat": 40.8185896, "lon": -73.9273865 }, + { "lat": 40.8186365, "lon": -73.9274610 }, + { "lat": 40.8186656, "lon": -73.9275140 }, + { "lat": 40.8186979, "lon": -73.9276391 } + ], + "tags": { + "busway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455" + } +}, +{ + "type": "way", + "id": 1244673149, + "bounds": { + "minlat": 40.8180477, + "minlon": -73.9255368, + "maxlat": 40.8181131, + "maxlon": -73.9252852 + }, + "nodes": [ + 11570087958, + 42778542 + ], + "geometry": [ + { "lat": 40.8181131, "lon": -73.9255368 }, + { "lat": 40.8180477, "lon": -73.9252852 } + ], + "tags": { + "bridge": "yes", + "busway:both": "lane", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "layer": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 149th Street", + "sidewalk": "both", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455", + "turn:lanes:forward": "left|through|" + } +}, +{ + "type": "way", + "id": 1244828952, + "bounds": { + "minlat": 40.8566002, + "minlon": -73.9326310, + "maxlat": 40.8573725, + "maxlon": -73.9299339 + }, + "nodes": [ + 42443492, + 704441652, + 704441653, + 42453591, + 704441656, + 704441657, + 6882325998, + 42429104 + ], + "geometry": [ + { "lat": 40.8573725, "lon": -73.9299339 }, + { "lat": 40.8573129, "lon": -73.9304867 }, + { "lat": 40.8572200, "lon": -73.9307249 }, + { "lat": 40.8568510, "lon": -73.9314750 }, + { "lat": 40.8566042, "lon": -73.9320262 }, + { "lat": 40.8566002, "lon": -73.9322032 }, + { "lat": 40.8566829, "lon": -73.9325079 }, + { "lat": 40.8567160, "lon": -73.9326310 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "name": "Fairview Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 1245444963, + "bounds": { + "minlat": 40.8649094, + "minlon": -73.9631668, + "maxlat": 40.8655501, + "maxlon": -73.9627057 + }, + "nodes": [ + 11578223993, + 11578223994, + 11578223995, + 11578223996 + ], + "geometry": [ + { "lat": 40.8649094, "lon": -73.9631668 }, + { "lat": 40.8653137, "lon": -73.9629509 }, + { "lat": 40.8653426, "lon": -73.9628288 }, + { "lat": 40.8655501, "lon": -73.9627057 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1245494106, + "bounds": { + "minlat": 40.7713699, + "minlon": -73.9809925, + "maxlat": 40.7715453, + "maxlon": -73.9808678 + }, + "nodes": [ + 7630577040, + 11578617192 + ], + "geometry": [ + { "lat": 40.7713699, "lon": -73.9809925 }, + { "lat": 40.7715453, "lon": -73.9808678 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1245494107, + "bounds": { + "minlat": 40.7715453, + "minlon": -73.9808678, + "maxlat": 40.7716384, + "maxlon": -73.9808021 + }, + "nodes": [ + 11578617192, + 11578617193, + 11578617191 + ], + "geometry": [ + { "lat": 40.7715453, "lon": -73.9808678 }, + { "lat": 40.7715833, "lon": -73.9808414 }, + { "lat": 40.7716384, "lon": -73.9808021 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1245522056, + "bounds": { + "minlat": 40.8796328, + "minlon": -73.9456175, + "maxlat": 40.8808654, + "maxlon": -73.9451422 + }, + "nodes": [ + 2214758041, + 5719015687, + 3913281915, + 11578945247 + ], + "geometry": [ + { "lat": 40.8796328, "lon": -73.9456175 }, + { "lat": 40.8801444, "lon": -73.9454180 }, + { "lat": 40.8804609, "lon": -73.9452946 }, + { "lat": 40.8808654, "lon": -73.9451422 } + ], + "tags": { + "highway": "service", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 1245522057, + "bounds": { + "minlat": 40.8807808, + "minlon": -73.9451422, + "maxlat": 40.8811445, + "maxlon": -73.9446536 + }, + "nodes": [ + 3913257026, + 11578945249, + 11578945245, + 11578945246, + 11578945248, + 11578945247 + ], + "geometry": [ + { "lat": 40.8811445, "lon": -73.9450334 }, + { "lat": 40.8811103, "lon": -73.9448798 }, + { "lat": 40.8810600, "lon": -73.9446536 }, + { "lat": 40.8807808, "lon": -73.9447622 }, + { "lat": 40.8808297, "lon": -73.9449820 }, + { "lat": 40.8808654, "lon": -73.9451422 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1245522058, + "bounds": { + "minlat": 40.8808654, + "minlon": -73.9451422, + "maxlat": 40.8811445, + "maxlon": -73.9450334 + }, + "nodes": [ + 11578945247, + 3913257026 + ], + "geometry": [ + { "lat": 40.8808654, "lon": -73.9451422 }, + { "lat": 40.8811445, "lon": -73.9450334 } + ], + "tags": { + "highway": "service", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "service": "parking_aisle", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 1245522059, + "bounds": { + "minlat": 40.8808297, + "minlon": -73.9449820, + "maxlat": 40.8811103, + "maxlon": -73.9448798 + }, + "nodes": [ + 11578945248, + 11578945249 + ], + "geometry": [ + { "lat": 40.8808297, "lon": -73.9449820 }, + { "lat": 40.8811103, "lon": -73.9448798 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1246228894, + "bounds": { + "minlat": 40.7558129, + "minlon": -73.9633150, + "maxlat": 40.7559330, + "maxlon": -73.9632295 + }, + "nodes": [ + 11586092960, + 11586092961, + 11586092962 + ], + "geometry": [ + { "lat": 40.7559330, "lon": -73.9632295 }, + { "lat": 40.7558678, "lon": -73.9632769 }, + { "lat": 40.7558129, "lon": -73.9633150 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1246865761, + "bounds": { + "minlat": 40.7719992, + "minlon": -73.9307214, + "maxlat": 40.7721088, + "maxlon": -73.9304691 + }, + "nodes": [ + 2886112277, + 6452917751, + 2886112276, + 11591735119, + 11591735120 + ], + "geometry": [ + { "lat": 40.7721088, "lon": -73.9304742 }, + { "lat": 40.7720438, "lon": -73.9304709 }, + { "lat": 40.7720330, "lon": -73.9304708 }, + { "lat": 40.7720105, "lon": -73.9304691 }, + { "lat": 40.7719992, "lon": -73.9307214 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1246891646, + "bounds": { + "minlat": 40.8665550, + "minlon": -73.9257088, + "maxlat": 40.8667389, + "maxlon": -73.9252622 + }, + "nodes": [ + 11591951231, + 11591951233, + 11591951232 + ], + "geometry": [ + { "lat": 40.8667389, "lon": -73.9252622 }, + { "lat": 40.8666939, "lon": -73.9253714 }, + { "lat": 40.8665550, "lon": -73.9257088 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1246891647, + "bounds": { + "minlat": 40.8654021, + "minlon": -73.9263199, + "maxlat": 40.8658667, + "maxlon": -73.9260111 + }, + "nodes": [ + 11591951234, + 11591951236, + 11591951235 + ], + "geometry": [ + { "lat": 40.8658667, "lon": -73.9263199 }, + { "lat": 40.8657816, "lon": -73.9262633 }, + { "lat": 40.8654021, "lon": -73.9260111 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1247276599, + "bounds": { + "minlat": 40.7029400, + "minlon": -73.9502470, + "maxlat": 40.7054366, + "maxlon": -73.9502020 + }, + "nodes": [ + 42520559, + 9755373290, + 6245642070, + 42519640, + 6245642072, + 9755373359, + 42520562, + 9755373358, + 13495812382, + 9755373379, + 42477588 + ], + "geometry": [ + { "lat": 40.7029400, "lon": -73.9502470 }, + { "lat": 40.7030473, "lon": -73.9502431 }, + { "lat": 40.7034591, "lon": -73.9502229 }, + { "lat": 40.7035560, "lon": -73.9502250 }, + { "lat": 40.7036641, "lon": -73.9502194 }, + { "lat": 40.7044555, "lon": -73.9502041 }, + { "lat": 40.7045440, "lon": -73.9502020 }, + { "lat": 40.7046479, "lon": -73.9502034 }, + { "lat": 40.7050459, "lon": -73.9502085 }, + { "lat": 40.7053289, "lon": -73.9502122 }, + { "lat": 40.7054366, "lon": -73.9502183 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1247276600, + "bounds": { + "minlat": 40.7027260, + "minlon": -73.9500130, + "maxlat": 40.7041363, + "maxlon": -73.9478887 + }, + "nodes": [ + 42527626, + 6245642069, + 9755373254, + 42499136, + 9755373253, + 11026017876, + 42505433 + ], + "geometry": [ + { "lat": 40.7027260, "lon": -73.9500130 }, + { "lat": 40.7027745, "lon": -73.9499367 }, + { "lat": 40.7038728, "lon": -73.9482460 }, + { "lat": 40.7039148, "lon": -73.9481813 }, + { "lat": 40.7039648, "lon": -73.9481004 }, + { "lat": 40.7040551, "lon": -73.9479545 }, + { "lat": 40.7041363, "lon": -73.9478887 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 1247953854, + "bounds": { + "minlat": 40.7164433, + "minlon": -74.0018993, + "maxlat": 40.7167206, + "maxlon": -74.0013636 + }, + "nodes": [ + 2563988704, + 11599251920, + 11600726693, + 11599251921, + 11599251955, + 11599251954, + 11599251953, + 11599251952, + 11599251951, + 11599251950, + 11599251949, + 11599251948, + 11599251947, + 11599251946, + 11599251945, + 11599251944, + 11599251943, + 11599251942, + 11599251941, + 11599251939, + 11599251940, + 11599251935, + 11599251934, + 11599251933, + 11599251932, + 11599251931, + 11599251936, + 11599251930, + 11599251929, + 11599251928, + 11599251938, + 11599251927, + 11599251937, + 11599251881, + 11599251926, + 11600726694, + 11599251916, + 2563988705, + 3766776646, + 3766776641, + 11599251919, + 2563988704 + ], + "geometry": [ + { "lat": 40.7164710, "lon": -74.0013636 }, + { "lat": 40.7164561, "lon": -74.0013765 }, + { "lat": 40.7164433, "lon": -74.0013875 }, + { "lat": 40.7164483, "lon": -74.0013904 }, + { "lat": 40.7164542, "lon": -74.0014091 }, + { "lat": 40.7164633, "lon": -74.0014268 }, + { "lat": 40.7164740, "lon": -74.0014454 }, + { "lat": 40.7164770, "lon": -74.0014645 }, + { "lat": 40.7164740, "lon": -74.0014737 }, + { "lat": 40.7164943, "lon": -74.0015174 }, + { "lat": 40.7165034, "lon": -74.0015146 }, + { "lat": 40.7165108, "lon": -74.0015224 }, + { "lat": 40.7165181, "lon": -74.0015380 }, + { "lat": 40.7165255, "lon": -74.0015581 }, + { "lat": 40.7165368, "lon": -74.0015771 }, + { "lat": 40.7165489, "lon": -74.0015927 }, + { "lat": 40.7165566, "lon": -74.0016110 }, + { "lat": 40.7165558, "lon": -74.0016255 }, + { "lat": 40.7165496, "lon": -74.0016342 }, + { "lat": 40.7165739, "lon": -74.0016838 }, + { "lat": 40.7165832, "lon": -74.0016839 }, + { "lat": 40.7165927, "lon": -74.0016872 }, + { "lat": 40.7166022, "lon": -74.0016992 }, + { "lat": 40.7166135, "lon": -74.0017208 }, + { "lat": 40.7166234, "lon": -74.0017368 }, + { "lat": 40.7166332, "lon": -74.0017555 }, + { "lat": 40.7166368, "lon": -74.0017679 }, + { "lat": 40.7166353, "lon": -74.0017797 }, + { "lat": 40.7166279, "lon": -74.0017875 }, + { "lat": 40.7166515, "lon": -74.0018485 }, + { "lat": 40.7166579, "lon": -74.0018453 }, + { "lat": 40.7166647, "lon": -74.0018464 }, + { "lat": 40.7166696, "lon": -74.0018532 }, + { "lat": 40.7166788, "lon": -74.0018726 }, + { "lat": 40.7166924, "lon": -74.0018930 }, + { "lat": 40.7166956, "lon": -74.0018993 }, + { "lat": 40.7167084, "lon": -74.0018891 }, + { "lat": 40.7167206, "lon": -74.0018783 }, + { "lat": 40.7166586, "lon": -74.0017505 }, + { "lat": 40.7165378, "lon": -74.0015012 }, + { "lat": 40.7164759, "lon": -74.0013738 }, + { "lat": 40.7164710, "lon": -74.0013636 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1248980470, + "bounds": { + "minlat": 40.7020700, + "minlon": -73.9618679, + "maxlat": 40.7021511, + "maxlon": -73.9617122 + }, + "nodes": [ + 11609574087, + 11609574103, + 11609574088 + ], + "geometry": [ + { "lat": 40.7020700, "lon": -73.9618679 }, + { "lat": 40.7021161, "lon": -73.9617793 }, + { "lat": 40.7021511, "lon": -73.9617122 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1248980471, + "bounds": { + "minlat": 40.7020879, + "minlon": -73.9617122, + "maxlat": 40.7021511, + "maxlon": -73.9614607 + }, + "nodes": [ + 11609574088, + 11609574089 + ], + "geometry": [ + { "lat": 40.7021511, "lon": -73.9617122 }, + { "lat": 40.7020879, "lon": -73.9614607 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1249986892, + "bounds": { + "minlat": 40.8582036, + "minlon": -73.9260932, + "maxlat": 40.8582375, + "maxlon": -73.9257097 + }, + "nodes": [ + 42451879, + 42451883, + 42451886, + 5403858702 + ], + "geometry": [ + { "lat": 40.8582334, "lon": -73.9257097 }, + { "lat": 40.8582375, "lon": -73.9258702 }, + { "lat": 40.8582203, "lon": -73.9260233 }, + { "lat": 40.8582036, "lon": -73.9260932 } + ], + "tags": { + "cycleway:both": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Fort George Avenue", + "name:etymology:wikidata": "Q1438535", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort George", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1249986893, + "bounds": { + "minlat": 40.8524955, + "minlon": -73.9276972, + "maxlat": 40.8525508, + "maxlon": -73.9276565 + }, + "nodes": [ + 42442764, + 8740550839 + ], + "geometry": [ + { "lat": 40.8524955, "lon": -73.9276972 }, + { "lat": 40.8525508, "lon": -73.9276565 } + ], + "tags": { + "cycleway:both": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "left|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1249986894, + "bounds": { + "minlat": 40.8525508, + "minlon": -73.9276565, + "maxlat": 40.8527790, + "maxlon": -73.9274888 + }, + "nodes": [ + 8740550839, + 12888390122 + ], + "geometry": [ + { "lat": 40.8525508, "lon": -73.9276565 }, + { "lat": 40.8527790, "lon": -73.9274888 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "left|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1249990285, + "bounds": { + "minlat": 40.8587919, + "minlon": -73.9229261, + "maxlat": 40.8589802, + "maxlon": -73.9228907 + }, + "nodes": [ + 1764424358, + 1764424345 + ], + "geometry": [ + { "lat": 40.8587919, "lon": -73.9228907 }, + { "lat": 40.8589802, "lon": -73.9229261 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "destination:lanes": "Dyckman Street|10th Avenue", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "25 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "oneway": "yes", + "ref": "HRD", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East River:Harlem River", + "tiger:name_type": "Dr", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 1249995305, + "bounds": { + "minlat": 40.8615643, + "minlon": -73.9210425, + "maxlat": 40.8622993, + "maxlon": -73.9205169 + }, + "nodes": [ + 11619325918, + 7265584435, + 42435415, + 7694163696, + 4215780093 + ], + "geometry": [ + { "lat": 40.8615643, "lon": -73.9210425 }, + { "lat": 40.8618067, "lon": -73.9208687 }, + { "lat": 40.8619360, "lon": -73.9207740 }, + { "lat": 40.8620038, "lon": -73.9207260 }, + { "lat": 40.8622993, "lon": -73.9205169 } + ], + "tags": { + "bicycle": "designated", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:forward": "2", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1249995306, + "bounds": { + "minlat": 40.8613110, + "minlon": -73.9212320, + "maxlat": 40.8615643, + "maxlon": -73.9210425 + }, + "nodes": [ + 42451736, + 9563435900, + 11619325918 + ], + "geometry": [ + { "lat": 40.8613110, "lon": -73.9212320 }, + { "lat": 40.8613596, "lon": -73.9211965 }, + { "lat": 40.8615643, "lon": -73.9210425 } + ], + "tags": { + "bicycle": "designated", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1249995307, + "bounds": { + "minlat": 40.8638064, + "minlon": -73.9194167, + "maxlat": 40.8643479, + "maxlon": -73.9190313 + }, + "nodes": [ + 9563662424, + 11648667220, + 42440494 + ], + "geometry": [ + { "lat": 40.8643479, "lon": -73.9190313 }, + { "lat": 40.8638633, "lon": -73.9193764 }, + { "lat": 40.8638064, "lon": -73.9194167 } + ], + "tags": { + "bicycle": "designated", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "10th Avenue", + "name_1": "10 Avenue", + "oneway": "no", + "parking:lane:both": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "10th", + "tiger:name_base_1": "10", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:backward": "|right", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1250024822, + "bounds": { + "minlat": 40.7451343, + "minlon": -73.9204129, + "maxlat": 40.7451593, + "maxlon": -73.9202033 + }, + "nodes": [ + 11177302955, + 10069693837, + 42817794 + ], + "geometry": [ + { "lat": 40.7451593, "lon": -73.9204129 }, + { "lat": 40.7451438, "lon": -73.9202810 }, + { "lat": 40.7451343, "lon": -73.9202033 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt", + "turn:lanes": "through|through|right" + } +}, +{ + "type": "way", + "id": 1250608533, + "bounds": { + "minlat": 40.7985077, + "minlon": -73.9674102, + "maxlat": 40.7986289, + "maxlon": -73.9671272 + }, + "nodes": [ + 42442559, + 9654214284, + 11625046652 + ], + "geometry": [ + { "lat": 40.7985077, "lon": -73.9671272 }, + { "lat": 40.7985621, "lon": -73.9672530 }, + { "lat": 40.7986289, "lon": -73.9674102 } + ], + "tags": { + "alt_name": "Odessa Steward Street", + "check_date": "2024-05-20", + "highway": "living_street", + "mapillary": "956340046131830", + "maxspeed": "10 mph", + "name": "West 103rd Street", + "name:ru": "Западная 103-я стрит", + "note": "must add elements added about 8/15/2023 per the source url such as asphalt art.", + "official_name": "Norman Rockwell Place", + "oneway": "yes", + "sidewalk": "separate", + "smoothness": "good", + "source": "https://www.nyc.gov/html/dot/downloads/pdf/w103-st-open-street-jun2022.pdf", + "surface": "asphalt", + "traffic_calming": "choker;kerb_extension" + } +}, +{ + "type": "way", + "id": 1250609842, + "bounds": { + "minlat": 40.7995802, + "minlon": -73.9699722, + "maxlat": 40.7997050, + "maxlon": -73.9696725 + }, + "nodes": [ + 11625056871, + 9496980744, + 42431113 + ], + "geometry": [ + { "lat": 40.7995802, "lon": -73.9696725 }, + { "lat": 40.7996518, "lon": -73.9698451 }, + { "lat": 40.7997050, "lon": -73.9699722 } + ], + "tags": { + "alt_name": "Humphrey Bogart Place", + "cycleway": "shared_lane", + "highway": "living_street", + "lit": "yes", + "maxspeed": "10 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "West 103rd Street", + "name:etymology:wikidata": "Q16390", + "name:ru": "Западная 103-я стрит", + "note": "must add elements added about 8/15/2023 per the source url such as asphalt art and safety stones.", + "oneway": "yes", + "sidewalk": "separate", + "smoothness": "good", + "source": "https://www.nyc.gov/html/dot/downloads/pdf/w103-st-open-street-jun2022.pdf", + "surface": "asphalt", + "traffic_calming": "choker;kerb_extension" + } +}, +{ + "type": "way", + "id": 1250729617, + "bounds": { + "minlat": 40.7041363, + "minlon": -73.9478887, + "maxlat": 40.7042690, + "maxlon": -73.9478101 + }, + "nodes": [ + 42505433, + 9983521633, + 5849457172 + ], + "geometry": [ + { "lat": 40.7041363, "lon": -73.9478887 }, + { "lat": 40.7042114, "lon": -73.9478278 }, + { "lat": 40.7042690, "lon": -73.9478101 } + ], + "tags": { + "foot": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Lorimer Street", + "sidewalk": "separate" + } +}, +{ + "type": "way", + "id": 1250866957, + "bounds": { + "minlat": 40.7590024, + "minlon": -73.9705330, + "maxlat": 40.7596371, + "maxlon": -73.9700720 + }, + "nodes": [ + 4862610026, + 10165922674, + 10165922665, + 42446998 + ], + "geometry": [ + { "lat": 40.7596371, "lon": -73.9700720 }, + { "lat": 40.7595797, "lon": -73.9701135 }, + { "lat": 40.7590640, "lon": -73.9704883 }, + { "lat": 40.7590024, "lon": -73.9705330 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q778010", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1250866958, + "bounds": { + "minlat": 40.7605926, + "minlon": -73.9686942, + "maxlat": 40.7607458, + "maxlon": -73.9683304 + }, + "nodes": [ + 11043134787, + 5607992554 + ], + "geometry": [ + { "lat": 40.7607458, "lon": -73.9686942 }, + { "lat": 40.7605926, "lon": -73.9683304 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1251282610, + "bounds": { + "minlat": 40.7104093, + "minlon": -73.9923248, + "maxlat": 40.7108497, + "maxlon": -73.9921579 + }, + "nodes": [ + 11631728247, + 11631728264, + 11631728251, + 11631728252, + 11631728253, + 11631728254, + 11631728255, + 11631728256, + 11631728257, + 11631728258, + 11519993989, + 11631728259, + 11631728260, + 11631728261, + 11519993991, + 11631728262, + 11631728263, + 11519993990, + 9385112274, + 9385112273, + 9385112272, + 11631728245, + 11631728246, + 11631728247 + ], + "geometry": [ + { "lat": 40.7105621, "lon": -73.9922430 }, + { "lat": 40.7104610, "lon": -73.9921867 }, + { "lat": 40.7104093, "lon": -73.9921579 }, + { "lat": 40.7105910, "lon": -73.9921859 }, + { "lat": 40.7106482, "lon": -73.9921944 }, + { "lat": 40.7107041, "lon": -73.9922020 }, + { "lat": 40.7107354, "lon": -73.9922108 }, + { "lat": 40.7107627, "lon": -73.9922191 }, + { "lat": 40.7108070, "lon": -73.9922390 }, + { "lat": 40.7108300, "lon": -73.9922489 }, + { "lat": 40.7108358, "lon": -73.9922540 }, + { "lat": 40.7108432, "lon": -73.9922607 }, + { "lat": 40.7108473, "lon": -73.9922731 }, + { "lat": 40.7108497, "lon": -73.9922870 }, + { "lat": 40.7108487, "lon": -73.9922967 }, + { "lat": 40.7108443, "lon": -73.9923163 }, + { "lat": 40.7108419, "lon": -73.9923248 }, + { "lat": 40.7108355, "lon": -73.9923212 }, + { "lat": 40.7108278, "lon": -73.9923170 }, + { "lat": 40.7108329, "lon": -73.9923008 }, + { "lat": 40.7107326, "lon": -73.9922457 }, + { "lat": 40.7106271, "lon": -73.9922313 }, + { "lat": 40.7106250, "lon": -73.9922519 }, + { "lat": 40.7105621, "lon": -73.9922430 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1251282614, + "bounds": { + "minlat": 40.7107847, + "minlon": -73.9921386, + "maxlat": 40.7108775, + "maxlon": -73.9920106 + }, + "nodes": [ + 11631728281, + 11631728282, + 11631728239, + 11631728200, + 11631728199, + 11631728236, + 11631728299, + 11631728300, + 11631728301, + 11631728302, + 8984339796, + 11631728303, + 11631728304, + 11631728305, + 11631728306, + 11631728237, + 11631728281 + ], + "geometry": [ + { "lat": 40.7107847, "lon": -73.9921149 }, + { "lat": 40.7107865, "lon": -73.9920862 }, + { "lat": 40.7107880, "lon": -73.9920651 }, + { "lat": 40.7107904, "lon": -73.9920326 }, + { "lat": 40.7107920, "lon": -73.9920106 }, + { "lat": 40.7108398, "lon": -73.9920349 }, + { "lat": 40.7108596, "lon": -73.9920450 }, + { "lat": 40.7108696, "lon": -73.9920543 }, + { "lat": 40.7108758, "lon": -73.9920674 }, + { "lat": 40.7108775, "lon": -73.9920813 }, + { "lat": 40.7108752, "lon": -73.9920943 }, + { "lat": 40.7108703, "lon": -73.9921202 }, + { "lat": 40.7108658, "lon": -73.9921296 }, + { "lat": 40.7108554, "lon": -73.9921373 }, + { "lat": 40.7108462, "lon": -73.9921386 }, + { "lat": 40.7108298, "lon": -73.9921323 }, + { "lat": 40.7107847, "lon": -73.9921149 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1251986223, + "bounds": { + "minlat": 40.7394702, + "minlon": -73.9930988, + "maxlat": 40.7397381, + "maxlon": -73.9929140 + }, + "nodes": [ + 11637804056, + 11637804058, + 11637804057 + ], + "geometry": [ + { "lat": 40.7397381, "lon": -73.9929140 }, + { "lat": 40.7396884, "lon": -73.9929473 }, + { "lat": 40.7394702, "lon": -73.9930988 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1252123710, + "bounds": { + "minlat": 40.7130797, + "minlon": -73.9944867, + "maxlat": 40.7136370, + "maxlon": -73.9941164 + }, + "nodes": [ + 11638917871, + 11638918045, + 11638917881, + 11638918046, + 8279851168, + 6330438292, + 11638917878, + 11638917879, + 11638917880, + 11638917877, + 11638917873, + 6330438296, + 11638917884, + 11638917887, + 11638917886, + 11638917883, + 11638917885, + 6330438295, + 11638917914, + 11638917913, + 11638918047, + 11638917906, + 11638917905, + 11638917904, + 11638918005, + 11638917919, + 11638917923, + 11638917903, + 11638917951, + 11638917958, + 11638917960, + 11638917871 + ], + "geometry": [ + { "lat": 40.7131396, "lon": -73.9941596 }, + { "lat": 40.7131410, "lon": -73.9941396 }, + { "lat": 40.7131201, "lon": -73.9941277 }, + { "lat": 40.7131002, "lon": -73.9941164 }, + { "lat": 40.7130985, "lon": -73.9941373 }, + { "lat": 40.7130797, "lon": -73.9943727 }, + { "lat": 40.7130815, "lon": -73.9943874 }, + { "lat": 40.7130822, "lon": -73.9943932 }, + { "lat": 40.7130870, "lon": -73.9944052 }, + { "lat": 40.7130961, "lon": -73.9944135 }, + { "lat": 40.7131071, "lon": -73.9944170 }, + { "lat": 40.7136030, "lon": -73.9944867 }, + { "lat": 40.7136152, "lon": -73.9944862 }, + { "lat": 40.7136221, "lon": -73.9944826 }, + { "lat": 40.7136289, "lon": -73.9944741 }, + { "lat": 40.7136319, "lon": -73.9944646 }, + { "lat": 40.7136340, "lon": -73.9944516 }, + { "lat": 40.7136348, "lon": -73.9944395 }, + { "lat": 40.7136370, "lon": -73.9944180 }, + { "lat": 40.7136217, "lon": -73.9944094 }, + { "lat": 40.7135850, "lon": -73.9943895 }, + { "lat": 40.7135703, "lon": -73.9944007 }, + { "lat": 40.7136077, "lon": -73.9944231 }, + { "lat": 40.7136063, "lon": -73.9944498 }, + { "lat": 40.7133846, "lon": -73.9944173 }, + { "lat": 40.7133685, "lon": -73.9944149 }, + { "lat": 40.7133555, "lon": -73.9944130 }, + { "lat": 40.7131215, "lon": -73.9943787 }, + { "lat": 40.7131292, "lon": -73.9942852 }, + { "lat": 40.7131301, "lon": -73.9942750 }, + { "lat": 40.7131309, "lon": -73.9942652 }, + { "lat": 40.7131396, "lon": -73.9941596 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1252123717, + "bounds": { + "minlat": 40.7137475, + "minlon": -73.9939452, + "maxlat": 40.7138283, + "maxlon": -73.9929765 + }, + "nodes": [ + 42433543, + 8279851199, + 42433542 + ], + "geometry": [ + { "lat": 40.7138283, "lon": -73.9929765 }, + { "lat": 40.7137557, "lon": -73.9938533 }, + { "lat": 40.7137475, "lon": -73.9939452 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1252123718, + "bounds": { + "minlat": 40.7136960, + "minlon": -73.9945699, + "maxlat": 40.7137267, + "maxlon": -73.9941975 + }, + "nodes": [ + 11638918069, + 8279851184, + 42433539 + ], + "geometry": [ + { "lat": 40.7137267, "lon": -73.9941975 }, + { "lat": 40.7137034, "lon": -73.9944855 }, + { "lat": 40.7136960, "lon": -73.9945699 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "oneway": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1252123719, + "bounds": { + "minlat": 40.7137267, + "minlon": -73.9941975, + "maxlat": 40.7137475, + "maxlon": -73.9939452 + }, + "nodes": [ + 11638918069, + 9631550569, + 42433542 + ], + "geometry": [ + { "lat": 40.7137267, "lon": -73.9941975 }, + { "lat": 40.7137430, "lon": -73.9940081 }, + { "lat": 40.7137475, "lon": -73.9939452 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "oneway": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1252123732, + "bounds": { + "minlat": 40.7137736, + "minlon": -73.9947531, + "maxlat": 40.7141985, + "maxlon": -73.9944949 + }, + "nodes": [ + 11638918102, + 11496497631, + 11638918103, + 11638918104, + 11638918105, + 11496497630, + 11638918106, + 11638918097, + 11638918107, + 11638918108, + 11638918109, + 11638918098, + 11638918110, + 11638918099, + 11638918113, + 11638918115, + 11638918111, + 11638918102 + ], + "geometry": [ + { "lat": 40.7141985, "lon": -73.9947331 }, + { "lat": 40.7141972, "lon": -73.9947391 }, + { "lat": 40.7141954, "lon": -73.9947469 }, + { "lat": 40.7141905, "lon": -73.9947523 }, + { "lat": 40.7141846, "lon": -73.9947531 }, + { "lat": 40.7141759, "lon": -73.9947490 }, + { "lat": 40.7141679, "lon": -73.9947452 }, + { "lat": 40.7137939, "lon": -73.9945362 }, + { "lat": 40.7137842, "lon": -73.9945302 }, + { "lat": 40.7137776, "lon": -73.9945213 }, + { "lat": 40.7137750, "lon": -73.9945150 }, + { "lat": 40.7137736, "lon": -73.9945059 }, + { "lat": 40.7137736, "lon": -73.9944949 }, + { "lat": 40.7137967, "lon": -73.9945079 }, + { "lat": 40.7138094, "lon": -73.9945150 }, + { "lat": 40.7141609, "lon": -73.9947120 }, + { "lat": 40.7141779, "lon": -73.9947212 }, + { "lat": 40.7141985, "lon": -73.9947331 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1252123742, + "bounds": { + "minlat": 40.7138208, + "minlon": -73.9942859, + "maxlat": 40.7142341, + "maxlon": -73.9940323 + }, + "nodes": [ + 11638918114, + 11638918101, + 11638918128, + 11638918129, + 8279851198, + 11638918130, + 11638918131, + 11638918132, + 11638918133, + 11638918134, + 11638918121, + 11638918135, + 11638918136, + 11638918137, + 11638918122, + 11638918138, + 11638918139, + 11638918112, + 11638918114 + ], + "geometry": [ + { "lat": 40.7138570, "lon": -73.9940776 }, + { "lat": 40.7138443, "lon": -73.9940704 }, + { "lat": 40.7138208, "lon": -73.9940574 }, + { "lat": 40.7138303, "lon": -73.9940480 }, + { "lat": 40.7138424, "lon": -73.9940397 }, + { "lat": 40.7138493, "lon": -73.9940358 }, + { "lat": 40.7138612, "lon": -73.9940323 }, + { "lat": 40.7138722, "lon": -73.9940339 }, + { "lat": 40.7138862, "lon": -73.9940384 }, + { "lat": 40.7138991, "lon": -73.9940449 }, + { "lat": 40.7142135, "lon": -73.9942219 }, + { "lat": 40.7142215, "lon": -73.9942262 }, + { "lat": 40.7142276, "lon": -73.9942348 }, + { "lat": 40.7142320, "lon": -73.9942460 }, + { "lat": 40.7142338, "lon": -73.9942568 }, + { "lat": 40.7142341, "lon": -73.9942719 }, + { "lat": 40.7142335, "lon": -73.9942859 }, + { "lat": 40.7142095, "lon": -73.9942722 }, + { "lat": 40.7138570, "lon": -73.9940776 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1252123743, + "bounds": { + "minlat": 40.7141017, + "minlon": -73.9940579, + "maxlat": 40.7142459, + "maxlon": -73.9939739 + }, + "nodes": [ + 11638918173, + 11638918174, + 11638918175, + 11638918176, + 11638918177, + 11638918190, + 11638918178, + 11638918179, + 11638918180, + 11638918181, + 11638918182, + 11638918183, + 11638918184, + 11638918185, + 11638918186, + 11638918187, + 11638918188, + 11638918189, + 11638918173 + ], + "geometry": [ + { "lat": 40.7142430, "lon": -73.9940435 }, + { "lat": 40.7142459, "lon": -73.9940041 }, + { "lat": 40.7142452, "lon": -73.9939977 }, + { "lat": 40.7142426, "lon": -73.9939927 }, + { "lat": 40.7142374, "lon": -73.9939910 }, + { "lat": 40.7142272, "lon": -73.9939897 }, + { "lat": 40.7141077, "lon": -73.9939739 }, + { "lat": 40.7141038, "lon": -73.9939747 }, + { "lat": 40.7141017, "lon": -73.9939783 }, + { "lat": 40.7141017, "lon": -73.9939822 }, + { "lat": 40.7141034, "lon": -73.9939860 }, + { "lat": 40.7141109, "lon": -73.9939912 }, + { "lat": 40.7141631, "lon": -73.9940199 }, + { "lat": 40.7141977, "lon": -73.9940392 }, + { "lat": 40.7142234, "lon": -73.9940548 }, + { "lat": 40.7142327, "lon": -73.9940579 }, + { "lat": 40.7142378, "lon": -73.9940564 }, + { "lat": 40.7142415, "lon": -73.9940509 }, + { "lat": 40.7142430, "lon": -73.9940435 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1252123749, + "bounds": { + "minlat": 40.7148922, + "minlon": -73.9944603, + "maxlat": 40.7149458, + "maxlon": -73.9941949 + }, + "nodes": [ + 11638918197, + 11638918199, + 11638918200, + 11638918198 + ], + "geometry": [ + { "lat": 40.7148922, "lon": -73.9944603 }, + { "lat": 40.7149090, "lon": -73.9943771 }, + { "lat": 40.7149173, "lon": -73.9943356 }, + { "lat": 40.7149458, "lon": -73.9941949 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1253167276, + "bounds": { + "minlat": 40.7099871, + "minlon": -73.9907136, + "maxlat": 40.7101034, + "maxlon": -73.9906925 + }, + "nodes": [ + 11648380263, + 11648380265, + 11648380264 + ], + "geometry": [ + { "lat": 40.7101034, "lon": -73.9907136 }, + { "lat": 40.7100780, "lon": -73.9907090 }, + { "lat": 40.7099871, "lon": -73.9906925 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1253330787, + "bounds": { + "minlat": 40.7512687, + "minlon": -74.0031467, + "maxlat": 40.7513384, + "maxlon": -74.0030954 + }, + "nodes": [ + 11649717721, + 12152921363, + 11649717718 + ], + "geometry": [ + { "lat": 40.7512687, "lon": -74.0031467 }, + { "lat": 40.7512815, "lon": -74.0031373 }, + { "lat": 40.7513384, "lon": -74.0030954 } + ], + "tags": { + "access": "residents", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1253330788, + "bounds": { + "minlat": 40.7507275, + "minlon": -74.0035450, + "maxlat": 40.7507940, + "maxlon": -74.0034960 + }, + "nodes": [ + 11649717715, + 12971432668, + 11649717719 + ], + "geometry": [ + { "lat": 40.7507275, "lon": -74.0035450 }, + { "lat": 40.7507848, "lon": -74.0035028 }, + { "lat": 40.7507940, "lon": -74.0034960 } + ], + "tags": { + "access": "residents", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1253330790, + "bounds": { + "minlat": 40.7507940, + "minlon": -74.0034960, + "maxlat": 40.7512687, + "maxlon": -74.0031467 + }, + "nodes": [ + 11649717719, + 11649717721 + ], + "geometry": [ + { "lat": 40.7507940, "lon": -74.0034960 }, + { "lat": 40.7512687, "lon": -74.0031467 } + ], + "tags": { + "access": "private", + "foot": "yes", + "highway": "service", + "motor_vehicle": "yes", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1253576095, + "bounds": { + "minlat": 40.8037220, + "minlon": -73.9914335, + "maxlat": 40.8045010, + "maxlon": -73.9908379 + }, + "nodes": [ + 5482410781, + 5482410778, + 5482410780, + 5482410768, + 5156502404 + ], + "geometry": [ + { "lat": 40.8045010, "lon": -73.9908379 }, + { "lat": 40.8044531, "lon": -73.9908745 }, + { "lat": 40.8043451, "lon": -73.9909571 }, + { "lat": 40.8040041, "lon": -73.9912178 }, + { "lat": 40.8037220, "lon": -73.9914335 } + ], + "tags": { + "highway": "service", + "name": "Somerset Lane" + } +}, +{ + "type": "way", + "id": 1253619801, + "bounds": { + "minlat": 40.8406001, + "minlon": -73.9430655, + "maxlat": 40.8407766, + "maxlon": -73.9428480 + }, + "nodes": [ + 11652898122, + 11652898123, + 11652898124, + 11652898125, + 11652898126, + 11652898127, + 11652898128, + 11652898129, + 11652898130, + 11652898131, + 11652898132, + 11652898133 + ], + "geometry": [ + { "lat": 40.8407462, "lon": -73.9428480 }, + { "lat": 40.8407712, "lon": -73.9429599 }, + { "lat": 40.8407766, "lon": -73.9429870 }, + { "lat": 40.8407749, "lon": -73.9430142 }, + { "lat": 40.8407619, "lon": -73.9430329 }, + { "lat": 40.8406873, "lon": -73.9430631 }, + { "lat": 40.8406691, "lon": -73.9430655 }, + { "lat": 40.8406521, "lon": -73.9430616 }, + { "lat": 40.8406392, "lon": -73.9430554 }, + { "lat": 40.8406327, "lon": -73.9430453 }, + { "lat": 40.8406263, "lon": -73.9430191 }, + { "lat": 40.8406001, "lon": -73.9429062 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1253622047, + "bounds": { + "minlat": 40.8442931, + "minlon": -73.9428391, + "maxlat": 40.8444228, + "maxlon": -73.9425829 + }, + "nodes": [ + 11652912831, + 11652912832, + 11652912833, + 11652912834, + 11652912835, + 11652912836 + ], + "geometry": [ + { "lat": 40.8442931, "lon": -73.9425829 }, + { "lat": 40.8443077, "lon": -73.9426532 }, + { "lat": 40.8443307, "lon": -73.9427095 }, + { "lat": 40.8443666, "lon": -73.9427669 }, + { "lat": 40.8443973, "lon": -73.9428085 }, + { "lat": 40.8444228, "lon": -73.9428391 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1253841917, + "bounds": { + "minlat": 40.7125315, + "minlon": -73.9923646, + "maxlat": 40.7126154, + "maxlon": -73.9923247 + }, + "nodes": [ + 11655450071, + 11655450088, + 11655450072, + 11655450073, + 11655450074, + 11655450075, + 11655450087, + 11655450076, + 11655450077, + 11655450071 + ], + "geometry": [ + { "lat": 40.7126154, "lon": -73.9923646 }, + { "lat": 40.7125560, "lon": -73.9923560 }, + { "lat": 40.7125315, "lon": -73.9923524 }, + { "lat": 40.7125335, "lon": -73.9923353 }, + { "lat": 40.7125372, "lon": -73.9923284 }, + { "lat": 40.7125458, "lon": -73.9923247 }, + { "lat": 40.7125585, "lon": -73.9923264 }, + { "lat": 40.7125938, "lon": -73.9923310 }, + { "lat": 40.7125984, "lon": -73.9923347 }, + { "lat": 40.7126154, "lon": -73.9923646 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1253841921, + "bounds": { + "minlat": 40.7125384, + "minlon": -73.9924784, + "maxlat": 40.7125702, + "maxlon": -73.9923865 + }, + "nodes": [ + 11655450090, + 11655450066, + 11655450091, + 11655450092, + 11655450068, + 11655450093, + 11655450094, + 11655450062, + 11655450095, + 11655450096, + 11655450067, + 11655450097, + 11655450090 + ], + "geometry": [ + { "lat": 40.7125702, "lon": -73.9923875 }, + { "lat": 40.7125667, "lon": -73.9924305 }, + { "lat": 40.7125627, "lon": -73.9924784 }, + { "lat": 40.7125539, "lon": -73.9924751 }, + { "lat": 40.7125470, "lon": -73.9924660 }, + { "lat": 40.7125416, "lon": -73.9924532 }, + { "lat": 40.7125388, "lon": -73.9924392 }, + { "lat": 40.7125384, "lon": -73.9924258 }, + { "lat": 40.7125401, "lon": -73.9924144 }, + { "lat": 40.7125446, "lon": -73.9924015 }, + { "lat": 40.7125531, "lon": -73.9923912 }, + { "lat": 40.7125592, "lon": -73.9923865 }, + { "lat": 40.7125702, "lon": -73.9923875 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1254225972, + "bounds": { + "minlat": 40.7130516, + "minlon": -73.9924451, + "maxlat": 40.7131574, + "maxlon": -73.9923990 + }, + "nodes": [ + 11658550055, + 11658550056, + 11658550057, + 11658550063, + 11658550058, + 11658550059, + 11658550061, + 11658550060, + 11658550062, + 11658550055 + ], + "geometry": [ + { "lat": 40.7130516, "lon": -73.9924294 }, + { "lat": 40.7130726, "lon": -73.9924021 }, + { "lat": 40.7130796, "lon": -73.9923990 }, + { "lat": 40.7131314, "lon": -73.9924071 }, + { "lat": 40.7131545, "lon": -73.9924107 }, + { "lat": 40.7131574, "lon": -73.9924152 }, + { "lat": 40.7131549, "lon": -73.9924417 }, + { "lat": 40.7131520, "lon": -73.9924451 }, + { "lat": 40.7131284, "lon": -73.9924414 }, + { "lat": 40.7130516, "lon": -73.9924294 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1254225973, + "bounds": { + "minlat": 40.7130368, + "minlon": -73.9926205, + "maxlat": 40.7131394, + "maxlon": -73.9925706 + }, + "nodes": [ + 11658550064, + 11658550065, + 11658550066, + 11658550067, + 11658550068, + 11658565269, + 11658565270, + 11658565271, + 11658565272, + 11658550064 + ], + "geometry": [ + { "lat": 40.7130368, "lon": -73.9925706 }, + { "lat": 40.7130523, "lon": -73.9926036 }, + { "lat": 40.7130586, "lon": -73.9926088 }, + { "lat": 40.7131173, "lon": -73.9926184 }, + { "lat": 40.7131335, "lon": -73.9926205 }, + { "lat": 40.7131371, "lon": -73.9926170 }, + { "lat": 40.7131394, "lon": -73.9925905 }, + { "lat": 40.7131371, "lon": -73.9925863 }, + { "lat": 40.7131182, "lon": -73.9925830 }, + { "lat": 40.7130368, "lon": -73.9925706 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1254225974, + "bounds": { + "minlat": 40.7131096, + "minlon": -73.9925550, + "maxlat": 40.7131373, + "maxlon": -73.9924641 + }, + "nodes": [ + 11658550040, + 6330229739, + 11658565279, + 11658565273, + 11658565274, + 5863635881, + 11658565275, + 11658565276, + 11658565277, + 5863635878, + 11658565278, + 11658550041, + 11658550042, + 11658550040 + ], + "geometry": [ + { "lat": 40.7131096, "lon": -73.9925550 }, + { "lat": 40.7131189, "lon": -73.9925527 }, + { "lat": 40.7131255, "lon": -73.9925472 }, + { "lat": 40.7131312, "lon": -73.9925385 }, + { "lat": 40.7131354, "lon": -73.9925237 }, + { "lat": 40.7131364, "lon": -73.9925125 }, + { "lat": 40.7131373, "lon": -73.9925038 }, + { "lat": 40.7131347, "lon": -73.9924867 }, + { "lat": 40.7131287, "lon": -73.9924750 }, + { "lat": 40.7131258, "lon": -73.9924718 }, + { "lat": 40.7131229, "lon": -73.9924680 }, + { "lat": 40.7131170, "lon": -73.9924641 }, + { "lat": 40.7131133, "lon": -73.9925092 }, + { "lat": 40.7131096, "lon": -73.9925550 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1254240540, + "bounds": { + "minlat": 40.7204261, + "minlon": -74.0032974, + "maxlat": 40.7205089, + "maxlon": -74.0031616 + }, + "nodes": [ + 8996353563, + 11658947720, + 11658947722, + 8307641821, + 11658947721 + ], + "geometry": [ + { "lat": 40.7204261, "lon": -74.0032974 }, + { "lat": 40.7204445, "lon": -74.0032553 }, + { "lat": 40.7204657, "lon": -74.0032174 }, + { "lat": 40.7204864, "lon": -74.0031880 }, + { "lat": 40.7205089, "lon": -74.0031616 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Greene Street", + "name:etymology:wikidata": "Q366113", + "name:ko": "그린 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q83170568" + } +}, +{ + "type": "way", + "id": 1254240548, + "bounds": { + "minlat": 40.7208746, + "minlon": -74.0039266, + "maxlat": 40.7209857, + "maxlon": -74.0038257 + }, + "nodes": [ + 11658947747, + 2151385472, + 11658947740, + 11658947741, + 42433573 + ], + "geometry": [ + { "lat": 40.7209857, "lon": -74.0038257 }, + { "lat": 40.7209604, "lon": -74.0038475 }, + { "lat": 40.7209308, "lon": -74.0038723 }, + { "lat": 40.7209006, "lon": -74.0039003 }, + { "lat": 40.7208746, "lon": -74.0039266 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Wooster Street", + "name:etymology:wikidata": "Q4993246", + "name:ko": "우스터 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q19582621", + "wikipedia": "en:Wooster Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1254245253, + "bounds": { + "minlat": 40.7232866, + "minlon": -74.0081625, + "maxlat": 40.7232998, + "maxlon": -74.0080506 + }, + "nodes": [ + 11659009136, + 8304498378, + 11659009135 + ], + "geometry": [ + { "lat": 40.7232866, "lon": -74.0080506 }, + { "lat": 40.7232960, "lon": -74.0081260 }, + { "lat": 40.7232998, "lon": -74.0081625 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Desbrosses Street", + "name:ko": "데브로시스 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1254245254, + "bounds": { + "minlat": 40.7238579, + "minlon": -74.0080929, + "maxlat": 40.7239723, + "maxlon": -74.0079721 + }, + "nodes": [ + 11322971515, + 11659009154, + 11659009140, + 11659009141, + 11659009142, + 11659009143, + 11659009155, + 11659009144, + 11659009145, + 11659009146, + 11659009147, + 11659009148, + 11659009149, + 11322971510, + 11659009153, + 11659009150, + 11322971513, + 11659009151, + 11659009152, + 11322971515 + ], + "geometry": [ + { "lat": 40.7239723, "lon": -74.0079721 }, + { "lat": 40.7239091, "lon": -74.0079811 }, + { "lat": 40.7238635, "lon": -74.0079849 }, + { "lat": 40.7238593, "lon": -74.0079864 }, + { "lat": 40.7238579, "lon": -74.0079908 }, + { "lat": 40.7238601, "lon": -74.0079966 }, + { "lat": 40.7238826, "lon": -74.0080292 }, + { "lat": 40.7239229, "lon": -74.0080872 }, + { "lat": 40.7239299, "lon": -74.0080919 }, + { "lat": 40.7239366, "lon": -74.0080929 }, + { "lat": 40.7239550, "lon": -74.0080925 }, + { "lat": 40.7239244, "lon": -74.0080512 }, + { "lat": 40.7239200, "lon": -74.0080383 }, + { "lat": 40.7239184, "lon": -74.0080276 }, + { "lat": 40.7239180, "lon": -74.0080185 }, + { "lat": 40.7239204, "lon": -74.0080058 }, + { "lat": 40.7239238, "lon": -74.0079974 }, + { "lat": 40.7239307, "lon": -74.0079889 }, + { "lat": 40.7239411, "lon": -74.0079833 }, + { "lat": 40.7239723, "lon": -74.0079721 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1254245260, + "bounds": { + "minlat": 40.7239319, + "minlon": -74.0088185, + "maxlat": 40.7240201, + "maxlon": -74.0083958 + }, + "nodes": [ + 11659041071, + 11659041072, + 11659041073, + 11659041074, + 11659041075, + 11659041076, + 11659041077, + 4892579964, + 11659041078, + 11659041079, + 11659041080, + 11659041081, + 11659041082, + 11659041083, + 11659041084, + 11659041085, + 11659041069, + 11659041071 + ], + "geometry": [ + { "lat": 40.7239791, "lon": -74.0088185 }, + { "lat": 40.7239895, "lon": -74.0087332 }, + { "lat": 40.7239932, "lon": -74.0087224 }, + { "lat": 40.7240159, "lon": -74.0086827 }, + { "lat": 40.7240196, "lon": -74.0086742 }, + { "lat": 40.7240201, "lon": -74.0086625 }, + { "lat": 40.7240155, "lon": -74.0086011 }, + { "lat": 40.7240096, "lon": -74.0085630 }, + { "lat": 40.7240026, "lon": -74.0085290 }, + { "lat": 40.7239922, "lon": -74.0084997 }, + { "lat": 40.7239705, "lon": -74.0084564 }, + { "lat": 40.7239543, "lon": -74.0084266 }, + { "lat": 40.7239319, "lon": -74.0083958 }, + { "lat": 40.7239365, "lon": -74.0084065 }, + { "lat": 40.7239395, "lon": -74.0084182 }, + { "lat": 40.7239411, "lon": -74.0084298 }, + { "lat": 40.7239457, "lon": -74.0084772 }, + { "lat": 40.7239791, "lon": -74.0088185 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1254245263, + "bounds": { + "minlat": 40.7240577, + "minlon": -74.0088128, + "maxlat": 40.7241257, + "maxlon": -74.0085853 + }, + "nodes": [ + 11659041093, + 11659041094, + 11659041095, + 11659041096, + 11659041097, + 11659041098, + 11659041086, + 11659041099, + 11659041100, + 11659041101, + 11659041102, + 11659041103, + 11659041104, + 11659041105, + 11659041106, + 4892579960, + 11659041107, + 11659041108, + 11659041109, + 11659041093 + ], + "geometry": [ + { "lat": 40.7241257, "lon": -74.0086734 }, + { "lat": 40.7240665, "lon": -74.0085903 }, + { "lat": 40.7240632, "lon": -74.0085859 }, + { "lat": 40.7240601, "lon": -74.0085853 }, + { "lat": 40.7240582, "lon": -74.0085881 }, + { "lat": 40.7240577, "lon": -74.0085926 }, + { "lat": 40.7240609, "lon": -74.0086310 }, + { "lat": 40.7240731, "lon": -74.0087858 }, + { "lat": 40.7240749, "lon": -74.0087951 }, + { "lat": 40.7240795, "lon": -74.0088020 }, + { "lat": 40.7240933, "lon": -74.0088128 }, + { "lat": 40.7240860, "lon": -74.0087361 }, + { "lat": 40.7240857, "lon": -74.0087219 }, + { "lat": 40.7240881, "lon": -74.0087109 }, + { "lat": 40.7240926, "lon": -74.0087005 }, + { "lat": 40.7241011, "lon": -74.0086858 }, + { "lat": 40.7241106, "lon": -74.0086724 }, + { "lat": 40.7241150, "lon": -74.0086703 }, + { "lat": 40.7241200, "lon": -74.0086703 }, + { "lat": 40.7241257, "lon": -74.0086734 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1254245270, + "bounds": { + "minlat": 40.7241206, + "minlon": -74.0089173, + "maxlat": 40.7242197, + "maxlon": -74.0087605 + }, + "nodes": [ + 2562466380, + 11659041141, + 2562466385, + 2562466380 + ], + "geometry": [ + { "lat": 40.7241354, "lon": -74.0089173 }, + { "lat": 40.7241206, "lon": -74.0087605 }, + { "lat": 40.7242197, "lon": -74.0088994 }, + { "lat": 40.7241354, "lon": -74.0089173 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1254245274, + "bounds": { + "minlat": 40.7240259, + "minlon": -74.0093129, + "maxlat": 40.7240925, + "maxlon": -74.0084450 + }, + "nodes": [ + 11659041157, + 4142105805, + 4142105824, + 4142105799, + 4142105810, + 7968837726, + 4892579967, + 4142105811 + ], + "geometry": [ + { "lat": 40.7240925, "lon": -74.0093129 }, + { "lat": 40.7240638, "lon": -74.0090026 }, + { "lat": 40.7240580, "lon": -74.0089167 }, + { "lat": 40.7240498, "lon": -74.0087744 }, + { "lat": 40.7240432, "lon": -74.0086818 }, + { "lat": 40.7240420, "lon": -74.0086678 }, + { "lat": 40.7240362, "lon": -74.0085987 }, + { "lat": 40.7240259, "lon": -74.0084450 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Watts Street", + "name:etymology:wikidata": "Q1702113", + "name:ko": "와츠 스트리트", + "name:ru": "Уоттс-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1254245275, + "bounds": { + "minlat": 40.7240925, + "minlon": -74.0095482, + "maxlat": 40.7241140, + "maxlon": -74.0093129 + }, + "nodes": [ + 11659041158, + 11658662436, + 42436073, + 11658662438, + 11659041157 + ], + "geometry": [ + { "lat": 40.7241140, "lon": -74.0095482 }, + { "lat": 40.7241090, "lon": -74.0094936 }, + { "lat": 40.7241026, "lon": -74.0094239 }, + { "lat": 40.7240945, "lon": -74.0093347 }, + { "lat": 40.7240925, "lon": -74.0093129 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Watts Street", + "name:etymology:wikidata": "Q1702113", + "name:ko": "와츠 스트리트", + "name:ru": "Уоттс-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1254245277, + "bounds": { + "minlat": 40.7245942, + "minlon": -74.0093325, + "maxlat": 40.7246766, + "maxlon": -74.0093172 + }, + "nodes": [ + 4142105812, + 11659041162 + ], + "geometry": [ + { "lat": 40.7246766, "lon": -74.0093172 }, + { "lat": 40.7245942, "lon": -74.0093325 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1254245283, + "bounds": { + "minlat": 40.7243398, + "minlon": -74.0092586, + "maxlat": 40.7244633, + "maxlon": -74.0091697 + }, + "nodes": [ + 2562466395, + 11659041190, + 2562466406, + 2562466395 + ], + "geometry": [ + { "lat": 40.7243398, "lon": -74.0092586 }, + { "lat": 40.7244633, "lon": -74.0092392 }, + { "lat": 40.7244129, "lon": -74.0091697 }, + { "lat": 40.7243398, "lon": -74.0092586 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1254252696, + "bounds": { + "minlat": 40.7315369, + "minlon": -73.9426099, + "maxlat": 40.7319791, + "maxlon": -73.9417646 + }, + "nodes": [ + 11659083338, + 11659083339, + 11659100194, + 11659083346, + 11659083340, + 11659083348, + 11659083341, + 11659083347, + 11659083342, + 11659083343, + 11659083344, + 11659083345, + 11659100195, + 11659100197, + 11659100196, + 11659083346 + ], + "geometry": [ + { "lat": 40.7315369, "lon": -73.9426099 }, + { "lat": 40.7315472, "lon": -73.9425314 }, + { "lat": 40.7315545, "lon": -73.9424854 }, + { "lat": 40.7315789, "lon": -73.9423321 }, + { "lat": 40.7316356, "lon": -73.9419750 }, + { "lat": 40.7316497, "lon": -73.9418947 }, + { "lat": 40.7316828, "lon": -73.9418043 }, + { "lat": 40.7317291, "lon": -73.9417696 }, + { "lat": 40.7318515, "lon": -73.9417646 }, + { "lat": 40.7319168, "lon": -73.9417898 }, + { "lat": 40.7319573, "lon": -73.9418366 }, + { "lat": 40.7319771, "lon": -73.9419243 }, + { "lat": 40.7319791, "lon": -73.9422892 }, + { "lat": 40.7319589, "lon": -73.9423590 }, + { "lat": 40.7319132, "lon": -73.9423885 }, + { "lat": 40.7315789, "lon": -73.9423321 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1254361805, + "bounds": { + "minlat": 40.7241702, + "minlon": -74.0114201, + "maxlat": 40.7242462, + "maxlon": -74.0113394 + }, + "nodes": [ + 4899819658, + 10612369385, + 4899819651, + 11660063322, + 11660063323, + 11660063321, + 4899819665, + 10612369386, + 4899819664, + 11660063339, + 11660063338, + 11660063332, + 11660063333, + 4899819658 + ], + "geometry": [ + { "lat": 40.7242403, "lon": -74.0114071 }, + { "lat": 40.7242035, "lon": -74.0114138 }, + { "lat": 40.7241702, "lon": -74.0114201 }, + { "lat": 40.7241774, "lon": -74.0114157 }, + { "lat": 40.7241817, "lon": -74.0114056 }, + { "lat": 40.7241814, "lon": -74.0113946 }, + { "lat": 40.7241752, "lon": -74.0113497 }, + { "lat": 40.7241947, "lon": -74.0113452 }, + { "lat": 40.7242317, "lon": -74.0113394 }, + { "lat": 40.7242379, "lon": -74.0113451 }, + { "lat": 40.7242422, "lon": -74.0113545 }, + { "lat": 40.7242462, "lon": -74.0113871 }, + { "lat": 40.7242449, "lon": -74.0113985 }, + { "lat": 40.7242403, "lon": -74.0114071 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1254361806, + "bounds": { + "minlat": 40.7236070, + "minlon": -74.0113755, + "maxlat": 40.7236301, + "maxlon": -74.0111627 + }, + "nodes": [ + 11660063353, + 11660063357, + 3874650177, + 42436024 + ], + "geometry": [ + { "lat": 40.7236070, "lon": -74.0111627 }, + { "lat": 40.7236095, "lon": -74.0111849 }, + { "lat": 40.7236145, "lon": -74.0112316 }, + { "lat": 40.7236301, "lon": -74.0113755 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Desbrosses Street", + "name:ko": "데브로시스 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1254361807, + "bounds": { + "minlat": 40.7243435, + "minlon": -74.0113834, + "maxlat": 40.7244250, + "maxlon": -74.0112980 + }, + "nodes": [ + 4899819652, + 10612369383, + 4899819659, + 11660063335, + 11660063334, + 11660063336, + 11660063337, + 4899819674, + 10612369384, + 11660063374, + 11660063376, + 11660063375, + 4899819679, + 4899819652 + ], + "geometry": [ + { "lat": 40.7244163, "lon": -74.0113714 }, + { "lat": 40.7243923, "lon": -74.0113761 }, + { "lat": 40.7243563, "lon": -74.0113834 }, + { "lat": 40.7243516, "lon": -74.0113781 }, + { "lat": 40.7243485, "lon": -74.0113701 }, + { "lat": 40.7243435, "lon": -74.0113301 }, + { "lat": 40.7243448, "lon": -74.0113213 }, + { "lat": 40.7243488, "lon": -74.0113149 }, + { "lat": 40.7243838, "lon": -74.0113070 }, + { "lat": 40.7244250, "lon": -74.0112980 }, + { "lat": 40.7244165, "lon": -74.0113027 }, + { "lat": 40.7244116, "lon": -74.0113109 }, + { "lat": 40.7244098, "lon": -74.0113217 }, + { "lat": 40.7244163, "lon": -74.0113714 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1254361808, + "bounds": { + "minlat": 40.7242627, + "minlon": -74.0112354, + "maxlat": 40.7242749, + "maxlon": -74.0111079 + }, + "nodes": [ + 42445174, + 3874650180 + ], + "geometry": [ + { "lat": 40.7242749, "lon": -74.0112354 }, + { "lat": 40.7242627, "lon": -74.0111079 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Watts Street", + "name:etymology:wikidata": "Q1702113", + "name:ko": "와츠 스트리트", + "name:ru": "Уоттс-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1254451508, + "bounds": { + "minlat": 40.7045568, + "minlon": -73.9867073, + "maxlat": 40.7047413, + "maxlon": -73.9866526 + }, + "nodes": [ + 11661044220, + 11661044230, + 11661044175, + 2153931545, + 2153931547, + 4631363578, + 214371055, + 11661044235, + 11661044170, + 11661044231, + 11661044232, + 11661044220 + ], + "geometry": [ + { "lat": 40.7045568, "lon": -73.9866576 }, + { "lat": 40.7045588, "lon": -73.9867073 }, + { "lat": 40.7045894, "lon": -73.9867056 }, + { "lat": 40.7046577, "lon": -73.9867016 }, + { "lat": 40.7047413, "lon": -73.9866967 }, + { "lat": 40.7047400, "lon": -73.9866555 }, + { "lat": 40.7046602, "lon": -73.9866617 }, + { "lat": 40.7046485, "lon": -73.9866617 }, + { "lat": 40.7046396, "lon": -73.9866623 }, + { "lat": 40.7046315, "lon": -73.9866628 }, + { "lat": 40.7046311, "lon": -73.9866526 }, + { "lat": 40.7045568, "lon": -73.9866576 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1254451512, + "bounds": { + "minlat": 40.7044435, + "minlon": -73.9867134, + "maxlat": 40.7046485, + "maxlon": -73.9864527 + }, + "nodes": [ + 11661044230, + 2153931542, + 11661044183, + 11661044238, + 11661044177, + 9928127491, + 11661044181, + 11661044182, + 9928127493, + 11661044180, + 9928127492, + 380059031, + 11661044204, + 11661044216, + 11661044215, + 11661044203, + 11661044202, + 11661044201, + 11661044200, + 11661044199, + 11661044198, + 11661044197, + 8262936211, + 4631217606, + 8262936210, + 11661044236, + 11661044235, + 11661044170, + 11661044231, + 11661044232, + 11661044220, + 11661044230 + ], + "geometry": [ + { "lat": 40.7045588, "lon": -73.9867073 }, + { "lat": 40.7044856, "lon": -73.9867116 }, + { "lat": 40.7044669, "lon": -73.9867129 }, + { "lat": 40.7044577, "lon": -73.9867134 }, + { "lat": 40.7044564, "lon": -73.9866721 }, + { "lat": 40.7044557, "lon": -73.9866506 }, + { "lat": 40.7044542, "lon": -73.9866032 }, + { "lat": 40.7044456, "lon": -73.9865217 }, + { "lat": 40.7044443, "lon": -73.9864807 }, + { "lat": 40.7044435, "lon": -73.9864552 }, + { "lat": 40.7044587, "lon": -73.9864545 }, + { "lat": 40.7044961, "lon": -73.9864527 }, + { "lat": 40.7044961, "lon": -73.9865025 }, + { "lat": 40.7045048, "lon": -73.9865144 }, + { "lat": 40.7045110, "lon": -73.9865232 }, + { "lat": 40.7045158, "lon": -73.9865298 }, + { "lat": 40.7045241, "lon": -73.9865334 }, + { "lat": 40.7045346, "lon": -73.9865283 }, + { "lat": 40.7045572, "lon": -73.9865192 }, + { "lat": 40.7046020, "lon": -73.9864977 }, + { "lat": 40.7046130, "lon": -73.9864956 }, + { "lat": 40.7046226, "lon": -73.9864977 }, + { "lat": 40.7046333, "lon": -73.9865060 }, + { "lat": 40.7046330, "lon": -73.9865459 }, + { "lat": 40.7046330, "lon": -73.9865635 }, + { "lat": 40.7046481, "lon": -73.9865736 }, + { "lat": 40.7046485, "lon": -73.9866617 }, + { "lat": 40.7046396, "lon": -73.9866623 }, + { "lat": 40.7046315, "lon": -73.9866628 }, + { "lat": 40.7046311, "lon": -73.9866526 }, + { "lat": 40.7045568, "lon": -73.9866576 }, + { "lat": 40.7045588, "lon": -73.9867073 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1254486598, + "bounds": { + "minlat": 40.8229349, + "minlon": -73.9563100, + "maxlat": 40.8231276, + "maxlon": -73.9558494 + }, + "nodes": [ + 11661505845, + 10055069619, + 595338201 + ], + "geometry": [ + { "lat": 40.8229349, "lon": -73.9558494 }, + { "lat": 40.8230688, "lon": -73.9561683 }, + { "lat": 40.8231276, "lon": -73.9563100 } + ], + "tags": { + "highway": "residential", + "name": "West 138th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1254486599, + "bounds": { + "minlat": 40.8228273, + "minlon": -73.9558494, + "maxlat": 40.8229349, + "maxlon": -73.9555932 + }, + "nodes": [ + 11661505844, + 11661505845 + ], + "geometry": [ + { "lat": 40.8228273, "lon": -73.9555932 }, + { "lat": 40.8229349, "lon": -73.9558494 } + ], + "tags": { + "highway": "residential", + "layer": "-1", + "lit": "yes", + "name": "West 138th Street", + "oneway": "yes", + "surface": "asphalt", + "tunnel": "yes", + "wikimedia_commons": "File:View_of_tunnel_and_138th_Street_entrance_to_Riverbank_State_Park.jpg" + } +}, +{ + "type": "way", + "id": 1255141185, + "bounds": { + "minlat": 40.7048416, + "minlon": -73.9875958, + "maxlat": 40.7050212, + "maxlon": -73.9873434 + }, + "nodes": [ + 11668168018, + 11668371239, + 8262935938, + 11668168019, + 11668167828, + 11668168020, + 11668167824, + 11668167899, + 11668167900, + 11668167888, + 11668167889, + 11668167890, + 11668167891, + 11668167892, + 11668167901, + 11668167917, + 11668167902, + 11668167903, + 11668168022, + 8262936088, + 11668168021, + 11668168018 + ], + "geometry": [ + { "lat": 40.7048900, "lon": -73.9875958 }, + { "lat": 40.7048672, "lon": -73.9875534 }, + { "lat": 40.7048567, "lon": -73.9875338 }, + { "lat": 40.7048416, "lon": -73.9875055 }, + { "lat": 40.7048489, "lon": -73.9874884 }, + { "lat": 40.7048579, "lon": -73.9874679 }, + { "lat": 40.7048681, "lon": -73.9874483 }, + { "lat": 40.7048751, "lon": -73.9874398 }, + { "lat": 40.7048852, "lon": -73.9874311 }, + { "lat": 40.7048987, "lon": -73.9874253 }, + { "lat": 40.7049096, "lon": -73.9874207 }, + { "lat": 40.7049198, "lon": -73.9874076 }, + { "lat": 40.7049247, "lon": -73.9873922 }, + { "lat": 40.7049252, "lon": -73.9873754 }, + { "lat": 40.7049230, "lon": -73.9873434 }, + { "lat": 40.7049342, "lon": -73.9873437 }, + { "lat": 40.7049991, "lon": -73.9873459 }, + { "lat": 40.7050212, "lon": -73.9874570 }, + { "lat": 40.7049693, "lon": -73.9875458 }, + { "lat": 40.7049654, "lon": -73.9875525 }, + { "lat": 40.7049600, "lon": -73.9875617 }, + { "lat": 40.7048900, "lon": -73.9875958 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Pearl Street Terrace", + "surface": "compacted" + } +}, +{ + "type": "way", + "id": 1255157534, + "bounds": { + "minlat": 40.7049578, + "minlon": -73.9880096, + "maxlat": 40.7050551, + "maxlon": -73.9877684 + }, + "nodes": [ + 8262936066, + 11668368424, + 11668368376, + 11668368377, + 11668368378, + 11668368379, + 11668368439, + 11668368440, + 11668368441, + 11668368442, + 11668368443, + 11668368444, + 11668368445, + 11668368446, + 11668368447, + 11668368448, + 11668368449, + 11668368450, + 11668368451, + 11668368452, + 11668368437, + 8262935992, + 11668368453, + 11668368418, + 8262935991, + 11668368413, + 8262935990, + 11668368414, + 8262935989, + 11668368415, + 8262936069, + 11668368416, + 8262936068, + 8262936067, + 8262936066 + ], + "geometry": [ + { "lat": 40.7050536, "lon": -73.9877898 }, + { "lat": 40.7050543, "lon": -73.9877802 }, + { "lat": 40.7050551, "lon": -73.9877684 }, + { "lat": 40.7050435, "lon": -73.9877702 }, + { "lat": 40.7050300, "lon": -73.9877726 }, + { "lat": 40.7050221, "lon": -73.9877745 }, + { "lat": 40.7050052, "lon": -73.9877817 }, + { "lat": 40.7049883, "lon": -73.9877927 }, + { "lat": 40.7049692, "lon": -73.9878117 }, + { "lat": 40.7049609, "lon": -73.9878232 }, + { "lat": 40.7049578, "lon": -73.9878353 }, + { "lat": 40.7049588, "lon": -73.9878483 }, + { "lat": 40.7049653, "lon": -73.9878644 }, + { "lat": 40.7049726, "lon": -73.9878755 }, + { "lat": 40.7049844, "lon": -73.9878903 }, + { "lat": 40.7049974, "lon": -73.9879100 }, + { "lat": 40.7050094, "lon": -73.9879322 }, + { "lat": 40.7050187, "lon": -73.9879522 }, + { "lat": 40.7050292, "lon": -73.9879810 }, + { "lat": 40.7050383, "lon": -73.9880096 }, + { "lat": 40.7050400, "lon": -73.9879801 }, + { "lat": 40.7050422, "lon": -73.9879434 }, + { "lat": 40.7050396, "lon": -73.9879459 }, + { "lat": 40.7050371, "lon": -73.9879439 }, + { "lat": 40.7050299, "lon": -73.9879255 }, + { "lat": 40.7050158, "lon": -73.9879008 }, + { "lat": 40.7049990, "lon": -73.9878742 }, + { "lat": 40.7049835, "lon": -73.9878573 }, + { "lat": 40.7049779, "lon": -73.9878476 }, + { "lat": 40.7049779, "lon": -73.9878363 }, + { "lat": 40.7049845, "lon": -73.9878261 }, + { "lat": 40.7049972, "lon": -73.9878140 }, + { "lat": 40.7050139, "lon": -73.9878006 }, + { "lat": 40.7050372, "lon": -73.9877915 }, + { "lat": 40.7050536, "lon": -73.9877898 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1255157538, + "bounds": { + "minlat": 40.7049226, + "minlon": -73.9881606, + "maxlat": 40.7050812, + "maxlon": -73.9877475 + }, + "nodes": [ + 11668368386, + 11668368384, + 11668368385, + 11668368376, + 11668368424, + 8262936066, + 8262935992, + 11668368437, + 11668368452, + 11668368457, + 11668368458, + 11668368459, + 11668368460, + 11668371177, + 4631363812, + 11668371174, + 11668168016, + 11668168015, + 11668368386 + ], + "geometry": [ + { "lat": 40.7050812, "lon": -73.9877503 }, + { "lat": 40.7050689, "lon": -73.9877489 }, + { "lat": 40.7050573, "lon": -73.9877475 }, + { "lat": 40.7050551, "lon": -73.9877684 }, + { "lat": 40.7050543, "lon": -73.9877802 }, + { "lat": 40.7050536, "lon": -73.9877898 }, + { "lat": 40.7050422, "lon": -73.9879434 }, + { "lat": 40.7050400, "lon": -73.9879801 }, + { "lat": 40.7050383, "lon": -73.9880096 }, + { "lat": 40.7050356, "lon": -73.9880326 }, + { "lat": 40.7049578, "lon": -73.9881163 }, + { "lat": 40.7049501, "lon": -73.9881155 }, + { "lat": 40.7049446, "lon": -73.9881063 }, + { "lat": 40.7049425, "lon": -73.9881023 }, + { "lat": 40.7049325, "lon": -73.9881122 }, + { "lat": 40.7049226, "lon": -73.9881220 }, + { "lat": 40.7049444, "lon": -73.9881606 }, + { "lat": 40.7050534, "lon": -73.9881466 }, + { "lat": 40.7050812, "lon": -73.9877503 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1255157559, + "bounds": { + "minlat": 40.7045678, + "minlon": -73.9881415, + "maxlat": 40.7048168, + "maxlon": -73.9875387 + }, + "nodes": [ + 11668371368, + 11668371303, + 11668371375, + 8262936046, + 8262936051, + 11668371356, + 8262936052, + 11668371355, + 8262936053, + 4633920007, + 11668371358, + 4631363575, + 11668371261, + 11668371260, + 11668371259, + 8262935942, + 11668371376, + 11668371284, + 11668371285, + 11668371286, + 11668371287, + 11668371288, + 11668371289, + 11668371290, + 11668371272, + 11668371273, + 11668371269, + 11668371342, + 11668371341, + 11668371340, + 11668371339, + 11668371338, + 11668371337, + 11668371336, + 11668371335, + 11668371320, + 11668371319, + 11668371330, + 11668371329, + 11668371328, + 11668371327, + 11668371312, + 11668371311, + 11668371310, + 11668371309, + 11668371372, + 11668371371, + 11668371370, + 11668371369, + 11668371368 + ], + "geometry": [ + { "lat": 40.7046020, "lon": -73.9881415 }, + { "lat": 40.7045945, "lon": -73.9881337 }, + { "lat": 40.7045865, "lon": -73.9881253 }, + { "lat": 40.7046257, "lon": -73.9880626 }, + { "lat": 40.7046345, "lon": -73.9880621 }, + { "lat": 40.7046869, "lon": -73.9880821 }, + { "lat": 40.7046952, "lon": -73.9880818 }, + { "lat": 40.7047034, "lon": -73.9880764 }, + { "lat": 40.7047259, "lon": -73.9880568 }, + { "lat": 40.7047342, "lon": -73.9880564 }, + { "lat": 40.7047339, "lon": -73.9880493 }, + { "lat": 40.7047188, "lon": -73.9875914 }, + { "lat": 40.7046286, "lon": -73.9875811 }, + { "lat": 40.7046075, "lon": -73.9875758 }, + { "lat": 40.7045678, "lon": -73.9875594 }, + { "lat": 40.7045708, "lon": -73.9875488 }, + { "lat": 40.7045737, "lon": -73.9875387 }, + { "lat": 40.7045770, "lon": -73.9875403 }, + { "lat": 40.7046048, "lon": -73.9875544 }, + { "lat": 40.7046231, "lon": -73.9875619 }, + { "lat": 40.7046420, "lon": -73.9875643 }, + { "lat": 40.7047250, "lon": -73.9875713 }, + { "lat": 40.7047357, "lon": -73.9875757 }, + { "lat": 40.7047476, "lon": -73.9875849 }, + { "lat": 40.7047869, "lon": -73.9876358 }, + { "lat": 40.7048057, "lon": -73.9876201 }, + { "lat": 40.7048111, "lon": -73.9876297 }, + { "lat": 40.7048168, "lon": -73.9876399 }, + { "lat": 40.7048071, "lon": -73.9876477 }, + { "lat": 40.7047854, "lon": -73.9876677 }, + { "lat": 40.7047616, "lon": -73.9877005 }, + { "lat": 40.7047530, "lon": -73.9877430 }, + { "lat": 40.7047511, "lon": -73.9877833 }, + { "lat": 40.7047543, "lon": -73.9878248 }, + { "lat": 40.7047650, "lon": -73.9878737 }, + { "lat": 40.7047734, "lon": -73.9879136 }, + { "lat": 40.7047806, "lon": -73.9879498 }, + { "lat": 40.7047890, "lon": -73.9879913 }, + { "lat": 40.7047911, "lon": -73.9880093 }, + { "lat": 40.7047882, "lon": -73.9880238 }, + { "lat": 40.7047804, "lon": -73.9880360 }, + { "lat": 40.7047195, "lon": -73.9880874 }, + { "lat": 40.7047066, "lon": -73.9880969 }, + { "lat": 40.7046959, "lon": -73.9881008 }, + { "lat": 40.7046784, "lon": -73.9881008 }, + { "lat": 40.7046700, "lon": -73.9880966 }, + { "lat": 40.7046515, "lon": -73.9880892 }, + { "lat": 40.7046400, "lon": -73.9880884 }, + { "lat": 40.7046323, "lon": -73.9880924 }, + { "lat": 40.7046020, "lon": -73.9881415 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1255414695, + "bounds": { + "minlat": 40.7041958, + "minlon": -73.9888334, + "maxlat": 40.7044393, + "maxlon": -73.9886958 + }, + "nodes": [ + 8262935872, + 11669756877, + 11669756880, + 8262935873, + 11669756865, + 11669756858, + 11669756864, + 11669756863, + 11669756862, + 11669756861, + 8262935872 + ], + "geometry": [ + { "lat": 40.7044393, "lon": -73.9888334 }, + { "lat": 40.7043743, "lon": -73.9887965 }, + { "lat": 40.7042480, "lon": -73.9887252 }, + { "lat": 40.7041958, "lon": -73.9886958 }, + { "lat": 40.7042165, "lon": -73.9886980 }, + { "lat": 40.7042350, "lon": -73.9886999 }, + { "lat": 40.7042693, "lon": -73.9887039 }, + { "lat": 40.7043081, "lon": -73.9887162 }, + { "lat": 40.7043518, "lon": -73.9887420 }, + { "lat": 40.7043905, "lon": -73.9887779 }, + { "lat": 40.7044393, "lon": -73.9888334 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1255450305, + "bounds": { + "minlat": 40.8700651, + "minlon": -73.9318640, + "maxlat": 40.8717540, + "maxlon": -73.9312068 + }, + "nodes": [ + 11670993639, + 374446191, + 11670993637, + 11670993640, + 374446197, + 374446201, + 2560788242, + 2560788240, + 374446204, + 2560788237, + 374446209, + 2560788234, + 374446213, + 11593587557, + 2560788230, + 374446217, + 2560788228, + 374446220, + 2560788225, + 374446224, + 374446229, + 374446234, + 374446239, + 374446242, + 374446246 + ], + "geometry": [ + { "lat": 40.8717540, "lon": -73.9314089 }, + { "lat": 40.8716342, "lon": -73.9314711 }, + { "lat": 40.8715234, "lon": -73.9315342 }, + { "lat": 40.8714392, "lon": -73.9315783 }, + { "lat": 40.8713552, "lon": -73.9316230 }, + { "lat": 40.8709353, "lon": -73.9318306 }, + { "lat": 40.8708712, "lon": -73.9318521 }, + { "lat": 40.8708298, "lon": -73.9318636 }, + { "lat": 40.8707994, "lon": -73.9318640 }, + { "lat": 40.8707672, "lon": -73.9318588 }, + { "lat": 40.8707233, "lon": -73.9318463 }, + { "lat": 40.8706788, "lon": -73.9318232 }, + { "lat": 40.8706148, "lon": -73.9317817 }, + { "lat": 40.8705817, "lon": -73.9317566 }, + { "lat": 40.8705622, "lon": -73.9317418 }, + { "lat": 40.8705116, "lon": -73.9316941 }, + { "lat": 40.8704681, "lon": -73.9316373 }, + { "lat": 40.8704412, "lon": -73.9315937 }, + { "lat": 40.8704111, "lon": -73.9315342 }, + { "lat": 40.8703683, "lon": -73.9314314 }, + { "lat": 40.8703112, "lon": -73.9313098 }, + { "lat": 40.8702463, "lon": -73.9312583 }, + { "lat": 40.8701813, "lon": -73.9312326 }, + { "lat": 40.8701100, "lon": -73.9312068 }, + { "lat": 40.8700651, "lon": -73.9312221 } + ], + "tags": { + "bicycle": "yes", + "highway": "track", + "incline": "0%", + "smoothness": "excellent", + "surface": "asphalt", + "tracktype": "grade1", + "width": "3.4" + } +}, +{ + "type": "way", + "id": 1255450992, + "bounds": { + "minlat": 40.8733855, + "minlon": -73.9299259, + "maxlat": 40.8735975, + "maxlon": -73.9297335 + }, + "nodes": [ + 11670626255, + 11670626256, + 11670626257, + 11670626258, + 11670626259, + 11670626260 + ], + "geometry": [ + { "lat": 40.8735975, "lon": -73.9299259 }, + { "lat": 40.8735824, "lon": -73.9298569 }, + { "lat": 40.8735524, "lon": -73.9298125 }, + { "lat": 40.8735091, "lon": -73.9297763 }, + { "lat": 40.8734703, "lon": -73.9297553 }, + { "lat": 40.8733855, "lon": -73.9297335 } + ], + "tags": { + "foot": "yes", + "highway": "track", + "motor_vehicle": "no", + "surface": "asphalt", + "tracktype": "grade1" + } +}, +{ + "type": "way", + "id": 1255470697, + "bounds": { + "minlat": 40.7043505, + "minlon": -73.9904220, + "maxlat": 40.7045941, + "maxlon": -73.9902862 + }, + "nodes": [ + 8262935548, + 11670464066, + 11670464067, + 11670464074, + 3350690588, + 8262935551, + 11670464063, + 3350690583, + 3350690586, + 11671483701, + 8262935552, + 11670464075, + 11670464076, + 11670464077, + 11670464078, + 8262935618, + 11671229134, + 11671229135, + 11671229136, + 11671229137, + 11671229138, + 11671229139, + 11671229140, + 8262935861, + 11670464073, + 11670464072, + 11670464071, + 11670464070, + 11670464069, + 11670464068, + 8262935548 + ], + "geometry": [ + { "lat": 40.7045941, "lon": -73.9903827 }, + { "lat": 40.7045646, "lon": -73.9903788 }, + { "lat": 40.7045288, "lon": -73.9903767 }, + { "lat": 40.7044927, "lon": -73.9903801 }, + { "lat": 40.7044518, "lon": -73.9903903 }, + { "lat": 40.7044277, "lon": -73.9903987 }, + { "lat": 40.7044180, "lon": -73.9903917 }, + { "lat": 40.7043953, "lon": -73.9904039 }, + { "lat": 40.7043706, "lon": -73.9904220 }, + { "lat": 40.7043614, "lon": -73.9904189 }, + { "lat": 40.7043526, "lon": -73.9904143 }, + { "lat": 40.7043505, "lon": -73.9903998 }, + { "lat": 40.7043566, "lon": -73.9903929 }, + { "lat": 40.7043532, "lon": -73.9903751 }, + { "lat": 40.7043622, "lon": -73.9903672 }, + { "lat": 40.7043589, "lon": -73.9903498 }, + { "lat": 40.7043719, "lon": -73.9903414 }, + { "lat": 40.7043983, "lon": -73.9903260 }, + { "lat": 40.7044250, "lon": -73.9903123 }, + { "lat": 40.7044520, "lon": -73.9903019 }, + { "lat": 40.7044878, "lon": -73.9902910 }, + { "lat": 40.7045204, "lon": -73.9902862 }, + { "lat": 40.7045520, "lon": -73.9902867 }, + { "lat": 40.7045696, "lon": -73.9902881 }, + { "lat": 40.7045692, "lon": -73.9903097 }, + { "lat": 40.7045776, "lon": -73.9903115 }, + { "lat": 40.7045762, "lon": -73.9903301 }, + { "lat": 40.7045827, "lon": -73.9903316 }, + { "lat": 40.7045825, "lon": -73.9903491 }, + { "lat": 40.7045893, "lon": -73.9903526 }, + { "lat": 40.7045941, "lon": -73.9903827 } + ], + "tags": { + "amenity": "theatre", + "highway": "pedestrian", + "surface": "paving_stones", + "theatre:type": "amphi" + } +}, +{ + "type": "way", + "id": 1255470716, + "bounds": { + "minlat": 40.7040395, + "minlon": -73.9896981, + "maxlat": 40.7041265, + "maxlon": -73.9896010 + }, + "nodes": [ + 11670452847, + 11670452848, + 11670452849, + 8262935662, + 11671483706, + 10167628761, + 11671483707, + 8262935736, + 11671483647, + 8262935542, + 11670452847 + ], + "geometry": [ + { "lat": 40.7041130, "lon": -73.9896981 }, + { "lat": 40.7041098, "lon": -73.9896885 }, + { "lat": 40.7041001, "lon": -73.9896829 }, + { "lat": 40.7040942, "lon": -73.9896748 }, + { "lat": 40.7040395, "lon": -73.9896259 }, + { "lat": 40.7040463, "lon": -73.9896132 }, + { "lat": 40.7040532, "lon": -73.9896010 }, + { "lat": 40.7041183, "lon": -73.9896637 }, + { "lat": 40.7041265, "lon": -73.9896710 }, + { "lat": 40.7041203, "lon": -73.9896822 }, + { "lat": 40.7041130, "lon": -73.9896981 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1255470718, + "bounds": { + "minlat": 40.7039450, + "minlon": -73.9894841, + "maxlat": 40.7041342, + "maxlon": -73.9893855 + }, + "nodes": [ + 11671483593, + 2568554117, + 11671483622, + 4631217591, + 11671483713, + 11671483609, + 8262935711, + 11671483592, + 8262935712, + 8262935531, + 11671483593 + ], + "geometry": [ + { "lat": 40.7039450, "lon": -73.9894383 }, + { "lat": 40.7039540, "lon": -73.9893855 }, + { "lat": 40.7039983, "lon": -73.9894123 }, + { "lat": 40.7040324, "lon": -73.9894330 }, + { "lat": 40.7041329, "lon": -73.9894262 }, + { "lat": 40.7041339, "lon": -73.9894351 }, + { "lat": 40.7041342, "lon": -73.9894447 }, + { "lat": 40.7040414, "lon": -73.9894665 }, + { "lat": 40.7040158, "lon": -73.9894841 }, + { "lat": 40.7039821, "lon": -73.9894623 }, + { "lat": 40.7039450, "lon": -73.9894383 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1255470729, + "bounds": { + "minlat": 40.7040270, + "minlon": -73.9906389, + "maxlat": 40.7040935, + "maxlon": -73.9904710 + }, + "nodes": [ + 11671483815, + 8262935573, + 11671483845, + 11671483844, + 11671483843, + 11671483842, + 11671483841, + 11671483840, + 11671483839, + 11671483752, + 8262935576, + 2342950097, + 11671483819, + 11671483818, + 11671483817, + 11671483816, + 11671483815 + ], + "geometry": [ + { "lat": 40.7040443, "lon": -73.9906250 }, + { "lat": 40.7040358, "lon": -73.9906324 }, + { "lat": 40.7040283, "lon": -73.9906389 }, + { "lat": 40.7040273, "lon": -73.9906301 }, + { "lat": 40.7040270, "lon": -73.9906081 }, + { "lat": 40.7040329, "lon": -73.9905794 }, + { "lat": 40.7040427, "lon": -73.9905463 }, + { "lat": 40.7040535, "lon": -73.9905170 }, + { "lat": 40.7040648, "lon": -73.9904916 }, + { "lat": 40.7040752, "lon": -73.9904710 }, + { "lat": 40.7040828, "lon": -73.9904762 }, + { "lat": 40.7040935, "lon": -73.9904828 }, + { "lat": 40.7040771, "lon": -73.9905100 }, + { "lat": 40.7040633, "lon": -73.9905399 }, + { "lat": 40.7040494, "lon": -73.9905753 }, + { "lat": 40.7040439, "lon": -73.9906037 }, + { "lat": 40.7040443, "lon": -73.9906250 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1255470734, + "bounds": { + "minlat": 40.7039000, + "minlon": -73.9890828, + "maxlat": 40.7039680, + "maxlon": -73.9889806 + }, + "nodes": [ + 2568554571, + 11671483595, + 11671483704, + 11671483855, + 11153669645, + 11671483598, + 11671483599, + 2568554571 + ], + "geometry": [ + { "lat": 40.7039395, "lon": -73.9890816 }, + { "lat": 40.7039036, "lon": -73.9890828 }, + { "lat": 40.7039025, "lon": -73.9890480 }, + { "lat": 40.7039000, "lon": -73.9889806 }, + { "lat": 40.7039576, "lon": -73.9890126 }, + { "lat": 40.7039680, "lon": -73.9890180 }, + { "lat": 40.7039537, "lon": -73.9890498 }, + { "lat": 40.7039395, "lon": -73.9890816 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1255629252, + "bounds": { + "minlat": 40.8786462, + "minlon": -73.9861938, + "maxlat": 40.8790399, + "maxlon": -73.9859219 + }, + "nodes": [ + 103177521, + 11672599649, + 11672599650, + 11672599651 + ], + "geometry": [ + { "lat": 40.8786462, "lon": -73.9859219 }, + { "lat": 40.8788524, "lon": -73.9859723 }, + { "lat": 40.8789384, "lon": -73.9859794 }, + { "lat": 40.8790399, "lon": -73.9861938 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1255629253, + "bounds": { + "minlat": 40.8786462, + "minlon": -73.9880174, + "maxlat": 40.8799566, + "maxlon": -73.9859219 + }, + "nodes": [ + 103177521, + 12194411862, + 12194411861, + 11672599652, + 11672599653 + ], + "geometry": [ + { "lat": 40.8786462, "lon": -73.9859219 }, + { "lat": 40.8787591, "lon": -73.9862069 }, + { "lat": 40.8797062, "lon": -73.9878545 }, + { "lat": 40.8798178, "lon": -73.9878373 }, + { "lat": 40.8799566, "lon": -73.9880174 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1255629254, + "bounds": { + "minlat": 40.8799686, + "minlon": -73.9887613, + "maxlat": 40.8801097, + "maxlon": -73.9885067 + }, + "nodes": [ + 11672599654, + 11672599655 + ], + "geometry": [ + { "lat": 40.8801097, "lon": -73.9887613 }, + { "lat": 40.8799686, "lon": -73.9885067 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1255629255, + "bounds": { + "minlat": 40.8798357, + "minlon": -73.9888915, + "maxlat": 40.8799781, + "maxlon": -73.9886392 + }, + "nodes": [ + 11672599656, + 11672599657 + ], + "geometry": [ + { "lat": 40.8799781, "lon": -73.9888915 }, + { "lat": 40.8798357, "lon": -73.9886392 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1255692911, + "bounds": { + "minlat": 40.7015856, + "minlon": -73.9902315, + "maxlat": 40.7016114, + "maxlon": -73.9899673 + }, + "nodes": [ + 451019504, + 11673031541 + ], + "geometry": [ + { "lat": 40.7015856, "lon": -73.9899673 }, + { "lat": 40.7016114, "lon": -73.9902315 } + ], + "tags": { + "bicycle": "no", + "destination": "Verrazano Narrows Bridge", + "destination:ref": "I 278 West", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxheight": "12'4\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1255692926, + "bounds": { + "minlat": 40.7016433, + "minlon": -73.9905094, + "maxlat": 40.7016936, + "maxlon": -73.9899803 + }, + "nodes": [ + 11673036928, + 1258945647, + 10864736900, + 1258945643, + 1258945612 + ], + "geometry": [ + { "lat": 40.7016433, "lon": -73.9899803 }, + { "lat": 40.7016507, "lon": -73.9901415 }, + { "lat": 40.7016615, "lon": -73.9902933 }, + { "lat": 40.7016694, "lon": -73.9903605 }, + { "lat": 40.7016936, "lon": -73.9905094 } + ], + "tags": { + "covered": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "layer": "0", + "maxspeed": "20 mph", + "name": "York Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "York", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1255692927, + "bounds": { + "minlat": 40.7016338, + "minlon": -73.9899803, + "maxlat": 40.7016433, + "maxlon": -73.9896812 + }, + "nodes": [ + 248607283, + 10726048601, + 11673036928 + ], + "geometry": [ + { "lat": 40.7016338, "lon": -73.9896812 }, + { "lat": 40.7016367, "lon": -73.9897721 }, + { "lat": 40.7016433, "lon": -73.9899803 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "layer": "0", + "maxspeed": "20 mph", + "name": "York Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "York", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1255692928, + "bounds": { + "minlat": 40.7017562, + "minlon": -73.9923955, + "maxlat": 40.7018470, + "maxlon": -73.9922769 + }, + "nodes": [ + 3174844140, + 11674208000 + ], + "geometry": [ + { "lat": 40.7018470, "lon": -73.9923955 }, + { "lat": 40.7017562, "lon": -73.9922769 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1255692929, + "bounds": { + "minlat": 40.7013993, + "minlon": -73.9919157, + "maxlat": 40.7016243, + "maxlon": -73.9916191 + }, + "nodes": [ + 3174844148, + 11673036954 + ], + "geometry": [ + { "lat": 40.7013993, "lon": -73.9916191 }, + { "lat": 40.7016243, "lon": -73.9919157 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "tiger:reviewed": "no", + "turn:lanes": "left|left|through" + } +}, +{ + "type": "way", + "id": 1255692930, + "bounds": { + "minlat": 40.7017662, + "minlon": -73.9921985, + "maxlat": 40.7018498, + "maxlon": -73.9920929 + }, + "nodes": [ + 11674207999, + 42486083 + ], + "geometry": [ + { "lat": 40.7017662, "lon": -73.9920929 }, + { "lat": 40.7018498, "lon": -73.9921985 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "tiger:reviewed": "no", + "turn:lanes": "left|left|through" + } +}, +{ + "type": "way", + "id": 1255692931, + "bounds": { + "minlat": 40.7016164, + "minlon": -73.9922769, + "maxlat": 40.7017562, + "maxlon": -73.9920917 + }, + "nodes": [ + 11674208000, + 11673036956, + 11673036957, + 11673036953 + ], + "geometry": [ + { "lat": 40.7017562, "lon": -73.9922769 }, + { "lat": 40.7017162, "lon": -73.9922247 }, + { "lat": 40.7017092, "lon": -73.9922155 }, + { "lat": 40.7016164, "lon": -73.9920917 } + ], + "tags": { + "covered": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Old Fulton Street", + "name:etymology:wikidata": "Q5508429", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1255692933, + "bounds": { + "minlat": 40.7014716, + "minlon": -73.9898044, + "maxlat": 40.7015058, + "maxlon": -73.9895791 + }, + "nodes": [ + 11673036962, + 451074847 + ], + "geometry": [ + { "lat": 40.7015058, "lon": -73.9898044 }, + { "lat": 40.7014716, "lon": -73.9895791 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1255695323, + "bounds": { + "minlat": 40.7016741, + "minlon": -73.9918472, + "maxlat": 40.7016769, + "maxlon": -73.9915318 + }, + "nodes": [ + 451074830, + 11673008218 + ], + "geometry": [ + { "lat": 40.7016769, "lon": -73.9918472 }, + { "lat": 40.7016741, "lon": -73.9915318 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "none|none|Brooklyn Bridge", + "embankment": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxheight": "12'9\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_base_2": "Gowanus", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 1255695324, + "bounds": { + "minlat": 40.7016562, + "minlon": -73.9915318, + "maxlat": 40.7016741, + "maxlon": -73.9910449 + }, + "nodes": [ + 11673008218, + 1258945456, + 451074839, + 11673008219 + ], + "geometry": [ + { "lat": 40.7016741, "lon": -73.9915318 }, + { "lat": 40.7016724, "lon": -73.9914036 }, + { "lat": 40.7016651, "lon": -73.9911869 }, + { "lat": 40.7016562, "lon": -73.9910449 } + ], + "tags": { + "bicycle": "no", + "covered": "yes", + "destination:lanes": "none|none|Brooklyn Bridge", + "embankment": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxheight": "12'9\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "tiger:cfcc": "A11", + "tiger:county": "Kings, NY", + "tiger:name_base": "I-278", + "tiger:name_base_1": "Brooklyn Queens", + "tiger:name_base_2": "Gowanus", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 1255802432, + "bounds": { + "minlat": 40.7022002, + "minlon": -73.9927074, + "maxlat": 40.7022687, + "maxlon": -73.9925854 + }, + "nodes": [ + 10739408451, + 10739408470, + 11674209275, + 11674209276, + 11674209277, + 11674209278, + 10739408488, + 11674209279, + 11674209280, + 11674209281, + 10739408469, + 10739408448, + 11674209297, + 11674209296, + 10739408451 + ], + "geometry": [ + { "lat": 40.7022687, "lon": -73.9926505 }, + { "lat": 40.7022551, "lon": -73.9926855 }, + { "lat": 40.7022496, "lon": -73.9926996 }, + { "lat": 40.7022463, "lon": -73.9927058 }, + { "lat": 40.7022412, "lon": -73.9927074 }, + { "lat": 40.7022365, "lon": -73.9927018 }, + { "lat": 40.7022071, "lon": -73.9926388 }, + { "lat": 40.7022011, "lon": -73.9926257 }, + { "lat": 40.7022002, "lon": -73.9926162 }, + { "lat": 40.7022049, "lon": -73.9926096 }, + { "lat": 40.7022170, "lon": -73.9926018 }, + { "lat": 40.7022425, "lon": -73.9925854 }, + { "lat": 40.7022403, "lon": -73.9926215 }, + { "lat": 40.7022537, "lon": -73.9926500 }, + { "lat": 40.7022687, "lon": -73.9926505 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1255802441, + "bounds": { + "minlat": 40.7017866, + "minlon": -73.9922225, + "maxlat": 40.7021695, + "maxlon": -73.9917281 + }, + "nodes": [ + 11669956488, + 11674209357, + 11674209372, + 11674209344, + 11674209345, + 11674209346, + 11674209347, + 11674209348, + 11674209349, + 11674209371, + 11674209336, + 11674209337, + 11674209338, + 11674209339, + 11674209340, + 11674209341, + 11674209342, + 11674209343, + 11669956492, + 11669956491, + 11669956489, + 8262936266, + 11669956488 + ], + "geometry": [ + { "lat": 40.7021695, "lon": -73.9921769 }, + { "lat": 40.7021495, "lon": -73.9922067 }, + { "lat": 40.7021389, "lon": -73.9922225 }, + { "lat": 40.7019544, "lon": -73.9919907 }, + { "lat": 40.7019266, "lon": -73.9919937 }, + { "lat": 40.7018896, "lon": -73.9919889 }, + { "lat": 40.7018599, "lon": -73.9919781 }, + { "lat": 40.7018457, "lon": -73.9919675 }, + { "lat": 40.7018063, "lon": -73.9920220 }, + { "lat": 40.7017968, "lon": -73.9920091 }, + { "lat": 40.7017866, "lon": -73.9919950 }, + { "lat": 40.7018234, "lon": -73.9919451 }, + { "lat": 40.7018118, "lon": -73.9919240 }, + { "lat": 40.7018014, "lon": -73.9918906 }, + { "lat": 40.7017964, "lon": -73.9918513 }, + { "lat": 40.7017958, "lon": -73.9918040 }, + { "lat": 40.7017997, "lon": -73.9917641 }, + { "lat": 40.7018070, "lon": -73.9917281 }, + { "lat": 40.7019231, "lon": -73.9918746 }, + { "lat": 40.7019130, "lon": -73.9918887 }, + { "lat": 40.7019910, "lon": -73.9919866 }, + { "lat": 40.7020052, "lon": -73.9919668 }, + { "lat": 40.7021695, "lon": -73.9921769 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1255802442, + "bounds": { + "minlat": 40.7017691, + "minlon": -73.9925113, + "maxlat": 40.7022387, + "maxlon": -73.9919723 + }, + "nodes": [ + 11674209367, + 10739408467, + 11674185866, + 11674185867, + 11674185868, + 11674209269, + 11674209270, + 6575804595, + 11674185811, + 11674185808, + 11674185809, + 11674209335, + 11674209336, + 11674209371, + 11674209349, + 11674209350, + 11674209351, + 11674209352, + 11674209353, + 11674209354, + 11674209355, + 11674209356, + 11674209372, + 11674209357, + 11669956488, + 7561173776, + 11674209358, + 11674209359, + 11674209360, + 11674209361, + 11674209362, + 11674209363, + 11674209364, + 11674209365, + 11674209366, + 11674209367 + ], + "geometry": [ + { "lat": 40.7022387, "lon": -73.9924932 }, + { "lat": 40.7022144, "lon": -73.9925061 }, + { "lat": 40.7022035, "lon": -73.9925113 }, + { "lat": 40.7022009, "lon": -73.9924801 }, + { "lat": 40.7021083, "lon": -73.9924034 }, + { "lat": 40.7020929, "lon": -73.9923979 }, + { "lat": 40.7020666, "lon": -73.9923938 }, + { "lat": 40.7020574, "lon": -73.9923912 }, + { "lat": 40.7019611, "lon": -73.9922694 }, + { "lat": 40.7017691, "lon": -73.9920216 }, + { "lat": 40.7017705, "lon": -73.9920016 }, + { "lat": 40.7017712, "lon": -73.9919723 }, + { "lat": 40.7017866, "lon": -73.9919950 }, + { "lat": 40.7017968, "lon": -73.9920091 }, + { "lat": 40.7018063, "lon": -73.9920220 }, + { "lat": 40.7020649, "lon": -73.9923726 }, + { "lat": 40.7020778, "lon": -73.9923778 }, + { "lat": 40.7020889, "lon": -73.9923797 }, + { "lat": 40.7020937, "lon": -73.9923506 }, + { "lat": 40.7021003, "lon": -73.9923238 }, + { "lat": 40.7021140, "lon": -73.9922924 }, + { "lat": 40.7021434, "lon": -73.9922281 }, + { "lat": 40.7021389, "lon": -73.9922225 }, + { "lat": 40.7021495, "lon": -73.9922067 }, + { "lat": 40.7021695, "lon": -73.9921769 }, + { "lat": 40.7021781, "lon": -73.9921650 }, + { "lat": 40.7022060, "lon": -73.9922001 }, + { "lat": 40.7021641, "lon": -73.9922591 }, + { "lat": 40.7021552, "lon": -73.9922466 }, + { "lat": 40.7021358, "lon": -73.9922851 }, + { "lat": 40.7021185, "lon": -73.9923272 }, + { "lat": 40.7021092, "lon": -73.9923603 }, + { "lat": 40.7021054, "lon": -73.9923815 }, + { "lat": 40.7021181, "lon": -73.9923875 }, + { "lat": 40.7022185, "lon": -73.9924701 }, + { "lat": 40.7022387, "lon": -73.9924932 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1255802448, + "bounds": { + "minlat": 40.7022848, + "minlon": -73.9928515, + "maxlat": 40.7024664, + "maxlon": -73.9926850 + }, + "nodes": [ + 11674209292, + 11674209412, + 11674209413, + 11674209414, + 11674209415, + 11674209424, + 11674209416, + 11674209417, + 11674209418, + 11674209419, + 11674209420, + 11674209421, + 11674209422, + 11674209423, + 11674209284, + 10739408471, + 11674209387, + 11674209285, + 11674209286, + 11674209287, + 11674209288, + 11674209289, + 11674209384, + 11674185850, + 11674209290, + 11674209291, + 11674209292 + ], + "geometry": [ + { "lat": 40.7024664, "lon": -73.9927730 }, + { "lat": 40.7024579, "lon": -73.9927944 }, + { "lat": 40.7024416, "lon": -73.9928179 }, + { "lat": 40.7024187, "lon": -73.9928375 }, + { "lat": 40.7023972, "lon": -73.9928481 }, + { "lat": 40.7023853, "lon": -73.9928501 }, + { "lat": 40.7023760, "lon": -73.9928515 }, + { "lat": 40.7023488, "lon": -73.9928501 }, + { "lat": 40.7023264, "lon": -73.9928421 }, + { "lat": 40.7023082, "lon": -73.9928288 }, + { "lat": 40.7022964, "lon": -73.9928097 }, + { "lat": 40.7022875, "lon": -73.9927775 }, + { "lat": 40.7022848, "lon": -73.9927452 }, + { "lat": 40.7022911, "lon": -73.9927145 }, + { "lat": 40.7023027, "lon": -73.9926850 }, + { "lat": 40.7022959, "lon": -73.9927184 }, + { "lat": 40.7022980, "lon": -73.9927509 }, + { "lat": 40.7022983, "lon": -73.9927549 }, + { "lat": 40.7023086, "lon": -73.9927874 }, + { "lat": 40.7023235, "lon": -73.9928112 }, + { "lat": 40.7023396, "lon": -73.9928233 }, + { "lat": 40.7023585, "lon": -73.9928285 }, + { "lat": 40.7023717, "lon": -73.9928276 }, + { "lat": 40.7023844, "lon": -73.9928267 }, + { "lat": 40.7024173, "lon": -73.9928173 }, + { "lat": 40.7024452, "lon": -73.9927997 }, + { "lat": 40.7024664, "lon": -73.9927730 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1255802453, + "bounds": { + "minlat": 40.7022959, + "minlon": -73.9928276, + "maxlat": 40.7025113, + "maxlon": -73.9925008 + }, + "nodes": [ + 11674209384, + 11674209385, + 11674209386, + 11674209387, + 10739408471, + 11674209284, + 11674209410, + 11674209411, + 11674209383, + 11674209392, + 11674209391, + 11674209390, + 11674209389, + 11674209399, + 11674209398, + 11674209397, + 11674209396, + 11674209395, + 11674209394, + 11674209393, + 11674209409, + 11674209295, + 12867102450, + 11674209294, + 11674209293, + 11674209292, + 11674209291, + 11674209290, + 11674185850, + 11674209384 + ], + "geometry": [ + { "lat": 40.7023717, "lon": -73.9928276 }, + { "lat": 40.7023687, "lon": -73.9927927 }, + { "lat": 40.7023258, "lon": -73.9927333 }, + { "lat": 40.7022980, "lon": -73.9927509 }, + { "lat": 40.7022959, "lon": -73.9927184 }, + { "lat": 40.7023027, "lon": -73.9926850 }, + { "lat": 40.7023233, "lon": -73.9927028 }, + { "lat": 40.7024447, "lon": -73.9925008 }, + { "lat": 40.7024512, "lon": -73.9925089 }, + { "lat": 40.7024559, "lon": -73.9925148 }, + { "lat": 40.7023471, "lon": -73.9926943 }, + { "lat": 40.7023504, "lon": -73.9927386 }, + { "lat": 40.7023993, "lon": -73.9928004 }, + { "lat": 40.7024172, "lon": -73.9927901 }, + { "lat": 40.7024382, "lon": -73.9927680 }, + { "lat": 40.7024585, "lon": -73.9927354 }, + { "lat": 40.7024722, "lon": -73.9926925 }, + { "lat": 40.7024819, "lon": -73.9926472 }, + { "lat": 40.7024892, "lon": -73.9925970 }, + { "lat": 40.7024930, "lon": -73.9925616 }, + { "lat": 40.7025023, "lon": -73.9925732 }, + { "lat": 40.7025113, "lon": -73.9925846 }, + { "lat": 40.7025058, "lon": -73.9926293 }, + { "lat": 40.7025028, "lon": -73.9926534 }, + { "lat": 40.7024841, "lon": -73.9927313 }, + { "lat": 40.7024664, "lon": -73.9927730 }, + { "lat": 40.7024452, "lon": -73.9927997 }, + { "lat": 40.7024173, "lon": -73.9928173 }, + { "lat": 40.7023844, "lon": -73.9928267 }, + { "lat": 40.7023717, "lon": -73.9928276 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1255802460, + "bounds": { + "minlat": 40.7023529, + "minlon": -73.9931642, + "maxlat": 40.7024742, + "maxlon": -73.9929363 + }, + "nodes": [ + 11674209467, + 10739408477, + 11674209477, + 11674209478, + 11674209479, + 11674209480, + 11674209481, + 11674209482, + 10739408475, + 11674209483, + 11674209484, + 11674209485, + 11674209486, + 10739408480, + 11674209464, + 11674209465, + 11674209466, + 11674209467 + ], + "geometry": [ + { "lat": 40.7024102, "lon": -73.9929363 }, + { "lat": 40.7023890, "lon": -73.9929385 }, + { "lat": 40.7023734, "lon": -73.9929403 }, + { "lat": 40.7023615, "lon": -73.9929417 }, + { "lat": 40.7023562, "lon": -73.9929439 }, + { "lat": 40.7023532, "lon": -73.9929487 }, + { "lat": 40.7023529, "lon": -73.9929566 }, + { "lat": 40.7023561, "lon": -73.9929659 }, + { "lat": 40.7024286, "lon": -73.9931336 }, + { "lat": 40.7024373, "lon": -73.9931535 }, + { "lat": 40.7024422, "lon": -73.9931614 }, + { "lat": 40.7024486, "lon": -73.9931642 }, + { "lat": 40.7024549, "lon": -73.9931575 }, + { "lat": 40.7024602, "lon": -73.9931368 }, + { "lat": 40.7024742, "lon": -73.9930873 }, + { "lat": 40.7024486, "lon": -73.9930776 }, + { "lat": 40.7024065, "lon": -73.9929826 }, + { "lat": 40.7024102, "lon": -73.9929363 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1255802469, + "bounds": { + "minlat": 40.7007409, + "minlon": -73.9898793, + "maxlat": 40.7007458, + "maxlon": -73.9897318 + }, + "nodes": [ + 11674209595, + 9368823948, + 42519812 + ], + "geometry": [ + { "lat": 40.7007458, "lon": -73.9898793 }, + { "lat": 40.7007445, "lon": -73.9898278 }, + { "lat": 40.7007409, "lon": -73.9897318 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1255802787, + "bounds": { + "minlat": 40.7017600, + "minlon": -73.9922503, + "maxlat": 40.7017996, + "maxlon": -73.9921765 + }, + "nodes": [ + 11674208002, + 11674208003, + 11674208004, + 11674208005, + 11674208006, + 11674208007, + 11674208008, + 11674208002 + ], + "geometry": [ + { "lat": 40.7017600, "lon": -73.9922184 }, + { "lat": 40.7017821, "lon": -73.9922480 }, + { "lat": 40.7017907, "lon": -73.9922503 }, + { "lat": 40.7017984, "lon": -73.9922451 }, + { "lat": 40.7017996, "lon": -73.9922332 }, + { "lat": 40.7017956, "lon": -73.9922208 }, + { "lat": 40.7017628, "lon": -73.9921765 }, + { "lat": 40.7017600, "lon": -73.9922184 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1256165026, + "bounds": { + "minlat": 40.7029171, + "minlon": -73.9942405, + "maxlat": 40.7029686, + "maxlon": -73.9941726 + }, + "nodes": [ + 11678027463, + 10739408510, + 11678027474, + 11678027475, + 11678027476, + 11678027477, + 11678027478, + 11678027479, + 11678027480, + 11678027481, + 8262934782, + 11678027464, + 11678027463 + ], + "geometry": [ + { "lat": 40.7029504, "lon": -73.9941726 }, + { "lat": 40.7029592, "lon": -73.9941879 }, + { "lat": 40.7029627, "lon": -73.9941939 }, + { "lat": 40.7029676, "lon": -73.9942056 }, + { "lat": 40.7029686, "lon": -73.9942171 }, + { "lat": 40.7029645, "lon": -73.9942312 }, + { "lat": 40.7029564, "lon": -73.9942381 }, + { "lat": 40.7029465, "lon": -73.9942405 }, + { "lat": 40.7029373, "lon": -73.9942376 }, + { "lat": 40.7029282, "lon": -73.9942284 }, + { "lat": 40.7029225, "lon": -73.9942120 }, + { "lat": 40.7029171, "lon": -73.9941967 }, + { "lat": 40.7029504, "lon": -73.9941726 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1256165027, + "bounds": { + "minlat": 40.7029109, + "minlon": -73.9943695, + "maxlat": 40.7030542, + "maxlon": -73.9942499 + }, + "nodes": [ + 11678027483, + 11678027484, + 11678027482, + 42469320 + ], + "geometry": [ + { "lat": 40.7030542, "lon": -73.9942499 }, + { "lat": 40.7030037, "lon": -73.9942963 }, + { "lat": 40.7029585, "lon": -73.9943348 }, + { "lat": 40.7029109, "lon": -73.9943695 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Water Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1256165028, + "bounds": { + "minlat": 40.7025037, + "minlon": -73.9942312, + "maxlat": 40.7030341, + "maxlon": -73.9932451 + }, + "nodes": [ + 8262934783, + 11678027477, + 11678027476, + 11678027475, + 11678027474, + 10739408510, + 11678027463, + 11678027469, + 11678027468, + 11678027467, + 11678027466, + 11678027465, + 11678027464, + 8262934782, + 11678027481, + 11678027485, + 11678027486, + 11678027487, + 11678027488, + 11678027489, + 11678027490, + 11678027491, + 11678027492, + 11678027493, + 11678027494, + 8262934781, + 11678027495, + 11678027496, + 11678027497, + 11678027498, + 11678027499, + 8262934783 + ], + "geometry": [ + { "lat": 40.7030341, "lon": -73.9941644 }, + { "lat": 40.7029645, "lon": -73.9942312 }, + { "lat": 40.7029686, "lon": -73.9942171 }, + { "lat": 40.7029676, "lon": -73.9942056 }, + { "lat": 40.7029627, "lon": -73.9941939 }, + { "lat": 40.7029592, "lon": -73.9941879 }, + { "lat": 40.7029504, "lon": -73.9941726 }, + { "lat": 40.7029016, "lon": -73.9940922 }, + { "lat": 40.7028937, "lon": -73.9940867 }, + { "lat": 40.7028877, "lon": -73.9940885 }, + { "lat": 40.7028841, "lon": -73.9940958 }, + { "lat": 40.7028854, "lon": -73.9941080 }, + { "lat": 40.7029171, "lon": -73.9941967 }, + { "lat": 40.7029225, "lon": -73.9942120 }, + { "lat": 40.7029282, "lon": -73.9942284 }, + { "lat": 40.7029182, "lon": -73.9942149 }, + { "lat": 40.7029087, "lon": -73.9941951 }, + { "lat": 40.7026378, "lon": -73.9935678 }, + { "lat": 40.7026312, "lon": -73.9935585 }, + { "lat": 40.7026128, "lon": -73.9935485 }, + { "lat": 40.7026010, "lon": -73.9935395 }, + { "lat": 40.7025906, "lon": -73.9935218 }, + { "lat": 40.7025066, "lon": -73.9933127 }, + { "lat": 40.7025037, "lon": -73.9932973 }, + { "lat": 40.7025064, "lon": -73.9932795 }, + { "lat": 40.7025182, "lon": -73.9932451 }, + { "lat": 40.7025176, "lon": -73.9932608 }, + { "lat": 40.7025220, "lon": -73.9932788 }, + { "lat": 40.7025322, "lon": -73.9933011 }, + { "lat": 40.7030150, "lon": -73.9941524 }, + { "lat": 40.7030228, "lon": -73.9941614 }, + { "lat": 40.7030341, "lon": -73.9941644 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1256165034, + "bounds": { + "minlat": 40.7026073, + "minlon": -73.9925807, + "maxlat": 40.7027000, + "maxlon": -73.9925791 + }, + "nodes": [ + 42472268, + 11678027512, + 11678027511 + ], + "geometry": [ + { "lat": 40.7026073, "lon": -73.9925807 }, + { "lat": 40.7026871, "lon": -73.9925793 }, + { "lat": 40.7027000, "lon": -73.9925791 } + ], + "tags": { + "covered": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Dock Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Dock", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1256165035, + "bounds": { + "minlat": 40.7027000, + "minlon": -73.9925791, + "maxlat": 40.7028725, + "maxlon": -73.9925739 + }, + "nodes": [ + 11678027511, + 11678027513 + ], + "geometry": [ + { "lat": 40.7027000, "lon": -73.9925791 }, + { "lat": 40.7028725, "lon": -73.9925739 } + ], + "tags": { + "covered": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Dock Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Dock", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1256165041, + "bounds": { + "minlat": 40.7025893, + "minlon": -73.9922298, + "maxlat": 40.7025979, + "maxlon": -73.9919272 + }, + "nodes": [ + 11678027534, + 11158142756 + ], + "geometry": [ + { "lat": 40.7025979, "lon": -73.9922298 }, + { "lat": 40.7025893, "lon": -73.9919272 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Front", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1256165042, + "bounds": { + "minlat": 40.7026013, + "minlon": -73.9926985, + "maxlat": 40.7026061, + "maxlon": -73.9926365 + }, + "nodes": [ + 12867102451, + 11674209487, + 11678027536, + 11678027535 + ], + "geometry": [ + { "lat": 40.7026061, "lon": -73.9926365 }, + { "lat": 40.7026059, "lon": -73.9926454 }, + { "lat": 40.7026027, "lon": -73.9926830 }, + { "lat": 40.7026013, "lon": -73.9926985 } + ], + "tags": { + "covered": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Front", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1256165051, + "bounds": { + "minlat": 40.7033504, + "minlon": -73.9939226, + "maxlat": 40.7033595, + "maxlon": -73.9936457 + }, + "nodes": [ + 11678027569, + 6720137600, + 11678027556, + 42469325 + ], + "geometry": [ + { "lat": 40.7033532, "lon": -73.9936457 }, + { "lat": 40.7033595, "lon": -73.9938414 }, + { "lat": 40.7033575, "lon": -73.9938841 }, + { "lat": 40.7033504, "lon": -73.9939226 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Water Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:reviewed": "aerial", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1256165052, + "bounds": { + "minlat": 40.7033378, + "minlon": -73.9936457, + "maxlat": 40.7033532, + "maxlon": -73.9931616 + }, + "nodes": [ + 11678027570, + 11678027569 + ], + "geometry": [ + { "lat": 40.7033378, "lon": -73.9931616 }, + { "lat": 40.7033532, "lon": -73.9936457 } + ], + "tags": { + "bicycle": "yes", + "covered": "yes", + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Water Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:reviewed": "aerial", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1256175364, + "bounds": { + "minlat": 40.7003446, + "minlon": -73.9897562, + "maxlat": 40.7006549, + "maxlon": -73.9897365 + }, + "nodes": [ + 11678137818, + 12030168881, + 11678137819 + ], + "geometry": [ + { "lat": 40.7003446, "lon": -73.9897562 }, + { "lat": 40.7004068, "lon": -73.9897522 }, + { "lat": 40.7006549, "lon": -73.9897365 } + ], + "tags": { + "bicycle": "yes", + "covered": "yes", + "cycleway:right": "shared_lane", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Cadman Plaza East", + "name:etymology:wikidata": "Q5600833", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "St;Plz;St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1256175365, + "bounds": { + "minlat": 40.7006549, + "minlon": -73.9897365, + "maxlat": 40.7007409, + "maxlon": -73.9897318 + }, + "nodes": [ + 11678137819, + 7647648807, + 42519812 + ], + "geometry": [ + { "lat": 40.7006549, "lon": -73.9897365 }, + { "lat": 40.7006776, "lon": -73.9897355 }, + { "lat": 40.7007409, "lon": -73.9897318 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Cadman Plaza East", + "name:etymology:wikidata": "Q5600833", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "St;Plz;St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1256341424, + "bounds": { + "minlat": 40.7000916, + "minlon": -73.9907460, + "maxlat": 40.7007099, + "maxlon": -73.9902917 + }, + "nodes": [ + 11679061034, + 9368823930, + 11679065997, + 11679065998, + 11679065999, + 11679066000, + 11679066001, + 11679066002, + 9368823940, + 11679066003, + 11679066004, + 11679066005, + 11679066006, + 11678027440, + 212026648, + 11679061040, + 11679061039, + 11679061038, + 11679061037, + 11679061036, + 11679061035, + 11679061034 + ], + "geometry": [ + { "lat": 40.7000916, "lon": -73.9907342 }, + { "lat": 40.7001120, "lon": -73.9907431 }, + { "lat": 40.7001330, "lon": -73.9907460 }, + { "lat": 40.7001641, "lon": -73.9907436 }, + { "lat": 40.7001966, "lon": -73.9907326 }, + { "lat": 40.7006199, "lon": -73.9905337 }, + { "lat": 40.7006567, "lon": -73.9905080 }, + { "lat": 40.7006760, "lon": -73.9904861 }, + { "lat": 40.7006875, "lon": -73.9904641 }, + { "lat": 40.7006967, "lon": -73.9904392 }, + { "lat": 40.7007055, "lon": -73.9904053 }, + { "lat": 40.7007099, "lon": -73.9903687 }, + { "lat": 40.7007085, "lon": -73.9903286 }, + { "lat": 40.7006941, "lon": -73.9903123 }, + { "lat": 40.7006760, "lon": -73.9902917 }, + { "lat": 40.7006796, "lon": -73.9903281 }, + { "lat": 40.7006828, "lon": -73.9903686 }, + { "lat": 40.7006765, "lon": -73.9904101 }, + { "lat": 40.7006613, "lon": -73.9904437 }, + { "lat": 40.7006383, "lon": -73.9904703 }, + { "lat": 40.7006111, "lon": -73.9904883 }, + { "lat": 40.7000916, "lon": -73.9907342 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1256341425, + "bounds": { + "minlat": 40.6998323, + "minlon": -73.9909141, + "maxlat": 40.7000389, + "maxlon": -73.9907771 + }, + "nodes": [ + 11679065979, + 9368823934, + 11679066008, + 11679066009, + 11679066010, + 11679066011, + 11679066012, + 11679066013, + 9368823937, + 11679066014, + 11679066015, + 11679066016, + 9368823935, + 11679065980, + 11679065979 + ], + "geometry": [ + { "lat": 40.6999976, "lon": -73.9907771 }, + { "lat": 40.7000145, "lon": -73.9907926 }, + { "lat": 40.7000280, "lon": -73.9908022 }, + { "lat": 40.7000363, "lon": -73.9908124 }, + { "lat": 40.7000389, "lon": -73.9908241 }, + { "lat": 40.7000352, "lon": -73.9908364 }, + { "lat": 40.7000277, "lon": -73.9908432 }, + { "lat": 40.6998860, "lon": -73.9909124 }, + { "lat": 40.6998751, "lon": -73.9909133 }, + { "lat": 40.6998629, "lon": -73.9909141 }, + { "lat": 40.6998496, "lon": -73.9909055 }, + { "lat": 40.6998447, "lon": -73.9908936 }, + { "lat": 40.6998387, "lon": -73.9908773 }, + { "lat": 40.6998323, "lon": -73.9908564 }, + { "lat": 40.6999976, "lon": -73.9907771 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1256341436, + "bounds": { + "minlat": 40.7014198, + "minlon": -73.9896945, + "maxlat": 40.7016127, + "maxlon": -73.9896830 + }, + "nodes": [ + 11679066071, + 10726048602, + 11679066072 + ], + "geometry": [ + { "lat": 40.7014198, "lon": -73.9896945 }, + { "lat": 40.7015989, "lon": -73.9896839 }, + { "lat": 40.7016127, "lon": -73.9896830 } + ], + "tags": { + "bicycle": "yes", + "covered": "yes", + "cycleway:right": "shared_lane", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Washington Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Washington;Cadman;Washington", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "St;Plz;St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1256341437, + "bounds": { + "minlat": 40.7016127, + "minlon": -73.9896830, + "maxlat": 40.7016338, + "maxlon": -73.9896812 + }, + "nodes": [ + 11679066072, + 248607283 + ], + "geometry": [ + { "lat": 40.7016127, "lon": -73.9896830 }, + { "lat": 40.7016338, "lon": -73.9896812 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Washington Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Washington;Cadman;Washington", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "St;Plz;St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1256341438, + "bounds": { + "minlat": 40.7007079, + "minlon": -73.9886901, + "maxlat": 40.7012597, + "maxlon": -73.9886513 + }, + "nodes": [ + 42492409, + 10722370802, + 11679066074 + ], + "geometry": [ + { "lat": 40.7007079, "lon": -73.9886901 }, + { "lat": 40.7007729, "lon": -73.9886868 }, + { "lat": 40.7012597, "lon": -73.9886513 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Adams Street", + "name:etymology:wikidata": "Q11806", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Adams", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1256341439, + "bounds": { + "minlat": 40.7012597, + "minlon": -73.9886513, + "maxlat": 40.7014691, + "maxlon": -73.9886360 + }, + "nodes": [ + 11679066074, + 11679066073 + ], + "geometry": [ + { "lat": 40.7012597, "lon": -73.9886513 }, + { "lat": 40.7014691, "lon": -73.9886360 } + ], + "tags": { + "covered": "yes", + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Adams Street", + "name:etymology:wikidata": "Q11806", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Adams", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1256341440, + "bounds": { + "minlat": 40.7013230, + "minlon": -73.9877001, + "maxlat": 40.7015132, + "maxlon": -73.9876860 + }, + "nodes": [ + 9800456566, + 10722370785, + 11679066075 + ], + "geometry": [ + { "lat": 40.7015132, "lon": -73.9876860 }, + { "lat": 40.7015054, "lon": -73.9876881 }, + { "lat": 40.7013230, "lon": -73.9877001 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1256341441, + "bounds": { + "minlat": 40.7011147, + "minlon": -73.9877136, + "maxlat": 40.7013230, + "maxlon": -73.9877001 + }, + "nodes": [ + 11679066075, + 11679066076 + ], + "geometry": [ + { "lat": 40.7013230, "lon": -73.9877001 }, + { "lat": 40.7011147, "lon": -73.9877136 } + ], + "tags": { + "covered": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1256341442, + "bounds": { + "minlat": 40.7011410, + "minlon": -73.9876232, + "maxlat": 40.7011681, + "maxlon": -73.9874504 + }, + "nodes": [ + 451074853, + 1258945414 + ], + "geometry": [ + { "lat": 40.7011681, "lon": -73.9876232 }, + { "lat": 40.7011410, "lon": -73.9874504 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1256341443, + "bounds": { + "minlat": 40.7012265, + "minlon": -73.9876179, + "maxlat": 40.7012448, + "maxlon": -73.9874963 + }, + "nodes": [ + 11679066077, + 451024912 + ], + "geometry": [ + { "lat": 40.7012265, "lon": -73.9874963 }, + { "lat": 40.7012448, "lon": -73.9876179 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1256341444, + "bounds": { + "minlat": 40.7010513, + "minlon": -73.9869215, + "maxlat": 40.7010565, + "maxlon": -73.9868901 + }, + "nodes": [ + 11679066079, + 598054699 + ], + "geometry": [ + { "lat": 40.7010565, "lon": -73.9869215 }, + { "lat": 40.7010513, "lon": -73.9868901 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1256341445, + "bounds": { + "minlat": 40.7011349, + "minlon": -73.9869749, + "maxlat": 40.7011511, + "maxlon": -73.9868854 + }, + "nodes": [ + 598054700, + 11679066080 + ], + "geometry": [ + { "lat": 40.7011349, "lon": -73.9868854 }, + { "lat": 40.7011511, "lon": -73.9869749 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1256341451, + "bounds": { + "minlat": 40.7016126, + "minlon": -73.9931075, + "maxlat": 40.7017906, + "maxlon": -73.9923667 + }, + "nodes": [ + 11679066164, + 11679066165, + 11679066166, + 11679066167, + 11679066168, + 10245966659, + 11679066141, + 11679066140, + 11679066139, + 11679066138, + 11679066137, + 10239577150, + 11679066163, + 11679066164 + ], + "geometry": [ + { "lat": 40.7017491, "lon": -73.9923667 }, + { "lat": 40.7017840, "lon": -73.9924104 }, + { "lat": 40.7017879, "lon": -73.9924218 }, + { "lat": 40.7017906, "lon": -73.9924380 }, + { "lat": 40.7017903, "lon": -73.9924489 }, + { "lat": 40.7017890, "lon": -73.9924659 }, + { "lat": 40.7016126, "lon": -73.9931075 }, + { "lat": 40.7016484, "lon": -73.9929591 }, + { "lat": 40.7016845, "lon": -73.9927931 }, + { "lat": 40.7017085, "lon": -73.9926607 }, + { "lat": 40.7017309, "lon": -73.9925229 }, + { "lat": 40.7017438, "lon": -73.9924234 }, + { "lat": 40.7017455, "lon": -73.9924050 }, + { "lat": 40.7017491, "lon": -73.9923667 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1256342938, + "bounds": { + "minlat": 40.7017120, + "minlon": -73.9918938, + "maxlat": 40.7017145, + "maxlon": -73.9915799 + }, + "nodes": [ + 11679066092, + 11679066094, + 451019495 + ], + "geometry": [ + { "lat": 40.7017120, "lon": -73.9915799 }, + { "lat": 40.7017145, "lon": -73.9917261 }, + { "lat": 40.7017141, "lon": -73.9918938 } + ], + "tags": { + "bicycle": "no", + "destination": "Verrazano Narrows Bridge", + "destination:ref": "I 278 West", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxheight": "12'4\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1256342939, + "bounds": { + "minlat": 40.7016904, + "minlon": -73.9915799, + "maxlat": 40.7017120, + "maxlon": -73.9910855 + }, + "nodes": [ + 11679066096, + 451019500, + 11679066095, + 451019498, + 11679066092 + ], + "geometry": [ + { "lat": 40.7016904, "lon": -73.9910855 }, + { "lat": 40.7016975, "lon": -73.9911765 }, + { "lat": 40.7017019, "lon": -73.9912762 }, + { "lat": 40.7017060, "lon": -73.9914063 }, + { "lat": 40.7017120, "lon": -73.9915799 } + ], + "tags": { + "bicycle": "no", + "covered": "yes", + "destination": "Verrazano Narrows Bridge", + "destination:ref": "I 278 West", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxheight": "12'4\"", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1256788623, + "bounds": { + "minlat": 40.8033948, + "minlon": -73.9184165, + "maxlat": 40.8036993, + "maxlon": -73.9176108 + }, + "nodes": [ + 11683961708, + 11683961725, + 11683961694, + 11683961693, + 11683961711, + 11683961712, + 11683961718, + 11683961714, + 11683961715, + 11683961716, + 11683961690, + 11683961689, + 11683961717, + 11683961683, + 11683961682, + 11683961681, + 11683961704, + 11683961726, + 11683961707, + 11683961706, + 11683961705, + 11683961710, + 11683961709, + 11683961708 + ], + "geometry": [ + { "lat": 40.8035253, "lon": -73.9177459 }, + { "lat": 40.8034789, "lon": -73.9176376 }, + { "lat": 40.8034674, "lon": -73.9176108 }, + { "lat": 40.8033948, "lon": -73.9176693 }, + { "lat": 40.8033985, "lon": -73.9179459 }, + { "lat": 40.8034947, "lon": -73.9178743 }, + { "lat": 40.8035053, "lon": -73.9178682 }, + { "lat": 40.8035910, "lon": -73.9180493 }, + { "lat": 40.8036536, "lon": -73.9182442 }, + { "lat": 40.8034634, "lon": -73.9183596 }, + { "lat": 40.8034738, "lon": -73.9183945 }, + { "lat": 40.8034810, "lon": -73.9184165 }, + { "lat": 40.8035087, "lon": -73.9183940 }, + { "lat": 40.8036993, "lon": -73.9182527 }, + { "lat": 40.8036508, "lon": -73.9181238 }, + { "lat": 40.8036650, "lon": -73.9181160 }, + { "lat": 40.8036837, "lon": -73.9181232 }, + { "lat": 40.8036706, "lon": -73.9180916 }, + { "lat": 40.8036567, "lon": -73.9180581 }, + { "lat": 40.8036535, "lon": -73.9180829 }, + { "lat": 40.8036367, "lon": -73.9180943 }, + { "lat": 40.8034902, "lon": -73.9177404 }, + { "lat": 40.8035098, "lon": -73.9177350 }, + { "lat": 40.8035253, "lon": -73.9177459 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1256922188, + "bounds": { + "minlat": 40.7007835, + "minlon": -73.9946483, + "maxlat": 40.7010953, + "maxlon": -73.9940544 + }, + "nodes": [ + 11679066125, + 11682365853, + 10739408387, + 11682365854, + 11682365855, + 10739408396, + 11682365856, + 11682365857, + 10739408394, + 11682365858, + 11682365859, + 11682365860, + 11682365861, + 11682365862, + 11682365863, + 11679066124, + 11685154489, + 11685154488, + 11685154487, + 11685154486, + 11685154485, + 11685154484, + 11685154483, + 11685154482, + 11685154544, + 11679066125 + ], + "geometry": [ + { "lat": 40.7009095, "lon": -73.9945970 }, + { "lat": 40.7008832, "lon": -73.9946483 }, + { "lat": 40.7008708, "lon": -73.9946032 }, + { "lat": 40.7007889, "lon": -73.9943058 }, + { "lat": 40.7007843, "lon": -73.9942841 }, + { "lat": 40.7007839, "lon": -73.9942715 }, + { "lat": 40.7007835, "lon": -73.9942615 }, + { "lat": 40.7007892, "lon": -73.9942466 }, + { "lat": 40.7007964, "lon": -73.9942389 }, + { "lat": 40.7008002, "lon": -73.9942348 }, + { "lat": 40.7008178, "lon": -73.9942241 }, + { "lat": 40.7010211, "lon": -73.9941249 }, + { "lat": 40.7010486, "lon": -73.9941051 }, + { "lat": 40.7010746, "lon": -73.9940823 }, + { "lat": 40.7010953, "lon": -73.9940544 }, + { "lat": 40.7010631, "lon": -73.9941412 }, + { "lat": 40.7010462, "lon": -73.9941627 }, + { "lat": 40.7010274, "lon": -73.9941754 }, + { "lat": 40.7009212, "lon": -73.9942238 }, + { "lat": 40.7008919, "lon": -73.9942474 }, + { "lat": 40.7008702, "lon": -73.9942808 }, + { "lat": 40.7008565, "lon": -73.9943192 }, + { "lat": 40.7008536, "lon": -73.9943703 }, + { "lat": 40.7008608, "lon": -73.9944143 }, + { "lat": 40.7009003, "lon": -73.9945625 }, + { "lat": 40.7009095, "lon": -73.9945970 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1257037955, + "bounds": { + "minlat": 40.7006866, + "minlon": -73.9956481, + "maxlat": 40.7007272, + "maxlon": -73.9955401 + }, + "nodes": [ + 11685188001, + 3350979284, + 11685188012, + 11685232884, + 11685187998, + 11685188044, + 11685188051, + 11685188001 + ], + "geometry": [ + { "lat": 40.7006997, "lon": -73.9956481 }, + { "lat": 40.7006926, "lon": -73.9956232 }, + { "lat": 40.7006866, "lon": -73.9956019 }, + { "lat": 40.7007141, "lon": -73.9955401 }, + { "lat": 40.7007201, "lon": -73.9955620 }, + { "lat": 40.7007272, "lon": -73.9955878 }, + { "lat": 40.7007176, "lon": -73.9955868 }, + { "lat": 40.7006997, "lon": -73.9956481 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1257049152, + "bounds": { + "minlat": 40.7040010, + "minlon": -73.9923665, + "maxlat": 40.7042595, + "maxlon": -73.9919787 + }, + "nodes": [ + 8262935453, + 8262935423, + 11686556967, + 11686556968, + 11686556884, + 11686556883, + 8262935463, + 8262935448, + 11686556889, + 8262935447, + 8262935446, + 11686556888, + 8262935445, + 8262935471, + 11682298664, + 8262935470, + 11686556962, + 11686633269, + 8262935473, + 11686556890, + 8262935472, + 8262935443, + 8262935483, + 8262935482, + 11686633270, + 11686556895, + 11686556906, + 8262935441, + 11686556913, + 8262935439, + 11686556912, + 8262935438, + 11686556937, + 8262935450, + 8262935437, + 8262935436, + 11686556966, + 8262935435, + 8262935434, + 11686556965, + 8262935433, + 8262935451, + 11686556964, + 8262935452, + 11686556963, + 8262935453 + ], + "geometry": [ + { "lat": 40.7042595, "lon": -73.9922835 }, + { "lat": 40.7042371, "lon": -73.9922336 }, + { "lat": 40.7042250, "lon": -73.9922117 }, + { "lat": 40.7042145, "lon": -73.9921962 }, + { "lat": 40.7042083, "lon": -73.9921925 }, + { "lat": 40.7042051, "lon": -73.9922023 }, + { "lat": 40.7042000, "lon": -73.9922078 }, + { "lat": 40.7041885, "lon": -73.9922083 }, + { "lat": 40.7041708, "lon": -73.9922044 }, + { "lat": 40.7041560, "lon": -73.9921970 }, + { "lat": 40.7041366, "lon": -73.9921820 }, + { "lat": 40.7041219, "lon": -73.9921601 }, + { "lat": 40.7041090, "lon": -73.9921336 }, + { "lat": 40.7041038, "lon": -73.9921104 }, + { "lat": 40.7041052, "lon": -73.9920916 }, + { "lat": 40.7041117, "lon": -73.9920796 }, + { "lat": 40.7041064, "lon": -73.9920700 }, + { "lat": 40.7040970, "lon": -73.9920534 }, + { "lat": 40.7040928, "lon": -73.9920605 }, + { "lat": 40.7040803, "lon": -73.9920679 }, + { "lat": 40.7040645, "lon": -73.9920671 }, + { "lat": 40.7040538, "lon": -73.9920582 }, + { "lat": 40.7040428, "lon": -73.9920331 }, + { "lat": 40.7040321, "lon": -73.9919952 }, + { "lat": 40.7040288, "lon": -73.9919787 }, + { "lat": 40.7040151, "lon": -73.9919841 }, + { "lat": 40.7040010, "lon": -73.9919896 }, + { "lat": 40.7040150, "lon": -73.9921023 }, + { "lat": 40.7040120, "lon": -73.9921634 }, + { "lat": 40.7040123, "lon": -73.9922198 }, + { "lat": 40.7040189, "lon": -73.9922611 }, + { "lat": 40.7040296, "lon": -73.9922960 }, + { "lat": 40.7040403, "lon": -73.9923175 }, + { "lat": 40.7040532, "lon": -73.9923357 }, + { "lat": 40.7040696, "lon": -73.9923527 }, + { "lat": 40.7040881, "lon": -73.9923622 }, + { "lat": 40.7041112, "lon": -73.9923665 }, + { "lat": 40.7041333, "lon": -73.9923627 }, + { "lat": 40.7041523, "lon": -73.9923489 }, + { "lat": 40.7041686, "lon": -73.9923272 }, + { "lat": 40.7041803, "lon": -73.9923007 }, + { "lat": 40.7041931, "lon": -73.9922785 }, + { "lat": 40.7042113, "lon": -73.9922656 }, + { "lat": 40.7042302, "lon": -73.9922613 }, + { "lat": 40.7042480, "lon": -73.9922707 }, + { "lat": 40.7042595, "lon": -73.9922835 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Picnic Grove", + "surface": "compacted" + } +}, +{ + "type": "way", + "id": 1257049154, + "bounds": { + "minlat": 40.7038785, + "minlon": -73.9919533, + "maxlat": 40.7039214, + "maxlon": -73.9917125 + }, + "nodes": [ + 11682298662, + 11686633277, + 11686556929, + 11686556928, + 7097859688, + 11682298663, + 11682298662 + ], + "geometry": [ + { "lat": 40.7039147, "lon": -73.9917125 }, + { "lat": 40.7039155, "lon": -73.9917438 }, + { "lat": 40.7039214, "lon": -73.9919515 }, + { "lat": 40.7038855, "lon": -73.9919533 }, + { "lat": 40.7038794, "lon": -73.9917450 }, + { "lat": 40.7038785, "lon": -73.9917143 }, + { "lat": 40.7039147, "lon": -73.9917125 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1257049168, + "bounds": { + "minlat": 40.7043904, + "minlon": -73.9936335, + "maxlat": 40.7046904, + "maxlon": -73.9921274 + }, + "nodes": [ + 211182880, + 11686633439, + 214405795, + 11686633412, + 11686633501, + 11686633502, + 11686633512, + 8262935416, + 11686633298, + 11107749485, + 11686633294, + 11686633299, + 11686633295, + 11686633503, + 11686556957, + 11686633504, + 11682298631, + 1261487337, + 194094853, + 194094854, + 214405794, + 1261487231, + 1261487280, + 11682298627, + 1261487325, + 11682298626, + 211182880 + ], + "geometry": [ + { "lat": 40.7045922, "lon": -73.9936335 }, + { "lat": 40.7045533, "lon": -73.9936100 }, + { "lat": 40.7045190, "lon": -73.9935898 }, + { "lat": 40.7045308, "lon": -73.9935517 }, + { "lat": 40.7045510, "lon": -73.9934911 }, + { "lat": 40.7045882, "lon": -73.9934492 }, + { "lat": 40.7045921, "lon": -73.9931457 }, + { "lat": 40.7045953, "lon": -73.9929026 }, + { "lat": 40.7045966, "lon": -73.9927969 }, + { "lat": 40.7045987, "lon": -73.9925362 }, + { "lat": 40.7046010, "lon": -73.9922366 }, + { "lat": 40.7046015, "lon": -73.9921688 }, + { "lat": 40.7045489, "lon": -73.9921673 }, + { "lat": 40.7043908, "lon": -73.9921627 }, + { "lat": 40.7043906, "lon": -73.9921448 }, + { "lat": 40.7043904, "lon": -73.9921274 }, + { "lat": 40.7044084, "lon": -73.9921313 }, + { "lat": 40.7044536, "lon": -73.9921309 }, + { "lat": 40.7046879, "lon": -73.9921375 }, + { "lat": 40.7046904, "lon": -73.9925277 }, + { "lat": 40.7046429, "lon": -73.9925752 }, + { "lat": 40.7046357, "lon": -73.9933665 }, + { "lat": 40.7046337, "lon": -73.9934136 }, + { "lat": 40.7046299, "lon": -73.9934669 }, + { "lat": 40.7046216, "lon": -73.9935242 }, + { "lat": 40.7046079, "lon": -73.9935819 }, + { "lat": 40.7045922, "lon": -73.9936335 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "wood" + } +}, +{ + "type": "way", + "id": 1257061995, + "bounds": { + "minlat": 40.7040790, + "minlon": -73.9943637, + "maxlat": 40.7043927, + "maxlon": -73.9939562 + }, + "nodes": [ + 11686772627, + 11686772628, + 11110524207, + 11110524208, + 11686772629, + 11686772665, + 11686772630, + 11110524214, + 11686772642, + 11686772631, + 11686772627 + ], + "geometry": [ + { "lat": 40.7042922, "lon": -73.9943637 }, + { "lat": 40.7042678, "lon": -73.9943331 }, + { "lat": 40.7043308, "lon": -73.9942463 }, + { "lat": 40.7041825, "lon": -73.9940599 }, + { "lat": 40.7041197, "lon": -73.9941464 }, + { "lat": 40.7040991, "lon": -73.9941204 }, + { "lat": 40.7040790, "lon": -73.9940948 }, + { "lat": 40.7041791, "lon": -73.9939562 }, + { "lat": 40.7042001, "lon": -73.9939826 }, + { "lat": 40.7043927, "lon": -73.9942246 }, + { "lat": 40.7042922, "lon": -73.9943637 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1257062000, + "bounds": { + "minlat": 40.7038214, + "minlon": -73.9947478, + "maxlat": 40.7041160, + "maxlon": -73.9943335 + }, + "nodes": [ + 11686772656, + 11686772643, + 1272540991, + 11686772646, + 2523661421, + 11686772648, + 11686772647, + 11687172757, + 11687172726, + 2523661413, + 2523661418, + 11110524215, + 11686772657, + 11686772658, + 11119101201, + 11686772659, + 11110524209, + 11110524206, + 11686772660, + 11686772656 + ], + "geometry": [ + { "lat": 40.7041160, "lon": -73.9946064 }, + { "lat": 40.7040362, "lon": -73.9947141 }, + { "lat": 40.7040071, "lon": -73.9947478 }, + { "lat": 40.7039968, "lon": -73.9947199 }, + { "lat": 40.7039254, "lon": -73.9946305 }, + { "lat": 40.7039345, "lon": -73.9946255 }, + { "lat": 40.7038850, "lon": -73.9945634 }, + { "lat": 40.7038528, "lon": -73.9945249 }, + { "lat": 40.7038349, "lon": -73.9945036 }, + { "lat": 40.7038214, "lon": -73.9944918 }, + { "lat": 40.7038832, "lon": -73.9944083 }, + { "lat": 40.7038696, "lon": -73.9943908 }, + { "lat": 40.7038634, "lon": -73.9943829 }, + { "lat": 40.7038993, "lon": -73.9943335 }, + { "lat": 40.7039221, "lon": -73.9943622 }, + { "lat": 40.7039449, "lon": -73.9943909 }, + { "lat": 40.7038849, "lon": -73.9944737 }, + { "lat": 40.7040336, "lon": -73.9946599 }, + { "lat": 40.7040930, "lon": -73.9945774 }, + { "lat": 40.7041160, "lon": -73.9946064 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1257062001, + "bounds": { + "minlat": 40.7038849, + "minlon": -73.9946599, + "maxlat": 40.7040930, + "maxlon": -73.9943909 + }, + "nodes": [ + 11686772660, + 11686772661, + 3236002627, + 3236002625, + 3236002623, + 3236002620, + 3236002621, + 3236002619, + 11686772662, + 11686772659, + 11110524209, + 11110524206, + 11686772660 + ], + "geometry": [ + { "lat": 40.7040930, "lon": -73.9945774 }, + { "lat": 40.7040684, "lon": -73.9945464 }, + { "lat": 40.7040416, "lon": -73.9945831 }, + { "lat": 40.7040117, "lon": -73.9945455 }, + { "lat": 40.7039954, "lon": -73.9945680 }, + { "lat": 40.7039470, "lon": -73.9945072 }, + { "lat": 40.7039633, "lon": -73.9944847 }, + { "lat": 40.7039334, "lon": -73.9944471 }, + { "lat": 40.7039598, "lon": -73.9944097 }, + { "lat": 40.7039449, "lon": -73.9943909 }, + { "lat": 40.7038849, "lon": -73.9944737 }, + { "lat": 40.7040336, "lon": -73.9946599 }, + { "lat": 40.7040930, "lon": -73.9945774 } + ], + "tags": { + "access": "no", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1257062002, + "bounds": { + "minlat": 40.7041197, + "minlon": -73.9943331, + "maxlat": 40.7043308, + "maxlon": -73.9940599 + }, + "nodes": [ + 11686772628, + 11686772663, + 3236002646, + 3236002644, + 3236002645, + 3236002642, + 3236002640, + 3236002638, + 11686772664, + 11686772629, + 11110524208, + 11110524207, + 11686772628 + ], + "geometry": [ + { "lat": 40.7042678, "lon": -73.9943331 }, + { "lat": 40.7042436, "lon": -73.9943025 }, + { "lat": 40.7042735, "lon": -73.9942619 }, + { "lat": 40.7042436, "lon": -73.9942244 }, + { "lat": 40.7042609, "lon": -73.9942005 }, + { "lat": 40.7042125, "lon": -73.9941396 }, + { "lat": 40.7041952, "lon": -73.9941636 }, + { "lat": 40.7041652, "lon": -73.9941258 }, + { "lat": 40.7041358, "lon": -73.9941667 }, + { "lat": 40.7041197, "lon": -73.9941464 }, + { "lat": 40.7041825, "lon": -73.9940599 }, + { "lat": 40.7043308, "lon": -73.9942463 }, + { "lat": 40.7042678, "lon": -73.9943331 } + ], + "tags": { + "access": "no", + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1257062004, + "bounds": { + "minlat": 40.7040071, + "minlon": -73.9947948, + "maxlat": 40.7041796, + "maxlon": -73.9946064 + }, + "nodes": [ + 11686772656, + 11686772633, + 11686772666, + 11687024856, + 1272541003, + 1272541006, + 1272540978, + 1272540991, + 11686772643, + 11686772656 + ], + "geometry": [ + { "lat": 40.7041160, "lon": -73.9946064 }, + { "lat": 40.7041453, "lon": -73.9946433 }, + { "lat": 40.7041796, "lon": -73.9946854 }, + { "lat": 40.7041185, "lon": -73.9947670 }, + { "lat": 40.7041011, "lon": -73.9947903 }, + { "lat": 40.7040675, "lon": -73.9947948 }, + { "lat": 40.7040321, "lon": -73.9947530 }, + { "lat": 40.7040071, "lon": -73.9947478 }, + { "lat": 40.7040362, "lon": -73.9947141 }, + { "lat": 40.7041160, "lon": -73.9946064 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1257062014, + "bounds": { + "minlat": 40.7033872, + "minlon": -73.9930748, + "maxlat": 40.7033967, + "maxlon": -73.9930702 + }, + "nodes": [ + 11686818254, + 8262934634 + ], + "geometry": [ + { "lat": 40.7033967, "lon": -73.9930748 }, + { "lat": 40.7033872, "lon": -73.9930702 } + ], + "tags": { + "bicycle": "designated", + "highway": "pedestrian", + "lit": "yes", + "name": "New Dock Street", + "oneway": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1257062038, + "bounds": { + "minlat": 40.7033729, + "minlon": -73.9925654, + "maxlat": 40.7033913, + "maxlon": -73.9925651 + }, + "nodes": [ + 7648015506, + 11686818436, + 11686818429 + ], + "geometry": [ + { "lat": 40.7033729, "lon": -73.9925654 }, + { "lat": 40.7033838, "lon": -73.9925652 }, + { "lat": 40.7033913, "lon": -73.9925651 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "Old Dock Street", + "oneway": "no", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Old Dock", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1257062055, + "bounds": { + "minlat": 40.7037004, + "minlon": -73.9918350, + "maxlat": 40.7038542, + "maxlon": -73.9916869 + }, + "nodes": [ + 6562823276, + 10681324827, + 6562823257, + 11682298601, + 6562823255, + 11686818511, + 6562823266, + 11682298600, + 11682298599, + 6562836986, + 6562823261, + 6562823259, + 6562823265, + 6562823260, + 6562823276 + ], + "geometry": [ + { "lat": 40.7038542, "lon": -73.9918350 }, + { "lat": 40.7038513, "lon": -73.9917449 }, + { "lat": 40.7038498, "lon": -73.9916869 }, + { "lat": 40.7037238, "lon": -73.9916903 }, + { "lat": 40.7037104, "lon": -73.9916905 }, + { "lat": 40.7037063, "lon": -73.9917191 }, + { "lat": 40.7037004, "lon": -73.9917609 }, + { "lat": 40.7037163, "lon": -73.9917674 }, + { "lat": 40.7037165, "lon": -73.9917604 }, + { "lat": 40.7037311, "lon": -73.9917604 }, + { "lat": 40.7037469, "lon": -73.9917605 }, + { "lat": 40.7037478, "lon": -73.9918032 }, + { "lat": 40.7037541, "lon": -73.9918068 }, + { "lat": 40.7037672, "lon": -73.9917715 }, + { "lat": 40.7038542, "lon": -73.9918350 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1257080540, + "bounds": { + "minlat": 40.7037296, + "minlon": -73.9946571, + "maxlat": 40.7038341, + "maxlon": -73.9945194 + }, + "nodes": [ + 11687172688, + 11687172689, + 11687172690, + 11687172691, + 11687172692, + 11687172693, + 11687172694, + 11687172704, + 11687172705, + 11687172695, + 11687172696, + 11687172697, + 11687172698, + 11687172699, + 11687172700, + 11687172701, + 11687172702, + 11687172703, + 11687172685, + 11687172688 + ], + "geometry": [ + { "lat": 40.7037338, "lon": -73.9946143 }, + { "lat": 40.7037296, "lon": -73.9945887 }, + { "lat": 40.7037325, "lon": -73.9945657 }, + { "lat": 40.7037409, "lon": -73.9945453 }, + { "lat": 40.7037540, "lon": -73.9945297 }, + { "lat": 40.7037702, "lon": -73.9945207 }, + { "lat": 40.7037878, "lon": -73.9945194 }, + { "lat": 40.7038048, "lon": -73.9945258 }, + { "lat": 40.7038192, "lon": -73.9945392 }, + { "lat": 40.7038294, "lon": -73.9945582 }, + { "lat": 40.7038341, "lon": -73.9945795 }, + { "lat": 40.7038335, "lon": -73.9946018 }, + { "lat": 40.7038276, "lon": -73.9946226 }, + { "lat": 40.7038169, "lon": -73.9946398 }, + { "lat": 40.7038027, "lon": -73.9946517 }, + { "lat": 40.7037864, "lon": -73.9946571 }, + { "lat": 40.7037695, "lon": -73.9946553 }, + { "lat": 40.7037540, "lon": -73.9946466 }, + { "lat": 40.7037438, "lon": -73.9946356 }, + { "lat": 40.7037338, "lon": -73.9946143 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1257080568, + "bounds": { + "minlat": 40.7034237, + "minlon": -73.9946829, + "maxlat": 40.7037236, + "maxlon": -73.9941990 + }, + "nodes": [ + 11687172786, + 11687172892, + 11687172733, + 11687172732, + 2523661404, + 8262934672, + 11687172869, + 11687172870, + 11687172871, + 11687172877, + 11687172878, + 11687172879, + 11687172880, + 11687172881, + 11687172882, + 11687172883, + 11687172875, + 11687172876, + 8262934664, + 11687172821, + 11687172822, + 11687172858, + 11687172819, + 11687172820, + 11687172848, + 11687172817, + 11687172818, + 11687172859, + 11687172814, + 11687172815, + 11687172865, + 11687172812, + 11687172790, + 11687172791, + 11687172792, + 11687172793, + 11687172794, + 11687172795, + 11687172796, + 11687172797, + 11687172785, + 11687172786 + ], + "geometry": [ + { "lat": 40.7036701, "lon": -73.9946799 }, + { "lat": 40.7036835, "lon": -73.9946703 }, + { "lat": 40.7036972, "lon": -73.9946605 }, + { "lat": 40.7036939, "lon": -73.9945416 }, + { "lat": 40.7037236, "lon": -73.9945017 }, + { "lat": 40.7037163, "lon": -73.9944923 }, + { "lat": 40.7037037, "lon": -73.9944761 }, + { "lat": 40.7036924, "lon": -73.9944901 }, + { "lat": 40.7036592, "lon": -73.9944925 }, + { "lat": 40.7036102, "lon": -73.9944979 }, + { "lat": 40.7036116, "lon": -73.9945724 }, + { "lat": 40.7035833, "lon": -73.9946069 }, + { "lat": 40.7034981, "lon": -73.9944758 }, + { "lat": 40.7034929, "lon": -73.9944371 }, + { "lat": 40.7035397, "lon": -73.9943831 }, + { "lat": 40.7035835, "lon": -73.9943766 }, + { "lat": 40.7035806, "lon": -73.9942970 }, + { "lat": 40.7035765, "lon": -73.9941990 }, + { "lat": 40.7035660, "lon": -73.9942082 }, + { "lat": 40.7035567, "lon": -73.9942159 }, + { "lat": 40.7035574, "lon": -73.9942527 }, + { "lat": 40.7035605, "lon": -73.9943347 }, + { "lat": 40.7034632, "lon": -73.9943500 }, + { "lat": 40.7034528, "lon": -73.9943315 }, + { "lat": 40.7034443, "lon": -73.9943405 }, + { "lat": 40.7034342, "lon": -73.9943502 }, + { "lat": 40.7034453, "lon": -73.9943676 }, + { "lat": 40.7034482, "lon": -73.9944001 }, + { "lat": 40.7034392, "lon": -73.9944120 }, + { "lat": 40.7034237, "lon": -73.9944292 }, + { "lat": 40.7034314, "lon": -73.9944399 }, + { "lat": 40.7034397, "lon": -73.9944534 }, + { "lat": 40.7035897, "lon": -73.9946829 }, + { "lat": 40.7036080, "lon": -73.9946775 }, + { "lat": 40.7036258, "lon": -73.9946641 }, + { "lat": 40.7036376, "lon": -73.9946471 }, + { "lat": 40.7036439, "lon": -73.9946218 }, + { "lat": 40.7036385, "lon": -73.9945688 }, + { "lat": 40.7036423, "lon": -73.9945393 }, + { "lat": 40.7036523, "lon": -73.9945279 }, + { "lat": 40.7036624, "lon": -73.9945220 }, + { "lat": 40.7036701, "lon": -73.9946799 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1257080575, + "bounds": { + "minlat": 40.7032444, + "minlon": -73.9941739, + "maxlat": 40.7034314, + "maxlon": -73.9936909 + }, + "nodes": [ + 11687172897, + 11687172902, + 11687172903, + 11687172904, + 11687172905, + 11687172906, + 11687172907, + 11678027572, + 11687172899, + 11687172898, + 8262934633, + 11687172897 + ], + "geometry": [ + { "lat": 40.7032460, "lon": -73.9941739 }, + { "lat": 40.7032444, "lon": -73.9941460 }, + { "lat": 40.7033856, "lon": -73.9939995 }, + { "lat": 40.7033942, "lon": -73.9939795 }, + { "lat": 40.7033998, "lon": -73.9939544 }, + { "lat": 40.7033994, "lon": -73.9939243 }, + { "lat": 40.7033891, "lon": -73.9936909 }, + { "lat": 40.7034103, "lon": -73.9937177 }, + { "lat": 40.7034206, "lon": -73.9937306 }, + { "lat": 40.7034314, "lon": -73.9939824 }, + { "lat": 40.7034201, "lon": -73.9939920 }, + { "lat": 40.7032460, "lon": -73.9941739 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1257083259, + "bounds": { + "minlat": 40.7028591, + "minlon": -73.9948910, + "maxlat": 40.7032059, + "maxlon": -73.9942083 + }, + "nodes": [ + 11687100040, + 11687100041, + 11687100030, + 11687100042, + 11687100043, + 11687100044, + 11687100045, + 11687100046, + 11687100047, + 11687172901, + 11687099980, + 11687099981, + 8262934646, + 4631363563, + 11687024859, + 11687024860, + 11687024858, + 11687024857, + 4631363584, + 11687024864, + 11687024863, + 11687024862, + 11687024861, + 4631363802, + 9712369743, + 11695259431, + 11687100040 + ], + "geometry": [ + { "lat": 40.7028591, "lon": -73.9948594 }, + { "lat": 40.7028702, "lon": -73.9948910 }, + { "lat": 40.7029091, "lon": -73.9948683 }, + { "lat": 40.7030102, "lon": -73.9948094 }, + { "lat": 40.7030302, "lon": -73.9947931 }, + { "lat": 40.7030484, "lon": -73.9947688 }, + { "lat": 40.7030557, "lon": -73.9947425 }, + { "lat": 40.7030591, "lon": -73.9947110 }, + { "lat": 40.7030215, "lon": -73.9944060 }, + { "lat": 40.7030976, "lon": -73.9943287 }, + { "lat": 40.7032059, "lon": -73.9942156 }, + { "lat": 40.7031843, "lon": -73.9942083 }, + { "lat": 40.7030888, "lon": -73.9943074 }, + { "lat": 40.7030137, "lon": -73.9943866 }, + { "lat": 40.7030034, "lon": -73.9944001 }, + { "lat": 40.7029976, "lon": -73.9944154 }, + { "lat": 40.7029962, "lon": -73.9944333 }, + { "lat": 40.7029967, "lon": -73.9944532 }, + { "lat": 40.7030259, "lon": -73.9946949 }, + { "lat": 40.7030279, "lon": -73.9947155 }, + { "lat": 40.7030254, "lon": -73.9947343 }, + { "lat": 40.7030184, "lon": -73.9947530 }, + { "lat": 40.7030079, "lon": -73.9947681 }, + { "lat": 40.7029939, "lon": -73.9947800 }, + { "lat": 40.7028981, "lon": -73.9948365 }, + { "lat": 40.7028789, "lon": -73.9948478 }, + { "lat": 40.7028591, "lon": -73.9948594 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1257332450, + "bounds": { + "minlat": 40.7161492, + "minlon": -73.9961338, + "maxlat": 40.7162686, + "maxlon": -73.9960588 + }, + "nodes": [ + 11496014207, + 5161246307 + ], + "geometry": [ + { "lat": 40.7162686, "lon": -73.9960588 }, + { "lat": 40.7161492, "lon": -73.9961338 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|left;through||", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 1257907329, + "bounds": { + "minlat": 40.7464300, + "minlon": -73.9318531, + "maxlat": 40.7464728, + "maxlon": -73.9313344 + }, + "nodes": [ + 5837043374, + 10069673263, + 11694597415, + 11694597416, + 42817753 + ], + "geometry": [ + { "lat": 40.7464728, "lon": -73.9318531 }, + { "lat": 40.7464625, "lon": -73.9317195 }, + { "lat": 40.7464384, "lon": -73.9314338 }, + { "lat": 40.7464339, "lon": -73.9313809 }, + { "lat": 40.7464300, "lon": -73.9313344 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "parking:both": "street_side", + "parking:left:orientation": "diagonal", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1257907330, + "bounds": { + "minlat": 40.7464728, + "minlon": -73.9322774, + "maxlat": 40.7464864, + "maxlon": -73.9318531 + }, + "nodes": [ + 42817750, + 5837043373, + 7985719894, + 5837043374 + ], + "geometry": [ + { "lat": 40.7464862, "lon": -73.9322774 }, + { "lat": 40.7464864, "lon": -73.9320840 }, + { "lat": 40.7464833, "lon": -73.9320148 }, + { "lat": 40.7464728, "lon": -73.9318531 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1257907332, + "bounds": { + "minlat": 40.7465923, + "minlon": -73.9317540, + "maxlat": 40.7466638, + "maxlon": -73.9312951 + }, + "nodes": [ + 42932499, + 10069673257, + 11694597421 + ], + "geometry": [ + { "lat": 40.7466638, "lon": -73.9312951 }, + { "lat": 40.7466254, "lon": -73.9315429 }, + { "lat": 40.7465923, "lon": -73.9317540 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "parking:right:orientation": "diagonal", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1258745656, + "bounds": { + "minlat": 40.7105221, + "minlon": -73.9654805, + "maxlat": 40.7106805, + "maxlon": -73.9654490 + }, + "nodes": [ + 11701378366, + 6338024005, + 4207788765 + ], + "geometry": [ + { "lat": 40.7106805, "lon": -73.9654490 }, + { "lat": 40.7105933, "lon": -73.9654661 }, + { "lat": 40.7105221, "lon": -73.9654805 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745657, + "bounds": { + "minlat": 40.7116780, + "minlon": -73.9649580, + "maxlat": 40.7118512, + "maxlon": -73.9648490 + }, + "nodes": [ + 42514914, + 8842469031, + 11701378367 + ], + "geometry": [ + { "lat": 40.7116780, "lon": -73.9649580 }, + { "lat": 40.7117649, "lon": -73.9649028 }, + { "lat": 40.7118512, "lon": -73.9648490 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1258745658, + "bounds": { + "minlat": 40.7118512, + "minlon": -73.9648490, + "maxlat": 40.7123281, + "maxlon": -73.9645453 + }, + "nodes": [ + 11701378367, + 10596295097, + 11701378368 + ], + "geometry": [ + { "lat": 40.7118512, "lon": -73.9648490 }, + { "lat": 40.7120737, "lon": -73.9647067 }, + { "lat": 40.7123281, "lon": -73.9645453 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1258745659, + "bounds": { + "minlat": 40.7123281, + "minlon": -73.9645453, + "maxlat": 40.7126041, + "maxlon": -73.9643702 + }, + "nodes": [ + 11701378368, + 8842469035, + 42535041, + 8842469033, + 11701389369 + ], + "geometry": [ + { "lat": 40.7123281, "lon": -73.9645453 }, + { "lat": 40.7124073, "lon": -73.9644950 }, + { "lat": 40.7124590, "lon": -73.9644620 }, + { "lat": 40.7125224, "lon": -73.9644216 }, + { "lat": 40.7126041, "lon": -73.9643702 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1258745660, + "bounds": { + "minlat": 40.7126041, + "minlon": -73.9643702, + "maxlat": 40.7129464, + "maxlon": -73.9641546 + }, + "nodes": [ + 11701389369, + 11701389370 + ], + "geometry": [ + { "lat": 40.7126041, "lon": -73.9643702 }, + { "lat": 40.7129464, "lon": -73.9641546 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1258745661, + "bounds": { + "minlat": 40.7129464, + "minlon": -73.9641546, + "maxlat": 40.7132241, + "maxlon": -73.9639811 + }, + "nodes": [ + 11701389370, + 9767625466, + 42474104, + 9767625464, + 11701389371 + ], + "geometry": [ + { "lat": 40.7129464, "lon": -73.9641546 }, + { "lat": 40.7130289, "lon": -73.9641026 }, + { "lat": 40.7130790, "lon": -73.9640710 }, + { "lat": 40.7131444, "lon": -73.9640297 }, + { "lat": 40.7132241, "lon": -73.9639811 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1258745662, + "bounds": { + "minlat": 40.7132241, + "minlon": -73.9639811, + "maxlat": 40.7136943, + "maxlon": -73.9636837 + }, + "nodes": [ + 11701389371, + 10596295095, + 11701389372 + ], + "geometry": [ + { "lat": 40.7132241, "lon": -73.9639811 }, + { "lat": 40.7133234, "lon": -73.9639171 }, + { "lat": 40.7136943, "lon": -73.9636837 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1258745663, + "bounds": { + "minlat": 40.7136943, + "minlon": -73.9636837, + "maxlat": 40.7139703, + "maxlon": -73.9635096 + }, + "nodes": [ + 11701389372, + 9767625451, + 42531870, + 9957055546, + 11701389373 + ], + "geometry": [ + { "lat": 40.7136943, "lon": -73.9636837 }, + { "lat": 40.7137752, "lon": -73.9636328 }, + { "lat": 40.7138234, "lon": -73.9636025 }, + { "lat": 40.7138797, "lon": -73.9635668 }, + { "lat": 40.7139703, "lon": -73.9635096 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1258745664, + "bounds": { + "minlat": 40.7139703, + "minlon": -73.9635096, + "maxlat": 40.7143134, + "maxlon": -73.9632930 + }, + "nodes": [ + 11701389373, + 11701389374 + ], + "geometry": [ + { "lat": 40.7139703, "lon": -73.9635096 }, + { "lat": 40.7143134, "lon": -73.9632930 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1258745665, + "bounds": { + "minlat": 40.7143134, + "minlon": -73.9632930, + "maxlat": 40.7145897, + "maxlon": -73.9631150 + }, + "nodes": [ + 11701389374, + 9949550276, + 42504281, + 6235394735, + 11701389375 + ], + "geometry": [ + { "lat": 40.7143134, "lon": -73.9632930 }, + { "lat": 40.7144185, "lon": -73.9632266 }, + { "lat": 40.7144550, "lon": -73.9632020 }, + { "lat": 40.7145061, "lon": -73.9631700 }, + { "lat": 40.7145897, "lon": -73.9631150 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1258745666, + "bounds": { + "minlat": 40.7149553, + "minlon": -73.9628833, + "maxlat": 40.7151065, + "maxlon": -73.9627787 + }, + "nodes": [ + 11701389376, + 6235394730, + 42537987 + ], + "geometry": [ + { "lat": 40.7149553, "lon": -73.9628833 }, + { "lat": 40.7150371, "lon": -73.9628320 }, + { "lat": 40.7151065, "lon": -73.9627787 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1258745667, + "bounds": { + "minlat": 40.7151065, + "minlon": -73.9627787, + "maxlat": 40.7152479, + "maxlon": -73.9626505 + }, + "nodes": [ + 11701389377, + 6235394732, + 42537987 + ], + "geometry": [ + { "lat": 40.7152479, "lon": -73.9626505 }, + { "lat": 40.7151767, "lon": -73.9627247 }, + { "lat": 40.7151065, "lon": -73.9627787 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745668, + "bounds": { + "minlat": 40.7157941, + "minlon": -73.9620584, + "maxlat": 40.7159300, + "maxlon": -73.9619120 + }, + "nodes": [ + 42484167, + 9779538042, + 11701389378 + ], + "geometry": [ + { "lat": 40.7159300, "lon": -73.9619120 }, + { "lat": 40.7158690, "lon": -73.9619778 }, + { "lat": 40.7157941, "lon": -73.9620584 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745669, + "bounds": { + "minlat": 40.7159300, + "minlon": -73.9619120, + "maxlat": 40.7160721, + "maxlon": -73.9617585 + }, + "nodes": [ + 42484167, + 9779538040, + 11701389379 + ], + "geometry": [ + { "lat": 40.7159300, "lon": -73.9619120 }, + { "lat": 40.7159948, "lon": -73.9618417 }, + { "lat": 40.7160721, "lon": -73.9617585 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745670, + "bounds": { + "minlat": 40.7162494, + "minlon": -73.9615678, + "maxlat": 40.7165015, + "maxlon": -73.9612968 + }, + "nodes": [ + 11701389381, + 9785615149, + 42536642, + 9785615147, + 11701389380 + ], + "geometry": [ + { "lat": 40.7162494, "lon": -73.9615678 }, + { "lat": 40.7163401, "lon": -73.9614702 }, + { "lat": 40.7163840, "lon": -73.9614230 }, + { "lat": 40.7164301, "lon": -73.9613735 }, + { "lat": 40.7165015, "lon": -73.9612968 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745671, + "bounds": { + "minlat": 40.7160721, + "minlon": -73.9617585, + "maxlat": 40.7162494, + "maxlon": -73.9615678 + }, + "nodes": [ + 11701389379, + 11701389381 + ], + "geometry": [ + { "lat": 40.7160721, "lon": -73.9617585 }, + { "lat": 40.7162494, "lon": -73.9615678 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745672, + "bounds": { + "minlat": 40.7165015, + "minlon": -73.9612968, + "maxlat": 40.7168580, + "maxlon": -73.9609139 + }, + "nodes": [ + 11701389380, + 11701389382 + ], + "geometry": [ + { "lat": 40.7165015, "lon": -73.9612968 }, + { "lat": 40.7168580, "lon": -73.9609139 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745673, + "bounds": { + "minlat": 40.7168580, + "minlon": -73.9609139, + "maxlat": 40.7170974, + "maxlon": -73.9606575 + }, + "nodes": [ + 11701389382, + 9789424765, + 42473951, + 9789424764, + 11701389383 + ], + "geometry": [ + { "lat": 40.7168580, "lon": -73.9609139 }, + { "lat": 40.7169231, "lon": -73.9608440 }, + { "lat": 40.7169851, "lon": -73.9607779 }, + { "lat": 40.7170265, "lon": -73.9607335 }, + { "lat": 40.7170974, "lon": -73.9606575 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745674, + "bounds": { + "minlat": 40.7174108, + "minlon": -73.9603215, + "maxlat": 40.7175280, + "maxlon": -73.9601960 + }, + "nodes": [ + 11701389384, + 9795044562, + 42528570 + ], + "geometry": [ + { "lat": 40.7174108, "lon": -73.9603215 }, + { "lat": 40.7174799, "lon": -73.9602475 }, + { "lat": 40.7175280, "lon": -73.9601960 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745675, + "bounds": { + "minlat": 40.7175280, + "minlon": -73.9601960, + "maxlat": 40.7176507, + "maxlon": -73.9600648 + }, + "nodes": [ + 11701389385, + 9795044564, + 42528570 + ], + "geometry": [ + { "lat": 40.7176507, "lon": -73.9600648 }, + { "lat": 40.7175796, "lon": -73.9601408 }, + { "lat": 40.7175280, "lon": -73.9601960 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745676, + "bounds": { + "minlat": 40.7176507, + "minlon": -73.9600648, + "maxlat": 40.7179664, + "maxlon": -73.9597274 + }, + "nodes": [ + 11701389386, + 11701389385 + ], + "geometry": [ + { "lat": 40.7179664, "lon": -73.9597274 }, + { "lat": 40.7176507, "lon": -73.9600648 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745677, + "bounds": { + "minlat": 40.7179664, + "minlon": -73.9597274, + "maxlat": 40.7182046, + "maxlon": -73.9594722 + }, + "nodes": [ + 11701389387, + 9795044577, + 42506174, + 9795044580, + 11701389386 + ], + "geometry": [ + { "lat": 40.7182046, "lon": -73.9594722 }, + { "lat": 40.7181328, "lon": -73.9595493 }, + { "lat": 40.7180800, "lon": -73.9596060 }, + { "lat": 40.7180343, "lon": -73.9596548 }, + { "lat": 40.7179664, "lon": -73.9597274 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745678, + "bounds": { + "minlat": 40.7185202, + "minlon": -73.9591333, + "maxlat": 40.7186360, + "maxlon": -73.9590090 + }, + "nodes": [ + 42480062, + 9795044593, + 11701389388 + ], + "geometry": [ + { "lat": 40.7186360, "lon": -73.9590090 }, + { "lat": 40.7185866, "lon": -73.9590619 }, + { "lat": 40.7185202, "lon": -73.9591333 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745679, + "bounds": { + "minlat": 40.7186360, + "minlon": -73.9590090, + "maxlat": 40.7187668, + "maxlon": -73.9588682 + }, + "nodes": [ + 42480062, + 9795044594, + 11701389389 + ], + "geometry": [ + { "lat": 40.7186360, "lon": -73.9590090 }, + { "lat": 40.7186817, "lon": -73.9589593 }, + { "lat": 40.7187668, "lon": -73.9588682 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745680, + "bounds": { + "minlat": 40.7187668, + "minlon": -73.9588682, + "maxlat": 40.7190753, + "maxlon": -73.9585379 + }, + "nodes": [ + 11701389389, + 11701389390 + ], + "geometry": [ + { "lat": 40.7187668, "lon": -73.9588682 }, + { "lat": 40.7190753, "lon": -73.9585379 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745681, + "bounds": { + "minlat": 40.7190753, + "minlon": -73.9585379, + "maxlat": 40.7193119, + "maxlon": -73.9582831 + }, + "nodes": [ + 11701389390, + 9794844955, + 42518972, + 9794844956, + 11701389391 + ], + "geometry": [ + { "lat": 40.7190753, "lon": -73.9585379 }, + { "lat": 40.7191414, "lon": -73.9584671 }, + { "lat": 40.7191890, "lon": -73.9584160 }, + { "lat": 40.7192396, "lon": -73.9583613 }, + { "lat": 40.7193119, "lon": -73.9582831 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745682, + "bounds": { + "minlat": 40.7196269, + "minlon": -73.9579449, + "maxlat": 40.7198629, + "maxlon": -73.9576878 + }, + "nodes": [ + 11701389392, + 9794890451, + 42492540, + 9794890449, + 11701389393 + ], + "geometry": [ + { "lat": 40.7196269, "lon": -73.9579449 }, + { "lat": 40.7196927, "lon": -73.9578709 }, + { "lat": 40.7197400, "lon": -73.9578200 }, + { "lat": 40.7197928, "lon": -73.9577632 }, + { "lat": 40.7198629, "lon": -73.9576878 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745683, + "bounds": { + "minlat": 40.7198629, + "minlon": -73.9576878, + "maxlat": 40.7201772, + "maxlon": -73.9573496 + }, + "nodes": [ + 11701389393, + 11701389394 + ], + "geometry": [ + { "lat": 40.7198629, "lon": -73.9576878 }, + { "lat": 40.7201772, "lon": -73.9573496 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745684, + "bounds": { + "minlat": 40.7201772, + "minlon": -73.9573496, + "maxlat": 40.7204146, + "maxlon": -73.9570941 + }, + "nodes": [ + 11701389394, + 9945078151, + 42482461, + 9945078150, + 11701389395 + ], + "geometry": [ + { "lat": 40.7201772, "lon": -73.9573496 }, + { "lat": 40.7202414, "lon": -73.9572805 }, + { "lat": 40.7202930, "lon": -73.9572250 }, + { "lat": 40.7203450, "lon": -73.9571690 }, + { "lat": 40.7204146, "lon": -73.9570941 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745685, + "bounds": { + "minlat": 40.7204146, + "minlon": -73.9570941, + "maxlat": 40.7207316, + "maxlon": -73.9567531 + }, + "nodes": [ + 11701389395, + 11701389396 + ], + "geometry": [ + { "lat": 40.7204146, "lon": -73.9570941 }, + { "lat": 40.7207316, "lon": -73.9567531 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745686, + "bounds": { + "minlat": 40.7207316, + "minlon": -73.9567531, + "maxlat": 40.7209683, + "maxlon": -73.9564985 + }, + "nodes": [ + 11701389396, + 9794890551, + 42534485, + 9794890553, + 11701389397 + ], + "geometry": [ + { "lat": 40.7207316, "lon": -73.9567531 }, + { "lat": 40.7207971, "lon": -73.9566826 }, + { "lat": 40.7208460, "lon": -73.9566300 }, + { "lat": 40.7208983, "lon": -73.9565736 }, + { "lat": 40.7209683, "lon": -73.9564985 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258745687, + "bounds": { + "minlat": 40.7212835, + "minlon": -73.9561599, + "maxlat": 40.7213970, + "maxlon": -73.9560380 + }, + "nodes": [ + 11701389398, + 9794890678, + 42514549 + ], + "geometry": [ + { "lat": 40.7212835, "lon": -73.9561599 }, + { "lat": 40.7213509, "lon": -73.9560875 }, + { "lat": 40.7213970, "lon": -73.9560380 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "designated", + "highway": "living_street", + "maxspeed": "10 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Berry Street", + "name:etymology:wikidata": "Q105219414", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Berry", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1258854778, + "bounds": { + "minlat": 40.7230832, + "minlon": -73.9544283, + "maxlat": 40.7231745, + "maxlon": -73.9542833 + }, + "nodes": [ + 11702273420, + 11702273421, + 11702314017, + 11702273422, + 11702273423, + 11702273424 + ], + "geometry": [ + { "lat": 40.7231745, "lon": -73.9542833 }, + { "lat": 40.7231613, "lon": -73.9542998 }, + { "lat": 40.7231494, "lon": -73.9543150 }, + { "lat": 40.7231237, "lon": -73.9543477 }, + { "lat": 40.7230942, "lon": -73.9543977 }, + { "lat": 40.7230832, "lon": -73.9544283 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1258856833, + "bounds": { + "minlat": 40.7232617, + "minlon": -73.9520246, + "maxlat": 40.7234251, + "maxlon": -73.9517649 + }, + "nodes": [ + 11702286746, + 11702286747, + 11702286748, + 11702286749, + 11702286750, + 11702286751, + 11702286752, + 11702308371, + 11702286753, + 11069869435, + 11702286754, + 11702308378, + 11702286746 + ], + "geometry": [ + { "lat": 40.7233593, "lon": -73.9519780 }, + { "lat": 40.7234251, "lon": -73.9517862 }, + { "lat": 40.7234198, "lon": -73.9517724 }, + { "lat": 40.7234133, "lon": -73.9517676 }, + { "lat": 40.7234046, "lon": -73.9517649 }, + { "lat": 40.7233959, "lon": -73.9517718 }, + { "lat": 40.7232639, "lon": -73.9519345 }, + { "lat": 40.7232628, "lon": -73.9519740 }, + { "lat": 40.7232617, "lon": -73.9520142 }, + { "lat": 40.7232833, "lon": -73.9520159 }, + { "lat": 40.7232867, "lon": -73.9520246 }, + { "lat": 40.7233170, "lon": -73.9520049 }, + { "lat": 40.7233593, "lon": -73.9519780 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1258856834, + "bounds": { + "minlat": 40.7235464, + "minlon": -73.9516574, + "maxlat": 40.7237399, + "maxlon": -73.9514241 + }, + "nodes": [ + 9929558971, + 11702286757, + 11702286758, + 11702286759, + 11702286760, + 9789402813, + 11702286761, + 11702286762, + 11702286763, + 9789402814, + 11702286764, + 11702286765, + 9789343604, + 11702286766, + 11702308370, + 9929558971 + ], + "geometry": [ + { "lat": 40.7236479, "lon": -73.9514396 }, + { "lat": 40.7236281, "lon": -73.9514257 }, + { "lat": 40.7236141, "lon": -73.9514241 }, + { "lat": 40.7236050, "lon": -73.9514284 }, + { "lat": 40.7235972, "lon": -73.9514398 }, + { "lat": 40.7235500, "lon": -73.9515859 }, + { "lat": 40.7235464, "lon": -73.9516079 }, + { "lat": 40.7235502, "lon": -73.9516215 }, + { "lat": 40.7235567, "lon": -73.9516291 }, + { "lat": 40.7235984, "lon": -73.9516492 }, + { "lat": 40.7236145, "lon": -73.9516574 }, + { "lat": 40.7236357, "lon": -73.9516351 }, + { "lat": 40.7236152, "lon": -73.9516233 }, + { "lat": 40.7237399, "lon": -73.9514888 }, + { "lat": 40.7237192, "lon": -73.9514778 }, + { "lat": 40.7236479, "lon": -73.9514396 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1258858536, + "bounds": { + "minlat": 40.7224044, + "minlon": -73.9550719, + "maxlat": 40.7225134, + "maxlon": -73.9548540 + }, + "nodes": [ + 9789335909, + 12089563047, + 11702315154, + 12089563046, + 11702315155, + 11702315156, + 11702315157, + 9779533075, + 9789335909 + ], + "geometry": [ + { "lat": 40.7225134, "lon": -73.9549606 }, + { "lat": 40.7224671, "lon": -73.9548754 }, + { "lat": 40.7224554, "lon": -73.9548540 }, + { "lat": 40.7224419, "lon": -73.9548912 }, + { "lat": 40.7224263, "lon": -73.9549340 }, + { "lat": 40.7224044, "lon": -73.9549830 }, + { "lat": 40.7224061, "lon": -73.9550719 }, + { "lat": 40.7224966, "lon": -73.9549734 }, + { "lat": 40.7225134, "lon": -73.9549606 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1259265396, + "bounds": { + "minlat": 40.7011187, + "minlon": -73.9964130, + "maxlat": 40.7011834, + "maxlon": -73.9963521 + }, + "nodes": [ + 11707126527, + 11707126588, + 11685188005, + 2392046903, + 11707126532, + 11707126531, + 11707126530, + 11707126529, + 11707126528, + 11707126527 + ], + "geometry": [ + { "lat": 40.7011834, "lon": -73.9963883 }, + { "lat": 40.7011702, "lon": -73.9963982 }, + { "lat": 40.7011504, "lon": -73.9964130 }, + { "lat": 40.7011277, "lon": -73.9963693 }, + { "lat": 40.7011187, "lon": -73.9963521 }, + { "lat": 40.7011284, "lon": -73.9963529 }, + { "lat": 40.7011410, "lon": -73.9963596 }, + { "lat": 40.7011539, "lon": -73.9963682 }, + { "lat": 40.7011705, "lon": -73.9963812 }, + { "lat": 40.7011834, "lon": -73.9963883 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259265410, + "bounds": { + "minlat": 40.7009919, + "minlon": -73.9964045, + "maxlat": 40.7010956, + "maxlon": -73.9962556 + }, + "nodes": [ + 11707126710, + 6561806987, + 11707126711, + 11707126712, + 11707126713, + 11707126714, + 11707126715, + 11707126716, + 11707126717, + 11707126718, + 11707126642, + 11707126719, + 11707126720, + 11707126721, + 11707126722, + 11707126723, + 11707126724, + 11707126635, + 11707126685, + 11707126686, + 11707126687, + 11707126688, + 11707126710 + ], + "geometry": [ + { "lat": 40.7010288, "lon": -73.9964045 }, + { "lat": 40.7010258, "lon": -73.9963943 }, + { "lat": 40.7010221, "lon": -73.9963832 }, + { "lat": 40.7010340, "lon": -73.9963742 }, + { "lat": 40.7010506, "lon": -73.9963647 }, + { "lat": 40.7010587, "lon": -73.9963613 }, + { "lat": 40.7010460, "lon": -73.9963407 }, + { "lat": 40.7010313, "lon": -73.9963206 }, + { "lat": 40.7010174, "lon": -73.9963055 }, + { "lat": 40.7009959, "lon": -73.9962899 }, + { "lat": 40.7009951, "lon": -73.9962747 }, + { "lat": 40.7009919, "lon": -73.9962556 }, + { "lat": 40.7010063, "lon": -73.9962626 }, + { "lat": 40.7010236, "lon": -73.9962750 }, + { "lat": 40.7010429, "lon": -73.9962976 }, + { "lat": 40.7010604, "lon": -73.9963179 }, + { "lat": 40.7010730, "lon": -73.9963306 }, + { "lat": 40.7010869, "lon": -73.9963576 }, + { "lat": 40.7010956, "lon": -73.9963745 }, + { "lat": 40.7010823, "lon": -73.9963757 }, + { "lat": 40.7010640, "lon": -73.9963808 }, + { "lat": 40.7010459, "lon": -73.9963918 }, + { "lat": 40.7010288, "lon": -73.9964045 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1259265422, + "bounds": { + "minlat": 40.7008188, + "minlon": -73.9961840, + "maxlat": 40.7010178, + "maxlon": -73.9958429 + }, + "nodes": [ + 6561729171, + 8262934690, + 11707126799, + 11707126786, + 11707126787, + 11707126788, + 11707126789, + 11707126790, + 11707126791, + 11707126792, + 11707126793, + 11707126794, + 11707126795, + 11707126796, + 11707126798, + 11707126797 + ], + "geometry": [ + { "lat": 40.7009561, "lon": -73.9958429 }, + { "lat": 40.7009762, "lon": -73.9959180 }, + { "lat": 40.7009987, "lon": -73.9959995 }, + { "lat": 40.7010117, "lon": -73.9960475 }, + { "lat": 40.7010178, "lon": -73.9960779 }, + { "lat": 40.7010178, "lon": -73.9961071 }, + { "lat": 40.7010126, "lon": -73.9961309 }, + { "lat": 40.7010026, "lon": -73.9961494 }, + { "lat": 40.7009808, "lon": -73.9961705 }, + { "lat": 40.7009521, "lon": -73.9961840 }, + { "lat": 40.7009261, "lon": -73.9961831 }, + { "lat": 40.7009058, "lon": -73.9961729 }, + { "lat": 40.7008897, "lon": -73.9961527 }, + { "lat": 40.7008780, "lon": -73.9961252 }, + { "lat": 40.7008388, "lon": -73.9959810 }, + { "lat": 40.7008188, "lon": -73.9959083 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259265423, + "bounds": { + "minlat": 40.7009987, + "minlon": -73.9959995, + "maxlat": 40.7010442, + "maxlon": -73.9959786 + }, + "nodes": [ + 11707126760, + 11707126799 + ], + "geometry": [ + { "lat": 40.7010442, "lon": -73.9959786 }, + { "lat": 40.7009987, "lon": -73.9959995 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259265424, + "bounds": { + "minlat": 40.7009772, + "minlon": -73.9965177, + "maxlat": 40.7012300, + "maxlon": -73.9963832 + }, + "nodes": [ + 11707126710, + 6561806987, + 11707126711, + 11707126745, + 11707126744, + 11707126743, + 11707126742, + 11707126741, + 11707126740, + 11707126739, + 11707126738, + 11707126737, + 11707126736, + 11707126735, + 11707126734, + 11707126733, + 11707126732, + 11707126731, + 11707126730, + 2392046902, + 11707126706, + 11707126705, + 11707126704, + 11707126703, + 11707126702, + 11707126701, + 11707126700, + 11707126699, + 11707126698, + 11707126697, + 11707126696, + 11707126695, + 11707126694, + 11707126693, + 11707126692, + 11707126691, + 11707126690, + 11707126689, + 11707126710 + ], + "geometry": [ + { "lat": 40.7010288, "lon": -73.9964045 }, + { "lat": 40.7010258, "lon": -73.9963943 }, + { "lat": 40.7010221, "lon": -73.9963832 }, + { "lat": 40.7010084, "lon": -73.9963940 }, + { "lat": 40.7009898, "lon": -73.9964138 }, + { "lat": 40.7009818, "lon": -73.9964282 }, + { "lat": 40.7009772, "lon": -73.9964474 }, + { "lat": 40.7009787, "lon": -73.9964674 }, + { "lat": 40.7009846, "lon": -73.9964842 }, + { "lat": 40.7009981, "lon": -73.9965003 }, + { "lat": 40.7010183, "lon": -73.9965114 }, + { "lat": 40.7010417, "lon": -73.9965157 }, + { "lat": 40.7010646, "lon": -73.9965177 }, + { "lat": 40.7011017, "lon": -73.9965165 }, + { "lat": 40.7011324, "lon": -73.9965143 }, + { "lat": 40.7011559, "lon": -73.9965095 }, + { "lat": 40.7011791, "lon": -73.9965063 }, + { "lat": 40.7011935, "lon": -73.9965059 }, + { "lat": 40.7011981, "lon": -73.9965091 }, + { "lat": 40.7012176, "lon": -73.9965031 }, + { "lat": 40.7012300, "lon": -73.9964981 }, + { "lat": 40.7012289, "lon": -73.9964960 }, + { "lat": 40.7012241, "lon": -73.9964886 }, + { "lat": 40.7012129, "lon": -73.9964813 }, + { "lat": 40.7011954, "lon": -73.9964765 }, + { "lat": 40.7011756, "lon": -73.9964782 }, + { "lat": 40.7011476, "lon": -73.9964826 }, + { "lat": 40.7011166, "lon": -73.9964866 }, + { "lat": 40.7010795, "lon": -73.9964885 }, + { "lat": 40.7010458, "lon": -73.9964873 }, + { "lat": 40.7010273, "lon": -73.9964828 }, + { "lat": 40.7010148, "lon": -73.9964773 }, + { "lat": 40.7010075, "lon": -73.9964702 }, + { "lat": 40.7010024, "lon": -73.9964582 }, + { "lat": 40.7009999, "lon": -73.9964463 }, + { "lat": 40.7010015, "lon": -73.9964362 }, + { "lat": 40.7010073, "lon": -73.9964256 }, + { "lat": 40.7010240, "lon": -73.9964081 }, + { "lat": 40.7010288, "lon": -73.9964045 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259265425, + "bounds": { + "minlat": 40.7011902, + "minlon": -73.9964309, + "maxlat": 40.7016455, + "maxlon": -73.9961448 + }, + "nodes": [ + 11707126684, + 11707126591, + 11707126603, + 11707126604, + 11707126605, + 11707126606, + 11707126607, + 11707126608, + 11707126609, + 11707126610, + 11707126611, + 11707126612, + 11707126613, + 11707126614, + 11707126615, + 11707126616, + 11707126617, + 11707126618, + 11707126619, + 11707126620, + 11707126621, + 11707126622, + 11707126623, + 11707126624, + 11685188007, + 2392046907, + 11685188006, + 11707126577, + 11707126576, + 11707126575, + 11707126574, + 11707126573, + 11707126572, + 11707126571, + 11707126570, + 11707126569, + 11695153593, + 11707126663, + 11707126664, + 11707126665, + 11707126666, + 11707126667, + 11707126668, + 11707126669, + 11707126670, + 11707126671, + 11707126672, + 11707126673, + 11707126674, + 11707126675, + 11707126676, + 11707126677, + 11707126678, + 11707126679, + 11707126680, + 11707126681, + 11707126682, + 11707126683, + 11707126684 + ], + "geometry": [ + { "lat": 40.7011902, "lon": -73.9964248 }, + { "lat": 40.7012057, "lon": -73.9964130 }, + { "lat": 40.7012257, "lon": -73.9963979 }, + { "lat": 40.7012361, "lon": -73.9963971 }, + { "lat": 40.7012540, "lon": -73.9963920 }, + { "lat": 40.7012701, "lon": -73.9963812 }, + { "lat": 40.7012834, "lon": -73.9963681 }, + { "lat": 40.7012958, "lon": -73.9963550 }, + { "lat": 40.7013089, "lon": -73.9963427 }, + { "lat": 40.7013287, "lon": -73.9963259 }, + { "lat": 40.7013486, "lon": -73.9963129 }, + { "lat": 40.7013722, "lon": -73.9963001 }, + { "lat": 40.7013963, "lon": -73.9962926 }, + { "lat": 40.7014196, "lon": -73.9962825 }, + { "lat": 40.7014449, "lon": -73.9962688 }, + { "lat": 40.7014705, "lon": -73.9962532 }, + { "lat": 40.7014999, "lon": -73.9962349 }, + { "lat": 40.7015136, "lon": -73.9962190 }, + { "lat": 40.7015240, "lon": -73.9961967 }, + { "lat": 40.7015271, "lon": -73.9961818 }, + { "lat": 40.7015165, "lon": -73.9961839 }, + { "lat": 40.7015051, "lon": -73.9961870 }, + { "lat": 40.7014868, "lon": -73.9961981 }, + { "lat": 40.7014561, "lon": -73.9962222 }, + { "lat": 40.7014348, "lon": -73.9962393 }, + { "lat": 40.7014283, "lon": -73.9962242 }, + { "lat": 40.7014221, "lon": -73.9962097 }, + { "lat": 40.7014732, "lon": -73.9961702 }, + { "lat": 40.7014960, "lon": -73.9961568 }, + { "lat": 40.7015198, "lon": -73.9961482 }, + { "lat": 40.7015361, "lon": -73.9961448 }, + { "lat": 40.7015550, "lon": -73.9961479 }, + { "lat": 40.7015729, "lon": -73.9961552 }, + { "lat": 40.7016030, "lon": -73.9961679 }, + { "lat": 40.7016187, "lon": -73.9961728 }, + { "lat": 40.7016455, "lon": -73.9961780 }, + { "lat": 40.7016446, "lon": -73.9961913 }, + { "lat": 40.7016426, "lon": -73.9962072 }, + { "lat": 40.7016137, "lon": -73.9962007 }, + { "lat": 40.7015994, "lon": -73.9961970 }, + { "lat": 40.7015685, "lon": -73.9961858 }, + { "lat": 40.7015575, "lon": -73.9961856 }, + { "lat": 40.7015500, "lon": -73.9962070 }, + { "lat": 40.7015366, "lon": -73.9962259 }, + { "lat": 40.7015205, "lon": -73.9962469 }, + { "lat": 40.7014961, "lon": -73.9962700 }, + { "lat": 40.7014711, "lon": -73.9962856 }, + { "lat": 40.7014491, "lon": -73.9962996 }, + { "lat": 40.7014241, "lon": -73.9963128 }, + { "lat": 40.7013946, "lon": -73.9963240 }, + { "lat": 40.7013692, "lon": -73.9963372 }, + { "lat": 40.7013374, "lon": -73.9963564 }, + { "lat": 40.7013091, "lon": -73.9963800 }, + { "lat": 40.7012872, "lon": -73.9963990 }, + { "lat": 40.7012699, "lon": -73.9964124 }, + { "lat": 40.7012469, "lon": -73.9964254 }, + { "lat": 40.7012235, "lon": -73.9964309 }, + { "lat": 40.7012062, "lon": -73.9964309 }, + { "lat": 40.7011902, "lon": -73.9964248 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259265428, + "bounds": { + "minlat": 40.7016049, + "minlon": -73.9961801, + "maxlat": 40.7025055, + "maxlon": -73.9955608 + }, + "nodes": [ + 11701435000, + 11701435001, + 11701435002, + 11701435035, + 11701435034, + 11701435033, + 11701435032, + 11701435031, + 11701435030, + 11701435029, + 11701435028, + 11701435027, + 11701435026, + 11701435025, + 11701435024, + 11701435023, + 11701435022, + 11701435021, + 11701435020, + 11701435019, + 11701435018, + 11701435017, + 11701435016, + 11701435015, + 11701435014, + 11701435013, + 11701435012, + 11701435011, + 11701435010, + 11701435009, + 11701435008, + 11701435007, + 11701435006, + 11701434969, + 11701428768, + 11701428767, + 11701428766, + 11701428765, + 11701428764, + 11701428763, + 11701428762, + 11701428761, + 11701428760, + 11701428759, + 11701428758, + 11701428757, + 11701428756, + 11701428755, + 11701428754, + 11688149629, + 11707045952, + 11707045951, + 11707045890, + 11707045891, + 11707045892, + 11707045893, + 11707045894, + 11707045895, + 11707045896, + 11707045897, + 11707045898, + 11707045899, + 11707045900, + 11707045901, + 11707045902, + 11707045903, + 11707045904, + 11707045905, + 11707045906, + 11707045950, + 11707045949, + 11707045948, + 11707045947, + 11707045946, + 11707045945, + 11707045944, + 11707045943, + 11707045942, + 11707045941, + 11707045940, + 11707045957, + 11707126568, + 11707126567, + 11707126566, + 11707126565, + 11707126564, + 11707126563, + 11707126707, + 11707126708, + 11707126709, + 11688149589, + 5754824473, + 11707126470, + 11707126469, + 11707045968, + 11707045967, + 11707045966, + 11707045965, + 11707045964, + 11707045963, + 11707045962, + 11707045961, + 11707045960, + 6561807007, + 6561807016, + 6561807015, + 6561807014, + 6561807013, + 6561807012, + 6561807011, + 6561807010, + 6561807008, + 5754824469, + 6561807023, + 6561807020, + 11701435087, + 11701435088, + 11701435089, + 11701435090, + 11701435091, + 11701435092, + 11701435093, + 11701435094, + 11701435095, + 11701435096, + 11701435097, + 11701435098, + 11701435099, + 11701435100, + 11701435101, + 11701435102, + 11701435103, + 11701435104, + 11701435105, + 11701435106, + 11701435107, + 11701435108, + 11701435109, + 11701435110, + 11701435073, + 11701435059, + 11701435060, + 11701435061, + 11701435062, + 11701435063, + 11701435064, + 11701435065, + 11701435052, + 5754824472, + 11701435057, + 5754824461, + 11701435000 + ], + "geometry": [ + { "lat": 40.7024920, "lon": -73.9956875 }, + { "lat": 40.7024885, "lon": -73.9957013 }, + { "lat": 40.7024798, "lon": -73.9957083 }, + { "lat": 40.7024670, "lon": -73.9957129 }, + { "lat": 40.7024579, "lon": -73.9957285 }, + { "lat": 40.7024635, "lon": -73.9957335 }, + { "lat": 40.7024751, "lon": -73.9957268 }, + { "lat": 40.7024807, "lon": -73.9957279 }, + { "lat": 40.7024897, "lon": -73.9957273 }, + { "lat": 40.7024947, "lon": -73.9957323 }, + { "lat": 40.7024984, "lon": -73.9957411 }, + { "lat": 40.7025055, "lon": -73.9957457 }, + { "lat": 40.7025026, "lon": -73.9957523 }, + { "lat": 40.7025011, "lon": -73.9957636 }, + { "lat": 40.7024904, "lon": -73.9957700 }, + { "lat": 40.7024848, "lon": -73.9957659 }, + { "lat": 40.7024744, "lon": -73.9957680 }, + { "lat": 40.7024646, "lon": -73.9957753 }, + { "lat": 40.7024600, "lon": -73.9957636 }, + { "lat": 40.7024516, "lon": -73.9957693 }, + { "lat": 40.7024476, "lon": -73.9957781 }, + { "lat": 40.7024358, "lon": -73.9957871 }, + { "lat": 40.7024220, "lon": -73.9957903 }, + { "lat": 40.7024085, "lon": -73.9958006 }, + { "lat": 40.7024013, "lon": -73.9957988 }, + { "lat": 40.7023849, "lon": -73.9958161 }, + { "lat": 40.7023760, "lon": -73.9958137 }, + { "lat": 40.7023618, "lon": -73.9958211 }, + { "lat": 40.7023541, "lon": -73.9958158 }, + { "lat": 40.7023438, "lon": -73.9958213 }, + { "lat": 40.7023385, "lon": -73.9958177 }, + { "lat": 40.7023331, "lon": -73.9958197 }, + { "lat": 40.7023279, "lon": -73.9958087 }, + { "lat": 40.7023187, "lon": -73.9958180 }, + { "lat": 40.7023054, "lon": -73.9958267 }, + { "lat": 40.7022906, "lon": -73.9958398 }, + { "lat": 40.7022760, "lon": -73.9958581 }, + { "lat": 40.7022613, "lon": -73.9958739 }, + { "lat": 40.7022442, "lon": -73.9958840 }, + { "lat": 40.7022269, "lon": -73.9958872 }, + { "lat": 40.7022114, "lon": -73.9958845 }, + { "lat": 40.7022001, "lon": -73.9958808 }, + { "lat": 40.7021874, "lon": -73.9958802 }, + { "lat": 40.7021785, "lon": -73.9958855 }, + { "lat": 40.7021721, "lon": -73.9958929 }, + { "lat": 40.7021703, "lon": -73.9959012 }, + { "lat": 40.7021712, "lon": -73.9959110 }, + { "lat": 40.7021798, "lon": -73.9959282 }, + { "lat": 40.7021896, "lon": -73.9959486 }, + { "lat": 40.7021783, "lon": -73.9959537 }, + { "lat": 40.7021620, "lon": -73.9959605 }, + { "lat": 40.7021621, "lon": -73.9959545 }, + { "lat": 40.7021489, "lon": -73.9959296 }, + { "lat": 40.7021345, "lon": -73.9959225 }, + { "lat": 40.7021229, "lon": -73.9959144 }, + { "lat": 40.7021069, "lon": -73.9959116 }, + { "lat": 40.7021061, "lon": -73.9959015 }, + { "lat": 40.7020985, "lon": -73.9958974 }, + { "lat": 40.7020956, "lon": -73.9958913 }, + { "lat": 40.7020723, "lon": -73.9958962 }, + { "lat": 40.7020683, "lon": -73.9959070 }, + { "lat": 40.7020506, "lon": -73.9959046 }, + { "lat": 40.7020386, "lon": -73.9959220 }, + { "lat": 40.7020301, "lon": -73.9959195 }, + { "lat": 40.7020054, "lon": -73.9959508 }, + { "lat": 40.7019833, "lon": -73.9959742 }, + { "lat": 40.7019745, "lon": -73.9959722 }, + { "lat": 40.7019687, "lon": -73.9959667 }, + { "lat": 40.7019592, "lon": -73.9959772 }, + { "lat": 40.7019278, "lon": -73.9960013 }, + { "lat": 40.7018935, "lon": -73.9960200 }, + { "lat": 40.7018552, "lon": -73.9960426 }, + { "lat": 40.7018252, "lon": -73.9960586 }, + { "lat": 40.7017756, "lon": -73.9960844 }, + { "lat": 40.7017434, "lon": -73.9961081 }, + { "lat": 40.7017257, "lon": -73.9961217 }, + { "lat": 40.7017120, "lon": -73.9961377 }, + { "lat": 40.7017040, "lon": -73.9961510 }, + { "lat": 40.7016990, "lon": -73.9961639 }, + { "lat": 40.7016980, "lon": -73.9961785 }, + { "lat": 40.7016781, "lon": -73.9961798 }, + { "lat": 40.7016628, "lon": -73.9961801 }, + { "lat": 40.7016651, "lon": -73.9961713 }, + { "lat": 40.7016665, "lon": -73.9961557 }, + { "lat": 40.7016632, "lon": -73.9961363 }, + { "lat": 40.7016559, "lon": -73.9961191 }, + { "lat": 40.7016482, "lon": -73.9961077 }, + { "lat": 40.7016372, "lon": -73.9961000 }, + { "lat": 40.7016191, "lon": -73.9960932 }, + { "lat": 40.7016126, "lon": -73.9960854 }, + { "lat": 40.7016049, "lon": -73.9960796 }, + { "lat": 40.7016166, "lon": -73.9960702 }, + { "lat": 40.7016247, "lon": -73.9960635 }, + { "lat": 40.7016263, "lon": -73.9960660 }, + { "lat": 40.7016326, "lon": -73.9960738 }, + { "lat": 40.7016442, "lon": -73.9960799 }, + { "lat": 40.7016571, "lon": -73.9960809 }, + { "lat": 40.7016726, "lon": -73.9960783 }, + { "lat": 40.7016851, "lon": -73.9960739 }, + { "lat": 40.7016942, "lon": -73.9960672 }, + { "lat": 40.7016989, "lon": -73.9960571 }, + { "lat": 40.7017001, "lon": -73.9960463 }, + { "lat": 40.7016991, "lon": -73.9960360 }, + { "lat": 40.7017591, "lon": -73.9959842 }, + { "lat": 40.7017706, "lon": -73.9960088 }, + { "lat": 40.7018454, "lon": -73.9959456 }, + { "lat": 40.7018567, "lon": -73.9959687 }, + { "lat": 40.7019303, "lon": -73.9959061 }, + { "lat": 40.7019404, "lon": -73.9959272 }, + { "lat": 40.7020132, "lon": -73.9958633 }, + { "lat": 40.7020242, "lon": -73.9958858 }, + { "lat": 40.7020937, "lon": -73.9958282 }, + { "lat": 40.7020747, "lon": -73.9956282 }, + { "lat": 40.7020956, "lon": -73.9956086 }, + { "lat": 40.7021507, "lon": -73.9955608 }, + { "lat": 40.7021694, "lon": -73.9956583 }, + { "lat": 40.7021620, "lon": -73.9956619 }, + { "lat": 40.7021549, "lon": -73.9956629 }, + { "lat": 40.7021466, "lon": -73.9956763 }, + { "lat": 40.7021328, "lon": -73.9956868 }, + { "lat": 40.7021395, "lon": -73.9956911 }, + { "lat": 40.7021293, "lon": -73.9957037 }, + { "lat": 40.7021342, "lon": -73.9957159 }, + { "lat": 40.7021268, "lon": -73.9957221 }, + { "lat": 40.7021329, "lon": -73.9957458 }, + { "lat": 40.7021285, "lon": -73.9957464 }, + { "lat": 40.7021279, "lon": -73.9957589 }, + { "lat": 40.7021226, "lon": -73.9957650 }, + { "lat": 40.7021251, "lon": -73.9957718 }, + { "lat": 40.7021208, "lon": -73.9957774 }, + { "lat": 40.7021290, "lon": -73.9957941 }, + { "lat": 40.7021234, "lon": -73.9958120 }, + { "lat": 40.7021282, "lon": -73.9958171 }, + { "lat": 40.7021284, "lon": -73.9958248 }, + { "lat": 40.7021335, "lon": -73.9958285 }, + { "lat": 40.7021319, "lon": -73.9958428 }, + { "lat": 40.7021294, "lon": -73.9958483 }, + { "lat": 40.7021375, "lon": -73.9958487 }, + { "lat": 40.7021385, "lon": -73.9958554 }, + { "lat": 40.7021454, "lon": -73.9958522 }, + { "lat": 40.7021619, "lon": -73.9958447 }, + { "lat": 40.7021693, "lon": -73.9958345 }, + { "lat": 40.7021724, "lon": -73.9958069 }, + { "lat": 40.7021676, "lon": -73.9957831 }, + { "lat": 40.7021647, "lon": -73.9957681 }, + { "lat": 40.7021742, "lon": -73.9957475 }, + { "lat": 40.7021868, "lon": -73.9957490 }, + { "lat": 40.7021917, "lon": -73.9957742 }, + { "lat": 40.7021985, "lon": -73.9958097 }, + { "lat": 40.7023157, "lon": -73.9957547 }, + { "lat": 40.7024915, "lon": -73.9956677 }, + { "lat": 40.7024920, "lon": -73.9956875 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259285775, + "bounds": { + "minlat": 40.7006258, + "minlon": -73.9888051, + "maxlat": 40.7006673, + "maxlon": -73.9887521 + }, + "nodes": [ + 11678137802, + 11678137806, + 11674209571, + 11678136137, + 11678136138, + 10722370804, + 11678137805, + 11707467853, + 11678137804, + 10722387720, + 11678137803, + 11678137802 + ], + "geometry": [ + { "lat": 40.7006673, "lon": -73.9888008 }, + { "lat": 40.7006440, "lon": -73.9888033 }, + { "lat": 40.7006365, "lon": -73.9888041 }, + { "lat": 40.7006281, "lon": -73.9888051 }, + { "lat": 40.7006258, "lon": -73.9887521 }, + { "lat": 40.7006425, "lon": -73.9887544 }, + { "lat": 40.7006503, "lon": -73.9887572 }, + { "lat": 40.7006570, "lon": -73.9887630 }, + { "lat": 40.7006622, "lon": -73.9887721 }, + { "lat": 40.7006646, "lon": -73.9887801 }, + { "lat": 40.7006667, "lon": -73.9887894 }, + { "lat": 40.7006673, "lon": -73.9888008 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259285776, + "bounds": { + "minlat": 40.7005899, + "minlon": -73.9896752, + "maxlat": 40.7006957, + "maxlon": -73.9888625 + }, + "nodes": [ + 8262936281, + 11678136119, + 8262936282, + 9368823946, + 11678137798, + 11678137799, + 9368823950, + 11678137800, + 11678137797, + 11678137807, + 11674209572, + 11678136129, + 11678136128, + 8262936281 + ], + "geometry": [ + { "lat": 40.7005899, "lon": -73.9896256 }, + { "lat": 40.7006027, "lon": -73.9896466 }, + { "lat": 40.7006185, "lon": -73.9896752 }, + { "lat": 40.7006746, "lon": -73.9896715 }, + { "lat": 40.7006841, "lon": -73.9896663 }, + { "lat": 40.7006916, "lon": -73.9896550 }, + { "lat": 40.7006957, "lon": -73.9896401 }, + { "lat": 40.7006954, "lon": -73.9896128 }, + { "lat": 40.7006702, "lon": -73.9888625 }, + { "lat": 40.7006466, "lon": -73.9888661 }, + { "lat": 40.7006385, "lon": -73.9888673 }, + { "lat": 40.7006654, "lon": -73.9896086 }, + { "lat": 40.7006491, "lon": -73.9896238 }, + { "lat": 40.7005899, "lon": -73.9896256 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259470366, + "bounds": { + "minlat": 40.7015288, + "minlon": -73.9868154, + "maxlat": 40.7015315, + "maxlon": -73.9867445 + }, + "nodes": [ + 42497721, + 11708907031 + ], + "geometry": [ + { "lat": 40.7015288, "lon": -73.9867445 }, + { "lat": 40.7015315, "lon": -73.9868154 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "hgv": "local", + "highway": "tertiary", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "York Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "York", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1259470373, + "bounds": { + "minlat": 40.7006084, + "minlon": -73.9866358, + "maxlat": 40.7006328, + "maxlon": -73.9858055 + }, + "nodes": [ + 42497724, + 10722387809, + 11708944178 + ], + "geometry": [ + { "lat": 40.7006328, "lon": -73.9866358 }, + { "lat": 40.7006299, "lon": -73.9865402 }, + { "lat": 40.7006084, "lon": -73.9858055 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1259470374, + "bounds": { + "minlat": 40.7005726, + "minlon": -73.9853353, + "maxlat": 40.7005935, + "maxlon": -73.9848032 + }, + "nodes": [ + 11708944179, + 598054702, + 10722387803, + 42519833 + ], + "geometry": [ + { "lat": 40.7005935, "lon": -73.9853353 }, + { "lat": 40.7005759, "lon": -73.9849048 }, + { "lat": 40.7005733, "lon": -73.9848372 }, + { "lat": 40.7005726, "lon": -73.9848032 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "maxspeed": "20 mph", + "name": "Prospect Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Prospect", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1259470381, + "bounds": { + "minlat": 40.7007984, + "minlon": -73.9867764, + "maxlat": 40.7009595, + "maxlon": -73.9867676 + }, + "nodes": [ + 42497722, + 11708944190 + ], + "geometry": [ + { "lat": 40.7007984, "lon": -73.9867764 }, + { "lat": 40.7009595, "lon": -73.9867676 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Jay", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1259470405, + "bounds": { + "minlat": 40.7011646, + "minlon": -73.9864553, + "maxlat": 40.7013504, + "maxlon": -73.9862640 + }, + "nodes": [ + 11291049426, + 11291049427, + 11708944325, + 11708944326, + 11708944366, + 11708944318, + 11708944319, + 11708944320, + 11708944321, + 11708944322, + 11708944270, + 11708944269, + 11708944268, + 11708944267, + 11708944266, + 11708944265, + 11708944317, + 11708944316, + 11708944315, + 11708944314, + 11708944313, + 11708944365, + 11708944264, + 11708944263, + 11708944335, + 11291049426 + ], + "geometry": [ + { "lat": 40.7013433, "lon": -73.9862640 }, + { "lat": 40.7012244, "lon": -73.9863143 }, + { "lat": 40.7012346, "lon": -73.9863538 }, + { "lat": 40.7011646, "lon": -73.9863298 }, + { "lat": 40.7011732, "lon": -73.9863572 }, + { "lat": 40.7011797, "lon": -73.9863777 }, + { "lat": 40.7012122, "lon": -73.9863922 }, + { "lat": 40.7012074, "lon": -73.9864021 }, + { "lat": 40.7011997, "lon": -73.9864110 }, + { "lat": 40.7011935, "lon": -73.9864163 }, + { "lat": 40.7011990, "lon": -73.9864288 }, + { "lat": 40.7012099, "lon": -73.9864414 }, + { "lat": 40.7012223, "lon": -73.9864489 }, + { "lat": 40.7012356, "lon": -73.9864553 }, + { "lat": 40.7012485, "lon": -73.9864551 }, + { "lat": 40.7012619, "lon": -73.9864505 }, + { "lat": 40.7012688, "lon": -73.9864466 }, + { "lat": 40.7012649, "lon": -73.9864379 }, + { "lat": 40.7012628, "lon": -73.9864269 }, + { "lat": 40.7012633, "lon": -73.9864146 }, + { "lat": 40.7012992, "lon": -73.9864293 }, + { "lat": 40.7013259, "lon": -73.9864140 }, + { "lat": 40.7013378, "lon": -73.9864073 }, + { "lat": 40.7013477, "lon": -73.9863998 }, + { "lat": 40.7013504, "lon": -73.9863966 }, + { "lat": 40.7013433, "lon": -73.9862640 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1259470410, + "bounds": { + "minlat": 40.7010390, + "minlon": -73.9859919, + "maxlat": 40.7010622, + "maxlon": -73.9858719 + }, + "nodes": [ + 11291049431, + 11708944362, + 11708944276, + 11708944277, + 11708944278, + 11708944279, + 11708944280, + 11708944281, + 11708944249, + 11291049433, + 11708944250, + 11291049432, + 11708944251, + 11291049431 + ], + "geometry": [ + { "lat": 40.7010622, "lon": -73.9859837 }, + { "lat": 40.7010495, "lon": -73.9859919 }, + { "lat": 40.7010460, "lon": -73.9859833 }, + { "lat": 40.7010411, "lon": -73.9859627 }, + { "lat": 40.7010390, "lon": -73.9859403 }, + { "lat": 40.7010405, "lon": -73.9859196 }, + { "lat": 40.7010459, "lon": -73.9859018 }, + { "lat": 40.7010538, "lon": -73.9858838 }, + { "lat": 40.7010608, "lon": -73.9858719 }, + { "lat": 40.7010525, "lon": -73.9858923 }, + { "lat": 40.7010480, "lon": -73.9859138 }, + { "lat": 40.7010483, "lon": -73.9859354 }, + { "lat": 40.7010542, "lon": -73.9859600 }, + { "lat": 40.7010622, "lon": -73.9859837 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1259470411, + "bounds": { + "minlat": 40.7010582, + "minlon": -73.9860831, + "maxlat": 40.7010963, + "maxlon": -73.9860073 + }, + "nodes": [ + 11708944360, + 11708944361, + 11708944358, + 11708944359, + 11708944360 + ], + "geometry": [ + { "lat": 40.7010710, "lon": -73.9860073 }, + { "lat": 40.7010582, "lon": -73.9860155 }, + { "lat": 40.7010835, "lon": -73.9860831 }, + { "lat": 40.7010963, "lon": -73.9860747 }, + { "lat": 40.7010710, "lon": -73.9860073 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1259470412, + "bounds": { + "minlat": 40.7010931, + "minlon": -73.9862701, + "maxlat": 40.7011587, + "maxlon": -73.9861027 + }, + "nodes": [ + 11708944252, + 11708944274, + 11708944273, + 11708944327, + 11708944328, + 11708944253, + 11708944252 + ], + "geometry": [ + { "lat": 40.7011065, "lon": -73.9861027 }, + { "lat": 40.7010931, "lon": -73.9861103 }, + { "lat": 40.7011255, "lon": -73.9862093 }, + { "lat": 40.7011453, "lon": -73.9862701 }, + { "lat": 40.7011587, "lon": -73.9862625 }, + { "lat": 40.7011319, "lon": -73.9861806 }, + { "lat": 40.7011065, "lon": -73.9861027 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1259470426, + "bounds": { + "minlat": 40.7014036, + "minlon": -73.9855327, + "maxlat": 40.7014859, + "maxlon": -73.9855278 + }, + "nodes": [ + 7154021064, + 10722387770, + 11708944463, + 11708944466 + ], + "geometry": [ + { "lat": 40.7014859, "lon": -73.9855278 }, + { "lat": 40.7014422, "lon": -73.9855307 }, + { "lat": 40.7014208, "lon": -73.9855316 }, + { "lat": 40.7014036, "lon": -73.9855327 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1259470427, + "bounds": { + "minlat": 40.7010155, + "minlon": -73.9849197, + "maxlat": 40.7010208, + "maxlon": -73.9847821 + }, + "nodes": [ + 11708944467, + 11708944465, + 10722387771, + 7707712191 + ], + "geometry": [ + { "lat": 40.7010208, "lon": -73.9849197 }, + { "lat": 40.7010201, "lon": -73.9848995 }, + { "lat": 40.7010191, "lon": -73.9848697 }, + { "lat": 40.7010155, "lon": -73.9847821 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1259493544, + "bounds": { + "minlat": 40.7006207, + "minlon": -73.9854811, + "maxlat": 40.7009969, + "maxlon": -73.9848481 + }, + "nodes": [ + 11709153977, + 10722387772, + 11709153978, + 11709153979, + 11159070074, + 10722387781, + 11708944197, + 11708944198, + 10722387804, + 11708944196, + 11159070075, + 11708907046, + 11708944180, + 10239553693, + 11708944471, + 11291049452, + 11709153926, + 11708944470, + 11709090955, + 11709090956, + 11709090957, + 11709090958, + 11709090959, + 11709153914, + 11709153893, + 11709153894, + 11709153895, + 11708944464, + 11709153977 + ], + "geometry": [ + { "lat": 40.7009969, "lon": -73.9849008 }, + { "lat": 40.7009949, "lon": -73.9848709 }, + { "lat": 40.7009869, "lon": -73.9848573 }, + { "lat": 40.7009721, "lon": -73.9848481 }, + { "lat": 40.7008968, "lon": -73.9848498 }, + { "lat": 40.7006704, "lon": -73.9848623 }, + { "lat": 40.7006506, "lon": -73.9848630 }, + { "lat": 40.7006381, "lon": -73.9848677 }, + { "lat": 40.7006284, "lon": -73.9848756 }, + { "lat": 40.7006213, "lon": -73.9848942 }, + { "lat": 40.7006207, "lon": -73.9849189 }, + { "lat": 40.7006409, "lon": -73.9854099 }, + { "lat": 40.7006566, "lon": -73.9854353 }, + { "lat": 40.7006703, "lon": -73.9854553 }, + { "lat": 40.7006852, "lon": -73.9854811 }, + { "lat": 40.7006840, "lon": -73.9854398 }, + { "lat": 40.7006836, "lon": -73.9854166 }, + { "lat": 40.7006830, "lon": -73.9853750 }, + { "lat": 40.7006602, "lon": -73.9853719 }, + { "lat": 40.7006433, "lon": -73.9849055 }, + { "lat": 40.7006534, "lon": -73.9848966 }, + { "lat": 40.7007248, "lon": -73.9848941 }, + { "lat": 40.7007471, "lon": -73.9850162 }, + { "lat": 40.7007580, "lon": -73.9850148 }, + { "lat": 40.7007686, "lon": -73.9850148 }, + { "lat": 40.7007482, "lon": -73.9848933 }, + { "lat": 40.7008979, "lon": -73.9848853 }, + { "lat": 40.7008985, "lon": -73.9849065 }, + { "lat": 40.7009969, "lon": -73.9849008 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259525255, + "bounds": { + "minlat": 40.7007541, + "minlon": -73.9887973, + "maxlat": 40.7012778, + "maxlon": -73.9887128 + }, + "nodes": [ + 11673037002, + 11678137809, + 11709378675, + 10722387721, + 11709378676, + 11709378677, + 10722387723, + 11709378678, + 11709378679, + 11674209696, + 10239553705, + 11673037003, + 11674209568, + 11673037002 + ], + "geometry": [ + { "lat": 40.7007854, "lon": -73.9887973 }, + { "lat": 40.7007715, "lon": -73.9887969 }, + { "lat": 40.7007559, "lon": -73.9887964 }, + { "lat": 40.7007541, "lon": -73.9887744 }, + { "lat": 40.7007564, "lon": -73.9887627 }, + { "lat": 40.7007610, "lon": -73.9887527 }, + { "lat": 40.7007694, "lon": -73.9887454 }, + { "lat": 40.7007815, "lon": -73.9887424 }, + { "lat": 40.7012688, "lon": -73.9887128 }, + { "lat": 40.7012730, "lon": -73.9887412 }, + { "lat": 40.7012778, "lon": -73.9887741 }, + { "lat": 40.7007895, "lon": -73.9887886 }, + { "lat": 40.7007865, "lon": -73.9887922 }, + { "lat": 40.7007854, "lon": -73.9887973 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259525259, + "bounds": { + "minlat": 40.7001251, + "minlon": -73.9874180, + "maxlat": 40.7001677, + "maxlon": -73.9869968 + }, + "nodes": [ + 10722387815, + 11709378705, + 11709378706, + 11709378707, + 11709378708, + 11709378709, + 11709378710, + 4785684320, + 11709378711, + 11709378712, + 10722387815 + ], + "geometry": [ + { "lat": 40.7001534, "lon": -73.9870437 }, + { "lat": 40.7001525, "lon": -73.9870156 }, + { "lat": 40.7001501, "lon": -73.9870046 }, + { "lat": 40.7001438, "lon": -73.9869982 }, + { "lat": 40.7001365, "lon": -73.9869968 }, + { "lat": 40.7001293, "lon": -73.9870001 }, + { "lat": 40.7001253, "lon": -73.9870115 }, + { "lat": 40.7001251, "lon": -73.9870338 }, + { "lat": 40.7001400, "lon": -73.9874180 }, + { "lat": 40.7001677, "lon": -73.9874175 }, + { "lat": 40.7001534, "lon": -73.9870437 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259525260, + "bounds": { + "minlat": 40.7001416, + "minlon": -73.9877045, + "maxlat": 40.7001753, + "maxlon": -73.9874567 + }, + "nodes": [ + 11709378713, + 10722387742, + 11709378714, + 11709378715, + 11709378716, + 11709378717, + 11709378718, + 11709378719, + 10722387743, + 11709378720, + 11709378721, + 11709378713 + ], + "geometry": [ + { "lat": 40.7001701, "lon": -73.9874567 }, + { "lat": 40.7001749, "lon": -73.9876741 }, + { "lat": 40.7001753, "lon": -73.9876854 }, + { "lat": 40.7001738, "lon": -73.9876962 }, + { "lat": 40.7001679, "lon": -73.9877026 }, + { "lat": 40.7001606, "lon": -73.9877045 }, + { "lat": 40.7001539, "lon": -73.9877007 }, + { "lat": 40.7001501, "lon": -73.9876921 }, + { "lat": 40.7001489, "lon": -73.9876700 }, + { "lat": 40.7001472, "lon": -73.9876199 }, + { "lat": 40.7001416, "lon": -73.9874572 }, + { "lat": 40.7001701, "lon": -73.9874567 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259525261, + "bounds": { + "minlat": 40.7000159, + "minlon": -73.9874198, + "maxlat": 40.7000597, + "maxlon": -73.9869378 + }, + "nodes": [ + 10722387814, + 11709378722, + 11709378723, + 11709378724, + 11709378725, + 11709378726, + 11709378727, + 11709378728, + 11709378729, + 10722387813, + 11709378730, + 11709378731, + 10722387814 + ], + "geometry": [ + { "lat": 40.7000428, "lon": -73.9869941 }, + { "lat": 40.7000410, "lon": -73.9869597 }, + { "lat": 40.7000403, "lon": -73.9869487 }, + { "lat": 40.7000359, "lon": -73.9869396 }, + { "lat": 40.7000295, "lon": -73.9869378 }, + { "lat": 40.7000221, "lon": -73.9869392 }, + { "lat": 40.7000177, "lon": -73.9869429 }, + { "lat": 40.7000159, "lon": -73.9869520 }, + { "lat": 40.7000160, "lon": -73.9869621 }, + { "lat": 40.7000165, "lon": -73.9869815 }, + { "lat": 40.7000312, "lon": -73.9874198 }, + { "lat": 40.7000597, "lon": -73.9874193 }, + { "lat": 40.7000428, "lon": -73.9869941 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259525262, + "bounds": { + "minlat": 40.7000337, + "minlon": -73.9876876, + "maxlat": 40.7000674, + "maxlon": -73.9874585 + }, + "nodes": [ + 11709378732, + 10722387744, + 11709378733, + 11709378734, + 11709378735, + 11709378736, + 11709378737, + 11709378738, + 11709378740, + 11709378739, + 11709378732 + ], + "geometry": [ + { "lat": 40.7000624, "lon": -73.9874585 }, + { "lat": 40.7000663, "lon": -73.9876572 }, + { "lat": 40.7000674, "lon": -73.9876768 }, + { "lat": 40.7000652, "lon": -73.9876837 }, + { "lat": 40.7000596, "lon": -73.9876876 }, + { "lat": 40.7000498, "lon": -73.9876876 }, + { "lat": 40.7000432, "lon": -73.9876825 }, + { "lat": 40.7000405, "lon": -73.9876749 }, + { "lat": 40.7000391, "lon": -73.9876687 }, + { "lat": 40.7000337, "lon": -73.9874590 }, + { "lat": 40.7000624, "lon": -73.9874585 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1259525277, + "bounds": { + "minlat": 40.6998532, + "minlon": -73.9861281, + "maxlat": 40.7000091, + "maxlon": -73.9848647 + }, + "nodes": [ + 3625891851, + 3625891852, + 3625891850, + 11709379528, + 490457723, + 11709379529, + 3625891840, + 3625891839, + 3625891838, + 3625891826, + 11709379498, + 3625891825, + 11709379497, + 11709379530, + 11709379500, + 11709379531, + 11709379555, + 11709379559, + 11709379554, + 11709379549, + 11709379560, + 11709379541, + 11709379540, + 11709379561, + 11709379524, + 11709379523, + 11709379527, + 11709379514, + 11709379513, + 11709379512, + 11709379511, + 11709379584, + 11709379532, + 11709379533, + 11709379534, + 11709379535, + 3625891851 + ], + "geometry": [ + { "lat": 40.6999299, "lon": -73.9851363 }, + { "lat": 40.6999088, "lon": -73.9850257 }, + { "lat": 40.6998915, "lon": -73.9849157 }, + { "lat": 40.6998894, "lon": -73.9848962 }, + { "lat": 40.6998716, "lon": -73.9848808 }, + { "lat": 40.6998532, "lon": -73.9848647 }, + { "lat": 40.6998631, "lon": -73.9849546 }, + { "lat": 40.6998936, "lon": -73.9851933 }, + { "lat": 40.6999282, "lon": -73.9854562 }, + { "lat": 40.6999357, "lon": -73.9855329 }, + { "lat": 40.6999407, "lon": -73.9855952 }, + { "lat": 40.6999458, "lon": -73.9856657 }, + { "lat": 40.6999525, "lon": -73.9857848 }, + { "lat": 40.6999614, "lon": -73.9861281 }, + { "lat": 40.6999890, "lon": -73.9861264 }, + { "lat": 40.7000091, "lon": -73.9861249 }, + { "lat": 40.7000084, "lon": -73.9861018 }, + { "lat": 40.7000077, "lon": -73.9860736 }, + { "lat": 40.7000069, "lon": -73.9860448 }, + { "lat": 40.7000060, "lon": -73.9860121 }, + { "lat": 40.7000052, "lon": -73.9859834 }, + { "lat": 40.7000044, "lon": -73.9859540 }, + { "lat": 40.7000011, "lon": -73.9858304 }, + { "lat": 40.7000004, "lon": -73.9858033 }, + { "lat": 40.6999995, "lon": -73.9857733 }, + { "lat": 40.6999984, "lon": -73.9857418 }, + { "lat": 40.6999972, "lon": -73.9857153 }, + { "lat": 40.6999958, "lon": -73.9856851 }, + { "lat": 40.6999947, "lon": -73.9856616 }, + { "lat": 40.6999912, "lon": -73.9856082 }, + { "lat": 40.6999870, "lon": -73.9855616 }, + { "lat": 40.6999851, "lon": -73.9855435 }, + { "lat": 40.6999816, "lon": -73.9855089 }, + { "lat": 40.6999723, "lon": -73.9854267 }, + { "lat": 40.6999573, "lon": -73.9853087 }, + { "lat": 40.6999423, "lon": -73.9852119 }, + { "lat": 40.6999299, "lon": -73.9851363 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1259525291, + "bounds": { + "minlat": 40.7000452, + "minlon": -73.9864414, + "maxlat": 40.7002257, + "maxlon": -73.9854504 + }, + "nodes": [ + 598056419, + 11709379590, + 7909208034, + 3625891833, + 11709379591, + 7909208038, + 278633440, + 7895300243, + 4785684421, + 494509169, + 10001058424 + ], + "geometry": [ + { "lat": 40.7000452, "lon": -73.9854504 }, + { "lat": 40.7001177, "lon": -73.9856471 }, + { "lat": 40.7001581, "lon": -73.9857637 }, + { "lat": 40.7001860, "lon": -73.9858659 }, + { "lat": 40.7002053, "lon": -73.9859603 }, + { "lat": 40.7002178, "lon": -73.9860638 }, + { "lat": 40.7002257, "lon": -73.9861839 }, + { "lat": 40.7002237, "lon": -73.9862533 }, + { "lat": 40.7002198, "lon": -73.9863142 }, + { "lat": 40.7002118, "lon": -73.9863910 }, + { "lat": 40.7002082, "lon": -73.9864414 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Sands Street", + "name:etymology:wikidata": "Q1708602", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Sands", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1259525292, + "bounds": { + "minlat": 40.6999200, + "minlon": -73.9854504, + "maxlat": 40.7000452, + "maxlon": -73.9849280 + }, + "nodes": [ + 42462173, + 3625891822, + 11709379589, + 278633441, + 598056419 + ], + "geometry": [ + { "lat": 40.6999200, "lon": -73.9849280 }, + { "lat": 40.6999393, "lon": -73.9850469 }, + { "lat": 40.6999665, "lon": -73.9851748 }, + { "lat": 40.6999982, "lon": -73.9853002 }, + { "lat": 40.7000452, "lon": -73.9854504 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Sands Street", + "name:etymology:wikidata": "Q1708602", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Sands", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1260560151, + "bounds": { + "minlat": 40.7493056, + "minlon": -73.9366190, + "maxlat": 40.7494004, + "maxlon": -73.9364930 + }, + "nodes": [ + 3785669515, + 6783777626 + ], + "geometry": [ + { "lat": 40.7493056, "lon": -73.9366190 }, + { "lat": 40.7494004, "lon": -73.9364930 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1262045053, + "bounds": { + "minlat": 40.7007295, + "minlon": -73.9965873, + "maxlat": 40.7009959, + "maxlon": -73.9960058 + }, + "nodes": [ + 11726298159, + 6561729176, + 11726328294, + 11726328295, + 11726328296, + 11726328297, + 11726328298, + 11726328299, + 11726328300, + 11726328301, + 11726328302, + 11726328303, + 11726328304, + 11726328305, + 11726298114, + 11695259430, + 11695153571, + 11707126758, + 11707126757, + 11707126756, + 11707126755, + 11707126754, + 11707126753, + 11707126752, + 11707126751, + 11707126750, + 11707126749, + 11707126748, + 11707126747, + 11707126746, + 11707126718, + 11707126642, + 11707126719, + 11707126729, + 11707126728, + 11726328306, + 11726328307, + 11726328308, + 11726328309, + 11726328310, + 11726328311, + 11726328312, + 11726328313, + 11726328314, + 11726328315, + 11726328316, + 11726298131, + 11726298130, + 11726298129, + 11726298128, + 11726298127, + 11726298126, + 11726298125, + 11726298124, + 9426304535, + 11726328285, + 11726328284, + 11726328283, + 11726328282, + 11726328281, + 11726328280, + 11726328279, + 11726328278, + 11726328277, + 11726328276, + 11726328275, + 11726328274, + 11726328273, + 11726328272, + 11726328271, + 11726328270, + 11726328269, + 11726298168, + 11726298167, + 11726298166, + 11726298165, + 11726298164, + 11726298163, + 11726298162, + 11726298161, + 11726298160, + 11726298159 + ], + "geometry": [ + { "lat": 40.7007677, "lon": -73.9964300 }, + { "lat": 40.7007454, "lon": -73.9964493 }, + { "lat": 40.7007295, "lon": -73.9964628 }, + { "lat": 40.7007420, "lon": -73.9964738 }, + { "lat": 40.7007598, "lon": -73.9964946 }, + { "lat": 40.7007755, "lon": -73.9965121 }, + { "lat": 40.7007902, "lon": -73.9965212 }, + { "lat": 40.7008085, "lon": -73.9965243 }, + { "lat": 40.7008209, "lon": -73.9965205 }, + { "lat": 40.7008353, "lon": -73.9965150 }, + { "lat": 40.7008487, "lon": -73.9965124 }, + { "lat": 40.7008636, "lon": -73.9965148 }, + { "lat": 40.7008741, "lon": -73.9965209 }, + { "lat": 40.7008868, "lon": -73.9965342 }, + { "lat": 40.7009004, "lon": -73.9965648 }, + { "lat": 40.7009101, "lon": -73.9965873 }, + { "lat": 40.7009379, "lon": -73.9965783 }, + { "lat": 40.7009719, "lon": -73.9965694 }, + { "lat": 40.7009611, "lon": -73.9965587 }, + { "lat": 40.7009508, "lon": -73.9965441 }, + { "lat": 40.7009427, "lon": -73.9965261 }, + { "lat": 40.7009386, "lon": -73.9964999 }, + { "lat": 40.7009391, "lon": -73.9964727 }, + { "lat": 40.7009428, "lon": -73.9964464 }, + { "lat": 40.7009500, "lon": -73.9964193 }, + { "lat": 40.7009597, "lon": -73.9963971 }, + { "lat": 40.7009712, "lon": -73.9963789 }, + { "lat": 40.7009850, "lon": -73.9963509 }, + { "lat": 40.7009916, "lon": -73.9963300 }, + { "lat": 40.7009956, "lon": -73.9963072 }, + { "lat": 40.7009959, "lon": -73.9962899 }, + { "lat": 40.7009951, "lon": -73.9962747 }, + { "lat": 40.7009919, "lon": -73.9962556 }, + { "lat": 40.7009879, "lon": -73.9962344 }, + { "lat": 40.7009815, "lon": -73.9962155 }, + { "lat": 40.7009674, "lon": -73.9962202 }, + { "lat": 40.7009508, "lon": -73.9962227 }, + { "lat": 40.7009304, "lon": -73.9962208 }, + { "lat": 40.7009108, "lon": -73.9962149 }, + { "lat": 40.7008944, "lon": -73.9962053 }, + { "lat": 40.7008806, "lon": -73.9961926 }, + { "lat": 40.7008651, "lon": -73.9961704 }, + { "lat": 40.7008575, "lon": -73.9961502 }, + { "lat": 40.7008482, "lon": -73.9961243 }, + { "lat": 40.7008149, "lon": -73.9960058 }, + { "lat": 40.7008084, "lon": -73.9960088 }, + { "lat": 40.7008032, "lon": -73.9960115 }, + { "lat": 40.7008408, "lon": -73.9961443 }, + { "lat": 40.7008543, "lon": -73.9961778 }, + { "lat": 40.7008702, "lon": -73.9962034 }, + { "lat": 40.7008780, "lon": -73.9962142 }, + { "lat": 40.7008786, "lon": -73.9962209 }, + { "lat": 40.7008740, "lon": -73.9962283 }, + { "lat": 40.7008581, "lon": -73.9962369 }, + { "lat": 40.7008646, "lon": -73.9962602 }, + { "lat": 40.7008718, "lon": -73.9962873 }, + { "lat": 40.7008766, "lon": -73.9962836 }, + { "lat": 40.7008914, "lon": -73.9962740 }, + { "lat": 40.7009103, "lon": -73.9962660 }, + { "lat": 40.7009210, "lon": -73.9962685 }, + { "lat": 40.7009345, "lon": -73.9962796 }, + { "lat": 40.7009398, "lon": -73.9962939 }, + { "lat": 40.7009416, "lon": -73.9963160 }, + { "lat": 40.7009349, "lon": -73.9963389 }, + { "lat": 40.7009185, "lon": -73.9963660 }, + { "lat": 40.7009038, "lon": -73.9964011 }, + { "lat": 40.7008949, "lon": -73.9964362 }, + { "lat": 40.7008908, "lon": -73.9964688 }, + { "lat": 40.7008898, "lon": -73.9964899 }, + { "lat": 40.7008857, "lon": -73.9964982 }, + { "lat": 40.7008811, "lon": -73.9964979 }, + { "lat": 40.7008774, "lon": -73.9964949 }, + { "lat": 40.7008644, "lon": -73.9964894 }, + { "lat": 40.7008503, "lon": -73.9964884 }, + { "lat": 40.7008367, "lon": -73.9964910 }, + { "lat": 40.7008217, "lon": -73.9964983 }, + { "lat": 40.7008104, "lon": -73.9965031 }, + { "lat": 40.7007956, "lon": -73.9964990 }, + { "lat": 40.7007826, "lon": -73.9964898 }, + { "lat": 40.7007741, "lon": -73.9964729 }, + { "lat": 40.7007688, "lon": -73.9964493 }, + { "lat": 40.7007677, "lon": -73.9964300 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1262045095, + "bounds": { + "minlat": 40.7014974, + "minlon": -73.9958063, + "maxlat": 40.7015637, + "maxlon": -73.9957163 + }, + "nodes": [ + 11726328400, + 11726328357, + 6561807003, + 11726328344, + 11726328397, + 11726328349, + 11726328355, + 11726328365, + 11726328400 + ], + "geometry": [ + { "lat": 40.7015529, "lon": -73.9957163 }, + { "lat": 40.7015637, "lon": -73.9957808 }, + { "lat": 40.7015494, "lon": -73.9957929 }, + { "lat": 40.7015337, "lon": -73.9958063 }, + { "lat": 40.7014974, "lon": -73.9957356 }, + { "lat": 40.7015053, "lon": -73.9957328 }, + { "lat": 40.7015278, "lon": -73.9957250 }, + { "lat": 40.7015478, "lon": -73.9957180 }, + { "lat": 40.7015529, "lon": -73.9957163 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1262278384, + "bounds": { + "minlat": 40.7385321, + "minlon": -74.0024001, + "maxlat": 40.7387436, + "maxlon": -74.0018106 + }, + "nodes": [ + 11728146526, + 42429377, + 1701921025, + 42429378 + ], + "geometry": [ + { "lat": 40.7385321, "lon": -74.0018106 }, + { "lat": 40.7386731, "lon": -74.0021545 }, + { "lat": 40.7387178, "lon": -74.0022742 }, + { "lat": 40.7387436, "lon": -74.0024001 } + ], + "tags": { + "cycleway": "lane", + "cycleway:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "name_1": "West 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|right" + } +}, +{ + "type": "way", + "id": 1262278385, + "bounds": { + "minlat": 40.7393719, + "minlon": -74.0039828, + "maxlat": 40.7394476, + "maxlon": -74.0037552 + }, + "nodes": [ + 11728146527, + 13247221989, + 11728146530, + 42429390 + ], + "geometry": [ + { "lat": 40.7394476, "lon": -74.0039828 }, + { "lat": 40.7394110, "lon": -74.0038637 }, + { "lat": 40.7393916, "lon": -74.0038019 }, + { "lat": 40.7393719, "lon": -74.0037552 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "name_1": "West 13 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:backward": "slight_left" + } +}, +{ + "type": "way", + "id": 1262390660, + "bounds": { + "minlat": 40.7630571, + "minlon": -73.9719724, + "maxlat": 40.7636096, + "maxlon": -73.9715440 + }, + "nodes": [ + 1000793200, + 11729281552, + 11729281555, + 11729281556, + 7788529750, + 11729281557, + 7788529726, + 11729281558, + 11729281559, + 11729281560, + 7788529753, + 11729281561, + 11729281562, + 7788529718, + 11729281563, + 11729281564, + 11729281551, + 1000793198, + 1000793200 + ], + "geometry": [ + { "lat": 40.7635768, "lon": -73.9715947 }, + { "lat": 40.7635931, "lon": -73.9715835 }, + { "lat": 40.7636096, "lon": -73.9715721 }, + { "lat": 40.7636050, "lon": -73.9715620 }, + { "lat": 40.7635972, "lon": -73.9715532 }, + { "lat": 40.7635877, "lon": -73.9715464 }, + { "lat": 40.7635764, "lon": -73.9715440 }, + { "lat": 40.7635663, "lon": -73.9715475 }, + { "lat": 40.7635539, "lon": -73.9715559 }, + { "lat": 40.7630757, "lon": -73.9719023 }, + { "lat": 40.7630655, "lon": -73.9719112 }, + { "lat": 40.7630600, "lon": -73.9719236 }, + { "lat": 40.7630571, "lon": -73.9719360 }, + { "lat": 40.7630574, "lon": -73.9719492 }, + { "lat": 40.7630583, "lon": -73.9719606 }, + { "lat": 40.7630627, "lon": -73.9719724 }, + { "lat": 40.7630844, "lon": -73.9719560 }, + { "lat": 40.7630974, "lon": -73.9719463 }, + { "lat": 40.7635768, "lon": -73.9715947 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1262390715, + "bounds": { + "minlat": 40.7630627, + "minlon": -73.9733458, + "maxlat": 40.7641819, + "maxlon": -73.9715721 + }, + "nodes": [ + 11729281544, + 11729293529, + 11729293530, + 11729281545, + 11729293531, + 11729281564, + 11729281551, + 1000793198, + 1000793202, + 11729293071, + 11729293119, + 11729293120, + 11729293528, + 11729293135, + 11729293136, + 11729293116, + 11729293158, + 11729293520, + 11729293164, + 11729293115, + 11729293088, + 11729293087, + 11729293527, + 11729293080, + 11729293079, + 11729293070, + 3377466357, + 8254176970, + 1000793200, + 11729281552, + 11729281555, + 11729293539, + 11729293532, + 11729281540, + 11729293533, + 11729293534, + 11729293535, + 11729281541, + 11729293536, + 11729293537, + 11729293538, + 11729281544 + ], + "geometry": [ + { "lat": 40.7636681, "lon": -73.9733458 }, + { "lat": 40.7636586, "lon": -73.9733458 }, + { "lat": 40.7636472, "lon": -73.9733393 }, + { "lat": 40.7636352, "lon": -73.9733237 }, + { "lat": 40.7636251, "lon": -73.9733009 }, + { "lat": 40.7630627, "lon": -73.9719724 }, + { "lat": 40.7630844, "lon": -73.9719560 }, + { "lat": 40.7630974, "lon": -73.9719463 }, + { "lat": 40.7635018, "lon": -73.9729072 }, + { "lat": 40.7635205, "lon": -73.9729516 }, + { "lat": 40.7635363, "lon": -73.9729888 }, + { "lat": 40.7635404, "lon": -73.9729987 }, + { "lat": 40.7635438, "lon": -73.9730067 }, + { "lat": 40.7635469, "lon": -73.9730141 }, + { "lat": 40.7635824, "lon": -73.9730984 }, + { "lat": 40.7636548, "lon": -73.9732701 }, + { "lat": 40.7637183, "lon": -73.9732235 }, + { "lat": 40.7638968, "lon": -73.9730923 }, + { "lat": 40.7640747, "lon": -73.9729615 }, + { "lat": 40.7641341, "lon": -73.9729178 }, + { "lat": 40.7640630, "lon": -73.9727492 }, + { "lat": 40.7640279, "lon": -73.9726659 }, + { "lat": 40.7640244, "lon": -73.9726576 }, + { "lat": 40.7640210, "lon": -73.9726495 }, + { "lat": 40.7640168, "lon": -73.9726396 }, + { "lat": 40.7640009, "lon": -73.9726019 }, + { "lat": 40.7639812, "lon": -73.9725552 }, + { "lat": 40.7638171, "lon": -73.9721670 }, + { "lat": 40.7635768, "lon": -73.9715947 }, + { "lat": 40.7635931, "lon": -73.9715835 }, + { "lat": 40.7636096, "lon": -73.9715721 }, + { "lat": 40.7638462, "lon": -73.9721462 }, + { "lat": 40.7641714, "lon": -73.9729093 }, + { "lat": 40.7641759, "lon": -73.9729231 }, + { "lat": 40.7641814, "lon": -73.9729410 }, + { "lat": 40.7641819, "lon": -73.9729577 }, + { "lat": 40.7641794, "lon": -73.9729702 }, + { "lat": 40.7641752, "lon": -73.9729781 }, + { "lat": 40.7641684, "lon": -73.9729863 }, + { "lat": 40.7636921, "lon": -73.9733348 }, + { "lat": 40.7636796, "lon": -73.9733421 }, + { "lat": 40.7636681, "lon": -73.9733458 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1262602461, + "bounds": { + "minlat": 40.7025517, + "minlon": -73.9938727, + "maxlat": 40.7026193, + "maxlon": -73.9938376 + }, + "nodes": [ + 3174844149, + 10739408493 + ], + "geometry": [ + { "lat": 40.7026193, "lon": -73.9938376 }, + { "lat": 40.7025517, "lon": -73.9938727 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Elizabeth Place", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Elizabeth", + "tiger:name_type": "Pl", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1263301221, + "bounds": { + "minlat": 40.7586189, + "minlon": -73.9247953, + "maxlat": 40.7608441, + "maxlon": -73.9229854 + }, + "nodes": [ + 42882977, + 3570249889, + 3577895811 + ], + "geometry": [ + { "lat": 40.7608441, "lon": -73.9229854 }, + { "lat": 40.7607769, "lon": -73.9230400 }, + { "lat": 40.7586189, "lon": -73.9247953 } + ], + "tags": { + "highway": "residential", + "honorary_name": "Stanley, Kathleen & Robert Rygor Way", + "honorary_name:etymology:wikidata": "Q124790365;Q124790364;Q124790366", + "name": "34th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1263621340, + "bounds": { + "minlat": 40.7293721, + "minlon": -73.9278669, + "maxlat": 40.7298366, + "maxlon": -73.9272395 + }, + "nodes": [ + 11740106018, + 11740134671, + 11740106029, + 11740134678, + 11740106019, + 11740106020, + 11740106021, + 11740134683, + 11740106022, + 11740106049, + 11740106023, + 11740106024, + 11740106025, + 11740106026, + 11740106027, + 11740106018 + ], + "geometry": [ + { "lat": 40.7294028, "lon": -73.9278669 }, + { "lat": 40.7293939, "lon": -73.9278297 }, + { "lat": 40.7293881, "lon": -73.9278055 }, + { "lat": 40.7293796, "lon": -73.9277701 }, + { "lat": 40.7293721, "lon": -73.9277384 }, + { "lat": 40.7294557, "lon": -73.9276723 }, + { "lat": 40.7294512, "lon": -73.9276107 }, + { "lat": 40.7296718, "lon": -73.9273849 }, + { "lat": 40.7298138, "lon": -73.9272395 }, + { "lat": 40.7298232, "lon": -73.9272547 }, + { "lat": 40.7298366, "lon": -73.9272763 }, + { "lat": 40.7297330, "lon": -73.9273853 }, + { "lat": 40.7296766, "lon": -73.9274597 }, + { "lat": 40.7295645, "lon": -73.9276234 }, + { "lat": 40.7294392, "lon": -73.9278466 }, + { "lat": 40.7294028, "lon": -73.9278669 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1263983948, + "bounds": { + "minlat": 40.7059633, + "minlon": -73.9218791, + "maxlat": 40.7062213, + "maxlon": -73.9216854 + }, + "nodes": [ + 11743316659, + 11743316662, + 11743316663, + 11743316660, + 11743316661 + ], + "geometry": [ + { "lat": 40.7059633, "lon": -73.9218791 }, + { "lat": 40.7060179, "lon": -73.9218252 }, + { "lat": 40.7060449, "lon": -73.9217987 }, + { "lat": 40.7061599, "lon": -73.9216854 }, + { "lat": 40.7062213, "lon": -73.9217865 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1264538777, + "bounds": { + "minlat": 40.8568670, + "minlon": -73.9098376, + "maxlat": 40.8574544, + "maxlon": -73.9096496 + }, + "nodes": [ + 2323868465, + 3096749156, + 42769898 + ], + "geometry": [ + { "lat": 40.8568670, "lon": -73.9098376 }, + { "lat": 40.8573593, "lon": -73.9096877 }, + { "lat": 40.8574544, "lon": -73.9096496 } + ], + "tags": { + "busway:both": "lane", + "cycleway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "name_1": "University Avenue", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1264576160, + "bounds": { + "minlat": 40.7479820, + "minlon": -73.9426089, + "maxlat": 40.7480512, + "maxlon": -73.9423839 + }, + "nodes": [ + 11748559756, + 11748559757, + 11748559758, + 11748559759, + 11748559760, + 11748559761, + 11748559762, + 11748559763, + 11520102429, + 11748559738, + 11748559764, + 11748559765, + 11748559756 + ], + "geometry": [ + { "lat": 40.7479997, "lon": -73.9425817 }, + { "lat": 40.7479982, "lon": -73.9425725 }, + { "lat": 40.7479839, "lon": -73.9425012 }, + { "lat": 40.7479820, "lon": -73.9424644 }, + { "lat": 40.7479862, "lon": -73.9424336 }, + { "lat": 40.7479979, "lon": -73.9423998 }, + { "lat": 40.7480281, "lon": -73.9423903 }, + { "lat": 40.7480487, "lon": -73.9423839 }, + { "lat": 40.7480235, "lon": -73.9424523 }, + { "lat": 40.7480419, "lon": -73.9425567 }, + { "lat": 40.7480512, "lon": -73.9426089 }, + { "lat": 40.7480298, "lon": -73.9425974 }, + { "lat": 40.7479997, "lon": -73.9425817 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1264577551, + "bounds": { + "minlat": 40.7487074, + "minlon": -73.9396484, + "maxlat": 40.7490806, + "maxlon": -73.9394333 + }, + "nodes": [ + 11748585472, + 13185678094, + 11748585473, + 11748585476, + 11748585474, + 11748585475 + ], + "geometry": [ + { "lat": 40.7487074, "lon": -73.9394402 }, + { "lat": 40.7488074, "lon": -73.9394333 }, + { "lat": 40.7488803, "lon": -73.9394764 }, + { "lat": 40.7489708, "lon": -73.9395317 }, + { "lat": 40.7490154, "lon": -73.9395590 }, + { "lat": 40.7490806, "lon": -73.9396484 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1264577552, + "bounds": { + "minlat": 40.7490021, + "minlon": -73.9397181, + "maxlat": 40.7490806, + "maxlon": -73.9396484 + }, + "nodes": [ + 11748585475, + 42817470 + ], + "geometry": [ + { "lat": 40.7490806, "lon": -73.9396484 }, + { "lat": 40.7490021, "lon": -73.9397181 } + ], + "tags": { + "highway": "residential", + "name": "28th Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 1264851483, + "bounds": { + "minlat": 40.7242739, + "minlon": -73.9554538, + "maxlat": 40.7244256, + "maxlon": -73.9552285 + }, + "nodes": [ + 11750750569, + 11750750570, + 11750750571, + 9927158544, + 11750750572, + 9789402662, + 11750750573, + 11750750575, + 11750750569 + ], + "geometry": [ + { "lat": 40.7243402, "lon": -73.9552462 }, + { "lat": 40.7243500, "lon": -73.9552314 }, + { "lat": 40.7243565, "lon": -73.9552285 }, + { "lat": 40.7243805, "lon": -73.9552404 }, + { "lat": 40.7244256, "lon": -73.9552668 }, + { "lat": 40.7244185, "lon": -73.9553021 }, + { "lat": 40.7242739, "lon": -73.9554538 }, + { "lat": 40.7242945, "lon": -73.9553891 }, + { "lat": 40.7243402, "lon": -73.9552462 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1264851696, + "bounds": { + "minlat": 40.7203555, + "minlon": -73.9478421, + "maxlat": 40.7205615, + "maxlon": -73.9477046 + }, + "nodes": [ + 11750744398, + 11750744405, + 11750744399, + 9789393814, + 11750744400, + 11750744401, + 11750744402, + 11750744403, + 11750744407, + 9789424621, + 11750744398 + ], + "geometry": [ + { "lat": 40.7205615, "lon": -73.9477398 }, + { "lat": 40.7205429, "lon": -73.9477658 }, + { "lat": 40.7205357, "lon": -73.9477758 }, + { "lat": 40.7204765, "lon": -73.9478367 }, + { "lat": 40.7204670, "lon": -73.9478421 }, + { "lat": 40.7204560, "lon": -73.9478416 }, + { "lat": 40.7204451, "lon": -73.9478326 }, + { "lat": 40.7203555, "lon": -73.9477334 }, + { "lat": 40.7203557, "lon": -73.9477290 }, + { "lat": 40.7203566, "lon": -73.9477046 }, + { "lat": 40.7205615, "lon": -73.9477398 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1266830886, + "bounds": { + "minlat": 40.7380440, + "minlon": -73.9963370, + "maxlat": 40.7389765, + "maxlon": -73.9956619 + }, + "nodes": [ + 42430255, + 8429213017, + 9507816952, + 42430257, + 9507816967, + 11766549306 + ], + "geometry": [ + { "lat": 40.7380440, "lon": -73.9963370 }, + { "lat": 40.7381106, "lon": -73.9962890 }, + { "lat": 40.7386336, "lon": -73.9959117 }, + { "lat": 40.7386860, "lon": -73.9958740 }, + { "lat": 40.7387477, "lon": -73.9958289 }, + { "lat": 40.7389765, "lon": -73.9956619 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1266830887, + "bounds": { + "minlat": 40.7389765, + "minlon": -73.9956619, + "maxlat": 40.7392720, + "maxlon": -73.9954460 + }, + "nodes": [ + 11766549306, + 9683231653, + 42430259 + ], + "geometry": [ + { "lat": 40.7389765, "lon": -73.9956619 }, + { "lat": 40.7392232, "lon": -73.9954817 }, + { "lat": 40.7392720, "lon": -73.9954460 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1266830888, + "bounds": { + "minlat": 40.7392720, + "minlon": -73.9954460, + "maxlat": 40.7402918, + "maxlon": -73.9947027 + }, + "nodes": [ + 42430259, + 9683231652, + 9683231661, + 42429659, + 9683231660, + 11766549307 + ], + "geometry": [ + { "lat": 40.7392720, "lon": -73.9954460 }, + { "lat": 40.7393318, "lon": -73.9954025 }, + { "lat": 40.7398102, "lon": -73.9950542 }, + { "lat": 40.7398600, "lon": -73.9950180 }, + { "lat": 40.7399197, "lon": -73.9949744 }, + { "lat": 40.7402918, "lon": -73.9947027 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1266830889, + "bounds": { + "minlat": 40.7402918, + "minlon": -73.9947027, + "maxlat": 40.7404420, + "maxlon": -73.9945930 + }, + "nodes": [ + 11766549307, + 9683231676, + 42430263 + ], + "geometry": [ + { "lat": 40.7402918, "lon": -73.9947027 }, + { "lat": 40.7403936, "lon": -73.9946284 }, + { "lat": 40.7404420, "lon": -73.9945930 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1266830890, + "bounds": { + "minlat": 40.7404420, + "minlon": -73.9945930, + "maxlat": 40.7414608, + "maxlon": -73.9938538 + }, + "nodes": [ + 42430263, + 9683231675, + 12181309657, + 7781112284, + 42427371, + 7781160460, + 11766549308 + ], + "geometry": [ + { "lat": 40.7404420, "lon": -73.9945930 }, + { "lat": 40.7405017, "lon": -73.9945498 }, + { "lat": 40.7409389, "lon": -73.9942334 }, + { "lat": 40.7409804, "lon": -73.9942034 }, + { "lat": 40.7410305, "lon": -73.9941671 }, + { "lat": 40.7410904, "lon": -73.9941235 }, + { "lat": 40.7414608, "lon": -73.9938538 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1266830891, + "bounds": { + "minlat": 40.7414608, + "minlon": -73.9938538, + "maxlat": 40.7416288, + "maxlon": -73.9937317 + }, + "nodes": [ + 11766549308, + 12181309680, + 7781157868, + 42430265 + ], + "geometry": [ + { "lat": 40.7414608, "lon": -73.9938538 }, + { "lat": 40.7415279, "lon": -73.9938049 }, + { "lat": 40.7415616, "lon": -73.9937804 }, + { "lat": 40.7416288, "lon": -73.9937317 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1266830892, + "bounds": { + "minlat": 40.7425526, + "minlon": -73.9930588, + "maxlat": 40.7429103, + "maxlon": -73.9927979 + }, + "nodes": [ + 11766549309, + 10171337660, + 42430271 + ], + "geometry": [ + { "lat": 40.7425526, "lon": -73.9930588 }, + { "lat": 40.7428038, "lon": -73.9928755 }, + { "lat": 40.7429103, "lon": -73.9927979 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "6", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|||||right", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1266830893, + "bounds": { + "minlat": 40.7441860, + "minlon": -73.9918710, + "maxlat": 40.7448186, + "maxlon": -73.9914085 + }, + "nodes": [ + 42430274, + 10171337640, + 10171337648, + 42430277 + ], + "geometry": [ + { "lat": 40.7441860, "lon": -73.9918710 }, + { "lat": 40.7442528, "lon": -73.9918220 }, + { "lat": 40.7447527, "lon": -73.9914556 }, + { "lat": 40.7448186, "lon": -73.9914085 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1266830894, + "bounds": { + "minlat": 40.7440393, + "minlon": -73.9919775, + "maxlat": 40.7441860, + "maxlon": -73.9918710 + }, + "nodes": [ + 11766549310, + 10171337636, + 42430274 + ], + "geometry": [ + { "lat": 40.7440393, "lon": -73.9919775 }, + { "lat": 40.7441365, "lon": -73.9919068 }, + { "lat": 40.7441860, "lon": -73.9918710 } + ], + "tags": { + "alt_name:ko": "6번가", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1266906638, + "bounds": { + "minlat": 40.7388249, + "minlon": -73.9730206, + "maxlat": 40.7389932, + "maxlon": -73.9729309 + }, + "nodes": [ + 11767197705, + 42458032, + 42458034 + ], + "geometry": [ + { "lat": 40.7388249, "lon": -73.9730206 }, + { "lat": 40.7388889, "lon": -73.9729842 }, + { "lat": 40.7389932, "lon": -73.9729309 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "Fdr Drive Service Road East", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1266906639, + "bounds": { + "minlat": 40.7384701, + "minlon": -73.9732482, + "maxlat": 40.7388249, + "maxlon": -73.9730206 + }, + "nodes": [ + 11767197706, + 13716298767, + 9913607187, + 42458029, + 9141029089, + 9913607188, + 11767197705 + ], + "geometry": [ + { "lat": 40.7384701, "lon": -73.9732482 }, + { "lat": 40.7384835, "lon": -73.9732381 }, + { "lat": 40.7384927, "lon": -73.9732312 }, + { "lat": 40.7385874, "lon": -73.9731652 }, + { "lat": 40.7386844, "lon": -73.9731029 }, + { "lat": 40.7387834, "lon": -73.9730442 }, + { "lat": 40.7388249, "lon": -73.9730206 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "Fdr Drive Service Road East", + "oneway": "yes", + "oneway:bicycle": "no" + } +}, +{ + "type": "way", + "id": 1267160215, + "bounds": { + "minlat": 40.7931998, + "minlon": -73.9230503, + "maxlat": 40.7934172, + "maxlon": -73.9229460 + }, + "nodes": [ + 9153856225, + 9153856226, + 277482093, + 9153856224, + 9153856223, + 11769248220, + 277482094 + ], + "geometry": [ + { "lat": 40.7934172, "lon": -73.9229460 }, + { "lat": 40.7933715, "lon": -73.9229833 }, + { "lat": 40.7933286, "lon": -73.9230119 }, + { "lat": 40.7932921, "lon": -73.9230287 }, + { "lat": 40.7932553, "lon": -73.9230417 }, + { "lat": 40.7932430, "lon": -73.9230436 }, + { "lat": 40.7931998, "lon": -73.9230503 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "Central Road", + "oneway": "yes", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1267505309, + "bounds": { + "minlat": 40.7476329, + "minlon": -73.9884148, + "maxlat": 40.7482772, + "maxlon": -73.9882397 + }, + "nodes": [ + 11772049082, + 11772049083, + 11772049084, + 11772049085, + 11772049086, + 11772049087, + 11772049088, + 11772049089, + 11772049090, + 11772049091, + 11772049092, + 11772049093, + 11772049094, + 6223969250, + 10261412889, + 6223969246, + 11772049082 + ], + "geometry": [ + { "lat": 40.7476372, "lon": -73.9884148 }, + { "lat": 40.7476329, "lon": -73.9883902 }, + { "lat": 40.7476387, "lon": -73.9883634 }, + { "lat": 40.7476470, "lon": -73.9883494 }, + { "lat": 40.7477231, "lon": -73.9883114 }, + { "lat": 40.7477910, "lon": -73.9882906 }, + { "lat": 40.7478225, "lon": -73.9883142 }, + { "lat": 40.7480083, "lon": -73.9882820 }, + { "lat": 40.7480354, "lon": -73.9882454 }, + { "lat": 40.7480903, "lon": -73.9882397 }, + { "lat": 40.7482578, "lon": -73.9882466 }, + { "lat": 40.7482668, "lon": -73.9882518 }, + { "lat": 40.7482739, "lon": -73.9882597 }, + { "lat": 40.7482772, "lon": -73.9882690 }, + { "lat": 40.7482686, "lon": -73.9882952 }, + { "lat": 40.7476558, "lon": -73.9884062 }, + { "lat": 40.7476372, "lon": -73.9884148 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1267505842, + "bounds": { + "minlat": 40.7633820, + "minlon": -73.9829033, + "maxlat": 40.7640580, + "maxlon": -73.9825176 + }, + "nodes": [ + 42428315, + 8785244261, + 8785244242, + 42428313 + ], + "geometry": [ + { "lat": 40.7640580, "lon": -73.9825176 }, + { "lat": 40.7639965, "lon": -73.9825529 }, + { "lat": 40.7634627, "lon": -73.9828574 }, + { "lat": 40.7633820, "lon": -73.9829033 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1267505843, + "bounds": { + "minlat": 40.7640580, + "minlon": -73.9825176, + "maxlat": 40.7644791, + "maxlon": -73.9823644 + }, + "nodes": [ + 11772036952, + 8785244254, + 42428315 + ], + "geometry": [ + { "lat": 40.7644791, "lon": -73.9823644 }, + { "lat": 40.7641264, "lon": -73.9824920 }, + { "lat": 40.7640580, "lon": -73.9825176 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "3", + "lit": "yes", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1267527728, + "bounds": { + "minlat": 40.7193136, + "minlon": -73.9780573, + "maxlat": 40.7195806, + "maxlon": -73.9774149 + }, + "nodes": [ + 11772132430, + 9181587086 + ], + "geometry": [ + { "lat": 40.7195806, "lon": -73.9780573 }, + { "lat": 40.7193136, "lon": -73.9774149 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1267527729, + "bounds": { + "minlat": 40.7232023, + "minlon": -73.9898400, + "maxlat": 40.7233530, + "maxlon": -73.9893472 + }, + "nodes": [ + 11772132431, + 9181587095 + ], + "geometry": [ + { "lat": 40.7232023, "lon": -73.9893472 }, + { "lat": 40.7233530, "lon": -73.9898400 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1267527730, + "bounds": { + "minlat": 40.7232495, + "minlon": -73.9902968, + "maxlat": 40.7233719, + "maxlon": -73.9898859 + }, + "nodes": [ + 1918039896, + 5783028389, + 11772132432 + ], + "geometry": [ + { "lat": 40.7233719, "lon": -73.9902968 }, + { "lat": 40.7233465, "lon": -73.9902093 }, + { "lat": 40.7232495, "lon": -73.9898859 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1268093037, + "bounds": { + "minlat": 40.7992557, + "minlon": -73.9433693, + "maxlat": 40.7993612, + "maxlon": -73.9431029 + }, + "nodes": [ + 42458342, + 596776497 + ], + "geometry": [ + { "lat": 40.7992557, "lon": -73.9431029 }, + { "lat": 40.7993612, "lon": -73.9433693 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 116th Street", + "name:ru": "Восточная 116-я стрит", + "surface": "asphalt", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1268093038, + "bounds": { + "minlat": 40.7992557, + "minlon": -73.9431029, + "maxlat": 40.7999317, + "maxlon": -73.9426190 + }, + "nodes": [ + 42458342, + 11296237245, + 10173037241, + 42449833 + ], + "geometry": [ + { "lat": 40.7992557, "lon": -73.9431029 }, + { "lat": 40.7993572, "lon": -73.9430302 }, + { "lat": 40.7998856, "lon": -73.9426521 }, + { "lat": 40.7999317, "lon": -73.9426190 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1268097052, + "bounds": { + "minlat": 40.7163682, + "minlon": -73.9969875, + "maxlat": 40.7165497, + "maxlon": -73.9966190 + }, + "nodes": [ + 42440804, + 11496014212, + 11496014210, + 11496014209, + 11777832490 + ], + "geometry": [ + { "lat": 40.7165497, "lon": -73.9969875 }, + { "lat": 40.7165097, "lon": -73.9969429 }, + { "lat": 40.7164861, "lon": -73.9969164 }, + { "lat": 40.7164666, "lon": -73.9968842 }, + { "lat": 40.7163682, "lon": -73.9966190 } + ], + "tags": { + "bicycle": "yes", + "expressway": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1268207913, + "bounds": { + "minlat": 40.7415298, + "minlon": -73.9781701, + "maxlat": 40.7416552, + "maxlon": -73.9778878 + }, + "nodes": [ + 11778771889, + 7640871286, + 42436754 + ], + "geometry": [ + { "lat": 40.7415298, "lon": -73.9778878 }, + { "lat": 40.7415877, "lon": -73.9780182 }, + { "lat": 40.7416552, "lon": -73.9781701 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 29th Street", + "name:ru": "Восточная 29-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1268207914, + "bounds": { + "minlat": 40.7501141, + "minlon": -73.9986119, + "maxlat": 40.7502754, + "maxlon": -73.9982241 + }, + "nodes": [ + 11778771890, + 10171484167, + 5545401594 + ], + "geometry": [ + { "lat": 40.7501141, "lon": -73.9982241 }, + { "lat": 40.7502098, "lon": -73.9984477 }, + { "lat": 40.7502754, "lon": -73.9986119 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1268207915, + "bounds": { + "minlat": 40.7533707, + "minlon": -74.0065174, + "maxlat": 40.7536056, + "maxlon": -74.0059515 + }, + "nodes": [ + 6856689988, + 12382008655, + 11133516786, + 9143574639 + ], + "geometry": [ + { "lat": 40.7533707, "lon": -74.0059515 }, + { "lat": 40.7533952, "lon": -74.0060085 }, + { "lat": 40.7535396, "lon": -74.0063502 }, + { "lat": 40.7536056, "lon": -74.0065174 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 29th Street", + "name:ru": "Западная 29-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1268823799, + "bounds": { + "minlat": 40.7265843, + "minlon": -73.9615961, + "maxlat": 40.7269620, + "maxlon": -73.9613327 + }, + "nodes": [ + 11249691301, + 11784585680, + 11249691300, + 11784543539 + ], + "geometry": [ + { "lat": 40.7269620, "lon": -73.9613327 }, + { "lat": 40.7269090, "lon": -73.9613717 }, + { "lat": 40.7266724, "lon": -73.9615352 }, + { "lat": 40.7265843, "lon": -73.9615961 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1268823804, + "bounds": { + "minlat": 40.7267359, + "minlon": -73.9594864, + "maxlat": 40.7268568, + "maxlon": -73.9594263 + }, + "nodes": [ + 11784543560, + 11784543558, + 11784543559 + ], + "geometry": [ + { "lat": 40.7268568, "lon": -73.9594864 }, + { "lat": 40.7267674, "lon": -73.9594419 }, + { "lat": 40.7267359, "lon": -73.9594263 } + ], + "tags": { + "highway": "pedestrian", + "name": "Wharf Plaza" + } +}, +{ + "type": "way", + "id": 1268823805, + "bounds": { + "minlat": 40.7261318, + "minlon": -73.9615464, + "maxlat": 40.7261959, + "maxlon": -73.9613116 + }, + "nodes": [ + 11784543567, + 11784543565 + ], + "geometry": [ + { "lat": 40.7261318, "lon": -73.9615464 }, + { "lat": 40.7261959, "lon": -73.9613116 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1268823806, + "bounds": { + "minlat": 40.7260101, + "minlon": -73.9615464, + "maxlat": 40.7265646, + "maxlon": -73.9614824 + }, + "nodes": [ + 11784585669, + 11784543568, + 11784543567, + 11784543566 + ], + "geometry": [ + { "lat": 40.7265646, "lon": -73.9614898 }, + { "lat": 40.7265108, "lon": -73.9615169 }, + { "lat": 40.7261318, "lon": -73.9615464 }, + { "lat": 40.7260101, "lon": -73.9614824 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1269117780, + "bounds": { + "minlat": 40.8614332, + "minlon": -73.9246410, + "maxlat": 40.8614596, + "maxlon": -73.9246251 + }, + "nodes": [ + 1764400302, + 6882378484 + ], + "geometry": [ + { "lat": 40.8614596, "lon": -73.9246410 }, + { "lat": 40.8614332, "lon": -73.9246251 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "name": "Dyckman Street", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "turn:lanes:backward": "left|", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 1269117781, + "bounds": { + "minlat": 40.8616359, + "minlon": -73.9251464, + "maxlat": 40.8622269, + "maxlon": -73.9247646 + }, + "nodes": [ + 11787438866, + 4321038139, + 1764400286 + ], + "geometry": [ + { "lat": 40.8622269, "lon": -73.9251464 }, + { "lat": 40.8617105, "lon": -73.9248126 }, + { "lat": 40.8616359, "lon": -73.9247646 } + ], + "tags": { + "alt_name": "West 200th Street", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Dyckman Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:alt_name_base": "W 200th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "turn:lanes:forward": "through|left", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 1269117782, + "bounds": { + "minlat": 40.8622269, + "minlon": -73.9253818, + "maxlat": 40.8625949, + "maxlon": -73.9251464 + }, + "nodes": [ + 42432789, + 7133975913, + 11787438866 + ], + "geometry": [ + { "lat": 40.8625949, "lon": -73.9253818 }, + { "lat": 40.8625277, "lon": -73.9253386 }, + { "lat": 40.8622269, "lon": -73.9251464 } + ], + "tags": { + "alt_name": "West 200th Street", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Dyckman Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:alt_name_base": "W 200th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 1269117783, + "bounds": { + "minlat": 40.8625949, + "minlon": -73.9256837, + "maxlat": 40.8630655, + "maxlon": -73.9253818 + }, + "nodes": [ + 11787438867, + 7271168435, + 7133975914, + 42432789 + ], + "geometry": [ + { "lat": 40.8630655, "lon": -73.9256837 }, + { "lat": 40.8628811, "lon": -73.9255660 }, + { "lat": 40.8626680, "lon": -73.9254289 }, + { "lat": 40.8625949, "lon": -73.9253818 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Dyckman Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "turn:lanes:forward": "left|", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 1269117784, + "bounds": { + "minlat": 40.8630655, + "minlon": -73.9260124, + "maxlat": 40.8635745, + "maxlon": -73.9256837 + }, + "nodes": [ + 42427859, + 4321038144, + 11787438867 + ], + "geometry": [ + { "lat": 40.8635745, "lon": -73.9260124 }, + { "lat": 40.8634860, "lon": -73.9259554 }, + { "lat": 40.8630655, "lon": -73.9256837 } + ], + "tags": { + "alt_name": "West 200th Street", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Dyckman Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:alt_name_base": "W 200th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "turn:lanes:backward": "left|", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 1269117785, + "bounds": { + "minlat": 40.8635745, + "minlon": -73.9264026, + "maxlat": 40.8641808, + "maxlon": -73.9260124 + }, + "nodes": [ + 11787438868, + 4321038149, + 42427859 + ], + "geometry": [ + { "lat": 40.8641808, "lon": -73.9264026 }, + { "lat": 40.8636805, "lon": -73.9260806 }, + { "lat": 40.8635745, "lon": -73.9260124 } + ], + "tags": { + "alt_name": "West 200th Street", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Dyckman Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:alt_name_base": "W 200th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "turn:lanes:forward": "left|", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 1269117786, + "bounds": { + "minlat": 40.8641808, + "minlon": -73.9266364, + "maxlat": 40.8645441, + "maxlon": -73.9264026 + }, + "nodes": [ + 42432795, + 9561395296, + 11787438868 + ], + "geometry": [ + { "lat": 40.8645441, "lon": -73.9266364 }, + { "lat": 40.8644706, "lon": -73.9265891 }, + { "lat": 40.8641808, "lon": -73.9264026 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "name": "Dyckman Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 1269117787, + "bounds": { + "minlat": 40.8645441, + "minlon": -73.9269528, + "maxlat": 40.8650356, + "maxlon": -73.9266364 + }, + "nodes": [ + 11787450969, + 9561395297, + 42432795 + ], + "geometry": [ + { "lat": 40.8650356, "lon": -73.9269528 }, + { "lat": 40.8646177, "lon": -73.9266838 }, + { "lat": 40.8645441, "lon": -73.9266364 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Dyckman Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Dyckman", + "tiger:name_type": "St", + "turn:lanes:forward": "left|", + "wikidata": "Q5318531", + "wikipedia": "en:Dyckman Street" + } +}, +{ + "type": "way", + "id": 1269117788, + "bounds": { + "minlat": 40.8655390, + "minlon": -73.9272475, + "maxlat": 40.8657937, + "maxlon": -73.9265267 + }, + "nodes": [ + 11787450970, + 9561395279, + 13320061237 + ], + "geometry": [ + { "lat": 40.8657937, "lon": -73.9265267 }, + { "lat": 40.8655693, "lon": -73.9271619 }, + { "lat": 40.8655390, "lon": -73.9272475 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:zip_left": "10463", + "tiger:zip_right": "10034", + "turn:lanes": "through|slight_right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1269147813, + "bounds": { + "minlat": 40.8435809, + "minlon": -73.9132731, + "maxlat": 40.8437410, + "maxlon": -73.9130839 + }, + "nodes": [ + 2408354091, + 2408354094, + 13017674377, + 2408354097 + ], + "geometry": [ + { "lat": 40.8437410, "lon": -73.9132731 }, + { "lat": 40.8436478, "lon": -73.9131714 }, + { "lat": 40.8436319, "lon": -73.9131483 }, + { "lat": 40.8435809, "lon": -73.9130839 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "East Mount Eden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Eden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1269147814, + "bounds": { + "minlat": 40.8436965, + "minlon": -73.9132731, + "maxlat": 40.8437410, + "maxlon": -73.9130013 + }, + "nodes": [ + 42733792, + 13017674375, + 2408354096, + 2408354091 + ], + "geometry": [ + { "lat": 40.8436965, "lon": -73.9130013 }, + { "lat": 40.8437155, "lon": -73.9130879 }, + { "lat": 40.8437225, "lon": -73.9131199 }, + { "lat": 40.8437410, "lon": -73.9132731 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "East Mount Eden Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Eden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1269147815, + "bounds": { + "minlat": 40.8431338, + "minlon": -73.9117338, + "maxlat": 40.8432022, + "maxlon": -73.9109662 + }, + "nodes": [ + 2408354098, + 12044615784, + 12044615785, + 12044615787, + 12044615786, + 10126919631, + 12044615788, + 12044615789, + 7823245728, + 12044615790, + 2408354081 + ], + "geometry": [ + { "lat": 40.8431338, "lon": -73.9109662 }, + { "lat": 40.8431379, "lon": -73.9110604 }, + { "lat": 40.8431420, "lon": -73.9111023 }, + { "lat": 40.8431507, "lon": -73.9111632 }, + { "lat": 40.8431546, "lon": -73.9112072 }, + { "lat": 40.8431582, "lon": -73.9112899 }, + { "lat": 40.8431747, "lon": -73.9115709 }, + { "lat": 40.8431780, "lon": -73.9116085 }, + { "lat": 40.8431832, "lon": -73.9116472 }, + { "lat": 40.8431910, "lon": -73.9116903 }, + { "lat": 40.8432022, "lon": -73.9117338 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "name": "Mount Eden Parkway", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1269147818, + "bounds": { + "minlat": 40.8399650, + "minlon": -73.9093940, + "maxlat": 40.8412540, + "maxlon": -73.9090655 + }, + "nodes": [ + 42748484, + 10126901671, + 10126901670, + 42735870 + ], + "geometry": [ + { "lat": 40.8399650, "lon": -73.9090655 }, + { "lat": 40.8409794, "lon": -73.9093240 }, + { "lat": 40.8410279, "lon": -73.9093364 }, + { "lat": 40.8412540, "lon": -73.9093940 } + ], + "tags": { + "cycleway": "shared_lane", + "cycleway:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Findlay Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller;Findlay", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457;10456", + "tiger:zip_left_1": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1269147819, + "bounds": { + "minlat": 40.8427654, + "minlon": -73.9095948, + "maxlat": 40.8430704, + "maxlon": -73.9095380 + }, + "nodes": [ + 42735873, + 12737767473, + 12737767461, + 2408354100 + ], + "geometry": [ + { "lat": 40.8427654, "lon": -73.9095948 }, + { "lat": 40.8428509, "lon": -73.9095789 }, + { "lat": 40.8429895, "lon": -73.9095531 }, + { "lat": 40.8430704, "lon": -73.9095380 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "name": "Morris Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 1269307863, + "bounds": { + "minlat": 40.8128545, + "minlon": -73.9907843, + "maxlat": 40.8129917, + "maxlon": -73.9906879 + }, + "nodes": [ + 10926790015, + 10926790019, + 10926790016, + 11789593168, + 11789651969 + ], + "geometry": [ + { "lat": 40.8128545, "lon": -73.9906879 }, + { "lat": 40.8128962, "lon": -73.9907356 }, + { "lat": 40.8129062, "lon": -73.9907843 }, + { "lat": 40.8129545, "lon": -73.9907570 }, + { "lat": 40.8129917, "lon": -73.9907427 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1269307864, + "bounds": { + "minlat": 40.8129917, + "minlon": -73.9907427, + "maxlat": 40.8130332, + "maxlon": -73.9907273 + }, + "nodes": [ + 11789651969, + 11789651970 + ], + "geometry": [ + { "lat": 40.8129917, "lon": -73.9907427 }, + { "lat": 40.8130332, "lon": -73.9907273 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1270251789, + "bounds": { + "minlat": 40.8444989, + "minlon": -73.9226089, + "maxlat": 40.8447076, + "maxlon": -73.9225219 + }, + "nodes": [ + 595757763, + 13181365217, + 11794372937 + ], + "geometry": [ + { "lat": 40.8444989, "lon": -73.9226089 }, + { "lat": 40.8445888, "lon": -73.9225714 }, + { "lat": 40.8447076, "lon": -73.9225219 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "bridge": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "layer": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "left|none|none|merge_to_left" + } +}, +{ + "type": "way", + "id": 1270251790, + "bounds": { + "minlat": 40.8488861, + "minlon": -73.9178534, + "maxlat": 40.8492002, + "maxlon": -73.9174402 + }, + "nodes": [ + 2907939238, + 11794372938 + ], + "geometry": [ + { "lat": 40.8492002, "lon": -73.9174402 }, + { "lat": 40.8488861, "lon": -73.9178534 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1270251791, + "bounds": { + "minlat": 40.8487072, + "minlon": -73.9177855, + "maxlat": 40.8490814, + "maxlon": -73.9172851 + }, + "nodes": [ + 11794372939, + 42744694 + ], + "geometry": [ + { "lat": 40.8487072, "lon": -73.9177855 }, + { "lat": 40.8490814, "lon": -73.9172851 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1270251792, + "bounds": { + "minlat": 40.8548220, + "minlon": -73.9111960, + "maxlat": 40.8554589, + "maxlon": -73.9106222 + }, + "nodes": [ + 42743984, + 2899134417, + 11794372941, + 11794372942 + ], + "geometry": [ + { "lat": 40.8548220, "lon": -73.9111960 }, + { "lat": 40.8549027, "lon": -73.9111243 }, + { "lat": 40.8552847, "lon": -73.9107618 }, + { "lat": 40.8554589, "lon": -73.9106222 } + ], + "tags": { + "busway:both": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "bump", + "cycleway:right:traffic_mode": "bus", + "cycleway:right:width": "8'", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:bus": "2", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "name_1": "University Avenue", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1271284109, + "bounds": { + "minlat": 40.8016032, + "minlon": -73.9332913, + "maxlat": 40.8017671, + "maxlon": -73.9331674 + }, + "nodes": [ + 11805832604, + 11805832605, + 11805832606, + 11805832607 + ], + "geometry": [ + { "lat": 40.8017671, "lon": -73.9331674 }, + { "lat": 40.8017113, "lon": -73.9332096 }, + { "lat": 40.8016782, "lon": -73.9332346 }, + { "lat": 40.8016032, "lon": -73.9332913 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1271284110, + "bounds": { + "minlat": 40.8014810, + "minlon": -73.9330747, + "maxlat": 40.8015742, + "maxlon": -73.9329074 + }, + "nodes": [ + 11805832608, + 11805832609, + 11805832610, + 11805832611, + 11805832612, + 11805832613, + 11805832608 + ], + "geometry": [ + { "lat": 40.8015742, "lon": -73.9330501 }, + { "lat": 40.8015456, "lon": -73.9329809 }, + { "lat": 40.8015152, "lon": -73.9329074 }, + { "lat": 40.8014810, "lon": -73.9329321 }, + { "lat": 40.8015114, "lon": -73.9330055 }, + { "lat": 40.8015401, "lon": -73.9330747 }, + { "lat": 40.8015742, "lon": -73.9330501 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1271518871, + "bounds": { + "minlat": 40.8006650, + "minlon": -73.9464620, + "maxlat": 40.8010861, + "maxlon": -73.9461545 + }, + "nodes": [ + 11807690971, + 10167137549, + 42437174 + ], + "geometry": [ + { "lat": 40.8010861, "lon": -73.9461545 }, + { "lat": 40.8007781, "lon": -73.9463795 }, + { "lat": 40.8006650, "lon": -73.9464620 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "3", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "oneway:bicycle": "no", + "turn:lanes": "left||", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1271518872, + "bounds": { + "minlat": 40.8010861, + "minlon": -73.9461545, + "maxlat": 40.8019710, + "maxlon": -73.9455080 + }, + "nodes": [ + 42439485, + 10167137534, + 10167137541, + 42449828, + 10167137542, + 11807690971 + ], + "geometry": [ + { "lat": 40.8019710, "lon": -73.9455080 }, + { "lat": 40.8019138, "lon": -73.9455492 }, + { "lat": 40.8014038, "lon": -73.9459219 }, + { "lat": 40.8013420, "lon": -73.9459680 }, + { "lat": 40.8012832, "lon": -73.9460105 }, + { "lat": 40.8010861, "lon": -73.9461545 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "oneway:bicycle": "no", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1271518873, + "bounds": { + "minlat": 40.8019710, + "minlon": -73.9455080, + "maxlat": 40.8023524, + "maxlon": -73.9452302 + }, + "nodes": [ + 11807690972, + 10167137533, + 42439485 + ], + "geometry": [ + { "lat": 40.8023524, "lon": -73.9452302 }, + { "lat": 40.8020345, "lon": -73.9454605 }, + { "lat": 40.8019710, "lon": -73.9455080 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "3", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "official_name": "Fifth Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "short_name": "5th Ave", + "turn:lanes": "left||", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1271523169, + "bounds": { + "minlat": 40.7724211, + "minlon": -73.9787387, + "maxlat": 40.7727252, + "maxlon": -73.9785194 + }, + "nodes": [ + 7802856352, + 7802856370, + 7802856343, + 11807683166 + ], + "geometry": [ + { "lat": 40.7724211, "lon": -73.9787387 }, + { "lat": 40.7724524, "lon": -73.9787167 }, + { "lat": 40.7725006, "lon": -73.9786834 }, + { "lat": 40.7727252, "lon": -73.9785194 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:right": "no", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523170, + "bounds": { + "minlat": 40.7727252, + "minlon": -73.9785194, + "maxlat": 40.7730391, + "maxlon": -73.9782890 + }, + "nodes": [ + 11807683166, + 7802856373, + 7802856341 + ], + "geometry": [ + { "lat": 40.7727252, "lon": -73.9785194 }, + { "lat": 40.7729846, "lon": -73.9783281 }, + { "lat": 40.7730391, "lon": -73.9782890 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:right": "no", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523171, + "bounds": { + "minlat": 40.7746615, + "minlon": -73.9771081, + "maxlat": 40.7762266, + "maxlon": -73.9759630 + }, + "nodes": [ + 11807683167, + 7802856347, + 7802856356, + 7802856358, + 7802856357, + 42435272, + 7802856350, + 8768040144, + 7106318844, + 42435275 + ], + "geometry": [ + { "lat": 40.7746615, "lon": -73.9771081 }, + { "lat": 40.7748623, "lon": -73.9769627 }, + { "lat": 40.7749199, "lon": -73.9769198 }, + { "lat": 40.7749753, "lon": -73.9768787 }, + { "lat": 40.7754862, "lon": -73.9765055 }, + { "lat": 40.7755427, "lon": -73.9764626 }, + { "lat": 40.7755995, "lon": -73.9764204 }, + { "lat": 40.7760958, "lon": -73.9760603 }, + { "lat": 40.7761359, "lon": -73.9760303 }, + { "lat": 40.7762266, "lon": -73.9759630 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:right": "no", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523172, + "bounds": { + "minlat": 40.7742930, + "minlon": -73.9773736, + "maxlat": 40.7746615, + "maxlon": -73.9771081 + }, + "nodes": [ + 7802856372, + 7802856374, + 11807683167 + ], + "geometry": [ + { "lat": 40.7742930, "lon": -73.9773736 }, + { "lat": 40.7743496, "lon": -73.9773339 }, + { "lat": 40.7746615, "lon": -73.9771081 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:right": "no", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523173, + "bounds": { + "minlat": 40.7762266, + "minlon": -73.9759630, + "maxlat": 40.7765182, + "maxlon": -73.9757504 + }, + "nodes": [ + 42435275, + 7106318843, + 11807683168 + ], + "geometry": [ + { "lat": 40.7762266, "lon": -73.9759630 }, + { "lat": 40.7763121, "lon": -73.9758997 }, + { "lat": 40.7765182, "lon": -73.9757504 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:right": "no", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523174, + "bounds": { + "minlat": 40.7785507, + "minlon": -73.9742700, + "maxlat": 40.7794865, + "maxlon": -73.9735934 + }, + "nodes": [ + 11807757969, + 7784867908, + 42435301, + 7784867907, + 8768040145, + 7104620813, + 42424225 + ], + "geometry": [ + { "lat": 40.7785507, "lon": -73.9742700 }, + { "lat": 40.7787616, "lon": -73.9741176 }, + { "lat": 40.7788134, "lon": -73.9740803 }, + { "lat": 40.7788725, "lon": -73.9740373 }, + { "lat": 40.7793764, "lon": -73.9736737 }, + { "lat": 40.7794104, "lon": -73.9736486 }, + { "lat": 40.7794865, "lon": -73.9735934 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:lane:right": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523175, + "bounds": { + "minlat": 40.7781744, + "minlon": -73.9745417, + "maxlat": 40.7785507, + "maxlon": -73.9742700 + }, + "nodes": [ + 42435295, + 7784867900, + 11807757969 + ], + "geometry": [ + { "lat": 40.7781744, "lon": -73.9745417 }, + { "lat": 40.7782297, "lon": -73.9745019 }, + { "lat": 40.7785507, "lon": -73.9742700 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:lane:right": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523176, + "bounds": { + "minlat": 40.7794865, + "minlon": -73.9735934, + "maxlat": 40.7798151, + "maxlon": -73.9733542 + }, + "nodes": [ + 42424225, + 7104620786, + 11807757970 + ], + "geometry": [ + { "lat": 40.7794865, "lon": -73.9735934 }, + { "lat": 40.7795660, "lon": -73.9735358 }, + { "lat": 40.7798151, "lon": -73.9733542 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523177, + "bounds": { + "minlat": 40.7809834, + "minlon": -73.9725008, + "maxlat": 40.7813224, + "maxlon": -73.9722516 + }, + "nodes": [ + 11807757971, + 11807757972 + ], + "geometry": [ + { "lat": 40.7809834, "lon": -73.9725008 }, + { "lat": 40.7813224, "lon": -73.9722516 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523178, + "bounds": { + "minlat": 40.7813224, + "minlon": -73.9722516, + "maxlat": 40.7816180, + "maxlon": -73.9720367 + }, + "nodes": [ + 11807757972, + 9915712168 + ], + "geometry": [ + { "lat": 40.7813224, "lon": -73.9722516 }, + { "lat": 40.7816180, "lon": -73.9720367 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523179, + "bounds": { + "minlat": 40.7824229, + "minlon": -73.9714456, + "maxlat": 40.7827163, + "maxlon": -73.9712370 + }, + "nodes": [ + 11807757973, + 9915712169, + 7784867915, + 42433564 + ], + "geometry": [ + { "lat": 40.7824229, "lon": -73.9714456 }, + { "lat": 40.7826372, "lon": -73.9712933 }, + { "lat": 40.7826689, "lon": -73.9712708 }, + { "lat": 40.7827163, "lon": -73.9712370 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:left": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523180, + "bounds": { + "minlat": 40.7842861, + "minlon": -73.9700939, + "maxlat": 40.7846230, + "maxlon": -73.9698495 + }, + "nodes": [ + 11807757974, + 7784826631, + 42424851 + ], + "geometry": [ + { "lat": 40.7842861, "lon": -73.9700939 }, + { "lat": 40.7845721, "lon": -73.9698866 }, + { "lat": 40.7846230, "lon": -73.9698495 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through;left|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523181, + "bounds": { + "minlat": 40.7839869, + "minlon": -73.9703125, + "maxlat": 40.7842861, + "maxlon": -73.9700939 + }, + "nodes": [ + 42421800, + 7784867925, + 11807757974 + ], + "geometry": [ + { "lat": 40.7839869, "lon": -73.9703125 }, + { "lat": 40.7840515, "lon": -73.9702639 }, + { "lat": 40.7842861, "lon": -73.9700939 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:left": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through;left|right", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523182, + "bounds": { + "minlat": 40.7869227, + "minlon": -73.9681638, + "maxlat": 40.7878081, + "maxlon": -73.9675140 + }, + "nodes": [ + 11807757975, + 9796827009, + 42421993, + 9796827008, + 7123525299 + ], + "geometry": [ + { "lat": 40.7869227, "lon": -73.9681638 }, + { "lat": 40.7871816, "lon": -73.9679789 }, + { "lat": 40.7872350, "lon": -73.9679404 }, + { "lat": 40.7872934, "lon": -73.9678961 }, + { "lat": 40.7878081, "lon": -73.9675140 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523183, + "bounds": { + "minlat": 40.7866050, + "minlon": -73.9683927, + "maxlat": 40.7869227, + "maxlon": -73.9681638 + }, + "nodes": [ + 7106818627, + 9796827006, + 11807757975 + ], + "geometry": [ + { "lat": 40.7866050, "lon": -73.9683927 }, + { "lat": 40.7866638, "lon": -73.9683486 }, + { "lat": 40.7869227, "lon": -73.9681638 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523184, + "bounds": { + "minlat": 40.7878081, + "minlon": -73.9675140, + "maxlat": 40.7878716, + "maxlon": -73.9674683 + }, + "nodes": [ + 7123525299, + 42431447 + ], + "geometry": [ + { "lat": 40.7878081, "lon": -73.9675140 }, + { "lat": 40.7878716, "lon": -73.9674683 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523185, + "bounds": { + "minlat": 40.7878716, + "minlon": -73.9674683, + "maxlat": 40.7881763, + "maxlon": -73.9672511 + }, + "nodes": [ + 42431447, + 7123525303, + 11807757976 + ], + "geometry": [ + { "lat": 40.7878716, "lon": -73.9674683 }, + { "lat": 40.7879373, "lon": -73.9674218 }, + { "lat": 40.7881763, "lon": -73.9672511 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523186, + "bounds": { + "minlat": 40.7894158, + "minlon": -73.9663475, + "maxlat": 40.7897447, + "maxlon": -73.9661041 + }, + "nodes": [ + 11807757977, + 7123525292, + 42435319 + ], + "geometry": [ + { "lat": 40.7894158, "lon": -73.9663475 }, + { "lat": 40.7896838, "lon": -73.9661503 }, + { "lat": 40.7897447, "lon": -73.9661041 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523187, + "bounds": { + "minlat": 40.7891218, + "minlon": -73.9665628, + "maxlat": 40.7894158, + "maxlon": -73.9663475 + }, + "nodes": [ + 42435317, + 7123525290, + 11807757977 + ], + "geometry": [ + { "lat": 40.7891218, "lon": -73.9665628 }, + { "lat": 40.7891735, "lon": -73.9665257 }, + { "lat": 40.7894158, "lon": -73.9663475 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523188, + "bounds": { + "minlat": 40.7906542, + "minlon": -73.9654397, + "maxlat": 40.7909985, + "maxlon": -73.9651883 + }, + "nodes": [ + 11807757978, + 7123525312, + 42435328 + ], + "geometry": [ + { "lat": 40.7906542, "lon": -73.9654397 }, + { "lat": 40.7909467, "lon": -73.9652262 }, + { "lat": 40.7909985, "lon": -73.9651883 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523189, + "bounds": { + "minlat": 40.7903702, + "minlon": -73.9656483, + "maxlat": 40.7906542, + "maxlon": -73.9654397 + }, + "nodes": [ + 42435323, + 7123525322, + 11807757978 + ], + "geometry": [ + { "lat": 40.7903702, "lon": -73.9656483 }, + { "lat": 40.7904251, "lon": -73.9656070 }, + { "lat": 40.7906542, "lon": -73.9654397 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523190, + "bounds": { + "minlat": 40.7916758, + "minlon": -73.9646940, + "maxlat": 40.7920130, + "maxlon": -73.9644503 + }, + "nodes": [ + 42424439, + 7108033377, + 7058748619 + ], + "geometry": [ + { "lat": 40.7916758, "lon": -73.9646940 }, + { "lat": 40.7917586, "lon": -73.9646332 }, + { "lat": 40.7920130, "lon": -73.9644503 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523191, + "bounds": { + "minlat": 40.7923773, + "minlon": -73.9641772, + "maxlat": 40.7942085, + "maxlon": -73.9628541 + }, + "nodes": [ + 42425232, + 7779666015, + 7779666008, + 7779666009, + 7779666003, + 42425570 + ], + "geometry": [ + { "lat": 40.7923773, "lon": -73.9641772 }, + { "lat": 40.7924618, "lon": -73.9641120 }, + { "lat": 40.7930356, "lon": -73.9637016 }, + { "lat": 40.7936002, "lon": -73.9632881 }, + { "lat": 40.7941266, "lon": -73.9629129 }, + { "lat": 40.7942085, "lon": -73.9628541 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523192, + "bounds": { + "minlat": 40.7942085, + "minlon": -73.9628541, + "maxlat": 40.7945330, + "maxlon": -73.9626160 + }, + "nodes": [ + 42425570, + 7779666012, + 11807757979 + ], + "geometry": [ + { "lat": 40.7942085, "lon": -73.9628541 }, + { "lat": 40.7942922, "lon": -73.9627929 }, + { "lat": 40.7945330, "lon": -73.9626160 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523193, + "bounds": { + "minlat": 40.7945330, + "minlon": -73.9626160, + "maxlat": 40.7954892, + "maxlon": -73.9619156 + }, + "nodes": [ + 11807757979, + 7083286381, + 42435331, + 7083286371, + 11263350543, + 42435333 + ], + "geometry": [ + { "lat": 40.7945330, "lon": -73.9626160 }, + { "lat": 40.7948087, "lon": -73.9624134 }, + { "lat": 40.7948590, "lon": -73.9623766 }, + { "lat": 40.7949181, "lon": -73.9623335 }, + { "lat": 40.7954293, "lon": -73.9619594 }, + { "lat": 40.7954892, "lon": -73.9619156 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk": "both", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523194, + "bounds": { + "minlat": 40.7954892, + "minlon": -73.9619156, + "maxlat": 40.7957863, + "maxlon": -73.9616981 + }, + "nodes": [ + 42435333, + 11263350544, + 11807757980 + ], + "geometry": [ + { "lat": 40.7954892, "lon": -73.9619156 }, + { "lat": 40.7955411, "lon": -73.9618776 }, + { "lat": 40.7957863, "lon": -73.9616981 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "oneway": "no", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk": "both", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523195, + "bounds": { + "minlat": 40.7957863, + "minlon": -73.9616981, + "maxlat": 40.7967492, + "maxlon": -73.9609910 + }, + "nodes": [ + 11807757980, + 7801840676, + 7801840675, + 11263350551, + 11807757985, + 42435336 + ], + "geometry": [ + { "lat": 40.7957863, "lon": -73.9616981 }, + { "lat": 40.7960674, "lon": -73.9614924 }, + { "lat": 40.7961189, "lon": -73.9614548 }, + { "lat": 40.7961717, "lon": -73.9614162 }, + { "lat": 40.7966891, "lon": -73.9610371 }, + { "lat": 40.7967492, "lon": -73.9609910 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk": "both", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523196, + "bounds": { + "minlat": 40.7967492, + "minlon": -73.9609910, + "maxlat": 40.7970192, + "maxlon": -73.9607820 + }, + "nodes": [ + 42435336, + 7784826637, + 11807757981 + ], + "geometry": [ + { "lat": 40.7967492, "lon": -73.9609910 }, + { "lat": 40.7968042, "lon": -73.9609520 }, + { "lat": 40.7970192, "lon": -73.9607820 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "oneway": "no", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk": "both", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523197, + "bounds": { + "minlat": 40.7983246, + "minlon": -73.9598317, + "maxlat": 40.7993567, + "maxlon": -73.9590861 + }, + "nodes": [ + 11807757983, + 11263342832, + 42432736, + 11263342833, + 761849081, + 42435341 + ], + "geometry": [ + { "lat": 40.7983246, "lon": -73.9598317 }, + { "lat": 40.7986716, "lon": -73.9595871 }, + { "lat": 40.7987264, "lon": -73.9595472 }, + { "lat": 40.7987842, "lon": -73.9595049 }, + { "lat": 40.7993018, "lon": -73.9591262 }, + { "lat": 40.7993567, "lon": -73.9590861 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523198, + "bounds": { + "minlat": 40.7980478, + "minlon": -73.9600437, + "maxlat": 40.7981534, + "maxlon": -73.9599664 + }, + "nodes": [ + 42421728, + 7784826655 + ], + "geometry": [ + { "lat": 40.7980478, "lon": -73.9600437 }, + { "lat": 40.7981534, "lon": -73.9599664 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271523199, + "bounds": { + "minlat": 40.7997016, + "minlon": -73.9588337, + "maxlat": 40.7999836, + "maxlon": -73.9586275 + }, + "nodes": [ + 11807757984, + 10171241040, + 42435343 + ], + "geometry": [ + { "lat": 40.7997016, "lon": -73.9588337 }, + { "lat": 40.7999364, "lon": -73.9586620 }, + { "lat": 40.7999836, "lon": -73.9586275 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271546069, + "bounds": { + "minlat": 40.7285996, + "minlon": -74.0071019, + "maxlat": 40.7287662, + "maxlon": -74.0070745 + }, + "nodes": [ + 11808021331, + 8429031597, + 42436371 + ], + "geometry": [ + { "lat": 40.7285996, "lon": -74.0071019 }, + { "lat": 40.7286961, "lon": -74.0070860 }, + { "lat": 40.7287662, "lon": -74.0070745 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271580015, + "bounds": { + "minlat": 40.7204530, + "minlon": -74.0066917, + "maxlat": 40.7206168, + "maxlon": -74.0066622 + }, + "nodes": [ + 11808317373, + 8304498187, + 42434845 + ], + "geometry": [ + { "lat": 40.7206168, "lon": -74.0066622 }, + { "lat": 40.7205092, "lon": -74.0066799 }, + { "lat": 40.7204530, "lon": -74.0066917 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|none|none", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 1271581109, + "bounds": { + "minlat": 40.7212357, + "minlon": -73.9974771, + "maxlat": 40.7214592, + "maxlon": -73.9973963 + }, + "nodes": [ + 11808312026, + 12187436352, + 5152337872, + 42430041 + ], + "geometry": [ + { "lat": 40.7212357, "lon": -73.9974771 }, + { "lat": 40.7213375, "lon": -73.9974367 }, + { "lat": 40.7213800, "lon": -73.9974226 }, + { "lat": 40.7214592, "lon": -73.9973963 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Cleveland Place", + "name:etymology:wikidata": "Q35171", + "name:ko": "클리블랜드 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|right" + } +}, +{ + "type": "way", + "id": 1271581110, + "bounds": { + "minlat": 40.7181678, + "minlon": -74.0008097, + "maxlat": 40.7184492, + "maxlon": -74.0005519 + }, + "nodes": [ + 5706569898, + 8307641787, + 11808312027 + ], + "geometry": [ + { "lat": 40.7184492, "lon": -74.0005519 }, + { "lat": 40.7183599, "lon": -74.0006333 }, + { "lat": 40.7181678, "lon": -74.0008097 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 1271581111, + "bounds": { + "minlat": 40.7179480, + "minlon": -74.0010080, + "maxlat": 40.7181678, + "maxlon": -74.0008097 + }, + "nodes": [ + 11808312027, + 12197904838, + 8307641745, + 42445484 + ], + "geometry": [ + { "lat": 40.7181678, "lon": -74.0008097 }, + { "lat": 40.7180336, "lon": -74.0009294 }, + { "lat": 40.7179922, "lon": -74.0009672 }, + { "lat": 40.7179480, "lon": -74.0010080 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|through", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 1271581112, + "bounds": { + "minlat": 40.7155124, + "minlon": -74.0018609, + "maxlat": 40.7157492, + "maxlon": -74.0016779 + }, + "nodes": [ + 11808312028, + 12198027577, + 7132560143, + 42427305 + ], + "geometry": [ + { "lat": 40.7155124, "lon": -74.0018609 }, + { "lat": 40.7156404, "lon": -74.0017663 }, + { "lat": 40.7156817, "lon": -74.0017328 }, + { "lat": 40.7157492, "lon": -74.0016779 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1271746675, + "bounds": { + "minlat": 40.7385416, + "minlon": -73.9868531, + "maxlat": 40.7387247, + "maxlon": -73.9864141 + }, + "nodes": [ + 42438173, + 12181309690 + ], + "geometry": [ + { "lat": 40.7385416, "lon": -73.9864141 }, + { "lat": 40.7387247, "lon": -73.9868531 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 21st Street", + "name:ru": "Восточная 21-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9" + } +}, +{ + "type": "way", + "id": 1271746676, + "bounds": { + "minlat": 40.7387247, + "minlon": -73.9872595, + "maxlat": 40.7388975, + "maxlon": -73.9868531 + }, + "nodes": [ + 12181309690, + 12181309689, + 12181309687, + 12181309686 + ], + "geometry": [ + { "lat": 40.7387247, "lon": -73.9868531 }, + { "lat": 40.7388317, "lon": -73.9871096 }, + { "lat": 40.7388541, "lon": -73.9871633 }, + { "lat": 40.7388975, "lon": -73.9872595 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 21st Street", + "name:ru": "Восточная 21-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|", + "width": "9" + } +}, +{ + "type": "way", + "id": 1271749957, + "bounds": { + "minlat": 40.7493572, + "minlon": -73.9774393, + "maxlat": 40.7495536, + "maxlon": -73.9769822 + }, + "nodes": [ + 11809757094, + 12183285344, + 12831235621, + 42445656 + ], + "geometry": [ + { "lat": 40.7493572, "lon": -73.9769822 }, + { "lat": 40.7494864, "lon": -73.9772828 }, + { "lat": 40.7495073, "lon": -73.9773316 }, + { "lat": 40.7495536, "lon": -73.9774393 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1271806807, + "bounds": { + "minlat": 40.7469719, + "minlon": -73.9526820, + "maxlat": 40.7485811, + "maxlon": -73.9521933 + }, + "nodes": [ + 42826856, + 2470426874, + 9982771933, + 9982771932, + 9982771931, + 9982771930, + 9982771929, + 42826857, + 9982771928, + 2991208465, + 42826860, + 2472142380, + 2472142384, + 2472142378, + 11622832161, + 13300019578 + ], + "geometry": [ + { "lat": 40.7485811, "lon": -73.9521933 }, + { "lat": 40.7485178, "lon": -73.9521935 }, + { "lat": 40.7484839, "lon": -73.9521948 }, + { "lat": 40.7484500, "lon": -73.9521980 }, + { "lat": 40.7484135, "lon": -73.9522054 }, + { "lat": 40.7483691, "lon": -73.9522173 }, + { "lat": 40.7483184, "lon": -73.9522321 }, + { "lat": 40.7482677, "lon": -73.9522480 }, + { "lat": 40.7482280, "lon": -73.9522628 }, + { "lat": 40.7481734, "lon": -73.9522817 }, + { "lat": 40.7475750, "lon": -73.9524800 }, + { "lat": 40.7473506, "lon": -73.9525559 }, + { "lat": 40.7472144, "lon": -73.9525997 }, + { "lat": 40.7470947, "lon": -73.9526398 }, + { "lat": 40.7470548, "lon": -73.9526535 }, + { "lat": 40.7469719, "lon": -73.9526820 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1271806808, + "bounds": { + "minlat": 40.7485811, + "minlon": -73.9522085, + "maxlat": 40.7490527, + "maxlon": -73.9521933 + }, + "nodes": [ + 42825534, + 5034184404, + 42826856 + ], + "geometry": [ + { "lat": 40.7490527, "lon": -73.9522085 }, + { "lat": 40.7489393, "lon": -73.9522044 }, + { "lat": 40.7485811, "lon": -73.9521933 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1271806809, + "bounds": { + "minlat": 40.7490527, + "minlon": -73.9522251, + "maxlat": 40.7495327, + "maxlon": -73.9522085 + }, + "nodes": [ + 6810164260, + 5034184408, + 42825534 + ], + "geometry": [ + { "lat": 40.7495327, "lon": -73.9522251 }, + { "lat": 40.7491655, "lon": -73.9522114 }, + { "lat": 40.7490527, "lon": -73.9522085 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1271806810, + "bounds": { + "minlat": 40.7495327, + "minlon": -73.9522358, + "maxlat": 40.7499025, + "maxlon": -73.9522251 + }, + "nodes": [ + 6452716567, + 597241928, + 6810164260 + ], + "geometry": [ + { "lat": 40.7499025, "lon": -73.9522358 }, + { "lat": 40.7498436, "lon": -73.9522338 }, + { "lat": 40.7495327, "lon": -73.9522251 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1271806811, + "bounds": { + "minlat": 40.7499025, + "minlon": -73.9522639, + "maxlat": 40.7522174, + "maxlon": -73.9510943 + }, + "nodes": [ + 11524814890, + 3618437573, + 2462253812, + 2462253817, + 2476134119, + 42826846, + 9982771943, + 9982771942, + 9982771941, + 9982771939, + 9982771940, + 2462253818, + 42826850, + 2476134120, + 6452716567 + ], + "geometry": [ + { "lat": 40.7522174, "lon": -73.9510943 }, + { "lat": 40.7517153, "lon": -73.9515238 }, + { "lat": 40.7514736, "lon": -73.9517311 }, + { "lat": 40.7513903, "lon": -73.9518048 }, + { "lat": 40.7511544, "lon": -73.9520088 }, + { "lat": 40.7509158, "lon": -73.9522164 }, + { "lat": 40.7508928, "lon": -73.9522335 }, + { "lat": 40.7508701, "lon": -73.9522472 }, + { "lat": 40.7508477, "lon": -73.9522558 }, + { "lat": 40.7508203, "lon": -73.9522610 }, + { "lat": 40.7507915, "lon": -73.9522632 }, + { "lat": 40.7507626, "lon": -73.9522639 }, + { "lat": 40.7505913, "lon": -73.9522616 }, + { "lat": 40.7503852, "lon": -73.9522543 }, + { "lat": 40.7499025, "lon": -73.9522358 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1271806812, + "bounds": { + "minlat": 40.7522174, + "minlon": -73.9510943, + "maxlat": 40.7524399, + "maxlon": -73.9509023 + }, + "nodes": [ + 42826843, + 5034184382, + 11524814888, + 11524814890 + ], + "geometry": [ + { "lat": 40.7524399, "lon": -73.9509023 }, + { "lat": 40.7523957, "lon": -73.9509417 }, + { "lat": 40.7523349, "lon": -73.9509937 }, + { "lat": 40.7522174, "lon": -73.9510943 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1271806813, + "bounds": { + "minlat": 40.7577990, + "minlon": -73.9458140, + "maxlat": 40.7589754, + "maxlon": -73.9445294 + }, + "nodes": [ + 5538983364, + 5487838037, + 6452721229, + 42826823 + ], + "geometry": [ + { "lat": 40.7589754, "lon": -73.9445294 }, + { "lat": 40.7580245, "lon": -73.9455667 }, + { "lat": 40.7578670, "lon": -73.9457365 }, + { "lat": 40.7577990, "lon": -73.9458140 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lit": "yes", + "name": "Vernon Boulevard", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1271806814, + "bounds": { + "minlat": 40.7589754, + "minlon": -73.9445294, + "maxlat": 40.7593080, + "maxlon": -73.9441670 + }, + "nodes": [ + 42826820, + 9915217288, + 9915217287, + 5538983364 + ], + "geometry": [ + { "lat": 40.7593080, "lon": -73.9441670 }, + { "lat": 40.7592732, "lon": -73.9442006 }, + { "lat": 40.7592346, "lon": -73.9442401 }, + { "lat": 40.7589754, "lon": -73.9445294 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1271806815, + "bounds": { + "minlat": 40.7623070, + "minlon": -73.9422737, + "maxlat": 40.7635167, + "maxlon": -73.9415255 + }, + "nodes": [ + 5538983369, + 9915145363, + 9915145364 + ], + "geometry": [ + { "lat": 40.7635167, "lon": -73.9415255 }, + { "lat": 40.7625410, "lon": -73.9421321 }, + { "lat": 40.7623070, "lon": -73.9422737 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard" + } +}, +{ + "type": "way", + "id": 1271806816, + "bounds": { + "minlat": 40.7635167, + "minlon": -73.9415255, + "maxlat": 40.7637352, + "maxlon": -73.9413907 + }, + "nodes": [ + 42826813, + 5538983369 + ], + "geometry": [ + { "lat": 40.7637352, "lon": -73.9413907 }, + { "lat": 40.7635167, "lon": -73.9415255 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard" + } +}, +{ + "type": "way", + "id": 1271806817, + "bounds": { + "minlat": 40.7678709, + "minlon": -73.9359108, + "maxlat": 40.7689197, + "maxlon": -73.9357913 + }, + "nodes": [ + 2459401771, + 42826933, + 2796726958 + ], + "geometry": [ + { "lat": 40.7678709, "lon": -73.9359108 }, + { "lat": 40.7686046, "lon": -73.9358222 }, + { "lat": 40.7689197, "lon": -73.9357913 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "name": "Vernon Boulevard" + } +}, +{ + "type": "way", + "id": 1271806818, + "bounds": { + "minlat": 40.7689197, + "minlon": -73.9357913, + "maxlat": 40.7695260, + "maxlon": -73.9352270 + }, + "nodes": [ + 2796726958, + 42826935, + 2459401759, + 2459401754, + 5538983378, + 42826940 + ], + "geometry": [ + { "lat": 40.7689197, "lon": -73.9357913 }, + { "lat": 40.7690366, "lon": -73.9357737 }, + { "lat": 40.7690840, "lon": -73.9357426 }, + { "lat": 40.7691276, "lon": -73.9356894 }, + { "lat": 40.7693190, "lon": -73.9354756 }, + { "lat": 40.7695260, "lon": -73.9352270 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Vernon Boulevard", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 1271920996, + "bounds": { + "minlat": 40.8757704, + "minlon": -73.9080852, + "maxlat": 40.8766753, + "maxlon": -73.9065288 + }, + "nodes": [ + 7189214950, + 1544809888, + 42429294, + 2303340763, + 42733637, + 10128431580, + 1396352309 + ], + "geometry": [ + { "lat": 40.8757704, "lon": -73.9080852 }, + { "lat": 40.8758702, "lon": -73.9079581 }, + { "lat": 40.8760974, "lon": -73.9076636 }, + { "lat": 40.8762814, "lon": -73.9073316 }, + { "lat": 40.8764861, "lon": -73.9069418 }, + { "lat": 40.8766048, "lon": -73.9066828 }, + { "lat": 40.8766753, "lon": -73.9065288 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1272153400, + "bounds": { + "minlat": 40.7495313, + "minlon": -74.0070273, + "maxlat": 40.7497278, + "maxlon": -74.0065763 + }, + "nodes": [ + 246580466, + 3914863409, + 12161232223, + 11813245501 + ], + "geometry": [ + { "lat": 40.7495313, "lon": -74.0065763 }, + { "lat": 40.7495877, "lon": -74.0066896 }, + { "lat": 40.7496178, "lon": -74.0067641 }, + { "lat": 40.7497278, "lon": -74.0070273 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 24th Street", + "name:ru": "Западная 24-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "right|right" + } +}, +{ + "type": "way", + "id": 1272418044, + "bounds": { + "minlat": 40.8024698, + "minlon": -73.9615888, + "maxlat": 40.8029218, + "maxlon": -73.9607030 + }, + "nodes": [ + 7618358578, + 11815639927, + 11815639917, + 11815639918, + 11815639919, + 11815639920, + 11815639921, + 6818442834, + 7372610411, + 11815639923, + 11998058274, + 11815639922 + ], + "geometry": [ + { "lat": 40.8025209, "lon": -73.9615888 }, + { "lat": 40.8025129, "lon": -73.9614849 }, + { "lat": 40.8024698, "lon": -73.9612011 }, + { "lat": 40.8024810, "lon": -73.9611635 }, + { "lat": 40.8025023, "lon": -73.9611407 }, + { "lat": 40.8029064, "lon": -73.9608846 }, + { "lat": 40.8029218, "lon": -73.9608411 }, + { "lat": 40.8029207, "lon": -73.9608351 }, + { "lat": 40.8029184, "lon": -73.9608235 }, + { "lat": 40.8029148, "lon": -73.9608042 }, + { "lat": 40.8029087, "lon": -73.9607731 }, + { "lat": 40.8028955, "lon": -73.9607030 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1272613980, + "bounds": { + "minlat": 40.7514392, + "minlon": -73.9765721, + "maxlat": 40.7516579, + "maxlon": -73.9760552 + }, + "nodes": [ + 11337295604, + 10168841826, + 11337295605, + 11817409610 + ], + "geometry": [ + { "lat": 40.7514392, "lon": -73.9760552 }, + { "lat": 40.7514811, "lon": -73.9761537 }, + { "lat": 40.7515073, "lon": -73.9762155 }, + { "lat": 40.7516579, "lon": -73.9765721 } + ], + "tags": { + "bus:lanes:backward": "yes|yes|designated", + "bus:lanes:forward": "yes|designated", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1272613981, + "bounds": { + "minlat": 40.7532568, + "minlon": -73.9808792, + "maxlat": 40.7534805, + "maxlon": -73.9803326 + }, + "nodes": [ + 11817409618, + 3942050699, + 42437358 + ], + "geometry": [ + { "lat": 40.7532568, "lon": -73.9803326 }, + { "lat": 40.7534350, "lon": -73.9807591 }, + { "lat": 40.7534805, "lon": -73.9808792 } + ], + "tags": { + "bus:lanes:backward": "yes|designated", + "bus:lanes:forward": "designated|yes|designated", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1273808662, + "bounds": { + "minlat": 40.7698025, + "minlon": -73.9167352, + "maxlat": 40.7698071, + "maxlon": -73.9166059 + }, + "nodes": [ + 7659376764, + 7659376752 + ], + "geometry": [ + { "lat": 40.7698025, "lon": -73.9167352 }, + { "lat": 40.7698071, "lon": -73.9166059 } + ], + "tags": { + "foot": "yes", + "hgv": "designated", + "highway": "secondary", + "name": "Astoria Boulevard South", + "oneway": "yes", + "ref": "I 278 Truck", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 1273808663, + "bounds": { + "minlat": 40.7698008, + "minlon": -73.9170380, + "maxlat": 40.7698371, + "maxlon": -73.9168056 + }, + "nodes": [ + 1934650076, + 8765434968, + 6406731462, + 276209270 + ], + "geometry": [ + { "lat": 40.7698371, "lon": -73.9170380 }, + { "lat": 40.7698318, "lon": -73.9170036 }, + { "lat": 40.7698245, "lon": -73.9169535 }, + { "lat": 40.7698008, "lon": -73.9168056 } + ], + "tags": { + "foot": "yes", + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "name": "Astoria Boulevard South", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 1273808664, + "bounds": { + "minlat": 40.7698071, + "minlon": -73.9166947, + "maxlat": 40.7698859, + "maxlon": -73.9166059 + }, + "nodes": [ + 7659376755, + 7659376752 + ], + "geometry": [ + { "lat": 40.7698859, "lon": -73.9166947 }, + { "lat": 40.7698071, "lon": -73.9166059 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "name": "Hoyt Avenue South", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1273818128, + "bounds": { + "minlat": 40.8063148, + "minlon": -73.9908409, + "maxlat": 40.8064045, + "maxlon": -73.9904477 + }, + "nodes": [ + 1256269852, + 3480327310 + ], + "geometry": [ + { "lat": 40.8064045, "lon": -73.9908409 }, + { "lat": 40.8063148, "lon": -73.9904477 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "City Place", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1274003664, + "bounds": { + "minlat": 40.7628769, + "minlon": -73.9562843, + "maxlat": 40.7629269, + "maxlon": -73.9562385 + }, + "nodes": [ + 4999169399, + 4999169384, + 4999169398 + ], + "geometry": [ + { "lat": 40.7628769, "lon": -73.9562843 }, + { "lat": 40.7628958, "lon": -73.9562670 }, + { "lat": 40.7629269, "lon": -73.9562385 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1274003665, + "bounds": { + "minlat": 40.7623658, + "minlon": -73.9569931, + "maxlat": 40.7624248, + "maxlon": -73.9566545 + }, + "nodes": [ + 42427975, + 6747172819, + 4999169400 + ], + "geometry": [ + { "lat": 40.7624248, "lon": -73.9569931 }, + { "lat": 40.7623780, "lon": -73.9568568 }, + { "lat": 40.7623658, "lon": -73.9566545 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1274022777, + "bounds": { + "minlat": 40.8033825, + "minlon": -73.9632047, + "maxlat": 40.8036151, + "maxlon": -73.9628979 + }, + "nodes": [ + 11829983008, + 11829983009, + 11829983010, + 11829983011, + 11829983012, + 11829983013, + 11829983014, + 11829983015, + 11829983016, + 11829983017, + 11829983018, + 11829983019, + 11829983020, + 11829983021, + 11829983022, + 11829983023, + 11829983024, + 11829983025, + 11829983026, + 11829983027, + 11829983028, + 11829983029, + 11829983030, + 11829983031, + 11829983032, + 11829983033, + 11829983034, + 11829983035, + 11762193078, + 11829983036, + 11829983037, + 11829983038, + 11829983039, + 11829983040, + 11829983008 + ], + "geometry": [ + { "lat": 40.8035967, "lon": -73.9631344 }, + { "lat": 40.8036075, "lon": -73.9631063 }, + { "lat": 40.8036137, "lon": -73.9630759 }, + { "lat": 40.8036151, "lon": -73.9630444 }, + { "lat": 40.8036116, "lon": -73.9630133 }, + { "lat": 40.8036034, "lon": -73.9629837 }, + { "lat": 40.8035908, "lon": -73.9629569 }, + { "lat": 40.8035744, "lon": -73.9629341 }, + { "lat": 40.8035547, "lon": -73.9629162 }, + { "lat": 40.8035327, "lon": -73.9629040 }, + { "lat": 40.8035093, "lon": -73.9628979 }, + { "lat": 40.8034855, "lon": -73.9628983 }, + { "lat": 40.8034622, "lon": -73.9629051 }, + { "lat": 40.8034404, "lon": -73.9629180 }, + { "lat": 40.8034211, "lon": -73.9629365 }, + { "lat": 40.8034051, "lon": -73.9629598 }, + { "lat": 40.8033929, "lon": -73.9629869 }, + { "lat": 40.8033857, "lon": -73.9630141 }, + { "lat": 40.8033825, "lon": -73.9630426 }, + { "lat": 40.8033833, "lon": -73.9630714 }, + { "lat": 40.8033882, "lon": -73.9630995 }, + { "lat": 40.8033969, "lon": -73.9631259 }, + { "lat": 40.8034093, "lon": -73.9631496 }, + { "lat": 40.8034247, "lon": -73.9631699 }, + { "lat": 40.8034428, "lon": -73.9631861 }, + { "lat": 40.8034628, "lon": -73.9631975 }, + { "lat": 40.8034841, "lon": -73.9632038 }, + { "lat": 40.8035059, "lon": -73.9632047 }, + { "lat": 40.8035179, "lon": -73.9632022 }, + { "lat": 40.8035274, "lon": -73.9632003 }, + { "lat": 40.8035480, "lon": -73.9631906 }, + { "lat": 40.8035668, "lon": -73.9631760 }, + { "lat": 40.8035832, "lon": -73.9631571 }, + { "lat": 40.8035894, "lon": -73.9631466 }, + { "lat": 40.8035967, "lon": -73.9631344 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "horse": "no" + } +}, +{ + "type": "way", + "id": 1274636982, + "bounds": { + "minlat": 40.7250730, + "minlon": -73.9812110, + "maxlat": 40.7268652, + "maxlon": -73.9799131 + }, + "nodes": [ + 42434226, + 4216045851, + 4216045854, + 2324482224, + 4216045821, + 4216045810, + 42449027, + 4216055439, + 4216045832, + 12179582411, + 4216045835, + 42430924 + ], + "geometry": [ + { "lat": 40.7250730, "lon": -73.9812110 }, + { "lat": 40.7251388, "lon": -73.9811633 }, + { "lat": 40.7256382, "lon": -73.9808020 }, + { "lat": 40.7256850, "lon": -73.9807680 }, + { "lat": 40.7257401, "lon": -73.9807274 }, + { "lat": 40.7262314, "lon": -73.9803693 }, + { "lat": 40.7262810, "lon": -73.9803330 }, + { "lat": 40.7263302, "lon": -73.9802965 }, + { "lat": 40.7263372, "lon": -73.9802913 }, + { "lat": 40.7267778, "lon": -73.9799768 }, + { "lat": 40.7268214, "lon": -73.9799456 }, + { "lat": 40.7268652, "lon": -73.9799131 } + ], + "tags": { + "alt_name:en": "Charlie Parker Place", + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Avenue B", + "name:ru": "Авеню B", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2873530", + "wikipedia": "en:Avenue B (Manhattan)" + } +}, +{ + "type": "way", + "id": 1275234323, + "bounds": { + "minlat": 40.7537192, + "minlon": -73.9511363, + "maxlat": 40.7542561, + "maxlon": -73.9497969 + }, + "nodes": [ + 3618456701, + 11840964783, + 11840964795, + 11840964789, + 11840964790, + 11840964784, + 11840964786, + 11840964785 + ], + "geometry": [ + { "lat": 40.7537192, "lon": -73.9497969 }, + { "lat": 40.7537666, "lon": -73.9498847 }, + { "lat": 40.7537819, "lon": -73.9499135 }, + { "lat": 40.7538215, "lon": -73.9499934 }, + { "lat": 40.7540712, "lon": -73.9504954 }, + { "lat": 40.7540913, "lon": -73.9505356 }, + { "lat": 40.7542561, "lon": -73.9508690 }, + { "lat": 40.7539508, "lon": -73.9511363 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1275234324, + "bounds": { + "minlat": 40.7532519, + "minlon": -73.9513736, + "maxlat": 40.7539508, + "maxlon": -73.9504996 + }, + "nodes": [ + 11840964785, + 11840964787, + 11840964788 + ], + "geometry": [ + { "lat": 40.7539508, "lon": -73.9511363 }, + { "lat": 40.7536874, "lon": -73.9513736 }, + { "lat": 40.7532519, "lon": -73.9504996 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1275234325, + "bounds": { + "minlat": 40.7532519, + "minlon": -73.9504996, + "maxlat": 40.7538215, + "maxlon": -73.9499934 + }, + "nodes": [ + 11840964788, + 11840964794, + 11840964789 + ], + "geometry": [ + { "lat": 40.7532519, "lon": -73.9504996 }, + { "lat": 40.7534481, "lon": -73.9503208 }, + { "lat": 40.7538215, "lon": -73.9499934 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1275234326, + "bounds": { + "minlat": 40.7538463, + "minlon": -73.9506924, + "maxlat": 40.7540712, + "maxlon": -73.9504954 + }, + "nodes": [ + 11840964790, + 11840964791 + ], + "geometry": [ + { "lat": 40.7540712, "lon": -73.9504954 }, + { "lat": 40.7538463, "lon": -73.9506924 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1275234327, + "bounds": { + "minlat": 40.7531396, + "minlon": -73.9504996, + "maxlat": 40.7532519, + "maxlon": -73.9502942 + }, + "nodes": [ + 11840964792, + 11840964793, + 11840964796, + 11840964788 + ], + "geometry": [ + { "lat": 40.7531396, "lon": -73.9502942 }, + { "lat": 40.7531904, "lon": -73.9503870 }, + { "lat": 40.7532018, "lon": -73.9504083 }, + { "lat": 40.7532519, "lon": -73.9504996 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1275234328, + "bounds": { + "minlat": 40.7533998, + "minlon": -73.9503208, + "maxlat": 40.7534481, + "maxlon": -73.9502407 + }, + "nodes": [ + 11840964794, + 2470426846 + ], + "geometry": [ + { "lat": 40.7534481, "lon": -73.9503208 }, + { "lat": 40.7533998, "lon": -73.9502407 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1275467609, + "bounds": { + "minlat": 40.8072601, + "minlon": -73.9661730, + "maxlat": 40.8079015, + "maxlon": -73.9657142 + }, + "nodes": [ + 11842918576, + 11842918578, + 12778017076, + 11842918579, + 11842918577 + ], + "geometry": [ + { "lat": 40.8079015, "lon": -73.9657142 }, + { "lat": 40.8078460, "lon": -73.9657539 }, + { "lat": 40.8078273, "lon": -73.9657669 }, + { "lat": 40.8073299, "lon": -73.9661231 }, + { "lat": 40.8072601, "lon": -73.9661730 } + ], + "tags": { + "highway": "service", + "layer": "-1", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1275759855, + "bounds": { + "minlat": 40.7036670, + "minlon": -73.9272442, + "maxlat": 40.7038640, + "maxlon": -73.9268910 + }, + "nodes": [ + 42530350, + 9743987268, + 11844828441 + ], + "geometry": [ + { "lat": 40.7036670, "lon": -73.9268910 }, + { "lat": 40.7037116, "lon": -73.9269700 }, + { "lat": 40.7038640, "lon": -73.9272442 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Knickerbocker Avenue", + "name:etymology:wikidata": "Q55609555", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Knickerbocker", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11207", + "tiger:zip_right": "11207" + } +}, +{ + "type": "way", + "id": 1275894622, + "bounds": { + "minlat": 40.8038900, + "minlon": -73.9660327, + "maxlat": 40.8040116, + "maxlon": -73.9659444 + }, + "nodes": [ + 11845848043, + 11845848045, + 11845848044 + ], + "geometry": [ + { "lat": 40.8040116, "lon": -73.9659444 }, + { "lat": 40.8039846, "lon": -73.9659640 }, + { "lat": 40.8038900, "lon": -73.9660327 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1278047625, + "bounds": { + "minlat": 40.7811350, + "minlon": -74.0095046, + "maxlat": 40.7826372, + "maxlon": -74.0082009 + }, + "nodes": [ + 1793478692, + 13252373886, + 103856496, + 6771776397, + 103856493, + 103856491, + 5910252639, + 4212678504 + ], + "geometry": [ + { "lat": 40.7826372, "lon": -74.0082009 }, + { "lat": 40.7825465, "lon": -74.0083201 }, + { "lat": 40.7823938, "lon": -74.0084981 }, + { "lat": 40.7821707, "lon": -74.0087017 }, + { "lat": 40.7819132, "lon": -74.0089015 }, + { "lat": 40.7817599, "lon": -74.0090195 }, + { "lat": 40.7814173, "lon": -74.0092881 }, + { "lat": 40.7811350, "lon": -74.0095046 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1278197749, + "bounds": { + "minlat": 40.8302751, + "minlon": -73.9268041, + "maxlat": 40.8310438, + "maxlon": -73.9245101 + }, + "nodes": [ + 2609934067, + 13683756630, + 13683756631, + 13683756632, + 13038737299, + 2609934069 + ], + "geometry": [ + { "lat": 40.8310438, "lon": -73.9268041 }, + { "lat": 40.8309165, "lon": -73.9264243 }, + { "lat": 40.8308992, "lon": -73.9263726 }, + { "lat": 40.8303808, "lon": -73.9248255 }, + { "lat": 40.8303071, "lon": -73.9246056 }, + { "lat": 40.8302751, "lon": -73.9245101 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1278212315, + "bounds": { + "minlat": 40.7665394, + "minlon": -73.9961850, + "maxlat": 40.7671558, + "maxlon": -73.9957106 + }, + "nodes": [ + 11866515444, + 11866515445, + 13100051862, + 11866515446, + 11866515447 + ], + "geometry": [ + { "lat": 40.7671558, "lon": -73.9957106 }, + { "lat": 40.7671014, "lon": -73.9957525 }, + { "lat": 40.7668724, "lon": -73.9959287 }, + { "lat": 40.7665887, "lon": -73.9961470 }, + { "lat": 40.7665394, "lon": -73.9961850 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1278214314, + "bounds": { + "minlat": 40.7250730, + "minlon": -73.9835308, + "maxlat": 40.7260512, + "maxlon": -73.9812110 + }, + "nodes": [ + 42434226, + 4216045822, + 274306324, + 4216055441, + 42434215 + ], + "geometry": [ + { "lat": 40.7250730, "lon": -73.9812110 }, + { "lat": 40.7251064, "lon": -73.9812889 }, + { "lat": 40.7255646, "lon": -73.9823587 }, + { "lat": 40.7260063, "lon": -73.9834252 }, + { "lat": 40.7260512, "lon": -73.9835308 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "East 7th Street", + "name:ru": "Восточная 7-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1278387487, + "bounds": { + "minlat": 40.7590014, + "minlon": -73.9592329, + "maxlat": 40.7590330, + "maxlon": -73.9592091 + }, + "nodes": [ + 11868048950, + 11868048949 + ], + "geometry": [ + { "lat": 40.7590014, "lon": -73.9592329 }, + { "lat": 40.7590330, "lon": -73.9592091 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "emergency": "yes", + "highway": "service", + "layer": "2", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 1279064045, + "bounds": { + "minlat": 40.8073049, + "minlon": -73.9644893, + "maxlat": 40.8073865, + "maxlon": -73.9642951 + }, + "nodes": [ + 627905367, + 42428833 + ], + "geometry": [ + { "lat": 40.8073049, "lon": -73.9642951 }, + { "lat": 40.8073865, "lon": -73.9644893 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 115th Street", + "name:ru": "Западная 115-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1279456594, + "bounds": { + "minlat": 40.7385405, + "minlon": -74.0096431, + "maxlat": 40.7387628, + "maxlon": -74.0095413 + }, + "nodes": [ + 8214302531, + 1701920956, + 1701920975, + 246882783, + 8307642202, + 42431511 + ], + "geometry": [ + { "lat": 40.7385405, "lon": -74.0096431 }, + { "lat": 40.7386932, "lon": -74.0096319 }, + { "lat": 40.7387256, "lon": -74.0096090 }, + { "lat": 40.7387482, "lon": -74.0095808 }, + { "lat": 40.7387550, "lon": -74.0095623 }, + { "lat": 40.7387628, "lon": -74.0095413 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West Street", + "name_1": "State Highway 9A", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1280023767, + "bounds": { + "minlat": 40.8079646, + "minlon": -73.9315282, + "maxlat": 40.8082748, + "maxlon": -73.9312150 + }, + "nodes": [ + 11881123101, + 11882279678, + 9674381958, + 9674381960 + ], + "geometry": [ + { "lat": 40.8079646, "lon": -73.9312150 }, + { "lat": 40.8081720, "lon": -73.9314238 }, + { "lat": 40.8082479, "lon": -73.9314973 }, + { "lat": 40.8082748, "lon": -73.9315282 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1280023771, + "bounds": { + "minlat": 40.8084131, + "minlon": -73.9317701, + "maxlat": 40.8084652, + "maxlon": -73.9317043 + }, + "nodes": [ + 11882271263, + 9674381961 + ], + "geometry": [ + { "lat": 40.8084131, "lon": -73.9317043 }, + { "lat": 40.8084652, "lon": -73.9317701 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1280023783, + "bounds": { + "minlat": 40.8078619, + "minlon": -73.9312150, + "maxlat": 40.8079646, + "maxlon": -73.9310881 + }, + "nodes": [ + 11882279688, + 9674381956, + 11881123101 + ], + "geometry": [ + { "lat": 40.8078619, "lon": -73.9310881 }, + { "lat": 40.8079127, "lon": -73.9311303 }, + { "lat": 40.8079646, "lon": -73.9312150 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1280023788, + "bounds": { + "minlat": 40.8067972, + "minlon": -73.9283026, + "maxlat": 40.8070524, + "maxlon": -73.9281215 + }, + "nodes": [ + 13522465048, + 11882279745, + 11882279746, + 11882279744 + ], + "geometry": [ + { "lat": 40.8070524, "lon": -73.9281215 }, + { "lat": 40.8069920, "lon": -73.9281675 }, + { "lat": 40.8069724, "lon": -73.9281811 }, + { "lat": 40.8067972, "lon": -73.9283026 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1280176407, + "bounds": { + "minlat": 40.8170071, + "minlon": -73.9595343, + "maxlat": 40.8170513, + "maxlon": -73.9594934 + }, + "nodes": [ + 42438066, + 10049953217, + 7732571915 + ], + "geometry": [ + { "lat": 40.8170071, "lon": -73.9594934 }, + { "lat": 40.8170315, "lon": -73.9595160 }, + { "lat": 40.8170513, "lon": -73.9595343 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1280900326, + "bounds": { + "minlat": 40.7379946, + "minlon": -73.9400286, + "maxlat": 40.7384935, + "maxlon": -73.9381421 + }, + "nodes": [ + 7761549843, + 9179086312, + 8314258585, + 9982287330, + 9982287329, + 9982287328, + 7824536269, + 9982287326, + 7824536275, + 9982287325, + 9179114930, + 597269953 + ], + "geometry": [ + { "lat": 40.7384935, "lon": -73.9400286 }, + { "lat": 40.7384504, "lon": -73.9397957 }, + { "lat": 40.7384245, "lon": -73.9396640 }, + { "lat": 40.7383955, "lon": -73.9395375 }, + { "lat": 40.7383610, "lon": -73.9394151 }, + { "lat": 40.7382710, "lon": -73.9391513 }, + { "lat": 40.7382198, "lon": -73.9389909 }, + { "lat": 40.7381709, "lon": -73.9388345 }, + { "lat": 40.7381346, "lon": -73.9387070 }, + { "lat": 40.7380766, "lon": -73.9384822 }, + { "lat": 40.7380329, "lon": -73.9383071 }, + { "lat": 40.7379946, "lon": -73.9381421 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Borden Avenue", + "oneway": "yes", + "sidewalk:right": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1280900327, + "bounds": { + "minlat": 40.7386473, + "minlon": -73.9408062, + "maxlat": 40.7386760, + "maxlon": -73.9406589 + }, + "nodes": [ + 42856246, + 9982287343, + 597269937 + ], + "geometry": [ + { "lat": 40.7386760, "lon": -73.9408062 }, + { "lat": 40.7386600, "lon": -73.9407243 }, + { "lat": 40.7386473, "lon": -73.9406589 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Borden Avenue", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 1280901143, + "bounds": { + "minlat": 40.7423756, + "minlon": -73.9599679, + "maxlat": 40.7423951, + "maxlon": -73.9598748 + }, + "nodes": [ + 2297172752, + 9982771556 + ], + "geometry": [ + { "lat": 40.7423951, "lon": -73.9599679 }, + { "lat": 40.7423756, "lon": -73.9598748 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Borden Avenue", + "source": "Bing", + "surface": "asphalt", + "turn:lanes:backward": "right" + } +}, +{ + "type": "way", + "id": 1280962519, + "bounds": { + "minlat": 40.7446215, + "minlon": -73.9326468, + "maxlat": 40.7449297, + "maxlon": -73.9325862 + }, + "nodes": [ + 276207583, + 3798410807, + 11694654210, + 42820836 + ], + "geometry": [ + { "lat": 40.7449297, "lon": -73.9325862 }, + { "lat": 40.7447821, "lon": -73.9326137 }, + { "lat": 40.7447046, "lon": -73.9326297 }, + { "lat": 40.7446215, "lon": -73.9326468 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "residential", + "lanes": "2", + "name": "32nd Place", + "oneway": "yes", + "sidewalk:both": "separate", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1281078359, + "bounds": { + "minlat": 40.7849501, + "minlon": -74.0129147, + "maxlat": 40.7852731, + "maxlon": -74.0126446 + }, + "nodes": [ + 5755469274, + 5755469275 + ], + "geometry": [ + { "lat": 40.7852731, "lon": -74.0126446 }, + { "lat": 40.7849501, "lon": -74.0129147 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1281935478, + "bounds": { + "minlat": 40.7189540, + "minlon": -73.9224911, + "maxlat": 40.7193167, + "maxlon": -73.9223253 + }, + "nodes": [ + 5482677615, + 11896656737 + ], + "geometry": [ + { "lat": 40.7193167, "lon": -73.9224911 }, + { "lat": 40.7189540, "lon": -73.9223253 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1283016851, + "bounds": { + "minlat": 40.8395137, + "minlon": -73.9130946, + "maxlat": 40.8397517, + "maxlon": -73.9129613 + }, + "nodes": [ + 2408355553, + 13535833501, + 13038442694, + 2408355559 + ], + "geometry": [ + { "lat": 40.8395137, "lon": -73.9130946 }, + { "lat": 40.8396431, "lon": -73.9130252 }, + { "lat": 40.8396935, "lon": -73.9129995 }, + { "lat": 40.8397517, "lon": -73.9129613 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1283023662, + "bounds": { + "minlat": 40.7988923, + "minlon": -73.9641377, + "maxlat": 40.7990277, + "maxlon": -73.9640368 + }, + "nodes": [ + 11905290556, + 11905290558, + 11905290557 + ], + "geometry": [ + { "lat": 40.7988923, "lon": -73.9641377 }, + { "lat": 40.7989497, "lon": -73.9640950 }, + { "lat": 40.7990277, "lon": -73.9640368 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1283740756, + "bounds": { + "minlat": 40.7347776, + "minlon": -73.9376923, + "maxlat": 40.7351021, + "maxlon": -73.9373815 + }, + "nodes": [ + 11155242468, + 4203135149 + ], + "geometry": [ + { "lat": 40.7351021, "lon": -73.9373815 }, + { "lat": 40.7347776, "lon": -73.9376923 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Van Dam Street", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1284659499, + "bounds": { + "minlat": 40.7497264, + "minlon": -73.9094897, + "maxlat": 40.7505620, + "maxlon": -73.9074325 + }, + "nodes": [ + 42876809, + 6450796491, + 10762234070, + 10762234071, + 42876811, + 11643653054, + 42876815, + 11917978953 + ], + "geometry": [ + { "lat": 40.7505620, "lon": -73.9094897 }, + { "lat": 40.7505342, "lon": -73.9094163 }, + { "lat": 40.7501709, "lon": -73.9084561 }, + { "lat": 40.7501477, "lon": -73.9083939 }, + { "lat": 40.7501190, "lon": -73.9083190 }, + { "lat": 40.7500900, "lon": -73.9082522 }, + { "lat": 40.7497670, "lon": -73.9075090 }, + { "lat": 40.7497264, "lon": -73.9074325 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "38th Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "38th", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11377", + "tiger:zip_right": "11377" + } +}, +{ + "type": "way", + "id": 1284659500, + "bounds": { + "minlat": 40.7493729, + "minlon": -73.9074325, + "maxlat": 40.7497264, + "maxlon": -73.9067657 + }, + "nodes": [ + 11917978953, + 11917978954 + ], + "geometry": [ + { "lat": 40.7497264, "lon": -73.9074325 }, + { "lat": 40.7493729, "lon": -73.9067657 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "38th Avenue", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1285495213, + "bounds": { + "minlat": 40.7274211, + "minlon": -73.9611963, + "maxlat": 40.7274602, + "maxlon": -73.9602006 + }, + "nodes": [ + 42484576, + 11924946004, + 11099032984 + ], + "geometry": [ + { "lat": 40.7274211, "lon": -73.9611963 }, + { "lat": 40.7274555, "lon": -73.9603108 }, + { "lat": 40.7274602, "lon": -73.9602006 } + ], + "tags": { + "access": "private", + "highway": "residential", + "name": "Oak Street", + "surface": "ground", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Oak", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1285505059, + "bounds": { + "minlat": 40.8205312, + "minlon": -74.0123514, + "maxlat": 40.8215972, + "maxlon": -74.0121220 + }, + "nodes": [ + 11925070552, + 11925070560, + 11925070553, + 11925070554, + 11925070555, + 11925070556, + 11925070557, + 11925070558, + 11925070559 + ], + "geometry": [ + { "lat": 40.8205312, "lon": -74.0121594 }, + { "lat": 40.8206051, "lon": -74.0121565 }, + { "lat": 40.8206615, "lon": -74.0121542 }, + { "lat": 40.8207863, "lon": -74.0121328 }, + { "lat": 40.8209396, "lon": -74.0121220 }, + { "lat": 40.8210756, "lon": -74.0121690 }, + { "lat": 40.8212501, "lon": -74.0122561 }, + { "lat": 40.8214217, "lon": -74.0122843 }, + { "lat": 40.8215972, "lon": -74.0123514 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1285638360, + "bounds": { + "minlat": 40.7475015, + "minlon": -74.0111662, + "maxlat": 40.7478635, + "maxlon": -74.0091213 + }, + "nodes": [ + 11925988615, + 11925988617, + 11925988620, + 11925988618, + 11335187204 + ], + "geometry": [ + { "lat": 40.7475015, "lon": -74.0091213 }, + { "lat": 40.7476640, "lon": -74.0091995 }, + { "lat": 40.7478209, "lon": -74.0107225 }, + { "lat": 40.7478635, "lon": -74.0111407 }, + { "lat": 40.7477235, "lon": -74.0111662 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1285638361, + "bounds": { + "minlat": 40.7474134, + "minlon": -74.0091213, + "maxlat": 40.7475015, + "maxlon": -74.0082617 + }, + "nodes": [ + 8288560709, + 11925988619, + 11925988615 + ], + "geometry": [ + { "lat": 40.7474134, "lon": -74.0082617 }, + { "lat": 40.7474954, "lon": -74.0090622 }, + { "lat": 40.7475015, "lon": -74.0091213 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1285638362, + "bounds": { + "minlat": 40.7476791, + "minlon": -74.0107510, + "maxlat": 40.7478209, + "maxlon": -74.0107225 + }, + "nodes": [ + 11925988620, + 11925988621 + ], + "geometry": [ + { "lat": 40.7478209, "lon": -74.0107225 }, + { "lat": 40.7476791, "lon": -74.0107510 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1285638363, + "bounds": { + "minlat": 40.7464810, + "minlon": -74.0084583, + "maxlat": 40.7464824, + "maxlon": -74.0084273 + }, + "nodes": [ + 8288560712, + 11925988623 + ], + "geometry": [ + { "lat": 40.7464810, "lon": -74.0084273 }, + { "lat": 40.7464824, "lon": -74.0084583 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1285638364, + "bounds": { + "minlat": 40.7464683, + "minlon": -74.0111722, + "maxlat": 40.7468316, + "maxlon": -74.0084583 + }, + "nodes": [ + 11335187205, + 11925988624, + 11925988628, + 11925988630, + 11925988625, + 11925988623 + ], + "geometry": [ + { "lat": 40.7468316, "lon": -74.0111499 }, + { "lat": 40.7466997, "lon": -74.0111722 }, + { "lat": 40.7466727, "lon": -74.0109104 }, + { "lat": 40.7465233, "lon": -74.0092418 }, + { "lat": 40.7464683, "lon": -74.0086851 }, + { "lat": 40.7464824, "lon": -74.0084583 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1285638365, + "bounds": { + "minlat": 40.7466727, + "minlon": -74.0109104, + "maxlat": 40.7468021, + "maxlon": -74.0108840 + }, + "nodes": [ + 11925988627, + 11925988628 + ], + "geometry": [ + { "lat": 40.7468021, "lon": -74.0108840 }, + { "lat": 40.7466727, "lon": -74.0109104 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1285638366, + "bounds": { + "minlat": 40.7454498, + "minlon": -74.0086650, + "maxlat": 40.7454552, + "maxlon": -74.0086172 + }, + "nodes": [ + 8288560715, + 11925988632 + ], + "geometry": [ + { "lat": 40.7454498, "lon": -74.0086172 }, + { "lat": 40.7454552, "lon": -74.0086650 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1285638367, + "bounds": { + "minlat": 40.7451226, + "minlon": -74.0094091, + "maxlat": 40.7455526, + "maxlon": -74.0086650 + }, + "nodes": [ + 11335187206, + 11925988648, + 11925988633, + 11925988634, + 11925988635, + 11925988636, + 11925988637, + 11925988638, + 11925988639, + 11925988640, + 11925988647, + 11925988641, + 11925988642, + 11925988643, + 11925988644, + 11925988632 + ], + "geometry": [ + { "lat": 40.7455315, "lon": -74.0093096 }, + { "lat": 40.7455472, "lon": -74.0093428 }, + { "lat": 40.7455526, "lon": -74.0093751 }, + { "lat": 40.7455430, "lon": -74.0093939 }, + { "lat": 40.7455223, "lon": -74.0094080 }, + { "lat": 40.7454933, "lon": -74.0094091 }, + { "lat": 40.7454756, "lon": -74.0093878 }, + { "lat": 40.7454680, "lon": -74.0093358 }, + { "lat": 40.7451563, "lon": -74.0093998 }, + { "lat": 40.7451304, "lon": -74.0093872 }, + { "lat": 40.7451226, "lon": -74.0093618 }, + { "lat": 40.7451295, "lon": -74.0093248 }, + { "lat": 40.7451557, "lon": -74.0093074 }, + { "lat": 40.7454793, "lon": -74.0092494 }, + { "lat": 40.7454357, "lon": -74.0087595 }, + { "lat": 40.7454552, "lon": -74.0086650 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1285638368, + "bounds": { + "minlat": 40.7454680, + "minlon": -74.0093358, + "maxlat": 40.7455315, + "maxlon": -74.0093096 + }, + "nodes": [ + 11335187206, + 11925988638 + ], + "geometry": [ + { "lat": 40.7455315, "lon": -74.0093096 }, + { "lat": 40.7454680, "lon": -74.0093358 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1285699310, + "bounds": { + "minlat": 40.7355863, + "minlon": -74.0018307, + "maxlat": 40.7357490, + "maxlon": -74.0017023 + }, + "nodes": [ + 11926471286, + 11926471294, + 11926471295, + 11926471296, + 11926471297, + 9297714754, + 11926471298, + 11926471299, + 11926471300, + 11926471301, + 11926471302, + 11926471292, + 11926471291, + 11926471279, + 11926471290, + 11926471289, + 11926471288, + 8262308496, + 11926471287, + 11926471286 + ], + "geometry": [ + { "lat": 40.7357389, "lon": -74.0018307 }, + { "lat": 40.7357396, "lon": -74.0018143 }, + { "lat": 40.7357490, "lon": -74.0017510 }, + { "lat": 40.7357455, "lon": -74.0017312 }, + { "lat": 40.7357417, "lon": -74.0017241 }, + { "lat": 40.7357358, "lon": -74.0017181 }, + { "lat": 40.7357274, "lon": -74.0017085 }, + { "lat": 40.7357139, "lon": -74.0017023 }, + { "lat": 40.7356969, "lon": -74.0017070 }, + { "lat": 40.7355885, "lon": -74.0017692 }, + { "lat": 40.7355863, "lon": -74.0018030 }, + { "lat": 40.7356337, "lon": -74.0017772 }, + { "lat": 40.7356460, "lon": -74.0017727 }, + { "lat": 40.7356642, "lon": -74.0017755 }, + { "lat": 40.7357000, "lon": -74.0017844 }, + { "lat": 40.7357148, "lon": -74.0017900 }, + { "lat": 40.7357266, "lon": -74.0018006 }, + { "lat": 40.7357327, "lon": -74.0018124 }, + { "lat": 40.7357368, "lon": -74.0018206 }, + { "lat": 40.7357389, "lon": -74.0018307 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1285699311, + "bounds": { + "minlat": 40.7355863, + "minlon": -74.0018336, + "maxlat": 40.7357327, + "maxlon": -74.0017727 + }, + "nodes": [ + 8262308496, + 11926471288, + 11926471289, + 11926471290, + 11926471279, + 11926471291, + 11926471292, + 11926471302, + 11926471303, + 8307642076, + 8307642075, + 8262308496 + ], + "geometry": [ + { "lat": 40.7357327, "lon": -74.0018124 }, + { "lat": 40.7357266, "lon": -74.0018006 }, + { "lat": 40.7357148, "lon": -74.0017900 }, + { "lat": 40.7357000, "lon": -74.0017844 }, + { "lat": 40.7356642, "lon": -74.0017755 }, + { "lat": 40.7356460, "lon": -74.0017727 }, + { "lat": 40.7356337, "lon": -74.0017772 }, + { "lat": 40.7355863, "lon": -74.0018030 }, + { "lat": 40.7355918, "lon": -74.0018336 }, + { "lat": 40.7356364, "lon": -74.0018091 }, + { "lat": 40.7356745, "lon": -74.0018039 }, + { "lat": 40.7357327, "lon": -74.0018124 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1285723598, + "bounds": { + "minlat": 40.7364599, + "minlon": -74.0011844, + "maxlat": 40.7365975, + "maxlon": -74.0011098 + }, + "nodes": [ + 42430828, + 11062719795, + 11062719791 + ], + "geometry": [ + { "lat": 40.7365975, "lon": -74.0011098 }, + { "lat": 40.7364791, "lon": -74.0011739 }, + { "lat": 40.7364599, "lon": -74.0011844 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1285723613, + "bounds": { + "minlat": 40.7302786, + "minlon": -74.0049229, + "maxlat": 40.7304017, + "maxlon": -74.0047566 + }, + "nodes": [ + 11926593540, + 11926593541, + 11926593521, + 11926593542, + 11926593543, + 11926593544, + 11926593517, + 11926593545, + 11926593546, + 11926593538, + 11926593530, + 11926593537, + 11926593536, + 11926593529, + 11926593540 + ], + "geometry": [ + { "lat": 40.7302933, "lon": -74.0049229 }, + { "lat": 40.7302833, "lon": -74.0049030 }, + { "lat": 40.7302786, "lon": -74.0048904 }, + { "lat": 40.7302825, "lon": -74.0048655 }, + { "lat": 40.7303043, "lon": -74.0048059 }, + { "lat": 40.7303164, "lon": -74.0047937 }, + { "lat": 40.7303447, "lon": -74.0047773 }, + { "lat": 40.7303792, "lon": -74.0047566 }, + { "lat": 40.7304017, "lon": -74.0047693 }, + { "lat": 40.7303419, "lon": -74.0048045 }, + { "lat": 40.7303331, "lon": -74.0048114 }, + { "lat": 40.7303282, "lon": -74.0048156 }, + { "lat": 40.7303219, "lon": -74.0048302 }, + { "lat": 40.7303112, "lon": -74.0048648 }, + { "lat": 40.7302933, "lon": -74.0049229 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1285723614, + "bounds": { + "minlat": 40.7302933, + "minlon": -74.0049365, + "maxlat": 40.7304300, + "maxlon": -74.0047693 + }, + "nodes": [ + 11926593540, + 11926593547, + 7465577421, + 11926593548, + 11926593546, + 11926593538, + 11926593530, + 11926593537, + 11926593536, + 11926593529, + 11926593540 + ], + "geometry": [ + { "lat": 40.7302933, "lon": -74.0049229 }, + { "lat": 40.7303024, "lon": -74.0049365 }, + { "lat": 40.7303284, "lon": -74.0048531 }, + { "lat": 40.7304300, "lon": -74.0047953 }, + { "lat": 40.7304017, "lon": -74.0047693 }, + { "lat": 40.7303419, "lon": -74.0048045 }, + { "lat": 40.7303331, "lon": -74.0048114 }, + { "lat": 40.7303282, "lon": -74.0048156 }, + { "lat": 40.7303219, "lon": -74.0048302 }, + { "lat": 40.7303112, "lon": -74.0048648 }, + { "lat": 40.7302933, "lon": -74.0049229 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1285782305, + "bounds": { + "minlat": 40.7403058, + "minlon": -74.0082279, + "maxlat": 40.7404227, + "maxlon": -74.0079432 + }, + "nodes": [ + 11926998356, + 12162436944, + 8262308730, + 42431154 + ], + "geometry": [ + { "lat": 40.7404227, "lon": -74.0082279 }, + { "lat": 40.7403579, "lon": -74.0080705 }, + { "lat": 40.7403441, "lon": -74.0080368 }, + { "lat": 40.7403058, "lon": -74.0079432 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Little West 12th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1286112705, + "bounds": { + "minlat": 40.7212765, + "minlon": -73.9225315, + "maxlat": 40.7215127, + "maxlon": -73.9219273 + }, + "nodes": [ + 11929445723, + 11929445734, + 11929445724, + 11929445725, + 11929445726, + 11929445727, + 11929445728, + 11929445729, + 11929445730, + 11929445731, + 11929445732, + 11929445733, + 5482678226 + ], + "geometry": [ + { "lat": 40.7214008, "lon": -73.9219273 }, + { "lat": 40.7214247, "lon": -73.9220386 }, + { "lat": 40.7215022, "lon": -73.9224005 }, + { "lat": 40.7215127, "lon": -73.9224652 }, + { "lat": 40.7215109, "lon": -73.9225006 }, + { "lat": 40.7214952, "lon": -73.9225276 }, + { "lat": 40.7214759, "lon": -73.9225315 }, + { "lat": 40.7214239, "lon": -73.9225238 }, + { "lat": 40.7213574, "lon": -73.9225022 }, + { "lat": 40.7213369, "lon": -73.9224822 }, + { "lat": 40.7213282, "lon": -73.9224460 }, + { "lat": 40.7213008, "lon": -73.9220886 }, + { "lat": 40.7212765, "lon": -73.9219754 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1287111780, + "bounds": { + "minlat": 40.7570784, + "minlon": -73.9932168, + "maxlat": 40.7573846, + "maxlon": -73.9930290 + }, + "nodes": [ + 477284505, + 10686429947, + 9509518361, + 9509518362, + 9509518363 + ], + "geometry": [ + { "lat": 40.7573846, "lon": -73.9932168 }, + { "lat": 40.7573249, "lon": -73.9931824 }, + { "lat": 40.7572432, "lon": -73.9931928 }, + { "lat": 40.7571447, "lon": -73.9931165 }, + { "lat": 40.7570784, "lon": -73.9930290 } + ], + "tags": { + "highway": "service", + "layer": "3", + "level": "4", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1287299167, + "bounds": { + "minlat": 40.8001178, + "minlon": -73.9251737, + "maxlat": 40.8001955, + "maxlon": -73.9239157 + }, + "nodes": [ + 3640160580, + 9153856274, + 277482039, + 13364017906, + 3640160334, + 9153856275, + 9153856276, + 277482040, + 9153856277, + 277482087 + ], + "geometry": [ + { "lat": 40.8001534, "lon": -73.9239157 }, + { "lat": 40.8001625, "lon": -73.9239823 }, + { "lat": 40.8001729, "lon": -73.9240588 }, + { "lat": 40.8001896, "lon": -73.9242392 }, + { "lat": 40.8001955, "lon": -73.9244013 }, + { "lat": 40.8001919, "lon": -73.9245547 }, + { "lat": 40.8001840, "lon": -73.9247203 }, + { "lat": 40.8001696, "lon": -73.9248527 }, + { "lat": 40.8001490, "lon": -73.9249914 }, + { "lat": 40.8001178, "lon": -73.9251737 } + ], + "tags": { + "highway": "unclassified", + "name": "Bronx Shore Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1287670360, + "bounds": { + "minlat": 40.7415619, + "minlon": -73.9540774, + "maxlat": 40.7415712, + "maxlon": -73.9539927 + }, + "nodes": [ + 11942100831, + 4148924140 + ], + "geometry": [ + { "lat": 40.7415619, "lon": -73.9539927 }, + { "lat": 40.7415712, "lon": -73.9540774 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Long Island Expressway", + "name_1": "Queens Midtown Expressway", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "tiger:cfcc": "A15", + "tiger:county": "Queens, NY", + "tiger:name_base": "I-495", + "tiger:name_base_1": "Queens Midtown", + "tiger:name_base_2": "Long Island", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy", + "tiger:reviewed": "no", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1287670361, + "bounds": { + "minlat": 40.7415443, + "minlon": -73.9540773, + "maxlat": 40.7415619, + "maxlon": -73.9539927 + }, + "nodes": [ + 11942100831, + 11942100832 + ], + "geometry": [ + { "lat": 40.7415619, "lon": -73.9539927 }, + { "lat": 40.7415443, "lon": -73.9540773 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Long Island Expressway", + "name_1": "Queens Midtown Expressway", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "tiger:cfcc": "A15", + "tiger:county": "Queens, NY", + "tiger:name_base": "I-495", + "tiger:name_base_1": "Queens Midtown", + "tiger:name_base_2": "Long Island", + "tiger:name_type_1": "Expy", + "tiger:name_type_2": "Expy", + "tiger:reviewed": "no", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1287670362, + "bounds": { + "minlat": 40.7415275, + "minlon": -73.9710581, + "maxlat": 40.7481051, + "maxlon": -73.9540773 + }, + "nodes": [ + 11942100832, + 11942100833, + 11942100834, + 11942100835, + 11942100836, + 11942100837, + 11942100838, + 11942100839, + 11942100840, + 11942100841, + 11942100842, + 11942100843, + 11942100844, + 11942100845, + 11942100846, + 11942100847, + 11942100848, + 11942100849, + 11942100850, + 11942100851, + 11942100852, + 11942100853, + 11942100854, + 11942100855, + 11942100856, + 11942100857, + 11942100858, + 11942100859, + 11942100860, + 11942100861 + ], + "geometry": [ + { "lat": 40.7415443, "lon": -73.9540773 }, + { "lat": 40.7415275, "lon": -73.9544235 }, + { "lat": 40.7415281, "lon": -73.9547055 }, + { "lat": 40.7415309, "lon": -73.9549746 }, + { "lat": 40.7415637, "lon": -73.9552647 }, + { "lat": 40.7416084, "lon": -73.9555608 }, + { "lat": 40.7422951, "lon": -73.9591574 }, + { "lat": 40.7423849, "lon": -73.9595490 }, + { "lat": 40.7425074, "lon": -73.9599634 }, + { "lat": 40.7426309, "lon": -73.9602476 }, + { "lat": 40.7427643, "lon": -73.9605523 }, + { "lat": 40.7429176, "lon": -73.9608337 }, + { "lat": 40.7430765, "lon": -73.9610921 }, + { "lat": 40.7477156, "lon": -73.9678973 }, + { "lat": 40.7478174, "lon": -73.9680865 }, + { "lat": 40.7479118, "lon": -73.9682925 }, + { "lat": 40.7479838, "lon": -73.9684981 }, + { "lat": 40.7480398, "lon": -73.9686984 }, + { "lat": 40.7480856, "lon": -73.9689310 }, + { "lat": 40.7481043, "lon": -73.9691557 }, + { "lat": 40.7481051, "lon": -73.9694000 }, + { "lat": 40.7480856, "lon": -73.9696229 }, + { "lat": 40.7480496, "lon": -73.9698565 }, + { "lat": 40.7479912, "lon": -73.9700778 }, + { "lat": 40.7479227, "lon": -73.9702706 }, + { "lat": 40.7478161, "lon": -73.9704697 }, + { "lat": 40.7476776, "lon": -73.9706935 }, + { "lat": 40.7475681, "lon": -73.9708347 }, + { "lat": 40.7474252, "lon": -73.9709712 }, + { "lat": 40.7472887, "lon": -73.9710581 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "layer": "-1", + "lit": "24/7", + "maxheight": "12'1\"", + "maxspeed": "40 mph", + "maxwidth": "8'6\"", + "name": "Queens-Midtown Tunnel", + "oneway": "yes", + "ref": "I 495", + "short_name": "Midtown Tunnel", + "toll": "yes", + "tunnel": "yes", + "wikidata": "Q125138", + "wikipedia": "en:Queens–Midtown Tunnel" + } +}, +{ + "type": "way", + "id": 1287670363, + "bounds": { + "minlat": 40.7459325, + "minlon": -73.9731246, + "maxlat": 40.7472887, + "maxlon": -73.9710581 + }, + "nodes": [ + 11942100861, + 11942100862, + 11942100863, + 11942100864, + 11942100865, + 11942100866, + 11942100867, + 11942100868, + 11942111769 + ], + "geometry": [ + { "lat": 40.7472887, "lon": -73.9710581 }, + { "lat": 40.7464587, "lon": -73.9716375 }, + { "lat": 40.7463283, "lon": -73.9717614 }, + { "lat": 40.7462104, "lon": -73.9719193 }, + { "lat": 40.7461037, "lon": -73.9721173 }, + { "lat": 40.7460159, "lon": -73.9723524 }, + { "lat": 40.7459557, "lon": -73.9726168 }, + { "lat": 40.7459325, "lon": -73.9728541 }, + { "lat": 40.7459379, "lon": -73.9731246 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "layer": "-2", + "lit": "24/7", + "maxheight": "12'1\"", + "maxspeed": "40 mph", + "maxwidth": "8'6\"", + "name": "Queens-Midtown Tunnel", + "oneway": "yes", + "ref": "I 495", + "short_name": "Midtown Tunnel", + "toll": "yes", + "tunnel": "yes", + "wikidata": "Q125138", + "wikipedia": "en:Queens–Midtown Tunnel" + } +}, +{ + "type": "way", + "id": 1287670364, + "bounds": { + "minlat": 40.7459379, + "minlon": -73.9736330, + "maxlat": 40.7460737, + "maxlon": -73.9731246 + }, + "nodes": [ + 11942111769, + 11942111770, + 11942111771, + 11942111772, + 11942111773, + 11942111774, + 11942111775, + 11942111776 + ], + "geometry": [ + { "lat": 40.7459379, "lon": -73.9731246 }, + { "lat": 40.7459412, "lon": -73.9731740 }, + { "lat": 40.7459520, "lon": -73.9732401 }, + { "lat": 40.7459674, "lon": -73.9733110 }, + { "lat": 40.7459830, "lon": -73.9733717 }, + { "lat": 40.7459990, "lon": -73.9734218 }, + { "lat": 40.7460197, "lon": -73.9734792 }, + { "lat": 40.7460737, "lon": -73.9736330 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "oneway": "yes", + "ref": "I 495", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1287670365, + "bounds": { + "minlat": 40.7413886, + "minlon": -73.9540716, + "maxlat": 40.7414195, + "maxlon": -73.9533573 + }, + "nodes": [ + 11942111777, + 11942111778, + 11942111779, + 11942111780, + 11942111781 + ], + "geometry": [ + { "lat": 40.7414195, "lon": -73.9540716 }, + { "lat": 40.7414191, "lon": -73.9539030 }, + { "lat": 40.7414127, "lon": -73.9537619 }, + { "lat": 40.7414033, "lon": -73.9535464 }, + { "lat": 40.7413886, "lon": -73.9533573 } + ], + "tags": { + "highway": "motorway", + "lanes": "1", + "maxspeed": "40 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1287670366, + "bounds": { + "minlat": 40.7413834, + "minlon": -73.9709009, + "maxlat": 40.7479193, + "maxlon": -73.9540716 + }, + "nodes": [ + 11942111782, + 11942111783, + 11942111784, + 11942111785, + 11942111786, + 11942111787, + 11942111788, + 11942111789, + 11942111790, + 11942111791, + 11942111792, + 11942111793, + 11942111794, + 11942111795, + 11942111796, + 11942111797, + 11942111798, + 11942111799, + 11942111800, + 11942111801, + 11942111802, + 11942111803, + 11942111804, + 11942111805, + 11942111806, + 11942111807, + 11942111808, + 11942111809, + 11942111810, + 11942111777 + ], + "geometry": [ + { "lat": 40.7472101, "lon": -73.9709009 }, + { "lat": 40.7473003, "lon": -73.9708307 }, + { "lat": 40.7474500, "lon": -73.9706953 }, + { "lat": 40.7475631, "lon": -73.9705565 }, + { "lat": 40.7476682, "lon": -73.9703995 }, + { "lat": 40.7477440, "lon": -73.9702261 }, + { "lat": 40.7478135, "lon": -73.9700239 }, + { "lat": 40.7478578, "lon": -73.9698550 }, + { "lat": 40.7479035, "lon": -73.9696424 }, + { "lat": 40.7479193, "lon": -73.9694362 }, + { "lat": 40.7479187, "lon": -73.9692121 }, + { "lat": 40.7479079, "lon": -73.9690109 }, + { "lat": 40.7478752, "lon": -73.9688032 }, + { "lat": 40.7478263, "lon": -73.9686226 }, + { "lat": 40.7477706, "lon": -73.9684618 }, + { "lat": 40.7476555, "lon": -73.9682142 }, + { "lat": 40.7475675, "lon": -73.9680457 }, + { "lat": 40.7429365, "lon": -73.9612562 }, + { "lat": 40.7427688, "lon": -73.9609712 }, + { "lat": 40.7426265, "lon": -73.9607014 }, + { "lat": 40.7424848, "lon": -73.9603827 }, + { "lat": 40.7423689, "lon": -73.9600614 }, + { "lat": 40.7422505, "lon": -73.9596663 }, + { "lat": 40.7421511, "lon": -73.9592040 }, + { "lat": 40.7415018, "lon": -73.9557598 }, + { "lat": 40.7414533, "lon": -73.9554880 }, + { "lat": 40.7414180, "lon": -73.9552477 }, + { "lat": 40.7413902, "lon": -73.9549836 }, + { "lat": 40.7413834, "lon": -73.9547499 }, + { "lat": 40.7414195, "lon": -73.9540716 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "layer": "-1", + "lit": "24/7", + "maxheight": "12'1\"", + "maxspeed": "40 mph", + "maxwidth": "8'6\"", + "name": "Queens-Midtown Tunnel", + "oneway": "yes", + "ref": "I 495", + "short_name": "Midtown Tunnel", + "toll": "yes", + "tunnel": "yes", + "wikidata": "Q125138", + "wikipedia": "en:Queens–Midtown Tunnel" + } +}, +{ + "type": "way", + "id": 1287670367, + "bounds": { + "minlat": 40.7456467, + "minlon": -73.9724392, + "maxlat": 40.7472101, + "maxlon": -73.9709009 + }, + "nodes": [ + 11942111811, + 11942111812, + 11942111813, + 11942111814, + 11942111815, + 11942111782 + ], + "geometry": [ + { "lat": 40.7456467, "lon": -73.9724392 }, + { "lat": 40.7457351, "lon": -73.9722020 }, + { "lat": 40.7458455, "lon": -73.9720286 }, + { "lat": 40.7459544, "lon": -73.9718932 }, + { "lat": 40.7461212, "lon": -73.9716966 }, + { "lat": 40.7472101, "lon": -73.9709009 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "layer": "-2", + "lit": "24/7", + "maxheight": "12'1\"", + "maxspeed": "40 mph", + "maxwidth": "8'6\"", + "name": "Queens-Midtown Tunnel", + "oneway": "yes", + "ref": "I 495", + "short_name": "Midtown Tunnel", + "toll": "yes", + "tunnel": "yes", + "wikidata": "Q125138", + "wikipedia": "en:Queens–Midtown Tunnel" + } +}, +{ + "type": "way", + "id": 1287670368, + "bounds": { + "minlat": 40.7455685, + "minlon": -73.9731959, + "maxlat": 40.7456467, + "maxlon": -73.9724392 + }, + "nodes": [ + 11942111816, + 11942111817, + 11942111818, + 11942111819, + 11942111820, + 11942111821, + 11942111822, + 11942111823, + 11942111824, + 11942111825, + 11942111826, + 11942111811 + ], + "geometry": [ + { "lat": 40.7455877, "lon": -73.9731959 }, + { "lat": 40.7455764, "lon": -73.9731205 }, + { "lat": 40.7455704, "lon": -73.9730406 }, + { "lat": 40.7455688, "lon": -73.9729810 }, + { "lat": 40.7455685, "lon": -73.9729264 }, + { "lat": 40.7455715, "lon": -73.9728697 }, + { "lat": 40.7455741, "lon": -73.9727960 }, + { "lat": 40.7455785, "lon": -73.9727474 }, + { "lat": 40.7455850, "lon": -73.9726808 }, + { "lat": 40.7455971, "lon": -73.9726185 }, + { "lat": 40.7456101, "lon": -73.9725572 }, + { "lat": 40.7456467, "lon": -73.9724392 } + ], + "tags": { + "highway": "motorway", + "lanes": "1", + "maxheight": "12'1\"", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1287670369, + "bounds": { + "minlat": 40.7459656, + "minlon": -73.9747018, + "maxlat": 40.7460356, + "maxlon": -73.9742114 + }, + "nodes": [ + 11942111840, + 11942111839, + 11942111838 + ], + "geometry": [ + { "lat": 40.7460356, "lon": -73.9747018 }, + { "lat": 40.7460233, "lon": -73.9744986 }, + { "lat": 40.7459656, "lon": -73.9742114 } + ], + "tags": { + "highway": "motorway", + "lanes": "2", + "maxheight": "12'1\"", + "oneway": "yes", + "ref": "I 495", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1287670370, + "bounds": { + "minlat": 40.7460737, + "minlon": -73.9739093, + "maxlat": 40.7461806, + "maxlon": -73.9736330 + }, + "nodes": [ + 11942111776, + 11942111843 + ], + "geometry": [ + { "lat": 40.7460737, "lon": -73.9736330 }, + { "lat": 40.7461806, "lon": -73.9739093 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "oneway": "yes", + "ref": "I 495", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1287670371, + "bounds": { + "minlat": 40.7461806, + "minlon": -73.9741058, + "maxlat": 40.7462544, + "maxlon": -73.9739093 + }, + "nodes": [ + 11942111843, + 11942111842 + ], + "geometry": [ + { "lat": 40.7461806, "lon": -73.9739093 }, + { "lat": 40.7462544, "lon": -73.9741058 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "destination:lanes": "Downtown;34th to 35th Street;2nd Avenue|Crosstown;37th Street", + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "oneway": "yes", + "ref": "I 495", + "toll": "yes", + "turn:lanes": "slight_left|slight_right" + } +}, +{ + "type": "way", + "id": 1288096793, + "bounds": { + "minlat": 40.7684674, + "minlon": -73.9840081, + "maxlat": 40.7691845, + "maxlon": -73.9834848 + }, + "nodes": [ + 8390080232, + 11945388420 + ], + "geometry": [ + { "lat": 40.7691845, "lon": -73.9834848 }, + { "lat": 40.7684674, "lon": -73.9840081 } + ], + "tags": { + "highway": "service", + "level": "0", + "location": "underground", + "motor_vehicle": "destination", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1288096794, + "bounds": { + "minlat": 40.7681880, + "minlon": -73.9842070, + "maxlat": 40.7684674, + "maxlon": -73.9840081 + }, + "nodes": [ + 11945388420, + 11945388422, + 11945388421 + ], + "geometry": [ + { "lat": 40.7684674, "lon": -73.9840081 }, + { "lat": 40.7682749, "lon": -73.9841451 }, + { "lat": 40.7681880, "lon": -73.9842070 } + ], + "tags": { + "highway": "service", + "motor_vehicle": "destination", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1288211581, + "bounds": { + "minlat": 40.7960700, + "minlon": -73.9488026, + "maxlat": 40.7974838, + "maxlon": -73.9454293 + }, + "nodes": [ + 42458112, + 596776314, + 7803460131, + 7803460144, + 42446152, + 7803460146, + 5481978583, + 7803460139, + 42446721 + ], + "geometry": [ + { "lat": 40.7960700, "lon": -73.9454293 }, + { "lat": 40.7961828, "lon": -73.9456927 }, + { "lat": 40.7962123, "lon": -73.9457642 }, + { "lat": 40.7967557, "lon": -73.9470684 }, + { "lat": 40.7968004, "lon": -73.9471765 }, + { "lat": 40.7968485, "lon": -73.9472925 }, + { "lat": 40.7971661, "lon": -73.9480496 }, + { "lat": 40.7974313, "lon": -73.9486781 }, + { "lat": 40.7974838, "lon": -73.9488026 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 111th Street", + "name:ru": "Восточная 111-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1288211582, + "bounds": { + "minlat": 40.7954494, + "minlon": -73.9454293, + "maxlat": 40.7960700, + "maxlon": -73.9439488 + }, + "nodes": [ + 42447192, + 7811793776, + 10680078410, + 7803460128, + 42458112 + ], + "geometry": [ + { "lat": 40.7954494, "lon": -73.9439488 }, + { "lat": 40.7954856, "lon": -73.9440338 }, + { "lat": 40.7957119, "lon": -73.9445686 }, + { "lat": 40.7960414, "lon": -73.9453644 }, + { "lat": 40.7960700, "lon": -73.9454293 } + ], + "tags": { + "alt_name": "Young Lords Way", + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "mapillary": "1501093117110154", + "maxspeed": "25 mph", + "name": "East 111th Street", + "name:ru": "Восточная 111-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1289161775, + "bounds": { + "minlat": 40.7467961, + "minlon": -73.9884727, + "maxlat": 40.7469695, + "maxlon": -73.9884165 + }, + "nodes": [ + 7369969942, + 11766442642, + 9198484656, + 42428227 + ], + "geometry": [ + { "lat": 40.7469695, "lon": -73.9884165 }, + { "lat": 40.7469196, "lon": -73.9884502 }, + { "lat": 40.7468655, "lon": -73.9884597 }, + { "lat": 40.7467961, "lon": -73.9884727 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "planter", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1289299883, + "bounds": { + "minlat": 40.8403526, + "minlon": -73.9200237, + "maxlat": 40.8408111, + "maxlon": -73.9195662 + }, + "nodes": [ + 11955331839, + 11955331840, + 11955331841, + 11955331842, + 13249061679, + 11955331843 + ], + "geometry": [ + { "lat": 40.8404116, "lon": -73.9200237 }, + { "lat": 40.8403902, "lon": -73.9199489 }, + { "lat": 40.8403526, "lon": -73.9198121 }, + { "lat": 40.8407027, "lon": -73.9196251 }, + { "lat": 40.8407249, "lon": -73.9196130 }, + { "lat": 40.8408111, "lon": -73.9195662 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1289604771, + "bounds": { + "minlat": 40.7391716, + "minlon": -74.0037552, + "maxlat": 40.7393719, + "maxlon": -74.0032986 + }, + "nodes": [ + 8307463659, + 42429390 + ], + "geometry": [ + { "lat": 40.7391716, "lon": -74.0032986 }, + { "lat": 40.7393719, "lon": -74.0037552 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:forward": "slight_left" + } +}, +{ + "type": "way", + "id": 1289604772, + "bounds": { + "minlat": 40.7388542, + "minlon": -74.0035479, + "maxlat": 40.7390557, + "maxlon": -74.0033852 + }, + "nodes": [ + 8307463668, + 8307463661, + 8307463662, + 8307463663, + 8307463664, + 8307463665, + 8307463666 + ], + "geometry": [ + { "lat": 40.7390557, "lon": -74.0033852 }, + { "lat": 40.7390394, "lon": -74.0034106 }, + { "lat": 40.7390223, "lon": -74.0034750 }, + { "lat": 40.7389512, "lon": -74.0035479 }, + { "lat": 40.7389119, "lon": -74.0035417 }, + { "lat": 40.7388788, "lon": -74.0034837 }, + { "lat": 40.7388542, "lon": -74.0034414 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1289604773, + "bounds": { + "minlat": 40.7389931, + "minlon": -74.0032880, + "maxlat": 40.7391128, + "maxlon": -74.0031635 + }, + "nodes": [ + 8307463669, + 4816137912, + 6211332483 + ], + "geometry": [ + { "lat": 40.7389931, "lon": -74.0032880 }, + { "lat": 40.7390531, "lon": -74.0032202 }, + { "lat": 40.7391128, "lon": -74.0031635 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1290143445, + "bounds": { + "minlat": 40.7246580, + "minlon": -73.9481125, + "maxlat": 40.7248850, + "maxlon": -73.9474250 + }, + "nodes": [ + 5051959089, + 6348469396, + 9929558990, + 42479294 + ], + "geometry": [ + { "lat": 40.7246580, "lon": -73.9481125 }, + { "lat": 40.7246881, "lon": -73.9480211 }, + { "lat": 40.7248615, "lon": -73.9474960 }, + { "lat": 40.7248850, "lon": -73.9474250 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "delivery", + "highway": "residential", + "name": "Nassau Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Nassau", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1290143446, + "bounds": { + "minlat": 40.7243360, + "minlon": -73.9490830, + "maxlat": 40.7246177, + "maxlon": -73.9482326 + }, + "nodes": [ + 42479286, + 9789356760, + 6348469395, + 2987758886 + ], + "geometry": [ + { "lat": 40.7243360, "lon": -73.9490830 }, + { "lat": 40.7243568, "lon": -73.9490200 }, + { "lat": 40.7245889, "lon": -73.9483188 }, + { "lat": 40.7246177, "lon": -73.9482326 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "delivery", + "highway": "residential", + "name": "Nassau Avenue", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1290576312, + "bounds": { + "minlat": 40.8279777, + "minlon": -73.9261802, + "maxlat": 40.8280832, + "maxlon": -73.9258471 + }, + "nodes": [ + 2411145323, + 13022118451, + 9910729414, + 11965769186 + ], + "geometry": [ + { "lat": 40.8279777, "lon": -73.9258471 }, + { "lat": 40.8280185, "lon": -73.9259761 }, + { "lat": 40.8280363, "lon": -73.9260328 }, + { "lat": 40.8280832, "lon": -73.9261802 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes": "left|through", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1290843584, + "bounds": { + "minlat": 40.7730636, + "minlon": -73.9252821, + "maxlat": 40.7732901, + "maxlon": -73.9251003 + }, + "nodes": [ + 42826027, + 8303780727 + ], + "geometry": [ + { "lat": 40.7732901, "lon": -73.9251003 }, + { "lat": 40.7730636, "lon": -73.9252821 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1290843585, + "bounds": { + "minlat": 40.7722511, + "minlon": -73.9259342, + "maxlat": 40.7730636, + "maxlon": -73.9252821 + }, + "nodes": [ + 8303780727, + 10785778237, + 3570422552, + 2063038040 + ], + "geometry": [ + { "lat": 40.7730636, "lon": -73.9252821 }, + { "lat": 40.7723835, "lon": -73.9258279 }, + { "lat": 40.7723384, "lon": -73.9258641 }, + { "lat": 40.7722511, "lon": -73.9259342 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1290843586, + "bounds": { + "minlat": 40.7732901, + "minlon": -73.9251003, + "maxlat": 40.7734857, + "maxlon": -73.9249433 + }, + "nodes": [ + 42826023, + 8486549797, + 42826027 + ], + "geometry": [ + { "lat": 40.7734857, "lon": -73.9249433 }, + { "lat": 40.7734454, "lon": -73.9249757 }, + { "lat": 40.7732901, "lon": -73.9251003 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1291236592, + "bounds": { + "minlat": 40.8610227, + "minlon": -73.9205509, + "maxlat": 40.8614086, + "maxlon": -73.9202773 + }, + "nodes": [ + 11971526843, + 11971526844, + 11971526846, + 11971526845 + ], + "geometry": [ + { "lat": 40.8610227, "lon": -73.9205509 }, + { "lat": 40.8610827, "lon": -73.9205093 }, + { "lat": 40.8610985, "lon": -73.9204981 }, + { "lat": 40.8614086, "lon": -73.9202773 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1291932918, + "bounds": { + "minlat": 40.8492251, + "minlon": -73.9300363, + "maxlat": 40.8492897, + "maxlon": -73.9298656 + }, + "nodes": [ + 11976751697, + 11976751699, + 11976751698 + ], + "geometry": [ + { "lat": 40.8492251, "lon": -73.9298656 }, + { "lat": 40.8492410, "lon": -73.9299087 }, + { "lat": 40.8492897, "lon": -73.9300363 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1291932919, + "bounds": { + "minlat": 40.8519077, + "minlon": -73.9343999, + "maxlat": 40.8519972, + "maxlon": -73.9343482 + }, + "nodes": [ + 11976751701, + 11976751703, + 11976751702 + ], + "geometry": [ + { "lat": 40.8519077, "lon": -73.9343999 }, + { "lat": 40.8519831, "lon": -73.9343564 }, + { "lat": 40.8519972, "lon": -73.9343482 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1291932920, + "bounds": { + "minlat": 40.8519317, + "minlon": -73.9344599, + "maxlat": 40.8520217, + "maxlon": -73.9344063 + }, + "nodes": [ + 11976751704, + 11976751706, + 11976751705 + ], + "geometry": [ + { "lat": 40.8520217, "lon": -73.9344063 }, + { "lat": 40.8520076, "lon": -73.9344147 }, + { "lat": 40.8519317, "lon": -73.9344599 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1291932922, + "bounds": { + "minlat": 40.8492604, + "minlon": -73.9324923, + "maxlat": 40.8494827, + "maxlon": -73.9323302 + }, + "nodes": [ + 11976751741, + 11976751743, + 11976751742 + ], + "geometry": [ + { "lat": 40.8494827, "lon": -73.9323302 }, + { "lat": 40.8494369, "lon": -73.9323637 }, + { "lat": 40.8492604, "lon": -73.9324923 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1292057551, + "bounds": { + "minlat": 40.8356999, + "minlon": -73.9700821, + "maxlat": 40.8357788, + "maxlon": -73.9698062 + }, + "nodes": [ + 5720061691, + 5720061664 + ], + "geometry": [ + { "lat": 40.8356999, "lon": -73.9698062 }, + { "lat": 40.8357788, "lon": -73.9700821 } + ], + "tags": { + "highway": "residential", + "name": "Hudson Cove", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1292144949, + "bounds": { + "minlat": 40.8758756, + "minlon": -73.9247644, + "maxlat": 40.8764425, + "maxlon": -73.9242175 + }, + "nodes": [ + 11978683196, + 12063632731, + 11978683195, + 12063632730, + 11978683194, + 12063632728, + 11978683193, + 12063632727, + 11978683192, + 8584769103 + ], + "geometry": [ + { "lat": 40.8758756, "lon": -73.9247415 }, + { "lat": 40.8758821, "lon": -73.9247510 }, + { "lat": 40.8758890, "lon": -73.9247574 }, + { "lat": 40.8758985, "lon": -73.9247628 }, + { "lat": 40.8759091, "lon": -73.9247644 }, + { "lat": 40.8759209, "lon": -73.9247630 }, + { "lat": 40.8759325, "lon": -73.9247582 }, + { "lat": 40.8759423, "lon": -73.9247515 }, + { "lat": 40.8759529, "lon": -73.9247415 }, + { "lat": 40.8764425, "lon": -73.9242175 } + ], + "tags": { + "access": "private", + "bridge": "yes", + "highway": "service", + "layer": "2", + "oneway": "yes", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1292210581, + "bounds": { + "minlat": 40.8058941, + "minlon": -73.9254407, + "maxlat": 40.8059786, + "maxlon": -73.9252371 + }, + "nodes": [ + 595801009, + 7554071442, + 3529496430 + ], + "geometry": [ + { "lat": 40.8059786, "lon": -73.9254407 }, + { "lat": 40.8059553, "lon": -73.9253833 }, + { "lat": 40.8058941, "lon": -73.9252371 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1292583112, + "bounds": { + "minlat": 40.8167823, + "minlon": -74.0120907, + "maxlat": 40.8182755, + "maxlon": -74.0098988 + }, + "nodes": [ + 11982583617, + 11982583643, + 11982583618, + 11982583619, + 11982583620, + 11982583621, + 11982583622, + 11982583623, + 11982583624, + 11982583644, + 11982583634, + 11982583625, + 11982583626, + 11982583627, + 11982583628, + 11982583629, + 11982583630, + 11982583631, + 11982583632, + 11982583633, + 11982583634 + ], + "geometry": [ + { "lat": 40.8167823, "lon": -74.0100351 }, + { "lat": 40.8168714, "lon": -74.0099638 }, + { "lat": 40.8169528, "lon": -74.0098988 }, + { "lat": 40.8171421, "lon": -74.0102524 }, + { "lat": 40.8172770, "lon": -74.0104924 }, + { "lat": 40.8173237, "lon": -74.0105815 }, + { "lat": 40.8173433, "lon": -74.0106491 }, + { "lat": 40.8173618, "lon": -74.0107209 }, + { "lat": 40.8174075, "lon": -74.0108043 }, + { "lat": 40.8177338, "lon": -74.0113952 }, + { "lat": 40.8177984, "lon": -74.0115121 }, + { "lat": 40.8178187, "lon": -74.0115488 }, + { "lat": 40.8181287, "lon": -74.0120907 }, + { "lat": 40.8182755, "lon": -74.0119456 }, + { "lat": 40.8181537, "lon": -74.0117285 }, + { "lat": 40.8180145, "lon": -74.0114640 }, + { "lat": 40.8179949, "lon": -74.0114367 }, + { "lat": 40.8179579, "lon": -74.0114166 }, + { "lat": 40.8179285, "lon": -74.0114123 }, + { "lat": 40.8178926, "lon": -74.0114310 }, + { "lat": 40.8177984, "lon": -74.0115121 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1292583113, + "bounds": { + "minlat": 40.8171980, + "minlon": -74.0121995, + "maxlat": 40.8181287, + "maxlon": -74.0107837 + }, + "nodes": [ + 11982583626, + 11982583635, + 11982583636, + 11982583637, + 11982583640, + 11982583638, + 11982583639, + 7961450143 + ], + "geometry": [ + { "lat": 40.8181287, "lon": -74.0120907 }, + { "lat": 40.8180160, "lon": -74.0121995 }, + { "lat": 40.8176252, "lon": -74.0115006 }, + { "lat": 40.8175069, "lon": -74.0112897 }, + { "lat": 40.8173278, "lon": -74.0109587 }, + { "lat": 40.8172687, "lon": -74.0108642 }, + { "lat": 40.8172382, "lon": -74.0108283 }, + { "lat": 40.8171980, "lon": -74.0107837 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1292583114, + "bounds": { + "minlat": 40.8171980, + "minlon": -74.0107837, + "maxlat": 40.8173433, + "maxlon": -74.0106491 + }, + "nodes": [ + 7961450143, + 11982583642, + 11982583622 + ], + "geometry": [ + { "lat": 40.8171980, "lon": -74.0107837 }, + { "lat": 40.8172711, "lon": -74.0107160 }, + { "lat": 40.8173433, "lon": -74.0106491 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1292583115, + "bounds": { + "minlat": 40.8168714, + "minlon": -74.0107160, + "maxlat": 40.8172711, + "maxlon": -74.0099638 + }, + "nodes": [ + 11982583642, + 11982583643 + ], + "geometry": [ + { "lat": 40.8172711, "lon": -74.0107160 }, + { "lat": 40.8168714, "lon": -74.0099638 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1292583116, + "bounds": { + "minlat": 40.8176252, + "minlon": -74.0115006, + "maxlat": 40.8177338, + "maxlon": -74.0113952 + }, + "nodes": [ + 11982583644, + 11982583636 + ], + "geometry": [ + { "lat": 40.8177338, "lon": -74.0113952 }, + { "lat": 40.8176252, "lon": -74.0115006 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1292928428, + "bounds": { + "minlat": 40.7423717, + "minlon": -74.0027047, + "maxlat": 40.7425783, + "maxlon": -74.0024490 + }, + "nodes": [ + 11986125263, + 11986125257, + 11986125258, + 11986125254, + 11986125262, + 11986125259, + 11986125263 + ], + "geometry": [ + { "lat": 40.7425783, "lon": -74.0026010 }, + { "lat": 40.7424354, "lon": -74.0027047 }, + { "lat": 40.7424117, "lon": -74.0026483 }, + { "lat": 40.7423717, "lon": -74.0025530 }, + { "lat": 40.7425150, "lon": -74.0024490 }, + { "lat": 40.7425546, "lon": -74.0025441 }, + { "lat": 40.7425783, "lon": -74.0026010 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1292928430, + "bounds": { + "minlat": 40.7425150, + "minlon": -74.0026010, + "maxlat": 40.7426019, + "maxlon": -74.0024332 + }, + "nodes": [ + 11986125260, + 11986125263, + 11986125259, + 11986125262, + 11986125255, + 11986125253, + 11986125260 + ], + "geometry": [ + { "lat": 40.7426019, "lon": -74.0025842 }, + { "lat": 40.7425783, "lon": -74.0026010 }, + { "lat": 40.7425546, "lon": -74.0025441 }, + { "lat": 40.7425150, "lon": -74.0024490 }, + { "lat": 40.7425377, "lon": -74.0024332 }, + { "lat": 40.7425777, "lon": -74.0025272 }, + { "lat": 40.7426019, "lon": -74.0025842 } + ], + "tags": { + "area": "yes", + "covered": "no", + "highway": "pedestrian", + "lit": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1292961597, + "bounds": { + "minlat": 40.8046192, + "minlon": -73.9400893, + "maxlat": 40.8050926, + "maxlon": -73.9397743 + }, + "nodes": [ + 11986404588, + 11986404589, + 11986404593, + 11986404590 + ], + "geometry": [ + { "lat": 40.8046192, "lon": -73.9400893 }, + { "lat": 40.8046832, "lon": -73.9400460 }, + { "lat": 40.8046949, "lon": -73.9400386 }, + { "lat": 40.8050926, "lon": -73.9397743 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1292961598, + "bounds": { + "minlat": 40.8049735, + "minlon": -73.9400403, + "maxlat": 40.8051952, + "maxlon": -73.9394652 + }, + "nodes": [ + 11986404591, + 11986404590, + 11986404592 + ], + "geometry": [ + { "lat": 40.8051952, "lon": -73.9400403 }, + { "lat": 40.8050926, "lon": -73.9397743 }, + { "lat": 40.8049735, "lon": -73.9394652 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1293808583, + "bounds": { + "minlat": 40.8041204, + "minlon": -73.9582722, + "maxlat": 40.8041210, + "maxlon": -73.9582158 + }, + "nodes": [ + 1774036559, + 13810018575 + ], + "geometry": [ + { "lat": 40.8041210, "lon": -73.9582158 }, + { "lat": 40.8041204, "lon": -73.9582722 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1294623979, + "bounds": { + "minlat": 40.8035680, + "minlon": -73.9607029, + "maxlat": 40.8036529, + "maxlon": -73.9604732 + }, + "nodes": [ + 11998058279, + 11998058282, + 11998058281, + 7372610406, + 11998058280 + ], + "geometry": [ + { "lat": 40.8035680, "lon": -73.9604732 }, + { "lat": 40.8035875, "lon": -73.9605431 }, + { "lat": 40.8035981, "lon": -73.9605706 }, + { "lat": 40.8036038, "lon": -73.9605884 }, + { "lat": 40.8036529, "lon": -73.9607029 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1296006050, + "bounds": { + "minlat": 40.7010770, + "minlon": -73.9404200, + "maxlat": 40.7055611, + "maxlon": -73.9265920 + }, + "nodes": [ + 42499081, + 4660923489, + 4660923491, + 42504106, + 4660923493, + 4660923495, + 42473650, + 4660923499, + 7034559414, + 42504109, + 7034559412, + 42500468, + 13846099408, + 7193273720, + 9744012810, + 42499797, + 9744012811, + 42486705, + 9744012777, + 42504116, + 9744012776, + 42504122, + 9744012746, + 42490298, + 9744012745, + 42504129, + 42479528, + 13701110575, + 9744012794, + 42504145, + 9744012793, + 42504156, + 42504158 + ], + "geometry": [ + { "lat": 40.7010770, "lon": -73.9404200 }, + { "lat": 40.7010903, "lon": -73.9403756 }, + { "lat": 40.7012667, "lon": -73.9395651 }, + { "lat": 40.7012931, "lon": -73.9394562 }, + { "lat": 40.7013252, "lon": -73.9393234 }, + { "lat": 40.7015407, "lon": -73.9384338 }, + { "lat": 40.7015669, "lon": -73.9383253 }, + { "lat": 40.7015900, "lon": -73.9382301 }, + { "lat": 40.7018781, "lon": -73.9371045 }, + { "lat": 40.7019084, "lon": -73.9369881 }, + { "lat": 40.7019376, "lon": -73.9368699 }, + { "lat": 40.7023150, "lon": -73.9353360 }, + { "lat": 40.7023610, "lon": -73.9351584 }, + { "lat": 40.7024002, "lon": -73.9350073 }, + { "lat": 40.7026548, "lon": -73.9340250 }, + { "lat": 40.7026740, "lon": -73.9339510 }, + { "lat": 40.7027075, "lon": -73.9338671 }, + { "lat": 40.7028490, "lon": -73.9335230 }, + { "lat": 40.7031383, "lon": -73.9327780 }, + { "lat": 40.7031710, "lon": -73.9326980 }, + { "lat": 40.7031956, "lon": -73.9326340 }, + { "lat": 40.7034579, "lon": -73.9319307 }, + { "lat": 40.7037557, "lon": -73.9312011 }, + { "lat": 40.7037903, "lon": -73.9311128 }, + { "lat": 40.7038273, "lon": -73.9310182 }, + { "lat": 40.7041310, "lon": -73.9302370 }, + { "lat": 40.7041988, "lon": -73.9300554 }, + { "lat": 40.7046476, "lon": -73.9289155 }, + { "lat": 40.7046737, "lon": -73.9288492 }, + { "lat": 40.7047170, "lon": -73.9287380 }, + { "lat": 40.7047672, "lon": -73.9286232 }, + { "lat": 40.7049640, "lon": -73.9281090 }, + { "lat": 40.7055611, "lon": -73.9265920 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1296083553, + "bounds": { + "minlat": 40.7281455, + "minlon": -73.9979088, + "maxlat": 40.7292773, + "maxlon": -73.9956901 + }, + "nodes": [ + 9934776581, + 12009866781, + 9934776580, + 12009866782, + 12009866783, + 12009866784, + 12009866785, + 12009866786, + 12009866787, + 12009866788, + 12009866789, + 12009866790, + 12009866791, + 12009866792, + 12009866793, + 12009866794, + 12009866795, + 12009866796, + 12009866797, + 12009866798, + 12009866799, + 12009866800, + 12009866801, + 12009866802, + 8309478908, + 9934776581 + ], + "geometry": [ + { "lat": 40.7292200, "lon": -73.9978671 }, + { "lat": 40.7292251, "lon": -73.9978890 }, + { "lat": 40.7292238, "lon": -73.9979088 }, + { "lat": 40.7292695, "lon": -73.9978690 }, + { "lat": 40.7292758, "lon": -73.9978543 }, + { "lat": 40.7292773, "lon": -73.9978338 }, + { "lat": 40.7292747, "lon": -73.9978231 }, + { "lat": 40.7292696, "lon": -73.9978096 }, + { "lat": 40.7292210, "lon": -73.9977108 }, + { "lat": 40.7291739, "lon": -73.9977004 }, + { "lat": 40.7289272, "lon": -73.9972006 }, + { "lat": 40.7288951, "lon": -73.9971366 }, + { "lat": 40.7285192, "lon": -73.9963717 }, + { "lat": 40.7282309, "lon": -73.9957825 }, + { "lat": 40.7282324, "lon": -73.9957400 }, + { "lat": 40.7282148, "lon": -73.9957040 }, + { "lat": 40.7282068, "lon": -73.9956946 }, + { "lat": 40.7281996, "lon": -73.9956901 }, + { "lat": 40.7281854, "lon": -73.9956902 }, + { "lat": 40.7281455, "lon": -73.9957170 }, + { "lat": 40.7281596, "lon": -73.9957218 }, + { "lat": 40.7281680, "lon": -73.9957322 }, + { "lat": 40.7284923, "lon": -73.9963944 }, + { "lat": 40.7288729, "lon": -73.9971556 }, + { "lat": 40.7289033, "lon": -73.9972186 }, + { "lat": 40.7292200, "lon": -73.9978671 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1296083556, + "bounds": { + "minlat": 40.7281455, + "minlon": -73.9979088, + "maxlat": 40.7292238, + "maxlon": -73.9957170 + }, + "nodes": [ + 12009866798, + 12009866799, + 12009866800, + 12009866801, + 12009866802, + 8309478908, + 9934776581, + 9934776580, + 8309478909, + 9934776582, + 8309478915, + 9934776530, + 8309478914, + 8309478912, + 12009866798 + ], + "geometry": [ + { "lat": 40.7281455, "lon": -73.9957170 }, + { "lat": 40.7281596, "lon": -73.9957218 }, + { "lat": 40.7281680, "lon": -73.9957322 }, + { "lat": 40.7284923, "lon": -73.9963944 }, + { "lat": 40.7288729, "lon": -73.9971556 }, + { "lat": 40.7289033, "lon": -73.9972186 }, + { "lat": 40.7292200, "lon": -73.9978671 }, + { "lat": 40.7292238, "lon": -73.9979088 }, + { "lat": 40.7292042, "lon": -73.9978820 }, + { "lat": 40.7288810, "lon": -73.9972248 }, + { "lat": 40.7288547, "lon": -73.9971712 }, + { "lat": 40.7288287, "lon": -73.9971185 }, + { "lat": 40.7284785, "lon": -73.9964060 }, + { "lat": 40.7281472, "lon": -73.9957324 }, + { "lat": 40.7281455, "lon": -73.9957170 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1296083557, + "bounds": { + "minlat": 40.7291535, + "minlon": -73.9978721, + "maxlat": 40.7293265, + "maxlon": -73.9975197 + }, + "nodes": [ + 12009866805, + 8309478919, + 42440553 + ], + "geometry": [ + { "lat": 40.7291535, "lon": -73.9975197 }, + { "lat": 40.7292863, "lon": -73.9977902 }, + { "lat": 40.7293265, "lon": -73.9978721 } + ], + "tags": { + "alt_name:ko": "웨스트 3번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 3rd Street", + "name:ko": "웨스트 3rd 스트리트", + "name:ru": "Западная 3-я стрит", + "name_1": "West 3 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1296083558, + "bounds": { + "minlat": 40.7282036, + "minlon": -73.9957862, + "maxlat": 40.7283024, + "maxlon": -73.9955850 + }, + "nodes": [ + 42440545, + 8309478989, + 12009866806 + ], + "geometry": [ + { "lat": 40.7282036, "lon": -73.9955850 }, + { "lat": 40.7282398, "lon": -73.9956587 }, + { "lat": 40.7283024, "lon": -73.9957862 } + ], + "tags": { + "alt_name:ko": "웨스트 3번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 3rd Street", + "name:ko": "웨스트 3rd 스트리트", + "name:ru": "Западная 3-я стрит", + "name_1": "West 3 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1296551645, + "bounds": { + "minlat": 40.8381823, + "minlon": -74.0194932, + "maxlat": 40.8390771, + "maxlon": -74.0190679 + }, + "nodes": [ + 12014207068, + 103206050 + ], + "geometry": [ + { "lat": 40.8390771, "lon": -74.0190679 }, + { "lat": 40.8381823, "lon": -74.0194932 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A11:A15:A19:A63", + "tiger:county": "Bergen, NJ:Hudson, NJ:Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:New Jersey", + "tiger:name_base_1": "I-95:New Jersey", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no", + "turn:lanes": "|through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 1296551652, + "bounds": { + "minlat": 40.8445664, + "minlon": -74.0120862, + "maxlat": 40.8445671, + "maxlon": -74.0114340 + }, + "nodes": [ + 298566824, + 12014234155 + ], + "geometry": [ + { "lat": 40.8445671, "lon": -74.0114340 }, + { "lat": 40.8445664, "lon": -74.0120862 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "bridge": "yes", + "destination:ref": "US 46 West", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1296578510, + "bounds": { + "minlat": 40.8562671, + "minlon": -73.9765712, + "maxlat": 40.8568649, + "maxlon": -73.9754162 + }, + "nodes": [ + 7419012845, + 103285682, + 103285684, + 103285685, + 6896007127, + 103285687, + 103285690, + 103285693 + ], + "geometry": [ + { "lat": 40.8568649, "lon": -73.9754162 }, + { "lat": 40.8568241, "lon": -73.9755292 }, + { "lat": 40.8567590, "lon": -73.9756830 }, + { "lat": 40.8566890, "lon": -73.9758410 }, + { "lat": 40.8566507, "lon": -73.9759139 }, + { "lat": 40.8566260, "lon": -73.9759610 }, + { "lat": 40.8565380, "lon": -73.9761030 }, + { "lat": 40.8562671, "lon": -73.9765712 } + ], + "tags": { + "highway": "secondary", + "name": "South Bridge Plaza", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "Plz", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1296664633, + "bounds": { + "minlat": 40.7198425, + "minlon": -74.0051738, + "maxlat": 40.7200506, + "maxlon": -74.0051699 + }, + "nodes": [ + 42430122, + 4890623897, + 12015224191 + ], + "geometry": [ + { "lat": 40.7198425, "lon": -74.0051699 }, + { "lat": 40.7199018, "lon": -74.0051707 }, + { "lat": 40.7200506, "lon": -74.0051738 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "lane", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1296669289, + "bounds": { + "minlat": 40.7062936, + "minlon": -74.0129466, + "maxlat": 40.7067932, + "maxlon": -74.0125292 + }, + "nodes": [ + 42428366, + 7335430601, + 10316225972, + 10316226159, + 12015221252 + ], + "geometry": [ + { "lat": 40.7067932, "lon": -74.0125292 }, + { "lat": 40.7067495, "lon": -74.0125670 }, + { "lat": 40.7065188, "lon": -74.0127593 }, + { "lat": 40.7063699, "lon": -74.0128831 }, + { "lat": 40.7062936, "lon": -74.0129466 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|designated", + "busway:right": "lane", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:zip_left": "10003", + "tiger:zip_right": "10003", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1296669290, + "bounds": { + "minlat": 40.7058880, + "minlon": -74.0132806, + "maxlat": 40.7060865, + "maxlon": -74.0131189 + }, + "nodes": [ + 12345169304, + 10316226178, + 7072589167, + 42428365 + ], + "geometry": [ + { "lat": 40.7060865, "lon": -74.0131189 }, + { "lat": 40.7059766, "lon": -74.0132103 }, + { "lat": 40.7059253, "lon": -74.0132529 }, + { "lat": 40.7058880, "lon": -74.0132806 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|designated", + "busway:right": "lane", + "cycleway:left": "separate", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:zip_left": "10003", + "tiger:zip_right": "10003", + "turn:lanes": "left;through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1296770879, + "bounds": { + "minlat": 40.8440246, + "minlon": -74.0073926, + "maxlat": 40.8441532, + "maxlon": -74.0069306 + }, + "nodes": [ + 12016116950, + 103203018 + ], + "geometry": [ + { "lat": 40.8440246, "lon": -74.0069306 }, + { "lat": 40.8441532, "lon": -74.0073926 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1296770880, + "bounds": { + "minlat": 40.8433629, + "minlon": -74.0048715, + "maxlat": 40.8434775, + "maxlon": -74.0048473 + }, + "nodes": [ + 12016116965, + 12016116966, + 103162301 + ], + "geometry": [ + { "lat": 40.8434775, "lon": -74.0048473 }, + { "lat": 40.8434345, "lon": -74.0048574 }, + { "lat": 40.8433629, "lon": -74.0048715 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxheight": "14'4\"", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through" + } +}, +{ + "type": "way", + "id": 1296770882, + "bounds": { + "minlat": 40.8439232, + "minlon": -74.0074490, + "maxlat": 40.8440191, + "maxlon": -74.0069739 + }, + "nodes": [ + 299181594, + 12016147184 + ], + "geometry": [ + { "lat": 40.8440191, "lon": -74.0074490 }, + { "lat": 40.8439232, "lon": -74.0069739 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1296770884, + "bounds": { + "minlat": 40.8394760, + "minlon": -74.0063752, + "maxlat": 40.8400675, + "maxlon": -74.0060351 + }, + "nodes": [ + 103206969, + 103294293 + ], + "geometry": [ + { "lat": 40.8400675, "lon": -74.0060351 }, + { "lat": 40.8394760, "lon": -74.0063752 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "40 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1296770885, + "bounds": { + "minlat": 40.8391737, + "minlon": -74.0065466, + "maxlat": 40.8394760, + "maxlon": -74.0063752 + }, + "nodes": [ + 103294293, + 12016147240 + ], + "geometry": [ + { "lat": 40.8394760, "lon": -74.0063752 }, + { "lat": 40.8391737, "lon": -74.0065466 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "40 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 1296770886, + "bounds": { + "minlat": 40.8388745, + "minlon": -74.0067125, + "maxlat": 40.8391737, + "maxlon": -74.0065466 + }, + "nodes": [ + 12016147240, + 5772293401 + ], + "geometry": [ + { "lat": 40.8391737, "lon": -74.0065466 }, + { "lat": 40.8388745, "lon": -74.0067125 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "40 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1296770887, + "bounds": { + "minlat": 40.8368079, + "minlon": -74.0078722, + "maxlat": 40.8374983, + "maxlon": -74.0074829 + }, + "nodes": [ + 12016147241, + 103232473, + 8218997761 + ], + "geometry": [ + { "lat": 40.8374983, "lon": -74.0074829 }, + { "lat": 40.8373265, "lon": -74.0075756 }, + { "lat": 40.8368079, "lon": -74.0078722 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "40 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1296770888, + "bounds": { + "minlat": 40.8424401, + "minlon": -74.0018034, + "maxlat": 40.8428495, + "maxlon": -74.0014949 + }, + "nodes": [ + 5978850765, + 12020316352, + 12016147322, + 103162306 + ], + "geometry": [ + { "lat": 40.8424401, "lon": -74.0018034 }, + { "lat": 40.8426376, "lon": -74.0016550 }, + { "lat": 40.8426626, "lon": -74.0016358 }, + { "lat": 40.8428495, "lon": -74.0014949 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "35 mph", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21:A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657", + "turn:lanes:forward": "through|through;right" + } +}, +{ + "type": "way", + "id": 1296786009, + "bounds": { + "minlat": 40.8318739, + "minlon": -74.0100689, + "maxlat": 40.8319511, + "maxlon": -74.0098977 + }, + "nodes": [ + 8414839540, + 12016315250, + 12016315251, + 103224045 + ], + "geometry": [ + { "lat": 40.8318739, "lon": -74.0098977 }, + { "lat": 40.8319024, "lon": -74.0099573 }, + { "lat": 40.8319181, "lon": -74.0099934 }, + { "lat": 40.8319511, "lon": -74.0100689 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Marion Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Marion", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657", + "turn:lanes:forward": "right" + } +}, +{ + "type": "way", + "id": 1296815351, + "bounds": { + "minlat": 40.7302310, + "minlon": -73.9485754, + "maxlat": 40.7307574, + "maxlon": -73.9477374 + }, + "nodes": [ + 5482002833, + 12016562141, + 12016569972, + 12016562163, + 12016562160, + 12016562142, + 12016562143, + 12016562144, + 12016562145, + 12016562146, + 12016562147, + 12016562148, + 12016562149, + 12016562155, + 12016569981, + 12016569984, + 12016562150, + 12016562151 + ], + "geometry": [ + { "lat": 40.7307574, "lon": -73.9485754 }, + { "lat": 40.7306555, "lon": -73.9485478 }, + { "lat": 40.7306417, "lon": -73.9485420 }, + { "lat": 40.7304940, "lon": -73.9484804 }, + { "lat": 40.7304653, "lon": -73.9484679 }, + { "lat": 40.7304375, "lon": -73.9484563 }, + { "lat": 40.7303814, "lon": -73.9484273 }, + { "lat": 40.7303148, "lon": -73.9483876 }, + { "lat": 40.7302717, "lon": -73.9483533 }, + { "lat": 40.7302538, "lon": -73.9483200 }, + { "lat": 40.7302351, "lon": -73.9482728 }, + { "lat": 40.7302310, "lon": -73.9482181 }, + { "lat": 40.7302408, "lon": -73.9481698 }, + { "lat": 40.7303371, "lon": -73.9478924 }, + { "lat": 40.7303539, "lon": -73.9478418 }, + { "lat": 40.7303742, "lon": -73.9477856 }, + { "lat": 40.7303909, "lon": -73.9477374 }, + { "lat": 40.7304763, "lon": -73.9477846 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815352, + "bounds": { + "minlat": 40.7305552, + "minlon": -73.9480166, + "maxlat": 40.7308675, + "maxlon": -73.9478319 + }, + "nodes": [ + 12016562152, + 12016562159, + 12016569976, + 12016562153, + 12016562154 + ], + "geometry": [ + { "lat": 40.7305552, "lon": -73.9478319 }, + { "lat": 40.7306544, "lon": -73.9478964 }, + { "lat": 40.7307508, "lon": -73.9479501 }, + { "lat": 40.7307672, "lon": -73.9479592 }, + { "lat": 40.7308675, "lon": -73.9480166 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815353, + "bounds": { + "minlat": 40.7304763, + "minlon": -73.9478319, + "maxlat": 40.7305552, + "maxlon": -73.9477846 + }, + "nodes": [ + 12016562151, + 12016562152 + ], + "geometry": [ + { "lat": 40.7304763, "lon": -73.9477846 }, + { "lat": 40.7305552, "lon": -73.9478319 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815354, + "bounds": { + "minlat": 40.7304246, + "minlon": -73.9479856, + "maxlat": 40.7305031, + "maxlon": -73.9479454 + }, + "nodes": [ + 12016562156, + 12016562157 + ], + "geometry": [ + { "lat": 40.7304246, "lon": -73.9479454 }, + { "lat": 40.7305031, "lon": -73.9479856 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815355, + "bounds": { + "minlat": 40.7306230, + "minlon": -73.9479891, + "maxlat": 40.7306544, + "maxlon": -73.9478964 + }, + "nodes": [ + 12016562158, + 12016562159 + ], + "geometry": [ + { "lat": 40.7306230, "lon": -73.9479891 }, + { "lat": 40.7306544, "lon": -73.9478964 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815356, + "bounds": { + "minlat": 40.7305447, + "minlon": -73.9480875, + "maxlat": 40.7306091, + "maxlon": -73.9480266 + }, + "nodes": [ + 12016562162, + 12016562166 + ], + "geometry": [ + { "lat": 40.7305447, "lon": -73.9480875 }, + { "lat": 40.7306091, "lon": -73.9480266 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815357, + "bounds": { + "minlat": 40.7304857, + "minlon": -73.9483859, + "maxlat": 40.7305118, + "maxlon": -73.9482673 + }, + "nodes": [ + 12016562168, + 12016562161 + ], + "geometry": [ + { "lat": 40.7305118, "lon": -73.9483859 }, + { "lat": 40.7304857, "lon": -73.9482673 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815358, + "bounds": { + "minlat": 40.7304857, + "minlon": -73.9482673, + "maxlat": 40.7305447, + "maxlon": -73.9480875 + }, + "nodes": [ + 12016562161, + 12016562162 + ], + "geometry": [ + { "lat": 40.7304857, "lon": -73.9482673 }, + { "lat": 40.7305447, "lon": -73.9480875 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815359, + "bounds": { + "minlat": 40.7305031, + "minlon": -73.9479856, + "maxlat": 40.7305739, + "maxlon": -73.9479645 + }, + "nodes": [ + 12016562157, + 12016562167 + ], + "geometry": [ + { "lat": 40.7305031, "lon": -73.9479856 }, + { "lat": 40.7305739, "lon": -73.9479645 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815360, + "bounds": { + "minlat": 40.7303371, + "minlon": -73.9479454, + "maxlat": 40.7304246, + "maxlon": -73.9478924 + }, + "nodes": [ + 12016562155, + 12016562156 + ], + "geometry": [ + { "lat": 40.7303371, "lon": -73.9478924 }, + { "lat": 40.7304246, "lon": -73.9479454 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815361, + "bounds": { + "minlat": 40.7305291, + "minlon": -73.9482937, + "maxlat": 40.7305892, + "maxlon": -73.9481140 + }, + "nodes": [ + 12016562164, + 12016562165 + ], + "geometry": [ + { "lat": 40.7305291, "lon": -73.9482937 }, + { "lat": 40.7305892, "lon": -73.9481140 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815362, + "bounds": { + "minlat": 40.7305739, + "minlon": -73.9479891, + "maxlat": 40.7306230, + "maxlon": -73.9479645 + }, + "nodes": [ + 12016562167, + 12016562158 + ], + "geometry": [ + { "lat": 40.7305739, "lon": -73.9479645 }, + { "lat": 40.7306230, "lon": -73.9479891 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815363, + "bounds": { + "minlat": 40.7304940, + "minlon": -73.9484804, + "maxlat": 40.7305291, + "maxlon": -73.9482937 + }, + "nodes": [ + 12016562163, + 12016562168, + 12016562164 + ], + "geometry": [ + { "lat": 40.7304940, "lon": -73.9484804 }, + { "lat": 40.7305118, "lon": -73.9483859 }, + { "lat": 40.7305291, "lon": -73.9482937 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815364, + "bounds": { + "minlat": 40.7305892, + "minlon": -73.9481140, + "maxlat": 40.7306230, + "maxlon": -73.9479891 + }, + "nodes": [ + 12016562165, + 12016562166, + 12016562158 + ], + "geometry": [ + { "lat": 40.7305892, "lon": -73.9481140 }, + { "lat": 40.7306091, "lon": -73.9480266 }, + { "lat": 40.7306230, "lon": -73.9479891 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815365, + "bounds": { + "minlat": 40.7305644, + "minlon": -73.9483151, + "maxlat": 40.7306242, + "maxlon": -73.9481348 + }, + "nodes": [ + 12016569969, + 12016569970 + ], + "geometry": [ + { "lat": 40.7305644, "lon": -73.9483151 }, + { "lat": 40.7306242, "lon": -73.9481348 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815366, + "bounds": { + "minlat": 40.7305118, + "minlon": -73.9483859, + "maxlat": 40.7305644, + "maxlon": -73.9483151 + }, + "nodes": [ + 12016562168, + 12016569969 + ], + "geometry": [ + { "lat": 40.7305118, "lon": -73.9483859 }, + { "lat": 40.7305644, "lon": -73.9483151 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815367, + "bounds": { + "minlat": 40.7306091, + "minlon": -73.9481348, + "maxlat": 40.7306242, + "maxlon": -73.9480266 + }, + "nodes": [ + 12016569970, + 12016569971, + 12016562166 + ], + "geometry": [ + { "lat": 40.7306242, "lon": -73.9481348 }, + { "lat": 40.7306226, "lon": -73.9480966 }, + { "lat": 40.7306091, "lon": -73.9480266 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815368, + "bounds": { + "minlat": 40.7306417, + "minlon": -73.9485420, + "maxlat": 40.7307508, + "maxlon": -73.9479501 + }, + "nodes": [ + 12016569972, + 12016569973, + 12016569974, + 12016569975, + 12016569976 + ], + "geometry": [ + { "lat": 40.7306417, "lon": -73.9485420 }, + { "lat": 40.7306417, "lon": -73.9483649 }, + { "lat": 40.7306799, "lon": -73.9481828 }, + { "lat": 40.7306972, "lon": -73.9481234 }, + { "lat": 40.7307508, "lon": -73.9479501 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815369, + "bounds": { + "minlat": 40.7306972, + "minlon": -73.9481589, + "maxlat": 40.7308156, + "maxlon": -73.9481234 + }, + "nodes": [ + 12016569975, + 12016569977, + 5482002826 + ], + "geometry": [ + { "lat": 40.7306972, "lon": -73.9481234 }, + { "lat": 40.7307155, "lon": -73.9481289 }, + { "lat": 40.7308156, "lon": -73.9481589 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815370, + "bounds": { + "minlat": 40.7304436, + "minlon": -73.9479375, + "maxlat": 40.7305183, + "maxlon": -73.9478959 + }, + "nodes": [ + 12016569980, + 12016569979 + ], + "geometry": [ + { "lat": 40.7304436, "lon": -73.9478959 }, + { "lat": 40.7305183, "lon": -73.9479375 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815371, + "bounds": { + "minlat": 40.7305183, + "minlon": -73.9479645, + "maxlat": 40.7305739, + "maxlon": -73.9479375 + }, + "nodes": [ + 12016569979, + 12016562167 + ], + "geometry": [ + { "lat": 40.7305183, "lon": -73.9479375 }, + { "lat": 40.7305739, "lon": -73.9479645 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815372, + "bounds": { + "minlat": 40.7303539, + "minlon": -73.9478959, + "maxlat": 40.7304436, + "maxlon": -73.9478418 + }, + "nodes": [ + 12016569981, + 12016569980 + ], + "geometry": [ + { "lat": 40.7303539, "lon": -73.9478418 }, + { "lat": 40.7304436, "lon": -73.9478959 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815373, + "bounds": { + "minlat": 40.7303742, + "minlon": -73.9478354, + "maxlat": 40.7304600, + "maxlon": -73.9477856 + }, + "nodes": [ + 12016569984, + 12016569983 + ], + "geometry": [ + { "lat": 40.7303742, "lon": -73.9477856 }, + { "lat": 40.7304600, "lon": -73.9478354 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815374, + "bounds": { + "minlat": 40.7305367, + "minlon": -73.9479645, + "maxlat": 40.7305739, + "maxlon": -73.9478864 + }, + "nodes": [ + 12016569982, + 12016562167 + ], + "geometry": [ + { "lat": 40.7305367, "lon": -73.9478864 }, + { "lat": 40.7305739, "lon": -73.9479645 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815375, + "bounds": { + "minlat": 40.7304600, + "minlon": -73.9478864, + "maxlat": 40.7305367, + "maxlon": -73.9478354 + }, + "nodes": [ + 12016569983, + 12016569982 + ], + "geometry": [ + { "lat": 40.7304600, "lon": -73.9478354 }, + { "lat": 40.7305367, "lon": -73.9478864 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1296815376, + "bounds": { + "minlat": 40.7301878, + "minlon": -73.9478418, + "maxlat": 40.7303539, + "maxlon": -73.9476816 + }, + "nodes": [ + 12016569981, + 12016569985, + 12016569986, + 12016569987, + 12016569988, + 12016569989, + 12016569990 + ], + "geometry": [ + { "lat": 40.7303539, "lon": -73.9478418 }, + { "lat": 40.7302354, "lon": -73.9477963 }, + { "lat": 40.7302060, "lon": -73.9477796 }, + { "lat": 40.7301915, "lon": -73.9477648 }, + { "lat": 40.7301878, "lon": -73.9477470 }, + { "lat": 40.7301934, "lon": -73.9477051 }, + { "lat": 40.7302028, "lon": -73.9476816 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1296825825, + "bounds": { + "minlat": 40.8022928, + "minlon": -73.9312442, + "maxlat": 40.8023742, + "maxlon": -73.9310391 + }, + "nodes": [ + 12016600352, + 12016600355, + 12016600354, + 12016600351, + 12016600353 + ], + "geometry": [ + { "lat": 40.8022928, "lon": -73.9310391 }, + { "lat": 40.8023163, "lon": -73.9310975 }, + { "lat": 40.8023264, "lon": -73.9311228 }, + { "lat": 40.8023355, "lon": -73.9311455 }, + { "lat": 40.8023742, "lon": -73.9312442 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1296828267, + "bounds": { + "minlat": 40.8060582, + "minlon": -73.9256297, + "maxlat": 40.8061556, + "maxlon": -73.9255607 + }, + "nodes": [ + 5482371915, + 11427300057, + 8763736063 + ], + "geometry": [ + { "lat": 40.8060582, "lon": -73.9256297 }, + { "lat": 40.8061460, "lon": -73.9255679 }, + { "lat": 40.8061556, "lon": -73.9255607 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1296828268, + "bounds": { + "minlat": 40.8062074, + "minlon": -73.9259856, + "maxlat": 40.8062972, + "maxlon": -73.9259218 + }, + "nodes": [ + 8763736073, + 7554071439 + ], + "geometry": [ + { "lat": 40.8062972, "lon": -73.9259218 }, + { "lat": 40.8062074, "lon": -73.9259856 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1297367459, + "bounds": { + "minlat": 40.8500833, + "minlon": -73.9848423, + "maxlat": 40.8501664, + "maxlon": -73.9848105 + }, + "nodes": [ + 103100034, + 3639311161 + ], + "geometry": [ + { "lat": 40.8500833, "lon": -73.9848423 }, + { "lat": 40.8501664, "lon": -73.9848105 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1297367463, + "bounds": { + "minlat": 40.8589360, + "minlon": -73.9757431, + "maxlat": 40.8589625, + "maxlon": -73.9755171 + }, + "nodes": [ + 76464564, + 7925039034, + 299120748, + 7925039028 + ], + "geometry": [ + { "lat": 40.8589360, "lon": -73.9755171 }, + { "lat": 40.8589471, "lon": -73.9755944 }, + { "lat": 40.8589558, "lon": -73.9756657 }, + { "lat": 40.8589625, "lon": -73.9757431 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "bridge": "yes", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "concrete", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1297396655, + "bounds": { + "minlat": 40.8549609, + "minlon": -73.9644247, + "maxlat": 40.8551769, + "maxlon": -73.9639716 + }, + "nodes": [ + 5449400759, + 5449390157, + 12020539637, + 11170628910, + 12020539638, + 103154325 + ], + "geometry": [ + { "lat": 40.8549609, "lon": -73.9639716 }, + { "lat": 40.8550536, "lon": -73.9641407 }, + { "lat": 40.8551186, "lon": -73.9642682 }, + { "lat": 40.8551423, "lon": -73.9643212 }, + { "lat": 40.8551540, "lon": -73.9643510 }, + { "lat": 40.8551769, "lon": -73.9644247 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Merkle Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Merkle", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1297396656, + "bounds": { + "minlat": 40.8549798, + "minlon": -73.9667021, + "maxlat": 40.8550141, + "maxlon": -73.9662770 + }, + "nodes": [ + 2565327494, + 4119255803, + 12020539663, + 12020539666, + 12020539667, + 12020539668, + 76465636 + ], + "geometry": [ + { "lat": 40.8549798, "lon": -73.9662770 }, + { "lat": 40.8549812, "lon": -73.9663194 }, + { "lat": 40.8549848, "lon": -73.9664256 }, + { "lat": 40.8549877, "lon": -73.9664757 }, + { "lat": 40.8549944, "lon": -73.9665453 }, + { "lat": 40.8550042, "lon": -73.9666262 }, + { "lat": 40.8550141, "lon": -73.9667021 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "Bridge Plaza North", + "name_1": "Cross Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge", + "tiger:name_base_1": "Cross", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Plz", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297396657, + "bounds": { + "minlat": 40.8549599, + "minlon": -73.9662770, + "maxlat": 40.8549798, + "maxlon": -73.9659343 + }, + "nodes": [ + 12020539657, + 103115827, + 2565327494 + ], + "geometry": [ + { "lat": 40.8549599, "lon": -73.9659343 }, + { "lat": 40.8549730, "lon": -73.9661137 }, + { "lat": 40.8549798, "lon": -73.9662770 } + ], + "tags": { + "highway": "unclassified", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Bridge Plaza North", + "name_1": "Cross Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge", + "tiger:name_base_1": "Cross", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Plz", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1297396665, + "bounds": { + "minlat": 40.8566738, + "minlon": -73.9715467, + "maxlat": 40.8571034, + "maxlon": -73.9708318 + }, + "nodes": [ + 103115846, + 12020552494, + 12020552495, + 7407033537, + 12020552497, + 12020552498, + 76465370 + ], + "geometry": [ + { "lat": 40.8566738, "lon": -73.9708318 }, + { "lat": 40.8567165, "lon": -73.9709074 }, + { "lat": 40.8567699, "lon": -73.9709999 }, + { "lat": 40.8568365, "lon": -73.9711112 }, + { "lat": 40.8570372, "lon": -73.9714326 }, + { "lat": 40.8570560, "lon": -73.9714687 }, + { "lat": 40.8571034, "lon": -73.9715467 } + ], + "tags": { + "alt_name": "Cross Street", + "highway": "primary", + "lanes": "2", + "name": "Bridge Plaza North", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge", + "tiger:name_base_1": "Cross", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Plz", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297396666, + "bounds": { + "minlat": 40.8571034, + "minlon": -73.9716849, + "maxlat": 40.8571893, + "maxlon": -73.9715467 + }, + "nodes": [ + 76465370, + 12021336852, + 7930571980, + 76465371 + ], + "geometry": [ + { "lat": 40.8571034, "lon": -73.9715467 }, + { "lat": 40.8571303, "lon": -73.9715914 }, + { "lat": 40.8571571, "lon": -73.9716360 }, + { "lat": 40.8571893, "lon": -73.9716849 } + ], + "tags": { + "alt_name": "Cross Street", + "destination": "Alt to Palisades Parkway;Alt to Bridge", + "destination:ref": "NJ 4;US 46;US 9W;I 80", + "highway": "primary", + "lanes": "2", + "name": "Bridge Plaza North", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cross", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1297396667, + "bounds": { + "minlat": 40.8594770, + "minlon": -73.9732667, + "maxlat": 40.8598397, + "maxlon": -73.9728700 + }, + "nodes": [ + 103318360, + 475136560, + 475136558, + 7377058222, + 7377058249, + 103208519 + ], + "geometry": [ + { "lat": 40.8594770, "lon": -73.9732667 }, + { "lat": 40.8594893, "lon": -73.9732528 }, + { "lat": 40.8595851, "lon": -73.9731449 }, + { "lat": 40.8596927, "lon": -73.9730237 }, + { "lat": 40.8597016, "lon": -73.9730136 }, + { "lat": 40.8598397, "lon": -73.9728700 } + ], + "tags": { + "highway": "residential", + "name": "Edwin Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edwin", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297396668, + "bounds": { + "minlat": 40.8598397, + "minlon": -73.9736900, + "maxlat": 40.8603310, + "maxlon": -73.9728700 + }, + "nodes": [ + 103208519, + 7377058213, + 103184379 + ], + "geometry": [ + { "lat": 40.8598397, "lon": -73.9728700 }, + { "lat": 40.8602958, "lon": -73.9736323 }, + { "lat": 40.8603310, "lon": -73.9736900 } + ], + "tags": { + "highway": "residential", + "name": "West Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297396669, + "bounds": { + "minlat": 40.8593415, + "minlon": -73.9723905, + "maxlat": 40.8595475, + "maxlon": -73.9720523 + }, + "nodes": [ + 299386519, + 12020552522, + 12020552523, + 7377058268, + 7377058285, + 12020552524 + ], + "geometry": [ + { "lat": 40.8593415, "lon": -73.9720523 }, + { "lat": 40.8594051, "lon": -73.9721569 }, + { "lat": 40.8594306, "lon": -73.9721986 }, + { "lat": 40.8594439, "lon": -73.9722205 }, + { "lat": 40.8595003, "lon": -73.9723130 }, + { "lat": 40.8595475, "lon": -73.9723905 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "West Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "right" + } +}, +{ + "type": "way", + "id": 1297396670, + "bounds": { + "minlat": 40.8591370, + "minlon": -73.9719428, + "maxlat": 40.8592665, + "maxlon": -73.9717267 + }, + "nodes": [ + 12020552525, + 12020552527, + 12020552528, + 7298101931 + ], + "geometry": [ + { "lat": 40.8591370, "lon": -73.9717267 }, + { "lat": 40.8592194, "lon": -73.9718643 }, + { "lat": 40.8592399, "lon": -73.9718980 }, + { "lat": 40.8592665, "lon": -73.9719428 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "West Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "West", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "right" + } +}, +{ + "type": "way", + "id": 1297396671, + "bounds": { + "minlat": 40.8578051, + "minlon": -73.9735854, + "maxlat": 40.8579725, + "maxlon": -73.9733172 + }, + "nodes": [ + 76463592, + 7921644067 + ], + "geometry": [ + { "lat": 40.8578051, "lon": -73.9735854 }, + { "lat": 40.8579725, "lon": -73.9733172 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "bridge": "yes", + "highway": "trunk", + "lanes": "2", + "layer": "1", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1297474941, + "bounds": { + "minlat": 40.8582738, + "minlon": -73.9674720, + "maxlat": 40.8585054, + "maxlon": -73.9673562 + }, + "nodes": [ + 12021336846, + 103174613, + 7403552783, + 12021336847, + 103174614 + ], + "geometry": [ + { "lat": 40.8582738, "lon": -73.9674720 }, + { "lat": 40.8583407, "lon": -73.9674334 }, + { "lat": 40.8583698, "lon": -73.9674201 }, + { "lat": 40.8584498, "lon": -73.9673801 }, + { "lat": 40.8585054, "lon": -73.9673562 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1297474943, + "bounds": { + "minlat": 40.8582695, + "minlon": -73.9720219, + "maxlat": 40.8582975, + "maxlon": -73.9720162 + }, + "nodes": [ + 76465148, + 7407010391 + ], + "geometry": [ + { "lat": 40.8582695, "lon": -73.9720162 }, + { "lat": 40.8582975, "lon": -73.9720219 } + ], + "tags": { + "alt_name": "Cross Street", + "destination:ref:lanes": "NJTP South;I 95 South|NJ 4 West|NJ 4 West;US 9W North", + "highway": "primary", + "lanes": "3", + "name": "Bridge Plaza North", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Cross", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1297474944, + "bounds": { + "minlat": 40.8561076, + "minlon": -73.9696059, + "maxlat": 40.8564277, + "maxlon": -73.9692866 + }, + "nodes": [ + 8514846265, + 11170278554, + 7403552778 + ], + "geometry": [ + { "lat": 40.8561076, "lon": -73.9696059 }, + { "lat": 40.8562906, "lon": -73.9694232 }, + { "lat": 40.8564277, "lon": -73.9692866 } + ], + "tags": { + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Center Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474946, + "bounds": { + "minlat": 40.8564445, + "minlon": -73.9708318, + "maxlat": 40.8566738, + "maxlon": -73.9703883 + }, + "nodes": [ + 103115842, + 5108600091, + 7400259248, + 103115846 + ], + "geometry": [ + { "lat": 40.8564445, "lon": -73.9703883 }, + { "lat": 40.8564512, "lon": -73.9704020 }, + { "lat": 40.8566326, "lon": -73.9707570 }, + { "lat": 40.8566738, "lon": -73.9708318 } + ], + "tags": { + "alt_name": "Cross Street", + "highway": "primary", + "name": "Bridge Plaza North", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge", + "tiger:name_base_1": "Cross", + "tiger:name_direction_suffix": "N", + "tiger:name_type": "Plz", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474948, + "bounds": { + "minlat": 40.8592217, + "minlon": -73.9693301, + "maxlat": 40.8595039, + "maxlon": -73.9691429 + }, + "nodes": [ + 103132810, + 12021336837, + 103132811, + 7407010396 + ], + "geometry": [ + { "lat": 40.8595039, "lon": -73.9691429 }, + { "lat": 40.8593316, "lon": -73.9692518 }, + { "lat": 40.8592706, "lon": -73.9692925 }, + { "lat": 40.8592217, "lon": -73.9693301 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000029", + "highway": "tertiary", + "maxspeed": "25 mph", + "name": "Linwood Avenue", + "oneway": "yes", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474950, + "bounds": { + "minlat": 40.8560340, + "minlon": -73.9696790, + "maxlat": 40.8561076, + "maxlon": -73.9696059 + }, + "nodes": [ + 103115840, + 11170628875, + 8514846265 + ], + "geometry": [ + { "lat": 40.8560340, "lon": -73.9696790 }, + { "lat": 40.8560885, "lon": -73.9696250 }, + { "lat": 40.8561076, "lon": -73.9696059 } + ], + "tags": { + "highway": "tertiary", + "name": "Center Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474951, + "bounds": { + "minlat": 40.8564416, + "minlon": -73.9668334, + "maxlat": 40.8565550, + "maxlon": -73.9667644 + }, + "nodes": [ + 4207161478, + 5449422231, + 12021371939, + 7403573336 + ], + "geometry": [ + { "lat": 40.8564416, "lon": -73.9668334 }, + { "lat": 40.8565344, "lon": -73.9667770 }, + { "lat": 40.8565477, "lon": -73.9667689 }, + { "lat": 40.8565550, "lon": -73.9667644 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1297474953, + "bounds": { + "minlat": 40.8590926, + "minlon": -73.9657324, + "maxlat": 40.8593032, + "maxlon": -73.9653082 + }, + "nodes": [ + 103205083, + 12021371952, + 12021371951, + 12021336887, + 7412927702, + 7412927828, + 7412927830 + ], + "geometry": [ + { "lat": 40.8590926, "lon": -73.9653082 }, + { "lat": 40.8591129, "lon": -73.9653655 }, + { "lat": 40.8591325, "lon": -73.9654148 }, + { "lat": 40.8591495, "lon": -73.9654563 }, + { "lat": 40.8592529, "lon": -73.9656409 }, + { "lat": 40.8592891, "lon": -73.9657068 }, + { "lat": 40.8593032, "lon": -73.9657324 } + ], + "tags": { + "highway": "residential", + "name": "Wilson Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wilson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474954, + "bounds": { + "minlat": 40.8590926, + "minlon": -73.9653082, + "maxlat": 40.8596189, + "maxlon": -73.9650199 + }, + "nodes": [ + 103205083, + 12021371954, + 12021371956, + 7393543917 + ], + "geometry": [ + { "lat": 40.8590926, "lon": -73.9653082 }, + { "lat": 40.8591694, "lon": -73.9652661 }, + { "lat": 40.8592005, "lon": -73.9652491 }, + { "lat": 40.8596189, "lon": -73.9650199 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474955, + "bounds": { + "minlat": 40.8596569, + "minlon": -73.9654375, + "maxlat": 40.8598963, + "maxlon": -73.9649976 + }, + "nodes": [ + 65903770, + 12021336897, + 12021336896, + 478297809, + 7412927831 + ], + "geometry": [ + { "lat": 40.8596569, "lon": -73.9649976 }, + { "lat": 40.8596844, "lon": -73.9650633 }, + { "lat": 40.8597035, "lon": -73.9651010 }, + { "lat": 40.8597194, "lon": -73.9651320 }, + { "lat": 40.8598963, "lon": -73.9654375 } + ], + "tags": { + "highway": "residential", + "name": "New York Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "New York", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474958, + "bounds": { + "minlat": 40.8610405, + "minlon": -73.9680438, + "maxlat": 40.8611700, + "maxlon": -73.9679493 + }, + "nodes": [ + 103132964, + 530475662 + ], + "geometry": [ + { "lat": 40.8611700, "lon": -73.9679493 }, + { "lat": 40.8610405, "lon": -73.9680438 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Collector", + "NJDOT_SRI": "02000029", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Linwood Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Linwood", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474959, + "bounds": { + "minlat": 40.8585054, + "minlon": -73.9673562, + "maxlat": 40.8587597, + "maxlon": -73.9672362 + }, + "nodes": [ + 103174614, + 12021336848, + 12021336855, + 12021336858 + ], + "geometry": [ + { "lat": 40.8585054, "lon": -73.9673562 }, + { "lat": 40.8585674, "lon": -73.9673329 }, + { "lat": 40.8586036, "lon": -73.9673193 }, + { "lat": 40.8587597, "lon": -73.9672362 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Center Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Center", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474960, + "bounds": { + "minlat": 40.8596189, + "minlon": -73.9650199, + "maxlat": 40.8596569, + "maxlon": -73.9649976 + }, + "nodes": [ + 7393543917, + 65903770 + ], + "geometry": [ + { "lat": 40.8596189, "lon": -73.9650199 }, + { "lat": 40.8596569, "lon": -73.9649976 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474962, + "bounds": { + "minlat": 40.8593032, + "minlon": -73.9664726, + "maxlat": 40.8597178, + "maxlon": -73.9657324 + }, + "nodes": [ + 7412927830, + 12021336879, + 12021336881, + 103174618 + ], + "geometry": [ + { "lat": 40.8593032, "lon": -73.9657324 }, + { "lat": 40.8596630, "lon": -73.9663749 }, + { "lat": 40.8596797, "lon": -73.9664046 }, + { "lat": 40.8597178, "lon": -73.9664726 } + ], + "tags": { + "highway": "residential", + "name": "Wilson Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Wilson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474963, + "bounds": { + "minlat": 40.8584362, + "minlon": -73.9670104, + "maxlat": 40.8591619, + "maxlon": -73.9656741 + }, + "nodes": [ + 103205081, + 12021371950, + 12021371948, + 12021371949, + 12021336865, + 12021336864, + 12021336861, + 103174616 + ], + "geometry": [ + { "lat": 40.8584362, "lon": -73.9656741 }, + { "lat": 40.8584513, "lon": -73.9657185 }, + { "lat": 40.8584684, "lon": -73.9657607 }, + { "lat": 40.8584850, "lon": -73.9657976 }, + { "lat": 40.8585019, "lon": -73.9658318 }, + { "lat": 40.8591098, "lon": -73.9669173 }, + { "lat": 40.8591266, "lon": -73.9669473 }, + { "lat": 40.8591619, "lon": -73.9670104 } + ], + "tags": { + "highway": "residential", + "name": "Coolidge Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Coolidge", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474964, + "bounds": { + "minlat": 40.8570448, + "minlon": -73.9650810, + "maxlat": 40.8571484, + "maxlon": -73.9646701 + }, + "nodes": [ + 12021336915, + 12021336916 + ], + "geometry": [ + { "lat": 40.8571484, "lon": -73.9650810 }, + { "lat": 40.8570448, "lon": -73.9646701 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1297474965, + "bounds": { + "minlat": 40.8568988, + "minlon": -73.9651314, + "maxlat": 40.8570001, + "maxlon": -73.9647287 + }, + "nodes": [ + 5108585676, + 12021336914 + ], + "geometry": [ + { "lat": 40.8570001, "lon": -73.9651314 }, + { "lat": 40.8568988, "lon": -73.9647287 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1297474966, + "bounds": { + "minlat": 40.8570001, + "minlon": -73.9651314, + "maxlat": 40.8571484, + "maxlon": -73.9650810 + }, + "nodes": [ + 5108585676, + 12021336915 + ], + "geometry": [ + { "lat": 40.8570001, "lon": -73.9651314 }, + { "lat": 40.8571484, "lon": -73.9650810 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1297474967, + "bounds": { + "minlat": 40.8559253, + "minlon": -73.9657224, + "maxlat": 40.8564004, + "maxlon": -73.9654456 + }, + "nodes": [ + 4054801534, + 1951979436, + 12021336902, + 1951979452, + 1951974344, + 5330468378 + ], + "geometry": [ + { "lat": 40.8559253, "lon": -73.9657224 }, + { "lat": 40.8560018, "lon": -73.9656922 }, + { "lat": 40.8560594, "lon": -73.9656695 }, + { "lat": 40.8561500, "lon": -73.9656142 }, + { "lat": 40.8563086, "lon": -73.9655176 }, + { "lat": 40.8564004, "lon": -73.9654456 } + ], + "tags": { + "highway": "service", + "name": "Hudson Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "St", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1297474968, + "bounds": { + "minlat": 40.8565988, + "minlon": -73.9666694, + "maxlat": 40.8567113, + "maxlon": -73.9663454 + }, + "nodes": [ + 1952059774, + 12021371941, + 1952059776 + ], + "geometry": [ + { "lat": 40.8565988, "lon": -73.9663454 }, + { "lat": 40.8566599, "lon": -73.9665216 }, + { "lat": 40.8567113, "lon": -73.9666694 } + ], + "tags": { + "highway": "service", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "oneway": "no", + "source": "local knowledge", + "turn:lanes:forward": "left|right" + } +}, +{ + "type": "way", + "id": 1297474969, + "bounds": { + "minlat": 40.8564436, + "minlon": -73.9664382, + "maxlat": 40.8565988, + "maxlon": -73.9663454 + }, + "nodes": [ + 1952059774, + 1951979446 + ], + "geometry": [ + { "lat": 40.8565988, "lon": -73.9663454 }, + { "lat": 40.8564436, "lon": -73.9664382 } + ], + "tags": { + "highway": "service", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 1297474970, + "bounds": { + "minlat": 40.8561500, + "minlon": -73.9665213, + "maxlat": 40.8564732, + "maxlon": -73.9656142 + }, + "nodes": [ + 1951979452, + 1951979446, + 1951979442 + ], + "geometry": [ + { "lat": 40.8561500, "lon": -73.9656142 }, + { "lat": 40.8564436, "lon": -73.9664382 }, + { "lat": 40.8564732, "lon": -73.9665213 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 1297474971, + "bounds": { + "minlat": 40.8560370, + "minlon": -73.9667459, + "maxlat": 40.8564732, + "maxlon": -73.9665213 + }, + "nodes": [ + 1951979442, + 1951979447, + 1951979445, + 1951979439 + ], + "geometry": [ + { "lat": 40.8564732, "lon": -73.9665213 }, + { "lat": 40.8563220, "lon": -73.9666138 }, + { "lat": 40.8561060, "lon": -73.9667459 }, + { "lat": 40.8560370, "lon": -73.9665460 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "source": "local knowledge" + } +}, +{ + "type": "way", + "id": 1297474972, + "bounds": { + "minlat": 40.8557981, + "minlon": -73.9657224, + "maxlat": 40.8559253, + "maxlon": -73.9653594 + }, + "nodes": [ + 4054801534, + 9286436414, + 4054801533, + 4054801532 + ], + "geometry": [ + { "lat": 40.8559253, "lon": -73.9657224 }, + { "lat": 40.8559028, "lon": -73.9656582 }, + { "lat": 40.8558679, "lon": -73.9655585 }, + { "lat": 40.8557981, "lon": -73.9653594 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1297479716, + "bounds": { + "minlat": 40.8627282, + "minlon": -73.9633561, + "maxlat": 40.8628621, + "maxlon": -73.9632341 + }, + "nodes": [ + 76463640, + 76463662 + ], + "geometry": [ + { "lat": 40.8628621, "lon": -73.9632341 }, + { "lat": 40.8627282, "lon": -73.9633561 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Lemoine Avenue", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1297479717, + "bounds": { + "minlat": 40.8628621, + "minlon": -73.9632341, + "maxlat": 40.8632080, + "maxlon": -73.9630092 + }, + "nodes": [ + 76463640, + 7373529878, + 12021383178, + 65902741 + ], + "geometry": [ + { "lat": 40.8628621, "lon": -73.9632341 }, + { "lat": 40.8629640, "lon": -73.9631726 }, + { "lat": 40.8631285, "lon": -73.9630671 }, + { "lat": 40.8632080, "lon": -73.9630092 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "4", + "maxspeed": "30 mph", + "name": "Lemoine Avenue", + "oneway": "no", + "ref": "US 9W", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1297479718, + "bounds": { + "minlat": 40.8624434, + "minlon": -73.9636583, + "maxlat": 40.8626146, + "maxlon": -73.9635159 + }, + "nodes": [ + 530475795, + 12021383245, + 7921635458, + 12021383246, + 12021383247, + 76463663 + ], + "geometry": [ + { "lat": 40.8626146, "lon": -73.9635159 }, + { "lat": 40.8625863, "lon": -73.9635475 }, + { "lat": 40.8625529, "lon": -73.9635770 }, + { "lat": 40.8625227, "lon": -73.9636032 }, + { "lat": 40.8624885, "lon": -73.9636281 }, + { "lat": 40.8624434, "lon": -73.9636583 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "destination:ref": "US 9W South", + "highway": "primary", + "lanes": "1", + "maxspeed:advisory": "15 mph", + "oneway": "yes", + "ref": "US 9W", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1297480908, + "bounds": { + "minlat": 40.8598802, + "minlon": -73.9602013, + "maxlat": 40.8609059, + "maxlon": -73.9591392 + }, + "nodes": [ + 60811196, + 7924729975, + 60811197, + 7912952268, + 7912952280, + 60811198, + 7912952255, + 7912952266, + 60811199, + 7912952278, + 60811200, + 7912952252 + ], + "geometry": [ + { "lat": 40.8609059, "lon": -73.9591392 }, + { "lat": 40.8607526, "lon": -73.9593462 }, + { "lat": 40.8606726, "lon": -73.9594499 }, + { "lat": 40.8605932, "lon": -73.9595521 }, + { "lat": 40.8605154, "lon": -73.9596464 }, + { "lat": 40.8604304, "lon": -73.9597362 }, + { "lat": 40.8603433, "lon": -73.9598224 }, + { "lat": 40.8602507, "lon": -73.9599088 }, + { "lat": 40.8601554, "lon": -73.9599909 }, + { "lat": 40.8600713, "lon": -73.9600591 }, + { "lat": 40.8599732, "lon": -73.9601337 }, + { "lat": 40.8598802, "lon": -73.9602013 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "destination": "George Washington Bridge", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "55 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1297480909, + "bounds": { + "minlat": 40.8534734, + "minlon": -73.9628465, + "maxlat": 40.8556587, + "maxlon": -73.9615915 + }, + "nodes": [ + 1381944089, + 13754102635, + 13754102634, + 298789191, + 5103468269, + 13754102633, + 298789192, + 6391353761, + 6391353758, + 298789193, + 6391353759, + 298789194, + 6391353760, + 12021372306, + 13772860478, + 298789195, + 13772860477, + 13772860476, + 6391353753, + 13772860475, + 12021372307, + 13772860474, + 7914968790, + 13772860473, + 298789196, + 6391353754, + 298789198, + 13772860470, + 6391353755, + 13772860471, + 12021372308, + 13772860472, + 6391353763, + 298789199, + 6391353764, + 12021372309, + 298789200, + 12021372310, + 12021372311, + 298789201, + 13772860469, + 12021372312, + 13772860468, + 7924835163, + 13772860467, + 12021372313, + 298789202, + 7924835176, + 13772860466, + 60810551 + ], + "geometry": [ + { "lat": 40.8534734, "lon": -73.9615915 }, + { "lat": 40.8536584, "lon": -73.9621073 }, + { "lat": 40.8536871, "lon": -73.9621937 }, + { "lat": 40.8537155, "lon": -73.9622718 }, + { "lat": 40.8537421, "lon": -73.9623358 }, + { "lat": 40.8537636, "lon": -73.9623846 }, + { "lat": 40.8537884, "lon": -73.9624335 }, + { "lat": 40.8538139, "lon": -73.9624789 }, + { "lat": 40.8538433, "lon": -73.9625232 }, + { "lat": 40.8538749, "lon": -73.9625645 }, + { "lat": 40.8539115, "lon": -73.9626063 }, + { "lat": 40.8539449, "lon": -73.9626404 }, + { "lat": 40.8539855, "lon": -73.9626770 }, + { "lat": 40.8540275, "lon": -73.9627100 }, + { "lat": 40.8540453, "lon": -73.9627231 }, + { "lat": 40.8540664, "lon": -73.9627375 }, + { "lat": 40.8540840, "lon": -73.9627484 }, + { "lat": 40.8541009, "lon": -73.9627581 }, + { "lat": 40.8541120, "lon": -73.9627640 }, + { "lat": 40.8541291, "lon": -73.9627725 }, + { "lat": 40.8541477, "lon": -73.9627814 }, + { "lat": 40.8541742, "lon": -73.9627934 }, + { "lat": 40.8541966, "lon": -73.9628020 }, + { "lat": 40.8542289, "lon": -73.9628125 }, + { "lat": 40.8542577, "lon": -73.9628204 }, + { "lat": 40.8542961, "lon": -73.9628291 }, + { "lat": 40.8543347, "lon": -73.9628368 }, + { "lat": 40.8543621, "lon": -73.9628411 }, + { "lat": 40.8543921, "lon": -73.9628449 }, + { "lat": 40.8544207, "lon": -73.9628463 }, + { "lat": 40.8544440, "lon": -73.9628465 }, + { "lat": 40.8544719, "lon": -73.9628448 }, + { "lat": 40.8545011, "lon": -73.9628416 }, + { "lat": 40.8545525, "lon": -73.9628339 }, + { "lat": 40.8546052, "lon": -73.9628232 }, + { "lat": 40.8546478, "lon": -73.9628128 }, + { "lat": 40.8546975, "lon": -73.9627962 }, + { "lat": 40.8547427, "lon": -73.9627781 }, + { "lat": 40.8547964, "lon": -73.9627529 }, + { "lat": 40.8548492, "lon": -73.9627277 }, + { "lat": 40.8548886, "lon": -73.9627087 }, + { "lat": 40.8549431, "lon": -73.9626774 }, + { "lat": 40.8549886, "lon": -73.9626523 }, + { "lat": 40.8550385, "lon": -73.9626220 }, + { "lat": 40.8550792, "lon": -73.9625975 }, + { "lat": 40.8551195, "lon": -73.9625716 }, + { "lat": 40.8552182, "lon": -73.9625122 }, + { "lat": 40.8553027, "lon": -73.9624582 }, + { "lat": 40.8554236, "lon": -73.9623810 }, + { "lat": 40.8556587, "lon": -73.9622205 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "destination": "Palisades Parkway", + "hgv": "no", + "highway": "motorway", + "junction:ref": "74", + "lanes": "2", + "maxspeed": "55 mph", + "maxspeed:advisory": "25 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1297487237, + "bounds": { + "minlat": 40.8760541, + "minlon": -73.9775385, + "maxlat": 40.8761740, + "maxlon": -73.9773982 + }, + "nodes": [ + 103174060, + 12021419916 + ], + "geometry": [ + { "lat": 40.8761740, "lon": -73.9775385 }, + { "lat": 40.8760541, "lon": -73.9773982 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "Rockwood Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Rockwood", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1297487238, + "bounds": { + "minlat": 40.8738373, + "minlon": -73.9727535, + "maxlat": 40.8744663, + "maxlon": -73.9724697 + }, + "nodes": [ + 103233744, + 530806380, + 530806366 + ], + "geometry": [ + { "lat": 40.8744663, "lon": -73.9724697 }, + { "lat": 40.8739626, "lon": -73.9726977 }, + { "lat": 40.8738373, "lon": -73.9727535 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jones Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jones", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297487239, + "bounds": { + "minlat": 40.8746284, + "minlon": -73.9723916, + "maxlat": 40.8747039, + "maxlon": -73.9723507 + }, + "nodes": [ + 12021419918, + 12021419917 + ], + "geometry": [ + { "lat": 40.8747039, "lon": -73.9723507 }, + { "lat": 40.8746284, "lon": -73.9723916 } + ], + "tags": { + "bridge": "yes", + "highway": "tertiary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Jones Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jones", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297513612, + "bounds": { + "minlat": 40.8723326, + "minlon": -73.9734366, + "maxlat": 40.8731254, + "maxlon": -73.9730775 + }, + "nodes": [ + 103107950, + 103134310, + 12021450559 + ], + "geometry": [ + { "lat": 40.8731254, "lon": -73.9730775 }, + { "lat": 40.8725479, "lon": -73.9733394 }, + { "lat": 40.8723326, "lon": -73.9734366 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jones Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jones", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297513613, + "bounds": { + "minlat": 40.8736583, + "minlon": -73.9716500, + "maxlat": 40.8751583, + "maxlon": -73.9688553 + }, + "nodes": [ + 12021734803, + 103234549, + 103164577, + 103234551, + 103191939, + 103234553 + ], + "geometry": [ + { "lat": 40.8751583, "lon": -73.9716500 }, + { "lat": 40.8751270, "lon": -73.9715994 }, + { "lat": 40.8749275, "lon": -73.9712028 }, + { "lat": 40.8744568, "lon": -73.9703205 }, + { "lat": 40.8740657, "lon": -73.9695604 }, + { "lat": 40.8736583, "lon": -73.9688553 } + ], + "tags": { + "highway": "residential", + "name": "Van Nostrand Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297513614, + "bounds": { + "minlat": 40.8747039, + "minlon": -73.9723507, + "maxlat": 40.8753763, + "maxlon": -73.9719965 + }, + "nodes": [ + 103211664, + 12021734773, + 12021419918 + ], + "geometry": [ + { "lat": 40.8753763, "lon": -73.9719965 }, + { "lat": 40.8752568, "lon": -73.9720641 }, + { "lat": 40.8747039, "lon": -73.9723507 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jones Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jones", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297513615, + "bounds": { + "minlat": 40.8744663, + "minlon": -73.9724697, + "maxlat": 40.8746284, + "maxlon": -73.9723916 + }, + "nodes": [ + 12021419917, + 103233744 + ], + "geometry": [ + { "lat": 40.8746284, "lon": -73.9723916 }, + { "lat": 40.8744663, "lon": -73.9724697 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jones Road", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Jones", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297513616, + "bounds": { + "minlat": 40.8785308, + "minlon": -73.9798365, + "maxlat": 40.8787245, + "maxlon": -73.9796665 + }, + "nodes": [ + 103104517, + 12021734796, + 12021734797, + 9239567770, + 8592827887, + 9239567766 + ], + "geometry": [ + { "lat": 40.8785308, "lon": -73.9796665 }, + { "lat": 40.8785457, "lon": -73.9796951 }, + { "lat": 40.8785653, "lon": -73.9797224 }, + { "lat": 40.8785837, "lon": -73.9797428 }, + { "lat": 40.8786076, "lon": -73.9797629 }, + { "lat": 40.8787245, "lon": -73.9798365 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Walton Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41;A63", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Walton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297513617, + "bounds": { + "minlat": 40.8752097, + "minlon": -73.9719965, + "maxlat": 40.8753763, + "maxlon": -73.9717329 + }, + "nodes": [ + 103211664, + 12021734776, + 12021734804 + ], + "geometry": [ + { "lat": 40.8753763, "lon": -73.9719965 }, + { "lat": 40.8753117, "lon": -73.9718976 }, + { "lat": 40.8752097, "lon": -73.9717329 } + ], + "tags": { + "highway": "residential", + "name": "Van Nostrand Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297513618, + "bounds": { + "minlat": 40.8751583, + "minlon": -73.9717329, + "maxlat": 40.8752097, + "maxlon": -73.9716500 + }, + "nodes": [ + 12021734804, + 12021734803 + ], + "geometry": [ + { "lat": 40.8752097, "lon": -73.9717329 }, + { "lat": 40.8751583, "lon": -73.9716500 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Van Nostrand Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297513619, + "bounds": { + "minlat": 40.8795950, + "minlon": -73.9798527, + "maxlat": 40.8798043, + "maxlon": -73.9794823 + }, + "nodes": [ + 103098028, + 13525915062, + 12021734805, + 12021734806 + ], + "geometry": [ + { "lat": 40.8798043, "lon": -73.9798527 }, + { "lat": 40.8797205, "lon": -73.9797072 }, + { "lat": 40.8797028, "lon": -73.9796718 }, + { "lat": 40.8795950, "lon": -73.9794823 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "maxweight": "4", + "name": "Van Nostrand Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631", + "turn:lanes:backward": "left|right" + } +}, +{ + "type": "way", + "id": 1297513620, + "bounds": { + "minlat": 40.8778301, + "minlon": -73.9763467, + "maxlat": 40.8782043, + "maxlon": -73.9760749 + }, + "nodes": [ + 103224138, + 12021734809, + 12021734811 + ], + "geometry": [ + { "lat": 40.8778301, "lon": -73.9763467 }, + { "lat": 40.8778855, "lon": -73.9763069 }, + { "lat": 40.8782043, "lon": -73.9760749 } + ], + "tags": { + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:backward": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 1297583131, + "bounds": { + "minlat": 40.8763233, + "minlon": -73.9871161, + "maxlat": 40.8763888, + "maxlon": -73.9868417 + }, + "nodes": [ + 103260461, + 12022105725, + 12022105724, + 103242073 + ], + "geometry": [ + { "lat": 40.8763888, "lon": -73.9871161 }, + { "lat": 40.8763678, "lon": -73.9870373 }, + { "lat": 40.8763537, "lon": -73.9869788 }, + { "lat": 40.8763233, "lon": -73.9868417 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Brookside Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brookside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1297583132, + "bounds": { + "minlat": 40.8821317, + "minlon": -73.9889847, + "maxlat": 40.8822403, + "maxlon": -73.9888601 + }, + "nodes": [ + 7070944242, + 3603219699 + ], + "geometry": [ + { "lat": 40.8822403, "lon": -73.9888601 }, + { "lat": 40.8821317, "lon": -73.9889847 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Sterling Boulevard", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1297583133, + "bounds": { + "minlat": 40.8813438, + "minlon": -73.9889847, + "maxlat": 40.8821317, + "maxlon": -73.9878223 + }, + "nodes": [ + 3603219699, + 3603219698, + 12022129384, + 12022129383, + 8230449515, + 3603219696, + 12022129407, + 12022129408, + 12022129409, + 3603219695, + 12022129412, + 12022129413, + 3603219694, + 12022129426, + 12022129427, + 3603219693, + 12022129428, + 12022129429, + 12022129430, + 12022129431, + 3603219491 + ], + "geometry": [ + { "lat": 40.8821317, "lon": -73.9889847 }, + { "lat": 40.8820879, "lon": -73.9888911 }, + { "lat": 40.8820689, "lon": -73.9888512 }, + { "lat": 40.8820178, "lon": -73.9887437 }, + { "lat": 40.8819476, "lon": -73.9885963 }, + { "lat": 40.8816457, "lon": -73.9879566 }, + { "lat": 40.8816282, "lon": -73.9879227 }, + { "lat": 40.8816130, "lon": -73.9879003 }, + { "lat": 40.8815941, "lon": -73.9878724 }, + { "lat": 40.8815776, "lon": -73.9878568 }, + { "lat": 40.8815573, "lon": -73.9878434 }, + { "lat": 40.8815390, "lon": -73.9878358 }, + { "lat": 40.8815199, "lon": -73.9878290 }, + { "lat": 40.8814964, "lon": -73.9878241 }, + { "lat": 40.8814707, "lon": -73.9878223 }, + { "lat": 40.8814459, "lon": -73.9878255 }, + { "lat": 40.8814253, "lon": -73.9878312 }, + { "lat": 40.8814057, "lon": -73.9878378 }, + { "lat": 40.8813816, "lon": -73.9878517 }, + { "lat": 40.8813629, "lon": -73.9878660 }, + { "lat": 40.8813438, "lon": -73.9878810 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Sterling Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1297583134, + "bounds": { + "minlat": 40.8795739, + "minlon": -73.9896552, + "maxlat": 40.8800530, + "maxlon": -73.9891816 + }, + "nodes": [ + 12022129436, + 12022129439, + 12022129437, + 12022129438, + 3603219481 + ], + "geometry": [ + { "lat": 40.8800530, "lon": -73.9891816 }, + { "lat": 40.8796901, "lon": -73.9895403 }, + { "lat": 40.8796556, "lon": -73.9895744 }, + { "lat": 40.8796432, "lon": -73.9895868 }, + { "lat": 40.8795739, "lon": -73.9896552 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Sterling Boulevard", + "surface": "asphalt", + "turn:lanes:forward": "left;right" + } +}, +{ + "type": "way", + "id": 1297583135, + "bounds": { + "minlat": 40.8801020, + "minlon": -73.9886277, + "maxlat": 40.8802447, + "maxlon": -73.9883737 + }, + "nodes": [ + 8414810113, + 8414810109 + ], + "geometry": [ + { "lat": 40.8802447, "lon": -73.9886277 }, + { "lat": 40.8801020, "lon": -73.9883737 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1297583136, + "bounds": { + "minlat": 40.8797026, + "minlon": -73.9887719, + "maxlat": 40.8801020, + "maxlon": -73.9883737 + }, + "nodes": [ + 8414810109, + 11672599655, + 11672599657, + 8414810111 + ], + "geometry": [ + { "lat": 40.8801020, "lon": -73.9883737 }, + { "lat": 40.8799686, "lon": -73.9885067 }, + { "lat": 40.8798357, "lon": -73.9886392 }, + { "lat": 40.8797026, "lon": -73.9887719 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1297583137, + "bounds": { + "minlat": 40.8797026, + "minlon": -73.9890209, + "maxlat": 40.8798475, + "maxlon": -73.9887719 + }, + "nodes": [ + 8414810111, + 8414810112 + ], + "geometry": [ + { "lat": 40.8797026, "lon": -73.9887719 }, + { "lat": 40.8798475, "lon": -73.9890209 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1297583138, + "bounds": { + "minlat": 40.8802447, + "minlon": -73.9888633, + "maxlat": 40.8803770, + "maxlon": -73.9886277 + }, + "nodes": [ + 8414810107, + 12022129434, + 12022129433, + 8414810113 + ], + "geometry": [ + { "lat": 40.8803770, "lon": -73.9888633 }, + { "lat": 40.8803406, "lon": -73.9887985 }, + { "lat": 40.8803284, "lon": -73.9887767 }, + { "lat": 40.8802447, "lon": -73.9886277 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1297583141, + "bounds": { + "minlat": 40.8819248, + "minlon": -73.9905859, + "maxlat": 40.8821811, + "maxlon": -73.9903706 + }, + "nodes": [ + 12022129483, + 12022129486, + 12022129487, + 12022129484, + 12022129485 + ], + "geometry": [ + { "lat": 40.8819248, "lon": -73.9903706 }, + { "lat": 40.8819484, "lon": -73.9904220 }, + { "lat": 40.8819674, "lon": -73.9904636 }, + { "lat": 40.8820238, "lon": -73.9905859 }, + { "lat": 40.8821811, "lon": -73.9904650 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1297583142, + "bounds": { + "minlat": 40.8814737, + "minlon": -73.9910469, + "maxlat": 40.8816321, + "maxlon": -73.9906975 + }, + "nodes": [ + 12022129488, + 12022129491, + 12022129492, + 12022129489, + 12022129490 + ], + "geometry": [ + { "lat": 40.8815272, "lon": -73.9906975 }, + { "lat": 40.8815488, "lon": -73.9907446 }, + { "lat": 40.8815692, "lon": -73.9907892 }, + { "lat": 40.8816321, "lon": -73.9909217 }, + { "lat": 40.8814737, "lon": -73.9910469 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1297583143, + "bounds": { + "minlat": 40.8803998, + "minlon": -73.9919240, + "maxlat": 40.8806694, + "maxlon": -73.9917006 + }, + "nodes": [ + 12022129499, + 12022129494, + 12022129495 + ], + "geometry": [ + { "lat": 40.8806694, "lon": -73.9917006 }, + { "lat": 40.8806171, "lon": -73.9917440 }, + { "lat": 40.8803998, "lon": -73.9919240 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1297583144, + "bounds": { + "minlat": 40.8805151, + "minlon": -73.9917440, + "maxlat": 40.8806171, + "maxlon": -73.9915297 + }, + "nodes": [ + 12022129493, + 12022129496, + 12022129497, + 12022129494 + ], + "geometry": [ + { "lat": 40.8805151, "lon": -73.9915297 }, + { "lat": 40.8805399, "lon": -73.9915817 }, + { "lat": 40.8805600, "lon": -73.9916240 }, + { "lat": 40.8806171, "lon": -73.9917440 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1297738367, + "bounds": { + "minlat": 40.8823340, + "minlon": -74.0091553, + "maxlat": 40.8825509, + "maxlon": -74.0086660 + }, + "nodes": [ + 103214424, + 13527712063, + 6635342689, + 6103107246 + ], + "geometry": [ + { "lat": 40.8823340, "lon": -74.0086660 }, + { "lat": 40.8824137, "lon": -74.0087406 }, + { "lat": 40.8824266, "lon": -74.0087527 }, + { "lat": 40.8825509, "lon": -74.0091553 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1297794875, + "bounds": { + "minlat": 40.8818305, + "minlon": -73.9825990, + "maxlat": 40.8839722, + "maxlon": -73.9811787 + }, + "nodes": [ + 103134436, + 103134437, + 7256921774, + 7071506643, + 103134439, + 4207692889 + ], + "geometry": [ + { "lat": 40.8839722, "lon": -73.9811787 }, + { "lat": 40.8832958, "lon": -73.9816263 }, + { "lat": 40.8825349, "lon": -73.9821307 }, + { "lat": 40.8824551, "lon": -73.9821803 }, + { "lat": 40.8819881, "lon": -73.9825002 }, + { "lat": 40.8818305, "lon": -73.9825990 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "South Dean Street", + "oneway": "yes", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Dean", + "tiger:name_direction_prefix": "S", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297794882, + "bounds": { + "minlat": 40.8820921, + "minlon": -73.9795391, + "maxlat": 40.8829316, + "maxlon": -73.9793525 + }, + "nodes": [ + 103223010, + 12023838837, + 103148675 + ], + "geometry": [ + { "lat": 40.8829316, "lon": -73.9793525 }, + { "lat": 40.8821743, "lon": -73.9795209 }, + { "lat": 40.8820921, "lon": -73.9795391 } + ], + "tags": { + "highway": "residential", + "name": "Mary Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mary", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297794883, + "bounds": { + "minlat": 40.8817174, + "minlon": -73.9795391, + "maxlat": 40.8820921, + "maxlon": -73.9788908 + }, + "nodes": [ + 103148675, + 103148677, + 12023838833 + ], + "geometry": [ + { "lat": 40.8820921, "lon": -73.9795391 }, + { "lat": 40.8819977, "lon": -73.9793738 }, + { "lat": 40.8817174, "lon": -73.9788908 } + ], + "tags": { + "highway": "residential", + "name": "Honeck Street", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Honeck", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297794885, + "bounds": { + "minlat": 40.8814783, + "minlon": -73.9788908, + "maxlat": 40.8817174, + "maxlon": -73.9784321 + }, + "nodes": [ + 12023838833, + 7144559593, + 9239580224, + 9239580226, + 9239580225, + 103148679 + ], + "geometry": [ + { "lat": 40.8817174, "lon": -73.9788908 }, + { "lat": 40.8816595, "lon": -73.9787891 }, + { "lat": 40.8815639, "lon": -73.9786233 }, + { "lat": 40.8815373, "lon": -73.9785712 }, + { "lat": 40.8815107, "lon": -73.9785114 }, + { "lat": 40.8814783, "lon": -73.9784321 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Honeck Street", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Honeck", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631", + "turn:lanes:forward": "left" + } +}, +{ + "type": "way", + "id": 1297794887, + "bounds": { + "minlat": 40.8816927, + "minlon": -73.9796645, + "maxlat": 40.8819977, + "maxlon": -73.9793738 + }, + "nodes": [ + 103148677, + 12023838836, + 12023838835, + 477432097 + ], + "geometry": [ + { "lat": 40.8819977, "lon": -73.9793738 }, + { "lat": 40.8819528, "lon": -73.9794143 }, + { "lat": 40.8819305, "lon": -73.9794345 }, + { "lat": 40.8816927, "lon": -73.9796645 } + ], + "tags": { + "highway": "unclassified", + "name": "Mary Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Mary", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297794888, + "bounds": { + "minlat": 40.8818958, + "minlon": -73.9825002, + "maxlat": 40.8819881, + "maxlon": -73.9823374 + }, + "nodes": [ + 103134439, + 9239580248, + 9239580247, + 7071506647 + ], + "geometry": [ + { "lat": 40.8819881, "lon": -73.9825002 }, + { "lat": 40.8819513, "lon": -73.9824353 }, + { "lat": 40.8819399, "lon": -73.9824152 }, + { "lat": 40.8818958, "lon": -73.9823374 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "Bancker Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bancker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631", + "turn:lanes:backward": "left" + } +}, +{ + "type": "way", + "id": 1297794889, + "bounds": { + "minlat": 40.8802433, + "minlon": -73.9796423, + "maxlat": 40.8803679, + "maxlon": -73.9794226 + }, + "nodes": [ + 12023838844, + 7511014012, + 9239580220, + 9239580221, + 103187441 + ], + "geometry": [ + { "lat": 40.8803679, "lon": -73.9796423 }, + { "lat": 40.8803360, "lon": -73.9795862 }, + { "lat": 40.8803007, "lon": -73.9795238 }, + { "lat": 40.8802808, "lon": -73.9794888 }, + { "lat": 40.8802433, "lon": -73.9794226 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "name": "Bancker Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bancker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631", + "turn:lanes:forward": "left" + } +}, +{ + "type": "way", + "id": 1297794890, + "bounds": { + "minlat": 40.8799196, + "minlon": -73.9800594, + "maxlat": 40.8803679, + "maxlon": -73.9796423 + }, + "nodes": [ + 12023838844, + 12023838845 + ], + "geometry": [ + { "lat": 40.8803679, "lon": -73.9796423 }, + { "lat": 40.8799196, "lon": -73.9800594 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1297794891, + "bounds": { + "minlat": 40.8803679, + "minlon": -73.9804372, + "maxlat": 40.8808185, + "maxlon": -73.9796423 + }, + "nodes": [ + 103187439, + 12023838844 + ], + "geometry": [ + { "lat": 40.8808185, "lon": -73.9804372 }, + { "lat": 40.8803679, "lon": -73.9796423 } + ], + "tags": { + "highway": "unclassified", + "name": "Bancker Street", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bancker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297794892, + "bounds": { + "minlat": 40.8814095, + "minlon": -73.9823374, + "maxlat": 40.8818958, + "maxlon": -73.9814777 + }, + "nodes": [ + 7071506647, + 7071506646, + 8219449644, + 477419284 + ], + "geometry": [ + { "lat": 40.8818958, "lon": -73.9823374 }, + { "lat": 40.8817616, "lon": -73.9821007 }, + { "lat": 40.8816105, "lon": -73.9818342 }, + { "lat": 40.8814095, "lon": -73.9814777 } + ], + "tags": { + "highway": "unclassified", + "name": "Bancker Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bancker", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297794893, + "bounds": { + "minlat": 40.8809676, + "minlon": -73.9827768, + "maxlat": 40.8815069, + "maxlon": -73.9819228 + }, + "nodes": [ + 103134440, + 9239580233, + 9239580230, + 9239580229, + 9239580228, + 9239580246, + 477443567 + ], + "geometry": [ + { "lat": 40.8815069, "lon": -73.9827768 }, + { "lat": 40.8814755, "lon": -73.9827679 }, + { "lat": 40.8814456, "lon": -73.9827478 }, + { "lat": 40.8814089, "lon": -73.9827104 }, + { "lat": 40.8813727, "lon": -73.9826615 }, + { "lat": 40.8813219, "lon": -73.9825689 }, + { "lat": 40.8809676, "lon": -73.9819228 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Van Nostrand Avenue", + "oneway": "yes", + "ref": "CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297794895, + "bounds": { + "minlat": 40.8808986, + "minlon": -73.9819228, + "maxlat": 40.8809676, + "maxlon": -73.9817983 + }, + "nodes": [ + 477443567, + 7256921782, + 7494385336 + ], + "geometry": [ + { "lat": 40.8809676, "lon": -73.9819228 }, + { "lat": 40.8809360, "lon": -73.9818657 }, + { "lat": 40.8808986, "lon": -73.9817983 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Van Nostrand Avenue", + "oneway": "yes", + "ref": "CR 501", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1297794896, + "bounds": { + "minlat": 40.8799852, + "minlon": -73.9833310, + "maxlat": 40.8803532, + "maxlon": -73.9826805 + }, + "nodes": [ + 477384661, + 298940220 + ], + "geometry": [ + { "lat": 40.8799852, "lon": -73.9826805 }, + { "lat": 40.8803532, "lon": -73.9833310 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1297794898, + "bounds": { + "minlat": 40.8810980, + "minlon": -73.9841496, + "maxlat": 40.8816655, + "maxlon": -73.9837740 + }, + "nodes": [ + 3631828074, + 7183509535 + ], + "geometry": [ + { "lat": 40.8816655, "lon": -73.9837740 }, + { "lat": 40.8810980, "lon": -73.9841496 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "25 mph", + "name": "Nordhoff Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Nordhoff", + "tiger:name_type": "Pl", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1297794901, + "bounds": { + "minlat": 40.8808887, + "minlon": -73.9843728, + "maxlat": 40.8809426, + "maxlon": -73.9842768 + }, + "nodes": [ + 298939919, + 12023838864 + ], + "geometry": [ + { "lat": 40.8808887, "lon": -73.9842768 }, + { "lat": 40.8809426, "lon": -73.9843728 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "bridge": "yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1298044983, + "bounds": { + "minlat": 40.8047874, + "minlon": -73.9681240, + "maxlat": 40.8057818, + "maxlon": -73.9678003 + }, + "nodes": [ + 11853992580, + 12025354800, + 12025354801, + 12025354802, + 12025354803, + 12025354804, + 12025354805, + 12025354806, + 12025354807, + 12025354808, + 12025354809, + 12025354810, + 12025354811, + 12025354812, + 12025354813, + 12025354814, + 12025354815, + 12025354816, + 12025354817, + 12025354818, + 12025354819, + 12025354820, + 12025354821, + 12025354822, + 12025354823, + 12025354824, + 12025354825, + 12025354826, + 12025354827, + 12025354828, + 12025354829, + 12025354830, + 12025354831, + 12025354832, + 12025354833, + 12025354834, + 12025354835, + 12025354836, + 12025354837, + 12025354838, + 12025354839, + 12025354840, + 12025354841, + 12025354842, + 12025354843, + 12025354844, + 12025354845, + 12025354846, + 12025354847, + 11853992631, + 12025354848, + 11853992632, + 11853992633, + 11853992634, + 11853992635, + 11853992636, + 11853992637, + 11853992638, + 11853992639, + 11853992640, + 11853992641, + 11853992642, + 11853992643, + 11853992644, + 11853992645, + 11853992646, + 11853992647, + 11853992648, + 11853992649, + 11853992650, + 11853992651, + 11853992652, + 11853992653, + 11853992654, + 11853992655, + 11853992656, + 11853992657, + 11853992658, + 11853992659, + 11853992660, + 11853992661, + 11853992662, + 11853992663, + 11853992664, + 11853992665, + 11853992666, + 11853992574, + 11853992575, + 11853992576, + 11853992577, + 11853992578, + 11853992579, + 11853992580 + ], + "geometry": [ + { "lat": 40.8048430, "lon": -73.9679582 }, + { "lat": 40.8048176, "lon": -73.9679736 }, + { "lat": 40.8048069, "lon": -73.9679828 }, + { "lat": 40.8047930, "lon": -73.9679977 }, + { "lat": 40.8047874, "lon": -73.9680109 }, + { "lat": 40.8047879, "lon": -73.9680271 }, + { "lat": 40.8047974, "lon": -73.9680456 }, + { "lat": 40.8048022, "lon": -73.9680522 }, + { "lat": 40.8048104, "lon": -73.9680617 }, + { "lat": 40.8048251, "lon": -73.9680756 }, + { "lat": 40.8048438, "lon": -73.9680904 }, + { "lat": 40.8048671, "lon": -73.9681057 }, + { "lat": 40.8048866, "lon": -73.9681152 }, + { "lat": 40.8049063, "lon": -73.9681206 }, + { "lat": 40.8049268, "lon": -73.9681226 }, + { "lat": 40.8049604, "lon": -73.9681240 }, + { "lat": 40.8049901, "lon": -73.9681240 }, + { "lat": 40.8050203, "lon": -73.9681216 }, + { "lat": 40.8050549, "lon": -73.9681175 }, + { "lat": 40.8050816, "lon": -73.9681118 }, + { "lat": 40.8051085, "lon": -73.9681047 }, + { "lat": 40.8051496, "lon": -73.9680898 }, + { "lat": 40.8051904, "lon": -73.9680739 }, + { "lat": 40.8052332, "lon": -73.9680508 }, + { "lat": 40.8052619, "lon": -73.9680363 }, + { "lat": 40.8052976, "lon": -73.9680163 }, + { "lat": 40.8053291, "lon": -73.9679997 }, + { "lat": 40.8053683, "lon": -73.9679784 }, + { "lat": 40.8054123, "lon": -73.9679523 }, + { "lat": 40.8054718, "lon": -73.9679191 }, + { "lat": 40.8055122, "lon": -73.9678968 }, + { "lat": 40.8055431, "lon": -73.9678812 }, + { "lat": 40.8055547, "lon": -73.9678785 }, + { "lat": 40.8055680, "lon": -73.9678761 }, + { "lat": 40.8055821, "lon": -73.9678748 }, + { "lat": 40.8055977, "lon": -73.9678765 }, + { "lat": 40.8056105, "lon": -73.9678778 }, + { "lat": 40.8056233, "lon": -73.9678819 }, + { "lat": 40.8056379, "lon": -73.9678866 }, + { "lat": 40.8056560, "lon": -73.9678948 }, + { "lat": 40.8056698, "lon": -73.9679036 }, + { "lat": 40.8056823, "lon": -73.9679127 }, + { "lat": 40.8056967, "lon": -73.9679263 }, + { "lat": 40.8057118, "lon": -73.9679425 }, + { "lat": 40.8057257, "lon": -73.9679533 }, + { "lat": 40.8057400, "lon": -73.9679621 }, + { "lat": 40.8057538, "lon": -73.9679645 }, + { "lat": 40.8057743, "lon": -73.9679557 }, + { "lat": 40.8057818, "lon": -73.9679520 }, + { "lat": 40.8057796, "lon": -73.9679468 }, + { "lat": 40.8057754, "lon": -73.9679379 }, + { "lat": 40.8057715, "lon": -73.9679294 }, + { "lat": 40.8057644, "lon": -73.9679126 }, + { "lat": 40.8057572, "lon": -73.9678944 }, + { "lat": 40.8057445, "lon": -73.9678776 }, + { "lat": 40.8057323, "lon": -73.9678628 }, + { "lat": 40.8057206, "lon": -73.9678507 }, + { "lat": 40.8057074, "lon": -73.9678379 }, + { "lat": 40.8056926, "lon": -73.9678272 }, + { "lat": 40.8056753, "lon": -73.9678144 }, + { "lat": 40.8056605, "lon": -73.9678056 }, + { "lat": 40.8056400, "lon": -73.9678016 }, + { "lat": 40.8056135, "lon": -73.9678003 }, + { "lat": 40.8055845, "lon": -73.9678083 }, + { "lat": 40.8055529, "lon": -73.9678231 }, + { "lat": 40.8055158, "lon": -73.9678413 }, + { "lat": 40.8054674, "lon": -73.9678662 }, + { "lat": 40.8054313, "lon": -73.9678857 }, + { "lat": 40.8053753, "lon": -73.9679159 }, + { "lat": 40.8053351, "lon": -73.9679388 }, + { "lat": 40.8052999, "lon": -73.9679569 }, + { "lat": 40.8052597, "lon": -73.9679791 }, + { "lat": 40.8052180, "lon": -73.9680013 }, + { "lat": 40.8051885, "lon": -73.9680161 }, + { "lat": 40.8051640, "lon": -73.9680275 }, + { "lat": 40.8051381, "lon": -73.9680383 }, + { "lat": 40.8051055, "lon": -73.9680504 }, + { "lat": 40.8050781, "lon": -73.9680578 }, + { "lat": 40.8050537, "lon": -73.9680625 }, + { "lat": 40.8050246, "lon": -73.9680679 }, + { "lat": 40.8049967, "lon": -73.9680712 }, + { "lat": 40.8049737, "lon": -73.9680753 }, + { "lat": 40.8049498, "lon": -73.9680753 }, + { "lat": 40.8049259, "lon": -73.9680739 }, + { "lat": 40.8049020, "lon": -73.9680686 }, + { "lat": 40.8048826, "lon": -73.9680625 }, + { "lat": 40.8048653, "lon": -73.9680481 }, + { "lat": 40.8048536, "lon": -73.9680313 }, + { "lat": 40.8048455, "lon": -73.9680172 }, + { "lat": 40.8048415, "lon": -73.9680045 }, + { "lat": 40.8048394, "lon": -73.9679871 }, + { "lat": 40.8048394, "lon": -73.9679696 }, + { "lat": 40.8048430, "lon": -73.9679582 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "note": "Area marked of by paint and plastic bollards in lieu of an actual sidewalk." + } +}, +{ + "type": "way", + "id": 1298057019, + "bounds": { + "minlat": 40.7409542, + "minlon": -73.9892691, + "maxlat": 40.7413643, + "maxlon": -73.9891378 + }, + "nodes": [ + 42428201, + 10179028035, + 3019038994, + 9470120002 + ], + "geometry": [ + { "lat": 40.7413643, "lon": -73.9891378 }, + { "lat": 40.7412912, "lon": -73.9891623 }, + { "lat": 40.7412508, "lon": -73.9891758 }, + { "lat": 40.7409542, "lon": -73.9892691 } + ], + "tags": { + "bicycle": "designated", + "cycleway:right": "lane", + "foot": "designated", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "traffic_calming": "chicane", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1298182741, + "bounds": { + "minlat": 40.7127242, + "minlon": -74.0116924, + "maxlat": 40.7127804, + "maxlon": -74.0116480 + }, + "nodes": [ + 4578218122, + 11301575804 + ], + "geometry": [ + { "lat": 40.7127804, "lon": -74.0116480 }, + { "lat": 40.7127242, "lon": -74.0116924 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "yes", + "highway": "unclassified", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "merge_to_right||", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1298182742, + "bounds": { + "minlat": 40.7125490, + "minlon": -74.0117899, + "maxlat": 40.7127242, + "maxlon": -74.0116924 + }, + "nodes": [ + 11301575804, + 12027842147, + 12027842148, + 12026658708 + ], + "geometry": [ + { "lat": 40.7127242, "lon": -74.0116924 }, + { "lat": 40.7126726, "lon": -74.0117276 }, + { "lat": 40.7126121, "lon": -74.0117615 }, + { "lat": 40.7125490, "lon": -74.0117899 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "yes", + "highway": "unclassified", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "merge_to_right||", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1298186394, + "bounds": { + "minlat": 40.7151841, + "minlon": -73.9842712, + "maxlat": 40.7152425, + "maxlon": -73.9842337 + }, + "nodes": [ + 11038072465, + 42427335 + ], + "geometry": [ + { "lat": 40.7151841, "lon": -73.9842712 }, + { "lat": 40.7152425, "lon": -73.9842337 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Samuel Dickstein Plaza", + "name:etymology:wikidata": "Q633827", + "name:ko": "사무엘 딕스타인 플라자", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1298186395, + "bounds": { + "minlat": 40.7132825, + "minlon": -73.9851117, + "maxlat": 40.7133804, + "maxlon": -73.9850976 + }, + "nodes": [ + 588455701, + 12026651155 + ], + "geometry": [ + { "lat": 40.7133804, "lon": -73.9851117 }, + { "lat": 40.7132825, "lon": -73.9850976 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "lane", + "foot": "use_sidepath", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Montgomery Street", + "name:etymology:wikidata": "Q444947", + "name:ko": "몽고메리 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1298186396, + "bounds": { + "minlat": 40.7138032, + "minlon": -73.9850499, + "maxlat": 40.7138855, + "maxlon": -73.9850273 + }, + "nodes": [ + 42435931, + 12026651156, + 5804425635 + ], + "geometry": [ + { "lat": 40.7138032, "lon": -73.9850499 }, + { "lat": 40.7138444, "lon": -73.9850386 }, + { "lat": 40.7138855, "lon": -73.9850273 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "separate", + "cycleway:right": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Samuel Dickstein Plaza", + "name:etymology:wikidata": "Q633827", + "name:ko": "사무엘 딕스타인 플라자", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1298186397, + "bounds": { + "minlat": 40.7138855, + "minlon": -73.9850273, + "maxlat": 40.7140522, + "maxlon": -73.9849722 + }, + "nodes": [ + 5804425635, + 5173481078, + 11038072249 + ], + "geometry": [ + { "lat": 40.7138855, "lon": -73.9850273 }, + { "lat": 40.7139592, "lon": -73.9850075 }, + { "lat": 40.7140522, "lon": -73.9849722 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Samuel Dickstein Plaza", + "name:etymology:wikidata": "Q633827", + "name:ko": "사무엘 딕스타인 플라자", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1298186398, + "bounds": { + "minlat": 40.7140522, + "minlon": -73.9849722, + "maxlat": 40.7142776, + "maxlon": -73.9848547 + }, + "nodes": [ + 11038072249, + 5804425626, + 5804425624, + 12026651157 + ], + "geometry": [ + { "lat": 40.7140522, "lon": -73.9849722 }, + { "lat": 40.7141154, "lon": -73.9849439 }, + { "lat": 40.7142147, "lon": -73.9848916 }, + { "lat": 40.7142776, "lon": -73.9848547 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "track", + "cycleway:both:traffic_mode": "parking", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Samuel Dickstein Plaza", + "name:etymology:wikidata": "Q633827", + "name:ko": "사무엘 딕스타인 플라자", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1298188324, + "bounds": { + "minlat": 40.7135073, + "minlon": -73.9886961, + "maxlat": 40.7141849, + "maxlon": -73.9885984 + }, + "nodes": [ + 42433550, + 8231942812, + 8231945163, + 42435925 + ], + "geometry": [ + { "lat": 40.7141849, "lon": -73.9886961 }, + { "lat": 40.7141003, "lon": -73.9886839 }, + { "lat": 40.7135788, "lon": -73.9886091 }, + { "lat": 40.7135073, "lon": -73.9885984 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Th 15:00-21:00; Fr 15:00-22:00; Sa 10:00-22:00; Su 10:00-21:00)", + "name": "Jefferson Street", + "name:etymology:wikidata": "Q11812", + "name:ko": "제퍼슨 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1298249790, + "bounds": { + "minlat": 40.8429055, + "minlon": -73.9384302, + "maxlat": 40.8435010, + "maxlon": -73.9379820 + }, + "nodes": [ + 42433043, + 7604384231, + 7604384218, + 42433044 + ], + "geometry": [ + { "lat": 40.8429055, "lon": -73.9384302 }, + { "lat": 40.8429679, "lon": -73.9383812 }, + { "lat": 40.8434509, "lon": -73.9380197 }, + { "lat": 40.8435010, "lon": -73.9379820 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1298249791, + "bounds": { + "minlat": 40.8438301, + "minlon": -73.9377418, + "maxlat": 40.8441370, + "maxlon": -73.9375180 + }, + "nodes": [ + 12027274598, + 8722881599, + 42429466 + ], + "geometry": [ + { "lat": 40.8438301, "lon": -73.9377418 }, + { "lat": 40.8440694, "lon": -73.9375672 }, + { "lat": 40.8441370, "lon": -73.9375180 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1298249792, + "bounds": { + "minlat": 40.8435010, + "minlon": -73.9379820, + "maxlat": 40.8438301, + "maxlon": -73.9377418 + }, + "nodes": [ + 42433044, + 7604384216, + 12027274598 + ], + "geometry": [ + { "lat": 40.8435010, "lon": -73.9379820 }, + { "lat": 40.8435622, "lon": -73.9379374 }, + { "lat": 40.8438301, "lon": -73.9377418 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:backward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1298647984, + "bounds": { + "minlat": 40.8080645, + "minlon": -73.9657902, + "maxlat": 40.8088175, + "maxlon": -73.9639884 + }, + "nodes": [ + 5004570632, + 12029862491, + 12029862493, + 12029862494, + 12029862492, + 470209120 + ], + "geometry": [ + { "lat": 40.8088175, "lon": -73.9657902 }, + { "lat": 40.8087394, "lon": -73.9657257 }, + { "lat": 40.8084425, "lon": -73.9650173 }, + { "lat": 40.8083988, "lon": -73.9649132 }, + { "lat": 40.8080690, "lon": -73.9641235 }, + { "lat": 40.8080645, "lon": -73.9639884 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "1", + "name": "West 116th Street", + "name:ru": "Западная 116-я стрит", + "name_1": "West 116 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1298647985, + "bounds": { + "minlat": 40.8083988, + "minlon": -73.9649132, + "maxlat": 40.8084658, + "maxlon": -73.9648621 + }, + "nodes": [ + 3579426871, + 12029862494 + ], + "geometry": [ + { "lat": 40.8084658, "lon": -73.9648621 }, + { "lat": 40.8083988, "lon": -73.9649132 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "Claremont Avenue", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5126299", + "wikipedia": "en:Claremont Avenue" + } +}, +{ + "type": "way", + "id": 1298678978, + "bounds": { + "minlat": 40.7955384, + "minlon": -73.9640015, + "maxlat": 40.7956425, + "maxlon": -73.9637514 + }, + "nodes": [ + 7115910327, + 12030196611, + 12030196610 + ], + "geometry": [ + { "lat": 40.7956425, "lon": -73.9640015 }, + { "lat": 40.7955818, "lon": -73.9638557 }, + { "lat": 40.7955384, "lon": -73.9637514 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1298943326, + "bounds": { + "minlat": 40.7839268, + "minlon": -73.9484206, + "maxlat": 40.7839852, + "maxlon": -73.9483798 + }, + "nodes": [ + 12032673871, + 6243559674 + ], + "geometry": [ + { "lat": 40.7839268, "lon": -73.9484206 }, + { "lat": 40.7839852, "lon": -73.9483798 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1299605790, + "bounds": { + "minlat": 40.8276930, + "minlon": -73.9146532, + "maxlat": 40.8282598, + "maxlon": -73.9141842 + }, + "nodes": [ + 12038440189, + 12038440198, + 12038440190, + 12038440191, + 12038440192, + 12038440199, + 12038440193 + ], + "geometry": [ + { "lat": 40.8281518, "lon": -73.9141842 }, + { "lat": 40.8281869, "lon": -73.9142558 }, + { "lat": 40.8282598, "lon": -73.9144045 }, + { "lat": 40.8279397, "lon": -73.9145907 }, + { "lat": 40.8278112, "lon": -73.9146532 }, + { "lat": 40.8278038, "lon": -73.9146517 }, + { "lat": 40.8276930, "lon": -73.9146290 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1299817325, + "bounds": { + "minlat": 40.8171290, + "minlon": -73.9155280, + "maxlat": 40.8175810, + "maxlon": -73.9148530 + }, + "nodes": [ + 42746083, + 12040128403, + 42768527 + ], + "geometry": [ + { "lat": 40.8171290, "lon": -73.9148530 }, + { "lat": 40.8175313, "lon": -73.9154538 }, + { "lat": 40.8175810, "lon": -73.9155280 } + ], + "tags": { + "highway": "residential", + "name": "East 152nd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "152nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 1299929958, + "bounds": { + "minlat": 40.8555068, + "minlon": -73.9673928, + "maxlat": 40.8557111, + "maxlon": -73.9672749 + }, + "nodes": [ + 4054801530, + 4207161477 + ], + "geometry": [ + { "lat": 40.8555068, "lon": -73.9673928 }, + { "lat": 40.8557111, "lon": -73.9672749 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1300033514, + "bounds": { + "minlat": 40.8447889, + "minlon": -73.9066661, + "maxlat": 40.8450657, + "maxlon": -73.9066417 + }, + "nodes": [ + 12041872699, + 12041872698 + ], + "geometry": [ + { "lat": 40.8450657, "lon": -73.9066417 }, + { "lat": 40.8447889, "lon": -73.9066661 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Monroe Avenue", + "name:etymology:wikidata": "Q11815", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Monroe", + "tiger:name_type": "Ave", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 1300054180, + "bounds": { + "minlat": 40.7301565, + "minlon": -73.9514256, + "maxlat": 40.7304718, + "maxlon": -73.9512445 + }, + "nodes": [ + 12042028859, + 8097222247, + 5052125058 + ], + "geometry": [ + { "lat": 40.7301565, "lon": -73.9512445 }, + { "lat": 40.7303934, "lon": -73.9513798 }, + { "lat": 40.7304718, "lon": -73.9514256 } + ], + "tags": { + "bicycle:lanes": "|no|no|designated", + "cycleway:lanes": "no|no|no|yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054181, + "bounds": { + "minlat": 40.7308767, + "minlon": -73.9516364, + "maxlat": 40.7309249, + "maxlon": -73.9513941 + }, + "nodes": [ + 12042028861, + 11007891601, + 12042028862 + ], + "geometry": [ + { "lat": 40.7308767, "lon": -73.9516364 }, + { "lat": 40.7308941, "lon": -73.9515488 }, + { "lat": 40.7309249, "lon": -73.9513941 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054182, + "bounds": { + "minlat": 40.7310121, + "minlon": -73.9516807, + "maxlat": 40.7310426, + "maxlon": -73.9514113 + }, + "nodes": [ + 12042028863, + 8097159396, + 12042028864 + ], + "geometry": [ + { "lat": 40.7310121, "lon": -73.9516807 }, + { "lat": 40.7310220, "lon": -73.9515937 }, + { "lat": 40.7310426, "lon": -73.9514113 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054183, + "bounds": { + "minlat": 40.7304718, + "minlon": -73.9515619, + "maxlat": 40.7307191, + "maxlon": -73.9514256 + }, + "nodes": [ + 5052125058, + 8097189311, + 9996409559, + 2987758108 + ], + "geometry": [ + { "lat": 40.7304718, "lon": -73.9514256 }, + { "lat": 40.7305517, "lon": -73.9514713 }, + { "lat": 40.7306584, "lon": -73.9515313 }, + { "lat": 40.7307191, "lon": -73.9515619 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054184, + "bounds": { + "minlat": 40.7307191, + "minlon": -73.9516364, + "maxlat": 40.7308767, + "maxlon": -73.9515619 + }, + "nodes": [ + 2987758108, + 2987758107, + 9996409558, + 12042028861 + ], + "geometry": [ + { "lat": 40.7307191, "lon": -73.9515619 }, + { "lat": 40.7307989, "lon": -73.9516033 }, + { "lat": 40.7308639, "lon": -73.9516317 }, + { "lat": 40.7308767, "lon": -73.9516364 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054185, + "bounds": { + "minlat": 40.7310121, + "minlon": -73.9517118, + "maxlat": 40.7311668, + "maxlon": -73.9516807 + }, + "nodes": [ + 12042028863, + 2987758105, + 8097159364, + 2987758876 + ], + "geometry": [ + { "lat": 40.7310121, "lon": -73.9516807 }, + { "lat": 40.7310490, "lon": -73.9516909 }, + { "lat": 40.7311028, "lon": -73.9517005 }, + { "lat": 40.7311668, "lon": -73.9517118 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054186, + "bounds": { + "minlat": 40.7312055, + "minlon": -73.9517365, + "maxlat": 40.7313537, + "maxlon": -73.9513102 + }, + "nodes": [ + 12042028865, + 12042028868, + 12042028866, + 12042057002, + 12042028867 + ], + "geometry": [ + { "lat": 40.7312055, "lon": -73.9513102 }, + { "lat": 40.7312643, "lon": -73.9513261 }, + { "lat": 40.7313537, "lon": -73.9513503 }, + { "lat": 40.7313271, "lon": -73.9516468 }, + { "lat": 40.7313190, "lon": -73.9517365 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300054187, + "bounds": { + "minlat": 40.7311668, + "minlon": -73.9517365, + "maxlat": 40.7313190, + "maxlon": -73.9517118 + }, + "nodes": [ + 2987758876, + 8097159321, + 12042028867 + ], + "geometry": [ + { "lat": 40.7311668, "lon": -73.9517118 }, + { "lat": 40.7312258, "lon": -73.9517213 }, + { "lat": 40.7313190, "lon": -73.9517365 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054188, + "bounds": { + "minlat": 40.7320837, + "minlon": -73.9518653, + "maxlat": 40.7320941, + "maxlon": -73.9517500 + }, + "nodes": [ + 12042056969, + 12042056971, + 12042056970 + ], + "geometry": [ + { "lat": 40.7320941, "lon": -73.9517500 }, + { "lat": 40.7320923, "lon": -73.9517705 }, + { "lat": 40.7320837, "lon": -73.9518653 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054189, + "bounds": { + "minlat": 40.7318727, + "minlon": -73.9518653, + "maxlat": 40.7320837, + "maxlon": -73.9518301 + }, + "nodes": [ + 2987758873, + 8097159353, + 12042056970 + ], + "geometry": [ + { "lat": 40.7318727, "lon": -73.9518301 }, + { "lat": 40.7319365, "lon": -73.9518410 }, + { "lat": 40.7320837, "lon": -73.9518653 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054190, + "bounds": { + "minlat": 40.7323783, + "minlon": -73.9519377, + "maxlat": 40.7325219, + "maxlon": -73.9519140 + }, + "nodes": [ + 12042056972, + 8097159395 + ], + "geometry": [ + { "lat": 40.7323783, "lon": -73.9519140 }, + { "lat": 40.7325219, "lon": -73.9519377 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054191, + "bounds": { + "minlat": 40.7328292, + "minlon": -73.9519871, + "maxlat": 40.7328397, + "maxlon": -73.9518757 + }, + "nodes": [ + 12042056974, + 12042056976, + 12042056975 + ], + "geometry": [ + { "lat": 40.7328397, "lon": -73.9518757 }, + { "lat": 40.7328382, "lon": -73.9518910 }, + { "lat": 40.7328292, "lon": -73.9519871 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054192, + "bounds": { + "minlat": 40.7337101, + "minlon": -73.9521783, + "maxlat": 40.7339983, + "maxlon": -73.9521316 + }, + "nodes": [ + 5481915250, + 8097025096, + 2987758904 + ], + "geometry": [ + { "lat": 40.7337101, "lon": -73.9521316 }, + { "lat": 40.7339317, "lon": -73.9521675 }, + { "lat": 40.7339983, "lon": -73.9521783 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054193, + "bounds": { + "minlat": 40.7336917, + "minlon": -73.9525207, + "maxlat": 40.7339663, + "maxlon": -73.9524639 + }, + "nodes": [ + 12042056978, + 12042057003, + 12042056985, + 12042056991, + 12042056982 + ], + "geometry": [ + { "lat": 40.7339663, "lon": -73.9525207 }, + { "lat": 40.7339055, "lon": -73.9524969 }, + { "lat": 40.7338212, "lon": -73.9524639 }, + { "lat": 40.7337564, "lon": -73.9524763 }, + { "lat": 40.7336917, "lon": -73.9524654 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054194, + "bounds": { + "minlat": 40.7334675, + "minlon": -73.9524434, + "maxlat": 40.7335768, + "maxlon": -73.9522417 + }, + "nodes": [ + 12042056983, + 12042056979, + 12042056990, + 12042056981, + 12042056980 + ], + "geometry": [ + { "lat": 40.7335768, "lon": -73.9524434 }, + { "lat": 40.7334675, "lon": -73.9524205 }, + { "lat": 40.7334716, "lon": -73.9523745 }, + { "lat": 40.7334754, "lon": -73.9523323 }, + { "lat": 40.7334835, "lon": -73.9522417 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054195, + "bounds": { + "minlat": 40.7335768, + "minlon": -73.9524654, + "maxlat": 40.7336917, + "maxlon": -73.9524434 + }, + "nodes": [ + 12042056982, + 12042056983 + ], + "geometry": [ + { "lat": 40.7336917, "lon": -73.9524654 }, + { "lat": 40.7335768, "lon": -73.9524434 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054196, + "bounds": { + "minlat": 40.7338212, + "minlon": -73.9524639, + "maxlat": 40.7338354, + "maxlon": -73.9522996 + }, + "nodes": [ + 12042056984, + 12042056986, + 12042056985 + ], + "geometry": [ + { "lat": 40.7338354, "lon": -73.9522996 }, + { "lat": 40.7338279, "lon": -73.9523892 }, + { "lat": 40.7338212, "lon": -73.9524639 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054197, + "bounds": { + "minlat": 40.7335814, + "minlon": -73.9524134, + "maxlat": 40.7336959, + "maxlon": -73.9523952 + }, + "nodes": [ + 12042056988, + 12042056992, + 12042056989 + ], + "geometry": [ + { "lat": 40.7336959, "lon": -73.9524134 }, + { "lat": 40.7336654, "lon": -73.9524086 }, + { "lat": 40.7335814, "lon": -73.9523952 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054198, + "bounds": { + "minlat": 40.7336959, + "minlon": -73.9524639, + "maxlat": 40.7338212, + "maxlon": -73.9524134 + }, + "nodes": [ + 12042056985, + 12042056987, + 12042056988 + ], + "geometry": [ + { "lat": 40.7338212, "lon": -73.9524639 }, + { "lat": 40.7337594, "lon": -73.9524252 }, + { "lat": 40.7336959, "lon": -73.9524134 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054199, + "bounds": { + "minlat": 40.7334716, + "minlon": -73.9523952, + "maxlat": 40.7335814, + "maxlon": -73.9523745 + }, + "nodes": [ + 12042056989, + 12042056990 + ], + "geometry": [ + { "lat": 40.7335814, "lon": -73.9523952 }, + { "lat": 40.7334716, "lon": -73.9523745 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054200, + "bounds": { + "minlat": 40.7336692, + "minlon": -73.9523732, + "maxlat": 40.7336799, + "maxlon": -73.9522740 + }, + "nodes": [ + 12042056994, + 12042056995, + 12042056993 + ], + "geometry": [ + { "lat": 40.7336692, "lon": -73.9523732 }, + { "lat": 40.7336702, "lon": -73.9523637 }, + { "lat": 40.7336799, "lon": -73.9522740 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054201, + "bounds": { + "minlat": 40.7336654, + "minlon": -73.9524086, + "maxlat": 40.7336692, + "maxlon": -73.9523732 + }, + "nodes": [ + 12042056992, + 12042056994 + ], + "geometry": [ + { "lat": 40.7336654, "lon": -73.9524086 }, + { "lat": 40.7336692, "lon": -73.9523732 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054202, + "bounds": { + "minlat": 40.7336799, + "minlon": -73.9523243, + "maxlat": 40.7339848, + "maxlon": -73.9522740 + }, + "nodes": [ + 4660170671, + 8097082873, + 12042056984, + 12042056993 + ], + "geometry": [ + { "lat": 40.7339848, "lon": -73.9523243 }, + { "lat": 40.7339196, "lon": -73.9523135 }, + { "lat": 40.7338354, "lon": -73.9522996 }, + { "lat": 40.7336799, "lon": -73.9522740 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054203, + "bounds": { + "minlat": 40.7334835, + "minlon": -73.9522740, + "maxlat": 40.7336799, + "maxlon": -73.9522417 + }, + "nodes": [ + 12042056993, + 12042056980 + ], + "geometry": [ + { "lat": 40.7336799, "lon": -73.9522740 }, + { "lat": 40.7334835, "lon": -73.9522417 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054204, + "bounds": { + "minlat": 40.7332738, + "minlon": -73.9522417, + "maxlat": 40.7334835, + "maxlon": -73.9522072 + }, + "nodes": [ + 12042056980, + 8097082880, + 2987758869 + ], + "geometry": [ + { "lat": 40.7334835, "lon": -73.9522417 }, + { "lat": 40.7333433, "lon": -73.9522186 }, + { "lat": 40.7332738, "lon": -73.9522072 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054205, + "bounds": { + "minlat": 40.7325692, + "minlon": -73.9520892, + "maxlat": 40.7325826, + "maxlon": -73.9519481 + }, + "nodes": [ + 4660170670, + 2987758871 + ], + "geometry": [ + { "lat": 40.7325692, "lon": -73.9520892 }, + { "lat": 40.7325826, "lon": -73.9519481 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "India Street", + "name:etymology:wikidata": "Q668", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300054206, + "bounds": { + "minlat": 40.7325919, + "minlon": -73.9518502, + "maxlat": 40.7328074, + "maxlon": -73.9495793 + }, + "nodes": [ + 8097159343, + 5481915288, + 5481915286, + 8097082916, + 8097159435, + 42499733 + ], + "geometry": [ + { "lat": 40.7325919, "lon": -73.9518502 }, + { "lat": 40.7326069, "lon": -73.9516923 }, + { "lat": 40.7326411, "lon": -73.9513318 }, + { "lat": 40.7327941, "lon": -73.9497194 }, + { "lat": 40.7328002, "lon": -73.9496556 }, + { "lat": 40.7328074, "lon": -73.9495793 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "India Street", + "name:etymology:wikidata": "Q668", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300054207, + "bounds": { + "minlat": 40.7318590, + "minlon": -73.9520112, + "maxlat": 40.7321085, + "maxlon": -73.9519711 + }, + "nodes": [ + 12042056996, + 8097144715, + 2987758874 + ], + "geometry": [ + { "lat": 40.7321085, "lon": -73.9520112 }, + { "lat": 40.7319247, "lon": -73.9519805 }, + { "lat": 40.7318590, "lon": -73.9519711 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054208, + "bounds": { + "minlat": 40.7304591, + "minlon": -73.9517023, + "maxlat": 40.7306837, + "maxlon": -73.9515692 + }, + "nodes": [ + 9996409556, + 2987758098, + 8097222276, + 2987758879 + ], + "geometry": [ + { "lat": 40.7306837, "lon": -73.9517023 }, + { "lat": 40.7306394, "lon": -73.9516759 }, + { "lat": 40.7305274, "lon": -73.9516092 }, + { "lat": 40.7304591, "lon": -73.9515692 } + ], + "tags": { + "bicycle:lanes": "|no|no|designated", + "cycleway:lanes": "|no|no|designated", + "cycleway:right": "lane", + "cycleway:right:lane": "exclusive", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|yes|", + "name": "McGuinness Boulevard", + "oneway": "yes", + "oneway:bicycle": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300054209, + "bounds": { + "minlat": 40.7300634, + "minlon": -73.9514630, + "maxlat": 40.7300946, + "maxlon": -73.9513621 + }, + "nodes": [ + 12042056999, + 12042057001, + 12042057000 + ], + "geometry": [ + { "lat": 40.7300634, "lon": -73.9514630 }, + { "lat": 40.7300684, "lon": -73.9514468 }, + { "lat": 40.7300946, "lon": -73.9513621 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300054210, + "bounds": { + "minlat": 40.7300946, + "minlon": -73.9515692, + "maxlat": 40.7304591, + "maxlon": -73.9513621 + }, + "nodes": [ + 2987758879, + 8097222282, + 12042057000 + ], + "geometry": [ + { "lat": 40.7304591, "lon": -73.9515692 }, + { "lat": 40.7303884, "lon": -73.9515283 }, + { "lat": 40.7300946, "lon": -73.9513621 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "merge_to_right|", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1300356754, + "bounds": { + "minlat": 40.8433352, + "minlon": -73.9121079, + "maxlat": 40.8441516, + "maxlon": -73.9118344 + }, + "nodes": [ + 12044636972, + 12739871642, + 2408354082 + ], + "geometry": [ + { "lat": 40.8441516, "lon": -73.9118344 }, + { "lat": 40.8434106, "lon": -73.9120841 }, + { "lat": 40.8433352, "lon": -73.9121079 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "foot": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1300360007, + "bounds": { + "minlat": 40.7450483, + "minlon": -73.9508224, + "maxlat": 40.7454043, + "maxlon": -73.9507018 + }, + "nodes": [ + 12044653392, + 11157958419, + 11157958405 + ], + "geometry": [ + { "lat": 40.7454043, "lon": -73.9507018 }, + { "lat": 40.7451087, "lon": -73.9508018 }, + { "lat": 40.7450483, "lon": -73.9508224 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300360008, + "bounds": { + "minlat": 40.7454043, + "minlon": -73.9507018, + "maxlat": 40.7457370, + "maxlon": -73.9505893 + }, + "nodes": [ + 11157958409, + 11157958420, + 12044653392 + ], + "geometry": [ + { "lat": 40.7457370, "lon": -73.9505893 }, + { "lat": 40.7456738, "lon": -73.9506106 }, + { "lat": 40.7454043, "lon": -73.9507018 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300360009, + "bounds": { + "minlat": 40.7436586, + "minlon": -73.9512920, + "maxlat": 40.7438747, + "maxlon": -73.9512169 + }, + "nodes": [ + 12044653393, + 11157958415, + 42866942 + ], + "geometry": [ + { "lat": 40.7438747, "lon": -73.9512169 }, + { "lat": 40.7437182, "lon": -73.9512710 }, + { "lat": 40.7436586, "lon": -73.9512920 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "11th Street", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300360010, + "bounds": { + "minlat": 40.7426909, + "minlon": -73.9523902, + "maxlat": 40.7428208, + "maxlon": -73.9521355 + }, + "nodes": [ + 2799469684, + 12044653394 + ], + "geometry": [ + { "lat": 40.7426909, "lon": -73.9523902 }, + { "lat": 40.7428208, "lon": -73.9521355 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "structure", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Jackson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300361586, + "bounds": { + "minlat": 40.8464132, + "minlon": -73.9094278, + "maxlat": 40.8465255, + "maxlon": -73.9092662 + }, + "nodes": [ + 12044652539, + 12044652540 + ], + "geometry": [ + { "lat": 40.8465255, "lon": -73.9092662 }, + { "lat": 40.8464132, "lon": -73.9094278 } + ], + "tags": { + "foot": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1300365350, + "bounds": { + "minlat": 40.7720605, + "minlon": -73.9329376, + "maxlat": 40.7721726, + "maxlon": -73.9324048 + }, + "nodes": [ + 12044698844, + 12044698845, + 12044698854, + 12044698846, + 12044698847, + 12044698848, + 12044698853, + 12044698849, + 12044698850, + 12044698851, + 12044698852, + 12044698830, + 7773969751, + 12044698831, + 12044698832, + 12044698833, + 12044698834, + 12044698835, + 7773969749, + 12044698836, + 12044698837, + 12044698844 + ], + "geometry": [ + { "lat": 40.7721711, "lon": -73.9326168 }, + { "lat": 40.7721726, "lon": -73.9325900 }, + { "lat": 40.7720861, "lon": -73.9324312 }, + { "lat": 40.7720733, "lon": -73.9324076 }, + { "lat": 40.7720696, "lon": -73.9324048 }, + { "lat": 40.7720666, "lon": -73.9324084 }, + { "lat": 40.7720651, "lon": -73.9324341 }, + { "lat": 40.7720611, "lon": -73.9325014 }, + { "lat": 40.7720766, "lon": -73.9325211 }, + { "lat": 40.7720605, "lon": -73.9329376 }, + { "lat": 40.7721263, "lon": -73.9329068 }, + { "lat": 40.7721358, "lon": -73.9329007 }, + { "lat": 40.7721267, "lon": -73.9328973 }, + { "lat": 40.7721134, "lon": -73.9328799 }, + { "lat": 40.7721076, "lon": -73.9328610 }, + { "lat": 40.7721121, "lon": -73.9326321 }, + { "lat": 40.7721203, "lon": -73.9326137 }, + { "lat": 40.7721292, "lon": -73.9326065 }, + { "lat": 40.7721373, "lon": -73.9326026 }, + { "lat": 40.7721486, "lon": -73.9326025 }, + { "lat": 40.7721656, "lon": -73.9326105 }, + { "lat": 40.7721711, "lon": -73.9326168 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300365355, + "bounds": { + "minlat": 40.7723114, + "minlon": -73.9327471, + "maxlat": 40.7725696, + "maxlon": -73.9325608 + }, + "nodes": [ + 12044698862, + 12044698863, + 9650262374, + 12044698864, + 12044698865, + 12044698866, + 12044698856, + 12044698857, + 12044698858, + 7814127464, + 12044698859, + 12044698860, + 12044698862 + ], + "geometry": [ + { "lat": 40.7723114, "lon": -73.9325608 }, + { "lat": 40.7723154, "lon": -73.9326000 }, + { "lat": 40.7723823, "lon": -73.9327136 }, + { "lat": 40.7723986, "lon": -73.9327446 }, + { "lat": 40.7724076, "lon": -73.9327471 }, + { "lat": 40.7725696, "lon": -73.9326529 }, + { "lat": 40.7725387, "lon": -73.9326646 }, + { "lat": 40.7724837, "lon": -73.9326683 }, + { "lat": 40.7724480, "lon": -73.9326677 }, + { "lat": 40.7724035, "lon": -73.9326529 }, + { "lat": 40.7723751, "lon": -73.9326348 }, + { "lat": 40.7723164, "lon": -73.9325696 }, + { "lat": 40.7723114, "lon": -73.9325608 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300365356, + "bounds": { + "minlat": 40.7723114, + "minlon": -73.9326683, + "maxlat": 40.7726242, + "maxlon": -73.9324990 + }, + "nodes": [ + 12044698862, + 12044698867, + 7756437638, + 7814127456, + 7756437598, + 7756437676, + 12044698868, + 11308871007, + 7754392574, + 12044724374, + 12044724373, + 12044724371, + 7754392576, + 12044724370, + 12044724369, + 7814127472, + 12044698855, + 12044698866, + 12044698856, + 12044698857, + 12044698858, + 7814127464, + 12044698859, + 12044698860, + 12044698862 + ], + "geometry": [ + { "lat": 40.7723114, "lon": -73.9325608 }, + { "lat": 40.7723241, "lon": -73.9325463 }, + { "lat": 40.7723455, "lon": -73.9325834 }, + { "lat": 40.7724119, "lon": -73.9326331 }, + { "lat": 40.7724330, "lon": -73.9326489 }, + { "lat": 40.7725319, "lon": -73.9326508 }, + { "lat": 40.7725603, "lon": -73.9326309 }, + { "lat": 40.7726093, "lon": -73.9325965 }, + { "lat": 40.7726024, "lon": -73.9325433 }, + { "lat": 40.7725890, "lon": -73.9324990 }, + { "lat": 40.7725963, "lon": -73.9324996 }, + { "lat": 40.7726175, "lon": -73.9325734 }, + { "lat": 40.7726216, "lon": -73.9325881 }, + { "lat": 40.7726242, "lon": -73.9326044 }, + { "lat": 40.7726216, "lon": -73.9326163 }, + { "lat": 40.7726142, "lon": -73.9326290 }, + { "lat": 40.7725829, "lon": -73.9326478 }, + { "lat": 40.7725696, "lon": -73.9326529 }, + { "lat": 40.7725387, "lon": -73.9326646 }, + { "lat": 40.7724837, "lon": -73.9326683 }, + { "lat": 40.7724480, "lon": -73.9326677 }, + { "lat": 40.7724035, "lon": -73.9326529 }, + { "lat": 40.7723751, "lon": -73.9326348 }, + { "lat": 40.7723164, "lon": -73.9325696 }, + { "lat": 40.7723114, "lon": -73.9325608 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1300365358, + "bounds": { + "minlat": 40.7725963, + "minlon": -73.9326290, + "maxlat": 40.7726787, + "maxlon": -73.9324996 + }, + "nodes": [ + 7814127472, + 12044724376, + 12044724377, + 12044724378, + 12044724375, + 12044724379, + 12044724373, + 12044724371, + 7754392576, + 12044724370, + 12044724369, + 7814127472 + ], + "geometry": [ + { "lat": 40.7726142, "lon": -73.9326290 }, + { "lat": 40.7726633, "lon": -73.9326033 }, + { "lat": 40.7726749, "lon": -73.9325960 }, + { "lat": 40.7726787, "lon": -73.9325907 }, + { "lat": 40.7726700, "lon": -73.9325636 }, + { "lat": 40.7726529, "lon": -73.9325018 }, + { "lat": 40.7725963, "lon": -73.9324996 }, + { "lat": 40.7726175, "lon": -73.9325734 }, + { "lat": 40.7726216, "lon": -73.9325881 }, + { "lat": 40.7726242, "lon": -73.9326044 }, + { "lat": 40.7726216, "lon": -73.9326163 }, + { "lat": 40.7726142, "lon": -73.9326290 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300365361, + "bounds": { + "minlat": 40.7721643, + "minlon": -73.9311225, + "maxlat": 40.7722268, + "maxlon": -73.9310487 + }, + "nodes": [ + 12044724383, + 12044724389, + 12044724390, + 7756442988, + 12044724391, + 12044724386, + 12044724385, + 12044724384, + 12044724383 + ], + "geometry": [ + { "lat": 40.7721643, "lon": -73.9310605 }, + { "lat": 40.7721859, "lon": -73.9310487 }, + { "lat": 40.7722122, "lon": -73.9310605 }, + { "lat": 40.7722175, "lon": -73.9310710 }, + { "lat": 40.7722268, "lon": -73.9311049 }, + { "lat": 40.7721913, "lon": -73.9311225 }, + { "lat": 40.7721812, "lon": -73.9310840 }, + { "lat": 40.7721754, "lon": -73.9310726 }, + { "lat": 40.7721643, "lon": -73.9310605 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300365362, + "bounds": { + "minlat": 40.7721210, + "minlon": -73.9311309, + "maxlat": 40.7721913, + "maxlon": -73.9310571 + }, + "nodes": [ + 12044724386, + 12044724392, + 11619007353, + 11619007354, + 7756437644, + 12044724380, + 12044724381, + 12044724382, + 12044724383, + 12044724384, + 12044724385, + 12044724386 + ], + "geometry": [ + { "lat": 40.7721913, "lon": -73.9311225 }, + { "lat": 40.7721749, "lon": -73.9311309 }, + { "lat": 40.7721627, "lon": -73.9310907 }, + { "lat": 40.7721323, "lon": -73.9311009 }, + { "lat": 40.7721210, "lon": -73.9311044 }, + { "lat": 40.7721240, "lon": -73.9310848 }, + { "lat": 40.7721357, "lon": -73.9310651 }, + { "lat": 40.7721475, "lon": -73.9310571 }, + { "lat": 40.7721643, "lon": -73.9310605 }, + { "lat": 40.7721754, "lon": -73.9310726 }, + { "lat": 40.7721812, "lon": -73.9310840 }, + { "lat": 40.7721913, "lon": -73.9311225 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1300365397, + "bounds": { + "minlat": 40.8454091, + "minlon": -73.9171220, + "maxlat": 40.8454441, + "maxlon": -73.9165900 + }, + "nodes": [ + 2808692852, + 12044684934, + 2808692851, + 42737539, + 12046949284, + 12044684935, + 12527797811, + 42737543 + ], + "geometry": [ + { "lat": 40.8454441, "lon": -73.9165900 }, + { "lat": 40.8454311, "lon": -73.9166420 }, + { "lat": 40.8454226, "lon": -73.9166882 }, + { "lat": 40.8454161, "lon": -73.9167338 }, + { "lat": 40.8454124, "lon": -73.9167783 }, + { "lat": 40.8454109, "lon": -73.9168263 }, + { "lat": 40.8454100, "lon": -73.9169778 }, + { "lat": 40.8454091, "lon": -73.9171220 } + ], + "tags": { + "highway": "residential", + "name": "Featherbed Lane", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Featherbed", + "tiger:name_type": "Ln" + } +}, +{ + "type": "way", + "id": 1300523154, + "bounds": { + "minlat": 40.7268041, + "minlon": -73.9268259, + "maxlat": 40.7274601, + "maxlon": -73.9263141 + }, + "nodes": [ + 12045973759, + 12045973760 + ], + "geometry": [ + { "lat": 40.7274601, "lon": -73.9263141 }, + { "lat": 40.7268041, "lon": -73.9268259 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1300523155, + "bounds": { + "minlat": 40.7274601, + "minlon": -73.9263141, + "maxlat": 40.7274955, + "maxlon": -73.9262891 + }, + "nodes": [ + 7712051792, + 12045973759 + ], + "geometry": [ + { "lat": 40.7274955, "lon": -73.9262891 }, + { "lat": 40.7274601, "lon": -73.9263141 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1300523156, + "bounds": { + "minlat": 40.7267758, + "minlon": -73.9268410, + "maxlat": 40.7268041, + "maxlon": -73.9268259 + }, + "nodes": [ + 12045973760, + 7712051801 + ], + "geometry": [ + { "lat": 40.7268041, "lon": -73.9268259 }, + { "lat": 40.7267758, "lon": -73.9268410 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1300551869, + "bounds": { + "minlat": 40.7531001, + "minlon": -73.9113766, + "maxlat": 40.7534970, + "maxlon": -73.9110094 + }, + "nodes": [ + 12046186742, + 12046186743, + 12046186744, + 12046186745, + 12046186746 + ], + "geometry": [ + { "lat": 40.7531001, "lon": -73.9113766 }, + { "lat": 40.7532274, "lon": -73.9113417 }, + { "lat": 40.7532898, "lon": -73.9112351 }, + { "lat": 40.7534770, "lon": -73.9110828 }, + { "lat": 40.7534970, "lon": -73.9110094 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1300551870, + "bounds": { + "minlat": 40.7530144, + "minlon": -73.9113766, + "maxlat": 40.7531001, + "maxlon": -73.9108699 + }, + "nodes": [ + 12046186742, + 11645750284, + 3938728150 + ], + "geometry": [ + { "lat": 40.7531001, "lon": -73.9113766 }, + { "lat": 40.7530857, "lon": -73.9112913 }, + { "lat": 40.7530144, "lon": -73.9108699 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1300551871, + "bounds": { + "minlat": 40.7535433, + "minlon": -73.9142182, + "maxlat": 40.7539999, + "maxlon": -73.9138653 + }, + "nodes": [ + 12046186747, + 12046209180, + 12046186748, + 12046186749, + 12046186750 + ], + "geometry": [ + { "lat": 40.7539999, "lon": -73.9142182 }, + { "lat": 40.7539686, "lon": -73.9141509 }, + { "lat": 40.7538358, "lon": -73.9138653 }, + { "lat": 40.7536666, "lon": -73.9139625 }, + { "lat": 40.7535433, "lon": -73.9140019 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300551872, + "bounds": { + "minlat": 40.7534588, + "minlon": -73.9140019, + "maxlat": 40.7535433, + "maxlon": -73.9134813 + }, + "nodes": [ + 12046186750, + 5357878516, + 8088629346, + 7762273788 + ], + "geometry": [ + { "lat": 40.7535433, "lon": -73.9140019 }, + { "lat": 40.7535181, "lon": -73.9138522 }, + { "lat": 40.7534735, "lon": -73.9135811 }, + { "lat": 40.7534588, "lon": -73.9134813 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300551873, + "bounds": { + "minlat": 40.7538119, + "minlon": -73.9160166, + "maxlat": 40.7541422, + "maxlon": -73.9155662 + }, + "nodes": [ + 12046186751, + 12046186758, + 12046186752, + 12046186753, + 12046186754, + 12046186755, + 12046186757, + 12046186756 + ], + "geometry": [ + { "lat": 40.7538583, "lon": -73.9160166 }, + { "lat": 40.7539815, "lon": -73.9159915 }, + { "lat": 40.7540407, "lon": -73.9159794 }, + { "lat": 40.7541422, "lon": -73.9158787 }, + { "lat": 40.7540253, "lon": -73.9155662 }, + { "lat": 40.7539615, "lon": -73.9155943 }, + { "lat": 40.7539340, "lon": -73.9156004 }, + { "lat": 40.7538119, "lon": -73.9156276 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1300551874, + "bounds": { + "minlat": 40.7538583, + "minlon": -73.9164781, + "maxlat": 40.7538886, + "maxlon": -73.9160166 + }, + "nodes": [ + 42833515, + 8088629350, + 9188971713, + 9188971712, + 12046186751 + ], + "geometry": [ + { "lat": 40.7538886, "lon": -73.9164781 }, + { "lat": 40.7538856, "lon": -73.9163724 }, + { "lat": 40.7538736, "lon": -73.9162001 }, + { "lat": 40.7538619, "lon": -73.9160551 }, + { "lat": 40.7538583, "lon": -73.9160166 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300551875, + "bounds": { + "minlat": 40.7537852, + "minlon": -73.9156276, + "maxlat": 40.7538119, + "maxlon": -73.9154457 + }, + "nodes": [ + 12046186756, + 10763787854, + 7762273791 + ], + "geometry": [ + { "lat": 40.7538119, "lon": -73.9156276 }, + { "lat": 40.7537985, "lon": -73.9155360 }, + { "lat": 40.7537852, "lon": -73.9154457 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1300551876, + "bounds": { + "minlat": 40.7535991, + "minlon": -73.9190672, + "maxlat": 40.7536694, + "maxlon": -73.9187549 + }, + "nodes": [ + 42923772, + 3569858112 + ], + "geometry": [ + { "lat": 40.7535991, "lon": -73.9190672 }, + { "lat": 40.7536694, "lon": -73.9187549 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300551878, + "bounds": { + "minlat": 40.7537242, + "minlon": -73.9191451, + "maxlat": 40.7538740, + "maxlon": -73.9187973 + }, + "nodes": [ + 12046186768, + 12046209169, + 8088629352, + 12046209170, + 12046209171, + 8088629396, + 12046209172, + 12046209173, + 12046186766, + 12046186760, + 12046186765, + 12046186764, + 12046186763, + 12046186762, + 12046186759, + 12046186768 + ], + "geometry": [ + { "lat": 40.7538209, "lon": -73.9191451 }, + { "lat": 40.7537843, "lon": -73.9191198 }, + { "lat": 40.7537372, "lon": -73.9190233 }, + { "lat": 40.7537242, "lon": -73.9189935 }, + { "lat": 40.7537534, "lon": -73.9188723 }, + { "lat": 40.7537733, "lon": -73.9188509 }, + { "lat": 40.7538386, "lon": -73.9187973 }, + { "lat": 40.7538740, "lon": -73.9188016 }, + { "lat": 40.7537784, "lon": -73.9188800 }, + { "lat": 40.7537640, "lon": -73.9188948 }, + { "lat": 40.7537576, "lon": -73.9189076 }, + { "lat": 40.7537505, "lon": -73.9189225 }, + { "lat": 40.7537446, "lon": -73.9189434 }, + { "lat": 40.7537442, "lon": -73.9189649 }, + { "lat": 40.7537456, "lon": -73.9189812 }, + { "lat": 40.7538209, "lon": -73.9191451 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300551881, + "bounds": { + "minlat": 40.7537442, + "minlon": -73.9191451, + "maxlat": 40.7538870, + "maxlon": -73.9188016 + }, + "nodes": [ + 12046186768, + 12046209174, + 11645750338, + 11645750337, + 12046209175, + 12046209173, + 12046186766, + 12046186760, + 12046186765, + 12046186764, + 12046186763, + 12046186762, + 12046186759, + 12046186768 + ], + "geometry": [ + { "lat": 40.7538209, "lon": -73.9191451 }, + { "lat": 40.7538389, "lon": -73.9191333 }, + { "lat": 40.7537603, "lon": -73.9189667 }, + { "lat": 40.7537744, "lon": -73.9189187 }, + { "lat": 40.7538870, "lon": -73.9188229 }, + { "lat": 40.7538740, "lon": -73.9188016 }, + { "lat": 40.7537784, "lon": -73.9188800 }, + { "lat": 40.7537640, "lon": -73.9188948 }, + { "lat": 40.7537576, "lon": -73.9189076 }, + { "lat": 40.7537505, "lon": -73.9189225 }, + { "lat": 40.7537446, "lon": -73.9189434 }, + { "lat": 40.7537442, "lon": -73.9189649 }, + { "lat": 40.7537456, "lon": -73.9189812 }, + { "lat": 40.7538209, "lon": -73.9191451 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1300551882, + "bounds": { + "minlat": 40.7534802, + "minlon": -73.9195944, + "maxlat": 40.7535991, + "maxlon": -73.9190672 + }, + "nodes": [ + 13746022280, + 13511882309, + 42923772 + ], + "geometry": [ + { "lat": 40.7534802, "lon": -73.9195944 }, + { "lat": 40.7534989, "lon": -73.9195113 }, + { "lat": 40.7535991, "lon": -73.9190672 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1300551883, + "bounds": { + "minlat": 40.7533407, + "minlon": -73.9202162, + "maxlat": 40.7534037, + "maxlon": -73.9199335 + }, + "nodes": [ + 8839866846, + 8088564391, + 13746022281, + 12046209176 + ], + "geometry": [ + { "lat": 40.7533407, "lon": -73.9202162 }, + { "lat": 40.7533652, "lon": -73.9201042 }, + { "lat": 40.7533770, "lon": -73.9200517 }, + { "lat": 40.7534037, "lon": -73.9199335 } + ], + "tags": { + "cycleway": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1300551884, + "bounds": { + "minlat": 40.7532864, + "minlon": -73.9204653, + "maxlat": 40.7533407, + "maxlon": -73.9202162 + }, + "nodes": [ + 42845872, + 8839866846 + ], + "geometry": [ + { "lat": 40.7532864, "lon": -73.9204653 }, + { "lat": 40.7533407, "lon": -73.9202162 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1300551885, + "bounds": { + "minlat": 40.7524220, + "minlon": -73.9243604, + "maxlat": 40.7525450, + "maxlon": -73.9238351 + }, + "nodes": [ + 42917872, + 10609398742, + 8088564402, + 6828923471 + ], + "geometry": [ + { "lat": 40.7524220, "lon": -73.9243604 }, + { "lat": 40.7524398, "lon": -73.9242853 }, + { "lat": 40.7524693, "lon": -73.9241676 }, + { "lat": 40.7525450, "lon": -73.9238351 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1300551886, + "bounds": { + "minlat": 40.7519927, + "minlon": -73.9312596, + "maxlat": 40.7520022, + "maxlon": -73.9306069 + }, + "nodes": [ + 42932492, + 11645913742, + 12046209177 + ], + "geometry": [ + { "lat": 40.7519927, "lon": -73.9312596 }, + { "lat": 40.7519949, "lon": -73.9311104 }, + { "lat": 40.7520022, "lon": -73.9306069 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300551887, + "bounds": { + "minlat": 40.7520113, + "minlon": -73.9300919, + "maxlat": 40.7520168, + "maxlon": -73.9297552 + }, + "nodes": [ + 42908517, + 8088564416, + 10598537440 + ], + "geometry": [ + { "lat": 40.7520113, "lon": -73.9300919 }, + { "lat": 40.7520120, "lon": -73.9300152 }, + { "lat": 40.7520168, "lon": -73.9297552 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300551888, + "bounds": { + "minlat": 40.7519885, + "minlon": -73.9314429, + "maxlat": 40.7519927, + "maxlon": -73.9312596 + }, + "nodes": [ + 12046209178, + 42932492 + ], + "geometry": [ + { "lat": 40.7519885, "lon": -73.9314429 }, + { "lat": 40.7519927, "lon": -73.9312596 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1300551889, + "bounds": { + "minlat": 40.7519027, + "minlon": -73.9326380, + "maxlat": 40.7519789, + "maxlon": -73.9319184 + }, + "nodes": [ + 4443931196, + 3573447509, + 42905209, + 13702917033, + 4841296391, + 8088590921, + 42838389 + ], + "geometry": [ + { "lat": 40.7519027, "lon": -73.9326380 }, + { "lat": 40.7519274, "lon": -73.9324806 }, + { "lat": 40.7519456, "lon": -73.9323405 }, + { "lat": 40.7519478, "lon": -73.9323202 }, + { "lat": 40.7519622, "lon": -73.9321906 }, + { "lat": 40.7519730, "lon": -73.9320340 }, + { "lat": 40.7519789, "lon": -73.9319184 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300551890, + "bounds": { + "minlat": 40.7509790, + "minlon": -73.9347430, + "maxlat": 40.7511260, + "maxlon": -73.9345418 + }, + "nodes": [ + 42920217, + 8088590924, + 7059303882, + 8073501866 + ], + "geometry": [ + { "lat": 40.7509790, "lon": -73.9347430 }, + { "lat": 40.7510201, "lon": -73.9346899 }, + { "lat": 40.7510813, "lon": -73.9346064 }, + { "lat": 40.7511260, "lon": -73.9345418 } + ], + "tags": { + "cycleway": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1300551891, + "bounds": { + "minlat": 40.7497140, + "minlon": -73.9361305, + "maxlat": 40.7501372, + "maxlon": -73.9356707 + }, + "nodes": [ + 7762265855, + 12046209179 + ], + "geometry": [ + { "lat": 40.7497140, "lon": -73.9361305 }, + { "lat": 40.7501372, "lon": -73.9356707 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "jersey_barrier", + "cycleway:right": "shared_lane", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|through;right" + } +}, +{ + "type": "way", + "id": 1300558409, + "bounds": { + "minlat": 40.7494024, + "minlon": -73.9183641, + "maxlat": 40.7495477, + "maxlon": -73.9180336 + }, + "nodes": [ + 12046272383, + 12046272397, + 12046272398, + 12046272414, + 12046272399, + 12046272400, + 12046272411, + 12046272401, + 12046272402, + 12046272403, + 12046272404, + 12046272371, + 12046272372, + 12046272373, + 12046272374, + 12046272375, + 12046272376, + 12046272377, + 12046272405, + 12046272378, + 12046272379, + 12046272381, + 10677542687, + 12046272382, + 12046272383 + ], + "geometry": [ + { "lat": 40.7495203, "lon": -73.9180343 }, + { "lat": 40.7495087, "lon": -73.9180336 }, + { "lat": 40.7494024, "lon": -73.9180554 }, + { "lat": 40.7494306, "lon": -73.9183309 }, + { "lat": 40.7494340, "lon": -73.9183641 }, + { "lat": 40.7495018, "lon": -73.9183498 }, + { "lat": 40.7495080, "lon": -73.9183463 }, + { "lat": 40.7495148, "lon": -73.9183426 }, + { "lat": 40.7495317, "lon": -73.9183255 }, + { "lat": 40.7495400, "lon": -73.9183056 }, + { "lat": 40.7495477, "lon": -73.9182627 }, + { "lat": 40.7495467, "lon": -73.9182507 }, + { "lat": 40.7495448, "lon": -73.9182578 }, + { "lat": 40.7495385, "lon": -73.9182658 }, + { "lat": 40.7495308, "lon": -73.9182706 }, + { "lat": 40.7495263, "lon": -73.9182709 }, + { "lat": 40.7495205, "lon": -73.9182675 }, + { "lat": 40.7495164, "lon": -73.9182578 }, + { "lat": 40.7495158, "lon": -73.9182539 }, + { "lat": 40.7495140, "lon": -73.9182425 }, + { "lat": 40.7494938, "lon": -73.9180769 }, + { "lat": 40.7495035, "lon": -73.9180455 }, + { "lat": 40.7495062, "lon": -73.9180431 }, + { "lat": 40.7495101, "lon": -73.9180393 }, + { "lat": 40.7495203, "lon": -73.9180343 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1300558415, + "bounds": { + "minlat": 40.7494425, + "minlon": -73.9186550, + "maxlat": 40.7494977, + "maxlon": -73.9184281 + }, + "nodes": [ + 12046272417, + 12046272418, + 12046272419, + 12046272420, + 12046272421, + 12046272422, + 12046272423, + 12046272424, + 12046272428, + 12046272417 + ], + "geometry": [ + { "lat": 40.7494585, "lon": -73.9186550 }, + { "lat": 40.7494977, "lon": -73.9184505 }, + { "lat": 40.7494939, "lon": -73.9184393 }, + { "lat": 40.7494885, "lon": -73.9184323 }, + { "lat": 40.7494815, "lon": -73.9184281 }, + { "lat": 40.7494469, "lon": -73.9184351 }, + { "lat": 40.7494440, "lon": -73.9184364 }, + { "lat": 40.7494425, "lon": -73.9184409 }, + { "lat": 40.7494442, "lon": -73.9184769 }, + { "lat": 40.7494585, "lon": -73.9186550 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1300638107, + "bounds": { + "minlat": 40.8464621, + "minlon": -73.9168628, + "maxlat": 40.8468167, + "maxlon": -73.9152670 + }, + "nodes": [ + 42737547, + 12527797823, + 42758053 + ], + "geometry": [ + { "lat": 40.8464621, "lon": -73.9168628 }, + { "lat": 40.8465096, "lon": -73.9166489 }, + { "lat": 40.8468167, "lon": -73.9152670 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1300668754, + "bounds": { + "minlat": 40.8501664, + "minlon": -73.9848167, + "maxlat": 40.8503060, + "maxlon": -73.9848105 + }, + "nodes": [ + 3639311161, + 10943492031 + ], + "geometry": [ + { "lat": 40.8501664, "lon": -73.9848105 }, + { "lat": 40.8503060, "lon": -73.9848167 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Bergen Boulevard", + "oneway": "yes", + "ref": "NJ 63", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1300834399, + "bounds": { + "minlat": 40.7009285, + "minlon": -73.9905348, + "maxlat": 40.7014374, + "maxlon": -73.9897033 + }, + "nodes": [ + 12048462056, + 10739408446, + 12048462062, + 12048462061, + 12048462057, + 12048462058, + 12048462059, + 12048462060, + 12048462061 + ], + "geometry": [ + { "lat": 40.7012620, "lon": -73.9897033 }, + { "lat": 40.7012617, "lon": -73.9897909 }, + { "lat": 40.7012730, "lon": -73.9898327 }, + { "lat": 40.7012925, "lon": -73.9899048 }, + { "lat": 40.7014374, "lon": -73.9905348 }, + { "lat": 40.7013156, "lon": -73.9904502 }, + { "lat": 40.7009626, "lon": -73.9900597 }, + { "lat": 40.7009285, "lon": -73.9899202 }, + { "lat": 40.7012925, "lon": -73.9899048 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1300866540, + "bounds": { + "minlat": 40.7411477, + "minlon": -73.9352382, + "maxlat": 40.7429902, + "maxlon": -73.9348703 + }, + "nodes": [ + 42860576, + 9981973345, + 2708252772, + 9981973339, + 42880280 + ], + "geometry": [ + { "lat": 40.7429902, "lon": -73.9348703 }, + { "lat": 40.7429035, "lon": -73.9348879 }, + { "lat": 40.7428732, "lon": -73.9348938 }, + { "lat": 40.7412232, "lon": -73.9352241 }, + { "lat": 40.7411477, "lon": -73.9352382 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "31st Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1301630705, + "bounds": { + "minlat": 40.8504726, + "minlon": -73.9235138, + "maxlat": 40.8507976, + "maxlon": -73.9232720 + }, + "nodes": [ + 4484724011, + 12056221768, + 12056221767, + 12056242287, + 12056221766, + 12056242286, + 12056221765, + 4484724013, + 12056242285 + ], + "geometry": [ + { "lat": 40.8507976, "lon": -73.9232720 }, + { "lat": 40.8507562, "lon": -73.9233050 }, + { "lat": 40.8507164, "lon": -73.9233348 }, + { "lat": 40.8506735, "lon": -73.9233629 }, + { "lat": 40.8506274, "lon": -73.9233922 }, + { "lat": 40.8505955, "lon": -73.9234148 }, + { "lat": 40.8505622, "lon": -73.9234393 }, + { "lat": 40.8505089, "lon": -73.9234821 }, + { "lat": 40.8504726, "lon": -73.9235138 } + ], + "tags": { + "bicycle": "designated", + "foot": "designated", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1301761640, + "bounds": { + "minlat": 40.8335646, + "minlon": -73.9895174, + "maxlat": 40.8339284, + "maxlon": -73.9888446 + }, + "nodes": [ + 103187741, + 103187739, + 440208215, + 103187737, + 103187735, + 103187733 + ], + "geometry": [ + { "lat": 40.8339284, "lon": -73.9895174 }, + { "lat": 40.8338413, "lon": -73.9893144 }, + { "lat": 40.8338049, "lon": -73.9892265 }, + { "lat": 40.8337697, "lon": -73.9891680 }, + { "lat": 40.8336936, "lon": -73.9890467 }, + { "lat": 40.8335646, "lon": -73.9888446 } + ], + "tags": { + "highway": "residential", + "name": "Aurora Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Aurora", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 1301761641, + "bounds": { + "minlat": 40.8335646, + "minlon": -73.9888446, + "maxlat": 40.8348499, + "maxlon": -73.9880707 + }, + "nodes": [ + 103187733, + 103244295, + 103244296, + 103244297, + 103244298, + 103244299, + 440208238, + 2814636434 + ], + "geometry": [ + { "lat": 40.8335646, "lon": -73.9888446 }, + { "lat": 40.8337680, "lon": -73.9886746 }, + { "lat": 40.8338565, "lon": -73.9886202 }, + { "lat": 40.8339405, "lon": -73.9885880 }, + { "lat": 40.8341000, "lon": -73.9885280 }, + { "lat": 40.8342170, "lon": -73.9884720 }, + { "lat": 40.8342939, "lon": -73.9884316 }, + { "lat": 40.8348499, "lon": -73.9880707 } + ], + "tags": { + "highway": "residential", + "name": "West End Avenue", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "West End", + "tiger:name_base_1": "Jassamine", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Way", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 1301802522, + "bounds": { + "minlat": 40.7879816, + "minlon": -73.9384419, + "maxlat": 40.7880714, + "maxlon": -73.9381789 + }, + "nodes": [ + 42433510, + 7924346729, + 9906259312, + 9906259313, + 12057617348 + ], + "geometry": [ + { "lat": 40.7879854, "lon": -73.9381789 }, + { "lat": 40.7879816, "lon": -73.9381980 }, + { "lat": 40.7879860, "lon": -73.9382276 }, + { "lat": 40.7879947, "lon": -73.9382585 }, + { "lat": 40.7880714, "lon": -73.9384419 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 105th Street", + "name:ru": "Восточная 105-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1301851011, + "bounds": { + "minlat": 40.8533225, + "minlon": -73.9209036, + "maxlat": 40.8533638, + "maxlon": -73.9208281 + }, + "nodes": [ + 9918291029, + 9918291028 + ], + "geometry": [ + { "lat": 40.8533638, "lon": -73.9209036 }, + { "lat": 40.8533225, "lon": -73.9208281 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1301855017, + "bounds": { + "minlat": 40.8536482, + "minlon": -73.9208763, + "maxlat": 40.8536989, + "maxlon": -73.9208287 + }, + "nodes": [ + 9918291026, + 12058062054 + ], + "geometry": [ + { "lat": 40.8536989, "lon": -73.9208287 }, + { "lat": 40.8536482, "lon": -73.9208763 } + ], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1301855455, + "bounds": { + "minlat": 40.8518399, + "minlon": -73.9221998, + "maxlat": 40.8525071, + "maxlon": -73.9215760 + }, + "nodes": [ + 12058067237, + 12058067239 + ], + "geometry": [ + { "lat": 40.8518399, "lon": -73.9221998 }, + { "lat": 40.8525071, "lon": -73.9215760 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1301886793, + "bounds": { + "minlat": 40.8605174, + "minlon": -73.9154800, + "maxlat": 40.8620045, + "maxlon": -73.9136175 + }, + "nodes": [ + 7899133143, + 12058342987, + 12058342988, + 12058343000, + 12058342989, + 12058342986 + ], + "geometry": [ + { "lat": 40.8605174, "lon": -73.9154800 }, + { "lat": 40.8613769, "lon": -73.9143576 }, + { "lat": 40.8614499, "lon": -73.9142653 }, + { "lat": 40.8615277, "lon": -73.9141711 }, + { "lat": 40.8619712, "lon": -73.9136575 }, + { "lat": 40.8620045, "lon": -73.9136175 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1301886794, + "bounds": { + "minlat": 40.8613769, + "minlon": -73.9146011, + "maxlat": 40.8622355, + "maxlon": -73.9136575 + }, + "nodes": [ + 12058342989, + 12058342990, + 12058342991, + 12058342992, + 12058342993, + 12058342994, + 12058342995, + 12058342996, + 12058342997, + 12058342998, + 12058342999, + 12058342987 + ], + "geometry": [ + { "lat": 40.8619712, "lon": -73.9136575 }, + { "lat": 40.8622355, "lon": -73.9141807 }, + { "lat": 40.8619007, "lon": -73.9145002 }, + { "lat": 40.8618646, "lon": -73.9145250 }, + { "lat": 40.8618124, "lon": -73.9145551 }, + { "lat": 40.8617602, "lon": -73.9145746 }, + { "lat": 40.8617013, "lon": -73.9145905 }, + { "lat": 40.8616438, "lon": -73.9146011 }, + { "lat": 40.8615889, "lon": -73.9145940 }, + { "lat": 40.8615447, "lon": -73.9145675 }, + { "lat": 40.8615126, "lon": -73.9145374 }, + { "lat": 40.8613769, "lon": -73.9143576 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1301886795, + "bounds": { + "minlat": 40.8647664, + "minlon": -73.9107720, + "maxlat": 40.8666570, + "maxlon": -73.9098753 + }, + "nodes": [ + 595749315, + 595749316, + 595749317 + ], + "geometry": [ + { "lat": 40.8647664, "lon": -73.9107720 }, + { "lat": 40.8655573, "lon": -73.9104058 }, + { "lat": 40.8666570, "lon": -73.9098753 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1301889077, + "bounds": { + "minlat": 40.8623227, + "minlon": -73.9138068, + "maxlat": 40.8626850, + "maxlon": -73.9130396 + }, + "nodes": [ + 595749106, + 595749107, + 12058439886, + 12058439887, + 12058439877, + 12058439888, + 12058439878, + 12058439899, + 12058439879, + 12058439898, + 12058439885, + 12058439897, + 12058439880, + 12058439896, + 12058439884, + 12058439895, + 12058439881, + 12058439894, + 12058439873, + 12058439893, + 12058439874, + 12058439892, + 12058439883, + 12058439891, + 12058439875, + 12058439890, + 12058439882, + 12058439889, + 12058439876, + 595749111, + 12058439900, + 595749112 + ], + "geometry": [ + { "lat": 40.8623227, "lon": -73.9134871 }, + { "lat": 40.8624142, "lon": -73.9137069 }, + { "lat": 40.8624225, "lon": -73.9137247 }, + { "lat": 40.8624321, "lon": -73.9137411 }, + { "lat": 40.8624431, "lon": -73.9137561 }, + { "lat": 40.8624552, "lon": -73.9137694 }, + { "lat": 40.8624684, "lon": -73.9137809 }, + { "lat": 40.8624824, "lon": -73.9137904 }, + { "lat": 40.8624971, "lon": -73.9137978 }, + { "lat": 40.8625124, "lon": -73.9138030 }, + { "lat": 40.8625279, "lon": -73.9138060 }, + { "lat": 40.8625437, "lon": -73.9138068 }, + { "lat": 40.8625594, "lon": -73.9138052 }, + { "lat": 40.8625749, "lon": -73.9138015 }, + { "lat": 40.8625900, "lon": -73.9137954 }, + { "lat": 40.8626045, "lon": -73.9137873 }, + { "lat": 40.8626182, "lon": -73.9137771 }, + { "lat": 40.8626310, "lon": -73.9137650 }, + { "lat": 40.8626428, "lon": -73.9137511 }, + { "lat": 40.8626533, "lon": -73.9137356 }, + { "lat": 40.8626625, "lon": -73.9137187 }, + { "lat": 40.8626702, "lon": -73.9137005 }, + { "lat": 40.8626764, "lon": -73.9136814 }, + { "lat": 40.8626809, "lon": -73.9136614 }, + { "lat": 40.8626838, "lon": -73.9136409 }, + { "lat": 40.8626850, "lon": -73.9136191 }, + { "lat": 40.8626843, "lon": -73.9135972 }, + { "lat": 40.8626817, "lon": -73.9135756 }, + { "lat": 40.8626772, "lon": -73.9135545 }, + { "lat": 40.8626710, "lon": -73.9135343 }, + { "lat": 40.8626633, "lon": -73.9135142 }, + { "lat": 40.8624611, "lon": -73.9130396 } + ], + "tags": { + "highway": "unclassified", + "name": "Exterior Street", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1301912890, + "bounds": { + "minlat": 40.7096264, + "minlon": -74.0134583, + "maxlat": 40.7097916, + "maxlon": -74.0133932 + }, + "nodes": [ + 12058598882, + 12058598883 + ], + "geometry": [ + { "lat": 40.7097916, "lon": -74.0133932 }, + { "lat": 40.7096264, "lon": -74.0134583 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1302158553, + "bounds": { + "minlat": 40.7831753, + "minlon": -73.9788794, + "maxlat": 40.7833371, + "maxlon": -73.9787638 + }, + "nodes": [ + 12060299580, + 12060299582, + 12060299585, + 12060299581 + ], + "geometry": [ + { "lat": 40.7831753, "lon": -73.9788794 }, + { "lat": 40.7832408, "lon": -73.9788326 }, + { "lat": 40.7832673, "lon": -73.9788136 }, + { "lat": 40.7833371, "lon": -73.9787638 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1302563288, + "bounds": { + "minlat": 40.8758541, + "minlon": -73.9247415, + "maxlat": 40.8758756, + "maxlon": -73.9246245 + }, + "nodes": [ + 5771241294, + 12063632743, + 12063632742, + 12063632741, + 12063632740, + 12063632732, + 11978683196 + ], + "geometry": [ + { "lat": 40.8758541, "lon": -73.9246245 }, + { "lat": 40.8758557, "lon": -73.9246515 }, + { "lat": 40.8758579, "lon": -73.9246750 }, + { "lat": 40.8758613, "lon": -73.9246980 }, + { "lat": 40.8758650, "lon": -73.9247145 }, + { "lat": 40.8758701, "lon": -73.9247297 }, + { "lat": 40.8758756, "lon": -73.9247415 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1302571330, + "bounds": { + "minlat": 40.8758541, + "minlon": -73.9246245, + "maxlat": 40.8760005, + "maxlon": -73.9241407 + }, + "nodes": [ + 5771241294, + 12063632735, + 12063632734, + 12063632733, + 5771241295, + 5771241296, + 12063722993, + 12063722994, + 5771241298, + 12063723015, + 5771241299 + ], + "geometry": [ + { "lat": 40.8758541, "lon": -73.9246245 }, + { "lat": 40.8758572, "lon": -73.9245958 }, + { "lat": 40.8758606, "lon": -73.9245678 }, + { "lat": 40.8758646, "lon": -73.9245402 }, + { "lat": 40.8758697, "lon": -73.9245138 }, + { "lat": 40.8759246, "lon": -73.9242907 }, + { "lat": 40.8759374, "lon": -73.9242520 }, + { "lat": 40.8759490, "lon": -73.9242237 }, + { "lat": 40.8759618, "lon": -73.9241975 }, + { "lat": 40.8759760, "lon": -73.9241747 }, + { "lat": 40.8760005, "lon": -73.9241407 } + ], + "tags": { + "access": "private", + "highway": "service", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1302643589, + "bounds": { + "minlat": 40.8794064, + "minlon": -73.9196995, + "maxlat": 40.8803927, + "maxlon": -73.9184458 + }, + "nodes": [ + 12064274957, + 12064288831, + 12064288828, + 12064288829, + 2520287857, + 12064288830, + 8584784537, + 8584784536, + 8584784532, + 8584784531, + 8584784530, + 8584784528, + 252128124 + ], + "geometry": [ + { "lat": 40.8803927, "lon": -73.9184458 }, + { "lat": 40.8803002, "lon": -73.9185546 }, + { "lat": 40.8802178, "lon": -73.9186524 }, + { "lat": 40.8801368, "lon": -73.9187488 }, + { "lat": 40.8800560, "lon": -73.9188461 }, + { "lat": 40.8799745, "lon": -73.9189447 }, + { "lat": 40.8798930, "lon": -73.9190444 }, + { "lat": 40.8798127, "lon": -73.9191451 }, + { "lat": 40.8797417, "lon": -73.9192369 }, + { "lat": 40.8796573, "lon": -73.9193473 }, + { "lat": 40.8795783, "lon": -73.9194535 }, + { "lat": 40.8794940, "lon": -73.9195728 }, + { "lat": 40.8794064, "lon": -73.9196995 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1302643590, + "bounds": { + "minlat": 40.8803927, + "minlon": -73.9184458, + "maxlat": 40.8805759, + "maxlon": -73.9182318 + }, + "nodes": [ + 12064274962, + 12064274957 + ], + "geometry": [ + { "lat": 40.8805759, "lon": -73.9182318 }, + { "lat": 40.8803927, "lon": -73.9184458 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1302645390, + "bounds": { + "minlat": 40.8800200, + "minlon": -73.9187402, + "maxlat": 40.8803754, + "maxlon": -73.9183327 + }, + "nodes": [ + 252128249, + 12064288845 + ], + "geometry": [ + { "lat": 40.8800200, "lon": -73.9187402 }, + { "lat": 40.8803754, "lon": -73.9183327 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1302645391, + "bounds": { + "minlat": 40.8803754, + "minlon": -73.9183327, + "maxlat": 40.8805596, + "maxlon": -73.9181189 + }, + "nodes": [ + 12064288845, + 12064288844 + ], + "geometry": [ + { "lat": 40.8803754, "lon": -73.9183327 }, + { "lat": 40.8805596, "lon": -73.9181189 } + ], + "tags": { + "bridge": "yes", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1302738039, + "bounds": { + "minlat": 40.8485206, + "minlon": -73.9359288, + "maxlat": 40.8491457, + "maxlon": -73.9354726 + }, + "nodes": [ + 42428090, + 9550791806, + 9550791790, + 42449637 + ], + "geometry": [ + { "lat": 40.8491457, "lon": -73.9354726 }, + { "lat": 40.8490944, "lon": -73.9355100 }, + { "lat": 40.8485845, "lon": -73.9358821 }, + { "lat": 40.8485206, "lon": -73.9359288 } + ], + "tags": { + "highway": "tertiary", + "name": "Wadsworth Avenue", + "name:etymology:wikidata": "Q2339186", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 1302763979, + "bounds": { + "minlat": 40.8466906, + "minlon": -73.9312584, + "maxlat": 40.8468606, + "maxlon": -73.9308669 + }, + "nodes": [ + 12065306240, + 12065306241 + ], + "geometry": [ + { "lat": 40.8468606, "lon": -73.9312584 }, + { "lat": 40.8466906, "lon": -73.9308669 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1302763980, + "bounds": { + "minlat": 40.8472362, + "minlon": -73.9338592, + "maxlat": 40.8474550, + "maxlon": -73.9332816 + }, + "nodes": [ + 12065325171, + 12065325179, + 12065325170, + 12065325169, + 60925716 + ], + "geometry": [ + { "lat": 40.8472362, "lon": -73.9332816 }, + { "lat": 40.8473325, "lon": -73.9335441 }, + { "lat": 40.8473746, "lon": -73.9336551 }, + { "lat": 40.8474133, "lon": -73.9337545 }, + { "lat": 40.8474550, "lon": -73.9338592 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "-1", + "maxheight": "default", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1302764494, + "bounds": { + "minlat": 40.8471113, + "minlon": -73.9339355, + "maxlat": 40.8473520, + "maxlon": -73.9333726 + }, + "nodes": [ + 12065287963, + 60925728 + ], + "geometry": [ + { "lat": 40.8471113, "lon": -73.9333726 }, + { "lat": 40.8473520, "lon": -73.9339355 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "-1", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1303171092, + "bounds": { + "minlat": 40.7396352, + "minlon": -73.9896275, + "maxlat": 40.7398722, + "maxlon": -73.9895636 + }, + "nodes": [ + 42428192, + 6210354205, + 12068953116 + ], + "geometry": [ + { "lat": 40.7398722, "lon": -73.9895636 }, + { "lat": 40.7397959, "lon": -73.9895828 }, + { "lat": 40.7396352, "lon": -73.9896275 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "12.5", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1303174394, + "bounds": { + "minlat": 40.8283663, + "minlon": -73.9721320, + "maxlat": 40.8287045, + "maxlon": -73.9719562 + }, + "nodes": [ + 5362454929, + 12068970334, + 12068970340, + 12068970338, + 12068970339, + 12068970337, + 12068970341, + 12068970336, + 12068970335 + ], + "geometry": [ + { "lat": 40.8283663, "lon": -73.9719562 }, + { "lat": 40.8284228, "lon": -73.9721016 }, + { "lat": 40.8284308, "lon": -73.9721140 }, + { "lat": 40.8284381, "lon": -73.9721221 }, + { "lat": 40.8284470, "lon": -73.9721292 }, + { "lat": 40.8284577, "lon": -73.9721320 }, + { "lat": 40.8284682, "lon": -73.9721311 }, + { "lat": 40.8284779, "lon": -73.9721292 }, + { "lat": 40.8287045, "lon": -73.9719853 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1303181353, + "bounds": { + "minlat": 40.8484472, + "minlon": -73.9377348, + "maxlat": 40.8485340, + "maxlon": -73.9373622 + }, + "nodes": [ + 595473110, + 9908557533, + 12069025548, + 9908557534, + 595473578 + ], + "geometry": [ + { "lat": 40.8485340, "lon": -73.9377348 }, + { "lat": 40.8484687, "lon": -73.9374299 }, + { "lat": 40.8484638, "lon": -73.9374102 }, + { "lat": 40.8484566, "lon": -73.9373864 }, + { "lat": 40.8484472, "lon": -73.9373622 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "2", + "motor_vehicle": "private", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1303181354, + "bounds": { + "minlat": 40.8488160, + "minlon": -73.9376059, + "maxlat": 40.8489142, + "maxlon": -73.9369767 + }, + "nodes": [ + 595473649, + 9908557536, + 9908557535, + 12069025547, + 12069025546, + 595473093 + ], + "geometry": [ + { "lat": 40.8488160, "lon": -73.9369767 }, + { "lat": 40.8488224, "lon": -73.9370057 }, + { "lat": 40.8488276, "lon": -73.9370358 }, + { "lat": 40.8488983, "lon": -73.9375142 }, + { "lat": 40.8489055, "lon": -73.9375570 }, + { "lat": 40.8489142, "lon": -73.9376059 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "bus": "yes", + "highway": "service", + "layer": "2", + "motor_vehicle": "private", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1303209561, + "bounds": { + "minlat": 40.8087561, + "minlon": -73.9312416, + "maxlat": 40.8092096, + "maxlon": -73.9305746 + }, + "nodes": [ + 12069336845, + 12069336850, + 12069336844, + 12069336849, + 7591586308, + 11882279795, + 7591586309 + ], + "geometry": [ + { "lat": 40.8087903, "lon": -73.9312416 }, + { "lat": 40.8087636, "lon": -73.9312083 }, + { "lat": 40.8087561, "lon": -73.9311762 }, + { "lat": 40.8087719, "lon": -73.9311330 }, + { "lat": 40.8088110, "lon": -73.9310800 }, + { "lat": 40.8091729, "lon": -73.9306233 }, + { "lat": 40.8092096, "lon": -73.9305746 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1303209562, + "bounds": { + "minlat": 40.8087903, + "minlon": -73.9313286, + "maxlat": 40.8088649, + "maxlon": -73.9312416 + }, + "nodes": [ + 12069336846, + 12069336845 + ], + "geometry": [ + { "lat": 40.8088649, "lon": -73.9313286 }, + { "lat": 40.8087903, "lon": -73.9312416 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1303222280, + "bounds": { + "minlat": 40.8616471, + "minlon": -73.9118129, + "maxlat": 40.8622489, + "maxlon": -73.9099436 + }, + "nodes": [ + 12058583970, + 42731030, + 9903143761, + 9903143760, + 1396352602, + 12058583980, + 9903143758, + 9903143752, + 9903143751, + 9903143750, + 9903143749, + 579655055, + 5296126022, + 5296126021, + 12058459522, + 12058421228, + 42731033 + ], + "geometry": [ + { "lat": 40.8622489, "lon": -73.9099436 }, + { "lat": 40.8617614, "lon": -73.9106368 }, + { "lat": 40.8617379, "lon": -73.9106792 }, + { "lat": 40.8617152, "lon": -73.9107244 }, + { "lat": 40.8616926, "lon": -73.9107770 }, + { "lat": 40.8616762, "lon": -73.9108297 }, + { "lat": 40.8616634, "lon": -73.9108860 }, + { "lat": 40.8616530, "lon": -73.9109460 }, + { "lat": 40.8616479, "lon": -73.9110004 }, + { "lat": 40.8616471, "lon": -73.9110601 }, + { "lat": 40.8616511, "lon": -73.9111171 }, + { "lat": 40.8616566, "lon": -73.9111744 }, + { "lat": 40.8616949, "lon": -73.9114463 }, + { "lat": 40.8617122, "lon": -73.9115706 }, + { "lat": 40.8617175, "lon": -73.9116087 }, + { "lat": 40.8617302, "lon": -73.9117001 }, + { "lat": 40.8617435, "lon": -73.9118129 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1303242961, + "bounds": { + "minlat": 40.8598278, + "minlon": -73.9648439, + "maxlat": 40.8606575, + "maxlon": -73.9642911 + }, + "nodes": [ + 65903769, + 7921643412, + 7921643433, + 9252448443 + ], + "geometry": [ + { "lat": 40.8598278, "lon": -73.9648439 }, + { "lat": 40.8601520, "lon": -73.9646353 }, + { "lat": 40.8605500, "lon": -73.9643664 }, + { "lat": 40.8606575, "lon": -73.9642911 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "2", + "maxheight": "13'11\"", + "maxspeed": "25 mph", + "name": "Lemoine Avenue", + "oneway": "yes", + "ref": "NJ 67", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1303336822, + "bounds": { + "minlat": 40.7404853, + "minlon": -74.0095897, + "maxlat": 40.7405814, + "maxlon": -74.0093470 + }, + "nodes": [ + 8862521334, + 11461275517, + 11461275518, + 11461275519, + 11461275520, + 11461275521, + 246647993 + ], + "geometry": [ + { "lat": 40.7405814, "lon": -74.0093470 }, + { "lat": 40.7405543, "lon": -74.0093847 }, + { "lat": 40.7405421, "lon": -74.0094194 }, + { "lat": 40.7405362, "lon": -74.0094525 }, + { "lat": 40.7405310, "lon": -74.0094887 }, + { "lat": 40.7405118, "lon": -74.0095442 }, + { "lat": 40.7404853, "lon": -74.0095897 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Bloomfield Street", + "name:etymology:wikidata": "Q435155", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1303378398, + "bounds": { + "minlat": 40.8444251, + "minlon": -73.9250463, + "maxlat": 40.8446037, + "maxlon": -73.9249048 + }, + "nodes": [ + 12070722000, + 12070816878, + 60924370 + ], + "geometry": [ + { "lat": 40.8446037, "lon": -73.9249048 }, + { "lat": 40.8445005, "lon": -73.9249865 }, + { "lat": 40.8444251, "lon": -73.9250463 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Undercliff Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1303389073, + "bounds": { + "minlat": 40.8451201, + "minlon": -73.9225797, + "maxlat": 40.8451798, + "maxlon": -73.9225519 + }, + "nodes": [ + 12070869604, + 11456420284, + 60921025 + ], + "geometry": [ + { "lat": 40.8451798, "lon": -73.9225519 }, + { "lat": 40.8451641, "lon": -73.9225592 }, + { "lat": 40.8451201, "lon": -73.9225797 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1303389074, + "bounds": { + "minlat": 40.8451569, + "minlon": -73.9223348, + "maxlat": 40.8452657, + "maxlon": -73.9222894 + }, + "nodes": [ + 12070869607, + 60921061 + ], + "geometry": [ + { "lat": 40.8451569, "lon": -73.9223348 }, + { "lat": 40.8452657, "lon": -73.9222894 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "bridge": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "layer": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1303389075, + "bounds": { + "minlat": 40.8451183, + "minlon": -73.9223509, + "maxlat": 40.8451569, + "maxlon": -73.9223348 + }, + "nodes": [ + 12070869606, + 10790910791, + 12070869607 + ], + "geometry": [ + { "lat": 40.8451183, "lon": -73.9223509 }, + { "lat": 40.8451357, "lon": -73.9223436 }, + { "lat": 40.8451569, "lon": -73.9223348 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1303560869, + "bounds": { + "minlat": 40.8451122, + "minlon": -73.9225797, + "maxlat": 40.8451201, + "maxlon": -73.9225229 + }, + "nodes": [ + 12046777293, + 12046777292, + 60921025 + ], + "geometry": [ + { "lat": 40.8451122, "lon": -73.9225229 }, + { "lat": 40.8451164, "lon": -73.9225487 }, + { "lat": 40.8451201, "lon": -73.9225797 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1303560870, + "bounds": { + "minlat": 40.8451101, + "minlon": -73.9225844, + "maxlat": 40.8451201, + "maxlon": -73.9225797 + }, + "nodes": [ + 60921025, + 12072283182 + ], + "geometry": [ + { "lat": 40.8451201, "lon": -73.9225797 }, + { "lat": 40.8451101, "lon": -73.9225844 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1303581871, + "bounds": { + "minlat": 40.7347532, + "minlon": -73.9919286, + "maxlat": 40.7351506, + "maxlon": -73.9908603 + }, + "nodes": [ + 12072440231, + 12072440242, + 12072440243, + 12072440244, + 12072440245, + 12072440246, + 12072440247, + 12072440248, + 12072440249, + 12072440250, + 10174523987, + 12072440236, + 12072440235, + 12072440234, + 10174523984, + 12072440233, + 3670742478, + 12072440232, + 12072440231 + ], + "geometry": [ + { "lat": 40.7347532, "lon": -73.9908638 }, + { "lat": 40.7347764, "lon": -73.9908603 }, + { "lat": 40.7348018, "lon": -73.9908687 }, + { "lat": 40.7348111, "lon": -73.9908857 }, + { "lat": 40.7351294, "lon": -73.9916461 }, + { "lat": 40.7351506, "lon": -73.9917040 }, + { "lat": 40.7351046, "lon": -73.9917770 }, + { "lat": 40.7350577, "lon": -73.9918446 }, + { "lat": 40.7349604, "lon": -73.9919286 }, + { "lat": 40.7348658, "lon": -73.9919104 }, + { "lat": 40.7350830, "lon": -73.9917258 }, + { "lat": 40.7350903, "lon": -73.9917198 }, + { "lat": 40.7350963, "lon": -73.9917138 }, + { "lat": 40.7351053, "lon": -73.9916870 }, + { "lat": 40.7351049, "lon": -73.9916660 }, + { "lat": 40.7351016, "lon": -73.9916513 }, + { "lat": 40.7347738, "lon": -73.9908861 }, + { "lat": 40.7347683, "lon": -73.9908737 }, + { "lat": 40.7347532, "lon": -73.9908638 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1303581876, + "bounds": { + "minlat": 40.7345838, + "minlon": -73.9923237, + "maxlat": 40.7348904, + "maxlon": -73.9920304 + }, + "nodes": [ + 9849055126, + 12072440257, + 12072440258, + 12072440259, + 12072440260, + 12072440261, + 12072440262, + 12072440253, + 9849055123, + 12072440252, + 9849055126 + ], + "geometry": [ + { "lat": 40.7346111, "lon": -73.9923237 }, + { "lat": 40.7345842, "lon": -73.9922616 }, + { "lat": 40.7345838, "lon": -73.9922433 }, + { "lat": 40.7345876, "lon": -73.9922248 }, + { "lat": 40.7346047, "lon": -73.9921990 }, + { "lat": 40.7347995, "lon": -73.9920304 }, + { "lat": 40.7348904, "lon": -73.9920490 }, + { "lat": 40.7346278, "lon": -73.9922754 }, + { "lat": 40.7346158, "lon": -73.9922913 }, + { "lat": 40.7346108, "lon": -73.9923049 }, + { "lat": 40.7346111, "lon": -73.9923237 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1303581877, + "bounds": { + "minlat": 40.7346108, + "minlon": -73.9923237, + "maxlat": 40.7351698, + "maxlon": -73.9918313 + }, + "nodes": [ + 9849055126, + 12072440252, + 9849055123, + 12072440253, + 12072440262, + 10174523986, + 12072440254, + 10174523985, + 5148103558, + 8310246285, + 9849055126 + ], + "geometry": [ + { "lat": 40.7346111, "lon": -73.9923237 }, + { "lat": 40.7346108, "lon": -73.9923049 }, + { "lat": 40.7346158, "lon": -73.9922913 }, + { "lat": 40.7346278, "lon": -73.9922754 }, + { "lat": 40.7348904, "lon": -73.9920490 }, + { "lat": 40.7351319, "lon": -73.9918409 }, + { "lat": 40.7351522, "lon": -73.9918313 }, + { "lat": 40.7351698, "lon": -73.9918372 }, + { "lat": 40.7351411, "lon": -73.9918610 }, + { "lat": 40.7346236, "lon": -73.9923130 }, + { "lat": 40.7346111, "lon": -73.9923237 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1303581879, + "bounds": { + "minlat": 40.7345399, + "minlon": -73.9921627, + "maxlat": 40.7351053, + "maxlon": -73.9908638 + }, + "nodes": [ + 9849055124, + 12072440240, + 12072440239, + 9849055122, + 12072440238, + 12072440237, + 12072440250, + 10174523987, + 12072440236, + 12072440235, + 12072440234, + 10174523984, + 12072440233, + 3670742478, + 12072440232, + 12072440231, + 1251605872, + 7196284773, + 7581217746, + 7581217744, + 3670742439, + 8310246286, + 9849055124 + ], + "geometry": [ + { "lat": 40.7345399, "lon": -73.9921451 }, + { "lat": 40.7345450, "lon": -73.9921562 }, + { "lat": 40.7345529, "lon": -73.9921621 }, + { "lat": 40.7345615, "lon": -73.9921627 }, + { "lat": 40.7345668, "lon": -73.9921597 }, + { "lat": 40.7345796, "lon": -73.9921537 }, + { "lat": 40.7348658, "lon": -73.9919104 }, + { "lat": 40.7350830, "lon": -73.9917258 }, + { "lat": 40.7350903, "lon": -73.9917198 }, + { "lat": 40.7350963, "lon": -73.9917138 }, + { "lat": 40.7351053, "lon": -73.9916870 }, + { "lat": 40.7351049, "lon": -73.9916660 }, + { "lat": 40.7351016, "lon": -73.9916513 }, + { "lat": 40.7347738, "lon": -73.9908861 }, + { "lat": 40.7347683, "lon": -73.9908737 }, + { "lat": 40.7347532, "lon": -73.9908638 }, + { "lat": 40.7347323, "lon": -73.9908646 }, + { "lat": 40.7347471, "lon": -73.9908989 }, + { "lat": 40.7347643, "lon": -73.9909413 }, + { "lat": 40.7349196, "lon": -73.9913237 }, + { "lat": 40.7350697, "lon": -73.9916931 }, + { "lat": 40.7345531, "lon": -73.9921311 }, + { "lat": 40.7345399, "lon": -73.9921451 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1303581880, + "bounds": { + "minlat": 40.7345399, + "minlon": -73.9922616, + "maxlat": 40.7351877, + "maxlon": -73.9917040 + }, + "nodes": [ + 12072440246, + 12072440263, + 12072440264, + 10174523985, + 12072440254, + 10174523986, + 12072440262, + 12072440261, + 12072440260, + 12072440259, + 12072440258, + 12072440257, + 12072440265, + 9849055124, + 12072440240, + 12072440239, + 9849055122, + 12072440238, + 12072440237, + 12072440250, + 12072440249, + 12072440248, + 12072440247, + 12072440246 + ], + "geometry": [ + { "lat": 40.7351506, "lon": -73.9917040 }, + { "lat": 40.7351709, "lon": -73.9917550 }, + { "lat": 40.7351877, "lon": -73.9918023 }, + { "lat": 40.7351698, "lon": -73.9918372 }, + { "lat": 40.7351522, "lon": -73.9918313 }, + { "lat": 40.7351319, "lon": -73.9918409 }, + { "lat": 40.7348904, "lon": -73.9920490 }, + { "lat": 40.7347995, "lon": -73.9920304 }, + { "lat": 40.7346047, "lon": -73.9921990 }, + { "lat": 40.7345876, "lon": -73.9922248 }, + { "lat": 40.7345838, "lon": -73.9922433 }, + { "lat": 40.7345842, "lon": -73.9922616 }, + { "lat": 40.7345610, "lon": -73.9922015 }, + { "lat": 40.7345399, "lon": -73.9921451 }, + { "lat": 40.7345450, "lon": -73.9921562 }, + { "lat": 40.7345529, "lon": -73.9921621 }, + { "lat": 40.7345615, "lon": -73.9921627 }, + { "lat": 40.7345668, "lon": -73.9921597 }, + { "lat": 40.7345796, "lon": -73.9921537 }, + { "lat": 40.7348658, "lon": -73.9919104 }, + { "lat": 40.7349604, "lon": -73.9919286 }, + { "lat": 40.7350577, "lon": -73.9918446 }, + { "lat": 40.7351046, "lon": -73.9917770 }, + { "lat": 40.7351506, "lon": -73.9917040 } + ], + "tags": { + "area": "yes", + "bicycle": "designated", + "highway": "pedestrian", + "motor_vehicle": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1303591877, + "bounds": { + "minlat": 40.8534168, + "minlon": -73.9624919, + "maxlat": 40.8535384, + "maxlon": -73.9619038 + }, + "nodes": [ + 3959468895, + 13759310532, + 13759310533, + 76464372 + ], + "geometry": [ + { "lat": 40.8535384, "lon": -73.9624919 }, + { "lat": 40.8535109, "lon": -73.9623559 }, + { "lat": 40.8534506, "lon": -73.9620627 }, + { "lat": 40.8534168, "lon": -73.9619038 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge (Upper Level)", + "bridge:name:etymology:wikidata": "Q23", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 1303591878, + "bounds": { + "minlat": 40.8534168, + "minlon": -73.9628439, + "maxlat": 40.8535404, + "maxlon": -73.9619038 + }, + "nodes": [ + 12072538016, + 3959468899, + 76464372 + ], + "geometry": [ + { "lat": 40.8535404, "lon": -73.9628439 }, + { "lat": 40.8534473, "lon": -73.9623507 }, + { "lat": 40.8534168, "lon": -73.9619038 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:advisory": "45 mph", + "name": "Palisades Interstate Parkway", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bergen, NJ", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1303792885, + "bounds": { + "minlat": 40.8617781, + "minlon": -73.9125853, + "maxlat": 40.8617879, + "maxlon": -73.9125109 + }, + "nodes": [ + 12074332268, + 12037507558 + ], + "geometry": [ + { "lat": 40.8617879, "lon": -73.9125853 }, + { "lat": 40.8617781, "lon": -73.9125109 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1303792886, + "bounds": { + "minlat": 40.8618882, + "minlon": -73.9124461, + "maxlat": 40.8618984, + "maxlon": -73.9123796 + }, + "nodes": [ + 595813965, + 12074339369 + ], + "geometry": [ + { "lat": 40.8618882, "lon": -73.9123796 }, + { "lat": 40.8618984, "lon": -73.9124461 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1303815409, + "bounds": { + "minlat": 40.8619672, + "minlon": -73.9128840, + "maxlat": 40.8619826, + "maxlon": -73.9128385 + }, + "nodes": [ + 12058475126, + 12074547757, + 9903143743 + ], + "geometry": [ + { "lat": 40.8619672, "lon": -73.9128385 }, + { "lat": 40.8619749, "lon": -73.9128626 }, + { "lat": 40.8619826, "lon": -73.9128840 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1303815410, + "bounds": { + "minlat": 40.8619826, + "minlon": -73.9129267, + "maxlat": 40.8619982, + "maxlon": -73.9128840 + }, + "nodes": [ + 9903143743, + 12074547758 + ], + "geometry": [ + { "lat": 40.8619826, "lon": -73.9128840 }, + { "lat": 40.8619982, "lon": -73.9129267 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q5468076", + "wikipedia": "en:Fordham Road" + } +}, +{ + "type": "way", + "id": 1303815411, + "bounds": { + "minlat": 40.8618562, + "minlon": -73.9130229, + "maxlat": 40.8618732, + "maxlon": -73.9129782 + }, + "nodes": [ + 9903143735, + 12058469335, + 12058469336 + ], + "geometry": [ + { "lat": 40.8618732, "lon": -73.9130229 }, + { "lat": 40.8618651, "lon": -73.9130027 }, + { "lat": 40.8618562, "lon": -73.9129782 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1303815412, + "bounds": { + "minlat": 40.8618732, + "minlon": -73.9130620, + "maxlat": 40.8618912, + "maxlon": -73.9130229 + }, + "nodes": [ + 12058469333, + 12058469334, + 9903143735 + ], + "geometry": [ + { "lat": 40.8618912, "lon": -73.9130620 }, + { "lat": 40.8618818, "lon": -73.9130432 }, + { "lat": 40.8618732, "lon": -73.9130229 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "turn:lanes": "||right" + } +}, +{ + "type": "way", + "id": 1303816610, + "bounds": { + "minlat": 40.8622762, + "minlon": -73.9134871, + "maxlat": 40.8623227, + "maxlon": -73.9133764 + }, + "nodes": [ + 12074555507, + 595749106 + ], + "geometry": [ + { "lat": 40.8622762, "lon": -73.9133764 }, + { "lat": 40.8623227, "lon": -73.9134871 } + ], + "tags": { + "highway": "unclassified", + "name": "Exterior Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1303943205, + "bounds": { + "minlat": 40.8448974, + "minlon": -73.9241902, + "maxlat": 40.8449959, + "maxlon": -73.9240568 + }, + "nodes": [ + 12045204117, + 60924008 + ], + "geometry": [ + { "lat": 40.8449959, "lon": -73.9241902 }, + { "lat": 40.8448974, "lon": -73.9240568 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "layer": "1", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1303966147, + "bounds": { + "minlat": 40.8414622, + "minlon": -73.9287440, + "maxlat": 40.8415394, + "maxlon": -73.9286459 + }, + "nodes": [ + 42740414, + 9166334398, + 9166334397, + 13533533185, + 13533533186, + 12075915088 + ], + "geometry": [ + { "lat": 40.8414622, "lon": -73.9286459 }, + { "lat": 40.8414689, "lon": -73.9286690 }, + { "lat": 40.8414786, "lon": -73.9286898 }, + { "lat": 40.8414918, "lon": -73.9287061 }, + { "lat": 40.8415123, "lon": -73.9287250 }, + { "lat": 40.8415394, "lon": -73.9287440 } + ], + "tags": { + "bridge": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "unclassified", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "Depot Place", + "name:etymology:wikidata": "Q5757842", + "oneway": "no", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Depot", + "tiger:name_type": "Pl" + } +}, +{ + "type": "way", + "id": 1303967167, + "bounds": { + "minlat": 40.8422723, + "minlon": -73.9274771, + "maxlat": 40.8423306, + "maxlon": -73.9273015 + }, + "nodes": [ + 12050046935, + 12050046964, + 12050046965, + 12050046966, + 12050046967, + 6566753763 + ], + "geometry": [ + { "lat": 40.8423306, "lon": -73.9273015 }, + { "lat": 40.8423108, "lon": -73.9273234 }, + { "lat": 40.8422942, "lon": -73.9273513 }, + { "lat": 40.8422818, "lon": -73.9273872 }, + { "lat": 40.8422758, "lon": -73.9274258 }, + { "lat": 40.8422723, "lon": -73.9274771 } + ], + "tags": { + "highway": "residential", + "name": "Undercliff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Undercliff", + "tiger:name_type": "Ave", + "tiger:zip_left": "10452", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1303967170, + "bounds": { + "minlat": 40.8422723, + "minlon": -73.9274802, + "maxlat": 40.8423829, + "maxlon": -73.9274645 + }, + "nodes": [ + 6566753763, + 12050046959, + 12050046958, + 12050046956, + 12050046936 + ], + "geometry": [ + { "lat": 40.8422723, "lon": -73.9274771 }, + { "lat": 40.8422991, "lon": -73.9274802 }, + { "lat": 40.8423269, "lon": -73.9274796 }, + { "lat": 40.8423566, "lon": -73.9274739 }, + { "lat": 40.8423829, "lon": -73.9274645 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "hgv": "destination", + "highway": "secondary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 1304022999, + "bounds": { + "minlat": 40.8476923, + "minlon": -73.9299515, + "maxlat": 40.8481552, + "maxlon": -73.9295831 + }, + "nodes": [ + 1242171944, + 12076426783, + 12076426781, + 12076426784, + 1242172100, + 12076426799, + 12076426800, + 1242171966, + 12076426865, + 12076426852, + 12076426853, + 12076426854, + 12076426855, + 12076426856, + 12076426857, + 12076426858, + 12076426859, + 12076426860, + 12076426861, + 12076426862, + 12076426863, + 1242172105, + 12076426840, + 12076426839, + 12076426838, + 12076426864, + 12076426836, + 12076426788, + 12076426787, + 12076426867, + 7154509163, + 12076426786, + 12076426785, + 12076426868, + 12076426782, + 1242171944 + ], + "geometry": [ + { "lat": 40.8481097, "lon": -73.9299515 }, + { "lat": 40.8480839, "lon": -73.9299127 }, + { "lat": 40.8480562, "lon": -73.9298803 }, + { "lat": 40.8480224, "lon": -73.9298511 }, + { "lat": 40.8479486, "lon": -73.9297980 }, + { "lat": 40.8478159, "lon": -73.9296952 }, + { "lat": 40.8478009, "lon": -73.9297152 }, + { "lat": 40.8477554, "lon": -73.9296788 }, + { "lat": 40.8477168, "lon": -73.9296202 }, + { "lat": 40.8476923, "lon": -73.9295831 }, + { "lat": 40.8477220, "lon": -73.9295984 }, + { "lat": 40.8477489, "lon": -73.9296170 }, + { "lat": 40.8477792, "lon": -73.9296350 }, + { "lat": 40.8478184, "lon": -73.9296536 }, + { "lat": 40.8478640, "lon": -73.9296689 }, + { "lat": 40.8479092, "lon": -73.9296796 }, + { "lat": 40.8479502, "lon": -73.9296830 }, + { "lat": 40.8479898, "lon": -73.9296816 }, + { "lat": 40.8480299, "lon": -73.9296756 }, + { "lat": 40.8480743, "lon": -73.9296644 }, + { "lat": 40.8481080, "lon": -73.9296520 }, + { "lat": 40.8481552, "lon": -73.9296326 }, + { "lat": 40.8481388, "lon": -73.9296477 }, + { "lat": 40.8481237, "lon": -73.9296658 }, + { "lat": 40.8481114, "lon": -73.9296851 }, + { "lat": 40.8481011, "lon": -73.9297032 }, + { "lat": 40.8480954, "lon": -73.9297185 }, + { "lat": 40.8480898, "lon": -73.9297400 }, + { "lat": 40.8480860, "lon": -73.9297618 }, + { "lat": 40.8480832, "lon": -73.9297874 }, + { "lat": 40.8480821, "lon": -73.9298062 }, + { "lat": 40.8480828, "lon": -73.9298302 }, + { "lat": 40.8480884, "lon": -73.9298794 }, + { "lat": 40.8480925, "lon": -73.9299003 }, + { "lat": 40.8480985, "lon": -73.9299217 }, + { "lat": 40.8481097, "lon": -73.9299515 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "name": "McNally Plaza", + "wikidata": "Q34848347" + } +}, +{ + "type": "way", + "id": 1304172665, + "bounds": { + "minlat": 40.8624268, + "minlon": -73.9225476, + "maxlat": 40.8624952, + "maxlon": -73.9225094 + }, + "nodes": [ + 42445634, + 1764405363 + ], + "geometry": [ + { "lat": 40.8624268, "lon": -73.9225094 }, + { "lat": 40.8624952, "lon": -73.9225476 } + ], + "tags": { + "highway": "tertiary", + "maxheight": "11'10\"", + "name": "Academy Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Academy", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1304464061, + "bounds": { + "minlat": 40.7654644, + "minlon": -73.9359490, + "maxlat": 40.7675780, + "maxlon": -73.9321261 + }, + "nodes": [ + 7726844882, + 42882965, + 11649811951, + 7706043308, + 11649811948, + 42843348, + 11649811949, + 5487911872, + 11649811950, + 13702918242, + 11649811941, + 42882960, + 11649811940, + 11649811935, + 6450637012, + 42826930 + ], + "geometry": [ + { "lat": 40.7654644, "lon": -73.9321261 }, + { "lat": 40.7655340, "lon": -73.9322520 }, + { "lat": 40.7660374, "lon": -73.9331652 }, + { "lat": 40.7661504, "lon": -73.9333701 }, + { "lat": 40.7662418, "lon": -73.9335359 }, + { "lat": 40.7662925, "lon": -73.9336280 }, + { "lat": 40.7663404, "lon": -73.9337150 }, + { "lat": 40.7664704, "lon": -73.9339511 }, + { "lat": 40.7664916, "lon": -73.9339896 }, + { "lat": 40.7669418, "lon": -73.9348071 }, + { "lat": 40.7669802, "lon": -73.9348767 }, + { "lat": 40.7670189, "lon": -73.9349469 }, + { "lat": 40.7670536, "lon": -73.9350090 }, + { "lat": 40.7674280, "lon": -73.9356799 }, + { "lat": 40.7675335, "lon": -73.9358673 }, + { "lat": 40.7675780, "lon": -73.9359490 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Broadway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1304464062, + "bounds": { + "minlat": 40.7652267, + "minlon": -73.9316965, + "maxlat": 40.7655468, + "maxlon": -73.9313899 + }, + "nodes": [ + 7726598430, + 7734640724, + 42826064 + ], + "geometry": [ + { "lat": 40.7655468, "lon": -73.9313899 }, + { "lat": 40.7652982, "lon": -73.9316311 }, + { "lat": 40.7652267, "lon": -73.9316965 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1304748702, + "bounds": { + "minlat": 40.7682417, + "minlon": -73.9455965, + "maxlat": 40.7683914, + "maxlon": -73.9454753 + }, + "nodes": [ + 8265114772, + 8265114773, + 1241986647, + 1241986707 + ], + "geometry": [ + { "lat": 40.7682417, "lon": -73.9455965 }, + { "lat": 40.7682966, "lon": -73.9455521 }, + { "lat": 40.7683371, "lon": -73.9455195 }, + { "lat": 40.7683914, "lon": -73.9454753 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "name": "West Road", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1305186577, + "bounds": { + "minlat": 40.8047442, + "minlon": -73.9127191, + "maxlat": 40.8049787, + "maxlon": -73.9124299 + }, + "nodes": [ + 12088432094, + 13003675184, + 12088432103, + 12088432095, + 13003699406, + 13003720149, + 12088432096 + ], + "geometry": [ + { "lat": 40.8049787, "lon": -73.9127191 }, + { "lat": 40.8049397, "lon": -73.9126388 }, + { "lat": 40.8049187, "lon": -73.9125942 }, + { "lat": 40.8048269, "lon": -73.9124299 }, + { "lat": 40.8048170, "lon": -73.9124416 }, + { "lat": 40.8048055, "lon": -73.9124552 }, + { "lat": 40.8047442, "lon": -73.9125277 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1305186578, + "bounds": { + "minlat": 40.8049187, + "minlon": -73.9125942, + "maxlat": 40.8050396, + "maxlon": -73.9122650 + }, + "nodes": [ + 12088432112, + 12088432100, + 12088432101, + 12088432102, + 12088432105, + 12088432103 + ], + "geometry": [ + { "lat": 40.8050285, "lon": -73.9122650 }, + { "lat": 40.8050396, "lon": -73.9123192 }, + { "lat": 40.8050358, "lon": -73.9124117 }, + { "lat": 40.8050235, "lon": -73.9124727 }, + { "lat": 40.8049940, "lon": -73.9125140 }, + { "lat": 40.8049187, "lon": -73.9125942 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1305186579, + "bounds": { + "minlat": 40.8049493, + "minlon": -73.9125140, + "maxlat": 40.8049940, + "maxlon": -73.9124329 + }, + "nodes": [ + 12088432110, + 12088432105 + ], + "geometry": [ + { "lat": 40.8049493, "lon": -73.9124329 }, + { "lat": 40.8049940, "lon": -73.9125140 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1305186580, + "bounds": { + "minlat": 40.8048269, + "minlon": -73.9124299, + "maxlat": 40.8049436, + "maxlon": -73.9122212 + }, + "nodes": [ + 12088432108, + 12088432106, + 12088432104, + 12088432095 + ], + "geometry": [ + { "lat": 40.8049436, "lon": -73.9122325 }, + { "lat": 40.8049382, "lon": -73.9122212 }, + { "lat": 40.8048878, "lon": -73.9123117 }, + { "lat": 40.8048269, "lon": -73.9124299 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1305186581, + "bounds": { + "minlat": 40.8049382, + "minlon": -73.9122212, + "maxlat": 40.8049796, + "maxlon": -73.9121231 + }, + "nodes": [ + 12088432106, + 12088432098 + ], + "geometry": [ + { "lat": 40.8049382, "lon": -73.9122212 }, + { "lat": 40.8049796, "lon": -73.9121231 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1305186582, + "bounds": { + "minlat": 40.8049956, + "minlon": -73.9124117, + "maxlat": 40.8050358, + "maxlon": -73.9123356 + }, + "nodes": [ + 12088432101, + 12088432107 + ], + "geometry": [ + { "lat": 40.8050358, "lon": -73.9124117 }, + { "lat": 40.8049956, "lon": -73.9123356 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1305186583, + "bounds": { + "minlat": 40.8049436, + "minlon": -73.9123356, + "maxlat": 40.8049956, + "maxlon": -73.9122325 + }, + "nodes": [ + 12088432107, + 12088432108 + ], + "geometry": [ + { "lat": 40.8049956, "lon": -73.9123356 }, + { "lat": 40.8049436, "lon": -73.9122325 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1305186584, + "bounds": { + "minlat": 40.8048368, + "minlon": -73.9123371, + "maxlat": 40.8049015, + "maxlon": -73.9122089 + }, + "nodes": [ + 596271056, + 13003699407, + 12088432104, + 12088432109 + ], + "geometry": [ + { "lat": 40.8048368, "lon": -73.9122089 }, + { "lat": 40.8048808, "lon": -73.9122976 }, + { "lat": 40.8048878, "lon": -73.9123117 }, + { "lat": 40.8049015, "lon": -73.9123371 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1305186585, + "bounds": { + "minlat": 40.8049015, + "minlon": -73.9124329, + "maxlat": 40.8049493, + "maxlon": -73.9123371 + }, + "nodes": [ + 12088432109, + 12088432110 + ], + "geometry": [ + { "lat": 40.8049015, "lon": -73.9123371 }, + { "lat": 40.8049493, "lon": -73.9124329 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1305186586, + "bounds": { + "minlat": 40.8049218, + "minlon": -73.9121354, + "maxlat": 40.8049853, + "maxlon": -73.9120170 + }, + "nodes": [ + 12088432097, + 13003699408, + 12088432098, + 12088432111 + ], + "geometry": [ + { "lat": 40.8049218, "lon": -73.9120170 }, + { "lat": 40.8049677, "lon": -73.9121013 }, + { "lat": 40.8049796, "lon": -73.9121231 }, + { "lat": 40.8049853, "lon": -73.9121354 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1305186587, + "bounds": { + "minlat": 40.8049853, + "minlon": -73.9122650, + "maxlat": 40.8050285, + "maxlon": -73.9121354 + }, + "nodes": [ + 12088432111, + 12088432099, + 12088432112 + ], + "geometry": [ + { "lat": 40.8049853, "lon": -73.9121354 }, + { "lat": 40.8050204, "lon": -73.9122288 }, + { "lat": 40.8050285, "lon": -73.9122650 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1305186588, + "bounds": { + "minlat": 40.8047976, + "minlon": -73.9126721, + "maxlat": 40.8049187, + "maxlon": -73.9125942 + }, + "nodes": [ + 12088432103, + 13003675186, + 12088432113 + ], + "geometry": [ + { "lat": 40.8049187, "lon": -73.9125942 }, + { "lat": 40.8048878, "lon": -73.9126143 }, + { "lat": 40.8047976, "lon": -73.9126721 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1305318052, + "bounds": { + "minlat": 40.8448969, + "minlon": -73.9143586, + "maxlat": 40.8450611, + "maxlon": -73.9142419 + }, + "nodes": [ + 12089606486, + 596668816, + 596668857 + ], + "geometry": [ + { "lat": 40.8450611, "lon": -73.9142419 }, + { "lat": 40.8450081, "lon": -73.9142793 }, + { "lat": 40.8448969, "lon": -73.9143586 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1305318053, + "bounds": { + "minlat": 40.8450611, + "minlon": -73.9142419, + "maxlat": 40.8453393, + "maxlon": -73.9140430 + }, + "nodes": [ + 12089606487, + 12089606486 + ], + "geometry": [ + { "lat": 40.8453393, "lon": -73.9140430 }, + { "lat": 40.8450611, "lon": -73.9142419 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "layer": "1", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1305318054, + "bounds": { + "minlat": 40.8453382, + "minlon": -73.9139776, + "maxlat": 40.8454311, + "maxlon": -73.9137508 + }, + "nodes": [ + 42736339, + 10147967412, + 12089606492 + ], + "geometry": [ + { "lat": 40.8454311, "lon": -73.9139776 }, + { "lat": 40.8453735, "lon": -73.9138366 }, + { "lat": 40.8453382, "lon": -73.9137508 } + ], + "tags": { + "highway": "residential", + "name": "East 174th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "174th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1305318055, + "bounds": { + "minlat": 40.8449672, + "minlon": -73.9137508, + "maxlat": 40.8453382, + "maxlon": -73.9128493 + }, + "nodes": [ + 12089606492, + 13068079163, + 42748522, + 13068079179, + 12089606493 + ], + "geometry": [ + { "lat": 40.8453382, "lon": -73.9137508 }, + { "lat": 40.8450959, "lon": -73.9131620 }, + { "lat": 40.8450651, "lon": -73.9130871 }, + { "lat": 40.8450319, "lon": -73.9130064 }, + { "lat": 40.8449672, "lon": -73.9128493 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "East 174th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "174th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1305318056, + "bounds": { + "minlat": 40.8449657, + "minlon": -73.9131580, + "maxlat": 40.8450651, + "maxlon": -73.9130871 + }, + "nodes": [ + 12089606494, + 13017674391, + 42748522 + ], + "geometry": [ + { "lat": 40.8449657, "lon": -73.9131580 }, + { "lat": 40.8449819, "lon": -73.9131464 }, + { "lat": 40.8450651, "lon": -73.9130871 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "maxspeed": "20 mph", + "name": "Townsend Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Townsend", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1306095617, + "bounds": { + "minlat": 40.7471726, + "minlon": -74.0082025, + "maxlat": 40.7477213, + "maxlon": -74.0080836 + }, + "nodes": [ + 12096569816, + 12096569817, + 12096569818, + 12096569819 + ], + "geometry": [ + { "lat": 40.7477213, "lon": -74.0080852 }, + { "lat": 40.7475920, "lon": -74.0080836 }, + { "lat": 40.7472681, "lon": -74.0081509 }, + { "lat": 40.7471726, "lon": -74.0082025 } + ], + "tags": { + "destination": "Piers 59 & 60", + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1306095618, + "bounds": { + "minlat": 40.7475021, + "minlon": -74.0081710, + "maxlat": 40.7479221, + "maxlon": -74.0080628 + }, + "nodes": [ + 12096569820, + 12096569821, + 12096569822, + 12096569823 + ], + "geometry": [ + { "lat": 40.7479221, "lon": -74.0080628 }, + { "lat": 40.7477289, "lon": -74.0081486 }, + { "lat": 40.7476034, "lon": -74.0081702 }, + { "lat": 40.7475021, "lon": -74.0081710 } + ], + "tags": { + "destination": "All piers", + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "driveway", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1306095619, + "bounds": { + "minlat": 40.7479221, + "minlon": -74.0080628, + "maxlat": 40.7481829, + "maxlon": -74.0080149 + }, + "nodes": [ + 12096683105, + 12096569820 + ], + "geometry": [ + { "lat": 40.7481829, "lon": -74.0080149 }, + { "lat": 40.7479221, "lon": -74.0080628 } + ], + "tags": { + "destination": "Chelsea Piers", + "highway": "service", + "lanes": "3", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1306095620, + "bounds": { + "minlat": 40.7475021, + "minlon": -74.0081710, + "maxlat": 40.7477213, + "maxlon": -74.0080852 + }, + "nodes": [ + 12096569816, + 10175128126, + 12096569823 + ], + "geometry": [ + { "lat": 40.7477213, "lon": -74.0080852 }, + { "lat": 40.7476005, "lon": -74.0081311 }, + { "lat": 40.7475021, "lon": -74.0081710 } + ], + "tags": { + "destination": "All piers", + "highway": "service", + "lanes": "1", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1306106184, + "bounds": { + "minlat": 40.7455824, + "minlon": -74.0084710, + "maxlat": 40.7460192, + "maxlon": -74.0084134 + }, + "nodes": [ + 12096650285, + 12096650286, + 12161232289, + 12096650287, + 12161232290, + 12096650288, + 12096650289 + ], + "geometry": [ + { "lat": 40.7460192, "lon": -74.0084134 }, + { "lat": 40.7458301, "lon": -74.0084233 }, + { "lat": 40.7457895, "lon": -74.0084219 }, + { "lat": 40.7457551, "lon": -74.0084206 }, + { "lat": 40.7457158, "lon": -74.0084266 }, + { "lat": 40.7456730, "lon": -74.0084350 }, + { "lat": 40.7455824, "lon": -74.0084710 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "service", + "lanes": "1", + "oneway": "yes", + "payment:cash": "no", + "payment:credit_cards": "yes", + "payment:token": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1306106185, + "bounds": { + "minlat": 40.7450763, + "minlon": -74.0086063, + "maxlat": 40.7457962, + "maxlon": -74.0084882 + }, + "nodes": [ + 12096650291, + 12096650295, + 12096650294, + 12096650298, + 12096650299, + 12096650296, + 246580343 + ], + "geometry": [ + { "lat": 40.7457962, "lon": -74.0084882 }, + { "lat": 40.7457096, "lon": -74.0085224 }, + { "lat": 40.7454440, "lon": -74.0085669 }, + { "lat": 40.7453394, "lon": -74.0085845 }, + { "lat": 40.7453036, "lon": -74.0085914 }, + { "lat": 40.7452276, "lon": -74.0086063 }, + { "lat": 40.7450763, "lon": -74.0085824 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "payment:cash": "yes", + "payment:credit_cards": "yes", + "payment:token": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1306106187, + "bounds": { + "minlat": 40.7447576, + "minlon": -74.0086214, + "maxlat": 40.7450763, + "maxlon": -74.0084387 + }, + "nodes": [ + 246580343, + 12161232316, + 246580344, + 12161232314, + 11062143997, + 12161232318, + 12161232319, + 4379966369, + 246580345, + 12161232320, + 11049420899 + ], + "geometry": [ + { "lat": 40.7450763, "lon": -74.0085824 }, + { "lat": 40.7449372, "lon": -74.0086098 }, + { "lat": 40.7448926, "lon": -74.0086185 }, + { "lat": 40.7448714, "lon": -74.0086214 }, + { "lat": 40.7448582, "lon": -74.0086179 }, + { "lat": 40.7448437, "lon": -74.0086097 }, + { "lat": 40.7448300, "lon": -74.0085972 }, + { "lat": 40.7448184, "lon": -74.0085826 }, + { "lat": 40.7448068, "lon": -74.0085619 }, + { "lat": 40.7447976, "lon": -74.0085436 }, + { "lat": 40.7447576, "lon": -74.0084387 } + ], + "tags": { + "highway": "service", + "lanes": "3", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "surface": "sett", + "turn:lanes": "left|left;right|right" + } +}, +{ + "type": "way", + "id": 1306106188, + "bounds": { + "minlat": 40.7450763, + "minlon": -74.0085824, + "maxlat": 40.7455824, + "maxlon": -74.0084710 + }, + "nodes": [ + 12096650289, + 8288560714, + 246580342, + 246652323, + 10175128127, + 246580343 + ], + "geometry": [ + { "lat": 40.7455824, "lon": -74.0084710 }, + { "lat": 40.7454355, "lon": -74.0084991 }, + { "lat": 40.7453296, "lon": -74.0085173 }, + { "lat": 40.7452953, "lon": -74.0085231 }, + { "lat": 40.7452175, "lon": -74.0085362 }, + { "lat": 40.7450763, "lon": -74.0085824 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "service", + "lanes": "2", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1306106189, + "bounds": { + "minlat": 40.7455824, + "minlon": -74.0084882, + "maxlat": 40.7457962, + "maxlon": -74.0084710 + }, + "nodes": [ + 12096650291, + 12096650292, + 12096650289 + ], + "geometry": [ + { "lat": 40.7457962, "lon": -74.0084882 }, + { "lat": 40.7457048, "lon": -74.0084809 }, + { "lat": 40.7455824, "lon": -74.0084710 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "service", + "lanes": "1", + "maxspeed": "5 mph", + "oneway": "yes", + "payment:cash": "no", + "payment:credit_cards": "yes", + "payment:token": "yes", + "service": "driveway", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1306106190, + "bounds": { + "minlat": 40.7471726, + "minlon": -74.0082118, + "maxlat": 40.7475021, + "maxlon": -74.0081710 + }, + "nodes": [ + 12096569823, + 8288560708, + 12096569825, + 12096569819 + ], + "geometry": [ + { "lat": 40.7475021, "lon": -74.0081710 }, + { "lat": 40.7474053, "lon": -74.0081882 }, + { "lat": 40.7472743, "lon": -74.0082118 }, + { "lat": 40.7471726, "lon": -74.0082025 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "service", + "lanes": "2", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1306106191, + "bounds": { + "minlat": 40.7477213, + "minlon": -74.0080852, + "maxlat": 40.7479221, + "maxlon": -74.0080628 + }, + "nodes": [ + 12096569820, + 12096569816 + ], + "geometry": [ + { "lat": 40.7479221, "lon": -74.0080628 }, + { "lat": 40.7477213, "lon": -74.0080852 } + ], + "tags": { + "destination": "Chelsea Piers", + "highway": "service", + "lanes": "2", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1306106192, + "bounds": { + "minlat": 40.7481829, + "minlon": -74.0080149, + "maxlat": 40.7483646, + "maxlon": -74.0079983 + }, + "nodes": [ + 9143574653, + 9143574652, + 246580335, + 12161232209, + 12096683105 + ], + "geometry": [ + { "lat": 40.7483646, "lon": -74.0079986 }, + { "lat": 40.7483254, "lon": -74.0079983 }, + { "lat": 40.7482742, "lon": -74.0080002 }, + { "lat": 40.7482229, "lon": -74.0080062 }, + { "lat": 40.7481829, "lon": -74.0080149 } + ], + "tags": { + "destination": "Chelsea Piers", + "highway": "service", + "lanes": "1", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1306111298, + "bounds": { + "minlat": 40.7851010, + "minlon": -73.9439795, + "maxlat": 40.7852261, + "maxlon": -73.9438917 + }, + "nodes": [ + 3900961253, + 3900961250 + ], + "geometry": [ + { "lat": 40.7852261, "lon": -73.9438917 }, + { "lat": 40.7851010, "lon": -73.9439795 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1306111299, + "bounds": { + "minlat": 40.7844534, + "minlon": -73.9446524, + "maxlat": 40.7847409, + "maxlon": -73.9444404 + }, + "nodes": [ + 3900961240, + 5482216802, + 6221959141 + ], + "geometry": [ + { "lat": 40.7844534, "lon": -73.9446524 }, + { "lat": 40.7845189, "lon": -73.9446075 }, + { "lat": 40.7847409, "lon": -73.9444404 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1306196863, + "bounds": { + "minlat": 40.7726558, + "minlon": -73.9823021, + "maxlat": 40.7728645, + "maxlon": -73.9822863 + }, + "nodes": [ + 3262539793, + 6547993891, + 12832820850, + 42428588 + ], + "geometry": [ + { "lat": 40.7728645, "lon": -73.9823021 }, + { "lat": 40.7728433, "lon": -73.9822998 }, + { "lat": 40.7728054, "lon": -73.9822956 }, + { "lat": 40.7726558, "lon": -73.9822863 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:right": "no", + "parking:right:restriction": "no_parking", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306214126, + "bounds": { + "minlat": 40.7458455, + "minlon": -74.0082416, + "maxlat": 40.7459535, + "maxlon": -74.0082219 + }, + "nodes": [ + 11107538391, + 12097469453 + ], + "geometry": [ + { "lat": 40.7459535, "lon": -74.0082219 }, + { "lat": 40.7458455, "lon": -74.0082416 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306214127, + "bounds": { + "minlat": 40.7459535, + "minlon": -74.0082219, + "maxlat": 40.7469022, + "maxlon": -74.0080489 + }, + "nodes": [ + 246652085, + 11107538391 + ], + "geometry": [ + { "lat": 40.7469022, "lon": -74.0080489 }, + { "lat": 40.7459535, "lon": -74.0082219 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306214128, + "bounds": { + "minlat": 40.7469022, + "minlon": -74.0080489, + "maxlat": 40.7470819, + "maxlon": -74.0080148 + }, + "nodes": [ + 12097469455, + 11049420900, + 246652085 + ], + "geometry": [ + { "lat": 40.7470819, "lon": -74.0080148 }, + { "lat": 40.7469283, "lon": -74.0080441 }, + { "lat": 40.7469022, "lon": -74.0080489 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306214129, + "bounds": { + "minlat": 40.7457414, + "minlon": -74.0082607, + "maxlat": 40.7458455, + "maxlon": -74.0082416 + }, + "nodes": [ + 12097469453, + 12097469456 + ], + "geometry": [ + { "lat": 40.7458455, "lon": -74.0082416 }, + { "lat": 40.7457414, "lon": -74.0082607 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "no|not_left|yes|yes", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left|||", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306214130, + "bounds": { + "minlat": 40.7452746, + "minlon": -74.0083453, + "maxlat": 40.7454644, + "maxlon": -74.0083054 + }, + "nodes": [ + 373903786, + 246652365 + ], + "geometry": [ + { "lat": 40.7454644, "lon": -74.0083054 }, + { "lat": 40.7452746, "lon": -74.0083453 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lane_markings": "no", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306214131, + "bounds": { + "minlat": 40.7450810, + "minlon": -74.0081928, + "maxlat": 40.7453904, + "maxlon": -74.0081345 + }, + "nodes": [ + 12097469457, + 42429666, + 246652326, + 11027912164 + ], + "geometry": [ + { "lat": 40.7450810, "lon": -74.0081928 }, + { "lat": 40.7452094, "lon": -74.0081686 }, + { "lat": 40.7452542, "lon": -74.0081602 }, + { "lat": 40.7453904, "lon": -74.0081345 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306277587, + "bounds": { + "minlat": 40.7416979, + "minlon": -74.0090412, + "maxlat": 40.7423533, + "maxlon": -74.0089056 + }, + "nodes": [ + 402480678, + 246652755, + 12098102320 + ], + "geometry": [ + { "lat": 40.7423533, "lon": -74.0089056 }, + { "lat": 40.7422283, "lon": -74.0089315 }, + { "lat": 40.7416979, "lon": -74.0090412 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "cycleway:right": "separate", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "yes", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1306277588, + "bounds": { + "minlat": 40.7415084, + "minlon": -74.0090814, + "maxlat": 40.7416979, + "maxlon": -74.0090412 + }, + "nodes": [ + 12098102320, + 9112000211, + 11027819089 + ], + "geometry": [ + { "lat": 40.7416979, "lon": -74.0090412 }, + { "lat": 40.7415747, "lon": -74.0090673 }, + { "lat": 40.7415084, "lon": -74.0090814 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "cycleway:right": "separate", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "asphalt", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1306277589, + "bounds": { + "minlat": 40.7425908, + "minlon": -74.0090483, + "maxlat": 40.7430860, + "maxlon": -74.0089522 + }, + "nodes": [ + 8288270019, + 8288270013 + ], + "geometry": [ + { "lat": 40.7430860, "lon": -74.0089522 }, + { "lat": 40.7425908, "lon": -74.0090483 } + ], + "tags": { + "change": "yes", + "destination": "Pier 57", + "highway": "service", + "lane_markings": "yes", + "lanes": "2", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1306277590, + "bounds": { + "minlat": 40.7430860, + "minlon": -74.0089522, + "maxlat": 40.7432047, + "maxlon": -74.0089305 + }, + "nodes": [ + 12098102321, + 10220180397, + 8288270019 + ], + "geometry": [ + { "lat": 40.7432047, "lon": -74.0089305 }, + { "lat": 40.7431579, "lon": -74.0089389 }, + { "lat": 40.7430860, "lon": -74.0089522 } + ], + "tags": { + "change": "no", + "highway": "service", + "lane_markings": "yes", + "lanes": "2", + "name": "Pier 57", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1306277591, + "bounds": { + "minlat": 40.7430286, + "minlon": -74.0082405, + "maxlat": 40.7430594, + "maxlon": -74.0081686 + }, + "nodes": [ + 12098102322, + 4207862999 + ], + "geometry": [ + { "lat": 40.7430286, "lon": -74.0081686 }, + { "lat": 40.7430594, "lon": -74.0082405 } + ], + "tags": { + "access:lanes": "yes|no|yes", + "bicycle": "no|yes|no", + "change": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 15th Street", + "name:ru": "Западная 15-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||right" + } +}, +{ + "type": "way", + "id": 1306277592, + "bounds": { + "minlat": 40.7450299, + "minlon": -74.0083895, + "maxlat": 40.7452746, + "maxlon": -74.0083453 + }, + "nodes": [ + 246652365, + 12098102323 + ], + "geometry": [ + { "lat": 40.7452746, "lon": -74.0083453 }, + { "lat": 40.7450299, "lon": -74.0083895 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306277593, + "bounds": { + "minlat": 40.7468792, + "minlon": -74.0078691, + "maxlat": 40.7475124, + "maxlon": -74.0077514 + }, + "nodes": [ + 246652086, + 42443677 + ], + "geometry": [ + { "lat": 40.7468792, "lon": -74.0078691 }, + { "lat": 40.7475124, "lon": -74.0077514 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "hgv": "designated", + "highway": "trunk", + "lane_markings": "yes", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306277594, + "bounds": { + "minlat": 40.7465997, + "minlon": -74.0079187, + "maxlat": 40.7468041, + "maxlon": -74.0078822 + }, + "nodes": [ + 12098102324, + 12161232295, + 42427393 + ], + "geometry": [ + { "lat": 40.7465997, "lon": -74.0079187 }, + { "lat": 40.7466979, "lon": -74.0079005 }, + { "lat": 40.7468041, "lon": -74.0078822 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306277595, + "bounds": { + "minlat": 40.7468041, + "minlon": -74.0078822, + "maxlat": 40.7468792, + "maxlon": -74.0078691 + }, + "nodes": [ + 42427393, + 246652086 + ], + "geometry": [ + { "lat": 40.7468041, "lon": -74.0078822 }, + { "lat": 40.7468792, "lon": -74.0078691 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306411971, + "bounds": { + "minlat": 40.7834051, + "minlon": -73.9643465, + "maxlat": 40.7834583, + "maxlon": -73.9643127 + }, + "nodes": [ + 12099277761, + 12099277764, + 12099277765, + 12099277766 + ], + "geometry": [ + { "lat": 40.7834051, "lon": -73.9643465 }, + { "lat": 40.7834094, "lon": -73.9643440 }, + { "lat": 40.7834169, "lon": -73.9643392 }, + { "lat": 40.7834583, "lon": -73.9643127 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1306411973, + "bounds": { + "minlat": 40.7835278, + "minlon": -73.9653450, + "maxlat": 40.7837674, + "maxlon": -73.9649355 + }, + "nodes": [ + 12099277773, + 10171022031, + 12099277774, + 12099277775, + 10171022032, + 12099277776 + ], + "geometry": [ + { "lat": 40.7837674, "lon": -73.9652674 }, + { "lat": 40.7837246, "lon": -73.9652935 }, + { "lat": 40.7836399, "lon": -73.9653450 }, + { "lat": 40.7835278, "lon": -73.9650237 }, + { "lat": 40.7836292, "lon": -73.9649619 }, + { "lat": 40.7836727, "lon": -73.9649355 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1306411977, + "bounds": { + "minlat": 40.7849038, + "minlon": -73.9682769, + "maxlat": 40.7849459, + "maxlon": -73.9681080 + }, + "nodes": [ + 2059304024, + 2059304025 + ], + "geometry": [ + { "lat": 40.7849038, "lon": -73.9681080 }, + { "lat": 40.7849459, "lon": -73.9682769 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxheight": "10'5\"", + "maxspeed": "25 mph", + "name": "86th Street Transverse", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306411978, + "bounds": { + "minlat": 40.7850534, + "minlon": -73.9693444, + "maxlat": 40.7852965, + "maxlon": -73.9688383 + }, + "nodes": [ + 7106818626, + 12099277787, + 12099277788, + 12099277796, + 12099277789, + 12099277790 + ], + "geometry": [ + { "lat": 40.7852965, "lon": -73.9693444 }, + { "lat": 40.7852131, "lon": -73.9692676 }, + { "lat": 40.7851994, "lon": -73.9692369 }, + { "lat": 40.7851298, "lon": -73.9690498 }, + { "lat": 40.7850905, "lon": -73.9689440 }, + { "lat": 40.7850534, "lon": -73.9688383 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "change": "yes", + "destination": "East Side", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "maxheight": "10'5\"", + "maxspeed:advisory": "20 mph", + "name": "86th Street Transverse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "|merge_to_left", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306411979, + "bounds": { + "minlat": 40.7849459, + "minlon": -73.9688383, + "maxlat": 40.7850534, + "maxlon": -73.9682769 + }, + "nodes": [ + 12099277790, + 12099277791, + 12099277792, + 2059304025 + ], + "geometry": [ + { "lat": 40.7850534, "lon": -73.9688383 }, + { "lat": 40.7849853, "lon": -73.9685725 }, + { "lat": 40.7849465, "lon": -73.9683867 }, + { "lat": 40.7849459, "lon": -73.9682769 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxheight": "10'5\"", + "name": "86th Street Transverse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306411980, + "bounds": { + "minlat": 40.7813573, + "minlon": -73.9626819, + "maxlat": 40.7814954, + "maxlon": -73.9624476 + }, + "nodes": [ + 42433927, + 12099277793 + ], + "geometry": [ + { "lat": 40.7813573, "lon": -73.9624476 }, + { "lat": 40.7814954, "lon": -73.9626819 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "layer": "-1", + "lit": "yes", + "maxheight": "10'5\"", + "maxheight:backward": "10'5\"", + "maxheight:forward": "10'10\"", + "maxspeed": "25 mph", + "name": "86th Street Transverse", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306411981, + "bounds": { + "minlat": 40.7810920, + "minlon": -73.9623237, + "maxlat": 40.7811881, + "maxlon": -73.9622529 + }, + "nodes": [ + 1382339047, + 12099277794 + ], + "geometry": [ + { "lat": 40.7811881, "lon": -73.9623237 }, + { "lat": 40.7810920, "lon": -73.9622529 } + ], + "tags": { + "alt_name": "Transverse Road 3", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "lit": "yes", + "maxheight": "10'5\"", + "maxspeed": "25 mph", + "name": "86th Street Transverse", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4644949", + "wikipedia": "en:86th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1306707149, + "bounds": { + "minlat": 40.7101591, + "minlon": -73.9589345, + "maxlat": 40.7103011, + "maxlon": -73.9574692 + }, + "nodes": [ + 592627488, + 13519263276, + 9968370366, + 12101605022 + ], + "geometry": [ + { "lat": 40.7101591, "lon": -73.9589345 }, + { "lat": 40.7101942, "lon": -73.9585692 }, + { "lat": 40.7102933, "lon": -73.9575374 }, + { "lat": 40.7103011, "lon": -73.9574692 } + ], + "tags": { + "bridge": "yes", + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "layer": "2", + "maxspeed": "30 mph", + "name": "Williamsburg Bridge", + "name:etymology:wikidata": "Q771572", + "name:ko": "윌리엄스버그 브리지", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A63;A11", + "tiger:county": "Kings, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1307288129, + "bounds": { + "minlat": 40.7383082, + "minlon": -73.9900030, + "maxlat": 40.7384929, + "maxlon": -73.9899534 + }, + "nodes": [ + 12106485659, + 8569045608, + 42428179 + ], + "geometry": [ + { "lat": 40.7383082, "lon": -73.9900030 }, + { "lat": 40.7384321, "lon": -73.9899719 }, + { "lat": 40.7384929, "lon": -73.9899534 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1307288130, + "bounds": { + "minlat": 40.7378047, + "minlon": -73.9901393, + "maxlat": 40.7380073, + "maxlon": -73.9900748 + }, + "nodes": [ + 42428174, + 8569048145, + 9032581895 + ], + "geometry": [ + { "lat": 40.7378047, "lon": -73.9901393 }, + { "lat": 40.7378682, "lon": -73.9901122 }, + { "lat": 40.7380073, "lon": -73.9900748 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "living_street", + "lanes": "1", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "maxspeed:type": "sign", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1307694646, + "bounds": { + "minlat": 40.7708429, + "minlon": -73.9886316, + "maxlat": 40.7709174, + "maxlon": -73.9885730 + }, + "nodes": [ + 12110077271, + 12110077272, + 12110077273 + ], + "geometry": [ + { "lat": 40.7708429, "lon": -73.9886316 }, + { "lat": 40.7709053, "lon": -73.9885824 }, + { "lat": 40.7709174, "lon": -73.9885730 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1307694647, + "bounds": { + "minlat": 40.7706665, + "minlon": -73.9882151, + "maxlat": 40.7707544, + "maxlon": -73.9881452 + }, + "nodes": [ + 12110077274, + 12110077275, + 12110077276 + ], + "geometry": [ + { "lat": 40.7706665, "lon": -73.9882151 }, + { "lat": 40.7707304, "lon": -73.9881641 }, + { "lat": 40.7707544, "lon": -73.9881452 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1307694648, + "bounds": { + "minlat": 40.7710465, + "minlon": -73.9885191, + "maxlat": 40.7713823, + "maxlon": -73.9880564 + }, + "nodes": [ + 12110077279, + 12110077280, + 12110077282, + 12110077283 + ], + "geometry": [ + { "lat": 40.7712978, "lon": -73.9880564 }, + { "lat": 40.7713559, "lon": -73.9882070 }, + { "lat": 40.7713823, "lon": -73.9882677 }, + { "lat": 40.7710465, "lon": -73.9885191 } + ], + "tags": { + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1307694649, + "bounds": { + "minlat": 40.7712252, + "minlon": -73.9878201, + "maxlat": 40.7713015, + "maxlon": -73.9877767 + }, + "nodes": [ + 12110077284, + 12110077285, + 12110077286 + ], + "geometry": [ + { "lat": 40.7713015, "lon": -73.9877767 }, + { "lat": 40.7712473, "lon": -73.9878074 }, + { "lat": 40.7712252, "lon": -73.9878201 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1307694650, + "bounds": { + "minlat": 40.7712978, + "minlon": -73.9880564, + "maxlat": 40.7713766, + "maxlon": -73.9879556 + }, + "nodes": [ + 12110077277, + 12110077278, + 12110077281, + 12110077279 + ], + "geometry": [ + { "lat": 40.7713766, "lon": -73.9879556 }, + { "lat": 40.7713224, "lon": -73.9879861 }, + { "lat": 40.7713098, "lon": -73.9880123 }, + { "lat": 40.7712978, "lon": -73.9880564 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1308493814, + "bounds": { + "minlat": 40.7412670, + "minlon": -74.0092986, + "maxlat": 40.7412872, + "maxlon": -74.0091342 + }, + "nodes": [ + 8862521328, + 12117376845, + 12117376844 + ], + "geometry": [ + { "lat": 40.7412670, "lon": -74.0091342 }, + { "lat": 40.7412823, "lon": -74.0092577 }, + { "lat": 40.7412872, "lon": -74.0092986 } + ], + "tags": { + "access": "no", + "highway": "service", + "lanes": "1", + "service": "driveway", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1308493816, + "bounds": { + "minlat": 40.7405115, + "minlon": -74.0114788, + "maxlat": 40.7406238, + "maxlon": -74.0097055 + }, + "nodes": [ + 593816422, + 12117376856, + 9440836583, + 246647563, + 9440836581, + 11246012802, + 42440582 + ], + "geometry": [ + { "lat": 40.7405115, "lon": -74.0097055 }, + { "lat": 40.7405203, "lon": -74.0097968 }, + { "lat": 40.7405233, "lon": -74.0098273 }, + { "lat": 40.7405284, "lon": -74.0099439 }, + { "lat": 40.7405590, "lon": -74.0112715 }, + { "lat": 40.7406214, "lon": -74.0114231 }, + { "lat": 40.7406238, "lon": -74.0114788 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "1", + "name": "Bloomfield Street", + "name:etymology:wikidata": "Q435155", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1308867213, + "bounds": { + "minlat": 40.7747049, + "minlon": -73.9748273, + "maxlat": 40.7747908, + "maxlon": -73.9745352 + }, + "nodes": [ + 9906887515, + 2059303872, + 9178915168, + 42442175 + ], + "geometry": [ + { "lat": 40.7747908, "lon": -73.9745352 }, + { "lat": 40.7747657, "lon": -73.9746015 }, + { "lat": 40.7747394, "lon": -73.9746917 }, + { "lat": 40.7747049, "lon": -73.9748273 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1308875366, + "bounds": { + "minlat": 40.7642748, + "minlon": -73.9920821, + "maxlat": 40.7653085, + "maxlon": -73.9913292 + }, + "nodes": [ + 12120836681, + 10168028980, + 42440170, + 10168028984, + 10090668394, + 42454042 + ], + "geometry": [ + { "lat": 40.7642748, "lon": -73.9920821 }, + { "lat": 40.7646277, "lon": -73.9918277 }, + { "lat": 40.7646863, "lon": -73.9917852 }, + { "lat": 40.7647495, "lon": -73.9917389 }, + { "lat": 40.7652591, "lon": -73.9913654 }, + { "lat": 40.7653085, "lon": -73.9913292 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "69'6\"", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1308875367, + "bounds": { + "minlat": 40.7640575, + "minlon": -73.9922415, + "maxlat": 40.7642748, + "maxlon": -73.9920821 + }, + "nodes": [ + 42432598, + 10168028994, + 12120836681 + ], + "geometry": [ + { "lat": 40.7640575, "lon": -73.9922415 }, + { "lat": 40.7641194, "lon": -73.9921946 }, + { "lat": 40.7642748, "lon": -73.9920821 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "69'6\"", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1308959673, + "bounds": { + "minlat": 40.7561238, + "minlon": -74.0006439, + "maxlat": 40.7566265, + "maxlon": -74.0002624 + }, + "nodes": [ + 5481855027, + 12121646029, + 12121646030, + 12121646028 + ], + "geometry": [ + { "lat": 40.7561238, "lon": -74.0006439 }, + { "lat": 40.7561619, "lon": -74.0006154 }, + { "lat": 40.7561778, "lon": -74.0006033 }, + { "lat": 40.7566265, "lon": -74.0002624 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1309223775, + "bounds": { + "minlat": 40.8199196, + "minlon": -73.9315801, + "maxlat": 40.8199941, + "maxlon": -73.9306123 + }, + "nodes": [ + 12123720018, + 13146413884 + ], + "geometry": [ + { "lat": 40.8199196, "lon": -73.9315801 }, + { "lat": 40.8199941, "lon": -73.9306123 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1309520272, + "bounds": { + "minlat": 40.7408445, + "minlon": -73.9576731, + "maxlat": 40.7414124, + "maxlon": -73.9548349 + }, + "nodes": [ + 12125828388, + 12125828389, + 12125828390, + 12125828387, + 12125828332, + 12125828374, + 12125828342, + 12125828333, + 12125813544, + 12125828368, + 12125828341, + 12125828334, + 12125813562, + 12125828360, + 12125828339, + 12125828335, + 12125828340, + 12125828351, + 12125828337, + 12125828338, + 12125828336, + 12125828343, + 12125828344, + 12125828345, + 12125828346, + 12125828348, + 12125828347, + 12125828349, + 12125828350 + ], + "geometry": [ + { "lat": 40.7414124, "lon": -73.9548349 }, + { "lat": 40.7413130, "lon": -73.9548784 }, + { "lat": 40.7412972, "lon": -73.9548854 }, + { "lat": 40.7412659, "lon": -73.9549005 }, + { "lat": 40.7412427, "lon": -73.9549561 }, + { "lat": 40.7412148, "lon": -73.9549704 }, + { "lat": 40.7411906, "lon": -73.9549809 }, + { "lat": 40.7411666, "lon": -73.9549913 }, + { "lat": 40.7411434, "lon": -73.9549980 }, + { "lat": 40.7411257, "lon": -73.9550030 }, + { "lat": 40.7411006, "lon": -73.9550102 }, + { "lat": 40.7410817, "lon": -73.9550157 }, + { "lat": 40.7410573, "lon": -73.9550198 }, + { "lat": 40.7410341, "lon": -73.9550238 }, + { "lat": 40.7410144, "lon": -73.9550272 }, + { "lat": 40.7409922, "lon": -73.9550310 }, + { "lat": 40.7409680, "lon": -73.9550345 }, + { "lat": 40.7409411, "lon": -73.9550385 }, + { "lat": 40.7409182, "lon": -73.9550418 }, + { "lat": 40.7408704, "lon": -73.9550488 }, + { "lat": 40.7408445, "lon": -73.9550525 }, + { "lat": 40.7408767, "lon": -73.9554655 }, + { "lat": 40.7408874, "lon": -73.9555823 }, + { "lat": 40.7408975, "lon": -73.9556730 }, + { "lat": 40.7409090, "lon": -73.9557611 }, + { "lat": 40.7409237, "lon": -73.9558529 }, + { "lat": 40.7409408, "lon": -73.9559612 }, + { "lat": 40.7409638, "lon": -73.9560915 }, + { "lat": 40.7412651, "lon": -73.9576731 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1309520273, + "bounds": { + "minlat": 40.7409411, + "minlon": -73.9570500, + "maxlat": 40.7412602, + "maxlon": -73.9550385 + }, + "nodes": [ + 12125828351, + 12125828352, + 12125828353, + 12125828354, + 12125828355, + 12125828356, + 12125828357, + 12125828358, + 12125828359 + ], + "geometry": [ + { "lat": 40.7409411, "lon": -73.9550385 }, + { "lat": 40.7409798, "lon": -73.9554514 }, + { "lat": 40.7409908, "lon": -73.9555665 }, + { "lat": 40.7410048, "lon": -73.9556768 }, + { "lat": 40.7410201, "lon": -73.9557847 }, + { "lat": 40.7410385, "lon": -73.9559031 }, + { "lat": 40.7410575, "lon": -73.9560104 }, + { "lat": 40.7410843, "lon": -73.9561490 }, + { "lat": 40.7412602, "lon": -73.9570500 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1309520274, + "bounds": { + "minlat": 40.7410341, + "minlon": -73.9582868, + "maxlat": 40.7416248, + "maxlon": -73.9550238 + }, + "nodes": [ + 12125828360, + 12125828361, + 12125828362, + 12125828363, + 12125828364, + 12125828365, + 12125828366, + 12125828367 + ], + "geometry": [ + { "lat": 40.7410341, "lon": -73.9550238 }, + { "lat": 40.7410578, "lon": -73.9552368 }, + { "lat": 40.7410737, "lon": -73.9553600 }, + { "lat": 40.7410909, "lon": -73.9554784 }, + { "lat": 40.7411088, "lon": -73.9555882 }, + { "lat": 40.7411324, "lon": -73.9557217 }, + { "lat": 40.7411577, "lon": -73.9558521 }, + { "lat": 40.7416248, "lon": -73.9582868 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1309520275, + "bounds": { + "minlat": 40.7411257, + "minlon": -73.9565981, + "maxlat": 40.7414223, + "maxlon": -73.9550030 + }, + "nodes": [ + 12125828368, + 12125828369, + 12125828370, + 12125828371, + 12125828372, + 12125828373 + ], + "geometry": [ + { "lat": 40.7411257, "lon": -73.9550030 }, + { "lat": 40.7411601, "lon": -73.9552147 }, + { "lat": 40.7411872, "lon": -73.9553658 }, + { "lat": 40.7412206, "lon": -73.9555490 }, + { "lat": 40.7412527, "lon": -73.9557166 }, + { "lat": 40.7414223, "lon": -73.9565981 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1309520276, + "bounds": { + "minlat": 40.7412148, + "minlon": -73.9572981, + "maxlat": 40.7416519, + "maxlon": -73.9549704 + }, + "nodes": [ + 12125828374, + 12125828375, + 12125828376, + 12125828377, + 12125828378, + 12125828379, + 12125828386, + 12125828380, + 12125828381, + 12125828382, + 12125828383, + 12125828384, + 12125828385 + ], + "geometry": [ + { "lat": 40.7412148, "lon": -73.9549704 }, + { "lat": 40.7412428, "lon": -73.9550685 }, + { "lat": 40.7412648, "lon": -73.9551551 }, + { "lat": 40.7412873, "lon": -73.9552566 }, + { "lat": 40.7413114, "lon": -73.9553613 }, + { "lat": 40.7413307, "lon": -73.9554684 }, + { "lat": 40.7413594, "lon": -73.9556141 }, + { "lat": 40.7416420, "lon": -73.9570484 }, + { "lat": 40.7416496, "lon": -73.9570984 }, + { "lat": 40.7416519, "lon": -73.9571387 }, + { "lat": 40.7416499, "lon": -73.9571815 }, + { "lat": 40.7416432, "lon": -73.9572203 }, + { "lat": 40.7416244, "lon": -73.9572981 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1309520277, + "bounds": { + "minlat": 40.7414391, + "minlon": -73.9591224, + "maxlat": 40.7415583, + "maxlon": -73.9585561 + }, + "nodes": [ + 12125828399, + 12125828408, + 12125828407, + 6783707209, + 12125828398 + ], + "geometry": [ + { "lat": 40.7415583, "lon": -73.9591224 }, + { "lat": 40.7415378, "lon": -73.9590391 }, + { "lat": 40.7415268, "lon": -73.9589943 }, + { "lat": 40.7415200, "lon": -73.9589668 }, + { "lat": 40.7414391, "lon": -73.9585561 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1309520279, + "bounds": { + "minlat": 40.7415192, + "minlon": -73.9583235, + "maxlat": 40.7419880, + "maxlon": -73.9581372 + }, + "nodes": [ + 12125828394, + 12125828367, + 12125828393, + 6783707208, + 12125828391, + 12125828392, + 9179070548 + ], + "geometry": [ + { "lat": 40.7415192, "lon": -73.9583235 }, + { "lat": 40.7416248, "lon": -73.9582868 }, + { "lat": 40.7418663, "lon": -73.9581956 }, + { "lat": 40.7419013, "lon": -73.9581803 }, + { "lat": 40.7419222, "lon": -73.9581685 }, + { "lat": 40.7419414, "lon": -73.9581572 }, + { "lat": 40.7419880, "lon": -73.9581372 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1309520280, + "bounds": { + "minlat": 40.7414451, + "minlon": -73.9585124, + "maxlat": 40.7415575, + "maxlon": -73.9579767 + }, + "nodes": [ + 12125828397, + 12125828404, + 12125828394, + 12125828400, + 12125828401 + ], + "geometry": [ + { "lat": 40.7415575, "lon": -73.9585124 }, + { "lat": 40.7415447, "lon": -73.9584496 }, + { "lat": 40.7415192, "lon": -73.9583235 }, + { "lat": 40.7414790, "lon": -73.9581435 }, + { "lat": 40.7414451, "lon": -73.9579767 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1309520281, + "bounds": { + "minlat": 40.7412142, + "minlon": -73.9585561, + "maxlat": 40.7415575, + "maxlon": -73.9585120 + }, + "nodes": [ + 12125828406, + 12125828405, + 12125828398, + 12125828397 + ], + "geometry": [ + { "lat": 40.7412142, "lon": -73.9585554 }, + { "lat": 40.7413912, "lon": -73.9585120 }, + { "lat": 40.7414391, "lon": -73.9585561 }, + { "lat": 40.7415575, "lon": -73.9585124 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1309851700, + "bounds": { + "minlat": 40.7344002, + "minlon": -73.9523393, + "maxlat": 40.7347071, + "maxlon": -73.9522617 + }, + "nodes": [ + 12127623199, + 11163899165, + 12047823463, + 42486604 + ], + "geometry": [ + { "lat": 40.7344002, "lon": -73.9522617 }, + { "lat": 40.7345981, "lon": -73.9523030 }, + { "lat": 40.7346447, "lon": -73.9523188 }, + { "lat": 40.7347071, "lon": -73.9523393 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1310003368, + "bounds": { + "minlat": 40.7433385, + "minlon": -73.9485087, + "maxlat": 40.7435965, + "maxlon": -73.9465816 + }, + "nodes": [ + 12129022031, + 12129022032, + 12129022025 + ], + "geometry": [ + { "lat": 40.7433385, "lon": -73.9485087 }, + { "lat": 40.7433488, "lon": -73.9484318 }, + { "lat": 40.7435965, "lon": -73.9465816 } + ], + "tags": { + "access": "no", + "highway": "service", + "maxspeed": "5 mph", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310003369, + "bounds": { + "minlat": 40.7431117, + "minlon": -73.9465816, + "maxlat": 40.7435965, + "maxlon": -73.9464808 + }, + "nodes": [ + 12129022025, + 12129022030, + 12129022029, + 12129022028, + 12129022027, + 12129022026, + 12129021906, + 12129022023 + ], + "geometry": [ + { "lat": 40.7435965, "lon": -73.9465816 }, + { "lat": 40.7435156, "lon": -73.9465647 }, + { "lat": 40.7434557, "lon": -73.9465523 }, + { "lat": 40.7433902, "lon": -73.9465387 }, + { "lat": 40.7432979, "lon": -73.9465195 }, + { "lat": 40.7432443, "lon": -73.9465083 }, + { "lat": 40.7431384, "lon": -73.9464863 }, + { "lat": 40.7431117, "lon": -73.9464808 } + ], + "tags": { + "access": "no", + "highway": "service", + "maxspeed": "5 mph", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715515, + "bounds": { + "minlat": 40.7466177, + "minlon": -73.9387915, + "maxlat": 40.7481489, + "maxlon": -73.9350918 + }, + "nodes": [ + 12132844503, + 12132844506, + 12132844505, + 12132844507, + 12132844508, + 12132844509, + 12132844510, + 12132844511, + 12132844512, + 12132844513, + 12132844514, + 12132844669, + 12132844515, + 12132844516, + 12132844517, + 12132844519, + 12132844518 + ], + "geometry": [ + { "lat": 40.7466177, "lon": -73.9387915 }, + { "lat": 40.7467606, "lon": -73.9383869 }, + { "lat": 40.7469036, "lon": -73.9379750 }, + { "lat": 40.7472071, "lon": -73.9370821 }, + { "lat": 40.7474016, "lon": -73.9366302 }, + { "lat": 40.7475539, "lon": -73.9362067 }, + { "lat": 40.7476086, "lon": -73.9360639 }, + { "lat": 40.7476616, "lon": -73.9359276 }, + { "lat": 40.7477145, "lon": -73.9358001 }, + { "lat": 40.7477606, "lon": -73.9357020 }, + { "lat": 40.7478074, "lon": -73.9356150 }, + { "lat": 40.7478439, "lon": -73.9355484 }, + { "lat": 40.7478559, "lon": -73.9355263 }, + { "lat": 40.7479124, "lon": -73.9354338 }, + { "lat": 40.7479856, "lon": -73.9353221 }, + { "lat": 40.7480661, "lon": -73.9352072 }, + { "lat": 40.7481489, "lon": -73.9350918 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715516, + "bounds": { + "minlat": 40.7459912, + "minlon": -73.9397908, + "maxlat": 40.7474265, + "maxlon": -73.9361260 + }, + "nodes": [ + 12132844597, + 12132844623, + 12132844624, + 12132844625, + 12132844626, + 12132844627, + 12132844628, + 12132844629, + 12132844630, + 12132844631, + 12132844632, + 12132844633, + 12132844634, + 12132844635, + 12132844636, + 12132844637, + 12132844638, + 12132844639, + 12132844640, + 12132844642, + 12132844643, + 12132844641 + ], + "geometry": [ + { "lat": 40.7459912, "lon": -73.9397908 }, + { "lat": 40.7461788, "lon": -73.9395066 }, + { "lat": 40.7462355, "lon": -73.9394146 }, + { "lat": 40.7462945, "lon": -73.9393148 }, + { "lat": 40.7463451, "lon": -73.9392152 }, + { "lat": 40.7464031, "lon": -73.9391004 }, + { "lat": 40.7464515, "lon": -73.9389847 }, + { "lat": 40.7465011, "lon": -73.9388614 }, + { "lat": 40.7465479, "lon": -73.9387387 }, + { "lat": 40.7466046, "lon": -73.9385733 }, + { "lat": 40.7471152, "lon": -73.9370719 }, + { "lat": 40.7471564, "lon": -73.9369528 }, + { "lat": 40.7472086, "lon": -73.9368164 }, + { "lat": 40.7472678, "lon": -73.9366597 }, + { "lat": 40.7473359, "lon": -73.9364915 }, + { "lat": 40.7473888, "lon": -73.9363627 }, + { "lat": 40.7474249, "lon": -73.9362691 }, + { "lat": 40.7474265, "lon": -73.9362505 }, + { "lat": 40.7474258, "lon": -73.9362314 }, + { "lat": 40.7474176, "lon": -73.9362050 }, + { "lat": 40.7474070, "lon": -73.9361707 }, + { "lat": 40.7473947, "lon": -73.9361260 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715517, + "bounds": { + "minlat": 40.7466978, + "minlon": -73.9388650, + "maxlat": 40.7483112, + "maxlon": -73.9349586 + }, + "nodes": [ + 12132844562, + 12132844563, + 12132844564, + 12132844565, + 12132844566, + 12132844567, + 12132844587, + 12132844568, + 12132844569, + 12132844570, + 12132844571, + 12132844572, + 12132844573, + 12132844574, + 12132844575, + 12132844576, + 12132844577, + 12132844578, + 12132844579, + 12132844580, + 12132844581, + 12132844582, + 12132844583, + 12133309098, + 12132844584, + 12132844868 + ], + "geometry": [ + { "lat": 40.7466978, "lon": -73.9388650 }, + { "lat": 40.7467468, "lon": -73.9387784 }, + { "lat": 40.7467926, "lon": -73.9386919 }, + { "lat": 40.7468356, "lon": -73.9386072 }, + { "lat": 40.7468741, "lon": -73.9385263 }, + { "lat": 40.7469123, "lon": -73.9384424 }, + { "lat": 40.7469148, "lon": -73.9384366 }, + { "lat": 40.7469513, "lon": -73.9383491 }, + { "lat": 40.7469989, "lon": -73.9382360 }, + { "lat": 40.7470498, "lon": -73.9381081 }, + { "lat": 40.7471139, "lon": -73.9379446 }, + { "lat": 40.7471746, "lon": -73.9377852 }, + { "lat": 40.7472380, "lon": -73.9376081 }, + { "lat": 40.7476723, "lon": -73.9363171 }, + { "lat": 40.7477161, "lon": -73.9361998 }, + { "lat": 40.7477715, "lon": -73.9360512 }, + { "lat": 40.7478256, "lon": -73.9359089 }, + { "lat": 40.7478697, "lon": -73.9358004 }, + { "lat": 40.7479126, "lon": -73.9357011 }, + { "lat": 40.7479671, "lon": -73.9355912 }, + { "lat": 40.7480208, "lon": -73.9354916 }, + { "lat": 40.7480697, "lon": -73.9353881 }, + { "lat": 40.7481500, "lon": -73.9352305 }, + { "lat": 40.7481695, "lon": -73.9352025 }, + { "lat": 40.7482024, "lon": -73.9351553 }, + { "lat": 40.7483112, "lon": -73.9349586 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715518, + "bounds": { + "minlat": 40.7481023, + "minlon": -73.9351553, + "maxlat": 40.7482024, + "maxlon": -73.9350368 + }, + "nodes": [ + 12132844584, + 12132844802, + 12132844811, + 12132844518, + 12132844815, + 12132845082, + 12132844585 + ], + "geometry": [ + { "lat": 40.7482024, "lon": -73.9351553 }, + { "lat": 40.7481805, "lon": -73.9351287 }, + { "lat": 40.7481641, "lon": -73.9351096 }, + { "lat": 40.7481489, "lon": -73.9350918 }, + { "lat": 40.7481337, "lon": -73.9350738 }, + { "lat": 40.7481142, "lon": -73.9350508 }, + { "lat": 40.7481023, "lon": -73.9350368 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715519, + "bounds": { + "minlat": 40.7466177, + "minlon": -73.9389567, + "maxlat": 40.7467977, + "maxlon": -73.9387915 + }, + "nodes": [ + 12132844502, + 12132725697, + 12132844504, + 12132725695, + 12132844562, + 9450736993, + 2292059277, + 12132844503 + ], + "geometry": [ + { "lat": 40.7467977, "lon": -73.9389567 }, + { "lat": 40.7467657, "lon": -73.9389273 }, + { "lat": 40.7467341, "lon": -73.9388983 }, + { "lat": 40.7467176, "lon": -73.9388832 }, + { "lat": 40.7466978, "lon": -73.9388650 }, + { "lat": 40.7466765, "lon": -73.9388455 }, + { "lat": 40.7466577, "lon": -73.9388282 }, + { "lat": 40.7466177, "lon": -73.9387915 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715520, + "bounds": { + "minlat": 40.7469148, + "minlon": -73.9385761, + "maxlat": 40.7470652, + "maxlon": -73.9384366 + }, + "nodes": [ + 12132844587, + 9450736963, + 12132844544, + 12132844604, + 12132844522, + 12132844520, + 12132844586 + ], + "geometry": [ + { "lat": 40.7469148, "lon": -73.9384366 }, + { "lat": 40.7469364, "lon": -73.9384566 }, + { "lat": 40.7469547, "lon": -73.9384736 }, + { "lat": 40.7469790, "lon": -73.9384961 }, + { "lat": 40.7470032, "lon": -73.9385186 }, + { "lat": 40.7470345, "lon": -73.9385476 }, + { "lat": 40.7470652, "lon": -73.9385761 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715521, + "bounds": { + "minlat": 40.7469790, + "minlon": -73.9384961, + "maxlat": 40.7494521, + "maxlon": -73.9333211 + }, + "nodes": [ + 12132844852, + 12132844851, + 12132844858, + 12132844850, + 12132844849, + 12132844848, + 12132845080, + 12132845079, + 12133318578, + 12132844847, + 12132844846, + 12133318575, + 12132844845, + 12132844844, + 12132844843, + 12132844842, + 12132844841, + 12132844840, + 12132844839, + 12132844838, + 12132844837, + 12132844616, + 12132844615, + 12132844614, + 12132844613, + 12132844603, + 12132844612, + 12132844611, + 12132844610, + 12132844609, + 12132844608, + 12132844607, + 12132844606, + 12132844605, + 12132844604 + ], + "geometry": [ + { "lat": 40.7494521, "lon": -73.9333211 }, + { "lat": 40.7493936, "lon": -73.9334203 }, + { "lat": 40.7493080, "lon": -73.9335778 }, + { "lat": 40.7491702, "lon": -73.9338312 }, + { "lat": 40.7490760, "lon": -73.9339924 }, + { "lat": 40.7490004, "lon": -73.9341321 }, + { "lat": 40.7489015, "lon": -73.9343141 }, + { "lat": 40.7488780, "lon": -73.9343848 }, + { "lat": 40.7487959, "lon": -73.9345408 }, + { "lat": 40.7487805, "lon": -73.9345700 }, + { "lat": 40.7487056, "lon": -73.9347103 }, + { "lat": 40.7486814, "lon": -73.9347451 }, + { "lat": 40.7486598, "lon": -73.9347761 }, + { "lat": 40.7484169, "lon": -73.9352266 }, + { "lat": 40.7483593, "lon": -73.9353315 }, + { "lat": 40.7483085, "lon": -73.9354301 }, + { "lat": 40.7482579, "lon": -73.9355330 }, + { "lat": 40.7482143, "lon": -73.9356301 }, + { "lat": 40.7481734, "lon": -73.9357271 }, + { "lat": 40.7481294, "lon": -73.9358392 }, + { "lat": 40.7480857, "lon": -73.9359533 }, + { "lat": 40.7480487, "lon": -73.9360651 }, + { "lat": 40.7477742, "lon": -73.9369046 }, + { "lat": 40.7477257, "lon": -73.9370423 }, + { "lat": 40.7476742, "lon": -73.9371831 }, + { "lat": 40.7476326, "lon": -73.9372915 }, + { "lat": 40.7475759, "lon": -73.9374246 }, + { "lat": 40.7475307, "lon": -73.9375274 }, + { "lat": 40.7474831, "lon": -73.9376291 }, + { "lat": 40.7474391, "lon": -73.9377182 }, + { "lat": 40.7473845, "lon": -73.9378198 }, + { "lat": 40.7473223, "lon": -73.9379309 }, + { "lat": 40.7472494, "lon": -73.9380619 }, + { "lat": 40.7471659, "lon": -73.9382008 }, + { "lat": 40.7469790, "lon": -73.9384961 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715522, + "bounds": { + "minlat": 40.7473077, + "minlon": -73.9378198, + "maxlat": 40.7489598, + "maxlon": -73.9340104 + }, + "nodes": [ + 12132844608, + 9450736958, + 9450736928, + 12132844617, + 12132844618, + 12132844620, + 12132844621, + 12132844619, + 12132844622, + 12132844820, + 12132844821, + 12132844822, + 12132844823, + 12132844824, + 12132844825, + 12132844826, + 12132844827, + 12133318503, + 12132844828, + 12132844829, + 12133318508, + 12132844830, + 12132844831, + 12133318585, + 12132844832, + 12132844833, + 12133318588, + 12132844834, + 12132844835, + 12132844836 + ], + "geometry": [ + { "lat": 40.7473845, "lon": -73.9378198 }, + { "lat": 40.7473499, "lon": -73.9377889 }, + { "lat": 40.7473284, "lon": -73.9377697 }, + { "lat": 40.7473077, "lon": -73.9377512 }, + { "lat": 40.7473915, "lon": -73.9375324 }, + { "lat": 40.7474700, "lon": -73.9373355 }, + { "lat": 40.7475279, "lon": -73.9371858 }, + { "lat": 40.7475797, "lon": -73.9370413 }, + { "lat": 40.7477819, "lon": -73.9364462 }, + { "lat": 40.7479391, "lon": -73.9359923 }, + { "lat": 40.7479815, "lon": -73.9358770 }, + { "lat": 40.7480269, "lon": -73.9357624 }, + { "lat": 40.7480796, "lon": -73.9356360 }, + { "lat": 40.7481342, "lon": -73.9355270 }, + { "lat": 40.7481855, "lon": -73.9354256 }, + { "lat": 40.7482428, "lon": -73.9353183 }, + { "lat": 40.7482934, "lon": -73.9352214 }, + { "lat": 40.7483434, "lon": -73.9351439 }, + { "lat": 40.7483618, "lon": -73.9351154 }, + { "lat": 40.7484374, "lon": -73.9349752 }, + { "lat": 40.7484527, "lon": -73.9349431 }, + { "lat": 40.7484954, "lon": -73.9348535 }, + { "lat": 40.7485900, "lon": -73.9346755 }, + { "lat": 40.7485984, "lon": -73.9346520 }, + { "lat": 40.7486105, "lon": -73.9346185 }, + { "lat": 40.7486958, "lon": -73.9344625 }, + { "lat": 40.7487104, "lon": -73.9344386 }, + { "lat": 40.7487457, "lon": -73.9343811 }, + { "lat": 40.7489151, "lon": -73.9340849 }, + { "lat": 40.7489598, "lon": -73.9340104 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715523, + "bounds": { + "minlat": 40.7477929, + "minlon": -73.9355484, + "maxlat": 40.7478439, + "maxlon": -73.9354893 + }, + "nodes": [ + 12132844666, + 12132844670, + 12132844669 + ], + "geometry": [ + { "lat": 40.7477929, "lon": -73.9354893 }, + { "lat": 40.7478186, "lon": -73.9355191 }, + { "lat": 40.7478439, "lon": -73.9355484 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715524, + "bounds": { + "minlat": 40.7486820, + "minlon": -73.9343811, + "maxlat": 40.7487457, + "maxlon": -73.9343072 + }, + "nodes": [ + 12132844856, + 12132844797, + 9450713915, + 12132844834 + ], + "geometry": [ + { "lat": 40.7486820, "lon": -73.9343072 }, + { "lat": 40.7487047, "lon": -73.9343336 }, + { "lat": 40.7487253, "lon": -73.9343575 }, + { "lat": 40.7487457, "lon": -73.9343811 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715525, + "bounds": { + "minlat": 40.7492393, + "minlon": -73.9335778, + "maxlat": 40.7493080, + "maxlon": -73.9334963 + }, + "nodes": [ + 12132844857, + 12132844792, + 12132844791, + 12132844858 + ], + "geometry": [ + { "lat": 40.7492393, "lon": -73.9334963 }, + { "lat": 40.7492675, "lon": -73.9335297 }, + { "lat": 40.7492868, "lon": -73.9335525 }, + { "lat": 40.7493080, "lon": -73.9335778 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715526, + "bounds": { + "minlat": 40.7476792, + "minlon": -73.9373459, + "maxlat": 40.7503006, + "maxlon": -73.9322021 + }, + "nodes": [ + 12132844869, + 12132844870, + 12132844871, + 12132844872, + 12132844873, + 12132844874, + 12132844875, + 12132844876, + 12132844877, + 12132844878, + 9450737068, + 12132844879, + 12132844880, + 12132844881, + 12132844882, + 12132844883, + 12133318565, + 12132844884, + 12132844885, + 12133318568, + 12132844886, + 12132844887, + 12132844888, + 12133318642, + 12132844889, + 12132844890, + 12133318645, + 12132844891, + 12132844892, + 12132844893, + 12132844894 + ], + "geometry": [ + { "lat": 40.7476792, "lon": -73.9373459 }, + { "lat": 40.7477929, "lon": -73.9371125 }, + { "lat": 40.7478741, "lon": -73.9369763 }, + { "lat": 40.7479152, "lon": -73.9368869 }, + { "lat": 40.7479973, "lon": -73.9366762 }, + { "lat": 40.7481329, "lon": -73.9363264 }, + { "lat": 40.7481648, "lon": -73.9362079 }, + { "lat": 40.7482400, "lon": -73.9360255 }, + { "lat": 40.7483773, "lon": -73.9356984 }, + { "lat": 40.7484148, "lon": -73.9356110 }, + { "lat": 40.7484429, "lon": -73.9356289 }, + { "lat": 40.7484627, "lon": -73.9356414 }, + { "lat": 40.7485077, "lon": -73.9355493 }, + { "lat": 40.7485595, "lon": -73.9354412 }, + { "lat": 40.7486261, "lon": -73.9353092 }, + { "lat": 40.7487851, "lon": -73.9350173 }, + { "lat": 40.7488231, "lon": -73.9349306 }, + { "lat": 40.7488343, "lon": -73.9349051 }, + { "lat": 40.7489075, "lon": -73.9347672 }, + { "lat": 40.7489284, "lon": -73.9347282 }, + { "lat": 40.7492051, "lon": -73.9342127 }, + { "lat": 40.7492377, "lon": -73.9341740 }, + { "lat": 40.7495896, "lon": -73.9335245 }, + { "lat": 40.7496583, "lon": -73.9334093 }, + { "lat": 40.7496776, "lon": -73.9333769 }, + { "lat": 40.7497533, "lon": -73.9332362 }, + { "lat": 40.7497684, "lon": -73.9332056 }, + { "lat": 40.7498159, "lon": -73.9331091 }, + { "lat": 40.7501964, "lon": -73.9324033 }, + { "lat": 40.7502466, "lon": -73.9323052 }, + { "lat": 40.7503006, "lon": -73.9322021 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715527, + "bounds": { + "minlat": 40.7481823, + "minlon": -73.9360255, + "maxlat": 40.7499755, + "maxlon": -73.9325743 + }, + "nodes": [ + 12132844876, + 9450713909, + 12132844895, + 12132844896, + 12132844897, + 12132844898, + 12132844899, + 12132844900, + 12132844901, + 12132844902, + 12133318595, + 12132844903, + 12132844904, + 12133318598, + 12132844905, + 12132844906, + 12132844907, + 12132844908, + 12132844909, + 12132844910, + 12133318632, + 12132844911, + 12132844912, + 12133318635, + 12132844913, + 12132844915, + 12132844914 + ], + "geometry": [ + { "lat": 40.7482400, "lon": -73.9360255 }, + { "lat": 40.7482012, "lon": -73.9359992 }, + { "lat": 40.7481823, "lon": -73.9359863 }, + { "lat": 40.7482158, "lon": -73.9358899 }, + { "lat": 40.7482533, "lon": -73.9358028 }, + { "lat": 40.7482957, "lon": -73.9357098 }, + { "lat": 40.7483388, "lon": -73.9356163 }, + { "lat": 40.7483833, "lon": -73.9355232 }, + { "lat": 40.7484335, "lon": -73.9354260 }, + { "lat": 40.7486009, "lon": -73.9351125 }, + { "lat": 40.7486363, "lon": -73.9350353 }, + { "lat": 40.7486518, "lon": -73.9350016 }, + { "lat": 40.7487256, "lon": -73.9348680 }, + { "lat": 40.7487418, "lon": -73.9348413 }, + { "lat": 40.7487961, "lon": -73.9347516 }, + { "lat": 40.7490164, "lon": -73.9343537 }, + { "lat": 40.7490431, "lon": -73.9342793 }, + { "lat": 40.7491249, "lon": -73.9341285 }, + { "lat": 40.7491540, "lon": -73.9340931 }, + { "lat": 40.7494389, "lon": -73.9335700 }, + { "lat": 40.7494663, "lon": -73.9335283 }, + { "lat": 40.7494831, "lon": -73.9335028 }, + { "lat": 40.7495642, "lon": -73.9333560 }, + { "lat": 40.7495782, "lon": -73.9333240 }, + { "lat": 40.7496136, "lon": -73.9332435 }, + { "lat": 40.7498707, "lon": -73.9327756 }, + { "lat": 40.7499755, "lon": -73.9325743 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715528, + "bounds": { + "minlat": 40.7498000, + "minlon": -73.9327756, + "maxlat": 40.7498707, + "maxlon": -73.9326976 + }, + "nodes": [ + 12132844860, + 12132844794, + 9450713903, + 12132844915 + ], + "geometry": [ + { "lat": 40.7498000, "lon": -73.9326976 }, + { "lat": 40.7498285, "lon": -73.9327291 }, + { "lat": 40.7498468, "lon": -73.9327492 }, + { "lat": 40.7498707, "lon": -73.9327756 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715529, + "bounds": { + "minlat": 40.7481648, + "minlon": -73.9362682, + "maxlat": 40.7503777, + "maxlon": -73.9322755 + }, + "nodes": [ + 12132844875, + 9450737066, + 12132844751, + 12132844916, + 12132844917, + 12133318555, + 12132844918, + 12132844919, + 12133318558, + 12132845078, + 12132844920, + 12133318615, + 12132844921, + 12133318618, + 12132844922, + 12132844923, + 12132844924, + 12132844925 + ], + "geometry": [ + { "lat": 40.7481648, "lon": -73.9362079 }, + { "lat": 40.7482015, "lon": -73.9362355 }, + { "lat": 40.7482200, "lon": -73.9362494 }, + { "lat": 40.7482450, "lon": -73.9362682 }, + { "lat": 40.7488407, "lon": -73.9351402 }, + { "lat": 40.7488794, "lon": -73.9350562 }, + { "lat": 40.7488957, "lon": -73.9350209 }, + { "lat": 40.7489716, "lon": -73.9348809 }, + { "lat": 40.7489873, "lon": -73.9348516 }, + { "lat": 40.7491210, "lon": -73.9346021 }, + { "lat": 40.7491632, "lon": -73.9345603 }, + { "lat": 40.7492449, "lon": -73.9344065 }, + { "lat": 40.7493348, "lon": -73.9342374 }, + { "lat": 40.7493528, "lon": -73.9341996 }, + { "lat": 40.7494073, "lon": -73.9340851 }, + { "lat": 40.7502692, "lon": -73.9324992 }, + { "lat": 40.7503131, "lon": -73.9324103 }, + { "lat": 40.7503777, "lon": -73.9322755 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715530, + "bounds": { + "minlat": 40.7501486, + "minlon": -73.9323052, + "maxlat": 40.7502466, + "maxlon": -73.9322098 + }, + "nodes": [ + 12132844861, + 9450737206, + 9450713905, + 12132844776, + 12132844893 + ], + "geometry": [ + { "lat": 40.7501486, "lon": -73.9322098 }, + { "lat": 40.7501756, "lon": -73.9322361 }, + { "lat": 40.7501902, "lon": -73.9322503 }, + { "lat": 40.7502243, "lon": -73.9322835 }, + { "lat": 40.7502466, "lon": -73.9323052 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715531, + "bounds": { + "minlat": 40.7503006, + "minlon": -73.9323168, + "maxlat": 40.7504210, + "maxlon": -73.9322021 + }, + "nodes": [ + 12132844894, + 12132844756, + 9450737078, + 12132844925, + 12132844743, + 12132844926 + ], + "geometry": [ + { "lat": 40.7503006, "lon": -73.9322021 }, + { "lat": 40.7503196, "lon": -73.9322202 }, + { "lat": 40.7503598, "lon": -73.9322585 }, + { "lat": 40.7503777, "lon": -73.9322755 }, + { "lat": 40.7503973, "lon": -73.9322941 }, + { "lat": 40.7504210, "lon": -73.9323168 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715532, + "bounds": { + "minlat": 40.7477204, + "minlon": -73.9373938, + "maxlat": 40.7513870, + "maxlon": -73.9303597 + }, + "nodes": [ + 12132844927, + 12132844928, + 12132844929, + 12132844930, + 12132844931, + 12132844932, + 12133318519, + 12132844933, + 12132844934, + 12133318522, + 12132844935, + 12132844936, + 12132844937, + 12132844938, + 12132844939, + 12132844940, + 12132844941, + 12132844942, + 12132844943, + 12132844944, + 12132844945, + 12132844946, + 12132844947, + 12132844993, + 12132844926, + 12132844948, + 12132845012, + 12132845013, + 12132845014, + 12132845015, + 12132845016, + 12132844867, + 12132845017, + 12132845018, + 12132845019, + 12132845020, + 12132844692, + 12132845064, + 9450737155, + 9450737246, + 12132845021 + ], + "geometry": [ + { "lat": 40.7477204, "lon": -73.9373938 }, + { "lat": 40.7482544, "lon": -73.9364548 }, + { "lat": 40.7483350, "lon": -73.9363223 }, + { "lat": 40.7484165, "lon": -73.9361946 }, + { "lat": 40.7484925, "lon": -73.9360633 }, + { "lat": 40.7487316, "lon": -73.9356233 }, + { "lat": 40.7487858, "lon": -73.9355366 }, + { "lat": 40.7488094, "lon": -73.9354989 }, + { "lat": 40.7488849, "lon": -73.9353586 }, + { "lat": 40.7488968, "lon": -73.9353344 }, + { "lat": 40.7489616, "lon": -73.9352025 }, + { "lat": 40.7491990, "lon": -73.9347694 }, + { "lat": 40.7492136, "lon": -73.9347166 }, + { "lat": 40.7492965, "lon": -73.9345597 }, + { "lat": 40.7493214, "lon": -73.9345371 }, + { "lat": 40.7498021, "lon": -73.9336455 }, + { "lat": 40.7498476, "lon": -73.9335517 }, + { "lat": 40.7498986, "lon": -73.9334493 }, + { "lat": 40.7499402, "lon": -73.9333655 }, + { "lat": 40.7500834, "lon": -73.9330610 }, + { "lat": 40.7501453, "lon": -73.9329309 }, + { "lat": 40.7502084, "lon": -73.9327956 }, + { "lat": 40.7502691, "lon": -73.9326600 }, + { "lat": 40.7503615, "lon": -73.9324513 }, + { "lat": 40.7504210, "lon": -73.9323168 }, + { "lat": 40.7507709, "lon": -73.9315387 }, + { "lat": 40.7508055, "lon": -73.9314581 }, + { "lat": 40.7508361, "lon": -73.9313880 }, + { "lat": 40.7508709, "lon": -73.9313138 }, + { "lat": 40.7509042, "lon": -73.9312346 }, + { "lat": 40.7509362, "lon": -73.9311549 }, + { "lat": 40.7509609, "lon": -73.9310809 }, + { "lat": 40.7511246, "lon": -73.9305925 }, + { "lat": 40.7511523, "lon": -73.9305037 }, + { "lat": 40.7511802, "lon": -73.9304093 }, + { "lat": 40.7511938, "lon": -73.9303597 }, + { "lat": 40.7512277, "lon": -73.9303771 }, + { "lat": 40.7512671, "lon": -73.9303973 }, + { "lat": 40.7513158, "lon": -73.9304223 }, + { "lat": 40.7513484, "lon": -73.9304390 }, + { "lat": 40.7513870, "lon": -73.9304588 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715533, + "bounds": { + "minlat": 40.7483039, + "minlon": -73.9366139, + "maxlat": 40.7499782, + "maxlon": -73.9333655 + }, + "nodes": [ + 12132844943, + 12132844734, + 12132844949, + 12132844950, + 12132844951, + 12132844952, + 12132844953, + 12132844954, + 12132844955, + 12132844956, + 12132844957, + 12133318538, + 12132844958, + 12133318535, + 12133318528, + 12132844959, + 12132844960, + 12133318525, + 12132844961, + 12132844962, + 12132844963, + 12132844964, + 12132844965, + 12132844966, + 9450737062, + 12132844968, + 12132844967 + ], + "geometry": [ + { "lat": 40.7499402, "lon": -73.9333655 }, + { "lat": 40.7499627, "lon": -73.9333831 }, + { "lat": 40.7499782, "lon": -73.9333952 }, + { "lat": 40.7499500, "lon": -73.9334733 }, + { "lat": 40.7499142, "lon": -73.9335539 }, + { "lat": 40.7498588, "lon": -73.9336716 }, + { "lat": 40.7498076, "lon": -73.9337721 }, + { "lat": 40.7497469, "lon": -73.9338866 }, + { "lat": 40.7493823, "lon": -73.9345683 }, + { "lat": 40.7492874, "lon": -73.9347147 }, + { "lat": 40.7491949, "lon": -73.9348902 }, + { "lat": 40.7490710, "lon": -73.9351219 }, + { "lat": 40.7489823, "lon": -73.9352878 }, + { "lat": 40.7489712, "lon": -73.9353162 }, + { "lat": 40.7489464, "lon": -73.9353798 }, + { "lat": 40.7489336, "lon": -73.9354125 }, + { "lat": 40.7488557, "lon": -73.9355576 }, + { "lat": 40.7488384, "lon": -73.9355841 }, + { "lat": 40.7487783, "lon": -73.9356766 }, + { "lat": 40.7485451, "lon": -73.9361078 }, + { "lat": 40.7484866, "lon": -73.9362074 }, + { "lat": 40.7484257, "lon": -73.9363078 }, + { "lat": 40.7483595, "lon": -73.9364186 }, + { "lat": 40.7483039, "lon": -73.9365109 }, + { "lat": 40.7483188, "lon": -73.9365268 }, + { "lat": 40.7483704, "lon": -73.9365809 }, + { "lat": 40.7484018, "lon": -73.9366139 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715534, + "bounds": { + "minlat": 40.7476326, + "minlon": -73.9375088, + "maxlat": 40.7478192, + "maxlon": -73.9372915 + }, + "nodes": [ + 12132844603, + 9450713912, + 12132844869, + 9450737097, + 12132844927, + 9450737119, + 12132844527, + 9450713881, + 12132844599 + ], + "geometry": [ + { "lat": 40.7476326, "lon": -73.9372915 }, + { "lat": 40.7476598, "lon": -73.9373232 }, + { "lat": 40.7476792, "lon": -73.9373459 }, + { "lat": 40.7476999, "lon": -73.9373699 }, + { "lat": 40.7477204, "lon": -73.9373938 }, + { "lat": 40.7477447, "lon": -73.9374221 }, + { "lat": 40.7477633, "lon": -73.9374438 }, + { "lat": 40.7477777, "lon": -73.9374605 }, + { "lat": 40.7478192, "lon": -73.9375088 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715535, + "bounds": { + "minlat": 40.7486336, + "minlon": -73.9362252, + "maxlat": 40.7504063, + "maxlon": -73.9324513 + }, + "nodes": [ + 12132844977, + 12132844994, + 12132844978, + 12132844979, + 12132844980, + 12132845077, + 12132844981, + 12133318605, + 12132844982, + 12133318608, + 12132844983, + 12132844984, + 12133318625, + 12132844985, + 12132844986, + 12132844987, + 12132844988, + 12132844989, + 12132844990, + 12132844991, + 12132844992, + 12132844731, + 12132844993 + ], + "geometry": [ + { "lat": 40.7486907, "lon": -73.9362252 }, + { "lat": 40.7486513, "lon": -73.9361812 }, + { "lat": 40.7486336, "lon": -73.9361615 }, + { "lat": 40.7487646, "lon": -73.9359327 }, + { "lat": 40.7492766, "lon": -73.9349938 }, + { "lat": 40.7492934, "lon": -73.9349734 }, + { "lat": 40.7493038, "lon": -73.9349608 }, + { "lat": 40.7494342, "lon": -73.9347170 }, + { "lat": 40.7495293, "lon": -73.9345391 }, + { "lat": 40.7495458, "lon": -73.9345059 }, + { "lat": 40.7497184, "lon": -73.9341595 }, + { "lat": 40.7498087, "lon": -73.9339943 }, + { "lat": 40.7498184, "lon": -73.9339777 }, + { "lat": 40.7498962, "lon": -73.9338438 }, + { "lat": 40.7499477, "lon": -73.9337390 }, + { "lat": 40.7499950, "lon": -73.9336316 }, + { "lat": 40.7500488, "lon": -73.9335021 }, + { "lat": 40.7500782, "lon": -73.9334216 }, + { "lat": 40.7501202, "lon": -73.9333055 }, + { "lat": 40.7503467, "lon": -73.9326392 }, + { "lat": 40.7504063, "lon": -73.9324858 }, + { "lat": 40.7503850, "lon": -73.9324695 }, + { "lat": 40.7503615, "lon": -73.9324513 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715536, + "bounds": { + "minlat": 40.7491842, + "minlon": -73.9354359, + "maxlat": 40.7508228, + "maxlon": -73.9315387 + }, + "nodes": [ + 12132844973, + 12132845011, + 12132844995, + 12133318545, + 12132844996, + 12132844997, + 12133318548, + 12132844998, + 12132844999, + 12132845000, + 12132845001, + 12132845002, + 12132845003, + 12132845004, + 12132845005, + 12133318662, + 12132845006, + 12132845007, + 12133318665, + 12132845008, + 12132845009, + 12132845010, + 12132844706, + 12132844948 + ], + "geometry": [ + { "lat": 40.7492396, "lon": -73.9354359 }, + { "lat": 40.7492017, "lon": -73.9353945 }, + { "lat": 40.7491842, "lon": -73.9353754 }, + { "lat": 40.7492543, "lon": -73.9352685 }, + { "lat": 40.7492679, "lon": -73.9352477 }, + { "lat": 40.7493492, "lon": -73.9351023 }, + { "lat": 40.7493541, "lon": -73.9350905 }, + { "lat": 40.7493926, "lon": -73.9349972 }, + { "lat": 40.7499386, "lon": -73.9339977 }, + { "lat": 40.7499847, "lon": -73.9339091 }, + { "lat": 40.7500314, "lon": -73.9338138 }, + { "lat": 40.7500730, "lon": -73.9337204 }, + { "lat": 40.7501117, "lon": -73.9336236 }, + { "lat": 40.7501502, "lon": -73.9335276 }, + { "lat": 40.7501858, "lon": -73.9334314 }, + { "lat": 40.7502126, "lon": -73.9333343 }, + { "lat": 40.7502216, "lon": -73.9333018 }, + { "lat": 40.7502753, "lon": -73.9331460 }, + { "lat": 40.7502895, "lon": -73.9331107 }, + { "lat": 40.7503265, "lon": -73.9330192 }, + { "lat": 40.7507563, "lon": -73.9317539 }, + { "lat": 40.7508228, "lon": -73.9315815 }, + { "lat": 40.7508044, "lon": -73.9315663 }, + { "lat": 40.7507709, "lon": -73.9315387 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715537, + "bounds": { + "minlat": 40.7508613, + "minlon": -73.9322345, + "maxlat": 40.7509421, + "maxlon": -73.9321912 + }, + "nodes": [ + 4443930254, + 7857724450 + ], + "geometry": [ + { "lat": 40.7509421, "lon": -73.9322345 }, + { "lat": 40.7508613, "lon": -73.9321912 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715538, + "bounds": { + "minlat": 40.7499162, + "minlon": -73.9343594, + "maxlat": 40.7512671, + "maxlon": -73.9303973 + }, + "nodes": [ + 12132845048, + 9450737237, + 9450737146, + 12132845049, + 12132845050, + 12132845051, + 12132845052, + 12132845053, + 12133318656, + 12132845054, + 12132845055, + 12133318659, + 12133318672, + 12132845056, + 12132845057, + 12133318675, + 12132845058, + 12132845059, + 12132845060, + 12132845061, + 12132845062, + 12132845063, + 12132845064 + ], + "geometry": [ + { "lat": 40.7500023, "lon": -73.9343594 }, + { "lat": 40.7499576, "lon": -73.9343158 }, + { "lat": 40.7499356, "lon": -73.9342942 }, + { "lat": 40.7499162, "lon": -73.9342753 }, + { "lat": 40.7500979, "lon": -73.9339218 }, + { "lat": 40.7501416, "lon": -73.9338311 }, + { "lat": 40.7501877, "lon": -73.9337220 }, + { "lat": 40.7502448, "lon": -73.9335823 }, + { "lat": 40.7502813, "lon": -73.9334932 }, + { "lat": 40.7503019, "lon": -73.9334430 }, + { "lat": 40.7503567, "lon": -73.9332842 }, + { "lat": 40.7503666, "lon": -73.9332509 }, + { "lat": 40.7504552, "lon": -73.9329516 }, + { "lat": 40.7504663, "lon": -73.9329141 }, + { "lat": 40.7505251, "lon": -73.9327433 }, + { "lat": 40.7505396, "lon": -73.9327069 }, + { "lat": 40.7506111, "lon": -73.9325282 }, + { "lat": 40.7509348, "lon": -73.9315724 }, + { "lat": 40.7510736, "lon": -73.9311627 }, + { "lat": 40.7511099, "lon": -73.9310454 }, + { "lat": 40.7511404, "lon": -73.9309337 }, + { "lat": 40.7511699, "lon": -73.9308122 }, + { "lat": 40.7512671, "lon": -73.9303973 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715539, + "bounds": { + "minlat": 40.7501580, + "minlon": -73.9353659, + "maxlat": 40.7504176, + "maxlon": -73.9349029 + }, + "nodes": [ + 10713533566, + 10713533567, + 10713533576, + 10713533572, + 10713533568, + 10713533573, + 10713533569 + ], + "geometry": [ + { "lat": 40.7504176, "lon": -73.9353659 }, + { "lat": 40.7503580, "lon": -73.9352376 }, + { "lat": 40.7503362, "lon": -73.9351938 }, + { "lat": 40.7503029, "lon": -73.9351390 }, + { "lat": 40.7502754, "lon": -73.9350920 }, + { "lat": 40.7502371, "lon": -73.9350307 }, + { "lat": 40.7501580, "lon": -73.9349029 } + ], + "tags": { + "access": "no", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310715540, + "bounds": { + "minlat": 40.7499268, + "minlon": -73.9351199, + "maxlat": 40.7501580, + "maxlon": -73.9349029 + }, + "nodes": [ + 10713533569, + 10713533570 + ], + "geometry": [ + { "lat": 40.7501580, "lon": -73.9349029 }, + { "lat": 40.7499268, "lon": -73.9351199 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1310965065, + "bounds": { + "minlat": 40.8079723, + "minlon": -74.0025735, + "maxlat": 40.8084371, + "maxlon": -74.0022645 + }, + "nodes": [ + 5481884753, + 5481884754 + ], + "geometry": [ + { "lat": 40.8084371, "lon": -74.0022645 }, + { "lat": 40.8079723, "lon": -74.0025735 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1310965066, + "bounds": { + "minlat": 40.8078786, + "minlon": -74.0024457, + "maxlat": 40.8079217, + "maxlon": -74.0023367 + }, + "nodes": [ + 5481884758, + 5512688061 + ], + "geometry": [ + { "lat": 40.8078786, "lon": -74.0023367 }, + { "lat": 40.8079217, "lon": -74.0024457 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1311126880, + "bounds": { + "minlat": 40.7444503, + "minlon": -73.9284845, + "maxlat": 40.7446219, + "maxlon": -73.9284514 + }, + "nodes": [ + 12136583407, + 12136583408, + 12136583410, + 12136583404 + ], + "geometry": [ + { "lat": 40.7444503, "lon": -73.9284845 }, + { "lat": 40.7445571, "lon": -73.9284639 }, + { "lat": 40.7445803, "lon": -73.9284594 }, + { "lat": 40.7446219, "lon": -73.9284514 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1311458449, + "bounds": { + "minlat": 40.7052020, + "minlon": -74.0177073, + "maxlat": 40.7054763, + "maxlon": -74.0172975 + }, + "nodes": [ + 11421713245, + 7726015488, + 7726015485, + 11421713261, + 7726015493, + 7726015490, + 11421713259, + 7726015498, + 7726015495, + 11421713257, + 7726015512, + 7726015509, + 11421713255, + 12139478503, + 7725990283, + 1430380086, + 12139478507, + 12139478504, + 7726015513, + 11421713242, + 12139478505, + 2808241034, + 2808241036, + 12139478506, + 11421713245 + ], + "geometry": [ + { "lat": 40.7054494, "lon": -74.0176878 }, + { "lat": 40.7054316, "lon": -74.0176742 }, + { "lat": 40.7054074, "lon": -74.0176586 }, + { "lat": 40.7053893, "lon": -74.0176454 }, + { "lat": 40.7053675, "lon": -74.0176280 }, + { "lat": 40.7053445, "lon": -74.0176094 }, + { "lat": 40.7053288, "lon": -74.0175960 }, + { "lat": 40.7053121, "lon": -74.0175813 }, + { "lat": 40.7052905, "lon": -74.0175601 }, + { "lat": 40.7052731, "lon": -74.0175442 }, + { "lat": 40.7052547, "lon": -74.0175257 }, + { "lat": 40.7052336, "lon": -74.0175037 }, + { "lat": 40.7052205, "lon": -74.0174878 }, + { "lat": 40.7052020, "lon": -74.0174664 }, + { "lat": 40.7052060, "lon": -74.0174580 }, + { "lat": 40.7053101, "lon": -74.0173478 }, + { "lat": 40.7053065, "lon": -74.0173326 }, + { "lat": 40.7053039, "lon": -74.0173213 }, + { "lat": 40.7053280, "lon": -74.0173160 }, + { "lat": 40.7053707, "lon": -74.0173031 }, + { "lat": 40.7053917, "lon": -74.0172975 }, + { "lat": 40.7054221, "lon": -74.0174460 }, + { "lat": 40.7054529, "lon": -74.0175950 }, + { "lat": 40.7054763, "lon": -74.0177073 }, + { "lat": 40.7054494, "lon": -74.0176878 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1312494949, + "bounds": { + "minlat": 40.8661784, + "minlon": -73.9280465, + "maxlat": 40.8673840, + "maxlon": -73.9264060 + }, + "nodes": [ + 42432799, + 1209512052, + 8153243801, + 42440079, + 42457282 + ], + "geometry": [ + { "lat": 40.8661784, "lon": -73.9280465 }, + { "lat": 40.8662639, "lon": -73.9279915 }, + { "lat": 40.8667240, "lon": -73.9273177 }, + { "lat": 40.8670640, "lon": -73.9268380 }, + { "lat": 40.8673840, "lon": -73.9264060 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "foot": "yes", + "highway": "tertiary", + "inline_skates": "yes", + "maxspeed": "20 mph", + "name": "Seaman Avenue", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Seaman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1312887381, + "bounds": { + "minlat": 40.7591914, + "minlon": -73.9992068, + "maxlat": 40.7594216, + "maxlon": -73.9986090 + }, + "nodes": [ + 427804029, + 9421657547, + 9143220942, + 9421657722, + 12152197667 + ], + "geometry": [ + { "lat": 40.7594216, "lon": -73.9992068 }, + { "lat": 40.7594191, "lon": -73.9991844 }, + { "lat": 40.7594140, "lon": -73.9991563 }, + { "lat": 40.7593214, "lon": -73.9989285 }, + { "lat": 40.7591914, "lon": -73.9986090 } + ], + "tags": { + "destination": "Lincoln Tunnel;New Jersey", + "destination:ref": "I 495 West", + "hgv": "designated", + "highway": "primary", + "lanes": "1", + "maxheight": "13'0\"", + "maxspeed": "25 mph", + "name": "West 40th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1312936871, + "bounds": { + "minlat": 40.7516378, + "minlon": -73.9994340, + "maxlat": 40.7517346, + "maxlon": -73.9993048 + }, + "nodes": [ + 6878240305, + 11509842362, + 10173309982, + 11509890683, + 358448389 + ], + "geometry": [ + { "lat": 40.7517346, "lon": -73.9993048 }, + { "lat": 40.7516880, "lon": -73.9993733 }, + { "lat": 40.7516748, "lon": -73.9993884 }, + { "lat": 40.7516629, "lon": -73.9994050 }, + { "lat": 40.7516378, "lon": -73.9994340 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1312939982, + "bounds": { + "minlat": 40.7510171, + "minlon": -74.0076901, + "maxlat": 40.7516800, + "maxlon": -74.0061267 + }, + "nodes": [ + 3874681615, + 12152909701 + ], + "geometry": [ + { "lat": 40.7516800, "lon": -74.0076901 }, + { "lat": 40.7510171, "lon": -74.0061267 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1312939983, + "bounds": { + "minlat": 40.7508082, + "minlon": -74.0061267, + "maxlat": 40.7510171, + "maxlon": -74.0056216 + }, + "nodes": [ + 12152909701, + 12152904600, + 5730369214, + 42430597 + ], + "geometry": [ + { "lat": 40.7510171, "lon": -74.0061267 }, + { "lat": 40.7508850, "lon": -74.0058142 }, + { "lat": 40.7508646, "lon": -74.0057640 }, + { "lat": 40.7508082, "lon": -74.0056216 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1312939984, + "bounds": { + "minlat": 40.7472165, + "minlon": -74.0003670, + "maxlat": 40.7485923, + "maxlon": -73.9970852 + }, + "nodes": [ + 12152909709, + 12152909710, + 5122551881, + 42444933, + 10171484158, + 7690154499, + 5481863558, + 8732602446, + 6069788571, + 6069788567, + 7681377428, + 8620532517, + 12152909712, + 12152909713, + 11147382150, + 42435632 + ], + "geometry": [ + { "lat": 40.7485923, "lon": -74.0003670 }, + { "lat": 40.7484931, "lon": -74.0001333 }, + { "lat": 40.7484707, "lon": -74.0000727 }, + { "lat": 40.7484299, "lon": -73.9999571 }, + { "lat": 40.7483696, "lon": -73.9997907 }, + { "lat": 40.7481279, "lon": -73.9992165 }, + { "lat": 40.7480627, "lon": -73.9990588 }, + { "lat": 40.7478801, "lon": -73.9986294 }, + { "lat": 40.7476861, "lon": -73.9981719 }, + { "lat": 40.7476630, "lon": -73.9981156 }, + { "lat": 40.7476186, "lon": -73.9980085 }, + { "lat": 40.7475992, "lon": -73.9979626 }, + { "lat": 40.7473442, "lon": -73.9973564 }, + { "lat": 40.7473040, "lon": -73.9972734 }, + { "lat": 40.7472791, "lon": -73.9972222 }, + { "lat": 40.7472165, "lon": -73.9970852 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1312939985, + "bounds": { + "minlat": 40.7460176, + "minlon": -73.9946940, + "maxlat": 40.7462031, + "maxlon": -73.9942525 + }, + "nodes": [ + 12152909714, + 11147382162, + 42439842 + ], + "geometry": [ + { "lat": 40.7462031, "lon": -73.9946940 }, + { "lat": 40.7460677, "lon": -73.9943725 }, + { "lat": 40.7460176, "lon": -73.9942525 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 26th Street", + "name:ru": "Западная 26-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1312943809, + "bounds": { + "minlat": 40.7627059, + "minlon": -74.0008061, + "maxlat": 40.7627303, + "maxlon": -74.0006883 + }, + "nodes": [ + 373936427, + 247086012 + ], + "geometry": [ + { "lat": 40.7627059, "lon": -74.0006883 }, + { "lat": 40.7627303, "lon": -74.0008061 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1313054200, + "bounds": { + "minlat": 40.7679647, + "minlon": -73.9957629, + "maxlat": 40.7680051, + "maxlon": -73.9956654 + }, + "nodes": [ + 11017186435, + 12153915855 + ], + "geometry": [ + { "lat": 40.7680051, "lon": -73.9957629 }, + { "lat": 40.7679647, "lon": -73.9956654 } + ], + "tags": { + "cycleway:right": "track", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 52nd Street", + "name:ru": "Западная 52-я стрит", + "oneway": "yes", + "sidewalk": "both", + "surface": "concrete", + "wikidata": "Q769100", + "wikipedia": "en:52nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1313054201, + "bounds": { + "minlat": 40.7673331, + "minlon": -73.9962236, + "maxlat": 40.7673726, + "maxlon": -73.9961292 + }, + "nodes": [ + 12153915858, + 12153915856 + ], + "geometry": [ + { "lat": 40.7673331, "lon": -73.9961292 }, + { "lat": 40.7673726, "lon": -73.9962236 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 51st Street", + "name:ru": "Западная 51-я стрит", + "oneway": "yes", + "surface": "concrete", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1313054202, + "bounds": { + "minlat": 40.7666943, + "minlon": -73.9966812, + "maxlat": 40.7667473, + "maxlon": -73.9965547 + }, + "nodes": [ + 11017186437, + 3874681652 + ], + "geometry": [ + { "lat": 40.7667473, "lon": -73.9966812 }, + { "lat": 40.7666943, "lon": -73.9965547 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "West 50th Street", + "name:ru": "Западная 50-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1313071249, + "bounds": { + "minlat": 40.7475533, + "minlon": -73.9707856, + "maxlat": 40.7478303, + "maxlon": -73.9705802 + }, + "nodes": [ + 42453011, + 12154055785, + 11003445421 + ], + "geometry": [ + { "lat": 40.7475533, "lon": -73.9707856 }, + { "lat": 40.7476095, "lon": -73.9707473 }, + { "lat": 40.7478303, "lon": -73.9705802 } + ], + "tags": { + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:ko": "1st 애비뉴", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1313071250, + "bounds": { + "minlat": 40.7469293, + "minlon": -73.9712165, + "maxlat": 40.7471827, + "maxlon": -73.9710392 + }, + "nodes": [ + 42445667, + 3569749098, + 12154055788 + ], + "geometry": [ + { "lat": 40.7469293, "lon": -73.9712165 }, + { "lat": 40.7469799, "lon": -73.9711773 }, + { "lat": 40.7471827, "lon": -73.9710392 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1313135172, + "bounds": { + "minlat": 40.7648743, + "minlon": -73.9980477, + "maxlat": 40.7652442, + "maxlon": -73.9977775 + }, + "nodes": [ + 62915531, + 12413782996 + ], + "geometry": [ + { "lat": 40.7648743, "lon": -73.9980477 }, + { "lat": 40.7652442, "lon": -73.9977775 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "no|not_left|yes|yes|yes", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 1313135175, + "bounds": { + "minlat": 40.7631598, + "minlon": -73.9997719, + "maxlat": 40.7634033, + "maxlon": -73.9994716 + }, + "nodes": [ + 12154598294, + 62916353, + 12154598295, + 373939600, + 42443570 + ], + "geometry": [ + { "lat": 40.7634033, "lon": -73.9994716 }, + { "lat": 40.7633453, "lon": -73.9995373 }, + { "lat": 40.7632885, "lon": -73.9996094 }, + { "lat": 40.7632317, "lon": -73.9996788 }, + { "lat": 40.7631598, "lon": -73.9997719 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left|through|through|through|through" + } +}, +{ + "type": "way", + "id": 1313135176, + "bounds": { + "minlat": 40.7642006, + "minlon": -73.9988027, + "maxlat": 40.7643299, + "maxlon": -73.9987098 + }, + "nodes": [ + 42453555, + 247119856, + 12154598296 + ], + "geometry": [ + { "lat": 40.7643299, "lon": -73.9987098 }, + { "lat": 40.7642420, "lon": -73.9987726 }, + { "lat": 40.7642006, "lon": -73.9988027 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1313135177, + "bounds": { + "minlat": 40.7629105, + "minlon": -74.0001386, + "maxlat": 40.7631598, + "maxlon": -73.9997719 + }, + "nodes": [ + 42443570, + 12154605904, + 247119785, + 12154605905, + 12154605906 + ], + "geometry": [ + { "lat": 40.7631598, "lon": -73.9997719 }, + { "lat": 40.7631183, "lon": -73.9998321 }, + { "lat": 40.7630793, "lon": -73.9998936 }, + { "lat": 40.7630215, "lon": -73.9999774 }, + { "lat": 40.7629105, "lon": -74.0001386 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1313135178, + "bounds": { + "minlat": 40.7619774, + "minlon": -74.0014349, + "maxlat": 40.7620659, + "maxlon": -74.0013362 + }, + "nodes": [ + 42437379, + 12154605913, + 12154605914, + 373932683 + ], + "geometry": [ + { "lat": 40.7620659, "lon": -74.0013362 }, + { "lat": 40.7620409, "lon": -74.0013686 }, + { "lat": 40.7620071, "lon": -74.0014053 }, + { "lat": 40.7619774, "lon": -74.0014349 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1313135179, + "bounds": { + "minlat": 40.7604432, + "minlon": -74.0022903, + "maxlat": 40.7605615, + "maxlon": -74.0022030 + }, + "nodes": [ + 12154605932, + 593840148 + ], + "geometry": [ + { "lat": 40.7604432, "lon": -74.0022903 }, + { "lat": 40.7605615, "lon": -74.0022030 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "turn:lanes": "left|through|through|through|through;right" + } +}, +{ + "type": "way", + "id": 1313450222, + "bounds": { + "minlat": 40.7753734, + "minlon": -73.9883140, + "maxlat": 40.7756179, + "maxlon": -73.9877140 + }, + "nodes": [ + 42430985, + 12157411149, + 12157411146, + 12157411148 + ], + "geometry": [ + { "lat": 40.7753734, "lon": -73.9877140 }, + { "lat": 40.7754324, "lon": -73.9878580 }, + { "lat": 40.7754400, "lon": -73.9878765 }, + { "lat": 40.7756179, "lon": -73.9883140 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1313585880, + "bounds": { + "minlat": 40.7240792, + "minlon": -73.9788537, + "maxlat": 40.7244199, + "maxlon": -73.9786057 + }, + "nodes": [ + 42434233, + 8309479375, + 12954862730, + 12158508687 + ], + "geometry": [ + { "lat": 40.7240792, "lon": -73.9788537 }, + { "lat": 40.7241339, "lon": -73.9788139 }, + { "lat": 40.7243228, "lon": -73.9786764 }, + { "lat": 40.7244199, "lon": -73.9786057 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1313747341, + "bounds": { + "minlat": 40.8483199, + "minlon": -73.9420607, + "maxlat": 40.8483251, + "maxlon": -73.9419746 + }, + "nodes": [ + 12159955529, + 12066621088, + 60926616 + ], + "geometry": [ + { "lat": 40.8483199, "lon": -73.9419746 }, + { "lat": 40.8483227, "lon": -73.9420117 }, + { "lat": 40.8483251, "lon": -73.9420607 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 177th Street", + "name_1": "West 177 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "177th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1313892237, + "bounds": { + "minlat": 40.7523499, + "minlon": -74.0075760, + "maxlat": 40.7524138, + "maxlon": -74.0074052 + }, + "nodes": [ + 4599130019, + 4872498371, + 42434827 + ], + "geometry": [ + { "lat": 40.7523499, "lon": -74.0074052 }, + { "lat": 40.7523663, "lon": -74.0074503 }, + { "lat": 40.7524138, "lon": -74.0075760 } + ], + "tags": { + "alt_name": "West 27 Street", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 27th Street", + "name:ru": "Западная 27-я стрит", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1313892238, + "bounds": { + "minlat": 40.7508277, + "minlon": -74.0081725, + "maxlat": 40.7515688, + "maxlon": -74.0078934 + }, + "nodes": [ + 1334569028, + 13657645187, + 12161224649 + ], + "geometry": [ + { "lat": 40.7508277, "lon": -74.0081725 }, + { "lat": 40.7510913, "lon": -74.0080732 }, + { "lat": 40.7515688, "lon": -74.0078934 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1313892242, + "bounds": { + "minlat": 40.7483646, + "minlon": -74.0080309, + "maxlat": 40.7485004, + "maxlon": -74.0079986 + }, + "nodes": [ + 12161232207, + 2376384482, + 9143574654, + 12161232208, + 9143574653 + ], + "geometry": [ + { "lat": 40.7485004, "lon": -74.0080309 }, + { "lat": 40.7484757, "lon": -74.0080180 }, + { "lat": 40.7484405, "lon": -74.0080058 }, + { "lat": 40.7484056, "lon": -74.0080011 }, + { "lat": 40.7483646, "lon": -74.0079986 } + ], + "tags": { + "destination": "Chelsea Piers", + "highway": "service", + "lanes": "1", + "maxspeed": "25 mph", + "oneway": "yes", + "service": "driveway", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1313892244, + "bounds": { + "minlat": 40.7480006, + "minlon": -74.0074153, + "maxlat": 40.7482041, + "maxlon": -74.0069328 + }, + "nodes": [ + 12161232248, + 13716234855, + 12161232246, + 12161232247, + 4872623861, + 42422258 + ], + "geometry": [ + { "lat": 40.7480006, "lon": -74.0069328 }, + { "lat": 40.7480212, "lon": -74.0069815 }, + { "lat": 40.7481477, "lon": -74.0072812 }, + { "lat": 40.7481630, "lon": -74.0073173 }, + { "lat": 40.7481784, "lon": -74.0073534 }, + { "lat": 40.7482041, "lon": -74.0074153 } + ], + "tags": { + "alt_name": "West 22 Street", + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 22nd Street", + "name:ru": "Западная 22-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1313892247, + "bounds": { + "minlat": 40.7457962, + "minlon": -74.0084882, + "maxlat": 40.7460192, + "maxlon": -74.0084134 + }, + "nodes": [ + 12096650285, + 12161232291, + 12096650291 + ], + "geometry": [ + { "lat": 40.7460192, "lon": -74.0084134 }, + { "lat": 40.7458865, "lon": -74.0084695 }, + { "lat": 40.7457962, "lon": -74.0084882 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "service", + "lanes": "3", + "maxspeed": "5 mph", + "oneway": "yes", + "service": "driveway", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1313892250, + "bounds": { + "minlat": 40.7443329, + "minlon": -74.0085161, + "maxlat": 40.7444331, + "maxlon": -74.0084979 + }, + "nodes": [ + 4207863000, + 8288270009 + ], + "geometry": [ + { "lat": 40.7444331, "lon": -74.0084979 }, + { "lat": 40.7443329, "lon": -74.0085161 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "no|not_left|yes|not_right|no|no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "6", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left||||right|right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1313984535, + "bounds": { + "minlat": 40.7439169, + "minlon": -74.0087999, + "maxlat": 40.7439619, + "maxlon": -74.0087900 + }, + "nodes": [ + 8288270011, + 12161232330, + 12161932041 + ], + "geometry": [ + { "lat": 40.7439619, "lon": -74.0087900 }, + { "lat": 40.7439404, "lon": -74.0087954 }, + { "lat": 40.7439169, "lon": -74.0087999 } + ], + "tags": { + "destination": "Pier 57", + "highway": "service", + "lane_markings": "yes", + "lanes": "2", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1313984539, + "bounds": { + "minlat": 40.7375667, + "minlon": -74.0098067, + "maxlat": 40.7375670, + "maxlon": -74.0096650 + }, + "nodes": [ + 42439099, + 3874650207 + ], + "geometry": [ + { "lat": 40.7375670, "lon": -74.0098067 }, + { "lat": 40.7375667, "lon": -74.0096650 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 12th Street", + "name:ru": "Западная 12-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1313984547, + "bounds": { + "minlat": 40.7305563, + "minlon": -74.0104166, + "maxlat": 40.7305673, + "maxlon": -74.0102789 + }, + "nodes": [ + 4872777160, + 12161966240, + 42453442 + ], + "geometry": [ + { "lat": 40.7305563, "lon": -74.0102789 }, + { "lat": 40.7305618, "lon": -74.0103456 }, + { "lat": 40.7305673, "lon": -74.0104166 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Leroy Street", + "name:etymology:wikidata": "Q121745745", + "name:ko": "르로이 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1314038686, + "bounds": { + "minlat": 40.7381490, + "minlon": -74.0096022, + "maxlat": 40.7381542, + "maxlon": -74.0082527 + }, + "nodes": [ + 11159805949, + 42453477 + ], + "geometry": [ + { "lat": 40.7381490, "lon": -74.0082527 }, + { "lat": 40.7381542, "lon": -74.0096022 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Jane Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1314038687, + "bounds": { + "minlat": 40.7381485, + "minlon": -74.0082527, + "maxlat": 40.7381490, + "maxlon": -74.0080532 + }, + "nodes": [ + 11159805948, + 42454758, + 11159805949 + ], + "geometry": [ + { "lat": 40.7381485, "lon": -74.0080532 }, + { "lat": 40.7381488, "lon": -74.0081711 }, + { "lat": 40.7381490, "lon": -74.0082527 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Jane Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314038688, + "bounds": { + "minlat": 40.7393829, + "minlon": -74.0080522, + "maxlat": 40.7393918, + "maxlon": -74.0079514 + }, + "nodes": [ + 8262308733, + 42455357 + ], + "geometry": [ + { "lat": 40.7393918, "lon": -74.0079514 }, + { "lat": 40.7393829, "lon": -74.0080522 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (We-Fr 14:00-22:00; Sa-Su 12:00-22:00))", + "name": "Gansevoort Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314038689, + "bounds": { + "minlat": 40.7375563, + "minlon": -74.0081056, + "maxlat": 40.7375613, + "maxlon": -74.0065669 + }, + "nodes": [ + 8692206122, + 12162436997, + 9808616779 + ], + "geometry": [ + { "lat": 40.7375613, "lon": -74.0081056 }, + { "lat": 40.7375563, "lon": -74.0065914 }, + { "lat": 40.7375563, "lon": -74.0065669 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 12th Street", + "name:ru": "Западная 12-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1314038690, + "bounds": { + "minlat": 40.7375611, + "minlon": -74.0082972, + "maxlat": 40.7375614, + "maxlon": -74.0081056 + }, + "nodes": [ + 8692206123, + 42439096, + 8692206122 + ], + "geometry": [ + { "lat": 40.7375611, "lon": -74.0082972 }, + { "lat": 40.7375614, "lon": -74.0082235 }, + { "lat": 40.7375613, "lon": -74.0081056 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "West 12th Street", + "name:ru": "Западная 12-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314038703, + "bounds": { + "minlat": 40.7348144, + "minlon": -74.0083461, + "maxlat": 40.7349953, + "maxlon": -74.0070884 + }, + "nodes": [ + 8307642158, + 12162483595, + 10168907022 + ], + "geometry": [ + { "lat": 40.7348144, "lon": -74.0083461 }, + { "lat": 40.7349933, "lon": -74.0071017 }, + { "lat": 40.7349953, "lon": -74.0070884 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Perry Street", + "name:etymology:wikidata": "Q580513", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1314038704, + "bounds": { + "minlat": 40.7347874, + "minlon": -74.0085290, + "maxlat": 40.7348144, + "maxlon": -74.0083461 + }, + "nodes": [ + 8307642161, + 42457426, + 8307642158 + ], + "geometry": [ + { "lat": 40.7347874, "lon": -74.0085290 }, + { "lat": 40.7347984, "lon": -74.0084507 }, + { "lat": 40.7348144, "lon": -74.0083461 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Perry Street", + "name:etymology:wikidata": "Q580513", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314038715, + "bounds": { + "minlat": 40.7402675, + "minlon": -74.0079432, + "maxlat": 40.7403058, + "maxlon": -74.0078497 + }, + "nodes": [ + 42431154, + 8262308727 + ], + "geometry": [ + { "lat": 40.7403058, "lon": -74.0079432 }, + { "lat": 40.7402675, "lon": -74.0078497 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (We-Fr 14:00-22:00; Sa-Su 12:00-22:00))", + "name": "Little West 12th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314038721, + "bounds": { + "minlat": 40.7409542, + "minlon": -74.0075681, + "maxlat": 40.7409858, + "maxlon": -74.0074898 + }, + "nodes": [ + 42429412, + 8262308724 + ], + "geometry": [ + { "lat": 40.7409542, "lon": -74.0074898 }, + { "lat": 40.7409858, "lon": -74.0075681 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxheight": "default", + "maxspeed": "25 mph", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "name_1": "West 13 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314038722, + "bounds": { + "minlat": 40.7409125, + "minlon": -74.0074898, + "maxlat": 40.7409542, + "maxlon": -74.0073881 + }, + "nodes": [ + 8262308721, + 42429412 + ], + "geometry": [ + { "lat": 40.7409125, "lon": -74.0073881 }, + { "lat": 40.7409542, "lon": -74.0074898 } + ], + "tags": { + "bicycle": "designated", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (We-Fr 14:00-22:00; Sa-Su 12:00-22:00))", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "name_1": "West 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314038729, + "bounds": { + "minlat": 40.7420905, + "minlon": -74.0081824, + "maxlat": 40.7421447, + "maxlon": -74.0080506 + }, + "nodes": [ + 12162436961, + 3874650225, + 42454328 + ], + "geometry": [ + { "lat": 40.7420905, "lon": -74.0080506 }, + { "lat": 40.7421037, "lon": -74.0080814 }, + { "lat": 40.7421447, "lon": -74.0081824 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "West 14th Street", + "name:ru": "Западная 14-я стрит", + "name_1": "West 14 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q191013", + "wikipedia": "en:14th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1314038730, + "bounds": { + "minlat": 40.7400297, + "minlon": -74.0054088, + "maxlat": 40.7400783, + "maxlon": -74.0053043 + }, + "nodes": [ + 8262308683, + 42429394 + ], + "geometry": [ + { "lat": 40.7400783, "lon": -74.0054088 }, + { "lat": 40.7400297, "lon": -74.0053043 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lane_markings": "no", + "lcn": "yes", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (We-Fr 14:00-22:00; Sa-Su 12:00-22:00))", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "name_1": "West 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314038739, + "bounds": { + "minlat": 40.7392808, + "minlon": -74.0064406, + "maxlat": 40.7394038, + "maxlon": -74.0064393 + }, + "nodes": [ + 12162436975, + 12162436976, + 8262308623, + 12162436970 + ], + "geometry": [ + { "lat": 40.7392808, "lon": -74.0064405 }, + { "lat": 40.7393188, "lon": -74.0064398 }, + { "lat": 40.7393470, "lon": -74.0064393 }, + { "lat": 40.7394038, "lon": -74.0064406 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1314038747, + "bounds": { + "minlat": 40.7381397, + "minlon": -74.0063944, + "maxlat": 40.7381518, + "maxlon": -74.0056100 + }, + "nodes": [ + 42436427, + 8307463793, + 10168546903 + ], + "geometry": [ + { "lat": 40.7381397, "lon": -74.0056100 }, + { "lat": 40.7381518, "lon": -74.0057162 }, + { "lat": 40.7381509, "lon": -74.0063944 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Jane Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1314038748, + "bounds": { + "minlat": 40.7381509, + "minlon": -74.0065583, + "maxlat": 40.7381517, + "maxlon": -74.0063944 + }, + "nodes": [ + 10168546903, + 42436155, + 10168546901 + ], + "geometry": [ + { "lat": 40.7381509, "lon": -74.0063944 }, + { "lat": 40.7381513, "lon": -74.0064657 }, + { "lat": 40.7381517, "lon": -74.0065583 } + ], + "tags": { + "hgv": "destination", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Jane Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314046608, + "bounds": { + "minlat": 40.7364517, + "minlon": -74.0065300, + "maxlat": 40.7365330, + "maxlon": -74.0058168 + }, + "nodes": [ + 11608874763, + 6210448845, + 6210448843, + 42436411 + ], + "geometry": [ + { "lat": 40.7364517, "lon": -74.0065300 }, + { "lat": 40.7365282, "lon": -74.0059734 }, + { "lat": 40.7365330, "lon": -74.0059214 }, + { "lat": 40.7365313, "lon": -74.0058168 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Bank Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q4855978", + "wikipedia": "en:Bank Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1314046609, + "bounds": { + "minlat": 40.7364239, + "minlon": -74.0067120, + "maxlat": 40.7364517, + "maxlon": -74.0065300 + }, + "nodes": [ + 11608874766, + 42436146, + 11608874763 + ], + "geometry": [ + { "lat": 40.7364239, "lon": -74.0067120 }, + { "lat": 40.7364388, "lon": -74.0066141 }, + { "lat": 40.7364517, "lon": -74.0065300 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Bank Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4855978", + "wikipedia": "en:Bank Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1314046615, + "bounds": { + "minlat": 40.7317973, + "minlon": -74.0086965, + "maxlat": 40.7318696, + "maxlon": -74.0079215 + }, + "nodes": [ + 8288270264, + 12162494529, + 8288270266 + ], + "geometry": [ + { "lat": 40.7317973, "lon": -74.0079215 }, + { "lat": 40.7318666, "lon": -74.0086760 }, + { "lat": 40.7318696, "lon": -74.0086965 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Barrow Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1314046616, + "bounds": { + "minlat": 40.7317831, + "minlon": -74.0079215, + "maxlat": 40.7317973, + "maxlon": -74.0077059 + }, + "nodes": [ + 8288270261, + 42436126, + 8288270264 + ], + "geometry": [ + { "lat": 40.7317831, "lon": -74.0077059 }, + { "lat": 40.7317892, "lon": -74.0078047 }, + { "lat": 40.7317973, "lon": -74.0079215 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Barrow Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314046622, + "bounds": { + "minlat": 40.7304488, + "minlon": -74.0102789, + "maxlat": 40.7305563, + "maxlon": -74.0091706 + }, + "nodes": [ + 8214320064, + 10919435183, + 13681042782, + 4599130009, + 4872777160 + ], + "geometry": [ + { "lat": 40.7304488, "lon": -74.0091706 }, + { "lat": 40.7304869, "lon": -74.0095634 }, + { "lat": 40.7305181, "lon": -74.0098854 }, + { "lat": 40.7305523, "lon": -74.0102377 }, + { "lat": 40.7305563, "lon": -74.0102789 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Leroy Street", + "name:etymology:wikidata": "Q121745745", + "name:ko": "르로이 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1314046630, + "bounds": { + "minlat": 40.7304304, + "minlon": -74.0091706, + "maxlat": 40.7304488, + "maxlon": -74.0089724 + }, + "nodes": [ + 8214320061, + 42456986, + 8214320064 + ], + "geometry": [ + { "lat": 40.7304304, "lon": -74.0089724 }, + { "lat": 40.7304414, "lon": -74.0090905 }, + { "lat": 40.7304488, "lon": -74.0091706 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Leroy Street", + "name:etymology:wikidata": "Q121745745", + "name:ko": "르로이 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314046631, + "bounds": { + "minlat": 40.7303688, + "minlon": -74.0089724, + "maxlat": 40.7304304, + "maxlon": -74.0083084 + }, + "nodes": [ + 8214320068, + 12162494539, + 8214320061 + ], + "geometry": [ + { "lat": 40.7303688, "lon": -74.0083084 }, + { "lat": 40.7304289, "lon": -74.0089563 }, + { "lat": 40.7304304, "lon": -74.0089724 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Leroy Street", + "name:etymology:wikidata": "Q121745745", + "name:ko": "르로이 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1314046633, + "bounds": { + "minlat": 40.7303498, + "minlon": -74.0083084, + "maxlat": 40.7303688, + "maxlon": -74.0081020 + }, + "nodes": [ + 8214320065, + 42436119, + 8214320068 + ], + "geometry": [ + { "lat": 40.7303498, "lon": -74.0081020 }, + { "lat": 40.7303583, "lon": -74.0081983 }, + { "lat": 40.7303688, "lon": -74.0083084 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Leroy Street", + "name:etymology:wikidata": "Q121745745", + "name:ko": "르로이 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314051806, + "bounds": { + "minlat": 40.7296429, + "minlon": -74.0091164, + "maxlat": 40.7297034, + "maxlon": -74.0085055 + }, + "nodes": [ + 8214320071, + 12162502078, + 8214320080 + ], + "geometry": [ + { "lat": 40.7297034, "lon": -74.0091164 }, + { "lat": 40.7296465, "lon": -74.0085420 }, + { "lat": 40.7296429, "lon": -74.0085055 } + ], + "tags": { + "bicycle": "designated", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clarkson Street", + "name:etymology:wikidata": "Q6790308", + "name:ko": "클락슨 스트리트", + "name:ru": "Кларксон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1314051807, + "bounds": { + "minlat": 40.7297034, + "minlon": -74.0093046, + "maxlat": 40.7297212, + "maxlon": -74.0091164 + }, + "nodes": [ + 8214320074, + 42440527, + 8214320071 + ], + "geometry": [ + { "lat": 40.7297212, "lon": -74.0093046 }, + { "lat": 40.7297123, "lon": -74.0092108 }, + { "lat": 40.7297034, "lon": -74.0091164 } + ], + "tags": { + "bicycle": "designated", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clarkson Street", + "name:etymology:wikidata": "Q6790308", + "name:ko": "클락슨 스트리트", + "name:ru": "Кларксон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314051808, + "bounds": { + "minlat": 40.7296386, + "minlon": -74.0085055, + "maxlat": 40.7296429, + "maxlon": -74.0083973 + }, + "nodes": [ + 8214320080, + 42436115 + ], + "geometry": [ + { "lat": 40.7296429, "lon": -74.0085055 }, + { "lat": 40.7296386, "lon": -74.0083973 } + ], + "tags": { + "bicycle": "designated", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clarkson Street", + "name:etymology:wikidata": "Q6790308", + "name:ko": "클락슨 스트리트", + "name:ru": "Кларксон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314051814, + "bounds": { + "minlat": 40.7285287, + "minlon": -74.0086642, + "maxlat": 40.7289193, + "maxlon": -74.0085913 + }, + "nodes": [ + 12162502081, + 12162502080, + 8307641907, + 42436109 + ], + "geometry": [ + { "lat": 40.7285287, "lon": -74.0086642 }, + { "lat": 40.7288015, "lon": -74.0086158 }, + { "lat": 40.7288475, "lon": -74.0086071 }, + { "lat": 40.7289193, "lon": -74.0085913 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1314051815, + "bounds": { + "minlat": 40.7281978, + "minlon": -74.0087206, + "maxlat": 40.7285287, + "maxlon": -74.0086642 + }, + "nodes": [ + 42436100, + 12162502081 + ], + "geometry": [ + { "lat": 40.7281978, "lon": -74.0087206 }, + { "lat": 40.7285287, "lon": -74.0086642 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1314051816, + "bounds": { + "minlat": 40.7289826, + "minlon": -74.0099129, + "maxlat": 40.7290253, + "maxlon": -74.0093445 + }, + "nodes": [ + 42448568, + 8307641898, + 12162502084 + ], + "geometry": [ + { "lat": 40.7289826, "lon": -74.0093445 }, + { "lat": 40.7289840, "lon": -74.0094461 }, + { "lat": 40.7290253, "lon": -74.0099129 } + ], + "tags": { + "bicycle:lanes": "||designated|", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no|yes", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1314051836, + "bounds": { + "minlat": 40.7247918, + "minlon": -74.0101224, + "maxlat": 40.7250648, + "maxlon": -74.0100706 + }, + "nodes": [ + 12162542955, + 12162542952, + 4872871134, + 42440873 + ], + "geometry": [ + { "lat": 40.7247918, "lon": -74.0101224 }, + { "lat": 40.7249359, "lon": -74.0100971 }, + { "lat": 40.7249806, "lon": -74.0100882 }, + { "lat": 40.7250648, "lon": -74.0100706 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Washington Street", + "name:etymology:wikidata": "Q23", + "name:ko": "워싱턴 스트리트", + "name:ru": "Вашингтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right", + "wikidata": "Q4105528", + "wikipedia": "en:Washington Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1314060089, + "bounds": { + "minlat": 40.7811556, + "minlon": -73.9871997, + "maxlat": 40.7815062, + "maxlon": -73.9868476 + }, + "nodes": [ + 61254247, + 12162590071, + 7910096919, + 7910096914, + 10160790469 + ], + "geometry": [ + { "lat": 40.7811556, "lon": -73.9871997 }, + { "lat": 40.7812765, "lon": -73.9870763 }, + { "lat": 40.7813600, "lon": -73.9869919 }, + { "lat": 40.7814433, "lon": -73.9869096 }, + { "lat": 40.7815062, "lon": -73.9868476 } + ], + "tags": { + "alt_name": "12th Avenue", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "50 mph", + "name": "West Side Highway", + "name:ru": "Вест-Сайд-Хайвей", + "not:name": "Henry Hudson Parkway", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "source:name": "https://en.wikipedia.org/wiki/West_Side_Highway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314069239, + "bounds": { + "minlat": 40.7284164, + "minlon": -73.9277795, + "maxlat": 40.7310916, + "maxlon": -73.9256700 + }, + "nodes": [ + 6841164675, + 9194902711, + 12162675411, + 476025209, + 476025210, + 12162675412, + 7573166326, + 476025211, + 12162675413, + 9194902710, + 12162675414, + 9194902709, + 476025212, + 12162675415, + 9194902708, + 5978376417 + ], + "geometry": [ + { "lat": 40.7284164, "lon": -73.9277795 }, + { "lat": 40.7285235, "lon": -73.9276674 }, + { "lat": 40.7286383, "lon": -73.9275443 }, + { "lat": 40.7287361, "lon": -73.9274443 }, + { "lat": 40.7288397, "lon": -73.9273416 }, + { "lat": 40.7289662, "lon": -73.9272216 }, + { "lat": 40.7290843, "lon": -73.9271150 }, + { "lat": 40.7292190, "lon": -73.9270018 }, + { "lat": 40.7293271, "lon": -73.9269137 }, + { "lat": 40.7294378, "lon": -73.9268256 }, + { "lat": 40.7295593, "lon": -73.9267288 }, + { "lat": 40.7297008, "lon": -73.9266195 }, + { "lat": 40.7298207, "lon": -73.9265322 }, + { "lat": 40.7299276, "lon": -73.9264565 }, + { "lat": 40.7300281, "lon": -73.9263855 }, + { "lat": 40.7310916, "lon": -73.9256700 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "Queens;Bronx|Queens;Bronx;Long Island Expressway;Midtown Tunnel;Eastern Long Island;48th Street|Long Island Expressway;Midtown Tunnel;Eastern Long Island;48th Street", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "turn:lanes": "through|through;slight_right|slight_right", + "wikidata": "Q6433023", + "wikipedia": "en:Kosciuszko Bridge" + } +}, +{ + "type": "way", + "id": 1314069240, + "bounds": { + "minlat": 40.7254593, + "minlon": -73.9316148, + "maxlat": 40.7263638, + "maxlon": -73.9301707 + }, + "nodes": [ + 6760344195, + 12162652782, + 9194902715, + 476025205, + 12162652781, + 9194902714, + 12162652780, + 476025206, + 12162652779, + 3625774126, + 11872982374, + 6219006690, + 9194902712 + ], + "geometry": [ + { "lat": 40.7254593, "lon": -73.9316148 }, + { "lat": 40.7255124, "lon": -73.9314995 }, + { "lat": 40.7255874, "lon": -73.9313527 }, + { "lat": 40.7256585, "lon": -73.9312197 }, + { "lat": 40.7257356, "lon": -73.9310798 }, + { "lat": 40.7258076, "lon": -73.9309583 }, + { "lat": 40.7258779, "lon": -73.9308403 }, + { "lat": 40.7259544, "lon": -73.9307219 }, + { "lat": 40.7260266, "lon": -73.9306186 }, + { "lat": 40.7261053, "lon": -73.9305059 }, + { "lat": 40.7261810, "lon": -73.9304030 }, + { "lat": 40.7262586, "lon": -73.9303019 }, + { "lat": 40.7263638, "lon": -73.9301707 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "destination:lanes": "Queens;Bronx|Queens;Bronx;Long Island Expressway;Midtown Tunnel;Eastern Long Island;48th Street|Long Island Expressway;Midtown Tunnel;Eastern Long Island;48th Street", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "turn:lanes": "through|through;slight_right|slight_right", + "wikidata": "Q6433023", + "wikipedia": "en:Kosciuszko Bridge" + } +}, +{ + "type": "way", + "id": 1314069241, + "bounds": { + "minlat": 40.7250034, + "minlon": -73.9334125, + "maxlat": 40.7264257, + "maxlon": -73.9303257 + }, + "nodes": [ + 9194902736, + 12162652791, + 12162652792, + 9194902735, + 12162652793, + 9194902734, + 12162652794, + 9194902733, + 12162652795, + 9194902726, + 12162652796, + 9194902725, + 12162652797, + 9194902724, + 12162652798, + 9194902723, + 12162652799, + 9194902722, + 12162652800, + 9194902721, + 12162675401, + 9194902720, + 11872982371, + 9194902719, + 12162675402, + 9194902718, + 12162675403 + ], + "geometry": [ + { "lat": 40.7250034, "lon": -73.9334125 }, + { "lat": 40.7250353, "lon": -73.9332747 }, + { "lat": 40.7250698, "lon": -73.9331365 }, + { "lat": 40.7251042, "lon": -73.9330026 }, + { "lat": 40.7251393, "lon": -73.9328766 }, + { "lat": 40.7251776, "lon": -73.9327403 }, + { "lat": 40.7252213, "lon": -73.9325975 }, + { "lat": 40.7252626, "lon": -73.9324725 }, + { "lat": 40.7253060, "lon": -73.9323391 }, + { "lat": 40.7253514, "lon": -73.9322158 }, + { "lat": 40.7253979, "lon": -73.9320921 }, + { "lat": 40.7254485, "lon": -73.9319726 }, + { "lat": 40.7255094, "lon": -73.9318312 }, + { "lat": 40.7255643, "lon": -73.9317078 }, + { "lat": 40.7256165, "lon": -73.9315950 }, + { "lat": 40.7256737, "lon": -73.9314795 }, + { "lat": 40.7257372, "lon": -73.9313574 }, + { "lat": 40.7257928, "lon": -73.9312578 }, + { "lat": 40.7258575, "lon": -73.9311448 }, + { "lat": 40.7259295, "lon": -73.9310227 }, + { "lat": 40.7259941, "lon": -73.9309149 }, + { "lat": 40.7260570, "lon": -73.9308181 }, + { "lat": 40.7261364, "lon": -73.9307051 }, + { "lat": 40.7262106, "lon": -73.9305998 }, + { "lat": 40.7262908, "lon": -73.9304919 }, + { "lat": 40.7263592, "lon": -73.9304030 }, + { "lat": 40.7264257, "lon": -73.9303257 } + ], + "tags": { + "bridge": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "wikidata": "Q6433023", + "wikipedia": "en:Kosciuszko Bridge" + } +}, +{ + "type": "way", + "id": 1314069242, + "bounds": { + "minlat": 40.7264257, + "minlon": -73.9303257, + "maxlat": 40.7285023, + "maxlon": -73.9279166 + }, + "nodes": [ + 12162675403, + 9194902717, + 12162675404, + 9194902716, + 11872982429, + 8484223198 + ], + "geometry": [ + { "lat": 40.7264257, "lon": -73.9303257 }, + { "lat": 40.7265150, "lon": -73.9302134 }, + { "lat": 40.7265941, "lon": -73.9301242 }, + { "lat": 40.7266643, "lon": -73.9300432 }, + { "lat": 40.7267703, "lon": -73.9299170 }, + { "lat": 40.7285023, "lon": -73.9279166 } + ], + "tags": { + "bridge": "yes", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt", + "wikidata": "Q6433023", + "wikipedia": "en:Kosciuszko Bridge" + } +}, +{ + "type": "way", + "id": 1314076594, + "bounds": { + "minlat": 40.8174808, + "minlon": -73.9279113, + "maxlat": 40.8185896, + "maxlon": -73.9273865 + }, + "nodes": [ + 42741436, + 9903127451, + 12162704262 + ], + "geometry": [ + { "lat": 40.8185896, "lon": -73.9273865 }, + { "lat": 40.8184867, "lon": -73.9274346 }, + { "lat": 40.8174808, "lon": -73.9279113 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076595, + "bounds": { + "minlat": 40.8165672, + "minlon": -73.9282979, + "maxlat": 40.8174808, + "maxlon": -73.9279113 + }, + "nodes": [ + 12162704262, + 12162704261, + 2409012289, + 12162704260, + 2409012291, + 12162740207, + 12162704300, + 12162740204, + 42741440 + ], + "geometry": [ + { "lat": 40.8174808, "lon": -73.9279113 }, + { "lat": 40.8173027, "lon": -73.9279935 }, + { "lat": 40.8172150, "lon": -73.9280320 }, + { "lat": 40.8171079, "lon": -73.9280784 }, + { "lat": 40.8170026, "lon": -73.9281235 }, + { "lat": 40.8168805, "lon": -73.9281735 }, + { "lat": 40.8166593, "lon": -73.9282610 }, + { "lat": 40.8166343, "lon": -73.9282711 }, + { "lat": 40.8165672, "lon": -73.9282979 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "left|through|", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076596, + "bounds": { + "minlat": 40.8149072, + "minlon": -73.9289370, + "maxlat": 40.8152589, + "maxlon": -73.9288020 + }, + "nodes": [ + 12162704263, + 12162704265, + 12162704291, + 42741445 + ], + "geometry": [ + { "lat": 40.8152589, "lon": -73.9288020 }, + { "lat": 40.8150266, "lon": -73.9288914 }, + { "lat": 40.8149677, "lon": -73.9289135 }, + { "lat": 40.8149072, "lon": -73.9289370 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "through|through|right", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076599, + "bounds": { + "minlat": 40.8133843, + "minlon": -73.9302993, + "maxlat": 40.8137872, + "maxlon": -73.9299131 + }, + "nodes": [ + 12162704275, + 12162704276, + 9903106236, + 6096486615 + ], + "geometry": [ + { "lat": 40.8137872, "lon": -73.9299131 }, + { "lat": 40.8134821, "lon": -73.9302066 }, + { "lat": 40.8134415, "lon": -73.9302456 }, + { "lat": 40.8133843, "lon": -73.9302993 } + ], + "tags": { + "destination:ref": "To I 87 North", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076602, + "bounds": { + "minlat": 40.8148680, + "minlon": -73.9287848, + "maxlat": 40.8152095, + "maxlon": -73.9286533 + }, + "nodes": [ + 2408974720, + 12162704292, + 12162704294 + ], + "geometry": [ + { "lat": 40.8148680, "lon": -73.9287848 }, + { "lat": 40.8149327, "lon": -73.9287595 }, + { "lat": 40.8152095, "lon": -73.9286533 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076603, + "bounds": { + "minlat": 40.8152095, + "minlon": -73.9286533, + "maxlat": 40.8158308, + "maxlon": -73.9284106 + }, + "nodes": [ + 12162704294, + 12162704295 + ], + "geometry": [ + { "lat": 40.8152095, "lon": -73.9286533 }, + { "lat": 40.8158308, "lon": -73.9284106 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076604, + "bounds": { + "minlat": 40.8158308, + "minlon": -73.9284106, + "maxlat": 40.8165261, + "maxlon": -73.9281396 + }, + "nodes": [ + 12162704295, + 12162704296, + 12162704297, + 2408448893 + ], + "geometry": [ + { "lat": 40.8158308, "lon": -73.9284106 }, + { "lat": 40.8164103, "lon": -73.9281850 }, + { "lat": 40.8164528, "lon": -73.9281687 }, + { "lat": 40.8165261, "lon": -73.9281396 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "left|through|", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076605, + "bounds": { + "minlat": 40.8202673, + "minlon": -73.9265926, + "maxlat": 40.8204232, + "maxlon": -73.9265149 + }, + "nodes": [ + 1213918130, + 12162740231 + ], + "geometry": [ + { "lat": 40.8204232, "lon": -73.9265149 }, + { "lat": 40.8202673, "lon": -73.9265926 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076606, + "bounds": { + "minlat": 40.8200259, + "minlon": -73.9265374, + "maxlat": 40.8201459, + "maxlon": -73.9264800 + }, + "nodes": [ + 2409018665, + 10133486276, + 12162740232 + ], + "geometry": [ + { "lat": 40.8200259, "lon": -73.9265374 }, + { "lat": 40.8200998, "lon": -73.9265039 }, + { "lat": 40.8201459, "lon": -73.9264800 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076607, + "bounds": { + "minlat": 40.8207382, + "minlon": -73.9263344, + "maxlat": 40.8208580, + "maxlon": -73.9262203 + }, + "nodes": [ + 2409018637, + 12162740235, + 42741428 + ], + "geometry": [ + { "lat": 40.8208580, "lon": -73.9262203 }, + { "lat": 40.8207975, "lon": -73.9262805 }, + { "lat": 40.8207382, "lon": -73.9263344 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076608, + "bounds": { + "minlat": 40.8206293, + "minlon": -73.9262011, + "maxlat": 40.8207401, + "maxlon": -73.9261002 + }, + "nodes": [ + 2408448892, + 2409018626, + 12162740237, + 12162740238 + ], + "geometry": [ + { "lat": 40.8206293, "lon": -73.9262011 }, + { "lat": 40.8206773, "lon": -73.9261599 }, + { "lat": 40.8207154, "lon": -73.9261250 }, + { "lat": 40.8207401, "lon": -73.9261002 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076610, + "bounds": { + "minlat": 40.8211610, + "minlon": -73.9256737, + "maxlat": 40.8218279, + "maxlon": -73.9251395 + }, + "nodes": [ + 2408448891, + 10133486264, + 12162740251, + 12162740252, + 13697549119, + 13547277468, + 13697549116, + 2409024144 + ], + "geometry": [ + { "lat": 40.8211610, "lon": -73.9256737 }, + { "lat": 40.8212339, "lon": -73.9256015 }, + { "lat": 40.8213285, "lon": -73.9255149 }, + { "lat": 40.8214077, "lon": -73.9254462 }, + { "lat": 40.8215105, "lon": -73.9253674 }, + { "lat": 40.8216639, "lon": -73.9252497 }, + { "lat": 40.8217868, "lon": -73.9251671 }, + { "lat": 40.8218279, "lon": -73.9251395 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "turn:lanes": "||merge_to_left", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076611, + "bounds": { + "minlat": 40.8226145, + "minlon": -73.9247057, + "maxlat": 40.8230695, + "maxlon": -73.9245265 + }, + "nodes": [ + 2409024160, + 6224283286, + 12162740257, + 12162740258, + 2409024137 + ], + "geometry": [ + { "lat": 40.8226145, "lon": -73.9247057 }, + { "lat": 40.8227273, "lon": -73.9246585 }, + { "lat": 40.8227796, "lon": -73.9246376 }, + { "lat": 40.8229205, "lon": -73.9245820 }, + { "lat": 40.8230695, "lon": -73.9245265 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314076612, + "bounds": { + "minlat": 40.8231056, + "minlon": -73.9246644, + "maxlat": 40.8235044, + "maxlon": -73.9245299 + }, + "nodes": [ + 42741420, + 10133486229, + 2409024139 + ], + "geometry": [ + { "lat": 40.8235044, "lon": -73.9245299 }, + { "lat": 40.8234449, "lon": -73.9245515 }, + { "lat": 40.8231056, "lon": -73.9246644 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314189924, + "bounds": { + "minlat": 40.8357160, + "minlon": -73.9225132, + "maxlat": 40.8359713, + "maxlon": -73.9223327 + }, + "nodes": [ + 2822090462, + 2912071076, + 12163757002, + 2912071077 + ], + "geometry": [ + { "lat": 40.8357160, "lon": -73.9225132 }, + { "lat": 40.8358115, "lon": -73.9224301 }, + { "lat": 40.8358323, "lon": -73.9224169 }, + { "lat": 40.8359713, "lon": -73.9223327 } + ], + "tags": { + "highway": "pedestrian", + "name": "Cromwell Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cromwell", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1314425139, + "bounds": { + "minlat": 40.7522470, + "minlon": -73.9673956, + "maxlat": 40.7532753, + "maxlon": -73.9666622 + }, + "nodes": [ + 6133333100, + 9140864972, + 9140864971, + 12186394504, + 12186394505, + 5852272391 + ], + "geometry": [ + { "lat": 40.7522470, "lon": -73.9673956 }, + { "lat": 40.7526057, "lon": -73.9671320 }, + { "lat": 40.7527764, "lon": -73.9669992 }, + { "lat": 40.7531735, "lon": -73.9667185 }, + { "lat": 40.7532154, "lon": -73.9666948 }, + { "lat": 40.7532753, "lon": -73.9666622 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "1st Avenue Tunnel", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn": "through" + } +}, +{ + "type": "way", + "id": 1314425140, + "bounds": { + "minlat": 40.7527303, + "minlon": -73.9668167, + "maxlat": 40.7532346, + "maxlon": -73.9665625 + }, + "nodes": [ + 3814476692, + 9140864961, + 9140864962, + 10998208756, + 3831856762, + 595105499 + ], + "geometry": [ + { "lat": 40.7527303, "lon": -73.9668167 }, + { "lat": 40.7530245, "lon": -73.9666658 }, + { "lat": 40.7531202, "lon": -73.9666076 }, + { "lat": 40.7531434, "lon": -73.9665950 }, + { "lat": 40.7531658, "lon": -73.9665864 }, + { "lat": 40.7532346, "lon": -73.9665625 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1314425141, + "bounds": { + "minlat": 40.7525326, + "minlon": -73.9662536, + "maxlat": 40.7529662, + "maxlon": -73.9652167 + }, + "nodes": [ + 3814476695, + 3814476690 + ], + "geometry": [ + { "lat": 40.7529662, "lon": -73.9662536 }, + { "lat": 40.7525326, "lon": -73.9652167 } + ], + "tags": { + "access": "permissive", + "highway": "service", + "lit": "yes", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1314586237, + "bounds": { + "minlat": 40.8210250, + "minlon": -73.9256737, + "maxlat": 40.8211610, + "maxlon": -73.9246129 + }, + "nodes": [ + 2408448891, + 12162740247, + 10133486269, + 12162740240, + 12162740246, + 12162740239, + 7557517339, + 13703596948, + 12162740277, + 12162740278, + 12162740279, + 42749741 + ], + "geometry": [ + { "lat": 40.8211610, "lon": -73.9256737 }, + { "lat": 40.8211349, "lon": -73.9255754 }, + { "lat": 40.8211193, "lon": -73.9254976 }, + { "lat": 40.8211090, "lon": -73.9254378 }, + { "lat": 40.8210955, "lon": -73.9253727 }, + { "lat": 40.8210820, "lon": -73.9252949 }, + { "lat": 40.8210691, "lon": -73.9252253 }, + { "lat": 40.8210594, "lon": -73.9251610 }, + { "lat": 40.8210521, "lon": -73.9251130 }, + { "lat": 40.8210413, "lon": -73.9249903 }, + { "lat": 40.8210326, "lon": -73.9248374 }, + { "lat": 40.8210250, "lon": -73.9246129 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 153rd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1314586238, + "bounds": { + "minlat": 40.8212251, + "minlon": -73.9258484, + "maxlat": 40.8213359, + "maxlon": -73.9257405 + }, + "nodes": [ + 2822074822, + 12162740250, + 10133486265, + 42741423 + ], + "geometry": [ + { "lat": 40.8213359, "lon": -73.9257405 }, + { "lat": 40.8213229, "lon": -73.9257532 }, + { "lat": 40.8212810, "lon": -73.9257940 }, + { "lat": 40.8212251, "lon": -73.9258484 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "turn:lanes": "left|through|through", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1314896796, + "bounds": { + "minlat": 40.7682450, + "minlon": -73.9070862, + "maxlat": 40.7682888, + "maxlon": -73.9070739 + }, + "nodes": [ + 12170312853, + 12170312854, + 597443959 + ], + "geometry": [ + { "lat": 40.7682888, "lon": -73.9070739 }, + { "lat": 40.7682669, "lon": -73.9070800 }, + { "lat": 40.7682450, "lon": -73.9070862 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "44th Street", + "oneway": "no", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 1314912076, + "bounds": { + "minlat": 40.7063540, + "minlon": -73.9319743, + "maxlat": 40.7066458, + "maxlon": -73.9318940 + }, + "nodes": [ + 12170460217, + 9959630913, + 42490311 + ], + "geometry": [ + { "lat": 40.7066458, "lon": -73.9319743 }, + { "lat": 40.7064163, "lon": -73.9319111 }, + { "lat": 40.7063540, "lon": -73.9318940 } + ], + "tags": { + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "residential", + "lanes": "1", + "name": "Morgan Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Morgan", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1315040951, + "bounds": { + "minlat": 40.7071861, + "minlon": -74.0157313, + "maxlat": 40.7073089, + "maxlon": -74.0156861 + }, + "nodes": [ + 3574648569, + 588593059 + ], + "geometry": [ + { "lat": 40.7071861, "lon": -74.0157313 }, + { "lat": 40.7073089, "lon": -74.0156861 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1315071202, + "bounds": { + "minlat": 40.7739115, + "minlon": -74.0194996, + "maxlat": 40.7743389, + "maxlon": -74.0193191 + }, + "nodes": [ + 12172291364, + 12172291365, + 12172291366 + ], + "geometry": [ + { "lat": 40.7743389, "lon": -74.0193191 }, + { "lat": 40.7741955, "lon": -74.0193716 }, + { "lat": 40.7739115, "lon": -74.0194996 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1315071203, + "bounds": { + "minlat": 40.7743389, + "minlon": -74.0195746, + "maxlat": 40.7744716, + "maxlon": -74.0193191 + }, + "nodes": [ + 12172291367, + 12172291368, + 12172291364 + ], + "geometry": [ + { "lat": 40.7744716, "lon": -74.0195746 }, + { "lat": 40.7743612, "lon": -74.0193242 }, + { "lat": 40.7743389, "lon": -74.0193191 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1315071204, + "bounds": { + "minlat": 40.7735496, + "minlon": -74.0196881, + "maxlat": 40.7739115, + "maxlon": -74.0194996 + }, + "nodes": [ + 12172291366, + 5462251720 + ], + "geometry": [ + { "lat": 40.7739115, "lon": -74.0194996 }, + { "lat": 40.7735496, "lon": -74.0196881 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1315408217, + "bounds": { + "minlat": 40.7187824, + "minlon": -73.9523974, + "maxlat": 40.7191680, + "maxlon": -73.9485320 + }, + "nodes": [ + 42491220, + 9789393742, + 13040621756, + 9789393726, + 42512058, + 9789393728, + 6228178117, + 42512055 + ], + "geometry": [ + { "lat": 40.7191680, "lon": -73.9485320 }, + { "lat": 40.7191588, "lon": -73.9486262 }, + { "lat": 40.7191129, "lon": -73.9490938 }, + { "lat": 40.7190148, "lon": -73.9500933 }, + { "lat": 40.7190059, "lon": -73.9501837 }, + { "lat": 40.7189968, "lon": -73.9502793 }, + { "lat": 40.7188038, "lon": -73.9522991 }, + { "lat": 40.7187824, "lon": -73.9523974 } + ], + "tags": { + "highway": "residential", + "name": "Bayard Street", + "name:etymology:wikidata": "Q508327", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1315408218, + "bounds": { + "minlat": 40.7216544, + "minlon": -73.9420040, + "maxlat": 40.7219460, + "maxlon": -73.9419561 + }, + "nodes": [ + 42466401, + 9873271301, + 6235394691, + 42476651 + ], + "geometry": [ + { "lat": 40.7219460, "lon": -73.9420040 }, + { "lat": 40.7218901, "lon": -73.9419948 }, + { "lat": 40.7217317, "lon": -73.9419663 }, + { "lat": 40.7216544, "lon": -73.9419561 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Monitor Street", + "name:etymology:wikidata": "Q857891", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1315432496, + "bounds": { + "minlat": 40.7699913, + "minlon": -73.9725775, + "maxlat": 40.7708035, + "maxlon": -73.9721393 + }, + "nodes": [ + 12175831283, + 12175831249, + 561950031, + 12175831248, + 12175831282, + 12175791849, + 12175831283 + ], + "geometry": [ + { "lat": 40.7708035, "lon": -73.9722764 }, + { "lat": 40.7700230, "lon": -73.9725775 }, + { "lat": 40.7700068, "lon": -73.9725054 }, + { "lat": 40.7699913, "lon": -73.9724334 }, + { "lat": 40.7707722, "lon": -73.9721393 }, + { "lat": 40.7707875, "lon": -73.9722062 }, + { "lat": 40.7708035, "lon": -73.9722764 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "name": "Literary Walk", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1315433301, + "bounds": { + "minlat": 40.7734684, + "minlon": -73.9713888, + "maxlat": 40.7736773, + "maxlon": -73.9713009 + }, + "nodes": [ + 4257949352, + 4257949375 + ], + "geometry": [ + { "lat": 40.7734684, "lon": -73.9713888 }, + { "lat": 40.7736773, "lon": -73.9713009 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "noname": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1315433304, + "bounds": { + "minlat": 40.7733767, + "minlon": -73.9709733, + "maxlat": 40.7735855, + "maxlon": -73.9708925 + }, + "nodes": [ + 4257949321, + 4257949366 + ], + "geometry": [ + { "lat": 40.7733767, "lon": -73.9709733 }, + { "lat": 40.7735855, "lon": -73.9708925 } + ], + "tags": { + "highway": "pedestrian", + "lit": "yes", + "noname": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1315845423, + "bounds": { + "minlat": 40.7310680, + "minlon": -73.9942321, + "maxlat": 40.7312848, + "maxlon": -73.9940524 + }, + "nodes": [ + 12179562744, + 12179562743, + 8309479182, + 42456211 + ], + "geometry": [ + { "lat": 40.7310680, "lon": -73.9942321 }, + { "lat": 40.7311967, "lon": -73.9941242 }, + { "lat": 40.7312346, "lon": -73.9940931 }, + { "lat": 40.7312848, "lon": -73.9940524 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Greene Street", + "name:etymology:wikidata": "Q366113", + "name:ko": "그린 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1315845427, + "bounds": { + "minlat": 40.7283561, + "minlon": -73.9907884, + "maxlat": 40.7286297, + "maxlon": -73.9905900 + }, + "nodes": [ + 12179562779, + 12179562780, + 8309479199, + 4015190382 + ], + "geometry": [ + { "lat": 40.7286297, "lon": -73.9905900 }, + { "lat": 40.7284601, "lon": -73.9907134 }, + { "lat": 40.7284193, "lon": -73.9907428 }, + { "lat": 40.7283561, "lon": -73.9907884 } + ], + "tags": { + "alt_name": "3rd Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "24/7", + "maxspeed": "25 mph", + "name": "Cooper Square", + "name:etymology:wikidata": "Q935291", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1315845428, + "bounds": { + "minlat": 40.7280638, + "minlon": -73.9910027, + "maxlat": 40.7283561, + "maxlon": -73.9907884 + }, + "nodes": [ + 4015190382, + 5784518526, + 12179562781, + 12179562782 + ], + "geometry": [ + { "lat": 40.7283561, "lon": -73.9907884 }, + { "lat": 40.7282902, "lon": -73.9908359 }, + { "lat": 40.7282680, "lon": -73.9908519 }, + { "lat": 40.7280638, "lon": -73.9910027 } + ], + "tags": { + "alt_name": "3rd Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "24/7", + "maxspeed": "25 mph", + "name": "Cooper Square", + "name:etymology:wikidata": "Q935291", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1315845433, + "bounds": { + "minlat": 40.7270874, + "minlon": -73.9915502, + "maxlat": 40.7273796, + "maxlon": -73.9914385 + }, + "nodes": [ + 12179562789, + 12187431456, + 8309479114, + 1773084402 + ], + "geometry": [ + { "lat": 40.7273796, "lon": -73.9914385 }, + { "lat": 40.7272023, "lon": -73.9915006 }, + { "lat": 40.7271531, "lon": -73.9915201 }, + { "lat": 40.7270874, "lon": -73.9915502 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "24/7", + "maxspeed": "25 mph", + "name": "Cooper Square", + "name:etymology:wikidata": "Q935291", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1315847472, + "bounds": { + "minlat": 40.7306005, + "minlon": -73.9924142, + "maxlat": 40.7317437, + "maxlon": -73.9914641 + }, + "nodes": [ + 42428480, + 12179524686, + 12179524685, + 8309479641, + 12179565602, + 12179565604, + 8309479636, + 42428476, + 8309479637, + 12179562747, + 8309479164, + 42428473 + ], + "geometry": [ + { "lat": 40.7317437, "lon": -73.9914641 }, + { "lat": 40.7317236, "lon": -73.9914755 }, + { "lat": 40.7317044, "lon": -73.9914884 }, + { "lat": 40.7316825, "lon": -73.9915049 }, + { "lat": 40.7312866, "lon": -73.9918381 }, + { "lat": 40.7312591, "lon": -73.9918612 }, + { "lat": 40.7312316, "lon": -73.9918843 }, + { "lat": 40.7311834, "lon": -73.9919247 }, + { "lat": 40.7311250, "lon": -73.9919736 }, + { "lat": 40.7306978, "lon": -73.9923317 }, + { "lat": 40.7306495, "lon": -73.9923714 }, + { "lat": 40.7306005, "lon": -73.9924142 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1315847473, + "bounds": { + "minlat": 40.7317437, + "minlon": -73.9914641, + "maxlat": 40.7321691, + "maxlon": -73.9913538 + }, + "nodes": [ + 4684550288, + 4747401775, + 8309479716, + 12179524688, + 12179524687, + 42428480 + ], + "geometry": [ + { "lat": 40.7321691, "lon": -73.9913538 }, + { "lat": 40.7318589, "lon": -73.9914243 }, + { "lat": 40.7318078, "lon": -73.9914383 }, + { "lat": 40.7317844, "lon": -73.9914465 }, + { "lat": 40.7317646, "lon": -73.9914546 }, + { "lat": 40.7317437, "lon": -73.9914641 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1315848397, + "bounds": { + "minlat": 40.7335235, + "minlon": -73.9898470, + "maxlat": 40.7340706, + "maxlon": -73.9898300 + }, + "nodes": [ + 42436939, + 8309479693, + 42453110, + 42453113, + 8569048117, + 12179560537, + 42453116 + ], + "geometry": [ + { "lat": 40.7335235, "lon": -73.9898470 }, + { "lat": 40.7335922, "lon": -73.9898427 }, + { "lat": 40.7336636, "lon": -73.9898394 }, + { "lat": 40.7339187, "lon": -73.9898300 }, + { "lat": 40.7339739, "lon": -73.9898311 }, + { "lat": 40.7340280, "lon": -73.9898369 }, + { "lat": 40.7340706, "lon": -73.9898417 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "4th Avenue", + "name:ru": "4-я Авеню", + "name_1": "4 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1315848405, + "bounds": { + "minlat": 40.7335235, + "minlon": -73.9941180, + "maxlat": 40.7353130, + "maxlon": -73.9898470 + }, + "nodes": [ + 42436939, + 8309479695, + 8878684324, + 42428491, + 8878684325, + 9849055125, + 42436935, + 9849055129, + 10198867140, + 8264671699, + 42429373 + ], + "geometry": [ + { "lat": 40.7335235, "lon": -73.9898470 }, + { "lat": 40.7335805, "lon": -73.9899860 }, + { "lat": 40.7339363, "lon": -73.9908450 }, + { "lat": 40.7339814, "lon": -73.9909530 }, + { "lat": 40.7340225, "lon": -73.9910508 }, + { "lat": 40.7344958, "lon": -73.9921762 }, + { "lat": 40.7345291, "lon": -73.9922554 }, + { "lat": 40.7345724, "lon": -73.9923582 }, + { "lat": 40.7352637, "lon": -73.9940007 }, + { "lat": 40.7352867, "lon": -73.9940554 }, + { "lat": 40.7353130, "lon": -73.9941180 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 13th Street", + "name:ru": "Восточная 13-я стрит", + "name_1": "East 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1315848406, + "bounds": { + "minlat": 40.7333742, + "minlon": -73.9898470, + "maxlat": 40.7335235, + "maxlon": -73.9894846 + }, + "nodes": [ + 12179560536, + 12179560534, + 12179560535, + 8878684328, + 42436939 + ], + "geometry": [ + { "lat": 40.7333742, "lon": -73.9894846 }, + { "lat": 40.7334592, "lon": -73.9896926 }, + { "lat": 40.7334721, "lon": -73.9897243 }, + { "lat": 40.7334851, "lon": -73.9897568 }, + { "lat": 40.7335235, "lon": -73.9898470 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 13th Street", + "name:ru": "Восточная 13-я стрит", + "name_1": "East 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1316034207, + "bounds": { + "minlat": 40.8409807, + "minlon": -73.9136460, + "maxlat": 40.8412830, + "maxlon": -73.9128957 + }, + "nodes": [ + 2408355562, + 2408370747, + 42748462 + ], + "geometry": [ + { "lat": 40.8409807, "lon": -73.9128957 }, + { "lat": 40.8410131, "lon": -73.9129812 }, + { "lat": 40.8412830, "lon": -73.9136460 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "East 172nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "172nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 1316035003, + "bounds": { + "minlat": 40.8367704, + "minlon": -73.9091912, + "maxlat": 40.8369692, + "maxlon": -73.9091870 + }, + "nodes": [ + 486818472, + 12038379532, + 42739246 + ], + "geometry": [ + { "lat": 40.8367704, "lon": -73.9091870 }, + { "lat": 40.8369001, "lon": -73.9091901 }, + { "lat": 40.8369692, "lon": -73.9091912 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Teller Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller", + "tiger:name_type": "Ave", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1316035004, + "bounds": { + "minlat": 40.8287381, + "minlon": -73.9147216, + "maxlat": 40.8312304, + "maxlon": -73.9132570 + }, + "nodes": [ + 42743938, + 12038440305, + 12038440102, + 42743936, + 12038440123, + 8187805334, + 12038440086, + 42743934 + ], + "geometry": [ + { "lat": 40.8312304, "lon": -73.9132570 }, + { "lat": 40.8311471, "lon": -73.9133057 }, + { "lat": 40.8300397, "lon": -73.9139531 }, + { "lat": 40.8299800, "lon": -73.9139880 }, + { "lat": 40.8299275, "lon": -73.9140190 }, + { "lat": 40.8288387, "lon": -73.9146623 }, + { "lat": 40.8287918, "lon": -73.9146899 }, + { "lat": 40.8287381, "lon": -73.9147216 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "name": "Findlay Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller;Findlay", + "tiger:name_type": "Ave", + "tiger:zip_left": "10456", + "tiger:zip_right": "10457;10456", + "tiger:zip_right_1": "10456" + } +}, +{ + "type": "way", + "id": 1316057256, + "bounds": { + "minlat": 40.7383383, + "minlon": -73.9882705, + "maxlat": 40.7385458, + "maxlon": -73.9877778 + }, + "nodes": [ + 12181309647, + 12181309646, + 12070096510, + 10172843086, + 4597668028 + ], + "geometry": [ + { "lat": 40.7385458, "lon": -73.9882705 }, + { "lat": 40.7384065, "lon": -73.9879396 }, + { "lat": 40.7383943, "lon": -73.9879107 }, + { "lat": 40.7383764, "lon": -73.9878684 }, + { "lat": 40.7383383, "lon": -73.9877778 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right", + "width": "10" + } +}, +{ + "type": "way", + "id": 1316057261, + "bounds": { + "minlat": 40.7388975, + "minlon": -73.9873431, + "maxlat": 40.7389341, + "maxlon": -73.9872595 + }, + "nodes": [ + 12181309686, + 4597668039 + ], + "geometry": [ + { "lat": 40.7388975, "lon": -73.9872595 }, + { "lat": 40.7389341, "lon": -73.9873431 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 21st Street", + "name:ru": "Восточная 21-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|", + "width": "9" + } +}, +{ + "type": "way", + "id": 1316060544, + "bounds": { + "minlat": 40.7399107, + "minlon": -73.9865065, + "maxlat": 40.7401693, + "maxlon": -73.9863033 + }, + "nodes": [ + 12181339172, + 12181339171, + 10166167541, + 42448693 + ], + "geometry": [ + { "lat": 40.7399107, "lon": -73.9865065 }, + { "lat": 40.7400285, "lon": -73.9864055 }, + { "lat": 40.7400716, "lon": -73.9863741 }, + { "lat": 40.7401693, "lon": -73.9863033 } + ], + "tags": { + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through||", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1316060557, + "bounds": { + "minlat": 40.7420359, + "minlon": -73.9838720, + "maxlat": 40.7424362, + "maxlon": -73.9829129 + }, + "nodes": [ + 42446932, + 4234425023, + 12181339184 + ], + "geometry": [ + { "lat": 40.7420359, "lon": -73.9829129 }, + { "lat": 40.7420754, "lon": -73.9830140 }, + { "lat": 40.7424362, "lon": -73.9838720 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 27th Street", + "name:ru": "Восточная 27-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1316060558, + "bounds": { + "minlat": 40.7424362, + "minlon": -73.9844692, + "maxlat": 40.7426886, + "maxlon": -73.9838720 + }, + "nodes": [ + 12181339184, + 12181339186, + 10166167614, + 12181339187, + 42454522 + ], + "geometry": [ + { "lat": 40.7424362, "lon": -73.9838720 }, + { "lat": 40.7426351, "lon": -73.9843450 }, + { "lat": 40.7426568, "lon": -73.9843954 }, + { "lat": 40.7426816, "lon": -73.9844529 }, + { "lat": 40.7426886, "lon": -73.9844692 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 27th Street", + "name:ru": "Восточная 27-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1316060565, + "bounds": { + "minlat": 40.7498975, + "minlon": -73.9783507, + "maxlat": 40.7499394, + "maxlon": -73.9782172 + }, + "nodes": [ + 10703807883, + 12181374949 + ], + "geometry": [ + { "lat": 40.7498975, "lon": -73.9782172 }, + { "lat": 40.7499394, "lon": -73.9783507 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 39th Street", + "name:ru": "Восточная 39-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1316061296, + "bounds": { + "minlat": 40.7418438, + "minlon": -73.9829129, + "maxlat": 40.7420359, + "maxlon": -73.9824519 + }, + "nodes": [ + 12181379215, + 12181379216, + 4234425049, + 42446932 + ], + "geometry": [ + { "lat": 40.7418438, "lon": -73.9824519 }, + { "lat": 40.7419706, "lon": -73.9827530 }, + { "lat": 40.7419922, "lon": -73.9828043 }, + { "lat": 40.7420359, "lon": -73.9829129 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 27th Street", + "name:ru": "Восточная 27-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1316295713, + "bounds": { + "minlat": 40.7446775, + "minlon": -73.9823372, + "maxlat": 40.7458300, + "maxlon": -73.9795955 + }, + "nodes": [ + 4597668020, + 42449308, + 8119462501, + 3847026391, + 12183285326, + 6814269857, + 42446934, + 8119462487, + 4166338962 + ], + "geometry": [ + { "lat": 40.7458300, "lon": -73.9823372 }, + { "lat": 40.7457792, "lon": -73.9822176 }, + { "lat": 40.7457368, "lon": -73.9821177 }, + { "lat": 40.7454035, "lon": -73.9813247 }, + { "lat": 40.7451936, "lon": -73.9808287 }, + { "lat": 40.7451676, "lon": -73.9807661 }, + { "lat": 40.7451276, "lon": -73.9806695 }, + { "lat": 40.7450818, "lon": -73.9805589 }, + { "lat": 40.7446775, "lon": -73.9795955 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 32nd Street", + "name:ru": "Восточная 32-я стрит", + "name_1": "East 32 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1316295714, + "bounds": { + "minlat": 40.7444537, + "minlon": -73.9795955, + "maxlat": 40.7446775, + "maxlon": -73.9790654 + }, + "nodes": [ + 4166338962, + 12183286762, + 4234425015, + 42449314 + ], + "geometry": [ + { "lat": 40.7446775, "lon": -73.9795955 }, + { "lat": 40.7445347, "lon": -73.9792560 }, + { "lat": 40.7445106, "lon": -73.9791991 }, + { "lat": 40.7444537, "lon": -73.9790654 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 32nd Street", + "name:ru": "Восточная 32-я стрит", + "name_1": "East 32 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1316295721, + "bounds": { + "minlat": 40.7468833, + "minlon": -73.9792550, + "maxlat": 40.7470801, + "maxlon": -73.9787883 + }, + "nodes": [ + 12183285334, + 12183285333, + 10171137631, + 42434954 + ], + "geometry": [ + { "lat": 40.7468833, "lon": -73.9787883 }, + { "lat": 40.7470101, "lon": -73.9790889 }, + { "lat": 40.7470288, "lon": -73.9791335 }, + { "lat": 40.7470801, "lon": -73.9792550 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 35th Street", + "name:ru": "Восточная 35-я стрит", + "oneway": "yes", + "short_name": "East 35 Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1316295722, + "bounds": { + "minlat": 40.7480679, + "minlon": -73.9783419, + "maxlat": 40.7483124, + "maxlon": -73.9777597 + }, + "nodes": [ + 12183285338, + 12183285339, + 10170983210, + 42446942 + ], + "geometry": [ + { "lat": 40.7480679, "lon": -73.9777597 }, + { "lat": 40.7482466, "lon": -73.9781867 }, + { "lat": 40.7482691, "lon": -73.9782405 }, + { "lat": 40.7483124, "lon": -73.9783419 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1316295723, + "bounds": { + "minlat": 40.7489187, + "minlon": -73.9786069, + "maxlat": 40.7492162, + "maxlon": -73.9779010 + }, + "nodes": [ + 12183285340, + 12183285341, + 10170983204, + 42446945 + ], + "geometry": [ + { "lat": 40.7492162, "lon": -73.9786069 }, + { "lat": 40.7489867, "lon": -73.9780619 }, + { "lat": 40.7489602, "lon": -73.9779992 }, + { "lat": 40.7489187, "lon": -73.9779010 } + ], + "tags": { + "alt_name": "E 38th st", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 38th Street", + "name:ru": "Восточная 38-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|right" + } +}, +{ + "type": "way", + "id": 1316295724, + "bounds": { + "minlat": 40.7518731, + "minlon": -73.9813803, + "maxlat": 40.7528159, + "maxlon": -73.9791222 + }, + "nodes": [ + 42432436, + 7826843771, + 10166333105, + 42432438, + 3955360015, + 12183285348 + ], + "geometry": [ + { "lat": 40.7528159, "lon": -73.9813803 }, + { "lat": 40.7527636, "lon": -73.9812565 }, + { "lat": 40.7521827, "lon": -73.9798777 }, + { "lat": 40.7521404, "lon": -73.9797786 }, + { "lat": 40.7521059, "lon": -73.9796835 }, + { "lat": 40.7518731, "lon": -73.9791222 } + ], + "tags": { + "alt_name": "Library Way", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 41st Street", + "name:ru": "Восточная 41-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 1316295725, + "bounds": { + "minlat": 40.7509409, + "minlon": -73.9791222, + "maxlat": 40.7518731, + "maxlon": -73.9769163 + }, + "nodes": [ + 12183285348, + 12181374960, + 10172788543, + 561042200, + 8122411159, + 3955360011, + 12183285351, + 12183285350 + ], + "geometry": [ + { "lat": 40.7518731, "lon": -73.9791222 }, + { "lat": 40.7515684, "lon": -73.9784002 }, + { "lat": 40.7515441, "lon": -73.9783413 }, + { "lat": 40.7515134, "lon": -73.9782694 }, + { "lat": 40.7514181, "lon": -73.9780429 }, + { "lat": 40.7513742, "lon": -73.9779560 }, + { "lat": 40.7510664, "lon": -73.9772066 }, + { "lat": 40.7509409, "lon": -73.9769163 } + ], + "tags": { + "alt_name": "Library Way", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 41st Street", + "name:ru": "Восточная 41-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 1316295726, + "bounds": { + "minlat": 40.7507077, + "minlon": -73.9765964, + "maxlat": 40.7507849, + "maxlon": -73.9765398 + }, + "nodes": [ + 42432444, + 10168841819, + 12183285353 + ], + "geometry": [ + { "lat": 40.7507849, "lon": -73.9765398 }, + { "lat": 40.7507247, "lon": -73.9765840 }, + { "lat": 40.7507077, "lon": -73.9765964 } + ], + "tags": { + "bus:lanes": "|||designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lexington Avenue", + "name:etymology:wikidata": "Q124321810", + "name:ru": "Лексингтон-авеню", + "oneway": "yes", + "short_name": "Lexington Ave", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109739", + "wikipedia": "en:Lexington Avenue" + } +}, +{ + "type": "way", + "id": 1316295727, + "bounds": { + "minlat": 40.7507849, + "minlon": -73.9769163, + "maxlat": 40.7509409, + "maxlon": -73.9765398 + }, + "nodes": [ + 12183285350, + 12183285349, + 10168825913, + 42432444 + ], + "geometry": [ + { "lat": 40.7509409, "lon": -73.9769163 }, + { "lat": 40.7508449, "lon": -73.9766882 }, + { "lat": 40.7508247, "lon": -73.9766384 }, + { "lat": 40.7507849, "lon": -73.9765398 } + ], + "tags": { + "alt_name": "Library Way", + "highway": "residential", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 41st Street", + "name:ru": "Восточная 41-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "||right", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 1316299803, + "bounds": { + "minlat": 40.7326183, + "minlon": -73.9894846, + "maxlat": 40.7333742, + "maxlon": -73.9876834 + }, + "nodes": [ + 42436941, + 3627218173, + 12183286713, + 12179560536 + ], + "geometry": [ + { "lat": 40.7326183, "lon": -73.9876834 }, + { "lat": 40.7326762, "lon": -73.9878180 }, + { "lat": 40.7326897, "lon": -73.9878493 }, + { "lat": 40.7333742, "lon": -73.9894846 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 13th Street", + "name:ru": "Восточная 13-я стрит", + "name_1": "East 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1316299804, + "bounds": { + "minlat": 40.7324426, + "minlon": -73.9876834, + "maxlat": 40.7326183, + "maxlon": -73.9872666 + }, + "nodes": [ + 12183286714, + 12183286712, + 3627218174, + 42436941 + ], + "geometry": [ + { "lat": 40.7324426, "lon": -73.9872666 }, + { "lat": 40.7325339, "lon": -73.9874831 }, + { "lat": 40.7325610, "lon": -73.9875475 }, + { "lat": 40.7326183, "lon": -73.9876834 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 13th Street", + "name:ru": "Восточная 13-я стрит", + "name_1": "East 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1316299815, + "bounds": { + "minlat": 40.7357989, + "minlon": -73.9853657, + "maxlat": 40.7359015, + "maxlon": -73.9852920 + }, + "nodes": [ + 42437283, + 9679181046, + 12183286730 + ], + "geometry": [ + { "lat": 40.7357989, "lon": -73.9853657 }, + { "lat": 40.7358557, "lon": -73.9853249 }, + { "lat": 40.7359015, "lon": -73.9852920 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "21", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1316299824, + "bounds": { + "minlat": 40.7407511, + "minlon": -73.9817646, + "maxlat": 40.7413630, + "maxlon": -73.9813211 + }, + "nodes": [ + 42429896, + 4234425045, + 12183286748, + 4234425030, + 42449918 + ], + "geometry": [ + { "lat": 40.7407511, "lon": -73.9817646 }, + { "lat": 40.7407963, "lon": -73.9817317 }, + { "lat": 40.7412636, "lon": -73.9813937 }, + { "lat": 40.7413059, "lon": -73.9813631 }, + { "lat": 40.7413630, "lon": -73.9813211 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||||", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1316359079, + "bounds": { + "minlat": 40.8802195, + "minlon": -74.0098430, + "maxlat": 40.8805637, + "maxlon": -74.0093701 + }, + "nodes": [ + 103214422, + 12183861186, + 12183861187 + ], + "geometry": [ + { "lat": 40.8803070, "lon": -74.0098430 }, + { "lat": 40.8802195, "lon": -74.0095750 }, + { "lat": 40.8805637, "lon": -74.0093701 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1316359080, + "bounds": { + "minlat": 40.8800867, + "minlon": -74.0096579, + "maxlat": 40.8802195, + "maxlon": -74.0095750 + }, + "nodes": [ + 12183861186, + 12183861188 + ], + "geometry": [ + { "lat": 40.8802195, "lon": -74.0095750 }, + { "lat": 40.8800867, "lon": -74.0096579 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1316711903, + "bounds": { + "minlat": 40.7530717, + "minlon": -73.9665625, + "maxlat": 40.7532346, + "maxlon": -73.9661765 + }, + "nodes": [ + 3814476691, + 3569749143, + 595105499 + ], + "geometry": [ + { "lat": 40.7530717, "lon": -73.9661765 }, + { "lat": 40.7531954, "lon": -73.9664708 }, + { "lat": 40.7532346, "lon": -73.9665625 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "East 49th Street", + "name:ru": "Восточная 49-я стрит", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "through|right" + } +}, +{ + "type": "way", + "id": 1316736498, + "bounds": { + "minlat": 40.8442565, + "minlon": -73.9229834, + "maxlat": 40.8443052, + "maxlon": -73.9229609 + }, + "nodes": [ + 60921024, + 12046762857 + ], + "geometry": [ + { "lat": 40.8443052, "lon": -73.9229609 }, + { "lat": 40.8442565, "lon": -73.9229834 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1316831693, + "bounds": { + "minlat": 40.7501166, + "minlon": -73.9751349, + "maxlat": 40.7501946, + "maxlon": -73.9749540 + }, + "nodes": [ + 12187391606, + 10125260547, + 42432451 + ], + "geometry": [ + { "lat": 40.7501946, "lon": -73.9751349 }, + { "lat": 40.7501661, "lon": -73.9750685 }, + { "lat": 40.7501166, "lon": -73.9749540 } + ], + "tags": { + "alt_name": "Library Way", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 41st Street", + "name:ru": "Восточная 41-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 1316831694, + "bounds": { + "minlat": 40.7501166, + "minlon": -73.9749540, + "maxlat": 40.7507733, + "maxlon": -73.9744736 + }, + "nodes": [ + 42432451, + 10125260546, + 12187391607, + 13859238030, + 11337295610, + 10125260545, + 11337295608 + ], + "geometry": [ + { "lat": 40.7501166, "lon": -73.9749540 }, + { "lat": 40.7501721, "lon": -73.9749144 }, + { "lat": 40.7501998, "lon": -73.9748947 }, + { "lat": 40.7503511, "lon": -73.9747829 }, + { "lat": 40.7506337, "lon": -73.9745742 }, + { "lat": 40.7506804, "lon": -73.9745406 }, + { "lat": 40.7507733, "lon": -73.9744736 } + ], + "tags": { + "bus:lanes": "||||designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||||", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1316831699, + "bounds": { + "minlat": 40.7494989, + "minlon": -73.9769912, + "maxlat": 40.7501697, + "maxlon": -73.9754041 + }, + "nodes": [ + 42446949, + 10168825905, + 1731564121, + 12187391602, + 10125260550, + 11337295601 + ], + "geometry": [ + { "lat": 40.7501697, "lon": -73.9769912 }, + { "lat": 40.7501246, "lon": -73.9768839 }, + { "lat": 40.7497158, "lon": -73.9759171 }, + { "lat": 40.7495730, "lon": -73.9755794 }, + { "lat": 40.7495478, "lon": -73.9755197 }, + { "lat": 40.7494989, "lon": -73.9754041 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 40th Street", + "name:ru": "Восточная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1316831700, + "bounds": { + "minlat": 40.7488906, + "minlon": -73.9758481, + "maxlat": 40.7494989, + "maxlon": -73.9754041 + }, + "nodes": [ + 42445661, + 10125260551, + 12187343198, + 12187391601, + 10168825854, + 11337295601 + ], + "geometry": [ + { "lat": 40.7488906, "lon": -73.9758481 }, + { "lat": 40.7489373, "lon": -73.9758141 }, + { "lat": 40.7489559, "lon": -73.9758005 }, + { "lat": 40.7493931, "lon": -73.9754835 }, + { "lat": 40.7494397, "lon": -73.9754485 }, + { "lat": 40.7494989, "lon": -73.9754041 } + ], + "tags": { + "bus:lanes": "|||designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1316835906, + "bounds": { + "minlat": 40.7273796, + "minlon": -73.9914385, + "maxlat": 40.7275664, + "maxlon": -73.9913647 + }, + "nodes": [ + 6100764861, + 12179562787, + 12179562788, + 1773121031, + 12179562789 + ], + "geometry": [ + { "lat": 40.7275664, "lon": -73.9913647 }, + { "lat": 40.7275459, "lon": -73.9913764 }, + { "lat": 40.7275228, "lon": -73.9913865 }, + { "lat": 40.7274984, "lon": -73.9913954 }, + { "lat": 40.7273796, "lon": -73.9914385 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "24/7", + "maxspeed": "25 mph", + "name": "Cooper Square", + "name:etymology:wikidata": "Q935291", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1316835912, + "bounds": { + "minlat": 40.7266425, + "minlon": -73.9942224, + "maxlat": 40.7266941, + "maxlon": -73.9941184 + }, + "nodes": [ + 11608906309, + 42445520 + ], + "geometry": [ + { "lat": 40.7266941, "lon": -73.9942224 }, + { "lat": 40.7266425, "lon": -73.9941184 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 16:30-23:00; Sa 10:00-23:00; Su 11:30-23:00)", + "name": "Bond Street", + "name:ko": "본드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q23091435", + "wikipedia": "en:Bond Street" + } +}, +{ + "type": "way", + "id": 1316835913, + "bounds": { + "minlat": 40.7256649, + "minlon": -73.9922271, + "maxlat": 40.7257047, + "maxlon": -73.9921182 + }, + "nodes": [ + 8309479097, + 42437618 + ], + "geometry": [ + { "lat": 40.7257047, "lon": -73.9922271 }, + { "lat": 40.7256649, "lon": -73.9921182 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 16:30-23:00; Sa 10:00-23:00; Su 11:30-23:00)", + "name": "Bond Street", + "name:ko": "본드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q23091435", + "wikipedia": "en:Bond Street" + } +}, +{ + "type": "way", + "id": 1316839631, + "bounds": { + "minlat": 40.7205066, + "minlon": -73.9976388, + "maxlat": 40.7208346, + "maxlon": -73.9968358 + }, + "nodes": [ + 42432174, + 8231927638, + 13293918864, + 42432171, + 12187436356, + 8231927641, + 42427327 + ], + "geometry": [ + { "lat": 40.7205066, "lon": -73.9968358 }, + { "lat": 40.7205333, "lon": -73.9969018 }, + { "lat": 40.7206586, "lon": -73.9972116 }, + { "lat": 40.7207124, "lon": -73.9973444 }, + { "lat": 40.7207758, "lon": -73.9975011 }, + { "lat": 40.7207996, "lon": -73.9975602 }, + { "lat": 40.7208346, "lon": -73.9976388 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "10.5", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 1316839632, + "bounds": { + "minlat": 40.7212520, + "minlon": -74.0014470, + "maxlat": 40.7221269, + "maxlon": -74.0007224 + }, + "nodes": [ + 8231922399, + 9910707284, + 9910707279, + 8231922370, + 42449570 + ], + "geometry": [ + { "lat": 40.7221269, "lon": -74.0007224 }, + { "lat": 40.7215333, "lon": -74.0012081 }, + { "lat": 40.7214885, "lon": -74.0012461 }, + { "lat": 40.7213053, "lon": -74.0013990 }, + { "lat": 40.7212520, "lon": -74.0014470 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Mercer Street", + "name:etymology:wikidata": "Q3030909", + "name:ko": "머서 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q3306319", + "wikipedia": "en:Mercer Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1316839633, + "bounds": { + "minlat": 40.7221269, + "minlon": -74.0007224, + "maxlat": 40.7222582, + "maxlon": -74.0006091 + }, + "nodes": [ + 8231922397, + 42432156, + 8231922399 + ], + "geometry": [ + { "lat": 40.7222582, "lon": -74.0006091 }, + { "lat": 40.7221954, "lon": -74.0006646 }, + { "lat": 40.7221269, "lon": -74.0007224 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Mercer Street", + "name:etymology:wikidata": "Q3030909", + "name:ko": "머서 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3306319", + "wikipedia": "en:Mercer Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1316839634, + "bounds": { + "minlat": 40.7205089, + "minlon": -74.0031616, + "maxlat": 40.7224974, + "maxlon": -74.0014747 + }, + "nodes": [ + 11658947721, + 8231922377, + 42452040, + 8231922376, + 12187433931, + 8231922394 + ], + "geometry": [ + { "lat": 40.7205089, "lon": -74.0031616 }, + { "lat": 40.7215747, "lon": -74.0022487 }, + { "lat": 40.7216214, "lon": -74.0022085 }, + { "lat": 40.7216723, "lon": -74.0021646 }, + { "lat": 40.7224722, "lon": -74.0014958 }, + { "lat": 40.7224974, "lon": -74.0014747 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Greene Street", + "name:etymology:wikidata": "Q366113", + "name:ko": "그린 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q83170568" + } +}, +{ + "type": "way", + "id": 1316839635, + "bounds": { + "minlat": 40.7224974, + "minlon": -74.0014747, + "maxlat": 40.7226305, + "maxlon": -74.0013671 + }, + "nodes": [ + 8231922394, + 42432152, + 8231922392 + ], + "geometry": [ + { "lat": 40.7224974, "lon": -74.0014747 }, + { "lat": 40.7225657, "lon": -74.0014195 }, + { "lat": 40.7226305, "lon": -74.0013671 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Greene Street", + "name:etymology:wikidata": "Q366113", + "name:ko": "그린 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q83170568" + } +}, +{ + "type": "way", + "id": 1316839636, + "bounds": { + "minlat": 40.7219950, + "minlon": -74.0029710, + "maxlat": 40.7228711, + "maxlon": -74.0022357 + }, + "nodes": [ + 8231922390, + 8231922383, + 42433574 + ], + "geometry": [ + { "lat": 40.7228711, "lon": -74.0022357 }, + { "lat": 40.7220459, "lon": -74.0029273 }, + { "lat": 40.7219950, "lon": -74.0029710 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Wooster Street", + "name:etymology:wikidata": "Q4993246", + "name:ko": "우스터 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q19582621", + "wikipedia": "en:Wooster Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1316839637, + "bounds": { + "minlat": 40.7228711, + "minlon": -74.0022357, + "maxlat": 40.7230033, + "maxlon": -74.0021260 + }, + "nodes": [ + 8231922389, + 42432148, + 8231922390 + ], + "geometry": [ + { "lat": 40.7230033, "lon": -74.0021260 }, + { "lat": 40.7229396, "lon": -74.0021789 }, + { "lat": 40.7228711, "lon": -74.0022357 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Wooster Street", + "name:etymology:wikidata": "Q4993246", + "name:ko": "우스터 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q19582621", + "wikipedia": "en:Wooster Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1317081009, + "bounds": { + "minlat": 40.7016683, + "minlon": -73.9614463, + "maxlat": 40.7019062, + "maxlon": -73.9613015 + }, + "nodes": [ + 598035427, + 9776829329, + 42464239 + ], + "geometry": [ + { "lat": 40.7019062, "lon": -73.9613015 }, + { "lat": 40.7017499, "lon": -73.9614020 }, + { "lat": 40.7016683, "lon": -73.9614463 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Williamsburg Street West", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Williamsburg", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 1317270172, + "bounds": { + "minlat": 40.7594616, + "minlon": -73.9831421, + "maxlat": 40.7599823, + "maxlon": -73.9826972 + }, + "nodes": [ + 2717546319, + 13304565268, + 530697969, + 530697968, + 13304565269, + 2717546150, + 10261258830, + 2717546205, + 2717546209, + 2717546319 + ], + "geometry": [ + { "lat": 40.7599823, "lon": -73.9828041 }, + { "lat": 40.7599618, "lon": -73.9827619 }, + { "lat": 40.7599304, "lon": -73.9826972 }, + { "lat": 40.7594616, "lon": -73.9830426 }, + { "lat": 40.7594857, "lon": -73.9831055 }, + { "lat": 40.7594997, "lon": -73.9831421 }, + { "lat": 40.7596078, "lon": -73.9830636 }, + { "lat": 40.7597028, "lon": -73.9829935 }, + { "lat": 40.7597089, "lon": -73.9830040 }, + { "lat": 40.7599823, "lon": -73.9828041 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "leisure": "park", + "name": "McGraw-Hill Park", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1317337765, + "bounds": { + "minlat": 40.7166956, + "minlon": -73.9977656, + "maxlat": 40.7168306, + "maxlon": -73.9973905 + }, + "nodes": [ + 42432246, + 8307641548, + 12192359907 + ], + "geometry": [ + { "lat": 40.7168306, "lon": -73.9977656 }, + { "lat": 40.7168124, "lon": -73.9977142 }, + { "lat": 40.7166956, "lon": -73.9973905 } + ], + "tags": { + "bicycle": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1317511660, + "bounds": { + "minlat": 40.7121302, + "minlon": -74.0056926, + "maxlat": 40.7121687, + "maxlon": -74.0051846 + }, + "nodes": [ + 1272562764, + 4143885425, + 278640086, + 4143885431, + 1272562771, + 1272562773, + 4143885421, + 2821304146 + ], + "geometry": [ + { "lat": 40.7121568, "lon": -74.0051846 }, + { "lat": 40.7121649, "lon": -74.0052544 }, + { "lat": 40.7121687, "lon": -74.0053318 }, + { "lat": 40.7121685, "lon": -74.0053995 }, + { "lat": 40.7121635, "lon": -74.0054722 }, + { "lat": 40.7121552, "lon": -74.0055400 }, + { "lat": 40.7121442, "lon": -74.0056161 }, + { "lat": 40.7121302, "lon": -74.0056926 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|" + } +}, +{ + "type": "way", + "id": 1317731492, + "bounds": { + "minlat": 40.7181708, + "minlon": -73.9874583, + "maxlat": 40.7182459, + "maxlon": -73.9872677 + }, + "nodes": [ + 486867534, + 12195869787, + 12195869784, + 12195869783, + 12195869754 + ], + "geometry": [ + { "lat": 40.7182459, "lon": -73.9874583 }, + { "lat": 40.7182357, "lon": -73.9874264 }, + { "lat": 40.7182233, "lon": -73.9873909 }, + { "lat": 40.7182038, "lon": -73.9873444 }, + { "lat": 40.7181708, "lon": -73.9872677 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 1317731495, + "bounds": { + "minlat": 40.7193341, + "minlon": -73.9878052, + "maxlat": 40.7198312, + "maxlon": -73.9875441 + }, + "nodes": [ + 9408434729, + 12195869792, + 8231900996, + 42437084 + ], + "geometry": [ + { "lat": 40.7193341, "lon": -73.9878052 }, + { "lat": 40.7197455, "lon": -73.9875944 }, + { "lat": 40.7197906, "lon": -73.9875677 }, + { "lat": 40.7198312, "lon": -73.9875441 } + ], + "tags": { + "bus:lanes:backward": "|designated", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Essex Street", + "name:etymology:wikidata": "Q23240", + "name:ko": "에식스 스트리트", + "name:ru": "Эссекс-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4532801", + "wikipedia": "en:Essex Street" + } +}, +{ + "type": "way", + "id": 1317731496, + "bounds": { + "minlat": 40.7183352, + "minlon": -73.9883198, + "maxlat": 40.7184824, + "maxlon": -73.9882439 + }, + "nodes": [ + 12195869790, + 3314293725, + 486867513 + ], + "geometry": [ + { "lat": 40.7183352, "lon": -73.9883198 }, + { "lat": 40.7183922, "lon": -73.9882904 }, + { "lat": 40.7184824, "lon": -73.9882439 } + ], + "tags": { + "access:lanes:backward": "yes|yes|no", + "bus:lanes:backward": "yes|yes|designated", + "cycleway:both": "no", + "highway": "residential", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Essex Street", + "name:etymology:wikidata": "Q23240", + "name:ko": "에식스 스트리트", + "name:ru": "Эссекс-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4532801", + "wikipedia": "en:Essex Street" + } +}, +{ + "type": "way", + "id": 1317731497, + "bounds": { + "minlat": 40.7186305, + "minlon": -73.9881675, + "maxlat": 40.7187810, + "maxlon": -73.9880900 + }, + "nodes": [ + 42429773, + 3314293726, + 12195869791 + ], + "geometry": [ + { "lat": 40.7186305, "lon": -73.9881675 }, + { "lat": 40.7187265, "lon": -73.9881181 }, + { "lat": 40.7187810, "lon": -73.9880900 } + ], + "tags": { + "bus:lanes:backward": "|designated", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Essex Street", + "name:etymology:wikidata": "Q23240", + "name:ko": "에식스 스트리트", + "name:ru": "Эссекс-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|", + "wikidata": "Q4532801", + "wikipedia": "en:Essex Street" + } +}, +{ + "type": "way", + "id": 1317744350, + "bounds": { + "minlat": 40.7195201, + "minlon": -73.9931446, + "maxlat": 40.7199105, + "maxlon": -73.9929475 + }, + "nodes": [ + 12196062121, + 12196062119, + 5159452349, + 42429754 + ], + "geometry": [ + { "lat": 40.7195201, "lon": -73.9931446 }, + { "lat": 40.7197508, "lon": -73.9930239 }, + { "lat": 40.7198129, "lon": -73.9929944 }, + { "lat": 40.7199105, "lon": -73.9929475 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 1317744351, + "bounds": { + "minlat": 40.7190796, + "minlon": -73.9933726, + "maxlat": 40.7195201, + "maxlon": -73.9931446 + }, + "nodes": [ + 42432085, + 8307641649, + 12196062118, + 12196062121 + ], + "geometry": [ + { "lat": 40.7190796, "lon": -73.9933726 }, + { "lat": 40.7191413, "lon": -73.9933447 }, + { "lat": 40.7191862, "lon": -73.9933220 }, + { "lat": 40.7195201, "lon": -73.9931446 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 1317744352, + "bounds": { + "minlat": 40.7186246, + "minlon": -73.9936048, + "maxlat": 40.7190796, + "maxlon": -73.9933726 + }, + "nodes": [ + 12196062123, + 12196062122, + 42432085 + ], + "geometry": [ + { "lat": 40.7186246, "lon": -73.9936048 }, + { "lat": 40.7190169, "lon": -73.9934036 }, + { "lat": 40.7190796, "lon": -73.9933726 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 1317744353, + "bounds": { + "minlat": 40.7190796, + "minlon": -73.9935258, + "maxlat": 40.7191341, + "maxlon": -73.9933726 + }, + "nodes": [ + 42432085, + 8307641650, + 12196062125 + ], + "geometry": [ + { "lat": 40.7190796, "lon": -73.9933726 }, + { "lat": 40.7191214, "lon": -73.9934910 }, + { "lat": 40.7191341, "lon": -73.9935258 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "smoothness": "intermediate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "28'8\"", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 1317744354, + "bounds": { + "minlat": 40.7177762, + "minlon": -73.9940617, + "maxlat": 40.7181637, + "maxlon": -73.9938390 + }, + "nodes": [ + 12196062144, + 12196062143, + 12196062142, + 6369613031, + 42452067 + ], + "geometry": [ + { "lat": 40.7177762, "lon": -73.9940617 }, + { "lat": 40.7178223, "lon": -73.9940362 }, + { "lat": 40.7180360, "lon": -73.9939040 }, + { "lat": 40.7180766, "lon": -73.9938824 }, + { "lat": 40.7181637, "lon": -73.9938390 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|through", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 1317749676, + "bounds": { + "minlat": 40.7193587, + "minlon": -73.9943946, + "maxlat": 40.7194667, + "maxlon": -73.9942719 + }, + "nodes": [ + 8231909730, + 42432184 + ], + "geometry": [ + { "lat": 40.7193587, "lon": -73.9942719 }, + { "lat": 40.7194667, "lon": -73.9943946 } + ], + "tags": { + "cycleway:both": "no", + "highway": "secondary", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "smoothness": "intermediate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "28'8\"", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 1317749677, + "bounds": { + "minlat": 40.7184777, + "minlon": -73.9952482, + "maxlat": 40.7186387, + "maxlon": -73.9948080 + }, + "nodes": [ + 12195871656, + 12195871654, + 5805243785, + 42437589 + ], + "geometry": [ + { "lat": 40.7186387, "lon": -73.9952482 }, + { "lat": 40.7185483, "lon": -73.9949904 }, + { "lat": 40.7185258, "lon": -73.9949289 }, + { "lat": 40.7184777, "lon": -73.9948080 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1317756113, + "bounds": { + "minlat": 40.7140740, + "minlon": -73.9972366, + "maxlat": 40.7140757, + "maxlon": -73.9970601 + }, + "nodes": [ + 10200096942, + 11504615605, + 1773067304 + ], + "geometry": [ + { "lat": 40.7140740, "lon": -73.9970601 }, + { "lat": 40.7140740, "lon": -73.9971546 }, + { "lat": 40.7140757, "lon": -73.9972366 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxheight": "default", + "maxspeed": "20 mph", + "name": "Division Street", + "name:ko": "디비전 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction": "no_parking", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1317821901, + "bounds": { + "minlat": 40.8447784, + "minlon": -73.9819706, + "maxlat": 40.8449393, + "maxlon": -73.9818084 + }, + "nodes": [ + 12196478634, + 12196478635 + ], + "geometry": [ + { "lat": 40.8449393, "lon": -73.9818084 }, + { "lat": 40.8447784, "lon": -73.9819706 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1317980055, + "bounds": { + "minlat": 40.8158633, + "minlon": -73.9144338, + "maxlat": 40.8162664, + "maxlon": -73.9141940 + }, + "nodes": [ + 12197807024, + 13041711462, + 42760418 + ], + "geometry": [ + { "lat": 40.8158633, "lon": -73.9144338 }, + { "lat": 40.8161573, "lon": -73.9142572 }, + { "lat": 40.8162664, "lon": -73.9141940 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxheight": "10'6\"", + "maxspeed": "25 mph", + "name": "Brook Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1317980056, + "bounds": { + "minlat": 40.8162664, + "minlon": -73.9146560, + "maxlat": 40.8163138, + "maxlon": -73.9141940 + }, + "nodes": [ + 5482340614, + 13041711458, + 42760418 + ], + "geometry": [ + { "lat": 40.8163138, "lon": -73.9146560 }, + { "lat": 40.8162788, "lon": -73.9143149 }, + { "lat": 40.8162664, "lon": -73.9141940 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Westchester Avenue", + "name:etymology:wikidata": "Q17091379", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Westchester", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10459", + "tiger:zip_right": "10459", + "wikidata": "Q20979444", + "wikipedia": "en:Westchester Avenue" + } +}, +{ + "type": "way", + "id": 1317980197, + "bounds": { + "minlat": 40.8159582, + "minlon": -73.9119923, + "maxlat": 40.8160470, + "maxlon": -73.9119420 + }, + "nodes": [ + 42760430, + 12197793917 + ], + "geometry": [ + { "lat": 40.8160470, "lon": -73.9119420 }, + { "lat": 40.8159582, "lon": -73.9119923 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "maxheight": "12'2\"", + "name": "Saint Ann's Avenue", + "name:etymology:wikidata": "Q7586962", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "St Ann's", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1317980198, + "bounds": { + "minlat": 40.8160470, + "minlon": -73.9119420, + "maxlat": 40.8161624, + "maxlon": -73.9118937 + }, + "nodes": [ + 12197793918, + 42760430 + ], + "geometry": [ + { "lat": 40.8161624, "lon": -73.9118937 }, + { "lat": 40.8160470, "lon": -73.9119420 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "residential", + "maxheight": "12'2\"", + "name": "Saint Ann's Avenue", + "name:etymology:wikidata": "Q7586962", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "St Ann's", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1317980608, + "bounds": { + "minlat": 40.8138956, + "minlon": -73.9118102, + "maxlat": 40.8158550, + "maxlon": -73.9111215 + }, + "nodes": [ + 8602600493, + 8602600465, + 42751596, + 5482340561, + 9917835186, + 42756063 + ], + "geometry": [ + { "lat": 40.8158550, "lon": -73.9111215 }, + { "lat": 40.8153550, "lon": -73.9112816 }, + { "lat": 40.8152539, "lon": -73.9113233 }, + { "lat": 40.8149152, "lon": -73.9114458 }, + { "lat": 40.8140011, "lon": -73.9117725 }, + { "lat": 40.8138956, "lon": -73.9118102 } + ], + "tags": { + "highway": "residential", + "name": "Eagle Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Eagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1317980609, + "bounds": { + "minlat": 40.8158550, + "minlon": -73.9111215, + "maxlat": 40.8160603, + "maxlon": -73.9109870 + }, + "nodes": [ + 12197815428, + 42756066, + 8602600493 + ], + "geometry": [ + { "lat": 40.8160603, "lon": -73.9109870 }, + { "lat": 40.8159777, "lon": -73.9110349 }, + { "lat": 40.8158550, "lon": -73.9111215 } + ], + "tags": { + "highway": "residential", + "maxheight": "12'2\"", + "name": "Eagle Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Eagle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1317980649, + "bounds": { + "minlat": 40.8157928, + "minlon": -73.9101859, + "maxlat": 40.8159424, + "maxlon": -73.9101334 + }, + "nodes": [ + 42735080, + 12197782485 + ], + "geometry": [ + { "lat": 40.8159424, "lon": -73.9101334 }, + { "lat": 40.8157928, "lon": -73.9101859 } + ], + "tags": { + "highway": "residential", + "maxheight": "12'2\"", + "name": "Cauldwell Avenue", + "name:etymology:wikidata": "Q8006633", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cauldwell", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 1317980650, + "bounds": { + "minlat": 40.8159360, + "minlon": -73.9099100, + "maxlat": 40.8161004, + "maxlon": -73.9098425 + }, + "nodes": [ + 42735021, + 12197782486 + ], + "geometry": [ + { "lat": 40.8159360, "lon": -73.9099100 }, + { "lat": 40.8161004, "lon": -73.9098425 } + ], + "tags": { + "highway": "residential", + "maxheight": "12'2\"", + "name": "Cauldwell Avenue", + "name:etymology:wikidata": "Q8006633", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cauldwell", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1317981452, + "bounds": { + "minlat": 40.8156904, + "minlon": -73.9092197, + "maxlat": 40.8159664, + "maxlon": -73.9091237 + }, + "nodes": [ + 5482340562, + 4061814801, + 42760438 + ], + "geometry": [ + { "lat": 40.8156904, "lon": -73.9092197 }, + { "lat": 40.8157745, "lon": -73.9091885 }, + { "lat": 40.8159664, "lon": -73.9091237 } + ], + "tags": { + "highway": "residential", + "maxheight": "11'2\"", + "name": "Trinity Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Trinity", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 1317981556, + "bounds": { + "minlat": 40.8171790, + "minlon": -73.9066500, + "maxlat": 40.8173608, + "maxlon": -73.9065743 + }, + "nodes": [ + 12197818936, + 42760444 + ], + "geometry": [ + { "lat": 40.8173608, "lon": -73.9065743 }, + { "lat": 40.8171790, "lon": -73.9066500 } + ], + "tags": { + "highway": "residential", + "maxheight": "11'2\"", + "name": "Forest Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Forest", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1317994764, + "bounds": { + "minlat": 40.7195174, + "minlon": -73.9987423, + "maxlat": 40.7197918, + "maxlon": -73.9985146 + }, + "nodes": [ + 12197926851, + 12187436368, + 8307641674, + 12197904813, + 42427324 + ], + "geometry": [ + { "lat": 40.7195174, "lon": -73.9987423 }, + { "lat": 40.7196895, "lon": -73.9986022 }, + { "lat": 40.7197239, "lon": -73.9985722 }, + { "lat": 40.7197560, "lon": -73.9985445 }, + { "lat": 40.7197918, "lon": -73.9985146 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1318001658, + "bounds": { + "minlat": 40.7176217, + "minlon": -74.0002647, + "maxlat": 40.7180188, + "maxlon": -73.9999527 + }, + "nodes": [ + 42427311, + 7641859754, + 12197904833, + 8307641566, + 42427316 + ], + "geometry": [ + { "lat": 40.7176217, "lon": -74.0002647 }, + { "lat": 40.7176716, "lon": -74.0002255 }, + { "lat": 40.7178793, "lon": -74.0000622 }, + { "lat": 40.7179239, "lon": -74.0000272 }, + { "lat": 40.7180188, "lon": -73.9999527 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1318795399, + "bounds": { + "minlat": 40.7449297, + "minlon": -73.9328784, + "maxlat": 40.7449682, + "maxlon": -73.9325862 + }, + "nodes": [ + 276207583, + 10762127811, + 12253429630, + 3785676234 + ], + "geometry": [ + { "lat": 40.7449297, "lon": -73.9325862 }, + { "lat": 40.7449384, "lon": -73.9326715 }, + { "lat": 40.7449564, "lon": -73.9327969 }, + { "lat": 40.7449682, "lon": -73.9328784 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "flex_post", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "Queens Boulevard", + "oneway": "yes", + "oneway:bicycle": "no", + "ref": "NY 25", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "|slight_left;slight_right|", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 1318882792, + "bounds": { + "minlat": 40.8254444, + "minlon": -73.9870596, + "maxlat": 40.8255352, + "maxlon": -73.9869929 + }, + "nodes": [ + 7555222390, + 7555222391 + ], + "geometry": [ + { "lat": 40.8254444, "lon": -73.9870596 }, + { "lat": 40.8255352, "lon": -73.9869929 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1318882793, + "bounds": { + "minlat": 40.8255352, + "minlon": -73.9869929, + "maxlat": 40.8255925, + "maxlon": -73.9869491 + }, + "nodes": [ + 7555222391, + 12205927169 + ], + "geometry": [ + { "lat": 40.8255352, "lon": -73.9869929 }, + { "lat": 40.8255925, "lon": -73.9869491 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1318914015, + "bounds": { + "minlat": 40.7782972, + "minlon": -73.9137636, + "maxlat": 40.7785560, + "maxlon": -73.9134548 + }, + "nodes": [ + 12206032324, + 2307002117, + 42874602 + ], + "geometry": [ + { "lat": 40.7785560, "lon": -73.9134548 }, + { "lat": 40.7783522, "lon": -73.9136966 }, + { "lat": 40.7782972, "lon": -73.9137636 } + ], + "tags": { + "highway": "service", + "service": "alley", + "tiger:county": "Queens, NY" + } +}, +{ + "type": "way", + "id": 1318914016, + "bounds": { + "minlat": 40.7783473, + "minlon": -73.9136966, + "maxlat": 40.7785238, + "maxlon": -73.9134167 + }, + "nodes": [ + 12206032323, + 12206032325, + 2307002117 + ], + "geometry": [ + { "lat": 40.7785238, "lon": -73.9134167 }, + { "lat": 40.7783473, "lon": -73.9136272 }, + { "lat": 40.7783522, "lon": -73.9136966 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1318914017, + "bounds": { + "minlat": 40.7783522, + "minlon": -73.9137215, + "maxlat": 40.7785903, + "maxlon": -73.9135036 + }, + "nodes": [ + 2307002116, + 12206032326, + 2307002117 + ], + "geometry": [ + { "lat": 40.7785903, "lon": -73.9135036 }, + { "lat": 40.7784101, "lon": -73.9137215 }, + { "lat": 40.7783522, "lon": -73.9136966 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1319061198, + "bounds": { + "minlat": 40.8046101, + "minlon": -73.9123046, + "maxlat": 40.8046449, + "maxlon": -73.9122296 + }, + "nodes": [ + 10687130505, + 10700391950 + ], + "geometry": [ + { "lat": 40.8046101, "lon": -73.9122296 }, + { "lat": 40.8046449, "lon": -73.9123046 } + ], + "tags": { + "cycleway": "track", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 138th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1319857417, + "bounds": { + "minlat": 40.7251803, + "minlon": -74.0112903, + "maxlat": 40.7252073, + "maxlon": -74.0110523 + }, + "nodes": [ + 246889572, + 9611529611 + ], + "geometry": [ + { "lat": 40.7252073, "lon": -74.0112903 }, + { "lat": 40.7251803, "lon": -74.0110523 } + ], + "tags": { + "bicycle": "yes", + "change": "no", + "cycleway:right": "no", + "destination": "Holland Tunnel", + "destination:ref": "I 78", + "destination:street": "Canal Street", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "noref": "yes", + "oneway": "yes", + "surface": "concrete", + "turn:lanes": "through|through|through", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1319909122, + "bounds": { + "minlat": 40.7204084, + "minlon": -74.0114231, + "maxlat": 40.7204461, + "maxlon": -74.0113688 + }, + "nodes": [ + 2843997702, + 12214442342 + ], + "geometry": [ + { "lat": 40.7204461, "lon": -74.0114231 }, + { "lat": 40.7204084, "lon": -74.0113688 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "2", + "lanes:both_ways": "2", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1319909125, + "bounds": { + "minlat": 40.7213818, + "minlon": -74.0107212, + "maxlat": 40.7215306, + "maxlon": -74.0106956 + }, + "nodes": [ + 12214442346, + 12214442361, + 12214442352, + 12214442359, + 12214442347 + ], + "geometry": [ + { "lat": 40.7215306, "lon": -74.0106956 }, + { "lat": 40.7214601, "lon": -74.0107077 }, + { "lat": 40.7214377, "lon": -74.0107116 }, + { "lat": 40.7214097, "lon": -74.0107164 }, + { "lat": 40.7213818, "lon": -74.0107212 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "lanes:both_ways": "2", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1319909126, + "bounds": { + "minlat": 40.7213723, + "minlon": -74.0106173, + "maxlat": 40.7215216, + "maxlon": -74.0105943 + }, + "nodes": [ + 12214442348, + 12214442362, + 12214442353, + 12214442358, + 12214442349 + ], + "geometry": [ + { "lat": 40.7215216, "lon": -74.0105943 }, + { "lat": 40.7214504, "lon": -74.0106053 }, + { "lat": 40.7214281, "lon": -74.0106087 }, + { "lat": 40.7214002, "lon": -74.0106130 }, + { "lat": 40.7213723, "lon": -74.0106173 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "lanes:both_ways": "2", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1319909127, + "bounds": { + "minlat": 40.7213982, + "minlon": -74.0105039, + "maxlat": 40.7215110, + "maxlon": -74.0104856 + }, + "nodes": [ + 12214442350, + 12214442363, + 12214442354, + 12214442355 + ], + "geometry": [ + { "lat": 40.7215110, "lon": -74.0104856 }, + { "lat": 40.7214402, "lon": -74.0104970 }, + { "lat": 40.7214179, "lon": -74.0105007 }, + { "lat": 40.7213982, "lon": -74.0105039 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "lanes:both_ways": "2", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1319909128, + "bounds": { + "minlat": 40.7213606, + "minlon": -74.0105039, + "maxlat": 40.7213982, + "maxlon": -74.0104823 + }, + "nodes": [ + 12214442355, + 12214442360, + 12214442356 + ], + "geometry": [ + { "lat": 40.7213982, "lon": -74.0105039 }, + { "lat": 40.7213878, "lon": -74.0104823 }, + { "lat": 40.7213606, "lon": -74.0104867 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "lanes:both_ways": "1", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1319909129, + "bounds": { + "minlat": 40.7213651, + "minlon": -74.0105303, + "maxlat": 40.7213982, + "maxlon": -74.0105039 + }, + "nodes": [ + 12214442355, + 12214442357, + 12214442351 + ], + "geometry": [ + { "lat": 40.7213982, "lon": -74.0105039 }, + { "lat": 40.7213910, "lon": -74.0105263 }, + { "lat": 40.7213651, "lon": -74.0105303 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "lanes:both_ways": "1", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1320224833, + "bounds": { + "minlat": 40.7421855, + "minlon": -73.9515452, + "maxlat": 40.7423262, + "maxlon": -73.9514970 + }, + "nodes": [ + 12217399324, + 277046311 + ], + "geometry": [ + { "lat": 40.7421855, "lon": -73.9515452 }, + { "lat": 40.7423262, "lon": -73.9514970 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Pulaski Bridge", + "foot": "no", + "highway": "primary", + "lanes": "3", + "layer": "1", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "turn:lanes": "||right", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 1320225050, + "bounds": { + "minlat": 40.7237930, + "minlon": -73.9918154, + "maxlat": 40.7239733, + "maxlon": -73.9912412 + }, + "nodes": [ + 42442836, + 12217438119 + ], + "geometry": [ + { "lat": 40.7237930, "lon": -73.9912412 }, + { "lat": 40.7239733, "lon": -73.9918154 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1320225051, + "bounds": { + "minlat": 40.7239733, + "minlon": -73.9919889, + "maxlat": 40.7240278, + "maxlon": -73.9918154 + }, + "nodes": [ + 12217438119, + 12217438120 + ], + "geometry": [ + { "lat": 40.7239733, "lon": -73.9918154 }, + { "lat": 40.7240278, "lon": -73.9919889 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1320232776, + "bounds": { + "minlat": 40.7546391, + "minlon": -73.9841180, + "maxlat": 40.7548420, + "maxlon": -73.9836337 + }, + "nodes": [ + 1289222431, + 8375523265, + 42430333 + ], + "geometry": [ + { "lat": 40.7546391, "lon": -73.9836337 }, + { "lat": 40.7547859, "lon": -73.9839843 }, + { "lat": 40.7548420, "lon": -73.9841180 } + ], + "tags": { + "access": "yes", + "bus:lanes": "yes|designated", + "foot": "designated", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through||right", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1320234482, + "bounds": { + "minlat": 40.7631240, + "minlon": -73.9892097, + "maxlat": 40.7634901, + "maxlon": -73.9889429 + }, + "nodes": [ + 42440163, + 3463813445, + 12217512991 + ], + "geometry": [ + { "lat": 40.7634901, "lon": -73.9889429 }, + { "lat": 40.7634315, "lon": -73.9889857 }, + { "lat": 40.7631240, "lon": -73.9892097 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1320234483, + "bounds": { + "minlat": 40.7628617, + "minlon": -73.9894017, + "maxlat": 40.7631240, + "maxlon": -73.9892097 + }, + "nodes": [ + 12217512991, + 3463813444, + 42432594 + ], + "geometry": [ + { "lat": 40.7631240, "lon": -73.9892097 }, + { "lat": 40.7629206, "lon": -73.9893579 }, + { "lat": 40.7628617, "lon": -73.9894017 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1320234484, + "bounds": { + "minlat": 40.7604633, + "minlon": -73.9888759, + "maxlat": 40.7626403, + "maxlon": -73.9837062 + }, + "nodes": [ + 42432585, + 4782363331, + 4782363335, + 12810424957, + 42428307, + 12810424952, + 1758380528, + 8704367785, + 8704367786, + 10168088510, + 42432589, + 6210777839, + 10168088513, + 4782543132, + 2682336471, + 2682336481, + 2969871935, + 12217512992 + ], + "geometry": [ + { "lat": 40.7604633, "lon": -73.9837062 }, + { "lat": 40.7605225, "lon": -73.9838477 }, + { "lat": 40.7606080, "lon": -73.9840497 }, + { "lat": 40.7607403, "lon": -73.9843675 }, + { "lat": 40.7608040, "lon": -73.9845206 }, + { "lat": 40.7608365, "lon": -73.9845967 }, + { "lat": 40.7609890, "lon": -73.9849545 }, + { "lat": 40.7610575, "lon": -73.9851171 }, + { "lat": 40.7611849, "lon": -73.9854196 }, + { "lat": 40.7616093, "lon": -73.9864275 }, + { "lat": 40.7616677, "lon": -73.9865661 }, + { "lat": 40.7617110, "lon": -73.9866691 }, + { "lat": 40.7617274, "lon": -73.9867079 }, + { "lat": 40.7618510, "lon": -73.9870015 }, + { "lat": 40.7621657, "lon": -73.9877488 }, + { "lat": 40.7623099, "lon": -73.9880913 }, + { "lat": 40.7624212, "lon": -73.9883556 }, + { "lat": 40.7626403, "lon": -73.9888759 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 49th Street", + "name:ru": "Западная 49-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1320234485, + "bounds": { + "minlat": 40.7626403, + "minlon": -73.9894017, + "maxlat": 40.7628617, + "maxlon": -73.9888759 + }, + "nodes": [ + 12217512992, + 4782543129, + 10171089660, + 42432594 + ], + "geometry": [ + { "lat": 40.7626403, "lon": -73.9888759 }, + { "lat": 40.7627773, "lon": -73.9892013 }, + { "lat": 40.7628102, "lon": -73.9892794 }, + { "lat": 40.7628617, "lon": -73.9894017 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 49th Street", + "name:ru": "Западная 49-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1320235306, + "bounds": { + "minlat": 40.7557816, + "minlon": -74.0019763, + "maxlat": 40.7560193, + "maxlon": -74.0017940 + }, + "nodes": [ + 12217517288, + 5165644093, + 42430633 + ], + "geometry": [ + { "lat": 40.7560193, "lon": -74.0017940 }, + { "lat": 40.7558786, "lon": -74.0018983 }, + { "lat": 40.7557816, "lon": -74.0019763 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "no", + "surface": "concrete", + "turn:lanes:forward": "none|none|through;right", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1320235991, + "bounds": { + "minlat": 40.7622934, + "minlon": -73.9898150, + "maxlat": 40.7625004, + "maxlon": -73.9896640 + }, + "nodes": [ + 12217543110, + 10171089668 + ], + "geometry": [ + { "lat": 40.7625004, "lon": -73.9896640 }, + { "lat": 40.7622934, "lon": -73.9898150 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "9th Avenue", + "name:ru": "9-я Авеню", + "name_1": "9 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|through|through|through", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1320290376, + "bounds": { + "minlat": 40.7581848, + "minlon": -73.9926458, + "maxlat": 40.7584326, + "maxlon": -73.9920484 + }, + "nodes": [ + 12217736860, + 8750636592, + 9535571853, + 2351532382, + 42437368 + ], + "geometry": [ + { "lat": 40.7581848, "lon": -73.9920484 }, + { "lat": 40.7583549, "lon": -73.9924520 }, + { "lat": 40.7583735, "lon": -73.9924960 }, + { "lat": 40.7583894, "lon": -73.9925338 }, + { "lat": 40.7584326, "lon": -73.9926458 } + ], + "tags": { + "cycleway:both": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left||", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1320339184, + "bounds": { + "minlat": 40.8472082, + "minlon": -73.9295566, + "maxlat": 40.8474741, + "maxlon": -73.9289678 + }, + "nodes": [ + 765357028, + 12547080795, + 12218176208 + ], + "geometry": [ + { "lat": 40.8474741, "lon": -73.9295566 }, + { "lat": 40.8474633, "lon": -73.9295327 }, + { "lat": 40.8472082, "lon": -73.9289678 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "layer": "3", + "maxspeed": "25 mph", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Washington", + "tiger:name_base_1": "181st", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Brg", + "tiger:name_type_1": "St", + "turn:lanes": "none|none|merge_to_left", + "wikidata": "Q2550421", + "wikipedia": "en:Washington Bridge" + } +}, +{ + "type": "way", + "id": 1320340053, + "bounds": { + "minlat": 40.8051222, + "minlon": -73.9391836, + "maxlat": 40.8054494, + "maxlon": -73.9389413 + }, + "nodes": [ + 12218154250, + 10169411296, + 596776654 + ], + "geometry": [ + { "lat": 40.8054494, "lon": -73.9389413 }, + { "lat": 40.8052238, "lon": -73.9391084 }, + { "lat": 40.8051222, "lon": -73.9391836 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|through;right", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1320342923, + "bounds": { + "minlat": 40.7451604, + "minlon": -73.9336787, + "maxlat": 40.7453033, + "maxlon": -73.9335163 + }, + "nodes": [ + 12253429629, + 9179115042, + 42866362 + ], + "geometry": [ + { "lat": 40.7453033, "lon": -73.9336787 }, + { "lat": 40.7452715, "lon": -73.9336460 }, + { "lat": 40.7451604, "lon": -73.9335163 } + ], + "tags": { + "cycleway:left": "separate", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Queens Boulevard", + "ref": "NY 25", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|through;right|right", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 1320472881, + "bounds": { + "minlat": 40.7445725, + "minlon": -73.9326468, + "maxlat": 40.7446215, + "maxlon": -73.9322275 + }, + "nodes": [ + 42820836, + 10743722728, + 12219441065 + ], + "geometry": [ + { "lat": 40.7446215, "lon": -73.9326468 }, + { "lat": 40.7446124, "lon": -73.9325685 }, + { "lat": 40.7445725, "lon": -73.9322275 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|||merge_to_left", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 1320549615, + "bounds": { + "minlat": 40.7587598, + "minlon": -73.9939368, + "maxlat": 40.7589778, + "maxlon": -73.9934205 + }, + "nodes": [ + 42434439, + 10171120541, + 12220427275 + ], + "geometry": [ + { "lat": 40.7589778, "lon": -73.9939368 }, + { "lat": 40.7589285, "lon": -73.9938201 }, + { "lat": 40.7587598, "lon": -73.9934205 } + ], + "tags": { + "access": "yes", + "foot": "designated", + "hgv": "local", + "highway": "primary", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1320550162, + "bounds": { + "minlat": 40.8104687, + "minlon": -73.9525905, + "maxlat": 40.8107673, + "maxlon": -73.9518797 + }, + "nodes": [ + 4888388400, + 5403787913, + 10171508881, + 42432929 + ], + "geometry": [ + { "lat": 40.8104687, "lon": -73.9518797 }, + { "lat": 40.8105972, "lon": -73.9521874 }, + { "lat": 40.8107133, "lon": -73.9524625 }, + { "lat": 40.8107673, "lon": -73.9525905 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "turn:lanes:backward": "none|merge_to_left|none", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1320581341, + "bounds": { + "minlat": 40.7134959, + "minlon": -73.9156780, + "maxlat": 40.7137823, + "maxlon": -73.9152035 + }, + "nodes": [ + 42843568, + 9744131393, + 7711304350 + ], + "geometry": [ + { "lat": 40.7134959, "lon": -73.9156780 }, + { "lat": 40.7135807, "lon": -73.9155237 }, + { "lat": 40.7137823, "lon": -73.9152035 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "turn:lanes:backward": "left|", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1320610084, + "bounds": { + "minlat": 40.7549959, + "minlon": -73.9414686, + "maxlat": 40.7552340, + "maxlon": -73.9412390 + }, + "nodes": [ + 42825879, + 7762369888, + 11623207005, + 12221051822 + ], + "geometry": [ + { "lat": 40.7552340, "lon": -73.9412390 }, + { "lat": 40.7551852, "lon": -73.9412860 }, + { "lat": 40.7550014, "lon": -73.9414633 }, + { "lat": 40.7549959, "lon": -73.9414686 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "1", + "lit": "yes", + "name": "21st Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|none" + } +}, +{ + "type": "way", + "id": 1321510648, + "bounds": { + "minlat": 40.8617404, + "minlon": -73.9121020, + "maxlat": 40.8617435, + "maxlon": -73.9118129 + }, + "nodes": [ + 8913596530, + 12058477480, + 12058421233, + 42731033 + ], + "geometry": [ + { "lat": 40.8617433, "lon": -73.9121020 }, + { "lat": 40.8617412, "lon": -73.9120326 }, + { "lat": 40.8617404, "lon": -73.9119362 }, + { "lat": 40.8617435, "lon": -73.9118129 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1321771844, + "bounds": { + "minlat": 40.8027638, + "minlon": -73.9341867, + "maxlat": 40.8030191, + "maxlon": -73.9335768 + }, + "nodes": [ + 12231139772, + 8741475156, + 8741475160, + 4980799121, + 42443116 + ], + "geometry": [ + { "lat": 40.8030191, "lon": -73.9341867 }, + { "lat": 40.8029453, "lon": -73.9340102 }, + { "lat": 40.8028840, "lon": -73.9338638 }, + { "lat": 40.8028172, "lon": -73.9337043 }, + { "lat": 40.8027638, "lon": -73.9335768 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "lit": "yes", + "name": "East 125th Street", + "name_1": "East 125 Street", + "name_2": "Dr. Martin Luther King Jr. Boulevard", + "name_3": "Martin Luther King Boulevard", + "oneway": "no", + "turn:lanes:backward": "|merge_to_left", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1321771943, + "bounds": { + "minlat": 40.7572335, + "minlon": -73.9906145, + "maxlat": 40.7575765, + "maxlon": -73.9897914 + }, + "nodes": [ + 42435663, + 9235539543, + 7095733937, + 12231119049 + ], + "geometry": [ + { "lat": 40.7572335, "lon": -73.9897914 }, + { "lat": 40.7572884, "lon": -73.9899281 }, + { "lat": 40.7574592, "lon": -73.9903332 }, + { "lat": 40.7575765, "lon": -73.9906145 } + ], + "tags": { + "cycleway:both": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 42nd Street", + "name:ru": "Западная 42-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through|none", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1321780272, + "bounds": { + "minlat": 40.8088397, + "minlon": -73.9482476, + "maxlat": 40.8089395, + "maxlon": -73.9480087 + }, + "nodes": [ + 12231213547, + 5266458361, + 2141026503 + ], + "geometry": [ + { "lat": 40.8088397, "lon": -73.9480087 }, + { "lat": 40.8088914, "lon": -73.9481311 }, + { "lat": 40.8089395, "lon": -73.9482476 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "none|merge_to_left", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1321780273, + "bounds": { + "minlat": 40.8087056, + "minlon": -73.9480087, + "maxlat": 40.8088397, + "maxlon": -73.9476915 + }, + "nodes": [ + 12231213548, + 12231213547 + ], + "geometry": [ + { "lat": 40.8087056, "lon": -73.9476915 }, + { "lat": 40.8088397, "lon": -73.9480087 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "none|merge_to_left", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1321780274, + "bounds": { + "minlat": 40.8089395, + "minlon": -73.9484034, + "maxlat": 40.8090058, + "maxlon": -73.9482476 + }, + "nodes": [ + 2141026503, + 42439861 + ], + "geometry": [ + { "lat": 40.8089395, "lon": -73.9482476 }, + { "lat": 40.8090058, "lon": -73.9484034 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1321794648, + "bounds": { + "minlat": 40.8304798, + "minlon": -73.9408360, + "maxlat": 40.8306632, + "maxlon": -73.9404038 + }, + "nodes": [ + 13320112968, + 11221649593, + 12231380249 + ], + "geometry": [ + { "lat": 40.8304798, "lon": -73.9404038 }, + { "lat": 40.8304989, "lon": -73.9404467 }, + { "lat": 40.8306632, "lon": -73.9408360 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "turn:lanes:backward": "left|none", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1321800261, + "bounds": { + "minlat": 40.8120077, + "minlon": -73.9552747, + "maxlat": 40.8122310, + "maxlon": -73.9550848 + }, + "nodes": [ + 7598970693, + 7598970691, + 4207752454 + ], + "geometry": [ + { "lat": 40.8120077, "lon": -73.9550848 }, + { "lat": 40.8121623, "lon": -73.9552162 }, + { "lat": 40.8122310, "lon": -73.9552747 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "slight_left|through", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1321807887, + "bounds": { + "minlat": 40.7325213, + "minlon": -73.9433733, + "maxlat": 40.7325580, + "maxlon": -73.9432502 + }, + "nodes": [ + 11155242469, + 13515590834, + 12231513801 + ], + "geometry": [ + { "lat": 40.7325580, "lon": -73.9432502 }, + { "lat": 40.7325412, "lon": -73.9433096 }, + { "lat": 40.7325213, "lon": -73.9433733 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 1321808302, + "bounds": { + "minlat": 40.7719652, + "minlon": -73.9261563, + "maxlat": 40.7722511, + "maxlon": -73.9259342 + }, + "nodes": [ + 2063038040, + 6452796570, + 12231483194 + ], + "geometry": [ + { "lat": 40.7722511, "lon": -73.9259342 }, + { "lat": 40.7721320, "lon": -73.9260267 }, + { "lat": 40.7719652, "lon": -73.9261563 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1322053462, + "bounds": { + "minlat": 40.8325242, + "minlon": -73.9457489, + "maxlat": 40.8327323, + "maxlon": -73.9452527 + }, + "nodes": [ + 12234234283, + 9775435992, + 13030209162, + 561035370 + ], + "geometry": [ + { "lat": 40.8325242, "lon": -73.9452527 }, + { "lat": 40.8325915, "lon": -73.9454140 }, + { "lat": 40.8326856, "lon": -73.9456378 }, + { "lat": 40.8327323, "lon": -73.9457489 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "turn:lanes:forward": "left|right", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1322063988, + "bounds": { + "minlat": 40.8743203, + "minlon": -73.9096352, + "maxlat": 40.8745523, + "maxlon": -73.9093180 + }, + "nodes": [ + 42427926, + 9377187355, + 10128431623, + 12234335817 + ], + "geometry": [ + { "lat": 40.8745523, "lon": -73.9096352 }, + { "lat": 40.8744979, "lon": -73.9095608 }, + { "lat": 40.8744860, "lon": -73.9095446 }, + { "lat": 40.8743203, "lon": -73.9093180 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 225th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "225th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_left_1": "10463", + "tiger:zip_right": "10463", + "tiger:zip_right_1": "10463", + "turn:lanes:backward": "left|right" + } +}, +{ + "type": "way", + "id": 1322064688, + "bounds": { + "minlat": 40.8659478, + "minlon": -73.9304693, + "maxlat": 40.8664380, + "maxlon": -73.9298529 + }, + "nodes": [ + 42441007, + 9561561622, + 60916255, + 42441000 + ], + "geometry": [ + { "lat": 40.8659478, "lon": -73.9298529 }, + { "lat": 40.8660054, "lon": -73.9299347 }, + { "lat": 40.8660591, "lon": -73.9300109 }, + { "lat": 40.8664380, "lon": -73.9304693 } + ], + "tags": { + "bicycle": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "network": "lcn", + "route": "bicycle", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1322071554, + "bounds": { + "minlat": 40.7529183, + "minlon": -73.9221167, + "maxlat": 40.7530594, + "maxlon": -73.9214902 + }, + "nodes": [ + 42932888, + 8088564396, + 42920473 + ], + "geometry": [ + { "lat": 40.7529183, "lon": -73.9221167 }, + { "lat": 40.7530281, "lon": -73.9216224 }, + { "lat": 40.7530594, "lon": -73.9214902 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:backward": "left|none|none" + } +}, +{ + "type": "way", + "id": 1322071555, + "bounds": { + "minlat": 40.7527562, + "minlon": -73.9228431, + "maxlat": 40.7529183, + "maxlon": -73.9221167 + }, + "nodes": [ + 42932884, + 8088564398, + 12234394449, + 42932888 + ], + "geometry": [ + { "lat": 40.7527562, "lon": -73.9228431 }, + { "lat": 40.7527854, "lon": -73.9227122 }, + { "lat": 40.7528421, "lon": -73.9224571 }, + { "lat": 40.7529183, "lon": -73.9221167 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:backward": "through|through", + "turn:lanes:forward": "left|none|none" + } +}, +{ + "type": "way", + "id": 1322076722, + "bounds": { + "minlat": 40.8631901, + "minlon": -73.9163170, + "maxlat": 40.8633819, + "maxlon": -73.9158603 + }, + "nodes": [ + 42431262, + 12234444972 + ], + "geometry": [ + { "lat": 40.8631901, "lon": -73.9158603 }, + { "lat": 40.8633819, "lon": -73.9163170 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "maxspeed": "25 mph", + "name": "West 207th Street", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1322076723, + "bounds": { + "minlat": 40.8633819, + "minlon": -73.9170603, + "maxlat": 40.8636939, + "maxlon": -73.9163170 + }, + "nodes": [ + 12234444972, + 42431260 + ], + "geometry": [ + { "lat": 40.8633819, "lon": -73.9163170 }, + { "lat": 40.8636939, "lon": -73.9170603 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "West 207th Street", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1322091598, + "bounds": { + "minlat": 40.7539980, + "minlon": -73.9424300, + "maxlat": 40.7544034, + "maxlon": -73.9420401 + }, + "nodes": [ + 12234525479, + 8313268926, + 7734653731, + 42825882 + ], + "geometry": [ + { "lat": 40.7544034, "lon": -73.9420401 }, + { "lat": 40.7542485, "lon": -73.9421895 }, + { "lat": 40.7540633, "lon": -73.9423682 }, + { "lat": 40.7539980, "lon": -73.9424300 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "lit": "yes", + "name": "21st Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|none|none" + } +}, +{ + "type": "way", + "id": 1322100305, + "bounds": { + "minlat": 40.7598888, + "minlon": -73.9367867, + "maxlat": 40.7601597, + "maxlon": -73.9365277 + }, + "nodes": [ + 12234643430, + 11623207014, + 11623207013, + 6452688249, + 42825868 + ], + "geometry": [ + { "lat": 40.7601597, "lon": -73.9365277 }, + { "lat": 40.7601157, "lon": -73.9365700 }, + { "lat": 40.7599996, "lon": -73.9366816 }, + { "lat": 40.7599622, "lon": -73.9367176 }, + { "lat": 40.7598888, "lon": -73.9367867 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1322100802, + "bounds": { + "minlat": 40.8646211, + "minlon": -73.9193620, + "maxlat": 40.8648090, + "maxlon": -73.9192173 + }, + "nodes": [ + 42431252, + 9561420907, + 2344057813, + 12234649125 + ], + "geometry": [ + { "lat": 40.8648090, "lon": -73.9193620 }, + { "lat": 40.8647440, "lon": -73.9193195 }, + { "lat": 40.8646838, "lon": -73.9192802 }, + { "lat": 40.8646211, "lon": -73.9192173 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "West 207th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1322109550, + "bounds": { + "minlat": 40.7538599, + "minlon": -73.9176084, + "maxlat": 40.7538964, + "maxlon": -73.9168741 + }, + "nodes": [ + 42885751, + 9189020417, + 13746022279, + 2503683548 + ], + "geometry": [ + { "lat": 40.7538599, "lon": -73.9176084 }, + { "lat": 40.7538773, "lon": -73.9173872 }, + { "lat": 40.7538941, "lon": -73.9171323 }, + { "lat": 40.7538964, "lon": -73.9168741 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes:backward": "left|none|none" + } +}, +{ + "type": "way", + "id": 1322109678, + "bounds": { + "minlat": 40.8670932, + "minlon": -73.9209918, + "maxlat": 40.8673490, + "maxlon": -73.9208274 + }, + "nodes": [ + 4207641231, + 12234717916 + ], + "geometry": [ + { "lat": 40.8670932, "lon": -73.9208274 }, + { "lat": 40.8673490, "lon": -73.9209918 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "name": "West 207th Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "207th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1322124344, + "bounds": { + "minlat": 40.7531001, + "minlon": -73.9119444, + "maxlat": 40.7531966, + "maxlon": -73.9113766 + }, + "nodes": [ + 12234816913, + 12046186742 + ], + "geometry": [ + { "lat": 40.7531966, "lon": -73.9119444 }, + { "lat": 40.7531001, "lon": -73.9113766 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|||" + } +}, +{ + "type": "way", + "id": 1322124345, + "bounds": { + "minlat": 40.7531966, + "minlon": -73.9125221, + "maxlat": 40.7532950, + "maxlon": -73.9119444 + }, + "nodes": [ + 7762273785, + 8088629344, + 12234816913 + ], + "geometry": [ + { "lat": 40.7532950, "lon": -73.9125221 }, + { "lat": 40.7532786, "lon": -73.9124333 }, + { "lat": 40.7531966, "lon": -73.9119444 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|none|none" + } +}, +{ + "type": "way", + "id": 1322125084, + "bounds": { + "minlat": 40.8227933, + "minlon": -73.9247832, + "maxlat": 40.8231056, + "maxlon": -73.9246644 + }, + "nodes": [ + 2409024139, + 2409024154, + 2409024162, + 2409024153 + ], + "geometry": [ + { "lat": 40.8231056, "lon": -73.9246644 }, + { "lat": 40.8230039, "lon": -73.9247006 }, + { "lat": 40.8229130, "lon": -73.9247344 }, + { "lat": 40.8227933, "lon": -73.9247832 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1322135985, + "bounds": { + "minlat": 40.7348199, + "minlon": -73.9367761, + "maxlat": 40.7350026, + "maxlon": -73.9362915 + }, + "nodes": [ + 12234932568, + 7509146403, + 11155242466, + 42896778 + ], + "geometry": [ + { "lat": 40.7348199, "lon": -73.9367761 }, + { "lat": 40.7349204, "lon": -73.9365056 }, + { "lat": 40.7349465, "lon": -73.9364377 }, + { "lat": 40.7350026, "lon": -73.9362915 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left;through|none", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 1322468320, + "bounds": { + "minlat": 40.7533185, + "minlon": -73.9066866, + "maxlat": 40.7533822, + "maxlon": -73.9061236 + }, + "nodes": [ + 7762260265, + 8088629335, + 13784327138, + 9188727827, + 12237397386 + ], + "geometry": [ + { "lat": 40.7533185, "lon": -73.9066866 }, + { "lat": 40.7533297, "lon": -73.9065902 }, + { "lat": 40.7533408, "lon": -73.9064947 }, + { "lat": 40.7533626, "lon": -73.9063083 }, + { "lat": 40.7533822, "lon": -73.9061236 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "ref": "NY 25A", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "through|through|none", + "turn:lanes:forward": "none|merge_to_left" + } +}, +{ + "type": "way", + "id": 1322822615, + "bounds": { + "minlat": 40.7287143, + "minlon": -74.0088012, + "maxlat": 40.7289373, + "maxlon": -74.0087676 + }, + "nodes": [ + 12240649888, + 12240649889, + 12240649887 + ], + "geometry": [ + { "lat": 40.7287143, "lon": -74.0088012 }, + { "lat": 40.7288655, "lon": -74.0087782 }, + { "lat": 40.7289373, "lon": -74.0087676 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1322824962, + "bounds": { + "minlat": 40.8757899, + "minlon": -73.9083857, + "maxlat": 40.8761088, + "maxlon": -73.9079638 + }, + "nodes": [ + 12240704147, + 10128431588, + 5871416389 + ], + "geometry": [ + { "lat": 40.8761088, "lon": -73.9079638 }, + { "lat": 40.8758983, "lon": -73.9082410 }, + { "lat": 40.8757899, "lon": -73.9083857 } + ], + "tags": { + "highway": "primary", + "lanes": "1", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "through;right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1323450362, + "bounds": { + "minlat": 40.8056693, + "minlon": -73.9386884, + "maxlat": 40.8057906, + "maxlon": -73.9384003 + }, + "nodes": [ + 589928028, + 589928042 + ], + "geometry": [ + { "lat": 40.8056693, "lon": -73.9384003 }, + { "lat": 40.8057906, "lon": -73.9386884 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxheight": "12'4\"", + "name": "East 126th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1323450363, + "bounds": { + "minlat": 40.8049979, + "minlon": -73.9388881, + "maxlat": 40.8056693, + "maxlon": -73.9384003 + }, + "nodes": [ + 42444456, + 10169411295, + 10169411290, + 589928028 + ], + "geometry": [ + { "lat": 40.8049979, "lon": -73.9388881 }, + { "lat": 40.8050988, "lon": -73.9388148 }, + { "lat": 40.8056192, "lon": -73.9384368 }, + { "lat": 40.8056693, "lon": -73.9384003 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1323518925, + "bounds": { + "minlat": 40.7354098, + "minlon": -73.9175191, + "maxlat": 40.7371563, + "maxlon": -73.9170885 + }, + "nodes": [ + 42807700, + 42807701, + 10084797212, + 10084797213, + 10084797214, + 42807705, + 10084797216, + 10084797215, + 10084798217, + 42807707, + 10084798218, + 10084798219, + 10084798220, + 10084798221, + 10084798222, + 42807711, + 10084798223, + 10084798224, + 42799951 + ], + "geometry": [ + { "lat": 40.7371563, "lon": -73.9170885 }, + { "lat": 40.7369104, "lon": -73.9171793 }, + { "lat": 40.7368720, "lon": -73.9171901 }, + { "lat": 40.7368351, "lon": -73.9171990 }, + { "lat": 40.7367992, "lon": -73.9172067 }, + { "lat": 40.7367590, "lon": -73.9172104 }, + { "lat": 40.7367221, "lon": -73.9172085 }, + { "lat": 40.7366835, "lon": -73.9172023 }, + { "lat": 40.7366447, "lon": -73.9171927 }, + { "lat": 40.7365931, "lon": -73.9171772 }, + { "lat": 40.7365609, "lon": -73.9171688 }, + { "lat": 40.7365192, "lon": -73.9171640 }, + { "lat": 40.7364822, "lon": -73.9171633 }, + { "lat": 40.7364447, "lon": -73.9171660 }, + { "lat": 40.7364082, "lon": -73.9171743 }, + { "lat": 40.7363747, "lon": -73.9171856 }, + { "lat": 40.7355599, "lon": -73.9174681 }, + { "lat": 40.7355108, "lon": -73.9174820 }, + { "lat": 40.7354098, "lon": -73.9175191 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "20 mph", + "name": "49th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1323557249, + "bounds": { + "minlat": 40.7176578, + "minlon": -73.9482970, + "maxlat": 40.7186221, + "maxlon": -73.9467600 + }, + "nodes": [ + 12247713627, + 12247713629, + 9802943806, + 12247713628 + ], + "geometry": [ + { "lat": 40.7186221, "lon": -73.9467600 }, + { "lat": 40.7185717, "lon": -73.9468451 }, + { "lat": 40.7177150, "lon": -73.9482048 }, + { "lat": 40.7176578, "lon": -73.9482970 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1323673672, + "bounds": { + "minlat": 40.8194633, + "minlon": -73.9763663, + "maxlat": 40.8194942, + "maxlon": -73.9762796 + }, + "nodes": [ + 5362514128, + 12248805799 + ], + "geometry": [ + { "lat": 40.8194633, "lon": -73.9762796 }, + { "lat": 40.8194942, "lon": -73.9763663 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1323673673, + "bounds": { + "minlat": 40.8197696, + "minlon": -73.9761162, + "maxlat": 40.8199411, + "maxlon": -73.9760253 + }, + "nodes": [ + 5362526576, + 5362514141, + 5362513016, + 5362513017, + 12248805795 + ], + "geometry": [ + { "lat": 40.8199411, "lon": -73.9761162 }, + { "lat": 40.8199172, "lon": -73.9760957 }, + { "lat": 40.8198512, "lon": -73.9760541 }, + { "lat": 40.8197944, "lon": -73.9760300 }, + { "lat": 40.8197696, "lon": -73.9760253 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1323673675, + "bounds": { + "minlat": 40.8190175, + "minlon": -73.9768707, + "maxlat": 40.8190380, + "maxlon": -73.9766813 + }, + "nodes": [ + 3441690509, + 12248805793, + 12248807201, + 5362513010, + 12248805794, + 3441690511 + ], + "geometry": [ + { "lat": 40.8190248, "lon": -73.9768707 }, + { "lat": 40.8190183, "lon": -73.9768333 }, + { "lat": 40.8190175, "lon": -73.9768137 }, + { "lat": 40.8190185, "lon": -73.9767919 }, + { "lat": 40.8190230, "lon": -73.9767591 }, + { "lat": 40.8190380, "lon": -73.9766813 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1323673676, + "bounds": { + "minlat": 40.8188609, + "minlon": -73.9786010, + "maxlat": 40.8189038, + "maxlon": -73.9785727 + }, + "nodes": [ + 5362516652, + 7672312272 + ], + "geometry": [ + { "lat": 40.8189038, "lon": -73.9785727 }, + { "lat": 40.8188609, "lon": -73.9786010 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1323673678, + "bounds": { + "minlat": 40.8194335, + "minlon": -73.9768413, + "maxlat": 40.8196005, + "maxlon": -73.9764051 + }, + "nodes": [ + 3441700282, + 3441700281, + 3441690512 + ], + "geometry": [ + { "lat": 40.8196005, "lon": -73.9768413 }, + { "lat": 40.8195173, "lon": -73.9766241 }, + { "lat": 40.8194335, "lon": -73.9764051 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1323673679, + "bounds": { + "minlat": 40.8171860, + "minlon": -73.9804089, + "maxlat": 40.8172980, + "maxlon": -73.9803630 + }, + "nodes": [ + 7672312064, + 5362534446 + ], + "geometry": [ + { "lat": 40.8171860, "lon": -73.9803630 }, + { "lat": 40.8172980, "lon": -73.9804089 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1323673681, + "bounds": { + "minlat": 40.8171057, + "minlon": -73.9803630, + "maxlat": 40.8171860, + "maxlon": -73.9802926 + }, + "nodes": [ + 1750475814, + 12248807216, + 5362534445, + 7672312064 + ], + "geometry": [ + { "lat": 40.8171057, "lon": -73.9802926 }, + { "lat": 40.8171234, "lon": -73.9803175 }, + { "lat": 40.8171428, "lon": -73.9803367 }, + { "lat": 40.8171860, "lon": -73.9803630 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1323673682, + "bounds": { + "minlat": 40.8189038, + "minlon": -73.9787316, + "maxlat": 40.8189570, + "maxlon": -73.9785727 + }, + "nodes": [ + 4205789001, + 12248805782, + 12248805784, + 12248805783, + 5362516652 + ], + "geometry": [ + { "lat": 40.8189570, "lon": -73.9787316 }, + { "lat": 40.8189206, "lon": -73.9786565 }, + { "lat": 40.8189136, "lon": -73.9786337 }, + { "lat": 40.8189075, "lon": -73.9786053 }, + { "lat": 40.8189038, "lon": -73.9785727 } + ], + "tags": { + "bicycle": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1323673685, + "bounds": { + "minlat": 40.8163072, + "minlon": -73.9793790, + "maxlat": 40.8166547, + "maxlon": -73.9791446 + }, + "nodes": [ + 1750475800, + 1750475783 + ], + "geometry": [ + { "lat": 40.8166547, "lon": -73.9791446 }, + { "lat": 40.8163072, "lon": -73.9793790 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1323743210, + "bounds": { + "minlat": 40.7071709, + "minlon": -74.0034776, + "maxlat": 40.7073288, + "maxlon": -74.0031428 + }, + "nodes": [ + 2825125706, + 2825125709, + 2825125597, + 2825125701, + 2825125592, + 2825125593, + 2825125583, + 2825125578, + 12249392858, + 2825125568, + 2825125576, + 2825125573, + 2825125586, + 2825125580, + 2825125588, + 2825125574, + 12249392857, + 2825125584, + 2825125599, + 2825125706 + ], + "geometry": [ + { "lat": 40.7073087, "lon": -74.0031428 }, + { "lat": 40.7073288, "lon": -74.0031599 }, + { "lat": 40.7072692, "lon": -74.0032796 }, + { "lat": 40.7072803, "lon": -74.0032891 }, + { "lat": 40.7072479, "lon": -74.0033543 }, + { "lat": 40.7072556, "lon": -74.0033609 }, + { "lat": 40.7072222, "lon": -74.0034281 }, + { "lat": 40.7071975, "lon": -74.0034776 }, + { "lat": 40.7071815, "lon": -74.0034639 }, + { "lat": 40.7071709, "lon": -74.0034548 }, + { "lat": 40.7071936, "lon": -74.0034092 }, + { "lat": 40.7071910, "lon": -74.0034070 }, + { "lat": 40.7072266, "lon": -74.0033355 }, + { "lat": 40.7072056, "lon": -74.0033175 }, + { "lat": 40.7072332, "lon": -74.0032619 }, + { "lat": 40.7071919, "lon": -74.0032263 }, + { "lat": 40.7072083, "lon": -74.0031933 }, + { "lat": 40.7072232, "lon": -74.0031634 }, + { "lat": 40.7072759, "lon": -74.0032087 }, + { "lat": 40.7073087, "lon": -74.0031428 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "name": "Cannon's Walk" + } +}, +{ + "type": "way", + "id": 1324173785, + "bounds": { + "minlat": 40.7453033, + "minlon": -73.9337556, + "maxlat": 40.7453783, + "maxlon": -73.9336787 + }, + "nodes": [ + 9645094518, + 12253429629 + ], + "geometry": [ + { "lat": 40.7453783, "lon": -73.9337556 }, + { "lat": 40.7453033, "lon": -73.9336787 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:separation": "jersey_barrier", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Queens Boulevard", + "oneway": "no", + "ref": "NY 25", + "sidewalk:both": "separate", + "turn:lanes:forward": "through|through;right|right", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 1324173787, + "bounds": { + "minlat": 40.7453783, + "minlon": -73.9339889, + "maxlat": 40.7456057, + "maxlon": -73.9337556 + }, + "nodes": [ + 12299669168, + 9645094518 + ], + "geometry": [ + { "lat": 40.7456057, "lon": -73.9339889 }, + { "lat": 40.7453783, "lon": -73.9337556 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:separation": "jersey_barrier", + "hgv": "designated", + "highway": "primary", + "name": "Queens Boulevard", + "oneway": "no", + "ref": "NY 25", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 1324328010, + "bounds": { + "minlat": 40.7728001, + "minlon": -73.9342983, + "maxlat": 40.7730239, + "maxlon": -73.9341526 + }, + "nodes": [ + 12254790233, + 2457195039, + 2883518402 + ], + "geometry": [ + { "lat": 40.7730239, "lon": -73.9341526 }, + { "lat": 40.7729296, "lon": -73.9342323 }, + { "lat": 40.7728001, "lon": -73.9342983 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1324454181, + "bounds": { + "minlat": 40.8346688, + "minlon": -73.9906202, + "maxlat": 40.8349487, + "maxlon": -73.9906105 + }, + "nodes": [ + 660545485, + 103148000, + 4205620793 + ], + "geometry": [ + { "lat": 40.8346688, "lon": -73.9906202 }, + { "lat": 40.8346880, "lon": -73.9906190 }, + { "lat": 40.8349487, "lon": -73.9906105 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 1324488838, + "bounds": { + "minlat": 40.7236306, + "minlon": -74.0047955, + "maxlat": 40.7240550, + "maxlon": -74.0043800 + }, + "nodes": [ + 42430143, + 4890320316, + 4890320305, + 42432127 + ], + "geometry": [ + { "lat": 40.7236306, "lon": -74.0047955 }, + { "lat": 40.7237001, "lon": -74.0047191 }, + { "lat": 40.7240061, "lon": -74.0044264 }, + { "lat": 40.7240550, "lon": -74.0043800 } + ], + "tags": { + "highway": "pedestrian", + "name": "Sullivan Street", + "name:etymology:wikidata": "Q886420", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q15032064", + "wikipedia": "en:Sullivan Street" + } +}, +{ + "type": "way", + "id": 1325557963, + "bounds": { + "minlat": 40.7112329, + "minlon": -73.9848266, + "maxlat": 40.7112389, + "maxlon": -73.9847412 + }, + "nodes": [ + 42438529, + 11038072103 + ], + "geometry": [ + { "lat": 40.7112329, "lon": -73.9848266 }, + { "lat": 40.7112389, "lon": -73.9847412 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1326467311, + "bounds": { + "minlat": 40.7298362, + "minlon": -73.9748867, + "maxlat": 40.7309338, + "maxlon": -73.9740521 + }, + "nodes": [ + 4161568989, + 13837911357, + 9142398635, + 9142398634, + 1989931098, + 4161568870, + 1927758595 + ], + "geometry": [ + { "lat": 40.7309338, "lon": -73.9740521 }, + { "lat": 40.7309047, "lon": -73.9740874 }, + { "lat": 40.7308725, "lon": -73.9741189 }, + { "lat": 40.7307714, "lon": -73.9741946 }, + { "lat": 40.7302384, "lon": -73.9745883 }, + { "lat": 40.7298940, "lon": -73.9748446 }, + { "lat": 40.7298362, "lon": -73.9748867 } + ], + "tags": { + "highway": "service", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C Service Road", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1326467312, + "bounds": { + "minlat": 40.7297709, + "minlon": -73.9748867, + "maxlat": 40.7298362, + "maxlon": -73.9747274 + }, + "nodes": [ + 42437830, + 4298778321, + 1927758595 + ], + "geometry": [ + { "lat": 40.7297709, "lon": -73.9747274 }, + { "lat": 40.7298100, "lon": -73.9748252 }, + { "lat": 40.7298362, "lon": -73.9748867 } + ], + "tags": { + "alt_name": "East 16th Street", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C Loop", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1326516428, + "bounds": { + "minlat": 40.7296952, + "minlon": -74.0021934, + "maxlat": 40.7297532, + "maxlon": -74.0021622 + }, + "nodes": [ + 5854302557, + 42430187 + ], + "geometry": [ + { "lat": 40.7296952, "lon": -74.0021934 }, + { "lat": 40.7297532, "lon": -74.0021622 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1327171444, + "bounds": { + "minlat": 40.7787095, + "minlon": -74.0114111, + "maxlat": 40.7791619, + "maxlon": -74.0110023 + }, + "nodes": [ + 2631530266, + 4205818435 + ], + "geometry": [ + { "lat": 40.7791619, "lon": -74.0110023 }, + { "lat": 40.7787095, "lon": -74.0114111 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:backward": "through|through;right", + "turn:lanes:forward": "through|through" + } +}, +{ + "type": "way", + "id": 1327864483, + "bounds": { + "minlat": 40.7062327, + "minlon": -74.0045221, + "maxlat": 40.7063038, + "maxlon": -74.0044579 + }, + "nodes": [ + 12285397815, + 12285397816, + 12285397817, + 8094558971 + ], + "geometry": [ + { "lat": 40.7063038, "lon": -74.0044579 }, + { "lat": 40.7062833, "lon": -74.0044907 }, + { "lat": 40.7062594, "lon": -74.0045221 }, + { "lat": 40.7062327, "lon": -74.0045173 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1328073118, + "bounds": { + "minlat": 40.7907315, + "minlon": -73.9991539, + "maxlat": 40.7908646, + "maxlon": -73.9990701 + }, + "nodes": [ + 103861696, + 1691389651 + ], + "geometry": [ + { "lat": 40.7907315, "lon": -73.9991539 }, + { "lat": 40.7908646, "lon": -73.9990701 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1328091961, + "bounds": { + "minlat": 40.7769073, + "minlon": -74.0122062, + "maxlat": 40.7774345, + "maxlon": -74.0122043 + }, + "nodes": [ + 2837060024, + 1286793952 + ], + "geometry": [ + { "lat": 40.7774345, "lon": -74.0122062 }, + { "lat": 40.7769073, "lon": -74.0122043 } + ], + "tags": { + "cycleway:both": "no", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:forward": "through|through" + } +}, +{ + "type": "way", + "id": 1328104335, + "bounds": { + "minlat": 40.7116012, + "minlon": -73.9942643, + "maxlat": 40.7116449, + "maxlon": -73.9937667 + }, + "nodes": [ + 42448430, + 7830788144, + 11148406715 + ], + "geometry": [ + { "lat": 40.7116012, "lon": -73.9942643 }, + { "lat": 40.7116089, "lon": -73.9941761 }, + { "lat": 40.7116449, "lon": -73.9937667 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Monroe Street", + "name:etymology:wikidata": "Q11815", + "name:ko": "먼로 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:right:restriction:conditional": "no_parking @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1328164798, + "bounds": { + "minlat": 40.7298199, + "minlon": -74.0104866, + "maxlat": 40.7298330, + "maxlon": -74.0103484 + }, + "nodes": [ + 9607729579, + 3874650186 + ], + "geometry": [ + { "lat": 40.7298330, "lon": -74.0104866 }, + { "lat": 40.7298199, "lon": -74.0103484 } + ], + "tags": { + "bicycle": "designated", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Clarkson Street", + "name:etymology:wikidata": "Q6790308", + "name:ko": "클락슨 스트리트", + "name:ru": "Кларксон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1328165847, + "bounds": { + "minlat": 40.7324206, + "minlon": -74.0102359, + "maxlat": 40.7324328, + "maxlon": -74.0100954 + }, + "nodes": [ + 4872777172, + 12161966228, + 12161966229, + 42436903 + ], + "geometry": [ + { "lat": 40.7324328, "lon": -74.0100954 }, + { "lat": 40.7324276, "lon": -74.0101357 }, + { "lat": 40.7324229, "lon": -74.0101828 }, + { "lat": 40.7324206, "lon": -74.0102359 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Christopher Street", + "name:ru": "Кристофер-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1086990", + "wikipedia": "en:Christopher Street" + } +}, +{ + "type": "way", + "id": 1328728619, + "bounds": { + "minlat": 40.7360313, + "minlon": -73.9791465, + "maxlat": 40.7362172, + "maxlon": -73.9790127 + }, + "nodes": [ + 12293285194, + 3686061883, + 387184869 + ], + "geometry": [ + { "lat": 40.7360313, "lon": -73.9791465 }, + { "lat": 40.7361574, "lon": -73.9790565 }, + { "lat": 40.7362172, "lon": -73.9790127 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|none", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1328728620, + "bounds": { + "minlat": 40.7362172, + "minlon": -73.9790127, + "maxlat": 40.7363833, + "maxlon": -73.9789173 + }, + "nodes": [ + 387184869, + 3686062427, + 4207683794 + ], + "geometry": [ + { "lat": 40.7362172, "lon": -73.9790127 }, + { "lat": 40.7362873, "lon": -73.9789890 }, + { "lat": 40.7363833, "lon": -73.9789173 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1328748817, + "bounds": { + "minlat": 40.7666902, + "minlon": -74.0187731, + "maxlat": 40.7671941, + "maxlon": -74.0184053 + }, + "nodes": [ + 4205818421, + 2837053797 + ], + "geometry": [ + { "lat": 40.7666902, "lon": -74.0187731 }, + { "lat": 40.7671941, "lon": -74.0184053 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1328748818, + "bounds": { + "minlat": 40.7673912, + "minlon": -74.0182484, + "maxlat": 40.7675954, + "maxlon": -74.0180773 + }, + "nodes": [ + 7748277720, + 12293447514 + ], + "geometry": [ + { "lat": 40.7673912, "lon": -74.0182484 }, + { "lat": 40.7675954, "lon": -74.0180773 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Port Imperial Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:backward": "left;through|through;right" + } +}, +{ + "type": "way", + "id": 1328748819, + "bounds": { + "minlat": 40.7671941, + "minlon": -74.0184053, + "maxlat": 40.7673912, + "maxlon": -74.0182484 + }, + "nodes": [ + 2837053797, + 7748277720 + ], + "geometry": [ + { "lat": 40.7671941, "lon": -74.0184053 }, + { "lat": 40.7673912, "lon": -74.0182484 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Port Imperial Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:backward": "left;through|through" + } +}, +{ + "type": "way", + "id": 1328757898, + "bounds": { + "minlat": 40.8018303, + "minlon": -73.9936928, + "maxlat": 40.8026427, + "maxlon": -73.9936683 + }, + "nodes": [ + 103137003, + 5481963126, + 103137004, + 103137006, + 12293531307 + ], + "geometry": [ + { "lat": 40.8018303, "lon": -73.9936683 }, + { "lat": 40.8019363, "lon": -73.9936718 }, + { "lat": 40.8020547, "lon": -73.9936757 }, + { "lat": 40.8025435, "lon": -73.9936905 }, + { "lat": 40.8026427, "lon": -73.9936928 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1328757899, + "bounds": { + "minlat": 40.8026427, + "minlon": -73.9936985, + "maxlat": 40.8028932, + "maxlon": -73.9936928 + }, + "nodes": [ + 12293531307, + 103137010 + ], + "geometry": [ + { "lat": 40.8026427, "lon": -73.9936928 }, + { "lat": 40.8028932, "lon": -73.9936985 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|none|none" + } +}, +{ + "type": "way", + "id": 1328761674, + "bounds": { + "minlat": 40.7694348, + "minlon": -74.0162075, + "maxlat": 40.7695906, + "maxlon": -74.0160657 + }, + "nodes": [ + 12966011025, + 307870558 + ], + "geometry": [ + { "lat": 40.7695906, "lon": -74.0160657 }, + { "lat": 40.7694348, "lon": -74.0162075 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Port Imperial Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:forward": "left;through|through" + } +}, +{ + "type": "way", + "id": 1328782410, + "bounds": { + "minlat": 40.7692237, + "minlon": -74.0164120, + "maxlat": 40.7694348, + "maxlon": -74.0162075 + }, + "nodes": [ + 12293747423, + 7297023021, + 307870558 + ], + "geometry": [ + { "lat": 40.7692237, "lon": -74.0164120 }, + { "lat": 40.7693878, "lon": -74.0162510 }, + { "lat": 40.7694348, "lon": -74.0162075 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Port Imperial Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no", + "turn:lanes:forward": "through|through;right" + } +}, +{ + "type": "way", + "id": 1328785217, + "bounds": { + "minlat": 40.7033264, + "minlon": -74.0083431, + "maxlat": 40.7038253, + "maxlon": -74.0077746 + }, + "nodes": [ + 42421951, + 8276468439, + 9349728579, + 10170966590, + 42421946 + ], + "geometry": [ + { "lat": 40.7033264, "lon": -74.0077746 }, + { "lat": 40.7033780, "lon": -74.0078247 }, + { "lat": 40.7037457, "lon": -74.0082518 }, + { "lat": 40.7037626, "lon": -74.0082690 }, + { "lat": 40.7038253, "lon": -74.0083431 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Old Slip", + "name:ko": "올드 슬립", + "name:ru": "Олд-Слип", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Old Slip", + "tiger:zip_left": "10005" + } +}, +{ + "type": "way", + "id": 1329007293, + "bounds": { + "minlat": 40.7071606, + "minlon": -74.0160093, + "maxlat": 40.7075066, + "maxlon": -74.0158706 + }, + "nodes": [ + 12296032333, + 8821317920, + 246909454 + ], + "geometry": [ + { "lat": 40.7075066, "lon": -74.0158706 }, + { "lat": 40.7073719, "lon": -74.0159233 }, + { "lat": 40.7071606, "lon": -74.0160093 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "through|through|through", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1329011784, + "bounds": { + "minlat": 40.7024415, + "minlon": -74.0129525, + "maxlat": 40.7028762, + "maxlon": -74.0128371 + }, + "nodes": [ + 42426747, + 1805328855, + 12296071741 + ], + "geometry": [ + { "lat": 40.7024415, "lon": -74.0128371 }, + { "lat": 40.7025405, "lon": -74.0128618 }, + { "lat": 40.7028762, "lon": -74.0129525 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Whitehall Street", + "name:etymology:wikidata": "Q214820", + "name:ko": "화이트홀 스트리트", + "name:ru": "Уайтхолл-стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Whitehall", + "tiger:name_type": "St", + "tiger:zip_right": "10004", + "wikidata": "Q7995998", + "wikipedia": "en:Whitehall Street" + } +}, +{ + "type": "way", + "id": 1329025923, + "bounds": { + "minlat": 40.7031234, + "minlon": -74.0130727, + "maxlat": 40.7033428, + "maxlon": -74.0130194 + }, + "nodes": [ + 12296160184, + 11042972592, + 7335430609, + 42444355 + ], + "geometry": [ + { "lat": 40.7033428, "lon": -74.0130727 }, + { "lat": 40.7032378, "lon": -74.0130476 }, + { "lat": 40.7031905, "lon": -74.0130362 }, + { "lat": 40.7031234, "lon": -74.0130194 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Whitehall Street", + "name:etymology:wikidata": "Q214820", + "name:ko": "화이트홀 스트리트", + "name:ru": "Уайтхолл-стрит", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Whitehall", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "turn:lanes": "right", + "wikidata": "Q7995998", + "wikipedia": "en:Whitehall Street" + } +}, +{ + "type": "way", + "id": 1329032447, + "bounds": { + "minlat": 40.7017865, + "minlon": -74.0113016, + "maxlat": 40.7022573, + "maxlon": -74.0111627 + }, + "nodes": [ + 12296243938, + 11040439459, + 7689146645, + 42431902 + ], + "geometry": [ + { "lat": 40.7022573, "lon": -74.0113016 }, + { "lat": 40.7019081, "lon": -74.0111985 }, + { "lat": 40.7018626, "lon": -74.0111851 }, + { "lat": 40.7017865, "lon": -74.0111627 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broad Street", + "name:ko": "브로드 스트리트", + "name:ru": "Брод-стрит", + "oneway": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broad", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "turn:lanes:forward": "right", + "wikidata": "Q2613951", + "wikipedia": "en:Broad Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329042388, + "bounds": { + "minlat": 40.7029659, + "minlon": -74.0115133, + "maxlat": 40.7032173, + "maxlon": -74.0105380 + }, + "nodes": [ + 11040280570, + 11040439528, + 13706432633, + 6163414886, + 7706695208, + 42431898 + ], + "geometry": [ + { "lat": 40.7032173, "lon": -74.0105380 }, + { "lat": 40.7031633, "lon": -74.0107473 }, + { "lat": 40.7031319, "lon": -74.0108693 }, + { "lat": 40.7030823, "lon": -74.0110619 }, + { "lat": 40.7029938, "lon": -74.0114049 }, + { "lat": 40.7029659, "lon": -74.0115133 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004" + } +}, +{ + "type": "way", + "id": 1329049242, + "bounds": { + "minlat": 40.7032048, + "minlon": -74.0082883, + "maxlat": 40.7034754, + "maxlon": -74.0079952 + }, + "nodes": [ + 8629148771, + 4145794851, + 42421965 + ], + "geometry": [ + { "lat": 40.7034754, "lon": -74.0082883 }, + { "lat": 40.7032474, "lon": -74.0080385 }, + { "lat": 40.7032048, "lon": -74.0079952 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxlength": "45 ft", + "maxspeed": "20 mph", + "name": "Old Slip", + "name:ko": "올드 슬립", + "name:ru": "Олд-Слип", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Old Slip", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "turn:lanes": "right", + "wikidata": "Q13859648" + } +}, +{ + "type": "way", + "id": 1329060631, + "bounds": { + "minlat": 40.7031234, + "minlon": -74.0130194, + "maxlat": 40.7032112, + "maxlon": -74.0126385 + }, + "nodes": [ + 42444360, + 1772096967, + 12296844733, + 7706695204, + 11050101039, + 42444355 + ], + "geometry": [ + { "lat": 40.7032112, "lon": -74.0126385 }, + { "lat": 40.7031574, "lon": -74.0128563 }, + { "lat": 40.7031465, "lon": -74.0128960 }, + { "lat": 40.7031417, "lon": -74.0129154 }, + { "lat": 40.7031324, "lon": -74.0129683 }, + { "lat": 40.7031234, "lon": -74.0130194 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "turn:lanes": "through", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329117813, + "bounds": { + "minlat": 40.7562896, + "minlon": -73.9402289, + "maxlat": 40.7563072, + "maxlon": -73.9402121 + }, + "nodes": [ + 8393785142, + 5487837582 + ], + "geometry": [ + { "lat": 40.7563072, "lon": -73.9402121 }, + { "lat": 40.7562896, "lon": -73.9402289 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1329117814, + "bounds": { + "minlat": 40.7547625, + "minlon": -73.9398564, + "maxlat": 40.7563894, + "maxlon": -73.9367890 + }, + "nodes": [ + 8393785146, + 8314985394, + 42892924, + 8315005327, + 8354876678, + 42892927, + 8354876671, + 8315005339, + 42861193, + 8314985404, + 8253424633, + 42818570 + ], + "geometry": [ + { "lat": 40.7563894, "lon": -73.9398564 }, + { "lat": 40.7560198, "lon": -73.9391618 }, + { "lat": 40.7559800, "lon": -73.9390870 }, + { "lat": 40.7559442, "lon": -73.9390186 }, + { "lat": 40.7556092, "lon": -73.9383917 }, + { "lat": 40.7555570, "lon": -73.9382940 }, + { "lat": 40.7555152, "lon": -73.9382156 }, + { "lat": 40.7552035, "lon": -73.9376307 }, + { "lat": 40.7551600, "lon": -73.9375490 }, + { "lat": 40.7551266, "lon": -73.9374850 }, + { "lat": 40.7547943, "lon": -73.9368487 }, + { "lat": 40.7547625, "lon": -73.9367890 } + ], + "tags": { + "highway": "residential", + "name": "39th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1329123712, + "bounds": { + "minlat": 40.7035808, + "minlon": -74.0119073, + "maxlat": 40.7035836, + "maxlon": -74.0115938 + }, + "nodes": [ + 12297101803, + 12297101802, + 8276468754, + 11002109566 + ], + "geometry": [ + { "lat": 40.7035836, "lon": -74.0119073 }, + { "lat": 40.7035817, "lon": -74.0117653 }, + { "lat": 40.7035811, "lon": -74.0117194 }, + { "lat": 40.7035808, "lon": -74.0115938 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bridge Street", + "name:ko": "브리지 스트리트", + "name:ru": "Бридж-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bridge", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "tiger:zip_right": "10004", + "turn:lanes": "left;right", + "wikidata": "Q4966296", + "wikipedia": "en:Bridge Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329297917, + "bounds": { + "minlat": 40.8528155, + "minlon": -73.9690465, + "maxlat": 40.8530975, + "maxlon": -73.9688717 + }, + "nodes": [ + 6902027598, + 5179132364 + ], + "geometry": [ + { "lat": 40.8530975, "lon": -73.9688717 }, + { "lat": 40.8528155, "lon": -73.9690465 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1329298301, + "bounds": { + "minlat": 40.8779447, + "minlon": -73.9819946, + "maxlat": 40.8780260, + "maxlon": -73.9818597 + }, + "nodes": [ + 6889705666, + 13525915014, + 12298744486 + ], + "geometry": [ + { "lat": 40.8780260, "lon": -73.9819946 }, + { "lat": 40.8779829, "lon": -73.9819231 }, + { "lat": 40.8779447, "lon": -73.9818597 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "turn:lanes:backward": "right" + } +}, +{ + "type": "way", + "id": 1329325953, + "bounds": { + "minlat": 40.7138581, + "minlon": -74.0144271, + "maxlat": 40.7140037, + "maxlon": -74.0140984 + }, + "nodes": [ + 12298932633, + 4143835081, + 246866806 + ], + "geometry": [ + { "lat": 40.7140037, "lon": -74.0144271 }, + { "lat": 40.7138875, "lon": -74.0141677 }, + { "lat": 40.7138581, "lon": -74.0140984 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Vesey Street", + "name:etymology:wikidata": "Q8019717", + "name:etymology:wikipedia": "en:William Vessey", + "name:ko": "비지 스트리트", + "name:ru": "Визи-стрит", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|right", + "wikidata": "Q1592975", + "wikipedia": "en:Vesey Street" + } +}, +{ + "type": "way", + "id": 1329353970, + "bounds": { + "minlat": 40.7074736, + "minlon": -74.0129583, + "maxlat": 40.7077766, + "maxlon": -74.0119639 + }, + "nodes": [ + 42446622, + 4206997176, + 7335430597, + 42428368 + ], + "geometry": [ + { "lat": 40.7077766, "lon": -74.0129583 }, + { "lat": 40.7077439, "lon": -74.0128587 }, + { "lat": 40.7074947, "lon": -74.0120278 }, + { "lat": 40.7074736, "lon": -74.0119639 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Rector Street", + "name:ko": "렉터 스트리트", + "name:ru": "Ректор-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "18'0\"", + "wikidata": "Q14135438" + } +}, +{ + "type": "way", + "id": 1329363280, + "bounds": { + "minlat": 40.7079260, + "minlon": -74.0001461, + "maxlat": 40.7081350, + "maxlon": -73.9997130 + }, + "nodes": [ + 12299314857, + 12299314858, + 12299314859, + 12299314860 + ], + "geometry": [ + { "lat": 40.7081350, "lon": -73.9997130 }, + { "lat": 40.7081161, "lon": -73.9998065 }, + { "lat": 40.7080562, "lon": -73.9999156 }, + { "lat": 40.7079260, "lon": -74.0001461 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329363281, + "bounds": { + "minlat": 40.7081350, + "minlon": -73.9997130, + "maxlat": 40.7085457, + "maxlon": -73.9990003 + }, + "nodes": [ + 12299314857, + 278609760, + 42444108 + ], + "geometry": [ + { "lat": 40.7081350, "lon": -73.9997130 }, + { "lat": 40.7082903, "lon": -73.9994418 }, + { "lat": 40.7085457, "lon": -73.9990003 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329363282, + "bounds": { + "minlat": 40.7072908, + "minlon": -74.0013145, + "maxlat": 40.7078803, + "maxlon": -74.0001149 + }, + "nodes": [ + 42433218, + 12299314855, + 12299314854, + 12299314856, + 12299314864, + 11032985226, + 42438476 + ], + "geometry": [ + { "lat": 40.7072908, "lon": -74.0013145 }, + { "lat": 40.7072942, "lon": -74.0012026 }, + { "lat": 40.7074090, "lon": -74.0009920 }, + { "lat": 40.7074303, "lon": -74.0009571 }, + { "lat": 40.7075009, "lon": -74.0008213 }, + { "lat": 40.7078517, "lon": -74.0001679 }, + { "lat": 40.7078803, "lon": -74.0001149 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329369154, + "bounds": { + "minlat": 40.7135233, + "minlon": -73.9987515, + "maxlat": 40.7142286, + "maxlon": -73.9986438 + }, + "nodes": [ + 12299367071, + 8827539961, + 11153640055, + 1773055865 + ], + "geometry": [ + { "lat": 40.7142286, "lon": -73.9987515 }, + { "lat": 40.7137019, "lon": -73.9986666 }, + { "lat": 40.7136525, "lon": -73.9986603 }, + { "lat": 40.7135233, "lon": -73.9986438 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Mott Street", + "name:en": "Mott Street", + "name:ko": "모트 스트리트", + "name:zh": "勿街", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6918632", + "wikipedia": "en:Mott Street" + } +}, +{ + "type": "way", + "id": 1329369155, + "bounds": { + "minlat": 40.7142286, + "minlon": -73.9988660, + "maxlat": 40.7149950, + "maxlon": -73.9987515 + }, + "nodes": [ + 42432241, + 12299472214, + 7134393817, + 42432238, + 12299367071 + ], + "geometry": [ + { "lat": 40.7149950, "lon": -73.9988660 }, + { "lat": 40.7145867, "lon": -73.9988078 }, + { "lat": 40.7145588, "lon": -73.9988044 }, + { "lat": 40.7145118, "lon": -73.9987971 }, + { "lat": 40.7142286, "lon": -73.9987515 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Mott Street", + "name:en": "Mott Street", + "name:ko": "모트 스트리트", + "name:zh": "勿街", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6918632", + "wikipedia": "en:Mott Street" + } +}, +{ + "type": "way", + "id": 1329370689, + "bounds": { + "minlat": 40.7113238, + "minlon": -74.0157844, + "maxlat": 40.7115841, + "maxlon": -74.0151629 + }, + "nodes": [ + 42422026, + 5215015525, + 12299394198 + ], + "geometry": [ + { "lat": 40.7115841, "lon": -74.0157844 }, + { "lat": 40.7115173, "lon": -74.0156279 }, + { "lat": 40.7113238, "lon": -74.0151629 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "layer": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "oneway": "no", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329371709, + "bounds": { + "minlat": 40.8798043, + "minlon": -73.9798527, + "maxlat": 40.8802433, + "maxlon": -73.9794226 + }, + "nodes": [ + 103098028, + 9239567790, + 9239580219, + 13130708078, + 103187441 + ], + "geometry": [ + { "lat": 40.8798043, "lon": -73.9798527 }, + { "lat": 40.8799027, "lon": -73.9797413 }, + { "lat": 40.8801003, "lon": -73.9795532 }, + { "lat": 40.8801839, "lon": -73.9794769 }, + { "lat": 40.8802433, "lon": -73.9794226 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "oneway": "yes", + "ref": "CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes": "none|none|merge_to_left" + } +}, +{ + "type": "way", + "id": 1329381227, + "bounds": { + "minlat": 40.7053168, + "minlon": -74.0090373, + "maxlat": 40.7053435, + "maxlon": -74.0088028 + }, + "nodes": [ + 12299470508, + 8276468702, + 42429504 + ], + "geometry": [ + { "lat": 40.7053435, "lon": -74.0088028 }, + { "lat": 40.7053229, "lon": -74.0089912 }, + { "lat": 40.7053168, "lon": -74.0090373 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Beaver Street", + "name:etymology:wikidata": "Q47542", + "name:ko": "비버 스트리트", + "name:ru": "Бивер-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Beaver", + "tiger:name_type": "St", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "turn:lanes": "left;right", + "wikidata": "Q13463781", + "wikipedia": "en:Beaver Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329383445, + "bounds": { + "minlat": 40.7052888, + "minlon": -74.0092279, + "maxlat": 40.7053168, + "maxlon": -74.0090373 + }, + "nodes": [ + 12299494538, + 8276468884, + 42429504 + ], + "geometry": [ + { "lat": 40.7052888, "lon": -74.0092279 }, + { "lat": 40.7053095, "lon": -74.0090942 }, + { "lat": 40.7053168, "lon": -74.0090373 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Beaver Street", + "name:etymology:wikidata": "Q47542", + "name:ko": "비버 스트리트", + "name:ru": "Бивер-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Beaver", + "tiger:name_type": "St", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "turn:lanes": "left;right", + "wikidata": "Q13463781", + "wikipedia": "en:Beaver Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329384424, + "bounds": { + "minlat": 40.7090829, + "minlon": -74.0146848, + "maxlat": 40.7093552, + "maxlon": -74.0140498 + }, + "nodes": [ + 42452310, + 8262936707, + 5815243835 + ], + "geometry": [ + { "lat": 40.7090829, "lon": -74.0140498 }, + { "lat": 40.7091161, "lon": -74.0141257 }, + { "lat": 40.7093552, "lon": -74.0146848 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Carlisle Street", + "name:ko": "칼라일 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "parking:right:taxi": "designated", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "width": "14'4\"" + } +}, +{ + "type": "way", + "id": 1329384425, + "bounds": { + "minlat": 40.7089951, + "minlon": -74.0140498, + "maxlat": 40.7090829, + "maxlon": -74.0138504 + }, + "nodes": [ + 12299507913, + 11415663154, + 8262936704, + 42452310 + ], + "geometry": [ + { "lat": 40.7089951, "lon": -74.0138504 }, + { "lat": 40.7090414, "lon": -74.0139578 }, + { "lat": 40.7090601, "lon": -74.0139989 }, + { "lat": 40.7090829, "lon": -74.0140498 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Carlisle Street", + "name:ko": "칼라일 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "parking:right:taxi": "designated", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "turn:lanes": "left;through", + "width": "14'4\"" + } +}, +{ + "type": "way", + "id": 1329395987, + "bounds": { + "minlat": 40.7097517, + "minlon": -74.0021938, + "maxlat": 40.7099073, + "maxlon": -74.0019960 + }, + "nodes": [ + 12299575296, + 12299575295 + ], + "geometry": [ + { "lat": 40.7099073, "lon": -74.0021938 }, + { "lat": 40.7097517, "lon": -74.0019960 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Frankfort Street", + "name:etymology:wikidata": "Q1794", + "name:ko": "프랭크포트 스트리트", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1329395988, + "bounds": { + "minlat": 40.7094916, + "minlon": -74.0019960, + "maxlat": 40.7097517, + "maxlon": -74.0016570 + }, + "nodes": [ + 12299575295, + 4885904496, + 42422283 + ], + "geometry": [ + { "lat": 40.7097517, "lon": -74.0019960 }, + { "lat": 40.7095851, "lon": -74.0017841 }, + { "lat": 40.7094916, "lon": -74.0016570 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Frankfort Street", + "name:etymology:wikidata": "Q1794", + "name:ko": "프랭크포트 스트리트", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1329459988, + "bounds": { + "minlat": 40.8014525, + "minlon": -73.9345304, + "maxlat": 40.8019596, + "maxlon": -73.9341730 + }, + "nodes": [ + 3786728679, + 4980851555, + 42443105 + ], + "geometry": [ + { "lat": 40.8019596, "lon": -73.9341730 }, + { "lat": 40.8015093, "lon": -73.9344897 }, + { "lat": 40.8014525, "lon": -73.9345304 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "turn:lanes": "through|through|none|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329547278, + "bounds": { + "minlat": 40.7091344, + "minlon": -74.0021248, + "maxlat": 40.7092417, + "maxlon": -74.0019810 + }, + "nodes": [ + 12300929901, + 10583318293 + ], + "geometry": [ + { "lat": 40.7092417, "lon": -74.0019810 }, + { "lat": 40.7091344, "lon": -74.0021248 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329564964, + "bounds": { + "minlat": 40.7027291, + "minlon": -74.0083337, + "maxlat": 40.7032004, + "maxlon": -74.0075899 + }, + "nodes": [ + 42451409, + 9907745081 + ], + "geometry": [ + { "lat": 40.7027291, "lon": -74.0083337 }, + { "lat": 40.7032004, "lon": -74.0075899 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_base_1": "South St Viaduct", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1329577833, + "bounds": { + "minlat": 40.7061184, + "minlon": -74.0032036, + "maxlat": 40.7070267, + "maxlon": -74.0016215 + }, + "nodes": [ + 205019740, + 9907745096, + 9907745095, + 205019742, + 4145704197 + ], + "geometry": [ + { "lat": 40.7070267, "lon": -74.0016215 }, + { "lat": 40.7065192, "lon": -74.0025166 }, + { "lat": 40.7063830, "lon": -74.0027587 }, + { "lat": 40.7062529, "lon": -74.0029805 }, + { "lat": 40.7061184, "lon": -74.0032036 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "lanes:bus": "1", + "lanes:bus:conditional": "Mo-Fri 14:00-20:00", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1329580350, + "bounds": { + "minlat": 40.7086080, + "minlon": -73.9985675, + "maxlat": 40.7086699, + "maxlon": -73.9983873 + }, + "nodes": [ + 12301218036, + 4158644588 + ], + "geometry": [ + { "lat": 40.7086699, "lon": -73.9983873 }, + { "lat": 40.7086080, "lon": -73.9985675 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "bridge": "yes", + "destination:lanes": "||Brooklyn Bridge;Manhattan Civic Center;New York Presbyterian Lower Manhattan Hospital;Pace University", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "turn:lanes": "through|slight_right|slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1329580351, + "bounds": { + "minlat": 40.7080872, + "minlon": -73.9995644, + "maxlat": 40.7086080, + "maxlon": -73.9985675 + }, + "nodes": [ + 4158644588, + 205024448, + 4157854434, + 205024449, + 205024450, + 4157854441 + ], + "geometry": [ + { "lat": 40.7086080, "lon": -73.9985675 }, + { "lat": 40.7085151, "lon": -73.9987438 }, + { "lat": 40.7084565, "lon": -73.9988836 }, + { "lat": 40.7083951, "lon": -73.9990133 }, + { "lat": 40.7083186, "lon": -73.9991615 }, + { "lat": 40.7080872, "lon": -73.9995644 } + ], + "tags": { + "alt_name": "South Street Viaduct", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "1", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "ref": "FDR", + "surface": "concrete", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1329581586, + "bounds": { + "minlat": 40.7131883, + "minlon": -74.0131236, + "maxlat": 40.7134329, + "maxlon": -74.0125748 + }, + "nodes": [ + 6865282549, + 8279851517, + 12301250732 + ], + "geometry": [ + { "lat": 40.7131883, "lon": -74.0125748 }, + { "lat": 40.7132222, "lon": -74.0126468 }, + { "lat": 40.7134329, "lon": -74.0131236 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "foot": "yes", + "hgv": "local", + "highway": "unclassified", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "permit", + "name": "Vesey Street", + "name:etymology:wikidata": "Q8019717", + "name:etymology:wikipedia": "en:William Vessey", + "name:ko": "비지 스트리트", + "name:ru": "Визи-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592975", + "wikipedia": "en:Vesey Street" + } +}, +{ + "type": "way", + "id": 1329583056, + "bounds": { + "minlat": 40.7138796, + "minlon": -73.9995713, + "maxlat": 40.7139391, + "maxlon": -73.9994469 + }, + "nodes": [ + 3234401386, + 7132405548 + ], + "geometry": [ + { "lat": 40.7138796, "lon": -73.9994469 }, + { "lat": 40.7139391, "lon": -73.9995713 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Worth Street", + "name:etymology:wikidata": "Q3568734", + "name:ko": "워스 스트리트", + "old_name": "Anthony Street", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|through", + "wikidata": "Q1318800", + "wikipedia": "en:Worth Street" + } +}, +{ + "type": "way", + "id": 1329583840, + "bounds": { + "minlat": 40.7031643, + "minlon": -74.0144503, + "maxlat": 40.7036181, + "maxlon": -74.0144028 + }, + "nodes": [ + 42444353, + 2034011067, + 7685185613, + 1772137389, + 2034011071, + 2034011074, + 7685185610, + 42444479 + ], + "geometry": [ + { "lat": 40.7031643, "lon": -74.0144385 }, + { "lat": 40.7031936, "lon": -74.0144454 }, + { "lat": 40.7032280, "lon": -74.0144487 }, + { "lat": 40.7032627, "lon": -74.0144503 }, + { "lat": 40.7033315, "lon": -74.0144502 }, + { "lat": 40.7034011, "lon": -74.0144422 }, + { "lat": 40.7035715, "lon": -74.0144118 }, + { "lat": 40.7036181, "lon": -74.0144028 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "State Street", + "name:etymology:wikidata": "Q1384", + "name:ko": "스테이트 스트리트", + "name:ru": "Стейт-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "State", + "tiger:name_type": "St", + "turn:lanes:backward": "through", + "wikidata": "Q13461917", + "wikipedia": "en:State Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329585283, + "bounds": { + "minlat": 40.7134052, + "minlon": -74.0037255, + "maxlat": 40.7136103, + "maxlon": -74.0035418 + }, + "nodes": [ + 12301282830, + 9121386336, + 42427278 + ], + "geometry": [ + { "lat": 40.7134052, "lon": -74.0037255 }, + { "lat": 40.7135362, "lon": -74.0036118 }, + { "lat": 40.7136103, "lon": -74.0035418 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|through", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329595924, + "bounds": { + "minlat": 40.7140953, + "minlon": -73.9974280, + "maxlat": 40.7144395, + "maxlon": -73.9971755 + }, + "nodes": [ + 1773066054, + 9584768447 + ], + "geometry": [ + { "lat": 40.7140953, "lon": -73.9974280 }, + { "lat": 40.7144395, "lon": -73.9971755 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "parking:right:restriction": "no_parking", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 1329602834, + "bounds": { + "minlat": 40.7092439, + "minlon": -73.9960219, + "maxlat": 40.7095745, + "maxlon": -73.9959330 + }, + "nodes": [ + 588455857, + 4382842401, + 12301435728 + ], + "geometry": [ + { "lat": 40.7092439, "lon": -73.9959330 }, + { "lat": 40.7093127, "lon": -73.9959485 }, + { "lat": 40.7095745, "lon": -73.9960219 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Slip", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 슬립", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1329605763, + "bounds": { + "minlat": 40.7125698, + "minlon": -74.0148687, + "maxlat": 40.7126044, + "maxlon": -74.0145948 + }, + "nodes": [ + 12301486320, + 12301486319, + 7334235842 + ], + "geometry": [ + { "lat": 40.7126044, "lon": -74.0148687 }, + { "lat": 40.7125698, "lon": -74.0147055 }, + { "lat": 40.7125862, "lon": -74.0145948 } + ], + "tags": { + "access": "permit", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1329605764, + "bounds": { + "minlat": 40.7125862, + "minlon": -74.0148407, + "maxlat": 40.7126797, + "maxlon": -74.0145948 + }, + "nodes": [ + 7334235842, + 11423870993, + 7334235843 + ], + "geometry": [ + { "lat": 40.7125862, "lon": -74.0145948 }, + { "lat": 40.7126435, "lon": -74.0146830 }, + { "lat": 40.7126797, "lon": -74.0148407 } + ], + "tags": { + "access": "permit", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1329616266, + "bounds": { + "minlat": 40.7050087, + "minlon": -74.0133273, + "maxlat": 40.7050379, + "maxlon": -74.0130687 + }, + "nodes": [ + 12301550794, + 4739552816, + 10316226091, + 10316226092, + 10316226093, + 42428529 + ], + "geometry": [ + { "lat": 40.7050302, "lon": -74.0130687 }, + { "lat": 40.7050379, "lon": -74.0132484 }, + { "lat": 40.7050349, "lon": -74.0132746 }, + { "lat": 40.7050285, "lon": -74.0132950 }, + { "lat": 40.7050214, "lon": -74.0133107 }, + { "lat": 40.7050087, "lon": -74.0133273 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "15 mph", + "name": "Beaver Street", + "name:etymology:wikidata": "Q47542", + "name:ko": "비버 스트리트", + "name:ru": "Бивер-стрит", + "oneway": "yes", + "parking:left:restriction": "no_parking", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Beaver", + "tiger:name_type": "St", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "turn:lanes": "left", + "wikidata": "Q13463781", + "wikipedia": "en:Beaver Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329616559, + "bounds": { + "minlat": 40.7091384, + "minlon": -74.0133454, + "maxlat": 40.7092710, + "maxlon": -74.0130890 + }, + "nodes": [ + 12301556795, + 8262936674, + 10288473129, + 10288473130, + 42436187 + ], + "geometry": [ + { "lat": 40.7092710, "lon": -74.0133454 }, + { "lat": 40.7091956, "lon": -74.0131711 }, + { "lat": 40.7091789, "lon": -74.0131355 }, + { "lat": 40.7091591, "lon": -74.0131064 }, + { "lat": 40.7091384, "lon": -74.0130890 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Albany Street", + "name:etymology:wikidata": "Q24861", + "name:ko": "앨버니 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "right", + "wikidata": "Q29110247", + "wikipedia": "en:Albany Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329617892, + "bounds": { + "minlat": 40.7112718, + "minlon": -74.0055370, + "maxlat": 40.7114023, + "maxlon": -74.0053968 + }, + "nodes": [ + 12301581919, + 8404036868 + ], + "geometry": [ + { "lat": 40.7114023, "lon": -74.0055370 }, + { "lat": 40.7112718, "lon": -74.0053968 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Spruce Street", + "name:ko": "스프루스 스트리트", + "name:ru": "Спрус-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q20858363", + "wikipedia": "en:Spruce Street" + } +}, +{ + "type": "way", + "id": 1329623279, + "bounds": { + "minlat": 40.7102075, + "minlon": -73.9967842, + "maxlat": 40.7113738, + "maxlon": -73.9965045 + }, + "nodes": [ + 42433302, + 4885959785, + 4382842417, + 4121409402 + ], + "geometry": [ + { "lat": 40.7113738, "lon": -73.9967842 }, + { "lat": 40.7113146, "lon": -73.9967687 }, + { "lat": 40.7102641, "lon": -73.9965185 }, + { "lat": 40.7102075, "lon": -73.9965045 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Street", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 스트리트", + "oneway": "yes", + "parking:left": "street_side", + "parking:left:direction": "back_in", + "parking:left:orientation": "diagonal", + "parking:right": "lane", + "parking:right:orientation": "parallel" + } +}, +{ + "type": "way", + "id": 1329843417, + "bounds": { + "minlat": 40.7121256, + "minlon": -73.9966100, + "maxlat": 40.7121906, + "maxlon": -73.9958141 + }, + "nodes": [ + 2496639020, + 11506378191, + 12304024420 + ], + "geometry": [ + { "lat": 40.7121906, "lon": -73.9958141 }, + { "lat": 40.7121817, "lon": -73.9959232 }, + { "lat": 40.7121256, "lon": -73.9966100 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 16:00-19:00)", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-10:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329844597, + "bounds": { + "minlat": 40.7121906, + "minlon": -73.9958141, + "maxlat": 40.7122501, + "maxlon": -73.9951220 + }, + "nodes": [ + 2496639020, + 12304007686 + ], + "geometry": [ + { "lat": 40.7121906, "lon": -73.9958141 }, + { "lat": 40.7122501, "lon": -73.9951220 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 07:00-10:00)", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 16:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329874868, + "bounds": { + "minlat": 40.7055470, + "minlon": -74.0180041, + "maxlat": 40.7061729, + "maxlon": -74.0179342 + }, + "nodes": [ + 2053820774, + 42433699, + 2053820786, + 42433702, + 2053820792, + 42433705, + 4207000189, + 42433712 + ], + "geometry": [ + { "lat": 40.7055470, "lon": -74.0179645 }, + { "lat": 40.7056319, "lon": -74.0179852 }, + { "lat": 40.7057089, "lon": -74.0179975 }, + { "lat": 40.7057849, "lon": -74.0180041 }, + { "lat": 40.7058673, "lon": -74.0180041 }, + { "lat": 40.7059341, "lon": -74.0179943 }, + { "lat": 40.7060614, "lon": -74.0179680 }, + { "lat": 40.7061729, "lon": -74.0179342 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "maxspeed:conditional": "20 mph @ (Mo-Fr 07:00-18:00; PH off; SH off)", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bowling Grn", + "tiger:name_base_1": "Battery", + "tiger:name_type_1": "Pl", + "tiger:zip_left": "10280", + "tiger:zip_right": "10280", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 1329876948, + "bounds": { + "minlat": 40.7134455, + "minlon": -73.9976411, + "maxlat": 40.7134688, + "maxlon": -73.9972984 + }, + "nodes": [ + 588455856, + 12314040157, + 11153640069, + 42433537 + ], + "geometry": [ + { "lat": 40.7134475, "lon": -73.9976411 }, + { "lat": 40.7134455, "lon": -73.9976071 }, + { "lat": 40.7134633, "lon": -73.9973672 }, + { "lat": 40.7134688, "lon": -73.9972984 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through;right", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329878979, + "bounds": { + "minlat": 40.7140740, + "minlon": -73.9970601, + "maxlat": 40.7140818, + "maxlon": -73.9969532 + }, + "nodes": [ + 12196074943, + 10200096942 + ], + "geometry": [ + { "lat": 40.7140818, "lon": -73.9969532 }, + { "lat": 40.7140740, "lon": -73.9970601 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxheight": "default", + "maxspeed": "20 mph", + "name": "Division Street", + "name:ko": "디비전 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction": "no_parking", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1329880548, + "bounds": { + "minlat": 40.7099712, + "minlon": -74.0146879, + "maxlat": 40.7102289, + "maxlon": -74.0146121 + }, + "nodes": [ + 11413750595, + 11413750596, + 9682039657 + ], + "geometry": [ + { "lat": 40.7099712, "lon": -74.0146879 }, + { "lat": 40.7101480, "lon": -74.0146341 }, + { "lat": 40.7102289, "lon": -74.0146121 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1329887723, + "bounds": { + "minlat": 40.7137104, + "minlon": -73.9994469, + "maxlat": 40.7138796, + "maxlon": -73.9990891 + }, + "nodes": [ + 12304374264, + 3234401386 + ], + "geometry": [ + { "lat": 40.7137104, "lon": -73.9990891 }, + { "lat": 40.7138796, "lon": -73.9994469 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "residential", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Worth Street", + "name:etymology:wikidata": "Q3568734", + "name:ko": "워스 스트리트", + "old_name": "Anthony Street", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1318800", + "wikipedia": "en:Worth Street" + } +}, +{ + "type": "way", + "id": 1329888403, + "bounds": { + "minlat": 40.7113952, + "minlon": -74.0000875, + "maxlat": 40.7117851, + "maxlon": -73.9997076 + }, + "nodes": [ + 12304399522, + 11153640075, + 42437749 + ], + "geometry": [ + { "lat": 40.7113952, "lon": -74.0000875 }, + { "lat": 40.7116754, "lon": -73.9998048 }, + { "lat": 40.7117851, "lon": -73.9997076 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Saint James Place", + "name:etymology:wikidata": "Q7588396", + "name:ko": "세인트 제임스 플레이스", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 08:00-18:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|right" + } +}, +{ + "type": "way", + "id": 1329888759, + "bounds": { + "minlat": 40.7103198, + "minlon": -74.0148909, + "maxlat": 40.7107999, + "maxlon": -74.0147460 + }, + "nodes": [ + 10223354307, + 7816666406 + ], + "geometry": [ + { "lat": 40.7107999, "lon": -74.0147460 }, + { "lat": 40.7103198, "lon": -74.0148909 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete", + "turn:lanes": "through|through|through|right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1329897839, + "bounds": { + "minlat": 40.7115573, + "minlon": -74.0038627, + "maxlat": 40.7117892, + "maxlon": -74.0035824 + }, + "nodes": [ + 12304459478, + 12924890405 + ], + "geometry": [ + { "lat": 40.7115573, "lon": -74.0035824 }, + { "lat": 40.7117892, "lon": -74.0038627 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "destination:lanes": "Centre Street;Chambers Street|Park Row South", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "layer": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "through|slight_right" + } +}, +{ + "type": "way", + "id": 1330250133, + "bounds": { + "minlat": 40.7531414, + "minlon": -73.9403506, + "maxlat": 40.7533236, + "maxlon": -73.9400168 + }, + "nodes": [ + 12307902937, + 12307902938, + 12307902943, + 12307902942 + ], + "geometry": [ + { "lat": 40.7533236, "lon": -73.9403506 }, + { "lat": 40.7532826, "lon": -73.9402832 }, + { "lat": 40.7532682, "lon": -73.9402560 }, + { "lat": 40.7531414, "lon": -73.9400168 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1330336244, + "bounds": { + "minlat": 40.8139459, + "minlon": -73.9839778, + "maxlat": 40.8141557, + "maxlon": -73.9837295 + }, + "nodes": [ + 5482328569, + 103137078 + ], + "geometry": [ + { "lat": 40.8141557, "lon": -73.9837295 }, + { "lat": 40.8139459, "lon": -73.9839778 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 1330457706, + "bounds": { + "minlat": 40.8515220, + "minlon": -73.9284108, + "maxlat": 40.8517397, + "maxlon": -73.9282498 + }, + "nodes": [ + 12310128877, + 4207702050 + ], + "geometry": [ + { "lat": 40.8515220, "lon": -73.9284108 }, + { "lat": 40.8517397, "lon": -73.9282498 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1330579541, + "bounds": { + "minlat": 40.7145189, + "minlon": -74.0024513, + "maxlat": 40.7147793, + "maxlon": -74.0023169 + }, + "nodes": [ + 1253071031, + 3762820096, + 4215580879 + ], + "geometry": [ + { "lat": 40.7145189, "lon": -74.0024513 }, + { "lat": 40.7145739, "lon": -74.0024221 }, + { "lat": 40.7147793, "lon": -74.0023169 } + ], + "tags": { + "alt_name": "Foley Square", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|right", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1330592855, + "bounds": { + "minlat": 40.7152793, + "minlon": -73.9966073, + "maxlat": 40.7154852, + "maxlon": -73.9964822 + }, + "nodes": [ + 12311493516, + 541467364 + ], + "geometry": [ + { "lat": 40.7152793, "lon": -73.9966073 }, + { "lat": 40.7154852, "lon": -73.9964822 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "||right", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 1330593111, + "bounds": { + "minlat": 40.7145386, + "minlon": -74.0060039, + "maxlat": 40.7146811, + "maxlon": -74.0058866 + }, + "nodes": [ + 42428402, + 8279851428, + 4207150077 + ], + "geometry": [ + { "lat": 40.7146811, "lon": -74.0058866 }, + { "lat": 40.7146325, "lon": -74.0059265 }, + { "lat": 40.7145386, "lon": -74.0060039 } + ], + "tags": { + "bus:lanes": "yes|yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00 - 18:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1330595857, + "bounds": { + "minlat": 40.7120732, + "minlon": -74.0136005, + "maxlat": 40.7127437, + "maxlon": -74.0119776 + }, + "nodes": [ + 1431790464, + 10282972480, + 10285341119 + ], + "geometry": [ + { "lat": 40.7120732, "lon": -74.0119776 }, + { "lat": 40.7121161, "lon": -74.0120753 }, + { "lat": 40.7127437, "lon": -74.0136005 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "no", + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "no", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "name:ru": "Фултон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1330602153, + "bounds": { + "minlat": 40.7126792, + "minlon": -74.0086556, + "maxlat": 40.7129871, + "maxlon": -74.0079693 + }, + "nodes": [ + 12311576431, + 6150637877 + ], + "geometry": [ + { "lat": 40.7126792, "lon": -74.0079693 }, + { "lat": 40.7129871, "lon": -74.0086556 } + ], + "tags": { + "cycleway:both": "lane", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Park Place", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 플레이스", + "name:ru": "Парк-Плейс", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1330602154, + "bounds": { + "minlat": 40.7129871, + "minlon": -74.0092488, + "maxlat": 40.7132501, + "maxlon": -74.0086556 + }, + "nodes": [ + 6150637877, + 12311576432, + 8279851448, + 42430004 + ], + "geometry": [ + { "lat": 40.7129871, "lon": -74.0086556 }, + { "lat": 40.7131841, "lon": -74.0091001 }, + { "lat": 40.7132021, "lon": -74.0091403 }, + { "lat": 40.7132501, "lon": -74.0092488 } + ], + "tags": { + "cycleway:both": "lane", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Park Place", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 플레이스", + "name:ru": "Парк-Плейс", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "right" + } +}, +{ + "type": "way", + "id": 1330612923, + "bounds": { + "minlat": 40.7133129, + "minlon": -74.0048174, + "maxlat": 40.7134819, + "maxlon": -74.0044520 + }, + "nodes": [ + 42431602, + 12311624272 + ], + "geometry": [ + { "lat": 40.7134819, "lon": -74.0048174 }, + { "lat": 40.7133129, "lon": -74.0044520 } + ], + "tags": { + "hgv": "destination", + "highway": "unclassified", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "oneway": "no", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1330616920, + "bounds": { + "minlat": 40.7108332, + "minlon": -74.0064780, + "maxlat": 40.7112310, + "maxlon": -74.0060631 + }, + "nodes": [ + 12311690168, + 8404036871, + 8281922067, + 42456492 + ], + "geometry": [ + { "lat": 40.7108332, "lon": -74.0060631 }, + { "lat": 40.7108512, "lon": -74.0060819 }, + { "lat": 40.7112006, "lon": -74.0064466 }, + { "lat": 40.7112310, "lon": -74.0064780 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Beekman Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "비크먼 스트리트", + "name:ru": "Бикман-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1330616921, + "bounds": { + "minlat": 40.7096642, + "minlon": -74.0054271, + "maxlat": 40.7102335, + "maxlon": -74.0048220 + }, + "nodes": [ + 42457311, + 4985377322, + 12311690169 + ], + "geometry": [ + { "lat": 40.7096642, "lon": -74.0048220 }, + { "lat": 40.7097380, "lon": -74.0049099 }, + { "lat": 40.7102335, "lon": -74.0054271 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Beekman Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "비크먼 스트리트", + "name:ru": "Бикман-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1330631026, + "bounds": { + "minlat": 40.7097518, + "minlon": -74.0119788, + "maxlat": 40.7098438, + "maxlon": -74.0117600 + }, + "nodes": [ + 8262936616, + 12311833363 + ], + "geometry": [ + { "lat": 40.7097518, "lon": -74.0117600 }, + { "lat": 40.7098438, "lon": -74.0119788 } + ], + "tags": { + "access": "no", + "bicycle": "yes", + "cycleway:both": "no", + "foot": "yes", + "highway": "unclassified", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "no", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1330686271, + "bounds": { + "minlat": 40.8759388, + "minlon": -73.9254011, + "maxlat": 40.8764453, + "maxlon": -73.9242206 + }, + "nodes": [ + 60915166, + 12063642862, + 374460018, + 12063642860, + 12063642859, + 12063642861, + 12063723018, + 8584784545, + 8584784546, + 8584784547 + ], + "geometry": [ + { "lat": 40.8764453, "lon": -73.9242206 }, + { "lat": 40.8763897, "lon": -73.9243253 }, + { "lat": 40.8763367, "lon": -73.9244357 }, + { "lat": 40.8762734, "lon": -73.9245719 }, + { "lat": 40.8762162, "lon": -73.9247014 }, + { "lat": 40.8761605, "lon": -73.9248307 }, + { "lat": 40.8761100, "lon": -73.9249583 }, + { "lat": 40.8760412, "lon": -73.9251476 }, + { "lat": 40.8759930, "lon": -73.9252701 }, + { "lat": 40.8759388, "lon": -73.9254011 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1330686445, + "bounds": { + "minlat": 40.8591362, + "minlon": -73.9373859, + "maxlat": 40.8645128, + "maxlon": -73.9337455 + }, + "nodes": [ + 42458659, + 60916142, + 60916143, + 60916397, + 60916586, + 60916587, + 60916588, + 374503696, + 60916589, + 42458661, + 374503712, + 12312211131 + ], + "geometry": [ + { "lat": 40.8645128, "lon": -73.9337455 }, + { "lat": 40.8640746, "lon": -73.9339849 }, + { "lat": 40.8633996, "lon": -73.9344140 }, + { "lat": 40.8622625, "lon": -73.9352066 }, + { "lat": 40.8619834, "lon": -73.9353782 }, + { "lat": 40.8609459, "lon": -73.9359332 }, + { "lat": 40.8604969, "lon": -73.9362279 }, + { "lat": 40.8603021, "lon": -73.9363739 }, + { "lat": 40.8599256, "lon": -73.9367000 }, + { "lat": 40.8593868, "lon": -73.9371721 }, + { "lat": 40.8591661, "lon": -73.9373609 }, + { "lat": 40.8591362, "lon": -73.9373859 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1330686446, + "bounds": { + "minlat": 40.8556050, + "minlon": -73.9400797, + "maxlat": 40.8591362, + "maxlon": -73.9373859 + }, + "nodes": [ + 12312211131, + 60916554, + 374504099, + 60916555, + 60916556, + 12312236338 + ], + "geometry": [ + { "lat": 40.8591362, "lon": -73.9373859 }, + { "lat": 40.8585105, "lon": -73.9379102 }, + { "lat": 40.8582378, "lon": -73.9381248 }, + { "lat": 40.8572056, "lon": -73.9389144 }, + { "lat": 40.8562773, "lon": -73.9396011 }, + { "lat": 40.8556050, "lon": -73.9400797 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "concrete", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1331175662, + "bounds": { + "minlat": 40.8774428, + "minlon": -73.9500269, + "maxlat": 40.8790973, + "maxlon": -73.9492515 + }, + "nodes": [ + 65634431, + 65634430, + 65634428, + 62885821, + 12316726915 + ], + "geometry": [ + { "lat": 40.8790973, "lon": -73.9492515 }, + { "lat": 40.8787232, "lon": -73.9494588 }, + { "lat": 40.8783468, "lon": -73.9496476 }, + { "lat": 40.8779946, "lon": -73.9497958 }, + { "lat": 40.8774428, "lon": -73.9500269 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "55 mph", + "motorcar": "designated", + "name": "Palisades Interstate Parkway", + "noref": "yes", + "oneway": "yes", + "short_name": "Palisades Parkway", + "turn:lanes": "none|none|merge_to_left" + } +}, +{ + "type": "way", + "id": 1331249437, + "bounds": { + "minlat": 40.7725320, + "minlon": -73.9796538, + "maxlat": 40.7727458, + "maxlon": -73.9794003 + }, + "nodes": [ + 12317594556, + 12317594557, + 12317594558, + 12317594559, + 12317594560, + 12317594561, + 12317594562, + 12317594563, + 12317594564, + 12317594565, + 12317594566, + 12317594567, + 12317594568, + 12317594569, + 12317594571, + 12317594570 + ], + "geometry": [ + { "lat": 40.7727458, "lon": -73.9795147 }, + { "lat": 40.7726895, "lon": -73.9795782 }, + { "lat": 40.7726533, "lon": -73.9796341 }, + { "lat": 40.7726228, "lon": -73.9796521 }, + { "lat": 40.7725948, "lon": -73.9796538 }, + { "lat": 40.7725749, "lon": -73.9796431 }, + { "lat": 40.7725575, "lon": -73.9796135 }, + { "lat": 40.7725357, "lon": -73.9795503 }, + { "lat": 40.7725320, "lon": -73.9795100 }, + { "lat": 40.7725382, "lon": -73.9794911 }, + { "lat": 40.7725550, "lon": -73.9794714 }, + { "lat": 40.7725836, "lon": -73.9794582 }, + { "lat": 40.7726153, "lon": -73.9794574 }, + { "lat": 40.7726390, "lon": -73.9794549 }, + { "lat": 40.7726569, "lon": -73.9794435 }, + { "lat": 40.7726959, "lon": -73.9794003 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1331269253, + "bounds": { + "minlat": 40.7140037, + "minlon": -74.0149739, + "maxlat": 40.7142486, + "maxlon": -74.0144271 + }, + "nodes": [ + 12317725601, + 12298932633 + ], + "geometry": [ + { "lat": 40.7142486, "lon": -74.0149739 }, + { "lat": 40.7140037, "lon": -74.0144271 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "residential", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "20 mph", + "name": "Vesey Street", + "name:etymology:wikidata": "Q8019717", + "name:etymology:wikipedia": "en:William Vessey", + "name:ko": "비지 스트리트", + "name:ru": "Визи-стрит", + "oneway": "no", + "parking:both:restriction": "no_standing", + "parking:left:taxi": "designated", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592975", + "wikipedia": "en:Vesey Street" + } +}, +{ + "type": "way", + "id": 1331316308, + "bounds": { + "minlat": 40.7104557, + "minlon": -74.0162332, + "maxlat": 40.7110816, + "maxlon": -74.0159908 + }, + "nodes": [ + 7816666405, + 4281671258 + ], + "geometry": [ + { "lat": 40.7104557, "lon": -74.0162332 }, + { "lat": 40.7110816, "lon": -74.0159908 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "South End Avenue", + "name:ko": "사우스 엔드 애비뉴", + "oneway": "no", + "parking:both": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-10:00)", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1331346903, + "bounds": { + "minlat": 40.7084570, + "minlon": -74.0175184, + "maxlat": 40.7085101, + "maxlon": -74.0173980 + }, + "nodes": [ + 42427412, + 1659428714 + ], + "geometry": [ + { "lat": 40.7084570, "lon": -74.0173980 }, + { "lat": 40.7085101, "lon": -74.0175184 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1331348271, + "bounds": { + "minlat": 40.7084534, + "minlon": -74.0173980, + "maxlat": 40.7084601, + "maxlon": -74.0172378 + }, + "nodes": [ + 1659428663, + 10291808118, + 42427412 + ], + "geometry": [ + { "lat": 40.7084534, "lon": -74.0172378 }, + { "lat": 40.7084601, "lon": -74.0172860 }, + { "lat": 40.7084570, "lon": -74.0173980 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1331353392, + "bounds": { + "minlat": 40.7049720, + "minlon": -74.0164593, + "maxlat": 40.7050741, + "maxlon": -74.0164194 + }, + "nodes": [ + 4145432042, + 4145432046, + 4145432052, + 42451375 + ], + "geometry": [ + { "lat": 40.7049720, "lon": -74.0164194 }, + { "lat": 40.7050025, "lon": -74.0164296 }, + { "lat": 40.7050397, "lon": -74.0164494 }, + { "lat": 40.7050741, "lon": -74.0164593 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1331371889, + "bounds": { + "minlat": 40.7090728, + "minlon": -74.0170821, + "maxlat": 40.7091119, + "maxlon": -74.0169509 + }, + "nodes": [ + 4876645553, + 42440628 + ], + "geometry": [ + { "lat": 40.7091119, "lon": -74.0170821 }, + { "lat": 40.7090728, "lon": -74.0169509 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Rector Place", + "name:ko": "렉터 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1331371890, + "bounds": { + "minlat": 40.7093360, + "minlon": -74.0168969, + "maxlat": 40.7093652, + "maxlon": -74.0167650 + }, + "nodes": [ + 42440639, + 4876645540 + ], + "geometry": [ + { "lat": 40.7093360, "lon": -74.0167650 }, + { "lat": 40.7093652, "lon": -74.0168969 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Rector Place", + "name:ko": "렉터 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1331536475, + "bounds": { + "minlat": 40.7650873, + "minlon": -74.0193432, + "maxlat": 40.7654019, + "maxlon": -74.0186114 + }, + "nodes": [ + 12320029174, + 13166863079, + 12320029173 + ], + "geometry": [ + { "lat": 40.7654019, "lon": -74.0193432 }, + { "lat": 40.7651481, "lon": -74.0187529 }, + { "lat": 40.7650873, "lon": -74.0186114 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1331536476, + "bounds": { + "minlat": 40.7654132, + "minlon": -74.0195966, + "maxlat": 40.7655248, + "maxlon": -74.0193694 + }, + "nodes": [ + 12320029183, + 12320029171, + 12320029172 + ], + "geometry": [ + { "lat": 40.7655248, "lon": -74.0195966 }, + { "lat": 40.7654816, "lon": -74.0195166 }, + { "lat": 40.7654132, "lon": -74.0193694 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1331536477, + "bounds": { + "minlat": 40.7654019, + "minlon": -74.0193694, + "maxlat": 40.7654132, + "maxlon": -74.0193432 + }, + "nodes": [ + 12320029172, + 12320029174 + ], + "geometry": [ + { "lat": 40.7654132, "lon": -74.0193694 }, + { "lat": 40.7654019, "lon": -74.0193432 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1331536478, + "bounds": { + "minlat": 40.7645941, + "minlon": -74.0199429, + "maxlat": 40.7650340, + "maxlon": -74.0187308 + }, + "nodes": [ + 12320029175, + 12320029176, + 12320029177, + 12320029178, + 12320029179, + 12320029180, + 12320029182, + 12320029181 + ], + "geometry": [ + { "lat": 40.7649209, "lon": -74.0187308 }, + { "lat": 40.7650340, "lon": -74.0190064 }, + { "lat": 40.7646353, "lon": -74.0193269 }, + { "lat": 40.7646071, "lon": -74.0193726 }, + { "lat": 40.7645941, "lon": -74.0194098 }, + { "lat": 40.7645963, "lon": -74.0194685 }, + { "lat": 40.7647463, "lon": -74.0198353 }, + { "lat": 40.7646108, "lon": -74.0199429 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1331906622, + "bounds": { + "minlat": 40.7083634, + "minlon": -74.0173980, + "maxlat": 40.7084570, + "maxlon": -74.0173040 + }, + "nodes": [ + 42427412, + 10291808119, + 9802614800 + ], + "geometry": [ + { "lat": 40.7084570, "lon": -74.0173980 }, + { "lat": 40.7083854, "lon": -74.0173372 }, + { "lat": 40.7083634, "lon": -74.0173040 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1331908314, + "bounds": { + "minlat": 40.7080574, + "minlon": -74.0166595, + "maxlat": 40.7081012, + "maxlon": -74.0165623 + }, + "nodes": [ + 9802614802, + 9802614803 + ], + "geometry": [ + { "lat": 40.7081012, "lon": -74.0166595 }, + { "lat": 40.7080574, "lon": -74.0165623 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "West Thames Street", + "name:ko": "웨스트 템즈 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1331921880, + "bounds": { + "minlat": 40.7038253, + "minlon": -74.0085616, + "maxlat": 40.7040164, + "maxlon": -74.0083431 + }, + "nodes": [ + 42421946, + 12293746659 + ], + "geometry": [ + { "lat": 40.7038253, "lon": -74.0083431 }, + { "lat": 40.7040164, "lon": -74.0085616 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Old Slip", + "name:ko": "올드 슬립", + "name:ru": "Олд-Слип", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Old Slip", + "tiger:zip_left": "10005" + } +}, +{ + "type": "way", + "id": 1331962329, + "bounds": { + "minlat": 40.7144931, + "minlon": -73.9938460, + "maxlat": 40.7153571, + "maxlon": -73.9933988 + }, + "nodes": [ + 12323757329, + 8520809692, + 6369613311, + 7480410410 + ], + "geometry": [ + { "lat": 40.7144931, "lon": -73.9938460 }, + { "lat": 40.7152458, "lon": -73.9934559 }, + { "lat": 40.7152892, "lon": -73.9934335 }, + { "lat": 40.7153571, "lon": -73.9933988 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Eldridge Street", + "name:en": "Eldridge Street", + "name:ko": "엘드리지 스트리트", + "name:zh": "愛烈治街", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29950420", + "wikipedia": "en:Eldridge Street" + } +}, +{ + "type": "way", + "id": 1332814648, + "bounds": { + "minlat": 40.7109994, + "minlon": -74.0006074, + "maxlat": 40.7110832, + "maxlon": -74.0004898 + }, + "nodes": [ + 42444279, + 11501440567, + 42444277 + ], + "geometry": [ + { "lat": 40.7110832, "lon": -74.0006074 }, + { "lat": 40.7110366, "lon": -74.0005460 }, + { "lat": 40.7109994, "lon": -74.0004898 } + ], + "tags": { + "bicycle": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1332815418, + "bounds": { + "minlat": 40.7065254, + "minlon": -74.0177844, + "maxlat": 40.7068458, + "maxlon": -74.0175734 + }, + "nodes": [ + 3777894259, + 11421746607, + 12295925311, + 11374474033, + 42433715 + ], + "geometry": [ + { "lat": 40.7065254, "lon": -74.0177844 }, + { "lat": 40.7066881, "lon": -74.0176867 }, + { "lat": 40.7067439, "lon": -74.0176470 }, + { "lat": 40.7067786, "lon": -74.0176223 }, + { "lat": 40.7068458, "lon": -74.0175734 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "maxspeed:conditional": "20 mph @ (Mo-Fr 07:00-18:00; PH off; SH off)", + "name": "Battery Place", + "name:etymology:wikidata": "Q56344492", + "name:ko": "배터리 플레이스", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bowling Grn", + "tiger:name_base_1": "Battery", + "tiger:name_type_1": "Pl", + "tiger:zip_left": "10280", + "tiger:zip_right": "10280", + "wikidata": "Q14928130" + } +}, +{ + "type": "way", + "id": 1332815845, + "bounds": { + "minlat": 40.7115937, + "minlon": -73.9943547, + "maxlat": 40.7116012, + "maxlon": -73.9942643 + }, + "nodes": [ + 7830788150, + 42448430 + ], + "geometry": [ + { "lat": 40.7115937, "lon": -73.9943547 }, + { "lat": 40.7116012, "lon": -73.9942643 } + ], + "tags": { + "alt_name": "John J Lamula Square", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Monroe Street", + "name:etymology:wikidata": "Q11815", + "name:ko": "먼로 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1332815846, + "bounds": { + "minlat": 40.7113738, + "minlon": -73.9967842, + "maxlat": 40.7113902, + "maxlon": -73.9966625 + }, + "nodes": [ + 42433302, + 4885959783 + ], + "geometry": [ + { "lat": 40.7113738, "lon": -73.9967842 }, + { "lat": 40.7113902, "lon": -73.9966625 } + ], + "tags": { + "alt_name": "John J Lamula Square", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Monroe Street", + "name:etymology:wikidata": "Q11815", + "name:ko": "먼로 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel" + } +}, +{ + "type": "way", + "id": 1332816547, + "bounds": { + "minlat": 40.7111112, + "minlon": -74.0003778, + "maxlat": 40.7113952, + "maxlon": -74.0000875 + }, + "nodes": [ + 1754817323, + 12304399522 + ], + "geometry": [ + { "lat": 40.7111112, "lon": -74.0003778 }, + { "lat": 40.7113952, "lon": -74.0000875 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Saint James Place", + "name:etymology:wikidata": "Q7588396", + "name:ko": "세인트 제임스 플레이스", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1332816893, + "bounds": { + "minlat": 40.7130924, + "minlon": -73.9936603, + "maxlat": 40.7131632, + "maxlon": -73.9936348 + }, + "nodes": [ + 8279851191, + 11638918078, + 11638918079, + 42435920 + ], + "geometry": [ + { "lat": 40.7131632, "lon": -73.9936603 }, + { "lat": 40.7131391, "lon": -73.9936493 }, + { "lat": 40.7131139, "lon": -73.9936398 }, + { "lat": 40.7130924, "lon": -73.9936348 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Forsyth Street", + "name:etymology:wikidata": "Q4888596", + "name:ko": "포사이스 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "surface": "asphalt", + "wikidata": "Q5470659", + "wikipedia": "en:Forsyth Street" + } +}, +{ + "type": "way", + "id": 1332816894, + "bounds": { + "minlat": 40.7136600, + "minlon": -73.9939452, + "maxlat": 40.7137475, + "maxlon": -73.9939296 + }, + "nodes": [ + 42433542, + 4160382276, + 4160382277, + 8279851201 + ], + "geometry": [ + { "lat": 40.7137475, "lon": -73.9939452 }, + { "lat": 40.7137028, "lon": -73.9939417 }, + { "lat": 40.7136681, "lon": -73.9939328 }, + { "lat": 40.7136600, "lon": -73.9939296 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Forsyth Street", + "name:etymology:wikidata": "Q4888596", + "name:ko": "포사이스 스트리트", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "surface": "asphalt", + "wikidata": "Q5470659", + "wikipedia": "en:Forsyth Street" + } +}, +{ + "type": "way", + "id": 1332816973, + "bounds": { + "minlat": 40.7105010, + "minlon": -73.9941379, + "maxlat": 40.7105597, + "maxlon": -73.9941336 + }, + "nodes": [ + 7830788096, + 11518199186, + 5799766717 + ], + "geometry": [ + { "lat": 40.7105010, "lon": -73.9941372 }, + { "lat": 40.7105224, "lon": -73.9941379 }, + { "lat": 40.7105597, "lon": -73.9941336 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Market Slip", + "name:ko": "마켓 슬립", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1332819054, + "bounds": { + "minlat": 40.7106341, + "minlon": -73.9942549, + "maxlat": 40.7115356, + "maxlon": -73.9941278 + }, + "nodes": [ + 5799766718, + 7830788142 + ], + "geometry": [ + { "lat": 40.7106341, "lon": -73.9941278 }, + { "lat": 40.7115356, "lon": -73.9942549 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1332821283, + "bounds": { + "minlat": 40.7130919, + "minlon": -73.9945069, + "maxlat": 40.7133434, + "maxlon": -73.9944695 + }, + "nodes": [ + 8279851213, + 12339107272 + ], + "geometry": [ + { "lat": 40.7130919, "lon": -73.9944695 }, + { "lat": 40.7133434, "lon": -73.9945069 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:left": "street_side", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1332821284, + "bounds": { + "minlat": 40.7129655, + "minlon": -73.9944601, + "maxlat": 40.7130272, + "maxlon": -73.9944507 + }, + "nodes": [ + 8279851212, + 42435916 + ], + "geometry": [ + { "lat": 40.7129655, "lon": -73.9944507 }, + { "lat": 40.7130272, "lon": -73.9944601 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1332821285, + "bounds": { + "minlat": 40.7123861, + "minlon": -73.9944507, + "maxlat": 40.7129655, + "maxlon": -73.9943635 + }, + "nodes": [ + 8279851258, + 8279851212 + ], + "geometry": [ + { "lat": 40.7123861, "lon": -73.9943635 }, + { "lat": 40.7129655, "lon": -73.9944507 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1332821286, + "bounds": { + "minlat": 40.7123181, + "minlon": -73.9943635, + "maxlat": 40.7123861, + "maxlon": -73.9943532 + }, + "nodes": [ + 42437755, + 8279851258 + ], + "geometry": [ + { "lat": 40.7123181, "lon": -73.9943532 }, + { "lat": 40.7123861, "lon": -73.9943635 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1332821287, + "bounds": { + "minlat": 40.7122500, + "minlon": -73.9943532, + "maxlat": 40.7123181, + "maxlon": -73.9943447 + }, + "nodes": [ + 8279851257, + 42437755 + ], + "geometry": [ + { "lat": 40.7122500, "lon": -73.9943447 }, + { "lat": 40.7123181, "lon": -73.9943532 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1332821288, + "bounds": { + "minlat": 40.7116655, + "minlon": -73.9943447, + "maxlat": 40.7122500, + "maxlon": -73.9942722 + }, + "nodes": [ + 7830788125, + 8279851257 + ], + "geometry": [ + { "lat": 40.7116655, "lon": -73.9942722 }, + { "lat": 40.7122500, "lon": -73.9943447 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1332821289, + "bounds": { + "minlat": 40.7115356, + "minlon": -73.9942722, + "maxlat": 40.7116655, + "maxlon": -73.9942549 + }, + "nodes": [ + 7830788142, + 42448430, + 7830788125 + ], + "geometry": [ + { "lat": 40.7115356, "lon": -73.9942549 }, + { "lat": 40.7116012, "lon": -73.9942643 }, + { "lat": 40.7116655, "lon": -73.9942722 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1332825247, + "bounds": { + "minlat": 40.7136728, + "minlon": -73.9979810, + "maxlat": 40.7137328, + "maxlon": -73.9978842 + }, + "nodes": [ + 588455742, + 3898690237 + ], + "geometry": [ + { "lat": 40.7136728, "lon": -73.9979810 }, + { "lat": 40.7137328, "lon": -73.9978842 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Chatham Square", + "name:etymology:wikidata": "Q208663", + "name:ko": "채텀 스퀘어", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5087691" + } +}, +{ + "type": "way", + "id": 1332829785, + "bounds": { + "minlat": 40.7078590, + "minlon": -74.0154424, + "maxlat": 40.7084917, + "maxlon": -74.0152017 + }, + "nodes": [ + 4145434706, + 4145434703, + 42446640 + ], + "geometry": [ + { "lat": 40.7078590, "lon": -74.0154424 }, + { "lat": 40.7080651, "lon": -74.0153628 }, + { "lat": 40.7084917, "lon": -74.0152017 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-10:00)", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1332829786, + "bounds": { + "minlat": 40.7076106, + "minlon": -74.0155543, + "maxlat": 40.7078590, + "maxlon": -74.0154424 + }, + "nodes": [ + 4149748671, + 9181525951, + 4145434711, + 4145434706 + ], + "geometry": [ + { "lat": 40.7076106, "lon": -74.0155543 }, + { "lat": 40.7076904, "lon": -74.0155198 }, + { "lat": 40.7077844, "lon": -74.0154760 }, + { "lat": 40.7078590, "lon": -74.0154424 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1332857274, + "bounds": { + "minlat": 40.7096754, + "minlon": -74.0165566, + "maxlat": 40.7100903, + "maxlon": -74.0163736 + }, + "nodes": [ + 889584936, + 889585144, + 5215013217, + 42437401 + ], + "geometry": [ + { "lat": 40.7096754, "lon": -74.0165566 }, + { "lat": 40.7098598, "lon": -74.0164660 }, + { "lat": 40.7100078, "lon": -74.0164061 }, + { "lat": 40.7100903, "lon": -74.0163736 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "South End Avenue", + "name:ko": "사우스 엔드 애비뉴", + "network": "lcn", + "oneway": "no", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1332881457, + "bounds": { + "minlat": 40.7022883, + "minlon": -74.0094947, + "maxlat": 40.7028071, + "maxlon": -74.0086477 + }, + "nodes": [ + 12331047782, + 7184916486, + 9144851979, + 4145794861 + ], + "geometry": [ + { "lat": 40.7028071, "lon": -74.0086477 }, + { "lat": 40.7025420, "lon": -74.0090846 }, + { "lat": 40.7024764, "lon": -74.0091865 }, + { "lat": 40.7022883, "lon": -74.0094947 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:left:restriction": "no_parking", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1332885134, + "bounds": { + "minlat": 40.7017600, + "minlon": -74.0128371, + "maxlat": 40.7024415, + "maxlon": -74.0126310 + }, + "nodes": [ + 12301558335, + 7689123212, + 8276468930, + 1805328840, + 42426747 + ], + "geometry": [ + { "lat": 40.7017600, "lon": -74.0126310 }, + { "lat": 40.7018402, "lon": -74.0126568 }, + { "lat": 40.7023586, "lon": -74.0128112 }, + { "lat": 40.7023648, "lon": -74.0128125 }, + { "lat": 40.7024415, "lon": -74.0128371 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Whitehall Street", + "name:etymology:wikidata": "Q214820", + "name:ko": "화이트홀 스트리트", + "name:ru": "Уайтхолл-стрит", + "oneway": "yes", + "parking:left:taxi": "designated", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "source": "Bing", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Whitehall", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "wikidata": "Q7995998", + "wikipedia": "en:Whitehall Street" + } +}, +{ + "type": "way", + "id": 1332897793, + "bounds": { + "minlat": 40.7033428, + "minlon": -74.0131307, + "maxlat": 40.7035982, + "maxlon": -74.0130727 + }, + "nodes": [ + 42444480, + 7685185608, + 12296160184 + ], + "geometry": [ + { "lat": 40.7035982, "lon": -74.0131307 }, + { "lat": 40.7035348, "lon": -74.0131187 }, + { "lat": 40.7033428, "lon": -74.0130727 } + ], + "tags": { + "access": "destination", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Whitehall Street", + "name:etymology:wikidata": "Q214820", + "name:ko": "화이트홀 스트리트", + "name:ru": "Уайтхолл-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Whitehall", + "tiger:name_type": "St", + "tiger:zip_left": "10004", + "wikidata": "Q7995998", + "wikipedia": "en:Whitehall Street" + } +}, +{ + "type": "way", + "id": 1333150007, + "bounds": { + "minlat": 40.7153817, + "minlon": -73.9943676, + "maxlat": 40.7156185, + "maxlon": -73.9942500 + }, + "nodes": [ + 42440798, + 4528918672, + 13518447858, + 12333997454 + ], + "geometry": [ + { "lat": 40.7156185, "lon": -73.9942500 }, + { "lat": 40.7155374, "lon": -73.9942901 }, + { "lat": 40.7154718, "lon": -73.9943228 }, + { "lat": 40.7153817, "lon": -73.9943676 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Forsyth Street", + "name:etymology:wikidata": "Q4888596", + "name:ko": "포사이스 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5470659", + "wikipedia": "en:Forsyth Street" + } +}, +{ + "type": "way", + "id": 1333150008, + "bounds": { + "minlat": 40.7142715, + "minlon": -73.9944236, + "maxlat": 40.7148220, + "maxlon": -73.9941371 + }, + "nodes": [ + 12333974934, + 6369613319, + 42451650 + ], + "geometry": [ + { "lat": 40.7148220, "lon": -73.9944236 }, + { "lat": 40.7143360, "lon": -73.9941692 }, + { "lat": 40.7142715, "lon": -73.9941371 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Forsyth Street", + "name:etymology:wikidata": "Q4888596", + "name:ko": "포사이스 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5470659", + "wikipedia": "en:Forsyth Street" + } +}, +{ + "type": "way", + "id": 1333150711, + "bounds": { + "minlat": 40.8011841, + "minlon": -73.9416979, + "maxlat": 40.8037010, + "maxlon": -73.9398600 + }, + "nodes": [ + 42435222, + 10127369884, + 10170646994, + 42443818, + 10170646990, + 10170647013, + 42456162, + 10170647009, + 10170656841, + 42445185, + 10170656837, + 10170656857, + 42452330 + ], + "geometry": [ + { "lat": 40.8011841, "lon": -73.9416979 }, + { "lat": 40.8012451, "lon": -73.9416537 }, + { "lat": 40.8017589, "lon": -73.9412812 }, + { "lat": 40.8018088, "lon": -73.9412451 }, + { "lat": 40.8018782, "lon": -73.9411939 }, + { "lat": 40.8023928, "lon": -73.9408154 }, + { "lat": 40.8024413, "lon": -73.9407797 }, + { "lat": 40.8025051, "lon": -73.9407332 }, + { "lat": 40.8030154, "lon": -73.9403615 }, + { "lat": 40.8030712, "lon": -73.9403209 }, + { "lat": 40.8031304, "lon": -73.9402776 }, + { "lat": 40.8036453, "lon": -73.9399008 }, + { "lat": 40.8037010, "lon": -73.9398600 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1333150712, + "bounds": { + "minlat": 40.8012931, + "minlon": -73.9450492, + "maxlat": 40.8026041, + "maxlon": -73.9419552 + }, + "nodes": [ + 596776624, + 9178793216, + 7620520368, + 9178805717, + 42435211, + 10127369889, + 10127369894, + 42435207 + ], + "geometry": [ + { "lat": 40.8012931, "lon": -73.9419552 }, + { "lat": 40.8013250, "lon": -73.9420278 }, + { "lat": 40.8014564, "lon": -73.9423405 }, + { "lat": 40.8018768, "lon": -73.9433329 }, + { "lat": 40.8019202, "lon": -73.9434351 }, + { "lat": 40.8019707, "lon": -73.9435544 }, + { "lat": 40.8025510, "lon": -73.9449239 }, + { "lat": 40.8026041, "lon": -73.9450492 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "highway": "residential", + "name": "East 119th Street", + "name:ru": "Восточная 119-я стрит", + "name_1": "East 119 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1333150713, + "bounds": { + "minlat": 40.8006686, + "minlon": -73.9424116, + "maxlat": 40.8012931, + "maxlon": -73.9419552 + }, + "nodes": [ + 596776624, + 10127369886, + 10170646953, + 596776442 + ], + "geometry": [ + { "lat": 40.8012931, "lon": -73.9419552 }, + { "lat": 40.8012366, "lon": -73.9419965 }, + { "lat": 40.8007244, "lon": -73.9423708 }, + { "lat": 40.8006686, "lon": -73.9424116 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1333151514, + "bounds": { + "minlat": 40.7150930, + "minlon": -73.9945113, + "maxlat": 40.7153817, + "maxlon": -73.9943676 + }, + "nodes": [ + 12333997454, + 2902542860 + ], + "geometry": [ + { "lat": 40.7153817, "lon": -73.9943676 }, + { "lat": 40.7150930, "lon": -73.9945113 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Forsyth Street", + "name:etymology:wikidata": "Q4888596", + "name:ko": "포사이스 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5470659", + "wikipedia": "en:Forsyth Street" + } +}, +{ + "type": "way", + "id": 1333159615, + "bounds": { + "minlat": 40.7110418, + "minlon": -74.0053968, + "maxlat": 40.7112718, + "maxlon": -74.0051452 + }, + "nodes": [ + 8404036868, + 6990788770 + ], + "geometry": [ + { "lat": 40.7112718, "lon": -74.0053968 }, + { "lat": 40.7110418, "lon": -74.0051452 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Spruce Street", + "name:ko": "스프루스 스트리트", + "name:ru": "Спрус-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-17:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q20858363", + "wikipedia": "en:Spruce Street" + } +}, +{ + "type": "way", + "id": 1333192059, + "bounds": { + "minlat": 40.8366668, + "minlon": -73.9706871, + "maxlat": 40.8368400, + "maxlon": -73.9706310 + }, + "nodes": [ + 103137165, + 103137166 + ], + "geometry": [ + { "lat": 40.8366668, "lon": -73.9706871 }, + { "lat": 40.8368400, "lon": -73.9706310 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 1333219617, + "bounds": { + "minlat": 40.7119737, + "minlon": -73.9977759, + "maxlat": 40.7120847, + "maxlon": -73.9969466 + }, + "nodes": [ + 42431992, + 11153640078, + 6139477284, + 6133355321, + 4382842419, + 11504448346, + 42437124 + ], + "geometry": [ + { "lat": 40.7119737, "lon": -73.9977759 }, + { "lat": 40.7119827, "lon": -73.9976971 }, + { "lat": 40.7120275, "lon": -73.9973034 }, + { "lat": 40.7120441, "lon": -73.9971559 }, + { "lat": 40.7120620, "lon": -73.9970344 }, + { "lat": 40.7120726, "lon": -73.9969884 }, + { "lat": 40.7120847, "lon": -73.9969466 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333226030, + "bounds": { + "minlat": 40.7122501, + "minlon": -73.9951220, + "maxlat": 40.7123181, + "maxlon": -73.9943532 + }, + "nodes": [ + 12304007686, + 8279851259, + 42437755 + ], + "geometry": [ + { "lat": 40.7122501, "lon": -73.9951220 }, + { "lat": 40.7123103, "lon": -73.9944427 }, + { "lat": 40.7123181, "lon": -73.9943532 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Madison Street", + "name:etymology:wikidata": "Q11813", + "name:ko": "매디슨 스트리트", + "name:ru": "Мэдисон-стрит", + "oneway": "no", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 16:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6728110", + "wikipedia": "en:Madison Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333419993, + "bounds": { + "minlat": 40.7136682, + "minlon": -73.9949113, + "maxlat": 40.7136960, + "maxlon": -73.9945699 + }, + "nodes": [ + 12336567962, + 8279851187, + 42433539 + ], + "geometry": [ + { "lat": 40.7136682, "lon": -73.9949113 }, + { "lat": 40.7136879, "lon": -73.9946773 }, + { "lat": 40.7136960, "lon": -73.9945699 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "oneway": "no", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333435320, + "bounds": { + "minlat": 40.7142283, + "minlon": -73.9948397, + "maxlat": 40.7142862, + "maxlon": -73.9939355 + }, + "nodes": [ + 42429636, + 42451650, + 6369613301, + 6369613299, + 42453691 + ], + "geometry": [ + { "lat": 40.7142862, "lon": -73.9939355 }, + { "lat": 40.7142715, "lon": -73.9941371 }, + { "lat": 40.7142631, "lon": -73.9942612 }, + { "lat": 40.7142283, "lon": -73.9947546 }, + { "lat": 40.7142285, "lon": -73.9948397 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxheight": "default", + "maxspeed": "20 mph", + "name": "Division Street", + "name:ko": "디비전 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333438295, + "bounds": { + "minlat": 40.7120291, + "minlon": -73.9994748, + "maxlat": 40.7122003, + "maxlon": -73.9992979 + }, + "nodes": [ + 12336752518, + 12336752519 + ], + "geometry": [ + { "lat": 40.7120291, "lon": -73.9994748 }, + { "lat": 40.7122003, "lon": -73.9992979 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Saint James Place", + "name:etymology:wikidata": "Q7588396", + "name:ko": "세인트 제임스 플레이스", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 08:00-18:00)", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1333438296, + "bounds": { + "minlat": 40.7117851, + "minlon": -73.9997076, + "maxlat": 40.7120291, + "maxlon": -73.9994748 + }, + "nodes": [ + 42437749, + 11153640073, + 11497487862, + 12336752518 + ], + "geometry": [ + { "lat": 40.7117851, "lon": -73.9997076 }, + { "lat": 40.7118861, "lon": -73.9996149 }, + { "lat": 40.7119783, "lon": -73.9995273 }, + { "lat": 40.7120291, "lon": -73.9994748 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Saint James Place", + "name:etymology:wikidata": "Q7588396", + "name:ko": "세인트 제임스 플레이스", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 08:00-18:00)", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1333438297, + "bounds": { + "minlat": 40.7122003, + "minlon": -73.9992979, + "maxlat": 40.7126966, + "maxlon": -73.9987898 + }, + "nodes": [ + 12336752519, + 5378294677, + 42439813, + 5378294671, + 7477081377 + ], + "geometry": [ + { "lat": 40.7122003, "lon": -73.9992979 }, + { "lat": 40.7124896, "lon": -73.9989991 }, + { "lat": 40.7125535, "lon": -73.9989343 }, + { "lat": 40.7126054, "lon": -73.9988818 }, + { "lat": 40.7126966, "lon": -73.9987898 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Saint James Place", + "name:etymology:wikidata": "Q7588396", + "name:ko": "세인트 제임스 플레이스", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 08:00-18:00)", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1333440868, + "bounds": { + "minlat": 40.7131666, + "minlon": -74.0110084, + "maxlat": 40.7133376, + "maxlon": -74.0106298 + }, + "nodes": [ + 12336775513, + 8262936473, + 42454401 + ], + "geometry": [ + { "lat": 40.7131666, "lon": -74.0106298 }, + { "lat": 40.7132947, "lon": -74.0109110 }, + { "lat": 40.7133376, "lon": -74.0110084 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Barclay Street", + "name:etymology:wikidata": "Q94355342", + "name:ko": "바클레이 스트리트", + "name:ru": "Баркли-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|", + "wikidata": "Q14622883" + } +}, +{ + "type": "way", + "id": 1333472258, + "bounds": { + "minlat": 40.7155822, + "minlon": -73.9965488, + "maxlat": 40.7161492, + "maxlon": -73.9961338 + }, + "nodes": [ + 5161246307, + 4160368842, + 12337075802 + ], + "geometry": [ + { "lat": 40.7161492, "lon": -73.9961338 }, + { "lat": 40.7160991, "lon": -73.9962354 }, + { "lat": 40.7155822, "lon": -73.9965488 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 1333498693, + "bounds": { + "minlat": 40.7031188, + "minlon": -74.0139049, + "maxlat": 40.7031357, + "maxlon": -74.0135644 + }, + "nodes": [ + 11382526200, + 7685162893, + 7685162940 + ], + "geometry": [ + { "lat": 40.7031188, "lon": -74.0135644 }, + { "lat": 40.7031247, "lon": -74.0137089 }, + { "lat": 40.7031357, "lon": -74.0139049 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333500708, + "bounds": { + "minlat": 40.7159216, + "minlon": -73.9993221, + "maxlat": 40.7171177, + "maxlon": -73.9985901 + }, + "nodes": [ + 7132405535, + 7132406691, + 7641859747, + 42435451 + ], + "geometry": [ + { "lat": 40.7159216, "lon": -73.9993221 }, + { "lat": 40.7159786, "lon": -73.9992842 }, + { "lat": 40.7170082, "lon": -73.9986598 }, + { "lat": 40.7171177, "lon": -73.9985901 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Mulberry Street", + "name:en": "Mulberry Street", + "name:ko": "멀베리 스트리트", + "name:ru": "Малберри-стрит", + "name:zh": "摩比利街", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 07:00-20:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1934308", + "wikipedia": "en:Mulberry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333500709, + "bounds": { + "minlat": 40.7152656, + "minlon": -73.9996195, + "maxlat": 40.7156061, + "maxlon": -73.9994679 + }, + "nodes": [ + 7132405549, + 11505205689, + 11505205688, + 12357732940 + ], + "geometry": [ + { "lat": 40.7152656, "lon": -73.9996195 }, + { "lat": 40.7152942, "lon": -73.9996056 }, + { "lat": 40.7153424, "lon": -73.9995838 }, + { "lat": 40.7156061, "lon": -73.9994679 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Mulberry Street", + "name:en": "Mulberry Street", + "name:ko": "멀베리 스트리트", + "name:ru": "Малберри-стрит", + "name:zh": "摩比利街", + "oneway": "yes", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_parking @ (Mo-Fr 08:00-18:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1934308", + "wikipedia": "en:Mulberry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333500710, + "bounds": { + "minlat": 40.7146103, + "minlon": -73.9996496, + "maxlat": 40.7152656, + "maxlon": -73.9996031 + }, + "nodes": [ + 12337272315, + 12357732942, + 12357732941, + 7132405549 + ], + "geometry": [ + { "lat": 40.7146103, "lon": -73.9996031 }, + { "lat": 40.7151335, "lon": -73.9996496 }, + { "lat": 40.7152133, "lon": -73.9996409 }, + { "lat": 40.7152656, "lon": -73.9996195 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Mulberry Street", + "name:en": "Mulberry Street", + "name:ko": "멀베리 스트리트", + "name:ru": "Малберри-стрит", + "name:zh": "摩比利街", + "oneway": "yes", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1934308", + "wikipedia": "en:Mulberry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333500711, + "bounds": { + "minlat": 40.7144791, + "minlon": -73.9996031, + "maxlat": 40.7146103, + "maxlon": -73.9995913 + }, + "nodes": [ + 42435435, + 12337272315 + ], + "geometry": [ + { "lat": 40.7144791, "lon": -73.9995913 }, + { "lat": 40.7146103, "lon": -73.9996031 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Mulberry Street", + "name:en": "Mulberry Street", + "name:ko": "멀베리 스트리트", + "name:ru": "Малберри-стрит", + "name:zh": "摩比利街", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1934308", + "wikipedia": "en:Mulberry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333503214, + "bounds": { + "minlat": 40.7035985, + "minlon": -74.0111029, + "maxlat": 40.7037261, + "maxlon": -74.0106418 + }, + "nodes": [ + 8276468775, + 8276468772, + 11040280509, + 6904109940, + 5200192560 + ], + "geometry": [ + { "lat": 40.7037261, "lon": -74.0106418 }, + { "lat": 40.7036922, "lon": -74.0106977 }, + { "lat": 40.7036711, "lon": -74.0107529 }, + { "lat": 40.7036546, "lon": -74.0108148 }, + { "lat": 40.7035985, "lon": -74.0111029 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 07:00-17:00)", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Pearl", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333665708, + "bounds": { + "minlat": 40.7162110, + "minlon": -74.0001342, + "maxlat": 40.7173295, + "maxlon": -73.9994477 + }, + "nodes": [ + 42447255, + 7641718055, + 9910248819, + 42453780, + 7132405547 + ], + "geometry": [ + { "lat": 40.7173295, "lon": -73.9994477 }, + { "lat": 40.7172805, "lon": -73.9994791 }, + { "lat": 40.7170840, "lon": -73.9996006 }, + { "lat": 40.7165440, "lon": -73.9999320 }, + { "lat": 40.7162110, "lon": -74.0001342 } + ], + "tags": { + "alt_name": "Benjamin Ward Way", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Baxter Street", + "name:ko": "백스터 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "surface": "asphalt", + "wikidata": "Q19839902", + "wikipedia": "en:Baxter Street" + } +}, +{ + "type": "way", + "id": 1333665709, + "bounds": { + "minlat": 40.7173295, + "minlon": -73.9994477, + "maxlat": 40.7175538, + "maxlon": -73.9993088 + }, + "nodes": [ + 42440810, + 7641718018, + 42447255 + ], + "geometry": [ + { "lat": 40.7175538, "lon": -73.9993088 }, + { "lat": 40.7174530, "lon": -73.9993743 }, + { "lat": 40.7173295, "lon": -73.9994477 } + ], + "tags": { + "alt_name": "Benjamin Ward Way", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Baxter Street", + "name:ko": "백스터 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q19839902", + "wikipedia": "en:Baxter Street" + } +}, +{ + "type": "way", + "id": 1333668207, + "bounds": { + "minlat": 40.7117181, + "minlon": -73.9930413, + "maxlat": 40.7117326, + "maxlon": -73.9928947 + }, + "nodes": [ + 12338873507, + 5799713818 + ], + "geometry": [ + { "lat": 40.7117181, "lon": -73.9930413 }, + { "lat": 40.7117326, "lon": -73.9928947 } + ], + "tags": { + "covered": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Monroe Street", + "name:etymology:wikidata": "Q11815", + "name:ko": "먼로 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1333668208, + "bounds": { + "minlat": 40.7116449, + "minlon": -73.9937667, + "maxlat": 40.7116718, + "maxlon": -73.9935027 + }, + "nodes": [ + 11148406715, + 12338873508 + ], + "geometry": [ + { "lat": 40.7116449, "lon": -73.9937667 }, + { "lat": 40.7116718, "lon": -73.9935027 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Monroe Street", + "name:etymology:wikidata": "Q11815", + "name:ko": "먼로 스트리트", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_parking @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1333670673, + "bounds": { + "minlat": 40.7129675, + "minlon": -73.9951743, + "maxlat": 40.7130272, + "maxlon": -73.9944601 + }, + "nodes": [ + 12338894647, + 8279851214, + 42435916 + ], + "geometry": [ + { "lat": 40.7129675, "lon": -73.9951743 }, + { "lat": 40.7130191, "lon": -73.9945492 }, + { "lat": 40.7130272, "lon": -73.9944601 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Henry Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "헨리 스트리트", + "name:ru": "Хенри-стрит", + "sidewalk:both": "separate", + "wikidata": "Q5728794", + "wikipedia": "en:Henry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333670674, + "bounds": { + "minlat": 40.7130272, + "minlon": -73.9944601, + "maxlat": 40.7130535, + "maxlon": -73.9941106 + }, + "nodes": [ + 42435916, + 8279851211, + 496707000 + ], + "geometry": [ + { "lat": 40.7130272, "lon": -73.9944601 }, + { "lat": 40.7130340, "lon": -73.9943797 }, + { "lat": 40.7130535, "lon": -73.9941106 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Henry Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "헨리 스트리트", + "name:ru": "Хенри-стрит", + "parking:right:restriction:conditional": "no_parking @ (Mo-Fr 08:00-18:00)", + "sidewalk:both": "separate", + "wikidata": "Q5728794", + "wikipedia": "en:Henry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333670675, + "bounds": { + "minlat": 40.7128750, + "minlon": -73.9962516, + "maxlat": 40.7129675, + "maxlon": -73.9951743 + }, + "nodes": [ + 11504442619, + 2496639019, + 12338894647 + ], + "geometry": [ + { "lat": 40.7128750, "lon": -73.9962516 }, + { "lat": 40.7129038, "lon": -73.9959222 }, + { "lat": 40.7129675, "lon": -73.9951743 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Henry Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "헨리 스트리트", + "name:ru": "Хенри-стрит", + "sidewalk:both": "separate", + "wikidata": "Q5728794", + "wikipedia": "en:Henry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333671432, + "bounds": { + "minlat": 40.7102075, + "minlon": -73.9965045, + "maxlat": 40.7102692, + "maxlon": -73.9960940 + }, + "nodes": [ + 12338894827, + 7480515823, + 4121409402 + ], + "geometry": [ + { "lat": 40.7102692, "lon": -73.9960940 }, + { "lat": 40.7102288, "lon": -73.9963664 }, + { "lat": 40.7102075, "lon": -73.9965045 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Cherry Street", + "name:ko": "체리 스트리트", + "name:ru": "Черри-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333671433, + "bounds": { + "minlat": 40.7102692, + "minlon": -73.9960940, + "maxlat": 40.7107245, + "maxlon": -73.9931038 + }, + "nodes": [ + 12338894828, + 9525441194, + 7830788116, + 5799766717, + 7830788117, + 12338894827 + ], + "geometry": [ + { "lat": 40.7107245, "lon": -73.9931038 }, + { "lat": 40.7105832, "lon": -73.9939902 }, + { "lat": 40.7105749, "lon": -73.9940379 }, + { "lat": 40.7105597, "lon": -73.9941336 }, + { "lat": 40.7105414, "lon": -73.9942593 }, + { "lat": 40.7102692, "lon": -73.9960940 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Cherry Street", + "name:ko": "체리 스트리트", + "name:ru": "Черри-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333683799, + "bounds": { + "minlat": 40.7113738, + "minlon": -73.9968626, + "maxlat": 40.7116499, + "maxlon": -73.9967842 + }, + "nodes": [ + 12339006655, + 11922724474, + 3884569945, + 42433302 + ], + "geometry": [ + { "lat": 40.7116499, "lon": -73.9968626 }, + { "lat": 40.7114863, "lon": -73.9968157 }, + { "lat": 40.7114361, "lon": -73.9968013 }, + { "lat": 40.7113738, "lon": -73.9967842 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Street", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1333695989, + "bounds": { + "minlat": 40.7133434, + "minlon": -73.9945466, + "maxlat": 40.7136110, + "maxlon": -73.9945069 + }, + "nodes": [ + 12339107272, + 8279851185 + ], + "geometry": [ + { "lat": 40.7133434, "lon": -73.9945069 }, + { "lat": 40.7136110, "lon": -73.9945466 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:left": "street_side", + "parking:left:orientation": "parallel", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1333699601, + "bounds": { + "minlat": 40.7130272, + "minlon": -73.9944695, + "maxlat": 40.7130919, + "maxlon": -73.9944601 + }, + "nodes": [ + 42435916, + 8279851213 + ], + "geometry": [ + { "lat": 40.7130272, "lon": -73.9944601 }, + { "lat": 40.7130919, "lon": -73.9944695 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Market Street", + "name:ko": "마켓 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1333725593, + "bounds": { + "minlat": 40.7146520, + "minlon": -74.0079320, + "maxlat": 40.7149277, + "maxlon": -74.0073396 + }, + "nodes": [ + 12339367750, + 7439027750, + 42431611 + ], + "geometry": [ + { "lat": 40.7146520, "lon": -74.0073396 }, + { "lat": 40.7148782, "lon": -74.0078289 }, + { "lat": 40.7149277, "lon": -74.0079320 } + ], + "tags": { + "hgv": "destination", + "highway": "unclassified", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "oneway": "no", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333725594, + "bounds": { + "minlat": 40.7143745, + "minlon": -74.0073396, + "maxlat": 40.7146520, + "maxlon": -74.0067392 + }, + "nodes": [ + 12339367749, + 10885572122, + 12339367750 + ], + "geometry": [ + { "lat": 40.7143745, "lon": -74.0067392 }, + { "lat": 40.7144650, "lon": -74.0069350 }, + { "lat": 40.7146520, "lon": -74.0073396 } + ], + "tags": { + "hgv": "destination", + "highway": "unclassified", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Chambers Street", + "name:etymology:wikidata": "Q117052847", + "name:ko": "챔버스 스트리트", + "oneway": "no", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1060700", + "wikipedia": "en:Chambers Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333729613, + "bounds": { + "minlat": 40.7097436, + "minlon": -73.9964363, + "maxlat": 40.7099415, + "maxlon": -73.9963766 + }, + "nodes": [ + 12339401165, + 5639814879, + 42433324 + ], + "geometry": [ + { "lat": 40.7099415, "lon": -73.9964363 }, + { "lat": 40.7097895, "lon": -73.9963909 }, + { "lat": 40.7097436, "lon": -73.9963766 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Slip", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 슬립", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1333729614, + "bounds": { + "minlat": 40.7099415, + "minlon": -73.9965045, + "maxlat": 40.7102075, + "maxlon": -73.9964363 + }, + "nodes": [ + 4121409402, + 4382842415, + 12339401165 + ], + "geometry": [ + { "lat": 40.7102075, "lon": -73.9965045 }, + { "lat": 40.7101411, "lon": -73.9964874 }, + { "lat": 40.7099415, "lon": -73.9964363 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Catherine Slip", + "name:etymology:wikidata": "Q85940699", + "name:ko": "캐서린 슬립", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1333735827, + "bounds": { + "minlat": 40.7078803, + "minlon": -74.0004937, + "maxlat": 40.7083786, + "maxlon": -74.0001149 + }, + "nodes": [ + 42438471, + 8279851791, + 12299314860, + 42438476 + ], + "geometry": [ + { "lat": 40.7083786, "lon": -74.0004937 }, + { "lat": 40.7079627, "lon": -74.0001718 }, + { "lat": 40.7079260, "lon": -74.0001461 }, + { "lat": 40.7078803, "lon": -74.0001149 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Dover Street", + "name:etymology:wikidata": "Q179224", + "name:ko": "도버 스트리트", + "oneway": "yes", + "oneway:bicycle": "yes", + "parking:both:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1333735828, + "bounds": { + "minlat": 40.7087864, + "minlon": -74.0016570, + "maxlat": 40.7094916, + "maxlon": -74.0008364 + }, + "nodes": [ + 42422283, + 11033251533, + 3898690195, + 5378284711 + ], + "geometry": [ + { "lat": 40.7094916, "lon": -74.0016570 }, + { "lat": 40.7094292, "lon": -74.0016279 }, + { "lat": 40.7093954, "lon": -74.0016012 }, + { "lat": 40.7087864, "lon": -74.0008364 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Dover Street", + "name:etymology:wikidata": "Q179224", + "name:ko": "도버 스트리트", + "oneway": "yes", + "oneway:bicycle": "yes", + "parking:both:restriction:conditional": "no_standing @ (Mo-Sa 07:00-16:00)", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1333737679, + "bounds": { + "minlat": 40.7083040, + "minlon": -74.0005918, + "maxlat": 40.7083391, + "maxlon": -74.0005213 + }, + "nodes": [ + 11375808182, + 8279851789, + 12339478938 + ], + "geometry": [ + { "lat": 40.7083391, "lon": -74.0005213 }, + { "lat": 40.7083321, "lon": -74.0005354 }, + { "lat": 40.7083040, "lon": -74.0005918 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Front Street", + "name:ko": "프론트 스트리트", + "name:ru": "Фронт-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q4493022", + "wikipedia": "en:Front Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333741753, + "bounds": { + "minlat": 40.7080995, + "minlon": -74.0034033, + "maxlat": 40.7081968, + "maxlon": -74.0032934 + }, + "nodes": [ + 12339501824, + 5362212156 + ], + "geometry": [ + { "lat": 40.7081968, "lon": -74.0032934 }, + { "lat": 40.7080995, "lon": -74.0034033 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1333741754, + "bounds": { + "minlat": 40.7085564, + "minlon": -74.0028563, + "maxlat": 40.7088460, + "maxlon": -74.0025030 + }, + "nodes": [ + 42433229, + 3898690193, + 13706421778, + 12339501825 + ], + "geometry": [ + { "lat": 40.7088460, "lon": -74.0025030 }, + { "lat": 40.7087859, "lon": -74.0025792 }, + { "lat": 40.7085733, "lon": -74.0028359 }, + { "lat": 40.7085564, "lon": -74.0028563 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1334153966, + "bounds": { + "minlat": 40.7082744, + "minlon": -74.0018996, + "maxlat": 40.7087831, + "maxlon": -74.0008975 + }, + "nodes": [ + 42433231, + 8279851805, + 11375808068, + 8279851811, + 11375808064 + ], + "geometry": [ + { "lat": 40.7082744, "lon": -74.0018996 }, + { "lat": 40.7083136, "lon": -74.0018223 }, + { "lat": 40.7087634, "lon": -74.0009417 }, + { "lat": 40.7087743, "lon": -74.0009203 }, + { "lat": 40.7087831, "lon": -74.0008975 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-10:00)", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1334159476, + "bounds": { + "minlat": 40.7095135, + "minlon": -73.9940239, + "maxlat": 40.7096296, + "maxlon": -73.9930600 + }, + "nodes": [ + 42444116, + 7830788143, + 9907939579, + 9907939580 + ], + "geometry": [ + { "lat": 40.7095135, "lon": -73.9940239 }, + { "lat": 40.7095265, "lon": -73.9938875 }, + { "lat": 40.7095721, "lon": -73.9935177 }, + { "lat": 40.7096296, "lon": -73.9930600 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "no", + "parking:left:restriction": "no_standing", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1334159477, + "bounds": { + "minlat": 40.7092114, + "minlon": -73.9962351, + "maxlat": 40.7092439, + "maxlon": -73.9959330 + }, + "nodes": [ + 42437135, + 588455857 + ], + "geometry": [ + { "lat": 40.7092114, "lon": -73.9962351 }, + { "lat": 40.7092439, "lon": -73.9959330 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "no", + "parking:left:restriction": "no_standing", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1334167500, + "bounds": { + "minlat": 40.7055699, + "minlon": -74.0090526, + "maxlat": 40.7059282, + "maxlon": -74.0088681 + }, + "nodes": [ + 42429507, + 11053183419, + 11053183416, + 11053183448 + ], + "geometry": [ + { "lat": 40.7055699, "lon": -74.0090526 }, + { "lat": 40.7055997, "lon": -74.0090413 }, + { "lat": 40.7056262, "lon": -74.0090281 }, + { "lat": 40.7059282, "lon": -74.0088681 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Hanover Street", + "name:etymology:wikidata": "Q157217", + "name:ko": "해노버 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Hanover", + "tiger:name_type": "St", + "width": "17'8\"" + } +}, +{ + "type": "way", + "id": 1334167501, + "bounds": { + "minlat": 40.7053168, + "minlon": -74.0090576, + "maxlat": 40.7055699, + "maxlon": -74.0090373 + }, + "nodes": [ + 42429504, + 11042989794, + 11053183417, + 11053183423, + 11053183418, + 42429507 + ], + "geometry": [ + { "lat": 40.7053168, "lon": -74.0090373 }, + { "lat": 40.7053546, "lon": -74.0090424 }, + { "lat": 40.7054934, "lon": -74.0090567 }, + { "lat": 40.7055221, "lon": -74.0090574 }, + { "lat": 40.7055306, "lon": -74.0090576 }, + { "lat": 40.7055699, "lon": -74.0090526 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Hanover Street", + "name:etymology:wikidata": "Q157217", + "name:ko": "해노버 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Hanover", + "tiger:name_type": "St", + "width": "17'8\"" + } +}, +{ + "type": "way", + "id": 1334175266, + "bounds": { + "minlat": 40.7079949, + "minlon": -74.0080097, + "maxlat": 40.7083391, + "maxlon": -74.0076543 + }, + "nodes": [ + 42448583, + 11365151709, + 6262915547 + ], + "geometry": [ + { "lat": 40.7079949, "lon": -74.0080097 }, + { "lat": 40.7080424, "lon": -74.0079624 }, + { "lat": 40.7083391, "lon": -74.0076543 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "William Street", + "name:etymology:wikidata": "Q16205359", + "name:ko": "윌리엄 스트리트", + "name:ru": "Уильям-стрит", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q8018910", + "wikipedia": "en:William Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1334181597, + "bounds": { + "minlat": 40.7336094, + "minlon": -74.0028114, + "maxlat": 40.7337334, + "maxlon": -74.0027408 + }, + "nodes": [ + 4320028826, + 8307642038, + 42430805 + ], + "geometry": [ + { "lat": 40.7337334, "lon": -74.0027408 }, + { "lat": 40.7336796, "lon": -74.0027714 }, + { "lat": 40.7336094, "lon": -74.0028114 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue South", + "name_1": "7 Avenue South", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "slight_left|through||" + } +}, +{ + "type": "way", + "id": 1334187735, + "bounds": { + "minlat": 40.7152360, + "minlon": -74.0070792, + "maxlat": 40.7160045, + "maxlon": -74.0054200 + }, + "nodes": [ + 42430550, + 8312361672, + 4754091366, + 8279851421, + 42428405 + ], + "geometry": [ + { "lat": 40.7160045, "lon": -74.0070792 }, + { "lat": 40.7159583, "lon": -74.0069778 }, + { "lat": 40.7157929, "lon": -74.0066159 }, + { "lat": 40.7152835, "lon": -74.0055222 }, + { "lat": 40.7152360, "lon": -74.0054200 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Duane Street", + "name:etymology:wikidata": "Q339274", + "name:ko": "두에인 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1334200288, + "bounds": { + "minlat": 40.7105602, + "minlon": -74.0090985, + "maxlat": 40.7109130, + "maxlon": -74.0084120 + }, + "nodes": [ + 12343544082, + 8262936603, + 42428385 + ], + "geometry": [ + { "lat": 40.7105602, "lon": -74.0084120 }, + { "lat": 40.7108500, "lon": -74.0089735 }, + { "lat": 40.7109130, "lon": -74.0090985 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "name:ru": "Фултон-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1334212775, + "bounds": { + "minlat": 40.7119414, + "minlon": -74.0058680, + "maxlat": 40.7119910, + "maxlon": -74.0055245 + }, + "nodes": [ + 3790255320, + 9364517411, + 278641329, + 4143876143, + 5706569617 + ], + "geometry": [ + { "lat": 40.7119414, "lon": -74.0058680 }, + { "lat": 40.7119594, "lon": -74.0057243 }, + { "lat": 40.7119636, "lon": -74.0056944 }, + { "lat": 40.7119770, "lon": -74.0056130 }, + { "lat": 40.7119910, "lon": -74.0055245 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "destination": "FDR Drive", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 1334212776, + "bounds": { + "minlat": 40.7119157, + "minlon": -74.0060472, + "maxlat": 40.7119414, + "maxlon": -74.0058680 + }, + "nodes": [ + 1272562931, + 1272562778, + 3790255320 + ], + "geometry": [ + { "lat": 40.7119157, "lon": -74.0060472 }, + { "lat": 40.7119268, "lon": -74.0059702 }, + { "lat": 40.7119414, "lon": -74.0058680 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "destination": "FDR Drive", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_stopping", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 1334216310, + "bounds": { + "minlat": 40.7019381, + "minlon": -74.0105080, + "maxlat": 40.7020473, + "maxlon": -74.0100785 + }, + "nodes": [ + 42433846, + 4145794863, + 4147546535, + 4147546533 + ], + "geometry": [ + { "lat": 40.7020473, "lon": -74.0100785 }, + { "lat": 40.7020184, "lon": -74.0101770 }, + { "lat": 40.7019805, "lon": -74.0103172 }, + { "lat": 40.7019381, "lon": -74.0105080 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-24:00)", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1334230709, + "bounds": { + "minlat": 40.7048067, + "minlon": -74.0054108, + "maxlat": 40.7049084, + "maxlon": -74.0052645 + }, + "nodes": [ + 42429861, + 9181607984 + ], + "geometry": [ + { "lat": 40.7048067, "lon": -74.0054108 }, + { "lat": 40.7049084, "lon": -74.0052645 } + ], + "tags": { + "cycleway:right": "separate", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "parking:both:restriction": "no_standing", + "sidewalk:left": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "South", + "tiger:name_type": "St", + "tiger:zip_left": "10038", + "tiger:zip_left_1": "10038", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1334307259, + "bounds": { + "minlat": 40.8350558, + "minlon": -73.9712565, + "maxlat": 40.8356336, + "maxlon": -73.9710018 + }, + "nodes": [ + 103137162, + 4205772572, + 4205772573, + 103137163, + 7271518636 + ], + "geometry": [ + { "lat": 40.8350558, "lon": -73.9712565 }, + { "lat": 40.8354466, "lon": -73.9710730 }, + { "lat": 40.8354890, "lon": -73.9710533 }, + { "lat": 40.8355337, "lon": -73.9710326 }, + { "lat": 40.8356336, "lon": -73.9710018 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "through|right" + } +}, +{ + "type": "way", + "id": 1334307260, + "bounds": { + "minlat": 40.8347418, + "minlon": -73.9714594, + "maxlat": 40.8350558, + "maxlon": -73.9712565 + }, + "nodes": [ + 103093404, + 103137159, + 103137160, + 12344341080, + 103137162 + ], + "geometry": [ + { "lat": 40.8347418, "lon": -73.9714594 }, + { "lat": 40.8348191, "lon": -73.9714079 }, + { "lat": 40.8349949, "lon": -73.9712883 }, + { "lat": 40.8350092, "lon": -73.9712808 }, + { "lat": 40.8350558, "lon": -73.9712565 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|through" + } +}, +{ + "type": "way", + "id": 1334389559, + "bounds": { + "minlat": 40.7060865, + "minlon": -74.0131189, + "maxlat": 40.7062936, + "maxlon": -74.0129466 + }, + "nodes": [ + 12015221252, + 12345169304 + ], + "geometry": [ + { "lat": 40.7062936, "lon": -74.0129466 }, + { "lat": 40.7060865, "lon": -74.0131189 } + ], + "tags": { + "alt_name": "Canyon of Heros", + "bus:lanes": "yes|designated", + "busway:right": "lane", + "cycleway:left": "separate", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 16:00-19:00)", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:zip_left": "10003", + "tiger:zip_right": "10003", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1334979452, + "bounds": { + "minlat": 40.7052329, + "minlon": -74.0049754, + "maxlat": 40.7054081, + "maxlon": -74.0047485 + }, + "nodes": [ + 42444242, + 7138157371, + 12350506553 + ], + "geometry": [ + { "lat": 40.7052329, "lon": -74.0047485 }, + { "lat": 40.7052859, "lon": -74.0048142 }, + { "lat": 40.7054081, "lon": -74.0049754 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Maiden Lane", + "name:ko": "메이든 레인", + "name:ru": "Мейден-Лейн", + "parking:both:restriction": "no_standing", + "parking:left:taxi": "designated", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Maiden", + "tiger:name_type": "Ln", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q13422110", + "wikipedia": "en:Maiden Lane (Manhattan)" + } +}, +{ + "type": "way", + "id": 1334979453, + "bounds": { + "minlat": 40.7057998, + "minlon": -74.0060206, + "maxlat": 40.7061497, + "maxlon": -74.0055192 + }, + "nodes": [ + 42452708, + 11316405074, + 4985377336, + 4985377343, + 42454798 + ], + "geometry": [ + { "lat": 40.7057998, "lon": -74.0055192 }, + { "lat": 40.7058183, "lon": -74.0055713 }, + { "lat": 40.7058400, "lon": -74.0056105 }, + { "lat": 40.7060776, "lon": -74.0059239 }, + { "lat": 40.7061497, "lon": -74.0060206 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Maiden Lane", + "name:ko": "메이든 레인", + "name:ru": "Мейден-Лейн", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Maiden", + "tiger:name_type": "Ln", + "tiger:zip_left": "10038", + "tiger:zip_right": "10038", + "wikidata": "Q13422110", + "wikipedia": "en:Maiden Lane (Manhattan)" + } +}, +{ + "type": "way", + "id": 1334982039, + "bounds": { + "minlat": 40.7116675, + "minlon": -74.0145374, + "maxlat": 40.7118574, + "maxlon": -74.0144922 + }, + "nodes": [ + 4143835079, + 9682069932 + ], + "geometry": [ + { "lat": 40.7118574, "lon": -74.0144922 }, + { "lat": 40.7116675, "lon": -74.0145374 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "|||right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1334982040, + "bounds": { + "minlat": 40.7121715, + "minlon": -74.0144197, + "maxlat": 40.7125262, + "maxlon": -74.0143239 + }, + "nodes": [ + 7334235840, + 10282972456 + ], + "geometry": [ + { "lat": 40.7125262, "lon": -74.0143239 }, + { "lat": 40.7121715, "lon": -74.0144197 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_stopping", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "|||right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1334982041, + "bounds": { + "minlat": 40.7118574, + "minlon": -74.0144922, + "maxlat": 40.7121715, + "maxlon": -74.0144197 + }, + "nodes": [ + 10282972456, + 4143835716, + 4143835079 + ], + "geometry": [ + { "lat": 40.7121715, "lon": -74.0144197 }, + { "lat": 40.7120273, "lon": -74.0144522 }, + { "lat": 40.7118574, "lon": -74.0144922 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:right": "separate", + "expressway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "|||right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1334989056, + "bounds": { + "minlat": 40.7151947, + "minlon": -74.0112125, + "maxlat": 40.7156024, + "maxlon": -74.0111062 + }, + "nodes": [ + 5812723033, + 8304497547, + 3777860991 + ], + "geometry": [ + { "lat": 40.7156024, "lon": -74.0111062 }, + { "lat": 40.7155293, "lon": -74.0111251 }, + { "lat": 40.7151947, "lon": -74.0112125 } + ], + "tags": { + "construction": "minor", + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "parking:both:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1334989057, + "bounds": { + "minlat": 40.7160190, + "minlon": -74.0109978, + "maxlat": 40.7163041, + "maxlon": -74.0109232 + }, + "nodes": [ + 42431617, + 8304497234, + 12350633628 + ], + "geometry": [ + { "lat": 40.7163041, "lon": -74.0109232 }, + { "lat": 40.7162126, "lon": -74.0109468 }, + { "lat": 40.7160190, "lon": -74.0109978 } + ], + "tags": { + "construction": "minor", + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Greenwich Street", + "name:etymology:wikidata": "Q205380", + "name:ko": "그리니치 스트리트", + "name:ru": "Гринвич-стрит", + "oneway": "yes", + "parking:both:restriction:conditional": "no_standing @ (Mo-Fr 07:00-16:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1338773", + "wikipedia": "en:Greenwich Street" + } +}, +{ + "type": "way", + "id": 1334995999, + "bounds": { + "minlat": 40.7132501, + "minlon": -74.0105746, + "maxlat": 40.7138581, + "maxlon": -74.0092488 + }, + "nodes": [ + 42430007, + 8279851470, + 5035490051, + 12299561979, + 8279851451, + 42430004 + ], + "geometry": [ + { "lat": 40.7138581, "lon": -74.0105746 }, + { "lat": 40.7138031, "lon": -74.0104531 }, + { "lat": 40.7135400, "lon": -74.0098726 }, + { "lat": 40.7133391, "lon": -74.0094403 }, + { "lat": 40.7133134, "lon": -74.0093849 }, + { "lat": 40.7132501, "lon": -74.0092488 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Park Place", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 플레이스", + "name:ru": "Парк-Плейс", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1335028181, + "bounds": { + "minlat": 40.7077288, + "minlon": -74.0093797, + "maxlat": 40.7086249, + "maxlon": -74.0082757 + }, + "nodes": [ + 42422050, + 8281922198, + 11350133679, + 7138157353, + 42422053 + ], + "geometry": [ + { "lat": 40.7086249, "lon": -74.0093797 }, + { "lat": 40.7085949, "lon": -74.0093325 }, + { "lat": 40.7078037, "lon": -74.0083722 }, + { "lat": 40.7077638, "lon": -74.0083239 }, + { "lat": 40.7077288, "lon": -74.0082757 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Liberty Street", + "name:etymology:wikidata": "Q2979", + "name:ko": "리버티 스트리트", + "name:ru": "Либерти-стрит", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2568224", + "wikipedia": "en:Liberty Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1335039733, + "bounds": { + "minlat": 40.8735892, + "minlon": -73.9541682, + "maxlat": 40.8737454, + "maxlon": -73.9538915 + }, + "nodes": [ + 12351040453, + 12351040454 + ], + "geometry": [ + { "lat": 40.8737454, "lon": -73.9541682 }, + { "lat": 40.8735892, "lon": -73.9538915 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1335039734, + "bounds": { + "minlat": 40.8743214, + "minlon": -73.9545064, + "maxlat": 40.8745603, + "maxlon": -73.9543077 + }, + "nodes": [ + 12351040459, + 8599249429 + ], + "geometry": [ + { "lat": 40.8745603, "lon": -73.9543077 }, + { "lat": 40.8743214, "lon": -73.9545064 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1335039735, + "bounds": { + "minlat": 40.8739112, + "minlon": -73.9540825, + "maxlat": 40.8741853, + "maxlon": -73.9532870 + }, + "nodes": [ + 8219460642, + 12351040465, + 12351040464, + 12351040463, + 12351040462, + 12351040461, + 12351040460, + 8599249425 + ], + "geometry": [ + { "lat": 40.8739112, "lon": -73.9532870 }, + { "lat": 40.8741209, "lon": -73.9536600 }, + { "lat": 40.8741540, "lon": -73.9537301 }, + { "lat": 40.8741853, "lon": -73.9538289 }, + { "lat": 40.8741370, "lon": -73.9538977 }, + { "lat": 40.8741020, "lon": -73.9539553 }, + { "lat": 40.8740755, "lon": -73.9540129 }, + { "lat": 40.8740590, "lon": -73.9540825 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1335061837, + "bounds": { + "minlat": 40.7072083, + "minlon": -74.0059779, + "maxlat": 40.7073945, + "maxlon": -74.0054889 + }, + "nodes": [ + 42440347, + 8262936328, + 11367912870, + 42429353 + ], + "geometry": [ + { "lat": 40.7073945, "lon": -74.0054889 }, + { "lat": 40.7073673, "lon": -74.0055645 }, + { "lat": 40.7073197, "lon": -74.0056935 }, + { "lat": 40.7072083, "lon": -74.0059779 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1335295893, + "bounds": { + "minlat": 40.7090594, + "minlon": -74.0088957, + "maxlat": 40.7095371, + "maxlon": -74.0084241 + }, + "nodes": [ + 42454795, + 10171859895, + 11365172076, + 8281922138, + 42440335 + ], + "geometry": [ + { "lat": 40.7090594, "lon": -74.0088957 }, + { "lat": 40.7091024, "lon": -74.0088528 }, + { "lat": 40.7094712, "lon": -74.0084885 }, + { "lat": 40.7094980, "lon": -74.0084633 }, + { "lat": 40.7095371, "lon": -74.0084241 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Nassau Street", + "name:etymology:wikidata": "Q155483", + "name:ko": "나사우 스트리트", + "name:ru": "Нассо-стрит", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2597808", + "wikipedia": "en:Nassau Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1335298581, + "bounds": { + "minlat": 40.7079259, + "minlon": -74.0065343, + "maxlat": 40.7082290, + "maxlon": -74.0060233 + }, + "nodes": [ + 42440345, + 10710934676, + 11369418319, + 11369418302, + 42433330 + ], + "geometry": [ + { "lat": 40.7082290, "lon": -74.0065343 }, + { "lat": 40.7082074, "lon": -74.0065005 }, + { "lat": 40.7079511, "lon": -74.0060674 }, + { "lat": 40.7079457, "lon": -74.0060582 }, + { "lat": 40.7079259, "lon": -74.0060233 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "20 mph", + "name": "John Street", + "name:etymology:wikidata": "Q113897737", + "name:ko": "존 스트리트", + "name:ru": "Джон-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q108240697" + } +}, +{ + "type": "way", + "id": 1335306156, + "bounds": { + "minlat": 40.7098272, + "minlon": -74.0070413, + "maxlat": 40.7098706, + "maxlon": -74.0069536 + }, + "nodes": [ + 12353490602, + 42440284 + ], + "geometry": [ + { "lat": 40.7098272, "lon": -74.0069536 }, + { "lat": 40.7098706, "lon": -74.0070413 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "name:ru": "Фултон-стрит", + "oneway": "yes", + "parking:both:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1335306157, + "bounds": { + "minlat": 40.7095739, + "minlon": -74.0069536, + "maxlat": 40.7098272, + "maxlon": -74.0064412 + }, + "nodes": [ + 42440282, + 8281922090, + 12353490602 + ], + "geometry": [ + { "lat": 40.7095739, "lon": -74.0064412 }, + { "lat": 40.7095967, "lon": -74.0064878 }, + { "lat": 40.7098272, "lon": -74.0069536 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "name:ru": "Фултон-стрит", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1335306158, + "bounds": { + "minlat": 40.7090956, + "minlon": -74.0064412, + "maxlat": 40.7095739, + "maxlon": -74.0054945 + }, + "nodes": [ + 42440280, + 4985377328, + 8281922088, + 42440282 + ], + "geometry": [ + { "lat": 40.7090956, "lon": -74.0054945 }, + { "lat": 40.7091365, "lon": -74.0055751 }, + { "lat": 40.7095436, "lon": -74.0063830 }, + { "lat": 40.7095739, "lon": -74.0064412 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Fulton Street", + "name:etymology:wikidata": "Q192496", + "name:ko": "풀턴 스트리트", + "name:ru": "Фултон-стрит", + "oneway": "yes", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q685083", + "wikipedia": "en:Fulton Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1335332353, + "bounds": { + "minlat": 40.7068521, + "minlon": -74.0050152, + "maxlat": 40.7071272, + "maxlon": -74.0045735 + }, + "nodes": [ + 12353722939, + 7139624435, + 42440350 + ], + "geometry": [ + { "lat": 40.7071272, "lon": -74.0045735 }, + { "lat": 40.7069008, "lon": -74.0049356 }, + { "lat": 40.7068521, "lon": -74.0050152 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Water Street", + "name:ko": "워터 스트리트", + "name:ru": "Уотер-стрит", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1335353340, + "bounds": { + "minlat": 40.7268013, + "minlon": -73.9102138, + "maxlat": 40.7278569, + "maxlon": -73.9084799 + }, + "nodes": [ + 12353953310, + 12353943687, + 12353943688, + 12353943689, + 12353953309, + 12353953308, + 12353943697, + 12353943690, + 12353943699, + 12353953307, + 12353953305, + 12353953303, + 12353943700, + 12353943691, + 12353943694, + 12353943692, + 12353943693 + ], + "geometry": [ + { "lat": 40.7268217, "lon": -73.9088771 }, + { "lat": 40.7272357, "lon": -73.9084829 }, + { "lat": 40.7272762, "lon": -73.9084799 }, + { "lat": 40.7273256, "lon": -73.9085066 }, + { "lat": 40.7273526, "lon": -73.9085596 }, + { "lat": 40.7274753, "lon": -73.9087870 }, + { "lat": 40.7275379, "lon": -73.9088975 }, + { "lat": 40.7278569, "lon": -73.9094849 }, + { "lat": 40.7277320, "lon": -73.9096000 }, + { "lat": 40.7275942, "lon": -73.9097270 }, + { "lat": 40.7274738, "lon": -73.9098380 }, + { "lat": 40.7273213, "lon": -73.9099786 }, + { "lat": 40.7271837, "lon": -73.9101054 }, + { "lat": 40.7270893, "lon": -73.9101924 }, + { "lat": 40.7270267, "lon": -73.9101990 }, + { "lat": 40.7268865, "lon": -73.9102138 }, + { "lat": 40.7268013, "lon": -73.9100505 } + ], + "tags": { + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1335353341, + "bounds": { + "minlat": 40.7267405, + "minlon": -73.9101990, + "maxlat": 40.7270267, + "maxlon": -73.9096431 + }, + "nodes": [ + 12353943694, + 12353943695 + ], + "geometry": [ + { "lat": 40.7270267, "lon": -73.9101990 }, + { "lat": 40.7267405, "lon": -73.9096431 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1335353342, + "bounds": { + "minlat": 40.7267405, + "minlon": -73.9096431, + "maxlat": 40.7275379, + "maxlon": -73.9088975 + }, + "nodes": [ + 12353943695, + 12353953301, + 12353953302, + 12353953304, + 12353953306, + 12353943698, + 12353943697 + ], + "geometry": [ + { "lat": 40.7267405, "lon": -73.9096431 }, + { "lat": 40.7268760, "lon": -73.9095188 }, + { "lat": 40.7270095, "lon": -73.9093934 }, + { "lat": 40.7271565, "lon": -73.9092555 }, + { "lat": 40.7272768, "lon": -73.9091425 }, + { "lat": 40.7274137, "lon": -73.9090141 }, + { "lat": 40.7275379, "lon": -73.9088975 } + ], + "tags": { + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1335353343, + "bounds": { + "minlat": 40.7274137, + "minlon": -73.9096000, + "maxlat": 40.7277320, + "maxlon": -73.9090141 + }, + "nodes": [ + 12353943698, + 12353943699 + ], + "geometry": [ + { "lat": 40.7274137, "lon": -73.9090141 }, + { "lat": 40.7277320, "lon": -73.9096000 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1335353344, + "bounds": { + "minlat": 40.7268760, + "minlon": -73.9101054, + "maxlat": 40.7271837, + "maxlon": -73.9095188 + }, + "nodes": [ + 12353943700, + 12353953301 + ], + "geometry": [ + { "lat": 40.7271837, "lon": -73.9101054 }, + { "lat": 40.7268760, "lon": -73.9095188 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1335353345, + "bounds": { + "minlat": 40.7270095, + "minlon": -73.9099786, + "maxlat": 40.7273213, + "maxlon": -73.9093934 + }, + "nodes": [ + 12353953302, + 12353953303 + ], + "geometry": [ + { "lat": 40.7270095, "lon": -73.9093934 }, + { "lat": 40.7273213, "lon": -73.9099786 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1335353346, + "bounds": { + "minlat": 40.7271565, + "minlon": -73.9098380, + "maxlat": 40.7274738, + "maxlon": -73.9092555 + }, + "nodes": [ + 12353953304, + 12353953305 + ], + "geometry": [ + { "lat": 40.7271565, "lon": -73.9092555 }, + { "lat": 40.7274738, "lon": -73.9098380 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1335353347, + "bounds": { + "minlat": 40.7272768, + "minlon": -73.9097270, + "maxlat": 40.7275942, + "maxlon": -73.9091425 + }, + "nodes": [ + 12353953306, + 12353953307 + ], + "geometry": [ + { "lat": 40.7272768, "lon": -73.9091425 }, + { "lat": 40.7275942, "lon": -73.9097270 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1335353348, + "bounds": { + "minlat": 40.7266410, + "minlon": -73.9097321, + "maxlat": 40.7267405, + "maxlon": -73.9096431 + }, + "nodes": [ + 12353943695, + 12353943696 + ], + "geometry": [ + { "lat": 40.7267405, "lon": -73.9096431 }, + { "lat": 40.7266410, "lon": -73.9097321 } + ], + "tags": { + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1335353349, + "bounds": { + "minlat": 40.7267638, + "minlon": -73.9089322, + "maxlat": 40.7268217, + "maxlon": -73.9088771 + }, + "nodes": [ + 12353943686, + 12353953310 + ], + "geometry": [ + { "lat": 40.7267638, "lon": -73.9089322 }, + { "lat": 40.7268217, "lon": -73.9088771 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1335365216, + "bounds": { + "minlat": 40.7069507, + "minlon": -74.0135153, + "maxlat": 40.7071509, + "maxlon": -74.0133710 + }, + "nodes": [ + 4149936235, + 4149936232, + 42456884 + ], + "geometry": [ + { "lat": 40.7069507, "lon": -74.0135153 }, + { "lat": 40.7070629, "lon": -74.0134315 }, + { "lat": 40.7071509, "lon": -74.0133710 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Trinity Place", + "name:etymology:wikidata": "Q866896", + "name:ko": "트리니티 플레이스", + "name:ru": "Тринити-Плейс", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1335365693, + "bounds": { + "minlat": 40.7083300, + "minlon": -74.0125841, + "maxlat": 40.7086084, + "maxlon": -74.0123955 + }, + "nodes": [ + 12354084733, + 4739552801, + 9513259943 + ], + "geometry": [ + { "lat": 40.7083300, "lon": -74.0125841 }, + { "lat": 40.7084757, "lon": -74.0124855 }, + { "lat": 40.7086084, "lon": -74.0123955 } + ], + "tags": { + "bus:lanes": "yes|yes|designated", + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 16:00-19:00)", + "lanes:bus:forward": "1", + "maxspeed": "20 mph", + "name": "Trinity Place", + "name:etymology:wikidata": "Q866896", + "name:ko": "트리니티 플레이스", + "name:ru": "Тринити-Плейс", + "oneway": "yes", + "parking:left:restriction": "no_stopping", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "merge_to_right|none|none", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1335381157, + "bounds": { + "minlat": 40.7141086, + "minlon": -73.9966039, + "maxlat": 40.7141484, + "maxlon": -73.9960850 + }, + "nodes": [ + 9910698777, + 8520809694, + 12406863649 + ], + "geometry": [ + { "lat": 40.7141484, "lon": -73.9960850 }, + { "lat": 40.7141331, "lon": -73.9962839 }, + { "lat": 40.7141086, "lon": -73.9966039 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxheight": "default", + "maxspeed": "20 mph", + "name": "Division Street", + "name:ko": "디비전 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1335759518, + "bounds": { + "minlat": 40.7882354, + "minlon": -73.9441926, + "maxlat": 40.7886864, + "maxlon": -73.9438661 + }, + "nodes": [ + 42434912, + 2947964844, + 7787545814, + 5475082074 + ], + "geometry": [ + { "lat": 40.7886864, "lon": -73.9438661 }, + { "lat": 40.7886427, "lon": -73.9438965 }, + { "lat": 40.7884327, "lon": -73.9440528 }, + { "lat": 40.7882354, "lon": -73.9441926 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus:conditional": "1 @ (Mo-Fr 07:00-10:00, 14:00-19:00)", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1335759519, + "bounds": { + "minlat": 40.7944609, + "minlon": -73.9418755, + "maxlat": 40.7954069, + "maxlon": -73.9396345 + }, + "nodes": [ + 42449422, + 7924346824, + 7924346963, + 42443078 + ], + "geometry": [ + { "lat": 40.7954069, "lon": -73.9418755 }, + { "lat": 40.7953495, "lon": -73.9417395 }, + { "lat": 40.7945171, "lon": -73.9397676 }, + { "lat": 40.7944609, "lon": -73.9396345 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "name": "East 112th Street", + "name:ru": "Восточная 112-я стрит", + "name_1": "East 112 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1335807489, + "bounds": { + "minlat": 40.7619343, + "minlon": -73.9253800, + "maxlat": 40.7619700, + "maxlon": -73.9253030 + }, + "nodes": [ + 42849730, + 12356855475 + ], + "geometry": [ + { "lat": 40.7619700, "lon": -73.9253800 }, + { "lat": 40.7619343, "lon": -73.9253030 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "Broadway", + "sidewalk:both": "separate", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1335807800, + "bounds": { + "minlat": 40.7669012, + "minlon": -73.9214857, + "maxlat": 40.7669478, + "maxlon": -73.9213848 + }, + "nodes": [ + 12356877229, + 42849722 + ], + "geometry": [ + { "lat": 40.7669478, "lon": -73.9214857 }, + { "lat": 40.7669012, "lon": -73.9213848 } + ], + "tags": { + "highway": "tertiary", + "maxheight": "12'6\"", + "maxspeed": "25 mph", + "name": "30th Avenue", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1335807801, + "bounds": { + "minlat": 40.7668563, + "minlon": -73.9213848, + "maxlat": 40.7669012, + "maxlon": -73.9212913 + }, + "nodes": [ + 42849722, + 12356877230 + ], + "geometry": [ + { "lat": 40.7669012, "lon": -73.9213848 }, + { "lat": 40.7668563, "lon": -73.9212913 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "maxheight": "12'6\"", + "name": "30th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1335808058, + "bounds": { + "minlat": 40.7620209, + "minlon": -73.9255202, + "maxlat": 40.7620394, + "maxlon": -73.9254828 + }, + "nodes": [ + 3570249922, + 12356872980 + ], + "geometry": [ + { "lat": 40.7620394, "lon": -73.9255202 }, + { "lat": 40.7620209, "lon": -73.9254828 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "source:maxspeed": "sign", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1335808250, + "bounds": { + "minlat": 40.7565824, + "minlon": -73.9298557, + "maxlat": 40.7566318, + "maxlon": -73.9297499 + }, + "nodes": [ + 12356856283, + 42849740 + ], + "geometry": [ + { "lat": 40.7566318, "lon": -73.9298557 }, + { "lat": 40.7565824, "lon": -73.9297499 } + ], + "tags": { + "highway": "tertiary", + "lit": "yes", + "maxheight": "12'8\"", + "name": "36th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1335808251, + "bounds": { + "minlat": 40.7565451, + "minlon": -73.9297499, + "maxlat": 40.7565824, + "maxlon": -73.9296700 + }, + "nodes": [ + 42849740, + 12356856284 + ], + "geometry": [ + { "lat": 40.7565824, "lon": -73.9297499 }, + { "lat": 40.7565451, "lon": -73.9296700 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxheight": "12'8\"", + "name": "36th Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1335808350, + "bounds": { + "minlat": 40.7537580, + "minlon": -73.9320220, + "maxlat": 40.7537870, + "maxlon": -73.9319679 + }, + "nodes": [ + 42849745, + 12356889764 + ], + "geometry": [ + { "lat": 40.7537870, "lon": -73.9320220 }, + { "lat": 40.7537580, "lon": -73.9319679 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "residential", + "maxheight": "12'4\"", + "name": "38th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1335808351, + "bounds": { + "minlat": 40.7537870, + "minlon": -73.9320836, + "maxlat": 40.7538196, + "maxlon": -73.9320220 + }, + "nodes": [ + 12356889765, + 42849745 + ], + "geometry": [ + { "lat": 40.7538196, "lon": -73.9320836 }, + { "lat": 40.7537870, "lon": -73.9320220 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "residential", + "maxheight": "12'4\"", + "name": "38th Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1335808373, + "bounds": { + "minlat": 40.7526526, + "minlon": -73.9329100, + "maxlat": 40.7526930, + "maxlon": -73.9328269 + }, + "nodes": [ + 12356895901, + 42849749 + ], + "geometry": [ + { "lat": 40.7526526, "lon": -73.9328269 }, + { "lat": 40.7526930, "lon": -73.9329100 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:traffic_mode": "parking", + "highway": "residential", + "maxheight": "12'6\"", + "name": "39th Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1335808374, + "bounds": { + "minlat": 40.7526930, + "minlon": -73.9330094, + "maxlat": 40.7527446, + "maxlon": -73.9329100 + }, + "nodes": [ + 12356895902, + 42849749 + ], + "geometry": [ + { "lat": 40.7527446, "lon": -73.9330094 }, + { "lat": 40.7526930, "lon": -73.9329100 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "residential", + "maxheight": "12'6\"", + "name": "39th Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1335914930, + "bounds": { + "minlat": 40.7156061, + "minlon": -73.9994679, + "maxlat": 40.7159216, + "maxlon": -73.9993221 + }, + "nodes": [ + 12357732940, + 7132389369, + 7132405535 + ], + "geometry": [ + { "lat": 40.7156061, "lon": -73.9994679 }, + { "lat": 40.7158721, "lon": -73.9993531 }, + { "lat": 40.7159216, "lon": -73.9993221 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Mulberry Street", + "name:en": "Mulberry Street", + "name:ko": "멀베리 스트리트", + "name:ru": "Малберри-стрит", + "name:zh": "摩比利街", + "oneway": "yes", + "parking:left:restriction:conditional": "no_standing @ (Mo-Sa 06:00-18:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1934308", + "wikipedia": "en:Mulberry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1335923571, + "bounds": { + "minlat": 40.7412568, + "minlon": -74.0022014, + "maxlat": 40.7413313, + "maxlon": -74.0021482 + }, + "nodes": [ + 12357848368, + 12357848375, + 12357848369 + ], + "geometry": [ + { "lat": 40.7413313, "lon": -74.0021482 }, + { "lat": 40.7412788, "lon": -74.0021863 }, + { "lat": 40.7412568, "lon": -74.0022014 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1335923572, + "bounds": { + "minlat": 40.7420386, + "minlon": -74.0040639, + "maxlat": 40.7421112, + "maxlon": -74.0040207 + }, + "nodes": [ + 12357848370, + 12357848371, + 5103340832 + ], + "geometry": [ + { "lat": 40.7421112, "lon": -74.0040207 }, + { "lat": 40.7420723, "lon": -74.0040446 }, + { "lat": 40.7420386, "lon": -74.0040639 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1335923573, + "bounds": { + "minlat": 40.7419884, + "minlon": -74.0039469, + "maxlat": 40.7420595, + "maxlon": -74.0038967 + }, + "nodes": [ + 12357848372, + 12357848374, + 12357848373 + ], + "geometry": [ + { "lat": 40.7420595, "lon": -74.0038967 }, + { "lat": 40.7420209, "lon": -74.0039239 }, + { "lat": 40.7419884, "lon": -74.0039469 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1335923575, + "bounds": { + "minlat": 40.7411854, + "minlon": -74.0020296, + "maxlat": 40.7412618, + "maxlon": -74.0019813 + }, + "nodes": [ + 12357848377, + 12357848378, + 12357848376 + ], + "geometry": [ + { "lat": 40.7411854, "lon": -74.0020296 }, + { "lat": 40.7412063, "lon": -74.0020165 }, + { "lat": 40.7412618, "lon": -74.0019813 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1335961450, + "bounds": { + "minlat": 40.7050087, + "minlon": -74.0133536, + "maxlat": 40.7053189, + "maxlon": -74.0133273 + }, + "nodes": [ + 10316226090, + 42428534, + 10316226124, + 42428529 + ], + "geometry": [ + { "lat": 40.7053189, "lon": -74.0133536 }, + { "lat": 40.7051717, "lon": -74.0133408 }, + { "lat": 40.7050501, "lon": -74.0133308 }, + { "lat": 40.7050087, "lon": -74.0133273 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "foot": "designated", + "highway": "living_street", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "maxspeed:advisory": "5 mph", + "motor_vehicle": "yes", + "name": "Broadway", + "name:en": "Broadway", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left": "street_side", + "parking:left:orientation": "parallel", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1336785004, + "bounds": { + "minlat": 40.7823692, + "minlon": -74.0079824, + "maxlat": 40.7824144, + "maxlon": -74.0078325 + }, + "nodes": [ + 12364532716, + 12364532717 + ], + "geometry": [ + { "lat": 40.7823692, "lon": -74.0079824 }, + { "lat": 40.7824144, "lon": -74.0078325 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1336785005, + "bounds": { + "minlat": 40.7817520, + "minlon": -74.0083070, + "maxlat": 40.7821682, + "maxlon": -74.0080136 + }, + "nodes": [ + 12364532718, + 12364532719 + ], + "geometry": [ + { "lat": 40.7821682, "lon": -74.0083070 }, + { "lat": 40.7817520, "lon": -74.0080136 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1336785006, + "bounds": { + "minlat": 40.7811834, + "minlon": -74.0088303, + "maxlat": 40.7816821, + "maxlon": -74.0079534 + }, + "nodes": [ + 6771776387, + 12364532720, + 12364532721, + 6771776386 + ], + "geometry": [ + { "lat": 40.7816821, "lon": -74.0087085 }, + { "lat": 40.7815232, "lon": -74.0088303 }, + { "lat": 40.7811834, "lon": -74.0080728 }, + { "lat": 40.7813420, "lon": -74.0079534 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1336785007, + "bounds": { + "minlat": 40.7818241, + "minlon": -74.0086061, + "maxlat": 40.7819988, + "maxlon": -74.0084731 + }, + "nodes": [ + 6771776388, + 6771752383 + ], + "geometry": [ + { "lat": 40.7818241, "lon": -74.0086061 }, + { "lat": 40.7819988, "lon": -74.0084731 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1336785008, + "bounds": { + "minlat": 40.7814765, + "minlon": -74.0078454, + "maxlat": 40.7816151, + "maxlon": -74.0077588 + }, + "nodes": [ + 6771752384, + 6771776389 + ], + "geometry": [ + { "lat": 40.7816151, "lon": -74.0077588 }, + { "lat": 40.7814765, "lon": -74.0078454 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1336785009, + "bounds": { + "minlat": 40.7813420, + "minlon": -74.0087085, + "maxlat": 40.7816821, + "maxlon": -74.0079534 + }, + "nodes": [ + 6771776386, + 6771776387 + ], + "geometry": [ + { "lat": 40.7813420, "lon": -74.0079534 }, + { "lat": 40.7816821, "lon": -74.0087085 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1336785010, + "bounds": { + "minlat": 40.7813420, + "minlon": -74.0079534, + "maxlat": 40.7814765, + "maxlon": -74.0078454 + }, + "nodes": [ + 6771776386, + 6771776389 + ], + "geometry": [ + { "lat": 40.7813420, "lon": -74.0079534 }, + { "lat": 40.7814765, "lon": -74.0078454 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1336785011, + "bounds": { + "minlat": 40.7816821, + "minlon": -74.0087085, + "maxlat": 40.7818241, + "maxlon": -74.0086061 + }, + "nodes": [ + 6771776387, + 6771776388 + ], + "geometry": [ + { "lat": 40.7816821, "lon": -74.0087085 }, + { "lat": 40.7818241, "lon": -74.0086061 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1337175665, + "bounds": { + "minlat": 40.8810149, + "minlon": -73.9521095, + "maxlat": 40.8814221, + "maxlon": -73.9519048 + }, + "nodes": [ + 103235604, + 9239519761, + 9239519760, + 9239519759, + 6869076045 + ], + "geometry": [ + { "lat": 40.8810149, "lon": -73.9521095 }, + { "lat": 40.8810512, "lon": -73.9520852 }, + { "lat": 40.8810940, "lon": -73.9520590 }, + { "lat": 40.8811533, "lon": -73.9520297 }, + { "lat": 40.8814221, "lon": -73.9519048 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Clifton Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Clifton", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632", + "tiger:zip_right": "07632" + } +}, +{ + "type": "way", + "id": 1337593697, + "bounds": { + "minlat": 40.8814383, + "minlon": -73.9790301, + "maxlat": 40.8816595, + "maxlon": -73.9787891 + }, + "nodes": [ + 7144559592, + 7144559593 + ], + "geometry": [ + { "lat": 40.8814383, "lon": -73.9790301 }, + { "lat": 40.8816595, "lon": -73.9787891 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1337645928, + "bounds": { + "minlat": 40.8064869, + "minlon": -74.0018246, + "maxlat": 40.8065918, + "maxlon": -74.0017836 + }, + "nodes": [ + 103870526, + 103870522 + ], + "geometry": [ + { "lat": 40.8064869, "lon": -74.0017836 }, + { "lat": 40.8065918, "lon": -74.0018246 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "turn:lanes:backward": "through|right", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 1337768581, + "bounds": { + "minlat": 40.7487242, + "minlon": -73.9213110, + "maxlat": 40.7489588, + "maxlon": -73.9210817 + }, + "nodes": [ + 12374111077, + 12374111075, + 5444865964 + ], + "geometry": [ + { "lat": 40.7487242, "lon": -73.9213110 }, + { "lat": 40.7488272, "lon": -73.9212057 }, + { "lat": 40.7489588, "lon": -73.9210817 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1337768582, + "bounds": { + "minlat": 40.7483781, + "minlon": -73.9217631, + "maxlat": 40.7487242, + "maxlon": -73.9213110 + }, + "nodes": [ + 12374111077, + 12374111076, + 12374111078, + 5444865949 + ], + "geometry": [ + { "lat": 40.7487242, "lon": -73.9213110 }, + { "lat": 40.7486944, "lon": -73.9213639 }, + { "lat": 40.7485468, "lon": -73.9215121 }, + { "lat": 40.7483781, "lon": -73.9217631 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1337768585, + "bounds": { + "minlat": 40.7485874, + "minlon": -73.9207014, + "maxlat": 40.7487561, + "maxlon": -73.9204247 + }, + "nodes": [ + 12374185413, + 12374185412, + 12374185411, + 12374185410, + 12374185409, + 12374185407, + 12374185408 + ], + "geometry": [ + { "lat": 40.7485874, "lon": -73.9207014 }, + { "lat": 40.7487297, "lon": -73.9206438 }, + { "lat": 40.7487408, "lon": -73.9206297 }, + { "lat": 40.7487515, "lon": -73.9206056 }, + { "lat": 40.7487561, "lon": -73.9205747 }, + { "lat": 40.7487541, "lon": -73.9205396 }, + { "lat": 40.7487475, "lon": -73.9204247 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1337928618, + "bounds": { + "minlat": 40.8637037, + "minlon": -73.9298898, + "maxlat": 40.8650708, + "maxlon": -73.9281333 + }, + "nodes": [ + 2052329266, + 42429193, + 42429196, + 2052329268, + 42429199, + 42429202, + 42429206, + 42429207, + 1209576642, + 42429209, + 42429211, + 9561386485, + 9561386481, + 11585929606, + 13320061240 + ], + "geometry": [ + { "lat": 40.8637037, "lon": -73.9298898 }, + { "lat": 40.8637441, "lon": -73.9298666 }, + { "lat": 40.8639040, "lon": -73.9297525 }, + { "lat": 40.8639893, "lon": -73.9296846 }, + { "lat": 40.8640753, "lon": -73.9296103 }, + { "lat": 40.8642080, "lon": -73.9294671 }, + { "lat": 40.8643406, "lon": -73.9293146 }, + { "lat": 40.8644710, "lon": -73.9291620 }, + { "lat": 40.8645253, "lon": -73.9290947 }, + { "lat": 40.8646215, "lon": -73.9289665 }, + { "lat": 40.8646634, "lon": -73.9289023 }, + { "lat": 40.8646980, "lon": -73.9288389 }, + { "lat": 40.8650362, "lon": -73.9282029 }, + { "lat": 40.8650501, "lon": -73.9281768 }, + { "lat": 40.8650708, "lon": -73.9281333 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1337928619, + "bounds": { + "minlat": 40.8634377, + "minlon": -73.9300111, + "maxlat": 40.8637037, + "maxlon": -73.9298898 + }, + "nodes": [ + 13320061241, + 42429188, + 2052329266 + ], + "geometry": [ + { "lat": 40.8634377, "lon": -73.9300111 }, + { "lat": 40.8635138, "lon": -73.9299779 }, + { "lat": 40.8637037, "lon": -73.9298898 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "turn:lanes:backward": "left|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1337942884, + "bounds": { + "minlat": 40.7136412, + "minlon": -74.0107338, + "maxlat": 40.7138581, + "maxlon": -74.0105746 + }, + "nodes": [ + 42430007, + 8279851472, + 12375817361 + ], + "geometry": [ + { "lat": 40.7138581, "lon": -74.0105746 }, + { "lat": 40.7137974, "lon": -74.0106137 }, + { "lat": 40.7136412, "lon": -74.0107338 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "old_name": "West Broadway", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|right", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 1337980896, + "bounds": { + "minlat": 40.8174547, + "minlon": -74.0014607, + "maxlat": 40.8177283, + "maxlon": -74.0011960 + }, + "nodes": [ + 12376162441, + 12376162440, + 12376162439, + 12376162438, + 12376162437, + 12376162436, + 12376162435, + 12376162441 + ], + "geometry": [ + { "lat": 40.8177283, "lon": -74.0013504 }, + { "lat": 40.8175021, "lon": -74.0014607 }, + { "lat": 40.8174547, "lon": -74.0013113 }, + { "lat": 40.8174978, "lon": -74.0012558 }, + { "lat": 40.8175796, "lon": -74.0011960 }, + { "lat": 40.8176464, "lon": -74.0012088 }, + { "lat": 40.8176938, "lon": -74.0012586 }, + { "lat": 40.8177283, "lon": -74.0013504 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1337980897, + "bounds": { + "minlat": 40.8177283, + "minlon": -74.0015602, + "maxlat": 40.8178346, + "maxlon": -74.0013504 + }, + "nodes": [ + 103147927, + 13526292593, + 12376162441 + ], + "geometry": [ + { "lat": 40.8178346, "lon": -74.0015602 }, + { "lat": 40.8177922, "lon": -74.0014764 }, + { "lat": 40.8177283, "lon": -74.0013504 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1337980898, + "bounds": { + "minlat": 40.8178346, + "minlon": -74.0015602, + "maxlat": 40.8180212, + "maxlon": -74.0014646 + }, + "nodes": [ + 103147927, + 12376162443 + ], + "geometry": [ + { "lat": 40.8178346, "lon": -74.0015602 }, + { "lat": 40.8180212, "lon": -74.0014646 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 1338264782, + "bounds": { + "minlat": 40.7105880, + "minlon": -74.0077638, + "maxlat": 40.7108209, + "maxlon": -74.0073814 + }, + "nodes": [ + 3658821413, + 11374409767, + 8281922102, + 1538237434 + ], + "geometry": [ + { "lat": 40.7108209, "lon": -74.0077638 }, + { "lat": 40.7106417, "lon": -74.0074746 }, + { "lat": 40.7106162, "lon": -74.0074318 }, + { "lat": 40.7105880, "lon": -74.0073814 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Ann Street", + "name:ko": "앤 스트리트", + "oneway": "yes", + "parking:left:restriction": "no_standing", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4766689", + "wikipedia": "en:Ann Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1338269594, + "bounds": { + "minlat": 40.7050096, + "minlon": -74.0130687, + "maxlat": 40.7050302, + "maxlon": -74.0126119 + }, + "nodes": [ + 42442088, + 11050101171, + 12301550794 + ], + "geometry": [ + { "lat": 40.7050096, "lon": -74.0126119 }, + { "lat": 40.7050133, "lon": -74.0126777 }, + { "lat": 40.7050302, "lon": -74.0130687 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "15 mph", + "name": "Beaver Street", + "name:etymology:wikidata": "Q47542", + "name:ko": "비버 스트리트", + "name:ru": "Бивер-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Beaver", + "tiger:name_type": "St", + "tiger:zip_left": "10005", + "tiger:zip_right": "10005", + "wikidata": "Q13463781", + "wikipedia": "en:Beaver Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1338272356, + "bounds": { + "minlat": 40.7092710, + "minlon": -74.0138882, + "maxlat": 40.7095053, + "maxlon": -74.0133454 + }, + "nodes": [ + 3772840882, + 8262936695, + 12301556795 + ], + "geometry": [ + { "lat": 40.7095053, "lon": -74.0138882 }, + { "lat": 40.7094809, "lon": -74.0138307 }, + { "lat": 40.7092710, "lon": -74.0133454 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Albany Street", + "name:etymology:wikidata": "Q24861", + "name:ko": "앨버니 스트리트", + "oneway": "yes", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29110247", + "wikipedia": "en:Albany Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1338576311, + "bounds": { + "minlat": 40.7533952, + "minlon": -74.0060085, + "maxlat": 40.7535959, + "maxlon": -74.0055940 + }, + "nodes": [ + 12382008655, + 12382008659, + 12382008658, + 12382008656, + 12382008657 + ], + "geometry": [ + { "lat": 40.7533952, "lon": -74.0060085 }, + { "lat": 40.7534345, "lon": -74.0059791 }, + { "lat": 40.7534595, "lon": -74.0059595 }, + { "lat": 40.7535959, "lon": -74.0058545 }, + { "lat": 40.7534919, "lon": -74.0055940 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1339459677, + "bounds": { + "minlat": 40.8157258, + "minlon": -73.9310311, + "maxlat": 40.8159779, + "maxlon": -73.9309880 + }, + "nodes": [ + 12389944944, + 9163819542 + ], + "geometry": [ + { "lat": 40.8159779, "lon": -73.9310311 }, + { "lat": 40.8157258, "lon": -73.9309880 } + ], + "tags": { + "destination:lanes": "none|Willis Avenue;Third Avenue Bridge|East 138th Street;Madison Avenue Bridge", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "turn:lanes": "none|none|slight_right" + } +}, +{ + "type": "way", + "id": 1339756191, + "bounds": { + "minlat": 40.8051467, + "minlon": -73.9206546, + "maxlat": 40.8052225, + "maxlon": -73.9204752 + }, + "nodes": [ + 9156942254, + 9156942262 + ], + "geometry": [ + { "lat": 40.8052225, "lon": -73.9206546 }, + { "lat": 40.8051467, "lon": -73.9204752 } + ], + "tags": { + "change:lanes": "no|not_left|yes", + "destination": "Bruckner Expressway;New Haven", + "destination:ref": "I 278 East", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "turn:lanes": "|through;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 1339756192, + "bounds": { + "minlat": 40.8052225, + "minlon": -73.9207281, + "maxlat": 40.8052535, + "maxlon": -73.9206546 + }, + "nodes": [ + 9156942255, + 9156942254 + ], + "geometry": [ + { "lat": 40.8052535, "lon": -73.9207281 }, + { "lat": 40.8052225, "lon": -73.9206546 } + ], + "tags": { + "destination": "Bruckner Expressway;New Haven", + "destination:ref": "I 278 East", + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt", + "tiger:cfcc": "A63", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1339758950, + "bounds": { + "minlat": 40.8534158, + "minlon": -73.9615915, + "maxlat": 40.8534734, + "maxlon": -73.9612927 + }, + "nodes": [ + 12393067360, + 1381944089 + ], + "geometry": [ + { "lat": 40.8534158, "lon": -73.9612927 }, + { "lat": 40.8534734, "lon": -73.9615915 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge:name": "George Washington Bridge (upper level)", + "bridge:name:etymology:wikidata": "Q23", + "change:lanes": "yes|yes|not_right|no", + "destination:lanes": "||Fort Lee;Palisades Parkway|Palisades Parkway", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "toll": "no", + "turn:lanes": "||through;slight_right|slight_right", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 1339759598, + "bounds": { + "minlat": 40.7673168, + "minlon": -73.9502726, + "maxlat": 40.7674299, + "maxlon": -73.9501703 + }, + "nodes": [ + 4813099374, + 12393073876 + ], + "geometry": [ + { "lat": 40.7674299, "lon": -73.9501703 }, + { "lat": 40.7673168, "lon": -73.9502726 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "destination:lanes": "||East 63 Street;Ed Koch Queensboro Bridge;East 71 Street", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "turn:lanes": "||through;slight_right", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1339765258, + "bounds": { + "minlat": 40.8499323, + "minlon": -73.9444176, + "maxlat": 40.8499830, + "maxlon": -73.9441593 + }, + "nodes": [ + 12393091294, + 298792355 + ], + "geometry": [ + { "lat": 40.8499830, "lon": -73.9444176 }, + { "lat": 40.8499323, "lon": -73.9441593 } + ], + "tags": { + "access:conditional": "permit @ height>14'0\"; permit @ width>8'6\"; permit @ weight>50000 lbs; permit @ axleload>20000 lbs; permit @ bogieweight>34000 lbs", + "bicycle": "use_sidepath", + "bridge": "yes", + "change:lanes": "no|no|no|no", + "destination:lanes": "none|none|Harlem River Drive;Franklin D. Roosevelt East River Drive;West 178th Street|Henry Hudson Parkway", + "foot": "no", + "hazmat:1.1": "permit", + "hazmat:1.2": "permit", + "hazmat:1.3": "permit", + "hgv": "designated", + "hgv_articulated:conditional": "permit @ height>14'0\"; permit @ width>8'6\"; permit @ weight>80000 lbs; permit @ axleload>20000 lbs; permit @ bogieweight>34000 lbs", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "lit": "yes", + "maxaxleload": "20000 lbs", + "maxbogieweight": "34000 lbs", + "maxheight": "14'0\"", + "maxspeed": "45 mph", + "maxweight": "50000 lbs", + "maxweight:hgv_articulated": "80000 lbs", + "maxwidth": "8'6\"", + "name": "George Washington Bridge Upper Level", + "name:etymology:wikidata": "Q23", + "name:ru": "Мост Джорджа Вашингтона (верхний уровень)", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "sidewalk:right": "separate", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "none|none|through;slight_right|slight_right", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 1339765260, + "bounds": { + "minlat": 40.8499830, + "minlon": -73.9446443, + "maxlat": 40.8500274, + "maxlon": -73.9444176 + }, + "nodes": [ + 12393091296, + 12393091294 + ], + "geometry": [ + { "lat": 40.8500274, "lon": -73.9446443 }, + { "lat": 40.8499830, "lon": -73.9444176 } + ], + "tags": { + "access:conditional": "permit @ height>14'0\"; permit @ width>8'6\"; permit @ weight>50000 lbs; permit @ axleload>20000 lbs; permit @ bogieweight>34000 lbs", + "bicycle": "use_sidepath", + "bridge": "yes", + "change:lanes": "yes|yes|not_right|no", + "destination:lanes": "none|none|Harlem River Drive;Franklin D. Roosevelt East River Drive;West 178th Street|Henry Hudson Parkway", + "foot": "no", + "hazmat:1.1": "permit", + "hazmat:1.2": "permit", + "hazmat:1.3": "permit", + "hgv": "designated", + "hgv_articulated:conditional": "permit @ height>14'0\"; permit @ width>8'6\"; permit @ weight>80000 lbs; permit @ axleload>20000 lbs; permit @ bogieweight>34000 lbs", + "highway": "motorway", + "horse": "no", + "lanes": "4", + "layer": "2", + "lit": "yes", + "maxaxleload": "20000 lbs", + "maxbogieweight": "34000 lbs", + "maxheight": "14'0\"", + "maxspeed": "45 mph", + "maxweight": "50000 lbs", + "maxweight:hgv_articulated": "80000 lbs", + "maxwidth": "8'6\"", + "name": "George Washington Bridge Upper Level", + "name:etymology:wikidata": "Q23", + "name:ru": "Мост Джорджа Вашингтона (верхний уровень)", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "sidewalk:right": "separate", + "surface": "asphalt", + "toll": "yes", + "turn:lanes": "none|none|through;slight_right|slight_right", + "wikidata": "Q125821", + "wikipedia": "en:George Washington Bridge" + } +}, +{ + "type": "way", + "id": 1339878532, + "bounds": { + "minlat": 40.8242909, + "minlon": -73.9864511, + "maxlat": 40.8243695, + "maxlon": -73.9863569 + }, + "nodes": [ + 103212442, + 4695282822, + 4695282829 + ], + "geometry": [ + { "lat": 40.8243695, "lon": -73.9864511 }, + { "lat": 40.8243172, "lon": -73.9863785 }, + { "lat": 40.8242909, "lon": -73.9863569 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1339878535, + "bounds": { + "minlat": 40.8242836, + "minlon": -73.9859292, + "maxlat": 40.8245026, + "maxlon": -73.9857637 + }, + "nodes": [ + 12394165124, + 12394165116 + ], + "geometry": [ + { "lat": 40.8242836, "lon": -73.9859292 }, + { "lat": 40.8245026, "lon": -73.9857637 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1339878536, + "bounds": { + "minlat": 40.8242557, + "minlon": -73.9863087, + "maxlat": 40.8244380, + "maxlon": -73.9859292 + }, + "nodes": [ + 12394165134, + 12394165129, + 12394165120, + 12394165124 + ], + "geometry": [ + { "lat": 40.8244380, "lon": -73.9862842 }, + { "lat": 40.8244050, "lon": -73.9863087 }, + { "lat": 40.8242557, "lon": -73.9859501 }, + { "lat": 40.8242836, "lon": -73.9859292 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1339878538, + "bounds": { + "minlat": 40.8243695, + "minlon": -73.9864511, + "maxlat": 40.8244050, + "maxlon": -73.9863087 + }, + "nodes": [ + 103212442, + 12394165131, + 12394165129 + ], + "geometry": [ + { "lat": 40.8243695, "lon": -73.9864511 }, + { "lat": 40.8243876, "lon": -73.9863485 }, + { "lat": 40.8244050, "lon": -73.9863087 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1339878539, + "bounds": { + "minlat": 40.8244536, + "minlon": -73.9856037, + "maxlat": 40.8248628, + "maxlon": -73.9851442 + }, + "nodes": [ + 4695282839, + 12394165118, + 12394165149, + 12394165157, + 12394165104, + 12394165161, + 12394165145, + 12394165158, + 12394165133, + 12394165164 + ], + "geometry": [ + { "lat": 40.8247176, "lon": -73.9856037 }, + { "lat": 40.8245760, "lon": -73.9855496 }, + { "lat": 40.8245479, "lon": -73.9855279 }, + { "lat": 40.8244605, "lon": -73.9853609 }, + { "lat": 40.8244536, "lon": -73.9853221 }, + { "lat": 40.8244655, "lon": -73.9852818 }, + { "lat": 40.8246322, "lon": -73.9851442 }, + { "lat": 40.8246556, "lon": -73.9851455 }, + { "lat": 40.8246778, "lon": -73.9851608 }, + { "lat": 40.8248628, "lon": -73.9854878 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1339878540, + "bounds": { + "minlat": 40.8245471, + "minlon": -73.9861176, + "maxlat": 40.8247184, + "maxlon": -73.9857344 + }, + "nodes": [ + 7555222408, + 12394165108, + 12394165122 + ], + "geometry": [ + { "lat": 40.8245471, "lon": -73.9857344 }, + { "lat": 40.8247184, "lon": -73.9860781 }, + { "lat": 40.8246592, "lon": -73.9861176 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1339878541, + "bounds": { + "minlat": 40.8280482, + "minlon": -73.9837411, + "maxlat": 40.8291734, + "maxlon": -73.9833010 + }, + "nodes": [ + 12394165115, + 7111640168, + 7111640164, + 103237099, + 12394165117, + 7538748022, + 12372296128, + 103168720 + ], + "geometry": [ + { "lat": 40.8280482, "lon": -73.9837411 }, + { "lat": 40.8281338, "lon": -73.9837048 }, + { "lat": 40.8282741, "lon": -73.9836639 }, + { "lat": 40.8284058, "lon": -73.9836164 }, + { "lat": 40.8288104, "lon": -73.9835006 }, + { "lat": 40.8290757, "lon": -73.9833661 }, + { "lat": 40.8291033, "lon": -73.9833146 }, + { "lat": 40.8291734, "lon": -73.9833010 } + ], + "tags": { + "highway": "service", + "name": "Railroad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Abbott", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07024" + } +}, +{ + "type": "way", + "id": 1339878542, + "bounds": { + "minlat": 40.8466521, + "minlon": -73.9752259, + "maxlat": 40.8467786, + "maxlon": -73.9750917 + }, + "nodes": [ + 7501946696, + 7501946697, + 7501946698, + 7501946694, + 7501946695, + 12394165163, + 12394165155, + 12394165138, + 12394165140, + 7501946696 + ], + "geometry": [ + { "lat": 40.8467006, "lon": -73.9751592 }, + { "lat": 40.8467036, "lon": -73.9751257 }, + { "lat": 40.8467477, "lon": -73.9750917 }, + { "lat": 40.8467786, "lon": -73.9751618 }, + { "lat": 40.8467345, "lon": -73.9751957 }, + { "lat": 40.8467133, "lon": -73.9751867 }, + { "lat": 40.8466648, "lon": -73.9752259 }, + { "lat": 40.8466582, "lon": -73.9752116 }, + { "lat": 40.8466521, "lon": -73.9751984 }, + { "lat": 40.8467006, "lon": -73.9751592 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "name": "Fort Lee Police Memorial Square" + } +}, +{ + "type": "way", + "id": 1339878543, + "bounds": { + "minlat": 40.8452297, + "minlon": -73.9789164, + "maxlat": 40.8454999, + "maxlon": -73.9787131 + }, + "nodes": [ + 12394165123, + 12394165150, + 12394165143, + 12394165130, + 12394165106, + 12394165113, + 12394165121, + 9753804641 + ], + "geometry": [ + { "lat": 40.8452297, "lon": -73.9787279 }, + { "lat": 40.8452691, "lon": -73.9788497 }, + { "lat": 40.8453062, "lon": -73.9788963 }, + { "lat": 40.8453502, "lon": -73.9789164 }, + { "lat": 40.8454023, "lon": -73.9789083 }, + { "lat": 40.8454459, "lon": -73.9788758 }, + { "lat": 40.8454843, "lon": -73.9788034 }, + { "lat": 40.8454999, "lon": -73.9787131 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1339878545, + "bounds": { + "minlat": 40.8244380, + "minlon": -73.9862842, + "maxlat": 40.8246592, + "maxlon": -73.9861176 + }, + "nodes": [ + 12394165134, + 12394165122 + ], + "geometry": [ + { "lat": 40.8244380, "lon": -73.9862842 }, + { "lat": 40.8246592, "lon": -73.9861176 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1339878546, + "bounds": { + "minlat": 40.8247184, + "minlon": -73.9861690, + "maxlat": 40.8247732, + "maxlon": -73.9860781 + }, + "nodes": [ + 12394165108, + 7555222409 + ], + "geometry": [ + { "lat": 40.8247184, "lon": -73.9860781 }, + { "lat": 40.8247732, "lon": -73.9861690 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1339971373, + "bounds": { + "minlat": 40.7215997, + "minlon": -73.9462055, + "maxlat": 40.7220304, + "maxlon": -73.9457234 + }, + "nodes": [ + 2987758897, + 6228788714, + 4205219011 + ], + "geometry": [ + { "lat": 40.7215997, "lon": -73.9457234 }, + { "lat": 40.7216604, "lon": -73.9457902 }, + { "lat": 40.7220304, "lon": -73.9462055 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:traffic_mode:left": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1339971374, + "bounds": { + "minlat": 40.7206201, + "minlon": -73.9449106, + "maxlat": 40.7208388, + "maxlon": -73.9446730 + }, + "nodes": [ + 2987758839, + 12390552295, + 9789393773, + 2987758901 + ], + "geometry": [ + { "lat": 40.7206201, "lon": -73.9446730 }, + { "lat": 40.7206572, "lon": -73.9447098 }, + { "lat": 40.7208008, "lon": -73.9448696 }, + { "lat": 40.7208388, "lon": -73.9449106 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:buffer": "yes", + "cycleway:right:marking": "barred_area", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1339971375, + "bounds": { + "minlat": 40.7204367, + "minlon": -73.9446730, + "maxlat": 40.7206201, + "maxlon": -73.9445012 + }, + "nodes": [ + 2987758840, + 13040865856, + 2987758839 + ], + "geometry": [ + { "lat": 40.7204367, "lon": -73.9445012 }, + { "lat": 40.7204987, "lon": -73.9445593 }, + { "lat": 40.7206201, "lon": -73.9446730 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "McGuinness Boulevard South", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1340053606, + "bounds": { + "minlat": 40.7482874, + "minlon": -73.9695959, + "maxlat": 40.7486413, + "maxlon": -73.9687676 + }, + "nodes": [ + 9140864935, + 9140864931, + 42450809 + ], + "geometry": [ + { "lat": 40.7486413, "lon": -73.9695959 }, + { "lat": 40.7483776, "lon": -73.9689733 }, + { "lat": 40.7482874, "lon": -73.9687676 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1340068309, + "bounds": { + "minlat": 40.8293573, + "minlon": -73.9795162, + "maxlat": 40.8301639, + "maxlon": -73.9793080 + }, + "nodes": [ + 11726537991, + 6895127591, + 6895127592, + 6895127593, + 6895127594, + 6895127595 + ], + "geometry": [ + { "lat": 40.8301639, "lon": -73.9793080 }, + { "lat": 40.8297259, "lon": -73.9795148 }, + { "lat": 40.8295550, "lon": -73.9795162 }, + { "lat": 40.8294830, "lon": -73.9794291 }, + { "lat": 40.8294037, "lon": -73.9794387 }, + { "lat": 40.8293573, "lon": -73.9794797 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1340227035, + "bounds": { + "minlat": 40.7230557, + "minlon": -73.9215022, + "maxlat": 40.7233344, + "maxlon": -73.9209440 + }, + "nodes": [ + 12397297365, + 12397297366, + 12397297367, + 12397297368, + 12397297372, + 12397297369, + 12397297370, + 12397297371 + ], + "geometry": [ + { "lat": 40.7230557, "lon": -73.9209750 }, + { "lat": 40.7231779, "lon": -73.9209440 }, + { "lat": 40.7232046, "lon": -73.9209590 }, + { "lat": 40.7232235, "lon": -73.9209979 }, + { "lat": 40.7232394, "lon": -73.9211759 }, + { "lat": 40.7232718, "lon": -73.9213508 }, + { "lat": 40.7232965, "lon": -73.9214177 }, + { "lat": 40.7233344, "lon": -73.9215022 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1340227036, + "bounds": { + "minlat": 40.7231868, + "minlon": -73.9215038, + "maxlat": 40.7232965, + "maxlon": -73.9214177 + }, + "nodes": [ + 12397297370, + 12397297373, + 13542470160 + ], + "geometry": [ + { "lat": 40.7232965, "lon": -73.9214177 }, + { "lat": 40.7232616, "lon": -73.9214799 }, + { "lat": 40.7231868, "lon": -73.9215038 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1340284718, + "bounds": { + "minlat": 40.8060064, + "minlon": -74.0013673, + "maxlat": 40.8061559, + "maxlon": -74.0009941 + }, + "nodes": [ + 12397839601, + 103870494, + 103870495 + ], + "geometry": [ + { "lat": 40.8060064, "lon": -74.0009941 }, + { "lat": 40.8060454, "lon": -74.0010806 }, + { "lat": 40.8061559, "lon": -74.0013673 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09000693", + "alt_name": "John F. Kennedy Boulevard East", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Boulevard East", + "official_name": "John F. Kennedy Boulevard East", + "turn:lanes:forward": "left|", + "wikidata": "Q4949641", + "wikipedia": "en:Boulevard East" + } +}, +{ + "type": "way", + "id": 1340677945, + "bounds": { + "minlat": 40.8497576, + "minlon": -73.9707136, + "maxlat": 40.8498671, + "maxlon": -73.9706857 + }, + "nodes": [ + 12401386040, + 1957897988 + ], + "geometry": [ + { "lat": 40.8498671, "lon": -73.9706857 }, + { "lat": 40.8497576, "lon": -73.9707136 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1341258157, + "bounds": { + "minlat": 40.7140818, + "minlon": -73.9969532, + "maxlat": 40.7141086, + "maxlon": -73.9966039 + }, + "nodes": [ + 12406863649, + 12196074943 + ], + "geometry": [ + { "lat": 40.7141086, "lon": -73.9966039 }, + { "lat": 40.7140818, "lon": -73.9969532 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxheight": "default", + "maxspeed": "20 mph", + "name": "Division Street", + "name:ko": "디비전 스트리트", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction": "no_parking", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-10:00,16:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1341270468, + "bounds": { + "minlat": 40.7123600, + "minlon": -74.0091963, + "maxlat": 40.7125082, + "maxlon": -74.0088791 + }, + "nodes": [ + 11411576728, + 12406996356 + ], + "geometry": [ + { "lat": 40.7123600, "lon": -74.0088791 }, + { "lat": 40.7125082, "lon": -74.0091963 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Barclay Street", + "name:etymology:wikidata": "Q94355342", + "name:ko": "바클레이 스트리트", + "name:ru": "Баркли-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:both:restriction:conditional": "no_standing @ (Mo-Sa 07:00-10:00,16:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14622883" + } +}, +{ + "type": "way", + "id": 1341270469, + "bounds": { + "minlat": 40.7125082, + "minlon": -74.0096340, + "maxlat": 40.7127130, + "maxlon": -74.0091963 + }, + "nodes": [ + 12406996356, + 8279851457, + 42453952 + ], + "geometry": [ + { "lat": 40.7125082, "lon": -74.0091963 }, + { "lat": 40.7126768, "lon": -74.0095569 }, + { "lat": 40.7127130, "lon": -74.0096340 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Barclay Street", + "name:etymology:wikidata": "Q94355342", + "name:ko": "바클레이 스트리트", + "name:ru": "Баркли-стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction": "no_parking", + "parking:right:restriction:conditional": "no_standing @ (Mo-Sa 07:00-10:00,16:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q14622883" + } +}, +{ + "type": "way", + "id": 1341643441, + "bounds": { + "minlat": 40.8339523, + "minlon": -74.0062663, + "maxlat": 40.8341289, + "maxlon": -74.0059459 + }, + "nodes": [ + 12410380619, + 12410380618 + ], + "geometry": [ + { "lat": 40.8339523, "lon": -74.0059459 }, + { "lat": 40.8341289, "lon": -74.0062663 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643442, + "bounds": { + "minlat": 40.8336113, + "minlon": -74.0088804, + "maxlat": 40.8337608, + "maxlon": -74.0085390 + }, + "nodes": [ + 12410380622, + 12410380621, + 12410380620 + ], + "geometry": [ + { "lat": 40.8336113, "lon": -74.0085390 }, + { "lat": 40.8337608, "lon": -74.0088150 }, + { "lat": 40.8337000, "lon": -74.0088804 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643443, + "bounds": { + "minlat": 40.8335305, + "minlon": -74.0084839, + "maxlat": 40.8336613, + "maxlon": -74.0082890 + }, + "nodes": [ + 12410380624, + 12410380623 + ], + "geometry": [ + { "lat": 40.8336613, "lon": -74.0084839 }, + { "lat": 40.8335305, "lon": -74.0082890 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643444, + "bounds": { + "minlat": 40.8342327, + "minlon": -74.0078135, + "maxlat": 40.8342973, + "maxlon": -74.0077086 + }, + "nodes": [ + 12410380629, + 12410380628 + ], + "geometry": [ + { "lat": 40.8342973, "lon": -74.0078135 }, + { "lat": 40.8342327, "lon": -74.0077086 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643445, + "bounds": { + "minlat": 40.8343055, + "minlon": -74.0077408, + "maxlat": 40.8343665, + "maxlon": -74.0076409 + }, + "nodes": [ + 12410380627, + 12410380626 + ], + "geometry": [ + { "lat": 40.8343665, "lon": -74.0077408 }, + { "lat": 40.8343055, "lon": -74.0076409 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643446, + "bounds": { + "minlat": 40.8342973, + "minlon": -74.0079416, + "maxlat": 40.8343646, + "maxlon": -74.0078135 + }, + "nodes": [ + 12410380629, + 12410380625 + ], + "geometry": [ + { "lat": 40.8342973, "lon": -74.0078135 }, + { "lat": 40.8343646, "lon": -74.0079416 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643447, + "bounds": { + "minlat": 40.8341807, + "minlon": -74.0078704, + "maxlat": 40.8342433, + "maxlon": -74.0077690 + }, + "nodes": [ + 12410380631, + 12410380630 + ], + "geometry": [ + { "lat": 40.8342433, "lon": -74.0078704 }, + { "lat": 40.8341807, "lon": -74.0077690 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643448, + "bounds": { + "minlat": 40.8341797, + "minlon": -74.0081730, + "maxlat": 40.8343029, + "maxlon": -74.0079373 + }, + "nodes": [ + 12410380633, + 12410380632 + ], + "geometry": [ + { "lat": 40.8341797, "lon": -74.0079373 }, + { "lat": 40.8343029, "lon": -74.0081730 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643449, + "bounds": { + "minlat": 40.8340833, + "minlon": -74.0079724, + "maxlat": 40.8341464, + "maxlon": -74.0078732 + }, + "nodes": [ + 12410380635, + 12410380634 + ], + "geometry": [ + { "lat": 40.8341464, "lon": -74.0079724 }, + { "lat": 40.8340833, "lon": -74.0078732 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643450, + "bounds": { + "minlat": 40.8340956, + "minlon": -74.0082555, + "maxlat": 40.8342213, + "maxlon": -74.0080258 + }, + "nodes": [ + 12410380637, + 12410380636 + ], + "geometry": [ + { "lat": 40.8340956, "lon": -74.0080258 }, + { "lat": 40.8342213, "lon": -74.0082555 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643451, + "bounds": { + "minlat": 40.8340087, + "minlon": -74.0080480, + "maxlat": 40.8340745, + "maxlon": -74.0079467 + }, + "nodes": [ + 12410380639, + 12410380638 + ], + "geometry": [ + { "lat": 40.8340745, "lon": -74.0080480 }, + { "lat": 40.8340087, "lon": -74.0079467 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643452, + "bounds": { + "minlat": 40.8339564, + "minlon": -74.0081052, + "maxlat": 40.8340201, + "maxlon": -74.0080087 + }, + "nodes": [ + 12410380641, + 12410380640 + ], + "geometry": [ + { "lat": 40.8340201, "lon": -74.0081052 }, + { "lat": 40.8339564, "lon": -74.0080087 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643453, + "bounds": { + "minlat": 40.8338676, + "minlon": -74.0082006, + "maxlat": 40.8339294, + "maxlon": -74.0081036 + }, + "nodes": [ + 12410380643, + 12410380642 + ], + "geometry": [ + { "lat": 40.8339294, "lon": -74.0082006 }, + { "lat": 40.8338676, "lon": -74.0081036 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643454, + "bounds": { + "minlat": 40.8337644, + "minlon": -74.0083158, + "maxlat": 40.8338199, + "maxlon": -74.0082333 + }, + "nodes": [ + 7931085787, + 12410380644 + ], + "geometry": [ + { "lat": 40.8338199, "lon": -74.0083158 }, + { "lat": 40.8337644, "lon": -74.0082333 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643455, + "bounds": { + "minlat": 40.8333965, + "minlon": -74.0091071, + "maxlat": 40.8335823, + "maxlon": -74.0087754 + }, + "nodes": [ + 12410380647, + 12410380646 + ], + "geometry": [ + { "lat": 40.8333965, "lon": -74.0087754 }, + { "lat": 40.8335823, "lon": -74.0091071 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643456, + "bounds": { + "minlat": 40.8332477, + "minlon": -74.0087754, + "maxlat": 40.8333965, + "maxlon": -74.0084992 + }, + "nodes": [ + 12410380647, + 12410380645 + ], + "geometry": [ + { "lat": 40.8333965, "lon": -74.0087754 }, + { "lat": 40.8332477, "lon": -74.0084992 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643457, + "bounds": { + "minlat": 40.8332223, + "minlon": -74.0088154, + "maxlat": 40.8333602, + "maxlon": -74.0085753 + }, + "nodes": [ + 12410380649, + 12410380648 + ], + "geometry": [ + { "lat": 40.8333602, "lon": -74.0088154 }, + { "lat": 40.8332223, "lon": -74.0085753 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643458, + "bounds": { + "minlat": 40.8332959, + "minlon": -74.0092200, + "maxlat": 40.8335003, + "maxlon": -74.0088862 + }, + "nodes": [ + 12410380651, + 12410380650 + ], + "geometry": [ + { "lat": 40.8332959, "lon": -74.0088862 }, + { "lat": 40.8335003, "lon": -74.0092200 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643461, + "bounds": { + "minlat": 40.8341084, + "minlon": -74.0055749, + "maxlat": 40.8343166, + "maxlon": -74.0052165 + }, + "nodes": [ + 12410380661, + 12410380660 + ], + "geometry": [ + { "lat": 40.8343166, "lon": -74.0055749 }, + { "lat": 40.8341084, "lon": -74.0052165 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643462, + "bounds": { + "minlat": 40.8339449, + "minlon": -74.0058606, + "maxlat": 40.8340376, + "maxlon": -74.0057027 + }, + "nodes": [ + 12016315200, + 12410380662 + ], + "geometry": [ + { "lat": 40.8340376, "lon": -74.0058606 }, + { "lat": 40.8339449, "lon": -74.0057027 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643463, + "bounds": { + "minlat": 40.8340579, + "minlon": -74.0057554, + "maxlat": 40.8341411, + "maxlon": -74.0056141 + }, + "nodes": [ + 12410380664, + 12410380663 + ], + "geometry": [ + { "lat": 40.8341411, "lon": -74.0057554 }, + { "lat": 40.8340579, "lon": -74.0056141 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643464, + "bounds": { + "minlat": 40.8341014, + "minlon": -74.0061469, + "maxlat": 40.8343085, + "maxlon": -74.0057962 + }, + "nodes": [ + 12410380666, + 12410380665 + ], + "geometry": [ + { "lat": 40.8341014, "lon": -74.0057962 }, + { "lat": 40.8343085, "lon": -74.0061469 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643465, + "bounds": { + "minlat": 40.8336444, + "minlon": -74.0059260, + "maxlat": 40.8339725, + "maxlon": -74.0054723 + }, + "nodes": [ + 12410380669, + 12410380668, + 12410380667 + ], + "geometry": [ + { "lat": 40.8339725, "lon": -74.0059260 }, + { "lat": 40.8337225, "lon": -74.0054723 }, + { "lat": 40.8336444, "lon": -74.0054968 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643466, + "bounds": { + "minlat": 40.8336604, + "minlon": -74.0061267, + "maxlat": 40.8337702, + "maxlon": -74.0059166 + }, + "nodes": [ + 12410380671, + 12410380670 + ], + "geometry": [ + { "lat": 40.8337702, "lon": -74.0061267 }, + { "lat": 40.8336604, "lon": -74.0059166 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643467, + "bounds": { + "minlat": 40.8333517, + "minlon": -74.0062525, + "maxlat": 40.8336436, + "maxlon": -74.0057845 + }, + "nodes": [ + 12410380674, + 12410380673, + 12410380672 + ], + "geometry": [ + { "lat": 40.8336436, "lon": -74.0062525 }, + { "lat": 40.8333953, "lon": -74.0057845 }, + { "lat": 40.8333517, "lon": -74.0058224 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643468, + "bounds": { + "minlat": 40.8332091, + "minlon": -74.0066002, + "maxlat": 40.8332989, + "maxlon": -74.0064419 + }, + "nodes": [ + 12410380676, + 12410380675 + ], + "geometry": [ + { "lat": 40.8332989, "lon": -74.0066002 }, + { "lat": 40.8332091, "lon": -74.0064419 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643469, + "bounds": { + "minlat": 40.8333567, + "minlon": -74.0064287, + "maxlat": 40.8334685, + "maxlon": -74.0062264 + }, + "nodes": [ + 12410380678, + 12410380677 + ], + "geometry": [ + { "lat": 40.8334685, "lon": -74.0064287 }, + { "lat": 40.8333567, "lon": -74.0062264 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643470, + "bounds": { + "minlat": 40.8328753, + "minlon": -74.0066835, + "maxlat": 40.8332165, + "maxlon": -74.0062136 + }, + "nodes": [ + 103159275, + 12410380680, + 12410380679 + ], + "geometry": [ + { "lat": 40.8332165, "lon": -74.0066835 }, + { "lat": 40.8329504, "lon": -74.0062136 }, + { "lat": 40.8328753, "lon": -74.0062753 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643471, + "bounds": { + "minlat": 40.8327472, + "minlon": -74.0069948, + "maxlat": 40.8330224, + "maxlon": -74.0064497 + }, + "nodes": [ + 12016315204, + 12410380681 + ], + "geometry": [ + { "lat": 40.8330224, "lon": -74.0069948 }, + { "lat": 40.8327472, "lon": -74.0064497 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643472, + "bounds": { + "minlat": 40.8326452, + "minlon": -74.0072723, + "maxlat": 40.8327460, + "maxlon": -74.0071078 + }, + "nodes": [ + 12410380683, + 12410380682 + ], + "geometry": [ + { "lat": 40.8327460, "lon": -74.0072723 }, + { "lat": 40.8326452, "lon": -74.0071078 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643473, + "bounds": { + "minlat": 40.8325166, + "minlon": -74.0073801, + "maxlat": 40.8326394, + "maxlon": -74.0071745 + }, + "nodes": [ + 12410380685, + 12410380684 + ], + "geometry": [ + { "lat": 40.8326394, "lon": -74.0073801 }, + { "lat": 40.8325166, "lon": -74.0071745 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643474, + "bounds": { + "minlat": 40.8325059, + "minlon": -74.0074396, + "maxlat": 40.8325798, + "maxlon": -74.0073187 + }, + "nodes": [ + 12410380687, + 12410380686 + ], + "geometry": [ + { "lat": 40.8325798, "lon": -74.0074396 }, + { "lat": 40.8325059, "lon": -74.0073187 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643475, + "bounds": { + "minlat": 40.8321029, + "minlon": -74.0074128, + "maxlat": 40.8322948, + "maxlon": -74.0072070 + }, + "nodes": [ + 12410380689, + 12410380688 + ], + "geometry": [ + { "lat": 40.8321029, "lon": -74.0074128 }, + { "lat": 40.8322948, "lon": -74.0072070 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643476, + "bounds": { + "minlat": 40.8318961, + "minlon": -74.0070560, + "maxlat": 40.8322383, + "maxlon": -74.0066683 + }, + "nodes": [ + 12410380692, + 12410380691, + 12410380690 + ], + "geometry": [ + { "lat": 40.8318961, "lon": -74.0070560 }, + { "lat": 40.8321416, "lon": -74.0068050 }, + { "lat": 40.8322383, "lon": -74.0066683 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643477, + "bounds": { + "minlat": 40.8341335, + "minlon": -74.0040306, + "maxlat": 40.8342290, + "maxlon": -74.0038717 + }, + "nodes": [ + 12410380698, + 12410380697 + ], + "geometry": [ + { "lat": 40.8342290, "lon": -74.0040306 }, + { "lat": 40.8341335, "lon": -74.0038717 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643478, + "bounds": { + "minlat": 40.8340706, + "minlon": -74.0040817, + "maxlat": 40.8341573, + "maxlon": -74.0039354 + }, + "nodes": [ + 12410380700, + 12410380699 + ], + "geometry": [ + { "lat": 40.8341573, "lon": -74.0040817 }, + { "lat": 40.8340706, "lon": -74.0039354 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643479, + "bounds": { + "minlat": 40.8340327, + "minlon": -74.0043696, + "maxlat": 40.8341322, + "maxlon": -74.0041784 + }, + "nodes": [ + 12410387402, + 12410387401 + ], + "geometry": [ + { "lat": 40.8340327, "lon": -74.0041784 }, + { "lat": 40.8341322, "lon": -74.0043696 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643480, + "bounds": { + "minlat": 40.8339199, + "minlon": -74.0047277, + "maxlat": 40.8341743, + "maxlon": -74.0042715 + }, + "nodes": [ + 12410387404, + 12410387403 + ], + "geometry": [ + { "lat": 40.8339199, "lon": -74.0042715 }, + { "lat": 40.8341743, "lon": -74.0047277 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643481, + "bounds": { + "minlat": 40.8338045, + "minlon": -74.0048242, + "maxlat": 40.8340576, + "maxlon": -74.0043792 + }, + "nodes": [ + 12410387406, + 12410387405 + ], + "geometry": [ + { "lat": 40.8338045, "lon": -74.0043792 }, + { "lat": 40.8340576, "lon": -74.0048242 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643482, + "bounds": { + "minlat": 40.8336998, + "minlon": -74.0049168, + "maxlat": 40.8339544, + "maxlon": -74.0044805 + }, + "nodes": [ + 12410387408, + 12410387407 + ], + "geometry": [ + { "lat": 40.8336998, "lon": -74.0044805 }, + { "lat": 40.8339544, "lon": -74.0049168 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643483, + "bounds": { + "minlat": 40.8335551, + "minlon": -74.0044619, + "maxlat": 40.8337190, + "maxlon": -74.0041674 + }, + "nodes": [ + 12410387410, + 12410387409 + ], + "geometry": [ + { "lat": 40.8337190, "lon": -74.0044619 }, + { "lat": 40.8335551, "lon": -74.0041674 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643484, + "bounds": { + "minlat": 40.8334392, + "minlon": -74.0045666, + "maxlat": 40.8336110, + "maxlon": -74.0042844 + }, + "nodes": [ + 12410387412, + 12410387411 + ], + "geometry": [ + { "lat": 40.8336110, "lon": -74.0045666 }, + { "lat": 40.8334392, "lon": -74.0042844 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643485, + "bounds": { + "minlat": 40.8335692, + "minlon": -74.0050998, + "maxlat": 40.8338172, + "maxlon": -74.0046071 + }, + "nodes": [ + 12410387414, + 12410387413 + ], + "geometry": [ + { "lat": 40.8335692, "lon": -74.0046071 }, + { "lat": 40.8338172, "lon": -74.0050998 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643486, + "bounds": { + "minlat": 40.8334316, + "minlon": -74.0046614, + "maxlat": 40.8335132, + "maxlon": -74.0045352 + }, + "nodes": [ + 12410387416, + 12410387415 + ], + "geometry": [ + { "lat": 40.8335132, "lon": -74.0046614 }, + { "lat": 40.8334316, "lon": -74.0045352 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643487, + "bounds": { + "minlat": 40.8334613, + "minlon": -74.0051987, + "maxlat": 40.8337144, + "maxlon": -74.0047117 + }, + "nodes": [ + 12410387419, + 12410387418 + ], + "geometry": [ + { "lat": 40.8334613, "lon": -74.0047117 }, + { "lat": 40.8337144, "lon": -74.0051987 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643488, + "bounds": { + "minlat": 40.8333737, + "minlon": -74.0047117, + "maxlat": 40.8334613, + "maxlon": -74.0045728 + }, + "nodes": [ + 12410387419, + 12410387417 + ], + "geometry": [ + { "lat": 40.8334613, "lon": -74.0047117 }, + { "lat": 40.8333737, "lon": -74.0045728 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643489, + "bounds": { + "minlat": 40.8331081, + "minlon": -74.0049634, + "maxlat": 40.8332017, + "maxlon": -74.0047967 + }, + "nodes": [ + 12410387421, + 12410387420 + ], + "geometry": [ + { "lat": 40.8332017, "lon": -74.0049634 }, + { "lat": 40.8331081, "lon": -74.0047967 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643490, + "bounds": { + "minlat": 40.8331414, + "minlon": -74.0054140, + "maxlat": 40.8333339, + "maxlon": -74.0050219 + }, + "nodes": [ + 12410387423, + 12410387422 + ], + "geometry": [ + { "lat": 40.8331414, "lon": -74.0050219 }, + { "lat": 40.8333339, "lon": -74.0054140 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643491, + "bounds": { + "minlat": 40.8328950, + "minlon": -74.0051161, + "maxlat": 40.8330442, + "maxlon": -74.0048517 + }, + "nodes": [ + 12410387425, + 12410387424 + ], + "geometry": [ + { "lat": 40.8330442, "lon": -74.0051161 }, + { "lat": 40.8328950, "lon": -74.0048517 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643492, + "bounds": { + "minlat": 40.8329725, + "minlon": -74.0053191, + "maxlat": 40.8330500, + "maxlon": -74.0051856 + }, + "nodes": [ + 12410387427, + 12410387426 + ], + "geometry": [ + { "lat": 40.8329725, "lon": -74.0051856 }, + { "lat": 40.8330500, "lon": -74.0053191 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643494, + "bounds": { + "minlat": 40.8328622, + "minlon": -74.0057338, + "maxlat": 40.8331056, + "maxlon": -74.0052926 + }, + "nodes": [ + 12410387433, + 12410387432 + ], + "geometry": [ + { "lat": 40.8328622, "lon": -74.0052926 }, + { "lat": 40.8331056, "lon": -74.0057338 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643495, + "bounds": { + "minlat": 40.8328149, + "minlon": -74.0052493, + "maxlat": 40.8329068, + "maxlon": -74.0051015 + }, + "nodes": [ + 12410387435, + 12410387434 + ], + "geometry": [ + { "lat": 40.8329068, "lon": -74.0052493 }, + { "lat": 40.8328149, "lon": -74.0051015 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643496, + "bounds": { + "minlat": 40.8326320, + "minlon": -74.0054407, + "maxlat": 40.8327094, + "maxlon": -74.0053080 + }, + "nodes": [ + 12410387437, + 12410387436 + ], + "geometry": [ + { "lat": 40.8327094, "lon": -74.0054407 }, + { "lat": 40.8326320, "lon": -74.0053080 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643497, + "bounds": { + "minlat": 40.8326422, + "minlon": -74.0056403, + "maxlat": 40.8327127, + "maxlon": -74.0055059 + }, + "nodes": [ + 12410387439, + 12410387438 + ], + "geometry": [ + { "lat": 40.8326422, "lon": -74.0055059 }, + { "lat": 40.8327127, "lon": -74.0056403 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643498, + "bounds": { + "minlat": 40.8325398, + "minlon": -74.0057452, + "maxlat": 40.8326185, + "maxlon": -74.0056075 + }, + "nodes": [ + 12410387441, + 12410387440 + ], + "geometry": [ + { "lat": 40.8325398, "lon": -74.0056075 }, + { "lat": 40.8326185, "lon": -74.0057452 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643499, + "bounds": { + "minlat": 40.8322661, + "minlon": -74.0062780, + "maxlat": 40.8325021, + "maxlon": -74.0058833 + }, + "nodes": [ + 12410387443, + 12410387442 + ], + "geometry": [ + { "lat": 40.8322661, "lon": -74.0058833 }, + { "lat": 40.8325021, "lon": -74.0062780 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643500, + "bounds": { + "minlat": 40.8320795, + "minlon": -74.0061858, + "maxlat": 40.8321485, + "maxlon": -74.0060718 + }, + "nodes": [ + 12410387445, + 12410387444 + ], + "geometry": [ + { "lat": 40.8320795, "lon": -74.0060718 }, + { "lat": 40.8321485, "lon": -74.0061858 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643502, + "bounds": { + "minlat": 40.8317319, + "minlon": -74.0062219, + "maxlat": 40.8319309, + "maxlon": -74.0058730 + }, + "nodes": [ + 12410387449, + 12410387448 + ], + "geometry": [ + { "lat": 40.8319309, "lon": -74.0062219 }, + { "lat": 40.8317319, "lon": -74.0058730 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643503, + "bounds": { + "minlat": 40.8317441, + "minlon": -74.0062825, + "maxlat": 40.8318710, + "maxlon": -74.0060474 + }, + "nodes": [ + 12410387463, + 12410387462 + ], + "geometry": [ + { "lat": 40.8318710, "lon": -74.0062825 }, + { "lat": 40.8317441, "lon": -74.0060474 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643504, + "bounds": { + "minlat": 40.8319298, + "minlon": -74.0064577, + "maxlat": 40.8320729, + "maxlon": -74.0064191 + }, + "nodes": [ + 12410387457, + 12410387453, + 12410387452 + ], + "geometry": [ + { "lat": 40.8319298, "lon": -74.0064198 }, + { "lat": 40.8320351, "lon": -74.0064577 }, + { "lat": 40.8320729, "lon": -74.0064191 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643505, + "bounds": { + "minlat": 40.8317357, + "minlon": -74.0065164, + "maxlat": 40.8319298, + "maxlon": -74.0062825 + }, + "nodes": [ + 12410387463, + 12410387457, + 12410387451, + 12410387456, + 12410387450, + 12410387455, + 12410387454 + ], + "geometry": [ + { "lat": 40.8318710, "lon": -74.0062825 }, + { "lat": 40.8319298, "lon": -74.0064198 }, + { "lat": 40.8319202, "lon": -74.0064621 }, + { "lat": 40.8318945, "lon": -74.0065023 }, + { "lat": 40.8318555, "lon": -74.0065164 }, + { "lat": 40.8318207, "lon": -74.0065120 }, + { "lat": 40.8317357, "lon": -74.0064191 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643506, + "bounds": { + "minlat": 40.8314092, + "minlon": -74.0062044, + "maxlat": 40.8314947, + "maxlon": -74.0061087 + }, + "nodes": [ + 12410387465, + 12410387464 + ], + "geometry": [ + { "lat": 40.8314092, "lon": -74.0062044 }, + { "lat": 40.8314947, "lon": -74.0061087 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643507, + "bounds": { + "minlat": 40.8309670, + "minlon": -74.0059146, + "maxlat": 40.8310381, + "maxlon": -74.0057737 + }, + "nodes": [ + 12410387467, + 12410387466 + ], + "geometry": [ + { "lat": 40.8309670, "lon": -74.0057737 }, + { "lat": 40.8310381, "lon": -74.0059146 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643508, + "bounds": { + "minlat": 40.8305366, + "minlon": -74.0061027, + "maxlat": 40.8306015, + "maxlon": -74.0059732 + }, + "nodes": [ + 12410387469, + 12410387468 + ], + "geometry": [ + { "lat": 40.8306015, "lon": -74.0061027 }, + { "lat": 40.8305366, "lon": -74.0059732 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643509, + "bounds": { + "minlat": 40.8305221, + "minlon": -74.0063373, + "maxlat": 40.8306066, + "maxlon": -74.0061742 + }, + "nodes": [ + 12410387471, + 12410387470 + ], + "geometry": [ + { "lat": 40.8305221, "lon": -74.0061742 }, + { "lat": 40.8306066, "lon": -74.0063373 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643510, + "bounds": { + "minlat": 40.8313314, + "minlon": -74.0067279, + "maxlat": 40.8313857, + "maxlon": -74.0066361 + }, + "nodes": [ + 12410387473, + 12410387472 + ], + "geometry": [ + { "lat": 40.8313857, "lon": -74.0067279 }, + { "lat": 40.8313314, "lon": -74.0066361 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643511, + "bounds": { + "minlat": 40.8312588, + "minlon": -74.0071876, + "maxlat": 40.8315566, + "maxlon": -74.0068304 + }, + "nodes": [ + 12410387476, + 12410387475, + 12410387474 + ], + "geometry": [ + { "lat": 40.8312588, "lon": -74.0068304 }, + { "lat": 40.8314684, "lon": -74.0071876 }, + { "lat": 40.8315566, "lon": -74.0071011 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643512, + "bounds": { + "minlat": 40.8311410, + "minlon": -74.0071034, + "maxlat": 40.8312281, + "maxlon": -74.0069378 + }, + "nodes": [ + 12410387478, + 12410387477 + ], + "geometry": [ + { "lat": 40.8311410, "lon": -74.0069378 }, + { "lat": 40.8312281, "lon": -74.0071034 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643513, + "bounds": { + "minlat": 40.8310320, + "minlon": -74.0071993, + "maxlat": 40.8311094, + "maxlon": -74.0070530 + }, + "nodes": [ + 103208115, + 12410387480 + ], + "geometry": [ + { "lat": 40.8310320, "lon": -74.0070530 }, + { "lat": 40.8311094, "lon": -74.0071993 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643514, + "bounds": { + "minlat": 40.8309755, + "minlon": -74.0070530, + "maxlat": 40.8310320, + "maxlon": -74.0069630 + }, + "nodes": [ + 103208115, + 12410387479 + ], + "geometry": [ + { "lat": 40.8310320, "lon": -74.0070530 }, + { "lat": 40.8309755, "lon": -74.0069630 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643515, + "bounds": { + "minlat": 40.8314320, + "minlon": -74.0078759, + "maxlat": 40.8315440, + "maxlon": -74.0076850 + }, + "nodes": [ + 103180065, + 12410387481 + ], + "geometry": [ + { "lat": 40.8314320, "lon": -74.0076850 }, + { "lat": 40.8315440, "lon": -74.0078759 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643516, + "bounds": { + "minlat": 40.8311220, + "minlon": -74.0075960, + "maxlat": 40.8311878, + "maxlon": -74.0075440 + }, + "nodes": [ + 103180055, + 12410387482 + ], + "geometry": [ + { "lat": 40.8311220, "lon": -74.0075960 }, + { "lat": 40.8311878, "lon": -74.0075440 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643517, + "bounds": { + "minlat": 40.8306366, + "minlon": -74.0079044, + "maxlat": 40.8309686, + "maxlon": -74.0073762 + }, + "nodes": [ + 12410387485, + 12410387484, + 12410387483 + ], + "geometry": [ + { "lat": 40.8306366, "lon": -74.0073762 }, + { "lat": 40.8308590, "lon": -74.0076077 }, + { "lat": 40.8309686, "lon": -74.0079044 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643518, + "bounds": { + "minlat": 40.8306067, + "minlon": -74.0080858, + "maxlat": 40.8307946, + "maxlon": -74.0073969 + }, + "nodes": [ + 12410387488, + 12410387487, + 12410387486 + ], + "geometry": [ + { "lat": 40.8306067, "lon": -74.0073969 }, + { "lat": 40.8307558, "lon": -74.0078588 }, + { "lat": 40.8307946, "lon": -74.0080858 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643519, + "bounds": { + "minlat": 40.8310838, + "minlon": -74.0085703, + "maxlat": 40.8311223, + "maxlon": -74.0084786 + }, + "nodes": [ + 12410387515, + 12410387514 + ], + "geometry": [ + { "lat": 40.8310838, "lon": -74.0084786 }, + { "lat": 40.8311223, "lon": -74.0085703 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643520, + "bounds": { + "minlat": 40.8308666, + "minlon": -74.0085893, + "maxlat": 40.8309216, + "maxlon": -74.0084201 + }, + "nodes": [ + 12016315259, + 12410387490 + ], + "geometry": [ + { "lat": 40.8309216, "lon": -74.0085893 }, + { "lat": 40.8308666, "lon": -74.0084201 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643521, + "bounds": { + "minlat": 40.8307248, + "minlon": -74.0086038, + "maxlat": 40.8307642, + "maxlon": -74.0084476 + }, + "nodes": [ + 12410387492, + 12410387491 + ], + "geometry": [ + { "lat": 40.8307642, "lon": -74.0086038 }, + { "lat": 40.8307248, "lon": -74.0084476 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643522, + "bounds": { + "minlat": 40.8305878, + "minlon": -74.0086111, + "maxlat": 40.8306488, + "maxlon": -74.0084003 + }, + "nodes": [ + 12410387494, + 12410387493 + ], + "geometry": [ + { "lat": 40.8306488, "lon": -74.0086111 }, + { "lat": 40.8305878, "lon": -74.0084003 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643523, + "bounds": { + "minlat": 40.8305842, + "minlon": -74.0088442, + "maxlat": 40.8306505, + "maxlon": -74.0086152 + }, + "nodes": [ + 12410387496, + 12410387495 + ], + "geometry": [ + { "lat": 40.8305842, "lon": -74.0086152 }, + { "lat": 40.8306505, "lon": -74.0088442 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643524, + "bounds": { + "minlat": 40.8307121, + "minlon": -74.0088066, + "maxlat": 40.8307662, + "maxlon": -74.0086071 + }, + "nodes": [ + 12410387498, + 12410387497 + ], + "geometry": [ + { "lat": 40.8307121, "lon": -74.0086071 }, + { "lat": 40.8307662, "lon": -74.0088066 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643525, + "bounds": { + "minlat": 40.8308610, + "minlon": -74.0088338, + "maxlat": 40.8309125, + "maxlon": -74.0085974 + }, + "nodes": [ + 103304843, + 12410387500, + 12410387499 + ], + "geometry": [ + { "lat": 40.8308641, "lon": -74.0085974 }, + { "lat": 40.8308610, "lon": -74.0086715 }, + { "lat": 40.8309125, "lon": -74.0088338 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643526, + "bounds": { + "minlat": 40.8328086, + "minlon": -74.0086940, + "maxlat": 40.8330673, + "maxlon": -74.0084375 + }, + "nodes": [ + 12410387502, + 13527768439, + 12410387501 + ], + "geometry": [ + { "lat": 40.8328086, "lon": -74.0086940 }, + { "lat": 40.8328618, "lon": -74.0086413 }, + { "lat": 40.8330673, "lon": -74.0084375 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643527, + "bounds": { + "minlat": 40.8331700, + "minlon": -74.0093954, + "maxlat": 40.8333458, + "maxlon": -74.0092221 + }, + "nodes": [ + 12410387508, + 13527768423, + 12410387507 + ], + "geometry": [ + { "lat": 40.8331700, "lon": -74.0093954 }, + { "lat": 40.8332208, "lon": -74.0093453 }, + { "lat": 40.8333458, "lon": -74.0092221 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643528, + "bounds": { + "minlat": 40.8313130, + "minlon": -74.0086852, + "maxlat": 40.8315051, + "maxlon": -74.0085394 + }, + "nodes": [ + 12410387519, + 12410387518 + ], + "geometry": [ + { "lat": 40.8313130, "lon": -74.0086852 }, + { "lat": 40.8315051, "lon": -74.0085394 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643529, + "bounds": { + "minlat": 40.8313712, + "minlon": -74.0088111, + "maxlat": 40.8315599, + "maxlon": -74.0086591 + }, + "nodes": [ + 12410387521, + 12410387520 + ], + "geometry": [ + { "lat": 40.8313712, "lon": -74.0088111 }, + { "lat": 40.8315599, "lon": -74.0086591 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643530, + "bounds": { + "minlat": 40.8314249, + "minlon": -74.0089271, + "maxlat": 40.8316267, + "maxlon": -74.0087724 + }, + "nodes": [ + 12410387523, + 12410387522 + ], + "geometry": [ + { "lat": 40.8314249, "lon": -74.0089271 }, + { "lat": 40.8316267, "lon": -74.0087724 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643531, + "bounds": { + "minlat": 40.8314829, + "minlon": -74.0090525, + "maxlat": 40.8316946, + "maxlon": -74.0088874 + }, + "nodes": [ + 12410387525, + 12410387524 + ], + "geometry": [ + { "lat": 40.8314829, "lon": -74.0090525 }, + { "lat": 40.8316946, "lon": -74.0088874 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643532, + "bounds": { + "minlat": 40.8315404, + "minlon": -74.0091768, + "maxlat": 40.8316822, + "maxlon": -74.0090611 + }, + "nodes": [ + 12410387527, + 12410387526 + ], + "geometry": [ + { "lat": 40.8315404, "lon": -74.0091768 }, + { "lat": 40.8316822, "lon": -74.0090611 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643533, + "bounds": { + "minlat": 40.8310351, + "minlon": -74.0084786, + "maxlat": 40.8310838, + "maxlon": -74.0083865 + }, + "nodes": [ + 12410387515, + 12410387489 + ], + "geometry": [ + { "lat": 40.8310838, "lon": -74.0084786 }, + { "lat": 40.8310351, "lon": -74.0083865 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643534, + "bounds": { + "minlat": 40.8313499, + "minlon": -74.0083480, + "maxlat": 40.8313935, + "maxlon": -74.0082524 + }, + "nodes": [ + 12410387517, + 12410387516 + ], + "geometry": [ + { "lat": 40.8313499, "lon": -74.0082524 }, + { "lat": 40.8313935, "lon": -74.0083480 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643535, + "bounds": { + "minlat": 40.8311419, + "minlon": -74.0088237, + "maxlat": 40.8313130, + "maxlon": -74.0086852 + }, + "nodes": [ + 12410387519, + 12410387513 + ], + "geometry": [ + { "lat": 40.8313130, "lon": -74.0086852 }, + { "lat": 40.8311419, "lon": -74.0088237 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643536, + "bounds": { + "minlat": 40.8311974, + "minlon": -74.0089515, + "maxlat": 40.8313712, + "maxlon": -74.0088111 + }, + "nodes": [ + 12410387521, + 12410387512 + ], + "geometry": [ + { "lat": 40.8313712, "lon": -74.0088111 }, + { "lat": 40.8311974, "lon": -74.0089515 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643537, + "bounds": { + "minlat": 40.8312421, + "minlon": -74.0090843, + "maxlat": 40.8314249, + "maxlon": -74.0089271 + }, + "nodes": [ + 12410387523, + 12410387511 + ], + "geometry": [ + { "lat": 40.8314249, "lon": -74.0089271 }, + { "lat": 40.8312421, "lon": -74.0090843 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643538, + "bounds": { + "minlat": 40.8313484, + "minlon": -74.0091687, + "maxlat": 40.8314829, + "maxlon": -74.0090525 + }, + "nodes": [ + 12410387525, + 12410387510 + ], + "geometry": [ + { "lat": 40.8314829, "lon": -74.0090525 }, + { "lat": 40.8313484, "lon": -74.0091687 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643539, + "bounds": { + "minlat": 40.8313684, + "minlon": -74.0093189, + "maxlat": 40.8315404, + "maxlon": -74.0091768 + }, + "nodes": [ + 12410387527, + 12410387509 + ], + "geometry": [ + { "lat": 40.8315404, "lon": -74.0091768 }, + { "lat": 40.8313684, "lon": -74.0093189 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643540, + "bounds": { + "minlat": 40.8315975, + "minlon": -74.0093003, + "maxlat": 40.8318027, + "maxlon": -74.0091419 + }, + "nodes": [ + 12410387529, + 12410387528 + ], + "geometry": [ + { "lat": 40.8315975, "lon": -74.0093003 }, + { "lat": 40.8318027, "lon": -74.0091419 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643541, + "bounds": { + "minlat": 40.8320604, + "minlon": -74.0088472, + "maxlat": 40.8326280, + "maxlon": -74.0083446 + }, + "nodes": [ + 6339836764, + 13527768419, + 12410387540 + ], + "geometry": [ + { "lat": 40.8326280, "lon": -74.0083446 }, + { "lat": 40.8325594, "lon": -74.0084053 }, + { "lat": 40.8320604, "lon": -74.0088472 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643542, + "bounds": { + "minlat": 40.8320031, + "minlon": -74.0077116, + "maxlat": 40.8321840, + "maxlon": -74.0075521 + }, + "nodes": [ + 12410387531, + 12410387530 + ], + "geometry": [ + { "lat": 40.8321840, "lon": -74.0075521 }, + { "lat": 40.8320031, "lon": -74.0077116 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643543, + "bounds": { + "minlat": 40.8321249, + "minlon": -74.0079339, + "maxlat": 40.8323169, + "maxlon": -74.0077836 + }, + "nodes": [ + 12410387533, + 13527768415, + 12410387532 + ], + "geometry": [ + { "lat": 40.8323169, "lon": -74.0077836 }, + { "lat": 40.8322548, "lon": -74.0078322 }, + { "lat": 40.8321249, "lon": -74.0079339 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643544, + "bounds": { + "minlat": 40.8322291, + "minlon": -74.0080804, + "maxlat": 40.8324018, + "maxlon": -74.0079368 + }, + "nodes": [ + 12410387535, + 13527768416, + 12410387534 + ], + "geometry": [ + { "lat": 40.8324018, "lon": -74.0079368 }, + { "lat": 40.8323384, "lon": -74.0079895 }, + { "lat": 40.8322291, "lon": -74.0080804 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643545, + "bounds": { + "minlat": 40.8323159, + "minlon": -74.0082290, + "maxlat": 40.8324843, + "maxlon": -74.0080855 + }, + "nodes": [ + 12410387537, + 13527768417, + 12410387536 + ], + "geometry": [ + { "lat": 40.8324843, "lon": -74.0080855 }, + { "lat": 40.8324190, "lon": -74.0081411 }, + { "lat": 40.8323159, "lon": -74.0082290 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643546, + "bounds": { + "minlat": 40.8323712, + "minlon": -74.0083379, + "maxlat": 40.8325421, + "maxlon": -74.0081897 + }, + "nodes": [ + 12410387539, + 13527768418, + 12410387538 + ], + "geometry": [ + { "lat": 40.8325421, "lon": -74.0081897 }, + { "lat": 40.8324755, "lon": -74.0082475 }, + { "lat": 40.8323712, "lon": -74.0083379 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643547, + "bounds": { + "minlat": 40.8326505, + "minlon": -74.0088117, + "maxlat": 40.8327968, + "maxlon": -74.0086712 + }, + "nodes": [ + 12410387542, + 13527768420, + 12410387541 + ], + "geometry": [ + { "lat": 40.8327968, "lon": -74.0086712 }, + { "lat": 40.8327332, "lon": -74.0087323 }, + { "lat": 40.8326505, "lon": -74.0088117 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643548, + "bounds": { + "minlat": 40.8327264, + "minlon": -74.0089699, + "maxlat": 40.8328790, + "maxlon": -74.0088303 + }, + "nodes": [ + 12410387544, + 13527768421, + 12410387543 + ], + "geometry": [ + { "lat": 40.8328790, "lon": -74.0088303 }, + { "lat": 40.8328159, "lon": -74.0088880 }, + { "lat": 40.8327264, "lon": -74.0089699 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341643549, + "bounds": { + "minlat": 40.8328507, + "minlon": -74.0092335, + "maxlat": 40.8330125, + "maxlon": -74.0090885 + }, + "nodes": [ + 12410387546, + 13527768422, + 12410387545 + ], + "geometry": [ + { "lat": 40.8330125, "lon": -74.0090885 }, + { "lat": 40.8329515, "lon": -74.0091431 }, + { "lat": 40.8328507, "lon": -74.0092335 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341647375, + "bounds": { + "minlat": 40.7168432, + "minlon": -74.0128305, + "maxlat": 40.7171351, + "maxlon": -74.0127568 + }, + "nodes": [ + 12410398106, + 5813259938, + 42431626 + ], + "geometry": [ + { "lat": 40.7168432, "lon": -74.0128305 }, + { "lat": 40.7170331, "lon": -74.0127840 }, + { "lat": 40.7171351, "lon": -74.0127568 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1341660379, + "bounds": { + "minlat": 40.8540683, + "minlon": -73.9683667, + "maxlat": 40.8541864, + "maxlon": -73.9678185 + }, + "nodes": [ + 12410525614, + 13772860456, + 76464401 + ], + "geometry": [ + { "lat": 40.8541864, "lon": -73.9683667 }, + { "lat": 40.8540965, "lon": -73.9679630 }, + { "lat": 40.8540683, "lon": -73.9678185 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "name": "George Washington Bridge Lower Level", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 1341693899, + "bounds": { + "minlat": 40.7414399, + "minlon": -73.9511462, + "maxlat": 40.7415107, + "maxlon": -73.9508243 + }, + "nodes": [ + 12410999967, + 6166413736 + ], + "geometry": [ + { "lat": 40.7414399, "lon": -73.9511462 }, + { "lat": 40.7415107, "lon": -73.9508243 } + ], + "tags": { + "change:lanes": "no|no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "40 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1341724458, + "bounds": { + "minlat": 40.8450605, + "minlon": -73.9115801, + "maxlat": 40.8450960, + "maxlon": -73.9104811 + }, + "nodes": [ + 12411198058, + 596669017 + ], + "geometry": [ + { "lat": 40.8450960, "lon": -73.9115801 }, + { "lat": 40.8450605, "lon": -73.9104811 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-2", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1341843394, + "bounds": { + "minlat": 40.7282935, + "minlon": -74.0112169, + "maxlat": 40.7287733, + "maxlon": -74.0110886 + }, + "nodes": [ + 2562448011, + 2562448013, + 11049420896, + 2562448015, + 2562448018, + 2562448022, + 13892459090, + 2562448024, + 2562448026 + ], + "geometry": [ + { "lat": 40.7282935, "lon": -74.0111730 }, + { "lat": 40.7283010, "lon": -74.0111470 }, + { "lat": 40.7283177, "lon": -74.0111282 }, + { "lat": 40.7283392, "lon": -74.0111205 }, + { "lat": 40.7285395, "lon": -74.0110964 }, + { "lat": 40.7286276, "lon": -74.0110886 }, + { "lat": 40.7286530, "lon": -74.0110962 }, + { "lat": 40.7286784, "lon": -74.0111132 }, + { "lat": 40.7287733, "lon": -74.0112169 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1341933855, + "bounds": { + "minlat": 40.7693487, + "minlon": -73.9950694, + "maxlat": 40.7694179, + "maxlon": -73.9950218 + }, + "nodes": [ + 12153915836, + 2348991703 + ], + "geometry": [ + { "lat": 40.7694179, "lon": -73.9950218 }, + { "lat": 40.7693487, "lon": -73.9950694 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1341933856, + "bounds": { + "minlat": 40.7690831, + "minlon": -73.9952614, + "maxlat": 40.7693487, + "maxlon": -73.9950694 + }, + "nodes": [ + 2348991703, + 247122533, + 12413770652 + ], + "geometry": [ + { "lat": 40.7693487, "lon": -73.9950694 }, + { "lat": 40.7692659, "lon": -73.9951303 }, + { "lat": 40.7690831, "lon": -73.9952614 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "yes|yes|yes|not_right|no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1341940285, + "bounds": { + "minlat": 40.7652442, + "minlon": -73.9977775, + "maxlat": 40.7653423, + "maxlon": -73.9977059 + }, + "nodes": [ + 12413782996, + 12154598283 + ], + "geometry": [ + { "lat": 40.7652442, "lon": -73.9977775 }, + { "lat": 40.7653423, "lon": -73.9977059 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 1341940286, + "bounds": { + "minlat": 40.7657731, + "minlon": -73.9976603, + "maxlat": 40.7659623, + "maxlon": -73.9975214 + }, + "nodes": [ + 4215913810, + 12413782997 + ], + "geometry": [ + { "lat": 40.7659623, "lon": -73.9975214 }, + { "lat": 40.7657731, "lon": -73.9976603 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "no|not_left|yes|yes|yes", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lane_markings": "yes", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 1342094692, + "bounds": { + "minlat": 40.7463757, + "minlon": -73.9953753, + "maxlat": 40.7464657, + "maxlon": -73.9953152 + }, + "nodes": [ + 12415830254, + 12415830255 + ], + "geometry": [ + { "lat": 40.7464657, "lon": -73.9953152 }, + { "lat": 40.7463757, "lon": -73.9953753 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1342197776, + "bounds": { + "minlat": 40.7230756, + "minlon": -74.0072170, + "maxlat": 40.7231886, + "maxlon": -74.0070487 + }, + "nodes": [ + 12416643516, + 4142105813 + ], + "geometry": [ + { "lat": 40.7230756, "lon": -74.0070487 }, + { "lat": 40.7231886, "lon": -74.0072170 } + ], + "tags": { + "bicycle": "yes", + "change:backward": "yes", + "change:forward": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|right|right", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1342249124, + "bounds": { + "minlat": 40.7231488, + "minlon": -74.0080724, + "maxlat": 40.7232866, + "maxlon": -74.0080506 + }, + "nodes": [ + 12417324313, + 11659009136 + ], + "geometry": [ + { "lat": 40.7231488, "lon": -74.0080724 }, + { "lat": 40.7232866, "lon": -74.0080506 } + ], + "tags": { + "bicycle": "yes", + "change:lanes": "yes|yes", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1342249125, + "bounds": { + "minlat": 40.7216384, + "minlon": -74.0083526, + "maxlat": 40.7219884, + "maxlon": -74.0082870 + }, + "nodes": [ + 12417324314, + 8304498078, + 42424408 + ], + "geometry": [ + { "lat": 40.7216384, "lon": -74.0083526 }, + { "lat": 40.7219109, "lon": -74.0082992 }, + { "lat": 40.7219884, "lon": -74.0082870 } + ], + "tags": { + "change:lanes": "yes|yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Hudson Street", + "name:etymology:wikidata": "Q3140", + "name:ko": "허드슨 스트리트", + "name:ru": "Хадсон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q389991", + "wikipedia": "en:Hudson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1343029766, + "bounds": { + "minlat": 40.7098281, + "minlon": -73.9917770, + "maxlat": 40.7101204, + "maxlon": -73.9897857 + }, + "nodes": [ + 42444129, + 8279851269, + 11648380264, + 13700879968, + 8310246658, + 42443928 + ], + "geometry": [ + { "lat": 40.7098281, "lon": -73.9917770 }, + { "lat": 40.7098420, "lon": -73.9916822 }, + { "lat": 40.7099871, "lon": -73.9906925 }, + { "lat": 40.7100151, "lon": -73.9905018 }, + { "lat": 40.7101116, "lon": -73.9898431 }, + { "lat": 40.7101204, "lon": -73.9897857 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "South Street", + "name:ko": "사우스 스트리트", + "name:ru": "Саут-стрит", + "oneway": "no", + "surface": "asphalt", + "wikidata": "Q1106669", + "wikipedia": "en:South Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1343029767, + "bounds": { + "minlat": 40.7131690, + "minlon": -73.9926598, + "maxlat": 40.7133803, + "maxlon": -73.9901247 + }, + "nodes": [ + 5706568658, + 3212472625, + 42435922, + 8279851231, + 10837803697, + 8310246646, + 42435923 + ], + "geometry": [ + { "lat": 40.7131690, "lon": -73.9926598 }, + { "lat": 40.7131812, "lon": -73.9925183 }, + { "lat": 40.7131929, "lon": -73.9923825 }, + { "lat": 40.7132010, "lon": -73.9922810 }, + { "lat": 40.7133029, "lon": -73.9910554 }, + { "lat": 40.7133732, "lon": -73.9902109 }, + { "lat": 40.7133803, "lon": -73.9901247 } + ], + "tags": { + "highway": "residential", + "maxspeed": "15 mph", + "name": "Henry Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "헨리 스트리트", + "name:ru": "Хенри-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5728794", + "wikipedia": "en:Henry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1343029768, + "bounds": { + "minlat": 40.7144911, + "minlon": -73.9912270, + "maxlat": 40.7146759, + "maxlon": -73.9911284 + }, + "nodes": [ + 42440679, + 8372982794, + 42440677 + ], + "geometry": [ + { "lat": 40.7146759, "lon": -73.9911284 }, + { "lat": 40.7145963, "lon": -73.9911709 }, + { "lat": 40.7144911, "lon": -73.9912270 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "20 mph", + "name": "Ludlow Street", + "name:etymology:wikidata": "Q4821485", + "name:ko": "러들로 스트리트", + "name:ru": "Ладлоу-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3935980", + "wikipedia": "en:Ludlow Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1343029769, + "bounds": { + "minlat": 40.7144213, + "minlon": -73.9921353, + "maxlat": 40.7149028, + "maxlon": -73.9918872 + }, + "nodes": [ + 42453700, + 8372982791, + 8309738053, + 8307641640, + 42440792 + ], + "geometry": [ + { "lat": 40.7144213, "lon": -73.9921353 }, + { "lat": 40.7144844, "lon": -73.9921053 }, + { "lat": 40.7147791, "lon": -73.9919510 }, + { "lat": 40.7148266, "lon": -73.9919265 }, + { "lat": 40.7149028, "lon": -73.9918872 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 1343029770, + "bounds": { + "minlat": 40.7153613, + "minlon": -73.9977158, + "maxlat": 40.7165497, + "maxlon": -73.9969875 + }, + "nodes": [ + 42438034, + 8307641535, + 8105679232, + 1905965196, + 8307641531, + 42440804 + ], + "geometry": [ + { "lat": 40.7153613, "lon": -73.9977158 }, + { "lat": 40.7154145, "lon": -73.9976836 }, + { "lat": 40.7159547, "lon": -73.9973530 }, + { "lat": 40.7162135, "lon": -73.9971948 }, + { "lat": 40.7164394, "lon": -73.9970567 }, + { "lat": 40.7165497, "lon": -73.9969875 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Elizabeth Street", + "name:ar": "شارع ايليزابيت", + "name:en": "Elizabeth Street", + "name:ko": "엘리자베스 스트리트", + "name:zh": "伊利沙白街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5363575", + "wikipedia": "en:Elizabeth Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1343029771, + "bounds": { + "minlat": 40.7149950, + "minlon": -73.9988660, + "maxlat": 40.7168306, + "maxlon": -73.9977656 + }, + "nodes": [ + 42432246, + 8307641550, + 8307641538, + 42432244, + 8307641539, + 12299472215, + 42432241 + ], + "geometry": [ + { "lat": 40.7168306, "lon": -73.9977656 }, + { "lat": 40.7167174, "lon": -73.9978341 }, + { "lat": 40.7156831, "lon": -73.9984597 }, + { "lat": 40.7156303, "lon": -73.9984926 }, + { "lat": 40.7155883, "lon": -73.9985173 }, + { "lat": 40.7151196, "lon": -73.9987928 }, + { "lat": 40.7149950, "lon": -73.9988660 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Mott Street", + "name:en": "Mott Street", + "name:ko": "모트 스트리트", + "name:zh": "勿街", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q6918632", + "wikipedia": "en:Mott Street" + } +}, +{ + "type": "way", + "id": 1343076937, + "bounds": { + "minlat": 40.7112394, + "minlon": -73.9898147, + "maxlat": 40.7113290, + "maxlon": -73.9897939 + }, + "nodes": [ + 12363017361, + 8310246627 + ], + "geometry": [ + { "lat": 40.7112394, "lon": -73.9897939 }, + { "lat": 40.7113290, "lon": -73.9898147 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Cherry Street", + "name:ko": "cpfl tmxmflxm", + "name:ru": "Черри-стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4514584", + "wikipedia": "en:Cherry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1343181788, + "bounds": { + "minlat": 40.7689036, + "minlon": -73.9887161, + "maxlat": 40.7691175, + "maxlon": -73.9885610 + }, + "nodes": [ + 12427653345, + 13207939303, + 3998699935, + 42455643 + ], + "geometry": [ + { "lat": 40.7689036, "lon": -73.9887161 }, + { "lat": 40.7689714, "lon": -73.9886671 }, + { "lat": 40.7690234, "lon": -73.9886295 }, + { "lat": 40.7691175, "lon": -73.9885610 } + ], + "tags": { + "change": "no", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "name_1": "10 Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "sidewalk": "both", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1343181789, + "bounds": { + "minlat": 40.7696210, + "minlon": -73.9881802, + "maxlat": 40.7697859, + "maxlon": -73.9880556 + }, + "nodes": [ + 12427653344, + 3998699940, + 42450341 + ], + "geometry": [ + { "lat": 40.7696210, "lon": -73.9881802 }, + { "lat": 40.7697309, "lon": -73.9880971 }, + { "lat": 40.7697859, "lon": -73.9880556 } + ], + "tags": { + "change": "no", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "name_1": "10 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1343181791, + "bounds": { + "minlat": 40.7697859, + "minlon": -73.9880556, + "maxlat": 40.7700992, + "maxlon": -73.9878187 + }, + "nodes": [ + 42450341, + 3998699942, + 7557417154 + ], + "geometry": [ + { "lat": 40.7697859, "lon": -73.9880556 }, + { "lat": 40.7698493, "lon": -73.9880076 }, + { "lat": 40.7700992, "lon": -73.9878187 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "name_1": "10 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1343520605, + "bounds": { + "minlat": 40.7474416, + "minlon": -73.9695430, + "maxlat": 40.7475025, + "maxlon": -73.9694634 + }, + "nodes": [ + 12431193863, + 6863027983 + ], + "geometry": [ + { "lat": 40.7475025, "lon": -73.9695430 }, + { "lat": 40.7474416, "lon": -73.9694634 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1343520606, + "bounds": { + "minlat": 40.7471278, + "minlon": -73.9694367, + "maxlat": 40.7473651, + "maxlon": -73.9692641 + }, + "nodes": [ + 12431193864, + 12431193865 + ], + "geometry": [ + { "lat": 40.7473651, "lon": -73.9692641 }, + { "lat": 40.7471278, "lon": -73.9694367 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1343731013, + "bounds": { + "minlat": 40.7223827, + "minlon": -73.9933264, + "maxlat": 40.7228311, + "maxlon": -73.9931650 + }, + "nodes": [ + 42432082, + 8753454096, + 8231909749, + 42437608 + ], + "geometry": [ + { "lat": 40.7228311, "lon": -73.9931650 }, + { "lat": 40.7224905, "lon": -73.9932873 }, + { "lat": 40.7224416, "lon": -73.9933050 }, + { "lat": 40.7223827, "lon": -73.9933264 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 1343731014, + "bounds": { + "minlat": 40.7224213, + "minlon": -73.9930344, + "maxlat": 40.7228061, + "maxlon": -73.9916699 + }, + "nodes": [ + 1773082408, + 8231896506, + 12196062103, + 8231896507, + 42432083 + ], + "geometry": [ + { "lat": 40.7228061, "lon": -73.9930344 }, + { "lat": 40.7227833, "lon": -73.9929263 }, + { "lat": 40.7224734, "lon": -73.9918504 }, + { "lat": 40.7224547, "lon": -73.9917857 }, + { "lat": 40.7224213, "lon": -73.9916699 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Stanton Street", + "name:ko": "스탠턴 스트리트", + "name:ru": "Стэнтон-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7600270", + "wikipedia": "en:Stanton Street" + } +}, +{ + "type": "way", + "id": 1344866957, + "bounds": { + "minlat": 40.8415410, + "minlon": -73.9980285, + "maxlat": 40.8415959, + "maxlon": -73.9968720 + }, + "nodes": [ + 11444701753, + 12020316366, + 12020316365, + 12020316364, + 10943455764, + 103238592, + 10943455705, + 103238595, + 10943435096 + ], + "geometry": [ + { "lat": 40.8415959, "lon": -73.9968720 }, + { "lat": 40.8415754, "lon": -73.9970337 }, + { "lat": 40.8415614, "lon": -73.9971656 }, + { "lat": 40.8415509, "lon": -73.9973073 }, + { "lat": 40.8415454, "lon": -73.9974613 }, + { "lat": 40.8415410, "lon": -73.9976062 }, + { "lat": 40.8415417, "lon": -73.9977491 }, + { "lat": 40.8415477, "lon": -73.9978912 }, + { "lat": 40.8415569, "lon": -73.9980285 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 1344866958, + "bounds": { + "minlat": 40.8414671, + "minlon": -73.9980340, + "maxlat": 40.8415482, + "maxlon": -73.9965792 + }, + "nodes": [ + 299181622, + 10943435078, + 299181698, + 10943455732, + 299181700, + 10943455739, + 299181625, + 10943455727, + 299181626, + 299181627 + ], + "geometry": [ + { "lat": 40.8414816, "lon": -73.9980340 }, + { "lat": 40.8414711, "lon": -73.9978320 }, + { "lat": 40.8414671, "lon": -73.9976892 }, + { "lat": 40.8414671, "lon": -73.9975467 }, + { "lat": 40.8414721, "lon": -73.9974035 }, + { "lat": 40.8414820, "lon": -73.9972508 }, + { "lat": 40.8414935, "lon": -73.9971158 }, + { "lat": 40.8415073, "lon": -73.9969793 }, + { "lat": 40.8415222, "lon": -73.9968504 }, + { "lat": 40.8415482, "lon": -73.9965792 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1344866959, + "bounds": { + "minlat": 40.8434583, + "minlon": -74.0038942, + "maxlat": 40.8435082, + "maxlon": -74.0028657 + }, + "nodes": [ + 530805411, + 10943435089, + 299181605, + 10943435065, + 299181688, + 10943435092 + ], + "geometry": [ + { "lat": 40.8435082, "lon": -74.0038942 }, + { "lat": 40.8434975, "lon": -74.0033581 }, + { "lat": 40.8434920, "lon": -74.0032152 }, + { "lat": 40.8434825, "lon": -74.0030777 }, + { "lat": 40.8434680, "lon": -74.0029327 }, + { "lat": 40.8434583, "lon": -74.0028657 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1344866960, + "bounds": { + "minlat": 40.8435308, + "minlon": -74.0039887, + "maxlat": 40.8435983, + "maxlon": -74.0028452 + }, + "nodes": [ + 10943435061, + 103202996, + 10943455757, + 103203000, + 10943435068, + 12016147326, + 103203002 + ], + "geometry": [ + { "lat": 40.8435308, "lon": -74.0028452 }, + { "lat": 40.8435503, "lon": -74.0029993 }, + { "lat": 40.8435628, "lon": -74.0031449 }, + { "lat": 40.8435697, "lon": -74.0032870 }, + { "lat": 40.8435728, "lon": -74.0034304 }, + { "lat": 40.8435745, "lon": -74.0035656 }, + { "lat": 40.8435983, "lon": -74.0039887 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "45 mph", + "oneway": "yes", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:name_base_2": "United States Highway 46" + } +}, +{ + "type": "way", + "id": 1346047560, + "bounds": { + "minlat": 40.8570287, + "minlon": -73.9744717, + "maxlat": 40.8575105, + "maxlon": -73.9736185 + }, + "nodes": [ + 7921607624, + 13754021068, + 76464596, + 299121891 + ], + "geometry": [ + { "lat": 40.8575105, "lon": -73.9744717 }, + { "lat": 40.8573957, "lon": -73.9742978 }, + { "lat": 40.8571958, "lon": -73.9739253 }, + { "lat": 40.8570287, "lon": -73.9736185 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "destination": "George Washington Bridge Lower Level", + "destination:lanes": "George Washington Bridge Upper Level|George Washington Bridge Lower Level", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "lit": "yes", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "oneway": "yes", + "ref": "US 1;US 9;US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "slight_left|slight_right" + } +}, +{ + "type": "way", + "id": 1346484776, + "bounds": { + "minlat": 40.7131203, + "minlon": -73.9932525, + "maxlat": 40.7131690, + "maxlon": -73.9926598 + }, + "nodes": [ + 7113914108, + 8279851228, + 5706568658 + ], + "geometry": [ + { "lat": 40.7131203, "lon": -73.9932525 }, + { "lat": 40.7131619, "lon": -73.9927472 }, + { "lat": 40.7131690, "lon": -73.9926598 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20 mph", + "maxspeed:forward": "15 mph", + "name": "Henry Street", + "name:etymology:wikidata": "Q12094720", + "name:ko": "헨리 스트리트", + "name:ru": "Хенри-стрит", + "oneway": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "wikidata": "Q5728794", + "wikipedia": "en:Henry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1346484951, + "bounds": { + "minlat": 40.7230023, + "minlon": -74.0050623, + "maxlat": 40.7236306, + "maxlon": -74.0047955 + }, + "nodes": [ + 5216470727, + 5216470316, + 5135824727, + 12187433947, + 4890633706, + 42430143 + ], + "geometry": [ + { "lat": 40.7230023, "lon": -74.0050623 }, + { "lat": 40.7230617, "lon": -74.0050402 }, + { "lat": 40.7232923, "lon": -74.0049328 }, + { "lat": 40.7235002, "lon": -74.0048484 }, + { "lat": 40.7235572, "lon": -74.0048252 }, + { "lat": 40.7236306, "lon": -74.0047955 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "jersey_barrier", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "noref": "yes", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left||", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1346666876, + "bounds": { + "minlat": 40.8117232, + "minlon": -74.0097448, + "maxlat": 40.8118618, + "maxlon": -74.0096548 + }, + "nodes": [ + 12456262141, + 12456262129 + ], + "geometry": [ + { "lat": 40.8118618, "lon": -74.0096548 }, + { "lat": 40.8117232, "lon": -74.0097448 } + ], + "tags": { + "highway": "residential", + "name": "Grand Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1346666907, + "bounds": { + "minlat": 40.8109672, + "minlon": -74.0060671, + "maxlat": 40.8111229, + "maxlon": -74.0059204 + }, + "nodes": [ + 12456262186, + 103865025, + 12456262161 + ], + "geometry": [ + { "lat": 40.8109672, "lon": -74.0060671 }, + { "lat": 40.8110274, "lon": -74.0060088 }, + { "lat": 40.8111229, "lon": -74.0059204 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081270", + "highway": "tertiary", + "name": "Bergenwood Avenue", + "restriction": "no_stopping", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenwood", + "tiger:name_base_1": "State Route 501", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1346666909, + "bounds": { + "minlat": 40.8111229, + "minlon": -74.0059204, + "maxlat": 40.8121537, + "maxlon": -74.0051026 + }, + "nodes": [ + 12456262161, + 103865026, + 103858388, + 7621603006, + 440208151 + ], + "geometry": [ + { "lat": 40.8111229, "lon": -74.0059204 }, + { "lat": 40.8111772, "lon": -74.0058704 }, + { "lat": 40.8116193, "lon": -74.0054965 }, + { "lat": 40.8120965, "lon": -74.0051448 }, + { "lat": 40.8121537, "lon": -74.0051026 } + ], + "tags": { + "HFCS": "Urban Collector", + "NJDOT_SRI": "09081270", + "highway": "tertiary", + "name": "Bergenwood Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenwood", + "tiger:name_base_1": "State Route 501", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1346810118, + "bounds": { + "minlat": 40.8414892, + "minlon": -73.9443634, + "maxlat": 40.8419918, + "maxlon": -73.9441499 + }, + "nodes": [ + 60927817, + 7911399045, + 7911412130, + 60927818, + 7911412085, + 60927819 + ], + "geometry": [ + { "lat": 40.8414892, "lon": -73.9443634 }, + { "lat": 40.8415913, "lon": -73.9443123 }, + { "lat": 40.8416936, "lon": -73.9442663 }, + { "lat": 40.8417884, "lon": -73.9442252 }, + { "lat": 40.8418851, "lon": -73.9441870 }, + { "lat": 40.8419918, "lon": -73.9441499 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1346822578, + "bounds": { + "minlat": 40.8322728, + "minlon": -73.9497292, + "maxlat": 40.8324392, + "maxlon": -73.9496870 + }, + "nodes": [ + 42442054, + 12458053018 + ], + "geometry": [ + { "lat": 40.8322728, "lon": -73.9496870 }, + { "lat": 40.8324392, "lon": -73.9497292 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "name_1": "Riverside Drive East", + "sidewalk": "left", + "surface": "asphalt", + "tiger:cfcc": "A45;A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_base_1": "Riverside", + "tiger:name_direction_suffix_1": "E", + "tiger:name_type": "Dr", + "tiger:name_type_1": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1347060858, + "bounds": { + "minlat": 40.7696135, + "minlon": -73.9308245, + "maxlat": 40.7697382, + "maxlon": -73.9305685 + }, + "nodes": [ + 12460662857, + 12460662859, + 12460662860, + 12460662858 + ], + "geometry": [ + { "lat": 40.7697382, "lon": -73.9308245 }, + { "lat": 40.7696927, "lon": -73.9307288 }, + { "lat": 40.7696848, "lon": -73.9307129 }, + { "lat": 40.7696135, "lon": -73.9305685 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1347184249, + "bounds": { + "minlat": 40.7214938, + "minlon": -74.0053067, + "maxlat": 40.7217117, + "maxlon": -74.0052803 + }, + "nodes": [ + 11492801307, + 13082559912, + 4890418814, + 4143859865 + ], + "geometry": [ + { "lat": 40.7214938, "lon": -74.0052803 }, + { "lat": 40.7215484, "lon": -74.0052845 }, + { "lat": 40.7216029, "lon": -74.0052887 }, + { "lat": 40.7217117, "lon": -74.0053067 } + ], + "tags": { + "alt_name:ko": "6번가", + "change": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "20 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "noref": "yes", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1347184250, + "bounds": { + "minlat": 40.7251105, + "minlon": -74.0107032, + "maxlat": 40.7251409, + "maxlon": -74.0104187 + }, + "nodes": [ + 11659112637, + 12461786797 + ], + "geometry": [ + { "lat": 40.7251409, "lon": -74.0107032 }, + { "lat": 40.7251105, "lon": -74.0104187 } + ], + "tags": { + "bicycle": "yes", + "change": "yes", + "cycleway:right": "no", + "destination": "Holland Tunnel", + "destination:ref": "I 78", + "destination:street": "Canal Street", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "noref": "yes", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1347233809, + "bounds": { + "minlat": 40.8317680, + "minlon": -73.9080888, + "maxlat": 40.8317893, + "maxlon": -73.9080240 + }, + "nodes": [ + 42742461, + 42742463 + ], + "geometry": [ + { "lat": 40.8317893, "lon": -73.9080888 }, + { "lat": 40.8317680, "lon": -73.9080240 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "East 168th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1347238016, + "bounds": { + "minlat": 40.8277596, + "minlon": -73.9116734, + "maxlat": 40.8317680, + "maxlon": -73.9080240 + }, + "nodes": [ + 7560827238, + 12038440388, + 7560827246, + 9990169406, + 2827547782, + 42783502, + 13327574316, + 42759471, + 13327574315, + 5481921440, + 5481921438, + 12038478867, + 42742463 + ], + "geometry": [ + { "lat": 40.8277596, "lon": -73.9116734 }, + { "lat": 40.8278536, "lon": -73.9115530 }, + { "lat": 40.8278774, "lon": -73.9115152 }, + { "lat": 40.8280750, "lon": -73.9112488 }, + { "lat": 40.8287730, "lon": -73.9103080 }, + { "lat": 40.8295920, "lon": -73.9094820 }, + { "lat": 40.8301801, "lon": -73.9089978 }, + { "lat": 40.8302260, "lon": -73.9089600 }, + { "lat": 40.8302842, "lon": -73.9089247 }, + { "lat": 40.8311180, "lon": -73.9084186 }, + { "lat": 40.8315139, "lon": -73.9081782 }, + { "lat": 40.8316897, "lon": -73.9080715 }, + { "lat": 40.8317680, "lon": -73.9080240 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:separation": "jersey_barrier", + "highway": "residential", + "name": "Park Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:lane:left": "no_parking", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1347958612, + "bounds": { + "minlat": 40.8200500, + "minlon": -74.0001887, + "maxlat": 40.8201805, + "maxlon": -73.9999415 + }, + "nodes": [ + 12468673280, + 12468673281 + ], + "geometry": [ + { "lat": 40.8201805, "lon": -74.0001887 }, + { "lat": 40.8200500, "lon": -73.9999415 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1349583097, + "bounds": { + "minlat": 40.7051845, + "minlon": -73.9641645, + "maxlat": 40.7052315, + "maxlon": -73.9641111 + }, + "nodes": [ + 12484725185, + 12484725186 + ], + "geometry": [ + { "lat": 40.7052315, "lon": -73.9641645 }, + { "lat": 40.7051845, "lon": -73.9641111 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1349640014, + "bounds": { + "minlat": 40.8712707, + "minlon": -73.9142646, + "maxlat": 40.8712764, + "maxlon": -73.9142504 + }, + "nodes": [ + 9561126015, + 7779712802 + ], + "geometry": [ + { "lat": 40.8712707, "lon": -73.9142504 }, + { "lat": 40.8712764, "lon": -73.9142646 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "name": "West 218th Street", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "218th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034" + } +}, +{ + "type": "way", + "id": 1350177254, + "bounds": { + "minlat": 40.8606330, + "minlon": -73.9109461, + "maxlat": 40.8625451, + "maxlon": -73.9090042 + }, + "nodes": [ + 42743103, + 8294524194, + 13727986879, + 10135688260, + 1396352593, + 10135688259, + 1396352594, + 1396352591, + 1396352604, + 9903143768, + 9903143769, + 5296125212 + ], + "geometry": [ + { "lat": 40.8606330, "lon": -73.9109461 }, + { "lat": 40.8609607, "lon": -73.9104246 }, + { "lat": 40.8610463, "lon": -73.9103106 }, + { "lat": 40.8611809, "lon": -73.9101314 }, + { "lat": 40.8614306, "lon": -73.9098381 }, + { "lat": 40.8616192, "lon": -73.9096413 }, + { "lat": 40.8618160, "lon": -73.9094702 }, + { "lat": 40.8622882, "lon": -73.9091487 }, + { "lat": 40.8624505, "lon": -73.9090437 }, + { "lat": 40.8624810, "lon": -73.9090253 }, + { "lat": 40.8625171, "lon": -73.9090106 }, + { "lat": 40.8625451, "lon": -73.9090042 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 1350856741, + "bounds": { + "minlat": 40.7920313, + "minlon": -73.9282491, + "maxlat": 40.7994798, + "maxlon": -73.9263568 + }, + "nodes": [ + 401787556, + 401787557, + 401787558, + 401787559, + 401787560, + 401787561, + 401787562, + 401787563, + 401787564, + 401787565, + 401787567, + 401787568, + 401787569, + 401787570, + 401787571, + 401787572, + 401787573, + 401787574, + 401787575, + 401787576, + 401787577, + 401787578, + 12497646641, + 401787580, + 401787581, + 401787582, + 401787583, + 4999924611, + 401787584, + 11031859369, + 401787585, + 401787586, + 401787587, + 401787588, + 401787589, + 401787590, + 401787591, + 401787593, + 3040261547, + 401787596, + 3040261546, + 401787597, + 401787598, + 401787600, + 401787601, + 401787602, + 401787603, + 2346816304, + 401787605, + 401787606, + 401787608, + 401787607, + 401787609, + 401787610, + 401787611, + 401787612, + 2346816319, + 401787614, + 3040261541, + 401787616, + 401787618, + 401787619, + 401787620, + 3040261543, + 401787621, + 401787622, + 401787623, + 401787624, + 8113301994, + 401787625, + 401787626, + 401787627, + 2346816354, + 277482044, + 401787630, + 401787631, + 401787632, + 401787633, + 401787634 + ], + "geometry": [ + { "lat": 40.7920334, "lon": -73.9270275 }, + { "lat": 40.7920313, "lon": -73.9271724 }, + { "lat": 40.7920315, "lon": -73.9272652 }, + { "lat": 40.7920398, "lon": -73.9273822 }, + { "lat": 40.7920538, "lon": -73.9275216 }, + { "lat": 40.7920789, "lon": -73.9276164 }, + { "lat": 40.7921095, "lon": -73.9277111 }, + { "lat": 40.7921541, "lon": -73.9278254 }, + { "lat": 40.7922015, "lon": -73.9279146 }, + { "lat": 40.7922740, "lon": -73.9280066 }, + { "lat": 40.7923604, "lon": -73.9280846 }, + { "lat": 40.7924356, "lon": -73.9281404 }, + { "lat": 40.7925193, "lon": -73.9281738 }, + { "lat": 40.7926001, "lon": -73.9282017 }, + { "lat": 40.7926642, "lon": -73.9282212 }, + { "lat": 40.7927227, "lon": -73.9282324 }, + { "lat": 40.7928370, "lon": -73.9282491 }, + { "lat": 40.7929373, "lon": -73.9282463 }, + { "lat": 40.7930600, "lon": -73.9282324 }, + { "lat": 40.7931826, "lon": -73.9281794 }, + { "lat": 40.7932551, "lon": -73.9281432 }, + { "lat": 40.7933833, "lon": -73.9280484 }, + { "lat": 40.7934824, "lon": -73.9279636 }, + { "lat": 40.7936063, "lon": -73.9278644 }, + { "lat": 40.7937150, "lon": -73.9277808 }, + { "lat": 40.7938683, "lon": -73.9276610 }, + { "lat": 40.7939770, "lon": -73.9275773 }, + { "lat": 40.7940573, "lon": -73.9275245 }, + { "lat": 40.7940745, "lon": -73.9275132 }, + { "lat": 40.7941165, "lon": -73.9274830 }, + { "lat": 40.7941637, "lon": -73.9274491 }, + { "lat": 40.7942947, "lon": -73.9273536 }, + { "lat": 40.7944175, "lon": -73.9272785 }, + { "lat": 40.7945038, "lon": -73.9272370 }, + { "lat": 40.7945810, "lon": -73.9271981 }, + { "lat": 40.7947079, "lon": -73.9271270 }, + { "lat": 40.7948785, "lon": -73.9270358 }, + { "lat": 40.7950186, "lon": -73.9269580 }, + { "lat": 40.7951566, "lon": -73.9269057 }, + { "lat": 40.7952956, "lon": -73.9268604 }, + { "lat": 40.7954196, "lon": -73.9268320 }, + { "lat": 40.7955462, "lon": -73.9268108 }, + { "lat": 40.7957079, "lon": -73.9267823 }, + { "lat": 40.7960146, "lon": -73.9267367 }, + { "lat": 40.7961455, "lon": -73.9267233 }, + { "lat": 40.7962968, "lon": -73.9267139 }, + { "lat": 40.7964443, "lon": -73.9267091 }, + { "lat": 40.7965551, "lon": -73.9267276 }, + { "lat": 40.7966237, "lon": -73.9267394 }, + { "lat": 40.7967110, "lon": -73.9267703 }, + { "lat": 40.7967902, "lon": -73.9268105 }, + { "lat": 40.7968379, "lon": -73.9268346 }, + { "lat": 40.7969466, "lon": -73.9268843 }, + { "lat": 40.7970258, "lon": -73.9269178 }, + { "lat": 40.7971070, "lon": -73.9269580 }, + { "lat": 40.7972075, "lon": -73.9270063 }, + { "lat": 40.7973385, "lon": -73.9270532 }, + { "lat": 40.7974099, "lon": -73.9270774 }, + { "lat": 40.7974907, "lon": -73.9270975 }, + { "lat": 40.7975781, "lon": -73.9271119 }, + { "lat": 40.7976613, "lon": -73.9271149 }, + { "lat": 40.7977862, "lon": -73.9271176 }, + { "lat": 40.7978806, "lon": -73.9271109 }, + { "lat": 40.7979669, "lon": -73.9270961 }, + { "lat": 40.7980464, "lon": -73.9270729 }, + { "lat": 40.7981523, "lon": -73.9270394 }, + { "lat": 40.7982554, "lon": -73.9269976 }, + { "lat": 40.7983586, "lon": -73.9269530 }, + { "lat": 40.7983644, "lon": -73.9269495 }, + { "lat": 40.7984506, "lon": -73.9268973 }, + { "lat": 40.7985537, "lon": -73.9268359 }, + { "lat": 40.7986407, "lon": -73.9267771 }, + { "lat": 40.7987821, "lon": -73.9266871 }, + { "lat": 40.7988400, "lon": -73.9266469 }, + { "lat": 40.7989557, "lon": -73.9265973 }, + { "lat": 40.7990582, "lon": -73.9265656 }, + { "lat": 40.7991963, "lon": -73.9265181 }, + { "lat": 40.7993416, "lon": -73.9264305 }, + { "lat": 40.7994798, "lon": -73.9263568 } + ], + "tags": { + "bicycle": "designated", + "covered": "no", + "foot": "yes", + "highway": "service", + "name": "Harlem River Pathway", + "name:etymology:wikidata": "Q597451", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1350864224, + "bounds": { + "minlat": 40.8038080, + "minlon": -73.9416200, + "maxlat": 40.8044390, + "maxlon": -73.9401148 + }, + "nodes": [ + 596776659, + 4980798183, + 7471678533, + 5481977613, + 10170656863, + 42446171 + ], + "geometry": [ + { "lat": 40.8038080, "lon": -73.9401148 }, + { "lat": 40.8038447, "lon": -73.9402048 }, + { "lat": 40.8039666, "lon": -73.9404933 }, + { "lat": 40.8039705, "lon": -73.9405027 }, + { "lat": 40.8044015, "lon": -73.9415306 }, + { "lat": 40.8044390, "lon": -73.9416200 } + ], + "tags": { + "highway": "residential", + "name": "East 123rd Street", + "name_1": "East 123 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1350864225, + "bounds": { + "minlat": 40.8043271, + "minlon": -73.9393933, + "maxlat": 40.8049979, + "maxlon": -73.9388881 + }, + "nodes": [ + 42438707, + 10169411308, + 10169411301, + 42444456 + ], + "geometry": [ + { "lat": 40.8043271, "lon": -73.9393933 }, + { "lat": 40.8043862, "lon": -73.9393488 }, + { "lat": 40.8049071, "lon": -73.9389564 }, + { "lat": 40.8049979, "lon": -73.9388881 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1350868390, + "bounds": { + "minlat": 40.8143328, + "minlon": -74.0122732, + "maxlat": 40.8144702, + "maxlon": -74.0120809 + }, + "nodes": [ + 12497765508, + 12497765511, + 12497765510, + 12497765509 + ], + "geometry": [ + { "lat": 40.8143328, "lon": -74.0122732 }, + { "lat": 40.8143938, "lon": -74.0122142 }, + { "lat": 40.8144359, "lon": -74.0121583 }, + { "lat": 40.8144702, "lon": -74.0120809 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1351406309, + "bounds": { + "minlat": 40.7504943, + "minlon": -73.9780101, + "maxlat": 40.7507133, + "maxlon": -73.9775126 + }, + "nodes": [ + 4486628750, + 12502907235, + 12502907234, + 12502907233, + 12502907232, + 12502907231, + 12502907230, + 12502907229, + 12502907202, + 12502907242, + 12502907241, + 12502907240, + 12502907239, + 12502907238, + 12502907237, + 12502907236, + 12502907203, + 12502907249, + 12502907248, + 12502907247, + 12502907246, + 12502907245, + 12502907244, + 12502907243, + 12502907204, + 12502907256, + 12502907255, + 12502907254, + 12502907253, + 12502907252, + 12502907251, + 12502907250, + 12502907205, + 12502907263, + 12502907262, + 12502907261, + 12502907260, + 12502907259, + 12502907258, + 12502907257, + 12502907206, + 12502907264, + 12502907267, + 12502907268, + 12502907265, + 12502907269, + 12502907270, + 12502907266, + 12502907217, + 12502907227, + 12502907226, + 12502907216, + 12502907225, + 12502907294, + 12502907293, + 12502907297, + 12502907296, + 12502907292, + 12502907295, + 12502907288, + 12502907287, + 12502907291, + 12502907290, + 12502528686, + 12502907289, + 12502528688, + 12502528690, + 12502528689, + 12502528691, + 12502907273, + 12502907275, + 12502907271, + 12502907272, + 12502907274, + 4486628750 + ], + "geometry": [ + { "lat": 40.7504943, "lon": -73.9775258 }, + { "lat": 40.7505197, "lon": -73.9775868 }, + { "lat": 40.7505242, "lon": -73.9775854 }, + { "lat": 40.7505287, "lon": -73.9775871 }, + { "lat": 40.7505320, "lon": -73.9775916 }, + { "lat": 40.7505331, "lon": -73.9775976 }, + { "lat": 40.7505318, "lon": -73.9776035 }, + { "lat": 40.7505284, "lon": -73.9776078 }, + { "lat": 40.7505373, "lon": -73.9776292 }, + { "lat": 40.7505461, "lon": -73.9776505 }, + { "lat": 40.7505507, "lon": -73.9776491 }, + { "lat": 40.7505552, "lon": -73.9776508 }, + { "lat": 40.7505584, "lon": -73.9776553 }, + { "lat": 40.7505595, "lon": -73.9776613 }, + { "lat": 40.7505582, "lon": -73.9776672 }, + { "lat": 40.7505548, "lon": -73.9776715 }, + { "lat": 40.7505637, "lon": -73.9776928 }, + { "lat": 40.7505726, "lon": -73.9777141 }, + { "lat": 40.7505771, "lon": -73.9777127 }, + { "lat": 40.7505816, "lon": -73.9777144 }, + { "lat": 40.7505848, "lon": -73.9777189 }, + { "lat": 40.7505860, "lon": -73.9777249 }, + { "lat": 40.7505846, "lon": -73.9777308 }, + { "lat": 40.7505813, "lon": -73.9777351 }, + { "lat": 40.7505901, "lon": -73.9777564 }, + { "lat": 40.7505990, "lon": -73.9777778 }, + { "lat": 40.7506035, "lon": -73.9777763 }, + { "lat": 40.7506080, "lon": -73.9777780 }, + { "lat": 40.7506113, "lon": -73.9777825 }, + { "lat": 40.7506124, "lon": -73.9777885 }, + { "lat": 40.7506111, "lon": -73.9777944 }, + { "lat": 40.7506077, "lon": -73.9777987 }, + { "lat": 40.7506165, "lon": -73.9778201 }, + { "lat": 40.7506254, "lon": -73.9778414 }, + { "lat": 40.7506300, "lon": -73.9778399 }, + { "lat": 40.7506345, "lon": -73.9778417 }, + { "lat": 40.7506377, "lon": -73.9778461 }, + { "lat": 40.7506388, "lon": -73.9778521 }, + { "lat": 40.7506375, "lon": -73.9778581 }, + { "lat": 40.7506341, "lon": -73.9778624 }, + { "lat": 40.7506430, "lon": -73.9778837 }, + { "lat": 40.7506518, "lon": -73.9779050 }, + { "lat": 40.7506564, "lon": -73.9779036 }, + { "lat": 40.7506609, "lon": -73.9779053 }, + { "lat": 40.7506641, "lon": -73.9779098 }, + { "lat": 40.7506652, "lon": -73.9779158 }, + { "lat": 40.7506639, "lon": -73.9779217 }, + { "lat": 40.7506605, "lon": -73.9779260 }, + { "lat": 40.7506872, "lon": -73.9779902 }, + { "lat": 40.7506955, "lon": -73.9780101 }, + { "lat": 40.7507133, "lon": -73.9779973 }, + { "lat": 40.7507050, "lon": -73.9779773 }, + { "lat": 40.7506949, "lon": -73.9779531 }, + { "lat": 40.7506995, "lon": -73.9779241 }, + { "lat": 40.7506990, "lon": -73.9778948 }, + { "lat": 40.7506919, "lon": -73.9778607 }, + { "lat": 40.7506815, "lon": -73.9778364 }, + { "lat": 40.7506656, "lon": -73.9778133 }, + { "lat": 40.7506441, "lon": -73.9777946 }, + { "lat": 40.7506164, "lon": -73.9777277 }, + { "lat": 40.7506181, "lon": -73.9777048 }, + { "lat": 40.7506142, "lon": -73.9776798 }, + { "lat": 40.7506050, "lon": -73.9776588 }, + { "lat": 40.7505902, "lon": -73.9776413 }, + { "lat": 40.7505765, "lon": -73.9776328 }, + { "lat": 40.7505644, "lon": -73.9776295 }, + { "lat": 40.7505581, "lon": -73.9776141 }, + { "lat": 40.7505517, "lon": -73.9775989 }, + { "lat": 40.7505556, "lon": -73.9775799 }, + { "lat": 40.7505548, "lon": -73.9775607 }, + { "lat": 40.7505498, "lon": -73.9775433 }, + { "lat": 40.7505401, "lon": -73.9775276 }, + { "lat": 40.7505281, "lon": -73.9775175 }, + { "lat": 40.7505125, "lon": -73.9775126 }, + { "lat": 40.7504943, "lon": -73.9775258 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1351518762, + "bounds": { + "minlat": 40.8357676, + "minlon": -73.9280903, + "maxlat": 40.8358704, + "maxlon": -73.9277765 + }, + "nodes": [ + 12504046474, + 12504046476, + 12504046475 + ], + "geometry": [ + { "lat": 40.8357676, "lon": -73.9277765 }, + { "lat": 40.8358115, "lon": -73.9279104 }, + { "lat": 40.8358704, "lon": -73.9280903 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1351743217, + "bounds": { + "minlat": 40.7585648, + "minlon": -73.9441182, + "maxlat": 40.7587233, + "maxlon": -73.9438815 + }, + "nodes": [ + 12506323228, + 12506323225 + ], + "geometry": [ + { "lat": 40.7585648, "lon": -73.9438815 }, + { "lat": 40.7587233, "lon": -73.9441182 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1351743218, + "bounds": { + "minlat": 40.7585002, + "minlon": -73.9438747, + "maxlat": 40.7585600, + "maxlon": -73.9437832 + }, + "nodes": [ + 12506323224, + 12506323226, + 12506323227 + ], + "geometry": [ + { "lat": 40.7585002, "lon": -73.9437832 }, + { "lat": 40.7585453, "lon": -73.9438519 }, + { "lat": 40.7585600, "lon": -73.9438747 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1351743219, + "bounds": { + "minlat": 40.7585600, + "minlon": -73.9438815, + "maxlat": 40.7585648, + "maxlon": -73.9438747 + }, + "nodes": [ + 12506323227, + 12506323228 + ], + "geometry": [ + { "lat": 40.7585600, "lon": -73.9438747 }, + { "lat": 40.7585648, "lon": -73.9438815 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1351956474, + "bounds": { + "minlat": 40.7655468, + "minlon": -73.9313899, + "maxlat": 40.7660654, + "maxlon": -73.9308933 + }, + "nodes": [ + 7726598429, + 7738247908, + 7726598427, + 7746705667, + 7726598430 + ], + "geometry": [ + { "lat": 40.7660654, "lon": -73.9308933 }, + { "lat": 40.7660171, "lon": -73.9309396 }, + { "lat": 40.7656776, "lon": -73.9312647 }, + { "lat": 40.7656419, "lon": -73.9312988 }, + { "lat": 40.7655468, "lon": -73.9313899 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "name": "21st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1351956475, + "bounds": { + "minlat": 40.7653068, + "minlon": -73.9308933, + "maxlat": 40.7660654, + "maxlon": -73.9295241 + }, + "nodes": [ + 7726598429, + 7734640717, + 8047166985, + 7726598447, + 8047166449, + 7726598428 + ], + "geometry": [ + { "lat": 40.7660654, "lon": -73.9308933 }, + { "lat": 40.7660012, "lon": -73.9307647 }, + { "lat": 40.7654144, "lon": -73.9297176 }, + { "lat": 40.7653739, "lon": -73.9296454 }, + { "lat": 40.7653440, "lon": -73.9295913 }, + { "lat": 40.7653068, "lon": -73.9295241 } + ], + "tags": { + "highway": "residential", + "name": "31st Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1351956476, + "bounds": { + "minlat": 40.7660654, + "minlon": -73.9312682, + "maxlat": 40.7662731, + "maxlon": -73.9308933 + }, + "nodes": [ + 5487911880, + 7738247904, + 7726598429 + ], + "geometry": [ + { "lat": 40.7662731, "lon": -73.9312682 }, + { "lat": 40.7661283, "lon": -73.9310080 }, + { "lat": 40.7660654, "lon": -73.9308933 } + ], + "tags": { + "highway": "residential", + "name": "31st Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1351956735, + "bounds": { + "minlat": 40.7248855, + "minlon": -73.9922896, + "maxlat": 40.7252265, + "maxlon": -73.9921682 + }, + "nodes": [ + 1773084410, + 8309479081, + 9543294812, + 8309479088, + 1773084391 + ], + "geometry": [ + { "lat": 40.7248855, "lon": -73.9922896 }, + { "lat": 40.7249388, "lon": -73.9922704 }, + { "lat": 40.7251180, "lon": -73.9922069 }, + { "lat": 40.7251651, "lon": -73.9921901 }, + { "lat": 40.7252265, "lon": -73.9921682 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 1352383272, + "bounds": { + "minlat": 40.8611700, + "minlon": -73.9679493, + "maxlat": 40.8612761, + "maxlon": -73.9667702 + }, + "nodes": [ + 103132964, + 7921643392, + 7921584352, + 7921584372, + 12512756307, + 12512756308 + ], + "geometry": [ + { "lat": 40.8611700, "lon": -73.9679493 }, + { "lat": 40.8611872, "lon": -73.9678016 }, + { "lat": 40.8612056, "lon": -73.9676540 }, + { "lat": 40.8612363, "lon": -73.9673131 }, + { "lat": 40.8612569, "lon": -73.9670670 }, + { "lat": 40.8612761, "lon": -73.9667702 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445S", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "maxspeed": "30 mph", + "oneway": "yes", + "ref": "US 9W", + "short_name": "Palisades Parkway", + "surface": "asphalt", + "turn:lanes": "slight_left;slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 1352944235, + "bounds": { + "minlat": 40.7585437, + "minlon": -73.9772064, + "maxlat": 40.7591757, + "maxlon": -73.9767414 + }, + "nodes": [ + 42440452, + 3977886232, + 3977886226, + 42440153 + ], + "geometry": [ + { "lat": 40.7591757, "lon": -73.9767414 }, + { "lat": 40.7591071, "lon": -73.9767899 }, + { "lat": 40.7586062, "lon": -73.9771615 }, + { "lat": 40.7585437, "lon": -73.9772064 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1353289702, + "bounds": { + "minlat": 40.8054192, + "minlon": -73.9221573, + "maxlat": 40.8058413, + "maxlon": -73.9211208 + }, + "nodes": [ + 471241847, + 12522123919, + 12522123918, + 12522123917, + 471241848 + ], + "geometry": [ + { "lat": 40.8058413, "lon": -73.9221573 }, + { "lat": 40.8057269, "lon": -73.9218753 }, + { "lat": 40.8056230, "lon": -73.9216192 }, + { "lat": 40.8055196, "lon": -73.9213651 }, + { "lat": 40.8054192, "lon": -73.9211208 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1353372468, + "bounds": { + "minlat": 40.8794895, + "minlon": -73.9802258, + "maxlat": 40.8796772, + "maxlon": -73.9800161 + }, + "nodes": [ + 103098032, + 103100561 + ], + "geometry": [ + { "lat": 40.8796772, "lon": -73.9800161 }, + { "lat": 40.8794895, "lon": -73.9802258 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1353372469, + "bounds": { + "minlat": 40.8798043, + "minlon": -73.9800594, + "maxlat": 40.8799196, + "maxlon": -73.9798527 + }, + "nodes": [ + 12023838845, + 9239567791, + 103098028 + ], + "geometry": [ + { "lat": 40.8799196, "lon": -73.9800594 }, + { "lat": 40.8798869, "lon": -73.9800000 }, + { "lat": 40.8798043, "lon": -73.9798527 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Van Nostrand Avenue", + "oneway": "yes", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Van Nostrand", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631", + "turn:lanes:forward": "left|left|through|right" + } +}, +{ + "type": "way", + "id": 1353694427, + "bounds": { + "minlat": 40.8432128, + "minlon": -74.0026561, + "maxlat": 40.8433171, + "maxlon": -74.0025450 + }, + "nodes": [ + 12526583408, + 12526583407 + ], + "geometry": [ + { "lat": 40.8432128, "lon": -74.0026561 }, + { "lat": 40.8433171, "lon": -74.0025450 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1353694428, + "bounds": { + "minlat": 40.8431958, + "minlon": -74.0026561, + "maxlat": 40.8432128, + "maxlon": -74.0026291 + }, + "nodes": [ + 12526583408, + 12526583409 + ], + "geometry": [ + { "lat": 40.8432128, "lon": -74.0026561 }, + { "lat": 40.8431958, "lon": -74.0026291 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1353694429, + "bounds": { + "minlat": 40.8429757, + "minlon": -74.0021616, + "maxlat": 40.8431471, + "maxlon": -74.0020220 + }, + "nodes": [ + 12526583410, + 12526583411 + ], + "geometry": [ + { "lat": 40.8431471, "lon": -74.0020220 }, + { "lat": 40.8429757, "lon": -74.0021616 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1353694430, + "bounds": { + "minlat": 40.8429757, + "minlon": -74.0022008, + "maxlat": 40.8430008, + "maxlon": -74.0021616 + }, + "nodes": [ + 12526583411, + 12526583412 + ], + "geometry": [ + { "lat": 40.8429757, "lon": -74.0021616 }, + { "lat": 40.8430008, "lon": -74.0022008 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1353943370, + "bounds": { + "minlat": 40.8167172, + "minlon": -73.9594934, + "maxlat": 40.8170071, + "maxlon": -73.9587912 + }, + "nodes": [ + 12529272684, + 10049920014, + 13027611011, + 42438066 + ], + "geometry": [ + { "lat": 40.8167172, "lon": -73.9587912 }, + { "lat": 40.8168932, "lon": -73.9592065 }, + { "lat": 40.8170003, "lon": -73.9594764 }, + { "lat": 40.8170071, "lon": -73.9594934 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 129th Street", + "name_1": "West 129 Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "right|right" + } +}, +{ + "type": "way", + "id": 1354419956, + "bounds": { + "minlat": 40.8015054, + "minlon": -73.9610669, + "maxlat": 40.8017886, + "maxlon": -73.9604338 + }, + "nodes": [ + 12534082089, + 12534082096, + 12534082100, + 12534082098, + 42435359 + ], + "geometry": [ + { "lat": 40.8015054, "lon": -73.9604338 }, + { "lat": 40.8016867, "lon": -73.9608579 }, + { "lat": 40.8017086, "lon": -73.9609024 }, + { "lat": 40.8017305, "lon": -73.9609469 }, + { "lat": 40.8017886, "lon": -73.9610669 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1354419959, + "bounds": { + "minlat": 40.8011565, + "minlon": -73.9596504, + "maxlat": 40.8012041, + "maxlon": -73.9596153 + }, + "nodes": [ + 5838916777, + 12534082093 + ], + "geometry": [ + { "lat": 40.8011565, "lon": -73.9596504 }, + { "lat": 40.8012041, "lon": -73.9596153 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347126", + "wikipedia": "en:Manhattan Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1354419960, + "bounds": { + "minlat": 40.8009880, + "minlon": -73.9596153, + "maxlat": 40.8012041, + "maxlon": -73.9590911 + }, + "nodes": [ + 9078631517, + 5865030742, + 10171241044, + 12534082093 + ], + "geometry": [ + { "lat": 40.8009880, "lon": -73.9590911 }, + { "lat": 40.8011356, "lon": -73.9594458 }, + { "lat": 40.8011629, "lon": -73.9595132 }, + { "lat": 40.8012041, "lon": -73.9596153 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left|none", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1354419961, + "bounds": { + "minlat": 40.8011120, + "minlon": -73.9596822, + "maxlat": 40.8011565, + "maxlon": -73.9596504 + }, + "nodes": [ + 12534082095, + 5838916777 + ], + "geometry": [ + { "lat": 40.8011120, "lon": -73.9596822 }, + { "lat": 40.8011565, "lon": -73.9596504 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "Manhattan Avenue", + "name:etymology:wikidata": "Q11299", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17347126", + "wikipedia": "en:Manhattan Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1354419962, + "bounds": { + "minlat": 40.8008002, + "minlon": -73.9596822, + "maxlat": 40.8011120, + "maxlon": -73.9589620 + }, + "nodes": [ + 12534082095, + 10171241045, + 5865030743, + 10917414771 + ], + "geometry": [ + { "lat": 40.8011120, "lon": -73.9596822 }, + { "lat": 40.8010664, "lon": -73.9595848 }, + { "lat": 40.8010367, "lon": -73.9595197 }, + { "lat": 40.8008002, "lon": -73.9589620 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1354419963, + "bounds": { + "minlat": 40.8028130, + "minlon": -73.9638490, + "maxlat": 40.8029617, + "maxlon": -73.9634962 + }, + "nodes": [ + 42442569, + 10170893934, + 9177532570, + 13759576202 + ], + "geometry": [ + { "lat": 40.8029617, "lon": -73.9638490 }, + { "lat": 40.8029096, "lon": -73.9637307 }, + { "lat": 40.8028869, "lon": -73.9636774 }, + { "lat": 40.8028130, "lon": -73.9634962 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "|right", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1354540885, + "bounds": { + "minlat": 40.8127558, + "minlon": -74.0029385, + "maxlat": 40.8130287, + "maxlon": -74.0027084 + }, + "nodes": [ + 12535377636, + 12535377637, + 103142134 + ], + "geometry": [ + { "lat": 40.8127558, "lon": -74.0027084 }, + { "lat": 40.8129280, "lon": -74.0029054 }, + { "lat": 40.8130287, "lon": -74.0029385 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1354540889, + "bounds": { + "minlat": 40.8116675, + "minlon": -74.0000919, + "maxlat": 40.8118812, + "maxlon": -73.9999439 + }, + "nodes": [ + 12535377656, + 12535377657 + ], + "geometry": [ + { "lat": 40.8118812, "lon": -73.9999439 }, + { "lat": 40.8116675, "lon": -74.0000919 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1354540891, + "bounds": { + "minlat": 40.8162277, + "minlon": -74.0022117, + "maxlat": 40.8163300, + "maxlon": -74.0017306 + }, + "nodes": [ + 103166194, + 13525538787, + 103147924 + ], + "geometry": [ + { "lat": 40.8162277, "lon": -74.0017306 }, + { "lat": 40.8163075, "lon": -74.0021057 }, + { "lat": 40.8163300, "lon": -74.0022117 } + ], + "tags": { + "highway": "tertiary", + "name": "Kennedy Drive", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1354780298, + "bounds": { + "minlat": 40.8040726, + "minlon": -73.9307603, + "maxlat": 40.8041560, + "maxlon": -73.9307123 + }, + "nodes": [ + 9153698180, + 9153698183 + ], + "geometry": [ + { "lat": 40.8041560, "lon": -73.9307603 }, + { "lat": 40.8040726, "lon": -73.9307123 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "name": "Marginal Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1354780299, + "bounds": { + "minlat": 40.8059994, + "minlon": -73.9325795, + "maxlat": 40.8060843, + "maxlon": -73.9325000 + }, + "nodes": [ + 5920675990, + 12537570231 + ], + "geometry": [ + { "lat": 40.8059994, "lon": -73.9325000 }, + { "lat": 40.8060843, "lon": -73.9325795 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "smoothness": "good", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1354781068, + "bounds": { + "minlat": 40.8048713, + "minlon": -73.9301411, + "maxlat": 40.8063754, + "maxlon": -73.9287206 + }, + "nodes": [ + 7553992420, + 12537543960, + 12537543962, + 12537543961, + 12537543963, + 12537543959, + 12537543964, + 12537543956, + 12537543958, + 12537543957, + 7553992419, + 12537543955, + 12537543954, + 3355300925 + ], + "geometry": [ + { "lat": 40.8048713, "lon": -73.9287206 }, + { "lat": 40.8051385, "lon": -73.9290894 }, + { "lat": 40.8052060, "lon": -73.9291739 }, + { "lat": 40.8052742, "lon": -73.9292516 }, + { "lat": 40.8053522, "lon": -73.9293381 }, + { "lat": 40.8054488, "lon": -73.9294355 }, + { "lat": 40.8055318, "lon": -73.9295154 }, + { "lat": 40.8060677, "lon": -73.9300152 }, + { "lat": 40.8061092, "lon": -73.9300511 }, + { "lat": 40.8061570, "lon": -73.9300823 }, + { "lat": 40.8062079, "lon": -73.9301078 }, + { "lat": 40.8062573, "lon": -73.9301218 }, + { "lat": 40.8063032, "lon": -73.9301322 }, + { "lat": 40.8063754, "lon": -73.9301411 } + ], + "tags": { + "access": "private", + "highway": "service", + "maxspeed": "5 mph", + "name": "Lincoln Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1354781069, + "bounds": { + "minlat": 40.8045993, + "minlon": -73.9287206, + "maxlat": 40.8048713, + "maxlon": -73.9283205 + }, + "nodes": [ + 12537543965, + 7553992420 + ], + "geometry": [ + { "lat": 40.8045993, "lon": -73.9283205 }, + { "lat": 40.8048713, "lon": -73.9287206 } + ], + "tags": { + "access": "private", + "highway": "service", + "lanes": "4", + "maxspeed": "5 mph", + "name": "Lincoln Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1354943102, + "bounds": { + "minlat": 40.7183916, + "minlon": -73.9873785, + "maxlat": 40.7198510, + "maxlon": -73.9866195 + }, + "nodes": [ + 42429782, + 8231896486, + 8231900982, + 42437082, + 8231900981, + 12539238743 + ], + "geometry": [ + { "lat": 40.7183916, "lon": -73.9873785 }, + { "lat": 40.7184850, "lon": -73.9873303 }, + { "lat": 40.7195504, "lon": -73.9867747 }, + { "lat": 40.7195914, "lon": -73.9867535 }, + { "lat": 40.7196459, "lon": -73.9867253 }, + { "lat": 40.7198510, "lon": -73.9866195 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Norfolk Street", + "name:etymology:wikidata": "Q23109", + "name:ko": "노퍽 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1354945707, + "bounds": { + "minlat": 40.7248589, + "minlon": -73.9843993, + "maxlat": 40.7266660, + "maxlon": -73.9830900 + }, + "nodes": [ + 42453175, + 7120676181, + 3316524008, + 11040029975, + 9166033059, + 42444829, + 9166033058, + 4216045808, + 42434215, + 4216045800, + 4216045802, + 42434148 + ], + "geometry": [ + { "lat": 40.7248589, "lon": -73.9843993 }, + { "lat": 40.7249033, "lon": -73.9843669 }, + { "lat": 40.7249370, "lon": -73.9843424 }, + { "lat": 40.7250247, "lon": -73.9842785 }, + { "lat": 40.7254160, "lon": -73.9839936 }, + { "lat": 40.7254711, "lon": -73.9839534 }, + { "lat": 40.7255303, "lon": -73.9839103 }, + { "lat": 40.7259908, "lon": -73.9835749 }, + { "lat": 40.7260512, "lon": -73.9835308 }, + { "lat": 40.7261212, "lon": -73.9834799 }, + { "lat": 40.7266111, "lon": -73.9831299 }, + { "lat": 40.7266660, "lon": -73.9830900 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Avenue A", + "name:ru": "Авеню A", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790552", + "wikipedia": "en:Avenue A (Manhattan)" + } +}, +{ + "type": "way", + "id": 1355109067, + "bounds": { + "minlat": 40.8191787, + "minlon": -73.9271094, + "maxlat": 40.8195091, + "maxlon": -73.9269493 + }, + "nodes": [ + 42733563, + 12162740216, + 12162740210 + ], + "geometry": [ + { "lat": 40.8195091, "lon": -73.9269493 }, + { "lat": 40.8194467, "lon": -73.9269815 }, + { "lat": 40.8191787, "lon": -73.9271094 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1355109068, + "bounds": { + "minlat": 40.8194703, + "minlon": -73.9269493, + "maxlat": 40.8195091, + "maxlon": -73.9268046 + }, + "nodes": [ + 2408448896, + 42733563 + ], + "geometry": [ + { "lat": 40.8194703, "lon": -73.9268046 }, + { "lat": 40.8195091, "lon": -73.9269493 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 150th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "150th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1355109254, + "bounds": { + "minlat": 40.7486850, + "minlon": -73.9118880, + "maxlat": 40.7487150, + "maxlon": -73.9116420 + }, + "nodes": [ + 42892881, + 11467993928, + 42892893 + ], + "geometry": [ + { "lat": 40.7487150, "lon": -73.9118880 }, + { "lat": 40.7487014, "lon": -73.9117763 }, + { "lat": 40.7486850, "lon": -73.9116420 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "39th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1355233326, + "bounds": { + "minlat": 40.7038527, + "minlon": -73.9906283, + "maxlat": 40.7038777, + "maxlon": -73.9906133 + }, + "nodes": [ + 11671229111, + 1258945452 + ], + "geometry": [ + { "lat": 40.7038527, "lon": -73.9906283 }, + { "lat": 40.7038777, "lon": -73.9906133 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Main Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:zip_left": "11201" + } +}, +{ + "type": "way", + "id": 1356843743, + "bounds": { + "minlat": 40.8638010, + "minlon": -73.9853740, + "maxlat": 40.8653080, + "maxlon": -73.9818000 + }, + "nodes": [ + 103224121, + 10233515891, + 6137185195, + 8066237351, + 10233515900, + 8073397800, + 6111847348, + 8073397785, + 10233515894, + 103093250, + 10233515892, + 103297848, + 103297850, + 103220629 + ], + "geometry": [ + { "lat": 40.8653080, "lon": -73.9853740 }, + { "lat": 40.8652677, "lon": -73.9852850 }, + { "lat": 40.8650922, "lon": -73.9848976 }, + { "lat": 40.8649943, "lon": -73.9846736 }, + { "lat": 40.8649809, "lon": -73.9846406 }, + { "lat": 40.8646861, "lon": -73.9839713 }, + { "lat": 40.8645791, "lon": -73.9837303 }, + { "lat": 40.8645273, "lon": -73.9836120 }, + { "lat": 40.8643105, "lon": -73.9831004 }, + { "lat": 40.8642805, "lon": -73.9830176 }, + { "lat": 40.8642486, "lon": -73.9829180 }, + { "lat": 40.8638490, "lon": -73.9820170 }, + { "lat": 40.8638130, "lon": -73.9818770 }, + { "lat": 40.8638010, "lon": -73.9818000 } + ], + "tags": { + "highway": "residential", + "name": "Hillside Avenue", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1356843744, + "bounds": { + "minlat": 40.8655998, + "minlon": -73.9851660, + "maxlat": 40.8657528, + "maxlon": -73.9850563 + }, + "nodes": [ + 10238136410, + 6137202422, + 6191069204 + ], + "geometry": [ + { "lat": 40.8655998, "lon": -73.9851660 }, + { "lat": 40.8656808, "lon": -73.9851100 }, + { "lat": 40.8657528, "lon": -73.9850563 } + ], + "tags": { + "highway": "tertiary", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1356976353, + "bounds": { + "minlat": 40.7788275, + "minlon": -73.9539771, + "maxlat": 40.7790624, + "maxlon": -73.9538059 + }, + "nodes": [ + 42429338, + 7924099742, + 12559421112 + ], + "geometry": [ + { "lat": 40.7788275, "lon": -73.9539771 }, + { "lat": 40.7789199, "lon": -73.9539099 }, + { "lat": 40.7790624, "lon": -73.9538059 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1359212495, + "bounds": { + "minlat": 40.7282276, + "minlon": -73.9599025, + "maxlat": 40.7283150, + "maxlon": -73.9589933 + }, + "nodes": [ + 12580955201, + 6895004589, + 10957424648, + 6895004590, + 9478398305, + 6895004591, + 9789402711, + 9789402700, + 42498314 + ], + "geometry": [ + { "lat": 40.7282276, "lon": -73.9599025 }, + { "lat": 40.7282367, "lon": -73.9598133 }, + { "lat": 40.7282483, "lon": -73.9596928 }, + { "lat": 40.7282620, "lon": -73.9595492 }, + { "lat": 40.7282771, "lon": -73.9593926 }, + { "lat": 40.7282933, "lon": -73.9592237 }, + { "lat": 40.7283005, "lon": -73.9591484 }, + { "lat": 40.7283056, "lon": -73.9590958 }, + { "lat": 40.7283150, "lon": -73.9589933 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Noble Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Noble", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1359214315, + "bounds": { + "minlat": 40.7323151, + "minlon": -73.9614779, + "maxlat": 40.7323906, + "maxlon": -73.9614659 + }, + "nodes": [ + 10735878471, + 13684694231, + 12580931544 + ], + "geometry": [ + { "lat": 40.7323906, "lon": -73.9614779 }, + { "lat": 40.7323369, "lon": -73.9614686 }, + { "lat": 40.7323151, "lon": -73.9614659 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1359214318, + "bounds": { + "minlat": 40.7316941, + "minlon": -73.9613686, + "maxlat": 40.7317583, + "maxlon": -73.9613575 + }, + "nodes": [ + 12580931543, + 10735878470 + ], + "geometry": [ + { "lat": 40.7317583, "lon": -73.9613686 }, + { "lat": 40.7316941, "lon": -73.9613575 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1359353583, + "bounds": { + "minlat": 40.7487884, + "minlon": -73.9700538, + "maxlat": 40.7488839, + "maxlon": -73.9699706 + }, + "nodes": [ + 3569749106, + 11003445513, + 42455929 + ], + "geometry": [ + { "lat": 40.7487884, "lon": -73.9700538 }, + { "lat": 40.7488354, "lon": -73.9700178 }, + { "lat": 40.7488839, "lon": -73.9699706 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1359353584, + "bounds": { + "minlat": 40.7486584, + "minlon": -73.9701484, + "maxlat": 40.7487884, + "maxlon": -73.9700538 + }, + "nodes": [ + 12582413054, + 3569749106 + ], + "geometry": [ + { "lat": 40.7486584, "lon": -73.9701484 }, + { "lat": 40.7487884, "lon": -73.9700538 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1359777002, + "bounds": { + "minlat": 40.7393421, + "minlon": -74.0102607, + "maxlat": 40.7393829, + "maxlon": -74.0100400 + }, + "nodes": [ + 246648627, + 12071497337, + 12071497336, + 246651798 + ], + "geometry": [ + { "lat": 40.7393421, "lon": -74.0100400 }, + { "lat": 40.7393571, "lon": -74.0101211 }, + { "lat": 40.7393661, "lon": -74.0101647 }, + { "lat": 40.7393829, "lon": -74.0102607 } + ], + "tags": { + "highway": "service", + "name": "Gansevoort Street", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1360612781, + "bounds": { + "minlat": 40.7577332, + "minlon": -73.9535818, + "maxlat": 40.7581060, + "maxlon": -73.9530579 + }, + "nodes": [ + 6647688988, + 6647688976, + 9913669020, + 8265114378, + 1241820946 + ], + "geometry": [ + { "lat": 40.7581060, "lon": -73.9530579 }, + { "lat": 40.7578383, "lon": -73.9534336 }, + { "lat": 40.7577847, "lon": -73.9535113 }, + { "lat": 40.7577618, "lon": -73.9535426 }, + { "lat": 40.7577332, "lon": -73.9535818 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "name_1": "East Road", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Main", + "tiger:name_base_1": "East", + "tiger:name_type": "St", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1360770522, + "bounds": { + "minlat": 40.8611229, + "minlon": -74.0119046, + "maxlat": 40.8611462, + "maxlon": -74.0115548 + }, + "nodes": [ + 10936420187, + 9043597513 + ], + "geometry": [ + { "lat": 40.8611229, "lon": -74.0119046 }, + { "lat": 40.8611462, "lon": -74.0115548 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 1361048663, + "bounds": { + "minlat": 40.7586019, + "minlon": -73.9952654, + "maxlat": 40.7587188, + "maxlon": -73.9949905 + }, + "nodes": [ + 12599731786, + 4207932664 + ], + "geometry": [ + { "lat": 40.7586019, "lon": -73.9949905 }, + { "lat": 40.7587188, "lon": -73.9952654 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 1361087816, + "bounds": { + "minlat": 40.8635720, + "minlon": -73.9866200, + "maxlat": 40.8638072, + "maxlon": -73.9864548 + }, + "nodes": [ + 103224119, + 10164097231, + 103224120 + ], + "geometry": [ + { "lat": 40.8635720, "lon": -73.9866200 }, + { "lat": 40.8637811, "lon": -73.9864638 }, + { "lat": 40.8638072, "lon": -73.9864548 } + ], + "tags": { + "highway": "tertiary", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1361087817, + "bounds": { + "minlat": 40.8623622, + "minlon": -73.9864277, + "maxlat": 40.8634710, + "maxlon": -73.9842856 + }, + "nodes": [ + 6111818465, + 10164097233, + 6111818468, + 6111847411, + 10115455711, + 103093242 + ], + "geometry": [ + { "lat": 40.8634710, "lon": -73.9864277 }, + { "lat": 40.8633556, "lon": -73.9862079 }, + { "lat": 40.8633426, "lon": -73.9861832 }, + { "lat": 40.8632783, "lon": -73.9860607 }, + { "lat": 40.8624103, "lon": -73.9843818 }, + { "lat": 40.8623622, "lon": -73.9842856 } + ], + "tags": { + "highway": "residential", + "name": "Beechwood Place", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Beechwood", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1361087818, + "bounds": { + "minlat": 40.8638072, + "minlon": -73.9864548, + "maxlat": 40.8646975, + "maxlon": -73.9858079 + }, + "nodes": [ + 103224120, + 103204849, + 6126763057, + 10233515857, + 6126763062 + ], + "geometry": [ + { "lat": 40.8638072, "lon": -73.9864548 }, + { "lat": 40.8641740, "lon": -73.9861800 }, + { "lat": 40.8643248, "lon": -73.9860728 }, + { "lat": 40.8645252, "lon": -73.9859303 }, + { "lat": 40.8646975, "lon": -73.9858079 } + ], + "tags": { + "highway": "tertiary", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1361684843, + "bounds": { + "minlat": 40.8774637, + "minlon": -73.9826270, + "maxlat": 40.8780260, + "maxlon": -73.9819946 + }, + "nodes": [ + 6889705666, + 7701684515, + 103179245, + 10274904123, + 10026909353 + ], + "geometry": [ + { "lat": 40.8780260, "lon": -73.9819946 }, + { "lat": 40.8778800, "lon": -73.9821611 }, + { "lat": 40.8777345, "lon": -73.9823270 }, + { "lat": 40.8776032, "lon": -73.9824727 }, + { "lat": 40.8774637, "lon": -73.9826270 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1361696076, + "bounds": { + "minlat": 40.8253935, + "minlon": -73.9235456, + "maxlat": 40.8254456, + "maxlon": -73.9234019 + }, + "nodes": [ + 42741417, + 2408448912 + ], + "geometry": [ + { "lat": 40.8254456, "lon": -73.9235456 }, + { "lat": 40.8253935, "lon": -73.9234019 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 158th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_left_1": "10451" + } +}, +{ + "type": "way", + "id": 1362477574, + "bounds": { + "minlat": 40.8035310, + "minlon": -74.0121563, + "maxlat": 40.8037815, + "maxlon": -74.0119796 + }, + "nodes": [ + 12614912668, + 12614912673, + 12614912669 + ], + "geometry": [ + { "lat": 40.8037815, "lon": -74.0119796 }, + { "lat": 40.8035864, "lon": -74.0121187 }, + { "lat": 40.8035310, "lon": -74.0121563 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1362477575, + "bounds": { + "minlat": 40.8033491, + "minlon": -74.0122923, + "maxlat": 40.8035310, + "maxlon": -74.0121563 + }, + "nodes": [ + 12614912669, + 12614912678, + 12614912672 + ], + "geometry": [ + { "lat": 40.8035310, "lon": -74.0121563 }, + { "lat": 40.8034061, "lon": -74.0122497 }, + { "lat": 40.8033491, "lon": -74.0122923 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1362477576, + "bounds": { + "minlat": 40.8034346, + "minlon": -74.0119827, + "maxlat": 40.8035250, + "maxlon": -74.0117789 + }, + "nodes": [ + 12614912677, + 12614912674, + 12614912675 + ], + "geometry": [ + { "lat": 40.8035250, "lon": -74.0119827 }, + { "lat": 40.8034756, "lon": -74.0118733 }, + { "lat": 40.8034346, "lon": -74.0117789 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1362477577, + "bounds": { + "minlat": 40.8035533, + "minlon": -74.0121187, + "maxlat": 40.8035864, + "maxlon": -74.0120457 + }, + "nodes": [ + 12614912673, + 12614912676 + ], + "geometry": [ + { "lat": 40.8035864, "lon": -74.0121187 }, + { "lat": 40.8035533, "lon": -74.0120457 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1362477578, + "bounds": { + "minlat": 40.8035250, + "minlon": -74.0120457, + "maxlat": 40.8035533, + "maxlon": -74.0119827 + }, + "nodes": [ + 12614912676, + 12614912677 + ], + "geometry": [ + { "lat": 40.8035533, "lon": -74.0120457 }, + { "lat": 40.8035250, "lon": -74.0119827 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1362477579, + "bounds": { + "minlat": 40.8034416, + "minlon": -74.0121563, + "maxlat": 40.8035310, + "maxlon": -74.0119449 + }, + "nodes": [ + 12614912669, + 12614912682 + ], + "geometry": [ + { "lat": 40.8035310, "lon": -74.0121563 }, + { "lat": 40.8034416, "lon": -74.0119449 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1362477580, + "bounds": { + "minlat": 40.8037091, + "minlon": -74.0119796, + "maxlat": 40.8037815, + "maxlon": -74.0118129 + }, + "nodes": [ + 12614912668, + 12614912681 + ], + "geometry": [ + { "lat": 40.8037815, "lon": -74.0119796 }, + { "lat": 40.8037091, "lon": -74.0118129 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1362477581, + "bounds": { + "minlat": 40.8033836, + "minlon": -74.0119449, + "maxlat": 40.8034416, + "maxlon": -74.0118201 + }, + "nodes": [ + 12614912682, + 12614912670, + 12614912671 + ], + "geometry": [ + { "lat": 40.8034416, "lon": -74.0119449 }, + { "lat": 40.8034265, "lon": -74.0119130 }, + { "lat": 40.8033836, "lon": -74.0118201 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1362572651, + "bounds": { + "minlat": 40.7581732, + "minlon": -73.9945329, + "maxlat": 40.7583714, + "maxlon": -73.9943910 + }, + "nodes": [ + 9307956353, + 7903850299, + 42434434 + ], + "geometry": [ + { "lat": 40.7581732, "lon": -73.9945329 }, + { "lat": 40.7582743, "lon": -73.9944626 }, + { "lat": 40.7583714, "lon": -73.9943910 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "name": "Dyer Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|left;through|none|none|none", + "wikidata": "Q5318555", + "wikipedia": "en:Dyer Avenue" + } +}, +{ + "type": "way", + "id": 1362575285, + "bounds": { + "minlat": 40.7291043, + "minlon": -74.0105601, + "maxlat": 40.7298330, + "maxlon": -74.0104866 + }, + "nodes": [ + 12162502083, + 4629486887, + 42440532, + 246878876, + 9607729579 + ], + "geometry": [ + { "lat": 40.7291043, "lon": -74.0105601 }, + { "lat": 40.7292181, "lon": -74.0105488 }, + { "lat": 40.7296809, "lon": -74.0105030 }, + { "lat": 40.7297280, "lon": -74.0104975 }, + { "lat": 40.7298330, "lon": -74.0104866 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "yes", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1362576631, + "bounds": { + "minlat": 40.7236301, + "minlon": -74.0113755, + "maxlat": 40.7242749, + "maxlon": -74.0112354 + }, + "nodes": [ + 42436024, + 246882085, + 42445174 + ], + "geometry": [ + { "lat": 40.7236301, "lon": -74.0113755 }, + { "lat": 40.7241844, "lon": -74.0112535 }, + { "lat": 40.7242749, "lon": -74.0112354 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "asphalt", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1362581216, + "bounds": { + "minlat": 40.7607466, + "minlon": -74.0020668, + "maxlat": 40.7613307, + "maxlon": -74.0016475 + }, + "nodes": [ + 42448996, + 12154605936, + 42453545 + ], + "geometry": [ + { "lat": 40.7607466, "lon": -74.0020668 }, + { "lat": 40.7612506, "lon": -74.0017050 }, + { "lat": 40.7613307, "lon": -74.0016475 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1363260164, + "bounds": { + "minlat": 40.7993612, + "minlon": -73.9448411, + "maxlat": 40.7999781, + "maxlon": -73.9433693 + }, + "nodes": [ + 596776497, + 11296237249, + 10167086802, + 42446161 + ], + "geometry": [ + { "lat": 40.7993612, "lon": -73.9433693 }, + { "lat": 40.7993946, "lon": -73.9434491 }, + { "lat": 40.7999407, "lon": -73.9447519 }, + { "lat": 40.7999781, "lon": -73.9448411 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 116th Street", + "name:ru": "Восточная 116-я стрит", + "surface": "asphalt", + "wikidata": "Q4547583", + "wikipedia": "en:116th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1363260165, + "bounds": { + "minlat": 40.7986710, + "minlon": -73.9438788, + "maxlat": 40.7993612, + "maxlon": -73.9433693 + }, + "nodes": [ + 596776497, + 11296237248, + 7924346847, + 596776534 + ], + "geometry": [ + { "lat": 40.7993612, "lon": -73.9433693 }, + { "lat": 40.7992656, "lon": -73.9434397 }, + { "lat": 40.7987514, "lon": -73.9438184 }, + { "lat": 40.7986710, "lon": -73.9438788 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1363282648, + "bounds": { + "minlat": 40.8187602, + "minlon": -73.9561236, + "maxlat": 40.8188507, + "maxlon": -73.9559061 + }, + "nodes": [ + 7732653969, + 7732653970 + ], + "geometry": [ + { "lat": 40.8187602, "lon": -73.9559061 }, + { "lat": 40.8188507, "lon": -73.9561236 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxheight": "9'11\"", + "name": "West 133rd Street", + "name_1": "West 133 Street", + "surface": "asphalt", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1363282649, + "bounds": { + "minlat": 40.8187602, + "minlon": -73.9559061, + "maxlat": 40.8193913, + "maxlon": -73.9554594 + }, + "nodes": [ + 7732653969, + 10129081636, + 7732653971 + ], + "geometry": [ + { "lat": 40.8187602, "lon": -73.9559061 }, + { "lat": 40.8188186, "lon": -73.9558647 }, + { "lat": 40.8193913, "lon": -73.9554594 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1363282650, + "bounds": { + "minlat": 40.8176025, + "minlon": -73.9570440, + "maxlat": 40.8188507, + "maxlon": -73.9561236 + }, + "nodes": [ + 7732653970, + 10129081634, + 10129081627, + 42428876, + 10129081624, + 10128823997, + 42428873 + ], + "geometry": [ + { "lat": 40.8188507, "lon": -73.9561236 }, + { "lat": 40.8187885, "lon": -73.9561694 }, + { "lat": 40.8182807, "lon": -73.9565433 }, + { "lat": 40.8182287, "lon": -73.9565816 }, + { "lat": 40.8181784, "lon": -73.9566188 }, + { "lat": 40.8176592, "lon": -73.9570021 }, + { "lat": 40.8176025, "lon": -73.9570440 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1363282651, + "bounds": { + "minlat": 40.8188507, + "minlon": -73.9589033, + "maxlat": 40.8200228, + "maxlon": -73.9561236 + }, + "nodes": [ + 7732653970, + 10129081632, + 7184120291, + 13703551270, + 13703551273, + 13703625906, + 10128878993, + 42434105 + ], + "geometry": [ + { "lat": 40.8188507, "lon": -73.9561236 }, + { "lat": 40.8188886, "lon": -73.9562132 }, + { "lat": 40.8190919, "lon": -73.9566934 }, + { "lat": 40.8191271, "lon": -73.9567769 }, + { "lat": 40.8194047, "lon": -73.9574360 }, + { "lat": 40.8197411, "lon": -73.9582346 }, + { "lat": 40.8199462, "lon": -73.9587214 }, + { "lat": 40.8200228, "lon": -73.9589033 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxheight": "9'11\"", + "name": "West 133rd Street", + "name_1": "West 133 Street", + "surface": "asphalt", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1363923901, + "bounds": { + "minlat": 40.8524200, + "minlon": -73.9966350, + "maxlat": 40.8535570, + "maxlon": -73.9946620 + }, + "nodes": [ + 103137589, + 5976422968, + 5976408284, + 103137591, + 103137592, + 103137594 + ], + "geometry": [ + { "lat": 40.8524200, "lon": -73.9946620 }, + { "lat": 40.8526067, "lon": -73.9949846 }, + { "lat": 40.8526552, "lon": -73.9950684 }, + { "lat": 40.8528800, "lon": -73.9954570 }, + { "lat": 40.8531220, "lon": -73.9958780 }, + { "lat": 40.8535570, "lon": -73.9966350 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "West Edsall Boulevard", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edsall", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1363923902, + "bounds": { + "minlat": 40.8535570, + "minlon": -73.9966350, + "maxlat": 40.8549620, + "maxlon": -73.9952340 + }, + "nodes": [ + 440215451, + 10266684026, + 103137594 + ], + "geometry": [ + { "lat": 40.8549620, "lon": -73.9952340 }, + { "lat": 40.8549165, "lon": -73.9952794 }, + { "lat": 40.8535570, "lon": -73.9966350 } + ], + "tags": { + "highway": "residential", + "name": "Hillside Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hillside", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1363959426, + "bounds": { + "minlat": 40.8160059, + "minlon": -73.9816580, + "maxlat": 40.8161808, + "maxlon": -73.9814852 + }, + "nodes": [ + 1750475770, + 103137080, + 5753156005 + ], + "geometry": [ + { "lat": 40.8160059, "lon": -73.9816580 }, + { "lat": 40.8160390, "lon": -73.9816220 }, + { "lat": 40.8161808, "lon": -73.9814852 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1363959427, + "bounds": { + "minlat": 40.8163425, + "minlon": -73.9813292, + "maxlat": 40.8165157, + "maxlon": -73.9811622 + }, + "nodes": [ + 5753155996, + 4205788998 + ], + "geometry": [ + { "lat": 40.8163425, "lon": -73.9813292 }, + { "lat": 40.8165157, "lon": -73.9811622 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1363959428, + "bounds": { + "minlat": 40.8159118, + "minlon": -73.9813259, + "maxlat": 40.8159951, + "maxlon": -73.9811272 + }, + "nodes": [ + 1750475765, + 1750475768 + ], + "geometry": [ + { "lat": 40.8159118, "lon": -73.9811272 }, + { "lat": 40.8159951, "lon": -73.9813259 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1364239996, + "bounds": { + "minlat": 40.7515688, + "minlon": -74.0078934, + "maxlat": 40.7516843, + "maxlon": -74.0078501 + }, + "nodes": [ + 12161224649, + 247072737, + 11929071153 + ], + "geometry": [ + { "lat": 40.7515688, "lon": -74.0078934 }, + { "lat": 40.7516039, "lon": -74.0078800 }, + { "lat": 40.7516843, "lon": -74.0078501 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1364243214, + "bounds": { + "minlat": 40.7544661, + "minlon": -74.0066345, + "maxlat": 40.7563097, + "maxlon": -74.0052945 + }, + "nodes": [ + 42437699, + 9423683538, + 8261122120, + 9423683507, + 42446678 + ], + "geometry": [ + { "lat": 40.7544661, "lon": -74.0066345 }, + { "lat": 40.7548063, "lon": -74.0063844 }, + { "lat": 40.7549009, "lon": -74.0063168 }, + { "lat": 40.7550423, "lon": -74.0062153 }, + { "lat": 40.7563097, "lon": -74.0052945 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1364250077, + "bounds": { + "minlat": 40.8207761, + "minlon": -74.0087484, + "maxlat": 40.8207808, + "maxlon": -74.0086926 + }, + "nodes": [ + 5837332134, + 4205784190 + ], + "geometry": [ + { "lat": 40.8207761, "lon": -74.0087484 }, + { "lat": 40.8207808, "lon": -74.0086926 } + ], + "tags": { + "highway": "secondary", + "name": "Fairview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022" + } +}, +{ + "type": "way", + "id": 1364250078, + "bounds": { + "minlat": 40.8207881, + "minlon": -74.0086109, + "maxlat": 40.8208305, + "maxlon": -74.0081377 + }, + "nodes": [ + 5837332136, + 103223998 + ], + "geometry": [ + { "lat": 40.8207881, "lon": -74.0086109 }, + { "lat": 40.8208305, "lon": -74.0081377 } + ], + "tags": { + "highway": "secondary", + "name": "Fairview Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fairview", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022", + "tiger:zip_right": "07022", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1364250079, + "bounds": { + "minlat": 40.8206732, + "minlon": -74.0086768, + "maxlat": 40.8207881, + "maxlon": -74.0086109 + }, + "nodes": [ + 5837332135, + 5837332136 + ], + "geometry": [ + { "lat": 40.8206732, "lon": -74.0086768 }, + { "lat": 40.8207881, "lon": -74.0086109 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1364250080, + "bounds": { + "minlat": 40.8202777, + "minlon": -74.0086716, + "maxlat": 40.8206197, + "maxlon": -74.0086387 + }, + "nodes": [ + 5837332139, + 5837332137 + ], + "geometry": [ + { "lat": 40.8206197, "lon": -74.0086716 }, + { "lat": 40.8202777, "lon": -74.0086387 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1364312922, + "bounds": { + "minlat": 40.7516579, + "minlon": -73.9775356, + "maxlat": 40.7520585, + "maxlon": -73.9765721 + }, + "nodes": [ + 11817409610, + 11817409611, + 11043134796, + 561042204 + ], + "geometry": [ + { "lat": 40.7516579, "lon": -73.9765721 }, + { "lat": 40.7519892, "lon": -73.9773682 }, + { "lat": 40.7520362, "lon": -73.9774818 }, + { "lat": 40.7520585, "lon": -73.9775356 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1364312923, + "bounds": { + "minlat": 40.7520585, + "minlon": -73.9778143, + "maxlat": 40.7521738, + "maxlon": -73.9775356 + }, + "nodes": [ + 561042204, + 11506834636, + 561042203 + ], + "geometry": [ + { "lat": 40.7520585, "lon": -73.9775356 }, + { "lat": 40.7521153, "lon": -73.9776729 }, + { "lat": 40.7521738, "lon": -73.9778143 } + ], + "tags": { + "bus:lanes": "yes|designated", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 42nd Street", + "name:ru": "Восточная 42-я стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q110061", + "wikipedia": "en:42nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1364422507, + "bounds": { + "minlat": 40.8216451, + "minlon": -73.9767217, + "maxlat": 40.8219806, + "maxlon": -73.9764427 + }, + "nodes": [ + 5362545955, + 12322814165, + 4205789003 + ], + "geometry": [ + { "lat": 40.8216451, "lon": -73.9767217 }, + { "lat": 40.8217228, "lon": -73.9766571 }, + { "lat": 40.8219806, "lon": -73.9764427 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1364434037, + "bounds": { + "minlat": 40.7653423, + "minlon": -73.9977059, + "maxlat": 40.7654973, + "maxlon": -73.9975936 + }, + "nodes": [ + 12154598283, + 247120150, + 11017187936 + ], + "geometry": [ + { "lat": 40.7653423, "lon": -73.9977059 }, + { "lat": 40.7654074, "lon": -73.9976587 }, + { "lat": 40.7654973, "lon": -73.9975936 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1364457473, + "bounds": { + "minlat": 40.8470501, + "minlon": -73.9663140, + "maxlat": 40.8480283, + "maxlon": -73.9652636 + }, + "nodes": [ + 440208740, + 440208739, + 440208269, + 440208268, + 5106288676, + 440208251, + 440208252, + 2902396749, + 440208253, + 440208254, + 5106248262, + 2349772872, + 103137227 + ], + "geometry": [ + { "lat": 40.8470501, "lon": -73.9663140 }, + { "lat": 40.8471182, "lon": -73.9662777 }, + { "lat": 40.8471611, "lon": -73.9662450 }, + { "lat": 40.8472177, "lon": -73.9661772 }, + { "lat": 40.8472719, "lon": -73.9661111 }, + { "lat": 40.8473616, "lon": -73.9659894 }, + { "lat": 40.8474251, "lon": -73.9659057 }, + { "lat": 40.8475224, "lon": -73.9657799 }, + { "lat": 40.8476223, "lon": -73.9656535 }, + { "lat": 40.8477362, "lon": -73.9655111 }, + { "lat": 40.8478172, "lon": -73.9654357 }, + { "lat": 40.8479484, "lon": -73.9653185 }, + { "lat": 40.8480283, "lon": -73.9652636 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1364483345, + "bounds": { + "minlat": 40.8396957, + "minlon": -73.9701948, + "maxlat": 40.8418427, + "maxlon": -73.9693668 + }, + "nodes": [ + 3882414958, + 103137176, + 103137177, + 103137178, + 103137179, + 12921090958, + 103137180, + 3629342183, + 103137181, + 103137182, + 7672312141, + 103137183, + 7672312137, + 103137184, + 103137185, + 103137186, + 103137187, + 5362444823 + ], + "geometry": [ + { "lat": 40.8396957, "lon": -73.9701948 }, + { "lat": 40.8398160, "lon": -73.9701710 }, + { "lat": 40.8399540, "lon": -73.9701170 }, + { "lat": 40.8402160, "lon": -73.9699680 }, + { "lat": 40.8402910, "lon": -73.9699120 }, + { "lat": 40.8403704, "lon": -73.9698621 }, + { "lat": 40.8404430, "lon": -73.9698150 }, + { "lat": 40.8404562, "lon": -73.9698089 }, + { "lat": 40.8406360, "lon": -73.9697160 }, + { "lat": 40.8407940, "lon": -73.9696520 }, + { "lat": 40.8409240, "lon": -73.9696183 }, + { "lat": 40.8409947, "lon": -73.9696000 }, + { "lat": 40.8410745, "lon": -73.9695830 }, + { "lat": 40.8416320, "lon": -73.9694640 }, + { "lat": 40.8416470, "lon": -73.9694590 }, + { "lat": 40.8417240, "lon": -73.9694350 }, + { "lat": 40.8418120, "lon": -73.9693900 }, + { "lat": 40.8418427, "lon": -73.9693668 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1364483346, + "bounds": { + "minlat": 40.8418427, + "minlon": -73.9693668, + "maxlat": 40.8420432, + "maxlon": -73.9691776 + }, + "nodes": [ + 5362444823, + 103137188, + 103097451, + 11099079367 + ], + "geometry": [ + { "lat": 40.8418427, "lon": -73.9693668 }, + { "lat": 40.8418940, "lon": -73.9693280 }, + { "lat": 40.8419400, "lon": -73.9692810 }, + { "lat": 40.8420432, "lon": -73.9691776 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1364507992, + "bounds": { + "minlat": 40.8339969, + "minlon": -73.9719667, + "maxlat": 40.8347418, + "maxlon": -73.9714594 + }, + "nodes": [ + 5362445789, + 103093404 + ], + "geometry": [ + { "lat": 40.8339969, "lon": -73.9719667 }, + { "lat": 40.8347418, "lon": -73.9714594 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1364507993, + "bounds": { + "minlat": 40.8339632, + "minlon": -73.9719891, + "maxlat": 40.8339969, + "maxlon": -73.9719667 + }, + "nodes": [ + 7259829436, + 3656109231, + 5362445789 + ], + "geometry": [ + { "lat": 40.8339632, "lon": -73.9719891 }, + { "lat": 40.8339671, "lon": -73.9719868 }, + { "lat": 40.8339969, "lon": -73.9719667 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "bicycle": "designated", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1364507994, + "bounds": { + "minlat": 40.8339057, + "minlon": -73.9717188, + "maxlat": 40.8340027, + "maxlon": -73.9716865 + }, + "nodes": [ + 3656109226, + 3656109229 + ], + "geometry": [ + { "lat": 40.8339057, "lon": -73.9717188 }, + { "lat": 40.8340027, "lon": -73.9716865 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1364626864, + "bounds": { + "minlat": 40.8486482, + "minlon": -73.9705408, + "maxlat": 40.8487670, + "maxlon": -73.9705064 + }, + "nodes": [ + 1957898057, + 7635623425 + ], + "geometry": [ + { "lat": 40.8487670, "lon": -73.9705064 }, + { "lat": 40.8486482, "lon": -73.9705408 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1364626865, + "bounds": { + "minlat": 40.8467729, + "minlon": -73.9710167, + "maxlat": 40.8486482, + "maxlon": -73.9705408 + }, + "nodes": [ + 7635623425, + 103205043, + 103205042, + 7111829392, + 7448049000, + 103205040, + 5449315444, + 13523674081, + 103171552 + ], + "geometry": [ + { "lat": 40.8486482, "lon": -73.9705408 }, + { "lat": 40.8482206, "lon": -73.9706612 }, + { "lat": 40.8480261, "lon": -73.9707136 }, + { "lat": 40.8475739, "lon": -73.9708356 }, + { "lat": 40.8475264, "lon": -73.9708484 }, + { "lat": 40.8474477, "lon": -73.9708697 }, + { "lat": 40.8471199, "lon": -73.9709499 }, + { "lat": 40.8468875, "lon": -73.9709946 }, + { "lat": 40.8467729, "lon": -73.9710167 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1364674851, + "bounds": { + "minlat": 40.8616118, + "minlon": -73.9587380, + "maxlat": 40.8789869, + "maxlon": -73.9498952 + }, + "nodes": [ + 530475843, + 103195228, + 6339551963, + 6339551955, + 7930535134, + 7930535129, + 7930535131, + 103195231, + 440215045, + 7930535133, + 7930535128, + 103195233, + 7930535130, + 103195236, + 7930535132, + 103195237, + 103195238, + 103195239, + 103195240, + 103195241, + 103157825, + 103195244, + 103195245, + 103195246, + 103195247, + 5362438647, + 103195248, + 103195249, + 103195250, + 103195252, + 103195254, + 7656323509, + 103195256, + 103195258, + 103195260, + 103195262, + 103195264, + 103195266, + 9283355923, + 103195268, + 103195270, + 9283355924, + 9283355922, + 103195272, + 9283355925, + 103195274, + 7144899447, + 103195276, + 7430140942, + 103195277, + 7430140935, + 103098573, + 103195278, + 5721918271, + 103195279, + 103195280, + 103195281, + 103195282, + 103195283, + 7244968730, + 103195284, + 103195285, + 103180322, + 103195287, + 103150961, + 8374457911 + ], + "geometry": [ + { "lat": 40.8616118, "lon": -73.9587380 }, + { "lat": 40.8620131, "lon": -73.9582902 }, + { "lat": 40.8623045, "lon": -73.9579583 }, + { "lat": 40.8628191, "lon": -73.9573916 }, + { "lat": 40.8629018, "lon": -73.9573047 }, + { "lat": 40.8629526, "lon": -73.9572521 }, + { "lat": 40.8630084, "lon": -73.9571961 }, + { "lat": 40.8630619, "lon": -73.9571455 }, + { "lat": 40.8631170, "lon": -73.9570966 }, + { "lat": 40.8631723, "lon": -73.9570523 }, + { "lat": 40.8632319, "lon": -73.9570067 }, + { "lat": 40.8633047, "lon": -73.9569528 }, + { "lat": 40.8633853, "lon": -73.9568939 }, + { "lat": 40.8634968, "lon": -73.9568196 }, + { "lat": 40.8636152, "lon": -73.9567393 }, + { "lat": 40.8639956, "lon": -73.9564988 }, + { "lat": 40.8641941, "lon": -73.9563684 }, + { "lat": 40.8645399, "lon": -73.9561434 }, + { "lat": 40.8647806, "lon": -73.9559775 }, + { "lat": 40.8649650, "lon": -73.9558204 }, + { "lat": 40.8651286, "lon": -73.9556619 }, + { "lat": 40.8653884, "lon": -73.9554126 }, + { "lat": 40.8655420, "lon": -73.9552780 }, + { "lat": 40.8657120, "lon": -73.9551630 }, + { "lat": 40.8658480, "lon": -73.9550850 }, + { "lat": 40.8659097, "lon": -73.9550554 }, + { "lat": 40.8660230, "lon": -73.9550010 }, + { "lat": 40.8662070, "lon": -73.9549310 }, + { "lat": 40.8663940, "lon": -73.9548780 }, + { "lat": 40.8665830, "lon": -73.9548420 }, + { "lat": 40.8667190, "lon": -73.9548280 }, + { "lat": 40.8673347, "lon": -73.9548332 }, + { "lat": 40.8676659, "lon": -73.9547808 }, + { "lat": 40.8678570, "lon": -73.9547530 }, + { "lat": 40.8681450, "lon": -73.9547060 }, + { "lat": 40.8693970, "lon": -73.9544570 }, + { "lat": 40.8696140, "lon": -73.9543910 }, + { "lat": 40.8698222, "lon": -73.9543199 }, + { "lat": 40.8700099, "lon": -73.9542443 }, + { "lat": 40.8701670, "lon": -73.9541710 }, + { "lat": 40.8703567, "lon": -73.9540691 }, + { "lat": 40.8704630, "lon": -73.9540281 }, + { "lat": 40.8707577, "lon": -73.9538513 }, + { "lat": 40.8708781, "lon": -73.9537582 }, + { "lat": 40.8710697, "lon": -73.9536307 }, + { "lat": 40.8712714, "lon": -73.9534808 }, + { "lat": 40.8721843, "lon": -73.9527482 }, + { "lat": 40.8725313, "lon": -73.9524549 }, + { "lat": 40.8729418, "lon": -73.9521436 }, + { "lat": 40.8730380, "lon": -73.9520730 }, + { "lat": 40.8732348, "lon": -73.9519410 }, + { "lat": 40.8733141, "lon": -73.9518930 }, + { "lat": 40.8735180, "lon": -73.9517670 }, + { "lat": 40.8736826, "lon": -73.9516773 }, + { "lat": 40.8738430, "lon": -73.9515950 }, + { "lat": 40.8742010, "lon": -73.9514260 }, + { "lat": 40.8745630, "lon": -73.9512730 }, + { "lat": 40.8749290, "lon": -73.9511370 }, + { "lat": 40.8751750, "lon": -73.9510550 }, + { "lat": 40.8758627, "lon": -73.9508854 }, + { "lat": 40.8762173, "lon": -73.9507980 }, + { "lat": 40.8770263, "lon": -73.9505981 }, + { "lat": 40.8777834, "lon": -73.9503907 }, + { "lat": 40.8783519, "lon": -73.9501800 }, + { "lat": 40.8787909, "lon": -73.9500021 }, + { "lat": 40.8789869, "lon": -73.9498952 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 1364674852, + "bounds": { + "minlat": 40.8615456, + "minlon": -73.9588101, + "maxlat": 40.8616118, + "maxlon": -73.9587380 + }, + "nodes": [ + 530475801, + 530475843 + ], + "geometry": [ + { "lat": 40.8615456, "lon": -73.9588101 }, + { "lat": 40.8616118, "lon": -73.9587380 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Hudson Terrace", + "old_ref": "CR 25", + "rcn_ref": "9", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 1364685938, + "bounds": { + "minlat": 40.7143462, + "minlon": -73.9303780, + "maxlat": 40.7143917, + "maxlon": -73.9299727 + }, + "nodes": [ + 8842579367, + 8842579365 + ], + "geometry": [ + { "lat": 40.7143917, "lon": -73.9303780 }, + { "lat": 40.7143462, "lon": -73.9299727 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "yes", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1364696039, + "bounds": { + "minlat": 40.8499179, + "minlon": -73.9296368, + "maxlat": 40.8511930, + "maxlon": -73.9286543 + }, + "nodes": [ + 42442745, + 12077223055, + 12077223054, + 11595082007, + 42442750, + 11595081998, + 6363741216, + 9421763708, + 42442755 + ], + "geometry": [ + { "lat": 40.8499179, "lon": -73.9296368 }, + { "lat": 40.8499484, "lon": -73.9296200 }, + { "lat": 40.8499817, "lon": -73.9295996 }, + { "lat": 40.8504493, "lon": -73.9292533 }, + { "lat": 40.8505259, "lon": -73.9291984 }, + { "lat": 40.8505730, "lon": -73.9291633 }, + { "lat": 40.8509320, "lon": -73.9288956 }, + { "lat": 40.8511319, "lon": -73.9287103 }, + { "lat": 40.8511930, "lon": -73.9286543 } + ], + "tags": { + "bus": "yes", + "cycleway": "shared_lane", + "highway": "secondary", + "lanes": "2", + "motor_vehicle:conditional": "delivery @ 08:00-23:00", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1364759581, + "bounds": { + "minlat": 40.8636200, + "minlon": -73.9637558, + "maxlat": 40.8636620, + "maxlon": -73.9636840 + }, + "nodes": [ + 5108200227, + 103253559 + ], + "geometry": [ + { "lat": 40.8636620, "lon": -73.9637558 }, + { "lat": 40.8636200, "lon": -73.9636840 } + ], + "tags": { + "highway": "residential", + "name": "Myrtle Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Myrtle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1364759582, + "bounds": { + "minlat": 40.8632678, + "minlon": -73.9639912, + "maxlat": 40.8636620, + "maxlon": -73.9637558 + }, + "nodes": [ + 11043153109, + 5108200229, + 5108200228, + 5108200227 + ], + "geometry": [ + { "lat": 40.8632678, "lon": -73.9639912 }, + { "lat": 40.8633925, "lon": -73.9639285 }, + { "lat": 40.8636165, "lon": -73.9637994 }, + { "lat": 40.8636620, "lon": -73.9637558 } + ], + "tags": { + "highway": "residential", + "name": "3rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "3rd", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1364759583, + "bounds": { + "minlat": 40.8623046, + "minlon": -73.9636840, + "maxlat": 40.8636200, + "maxlon": -73.9615260 + }, + "nodes": [ + 103253559, + 65902741, + 5108200231, + 7396469136, + 103189646, + 103189449, + 103253562 + ], + "geometry": [ + { "lat": 40.8636200, "lon": -73.9636840 }, + { "lat": 40.8632080, "lon": -73.9630092 }, + { "lat": 40.8630093, "lon": -73.9626837 }, + { "lat": 40.8629596, "lon": -73.9626024 }, + { "lat": 40.8627200, "lon": -73.9622100 }, + { "lat": 40.8626962, "lon": -73.9621708 }, + { "lat": 40.8623046, "lon": -73.9615260 } + ], + "tags": { + "highway": "residential", + "name": "Myrtle Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Myrtle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1364760187, + "bounds": { + "minlat": 40.8774207, + "minlon": -73.9826741, + "maxlat": 40.8774637, + "maxlon": -73.9826270 + }, + "nodes": [ + 10026909353, + 10274904126 + ], + "geometry": [ + { "lat": 40.8774637, "lon": -73.9826270 }, + { "lat": 40.8774207, "lon": -73.9826741 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1364760188, + "bounds": { + "minlat": 40.8769665, + "minlon": -73.9831573, + "maxlat": 40.8773496, + "maxlon": -73.9827492 + }, + "nodes": [ + 6608999456, + 5735550979, + 5735550963, + 9989889727, + 9989889722 + ], + "geometry": [ + { "lat": 40.8773496, "lon": -73.9827492 }, + { "lat": 40.8773023, "lon": -73.9827989 }, + { "lat": 40.8771103, "lon": -73.9830053 }, + { "lat": 40.8770891, "lon": -73.9830277 }, + { "lat": 40.8769665, "lon": -73.9831573 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1364760189, + "bounds": { + "minlat": 40.8773496, + "minlon": -73.9827492, + "maxlat": 40.8774207, + "maxlon": -73.9826741 + }, + "nodes": [ + 10274904126, + 6608999456 + ], + "geometry": [ + { "lat": 40.8774207, "lon": -73.9826741 }, + { "lat": 40.8773496, "lon": -73.9827492 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000093", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "ref": "NJ 93;CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1364760190, + "bounds": { + "minlat": 40.8772909, + "minlon": -73.9825643, + "maxlat": 40.8775099, + "maxlon": -73.9822575 + }, + "nodes": [ + 10274904131, + 10274904127, + 10274904128, + 10274904133, + 10274904129, + 10274904130, + 10274904124 + ], + "geometry": [ + { "lat": 40.8773614, "lon": -73.9825643 }, + { "lat": 40.8773311, "lon": -73.9825087 }, + { "lat": 40.8772909, "lon": -73.9823945 }, + { "lat": 40.8773666, "lon": -73.9823091 }, + { "lat": 40.8773821, "lon": -73.9822915 }, + { "lat": 40.8774554, "lon": -73.9822575 }, + { "lat": 40.8775099, "lon": -73.9823083 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1364760191, + "bounds": { + "minlat": 40.8774561, + "minlon": -73.9824616, + "maxlat": 40.8775437, + "maxlon": -73.9823667 + }, + "nodes": [ + 10274904136, + 10274904132 + ], + "geometry": [ + { "lat": 40.8774561, "lon": -73.9824616 }, + { "lat": 40.8775437, "lon": -73.9823667 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1364922937, + "bounds": { + "minlat": 40.7653822, + "minlon": -73.9465895, + "maxlat": 40.7668703, + "maxlon": -73.9448076 + }, + "nodes": [ + 9913669047, + 9913669051, + 3580758424, + 42448852, + 9423459017, + 9913669052, + 7605140220, + 3580758426, + 9913669053, + 9913669054, + 9913669055, + 9913669056, + 9913669057, + 42434366, + 9913669058, + 9913669059, + 8265114807, + 1241986580 + ], + "geometry": [ + { "lat": 40.7653822, "lon": -73.9465895 }, + { "lat": 40.7658401, "lon": -73.9461743 }, + { "lat": 40.7658743, "lon": -73.9461432 }, + { "lat": 40.7659174, "lon": -73.9461073 }, + { "lat": 40.7659619, "lon": -73.9460697 }, + { "lat": 40.7659752, "lon": -73.9460597 }, + { "lat": 40.7660873, "lon": -73.9459606 }, + { "lat": 40.7666988, "lon": -73.9453994 }, + { "lat": 40.7667208, "lon": -73.9453761 }, + { "lat": 40.7667400, "lon": -73.9453512 }, + { "lat": 40.7667587, "lon": -73.9453230 }, + { "lat": 40.7667759, "lon": -73.9452896 }, + { "lat": 40.7667904, "lon": -73.9452567 }, + { "lat": 40.7668039, "lon": -73.9452167 }, + { "lat": 40.7668161, "lon": -73.9451727 }, + { "lat": 40.7668269, "lon": -73.9451255 }, + { "lat": 40.7668391, "lon": -73.9450582 }, + { "lat": 40.7668703, "lon": -73.9448076 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1364932825, + "bounds": { + "minlat": 40.8221279, + "minlon": -73.9961901, + "maxlat": 40.8244894, + "maxlon": -73.9919952 + }, + "nodes": [ + 5703669062, + 440208181, + 7934518442, + 440208182, + 688321194, + 440208179, + 688321141, + 440208180, + 688321086, + 440208190, + 688321030, + 440208191, + 7564371957, + 7564371965 + ], + "geometry": [ + { "lat": 40.8221279, "lon": -73.9919952 }, + { "lat": 40.8224320, "lon": -73.9925426 }, + { "lat": 40.8224727, "lon": -73.9926152 }, + { "lat": 40.8228364, "lon": -73.9932632 }, + { "lat": 40.8229336, "lon": -73.9934494 }, + { "lat": 40.8232476, "lon": -73.9939875 }, + { "lat": 40.8233500, "lon": -73.9941652 }, + { "lat": 40.8236520, "lon": -73.9947169 }, + { "lat": 40.8237493, "lon": -73.9949008 }, + { "lat": 40.8240592, "lon": -73.9954476 }, + { "lat": 40.8241608, "lon": -73.9956223 }, + { "lat": 40.8243126, "lon": -73.9958943 }, + { "lat": 40.8244398, "lon": -73.9961032 }, + { "lat": 40.8244894, "lon": -73.9961901 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "name": "Edgewater Road", + "ref": "CR 50", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd;Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022;07657", + "tiger:zip_right": "07010;07657" + } +}, +{ + "type": "way", + "id": 1364932826, + "bounds": { + "minlat": 40.8220267, + "minlon": -73.9919952, + "maxlat": 40.8221279, + "maxlon": -73.9918061 + }, + "nodes": [ + 440208184, + 5703669062 + ], + "geometry": [ + { "lat": 40.8220267, "lon": -73.9918061 }, + { "lat": 40.8221279, "lon": -73.9919952 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "name": "Edgewater Road", + "ref": "CR 50", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd;Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022;07657", + "tiger:zip_right": "07010;07657" + } +}, +{ + "type": "way", + "id": 1364932827, + "bounds": { + "minlat": 40.8219180, + "minlon": -73.9919544, + "maxlat": 40.8220267, + "maxlon": -73.9918061 + }, + "nodes": [ + 5703669077, + 5703669067, + 440208184 + ], + "geometry": [ + { "lat": 40.8219180, "lon": -73.9919544 }, + { "lat": 40.8219515, "lon": -73.9919099 }, + { "lat": 40.8220267, "lon": -73.9918061 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1364932828, + "bounds": { + "minlat": 40.8217370, + "minlon": -73.9918880, + "maxlat": 40.8218273, + "maxlon": -73.9917229 + }, + "nodes": [ + 5703669072, + 5703669079 + ], + "geometry": [ + { "lat": 40.8218273, "lon": -73.9918880 }, + { "lat": 40.8217370, "lon": -73.9917229 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1364932829, + "bounds": { + "minlat": 40.8211097, + "minlon": -73.9917229, + "maxlat": 40.8217370, + "maxlon": -73.9911879 + }, + "nodes": [ + 5703669079, + 5703669081, + 5703669082, + 5703669073, + 5703669074, + 5703669075, + 5703669076 + ], + "geometry": [ + { "lat": 40.8217370, "lon": -73.9917229 }, + { "lat": 40.8216362, "lon": -73.9915387 }, + { "lat": 40.8215414, "lon": -73.9913654 }, + { "lat": 40.8214442, "lon": -73.9911879 }, + { "lat": 40.8211097, "lon": -73.9914725 }, + { "lat": 40.8212089, "lon": -73.9916639 }, + { "lat": 40.8211464, "lon": -73.9917202 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1364932830, + "bounds": { + "minlat": 40.8218438, + "minlon": -73.9920755, + "maxlat": 40.8219180, + "maxlon": -73.9919544 + }, + "nodes": [ + 5703669065, + 5703669066, + 5703669077 + ], + "geometry": [ + { "lat": 40.8218438, "lon": -73.9920755 }, + { "lat": 40.8218705, "lon": -73.9920377 }, + { "lat": 40.8219180, "lon": -73.9919544 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1364932831, + "bounds": { + "minlat": 40.8218438, + "minlon": -73.9920755, + "maxlat": 40.8219722, + "maxlon": -73.9920185 + }, + "nodes": [ + 5703669070, + 5703669064, + 5703669065 + ], + "geometry": [ + { "lat": 40.8219722, "lon": -73.9920185 }, + { "lat": 40.8218833, "lon": -73.9920591 }, + { "lat": 40.8218438, "lon": -73.9920755 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1364932832, + "bounds": { + "minlat": 40.8217405, + "minlon": -73.9924183, + "maxlat": 40.8220122, + "maxlon": -73.9921781 + }, + "nodes": [ + 5703669069, + 5703669058 + ], + "geometry": [ + { "lat": 40.8220122, "lon": -73.9921781 }, + { "lat": 40.8217405, "lon": -73.9924183 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1364932833, + "bounds": { + "minlat": 40.8220973, + "minlon": -73.9925337, + "maxlat": 40.8222070, + "maxlon": -73.9923333 + }, + "nodes": [ + 5703669060, + 5703669061 + ], + "geometry": [ + { "lat": 40.8220973, "lon": -73.9923333 }, + { "lat": 40.8222070, "lon": -73.9925337 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1365307032, + "bounds": { + "minlat": 40.8434804, + "minlon": -74.0010583, + "maxlat": 40.8438474, + "maxlon": -74.0007979 + }, + "nodes": [ + 103224098, + 5970474117 + ], + "geometry": [ + { "lat": 40.8434804, "lon": -74.0010583 }, + { "lat": 40.8438474, "lon": -74.0007979 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1365307033, + "bounds": { + "minlat": 40.8439966, + "minlon": -74.0006935, + "maxlat": 40.8440876, + "maxlon": -74.0006299 + }, + "nodes": [ + 10285522881, + 103149650 + ], + "geometry": [ + { "lat": 40.8439966, "lon": -74.0006935 }, + { "lat": 40.8440876, "lon": -74.0006299 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1365307034, + "bounds": { + "minlat": 40.8438474, + "minlon": -74.0007979, + "maxlat": 40.8439966, + "maxlon": -74.0006935 + }, + "nodes": [ + 5970474117, + 10285522881 + ], + "geometry": [ + { "lat": 40.8438474, "lon": -74.0007979 }, + { "lat": 40.8439966, "lon": -74.0006935 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1365499783, + "bounds": { + "minlat": 40.8466480, + "minlon": -73.9980210, + "maxlat": 40.8476874, + "maxlon": -73.9969567 + }, + "nodes": [ + 103256366, + 5898172078, + 5970474149, + 5898166739, + 5898166746, + 5898166744 + ], + "geometry": [ + { "lat": 40.8466480, "lon": -73.9980210 }, + { "lat": 40.8472097, "lon": -73.9974472 }, + { "lat": 40.8472794, "lon": -73.9973755 }, + { "lat": 40.8473184, "lon": -73.9973355 }, + { "lat": 40.8475213, "lon": -73.9971268 }, + { "lat": 40.8476874, "lon": -73.9969567 } + ], + "tags": { + "highway": "residential", + "name": "1st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1365499784, + "bounds": { + "minlat": 40.8479526, + "minlon": -73.9976200, + "maxlat": 40.8482830, + "maxlon": -73.9970556 + }, + "nodes": [ + 103119429, + 5898171333, + 5898166742 + ], + "geometry": [ + { "lat": 40.8482830, "lon": -73.9976200 }, + { "lat": 40.8480114, "lon": -73.9971560 }, + { "lat": 40.8479526, "lon": -73.9970556 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "name": "East Central Boulevard", + "old_ref": "CR 54", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1365499786, + "bounds": { + "minlat": 40.8478272, + "minlon": -73.9969740, + "maxlat": 40.8479048, + "maxlon": -73.9968258 + }, + "nodes": [ + 5898171336, + 103256369 + ], + "geometry": [ + { "lat": 40.8479048, "lon": -73.9969740 }, + { "lat": 40.8478272, "lon": -73.9968258 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "name": "East Central Boulevard", + "old_ref": "CR 54", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1365499787, + "bounds": { + "minlat": 40.8479048, + "minlon": -73.9970556, + "maxlat": 40.8479526, + "maxlon": -73.9969740 + }, + "nodes": [ + 5898166742, + 5898171336 + ], + "geometry": [ + { "lat": 40.8479526, "lon": -73.9970556 }, + { "lat": 40.8479048, "lon": -73.9969740 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "name": "East Central Boulevard", + "old_ref": "CR 54", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1365499788, + "bounds": { + "minlat": 40.8476874, + "minlon": -73.9971799, + "maxlat": 40.8478169, + "maxlon": -73.9969567 + }, + "nodes": [ + 5898166743, + 5898166744 + ], + "geometry": [ + { "lat": 40.8478169, "lon": -73.9971799 }, + { "lat": 40.8476874, "lon": -73.9969567 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1365499789, + "bounds": { + "minlat": 40.8476874, + "minlon": -73.9969567, + "maxlat": 40.8478272, + "maxlon": -73.9968258 + }, + "nodes": [ + 5898166744, + 103256369 + ], + "geometry": [ + { "lat": 40.8476874, "lon": -73.9969567 }, + { "lat": 40.8478272, "lon": -73.9968258 } + ], + "tags": { + "highway": "residential", + "name": "1st Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "1st", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1365636587, + "bounds": { + "minlat": 40.8713430, + "minlon": -73.9550130, + "maxlat": 40.8713793, + "maxlon": -73.9549745 + }, + "nodes": [ + 7656323493, + 5724370209 + ], + "geometry": [ + { "lat": 40.8713430, "lon": -73.9550130 }, + { "lat": 40.8713793, "lon": -73.9549745 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "4", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 1365636588, + "bounds": { + "minlat": 40.8713793, + "minlon": -73.9549745, + "maxlat": 40.8725690, + "maxlon": -73.9537954 + }, + "nodes": [ + 5724370209, + 7071523218, + 7071523207, + 6676163367, + 7930268870, + 103215718, + 7930268879, + 7930295788, + 103215719, + 7930268868, + 103215721, + 6676163364 + ], + "geometry": [ + { "lat": 40.8713793, "lon": -73.9549745 }, + { "lat": 40.8714514, "lon": -73.9548986 }, + { "lat": 40.8717809, "lon": -73.9545529 }, + { "lat": 40.8718901, "lon": -73.9544383 }, + { "lat": 40.8719317, "lon": -73.9543946 }, + { "lat": 40.8720155, "lon": -73.9543055 }, + { "lat": 40.8721004, "lon": -73.9542182 }, + { "lat": 40.8721890, "lon": -73.9541315 }, + { "lat": 40.8722774, "lon": -73.9540467 }, + { "lat": 40.8723686, "lon": -73.9539639 }, + { "lat": 40.8724610, "lon": -73.9538839 }, + { "lat": 40.8725690, "lon": -73.9537954 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "primary", + "lanes": "4", + "name": "Sylvan Avenue", + "ref": "US 9W", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Sylvan", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:zip_left": "07632" + } +}, +{ + "type": "way", + "id": 1365845798, + "bounds": { + "minlat": 40.8513440, + "minlon": -73.9954284, + "maxlat": 40.8514847, + "maxlon": -73.9953282 + }, + "nodes": [ + 10801057724, + 5970474325 + ], + "geometry": [ + { "lat": 40.8513440, "lon": -73.9954284 }, + { "lat": 40.8514847, "lon": -73.9953282 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1365847165, + "bounds": { + "minlat": 40.7561714, + "minlon": -73.9921339, + "maxlat": 40.7567070, + "maxlon": -73.9907236 + }, + "nodes": [ + 9509518364, + 10686429942, + 10686429943, + 9535571870, + 9201440711 + ], + "geometry": [ + { "lat": 40.7567070, "lon": -73.9921339 }, + { "lat": 40.7563550, "lon": -73.9913101 }, + { "lat": 40.7561714, "lon": -73.9908842 }, + { "lat": 40.7562823, "lon": -73.9908060 }, + { "lat": 40.7563991, "lon": -73.9907236 } + ], + "tags": { + "highway": "service", + "layer": "4", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1365934739, + "bounds": { + "minlat": 40.7439767, + "minlon": -74.0083937, + "maxlat": 40.7446911, + "maxlon": -74.0082636 + }, + "nodes": [ + 246580982, + 12161232313, + 8288270025, + 42439295 + ], + "geometry": [ + { "lat": 40.7439767, "lon": -74.0083937 }, + { "lat": 40.7445268, "lon": -74.0082935 }, + { "lat": 40.7445922, "lon": -74.0082819 }, + { "lat": 40.7446911, "lon": -74.0082636 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1365952247, + "bounds": { + "minlat": 40.8517170, + "minlon": -73.9796150, + "maxlat": 40.8518620, + "maxlon": -73.9793620 + }, + "nodes": [ + 103258751, + 103157078 + ], + "geometry": [ + { "lat": 40.8517170, "lon": -73.9793620 }, + { "lat": 40.8518620, "lon": -73.9796150 } + ], + "tags": { + "highway": "residential", + "name": "North Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "North", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024" + } +}, +{ + "type": "way", + "id": 1366466560, + "bounds": { + "minlat": 40.7946124, + "minlon": -73.9971493, + "maxlat": 40.7947564, + "maxlon": -73.9971073 + }, + "nodes": [ + 3633386746, + 6765879171 + ], + "geometry": [ + { "lat": 40.7946124, "lon": -73.9971493 }, + { "lat": 40.7947564, "lon": -73.9971073 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1366466561, + "bounds": { + "minlat": 40.7945129, + "minlon": -73.9968871, + "maxlat": 40.7945734, + "maxlon": -73.9964510 + }, + "nodes": [ + 5482013316, + 5482013546 + ], + "geometry": [ + { "lat": 40.7945734, "lon": -73.9968871 }, + { "lat": 40.7945129, "lon": -73.9964510 } + ], + "tags": { + "access": "no", + "emergency": "designated", + "highway": "residential", + "name": "River Road" + } +}, +{ + "type": "way", + "id": 1366466562, + "bounds": { + "minlat": 40.7947564, + "minlon": -73.9971073, + "maxlat": 40.7950208, + "maxlon": -73.9970303 + }, + "nodes": [ + 6765879171, + 10020765327 + ], + "geometry": [ + { "lat": 40.7947564, "lon": -73.9971073 }, + { "lat": 40.7950208, "lon": -73.9970303 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1366625489, + "bounds": { + "minlat": 40.8636620, + "minlon": -73.9657270, + "maxlat": 40.8648150, + "maxlon": -73.9637558 + }, + "nodes": [ + 103247212, + 7367594986, + 7367594951, + 103236641, + 7373014208, + 5108196239, + 7324295381, + 5108200227 + ], + "geometry": [ + { "lat": 40.8648150, "lon": -73.9657270 }, + { "lat": 40.8645944, "lon": -73.9653502 }, + { "lat": 40.8645259, "lon": -73.9652333 }, + { "lat": 40.8643940, "lon": -73.9650080 }, + { "lat": 40.8640859, "lon": -73.9644916 }, + { "lat": 40.8639448, "lon": -73.9642397 }, + { "lat": 40.8639159, "lon": -73.9641903 }, + { "lat": 40.8636620, "lon": -73.9637558 } + ], + "tags": { + "highway": "residential", + "name": "Myrtle Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Myrtle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1366625490, + "bounds": { + "minlat": 40.8648150, + "minlon": -73.9659200, + "maxlat": 40.8649280, + "maxlon": -73.9657270 + }, + "nodes": [ + 103253557, + 103247212 + ], + "geometry": [ + { "lat": 40.8649280, "lon": -73.9659200 }, + { "lat": 40.8648150, "lon": -73.9657270 } + ], + "tags": { + "highway": "residential", + "name": "Myrtle Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Myrtle", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1366639214, + "bounds": { + "minlat": 40.8653080, + "minlon": -73.9853740, + "maxlat": 40.8655998, + "maxlon": -73.9851660 + }, + "nodes": [ + 103224121, + 10238136410 + ], + "geometry": [ + { "lat": 40.8653080, "lon": -73.9853740 }, + { "lat": 40.8655998, "lon": -73.9851660 } + ], + "tags": { + "highway": "tertiary", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1366639215, + "bounds": { + "minlat": 40.8657528, + "minlon": -73.9850563, + "maxlat": 40.8662300, + "maxlon": -73.9847210 + }, + "nodes": [ + 6191069204, + 6137185197, + 8073299999, + 103224122 + ], + "geometry": [ + { "lat": 40.8657528, "lon": -73.9850563 }, + { "lat": 40.8658362, "lon": -73.9849999 }, + { "lat": 40.8661925, "lon": -73.9847476 }, + { "lat": 40.8662300, "lon": -73.9847210 } + ], + "tags": { + "highway": "tertiary", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1366639216, + "bounds": { + "minlat": 40.8654890, + "minlon": -73.9850563, + "maxlat": 40.8657528, + "maxlon": -73.9847526 + }, + "nodes": [ + 10238136409, + 10238058308, + 10238058307, + 10238058306, + 6191069204 + ], + "geometry": [ + { "lat": 40.8655337, "lon": -73.9849672 }, + { "lat": 40.8654890, "lon": -73.9848498 }, + { "lat": 40.8656442, "lon": -73.9847526 }, + { "lat": 40.8656812, "lon": -73.9848606 }, + { "lat": 40.8657528, "lon": -73.9850563 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1366737631, + "bounds": { + "minlat": 40.8614740, + "minlon": -74.0166860, + "maxlat": 40.8643737, + "maxlon": -74.0158436 + }, + "nodes": [ + 103156008, + 103214375, + 103214376, + 103175863, + 103214378 + ], + "geometry": [ + { "lat": 40.8614740, "lon": -74.0166860 }, + { "lat": 40.8620520, "lon": -74.0165060 }, + { "lat": 40.8627210, "lon": -74.0162980 }, + { "lat": 40.8636115, "lon": -74.0160572 }, + { "lat": 40.8643737, "lon": -74.0158436 } + ], + "tags": { + "Bergen_County_database_ref": "17;39 [sic]", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "02000039", + "highway": "primary", + "name": "Teaneck Road", + "ref": "CR 39", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Teaneck", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660" + } +}, +{ + "type": "way", + "id": 1366751767, + "bounds": { + "minlat": 40.8662300, + "minlon": -73.9847210, + "maxlat": 40.8664342, + "maxlon": -73.9845759 + }, + "nodes": [ + 103224122, + 8073299997, + 103224123 + ], + "geometry": [ + { "lat": 40.8662300, "lon": -73.9847210 }, + { "lat": 40.8664028, "lon": -73.9845983 }, + { "lat": 40.8664342, "lon": -73.9845759 } + ], + "tags": { + "highway": "tertiary", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1367402676, + "bounds": { + "minlat": 40.8590989, + "minlon": -73.9342479, + "maxlat": 40.8593130, + "maxlon": -73.9342337 + }, + "nodes": [ + 9338511504, + 12663408803, + 9338511506, + 9338511505 + ], + "geometry": [ + { "lat": 40.8593130, "lon": -73.9342479 }, + { "lat": 40.8592458, "lon": -73.9342395 }, + { "lat": 40.8592036, "lon": -73.9342337 }, + { "lat": 40.8590989, "lon": -73.9342474 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 1367402677, + "bounds": { + "minlat": 40.8590989, + "minlon": -73.9342474, + "maxlat": 40.8591845, + "maxlon": -73.9341474 + }, + "nodes": [ + 9338511505, + 12663385200, + 12663385190 + ], + "geometry": [ + { "lat": 40.8590989, "lon": -73.9342474 }, + { "lat": 40.8591251, "lon": -73.9342160 }, + { "lat": 40.8591845, "lon": -73.9341474 } + ], + "tags": { + "cycleway:right": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 1367402678, + "bounds": { + "minlat": 40.8593400, + "minlon": -73.9339800, + "maxlat": 40.8594641, + "maxlon": -73.9337552 + }, + "nodes": [ + 5051482020, + 12663385197, + 12663385196, + 12663385195 + ], + "geometry": [ + { "lat": 40.8593400, "lon": -73.9339800 }, + { "lat": 40.8593933, "lon": -73.9338858 }, + { "lat": 40.8594299, "lon": -73.9338295 }, + { "lat": 40.8594641, "lon": -73.9337552 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1367402679, + "bounds": { + "minlat": 40.8594694, + "minlon": -73.9340537, + "maxlat": 40.8594992, + "maxlon": -73.9337754 + }, + "nodes": [ + 9338511508, + 9476358892, + 11596413361, + 1205714897 + ], + "geometry": [ + { "lat": 40.8594992, "lon": -73.9337754 }, + { "lat": 40.8594848, "lon": -73.9338515 }, + { "lat": 40.8594701, "lon": -73.9339700 }, + { "lat": 40.8594694, "lon": -73.9340537 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 1367402680, + "bounds": { + "minlat": 40.8594641, + "minlon": -73.9337552, + "maxlat": 40.8595240, + "maxlon": -73.9336738 + }, + "nodes": [ + 12663385195, + 12663385194 + ], + "geometry": [ + { "lat": 40.8594641, "lon": -73.9337552 }, + { "lat": 40.8595240, "lon": -73.9336738 } + ], + "tags": { + "cycleway:right": "lane", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1367402681, + "bounds": { + "minlat": 40.8591845, + "minlon": -73.9341474, + "maxlat": 40.8592685, + "maxlon": -73.9340649 + }, + "nodes": [ + 12663385190, + 12663408802, + 12663408801, + 1205714863 + ], + "geometry": [ + { "lat": 40.8591845, "lon": -73.9341474 }, + { "lat": 40.8591979, "lon": -73.9341327 }, + { "lat": 40.8592146, "lon": -73.9341167 }, + { "lat": 40.8592685, "lon": -73.9340649 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 1367402682, + "bounds": { + "minlat": 40.8594992, + "minlon": -73.9337754, + "maxlat": 40.8595240, + "maxlon": -73.9336738 + }, + "nodes": [ + 12663385194, + 9338511509, + 9338511508 + ], + "geometry": [ + { "lat": 40.8595240, "lon": -73.9336738 }, + { "lat": 40.8595133, "lon": -73.9337101 }, + { "lat": 40.8594992, "lon": -73.9337754 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "goods": "no", + "hgv": "no", + "highway": "unclassified", + "lanes": "1", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Margaret Corbin Drive", + "name:etymology:wikidata": "Q1396241", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Margaret Corbin", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 1368155262, + "bounds": { + "minlat": 40.8754507, + "minlon": -73.9749666, + "maxlat": 40.8755983, + "maxlon": -73.9747301 + }, + "nodes": [ + 298940363, + 10942741361, + 10942741366 + ], + "geometry": [ + { "lat": 40.8754507, "lon": -73.9747301 }, + { "lat": 40.8755297, "lon": -73.9748540 }, + { "lat": 40.8755983, "lon": -73.9749666 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "change:lanes": "yes|yes|yes", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lane_markings": "yes", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "left_of:2", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no", + "turn:lanes": "||merge_to_left" + } +}, +{ + "type": "way", + "id": 1368155263, + "bounds": { + "minlat": 40.8755983, + "minlon": -73.9769741, + "maxlat": 40.8767383, + "maxlon": -73.9749666 + }, + "nodes": [ + 10942741366, + 298940212, + 10942741362, + 10942741365, + 298940213, + 530806396 + ], + "geometry": [ + { "lat": 40.8755983, "lon": -73.9749666 }, + { "lat": 40.8756648, "lon": -73.9750802 }, + { "lat": 40.8757298, "lon": -73.9751934 }, + { "lat": 40.8757983, "lon": -73.9753134 }, + { "lat": 40.8762565, "lon": -73.9761230 }, + { "lat": 40.8767383, "lon": -73.9769741 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "2", + "maxheight": "14'4\"", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1368155264, + "bounds": { + "minlat": 40.8729494, + "minlon": -73.9727616, + "maxlat": 40.8733106, + "maxlon": -73.9726041 + }, + "nodes": [ + 298917926, + 10942822210, + 10942795497, + 298917927 + ], + "geometry": [ + { "lat": 40.8729494, "lon": -73.9726041 }, + { "lat": 40.8731035, "lon": -73.9726658 }, + { "lat": 40.8732121, "lon": -73.9727152 }, + { "lat": 40.8733106, "lon": -73.9727616 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "change:lanes": "yes|not_right|no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lane_markings": "yes", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "left_of:2", + "ref": "NJ 4", + "shoulder": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1368155268, + "bounds": { + "minlat": 40.8719899, + "minlon": -73.9725908, + "maxlat": 40.8725551, + "maxlon": -73.9724723 + }, + "nodes": [ + 12670669508, + 12670669507, + 12670669506, + 298918396 + ], + "geometry": [ + { "lat": 40.8725551, "lon": -73.9725908 }, + { "lat": 40.8722727, "lon": -73.9725204 }, + { "lat": 40.8721318, "lon": -73.9724922 }, + { "lat": 40.8719899, "lon": -73.9724723 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lane_markings": "yes", + "lanes": "4", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "middle_of:2", + "ref": "NJ 4", + "shoulder": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no", + "turn:lanes": "|||right" + } +}, +{ + "type": "way", + "id": 1368155269, + "bounds": { + "minlat": 40.8695714, + "minlon": -73.9728624, + "maxlat": 40.8719899, + "maxlon": -73.9724382 + }, + "nodes": [ + 298918396, + 10942904452, + 10942904465, + 298918131, + 298918133, + 10942904477, + 298918135, + 298918554, + 10942904466, + 10942904453, + 298918555, + 10942904458, + 298918556, + 10942904450, + 298918557, + 10942904454, + 298918558, + 10942904449, + 10942904462, + 298918415, + 298918559 + ], + "geometry": [ + { "lat": 40.8719899, "lon": -73.9724723 }, + { "lat": 40.8719507, "lon": -73.9724696 }, + { "lat": 40.8718416, "lon": -73.9724577 }, + { "lat": 40.8717322, "lon": -73.9724472 }, + { "lat": 40.8716220, "lon": -73.9724409 }, + { "lat": 40.8715103, "lon": -73.9724382 }, + { "lat": 40.8714029, "lon": -73.9724393 }, + { "lat": 40.8712907, "lon": -73.9724420 }, + { "lat": 40.8711832, "lon": -73.9724470 }, + { "lat": 40.8710720, "lon": -73.9724551 }, + { "lat": 40.8709647, "lon": -73.9724674 }, + { "lat": 40.8708571, "lon": -73.9724824 }, + { "lat": 40.8707451, "lon": -73.9725006 }, + { "lat": 40.8706356, "lon": -73.9725240 }, + { "lat": 40.8705292, "lon": -73.9725478 }, + { "lat": 40.8704190, "lon": -73.9725763 }, + { "lat": 40.8703121, "lon": -73.9726070 }, + { "lat": 40.8702057, "lon": -73.9726399 }, + { "lat": 40.8701009, "lon": -73.9726747 }, + { "lat": 40.8699927, "lon": -73.9727118 }, + { "lat": 40.8695714, "lon": -73.9728624 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1368160247, + "bounds": { + "minlat": 40.8654570, + "minlon": -73.9748843, + "maxlat": 40.8661413, + "maxlon": -73.9745176 + }, + "nodes": [ + 298768827, + 7924973875, + 298769721, + 7924979189, + 13751654287, + 298768829 + ], + "geometry": [ + { "lat": 40.8654570, "lon": -73.9745176 }, + { "lat": 40.8656163, "lon": -73.9745972 }, + { "lat": 40.8657382, "lon": -73.9746608 }, + { "lat": 40.8658594, "lon": -73.9747255 }, + { "lat": 40.8659840, "lon": -73.9747957 }, + { "lat": 40.8661413, "lon": -73.9748843 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1368160248, + "bounds": { + "minlat": 40.8661413, + "minlon": -73.9753735, + "maxlat": 40.8669533, + "maxlon": -73.9748843 + }, + "nodes": [ + 298768829, + 298777788, + 298771300, + 13754102639, + 7926202621, + 12670658590 + ], + "geometry": [ + { "lat": 40.8661413, "lon": -73.9748843 }, + { "lat": 40.8663720, "lon": -73.9750158 }, + { "lat": 40.8666177, "lon": -73.9751644 }, + { "lat": 40.8667926, "lon": -73.9752726 }, + { "lat": 40.8668716, "lon": -73.9753215 }, + { "lat": 40.8669533, "lon": -73.9753735 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lane_markings": "yes", + "lanes": "4", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "placement": "middle_of:2", + "ref": "I 95;NJTP", + "shoulder": "right", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "|||merge_to_left" + } +}, +{ + "type": "way", + "id": 1368367181, + "bounds": { + "minlat": 40.7700328, + "minlon": -73.9949438, + "maxlat": 40.7700919, + "maxlon": -73.9947846 + }, + "nodes": [ + 9140924713, + 247120348 + ], + "geometry": [ + { "lat": 40.7700328, "lon": -73.9947846 }, + { "lat": 40.7700919, "lon": -73.9949438 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "foot": "use_sidepath", + "highway": "unclassified", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 55th Street", + "name:ru": "Западная 55-я стрит", + "name_1": "West 55 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1368431456, + "bounds": { + "minlat": 40.7179475, + "minlon": -74.0055763, + "maxlat": 40.7182549, + "maxlon": -74.0052698 + }, + "nodes": [ + 4143851142, + 4143859869, + 4143859857, + 4143859862, + 4143859859, + 4143851145, + 8304498314, + 4143851144 + ], + "geometry": [ + { "lat": 40.7179475, "lon": -74.0055763 }, + { "lat": 40.7179699, "lon": -74.0055351 }, + { "lat": 40.7179986, "lon": -74.0054912 }, + { "lat": 40.7180308, "lon": -74.0054547 }, + { "lat": 40.7180669, "lon": -74.0054176 }, + { "lat": 40.7181077, "lon": -74.0053833 }, + { "lat": 40.7182142, "lon": -74.0053016 }, + { "lat": 40.7182549, "lon": -74.0052698 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Church Street", + "name:etymology:wikidata": "Q866896", + "name:ko": "처치 스트리트", + "name:ru": "Черч-стрит", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q12306358", + "wikipedia": "en:Church Street and Trinity Place" + } +}, +{ + "type": "way", + "id": 1368436314, + "bounds": { + "minlat": 40.7414523, + "minlon": -73.9854972, + "maxlat": 40.7415054, + "maxlon": -73.9853699 + }, + "nodes": [ + 42456555, + 4597668042 + ], + "geometry": [ + { "lat": 40.7414523, "lon": -73.9853699 }, + { "lat": 40.7415054, "lon": -73.9854972 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 25th Street", + "name:ru": "Восточная 25-я стрит", + "name_1": "East 25 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1369016228, + "bounds": { + "minlat": 40.7629651, + "minlon": -73.9685753, + "maxlat": 40.7631988, + "maxlon": -73.9683004 + }, + "nodes": [ + 12679690995, + 12679690996, + 12679690997, + 12679690998, + 12679690999, + 12679691000, + 12679744001, + 12679744002, + 12679744003, + 12679744004 + ], + "geometry": [ + { "lat": 40.7631988, "lon": -73.9685097 }, + { "lat": 40.7631267, "lon": -73.9685496 }, + { "lat": 40.7630708, "lon": -73.9685753 }, + { "lat": 40.7630283, "lon": -73.9685708 }, + { "lat": 40.7629869, "lon": -73.9685328 }, + { "lat": 40.7629651, "lon": -73.9684812 }, + { "lat": 40.7629685, "lon": -73.9684312 }, + { "lat": 40.7629892, "lon": -73.9683811 }, + { "lat": 40.7630412, "lon": -73.9683427 }, + { "lat": 40.7631128, "lon": -73.9683004 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1370125150, + "bounds": { + "minlat": 40.8273868, + "minlon": -73.9248693, + "maxlat": 40.8276692, + "maxlon": -73.9239907 + }, + "nodes": [ + 2408448898, + 12163704725, + 12163704706, + 2411418432, + 2408448909 + ], + "geometry": [ + { "lat": 40.8273868, "lon": -73.9239907 }, + { "lat": 40.8274149, "lon": -73.9240784 }, + { "lat": 40.8276181, "lon": -73.9247116 }, + { "lat": 40.8276373, "lon": -73.9247714 }, + { "lat": 40.8276692, "lon": -73.9248693 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "paved", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1370125151, + "bounds": { + "minlat": 40.8268831, + "minlon": -73.9241391, + "maxlat": 40.8271341, + "maxlon": -73.9232528 + }, + "nodes": [ + 2408448901, + 12163704718, + 12163704719, + 9166351232, + 9166351231, + 12163704720, + 9166351230, + 9155871820 + ], + "geometry": [ + { "lat": 40.8271341, "lon": -73.9241391 }, + { "lat": 40.8271233, "lon": -73.9240645 }, + { "lat": 40.8271083, "lon": -73.9239818 }, + { "lat": 40.8270903, "lon": -73.9239009 }, + { "lat": 40.8270668, "lon": -73.9238100 }, + { "lat": 40.8270411, "lon": -73.9237210 }, + { "lat": 40.8270146, "lon": -73.9236406 }, + { "lat": 40.8268831, "lon": -73.9232528 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1370125154, + "bounds": { + "minlat": 40.8269250, + "minlon": -73.9226586, + "maxlat": 40.8269746, + "maxlon": -73.9224902 + }, + "nodes": [ + 2408446154, + 2408446206 + ], + "geometry": [ + { "lat": 40.8269250, "lon": -73.9224902 }, + { "lat": 40.8269746, "lon": -73.9226586 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1370126547, + "bounds": { + "minlat": 40.8140490, + "minlon": -73.9348455, + "maxlat": 40.8142611, + "maxlon": -73.9346833 + }, + "nodes": [ + 373761421, + 9163819581, + 589927965 + ], + "geometry": [ + { "lat": 40.8142611, "lon": -73.9346833 }, + { "lat": 40.8141986, "lon": -73.9347271 }, + { "lat": 40.8140490, "lon": -73.9348455 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 1370127640, + "bounds": { + "minlat": 40.8610468, + "minlon": -73.9249627, + "maxlat": 40.8615058, + "maxlon": -73.9248490 + }, + "nodes": [ + 2093008357, + 6882396888, + 9561344667, + 1764405362, + 1763748996, + 6882378422 + ], + "geometry": [ + { "lat": 40.8615058, "lon": -73.9248490 }, + { "lat": 40.8614111, "lon": -73.9248711 }, + { "lat": 40.8613886, "lon": -73.9248760 }, + { "lat": 40.8613104, "lon": -73.9248946 }, + { "lat": 40.8611985, "lon": -73.9249184 }, + { "lat": 40.8610468, "lon": -73.9249627 } + ], + "tags": { + "highway": "secondary", + "name": "Fort George Hill", + "name:etymology:wikidata": "Q1438535", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort George Hill", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 1370439355, + "bounds": { + "minlat": 40.8460640, + "minlon": -73.9854649, + "maxlat": 40.8461257, + "maxlon": -73.9853675 + }, + "nodes": [ + 5965026283, + 12692250267, + 5965026284 + ], + "geometry": [ + { "lat": 40.8460640, "lon": -73.9853675 }, + { "lat": 40.8461027, "lon": -73.9854172 }, + { "lat": 40.8461257, "lon": -73.9854649 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1370439359, + "bounds": { + "minlat": 40.8527665, + "minlon": -73.9847965, + "maxlat": 40.8529802, + "maxlon": -73.9847668 + }, + "nodes": [ + 299172186, + 12692293520 + ], + "geometry": [ + { "lat": 40.8527665, "lon": -73.9847965 }, + { "lat": 40.8529802, "lon": -73.9847668 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "expressway": "yes", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "lane_markings": "yes", + "lanes": "3", + "maxspeed": "45 mph", + "name": "Bergen Boulevard", + "oneway": "yes", + "placement": "left_of:2", + "ref": "US 1;US 9;US 46", + "shoulder": "no", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "United States Highway 1", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:reviewed": "no", + "turn:lanes": "||merge_to_left" + } +}, +{ + "type": "way", + "id": 1370439360, + "bounds": { + "minlat": 40.8429769, + "minlon": -73.9873588, + "maxlat": 40.8433879, + "maxlon": -73.9871351 + }, + "nodes": [ + 4205620805, + 13137864354, + 12692293522 + ], + "geometry": [ + { "lat": 40.8429769, "lon": -73.9873588 }, + { "lat": 40.8432536, "lon": -73.9872082 }, + { "lat": 40.8433879, "lon": -73.9871351 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 1370456866, + "bounds": { + "minlat": 40.8407187, + "minlon": -73.9950813, + "maxlat": 40.8407461, + "maxlon": -73.9949707 + }, + "nodes": [ + 12692393431, + 103190916 + ], + "geometry": [ + { "lat": 40.8407461, "lon": -73.9950813 }, + { "lat": 40.8407187, "lon": -73.9949707 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000005", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "placement:forward": "left_of:1", + "ref": "NJ 5", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 5", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1370835883, + "bounds": { + "minlat": 40.7985684, + "minlon": -73.9436083, + "maxlat": 40.7992557, + "maxlon": -73.9431029 + }, + "nodes": [ + 42435392, + 7924346926, + 11296237246, + 42458342 + ], + "geometry": [ + { "lat": 40.7985684, "lon": -73.9436083 }, + { "lat": 40.7986393, "lon": -73.9435563 }, + { "lat": 40.7991509, "lon": -73.9431800 }, + { "lat": 40.7992557, "lon": -73.9431029 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1370835884, + "bounds": { + "minlat": 40.7986710, + "minlon": -73.9469712, + "maxlat": 40.7999664, + "maxlon": -73.9438788 + }, + "nodes": [ + 596776534, + 7924346885, + 8809259391, + 8807694447, + 42435388, + 8807694424, + 5481978561, + 5481978557, + 8807524567, + 42435387 + ], + "geometry": [ + { "lat": 40.7986710, "lon": -73.9438788 }, + { "lat": 40.7986991, "lon": -73.9439529 }, + { "lat": 40.7990883, "lon": -73.9448756 }, + { "lat": 40.7992466, "lon": -73.9452525 }, + { "lat": 40.7992916, "lon": -73.9453586 }, + { "lat": 40.7993405, "lon": -73.9454748 }, + { "lat": 40.7995398, "lon": -73.9459457 }, + { "lat": 40.7996542, "lon": -73.9462169 }, + { "lat": 40.7999159, "lon": -73.9468459 }, + { "lat": 40.7999664, "lon": -73.9469712 } + ], + "tags": { + "highway": "residential", + "name": "East 115th Street", + "name:ru": "Восточная 115-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1370835885, + "bounds": { + "minlat": 40.7968119, + "minlon": -73.9452335, + "maxlat": 40.7986710, + "maxlon": -73.9438788 + }, + "nodes": [ + 596776534, + 7924346968, + 596775852, + 5481978555, + 7523953839, + 596775856, + 7096518991, + 596776546 + ], + "geometry": [ + { "lat": 40.7986710, "lon": -73.9438788 }, + { "lat": 40.7986113, "lon": -73.9439232 }, + { "lat": 40.7980983, "lon": -73.9442916 }, + { "lat": 40.7979488, "lon": -73.9444003 }, + { "lat": 40.7975580, "lon": -73.9446868 }, + { "lat": 40.7973925, "lon": -73.9448065 }, + { "lat": 40.7968823, "lon": -73.9451813 }, + { "lat": 40.7968119, "lon": -73.9452335 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1372002568, + "bounds": { + "minlat": 40.7241763, + "minlon": -74.0093172, + "maxlat": 40.7246766, + "maxlon": -74.0086477 + }, + "nodes": [ + 4142105812, + 4892579966, + 4142105797, + 4207143424 + ], + "geometry": [ + { "lat": 40.7246766, "lon": -74.0093172 }, + { "lat": 40.7246213, "lon": -74.0092409 }, + { "lat": 40.7245729, "lon": -74.0091795 }, + { "lat": 40.7241763, "lon": -74.0086477 } + ], + "tags": { + "bicycle": "yes", + "change": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "noref": "yes", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1372100662, + "bounds": { + "minlat": 40.7194648, + "minlon": -74.0061502, + "maxlat": 40.7196981, + "maxlon": -74.0059645 + }, + "nodes": [ + 42445700, + 8312344414, + 42453773 + ], + "geometry": [ + { "lat": 40.7196981, "lon": -74.0059645 }, + { "lat": 40.7195132, "lon": -74.0061135 }, + { "lat": 40.7194648, "lon": -74.0061502 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 1372100663, + "bounds": { + "minlat": 40.7188700, + "minlon": -74.0066144, + "maxlat": 40.7194648, + "maxlon": -74.0061502 + }, + "nodes": [ + 42453773, + 8312344415, + 4616536355, + 8312361630, + 42453059 + ], + "geometry": [ + { "lat": 40.7194648, "lon": -74.0061502 }, + { "lat": 40.7194245, "lon": -74.0061822 }, + { "lat": 40.7190705, "lon": -74.0064581 }, + { "lat": 40.7189224, "lon": -74.0065754 }, + { "lat": 40.7188700, "lon": -74.0066144 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "West Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "웨스트 브로드웨이", + "name:ru": "Вест-Бродвей", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7984573", + "wikipedia": "en:West Broadway" + } +}, +{ + "type": "way", + "id": 1372100664, + "bounds": { + "minlat": 40.7173295, + "minlon": -74.0056628, + "maxlat": 40.7200757, + "maxlon": -73.9994477 + }, + "nodes": [ + 42434855, + 8304498248, + 4890614479, + 42430122, + 4890623898, + 8304498330, + 42447249, + 8304498327, + 8307641760, + 42428428, + 8307641757, + 42432635, + 12197904839, + 8307641747, + 42445484, + 12197904840, + 8307641748, + 12197904828, + 7641859732, + 12197904830, + 42427311, + 7641859736, + 12197904829, + 2770915448, + 7641718033, + 42447255 + ], + "geometry": [ + { "lat": 40.7200757, "lon": -74.0056628 }, + { "lat": 40.7200246, "lon": -74.0055509 }, + { "lat": 40.7199165, "lon": -74.0053180 }, + { "lat": 40.7198425, "lon": -74.0051699 }, + { "lat": 40.7197913, "lon": -74.0050619 }, + { "lat": 40.7195269, "lon": -74.0044847 }, + { "lat": 40.7194761, "lon": -74.0043754 }, + { "lat": 40.7194238, "lon": -74.0042567 }, + { "lat": 40.7186852, "lon": -74.0026294 }, + { "lat": 40.7186389, "lon": -74.0025285 }, + { "lat": 40.7186004, "lon": -74.0024447 }, + { "lat": 40.7183162, "lon": -74.0018252 }, + { "lat": 40.7180113, "lon": -74.0011486 }, + { "lat": 40.7179853, "lon": -74.0010910 }, + { "lat": 40.7179480, "lon": -74.0010080 }, + { "lat": 40.7179128, "lon": -74.0009298 }, + { "lat": 40.7178949, "lon": -74.0008901 }, + { "lat": 40.7176933, "lon": -74.0004341 }, + { "lat": 40.7176651, "lon": -74.0003696 }, + { "lat": 40.7176496, "lon": -74.0003322 }, + { "lat": 40.7176217, "lon": -74.0002647 }, + { "lat": 40.7175904, "lon": -74.0001886 }, + { "lat": 40.7175726, "lon": -74.0001429 }, + { "lat": 40.7173728, "lon": -73.9995817 }, + { "lat": 40.7173535, "lon": -73.9995217 }, + { "lat": 40.7173295, "lon": -73.9994477 } + ], + "tags": { + "hgv": "designated", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Walker Street", + "name:etymology:wikidata": "Q1446684", + "name:ko": "워커 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1372256919, + "bounds": { + "minlat": 40.8178686, + "minlon": -74.0082236, + "maxlat": 40.8184154, + "maxlon": -74.0079454 + }, + "nodes": [ + 12706461744, + 12706461745, + 12706461747, + 12706461746 + ], + "geometry": [ + { "lat": 40.8184154, "lon": -74.0080144 }, + { "lat": 40.8179336, "lon": -74.0082236 }, + { "lat": 40.8178981, "lon": -74.0080948 }, + { "lat": 40.8178686, "lon": -74.0079454 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1372256920, + "bounds": { + "minlat": 40.8175432, + "minlon": -74.0082217, + "maxlat": 40.8178981, + "maxlon": -74.0080948 + }, + "nodes": [ + 12706461747, + 12706461748 + ], + "geometry": [ + { "lat": 40.8178981, "lon": -74.0080948 }, + { "lat": 40.8175432, "lon": -74.0082217 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1372356620, + "bounds": { + "minlat": 40.8646975, + "minlon": -73.9858079, + "maxlat": 40.8653080, + "maxlon": -73.9853740 + }, + "nodes": [ + 6126763062, + 10233515862, + 103224121 + ], + "geometry": [ + { "lat": 40.8646975, "lon": -73.9858079 }, + { "lat": 40.8648918, "lon": -73.9856698 }, + { "lat": 40.8653080, "lon": -73.9853740 } + ], + "tags": { + "highway": "tertiary", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1372521894, + "bounds": { + "minlat": 40.8003597, + "minlon": -73.9141778, + "maxlat": 40.8004078, + "maxlon": -73.9141428 + }, + "nodes": [ + 9908642211, + 42750271 + ], + "geometry": [ + { "lat": 40.8004078, "lon": -73.9141428 }, + { "lat": 40.8003597, "lon": -73.9141778 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Willow Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Willow", + "tiger:name_type": "Ave", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1373310338, + "bounds": { + "minlat": 40.7913541, + "minlon": -73.9989910, + "maxlat": 40.7915335, + "maxlon": -73.9988835 + }, + "nodes": [ + 12715549670, + 12715549671 + ], + "geometry": [ + { "lat": 40.7913541, "lon": -73.9989910 }, + { "lat": 40.7915335, "lon": -73.9988835 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1373310339, + "bounds": { + "minlat": 40.7912938, + "minlon": -73.9988052, + "maxlat": 40.7914698, + "maxlon": -73.9986995 + }, + "nodes": [ + 10013380689, + 103861698, + 10013380682 + ], + "geometry": [ + { "lat": 40.7912938, "lon": -73.9988052 }, + { "lat": 40.7913495, "lon": -73.9987725 }, + { "lat": 40.7914698, "lon": -73.9986995 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "shared_lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1373310340, + "bounds": { + "minlat": 40.7912938, + "minlon": -73.9989910, + "maxlat": 40.7913541, + "maxlon": -73.9988052 + }, + "nodes": [ + 12715549670, + 10013380689 + ], + "geometry": [ + { "lat": 40.7913541, "lon": -73.9989910 }, + { "lat": 40.7912938, "lon": -73.9988052 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1373310341, + "bounds": { + "minlat": 40.7915335, + "minlon": -73.9989814, + "maxlat": 40.7915674, + "maxlon": -73.9988835 + }, + "nodes": [ + 12715549671, + 10013380683 + ], + "geometry": [ + { "lat": 40.7915335, "lon": -73.9988835 }, + { "lat": 40.7915674, "lon": -73.9989814 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1373310342, + "bounds": { + "minlat": 40.7914820, + "minlon": -73.9986921, + "maxlat": 40.7924860, + "maxlon": -73.9980977 + }, + "nodes": [ + 5482013287, + 103861699, + 6953649479, + 5482013246 + ], + "geometry": [ + { "lat": 40.7914820, "lon": -73.9986921 }, + { "lat": 40.7916501, "lon": -73.9985901 }, + { "lat": 40.7921940, "lon": -73.9982697 }, + { "lat": 40.7924860, "lon": -73.9980977 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "shared_lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1373310343, + "bounds": { + "minlat": 40.7914698, + "minlon": -73.9986995, + "maxlat": 40.7914820, + "maxlon": -73.9986921 + }, + "nodes": [ + 10013380682, + 5482013287 + ], + "geometry": [ + { "lat": 40.7914698, "lon": -73.9986995 }, + { "lat": 40.7914820, "lon": -73.9986921 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "shared_lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1373345662, + "bounds": { + "minlat": 40.8022639, + "minlon": -73.9168990, + "maxlat": 40.8023426, + "maxlon": -73.9168382 + }, + "nodes": [ + 42743555, + 9156976064 + ], + "geometry": [ + { "lat": 40.8023426, "lon": -73.9168382 }, + { "lat": 40.8022639, "lon": -73.9168990 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Cypress Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454" + } +}, +{ + "type": "way", + "id": 1373551588, + "bounds": { + "minlat": 40.8682570, + "minlon": -73.9832525, + "maxlat": 40.8692854, + "maxlon": -73.9825089 + }, + "nodes": [ + 6137185199, + 103135900, + 10234828652, + 10234828653, + 103224127 + ], + "geometry": [ + { "lat": 40.8682570, "lon": -73.9832525 }, + { "lat": 40.8686655, "lon": -73.9829418 }, + { "lat": 40.8687152, "lon": -73.9829126 }, + { "lat": 40.8692334, "lon": -73.9825465 }, + { "lat": 40.8692854, "lon": -73.9825089 } + ], + "tags": { + "highway": "tertiary", + "maxheight:signed": "no", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1374078174, + "bounds": { + "minlat": 40.8511302, + "minlon": -73.9955807, + "maxlat": 40.8513440, + "maxlon": -73.9954284 + }, + "nodes": [ + 10801057727, + 10801057724 + ], + "geometry": [ + { "lat": 40.8511302, "lon": -73.9955807 }, + { "lat": 40.8513440, "lon": -73.9954284 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1374082699, + "bounds": { + "minlat": 40.8679100, + "minlon": -73.9834969, + "maxlat": 40.8682570, + "maxlon": -73.9832525 + }, + "nodes": [ + 8073299988, + 6137202411, + 6137185199 + ], + "geometry": [ + { "lat": 40.8679100, "lon": -73.9834969 }, + { "lat": 40.8681365, "lon": -73.9833347 }, + { "lat": 40.8682570, "lon": -73.9832525 } + ], + "tags": { + "highway": "tertiary", + "maxheight:signed": "no", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1375564325, + "bounds": { + "minlat": 40.8005608, + "minlon": -73.9424116, + "maxlat": 40.8006686, + "maxlon": -73.9421598 + }, + "nodes": [ + 596776442, + 42439488 + ], + "geometry": [ + { "lat": 40.8006686, "lon": -73.9424116 }, + { "lat": 40.8005608, "lon": -73.9421598 } + ], + "tags": { + "highway": "residential", + "name": "East 118th Street", + "name:ru": "Восточная 118-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1375564326, + "bounds": { + "minlat": 40.8000383, + "minlon": -73.9428721, + "maxlat": 40.8006686, + "maxlon": -73.9424116 + }, + "nodes": [ + 596776442, + 10170646959, + 10173037242, + 596776474 + ], + "geometry": [ + { "lat": 40.8006686, "lon": -73.9424116 }, + { "lat": 40.8006160, "lon": -73.9424501 }, + { "lat": 40.8001013, "lon": -73.9428261 }, + { "lat": 40.8000383, "lon": -73.9428721 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1375564327, + "bounds": { + "minlat": 40.8005608, + "minlon": -73.9421598, + "maxlat": 40.8011841, + "maxlon": -73.9416979 + }, + "nodes": [ + 42439488, + 10170646954, + 10127369885, + 42435222 + ], + "geometry": [ + { "lat": 40.8005608, "lon": -73.9421598 }, + { "lat": 40.8006189, "lon": -73.9421168 }, + { "lat": 40.8011283, "lon": -73.9417393 }, + { "lat": 40.8011841, "lon": -73.9416979 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1375564328, + "bounds": { + "minlat": 40.7963627, + "minlon": -73.9421598, + "maxlat": 40.8005608, + "maxlon": -73.9322087 + }, + "nodes": [ + 42439488, + 10170646956, + 10122952991, + 42439489, + 10122952994, + 10122952993, + 10166326163, + 42439490, + 10166326159, + 10166326179, + 42439497, + 6175905193, + 10166326175, + 5482291285, + 5482291282, + 8797068773, + 6216349376, + 42439498, + 8797068768, + 6257070528, + 6257070524, + 42439506 + ], + "geometry": [ + { "lat": 40.8005608, "lon": -73.9421598 }, + { "lat": 40.8005323, "lon": -73.9420917 }, + { "lat": 40.7999791, "lon": -73.9407662 }, + { "lat": 40.7999397, "lon": -73.9406719 }, + { "lat": 40.7998978, "lon": -73.9405725 }, + { "lat": 40.7993201, "lon": -73.9392033 }, + { "lat": 40.7993151, "lon": -73.9391927 }, + { "lat": 40.7992528, "lon": -73.9390621 }, + { "lat": 40.7992026, "lon": -73.9389431 }, + { "lat": 40.7983643, "lon": -73.9369550 }, + { "lat": 40.7983076, "lon": -73.9368206 }, + { "lat": 40.7982773, "lon": -73.9367486 }, + { "lat": 40.7982564, "lon": -73.9366988 }, + { "lat": 40.7979907, "lon": -73.9360691 }, + { "lat": 40.7979140, "lon": -73.9358873 }, + { "lat": 40.7973689, "lon": -73.9345948 }, + { "lat": 40.7973550, "lon": -73.9345618 }, + { "lat": 40.7973103, "lon": -73.9344558 }, + { "lat": 40.7972561, "lon": -73.9343273 }, + { "lat": 40.7964447, "lon": -73.9324034 }, + { "lat": 40.7964134, "lon": -73.9323291 }, + { "lat": 40.7963627, "lon": -73.9322087 } + ], + "tags": { + "highway": "residential", + "name": "East 118th Street", + "name:ru": "Восточная 118-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1375564329, + "bounds": { + "minlat": 40.8006686, + "minlon": -73.9427901, + "maxlat": 40.8008250, + "maxlon": -73.9424116 + }, + "nodes": [ + 7620520352, + 10170646951, + 596776442 + ], + "geometry": [ + { "lat": 40.8008250, "lon": -73.9427901 }, + { "lat": 40.8007021, "lon": -73.9424927 }, + { "lat": 40.8006686, "lon": -73.9424116 } + ], + "tags": { + "highway": "residential", + "name": "East 118th Street", + "name:ru": "Восточная 118-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1375564330, + "bounds": { + "minlat": 40.8008250, + "minlon": -73.9427901, + "maxlat": 40.8009319, + "maxlon": -73.9427100 + }, + "nodes": [ + 5481978541, + 10170646963, + 7620520352 + ], + "geometry": [ + { "lat": 40.8009319, "lon": -73.9427100 }, + { "lat": 40.8008834, "lon": -73.9427465 }, + { "lat": 40.8008250, "lon": -73.9427901 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1375811276, + "bounds": { + "minlat": 40.7701688, + "minlon": -73.9872514, + "maxlat": 40.7702405, + "maxlon": -73.9871998 + }, + "nodes": [ + 8448399423, + 9914823862, + 7246154629 + ], + "geometry": [ + { "lat": 40.7701688, "lon": -73.9872514 }, + { "lat": 40.7701882, "lon": -73.9872371 }, + { "lat": 40.7702405, "lon": -73.9871998 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "lit": "yes", + "oneway": "yes", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1375880118, + "bounds": { + "minlat": 40.8281176, + "minlon": -73.9352023, + "maxlat": 40.8282929, + "maxlon": -73.9349998 + }, + "nodes": [ + 589927878, + 9153608665, + 373770110, + 9153608664, + 2140986516, + 9155906283 + ], + "geometry": [ + { "lat": 40.8282929, "lon": -73.9352023 }, + { "lat": 40.8282628, "lon": -73.9351291 }, + { "lat": 40.8282128, "lon": -73.9350641 }, + { "lat": 40.8281812, "lon": -73.9350346 }, + { "lat": 40.8281471, "lon": -73.9350114 }, + { "lat": 40.8281176, "lon": -73.9349998 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "destination", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "tiger:cfcc": "A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1375880120, + "bounds": { + "minlat": 40.8275839, + "minlon": -73.9353210, + "maxlat": 40.8279282, + "maxlon": -73.9350794 + }, + "nodes": [ + 373768744, + 9150629587, + 9150629585, + 9150629586, + 373768746, + 9150629584, + 589927943 + ], + "geometry": [ + { "lat": 40.8279282, "lon": -73.9350794 }, + { "lat": 40.8278745, "lon": -73.9351376 }, + { "lat": 40.8278203, "lon": -73.9351898 }, + { "lat": 40.8277626, "lon": -73.9352317 }, + { "lat": 40.8277014, "lon": -73.9352681 }, + { "lat": 40.8276404, "lon": -73.9352993 }, + { "lat": 40.8275839, "lon": -73.9353210 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:both": "no", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam C Powell", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "turn:lanes": "left|through", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1375883559, + "bounds": { + "minlat": 40.8272054, + "minlon": -73.9350091, + "maxlat": 40.8281176, + "maxlon": -73.9349141 + }, + "nodes": [ + 9155906283, + 42424529, + 371337236, + 9153608663, + 589927908, + 6407228005, + 9153608662, + 589927909, + 12739219136 + ], + "geometry": [ + { "lat": 40.8281176, "lon": -73.9349998 }, + { "lat": 40.8281043, "lon": -73.9349962 }, + { "lat": 40.8275273, "lon": -73.9349172 }, + { "lat": 40.8274763, "lon": -73.9349141 }, + { "lat": 40.8274245, "lon": -73.9349178 }, + { "lat": 40.8273809, "lon": -73.9349296 }, + { "lat": 40.8273143, "lon": -73.9349563 }, + { "lat": 40.8272539, "lon": -73.9349810 }, + { "lat": 40.8272054, "lon": -73.9350091 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "destination", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "sidewalk": "no", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "tiger:cfcc": "A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "7th", + "tiger:name_base_1": "Adam Clayton Powell Jr", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1376704196, + "bounds": { + "minlat": 40.7547324, + "minlon": -73.9759246, + "maxlat": 40.7559783, + "maxlon": -73.9749834 + }, + "nodes": [ + 596775882, + 10165922709, + 12834723265, + 10125233048, + 42457476, + 10125233054, + 11509692763, + 11509692768, + 9140654140, + 11509720069, + 11509692767, + 596775840 + ], + "geometry": [ + { "lat": 40.7559783, "lon": -73.9749834 }, + { "lat": 40.7559136, "lon": -73.9750305 }, + { "lat": 40.7554365, "lon": -73.9753771 }, + { "lat": 40.7553995, "lon": -73.9754040 }, + { "lat": 40.7553471, "lon": -73.9754421 }, + { "lat": 40.7552930, "lon": -73.9754804 }, + { "lat": 40.7548084, "lon": -73.9758365 }, + { "lat": 40.7547921, "lon": -73.9758500 }, + { "lat": 40.7547769, "lon": -73.9758637 }, + { "lat": 40.7547656, "lon": -73.9758778 }, + { "lat": 40.7547483, "lon": -73.9759026 }, + { "lat": 40.7547324, "lon": -73.9759246 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1376704197, + "bounds": { + "minlat": 40.7552508, + "minlon": -73.9748081, + "maxlat": 40.7559030, + "maxlon": -73.9732669 + }, + "nodes": [ + 42448811, + 10125233046, + 3842825478, + 1745991208, + 12673751270, + 42446987 + ], + "geometry": [ + { "lat": 40.7559030, "lon": -73.9748081 }, + { "lat": 40.7558552, "lon": -73.9746971 }, + { "lat": 40.7557800, "lon": -73.9745229 }, + { "lat": 40.7555973, "lon": -73.9741137 }, + { "lat": 40.7552963, "lon": -73.9733782 }, + { "lat": 40.7552508, "lon": -73.9732669 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "name": "East 48th Street", + "name:ru": "Восточная 48-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1376704198, + "bounds": { + "minlat": 40.7559030, + "minlon": -73.9748081, + "maxlat": 40.7577792, + "maxlon": -73.9734395 + }, + "nodes": [ + 42448811, + 10125233043, + 12834723257, + 10165922715, + 42438886, + 10125233042, + 12834723256, + 3977886195, + 42459098, + 3977886199, + 12834723253, + 10125233926, + 10125233927, + 42440456 + ], + "geometry": [ + { "lat": 40.7559030, "lon": -73.9748081 }, + { "lat": 40.7559556, "lon": -73.9747701 }, + { "lat": 40.7564261, "lon": -73.9744285 }, + { "lat": 40.7564729, "lon": -73.9743945 }, + { "lat": 40.7565260, "lon": -73.9743560 }, + { "lat": 40.7565793, "lon": -73.9743169 }, + { "lat": 40.7570516, "lon": -73.9739709 }, + { "lat": 40.7570971, "lon": -73.9739376 }, + { "lat": 40.7571447, "lon": -73.9739026 }, + { "lat": 40.7572046, "lon": -73.9738623 }, + { "lat": 40.7576782, "lon": -73.9735139 }, + { "lat": 40.7577196, "lon": -73.9734834 }, + { "lat": 40.7577418, "lon": -73.9734670 }, + { "lat": 40.7577792, "lon": -73.9734395 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1376711900, + "bounds": { + "minlat": 40.7697951, + "minlon": -73.9132002, + "maxlat": 40.7698453, + "maxlon": -73.9128700 + }, + "nodes": [ + 12747647423, + 4207946246 + ], + "geometry": [ + { "lat": 40.7697951, "lon": -73.9128700 }, + { "lat": 40.7698453, "lon": -73.9132002 } + ], + "tags": { + "foot": "yes", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "name": "Astoria Boulevard North", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|none|none", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 1376712437, + "bounds": { + "minlat": 40.7231684, + "minlon": -73.9392325, + "maxlat": 40.7233101, + "maxlon": -73.9389731 + }, + "nodes": [ + 12747642062, + 598031872 + ], + "geometry": [ + { "lat": 40.7231684, "lon": -73.9392325 }, + { "lat": 40.7233101, "lon": -73.9389731 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "1", + "lit": "yes", + "maxspeed": "45 mph", + "name": "Brooklyn-Queens Expressway", + "oneway": "yes", + "ref": "I 278", + "surface": "concrete", + "turn:lanes": "none|through;right|right" + } +}, +{ + "type": "way", + "id": 1376889047, + "bounds": { + "minlat": 40.8114476, + "minlon": -73.9321413, + "maxlat": 40.8116272, + "maxlon": -73.9320579 + }, + "nodes": [ + 12748980348, + 2408979622, + 7511077772, + 9903106227, + 567820468 + ], + "geometry": [ + { "lat": 40.8116272, "lon": -73.9321413 }, + { "lat": 40.8116087, "lon": -73.9321356 }, + { "lat": 40.8115581, "lon": -73.9321167 }, + { "lat": 40.8115107, "lon": -73.9320925 }, + { "lat": 40.8114476, "lon": -73.9320579 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Exterior Street", + "name_1": "I-87", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "New York State Office of Cyber Security (OCS) StreetSegmentPublic Dataset (http://gis.ny.gov/gisdata/inventories/details.cfm?DSID=932)", + "tiger:cfcc": "A15", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Major Deegan", + "tiger:name_base_1": "I-87", + "tiger:name_type": "Expy", + "tiger:reviewed": "no", + "turn:lanes": "left|through" + } +}, +{ + "type": "way", + "id": 1376929274, + "bounds": { + "minlat": 40.7532499, + "minlon": -73.9889829, + "maxlat": 40.7535034, + "maxlon": -73.9887981 + }, + "nodes": [ + 42433611, + 10169532566, + 12749368600 + ], + "geometry": [ + { "lat": 40.7535034, "lon": -73.9887981 }, + { "lat": 40.7534559, "lon": -73.9888318 }, + { "lat": 40.7532499, "lon": -73.9889829 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:bus:forward": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "7th Avenue", + "name:ru": "7-я Авеню", + "oneway": "yes", + "parking:left": "yes", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1376935153, + "bounds": { + "minlat": 40.7627689, + "minlon": -73.9857550, + "maxlat": 40.7629156, + "maxlon": -73.9856481 + }, + "nodes": [ + 9469961219, + 10168091323, + 42435687 + ], + "geometry": [ + { "lat": 40.7627689, "lon": -73.9857550 }, + { "lat": 40.7628646, "lon": -73.9856853 }, + { "lat": 40.7629156, "lon": -73.9856481 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "8th Avenue", + "name:ru": "8-я Авеню", + "name_1": "8 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|none|none", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1376951511, + "bounds": { + "minlat": 40.7614503, + "minlon": -73.9861011, + "maxlat": 40.7622941, + "maxlon": -73.9840983 + }, + "nodes": [ + 42435684, + 10168091317, + 4782404423, + 8704367788, + 3974095846, + 2435108462, + 42428308 + ], + "geometry": [ + { "lat": 40.7622941, "lon": -73.9861011 }, + { "lat": 40.7622344, "lon": -73.9859593 }, + { "lat": 40.7621794, "lon": -73.9858285 }, + { "lat": 40.7619657, "lon": -73.9853207 }, + { "lat": 40.7619480, "lon": -73.9852787 }, + { "lat": 40.7614838, "lon": -73.9841757 }, + { "lat": 40.7614503, "lon": -73.9840983 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "West 50th Street", + "name:ru": "Западная 50-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1376951512, + "bounds": { + "minlat": 40.7622941, + "minlon": -73.9865357, + "maxlat": 40.7624770, + "maxlon": -73.9861011 + }, + "nodes": [ + 12749546680, + 10168091320, + 6210777840, + 42435684 + ], + "geometry": [ + { "lat": 40.7624770, "lon": -73.9865357 }, + { "lat": 40.7623570, "lon": -73.9862506 }, + { "lat": 40.7623397, "lon": -73.9862096 }, + { "lat": 40.7622941, "lon": -73.9861011 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "name": "West 50th Street", + "name:ru": "Западная 50-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|through|none", + "wikidata": "Q4639969", + "wikipedia": "en:50th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1377167577, + "bounds": { + "minlat": 40.7137924, + "minlon": -73.9334534, + "maxlat": 40.7144048, + "maxlon": -73.9331758 + }, + "nodes": [ + 42524611, + 5838943057, + 10031328563, + 10031328547, + 10031328545, + 5838943025, + 42484221 + ], + "geometry": [ + { "lat": 40.7137924, "lon": -73.9331758 }, + { "lat": 40.7139000, "lon": -73.9332251 }, + { "lat": 40.7139771, "lon": -73.9332602 }, + { "lat": 40.7140799, "lon": -73.9333069 }, + { "lat": 40.7142355, "lon": -73.9333777 }, + { "lat": 40.7143299, "lon": -73.9334207 }, + { "lat": 40.7144048, "lon": -73.9334534 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Vandervoort Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|right" + } +}, +{ + "type": "way", + "id": 1377305128, + "bounds": { + "minlat": 40.8774627, + "minlon": -73.9476443, + "maxlat": 40.8813240, + "maxlon": -73.9460766 + }, + "nodes": [ + 5603140267, + 2214758032, + 11860299703, + 103220873, + 11860299704, + 103220875, + 11860299705, + 103220877, + 103220879, + 103220881, + 103220883, + 103220885, + 13816161548, + 103220887, + 13816161552, + 13816161556, + 13816161557, + 103220893 + ], + "geometry": [ + { "lat": 40.8774627, "lon": -73.9476443 }, + { "lat": 40.8776086, "lon": -73.9476030 }, + { "lat": 40.8779646, "lon": -73.9474266 }, + { "lat": 40.8781824, "lon": -73.9472800 }, + { "lat": 40.8784004, "lon": -73.9471459 }, + { "lat": 40.8789298, "lon": -73.9468339 }, + { "lat": 40.8791638, "lon": -73.9466276 }, + { "lat": 40.8794241, "lon": -73.9464569 }, + { "lat": 40.8802110, "lon": -73.9462560 }, + { "lat": 40.8804778, "lon": -73.9461738 }, + { "lat": 40.8807099, "lon": -73.9460908 }, + { "lat": 40.8807875, "lon": -73.9460766 }, + { "lat": 40.8808605, "lon": -73.9460826 }, + { "lat": 40.8809636, "lon": -73.9460935 }, + { "lat": 40.8810083, "lon": -73.9461003 }, + { "lat": 40.8811026, "lon": -73.9460976 }, + { "lat": 40.8811874, "lon": -73.9461035 }, + { "lat": 40.8813240, "lon": -73.9461090 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "lanes": "2", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 1377340846, + "bounds": { + "minlat": 40.8100741, + "minlon": -73.9530446, + "maxlat": 40.8104118, + "maxlon": -73.9528516 + }, + "nodes": [ + 42432928, + 12534082080, + 12534082079, + 7732243558, + 12534082078, + 12534082077, + 12534082081, + 5403787911, + 12753537255 + ], + "geometry": [ + { "lat": 40.8100741, "lon": -73.9530446 }, + { "lat": 40.8101060, "lon": -73.9530434 }, + { "lat": 40.8101247, "lon": -73.9530404 }, + { "lat": 40.8101487, "lon": -73.9530360 }, + { "lat": 40.8101692, "lon": -73.9530283 }, + { "lat": 40.8101879, "lon": -73.9530167 }, + { "lat": 40.8102072, "lon": -73.9530039 }, + { "lat": 40.8103794, "lon": -73.9528755 }, + { "lat": 40.8104118, "lon": -73.9528516 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "turn:lanes:backward": "left|none", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1377340847, + "bounds": { + "minlat": 40.8105133, + "minlon": -73.9527763, + "maxlat": 40.8107673, + "maxlon": -73.9525905 + }, + "nodes": [ + 12753375967, + 10171508883, + 42432929 + ], + "geometry": [ + { "lat": 40.8105133, "lon": -73.9527763 }, + { "lat": 40.8106825, "lon": -73.9526519 }, + { "lat": 40.8107673, "lon": -73.9525905 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "turn:lanes:forward": "left|none", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1377354820, + "bounds": { + "minlat": 40.8107673, + "minlon": -73.9525905, + "maxlat": 40.8111489, + "maxlon": -73.9523137 + }, + "nodes": [ + 42432929, + 10171508882, + 12753523254 + ], + "geometry": [ + { "lat": 40.8107673, "lon": -73.9525905 }, + { "lat": 40.8108721, "lon": -73.9525145 }, + { "lat": 40.8111489, "lon": -73.9523137 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "turn:lanes:backward": "left|none", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1377354821, + "bounds": { + "minlat": 40.8111489, + "minlon": -73.9523137, + "maxlat": 40.8114420, + "maxlon": -73.9521010 + }, + "nodes": [ + 12753523254, + 10173362965, + 42432931 + ], + "geometry": [ + { "lat": 40.8111489, "lon": -73.9523137 }, + { "lat": 40.8113883, "lon": -73.9521400 }, + { "lat": 40.8114420, "lon": -73.9521010 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:forward": "left|none", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1377359233, + "bounds": { + "minlat": 40.8104118, + "minlon": -73.9528516, + "maxlat": 40.8105133, + "maxlon": -73.9527763 + }, + "nodes": [ + 12753537255, + 5403787910, + 12753375967 + ], + "geometry": [ + { "lat": 40.8104118, "lon": -73.9528516 }, + { "lat": 40.8104653, "lon": -73.9528121 }, + { "lat": 40.8105133, "lon": -73.9527763 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1377368319, + "bounds": { + "minlat": 40.8127712, + "minlon": -73.9567152, + "maxlat": 40.8133809, + "maxlon": -73.9562717 + }, + "nodes": [ + 12753597182, + 7598688515, + 6823995476, + 42442584 + ], + "geometry": [ + { "lat": 40.8127712, "lon": -73.9567152 }, + { "lat": 40.8129089, "lon": -73.9566148 }, + { "lat": 40.8132496, "lon": -73.9563693 }, + { "lat": 40.8133809, "lon": -73.9562717 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through|right", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1377435312, + "bounds": { + "minlat": 40.8344301, + "minlon": -74.0195022, + "maxlat": 40.8359518, + "maxlon": -74.0178728 + }, + "nodes": [ + 103317573, + 10053318723, + 10173086626, + 10006078583, + 10173086632, + 10006078580, + 10053318718, + 7263805319, + 103198927 + ], + "geometry": [ + { "lat": 40.8344301, "lon": -74.0195022 }, + { "lat": 40.8345119, "lon": -74.0194146 }, + { "lat": 40.8349190, "lon": -74.0189699 }, + { "lat": 40.8352194, "lon": -74.0186502 }, + { "lat": 40.8353725, "lon": -74.0184872 }, + { "lat": 40.8355075, "lon": -74.0183436 }, + { "lat": 40.8355440, "lon": -74.0183052 }, + { "lat": 40.8356178, "lon": -74.0182278 }, + { "lat": 40.8359518, "lon": -74.0178728 } + ], + "tags": { + "access": "yes", + "foot": "yes", + "highway": "unclassified", + "maxspeed": "20 mph", + "name": "Victoria Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Victoria", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 1377435313, + "bounds": { + "minlat": 40.8341937, + "minlon": -74.0197610, + "maxlat": 40.8344301, + "maxlon": -74.0195022 + }, + "nodes": [ + 291771999, + 103317573 + ], + "geometry": [ + { "lat": 40.8341937, "lon": -74.0197610 }, + { "lat": 40.8344301, "lon": -74.0195022 } + ], + "tags": { + "access": "yes", + "bridge": "yes", + "foot": "yes", + "highway": "unclassified", + "layer": "1", + "maxspeed": "20 mph", + "name": "Victoria Terrace", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Victoria", + "tiger:name_type": "Ter", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 1377435862, + "bounds": { + "minlat": 40.7614840, + "minlon": -74.0015378, + "maxlat": 40.7617130, + "maxlon": -74.0013436 + }, + "nodes": [ + 593854267, + 12154605922, + 9143503693, + 12154605921, + 373930484 + ], + "geometry": [ + { "lat": 40.7614840, "lon": -74.0015378 }, + { "lat": 40.7615309, "lon": -74.0015019 }, + { "lat": 40.7615883, "lon": -74.0014551 }, + { "lat": 40.7616494, "lon": -74.0014044 }, + { "lat": 40.7617130, "lon": -74.0013436 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1377435863, + "bounds": { + "minlat": 40.7613307, + "minlon": -74.0016475, + "maxlat": 40.7614840, + "maxlon": -74.0015378 + }, + "nodes": [ + 42453545, + 593854267 + ], + "geometry": [ + { "lat": 40.7613307, "lon": -74.0016475 }, + { "lat": 40.7614840, "lon": -74.0015378 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1377435864, + "bounds": { + "minlat": 40.7613078, + "minlon": -74.0019520, + "maxlat": 40.7613453, + "maxlon": -74.0016475 + }, + "nodes": [ + 42453545, + 9143503700, + 593854260, + 9143503704, + 12154605935, + 9143503705, + 247085867 + ], + "geometry": [ + { "lat": 40.7613307, "lon": -74.0016475 }, + { "lat": 40.7613371, "lon": -74.0016902 }, + { "lat": 40.7613431, "lon": -74.0017423 }, + { "lat": 40.7613453, "lon": -74.0017776 }, + { "lat": 40.7613413, "lon": -74.0018166 }, + { "lat": 40.7613332, "lon": -74.0018561 }, + { "lat": 40.7613078, "lon": -74.0019520 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 41st Street", + "name:ru": "Западная 41-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q65254678" + } +}, +{ + "type": "way", + "id": 1377435865, + "bounds": { + "minlat": 40.7611120, + "minlon": -74.0020955, + "maxlat": 40.7613078, + "maxlon": -74.0019520 + }, + "nodes": [ + 247085867, + 4215936934 + ], + "geometry": [ + { "lat": 40.7613078, "lon": -74.0019520 }, + { "lat": 40.7611120, "lon": -74.0020955 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "yes", + "sidewalk:right": "no", + "surface": "concrete", + "turn:lanes": "|||right" + } +}, +{ + "type": "way", + "id": 1377435866, + "bounds": { + "minlat": 40.7614566, + "minlon": -74.0020269, + "maxlat": 40.7615867, + "maxlon": -74.0018370 + }, + "nodes": [ + 247086017, + 2710280641, + 4904248097, + 247086019, + 9143503707, + 247080924 + ], + "geometry": [ + { "lat": 40.7615867, "lon": -74.0020269 }, + { "lat": 40.7615619, "lon": -74.0020219 }, + { "lat": 40.7615279, "lon": -74.0020112 }, + { "lat": 40.7615025, "lon": -74.0019823 }, + { "lat": 40.7614788, "lon": -74.0019273 }, + { "lat": 40.7614566, "lon": -74.0018370 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1377437206, + "bounds": { + "minlat": 40.8129171, + "minlon": -73.9298854, + "maxlat": 40.8130396, + "maxlon": -73.9297143 + }, + "nodes": [ + 42741467, + 9903106232, + 2409003135, + 12754232935 + ], + "geometry": [ + { "lat": 40.8130396, "lon": -73.9298854 }, + { "lat": 40.8129911, "lon": -73.9298178 }, + { "lat": 40.8129469, "lon": -73.9297537 }, + { "lat": 40.8129171, "lon": -73.9297143 } + ], + "tags": { + "cycleway": "lane", + "cycleway:left:buffer": "yes", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1377702012, + "bounds": { + "minlat": 40.8110916, + "minlon": -73.9276791, + "maxlat": 40.8113854, + "maxlon": -73.9272894 + }, + "nodes": [ + 12756675477, + 9163759315, + 11882279877, + 4207700494 + ], + "geometry": [ + { "lat": 40.8113854, "lon": -73.9276791 }, + { "lat": 40.8112335, "lon": -73.9274786 }, + { "lat": 40.8111968, "lon": -73.9274295 }, + { "lat": 40.8110916, "lon": -73.9272894 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 1377733846, + "bounds": { + "minlat": 40.8083967, + "minlon": -73.9529716, + "maxlat": 40.8086802, + "maxlon": -73.9529558 + }, + "nodes": [ + 42432917, + 7004398489, + 12756972492 + ], + "geometry": [ + { "lat": 40.8083967, "lon": -73.9529558 }, + { "lat": 40.8084816, "lon": -73.9529582 }, + { "lat": 40.8086802, "lon": -73.9529716 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk:both": "separate", + "turn:lanes:backward": "left|none", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1377753517, + "bounds": { + "minlat": 40.7898551, + "minlon": -73.9419966, + "maxlat": 40.7904429, + "maxlon": -73.9406019 + }, + "nodes": [ + 7474630269, + 6216408512, + 12757365940 + ], + "geometry": [ + { "lat": 40.7904429, "lon": -73.9419966 }, + { "lat": 40.7899303, "lon": -73.9407803 }, + { "lat": 40.7898551, "lon": -73.9406019 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "no", + "sidewalk": "both" + } +}, +{ + "type": "way", + "id": 1377753518, + "bounds": { + "minlat": 40.7904429, + "minlon": -73.9424329, + "maxlat": 40.7906269, + "maxlon": -73.9419966 + }, + "nodes": [ + 42443068, + 6175905224, + 6216541817, + 7078493295, + 7474630269 + ], + "geometry": [ + { "lat": 40.7906269, "lon": -73.9424329 }, + { "lat": 40.7905901, "lon": -73.9423459 }, + { "lat": 40.7905734, "lon": -73.9423062 }, + { "lat": 40.7904814, "lon": -73.9420880 }, + { "lat": 40.7904429, "lon": -73.9419966 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "no", + "sidewalk": "both", + "turn:lanes:backward": "left|none" + } +}, +{ + "type": "way", + "id": 1377770577, + "bounds": { + "minlat": 40.7896284, + "minlon": -73.9406019, + "maxlat": 40.7898551, + "maxlon": -73.9400642 + }, + "nodes": [ + 12757365940, + 7076032977, + 5481998052, + 6216541791, + 6216349370, + 42450468 + ], + "geometry": [ + { "lat": 40.7898551, "lon": -73.9406019 }, + { "lat": 40.7898034, "lon": -73.9404792 }, + { "lat": 40.7897822, "lon": -73.9404217 }, + { "lat": 40.7896891, "lon": -73.9402083 }, + { "lat": 40.7896733, "lon": -73.9401707 }, + { "lat": 40.7896284, "lon": -73.9400642 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "no", + "sidewalk": "both", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 1377770757, + "bounds": { + "minlat": 40.8252307, + "minlon": -73.9114566, + "maxlat": 40.8253724, + "maxlon": -73.9114115 + }, + "nodes": [ + 12757328264, + 5540168254 + ], + "geometry": [ + { "lat": 40.8252307, "lon": -73.9114115 }, + { "lat": 40.8253724, "lon": -73.9114566 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Brook Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1377772775, + "bounds": { + "minlat": 40.8029617, + "minlon": -73.9644005, + "maxlat": 40.8032005, + "maxlon": -73.9638490 + }, + "nodes": [ + 42442569, + 10170893931, + 9177532571, + 2706603536 + ], + "geometry": [ + { "lat": 40.8029617, "lon": -73.9638490 }, + { "lat": 40.8030305, "lon": -73.9640053 }, + { "lat": 40.8031030, "lon": -73.9641698 }, + { "lat": 40.8032005, "lon": -73.9644005 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1377819476, + "bounds": { + "minlat": 40.8036102, + "minlon": -73.9686470, + "maxlat": 40.8042060, + "maxlon": -73.9672442 + }, + "nodes": [ + 42428770, + 10170893919, + 8831843016, + 11378457301, + 42441913 + ], + "geometry": [ + { "lat": 40.8036102, "lon": -73.9672442 }, + { "lat": 40.8036554, "lon": -73.9673481 }, + { "lat": 40.8041593, "lon": -73.9685367 }, + { "lat": 40.8041785, "lon": -73.9685820 }, + { "lat": 40.8042060, "lon": -73.9686470 } + ], + "tags": { + "alt_name": "Thích Nhất Hạnh Way", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "name": "West 109th Street", + "name:ru": "Западная 109-я стрит", + "name_1": "West 109 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1378032089, + "bounds": { + "minlat": 40.7917882, + "minlon": -73.9458023, + "maxlat": 40.7920446, + "maxlon": -73.9451902 + }, + "nodes": [ + 12759567403, + 12759546496 + ], + "geometry": [ + { "lat": 40.7920446, "lon": -73.9458023 }, + { "lat": 40.7917882, "lon": -73.9451902 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "no", + "sidewalk": "both" + } +}, +{ + "type": "way", + "id": 1378032090, + "bounds": { + "minlat": 40.7915720, + "minlon": -73.9451902, + "maxlat": 40.7917882, + "maxlon": -73.9446750 + }, + "nodes": [ + 12759546496, + 4970497091, + 42450057 + ], + "geometry": [ + { "lat": 40.7917882, "lon": -73.9451902 }, + { "lat": 40.7916291, "lon": -73.9448105 }, + { "lat": 40.7915720, "lon": -73.9446750 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "no", + "sidewalk": "both", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 1378037356, + "bounds": { + "minlat": 40.7920446, + "minlon": -73.9462871, + "maxlat": 40.7922499, + "maxlon": -73.9458023 + }, + "nodes": [ + 42447182, + 4970503550, + 4970506152, + 12759567403 + ], + "geometry": [ + { "lat": 40.7922499, "lon": -73.9462871 }, + { "lat": 40.7922059, "lon": -73.9461849 }, + { "lat": 40.7921119, "lon": -73.9459630 }, + { "lat": 40.7920446, "lon": -73.9458023 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 106th Street", + "name:ru": "Восточная 106-я стрит", + "oneway": "no", + "sidewalk": "both", + "turn:lanes:backward": "left|none" + } +}, +{ + "type": "way", + "id": 1378044024, + "bounds": { + "minlat": 40.8093443, + "minlon": -73.9592110, + "maxlat": 40.8096560, + "maxlon": -73.9589820 + }, + "nodes": [ + 1504153626, + 6781692070, + 6916346823, + 2133873543, + 12759646635 + ], + "geometry": [ + { "lat": 40.8093443, "lon": -73.9592110 }, + { "lat": 40.8093816, "lon": -73.9591838 }, + { "lat": 40.8094385, "lon": -73.9591421 }, + { "lat": 40.8094863, "lon": -73.9591071 }, + { "lat": 40.8096560, "lon": -73.9589820 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1378254207, + "bounds": { + "minlat": 40.8113854, + "minlon": -73.9278949, + "maxlat": 40.8115489, + "maxlon": -73.9276791 + }, + "nodes": [ + 12761638064, + 12756675477 + ], + "geometry": [ + { "lat": 40.8115489, "lon": -73.9278949 }, + { "lat": 40.8113854, "lon": -73.9276791 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "East 138th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "138th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1378258841, + "bounds": { + "minlat": 40.7885854, + "minlon": -73.9552649, + "maxlat": 40.7892037, + "maxlon": -73.9548140 + }, + "nodes": [ + 42453575, + 7092397362, + 7077954542, + 7061726465, + 42443264 + ], + "geometry": [ + { "lat": 40.7892037, "lon": -73.9548140 }, + { "lat": 40.7891584, "lon": -73.9548471 }, + { "lat": 40.7889891, "lon": -73.9549705 }, + { "lat": 40.7886413, "lon": -73.9552238 }, + { "lat": 40.7885854, "lon": -73.9552649 } + ], + "tags": { + "alt_name": "Museum Mile", + "cycleway:right": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1378258842, + "bounds": { + "minlat": 40.7892037, + "minlon": -73.9548140, + "maxlat": 40.7895998, + "maxlon": -73.9545251 + }, + "nodes": [ + 12761702755, + 7092397356, + 42453575 + ], + "geometry": [ + { "lat": 40.7895998, "lon": -73.9545251 }, + { "lat": 40.7892630, "lon": -73.9547708 }, + { "lat": 40.7892037, "lon": -73.9548140 } + ], + "tags": { + "alt_name": "Museum Mile", + "cycleway:right": "no", + "hgv": "destination;no", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1378291269, + "bounds": { + "minlat": 40.8175891, + "minlon": -73.9531759, + "maxlat": 40.8179163, + "maxlon": -73.9529452 + }, + "nodes": [ + 42434098, + 10170977553, + 12761970583 + ], + "geometry": [ + { "lat": 40.8175891, "lon": -73.9531759 }, + { "lat": 40.8176678, "lon": -73.9531204 }, + { "lat": 40.8179163, "lon": -73.9529452 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "turn:lanes:backward": "left|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1378321483, + "bounds": { + "minlat": 40.8623213, + "minlon": -73.9294361, + "maxlat": 40.8629260, + "maxlon": -73.9277660 + }, + "nodes": [ + 1764647103, + 42427849, + 9561386514, + 42427852 + ], + "geometry": [ + { "lat": 40.8623213, "lon": -73.9294361 }, + { "lat": 40.8626215, "lon": -73.9286059 }, + { "lat": 40.8628959, "lon": -73.9278487 }, + { "lat": 40.8629260, "lon": -73.9277660 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "name": "Sherman Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1378321484, + "bounds": { + "minlat": 40.8633945, + "minlon": -73.9264998, + "maxlat": 40.8635745, + "maxlon": -73.9260124 + }, + "nodes": [ + 12762219583, + 4321038145, + 13300289561, + 42427859 + ], + "geometry": [ + { "lat": 40.8633945, "lon": -73.9264998 }, + { "lat": 40.8635276, "lon": -73.9261393 }, + { "lat": 40.8635633, "lon": -73.9260428 }, + { "lat": 40.8635745, "lon": -73.9260124 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Sherman Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 1378321485, + "bounds": { + "minlat": 40.8635745, + "minlon": -73.9260124, + "maxlat": 40.8637659, + "maxlon": -73.9254937 + }, + "nodes": [ + 42427859, + 4321038147, + 12762219584 + ], + "geometry": [ + { "lat": 40.8635745, "lon": -73.9260124 }, + { "lat": 40.8636214, "lon": -73.9258853 }, + { "lat": 40.8637659, "lon": -73.9254937 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Sherman Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:backward": "left|none" + } +}, +{ + "type": "way", + "id": 1378324775, + "bounds": { + "minlat": 40.8192439, + "minlon": -73.9784407, + "maxlat": 40.8192959, + "maxlon": -73.9783835 + }, + "nodes": [ + 10020578008, + 4205794189 + ], + "geometry": [ + { "lat": 40.8192439, "lon": -73.9784407 }, + { "lat": 40.8192959, "lon": -73.9783835 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1378324776, + "bounds": { + "minlat": 40.8190877, + "minlon": -73.9789293, + "maxlat": 40.8193062, + "maxlon": -73.9787051 + }, + "nodes": [ + 10020578016, + 10020578010 + ], + "geometry": [ + { "lat": 40.8193062, "lon": -73.9787051 }, + { "lat": 40.8190877, "lon": -73.9789293 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1378324777, + "bounds": { + "minlat": 40.8191768, + "minlon": -73.9785086, + "maxlat": 40.8192439, + "maxlon": -73.9784407 + }, + "nodes": [ + 5362517642, + 103137092, + 10020578008 + ], + "geometry": [ + { "lat": 40.8191768, "lon": -73.9785086 }, + { "lat": 40.8192212, "lon": -73.9784657 }, + { "lat": 40.8192439, "lon": -73.9784407 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1378827472, + "bounds": { + "minlat": 40.8158273, + "minlon": -73.9612752, + "maxlat": 40.8168887, + "maxlon": -73.9611618 + }, + "nodes": [ + 6813350876, + 7732571974, + 7732571827, + 7732571973, + 7732571824, + 7732571970, + 7732571978, + 6813350873, + 7732571975, + 42441171, + 42441173, + 42441179, + 1705982209, + 42441184, + 42441187, + 1705982028, + 1705982149, + 1705982205, + 1705982071, + 1705982178, + 7732571850, + 7732571851, + 7732571852, + 7732571854, + 42441191 + ], + "geometry": [ + { "lat": 40.8158273, "lon": -73.9612283 }, + { "lat": 40.8158575, "lon": -73.9612219 }, + { "lat": 40.8159095, "lon": -73.9612115 }, + { "lat": 40.8159513, "lon": -73.9612041 }, + { "lat": 40.8159935, "lon": -73.9611993 }, + { "lat": 40.8160459, "lon": -73.9612009 }, + { "lat": 40.8160819, "lon": -73.9612052 }, + { "lat": 40.8161024, "lon": -73.9612072 }, + { "lat": 40.8161351, "lon": -73.9612159 }, + { "lat": 40.8161786, "lon": -73.9612237 }, + { "lat": 40.8162567, "lon": -73.9612419 }, + { "lat": 40.8163279, "lon": -73.9612567 }, + { "lat": 40.8163826, "lon": -73.9612678 }, + { "lat": 40.8164311, "lon": -73.9612734 }, + { "lat": 40.8164822, "lon": -73.9612752 }, + { "lat": 40.8165227, "lon": -73.9612748 }, + { "lat": 40.8165663, "lon": -73.9612709 }, + { "lat": 40.8166120, "lon": -73.9612628 }, + { "lat": 40.8166496, "lon": -73.9612510 }, + { "lat": 40.8167063, "lon": -73.9612302 }, + { "lat": 40.8167286, "lon": -73.9612186 }, + { "lat": 40.8167616, "lon": -73.9611987 }, + { "lat": 40.8167978, "lon": -73.9611771 }, + { "lat": 40.8168241, "lon": -73.9611618 }, + { "lat": 40.8168887, "lon": -73.9611688 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1378827473, + "bounds": { + "minlat": 40.8157279, + "minlon": -73.9612504, + "maxlat": 40.8158273, + "maxlon": -73.9612283 + }, + "nodes": [ + 12767870961, + 6813350876 + ], + "geometry": [ + { "lat": 40.8157279, "lon": -73.9612504 }, + { "lat": 40.8158273, "lon": -73.9612283 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "turn:lanes": "left||", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1378843200, + "bounds": { + "minlat": 40.8249209, + "minlon": -73.9083423, + "maxlat": 40.8257472, + "maxlon": -73.9080309 + }, + "nodes": [ + 12768028223, + 13247311056, + 42742384, + 13247311055, + 5482222755, + 13247311057, + 5482222752, + 8009144425 + ], + "geometry": [ + { "lat": 40.8257472, "lon": -73.9080309 }, + { "lat": 40.8253619, "lon": -73.9081856 }, + { "lat": 40.8253217, "lon": -73.9082017 }, + { "lat": 40.8252536, "lon": -73.9082196 }, + { "lat": 40.8251578, "lon": -73.9082447 }, + { "lat": 40.8250455, "lon": -73.9082929 }, + { "lat": 40.8249954, "lon": -73.9083144 }, + { "lat": 40.8249209, "lon": -73.9083423 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1378843201, + "bounds": { + "minlat": 40.8257472, + "minlon": -73.9080309, + "maxlat": 40.8264920, + "maxlon": -73.9077390 + }, + "nodes": [ + 42768572, + 5482222811, + 13247238250, + 42768568, + 42768565, + 12768028223 + ], + "geometry": [ + { "lat": 40.8264920, "lon": -73.9077390 }, + { "lat": 40.8264471, "lon": -73.9077558 }, + { "lat": 40.8264359, "lon": -73.9077600 }, + { "lat": 40.8262735, "lon": -73.9078207 }, + { "lat": 40.8259960, "lon": -73.9079310 }, + { "lat": 40.8257472, "lon": -73.9080309 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Third Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "turn:lanes:backward": "left|", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1378936434, + "bounds": { + "minlat": 40.8147711, + "minlon": -73.9552402, + "maxlat": 40.8151098, + "maxlon": -73.9550004 + }, + "nodes": [ + 12768814628, + 10055123055, + 42442592 + ], + "geometry": [ + { "lat": 40.8147711, "lon": -73.9552402 }, + { "lat": 40.8150598, "lon": -73.9550358 }, + { "lat": 40.8151098, "lon": -73.9550004 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lit": "yes", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1378936435, + "bounds": { + "minlat": 40.8144827, + "minlon": -73.9554444, + "maxlat": 40.8147711, + "maxlon": -73.9552402 + }, + "nodes": [ + 42442589, + 10173362955, + 12768814628 + ], + "geometry": [ + { "lat": 40.8144827, "lon": -73.9554444 }, + { "lat": 40.8145414, "lon": -73.9554029 }, + { "lat": 40.8147711, "lon": -73.9552402 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lit": "yes", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "turn:lanes:backward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1379090456, + "bounds": { + "minlat": 40.8310590, + "minlon": -73.9080240, + "maxlat": 40.8317680, + "maxlon": -73.9058400 + }, + "nodes": [ + 42742463, + 13146491648, + 5481921436, + 7397544478, + 12038478861, + 42730101, + 9520894273, + 4904083252, + 13061934462, + 42742468 + ], + "geometry": [ + { "lat": 40.8317680, "lon": -73.9080240 }, + { "lat": 40.8317452, "lon": -73.9079535 }, + { "lat": 40.8316778, "lon": -73.9077447 }, + { "lat": 40.8314818, "lon": -73.9071378 }, + { "lat": 40.8314203, "lon": -73.9069475 }, + { "lat": 40.8313850, "lon": -73.9068380 }, + { "lat": 40.8313602, "lon": -73.9067620 }, + { "lat": 40.8312315, "lon": -73.9063682 }, + { "lat": 40.8311039, "lon": -73.9059776 }, + { "lat": 40.8310590, "lon": -73.9058400 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "name": "East 168th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1379304936, + "bounds": { + "minlat": 40.8649132, + "minlon": -73.9223887, + "maxlat": 40.8651000, + "maxlon": -73.9218840 + }, + "nodes": [ + 12772044132, + 9561420924, + 42427867 + ], + "geometry": [ + { "lat": 40.8649132, "lon": -73.9223887 }, + { "lat": 40.8650649, "lon": -73.9219787 }, + { "lat": 40.8651000, "lon": -73.9218840 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Sherman Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 1379309952, + "bounds": { + "minlat": 40.8283947, + "minlon": -73.9452839, + "maxlat": 40.8286574, + "maxlon": -73.9450919 + }, + "nodes": [ + 42442635, + 11221649603, + 12772091370, + 12772091369 + ], + "geometry": [ + { "lat": 40.8283947, "lon": -73.9452839 }, + { "lat": 40.8284554, "lon": -73.9452395 }, + { "lat": 40.8286295, "lon": -73.9451123 }, + { "lat": 40.8286574, "lon": -73.9450919 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "left|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1379314801, + "bounds": { + "minlat": 40.8286574, + "minlon": -73.9450919, + "maxlat": 40.8287776, + "maxlon": -73.9450041 + }, + "nodes": [ + 12772091369, + 12772131421 + ], + "geometry": [ + { "lat": 40.8286574, "lon": -73.9450919 }, + { "lat": 40.8287776, "lon": -73.9450041 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1379418020, + "bounds": { + "minlat": 40.7758767, + "minlon": -74.0125186, + "maxlat": 40.7760665, + "maxlon": -74.0123263 + }, + "nodes": [ + 12773061448, + 12773061447, + 12773061446, + 12773061445, + 12773061444, + 12773061443, + 12773061442, + 12773061448 + ], + "geometry": [ + { "lat": 40.7759072, "lon": -74.0125111 }, + { "lat": 40.7758767, "lon": -74.0123998 }, + { "lat": 40.7759132, "lon": -74.0123824 }, + { "lat": 40.7760306, "lon": -74.0123263 }, + { "lat": 40.7760665, "lon": -74.0124576 }, + { "lat": 40.7759499, "lon": -74.0125133 }, + { "lat": 40.7759388, "lon": -74.0125186 }, + { "lat": 40.7759072, "lon": -74.0125111 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1379616272, + "bounds": { + "minlat": 40.8050309, + "minlon": -73.9527766, + "maxlat": 40.8053321, + "maxlon": -73.9527655 + }, + "nodes": [ + 42432897, + 11840449872, + 12774291684 + ], + "geometry": [ + { "lat": 40.8050309, "lon": -73.9527655 }, + { "lat": 40.8051186, "lon": -73.9527687 }, + { "lat": 40.8053321, "lon": -73.9527766 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "sidewalk:both": "separate", + "turn:lanes:backward": "left|none", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1379618935, + "bounds": { + "minlat": 40.8053321, + "minlon": -73.9527854, + "maxlat": 40.8055631, + "maxlon": -73.9527766 + }, + "nodes": [ + 12774291684, + 12774284688 + ], + "geometry": [ + { "lat": 40.8053321, "lon": -73.9527766 }, + { "lat": 40.8055631, "lon": -73.9527854 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "sidewalk:both": "separate", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1379890905, + "bounds": { + "minlat": 40.8543100, + "minlon": -73.9300820, + "maxlat": 40.8549080, + "maxlon": -73.9296440 + }, + "nodes": [ + 42433107, + 5403868144, + 5403868138, + 42433115 + ], + "geometry": [ + { "lat": 40.8543100, "lon": -73.9300820 }, + { "lat": 40.8543666, "lon": -73.9300405 }, + { "lat": 40.8548412, "lon": -73.9296932 }, + { "lat": 40.8549080, "lon": -73.9296440 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1379890906, + "bounds": { + "minlat": 40.8536850, + "minlon": -73.9305390, + "maxlat": 40.8539180, + "maxlon": -73.9303684 + }, + "nodes": [ + 42433097, + 5403868145, + 12775827714 + ], + "geometry": [ + { "lat": 40.8536850, "lon": -73.9305390 }, + { "lat": 40.8537425, "lon": -73.9304967 }, + { "lat": 40.8539180, "lon": -73.9303684 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:backward": "left|none", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1379893845, + "bounds": { + "minlat": 40.8537388, + "minlon": -73.9122914, + "maxlat": 40.8540037, + "maxlon": -73.9121196 + }, + "nodes": [ + 2323868466, + 2808821781, + 42743990 + ], + "geometry": [ + { "lat": 40.8540037, "lon": -73.9121196 }, + { "lat": 40.8538041, "lon": -73.9122463 }, + { "lat": 40.8537388, "lon": -73.9122914 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:traffic_mode": "parking", + "cycleway:left:width": "6'", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus": "2", + "lanes:forward": "2", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "name_1": "University Avenue", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "none|merge_to_left" + } +}, +{ + "type": "way", + "id": 1379903156, + "bounds": { + "minlat": 40.8000383, + "minlon": -73.9459680, + "maxlat": 40.8013420, + "maxlon": -73.9428721 + }, + "nodes": [ + 596776474, + 10173037244, + 10167086811, + 42446164, + 10167086814, + 5481977583, + 8002880951, + 10167137540, + 42449828 + ], + "geometry": [ + { "lat": 40.8000383, "lon": -73.9428721 }, + { "lat": 40.8000702, "lon": -73.9429474 }, + { "lat": 40.8006202, "lon": -73.9442523 }, + { "lat": 40.8006644, "lon": -73.9443571 }, + { "lat": 40.8007129, "lon": -73.9444725 }, + { "lat": 40.8008551, "lon": -73.9448108 }, + { "lat": 40.8011471, "lon": -73.9455084 }, + { "lat": 40.8012875, "lon": -73.9458383 }, + { "lat": 40.8013420, "lon": -73.9459680 } + ], + "tags": { + "highway": "residential", + "name": "East 117th Street", + "name:ru": "Восточная 117-я стрит", + "name_1": "East 117 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1379903157, + "bounds": { + "minlat": 40.7993612, + "minlon": -73.9433693, + "maxlat": 40.8000383, + "maxlon": -73.9428721 + }, + "nodes": [ + 596776474, + 10173037243, + 11296237247, + 596776497 + ], + "geometry": [ + { "lat": 40.8000383, "lon": -73.9428721 }, + { "lat": 40.7999876, "lon": -73.9429094 }, + { "lat": 40.7994663, "lon": -73.9432921 }, + { "lat": 40.7993612, "lon": -73.9433693 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1379903158, + "bounds": { + "minlat": 40.7999317, + "minlon": -73.9428721, + "maxlat": 40.8000383, + "maxlon": -73.9426190 + }, + "nodes": [ + 42449833, + 596776474 + ], + "geometry": [ + { "lat": 40.7999317, "lon": -73.9426190 }, + { "lat": 40.8000383, "lon": -73.9428721 } + ], + "tags": { + "highway": "residential", + "name": "East 117th Street", + "name:ru": "Восточная 117-я стрит", + "name_1": "East 117 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1379903159, + "bounds": { + "minlat": 40.7999317, + "minlon": -73.9426190, + "maxlat": 40.8005608, + "maxlon": -73.9421598 + }, + "nodes": [ + 42449833, + 10173037240, + 10170646958, + 42439488 + ], + "geometry": [ + { "lat": 40.7999317, "lon": -73.9426190 }, + { "lat": 40.7999995, "lon": -73.9425697 }, + { "lat": 40.8005106, "lon": -73.9421965 }, + { "lat": 40.8005608, "lon": -73.9421598 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1380179857, + "bounds": { + "minlat": 40.7774036, + "minlon": -74.0182703, + "maxlat": 40.7775484, + "maxlon": -74.0180568 + }, + "nodes": [ + 12777801709, + 103862576 + ], + "geometry": [ + { "lat": 40.7774036, "lon": -74.0182703 }, + { "lat": 40.7775484, "lon": -74.0180568 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09101116", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Park Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 1380623236, + "bounds": { + "minlat": 40.8632380, + "minlon": -73.9269230, + "maxlat": 40.8633945, + "maxlon": -73.9264998 + }, + "nodes": [ + 42427855, + 9561420850, + 12762219583 + ], + "geometry": [ + { "lat": 40.8632380, "lon": -73.9269230 }, + { "lat": 40.8632652, "lon": -73.9268491 }, + { "lat": 40.8633945, "lon": -73.9264998 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "name": "Sherman Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1380623237, + "bounds": { + "minlat": 40.8632380, + "minlon": -73.9281126, + "maxlat": 40.8650807, + "maxlon": -73.9269230 + }, + "nodes": [ + 42427855, + 9561420853, + 9561386474, + 42429212 + ], + "geometry": [ + { "lat": 40.8632380, "lon": -73.9269230 }, + { "lat": 40.8633453, "lon": -73.9269918 }, + { "lat": 40.8649853, "lon": -73.9280451 }, + { "lat": 40.8650807, "lon": -73.9281126 } + ], + "tags": { + "alt_name": "West 199th Street", + "highway": "residential", + "name": "Thayer Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:alt_name_base": "W 199th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Thayer", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 1380623238, + "bounds": { + "minlat": 40.8631148, + "minlon": -73.9272560, + "maxlat": 40.8632380, + "maxlon": -73.9269230 + }, + "nodes": [ + 12782314703, + 9561420852, + 42427855 + ], + "geometry": [ + { "lat": 40.8631148, "lon": -73.9272560 }, + { "lat": 40.8632086, "lon": -73.9270025 }, + { "lat": 40.8632380, "lon": -73.9269230 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Sherman Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1380643312, + "bounds": { + "minlat": 40.8630514, + "minlon": -73.9274272, + "maxlat": 40.8631148, + "maxlon": -73.9272560 + }, + "nodes": [ + 12782460306, + 12782314703 + ], + "geometry": [ + { "lat": 40.8630514, "lon": -73.9274272 }, + { "lat": 40.8631148, "lon": -73.9272560 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "name": "Sherman Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1380643313, + "bounds": { + "minlat": 40.8629260, + "minlon": -73.9289023, + "maxlat": 40.8646634, + "maxlon": -73.9277660 + }, + "nodes": [ + 42429211, + 13300264674, + 9561386484, + 8153243814, + 42431180, + 9561386515, + 42427852 + ], + "geometry": [ + { "lat": 40.8646634, "lon": -73.9289023 }, + { "lat": 40.8646531, "lon": -73.9288956 }, + { "lat": 40.8645612, "lon": -73.9288355 }, + { "lat": 40.8639018, "lon": -73.9283970 }, + { "lat": 40.8636140, "lon": -73.9282060 }, + { "lat": 40.8630341, "lon": -73.9278351 }, + { "lat": 40.8629260, "lon": -73.9277660 } + ], + "tags": { + "alt_name": "West 198th Street", + "highway": "residential", + "name": "Arden Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:alt_name_base": "W 198th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Arden", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 1380643314, + "bounds": { + "minlat": 40.8629260, + "minlon": -73.9277660, + "maxlat": 40.8630514, + "maxlon": -73.9274272 + }, + "nodes": [ + 42427852, + 9561386513, + 12782460306 + ], + "geometry": [ + { "lat": 40.8629260, "lon": -73.9277660 }, + { "lat": 40.8629542, "lon": -73.9276899 }, + { "lat": 40.8630514, "lon": -73.9274272 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Sherman Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:backward": "left|none" + } +}, +{ + "type": "way", + "id": 1380652976, + "bounds": { + "minlat": 40.8539180, + "minlon": -73.9303684, + "maxlat": 40.8540820, + "maxlon": -73.9302486 + }, + "nodes": [ + 12775827714, + 12782442863 + ], + "geometry": [ + { "lat": 40.8539180, "lon": -73.9303684 }, + { "lat": 40.8540820, "lon": -73.9302486 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1380652977, + "bounds": { + "minlat": 40.8540820, + "minlon": -73.9302486, + "maxlat": 40.8543100, + "maxlon": -73.9300820 + }, + "nodes": [ + 12782442863, + 5403868143, + 42433107 + ], + "geometry": [ + { "lat": 40.8540820, "lon": -73.9302486 }, + { "lat": 40.8542564, "lon": -73.9301211 }, + { "lat": 40.8543100, "lon": -73.9300820 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:forward": "left|none", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1381035964, + "bounds": { + "minlat": 40.8637659, + "minlon": -73.9254937, + "maxlat": 40.8642213, + "maxlon": -73.9242597 + }, + "nodes": [ + 12762219584, + 12785164322 + ], + "geometry": [ + { "lat": 40.8637659, "lon": -73.9254937 }, + { "lat": 40.8642213, "lon": -73.9242597 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "name": "Sherman Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1381035965, + "bounds": { + "minlat": 40.8624952, + "minlon": -73.9237670, + "maxlat": 40.8644030, + "maxlon": -73.9225476 + }, + "nodes": [ + 1764405363, + 9561420847, + 9561420877, + 42445635, + 9561420879, + 8395710040, + 9561420900, + 42427863 + ], + "geometry": [ + { "lat": 40.8624952, "lon": -73.9225476 }, + { "lat": 40.8625392, "lon": -73.9225758 }, + { "lat": 40.8633481, "lon": -73.9230936 }, + { "lat": 40.8634160, "lon": -73.9231370 }, + { "lat": 40.8634991, "lon": -73.9231900 }, + { "lat": 40.8638973, "lon": -73.9234442 }, + { "lat": 40.8643118, "lon": -73.9237088 }, + { "lat": 40.8644030, "lon": -73.9237670 } + ], + "tags": { + "highway": "tertiary", + "name": "Academy Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Academy", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1381035966, + "bounds": { + "minlat": 40.8642213, + "minlon": -73.9242597, + "maxlat": 40.8644030, + "maxlon": -73.9237670 + }, + "nodes": [ + 12785164322, + 9561420903, + 42427863 + ], + "geometry": [ + { "lat": 40.8642213, "lon": -73.9242597 }, + { "lat": 40.8643655, "lon": -73.9238688 }, + { "lat": 40.8644030, "lon": -73.9237670 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Sherman Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1381898740, + "bounds": { + "minlat": 40.8381898, + "minlon": -73.9399035, + "maxlat": 40.8385135, + "maxlon": -73.9398455 + }, + "nodes": [ + 42433027, + 9569897417, + 2499803002, + 13754597623 + ], + "geometry": [ + { "lat": 40.8385135, "lon": -73.9398455 }, + { "lat": 40.8384352, "lon": -73.9398575 }, + { "lat": 40.8384189, "lon": -73.9398600 }, + { "lat": 40.8381898, "lon": -73.9399035 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "rcn_ref": "9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:backward": "left|none", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1381898741, + "bounds": { + "minlat": 40.8372351, + "minlon": -73.9399940, + "maxlat": 40.8377140, + "maxlon": -73.9388597 + }, + "nodes": [ + 42433024, + 9569882304, + 9569882311, + 42442697 + ], + "geometry": [ + { "lat": 40.8377140, "lon": -73.9399940 }, + { "lat": 40.8376605, "lon": -73.9398673 }, + { "lat": 40.8372867, "lon": -73.9389818 }, + { "lat": 40.8372351, "lon": -73.9388597 } + ], + "tags": { + "highway": "residential", + "name": "West 164th Street", + "name_1": "West 164 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "164th", + "tiger:name_base_1": "164", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1381898742, + "bounds": { + "minlat": 40.8377140, + "minlon": -73.9399940, + "maxlat": 40.8380495, + "maxlon": -73.9399302 + }, + "nodes": [ + 12794031055, + 9569882306, + 42433024 + ], + "geometry": [ + { "lat": 40.8380495, "lon": -73.9399302 }, + { "lat": 40.8377935, "lon": -73.9399789 }, + { "lat": 40.8377140, "lon": -73.9399940 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "rcn_ref": "9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1382231510, + "bounds": { + "minlat": 40.8266950, + "minlon": -73.9076470, + "maxlat": 40.8271397, + "maxlon": -73.9074760 + }, + "nodes": [ + 12797287096, + 42762856 + ], + "geometry": [ + { "lat": 40.8271397, "lon": -73.9074760 }, + { "lat": 40.8266950, "lon": -73.9076470 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "turn:lanes:forward": "left|none", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1382231511, + "bounds": { + "minlat": 40.8264920, + "minlon": -73.9077390, + "maxlat": 40.8266950, + "maxlon": -73.9076470 + }, + "nodes": [ + 42762856, + 5482222814, + 13247238248, + 42768572 + ], + "geometry": [ + { "lat": 40.8266950, "lon": -73.9076470 }, + { "lat": 40.8266237, "lon": -73.9076793 }, + { "lat": 40.8265574, "lon": -73.9077093 }, + { "lat": 40.8264920, "lon": -73.9077390 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1382261012, + "bounds": { + "minlat": 40.8247612, + "minlon": -73.9838861, + "maxlat": 40.8249348, + "maxlon": -73.9835454 + }, + "nodes": [ + 4695282844, + 103235725, + 103162249 + ], + "geometry": [ + { "lat": 40.8247612, "lon": -73.9838861 }, + { "lat": 40.8248171, "lon": -73.9837815 }, + { "lat": 40.8249348, "lon": -73.9835454 } + ], + "tags": { + "Bergen_County_database_ref": "27", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000027", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Palisade Avenue", + "ref": "CR 27", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisade:Palisades", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07010:07024", + "tiger:zip_right": "07010:07024", + "turn:lanes:forward": "left|none", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1382488807, + "bounds": { + "minlat": 40.8424975, + "minlon": -73.9880459, + "maxlat": 40.8427267, + "maxlon": -73.9876545 + }, + "nodes": [ + 103258708, + 5978949659, + 12799712187, + 103148030 + ], + "geometry": [ + { "lat": 40.8427267, "lon": -73.9880459 }, + { "lat": 40.8426133, "lon": -73.9878523 }, + { "lat": 40.8425818, "lon": -73.9877985 }, + { "lat": 40.8424975, "lon": -73.9876545 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "HFCS": "Urban Collector", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "East Central Boulevard", + "old_ref": "CR 54", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1382494090, + "bounds": { + "minlat": 40.8423104, + "minlon": -73.9876545, + "maxlat": 40.8424975, + "maxlon": -73.9873344 + }, + "nodes": [ + 103148030, + 103227489 + ], + "geometry": [ + { "lat": 40.8424975, "lon": -73.9876545 }, + { "lat": 40.8423104, "lon": -73.9873344 } + ], + "tags": { + "Bergen_County_database_ref": "54", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000054", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "East Central Boulevard", + "ref": "CR 54", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Central", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1382519748, + "bounds": { + "minlat": 40.8294520, + "minlon": -73.9065710, + "maxlat": 40.8306446, + "maxlon": -73.9060285 + }, + "nodes": [ + 12770117140, + 5482223722, + 5588895237, + 13625142402, + 42759475 + ], + "geometry": [ + { "lat": 40.8306446, "lon": -73.9060285 }, + { "lat": 40.8296687, "lon": -73.9064724 }, + { "lat": 40.8295263, "lon": -73.9065372 }, + { "lat": 40.8295095, "lon": -73.9065449 }, + { "lat": 40.8294520, "lon": -73.9065710 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1382519749, + "bounds": { + "minlat": 40.8291279, + "minlon": -73.9067002, + "maxlat": 40.8294520, + "maxlon": -73.9065710 + }, + "nodes": [ + 42759475, + 13061934471, + 12799951765 + ], + "geometry": [ + { "lat": 40.8294520, "lon": -73.9065710 }, + { "lat": 40.8294018, "lon": -73.9065910 }, + { "lat": 40.8291279, "lon": -73.9067002 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Third Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "turn:lanes:backward": "left|none", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1382624966, + "bounds": { + "minlat": 40.7481917, + "minlon": -74.0076380, + "maxlat": 40.7483332, + "maxlon": -74.0074916 + }, + "nodes": [ + 246651648, + 12161232243 + ], + "geometry": [ + { "lat": 40.7483332, "lon": -74.0074916 }, + { "lat": 40.7481917, "lon": -74.0076380 } + ], + "tags": { + "bicycle": "no", + "change": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1382728167, + "bounds": { + "minlat": 40.7697470, + "minlon": -73.9611569, + "maxlat": 40.7699800, + "maxlon": -73.9606044 + }, + "nodes": [ + 12801914327, + 3562587898, + 42436486 + ], + "geometry": [ + { "lat": 40.7699800, "lon": -73.9611569 }, + { "lat": 40.7698095, "lon": -73.9607526 }, + { "lat": 40.7697470, "lon": -73.9606044 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "name": "East 72nd Street", + "name:ru": "Восточная 72-я стрит", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt", + "turn:lanes:forward": "left|none|none", + "wikidata": "Q264022", + "wikipedia": "en:72nd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1382729135, + "bounds": { + "minlat": 40.8146584, + "minlon": -73.9202818, + "maxlat": 40.8148716, + "maxlon": -73.9198741 + }, + "nodes": [ + 12801909508, + 8454214938, + 11217140018, + 42745889 + ], + "geometry": [ + { "lat": 40.8148716, "lon": -73.9198741 }, + { "lat": 40.8147279, "lon": -73.9201492 }, + { "lat": 40.8147061, "lon": -73.9201908 }, + { "lat": 40.8146584, "lon": -73.9202818 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Third Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|none", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1382939569, + "bounds": { + "minlat": 40.8644601, + "minlon": -73.9949923, + "maxlat": 40.8652480, + "maxlon": -73.9929817 + }, + "nodes": [ + 4207193768, + 103282414, + 103246681, + 103229125, + 103222181, + 6126762844, + 10291328952, + 6126762849, + 103180886 + ], + "geometry": [ + { "lat": 40.8652480, "lon": -73.9949923 }, + { "lat": 40.8651492, "lon": -73.9947310 }, + { "lat": 40.8651110, "lon": -73.9946438 }, + { "lat": 40.8648828, "lon": -73.9940645 }, + { "lat": 40.8648301, "lon": -73.9938893 }, + { "lat": 40.8647416, "lon": -73.9936556 }, + { "lat": 40.8646769, "lon": -73.9934976 }, + { "lat": 40.8646437, "lon": -73.9934164 }, + { "lat": 40.8644601, "lon": -73.9929817 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "name": "Fort Lee Road", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1382939570, + "bounds": { + "minlat": 40.8641930, + "minlon": -73.9929817, + "maxlat": 40.8644601, + "maxlon": -73.9923040 + }, + "nodes": [ + 103180886, + 8668363878, + 103282418, + 103282420 + ], + "geometry": [ + { "lat": 40.8644601, "lon": -73.9929817 }, + { "lat": 40.8644264, "lon": -73.9928962 }, + { "lat": 40.8642308, "lon": -73.9924007 }, + { "lat": 40.8641930, "lon": -73.9923040 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Fort Lee Road", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1382972749, + "bounds": { + "minlat": 40.8265049, + "minlon": -73.9872740, + "maxlat": 40.8274008, + "maxlon": -73.9868974 + }, + "nodes": [ + 103207079, + 4695282835, + 13525873306, + 103162254, + 13525873302, + 12804020860 + ], + "geometry": [ + { "lat": 40.8265049, "lon": -73.9872740 }, + { "lat": 40.8265303, "lon": -73.9872633 }, + { "lat": 40.8268846, "lon": -73.9871183 }, + { "lat": 40.8269433, "lon": -73.9870943 }, + { "lat": 40.8270071, "lon": -73.9870649 }, + { "lat": 40.8274008, "lon": -73.9868974 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "2", + "name": "Anderson Avenue", + "ref": "CR 29", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 1382972750, + "bounds": { + "minlat": 40.8274008, + "minlon": -73.9868974, + "maxlat": 40.8276443, + "maxlon": -73.9867927 + }, + "nodes": [ + 12804020860, + 13525882228, + 103245949 + ], + "geometry": [ + { "lat": 40.8274008, "lon": -73.9868974 }, + { "lat": 40.8275675, "lon": -73.9868252 }, + { "lat": 40.8276443, "lon": -73.9867927 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Anderson Avenue", + "ref": "CR 29", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 1382972751, + "bounds": { + "minlat": 40.8276443, + "minlon": -73.9867927, + "maxlat": 40.8278763, + "maxlon": -73.9867000 + }, + "nodes": [ + 103245949, + 13525882227, + 103245951, + 12804020861 + ], + "geometry": [ + { "lat": 40.8276443, "lon": -73.9867927 }, + { "lat": 40.8277107, "lon": -73.9867673 }, + { "lat": 40.8277771, "lon": -73.9867419 }, + { "lat": 40.8278763, "lon": -73.9867000 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Anderson Avenue", + "ref": "CR 29", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:backward": "left|none" + } +}, +{ + "type": "way", + "id": 1383804534, + "bounds": { + "minlat": 40.8601662, + "minlon": -73.9212428, + "maxlat": 40.8604936, + "maxlon": -73.9210478 + }, + "nodes": [ + 42439065, + 12811981921 + ], + "geometry": [ + { "lat": 40.8604936, "lon": -73.9212428 }, + { "lat": 40.8601662, "lon": -73.9210478 } + ], + "tags": { + "highway": "service", + "name": "Academy Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 1383891355, + "bounds": { + "minlat": 40.8545820, + "minlon": -73.9163762, + "maxlat": 40.8546721, + "maxlon": -73.9161900 + }, + "nodes": [ + 2329195150, + 42744012 + ], + "geometry": [ + { "lat": 40.8546721, "lon": -73.9163762 }, + { "lat": 40.8545820, "lon": -73.9161900 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West Burnside Avenue", + "name:etymology:wikidata": "Q355444", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick;Burnside", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1384016030, + "bounds": { + "minlat": 40.7019873, + "minlon": -73.9774466, + "maxlat": 40.7022892, + "maxlon": -73.9773205 + }, + "nodes": [ + 12814117286, + 12814117287, + 42473940 + ], + "geometry": [ + { "lat": 40.7019873, "lon": -73.9774466 }, + { "lat": 40.7022333, "lon": -73.9773607 }, + { "lat": 40.7022892, "lon": -73.9773205 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1384188585, + "bounds": { + "minlat": 40.7688272, + "minlon": -73.9543443, + "maxlat": 40.7689124, + "maxlon": -73.9542763 + }, + "nodes": [ + 12815741315, + 12815622093, + 12815741301 + ], + "geometry": [ + { "lat": 40.7689124, "lon": -73.9542763 }, + { "lat": 40.7688911, "lon": -73.9542942 }, + { "lat": 40.7688272, "lon": -73.9543443 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1384188586, + "bounds": { + "minlat": 40.7682852, + "minlon": -73.9534373, + "maxlat": 40.7684098, + "maxlon": -73.9533552 + }, + "nodes": [ + 12815741302, + 12815622097, + 12815741306 + ], + "geometry": [ + { "lat": 40.7682852, "lon": -73.9534373 }, + { "lat": 40.7683578, "lon": -73.9533893 }, + { "lat": 40.7684098, "lon": -73.9533552 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1384191157, + "bounds": { + "minlat": 40.8423036, + "minlon": -73.9879445, + "maxlat": 40.8425818, + "maxlon": -73.9877791 + }, + "nodes": [ + 12799712187, + 12815741349, + 12815741346, + 12815741347 + ], + "geometry": [ + { "lat": 40.8425818, "lon": -73.9877985 }, + { "lat": 40.8424731, "lon": -73.9878779 }, + { "lat": 40.8423861, "lon": -73.9879445 }, + { "lat": 40.8423036, "lon": -73.9877791 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1384191158, + "bounds": { + "minlat": 40.8423975, + "minlon": -73.9878779, + "maxlat": 40.8424731, + "maxlon": -73.9877216 + }, + "nodes": [ + 12815741348, + 12815741349 + ], + "geometry": [ + { "lat": 40.8423975, "lon": -73.9877216 }, + { "lat": 40.8424731, "lon": -73.9878779 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1384217300, + "bounds": { + "minlat": 40.7671858, + "minlon": -73.9774218, + "maxlat": 40.7672267, + "maxlon": -73.9767027 + }, + "nodes": [ + 1283225030, + 9906929062, + 4332676966, + 9906929063, + 1492283430, + 9906929064, + 9906929065, + 1492283429, + 42442142 + ], + "geometry": [ + { "lat": 40.7672267, "lon": -73.9774218 }, + { "lat": 40.7672080, "lon": -73.9773092 }, + { "lat": 40.7671960, "lon": -73.9772155 }, + { "lat": 40.7671883, "lon": -73.9771226 }, + { "lat": 40.7671858, "lon": -73.9770410 }, + { "lat": 40.7671860, "lon": -73.9769647 }, + { "lat": 40.7671889, "lon": -73.9768992 }, + { "lat": 40.7671935, "lon": -73.9768451 }, + { "lat": 40.7672027, "lon": -73.9767027 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "shared_lane", + "hgv": "no", + "highway": "pedestrian", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "Center Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "width": "10" + } +}, +{ + "type": "way", + "id": 1384217309, + "bounds": { + "minlat": 40.7943003, + "minlon": -73.9547813, + "maxlat": 40.7947264, + "maxlon": -73.9540674 + }, + "nodes": [ + 12815989140, + 3906849531, + 12815989139, + 3906849541, + 3906849517, + 12815989142, + 12815989141, + 12815989138, + 42434038 + ], + "geometry": [ + { "lat": 40.7947264, "lon": -73.9540674 }, + { "lat": 40.7946437, "lon": -73.9541748 }, + { "lat": 40.7945369, "lon": -73.9542817 }, + { "lat": 40.7944151, "lon": -73.9543922 }, + { "lat": 40.7943467, "lon": -73.9544752 }, + { "lat": 40.7943102, "lon": -73.9545647 }, + { "lat": 40.7943003, "lon": -73.9546379 }, + { "lat": 40.7943033, "lon": -73.9547058 }, + { "lat": 40.7943218, "lon": -73.9547813 } + ], + "tags": { + "access": "private", + "bicycle": "no", + "foot": "yes", + "highway": "service", + "lit": "yes", + "motor_vehicle": "private", + "service": "driveway", + "surface": "gravel" + } +}, +{ + "type": "way", + "id": 1384217318, + "bounds": { + "minlat": 40.7980896, + "minlon": -73.9526015, + "maxlat": 40.7982002, + "maxlon": -73.9524911 + }, + "nodes": [ + 12815989247, + 12815989266, + 12815989248, + 12815989249, + 12815989250, + 12815989251, + 12815989252, + 12815989253, + 12815989254, + 12815989265, + 12815989255, + 12815989256, + 12815989257, + 12815989258, + 12815989259, + 12815989260, + 12815989247 + ], + "geometry": [ + { "lat": 40.7981863, "lon": -73.9525496 }, + { "lat": 40.7981678, "lon": -73.9525628 }, + { "lat": 40.7981261, "lon": -73.9525941 }, + { "lat": 40.7981108, "lon": -73.9526015 }, + { "lat": 40.7980984, "lon": -73.9526001 }, + { "lat": 40.7980906, "lon": -73.9525868 }, + { "lat": 40.7980896, "lon": -73.9525664 }, + { "lat": 40.7980962, "lon": -73.9525491 }, + { "lat": 40.7981046, "lon": -73.9525400 }, + { "lat": 40.7981452, "lon": -73.9525090 }, + { "lat": 40.7981656, "lon": -73.9524942 }, + { "lat": 40.7981788, "lon": -73.9524911 }, + { "lat": 40.7981918, "lon": -73.9524973 }, + { "lat": 40.7981980, "lon": -73.9525103 }, + { "lat": 40.7982002, "lon": -73.9525249 }, + { "lat": 40.7981958, "lon": -73.9525375 }, + { "lat": 40.7981863, "lon": -73.9525496 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1384252423, + "bounds": { + "minlat": 40.8278763, + "minlon": -73.9867000, + "maxlat": 40.8285125, + "maxlon": -73.9864328 + }, + "nodes": [ + 12804020861, + 7538917953, + 13525882230, + 103245953, + 13525882229, + 12816180574 + ], + "geometry": [ + { "lat": 40.8278763, "lon": -73.9867000 }, + { "lat": 40.8279494, "lon": -73.9866692 }, + { "lat": 40.8282722, "lon": -73.9865329 }, + { "lat": 40.8283333, "lon": -73.9865071 }, + { "lat": 40.8283871, "lon": -73.9864848 }, + { "lat": 40.8285125, "lon": -73.9864328 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "2", + "name": "Anderson Avenue", + "ref": "CR 29", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 1384252424, + "bounds": { + "minlat": 40.8285125, + "minlon": -73.9864328, + "maxlat": 40.8286654, + "maxlon": -73.9863694 + }, + "nodes": [ + 12816180574, + 7539965788, + 7111640160 + ], + "geometry": [ + { "lat": 40.8285125, "lon": -73.9864328 }, + { "lat": 40.8286389, "lon": -73.9863804 }, + { "lat": 40.8286654, "lon": -73.9863694 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:both": "no", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Anderson Avenue", + "ref": "CR 29", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 1384329404, + "bounds": { + "minlat": 40.8297379, + "minlon": -73.9859345, + "maxlat": 40.8327851, + "maxlon": -73.9844890 + }, + "nodes": [ + 103237100, + 7111640178, + 5341032745, + 103245957, + 7542102276, + 5340742200, + 7542102275, + 103149446, + 6964929521, + 103245958, + 6964929518, + 7530193448, + 7529710503, + 7499421467, + 12816839945 + ], + "geometry": [ + { "lat": 40.8297379, "lon": -73.9859345 }, + { "lat": 40.8299630, "lon": -73.9858296 }, + { "lat": 40.8301415, "lon": -73.9857482 }, + { "lat": 40.8304152, "lon": -73.9855966 }, + { "lat": 40.8307865, "lon": -73.9853872 }, + { "lat": 40.8310304, "lon": -73.9852533 }, + { "lat": 40.8311399, "lon": -73.9852054 }, + { "lat": 40.8313989, "lon": -73.9850921 }, + { "lat": 40.8315332, "lon": -73.9850320 }, + { "lat": 40.8316005, "lon": -73.9850019 }, + { "lat": 40.8317517, "lon": -73.9849388 }, + { "lat": 40.8320599, "lon": -73.9848032 }, + { "lat": 40.8320786, "lon": -73.9847950 }, + { "lat": 40.8322632, "lon": -73.9847125 }, + { "lat": 40.8327851, "lon": -73.9844890 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "name": "Anderson Avenue", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 1384329405, + "bounds": { + "minlat": 40.8327851, + "minlon": -73.9844890, + "maxlat": 40.8331203, + "maxlon": -73.9843381 + }, + "nodes": [ + 12816839945, + 103245960, + 103162102 + ], + "geometry": [ + { "lat": 40.8327851, "lon": -73.9844890 }, + { "lat": 40.8328678, "lon": -73.9844536 }, + { "lat": 40.8331203, "lon": -73.9843381 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Anderson Avenue", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1384404636, + "bounds": { + "minlat": 40.7992288, + "minlon": -73.9552205, + "maxlat": 40.7994068, + "maxlon": -73.9547903 + }, + "nodes": [ + 8746131423, + 7784826662, + 2141026499 + ], + "geometry": [ + { "lat": 40.7992288, "lon": -73.9547903 }, + { "lat": 40.7993563, "lon": -73.9551010 }, + { "lat": 40.7994068, "lon": -73.9552205 } + ], + "tags": { + "alt_name": "Central Park North", + "cycleway": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "West 110th Street", + "old_name": "Cathedral Parkway", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1384483434, + "bounds": { + "minlat": 40.7982188, + "minlon": -73.9547903, + "maxlat": 40.7992288, + "maxlon": -73.9523960 + }, + "nodes": [ + 8746131423, + 1203883805, + 3099327964, + 42426374 + ], + "geometry": [ + { "lat": 40.7992288, "lon": -73.9547903 }, + { "lat": 40.7983188, "lon": -73.9526284 }, + { "lat": 40.7982754, "lon": -73.9525303 }, + { "lat": 40.7982188, "lon": -73.9523960 } + ], + "tags": { + "alt_name": "Central Park North", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "West 110th Street", + "old_name": "Cathedral Parkway", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1384483470, + "bounds": { + "minlat": 40.8004358, + "minlon": -73.9578670, + "maxlat": 40.8005207, + "maxlon": -73.9576591 + }, + "nodes": [ + 7024230434, + 7801821428, + 4016646214 + ], + "geometry": [ + { "lat": 40.8004358, "lon": -73.9576591 }, + { "lat": 40.8004771, "lon": -73.9577621 }, + { "lat": 40.8005207, "lon": -73.9578670 } + ], + "tags": { + "alt_name": "West 110th Street", + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "name": "Central Park North", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1384508540, + "bounds": { + "minlat": 40.8532074, + "minlon": -73.9742469, + "maxlat": 40.8533255, + "maxlon": -73.9740496 + }, + "nodes": [ + 12818594364, + 5108603762 + ], + "geometry": [ + { "lat": 40.8532074, "lon": -73.9740496 }, + { "lat": 40.8533255, "lon": -73.9742469 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Main Street", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Main", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 1384562047, + "bounds": { + "minlat": 40.8049428, + "minlon": -74.0177432, + "maxlat": 40.8051989, + "maxlon": -74.0175657 + }, + "nodes": [ + 12819094251, + 12819094252 + ], + "geometry": [ + { "lat": 40.8049428, "lon": -74.0177432 }, + { "lat": 40.8051989, "lon": -74.0175657 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1384666456, + "bounds": { + "minlat": 40.8389188, + "minlon": -73.9405351, + "maxlat": 40.8391430, + "maxlon": -73.9398593 + }, + "nodes": [ + 12819924597, + 12819924598, + 12819931902, + 12819924599, + 12819924600, + 12819931901 + ], + "geometry": [ + { "lat": 40.8389226, "lon": -73.9398593 }, + { "lat": 40.8389188, "lon": -73.9400165 }, + { "lat": 40.8389275, "lon": -73.9400616 }, + { "lat": 40.8389432, "lon": -73.9401421 }, + { "lat": 40.8389937, "lon": -73.9402436 }, + { "lat": 40.8391430, "lon": -73.9405351 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1385290396, + "bounds": { + "minlat": 40.7584415, + "minlon": -73.9526221, + "maxlat": 40.7586091, + "maxlon": -73.9523672 + }, + "nodes": [ + 12825397392, + 12825397393, + 12825397394, + 12825397395, + 12825397396, + 12825397397, + 12825397398, + 12825397399, + 12825397400, + 12825404901, + 12825404902, + 12825404903, + 12825404904 + ], + "geometry": [ + { "lat": 40.7584944, "lon": -73.9526221 }, + { "lat": 40.7584620, "lon": -73.9525542 }, + { "lat": 40.7584491, "lon": -73.9525202 }, + { "lat": 40.7584415, "lon": -73.9524778 }, + { "lat": 40.7584421, "lon": -73.9524261 }, + { "lat": 40.7584568, "lon": -73.9523880 }, + { "lat": 40.7584769, "lon": -73.9523708 }, + { "lat": 40.7585009, "lon": -73.9523672 }, + { "lat": 40.7585243, "lon": -73.9523729 }, + { "lat": 40.7585450, "lon": -73.9523894 }, + { "lat": 40.7585629, "lon": -73.9524117 }, + { "lat": 40.7585781, "lon": -73.9524429 }, + { "lat": 40.7586091, "lon": -73.9525117 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1385777142, + "bounds": { + "minlat": 40.7598284, + "minlon": -73.9145281, + "maxlat": 40.7599613, + "maxlon": -73.9141952 + }, + "nodes": [ + 12830246646, + 12830246647, + 12830246648, + 12830246649 + ], + "geometry": [ + { "lat": 40.7598284, "lon": -73.9145281 }, + { "lat": 40.7598488, "lon": -73.9144723 }, + { "lat": 40.7599231, "lon": -73.9142898 }, + { "lat": 40.7599613, "lon": -73.9141952 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1385788115, + "bounds": { + "minlat": 40.6994004, + "minlon": -73.9538223, + "maxlat": 40.7000980, + "maxlon": -73.9533668 + }, + "nodes": [ + 5368768968, + 5368768978, + 13670908129, + 13670908128, + 9755373213, + 42481529 + ], + "geometry": [ + { "lat": 40.7000980, "lon": -73.9538223 }, + { "lat": 40.7000418, "lon": -73.9537822 }, + { "lat": 40.6998811, "lon": -73.9536681 }, + { "lat": 40.6995819, "lon": -73.9534556 }, + { "lat": 40.6994839, "lon": -73.9533860 }, + { "lat": 40.6994004, "lon": -73.9533668 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes:bus": "1", + "name": "Lee Avenue", + "name:etymology:wikidata": "Q725907; Q709825", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Lee", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 1385788116, + "bounds": { + "minlat": 40.7000980, + "minlon": -73.9538223, + "maxlat": 40.7004488, + "maxlon": -73.9507580 + }, + "nodes": [ + 5368768968, + 1275778378, + 42475320, + 9755373239, + 42482207 + ], + "geometry": [ + { "lat": 40.7000980, "lon": -73.9538223 }, + { "lat": 40.7001102, "lon": -73.9537125 }, + { "lat": 40.7002945, "lon": -73.9521484 }, + { "lat": 40.7004398, "lon": -73.9508772 }, + { "lat": 40.7004488, "lon": -73.9507580 } + ], + "tags": { + "highway": "residential", + "name": "Wallabout Street", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wallabout", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1385788117, + "bounds": { + "minlat": 40.6997080, + "minlon": -73.9571670, + "maxlat": 40.7000620, + "maxlon": -73.9541400 + }, + "nodes": [ + 1275778429, + 9755372104, + 42492062, + 9755372105, + 9755372120, + 42492059 + ], + "geometry": [ + { "lat": 40.7000620, "lon": -73.9541400 }, + { "lat": 40.6999058, "lon": -73.9555436 }, + { "lat": 40.6998891, "lon": -73.9556937 }, + { "lat": 40.6998748, "lon": -73.9558097 }, + { "lat": 40.6997217, "lon": -73.9570545 }, + { "lat": 40.6997080, "lon": -73.9571670 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Wallabout Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Wallabout", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1385809307, + "bounds": { + "minlat": 40.8314368, + "minlon": -73.9468720, + "maxlat": 40.8315206, + "maxlon": -73.9466740 + }, + "nodes": [ + 561035369, + 42428953 + ], + "geometry": [ + { "lat": 40.8314368, "lon": -73.9466740 }, + { "lat": 40.8315206, "lon": -73.9468720 } + ], + "tags": { + "highway": "residential", + "name": "West 153rd Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "153rd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1385809308, + "bounds": { + "minlat": 40.8308954, + "minlon": -73.9473375, + "maxlat": 40.8315206, + "maxlon": -73.9468720 + }, + "nodes": [ + 42428953, + 11191773483, + 11191773467, + 42428951 + ], + "geometry": [ + { "lat": 40.8315206, "lon": -73.9468720 }, + { "lat": 40.8314595, "lon": -73.9469173 }, + { "lat": 40.8309527, "lon": -73.9472948 }, + { "lat": 40.8308954, "lon": -73.9473375 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1386687665, + "bounds": { + "minlat": 40.7947414, + "minlon": -73.9324108, + "maxlat": 40.7948649, + "maxlon": -73.9323226 + }, + "nodes": [ + 4443803073, + 6216836430, + 4443803075 + ], + "geometry": [ + { "lat": 40.7947414, "lon": -73.9324108 }, + { "lat": 40.7948468, "lon": -73.9323365 }, + { "lat": 40.7948649, "lon": -73.9323226 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1387012388, + "bounds": { + "minlat": 40.7711787, + "minlon": -73.9870288, + "maxlat": 40.7713218, + "maxlon": -73.9869244 + }, + "nodes": [ + 12840113951, + 12214804052, + 12840113950 + ], + "geometry": [ + { "lat": 40.7711787, "lon": -73.9870288 }, + { "lat": 40.7712668, "lon": -73.9869645 }, + { "lat": 40.7713218, "lon": -73.9869244 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1387012389, + "bounds": { + "minlat": 40.7713944, + "minlon": -73.9868713, + "maxlat": 40.7715315, + "maxlon": -73.9867712 + }, + "nodes": [ + 12840113945, + 12840113944 + ], + "geometry": [ + { "lat": 40.7713944, "lon": -73.9868713 }, + { "lat": 40.7715315, "lon": -73.9867712 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1387012390, + "bounds": { + "minlat": 40.7715315, + "minlon": -73.9867712, + "maxlat": 40.7717899, + "maxlon": -73.9865812 + }, + "nodes": [ + 12840113944, + 2710204291, + 42421982, + 7341396374, + 12840113949 + ], + "geometry": [ + { "lat": 40.7715315, "lon": -73.9867712 }, + { "lat": 40.7716059, "lon": -73.9867169 }, + { "lat": 40.7716605, "lon": -73.9866770 }, + { "lat": 40.7717189, "lon": -73.9866329 }, + { "lat": 40.7717899, "lon": -73.9865812 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1387012392, + "bounds": { + "minlat": 40.7717899, + "minlon": -73.9865812, + "maxlat": 40.7719460, + "maxlon": -73.9864678 + }, + "nodes": [ + 12840113949, + 12840113948 + ], + "geometry": [ + { "lat": 40.7717899, "lon": -73.9865812 }, + { "lat": 40.7719460, "lon": -73.9864678 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1387012394, + "bounds": { + "minlat": 40.7721529, + "minlon": -73.9863173, + "maxlat": 40.7722805, + "maxlon": -73.9862242 + }, + "nodes": [ + 12840113946, + 7050687063, + 7050687060 + ], + "geometry": [ + { "lat": 40.7721529, "lon": -73.9863173 }, + { "lat": 40.7722069, "lon": -73.9862780 }, + { "lat": 40.7722805, "lon": -73.9862242 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1387012396, + "bounds": { + "minlat": 40.7719460, + "minlon": -73.9864678, + "maxlat": 40.7720166, + "maxlon": -73.9864164 + }, + "nodes": [ + 12840113948, + 12840113947 + ], + "geometry": [ + { "lat": 40.7719460, "lon": -73.9864678 }, + { "lat": 40.7720166, "lon": -73.9864164 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1387012397, + "bounds": { + "minlat": 40.7713218, + "minlon": -73.9869244, + "maxlat": 40.7713944, + "maxlon": -73.9868713 + }, + "nodes": [ + 12840113950, + 12840113945 + ], + "geometry": [ + { "lat": 40.7713218, "lon": -73.9869244 }, + { "lat": 40.7713944, "lon": -73.9868713 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1387012398, + "bounds": { + "minlat": 40.7710474, + "minlon": -73.9871245, + "maxlat": 40.7711787, + "maxlon": -73.9870288 + }, + "nodes": [ + 1241742743, + 7341373902, + 12840113951 + ], + "geometry": [ + { "lat": 40.7710474, "lon": -73.9871245 }, + { "lat": 40.7711260, "lon": -73.9870673 }, + { "lat": 40.7711787, "lon": -73.9870288 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1387816229, + "bounds": { + "minlat": 40.7140621, + "minlon": -73.9252070, + "maxlat": 40.7144371, + "maxlon": -73.9251979 + }, + "nodes": [ + 12847161630, + 12847161684, + 12847161675, + 12847161632 + ], + "geometry": [ + { "lat": 40.7140621, "lon": -73.9251979 }, + { "lat": 40.7141418, "lon": -73.9252045 }, + { "lat": 40.7141786, "lon": -73.9252048 }, + { "lat": 40.7144371, "lon": -73.9252070 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1387816232, + "bounds": { + "minlat": 40.7136773, + "minlon": -73.9256314, + "maxlat": 40.7138102, + "maxlon": -73.9252113 + }, + "nodes": [ + 12847161679, + 12847161653, + 12847161681, + 12847161666 + ], + "geometry": [ + { "lat": 40.7138102, "lon": -73.9256314 }, + { "lat": 40.7136773, "lon": -73.9255708 }, + { "lat": 40.7137267, "lon": -73.9254033 }, + { "lat": 40.7137832, "lon": -73.9252113 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1387816233, + "bounds": { + "minlat": 40.7140393, + "minlon": -73.9246913, + "maxlat": 40.7143229, + "maxlon": -73.9246308 + }, + "nodes": [ + 12847161652, + 12847161662, + 12847161635, + 12847161655 + ], + "geometry": [ + { "lat": 40.7140393, "lon": -73.9246308 }, + { "lat": 40.7141176, "lon": -73.9246448 }, + { "lat": 40.7141406, "lon": -73.9246500 }, + { "lat": 40.7143229, "lon": -73.9246913 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1387816244, + "bounds": { + "minlat": 40.7137267, + "minlon": -73.9254792, + "maxlat": 40.7139707, + "maxlon": -73.9254033 + }, + "nodes": [ + 12847161673, + 12847161644, + 12847161657, + 12847161681 + ], + "geometry": [ + { "lat": 40.7139707, "lon": -73.9254792 }, + { "lat": 40.7138560, "lon": -73.9254556 }, + { "lat": 40.7138351, "lon": -73.9254477 }, + { "lat": 40.7137267, "lon": -73.9254033 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1387816261, + "bounds": { + "minlat": 40.7140844, + "minlon": -73.9257613, + "maxlat": 40.7142715, + "maxlon": -73.9257526 + }, + "nodes": [ + 12847161645, + 12847161664, + 12847161670, + 12847161667 + ], + "geometry": [ + { "lat": 40.7140844, "lon": -73.9257534 }, + { "lat": 40.7141632, "lon": -73.9257526 }, + { "lat": 40.7141822, "lon": -73.9257541 }, + { "lat": 40.7142715, "lon": -73.9257613 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1387816269, + "bounds": { + "minlat": 40.7097578, + "minlon": -73.9279310, + "maxlat": 40.7099470, + "maxlon": -73.9271727 + }, + "nodes": [ + 12847161669, + 12847161665, + 12847161646, + 12847161637 + ], + "geometry": [ + { "lat": 40.7097578, "lon": -73.9279310 }, + { "lat": 40.7097887, "lon": -73.9278486 }, + { "lat": 40.7097921, "lon": -73.9278340 }, + { "lat": 40.7099470, "lon": -73.9271727 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1387820924, + "bounds": { + "minlat": 40.7599959, + "minlon": -73.9626209, + "maxlat": 40.7602893, + "maxlon": -73.9619167 + }, + "nodes": [ + 3785591409, + 371037407, + 371037408 + ], + "geometry": [ + { "lat": 40.7602893, "lon": -73.9626209 }, + { "lat": 40.7602714, "lon": -73.9625762 }, + { "lat": 40.7599959, "lon": -73.9619167 } + ], + "tags": { + "bicycle": "no", + "foot": "yes", + "hgv": "no", + "highway": "pedestrian", + "motor_vehicle": "no", + "name": "Queensboro Bridge Outer Roadway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1387914876, + "bounds": { + "minlat": 40.8302917, + "minlon": -73.9515538, + "maxlat": 40.8307638, + "maxlon": -73.9513527 + }, + "nodes": [ + 3273684037, + 3273684038, + 3273684039, + 3273684040, + 3273684041 + ], + "geometry": [ + { "lat": 40.8307638, "lon": -73.9513527 }, + { "lat": 40.8306120, "lon": -73.9513706 }, + { "lat": 40.8305021, "lon": -73.9514085 }, + { "lat": 40.8303682, "lon": -73.9514843 }, + { "lat": 40.8302917, "lon": -73.9515538 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1388096421, + "bounds": { + "minlat": 40.7498992, + "minlon": -73.9377840, + "maxlat": 40.7499675, + "maxlon": -73.9377472 + }, + "nodes": [ + 6785727236, + 8315072990 + ], + "geometry": [ + { "lat": 40.7498992, "lon": -73.9377840 }, + { "lat": 40.7499675, "lon": -73.9377472 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "29th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1388096423, + "bounds": { + "minlat": 40.7498992, + "minlon": -73.9378516, + "maxlat": 40.7499279, + "maxlon": -73.9377840 + }, + "nodes": [ + 6785727236, + 12849687311 + ], + "geometry": [ + { "lat": 40.7498992, "lon": -73.9377840 }, + { "lat": 40.7499279, "lon": -73.9378516 } + ], + "tags": { + "cycleway:left": "shared_lane", + "highway": "tertiary", + "lanes": "1", + "name": "Queens Plaza North", + "name_1": "Bridge Plaza North", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1388116037, + "bounds": { + "minlat": 40.8525385, + "minlon": -73.9649511, + "maxlat": 40.8526582, + "maxlon": -73.9649268 + }, + "nodes": [ + 9551976629, + 10000901902, + 9551976628 + ], + "geometry": [ + { "lat": 40.8526582, "lon": -73.9649511 }, + { "lat": 40.8525612, "lon": -73.9649314 }, + { "lat": 40.8525385, "lon": -73.9649268 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1388116038, + "bounds": { + "minlat": 40.8526582, + "minlon": -73.9653462, + "maxlat": 40.8527073, + "maxlon": -73.9649511 + }, + "nodes": [ + 9551976629, + 10000920082, + 103280486 + ], + "geometry": [ + { "lat": 40.8526582, "lon": -73.9649511 }, + { "lat": 40.8526911, "lon": -73.9652157 }, + { "lat": 40.8527073, "lon": -73.9653462 } + ], + "tags": { + "highway": "primary", + "name": "Bruce Reynolds Boulevard", + "name_1": "Kelby Street", + "old_name": "Bridge Plaza South", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bridge Plaza South", + "tiger:name_base_1": "Kelby", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1388287829, + "bounds": { + "minlat": 40.7571285, + "minlon": -73.9728781, + "maxlat": 40.7575406, + "maxlon": -73.9719044 + }, + "nodes": [ + 42440459, + 10173080162, + 5475605298 + ], + "geometry": [ + { "lat": 40.7571285, "lon": -73.9719044 }, + { "lat": 40.7571744, "lon": -73.9720126 }, + { "lat": 40.7575406, "lon": -73.9728781 } + ], + "tags": { + "alt_name": "Jack Rudin Way", + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 51st Street", + "name:ru": "Восточная 51-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4640127", + "wikipedia": "en:51st Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1388322786, + "bounds": { + "minlat": 40.7642487, + "minlon": -73.9234566, + "maxlat": 40.7643507, + "maxlon": -73.9232433 + }, + "nodes": [ + 42849727, + 7668020441, + 12851670171 + ], + "geometry": [ + { "lat": 40.7643507, "lon": -73.9234566 }, + { "lat": 40.7642982, "lon": -73.9233468 }, + { "lat": 40.7642487, "lon": -73.9232433 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "31st Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1388377963, + "bounds": { + "minlat": 40.8178824, + "minlon": -73.9618103, + "maxlat": 40.8180007, + "maxlon": -73.9615372 + }, + "nodes": [ + 42424706, + 3570003194, + 12851749298 + ], + "geometry": [ + { "lat": 40.8180007, "lon": -73.9618103 }, + { "lat": 40.8179764, "lon": -73.9617541 }, + { "lat": 40.8178824, "lon": -73.9615372 } + ], + "tags": { + "cycleway:right": "lane", + "highway": "secondary", + "maxheight": "12'0\"", + "name": "Saint Clair Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Clair", + "tiger:name_type": "Pl", + "tiger:reviewed": "aerial", + "tiger:zip_left": "10027", + "tiger:zip_right": "10027" + } +}, +{ + "type": "way", + "id": 1388424763, + "bounds": { + "minlat": 40.7728141, + "minlon": -73.9857995, + "maxlat": 40.7728617, + "maxlon": -73.9856885 + }, + "nodes": [ + 12852256581, + 12852256586, + 12852256583 + ], + "geometry": [ + { "lat": 40.7728617, "lon": -73.9857995 }, + { "lat": 40.7728246, "lon": -73.9857130 }, + { "lat": 40.7728141, "lon": -73.9856885 } + ], + "tags": { + "highway": "service", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1388424764, + "bounds": { + "minlat": 40.7728141, + "minlon": -73.9856885, + "maxlat": 40.7728312, + "maxlon": -73.9856428 + }, + "nodes": [ + 12852256580, + 12852256583 + ], + "geometry": [ + { "lat": 40.7728312, "lon": -73.9856428 }, + { "lat": 40.7728141, "lon": -73.9856885 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1388424765, + "bounds": { + "minlat": 40.7727709, + "minlon": -73.9856885, + "maxlat": 40.7728141, + "maxlon": -73.9856868 + }, + "nodes": [ + 12852256583, + 12852256582 + ], + "geometry": [ + { "lat": 40.7728141, "lon": -73.9856885 }, + { "lat": 40.7727709, "lon": -73.9856868 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1388437537, + "bounds": { + "minlat": 40.7717367, + "minlon": -73.9862242, + "maxlat": 40.7722805, + "maxlon": -73.9849314 + }, + "nodes": [ + 12852416769, + 7050687064, + 7050687060 + ], + "geometry": [ + { "lat": 40.7717367, "lon": -73.9849314 }, + { "lat": 40.7722340, "lon": -73.9861133 }, + { "lat": 40.7722805, "lon": -73.9862242 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "yes", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 62nd Street", + "name:ru": "Западная 62-я стрит", + "name_1": "West 62 Street", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:both:restriction:conditional": "no_standing @ 07:00-19:00", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1388437538, + "bounds": { + "minlat": 40.7717084, + "minlon": -73.9849314, + "maxlat": 40.7717367, + "maxlon": -73.9848642 + }, + "nodes": [ + 12852416769, + 12852416770 + ], + "geometry": [ + { "lat": 40.7717367, "lon": -73.9849314 }, + { "lat": 40.7717084, "lon": -73.9848642 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "yes", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 62nd Street", + "name:ru": "Западная 62-я стрит", + "name_1": "West 62 Street", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction": "no_standing", + "parking:right:restriction:conditional": "no_standing @ 07:00-19:00", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1388437539, + "bounds": { + "minlat": 40.7714922, + "minlon": -73.9843509, + "maxlat": 40.7715968, + "maxlon": -73.9842752 + }, + "nodes": [ + 12852416771, + 12852416774, + 12852416773, + 12852416772 + ], + "geometry": [ + { "lat": 40.7715968, "lon": -73.9842752 }, + { "lat": 40.7715792, "lon": -73.9842864 }, + { "lat": 40.7715602, "lon": -73.9843004 }, + { "lat": 40.7714922, "lon": -73.9843509 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1388437540, + "bounds": { + "minlat": 40.7714787, + "minlon": -73.9848642, + "maxlat": 40.7717084, + "maxlon": -73.9843179 + }, + "nodes": [ + 12852416770, + 1241760168, + 1241760156, + 12852416772, + 12852416775 + ], + "geometry": [ + { "lat": 40.7717084, "lon": -73.9848642 }, + { "lat": 40.7716307, "lon": -73.9846794 }, + { "lat": 40.7715890, "lon": -73.9845801 }, + { "lat": 40.7714922, "lon": -73.9843509 }, + { "lat": 40.7714787, "lon": -73.9843179 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "yes", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 62nd Street", + "name:ru": "Западная 62-я стрит", + "name_1": "West 62 Street", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:both:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1388437541, + "bounds": { + "minlat": 40.7714155, + "minlon": -73.9843179, + "maxlat": 40.7714787, + "maxlon": -73.9841677 + }, + "nodes": [ + 12852416775, + 12852416776 + ], + "geometry": [ + { "lat": 40.7714787, "lon": -73.9843179 }, + { "lat": 40.7714155, "lon": -73.9841677 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "yes", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 62nd Street", + "name:ru": "Западная 62-я стрит", + "name_1": "West 62 Street", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:both:restriction": "no_standing", + "parking:left:restriction:hgv": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1388728385, + "bounds": { + "minlat": 40.8111831, + "minlon": -73.9540099, + "maxlat": 40.8113669, + "maxlon": -73.9535767 + }, + "nodes": [ + 12855037892, + 10171087499, + 42440144 + ], + "geometry": [ + { "lat": 40.8111831, "lon": -73.9535767 }, + { "lat": 40.8113166, "lon": -73.9538913 }, + { "lat": 40.8113669, "lon": -73.9540099 } + ], + "tags": { + "alt_name": "Dr. Martin Luther King, Jr. Boulevard", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "no", + "sidewalk:both": "separate", + "turn:lanes:forward": "left|through;right", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1388795373, + "bounds": { + "minlat": 40.7666471, + "minlon": -73.9390842, + "maxlat": 40.7668152, + "maxlon": -73.9386192 + }, + "nodes": [ + 4573599938, + 5538983372, + 12855645335 + ], + "geometry": [ + { "lat": 40.7668152, "lon": -73.9386192 }, + { "lat": 40.7666682, "lon": -73.9390272 }, + { "lat": 40.7666471, "lon": -73.9390842 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "separate", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1389034059, + "bounds": { + "minlat": 40.7650614, + "minlon": -73.9730317, + "maxlat": 40.7652985, + "maxlon": -73.9725696 + }, + "nodes": [ + 42453674, + 12857802432, + 42453676, + 2902437013, + 7830685367, + 7830685383, + 7830757200, + 7830685368, + 7830757202, + 42453674 + ], + "geometry": [ + { "lat": 40.7651788, "lon": -73.9725696 }, + { "lat": 40.7650993, "lon": -73.9726265 }, + { "lat": 40.7650614, "lon": -73.9726548 }, + { "lat": 40.7652192, "lon": -73.9730317 }, + { "lat": 40.7652669, "lon": -73.9729936 }, + { "lat": 40.7652299, "lon": -73.9729060 }, + { "lat": 40.7652985, "lon": -73.9728584 }, + { "lat": 40.7652671, "lon": -73.9727745 }, + { "lat": 40.7652368, "lon": -73.9727029 }, + { "lat": 40.7651788, "lon": -73.9725696 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "name": "Doris C. Freedman Plaza", + "website": "https://www.centralparknyc.org/locations/doris-c-freedman-plaza" + } +}, +{ + "type": "way", + "id": 1389208964, + "bounds": { + "minlat": 40.8529379, + "minlon": -74.0119036, + "maxlat": 40.8530192, + "maxlon": -74.0116170 + }, + "nodes": [ + 5674744858, + 5674744859 + ], + "geometry": [ + { "lat": 40.8530192, "lon": -74.0119036 }, + { "lat": 40.8529379, "lon": -74.0116170 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1389208967, + "bounds": { + "minlat": 40.8522360, + "minlon": -74.0109546, + "maxlat": 40.8525434, + "maxlon": -74.0106449 + }, + "nodes": [ + 12859925285, + 12859925914, + 12859925911, + 12859925916, + 12859925915, + 12859925917, + 12859925913, + 12859925912 + ], + "geometry": [ + { "lat": 40.8522712, "lon": -74.0109546 }, + { "lat": 40.8522391, "lon": -74.0108481 }, + { "lat": 40.8522360, "lon": -74.0108306 }, + { "lat": 40.8522376, "lon": -74.0108149 }, + { "lat": 40.8522427, "lon": -74.0108011 }, + { "lat": 40.8522514, "lon": -74.0107907 }, + { "lat": 40.8522606, "lon": -74.0107850 }, + { "lat": 40.8525434, "lon": -74.0106449 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1389208968, + "bounds": { + "minlat": 40.8528355, + "minlon": -74.0116646, + "maxlat": 40.8529379, + "maxlon": -74.0116170 + }, + "nodes": [ + 5674744859, + 12859925918 + ], + "geometry": [ + { "lat": 40.8529379, "lon": -74.0116170 }, + { "lat": 40.8528355, "lon": -74.0116646 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1389208969, + "bounds": { + "minlat": 40.8524824, + "minlon": -74.0118515, + "maxlat": 40.8525174, + "maxlon": -74.0118335 + }, + "nodes": [ + 12859925919, + 12859925920 + ], + "geometry": [ + { "lat": 40.8525174, "lon": -74.0118335 }, + { "lat": 40.8524824, "lon": -74.0118515 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1389209468, + "bounds": { + "minlat": 40.8517855, + "minlon": -74.0141903, + "maxlat": 40.8519351, + "maxlon": -74.0141246 + }, + "nodes": [ + 12859920661, + 5674744888 + ], + "geometry": [ + { "lat": 40.8519351, "lon": -74.0141246 }, + { "lat": 40.8517855, "lon": -74.0141903 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1389209469, + "bounds": { + "minlat": 40.8516887, + "minlon": -74.0138634, + "maxlat": 40.8517071, + "maxlon": -74.0137929 + }, + "nodes": [ + 12859930902, + 5674744892 + ], + "geometry": [ + { "lat": 40.8517071, "lon": -74.0138634 }, + { "lat": 40.8516887, "lon": -74.0137929 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1389209470, + "bounds": { + "minlat": 40.8517260, + "minlon": -74.0140054, + "maxlat": 40.8517448, + "maxlon": -74.0139296 + }, + "nodes": [ + 5674744889, + 12859930901 + ], + "geometry": [ + { "lat": 40.8517448, "lon": -74.0140054 }, + { "lat": 40.8517260, "lon": -74.0139296 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1389209471, + "bounds": { + "minlat": 40.8517071, + "minlon": -74.0139296, + "maxlat": 40.8517260, + "maxlon": -74.0138634 + }, + "nodes": [ + 12859930901, + 12859930902 + ], + "geometry": [ + { "lat": 40.8517260, "lon": -74.0139296 }, + { "lat": 40.8517071, "lon": -74.0138634 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1389209472, + "bounds": { + "minlat": 40.8516188, + "minlon": -74.0131122, + "maxlat": 40.8518655, + "maxlon": -74.0129955 + }, + "nodes": [ + 5674744898, + 5674744899 + ], + "geometry": [ + { "lat": 40.8518655, "lon": -74.0129955 }, + { "lat": 40.8516188, "lon": -74.0131122 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1389389731, + "bounds": { + "minlat": 40.7696444, + "minlon": -73.9815047, + "maxlat": 40.7697446, + "maxlon": -73.9813715 + }, + "nodes": [ + 12861369739, + 12861369740, + 12861369741, + 12861369742, + 12861369743, + 12861369744, + 12861369745, + 12861369746, + 12861369747, + 12861369748, + 12861369730, + 12861369733, + 12861369734, + 12861369735, + 12861369736, + 12861369737, + 12861369738, + 12861369731, + 12861369732, + 12861369739 + ], + "geometry": [ + { "lat": 40.7697119, "lon": -73.9813757 }, + { "lat": 40.7696949, "lon": -73.9813715 }, + { "lat": 40.7696778, "lon": -73.9813752 }, + { "lat": 40.7696627, "lon": -73.9813862 }, + { "lat": 40.7696513, "lon": -73.9814034 }, + { "lat": 40.7696449, "lon": -73.9814246 }, + { "lat": 40.7696444, "lon": -73.9814474 }, + { "lat": 40.7696497, "lon": -73.9814691 }, + { "lat": 40.7696602, "lon": -73.9814872 }, + { "lat": 40.7696747, "lon": -73.9814996 }, + { "lat": 40.7696916, "lon": -73.9815047 }, + { "lat": 40.7697070, "lon": -73.9815027 }, + { "lat": 40.7697212, "lon": -73.9814947 }, + { "lat": 40.7697329, "lon": -73.9814813 }, + { "lat": 40.7697409, "lon": -73.9814639 }, + { "lat": 40.7697446, "lon": -73.9814440 }, + { "lat": 40.7697436, "lon": -73.9814236 }, + { "lat": 40.7697380, "lon": -73.9814046 }, + { "lat": 40.7697268, "lon": -73.9813872 }, + { "lat": 40.7697119, "lon": -73.9813757 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1389389732, + "bounds": { + "minlat": 40.7695111, + "minlon": -73.9815682, + "maxlat": 40.7696497, + "maxlon": -73.9814691 + }, + "nodes": [ + 12861369746, + 12861369750, + 12861369749 + ], + "geometry": [ + { "lat": 40.7696497, "lon": -73.9814691 }, + { "lat": 40.7695686, "lon": -73.9815271 }, + { "lat": 40.7695111, "lon": -73.9815682 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1389767539, + "bounds": { + "minlat": 40.8205212, + "minlon": -73.9307543, + "maxlat": 40.8208023, + "maxlon": -73.9306958 + }, + "nodes": [ + 42733542, + 9910773634, + 9166288613, + 9910773633, + 595793833, + 7931142274 + ], + "geometry": [ + { "lat": 40.8205212, "lon": -73.9306958 }, + { "lat": 40.8205630, "lon": -73.9307130 }, + { "lat": 40.8205727, "lon": -73.9307169 }, + { "lat": 40.8205891, "lon": -73.9307222 }, + { "lat": 40.8205965, "lon": -73.9307253 }, + { "lat": 40.8208023, "lon": -73.9307543 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1390424493, + "bounds": { + "minlat": 40.7318727, + "minlon": -73.9518301, + "maxlat": 40.7321031, + "maxlon": -73.9494623 + }, + "nodes": [ + 42499729, + 8097159374, + 8097159320, + 2987758873 + ], + "geometry": [ + { "lat": 40.7321031, "lon": -73.9494623 }, + { "lat": 40.7320958, "lon": -73.9495375 }, + { "lat": 40.7318820, "lon": -73.9517347 }, + { "lat": 40.7318727, "lon": -73.9518301 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Java Street", + "name:etymology:wikidata": "Q3757", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1390424494, + "bounds": { + "minlat": 40.7318590, + "minlon": -73.9519711, + "maxlat": 40.7318727, + "maxlon": -73.9518301 + }, + "nodes": [ + 2987758873, + 2987758874 + ], + "geometry": [ + { "lat": 40.7318727, "lon": -73.9518301 }, + { "lat": 40.7318590, "lon": -73.9519711 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Java Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1390663065, + "bounds": { + "minlat": 40.8449121, + "minlon": -73.9360780, + "maxlat": 40.8461050, + "maxlon": -73.9332380 + }, + "nodes": [ + 42433058, + 5403873781, + 8722881615, + 42436807, + 8722881612, + 8723021844, + 42436806 + ], + "geometry": [ + { "lat": 40.8461050, "lon": -73.9360780 }, + { "lat": 40.8460580, "lon": -73.9359662 }, + { "lat": 40.8455625, "lon": -73.9347862 }, + { "lat": 40.8455200, "lon": -73.9346860 }, + { "lat": 40.8454835, "lon": -73.9345990 }, + { "lat": 40.8449658, "lon": -73.9333658 }, + { "lat": 40.8449121, "lon": -73.9332380 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 176th Street", + "name_1": "West 176 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "176th", + "tiger:name_base_1": "176", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1390663066, + "bounds": { + "minlat": 40.8441370, + "minlon": -73.9375180, + "maxlat": 40.8461050, + "maxlon": -73.9360780 + }, + "nodes": [ + 42429466, + 8722881597, + 8722881602, + 42433046, + 8722881604, + 8722881576, + 42433057, + 8722881570, + 5403873782, + 42433058 + ], + "geometry": [ + { "lat": 40.8441370, "lon": -73.9375180 }, + { "lat": 40.8442161, "lon": -73.9374606 }, + { "lat": 40.8447298, "lon": -73.9370855 }, + { "lat": 40.8447880, "lon": -73.9370430 }, + { "lat": 40.8448454, "lon": -73.9370010 }, + { "lat": 40.8453564, "lon": -73.9366266 }, + { "lat": 40.8454340, "lon": -73.9365700 }, + { "lat": 40.8455193, "lon": -73.9365077 }, + { "lat": 40.8460544, "lon": -73.9361151 }, + { "lat": 40.8461050, "lon": -73.9360780 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1390663067, + "bounds": { + "minlat": 40.8461050, + "minlon": -73.9360780, + "maxlat": 40.8463400, + "maxlon": -73.9359057 + }, + "nodes": [ + 42433058, + 5403873779, + 12872793594 + ], + "geometry": [ + { "lat": 40.8461050, "lon": -73.9360780 }, + { "lat": 40.8461613, "lon": -73.9360368 }, + { "lat": 40.8463400, "lon": -73.9359057 } + ], + "tags": { + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:backward": "left|none", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1390781994, + "bounds": { + "minlat": 40.7081860, + "minlon": -73.9096290, + "maxlat": 40.7083636, + "maxlon": -73.9093362 + }, + "nodes": [ + 12873867702, + 12873867704, + 12873867703 + ], + "geometry": [ + { "lat": 40.7083636, "lon": -73.9096290 }, + { "lat": 40.7082280, "lon": -73.9094055 }, + { "lat": 40.7081860, "lon": -73.9093362 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1390781995, + "bounds": { + "minlat": 40.7074079, + "minlon": -73.9162777, + "maxlat": 40.7075328, + "maxlon": -73.9160678 + }, + "nodes": [ + 12873867706, + 12873867708, + 12873867707 + ], + "geometry": [ + { "lat": 40.7074079, "lon": -73.9160678 }, + { "lat": 40.7074478, "lon": -73.9161348 }, + { "lat": 40.7075328, "lon": -73.9162777 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1390781996, + "bounds": { + "minlat": 40.7128554, + "minlon": -73.9201815, + "maxlat": 40.7132051, + "maxlon": -73.9198074 + }, + "nodes": [ + 12873867709, + 12873867711, + 12873867710 + ], + "geometry": [ + { "lat": 40.7128554, "lon": -73.9201815 }, + { "lat": 40.7131549, "lon": -73.9198611 }, + { "lat": 40.7132051, "lon": -73.9198074 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1390781997, + "bounds": { + "minlat": 40.7122269, + "minlon": -73.9194241, + "maxlat": 40.7126499, + "maxlon": -73.9188711 + }, + "nodes": [ + 12873867712, + 12873867715, + 12873867719, + 12873867713, + 12873867716, + 12873867714 + ], + "geometry": [ + { "lat": 40.7126499, "lon": -73.9188711 }, + { "lat": 40.7125970, "lon": -73.9189198 }, + { "lat": 40.7124770, "lon": -73.9190303 }, + { "lat": 40.7124312, "lon": -73.9190724 }, + { "lat": 40.7123389, "lon": -73.9192313 }, + { "lat": 40.7122269, "lon": -73.9194241 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1390781998, + "bounds": { + "minlat": 40.7123389, + "minlon": -73.9198399, + "maxlat": 40.7128521, + "maxlon": -73.9190303 + }, + "nodes": [ + 12873867716, + 12873867717, + 12873867718, + 12873867719 + ], + "geometry": [ + { "lat": 40.7123389, "lon": -73.9192313 }, + { "lat": 40.7126915, "lon": -73.9198399 }, + { "lat": 40.7128521, "lon": -73.9196780 }, + { "lat": 40.7124770, "lon": -73.9190303 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1390781999, + "bounds": { + "minlat": 40.7175635, + "minlon": -73.9317035, + "maxlat": 40.7179891, + "maxlon": -73.9315253 + }, + "nodes": [ + 5482303014, + 12873867721, + 12873867720 + ], + "geometry": [ + { "lat": 40.7179891, "lon": -73.9317035 }, + { "lat": 40.7178997, "lon": -73.9316661 }, + { "lat": 40.7175635, "lon": -73.9315253 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1390782000, + "bounds": { + "minlat": 40.7252021, + "minlon": -73.9373594, + "maxlat": 40.7259058, + "maxlon": -73.9368334 + }, + "nodes": [ + 12873867722, + 12873867727, + 12873867723, + 12873867724, + 12873867726, + 12873867725 + ], + "geometry": [ + { "lat": 40.7259058, "lon": -73.9369418 }, + { "lat": 40.7258976, "lon": -73.9370247 }, + { "lat": 40.7258648, "lon": -73.9373594 }, + { "lat": 40.7252021, "lon": -73.9372460 }, + { "lat": 40.7252339, "lon": -73.9369223 }, + { "lat": 40.7252426, "lon": -73.9368334 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1390896255, + "bounds": { + "minlat": 40.8529202, + "minlon": -73.9273850, + "maxlat": 40.8531188, + "maxlon": -73.9272390 + }, + "nodes": [ + 12874833993, + 9566892707, + 42442766 + ], + "geometry": [ + { "lat": 40.8529202, "lon": -73.9273850 }, + { "lat": 40.8530587, "lon": -73.9272832 }, + { "lat": 40.8531188, "lon": -73.9272390 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1390900598, + "bounds": { + "minlat": 40.8068316, + "minlon": -73.9610565, + "maxlat": 40.8071127, + "maxlon": -73.9608515 + }, + "nodes": [ + 42437142, + 3907629310, + 3347295531 + ], + "geometry": [ + { "lat": 40.8068316, "lon": -73.9610565 }, + { "lat": 40.8069192, "lon": -73.9609926 }, + { "lat": 40.8071127, "lon": -73.9608515 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1390900599, + "bounds": { + "minlat": 40.8071127, + "minlon": -73.9608515, + "maxlat": 40.8071759, + "maxlon": -73.9608046 + }, + "nodes": [ + 3347295531, + 12874926132 + ], + "geometry": [ + { "lat": 40.8071127, "lon": -73.9608515 }, + { "lat": 40.8071759, "lon": -73.9608046 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "layer": "-1", + "maxheight": "14'8\"", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tunnel": "yes", + "turn:lanes:backward": "left|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1390906310, + "bounds": { + "minlat": 40.8466279, + "minlon": -73.9909698, + "maxlat": 40.8471012, + "maxlon": -73.9904983 + }, + "nodes": [ + 103189433, + 10286887395, + 103093898 + ], + "geometry": [ + { "lat": 40.8466279, "lon": -73.9909698 }, + { "lat": 40.8467061, "lon": -73.9908879 }, + { "lat": 40.8471012, "lon": -73.9904983 } + ], + "tags": { + "highway": "secondary", + "name": "5th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1390906311, + "bounds": { + "minlat": 40.8437010, + "minlon": -73.9909698, + "maxlat": 40.8466279, + "maxlon": -73.9859520 + }, + "nodes": [ + 103189433, + 103255685, + 103238960, + 103286692, + 103166100, + 103193293, + 5978949674, + 103148035, + 5975035343, + 103227491 + ], + "geometry": [ + { "lat": 40.8466279, "lon": -73.9909698 }, + { "lat": 40.8462116, "lon": -73.9902481 }, + { "lat": 40.8457700, "lon": -73.9895390 }, + { "lat": 40.8453510, "lon": -73.9888130 }, + { "lat": 40.8449310, "lon": -73.9880850 }, + { "lat": 40.8445250, "lon": -73.9873810 }, + { "lat": 40.8443242, "lon": -73.9870320 }, + { "lat": 40.8441208, "lon": -73.9866789 }, + { "lat": 40.8440136, "lon": -73.9864469 }, + { "lat": 40.8437010, "lon": -73.9859520 } + ], + "tags": { + "highway": "residential", + "maxheight:signed": "no", + "name": "East Palisades Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Palisades", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1391153322, + "bounds": { + "minlat": 40.8332257, + "minlon": -73.9842892, + "maxlat": 40.8335789, + "maxlon": -73.9841311 + }, + "nodes": [ + 103162181, + 7501863581, + 12877160857 + ], + "geometry": [ + { "lat": 40.8332257, "lon": -73.9842892 }, + { "lat": 40.8333520, "lon": -73.9842327 }, + { "lat": 40.8335789, "lon": -73.9841311 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Anderson Avenue", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:backward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1391153323, + "bounds": { + "minlat": 40.8331203, + "minlon": -73.9843381, + "maxlat": 40.8332257, + "maxlon": -73.9842892 + }, + "nodes": [ + 103162102, + 103162181 + ], + "geometry": [ + { "lat": 40.8331203, "lon": -73.9843381 }, + { "lat": 40.8332257, "lon": -73.9842892 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Anderson Avenue", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:backward": "left|through", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 1391389310, + "bounds": { + "minlat": 40.8268649, + "minlon": -73.9382232, + "maxlat": 40.8270109, + "maxlon": -73.9381217 + }, + "nodes": [ + 12879244606, + 12879244608, + 12879244607 + ], + "geometry": [ + { "lat": 40.8270109, "lon": -73.9381217 }, + { "lat": 40.8269539, "lon": -73.9381613 }, + { "lat": 40.8268649, "lon": -73.9382232 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1391561448, + "bounds": { + "minlat": 40.7592633, + "minlon": -73.9518874, + "maxlat": 40.7595186, + "maxlon": -73.9516374 + }, + "nodes": [ + 2141121132, + 7247181415 + ], + "geometry": [ + { "lat": 40.7595186, "lon": -73.9516374 }, + { "lat": 40.7592633, "lon": -73.9518874 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "15 mph", + "name": "Main Street", + "name_1": "East Road", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1391825393, + "bounds": { + "minlat": 40.6997826, + "minlon": -73.9268925, + "maxlat": 40.7001941, + "maxlon": -73.9264462 + }, + "nodes": [ + 12883509022, + 12883509019, + 12883509020, + 12883509021, + 12883509022 + ], + "geometry": [ + { "lat": 40.7001941, "lon": -73.9265444 }, + { "lat": 40.7001390, "lon": -73.9264462 }, + { "lat": 40.6997826, "lon": -73.9267943 }, + { "lat": 40.6998377, "lon": -73.9268925 }, + { "lat": 40.7001941, "lon": -73.9265444 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1391825394, + "bounds": { + "minlat": 40.7001941, + "minlon": -73.9266955, + "maxlat": 40.7002881, + "maxlon": -73.9265444 + }, + "nodes": [ + 12883509018, + 12883509023, + 12883509022 + ], + "geometry": [ + { "lat": 40.7002881, "lon": -73.9266955 }, + { "lat": 40.7002573, "lon": -73.9266460 }, + { "lat": 40.7001941, "lon": -73.9265444 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1391825395, + "bounds": { + "minlat": 40.7014228, + "minlon": -73.9310162, + "maxlat": 40.7018534, + "maxlon": -73.9302651 + }, + "nodes": [ + 12883509025, + 12883509027, + 12883509028, + 12883509026 + ], + "geometry": [ + { "lat": 40.7014228, "lon": -73.9302651 }, + { "lat": 40.7014656, "lon": -73.9303397 }, + { "lat": 40.7018205, "lon": -73.9309587 }, + { "lat": 40.7018534, "lon": -73.9310162 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1391825396, + "bounds": { + "minlat": 40.7019445, + "minlon": -73.9312297, + "maxlat": 40.7021158, + "maxlon": -73.9309267 + }, + "nodes": [ + 12883509029, + 12883509031, + 12883509030 + ], + "geometry": [ + { "lat": 40.7019445, "lon": -73.9309267 }, + { "lat": 40.7019860, "lon": -73.9310000 }, + { "lat": 40.7021158, "lon": -73.9312297 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1391877246, + "bounds": { + "minlat": 40.8240286, + "minlon": -73.9753205, + "maxlat": 40.8245986, + "maxlon": -73.9749325 + }, + "nodes": [ + 103137123, + 103137124, + 103137125, + 5662656744, + 103137127, + 5362484697, + 103130962 + ], + "geometry": [ + { "lat": 40.8240286, "lon": -73.9753205 }, + { "lat": 40.8241937, "lon": -73.9752364 }, + { "lat": 40.8243340, "lon": -73.9751398 }, + { "lat": 40.8243918, "lon": -73.9750936 }, + { "lat": 40.8244703, "lon": -73.9750308 }, + { "lat": 40.8245622, "lon": -73.9749589 }, + { "lat": 40.8245986, "lon": -73.9749325 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1391877247, + "bounds": { + "minlat": 40.8237107, + "minlon": -73.9754783, + "maxlat": 40.8238451, + "maxlon": -73.9754172 + }, + "nodes": [ + 5688937320, + 103137122 + ], + "geometry": [ + { "lat": 40.8237107, "lon": -73.9754783 }, + { "lat": 40.8238451, "lon": -73.9754172 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1392257407, + "bounds": { + "minlat": 40.8502519, + "minlon": -73.9356855, + "maxlat": 40.8507740, + "maxlon": -73.9354260 + }, + "nodes": [ + 9550791839, + 9550791844, + 42429032 + ], + "geometry": [ + { "lat": 40.8502519, "lon": -73.9356855 }, + { "lat": 40.8507176, "lon": -73.9354542 }, + { "lat": 40.8507740, "lon": -73.9354260 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1392301909, + "bounds": { + "minlat": 40.8527790, + "minlon": -73.9274888, + "maxlat": 40.8529202, + "maxlon": -73.9273850 + }, + "nodes": [ + 12888390122, + 12874833993 + ], + "geometry": [ + { "lat": 40.8527790, "lon": -73.9274888 }, + { "lat": 40.8529202, "lon": -73.9273850 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1393560926, + "bounds": { + "minlat": 40.7561831, + "minlon": -73.9948807, + "maxlat": 40.7563620, + "maxlon": -73.9948455 + }, + "nodes": [ + 12899504182, + 12899504183, + 12899504184, + 12899504185, + 12899504188 + ], + "geometry": [ + { "lat": 40.7563620, "lon": -73.9948459 }, + { "lat": 40.7562912, "lon": -73.9948455 }, + { "lat": 40.7562426, "lon": -73.9948529 }, + { "lat": 40.7562040, "lon": -73.9948689 }, + { "lat": 40.7561831, "lon": -73.9948807 } + ], + "tags": { + "access": "customers", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1393560927, + "bounds": { + "minlat": 40.7560918, + "minlon": -73.9949433, + "maxlat": 40.7561831, + "maxlon": -73.9948807 + }, + "nodes": [ + 12899504188, + 12899504186, + 12899504187 + ], + "geometry": [ + { "lat": 40.7561831, "lon": -73.9948807 }, + { "lat": 40.7561686, "lon": -73.9948897 }, + { "lat": 40.7560918, "lon": -73.9949433 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1393747938, + "bounds": { + "minlat": 40.7228170, + "minlon": -73.9141147, + "maxlat": 40.7228930, + "maxlon": -73.9138630 + }, + "nodes": [ + 8288388976, + 597663716, + 2134455798, + 42854200 + ], + "geometry": [ + { "lat": 40.7228170, "lon": -73.9141147 }, + { "lat": 40.7228338, "lon": -73.9140591 }, + { "lat": 40.7228453, "lon": -73.9140210 }, + { "lat": 40.7228930, "lon": -73.9138630 } + ], + "tags": { + "highway": "tertiary", + "name": "Maspeth Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Maspeth", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11378", + "tiger:zip_right": "11378" + } +}, +{ + "type": "way", + "id": 1393753013, + "bounds": { + "minlat": 40.8529617, + "minlon": -73.9847230, + "maxlat": 40.8532895, + "maxlon": -73.9844367 + }, + "nodes": [ + 12901394782, + 12901394786, + 12901394783, + 12901394784, + 12901394787 + ], + "geometry": [ + { "lat": 40.8532895, "lon": -73.9847230 }, + { "lat": 40.8532761, "lon": -73.9845980 }, + { "lat": 40.8532654, "lon": -73.9844367 }, + { "lat": 40.8529617, "lon": -73.9844773 }, + { "lat": 40.8529716, "lon": -73.9846330 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1393753014, + "bounds": { + "minlat": 40.8529716, + "minlon": -73.9846330, + "maxlat": 40.8532761, + "maxlon": -73.9845980 + }, + "nodes": [ + 12901394786, + 12901394787 + ], + "geometry": [ + { "lat": 40.8532761, "lon": -73.9845980 }, + { "lat": 40.8529716, "lon": -73.9846330 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1393753015, + "bounds": { + "minlat": 40.8529716, + "minlon": -73.9847668, + "maxlat": 40.8529802, + "maxlon": -73.9846330 + }, + "nodes": [ + 12692293520, + 12901394787 + ], + "geometry": [ + { "lat": 40.8529802, "lon": -73.9847668 }, + { "lat": 40.8529716, "lon": -73.9846330 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1393855151, + "bounds": { + "minlat": 40.7572411, + "minlon": -73.9748716, + "maxlat": 40.7574223, + "maxlon": -73.9746573 + }, + "nodes": [ + 12902088128, + 4019305690, + 12902088115, + 2716012059, + 12902088116, + 12902088117, + 12902088118, + 12902088119, + 12902088120, + 12902088114, + 12902088113, + 12902088123, + 12902088124, + 12902088125, + 12902088121, + 12902088122, + 2716012065, + 2945827829, + 2716012412, + 12902088128 + ], + "geometry": [ + { "lat": 40.7573942, "lon": -73.9747244 }, + { "lat": 40.7574223, "lon": -73.9747915 }, + { "lat": 40.7574070, "lon": -73.9748026 }, + { "lat": 40.7573902, "lon": -73.9747944 }, + { "lat": 40.7573722, "lon": -73.9747928 }, + { "lat": 40.7573546, "lon": -73.9747980 }, + { "lat": 40.7573388, "lon": -73.9748094 }, + { "lat": 40.7573261, "lon": -73.9748263 }, + { "lat": 40.7573175, "lon": -73.9748472 }, + { "lat": 40.7572842, "lon": -73.9748716 }, + { "lat": 40.7572411, "lon": -73.9747688 }, + { "lat": 40.7572745, "lon": -73.9747445 }, + { "lat": 40.7572925, "lon": -73.9747461 }, + { "lat": 40.7573101, "lon": -73.9747409 }, + { "lat": 40.7573259, "lon": -73.9747295 }, + { "lat": 40.7573386, "lon": -73.9747126 }, + { "lat": 40.7573472, "lon": -73.9746917 }, + { "lat": 40.7573509, "lon": -73.9746684 }, + { "lat": 40.7573661, "lon": -73.9746573 }, + { "lat": 40.7573942, "lon": -73.9747244 } + ], + "tags": { + "alt_name": "East Side Access 50th Street Commons", + "area": "yes", + "highway": "pedestrian", + "name": "50th Street Commons", + "opening_hours": "Mo-Su 08:00-sunset", + "operator": "Metropolitan Transportation Authority" + } +}, +{ + "type": "way", + "id": 1394404547, + "bounds": { + "minlat": 40.7409037, + "minlon": -73.9074430, + "maxlat": 40.7410193, + "maxlon": -73.9070742 + }, + "nodes": [ + 12908215031, + 12908215054 + ], + "geometry": [ + { "lat": 40.7410193, "lon": -73.9074430 }, + { "lat": 40.7409037, "lon": -73.9070742 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1395311825, + "bounds": { + "minlat": 40.7241698, + "minlon": -73.9377106, + "maxlat": 40.7242061, + "maxlon": -73.9376210 + }, + "nodes": [ + 42464200, + 9929558957 + ], + "geometry": [ + { "lat": 40.7242061, "lon": -73.9376210 }, + { "lat": 40.7241698, "lon": -73.9377106 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1395321221, + "bounds": { + "minlat": 40.8093824, + "minlon": -73.9296227, + "maxlat": 40.8094099, + "maxlon": -73.9295812 + }, + "nodes": [ + 595801158, + 2348236928 + ], + "geometry": [ + { "lat": 40.8094099, "lon": -73.9296227 }, + { "lat": 40.8093824, "lon": -73.9295812 } + ], + "tags": { + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "source:name": "New York State Office of Cyber Security (OCS) StreetSegmentPublic Dataset (http://gis.ny.gov/gisdata/inventories/details.cfm?DSID=932)", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1395321222, + "bounds": { + "minlat": 40.8092592, + "minlon": -73.9294982, + "maxlat": 40.8093262, + "maxlon": -73.9293944 + }, + "nodes": [ + 567820429, + 595801154 + ], + "geometry": [ + { "lat": 40.8093262, "lon": -73.9294982 }, + { "lat": 40.8092592, "lon": -73.9293944 } + ], + "tags": { + "cycleway:left": "lane", + "hgv": "designated", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "source:name": "New York State Office of Cyber Security (OCS) StreetSegmentPublic Dataset (http://gis.ny.gov/gisdata/inventories/details.cfm?DSID=932)", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1395776672, + "bounds": { + "minlat": 40.7996080, + "minlon": -73.9379345, + "maxlat": 40.7998583, + "maxlon": -73.9377525 + }, + "nodes": [ + 12919727227, + 12919727229, + 12919727228 + ], + "geometry": [ + { "lat": 40.7996080, "lon": -73.9379345 }, + { "lat": 40.7996597, "lon": -73.9378969 }, + { "lat": 40.7998583, "lon": -73.9377525 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1395949595, + "bounds": { + "minlat": 40.8403336, + "minlon": -73.9698089, + "maxlat": 40.8404562, + "maxlon": -73.9696344 + }, + "nodes": [ + 12921090959, + 12921090962, + 7672312149, + 2349733079, + 3629342183 + ], + "geometry": [ + { "lat": 40.8403336, "lon": -73.9696344 }, + { "lat": 40.8403767, "lon": -73.9696616 }, + { "lat": 40.8404081, "lon": -73.9696977 }, + { "lat": 40.8404359, "lon": -73.9697493 }, + { "lat": 40.8404562, "lon": -73.9698089 } + ], + "tags": { + "highway": "residential", + "name": "Vela Way", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1395949596, + "bounds": { + "minlat": 40.8403302, + "minlon": -73.9698621, + "maxlat": 40.8403704, + "maxlon": -73.9696344 + }, + "nodes": [ + 12921090958, + 12921090961, + 12921090960, + 3629342182, + 12921090959 + ], + "geometry": [ + { "lat": 40.8403704, "lon": -73.9698621 }, + { "lat": 40.8403521, "lon": -73.9698103 }, + { "lat": 40.8403352, "lon": -73.9697503 }, + { "lat": 40.8403302, "lon": -73.9696991 }, + { "lat": 40.8403336, "lon": -73.9696344 } + ], + "tags": { + "highway": "residential", + "name": "Vela Way", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1396464324, + "bounds": { + "minlat": 40.7119279, + "minlon": -74.0040736, + "maxlat": 40.7119599, + "maxlon": -74.0040307 + }, + "nodes": [ + 12924890411, + 486819535 + ], + "geometry": [ + { "lat": 40.7119279, "lon": -74.0040307 }, + { "lat": 40.7119599, "lon": -74.0040736 } + ], + "tags": { + "bicycle": "use_sidepath", + "bus": "no", + "change": "no", + "destination:lanes": "Centre Street;Chambers Street|Park Row South", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Centre Street", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "through|slight_right" + } +}, +{ + "type": "way", + "id": 1396464325, + "bounds": { + "minlat": 40.7117892, + "minlon": -74.0040307, + "maxlat": 40.7119279, + "maxlon": -74.0038627 + }, + "nodes": [ + 12924890405, + 12924890411 + ], + "geometry": [ + { "lat": 40.7117892, "lon": -74.0038627 }, + { "lat": 40.7119279, "lon": -74.0040307 } + ], + "tags": { + "bicycle": "use_sidepath", + "bridge": "yes", + "bus": "no", + "change": "no", + "destination:lanes": "Centre Street;Chambers Street|Park Row South", + "expressway": "yes", + "foot": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "layer": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "through|slight_right" + } +}, +{ + "type": "way", + "id": 1396464326, + "bounds": { + "minlat": 40.7098483, + "minlon": -74.0011123, + "maxlat": 40.7101928, + "maxlon": -74.0006453 + }, + "nodes": [ + 12924890409, + 9907939560, + 9907939561, + 4158707240, + 1541937888, + 3884569931 + ], + "geometry": [ + { "lat": 40.7098483, "lon": -74.0006453 }, + { "lat": 40.7099265, "lon": -74.0007355 }, + { "lat": 40.7100087, "lon": -74.0008343 }, + { "lat": 40.7100909, "lon": -74.0009391 }, + { "lat": 40.7101303, "lon": -74.0009950 }, + { "lat": 40.7101928, "lon": -74.0011123 } + ], + "tags": { + "change": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "maxspeed": "20 mph", + "name": "Robert F. Wagner Sr. Place", + "name:etymology:wikidata": "Q213721", + "name:ko": "로버트 F. 와그너 시니어 플레이스", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|left|through;right|right" + } +}, +{ + "type": "way", + "id": 1396464327, + "bounds": { + "minlat": 40.7103823, + "minlon": -74.0026237, + "maxlat": 40.7107999, + "maxlon": -74.0021033 + }, + "nodes": [ + 12924890406, + 12924890408 + ], + "geometry": [ + { "lat": 40.7103823, "lon": -74.0021033 }, + { "lat": 40.7107999, "lon": -74.0026237 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "lit": "yes", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "|right" + } +}, +{ + "type": "way", + "id": 1396464328, + "bounds": { + "minlat": 40.7107999, + "minlon": -74.0031140, + "maxlat": 40.7111862, + "maxlon": -74.0026237 + }, + "nodes": [ + 12924890408, + 4158753824 + ], + "geometry": [ + { "lat": 40.7107999, "lon": -74.0026237 }, + { "lat": 40.7111862, "lon": -74.0031140 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bus": "no", + "destination:lanes": "Park Row South;Chambers Street;Centre Street|Pearl Street;FDR Drive|FDR Drive North", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "lit": "yes", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "|right|right" + } +}, +{ + "type": "way", + "id": 1396611411, + "bounds": { + "minlat": 40.7648423, + "minlon": -73.9721171, + "maxlat": 40.7655257, + "maxlon": -73.9704968 + }, + "nodes": [ + 42436511, + 10171007676, + 8254176967, + 7797632752, + 42436510 + ], + "geometry": [ + { "lat": 40.7648423, "lon": -73.9704968 }, + { "lat": 40.7648901, "lon": -73.9706103 }, + { "lat": 40.7651400, "lon": -73.9712027 }, + { "lat": 40.7654742, "lon": -73.9719952 }, + { "lat": 40.7655257, "lon": -73.9721171 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 61st Street", + "name:ru": "Восточная 61-я стрит", + "name_1": "East 61 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1396611412, + "bounds": { + "minlat": 40.7647205, + "minlon": -73.9704968, + "maxlat": 40.7648423, + "maxlon": -73.9702074 + }, + "nodes": [ + 12926009471, + 10171007674, + 42436511 + ], + "geometry": [ + { "lat": 40.7647205, "lon": -73.9702074 }, + { "lat": 40.7647982, "lon": -73.9703921 }, + { "lat": 40.7648423, "lon": -73.9704968 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 61st Street", + "name:ru": "Восточная 61-я стрит", + "name_1": "East 61 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1396623172, + "bounds": { + "minlat": 40.7437695, + "minlon": -73.9764088, + "maxlat": 40.7439461, + "maxlon": -73.9762544 + }, + "nodes": [ + 7735190138, + 12926045992, + 12926045993 + ], + "geometry": [ + { "lat": 40.7439461, "lon": -73.9762544 }, + { "lat": 40.7437938, "lon": -73.9763560 }, + { "lat": 40.7437695, "lon": -73.9764088 } + ], + "tags": { + "bicycle": "no", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1409542754, + "bounds": { + "minlat": 40.8296117, + "minlon": -73.9501081, + "maxlat": 40.8299270, + "maxlon": -73.9500027 + }, + "nodes": [ + 12952282814, + 42441958, + 11193743240, + 7738238872, + 42434343 + ], + "geometry": [ + { "lat": 40.8299270, "lon": -73.9500027 }, + { "lat": 40.8297962, "lon": -73.9500604 }, + { "lat": 40.8296723, "lon": -73.9500938 }, + { "lat": 40.8296339, "lon": -73.9501027 }, + { "lat": 40.8296117, "lon": -73.9501081 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1409542755, + "bounds": { + "minlat": 40.8258457, + "minlon": -73.9530658, + "maxlat": 40.8264089, + "maxlon": -73.9526191 + }, + "nodes": [ + 11193723031, + 12952255694, + 42441952 + ], + "geometry": [ + { "lat": 40.8264089, "lon": -73.9526191 }, + { "lat": 40.8263003, "lon": -73.9526973 }, + { "lat": 40.8258457, "lon": -73.9530658 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1409542756, + "bounds": { + "minlat": 40.8258092, + "minlon": -73.9529804, + "maxlat": 40.8263662, + "maxlon": -73.9525319 + }, + "nodes": [ + 12952282847, + 12952282848, + 12952282849, + 12952282850, + 12952282851, + 12952282852, + 12952282853 + ], + "geometry": [ + { "lat": 40.8258092, "lon": -73.9529804 }, + { "lat": 40.8258585, "lon": -73.9529373 }, + { "lat": 40.8259226, "lon": -73.9528848 }, + { "lat": 40.8260219, "lon": -73.9528043 }, + { "lat": 40.8261724, "lon": -73.9526853 }, + { "lat": 40.8263151, "lon": -73.9525750 }, + { "lat": 40.8263662, "lon": -73.9525319 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1409542757, + "bounds": { + "minlat": 40.8263662, + "minlon": -73.9525319, + "maxlat": 40.8270687, + "maxlon": -73.9519675 + }, + "nodes": [ + 12952282853, + 12952282854, + 12952282855, + 12952282861, + 12952282856, + 12952282857, + 12952282858 + ], + "geometry": [ + { "lat": 40.8263662, "lon": -73.9525319 }, + { "lat": 40.8264207, "lon": -73.9524858 }, + { "lat": 40.8264728, "lon": -73.9524438 }, + { "lat": 40.8267956, "lon": -73.9521845 }, + { "lat": 40.8269117, "lon": -73.9520905 }, + { "lat": 40.8269756, "lon": -73.9520405 }, + { "lat": 40.8270687, "lon": -73.9519675 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1409542758, + "bounds": { + "minlat": 40.8270687, + "minlon": -73.9520649, + "maxlat": 40.8271028, + "maxlon": -73.9519675 + }, + "nodes": [ + 12952282858, + 42434264 + ], + "geometry": [ + { "lat": 40.8270687, "lon": -73.9519675 }, + { "lat": 40.8271028, "lon": -73.9520649 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "incline": "down", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 145th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "145th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1409542759, + "bounds": { + "minlat": 40.8270687, + "minlon": -73.9519675, + "maxlat": 40.8295802, + "maxlon": -73.9500237 + }, + "nodes": [ + 12952282858, + 12952282862, + 12952282863, + 12952282864, + 12952282865, + 12952282866, + 12952282867, + 12952282868, + 12952282869, + 12952282870, + 12952282871, + 12952282872, + 12952282873, + 12952282874, + 12952282875, + 12952282876, + 12952282877, + 12952282878, + 12952282879, + 12952282880, + 12952282881, + 12952282882, + 12952282883, + 12952282884, + 12952282885 + ], + "geometry": [ + { "lat": 40.8270687, "lon": -73.9519675 }, + { "lat": 40.8271704, "lon": -73.9518628 }, + { "lat": 40.8272543, "lon": -73.9517554 }, + { "lat": 40.8273753, "lon": -73.9515991 }, + { "lat": 40.8274622, "lon": -73.9514881 }, + { "lat": 40.8276073, "lon": -73.9513208 }, + { "lat": 40.8276590, "lon": -73.9512742 }, + { "lat": 40.8277734, "lon": -73.9511871 }, + { "lat": 40.8278932, "lon": -73.9511009 }, + { "lat": 40.8280282, "lon": -73.9510006 }, + { "lat": 40.8282288, "lon": -73.9508592 }, + { "lat": 40.8282812, "lon": -73.9508221 }, + { "lat": 40.8283399, "lon": -73.9507794 }, + { "lat": 40.8284743, "lon": -73.9506803 }, + { "lat": 40.8286031, "lon": -73.9505867 }, + { "lat": 40.8287704, "lon": -73.9504624 }, + { "lat": 40.8288571, "lon": -73.9504018 }, + { "lat": 40.8289116, "lon": -73.9503631 }, + { "lat": 40.8289960, "lon": -73.9503028 }, + { "lat": 40.8290909, "lon": -73.9502409 }, + { "lat": 40.8291999, "lon": -73.9501795 }, + { "lat": 40.8293061, "lon": -73.9501274 }, + { "lat": 40.8294188, "lon": -73.9500789 }, + { "lat": 40.8295250, "lon": -73.9500404 }, + { "lat": 40.8295802, "lon": -73.9500237 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1409542760, + "bounds": { + "minlat": 40.8295802, + "minlon": -73.9500237, + "maxlat": 40.8296438, + "maxlon": -73.9500111 + }, + "nodes": [ + 12952282885, + 11193743239 + ], + "geometry": [ + { "lat": 40.8295802, "lon": -73.9500237 }, + { "lat": 40.8296438, "lon": -73.9500111 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1409566847, + "bounds": { + "minlat": 40.7185172, + "minlon": -73.9543717, + "maxlat": 40.7186755, + "maxlon": -73.9542003 + }, + "nodes": [ + 12952466775, + 12952466706, + 8617784295, + 12952466774 + ], + "geometry": [ + { "lat": 40.7185172, "lon": -73.9543717 }, + { "lat": 40.7185699, "lon": -73.9543146 }, + { "lat": 40.7185794, "lon": -73.9543044 }, + { "lat": 40.7186755, "lon": -73.9542003 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1409699231, + "bounds": { + "minlat": 40.8530620, + "minlon": -73.9337034, + "maxlat": 40.8541572, + "maxlon": -73.9309960 + }, + "nodes": [ + 42433080, + 5403868149, + 8740550851, + 42436293, + 8740550854, + 7686600775, + 1761599521, + 42429083 + ], + "geometry": [ + { "lat": 40.8530620, "lon": -73.9309960 }, + { "lat": 40.8531182, "lon": -73.9311293 }, + { "lat": 40.8535401, "lon": -73.9321288 }, + { "lat": 40.8535820, "lon": -73.9322280 }, + { "lat": 40.8536243, "lon": -73.9323296 }, + { "lat": 40.8538793, "lon": -73.9329427 }, + { "lat": 40.8541399, "lon": -73.9335694 }, + { "lat": 40.8541572, "lon": -73.9337034 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "no", + "name": "West 187th Street", + "name_1": "West 187 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "187th", + "tiger:name_base_1": "187", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1409699232, + "bounds": { + "minlat": 40.8530620, + "minlon": -73.9309960, + "maxlat": 40.8536850, + "maxlon": -73.9305390 + }, + "nodes": [ + 42433080, + 5403868152, + 5403868147, + 42433097 + ], + "geometry": [ + { "lat": 40.8530620, "lon": -73.9309960 }, + { "lat": 40.8531372, "lon": -73.9309408 }, + { "lat": 40.8536343, "lon": -73.9305761 }, + { "lat": 40.8536850, "lon": -73.9305390 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1409699233, + "bounds": { + "minlat": 40.8527903, + "minlon": -73.9311949, + "maxlat": 40.8530620, + "maxlon": -73.9309960 + }, + "nodes": [ + 12953580081, + 5403868150, + 42433080 + ], + "geometry": [ + { "lat": 40.8527903, "lon": -73.9311949 }, + { "lat": 40.8529951, "lon": -73.9310452 }, + { "lat": 40.8530620, "lon": -73.9309960 } + ], + "tags": { + "cycleway": "lane", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1409843161, + "bounds": { + "minlat": 40.8505426, + "minlon": -73.9155182, + "maxlat": 40.8506445, + "maxlon": -73.9153894 + }, + "nodes": [ + 12697058594, + 12463546969, + 2907939233 + ], + "geometry": [ + { "lat": 40.8506445, "lon": -73.9153894 }, + { "lat": 40.8506102, "lon": -73.9154327 }, + { "lat": 40.8505426, "lon": -73.9155182 } + ], + "tags": { + "alt_name": "Doctor Martin Luther King Junior Boulevard", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "name": "University Avenue", + "name:etymology:wikidata": "Q49210", + "oneway": "yes", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1409854660, + "bounds": { + "minlat": 40.7256425, + "minlon": -73.9777249, + "maxlat": 40.7258818, + "maxlon": -73.9775411 + }, + "nodes": [ + 12954862731, + 12179582414, + 12179582417, + 8309479410, + 42430938 + ], + "geometry": [ + { "lat": 40.7256425, "lon": -73.9777249 }, + { "lat": 40.7257809, "lon": -73.9776283 }, + { "lat": 40.7257965, "lon": -73.9776173 }, + { "lat": 40.7258239, "lon": -73.9775922 }, + { "lat": 40.7258818, "lon": -73.9775411 } + ], + "tags": { + "alt_name": "Loisaida Avenue", + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1409854661, + "bounds": { + "minlat": 40.7295900, + "minlon": -73.9748590, + "maxlat": 40.7297709, + "maxlon": -73.9747274 + }, + "nodes": [ + 1989931117, + 4161568865, + 42437830 + ], + "geometry": [ + { "lat": 40.7295900, "lon": -73.9748590 }, + { "lat": 40.7297217, "lon": -73.9747632 }, + { "lat": 40.7297709, "lon": -73.9747274 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Avenue C", + "name:ru": "Авеню C", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q790554", + "wikipedia": "en:Avenue C (Manhattan)" + } +}, +{ + "type": "way", + "id": 1410428192, + "bounds": { + "minlat": 40.7105518, + "minlon": -74.0038182, + "maxlat": 40.7105895, + "maxlon": -74.0037754 + }, + "nodes": [ + 42459820, + 12960001934 + ], + "geometry": [ + { "lat": 40.7105895, "lon": -74.0037754 }, + { "lat": 40.7105518, "lon": -74.0038182 } + ], + "tags": { + "change": "no", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "20 mph", + "name": "Gold Street", + "name:ru": "Голд-стрит", + "oneway": "no", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through" + } +}, +{ + "type": "way", + "id": 1410428193, + "bounds": { + "minlat": 40.7103818, + "minlon": -74.0041796, + "maxlat": 40.7105165, + "maxlon": -74.0040109 + }, + "nodes": [ + 12960001935, + 12960001937, + 12960001936 + ], + "geometry": [ + { "lat": 40.7105165, "lon": -74.0041796 }, + { "lat": 40.7104501, "lon": -74.0040965 }, + { "lat": 40.7103818, "lon": -74.0040109 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1410480703, + "bounds": { + "minlat": 40.7080602, + "minlon": -74.0034478, + "maxlat": 40.7080995, + "maxlon": -74.0034033 + }, + "nodes": [ + 5362212156, + 42444271 + ], + "geometry": [ + { "lat": 40.7080995, "lon": -74.0034033 }, + { "lat": 40.7080602, "lon": -74.0034478 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "parking:both": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1410480704, + "bounds": { + "minlat": 40.7080067, + "minlon": -74.0035028, + "maxlat": 40.7080602, + "maxlon": -74.0034478 + }, + "nodes": [ + 42444271, + 5362212152 + ], + "geometry": [ + { "lat": 40.7080602, "lon": -74.0034478 }, + { "lat": 40.7080067, "lon": -74.0035028 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "oneway": "no", + "parking:both": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1410480705, + "bounds": { + "minlat": 40.7074428, + "minlon": -74.0040737, + "maxlat": 40.7075124, + "maxlon": -74.0039887 + }, + "nodes": [ + 4985377332, + 42440270 + ], + "geometry": [ + { "lat": 40.7075124, "lon": -74.0039887 }, + { "lat": 40.7074428, "lon": -74.0040737 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Pearl Street", + "name:etymology:wikidata": "Q43436", + "name:ko": "펄 스트리트", + "name:ru": "Перл-стрит", + "parking:both": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2356321", + "wikipedia": "en:Pearl Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1410838013, + "bounds": { + "minlat": 40.8207913, + "minlon": -73.9914094, + "maxlat": 40.8208401, + "maxlon": -73.9913688 + }, + "nodes": [ + 7607890614, + 5703669056 + ], + "geometry": [ + { "lat": 40.8207913, "lon": -73.9914094 }, + { "lat": 40.8208401, "lon": -73.9913688 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Anderson Avenue", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 1410930764, + "bounds": { + "minlat": 40.7115990, + "minlon": -73.9443529, + "maxlat": 40.7116410, + "maxlon": -73.9439110 + }, + "nodes": [ + 12964609432, + 8842929795, + 42467848 + ], + "geometry": [ + { "lat": 40.7115990, "lon": -73.9443529 }, + { "lat": 40.7116307, "lon": -73.9440203 }, + { "lat": 40.7116410, "lon": -73.9439110 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:protection": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "name": "Grand Street", + "sidewalk": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1410930765, + "bounds": { + "minlat": 40.7119003, + "minlon": -73.9412790, + "maxlat": 40.7119620, + "maxlon": -73.9406880 + }, + "nodes": [ + 12964609433, + 7034559318, + 42513634 + ], + "geometry": [ + { "lat": 40.7119003, "lon": -73.9412790 }, + { "lat": 40.7119509, "lon": -73.9407958 }, + { "lat": 40.7119620, "lon": -73.9406880 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:protection": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "name": "Grand Street", + "sidewalk": "separate", + "wikidata": "Q5595129", + "wikipedia": "en:Grand Street and Grand Avenue" + } +}, +{ + "type": "way", + "id": 1410930766, + "bounds": { + "minlat": 40.7108129, + "minlon": -73.9524172, + "maxlat": 40.7108889, + "maxlon": -73.9516718 + }, + "nodes": [ + 12964609434, + 9967927273, + 42491478 + ], + "geometry": [ + { "lat": 40.7108129, "lon": -73.9524172 }, + { "lat": 40.7108771, "lon": -73.9517895 }, + { "lat": 40.7108889, "lon": -73.9516718 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1410930767, + "bounds": { + "minlat": 40.7107735, + "minlon": -73.9528032, + "maxlat": 40.7108129, + "maxlon": -73.9524172 + }, + "nodes": [ + 4202609198, + 12964609434 + ], + "geometry": [ + { "lat": 40.7107735, "lon": -73.9528032 }, + { "lat": 40.7108129, "lon": -73.9524172 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Borinquen Place", + "name:etymology:wikidata": "Q1183", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base_1": "Borinquen", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1411483441, + "bounds": { + "minlat": 40.7645597, + "minlon": -73.9560182, + "maxlat": 40.7650472, + "maxlon": -73.9556658 + }, + "nodes": [ + 12969803285, + 12969803286 + ], + "geometry": [ + { "lat": 40.7650472, "lon": -73.9556658 }, + { "lat": 40.7645597, "lon": -73.9560182 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1411483442, + "bounds": { + "minlat": 40.7644873, + "minlon": -73.9560727, + "maxlat": 40.7645351, + "maxlon": -73.9560364 + }, + "nodes": [ + 12969803282, + 12969803283 + ], + "geometry": [ + { "lat": 40.7645351, "lon": -73.9560364 }, + { "lat": 40.7644873, "lon": -73.9560727 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1411483444, + "bounds": { + "minlat": 40.7650472, + "minlon": -73.9556658, + "maxlat": 40.7651100, + "maxlon": -73.9556205 + }, + "nodes": [ + 12969803281, + 12969803284, + 12969803285 + ], + "geometry": [ + { "lat": 40.7651100, "lon": -73.9556205 }, + { "lat": 40.7650603, "lon": -73.9556564 }, + { "lat": 40.7650472, "lon": -73.9556658 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1411483445, + "bounds": { + "minlat": 40.7645351, + "minlon": -73.9560364, + "maxlat": 40.7645597, + "maxlon": -73.9560182 + }, + "nodes": [ + 12969803286, + 12969803282 + ], + "geometry": [ + { "lat": 40.7645597, "lon": -73.9560182 }, + { "lat": 40.7645351, "lon": -73.9560364 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1411807431, + "bounds": { + "minlat": 40.7591299, + "minlon": -74.0037574, + "maxlat": 40.7592200, + "maxlon": -74.0035376 + }, + "nodes": [ + 247081705, + 247081706, + 4379966380, + 9441264734 + ], + "geometry": [ + { "lat": 40.7591299, "lon": -74.0035376 }, + { "lat": 40.7591779, "lon": -74.0036547 }, + { "lat": 40.7592059, "lon": -74.0037230 }, + { "lat": 40.7592200, "lon": -74.0037574 } + ], + "tags": { + "highway": "service", + "name": "Pier 76", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1411807432, + "bounds": { + "minlat": 40.7592200, + "minlon": -74.0037755, + "maxlat": 40.7592274, + "maxlon": -74.0037574 + }, + "nodes": [ + 9441264832, + 9441264734 + ], + "geometry": [ + { "lat": 40.7592274, "lon": -74.0037755 }, + { "lat": 40.7592200, "lon": -74.0037574 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1411937017, + "bounds": { + "minlat": 40.7568383, + "minlon": -74.0041078, + "maxlat": 40.7568943, + "maxlon": -74.0039742 + }, + "nodes": [ + 12974291640, + 593839881 + ], + "geometry": [ + { "lat": 40.7568383, "lon": -74.0039742 }, + { "lat": 40.7568943, "lon": -74.0041078 } + ], + "tags": { + "change": "no", + "highway": "service", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "5 mph", + "motor_vehicle": "destination", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1411937018, + "bounds": { + "minlat": 40.7565335, + "minlon": -74.0019343, + "maxlat": 40.7565619, + "maxlon": -74.0018518 + }, + "nodes": [ + 9421657440, + 12974291643, + 593915315 + ], + "geometry": [ + { "lat": 40.7565619, "lon": -74.0018518 }, + { "lat": 40.7565413, "lon": -74.0018656 }, + { "lat": 40.7565335, "lon": -74.0019343 } + ], + "tags": { + "highway": "service", + "lane_markings": "no", + "maxspeed": "5 mph", + "motor_vehicle": "destination", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1411937019, + "bounds": { + "minlat": 40.7572417, + "minlon": -74.0013704, + "maxlat": 40.7573177, + "maxlon": -74.0013451 + }, + "nodes": [ + 9421649603, + 12974291649, + 593915314 + ], + "geometry": [ + { "lat": 40.7573177, "lon": -74.0013704 }, + { "lat": 40.7572612, "lon": -74.0013451 }, + { "lat": 40.7572417, "lon": -74.0013603 } + ], + "tags": { + "highway": "service", + "lane_markings": "no", + "maxspeed": "5 mph", + "motor_vehicle": "destination", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1412525544, + "bounds": { + "minlat": 40.7079574, + "minlon": -73.9557882, + "maxlat": 40.7081375, + "maxlon": -73.9553150 + }, + "nodes": [ + 12980289998, + 12980290000, + 12980289999 + ], + "geometry": [ + { "lat": 40.7081375, "lon": -73.9557882 }, + { "lat": 40.7079867, "lon": -73.9553920 }, + { "lat": 40.7079574, "lon": -73.9553150 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1412525551, + "bounds": { + "minlat": 40.7076554, + "minlon": -73.9512678, + "maxlat": 40.7078840, + "maxlon": -73.9511331 + }, + "nodes": [ + 12980320303, + 12980320305, + 12980320304 + ], + "geometry": [ + { "lat": 40.7076554, "lon": -73.9512678 }, + { "lat": 40.7077051, "lon": -73.9512385 }, + { "lat": 40.7078840, "lon": -73.9511331 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1412929966, + "bounds": { + "minlat": 40.7569694, + "minlon": -74.0043046, + "maxlat": 40.7570314, + "maxlon": -74.0042926 + }, + "nodes": [ + 12984697270, + 8261122871 + ], + "geometry": [ + { "lat": 40.7570314, "lon": -74.0043046 }, + { "lat": 40.7569694, "lon": -74.0042926 } + ], + "tags": { + "highway": "service", + "lanes": "1", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1412929967, + "bounds": { + "minlat": 40.7560097, + "minlon": -74.0026630, + "maxlat": 40.7560737, + "maxlon": -74.0025138 + }, + "nodes": [ + 593915303, + 12984697271 + ], + "geometry": [ + { "lat": 40.7560737, "lon": -74.0026630 }, + { "lat": 40.7560097, "lon": -74.0025138 } + ], + "tags": { + "bus:lanes:forward": "yes|yes|designated", + "change": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "1", + "lanes:bus:forward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "West 34th Street", + "name:ru": "Западная 34-я стрит", + "surface": "asphalt", + "turn:lanes:forward": "left|through|", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1413159922, + "bounds": { + "minlat": 40.7605588, + "minlon": -73.9846502, + "maxlat": 40.7608040, + "maxlon": -73.9845206 + }, + "nodes": [ + 42428307, + 12810424954, + 10942563110 + ], + "geometry": [ + { "lat": 40.7608040, "lon": -73.9845206 }, + { "lat": 40.7607502, "lon": -73.9845510 }, + { "lat": 40.7605588, "lon": -73.9846502 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "living_street", + "lanes": "1", + "lit": "yes", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:left": "no", + "parking:left:restriction": "no_stopping", + "parking:right": "lane", + "parking:right:access": "customers", + "parking:right:orientation": "parallel", + "parking:right:restriction": "loading_only", + "sidewalk": "both", + "sidewalk:both:surface": "asphalt", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1413159923, + "bounds": { + "minlat": 40.7604717, + "minlon": -73.9846502, + "maxlat": 40.7605588, + "maxlon": -73.9846012 + }, + "nodes": [ + 10942563110, + 10942563109 + ], + "geometry": [ + { "lat": 40.7605588, "lon": -73.9846502 }, + { "lat": 40.7604717, "lon": -73.9846012 } + ], + "tags": { + "cycleway:left": "opposite_track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "highway": "living_street", + "lanes": "1", + "lit": "yes", + "maxspeed": "10 mph", + "maxspeed:advisory": "5 mph", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "parking:both": "no", + "parking:left:restriction": "no_stopping", + "sidewalk": "both", + "sidewalk:both:surface": "asphalt", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1413160368, + "bounds": { + "minlat": 40.7112548, + "minlon": -74.0044863, + "maxlat": 40.7115277, + "maxlon": -74.0040754 + }, + "nodes": [ + 5119807674, + 9369021510, + 11349528552, + 12986769006 + ], + "geometry": [ + { "lat": 40.7115277, "lon": -74.0044863 }, + { "lat": 40.7115065, "lon": -74.0044545 }, + { "lat": 40.7114795, "lon": -74.0044141 }, + { "lat": 40.7112548, "lon": -74.0040754 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "-1", + "cycleway:left:separation": "jersey_barrier", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Frankfort Street", + "name:etymology:wikidata": "Q1794", + "name:ko": "프랭크포트 스트리트", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1413171972, + "bounds": { + "minlat": 40.7608040, + "minlon": -73.9845206, + "maxlat": 40.7609668, + "maxlon": -73.9844145 + }, + "nodes": [ + 12986907232, + 12810424960, + 42428307 + ], + "geometry": [ + { "lat": 40.7609668, "lon": -73.9844145 }, + { "lat": 40.7608667, "lon": -73.9844797 }, + { "lat": 40.7608040, "lon": -73.9845206 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "asphalt", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1413208082, + "bounds": { + "minlat": 40.7028760, + "minlon": -73.9659075, + "maxlat": 40.7031959, + "maxlon": -73.9655234 + }, + "nodes": [ + 12987250635, + 9998897943, + 12987250634, + 12987250636 + ], + "geometry": [ + { "lat": 40.7031959, "lon": -73.9659075 }, + { "lat": 40.7031417, "lon": -73.9658442 }, + { "lat": 40.7030745, "lon": -73.9657631 }, + { "lat": 40.7028760, "lon": -73.9655234 } + ], + "tags": { + "bicycle": "use_sidepath", + "cycleway:right": "separate", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1413335970, + "bounds": { + "minlat": 40.8310805, + "minlon": -73.9266654, + "maxlat": 40.8311908, + "maxlon": -73.9263420 + }, + "nodes": [ + 2609934065, + 10316250684 + ], + "geometry": [ + { "lat": 40.8311908, "lon": -73.9266654 }, + { "lat": 40.8310805, "lon": -73.9263420 } + ], + "tags": { + "highway": "service", + "layer": "1", + "oneway": "no", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1413358692, + "bounds": { + "minlat": 40.7597869, + "minlon": -73.9883812, + "maxlat": 40.7599790, + "maxlon": -73.9879285 + }, + "nodes": [ + 12988501268, + 9749419125, + 6210777833, + 42435675 + ], + "geometry": [ + { "lat": 40.7599790, "lon": -73.9883812 }, + { "lat": 40.7598476, "lon": -73.9880713 }, + { "lat": 40.7598331, "lon": -73.9880374 }, + { "lat": 40.7597869, "lon": -73.9879285 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed:conditional": "5 mph @ (16:00-20:00)", + "motor_vehicle:conditional": "destination @ (Mo-Th 16:00-20:00; Fr 16:00-23:00; Sa-Su 12:00-23:00)", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction": "no_standing", + "parking:right:access:conditional": "goods @ (Mo-Sa 07:00-18:00)", + "parking:right:fee": "no", + "parking:right:fee:conditional": "yes @ (Mo-Sa 07:00-00:00)", + "parking:right:maxstay:conditional": "3 hours @ (Mo-Sa 07:00-18:00); 6 hours @ (Mo-Sa 18:00-00:00)", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1413358693, + "bounds": { + "minlat": 40.7601909, + "minlon": -73.9890492, + "maxlat": 40.7602621, + "maxlon": -73.9888812 + }, + "nodes": [ + 3573482145, + 3573482144, + 12988501260 + ], + "geometry": [ + { "lat": 40.7602621, "lon": -73.9890492 }, + { "lat": 40.7602511, "lon": -73.9890231 }, + { "lat": 40.7601909, "lon": -73.9888812 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed:conditional": "5 mph @ (16:00-20:00)", + "motor_vehicle:conditional": "destination @ (Mo-Th 16:00-20:00; Fr 16:00-23:00; Sa-Su 12:00-23:00)", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:left:restriction": "no_standing", + "parking:right": "no", + "parking:right:restriction": "no_standing", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1413358694, + "bounds": { + "minlat": 40.7600758, + "minlon": -73.9886096, + "maxlat": 40.7601582, + "maxlon": -73.9885469 + }, + "nodes": [ + 12988501261, + 12988501264, + 12988501262 + ], + "geometry": [ + { "lat": 40.7601582, "lon": -73.9885469 }, + { "lat": 40.7601397, "lon": -73.9885610 }, + { "lat": 40.7600758, "lon": -73.9886096 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1413358695, + "bounds": { + "minlat": 40.7600758, + "minlon": -73.9888812, + "maxlat": 40.7601909, + "maxlon": -73.9886096 + }, + "nodes": [ + 12988501260, + 12988501262 + ], + "geometry": [ + { "lat": 40.7601909, "lon": -73.9888812 }, + { "lat": 40.7600758, "lon": -73.9886096 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed:conditional": "5 mph @ (16:00-20:00)", + "motor_vehicle:conditional": "destination @ (Mo-Th 16:00-20:00; Fr 16:00-23:00; Sa-Su 12:00-23:00)", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:restriction": "no_standing", + "parking:right:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1413358696, + "bounds": { + "minlat": 40.7599790, + "minlon": -73.9886096, + "maxlat": 40.7600758, + "maxlon": -73.9883812 + }, + "nodes": [ + 12988501262, + 12988501268 + ], + "geometry": [ + { "lat": 40.7600758, "lon": -73.9886096 }, + { "lat": 40.7599790, "lon": -73.9883812 } + ], + "tags": { + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed:conditional": "5 mph @ (16:00-20:00)", + "motor_vehicle:conditional": "destination @ (Mo-Th 16:00-20:00; Fr 16:00-23:00; Sa-Su 12:00-23:00)", + "name": "West 46th Street", + "name:ru": "Западная 46-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "parking:left:access": "customers", + "parking:left:access:conditional": "yes @ (Mo-Fr 07:00-18:00)", + "parking:left:restriction": "loading_only", + "parking:left:restriction:conditional": "no_standing @ (Mo-Fr 07:00-18:00)", + "parking:right:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1413452646, + "bounds": { + "minlat": 40.7540485, + "minlon": -73.9118309, + "maxlat": 40.7542255, + "maxlon": -73.9114741 + }, + "nodes": [ + 12989324948, + 12989324949, + 12989324951, + 12989324950 + ], + "geometry": [ + { "lat": 40.7542255, "lon": -73.9118309 }, + { "lat": 40.7541932, "lon": -73.9117665 }, + { "lat": 40.7541835, "lon": -73.9117467 }, + { "lat": 40.7540485, "lon": -73.9114741 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1413455552, + "bounds": { + "minlat": 40.7875636, + "minlon": -73.9326298, + "maxlat": 40.7876320, + "maxlon": -73.9325678 + }, + "nodes": [ + 3036229808, + 9872439277 + ], + "geometry": [ + { "lat": 40.7876320, "lon": -73.9325678 }, + { "lat": 40.7875636, "lon": -73.9326298 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1413518738, + "bounds": { + "minlat": 40.7600195, + "minlon": -73.9848196, + "maxlat": 40.7601126, + "maxlon": -73.9847805 + }, + "nodes": [ + 42428305, + 12989986303, + 12989986307 + ], + "geometry": [ + { "lat": 40.7601126, "lon": -73.9848196 }, + { "lat": 40.7600374, "lon": -73.9847805 }, + { "lat": 40.7600195, "lon": -73.9847887 } + ], + "tags": { + "highway": "living_street" + } +}, +{ + "type": "way", + "id": 1413518739, + "bounds": { + "minlat": 40.7593906, + "minlon": -73.9850231, + "maxlat": 40.7594945, + "maxlon": -73.9849847 + }, + "nodes": [ + 12989986304, + 12989986306, + 12989986305 + ], + "geometry": [ + { "lat": 40.7594945, "lon": -73.9849847 }, + { "lat": 40.7594519, "lon": -73.9850004 }, + { "lat": 40.7593906, "lon": -73.9850231 } + ], + "tags": { + "highway": "living_street", + "lit": "yes" + } +}, +{ + "type": "way", + "id": 1413784765, + "bounds": { + "minlat": 40.7318643, + "minlon": -73.9968057, + "maxlat": 40.7320591, + "maxlon": -73.9965503 + }, + "nodes": [ + 12992009474, + 13507277197, + 13474486635, + 12992009476, + 13474486636, + 13474486637, + 13474486638, + 12992009477, + 13474486634, + 13474486633, + 12992009478, + 13474486632, + 13474486631, + 13474486630, + 12992009479, + 13474486629, + 13474486628, + 12992009480, + 13474486627, + 12992009481, + 13474486626, + 13507277198, + 42433354 + ], + "geometry": [ + { "lat": 40.7320189, "lon": -73.9965503 }, + { "lat": 40.7320486, "lon": -73.9966428 }, + { "lat": 40.7320541, "lon": -73.9966685 }, + { "lat": 40.7320573, "lon": -73.9966886 }, + { "lat": 40.7320585, "lon": -73.9967077 }, + { "lat": 40.7320591, "lon": -73.9967216 }, + { "lat": 40.7320587, "lon": -73.9967323 }, + { "lat": 40.7320572, "lon": -73.9967429 }, + { "lat": 40.7320542, "lon": -73.9967538 }, + { "lat": 40.7320501, "lon": -73.9967626 }, + { "lat": 40.7320446, "lon": -73.9967710 }, + { "lat": 40.7320389, "lon": -73.9967784 }, + { "lat": 40.7320322, "lon": -73.9967859 }, + { "lat": 40.7320221, "lon": -73.9967955 }, + { "lat": 40.7320087, "lon": -73.9968032 }, + { "lat": 40.7320014, "lon": -73.9968057 }, + { "lat": 40.7319941, "lon": -73.9968055 }, + { "lat": 40.7319835, "lon": -73.9968025 }, + { "lat": 40.7319696, "lon": -73.9967934 }, + { "lat": 40.7319563, "lon": -73.9967840 }, + { "lat": 40.7319367, "lon": -73.9967658 }, + { "lat": 40.7319152, "lon": -73.9967404 }, + { "lat": 40.7318643, "lon": -73.9966562 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1414007726, + "bounds": { + "minlat": 40.7849334, + "minlon": -73.9351368, + "maxlat": 40.7852385, + "maxlon": -73.9348226 + }, + "nodes": [ + 3037153849, + 3037153848, + 2298803365, + 3037153847, + 2298803367, + 3037153846, + 2298803368, + 3037153845, + 2298803370, + 3037153844, + 2298803372, + 3037153843, + 2298803375, + 2350521356, + 2298803377, + 2298803379, + 3037153849 + ], + "geometry": [ + { "lat": 40.7849334, "lon": -73.9351368 }, + { "lat": 40.7849746, "lon": -73.9350248 }, + { "lat": 40.7850091, "lon": -73.9349483 }, + { "lat": 40.7850324, "lon": -73.9348934 }, + { "lat": 40.7850610, "lon": -73.9348479 }, + { "lat": 40.7850995, "lon": -73.9348270 }, + { "lat": 40.7851378, "lon": -73.9348226 }, + { "lat": 40.7851771, "lon": -73.9348377 }, + { "lat": 40.7852073, "lon": -73.9348669 }, + { "lat": 40.7852284, "lon": -73.9349135 }, + { "lat": 40.7852385, "lon": -73.9349620 }, + { "lat": 40.7852274, "lon": -73.9350228 }, + { "lat": 40.7852049, "lon": -73.9350665 }, + { "lat": 40.7851527, "lon": -73.9350984 }, + { "lat": 40.7851246, "lon": -73.9351156 }, + { "lat": 40.7850142, "lon": -73.9351267 }, + { "lat": 40.7849334, "lon": -73.9351368 } + ], + "tags": { + "highway": "unclassified", + "lane_markings": "no", + "name": "East River Lane", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1414065658, + "bounds": { + "minlat": 40.8267946, + "minlon": -73.9376391, + "maxlat": 40.8277438, + "maxlon": -73.9355807 + }, + "nodes": [ + 5959424805, + 12994121393, + 13535333116, + 13535333115, + 13535333114, + 12994121392, + 12994121391, + 13703275584, + 13535333109, + 12994121396, + 9153608678 + ], + "geometry": [ + { "lat": 40.8277438, "lon": -73.9355807 }, + { "lat": 40.8276420, "lon": -73.9358292 }, + { "lat": 40.8275712, "lon": -73.9359995 }, + { "lat": 40.8275041, "lon": -73.9361600 }, + { "lat": 40.8274337, "lon": -73.9363217 }, + { "lat": 40.8273203, "lon": -73.9365554 }, + { "lat": 40.8272352, "lon": -73.9367307 }, + { "lat": 40.8270773, "lon": -73.9370561 }, + { "lat": 40.8268638, "lon": -73.9374964 }, + { "lat": 40.8268342, "lon": -73.9375573 }, + { "lat": 40.8267946, "lon": -73.9376391 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Macombs Place", + "name:etymology:wikidata": "Q328356", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 1414207939, + "bounds": { + "minlat": 40.7274152, + "minlon": -73.9763499, + "maxlat": 40.7274994, + "maxlon": -73.9761437 + }, + "nodes": [ + 12995380996, + 12995380998, + 12995380997 + ], + "geometry": [ + { "lat": 40.7274152, "lon": -73.9761437 }, + { "lat": 40.7274512, "lon": -73.9762319 }, + { "lat": 40.7274994, "lon": -73.9763499 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1414207940, + "bounds": { + "minlat": 40.7273875, + "minlon": -73.9763722, + "maxlat": 40.7274683, + "maxlon": -73.9761639 + }, + "nodes": [ + 12995380999, + 12995381000, + 12995380995 + ], + "geometry": [ + { "lat": 40.7274683, "lon": -73.9763722 }, + { "lat": 40.7274209, "lon": -73.9762500 }, + { "lat": 40.7273875, "lon": -73.9761639 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1414207941, + "bounds": { + "minlat": 40.7271368, + "minlon": -73.9753185, + "maxlat": 40.7273316, + "maxlon": -73.9751754 + }, + "nodes": [ + 12995387301, + 12995387303, + 12995387302 + ], + "geometry": [ + { "lat": 40.7271368, "lon": -73.9753185 }, + { "lat": 40.7272763, "lon": -73.9752160 }, + { "lat": 40.7273316, "lon": -73.9751754 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1414364836, + "bounds": { + "minlat": 40.8334448, + "minlon": -74.0109738, + "maxlat": 40.8337823, + "maxlon": -74.0107999 + }, + "nodes": [ + 103205578, + 13527768434, + 12996673826, + 12996673827 + ], + "geometry": [ + { "lat": 40.8337823, "lon": -74.0107999 }, + { "lat": 40.8337221, "lon": -74.0108497 }, + { "lat": 40.8337112, "lon": -74.0108587 }, + { "lat": 40.8334448, "lon": -74.0109738 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1414617419, + "bounds": { + "minlat": 40.8351437, + "minlon": -73.9459435, + "maxlat": 40.8357503, + "maxlon": -73.9455518 + }, + "nodes": [ + 2512378850, + 2504882464, + 9935939382, + 2504882473, + 587934041, + 2504882462, + 587934044 + ], + "geometry": [ + { "lat": 40.8351437, "lon": -73.9455518 }, + { "lat": 40.8352156, "lon": -73.9455822 }, + { "lat": 40.8352733, "lon": -73.9456039 }, + { "lat": 40.8353804, "lon": -73.9456428 }, + { "lat": 40.8355773, "lon": -73.9457449 }, + { "lat": 40.8356761, "lon": -73.9458268 }, + { "lat": 40.8357503, "lon": -73.9459435 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1414617420, + "bounds": { + "minlat": 40.8346333, + "minlon": -73.9456882, + "maxlat": 40.8352106, + "maxlon": -73.9454542 + }, + "nodes": [ + 12998931041, + 12998931038, + 12998931039, + 12998931040, + 4207731295 + ], + "geometry": [ + { "lat": 40.8352106, "lon": -73.9456882 }, + { "lat": 40.8351194, "lon": -73.9456549 }, + { "lat": 40.8350381, "lon": -73.9456260 }, + { "lat": 40.8347398, "lon": -73.9455327 }, + { "lat": 40.8346333, "lon": -73.9454542 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "name": "Edward M. Morgan Place", + "name:etymology:wikidata": "Q5344283", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1414617421, + "bounds": { + "minlat": 40.8352106, + "minlon": -73.9459435, + "maxlat": 40.8357503, + "maxlon": -73.9456882 + }, + "nodes": [ + 587934044, + 12998931045, + 12998931044, + 12998931043, + 12998931042, + 12998931041 + ], + "geometry": [ + { "lat": 40.8357503, "lon": -73.9459435 }, + { "lat": 40.8356601, "lon": -73.9458901 }, + { "lat": 40.8355819, "lon": -73.9458411 }, + { "lat": 40.8353989, "lon": -73.9457524 }, + { "lat": 40.8353241, "lon": -73.9457248 }, + { "lat": 40.8352106, "lon": -73.9456882 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "name": "Riverside Drive", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1414700145, + "bounds": { + "minlat": 40.7343471, + "minlon": -73.9358700, + "maxlat": 40.7349071, + "maxlon": -73.9343783 + }, + "nodes": [ + 42888683, + 42888681 + ], + "geometry": [ + { "lat": 40.7343471, "lon": -73.9358700 }, + { "lat": 40.7349071, "lon": -73.9343783 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "37th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1414774493, + "bounds": { + "minlat": 40.7475905, + "minlon": -73.9708704, + "maxlat": 40.7479748, + "maxlon": -73.9705957 + }, + "nodes": [ + 12840833852, + 3569749101, + 11003445422, + 3831856757 + ], + "geometry": [ + { "lat": 40.7475905, "lon": -73.9708704 }, + { "lat": 40.7476445, "lon": -73.9708295 }, + { "lat": 40.7477388, "lon": -73.9707644 }, + { "lat": 40.7479748, "lon": -73.9705957 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:both": "lane", + "cycleway:both:oneway": "yes", + "cycleway:left:buffer": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1414774494, + "bounds": { + "minlat": 40.7475533, + "minlon": -73.9708704, + "maxlat": 40.7475905, + "maxlon": -73.9707856 + }, + "nodes": [ + 12840833852, + 42453011 + ], + "geometry": [ + { "lat": 40.7475905, "lon": -73.9708704 }, + { "lat": 40.7475533, "lon": -73.9707856 } + ], + "tags": { + "cycleway": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 40th Street", + "name:ru": "Восточная 40-я стрит", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1414774495, + "bounds": { + "minlat": 40.7532011, + "minlon": -73.9667526, + "maxlat": 40.7532753, + "maxlon": -73.9666622 + }, + "nodes": [ + 12186394506, + 595105592, + 5852272391 + ], + "geometry": [ + { "lat": 40.7532011, "lon": -73.9667526 }, + { "lat": 40.7532284, "lon": -73.9667215 }, + { "lat": 40.7532753, "lon": -73.9666622 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1414810703, + "bounds": { + "minlat": 40.7301176, + "minlon": -73.9371748, + "maxlat": 40.7311066, + "maxlon": -73.9359739 + }, + "nodes": [ + 6721112608, + 13001005308, + 13001005307, + 13001005306 + ], + "geometry": [ + { "lat": 40.7311066, "lon": -73.9371748 }, + { "lat": 40.7309174, "lon": -73.9369529 }, + { "lat": 40.7304855, "lon": -73.9366163 }, + { "lat": 40.7301176, "lon": -73.9359739 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1414882152, + "bounds": { + "minlat": 40.8499127, + "minlon": -73.9678589, + "maxlat": 40.8499983, + "maxlon": -73.9675650 + }, + "nodes": [ + 13001542892, + 13001542893 + ], + "geometry": [ + { "lat": 40.8499983, "lon": -73.9678589 }, + { "lat": 40.8499127, "lon": -73.9675650 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1414986305, + "bounds": { + "minlat": 40.7226710, + "minlon": -73.9829640, + "maxlat": 40.7232780, + "maxlon": -73.9825240 + }, + "nodes": [ + 42437346, + 7977832473, + 7977832468, + 42455083 + ], + "geometry": [ + { "lat": 40.7226710, "lon": -73.9829640 }, + { "lat": 40.7227264, "lon": -73.9829238 }, + { "lat": 40.7232276, "lon": -73.9825605 }, + { "lat": 40.7232780, "lon": -73.9825240 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Avenue B", + "name:ru": "Авеню B", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2873530", + "wikipedia": "en:Avenue B (Manhattan)" + } +}, +{ + "type": "way", + "id": 1414986306, + "bounds": { + "minlat": 40.7287460, + "minlon": -73.9785360, + "maxlat": 40.7294404, + "maxlon": -73.9780286 + }, + "nodes": [ + 42436947, + 8309479477, + 4298781040, + 42439001 + ], + "geometry": [ + { "lat": 40.7287460, "lon": -73.9785360 }, + { "lat": 40.7288054, "lon": -73.9784928 }, + { "lat": 40.7293469, "lon": -73.9780986 }, + { "lat": 40.7294404, "lon": -73.9780286 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Avenue B", + "name:ru": "Авеню B", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2873530", + "wikipedia": "en:Avenue B (Manhattan)" + } +}, +{ + "type": "way", + "id": 1415130448, + "bounds": { + "minlat": 40.7335785, + "minlon": -73.9183270, + "maxlat": 40.7340191, + "maxlon": -73.9182075 + }, + "nodes": [ + 7984105261, + 13003960646 + ], + "geometry": [ + { "lat": 40.7340191, "lon": -73.9182075 }, + { "lat": 40.7335785, "lon": -73.9183270 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1415165744, + "bounds": { + "minlat": 40.7376061, + "minlon": -73.9188383, + "maxlat": 40.7376890, + "maxlon": -73.9180823 + }, + "nodes": [ + 13004295807, + 13327354378, + 13004295806 + ], + "geometry": [ + { "lat": 40.7376890, "lon": -73.9188383 }, + { "lat": 40.7376819, "lon": -73.9187735 }, + { "lat": 40.7376061, "lon": -73.9180823 } + ], + "tags": { + "bicycle": "no", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1415312634, + "bounds": { + "minlat": 40.8131129, + "minlon": -73.9299550, + "maxlat": 40.8136854, + "maxlon": -73.9295654 + }, + "nodes": [ + 13005731175, + 13006267801, + 13005731176, + 13005731177 + ], + "geometry": [ + { "lat": 40.8131129, "lon": -73.9299550 }, + { "lat": 40.8132527, "lon": -73.9298628 }, + { "lat": 40.8133276, "lon": -73.9298042 }, + { "lat": 40.8136854, "lon": -73.9295654 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1415323789, + "bounds": { + "minlat": 40.7492531, + "minlon": -73.9251156, + "maxlat": 40.7492662, + "maxlon": -73.9250104 + }, + "nodes": [ + 10069673289, + 10069673290, + 4181556875 + ], + "geometry": [ + { "lat": 40.7492531, "lon": -73.9250104 }, + { "lat": 40.7492579, "lon": -73.9250416 }, + { "lat": 40.7492662, "lon": -73.9251156 } + ], + "tags": { + "access": "no", + "bridge": "yes", + "highway": "service", + "layer": "1", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1415345296, + "bounds": { + "minlat": 40.7700834, + "minlon": -73.9245570, + "maxlat": 40.7704359, + "maxlon": -73.9242560 + }, + "nodes": [ + 13005990381, + 13005990380, + 13005956966, + 13005990379 + ], + "geometry": [ + { "lat": 40.7700834, "lon": -73.9245570 }, + { "lat": 40.7701446, "lon": -73.9244980 }, + { "lat": 40.7703852, "lon": -73.9242982 }, + { "lat": 40.7704359, "lon": -73.9242560 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1415345369, + "bounds": { + "minlat": 40.7703852, + "minlon": -73.9248119, + "maxlat": 40.7706182, + "maxlon": -73.9242982 + }, + "nodes": [ + 13005956966, + 13005956965 + ], + "geometry": [ + { "lat": 40.7703852, "lon": -73.9242982 }, + { "lat": 40.7706182, "lon": -73.9248119 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1415374152, + "bounds": { + "minlat": 40.8186141, + "minlon": -73.9524433, + "maxlat": 40.8189320, + "maxlon": -73.9522115 + }, + "nodes": [ + 13006171695, + 10170977561, + 7260975614, + 42438836 + ], + "geometry": [ + { "lat": 40.8186141, "lon": -73.9524433 }, + { "lat": 40.8188550, "lon": -73.9522672 }, + { "lat": 40.8188716, "lon": -73.9522551 }, + { "lat": 40.8189320, "lon": -73.9522115 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "turn:lanes:forward": "left|none", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1415374194, + "bounds": { + "minlat": 40.7058551, + "minlon": -73.9159064, + "maxlat": 40.7065826, + "maxlon": -73.9151694 + }, + "nodes": [ + 13006238214, + 13006238213, + 13006238212 + ], + "geometry": [ + { "lat": 40.7058551, "lon": -73.9159064 }, + { "lat": 40.7059127, "lon": -73.9158425 }, + { "lat": 40.7065826, "lon": -73.9151694 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1415375907, + "bounds": { + "minlat": 40.7780155, + "minlon": -73.9173152, + "maxlat": 40.7782072, + "maxlon": -73.9170771 + }, + "nodes": [ + 13006240124, + 13006240123 + ], + "geometry": [ + { "lat": 40.7780155, "lon": -73.9173152 }, + { "lat": 40.7782072, "lon": -73.9170771 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1415376645, + "bounds": { + "minlat": 40.7772874, + "minlon": -73.9166104, + "maxlat": 40.7777132, + "maxlon": -73.9162668 + }, + "nodes": [ + 13006259002, + 13006259001, + 13006203500, + 13006203499 + ], + "geometry": [ + { "lat": 40.7772874, "lon": -73.9162668 }, + { "lat": 40.7773307, "lon": -73.9163361 }, + { "lat": 40.7775324, "lon": -73.9166104 }, + { "lat": 40.7777132, "lon": -73.9163824 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1415383176, + "bounds": { + "minlat": 40.7107761, + "minlon": -73.9072958, + "maxlat": 40.7111887, + "maxlon": -73.9068881 + }, + "nodes": [ + 13006303760, + 13006303759, + 13006303758 + ], + "geometry": [ + { "lat": 40.7111887, "lon": -73.9068881 }, + { "lat": 40.7111402, "lon": -73.9069317 }, + { "lat": 40.7107761, "lon": -73.9072958 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1416223559, + "bounds": { + "minlat": 40.7927216, + "minlon": -74.0018674, + "maxlat": 40.7928791, + "maxlon": -74.0015520 + }, + "nodes": [ + 9585091175, + 13014750028, + 13014750029, + 13014750030, + 13014750031 + ], + "geometry": [ + { "lat": 40.7927216, "lon": -74.0018674 }, + { "lat": 40.7927756, "lon": -74.0018264 }, + { "lat": 40.7928791, "lon": -74.0017577 }, + { "lat": 40.7928665, "lon": -74.0016538 }, + { "lat": 40.7928534, "lon": -74.0015520 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1416284690, + "bounds": { + "minlat": 40.7688547, + "minlon": -73.9109422, + "maxlat": 40.7688914, + "maxlon": -73.9108976 + }, + "nodes": [ + 13015291365, + 42912771 + ], + "geometry": [ + { "lat": 40.7688914, "lon": -73.9108976 }, + { "lat": 40.7688547, "lon": -73.9109422 } + ], + "tags": { + "foot": "no", + "hgv": "local", + "highway": "tertiary", + "name": "Steinway Street", + "surface": "asphalt", + "wikidata": "Q7606937", + "wikipedia": "en:Steinway Street" + } +}, +{ + "type": "way", + "id": 1416294931, + "bounds": { + "minlat": 40.7592540, + "minlon": -73.9116302, + "maxlat": 40.7598391, + "maxlon": -73.9111635 + }, + "nodes": [ + 13015347681, + 13015347682, + 13015347680 + ], + "geometry": [ + { "lat": 40.7598391, "lon": -73.9111635 }, + { "lat": 40.7594775, "lon": -73.9114492 }, + { "lat": 40.7592540, "lon": -73.9116302 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1416294932, + "bounds": { + "minlat": 40.7594775, + "minlon": -73.9118207, + "maxlat": 40.7596339, + "maxlon": -73.9114492 + }, + "nodes": [ + 13015347684, + 13015347683, + 13015347682 + ], + "geometry": [ + { "lat": 40.7596339, "lon": -73.9118207 }, + { "lat": 40.7596064, "lon": -73.9117512 }, + { "lat": 40.7594775, "lon": -73.9114492 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1416296397, + "bounds": { + "minlat": 40.7633650, + "minlon": -73.9081970, + "maxlat": 40.7643716, + "maxlon": -73.9070409 + }, + "nodes": [ + 13015363209, + 13015363210, + 13015363208, + 13015363207, + 13015363206 + ], + "geometry": [ + { "lat": 40.7633650, "lon": -73.9081970 }, + { "lat": 40.7638353, "lon": -73.9078040 }, + { "lat": 40.7643716, "lon": -73.9073843 }, + { "lat": 40.7642343, "lon": -73.9070995 }, + { "lat": 40.7642076, "lon": -73.9070409 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1416296398, + "bounds": { + "minlat": 40.7636700, + "minlon": -73.9078040, + "maxlat": 40.7638353, + "maxlon": -73.9074717 + }, + "nodes": [ + 13015363212, + 13015363211, + 13015363210 + ], + "geometry": [ + { "lat": 40.7636700, "lon": -73.9074717 }, + { "lat": 40.7636984, "lon": -73.9075320 }, + { "lat": 40.7638353, "lon": -73.9078040 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1416480138, + "bounds": { + "minlat": 40.7046384, + "minlon": -73.9410221, + "maxlat": 40.7047968, + "maxlon": -73.9393927 + }, + "nodes": [ + 42502948, + 2548031992, + 6858105743, + 4660922279, + 42513666 + ], + "geometry": [ + { "lat": 40.7046384, "lon": -73.9410221 }, + { "lat": 40.7046476, "lon": -73.9409406 }, + { "lat": 40.7047301, "lon": -73.9399942 }, + { "lat": 40.7047874, "lon": -73.9394774 }, + { "lat": 40.7047968, "lon": -73.9393927 } + ], + "tags": { + "highway": "residential", + "name": "Seigel Street", + "name:etymology:wikidata": "Q63190", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1416515029, + "bounds": { + "minlat": 40.8300642, + "minlon": -73.9299684, + "maxlat": 40.8312971, + "maxlon": -73.9290432 + }, + "nodes": [ + 2965076633, + 9910738434, + 9166334394, + 42757285 + ], + "geometry": [ + { "lat": 40.8300642, "lon": -73.9299684 }, + { "lat": 40.8300954, "lon": -73.9299598 }, + { "lat": 40.8301227, "lon": -73.9299460 }, + { "lat": 40.8312971, "lon": -73.9290432 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Woodycrest Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Woodycrest", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1416515030, + "bounds": { + "minlat": 40.8309970, + "minlon": -73.9290432, + "maxlat": 40.8312971, + "maxlon": -73.9281080 + }, + "nodes": [ + 42771460, + 8285603922, + 13038547408, + 42757285 + ], + "geometry": [ + { "lat": 40.8309970, "lon": -73.9281080 }, + { "lat": 40.8312488, "lon": -73.9288931 }, + { "lat": 40.8312719, "lon": -73.9289646 }, + { "lat": 40.8312971, "lon": -73.9290432 } + ], + "tags": { + "highway": "residential", + "name": "West 162nd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "162nd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1416535513, + "bounds": { + "minlat": 40.8393163, + "minlon": -73.9150551, + "maxlat": 40.8402920, + "maxlon": -73.9143510 + }, + "nodes": [ + 2408359280, + 5762102234, + 10034673466, + 13017341804, + 42763650 + ], + "geometry": [ + { "lat": 40.8393163, "lon": -73.9150551 }, + { "lat": 40.8393685, "lon": -73.9150188 }, + { "lat": 40.8401962, "lon": -73.9144201 }, + { "lat": 40.8402343, "lon": -73.9143926 }, + { "lat": 40.8402920, "lon": -73.9143510 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Wythe Place", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Wythe", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1416536138, + "bounds": { + "minlat": 40.8342147, + "minlon": -73.9165744, + "maxlat": 40.8354120, + "maxlon": -73.9153850 + }, + "nodes": [ + 3557257104, + 12739350649, + 13038896160, + 42742517 + ], + "geometry": [ + { "lat": 40.8342147, "lon": -73.9165744 }, + { "lat": 40.8342767, "lon": -73.9165130 }, + { "lat": 40.8353371, "lon": -73.9154594 }, + { "lat": 40.8354120, "lon": -73.9153850 } + ], + "tags": { + "highway": "residential", + "name": "Sheridan Avenue", + "name:etymology:wikidata": "Q355452", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sheridan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 1416536139, + "bounds": { + "minlat": 40.8326080, + "minlon": -73.9176090, + "maxlat": 40.8340726, + "maxlon": -73.9167205 + }, + "nodes": [ + 42747568, + 13038896183, + 2408379380, + 12739350635, + 3557257105, + 3557257103 + ], + "geometry": [ + { "lat": 40.8326080, "lon": -73.9176090 }, + { "lat": 40.8326740, "lon": -73.9175701 }, + { "lat": 40.8339674, "lon": -73.9168080 }, + { "lat": 40.8340097, "lon": -73.9167758 }, + { "lat": 40.8340202, "lon": -73.9167678 }, + { "lat": 40.8340726, "lon": -73.9167205 } + ], + "tags": { + "highway": "residential", + "name": "Sheridan Avenue", + "name:etymology:wikidata": "Q355452", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sheridan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 1416536140, + "bounds": { + "minlat": 40.8323220, + "minlon": -73.9167520, + "maxlat": 40.8337594, + "maxlon": -73.9159072 + }, + "nodes": [ + 2408379375, + 12739350634, + 8187805235, + 13018326340, + 42731640 + ], + "geometry": [ + { "lat": 40.8337594, "lon": -73.9159072 }, + { "lat": 40.8336916, "lon": -73.9159460 }, + { "lat": 40.8324258, "lon": -73.9166909 }, + { "lat": 40.8323963, "lon": -73.9167083 }, + { "lat": 40.8323220, "lon": -73.9167520 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Sherman Avenue", + "name:etymology:wikidata": "Q188936", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sherman", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1416559768, + "bounds": { + "minlat": 40.7040632, + "minlon": -73.9393208, + "maxlat": 40.7041390, + "maxlon": -73.9388457 + }, + "nodes": [ + 6907298757, + 8229296001, + 3539722831 + ], + "geometry": [ + { "lat": 40.7041390, "lon": -73.9388457 }, + { "lat": 40.7040837, "lon": -73.9391849 }, + { "lat": 40.7040632, "lon": -73.9393208 } + ], + "tags": { + "highway": "residential", + "name": "Moore Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1416655858, + "bounds": { + "minlat": 40.7999664, + "minlon": -73.9471084, + "maxlat": 40.8000191, + "maxlon": -73.9469712 + }, + "nodes": [ + 42435387, + 6784911810 + ], + "geometry": [ + { "lat": 40.7999664, "lon": -73.9469712 }, + { "lat": 40.8000191, "lon": -73.9471084 } + ], + "tags": { + "highway": "residential", + "name": "West 115th Street", + "name:ru": "Западная 115-я стрит", + "name_1": "West 115 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1416655861, + "bounds": { + "minlat": 40.7150308, + "minlon": -73.9517730, + "maxlat": 40.7162133, + "maxlon": -73.9501614 + }, + "nodes": [ + 42476487, + 9802943893, + 42476494, + 42476497 + ], + "geometry": [ + { "lat": 40.7150308, "lon": -73.9517730 }, + { "lat": 40.7151098, "lon": -73.9516806 }, + { "lat": 40.7153585, "lon": -73.9513418 }, + { "lat": 40.7162133, "lon": -73.9501614 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1416656020, + "bounds": { + "minlat": 40.8042542, + "minlon": -73.9149970, + "maxlat": 40.8048720, + "maxlon": -73.9134857 + }, + "nodes": [ + 42737723, + 13003835728, + 7042980646, + 7164216219, + 13038865328, + 42737719 + ], + "geometry": [ + { "lat": 40.8042542, "lon": -73.9134857 }, + { "lat": 40.8042931, "lon": -73.9135833 }, + { "lat": 40.8047681, "lon": -73.9147404 }, + { "lat": 40.8048101, "lon": -73.9148441 }, + { "lat": 40.8048390, "lon": -73.9149137 }, + { "lat": 40.8048720, "lon": -73.9149970 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 137th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "137th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1416656021, + "bounds": { + "minlat": 40.8037128, + "minlon": -73.9158500, + "maxlat": 40.8048720, + "maxlon": -73.9149970 + }, + "nodes": [ + 42728721, + 13038955261, + 13038971541, + 42719497, + 7155589553, + 13038865326, + 42737719 + ], + "geometry": [ + { "lat": 40.8037128, "lon": -73.9158500 }, + { "lat": 40.8037857, "lon": -73.9157965 }, + { "lat": 40.8042003, "lon": -73.9154845 }, + { "lat": 40.8042580, "lon": -73.9154423 }, + { "lat": 40.8043419, "lon": -73.9153779 }, + { "lat": 40.8048114, "lon": -73.9150420 }, + { "lat": 40.8048720, "lon": -73.9149970 } + ], + "tags": { + "highway": "residential", + "name": "Cypress Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1416656527, + "bounds": { + "minlat": 40.7185222, + "minlon": -73.9476694, + "maxlat": 40.7185663, + "maxlon": -73.9471621 + }, + "nodes": [ + 42476629, + 9795356005, + 5482193500, + 13040621757, + 598031730 + ], + "geometry": [ + { "lat": 40.7185663, "lon": -73.9471621 }, + { "lat": 40.7185559, "lon": -73.9473028 }, + { "lat": 40.7185383, "lon": -73.9474863 }, + { "lat": 40.7185317, "lon": -73.9475615 }, + { "lat": 40.7185222, "lon": -73.9476694 } + ], + "tags": { + "highway": "residential", + "name": "Richardson Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1416660671, + "bounds": { + "minlat": 40.8256511, + "minlon": -73.9217314, + "maxlat": 40.8263245, + "maxlon": -73.9212145 + }, + "nodes": [ + 42767715, + 13018344348, + 12163704738, + 5762096232, + 2408448917 + ], + "geometry": [ + { "lat": 40.8256511, "lon": -73.9217314 }, + { "lat": 40.8261218, "lon": -73.9213670 }, + { "lat": 40.8262017, "lon": -73.9213051 }, + { "lat": 40.8262504, "lon": -73.9212706 }, + { "lat": 40.8263245, "lon": -73.9212145 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Concourse Village West", + "name:etymology:wikidata": "Q122566725", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concourse Village", + "tiger:name_direction_suffix": "W", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1416665065, + "bounds": { + "minlat": 40.8389480, + "minlon": -73.9180080, + "maxlat": 40.8395576, + "maxlon": -73.9164290 + }, + "nodes": [ + 5762102461, + 13018505020, + 42733768 + ], + "geometry": [ + { "lat": 40.8395576, "lon": -73.9180080 }, + { "lat": 40.8389827, "lon": -73.9165188 }, + { "lat": 40.8389480, "lon": -73.9164290 } + ], + "tags": { + "highway": "residential", + "name": "Elliot Place", + "name:etymology:wikidata": "Q5361269", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Elliot", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1416665066, + "bounds": { + "minlat": 40.8383360, + "minlon": -73.9169170, + "maxlat": 40.8389480, + "maxlon": -73.9164290 + }, + "nodes": [ + 42733768, + 13018505024, + 13036979001, + 42733764 + ], + "geometry": [ + { "lat": 40.8389480, "lon": -73.9164290 }, + { "lat": 40.8389004, "lon": -73.9164670 }, + { "lat": 40.8383946, "lon": -73.9168703 }, + { "lat": 40.8383360, "lon": -73.9169170 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1416666277, + "bounds": { + "minlat": 40.8367960, + "minlon": -73.9204692, + "maxlat": 40.8371376, + "maxlon": -73.9194800 + }, + "nodes": [ + 42742513, + 13036870131, + 7686390449, + 3163954896, + 42734199 + ], + "geometry": [ + { "lat": 40.8371376, "lon": -73.9204692 }, + { "lat": 40.8371063, "lon": -73.9203793 }, + { "lat": 40.8370104, "lon": -73.9201040 }, + { "lat": 40.8368241, "lon": -73.9195701 }, + { "lat": 40.8367960, "lon": -73.9194800 } + ], + "tags": { + "highway": "residential", + "name": "East 168th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1416666278, + "bounds": { + "minlat": 40.8367960, + "minlon": -73.9194800, + "maxlat": 40.8381341, + "maxlon": -73.9191987 + }, + "nodes": [ + 42734199, + 3163954899, + 1916625195, + 10091975115, + 13020322154, + 42726506, + 13020322142, + 595793829, + 42736033 + ], + "geometry": [ + { "lat": 40.8367960, "lon": -73.9194800 }, + { "lat": 40.8368632, "lon": -73.9194436 }, + { "lat": 40.8371997, "lon": -73.9192621 }, + { "lat": 40.8375457, "lon": -73.9192178 }, + { "lat": 40.8375851, "lon": -73.9192120 }, + { "lat": 40.8376690, "lon": -73.9192020 }, + { "lat": 40.8377695, "lon": -73.9191987 }, + { "lat": 40.8379927, "lon": -73.9192000 }, + { "lat": 40.8381341, "lon": -73.9193042 } + ], + "tags": { + "highway": "residential", + "name": "Gerard Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1416666723, + "bounds": { + "minlat": 40.8338405, + "minlon": -73.9212376, + "maxlat": 40.8354009, + "maxlon": -73.9203187 + }, + "nodes": [ + 42734184, + 13033156009, + 12163704716, + 5762094235, + 42734195 + ], + "geometry": [ + { "lat": 40.8338405, "lon": -73.9212376 }, + { "lat": 40.8339015, "lon": -73.9212018 }, + { "lat": 40.8352916, "lon": -73.9203859 }, + { "lat": 40.8353214, "lon": -73.9203684 }, + { "lat": 40.8354009, "lon": -73.9203187 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Gerard Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1416667003, + "bounds": { + "minlat": 40.8649762, + "minlon": -73.9723686, + "maxlat": 40.8649870, + "maxlon": -73.9722292 + }, + "nodes": [ + 13018445775, + 13018445776 + ], + "geometry": [ + { "lat": 40.8649762, "lon": -73.9722292 }, + { "lat": 40.8649870, "lon": -73.9723686 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1416699314, + "bounds": { + "minlat": 40.7553957, + "minlon": -73.9894119, + "maxlat": 40.7554683, + "maxlon": -73.9893538 + }, + "nodes": [ + 13018681176, + 13018681177, + 13018681178 + ], + "geometry": [ + { "lat": 40.7553957, "lon": -73.9894119 }, + { "lat": 40.7554555, "lon": -73.9893637 }, + { "lat": 40.7554683, "lon": -73.9893538 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1416704171, + "bounds": { + "minlat": 40.8485925, + "minlon": -73.9083040, + "maxlat": 40.8488480, + "maxlon": -73.9069786 + }, + "nodes": [ + 2028383644, + 12748250458, + 13018743491, + 8571799130, + 13037357722, + 42735763 + ], + "geometry": [ + { "lat": 40.8485925, "lon": -73.9069786 }, + { "lat": 40.8486160, "lon": -73.9071005 }, + { "lat": 40.8487863, "lon": -73.9079843 }, + { "lat": 40.8488249, "lon": -73.9081844 }, + { "lat": 40.8488319, "lon": -73.9082233 }, + { "lat": 40.8488480, "lon": -73.9083040 } + ], + "tags": { + "highway": "residential", + "name": "Mount Hope Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mount Hope", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 1416705944, + "bounds": { + "minlat": 40.8620045, + "minlon": -73.9136175, + "maxlat": 40.8622925, + "maxlon": -73.9132529 + }, + "nodes": [ + 12058342986, + 12993682293 + ], + "geometry": [ + { "lat": 40.8620045, "lon": -73.9136175 }, + { "lat": 40.8622925, "lon": -73.9132529 } + ], + "tags": { + "highway": "unclassified", + "name": "Exterior Street" + } +}, +{ + "type": "way", + "id": 1416705945, + "bounds": { + "minlat": 40.8622925, + "minlon": -73.9132529, + "maxlat": 40.8624611, + "maxlon": -73.9130396 + }, + "nodes": [ + 12993682293, + 595749112 + ], + "geometry": [ + { "lat": 40.8622925, "lon": -73.9132529 }, + { "lat": 40.8624611, "lon": -73.9130396 } + ], + "tags": { + "highway": "unclassified", + "name": "Exterior Street", + "sidewalk:left": "separate", + "sidewalk:right": "no" + } +}, +{ + "type": "way", + "id": 1416710757, + "bounds": { + "minlat": 40.7444162, + "minlon": -73.9322275, + "maxlat": 40.7445725, + "maxlon": -73.9308742 + }, + "nodes": [ + 12219441065, + 10743714100, + 597294547, + 10743714099, + 10743722713 + ], + "geometry": [ + { "lat": 40.7445725, "lon": -73.9322275 }, + { "lat": 40.7445221, "lon": -73.9317957 }, + { "lat": 40.7445137, "lon": -73.9317185 }, + { "lat": 40.7445061, "lon": -73.9316475 }, + { "lat": 40.7444162, "lon": -73.9308742 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "name": "Queens Boulevard", + "oneway": "yes", + "ref": "NY 25", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q3660813", + "wikipedia": "en:Queens Boulevard" + } +}, +{ + "type": "way", + "id": 1416713768, + "bounds": { + "minlat": 40.7217054, + "minlon": -73.9413714, + "maxlat": 40.7219327, + "maxlon": -73.9410334 + }, + "nodes": [ + 8318348535, + 6235394696, + 42476536 + ], + "geometry": [ + { "lat": 40.7217054, "lon": -73.9413714 }, + { "lat": 40.7218462, "lon": -73.9411637 }, + { "lat": 40.7219327, "lon": -73.9410334 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1416714004, + "bounds": { + "minlat": 40.7399230, + "minlon": -73.9570597, + "maxlat": 40.7399465, + "maxlon": -73.9568456 + }, + "nodes": [ + 13018810282, + 13018810281 + ], + "geometry": [ + { "lat": 40.7399465, "lon": -73.9570597 }, + { "lat": 40.7399230, "lon": -73.9568456 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1416714005, + "bounds": { + "minlat": 40.7415252, + "minlon": -73.9542669, + "maxlat": 40.7416620, + "maxlon": -73.9542138 + }, + "nodes": [ + 3575033028, + 13020099315, + 276320117 + ], + "geometry": [ + { "lat": 40.7415252, "lon": -73.9542669 }, + { "lat": 40.7416087, "lon": -73.9542345 }, + { "lat": 40.7416620, "lon": -73.9542138 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "name": "Vernon Boulevard", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Vernon", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1416717169, + "bounds": { + "minlat": 40.8467435, + "minlon": -73.9082763, + "maxlat": 40.8468334, + "maxlon": -73.9064938 + }, + "nodes": [ + 42734838, + 13001055647, + 12798385424, + 7042990870, + 13001055659, + 42740532, + 13001055660, + 13039046226, + 42740535 + ], + "geometry": [ + { "lat": 40.8468334, "lon": -73.9082763 }, + { "lat": 40.8468304, "lon": -73.9082175 }, + { "lat": 40.8468276, "lon": -73.9081620 }, + { "lat": 40.8468085, "lon": -73.9077818 }, + { "lat": 40.8467935, "lon": -73.9074873 }, + { "lat": 40.8467890, "lon": -73.9073954 }, + { "lat": 40.8467847, "lon": -73.9073109 }, + { "lat": 40.8467479, "lon": -73.9065813 }, + { "lat": 40.8467435, "lon": -73.9064938 } + ], + "tags": { + "highway": "residential", + "name": "East 175th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "175th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 1416722196, + "bounds": { + "minlat": 40.7188318, + "minlon": -73.9078690, + "maxlat": 40.7189279, + "maxlon": -73.9076811 + }, + "nodes": [ + 7711279835, + 13008491479 + ], + "geometry": [ + { "lat": 40.7189279, "lon": -73.9076811 }, + { "lat": 40.7188318, "lon": -73.9078690 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Flushing Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1416722596, + "bounds": { + "minlat": 40.6999767, + "minlon": -73.9963138, + "maxlat": 40.7028262, + "maxlon": -73.9948144 + }, + "nodes": [ + 10739408509, + 6561807030, + 42493380, + 10737091589, + 1258945562, + 6561807025, + 1258945548, + 1258945448, + 6561807004, + 42493386, + 6561729171, + 11707126797, + 6561729178, + 11685281487 + ], + "geometry": [ + { "lat": 40.7028262, "lon": -73.9948144 }, + { "lat": 40.7028144, "lon": -73.9948215 }, + { "lat": 40.7024910, "lon": -73.9950177 }, + { "lat": 40.7024537, "lon": -73.9950397 }, + { "lat": 40.7021675, "lon": -73.9952084 }, + { "lat": 40.7019046, "lon": -73.9953732 }, + { "lat": 40.7018681, "lon": -73.9953938 }, + { "lat": 40.7017868, "lon": -73.9954335 }, + { "lat": 40.7014917, "lon": -73.9955796 }, + { "lat": 40.7012290, "lon": -73.9957130 }, + { "lat": 40.7009561, "lon": -73.9958429 }, + { "lat": 40.7008188, "lon": -73.9959083 }, + { "lat": 40.7005231, "lon": -73.9960492 }, + { "lat": 40.6999767, "lon": -73.9963138 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Furman Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Furman", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1416725020, + "bounds": { + "minlat": 40.7729979, + "minlon": -73.9821234, + "maxlat": 40.7738424, + "maxlon": -73.9821059 + }, + "nodes": [ + 6173564360, + 6469210552, + 5117963655, + 5117991235, + 1061531707 + ], + "geometry": [ + { "lat": 40.7729979, "lon": -73.9821059 }, + { "lat": 40.7730709, "lon": -73.9821066 }, + { "lat": 40.7731622, "lon": -73.9821062 }, + { "lat": 40.7737673, "lon": -73.9821148 }, + { "lat": 40.7738424, "lon": -73.9821234 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1416732220, + "bounds": { + "minlat": 40.8597534, + "minlon": -73.9145699, + "maxlat": 40.8617435, + "maxlon": -73.9118129 + }, + "nodes": [ + 13018943326, + 42732743, + 42732746, + 42732748, + 42732750, + 6760241900, + 8174133650, + 7740582831, + 8174133673, + 13048050808, + 12058459524, + 12058421206, + 42731033 + ], + "geometry": [ + { "lat": 40.8597534, "lon": -73.9145699 }, + { "lat": 40.8597983, "lon": -73.9144320 }, + { "lat": 40.8598315, "lon": -73.9143679 }, + { "lat": 40.8598637, "lon": -73.9143169 }, + { "lat": 40.8599008, "lon": -73.9142650 }, + { "lat": 40.8600112, "lon": -73.9141185 }, + { "lat": 40.8603563, "lon": -73.9136613 }, + { "lat": 40.8608363, "lon": -73.9130255 }, + { "lat": 40.8608935, "lon": -73.9129489 }, + { "lat": 40.8611902, "lon": -73.9125523 }, + { "lat": 40.8616233, "lon": -73.9119735 }, + { "lat": 40.8616552, "lon": -73.9119334 }, + { "lat": 40.8617435, "lon": -73.9118129 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "maxweight:hgv": "5 st", + "name": "Cedar Avenue", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cedar", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1416732221, + "bounds": { + "minlat": 40.8607690, + "minlon": -73.9119717, + "maxlat": 40.8610162, + "maxlon": -73.9115913 + }, + "nodes": [ + 42776140, + 13018943327 + ], + "geometry": [ + { "lat": 40.8607690, "lon": -73.9119717 }, + { "lat": 40.8610162, "lon": -73.9115913 } + ], + "tags": { + "highway": "residential", + "name": "Hampden Place", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Hampden", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1416732222, + "bounds": { + "minlat": 40.8619982, + "minlon": -73.9129928, + "maxlat": 40.8620224, + "maxlon": -73.9129267 + }, + "nodes": [ + 12074547758, + 595749104 + ], + "geometry": [ + { "lat": 40.8619982, "lon": -73.9129267 }, + { "lat": 40.8620224, "lon": -73.9129928 } + ], + "tags": { + "bridge": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "layer": "1", + "maxspeed": "25 mph", + "name": "West Fordham Road", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Fordham", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Rd", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1416877418, + "bounds": { + "minlat": 40.7190404, + "minlon": -73.9082240, + "maxlat": 40.7190486, + "maxlon": -73.9078798 + }, + "nodes": [ + 7860806046, + 9820917979, + 42827469 + ], + "geometry": [ + { "lat": 40.7190486, "lon": -73.9078798 }, + { "lat": 40.7190422, "lon": -73.9081472 }, + { "lat": 40.7190404, "lon": -73.9082240 } + ], + "tags": { + "highway": "residential", + "name": "59th Avenue", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1416884832, + "bounds": { + "minlat": 40.8620582, + "minlon": -73.9300192, + "maxlat": 40.8625671, + "maxlon": -73.9299534 + }, + "nodes": [ + 1205714859, + 42427844, + 1763749977, + 9561386450, + 2052329258 + ], + "geometry": [ + { "lat": 40.8620582, "lon": -73.9300192 }, + { "lat": 40.8621121, "lon": -73.9300037 }, + { "lat": 40.8621837, "lon": -73.9299945 }, + { "lat": 40.8622554, "lon": -73.9299851 }, + { "lat": 40.8625671, "lon": -73.9299534 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1416884833, + "bounds": { + "minlat": 40.8625988, + "minlon": -73.9300530, + "maxlat": 40.8634187, + "maxlon": -73.9299540 + }, + "nodes": [ + 1764647101, + 11594920857, + 2052329260, + 11586960569, + 2052329262, + 2052329264, + 9561386464, + 42429184 + ], + "geometry": [ + { "lat": 40.8625988, "lon": -73.9299540 }, + { "lat": 40.8627907, "lon": -73.9299798 }, + { "lat": 40.8629155, "lon": -73.9300003 }, + { "lat": 40.8630979, "lon": -73.9300281 }, + { "lat": 40.8632088, "lon": -73.9300475 }, + { "lat": 40.8632689, "lon": -73.9300530 }, + { "lat": 40.8633267, "lon": -73.9300469 }, + { "lat": 40.8634187, "lon": -73.9300194 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1416888980, + "bounds": { + "minlat": 40.7362211, + "minlon": -73.9586354, + "maxlat": 40.7362836, + "maxlon": -73.9585196 + }, + "nodes": [ + 42520831, + 13020223609, + 12815005754, + 42509159 + ], + "geometry": [ + { "lat": 40.7362211, "lon": -73.9586354 }, + { "lat": 40.7362437, "lon": -73.9585942 }, + { "lat": 40.7362582, "lon": -73.9585667 }, + { "lat": 40.7362836, "lon": -73.9585196 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Commercial Street", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Commercial", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1416888981, + "bounds": { + "minlat": 40.7362836, + "minlon": -73.9585196, + "maxlat": 40.7364773, + "maxlon": -73.9581648 + }, + "nodes": [ + 42509159, + 5481915324, + 2991742348, + 10170251943 + ], + "geometry": [ + { "lat": 40.7362836, "lon": -73.9585196 }, + { "lat": 40.7363963, "lon": -73.9583151 }, + { "lat": 40.7364566, "lon": -73.9582016 }, + { "lat": 40.7364773, "lon": -73.9581648 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Commercial Street", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Commercial", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1416892711, + "bounds": { + "minlat": 40.7031913, + "minlon": -73.9597995, + "maxlat": 40.7034211, + "maxlon": -73.9594408 + }, + "nodes": [ + 42491426, + 9988465826, + 598035426 + ], + "geometry": [ + { "lat": 40.7031913, "lon": -73.9597995 }, + { "lat": 40.7032599, "lon": -73.9596924 }, + { "lat": 40.7034211, "lon": -73.9594408 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "name": "Hooper Street", + "name:etymology:wikidata": "Q1345669", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hooper", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1416895242, + "bounds": { + "minlat": 40.8250014, + "minlon": -73.9166222, + "maxlat": 40.8254646, + "maxlon": -73.9159214 + }, + "nodes": [ + 42783589, + 9910723150, + 42748162 + ], + "geometry": [ + { "lat": 40.8254646, "lon": -73.9159214 }, + { "lat": 40.8250759, "lon": -73.9165095 }, + { "lat": 40.8250014, "lon": -73.9166222 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1416931314, + "bounds": { + "minlat": 40.7019041, + "minlon": -73.9666373, + "maxlat": 40.7023737, + "maxlon": -73.9660511 + }, + "nodes": [ + 7711046942, + 10716574901, + 12806321140, + 4758931803, + 12560607514 + ], + "geometry": [ + { "lat": 40.7023737, "lon": -73.9666373 }, + { "lat": 40.7023202, "lon": -73.9665713 }, + { "lat": 40.7023103, "lon": -73.9665591 }, + { "lat": 40.7022222, "lon": -73.9664506 }, + { "lat": 40.7019041, "lon": -73.9660511 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Neilson Street", + "sidewalk:left": "separate", + "sidewalk:right": "no" + } +}, +{ + "type": "way", + "id": 1416935983, + "bounds": { + "minlat": 40.8296745, + "minlon": -73.9311413, + "maxlat": 40.8305755, + "maxlon": -73.9307151 + }, + "nodes": [ + 9910769969, + 2965076329, + 2965076330, + 9910769977, + 8427906325, + 9910769978, + 9910769979, + 595786289, + 42734262 + ], + "geometry": [ + { "lat": 40.8296745, "lon": -73.9310689 }, + { "lat": 40.8297217, "lon": -73.9311089 }, + { "lat": 40.8297483, "lon": -73.9311249 }, + { "lat": 40.8297790, "lon": -73.9311389 }, + { "lat": 40.8298025, "lon": -73.9311413 }, + { "lat": 40.8298247, "lon": -73.9311391 }, + { "lat": 40.8298480, "lon": -73.9311334 }, + { "lat": 40.8298748, "lon": -73.9311216 }, + { "lat": 40.8305755, "lon": -73.9307151 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Ogden Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ogden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1416936035, + "bounds": { + "minlat": 40.7113281, + "minlon": -74.0086548, + "maxlat": 40.7113948, + "maxlon": -74.0085272 + }, + "nodes": [ + 42428391, + 10290135963, + 4143875739 + ], + "geometry": [ + { "lat": 40.7113948, "lon": -74.0086548 }, + { "lat": 40.7113507, "lon": -74.0085748 }, + { "lat": 40.7113281, "lon": -74.0085272 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Park Row", + "name:etymology:wikidata": "Q34817857", + "name:ko": "파크 로우", + "name:ru": "Парк-Роу", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1386890", + "wikipedia": "en:Park Row (Manhattan)" + } +}, +{ + "type": "way", + "id": 1416943194, + "bounds": { + "minlat": 40.7185720, + "minlon": -73.9083278, + "maxlat": 40.7186838, + "maxlon": -73.9083030 + }, + "nodes": [ + 9820869302, + 7711279834, + 2996303641 + ], + "geometry": [ + { "lat": 40.7186838, "lon": -73.9083030 }, + { "lat": 40.7186349, "lon": -73.9083139 }, + { "lat": 40.7185720, "lon": -73.9083278 } + ], + "tags": { + "highway": "residential", + "name": "59th Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1416944653, + "bounds": { + "minlat": 40.7570354, + "minlon": -73.9537902, + "maxlat": 40.7575114, + "maxlon": -73.9530553 + }, + "nodes": [ + 1241820975, + 8265113738, + 9913660011, + 9189040167, + 3569568696, + 8265113762, + 9913660010, + 9913660009, + 593428074, + 9913660008, + 9189040168, + 8265113768 + ], + "geometry": [ + { "lat": 40.7575114, "lon": -73.9537902 }, + { "lat": 40.7573911, "lon": -73.9537069 }, + { "lat": 40.7573675, "lon": -73.9536865 }, + { "lat": 40.7573450, "lon": -73.9536600 }, + { "lat": 40.7573287, "lon": -73.9536324 }, + { "lat": 40.7571639, "lon": -73.9532558 }, + { "lat": 40.7571304, "lon": -73.9531758 }, + { "lat": 40.7571160, "lon": -73.9531435 }, + { "lat": 40.7570991, "lon": -73.9531158 }, + { "lat": 40.7570797, "lon": -73.9530915 }, + { "lat": 40.7570573, "lon": -73.9530721 }, + { "lat": 40.7570354, "lon": -73.9530553 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "15 mph", + "name": "East Main Street", + "name_1": "Main Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East", + "tiger:name_base_1": "Main", + "tiger:name_type": "Rd", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1417134067, + "bounds": { + "minlat": 40.8134732, + "minlon": -73.9304903, + "maxlat": 40.8150600, + "maxlon": -73.9297968 + }, + "nodes": [ + 9903106237, + 6324329770, + 5482250743, + 6224283291, + 9163775405, + 6096486614 + ], + "geometry": [ + { "lat": 40.8150600, "lon": -73.9297968 }, + { "lat": 40.8138414, "lon": -73.9303465 }, + { "lat": 40.8137688, "lon": -73.9303736 }, + { "lat": 40.8135913, "lon": -73.9304291 }, + { "lat": 40.8135329, "lon": -73.9304548 }, + { "lat": 40.8134732, "lon": -73.9304903 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Walton Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1417159208, + "bounds": { + "minlat": 40.8504660, + "minlon": -73.9069227, + "maxlat": 40.8514010, + "maxlon": -73.9060500 + }, + "nodes": [ + 42740228, + 13031112700, + 12832582845, + 42749462, + 12832582841, + 9920174005, + 2028361261 + ], + "geometry": [ + { "lat": 40.8514010, "lon": -73.9060500 }, + { "lat": 40.8513489, "lon": -73.9060975 }, + { "lat": 40.8508947, "lon": -73.9065100 }, + { "lat": 40.8508256, "lon": -73.9065741 }, + { "lat": 40.8507864, "lon": -73.9066102 }, + { "lat": 40.8505170, "lon": -73.9068731 }, + { "lat": 40.8504660, "lon": -73.9069227 } + ], + "tags": { + "highway": "residential", + "name": "Creston Avenue", + "oneway": "yes", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Creston", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1417163790, + "bounds": { + "minlat": 40.8122004, + "minlon": -73.9363359, + "maxlat": 40.8122646, + "maxlon": -73.9361914 + }, + "nodes": [ + 8236461958, + 2481877071 + ], + "geometry": [ + { "lat": 40.8122646, "lon": -73.9361914 }, + { "lat": 40.8122004, "lon": -73.9363359 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 1417177339, + "bounds": { + "minlat": 40.7071296, + "minlon": -74.0165152, + "maxlat": 40.7072114, + "maxlon": -74.0164734 + }, + "nodes": [ + 3778160094, + 3778160095, + 11416176632, + 3778160096, + 588593097 + ], + "geometry": [ + { "lat": 40.7071296, "lon": -74.0164774 }, + { "lat": 40.7071564, "lon": -74.0164734 }, + { "lat": 40.7071765, "lon": -74.0164764 }, + { "lat": 40.7071970, "lon": -74.0164895 }, + { "lat": 40.7072114, "lon": -74.0165152 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Little West Street", + "name:ko": "리틀 웨스트 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1417405180, + "bounds": { + "minlat": 40.7877536, + "minlon": -73.9474623, + "maxlat": 40.7896375, + "maxlon": -73.9460871 + }, + "nodes": [ + 42450052, + 6190264270, + 6190264256, + 6190263569, + 42438953, + 6190263573, + 6190264284, + 42430482, + 6190264219, + 6191027356, + 42434898 + ], + "geometry": [ + { "lat": 40.7877536, "lon": -73.9474623 }, + { "lat": 40.7878107, "lon": -73.9474225 }, + { "lat": 40.7882637, "lon": -73.9470899 }, + { "lat": 40.7883283, "lon": -73.9470416 }, + { "lat": 40.7883857, "lon": -73.9469991 }, + { "lat": 40.7884455, "lon": -73.9469551 }, + { "lat": 40.7889312, "lon": -73.9466024 }, + { "lat": 40.7890006, "lon": -73.9465498 }, + { "lat": 40.7890731, "lon": -73.9464992 }, + { "lat": 40.7895920, "lon": -73.9461203 }, + { "lat": 40.7896375, "lon": -73.9460871 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1417485631, + "bounds": { + "minlat": 40.7189279, + "minlon": -73.9076811, + "maxlat": 40.7190609, + "maxlon": -73.9073672 + }, + "nodes": [ + 2996303620, + 7711279835 + ], + "geometry": [ + { "lat": 40.7190609, "lon": -73.9073672 }, + { "lat": 40.7189279, "lon": -73.9076811 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Flushing Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1417858150, + "bounds": { + "minlat": 40.7028262, + "minlon": -73.9948144, + "maxlat": 40.7028794, + "maxlon": -73.9947825 + }, + "nodes": [ + 2340051732, + 10739408509 + ], + "geometry": [ + { "lat": 40.7028794, "lon": -73.9947825 }, + { "lat": 40.7028262, "lon": -73.9948144 } + ], + "tags": { + "bicycle": "designated", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Furman Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Furman", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1417961338, + "bounds": { + "minlat": 40.7630863, + "minlon": -73.9856975, + "maxlat": 40.7631549, + "maxlon": -73.9855271 + }, + "nodes": [ + 13030609836, + 13030609837, + 13030609835 + ], + "geometry": [ + { "lat": 40.7631549, "lon": -73.9856975 }, + { "lat": 40.7631411, "lon": -73.9856781 }, + { "lat": 40.7630863, "lon": -73.9855271 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1418017974, + "bounds": { + "minlat": 40.8320260, + "minlon": -73.9158920, + "maxlat": 40.8335883, + "maxlon": -73.9149802 + }, + "nodes": [ + 42747574, + 13031082361, + 12739350633, + 42755581 + ], + "geometry": [ + { "lat": 40.8320260, "lon": -73.9158920 }, + { "lat": 40.8320963, "lon": -73.9158514 }, + { "lat": 40.8335191, "lon": -73.9150206 }, + { "lat": 40.8335883, "lon": -73.9149802 } + ], + "tags": { + "highway": "residential", + "name": "Grant Avenue", + "name:etymology:wikidata": "Q34836", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grant", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1418019018, + "bounds": { + "minlat": 40.7400321, + "minlon": -73.9596411, + "maxlat": 40.7408018, + "maxlon": -73.9593763 + }, + "nodes": [ + 42786626, + 11196970675, + 6644311078, + 11306575594, + 11623090342, + 42823482, + 11623090344, + 11203867478 + ], + "geometry": [ + { "lat": 40.7408018, "lon": -73.9593763 }, + { "lat": 40.7407225, "lon": -73.9594037 }, + { "lat": 40.7403477, "lon": -73.9595328 }, + { "lat": 40.7402793, "lon": -73.9595564 }, + { "lat": 40.7401740, "lon": -73.9595947 }, + { "lat": 40.7401161, "lon": -73.9596127 }, + { "lat": 40.7400513, "lon": -73.9596346 }, + { "lat": 40.7400321, "lon": -73.9596411 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "name": "2nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1418023508, + "bounds": { + "minlat": 40.8255848, + "minlon": -73.9184587, + "maxlat": 40.8305360, + "maxlon": -73.9156990 + }, + "nodes": [ + 42735824, + 9917683041, + 9009148303, + 13033599665, + 42732938, + 13033599667, + 42735827, + 12038479084, + 42735831, + 12038479066, + 42735834, + 12038479076, + 12038440333, + 42735836, + 12038440092, + 12038440129, + 42735842 + ], + "geometry": [ + { "lat": 40.8255848, "lon": -73.9184587 }, + { "lat": 40.8256878, "lon": -73.9184006 }, + { "lat": 40.8261618, "lon": -73.9181345 }, + { "lat": 40.8264610, "lon": -73.9179681 }, + { "lat": 40.8265285, "lon": -73.9179306 }, + { "lat": 40.8265811, "lon": -73.9179016 }, + { "lat": 40.8272501, "lon": -73.9175332 }, + { "lat": 40.8273113, "lon": -73.9174995 }, + { "lat": 40.8278099, "lon": -73.9172249 }, + { "lat": 40.8283327, "lon": -73.9169370 }, + { "lat": 40.8283890, "lon": -73.9169060 }, + { "lat": 40.8284550, "lon": -73.9168698 }, + { "lat": 40.8292275, "lon": -73.9164462 }, + { "lat": 40.8292923, "lon": -73.9164107 }, + { "lat": 40.8293490, "lon": -73.9163765 }, + { "lat": 40.8304785, "lon": -73.9157319 }, + { "lat": 40.8305360, "lon": -73.9156990 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Morris Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 1418028000, + "bounds": { + "minlat": 40.8513326, + "minlon": -73.9084198, + "maxlat": 40.8534740, + "maxlon": -73.9064480 + }, + "nodes": [ + 42733827, + 13016926974, + 13144327887, + 13031136602, + 42733824, + 13031123700, + 12739101053, + 42733821 + ], + "geometry": [ + { "lat": 40.8534740, "lon": -73.9064480 }, + { "lat": 40.8534012, "lon": -73.9065082 }, + { "lat": 40.8531493, "lon": -73.9067396 }, + { "lat": 40.8522742, "lon": -73.9075434 }, + { "lat": 40.8522170, "lon": -73.9075960 }, + { "lat": 40.8521686, "lon": -73.9076411 }, + { "lat": 40.8514025, "lon": -73.9083547 }, + { "lat": 40.8513326, "lon": -73.9084198 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Walton Avenue", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1418032154, + "bounds": { + "minlat": 40.8304700, + "minlon": -73.9097130, + "maxlat": 40.8320070, + "maxlon": -73.9087500 + }, + "nodes": [ + 42742456, + 12038056040, + 13031288241, + 42759466 + ], + "geometry": [ + { "lat": 40.8320070, "lon": -73.9087500 }, + { "lat": 40.8319285, "lon": -73.9087992 }, + { "lat": 40.8305349, "lon": -73.9096723 }, + { "lat": 40.8304700, "lon": -73.9097130 } + ], + "tags": { + "highway": "residential", + "name": "Brook Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1418032155, + "bounds": { + "minlat": 40.8291428, + "minlon": -73.9139880, + "maxlat": 40.8299800, + "maxlon": -73.9113991 + }, + "nodes": [ + 42743936, + 12038440247, + 12038440282, + 42768836, + 12038440280, + 12038478814, + 42746982, + 12038478813, + 12038440070, + 42764732 + ], + "geometry": [ + { "lat": 40.8299800, "lon": -73.9139880 }, + { "lat": 40.8299574, "lon": -73.9139182 }, + { "lat": 40.8297268, "lon": -73.9132067 }, + { "lat": 40.8297000, "lon": -73.9131240 }, + { "lat": 40.8296734, "lon": -73.9130417 }, + { "lat": 40.8294468, "lon": -73.9123409 }, + { "lat": 40.8294190, "lon": -73.9122550 }, + { "lat": 40.8293939, "lon": -73.9121774 }, + { "lat": 40.8291874, "lon": -73.9115374 }, + { "lat": 40.8291428, "lon": -73.9113991 } + ], + "tags": { + "highway": "residential", + "name": "East 166th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "166th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1418037328, + "bounds": { + "minlat": 40.8280670, + "minlon": -73.9160880, + "maxlat": 40.8290063, + "maxlon": -73.9155611 + }, + "nodes": [ + 42742402, + 12038479071, + 8187805333, + 12038440222, + 42756645 + ], + "geometry": [ + { "lat": 40.8280670, "lon": -73.9160880 }, + { "lat": 40.8281289, "lon": -73.9160534 }, + { "lat": 40.8289050, "lon": -73.9156199 }, + { "lat": 40.8289460, "lon": -73.9155961 }, + { "lat": 40.8290063, "lon": -73.9155611 } + ], + "tags": { + "highway": "residential", + "name": "College Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "College", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1418037340, + "bounds": { + "minlat": 40.8350130, + "minlon": -73.9120570, + "maxlat": 40.8399360, + "maxlon": -73.9091640 + }, + "nodes": [ + 42756654, + 13031247717, + 5481921491, + 13036556301, + 42739240, + 13036556313, + 5481921503, + 13036621417, + 42756660, + 13036621413, + 10126901704, + 10126901703, + 42748481 + ], + "geometry": [ + { "lat": 40.8350130, "lon": -73.9120570 }, + { "lat": 40.8350913, "lon": -73.9120119 }, + { "lat": 40.8368156, "lon": -73.9109986 }, + { "lat": 40.8374294, "lon": -73.9106382 }, + { "lat": 40.8375030, "lon": -73.9105950 }, + { "lat": 40.8375851, "lon": -73.9105465 }, + { "lat": 40.8381435, "lon": -73.9102163 }, + { "lat": 40.8386447, "lon": -73.9099200 }, + { "lat": 40.8387090, "lon": -73.9098820 }, + { "lat": 40.8387734, "lon": -73.9098443 }, + { "lat": 40.8398157, "lon": -73.9092344 }, + { "lat": 40.8398541, "lon": -73.9092119 }, + { "lat": 40.8399360, "lon": -73.9091640 } + ], + "tags": { + "highway": "residential", + "name": "College Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "College", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1418039150, + "bounds": { + "minlat": 40.8334090, + "minlon": -73.9138440, + "maxlat": 40.8336940, + "maxlon": -73.9130010 + }, + "nodes": [ + 42735854, + 13031182843, + 7366626466, + 13031202594, + 42742441 + ], + "geometry": [ + { "lat": 40.8336940, "lon": -73.9138440 }, + { "lat": 40.8336636, "lon": -73.9137563 }, + { "lat": 40.8335430, "lon": -73.9133972 }, + { "lat": 40.8334398, "lon": -73.9130920 }, + { "lat": 40.8334090, "lon": -73.9130010 } + ], + "tags": { + "highway": "residential", + "name": "East 168th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1418040580, + "bounds": { + "minlat": 40.7228120, + "minlon": -73.9888305, + "maxlat": 40.7229037, + "maxlon": -73.9887754 + }, + "nodes": [ + 7480301864, + 3212472830 + ], + "geometry": [ + { "lat": 40.7229037, "lon": -73.9887754 }, + { "lat": 40.7228120, "lon": -73.9888305 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 1418040581, + "bounds": { + "minlat": 40.7208768, + "minlon": -73.9896674, + "maxlat": 40.7216851, + "maxlon": -73.9892792 + }, + "nodes": [ + 42432057, + 5854381578, + 9181660645 + ], + "geometry": [ + { "lat": 40.7216851, "lon": -73.9892792 }, + { "lat": 40.7216431, "lon": -73.9892994 }, + { "lat": 40.7208768, "lon": -73.9896674 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 1418040582, + "bounds": { + "minlat": 40.7216145, + "minlon": -73.9890209, + "maxlat": 40.7219882, + "maxlon": -73.9888768 + }, + "nodes": [ + 42432060, + 5854381562, + 6162064820, + 11148406716 + ], + "geometry": [ + { "lat": 40.7216145, "lon": -73.9890209 }, + { "lat": 40.7216666, "lon": -73.9889951 }, + { "lat": 40.7218553, "lon": -73.9889246 }, + { "lat": 40.7219882, "lon": -73.9888768 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Allen Street", + "name:etymology:wikidata": "Q8011870", + "name:ko": "앨런 스트리트", + "name:ru": "Аллен-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q4062582", + "wikipedia": "en:Allen Street" + } +}, +{ + "type": "way", + "id": 1418230980, + "bounds": { + "minlat": 40.8284651, + "minlon": -73.9138754, + "maxlat": 40.8309360, + "maxlon": -73.9123950 + }, + "nodes": [ + 42782478, + 12038440082, + 5482223756, + 12038440120, + 42768836, + 12038440105, + 5482223754, + 12038440262, + 42759459 + ], + "geometry": [ + { "lat": 40.8284651, "lon": -73.9138754 }, + { "lat": 40.8285122, "lon": -73.9138233 }, + { "lat": 40.8295747, "lon": -73.9132015 }, + { "lat": 40.8296442, "lon": -73.9131585 }, + { "lat": 40.8297000, "lon": -73.9131240 }, + { "lat": 40.8297625, "lon": -73.9130871 }, + { "lat": 40.8303924, "lon": -73.9127156 }, + { "lat": 40.8308629, "lon": -73.9124381 }, + { "lat": 40.8309360, "lon": -73.9123950 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Teller Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller", + "tiger:name_type": "Ave", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1418232745, + "bounds": { + "minlat": 40.8440509, + "minlon": -73.9424729, + "maxlat": 40.8446105, + "maxlon": -73.9411456 + }, + "nodes": [ + 42427146, + 7604384376, + 2499802966, + 7604384417, + 42435002 + ], + "geometry": [ + { "lat": 40.8440509, "lon": -73.9411456 }, + { "lat": 40.8440897, "lon": -73.9412391 }, + { "lat": 40.8445496, "lon": -73.9423238 }, + { "lat": 40.8445755, "lon": -73.9423857 }, + { "lat": 40.8446105, "lon": -73.9424729 } + ], + "tags": { + "highway": "residential", + "name": "West 171st Street", + "name_1": "West 171 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "171st", + "tiger:name_base_1": "171", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1418232746, + "bounds": { + "minlat": 40.8417005, + "minlon": -73.9370346, + "maxlat": 40.8423228, + "maxlon": -73.9355668 + }, + "nodes": [ + 42434989, + 6836035764, + 11758679652, + 42434992 + ], + "geometry": [ + { "lat": 40.8417005, "lon": -73.9355668 }, + { "lat": 40.8417605, "lon": -73.9357098 }, + { "lat": 40.8422800, "lon": -73.9369338 }, + { "lat": 40.8423228, "lon": -73.9370346 } + ], + "tags": { + "highway": "residential", + "name": "West 171st Street", + "name_1": "West 171 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "171st", + "tiger:name_base_1": "171", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1418241288, + "bounds": { + "minlat": 40.8316410, + "minlon": -73.9225258, + "maxlat": 40.8338405, + "maxlon": -73.9212376 + }, + "nodes": [ + 42734179, + 13033156026, + 13033156007, + 42734184 + ], + "geometry": [ + { "lat": 40.8316410, "lon": -73.9225258 }, + { "lat": 40.8317162, "lon": -73.9224819 }, + { "lat": 40.8337838, "lon": -73.9212708 }, + { "lat": 40.8338405, "lon": -73.9212376 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Gerard Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1418242366, + "bounds": { + "minlat": 40.7212541, + "minlon": -73.9922542, + "maxlat": 40.7213122, + "maxlon": -73.9922275 + }, + "nodes": [ + 42437113, + 8231896502 + ], + "geometry": [ + { "lat": 40.7212541, "lon": -73.9922542 }, + { "lat": 40.7213122, "lon": -73.9922275 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Chrystie Street", + "name:etymology:wikidata": "Q6226101", + "name:ko": "크리스티 스트리트", + "name:ru": "Кристи-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4123570", + "wikipedia": "en:Chrystie Street" + } +}, +{ + "type": "way", + "id": 1418243274, + "bounds": { + "minlat": 40.8338405, + "minlon": -73.9216174, + "maxlat": 40.8339693, + "maxlon": -73.9212376 + }, + "nodes": [ + 42734184, + 13033143400, + 13033269541 + ], + "geometry": [ + { "lat": 40.8338405, "lon": -73.9212376 }, + { "lat": 40.8338638, "lon": -73.9213062 }, + { "lat": 40.8339693, "lon": -73.9216174 } + ], + "tags": { + "highway": "residential", + "name": "McClellan Street", + "name:etymology:wikidata": "Q310192", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Mc Clellan", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1418243588, + "bounds": { + "minlat": 40.7491267, + "minlon": -74.0083244, + "maxlat": 40.7493106, + "maxlon": -74.0082190 + }, + "nodes": [ + 246580294, + 9143574631 + ], + "geometry": [ + { "lat": 40.7493106, "lon": -74.0083244 }, + { "lat": 40.7491267, "lon": -74.0082190 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "lanes": "2", + "maxspeed": "25 mph", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1418243589, + "bounds": { + "minlat": 40.7486200, + "minlon": -74.0078547, + "maxlat": 40.7486964, + "maxlon": -74.0076825 + }, + "nodes": [ + 246580298, + 12161224693, + 12161224694, + 8703673333 + ], + "geometry": [ + { "lat": 40.7486200, "lon": -74.0078547 }, + { "lat": 40.7486301, "lon": -74.0078223 }, + { "lat": 40.7486488, "lon": -74.0077800 }, + { "lat": 40.7486964, "lon": -74.0076825 } + ], + "tags": { + "access": "no", + "bus": "yes", + "highway": "service", + "lanes": "1", + "maxspeed": "25 mph", + "oneway": "yes", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1418243629, + "bounds": { + "minlat": 40.7850612, + "minlon": -73.9825606, + "maxlat": 40.7861933, + "maxlon": -73.9814421 + }, + "nodes": [ + 42441587, + 9168918193, + 2329939920, + 9168918169, + 2329939917, + 42421778, + 4906056159 + ], + "geometry": [ + { "lat": 40.7861933, "lon": -73.9814421 }, + { "lat": 40.7861318, "lon": -73.9814798 }, + { "lat": 40.7860781, "lon": -73.9815182 }, + { "lat": 40.7860137, "lon": -73.9815740 }, + { "lat": 40.7859548, "lon": -73.9816307 }, + { "lat": 40.7855915, "lon": -73.9820041 }, + { "lat": 40.7850612, "lon": -73.9825606 } + ], + "tags": { + "hgv": "no", + "highway": "secondary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:both": "separate", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1418243630, + "bounds": { + "minlat": 40.8404870, + "minlon": -73.9383640, + "maxlat": 40.8429245, + "maxlon": -73.9365954 + }, + "nodes": [ + 42455238, + 6836035739, + 6836035818, + 6836035741, + 42447418, + 6836035743, + 6836035745, + 42454622, + 9908577542, + 6836035747, + 11758679655, + 42434992, + 11758679653, + 11758679659, + 42455245 + ], + "geometry": [ + { "lat": 40.8404870, "lon": -73.9383640 }, + { "lat": 40.8405694, "lon": -73.9383043 }, + { "lat": 40.8408834, "lon": -73.9380766 }, + { "lat": 40.8410345, "lon": -73.9379670 }, + { "lat": 40.8410870, "lon": -73.9379290 }, + { "lat": 40.8411526, "lon": -73.9378901 }, + { "lat": 40.8416136, "lon": -73.9375544 }, + { "lat": 40.8416705, "lon": -73.9375115 }, + { "lat": 40.8417266, "lon": -73.9374682 }, + { "lat": 40.8417585, "lon": -73.9374452 }, + { "lat": 40.8422662, "lon": -73.9370758 }, + { "lat": 40.8423228, "lon": -73.9370346 }, + { "lat": 40.8423798, "lon": -73.9369917 }, + { "lat": 40.8428653, "lon": -73.9366385 }, + { "lat": 40.8429245, "lon": -73.9365954 } + ], + "tags": { + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "maxspeed:type": "sign", + "name": "Audubon Avenue", + "name:etymology:wikidata": "Q182882", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Audubon", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q2870884", + "wikipedia": "en:Audubon Avenue" + } +}, +{ + "type": "way", + "id": 1418279952, + "bounds": { + "minlat": 40.7727373, + "minlon": -73.9821074, + "maxlat": 40.7728902, + "maxlon": -73.9820989 + }, + "nodes": [ + 6173564344, + 13208007103 + ], + "geometry": [ + { "lat": 40.7727373, "lon": -73.9820989 }, + { "lat": 40.7728902, "lon": -73.9821074 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shoulder", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "through|through", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1418561725, + "bounds": { + "minlat": 40.7305220, + "minlon": -74.0018695, + "maxlat": 40.7305503, + "maxlon": -74.0017000 + }, + "nodes": [ + 3891969471, + 42430205 + ], + "geometry": [ + { "lat": 40.7305220, "lon": -74.0018695 }, + { "lat": 40.7305503, "lon": -74.0017000 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Carmine Street", + "name:ko": "카민 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1418566070, + "bounds": { + "minlat": 40.8498076, + "minlon": -73.9203373, + "maxlat": 40.8515430, + "maxlon": -73.9183260 + }, + "nodes": [ + 42745018, + 13036604035, + 2808792694, + 12055955028, + 2808792665, + 12055955036 + ], + "geometry": [ + { "lat": 40.8515430, "lon": -73.9183260 }, + { "lat": 40.8514993, "lon": -73.9183885 }, + { "lat": 40.8506761, "lon": -73.9196188 }, + { "lat": 40.8506532, "lon": -73.9196463 }, + { "lat": 40.8506293, "lon": -73.9196692 }, + { "lat": 40.8498076, "lon": -73.9203373 } + ], + "tags": { + "highway": "residential", + "name": "Popham Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Popham", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_left_1": "10453", + "tiger:zip_left_2": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1418566074, + "bounds": { + "minlat": 40.8496277, + "minlon": -73.9193705, + "maxlat": 40.8513140, + "maxlon": -73.9172750 + }, + "nodes": [ + 42731821, + 2808764475, + 12055955034, + 2791729463, + 8285583697, + 10173054003, + 13036604072, + 42731822 + ], + "geometry": [ + { "lat": 40.8496277, "lon": -73.9193705 }, + { "lat": 40.8500247, "lon": -73.9190415 }, + { "lat": 40.8501752, "lon": -73.9189180 }, + { "lat": 40.8504578, "lon": -73.9185685 }, + { "lat": 40.8505761, "lon": -73.9183898 }, + { "lat": 40.8512288, "lon": -73.9174038 }, + { "lat": 40.8512566, "lon": -73.9173683 }, + { "lat": 40.8513140, "lon": -73.9172750 } + ], + "tags": { + "highway": "residential", + "name": "Montgomery Avenue", + "name:etymology:wikidata": "Q444947", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Montgomery", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1418566075, + "bounds": { + "minlat": 40.8496277, + "minlon": -73.9203373, + "maxlat": 40.8498076, + "maxlon": -73.9193705 + }, + "nodes": [ + 42731821, + 8285583698, + 13068021994, + 12055955036 + ], + "geometry": [ + { "lat": 40.8496277, "lon": -73.9193705 }, + { "lat": 40.8497805, "lon": -73.9201919 }, + { "lat": 40.8497887, "lon": -73.9202413 }, + { "lat": 40.8498076, "lon": -73.9203373 } + ], + "tags": { + "highway": "residential", + "name": "West 176th Step Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "176th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1418566639, + "bounds": { + "minlat": 40.8555926, + "minlon": -73.9342626, + "maxlat": 40.8572591, + "maxlon": -73.9334312 + }, + "nodes": [ + 1210384798, + 42454300, + 11594925610, + 7729759885, + 9424323036, + 11594925609, + 42450290 + ], + "geometry": [ + { "lat": 40.8572591, "lon": -73.9334312 }, + { "lat": 40.8567830, "lon": -73.9336810 }, + { "lat": 40.8561977, "lon": -73.9340079 }, + { "lat": 40.8560212, "lon": -73.9341065 }, + { "lat": 40.8557057, "lon": -73.9342254 }, + { "lat": 40.8556676, "lon": -73.9342380 }, + { "lat": 40.8555926, "lon": -73.9342626 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bennett Avenue", + "name:etymology:wikidata": "Q1343611", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bennett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1418567260, + "bounds": { + "minlat": 40.8384164, + "minlon": -73.9126729, + "maxlat": 40.8394023, + "maxlon": -73.9121060 + }, + "nodes": [ + 2327276582, + 5762102222, + 2408357248, + 13036568215 + ], + "geometry": [ + { "lat": 40.8384164, "lon": -73.9126729 }, + { "lat": 40.8384766, "lon": -73.9126359 }, + { "lat": 40.8389600, "lon": -73.9123349 }, + { "lat": 40.8394023, "lon": -73.9121060 } + ], + "tags": { + "highway": "residential", + "name": "Sheridan Avenue", + "name:etymology:wikidata": "Q355452", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sheridan", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 1418567392, + "bounds": { + "minlat": 40.8254456, + "minlon": -73.9236586, + "maxlat": 40.8254855, + "maxlon": -73.9235456 + }, + "nodes": [ + 9910729401, + 42741417 + ], + "geometry": [ + { "lat": 40.8254855, "lon": -73.9236586 }, + { "lat": 40.8254456, "lon": -73.9235456 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 158th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_left_1": "10451" + } +}, +{ + "type": "way", + "id": 1418567393, + "bounds": { + "minlat": 40.8256511, + "minlon": -73.9218292, + "maxlat": 40.8256857, + "maxlon": -73.9217314 + }, + "nodes": [ + 42767715, + 8251591969 + ], + "geometry": [ + { "lat": 40.8256511, "lon": -73.9217314 }, + { "lat": 40.8256857, "lon": -73.9218292 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 159th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "159th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1418567395, + "bounds": { + "minlat": 40.8260553, + "minlon": -73.9231314, + "maxlat": 40.8261253, + "maxlon": -73.9228924 + }, + "nodes": [ + 8251591988, + 2408448908, + 42741414 + ], + "geometry": [ + { "lat": 40.8260553, "lon": -73.9228924 }, + { "lat": 40.8260853, "lon": -73.9229868 }, + { "lat": 40.8261253, "lon": -73.9231314 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 159th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "159th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1418567396, + "bounds": { + "minlat": 40.8256019, + "minlon": -73.9217695, + "maxlat": 40.8256511, + "maxlon": -73.9217314 + }, + "nodes": [ + 8251591998, + 42767715 + ], + "geometry": [ + { "lat": 40.8256019, "lon": -73.9217695 }, + { "lat": 40.8256511, "lon": -73.9217314 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Concourse Village West", + "name:etymology:wikidata": "Q122566725", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concourse Village", + "tiger:name_direction_suffix": "W", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1418567398, + "bounds": { + "minlat": 40.8250421, + "minlon": -73.9222169, + "maxlat": 40.8256019, + "maxlon": -73.9217695 + }, + "nodes": [ + 8251591976, + 8251591998 + ], + "geometry": [ + { "lat": 40.8250421, "lon": -73.9222169 }, + { "lat": 40.8256019, "lon": -73.9217695 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Concourse Village West", + "name:etymology:wikidata": "Q122566725", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concourse Village", + "tiger:name_direction_suffix": "W", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1418567399, + "bounds": { + "minlat": 40.8249025, + "minlon": -73.9223138, + "maxlat": 40.8250421, + "maxlon": -73.9222169 + }, + "nodes": [ + 13033568971, + 42767711, + 5441210467, + 8251591976 + ], + "geometry": [ + { "lat": 40.8249025, "lon": -73.9223138 }, + { "lat": 40.8249700, "lon": -73.9222740 }, + { "lat": 40.8250065, "lon": -73.9222468 }, + { "lat": 40.8250421, "lon": -73.9222169 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Concourse Village West", + "name:etymology:wikidata": "Q122566725", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concourse Village", + "tiger:name_direction_suffix": "W", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1418567400, + "bounds": { + "minlat": 40.8238254, + "minlon": -73.9229534, + "maxlat": 40.8246518, + "maxlon": -73.9224628 + }, + "nodes": [ + 13547349167, + 8613852493, + 13547349168 + ], + "geometry": [ + { "lat": 40.8238254, "lon": -73.9229534 }, + { "lat": 40.8244010, "lon": -73.9226118 }, + { "lat": 40.8246518, "lon": -73.9224628 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "15 mph", + "maxspeed:reason": "school", + "maxspeed:type": "sign", + "name": "Concourse Village West", + "name:etymology:wikidata": "Q122566725", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concourse Village", + "tiger:name_direction_suffix": "W", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1418570751, + "bounds": { + "minlat": 40.8364576, + "minlon": -73.9218408, + "maxlat": 40.8370828, + "maxlon": -73.9209064 + }, + "nodes": [ + 2912071072, + 8074257015, + 1916621953 + ], + "geometry": [ + { "lat": 40.8364576, "lon": -73.9218408 }, + { "lat": 40.8367476, "lon": -73.9214073 }, + { "lat": 40.8370828, "lon": -73.9209064 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1418571393, + "bounds": { + "minlat": 40.8588692, + "minlon": -73.9325832, + "maxlat": 40.8595212, + "maxlon": -73.9321996 + }, + "nodes": [ + 42454313, + 2348610406, + 2348610405, + 2348610404, + 1253602791, + 6882309084, + 1205715024 + ], + "geometry": [ + { "lat": 40.8595212, "lon": -73.9321996 }, + { "lat": 40.8595116, "lon": -73.9322204 }, + { "lat": 40.8594938, "lon": -73.9322515 }, + { "lat": 40.8594721, "lon": -73.9322776 }, + { "lat": 40.8594505, "lon": -73.9322956 }, + { "lat": 40.8589242, "lon": -73.9325562 }, + { "lat": 40.8588692, "lon": -73.9325832 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bennett Avenue", + "name:etymology:wikidata": "Q1343611", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bennett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1418571394, + "bounds": { + "minlat": 40.8595212, + "minlon": -73.9321996, + "maxlat": 40.8595423, + "maxlon": -73.9319760 + }, + "nodes": [ + 1205714945, + 2348610408, + 1253602767, + 2348610410, + 2348610409, + 2348610407, + 42454313 + ], + "geometry": [ + { "lat": 40.8595273, "lon": -73.9319760 }, + { "lat": 40.8595373, "lon": -73.9320193 }, + { "lat": 40.8595415, "lon": -73.9320680 }, + { "lat": 40.8595423, "lon": -73.9321017 }, + { "lat": 40.8595391, "lon": -73.9321383 }, + { "lat": 40.8595319, "lon": -73.9321685 }, + { "lat": 40.8595212, "lon": -73.9321996 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Bennett Avenue", + "name:etymology:wikidata": "Q1343611", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Bennett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1418587642, + "bounds": { + "minlat": 40.8291080, + "minlon": -73.9193130, + "maxlat": 40.8297020, + "maxlon": -73.9186260 + }, + "nodes": [ + 42742392, + 12697054964, + 8187805337, + 7560827245, + 8613855519, + 13033539088, + 42731628 + ], + "geometry": [ + { "lat": 40.8297020, "lon": -73.9193130 }, + { "lat": 40.8296178, "lon": -73.9192709 }, + { "lat": 40.8295745, "lon": -73.9192389 }, + { "lat": 40.8293786, "lon": -73.9190419 }, + { "lat": 40.8291685, "lon": -73.9187661 }, + { "lat": 40.8291516, "lon": -73.9187269 }, + { "lat": 40.8291080, "lon": -73.9186260 } + ], + "tags": { + "highway": "residential", + "name": "East 164th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "164th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1418591120, + "bounds": { + "minlat": 40.8341687, + "minlon": -73.9222057, + "maxlat": 40.8368756, + "maxlon": -73.9206204 + }, + "nodes": [ + 42747552, + 13036769783, + 5487840279, + 5487840282, + 12739350640, + 42759437, + 12739350657, + 6557983787 + ], + "geometry": [ + { "lat": 40.8341687, "lon": -73.9222057 }, + { "lat": 40.8342295, "lon": -73.9221697 }, + { "lat": 40.8343772, "lon": -73.9220823 }, + { "lat": 40.8350769, "lon": -73.9216681 }, + { "lat": 40.8356488, "lon": -73.9213295 }, + { "lat": 40.8357240, "lon": -73.9212850 }, + { "lat": 40.8358134, "lon": -73.9212334 }, + { "lat": 40.8368756, "lon": -73.9206204 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "River Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1418591372, + "bounds": { + "minlat": 40.8539441, + "minlon": -73.9146728, + "maxlat": 40.8562808, + "maxlon": -73.9139115 + }, + "nodes": [ + 42743997, + 8463760571, + 42771338, + 12748250483, + 7940640305, + 10116543412, + 42731722 + ], + "geometry": [ + { "lat": 40.8539441, "lon": -73.9146728 }, + { "lat": 40.8540109, "lon": -73.9146149 }, + { "lat": 40.8555400, "lon": -73.9141220 }, + { "lat": 40.8555963, "lon": -73.9141060 }, + { "lat": 40.8559081, "lon": -73.9140174 }, + { "lat": 40.8561988, "lon": -73.9139348 }, + { "lat": 40.8562808, "lon": -73.9139115 } + ], + "tags": { + "highway": "residential", + "name": "Loring Place South", + "name:etymology:wikidata": "Q56000453", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Loring", + "tiger:name_direction_suffix": "S", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1418591385, + "bounds": { + "minlat": 40.8478959, + "minlon": -73.9196836, + "maxlat": 40.8494489, + "maxlon": -73.9184100 + }, + "nodes": [ + 12055955049, + 42745466, + 8463760570, + 42761302 + ], + "geometry": [ + { "lat": 40.8494489, "lon": -73.9184100 }, + { "lat": 40.8484278, "lon": -73.9192455 }, + { "lat": 40.8479987, "lon": -73.9195985 }, + { "lat": 40.8478959, "lon": -73.9196836 } + ], + "tags": { + "highway": "residential", + "name": "Andrews Avenue South", + "name:etymology:wikidata": "Q56000453", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Andrews", + "tiger:name_direction_suffix": "S", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1418602173, + "bounds": { + "minlat": 40.8364400, + "minlon": -73.9194800, + "maxlat": 40.8367960, + "maxlon": -73.9184120 + }, + "nodes": [ + 42734199, + 3163954898, + 12998565741, + 42733751 + ], + "geometry": [ + { "lat": 40.8367960, "lon": -73.9194800 }, + { "lat": 40.8367716, "lon": -73.9194069 }, + { "lat": 40.8364696, "lon": -73.9185008 }, + { "lat": 40.8364400, "lon": -73.9184120 } + ], + "tags": { + "highway": "residential", + "name": "East 168th Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "168th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1418608469, + "bounds": { + "minlat": 40.8095324, + "minlon": -73.9378846, + "maxlat": 40.8101814, + "maxlon": -73.9374066 + }, + "nodes": [ + 42446187, + 10168169616, + 9177553334, + 10168169635, + 42446190 + ], + "geometry": [ + { "lat": 40.8095324, "lon": -73.9378846 }, + { "lat": 40.8095904, "lon": -73.9378409 }, + { "lat": 40.8100507, "lon": -73.9375041 }, + { "lat": 40.8101006, "lon": -73.9374668 }, + { "lat": 40.8101814, "lon": -73.9374066 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Madison Avenue", + "name:etymology:wikidata": "Q11813", + "name:ru": "Мэдисон-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109849", + "wikipedia": "en:Madison Avenue" + } +}, +{ + "type": "way", + "id": 1418608470, + "bounds": { + "minlat": 40.8140424, + "minlon": -73.9366920, + "maxlat": 40.8146523, + "maxlon": -73.9362392 + }, + "nodes": [ + 7732243573, + 8236461973, + 5378686576, + 9557110350, + 42445585 + ], + "geometry": [ + { "lat": 40.8146523, "lon": -73.9362392 }, + { "lat": 40.8145945, "lon": -73.9362854 }, + { "lat": 40.8144885, "lon": -73.9363604 }, + { "lat": 40.8141050, "lon": -73.9366455 }, + { "lat": 40.8140424, "lon": -73.9366920 } + ], + "tags": { + "bicycle": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "5th Avenue", + "name:en": "5th Avenue", + "name:ru": "5-я авеню", + "parking:lane:width": "13'", + "wikidata": "Q109858", + "wikipedia": "en:Fifth Avenue" + } +}, +{ + "type": "way", + "id": 1418613250, + "bounds": { + "minlat": 40.7008121, + "minlon": -74.0118205, + "maxlat": 40.7013313, + "maxlon": -74.0116144 + }, + "nodes": [ + 13036914760, + 10107930169 + ], + "geometry": [ + { "lat": 40.7008121, "lon": -74.0116144 }, + { "lat": 40.7013313, "lon": -74.0118205 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1418613251, + "bounds": { + "minlat": 40.7008035, + "minlon": -74.0116144, + "maxlat": 40.7008121, + "maxlon": -74.0116105 + }, + "nodes": [ + 701654537, + 13036914760 + ], + "geometry": [ + { "lat": 40.7008035, "lon": -74.0116105 }, + { "lat": 40.7008121, "lon": -74.0116144 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1418615326, + "bounds": { + "minlat": 40.7233168, + "minlon": -74.0037013, + "maxlat": 40.7234347, + "maxlon": -74.0029951 + }, + "nodes": [ + 42432142, + 12187433941, + 8231885413, + 12187433942 + ], + "geometry": [ + { "lat": 40.7233168, "lon": -74.0029951 }, + { "lat": 40.7233216, "lon": -74.0030225 }, + { "lat": 40.7233354, "lon": -74.0031020 }, + { "lat": 40.7234347, "lon": -74.0037013 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Watts Street", + "name:etymology:wikidata": "Q1702113", + "name:ko": "와츠 스트리트", + "name:ru": "Уоттс-стрит", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1418615327, + "bounds": { + "minlat": 40.7234347, + "minlon": -74.0038418, + "maxlat": 40.7234576, + "maxlon": -74.0037013 + }, + "nodes": [ + 12187433942, + 8231938423, + 42436770 + ], + "geometry": [ + { "lat": 40.7234347, "lon": -74.0037013 }, + { "lat": 40.7234448, "lon": -74.0037505 }, + { "lat": 40.7234576, "lon": -74.0038418 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Watts Street", + "name:etymology:wikidata": "Q1702113", + "name:ko": "와츠 스트리트", + "name:ru": "Уоттс-стрит", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1418617531, + "bounds": { + "minlat": 40.8399360, + "minlon": -73.9100940, + "maxlat": 40.8401970, + "maxlon": -73.9090655 + }, + "nodes": [ + 42735867, + 13036982510, + 42748481, + 42748484 + ], + "geometry": [ + { "lat": 40.8401970, "lon": -73.9100940 }, + { "lat": 40.8401513, "lon": -73.9099310 }, + { "lat": 40.8399360, "lon": -73.9091640 }, + { "lat": 40.8399650, "lon": -73.9090655 } + ], + "tags": { + "highway": "residential", + "name": "East 172nd Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "172nd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10457", + "tiger:zip_right": "10457" + } +}, +{ + "type": "way", + "id": 1418623176, + "bounds": { + "minlat": 40.8395576, + "minlon": -73.9184017, + "maxlat": 40.8397056, + "maxlon": -73.9180080 + }, + "nodes": [ + 6286472234, + 13036942019, + 42736368, + 5762102461 + ], + "geometry": [ + { "lat": 40.8397056, "lon": -73.9184017 }, + { "lat": 40.8396540, "lon": -73.9182621 }, + { "lat": 40.8396092, "lon": -73.9181407 }, + { "lat": 40.8395576, "lon": -73.9180080 } + ], + "tags": { + "highway": "residential", + "name": "Elliot Place", + "name:etymology:wikidata": "Q5361269", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Elliot", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1418624794, + "bounds": { + "minlat": 40.8300530, + "minlon": -73.9232897, + "maxlat": 40.8303497, + "maxlon": -73.9224130 + }, + "nodes": [ + 42733725, + 13037026705, + 13039060064, + 42734173 + ], + "geometry": [ + { "lat": 40.8300530, "lon": -73.9224130 }, + { "lat": 40.8300825, "lon": -73.9224973 }, + { "lat": 40.8303187, "lon": -73.9231978 }, + { "lat": 40.8303497, "lon": -73.9232897 } + ], + "tags": { + "highway": "residential", + "name": "East 164th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "164th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10456", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1418633736, + "bounds": { + "minlat": 40.8285627, + "minlon": -73.9290043, + "maxlat": 40.8293359, + "maxlon": -73.9277579 + }, + "nodes": [ + 2609934090, + 4207863955 + ], + "geometry": [ + { "lat": 40.8293359, "lon": -73.9290043 }, + { "lat": 40.8285627, "lon": -73.9277579 } + ], + "tags": { + "busway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "East 161st Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "161st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q5327614", + "wikipedia": "en:161st Street (Bronx)" + } +}, +{ + "type": "way", + "id": 1418639954, + "bounds": { + "minlat": 40.8397056, + "minlon": -73.9184017, + "maxlat": 40.8403620, + "maxlon": -73.9180620 + }, + "nodes": [ + 42736043, + 13036868372, + 6286472234 + ], + "geometry": [ + { "lat": 40.8403620, "lon": -73.9180620 }, + { "lat": 40.8402809, "lon": -73.9181048 }, + { "lat": 40.8397056, "lon": -73.9184017 } + ], + "tags": { + "highway": "unclassified", + "name": "Plaza Drive", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1418647474, + "bounds": { + "minlat": 40.7132942, + "minlon": -73.9673932, + "maxlat": 40.7139214, + "maxlon": -73.9671197 + }, + "nodes": [ + 42469464, + 5186818627, + 42469468 + ], + "geometry": [ + { "lat": 40.7132942, "lon": -73.9673932 }, + { "lat": 40.7138638, "lon": -73.9671448 }, + { "lat": 40.7139214, "lon": -73.9671197 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Kent Avenue", + "name:etymology:wikidata": "Q725292", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Kent", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1418677148, + "bounds": { + "minlat": 40.7485187, + "minlon": -73.9453507, + "maxlat": 40.7492110, + "maxlon": -73.9451222 + }, + "nodes": [ + 13037421812, + 13037421811, + 13037421810, + 13037421809 + ], + "geometry": [ + { "lat": 40.7492110, "lon": -73.9451222 }, + { "lat": 40.7491493, "lon": -73.9451442 }, + { "lat": 40.7485785, "lon": -73.9453299 }, + { "lat": 40.7485187, "lon": -73.9453507 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1418679249, + "bounds": { + "minlat": 40.8489375, + "minlon": -73.9931120, + "maxlat": 40.8515080, + "maxlon": -73.9886495 + }, + "nodes": [ + 103256375, + 103236651, + 103277690, + 103271803, + 103110260, + 103277692, + 103189435 + ], + "geometry": [ + { "lat": 40.8515080, "lon": -73.9931120 }, + { "lat": 40.8510840, "lon": -73.9923910 }, + { "lat": 40.8506650, "lon": -73.9916740 }, + { "lat": 40.8502585, "lon": -73.9909620 }, + { "lat": 40.8498030, "lon": -73.9901680 }, + { "lat": 40.8493440, "lon": -73.9893690 }, + { "lat": 40.8489375, "lon": -73.9886495 } + ], + "tags": { + "highway": "residential", + "maxweight:signed": "no", + "name": "East Edsall Boulevard", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edsall", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 1418679250, + "bounds": { + "minlat": 40.8489375, + "minlon": -73.9886495, + "maxlat": 40.8503687, + "maxlon": -73.9872028 + }, + "nodes": [ + 103189435, + 103189437 + ], + "geometry": [ + { "lat": 40.8489375, "lon": -73.9886495 }, + { "lat": 40.8503687, "lon": -73.9872028 } + ], + "tags": { + "highway": "residential", + "name": "5th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "5th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1418821455, + "bounds": { + "minlat": 40.8381341, + "minlon": -73.9193042, + "maxlat": 40.8389820, + "maxlon": -73.9185920 + }, + "nodes": [ + 42736033, + 42736037, + 13036958390, + 42736040 + ], + "geometry": [ + { "lat": 40.8381341, "lon": -73.9193042 }, + { "lat": 40.8383810, "lon": -73.9190170 }, + { "lat": 40.8389321, "lon": -73.9186273 }, + { "lat": 40.8389820, "lon": -73.9185920 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1418821456, + "bounds": { + "minlat": 40.8407660, + "minlon": -73.9172990, + "maxlat": 40.8413470, + "maxlon": -73.9168920 + }, + "nodes": [ + 42736356, + 13247381559, + 13247358168, + 42736361 + ], + "geometry": [ + { "lat": 40.8413470, "lon": -73.9168920 }, + { "lat": 40.8412808, "lon": -73.9169385 }, + { "lat": 40.8410194, "lon": -73.9171219 }, + { "lat": 40.8407660, "lon": -73.9172990 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1418828020, + "bounds": { + "minlat": 40.8625949, + "minlon": -73.9253818, + "maxlat": 40.8633797, + "maxlon": -73.9232362 + }, + "nodes": [ + 42432789, + 4321038141, + 7271168431, + 8153243807, + 8153243800, + 9561420878 + ], + "geometry": [ + { "lat": 40.8625949, "lon": -73.9253818 }, + { "lat": 40.8626390, "lon": -73.9252585 }, + { "lat": 40.8627547, "lon": -73.9249426 }, + { "lat": 40.8628299, "lon": -73.9247374 }, + { "lat": 40.8631862, "lon": -73.9237646 }, + { "lat": 40.8633797, "lon": -73.9232362 } + ], + "tags": { + "highway": "tertiary", + "name": "Post Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Post", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1418834281, + "bounds": { + "minlat": 40.8453127, + "minlon": -73.9118472, + "maxlat": 40.8490790, + "maxlon": -73.9094510 + }, + "nodes": [ + 42733813, + 13037357714, + 13038656277, + 42733809, + 13038656278, + 42733805, + 13040525964, + 42733802, + 13040525968, + 42733799, + 5481864196, + 459823618 + ], + "geometry": [ + { "lat": 40.8490790, "lon": -73.9094510 }, + { "lat": 40.8490156, "lon": -73.9094739 }, + { "lat": 40.8483218, "lon": -73.9097252 }, + { "lat": 40.8482560, "lon": -73.9097490 }, + { "lat": 40.8482038, "lon": -73.9097861 }, + { "lat": 40.8475601, "lon": -73.9102451 }, + { "lat": 40.8470550, "lon": -73.9106057 }, + { "lat": 40.8469837, "lon": -73.9106561 }, + { "lat": 40.8469038, "lon": -73.9107133 }, + { "lat": 40.8458734, "lon": -73.9114477 }, + { "lat": 40.8454165, "lon": -73.9117733 }, + { "lat": 40.8453127, "lon": -73.9118472 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Walton Avenue", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Walton", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468" + } +}, +{ + "type": "way", + "id": 1418835656, + "bounds": { + "minlat": 40.8633797, + "minlon": -73.9232362, + "maxlat": 40.8640767, + "maxlon": -73.9213458 + }, + "nodes": [ + 9561420878, + 42445635, + 9561420876, + 9561420894 + ], + "geometry": [ + { "lat": 40.8633797, "lon": -73.9232362 }, + { "lat": 40.8634160, "lon": -73.9231370 }, + { "lat": 40.8634518, "lon": -73.9230395 }, + { "lat": 40.8640767, "lon": -73.9213458 } + ], + "tags": { + "highway": "tertiary", + "name": "Post Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Post", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1418837295, + "bounds": { + "minlat": 40.8604936, + "minlon": -73.9216811, + "maxlat": 40.8606861, + "maxlon": -73.9212428 + }, + "nodes": [ + 42445644, + 9563435884, + 42439065 + ], + "geometry": [ + { "lat": 40.8606861, "lon": -73.9216811 }, + { "lat": 40.8606399, "lon": -73.9215760 }, + { "lat": 40.8604936, "lon": -73.9212428 } + ], + "tags": { + "highway": "residential", + "name": "West 201st Street", + "name_1": "West 201 Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "201st", + "tiger:name_base_1": "201", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1418844065, + "bounds": { + "minlat": 40.8302243, + "minlon": -73.9276674, + "maxlat": 40.8302557, + "maxlon": -73.9275613 + }, + "nodes": [ + 9910738445, + 595786268 + ], + "geometry": [ + { "lat": 40.8302557, "lon": -73.9276674 }, + { "lat": 40.8302243, "lon": -73.9275613 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left|right", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1418844066, + "bounds": { + "minlat": 40.8305262, + "minlon": -73.9275013, + "maxlat": 40.8305938, + "maxlon": -73.9272342 + }, + "nodes": [ + 42732922, + 2912071091 + ], + "geometry": [ + { "lat": 40.8305938, "lon": -73.9272342 }, + { "lat": 40.8305262, "lon": -73.9275013 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1418844067, + "bounds": { + "minlat": 40.8301135, + "minlon": -73.9287492, + "maxlat": 40.8302231, + "maxlon": -73.9284799 + }, + "nodes": [ + 2912071090, + 595786252 + ], + "geometry": [ + { "lat": 40.8302231, "lon": -73.9284799 }, + { "lat": 40.8301135, "lon": -73.9287492 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1418844071, + "bounds": { + "minlat": 40.8304530, + "minlon": -73.9273589, + "maxlat": 40.8305938, + "maxlon": -73.9272342 + }, + "nodes": [ + 42732922, + 13038527564 + ], + "geometry": [ + { "lat": 40.8305938, "lon": -73.9272342 }, + { "lat": 40.8304530, "lon": -73.9273589 } + ], + "tags": { + "bicycle": "designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Macombs Dam Bridge", + "name:etymology:wikidata": "Q6724819", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs Dam", + "tiger:name_type": "Brg" + } +}, +{ + "type": "way", + "id": 1418844072, + "bounds": { + "minlat": 40.8301420, + "minlon": -73.9276327, + "maxlat": 40.8304530, + "maxlon": -73.9273589 + }, + "nodes": [ + 13038527564, + 595786268, + 9166334404 + ], + "geometry": [ + { "lat": 40.8304530, "lon": -73.9273589 }, + { "lat": 40.8302243, "lon": -73.9275613 }, + { "lat": 40.8301420, "lon": -73.9276327 } + ], + "tags": { + "bicycle": "designated", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "Macombs Dam Bridge", + "name:etymology:wikidata": "Q6724819", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs Dam", + "tiger:name_type": "Brg" + } +}, +{ + "type": "way", + "id": 1418860893, + "bounds": { + "minlat": 40.8476913, + "minlon": -73.9123659, + "maxlat": 40.8495095, + "maxlon": -73.9110789 + }, + "nodes": [ + 13037357743, + 42736331, + 13037357717, + 42736334, + 42736335, + 42736336 + ], + "geometry": [ + { "lat": 40.8495095, "lon": -73.9110789 }, + { "lat": 40.8494236, "lon": -73.9111407 }, + { "lat": 40.8493855, "lon": -73.9111676 }, + { "lat": 40.8486516, "lon": -73.9116842 }, + { "lat": 40.8482313, "lon": -73.9119903 }, + { "lat": 40.8476913, "lon": -73.9123659 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "oneway": "no", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1418866050, + "bounds": { + "minlat": 40.8260450, + "minlon": -73.9255823, + "maxlat": 40.8262601, + "maxlon": -73.9249591 + }, + "nodes": [ + 13038604267, + 13038604253 + ], + "geometry": [ + { "lat": 40.8262601, "lon": -73.9255823 }, + { "lat": 40.8260450, "lon": -73.9249591 } + ], + "tags": { + "highway": "residential", + "name": "East 158th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1418866051, + "bounds": { + "minlat": 40.8262601, + "minlon": -73.9257478, + "maxlat": 40.8263165, + "maxlon": -73.9255823 + }, + "nodes": [ + 13038604266, + 42734164, + 13038604267 + ], + "geometry": [ + { "lat": 40.8263165, "lon": -73.9257478 }, + { "lat": 40.8262902, "lon": -73.9256689 }, + { "lat": 40.8262601, "lon": -73.9255823 } + ], + "tags": { + "highway": "residential", + "name": "East 158th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1418866052, + "bounds": { + "minlat": 40.8265860, + "minlon": -73.9266430, + "maxlat": 40.8266127, + "maxlon": -73.9265590 + }, + "nodes": [ + 42771306, + 13038737292 + ], + "geometry": [ + { "lat": 40.8266127, "lon": -73.9266430 }, + { "lat": 40.8265860, "lon": -73.9265590 } + ], + "tags": { + "highway": "residential", + "name": "East 158th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1418866053, + "bounds": { + "minlat": 40.8259674, + "minlon": -73.9249591, + "maxlat": 40.8260450, + "maxlon": -73.9248530 + }, + "nodes": [ + 13038604253, + 5163203689, + 9166351225, + 9166351226, + 42733711 + ], + "geometry": [ + { "lat": 40.8260450, "lon": -73.9249591 }, + { "lat": 40.8260436, "lon": -73.9249551 }, + { "lat": 40.8260237, "lon": -73.9249196 }, + { "lat": 40.8259978, "lon": -73.9248868 }, + { "lat": 40.8259674, "lon": -73.9248530 } + ], + "tags": { + "highway": "residential", + "name": "East 158th Street", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1418867331, + "bounds": { + "minlat": 40.8250616, + "minlon": -73.9298166, + "maxlat": 40.8266702, + "maxlon": -73.9287989 + }, + "nodes": [ + 9028107117, + 9910769995, + 2611640879, + 42744109 + ], + "geometry": [ + { "lat": 40.8250616, "lon": -73.9287989 }, + { "lat": 40.8264822, "lon": -73.9296940 }, + { "lat": 40.8264967, "lon": -73.9297031 }, + { "lat": 40.8266702, "lon": -73.9298166 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 153rd Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "153rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1418891426, + "bounds": { + "minlat": 40.8262902, + "minlon": -73.9256689, + "maxlat": 40.8273734, + "maxlon": -73.9250408 + }, + "nodes": [ + 42734164, + 13038604265, + 12163704704, + 9910729411, + 2385899523 + ], + "geometry": [ + { "lat": 40.8262902, "lon": -73.9256689 }, + { "lat": 40.8263459, "lon": -73.9256366 }, + { "lat": 40.8272610, "lon": -73.9251059 }, + { "lat": 40.8273033, "lon": -73.9250813 }, + { "lat": 40.8273734, "lon": -73.9250408 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Gerard Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1418891427, + "bounds": { + "minlat": 40.8303497, + "minlon": -73.9232897, + "maxlat": 40.8316410, + "maxlon": -73.9225258 + }, + "nodes": [ + 42734173, + 13039060065, + 2611678511, + 13033156022, + 42734179 + ], + "geometry": [ + { "lat": 40.8303497, "lon": -73.9232897 }, + { "lat": 40.8304181, "lon": -73.9232516 }, + { "lat": 40.8304729, "lon": -73.9232210 }, + { "lat": 40.8315765, "lon": -73.9225642 }, + { "lat": 40.8316410, "lon": -73.9225258 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Gerard Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Gerard", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1418891428, + "bounds": { + "minlat": 40.8306810, + "minlon": -73.9242610, + "maxlat": 40.8341687, + "maxlon": -73.9222057 + }, + "nodes": [ + 42742426, + 13039118968, + 42771315, + 2822090452, + 5487840274, + 7438069667, + 7438069666, + 13036769784, + 42747552 + ], + "geometry": [ + { "lat": 40.8306810, "lon": -73.9242610 }, + { "lat": 40.8307503, "lon": -73.9242195 }, + { "lat": 40.8319730, "lon": -73.9234880 }, + { "lat": 40.8330844, "lon": -73.9228430 }, + { "lat": 40.8333923, "lon": -73.9226620 }, + { "lat": 40.8336959, "lon": -73.9224767 }, + { "lat": 40.8337295, "lon": -73.9224562 }, + { "lat": 40.8341036, "lon": -73.9222427 }, + { "lat": 40.8341687, "lon": -73.9222057 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "River Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1418891429, + "bounds": { + "minlat": 40.8257181, + "minlon": -73.9271680, + "maxlat": 40.8276612, + "maxlon": -73.9260307 + }, + "nodes": [ + 42744112, + 13039118981, + 42771306, + 12163643900, + 12163643891, + 2411399009 + ], + "geometry": [ + { "lat": 40.8257181, "lon": -73.9271680 }, + { "lat": 40.8257804, "lon": -73.9271315 }, + { "lat": 40.8266127, "lon": -73.9266430 }, + { "lat": 40.8275343, "lon": -73.9261048 }, + { "lat": 40.8275727, "lon": -73.9260824 }, + { "lat": 40.8276612, "lon": -73.9260307 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "River Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1418898422, + "bounds": { + "minlat": 40.8048720, + "minlon": -73.9178662, + "maxlat": 40.8060814, + "maxlon": -73.9149970 + }, + "nodes": [ + 42737719, + 13038865323, + 7555027613, + 7555027615, + 7555027607, + 7054352712, + 10033563117, + 7187742282, + 10033557480, + 13039125293 + ], + "geometry": [ + { "lat": 40.8048720, "lon": -73.9149970 }, + { "lat": 40.8049234, "lon": -73.9151201 }, + { "lat": 40.8051437, "lon": -73.9156449 }, + { "lat": 40.8052870, "lon": -73.9159869 }, + { "lat": 40.8053940, "lon": -73.9162420 }, + { "lat": 40.8054318, "lon": -73.9163321 }, + { "lat": 40.8054648, "lon": -73.9164102 }, + { "lat": 40.8056750, "lon": -73.9169076 }, + { "lat": 40.8058234, "lon": -73.9172631 }, + { "lat": 40.8060814, "lon": -73.9178662 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 137th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "137th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1419059535, + "bounds": { + "minlat": 40.8028051, + "minlon": -73.9078783, + "maxlat": 40.8035297, + "maxlon": -73.9066276 + }, + "nodes": [ + 9910669577, + 42765793, + 9910669578, + 5859955123, + 9910669615, + 9910669616, + 42765797 + ], + "geometry": [ + { "lat": 40.8035297, "lon": -73.9078783 }, + { "lat": 40.8034868, "lon": -73.9078044 }, + { "lat": 40.8034499, "lon": -73.9077381 }, + { "lat": 40.8034223, "lon": -73.9076907 }, + { "lat": 40.8028773, "lon": -73.9067520 }, + { "lat": 40.8028472, "lon": -73.9067000 }, + { "lat": 40.8028051, "lon": -73.9066276 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "East 139th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "139th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1419059536, + "bounds": { + "minlat": 40.8048720, + "minlon": -73.9149970, + "maxlat": 40.8054781, + "maxlon": -73.9145563 + }, + "nodes": [ + 42737719, + 13038865331, + 13018635113 + ], + "geometry": [ + { "lat": 40.8048720, "lon": -73.9149970 }, + { "lat": 40.8049555, "lon": -73.9149362 }, + { "lat": 40.8054781, "lon": -73.9145563 } + ], + "tags": { + "highway": "residential", + "name": "Cypress Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1419059538, + "bounds": { + "minlat": 40.8048440, + "minlon": -73.9127950, + "maxlat": 40.8055017, + "maxlon": -73.9124384 + }, + "nodes": [ + 42764615, + 13003675181, + 9156970113, + 12088432094, + 13038908734 + ], + "geometry": [ + { "lat": 40.8048440, "lon": -73.9127950 }, + { "lat": 40.8049382, "lon": -73.9127403 }, + { "lat": 40.8049466, "lon": -73.9127354 }, + { "lat": 40.8049787, "lon": -73.9127191 }, + { "lat": 40.8055017, "lon": -73.9124384 } + ], + "tags": { + "cyclestreet": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "name": "Jackson Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jackson", + "tiger:name_type": "Ave", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 1419059539, + "bounds": { + "minlat": 40.8051645, + "minlon": -73.9141000, + "maxlat": 40.8062740, + "maxlon": -73.9114740 + }, + "nodes": [ + 596271051, + 9156979719, + 13038908743, + 7672343317, + 13038908738, + 42764618, + 13038908730, + 7068979476, + 7068979481, + 7043090373, + 13809174866, + 42743521 + ], + "geometry": [ + { "lat": 40.8051645, "lon": -73.9114740 }, + { "lat": 40.8051947, "lon": -73.9115400 }, + { "lat": 40.8052134, "lon": -73.9115774 }, + { "lat": 40.8052425, "lon": -73.9116475 }, + { "lat": 40.8055314, "lon": -73.9123237 }, + { "lat": 40.8055659, "lon": -73.9124037 }, + { "lat": 40.8056065, "lon": -73.9125015 }, + { "lat": 40.8056781, "lon": -73.9126726 }, + { "lat": 40.8057720, "lon": -73.9128975 }, + { "lat": 40.8057860, "lon": -73.9129310 }, + { "lat": 40.8062363, "lon": -73.9140096 }, + { "lat": 40.8062740, "lon": -73.9141000 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 139th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "139th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1419059540, + "bounds": { + "minlat": 40.8055684, + "minlon": -73.9120517, + "maxlat": 40.8062465, + "maxlon": -73.9105043 + }, + "nodes": [ + 42764622, + 13809174864, + 7403861008, + 13038971545, + 42753403 + ], + "geometry": [ + { "lat": 40.8062465, "lon": -73.9120517 }, + { "lat": 40.8062119, "lon": -73.9119721 }, + { "lat": 40.8058009, "lon": -73.9110263 }, + { "lat": 40.8056329, "lon": -73.9106531 }, + { "lat": 40.8055684, "lon": -73.9105043 } + ], + "tags": { + "highway": "residential", + "name": "East 140th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1419075923, + "bounds": { + "minlat": 40.8117304, + "minlon": -73.9281344, + "maxlat": 40.8133438, + "maxlon": -73.9267219 + }, + "nodes": [ + 7553826299, + 11882279837, + 9163778718, + 9163778717, + 9163778720, + 9163778721, + 7554858682, + 13040633211, + 42775133 + ], + "geometry": [ + { "lat": 40.8117304, "lon": -73.9281344 }, + { "lat": 40.8118070, "lon": -73.9280262 }, + { "lat": 40.8118150, "lon": -73.9280150 }, + { "lat": 40.8121538, "lon": -73.9275736 }, + { "lat": 40.8121837, "lon": -73.9275405 }, + { "lat": 40.8122320, "lon": -73.9274924 }, + { "lat": 40.8122865, "lon": -73.9274532 }, + { "lat": 40.8132964, "lon": -73.9267545 }, + { "lat": 40.8133438, "lon": -73.9267219 } + ], + "tags": { + "highway": "residential", + "name": "Rider Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Rider", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1419075924, + "bounds": { + "minlat": 40.8129723, + "minlon": -73.9267219, + "maxlat": 40.8133438, + "maxlon": -73.9258032 + }, + "nodes": [ + 42775133, + 13040633210, + 5482327057, + 12040837131, + 42735676 + ], + "geometry": [ + { "lat": 40.8133438, "lon": -73.9267219 }, + { "lat": 40.8133139, "lon": -73.9266480 }, + { "lat": 40.8132722, "lon": -73.9265449 }, + { "lat": 40.8130269, "lon": -73.9259383 }, + { "lat": 40.8129723, "lon": -73.9258032 } + ], + "tags": { + "highway": "residential", + "name": "East 140th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "140th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1419075925, + "bounds": { + "minlat": 40.8144390, + "minlon": -73.9265341, + "maxlat": 40.8146846, + "maxlon": -73.9259548 + }, + "nodes": [ + 42743507, + 3647445889, + 42743504 + ], + "geometry": [ + { "lat": 40.8144390, "lon": -73.9259548 }, + { "lat": 40.8146414, "lon": -73.9264403 }, + { "lat": 40.8146846, "lon": -73.9265341 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 141st Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "141st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1419075926, + "bounds": { + "minlat": 40.8146846, + "minlon": -73.9265341, + "maxlat": 40.8158840, + "maxlon": -73.9256965 + }, + "nodes": [ + 3647451367, + 9910711696, + 13041150880, + 42743504 + ], + "geometry": [ + { "lat": 40.8158840, "lon": -73.9256965 }, + { "lat": 40.8158196, "lon": -73.9257415 }, + { "lat": 40.8147339, "lon": -73.9264997 }, + { "lat": 40.8146846, "lon": -73.9265341 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "name": "Canal Place", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Canal", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1419075935, + "bounds": { + "minlat": 40.8172110, + "minlon": -73.9161097, + "maxlat": 40.8172427, + "maxlon": -73.9159910 + }, + "nodes": [ + 12040128388, + 42758642 + ], + "geometry": [ + { "lat": 40.8172427, "lon": -73.9161097 }, + { "lat": 40.8172110, "lon": -73.9159910 } + ], + "tags": { + "highway": "residential", + "name": "East 151st Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "151st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1419075936, + "bounds": { + "minlat": 40.8172427, + "minlon": -73.9170151, + "maxlat": 40.8174843, + "maxlon": -73.9161097 + }, + "nodes": [ + 12040128211, + 12040128388 + ], + "geometry": [ + { "lat": 40.8174843, "lon": -73.9170151 }, + { "lat": 40.8172427, "lon": -73.9161097 } + ], + "tags": { + "highway": "residential", + "name": "East 151st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "151st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1419075937, + "bounds": { + "minlat": 40.8174843, + "minlon": -73.9172357, + "maxlat": 40.8175422, + "maxlon": -73.9170151 + }, + "nodes": [ + 12040128209, + 42758639, + 12040128211 + ], + "geometry": [ + { "lat": 40.8175422, "lon": -73.9172357 }, + { "lat": 40.8175120, "lon": -73.9171190 }, + { "lat": 40.8174843, "lon": -73.9170151 } + ], + "tags": { + "highway": "residential", + "name": "East 151st Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "151st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1419075938, + "bounds": { + "minlat": 40.8175422, + "minlon": -73.9188195, + "maxlat": 40.8179467, + "maxlon": -73.9172357 + }, + "nodes": [ + 8827329061, + 13703635298, + 12040128209 + ], + "geometry": [ + { "lat": 40.8179467, "lon": -73.9188195 }, + { "lat": 40.8177817, "lon": -73.9181733 }, + { "lat": 40.8175422, "lon": -73.9172357 } + ], + "tags": { + "highway": "residential", + "name": "East 151st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "151st", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1419075939, + "bounds": { + "minlat": 40.8180218, + "minlon": -73.9188743, + "maxlat": 40.8186910, + "maxlon": -73.9185700 + }, + "nodes": [ + 8827329062, + 42750600 + ], + "geometry": [ + { "lat": 40.8180218, "lon": -73.9188743 }, + { "lat": 40.8186910, "lon": -73.9185700 } + ], + "tags": { + "highway": "residential", + "name": "Courtlandt Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Courtland", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1419075940, + "bounds": { + "minlat": 40.8165679, + "minlon": -73.9195490, + "maxlat": 40.8166672, + "maxlon": -73.9194999 + }, + "nodes": [ + 9903127466, + 9903127464 + ], + "geometry": [ + { "lat": 40.8165679, "lon": -73.9195490 }, + { "lat": 40.8166672, "lon": -73.9194999 } + ], + "tags": { + "highway": "residential", + "name": "Courtlandt Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Courtland", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1419075941, + "bounds": { + "minlat": 40.8166672, + "minlon": -73.9194999, + "maxlat": 40.8171722, + "maxlon": -73.9192617 + }, + "nodes": [ + 9903127464, + 8827329066 + ], + "geometry": [ + { "lat": 40.8166672, "lon": -73.9194999 }, + { "lat": 40.8171722, "lon": -73.9192617 } + ], + "tags": { + "highway": "residential", + "name": "Courtlandt Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Courtland", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1419075942, + "bounds": { + "minlat": 40.8167610, + "minlon": -73.9191641, + "maxlat": 40.8172010, + "maxlon": -73.9174600 + }, + "nodes": [ + 42733530, + 6415815550, + 8827329063 + ], + "geometry": [ + { "lat": 40.8167610, "lon": -73.9174600 }, + { "lat": 40.8167898, "lon": -73.9175715 }, + { "lat": 40.8172010, "lon": -73.9191641 } + ], + "tags": { + "highway": "residential", + "name": "East 150th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "150th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 1419075943, + "bounds": { + "minlat": 40.8172010, + "minlon": -73.9192380, + "maxlat": 40.8172200, + "maxlon": -73.9191641 + }, + "nodes": [ + 8827329063, + 42733526 + ], + "geometry": [ + { "lat": 40.8172010, "lon": -73.9191641 }, + { "lat": 40.8172200, "lon": -73.9192380 } + ], + "tags": { + "highway": "residential", + "name": "East 150th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "150th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 1419075945, + "bounds": { + "minlat": 40.8171722, + "minlon": -73.9192617, + "maxlat": 40.8172775, + "maxlon": -73.9192120 + }, + "nodes": [ + 8827329066, + 42733526, + 8827329064 + ], + "geometry": [ + { "lat": 40.8171722, "lon": -73.9192617 }, + { "lat": 40.8172200, "lon": -73.9192380 }, + { "lat": 40.8172775, "lon": -73.9192120 } + ], + "tags": { + "highway": "residential", + "name": "Courtlandt Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Courtland", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1419075946, + "bounds": { + "minlat": 40.8179212, + "minlon": -73.9189199, + "maxlat": 40.8180218, + "maxlon": -73.9188743 + }, + "nodes": [ + 8827329060, + 42750598, + 8827329062 + ], + "geometry": [ + { "lat": 40.8179212, "lon": -73.9189199 }, + { "lat": 40.8179670, "lon": -73.9188990 }, + { "lat": 40.8180218, "lon": -73.9188743 } + ], + "tags": { + "highway": "residential", + "name": "Courtlandt Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Courtland", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1419075947, + "bounds": { + "minlat": 40.8143050, + "minlon": -73.9168457, + "maxlat": 40.8147743, + "maxlon": -73.9154592 + }, + "nodes": [ + 7555037307, + 9908651014, + 9908651013, + 9908651015 + ], + "geometry": [ + { "lat": 40.8147743, "lon": -73.9168457 }, + { "lat": 40.8147291, "lon": -73.9167282 }, + { "lat": 40.8146960, "lon": -73.9166315 }, + { "lat": 40.8143050, "lon": -73.9154592 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 148th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "148th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10455", + "tiger:zip_right": "10455" + } +}, +{ + "type": "way", + "id": 1419102283, + "bounds": { + "minlat": 40.7397309, + "minlon": -73.9524307, + "maxlat": 40.7404306, + "maxlon": -73.9506694 + }, + "nodes": [ + 597237255, + 11211160493, + 597237382, + 12125828308, + 12125828309, + 12125828310, + 597238209, + 12125828311, + 6594517293, + 12125828312, + 11429318972, + 12125828313, + 12125828314, + 12125828315, + 6594517294 + ], + "geometry": [ + { "lat": 40.7404306, "lon": -73.9524307 }, + { "lat": 40.7403881, "lon": -73.9522096 }, + { "lat": 40.7403553, "lon": -73.9520389 }, + { "lat": 40.7402887, "lon": -73.9516927 }, + { "lat": 40.7402738, "lon": -73.9516326 }, + { "lat": 40.7402569, "lon": -73.9515851 }, + { "lat": 40.7402332, "lon": -73.9515244 }, + { "lat": 40.7401993, "lon": -73.9514544 }, + { "lat": 40.7400908, "lon": -73.9512152 }, + { "lat": 40.7400536, "lon": -73.9511443 }, + { "lat": 40.7400127, "lon": -73.9510788 }, + { "lat": 40.7399626, "lon": -73.9510011 }, + { "lat": 40.7398990, "lon": -73.9509023 }, + { "lat": 40.7398268, "lon": -73.9508000 }, + { "lat": 40.7397309, "lon": -73.9506694 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "53rd Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "53rd", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11101", + "tiger:zip_right": "11101" + } +}, +{ + "type": "way", + "id": 1419102284, + "bounds": { + "minlat": 40.7404306, + "minlon": -73.9524307, + "maxlat": 40.7409061, + "maxlon": -73.9522718 + }, + "nodes": [ + 9179070580, + 11211160288, + 597663763, + 2135570978, + 597663755, + 597237255 + ], + "geometry": [ + { "lat": 40.7409061, "lon": -73.9522718 }, + { "lat": 40.7408321, "lon": -73.9522964 }, + { "lat": 40.7405904, "lon": -73.9523769 }, + { "lat": 40.7405548, "lon": -73.9523887 }, + { "lat": 40.7405202, "lon": -73.9524003 }, + { "lat": 40.7404306, "lon": -73.9524307 } + ], + "tags": { + "highway": "unclassified", + "name": "11th Street", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:county": "Queens, NY", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1419108067, + "bounds": { + "minlat": 40.8063754, + "minlon": -73.9301556, + "maxlat": 40.8070790, + "maxlon": -73.9300319 + }, + "nodes": [ + 3355300925, + 5370087333, + 12537543953, + 9908636600, + 8375510722 + ], + "geometry": [ + { "lat": 40.8063754, "lon": -73.9301411 }, + { "lat": 40.8068582, "lon": -73.9301556 }, + { "lat": 40.8069183, "lon": -73.9301327 }, + { "lat": 40.8069693, "lon": -73.9301132 }, + { "lat": 40.8070790, "lon": -73.9300319 } + ], + "tags": { + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lincoln Avenue", + "service": "driveway", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1419109877, + "bounds": { + "minlat": 40.8031161, + "minlon": -73.9146403, + "maxlat": 40.8034656, + "maxlon": -73.9138273 + }, + "nodes": [ + 42747203, + 9156930403, + 9156930402, + 596271084 + ], + "geometry": [ + { "lat": 40.8031161, "lon": -73.9146403 }, + { "lat": 40.8032598, "lon": -73.9142610 }, + { "lat": 40.8033578, "lon": -73.9140292 }, + { "lat": 40.8034656, "lon": -73.9138273 } + ], + "tags": { + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "name_1": "Houghton Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bruckner", + "tiger:name_base_1": "Houghton", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1419110450, + "bounds": { + "minlat": 40.8082841, + "minlon": -73.9309496, + "maxlat": 40.8083876, + "maxlon": -73.9307098 + }, + "nodes": [ + 7554071448, + 11882279684 + ], + "geometry": [ + { "lat": 40.8082841, "lon": -73.9307098 }, + { "lat": 40.8083876, "lon": -73.9309496 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1419110451, + "bounds": { + "minlat": 40.8081118, + "minlon": -73.9310878, + "maxlat": 40.8082728, + "maxlon": -73.9307167 + }, + "nodes": [ + 7554071445, + 595801152, + 11881123100 + ], + "geometry": [ + { "lat": 40.8082728, "lon": -73.9310878 }, + { "lat": 40.8081831, "lon": -73.9308806 }, + { "lat": 40.8081118, "lon": -73.9307167 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1419142617, + "bounds": { + "minlat": 40.7557654, + "minlon": -73.9542710, + "maxlat": 40.7560688, + "maxlon": -73.9538451 + }, + "nodes": [ + 6323387093, + 9189040172, + 2300353445, + 9913660001, + 8265113555, + 9189040173, + 9913660000, + 593428065, + 9013031965, + 5487036755 + ], + "geometry": [ + { "lat": 40.7560688, "lon": -73.9538451 }, + { "lat": 40.7560164, "lon": -73.9538874 }, + { "lat": 40.7559622, "lon": -73.9539357 }, + { "lat": 40.7558379, "lon": -73.9540543 }, + { "lat": 40.7558112, "lon": -73.9540839 }, + { "lat": 40.7557919, "lon": -73.9541095 }, + { "lat": 40.7557821, "lon": -73.9541320 }, + { "lat": 40.7557752, "lon": -73.9541675 }, + { "lat": 40.7557692, "lon": -73.9542313 }, + { "lat": 40.7557654, "lon": -73.9542710 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "15 mph", + "name": "East Main Street", + "name_1": "Main Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "East", + "tiger:name_base_1": "Main", + "tiger:name_type": "Rd", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1419192334, + "bounds": { + "minlat": 40.7153318, + "minlon": -73.9127850, + "maxlat": 40.7155371, + "maxlon": -73.9123524 + }, + "nodes": [ + 597676729, + 2996303654 + ], + "geometry": [ + { "lat": 40.7153318, "lon": -73.9127850 }, + { "lat": 40.7155371, "lon": -73.9123524 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Flushing Avenue", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1419755025, + "bounds": { + "minlat": 40.7462576, + "minlon": -73.9478404, + "maxlat": 40.7466807, + "maxlon": -73.9456937 + }, + "nodes": [ + 42825913, + 8996515266, + 8334074897 + ], + "geometry": [ + { "lat": 40.7466807, "lon": -73.9478404 }, + { "lat": 40.7466594, "lon": -73.9477275 }, + { "lat": 40.7462576, "lon": -73.9456937 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "45th Road", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419755672, + "bounds": { + "minlat": 40.7456135, + "minlon": -73.9480715, + "maxlat": 40.7459865, + "maxlon": -73.9461769 + }, + "nodes": [ + 42843268, + 5602867356, + 5481972165, + 597255499, + 5481972168, + 9982750324, + 42825916 + ], + "geometry": [ + { "lat": 40.7456135, "lon": -73.9461769 }, + { "lat": 40.7456569, "lon": -73.9463974 }, + { "lat": 40.7457130, "lon": -73.9466521 }, + { "lat": 40.7457276, "lon": -73.9467243 }, + { "lat": 40.7457467, "lon": -73.9468181 }, + { "lat": 40.7459645, "lon": -73.9479544 }, + { "lat": 40.7459865, "lon": -73.9480715 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "46th Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419882474, + "bounds": { + "minlat": 40.7201499, + "minlon": -73.9390337, + "maxlat": 40.7228548, + "maxlon": -73.9378294 + }, + "nodes": [ + 42490467, + 9695771659, + 9937279015, + 42484239, + 9937279016, + 9937279000, + 42490472, + 9937279002, + 9937278971, + 42490476, + 9937278972, + 42490479 + ], + "geometry": [ + { "lat": 40.7201499, "lon": -73.9378294 }, + { "lat": 40.7202166, "lon": -73.9378601 }, + { "lat": 40.7207738, "lon": -73.9381132 }, + { "lat": 40.7208269, "lon": -73.9381373 }, + { "lat": 40.7208922, "lon": -73.9381660 }, + { "lat": 40.7214508, "lon": -73.9384120 }, + { "lat": 40.7215046, "lon": -73.9384357 }, + { "lat": 40.7215723, "lon": -73.9384655 }, + { "lat": 40.7221225, "lon": -73.9387077 }, + { "lat": 40.7221816, "lon": -73.9387337 }, + { "lat": 40.7222560, "lon": -73.9387668 }, + { "lat": 40.7228548, "lon": -73.9390337 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "2", + "name": "Morgan Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "traffic_signals": "signal" + } +}, +{ + "type": "way", + "id": 1419885382, + "bounds": { + "minlat": 40.7189016, + "minlon": -73.9407450, + "maxlat": 40.7201590, + "maxlon": -73.9405319 + }, + "nodes": [ + 42484235, + 2772562133, + 11155242428, + 42495865, + 9695771630, + 42495860, + 9695721704, + 7722378704 + ], + "geometry": [ + { "lat": 40.7201590, "lon": -73.9407450 }, + { "lat": 40.7200883, "lon": -73.9407329 }, + { "lat": 40.7197526, "lon": -73.9406756 }, + { "lat": 40.7194380, "lon": -73.9406220 }, + { "lat": 40.7192774, "lon": -73.9405976 }, + { "lat": 40.7192090, "lon": -73.9405870 }, + { "lat": 40.7191440, "lon": -73.9405749 }, + { "lat": 40.7189016, "lon": -73.9405319 } + ], + "tags": { + "alt_name": "Grandparents Avenue", + "highway": "residential", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "oneway": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1419885698, + "bounds": { + "minlat": 40.7196040, + "minlon": -73.9438990, + "maxlat": 40.7202770, + "maxlon": -73.9426780 + }, + "nodes": [ + 42463370, + 8734527689, + 9935590195, + 6235394682, + 42503829 + ], + "geometry": [ + { "lat": 40.7196040, "lon": -73.9438990 }, + { "lat": 40.7196379, "lon": -73.9438375 }, + { "lat": 40.7202307, "lon": -73.9428235 }, + { "lat": 40.7202660, "lon": -73.9427673 }, + { "lat": 40.7202770, "lon": -73.9426780 } + ], + "tags": { + "highway": "residential", + "name": "Herbert Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1419888136, + "bounds": { + "minlat": 40.7190480, + "minlon": -73.9394000, + "maxlat": 40.7197470, + "maxlon": -73.9390870 + }, + "nodes": [ + 42504207, + 9695771774, + 9937834445, + 9937834457, + 9695771772, + 42504209 + ], + "geometry": [ + { "lat": 40.7190480, "lon": -73.9390870 }, + { "lat": 40.7191450, "lon": -73.9391306 }, + { "lat": 40.7191872, "lon": -73.9391494 }, + { "lat": 40.7196522, "lon": -73.9393576 }, + { "lat": 40.7196912, "lon": -73.9393750 }, + { "lat": 40.7197470, "lon": -73.9394000 } + ], + "tags": { + "highway": "residential", + "name": "Debevoise Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Debevoise", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11222", + "tiger:zip_right": "11222" + } +}, +{ + "type": "way", + "id": 1419895132, + "bounds": { + "minlat": 40.7424528, + "minlon": -73.9311602, + "maxlat": 40.7425609, + "maxlon": -73.9302319 + }, + "nodes": [ + 42860591, + 10081023576, + 5482217736, + 10081023579, + 42860595 + ], + "geometry": [ + { "lat": 40.7425609, "lon": -73.9311602 }, + { "lat": 40.7425518, "lon": -73.9310741 }, + { "lat": 40.7424943, "lon": -73.9305862 }, + { "lat": 40.7424629, "lon": -73.9303174 }, + { "lat": 40.7424528, "lon": -73.9302319 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "47th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419900811, + "bounds": { + "minlat": 40.7425609, + "minlon": -73.9320860, + "maxlat": 40.7426661, + "maxlon": -73.9311602 + }, + "nodes": [ + 42860586, + 10081023574, + 10081023575, + 42860591 + ], + "geometry": [ + { "lat": 40.7426661, "lon": -73.9320860 }, + { "lat": 40.7426573, "lon": -73.9320102 }, + { "lat": 40.7425706, "lon": -73.9312463 }, + { "lat": 40.7425609, "lon": -73.9311602 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "47th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419919560, + "bounds": { + "minlat": 40.7466638, + "minlon": -73.9312951, + "maxlat": 40.7470500, + "maxlon": -73.9293295 + }, + "nodes": [ + 7667163645, + 10069673243, + 7985719897, + 42908548, + 10069673258, + 42932499 + ], + "geometry": [ + { "lat": 40.7470500, "lon": -73.9293295 }, + { "lat": 40.7470295, "lon": -73.9294233 }, + { "lat": 40.7468949, "lon": -73.9301085 }, + { "lat": 40.7468520, "lon": -73.9303251 }, + { "lat": 40.7466805, "lon": -73.9311838 }, + { "lat": 40.7466638, "lon": -73.9312951 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Skillman Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "street_side", + "parking:right:orientation": "diagonal", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419919719, + "bounds": { + "minlat": 40.7426661, + "minlon": -73.9320860, + "maxlat": 40.7445137, + "maxlon": -73.9317185 + }, + "nodes": [ + 42860586, + 9981973365, + 10743722721, + 597294547 + ], + "geometry": [ + { "lat": 40.7426661, "lon": -73.9320860 }, + { "lat": 40.7427510, "lon": -73.9320690 }, + { "lat": 40.7444190, "lon": -73.9317373 }, + { "lat": 40.7445137, "lon": -73.9317185 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "33rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419921339, + "bounds": { + "minlat": 40.7380463, + "minlon": -73.9367993, + "maxlat": 40.7403476, + "maxlon": -73.9363475 + }, + "nodes": [ + 42832503, + 9981925214, + 7079159414, + 5482246016, + 9981973346, + 42849642 + ], + "geometry": [ + { "lat": 40.7403476, "lon": -73.9363475 }, + { "lat": 40.7402848, "lon": -73.9363570 }, + { "lat": 40.7399459, "lon": -73.9364239 }, + { "lat": 40.7386279, "lon": -73.9366868 }, + { "lat": 40.7381186, "lon": -73.9367854 }, + { "lat": 40.7380463, "lon": -73.9367993 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "31st Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419921896, + "bounds": { + "minlat": 40.7013820, + "minlon": -73.9569850, + "maxlat": 40.7030750, + "maxlon": -73.9550910 + }, + "nodes": [ + 42482039, + 9772859136, + 9772859152, + 42523048, + 9772859150, + 9772859178, + 42477578, + 9772859180, + 9755372072, + 42522394 + ], + "geometry": [ + { "lat": 40.7030750, "lon": -73.9569850 }, + { "lat": 40.7030233, "lon": -73.9569272 }, + { "lat": 40.7025702, "lon": -73.9564204 }, + { "lat": 40.7025100, "lon": -73.9563530 }, + { "lat": 40.7024619, "lon": -73.9562994 }, + { "lat": 40.7020070, "lon": -73.9557920 }, + { "lat": 40.7019460, "lon": -73.9557240 }, + { "lat": 40.7018972, "lon": -73.9556693 }, + { "lat": 40.7014393, "lon": -73.9551553 }, + { "lat": 40.7013820, "lon": -73.9550910 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Lee Avenue", + "name:etymology:wikidata": "Q725907; Q709825", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Lee", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11206", + "tiger:zip_right": "11206" + } +}, +{ + "type": "way", + "id": 1419921897, + "bounds": { + "minlat": 40.7462165, + "minlon": -73.9313344, + "maxlat": 40.7464300, + "maxlon": -73.9294943 + }, + "nodes": [ + 42817753, + 11694597435, + 10762202912, + 10762202953, + 42817756, + 10762202954, + 10069673269, + 42817758 + ], + "geometry": [ + { "lat": 40.7464300, "lon": -73.9313344 }, + { "lat": 40.7464209, "lon": -73.9312551 }, + { "lat": 40.7463707, "lon": -73.9308163 }, + { "lat": 40.7463329, "lon": -73.9304858 }, + { "lat": 40.7463239, "lon": -73.9304070 }, + { "lat": 40.7463148, "lon": -73.9303292 }, + { "lat": 40.7462246, "lon": -73.9295617 }, + { "lat": 40.7462165, "lon": -73.9294943 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419923727, + "bounds": { + "minlat": 40.7060030, + "minlon": -73.9569670, + "maxlat": 40.7068025, + "maxlon": -73.9557225 + }, + "nodes": [ + 42482168, + 9772859235, + 42488270 + ], + "geometry": [ + { "lat": 40.7060030, "lon": -73.9569670 }, + { "lat": 40.7060507, "lon": -73.9568928 }, + { "lat": 40.7068025, "lon": -73.9557225 } + ], + "tags": { + "highway": "residential", + "name": "Keap Street", + "name:etymology:wikidata": "Q880686", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A45", + "tiger:county": "Kings, NY", + "tiger:name_base": "Keap", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1419928192, + "bounds": { + "minlat": 40.7408205, + "minlon": -73.9324558, + "maxlat": 40.7426661, + "maxlon": -73.9320860 + }, + "nodes": [ + 42880287, + 10083107627, + 9981973364, + 42860586 + ], + "geometry": [ + { "lat": 40.7408205, "lon": -73.9324558 }, + { "lat": 40.7409055, "lon": -73.9324366 }, + { "lat": 40.7425808, "lon": -73.9321029 }, + { "lat": 40.7426661, "lon": -73.9320860 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "33rd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419928195, + "bounds": { + "minlat": 40.7425609, + "minlon": -73.9311602, + "maxlat": 40.7444059, + "maxlon": -73.9307848 + }, + "nodes": [ + 597294553, + 10743722712, + 10081023577, + 42860591 + ], + "geometry": [ + { "lat": 40.7444059, "lon": -73.9307848 }, + { "lat": 40.7443101, "lon": -73.9308043 }, + { "lat": 40.7426427, "lon": -73.9311416 }, + { "lat": 40.7425609, "lon": -73.9311602 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "34th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419941798, + "bounds": { + "minlat": 40.7106906, + "minlon": -73.9564585, + "maxlat": 40.7110688, + "maxlon": -73.9562262 + }, + "nodes": [ + 9957055553, + 11155242405, + 9768177686, + 1893285378 + ], + "geometry": [ + { "lat": 40.7110688, "lon": -73.9562262 }, + { "lat": 40.7107601, "lon": -73.9564158 }, + { "lat": 40.7107487, "lon": -73.9564247 }, + { "lat": 40.7106906, "lon": -73.9564585 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1419941799, + "bounds": { + "minlat": 40.7113680, + "minlon": -73.9545892, + "maxlat": 40.7121913, + "maxlon": -73.9540723 + }, + "nodes": [ + 9957055564, + 11155242406, + 42520724, + 598033030 + ], + "geometry": [ + { "lat": 40.7113680, "lon": -73.9545892 }, + { "lat": 40.7116323, "lon": -73.9544193 }, + { "lat": 40.7118397, "lon": -73.9542859 }, + { "lat": 40.7121913, "lon": -73.9540723 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1419941800, + "bounds": { + "minlat": 40.7125212, + "minlon": -73.9538659, + "maxlat": 40.7131205, + "maxlon": -73.9534911 + }, + "nodes": [ + 9957055570, + 42520729 + ], + "geometry": [ + { "lat": 40.7125212, "lon": -73.9538659 }, + { "lat": 40.7131205, "lon": -73.9534911 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Rodney Street", + "name:etymology:wikidata": "Q887100", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Rodney", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1419941844, + "bounds": { + "minlat": 40.7418998, + "minlon": -73.9341355, + "maxlat": 40.7428834, + "maxlon": -73.9339429 + }, + "nodes": [ + 42860580, + 9981973355, + 7127557278 + ], + "geometry": [ + { "lat": 40.7428834, "lon": -73.9339429 }, + { "lat": 40.7427984, "lon": -73.9339572 }, + { "lat": 40.7418998, "lon": -73.9341355 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Van Dam Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419941845, + "bounds": { + "minlat": 40.7427745, + "minlon": -73.9339429, + "maxlat": 40.7428834, + "maxlon": -73.9330136 + }, + "nodes": [ + 42860580, + 9981973358, + 9981973360, + 42820840 + ], + "geometry": [ + { "lat": 40.7428834, "lon": -73.9339429 }, + { "lat": 40.7428666, "lon": -73.9337987 }, + { "lat": 40.7427844, "lon": -73.9330981 }, + { "lat": 40.7427745, "lon": -73.9330136 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "47th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419942672, + "bounds": { + "minlat": 40.8607690, + "minlon": -73.9121814, + "maxlat": 40.8609178, + "maxlon": -73.9119717 + }, + "nodes": [ + 13048050805, + 42776140 + ], + "geometry": [ + { "lat": 40.8609178, "lon": -73.9121814 }, + { "lat": 40.8607690, "lon": -73.9119717 } + ], + "tags": { + "highway": "residential" + } +}, +{ + "type": "way", + "id": 1419942673, + "bounds": { + "minlat": 40.8609716, + "minlon": -73.9125523, + "maxlat": 40.8611902, + "maxlon": -73.9122807 + }, + "nodes": [ + 13048050808, + 13048050807, + 13048050806 + ], + "geometry": [ + { "lat": 40.8611902, "lon": -73.9125523 }, + { "lat": 40.8611473, "lon": -73.9124874 }, + { "lat": 40.8609716, "lon": -73.9122807 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1419951886, + "bounds": { + "minlat": 40.7381931, + "minlon": -73.9377342, + "maxlat": 40.7403988, + "maxlon": -73.9372930 + }, + "nodes": [ + 42867660, + 9981973367, + 9981973318 + ], + "geometry": [ + { "lat": 40.7381931, "lon": -73.9377342 }, + { "lat": 40.7382598, "lon": -73.9377206 }, + { "lat": 40.7403988, "lon": -73.9372930 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "30th Place", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419952183, + "bounds": { + "minlat": 40.7423457, + "minlon": -73.9302319, + "maxlat": 40.7424528, + "maxlon": -73.9293055 + }, + "nodes": [ + 42860595, + 10081023583, + 10081023582, + 42860598 + ], + "geometry": [ + { "lat": 40.7424528, "lon": -73.9302319 }, + { "lat": 40.7424433, "lon": -73.9301491 }, + { "lat": 40.7423553, "lon": -73.9293881 }, + { "lat": 40.7423457, "lon": -73.9293055 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "47th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419952184, + "bounds": { + "minlat": 40.7427745, + "minlon": -73.9330136, + "maxlat": 40.7446215, + "maxlon": -73.9326468 + }, + "nodes": [ + 42820836, + 10743722729, + 7414249925, + 6411299363, + 9981973362, + 42820840 + ], + "geometry": [ + { "lat": 40.7446215, "lon": -73.9326468 }, + { "lat": 40.7445290, "lon": -73.9326651 }, + { "lat": 40.7444560, "lon": -73.9326794 }, + { "lat": 40.7435977, "lon": -73.9328485 }, + { "lat": 40.7428545, "lon": -73.9329978 }, + { "lat": 40.7427745, "lon": -73.9330136 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "32nd Place", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1419952185, + "bounds": { + "minlat": 40.7426661, + "minlon": -73.9330136, + "maxlat": 40.7427745, + "maxlon": -73.9320860 + }, + "nodes": [ + 42820840, + 9981973361, + 9981973363, + 42860586 + ], + "geometry": [ + { "lat": 40.7427745, "lon": -73.9330136 }, + { "lat": 40.7427647, "lon": -73.9329301 }, + { "lat": 40.7426760, "lon": -73.9321707 }, + { "lat": 40.7426661, "lon": -73.9320860 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "47th Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1420034222, + "bounds": { + "minlat": 40.7568014, + "minlon": -73.9948852, + "maxlat": 40.7568798, + "maxlon": -73.9948283 + }, + "nodes": [ + 12899504198, + 12899507203, + 12899504197 + ], + "geometry": [ + { "lat": 40.7568798, "lon": -73.9948283 }, + { "lat": 40.7568155, "lon": -73.9948750 }, + { "lat": 40.7568014, "lon": -73.9948852 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1420034225, + "bounds": { + "minlat": 40.7562360, + "minlon": -73.9954604, + "maxlat": 40.7562515, + "maxlon": -73.9954485 + }, + "nodes": [ + 11142777732, + 11142777731 + ], + "geometry": [ + { "lat": 40.7562515, "lon": -73.9954485 }, + { "lat": 40.7562360, "lon": -73.9954604 } + ], + "tags": { + "access": "private", + "highway": "service", + "oneway": "no", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1420089864, + "bounds": { + "minlat": 40.7142251, + "minlon": -73.9323951, + "maxlat": 40.7143448, + "maxlon": -73.9317803 + }, + "nodes": [ + 8842568843, + 8842568844, + 1275778413 + ], + "geometry": [ + { "lat": 40.7142251, "lon": -73.9317803 }, + { "lat": 40.7142799, "lon": -73.9320762 }, + { "lat": 40.7143448, "lon": -73.9323951 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1420092904, + "bounds": { + "minlat": 40.7064450, + "minlon": -73.9274130, + "maxlat": 40.7085444, + "maxlon": -73.9268240 + }, + "nodes": [ + 42490921, + 42505687, + 10066773564, + 42487182, + 9767625196, + 42496391 + ], + "geometry": [ + { "lat": 40.7064450, "lon": -73.9268240 }, + { "lat": 40.7071460, "lon": -73.9270150 }, + { "lat": 40.7072139, "lon": -73.9270342 }, + { "lat": 40.7078420, "lon": -73.9272120 }, + { "lat": 40.7084820, "lon": -73.9273903 }, + { "lat": 40.7085444, "lon": -73.9274130 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Varick Avenue", + "name:etymology:wikidata": "Q7329637", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Varick", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "11237", + "tiger:zip_right": "11237" + } +}, +{ + "type": "way", + "id": 1420098069, + "bounds": { + "minlat": 40.7155879, + "minlon": -73.9339812, + "maxlat": 40.7159096, + "maxlon": -73.9327156 + }, + "nodes": [ + 42515026, + 9947391795, + 13049375916 + ], + "geometry": [ + { "lat": 40.7155879, "lon": -73.9339812 }, + { "lat": 40.7156199, "lon": -73.9338550 }, + { "lat": 40.7159096, "lon": -73.9327156 } + ], + "tags": { + "highway": "unclassified", + "name": "Rewe Street", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1420098070, + "bounds": { + "minlat": 40.7143647, + "minlon": -73.9321243, + "maxlat": 40.7143804, + "maxlon": -73.9317592 + }, + "nodes": [ + 10296243051, + 12437305272 + ], + "geometry": [ + { "lat": 40.7143647, "lon": -73.9317592 }, + { "lat": 40.7143804, "lon": -73.9321243 } + ], + "tags": { + "highway": "service", + "sidewalk:both": "separate", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1420126223, + "bounds": { + "minlat": 40.8451201, + "minlon": -73.9227313, + "maxlat": 40.8451318, + "maxlon": -73.9225797 + }, + "nodes": [ + 60921025, + 9910779417, + 12046770880 + ], + "geometry": [ + { "lat": 40.8451201, "lon": -73.9225797 }, + { "lat": 40.8451288, "lon": -73.9226919 }, + { "lat": 40.8451318, "lon": -73.9227313 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1420157664, + "bounds": { + "minlat": 40.7516680, + "minlon": -73.9342755, + "maxlat": 40.7517622, + "maxlon": -73.9342240 + }, + "nodes": [ + 13049835929, + 13049835928, + 13049835927 + ], + "geometry": [ + { "lat": 40.7516680, "lon": -73.9342755 }, + { "lat": 40.7517113, "lon": -73.9342545 }, + { "lat": 40.7517622, "lon": -73.9342240 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1420157665, + "bounds": { + "minlat": 40.7513535, + "minlon": -73.9343133, + "maxlat": 40.7515458, + "maxlon": -73.9341795 + }, + "nodes": [ + 9189020482, + 13049835931, + 13049835932, + 13049835930 + ], + "geometry": [ + { "lat": 40.7513535, "lon": -73.9341795 }, + { "lat": 40.7514579, "lon": -73.9342684 }, + { "lat": 40.7514929, "lon": -73.9342863 }, + { "lat": 40.7515458, "lon": -73.9343133 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1420272260, + "bounds": { + "minlat": 40.7947248, + "minlon": -73.9693545, + "maxlat": 40.7951539, + "maxlon": -73.9690340 + }, + "nodes": [ + 13050963846, + 5669156316 + ], + "geometry": [ + { "lat": 40.7947248, "lon": -73.9693545 }, + { "lat": 40.7951539, "lon": -73.9690340 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1420302416, + "bounds": { + "minlat": 40.8266702, + "minlon": -73.9298577, + "maxlat": 40.8267114, + "maxlon": -73.9298166 + }, + "nodes": [ + 1932768691, + 9910769993, + 42744109 + ], + "geometry": [ + { "lat": 40.8267114, "lon": -73.9298577 }, + { "lat": 40.8266924, "lon": -73.9298357 }, + { "lat": 40.8266702, "lon": -73.9298166 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 157th Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "157th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1420429844, + "bounds": { + "minlat": 40.8267353, + "minlon": -73.9219025, + "maxlat": 40.8272693, + "maxlon": -73.9216074 + }, + "nodes": [ + 13052222528, + 13052222527, + 13052222526 + ], + "geometry": [ + { "lat": 40.8272693, "lon": -73.9216074 }, + { "lat": 40.8267972, "lon": -73.9218676 }, + { "lat": 40.8267353, "lon": -73.9219025 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1420454597, + "bounds": { + "minlat": 40.7513601, + "minlon": -73.9725373, + "maxlat": 40.7514904, + "maxlon": -73.9723652 + }, + "nodes": [ + 13052507024, + 13052507025, + 13052507026, + 13052507027, + 13052507028, + 13052507029, + 13052507030, + 13052507031, + 13052507040, + 13052507041, + 13052507042, + 13052507043, + 13052507032, + 13052507033, + 13052507034, + 13052507035, + 13052507036, + 13052507037, + 13052507038, + 13052507039, + 13052507024 + ], + "geometry": [ + { "lat": 40.7514865, "lon": -73.9724218 }, + { "lat": 40.7514904, "lon": -73.9724488 }, + { "lat": 40.7514877, "lon": -73.9724760 }, + { "lat": 40.7514787, "lon": -73.9725007 }, + { "lat": 40.7514642, "lon": -73.9725204 }, + { "lat": 40.7514457, "lon": -73.9725330 }, + { "lat": 40.7514252, "lon": -73.9725373 }, + { "lat": 40.7514046, "lon": -73.9725329 }, + { "lat": 40.7513862, "lon": -73.9725202 }, + { "lat": 40.7513718, "lon": -73.9725005 }, + { "lat": 40.7513628, "lon": -73.9724757 }, + { "lat": 40.7513601, "lon": -73.9724485 }, + { "lat": 40.7513641, "lon": -73.9724216 }, + { "lat": 40.7513737, "lon": -73.9723987 }, + { "lat": 40.7513880, "lon": -73.9723807 }, + { "lat": 40.7514058, "lon": -73.9723692 }, + { "lat": 40.7514254, "lon": -73.9723652 }, + { "lat": 40.7514449, "lon": -73.9723692 }, + { "lat": 40.7514617, "lon": -73.9723812 }, + { "lat": 40.7514770, "lon": -73.9723989 }, + { "lat": 40.7514865, "lon": -73.9724218 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1420454598, + "bounds": { + "minlat": 40.7514617, + "minlon": -73.9723812, + "maxlat": 40.7515585, + "maxlon": -73.9723006 + }, + "nodes": [ + 13052507044, + 13052507045, + 13052507038 + ], + "geometry": [ + { "lat": 40.7515585, "lon": -73.9723006 }, + { "lat": 40.7515033, "lon": -73.9723454 }, + { "lat": 40.7514617, "lon": -73.9723812 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1420670080, + "bounds": { + "minlat": 40.8374174, + "minlon": -73.9145910, + "maxlat": 40.8374450, + "maxlon": -73.9145170 + }, + "nodes": [ + 12739350611, + 13055590399 + ], + "geometry": [ + { "lat": 40.8374174, "lon": -73.9145170 }, + { "lat": 40.8374450, "lon": -73.9145910 } + ], + "tags": { + "highway": "residential", + "name": "Marcy Place", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1420709469, + "bounds": { + "minlat": 40.8655011, + "minlon": -73.9084796, + "maxlat": 40.8656002, + "maxlon": -73.9082019 + }, + "nodes": [ + 13055924713, + 13055924712, + 13055924711, + 13055924710, + 1396352590 + ], + "geometry": [ + { "lat": 40.8655011, "lon": -73.9084796 }, + { "lat": 40.8655474, "lon": -73.9083686 }, + { "lat": 40.8655752, "lon": -73.9082868 }, + { "lat": 40.8655814, "lon": -73.9082670 }, + { "lat": 40.8656002, "lon": -73.9082019 } + ], + "tags": { + "highway": "tertiary", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1420736671, + "bounds": { + "minlat": 40.6993920, + "minlon": -73.9920750, + "maxlat": 40.7009921, + "maxlon": -73.9913099 + }, + "nodes": [ + 42519202, + 6224369603, + 42498552, + 10004131572, + 42502401, + 10004131584, + 7669468730, + 4400225690 + ], + "geometry": [ + { "lat": 40.7009921, "lon": -73.9913099 }, + { "lat": 40.7009252, "lon": -73.9913449 }, + { "lat": 40.7006910, "lon": -73.9914540 }, + { "lat": 40.7001110, "lon": -73.9917378 }, + { "lat": 40.7000513, "lon": -73.9917601 }, + { "lat": 40.6999888, "lon": -73.9917904 }, + { "lat": 40.6998924, "lon": -73.9918360 }, + { "lat": 40.6993920, "lon": -73.9920750 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Henry Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Henry", + "tiger:name_type": "St", + "tiger:zip_left": "11231", + "tiger:zip_right": "11231" + } +}, +{ + "type": "way", + "id": 1420874471, + "bounds": { + "minlat": 40.7196040, + "minlon": -73.9442114, + "maxlat": 40.7199988, + "maxlon": -73.9438990 + }, + "nodes": [ + 42463374, + 6228788718, + 8734527685, + 42463370 + ], + "geometry": [ + { "lat": 40.7199988, "lon": -73.9442114 }, + { "lat": 40.7199040, "lon": -73.9441381 }, + { "lat": 40.7196820, "lon": -73.9439651 }, + { "lat": 40.7196040, "lon": -73.9438990 } + ], + "tags": { + "highway": "residential", + "name": "Humboldt Street", + "name:etymology:wikidata": "Q6694", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1420895925, + "bounds": { + "minlat": 40.7461093, + "minlon": -73.9294943, + "maxlat": 40.7462165, + "maxlon": -73.9285535 + }, + "nodes": [ + 42817758, + 10069673270, + 10069673277, + 42817761 + ], + "geometry": [ + { "lat": 40.7462165, "lon": -73.9294943 }, + { "lat": 40.7462054, "lon": -73.9293983 }, + { "lat": 40.7461176, "lon": -73.9286273 }, + { "lat": 40.7461093, "lon": -73.9285535 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "43rd Avenue", + "oneway": "yes", + "smoothness": "excellent", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1420895926, + "bounds": { + "minlat": 40.7461093, + "minlon": -73.9285535, + "maxlat": 40.7472493, + "maxlon": -73.9283297 + }, + "nodes": [ + 42926417, + 10069673241, + 5482216902, + 7095826103, + 10069673276, + 42817761 + ], + "geometry": [ + { "lat": 40.7472493, "lon": -73.9283297 }, + { "lat": 40.7471897, "lon": -73.9283419 }, + { "lat": 40.7466795, "lon": -73.9284395 }, + { "lat": 40.7466606, "lon": -73.9284433 }, + { "lat": 40.7461733, "lon": -73.9285409 }, + { "lat": 40.7461093, "lon": -73.9285535 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "36th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1420976411, + "bounds": { + "minlat": 40.8242854, + "minlon": -74.0096254, + "maxlat": 40.8244577, + "maxlon": -74.0093539 + }, + "nodes": [ + 13058239639, + 13058239640, + 13058239643, + 13058239646, + 13058239641, + 13058239642, + 13058239644 + ], + "geometry": [ + { "lat": 40.8243561, "lon": -74.0093539 }, + { "lat": 40.8243047, "lon": -74.0094466 }, + { "lat": 40.8242896, "lon": -74.0094909 }, + { "lat": 40.8242854, "lon": -74.0095179 }, + { "lat": 40.8242899, "lon": -74.0095433 }, + { "lat": 40.8244110, "lon": -74.0096067 }, + { "lat": 40.8244577, "lon": -74.0096254 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1421297743, + "bounds": { + "minlat": 40.7023724, + "minlon": -73.9950177, + "maxlat": 40.7024910, + "maxlon": -73.9946921 + }, + "nodes": [ + 42493380, + 10737091585, + 13061264878 + ], + "geometry": [ + { "lat": 40.7024910, "lon": -73.9950177 }, + { "lat": 40.7024670, "lon": -73.9949517 }, + { "lat": 40.7023724, "lon": -73.9946921 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Doughty Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Doughty", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1421480236, + "bounds": { + "minlat": 40.8690820, + "minlon": -73.9318231, + "maxlat": 40.8693003, + "maxlon": -73.9315115 + }, + "nodes": [ + 42425959, + 13062904253, + 13062904254, + 13062904255, + 13062904256, + 13062904257, + 13062904253 + ], + "geometry": [ + { "lat": 40.8690931, "lon": -73.9315115 }, + { "lat": 40.8691264, "lon": -73.9315748 }, + { "lat": 40.8691907, "lon": -73.9315453 }, + { "lat": 40.8693003, "lon": -73.9317578 }, + { "lat": 40.8691808, "lon": -73.9318231 }, + { "lat": 40.8690820, "lon": -73.9315965 }, + { "lat": 40.8691264, "lon": -73.9315748 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1421680047, + "bounds": { + "minlat": 40.7225750, + "minlon": -73.9219964, + "maxlat": 40.7232189, + "maxlon": -73.9219949 + }, + "nodes": [ + 13064770580, + 13064770584 + ], + "geometry": [ + { "lat": 40.7232189, "lon": -73.9219949 }, + { "lat": 40.7225750, "lon": -73.9219964 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1421680048, + "bounds": { + "minlat": 40.7222259, + "minlon": -73.9222159, + "maxlat": 40.7224830, + "maxlon": -73.9220003 + }, + "nodes": [ + 13064770583, + 13064770581, + 13064770582 + ], + "geometry": [ + { "lat": 40.7224830, "lon": -73.9220003 }, + { "lat": 40.7224036, "lon": -73.9220034 }, + { "lat": 40.7222259, "lon": -73.9222159 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1421680049, + "bounds": { + "minlat": 40.7224830, + "minlon": -73.9220003, + "maxlat": 40.7225750, + "maxlon": -73.9219964 + }, + "nodes": [ + 13064770584, + 13064770583 + ], + "geometry": [ + { "lat": 40.7225750, "lon": -73.9219964 }, + { "lat": 40.7224830, "lon": -73.9220003 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1421680050, + "bounds": { + "minlat": 40.7232126, + "minlon": -73.9219949, + "maxlat": 40.7232189, + "maxlon": -73.9216750 + }, + "nodes": [ + 13064770580, + 13064770579 + ], + "geometry": [ + { "lat": 40.7232189, "lon": -73.9219949 }, + { "lat": 40.7232126, "lon": -73.9216750 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1421680051, + "bounds": { + "minlat": 40.7220870, + "minlon": -73.9222159, + "maxlat": 40.7222259, + "maxlon": -73.9216690 + }, + "nodes": [ + 5482634970, + 13064770585, + 13064770582 + ], + "geometry": [ + { "lat": 40.7220870, "lon": -73.9216690 }, + { "lat": 40.7221721, "lon": -73.9220040 }, + { "lat": 40.7222259, "lon": -73.9222159 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1421682380, + "bounds": { + "minlat": 40.8457893, + "minlon": -73.9993938, + "maxlat": 40.8461860, + "maxlon": -73.9991080 + }, + "nodes": [ + 5970474367, + 103138711 + ], + "geometry": [ + { "lat": 40.8457893, "lon": -73.9993938 }, + { "lat": 40.8461860, "lon": -73.9991080 } + ], + "tags": { + "highway": "secondary", + "name": "Broad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1421682381, + "bounds": { + "minlat": 40.8456728, + "minlon": -74.0031002, + "maxlat": 40.8474182, + "maxlon": -74.0001163 + }, + "nodes": [ + 5970474136, + 5976782426, + 5976782425, + 5970519654, + 103296622 + ], + "geometry": [ + { "lat": 40.8456728, "lon": -74.0001163 }, + { "lat": 40.8456987, "lon": -74.0001606 }, + { "lat": 40.8457510, "lon": -74.0002500 }, + { "lat": 40.8467277, "lon": -74.0019197 }, + { "lat": 40.8474182, "lon": -74.0031002 } + ], + "tags": { + "highway": "residential", + "name": "West Homestead Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Homestead", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650", + "tiger:zip_right": "07650" + } +}, +{ + "type": "way", + "id": 1421682382, + "bounds": { + "minlat": 40.8440298, + "minlon": -73.9992717, + "maxlat": 40.8452022, + "maxlon": -73.9971993 + }, + "nodes": [ + 5970473910, + 5976782513, + 5970473912, + 5976411342, + 103236647, + 103295501, + 103271817 + ], + "geometry": [ + { "lat": 40.8452022, "lon": -73.9992717 }, + { "lat": 40.8451293, "lon": -73.9991652 }, + { "lat": 40.8450584, "lon": -73.9990385 }, + { "lat": 40.8450510, "lon": -73.9990252 }, + { "lat": 40.8448400, "lon": -73.9986480 }, + { "lat": 40.8444320, "lon": -73.9979180 }, + { "lat": 40.8440298, "lon": -73.9971993 } + ], + "tags": { + "highway": "residential", + "name": "East Homestead Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Homestead", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07650" + } +}, +{ + "type": "way", + "id": 1421686580, + "bounds": { + "minlat": 40.7058643, + "minlon": -74.0150527, + "maxlat": 40.7059615, + "maxlon": -74.0150179 + }, + "nodes": [ + 3574648567, + 13064844941 + ], + "geometry": [ + { "lat": 40.7059615, "lon": -74.0150179 }, + { "lat": 40.7058643, "lon": -74.0150527 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "25 mph", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "I 478" + } +}, +{ + "type": "way", + "id": 1421686581, + "bounds": { + "minlat": 40.7055541, + "minlon": -74.0151691, + "maxlat": 40.7056997, + "maxlon": -74.0151163 + }, + "nodes": [ + 9906966863, + 4149947889 + ], + "geometry": [ + { "lat": 40.7056997, "lon": -74.0151163 }, + { "lat": 40.7055541, "lon": -74.0151691 } + ], + "tags": { + "bicycle": "no", + "description": "One lane is reversible on weekday mornings Manhattan bound to HOV 3+ vehicles", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "25 mph", + "oneway": "yes", + "parking:both": "no", + "parking:both:restriction": "no_stopping", + "surface": "asphalt", + "toll": "yes", + "unsigned_ref": "I 478" + } +}, +{ + "type": "way", + "id": 1421953517, + "bounds": { + "minlat": 40.7980213, + "minlon": -73.9218329, + "maxlat": 40.7982275, + "maxlon": -73.9214092 + }, + "nodes": [ + 7937558699, + 3640160586, + 3640160587, + 3640160588, + 3640160589, + 3607948329, + 3640160590, + 3640160591, + 3640160592, + 3640160593, + 3607948336 + ], + "geometry": [ + { "lat": 40.7981271, "lon": -73.9218329 }, + { "lat": 40.7980997, "lon": -73.9218176 }, + { "lat": 40.7980594, "lon": -73.9217709 }, + { "lat": 40.7980324, "lon": -73.9217097 }, + { "lat": 40.7980213, "lon": -73.9216405 }, + { "lat": 40.7980274, "lon": -73.9215701 }, + { "lat": 40.7980485, "lon": -73.9215087 }, + { "lat": 40.7980827, "lon": -73.9214585 }, + { "lat": 40.7981268, "lon": -73.9214243 }, + { "lat": 40.7981766, "lon": -73.9214092 }, + { "lat": 40.7982275, "lon": -73.9214146 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1421953518, + "bounds": { + "minlat": 40.7982275, + "minlon": -73.9215621, + "maxlat": 40.7983463, + "maxlon": -73.9214146 + }, + "nodes": [ + 3607948336, + 3640160594, + 3640160595, + 3640160596, + 3607948341 + ], + "geometry": [ + { "lat": 40.7982275, "lon": -73.9214146 }, + { "lat": 40.7982746, "lon": -73.9214400 }, + { "lat": 40.7983138, "lon": -73.9214828 }, + { "lat": 40.7983415, "lon": -73.9215392 }, + { "lat": 40.7983463, "lon": -73.9215621 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1421987099, + "bounds": { + "minlat": 40.8350518, + "minlon": -73.9303306, + "maxlat": 40.8352050, + "maxlon": -73.9300024 + }, + "nodes": [ + 13068284054, + 13068284053, + 13068284052, + 13068284051 + ], + "geometry": [ + { "lat": 40.8350518, "lon": -73.9302823 }, + { "lat": 40.8350690, "lon": -73.9303306 }, + { "lat": 40.8352050, "lon": -73.9302582 }, + { "lat": 40.8351268, "lon": -73.9300024 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1421996794, + "bounds": { + "minlat": 40.8819807, + "minlon": -73.9080120, + "maxlat": 40.8824000, + "maxlon": -73.9072534 + }, + "nodes": [ + 42748794, + 13068269725, + 5487896439, + 5487896436, + 8154725546, + 13022227448, + 42748798 + ], + "geometry": [ + { "lat": 40.8819807, "lon": -73.9072534 }, + { "lat": 40.8820330, "lon": -73.9073473 }, + { "lat": 40.8822456, "lon": -73.9077326 }, + { "lat": 40.8823154, "lon": -73.9078589 }, + { "lat": 40.8823398, "lon": -73.9079031 }, + { "lat": 40.8823644, "lon": -73.9079483 }, + { "lat": 40.8824000, "lon": -73.9080120 } + ], + "tags": { + "highway": "residential", + "name": "West 232nd Street", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "232nd", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1421996795, + "bounds": { + "minlat": 40.8775096, + "minlon": -73.9144649, + "maxlat": 40.8783739, + "maxlon": -73.9131726 + }, + "nodes": [ + 1544847111, + 1544847137, + 1544847100, + 1544847121, + 1544847075, + 1544847093, + 1544847102, + 1544847085 + ], + "geometry": [ + { "lat": 40.8775096, "lon": -73.9144649 }, + { "lat": 40.8776590, "lon": -73.9143739 }, + { "lat": 40.8778713, "lon": -73.9141165 }, + { "lat": 40.8779980, "lon": -73.9138832 }, + { "lat": 40.8780862, "lon": -73.9136739 }, + { "lat": 40.8781974, "lon": -73.9134692 }, + { "lat": 40.8783218, "lon": -73.9132996 }, + { "lat": 40.8783739, "lon": -73.9131726 } + ], + "tags": { + "highway": "residential", + "name": "Tibbett Avenue", + "name:etymology:wikidata": "Q28186791", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tibbett", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1421996796, + "bounds": { + "minlat": 40.8795763, + "minlon": -73.9124599, + "maxlat": 40.8804981, + "maxlon": -73.9118447 + }, + "nodes": [ + 10132643256, + 1544847118, + 1544847057, + 1544847070, + 42733259 + ], + "geometry": [ + { "lat": 40.8795763, "lon": -73.9124599 }, + { "lat": 40.8796419, "lon": -73.9124448 }, + { "lat": 40.8797746, "lon": -73.9123575 }, + { "lat": 40.8801061, "lon": -73.9121234 }, + { "lat": 40.8804981, "lon": -73.9118447 } + ], + "tags": { + "highway": "tertiary", + "name": "Johnson Avenue", + "oneway": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Johnson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1421996797, + "bounds": { + "minlat": 40.8793582, + "minlon": -73.9124599, + "maxlat": 40.8795763, + "maxlon": -73.9123686 + }, + "nodes": [ + 42733253, + 10132643254, + 10132643255, + 1544847065, + 10132643256 + ], + "geometry": [ + { "lat": 40.8793582, "lon": -73.9123686 }, + { "lat": 40.8794202, "lon": -73.9124103 }, + { "lat": 40.8794548, "lon": -73.9124334 }, + { "lat": 40.8795168, "lon": -73.9124587 }, + { "lat": 40.8795763, "lon": -73.9124599 } + ], + "tags": { + "highway": "tertiary", + "lane_markings": "yes", + "lanes": "2", + "name": "Johnson Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Johnson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1421996798, + "bounds": { + "minlat": 40.8822794, + "minlon": -73.9120599, + "maxlat": 40.8824530, + "maxlon": -73.9116410 + }, + "nodes": [ + 721838975, + 1545521296, + 10132643322, + 42770865 + ], + "geometry": [ + { "lat": 40.8822794, "lon": -73.9116410 }, + { "lat": 40.8823817, "lon": -73.9119347 }, + { "lat": 40.8824094, "lon": -73.9119834 }, + { "lat": 40.8824530, "lon": -73.9120599 } + ], + "tags": { + "highway": "residential", + "name": "West 231st Street", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "231st", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1421996799, + "bounds": { + "minlat": 40.8811290, + "minlon": -73.9127540, + "maxlat": 40.8824530, + "maxlon": -73.9120599 + }, + "nodes": [ + 42746799, + 13068268097, + 42770865 + ], + "geometry": [ + { "lat": 40.8811290, "lon": -73.9127540 }, + { "lat": 40.8823881, "lon": -73.9120921 }, + { "lat": 40.8824530, "lon": -73.9120599 } + ], + "tags": { + "highway": "residential", + "name": "Netherland Avenue", + "name:etymology:wikidata": "Q382593", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Netherland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1421998640, + "bounds": { + "minlat": 40.8776920, + "minlon": -73.9131726, + "maxlat": 40.8783739, + "maxlon": -73.9121732 + }, + "nodes": [ + 1544847085, + 1544847143, + 13471678166, + 13068325345, + 9986044916 + ], + "geometry": [ + { "lat": 40.8783739, "lon": -73.9131726 }, + { "lat": 40.8783283, "lon": -73.9130597 }, + { "lat": 40.8777436, "lon": -73.9122451 }, + { "lat": 40.8777091, "lon": -73.9121970 }, + { "lat": 40.8776920, "lon": -73.9121732 } + ], + "tags": { + "highway": "residential", + "name": "Tibbett Avenue", + "name:etymology:wikidata": "Q28186791", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tibbett", + "tiger:name_type": "Ave", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1421998641, + "bounds": { + "minlat": 40.8776294, + "minlon": -73.9121732, + "maxlat": 40.8776920, + "maxlon": -73.9120517 + }, + "nodes": [ + 9986044916, + 1544847094 + ], + "geometry": [ + { "lat": 40.8776920, "lon": -73.9121732 }, + { "lat": 40.8776294, "lon": -73.9120517 } + ], + "tags": { + "highway": "residential", + "name": "Tibbett Avenue", + "name:etymology:wikidata": "Q28186791", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tibbett", + "tiger:name_type": "Ave", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1421998642, + "bounds": { + "minlat": 40.8776294, + "minlon": -73.9120517, + "maxlat": 40.8777626, + "maxlon": -73.9119022 + }, + "nodes": [ + 1544847094, + 13471678167, + 13068325352 + ], + "geometry": [ + { "lat": 40.8776294, "lon": -73.9120517 }, + { "lat": 40.8777286, "lon": -73.9119404 }, + { "lat": 40.8777626, "lon": -73.9119022 } + ], + "tags": { + "highway": "residential", + "name": "Tibbett Avenue", + "name:etymology:wikidata": "Q28186791", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Tibbett", + "tiger:name_type": "Ave", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1422000107, + "bounds": { + "minlat": 40.8794175, + "minlon": -73.9162542, + "maxlat": 40.8815242, + "maxlon": -73.9138075 + }, + "nodes": [ + 1545136709, + 7042945035, + 42747759, + 7824776661, + 42759310, + 42746802 + ], + "geometry": [ + { "lat": 40.8794175, "lon": -73.9162542 }, + { "lat": 40.8794552, "lon": -73.9161834 }, + { "lat": 40.8794793, "lon": -73.9161381 }, + { "lat": 40.8797465, "lon": -73.9158278 }, + { "lat": 40.8801627, "lon": -73.9153445 }, + { "lat": 40.8815242, "lon": -73.9138075 } + ], + "tags": { + "highway": "residential", + "name": "Arlington Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Arlington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1422281245, + "bounds": { + "minlat": 40.7141849, + "minlon": -73.9886961, + "maxlat": 40.7143170, + "maxlon": -73.9871695 + }, + "nodes": [ + 42433550, + 8231942811, + 4540239965, + 8231954818, + 42433551 + ], + "geometry": [ + { "lat": 40.7141849, "lon": -73.9886961 }, + { "lat": 40.7141921, "lon": -73.9886127 }, + { "lat": 40.7143008, "lon": -73.9873570 }, + { "lat": 40.7143082, "lon": -73.9872710 }, + { "lat": 40.7143170, "lon": -73.9871695 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Broadway", + "name:etymology:wikidata": "Q11260", + "name:ko": "이스트 브로드웨이", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q17182161", + "wikipedia": "en:East Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1422284404, + "bounds": { + "minlat": 40.8285935, + "minlon": -73.9724470, + "maxlat": 40.8286479, + "maxlon": -73.9724092 + }, + "nodes": [ + 13070806261, + 1752676685 + ], + "geometry": [ + { "lat": 40.8285935, "lon": -73.9724470 }, + { "lat": 40.8286479, "lon": -73.9724092 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through|through;right" + } +}, +{ + "type": "way", + "id": 1422302869, + "bounds": { + "minlat": 40.7457723, + "minlon": -74.0026569, + "maxlat": 40.7459970, + "maxlon": -74.0025293 + }, + "nodes": [ + 13070973126, + 13070973127, + 13070973130 + ], + "geometry": [ + { "lat": 40.7457723, "lon": -74.0025340 }, + { "lat": 40.7458243, "lon": -74.0026569 }, + { "lat": 40.7459970, "lon": -74.0025293 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1422302870, + "bounds": { + "minlat": 40.7459970, + "minlon": -74.0025293, + "maxlat": 40.7461028, + "maxlon": -74.0024512 + }, + "nodes": [ + 13070973130, + 13070973128, + 13070973129 + ], + "geometry": [ + { "lat": 40.7459970, "lon": -74.0025293 }, + { "lat": 40.7460452, "lon": -74.0024938 }, + { "lat": 40.7461028, "lon": -74.0024512 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1422390091, + "bounds": { + "minlat": 40.8020375, + "minlon": -73.9163480, + "maxlat": 40.8021329, + "maxlon": -73.9161161 + }, + "nodes": [ + 595800943, + 9908642188, + 9908642189, + 42752931 + ], + "geometry": [ + { "lat": 40.8021329, "lon": -73.9163480 }, + { "lat": 40.8020820, "lon": -73.9162150 }, + { "lat": 40.8020525, "lon": -73.9161432 }, + { "lat": 40.8020375, "lon": -73.9161161 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "15 mph", + "name": "East 133rd Street", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "133rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1422390093, + "bounds": { + "minlat": 40.8029463, + "minlon": -73.9188969, + "maxlat": 40.8032565, + "maxlon": -73.9182683 + }, + "nodes": [ + 471247737, + 2885569437, + 471247682 + ], + "geometry": [ + { "lat": 40.8032565, "lon": -73.9188969 }, + { "lat": 40.8031558, "lon": -73.9187606 }, + { "lat": 40.8029463, "lon": -73.9182683 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 133rd Street", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "133rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1422390094, + "bounds": { + "minlat": 40.8010064, + "minlon": -73.9145159, + "maxlat": 40.8013453, + "maxlon": -73.9137124 + }, + "nodes": [ + 13071708896, + 8285359925, + 9908642191, + 42750274 + ], + "geometry": [ + { "lat": 40.8013453, "lon": -73.9145159 }, + { "lat": 40.8010629, "lon": -73.9138494 }, + { "lat": 40.8010342, "lon": -73.9137830 }, + { "lat": 40.8010064, "lon": -73.9137124 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 133rd Street", + "oneway": "yes", + "oneway:bicycle": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "133rd", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "wikidata": "Q16149970", + "wikipedia": "en:133rd Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1422390095, + "bounds": { + "minlat": 40.8032565, + "minlon": -73.9192707, + "maxlat": 40.8033810, + "maxlon": -73.9188969 + }, + "nodes": [ + 471247738, + 9908642169, + 9156970092, + 471247737 + ], + "geometry": [ + { "lat": 40.8033810, "lon": -73.9192707 }, + { "lat": 40.8033382, "lon": -73.9191511 }, + { "lat": 40.8033013, "lon": -73.9190360 }, + { "lat": 40.8032565, "lon": -73.9188969 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1423224055, + "bounds": { + "minlat": 40.7545204, + "minlon": -73.9490952, + "maxlat": 40.7547004, + "maxlon": -73.9489518 + }, + "nodes": [ + 13080929985, + 4386311900 + ], + "geometry": [ + { "lat": 40.7547004, "lon": -73.9489518 }, + { "lat": 40.7545204, "lon": -73.9490952 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "track", + "cycleway:right:oneway": "-1", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Vernon Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1423395724, + "bounds": { + "minlat": 40.7332372, + "minlon": -73.9998383, + "maxlat": 40.7336634, + "maxlon": -73.9995234 + }, + "nodes": [ + 13082559908, + 4320194279, + 42430237 + ], + "geometry": [ + { "lat": 40.7332372, "lon": -73.9998383 }, + { "lat": 40.7335802, "lon": -73.9995848 }, + { "lat": 40.7336634, "lon": -73.9995234 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left|||", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1423395725, + "bounds": { + "minlat": 40.7277347, + "minlon": -74.0031249, + "maxlat": 40.7278068, + "maxlon": -74.0030955 + }, + "nodes": [ + 5151708184, + 13082559909 + ], + "geometry": [ + { "lat": 40.7277347, "lon": -74.0031249 }, + { "lat": 40.7278068, "lon": -74.0030955 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|right", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1423562223, + "bounds": { + "minlat": 40.7186732, + "minlon": -73.9303000, + "maxlat": 40.7189425, + "maxlon": -73.9299291 + }, + "nodes": [ + 13084420321, + 13084420322, + 13084420323, + 13084420324 + ], + "geometry": [ + { "lat": 40.7186753, "lon": -73.9303000 }, + { "lat": 40.7186732, "lon": -73.9302236 }, + { "lat": 40.7188663, "lon": -73.9299546 }, + { "lat": 40.7189425, "lon": -73.9299291 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1423562224, + "bounds": { + "minlat": 40.7186753, + "minlon": -73.9303000, + "maxlat": 40.7189425, + "maxlon": -73.9299291 + }, + "nodes": [ + 13084420324, + 13084420325, + 13084420326, + 13084420321 + ], + "geometry": [ + { "lat": 40.7189425, "lon": -73.9299291 }, + { "lat": 40.7189307, "lon": -73.9300424 }, + { "lat": 40.7187451, "lon": -73.9302958 }, + { "lat": 40.7186753, "lon": -73.9303000 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1423562225, + "bounds": { + "minlat": 40.7189425, + "minlon": -73.9299291, + "maxlat": 40.7190048, + "maxlon": -73.9297760 + }, + "nodes": [ + 13084420324, + 13084420328 + ], + "geometry": [ + { "lat": 40.7189425, "lon": -73.9299291 }, + { "lat": 40.7190048, "lon": -73.9297760 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1423562226, + "bounds": { + "minlat": 40.7183496, + "minlon": -73.9303892, + "maxlat": 40.7186753, + "maxlon": -73.9303000 + }, + "nodes": [ + 5482302963, + 13084420319, + 13084420327, + 13084420320, + 13084420321 + ], + "geometry": [ + { "lat": 40.7183496, "lon": -73.9303036 }, + { "lat": 40.7184574, "lon": -73.9303395 }, + { "lat": 40.7184847, "lon": -73.9303492 }, + { "lat": 40.7185970, "lon": -73.9303892 }, + { "lat": 40.7186753, "lon": -73.9303000 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1423562227, + "bounds": { + "minlat": 40.7188412, + "minlon": -73.9294918, + "maxlat": 40.7190416, + "maxlon": -73.9294074 + }, + "nodes": [ + 5482302946, + 13084420329 + ], + "geometry": [ + { "lat": 40.7190416, "lon": -73.9294918 }, + { "lat": 40.7188412, "lon": -73.9294074 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1423562228, + "bounds": { + "minlat": 40.7191545, + "minlon": -73.9298094, + "maxlat": 40.7192426, + "maxlon": -73.9295797 + }, + "nodes": [ + 5482302947, + 13084420331 + ], + "geometry": [ + { "lat": 40.7192426, "lon": -73.9295797 }, + { "lat": 40.7191545, "lon": -73.9298094 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1423562229, + "bounds": { + "minlat": 40.7189918, + "minlon": -73.9296841, + "maxlat": 40.7190416, + "maxlon": -73.9294918 + }, + "nodes": [ + 5482302946, + 13084420333, + 13084420332 + ], + "geometry": [ + { "lat": 40.7190416, "lon": -73.9294918 }, + { "lat": 40.7190281, "lon": -73.9295451 }, + { "lat": 40.7189918, "lon": -73.9296841 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1423837133, + "bounds": { + "minlat": 40.8086802, + "minlon": -73.9529884, + "maxlat": 40.8089490, + "maxlon": -73.9529716 + }, + "nodes": [ + 12756972492, + 5481863726, + 13086428197 + ], + "geometry": [ + { "lat": 40.8086802, "lon": -73.9529716 }, + { "lat": 40.8088112, "lon": -73.9529805 }, + { "lat": 40.8089490, "lon": -73.9529884 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1423837134, + "bounds": { + "minlat": 40.8089490, + "minlon": -73.9530050, + "maxlat": 40.8092377, + "maxlon": -73.9529884 + }, + "nodes": [ + 13086428197, + 10171069670, + 42432926 + ], + "geometry": [ + { "lat": 40.8089490, "lon": -73.9529884 }, + { "lat": 40.8091631, "lon": -73.9530007 }, + { "lat": 40.8092377, "lon": -73.9530050 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk:both": "separate", + "turn:lanes:forward": "left|", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1423837135, + "bounds": { + "minlat": 40.8092377, + "minlon": -73.9535786, + "maxlat": 40.8094823, + "maxlon": -73.9530050 + }, + "nodes": [ + 42432926, + 10171069672, + 10168029070, + 42438920 + ], + "geometry": [ + { "lat": 40.8092377, "lon": -73.9530050 }, + { "lat": 40.8092989, "lon": -73.9531485 }, + { "lat": 40.8094428, "lon": -73.9534861 }, + { "lat": 40.8094823, "lon": -73.9535786 } + ], + "tags": { + "highway": "residential", + "name": "West 123rd Street", + "name_1": "West 123 Street", + "oneway": "yes", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1424092380, + "bounds": { + "minlat": 40.7722336, + "minlon": -73.9195070, + "maxlat": 40.7724254, + "maxlon": -73.9192476 + }, + "nodes": [ + 13088876754, + 8612091315 + ], + "geometry": [ + { "lat": 40.7722336, "lon": -73.9192476 }, + { "lat": 40.7724254, "lon": -73.9195070 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "no", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1424092635, + "bounds": { + "minlat": 40.7433795, + "minlon": -73.9727995, + "maxlat": 40.7434866, + "maxlon": -73.9725464 + }, + "nodes": [ + 6298391908, + 9971314370 + ], + "geometry": [ + { "lat": 40.7433795, "lon": -73.9725464 }, + { "lat": 40.7434866, "lon": -73.9727995 } + ], + "tags": { + "bus:lanes:forward": "yes|designated", + "hgv": "destination", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "East 34th Street", + "name:ru": "Восточная 34-я стрит", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|left;right|right", + "wikidata": "Q110049", + "wikipedia": "en:34th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1424092636, + "bounds": { + "minlat": 40.7432233, + "minlon": -73.9726659, + "maxlat": 40.7433795, + "maxlon": -73.9725464 + }, + "nodes": [ + 6298391910, + 6298391909, + 6298391908 + ], + "geometry": [ + { "lat": 40.7432233, "lon": -73.9726659 }, + { "lat": 40.7432901, "lon": -73.9726144 }, + { "lat": 40.7433795, "lon": -73.9725464 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1424663330, + "bounds": { + "minlat": 40.7022873, + "minlon": -73.9845641, + "maxlat": 40.7023463, + "maxlon": -73.9828076 + }, + "nodes": [ + 7707712188, + 10722370743, + 42500009 + ], + "geometry": [ + { "lat": 40.7023463, "lon": -73.9845641 }, + { "lat": 40.7022904, "lon": -73.9829009 }, + { "lat": 40.7022873, "lon": -73.9828076 } + ], + "tags": { + "hgv": "local", + "highway": "tertiary", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:name_base": "Front", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1424663331, + "bounds": { + "minlat": 40.7038133, + "minlon": -73.9884985, + "maxlat": 40.7038197, + "maxlon": -73.9883035 + }, + "nodes": [ + 42472722, + 42472724 + ], + "geometry": [ + { "lat": 40.7038197, "lon": -73.9884985 }, + { "lat": 40.7038133, "lon": -73.9883035 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:left:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1424731540, + "bounds": { + "minlat": 40.7428008, + "minlon": -73.9169205, + "maxlat": 40.7430424, + "maxlon": -73.9162150 + }, + "nodes": [ + 588178907, + 13095767973, + 13095767972, + 13095767971, + 7667163195 + ], + "geometry": [ + { "lat": 40.7430424, "lon": -73.9162150 }, + { "lat": 40.7430089, "lon": -73.9163757 }, + { "lat": 40.7429207, "lon": -73.9166567 }, + { "lat": 40.7428793, "lon": -73.9167814 }, + { "lat": 40.7428008, "lon": -73.9169205 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "name": "Greenpoint Avenue", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 1424852333, + "bounds": { + "minlat": 40.7927960, + "minlon": -73.9226229, + "maxlat": 40.7928528, + "maxlon": -73.9226173 + }, + "nodes": [ + 7738506172, + 13327578012, + 10713117979 + ], + "geometry": [ + { "lat": 40.7928528, "lon": -73.9226229 }, + { "lat": 40.7928323, "lon": -73.9226209 }, + { "lat": 40.7927960, "lon": -73.9226173 } + ], + "tags": { + "highway": "service", + "lanes": "2", + "name": "Reilly Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1425223707, + "bounds": { + "minlat": 40.7656523, + "minlon": -73.9984130, + "maxlat": 40.7657677, + "maxlon": -73.9981407 + }, + "nodes": [ + 10864461087, + 247122975 + ], + "geometry": [ + { "lat": 40.7657677, "lon": -73.9984130 }, + { "lat": 40.7656523, "lon": -73.9981407 } + ], + "tags": { + "highway": "service", + "layer": "2", + "level": "2", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1425223708, + "bounds": { + "minlat": 40.7657050, + "minlon": -73.9983744, + "maxlat": 40.7658184, + "maxlon": -73.9981022 + }, + "nodes": [ + 247122970, + 13099867115, + 1636819187 + ], + "geometry": [ + { "lat": 40.7657050, "lon": -73.9981022 }, + { "lat": 40.7657585, "lon": -73.9982307 }, + { "lat": 40.7658184, "lon": -73.9983744 } + ], + "tags": { + "highway": "service", + "layer": "2", + "level": "2", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1425233036, + "bounds": { + "minlat": 40.7677778, + "minlon": -73.9959295, + "maxlat": 40.7680051, + "maxlon": -73.9957629 + }, + "nodes": [ + 13099951758, + 61275600, + 247122525, + 11017186435 + ], + "geometry": [ + { "lat": 40.7677778, "lon": -73.9959295 }, + { "lat": 40.7678788, "lon": -73.9958562 }, + { "lat": 40.7679241, "lon": -73.9958231 }, + { "lat": 40.7680051, "lon": -73.9957629 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1425233037, + "bounds": { + "minlat": 40.7690278, + "minlon": -73.9950161, + "maxlat": 40.7691730, + "maxlon": -73.9949103 + }, + "nodes": [ + 13099951759, + 61275605, + 247122534 + ], + "geometry": [ + { "lat": 40.7690278, "lon": -73.9950161 }, + { "lat": 40.7691334, "lon": -73.9949389 }, + { "lat": 40.7691730, "lon": -73.9949103 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1425233038, + "bounds": { + "minlat": 40.7694919, + "minlon": -73.9947132, + "maxlat": 40.7696881, + "maxlon": -73.9946225 + }, + "nodes": [ + 4215913813, + 12153915838, + 9143024318, + 13099951760 + ], + "geometry": [ + { "lat": 40.7694919, "lon": -73.9947132 }, + { "lat": 40.7695713, "lon": -73.9946738 }, + { "lat": 40.7696577, "lon": -73.9946341 }, + { "lat": 40.7696881, "lon": -73.9946225 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change:lanes": "no|not_left|yes|yes|not_right|no", + "foot": "use_sidepath", + "hgv": "no", + "highway": "trunk", + "lanes": "6", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "note": "this is supposed to be a local truck route but signs say no trucks", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "left|||||" + } +}, +{ + "type": "way", + "id": 1425238911, + "bounds": { + "minlat": 40.7637774, + "minlon": -73.9977764, + "maxlat": 40.7638973, + "maxlon": -73.9976862 + }, + "nodes": [ + 5458524658, + 13100041858, + 10166521634, + 5458524659 + ], + "geometry": [ + { "lat": 40.7637774, "lon": -73.9977764 }, + { "lat": 40.7638241, "lon": -73.9977413 }, + { "lat": 40.7638395, "lon": -73.9977297 }, + { "lat": 40.7638973, "lon": -73.9976862 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1425350540, + "bounds": { + "minlat": 40.7671920, + "minlon": -73.9963548, + "maxlat": 40.7673726, + "maxlon": -73.9962236 + }, + "nodes": [ + 7588050921, + 12153915856 + ], + "geometry": [ + { "lat": 40.7671920, "lon": -73.9963548 }, + { "lat": 40.7673726, "lon": -73.9962236 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1425350541, + "bounds": { + "minlat": 40.7674596, + "minlon": -73.9964312, + "maxlat": 40.7676772, + "maxlon": -73.9962736 + }, + "nodes": [ + 13101015871, + 42453564, + 11017186436 + ], + "geometry": [ + { "lat": 40.7676772, "lon": -73.9962736 }, + { "lat": 40.7675403, "lon": -73.9963727 }, + { "lat": 40.7674596, "lon": -73.9964312 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1425350544, + "bounds": { + "minlat": 40.7694179, + "minlon": -73.9950218, + "maxlat": 40.7695243, + "maxlon": -73.9949670 + }, + "nodes": [ + 9143011014, + 12153915836 + ], + "geometry": [ + { "lat": 40.7695243, "lon": -73.9949670 }, + { "lat": 40.7694179, "lon": -73.9950218 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "foot": "use_sidepath", + "hgv": "destination", + "highway": "trunk", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "turn:lanes": "left||||" + } +}, +{ + "type": "way", + "id": 1425350545, + "bounds": { + "minlat": 40.7704997, + "minlon": -73.9944465, + "maxlat": 40.7707028, + "maxlon": -73.9944205 + }, + "nodes": [ + 13101015877, + 12153915825, + 61273004 + ], + "geometry": [ + { "lat": 40.7704997, "lon": -73.9944465 }, + { "lat": 40.7706377, "lon": -73.9944298 }, + { "lat": 40.7707028, "lon": -73.9944205 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "foot": "use_sidepath", + "hgv": "destination", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "note": "this is supposed to be a local truck route but signs say no trucks", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A" + } +}, +{ + "type": "way", + "id": 1425418393, + "bounds": { + "minlat": 40.7724388, + "minlon": -73.9195788, + "maxlat": 40.7724775, + "maxlon": -73.9195245 + }, + "nodes": [ + 7787345582, + 42802627 + ], + "geometry": [ + { "lat": 40.7724388, "lon": -73.9195245 }, + { "lat": 40.7724775, "lon": -73.9195788 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1425419467, + "bounds": { + "minlat": 40.7753908, + "minlon": -73.9233157, + "maxlat": 40.7758963, + "maxlon": -73.9230165 + }, + "nodes": [ + 3778337397, + 7714984354, + 42826008 + ], + "geometry": [ + { "lat": 40.7758963, "lon": -73.9233157 }, + { "lat": 40.7754943, "lon": -73.9230716 }, + { "lat": 40.7753908, "lon": -73.9230165 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "secondary", + "lanes": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Hoyt Avenue North", + "oneway:bicycle": "no", + "surface": "asphalt", + "turn:lanes:forward": "left|right" + } +}, +{ + "type": "way", + "id": 1425483864, + "bounds": { + "minlat": 40.7668985, + "minlon": -73.9974178, + "maxlat": 40.7669704, + "maxlon": -73.9972449 + }, + "nodes": [ + 13102792792, + 4870555390 + ], + "geometry": [ + { "lat": 40.7669704, "lon": -73.9974178 }, + { "lat": 40.7668985, "lon": -73.9972449 } + ], + "tags": { + "foot": "private", + "highway": "service", + "layer": "2", + "level": "2", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1425483865, + "bounds": { + "minlat": 40.7669734, + "minlon": -73.9974359, + "maxlat": 40.7670784, + "maxlon": -73.9971901 + }, + "nodes": [ + 247121841, + 1636819192 + ], + "geometry": [ + { "lat": 40.7669734, "lon": -73.9971901 }, + { "lat": 40.7670784, "lon": -73.9974359 } + ], + "tags": { + "foot": "private", + "highway": "service", + "layer": "2", + "level": "2", + "oneway": "yes", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1425538374, + "bounds": { + "minlat": 40.7853911, + "minlon": -73.9509302, + "maxlat": 40.7858747, + "maxlon": -73.9497778 + }, + "nodes": [ + 13103323904, + 6221717772, + 42447166 + ], + "geometry": [ + { "lat": 40.7853911, "lon": -73.9497778 }, + { "lat": 40.7858325, "lon": -73.9508284 }, + { "lat": 40.7858747, "lon": -73.9509302 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1425538375, + "bounds": { + "minlat": 40.7851967, + "minlon": -73.9497778, + "maxlat": 40.7853911, + "maxlon": -73.9493302 + }, + "nodes": [ + 42450044, + 6070360950, + 7058672149, + 13103323904 + ], + "geometry": [ + { "lat": 40.7851967, "lon": -73.9493302 }, + { "lat": 40.7852590, "lon": -73.9494706 }, + { "lat": 40.7853582, "lon": -73.9496972 }, + { "lat": 40.7853911, "lon": -73.9497778 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 96th Street", + "name:ru": "Восточная 96-я стрит", + "oneway": "no", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "left|none|none", + "wikidata": "Q277081", + "wikipedia": "en:96th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1425710817, + "bounds": { + "minlat": 40.7900301, + "minlon": -73.9715373, + "maxlat": 40.7902239, + "maxlon": -73.9712012 + }, + "nodes": [ + 13104827079, + 13104827080, + 13104827098, + 13104827783, + 13104827081, + 13104827082, + 13104827083, + 13104827084, + 13104827089, + 13104827705, + 13104827702, + 13104827087, + 13104827085, + 13104827086, + 13104827079 + ], + "geometry": [ + { "lat": 40.7902146, "lon": -73.9714921 }, + { "lat": 40.7901533, "lon": -73.9715373 }, + { "lat": 40.7900623, "lon": -73.9713218 }, + { "lat": 40.7900562, "lon": -73.9713075 }, + { "lat": 40.7900301, "lon": -73.9712458 }, + { "lat": 40.7900906, "lon": -73.9712012 }, + { "lat": 40.7901157, "lon": -73.9712608 }, + { "lat": 40.7901416, "lon": -73.9712417 }, + { "lat": 40.7901574, "lon": -73.9712791 }, + { "lat": 40.7901677, "lon": -73.9713035 }, + { "lat": 40.7901956, "lon": -73.9713696 }, + { "lat": 40.7902102, "lon": -73.9714039 }, + { "lat": 40.7902239, "lon": -73.9714364 }, + { "lat": 40.7901988, "lon": -73.9714548 }, + { "lat": 40.7902146, "lon": -73.9714921 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1425747018, + "bounds": { + "minlat": 40.8503690, + "minlon": -73.9442861, + "maxlat": 40.8505070, + "maxlon": -73.9437189 + }, + "nodes": [ + 13105274171, + 13105274172, + 13105274173, + 13105274174, + 13105274177, + 13105274175, + 13105274176 + ], + "geometry": [ + { "lat": 40.8505070, "lon": -73.9442861 }, + { "lat": 40.8504387, "lon": -73.9442108 }, + { "lat": 40.8503832, "lon": -73.9441214 }, + { "lat": 40.8503690, "lon": -73.9439182 }, + { "lat": 40.8503929, "lon": -73.9438289 }, + { "lat": 40.8504515, "lon": -73.9437590 }, + { "lat": 40.8504976, "lon": -73.9437189 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1425797050, + "bounds": { + "minlat": 40.7570060, + "minlon": -73.9911853, + "maxlat": 40.7572312, + "maxlon": -73.9909577 + }, + "nodes": [ + 9535571859, + 13105760160, + 13105760161, + 13105760162, + 9535571859 + ], + "geometry": [ + { "lat": 40.7572312, "lon": -73.9910330 }, + { "lat": 40.7570405, "lon": -73.9911853 }, + { "lat": 40.7570060, "lon": -73.9911100 }, + { "lat": 40.7571967, "lon": -73.9909577 }, + { "lat": 40.7572312, "lon": -73.9910330 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1425817835, + "bounds": { + "minlat": 40.7031267, + "minlon": -73.9878907, + "maxlat": 40.7031301, + "maxlon": -73.9875912 + }, + "nodes": [ + 42469188, + 13352208759, + 13352208763, + 13105960095 + ], + "geometry": [ + { "lat": 40.7031301, "lon": -73.9875912 }, + { "lat": 40.7031296, "lon": -73.9876378 }, + { "lat": 40.7031293, "lon": -73.9876574 }, + { "lat": 40.7031267, "lon": -73.9878907 } + ], + "tags": { + "highway": "pedestrian", + "proposed": "cycleway" + } +}, +{ + "type": "way", + "id": 1425817836, + "bounds": { + "minlat": 40.7038100, + "minlon": -73.9883035, + "maxlat": 40.7038133, + "maxlon": -73.9882055 + }, + "nodes": [ + 42472724, + 10170379777 + ], + "geometry": [ + { "lat": 40.7038133, "lon": -73.9883035 }, + { "lat": 40.7038100, "lon": -73.9882055 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:left:surface": "paving_stones", + "highway": "residential", + "lanes": "1", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1425817837, + "bounds": { + "minlat": 40.7035762, + "minlon": -73.9811448, + "maxlat": 40.7035783, + "maxlon": -73.9810717 + }, + "nodes": [ + 9800433526, + 42472734 + ], + "geometry": [ + { "lat": 40.7035783, "lon": -73.9811448 }, + { "lat": 40.7035762, "lon": -73.9810717 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Plymouth Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Plymouth", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1425817838, + "bounds": { + "minlat": 40.7035285, + "minlon": -73.9810754, + "maxlat": 40.7035762, + "maxlon": -73.9810717 + }, + "nodes": [ + 42472734, + 10725896483, + 9800456560 + ], + "geometry": [ + { "lat": 40.7035762, "lon": -73.9810717 }, + { "lat": 40.7035339, "lon": -73.9810750 }, + { "lat": 40.7035285, "lon": -73.9810754 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Hudson Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Hudson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1425954895, + "bounds": { + "minlat": 40.7012792, + "minlon": -73.9828426, + "maxlat": 40.7013624, + "maxlon": -73.9827903 + }, + "nodes": [ + 5912952467, + 42503956 + ], + "geometry": [ + { "lat": 40.7012792, "lon": -73.9827903 }, + { "lat": 40.7013624, "lon": -73.9828426 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Gold Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1425954896, + "bounds": { + "minlat": 40.7012852, + "minlon": -73.9829261, + "maxlat": 40.7013624, + "maxlon": -73.9828426 + }, + "nodes": [ + 42503956, + 2406369801 + ], + "geometry": [ + { "lat": 40.7013624, "lon": -73.9828426 }, + { "lat": 40.7012852, "lon": -73.9829261 } + ], + "tags": { + "highway": "residential", + "maxspeed": "20 mph", + "name": "Gold Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Gold", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1425954897, + "bounds": { + "minlat": 40.7026061, + "minlon": -73.9926365, + "maxlat": 40.7026073, + "maxlon": -73.9925807 + }, + "nodes": [ + 42472268, + 12867102451 + ], + "geometry": [ + { "lat": 40.7026073, "lon": -73.9925807 }, + { "lat": 40.7026061, "lon": -73.9926365 } + ], + "tags": { + "covered": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "20 mph", + "name": "Front Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Front", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1426347213, + "bounds": { + "minlat": 40.7223465, + "minlon": -73.9932156, + "maxlat": 40.7228061, + "maxlon": -73.9930344 + }, + "nodes": [ + 1773078006, + 8231909747, + 1773082408 + ], + "geometry": [ + { "lat": 40.7223465, "lon": -73.9932156 }, + { "lat": 40.7223975, "lon": -73.9931967 }, + { "lat": 40.7228061, "lon": -73.9930344 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 1426587926, + "bounds": { + "minlat": 40.8477441, + "minlon": -74.0138654, + "maxlat": 40.8479430, + "maxlon": -74.0137609 + }, + "nodes": [ + 10936336922, + 103161050, + 10936336923, + 10936336955, + 103161052 + ], + "geometry": [ + { "lat": 40.8477441, "lon": -74.0138654 }, + { "lat": 40.8477831, "lon": -74.0138487 }, + { "lat": 40.8478322, "lon": -74.0138252 }, + { "lat": 40.8478765, "lon": -74.0137993 }, + { "lat": 40.8479430, "lon": -74.0137609 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Challenger Road", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Challenger", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07660", + "tiger:zip_right": "07660", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 1426832059, + "bounds": { + "minlat": 40.7763776, + "minlon": -73.9361087, + "maxlat": 40.7764469, + "maxlon": -73.9359394 + }, + "nodes": [ + 13116240206, + 13116240207, + 13116240211, + 13116240208, + 13116240210, + 13116240209, + 13116240206 + ], + "geometry": [ + { "lat": 40.7763884, "lon": -73.9359394 }, + { "lat": 40.7764217, "lon": -73.9359640 }, + { "lat": 40.7764469, "lon": -73.9360476 }, + { "lat": 40.7764420, "lon": -73.9361087 }, + { "lat": 40.7764000, "lon": -73.9360748 }, + { "lat": 40.7763776, "lon": -73.9359793 }, + { "lat": 40.7763884, "lon": -73.9359394 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1426832060, + "bounds": { + "minlat": 40.7764420, + "minlon": -73.9363096, + "maxlat": 40.7764999, + "maxlon": -73.9361087 + }, + "nodes": [ + 13116240208, + 13116240212 + ], + "geometry": [ + { "lat": 40.7764420, "lon": -73.9361087 }, + { "lat": 40.7764999, "lon": -73.9363096 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1426832061, + "bounds": { + "minlat": 40.7763321, + "minlon": -73.9359394, + "maxlat": 40.7763884, + "maxlon": -73.9357689 + }, + "nodes": [ + 13116240205, + 13892442005, + 13116240213, + 13116240206 + ], + "geometry": [ + { "lat": 40.7763321, "lon": -73.9357689 }, + { "lat": 40.7763558, "lon": -73.9358478 }, + { "lat": 40.7763714, "lon": -73.9359000 }, + { "lat": 40.7763884, "lon": -73.9359394 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1427292864, + "bounds": { + "minlat": 40.7862717, + "minlon": -73.9257126, + "maxlat": 40.7863132, + "maxlon": -73.9252820 + }, + "nodes": [ + 13121008199, + 8112648298, + 13327452336, + 3041966803 + ], + "geometry": [ + { "lat": 40.7862717, "lon": -73.9257126 }, + { "lat": 40.7862922, "lon": -73.9255175 }, + { "lat": 40.7863089, "lon": -73.9253712 }, + { "lat": 40.7863132, "lon": -73.9252820 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1427299533, + "bounds": { + "minlat": 40.7605558, + "minlon": -73.9142877, + "maxlat": 40.7618562, + "maxlon": -73.9130209 + }, + "nodes": [ + 13121092346, + 13121092345, + 13121092344, + 13121092343, + 13121092342, + 13121092341 + ], + "geometry": [ + { "lat": 40.7607052, "lon": -73.9142877 }, + { "lat": 40.7606722, "lon": -73.9142193 }, + { "lat": 40.7605558, "lon": -73.9139617 }, + { "lat": 40.7617265, "lon": -73.9130209 }, + { "lat": 40.7618323, "lon": -73.9132757 }, + { "lat": 40.7618562, "lon": -73.9133445 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1427312235, + "bounds": { + "minlat": 40.7409499, + "minlon": -73.9271614, + "maxlat": 40.7409976, + "maxlon": -73.9267751 + }, + "nodes": [ + 13121217256, + 13121217255, + 13121217254 + ], + "geometry": [ + { "lat": 40.7409976, "lon": -73.9271614 }, + { "lat": 40.7409646, "lon": -73.9268749 }, + { "lat": 40.7409499, "lon": -73.9267751 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1427964101, + "bounds": { + "minlat": 40.7328585, + "minlon": -73.9192553, + "maxlat": 40.7332782, + "maxlon": -73.9191719 + }, + "nodes": [ + 10087484088, + 13127944559, + 13127944558 + ], + "geometry": [ + { "lat": 40.7328585, "lon": -73.9192553 }, + { "lat": 40.7329152, "lon": -73.9192455 }, + { "lat": 40.7332782, "lon": -73.9191719 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1428064254, + "bounds": { + "minlat": 40.7076310, + "minlon": -73.9158400, + "maxlat": 40.7085360, + "maxlon": -73.9149160 + }, + "nodes": [ + 42908162, + 9590434404, + 10693892812, + 10922968627, + 10686521703, + 9590434396, + 42827597 + ], + "geometry": [ + { "lat": 40.7076310, "lon": -73.9158400 }, + { "lat": 40.7076865, "lon": -73.9157833 }, + { "lat": 40.7077185, "lon": -73.9157507 }, + { "lat": 40.7080638, "lon": -73.9153981 }, + { "lat": 40.7084444, "lon": -73.9150095 }, + { "lat": 40.7084804, "lon": -73.9149727 }, + { "lat": 40.7085360, "lon": -73.9149160 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lit": "yes", + "name": "DeKalb Avenue", + "name:etymology:wikidata": "Q75363", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1428260111, + "bounds": { + "minlat": 40.8799530, + "minlon": -73.9794769, + "maxlat": 40.8801839, + "maxlon": -73.9790501 + }, + "nodes": [ + 13130708078, + 13525915065, + 13130708079 + ], + "geometry": [ + { "lat": 40.8801839, "lon": -73.9794769 }, + { "lat": 40.8801441, "lon": -73.9794033 }, + { "lat": 40.8799530, "lon": -73.9790501 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1428284743, + "bounds": { + "minlat": 40.7134693, + "minlon": -73.9152161, + "maxlat": 40.7134791, + "maxlon": -73.9150567 + }, + "nodes": [ + 7712120184, + 5482330032 + ], + "geometry": [ + { "lat": 40.7134791, "lon": -73.9152161 }, + { "lat": 40.7134693, "lon": -73.9150567 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Metropolitan Avenue", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "wikidata": "Q14706945", + "wikipedia": "en:Metropolitan Avenue" + } +}, +{ + "type": "way", + "id": 1428284744, + "bounds": { + "minlat": 40.7139262, + "minlon": -73.9150715, + "maxlat": 40.7145056, + "maxlon": -73.9140988 + }, + "nodes": [ + 8708655685, + 7199719992, + 7248977677, + 42881147, + 4202574177 + ], + "geometry": [ + { "lat": 40.7139262, "lon": -73.9150715 }, + { "lat": 40.7140255, "lon": -73.9149146 }, + { "lat": 40.7143715, "lon": -73.9143105 }, + { "lat": 40.7144167, "lon": -73.9142387 }, + { "lat": 40.7145056, "lon": -73.9140988 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1428284745, + "bounds": { + "minlat": 40.7138988, + "minlon": -73.9151110, + "maxlat": 40.7139262, + "maxlon": -73.9150715 + }, + "nodes": [ + 5482319555, + 8708655685 + ], + "geometry": [ + { "lat": 40.7138988, "lon": -73.9151110 }, + { "lat": 40.7139262, "lon": -73.9150715 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Flushing Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q5462907", + "wikipedia": "en:Flushing Avenue" + } +}, +{ + "type": "way", + "id": 1428425851, + "bounds": { + "minlat": 40.7024238, + "minlon": -73.9866885, + "maxlat": 40.7031065, + "maxlon": -73.9866471 + }, + "nodes": [ + 42469358, + 10722370725, + 2358967538, + 9805235575, + 42497720 + ], + "geometry": [ + { "lat": 40.7031065, "lon": -73.9866471 }, + { "lat": 40.7030655, "lon": -73.9866496 }, + { "lat": 40.7029067, "lon": -73.9866592 }, + { "lat": 40.7024852, "lon": -73.9866848 }, + { "lat": 40.7024238, "lon": -73.9866885 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Jay", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1428426909, + "bounds": { + "minlat": 40.7547004, + "minlon": -73.9489518, + "maxlat": 40.7549046, + "maxlon": -73.9488323 + }, + "nodes": [ + 607954922, + 13080929981, + 13080929985 + ], + "geometry": [ + { "lat": 40.7549046, "lon": -73.9488323 }, + { "lat": 40.7548063, "lon": -73.9489079 }, + { "lat": 40.7547004, "lon": -73.9489518 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:right": "track", + "cycleway:right:oneway": "-1", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Vernon Boulevard", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1429194232, + "bounds": { + "minlat": 40.8432536, + "minlon": -73.9876731, + "maxlat": 40.8434297, + "maxlon": -73.9872082 + }, + "nodes": [ + 13137864354, + 13137864359, + 13137864358, + 13137864355 + ], + "geometry": [ + { "lat": 40.8432536, "lon": -73.9872082 }, + { "lat": 40.8433255, "lon": -73.9873701 }, + { "lat": 40.8433329, "lon": -73.9874843 }, + { "lat": 40.8434297, "lon": -73.9876731 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1429194233, + "bounds": { + "minlat": 40.8431303, + "minlon": -73.9876792, + "maxlat": 40.8433329, + "maxlon": -73.9874843 + }, + "nodes": [ + 13137864357, + 13137864358 + ], + "geometry": [ + { "lat": 40.8431303, "lon": -73.9876792 }, + { "lat": 40.8433329, "lon": -73.9874843 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1429194234, + "bounds": { + "minlat": 40.8432359, + "minlon": -73.9878558, + "maxlat": 40.8434297, + "maxlon": -73.9876731 + }, + "nodes": [ + 13137864355, + 13137864356 + ], + "geometry": [ + { "lat": 40.8434297, "lon": -73.9876731 }, + { "lat": 40.8432359, "lon": -73.9878558 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1429258390, + "bounds": { + "minlat": 40.8684500, + "minlon": -73.9732638, + "maxlat": 40.8695714, + "maxlon": -73.9728624 + }, + "nodes": [ + 298918559, + 298918560, + 1760541823 + ], + "geometry": [ + { "lat": 40.8695714, "lon": -73.9728624 }, + { "lat": 40.8685103, "lon": -73.9732422 }, + { "lat": 40.8684500, "lon": -73.9732638 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1429282708, + "bounds": { + "minlat": 40.7559486, + "minlon": -73.9908759, + "maxlat": 40.7560157, + "maxlon": -73.9907278 + }, + "nodes": [ + 7903850296, + 42435657 + ], + "geometry": [ + { "lat": 40.7560157, "lon": -73.9908759 }, + { "lat": 40.7559486, "lon": -73.9907278 } + ], + "tags": { + "alt_name": "West 40 Street", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "foot": "no", + "highway": "residential", + "lanes": "3", + "name": "West 40th Street", + "name:ru": "Западная 40-я стрит", + "oneway": "yes", + "sidewalk:both": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1429880223, + "bounds": { + "minlat": 40.8716974, + "minlon": -73.9726041, + "maxlat": 40.8729494, + "maxlon": -73.9723241 + }, + "nodes": [ + 298917917, + 10942862936, + 10942862937, + 298917918, + 10942862939, + 298918550, + 10942862930, + 298917923, + 10942862941, + 298917947, + 10942862929, + 392522316, + 298917926 + ], + "geometry": [ + { "lat": 40.8716974, "lon": -73.9723241 }, + { "lat": 40.8718070, "lon": -73.9723313 }, + { "lat": 40.8719171, "lon": -73.9723431 }, + { "lat": 40.8720262, "lon": -73.9723575 }, + { "lat": 40.8721383, "lon": -73.9723746 }, + { "lat": 40.8722494, "lon": -73.9723959 }, + { "lat": 40.8723566, "lon": -73.9724194 }, + { "lat": 40.8724670, "lon": -73.9724464 }, + { "lat": 40.8725725, "lon": -73.9724764 }, + { "lat": 40.8726828, "lon": -73.9725096 }, + { "lat": 40.8727872, "lon": -73.9725442 }, + { "lat": 40.8728917, "lon": -73.9725813 }, + { "lat": 40.8729494, "lon": -73.9726041 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "2", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1429940727, + "bounds": { + "minlat": 40.7735873, + "minlon": -73.9085305, + "maxlat": 40.7740961, + "maxlon": -73.9078316 + }, + "nodes": [ + 13144318019, + 13144318016, + 13144318018, + 13144318017, + 11304608232 + ], + "geometry": [ + { "lat": 40.7735873, "lon": -73.9078316 }, + { "lat": 40.7736302, "lon": -73.9078893 }, + { "lat": 40.7738850, "lon": -73.9082319 }, + { "lat": 40.7740490, "lon": -73.9084646 }, + { "lat": 40.7740961, "lon": -73.9085305 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1429944189, + "bounds": { + "minlat": 40.8529401, + "minlon": -73.9067396, + "maxlat": 40.8531493, + "maxlon": -73.9063101 + }, + "nodes": [ + 13144327887, + 13144327886, + 13144327885 + ], + "geometry": [ + { "lat": 40.8531493, "lon": -73.9067396 }, + { "lat": 40.8531222, "lon": -73.9066859 }, + { "lat": 40.8529401, "lon": -73.9063101 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1430111223, + "bounds": { + "minlat": 40.8059786, + "minlon": -73.9269569, + "maxlat": 40.8066179, + "maxlon": -73.9254407 + }, + "nodes": [ + 13146124222, + 7554071439, + 5482371915, + 9908650918, + 595801009 + ], + "geometry": [ + { "lat": 40.8066179, "lon": -73.9269569 }, + { "lat": 40.8062074, "lon": -73.9259856 }, + { "lat": 40.8060582, "lon": -73.9256297 }, + { "lat": 40.8059942, "lon": -73.9254780 }, + { "lat": 40.8059786, "lon": -73.9254407 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1430111224, + "bounds": { + "minlat": 40.8066179, + "minlon": -73.9274987, + "maxlat": 40.8068469, + "maxlon": -73.9269569 + }, + "nodes": [ + 42732842, + 9908621496, + 13146124222 + ], + "geometry": [ + { "lat": 40.8068469, "lon": -73.9274987 }, + { "lat": 40.8067988, "lon": -73.9273850 }, + { "lat": 40.8066179, "lon": -73.9269569 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1430111225, + "bounds": { + "minlat": 40.8073764, + "minlon": -73.9289619, + "maxlat": 40.8075081, + "maxlon": -73.9286563 + }, + "nodes": [ + 13146124223, + 13522465052, + 4207700491 + ], + "geometry": [ + { "lat": 40.8073764, "lon": -73.9286563 }, + { "lat": 40.8074451, "lon": -73.9288226 }, + { "lat": 40.8075081, "lon": -73.9289619 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1430113513, + "bounds": { + "minlat": 40.8341416, + "minlon": -73.9115417, + "maxlat": 40.8367964, + "maxlon": -73.9097405 + }, + "nodes": [ + 486818475, + 486818506, + 13036560281, + 42743942, + 13036560282, + 13146175918 + ], + "geometry": [ + { "lat": 40.8367964, "lon": -73.9097405 }, + { "lat": 40.8365302, "lon": -73.9101267 }, + { "lat": 40.8348003, "lon": -73.9111536 }, + { "lat": 40.8347220, "lon": -73.9112000 }, + { "lat": 40.8346565, "lon": -73.9112386 }, + { "lat": 40.8341416, "lon": -73.9115417 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "name": "Findlay Avenue", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Teller;Findlay", + "tiger:name_type": "Ave", + "tiger:zip_left": "10456", + "tiger:zip_right": "10457;10456", + "tiger:zip_right_1": "10456" + } +}, +{ + "type": "way", + "id": 1430115833, + "bounds": { + "minlat": 40.8613693, + "minlon": -73.9671623, + "maxlat": 40.8614177, + "maxlon": -73.9666984 + }, + "nodes": [ + 60810969, + 13769018758, + 12512756313, + 4204809595, + 7921643417 + ], + "geometry": [ + { "lat": 40.8614177, "lon": -73.9666984 }, + { "lat": 40.8614012, "lon": -73.9668205 }, + { "lat": 40.8613880, "lon": -73.9669401 }, + { "lat": 40.8613733, "lon": -73.9671138 }, + { "lat": 40.8613693, "lon": -73.9671623 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NJDOT_SRI": "00000445S", + "destination": "Alt to G.W. Bridge", + "destination:ref:to": "NJ 4;US 46;I 95;I 80;NJTP", + "hgv": "no", + "highway": "trunk", + "lanes": "3", + "maxspeed": "40 mph", + "oneway": "yes", + "ref": "US 9W", + "short_name": "Palisades Parkway", + "surface": "asphalt", + "turn:lanes": "slight_left;through||slight_right" + } +}, +{ + "type": "way", + "id": 1430145126, + "bounds": { + "minlat": 40.8208000, + "minlon": -73.9308093, + "maxlat": 40.8208023, + "maxlon": -73.9307543 + }, + "nodes": [ + 7931142274, + 13146413880 + ], + "geometry": [ + { "lat": 40.8208023, "lon": -73.9307543 }, + { "lat": 40.8208000, "lon": -73.9308093 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1430209020, + "bounds": { + "minlat": 40.8790554, + "minlon": -73.9814047, + "maxlat": 40.8792629, + "maxlon": -73.9810380 + }, + "nodes": [ + 298940218, + 3655086549 + ], + "geometry": [ + { "lat": 40.8790554, "lon": -73.9810380 }, + { "lat": 40.8792629, "lon": -73.9814047 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1430215338, + "bounds": { + "minlat": 40.8767799, + "minlon": -73.9790869, + "maxlat": 40.8778181, + "maxlon": -73.9772528 + }, + "nodes": [ + 765596337, + 298940083 + ], + "geometry": [ + { "lat": 40.8778181, "lon": -73.9790869 }, + { "lat": 40.8767799, "lon": -73.9772528 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1430215339, + "bounds": { + "minlat": 40.8781104, + "minlon": -73.9807670, + "maxlat": 40.8787702, + "maxlon": -73.9796023 + }, + "nodes": [ + 530806419, + 3655086224 + ], + "geometry": [ + { "lat": 40.8787702, "lon": -73.9807670 }, + { "lat": 40.8781104, "lon": -73.9796023 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1430313804, + "bounds": { + "minlat": 40.8371458, + "minlon": -73.9081538, + "maxlat": 40.8372861, + "maxlon": -73.9078703 + }, + "nodes": [ + 8454214988, + 2822108641, + 13055681154, + 42739249 + ], + "geometry": [ + { "lat": 40.8371458, "lon": -73.9081538 }, + { "lat": 40.8371646, "lon": -73.9080698 }, + { "lat": 40.8372034, "lon": -73.9079884 }, + { "lat": 40.8372861, "lon": -73.9078703 } + ], + "tags": { + "highway": "tertiary", + "name": "East 170th Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "170th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1430342794, + "bounds": { + "minlat": 40.8814408, + "minlon": -73.9856893, + "maxlat": 40.8817117, + "maxlon": -73.9852372 + }, + "nodes": [ + 10943513062, + 9239580277, + 298940221 + ], + "geometry": [ + { "lat": 40.8814408, "lon": -73.9852372 }, + { "lat": 40.8815751, "lon": -73.9854632 }, + { "lat": 40.8817117, "lon": -73.9856893 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1430342795, + "bounds": { + "minlat": 40.8821301, + "minlon": -73.9868821, + "maxlat": 40.8824646, + "maxlon": -73.9863601 + }, + "nodes": [ + 10943513080, + 10943513082, + 298939923, + 12023867974 + ], + "geometry": [ + { "lat": 40.8821301, "lon": -73.9863601 }, + { "lat": 40.8822724, "lon": -73.9865828 }, + { "lat": 40.8823844, "lon": -73.9867599 }, + { "lat": 40.8824646, "lon": -73.9868821 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1430342796, + "bounds": { + "minlat": 40.8809426, + "minlon": -73.9852372, + "maxlat": 40.8814408, + "maxlon": -73.9843728 + }, + "nodes": [ + 12023838864, + 9239580275, + 10943513066, + 9239580276, + 10943513062 + ], + "geometry": [ + { "lat": 40.8809426, "lon": -73.9843728 }, + { "lat": 40.8810393, "lon": -73.9845436 }, + { "lat": 40.8811721, "lon": -73.9847767 }, + { "lat": 40.8813049, "lon": -73.9850068 }, + { "lat": 40.8814408, "lon": -73.9852372 } + ], + "tags": { + "HFCS": "Urban Freeway/Expressway", + "NHS": "yes", + "NJDOT_SRI": "00000004", + "bicycle": "no", + "expressway": "yes", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "trunk", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "ref": "NJ 4", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A35", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "State Route 4", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1430537900, + "bounds": { + "minlat": 40.7742415, + "minlon": -73.9177210, + "maxlat": 40.7745383, + "maxlon": -73.9174197 + }, + "nodes": [ + 8669080491, + 13149325724, + 13149325723, + 13149325722, + 13149325721 + ], + "geometry": [ + { "lat": 40.7745383, "lon": -73.9177210 }, + { "lat": 40.7744755, "lon": -73.9177041 }, + { "lat": 40.7744349, "lon": -73.9176766 }, + { "lat": 40.7742941, "lon": -73.9174878 }, + { "lat": 40.7742415, "lon": -73.9174197 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1430537901, + "bounds": { + "minlat": 40.7751377, + "minlon": -73.9167084, + "maxlat": 40.7753992, + "maxlon": -73.9163301 + }, + "nodes": [ + 13149325726, + 13149325725, + 8288329064 + ], + "geometry": [ + { "lat": 40.7753992, "lon": -73.9167084 }, + { "lat": 40.7751872, "lon": -73.9163963 }, + { "lat": 40.7751377, "lon": -73.9163301 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1430549545, + "bounds": { + "minlat": 40.7653173, + "minlon": -73.9520980, + "maxlat": 40.7656084, + "maxlon": -73.9518272 + }, + "nodes": [ + 13149429666, + 9906953427, + 9906953428, + 9906953429, + 13149429667 + ], + "geometry": [ + { "lat": 40.7656084, "lon": -73.9518272 }, + { "lat": 40.7655813, "lon": -73.9518513 }, + { "lat": 40.7654764, "lon": -73.9519458 }, + { "lat": 40.7653564, "lon": -73.9520584 }, + { "lat": 40.7653173, "lon": -73.9520980 } + ], + "tags": { + "cycleway:right": "no", + "foot": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "layer": "-1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "sidewalk": "no", + "surface": "asphalt", + "tunnel": "building_passage", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 1430549546, + "bounds": { + "minlat": 40.7652696, + "minlon": -73.9521462, + "maxlat": 40.7653173, + "maxlon": -73.9520980 + }, + "nodes": [ + 13149429667, + 42427030 + ], + "geometry": [ + { "lat": 40.7653173, "lon": -73.9520980 }, + { "lat": 40.7652696, "lon": -73.9521462 } + ], + "tags": { + "cycleway:right": "no", + "foot": "no", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "parking:both": "no", + "sidewalk": "no", + "surface": "asphalt", + "turn:lanes": "through;right" + } +}, +{ + "type": "way", + "id": 1430549547, + "bounds": { + "minlat": 40.7652163, + "minlon": -73.9518996, + "maxlat": 40.7655276, + "maxlon": -73.9516205 + }, + "nodes": [ + 13149429670, + 13149429668 + ], + "geometry": [ + { "lat": 40.7652163, "lon": -73.9518996 }, + { "lat": 40.7655276, "lon": -73.9516205 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "-1", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "tunnel": "building_passage", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1430549548, + "bounds": { + "minlat": 40.7651607, + "minlon": -73.9521063, + "maxlat": 40.7652720, + "maxlon": -73.9520050 + }, + "nodes": [ + 13149429671, + 42425246 + ], + "geometry": [ + { "lat": 40.7652720, "lon": -73.9520050 }, + { "lat": 40.7651607, "lon": -73.9521063 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1430549549, + "bounds": { + "minlat": 40.7655276, + "minlon": -73.9516205, + "maxlat": 40.7663475, + "maxlon": -73.9508902 + }, + "nodes": [ + 13149429668, + 3785454966, + 371197670 + ], + "geometry": [ + { "lat": 40.7655276, "lon": -73.9516205 }, + { "lat": 40.7661763, "lon": -73.9510389 }, + { "lat": 40.7663475, "lon": -73.9508902 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1430549550, + "bounds": { + "minlat": 40.7652720, + "minlon": -73.9520050, + "maxlat": 40.7655796, + "maxlon": -73.9517249 + }, + "nodes": [ + 13149429669, + 13149429671 + ], + "geometry": [ + { "lat": 40.7655796, "lon": -73.9517249 }, + { "lat": 40.7652720, "lon": -73.9520050 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "-1", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "tunnel": "building_passage", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1430639741, + "bounds": { + "minlat": 40.7700476, + "minlon": -73.9844413, + "maxlat": 40.7701808, + "maxlon": -73.9843022 + }, + "nodes": [ + 13150195521, + 13150195522, + 13150195527, + 13150195523, + 13150195528, + 9491447231, + 7448783499, + 9491447228, + 11186999476, + 13150195521 + ], + "geometry": [ + { "lat": 40.7701808, "lon": -73.9843638 }, + { "lat": 40.7701554, "lon": -73.9843022 }, + { "lat": 40.7701364, "lon": -73.9843159 }, + { "lat": 40.7700476, "lon": -73.9843797 }, + { "lat": 40.7700607, "lon": -73.9844114 }, + { "lat": 40.7700730, "lon": -73.9844413 }, + { "lat": 40.7700836, "lon": -73.9844336 }, + { "lat": 40.7700953, "lon": -73.9844252 }, + { "lat": 40.7701619, "lon": -73.9843773 }, + { "lat": 40.7701808, "lon": -73.9843638 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1431019087, + "bounds": { + "minlat": 40.6999262, + "minlon": -73.9631535, + "maxlat": 40.7002841, + "maxlon": -73.9626906 + }, + "nodes": [ + 13153970823, + 7711206095 + ], + "geometry": [ + { "lat": 40.7002841, "lon": -73.9626906 }, + { "lat": 40.6999262, "lon": -73.9631535 } + ], + "tags": { + "access": "private", + "highway": "unclassified", + "name": "Back Road" + } +}, +{ + "type": "way", + "id": 1431438938, + "bounds": { + "minlat": 40.7534590, + "minlon": -73.9414060, + "maxlat": 40.7582360, + "maxlon": -73.9370090 + }, + "nodes": [ + 42815782, + 6452768045, + 8084752873, + 8315005358, + 42876760, + 8315005322, + 5487837588, + 7746705682, + 8084752880, + 8314985387, + 42892924, + 8315005369, + 8084752886, + 8315005319, + 42906425, + 8314985366, + 7121745978, + 7121745969, + 13701218303, + 5044818919, + 5493300578, + 42895308 + ], + "geometry": [ + { "lat": 40.7582360, "lon": -73.9370090 }, + { "lat": 40.7581758, "lon": -73.9370644 }, + { "lat": 40.7571361, "lon": -73.9380222 }, + { "lat": 40.7571019, "lon": -73.9380539 }, + { "lat": 40.7570310, "lon": -73.9381190 }, + { "lat": 40.7569715, "lon": -73.9381739 }, + { "lat": 40.7566713, "lon": -73.9384503 }, + { "lat": 40.7566380, "lon": -73.9384809 }, + { "lat": 40.7560517, "lon": -73.9390210 }, + { "lat": 40.7560279, "lon": -73.9390429 }, + { "lat": 40.7559800, "lon": -73.9390870 }, + { "lat": 40.7559294, "lon": -73.9391336 }, + { "lat": 40.7548058, "lon": -73.9401699 }, + { "lat": 40.7547767, "lon": -73.9401965 }, + { "lat": 40.7547190, "lon": -73.9402500 }, + { "lat": 40.7546739, "lon": -73.9402914 }, + { "lat": 40.7544551, "lon": -73.9404921 }, + { "lat": 40.7540092, "lon": -73.9409012 }, + { "lat": 40.7539953, "lon": -73.9409139 }, + { "lat": 40.7535534, "lon": -73.9413194 }, + { "lat": 40.7535208, "lon": -73.9413495 }, + { "lat": 40.7534590, "lon": -73.9414060 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lit": "yes", + "name": "22nd Street", + "name_1": "Harry Suna Place", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "22nd", + "tiger:name_base_1": "Harry Suna", + "tiger:name_type": "St", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "name" + } +}, +{ + "type": "way", + "id": 1431588334, + "bounds": { + "minlat": 40.7996201, + "minlon": -73.9968385, + "maxlat": 40.7996787, + "maxlon": -73.9966526 + }, + "nodes": [ + 6894972441, + 13158817605 + ], + "geometry": [ + { "lat": 40.7996787, "lon": -73.9968385 }, + { "lat": 40.7996201, "lon": -73.9966526 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1432221936, + "bounds": { + "minlat": 40.7398031, + "minlon": -73.9577991, + "maxlat": 40.7404564, + "maxlon": -73.9575831 + }, + "nodes": [ + 11203867454, + 11203867453, + 11211160516, + 11203867452 + ], + "geometry": [ + { "lat": 40.7398031, "lon": -73.9577991 }, + { "lat": 40.7398357, "lon": -73.9577822 }, + { "lat": 40.7404014, "lon": -73.9576008 }, + { "lat": 40.7404564, "lon": -73.9575831 } + ], + "tags": { + "access": "destination", + "highway": "residential", + "maxspeed": "5 mph", + "name": "Malt Drive", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1432235457, + "bounds": { + "minlat": 40.7069325, + "minlon": -73.9677454, + "maxlat": 40.7074060, + "maxlon": -73.9676602 + }, + "nodes": [ + 13164752563, + 13164752562, + 13164752561, + 13164752560, + 13164752559, + 13164752558, + 13164752557, + 13164752556 + ], + "geometry": [ + { "lat": 40.7069325, "lon": -73.9676988 }, + { "lat": 40.7070295, "lon": -73.9677257 }, + { "lat": 40.7071244, "lon": -73.9677454 }, + { "lat": 40.7071590, "lon": -73.9677360 }, + { "lat": 40.7071849, "lon": -73.9677172 }, + { "lat": 40.7072144, "lon": -73.9676830 }, + { "lat": 40.7072373, "lon": -73.9676602 }, + { "lat": 40.7074060, "lon": -73.9676884 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1432256944, + "bounds": { + "minlat": 40.7144947, + "minlon": -73.9778226, + "maxlat": 40.7147290, + "maxlon": -73.9777130 + }, + "nodes": [ + 8289163622, + 5377706611, + 5377706607, + 5377706604 + ], + "geometry": [ + { "lat": 40.7147290, "lon": -73.9777130 }, + { "lat": 40.7146830, "lon": -73.9777345 }, + { "lat": 40.7145681, "lon": -73.9777883 }, + { "lat": 40.7144947, "lon": -73.9778226 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1432294517, + "bounds": { + "minlat": 40.8421096, + "minlon": -73.9443610, + "maxlat": 40.8424356, + "maxlon": -73.9440335 + }, + "nodes": [ + 13165210890, + 13165210891, + 13165210892, + 13165210893, + 13165210894, + 13165210895, + 13165210896, + 13165210897 + ], + "geometry": [ + { "lat": 40.8424312, "lon": -73.9440335 }, + { "lat": 40.8424356, "lon": -73.9441988 }, + { "lat": 40.8424079, "lon": -73.9442853 }, + { "lat": 40.8423712, "lon": -73.9443311 }, + { "lat": 40.8422419, "lon": -73.9443610 }, + { "lat": 40.8421741, "lon": -73.9443404 }, + { "lat": 40.8421452, "lon": -73.9442700 }, + { "lat": 40.8421096, "lon": -73.9441138 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1432457292, + "bounds": { + "minlat": 40.7652552, + "minlon": -74.0186730, + "maxlat": 40.7653836, + "maxlon": -74.0185489 + }, + "nodes": [ + 13166863081, + 13166863078, + 13166863080 + ], + "geometry": [ + { "lat": 40.7653721, "lon": -74.0185489 }, + { "lat": 40.7653836, "lon": -74.0185777 }, + { "lat": 40.7652552, "lon": -74.0186730 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1432457293, + "bounds": { + "minlat": 40.7651481, + "minlon": -74.0187529, + "maxlat": 40.7652552, + "maxlon": -74.0186730 + }, + "nodes": [ + 13166863080, + 13166863079 + ], + "geometry": [ + { "lat": 40.7652552, "lon": -74.0186730 }, + { "lat": 40.7651481, "lon": -74.0187529 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1432457294, + "bounds": { + "minlat": 40.7653325, + "minlon": -74.0185489, + "maxlat": 40.7653721, + "maxlon": -74.0184384 + }, + "nodes": [ + 13166863077, + 13166863081 + ], + "geometry": [ + { "lat": 40.7653325, "lon": -74.0184384 }, + { "lat": 40.7653721, "lon": -74.0185489 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1432460083, + "bounds": { + "minlat": 40.7540233, + "minlon": -74.0059724, + "maxlat": 40.7541286, + "maxlon": -74.0058801 + }, + "nodes": [ + 7116915288, + 7116915290, + 8261122847, + 7116915289 + ], + "geometry": [ + { "lat": 40.7540233, "lon": -74.0059724 }, + { "lat": 40.7540649, "lon": -74.0059419 }, + { "lat": 40.7540810, "lon": -74.0059307 }, + { "lat": 40.7541286, "lon": -74.0058801 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1432650460, + "bounds": { + "minlat": 40.7700328, + "minlon": -73.9947846, + "maxlat": 40.7708054, + "maxlon": -73.9946779 + }, + "nodes": [ + 61273001, + 12153915814, + 247128812, + 9140924713 + ], + "geometry": [ + { "lat": 40.7708054, "lon": -73.9946779 }, + { "lat": 40.7701545, "lon": -73.9947647 }, + { "lat": 40.7701157, "lon": -73.9947699 }, + { "lat": 40.7700328, "lon": -73.9947846 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A" + } +}, +{ + "type": "way", + "id": 1432650461, + "bounds": { + "minlat": 40.7708054, + "minlon": -73.9946779, + "maxlat": 40.7711539, + "maxlon": -73.9946121 + }, + "nodes": [ + 13168459316, + 13168459352, + 13168459347, + 13168459314, + 13168459355, + 13168459356, + 13168459329, + 13168459349, + 13168459354, + 13168459315, + 13168459345, + 13168459348, + 13168459350, + 61273001 + ], + "geometry": [ + { "lat": 40.7711539, "lon": -73.9946121 }, + { "lat": 40.7711368, "lon": -73.9946163 }, + { "lat": 40.7711199, "lon": -73.9946203 }, + { "lat": 40.7710860, "lon": -73.9946281 }, + { "lat": 40.7710704, "lon": -73.9946316 }, + { "lat": 40.7710420, "lon": -73.9946375 }, + { "lat": 40.7710285, "lon": -73.9946403 }, + { "lat": 40.7710027, "lon": -73.9946454 }, + { "lat": 40.7709720, "lon": -73.9946510 }, + { "lat": 40.7709412, "lon": -73.9946566 }, + { "lat": 40.7709054, "lon": -73.9946628 }, + { "lat": 40.7708551, "lon": -73.9946706 }, + { "lat": 40.7708303, "lon": -73.9946742 }, + { "lat": 40.7708054, "lon": -73.9946779 } + ], + "tags": { + "alt_name": "12th Avenue", + "bicycle": "no", + "destination:lanes": "West 56 Street;West 54 Street|West 56 Street|Battery Park|Battery Park|Battery Park;Ship Terminal", + "hgv": "no", + "highway": "motorway", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Side Highway", + "name:ru": "Вест-Сайд-Хайвей", + "not:name": "Henry Hudson Parkway", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "source:name": "https://en.wikipedia.org/wiki/West_Side_Highway", + "turn:lanes": "left|left|||" + } +}, +{ + "type": "way", + "id": 1432650462, + "bounds": { + "minlat": 40.7707028, + "minlon": -73.9944205, + "maxlat": 40.7715328, + "maxlon": -73.9942139 + }, + "nodes": [ + 61273004, + 13168459376, + 13168459375, + 13168459386, + 13168459377, + 13168459387, + 13168459374, + 13168459385, + 13168459379, + 13168459384, + 13168459373, + 13168459383, + 13168459372, + 13168459378, + 13168459371, + 13168459382, + 13168459362, + 13168459381, + 61271722 + ], + "geometry": [ + { "lat": 40.7707028, "lon": -73.9944205 }, + { "lat": 40.7709412, "lon": -73.9943895 }, + { "lat": 40.7710142, "lon": -73.9943786 }, + { "lat": 40.7710578, "lon": -73.9943703 }, + { "lat": 40.7710915, "lon": -73.9943635 }, + { "lat": 40.7711258, "lon": -73.9943561 }, + { "lat": 40.7711453, "lon": -73.9943517 }, + { "lat": 40.7711745, "lon": -73.9943447 }, + { "lat": 40.7712021, "lon": -73.9943376 }, + { "lat": 40.7712297, "lon": -73.9943298 }, + { "lat": 40.7712539, "lon": -73.9943225 }, + { "lat": 40.7712822, "lon": -73.9943134 }, + { "lat": 40.7713099, "lon": -73.9943037 }, + { "lat": 40.7713400, "lon": -73.9942930 }, + { "lat": 40.7713755, "lon": -73.9942798 }, + { "lat": 40.7714095, "lon": -73.9942666 }, + { "lat": 40.7714471, "lon": -73.9942514 }, + { "lat": 40.7714889, "lon": -73.9942334 }, + { "lat": 40.7715328, "lon": -73.9942139 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "no", + "hgv": "destination", + "highway": "trunk", + "lanes": "5", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "note": "this is supposed to be a local truck route but signs say no trucks", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1432650463, + "bounds": { + "minlat": 40.7715328, + "minlon": -73.9942139, + "maxlat": 40.7721219, + "maxlon": -73.9938459 + }, + "nodes": [ + 61271722, + 13168459380, + 13168459366, + 13168459368, + 13168459365, + 13168459367, + 13168459364, + 13168459369, + 13168459388, + 13168459363, + 13168459370, + 13168459389, + 61273008 + ], + "geometry": [ + { "lat": 40.7715328, "lon": -73.9942139 }, + { "lat": 40.7715961, "lon": -73.9941834 }, + { "lat": 40.7716241, "lon": -73.9941691 }, + { "lat": 40.7716703, "lon": -73.9941443 }, + { "lat": 40.7717121, "lon": -73.9941209 }, + { "lat": 40.7717528, "lon": -73.9940984 }, + { "lat": 40.7717853, "lon": -73.9940800 }, + { "lat": 40.7718149, "lon": -73.9940622 }, + { "lat": 40.7718299, "lon": -73.9940532 }, + { "lat": 40.7718612, "lon": -73.9940334 }, + { "lat": 40.7718870, "lon": -73.9940164 }, + { "lat": 40.7719184, "lon": -73.9939947 }, + { "lat": 40.7721219, "lon": -73.9938459 } + ], + "tags": { + "alt_name": "12th Avenue", + "change": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "name": "West Side Highway", + "name:ru": "Вест-Сайд-Хайвей", + "not:name": "Henry Hudson Parkway", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "source:name": "https://en.wikipedia.org/wiki/West_Side_Highway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1432745392, + "bounds": { + "minlat": 40.7711539, + "minlon": -73.9946121, + "maxlat": 40.7713679, + "maxlon": -73.9945454 + }, + "nodes": [ + 13168459324, + 13168459325, + 13168459317, + 13169595585, + 13168459342, + 13168459323, + 13168459343, + 13168459353, + 13168459346, + 13168459351, + 13168459316 + ], + "geometry": [ + { "lat": 40.7713679, "lon": -73.9945454 }, + { "lat": 40.7713390, "lon": -73.9945559 }, + { "lat": 40.7713069, "lon": -73.9945671 }, + { "lat": 40.7712921, "lon": -73.9945721 }, + { "lat": 40.7712773, "lon": -73.9945771 }, + { "lat": 40.7712590, "lon": -73.9945827 }, + { "lat": 40.7712434, "lon": -73.9945876 }, + { "lat": 40.7712041, "lon": -73.9945988 }, + { "lat": 40.7711907, "lon": -73.9946024 }, + { "lat": 40.7711753, "lon": -73.9946066 }, + { "lat": 40.7711539, "lon": -73.9946121 } + ], + "tags": { + "alt_name": "12th Avenue", + "bicycle": "no", + "destination:lanes": "West 56 Street;West 54 Street|West 56 Street|Battery Park|Battery Park|Battery Park;Ship Terminal", + "hgv": "no", + "highway": "motorway", + "lanes": "5", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Side Highway", + "name:ru": "Вест-Сайд-Хайвей", + "not:name": "Henry Hudson Parkway", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "source:name": "https://en.wikipedia.org/wiki/West_Side_Highway", + "turn:lanes": "left|left|||" + } +}, +{ + "type": "way", + "id": 1433192437, + "bounds": { + "minlat": 40.8601044, + "minlon": -74.0084050, + "maxlat": 40.8602793, + "maxlon": -74.0082192 + }, + "nodes": [ + 13172389311, + 13172389310, + 13172389309, + 13172389308 + ], + "geometry": [ + { "lat": 40.8602793, "lon": -74.0084050 }, + { "lat": 40.8602200, "lon": -74.0083748 }, + { "lat": 40.8601429, "lon": -74.0083078 }, + { "lat": 40.8601044, "lon": -74.0082192 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1433192442, + "bounds": { + "minlat": 40.8663983, + "minlon": -73.9988269, + "maxlat": 40.8666870, + "maxlon": -73.9980398 + }, + "nodes": [ + 2468165303, + 10940838081, + 10940838080, + 10940838073, + 103282409 + ], + "geometry": [ + { "lat": 40.8666870, "lon": -73.9988269 }, + { "lat": 40.8666582, "lon": -73.9987520 }, + { "lat": 40.8666143, "lon": -73.9986334 }, + { "lat": 40.8664464, "lon": -73.9981668 }, + { "lat": 40.8663983, "lon": -73.9980398 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Fort Lee Road", + "old_ref": "CR 12", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Fort Lee", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07605", + "tiger:zip_right": "07605" + } +}, +{ + "type": "way", + "id": 1433354238, + "bounds": { + "minlat": 40.8729472, + "minlon": -73.9896385, + "maxlat": 40.8733537, + "maxlon": -73.9893754 + }, + "nodes": [ + 13173640474, + 6117378526, + 6117378523 + ], + "geometry": [ + { "lat": 40.8733537, "lon": -73.9893754 }, + { "lat": 40.8730331, "lon": -73.9895886 }, + { "lat": 40.8729472, "lon": -73.9896385 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1433505939, + "bounds": { + "minlat": 40.7683099, + "minlon": -73.9071301, + "maxlat": 40.7687451, + "maxlon": -73.9047961 + }, + "nodes": [ + 42797312, + 42797307, + 13174827101, + 42797302, + 9179209252, + 13174827118, + 13174827117, + 13174827116, + 13174827115, + 13174827114, + 13174827113, + 13174827112, + 13174827111, + 13174827110, + 13174827109, + 13174827108, + 13174827107, + 13174827106, + 13174827105, + 13174827104, + 13174827103, + 13174827102, + 2433000859, + 13174827123 + ], + "geometry": [ + { "lat": 40.7683099, "lon": -73.9047961 }, + { "lat": 40.7683438, "lon": -73.9048522 }, + { "lat": 40.7683731, "lon": -73.9049048 }, + { "lat": 40.7684083, "lon": -73.9049749 }, + { "lat": 40.7684396, "lon": -73.9050420 }, + { "lat": 40.7684646, "lon": -73.9051026 }, + { "lat": 40.7684897, "lon": -73.9051709 }, + { "lat": 40.7685076, "lon": -73.9052343 }, + { "lat": 40.7685189, "lon": -73.9052929 }, + { "lat": 40.7685298, "lon": -73.9053565 }, + { "lat": 40.7685369, "lon": -73.9054322 }, + { "lat": 40.7685398, "lon": -73.9054997 }, + { "lat": 40.7685406, "lon": -73.9055961 }, + { "lat": 40.7685430, "lon": -73.9057194 }, + { "lat": 40.7685465, "lon": -73.9058233 }, + { "lat": 40.7685499, "lon": -73.9058797 }, + { "lat": 40.7685597, "lon": -73.9059718 }, + { "lat": 40.7685746, "lon": -73.9060802 }, + { "lat": 40.7685892, "lon": -73.9061836 }, + { "lat": 40.7686107, "lon": -73.9063106 }, + { "lat": 40.7686348, "lon": -73.9064324 }, + { "lat": 40.7686723, "lon": -73.9066281 }, + { "lat": 40.7687162, "lon": -73.9068374 }, + { "lat": 40.7687451, "lon": -73.9071301 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Brooklyn-Queens Expressway West", + "oneway": "yes", + "ref": "I 278", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1434018245, + "bounds": { + "minlat": 40.8424312, + "minlon": -73.9440335, + "maxlat": 40.8437003, + "maxlon": -73.9439673 + }, + "nodes": [ + 13165210890, + 7911399037, + 7911412122, + 7911399081, + 60927821, + 12458181291, + 2797042974, + 60927822, + 7911412126, + 7911412138, + 7911412093, + 60927823 + ], + "geometry": [ + { "lat": 40.8424312, "lon": -73.9440335 }, + { "lat": 40.8424851, "lon": -73.9440225 }, + { "lat": 40.8425913, "lon": -73.9440075 }, + { "lat": 40.8426965, "lon": -73.9440003 }, + { "lat": 40.8427838, "lon": -73.9439963 }, + { "lat": 40.8428336, "lon": -73.9439950 }, + { "lat": 40.8428942, "lon": -73.9439935 }, + { "lat": 40.8431837, "lon": -73.9439874 }, + { "lat": 40.8434555, "lon": -73.9439810 }, + { "lat": 40.8435625, "lon": -73.9439774 }, + { "lat": 40.8436666, "lon": -73.9439708 }, + { "lat": 40.8437003, "lon": -73.9439673 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "4", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1434166244, + "bounds": { + "minlat": 40.8481536, + "minlon": -73.9305375, + "maxlat": 40.8484618, + "maxlon": -73.9298332 + }, + "nodes": [ + 12179453666, + 12077232923, + 13181365215, + 42457437 + ], + "geometry": [ + { "lat": 40.8484618, "lon": -73.9305375 }, + { "lat": 40.8484405, "lon": -73.9304894 }, + { "lat": 40.8481735, "lon": -73.9298787 }, + { "lat": 40.8481536, "lon": -73.9298332 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "cycleway:left:separation": "jersey_barrier", + "highway": "residential", + "lanes": "2", + "name": "Laurel Hill Terrace", + "name_1": "W 182 St", + "name_2": "McNally Plaza", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1434166245, + "bounds": { + "minlat": 40.8486982, + "minlon": -73.9304689, + "maxlat": 40.8487998, + "maxlon": -73.9303946 + }, + "nodes": [ + 42442741, + 9566869990, + 4207702049 + ], + "geometry": [ + { "lat": 40.8486982, "lon": -73.9304689 }, + { "lat": 40.8487587, "lon": -73.9304247 }, + { "lat": 40.8487998, "lon": -73.9303946 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "secondary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1434395339, + "bounds": { + "minlat": 40.7338271, + "minlon": -73.9807369, + "maxlat": 40.7342488, + "maxlon": -73.9804425 + }, + "nodes": [ + 42437289, + 4298757024, + 8831369657 + ], + "geometry": [ + { "lat": 40.7338271, "lon": -73.9807369 }, + { "lat": 40.7338816, "lon": -73.9807002 }, + { "lat": 40.7342488, "lon": -73.9804425 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1434556347, + "bounds": { + "minlat": 40.8161517, + "minlon": -73.9272554, + "maxlat": 40.8162904, + "maxlon": -73.9267344 + }, + "nodes": [ + 13185592791, + 1658959860 + ], + "geometry": [ + { "lat": 40.8162904, "lon": -73.9272554 }, + { "lat": 40.8161517, "lon": -73.9267344 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "lit": "yes", + "name": "East 144th Street", + "sidewalk": "both", + "source:geometry": "Bing aerial imagery", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "144th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "yes", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "width": "12" + } +}, +{ + "type": "way", + "id": 1434556999, + "bounds": { + "minlat": 40.7720210, + "minlon": -73.9333198, + "maxlat": 40.7720464, + "maxlon": -73.9331631 + }, + "nodes": [ + 9650262373, + 6452924960, + 42824399 + ], + "geometry": [ + { "lat": 40.7720464, "lon": -73.9331631 }, + { "lat": 40.7720251, "lon": -73.9332532 }, + { "lat": 40.7720210, "lon": -73.9333198 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "8th Street" + } +}, +{ + "type": "way", + "id": 1434800643, + "bounds": { + "minlat": 40.7543513, + "minlon": -73.9181422, + "maxlat": 40.7544372, + "maxlon": -73.9179497 + }, + "nodes": [ + 13188236355, + 13657572762 + ], + "geometry": [ + { "lat": 40.7544372, "lon": -73.9181422 }, + { "lat": 40.7543513, "lon": -73.9179497 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1434896589, + "bounds": { + "minlat": 40.7337615, + "minlon": -73.9378712, + "maxlat": 40.7342114, + "maxlon": -73.9374154 + }, + "nodes": [ + 1056072094, + 9982697967, + 9982697961, + 42856261 + ], + "geometry": [ + { "lat": 40.7342114, "lon": -73.9378712 }, + { "lat": 40.7341958, "lon": -73.9378555 }, + { "lat": 40.7338216, "lon": -73.9374763 }, + { "lat": 40.7337615, "lon": -73.9374154 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "maxspeed": "25 mph", + "name": "Review Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1434906204, + "bounds": { + "minlat": 40.7189398, + "minlon": -73.9792730, + "maxlat": 40.7198786, + "maxlon": -73.9787920 + }, + "nodes": [ + 13189180814, + 3783073202, + 3783073271, + 42449874 + ], + "geometry": [ + { "lat": 40.7189398, "lon": -73.9792730 }, + { "lat": 40.7197501, "lon": -73.9788606 }, + { "lat": 40.7198001, "lon": -73.9788337 }, + { "lat": 40.7198786, "lon": -73.9787920 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "3", + "lanes:bus:forward": "1", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbia Street", + "name:ko": "콜럼비아 스트리트", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1434906205, + "bounds": { + "minlat": 40.7212770, + "minlon": -73.9777880, + "maxlat": 40.7224980, + "maxlon": -73.9768930 + }, + "nodes": [ + 42455396, + 8309479324, + 4301308557, + 11698864566, + 42453160, + 11698864565, + 4161569138, + 42444835 + ], + "geometry": [ + { "lat": 40.7212770, "lon": -73.9777880 }, + { "lat": 40.7213404, "lon": -73.9777417 }, + { "lat": 40.7213515, "lon": -73.9777339 }, + { "lat": 40.7218274, "lon": -73.9773879 }, + { "lat": 40.7218850, "lon": -73.9773460 }, + { "lat": 40.7219415, "lon": -73.9773043 }, + { "lat": 40.7224326, "lon": -73.9769417 }, + { "lat": 40.7224980, "lon": -73.9768930 } + ], + "tags": { + "alt_name:ko": "애비뉴 디", + "bus:lanes": "2", + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue D", + "name:ko": "애비뉴 D", + "name:ru": "Авеню D", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2873601", + "wikipedia": "en:Avenue D (Manhattan)" + } +}, +{ + "type": "way", + "id": 1434906206, + "bounds": { + "minlat": 40.7242830, + "minlon": -73.9755980, + "maxlat": 40.7248848, + "maxlon": -73.9751696 + }, + "nodes": [ + 42449038, + 4301308512, + 12179582420, + 4301308489, + 42430942 + ], + "geometry": [ + { "lat": 40.7242830, "lon": -73.9755980 }, + { "lat": 40.7243522, "lon": -73.9755475 }, + { "lat": 40.7247638, "lon": -73.9752578 }, + { "lat": 40.7248126, "lon": -73.9752223 }, + { "lat": 40.7248848, "lon": -73.9751696 } + ], + "tags": { + "alt_name:ko": "애비뉴 디", + "cycleway:both": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Avenue D", + "name:ko": "애비뉴 D", + "name:ru": "Авеню D", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q2873601", + "wikipedia": "en:Avenue D (Manhattan)" + } +}, +{ + "type": "way", + "id": 1434926674, + "bounds": { + "minlat": 40.8297545, + "minlon": -73.9393957, + "maxlat": 40.8300733, + "maxlon": -73.9386411 + }, + "nodes": [ + 589927880, + 13189290543 + ], + "geometry": [ + { "lat": 40.8297545, "lon": -73.9386411 }, + { "lat": 40.8300733, "lon": -73.9393957 } + ], + "tags": { + "highway": "residential", + "name": "West 155th Street (surface)", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1435795292, + "bounds": { + "minlat": 40.8420378, + "minlon": -74.0023149, + "maxlat": 40.8423749, + "maxlon": -74.0021034 + }, + "nodes": [ + 13196857681, + 13196857682, + 13196857683 + ], + "geometry": [ + { "lat": 40.8423749, "lon": -74.0021446 }, + { "lat": 40.8421448, "lon": -74.0023149 }, + { "lat": 40.8420378, "lon": -74.0021034 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1435977931, + "bounds": { + "minlat": 40.7698391, + "minlon": -73.9862330, + "maxlat": 40.7699078, + "maxlon": -73.9861828 + }, + "nodes": [ + 13198417092, + 13198417094, + 13198417093 + ], + "geometry": [ + { "lat": 40.7699078, "lon": -73.9861828 }, + { "lat": 40.7699030, "lon": -73.9861863 }, + { "lat": 40.7698391, "lon": -73.9862330 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1435977932, + "bounds": { + "minlat": 40.7697975, + "minlon": -73.9861329, + "maxlat": 40.7698661, + "maxlon": -73.9860839 + }, + "nodes": [ + 13198417095, + 13198417097, + 13198417096 + ], + "geometry": [ + { "lat": 40.7698661, "lon": -73.9860839 }, + { "lat": 40.7698611, "lon": -73.9860874 }, + { "lat": 40.7697975, "lon": -73.9861329 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1436065306, + "bounds": { + "minlat": 40.7531162, + "minlon": -73.9148018, + "maxlat": 40.7535452, + "maxlon": -73.9147119 + }, + "nodes": [ + 8088642724, + 7762273793, + 13199538709 + ], + "geometry": [ + { "lat": 40.7535452, "lon": -73.9147119 }, + { "lat": 40.7533939, "lon": -73.9147453 }, + { "lat": 40.7531162, "lon": -73.9148018 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "48th Street", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes": "left;slight_left|slight_right;right" + } +}, +{ + "type": "way", + "id": 1436065307, + "bounds": { + "minlat": 40.7535452, + "minlon": -73.9147119, + "maxlat": 40.7536576, + "maxlon": -73.9146838 + }, + "nodes": [ + 7622888739, + 8088642724 + ], + "geometry": [ + { "lat": 40.7536576, "lon": -73.9146838 }, + { "lat": 40.7535452, "lon": -73.9147119 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "48th Street", + "oneway": "no", + "sidewalk:both": "separate", + "smoothness": "good", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1436159764, + "bounds": { + "minlat": 40.6957135, + "minlon": -73.9066205, + "maxlat": 40.7003665, + "maxlon": -73.8992658 + }, + "nodes": [ + 42853145, + 5328241460, + 42899546, + 5328241467, + 5328241466, + 42830666, + 5328241473, + 5328241457, + 42907521, + 9801712914, + 42907526, + 9801712913, + 9801712874, + 42856053, + 9801712872, + 8389306688, + 8389306690, + 8389306681, + 9795578648, + 42888400, + 9795578650, + 13717894759, + 9795578666, + 42844965, + 9795578664, + 13006287838, + 9235909875, + 42814511, + 9235909873, + 8668274642, + 9235909867, + 42893941, + 9235909865, + 13006299130, + 6814312306, + 42907540, + 6814312310, + 9222649256, + 42903598, + 9225198424, + 42898244, + 11352016168 + ], + "geometry": [ + { "lat": 40.7003665, "lon": -73.9066205 }, + { "lat": 40.7001915, "lon": -73.9063290 }, + { "lat": 40.7001302, "lon": -73.9062195 }, + { "lat": 40.7000809, "lon": -73.9061238 }, + { "lat": 40.6999729, "lon": -73.9059539 }, + { "lat": 40.6999279, "lon": -73.9058776 }, + { "lat": 40.6998943, "lon": -73.9058180 }, + { "lat": 40.6997528, "lon": -73.9055772 }, + { "lat": 40.6997067, "lon": -73.9055028 }, + { "lat": 40.6993218, "lon": -73.9048542 }, + { "lat": 40.6992794, "lon": -73.9047826 }, + { "lat": 40.6992434, "lon": -73.9047221 }, + { "lat": 40.6989010, "lon": -73.9041431 }, + { "lat": 40.6988575, "lon": -73.9040695 }, + { "lat": 40.6988233, "lon": -73.9040116 }, + { "lat": 40.6987948, "lon": -73.9039634 }, + { "lat": 40.6986897, "lon": -73.9037858 }, + { "lat": 40.6985520, "lon": -73.9035530 }, + { "lat": 40.6984754, "lon": -73.9034209 }, + { "lat": 40.6984356, "lon": -73.9033564 }, + { "lat": 40.6984046, "lon": -73.9033040 }, + { "lat": 40.6982091, "lon": -73.9029735 }, + { "lat": 40.6980620, "lon": -73.9027249 }, + { "lat": 40.6980141, "lon": -73.9026439 }, + { "lat": 40.6979816, "lon": -73.9025890 }, + { "lat": 40.6978167, "lon": -73.9023120 }, + { "lat": 40.6976373, "lon": -73.9020104 }, + { "lat": 40.6975919, "lon": -73.9019301 }, + { "lat": 40.6975612, "lon": -73.9018790 }, + { "lat": 40.6973833, "lon": -73.9015777 }, + { "lat": 40.6972144, "lon": -73.9012916 }, + { "lat": 40.6971710, "lon": -73.9012190 }, + { "lat": 40.6971365, "lon": -73.9011646 }, + { "lat": 40.6969886, "lon": -73.9009185 }, + { "lat": 40.6967821, "lon": -73.9005749 }, + { "lat": 40.6967390, "lon": -73.9005030 }, + { "lat": 40.6966900, "lon": -73.9004417 }, + { "lat": 40.6962815, "lon": -73.8999452 }, + { "lat": 40.6962200, "lon": -73.8998700 }, + { "lat": 40.6961803, "lon": -73.8998221 }, + { "lat": 40.6957555, "lon": -73.8993155 }, + { "lat": 40.6957135, "lon": -73.8992658 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Cypress Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1436263393, + "bounds": { + "minlat": 40.7029715, + "minlon": -73.9846631, + "maxlat": 40.7030379, + "maxlon": -73.9827376 + }, + "nodes": [ + 42469362, + 10725916754, + 10722370732, + 10722370730, + 7707712195 + ], + "geometry": [ + { "lat": 40.7029715, "lon": -73.9827376 }, + { "lat": 40.7029747, "lon": -73.9828316 }, + { "lat": 40.7030333, "lon": -73.9845302 }, + { "lat": 40.7030354, "lon": -73.9845903 }, + { "lat": 40.7030379, "lon": -73.9846631 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Water Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Water", + "tiger:name_type": "St", + "tiger:zip_left": "11201", + "tiger:zip_right": "11201" + } +}, +{ + "type": "way", + "id": 1436265285, + "bounds": { + "minlat": 40.7150308, + "minlon": -73.9518359, + "maxlat": 40.7154256, + "maxlon": -73.9517730 + }, + "nodes": [ + 42476487, + 8702221557, + 10003855164, + 42476585 + ], + "geometry": [ + { "lat": 40.7150308, "lon": -73.9517730 }, + { "lat": 40.7150841, "lon": -73.9517815 }, + { "lat": 40.7153510, "lon": -73.9518240 }, + { "lat": 40.7154256, "lon": -73.9518359 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "oneway": "no", + "sidewalk:both": "separate", + "turn:lanes:backward": "left|through", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 1436265286, + "bounds": { + "minlat": 40.7162133, + "minlon": -73.9501614, + "maxlat": 40.7164744, + "maxlon": -73.9497643 + }, + "nodes": [ + 42476497, + 9942799072, + 42476503 + ], + "geometry": [ + { "lat": 40.7162133, "lon": -73.9501614 }, + { "lat": 40.7164110, "lon": -73.9498518 }, + { "lat": 40.7164744, "lon": -73.9497643 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Meeker Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1436345442, + "bounds": { + "minlat": 40.8552250, + "minlon": -73.9275475, + "maxlat": 40.8552940, + "maxlon": -73.9273686 + }, + "nodes": [ + 7953934609, + 13202021047, + 13202021046 + ], + "geometry": [ + { "lat": 40.8552250, "lon": -73.9273686 }, + { "lat": 40.8552571, "lon": -73.9274517 }, + { "lat": 40.8552940, "lon": -73.9275475 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1436614927, + "bounds": { + "minlat": 40.8514763, + "minlon": -73.9314735, + "maxlat": 40.8515791, + "maxlon": -73.9313902 + }, + "nodes": [ + 7134871407, + 8740550885, + 7134871414 + ], + "geometry": [ + { "lat": 40.8514763, "lon": -73.9314735 }, + { "lat": 40.8515502, "lon": -73.9314136 }, + { "lat": 40.8515791, "lon": -73.9313902 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1436635734, + "bounds": { + "minlat": 40.7763121, + "minlon": -73.9155886, + "maxlat": 40.7767943, + "maxlon": -73.9148961 + }, + "nodes": [ + 13204445329, + 13204445328, + 13204445327, + 13204445326 + ], + "geometry": [ + { "lat": 40.7767943, "lon": -73.9155886 }, + { "lat": 40.7767548, "lon": -73.9155278 }, + { "lat": 40.7763582, "lon": -73.9149571 }, + { "lat": 40.7763121, "lon": -73.9148961 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1436720326, + "bounds": { + "minlat": 40.8161478, + "minlon": -73.9177346, + "maxlat": 40.8163234, + "maxlon": -73.9176560 + }, + "nodes": [ + 13205118629, + 13199195433, + 6415815519, + 42761259 + ], + "geometry": [ + { "lat": 40.8163234, "lon": -73.9176560 }, + { "lat": 40.8162585, "lon": -73.9176851 }, + { "lat": 40.8162054, "lon": -73.9177089 }, + { "lat": 40.8161478, "lon": -73.9177346 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "lanes:bus:forward": "1", + "name": "Melrose Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Melrose", + "tiger:name_type": "Ave", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1436968821, + "bounds": { + "minlat": 40.8236119, + "minlon": -73.9459030, + "maxlat": 40.8236260, + "maxlon": -73.9458544 + }, + "nodes": [ + 42444853, + 13207206238 + ], + "geometry": [ + { "lat": 40.8236260, "lon": -73.9459030 }, + { "lat": 40.8236119, "lon": -73.9458544 } + ], + "tags": { + "highway": "residential", + "name": "West 144th Street", + "name_1": "West 144 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "144th", + "tiger:name_base_1": "144", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1436968822, + "bounds": { + "minlat": 40.8236119, + "minlon": -73.9467623, + "maxlat": 40.8239979, + "maxlon": -73.9458544 + }, + "nodes": [ + 13207206238, + 10743755852, + 42444854, + 13207206239 + ], + "geometry": [ + { "lat": 40.8236119, "lon": -73.9458544 }, + { "lat": 40.8239420, "lon": -73.9466318 }, + { "lat": 40.8239826, "lon": -73.9467254 }, + { "lat": 40.8239979, "lon": -73.9467623 } + ], + "tags": { + "alt_name": "Pat Jones Way", + "description": "This honorary street name memorializes Pat Jones.", + "highway": "residential", + "name": "West 144th Street", + "name_1": "West 144 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "144th", + "tiger:name_base_1": "144", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1436973097, + "bounds": { + "minlat": 40.8183904, + "minlon": -73.9508662, + "maxlat": 40.8184175, + "maxlon": -73.9508309 + }, + "nodes": [ + 42438839, + 13207198389 + ], + "geometry": [ + { "lat": 40.8183904, "lon": -73.9508662 }, + { "lat": 40.8184175, "lon": -73.9508309 } + ], + "tags": { + "bus:conditional": "designated @ (Mo-Fr 08:00-18:00)", + "highway": "tertiary", + "lanes": "2", + "motor_vehicle:conditional": "no @ (Mo-Fr 08:00-18:00)", + "name": "Convent Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1436973653, + "bounds": { + "minlat": 40.8214109, + "minlon": -73.9486012, + "maxlat": 40.8214914, + "maxlon": -73.9485390 + }, + "nodes": [ + 13207250451, + 8835729540, + 42427735 + ], + "geometry": [ + { "lat": 40.8214109, "lon": -73.9486012 }, + { "lat": 40.8214423, "lon": -73.9485789 }, + { "lat": 40.8214914, "lon": -73.9485390 } + ], + "tags": { + "bus:conditional": "designated @ (Mo-Fr 08:00-18:00)", + "highway": "tertiary", + "lanes": "2", + "motor_vehicle:conditional": "no @ (Mo-Fr 08:00-18:00)", + "name": "Convent Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1436973654, + "bounds": { + "minlat": 40.8205467, + "minlon": -73.9492246, + "maxlat": 40.8214109, + "maxlon": -73.9486012 + }, + "nodes": [ + 13207250452, + 2423522427, + 13207250451 + ], + "geometry": [ + { "lat": 40.8205467, "lon": -73.9492246 }, + { "lat": 40.8208627, "lon": -73.9489904 }, + { "lat": 40.8214109, "lon": -73.9486012 } + ], + "tags": { + "alt_name": "Gen. Colin Powell Way", + "bus:conditional": "designated @ (Mo-Fr 08:00-18:00)", + "description": "This honorary street name memorializes Colin Luther Powell.", + "highway": "tertiary", + "lanes": "2", + "motor_vehicle:conditional": "no @ (Mo-Fr 08:00-18:00)", + "name": "Convent Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1437036000, + "bounds": { + "minlat": 40.7695371, + "minlon": -73.9888481, + "maxlat": 40.7699815, + "maxlon": -73.9885223 + }, + "nodes": [ + 13207929584, + 13207929585, + 13207929587, + 13207929586 + ], + "geometry": [ + { "lat": 40.7699815, "lon": -73.9885223 }, + { "lat": 40.7699275, "lon": -73.9885630 }, + { "lat": 40.7699074, "lon": -73.9885777 }, + { "lat": 40.7695371, "lon": -73.9888481 } + ], + "tags": { + "highway": "service", + "service": "alley", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1437036002, + "bounds": { + "minlat": 40.7693448, + "minlon": -73.9890978, + "maxlat": 40.7694670, + "maxlon": -73.9890087 + }, + "nodes": [ + 13207929593, + 13207929594, + 13207929595 + ], + "geometry": [ + { "lat": 40.7694670, "lon": -73.9890087 }, + { "lat": 40.7694452, "lon": -73.9890244 }, + { "lat": 40.7693448, "lon": -73.9890978 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1437044924, + "bounds": { + "minlat": 40.7719413, + "minlon": -73.9825564, + "maxlat": 40.7720392, + "maxlon": -73.9824534 + }, + "nodes": [ + 13208006988, + 13208006996, + 13208006989, + 13208007000, + 13208006990, + 13208006997, + 13208006991, + 13208006988 + ], + "geometry": [ + { "lat": 40.7719598, "lon": -73.9825564 }, + { "lat": 40.7720001, "lon": -73.9825285 }, + { "lat": 40.7720392, "lon": -73.9825016 }, + { "lat": 40.7720351, "lon": -73.9824774 }, + { "lat": 40.7720311, "lon": -73.9824534 }, + { "lat": 40.7719871, "lon": -73.9824543 }, + { "lat": 40.7719413, "lon": -73.9824552 }, + { "lat": 40.7719598, "lon": -73.9825564 } + ], + "tags": { + "area": "yes", + "colour": "gray", + "highway": "pedestrian", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1437064246, + "bounds": { + "minlat": 40.8459494, + "minlon": -73.9171411, + "maxlat": 40.8460665, + "maxlon": -73.9171167 + }, + "nodes": [ + 2327435586, + 12046904932, + 12046904933, + 12046904934, + 2907939288 + ], + "geometry": [ + { "lat": 40.8459494, "lon": -73.9171411 }, + { "lat": 40.8459803, "lon": -73.9171404 }, + { "lat": 40.8460041, "lon": -73.9171376 }, + { "lat": 40.8460273, "lon": -73.9171334 }, + { "lat": 40.8460665, "lon": -73.9171167 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1442110594, + "bounds": { + "minlat": 40.8418790, + "minlon": -73.9179816, + "maxlat": 40.8424648, + "maxlon": -73.9179520 + }, + "nodes": [ + 13232527784, + 42770671, + 13247275895, + 42740204 + ], + "geometry": [ + { "lat": 40.8424648, "lon": -73.9179816 }, + { "lat": 40.8422394, "lon": -73.9179749 }, + { "lat": 40.8419987, "lon": -73.9179623 }, + { "lat": 40.8418790, "lon": -73.9179520 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1442110595, + "bounds": { + "minlat": 40.8424648, + "minlon": -73.9179873, + "maxlat": 40.8426546, + "maxlon": -73.9179816 + }, + "nodes": [ + 1377427134, + 13232527784 + ], + "geometry": [ + { "lat": 40.8426546, "lon": -73.9179873 }, + { "lat": 40.8424648, "lon": -73.9179816 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453", + "turn:lanes:backward": "left|none" + } +}, +{ + "type": "way", + "id": 1442122904, + "bounds": { + "minlat": 40.8069717, + "minlon": -73.9548064, + "maxlat": 40.8070404, + "maxlon": -73.9547554 + }, + "nodes": [ + 13232597974, + 13232597973 + ], + "geometry": [ + { "lat": 40.8069717, "lon": -73.9548064 }, + { "lat": 40.8070404, "lon": -73.9547554 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1442122905, + "bounds": { + "minlat": 40.8069171, + "minlon": -73.9548469, + "maxlat": 40.8069717, + "maxlon": -73.9548064 + }, + "nodes": [ + 13232597975, + 13232597974 + ], + "geometry": [ + { "lat": 40.8069171, "lon": -73.9548469 }, + { "lat": 40.8069717, "lon": -73.9548064 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1442122906, + "bounds": { + "minlat": 40.8067727, + "minlon": -73.9549541, + "maxlat": 40.8069171, + "maxlon": -73.9548469 + }, + "nodes": [ + 13232597977, + 13232597976, + 13232597975 + ], + "geometry": [ + { "lat": 40.8067727, "lon": -73.9549541 }, + { "lat": 40.8068311, "lon": -73.9549108 }, + { "lat": 40.8069171, "lon": -73.9548469 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1442127881, + "bounds": { + "minlat": 40.8278614, + "minlon": -73.9092907, + "maxlat": 40.8280101, + "maxlon": -73.9088082 + }, + "nodes": [ + 13232694531, + 13232694530, + 13232694529 + ], + "geometry": [ + { "lat": 40.8278614, "lon": -73.9088082 }, + { "lat": 40.8278913, "lon": -73.9089040 }, + { "lat": 40.8280101, "lon": -73.9092907 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1442186945, + "bounds": { + "minlat": 40.7175221, + "minlon": -73.9973097, + "maxlat": 40.7175504, + "maxlon": -73.9972270 + }, + "nodes": [ + 13233178429, + 13327557301, + 13233178428 + ], + "geometry": [ + { "lat": 40.7175221, "lon": -73.9972270 }, + { "lat": 40.7175293, "lon": -73.9972481 }, + { "lat": 40.7175504, "lon": -73.9973097 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1442194723, + "bounds": { + "minlat": 40.7605731, + "minlon": -73.9643559, + "maxlat": 40.7606212, + "maxlon": -73.9642429 + }, + "nodes": [ + 42424089, + 12899699290 + ], + "geometry": [ + { "lat": 40.7606212, "lon": -73.9643559 }, + { "lat": 40.7605731, "lon": -73.9642429 } + ], + "tags": { + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1442194725, + "bounds": { + "minlat": 40.7605566, + "minlon": -73.9642429, + "maxlat": 40.7605731, + "maxlon": -73.9642041 + }, + "nodes": [ + 12899699290, + 13233288350 + ], + "geometry": [ + { "lat": 40.7605731, "lon": -73.9642429 }, + { "lat": 40.7605566, "lon": -73.9642041 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1442249232, + "bounds": { + "minlat": 40.7644791, + "minlon": -73.9823644, + "maxlat": 40.7654683, + "maxlon": -73.9820384 + }, + "nodes": [ + 42428328, + 8785244279, + 3463816119, + 42428321, + 9140929833, + 3463816116, + 11772036952 + ], + "geometry": [ + { "lat": 40.7654683, "lon": -73.9820384 }, + { "lat": 40.7654173, "lon": -73.9820552 }, + { "lat": 40.7648330, "lon": -73.9822351 }, + { "lat": 40.7647849, "lon": -73.9822551 }, + { "lat": 40.7647266, "lon": -73.9822753 }, + { "lat": 40.7646939, "lon": -73.9822866 }, + { "lat": 40.7644791, "lon": -73.9823644 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1442249233, + "bounds": { + "minlat": 40.7654356, + "minlon": -73.9820384, + "maxlat": 40.7654683, + "maxlon": -73.9819507 + }, + "nodes": [ + 42428328, + 4544455460 + ], + "geometry": [ + { "lat": 40.7654683, "lon": -73.9820384 }, + { "lat": 40.7654356, "lon": -73.9819507 } + ], + "tags": { + "alt_name": "West 56 Street", + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 56th Street", + "name:ru": "Западная 56-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1442249234, + "bounds": { + "minlat": 40.7622903, + "minlon": -73.9819507, + "maxlat": 40.7654356, + "maxlon": -73.9744717 + }, + "nodes": [ + 4544455460, + 1792535230, + 2653473644, + 10170864625, + 42431549, + 10170864622, + 5589483389, + 4544486782, + 3932923804, + 1814471103, + 4544486781, + 10003982621, + 10023117064, + 10003982623, + 10171655539, + 42430378, + 10171655536, + 8457002452, + 8457002448, + 8457002450, + 10171655546, + 42431544 + ], + "geometry": [ + { "lat": 40.7654356, "lon": -73.9819507 }, + { "lat": 40.7654003, "lon": -73.9818669 }, + { "lat": 40.7651899, "lon": -73.9813679 }, + { "lat": 40.7648836, "lon": -73.9806459 }, + { "lat": 40.7648393, "lon": -73.9805314 }, + { "lat": 40.7647849, "lon": -73.9803998 }, + { "lat": 40.7644992, "lon": -73.9797091 }, + { "lat": 40.7644623, "lon": -73.9796200 }, + { "lat": 40.7644138, "lon": -73.9795044 }, + { "lat": 40.7643818, "lon": -73.9794282 }, + { "lat": 40.7643469, "lon": -73.9793456 }, + { "lat": 40.7641716, "lon": -73.9789302 }, + { "lat": 40.7641489, "lon": -73.9788765 }, + { "lat": 40.7639072, "lon": -73.9783036 }, + { "lat": 40.7637042, "lon": -73.9778226 }, + { "lat": 40.7636495, "lon": -73.9776930 }, + { "lat": 40.7635973, "lon": -73.9775686 }, + { "lat": 40.7634634, "lon": -73.9772495 }, + { "lat": 40.7633124, "lon": -73.9768898 }, + { "lat": 40.7631134, "lon": -73.9764158 }, + { "lat": 40.7623461, "lon": -73.9746035 }, + { "lat": 40.7622903, "lon": -73.9744717 } + ], + "tags": { + "alt_name": "West 56 Street", + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "name": "West 56th Street", + "name:ru": "Западная 56-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1442249235, + "bounds": { + "minlat": 40.7654683, + "minlon": -73.9820384, + "maxlat": 40.7656840, + "maxlon": -73.9820004 + }, + "nodes": [ + 13233711092, + 8785244272, + 42428328 + ], + "geometry": [ + { "lat": 40.7656840, "lon": -73.9820004 }, + { "lat": 40.7655656, "lon": -73.9820209 }, + { "lat": 40.7654683, "lon": -73.9820384 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "2", + "lit": "yes", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1442261734, + "bounds": { + "minlat": 40.7346851, + "minlon": -73.9385695, + "maxlat": 40.7349656, + "maxlon": -73.9383877 + }, + "nodes": [ + 9982697972, + 9982697971, + 42856255 + ], + "geometry": [ + { "lat": 40.7346851, "lon": -73.9383877 }, + { "lat": 40.7347611, "lon": -73.9384405 }, + { "lat": 40.7349656, "lon": -73.9385695 } + ], + "tags": { + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Review Avenue", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1442271864, + "bounds": { + "minlat": 40.8776157, + "minlon": -73.9764952, + "maxlat": 40.8778301, + "maxlon": -73.9763467 + }, + "nodes": [ + 13233957983, + 103224138 + ], + "geometry": [ + { "lat": 40.8776157, "lon": -73.9764952 }, + { "lat": 40.8778301, "lon": -73.9763467 } + ], + "tags": { + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxheight:signed": "no", + "maxspeed": "25 mph", + "name": "Broad Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|none" + } +}, +{ + "type": "way", + "id": 1442277748, + "bounds": { + "minlat": 40.7516974, + "minlon": -73.9137132, + "maxlat": 40.7518164, + "maxlon": -73.9129313 + }, + "nodes": [ + 2883385967, + 13234010393 + ], + "geometry": [ + { "lat": 40.7518164, "lon": -73.9137132 }, + { "lat": 40.7516974, "lon": -73.9129313 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1442277749, + "bounds": { + "minlat": 40.7515810, + "minlon": -73.9138487, + "maxlat": 40.7516805, + "maxlon": -73.9133317 + }, + "nodes": [ + 13234010394, + 13234010395 + ], + "geometry": [ + { "lat": 40.7516805, "lon": -73.9138487 }, + { "lat": 40.7515810, "lon": -73.9133317 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1442288303, + "bounds": { + "minlat": 40.7003584, + "minlon": -73.9117851, + "maxlat": 40.7004835, + "maxlon": -73.9115699 + }, + "nodes": [ + 5482368598, + 13234125758 + ], + "geometry": [ + { "lat": 40.7004835, "lon": -73.9117851 }, + { "lat": 40.7003584, "lon": -73.9115699 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1442311187, + "bounds": { + "minlat": 40.7277972, + "minlon": -73.9782783, + "maxlat": 40.7279059, + "maxlon": -73.9782007 + }, + "nodes": [ + 4502505660, + 13234335172, + 13234335171 + ], + "geometry": [ + { "lat": 40.7279059, "lon": -73.9782007 }, + { "lat": 40.7278537, "lon": -73.9782370 }, + { "lat": 40.7277972, "lon": -73.9782783 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1442425228, + "bounds": { + "minlat": 40.8498950, + "minlon": -73.9337651, + "maxlat": 40.8500868, + "maxlon": -73.9333100 + }, + "nodes": [ + 42433068, + 5403873756, + 13235111894 + ], + "geometry": [ + { "lat": 40.8498950, "lon": -73.9333100 }, + { "lat": 40.8499495, "lon": -73.9334390 }, + { "lat": 40.8500868, "lon": -73.9337651 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 182nd Street", + "name_1": "West 182 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "182nd", + "tiger:name_base_1": "182", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1442446615, + "bounds": { + "minlat": 40.8068469, + "minlon": -73.9286563, + "maxlat": 40.8073764, + "maxlon": -73.9274987 + }, + "nodes": [ + 42732842, + 13885449558, + 11882279743, + 13885449555, + 13146124223 + ], + "geometry": [ + { "lat": 40.8068469, "lon": -73.9274987 }, + { "lat": 40.8069174, "lon": -73.9275929 }, + { "lat": 40.8069508, "lon": -73.9276375 }, + { "lat": 40.8073371, "lon": -73.9285513 }, + { "lat": 40.8073764, "lon": -73.9286563 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1442446616, + "bounds": { + "minlat": 40.8073119, + "minlon": -73.9296056, + "maxlat": 40.8076602, + "maxlon": -73.9287055 + }, + "nodes": [ + 13235287684, + 13235287688, + 13235287686, + 13235287687 + ], + "geometry": [ + { "lat": 40.8076602, "lon": -73.9296056 }, + { "lat": 40.8076143, "lon": -73.9294463 }, + { "lat": 40.8073539, "lon": -73.9288040 }, + { "lat": 40.8073119, "lon": -73.9287055 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:foot": "designated", + "cycleway:right:oneway": "no", + "cycleway:right:segregated": "no", + "cycleway:right:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1442446617, + "bounds": { + "minlat": 40.8068469, + "minlon": -73.9287055, + "maxlat": 40.8073119, + "maxlon": -73.9274987 + }, + "nodes": [ + 13235287687, + 13522465049, + 13522465048, + 13522465051, + 13885449559, + 42732842 + ], + "geometry": [ + { "lat": 40.8073119, "lon": -73.9287055 }, + { "lat": 40.8070897, "lon": -73.9282076 }, + { "lat": 40.8070524, "lon": -73.9281215 }, + { "lat": 40.8068743, "lon": -73.9276886 }, + { "lat": 40.8068656, "lon": -73.9276285 }, + { "lat": 40.8068469, "lon": -73.9274987 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1442446618, + "bounds": { + "minlat": 40.8076602, + "minlon": -73.9296056, + "maxlat": 40.8077491, + "maxlon": -73.9295356 + }, + "nodes": [ + 42749813, + 13235287684 + ], + "geometry": [ + { "lat": 40.8077491, "lon": -73.9295356 }, + { "lat": 40.8076602, "lon": -73.9296056 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Lincoln Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Lincoln", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes:forward": "|right" + } +}, +{ + "type": "way", + "id": 1442524687, + "bounds": { + "minlat": 40.7377164, + "minlon": -73.9882046, + "maxlat": 40.7377527, + "maxlon": -73.9881184 + }, + "nodes": [ + 42456543, + 4597668038 + ], + "geometry": [ + { "lat": 40.7377164, "lon": -73.9881184 }, + { "lat": 40.7377527, "lon": -73.9882046 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 19th Street", + "name:ru": "Восточная 19-я стрит", + "name_1": "East 19 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1442592236, + "bounds": { + "minlat": 40.7611457, + "minlon": -73.9259701, + "maxlat": 40.7612423, + "maxlon": -73.9257437 + }, + "nodes": [ + 13236585110, + 13236585111, + 5488250136 + ], + "geometry": [ + { "lat": 40.7612423, "lon": -73.9259701 }, + { "lat": 40.7611923, "lon": -73.9258509 }, + { "lat": 40.7611457, "lon": -73.9257437 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1442598460, + "bounds": { + "minlat": 40.8216450, + "minlon": -73.9918061, + "maxlat": 40.8220267, + "maxlon": -73.9911080 + }, + "nodes": [ + 13236613736, + 6863208962, + 7576366439, + 440208184 + ], + "geometry": [ + { "lat": 40.8216450, "lon": -73.9911080 }, + { "lat": 40.8217391, "lon": -73.9912873 }, + { "lat": 40.8217836, "lon": -73.9913677 }, + { "lat": 40.8220267, "lon": -73.9918061 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "name": "Edgewater Road", + "ref": "CR 50", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd;Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022;07657", + "tiger:zip_right": "07010;07657" + } +}, +{ + "type": "way", + "id": 1442598461, + "bounds": { + "minlat": 40.8214915, + "minlon": -73.9911080, + "maxlat": 40.8216450, + "maxlon": -73.9908158 + }, + "nodes": [ + 440208183, + 13236613736 + ], + "geometry": [ + { "lat": 40.8214915, "lon": -73.9908158 }, + { "lat": 40.8216450, "lon": -73.9911080 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "lanes": "4", + "lanes:backward": "3", + "lanes:forward": "1", + "name": "Edgewater Road", + "ref": "CR 50", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd;Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022;07657", + "tiger:zip_right": "07010;07657", + "turn:lanes:backward": "left|through|right" + } +}, +{ + "type": "way", + "id": 1442636895, + "bounds": { + "minlat": 40.8244894, + "minlon": -73.9966873, + "maxlat": 40.8247641, + "maxlon": -73.9961901 + }, + "nodes": [ + 7564371965, + 7564371959, + 103209153, + 13236949817 + ], + "geometry": [ + { "lat": 40.8244894, "lon": -73.9961901 }, + { "lat": 40.8245069, "lon": -73.9962183 }, + { "lat": 40.8245583, "lon": -73.9963109 }, + { "lat": 40.8247641, "lon": -73.9966873 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "name": "Edgewater Avenue", + "ref": "CR 50", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd;Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022;07657", + "tiger:zip_right": "07010;07657" + } +}, +{ + "type": "way", + "id": 1442636896, + "bounds": { + "minlat": 40.8247641, + "minlon": -73.9970929, + "maxlat": 40.8249858, + "maxlon": -73.9966873 + }, + "nodes": [ + 13236949817, + 103147955 + ], + "geometry": [ + { "lat": 40.8247641, "lon": -73.9966873 }, + { "lat": 40.8249858, "lon": -73.9970929 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Edgewater Avenue", + "ref": "CR 50", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Rd;Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022;07657", + "tiger:zip_right": "07010;07657", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1442718758, + "bounds": { + "minlat": 40.7449830, + "minlon": -73.9383302, + "maxlat": 40.7450576, + "maxlon": -73.9382985 + }, + "nodes": [ + 42833283, + 8991509382 + ], + "geometry": [ + { "lat": 40.7450576, "lon": -73.9383302 }, + { "lat": 40.7449830, "lon": -73.9382985 } + ], + "tags": { + "access": "no", + "highway": "service", + "service": "emergency_access" + } +}, +{ + "type": "way", + "id": 1442718759, + "bounds": { + "minlat": 40.7434167, + "minlon": -73.9385783, + "maxlat": 40.7435058, + "maxlon": -73.9385609 + }, + "nodes": [ + 42833287, + 10081023573 + ], + "geometry": [ + { "lat": 40.7434167, "lon": -73.9385783 }, + { "lat": 40.7435058, "lon": -73.9385609 } + ], + "tags": { + "access": "no", + "highway": "service", + "name": "29th Street", + "service": "emergency_access", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1442719401, + "bounds": { + "minlat": 40.7505828, + "minlon": -73.9407725, + "maxlat": 40.7507793, + "maxlon": -73.9405039 + }, + "nodes": [ + 12834567789, + 3785648053, + 2969267802, + 2089938126, + 592643542, + 3785648054, + 13238052978, + 3785669490 + ], + "geometry": [ + { "lat": 40.7507793, "lon": -73.9407725 }, + { "lat": 40.7507604, "lon": -73.9407530 }, + { "lat": 40.7507395, "lon": -73.9407342 }, + { "lat": 40.7507018, "lon": -73.9407018 }, + { "lat": 40.7506366, "lon": -73.9406436 }, + { "lat": 40.7505828, "lon": -73.9405892 }, + { "lat": 40.7506063, "lon": -73.9405386 }, + { "lat": 40.7506234, "lon": -73.9405039 } + ], + "tags": { + "access": "no", + "emergency": "yes", + "highway": "service", + "lanes": "1", + "maxheight": "below_default", + "name": "Queensboro Bridge Outer Roadway", + "service": "emergency_access", + "sidewalk:both": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1442845310, + "bounds": { + "minlat": 40.8434216, + "minlon": -73.9416342, + "maxlat": 40.8434507, + "maxlon": -73.9415677 + }, + "nodes": [ + 13239206675, + 42427143 + ], + "geometry": [ + { "lat": 40.8434216, "lon": -73.9415677 }, + { "lat": 40.8434507, "lon": -73.9416342 } + ], + "tags": { + "bicycle": "use_sidepath", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 170th Street", + "name_1": "West 170 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "170th", + "tiger:name_base_1": "170", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1442845311, + "bounds": { + "minlat": 40.8424468, + "minlon": -73.9393514, + "maxlat": 40.8424880, + "maxlon": -73.9392536 + }, + "nodes": [ + 42428984, + 13239206676 + ], + "geometry": [ + { "lat": 40.8424468, "lon": -73.9392536 }, + { "lat": 40.8424880, "lon": -73.9393514 } + ], + "tags": { + "bicycle": "use_sidepath", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 170th Street", + "name_1": "West 170 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "170th", + "tiger:name_base_1": "170", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1442850426, + "bounds": { + "minlat": 40.8401941, + "minlon": -73.9430682, + "maxlat": 40.8402359, + "maxlon": -73.9430518 + }, + "nodes": [ + 13239244160, + 42427133 + ], + "geometry": [ + { "lat": 40.8402359, "lon": -73.9430518 }, + { "lat": 40.8401941, "lon": -73.9430682 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "highway": "secondary", + "lanes": "2", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 1442850427, + "bounds": { + "minlat": 40.8421172, + "minlon": -73.9423007, + "maxlat": 40.8421541, + "maxlon": -73.9422847 + }, + "nodes": [ + 42427136, + 13239244162 + ], + "geometry": [ + { "lat": 40.8421541, "lon": -73.9422847 }, + { "lat": 40.8421172, "lon": -73.9423007 } + ], + "tags": { + "alt_name": "Irving Cancer Center Way", + "bicycle": "yes", + "cycleway": "shared_lane", + "description": "The Herbert Irving Comprehensive Cancer Center at New York Presbyterian Hospital provides state of the art care for patients with various types of cancer, as well as supporting community programs, such as providing free mammograms for uninsured women. Flo", + "highway": "secondary", + "historic": "memorial", + "lanes": "2", + "name": "Fort Washington Avenue", + "name:etymology:wikidata": "Q1438808", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Fort Washington", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q5472255", + "wikipedia": "en:Fort Washington Avenue" + } +}, +{ + "type": "way", + "id": 1442853477, + "bounds": { + "minlat": 40.8371038, + "minlon": -73.9466166, + "maxlat": 40.8380528, + "maxlon": -73.9443615 + }, + "nodes": [ + 13239260080, + 9935939367, + 2499827810, + 9935939352, + 13239260081 + ], + "geometry": [ + { "lat": 40.8371038, "lon": -73.9443615 }, + { "lat": 40.8371235, "lon": -73.9444085 }, + { "lat": 40.8380240, "lon": -73.9465588 }, + { "lat": 40.8380380, "lon": -73.9465923 }, + { "lat": 40.8380528, "lon": -73.9466166 } + ], + "tags": { + "alt_name": "Agripina Núñez Way", + "description": "Agripina Núñez immigrated to the United States in 1975. She was a parishioner of the Our Lady of Esperanza Church in Manhattan for 44 years and was very involved in causes for the poor and underserved communities. She served as president of the 894 Rivers", + "highway": "residential", + "historic": "memorial", + "name": "West 161st Street", + "name_1": "West 161 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "161st", + "tiger:name_base_1": "161", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1442853478, + "bounds": { + "minlat": 40.8380528, + "minlon": -73.9466482, + "maxlat": 40.8380720, + "maxlon": -73.9466166 + }, + "nodes": [ + 13239260081, + 42441695 + ], + "geometry": [ + { "lat": 40.8380528, "lon": -73.9466166 }, + { "lat": 40.8380720, "lon": -73.9466482 } + ], + "tags": { + "alt_name": "Agripina Núñez Way", + "description": "Agripina Núñez immigrated to the United States in 1975. She was a parishioner of the Our Lady of Esperanza Church in Manhattan for 44 years and was very involved in causes for the poor and underserved communities. She served as president of the 894 Rivers", + "highway": "residential", + "historic": "memorial", + "name": "West 161st Street", + "name_1": "West 161 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "161st", + "tiger:name_base_1": "161", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1442853595, + "bounds": { + "minlat": 40.8236550, + "minlon": -73.9438857, + "maxlat": 40.8236699, + "maxlon": -73.9438503 + }, + "nodes": [ + 42434255, + 13239270566 + ], + "geometry": [ + { "lat": 40.8236550, "lon": -73.9438503 }, + { "lat": 40.8236699, "lon": -73.9438857 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 145th Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "h", + "tiger:name_base": "145th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031", + "width": "18", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1442853596, + "bounds": { + "minlat": 40.8270529, + "minlon": -73.9519675, + "maxlat": 40.8270687, + "maxlon": -73.9519225 + }, + "nodes": [ + 13239270567, + 12952282858 + ], + "geometry": [ + { "lat": 40.8270529, "lon": -73.9519225 }, + { "lat": 40.8270687, "lon": -73.9519675 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "incline": "down", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 145th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "145th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1442853597, + "bounds": { + "minlat": 40.8264034, + "minlon": -73.9503917, + "maxlat": 40.8264166, + "maxlon": -73.9503603 + }, + "nodes": [ + 561035361, + 13239270568 + ], + "geometry": [ + { "lat": 40.8264034, "lon": -73.9503603 }, + { "lat": 40.8264166, "lon": -73.9503917 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "West 145th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "h", + "tiger:name_base": "145th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031", + "wikidata": "Q4549790", + "wikipedia": "en:145th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1442855389, + "bounds": { + "minlat": 40.8287360, + "minlon": -73.9422657, + "maxlat": 40.8287535, + "maxlon": -73.9422240 + }, + "nodes": [ + 13239310711, + 2504882506 + ], + "geometry": [ + { "lat": 40.8287535, "lon": -73.9422657 }, + { "lat": 40.8287360, "lon": -73.9422240 } + ], + "tags": { + "alt_name": "West 152 Street", + "highway": "residential", + "name": "West 152nd Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1442855390, + "bounds": { + "minlat": 40.8296262, + "minlon": -73.9443743, + "maxlat": 40.8296401, + "maxlon": -73.9443412 + }, + "nodes": [ + 42442642, + 13239310712 + ], + "geometry": [ + { "lat": 40.8296401, "lon": -73.9443743 }, + { "lat": 40.8296262, "lon": -73.9443412 } + ], + "tags": { + "alt_name": "West 152 Street", + "alt_name_1": "Dance Theatre of Harlem Way", + "description": "This honorary street name memorializes Dance Theatre of Harlem.", + "highway": "residential", + "name": "West 152nd Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1442856571, + "bounds": { + "minlat": 40.8510755, + "minlon": -73.9336670, + "maxlat": 40.8516150, + "maxlon": -73.9323867 + }, + "nodes": [ + 42449641, + 9563795508, + 5403873747, + 42433072, + 13239275989 + ], + "geometry": [ + { "lat": 40.8516150, "lon": -73.9336670 }, + { "lat": 40.8515793, "lon": -73.9335822 }, + { "lat": 40.8511492, "lon": -73.9325615 }, + { "lat": 40.8510950, "lon": -73.9324330 }, + { "lat": 40.8510755, "lon": -73.9323867 } + ], + "tags": { + "highway": "residential", + "name": "West 184th Street", + "name_1": "West 184 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "184th", + "tiger:name_base_1": "184", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1442856572, + "bounds": { + "minlat": 40.8505246, + "minlon": -73.9323867, + "maxlat": 40.8510755, + "maxlon": -73.9310800 + }, + "nodes": [ + 13239275989, + 5403873749, + 9566869971, + 13239275990 + ], + "geometry": [ + { "lat": 40.8510755, "lon": -73.9323867 }, + { "lat": 40.8510483, "lon": -73.9323222 }, + { "lat": 40.8505510, "lon": -73.9311425 }, + { "lat": 40.8505246, "lon": -73.9310800 } + ], + "tags": { + "alt_name": "Luis M. Beltre Place", + "description": "Louis M. Beltre was born on April 11, 1975 in New York City to Altagracia and Manuel Beltre. He was raised on 184th Street in Washington Heights, from where he attended John F. Kennedy High School in The Bronx. After high school, Louis continued his educa", + "highway": "residential", + "historic": "memorial", + "name": "West 184th Street", + "name_1": "West 184 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "184th", + "tiger:name_base_1": "184", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1442857277, + "bounds": { + "minlat": 40.8307872, + "minlon": -73.9471314, + "maxlat": 40.8308032, + "maxlon": -73.9470934 + }, + "nodes": [ + 561035368, + 13239330544 + ], + "geometry": [ + { "lat": 40.8308032, "lon": -73.9471314 }, + { "lat": 40.8307872, "lon": -73.9470934 } + ], + "tags": { + "highway": "residential", + "name": "West 152nd Street", + "name_1": "West 152 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "152nd", + "tiger:name_base_1": "152", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1442857278, + "bounds": { + "minlat": 40.8296401, + "minlon": -73.9444226, + "maxlat": 40.8296605, + "maxlon": -73.9443743 + }, + "nodes": [ + 13239330545, + 42442642 + ], + "geometry": [ + { "lat": 40.8296605, "lon": -73.9444226 }, + { "lat": 40.8296401, "lon": -73.9443743 } + ], + "tags": { + "alt_name": "Mildred Sutherland Way", + "description": "This honorary street name memorializes Mildred Sutherland.", + "highway": "residential", + "name": "West 152nd Street", + "name_1": "West 152 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "152nd", + "tiger:name_base_1": "152", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1442865935, + "bounds": { + "minlat": 40.8001169, + "minlon": -73.9376942, + "maxlat": 40.8011427, + "maxlon": -73.9352513 + }, + "nodes": [ + 3931534870, + 42443096, + 7927319043, + 5482291249, + 11273617106, + 42450080 + ], + "geometry": [ + { "lat": 40.8001169, "lon": -73.9352513 }, + { "lat": 40.8001963, "lon": -73.9354447 }, + { "lat": 40.8002553, "lon": -73.9355853 }, + { "lat": 40.8004913, "lon": -73.9361425 }, + { "lat": 40.8010858, "lon": -73.9375587 }, + { "lat": 40.8011427, "lon": -73.9376942 } + ], + "tags": { + "highway": "residential", + "name": "East 121st Street", + "name_1": "East 121 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1442865936, + "bounds": { + "minlat": 40.8011427, + "minlon": -73.9376942, + "maxlat": 40.8023970, + "maxlon": -73.9367700 + }, + "nodes": [ + 42450080, + 11273617108, + 11273617100, + 42445196, + 11273617099, + 11273617104, + 42450083 + ], + "geometry": [ + { "lat": 40.8011427, "lon": -73.9376942 }, + { "lat": 40.8011989, "lon": -73.9376529 }, + { "lat": 40.8017155, "lon": -73.9372727 }, + { "lat": 40.8017666, "lon": -73.9372351 }, + { "lat": 40.8018284, "lon": -73.9371895 }, + { "lat": 40.8023441, "lon": -73.9368090 }, + { "lat": 40.8023970, "lon": -73.9367700 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1442865937, + "bounds": { + "minlat": 40.8023970, + "minlon": -73.9367700, + "maxlat": 40.8030279, + "maxlon": -73.9363134 + }, + "nodes": [ + 42450083, + 11273617103, + 10169411229, + 42438774 + ], + "geometry": [ + { "lat": 40.8023970, "lon": -73.9367700 }, + { "lat": 40.8024561, "lon": -73.9367272 }, + { "lat": 40.8029759, "lon": -73.9363511 }, + { "lat": 40.8030279, "lon": -73.9363134 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1443285325, + "bounds": { + "minlat": 40.7232815, + "minlon": -73.9375167, + "maxlat": 40.7237771, + "maxlon": -73.9373962 + }, + "nodes": [ + 42522703, + 6760897325, + 6760897323, + 42473313 + ], + "geometry": [ + { "lat": 40.7232815, "lon": -73.9373962 }, + { "lat": 40.7233575, "lon": -73.9374147 }, + { "lat": 40.7236754, "lon": -73.9374920 }, + { "lat": 40.7237771, "lon": -73.9375167 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:forward": "3", + "name": "Vandervoort Avenue", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes:forward": "through|right|right" + } +}, +{ + "type": "way", + "id": 1443528561, + "bounds": { + "minlat": 40.8192894, + "minlon": -73.9303313, + "maxlat": 40.8193150, + "maxlon": -73.9301441 + }, + "nodes": [ + 13246259562, + 2546166800 + ], + "geometry": [ + { "lat": 40.8193150, "lon": -73.9303313 }, + { "lat": 40.8192894, "lon": -73.9301441 } + ], + "tags": { + "highway": "secondary", + "lanes": "5", + "name": "East 149th Street", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 1443528562, + "bounds": { + "minlat": 40.8195903, + "minlon": -73.9305484, + "maxlat": 40.8198648, + "maxlon": -73.9304419 + }, + "nodes": [ + 13146413879, + 11570004639 + ], + "geometry": [ + { "lat": 40.8195903, "lon": -73.9304419 }, + { "lat": 40.8198648, "lon": -73.9305484 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "5", + "lanes:backward": "3", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "no", + "turn:lanes:backward": "left|through|right" + } +}, +{ + "type": "way", + "id": 1443528566, + "bounds": { + "minlat": 40.8192894, + "minlon": -73.9301441, + "maxlat": 40.8193162, + "maxlon": -73.9300243 + }, + "nodes": [ + 9903127432, + 2546166800 + ], + "geometry": [ + { "lat": 40.8193162, "lon": -73.9300243 }, + { "lat": 40.8192894, "lon": -73.9301441 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455" + } +}, +{ + "type": "way", + "id": 1443536642, + "bounds": { + "minlat": 40.8192304, + "minlon": -73.9301441, + "maxlat": 40.8192894, + "maxlon": -73.9300584 + }, + "nodes": [ + 2546166800, + 9903127431 + ], + "geometry": [ + { "lat": 40.8192894, "lon": -73.9301441 }, + { "lat": 40.8192304, "lon": -73.9300584 } + ], + "tags": { + "busway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "East 149th Street", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "149th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451:10455", + "tiger:zip_right": "10451:10455", + "turn:lanes": "left|through|" + } +}, +{ + "type": "way", + "id": 1443589781, + "bounds": { + "minlat": 40.8267457, + "minlon": -73.9554066, + "maxlat": 40.8270636, + "maxlon": -73.9549112 + }, + "nodes": [ + 1332843726, + 1332843553, + 1332843817, + 13246807892 + ], + "geometry": [ + { "lat": 40.8270636, "lon": -73.9549112 }, + { "lat": 40.8269913, "lon": -73.9552394 }, + { "lat": 40.8269426, "lon": -73.9552823 }, + { "lat": 40.8267457, "lon": -73.9554066 } + ], + "tags": { + "bicycle": "dismount", + "highway": "service", + "layer": "2", + "name": "Riverbank Park Access Road", + "name_1": "W 145 St", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "West 145th", + "tiger:name_base_1": "145", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1443589782, + "bounds": { + "minlat": 40.7369602, + "minlon": -74.0064962, + "maxlat": 40.7369674, + "maxlon": -74.0063304 + }, + "nodes": [ + 5244251222, + 12162483553, + 10168546910, + 42436149 + ], + "geometry": [ + { "lat": 40.7369602, "lon": -74.0063304 }, + { "lat": 40.7369623, "lon": -74.0063618 }, + { "lat": 40.7369659, "lon": -74.0064204 }, + { "lat": 40.7369674, "lon": -74.0064962 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bethune Street", + "name:etymology:wikidata": "Q1690802", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1443625155, + "bounds": { + "minlat": 40.8403668, + "minlon": -73.9884827, + "maxlat": 40.8411890, + "maxlon": -73.9870323 + }, + "nodes": [ + 103148029, + 103290265, + 7527301264 + ], + "geometry": [ + { "lat": 40.8411890, "lon": -73.9884827 }, + { "lat": 40.8407757, "lon": -73.9877551 }, + { "lat": 40.8403668, "lon": -73.9870323 } + ], + "tags": { + "highway": "tertiary", + "name": "East Brinkerhoff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brinkerhoff", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1443625156, + "bounds": { + "minlat": 40.8411890, + "minlon": -73.9888603, + "maxlat": 40.8414084, + "maxlon": -73.9884827 + }, + "nodes": [ + 13247178427, + 5978850780, + 103148029 + ], + "geometry": [ + { "lat": 40.8414084, "lon": -73.9888603 }, + { "lat": 40.8413886, "lon": -73.9888256 }, + { "lat": 40.8411890, "lon": -73.9884827 } + ], + "tags": { + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "East Brinkerhoff Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Brinkerhoff", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "turn:lanes:forward": "left|through;right" + } +}, +{ + "type": "way", + "id": 1443632283, + "bounds": { + "minlat": 40.8110093, + "minlon": -73.9547074, + "maxlat": 40.8114975, + "maxlon": -73.9542758 + }, + "nodes": [ + 6823995474, + 11979323600, + 9150563663, + 10171069632, + 42429825 + ], + "geometry": [ + { "lat": 40.8114975, "lon": -73.9547074 }, + { "lat": 40.8111861, "lon": -73.9544514 }, + { "lat": 40.8111376, "lon": -73.9544116 }, + { "lat": 40.8111053, "lon": -73.9543741 }, + { "lat": 40.8110093, "lon": -73.9542758 } + ], + "tags": { + "highway": "residential", + "name": "West 125th Street", + "name_1": "West 125 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "wikidata": "Q173672", + "wikipedia": "en:125th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1443659428, + "bounds": { + "minlat": 40.8308518, + "minlon": -73.9315362, + "maxlat": 40.8319501, + "maxlon": -73.9309053 + }, + "nodes": [ + 13247390483, + 42737570, + 10252738339, + 4281459923, + 9910769981, + 42737568 + ], + "geometry": [ + { "lat": 40.8319501, "lon": -73.9309053 }, + { "lat": 40.8319140, "lon": -73.9309340 }, + { "lat": 40.8310635, "lon": -73.9314245 }, + { "lat": 40.8308905, "lon": -73.9315243 }, + { "lat": 40.8308704, "lon": -73.9315319 }, + { "lat": 40.8308518, "lon": -73.9315362 } + ], + "tags": { + "highway": "residential", + "name": "Summit Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Summit", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1443671113, + "bounds": { + "minlat": 40.8171472, + "minlon": -73.9309685, + "maxlat": 40.8172488, + "maxlon": -73.9309435 + }, + "nodes": [ + 7557695126, + 595790188 + ], + "geometry": [ + { "lat": 40.8172488, "lon": -73.9309435 }, + { "lat": 40.8171472, "lon": -73.9309685 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1443671114, + "bounds": { + "minlat": 40.8172409, + "minlon": -73.9309435, + "maxlat": 40.8172488, + "maxlon": -73.9309072 + }, + "nodes": [ + 7557695126, + 7557695127 + ], + "geometry": [ + { "lat": 40.8172488, "lon": -73.9309435 }, + { "lat": 40.8172409, "lon": -73.9309072 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 144th Street", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "144th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1443671115, + "bounds": { + "minlat": 40.8172409, + "minlon": -73.9309072, + "maxlat": 40.8192894, + "maxlon": -73.9301441 + }, + "nodes": [ + 7557695127, + 7557695121, + 7557695120, + 9166288561, + 7557697386, + 9166288560, + 9166288559, + 13246259568, + 9903127430, + 13246259565, + 2546166800 + ], + "geometry": [ + { "lat": 40.8172409, "lon": -73.9309072 }, + { "lat": 40.8178873, "lon": -73.9305253 }, + { "lat": 40.8180431, "lon": -73.9304246 }, + { "lat": 40.8181217, "lon": -73.9303842 }, + { "lat": 40.8182089, "lon": -73.9303483 }, + { "lat": 40.8182959, "lon": -73.9303197 }, + { "lat": 40.8183817, "lon": -73.9302974 }, + { "lat": 40.8190778, "lon": -73.9301579 }, + { "lat": 40.8191076, "lon": -73.9301519 }, + { "lat": 40.8192135, "lon": -73.9301509 }, + { "lat": 40.8192894, "lon": -73.9301441 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1443843951, + "bounds": { + "minlat": 40.8402940, + "minlon": -73.9213917, + "maxlat": 40.8420820, + "maxlon": -73.9201070 + }, + "nodes": [ + 42745197, + 12163757030, + 12163757029, + 12163757028, + 12163757027, + 12527763342, + 12163756884, + 42751864 + ], + "geometry": [ + { "lat": 40.8402940, "lon": -73.9213917 }, + { "lat": 40.8403343, "lon": -73.9213816 }, + { "lat": 40.8403702, "lon": -73.9213715 }, + { "lat": 40.8404073, "lon": -73.9213575 }, + { "lat": 40.8404390, "lon": -73.9213413 }, + { "lat": 40.8404538, "lon": -73.9213322 }, + { "lat": 40.8404679, "lon": -73.9213236 }, + { "lat": 40.8420820, "lon": -73.9201070 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Jesup Avenue", + "name:etymology:wikidata": "Q713243", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jesup", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452" + } +}, +{ + "type": "way", + "id": 1443849973, + "bounds": { + "minlat": 40.8227635, + "minlon": -73.9114752, + "maxlat": 40.8233740, + "maxlon": -73.9111583 + }, + "nodes": [ + 471221481, + 8184221154, + 42730064 + ], + "geometry": [ + { "lat": 40.8233740, "lon": -73.9111583 }, + { "lat": 40.8233030, "lon": -73.9112444 }, + { "lat": 40.8227635, "lon": -73.9114752 } + ], + "tags": { + "highway": "residential", + "name": "Washington Avenue", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Washington", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1443849978, + "bounds": { + "minlat": 40.8215038, + "minlon": -73.9111732, + "maxlat": 40.8223259, + "maxlon": -73.9107011 + }, + "nodes": [ + 42761088, + 42761092 + ], + "geometry": [ + { "lat": 40.8215038, "lon": -73.9111732 }, + { "lat": 40.8223259, "lon": -73.9107011 } + ], + "tags": { + "highway": "residential", + "name": "Brook Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brook", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1443983343, + "bounds": { + "minlat": 40.8178250, + "minlon": -73.9152630, + "maxlat": 40.8195420, + "maxlon": -73.9135200 + }, + "nodes": [ + 42768536, + 13249081108, + 13249081121, + 42768535, + 13249081122, + 13249095759, + 42749766, + 13249095757, + 2912071211, + 12040128428, + 42768534, + 12040128411, + 42768531 + ], + "geometry": [ + { "lat": 40.8195420, "lon": -73.9135200 }, + { "lat": 40.8194851, "lon": -73.9135696 }, + { "lat": 40.8189969, "lon": -73.9139953 }, + { "lat": 40.8189560, "lon": -73.9140310 }, + { "lat": 40.8188863, "lon": -73.9140994 }, + { "lat": 40.8185595, "lon": -73.9144204 }, + { "lat": 40.8185070, "lon": -73.9144720 }, + { "lat": 40.8184784, "lon": -73.9145056 }, + { "lat": 40.8183972, "lon": -73.9146007 }, + { "lat": 40.8182112, "lon": -73.9148054 }, + { "lat": 40.8180770, "lon": -73.9149530 }, + { "lat": 40.8178665, "lon": -73.9152120 }, + { "lat": 40.8178250, "lon": -73.9152630 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Third Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1444022637, + "bounds": { + "minlat": 40.7293467, + "minlon": -73.9286922, + "maxlat": 40.7293832, + "maxlon": -73.9285122 + }, + "nodes": [ + 13250601910, + 9982698004, + 42825196 + ], + "geometry": [ + { "lat": 40.7293467, "lon": -73.9286922 }, + { "lat": 40.7293542, "lon": -73.9286453 }, + { "lat": 40.7293832, "lon": -73.9285122 } + ], + "tags": { + "cycleway:left": "separate", + "hgv": "local", + "highway": "secondary", + "name": "Laurel Hill Boulevard", + "oneway": "no" + } +}, +{ + "type": "way", + "id": 1444022638, + "bounds": { + "minlat": 40.7293832, + "minlon": -73.9285122, + "maxlat": 40.7294578, + "maxlon": -73.9282925 + }, + "nodes": [ + 42825196, + 9194902820, + 13250601909 + ], + "geometry": [ + { "lat": 40.7293832, "lon": -73.9285122 }, + { "lat": 40.7294378, "lon": -73.9283500 }, + { "lat": 40.7294578, "lon": -73.9282925 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "Laurel Hill Boulevard", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1444239476, + "bounds": { + "minlat": 40.8090775, + "minlon": -74.0015152, + "maxlat": 40.8094954, + "maxlon": -74.0012421 + }, + "nodes": [ + 13252001512, + 5481884742, + 4727867683, + 103866686 + ], + "geometry": [ + { "lat": 40.8090775, "lon": -74.0015152 }, + { "lat": 40.8092001, "lon": -74.0014309 }, + { "lat": 40.8093804, "lon": -74.0013069 }, + { "lat": 40.8094954, "lon": -74.0012421 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "09081254", + "highway": "tertiary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "name": "Bergenline Avenue", + "name_1": "Bergenline Place", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Bergenline:County Road 680;Bergenline", + "tiger:name_base_1": "Bergenline:County Road 721;Bergenline", + "tiger:name_type": "Ave", + "tiger:name_type_1": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "07047:07087:07093;07087", + "tiger:zip_right": "07047:07087:07093;07087", + "turn:lanes:forward": "left|none|none", + "wikidata": "Q867487", + "wikipedia": "en:Bergenline Avenue" + } +}, +{ + "type": "way", + "id": 1444270947, + "bounds": { + "minlat": 40.8305755, + "minlon": -73.9307151, + "maxlat": 40.8329180, + "maxlon": -73.9293850 + }, + "nodes": [ + 42734262, + 10252738338, + 13247390488, + 42734266, + 13247390491, + 42734271, + 13809338806, + 42734276 + ], + "geometry": [ + { "lat": 40.8305755, "lon": -73.9307151 }, + { "lat": 40.8307935, "lon": -73.9305911 }, + { "lat": 40.8316013, "lon": -73.9301316 }, + { "lat": 40.8316410, "lon": -73.9301090 }, + { "lat": 40.8316906, "lon": -73.9300807 }, + { "lat": 40.8322840, "lon": -73.9297420 }, + { "lat": 40.8328562, "lon": -73.9294198 }, + { "lat": 40.8329180, "lon": -73.9293850 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Ogden Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Ogden", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1444271250, + "bounds": { + "minlat": 40.8656583, + "minlon": -73.9084674, + "maxlat": 40.8663682, + "maxlon": -73.9084638 + }, + "nodes": [ + 5968362333, + 10170161345, + 13252243857 + ], + "geometry": [ + { "lat": 40.8656583, "lon": -73.9084638 }, + { "lat": 40.8657125, "lon": -73.9084641 }, + { "lat": 40.8663682, "lon": -73.9084674 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Bailey Avenue", + "name:etymology:wikidata": "Q63197681", + "oneway": "no", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Bailey", + "tiger:name_type": "Ave", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1444279388, + "bounds": { + "minlat": 40.8223259, + "minlon": -73.9107011, + "maxlat": 40.8228497, + "maxlon": -73.9094249 + }, + "nodes": [ + 6395375453, + 13249075294, + 6395375454, + 6395375455, + 42748196, + 42761092 + ], + "geometry": [ + { "lat": 40.8228497, "lon": -73.9094249 }, + { "lat": 40.8227622, "lon": -73.9095126 }, + { "lat": 40.8227528, "lon": -73.9095220 }, + { "lat": 40.8226209, "lon": -73.9096923 }, + { "lat": 40.8225380, "lon": -73.9098683 }, + { "lat": 40.8223259, "lon": -73.9107011 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Third Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:reviewed": "no", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1444404503, + "bounds": { + "minlat": 40.7567070, + "minlon": -73.9930290, + "maxlat": 40.7570784, + "maxlon": -73.9921339 + }, + "nodes": [ + 9509518363, + 9509518364 + ], + "geometry": [ + { "lat": 40.7570784, "lon": -73.9930290 }, + { "lat": 40.7567070, "lon": -73.9921339 } + ], + "tags": { + "highway": "service", + "layer": "3", + "level": "4", + "oneway": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1444424971, + "bounds": { + "minlat": 40.7968325, + "minlon": -73.9191167, + "maxlat": 40.7970655, + "maxlon": -73.9190442 + }, + "nodes": [ + 277482068, + 13253471335, + 13253471334, + 277482067 + ], + "geometry": [ + { "lat": 40.7970655, "lon": -73.9191167 }, + { "lat": 40.7969558, "lon": -73.9190736 }, + { "lat": 40.7968965, "lon": -73.9190576 }, + { "lat": 40.7968325, "lon": -73.9190442 } + ], + "tags": { + "highway": "tertiary", + "name": "Central Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1444544840, + "bounds": { + "minlat": 40.8427831, + "minlon": -73.9183121, + "maxlat": 40.8430697, + "maxlon": -73.9179352 + }, + "nodes": [ + 42770674, + 5333189319, + 13247381538, + 5333189320, + 1377427132 + ], + "geometry": [ + { "lat": 40.8430697, "lon": -73.9179352 }, + { "lat": 40.8430311, "lon": -73.9180487 }, + { "lat": 40.8430153, "lon": -73.9180781 }, + { "lat": 40.8429669, "lon": -73.9181664 }, + { "lat": 40.8427831, "lon": -73.9183121 } + ], + "tags": { + "highway": "residential", + "name": "Cromwell Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cromwell", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1444544841, + "bounds": { + "minlat": 40.8426546, + "minlon": -73.9179873, + "maxlat": 40.8430697, + "maxlon": -73.9179352 + }, + "nodes": [ + 42770674, + 5333189318, + 1377427134 + ], + "geometry": [ + { "lat": 40.8430697, "lon": -73.9179352 }, + { "lat": 40.8429059, "lon": -73.9179776 }, + { "lat": 40.8426546, "lon": -73.9179873 } + ], + "tags": { + "cycleway": "lane", + "highway": "tertiary", + "name": "Macombs Road", + "name:etymology:wikidata": "Q328356", + "oneway": "no", + "parking:lane:width": "8'", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1445339746, + "bounds": { + "minlat": 40.8150135, + "minlon": -74.0107217, + "maxlat": 40.8150912, + "maxlon": -74.0106475 + }, + "nodes": [ + 10926141770, + 13260789469, + 13260789468 + ], + "geometry": [ + { "lat": 40.8150135, "lon": -74.0107217 }, + { "lat": 40.8150382, "lon": -74.0106981 }, + { "lat": 40.8150912, "lon": -74.0106475 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1445391855, + "bounds": { + "minlat": 40.8058221, + "minlon": -73.9252371, + "maxlat": 40.8058941, + "maxlon": -73.9250646 + }, + "nodes": [ + 3529496430, + 7553992430 + ], + "geometry": [ + { "lat": 40.8058941, "lon": -73.9252371 }, + { "lat": 40.8058221, "lon": -73.9250646 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1445951009, + "bounds": { + "minlat": 40.7180850, + "minlon": -73.9523019, + "maxlat": 40.7181791, + "maxlon": -73.9522867 + }, + "nodes": [ + 42511011, + 13266680768, + 42520612 + ], + "geometry": [ + { "lat": 40.7180850, "lon": -73.9522867 }, + { "lat": 40.7181059, "lon": -73.9522895 }, + { "lat": 40.7181791, "lon": -73.9523019 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "tertiary", + "name": "Union Avenue", + "name:etymology:wikidata": "Q214102", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1446251354, + "bounds": { + "minlat": 40.8456982, + "minlon": -73.9713436, + "maxlat": 40.8457868, + "maxlon": -73.9712949 + }, + "nodes": [ + 11393694875, + 103235775 + ], + "geometry": [ + { "lat": 40.8457868, "lon": -73.9712949 }, + { "lat": 40.8456982, "lon": -73.9713436 } + ], + "tags": { + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000067", + "highway": "primary", + "name": "Lemoine Avenue", + "ref": "NJ 67", + "sidewalk:both": "separate", + "tiger:cfcc": "A21", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Lemoine", + "tiger:name_base_1": "United States Highway 9W", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07024", + "tiger:zip_right": "07024", + "wikidata": "Q867752", + "wikipedia": "en:Palisade Avenue (Hudson Palisades)" + } +}, +{ + "type": "way", + "id": 1446251355, + "bounds": { + "minlat": 40.8458287, + "minlon": -73.9716997, + "maxlat": 40.8459652, + "maxlon": -73.9714401 + }, + "nodes": [ + 11393694878, + 11393694876, + 11393694877 + ], + "geometry": [ + { "lat": 40.8458287, "lon": -73.9714401 }, + { "lat": 40.8458311, "lon": -73.9714485 }, + { "lat": 40.8459652, "lon": -73.9716997 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1447029701, + "bounds": { + "minlat": 40.7441321, + "minlon": -73.9445742, + "maxlat": 40.7442764, + "maxlon": -73.9441628 + }, + "nodes": [ + 13276743834, + 13276743835, + 13276743836 + ], + "geometry": [ + { "lat": 40.7441321, "lon": -73.9445742 }, + { "lat": 40.7441636, "lon": -73.9444873 }, + { "lat": 40.7442764, "lon": -73.9441628 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1447029706, + "bounds": { + "minlat": 40.7453839, + "minlon": -73.9432629, + "maxlat": 40.7454460, + "maxlon": -73.9431111 + }, + "nodes": [ + 5481972186, + 13276743843, + 13276743844 + ], + "geometry": [ + { "lat": 40.7453839, "lon": -73.9432629 }, + { "lat": 40.7454224, "lon": -73.9431710 }, + { "lat": 40.7454460, "lon": -73.9431111 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1447029707, + "bounds": { + "minlat": 40.7456777, + "minlon": -73.9425258, + "maxlat": 40.7457294, + "maxlon": -73.9423951 + }, + "nodes": [ + 13276743845, + 13276743846, + 13276743847 + ], + "geometry": [ + { "lat": 40.7456777, "lon": -73.9425258 }, + { "lat": 40.7456949, "lon": -73.9424858 }, + { "lat": 40.7457294, "lon": -73.9423951 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1447029715, + "bounds": { + "minlat": 40.7460360, + "minlon": -73.9405913, + "maxlat": 40.7460680, + "maxlon": -73.9404675 + }, + "nodes": [ + 13276743891, + 13276743892, + 13276743893 + ], + "geometry": [ + { "lat": 40.7460680, "lon": -73.9405913 }, + { "lat": 40.7460469, "lon": -73.9405021 }, + { "lat": 40.7460360, "lon": -73.9404675 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1447110673, + "bounds": { + "minlat": 40.7203066, + "minlon": -73.9891119, + "maxlat": 40.7214626, + "maxlon": -73.9885157 + }, + "nodes": [ + 42437106, + 8231901008, + 3314293706, + 42432063 + ], + "geometry": [ + { "lat": 40.7203066, "lon": -73.9891119 }, + { "lat": 40.7203589, "lon": -73.9890849 }, + { "lat": 40.7214131, "lon": -73.9885412 }, + { "lat": 40.7214626, "lon": -73.9885157 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 1447110674, + "bounds": { + "minlat": 40.7203066, + "minlon": -73.9896132, + "maxlat": 40.7204582, + "maxlon": -73.9891119 + }, + "nodes": [ + 42437106, + 8231901010, + 3314293713, + 42437108 + ], + "geometry": [ + { "lat": 40.7203066, "lon": -73.9891119 }, + { "lat": 40.7203271, "lon": -73.9891796 }, + { "lat": 40.7204288, "lon": -73.9895152 }, + { "lat": 40.7204582, "lon": -73.9896132 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "maxspeed:conditional": "5 mph @ (Mo-Su 12:00-21:00; Th-Sa 12:00-23:00)", + "motor_vehicle:conditional": "destination @ (Mo-Su 12:00-21:00; Th-Sa 12:00-23:00)", + "name": "Rivington Street", + "name:etymology:wikidata": "Q6142176", + "name:ko": "리빙턴 스트리트", + "oneway": "yes", + "parking:left": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7338892", + "wikipedia": "en:Rivington Street" + } +}, +{ + "type": "way", + "id": 1448376536, + "bounds": { + "minlat": 40.8284465, + "minlon": -73.9725519, + "maxlat": 40.8284800, + "maxlon": -73.9725311 + }, + "nodes": [ + 103116810, + 1752676682 + ], + "geometry": [ + { "lat": 40.8284465, "lon": -73.9725519 }, + { "lat": 40.8284800, "lon": -73.9725311 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1448376537, + "bounds": { + "minlat": 40.8284800, + "minlon": -73.9725311, + "maxlat": 40.8285412, + "maxlon": -73.9724885 + }, + "nodes": [ + 1752676682, + 4205789009 + ], + "geometry": [ + { "lat": 40.8284800, "lon": -73.9725311 }, + { "lat": 40.8285412, "lon": -73.9724885 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1449306396, + "bounds": { + "minlat": 40.7204753, + "minlon": -73.9974657, + "maxlat": 40.7206586, + "maxlon": -73.9972116 + }, + "nodes": [ + 13293918861, + 13293918862, + 13293918865, + 13293918863, + 13293918864 + ], + "geometry": [ + { "lat": 40.7205207, "lon": -73.9974657 }, + { "lat": 40.7205010, "lon": -73.9974114 }, + { "lat": 40.7204753, "lon": -73.9973407 }, + { "lat": 40.7205931, "lon": -73.9972578 }, + { "lat": 40.7206586, "lon": -73.9972116 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1449315570, + "bounds": { + "minlat": 40.7387438, + "minlon": -73.9347666, + "maxlat": 40.7388779, + "maxlon": -73.9342687 + }, + "nodes": [ + 13294008237, + 13294008238, + 13294008242, + 13294008250, + 13294008239, + 13294008240, + 13294008241 + ], + "geometry": [ + { "lat": 40.7387644, "lon": -73.9347666 }, + { "lat": 40.7387438, "lon": -73.9346202 }, + { "lat": 40.7387453, "lon": -73.9346062 }, + { "lat": 40.7387622, "lon": -73.9344858 }, + { "lat": 40.7388139, "lon": -73.9343693 }, + { "lat": 40.7388296, "lon": -73.9343395 }, + { "lat": 40.7388779, "lon": -73.9342687 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1449315571, + "bounds": { + "minlat": 40.7387453, + "minlon": -73.9346062, + "maxlat": 40.7390077, + "maxlon": -73.9343693 + }, + "nodes": [ + 13294008242, + 13294008243, + 13294008244, + 13294008245, + 13294008251, + 13294008239 + ], + "geometry": [ + { "lat": 40.7387453, "lon": -73.9346062 }, + { "lat": 40.7389959, "lon": -73.9345552 }, + { "lat": 40.7390077, "lon": -73.9344744 }, + { "lat": 40.7389728, "lon": -73.9344417 }, + { "lat": 40.7388650, "lon": -73.9344010 }, + { "lat": 40.7388139, "lon": -73.9343693 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1449315572, + "bounds": { + "minlat": 40.7389959, + "minlon": -73.9347085, + "maxlat": 40.7390583, + "maxlon": -73.9345552 + }, + "nodes": [ + 13294008243, + 13294008246, + 13294008247 + ], + "geometry": [ + { "lat": 40.7389959, "lon": -73.9345552 }, + { "lat": 40.7390383, "lon": -73.9345789 }, + { "lat": 40.7390583, "lon": -73.9347085 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1449315573, + "bounds": { + "minlat": 40.7390077, + "minlon": -73.9344744, + "maxlat": 40.7390458, + "maxlon": -73.9343745 + }, + "nodes": [ + 13294008244, + 13294008248, + 13294008249 + ], + "geometry": [ + { "lat": 40.7390077, "lon": -73.9344744 }, + { "lat": 40.7390154, "lon": -73.9344566 }, + { "lat": 40.7390458, "lon": -73.9343745 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1449339854, + "bounds": { + "minlat": 40.8053879, + "minlon": -73.9950877, + "maxlat": 40.8060797, + "maxlon": -73.9944927 + }, + "nodes": [ + 752618727, + 13294201324, + 13294201319, + 13294201320, + 13294201321, + 13294201325, + 13294201322 + ], + "geometry": [ + { "lat": 40.8053879, "lon": -73.9950877 }, + { "lat": 40.8054076, "lon": -73.9950868 }, + { "lat": 40.8054263, "lon": -73.9950771 }, + { "lat": 40.8055815, "lon": -73.9948580 }, + { "lat": 40.8056138, "lon": -73.9947583 }, + { "lat": 40.8058300, "lon": -73.9946407 }, + { "lat": 40.8060797, "lon": -73.9944927 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1449339855, + "bounds": { + "minlat": 40.8054560, + "minlon": -73.9947583, + "maxlat": 40.8056138, + "maxlon": -73.9944703 + }, + "nodes": [ + 13294201321, + 13294201327, + 13294201323 + ], + "geometry": [ + { "lat": 40.8056138, "lon": -73.9947583 }, + { "lat": 40.8054954, "lon": -73.9945429 }, + { "lat": 40.8054560, "lon": -73.9944703 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1449339856, + "bounds": { + "minlat": 40.8057122, + "minlon": -73.9946407, + "maxlat": 40.8058300, + "maxlon": -73.9943565 + }, + "nodes": [ + 13294201325, + 13294201326 + ], + "geometry": [ + { "lat": 40.8058300, "lon": -73.9946407 }, + { "lat": 40.8057122, "lon": -73.9943565 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1449339857, + "bounds": { + "minlat": 40.8054954, + "minlon": -73.9945429, + "maxlat": 40.8055612, + "maxlon": -73.9944773 + }, + "nodes": [ + 13294201327, + 13294201328 + ], + "geometry": [ + { "lat": 40.8054954, "lon": -73.9945429 }, + { "lat": 40.8055612, "lon": -73.9944773 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1449408223, + "bounds": { + "minlat": 40.7219758, + "minlon": -74.0081991, + "maxlat": 40.7226387, + "maxlon": -74.0080678 + }, + "nodes": [ + 3788379684, + 13294718048, + 13294718044, + 13294718046, + 13294718043 + ], + "geometry": [ + { "lat": 40.7219758, "lon": -74.0081991 }, + { "lat": 40.7220425, "lon": -74.0081907 }, + { "lat": 40.7221019, "lon": -74.0081782 }, + { "lat": 40.7225610, "lon": -74.0080845 }, + { "lat": 40.7226387, "lon": -74.0080678 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Hudson Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1449408225, + "bounds": { + "minlat": 40.7226387, + "minlon": -74.0080678, + "maxlat": 40.7231558, + "maxlon": -74.0079839 + }, + "nodes": [ + 13294718043, + 13294718042, + 13294718041, + 13294718040, + 13324038871 + ], + "geometry": [ + { "lat": 40.7226387, "lon": -74.0080678 }, + { "lat": 40.7227081, "lon": -74.0080540 }, + { "lat": 40.7227688, "lon": -74.0080420 }, + { "lat": 40.7230617, "lon": -74.0079977 }, + { "lat": 40.7231558, "lon": -74.0079839 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Hudson Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1449408227, + "bounds": { + "minlat": 40.7213306, + "minlon": -74.0083435, + "maxlat": 40.7219758, + "maxlon": -74.0081991 + }, + "nodes": [ + 42436308, + 13294718050, + 13294718049, + 3788379684 + ], + "geometry": [ + { "lat": 40.7213306, "lon": -74.0083435 }, + { "lat": 40.7214061, "lon": -74.0082900 }, + { "lat": 40.7218814, "lon": -74.0082121 }, + { "lat": 40.7219758, "lon": -74.0081991 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Hudson Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1449408228, + "bounds": { + "minlat": 40.7219758, + "minlon": -74.0082870, + "maxlat": 40.7219884, + "maxlon": -74.0081991 + }, + "nodes": [ + 3788379684, + 42424408 + ], + "geometry": [ + { "lat": 40.7219758, "lon": -74.0081991 }, + { "lat": 40.7219884, "lon": -74.0082870 } + ], + "tags": { + "bicycle": "no", + "destination:ref": "NY 9A", + "destination:street": "West Street", + "foot": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxaxles": "3", + "maxspeed": "25 mph", + "name": "Laight Street", + "oneway": "yes", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1449556709, + "bounds": { + "minlat": 40.7353684, + "minlon": -73.9529124, + "maxlat": 40.7357486, + "maxlon": -73.9528495 + }, + "nodes": [ + 13295821226, + 9690694962, + 8097082832, + 277046418 + ], + "geometry": [ + { "lat": 40.7357486, "lon": -73.9529124 }, + { "lat": 40.7354903, "lon": -73.9528696 }, + { "lat": 40.7354446, "lon": -73.9528619 }, + { "lat": 40.7353684, "lon": -73.9528495 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A49", + "tiger:county": "Kings, NY", + "tiger:name_base": "Mc Guinness", + "tiger:name_base_1": "Pulaski", + "tiger:name_type": "Blvd", + "tiger:name_type_1": "Brg", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1449565980, + "bounds": { + "minlat": 40.7298675, + "minlon": -73.9513621, + "maxlat": 40.7300946, + "maxlon": -73.9512346 + }, + "nodes": [ + 12042057000, + 2987758844, + 13295904804 + ], + "geometry": [ + { "lat": 40.7300946, "lon": -73.9513621 }, + { "lat": 40.7299386, "lon": -73.9512738 }, + { "lat": 40.7298675, "lon": -73.9512346 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "merge_to_right|", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1450076747, + "bounds": { + "minlat": 40.7468835, + "minlon": -73.9527130, + "maxlat": 40.7469719, + "maxlon": -73.9526820 + }, + "nodes": [ + 13300019578, + 5034712839, + 42826864 + ], + "geometry": [ + { "lat": 40.7469719, "lon": -73.9526820 }, + { "lat": 40.7469421, "lon": -73.9526923 }, + { "lat": 40.7468835, "lon": -73.9527130 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "-1", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Vernon Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Queens, NY", + "tiger:name_base": "Vernon", + "tiger:name_type": "Blvd" + } +}, +{ + "type": "way", + "id": 1450119817, + "bounds": { + "minlat": 40.8510044, + "minlon": -73.9350830, + "maxlat": 40.8514340, + "maxlon": -73.9340582 + }, + "nodes": [ + 13300404062, + 42438199, + 9550791877, + 9563795505, + 42429035 + ], + "geometry": [ + { "lat": 40.8510044, "lon": -73.9340582 }, + { "lat": 40.8510210, "lon": -73.9340980 }, + { "lat": 40.8510619, "lon": -73.9341956 }, + { "lat": 40.8513868, "lon": -73.9349705 }, + { "lat": 40.8514340, "lon": -73.9350830 } + ], + "tags": { + "highway": "residential", + "name": "West 183rd Street", + "name_1": "West 183 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "183rd", + "tiger:name_base_1": "183", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1450119818, + "bounds": { + "minlat": 40.8493157, + "minlon": -73.9314331, + "maxlat": 40.8499048, + "maxlon": -73.9300173 + }, + "nodes": [ + 42438186, + 9566869987, + 9566869994, + 13300404063 + ], + "geometry": [ + { "lat": 40.8493157, "lon": -73.9300173 }, + { "lat": 40.8493701, "lon": -73.9301477 }, + { "lat": 40.8498845, "lon": -73.9313843 }, + { "lat": 40.8499048, "lon": -73.9314331 } + ], + "tags": { + "alt_name": "Rafael A. Estevez Way", + "description": "This honorary intersection name memorializes Rafael A. Estevez", + "highway": "residential", + "historic": "memorial", + "name": "West 183rd Street", + "name_1": "West 183 Street", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "183rd", + "tiger:name_base_1": "183", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1450122119, + "bounds": { + "minlat": 40.8294451, + "minlon": -73.9419432, + "maxlat": 40.8294775, + "maxlon": -73.9419307 + }, + "nodes": [ + 42432980, + 13300406392 + ], + "geometry": [ + { "lat": 40.8294451, "lon": -73.9419432 }, + { "lat": 40.8294775, "lon": -73.9419307 } + ], + "tags": { + "alt_name": "Willie Mays Place", + "bicycle": "yes", + "cycleway": "lane", + "description": "This honorary intersection name memorializes Willie Mays", + "hgv": "destination", + "highway": "secondary", + "historic": "memorial", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "parking:lane:both": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1452119841, + "bounds": { + "minlat": 40.8513413, + "minlon": -73.9402230, + "maxlat": 40.8546770, + "maxlon": -73.9386520 + }, + "nodes": [ + 42428124, + 1763612256, + 8151605404, + 12607365686, + 42428127, + 12068591643, + 12068591644, + 12068591645, + 12068591646, + 12068591647, + 12068591648, + 12068591649, + 8151605403, + 2840354109, + 8347635265, + 9467158618, + 42428130 + ], + "geometry": [ + { "lat": 40.8513413, "lon": -73.9402230 }, + { "lat": 40.8514259, "lon": -73.9401453 }, + { "lat": 40.8518356, "lon": -73.9400255 }, + { "lat": 40.8533427, "lon": -73.9395880 }, + { "lat": 40.8534078, "lon": -73.9395691 }, + { "lat": 40.8534370, "lon": -73.9395597 }, + { "lat": 40.8534662, "lon": -73.9395486 }, + { "lat": 40.8534954, "lon": -73.9395364 }, + { "lat": 40.8535208, "lon": -73.9395238 }, + { "lat": 40.8535455, "lon": -73.9395095 }, + { "lat": 40.8535701, "lon": -73.9394931 }, + { "lat": 40.8536020, "lon": -73.9394709 }, + { "lat": 40.8542241, "lon": -73.9389900 }, + { "lat": 40.8543102, "lon": -73.9389257 }, + { "lat": 40.8545733, "lon": -73.9387295 }, + { "lat": 40.8546239, "lon": -73.9386917 }, + { "lat": 40.8546770, "lon": -73.9386520 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cabrini Boulevard", + "name:etymology:wikidata": "Q238983", + "oneway": "yes", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cabrini", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "width": "32'0\"", + "wikidata": "Q5015842", + "wikipedia": "en:Cabrini Boulevard" + } +}, +{ + "type": "way", + "id": 1452119842, + "bounds": { + "minlat": 40.8546924, + "minlon": -73.9386398, + "maxlat": 40.8554831, + "maxlon": -73.9380132 + }, + "nodes": [ + 13317627777, + 9467158622, + 595729852, + 13317627776 + ], + "geometry": [ + { "lat": 40.8546924, "lon": -73.9386398 }, + { "lat": 40.8547211, "lon": -73.9386169 }, + { "lat": 40.8554719, "lon": -73.9380214 }, + { "lat": 40.8554831, "lon": -73.9380132 } + ], + "tags": { + "alt_name": "Jacob Birnbaum Way", + "description": "This honorary street name memorializes Jacob Birnbaum", + "highway": "residential", + "historic": "memorial", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cabrini Boulevard", + "name:etymology:wikidata": "Q238983", + "oneway": "yes", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cabrini", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "width": "32'0\"", + "wikidata": "Q5015842", + "wikipedia": "en:Cabrini Boulevard" + } +}, +{ + "type": "way", + "id": 1452119843, + "bounds": { + "minlat": 40.8546770, + "minlon": -73.9386520, + "maxlat": 40.8546924, + "maxlon": -73.9386398 + }, + "nodes": [ + 42428130, + 13317627777 + ], + "geometry": [ + { "lat": 40.8546770, "lon": -73.9386520 }, + { "lat": 40.8546924, "lon": -73.9386398 } + ], + "tags": { + "alt_name": "Jacob Birnbaum Way", + "description": "This honorary street name memorializes Jacob Birnbaum", + "highway": "residential", + "historic": "memorial", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Cabrini Boulevard", + "name:etymology:wikidata": "Q238983", + "oneway": "yes", + "sidewalk:both": "separate", + "source:width": "ARCore", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Cabrini", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "width": "32'0\"", + "wikidata": "Q5015842", + "wikipedia": "en:Cabrini Boulevard" + } +}, +{ + "type": "way", + "id": 1452124855, + "bounds": { + "minlat": 40.8486416, + "minlon": -73.9353506, + "maxlat": 40.8490944, + "maxlon": -73.9342753 + }, + "nodes": [ + 13317587898, + 5403873765, + 13317587896 + ], + "geometry": [ + { "lat": 40.8490944, "lon": -73.9353506 }, + { "lat": 40.8486851, "lon": -73.9343762 }, + { "lat": 40.8486416, "lon": -73.9342753 } + ], + "tags": { + "alt_name": "Staff Sgt. Riayan Agusto Tejeda Street", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "description": "This honorary street name memorializes Staff Sgt. Riayan Agusto Tejeda", + "highway": "residential", + "historic": "memorial", + "maxspeed": "25 mph", + "name": "West 180th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "180th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452124856, + "bounds": { + "minlat": 40.8491247, + "minlon": -73.9363970, + "maxlat": 40.8495410, + "maxlon": -73.9354226 + }, + "nodes": [ + 42428094, + 9550791782, + 9550791807, + 42428090, + 13317587897 + ], + "geometry": [ + { "lat": 40.8495410, "lon": -73.9363970 }, + { "lat": 40.8494845, "lon": -73.9362658 }, + { "lat": 40.8491889, "lon": -73.9355738 }, + { "lat": 40.8491457, "lon": -73.9354726 }, + { "lat": 40.8491247, "lon": -73.9354226 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "yes", + "maxspeed": "25 mph", + "name": "West 180th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "180th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452124857, + "bounds": { + "minlat": 40.8490944, + "minlon": -73.9354226, + "maxlat": 40.8491247, + "maxlon": -73.9353506 + }, + "nodes": [ + 13317587897, + 9550791804, + 13317587898 + ], + "geometry": [ + { "lat": 40.8491247, "lon": -73.9354226 }, + { "lat": 40.8491076, "lon": -73.9353821 }, + { "lat": 40.8490944, "lon": -73.9353506 } + ], + "tags": { + "alt_name": "Staff Sgt. Riayan Agusto Tejeda Street", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "description": "This honorary street name memorializes Staff Sgt. Riayan Agusto Tejeda", + "highway": "residential", + "historic": "memorial", + "maxspeed": "25 mph", + "name": "West 180th Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "180th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452129969, + "bounds": { + "minlat": 40.8454318, + "minlon": -73.9402488, + "maxlat": 40.8460446, + "maxlon": -73.9386774 + }, + "nodes": [ + 42427156, + 9908572579, + 7604384340, + 9908572580, + 7604384289, + 42428998 + ], + "geometry": [ + { "lat": 40.8460446, "lon": -73.9402488 }, + { "lat": 40.8460300, "lon": -73.9401937 }, + { "lat": 40.8460149, "lon": -73.9401462 }, + { "lat": 40.8459939, "lon": -73.9400932 }, + { "lat": 40.8454593, "lon": -73.9388285 }, + { "lat": 40.8454318, "lon": -73.9386774 } + ], + "tags": { + "highway": "residential", + "name": "West 174th Street", + "name_1": "West 174 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "174th", + "tiger:name_base_1": "174", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1452129970, + "bounds": { + "minlat": 40.8453663, + "minlon": -73.9386774, + "maxlat": 40.8454318, + "maxlon": -73.9384333 + }, + "nodes": [ + 42428998, + 1762373646, + 13317678242 + ], + "geometry": [ + { "lat": 40.8454318, "lon": -73.9386774 }, + { "lat": 40.8454111, "lon": -73.9385504 }, + { "lat": 40.8453663, "lon": -73.9384333 } + ], + "tags": { + "alt_name": "Freddy Beras-Goico Way", + "description": "This honorary street name memorializes Freddy Beras-Goico", + "highway": "residential", + "historic": "memorial", + "name": "West 174th Street", + "name_1": "West 174 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "174th", + "tiger:name_base_1": "174", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1452129971, + "bounds": { + "minlat": 40.8453000, + "minlon": -73.9384333, + "maxlat": 40.8453663, + "maxlon": -73.9382620 + }, + "nodes": [ + 13317678242, + 7604384206, + 42449627 + ], + "geometry": [ + { "lat": 40.8453663, "lon": -73.9384333 }, + { "lat": 40.8453340, "lon": -73.9383491 }, + { "lat": 40.8453000, "lon": -73.9382620 } + ], + "tags": { + "alt_name": "Freddy Beras-Goico Way", + "description": "This honorary street name memorializes Freddy Beras-Goico", + "highway": "residential", + "historic": "memorial", + "name": "West 174th Street", + "name_1": "West 174 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "174th", + "tiger:name_base_1": "174", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1452133605, + "bounds": { + "minlat": 40.8645465, + "minlon": -73.9266298, + "maxlat": 40.8653673, + "maxlon": -73.9243971 + }, + "nodes": [ + 13317697059, + 9561395295, + 13703104768, + 9561420899, + 13317697058 + ], + "geometry": [ + { "lat": 40.8645465, "lon": -73.9266298 }, + { "lat": 40.8645920, "lon": -73.9265061 }, + { "lat": 40.8650351, "lon": -73.9253010 }, + { "lat": 40.8653333, "lon": -73.9244898 }, + { "lat": 40.8653673, "lon": -73.9243971 } + ], + "tags": { + "alt_name": "Thomas C. Brick Way", + "description": "This honorary street name memorializes Thomas C. Brick", + "highway": "tertiary", + "historic": "memorial", + "name": "Vermilyea Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Vermilyea", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1452133606, + "bounds": { + "minlat": 40.8645441, + "minlon": -73.9266364, + "maxlat": 40.8645465, + "maxlon": -73.9266298 + }, + "nodes": [ + 42432795, + 13317697059 + ], + "geometry": [ + { "lat": 40.8645441, "lon": -73.9266364 }, + { "lat": 40.8645465, "lon": -73.9266298 } + ], + "tags": { + "alt_name": "Thomas C. Brick Way", + "description": "This honorary street name memorializes Thomas C. Brick", + "highway": "tertiary", + "historic": "memorial", + "name": "Vermilyea Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Vermilyea", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1452134536, + "bounds": { + "minlat": 40.8697721, + "minlon": -73.9159862, + "maxlat": 40.8707672, + "maxlon": -73.9146859 + }, + "nodes": [ + 11587266239, + 9561208959, + 42429242, + 9561208958, + 7046318553, + 42429244, + 1544809886 + ], + "geometry": [ + { "lat": 40.8697721, "lon": -73.9159862 }, + { "lat": 40.8698087, "lon": -73.9159310 }, + { "lat": 40.8698643, "lon": -73.9158491 }, + { "lat": 40.8699486, "lon": -73.9157391 }, + { "lat": 40.8700701, "lon": -73.9155807 }, + { "lat": 40.8704145, "lon": -73.9151316 }, + { "lat": 40.8707672, "lon": -73.9146859 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452134537, + "bounds": { + "minlat": 40.8693238, + "minlon": -73.9167458, + "maxlat": 40.8697590, + "maxlon": -73.9160056 + }, + "nodes": [ + 42429236, + 42429239, + 11587266240, + 2034003347 + ], + "geometry": [ + { "lat": 40.8693238, "lon": -73.9167458 }, + { "lat": 40.8695871, "lon": -73.9162859 }, + { "lat": 40.8696494, "lon": -73.9161832 }, + { "lat": 40.8697590, "lon": -73.9160056 } + ], + "tags": { + "alt_name": "Renee Mancino Way", + "alt_name:en": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Renee Mancino", + "description:de": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452135887, + "bounds": { + "minlat": 40.8599440, + "minlon": -73.9273156, + "maxlat": 40.8606686, + "maxlon": -73.9267860 + }, + "nodes": [ + 42421791, + 9561344669, + 1764400290, + 9561344696, + 42448930, + 13317737415 + ], + "geometry": [ + { "lat": 40.8599440, "lon": -73.9267860 }, + { "lat": 40.8600044, "lon": -73.9268260 }, + { "lat": 40.8605647, "lon": -73.9271970 }, + { "lat": 40.8605771, "lon": -73.9272114 }, + { "lat": 40.8606570, "lon": -73.9273000 }, + { "lat": 40.8606686, "lon": -73.9273156 } + ], + "tags": { + "alt_name": "West 197th Street", + "highway": "residential", + "lane_markings": "no", + "name": "Sickles Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:alt_name_base": "W 197th", + "tiger:alt_name_type": "St", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Sickles", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452137222, + "bounds": { + "minlat": 40.8344907, + "minlon": -73.9400480, + "maxlat": 40.8344923, + "maxlon": -73.9400419 + }, + "nodes": [ + 42432999, + 13317744808 + ], + "geometry": [ + { "lat": 40.8344923, "lon": -73.9400480 }, + { "lat": 40.8344907, "lon": -73.9400419 } + ], + "tags": { + "alt_name": "Count Basie Place", + "description": "This honorary street name memorializes Count Basie", + "highway": "residential", + "historic": "memorial", + "name": "West 160th Street", + "name_1": "West 160 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "160th", + "tiger:name_base_1": "160", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1452137604, + "bounds": { + "minlat": 40.8387009, + "minlon": -73.9396180, + "maxlat": 40.8387079, + "maxlon": -73.9395844 + }, + "nodes": [ + 13317724533, + 42437326 + ], + "geometry": [ + { "lat": 40.8387009, "lon": -73.9395844 }, + { "lat": 40.8387079, "lon": -73.9396180 } + ], + "tags": { + "alt_name": "Luís Días Way", + "description": "This honorary street name memorializes Luís Días", + "highway": "tertiary", + "historic": "memorial", + "name": "West 165th Street", + "name_1": "West 165 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "165th", + "tiger:name_base_1": "165", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452139902, + "bounds": { + "minlat": 40.8411223, + "minlon": -73.9422847, + "maxlat": 40.8421541, + "maxlon": -73.9398646 + }, + "nodes": [ + 42428978, + 13317755204, + 9566927269, + 2869154600, + 2869155512, + 9566927312, + 42427136 + ], + "geometry": [ + { "lat": 40.8411223, "lon": -73.9398646 }, + { "lat": 40.8411239, "lon": -73.9398683 }, + { "lat": 40.8411630, "lon": -73.9399598 }, + { "lat": 40.8415201, "lon": -73.9407870 }, + { "lat": 40.8416429, "lon": -73.9410760 }, + { "lat": 40.8421071, "lon": -73.9421944 }, + { "lat": 40.8421541, "lon": -73.9422847 } + ], + "tags": { + "alt_name": "Dr. Norbert Sander Way", + "description": "This honorary street name memorializes Dr. Norbert Sander", + "highway": "tertiary", + "historic": "memorial", + "name": "West 168th Street", + "name_1": "West 168 Street", + "name_2": "Haven Avenue", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "168th", + "tiger:name_base_1": "168", + "tiger:name_base_2": "Haven", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:name_type_2": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1452142353, + "bounds": { + "minlat": 40.8428194, + "minlon": -73.9420178, + "maxlat": 40.8428216, + "maxlon": -73.9420126 + }, + "nodes": [ + 13317716992, + 42427139 + ], + "geometry": [ + { "lat": 40.8428194, "lon": -73.9420126 }, + { "lat": 40.8428216, "lon": -73.9420178 } + ], + "tags": { + "alt_name": "Edith Kamiat Place", + "description": "This honorary street name memorializes Edith Kamiat", + "highway": "residential", + "historic": "memorial", + "name": "West 169th Street", + "name_1": "West 169 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "169th", + "tiger:name_base_1": "169", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1452144343, + "bounds": { + "minlat": 40.8392960, + "minlon": -73.9398826, + "maxlat": 40.8395698, + "maxlon": -73.9392390 + }, + "nodes": [ + 42455234, + 9566997295, + 9566997283, + 13317796572, + 42433030 + ], + "geometry": [ + { "lat": 40.8392960, "lon": -73.9392390 }, + { "lat": 40.8393392, "lon": -73.9393405 }, + { "lat": 40.8395113, "lon": -73.9397466 }, + { "lat": 40.8395694, "lon": -73.9398816 }, + { "lat": 40.8395698, "lon": -73.9398826 } + ], + "tags": { + "alt_name": "Altagracia Diloné Levat Way", + "description": "This honorary street name memorializes Altagracia Diloné Levat", + "highway": "residential", + "historic": "memorial", + "name": "West 166th Street", + "name_1": "West 166 Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "166th", + "tiger:name_base_1": "166", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1452144663, + "bounds": { + "minlat": 40.8323747, + "minlon": -73.9420072, + "maxlat": 40.8328806, + "maxlon": -73.9408792 + }, + "nodes": [ + 42432990, + 11291880542, + 11291862050, + 42442656 + ], + "geometry": [ + { "lat": 40.8323747, "lon": -73.9408792 }, + { "lat": 40.8324415, "lon": -73.9410281 }, + { "lat": 40.8328302, "lon": -73.9418948 }, + { "lat": 40.8328806, "lon": -73.9420072 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "name": "West 157th Street", + "name_1": "West 157 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "157th", + "tiger:name_base_1": "157", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1452145328, + "bounds": { + "minlat": 40.8332780, + "minlon": -73.9438727, + "maxlat": 40.8352739, + "maxlon": -73.9391550 + }, + "nodes": [ + 42438255, + 11291880585, + 11291880512, + 42432994, + 11291880510, + 11291880483, + 42438257, + 13317772119, + 11291880482, + 9935939374, + 561035374 + ], + "geometry": [ + { "lat": 40.8332780, "lon": -73.9391550 }, + { "lat": 40.8333293, "lon": -73.9392768 }, + { "lat": 40.8337324, "lon": -73.9402328 }, + { "lat": 40.8337860, "lon": -73.9403600 }, + { "lat": 40.8338425, "lon": -73.9404905 }, + { "lat": 40.8340603, "lon": -73.9409937 }, + { "lat": 40.8341102, "lon": -73.9411090 }, + { "lat": 40.8341107, "lon": -73.9411102 }, + { "lat": 40.8341736, "lon": -73.9412598 }, + { "lat": 40.8352303, "lon": -73.9437756 }, + { "lat": 40.8352739, "lon": -73.9438727 } + ], + "tags": { + "alt_name": "Lucille Bulger Place", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "description": "This honorary street name memorializes Lucille Bulger", + "highway": "residential", + "historic": "memorial", + "name": "West 159th Street", + "name_1": "West 159 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "159th", + "tiger:name_base_1": "159", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1452147709, + "bounds": { + "minlat": 40.8356697, + "minlon": -73.9398835, + "maxlat": 40.8358221, + "maxlon": -73.9395780 + }, + "nodes": [ + 42433014, + 4378236638, + 4378236637, + 13317820334 + ], + "geometry": [ + { "lat": 40.8358221, "lon": -73.9398835 }, + { "lat": 40.8357792, "lon": -73.9397975 }, + { "lat": 40.8357605, "lon": -73.9397604 }, + { "lat": 40.8356697, "lon": -73.9395780 } + ], + "tags": { + "highway": "residential", + "name": "West 162nd Street", + "name_1": "West 162 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "162nd", + "tiger:name_base_1": "162", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1452400292, + "bounds": { + "minlat": 40.8413149, + "minlon": -73.9356757, + "maxlat": 40.8415827, + "maxlon": -73.9356526 + }, + "nodes": [ + 6836035787, + 9908577526, + 9908577527, + 42439783 + ], + "geometry": [ + { "lat": 40.8413149, "lon": -73.9356735 }, + { "lat": 40.8413451, "lon": -73.9356749 }, + { "lat": 40.8413837, "lon": -73.9356757 }, + { "lat": 40.8415827, "lon": -73.9356526 } + ], + "tags": { + "highway": "residential", + "name": "Edgecombe Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452400294, + "bounds": { + "minlat": 40.8408049, + "minlon": -73.9354706, + "maxlat": 40.8408106, + "maxlon": -73.9354698 + }, + "nodes": [ + 765367023, + 13319742506 + ], + "geometry": [ + { "lat": 40.8408049, "lon": -73.9354698 }, + { "lat": 40.8408106, "lon": -73.9354706 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "highway": "residential", + "name": "Edgecombe Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452400295, + "bounds": { + "minlat": 40.8404537, + "minlon": -73.9353154, + "maxlat": 40.8404757, + "maxlon": -73.9353046 + }, + "nodes": [ + 42435197, + 13319742507 + ], + "geometry": [ + { "lat": 40.8404757, "lon": -73.9353154 }, + { "lat": 40.8404537, "lon": -73.9353046 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "name": "Edgecombe Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452400296, + "bounds": { + "minlat": 40.8381008, + "minlon": -73.9362457, + "maxlat": 40.8381145, + "maxlon": -73.9362339 + }, + "nodes": [ + 13319742508, + 42432218 + ], + "geometry": [ + { "lat": 40.8381145, "lon": -73.9362339 }, + { "lat": 40.8381008, "lon": -73.9362457 } + ], + "tags": { + "alt_name": "Paul Robeson Boulevard", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "description": "This honorary street name memorializes Paul Robeson.", + "highway": "residential", + "historic": "memorial", + "name": "Edgecombe Avenue", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452400297, + "bounds": { + "minlat": 40.8371926, + "minlon": -73.9366896, + "maxlat": 40.8372731, + "maxlon": -73.9366535 + }, + "nodes": [ + 42437316, + 8725182230 + ], + "geometry": [ + { "lat": 40.8371926, "lon": -73.9366896 }, + { "lat": 40.8372731, "lon": -73.9366535 } + ], + "tags": { + "alt_name": "Paul Robeson Boulevard", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "description": "This honorary street name memorializes Paul Robeson.", + "highway": "tertiary", + "historic": "memorial", + "lanes": "2", + "name": "Edgecombe Avenue", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452400298, + "bounds": { + "minlat": 40.8304568, + "minlon": -73.9403476, + "maxlat": 40.8304829, + "maxlon": -73.9403469 + }, + "nodes": [ + 42439673, + 13319742509 + ], + "geometry": [ + { "lat": 40.8304568, "lon": -73.9403469 }, + { "lat": 40.8304829, "lon": -73.9403476 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "name": "Edgecombe Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave" + } +}, +{ + "type": "way", + "id": 1452400299, + "bounds": { + "minlat": 40.8380844, + "minlon": -73.9362576, + "maxlat": 40.8381008, + "maxlon": -73.9362457 + }, + "nodes": [ + 13319742510, + 42432218 + ], + "geometry": [ + { "lat": 40.8380844, "lon": -73.9362576 }, + { "lat": 40.8381008, "lon": -73.9362457 } + ], + "tags": { + "alt_name": "Paul Robeson Boulevard", + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "description": "This honorary street name memorializes Paul Robeson.", + "highway": "tertiary", + "historic": "memorial", + "lanes": "2", + "name": "Edgecombe Avenue", + "oneway:bicycle": "no", + "surface": "asphalt", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452400300, + "bounds": { + "minlat": 40.8371845, + "minlon": -73.9366936, + "maxlat": 40.8371926, + "maxlon": -73.9366896 + }, + "nodes": [ + 13319742511, + 42437316 + ], + "geometry": [ + { "lat": 40.8371845, "lon": -73.9366936 }, + { "lat": 40.8371926, "lon": -73.9366896 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "highway": "tertiary", + "lanes": "2", + "name": "Edgecombe Avenue", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452403760, + "bounds": { + "minlat": 40.8236550, + "minlon": -73.9438503, + "maxlat": 40.8268511, + "maxlon": -73.9415138 + }, + "nodes": [ + 13319775345, + 42439620, + 11218748544, + 764738913, + 764738944, + 9903127418, + 10743755860, + 42434255 + ], + "geometry": [ + { "lat": 40.8268511, "lon": -73.9415138 }, + { "lat": 40.8268210, "lon": -73.9415360 }, + { "lat": 40.8267706, "lon": -73.9415727 }, + { "lat": 40.8262631, "lon": -73.9419416 }, + { "lat": 40.8262207, "lon": -73.9419724 }, + { "lat": 40.8237576, "lon": -73.9437806 }, + { "lat": 40.8236969, "lon": -73.9438225 }, + { "lat": 40.8236550, "lon": -73.9438503 } + ], + "tags": { + "highway": "tertiary", + "name": "Edgecombe Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452403761, + "bounds": { + "minlat": 40.8268511, + "minlon": -73.9415138, + "maxlat": 40.8268844, + "maxlon": -73.9414893 + }, + "nodes": [ + 11218748543, + 13319775345 + ], + "geometry": [ + { "lat": 40.8268844, "lon": -73.9414893 }, + { "lat": 40.8268511, "lon": -73.9415138 } + ], + "tags": { + "highway": "tertiary", + "name": "Edgecombe Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452403762, + "bounds": { + "minlat": 40.8302454, + "minlon": -73.9402064, + "maxlat": 40.8302773, + "maxlon": -73.9401703 + }, + "nodes": [ + 42427894, + 13319775346 + ], + "geometry": [ + { "lat": 40.8302773, "lon": -73.9402064 }, + { "lat": 40.8302454, "lon": -73.9401703 } + ], + "tags": { + "alt_name": "Thurgood Marshall Boulevard", + "description": "This honorary street name memorializes Thurgood Marshall.", + "highway": "tertiary", + "historic": "memorial", + "name": "Edgecombe Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452405061, + "bounds": { + "minlat": 40.8423784, + "minlon": -73.9388884, + "maxlat": 40.8424808, + "maxlon": -73.9387846 + }, + "nodes": [ + 2499757472, + 13018438920, + 9908577556, + 9908577555, + 2499757482, + 13319791779 + ], + "geometry": [ + { "lat": 40.8424808, "lon": -73.9387846 }, + { "lat": 40.8424551, "lon": -73.9388055 }, + { "lat": 40.8424478, "lon": -73.9388114 }, + { "lat": 40.8424192, "lon": -73.9388383 }, + { "lat": 40.8423906, "lon": -73.9388701 }, + { "lat": 40.8423784, "lon": -73.9388884 } + ], + "tags": { + "alt_name": "Juan Pablo Duarte Square", + "cycleway:right": "shared_lane", + "description": "This honorary street name memorializes Juan Pablo Duarte.", + "hgv": "destination", + "highway": "secondary", + "historic": "memorial", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1452407946, + "bounds": { + "minlat": 40.8343731, + "minlon": -73.9491723, + "maxlat": 40.8343937, + "maxlon": -73.9491626 + }, + "nodes": [ + 13105137065, + 13319818983 + ], + "geometry": [ + { "lat": 40.8343731, "lon": -73.9491723 }, + { "lat": 40.8343937, "lon": -73.9491626 } + ], + "tags": { + "bridge": "yes", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "layer": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "shoulder": "no", + "surface": "concrete", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452407947, + "bounds": { + "minlat": 40.8364032, + "minlon": -73.9485112, + "maxlat": 40.8375532, + "maxlon": -73.9478771 + }, + "nodes": [ + 13319818984, + 595352925, + 595352926, + 42443605, + 595352902 + ], + "geometry": [ + { "lat": 40.8364032, "lon": -73.9485112 }, + { "lat": 40.8367415, "lon": -73.9484028 }, + { "lat": 40.8370418, "lon": -73.9482741 }, + { "lat": 40.8373503, "lon": -73.9480595 }, + { "lat": 40.8375532, "lon": -73.9478771 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "secondary", + "layer": "2", + "name": "Riverside Drive West", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452407948, + "bounds": { + "minlat": 40.8363296, + "minlon": -73.9485348, + "maxlat": 40.8364032, + "maxlon": -73.9485112 + }, + "nodes": [ + 13319818985, + 13319818984 + ], + "geometry": [ + { "lat": 40.8363296, "lon": -73.9485348 }, + { "lat": 40.8364032, "lon": -73.9485112 } + ], + "tags": { + "bridge": "yes", + "hgv": "no", + "highway": "secondary", + "layer": "2", + "name": "Riverside Drive West", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452412507, + "bounds": { + "minlat": 40.8421541, + "minlon": -73.9424605, + "maxlat": 40.8422367, + "maxlon": -73.9422847 + }, + "nodes": [ + 13319823800, + 11876910229, + 9566927315, + 42427136 + ], + "geometry": [ + { "lat": 40.8422367, "lon": -73.9424605 }, + { "lat": 40.8422252, "lon": -73.9424338 }, + { "lat": 40.8422003, "lon": -73.9423759 }, + { "lat": 40.8421541, "lon": -73.9422847 } + ], + "tags": { + "alt_name": "Haven Plaza", + "highway": "pedestrian", + "name": "Haven Avenue", + "note": "There is no wikidata or wikimedia page for Haven Plaza.", + "subject:url": "https://www.facilities.cuimc.columbia.edu/capital-projects/haven-plaza" + } +}, +{ + "type": "way", + "id": 1452412508, + "bounds": { + "minlat": 40.8431837, + "minlon": -73.9429553, + "maxlat": 40.8432059, + "maxlon": -73.9429517 + }, + "nodes": [ + 42447419, + 13319858601 + ], + "geometry": [ + { "lat": 40.8432059, "lon": -73.9429517 }, + { "lat": 40.8431837, "lon": -73.9429553 } + ], + "tags": { + "highway": "living_street", + "maxspeed:advisory": "5 mph", + "name": "Haven Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1452412510, + "bounds": { + "minlat": 40.8426916, + "minlon": -73.9430422, + "maxlat": 40.8427338, + "maxlon": -73.9430310 + }, + "nodes": [ + 13319858602, + 6512341611 + ], + "geometry": [ + { "lat": 40.8426916, "lon": -73.9430310 }, + { "lat": 40.8427338, "lon": -73.9430422 } + ], + "tags": { + "highway": "living_street", + "maxspeed:advisory": "5 mph", + "name": "Haven Avenue", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1452414071, + "bounds": { + "minlat": 40.8392799, + "minlon": -73.9373492, + "maxlat": 40.8392951, + "maxlon": -73.9373385 + }, + "nodes": [ + 13319854056, + 2075592658 + ], + "geometry": [ + { "lat": 40.8392799, "lon": -73.9373492 }, + { "lat": 40.8392951, "lon": -73.9373385 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:forward": "left|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452414072, + "bounds": { + "minlat": 40.8386821, + "minlon": -73.9377692, + "maxlat": 40.8387106, + "maxlon": -73.9377496 + }, + "nodes": [ + 42442703, + 13319854057 + ], + "geometry": [ + { "lat": 40.8386821, "lon": -73.9377692 }, + { "lat": 40.8387106, "lon": -73.9377496 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "through|", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452415234, + "bounds": { + "minlat": 40.8454183, + "minlon": -73.9426268, + "maxlat": 40.8462601, + "maxlon": -73.9406197 + }, + "nodes": [ + 7604384353, + 2499802961, + 7604384423, + 42429479 + ], + "geometry": [ + { "lat": 40.8454183, "lon": -73.9406197 }, + { "lat": 40.8461823, "lon": -73.9424396 }, + { "lat": 40.8462088, "lon": -73.9425129 }, + { "lat": 40.8462601, "lon": -73.9426268 } + ], + "tags": { + "alt_name": "Guadalupe Rodriguez Way", + "description": "This honorary street name memorializes Guadalupe Rodriguez.", + "highway": "residential", + "historic": "memorial", + "lanes": "1", + "name": "West 173rd Street", + "name_1": "West 173 Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "173rd", + "tiger:name_base_1": "173", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1452443143, + "bounds": { + "minlat": 40.8711883, + "minlon": -73.9141504, + "maxlat": 40.8712160, + "maxlon": -73.9141154 + }, + "nodes": [ + 1544809885, + 13320061232 + ], + "geometry": [ + { "lat": 40.8712160, "lon": -73.9141154 }, + { "lat": 40.8711883, "lon": -73.9141504 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443144, + "bounds": { + "minlat": 40.8707672, + "minlon": -73.9146859, + "maxlat": 40.8707886, + "maxlon": -73.9146585 + }, + "nodes": [ + 13320061233, + 1544809886 + ], + "geometry": [ + { "lat": 40.8707886, "lon": -73.9146585 }, + { "lat": 40.8707672, "lon": -73.9146859 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "highway": "primary", + "historic": "memorial", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "ref": "US 9", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443145, + "bounds": { + "minlat": 40.8697590, + "minlon": -73.9160056, + "maxlat": 40.8697721, + "maxlon": -73.9159862 + }, + "nodes": [ + 2034003347, + 11587266239 + ], + "geometry": [ + { "lat": 40.8697590, "lon": -73.9160056 }, + { "lat": 40.8697721, "lon": -73.9159862 } + ], + "tags": { + "alt_name": "Renee Mancino Way", + "description": "This honorary street name memorializes Renee Mancino", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443146, + "bounds": { + "minlat": 40.8693149, + "minlon": -73.9167623, + "maxlat": 40.8693238, + "maxlon": -73.9167458 + }, + "nodes": [ + 13320061234, + 42429236 + ], + "geometry": [ + { "lat": 40.8693149, "lon": -73.9167623 }, + { "lat": 40.8693238, "lon": -73.9167458 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443147, + "bounds": { + "minlat": 40.8681795, + "minlon": -73.9195155, + "maxlat": 40.8681842, + "maxlon": -73.9194970 + }, + "nodes": [ + 13320061235, + 5071822871 + ], + "geometry": [ + { "lat": 40.8681795, "lon": -73.9195155 }, + { "lat": 40.8681842, "lon": -73.9194970 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443148, + "bounds": { + "minlat": 40.8679012, + "minlon": -73.9205774, + "maxlat": 40.8679153, + "maxlon": -73.9205194 + }, + "nodes": [ + 10127304318, + 11586989930, + 13320061236 + ], + "geometry": [ + { "lat": 40.8679012, "lon": -73.9205774 }, + { "lat": 40.8679100, "lon": -73.9205443 }, + { "lat": 40.8679153, "lon": -73.9205194 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443149, + "bounds": { + "minlat": 40.8655306, + "minlon": -73.9272714, + "maxlat": 40.8655390, + "maxlon": -73.9272475 + }, + "nodes": [ + 13320061237, + 42429215 + ], + "geometry": [ + { "lat": 40.8655390, "lon": -73.9272475 }, + { "lat": 40.8655306, "lon": -73.9272714 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:zip_left": "10463", + "tiger:zip_right": "10034", + "turn:lanes": "through|slight_right", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443150, + "bounds": { + "minlat": 40.8655188, + "minlon": -73.9272948, + "maxlat": 40.8655306, + "maxlon": -73.9272714 + }, + "nodes": [ + 13320061238, + 42429215 + ], + "geometry": [ + { "lat": 40.8655188, "lon": -73.9272948 }, + { "lat": 40.8655306, "lon": -73.9272714 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443151, + "bounds": { + "minlat": 40.8652540, + "minlon": -73.9277946, + "maxlat": 40.8652598, + "maxlon": -73.9277837 + }, + "nodes": [ + 13320061239, + 595729841 + ], + "geometry": [ + { "lat": 40.8652540, "lon": -73.9277946 }, + { "lat": 40.8652598, "lon": -73.9277837 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443152, + "bounds": { + "minlat": 40.8650807, + "minlon": -73.9281126, + "maxlat": 40.8651182, + "maxlon": -73.9280485 + }, + "nodes": [ + 42429212, + 9561386479 + ], + "geometry": [ + { "lat": 40.8650807, "lon": -73.9281126 }, + { "lat": 40.8651182, "lon": -73.9280485 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443153, + "bounds": { + "minlat": 40.8650708, + "minlon": -73.9281333, + "maxlat": 40.8650807, + "maxlon": -73.9281126 + }, + "nodes": [ + 13320061240, + 42429212 + ], + "geometry": [ + { "lat": 40.8650708, "lon": -73.9281333 }, + { "lat": 40.8650807, "lon": -73.9281126 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443154, + "bounds": { + "minlat": 40.8634187, + "minlon": -73.9300194, + "maxlat": 40.8634377, + "maxlon": -73.9300111 + }, + "nodes": [ + 42429184, + 13320061241 + ], + "geometry": [ + { "lat": 40.8634187, "lon": -73.9300194 }, + { "lat": 40.8634377, "lon": -73.9300111 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "turn:lanes:backward": "left|none", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443155, + "bounds": { + "minlat": 40.8625671, + "minlon": -73.9299540, + "maxlat": 40.8625988, + "maxlon": -73.9299534 + }, + "nodes": [ + 2052329258, + 1764647101 + ], + "geometry": [ + { "lat": 40.8625671, "lon": -73.9299534 }, + { "lat": 40.8625988, "lon": -73.9299540 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443156, + "bounds": { + "minlat": 40.8586621, + "minlon": -73.9316245, + "maxlat": 40.8590785, + "maxlon": -73.9314426 + }, + "nodes": [ + 13320061242, + 1764387321, + 8904913030 + ], + "geometry": [ + { "lat": 40.8586621, "lon": -73.9316245 }, + { "lat": 40.8589437, "lon": -73.9315042 }, + { "lat": 40.8590785, "lon": -73.9314426 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443157, + "bounds": { + "minlat": 40.8501764, + "minlon": -73.9357231, + "maxlat": 40.8502519, + "maxlon": -73.9356855 + }, + "nodes": [ + 42429029, + 9550791839 + ], + "geometry": [ + { "lat": 40.8501764, "lon": -73.9357231 }, + { "lat": 40.8502519, "lon": -73.9356855 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443158, + "bounds": { + "minlat": 40.8500465, + "minlon": -73.9358238, + "maxlat": 40.8501764, + "maxlon": -73.9357231 + }, + "nodes": [ + 11595000927, + 9550791840, + 42429029 + ], + "geometry": [ + { "lat": 40.8500465, "lon": -73.9358238 }, + { "lat": 40.8500878, "lon": -73.9357759 }, + { "lat": 40.8501764, "lon": -73.9357231 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443159, + "bounds": { + "minlat": 40.8489521, + "minlon": -73.9370618, + "maxlat": 40.8489947, + "maxlon": -73.9370135 + }, + "nodes": [ + 42429023, + 13320061243 + ], + "geometry": [ + { "lat": 40.8489521, "lon": -73.9370618 }, + { "lat": 40.8489947, "lon": -73.9370135 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443160, + "bounds": { + "minlat": 40.8489947, + "minlon": -73.9370135, + "maxlat": 40.8490076, + "maxlon": -73.9369988 + }, + "nodes": [ + 13320061243, + 9550791773 + ], + "geometry": [ + { "lat": 40.8489947, "lon": -73.9370135 }, + { "lat": 40.8490076, "lon": -73.9369988 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "ref": "US 9", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443161, + "bounds": { + "minlat": 40.8489367, + "minlon": -73.9370793, + "maxlat": 40.8489521, + "maxlon": -73.9370618 + }, + "nodes": [ + 13320061244, + 42429023 + ], + "geometry": [ + { "lat": 40.8489367, "lon": -73.9370793 }, + { "lat": 40.8489521, "lon": -73.9370618 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "ref": "US 9", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443162, + "bounds": { + "minlat": 40.8475407, + "minlon": -73.9380397, + "maxlat": 40.8475489, + "maxlon": -73.9380371 + }, + "nodes": [ + 13320061245, + 42429011 + ], + "geometry": [ + { "lat": 40.8475407, "lon": -73.9380397 }, + { "lat": 40.8475489, "lon": -73.9380371 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443163, + "bounds": { + "minlat": 40.8420771, + "minlon": -73.9392635, + "maxlat": 40.8420945, + "maxlon": -73.9392623 + }, + "nodes": [ + 13320061246, + 2499757469 + ], + "geometry": [ + { "lat": 40.8420945, "lon": -73.9392623 }, + { "lat": 40.8420771, "lon": -73.9392635 } + ], + "tags": { + "cycleway:right": "lane", + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10034", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443164, + "bounds": { + "minlat": 40.8420454, + "minlon": -73.9392635, + "maxlat": 40.8420771, + "maxlon": -73.9392448 + }, + "nodes": [ + 13320061247, + 2499757469 + ], + "geometry": [ + { "lat": 40.8420454, "lon": -73.9392448 }, + { "lat": 40.8420771, "lon": -73.9392635 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "10034", + "tiger:zip_right": "10463", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443165, + "bounds": { + "minlat": 40.8416725, + "minlon": -73.9393035, + "maxlat": 40.8416786, + "maxlon": -73.9392999 + }, + "nodes": [ + 13320061248, + 42428980 + ], + "geometry": [ + { "lat": 40.8416725, "lon": -73.9393035 }, + { "lat": 40.8416786, "lon": -73.9392999 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443166, + "bounds": { + "minlat": 40.8410304, + "minlon": -73.9396948, + "maxlat": 40.8410453, + "maxlon": -73.9396840 + }, + "nodes": [ + 13320061249, + 561035382 + ], + "geometry": [ + { "lat": 40.8410304, "lon": -73.9396948 }, + { "lat": 40.8410453, "lon": -73.9396840 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "turn:lanes": "left|through||", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443167, + "bounds": { + "minlat": 40.8407691, + "minlon": -73.9399133, + "maxlat": 40.8410304, + "maxlon": -73.9396948 + }, + "nodes": [ + 4207731297, + 13320061250, + 9566927267, + 13320061249 + ], + "geometry": [ + { "lat": 40.8407691, "lon": -73.9399133 }, + { "lat": 40.8407721, "lon": -73.9399107 }, + { "lat": 40.8409730, "lon": -73.9397362 }, + { "lat": 40.8410304, "lon": -73.9396948 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "turn:lanes": "left|through||", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443168, + "bounds": { + "minlat": 40.8398471, + "minlon": -73.9405865, + "maxlat": 40.8398575, + "maxlon": -73.9405790 + }, + "nodes": [ + 561035381, + 13320061251 + ], + "geometry": [ + { "lat": 40.8398471, "lon": -73.9405865 }, + { "lat": 40.8398575, "lon": -73.9405790 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443169, + "bounds": { + "minlat": 40.8398371, + "minlon": -73.9405938, + "maxlat": 40.8398471, + "maxlon": -73.9405865 + }, + "nodes": [ + 13320061252, + 561035381 + ], + "geometry": [ + { "lat": 40.8398371, "lon": -73.9405938 }, + { "lat": 40.8398471, "lon": -73.9405865 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "2", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443170, + "bounds": { + "minlat": 40.8393772, + "minlon": -73.9409299, + "maxlat": 40.8393918, + "maxlon": -73.9409192 + }, + "nodes": [ + 13320061253, + 9073844906 + ], + "geometry": [ + { "lat": 40.8393772, "lon": -73.9409299 }, + { "lat": 40.8393918, "lon": -73.9409192 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443171, + "bounds": { + "minlat": 40.8391601, + "minlon": -73.9410885, + "maxlat": 40.8391736, + "maxlon": -73.9410786 + }, + "nodes": [ + 561035380, + 13320061254 + ], + "geometry": [ + { "lat": 40.8391601, "lon": -73.9410885 }, + { "lat": 40.8391736, "lon": -73.9410786 } + ], + "tags": { + "alt_name": "Juan Rodriguez Way", + "description": "This honorary street name memorializes Juan Rodriguez.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "3", + "name": "Broadway", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443172, + "bounds": { + "minlat": 40.8391449, + "minlon": -73.9410996, + "maxlat": 40.8391601, + "maxlon": -73.9410885 + }, + "nodes": [ + 13320061255, + 561035380 + ], + "geometry": [ + { "lat": 40.8391449, "lon": -73.9410996 }, + { "lat": 40.8391601, "lon": -73.9410885 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "turn:lanes": "left|through|", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452443173, + "bounds": { + "minlat": 40.8383851, + "minlon": -73.9416526, + "maxlat": 40.8384719, + "maxlon": -73.9415896 + }, + "nodes": [ + 13320061256, + 561035379, + 9935939392 + ], + "geometry": [ + { "lat": 40.8383851, "lon": -73.9416526 }, + { "lat": 40.8384061, "lon": -73.9416375 }, + { "lat": 40.8384719, "lon": -73.9415896 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A21", + "tiger:county": "New York, NY", + "tiger:name_base": "Broadway", + "tiger:name_base_1": "United States Highway 9", + "tiger:reviewed": "no", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452446271, + "bounds": { + "minlat": 40.8481359, + "minlon": -73.9309857, + "maxlat": 40.8481798, + "maxlon": -73.9308802 + }, + "nodes": [ + 42442734, + 13300312259, + 13320096547 + ], + "geometry": [ + { "lat": 40.8481359, "lon": -73.9308802 }, + { "lat": 40.8481632, "lon": -73.9309458 }, + { "lat": 40.8481798, "lon": -73.9309857 } + ], + "tags": { + "bus": "yes", + "busway:both": "lane", + "hgv": "local", + "highway": "tertiary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "motor_vehicle:conditional": "destination @ (Mo-Su 06:00-20:00)", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033", + "turn:lanes:backward": "through|" + } +}, +{ + "type": "way", + "id": 1452446272, + "bounds": { + "minlat": 40.8483096, + "minlon": -73.9313029, + "maxlat": 40.8483116, + "maxlon": -73.9312957 + }, + "nodes": [ + 13320096548, + 4207702048 + ], + "geometry": [ + { "lat": 40.8483096, "lon": -73.9312957 }, + { "lat": 40.8483116, "lon": -73.9313029 } + ], + "tags": { + "alt_name": "Manolo Tavarez Justo Way", + "bus": "yes", + "busway:both": "lane", + "description": "This honorary street name meorializes Manolo Tavarez Justo.", + "hgv": "local", + "highway": "tertiary", + "historic": "memorial", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033", + "turn:lanes:backward": "through|" + } +}, +{ + "type": "way", + "id": 1452447396, + "bounds": { + "minlat": 40.8413000, + "minlon": -73.9356735, + "maxlat": 40.8413149, + "maxlon": -73.9356695 + }, + "nodes": [ + 13320083282, + 6836035787 + ], + "geometry": [ + { "lat": 40.8413000, "lon": -73.9356695 }, + { "lat": 40.8413149, "lon": -73.9356735 } + ], + "tags": { + "alt_name": "Paul Robeson Boulevard", + "alt_name_2": "Officer Michael Buczek Avenue", + "description": "This honorary street name memorializes Paul Robeson.", + "description_2": "This honorary street name memorializes Officer Michael Buczek.", + "highway": "residential", + "historic": "memorial", + "name": "Edgecombe Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Edgecombe", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1452454287, + "bounds": { + "minlat": 40.8304568, + "minlon": -73.9404038, + "maxlat": 40.8304798, + "maxlon": -73.9403469 + }, + "nodes": [ + 42439673, + 13320112968 + ], + "geometry": [ + { "lat": 40.8304568, "lon": -73.9403469 }, + { "lat": 40.8304798, "lon": -73.9404038 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "turn:lanes:backward": "left|none", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452454288, + "bounds": { + "minlat": 40.8303722, + "minlon": -73.9401784, + "maxlat": 40.8303889, + "maxlon": -73.9401371 + }, + "nodes": [ + 4515465264, + 13320112969 + ], + "geometry": [ + { "lat": 40.8303722, "lon": -73.9401371 }, + { "lat": 40.8303889, "lon": -73.9401784 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452454289, + "bounds": { + "minlat": 40.8303169, + "minlon": -73.9400704, + "maxlat": 40.8303442, + "maxlon": -73.9400054 + }, + "nodes": [ + 11221649589, + 764738949 + ], + "geometry": [ + { "lat": 40.8303169, "lon": -73.9400054 }, + { "lat": 40.8303442, "lon": -73.9400704 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:backward": "2", + "lanes:forward": "2", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "turn:lanes:forward": "through|through;right", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452454291, + "bounds": { + "minlat": 40.8292414, + "minlon": -73.9386411, + "maxlat": 40.8297545, + "maxlon": -73.9374202 + }, + "nodes": [ + 8008242806, + 5890746369, + 589927880 + ], + "geometry": [ + { "lat": 40.8292414, "lon": -73.9374202 }, + { "lat": 40.8297076, "lon": -73.9385246 }, + { "lat": 40.8297545, "lon": -73.9386411 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "name": "West 155th Street (surface)", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452454292, + "bounds": { + "minlat": 40.8281871, + "minlon": -73.9350884, + "maxlat": 40.8282376, + "maxlon": -73.9349775 + }, + "nodes": [ + 371337241, + 13003709278 + ], + "geometry": [ + { "lat": 40.8281871, "lon": -73.9349775 }, + { "lat": 40.8282376, "lon": -73.9350884 } + ], + "tags": { + "alt_name": "Charles Hamilton Houston Boulevard", + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "description": "This honorary street name memorializes Charles Hamilton Houston.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "layer": "2", + "name": "West 155th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "turn:lanes:backward": "through|through;right", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 1452454293, + "bounds": { + "minlat": 40.8300931, + "minlon": -73.9396091, + "maxlat": 40.8301558, + "maxlon": -73.9394610 + }, + "nodes": [ + 589927915, + 42439802 + ], + "geometry": [ + { "lat": 40.8300931, "lon": -73.9394610 }, + { "lat": 40.8301558, "lon": -73.9396091 } + ], + "tags": { + "alt_name": "Charles Hamilton Houston Boulevard", + "description": "This honorary street name memorializes Charles Hamilton Houston.", + "hgv": "local", + "highway": "primary", + "historic": "memorial", + "lanes": "4", + "name": "West 155th Street", + "name_1": "West 155 Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1452454294, + "bounds": { + "minlat": 40.8282376, + "minlon": -73.9351367, + "maxlat": 40.8282585, + "maxlon": -73.9350884 + }, + "nodes": [ + 13003709278, + 7612920605, + 13320112970 + ], + "geometry": [ + { "lat": 40.8282376, "lon": -73.9350884 }, + { "lat": 40.8282497, "lon": -73.9351156 }, + { "lat": 40.8282585, "lon": -73.9351367 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Macombs Dam Bridge", + "hgv": "local", + "highway": "primary", + "layer": "2", + "name": "West 155th Street", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "155th", + "tiger:name_base_1": "155", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "turn:lanes:backward": "through|through;right", + "wikidata": "Q6724821", + "wikipedia": "en:Macombs Dam Bridge" + } +}, +{ + "type": "way", + "id": 1452492462, + "bounds": { + "minlat": 40.8772109, + "minlon": -73.9773816, + "maxlat": 40.8773473, + "maxlon": -73.9767314 + }, + "nodes": [ + 103224136, + 12021734785, + 12021734786, + 12021734795, + 12021734794, + 530806400, + 12021734793, + 12021734792, + 530806397, + 12021734791, + 12021734790, + 12021734789, + 13320454012, + 12021734787, + 12021734788, + 103233740 + ], + "geometry": [ + { "lat": 40.8772963, "lon": -73.9767314 }, + { "lat": 40.8773276, "lon": -73.9768119 }, + { "lat": 40.8773370, "lon": -73.9768410 }, + { "lat": 40.8773456, "lon": -73.9768781 }, + { "lat": 40.8773473, "lon": -73.9769162 }, + { "lat": 40.8773412, "lon": -73.9769569 }, + { "lat": 40.8773323, "lon": -73.9769904 }, + { "lat": 40.8773177, "lon": -73.9770222 }, + { "lat": 40.8772337, "lon": -73.9771680 }, + { "lat": 40.8772183, "lon": -73.9772007 }, + { "lat": 40.8772109, "lon": -73.9772357 }, + { "lat": 40.8772114, "lon": -73.9772713 }, + { "lat": 40.8772126, "lon": -73.9772922 }, + { "lat": 40.8772172, "lon": -73.9773108 }, + { "lat": 40.8772299, "lon": -73.9773479 }, + { "lat": 40.8772456, "lon": -73.9773816 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Walton Street", + "oneway": "yes", + "surface": "concrete", + "tiger:cfcc": "A41;A63", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Walton", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07631", + "tiger:zip_right": "07631" + } +}, +{ + "type": "way", + "id": 1452842046, + "bounds": { + "minlat": 40.7231558, + "minlon": -74.0079839, + "maxlat": 40.7232777, + "maxlon": -74.0079678 + }, + "nodes": [ + 13324038871, + 13324038870 + ], + "geometry": [ + { "lat": 40.7231558, "lon": -74.0079839 }, + { "lat": 40.7232777, "lon": -74.0079678 } + ], + "tags": { + "highway": "primary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "Hudson Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "none|none|right" + } +}, +{ + "type": "way", + "id": 1452842047, + "bounds": { + "minlat": 40.7232777, + "minlon": -74.0079678, + "maxlat": 40.7236607, + "maxlon": -74.0079501 + }, + "nodes": [ + 13324038870, + 13324038872, + 13324038869, + 4142105822 + ], + "geometry": [ + { "lat": 40.7232777, "lon": -74.0079678 }, + { "lat": 40.7233788, "lon": -74.0079571 }, + { "lat": 40.7235744, "lon": -74.0079522 }, + { "lat": 40.7236607, "lon": -74.0079501 } + ], + "tags": { + "highway": "primary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Hudson Street", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "slight_right|slight_right" + } +}, +{ + "type": "way", + "id": 1453061210, + "bounds": { + "minlat": 40.8103315, + "minlon": -74.0132816, + "maxlat": 40.8105119, + "maxlon": -74.0129289 + }, + "nodes": [ + 13325885482, + 13325885484, + 13325885489, + 13325885483 + ], + "geometry": [ + { "lat": 40.8105119, "lon": -74.0132816 }, + { "lat": 40.8104758, "lon": -74.0132111 }, + { "lat": 40.8104510, "lon": -74.0131626 }, + { "lat": 40.8103315, "lon": -74.0129289 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1453061211, + "bounds": { + "minlat": 40.8101497, + "minlon": -74.0134233, + "maxlat": 40.8103548, + "maxlon": -74.0130364 + }, + "nodes": [ + 13325885485, + 13325885487, + 13325885488, + 13325885486 + ], + "geometry": [ + { "lat": 40.8103548, "lon": -74.0134233 }, + { "lat": 40.8103158, "lon": -74.0133497 }, + { "lat": 40.8102916, "lon": -74.0133041 }, + { "lat": 40.8101497, "lon": -74.0130364 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1453061212, + "bounds": { + "minlat": 40.8102916, + "minlon": -74.0133041, + "maxlat": 40.8104510, + "maxlon": -74.0131626 + }, + "nodes": [ + 13325885488, + 13325885489 + ], + "geometry": [ + { "lat": 40.8102916, "lon": -74.0133041 }, + { "lat": 40.8104510, "lon": -74.0131626 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1453269687, + "bounds": { + "minlat": 40.7886801, + "minlon": -73.9273787, + "maxlat": 40.7887820, + "maxlon": -73.9271633 + }, + "nodes": [ + 13327650499, + 3040262726, + 13327650500 + ], + "geometry": [ + { "lat": 40.7886801, "lon": -73.9271633 }, + { "lat": 40.7887191, "lon": -73.9272452 }, + { "lat": 40.7887820, "lon": -73.9273787 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1453277186, + "bounds": { + "minlat": 40.7895183, + "minlon": -73.9271215, + "maxlat": 40.7895727, + "maxlon": -73.9268961 + }, + "nodes": [ + 7890202648, + 13327706975 + ], + "geometry": [ + { "lat": 40.7895727, "lon": -73.9271215 }, + { "lat": 40.7895183, "lon": -73.9268961 } + ], + "tags": { + "highway": "unclassified", + "name": "Rivers Edge Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1453277187, + "bounds": { + "minlat": 40.7895183, + "minlon": -73.9270485, + "maxlat": 40.7896523, + "maxlon": -73.9268961 + }, + "nodes": [ + 13327706975, + 7890202647 + ], + "geometry": [ + { "lat": 40.7895183, "lon": -73.9268961 }, + { "lat": 40.7896523, "lon": -73.9270485 } + ], + "tags": { + "highway": "unclassified", + "name": "Rivers Edge Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1453277188, + "bounds": { + "minlat": 40.7893581, + "minlon": -73.9265558, + "maxlat": 40.7895053, + "maxlon": -73.9264094 + }, + "nodes": [ + 277482211, + 277482212 + ], + "geometry": [ + { "lat": 40.7895053, "lon": -73.9264094 }, + { "lat": 40.7893581, "lon": -73.9265558 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "lcn": "yes", + "name": "Central Road", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1453542211, + "bounds": { + "minlat": 40.8195091, + "minlon": -73.9280253, + "maxlat": 40.8198002, + "maxlon": -73.9269493 + }, + "nodes": [ + 42733563, + 12162740213, + 42733560, + 7610855254, + 13250295308, + 42733555 + ], + "geometry": [ + { "lat": 40.8195091, "lon": -73.9269493 }, + { "lat": 40.8195324, "lon": -73.9270439 }, + { "lat": 40.8196040, "lon": -73.9273061 }, + { "lat": 40.8196442, "lon": -73.9274534 }, + { "lat": 40.8197762, "lon": -73.9279374 }, + { "lat": 40.8198002, "lon": -73.9280253 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "East 150th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "150th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1453881121, + "bounds": { + "minlat": 40.7026311, + "minlon": -73.9686538, + "maxlat": 40.7030623, + "maxlon": -73.9679761 + }, + "nodes": [ + 13333654388, + 13333654389, + 13333654390, + 13333654391 + ], + "geometry": [ + { "lat": 40.7026311, "lon": -73.9686538 }, + { "lat": 40.7026878, "lon": -73.9685825 }, + { "lat": 40.7026557, "lon": -73.9684006 }, + { "lat": 40.7030623, "lon": -73.9679761 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1453922322, + "bounds": { + "minlat": 40.8291154, + "minlon": -73.9374202, + "maxlat": 40.8292414, + "maxlon": -73.9371276 + }, + "nodes": [ + 8008242811, + 589927879, + 8008242806 + ], + "geometry": [ + { "lat": 40.8291154, "lon": -73.9371276 }, + { "lat": 40.8291804, "lon": -73.9372833 }, + { "lat": 40.8292414, "lon": -73.9374202 } + ], + "tags": { + "hgv": "destination", + "highway": "tertiary", + "name": "West 155th Street (surface)", + "oneway": "no", + "sidewalk:both": "separate", + "wikidata": "Q14706137", + "wikipedia": "en:155th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1454575893, + "bounds": { + "minlat": 40.7019216, + "minlon": -73.9872864, + "maxlat": 40.7024407, + "maxlon": -73.9872371 + }, + "nodes": [ + 13339698315, + 13339698318, + 13339698317, + 13339698316 + ], + "geometry": [ + { "lat": 40.7019216, "lon": -73.9872864 }, + { "lat": 40.7023509, "lon": -73.9872456 }, + { "lat": 40.7023888, "lon": -73.9872420 }, + { "lat": 40.7024407, "lon": -73.9872371 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1454815499, + "bounds": { + "minlat": 40.7740505, + "minlon": -73.9839209, + "maxlat": 40.7740634, + "maxlon": -73.9838921 + }, + "nodes": [ + 13341784858, + 13341784859 + ], + "geometry": [ + { "lat": 40.7740505, "lon": -73.9838921 }, + { "lat": 40.7740634, "lon": -73.9839209 } + ], + "tags": { + "highway": "service", + "service": "drive-through", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1455345748, + "bounds": { + "minlat": 40.7507733, + "minlon": -73.9744736, + "maxlat": 40.7522917, + "maxlon": -73.9733703 + }, + "nodes": [ + 11337295608, + 10125260544, + 11043182114, + 10125260543, + 42449947, + 10125260535, + 10125260538, + 12463559806, + 10125260534, + 13346921456 + ], + "geometry": [ + { "lat": 40.7507733, "lon": -73.9744736 }, + { "lat": 40.7508767, "lon": -73.9743981 }, + { "lat": 40.7511837, "lon": -73.9741737 }, + { "lat": 40.7513938, "lon": -73.9740202 }, + { "lat": 40.7514615, "lon": -73.9739708 }, + { "lat": 40.7515143, "lon": -73.9739322 }, + { "lat": 40.7520163, "lon": -73.9735654 }, + { "lat": 40.7520749, "lon": -73.9735225 }, + { "lat": 40.7521337, "lon": -73.9734796 }, + { "lat": 40.7522917, "lon": -73.9733703 } + ], + "tags": { + "bus:lanes": "|||designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:smoothness": "excellent", + "cycleway:left:traffic_mode:left": "parking_lane", + "cycleway:left:width": "3m", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "21.3", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1455345749, + "bounds": { + "minlat": 40.7522917, + "minlon": -73.9733703, + "maxlat": 40.7527044, + "maxlon": -73.9730626 + }, + "nodes": [ + 13346921456, + 10125260523, + 42444051 + ], + "geometry": [ + { "lat": 40.7522917, "lon": -73.9733703 }, + { "lat": 40.7526440, "lon": -73.9731067 }, + { "lat": 40.7527044, "lon": -73.9730626 } + ], + "tags": { + "bus:lanes": "||||designated", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:left:smoothness": "excellent", + "cycleway:left:width": "3m", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||||", + "width": "21.3", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1455345750, + "bounds": { + "minlat": 40.7527044, + "minlon": -73.9730626, + "maxlat": 40.7548973, + "maxlon": -73.9714602 + }, + "nodes": [ + 42444051, + 10125260522, + 10125260521, + 42434087, + 10125260520, + 12673751288, + 42449954, + 12673751286, + 11043182112, + 10125260531, + 42448813, + 10125255971, + 13346921457 + ], + "geometry": [ + { "lat": 40.7527044, "lon": -73.9730626 }, + { "lat": 40.7527627, "lon": -73.9730200 }, + { "lat": 40.7532696, "lon": -73.9726495 }, + { "lat": 40.7533320, "lon": -73.9726040 }, + { "lat": 40.7533940, "lon": -73.9725587 }, + { "lat": 40.7538980, "lon": -73.9721904 }, + { "lat": 40.7539543, "lon": -73.9721493 }, + { "lat": 40.7540148, "lon": -73.9721051 }, + { "lat": 40.7542849, "lon": -73.9719077 }, + { "lat": 40.7545207, "lon": -73.9717354 }, + { "lat": 40.7545778, "lon": -73.9716937 }, + { "lat": 40.7546456, "lon": -73.9716441 }, + { "lat": 40.7548973, "lon": -73.9714602 } + ], + "tags": { + "bus:lanes": "|||designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:smoothness": "excellent", + "cycleway:left:traffic_mode": "parking_lane", + "cycleway:left:width": "3m", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "21.3", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1455345751, + "bounds": { + "minlat": 40.7548973, + "minlon": -73.9714602, + "maxlat": 40.7552045, + "maxlon": -73.9712357 + }, + "nodes": [ + 13346921457, + 10125255970, + 42438891 + ], + "geometry": [ + { "lat": 40.7548973, "lon": -73.9714602 }, + { "lat": 40.7551489, "lon": -73.9712763 }, + { "lat": 40.7552045, "lon": -73.9712357 } + ], + "tags": { + "bus:lanes": "||||designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||||", + "width": "21.3", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1455345752, + "bounds": { + "minlat": 40.7552045, + "minlon": -73.9712357, + "maxlat": 40.7560995, + "maxlon": -73.9705817 + }, + "nodes": [ + 42438891, + 10125255969, + 10125255968, + 42449956, + 10125255967, + 13346921458 + ], + "geometry": [ + { "lat": 40.7552045, "lon": -73.9712357 }, + { "lat": 40.7552621, "lon": -73.9711936 }, + { "lat": 40.7557748, "lon": -73.9708190 }, + { "lat": 40.7558333, "lon": -73.9707763 }, + { "lat": 40.7558952, "lon": -73.9707310 }, + { "lat": 40.7560995, "lon": -73.9705817 } + ], + "tags": { + "bus:lanes": "|||designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "21.3", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1455345753, + "bounds": { + "minlat": 40.7560995, + "minlon": -73.9705817, + "maxlat": 40.7564579, + "maxlon": -73.9703198 + }, + "nodes": [ + 13346921458, + 10125255964, + 42440463 + ], + "geometry": [ + { "lat": 40.7560995, "lon": -73.9705817 }, + { "lat": 40.7563939, "lon": -73.9703666 }, + { "lat": 40.7564579, "lon": -73.9703198 } + ], + "tags": { + "bus:lanes": "||||designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "cycleway:left:smoothness": "good", + "cycleway:left:width": "3m", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left||||", + "width": "21.3", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1455424162, + "bounds": { + "minlat": 40.8625686, + "minlon": -73.9202454, + "maxlat": 40.8627275, + "maxlon": -73.9198420 + }, + "nodes": [ + 13347615988, + 13347615989, + 13347615990, + 13347615991, + 13347615992, + 13347615993 + ], + "geometry": [ + { "lat": 40.8626818, "lon": -73.9202454 }, + { "lat": 40.8626639, "lon": -73.9202100 }, + { "lat": 40.8626244, "lon": -73.9201181 }, + { "lat": 40.8626122, "lon": -73.9200862 }, + { "lat": 40.8625686, "lon": -73.9199499 }, + { "lat": 40.8627275, "lon": -73.9198420 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1455726342, + "bounds": { + "minlat": 40.8259007, + "minlon": -73.9874483, + "maxlat": 40.8265049, + "maxlon": -73.9872740 + }, + "nodes": [ + 5341032755, + 5341032757, + 5341032749, + 13525873344, + 5341032751, + 103207079 + ], + "geometry": [ + { "lat": 40.8259007, "lon": -73.9874483 }, + { "lat": 40.8261494, "lon": -73.9873235 }, + { "lat": 40.8262485, "lon": -73.9873094 }, + { "lat": 40.8262985, "lon": -73.9873031 }, + { "lat": 40.8263544, "lon": -73.9872960 }, + { "lat": 40.8265049, "lon": -73.9872740 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "1", + "name": "Anderson Avenue", + "oneway": "yes", + "ref": "CR 29", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 1455726343, + "bounds": { + "minlat": 40.8256397, + "minlon": -73.9874483, + "maxlat": 40.8259007, + "maxlon": -73.9874017 + }, + "nodes": [ + 5341032755, + 5341032747, + 5341032746, + 103175945 + ], + "geometry": [ + { "lat": 40.8259007, "lon": -73.9874483 }, + { "lat": 40.8258206, "lon": -73.9874241 }, + { "lat": 40.8257176, "lon": -73.9874187 }, + { "lat": 40.8256397, "lon": -73.9874017 } + ], + "tags": { + "Bergen_County_database_ref": "S-25", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000S25", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "1", + "name": "Gorge Road", + "oneway": "yes", + "ref": "CR S-25", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Gorge; Gorge; George", + "tiger:name_type": "Rd", + "tiger:reviewed": "no", + "tiger:zip_left": "07010", + "tiger:zip_right": "07010" + } +}, +{ + "type": "way", + "id": 1455726344, + "bounds": { + "minlat": 40.8255775, + "minlon": -73.9877096, + "maxlat": 40.8260585, + "maxlon": -73.9874859 + }, + "nodes": [ + 103245947, + 103245945, + 103245943 + ], + "geometry": [ + { "lat": 40.8260585, "lon": -73.9874859 }, + { "lat": 40.8256982, "lon": -73.9876737 }, + { "lat": 40.8255775, "lon": -73.9877096 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "cycleway:right": "no", + "highway": "secondary", + "lanes": "1", + "name": "Anderson Avenue", + "oneway": "yes", + "ref": "CR 29", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024" + } +}, +{ + "type": "way", + "id": 1455875105, + "bounds": { + "minlat": 40.7032066, + "minlon": -73.9880620, + "maxlat": 40.7032387, + "maxlon": -73.9879714 + }, + "nodes": [ + 2342950021, + 13352208760 + ], + "geometry": [ + { "lat": 40.7032066, "lon": -73.9880620 }, + { "lat": 40.7032387, "lon": -73.9879714 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1455875109, + "bounds": { + "minlat": 40.7031267, + "minlon": -73.9880124, + "maxlat": 40.7032956, + "maxlon": -73.9878907 + }, + "nodes": [ + 13105960095, + 13352208760, + 10170379787 + ], + "geometry": [ + { "lat": 40.7031267, "lon": -73.9878907 }, + { "lat": 40.7032387, "lon": -73.9879714 }, + { "lat": 40.7032956, "lon": -73.9880124 } + ], + "tags": { + "highway": "pedestrian", + "proposed": "cycleway" + } +}, +{ + "type": "way", + "id": 1455875110, + "bounds": { + "minlat": 40.7026318, + "minlon": -73.9878907, + "maxlat": 40.7031267, + "maxlon": -73.9877023 + }, + "nodes": [ + 13105960095, + 2342950002 + ], + "geometry": [ + { "lat": 40.7031267, "lon": -73.9878907 }, + { "lat": 40.7026318, "lon": -73.9877023 } + ], + "tags": { + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1456053702, + "bounds": { + "minlat": 40.8593415, + "minlon": -73.9720523, + "maxlat": 40.8598510, + "maxlon": -73.9714030 + }, + "nodes": [ + 6895002526, + 76463559, + 7377058291, + 76463560, + 7921656485, + 7921644066, + 7921644070, + 299386519 + ], + "geometry": [ + { "lat": 40.8598510, "lon": -73.9714030 }, + { "lat": 40.8598179, "lon": -73.9714785 }, + { "lat": 40.8597155, "lon": -73.9716115 }, + { "lat": 40.8596606, "lon": -73.9716768 }, + { "lat": 40.8595764, "lon": -73.9717748 }, + { "lat": 40.8594964, "lon": -73.9718690 }, + { "lat": 40.8594021, "lon": -73.9719744 }, + { "lat": 40.8593415, "lon": -73.9720523 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000009W", + "highway": "trunk", + "lanes": "2", + "maxspeed": "30 mph", + "name": "Fletcher Avenue", + "oneway": "yes", + "ref": "US 9W", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1456826126, + "bounds": { + "minlat": 40.7216865, + "minlon": -74.0043107, + "maxlat": 40.7217394, + "maxlon": -74.0041976 + }, + "nodes": [ + 13360853067, + 13360853068, + 13360853069 + ], + "geometry": [ + { "lat": 40.7217394, "lon": -74.0043107 }, + { "lat": 40.7217002, "lon": -74.0042282 }, + { "lat": 40.7216865, "lon": -74.0041976 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1457176536, + "bounds": { + "minlat": 40.7952667, + "minlon": -73.9318111, + "maxlat": 40.7953685, + "maxlon": -73.9317880 + }, + "nodes": [ + 2765482221, + 13363913188 + ], + "geometry": [ + { "lat": 40.7952667, "lon": -73.9317880 }, + { "lat": 40.7953685, "lon": -73.9318111 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1457176537, + "bounds": { + "minlat": 40.7952803, + "minlon": -73.9317659, + "maxlat": 40.7953482, + "maxlon": -73.9317503 + }, + "nodes": [ + 13363913189, + 13363913190 + ], + "geometry": [ + { "lat": 40.7952803, "lon": -73.9317503 }, + { "lat": 40.7953482, "lon": -73.9317659 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1457176538, + "bounds": { + "minlat": 40.7952635, + "minlon": -73.9317261, + "maxlat": 40.7953304, + "maxlon": -73.9317094 + }, + "nodes": [ + 13363913191, + 13363913192 + ], + "geometry": [ + { "lat": 40.7952635, "lon": -73.9317094 }, + { "lat": 40.7953304, "lon": -73.9317261 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1457395879, + "bounds": { + "minlat": 40.7249640, + "minlon": -73.9229210, + "maxlat": 40.7251069, + "maxlon": -73.9228238 + }, + "nodes": [ + 13366310654, + 6420466826 + ], + "geometry": [ + { "lat": 40.7249640, "lon": -73.9229210 }, + { "lat": 40.7251069, "lon": -73.9228238 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1457395880, + "bounds": { + "minlat": 40.7263296, + "minlon": -73.9253560, + "maxlat": 40.7264584, + "maxlon": -73.9250475 + }, + "nodes": [ + 7712051785, + 13366310659 + ], + "geometry": [ + { "lat": 40.7263296, "lon": -73.9250475 }, + { "lat": 40.7264584, "lon": -73.9253560 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1457669034, + "bounds": { + "minlat": 40.8487821, + "minlon": -73.9332106, + "maxlat": 40.8491056, + "maxlon": -73.9324343 + }, + "nodes": [ + 9550791857, + 13382854403, + 4215780090 + ], + "geometry": [ + { "lat": 40.8487821, "lon": -73.9324343 }, + { "lat": 40.8489982, "lon": -73.9329606 }, + { "lat": 40.8491056, "lon": -73.9332106 } + ], + "tags": { + "bus": "yes", + "busway:both": "lane", + "hgv": "local", + "highway": "tertiary", + "motor_vehicle:conditional": "destination @ (Mo-Su 06:00-20:00)", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033", + "turn:lanes:backward": "|right" + } +}, +{ + "type": "way", + "id": 1457886237, + "bounds": { + "minlat": 40.7126680, + "minlon": -74.0044121, + "maxlat": 40.7127409, + "maxlon": -74.0043573 + }, + "nodes": [ + 1272562861, + 9377509596 + ], + "geometry": [ + { "lat": 40.7126680, "lon": -74.0044121 }, + { "lat": 40.7127409, "lon": -74.0043573 } + ], + "tags": { + "expressway": "yes", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1457891037, + "bounds": { + "minlat": 40.8107216, + "minlon": -73.9276913, + "maxlat": 40.8107603, + "maxlon": -73.9276433 + }, + "nodes": [ + 9582307233, + 8915998957 + ], + "geometry": [ + { "lat": 40.8107603, "lon": -73.9276433 }, + { "lat": 40.8107216, "lon": -73.9276913 } + ], + "tags": { + "alt_name": "Third Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1457891038, + "bounds": { + "minlat": 40.8107419, + "minlon": -73.9281120, + "maxlat": 40.8108485, + "maxlon": -73.9279745 + }, + "nodes": [ + 9582307245, + 9582307243, + 9582307235, + 9582307260 + ], + "geometry": [ + { "lat": 40.8108485, "lon": -73.9279745 }, + { "lat": 40.8108057, "lon": -73.9280454 }, + { "lat": 40.8107656, "lon": -73.9281120 }, + { "lat": 40.8107419, "lon": -73.9280865 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1457891039, + "bounds": { + "minlat": 40.8108485, + "minlon": -73.9279745, + "maxlat": 40.8108883, + "maxlon": -73.9279083 + }, + "nodes": [ + 9582307247, + 9582307245 + ], + "geometry": [ + { "lat": 40.8108883, "lon": -73.9279083 }, + { "lat": 40.8108485, "lon": -73.9279745 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1457891040, + "bounds": { + "minlat": 40.8108883, + "minlon": -73.9279083, + "maxlat": 40.8109336, + "maxlon": -73.9278332 + }, + "nodes": [ + 9582307234, + 9582307247 + ], + "geometry": [ + { "lat": 40.8109336, "lon": -73.9278332 }, + { "lat": 40.8108883, "lon": -73.9279083 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1457891041, + "bounds": { + "minlat": 40.8108086, + "minlon": -73.9278060, + "maxlat": 40.8108502, + "maxlon": -73.9277434 + }, + "nodes": [ + 9582307246, + 9582307248 + ], + "geometry": [ + { "lat": 40.8108086, "lon": -73.9278060 }, + { "lat": 40.8108502, "lon": -73.9277434 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1457891042, + "bounds": { + "minlat": 40.8107217, + "minlon": -73.9279570, + "maxlat": 40.8107625, + "maxlon": -73.9278809 + }, + "nodes": [ + 9582307242, + 9582307244 + ], + "geometry": [ + { "lat": 40.8107217, "lon": -73.9279570 }, + { "lat": 40.8107625, "lon": -73.9278809 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1457891043, + "bounds": { + "minlat": 40.8106815, + "minlon": -73.9280215, + "maxlat": 40.8107217, + "maxlon": -73.9279570 + }, + "nodes": [ + 9582307249, + 9582307242 + ], + "geometry": [ + { "lat": 40.8106815, "lon": -73.9280215 }, + { "lat": 40.8107217, "lon": -73.9279570 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1457891044, + "bounds": { + "minlat": 40.8104864, + "minlon": -73.9280105, + "maxlat": 40.8105662, + "maxlon": -73.9278974 + }, + "nodes": [ + 9582307236, + 42737695 + ], + "geometry": [ + { "lat": 40.8105662, "lon": -73.9278974 }, + { "lat": 40.8104864, "lon": -73.9280105 } + ], + "tags": { + "alt_name": "Third Avenue", + "bicycle": "yes", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1457891045, + "bounds": { + "minlat": 40.8107625, + "minlon": -73.9278809, + "maxlat": 40.8108086, + "maxlon": -73.9278060 + }, + "nodes": [ + 9582307244, + 9582307246 + ], + "geometry": [ + { "lat": 40.8107625, "lon": -73.9278809 }, + { "lat": 40.8108086, "lon": -73.9278060 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1457891046, + "bounds": { + "minlat": 40.8106725, + "minlon": -73.9289072, + "maxlat": 40.8111472, + "maxlon": -73.9282660 + }, + "nodes": [ + 9582307237, + 6042442596, + 8285464361, + 11882279885, + 42737608 + ], + "geometry": [ + { "lat": 40.8106725, "lon": -73.9282660 }, + { "lat": 40.8108538, "lon": -73.9285151 }, + { "lat": 40.8110874, "lon": -73.9288273 }, + { "lat": 40.8111113, "lon": -73.9288592 }, + { "lat": 40.8111472, "lon": -73.9289072 } + ], + "tags": { + "highway": "residential", + "name": "East 137th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "137th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1457891909, + "bounds": { + "minlat": 40.8055718, + "minlon": -73.9343963, + "maxlat": 40.8056429, + "maxlon": -73.9342141 + }, + "nodes": [ + 9153702893, + 3702296508 + ], + "geometry": [ + { "lat": 40.8056429, "lon": -73.9343963 }, + { "lat": 40.8055718, "lon": -73.9342141 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 128th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1457892933, + "bounds": { + "minlat": 40.8040729, + "minlon": -73.9328383, + "maxlat": 40.8041443, + "maxlon": -73.9326682 + }, + "nodes": [ + 7929465218, + 9903045888, + 42443118 + ], + "geometry": [ + { "lat": 40.8041443, "lon": -73.9328383 }, + { "lat": 40.8041131, "lon": -73.9327639 }, + { "lat": 40.8040729, "lon": -73.9326682 } + ], + "tags": { + "cycleway:both": "no", + "highway": "secondary", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "East 127th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1458199190, + "bounds": { + "minlat": 40.7926293, + "minlon": -74.0072249, + "maxlat": 40.7930569, + "maxlon": -74.0069379 + }, + "nodes": [ + 13373230708, + 13373230709, + 13373230710, + 13373230711, + 13373230712 + ], + "geometry": [ + { "lat": 40.7926293, "lon": -74.0072249 }, + { "lat": 40.7926763, "lon": -74.0071867 }, + { "lat": 40.7928604, "lon": -74.0070420 }, + { "lat": 40.7929124, "lon": -74.0070515 }, + { "lat": 40.7930569, "lon": -74.0069379 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1458787430, + "bounds": { + "minlat": 40.8208401, + "minlon": -73.9913688, + "maxlat": 40.8209766, + "maxlon": -73.9912483 + }, + "nodes": [ + 5703669056, + 7607890803, + 4205589212 + ], + "geometry": [ + { "lat": 40.8208401, "lon": -73.9913688 }, + { "lat": 40.8209260, "lon": -73.9912965 }, + { "lat": 40.8209766, "lon": -73.9912483 } + ], + "tags": { + "Bergen_County_database_ref": "29", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000029", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Anderson Avenue", + "ref": "CR 29", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Anderson", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07022:07024", + "tiger:zip_right": "07022:07024", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 1458787431, + "bounds": { + "minlat": 40.8209766, + "minlon": -73.9916433, + "maxlat": 40.8211063, + "maxlon": -73.9912483 + }, + "nodes": [ + 4205589212, + 13524700360, + 5703669051, + 5703669052, + 5703669053 + ], + "geometry": [ + { "lat": 40.8209766, "lon": -73.9912483 }, + { "lat": 40.8210037, "lon": -73.9913612 }, + { "lat": 40.8210291, "lon": -73.9914668 }, + { "lat": 40.8211030, "lon": -73.9916216 }, + { "lat": 40.8211063, "lon": -73.9916433 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1458857123, + "bounds": { + "minlat": 40.7609890, + "minlon": -73.9627835, + "maxlat": 40.7614575, + "maxlon": -73.9624612 + }, + "nodes": [ + 4918486106, + 10170756503, + 593300940 + ], + "geometry": [ + { "lat": 40.7609890, "lon": -73.9627835 }, + { "lat": 40.7613995, "lon": -73.9625011 }, + { "lat": 40.7614575, "lon": -73.9624612 } + ], + "tags": { + "covered": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Queensboro Bridge Exit", + "oneway": "yes", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1459223490, + "bounds": { + "minlat": 40.8493210, + "minlon": -73.9338666, + "maxlat": 40.8493792, + "maxlon": -73.9337310 + }, + "nodes": [ + 42433066, + 5403873760 + ], + "geometry": [ + { "lat": 40.8493210, "lon": -73.9337310 }, + { "lat": 40.8493792, "lon": -73.9338666 } + ], + "tags": { + "alt_name": "Manolo Tavarez Justo Way", + "bus": "yes", + "busway:both": "lane", + "description": "This honorary street name memorializes Manolo Tavarez Justo.", + "hgv": "local", + "highway": "tertiary", + "historic": "memorial", + "motor_vehicle:conditional": "destination @ (Mo-Su 06:00-20:00)", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1459482686, + "bounds": { + "minlat": 40.7528956, + "minlon": -73.9205459, + "maxlat": 40.7531151, + "maxlon": -73.9198431 + }, + "nodes": [ + 13385673849, + 13385673848, + 13385673847, + 13385673846, + 13385673845 + ], + "geometry": [ + { "lat": 40.7529079, "lon": -73.9205459 }, + { "lat": 40.7529157, "lon": -73.9204449 }, + { "lat": 40.7529484, "lon": -73.9202186 }, + { "lat": 40.7528956, "lon": -73.9198552 }, + { "lat": 40.7531151, "lon": -73.9198431 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1459546003, + "bounds": { + "minlat": 40.7473668, + "minlon": -73.9762306, + "maxlat": 40.7474210, + "maxlon": -73.9759943 + }, + "nodes": [ + 9140729335, + 1701844605 + ], + "geometry": [ + { "lat": 40.7473668, "lon": -73.9759943 }, + { "lat": 40.7474210, "lon": -73.9762306 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 37th Street", + "name:ru": "Восточная 37-я стрит", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1459749693, + "bounds": { + "minlat": 40.8171121, + "minlon": -74.0145689, + "maxlat": 40.8176436, + "maxlon": -74.0141034 + }, + "nodes": [ + 13388097657, + 13388097658, + 13388097659, + 13388097660 + ], + "geometry": [ + { "lat": 40.8176117, "lon": -74.0141034 }, + { "lat": 40.8176436, "lon": -74.0141995 }, + { "lat": 40.8172036, "lon": -74.0145689 }, + { "lat": 40.8171121, "lon": -74.0144034 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1459749694, + "bounds": { + "minlat": 40.8163463, + "minlon": -74.0153354, + "maxlat": 40.8165145, + "maxlon": -74.0150083 + }, + "nodes": [ + 13388097661, + 13388097662 + ], + "geometry": [ + { "lat": 40.8165145, "lon": -74.0153354 }, + { "lat": 40.8163463, "lon": -74.0150083 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1459749695, + "bounds": { + "minlat": 40.8186152, + "minlon": -74.0158011, + "maxlat": 40.8189286, + "maxlon": -74.0155300 + }, + "nodes": [ + 13388097663, + 13388097664 + ], + "geometry": [ + { "lat": 40.8189286, "lon": -74.0155300 }, + { "lat": 40.8186152, "lon": -74.0158011 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1459749696, + "bounds": { + "minlat": 40.8177916, + "minlon": -74.0145304, + "maxlat": 40.8183801, + "maxlon": -74.0140148 + }, + "nodes": [ + 13388097665, + 13388097666, + 13388097667, + 13388097668, + 13388097669, + 13388097670, + 13388097671, + 3740793578 + ], + "geometry": [ + { "lat": 40.8183801, "lon": -74.0145236 }, + { "lat": 40.8182657, "lon": -74.0145304 }, + { "lat": 40.8182050, "lon": -74.0145156 }, + { "lat": 40.8181668, "lon": -74.0144885 }, + { "lat": 40.8179784, "lon": -74.0141650 }, + { "lat": 40.8179322, "lon": -74.0141237 }, + { "lat": 40.8178445, "lon": -74.0140908 }, + { "lat": 40.8177916, "lon": -74.0140148 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1459805124, + "bounds": { + "minlat": 40.7698371, + "minlon": -73.9175819, + "maxlat": 40.7699532, + "maxlon": -73.9170380 + }, + "nodes": [ + 13388597589, + 1934650076 + ], + "geometry": [ + { "lat": 40.7699532, "lon": -73.9175819 }, + { "lat": 40.7698371, "lon": -73.9170380 } + ], + "tags": { + "foot": "yes", + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Astoria Boulevard South", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q4811095", + "wikipedia": "en:Astoria Boulevard" + } +}, +{ + "type": "way", + "id": 1460180790, + "bounds": { + "minlat": 40.8198522, + "minlon": -73.9427276, + "maxlat": 40.8203421, + "maxlon": -73.9423711 + }, + "nodes": [ + 13392115771, + 13392115773, + 13392115772 + ], + "geometry": [ + { "lat": 40.8198522, "lon": -73.9427276 }, + { "lat": 40.8199134, "lon": -73.9426831 }, + { "lat": 40.8203421, "lon": -73.9423711 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1460812419, + "bounds": { + "minlat": 40.8458147, + "minlon": -73.9137041, + "maxlat": 40.8459638, + "maxlon": -73.9135977 + }, + "nodes": [ + 42725658, + 2408357249 + ], + "geometry": [ + { "lat": 40.8459638, "lon": -73.9135977 }, + { "lat": 40.8458147, "lon": -73.9137041 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Jerome Avenue", + "name:etymology:wikidata": "Q6182870", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Jerome", + "tiger:name_type": "Ave", + "tiger:zip_left": "10468", + "tiger:zip_right": "10468", + "wikidata": "Q6182571", + "wikipedia": "en:Jerome Avenue" + } +}, +{ + "type": "way", + "id": 1461079705, + "bounds": { + "minlat": 40.8795134, + "minlon": -73.9178887, + "maxlat": 40.8803639, + "maxlon": -73.9167579 + }, + "nodes": [ + 12064370407, + 374457448, + 12064370408, + 1545207049, + 42747768, + 1545207081, + 1545207078, + 1545207080, + 1545136703, + 42747763 + ], + "geometry": [ + { "lat": 40.8803639, "lon": -73.9178887 }, + { "lat": 40.8803450, "lon": -73.9178380 }, + { "lat": 40.8803236, "lon": -73.9177835 }, + { "lat": 40.8802551, "lon": -73.9176375 }, + { "lat": 40.8801694, "lon": -73.9174739 }, + { "lat": 40.8800565, "lon": -73.9172955 }, + { "lat": 40.8799681, "lon": -73.9171720 }, + { "lat": 40.8798446, "lon": -73.9170455 }, + { "lat": 40.8797011, "lon": -73.9169254 }, + { "lat": 40.8795134, "lon": -73.9167579 } + ], + "tags": { + "highway": "tertiary", + "name": "Kappock Street", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Kappock", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1462549068, + "bounds": { + "minlat": 40.8506940, + "minlon": -73.9286543, + "maxlat": 40.8511930, + "maxlon": -73.9274770 + }, + "nodes": [ + 42442755, + 9421763707, + 7134871416, + 11595082069, + 9566892698, + 42445672 + ], + "geometry": [ + { "lat": 40.8511930, "lon": -73.9286543 }, + { "lat": 40.8511380, "lon": -73.9285246 }, + { "lat": 40.8510165, "lon": -73.9282378 }, + { "lat": 40.8507452, "lon": -73.9275978 }, + { "lat": 40.8507300, "lon": -73.9275619 }, + { "lat": 40.8506940, "lon": -73.9274770 } + ], + "tags": { + "highway": "residential", + "name": "West 186th Street", + "name_1": "West 186 Street", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "186th", + "tiger:name_base_1": "186", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1462663361, + "bounds": { + "minlat": 40.7470130, + "minlon": -73.9771862, + "maxlat": 40.7476401, + "maxlon": -73.9767589 + }, + "nodes": [ + 42449932, + 11273068437, + 12187343191, + 10171137639, + 42449685 + ], + "geometry": [ + { "lat": 40.7470130, "lon": -73.9771862 }, + { "lat": 40.7470712, "lon": -73.9771465 }, + { "lat": 40.7475410, "lon": -73.9768264 }, + { "lat": 40.7475796, "lon": -73.9768001 }, + { "lat": 40.7476401, "lon": -73.9767589 } + ], + "tags": { + "bus:lanes": "|||designated", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1462663362, + "bounds": { + "minlat": 40.7464561, + "minlon": -73.9776071, + "maxlat": 40.7470130, + "maxlon": -73.9771862 + }, + "nodes": [ + 10168207096, + 12187343188, + 11273068438, + 42449932 + ], + "geometry": [ + { "lat": 40.7464561, "lon": -73.9776071 }, + { "lat": 40.7469193, "lon": -73.9772570 }, + { "lat": 40.7469565, "lon": -73.9772289 }, + { "lat": 40.7470130, "lon": -73.9771862 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "through|through|right|right", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1462866581, + "bounds": { + "minlat": 40.8037081, + "minlon": -73.9393933, + "maxlat": 40.8043271, + "maxlon": -73.9379207 + }, + "nodes": [ + 42438707, + 10169411307, + 5481977604, + 5481977611, + 7471678549, + 6859831864, + 9726158598, + 42438772 + ], + "geometry": [ + { "lat": 40.8043271, "lon": -73.9393933 }, + { "lat": 40.8043060, "lon": -73.9393447 }, + { "lat": 40.8042610, "lon": -73.9392412 }, + { "lat": 40.8042043, "lon": -73.9391058 }, + { "lat": 40.8041412, "lon": -73.9389528 }, + { "lat": 40.8040967, "lon": -73.9388487 }, + { "lat": 40.8037478, "lon": -73.9380117 }, + { "lat": 40.8037081, "lon": -73.9379207 } + ], + "tags": { + "highway": "residential", + "name": "East 124th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1462866582, + "bounds": { + "minlat": 40.8044438, + "minlon": -73.9396716, + "maxlat": 40.8051222, + "maxlon": -73.9391836 + }, + "nodes": [ + 596776654, + 10169411300, + 10169411309, + 596776656 + ], + "geometry": [ + { "lat": 40.8051222, "lon": -73.9391836 }, + { "lat": 40.8050333, "lon": -73.9392531 }, + { "lat": 40.8045085, "lon": -73.9396251 }, + { "lat": 40.8044438, "lon": -73.9396716 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1462866583, + "bounds": { + "minlat": 40.8037010, + "minlon": -73.9398600, + "maxlat": 40.8043271, + "maxlon": -73.9393933 + }, + "nodes": [ + 42452330, + 10170656854, + 10169411314, + 42438707 + ], + "geometry": [ + { "lat": 40.8037010, "lon": -73.9398600 }, + { "lat": 40.8037619, "lon": -73.9398146 }, + { "lat": 40.8042757, "lon": -73.9394316 }, + { "lat": 40.8043271, "lon": -73.9393933 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1462866584, + "bounds": { + "minlat": 40.8043271, + "minlon": -73.9396716, + "maxlat": 40.8044438, + "maxlon": -73.9393933 + }, + "nodes": [ + 596776656, + 42438707 + ], + "geometry": [ + { "lat": 40.8044438, "lon": -73.9396716 }, + { "lat": 40.8043271, "lon": -73.9393933 } + ], + "tags": { + "highway": "residential", + "maxheight": "12'3\"", + "name": "East 124th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1462866585, + "bounds": { + "minlat": 40.8038080, + "minlon": -73.9401148, + "maxlat": 40.8044438, + "maxlon": -73.9396716 + }, + "nodes": [ + 596776656, + 10169411313, + 10170656853, + 596776659 + ], + "geometry": [ + { "lat": 40.8044438, "lon": -73.9396716 }, + { "lat": 40.8043847, "lon": -73.9397128 }, + { "lat": 40.8038683, "lon": -73.9400728 }, + { "lat": 40.8038080, "lon": -73.9401148 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:be": "Парк-авеню", + "name:en": "Park Avenue", + "name:pl": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:lane:right": "parallel", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1462866586, + "bounds": { + "minlat": 40.8037010, + "minlon": -73.9401148, + "maxlat": 40.8038080, + "maxlon": -73.9398600 + }, + "nodes": [ + 42452330, + 596776659 + ], + "geometry": [ + { "lat": 40.8037010, "lon": -73.9398600 }, + { "lat": 40.8038080, "lon": -73.9401148 } + ], + "tags": { + "highway": "residential", + "maxheight": "12'2\"", + "name": "East 123rd Street", + "name_1": "East 123 Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1463036092, + "bounds": { + "minlat": 40.7654884, + "minlon": -74.0196190, + "maxlat": 40.7655248, + "maxlon": -74.0195966 + }, + "nodes": [ + 12320029183, + 7748277756 + ], + "geometry": [ + { "lat": 40.7655248, "lon": -74.0195966 }, + { "lat": 40.7654884, "lon": -74.0196190 } + ], + "tags": { + "highway": "primary", + "lanes": "4", + "name": "Port Imperial Boulevard", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1463958563, + "bounds": { + "minlat": 40.8024039, + "minlon": -74.0152183, + "maxlat": 40.8030503, + "maxlon": -74.0144027 + }, + "nodes": [ + 13428956324, + 13428956325, + 13428956326, + 13428956327, + 13428956328, + 13428956329, + 13428956330 + ], + "geometry": [ + { "lat": 40.8030503, "lon": -74.0144027 }, + { "lat": 40.8030072, "lon": -74.0144315 }, + { "lat": 40.8027672, "lon": -74.0146121 }, + { "lat": 40.8025960, "lon": -74.0147434 }, + { "lat": 40.8024039, "lon": -74.0148988 }, + { "lat": 40.8025072, "lon": -74.0151753 }, + { "lat": 40.8025203, "lon": -74.0152183 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1464028075, + "bounds": { + "minlat": 40.7018792, + "minlon": -73.9886034, + "maxlat": 40.7018823, + "maxlon": -73.9884936 + }, + "nodes": [ + 13429529831, + 13429529832, + 13429529830 + ], + "geometry": [ + { "lat": 40.7018823, "lon": -73.9886034 }, + { "lat": 40.7018801, "lon": -73.9885245 }, + { "lat": 40.7018792, "lon": -73.9884936 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1464303300, + "bounds": { + "minlat": 40.8498486, + "minlon": -73.9350587, + "maxlat": 40.8498912, + "maxlon": -73.9349596 + }, + "nodes": [ + 42444069, + 13809335947 + ], + "geometry": [ + { "lat": 40.8498486, "lon": -73.9349596 }, + { "lat": 40.8498912, "lon": -73.9350587 } + ], + "tags": { + "alt_name": "Manolo Tavarez Justo Way", + "bus": "yes", + "busway:both": "lane", + "description": "This honorary street name memorializes Manolo Tavarez Justo.", + "hgv": "local", + "highway": "tertiary", + "historic": "memorial", + "lanes": "2", + "motor_vehicle:backward:conditional": "destination @ (Mo-Su 06:00-20:00)", + "motor_vehicle:forward": "no", + "motor_vehicle:forward:conditional": "yes @ (20:00-06:00)", + "name": "West 181st Street", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "181st", + "tiger:name_base_1": "181", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10033", + "tiger:zip_right": "10033" + } +}, +{ + "type": "way", + "id": 1464523401, + "bounds": { + "minlat": 40.8138416, + "minlon": -73.9837620, + "maxlat": 40.8138733, + "maxlon": -73.9835026 + }, + "nodes": [ + 13433786398, + 13433786397, + 13433786396, + 1751405020 + ], + "geometry": [ + { "lat": 40.8138733, "lon": -73.9835026 }, + { "lat": 40.8138416, "lon": -73.9835967 }, + { "lat": 40.8138451, "lon": -73.9836701 }, + { "lat": 40.8138512, "lon": -73.9837620 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1464523402, + "bounds": { + "minlat": 40.8134908, + "minlon": -73.9839911, + "maxlat": 40.8138258, + "maxlon": -73.9837822 + }, + "nodes": [ + 13433786399, + 13433786400, + 13433881801 + ], + "geometry": [ + { "lat": 40.8138258, "lon": -73.9837822 }, + { "lat": 40.8137750, "lon": -73.9837858 }, + { "lat": 40.8134908, "lon": -73.9839911 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } +}, +{ + "type": "way", + "id": 1465019166, + "bounds": { + "minlat": 40.7766334, + "minlon": -73.9437636, + "maxlat": 40.7766882, + "maxlon": -73.9435598 + }, + "nodes": [ + 13437117818, + 13437117819, + 13437117828, + 13437117827, + 13437117820, + 13437117825 + ], + "geometry": [ + { "lat": 40.7766334, "lon": -73.9435598 }, + { "lat": 40.7766800, "lon": -73.9436677 }, + { "lat": 40.7766847, "lon": -73.9436858 }, + { "lat": 40.7766882, "lon": -73.9437010 }, + { "lat": 40.7766791, "lon": -73.9437479 }, + { "lat": 40.7766619, "lon": -73.9437636 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1465019167, + "bounds": { + "minlat": 40.7765097, + "minlon": -73.9438048, + "maxlat": 40.7766169, + "maxlon": -73.9436559 + }, + "nodes": [ + 13437117824, + 13437117821, + 13437117822, + 13437117829, + 13437117826, + 13437117823 + ], + "geometry": [ + { "lat": 40.7766169, "lon": -73.9437954 }, + { "lat": 40.7765958, "lon": -73.9438048 }, + { "lat": 40.7765670, "lon": -73.9437896 }, + { "lat": 40.7765600, "lon": -73.9437730 }, + { "lat": 40.7765532, "lon": -73.9437555 }, + { "lat": 40.7765097, "lon": -73.9436559 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1465019168, + "bounds": { + "minlat": 40.7766169, + "minlon": -73.9437954, + "maxlat": 40.7766619, + "maxlon": -73.9437636 + }, + "nodes": [ + 13437117825, + 13437117824 + ], + "geometry": [ + { "lat": 40.7766619, "lon": -73.9437636 }, + { "lat": 40.7766169, "lon": -73.9437954 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1465019169, + "bounds": { + "minlat": 40.7765600, + "minlon": -73.9437730, + "maxlat": 40.7766847, + "maxlon": -73.9436858 + }, + "nodes": [ + 13437117828, + 13437117829 + ], + "geometry": [ + { "lat": 40.7766847, "lon": -73.9436858 }, + { "lat": 40.7765600, "lon": -73.9437730 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1465055284, + "bounds": { + "minlat": 40.7512851, + "minlon": -73.9276868, + "maxlat": 40.7513126, + "maxlon": -73.9275170 + }, + "nodes": [ + 7857724445, + 7857650535 + ], + "geometry": [ + { "lat": 40.7512851, "lon": -73.9276868 }, + { "lat": 40.7513126, "lon": -73.9275170 } + ], + "tags": { + "access": "no", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1465055285, + "bounds": { + "minlat": 40.7511715, + "minlon": -73.9276284, + "maxlat": 40.7513126, + "maxlon": -73.9275170 + }, + "nodes": [ + 7857650527, + 7857650535 + ], + "geometry": [ + { "lat": 40.7511715, "lon": -73.9276284 }, + { "lat": 40.7513126, "lon": -73.9275170 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1465061936, + "bounds": { + "minlat": 40.7469440, + "minlon": -73.9259081, + "maxlat": 40.7469905, + "maxlon": -73.9255715 + }, + "nodes": [ + 13437416440, + 13437416443, + 13437416441, + 13437416442 + ], + "geometry": [ + { "lat": 40.7469905, "lon": -73.9259081 }, + { "lat": 40.7469655, "lon": -73.9257245 }, + { "lat": 40.7469602, "lon": -73.9256852 }, + { "lat": 40.7469440, "lon": -73.9255715 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1465358761, + "bounds": { + "minlat": 40.7197014, + "minlon": -74.0051699, + "maxlat": 40.7198425, + "maxlon": -74.0051656 + }, + "nodes": [ + 11493402738, + 8304498244, + 42430122 + ], + "geometry": [ + { "lat": 40.7197014, "lon": -74.0051656 }, + { "lat": 40.7197755, "lon": -74.0051667 }, + { "lat": 40.7198425, "lon": -74.0051699 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "maxspeed": "20 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "parking:both": "lane", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1465617678, + "bounds": { + "minlat": 40.7124620, + "minlon": -73.9267387, + "maxlat": 40.7127119, + "maxlon": -73.9266322 + }, + "nodes": [ + 8096283391, + 9767625074, + 8096283393 + ], + "geometry": [ + { "lat": 40.7124620, "lon": -73.9266322 }, + { "lat": 40.7125347, "lon": -73.9266596 }, + { "lat": 40.7127119, "lon": -73.9267387 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1465617679, + "bounds": { + "minlat": 40.7129721, + "minlon": -73.9268810, + "maxlat": 40.7131533, + "maxlon": -73.9267959 + }, + "nodes": [ + 8096283397, + 9767625076, + 8096283398 + ], + "geometry": [ + { "lat": 40.7129721, "lon": -73.9267959 }, + { "lat": 40.7130914, "lon": -73.9268519 }, + { "lat": 40.7131533, "lon": -73.9268810 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1466405135, + "bounds": { + "minlat": 40.7016169, + "minlon": -73.9891476, + "maxlat": 40.7020218, + "maxlon": -73.9891246 + }, + "nodes": [ + 13449630078, + 13449630077, + 2358967550 + ], + "geometry": [ + { "lat": 40.7020218, "lon": -73.9891246 }, + { "lat": 40.7016739, "lon": -73.9891444 }, + { "lat": 40.7016169, "lon": -73.9891476 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1466470207, + "bounds": { + "minlat": 40.8207647, + "minlon": -73.9166135, + "maxlat": 40.8210556, + "maxlon": -73.9164961 + }, + "nodes": [ + 7983876134, + 7983876135, + 7983876136 + ], + "geometry": [ + { "lat": 40.8210556, "lon": -73.9164961 }, + { "lat": 40.8209438, "lon": -73.9165354 }, + { "lat": 40.8207647, "lon": -73.9166135 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1466470208, + "bounds": { + "minlat": 40.8204920, + "minlon": -73.9171184, + "maxlat": 40.8206158, + "maxlon": -73.9170628 + }, + "nodes": [ + 7983876139, + 13450223169, + 13450223168 + ], + "geometry": [ + { "lat": 40.8206158, "lon": -73.9170628 }, + { "lat": 40.8205517, "lon": -73.9170920 }, + { "lat": 40.8204920, "lon": -73.9171184 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1466963555, + "bounds": { + "minlat": 40.7842301, + "minlon": -73.9323346, + "maxlat": 40.7844025, + "maxlon": -73.9323256 + }, + "nodes": [ + 13455410082, + 13455410083 + ], + "geometry": [ + { "lat": 40.7842301, "lon": -73.9323256 }, + { "lat": 40.7844025, "lon": -73.9323346 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1467135983, + "bounds": { + "minlat": 40.7090060, + "minlon": -73.9224830, + "maxlat": 40.7093330, + "maxlon": -73.9223370 + }, + "nodes": [ + 42474005, + 9744131117, + 9747567486, + 9744131246, + 42474010 + ], + "geometry": [ + { "lat": 40.7090060, "lon": -73.9223370 }, + { "lat": 40.7091049, "lon": -73.9223812 }, + { "lat": 40.7091307, "lon": -73.9223927 }, + { "lat": 40.7092734, "lon": -73.9224564 }, + { "lat": 40.7093330, "lon": -73.9224830 } + ], + "tags": { + "highway": "pedestrian", + "name": "Scott Avenue", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1467136399, + "bounds": { + "minlat": 40.7058670, + "minlon": -73.9217966, + "maxlat": 40.7076213, + "maxlon": -73.9188330 + }, + "nodes": [ + 42474000, + 9744131272, + 9747567483, + 9744131251, + 42516314, + 9744131250, + 5423479091, + 42492389, + 5423479086, + 9592286281, + 42506560, + 9592286282, + 9755788984, + 42477877 + ], + "geometry": [ + { "lat": 40.7076213, "lon": -73.9217966 }, + { "lat": 40.7075938, "lon": -73.9217501 }, + { "lat": 40.7075710, "lon": -73.9217116 }, + { "lat": 40.7072226, "lon": -73.9211230 }, + { "lat": 40.7071826, "lon": -73.9210554 }, + { "lat": 40.7071486, "lon": -73.9209980 }, + { "lat": 40.7067853, "lon": -73.9203843 }, + { "lat": 40.7067442, "lon": -73.9203148 }, + { "lat": 40.7067104, "lon": -73.9202578 }, + { "lat": 40.7063437, "lon": -73.9196383 }, + { "lat": 40.7063054, "lon": -73.9195736 }, + { "lat": 40.7062667, "lon": -73.9195083 }, + { "lat": 40.7059107, "lon": -73.9189068 }, + { "lat": 40.7058670, "lon": -73.9188330 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1467136400, + "bounds": { + "minlat": 40.7076213, + "minlon": -73.9219143, + "maxlat": 40.7076891, + "maxlon": -73.9217966 + }, + "nodes": [ + 13456694863, + 42474000 + ], + "geometry": [ + { "lat": 40.7076891, "lon": -73.9219143 }, + { "lat": 40.7076213, "lon": -73.9217966 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1467249198, + "bounds": { + "minlat": 40.8249093, + "minlon": -73.9319064, + "maxlat": 40.8249885, + "maxlon": -73.9312008 + }, + "nodes": [ + 13457734306, + 2819425447, + 595786282, + 13457734305 + ], + "geometry": [ + { "lat": 40.8249093, "lon": -73.9319064 }, + { "lat": 40.8249291, "lon": -73.9315113 }, + { "lat": 40.8249507, "lon": -73.9314062 }, + { "lat": 40.8249885, "lon": -73.9312008 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1467545871, + "bounds": { + "minlat": 40.7269905, + "minlon": -73.9360599, + "maxlat": 40.7270140, + "maxlon": -73.9357951 + }, + "nodes": [ + 13459987077, + 7833503758, + 7833503757 + ], + "geometry": [ + { "lat": 40.7269905, "lon": -73.9360599 }, + { "lat": 40.7270036, "lon": -73.9359052 }, + { "lat": 40.7270140, "lon": -73.9357951 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1467650977, + "bounds": { + "minlat": 40.8351437, + "minlon": -73.9458898, + "maxlat": 40.8352917, + "maxlon": -73.9455518 + }, + "nodes": [ + 2512378852, + 12998931046, + 12998931041, + 2512378850 + ], + "geometry": [ + { "lat": 40.8352917, "lon": -73.9458898 }, + { "lat": 40.8352457, "lon": -73.9457764 }, + { "lat": 40.8352106, "lon": -73.9456882 }, + { "lat": 40.8351437, "lon": -73.9455518 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "West 158th Street", + "oneway": "no", + "oneway:bicycle": "no", + "sidewalk:both": "separate" + } +}, +{ + "type": "way", + "id": 1467650978, + "bounds": { + "minlat": 40.8350565, + "minlon": -73.9455518, + "maxlat": 40.8351437, + "maxlon": -73.9453463 + }, + "nodes": [ + 9935939397, + 2504882466, + 2512378850 + ], + "geometry": [ + { "lat": 40.8350565, "lon": -73.9453463 }, + { "lat": 40.8350993, "lon": -73.9454458 }, + { "lat": 40.8351437, "lon": -73.9455518 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "West 158th Street", + "name_1": "West 158 Street", + "oneway": "no", + "oneway:bicycle": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "158th", + "tiger:name_base_1": "158", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1467650979, + "bounds": { + "minlat": 40.8349454, + "minlon": -73.9467835, + "maxlat": 40.8350252, + "maxlon": -73.9467489 + }, + "nodes": [ + 12998931053, + 587934268 + ], + "geometry": [ + { "lat": 40.8349454, "lon": -73.9467489 }, + { "lat": 40.8350252, "lon": -73.9467835 } + ], + "tags": { + "cycleway:right": "no", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 157th Street", + "name_1": "West 157 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "157th", + "tiger:name_base_1": "157", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032" + } +}, +{ + "type": "way", + "id": 1467650980, + "bounds": { + "minlat": 40.8349454, + "minlon": -73.9467489, + "maxlat": 40.8351437, + "maxlon": -73.9455518 + }, + "nodes": [ + 12998931053, + 12998931050, + 12998931052, + 13460886890, + 12998931051, + 12998931038, + 2512378850 + ], + "geometry": [ + { "lat": 40.8349454, "lon": -73.9467489 }, + { "lat": 40.8349678, "lon": -73.9466151 }, + { "lat": 40.8350756, "lon": -73.9459316 }, + { "lat": 40.8350897, "lon": -73.9458323 }, + { "lat": 40.8350976, "lon": -73.9457772 }, + { "lat": 40.8351194, "lon": -73.9456549 }, + { "lat": 40.8351437, "lon": -73.9455518 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10032", + "tiger:zip_right": "10032", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1468656949, + "bounds": { + "minlat": 40.8287953, + "minlon": -73.9726712, + "maxlat": 40.8290370, + "maxlon": -73.9724375 + }, + "nodes": [ + 13469941131, + 13469941132, + 13469941133, + 13469941134, + 13469941135, + 13469941136, + 13469941137, + 13469941138 + ], + "geometry": [ + { "lat": 40.8290370, "lon": -73.9724839 }, + { "lat": 40.8290370, "lon": -73.9725089 }, + { "lat": 40.8290144, "lon": -73.9725961 }, + { "lat": 40.8289818, "lon": -73.9726231 }, + { "lat": 40.8288758, "lon": -73.9726712 }, + { "lat": 40.8288607, "lon": -73.9726632 }, + { "lat": 40.8288446, "lon": -73.9726301 }, + { "lat": 40.8287953, "lon": -73.9724375 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1468890197, + "bounds": { + "minlat": 40.8765528, + "minlon": -73.9129056, + "maxlat": 40.8765727, + "maxlon": -73.9128027 + }, + "nodes": [ + 13471668964, + 1545097381 + ], + "geometry": [ + { "lat": 40.8765727, "lon": -73.9129056 }, + { "lat": 40.8765528, "lon": -73.9128027 } + ], + "tags": { + "highway": "residential", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1468890198, + "bounds": { + "minlat": 40.8765727, + "minlon": -73.9129056, + "maxlat": 40.8767499, + "maxlon": -73.9126886 + }, + "nodes": [ + 42431729, + 13471668964 + ], + "geometry": [ + { "lat": 40.8767499, "lon": -73.9126886 }, + { "lat": 40.8765727, "lon": -73.9129056 } + ], + "tags": { + "highway": "residential", + "name": "Teunissen Place", + "oneway": "yes", + "sidewalk": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Teunissen", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10463", + "tiger:zip_right": "10463" + } +}, +{ + "type": "way", + "id": 1468898583, + "bounds": { + "minlat": 40.8813503, + "minlon": -73.9093299, + "maxlat": 40.8819778, + "maxlon": -73.9088858 + }, + "nodes": [ + 13471735797, + 13471735791, + 2810120567, + 42752145 + ], + "geometry": [ + { "lat": 40.8819778, "lon": -73.9088858 }, + { "lat": 40.8814531, "lon": -73.9092659 }, + { "lat": 40.8814038, "lon": -73.9093016 }, + { "lat": 40.8813503, "lon": -73.9093299 } + ], + "tags": { + "highway": "secondary", + "lanes": "4", + "name": "Riverdale Avenue", + "oneway": "no", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Riverdale", + "tiger:name_type": "Ave", + "turn:lanes:forward": "left|" + } +}, +{ + "type": "way", + "id": 1468898584, + "bounds": { + "minlat": 40.8808667, + "minlon": -73.9101048, + "maxlat": 40.8810222, + "maxlon": -73.9099077 + }, + "nodes": [ + 1544756273, + 13471735798, + 1544756322 + ], + "geometry": [ + { "lat": 40.8810222, "lon": -73.9099077 }, + { "lat": 40.8809829, "lon": -73.9099575 }, + { "lat": 40.8808667, "lon": -73.9101048 } + ], + "tags": { + "highway": "secondary", + "lanes": "3", + "name": "Riverdale Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Riverdale", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1468898585, + "bounds": { + "minlat": 40.8807022, + "minlon": -73.9100078, + "maxlat": 40.8808759, + "maxlon": -73.9098025 + }, + "nodes": [ + 1544756317, + 1544756425 + ], + "geometry": [ + { "lat": 40.8807022, "lon": -73.9100078 }, + { "lat": 40.8808759, "lon": -73.9098025 } + ], + "tags": { + "highway": "secondary", + "lanes": "2", + "name": "Riverdale Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate" + } +}, +{ + "type": "way", + "id": 1469013123, + "bounds": { + "minlat": 40.8092592, + "minlon": -73.9293944, + "maxlat": 40.8094888, + "maxlon": -73.9291406 + }, + "nodes": [ + 7554088552, + 595801154 + ], + "geometry": [ + { "lat": 40.8094888, "lon": -73.9291406 }, + { "lat": 40.8092592, "lon": -73.9293944 } + ], + "tags": { + "highway": "secondary", + "name": "Third Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no" + } +}, +{ + "type": "way", + "id": 1469763622, + "bounds": { + "minlat": 40.7635366, + "minlon": -73.9546676, + "maxlat": 40.7636863, + "maxlon": -73.9545708 + }, + "nodes": [ + 13478945220, + 9729779299 + ], + "geometry": [ + { "lat": 40.7635366, "lon": -73.9546676 }, + { "lat": 40.7636863, "lon": -73.9545708 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1470899107, + "bounds": { + "minlat": 40.7048767, + "minlon": -73.9497719, + "maxlat": 40.7050507, + "maxlon": -73.9496903 + }, + "nodes": [ + 13495812384, + 13495812378, + 13495812377, + 13495812375, + 13495812376 + ], + "geometry": [ + { "lat": 40.7050507, "lon": -73.9497558 }, + { "lat": 40.7050055, "lon": -73.9497092 }, + { "lat": 40.7049549, "lon": -73.9497719 }, + { "lat": 40.7049308, "lon": -73.9497467 }, + { "lat": 40.7048767, "lon": -73.9496903 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1470899108, + "bounds": { + "minlat": 40.7048365, + "minlon": -73.9500602, + "maxlat": 40.7050530, + "maxlon": -73.9500421 + }, + "nodes": [ + 13495812386, + 13495812381, + 13495812380, + 13495812379 + ], + "geometry": [ + { "lat": 40.7050530, "lon": -73.9500421 }, + { "lat": 40.7049524, "lon": -73.9500549 }, + { "lat": 40.7048807, "lon": -73.9500589 }, + { "lat": 40.7048365, "lon": -73.9500602 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1470899109, + "bounds": { + "minlat": 40.7050507, + "minlon": -73.9499197, + "maxlat": 40.7051342, + "maxlon": -73.9496656 + }, + "nodes": [ + 13495812385, + 13495812384, + 13495812374, + 13495812383 + ], + "geometry": [ + { "lat": 40.7051342, "lon": -73.9499197 }, + { "lat": 40.7050507, "lon": -73.9497558 }, + { "lat": 40.7050682, "lon": -73.9497355 }, + { "lat": 40.7051284, "lon": -73.9496656 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1470899110, + "bounds": { + "minlat": 40.7050459, + "minlon": -73.9502085, + "maxlat": 40.7052222, + "maxlon": -73.9498349 + }, + "nodes": [ + 13495812382, + 13495812372, + 13495812386, + 13495812385, + 13495812373, + 42476777 + ], + "geometry": [ + { "lat": 40.7050459, "lon": -73.9502085 }, + { "lat": 40.7050510, "lon": -73.9500890 }, + { "lat": 40.7050530, "lon": -73.9500421 }, + { "lat": 40.7051342, "lon": -73.9499197 }, + { "lat": 40.7051576, "lon": -73.9498971 }, + { "lat": 40.7052222, "lon": -73.9498349 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1471591714, + "bounds": { + "minlat": 40.8120111, + "minlon": -73.9356030, + "maxlat": 40.8122258, + "maxlon": -73.9354254 + }, + "nodes": [ + 13503616370, + 13503616368, + 13503616369 + ], + "geometry": [ + { "lat": 40.8120111, "lon": -73.9356030 }, + { "lat": 40.8120649, "lon": -73.9355585 }, + { "lat": 40.8122258, "lon": -73.9354254 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1471608892, + "bounds": { + "minlat": 40.7742932, + "minlon": -73.9340756, + "maxlat": 40.7748712, + "maxlon": -73.9333541 + }, + "nodes": [ + 13503781406, + 13503781405, + 13503781404, + 13503781403 + ], + "geometry": [ + { "lat": 40.7748712, "lon": -73.9338868 }, + { "lat": 40.7747970, "lon": -73.9339321 }, + { "lat": 40.7745294, "lon": -73.9340756 }, + { "lat": 40.7742932, "lon": -73.9333541 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1471714484, + "bounds": { + "minlat": 40.7773794, + "minlon": -73.9120162, + "maxlat": 40.7776248, + "maxlon": -73.9116747 + }, + "nodes": [ + 13504533412, + 13504533409, + 13458141005 + ], + "geometry": [ + { "lat": 40.7773794, "lon": -73.9116747 }, + { "lat": 40.7775823, "lon": -73.9119666 }, + { "lat": 40.7776248, "lon": -73.9120162 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1471714485, + "bounds": { + "minlat": 40.7771329, + "minlon": -73.9116747, + "maxlat": 40.7773794, + "maxlon": -73.9113366 + }, + "nodes": [ + 13504533411, + 13504533410, + 13504533412 + ], + "geometry": [ + { "lat": 40.7771329, "lon": -73.9113366 }, + { "lat": 40.7771705, "lon": -73.9113990 }, + { "lat": 40.7773794, "lon": -73.9116747 } + ], + "tags": { + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1471876886, + "bounds": { + "minlat": 40.7345742, + "minlon": -73.9382509, + "maxlat": 40.7347633, + "maxlon": -73.9377996 + }, + "nodes": [ + 13505886472, + 13505886473, + 13505886474, + 13505886478, + 13505886475, + 13505886476, + 13505886481, + 13505886477, + 13505886474 + ], + "geometry": [ + { "lat": 40.7346661, "lon": -73.9377996 }, + { "lat": 40.7347325, "lon": -73.9379351 }, + { "lat": 40.7347315, "lon": -73.9379628 }, + { "lat": 40.7346386, "lon": -73.9380521 }, + { "lat": 40.7345742, "lon": -73.9381168 }, + { "lat": 40.7346687, "lon": -73.9382509 }, + { "lat": 40.7347181, "lon": -73.9381852 }, + { "lat": 40.7347633, "lon": -73.9381230 }, + { "lat": 40.7347315, "lon": -73.9379628 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1471876887, + "bounds": { + "minlat": 40.7346454, + "minlon": -73.9381509, + "maxlat": 40.7346976, + "maxlon": -73.9380657 + }, + "nodes": [ + 13505886479, + 13505886480 + ], + "geometry": [ + { "lat": 40.7346454, "lon": -73.9380657 }, + { "lat": 40.7346976, "lon": -73.9381509 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1471876888, + "bounds": { + "minlat": 40.7346976, + "minlon": -73.9381852, + "maxlat": 40.7347181, + "maxlon": -73.9381509 + }, + "nodes": [ + 13505886480, + 13505886481 + ], + "geometry": [ + { "lat": 40.7346976, "lon": -73.9381509 }, + { "lat": 40.7347181, "lon": -73.9381852 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1471876889, + "bounds": { + "minlat": 40.7346386, + "minlon": -73.9380657, + "maxlat": 40.7346454, + "maxlon": -73.9380521 + }, + "nodes": [ + 13505886478, + 13505886479 + ], + "geometry": [ + { "lat": 40.7346386, "lon": -73.9380521 }, + { "lat": 40.7346454, "lon": -73.9380657 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1471876890, + "bounds": { + "minlat": 40.7346215, + "minlon": -73.9383386, + "maxlat": 40.7346687, + "maxlon": -73.9382509 + }, + "nodes": [ + 13505886476, + 13505886482, + 13505886483 + ], + "geometry": [ + { "lat": 40.7346687, "lon": -73.9382509 }, + { "lat": 40.7346655, "lon": -73.9382539 }, + { "lat": 40.7346215, "lon": -73.9383386 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1472213917, + "bounds": { + "minlat": 40.8114420, + "minlon": -73.9521010, + "maxlat": 40.8118198, + "maxlon": -73.9517005 + }, + "nodes": [ + 42432931, + 10173362962, + 13508622743 + ], + "geometry": [ + { "lat": 40.8114420, "lon": -73.9521010 }, + { "lat": 40.8114989, "lon": -73.9520414 }, + { "lat": 40.8118198, "lon": -73.9517005 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "name", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1472213918, + "bounds": { + "minlat": 40.8118198, + "minlon": -73.9517005, + "maxlat": 40.8120151, + "maxlon": -73.9515008 + }, + "nodes": [ + 13508622743, + 10171865581, + 42432932 + ], + "geometry": [ + { "lat": 40.8118198, "lon": -73.9517005 }, + { "lat": 40.8119616, "lon": -73.9515569 }, + { "lat": 40.8120151, "lon": -73.9515008 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "turn:lanes:forward": "left|none", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1472213919, + "bounds": { + "minlat": 40.8114780, + "minlon": -73.9515008, + "maxlat": 40.8120151, + "maxlon": -73.9502160 + }, + "nodes": [ + 42435810, + 10171865589, + 10171865579, + 42432932 + ], + "geometry": [ + { "lat": 40.8114780, "lon": -73.9502160 }, + { "lat": 40.8115309, "lon": -73.9503452 }, + { "lat": 40.8119601, "lon": -73.9513693 }, + { "lat": 40.8120151, "lon": -73.9515008 } + ], + "tags": { + "highway": "residential", + "name": "West 127th Street", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1472331769, + "bounds": { + "minlat": 40.7526681, + "minlon": -73.9234706, + "maxlat": 40.7528798, + "maxlon": -73.9232539 + }, + "nodes": [ + 13509316954, + 13509316955, + 13509316960, + 13509316956, + 13509316957, + 13509316958, + 13509316959 + ], + "geometry": [ + { "lat": 40.7526681, "lon": -73.9232539 }, + { "lat": 40.7527845, "lon": -73.9232771 }, + { "lat": 40.7527968, "lon": -73.9232813 }, + { "lat": 40.7528530, "lon": -73.9233007 }, + { "lat": 40.7528787, "lon": -73.9233361 }, + { "lat": 40.7528798, "lon": -73.9233672 }, + { "lat": 40.7528219, "lon": -73.9234706 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1472662674, + "bounds": { + "minlat": 40.7535792, + "minlon": -73.9178541, + "maxlat": 40.7536352, + "maxlon": -73.9175687 + }, + "nodes": [ + 6833062392, + 6833067833 + ], + "geometry": [ + { "lat": 40.7535792, "lon": -73.9178541 }, + { "lat": 40.7536352, "lon": -73.9175687 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1472675438, + "bounds": { + "minlat": 40.8371204, + "minlon": -73.9705268, + "maxlat": 40.8371876, + "maxlon": -73.9704135 + }, + "nodes": [ + 13511982630, + 13511982631, + 13511982632, + 13511982637 + ], + "geometry": [ + { "lat": 40.8371204, "lon": -73.9705268 }, + { "lat": 40.8371430, "lon": -73.9704604 }, + { "lat": 40.8371667, "lon": -73.9704204 }, + { "lat": 40.8371876, "lon": -73.9704135 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1472675439, + "bounds": { + "minlat": 40.8372288, + "minlon": -73.9704511, + "maxlat": 40.8373136, + "maxlon": -73.9703928 + }, + "nodes": [ + 13511982636, + 13511982633, + 13511982635, + 13511982634 + ], + "geometry": [ + { "lat": 40.8372288, "lon": -73.9703995 }, + { "lat": 40.8372477, "lon": -73.9703928 }, + { "lat": 40.8372737, "lon": -73.9704149 }, + { "lat": 40.8373136, "lon": -73.9704511 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1472675440, + "bounds": { + "minlat": 40.8371876, + "minlon": -73.9704135, + "maxlat": 40.8372288, + "maxlon": -73.9703995 + }, + "nodes": [ + 13511982637, + 13511982636 + ], + "geometry": [ + { "lat": 40.8371876, "lon": -73.9704135 }, + { "lat": 40.8372288, "lon": -73.9703995 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1473211632, + "bounds": { + "minlat": 40.7314406, + "minlon": -73.9464124, + "maxlat": 40.7316054, + "maxlon": -73.9459370 + }, + "nodes": [ + 8410004504, + 11155242472, + 11155242473, + 13515590837, + 2422186264 + ], + "geometry": [ + { "lat": 40.7316054, "lon": -73.9459370 }, + { "lat": 40.7315460, "lon": -73.9461013 }, + { "lat": 40.7315214, "lon": -73.9461692 }, + { "lat": 40.7314969, "lon": -73.9462369 }, + { "lat": 40.7314406, "lon": -73.9464124 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:backward": "1", + "maxspeed": "25 mph", + "name": "Greenpoint Avenue", + "oneway": "no", + "parking:lane:both": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left;through|through", + "wikidata": "Q7366413", + "wikipedia": "en:Greenpoint and Roosevelt Avenues" + } +}, +{ + "type": "way", + "id": 1473211639, + "bounds": { + "minlat": 40.7325135, + "minlon": -73.9428072, + "maxlat": 40.7326577, + "maxlon": -73.9427774 + }, + "nodes": [ + 13515590858, + 6235394703, + 622232010 + ], + "geometry": [ + { "lat": 40.7325135, "lon": -73.9427774 }, + { "lat": 40.7325560, "lon": -73.9427862 }, + { "lat": 40.7326577, "lon": -73.9428072 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "name_1": "Grandparents Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1473211644, + "bounds": { + "minlat": 40.7351790, + "minlon": -73.9456257, + "maxlat": 40.7360043, + "maxlon": -73.9452174 + }, + "nodes": [ + 13515590868, + 13515590869, + 13515590870, + 13515590871, + 13515590872, + 13515590873, + 13515590874, + 13515590875, + 13515590876, + 13515590877 + ], + "geometry": [ + { "lat": 40.7351790, "lon": -73.9452174 }, + { "lat": 40.7353300, "lon": -73.9453104 }, + { "lat": 40.7358011, "lon": -73.9455999 }, + { "lat": 40.7358296, "lon": -73.9456120 }, + { "lat": 40.7358574, "lon": -73.9456219 }, + { "lat": 40.7358885, "lon": -73.9456257 }, + { "lat": 40.7359219, "lon": -73.9456232 }, + { "lat": 40.7359536, "lon": -73.9456144 }, + { "lat": 40.7359805, "lon": -73.9456014 }, + { "lat": 40.7360043, "lon": -73.9455885 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1473211645, + "bounds": { + "minlat": 40.7348437, + "minlon": -73.9452174, + "maxlat": 40.7351790, + "maxlon": -73.9450892 + }, + "nodes": [ + 42523815, + 13515590867, + 13515590868 + ], + "geometry": [ + { "lat": 40.7348437, "lon": -73.9450892 }, + { "lat": 40.7349029, "lon": -73.9451480 }, + { "lat": 40.7351790, "lon": -73.9452174 } + ], + "tags": { + "highway": "unclassified", + "maxspeed": "25 mph", + "name": "Kingsland Avenue", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1473211646, + "bounds": { + "minlat": 40.7327947, + "minlon": -73.9429620, + "maxlat": 40.7335619, + "maxlon": -73.9428354 + }, + "nodes": [ + 42495908, + 13515590859, + 12381737048, + 12381737063, + 2839943360 + ], + "geometry": [ + { "lat": 40.7327947, "lon": -73.9428354 }, + { "lat": 40.7328708, "lon": -73.9428513 }, + { "lat": 40.7334638, "lon": -73.9429439 }, + { "lat": 40.7335023, "lon": -73.9429510 }, + { "lat": 40.7335619, "lon": -73.9429620 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "unclassified", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Kingsland Avenue", + "name:etymology:wikidata": "Q4741804", + "name_1": "Grandparents Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1473252666, + "bounds": { + "minlat": 40.8260977, + "minlon": -73.9980738, + "maxlat": 40.8262611, + "maxlon": -73.9978082 + }, + "nodes": [ + 13515941202, + 13515937199 + ], + "geometry": [ + { "lat": 40.8262611, "lon": -73.9980738 }, + { "lat": 40.8260977, "lon": -73.9978082 } + ], + "tags": { + "highway": "service", + "name": "Reserve Court", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1473252667, + "bounds": { + "minlat": 40.8261499, + "minlon": -73.9983039, + "maxlat": 40.8264427, + "maxlon": -73.9980738 + }, + "nodes": [ + 13515941203, + 13515941202, + 13515941201, + 13515937200 + ], + "geometry": [ + { "lat": 40.8261499, "lon": -73.9983039 }, + { "lat": 40.8262611, "lon": -73.9980738 }, + { "lat": 40.8263798, "lon": -73.9981797 }, + { "lat": 40.8264427, "lon": -73.9982656 } + ], + "tags": { + "highway": "service", + "name": "Reserve Court", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1473253799, + "bounds": { + "minlat": 40.8282501, + "minlon": -73.9978364, + "maxlat": 40.8285937, + "maxlon": -73.9974889 + }, + "nodes": [ + 13515942864, + 13515942863 + ], + "geometry": [ + { "lat": 40.8282501, "lon": -73.9978364 }, + { "lat": 40.8285937, "lon": -73.9974889 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1473277850, + "bounds": { + "minlat": 40.7610611, + "minlon": -73.9991580, + "maxlat": 40.7613795, + "maxlon": -73.9987053 + }, + "nodes": [ + 13516165059, + 13516165063, + 13516165060, + 13516165061, + 13516165064, + 13516165062 + ], + "geometry": [ + { "lat": 40.7610611, "lon": -73.9988433 }, + { "lat": 40.7611607, "lon": -73.9987708 }, + { "lat": 40.7612499, "lon": -73.9987053 }, + { "lat": 40.7613795, "lon": -73.9990158 }, + { "lat": 40.7612898, "lon": -73.9990847 }, + { "lat": 40.7611935, "lon": -73.9991580 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1473577044, + "bounds": { + "minlat": 40.7559709, + "minlon": -73.9126108, + "maxlat": 40.7562358, + "maxlon": -73.9123966 + }, + "nodes": [ + 42860069, + 11645785846, + 8593793988, + 2402842566 + ], + "geometry": [ + { "lat": 40.7562358, "lon": -73.9123966 }, + { "lat": 40.7561674, "lon": -73.9124529 }, + { "lat": 40.7560371, "lon": -73.9125569 }, + { "lat": 40.7559709, "lon": -73.9126108 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "48th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1473791859, + "bounds": { + "minlat": 40.8043433, + "minlon": -73.9278903, + "maxlat": 40.8047895, + "maxlon": -73.9275079 + }, + "nodes": [ + 13521056944, + 595786194, + 1134719654, + 1134719721, + 13521056945, + 13521056946, + 13521056947, + 13521056948 + ], + "geometry": [ + { "lat": 40.8047895, "lon": -73.9275079 }, + { "lat": 40.8047301, "lon": -73.9275513 }, + { "lat": 40.8046229, "lon": -73.9276272 }, + { "lat": 40.8045963, "lon": -73.9276453 }, + { "lat": 40.8045588, "lon": -73.9276770 }, + { "lat": 40.8045419, "lon": -73.9276963 }, + { "lat": 40.8045099, "lon": -73.9277251 }, + { "lat": 40.8043433, "lon": -73.9278903 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1474065988, + "bounds": { + "minlat": 40.7444620, + "minlon": -74.0077329, + "maxlat": 40.7445388, + "maxlon": -74.0077021 + }, + "nodes": [ + 13523436064, + 13523436065 + ], + "geometry": [ + { "lat": 40.7444620, "lon": -74.0077329 }, + { "lat": 40.7445388, "lon": -74.0077021 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1474315836, + "bounds": { + "minlat": 40.7779536, + "minlon": -73.9879887, + "maxlat": 40.7781355, + "maxlon": -73.9877329 + }, + "nodes": [ + 9900041152, + 13525529637, + 13525529638, + 13525529639, + 13525529640, + 13525529641, + 13525529642, + 13525529643, + 13525529644, + 9900041152 + ], + "geometry": [ + { "lat": 40.7779536, "lon": -73.9878252 }, + { "lat": 40.7780217, "lon": -73.9879887 }, + { "lat": 40.7780416, "lon": -73.9879730 }, + { "lat": 40.7780670, "lon": -73.9879417 }, + { "lat": 40.7780945, "lon": -73.9878959 }, + { "lat": 40.7781148, "lon": -73.9878513 }, + { "lat": 40.7781258, "lon": -73.9878083 }, + { "lat": 40.7781325, "lon": -73.9877692 }, + { "lat": 40.7781355, "lon": -73.9877329 }, + { "lat": 40.7779536, "lon": -73.9878252 } + ], + "tags": { + "access": "yes", + "area": "yes", + "foot": "yes", + "highway": "pedestrian", + "lit": "yes" + } +}, +{ + "type": "way", + "id": 1474436857, + "bounds": { + "minlat": 40.8802433, + "minlon": -73.9794226, + "maxlat": 40.8838766, + "maxlon": -73.9776935 + }, + "nodes": [ + 103187441, + 7608756666, + 6888241318, + 103296540, + 6888241332, + 7701246548, + 7144559591, + 9239580227, + 103148679, + 103296536, + 7701246557, + 103296534, + 12372564092, + 103296532, + 103296529, + 12372564091, + 103295946, + 7701246547, + 6888241306, + 7071226221, + 7071226228, + 9239580258, + 12372564093, + 12023867992, + 12023867991, + 103123088 + ], + "geometry": [ + { "lat": 40.8802433, "lon": -73.9794226 }, + { "lat": 40.8805071, "lon": -73.9791993 }, + { "lat": 40.8807621, "lon": -73.9789765 }, + { "lat": 40.8809170, "lon": -73.9788448 }, + { "lat": 40.8810427, "lon": -73.9787429 }, + { "lat": 40.8811615, "lon": -73.9786483 }, + { "lat": 40.8812508, "lon": -73.9785834 }, + { "lat": 40.8813605, "lon": -73.9785079 }, + { "lat": 40.8814783, "lon": -73.9784321 }, + { "lat": 40.8816031, "lon": -73.9783561 }, + { "lat": 40.8817226, "lon": -73.9782918 }, + { "lat": 40.8818459, "lon": -73.9782304 }, + { "lat": 40.8819377, "lon": -73.9781915 }, + { "lat": 40.8820270, "lon": -73.9781569 }, + { "lat": 40.8821620, "lon": -73.9781085 }, + { "lat": 40.8822936, "lon": -73.9780649 }, + { "lat": 40.8825450, "lon": -73.9779816 }, + { "lat": 40.8829493, "lon": -73.9778590 }, + { "lat": 40.8832804, "lon": -73.9777650 }, + { "lat": 40.8833773, "lon": -73.9777409 }, + { "lat": 40.8834798, "lon": -73.9777199 }, + { "lat": 40.8835673, "lon": -73.9777080 }, + { "lat": 40.8836645, "lon": -73.9777015 }, + { "lat": 40.8837692, "lon": -73.9776982 }, + { "lat": 40.8838013, "lon": -73.9776975 }, + { "lat": 40.8838766, "lon": -73.9776935 } + ], + "tags": { + "Bergen_County_database_ref": "501", + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000501", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "Grand Avenue", + "old_ref": "CR 33", + "oneway": "yes", + "ref": "CR 501", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A31", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Grand", + "tiger:name_base_1": "State Route 93", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1474589323, + "bounds": { + "minlat": 40.8809475, + "minlon": -74.0000422, + "maxlat": 40.8820085, + "maxlon": -73.9967481 + }, + "nodes": [ + 13527742911, + 103187062, + 103182856, + 103199475, + 103123228, + 103187084, + 103139831, + 6786804254, + 103199477, + 3743158462 + ], + "geometry": [ + { "lat": 40.8820085, "lon": -74.0000422 }, + { "lat": 40.8819885, "lon": -73.9999801 }, + { "lat": 40.8818781, "lon": -73.9996374 }, + { "lat": 40.8817021, "lon": -73.9990910 }, + { "lat": 40.8815871, "lon": -73.9987339 }, + { "lat": 40.8814175, "lon": -73.9982076 }, + { "lat": 40.8812891, "lon": -73.9978087 }, + { "lat": 40.8812481, "lon": -73.9976814 }, + { "lat": 40.8811024, "lon": -73.9972291 }, + { "lat": 40.8809475, "lon": -73.9967481 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "35 mph", + "name": "East Cedar Lane", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1474596310, + "bounds": { + "minlat": 40.8332909, + "minlon": -73.9911084, + "maxlat": 40.8333769, + "maxlon": -73.9910423 + }, + "nodes": [ + 103147991, + 103147993 + ], + "geometry": [ + { "lat": 40.8332909, "lon": -73.9911084 }, + { "lat": 40.8333769, "lon": -73.9910423 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000063", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "Bergen Boulevard", + "ref": "NJ 63;CR 501", + "sidewalk:both": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A25", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Bergen", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 46", + "tiger:name_base_3": "United States Highway 1", + "tiger:name_type": "Blvd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1474632158, + "bounds": { + "minlat": 40.8680821, + "minlon": -74.0024175, + "maxlat": 40.8685881, + "maxlon": -74.0017000 + }, + "nodes": [ + 567269808, + 775937799 + ], + "geometry": [ + { "lat": 40.8685881, "lon": -74.0024175 }, + { "lat": 40.8680821, "lon": -74.0017000 } + ], + "tags": { + "Bergen_County_database_ref": "12", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "020000563", + "cycleway:right": "no", + "highway": "primary", + "lanes": "2", + "name": "Degraw Avenue", + "old_ref": "CR 12", + "oneway": "yes", + "ref": "CR 56", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Degraw", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07666", + "tiger:zip_right": "07666" + } +}, +{ + "type": "way", + "id": 1474719269, + "bounds": { + "minlat": 40.8205982, + "minlon": -74.0112340, + "maxlat": 40.8205999, + "maxlon": -74.0111650 + }, + "nodes": [ + 13528850836, + 440208109 + ], + "geometry": [ + { "lat": 40.8205982, "lon": -74.0112340 }, + { "lat": 40.8205999, "lon": -74.0111650 } + ], + "tags": { + "highway": "residential", + "name": "Railroad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Railroad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1474719270, + "bounds": { + "minlat": 40.8205911, + "minlon": -74.0113682, + "maxlat": 40.8205982, + "maxlon": -74.0112340 + }, + "nodes": [ + 13528850837, + 13528850836 + ], + "geometry": [ + { "lat": 40.8205911, "lon": -74.0113682 }, + { "lat": 40.8205982, "lon": -74.0112340 } + ], + "tags": { + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Railroad Avenue", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Railroad", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1474719271, + "bounds": { + "minlat": 40.8322850, + "minlon": -74.0101461, + "maxlat": 40.8335516, + "maxlon": -74.0077261 + }, + "nodes": [ + 103159268, + 12410387533, + 12410387535, + 12410387537, + 12410387539, + 6339836764, + 12410387542, + 12410387502, + 12410387544, + 12410387546, + 103209176, + 12410387508, + 12016315211, + 12016315233, + 103209178, + 695054688 + ], + "geometry": [ + { "lat": 40.8322850, "lon": -74.0077261 }, + { "lat": 40.8323169, "lon": -74.0077836 }, + { "lat": 40.8324018, "lon": -74.0079368 }, + { "lat": 40.8324843, "lon": -74.0080855 }, + { "lat": 40.8325421, "lon": -74.0081897 }, + { "lat": 40.8326280, "lon": -74.0083446 }, + { "lat": 40.8327968, "lon": -74.0086712 }, + { "lat": 40.8328086, "lon": -74.0086940 }, + { "lat": 40.8328790, "lon": -74.0088303 }, + { "lat": 40.8330125, "lon": -74.0090885 }, + { "lat": 40.8330485, "lon": -74.0091583 }, + { "lat": 40.8331700, "lon": -74.0093954 }, + { "lat": 40.8334467, "lon": -74.0099355 }, + { "lat": 40.8334619, "lon": -74.0099654 }, + { "lat": 40.8335019, "lon": -74.0100438 }, + { "lat": 40.8335516, "lon": -74.0101461 } + ], + "tags": { + "Bergen_County_database_ref": "50", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "02000050", + "highway": "tertiary", + "lanes": "2", + "name": "Edgewater Avenue", + "ref": "CR 50", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Edgewater", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 1474730201, + "bounds": { + "minlat": 40.7134069, + "minlon": -73.9874325, + "maxlat": 40.7134227, + "maxlon": -73.9871585 + }, + "nodes": [ + 13528967988, + 13528967989 + ], + "geometry": [ + { "lat": 40.7134069, "lon": -73.9874325 }, + { "lat": 40.7134227, "lon": -73.9871585 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1474730202, + "bounds": { + "minlat": 40.7134227, + "minlon": -73.9871585, + "maxlat": 40.7134316, + "maxlon": -73.9870488 + }, + "nodes": [ + 13528967991, + 13528967990, + 13528967989 + ], + "geometry": [ + { "lat": 40.7134316, "lon": -73.9870488 }, + { "lat": 40.7134255, "lon": -73.9871219 }, + { "lat": 40.7134227, "lon": -73.9871585 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1474767547, + "bounds": { + "minlat": 40.8133562, + "minlon": -73.9837579, + "maxlat": 40.8134292, + "maxlon": -73.9835592 + }, + "nodes": [ + 13529273314, + 13529273315, + 13529273316 + ], + "geometry": [ + { "lat": 40.8134292, "lon": -73.9837579 }, + { "lat": 40.8134175, "lon": -73.9837241 }, + { "lat": 40.8133562, "lon": -73.9835592 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1475186963, + "bounds": { + "minlat": 40.8310279, + "minlon": -73.9320806, + "maxlat": 40.8323955, + "maxlon": -73.9317856 + }, + "nodes": [ + 529051418, + 9166314587, + 9166314588, + 529051421, + 9166314589, + 529051424, + 13533533129, + 13533533130, + 529051451, + 13533533131, + 529059900 + ], + "geometry": [ + { "lat": 40.8310279, "lon": -73.9320806 }, + { "lat": 40.8311281, "lon": -73.9320748 }, + { "lat": 40.8312259, "lon": -73.9320658 }, + { "lat": 40.8313344, "lon": -73.9320522 }, + { "lat": 40.8314390, "lon": -73.9320344 }, + { "lat": 40.8315504, "lon": -73.9320123 }, + { "lat": 40.8316636, "lon": -73.9319870 }, + { "lat": 40.8317666, "lon": -73.9319620 }, + { "lat": 40.8318999, "lon": -73.9319278 }, + { "lat": 40.8320146, "lon": -73.9318955 }, + { "lat": 40.8323955, "lon": -73.9317856 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxheight": "default", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1475186964, + "bounds": { + "minlat": 40.8310428, + "minlon": -73.9319407, + "maxlat": 40.8316959, + "maxlon": -73.9318029 + }, + "nodes": [ + 595786293, + 13533533135, + 13533533139, + 13533533140, + 9166314640, + 13533533141, + 10168291860 + ], + "geometry": [ + { "lat": 40.8310428, "lon": -73.9319407 }, + { "lat": 40.8311885, "lon": -73.9318957 }, + { "lat": 40.8313696, "lon": -73.9318760 }, + { "lat": 40.8314684, "lon": -73.9318601 }, + { "lat": 40.8315451, "lon": -73.9318432 }, + { "lat": 40.8316220, "lon": -73.9318249 }, + { "lat": 40.8316959, "lon": -73.9318029 } + ], + "tags": { + "destination": "Albany", + "destination:ref:to": "I 87 North", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 1475186967, + "bounds": { + "minlat": 40.8374915, + "minlon": -73.9303041, + "maxlat": 40.8413711, + "maxlon": -73.9283683 + }, + "nodes": [ + 60922694, + 13533533157, + 13533533159, + 13533533160, + 13533533161, + 13533533162, + 13533533163, + 13533533164, + 13533533165, + 13533533166, + 13533533175, + 7899202055, + 60920148, + 13533533181, + 60920149, + 7899270385, + 7899151320, + 7899225182, + 7899151323, + 7899225180 + ], + "geometry": [ + { "lat": 40.8374915, "lon": -73.9303041 }, + { "lat": 40.8379133, "lon": -73.9301670 }, + { "lat": 40.8381334, "lon": -73.9300814 }, + { "lat": 40.8383392, "lon": -73.9299937 }, + { "lat": 40.8385505, "lon": -73.9298973 }, + { "lat": 40.8387631, "lon": -73.9297939 }, + { "lat": 40.8389633, "lon": -73.9296922 }, + { "lat": 40.8391673, "lon": -73.9295852 }, + { "lat": 40.8393749, "lon": -73.9294658 }, + { "lat": 40.8395822, "lon": -73.9293448 }, + { "lat": 40.8397791, "lon": -73.9292297 }, + { "lat": 40.8403832, "lon": -73.9288779 }, + { "lat": 40.8405838, "lon": -73.9287586 }, + { "lat": 40.8407790, "lon": -73.9286446 }, + { "lat": 40.8408825, "lon": -73.9285887 }, + { "lat": 40.8409831, "lon": -73.9285359 }, + { "lat": 40.8410844, "lon": -73.9284873 }, + { "lat": 40.8411847, "lon": -73.9284419 }, + { "lat": 40.8412692, "lon": -73.9284084 }, + { "lat": 40.8413711, "lon": -73.9283683 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "maxheight": "default", + "maxheight:signed": "no", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1475186968, + "bounds": { + "minlat": 40.8316959, + "minlon": -73.9318029, + "maxlat": 40.8322129, + "maxlon": -73.9316531 + }, + "nodes": [ + 10168291860, + 13809338790, + 42743036 + ], + "geometry": [ + { "lat": 40.8316959, "lon": -73.9318029 }, + { "lat": 40.8321873, "lon": -73.9316605 }, + { "lat": 40.8322129, "lon": -73.9316531 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 1475186969, + "bounds": { + "minlat": 40.8322129, + "minlon": -73.9316531, + "maxlat": 40.8346940, + "maxlon": -73.9309562 + }, + "nodes": [ + 42743036, + 13533533142, + 13533533145, + 5760246311 + ], + "geometry": [ + { "lat": 40.8322129, "lon": -73.9316531 }, + { "lat": 40.8324494, "lon": -73.9315976 }, + { "lat": 40.8326351, "lon": -73.9315477 }, + { "lat": 40.8346940, "lon": -73.9309562 } + ], + "tags": { + "destination": "Albany", + "destination:ref:to": "I 87 North", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 1475186970, + "bounds": { + "minlat": 40.8395479, + "minlon": -73.9286509, + "maxlat": 40.8398099, + "maxlon": -73.9285158 + }, + "nodes": [ + 13533533182, + 13533533153, + 13533533183, + 42728159 + ], + "geometry": [ + { "lat": 40.8395479, "lon": -73.9285158 }, + { "lat": 40.8396750, "lon": -73.9285775 }, + { "lat": 40.8397621, "lon": -73.9286249 }, + { "lat": 40.8398099, "lon": -73.9286509 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lcn": "yes", + "maxspeed": "25 mph", + "name": "West 167th Street", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "167th", + "tiger:name_direction_prefix": "W", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1475186976, + "bounds": { + "minlat": 40.8408455, + "minlon": -73.9287586, + "maxlat": 40.8416247, + "maxlon": -73.9284166 + }, + "nodes": [ + 7899202013, + 7899225179, + 60919525, + 13533533199, + 13533533198, + 60923208 + ], + "geometry": [ + { "lat": 40.8416247, "lon": -73.9284166 }, + { "lat": 40.8415002, "lon": -73.9284578 }, + { "lat": 40.8413931, "lon": -73.9284985 }, + { "lat": 40.8412746, "lon": -73.9285413 }, + { "lat": 40.8411534, "lon": -73.9285907 }, + { "lat": 40.8408455, "lon": -73.9287586 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1475359072, + "bounds": { + "minlat": 40.8280509, + "minlon": -73.9219245, + "maxlat": 40.8284324, + "maxlon": -73.9216266 + }, + "nodes": [ + 2408446186, + 4606046829, + 13533563288 + ], + "geometry": [ + { "lat": 40.8280509, "lon": -73.9219245 }, + { "lat": 40.8281474, "lon": -73.9218034 }, + { "lat": 40.8284324, "lon": -73.9216266 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:left:buffer": "yes", + "cycleway:right": "lane", + "cycleway:right:buffer": "yes", + "destination": "Service Road", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1475359075, + "bounds": { + "minlat": 40.8355353, + "minlon": -73.9167063, + "maxlat": 40.8356057, + "maxlon": -73.9166403 + }, + "nodes": [ + 13534990438, + 2408379339 + ], + "geometry": [ + { "lat": 40.8356057, "lon": -73.9166403 }, + { "lat": 40.8355353, "lon": -73.9167063 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1475400930, + "bounds": { + "minlat": 40.8343760, + "minlon": -73.9361631, + "maxlat": 40.8345532, + "maxlon": -73.9356955 + }, + "nodes": [ + 6854080985, + 13535318250, + 13535318249, + 13535318248, + 2504882419, + 13535318247, + 13535318246, + 2504882417, + 13535318245, + 13535318244, + 2504882415, + 2504882412 + ], + "geometry": [ + { "lat": 40.8343760, "lon": -73.9356955 }, + { "lat": 40.8343996, "lon": -73.9357062 }, + { "lat": 40.8344232, "lon": -73.9357219 }, + { "lat": 40.8344454, "lon": -73.9357444 }, + { "lat": 40.8344684, "lon": -73.9357720 }, + { "lat": 40.8344914, "lon": -73.9358026 }, + { "lat": 40.8345119, "lon": -73.9358372 }, + { "lat": 40.8345286, "lon": -73.9358738 }, + { "lat": 40.8345409, "lon": -73.9359110 }, + { "lat": 40.8345493, "lon": -73.9359442 }, + { "lat": 40.8345532, "lon": -73.9359827 }, + { "lat": 40.8345440, "lon": -73.9361631 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1475400931, + "bounds": { + "minlat": 40.8343760, + "minlon": -73.9361631, + "maxlat": 40.8346626, + "maxlon": -73.9356697 + }, + "nodes": [ + 2504882412, + 13535318251, + 13535318252, + 13535318253, + 13535318254, + 13535318255, + 13535318256, + 13535318257, + 13535318258, + 13535318259, + 13535318260, + 13535318261, + 6854080985 + ], + "geometry": [ + { "lat": 40.8345440, "lon": -73.9361631 }, + { "lat": 40.8346605, "lon": -73.9360183 }, + { "lat": 40.8346626, "lon": -73.9359269 }, + { "lat": 40.8346583, "lon": -73.9358794 }, + { "lat": 40.8346453, "lon": -73.9358366 }, + { "lat": 40.8346232, "lon": -73.9357874 }, + { "lat": 40.8345942, "lon": -73.9357394 }, + { "lat": 40.8345610, "lon": -73.9357028 }, + { "lat": 40.8345267, "lon": -73.9356808 }, + { "lat": 40.8344926, "lon": -73.9356697 }, + { "lat": 40.8344547, "lon": -73.9356697 }, + { "lat": 40.8344238, "lon": -73.9356766 }, + { "lat": 40.8343760, "lon": -73.9356955 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1475400932, + "bounds": { + "minlat": 40.8331166, + "minlon": -73.9357628, + "maxlat": 40.8331208, + "maxlon": -73.9355892 + }, + "nodes": [ + 6854080996, + 6854080997 + ], + "geometry": [ + { "lat": 40.8331166, "lon": -73.9357628 }, + { "lat": 40.8331208, "lon": -73.9355892 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1475400933, + "bounds": { + "minlat": 40.8334155, + "minlon": -73.9357910, + "maxlat": 40.8334241, + "maxlon": -73.9356106 + }, + "nodes": [ + 6854080994, + 6854080995 + ], + "geometry": [ + { "lat": 40.8334241, "lon": -73.9356106 }, + { "lat": 40.8334155, "lon": -73.9357910 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1475400940, + "bounds": { + "minlat": 40.8317856, + "minlon": -73.9356257, + "maxlat": 40.8318532, + "maxlon": -73.9354566 + }, + "nodes": [ + 2313365627, + 11298492846, + 5009645111 + ], + "geometry": [ + { "lat": 40.8318532, "lon": -73.9356257 }, + { "lat": 40.8318157, "lon": -73.9355318 }, + { "lat": 40.8317856, "lon": -73.9354566 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1475400942, + "bounds": { + "minlat": 40.8335542, + "minlon": -73.9378424, + "maxlat": 40.8338249, + "maxlon": -73.9374900 + }, + "nodes": [ + 9166241204, + 13535333030 + ], + "geometry": [ + { "lat": 40.8338249, "lon": -73.9374900 }, + { "lat": 40.8335542, "lon": -73.9378424 } + ], + "tags": { + "alt_name": "Willie Mays Drive", + "bicycle": "use_sidepath", + "cycleway:left": "separate", + "cycleway:right": "no", + "description": "This honorary street name memorializes Willie Mays.", + "hgv": "destination", + "highway": "tertiary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Harlem River Driveway", + "name:etymology:wikidata": "Q597451", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Harlem River", + "tiger:name_base_1": "159th", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "Dr", + "tiger:name_type_1": "St" + } +}, +{ + "type": "way", + "id": 1475400943, + "bounds": { + "minlat": 40.8297076, + "minlon": -73.9385246, + "maxlat": 40.8299419, + "maxlon": -73.9383747 + }, + "nodes": [ + 5890746369, + 12739224426, + 5444713209 + ], + "geometry": [ + { "lat": 40.8297076, "lon": -73.9385246 }, + { "lat": 40.8297869, "lon": -73.9384742 }, + { "lat": 40.8299419, "lon": -73.9383747 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1475400944, + "bounds": { + "minlat": 40.8302308, + "minlon": -73.9390294, + "maxlat": 40.8305922, + "maxlon": -73.9387331 + }, + "nodes": [ + 5444713214, + 5444713215 + ], + "geometry": [ + { "lat": 40.8302308, "lon": -73.9390294 }, + { "lat": 40.8305922, "lon": -73.9387331 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1475400945, + "bounds": { + "minlat": 40.8305497, + "minlon": -73.9387331, + "maxlat": 40.8305922, + "maxlon": -73.9385267 + }, + "nodes": [ + 5444713215, + 5444713216 + ], + "geometry": [ + { "lat": 40.8305922, "lon": -73.9387331 }, + { "lat": 40.8305497, "lon": -73.9385267 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1475400946, + "bounds": { + "minlat": 40.8323628, + "minlon": -73.9375596, + "maxlat": 40.8324952, + "maxlon": -73.9370570 + }, + "nodes": [ + 5444713927, + 10308637294, + 5444713928, + 5444713929, + 5444713930, + 8348174405 + ], + "geometry": [ + { "lat": 40.8324952, "lon": -73.9370570 }, + { "lat": 40.8324594, "lon": -73.9371341 }, + { "lat": 40.8324257, "lon": -73.9372311 }, + { "lat": 40.8323628, "lon": -73.9373786 }, + { "lat": 40.8323628, "lon": -73.9374125 }, + { "lat": 40.8324280, "lon": -73.9375596 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1475400947, + "bounds": { + "minlat": 40.8275839, + "minlon": -73.9357772, + "maxlat": 40.8276846, + "maxlon": -73.9353210 + }, + "nodes": [ + 2140997997, + 9153608671, + 589927938, + 13535333101, + 5959424804, + 9153608670, + 589927939, + 13535333102, + 13535333103, + 589927940, + 13535333104, + 589927941, + 589927943 + ], + "geometry": [ + { "lat": 40.8275879, "lon": -73.9357772 }, + { "lat": 40.8276553, "lon": -73.9356203 }, + { "lat": 40.8276704, "lon": -73.9355756 }, + { "lat": 40.8276806, "lon": -73.9355389 }, + { "lat": 40.8276843, "lon": -73.9355037 }, + { "lat": 40.8276846, "lon": -73.9354753 }, + { "lat": 40.8276798, "lon": -73.9354476 }, + { "lat": 40.8276708, "lon": -73.9354179 }, + { "lat": 40.8276590, "lon": -73.9353916 }, + { "lat": 40.8276471, "lon": -73.9353703 }, + { "lat": 40.8276287, "lon": -73.9353529 }, + { "lat": 40.8276070, "lon": -73.9353355 }, + { "lat": 40.8275839, "lon": -73.9353210 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Macombs Place", + "name:etymology:wikidata": "Q328356", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1475400948, + "bounds": { + "minlat": 40.8263202, + "minlon": -73.9384158, + "maxlat": 40.8263614, + "maxlon": -73.9383072 + }, + "nodes": [ + 42449127, + 11218835143 + ], + "geometry": [ + { "lat": 40.8263202, "lon": -73.9384158 }, + { "lat": 40.8263614, "lon": -73.9383072 } + ], + "tags": { + "highway": "secondary", + "name": "Macombs Place", + "name:etymology:wikidata": "Q328356", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039" + } +}, +{ + "type": "way", + "id": 1475400950, + "bounds": { + "minlat": 40.8263629, + "minlon": -73.9385187, + "maxlat": 40.8267946, + "maxlon": -73.9376391 + }, + "nodes": [ + 9153608678, + 12994121398, + 13535333107, + 12994121399, + 12994121400 + ], + "geometry": [ + { "lat": 40.8267946, "lon": -73.9376391 }, + { "lat": 40.8267534, "lon": -73.9377229 }, + { "lat": 40.8264389, "lon": -73.9383639 }, + { "lat": 40.8264064, "lon": -73.9384301 }, + { "lat": 40.8263629, "lon": -73.9385187 } + ], + "tags": { + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Macombs Place", + "name:etymology:wikidata": "Q328356", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Macombs", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10039", + "tiger:zip_right": "10039", + "turn:lanes": "right" + } +}, +{ + "type": "way", + "id": 1475400951, + "bounds": { + "minlat": 40.8276675, + "minlon": -73.9351404, + "maxlat": 40.8277907, + "maxlon": -73.9350557 + }, + "nodes": [ + 13535333122, + 13535333124, + 13535333123, + 373769330 + ], + "geometry": [ + { "lat": 40.8276675, "lon": -73.9351404 }, + { "lat": 40.8277053, "lon": -73.9351180 }, + { "lat": 40.8277525, "lon": -73.9350873 }, + { "lat": 40.8277907, "lon": -73.9350557 } + ], + "tags": { + "alt_name": "7th Avenue", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Adam Clayton Powell Jr. Boulevard", + "name:etymology:wikidata": "Q1050018", + "name:ru": "Проспект Адама Клейтона Пауэлла мл.", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:name": "https://data.cityofnewyork.us/d/xh5f-79hn?category=dataset&view_name=Street-Centerline", + "surface": "asphalt", + "turn:lanes": "left|right|right", + "wikidata": "Q109926", + "wikipedia": "en:Seventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1475454592, + "bounds": { + "minlat": 40.8394041, + "minlon": -73.9135621, + "maxlat": 40.8398712, + "maxlon": -73.9133212 + }, + "nodes": [ + 2408355535, + 13038442693, + 13535816392, + 2408355544, + 13535816391, + 13535816390, + 2408355545 + ], + "geometry": [ + { "lat": 40.8398712, "lon": -73.9133212 }, + { "lat": 40.8398139, "lon": -73.9133483 }, + { "lat": 40.8397498, "lon": -73.9133788 }, + { "lat": 40.8396719, "lon": -73.9134180 }, + { "lat": 40.8395851, "lon": -73.9134625 }, + { "lat": 40.8395029, "lon": -73.9135074 }, + { "lat": 40.8394041, "lon": -73.9135621 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "hgv": "destination", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Grand Concourse", + "tiger:reviewed": "no", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1475458802, + "bounds": { + "minlat": 40.8108929, + "minlon": -74.0128208, + "maxlat": 40.8110263, + "maxlon": -74.0125528 + }, + "nodes": [ + 13535872950, + 13535872951, + 13535872953, + 13535872952 + ], + "geometry": [ + { "lat": 40.8110263, "lon": -74.0128208 }, + { "lat": 40.8109891, "lon": -74.0127402 }, + { "lat": 40.8109829, "lon": -74.0127281 }, + { "lat": 40.8108929, "lon": -74.0125528 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1475525303, + "bounds": { + "minlat": 40.8679558, + "minlon": -73.9133648, + "maxlat": 40.8685919, + "maxlon": -73.9119021 + }, + "nodes": [ + 7046287194, + 13536345631, + 13536345630 + ], + "geometry": [ + { "lat": 40.8685919, "lon": -73.9133648 }, + { "lat": 40.8682065, "lon": -73.9124785 }, + { "lat": 40.8679558, "lon": -73.9119021 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1475929085, + "bounds": { + "minlat": 40.7535452, + "minlon": -73.9147119, + "maxlat": 40.7536331, + "maxlon": -73.9145488 + }, + "nodes": [ + 8088642724, + 8088642722 + ], + "geometry": [ + { "lat": 40.7535452, "lon": -73.9147119 }, + { "lat": 40.7536331, "lon": -73.9145488 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "48th Street", + "oneway": "yes", + "sidewalk:both": "separate", + "sidewalk:both:surface": "concrete:plates", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1476044329, + "bounds": { + "minlat": 40.7171130, + "minlon": -74.0145447, + "maxlat": 40.7177265, + "maxlon": -74.0140548 + }, + "nodes": [ + 42431630, + 5815643306, + 5815643340, + 42446814 + ], + "geometry": [ + { "lat": 40.7177265, "lon": -74.0140548 }, + { "lat": 40.7176590, "lon": -74.0141086 }, + { "lat": 40.7171798, "lon": -74.0144910 }, + { "lat": 40.7171130, "lon": -74.0145447 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "North End Avenue", + "name:ko": "노스 엔드 애비뉴", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1476044330, + "bounds": { + "minlat": 40.7173438, + "minlon": -74.0100927, + "maxlat": 40.7174024, + "maxlon": -74.0096330 + }, + "nodes": [ + 42430521, + 42430526 + ], + "geometry": [ + { "lat": 40.7174024, "lon": -74.0100927 }, + { "lat": 40.7173438, "lon": -74.0096330 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Duane Street", + "name:etymology:wikidata": "Q339274", + "name:ko": "두에인 스트리트", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1476044331, + "bounds": { + "minlat": 40.7172754, + "minlon": -74.0096330, + "maxlat": 40.7173438, + "maxlon": -74.0090579 + }, + "nodes": [ + 42430526, + 8304498502, + 42430529 + ], + "geometry": [ + { "lat": 40.7173438, "lon": -74.0096330 }, + { "lat": 40.7172917, "lon": -74.0091856 }, + { "lat": 40.7172754, "lon": -74.0090579 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Duane Street", + "name:etymology:wikidata": "Q339274", + "name:ko": "두에인 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1476044332, + "bounds": { + "minlat": 40.7169280, + "minlon": -74.0100927, + "maxlat": 40.7174024, + "maxlon": -74.0091078 + }, + "nodes": [ + 42430521, + 8304498508, + 42430571 + ], + "geometry": [ + { "lat": 40.7174024, "lon": -74.0100927 }, + { "lat": 40.7169879, "lon": -74.0092276 }, + { "lat": 40.7169280, "lon": -74.0091078 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Duane Street", + "name:etymology:wikidata": "Q339274", + "name:ko": "두에인 스트리트", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1476044333, + "bounds": { + "minlat": 40.7336357, + "minlon": -74.0026286, + "maxlat": 40.7337528, + "maxlon": -74.0018238 + }, + "nodes": [ + 11003403036, + 8475999062, + 4679523598 + ], + "geometry": [ + { "lat": 40.7337528, "lon": -74.0018238 }, + { "lat": 40.7336418, "lon": -74.0025857 }, + { "lat": 40.7336357, "lon": -74.0026286 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "lane", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "destination @ (Fr 17:00-23:00; Sa-Su 12:00-23:00)", + "name": "Christopher Street", + "name:ru": "Кристофер-стрит", + "oneway": "yes", + "parking:right": "no", + "parking:right:restriction": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1086990", + "wikipedia": "en:Christopher Street" + } +}, +{ + "type": "way", + "id": 1476167244, + "bounds": { + "minlat": 40.7490693, + "minlon": -73.9111190, + "maxlat": 40.7492224, + "maxlon": -73.9104870 + }, + "nodes": [ + 13540710108, + 13540710107, + 13540710106, + 13540710105, + 13540710103, + 13540710104, + 13540710108, + 7667086996 + ], + "geometry": [ + { "lat": 40.7491152, "lon": -73.9105228 }, + { "lat": 40.7490693, "lon": -73.9106511 }, + { "lat": 40.7491316, "lon": -73.9111190 }, + { "lat": 40.7492038, "lon": -73.9111078 }, + { "lat": 40.7492224, "lon": -73.9110527 }, + { "lat": 40.7491580, "lon": -73.9105572 }, + { "lat": 40.7491152, "lon": -73.9105228 }, + { "lat": 40.7490706, "lon": -73.9104870 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1476186352, + "bounds": { + "minlat": 40.7226691, + "minlon": -73.9988120, + "maxlat": 40.7230210, + "maxlon": -73.9979746 + }, + "nodes": [ + 42428441, + 3573482109, + 8231931818, + 42442255 + ], + "geometry": [ + { "lat": 40.7230210, "lon": -73.9988120 }, + { "lat": 40.7229818, "lon": -73.9987216 }, + { "lat": 40.7226964, "lon": -73.9980399 }, + { "lat": 40.7226691, "lon": -73.9979746 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "destination", + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "parking:lane:left": "no_parking", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1476230792, + "bounds": { + "minlat": 40.7465327, + "minlon": -73.9071724, + "maxlat": 40.7467980, + "maxlon": -73.9070636 + }, + "nodes": [ + 13541205542, + 13541205543, + 13541205540, + 13541205541 + ], + "geometry": [ + { "lat": 40.7465327, "lon": -73.9070636 }, + { "lat": 40.7465401, "lon": -73.9070890 }, + { "lat": 40.7465650, "lon": -73.9071724 }, + { "lat": 40.7467980, "lon": -73.9070698 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1476230793, + "bounds": { + "minlat": 40.7465074, + "minlon": -73.9070636, + "maxlat": 40.7465327, + "maxlon": -73.9069798 + }, + "nodes": [ + 13541205539, + 13541205542 + ], + "geometry": [ + { "lat": 40.7465074, "lon": -73.9069798 }, + { "lat": 40.7465327, "lon": -73.9070636 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1476367469, + "bounds": { + "minlat": 40.7950208, + "minlon": -73.9970303, + "maxlat": 40.7954116, + "maxlon": -73.9969198 + }, + "nodes": [ + 10020765327, + 103861705, + 4205813744 + ], + "geometry": [ + { "lat": 40.7950208, "lon": -73.9970303 }, + { "lat": 40.7953018, "lon": -73.9969484 }, + { "lat": 40.7954116, "lon": -73.9969198 } + ], + "tags": { + "Bergen_County_database_ref": "505", + "HFCS": "Urban Minor Arterial", + "NJDOT_SRI": "00000505", + "cycleway": "lane", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "name": "River Road", + "name_1": "Old River Road", + "old_ref": "CR 25", + "ref": "CR 505", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "River", + "tiger:name_base_1": "Old River", + "tiger:name_type": "Rd", + "tiger:name_type_1": "Rd", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1476726687, + "bounds": { + "minlat": 40.8023523, + "minlon": -74.0125063, + "maxlat": 40.8025152, + "maxlon": -74.0122088 + }, + "nodes": [ + 13545168238, + 13545168239, + 13545168245, + 13545168244, + 13545168240, + 4205672691 + ], + "geometry": [ + { "lat": 40.8023523, "lon": -74.0122302 }, + { "lat": 40.8023790, "lon": -74.0122088 }, + { "lat": 40.8024338, "lon": -74.0123244 }, + { "lat": 40.8024708, "lon": -74.0124028 }, + { "lat": 40.8024785, "lon": -74.0124189 }, + { "lat": 40.8025152, "lon": -74.0125063 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1476726688, + "bounds": { + "minlat": 40.8022187, + "minlon": -74.0125308, + "maxlat": 40.8024708, + "maxlon": -74.0123380 + }, + "nodes": [ + 13545168242, + 13545168248, + 13545168243, + 13545168251, + 13545168244 + ], + "geometry": [ + { "lat": 40.8022187, "lon": -74.0123380 }, + { "lat": 40.8022759, "lon": -74.0124557 }, + { "lat": 40.8023145, "lon": -74.0125308 }, + { "lat": 40.8023365, "lon": -74.0125128 }, + { "lat": 40.8024708, "lon": -74.0124028 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1476726689, + "bounds": { + "minlat": 40.8023089, + "minlon": -74.0124284, + "maxlat": 40.8024077, + "maxlon": -74.0123457 + }, + "nodes": [ + 13545168246, + 13545168247 + ], + "geometry": [ + { "lat": 40.8024077, "lon": -74.0123457 }, + { "lat": 40.8023089, "lon": -74.0124284 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1476726690, + "bounds": { + "minlat": 40.8024077, + "minlon": -74.0123457, + "maxlat": 40.8024338, + "maxlon": -74.0123244 + }, + "nodes": [ + 13545168245, + 13545168246 + ], + "geometry": [ + { "lat": 40.8024338, "lon": -74.0123244 }, + { "lat": 40.8024077, "lon": -74.0123457 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1476726691, + "bounds": { + "minlat": 40.8022759, + "minlon": -74.0124557, + "maxlat": 40.8023089, + "maxlon": -74.0124284 + }, + "nodes": [ + 13545168247, + 13545168248 + ], + "geometry": [ + { "lat": 40.8023089, "lon": -74.0124284 }, + { "lat": 40.8022759, "lon": -74.0124557 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1476726692, + "bounds": { + "minlat": 40.8021121, + "minlon": -74.0124230, + "maxlat": 40.8022528, + "maxlon": -74.0123111 + }, + "nodes": [ + 13545168236, + 13545168241, + 13545168242, + 13545168237 + ], + "geometry": [ + { "lat": 40.8021121, "lon": -74.0124230 }, + { "lat": 40.8021601, "lon": -74.0123843 }, + { "lat": 40.8022187, "lon": -74.0123380 }, + { "lat": 40.8022528, "lon": -74.0123111 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1476726693, + "bounds": { + "minlat": 40.8022528, + "minlon": -74.0123111, + "maxlat": 40.8023523, + "maxlon": -74.0122302 + }, + "nodes": [ + 13545168237, + 13545168238 + ], + "geometry": [ + { "lat": 40.8022528, "lon": -74.0123111 }, + { "lat": 40.8023523, "lon": -74.0122302 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1476726694, + "bounds": { + "minlat": 40.8023365, + "minlon": -74.0126158, + "maxlat": 40.8023836, + "maxlon": -74.0125128 + }, + "nodes": [ + 13545168249, + 13545168250, + 13545168251 + ], + "geometry": [ + { "lat": 40.8023836, "lon": -74.0126158 }, + { "lat": 40.8023442, "lon": -74.0125350 }, + { "lat": 40.8023365, "lon": -74.0125128 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1476768074, + "bounds": { + "minlat": 40.8308020, + "minlon": -73.9203119, + "maxlat": 40.8308966, + "maxlon": -73.9202573 + }, + "nodes": [ + 10126985491, + 13534912297, + 2408438450 + ], + "geometry": [ + { "lat": 40.8308020, "lon": -73.9203119 }, + { "lat": 40.8308549, "lon": -73.9202813 }, + { "lat": 40.8308966, "lon": -73.9202573 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "highway": "tertiary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Concourse", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q5594456", + "wikipedia": "en:Grand Concourse (Bronx)" + } +}, +{ + "type": "way", + "id": 1476835113, + "bounds": { + "minlat": 40.8029092, + "minlon": -74.0200507, + "maxlat": 40.8029642, + "maxlon": -74.0199352 + }, + "nodes": [ + 103867728, + 5344617794 + ], + "geometry": [ + { "lat": 40.8029092, "lon": -74.0199352 }, + { "lat": 40.8029642, "lon": -74.0200507 } + ], + "tags": { + "highway": "residential", + "name": "74th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1476835114, + "bounds": { + "minlat": 40.8029642, + "minlon": -74.0200507, + "maxlat": 40.8030978, + "maxlon": -74.0199346 + }, + "nodes": [ + 5554920856, + 5344617794 + ], + "geometry": [ + { "lat": 40.8030978, "lon": -74.0199346 }, + { "lat": 40.8029642, "lon": -74.0200507 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "2", + "name": "Tonnelle Avenue", + "oneway": "yes", + "ref": "US 1;US 9", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "tiger:cfcc": "A21", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "Tonnelle", + "tiger:name_base_1": "United States Highway 9", + "tiger:name_base_2": "United States Highway 1", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1476835115, + "bounds": { + "minlat": 40.8030475, + "minlon": -74.0199346, + "maxlat": 40.8030978, + "maxlon": -74.0198126 + }, + "nodes": [ + 103867729, + 5554920856 + ], + "geometry": [ + { "lat": 40.8030475, "lon": -74.0198126 }, + { "lat": 40.8030978, "lon": -74.0199346 } + ], + "tags": { + "highway": "residential", + "name": "74th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "74th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1477007367, + "bounds": { + "minlat": 40.8192894, + "minlon": -73.9301441, + "maxlat": 40.8194250, + "maxlon": -73.9300925 + }, + "nodes": [ + 9166288612, + 13246259564, + 2546166800 + ], + "geometry": [ + { "lat": 40.8194250, "lon": -73.9300925 }, + { "lat": 40.8193482, "lon": -73.9301217 }, + { "lat": 40.8192894, "lon": -73.9301441 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "name": "River Avenue", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "River", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10452", + "tiger:zip_right": "10452" + } +}, +{ + "type": "way", + "id": 1477014837, + "bounds": { + "minlat": 40.8246518, + "minlon": -73.9224628, + "maxlat": 40.8249025, + "maxlon": -73.9223138 + }, + "nodes": [ + 13547349168, + 13033568971 + ], + "geometry": [ + { "lat": 40.8246518, "lon": -73.9224628 }, + { "lat": 40.8249025, "lon": -73.9223138 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "Concourse Village West", + "name:etymology:wikidata": "Q122566725", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Concourse Village", + "tiger:name_direction_suffix": "W", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1477014840, + "bounds": { + "minlat": 40.8218553, + "minlon": -73.9206688, + "maxlat": 40.8220620, + "maxlon": -73.9204059 + }, + "nodes": [ + 1661202371, + 9910723120, + 9910723117, + 9910723121, + 9910723122, + 42735716 + ], + "geometry": [ + { "lat": 40.8218553, "lon": -73.9206688 }, + { "lat": 40.8218878, "lon": -73.9206223 }, + { "lat": 40.8219934, "lon": -73.9204624 }, + { "lat": 40.8220153, "lon": -73.9204418 }, + { "lat": 40.8220337, "lon": -73.9204259 }, + { "lat": 40.8220620, "lon": -73.9204059 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lanes:forward": "2", + "name": "Morris Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "turn:lanes:forward": "through|through;right" + } +}, +{ + "type": "way", + "id": 1477014841, + "bounds": { + "minlat": 40.8222601, + "minlon": -73.9202938, + "maxlat": 40.8223397, + "maxlon": -73.9202495 + }, + "nodes": [ + 9254430679, + 1661234082 + ], + "geometry": [ + { "lat": 40.8222601, "lon": -73.9202938 }, + { "lat": 40.8223397, "lon": -73.9202495 } + ], + "tags": { + "highway": "residential", + "lanes": "2", + "name": "Morris Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1477014842, + "bounds": { + "minlat": 40.8220620, + "minlon": -73.9204059, + "maxlat": 40.8222601, + "maxlon": -73.9202938 + }, + "nodes": [ + 42735716, + 13547352305, + 9254430679 + ], + "geometry": [ + { "lat": 40.8220620, "lon": -73.9204059 }, + { "lat": 40.8221195, "lon": -73.9203766 }, + { "lat": 40.8222601, "lon": -73.9202938 } + ], + "tags": { + "highway": "residential", + "lanes": "3", + "lanes:forward": "2", + "name": "Morris Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Morris", + "tiger:name_type": "Ave", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1477014844, + "bounds": { + "minlat": 40.8219329, + "minlon": -73.9203488, + "maxlat": 40.8220064, + "maxlon": -73.9202437 + }, + "nodes": [ + 13547349179, + 13547349180, + 12038478996, + 13547349181, + 13547349182, + 13547349173, + 13547349179 + ], + "geometry": [ + { "lat": 40.8219329, "lon": -73.9202718 }, + { "lat": 40.8219885, "lon": -73.9202437 }, + { "lat": 40.8219983, "lon": -73.9202730 }, + { "lat": 40.8220064, "lon": -73.9202988 }, + { "lat": 40.8219499, "lon": -73.9203488 }, + { "lat": 40.8219461, "lon": -73.9203238 }, + { "lat": 40.8219329, "lon": -73.9202718 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1477014852, + "bounds": { + "minlat": 40.8220443, + "minlon": -73.9202424, + "maxlat": 40.8221980, + "maxlon": -73.9200945 + }, + "nodes": [ + 13547352309, + 12038478993, + 13547352310, + 13547352304, + 13547352311, + 12038478995, + 13547352312, + 13547352313, + 13547352314, + 13547349185, + 13547352315, + 13547352316, + 13547352317, + 13547349186, + 13547352309 + ], + "geometry": [ + { "lat": 40.8221900, "lon": -73.9200945 }, + { "lat": 40.8221980, "lon": -73.9201518 }, + { "lat": 40.8221970, "lon": -73.9201726 }, + { "lat": 40.8221105, "lon": -73.9202299 }, + { "lat": 40.8220856, "lon": -73.9202424 }, + { "lat": 40.8220725, "lon": -73.9202135 }, + { "lat": 40.8220644, "lon": -73.9202037 }, + { "lat": 40.8220664, "lon": -73.9201729 }, + { "lat": 40.8220443, "lon": -73.9201018 }, + { "lat": 40.8221127, "lon": -73.9201671 }, + { "lat": 40.8221189, "lon": -73.9201759 }, + { "lat": 40.8221357, "lon": -73.9201748 }, + { "lat": 40.8221459, "lon": -73.9201672 }, + { "lat": 40.8221565, "lon": -73.9201453 }, + { "lat": 40.8221900, "lon": -73.9200945 } + ], + "tags": { + "area": "yes", + "bicycle": "no", + "highway": "pedestrian", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1477842994, + "bounds": { + "minlat": 40.8170073, + "minlon": -73.9309072, + "maxlat": 40.8172409, + "maxlon": -73.9300143 + }, + "nodes": [ + 7557695127, + 8236160874, + 13040500266, + 42734141 + ], + "geometry": [ + { "lat": 40.8172409, "lon": -73.9309072 }, + { "lat": 40.8171993, "lon": -73.9307452 }, + { "lat": 40.8170316, "lon": -73.9301111 }, + { "lat": 40.8170073, "lon": -73.9300143 } + ], + "tags": { + "bicycle": "yes", + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 144th Street", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "144th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1478602009, + "bounds": { + "minlat": 40.8368416, + "minlon": -73.9398359, + "maxlat": 40.8370836, + "maxlon": -73.9396649 + }, + "nodes": [ + 13564503784, + 13564503786, + 13564503785 + ], + "geometry": [ + { "lat": 40.8368416, "lon": -73.9398359 }, + { "lat": 40.8368988, "lon": -73.9397955 }, + { "lat": 40.8370836, "lon": -73.9396649 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1478602038, + "bounds": { + "minlat": 40.8232684, + "minlon": -73.9544999, + "maxlat": 40.8233818, + "maxlon": -73.9542092 + }, + "nodes": [ + 13564503811, + 7694624901, + 7694624902 + ], + "geometry": [ + { "lat": 40.8233818, "lon": -73.9544999 }, + { "lat": 40.8233448, "lon": -73.9544051 }, + { "lat": 40.8232684, "lon": -73.9542092 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1478602039, + "bounds": { + "minlat": 40.8233596, + "minlon": -73.9549094, + "maxlat": 40.8235228, + "maxlon": -73.9547932 + }, + "nodes": [ + 7694624894, + 10170703030, + 7694624898, + 7694624895 + ], + "geometry": [ + { "lat": 40.8233596, "lon": -73.9549094 }, + { "lat": 40.8234121, "lon": -73.9548715 }, + { "lat": 40.8234444, "lon": -73.9548481 }, + { "lat": 40.8235228, "lon": -73.9547932 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1479351655, + "bounds": { + "minlat": 40.8351753, + "minlon": -74.0084119, + "maxlat": 40.8371183, + "maxlon": -74.0064640 + }, + "nodes": [ + 7094787505, + 103224081, + 695054585 + ], + "geometry": [ + { "lat": 40.8371183, "lon": -74.0064640 }, + { "lat": 40.8363707, "lon": -74.0072172 }, + { "lat": 40.8351753, "lon": -74.0084119 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NHS": "yes", + "NJDOT_SRI": "00000001", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "35 mph", + "name": "Broad Avenue", + "ref": "US 1;US 9", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A21:A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Broad", + "tiger:name_base_1": "United States Highway 1", + "tiger:name_base_2": "United States Highway 9", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "07657", + "tiger:zip_right": "07657" + } +}, +{ + "type": "way", + "id": 1479963584, + "bounds": { + "minlat": 40.7685629, + "minlon": -73.9078784, + "maxlat": 40.7687185, + "maxlon": -73.9069623 + }, + "nodes": [ + 13174823088, + 13174823082, + 13174823083, + 13174823086, + 13174823084, + 13174823085, + 106076455 + ], + "geometry": [ + { "lat": 40.7687185, "lon": -73.9078784 }, + { "lat": 40.7687101, "lon": -73.9077978 }, + { "lat": 40.7686942, "lon": -73.9076773 }, + { "lat": 40.7686805, "lon": -73.9075807 }, + { "lat": 40.7686651, "lon": -73.9074884 }, + { "lat": 40.7686275, "lon": -73.9072853 }, + { "lat": 40.7685629, "lon": -73.9069623 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "4", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Grand Central Parkway", + "oneway": "yes", + "ref": "I 278;GCP", + "surface": "asphalt", + "toll": "no", + "turn:lanes": "|||slight_right" + } +}, +{ + "type": "way", + "id": 1480350764, + "bounds": { + "minlat": 40.8228337, + "minlon": -73.9165732, + "maxlat": 40.8256998, + "maxlon": -73.9139702 + }, + "nodes": [ + 42750607, + 12040128169, + 42750609, + 12040069766, + 42750611, + 471223196, + 9917683055, + 42748171, + 9917683056, + 9917683048, + 5410095231, + 42732945, + 42739726 + ], + "geometry": [ + { "lat": 40.8228337, "lon": -73.9165732 }, + { "lat": 40.8234194, "lon": -73.9162434 }, + { "lat": 40.8234695, "lon": -73.9162152 }, + { "lat": 40.8235273, "lon": -73.9161852 }, + { "lat": 40.8241067, "lon": -73.9158849 }, + { "lat": 40.8246298, "lon": -73.9156083 }, + { "lat": 40.8246724, "lon": -73.9155684 }, + { "lat": 40.8247137, "lon": -73.9155174 }, + { "lat": 40.8247495, "lon": -73.9154679 }, + { "lat": 40.8247866, "lon": -73.9154108 }, + { "lat": 40.8249617, "lon": -73.9151406 }, + { "lat": 40.8252132, "lon": -73.9147486 }, + { "lat": 40.8256998, "lon": -73.9139702 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Courtlandt Avenue", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Courtland", + "tiger:name_type": "Ave", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1480350765, + "bounds": { + "minlat": 40.8204065, + "minlon": -73.9156082, + "maxlat": 40.8208313, + "maxlon": -73.9139589 + }, + "nodes": [ + 42760879, + 12040128242, + 5482340530, + 42760883 + ], + "geometry": [ + { "lat": 40.8208313, "lon": -73.9156082 }, + { "lat": 40.8208029, "lon": -73.9155003 }, + { "lat": 40.8206831, "lon": -73.9150460 }, + { "lat": 40.8204065, "lon": -73.9139589 } + ], + "tags": { + "highway": "residential", + "name": "East 156th Street", + "name_1": "Thurman Munson Way", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "156th", + "tiger:name_base_1": "Thurman Munson", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:name_type_1": "Way" + } +}, +{ + "type": "way", + "id": 1480350766, + "bounds": { + "minlat": 40.8208313, + "minlon": -73.9174051, + "maxlat": 40.8212879, + "maxlon": -73.9156082 + }, + "nodes": [ + 2827514754, + 9821440515, + 7983876134, + 13547352302, + 12040128240, + 42760879 + ], + "geometry": [ + { "lat": 40.8212879, "lon": -73.9174051 }, + { "lat": 40.8212737, "lon": -73.9173038 }, + { "lat": 40.8210556, "lon": -73.9164961 }, + { "lat": 40.8210251, "lon": -73.9163752 }, + { "lat": 40.8208595, "lon": -73.9157197 }, + { "lat": 40.8208313, "lon": -73.9156082 } + ], + "tags": { + "highway": "residential", + "name": "East 156th Street", + "name_1": "Thurman Munson Way", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "156th", + "tiger:name_base_1": "Thurman Munson", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:name_type_1": "Way" + } +}, +{ + "type": "way", + "id": 1480350767, + "bounds": { + "minlat": 40.8228337, + "minlon": -73.9183260, + "maxlat": 40.8233966, + "maxlon": -73.9165732 + }, + "nodes": [ + 42783436, + 13547352321, + 9910723132, + 8613852479, + 7042965806, + 9632503751, + 9910723129, + 42750607 + ], + "geometry": [ + { "lat": 40.8233966, "lon": -73.9183260 }, + { "lat": 40.8233566, "lon": -73.9182528 }, + { "lat": 40.8233237, "lon": -73.9181925 }, + { "lat": 40.8230867, "lon": -73.9174111 }, + { "lat": 40.8230511, "lon": -73.9172890 }, + { "lat": 40.8228770, "lon": -73.9167307 }, + { "lat": 40.8228570, "lon": -73.9166772 }, + { "lat": 40.8228337, "lon": -73.9165732 } + ], + "tags": { + "highway": "residential", + "name": "East 158th Street", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "158th", + "tiger:name_direction_prefix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451" + } +}, +{ + "type": "way", + "id": 1480350768, + "bounds": { + "minlat": 40.8222495, + "minlon": -73.9202938, + "maxlat": 40.8233966, + "maxlon": -73.9183260 + }, + "nodes": [ + 9254430679, + 12038478994, + 9910723141, + 9254430678, + 3659273379, + 13547352322, + 9910723131, + 42783436 + ], + "geometry": [ + { "lat": 40.8222601, "lon": -73.9202938 }, + { "lat": 40.8222495, "lon": -73.9201464 }, + { "lat": 40.8222776, "lon": -73.9200650 }, + { "lat": 40.8223142, "lon": -73.9199968 }, + { "lat": 40.8229228, "lon": -73.9190678 }, + { "lat": 40.8232975, "lon": -73.9184758 }, + { "lat": 40.8233281, "lon": -73.9184275 }, + { "lat": 40.8233966, "lon": -73.9183260 } + ], + "tags": { + "highway": "residential", + "name": "Park Avenue", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk": "both", + "source": "Bing aerial imagery", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Park", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10451", + "tiger:zip_right": "10451", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1480457529, + "bounds": { + "minlat": 40.7150225, + "minlon": -73.9782149, + "maxlat": 40.7150996, + "maxlon": -73.9781734 + }, + "nodes": [ + 13164899090, + 13164899091 + ], + "geometry": [ + { "lat": 40.7150996, "lon": -73.9781734 }, + { "lat": 40.7150225, "lon": -73.9782149 } + ], + "tags": { + "access": "private", + "bicycle": "designated", + "highway": "service", + "lcn": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1481082799, + "bounds": { + "minlat": 40.8295802, + "minlon": -73.9501081, + "maxlat": 40.8296117, + "maxlon": -73.9500237 + }, + "nodes": [ + 12952282885, + 42434343 + ], + "geometry": [ + { "lat": 40.8295802, "lon": -73.9500237 }, + { "lat": 40.8296117, "lon": -73.9501081 } + ], + "tags": { + "highway": "residential", + "name": "West 149th Street", + "name_1": "West 149 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "149th", + "tiger:name_base_1": "149", + "tiger:name_direction_prefix": "W", + "tiger:name_direction_prefix_1": "W", + "tiger:name_type": "St", + "tiger:name_type_1": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10031", + "tiger:zip_right": "10031" + } +}, +{ + "type": "way", + "id": 1481082800, + "bounds": { + "minlat": 40.8296438, + "minlon": -73.9500111, + "maxlat": 40.8299270, + "maxlon": -73.9499782 + }, + "nodes": [ + 11193743239, + 12952282886, + 12952282887, + 12952282814 + ], + "geometry": [ + { "lat": 40.8296438, "lon": -73.9500111 }, + { "lat": 40.8297104, "lon": -73.9499946 }, + { "lat": 40.8297929, "lon": -73.9499782 }, + { "lat": 40.8299270, "lon": -73.9500027 } + ], + "tags": { + "alt_name": "Riverside Drive East", + "cycleway:both": "no", + "hgv": "no", + "highway": "secondary", + "lanes": "2", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1481082801, + "bounds": { + "minlat": 40.8296438, + "minlon": -73.9500111, + "maxlat": 40.8316950, + "maxlon": -73.9492560 + }, + "nodes": [ + 11193743239, + 7738238878, + 7738238877, + 2504891665, + 7738238876, + 7738238875, + 7738238874, + 42441771, + 2513517574, + 42441774, + 42441777 + ], + "geometry": [ + { "lat": 40.8296438, "lon": -73.9500111 }, + { "lat": 40.8296743, "lon": -73.9499626 }, + { "lat": 40.8297004, "lon": -73.9499302 }, + { "lat": 40.8297499, "lon": -73.9498862 }, + { "lat": 40.8297929, "lon": -73.9498588 }, + { "lat": 40.8298719, "lon": -73.9498192 }, + { "lat": 40.8299613, "lon": -73.9497853 }, + { "lat": 40.8302440, "lon": -73.9496880 }, + { "lat": 40.8308181, "lon": -73.9495130 }, + { "lat": 40.8309620, "lon": -73.9494620 }, + { "lat": 40.8316950, "lon": -73.9492560 } + ], + "tags": { + "highway": "residential", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "oneway": "yes", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "wikidata": "Q2589766", + "wikipedia": "en:Riverside Drive (Manhattan)" + } +}, +{ + "type": "way", + "id": 1482519643, + "bounds": { + "minlat": 40.8769679, + "minlon": -73.9895006, + "maxlat": 40.8772246, + "maxlon": -73.9893292 + }, + "nodes": [ + 13595347909, + 13595347910 + ], + "geometry": [ + { "lat": 40.8769679, "lon": -73.9895006 }, + { "lat": 40.8772246, "lon": -73.9893292 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1482519644, + "bounds": { + "minlat": 40.8773770, + "minlon": -73.9883228, + "maxlat": 40.8777649, + "maxlon": -73.9880515 + }, + "nodes": [ + 13595347911, + 13595347912, + 13595347913 + ], + "geometry": [ + { "lat": 40.8773770, "lon": -73.9880515 }, + { "lat": 40.8774955, "lon": -73.9883228 }, + { "lat": 40.8777649, "lon": -73.9881536 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1482782942, + "bounds": { + "minlat": 40.7666470, + "minlon": -73.9805728, + "maxlat": 40.7669707, + "maxlon": -73.9803448 + }, + "nodes": [ + 13597337260, + 13597337261, + 13597337262 + ], + "geometry": [ + { "lat": 40.7666470, "lon": -73.9805728 }, + { "lat": 40.7666988, "lon": -73.9805344 }, + { "lat": 40.7669707, "lon": -73.9803448 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1483327933, + "bounds": { + "minlat": 40.8075268, + "minlon": -74.0029459, + "maxlat": 40.8076511, + "maxlon": -74.0025753 + }, + "nodes": [ + 13602075848, + 13602075849, + 13602075850 + ], + "geometry": [ + { "lat": 40.8075268, "lon": -74.0025753 }, + { "lat": 40.8075653, "lon": -74.0026860 }, + { "lat": 40.8076511, "lon": -74.0029459 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1484426243, + "bounds": { + "minlat": 40.7775512, + "minlon": -73.9831739, + "maxlat": 40.7777818, + "maxlon": -73.9830114 + }, + "nodes": [ + 13610766993, + 13610766994, + 13610766995 + ], + "geometry": [ + { "lat": 40.7775512, "lon": -73.9831739 }, + { "lat": 40.7776107, "lon": -73.9831324 }, + { "lat": 40.7777818, "lon": -73.9830114 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1484543244, + "bounds": { + "minlat": 40.8046958, + "minlon": -73.9224013, + "maxlat": 40.8053725, + "maxlon": -73.9218931 + }, + "nodes": [ + 42739615, + 9908650927, + 8285355503, + 11427299925, + 42725481 + ], + "geometry": [ + { "lat": 40.8046958, "lon": -73.9224013 }, + { "lat": 40.8048006, "lon": -73.9223234 }, + { "lat": 40.8052708, "lon": -73.9219739 }, + { "lat": 40.8053137, "lon": -73.9219398 }, + { "lat": 40.8053725, "lon": -73.9218931 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Brown Place", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Brown", + "tiger:name_type": "Pl", + "tiger:reviewed": "no", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1484543245, + "bounds": { + "minlat": 40.8046296, + "minlon": -73.9224013, + "maxlat": 40.8046958, + "maxlon": -73.9222416 + }, + "nodes": [ + 42739615, + 9908650926, + 7135100759 + ], + "geometry": [ + { "lat": 40.8046958, "lon": -73.9224013 }, + { "lat": 40.8046631, "lon": -73.9223229 }, + { "lat": 40.8046296, "lon": -73.9222416 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1484543246, + "bounds": { + "minlat": 40.8040343, + "minlon": -73.9215827, + "maxlat": 40.8043498, + "maxlon": -73.9208251 + }, + "nodes": [ + 42753240, + 9908650936, + 7038610359, + 7038610362 + ], + "geometry": [ + { "lat": 40.8043498, "lon": -73.9215827 }, + { "lat": 40.8043041, "lon": -73.9214699 }, + { "lat": 40.8041926, "lon": -73.9212026 }, + { "lat": 40.8040343, "lon": -73.9208251 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes:backward": "left|" + } +}, +{ + "type": "way", + "id": 1485584212, + "bounds": { + "minlat": 40.8443293, + "minlon": -74.0102867, + "maxlat": 40.8443940, + "maxlon": -74.0092815 + }, + "nodes": [ + 298566983, + 10927913948, + 298567563, + 10927913906, + 10927913919, + 10927913950, + 298566985, + 10927913914, + 11084293560 + ], + "geometry": [ + { "lat": 40.8443940, "lon": -74.0102867 }, + { "lat": 40.8443889, "lon": -74.0101611 }, + { "lat": 40.8443829, "lon": -74.0100223 }, + { "lat": 40.8443770, "lon": -74.0098828 }, + { "lat": 40.8443671, "lon": -74.0097410 }, + { "lat": 40.8443572, "lon": -74.0095982 }, + { "lat": 40.8443451, "lon": -74.0094523 }, + { "lat": 40.8443326, "lon": -74.0093162 }, + { "lat": 40.8443293, "lon": -74.0092815 } + ], + "tags": { + "HFCS": "Urban Principal Arterial", + "NJDOT_SRI": "00000046", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:state_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "oneway": "yes", + "placement": "right_of:1", + "ref": "US 46", + "source:hgv:state_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1485587746, + "bounds": { + "minlat": 40.8198648, + "minlon": -73.9308093, + "maxlat": 40.8208000, + "maxlon": -73.9305484 + }, + "nodes": [ + 13146413880, + 13146413882, + 13146413883, + 13146413884, + 11570004639 + ], + "geometry": [ + { "lat": 40.8208000, "lon": -73.9308093 }, + { "lat": 40.8205816, "lon": -73.9307787 }, + { "lat": 40.8205581, "lon": -73.9307713 }, + { "lat": 40.8199941, "lon": -73.9306123 }, + { "lat": 40.8198648, "lon": -73.9305484 } + ], + "tags": { + "highway": "secondary", + "maxspeed": "25 mph", + "name": "Exterior Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1485587747, + "bounds": { + "minlat": 40.8208052, + "minlon": -73.9304121, + "maxlat": 40.8208354, + "maxlon": -73.9304114 + }, + "nodes": [ + 7931142275, + 7672826908 + ], + "geometry": [ + { "lat": 40.8208052, "lon": -73.9304121 }, + { "lat": 40.8208354, "lon": -73.9304114 } + ], + "tags": { + "access": "customers", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1485737439, + "bounds": { + "minlat": 40.8037850, + "minlon": -74.0117268, + "maxlat": 40.8039979, + "maxlon": -74.0115630 + }, + "nodes": [ + 13620586457, + 13620586462, + 13620586459, + 13620586458 + ], + "geometry": [ + { "lat": 40.8037850, "lon": -74.0117268 }, + { "lat": 40.8038278, "lon": -74.0116943 }, + { "lat": 40.8039431, "lon": -74.0116054 }, + { "lat": 40.8039979, "lon": -74.0115630 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1485737440, + "bounds": { + "minlat": 40.8038695, + "minlon": -74.0116054, + "maxlat": 40.8039431, + "maxlon": -74.0114258 + }, + "nodes": [ + 13620586459, + 13620586461, + 13620586460 + ], + "geometry": [ + { "lat": 40.8039431, "lon": -74.0116054 }, + { "lat": 40.8039170, "lon": -74.0115460 }, + { "lat": 40.8038695, "lon": -74.0114258 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1485933730, + "bounds": { + "minlat": 40.7972421, + "minlon": -74.0153509, + "maxlat": 40.7973434, + "maxlon": -74.0150925 + }, + "nodes": [ + 13622219948, + 13622219949, + 13622219950 + ], + "geometry": [ + { "lat": 40.7973434, "lon": -74.0153509 }, + { "lat": 40.7973095, "lon": -74.0152221 }, + { "lat": 40.7972421, "lon": -74.0150925 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1485995169, + "bounds": { + "minlat": 40.7855795, + "minlon": -73.9287799, + "maxlat": 40.7858900, + "maxlon": -73.9285197 + }, + "nodes": [ + 3040261610, + 3040261608, + 5610570619 + ], + "geometry": [ + { "lat": 40.7858900, "lon": -73.9287799 }, + { "lat": 40.7856985, "lon": -73.9286185 }, + { "lat": 40.7855795, "lon": -73.9285197 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1486835518, + "bounds": { + "minlat": 40.8036336, + "minlon": -73.9197388, + "maxlat": 40.8049012, + "maxlon": -73.9188128 + }, + "nodes": [ + 10702583014, + 9156970090, + 9908642172, + 42763131, + 9908642173, + 9156979760, + 42747190 + ], + "geometry": [ + { "lat": 40.8036336, "lon": -73.9197388 }, + { "lat": 40.8036956, "lon": -73.9196915 }, + { "lat": 40.8042014, "lon": -73.9193236 }, + { "lat": 40.8042596, "lon": -73.9192813 }, + { "lat": 40.8043162, "lon": -73.9192399 }, + { "lat": 40.8048200, "lon": -73.9188689 }, + { "lat": 40.8049012, "lon": -73.9188128 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "no", + "highway": "residential", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Ann's Avenue", + "name:etymology:wikidata": "Q7586962", + "oneway": "no", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "St Ann's", + "tiger:name_type": "Ave", + "tiger:zip_left": "10456", + "tiger:zip_right": "10456" + } +}, +{ + "type": "way", + "id": 1486835519, + "bounds": { + "minlat": 40.8036336, + "minlon": -73.9204250, + "maxlat": 40.8038695, + "maxlon": -73.9197388 + }, + "nodes": [ + 10702583014, + 11427299976, + 10702583013, + 7457285512 + ], + "geometry": [ + { "lat": 40.8036336, "lon": -73.9197388 }, + { "lat": 40.8036879, "lon": -73.9198699 }, + { "lat": 40.8037725, "lon": -73.9200737 }, + { "lat": 40.8038695, "lon": -73.9204250 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes": "merge_to_right|" + } +}, +{ + "type": "way", + "id": 1486968518, + "bounds": { + "minlat": 40.7944474, + "minlon": -73.9964510, + "maxlat": 40.7945345, + "maxlon": -73.9957005 + }, + "nodes": [ + 5482013546, + 5482013545, + 3633386744 + ], + "geometry": [ + { "lat": 40.7945129, "lon": -73.9964510 }, + { "lat": 40.7945345, "lon": -73.9961828 }, + { "lat": 40.7944474, "lon": -73.9957005 } + ], + "tags": { + "highway": "residential", + "name": "River Road" + } +}, +{ + "type": "way", + "id": 1487522437, + "bounds": { + "minlat": 40.7715635, + "minlon": -73.9275102, + "maxlat": 40.7716939, + "maxlon": -73.9274026 + }, + "nodes": [ + 13637441791, + 13637441792 + ], + "geometry": [ + { "lat": 40.7715635, "lon": -73.9275102 }, + { "lat": 40.7716939, "lon": -73.9274026 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1487522438, + "bounds": { + "minlat": 40.7714906, + "minlon": -73.9275723, + "maxlat": 40.7715635, + "maxlon": -73.9275102 + }, + "nodes": [ + 13637441789, + 13637441790, + 13637441791 + ], + "geometry": [ + { "lat": 40.7714906, "lon": -73.9275723 }, + { "lat": 40.7715432, "lon": -73.9275299 }, + { "lat": 40.7715635, "lon": -73.9275102 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1490048638, + "bounds": { + "minlat": 40.7541669, + "minlon": -73.9177260, + "maxlat": 40.7542519, + "maxlon": -73.9175347 + }, + "nodes": [ + 13657572763, + 13657572764 + ], + "geometry": [ + { "lat": 40.7542519, "lon": -73.9177260 }, + { "lat": 40.7541669, "lon": -73.9175347 } + ], + "tags": { + "highway": "service", + "service": "driveway", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1490048639, + "bounds": { + "minlat": 40.7542519, + "minlon": -73.9179497, + "maxlat": 40.7543513, + "maxlon": -73.9177260 + }, + "nodes": [ + 13657572762, + 13657572763 + ], + "geometry": [ + { "lat": 40.7543513, "lon": -73.9179497 }, + { "lat": 40.7542519, "lon": -73.9177260 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1490048640, + "bounds": { + "minlat": 40.7541169, + "minlon": -73.9175347, + "maxlat": 40.7541669, + "maxlon": -73.9174251 + }, + "nodes": [ + 13657572764, + 13657572761, + 10774472416 + ], + "geometry": [ + { "lat": 40.7541669, "lon": -73.9175347 }, + { "lat": 40.7541525, "lon": -73.9175022 }, + { "lat": 40.7541169, "lon": -73.9174251 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1490051075, + "bounds": { + "minlat": 40.7505993, + "minlon": -74.0077349, + "maxlat": 40.7509713, + "maxlon": -74.0068562 + }, + "nodes": [ + 13657645188, + 13657645189 + ], + "geometry": [ + { "lat": 40.7505993, "lon": -74.0068562 }, + { "lat": 40.7509713, "lon": -74.0077349 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1490051076, + "bounds": { + "minlat": 40.7501781, + "minlon": -74.0068562, + "maxlat": 40.7505993, + "maxlon": -74.0060705 + }, + "nodes": [ + 42430594, + 13657645184, + 13657645185, + 13657645188 + ], + "geometry": [ + { "lat": 40.7501781, "lon": -74.0060705 }, + { "lat": 40.7502477, "lon": -74.0062068 }, + { "lat": 40.7503513, "lon": -74.0062509 }, + { "lat": 40.7505993, "lon": -74.0068562 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1490051077, + "bounds": { + "minlat": 40.7509713, + "minlon": -74.0080732, + "maxlat": 40.7510913, + "maxlon": -74.0077349 + }, + "nodes": [ + 13657645189, + 13657645186, + 13657645187 + ], + "geometry": [ + { "lat": 40.7509713, "lon": -74.0077349 }, + { "lat": 40.7510511, "lon": -74.0079311 }, + { "lat": 40.7510913, "lon": -74.0080732 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1492458245, + "bounds": { + "minlat": 40.7729880, + "minlon": -73.9163880, + "maxlat": 40.7750620, + "maxlon": -73.9138570 + }, + "nodes": [ + 42833266, + 6450635287, + 6459357049, + 42833268, + 6459357051, + 6450635173, + 42818207 + ], + "geometry": [ + { "lat": 40.7750620, "lon": -73.9138570 }, + { "lat": 40.7750067, "lon": -73.9139243 }, + { "lat": 40.7742046, "lon": -73.9149007 }, + { "lat": 40.7741510, "lon": -73.9149660 }, + { "lat": 40.7741005, "lon": -73.9150278 }, + { "lat": 40.7730564, "lon": -73.9163044 }, + { "lat": 40.7729880, "lon": -73.9163880 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "15 mph", + "maxspeed:type": "sign", + "name": "29th Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1492458246, + "bounds": { + "minlat": 40.7700635, + "minlon": -73.9067729, + "maxlat": 40.7718453, + "maxlon": -73.9046259 + }, + "nodes": [ + 42874636, + 10764679315, + 7829710747, + 5538998211, + 11619602930, + 9776150586, + 7829710749 + ], + "geometry": [ + { "lat": 40.7718453, "lon": -73.9046259 }, + { "lat": 40.7717892, "lon": -73.9046936 }, + { "lat": 40.7708844, "lon": -73.9057857 }, + { "lat": 40.7706129, "lon": -73.9061134 }, + { "lat": 40.7701475, "lon": -73.9066731 }, + { "lat": 40.7701202, "lon": -73.9067059 }, + { "lat": 40.7700635, "lon": -73.9067729 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "maxspeed": "15 mph", + "maxspeed:type": "sign", + "name": "42nd Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1492458247, + "bounds": { + "minlat": 40.7631512, + "minlon": -73.9133913, + "maxlat": 40.7685463, + "maxlon": -73.9090014 + }, + "nodes": [ + 42912776, + 6453101708, + 3570193173, + 6453106194, + 42842485, + 6453106193, + 6453034929, + 42833005, + 3570249985, + 3570249948, + 42874072 + ], + "geometry": [ + { "lat": 40.7685463, "lon": -73.9090014 }, + { "lat": 40.7684758, "lon": -73.9090580 }, + { "lat": 40.7673135, "lon": -73.9100051 }, + { "lat": 40.7672755, "lon": -73.9100360 }, + { "lat": 40.7672009, "lon": -73.9100967 }, + { "lat": 40.7671429, "lon": -73.9101437 }, + { "lat": 40.7648054, "lon": -73.9120467 }, + { "lat": 40.7647348, "lon": -73.9121040 }, + { "lat": 40.7646654, "lon": -73.9121605 }, + { "lat": 40.7632202, "lon": -73.9133351 }, + { "lat": 40.7631512, "lon": -73.9133913 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "42nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1492458248, + "bounds": { + "minlat": 40.7612436, + "minlon": -73.9149432, + "maxlat": 40.7631512, + "maxlon": -73.9133913 + }, + "nodes": [ + 42874072, + 3570249943, + 9295332614, + 5867077863, + 6450623251, + 6450632090, + 42920456 + ], + "geometry": [ + { "lat": 40.7631512, "lon": -73.9133913 }, + { "lat": 40.7630824, "lon": -73.9134473 }, + { "lat": 40.7621720, "lon": -73.9141879 }, + { "lat": 40.7613866, "lon": -73.9148269 }, + { "lat": 40.7613294, "lon": -73.9148734 }, + { "lat": 40.7613149, "lon": -73.9148852 }, + { "lat": 40.7612436, "lon": -73.9149432 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "15 mph", + "maxspeed:type": "sign", + "name": "42nd Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1492536225, + "bounds": { + "minlat": 40.8498524, + "minlon": -73.9417937, + "maxlat": 40.8504287, + "maxlon": -73.9414459 + }, + "nodes": [ + 60929035, + 13677121411, + 13677121412, + 13677121413, + 13677121414 + ], + "geometry": [ + { "lat": 40.8504287, "lon": -73.9417421 }, + { "lat": 40.8503771, "lon": -73.9417357 }, + { "lat": 40.8502956, "lon": -73.9416583 }, + { "lat": 40.8501441, "lon": -73.9414459 }, + { "lat": 40.8498524, "lon": -73.9417937 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1492545724, + "bounds": { + "minlat": 40.7472833, + "minlon": -73.9810436, + "maxlat": 40.7473364, + "maxlon": -73.9809004 + }, + "nodes": [ + 13677213620, + 13677213621, + 13677213622 + ], + "geometry": [ + { "lat": 40.7473364, "lon": -73.9810436 }, + { "lat": 40.7472997, "lon": -73.9809431 }, + { "lat": 40.7472833, "lon": -73.9809004 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1492983343, + "bounds": { + "minlat": 40.7681846, + "minlon": -73.9605835, + "maxlat": 40.7685655, + "maxlon": -73.9603104 + }, + "nodes": [ + 8393918885, + 8393918886 + ], + "geometry": [ + { "lat": 40.7681846, "lon": -73.9605835 }, + { "lat": 40.7685655, "lon": -73.9603104 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1492984310, + "bounds": { + "minlat": 40.7443905, + "minlon": -74.0075684, + "maxlat": 40.7444870, + "maxlon": -74.0075443 + }, + "nodes": [ + 13680980812, + 13680980811 + ], + "geometry": [ + { "lat": 40.7444870, "lon": -74.0075443 }, + { "lat": 40.7443905, "lon": -74.0075684 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1492984311, + "bounds": { + "minlat": 40.7449804, + "minlon": -74.0073945, + "maxlat": 40.7450640, + "maxlon": -74.0073703 + }, + "nodes": [ + 13680980815, + 13680980814 + ], + "geometry": [ + { "lat": 40.7450640, "lon": -74.0073703 }, + { "lat": 40.7449804, "lon": -74.0073945 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1492984312, + "bounds": { + "minlat": 40.7444870, + "minlon": -74.0075443, + "maxlat": 40.7449804, + "maxlon": -74.0073945 + }, + "nodes": [ + 13680980814, + 13680980813, + 13680980812 + ], + "geometry": [ + { "lat": 40.7449804, "lon": -74.0073945 }, + { "lat": 40.7447453, "lon": -74.0074844 }, + { "lat": 40.7444870, "lon": -74.0075443 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1492985099, + "bounds": { + "minlat": 40.7662608, + "minlon": -73.9608583, + "maxlat": 40.7664499, + "maxlon": -73.9607216 + }, + "nodes": [ + 13680975212, + 13680975211, + 13680975210 + ], + "geometry": [ + { "lat": 40.7662608, "lon": -73.9608583 }, + { "lat": 40.7663942, "lon": -73.9607620 }, + { "lat": 40.7664499, "lon": -73.9607216 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1492985100, + "bounds": { + "minlat": 40.7659211, + "minlon": -73.9611169, + "maxlat": 40.7662608, + "maxlon": -73.9608583 + }, + "nodes": [ + 13680975213, + 13680975212 + ], + "geometry": [ + { "lat": 40.7659211, "lon": -73.9611169 }, + { "lat": 40.7662608, "lon": -73.9608583 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1492985101, + "bounds": { + "minlat": 40.7658277, + "minlon": -73.9612010, + "maxlat": 40.7659211, + "maxlon": -73.9611169 + }, + "nodes": [ + 13680975215, + 13680975214, + 13680975213 + ], + "geometry": [ + { "lat": 40.7658277, "lon": -73.9612010 }, + { "lat": 40.7658818, "lon": -73.9611531 }, + { "lat": 40.7659211, "lon": -73.9611169 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1492985466, + "bounds": { + "minlat": 40.7551265, + "minlon": -73.9625821, + "maxlat": 40.7552292, + "maxlon": -73.9624275 + }, + "nodes": [ + 13680946055, + 13680946062, + 13680946057, + 13680946061, + 13680946060, + 13680946059, + 13680946056 + ], + "geometry": [ + { "lat": 40.7551265, "lon": -73.9624853 }, + { "lat": 40.7551641, "lon": -73.9625674 }, + { "lat": 40.7551870, "lon": -73.9625821 }, + { "lat": 40.7552083, "lon": -73.9625768 }, + { "lat": 40.7552281, "lon": -73.9625473 }, + { "lat": 40.7552292, "lon": -73.9625097 }, + { "lat": 40.7552056, "lon": -73.9624275 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1492985506, + "bounds": { + "minlat": 40.7551834, + "minlon": -73.9624275, + "maxlat": 40.7552056, + "maxlon": -73.9623501 + }, + "nodes": [ + 13680946056, + 13680946058 + ], + "geometry": [ + { "lat": 40.7552056, "lon": -73.9624275 }, + { "lat": 40.7551834, "lon": -73.9623501 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1492985507, + "bounds": { + "minlat": 40.7550934, + "minlon": -73.9624853, + "maxlat": 40.7551265, + "maxlon": -73.9624129 + }, + "nodes": [ + 13680946063, + 13680946055 + ], + "geometry": [ + { "lat": 40.7550934, "lon": -73.9624129 }, + { "lat": 40.7551265, "lon": -73.9624853 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1493003748, + "bounds": { + "minlat": 40.7617273, + "minlon": -73.9785286, + "maxlat": 40.7621082, + "maxlon": -73.9782867 + }, + "nodes": [ + 13681064666, + 4544486779 + ], + "geometry": [ + { "lat": 40.7617273, "lon": -73.9785286 }, + { "lat": 40.7621082, "lon": -73.9782867 } + ], + "tags": { + "highway": "service", + "layer": "-1" + } +}, +{ + "type": "way", + "id": 1493003749, + "bounds": { + "minlat": 40.7615964, + "minlon": -73.9786246, + "maxlat": 40.7617273, + "maxlon": -73.9785286 + }, + "nodes": [ + 13681064668, + 13681064667, + 13681064666 + ], + "geometry": [ + { "lat": 40.7615964, "lon": -73.9786246 }, + { "lat": 40.7616586, "lon": -73.9785799 }, + { "lat": 40.7617273, "lon": -73.9785286 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1493006435, + "bounds": { + "minlat": 40.7301999, + "minlon": -74.0099238, + "maxlat": 40.7303099, + "maxlon": -74.0099064 + }, + "nodes": [ + 13681042779, + 13681042778 + ], + "geometry": [ + { "lat": 40.7303099, "lon": -74.0099064 }, + { "lat": 40.7301999, "lon": -74.0099238 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1493006436, + "bounds": { + "minlat": 40.7303099, + "minlon": -74.0099064, + "maxlat": 40.7303976, + "maxlon": -74.0098981 + }, + "nodes": [ + 13681042780, + 13681042779 + ], + "geometry": [ + { "lat": 40.7303976, "lon": -74.0098981 }, + { "lat": 40.7303099, "lon": -74.0099064 } + ], + "tags": { + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1493006437, + "bounds": { + "minlat": 40.7303976, + "minlon": -74.0098981, + "maxlat": 40.7305181, + "maxlon": -74.0098854 + }, + "nodes": [ + 13681042782, + 13681042781, + 13681042780 + ], + "geometry": [ + { "lat": 40.7305181, "lon": -74.0098854 }, + { "lat": 40.7304425, "lon": -74.0098943 }, + { "lat": 40.7303976, "lon": -74.0098981 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1493330498, + "bounds": { + "minlat": 40.8361530, + "minlon": -73.9481211, + "maxlat": 40.8362156, + "maxlon": -73.9480974 + }, + "nodes": [ + 5354421380, + 9935939176, + 5438376516 + ], + "geometry": [ + { "lat": 40.8362156, "lon": -73.9480974 }, + { "lat": 40.8361686, "lon": -73.9481152 }, + { "lat": 40.8361530, "lon": -73.9481211 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1494927788, + "bounds": { + "minlat": 40.8210691, + "minlon": -73.9253674, + "maxlat": 40.8215105, + "maxlon": -73.9252253 + }, + "nodes": [ + 7557517339, + 13697549117, + 10133486263, + 13697549118, + 13697549119 + ], + "geometry": [ + { "lat": 40.8210691, "lon": -73.9252253 }, + { "lat": 40.8211882, "lon": -73.9252787 }, + { "lat": 40.8212698, "lon": -73.9253131 }, + { "lat": 40.8213622, "lon": -73.9253355 }, + { "lat": 40.8215105, "lon": -73.9253674 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1495102110, + "bounds": { + "minlat": 40.7264392, + "minlon": -74.0065705, + "maxlat": 40.7265197, + "maxlon": -74.0065590 + }, + "nodes": [ + 13698684113, + 13698684112, + 13698684111 + ], + "geometry": [ + { "lat": 40.7265197, "lon": -74.0065590 }, + { "lat": 40.7264614, "lon": -74.0065672 }, + { "lat": 40.7264392, "lon": -74.0065705 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495102111, + "bounds": { + "minlat": 40.7264269, + "minlon": -74.0064399, + "maxlat": 40.7265074, + "maxlon": -74.0064288 + }, + "nodes": [ + 13698684116, + 13698684115, + 13698684114 + ], + "geometry": [ + { "lat": 40.7265074, "lon": -74.0064288 }, + { "lat": 40.7264481, "lon": -74.0064370 }, + { "lat": 40.7264269, "lon": -74.0064399 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495102112, + "bounds": { + "minlat": 40.7264133, + "minlon": -74.0063010, + "maxlat": 40.7264944, + "maxlon": -74.0062906 + }, + "nodes": [ + 13698684119, + 13698684118, + 13698684117 + ], + "geometry": [ + { "lat": 40.7264944, "lon": -74.0062906 }, + { "lat": 40.7264338, "lon": -74.0062980 }, + { "lat": 40.7264133, "lon": -74.0063010 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495102113, + "bounds": { + "minlat": 40.7264504, + "minlon": -74.0066865, + "maxlat": 40.7265304, + "maxlon": -74.0066728 + }, + "nodes": [ + 13698684122, + 13698684121, + 13698684120 + ], + "geometry": [ + { "lat": 40.7265304, "lon": -74.0066728 }, + { "lat": 40.7264732, "lon": -74.0066823 }, + { "lat": 40.7264504, "lon": -74.0066865 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495403978, + "bounds": { + "minlat": 40.8824180, + "minlon": -73.9070705, + "maxlat": 40.8826279, + "maxlon": -73.9067458 + }, + "nodes": [ + 13700716335, + 13700716334 + ], + "geometry": [ + { "lat": 40.8824180, "lon": -73.9067458 }, + { "lat": 40.8826279, "lon": -73.9070705 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495403979, + "bounds": { + "minlat": 40.8822926, + "minlon": -73.9072220, + "maxlat": 40.8825123, + "maxlon": -73.9068913 + }, + "nodes": [ + 13700716337, + 13700716336 + ], + "geometry": [ + { "lat": 40.8822926, "lon": -73.9068913 }, + { "lat": 40.8825123, "lon": -73.9072220 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495430496, + "bounds": { + "minlat": 40.8351609, + "minlon": -73.9079595, + "maxlat": 40.8351838, + "maxlon": -73.9078565 + }, + "nodes": [ + 8246868397, + 13700803270 + ], + "geometry": [ + { "lat": 40.8351609, "lon": -73.9078565 }, + { "lat": 40.8351838, "lon": -73.9079595 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495430497, + "bounds": { + "minlat": 40.8350256, + "minlon": -73.9078565, + "maxlat": 40.8351609, + "maxlon": -73.9073865 + }, + "nodes": [ + 8246868397, + 7168210397, + 7168210398 + ], + "geometry": [ + { "lat": 40.8351609, "lon": -73.9078565 }, + { "lat": 40.8351047, "lon": -73.9076568 }, + { "lat": 40.8350256, "lon": -73.9073865 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495432425, + "bounds": { + "minlat": 40.8331906, + "minlon": -73.9110023, + "maxlat": 40.8333058, + "maxlon": -73.9106626 + }, + "nodes": [ + 13700880568, + 13700880567, + 13700880566 + ], + "geometry": [ + { "lat": 40.8333058, "lon": -73.9110023 }, + { "lat": 40.8332822, "lon": -73.9109316 }, + { "lat": 40.8331906, "lon": -73.9106626 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495432726, + "bounds": { + "minlat": 40.7100151, + "minlon": -73.9905244, + "maxlat": 40.7101241, + "maxlon": -73.9905018 + }, + "nodes": [ + 13700879968, + 13700879969, + 13700879970 + ], + "geometry": [ + { "lat": 40.7100151, "lon": -73.9905018 }, + { "lat": 40.7101033, "lon": -73.9905204 }, + { "lat": 40.7101241, "lon": -73.9905244 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495433975, + "bounds": { + "minlat": 40.8334392, + "minlon": -73.9108567, + "maxlat": 40.8335523, + "maxlon": -73.9105255 + }, + "nodes": [ + 13700879820, + 13700879819, + 13700879818 + ], + "geometry": [ + { "lat": 40.8335523, "lon": -73.9108567 }, + { "lat": 40.8335258, "lon": -73.9107809 }, + { "lat": 40.8334392, "lon": -73.9105255 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495433976, + "bounds": { + "minlat": 40.8335698, + "minlon": -73.9107817, + "maxlat": 40.8336791, + "maxlon": -73.9104588 + }, + "nodes": [ + 13700879823, + 13700879822, + 13700879821 + ], + "geometry": [ + { "lat": 40.8336791, "lon": -73.9107817 }, + { "lat": 40.8336531, "lon": -73.9107023 }, + { "lat": 40.8335698, "lon": -73.9104588 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495434494, + "bounds": { + "minlat": 40.8338164, + "minlon": -73.9106347, + "maxlat": 40.8339305, + "maxlon": -73.9102995 + }, + "nodes": [ + 13700793265, + 13700793264, + 13700793263 + ], + "geometry": [ + { "lat": 40.8339305, "lon": -73.9106347 }, + { "lat": 40.8339037, "lon": -73.9105560 }, + { "lat": 40.8338164, "lon": -73.9102995 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495438136, + "bounds": { + "minlat": 40.6999478, + "minlon": -73.9719256, + "maxlat": 40.7001103, + "maxlon": -73.9716440 + }, + "nodes": [ + 8506424206, + 13700905499, + 13700905498, + 8506424208 + ], + "geometry": [ + { "lat": 40.6999478, "lon": -73.9716440 }, + { "lat": 40.7001103, "lon": -73.9718311 }, + { "lat": 40.7000498, "lon": -73.9719256 }, + { "lat": 40.6999629, "lon": -73.9718277 } + ], + "tags": { + "access": "private", + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1495451674, + "bounds": { + "minlat": 40.7138074, + "minlon": -73.9491516, + "maxlat": 40.7140987, + "maxlon": -73.9491013 + }, + "nodes": [ + 13700919592, + 13700919593, + 13700919594 + ], + "geometry": [ + { "lat": 40.7140987, "lon": -73.9491516 }, + { "lat": 40.7140070, "lon": -73.9491367 }, + { "lat": 40.7138074, "lon": -73.9491013 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495454794, + "bounds": { + "minlat": 40.7183252, + "minlon": -73.9645401, + "maxlat": 40.7183755, + "maxlon": -73.9644881 + }, + "nodes": [ + 13700953724, + 13700953722, + 13700953723 + ], + "geometry": [ + { "lat": 40.7183252, "lon": -73.9645401 }, + { "lat": 40.7183653, "lon": -73.9644992 }, + { "lat": 40.7183755, "lon": -73.9644881 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495456676, + "bounds": { + "minlat": 40.8776807, + "minlon": -73.9102597, + "maxlat": 40.8783856, + "maxlon": -73.9088582 + }, + "nodes": [ + 7927355385, + 13701033150, + 13701033149, + 13701033148, + 13701033145, + 13701033144, + 13701033147, + 13701033146 + ], + "geometry": [ + { "lat": 40.8783856, "lon": -73.9102597 }, + { "lat": 40.8781847, "lon": -73.9099230 }, + { "lat": 40.8781705, "lon": -73.9098747 }, + { "lat": 40.8781624, "lon": -73.9098063 }, + { "lat": 40.8781441, "lon": -73.9097352 }, + { "lat": 40.8781299, "lon": -73.9096829 }, + { "lat": 40.8781036, "lon": -73.9096293 }, + { "lat": 40.8776807, "lon": -73.9088582 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495457118, + "bounds": { + "minlat": 40.7370140, + "minlon": -73.9782616, + "maxlat": 40.7372764, + "maxlon": -73.9778201 + }, + "nodes": [ + 13701036517, + 13701036512, + 13701036516, + 13701036515, + 13701036514, + 13701036513 + ], + "geometry": [ + { "lat": 40.7372764, "lon": -73.9782616 }, + { "lat": 40.7372170, "lon": -73.9781208 }, + { "lat": 40.7370970, "lon": -73.9778278 }, + { "lat": 40.7370889, "lon": -73.9778201 }, + { "lat": 40.7370777, "lon": -73.9778201 }, + { "lat": 40.7370140, "lon": -73.9778617 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495458112, + "bounds": { + "minlat": 40.7091961, + "minlon": -73.9204721, + "maxlat": 40.7093579, + "maxlon": -73.9201855 + }, + "nodes": [ + 13701032954, + 13701032953, + 13701032952 + ], + "geometry": [ + { "lat": 40.7091961, "lon": -73.9201855 }, + { "lat": 40.7092385, "lon": -73.9202625 }, + { "lat": 40.7093579, "lon": -73.9204721 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495458824, + "bounds": { + "minlat": 40.7140255, + "minlon": -73.9152914, + "maxlat": 40.7143177, + "maxlon": -73.9149146 + }, + "nodes": [ + 7199719992, + 13701015779, + 13701015778 + ], + "geometry": [ + { "lat": 40.7140255, "lon": -73.9149146 }, + { "lat": 40.7140873, "lon": -73.9149941 }, + { "lat": 40.7143177, "lon": -73.9152914 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495461103, + "bounds": { + "minlat": 40.8799906, + "minlon": -73.9067727, + "maxlat": 40.8801970, + "maxlon": -73.9063959 + }, + "nodes": [ + 13701087843, + 13701087842 + ], + "geometry": [ + { "lat": 40.8799906, "lon": -73.9063959 }, + { "lat": 40.8801970, "lon": -73.9067727 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495461194, + "bounds": { + "minlat": 40.7369725, + "minlon": -73.9588861, + "maxlat": 40.7370291, + "maxlon": -73.9587608 + }, + "nodes": [ + 13701067336, + 13701067335, + 13701067334 + ], + "geometry": [ + { "lat": 40.7369725, "lon": -73.9588861 }, + { "lat": 40.7370250, "lon": -73.9587700 }, + { "lat": 40.7370291, "lon": -73.9587608 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495461195, + "bounds": { + "minlat": 40.7366828, + "minlon": -73.9581251, + "maxlat": 40.7367967, + "maxlon": -73.9580188 + }, + "nodes": [ + 13701067341, + 13701067340 + ], + "geometry": [ + { "lat": 40.7366828, "lon": -73.9580188 }, + { "lat": 40.7367967, "lon": -73.9581251 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495461196, + "bounds": { + "minlat": 40.7366011, + "minlon": -73.9580188, + "maxlat": 40.7366828, + "maxlon": -73.9579379 + }, + "nodes": [ + 13701067343, + 13701067342, + 13701067341 + ], + "geometry": [ + { "lat": 40.7366011, "lon": -73.9579379 }, + { "lat": 40.7366541, "lon": -73.9579908 }, + { "lat": 40.7366828, "lon": -73.9580188 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495461197, + "bounds": { + "minlat": 40.7367967, + "minlon": -73.9581504, + "maxlat": 40.7369141, + "maxlon": -73.9581233 + }, + "nodes": [ + 13701067340, + 13701067339, + 13701067338, + 13701067337 + ], + "geometry": [ + { "lat": 40.7367967, "lon": -73.9581251 }, + { "lat": 40.7368204, "lon": -73.9581233 }, + { "lat": 40.7368626, "lon": -73.9581243 }, + { "lat": 40.7369141, "lon": -73.9581504 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495463384, + "bounds": { + "minlat": 40.8267222, + "minlon": -73.9097659, + "maxlat": 40.8267797, + "maxlon": -73.9095850 + }, + "nodes": [ + 13701087891, + 13701087890 + ], + "geometry": [ + { "lat": 40.8267222, "lon": -73.9095850 }, + { "lat": 40.8267797, "lon": -73.9097659 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495463385, + "bounds": { + "minlat": 40.8266845, + "minlon": -73.9095850, + "maxlat": 40.8267222, + "maxlon": -73.9094624 + }, + "nodes": [ + 13701087893, + 13701087892, + 13701087891 + ], + "geometry": [ + { "lat": 40.8266845, "lon": -73.9094624 }, + { "lat": 40.8267127, "lon": -73.9095557 }, + { "lat": 40.8267222, "lon": -73.9095850 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495463386, + "bounds": { + "minlat": 40.8263138, + "minlon": -73.9102234, + "maxlat": 40.8267893, + "maxlon": -73.9097659 + }, + "nodes": [ + 13701087890, + 13701087880, + 13701087889, + 13701087881, + 13701087888, + 13701087882, + 13701087887, + 13701087886, + 13701087885, + 13701087884, + 13701087883 + ], + "geometry": [ + { "lat": 40.8267797, "lon": -73.9097659 }, + { "lat": 40.8267883, "lon": -73.9098036 }, + { "lat": 40.8267893, "lon": -73.9098412 }, + { "lat": 40.8267867, "lon": -73.9098667 }, + { "lat": 40.8267796, "lon": -73.9098881 }, + { "lat": 40.8267756, "lon": -73.9099089 }, + { "lat": 40.8267751, "lon": -73.9099330 }, + { "lat": 40.8267776, "lon": -73.9099639 }, + { "lat": 40.8267857, "lon": -73.9099994 }, + { "lat": 40.8263555, "lon": -73.9102234 }, + { "lat": 40.8263138, "lon": -73.9100906 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495463803, + "bounds": { + "minlat": 40.8447019, + "minlon": -73.9133127, + "maxlat": 40.8447488, + "maxlon": -73.9131949 + }, + "nodes": [ + 13701040048, + 13701040047, + 13701040046 + ], + "geometry": [ + { "lat": 40.8447488, "lon": -73.9133127 }, + { "lat": 40.8447182, "lon": -73.9132364 }, + { "lat": 40.8447019, "lon": -73.9131949 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495465150, + "bounds": { + "minlat": 40.7024884, + "minlon": -73.9324596, + "maxlat": 40.7027772, + "maxlon": -73.9321719 + }, + "nodes": [ + 13701117128, + 13701117127, + 13701117126 + ], + "geometry": [ + { "lat": 40.7027772, "lon": -73.9321719 }, + { "lat": 40.7026332, "lon": -73.9323180 }, + { "lat": 40.7024884, "lon": -73.9324596 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1495465151, + "bounds": { + "minlat": 40.7025348, + "minlon": -73.9321383, + "maxlat": 40.7026953, + "maxlon": -73.9319768 + }, + "nodes": [ + 13701117130, + 13701117129 + ], + "geometry": [ + { "lat": 40.7025348, "lon": -73.9321383 }, + { "lat": 40.7026953, "lon": -73.9319768 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1495465152, + "bounds": { + "minlat": 40.7024333, + "minlon": -73.9319530, + "maxlat": 40.7026684, + "maxlon": -73.9317240 + }, + "nodes": [ + 13701117132, + 13701117131 + ], + "geometry": [ + { "lat": 40.7024333, "lon": -73.9319530 }, + { "lat": 40.7026684, "lon": -73.9317240 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1495465769, + "bounds": { + "minlat": 40.7045127, + "minlon": -73.9289155, + "maxlat": 40.7046476, + "maxlon": -73.9286810 + }, + "nodes": [ + 13701110581, + 13701110576, + 13701110575 + ], + "geometry": [ + { "lat": 40.7045127, "lon": -73.9286810 }, + { "lat": 40.7045951, "lon": -73.9288283 }, + { "lat": 40.7046476, "lon": -73.9289155 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495465770, + "bounds": { + "minlat": 40.7044131, + "minlon": -73.9286810, + "maxlat": 40.7046224, + "maxlon": -73.9285055 + }, + "nodes": [ + 13701110579, + 13701110580, + 13701110581, + 13701110578, + 13701110577 + ], + "geometry": [ + { "lat": 40.7046224, "lon": -73.9285732 }, + { "lat": 40.7045530, "lon": -73.9286420 }, + { "lat": 40.7045127, "lon": -73.9286810 }, + { "lat": 40.7044525, "lon": -73.9285748 }, + { "lat": 40.7044131, "lon": -73.9285055 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1495465899, + "bounds": { + "minlat": 40.8471004, + "minlon": -73.9126135, + "maxlat": 40.8473441, + "maxlon": -73.9123648 + }, + "nodes": [ + 13701117135, + 13701117134, + 13701117133 + ], + "geometry": [ + { "lat": 40.8473441, "lon": -73.9126135 }, + { "lat": 40.8472439, "lon": -73.9123648 }, + { "lat": 40.8471004, "lon": -73.9124684 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495466088, + "bounds": { + "minlat": 40.7042793, + "minlon": -73.9272876, + "maxlat": 40.7044609, + "maxlon": -73.9269543 + }, + "nodes": [ + 13701136762, + 13701136763, + 13701136764 + ], + "geometry": [ + { "lat": 40.7044609, "lon": -73.9272876 }, + { "lat": 40.7044287, "lon": -73.9272288 }, + { "lat": 40.7042793, "lon": -73.9269543 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495466279, + "bounds": { + "minlat": 40.7363000, + "minlon": -73.9400211, + "maxlat": 40.7365064, + "maxlon": -73.9398840 + }, + "nodes": [ + 13701119364, + 13701119363 + ], + "geometry": [ + { "lat": 40.7363000, "lon": -73.9398840 }, + { "lat": 40.7365064, "lon": -73.9400211 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495466280, + "bounds": { + "minlat": 40.7362353, + "minlon": -73.9403936, + "maxlat": 40.7365760, + "maxlon": -73.9397002 + }, + "nodes": [ + 13701119362, + 13701119365, + 13701119364, + 13701119372, + 13701119370, + 13701119369, + 13701119368, + 13701119367, + 13701119366 + ], + "geometry": [ + { "lat": 40.7365760, "lon": -73.9398363 }, + { "lat": 40.7363644, "lon": -73.9397002 }, + { "lat": 40.7363000, "lon": -73.9398840 }, + { "lat": 40.7362353, "lon": -73.9400724 }, + { "lat": 40.7362363, "lon": -73.9401153 }, + { "lat": 40.7362506, "lon": -73.9402018 }, + { "lat": 40.7362790, "lon": -73.9403044 }, + { "lat": 40.7363004, "lon": -73.9403506 }, + { "lat": 40.7363684, "lon": -73.9403936 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495466281, + "bounds": { + "minlat": 40.7361947, + "minlon": -73.9402014, + "maxlat": 40.7364373, + "maxlon": -73.9399879 + }, + "nodes": [ + 13701119380, + 13701119373, + 13701119372, + 13701119371 + ], + "geometry": [ + { "lat": 40.7361947, "lon": -73.9399879 }, + { "lat": 40.7361987, "lon": -73.9400348 }, + { "lat": 40.7362353, "lon": -73.9400724 }, + { "lat": 40.7364373, "lon": -73.9402014 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495466282, + "bounds": { + "minlat": 40.7361947, + "minlon": -73.9399879, + "maxlat": 40.7363542, + "maxlon": -73.9394487 + }, + "nodes": [ + 13701119379, + 13701119378, + 13701119377, + 13701119376, + 13701119375, + 13701119374, + 13701119380 + ], + "geometry": [ + { "lat": 40.7363542, "lon": -73.9394487 }, + { "lat": 40.7363199, "lon": -73.9395264 }, + { "lat": 40.7362704, "lon": -73.9396432 }, + { "lat": 40.7362374, "lon": -73.9397378 }, + { "lat": 40.7362160, "lon": -73.9398457 }, + { "lat": 40.7362074, "lon": -73.9399396 }, + { "lat": 40.7361947, "lon": -73.9399879 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495466283, + "bounds": { + "minlat": 40.7361779, + "minlon": -73.9399879, + "maxlat": 40.7363209, + "maxlon": -73.9394275 + }, + "nodes": [ + 13701119386, + 13701119385, + 13701119384, + 13701119383, + 13701119382, + 13701119381, + 13701119380 + ], + "geometry": [ + { "lat": 40.7363209, "lon": -73.9394275 }, + { "lat": 40.7362887, "lon": -73.9395064 }, + { "lat": 40.7362409, "lon": -73.9396164 }, + { "lat": 40.7362048, "lon": -73.9397230 }, + { "lat": 40.7361876, "lon": -73.9398350 }, + { "lat": 40.7361779, "lon": -73.9399242 }, + { "lat": 40.7361947, "lon": -73.9399879 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495466345, + "bounds": { + "minlat": 40.7144325, + "minlon": -73.9656676, + "maxlat": 40.7147839, + "maxlon": -73.9655095 + }, + "nodes": [ + 13701098396, + 13701098395, + 13701098394 + ], + "geometry": [ + { "lat": 40.7144325, "lon": -73.9656676 }, + { "lat": 40.7144855, "lon": -73.9656442 }, + { "lat": 40.7147839, "lon": -73.9655095 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495467555, + "bounds": { + "minlat": 40.7146514, + "minlon": -73.9603933, + "maxlat": 40.7147911, + "maxlon": -73.9602778 + }, + "nodes": [ + 13701097460, + 13701097459, + 13701097458 + ], + "geometry": [ + { "lat": 40.7146514, "lon": -73.9603933 }, + { "lat": 40.7146980, "lon": -73.9603542 }, + { "lat": 40.7147911, "lon": -73.9602778 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495467558, + "bounds": { + "minlat": 40.7246212, + "minlon": -73.9298900, + "maxlat": 40.7250640, + "maxlon": -73.9292898 + }, + "nodes": [ + 13701138937, + 13701138936, + 13701138935, + 13701138934 + ], + "geometry": [ + { "lat": 40.7246212, "lon": -73.9292898 }, + { "lat": 40.7248384, "lon": -73.9293831 }, + { "lat": 40.7250640, "lon": -73.9296198 }, + { "lat": 40.7249913, "lon": -73.9298900 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495468696, + "bounds": { + "minlat": 40.7417713, + "minlon": -73.9591563, + "maxlat": 40.7417927, + "maxlon": -73.9590511 + }, + "nodes": [ + 13701145180, + 11196970704, + 13701145179 + ], + "geometry": [ + { "lat": 40.7417713, "lon": -73.9590511 }, + { "lat": 40.7417825, "lon": -73.9591093 }, + { "lat": 40.7417927, "lon": -73.9591563 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495468908, + "bounds": { + "minlat": 40.7196318, + "minlon": -73.9229074, + "maxlat": 40.7203201, + "maxlon": -73.9224368 + }, + "nodes": [ + 13701142806, + 13701142805, + 13701142804, + 13701142803 + ], + "geometry": [ + { "lat": 40.7196318, "lon": -73.9229074 }, + { "lat": 40.7197264, "lon": -73.9225468 }, + { "lat": 40.7200547, "lon": -73.9224368 }, + { "lat": 40.7203201, "lon": -73.9225455 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495468911, + "bounds": { + "minlat": 40.7169139, + "minlon": -73.9967383, + "maxlat": 40.7169473, + "maxlon": -73.9966487 + }, + "nodes": [ + 13701153405, + 13701153404, + 13701153403 + ], + "geometry": [ + { "lat": 40.7169473, "lon": -73.9967383 }, + { "lat": 40.7169261, "lon": -73.9966811 }, + { "lat": 40.7169139, "lon": -73.9966487 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495468912, + "bounds": { + "minlat": 40.7168695, + "minlon": -73.9967676, + "maxlat": 40.7169004, + "maxlon": -73.9966763 + }, + "nodes": [ + 13701153408, + 13701153407, + 13701153406 + ], + "geometry": [ + { "lat": 40.7169004, "lon": -73.9967676 }, + { "lat": 40.7168802, "lon": -73.9967098 }, + { "lat": 40.7168695, "lon": -73.9966763 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495468970, + "bounds": { + "minlat": 40.7107842, + "minlon": -73.9330282, + "maxlat": 40.7109845, + "maxlon": -73.9329404 + }, + "nodes": [ + 13701172275, + 13701172273 + ], + "geometry": [ + { "lat": 40.7107842, "lon": -73.9329404 }, + { "lat": 40.7109845, "lon": -73.9330282 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495468971, + "bounds": { + "minlat": 40.7106156, + "minlon": -73.9335780, + "maxlat": 40.7108870, + "maxlon": -73.9325188 + }, + "nodes": [ + 13701172277, + 13701172276, + 13701172275, + 13701172274 + ], + "geometry": [ + { "lat": 40.7106156, "lon": -73.9335780 }, + { "lat": 40.7106359, "lon": -73.9335006 }, + { "lat": 40.7107842, "lon": -73.9329404 }, + { "lat": 40.7108870, "lon": -73.9325188 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495470853, + "bounds": { + "minlat": 40.8253401, + "minlon": -73.9067097, + "maxlat": 40.8253894, + "maxlon": -73.9064750 + }, + "nodes": [ + 5482222798, + 13701167990 + ], + "geometry": [ + { "lat": 40.8253401, "lon": -73.9064750 }, + { "lat": 40.8253894, "lon": -73.9067097 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1495471671, + "bounds": { + "minlat": 40.7516297, + "minlon": -73.9476323, + "maxlat": 40.7517664, + "maxlon": -73.9472426 + }, + "nodes": [ + 13701191001, + 13701172596, + 13701172600, + 13701172599, + 13701172598, + 13701172597 + ], + "geometry": [ + { "lat": 40.7516297, "lon": -73.9476323 }, + { "lat": 40.7517066, "lon": -73.9475622 }, + { "lat": 40.7517623, "lon": -73.9475115 }, + { "lat": 40.7517664, "lon": -73.9474997 }, + { "lat": 40.7517654, "lon": -73.9474867 }, + { "lat": 40.7516551, "lon": -73.9472426 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495471774, + "bounds": { + "minlat": 40.8288650, + "minlon": -73.9109971, + "maxlat": 40.8291077, + "maxlon": -73.9106894 + }, + "nodes": [ + 13701139148, + 13701139147, + 13701139146 + ], + "geometry": [ + { "lat": 40.8291077, "lon": -73.9109971 }, + { "lat": 40.8290586, "lon": -73.9109264 }, + { "lat": 40.8288650, "lon": -73.9106894 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495472198, + "bounds": { + "minlat": 40.7239180, + "minlon": -73.9164118, + "maxlat": 40.7239317, + "maxlon": -73.9163415 + }, + "nodes": [ + 13701194603, + 13701194602 + ], + "geometry": [ + { "lat": 40.7239317, "lon": -73.9164118 }, + { "lat": 40.7239180, "lon": -73.9163415 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495472199, + "bounds": { + "minlat": 40.7239317, + "minlon": -73.9170215, + "maxlat": 40.7240499, + "maxlon": -73.9164118 + }, + "nodes": [ + 13701194604, + 13701194603 + ], + "geometry": [ + { "lat": 40.7240499, "lon": -73.9170215 }, + { "lat": 40.7239317, "lon": -73.9164118 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495472200, + "bounds": { + "minlat": 40.7240499, + "minlon": -73.9172254, + "maxlat": 40.7240901, + "maxlon": -73.9170215 + }, + "nodes": [ + 13701194605, + 13701194604 + ], + "geometry": [ + { "lat": 40.7240901, "lon": -73.9172254 }, + { "lat": 40.7240499, "lon": -73.9170215 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495472536, + "bounds": { + "minlat": 40.8286449, + "minlon": -73.9119239, + "maxlat": 40.8287108, + "maxlon": -73.9117155 + }, + "nodes": [ + 13701174396, + 13701174394, + 13701174395 + ], + "geometry": [ + { "lat": 40.8286449, "lon": -73.9117155 }, + { "lat": 40.8286772, "lon": -73.9118195 }, + { "lat": 40.8287108, "lon": -73.9119239 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495472724, + "bounds": { + "minlat": 40.7262113, + "minlon": -73.9201623, + "maxlat": 40.7263542, + "maxlon": -73.9190826 + }, + "nodes": [ + 13701191911, + 13701191910 + ], + "geometry": [ + { "lat": 40.7262113, "lon": -73.9190826 }, + { "lat": 40.7263542, "lon": -73.9201623 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495473331, + "bounds": { + "minlat": 40.7306550, + "minlon": -73.9238661, + "maxlat": 40.7309276, + "maxlon": -73.9237699 + }, + "nodes": [ + 13701195854, + 13701195853 + ], + "geometry": [ + { "lat": 40.7306550, "lon": -73.9238661 }, + { "lat": 40.7309276, "lon": -73.9237699 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495473332, + "bounds": { + "minlat": 40.7309296, + "minlon": -73.9250994, + "maxlat": 40.7310140, + "maxlon": -73.9247207 + }, + "nodes": [ + 13701195856, + 13701195855 + ], + "geometry": [ + { "lat": 40.7310140, "lon": -73.9250994 }, + { "lat": 40.7309296, "lon": -73.9247207 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495473510, + "bounds": { + "minlat": 40.7374201, + "minlon": -73.9576068, + "maxlat": 40.7375889, + "maxlon": -73.9572760 + }, + "nodes": [ + 5481915329, + 13701197406 + ], + "geometry": [ + { "lat": 40.7374201, "lon": -73.9576068 }, + { "lat": 40.7375889, "lon": -73.9572760 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495473511, + "bounds": { + "minlat": 40.8279490, + "minlon": -73.9157864, + "maxlat": 40.8282480, + "maxlon": -73.9156133 + }, + "nodes": [ + 13701190909, + 13701190908, + 13701190907 + ], + "geometry": [ + { "lat": 40.8279490, "lon": -73.9157864 }, + { "lat": 40.8280125, "lon": -73.9157505 }, + { "lat": 40.8282480, "lon": -73.9156133 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495474338, + "bounds": { + "minlat": 40.7544368, + "minlon": -73.9412961, + "maxlat": 40.7545058, + "maxlon": -73.9411493 + }, + "nodes": [ + 13701218301, + 13701183098 + ], + "geometry": [ + { "lat": 40.7545058, "lon": -73.9412961 }, + { "lat": 40.7544368, "lon": -73.9411493 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495474339, + "bounds": { + "minlat": 40.7538099, + "minlon": -73.9416059, + "maxlat": 40.7541896, + "maxlon": -73.9412510 + }, + "nodes": [ + 13701218305, + 13701218304 + ], + "geometry": [ + { "lat": 40.7541896, "lon": -73.9412510 }, + { "lat": 40.7538099, "lon": -73.9416059 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495474981, + "bounds": { + "minlat": 40.7435866, + "minlon": -73.9546876, + "maxlat": 40.7438598, + "maxlon": -73.9544711 + }, + "nodes": [ + 13701199245, + 13701199242, + 13701199244, + 13701199243 + ], + "geometry": [ + { "lat": 40.7435866, "lon": -73.9546876 }, + { "lat": 40.7436452, "lon": -73.9546656 }, + { "lat": 40.7438598, "lon": -73.9545865 }, + { "lat": 40.7438372, "lon": -73.9544711 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495475030, + "bounds": { + "minlat": 40.7170690, + "minlon": -73.9894064, + "maxlat": 40.7171917, + "maxlon": -73.9889681 + }, + "nodes": [ + 13701187247, + 13701187246, + 13701187245 + ], + "geometry": [ + { "lat": 40.7170690, "lon": -73.9889681 }, + { "lat": 40.7171032, "lon": -73.9890952 }, + { "lat": 40.7171917, "lon": -73.9894064 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495475553, + "bounds": { + "minlat": 40.7431963, + "minlon": -73.9921984, + "maxlat": 40.7434441, + "maxlon": -73.9920217 + }, + "nodes": [ + 13701187250, + 13701187249, + 13701187248 + ], + "geometry": [ + { "lat": 40.7434441, "lon": -73.9920217 }, + { "lat": 40.7433875, "lon": -73.9920626 }, + { "lat": 40.7431963, "lon": -73.9921984 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495475554, + "bounds": { + "minlat": 40.7406539, + "minlon": -73.9252283, + "maxlat": 40.7409929, + "maxlon": -73.9249020 + }, + "nodes": [ + 13701225514, + 13701225515, + 13701225516, + 13701225517 + ], + "geometry": [ + { "lat": 40.7406539, "lon": -73.9249020 }, + { "lat": 40.7406631, "lon": -73.9249769 }, + { "lat": 40.7406906, "lon": -73.9252283 }, + { "lat": 40.7409929, "lon": -73.9251667 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495475592, + "bounds": { + "minlat": 40.7572000, + "minlon": -73.9628417, + "maxlat": 40.7573185, + "maxlon": -73.9626542 + }, + "nodes": [ + 13701222346, + 13701222345, + 13701222344, + 13701222343, + 13701222342, + 13701222341 + ], + "geometry": [ + { "lat": 40.7572132, "lon": -73.9628417 }, + { "lat": 40.7572000, "lon": -73.9627793 }, + { "lat": 40.7572040, "lon": -73.9627504 }, + { "lat": 40.7572172, "lon": -73.9627263 }, + { "lat": 40.7572587, "lon": -73.9626962 }, + { "lat": 40.7573185, "lon": -73.9626542 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495475593, + "bounds": { + "minlat": 40.7572132, + "minlon": -73.9630762, + "maxlat": 40.7573064, + "maxlon": -73.9628417 + }, + "nodes": [ + 9988058440, + 13701222346 + ], + "geometry": [ + { "lat": 40.7573064, "lon": -73.9630762 }, + { "lat": 40.7572132, "lon": -73.9628417 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495476067, + "bounds": { + "minlat": 40.7266228, + "minlon": -73.9911422, + "maxlat": 40.7268463, + "maxlon": -73.9909824 + }, + "nodes": [ + 13701159668, + 13701159667, + 13701159666 + ], + "geometry": [ + { "lat": 40.7268463, "lon": -73.9909824 }, + { "lat": 40.7267899, "lon": -73.9910238 }, + { "lat": 40.7266228, "lon": -73.9911422 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495476168, + "bounds": { + "minlat": 40.7559662, + "minlon": -73.9408879, + "maxlat": 40.7564214, + "maxlon": -73.9404678 + }, + "nodes": [ + 13701213608, + 13701213607 + ], + "geometry": [ + { "lat": 40.7564214, "lon": -73.9404678 }, + { "lat": 40.7559662, "lon": -73.9408879 } + ], + "tags": { + "covered": "yes", + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1495476169, + "bounds": { + "minlat": 40.7558435, + "minlon": -73.9414599, + "maxlat": 40.7562686, + "maxlon": -73.9406557 + }, + "nodes": [ + 13701213612, + 13701213609, + 13701213607, + 13701213610, + 13701213611 + ], + "geometry": [ + { "lat": 40.7558435, "lon": -73.9406557 }, + { "lat": 40.7559060, "lon": -73.9407740 }, + { "lat": 40.7559662, "lon": -73.9408879 }, + { "lat": 40.7562352, "lon": -73.9413967 }, + { "lat": 40.7562686, "lon": -73.9414599 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495476184, + "bounds": { + "minlat": 40.7497442, + "minlon": -74.0031445, + "maxlat": 40.7499331, + "maxlon": -74.0026780 + }, + "nodes": [ + 13701192384, + 13701192383, + 13701192382 + ], + "geometry": [ + { "lat": 40.7497442, "lon": -74.0026780 }, + { "lat": 40.7497999, "lon": -74.0028122 }, + { "lat": 40.7499331, "lon": -74.0031445 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495476203, + "bounds": { + "minlat": 40.8286550, + "minlon": -73.9082980, + "maxlat": 40.8287840, + "maxlon": -73.9078651 + }, + "nodes": [ + 13701226090, + 13701226089 + ], + "geometry": [ + { "lat": 40.8287840, "lon": -73.9082980 }, + { "lat": 40.8286550, "lon": -73.9078651 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495476769, + "bounds": { + "minlat": 40.7627311, + "minlon": -73.9957094, + "maxlat": 40.7629953, + "maxlon": -73.9955302 + }, + "nodes": [ + 13701242657, + 13701242655, + 13701242656 + ], + "geometry": [ + { "lat": 40.7629953, "lon": -73.9955302 }, + { "lat": 40.7629396, "lon": -73.9955680 }, + { "lat": 40.7627311, "lon": -73.9957094 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495476900, + "bounds": { + "minlat": 40.7404701, + "minlon": -73.9192296, + "maxlat": 40.7407465, + "maxlon": -73.9188038 + }, + "nodes": [ + 5482367272, + 13701234582, + 13701234583, + 13701234584 + ], + "geometry": [ + { "lat": 40.7405123, "lon": -73.9192296 }, + { "lat": 40.7405040, "lon": -73.9191547 }, + { "lat": 40.7404701, "lon": -73.9188601 }, + { "lat": 40.7407465, "lon": -73.9188038 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495477180, + "bounds": { + "minlat": 40.7489991, + "minlon": -73.9937093, + "maxlat": 40.7490719, + "maxlon": -73.9936551 + }, + "nodes": [ + 13701232575, + 13701232574, + 13701232573 + ], + "geometry": [ + { "lat": 40.7489991, "lon": -73.9937093 }, + { "lat": 40.7490627, "lon": -73.9936620 }, + { "lat": 40.7490719, "lon": -73.9936551 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495477384, + "bounds": { + "minlat": 40.7376028, + "minlon": -73.9317334, + "maxlat": 40.7377911, + "maxlon": -73.9314378 + }, + "nodes": [ + 13701247385, + 13701247384, + 13701247383, + 13701247382 + ], + "geometry": [ + { "lat": 40.7376028, "lon": -73.9314378 }, + { "lat": 40.7376611, "lon": -73.9314744 }, + { "lat": 40.7376686, "lon": -73.9314826 }, + { "lat": 40.7377911, "lon": -73.9317334 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495477823, + "bounds": { + "minlat": 40.7672146, + "minlon": -73.9946754, + "maxlat": 40.7674758, + "maxlon": -73.9944962 + }, + "nodes": [ + 13701209660, + 13701209659, + 13701209658 + ], + "geometry": [ + { "lat": 40.7672146, "lon": -73.9946754 }, + { "lat": 40.7674078, "lon": -73.9945412 }, + { "lat": 40.7674758, "lon": -73.9944962 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495477936, + "bounds": { + "minlat": 40.7452674, + "minlon": -73.9519700, + "maxlat": 40.7455302, + "maxlon": -73.9518741 + }, + "nodes": [ + 13701239683, + 13701239681, + 13701239682 + ], + "geometry": [ + { "lat": 40.7452674, "lon": -73.9519700 }, + { "lat": 40.7453270, "lon": -73.9519488 }, + { "lat": 40.7455302, "lon": -73.9518741 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495479115, + "bounds": { + "minlat": 40.7456867, + "minlon": -73.9352350, + "maxlat": 40.7458324, + "maxlon": -73.9352162 + }, + "nodes": [ + 13701254388, + 13701254387, + 13701254386, + 13701254385 + ], + "geometry": [ + { "lat": 40.7456867, "lon": -73.9352350 }, + { "lat": 40.7457832, "lon": -73.9352162 }, + { "lat": 40.7457916, "lon": -73.9352164 }, + { "lat": 40.7458324, "lon": -73.9352294 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495479589, + "bounds": { + "minlat": 40.7584835, + "minlon": -73.9994900, + "maxlat": 40.7587471, + "maxlon": -73.9992818 + }, + "nodes": [ + 13701261728, + 13701261727, + 13701261726 + ], + "geometry": [ + { "lat": 40.7587471, "lon": -73.9992818 }, + { "lat": 40.7586836, "lon": -73.9993334 }, + { "lat": 40.7584835, "lon": -73.9994900 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495479590, + "bounds": { + "minlat": 40.7580828, + "minlon": -73.9996417, + "maxlat": 40.7583560, + "maxlon": -73.9994491 + }, + "nodes": [ + 13701261731, + 13701261730, + 13701261729 + ], + "geometry": [ + { "lat": 40.7580828, "lon": -73.9996417 }, + { "lat": 40.7581553, "lon": -73.9995943 }, + { "lat": 40.7583560, "lon": -73.9994491 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495479714, + "bounds": { + "minlat": 40.7434105, + "minlon": -73.9275585, + "maxlat": 40.7435809, + "maxlon": -73.9271889 + }, + "nodes": [ + 13701269416, + 13701269411, + 13701269415, + 13701269414, + 13701269413, + 13701269412 + ], + "geometry": [ + { "lat": 40.7434105, "lon": -73.9271889 }, + { "lat": 40.7434209, "lon": -73.9272789 }, + { "lat": 40.7434514, "lon": -73.9275417 }, + { "lat": 40.7434570, "lon": -73.9275531 }, + { "lat": 40.7434674, "lon": -73.9275585 }, + { "lat": 40.7435809, "lon": -73.9275391 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495479726, + "bounds": { + "minlat": 40.8806741, + "minlon": -73.9166995, + "maxlat": 40.8808321, + "maxlon": -73.9165387 + }, + "nodes": [ + 13701208460, + 13716160179, + 13701208457, + 13716160180 + ], + "geometry": [ + { "lat": 40.8808321, "lon": -73.9166995 }, + { "lat": 40.8808089, "lon": -73.9166701 }, + { "lat": 40.8807582, "lon": -73.9166621 }, + { "lat": 40.8806741, "lon": -73.9165387 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495479727, + "bounds": { + "minlat": 40.8806781, + "minlon": -73.9168806, + "maxlat": 40.8809615, + "maxlon": -73.9165472 + }, + "nodes": [ + 13701208462, + 13701208460, + 13701208461 + ], + "geometry": [ + { "lat": 40.8809615, "lon": -73.9165472 }, + { "lat": 40.8808321, "lon": -73.9166995 }, + { "lat": 40.8806781, "lon": -73.9168806 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495480024, + "bounds": { + "minlat": 40.7591901, + "minlon": -73.9365010, + "maxlat": 40.7593724, + "maxlon": -73.9361276 + }, + "nodes": [ + 13701267353, + 13701267352, + 13701267351 + ], + "geometry": [ + { "lat": 40.7591901, "lon": -73.9361276 }, + { "lat": 40.7592308, "lon": -73.9362109 }, + { "lat": 40.7593724, "lon": -73.9365010 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495480025, + "bounds": { + "minlat": 40.7590517, + "minlon": -73.9365862, + "maxlat": 40.7592210, + "maxlon": -73.9362555 + }, + "nodes": [ + 13701267356, + 13701267355, + 13701267354 + ], + "geometry": [ + { "lat": 40.7590517, "lon": -73.9362555 }, + { "lat": 40.7590928, "lon": -73.9363373 }, + { "lat": 40.7592210, "lon": -73.9365862 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495480084, + "bounds": { + "minlat": 40.8824147, + "minlon": -73.9166473, + "maxlat": 40.8825448, + "maxlon": -73.9163459 + }, + "nodes": [ + 13701271504, + 13701271503 + ], + "geometry": [ + { "lat": 40.8824147, "lon": -73.9163459 }, + { "lat": 40.8825448, "lon": -73.9166473 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495481216, + "bounds": { + "minlat": 40.7542084, + "minlon": -73.9240596, + "maxlat": 40.7542453, + "maxlon": -73.9239690 + }, + "nodes": [ + 13701273873, + 13701273872, + 13701273871 + ], + "geometry": [ + { "lat": 40.7542084, "lon": -73.9239690 }, + { "lat": 40.7542343, "lon": -73.9240328 }, + { "lat": 40.7542453, "lon": -73.9240596 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495483563, + "bounds": { + "minlat": 40.7615254, + "minlon": -73.9574419, + "maxlat": 40.7618117, + "maxlon": -73.9566886 + }, + "nodes": [ + 13701257557, + 13701257556, + 13701257555, + 13701257554 + ], + "geometry": [ + { "lat": 40.7618117, "lon": -73.9574419 }, + { "lat": 40.7617582, "lon": -73.9572988 }, + { "lat": 40.7617531, "lon": -73.9572853 }, + { "lat": 40.7615254, "lon": -73.9566886 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495483807, + "bounds": { + "minlat": 40.7654255, + "minlon": -73.9602341, + "maxlat": 40.7658383, + "maxlon": -73.9599415 + }, + "nodes": [ + 13701244192, + 13701244191, + 13701244190 + ], + "geometry": [ + { "lat": 40.7654255, "lon": -73.9602341 }, + { "lat": 40.7654898, "lon": -73.9601883 }, + { "lat": 40.7658383, "lon": -73.9599415 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495484376, + "bounds": { + "minlat": 40.7681626, + "minlon": -73.9507909, + "maxlat": 40.7682314, + "maxlon": -73.9507383 + }, + "nodes": [ + 13701288022, + 13701288021, + 13701288020 + ], + "geometry": [ + { "lat": 40.7681626, "lon": -73.9507909 }, + { "lat": 40.7682199, "lon": -73.9507470 }, + { "lat": 40.7682314, "lon": -73.9507383 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495486382, + "bounds": { + "minlat": 40.7656514, + "minlon": -73.9612122, + "maxlat": 40.7657939, + "maxlon": -73.9611201 + }, + "nodes": [ + 13701309123, + 13701309122, + 13701309121 + ], + "geometry": [ + { "lat": 40.7657939, "lon": -73.9611201 }, + { "lat": 40.7657421, "lon": -73.9611549 }, + { "lat": 40.7656514, "lon": -73.9612122 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495487526, + "bounds": { + "minlat": 40.8472439, + "minlon": -73.9123756, + "maxlat": 40.8473651, + "maxlon": -73.9122995 + }, + "nodes": [ + 7589205539, + 13701329107, + 13701117134 + ], + "geometry": [ + { "lat": 40.8473651, "lon": -73.9123756 }, + { "lat": 40.8473342, "lon": -73.9122995 }, + { "lat": 40.8472439, "lon": -73.9123648 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495489068, + "bounds": { + "minlat": 40.7590962, + "minlon": -73.9904026, + "maxlat": 40.7591672, + "maxlon": -73.9903510 + }, + "nodes": [ + 13701336660, + 13701336658, + 13701336659 + ], + "geometry": [ + { "lat": 40.7590962, "lon": -73.9904026 }, + { "lat": 40.7591144, "lon": -73.9903894 }, + { "lat": 40.7591672, "lon": -73.9903510 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495489069, + "bounds": { + "minlat": 40.7592123, + "minlon": -73.9906786, + "maxlat": 40.7592840, + "maxlon": -73.9906283 + }, + "nodes": [ + 13701336663, + 13701336662, + 13701336661 + ], + "geometry": [ + { "lat": 40.7592840, "lon": -73.9906283 }, + { "lat": 40.7592305, "lon": -73.9906666 }, + { "lat": 40.7592123, "lon": -73.9906786 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495490060, + "bounds": { + "minlat": 40.7671659, + "minlon": -73.9382873, + "maxlat": 40.7672735, + "maxlon": -73.9379708 + }, + "nodes": [ + 13701347732, + 13701347725 + ], + "geometry": [ + { "lat": 40.7671659, "lon": -73.9382873 }, + { "lat": 40.7672735, "lon": -73.9379708 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495490061, + "bounds": { + "minlat": 40.7668784, + "minlon": -73.9387604, + "maxlat": 40.7671659, + "maxlon": -73.9381679 + }, + "nodes": [ + 13701347734, + 13701347733, + 13701347732, + 13701347731, + 13701347730, + 13701347729, + 13701347728, + 13701347727, + 13701347726 + ], + "geometry": [ + { "lat": 40.7669747, "lon": -73.9381679 }, + { "lat": 40.7670449, "lon": -73.9382135 }, + { "lat": 40.7671659, "lon": -73.9382873 }, + { "lat": 40.7670846, "lon": -73.9385207 }, + { "lat": 40.7670541, "lon": -73.9385811 }, + { "lat": 40.7670206, "lon": -73.9386334 }, + { "lat": 40.7669729, "lon": -73.9386870 }, + { "lat": 40.7669449, "lon": -73.9387085 }, + { "lat": 40.7668784, "lon": -73.9387604 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495491929, + "bounds": { + "minlat": 40.7709577, + "minlon": -73.9556796, + "maxlat": 40.7710345, + "maxlon": -73.9556232 + }, + "nodes": [ + 13701356125, + 13701356124, + 13701356123 + ], + "geometry": [ + { "lat": 40.7710345, "lon": -73.9556232 }, + { "lat": 40.7709802, "lon": -73.9556629 }, + { "lat": 40.7709577, "lon": -73.9556796 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495491930, + "bounds": { + "minlat": 40.7710468, + "minlon": -73.9558877, + "maxlat": 40.7711241, + "maxlon": -73.9558329 + }, + "nodes": [ + 13701356128, + 13701356127, + 13701356126 + ], + "geometry": [ + { "lat": 40.7711241, "lon": -73.9558329 }, + { "lat": 40.7710689, "lon": -73.9558718 }, + { "lat": 40.7710468, "lon": -73.9558877 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495492799, + "bounds": { + "minlat": 40.7739555, + "minlon": -73.9550833, + "maxlat": 40.7741715, + "maxlon": -73.9549253 + }, + "nodes": [ + 13701334567, + 13701334566, + 13701334565 + ], + "geometry": [ + { "lat": 40.7741715, "lon": -73.9549253 }, + { "lat": 40.7741281, "lon": -73.9549591 }, + { "lat": 40.7739555, "lon": -73.9550833 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495493745, + "bounds": { + "minlat": 40.7742434, + "minlon": -73.9550942, + "maxlat": 40.7744070, + "maxlon": -73.9549747 + }, + "nodes": [ + 13701356250, + 13701356249, + 13701356248 + ], + "geometry": [ + { "lat": 40.7742434, "lon": -73.9550942 }, + { "lat": 40.7743048, "lon": -73.9550479 }, + { "lat": 40.7744070, "lon": -73.9549747 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495494354, + "bounds": { + "minlat": 40.7653911, + "minlon": -73.9956392, + "maxlat": 40.7654729, + "maxlon": -73.9955864 + }, + "nodes": [ + 13701309747, + 13701309746, + 13701309745 + ], + "geometry": [ + { "lat": 40.7654729, "lon": -73.9955864 }, + { "lat": 40.7654166, "lon": -73.9956218 }, + { "lat": 40.7653911, "lon": -73.9956392 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495495242, + "bounds": { + "minlat": 40.7617537, + "minlon": -73.9199028, + "maxlat": 40.7619285, + "maxlon": -73.9195456 + }, + "nodes": [ + 5119625242, + 6452453755, + 5119625243 + ], + "geometry": [ + { "lat": 40.7619285, "lon": -73.9199028 }, + { "lat": 40.7618896, "lon": -73.9198417 }, + { "lat": 40.7617537, "lon": -73.9195456 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1495495243, + "bounds": { + "minlat": 40.7620023, + "minlon": -73.9202072, + "maxlat": 40.7622557, + "maxlon": -73.9200363 + }, + "nodes": [ + 13701379977, + 13701379975, + 13701379974, + 13701379973 + ], + "geometry": [ + { "lat": 40.7620023, "lon": -73.9200363 }, + { "lat": 40.7620257, "lon": -73.9200631 }, + { "lat": 40.7620968, "lon": -73.9202072 }, + { "lat": 40.7622557, "lon": -73.9200805 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495496855, + "bounds": { + "minlat": 40.7734122, + "minlon": -73.9363073, + "maxlat": 40.7734989, + "maxlon": -73.9362522 + }, + "nodes": [ + 2891717773, + 13701392542 + ], + "geometry": [ + { "lat": 40.7734989, "lon": -73.9363073 }, + { "lat": 40.7734122, "lon": -73.9362522 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495497346, + "bounds": { + "minlat": 40.7753627, + "minlon": -73.9329422, + "maxlat": 40.7755517, + "maxlon": -73.9323469 + }, + "nodes": [ + 13701396579, + 13701396578, + 13701396577 + ], + "geometry": [ + { "lat": 40.7755517, "lon": -73.9329422 }, + { "lat": 40.7755236, "lon": -73.9328486 }, + { "lat": 40.7753627, "lon": -73.9323469 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495498497, + "bounds": { + "minlat": 40.7715375, + "minlon": -73.9276729, + "maxlat": 40.7717786, + "maxlon": -73.9274787 + }, + "nodes": [ + 2886112267, + 13701386162, + 13701386161 + ], + "geometry": [ + { "lat": 40.7715375, "lon": -73.9276729 }, + { "lat": 40.7715891, "lon": -73.9276313 }, + { "lat": 40.7717786, "lon": -73.9274787 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495498577, + "bounds": { + "minlat": 40.7458447, + "minlon": -73.9441292, + "maxlat": 40.7460190, + "maxlon": -73.9436986 + }, + "nodes": [ + 13701380525, + 13701380523, + 13701380524 + ], + "geometry": [ + { "lat": 40.7460190, "lon": -73.9436986 }, + { "lat": 40.7459768, "lon": -73.9438053 }, + { "lat": 40.7458447, "lon": -73.9441292 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495522988, + "bounds": { + "minlat": 40.7730562, + "minlon": -73.9280451, + "maxlat": 40.7733662, + "maxlon": -73.9278719 + }, + "nodes": [ + 11221760294, + 11221760296, + 11221760295 + ], + "geometry": [ + { "lat": 40.7730562, "lon": -73.9280451 }, + { "lat": 40.7731273, "lon": -73.9279979 }, + { "lat": 40.7733662, "lon": -73.9278719 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1495544271, + "bounds": { + "minlat": 40.7606000, + "minlon": -73.9316610, + "maxlat": 40.7609626, + "maxlon": -73.9313337 + }, + "nodes": [ + 13701510901, + 13701400899 + ], + "geometry": [ + { "lat": 40.7606000, "lon": -73.9316610 }, + { "lat": 40.7609626, "lon": -73.9313337 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495544272, + "bounds": { + "minlat": 40.7601637, + "minlon": -73.9320519, + "maxlat": 40.7606000, + "maxlon": -73.9313242 + }, + "nodes": [ + 13701510903, + 13701510902, + 13701510901, + 13701400900 + ], + "geometry": [ + { "lat": 40.7604319, "lon": -73.9313242 }, + { "lat": 40.7604664, "lon": -73.9313947 }, + { "lat": 40.7606000, "lon": -73.9316610 }, + { "lat": 40.7601637, "lon": -73.9320519 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495554670, + "bounds": { + "minlat": 40.7759684, + "minlon": -73.9347369, + "maxlat": 40.7763683, + "maxlon": -73.9341306 + }, + "nodes": [ + 13701510265, + 13701510264, + 13701510263, + 13701510262 + ], + "geometry": [ + { "lat": 40.7763683, "lon": -73.9347369 }, + { "lat": 40.7763462, "lon": -73.9346586 }, + { "lat": 40.7761934, "lon": -73.9341306 }, + { "lat": 40.7759684, "lon": -73.9342453 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495554854, + "bounds": { + "minlat": 40.8340142, + "minlon": -73.9217500, + "maxlat": 40.8340810, + "maxlon": -73.9217104 + }, + "nodes": [ + 13702982187, + 13701354171 + ], + "geometry": [ + { "lat": 40.8340142, "lon": -73.9217500 }, + { "lat": 40.8340810, "lon": -73.9217104 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495556881, + "bounds": { + "minlat": 40.7692637, + "minlon": -73.9212157, + "maxlat": 40.7705190, + "maxlon": -73.9197740 + }, + "nodes": [ + 42833397, + 6453012671, + 8032268634, + 42833400 + ], + "geometry": [ + { "lat": 40.7705190, "lon": -73.9197740 }, + { "lat": 40.7704512, "lon": -73.9198518 }, + { "lat": 40.7704163, "lon": -73.9198919 }, + { "lat": 40.7692637, "lon": -73.9212157 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "29th Street", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1495556882, + "bounds": { + "minlat": 40.7706141, + "minlon": -73.9197446, + "maxlat": 40.7706999, + "maxlon": -73.9194006 + }, + "nodes": [ + 13701505790, + 13701505789, + 13701505788, + 13701505787, + 13701505786 + ], + "geometry": [ + { "lat": 40.7706846, "lon": -73.9197446 }, + { "lat": 40.7706156, "lon": -73.9195528 }, + { "lat": 40.7706141, "lon": -73.9195300 }, + { "lat": 40.7706217, "lon": -73.9195112 }, + { "lat": 40.7706999, "lon": -73.9194006 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495558295, + "bounds": { + "minlat": 40.7768863, + "minlon": -73.9204785, + "maxlat": 40.7773771, + "maxlon": -73.9198823 + }, + "nodes": [ + 13701538261, + 13701538260, + 13701538259, + 13701538264 + ], + "geometry": [ + { "lat": 40.7768863, "lon": -73.9204785 }, + { "lat": 40.7769336, "lon": -73.9204203 }, + { "lat": 40.7773390, "lon": -73.9199272 }, + { "lat": 40.7773771, "lon": -73.9198823 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495558296, + "bounds": { + "minlat": 40.7773771, + "minlon": -73.9198823, + "maxlat": 40.7778780, + "maxlon": -73.9192653 + }, + "nodes": [ + 13701538264, + 13701538263, + 13701538262, + 2753135621 + ], + "geometry": [ + { "lat": 40.7773771, "lon": -73.9198823 }, + { "lat": 40.7774159, "lon": -73.9198348 }, + { "lat": 40.7778476, "lon": -73.9193015 }, + { "lat": 40.7778780, "lon": -73.9192653 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495559615, + "bounds": { + "minlat": 40.7804542, + "minlon": -73.9182711, + "maxlat": 40.7807364, + "maxlon": -73.9175499 + }, + "nodes": [ + 13701530980, + 13701530979, + 13701530978, + 13701530977 + ], + "geometry": [ + { "lat": 40.7804924, "lon": -73.9182711 }, + { "lat": 40.7805290, "lon": -73.9182232 }, + { "lat": 40.7807364, "lon": -73.9179602 }, + { "lat": 40.7804542, "lon": -73.9175499 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495559616, + "bounds": { + "minlat": 40.7802051, + "minlon": -73.9178566, + "maxlat": 40.7807334, + "maxlon": -73.9172121 + }, + "nodes": [ + 13701530984, + 13701530983, + 13701530977, + 13701530982, + 13701530981 + ], + "geometry": [ + { "lat": 40.7802051, "lon": -73.9178566 }, + { "lat": 40.7802407, "lon": -73.9178096 }, + { "lat": 40.7804542, "lon": -73.9175499 }, + { "lat": 40.7806766, "lon": -73.9172795 }, + { "lat": 40.7807334, "lon": -73.9172121 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495583121, + "bounds": { + "minlat": 40.7023283, + "minlon": -73.9080112, + "maxlat": 40.7024885, + "maxlon": -73.9077269 + }, + "nodes": [ + 13701577680, + 13701577679, + 13701577678 + ], + "geometry": [ + { "lat": 40.7024885, "lon": -73.9080112 }, + { "lat": 40.7024525, "lon": -73.9079444 }, + { "lat": 40.7023283, "lon": -73.9077269 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495604445, + "bounds": { + "minlat": 40.7192284, + "minlon": -73.9128224, + "maxlat": 40.7193663, + "maxlon": -73.9127502 + }, + "nodes": [ + 13701644467, + 13701644465, + 13701644466 + ], + "geometry": [ + { "lat": 40.7192284, "lon": -73.9127502 }, + { "lat": 40.7193348, "lon": -73.9128059 }, + { "lat": 40.7193663, "lon": -73.9128224 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495607544, + "bounds": { + "minlat": 40.7165205, + "minlon": -73.9154089, + "maxlat": 40.7170869, + "maxlon": -73.9151600 + }, + "nodes": [ + 13701683407, + 13701683406, + 13701683405 + ], + "geometry": [ + { "lat": 40.7170869, "lon": -73.9154089 }, + { "lat": 40.7167314, "lon": -73.9152532 }, + { "lat": 40.7165205, "lon": -73.9151600 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495607545, + "bounds": { + "minlat": 40.7170587, + "minlon": -73.9155127, + "maxlat": 40.7179944, + "maxlon": -73.9150795 + }, + "nodes": [ + 13701683412, + 13701683407, + 13701683411, + 13701683410, + 13701683409, + 13701683408 + ], + "geometry": [ + { "lat": 40.7170587, "lon": -73.9155127 }, + { "lat": 40.7170869, "lon": -73.9154089 }, + { "lat": 40.7171715, "lon": -73.9150983 }, + { "lat": 40.7171901, "lon": -73.9150795 }, + { "lat": 40.7172147, "lon": -73.9150795 }, + { "lat": 40.7179944, "lon": -73.9154564 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495610343, + "bounds": { + "minlat": 40.7176216, + "minlon": -73.9105386, + "maxlat": 40.7179944, + "maxlon": -73.9102818 + }, + "nodes": [ + 13701708522, + 13701708521, + 13701708523 + ], + "geometry": [ + { "lat": 40.7176216, "lon": -73.9102818 }, + { "lat": 40.7176714, "lon": -73.9103155 }, + { "lat": 40.7179944, "lon": -73.9105386 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495610344, + "bounds": { + "minlat": 40.7177230, + "minlon": -73.9112654, + "maxlat": 40.7179944, + "maxlon": -73.9105386 + }, + "nodes": [ + 13701708524, + 42839029, + 13701708523 + ], + "geometry": [ + { "lat": 40.7177230, "lon": -73.9112654 }, + { "lat": 40.7179290, "lon": -73.9107140 }, + { "lat": 40.7179944, "lon": -73.9105386 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495766604, + "bounds": { + "minlat": 40.7650080, + "minlon": -73.9373740, + "maxlat": 40.7652934, + "maxlon": -73.9365588 + }, + "nodes": [ + 13702815690, + 13702815689, + 13702815688, + 13773147065, + 13703374135 + ], + "geometry": [ + { "lat": 40.7652934, "lon": -73.9373740 }, + { "lat": 40.7652627, "lon": -73.9372863 }, + { "lat": 40.7650491, "lon": -73.9366834 }, + { "lat": 40.7650318, "lon": -73.9366309 }, + { "lat": 40.7650080, "lon": -73.9365588 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495767578, + "bounds": { + "minlat": 40.7663517, + "minlon": -73.9353554, + "maxlat": 40.7664046, + "maxlon": -73.9353015 + }, + "nodes": [ + 13702918239, + 13702918238, + 13702918237 + ], + "geometry": [ + { "lat": 40.7663517, "lon": -73.9353554 }, + { "lat": 40.7663985, "lon": -73.9353076 }, + { "lat": 40.7664046, "lon": -73.9353015 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495767579, + "bounds": { + "minlat": 40.7664803, + "minlon": -73.9352551, + "maxlat": 40.7669418, + "maxlon": -73.9348071 + }, + "nodes": [ + 13702918242, + 13702918241, + 13702918240, + 13716155080 + ], + "geometry": [ + { "lat": 40.7669418, "lon": -73.9348071 }, + { "lat": 40.7668789, "lon": -73.9348673 }, + { "lat": 40.7668588, "lon": -73.9348882 }, + { "lat": 40.7664803, "lon": -73.9352551 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495768153, + "bounds": { + "minlat": 40.7684666, + "minlon": -73.9340568, + "maxlat": 40.7686031, + "maxlon": -73.9337310 + }, + "nodes": [ + 13702906936, + 13702906935, + 13702906934 + ], + "geometry": [ + { "lat": 40.7684666, "lon": -73.9337310 }, + { "lat": 40.7685045, "lon": -73.9338147 }, + { "lat": 40.7686031, "lon": -73.9340568 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495768570, + "bounds": { + "minlat": 40.7508654, + "minlon": -73.9347731, + "maxlat": 40.7509547, + "maxlon": -73.9346271 + }, + "nodes": [ + 13702858788, + 13702858787, + 13702858786 + ], + "geometry": [ + { "lat": 40.7509547, "lon": -73.9347731 }, + { "lat": 40.7508863, "lon": -73.9346623 }, + { "lat": 40.7508654, "lon": -73.9346271 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495768571, + "bounds": { + "minlat": 40.7694239, + "minlon": -73.9292459, + "maxlat": 40.7697452, + "maxlon": -73.9289828 + }, + "nodes": [ + 13702920777, + 13702920776, + 13702920775 + ], + "geometry": [ + { "lat": 40.7694239, "lon": -73.9292459 }, + { "lat": 40.7694848, "lon": -73.9291937 }, + { "lat": 40.7697452, "lon": -73.9289828 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495768864, + "bounds": { + "minlat": 40.7509876, + "minlon": -73.9343791, + "maxlat": 40.7512168, + "maxlon": -73.9340086 + }, + "nodes": [ + 13702935178, + 13702935179 + ], + "geometry": [ + { "lat": 40.7509876, "lon": -73.9343791 }, + { "lat": 40.7512168, "lon": -73.9340086 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495768865, + "bounds": { + "minlat": 40.7508580, + "minlon": -73.9342159, + "maxlat": 40.7510903, + "maxlon": -73.9338644 + }, + "nodes": [ + 13702935181, + 13702935180 + ], + "geometry": [ + { "lat": 40.7508580, "lon": -73.9342159 }, + { "lat": 40.7510903, "lon": -73.9338644 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495768866, + "bounds": { + "minlat": 40.7506782, + "minlon": -73.9337720, + "maxlat": 40.7507814, + "maxlon": -73.9335432 + }, + "nodes": [ + 13702935183, + 13702935182 + ], + "geometry": [ + { "lat": 40.7506782, "lon": -73.9337720 }, + { "lat": 40.7507814, "lon": -73.9335432 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495769521, + "bounds": { + "minlat": 40.7507571, + "minlon": -73.9339985, + "maxlat": 40.7509318, + "maxlon": -73.9337390 + }, + "nodes": [ + 13702917533, + 13702917532 + ], + "geometry": [ + { "lat": 40.7507571, "lon": -73.9339985 }, + { "lat": 40.7509318, "lon": -73.9337390 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495769767, + "bounds": { + "minlat": 40.7511929, + "minlon": -73.9323202, + "maxlat": 40.7519478, + "maxlon": -73.9319345 + }, + "nodes": [ + 13702917033, + 8088590997, + 13702917034 + ], + "geometry": [ + { "lat": 40.7519478, "lon": -73.9323202 }, + { "lat": 40.7518472, "lon": -73.9322725 }, + { "lat": 40.7511929, "lon": -73.9319345 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495772734, + "bounds": { + "minlat": 40.7526162, + "minlon": -73.9326440, + "maxlat": 40.7528852, + "maxlon": -73.9324750 + }, + "nodes": [ + 13702917037, + 13702917036, + 13702917035 + ], + "geometry": [ + { "lat": 40.7526162, "lon": -73.9325239 }, + { "lat": 40.7526736, "lon": -73.9326440 }, + { "lat": 40.7528852, "lon": -73.9324750 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495772735, + "bounds": { + "minlat": 40.7525286, + "minlon": -73.9326775, + "maxlat": 40.7529795, + "maxlon": -73.9323563 + }, + "nodes": [ + 13702917040, + 13702917041, + 13702917037, + 13702917042, + 13702917035, + 13702917039, + 13702917038 + ], + "geometry": [ + { "lat": 40.7525286, "lon": -73.9325934 }, + { "lat": 40.7525833, "lon": -73.9325498 }, + { "lat": 40.7526162, "lon": -73.9325239 }, + { "lat": 40.7528286, "lon": -73.9323563 }, + { "lat": 40.7528852, "lon": -73.9324750 }, + { "lat": 40.7529205, "lon": -73.9325504 }, + { "lat": 40.7529795, "lon": -73.9326775 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495772962, + "bounds": { + "minlat": 40.7525429, + "minlon": -73.9320315, + "maxlat": 40.7525866, + "maxlon": -73.9319412 + }, + "nodes": [ + 13702960673, + 13702960674, + 13702960675 + ], + "geometry": [ + { "lat": 40.7525429, "lon": -73.9319412 }, + { "lat": 40.7525769, "lon": -73.9320123 }, + { "lat": 40.7525866, "lon": -73.9320315 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495775007, + "bounds": { + "minlat": 40.7521738, + "minlon": -73.9293385, + "maxlat": 40.7522129, + "maxlon": -73.9292939 + }, + "nodes": [ + 13702968598, + 13702980104 + ], + "geometry": [ + { "lat": 40.7522129, "lon": -73.9293385 }, + { "lat": 40.7521738, "lon": -73.9292939 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495775008, + "bounds": { + "minlat": 40.7522129, + "minlon": -73.9294055, + "maxlat": 40.7522505, + "maxlon": -73.9293385 + }, + "nodes": [ + 13702968599, + 13702968598 + ], + "geometry": [ + { "lat": 40.7522505, "lon": -73.9294055 }, + { "lat": 40.7522129, "lon": -73.9293385 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495775009, + "bounds": { + "minlat": 40.7522505, + "minlon": -73.9295448, + "maxlat": 40.7523238, + "maxlon": -73.9294055 + }, + "nodes": [ + 13702980101, + 13702968599 + ], + "geometry": [ + { "lat": 40.7523238, "lon": -73.9295448 }, + { "lat": 40.7522505, "lon": -73.9294055 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495775010, + "bounds": { + "minlat": 40.7521652, + "minlon": -73.9297184, + "maxlat": 40.7521738, + "maxlon": -73.9292939 + }, + "nodes": [ + 13702980110, + 13702980107, + 13702980104 + ], + "geometry": [ + { "lat": 40.7521652, "lon": -73.9297184 }, + { "lat": 40.7521697, "lon": -73.9294830 }, + { "lat": 40.7521738, "lon": -73.9292939 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495775011, + "bounds": { + "minlat": 40.7520264, + "minlon": -73.9292939, + "maxlat": 40.7521738, + "maxlon": -73.9292644 + }, + "nodes": [ + 13702980106, + 13702980105, + 13702980104 + ], + "geometry": [ + { "lat": 40.7520264, "lon": -73.9292644 }, + { "lat": 40.7521574, "lon": -73.9292765 }, + { "lat": 40.7521738, "lon": -73.9292939 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495775012, + "bounds": { + "minlat": 40.7520221, + "minlon": -73.9294830, + "maxlat": 40.7521697, + "maxlon": -73.9294736 + }, + "nodes": [ + 13702980109, + 13702980108, + 13702980107 + ], + "geometry": [ + { "lat": 40.7520221, "lon": -73.9294736 }, + { "lat": 40.7521510, "lon": -73.9294817 }, + { "lat": 40.7521697, "lon": -73.9294830 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495775013, + "bounds": { + "minlat": 40.7520168, + "minlon": -73.9297606, + "maxlat": 40.7524178, + "maxlon": -73.9294480 + }, + "nodes": [ + 10598537440, + 13702980111, + 13702968600, + 13702980110, + 13702980101, + 13702980103, + 13702980102 + ], + "geometry": [ + { "lat": 40.7520168, "lon": -73.9297552 }, + { "lat": 40.7521424, "lon": -73.9297606 }, + { "lat": 40.7521570, "lon": -73.9297438 }, + { "lat": 40.7521652, "lon": -73.9297184 }, + { "lat": 40.7523238, "lon": -73.9295448 }, + { "lat": 40.7523620, "lon": -73.9295055 }, + { "lat": 40.7524178, "lon": -73.9294480 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495778333, + "bounds": { + "minlat": 40.7765644, + "minlon": -73.9839261, + "maxlat": 40.7768793, + "maxlon": -73.9836927 + }, + "nodes": [ + 13702981186, + 13702981190, + 3371304357 + ], + "geometry": [ + { "lat": 40.7768793, "lon": -73.9836927 }, + { "lat": 40.7768148, "lon": -73.9837399 }, + { "lat": 40.7765644, "lon": -73.9839261 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495778334, + "bounds": { + "minlat": 40.7766529, + "minlon": -73.9842598, + "maxlat": 40.7766973, + "maxlon": -73.9841504 + }, + "nodes": [ + 3371304358, + 13702981189 + ], + "geometry": [ + { "lat": 40.7766529, "lon": -73.9841504 }, + { "lat": 40.7766973, "lon": -73.9842598 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495780130, + "bounds": { + "minlat": 40.8239196, + "minlon": -73.9143493, + "maxlat": 40.8243102, + "maxlon": -73.9139828 + }, + "nodes": [ + 13703009847, + 13703009846, + 13703009845, + 13703009844, + 13703009843 + ], + "geometry": [ + { "lat": 40.8243102, "lon": -73.9142108 }, + { "lat": 40.8242088, "lon": -73.9142628 }, + { "lat": 40.8240325, "lon": -73.9143493 }, + { "lat": 40.8239564, "lon": -73.9140987 }, + { "lat": 40.8239196, "lon": -73.9139828 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495780595, + "bounds": { + "minlat": 40.8234936, + "minlon": -73.9146329, + "maxlat": 40.8236897, + "maxlon": -73.9145293 + }, + "nodes": [ + 13702992930, + 13702992929, + 13702992928 + ], + "geometry": [ + { "lat": 40.8236897, "lon": -73.9145293 }, + { "lat": 40.8236394, "lon": -73.9145591 }, + { "lat": 40.8234936, "lon": -73.9146329 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495780630, + "bounds": { + "minlat": 40.8208387, + "minlon": -73.9141743, + "maxlat": 40.8212853, + "maxlon": -73.9139310 + }, + "nodes": [ + 13703020076, + 13703020075 + ], + "geometry": [ + { "lat": 40.8212853, "lon": -73.9139310 }, + { "lat": 40.8208387, "lon": -73.9141743 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495784799, + "bounds": { + "minlat": 40.8151967, + "minlon": -73.9113233, + "maxlat": 40.8152539, + "maxlon": -73.9110589 + }, + "nodes": [ + 42751596, + 13703043150 + ], + "geometry": [ + { "lat": 40.8152539, "lon": -73.9113233 }, + { "lat": 40.8151967, "lon": -73.9110589 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495785478, + "bounds": { + "minlat": 40.7394271, + "minlon": -73.9068063, + "maxlat": 40.7398578, + "maxlon": -73.9066574 + }, + "nodes": [ + 13703038178, + 13703038175, + 13712871582 + ], + "geometry": [ + { "lat": 40.7394271, "lon": -73.9066574 }, + { "lat": 40.7394301, "lon": -73.9068063 }, + { "lat": 40.7398578, "lon": -73.9067915 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1495785630, + "bounds": { + "minlat": 40.7615043, + "minlon": -73.9079611, + "maxlat": 40.7616840, + "maxlon": -73.9075534 + }, + "nodes": [ + 13703044615, + 13703044613, + 13703044614 + ], + "geometry": [ + { "lat": 40.7616840, "lon": -73.9079611 }, + { "lat": 40.7616534, "lon": -73.9078959 }, + { "lat": 40.7615043, "lon": -73.9075534 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "alley" + } +}, +{ + "type": "way", + "id": 1495787405, + "bounds": { + "minlat": 40.7654325, + "minlon": -73.9087301, + "maxlat": 40.7659307, + "maxlon": -73.9079766 + }, + "nodes": [ + 13703044633, + 13703044627, + 13703044632, + 13703044631, + 13703044630, + 13703044629, + 13703044628 + ], + "geometry": [ + { "lat": 40.7657779, "lon": -73.9079766 }, + { "lat": 40.7658007, "lon": -73.9080250 }, + { "lat": 40.7658952, "lon": -73.9082278 }, + { "lat": 40.7659307, "lon": -73.9083137 }, + { "lat": 40.7659287, "lon": -73.9083318 }, + { "lat": 40.7659211, "lon": -73.9083445 }, + { "lat": 40.7654325, "lon": -73.9087301 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495788417, + "bounds": { + "minlat": 40.8030956, + "minlon": -73.9104004, + "maxlat": 40.8036166, + "maxlon": -73.9099320 + }, + "nodes": [ + 13703060118, + 13703060117, + 13703060116 + ], + "geometry": [ + { "lat": 40.8036166, "lon": -73.9099320 }, + { "lat": 40.8035324, "lon": -73.9099915 }, + { "lat": 40.8030956, "lon": -73.9104004 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495788804, + "bounds": { + "minlat": 40.8000235, + "minlon": -73.9122561, + "maxlat": 40.8005338, + "maxlon": -73.9115350 + }, + "nodes": [ + 13703060021, + 13703060020, + 13703060019, + 13703060017, + 13703060018 + ], + "geometry": [ + { "lat": 40.8003233, "lon": -73.9122561 }, + { "lat": 40.8005338, "lon": -73.9120419 }, + { "lat": 40.8002363, "lon": -73.9115350 }, + { "lat": 40.8000972, "lon": -73.9116745 }, + { "lat": 40.8000235, "lon": -73.9117499 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495791543, + "bounds": { + "minlat": 40.8395953, + "minlon": -73.9353577, + "maxlat": 40.8397938, + "maxlon": -73.9350293 + }, + "nodes": [ + 13703102714, + 13703102713, + 13703102712, + 13703102711, + 13703102710, + 13703102709 + ], + "geometry": [ + { "lat": 40.8395953, "lon": -73.9353577 }, + { "lat": 40.8397389, "lon": -73.9352638 }, + { "lat": 40.8397673, "lon": -73.9352256 }, + { "lat": 40.8397795, "lon": -73.9351767 }, + { "lat": 40.8397856, "lon": -73.9351273 }, + { "lat": 40.8397938, "lon": -73.9350293 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495792662, + "bounds": { + "minlat": 40.8376467, + "minlon": -73.9381776, + "maxlat": 40.8381226, + "maxlon": -73.9376074 + }, + "nodes": [ + 13703112125, + 13703112124, + 13703112123, + 13703112127, + 13703112126 + ], + "geometry": [ + { "lat": 40.8381226, "lon": -73.9381776 }, + { "lat": 40.8380788, "lon": -73.9380677 }, + { "lat": 40.8378847, "lon": -73.9376074 }, + { "lat": 40.8377194, "lon": -73.9377228 }, + { "lat": 40.8376467, "lon": -73.9377739 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495793118, + "bounds": { + "minlat": 40.8359579, + "minlon": -73.9276260, + "maxlat": 40.8361466, + "maxlon": -73.9272769 + }, + "nodes": [ + 13703095058, + 13703095057, + 13703095056, + 13703095055 + ], + "geometry": [ + { "lat": 40.8360350, "lon": -73.9276260 }, + { "lat": 40.8359952, "lon": -73.9274957 }, + { "lat": 40.8359579, "lon": -73.9273815 }, + { "lat": 40.8361466, "lon": -73.9272769 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495794055, + "bounds": { + "minlat": 40.7521067, + "minlon": -73.9090791, + "maxlat": 40.7530645, + "maxlon": -73.9089453 + }, + "nodes": [ + 13703117844, + 13703117843, + 13703117842, + 13703117841 + ], + "geometry": [ + { "lat": 40.7530645, "lon": -73.9090791 }, + { "lat": 40.7529585, "lon": -73.9090612 }, + { "lat": 40.7524765, "lon": -73.9089956 }, + { "lat": 40.7521067, "lon": -73.9089453 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495794381, + "bounds": { + "minlat": 40.8322416, + "minlon": -73.9311393, + "maxlat": 40.8323710, + "maxlon": -73.9307334 + }, + "nodes": [ + 13703121744, + 13809338795, + 13703121740, + 13703121743, + 13703121742, + 13703121741, + 13703121740 + ], + "geometry": [ + { "lat": 40.8322576, "lon": -73.9307334 }, + { "lat": 40.8322877, "lon": -73.9308314 }, + { "lat": 40.8323068, "lon": -73.9308937 }, + { "lat": 40.8323710, "lon": -73.9311031 }, + { "lat": 40.8323080, "lon": -73.9311393 }, + { "lat": 40.8322416, "lon": -73.9309327 }, + { "lat": 40.8323068, "lon": -73.9308937 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1495794475, + "bounds": { + "minlat": 40.8633890, + "minlon": -73.9184349, + "maxlat": 40.8634778, + "maxlon": -73.9183746 + }, + "nodes": [ + 13703096287, + 13703096286, + 13703096285 + ], + "geometry": [ + { "lat": 40.8633890, "lon": -73.9184349 }, + { "lat": 40.8634556, "lon": -73.9183896 }, + { "lat": 40.8634778, "lon": -73.9183746 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495794869, + "bounds": { + "minlat": 40.8650351, + "minlon": -73.9255241, + "maxlat": 40.8657132, + "maxlon": -73.9252625 + }, + "nodes": [ + 13703104768, + 13703104767, + 13703104766, + 13703104765, + 13703104764, + 13703104763 + ], + "geometry": [ + { "lat": 40.8650351, "lon": -73.9253010 }, + { "lat": 40.8651093, "lon": -73.9253528 }, + { "lat": 40.8653998, "lon": -73.9255241 }, + { "lat": 40.8654830, "lon": -73.9252894 }, + { "lat": 40.8656645, "lon": -73.9254020 }, + { "lat": 40.8657132, "lon": -73.9252625 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495795400, + "bounds": { + "minlat": 40.7583417, + "minlon": -73.9120842, + "maxlat": 40.7586338, + "maxlon": -73.9118010 + }, + "nodes": [ + 13703129912, + 13703129911, + 13703129910, + 13703129909, + 13703129908, + 13703129907, + 13703129906, + 13703129905, + 13703129904, + 13703129903, + 13703129902 + ], + "geometry": [ + { "lat": 40.7583417, "lon": -73.9118010 }, + { "lat": 40.7583766, "lon": -73.9118765 }, + { "lat": 40.7583855, "lon": -73.9118964 }, + { "lat": 40.7584281, "lon": -73.9119910 }, + { "lat": 40.7584850, "lon": -73.9119427 }, + { "lat": 40.7585043, "lon": -73.9119367 }, + { "lat": 40.7585246, "lon": -73.9119414 }, + { "lat": 40.7585439, "lon": -73.9119534 }, + { "lat": 40.7585663, "lon": -73.9119776 }, + { "lat": 40.7585947, "lon": -73.9120151 }, + { "lat": 40.7586338, "lon": -73.9120842 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495797032, + "bounds": { + "minlat": 40.8519120, + "minlon": -73.9090032, + "maxlat": 40.8520368, + "maxlon": -73.9087391 + }, + "nodes": [ + 13703126483, + 13703126482, + 13703126481 + ], + "geometry": [ + { "lat": 40.8520368, "lon": -73.9090032 }, + { "lat": 40.8519662, "lon": -73.9088575 }, + { "lat": 40.8519120, "lon": -73.9087391 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495797782, + "bounds": { + "minlat": 40.8634525, + "minlon": -73.9191216, + "maxlat": 40.8636215, + "maxlon": -73.9189885 + }, + "nodes": [ + 13703148761, + 13703148760, + 13703148759 + ], + "geometry": [ + { "lat": 40.8636215, "lon": -73.9189885 }, + { "lat": 40.8635647, "lon": -73.9190337 }, + { "lat": 40.8634525, "lon": -73.9191216 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495797959, + "bounds": { + "minlat": 40.8473028, + "minlon": -73.9122995, + "maxlat": 40.8474604, + "maxlon": -73.9121268 + }, + "nodes": [ + 7589205541, + 13703148539, + 13701329107, + 7589205545 + ], + "geometry": [ + { "lat": 40.8474282, "lon": -73.9121268 }, + { "lat": 40.8473028, "lon": -73.9122193 }, + { "lat": 40.8473342, "lon": -73.9122995 }, + { "lat": 40.8474604, "lon": -73.9122084 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495799510, + "bounds": { + "minlat": 40.8540835, + "minlon": -73.9074755, + "maxlat": 40.8544926, + "maxlon": -73.9068495 + }, + "nodes": [ + 13703151834, + 13703151833, + 13703151832, + 13703482972, + 13703482971, + 13703482970, + 13703482969, + 13703482968, + 13703482967, + 13703482966, + 13703482965, + 13703482964, + 13703482963, + 13703482962, + 13703482961, + 13703482960, + 13703482959, + 13703482958, + 13703482957 + ], + "geometry": [ + { "lat": 40.8540835, "lon": -73.9071279 }, + { "lat": 40.8541532, "lon": -73.9072713 }, + { "lat": 40.8542426, "lon": -73.9074443 }, + { "lat": 40.8542489, "lon": -73.9074567 }, + { "lat": 40.8542606, "lon": -73.9074688 }, + { "lat": 40.8542750, "lon": -73.9074751 }, + { "lat": 40.8542905, "lon": -73.9074755 }, + { "lat": 40.8543156, "lon": -73.9074678 }, + { "lat": 40.8543569, "lon": -73.9074366 }, + { "lat": 40.8544368, "lon": -73.9073611 }, + { "lat": 40.8544520, "lon": -73.9073393 }, + { "lat": 40.8544662, "lon": -73.9072981 }, + { "lat": 40.8544774, "lon": -73.9072532 }, + { "lat": 40.8544873, "lon": -73.9072019 }, + { "lat": 40.8544926, "lon": -73.9071462 }, + { "lat": 40.8544921, "lon": -73.9070956 }, + { "lat": 40.8544797, "lon": -73.9070480 }, + { "lat": 40.8544576, "lon": -73.9069986 }, + { "lat": 40.8543819, "lon": -73.9068495 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495800063, + "bounds": { + "minlat": 40.8630690, + "minlon": -73.9203417, + "maxlat": 40.8631388, + "maxlon": -73.9201365 + }, + "nodes": [ + 13703152926, + 13703152925 + ], + "geometry": [ + { "lat": 40.8630690, "lon": -73.9203417 }, + { "lat": 40.8631388, "lon": -73.9201365 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495800064, + "bounds": { + "minlat": 40.8628332, + "minlon": -73.9204256, + "maxlat": 40.8631955, + "maxlon": -73.9201333 + }, + "nodes": [ + 13703152930, + 13703152929, + 13703152926, + 13703152928, + 13703152927 + ], + "geometry": [ + { "lat": 40.8628332, "lon": -73.9201333 }, + { "lat": 40.8629063, "lon": -73.9202436 }, + { "lat": 40.8630690, "lon": -73.9203417 }, + { "lat": 40.8630932, "lon": -73.9203562 }, + { "lat": 40.8631955, "lon": -73.9204256 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495800065, + "bounds": { + "minlat": 40.8630337, + "minlon": -73.9202329, + "maxlat": 40.8632728, + "maxlon": -73.9199865 + }, + "nodes": [ + 13703152934, + 13703152933, + 13703152925, + 13703152932, + 13703152931 + ], + "geometry": [ + { "lat": 40.8630337, "lon": -73.9199865 }, + { "lat": 40.8630940, "lon": -73.9201031 }, + { "lat": 40.8631388, "lon": -73.9201365 }, + { "lat": 40.8631679, "lon": -73.9201583 }, + { "lat": 40.8632728, "lon": -73.9202329 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495800500, + "bounds": { + "minlat": 40.8629722, + "minlon": -73.9182647, + "maxlat": 40.8632370, + "maxlon": -73.9180742 + }, + "nodes": [ + 13703171490, + 13703171489, + 13703171488 + ], + "geometry": [ + { "lat": 40.8632370, "lon": -73.9180742 }, + { "lat": 40.8631747, "lon": -73.9181167 }, + { "lat": 40.8629722, "lon": -73.9182647 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495800501, + "bounds": { + "minlat": 40.8630356, + "minlon": -73.9184323, + "maxlat": 40.8633068, + "maxlon": -73.9182364 + }, + "nodes": [ + 13703171493, + 13703171492, + 13703171491 + ], + "geometry": [ + { "lat": 40.8633068, "lon": -73.9182364 }, + { "lat": 40.8632451, "lon": -73.9182811 }, + { "lat": 40.8630356, "lon": -73.9184323 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495800661, + "bounds": { + "minlat": 40.8529437, + "minlon": -73.9146909, + "maxlat": 40.8531199, + "maxlon": -73.9143671 + }, + "nodes": [ + 13703157892, + 13703157891, + 13703157890 + ], + "geometry": [ + { "lat": 40.8529437, "lon": -73.9143671 }, + { "lat": 40.8529792, "lon": -73.9144333 }, + { "lat": 40.8531199, "lon": -73.9146909 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495802317, + "bounds": { + "minlat": 40.8615019, + "minlon": -73.9194126, + "maxlat": 40.8616420, + "maxlon": -73.9190801 + }, + "nodes": [ + 7694163701, + 13703188056 + ], + "geometry": [ + { "lat": 40.8615019, "lon": -73.9190801 }, + { "lat": 40.8616420, "lon": -73.9194126 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495802837, + "bounds": { + "minlat": 40.8532956, + "minlon": -73.9144402, + "maxlat": 40.8535261, + "maxlon": -73.9140256 + }, + "nodes": [ + 13703191081, + 13703191080, + 13703191079 + ], + "geometry": [ + { "lat": 40.8532956, "lon": -73.9140256 }, + { "lat": 40.8533333, "lon": -73.9140961 }, + { "lat": 40.8535261, "lon": -73.9144402 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495805185, + "bounds": { + "minlat": 40.8152312, + "minlon": -73.9158279, + "maxlat": 40.8157164, + "maxlon": -73.9148703 + }, + "nodes": [ + 13703183724, + 13703183723, + 13703183722, + 13703183721, + 13703183720, + 13703183719, + 13703183716, + 13703183718, + 13703183717 + ], + "geometry": [ + { "lat": 40.8155124, "lon": -73.9158279 }, + { "lat": 40.8154840, "lon": -73.9158104 }, + { "lat": 40.8154677, "lon": -73.9157890 }, + { "lat": 40.8154555, "lon": -73.9157340 }, + { "lat": 40.8154606, "lon": -73.9156857 }, + { "lat": 40.8154677, "lon": -73.9156160 }, + { "lat": 40.8156149, "lon": -73.9151746 }, + { "lat": 40.8157164, "lon": -73.9148703 }, + { "lat": 40.8152312, "lon": -73.9151654 } + ], + "tags": { + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1495805186, + "bounds": { + "minlat": 40.8154281, + "minlon": -73.9156160, + "maxlat": 40.8154677, + "maxlon": -73.9155033 + }, + "nodes": [ + 13703183719, + 13703183714 + ], + "geometry": [ + { "lat": 40.8154677, "lon": -73.9156160 }, + { "lat": 40.8154281, "lon": -73.9155033 } + ], + "tags": { + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1495805187, + "bounds": { + "minlat": 40.8153855, + "minlon": -73.9153156, + "maxlat": 40.8156149, + "maxlon": -73.9151746 + }, + "nodes": [ + 13703183716, + 13703183715 + ], + "geometry": [ + { "lat": 40.8156149, "lon": -73.9151746 }, + { "lat": 40.8153855, "lon": -73.9153156 } + ], + "tags": { + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1495805188, + "bounds": { + "minlat": 40.8155124, + "minlon": -73.9158279, + "maxlat": 40.8158940, + "maxlon": -73.9144338 + }, + "nodes": [ + 12197807024, + 13703183734, + 13703183733, + 13703183732, + 13703183731, + 13703183730, + 13703183729, + 13703183728, + 13703183727, + 13703183726, + 13703183725, + 13703183724 + ], + "geometry": [ + { "lat": 40.8158633, "lon": -73.9144338 }, + { "lat": 40.8158848, "lon": -73.9145422 }, + { "lat": 40.8158930, "lon": -73.9146329 }, + { "lat": 40.8158940, "lon": -73.9146960 }, + { "lat": 40.8158869, "lon": -73.9147510 }, + { "lat": 40.8156271, "lon": -73.9155637 }, + { "lat": 40.8156139, "lon": -73.9156763 }, + { "lat": 40.8156058, "lon": -73.9157420 }, + { "lat": 40.8155976, "lon": -73.9157863 }, + { "lat": 40.8155682, "lon": -73.9158212 }, + { "lat": 40.8155378, "lon": -73.9158279 }, + { "lat": 40.8155124, "lon": -73.9158279 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495807039, + "bounds": { + "minlat": 40.7256081, + "minlon": -73.9097480, + "maxlat": 40.7256860, + "maxlon": -73.9094916 + }, + "nodes": [ + 13703154233, + 13703154232, + 13703154231 + ], + "geometry": [ + { "lat": 40.7256081, "lon": -73.9094916 }, + { "lat": 40.7256718, "lon": -73.9095882 }, + { "lat": 40.7256860, "lon": -73.9097480 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495807400, + "bounds": { + "minlat": 40.8534777, + "minlon": -73.9190331, + "maxlat": 40.8539697, + "maxlon": -73.9185087 + }, + "nodes": [ + 13703152974, + 13703152973, + 13703152972 + ], + "geometry": [ + { "lat": 40.8535035, "lon": -73.9190331 }, + { "lat": 40.8534777, "lon": -73.9189848 }, + { "lat": 40.8539697, "lon": -73.9185087 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495807401, + "bounds": { + "minlat": 40.8535035, + "minlon": -73.9191968, + "maxlat": 40.8535941, + "maxlon": -73.9190331 + }, + "nodes": [ + 13703152975, + 13703152974 + ], + "geometry": [ + { "lat": 40.8535941, "lon": -73.9191968 }, + { "lat": 40.8535035, "lon": -73.9190331 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495807402, + "bounds": { + "minlat": 40.8535941, + "minlon": -73.9193059, + "maxlat": 40.8536577, + "maxlon": -73.9191968 + }, + "nodes": [ + 13703152977, + 13703152976, + 13703152975 + ], + "geometry": [ + { "lat": 40.8536577, "lon": -73.9193059 }, + { "lat": 40.8536157, "lon": -73.9192389 }, + { "lat": 40.8535941, "lon": -73.9191968 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495810022, + "bounds": { + "minlat": 40.8297763, + "minlon": -73.9366520, + "maxlat": 40.8300365, + "maxlon": -73.9360437 + }, + "nodes": [ + 13703241873, + 13703241872, + 13703241871 + ], + "geometry": [ + { "lat": 40.8300365, "lon": -73.9366520 }, + { "lat": 40.8299647, "lon": -73.9364796 }, + { "lat": 40.8297763, "lon": -73.9360437 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495811454, + "bounds": { + "minlat": 40.8277853, + "minlon": -73.9368594, + "maxlat": 40.8280317, + "maxlon": -73.9366895 + }, + "nodes": [ + 13703252432, + 13703252431, + 13703252430 + ], + "geometry": [ + { "lat": 40.8280317, "lon": -73.9366895 }, + { "lat": 40.8279965, "lon": -73.9367141 }, + { "lat": 40.8277853, "lon": -73.9368594 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495813056, + "bounds": { + "minlat": 40.8270773, + "minlon": -73.9372922, + "maxlat": 40.8271714, + "maxlon": -73.9370561 + }, + "nodes": [ + 13703275586, + 13703275585, + 13703275584 + ], + "geometry": [ + { "lat": 40.8271714, "lon": -73.9372922 }, + { "lat": 40.8271116, "lon": -73.9371370 }, + { "lat": 40.8270773, "lon": -73.9370561 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495813267, + "bounds": { + "minlat": 40.7280576, + "minlon": -73.9068282, + "maxlat": 40.7281011, + "maxlon": -73.9067857 + }, + "nodes": [ + 13703247951, + 13703247950 + ], + "geometry": [ + { "lat": 40.7280576, "lon": -73.9068282 }, + { "lat": 40.7281011, "lon": -73.9067857 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495813268, + "bounds": { + "minlat": 40.7281011, + "minlon": -73.9067857, + "maxlat": 40.7281785, + "maxlon": -73.9067096 + }, + "nodes": [ + 13703247950, + 7824472481 + ], + "geometry": [ + { "lat": 40.7281011, "lon": -73.9067857 }, + { "lat": 40.7281785, "lon": -73.9067096 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495813269, + "bounds": { + "minlat": 40.7279191, + "minlon": -73.9070708, + "maxlat": 40.7280622, + "maxlon": -73.9068282 + }, + "nodes": [ + 13703247955, + 13703247954, + 13703247953, + 13703247952, + 13703247951 + ], + "geometry": [ + { "lat": 40.7279191, "lon": -73.9070708 }, + { "lat": 40.7279813, "lon": -73.9070088 }, + { "lat": 40.7280622, "lon": -73.9069286 }, + { "lat": 40.7280289, "lon": -73.9068545 }, + { "lat": 40.7280576, "lon": -73.9068282 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495815668, + "bounds": { + "minlat": 40.8512977, + "minlon": -73.9164758, + "maxlat": 40.8514304, + "maxlon": -73.9159948 + }, + "nodes": [ + 10173053999, + 12527800572, + 10173054001, + 10173054011, + 10173054000 + ], + "geometry": [ + { "lat": 40.8512977, "lon": -73.9159948 }, + { "lat": 40.8513236, "lon": -73.9161066 }, + { "lat": 40.8513284, "lon": -73.9161275 }, + { "lat": 40.8513918, "lon": -73.9163284 }, + { "lat": 40.8514304, "lon": -73.9164758 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1495816815, + "bounds": { + "minlat": 40.8547660, + "minlon": -73.9278682, + "maxlat": 40.8548552, + "maxlon": -73.9276457 + }, + "nodes": [ + 13703297126, + 13703297125, + 13703297124 + ], + "geometry": [ + { "lat": 40.8548552, "lon": -73.9278682 }, + { "lat": 40.8548175, "lon": -73.9277697 }, + { "lat": 40.8547660, "lon": -73.9276457 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495817015, + "bounds": { + "minlat": 40.8523613, + "minlon": -73.9293328, + "maxlat": 40.8526586, + "maxlon": -73.9291169 + }, + "nodes": [ + 13703298716, + 13703298715, + 13703298714 + ], + "geometry": [ + { "lat": 40.8523613, "lon": -73.9293328 }, + { "lat": 40.8524353, "lon": -73.9292759 }, + { "lat": 40.8526586, "lon": -73.9291169 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495818039, + "bounds": { + "minlat": 40.8393630, + "minlon": -73.9415035, + "maxlat": 40.8394843, + "maxlon": -73.9414036 + }, + "nodes": [ + 13703300748, + 13703300751, + 13703300750, + 13703300749 + ], + "geometry": [ + { "lat": 40.8394843, "lon": -73.9414036 }, + { "lat": 40.8394587, "lon": -73.9414229 }, + { "lat": 40.8394461, "lon": -73.9414341 }, + { "lat": 40.8393630, "lon": -73.9415035 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495818040, + "bounds": { + "minlat": 40.8396449, + "minlon": -73.9411191, + "maxlat": 40.8396971, + "maxlon": -73.9409844 + }, + "nodes": [ + 13703300756, + 13703300755, + 13703300754 + ], + "geometry": [ + { "lat": 40.8396449, "lon": -73.9409844 }, + { "lat": 40.8396701, "lon": -73.9410520 }, + { "lat": 40.8396971, "lon": -73.9411191 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495818041, + "bounds": { + "minlat": 40.8394843, + "minlon": -73.9414036, + "maxlat": 40.8397145, + "maxlon": -73.9411191 + }, + "nodes": [ + 13703300754, + 13703300753, + 13703300752, + 13703300748 + ], + "geometry": [ + { "lat": 40.8396971, "lon": -73.9411191 }, + { "lat": 40.8397145, "lon": -73.9411647 }, + { "lat": 40.8397054, "lon": -73.9412250 }, + { "lat": 40.8394843, "lon": -73.9414036 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495818346, + "bounds": { + "minlat": 40.8520555, + "minlon": -73.9354764, + "maxlat": 40.8522356, + "maxlon": -73.9353714 + }, + "nodes": [ + 13703283271, + 13703283270, + 13703283269 + ], + "geometry": [ + { "lat": 40.8522356, "lon": -73.9353714 }, + { "lat": 40.8521830, "lon": -73.9353913 }, + { "lat": 40.8520555, "lon": -73.9354764 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495818475, + "bounds": { + "minlat": 40.8518065, + "minlon": -73.9276034, + "maxlat": 40.8520286, + "maxlon": -73.9270195 + }, + "nodes": [ + 13703324967, + 13703324966, + 13703324965 + ], + "geometry": [ + { "lat": 40.8518065, "lon": -73.9270195 }, + { "lat": 40.8518221, "lon": -73.9271084 }, + { "lat": 40.8520286, "lon": -73.9276034 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495818476, + "bounds": { + "minlat": 40.8518353, + "minlon": -73.9275850, + "maxlat": 40.8520535, + "maxlon": -73.9270169 + }, + "nodes": [ + 13703324970, + 13703324969, + 13703324968 + ], + "geometry": [ + { "lat": 40.8518353, "lon": -73.9270169 }, + { "lat": 40.8518507, "lon": -73.9271055 }, + { "lat": 40.8520535, "lon": -73.9275850 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495819464, + "bounds": { + "minlat": 40.8510034, + "minlon": -73.9357701, + "maxlat": 40.8511359, + "maxlon": -73.9353071 + }, + "nodes": [ + 13703331223, + 13703331222, + 13703331221 + ], + "geometry": [ + { "lat": 40.8510034, "lon": -73.9353071 }, + { "lat": 40.8510460, "lon": -73.9354560 }, + { "lat": 40.8511359, "lon": -73.9357701 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495821475, + "bounds": { + "minlat": 40.8300316, + "minlon": -73.9444973, + "maxlat": 40.8301979, + "maxlon": -73.9440884 + }, + "nodes": [ + 13703344142, + 13703344141, + 13703344140 + ], + "geometry": [ + { "lat": 40.8300316, "lon": -73.9440884 }, + { "lat": 40.8300911, "lon": -73.9442341 }, + { "lat": 40.8301979, "lon": -73.9444973 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495822302, + "bounds": { + "minlat": 40.8219870, + "minlon": -73.9406028, + "maxlat": 40.8222170, + "maxlon": -73.9404384 + }, + "nodes": [ + 13703366417, + 13703366415, + 13703366416 + ], + "geometry": [ + { "lat": 40.8219870, "lon": -73.9406028 }, + { "lat": 40.8221188, "lon": -73.9405086 }, + { "lat": 40.8222170, "lon": -73.9404384 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495822303, + "bounds": { + "minlat": 40.8219523, + "minlon": -73.9405177, + "maxlat": 40.8221811, + "maxlon": -73.9403532 + }, + "nodes": [ + 13703366419, + 13703366414, + 13703366418 + ], + "geometry": [ + { "lat": 40.8219523, "lon": -73.9405177 }, + { "lat": 40.8220830, "lon": -73.9404238 }, + { "lat": 40.8221811, "lon": -73.9403532 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495822304, + "bounds": { + "minlat": 40.8219145, + "minlon": -73.9406812, + "maxlat": 40.8222490, + "maxlon": -73.9402632 + }, + "nodes": [ + 13703366425, + 13703366424, + 13703366423, + 13703366417, + 13703366419, + 13703366422, + 13703366421, + 13703366420 + ], + "geometry": [ + { "lat": 40.8222490, "lon": -73.9405145 }, + { "lat": 40.8221513, "lon": -73.9405853 }, + { "lat": 40.8220190, "lon": -73.9406812 }, + { "lat": 40.8219870, "lon": -73.9406028 }, + { "lat": 40.8219523, "lon": -73.9405177 }, + { "lat": 40.8219145, "lon": -73.9404251 }, + { "lat": 40.8220445, "lon": -73.9403331 }, + { "lat": 40.8221433, "lon": -73.9402632 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495822921, + "bounds": { + "minlat": 40.8476631, + "minlon": -73.9319542, + "maxlat": 40.8477366, + "maxlon": -73.9319107 + }, + "nodes": [ + 13703332497, + 13703332496, + 13703332495 + ], + "geometry": [ + { "lat": 40.8476631, "lon": -73.9319542 }, + { "lat": 40.8477260, "lon": -73.9319153 }, + { "lat": 40.8477366, "lon": -73.9319107 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495823645, + "bounds": { + "minlat": 40.8041094, + "minlon": -73.9349054, + "maxlat": 40.8041864, + "maxlon": -73.9348520 + }, + "nodes": [ + 13703361194, + 13703361193, + 13703361192 + ], + "geometry": [ + { "lat": 40.8041864, "lon": -73.9348520 }, + { "lat": 40.8041227, "lon": -73.9348963 }, + { "lat": 40.8041094, "lon": -73.9349054 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495823984, + "bounds": { + "minlat": 40.8045209, + "minlon": -73.9339966, + "maxlat": 40.8046049, + "maxlon": -73.9339298 + }, + "nodes": [ + 13703382975, + 13703382974, + 13703382973 + ], + "geometry": [ + { "lat": 40.8046049, "lon": -73.9339298 }, + { "lat": 40.8045499, "lon": -73.9339735 }, + { "lat": 40.8045209, "lon": -73.9339966 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495824289, + "bounds": { + "minlat": 40.8432558, + "minlon": -73.9235053, + "maxlat": 40.8432640, + "maxlon": -73.9232442 + }, + "nodes": [ + 13703398605, + 13703398604 + ], + "geometry": [ + { "lat": 40.8432558, "lon": -73.9235053 }, + { "lat": 40.8432640, "lon": -73.9232442 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495824290, + "bounds": { + "minlat": 40.8432640, + "minlon": -73.9232884, + "maxlat": 40.8437500, + "maxlon": -73.9232442 + }, + "nodes": [ + 13703398604, + 13703398603 + ], + "geometry": [ + { "lat": 40.8432640, "lon": -73.9232442 }, + { "lat": 40.8437500, "lon": -73.9232884 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495824291, + "bounds": { + "minlat": 40.8432558, + "minlon": -73.9237555, + "maxlat": 40.8432787, + "maxlon": -73.9235053 + }, + "nodes": [ + 13703398606, + 13703398605 + ], + "geometry": [ + { "lat": 40.8432787, "lon": -73.9237555 }, + { "lat": 40.8432558, "lon": -73.9235053 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495824392, + "bounds": { + "minlat": 40.7971298, + "minlon": -73.9319748, + "maxlat": 40.7972569, + "maxlon": -73.9316493 + }, + "nodes": [ + 13703387143, + 13703387142, + 13703387141, + 13703387140 + ], + "geometry": [ + { "lat": 40.7971298, "lon": -73.9316493 }, + { "lat": 40.7971665, "lon": -73.9317409 }, + { "lat": 40.7971864, "lon": -73.9317923 }, + { "lat": 40.7972569, "lon": -73.9319748 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495825425, + "bounds": { + "minlat": 40.7979415, + "minlon": -73.9320151, + "maxlat": 40.7984728, + "maxlon": -73.9316153 + }, + "nodes": [ + 13703389528, + 7926756864, + 13703389527, + 13703389526 + ], + "geometry": [ + { "lat": 40.7979415, "lon": -73.9320151 }, + { "lat": 40.7980312, "lon": -73.9319454 }, + { "lat": 40.7980522, "lon": -73.9319291 }, + { "lat": 40.7984728, "lon": -73.9316153 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495825981, + "bounds": { + "minlat": 40.8031600, + "minlon": -73.9344259, + "maxlat": 40.8033149, + "maxlon": -73.9340414 + }, + "nodes": [ + 7927125690, + 13703396267 + ], + "geometry": [ + { "lat": 40.8033149, "lon": -73.9344259 }, + { "lat": 40.8031600, "lon": -73.9340414 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495825982, + "bounds": { + "minlat": 40.8033032, + "minlon": -73.9342292, + "maxlat": 40.8036468, + "maxlon": -73.9339878 + }, + "nodes": [ + 13703396269, + 13703396270, + 13703396268 + ], + "geometry": [ + { "lat": 40.8036468, "lon": -73.9339878 }, + { "lat": 40.8035099, "lon": -73.9340839 }, + { "lat": 40.8033032, "lon": -73.9342292 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495825983, + "bounds": { + "minlat": 40.8035099, + "minlon": -73.9342763, + "maxlat": 40.8035896, + "maxlon": -73.9340839 + }, + "nodes": [ + 13703396271, + 13703396270 + ], + "geometry": [ + { "lat": 40.8035896, "lon": -73.9342763 }, + { "lat": 40.8035099, "lon": -73.9340839 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495826117, + "bounds": { + "minlat": 40.8373358, + "minlon": -73.9201692, + "maxlat": 40.8375848, + "maxlon": -73.9196299 + }, + "nodes": [ + 13703398759, + 13703398758, + 13703398757 + ], + "geometry": [ + { "lat": 40.8375848, "lon": -73.9201692 }, + { "lat": 40.8374861, "lon": -73.9200684 }, + { "lat": 40.8373358, "lon": -73.9196299 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495826947, + "bounds": { + "minlat": 40.8045174, + "minlon": -73.9358826, + "maxlat": 40.8045950, + "maxlon": -73.9358235 + }, + "nodes": [ + 13703423902, + 13703423901, + 13703375700 + ], + "geometry": [ + { "lat": 40.8045950, "lon": -73.9358235 }, + { "lat": 40.8045331, "lon": -73.9358715 }, + { "lat": 40.8045174, "lon": -73.9358826 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495827252, + "bounds": { + "minlat": 40.8407596, + "minlon": -73.9251673, + "maxlat": 40.8409833, + "maxlon": -73.9247254 + }, + "nodes": [ + 13703385237, + 13703385236, + 13703385235 + ], + "geometry": [ + { "lat": 40.8407917, "lon": -73.9251673 }, + { "lat": 40.8407596, "lon": -73.9248421 }, + { "lat": 40.8409833, "lon": -73.9247254 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495827653, + "bounds": { + "minlat": 40.8140457, + "minlon": -73.9376818, + "maxlat": 40.8142371, + "maxlon": -73.9370935 + }, + "nodes": [ + 13703433906, + 13703433903, + 13703433905, + 13703433904 + ], + "geometry": [ + { "lat": 40.8142125, "lon": -73.9370935 }, + { "lat": 40.8141661, "lon": -73.9371283 }, + { "lat": 40.8140457, "lon": -73.9372192 }, + { "lat": 40.8142371, "lon": -73.9376818 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495828207, + "bounds": { + "minlat": 40.8048829, + "minlon": -73.9230076, + "maxlat": 40.8052233, + "maxlon": -73.9226528 + }, + "nodes": [ + 13703412789, + 13703412788, + 13703412787, + 13703412786, + 13703412785, + 13703412784 + ], + "geometry": [ + { "lat": 40.8049526, "lon": -73.9230076 }, + { "lat": 40.8050560, "lon": -73.9229312 }, + { "lat": 40.8052233, "lon": -73.9228130 }, + { "lat": 40.8051583, "lon": -73.9226528 }, + { "lat": 40.8049882, "lon": -73.9227715 }, + { "lat": 40.8048829, "lon": -73.9228424 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495828825, + "bounds": { + "minlat": 40.8398292, + "minlon": -73.9245209, + "maxlat": 40.8399641, + "maxlon": -73.9244545 + }, + "nodes": [ + 13703415694, + 13703415693 + ], + "geometry": [ + { "lat": 40.8399641, "lon": -73.9244545 }, + { "lat": 40.8398292, "lon": -73.9245209 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495828826, + "bounds": { + "minlat": 40.8399641, + "minlon": -73.9244545, + "maxlat": 40.8400262, + "maxlon": -73.9244292 + }, + "nodes": [ + 13703415697, + 13703415694 + ], + "geometry": [ + { "lat": 40.8400262, "lon": -73.9244292 }, + { "lat": 40.8399641, "lon": -73.9244545 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495828827, + "bounds": { + "minlat": 40.8396856, + "minlon": -73.9249105, + "maxlat": 40.8398292, + "maxlon": -73.9245209 + }, + "nodes": [ + 13703415693, + 13703415696, + 13703415695 + ], + "geometry": [ + { "lat": 40.8398292, "lon": -73.9245209 }, + { "lat": 40.8396856, "lon": -73.9245974 }, + { "lat": 40.8397835, "lon": -73.9249105 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495831047, + "bounds": { + "minlat": 40.8113777, + "minlon": -73.9223490, + "maxlat": 40.8116838, + "maxlon": -73.9221431 + }, + "nodes": [ + 13703409948, + 13703409947, + 13703409946, + 13703409945, + 13703409944, + 13703409943, + 13703409942, + 13703409941 + ], + "geometry": [ + { "lat": 40.8113777, "lon": -73.9222638 }, + { "lat": 40.8114446, "lon": -73.9222156 }, + { "lat": 40.8115315, "lon": -73.9221505 }, + { "lat": 40.8115564, "lon": -73.9221431 }, + { "lat": 40.8115823, "lon": -73.9221478 }, + { "lat": 40.8116006, "lon": -73.9221606 }, + { "lat": 40.8116117, "lon": -73.9221753 }, + { "lat": 40.8116838, "lon": -73.9223490 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495832936, + "bounds": { + "minlat": 40.8130272, + "minlon": -73.9212929, + "maxlat": 40.8133580, + "maxlon": -73.9206988 + }, + "nodes": [ + 13703409987, + 13703409986, + 13703409985, + 13703409984, + 13703409983, + 13703409982 + ], + "geometry": [ + { "lat": 40.8133580, "lon": -73.9212040 }, + { "lat": 40.8132954, "lon": -73.9212526 }, + { "lat": 40.8132388, "lon": -73.9212929 }, + { "lat": 40.8130272, "lon": -73.9207873 }, + { "lat": 40.8130828, "lon": -73.9207465 }, + { "lat": 40.8131448, "lon": -73.9206988 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495834244, + "bounds": { + "minlat": 40.7839920, + "minlon": -73.9448802, + "maxlat": 40.7841580, + "maxlon": -73.9447458 + }, + "nodes": [ + 13703478421, + 13703478420, + 13703478419 + ], + "geometry": [ + { "lat": 40.7841580, "lon": -73.9447458 }, + { "lat": 40.7840986, "lon": -73.9447929 }, + { "lat": 40.7839920, "lon": -73.9448802 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495834713, + "bounds": { + "minlat": 40.7856542, + "minlon": -73.9444784, + "maxlat": 40.7858686, + "maxlon": -73.9443263 + }, + "nodes": [ + 13703487251, + 13703487250, + 13703487249 + ], + "geometry": [ + { "lat": 40.7856542, "lon": -73.9444784 }, + { "lat": 40.7857304, "lon": -73.9444229 }, + { "lat": 40.7858686, "lon": -73.9443263 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495834979, + "bounds": { + "minlat": 40.8363840, + "minlon": -73.9202723, + "maxlat": 40.8366001, + "maxlon": -73.9196897 + }, + "nodes": [ + 13703485695, + 13703485694, + 13703485693, + 13703485692 + ], + "geometry": [ + { "lat": 40.8364513, "lon": -73.9196897 }, + { "lat": 40.8364776, "lon": -73.9197665 }, + { "lat": 40.8366001, "lon": -73.9201503 }, + { "lat": 40.8363840, "lon": -73.9202723 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495834980, + "bounds": { + "minlat": 40.8371303, + "minlon": -73.9269042, + "maxlat": 40.8373005, + "maxlon": -73.9265674 + }, + "nodes": [ + 13703485698, + 13703485697, + 13703485696 + ], + "geometry": [ + { "lat": 40.8373005, "lon": -73.9269042 }, + { "lat": 40.8371973, "lon": -73.9265674 }, + { "lat": 40.8371303, "lon": -73.9266050 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495835130, + "bounds": { + "minlat": 40.8105028, + "minlon": -73.9503841, + "maxlat": 40.8106664, + "maxlon": -73.9502623 + }, + "nodes": [ + 13703485699, + 13703485700, + 13703492001 + ], + "geometry": [ + { "lat": 40.8106664, "lon": -73.9502623 }, + { "lat": 40.8106174, "lon": -73.9502996 }, + { "lat": 40.8105028, "lon": -73.9503841 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495835649, + "bounds": { + "minlat": 40.8363678, + "minlon": -73.9207242, + "maxlat": 40.8368624, + "maxlon": -73.9201861 + }, + "nodes": [ + 13703451970, + 13703451967, + 7686390446 + ], + "geometry": [ + { "lat": 40.8363678, "lon": -73.9207242 }, + { "lat": 40.8364571, "lon": -73.9204091 }, + { "lat": 40.8368624, "lon": -73.9201861 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495837451, + "bounds": { + "minlat": 40.7886203, + "minlon": -73.9405015, + "maxlat": 40.7887865, + "maxlon": -73.9401397 + }, + "nodes": [ + 13703504333, + 13703504332, + 13703504331, + 13703504330 + ], + "geometry": [ + { "lat": 40.7887865, "lon": -73.9401397 }, + { "lat": 40.7887240, "lon": -73.9401949 }, + { "lat": 40.7886630, "lon": -73.9403191 }, + { "lat": 40.7886203, "lon": -73.9405015 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495839063, + "bounds": { + "minlat": 40.8072527, + "minlon": -73.9402209, + "maxlat": 40.8076007, + "maxlon": -73.9398303 + }, + "nodes": [ + 13703510003, + 13703510004, + 13703510005, + 13703516298 + ], + "geometry": [ + { "lat": 40.8072527, "lon": -73.9402209 }, + { "lat": 40.8073145, "lon": -73.9401764 }, + { "lat": 40.8076007, "lon": -73.9399671 }, + { "lat": 40.8075444, "lon": -73.9398303 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495840489, + "bounds": { + "minlat": 40.7975099, + "minlon": -73.9442271, + "maxlat": 40.7977296, + "maxlon": -73.9439870 + }, + "nodes": [ + 13703505268, + 13703505267, + 13703505266, + 13703505265 + ], + "geometry": [ + { "lat": 40.7977296, "lon": -73.9442271 }, + { "lat": 40.7977010, "lon": -73.9441569 }, + { "lat": 40.7976317, "lon": -73.9439870 }, + { "lat": 40.7975099, "lon": -73.9440829 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495840981, + "bounds": { + "minlat": 40.8089593, + "minlon": -73.9465253, + "maxlat": 40.8090613, + "maxlon": -73.9464530 + }, + "nodes": [ + 13703520434, + 13703520433, + 13703520432 + ], + "geometry": [ + { "lat": 40.8090613, "lon": -73.9464530 }, + { "lat": 40.8090048, "lon": -73.9464941 }, + { "lat": 40.8089593, "lon": -73.9465253 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495840982, + "bounds": { + "minlat": 40.8089974, + "minlon": -73.9466155, + "maxlat": 40.8090987, + "maxlon": -73.9465417 + }, + "nodes": [ + 13703520437, + 13703520436, + 13703520435 + ], + "geometry": [ + { "lat": 40.8090987, "lon": -73.9465417 }, + { "lat": 40.8090416, "lon": -73.9465825 }, + { "lat": 40.8089974, "lon": -73.9466155 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495846168, + "bounds": { + "minlat": 40.8177681, + "minlon": -73.9522891, + "maxlat": 40.8179346, + "maxlon": -73.9518751 + }, + "nodes": [ + 7024563826, + 10173240928, + 13703560941 + ], + "geometry": [ + { "lat": 40.8177681, "lon": -73.9518751 }, + { "lat": 40.8178044, "lon": -73.9519639 }, + { "lat": 40.8179346, "lon": -73.9522891 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495846238, + "bounds": { + "minlat": 40.8245724, + "minlon": -73.9193711, + "maxlat": 40.8247409, + "maxlon": -73.9192759 + }, + "nodes": [ + 13703554998, + 13703554996 + ], + "geometry": [ + { "lat": 40.8245724, "lon": -73.9193711 }, + { "lat": 40.8247409, "lon": -73.9192759 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495846239, + "bounds": { + "minlat": 40.8244425, + "minlon": -73.9194462, + "maxlat": 40.8245724, + "maxlon": -73.9190607 + }, + "nodes": [ + 13703555000, + 13703554999, + 13703554998, + 13703554997 + ], + "geometry": [ + { "lat": 40.8244806, "lon": -73.9190607 }, + { "lat": 40.8245110, "lon": -73.9191700 }, + { "lat": 40.8245724, "lon": -73.9193711 }, + { "lat": 40.8244425, "lon": -73.9194462 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495847791, + "bounds": { + "minlat": 40.8184499, + "minlon": -73.9289016, + "maxlat": 40.8185709, + "maxlon": -73.9283804 + }, + "nodes": [ + 6117189987, + 13703577452, + 13703577451 + ], + "geometry": [ + { "lat": 40.8184499, "lon": -73.9283804 }, + { "lat": 40.8184689, "lon": -73.9284795 }, + { "lat": 40.8185709, "lon": -73.9289016 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495847864, + "bounds": { + "minlat": 40.8234810, + "minlon": -73.9193255, + "maxlat": 40.8237120, + "maxlon": -73.9189358 + }, + "nodes": [ + 13703568516, + 13703568515, + 13703568514, + 13703568513, + 13703568512 + ], + "geometry": [ + { "lat": 40.8237120, "lon": -73.9189358 }, + { "lat": 40.8236586, "lon": -73.9189623 }, + { "lat": 40.8235464, "lon": -73.9190184 }, + { "lat": 40.8236169, "lon": -73.9192544 }, + { "lat": 40.8234810, "lon": -73.9193255 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495849176, + "bounds": { + "minlat": 40.8187444, + "minlon": -73.9570576, + "maxlat": 40.8191271, + "maxlon": -73.9567769 + }, + "nodes": [ + 13703551270, + 13703551245, + 13703551269, + 13703551268 + ], + "geometry": [ + { "lat": 40.8191271, "lon": -73.9567769 }, + { "lat": 40.8190640, "lon": -73.9568226 }, + { "lat": 40.8187648, "lon": -73.9570393 }, + { "lat": 40.8187444, "lon": -73.9570576 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495849177, + "bounds": { + "minlat": 40.8190310, + "minlon": -73.9584271, + "maxlat": 40.8194231, + "maxlon": -73.9574943 + }, + "nodes": [ + 13703551247, + 13703551246 + ], + "geometry": [ + { "lat": 40.8190310, "lon": -73.9574943 }, + { "lat": 40.8194231, "lon": -73.9584271 } + ], + "tags": { + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1495849178, + "bounds": { + "minlat": 40.8186887, + "minlon": -73.9585306, + "maxlat": 40.8195617, + "maxlon": -73.9570576 + }, + "nodes": [ + 13703551268, + 13703551267, + 13703551266, + 13703551265, + 13703551264, + 13703551263, + 13703551262, + 13703551261, + 13703551260, + 13703551259, + 13703551258, + 13703551248, + 13703551257, + 13703551256, + 13703551255, + 13703551246, + 13703551254, + 13703551253, + 13703551252, + 13703551251, + 13703551250, + 13703551249, + 13703551247, + 13703551248 + ], + "geometry": [ + { "lat": 40.8187444, "lon": -73.9570576 }, + { "lat": 40.8187221, "lon": -73.9570823 }, + { "lat": 40.8187049, "lon": -73.9571144 }, + { "lat": 40.8186932, "lon": -73.9571540 }, + { "lat": 40.8186887, "lon": -73.9572016 }, + { "lat": 40.8186912, "lon": -73.9572526 }, + { "lat": 40.8187034, "lon": -73.9572962 }, + { "lat": 40.8187744, "lon": -73.9574702 }, + { "lat": 40.8187805, "lon": -73.9574772 }, + { "lat": 40.8188384, "lon": -73.9575188 }, + { "lat": 40.8188470, "lon": -73.9575295 }, + { "lat": 40.8188772, "lon": -73.9576022 }, + { "lat": 40.8192585, "lon": -73.9585209 }, + { "lat": 40.8192684, "lon": -73.9585300 }, + { "lat": 40.8192801, "lon": -73.9585306 }, + { "lat": 40.8194231, "lon": -73.9584271 }, + { "lat": 40.8195534, "lon": -73.9583328 }, + { "lat": 40.8195617, "lon": -73.9583184 }, + { "lat": 40.8195607, "lon": -73.9583010 }, + { "lat": 40.8191885, "lon": -73.9574041 }, + { "lat": 40.8191789, "lon": -73.9573978 }, + { "lat": 40.8191677, "lon": -73.9573984 }, + { "lat": 40.8190310, "lon": -73.9574943 }, + { "lat": 40.8188772, "lon": -73.9576022 } + ], + "tags": { + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1495849179, + "bounds": { + "minlat": 40.8193342, + "minlon": -73.9574919, + "maxlat": 40.8194047, + "maxlon": -73.9574360 + }, + "nodes": [ + 13703551273, + 13703551271, + 13703551272 + ], + "geometry": [ + { "lat": 40.8194047, "lon": -73.9574360 }, + { "lat": 40.8193429, "lon": -73.9574850 }, + { "lat": 40.8193342, "lon": -73.9574919 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495850308, + "bounds": { + "minlat": 40.8223975, + "minlon": -73.9353262, + "maxlat": 40.8224773, + "maxlon": -73.9351232 + }, + "nodes": [ + 8668338841, + 13703615563, + 13703615562 + ], + "geometry": [ + { "lat": 40.8223975, "lon": -73.9351232 }, + { "lat": 40.8224047, "lon": -73.9351666 }, + { "lat": 40.8224773, "lon": -73.9353262 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495851268, + "bounds": { + "minlat": 40.8217194, + "minlon": -73.9245430, + "maxlat": 40.8218293, + "maxlon": -73.9241974 + }, + "nodes": [ + 13703623417, + 13703623416, + 13703623415 + ], + "geometry": [ + { "lat": 40.8217194, "lon": -73.9241974 }, + { "lat": 40.8217399, "lon": -73.9242634 }, + { "lat": 40.8218293, "lon": -73.9245430 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495851465, + "bounds": { + "minlat": 40.8197411, + "minlon": -73.9582346, + "maxlat": 40.8198536, + "maxlon": -73.9581555 + }, + "nodes": [ + 13703625906, + 13703625904, + 13703625905 + ], + "geometry": [ + { "lat": 40.8197411, "lon": -73.9582346 }, + { "lat": 40.8197934, "lon": -73.9581978 }, + { "lat": 40.8198536, "lon": -73.9581555 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495851466, + "bounds": { + "minlat": 40.8200400, + "minlon": -73.9580418, + "maxlat": 40.8203636, + "maxlon": -73.9578109 + }, + "nodes": [ + 13703625908, + 13703625907 + ], + "geometry": [ + { "lat": 40.8203636, "lon": -73.9578109 }, + { "lat": 40.8200400, "lon": -73.9580418 } + ], + "tags": { + "highway": "service", + "layer": "1" + } +}, +{ + "type": "way", + "id": 1495851713, + "bounds": { + "minlat": 40.8222407, + "minlon": -73.9242634, + "maxlat": 40.8223656, + "maxlon": -73.9238854 + }, + "nodes": [ + 13703605961, + 13703605960, + 13703605959 + ], + "geometry": [ + { "lat": 40.8222407, "lon": -73.9238854 }, + { "lat": 40.8222647, "lon": -73.9239587 }, + { "lat": 40.8223656, "lon": -73.9242634 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495852428, + "bounds": { + "minlat": 40.8156898, + "minlon": -73.9249705, + "maxlat": 40.8158208, + "maxlon": -73.9249072 + }, + "nodes": [ + 13703620517, + 13703620516 + ], + "geometry": [ + { "lat": 40.8156898, "lon": -73.9249705 }, + { "lat": 40.8158208, "lon": -73.9249072 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495852490, + "bounds": { + "minlat": 40.8208076, + "minlon": -73.9260308, + "maxlat": 40.8210594, + "maxlon": -73.9251610 + }, + "nodes": [ + 2409018663, + 13703596951, + 13773896726, + 13703596950, + 13703596949, + 13703596948 + ], + "geometry": [ + { "lat": 40.8208076, "lon": -73.9260308 }, + { "lat": 40.8209108, "lon": -73.9257326 }, + { "lat": 40.8209685, "lon": -73.9255355 }, + { "lat": 40.8209752, "lon": -73.9255127 }, + { "lat": 40.8210250, "lon": -73.9253350 }, + { "lat": 40.8210594, "lon": -73.9251610 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1495852708, + "bounds": { + "minlat": 40.8177817, + "minlon": -73.9181733, + "maxlat": 40.8181157, + "maxlon": -73.9180179 + }, + "nodes": [ + 13703635298, + 13703635297, + 13703635296 + ], + "geometry": [ + { "lat": 40.8177817, "lon": -73.9181733 }, + { "lat": 40.8178335, "lon": -73.9181487 }, + { "lat": 40.8181157, "lon": -73.9180179 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495853212, + "bounds": { + "minlat": 40.8179379, + "minlon": -73.9159581, + "maxlat": 40.8180013, + "maxlon": -73.9159294 + }, + "nodes": [ + 13703615019, + 13703615018, + 13703615017 + ], + "geometry": [ + { "lat": 40.8180013, "lon": -73.9159294 }, + { "lat": 40.8179499, "lon": -73.9159527 }, + { "lat": 40.8179379, "lon": -73.9159581 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495854259, + "bounds": { + "minlat": 40.8142699, + "minlon": -73.9394025, + "maxlat": 40.8145304, + "maxlon": -73.9391380 + }, + "nodes": [ + 13703637758, + 13703637757, + 13703637756, + 13703637755, + 1795811317 + ], + "geometry": [ + { "lat": 40.8145304, "lon": -73.9393113 }, + { "lat": 40.8144025, "lon": -73.9394025 }, + { "lat": 40.8143883, "lon": -73.9394025 }, + { "lat": 40.8143771, "lon": -73.9393928 }, + { "lat": 40.8142699, "lon": -73.9391380 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495854647, + "bounds": { + "minlat": 40.8149343, + "minlon": -73.9387984, + "maxlat": 40.8152119, + "maxlon": -73.9386038 + }, + "nodes": [ + 13703590965, + 13703590963, + 13703590964 + ], + "geometry": [ + { "lat": 40.8149343, "lon": -73.9387984 }, + { "lat": 40.8149939, "lon": -73.9387567 }, + { "lat": 40.8152119, "lon": -73.9386038 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495854760, + "bounds": { + "minlat": 40.8184810, + "minlon": -73.9208743, + "maxlat": 40.8187917, + "maxlon": -73.9203018 + }, + "nodes": [ + 13703654695, + 13703654694, + 13703654693, + 13703654692, + 13703654691 + ], + "geometry": [ + { "lat": 40.8184810, "lon": -73.9208743 }, + { "lat": 40.8185577, "lon": -73.9208410 }, + { "lat": 40.8185907, "lon": -73.9207631 }, + { "lat": 40.8187917, "lon": -73.9206706 }, + { "lat": 40.8186983, "lon": -73.9203018 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495855731, + "bounds": { + "minlat": 40.8173438, + "minlon": -73.9464552, + "maxlat": 40.8179704, + "maxlon": -73.9460091 + }, + "nodes": [ + 13703655374, + 13703655372, + 13703655373, + 7069015231 + ], + "geometry": [ + { "lat": 40.8173438, "lon": -73.9464552 }, + { "lat": 40.8174061, "lon": -73.9464109 }, + { "lat": 40.8179209, "lon": -73.9460443 }, + { "lat": 40.8179704, "lon": -73.9460091 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495857712, + "bounds": { + "minlat": 40.7953246, + "minlon": -73.9742508, + "maxlat": 40.7956075, + "maxlon": -73.9740513 + }, + "nodes": [ + 13703644170, + 13703644169, + 13703644168 + ], + "geometry": [ + { "lat": 40.7956075, "lon": -73.9740513 }, + { "lat": 40.7955195, "lon": -73.9741098 }, + { "lat": 40.7953246, "lon": -73.9742508 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495859546, + "bounds": { + "minlat": 40.8021950, + "minlon": -73.9421588, + "maxlat": 40.8028253, + "maxlon": -73.9416951 + }, + "nodes": [ + 13703650949, + 13703650948, + 13703650947, + 13703650946 + ], + "geometry": [ + { "lat": 40.8028253, "lon": -73.9416951 }, + { "lat": 40.8027710, "lon": -73.9417324 }, + { "lat": 40.8022648, "lon": -73.9421106 }, + { "lat": 40.8021950, "lon": -73.9421588 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495859553, + "bounds": { + "minlat": 40.8021423, + "minlon": -73.9459114, + "maxlat": 40.8024438, + "maxlon": -73.9457191 + }, + "nodes": [ + 13703661289, + 13703661283, + 13703661288, + 13703661287, + 13703661286, + 13703661285, + 13703661284 + ], + "geometry": [ + { "lat": 40.8021423, "lon": -73.9459114 }, + { "lat": 40.8022056, "lon": -73.9458642 }, + { "lat": 40.8022185, "lon": -73.9458545 }, + { "lat": 40.8022327, "lon": -73.9458472 }, + { "lat": 40.8022652, "lon": -73.9458411 }, + { "lat": 40.8022768, "lon": -73.9458371 }, + { "lat": 40.8024438, "lon": -73.9457191 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1495860704, + "bounds": { + "minlat": 40.8004451, + "minlon": -73.9480937, + "maxlat": 40.8006172, + "maxlon": -73.9479688 + }, + "nodes": [ + 13703666137, + 13772992869, + 13703666136 + ], + "geometry": [ + { "lat": 40.8004451, "lon": -73.9480937 }, + { "lat": 40.8005248, "lon": -73.9480359 }, + { "lat": 40.8006172, "lon": -73.9479688 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1495860705, + "bounds": { + "minlat": 40.8005376, + "minlon": -73.9479824, + "maxlat": 40.8007201, + "maxlon": -73.9476731 + }, + "nodes": [ + 13703666136, + 13703666135, + 13703666134, + 13703666133, + 13703666132, + 13703666131, + 13703666130, + 13703666129, + 13703666128, + 13703666127, + 13703666126, + 13703666125, + 13703666124, + 13703666123, + 13703666122, + 13703666121, + 13703666136 + ], + "geometry": [ + { "lat": 40.8006172, "lon": -73.9479688 }, + { "lat": 40.8005400, "lon": -73.9477830 }, + { "lat": 40.8005376, "lon": -73.9477621 }, + { "lat": 40.8005420, "lon": -73.9477215 }, + { "lat": 40.8005621, "lon": -73.9476934 }, + { "lat": 40.8005881, "lon": -73.9476762 }, + { "lat": 40.8006145, "lon": -73.9476731 }, + { "lat": 40.8006283, "lon": -73.9476814 }, + { "lat": 40.8006405, "lon": -73.9476965 }, + { "lat": 40.8007177, "lon": -73.9478881 }, + { "lat": 40.8007201, "lon": -73.9479147 }, + { "lat": 40.8007118, "lon": -73.9479365 }, + { "lat": 40.8007004, "lon": -73.9479511 }, + { "lat": 40.8006594, "lon": -73.9479813 }, + { "lat": 40.8006421, "lon": -73.9479824 }, + { "lat": 40.8006275, "lon": -73.9479782 }, + { "lat": 40.8006172, "lon": -73.9479688 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1495864092, + "bounds": { + "minlat": 40.7994065, + "minlon": -73.9413617, + "maxlat": 40.7996736, + "maxlon": -73.9411730 + }, + "nodes": [ + 13703693547, + 13703693546, + 13703693545 + ], + "geometry": [ + { "lat": 40.7994065, "lon": -73.9413617 }, + { "lat": 40.7994601, "lon": -73.9413230 }, + { "lat": 40.7996736, "lon": -73.9411730 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1495869546, + "bounds": { + "minlat": 40.7982264, + "minlon": -73.9235581, + "maxlat": 40.7984060, + "maxlon": -73.9232188 + }, + "nodes": [ + 13703746576, + 5871373017 + ], + "geometry": [ + { "lat": 40.7984060, "lon": -73.9235581 }, + { "lat": 40.7982264, "lon": -73.9232188 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "change:lanes": "yes|not_right|not_left|yes", + "destination:lanes": "Randalls Island;Icahn Stadium|Bronx;Yankee Stadium|Queens;Airports;Citi Field|Queens;Airports;Citi Field", + "hgv": "local", + "highway": "motorway", + "lanes": "4", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "toll": "yes", + "turn:lanes": "through|slight_right|right|right", + "unsigned_ref": "NY 900G", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 1495869547, + "bounds": { + "minlat": 40.7984060, + "minlon": -73.9249306, + "maxlat": 40.7990577, + "maxlon": -73.9235581 + }, + "nodes": [ + 13703746577, + 13703746578, + 5676585287, + 6532277259, + 13703746576 + ], + "geometry": [ + { "lat": 40.7990577, "lon": -73.9249306 }, + { "lat": 40.7988927, "lon": -73.9245504 }, + { "lat": 40.7986688, "lon": -73.9240670 }, + { "lat": 40.7985296, "lon": -73.9237914 }, + { "lat": 40.7984060, "lon": -73.9235581 } + ], + "tags": { + "bridge": "yes", + "bridge:name": "Robert F. Kennedy Triborough Bridge", + "change:lanes": "no|not_left|yes", + "destination:lanes": "Randalls Island;Icahn Stadium;Bronx;Yankee Stadium|Queens;Airports;Citi Field|Queens;Airports;Citi Field", + "hgv": "local", + "highway": "motorway", + "lanes": "3", + "layer": "2", + "lit": "yes", + "maxspeed": "40 mph", + "name": "Robert F. Kennedy Bridge", + "name:etymology:wikidata": "Q25310", + "old_name": "Triborough Bridge", + "oneway": "yes", + "toll": "yes", + "turn:lanes": "through;slight_right|right|right", + "unsigned_ref": "NY 900G", + "wikidata": "Q125450", + "wikipedia": "en:Robert F. Kennedy Bridge" + } +}, +{ + "type": "way", + "id": 1496204548, + "bounds": { + "minlat": 40.7595553, + "minlon": -73.9663787, + "maxlat": 40.7597703, + "maxlon": -73.9658708 + }, + "nodes": [ + 5610570649, + 13706163321 + ], + "geometry": [ + { "lat": 40.7597703, "lon": -73.9663787 }, + { "lat": 40.7595553, "lon": -73.9658708 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lanes:backward": "2", + "lanes:forward": "2", + "lit": "yes", + "name": "East 57th Street", + "name:ru": "Восточная 57-я стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q2711129", + "wikipedia": "en:57th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1497248632, + "bounds": { + "minlat": 40.7394241, + "minlon": -73.9067915, + "maxlat": 40.7398578, + "maxlon": -73.9064374 + }, + "nodes": [ + 13712871582, + 8392882424, + 13703038178, + 13703038177, + 13712871580, + 13703038176 + ], + "geometry": [ + { "lat": 40.7398578, "lon": -73.9067915 }, + { "lat": 40.7398548, "lon": -73.9066513 }, + { "lat": 40.7394271, "lon": -73.9066574 }, + { "lat": 40.7394260, "lon": -73.9065554 }, + { "lat": 40.7394257, "lon": -73.9065367 }, + { "lat": 40.7394241, "lon": -73.9064374 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1497269027, + "bounds": { + "minlat": 40.8254042, + "minlon": -73.9557409, + "maxlat": 40.8264514, + "maxlon": -73.9550623 + }, + "nodes": [ + 1332843499, + 1332856867, + 13713083464 + ], + "geometry": [ + { "lat": 40.8264514, "lon": -73.9550623 }, + { "lat": 40.8263151, "lon": -73.9551244 }, + { "lat": 40.8254042, "lon": -73.9557409 } + ], + "tags": { + "bicycle": "no", + "highway": "service", + "layer": "2" + } +}, +{ + "type": "way", + "id": 1497278263, + "bounds": { + "minlat": 40.7649713, + "minlon": -73.9109771, + "maxlat": 40.7650473, + "maxlon": -73.9108083 + }, + "nodes": [ + 13713179777, + 13713179776, + 13713179775 + ], + "geometry": [ + { "lat": 40.7649713, "lon": -73.9108083 }, + { "lat": 40.7650027, "lon": -73.9108798 }, + { "lat": 40.7650473, "lon": -73.9109771 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497281316, + "bounds": { + "minlat": 40.7457364, + "minlon": -73.9446106, + "maxlat": 40.7457926, + "maxlon": -73.9444705 + }, + "nodes": [ + 13713202543, + 13713202542, + 13713202541 + ], + "geometry": [ + { "lat": 40.7457364, "lon": -73.9446106 }, + { "lat": 40.7457664, "lon": -73.9445343 }, + { "lat": 40.7457926, "lon": -73.9444705 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497281317, + "bounds": { + "minlat": 40.7457665, + "minlon": -73.9446306, + "maxlat": 40.7458208, + "maxlon": -73.9444916 + }, + "nodes": [ + 13713202546, + 13713202545, + 13713202544 + ], + "geometry": [ + { "lat": 40.7457665, "lon": -73.9446306 }, + { "lat": 40.7457961, "lon": -73.9445556 }, + { "lat": 40.7458208, "lon": -73.9444916 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497281318, + "bounds": { + "minlat": 40.7458526, + "minlon": -73.9446916, + "maxlat": 40.7459615, + "maxlon": -73.9444182 + }, + "nodes": [ + 13713202549, + 13713202548, + 13713202547 + ], + "geometry": [ + { "lat": 40.7458526, "lon": -73.9446916 }, + { "lat": 40.7458826, "lon": -73.9446146 }, + { "lat": 40.7459615, "lon": -73.9444182 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497286200, + "bounds": { + "minlat": 40.7103224, + "minlon": -73.9882174, + "maxlat": 40.7108875, + "maxlon": -73.9881112 + }, + "nodes": [ + 6330089036, + 8310246590, + 475485738 + ], + "geometry": [ + { "lat": 40.7108875, "lon": -73.9882174 }, + { "lat": 40.7103880, "lon": -73.9881233 }, + { "lat": 40.7103224, "lon": -73.9881112 } + ], + "tags": { + "highway": "pedestrian", + "name": "Jefferson Street", + "name:etymology:wikidata": "Q11812", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Jefferson", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "10002", + "tiger:zip_right": "10002" + } +}, +{ + "type": "way", + "id": 1497361406, + "bounds": { + "minlat": 40.7731083, + "minlon": -73.9529295, + "maxlat": 40.7732848, + "maxlon": -73.9528037 + }, + "nodes": [ + 13713862163, + 13713862162, + 13713862161 + ], + "geometry": [ + { "lat": 40.7732848, "lon": -73.9528037 }, + { "lat": 40.7732296, "lon": -73.9528448 }, + { "lat": 40.7731083, "lon": -73.9529295 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497363619, + "bounds": { + "minlat": 40.7585785, + "minlon": -73.9104265, + "maxlat": 40.7586264, + "maxlon": -73.9103146 + }, + "nodes": [ + 13713865948, + 13713865947, + 13713865946 + ], + "geometry": [ + { "lat": 40.7586264, "lon": -73.9104265 }, + { "lat": 40.7585960, "lon": -73.9103549 }, + { "lat": 40.7585785, "lon": -73.9103146 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497373053, + "bounds": { + "minlat": 40.7937415, + "minlon": -73.9471028, + "maxlat": 40.7937806, + "maxlon": -73.9470067 + }, + "nodes": [ + 13713924050, + 13713924049, + 13713924048 + ], + "geometry": [ + { "lat": 40.7937806, "lon": -73.9471028 }, + { "lat": 40.7937546, "lon": -73.9470390 }, + { "lat": 40.7937415, "lon": -73.9470067 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497395882, + "bounds": { + "minlat": 40.7440099, + "minlon": -73.9801722, + "maxlat": 40.7440866, + "maxlon": -73.9801151 + }, + "nodes": [ + 13714121222, + 13880252928, + 13714121221 + ], + "geometry": [ + { "lat": 40.7440866, "lon": -73.9801151 }, + { "lat": 40.7440241, "lon": -73.9801616 }, + { "lat": 40.7440099, "lon": -73.9801722 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497404173, + "bounds": { + "minlat": 40.7298330, + "minlon": -74.0104866, + "maxlat": 40.7305673, + "maxlon": -74.0104166 + }, + "nodes": [ + 9607729579, + 42453442 + ], + "geometry": [ + { "lat": 40.7298330, "lon": -74.0104866 }, + { "lat": 40.7305673, "lon": -74.0104166 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "yes", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1497424184, + "bounds": { + "minlat": 40.7100781, + "minlon": -74.0021033, + "maxlat": 40.7103823, + "maxlon": -74.0017161 + }, + "nodes": [ + 588719108, + 12924890406 + ], + "geometry": [ + { "lat": 40.7100781, "lon": -74.0017161 }, + { "lat": 40.7103823, "lon": -74.0021033 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bus": "no", + "expressway": "yes", + "foot": "no", + "goods": "no", + "hgv": "no", + "highway": "trunk", + "lanes": "2", + "layer": "3", + "lit": "yes", + "maxheight": "11'0\"", + "maxspeed": "30 mph", + "maxweight": "3 st", + "name": "Brooklyn Bridge", + "name:etymology:wikidata": "Q18419", + "name:ko": "브루클린 브리지", + "noref": "yes", + "oneway": "yes", + "parking:both:restriction": "no_stopping", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1497537769, + "bounds": { + "minlat": 40.7165497, + "minlon": -73.9969875, + "maxlat": 40.7187939, + "maxlon": -73.9956895 + }, + "nodes": [ + 42440804, + 8307641528, + 13701153408, + 13701153405, + 7641718032, + 42445606, + 7641718031, + 1991894114, + 7641718007, + 42452056 + ], + "geometry": [ + { "lat": 40.7165497, "lon": -73.9969875 }, + { "lat": 40.7166617, "lon": -73.9969191 }, + { "lat": 40.7169004, "lon": -73.9967676 }, + { "lat": 40.7169473, "lon": -73.9967383 }, + { "lat": 40.7175480, "lon": -73.9963581 }, + { "lat": 40.7176001, "lon": -73.9963251 }, + { "lat": 40.7176475, "lon": -73.9962953 }, + { "lat": 40.7181462, "lon": -73.9959808 }, + { "lat": 40.7187218, "lon": -73.9957217 }, + { "lat": 40.7187939, "lon": -73.9956895 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Elizabeth Street", + "name:ar": "شارع ايليزابيت", + "name:en": "Elizabeth Street", + "name:ko": "엘리자베스 스트리트", + "name:zh": "伊利沙白街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5363575", + "wikipedia": "en:Elizabeth Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1497537770, + "bounds": { + "minlat": 40.7186387, + "minlon": -73.9956895, + "maxlat": 40.7187939, + "maxlon": -73.9952482 + }, + "nodes": [ + 42452056, + 7641718023, + 12195871656 + ], + "geometry": [ + { "lat": 40.7187939, "lon": -73.9956895 }, + { "lat": 40.7187762, "lon": -73.9956394 }, + { "lat": 40.7186387, "lon": -73.9952482 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1497537771, + "bounds": { + "minlat": 40.7143695, + "minlon": -73.9928102, + "maxlat": 40.7143885, + "maxlon": -73.9925624 + }, + "nodes": [ + 5796726888, + 3212472631, + 7480301987 + ], + "geometry": [ + { "lat": 40.7143885, "lon": -73.9925624 }, + { "lat": 40.7143784, "lon": -73.9926940 }, + { "lat": 40.7143695, "lon": -73.9928102 } + ], + "tags": { + "highway": "secondary", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Division Street", + "name:ko": "디비전 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5284469", + "wikipedia": "en:Division Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1497537772, + "bounds": { + "minlat": 40.7176680, + "minlon": -73.9922172, + "maxlat": 40.7185836, + "maxlon": -73.9917491 + }, + "nodes": [ + 42429643, + 5043087532, + 8231877077, + 42429644 + ], + "geometry": [ + { "lat": 40.7176680, "lon": -73.9922172 }, + { "lat": 40.7177404, "lon": -73.9921802 }, + { "lat": 40.7185357, "lon": -73.9917736 }, + { "lat": 40.7185836, "lon": -73.9917491 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Eldridge Street", + "name:en": "Eldridge Street", + "name:ko": "엘드리지 스트리트", + "name:zh": "愛烈治街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29950420", + "wikipedia": "en:Eldridge Street" + } +}, +{ + "type": "way", + "id": 1497537773, + "bounds": { + "minlat": 40.7174356, + "minlon": -73.9922172, + "maxlat": 40.7176680, + "maxlon": -73.9914520 + }, + "nodes": [ + 42429643, + 5043087534, + 5043084247, + 42437996 + ], + "geometry": [ + { "lat": 40.7176680, "lon": -73.9922172 }, + { "lat": 40.7176495, "lon": -73.9921561 }, + { "lat": 40.7174587, "lon": -73.9915268 }, + { "lat": 40.7174356, "lon": -73.9914520 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1497537774, + "bounds": { + "minlat": 40.7169812, + "minlon": -73.9954393, + "maxlat": 40.7172902, + "maxlon": -73.9944635 + }, + "nodes": [ + 42445603, + 6369613028, + 12195871662, + 5161246305, + 42437580 + ], + "geometry": [ + { "lat": 40.7169812, "lon": -73.9944635 }, + { "lat": 40.7170081, "lon": -73.9945545 }, + { "lat": 40.7172250, "lon": -73.9952458 }, + { "lat": 40.7172402, "lon": -73.9952908 }, + { "lat": 40.7172902, "lon": -73.9954393 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Hester Street", + "name:ko": "헤스터 스트리트", + "name:ru": "Хестер-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q5746336", + "wikipedia": "en:Hester Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1497537775, + "bounds": { + "minlat": 40.7124645, + "minlon": -74.0048649, + "maxlat": 40.7124983, + "maxlon": -74.0048136 + }, + "nodes": [ + 370705004, + 9368522408, + 12554607194 + ], + "geometry": [ + { "lat": 40.7124983, "lon": -74.0048136 }, + { "lat": 40.7124757, "lon": -74.0048471 }, + { "lat": 40.7124645, "lon": -74.0048649 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "expressway": "yes", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Centre Street", + "name:ko": "센터 스트리트", + "name:ru": "Сентр-стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:right:restriction": "no_stopping", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "turn:lanes": "left;through", + "wikidata": "Q5062314", + "wikipedia": "en:Centre Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1497571646, + "bounds": { + "minlat": 40.7516791, + "minlon": -74.0080780, + "maxlat": 40.7518159, + "maxlon": -74.0080267 + }, + "nodes": [ + 12161224646, + 5690949869 + ], + "geometry": [ + { "lat": 40.7518159, "lon": -74.0080267 }, + { "lat": 40.7516791, "lon": -74.0080780 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1497594078, + "bounds": { + "minlat": 40.7345724, + "minlon": -74.0100438, + "maxlat": 40.7353026, + "maxlon": -74.0099822 + }, + "nodes": [ + 42453468, + 12161966179, + 246862852, + 42449098 + ], + "geometry": [ + { "lat": 40.7345724, "lon": -74.0100438 }, + { "lat": 40.7351835, "lon": -74.0099942 }, + { "lat": 40.7352360, "lon": -74.0099894 }, + { "lat": 40.7353026, "lon": -74.0099822 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1497599007, + "bounds": { + "minlat": 40.7209100, + "minlon": -74.0050747, + "maxlat": 40.7216847, + "maxlon": -74.0039761 + }, + "nodes": [ + 2151385470, + 2151385490, + 42440829, + 2151385497, + 4143859873 + ], + "geometry": [ + { "lat": 40.7209100, "lon": -74.0039761 }, + { "lat": 40.7213164, "lon": -74.0045469 }, + { "lat": 40.7213666, "lon": -74.0046193 }, + { "lat": 40.7214283, "lon": -74.0047134 }, + { "lat": 40.7216847, "lon": -74.0050747 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "20 mph", + "name": "Canal Street", + "name:en": "Canal Street", + "name:ko": "커낼 스트리트", + "name:ru": "Канал-стрит", + "name:zh": "堅尼街", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1032558", + "wikipedia": "en:Canal Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1497606151, + "bounds": { + "minlat": 40.7933385, + "minlon": -73.9467916, + "maxlat": 40.7934530, + "maxlon": -73.9467018 + }, + "nodes": [ + 13715611198, + 13715611197, + 13715611196 + ], + "geometry": [ + { "lat": 40.7933385, "lon": -73.9467916 }, + { "lat": 40.7934036, "lon": -73.9467409 }, + { "lat": 40.7934530, "lon": -73.9467018 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497612396, + "bounds": { + "minlat": 40.7639539, + "minlon": -73.9987162, + "maxlat": 40.7642432, + "maxlon": -73.9985035 + }, + "nodes": [ + 373941276, + 62915514, + 247119857, + 11017187937 + ], + "geometry": [ + { "lat": 40.7639539, "lon": -73.9987162 }, + { "lat": 40.7641055, "lon": -73.9986041 }, + { "lat": 40.7641531, "lon": -73.9985698 }, + { "lat": 40.7642432, "lon": -73.9985035 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "through|through|through|through;right" + } +}, +{ + "type": "way", + "id": 1497615246, + "bounds": { + "minlat": 40.7886553, + "minlon": -73.9517683, + "maxlat": 40.7887448, + "maxlon": -73.9517072 + }, + "nodes": [ + 13715726946, + 13715726945, + 13715726944 + ], + "geometry": [ + { "lat": 40.7887448, "lon": -73.9517072 }, + { "lat": 40.7886698, "lon": -73.9517593 }, + { "lat": 40.7886553, "lon": -73.9517683 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497615247, + "bounds": { + "minlat": 40.7880854, + "minlon": -73.9521504, + "maxlat": 40.7881599, + "maxlon": -73.9520951 + }, + "nodes": [ + 13715726949, + 13715726948, + 13715726947 + ], + "geometry": [ + { "lat": 40.7880854, "lon": -73.9521504 }, + { "lat": 40.7881451, "lon": -73.9521064 }, + { "lat": 40.7881599, "lon": -73.9520951 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497615927, + "bounds": { + "minlat": 40.7832615, + "minlon": -73.9470826, + "maxlat": 40.7833323, + "maxlon": -73.9470286 + }, + "nodes": [ + 13715743870, + 13715743869, + 13715743868 + ], + "geometry": [ + { "lat": 40.7833323, "lon": -73.9470286 }, + { "lat": 40.7832850, "lon": -73.9470649 }, + { "lat": 40.7832615, "lon": -73.9470826 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497630093, + "bounds": { + "minlat": 40.8696560, + "minlon": -73.9129399, + "maxlat": 40.8697581, + "maxlon": -73.9126977 + }, + "nodes": [ + 13715917441, + 13715917440, + 13715917439 + ], + "geometry": [ + { "lat": 40.8696560, "lon": -73.9126977 }, + { "lat": 40.8696959, "lon": -73.9127981 }, + { "lat": 40.8697581, "lon": -73.9129399 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497630094, + "bounds": { + "minlat": 40.8701155, + "minlon": -73.9124863, + "maxlat": 40.8701543, + "maxlon": -73.9123742 + }, + "nodes": [ + 13715917444, + 13715917443, + 13715917442 + ], + "geometry": [ + { "lat": 40.8701155, "lon": -73.9123742 }, + { "lat": 40.8701463, "lon": -73.9124645 }, + { "lat": 40.8701543, "lon": -73.9124863 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497630095, + "bounds": { + "minlat": 40.8702056, + "minlon": -73.9124203, + "maxlat": 40.8702465, + "maxlon": -73.9123108 + }, + "nodes": [ + 13715917447, + 13715917446, + 13715917445 + ], + "geometry": [ + { "lat": 40.8702056, "lon": -73.9123108 }, + { "lat": 40.8702384, "lon": -73.9123966 }, + { "lat": 40.8702465, "lon": -73.9124203 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497657161, + "bounds": { + "minlat": 40.8806741, + "minlon": -73.9165387, + "maxlat": 40.8808270, + "maxlon": -73.9163357 + }, + "nodes": [ + 13716160181, + 13716160180 + ], + "geometry": [ + { "lat": 40.8808270, "lon": -73.9163357 }, + { "lat": 40.8806741, "lon": -73.9165387 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497659545, + "bounds": { + "minlat": 40.7779713, + "minlon": -73.9463264, + "maxlat": 40.7780956, + "maxlon": -73.9462355 + }, + "nodes": [ + 13716172389, + 13716172388, + 13716172392 + ], + "geometry": [ + { "lat": 40.7779713, "lon": -73.9463264 }, + { "lat": 40.7780327, "lon": -73.9462827 }, + { "lat": 40.7780956, "lon": -73.9462355 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497659546, + "bounds": { + "minlat": 40.7780956, + "minlon": -73.9462355, + "maxlat": 40.7783141, + "maxlon": -73.9460679 + }, + "nodes": [ + 13716172392, + 13716172391, + 13716172390 + ], + "geometry": [ + { "lat": 40.7780956, "lon": -73.9462355 }, + { "lat": 40.7781461, "lon": -73.9461968 }, + { "lat": 40.7783141, "lon": -73.9460679 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497659547, + "bounds": { + "minlat": 40.7774695, + "minlon": -73.9467470, + "maxlat": 40.7775797, + "maxlon": -73.9466615 + }, + "nodes": [ + 13716172395, + 13716172394, + 13716172393 + ], + "geometry": [ + { "lat": 40.7774695, "lon": -73.9467470 }, + { "lat": 40.7775345, "lon": -73.9466961 }, + { "lat": 40.7775797, "lon": -73.9466615 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497660222, + "bounds": { + "minlat": 40.7385265, + "minlon": -74.0101340, + "maxlat": 40.7393421, + "maxlon": -74.0100400 + }, + "nodes": [ + 246648627, + 8862521339, + 11310311810, + 8862521341, + 2376384363, + 373895306, + 2376384353, + 246647959, + 8862521336, + 8862521333, + 8862521331, + 246649427 + ], + "geometry": [ + { "lat": 40.7393421, "lon": -74.0100400 }, + { "lat": 40.7392753, "lon": -74.0100615 }, + { "lat": 40.7392655, "lon": -74.0100641 }, + { "lat": 40.7391800, "lon": -74.0100889 }, + { "lat": 40.7390936, "lon": -74.0101075 }, + { "lat": 40.7390026, "lon": -74.0101210 }, + { "lat": 40.7389128, "lon": -74.0101294 }, + { "lat": 40.7388366, "lon": -74.0101335 }, + { "lat": 40.7387597, "lon": -74.0101340 }, + { "lat": 40.7386895, "lon": -74.0101313 }, + { "lat": 40.7386083, "lon": -74.0101263 }, + { "lat": 40.7385265, "lon": -74.0101203 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "yes", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1497661517, + "bounds": { + "minlat": 40.7480212, + "minlon": -74.0069815, + "maxlat": 40.7483507, + "maxlon": -74.0067390 + }, + "nodes": [ + 13716234855, + 13716234854, + 13716234853 + ], + "geometry": [ + { "lat": 40.7480212, "lon": -74.0069815 }, + { "lat": 40.7480729, "lon": -74.0069425 }, + { "lat": 40.7483507, "lon": -74.0067390 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497669027, + "bounds": { + "minlat": 40.8797482, + "minlon": -73.9099022, + "maxlat": 40.8799237, + "maxlon": -73.9094493 + }, + "nodes": [ + 7048096545, + 13716281364, + 13716281367, + 13716281365, + 13716281366 + ], + "geometry": [ + { "lat": 40.8797482, "lon": -73.9094493 }, + { "lat": 40.8797893, "lon": -73.9095072 }, + { "lat": 40.8799237, "lon": -73.9096984 }, + { "lat": 40.8798005, "lon": -73.9098526 }, + { "lat": 40.8797610, "lon": -73.9099022 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497670995, + "bounds": { + "minlat": 40.8389654, + "minlon": -73.9373988, + "maxlat": 40.8391658, + "maxlon": -73.9372541 + }, + "nodes": [ + 13716305940, + 13716305939, + 13716305938, + 13716305937, + 13716305936 + ], + "geometry": [ + { "lat": 40.8389654, "lon": -73.9373988 }, + { "lat": 40.8390171, "lon": -73.9373615 }, + { "lat": 40.8390717, "lon": -73.9373221 }, + { "lat": 40.8391164, "lon": -73.9372898 }, + { "lat": 40.8391658, "lon": -73.9372541 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497670996, + "bounds": { + "minlat": 40.8391108, + "minlon": -73.9373899, + "maxlat": 40.8392219, + "maxlon": -73.9371208 + }, + "nodes": [ + 13716305943, + 13716305936, + 13716305942, + 13716305941 + ], + "geometry": [ + { "lat": 40.8391108, "lon": -73.9371208 }, + { "lat": 40.8391658, "lon": -73.9372541 }, + { "lat": 40.8391751, "lon": -73.9372767 }, + { "lat": 40.8392219, "lon": -73.9373899 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497670997, + "bounds": { + "minlat": 40.8390614, + "minlon": -73.9372898, + "maxlat": 40.8391164, + "maxlon": -73.9371547 + }, + "nodes": [ + 13716305944, + 13716305937 + ], + "geometry": [ + { "lat": 40.8390614, "lon": -73.9371547 }, + { "lat": 40.8391164, "lon": -73.9372898 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497670998, + "bounds": { + "minlat": 40.8390178, + "minlon": -73.9373221, + "maxlat": 40.8390717, + "maxlon": -73.9371857 + }, + "nodes": [ + 13716305945, + 13716305938 + ], + "geometry": [ + { "lat": 40.8390178, "lon": -73.9371857 }, + { "lat": 40.8390717, "lon": -73.9373221 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497670999, + "bounds": { + "minlat": 40.8389628, + "minlon": -73.9373615, + "maxlat": 40.8390171, + "maxlon": -73.9372239 + }, + "nodes": [ + 13716305946, + 13716305939 + ], + "geometry": [ + { "lat": 40.8389628, "lon": -73.9372239 }, + { "lat": 40.8390171, "lon": -73.9373615 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497671000, + "bounds": { + "minlat": 40.8389112, + "minlon": -73.9375333, + "maxlat": 40.8392294, + "maxlon": -73.9370428 + }, + "nodes": [ + 13716305951, + 13716305950, + 13716305940, + 13716305949, + 13716305946, + 13716305945, + 13716305944, + 13716305943, + 13716305948, + 13716305947 + ], + "geometry": [ + { "lat": 40.8390179, "lon": -73.9375333 }, + { "lat": 40.8389726, "lon": -73.9374173 }, + { "lat": 40.8389654, "lon": -73.9373988 }, + { "lat": 40.8389112, "lon": -73.9372597 }, + { "lat": 40.8389628, "lon": -73.9372239 }, + { "lat": 40.8390178, "lon": -73.9371857 }, + { "lat": 40.8390614, "lon": -73.9371547 }, + { "lat": 40.8391108, "lon": -73.9371208 }, + { "lat": 40.8391420, "lon": -73.9370994 }, + { "lat": 40.8392294, "lon": -73.9370428 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497671029, + "bounds": { + "minlat": 40.7294307, + "minlon": -74.0107499, + "maxlat": 40.7297437, + "maxlon": -74.0107166 + }, + "nodes": [ + 246878875, + 4207143437 + ], + "geometry": [ + { "lat": 40.7297437, "lon": -74.0107166 }, + { "lat": 40.7294307, "lon": -74.0107499 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "foot": "use_sidepath", + "hgv": "designated", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1497673470, + "bounds": { + "minlat": 40.7516843, + "minlon": -74.0078501, + "maxlat": 40.7517376, + "maxlon": -74.0078289 + }, + "nodes": [ + 11929071153, + 42445314 + ], + "geometry": [ + { "lat": 40.7516843, "lon": -74.0078501 }, + { "lat": 40.7517376, "lon": -74.0078289 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1497674544, + "bounds": { + "minlat": 40.7691730, + "minlon": -73.9949103, + "maxlat": 40.7692588, + "maxlon": -73.9948504 + }, + "nodes": [ + 247122534, + 12153915852, + 9140954071 + ], + "geometry": [ + { "lat": 40.7691730, "lon": -73.9949103 }, + { "lat": 40.7692158, "lon": -73.9948795 }, + { "lat": 40.7692588, "lon": -73.9948504 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1497677624, + "bounds": { + "minlat": 40.7384356, + "minlon": -73.9732381, + "maxlat": 40.7384835, + "maxlon": -73.9731006 + }, + "nodes": [ + 13716298767, + 13716298766, + 13716298765 + ], + "geometry": [ + { "lat": 40.7384835, "lon": -73.9732381 }, + { "lat": 40.7384426, "lon": -73.9731217 }, + { "lat": 40.7384356, "lon": -73.9731006 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497688616, + "bounds": { + "minlat": 40.8813089, + "minlon": -73.9223779, + "maxlat": 40.8814014, + "maxlon": -73.9221997 + }, + "nodes": [ + 13716444756, + 13716444755 + ], + "geometry": [ + { "lat": 40.8813089, "lon": -73.9221997 }, + { "lat": 40.8814014, "lon": -73.9223779 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497688617, + "bounds": { + "minlat": 40.8814014, + "minlon": -73.9223946, + "maxlat": 40.8814102, + "maxlon": -73.9223779 + }, + "nodes": [ + 13716444755, + 13716444754 + ], + "geometry": [ + { "lat": 40.8814014, "lon": -73.9223779 }, + { "lat": 40.8814102, "lon": -73.9223946 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497688618, + "bounds": { + "minlat": 40.8811999, + "minlon": -73.9221997, + "maxlat": 40.8813089, + "maxlon": -73.9219880 + }, + "nodes": [ + 13716444757, + 13716444756 + ], + "geometry": [ + { "lat": 40.8811999, "lon": -73.9219880 }, + { "lat": 40.8813089, "lon": -73.9221997 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497856901, + "bounds": { + "minlat": 40.7144352, + "minlon": -73.9349493, + "maxlat": 40.7148951, + "maxlon": -73.9347469 + }, + "nodes": [ + 13717910542, + 13717910541, + 13717910540 + ], + "geometry": [ + { "lat": 40.7144352, "lon": -73.9347469 }, + { "lat": 40.7145188, "lon": -73.9347763 }, + { "lat": 40.7148951, "lon": -73.9349493 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497859522, + "bounds": { + "minlat": 40.7296417, + "minlon": -73.9471870, + "maxlat": 40.7300785, + "maxlon": -73.9461740 + }, + "nodes": [ + 13717879782, + 13717879781, + 13717879780, + 13717879777, + 13717879779, + 13717879778 + ], + "geometry": [ + { "lat": 40.7296417, "lon": -73.9471870 }, + { "lat": 40.7296616, "lon": -73.9471202 }, + { "lat": 40.7298493, "lon": -73.9465445 }, + { "lat": 40.7299764, "lon": -73.9466009 }, + { "lat": 40.7300673, "lon": -73.9462695 }, + { "lat": 40.7300785, "lon": -73.9461740 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497870097, + "bounds": { + "minlat": 40.7269875, + "minlon": -73.9305426, + "maxlat": 40.7273191, + "maxlon": -73.9303959 + }, + "nodes": [ + 9194902796, + 42473986 + ], + "geometry": [ + { "lat": 40.7269875, "lon": -73.9303959 }, + { "lat": 40.7273191, "lon": -73.9305426 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Scott Avenue" + } +}, +{ + "type": "way", + "id": 1497870098, + "bounds": { + "minlat": 40.7272645, + "minlon": -73.9309341, + "maxlat": 40.7276694, + "maxlon": -73.9307591 + }, + "nodes": [ + 13718039922, + 13718039921 + ], + "geometry": [ + { "lat": 40.7272645, "lon": -73.9307591 }, + { "lat": 40.7276694, "lon": -73.9309341 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497870099, + "bounds": { + "minlat": 40.7264975, + "minlon": -73.9317481, + "maxlat": 40.7270149, + "maxlon": -73.9315282 + }, + "nodes": [ + 13718039925, + 13718039923 + ], + "geometry": [ + { "lat": 40.7270149, "lon": -73.9317481 }, + { "lat": 40.7264975, "lon": -73.9315282 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497878706, + "bounds": { + "minlat": 40.8360007, + "minlon": -73.9374703, + "maxlat": 40.8362039, + "maxlon": -73.9371619 + }, + "nodes": [ + 13718113003, + 13718113002, + 13718113001, + 13718092700, + 13718092699, + 13718092698, + 13718092697, + 13718092696, + 13718092695, + 13718092694, + 13718092693, + 13718092692, + 13718092691, + 13718092690 + ], + "geometry": [ + { "lat": 40.8361668, "lon": -73.9371619 }, + { "lat": 40.8361937, "lon": -73.9372745 }, + { "lat": 40.8362039, "lon": -73.9373352 }, + { "lat": 40.8362034, "lon": -73.9373928 }, + { "lat": 40.8361948, "lon": -73.9374240 }, + { "lat": 40.8361664, "lon": -73.9374555 }, + { "lat": 40.8361458, "lon": -73.9374649 }, + { "lat": 40.8361230, "lon": -73.9374703 }, + { "lat": 40.8361014, "lon": -73.9374653 }, + { "lat": 40.8360806, "lon": -73.9374539 }, + { "lat": 40.8360624, "lon": -73.9374337 }, + { "lat": 40.8360436, "lon": -73.9374015 }, + { "lat": 40.8360277, "lon": -73.9373451 }, + { "lat": 40.8360007, "lon": -73.9372394 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497886749, + "bounds": { + "minlat": 40.7703038, + "minlon": -73.9140871, + "maxlat": 40.7704516, + "maxlon": -73.9137740 + }, + "nodes": [ + 13718151040, + 13718151039, + 13718151038 + ], + "geometry": [ + { "lat": 40.7704516, "lon": -73.9140871 }, + { "lat": 40.7704196, "lon": -73.9140164 }, + { "lat": 40.7703038, "lon": -73.9137740 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497887336, + "bounds": { + "minlat": 40.7507935, + "minlon": -73.9861431, + "maxlat": 40.7508645, + "maxlon": -73.9860917 + }, + "nodes": [ + 13718124375, + 13718124374, + 13718124373 + ], + "geometry": [ + { "lat": 40.7507935, "lon": -73.9861431 }, + { "lat": 40.7508440, "lon": -73.9861070 }, + { "lat": 40.7508645, "lon": -73.9860917 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497888332, + "bounds": { + "minlat": 40.7705593, + "minlon": -73.9139013, + "maxlat": 40.7706868, + "maxlon": -73.9136248 + }, + "nodes": [ + 13718136980, + 13718136979, + 13718136978 + ], + "geometry": [ + { "lat": 40.7706868, "lon": -73.9139013 }, + { "lat": 40.7706542, "lon": -73.9138272 }, + { "lat": 40.7705593, "lon": -73.9136248 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497888333, + "bounds": { + "minlat": 40.7704295, + "minlon": -73.9139956, + "maxlat": 40.7705679, + "maxlon": -73.9137022 + }, + "nodes": [ + 13718136983, + 13718136982, + 13718136981 + ], + "geometry": [ + { "lat": 40.7705679, "lon": -73.9139956 }, + { "lat": 40.7705340, "lon": -73.9139242 }, + { "lat": 40.7704295, "lon": -73.9137022 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497888334, + "bounds": { + "minlat": 40.7706090, + "minlon": -73.9142393, + "maxlat": 40.7707309, + "maxlon": -73.9139630 + }, + "nodes": [ + 13718136986, + 13718136985, + 13718136984 + ], + "geometry": [ + { "lat": 40.7706090, "lon": -73.9139630 }, + { "lat": 40.7706321, "lon": -73.9140183 }, + { "lat": 40.7707309, "lon": -73.9142393 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497888335, + "bounds": { + "minlat": 40.7704913, + "minlon": -73.9143453, + "maxlat": 40.7706192, + "maxlon": -73.9140564 + }, + "nodes": [ + 13718136989, + 13718136988, + 13718136987 + ], + "geometry": [ + { "lat": 40.7704913, "lon": -73.9140564 }, + { "lat": 40.7705166, "lon": -73.9141148 }, + { "lat": 40.7706192, "lon": -73.9143453 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497888336, + "bounds": { + "minlat": 40.7703693, + "minlon": -73.9144311, + "maxlat": 40.7704983, + "maxlon": -73.9141514 + }, + "nodes": [ + 13718136992, + 13718136991, + 13718136990 + ], + "geometry": [ + { "lat": 40.7703693, "lon": -73.9141514 }, + { "lat": 40.7703984, "lon": -73.9142135 }, + { "lat": 40.7704983, "lon": -73.9144311 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497888337, + "bounds": { + "minlat": 40.7702038, + "minlon": -73.9141742, + "maxlat": 40.7703404, + "maxlon": -73.9138903 + }, + "nodes": [ + 13718136995, + 13718136994, + 13718136993 + ], + "geometry": [ + { "lat": 40.7703404, "lon": -73.9141742 }, + { "lat": 40.7703083, "lon": -73.9141069 }, + { "lat": 40.7702038, "lon": -73.9138903 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497888338, + "bounds": { + "minlat": 40.7702483, + "minlon": -73.9145277, + "maxlat": 40.7703846, + "maxlon": -73.9142465 + }, + "nodes": [ + 13718136998, + 13718136997, + 13718136996 + ], + "geometry": [ + { "lat": 40.7702483, "lon": -73.9142465 }, + { "lat": 40.7702798, "lon": -73.9143125 }, + { "lat": 40.7703846, "lon": -73.9145277 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497888339, + "bounds": { + "minlat": 40.7701315, + "minlon": -73.9146490, + "maxlat": 40.7702784, + "maxlon": -73.9143425 + }, + "nodes": [ + 13718182501, + 13718137000, + 13718136999 + ], + "geometry": [ + { "lat": 40.7701315, "lon": -73.9143425 }, + { "lat": 40.7701638, "lon": -73.9144094 }, + { "lat": 40.7702784, "lon": -73.9146490 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497889395, + "bounds": { + "minlat": 40.7557581, + "minlon": -73.9783562, + "maxlat": 40.7558485, + "maxlon": -73.9782873 + }, + "nodes": [ + 13718155144, + 13718155143, + 13718155142 + ], + "geometry": [ + { "lat": 40.7557581, "lon": -73.9783562 }, + { "lat": 40.7558107, "lon": -73.9783157 }, + { "lat": 40.7558485, "lon": -73.9782873 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497889396, + "bounds": { + "minlat": 40.7557985, + "minlon": -73.9784488, + "maxlat": 40.7558874, + "maxlon": -73.9783787 + }, + "nodes": [ + 13718155147, + 13718155146, + 13718155145 + ], + "geometry": [ + { "lat": 40.7557985, "lon": -73.9784488 }, + { "lat": 40.7558496, "lon": -73.9784091 }, + { "lat": 40.7558874, "lon": -73.9783787 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497889397, + "bounds": { + "minlat": 40.7557794, + "minlon": -73.9784037, + "maxlat": 40.7558682, + "maxlon": -73.9783338 + }, + "nodes": [ + 13718155150, + 13718155149, + 13718155148 + ], + "geometry": [ + { "lat": 40.7557794, "lon": -73.9784037 }, + { "lat": 40.7558301, "lon": -73.9783647 }, + { "lat": 40.7558682, "lon": -73.9783338 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497895795, + "bounds": { + "minlat": 40.7051215, + "minlon": -73.9437738, + "maxlat": 40.7053961, + "maxlon": -73.9434977 + }, + "nodes": [ + 13718214747, + 13718214746, + 13718214745, + 13718214744 + ], + "geometry": [ + { "lat": 40.7051215, "lon": -73.9434977 }, + { "lat": 40.7051885, "lon": -73.9435109 }, + { "lat": 40.7053961, "lon": -73.9435431 }, + { "lat": 40.7053717, "lon": -73.9437738 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497900400, + "bounds": { + "minlat": 40.7051850, + "minlon": -73.9732526, + "maxlat": 40.7060326, + "maxlon": -73.9722387 + }, + "nodes": [ + 7710968259, + 13718284696, + 13718284695, + 13718284694, + 13718284693, + 13718284692 + ], + "geometry": [ + { "lat": 40.7057248, "lon": -73.9722387 }, + { "lat": 40.7060326, "lon": -73.9726243 }, + { "lat": 40.7058455, "lon": -73.9730018 }, + { "lat": 40.7056330, "lon": -73.9732419 }, + { "lat": 40.7055314, "lon": -73.9732526 }, + { "lat": 40.7051850, "lon": -73.9726951 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497902504, + "bounds": { + "minlat": 40.7586206, + "minlon": -73.9698663, + "maxlat": 40.7587001, + "maxlon": -73.9698082 + }, + "nodes": [ + 13718252569, + 13718252568, + 13718252567 + ], + "geometry": [ + { "lat": 40.7587001, "lon": -73.9698082 }, + { "lat": 40.7586344, "lon": -73.9698567 }, + { "lat": 40.7586206, "lon": -73.9698663 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1497982671, + "bounds": { + "minlat": 40.7096105, + "minlon": -74.0148250, + "maxlat": 40.7096771, + "maxlon": -74.0147978 + }, + "nodes": [ + 11413750565, + 42437396 + ], + "geometry": [ + { "lat": 40.7096105, "lon": -74.0148250 }, + { "lat": 40.7096771, "lon": -74.0147978 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "through|through|through|through;right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1497982672, + "bounds": { + "minlat": 40.7094404, + "minlon": -74.0148836, + "maxlat": 40.7096105, + "maxlon": -74.0148250 + }, + "nodes": [ + 42452314, + 11413750565 + ], + "geometry": [ + { "lat": 40.7094404, "lon": -74.0148836 }, + { "lat": 40.7096105, "lon": -74.0148250 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "expressway": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "parking:right:restriction": "no_standing", + "ref": "NY 9A", + "sidewalk:right": "separate", + "surface": "concrete", + "turn:lanes": "through|through|through|through;right", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1498021894, + "bounds": { + "minlat": 40.7353026, + "minlon": -74.0099822, + "maxlat": 40.7353263, + "maxlon": -74.0097744 + }, + "nodes": [ + 12162436911, + 4872761060, + 42449098 + ], + "geometry": [ + { "lat": 40.7353263, "lon": -74.0097744 }, + { "lat": 40.7353181, "lon": -74.0098404 }, + { "lat": 40.7353026, "lon": -74.0099822 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 11th Street", + "name:ru": "Западная 11-я стрит", + "name_1": "West 11 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498035786, + "bounds": { + "minlat": 40.7517376, + "minlon": -74.0078289, + "maxlat": 40.7524138, + "maxlon": -74.0075760 + }, + "nodes": [ + 42445314, + 42434827 + ], + "geometry": [ + { "lat": 40.7517376, "lon": -74.0078289 }, + { "lat": 40.7524138, "lon": -74.0075760 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1498122117, + "bounds": { + "minlat": 40.7324206, + "minlon": -74.0102359, + "maxlat": 40.7331430, + "maxlon": -74.0101693 + }, + "nodes": [ + 42436903, + 12288258533, + 4872777176, + 42453457 + ], + "geometry": [ + { "lat": 40.7324206, "lon": -74.0102359 }, + { "lat": 40.7325233, "lon": -74.0102269 }, + { "lat": 40.7325777, "lon": -74.0102222 }, + { "lat": 40.7331430, "lon": -74.0101693 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1498130918, + "bounds": { + "minlat": 40.8693667, + "minlon": -73.9210958, + "maxlat": 40.8695339, + "maxlon": -73.9206710 + }, + "nodes": [ + 13720168641, + 13720168643, + 13720168642 + ], + "geometry": [ + { "lat": 40.8695339, "lon": -73.9206710 }, + { "lat": 40.8694957, "lon": -73.9207681 }, + { "lat": 40.8693667, "lon": -73.9210958 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1498132905, + "bounds": { + "minlat": 40.7357900, + "minlon": -73.9477282, + "maxlat": 40.7361267, + "maxlon": -73.9475517 + }, + "nodes": [ + 13720153235, + 13720153236 + ], + "geometry": [ + { "lat": 40.7357900, "lon": -73.9477282 }, + { "lat": 40.7361267, "lon": -73.9475517 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1498133966, + "bounds": { + "minlat": 40.8173583, + "minlon": -73.9253935, + "maxlat": 40.8175164, + "maxlon": -73.9251769 + }, + "nodes": [ + 12110035536, + 13720199532, + 13720199533, + 13720199534, + 13720199535, + 13720199536 + ], + "geometry": [ + { "lat": 40.8173583, "lon": -73.9253935 }, + { "lat": 40.8173733, "lon": -73.9253287 }, + { "lat": 40.8173927, "lon": -73.9252750 }, + { "lat": 40.8174068, "lon": -73.9252411 }, + { "lat": 40.8174369, "lon": -73.9252096 }, + { "lat": 40.8175164, "lon": -73.9251769 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1498134619, + "bounds": { + "minlat": 40.8618018, + "minlon": -73.9233576, + "maxlat": 40.8622353, + "maxlon": -73.9228749 + }, + "nodes": [ + 13720151071, + 13720151072, + 13720151073, + 13720151074, + 13720151075, + 13720151076, + 13720151077 + ], + "geometry": [ + { "lat": 40.8622353, "lon": -73.9230261 }, + { "lat": 40.8621003, "lon": -73.9229244 }, + { "lat": 40.8620828, "lon": -73.9229131 }, + { "lat": 40.8620115, "lon": -73.9228781 }, + { "lat": 40.8619939, "lon": -73.9228749 }, + { "lat": 40.8619763, "lon": -73.9228898 }, + { "lat": 40.8618018, "lon": -73.9233576 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1498135653, + "bounds": { + "minlat": 40.8023219, + "minlon": -73.9267655, + "maxlat": 40.8048684, + "maxlon": -73.9207127 + }, + "nodes": [ + 9047273967, + 13720203121, + 13720203122, + 13720203123 + ], + "geometry": [ + { "lat": 40.8023219, "lon": -73.9207127 }, + { "lat": 40.8033358, "lon": -73.9230794 }, + { "lat": 40.8042876, "lon": -73.9253647 }, + { "lat": 40.8048684, "lon": -73.9267655 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1498166888, + "bounds": { + "minlat": 40.7229787, + "minlon": -74.0115025, + "maxlat": 40.7236301, + "maxlon": -74.0113755 + }, + "nodes": [ + 4207143421, + 42436024 + ], + "geometry": [ + { "lat": 40.7229787, "lon": -74.0115025 }, + { "lat": 40.7236301, "lon": -74.0113755 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "asphalt", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1498180822, + "bounds": { + "minlat": 40.7338609, + "minlon": -74.0101038, + "maxlat": 40.7340921, + "maxlon": -74.0085809 + }, + "nodes": [ + 8307642131, + 12161966193, + 3874650195, + 12161966194, + 12161966195, + 12161966196, + 42452613 + ], + "geometry": [ + { "lat": 40.7340921, "lon": -74.0085809 }, + { "lat": 40.7338820, "lon": -74.0099034 }, + { "lat": 40.7338723, "lon": -74.0099681 }, + { "lat": 40.7338670, "lon": -74.0100041 }, + { "lat": 40.7338635, "lon": -74.0100367 }, + { "lat": 40.7338613, "lon": -74.0100716 }, + { "lat": 40.7338609, "lon": -74.0101038 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Charles Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q29167331", + "wikipedia": "en:Charles Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498180823, + "bounds": { + "minlat": 40.7338609, + "minlon": -74.0101038, + "maxlat": 40.7342172, + "maxlon": -74.0100767 + }, + "nodes": [ + 42452613, + 246874388, + 42442081 + ], + "geometry": [ + { "lat": 40.7338609, "lon": -74.0101038 }, + { "lat": 40.7339600, "lon": -74.0100969 }, + { "lat": 40.7342172, "lon": -74.0100767 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1498189224, + "bounds": { + "minlat": 40.7001642, + "minlon": -73.9908135, + "maxlat": 40.7002464, + "maxlon": -73.9907808 + }, + "nodes": [ + 248606857, + 248606886 + ], + "geometry": [ + { "lat": 40.7001642, "lon": -73.9908135 }, + { "lat": 40.7002464, "lon": -73.9907808 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Cadman Plaza West", + "name:etymology:wikidata": "Q5600833", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Cadman", + "tiger:name_direction_suffix": "W", + "tiger:name_type": "Plz", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1498215518, + "bounds": { + "minlat": 40.7140491, + "minlon": -73.9169840, + "maxlat": 40.7144982, + "maxlon": -73.9162381 + }, + "nodes": [ + 7706126098, + 13720829946, + 13720829947, + 13720829948, + 13720829949, + 13720829950, + 13720829951, + 13720829952, + 13720829953, + 13720829954, + 13720829955, + 13720829956 + ], + "geometry": [ + { "lat": 40.7144982, "lon": -73.9169840 }, + { "lat": 40.7144650, "lon": -73.9169262 }, + { "lat": 40.7144400, "lon": -73.9168961 }, + { "lat": 40.7144023, "lon": -73.9168595 }, + { "lat": 40.7143410, "lon": -73.9167956 }, + { "lat": 40.7142933, "lon": -73.9167448 }, + { "lat": 40.7142604, "lon": -73.9166955 }, + { "lat": 40.7142196, "lon": -73.9166339 }, + { "lat": 40.7141933, "lon": -73.9165888 }, + { "lat": 40.7141538, "lon": -73.9165058 }, + { "lat": 40.7141166, "lon": -73.9164221 }, + { "lat": 40.7140491, "lon": -73.9162381 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1498218733, + "bounds": { + "minlat": 40.7342172, + "minlon": -74.0100767, + "maxlat": 40.7345724, + "maxlon": -74.0100438 + }, + "nodes": [ + 42442081, + 42453468 + ], + "geometry": [ + { "lat": 40.7342172, "lon": -74.0100767 }, + { "lat": 40.7345724, "lon": -74.0100438 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1498222985, + "bounds": { + "minlat": 40.7369804, + "minlon": -74.0098396, + "maxlat": 40.7375670, + "maxlon": -74.0098052 + }, + "nodes": [ + 42453472, + 12161966161, + 12161966160, + 12161966156, + 246882949, + 42439099 + ], + "geometry": [ + { "lat": 40.7369804, "lon": -74.0098396 }, + { "lat": 40.7371935, "lon": -74.0098237 }, + { "lat": 40.7373286, "lon": -74.0098114 }, + { "lat": 40.7374291, "lon": -74.0098072 }, + { "lat": 40.7374787, "lon": -74.0098052 }, + { "lat": 40.7375670, "lon": -74.0098067 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1498229024, + "bounds": { + "minlat": 40.7923529, + "minlon": -73.9367868, + "maxlat": 40.7923959, + "maxlon": -73.9366868 + }, + "nodes": [ + 42426805, + 12892782441 + ], + "geometry": [ + { "lat": 40.7923959, "lon": -73.9367868 }, + { "lat": 40.7923529, "lon": -73.9366868 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 111th Street", + "name:ru": "Восточная 111-я стрит", + "oneway": "yes", + "oneway:bicycle": "no", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498252593, + "bounds": { + "minlat": 40.7461009, + "minlon": -74.0080044, + "maxlat": 40.7465997, + "maxlon": -74.0079187 + }, + "nodes": [ + 4872623863, + 12098102324 + ], + "geometry": [ + { "lat": 40.7461009, "lon": -74.0080044 }, + { "lat": 40.7465997, "lon": -74.0079187 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "change": "yes", + "hgv": "designated", + "highway": "trunk", + "lane_markings": "yes", + "lanes": "3", + "maxspeed": "30 mph", + "name": "11th Avenue", + "name:ru": "11-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q130405", + "wikipedia": "en:Eleventh Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498252597, + "bounds": { + "minlat": 40.7823917, + "minlon": -73.9694396, + "maxlat": 40.7825726, + "maxlon": -73.9693772 + }, + "nodes": [ + 42424850, + 4332540832, + 9908460402, + 2059303993 + ], + "geometry": [ + { "lat": 40.7825726, "lon": -73.9693772 }, + { "lat": 40.7825173, "lon": -73.9694019 }, + { "lat": 40.7824559, "lon": -73.9694230 }, + { "lat": 40.7823917, "lon": -73.9694396 } + ], + "tags": { + "access:conditional": "no @ (01:00-06:00)", + "bicycle": "designated", + "cycleway:oneway": "yes", + "cycleway:right": "track", + "hgv": "no", + "highway": "service", + "lanes": "1", + "lit": "yes", + "maxspeed": "20 mph", + "motor_vehicle": "private", + "name": "West Drive", + "oneway": "yes", + "oneway:foot": "no", + "segregated": "yes", + "surface": "asphalt", + "turn:lanes": "through" + } +}, +{ + "type": "way", + "id": 1498275637, + "bounds": { + "minlat": 40.7369722, + "minlon": -74.0098396, + "maxlat": 40.7369804, + "maxlon": -74.0083557 + }, + "nodes": [ + 11608896515, + 4599130015, + 3874650204, + 42453472 + ], + "geometry": [ + { "lat": 40.7369722, "lon": -74.0083557 }, + { "lat": 40.7369768, "lon": -74.0096399 }, + { "lat": 40.7369773, "lon": -74.0096973 }, + { "lat": 40.7369804, "lon": -74.0098396 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Bethune Street", + "name:etymology:wikidata": "Q1690802", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498275638, + "bounds": { + "minlat": 40.7359907, + "minlon": -74.0099218, + "maxlat": 40.7369804, + "maxlon": -74.0098396 + }, + "nodes": [ + 42440946, + 42453472 + ], + "geometry": [ + { "lat": 40.7359907, "lon": -74.0099218 }, + { "lat": 40.7369804, "lon": -74.0098396 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1498275639, + "bounds": { + "minlat": 40.7353026, + "minlon": -74.0099822, + "maxlat": 40.7359907, + "maxlon": -74.0099218 + }, + "nodes": [ + 42449098, + 246862616, + 42440946 + ], + "geometry": [ + { "lat": 40.7353026, "lon": -74.0099822 }, + { "lat": 40.7354081, "lon": -74.0099731 }, + { "lat": 40.7359907, "lon": -74.0099218 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "cycleway:both": "no", + "hgv": "designated", + "highway": "trunk", + "lanes": "4", + "lit": "yes", + "maxspeed": "30 mph", + "name": "West Street", + "name:ko": "웨스트 스트리트", + "name:ru": "Вест-стрит", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "surface": "concrete", + "wikidata": "Q18812384" + } +}, +{ + "type": "way", + "id": 1498928836, + "bounds": { + "minlat": 40.7602364, + "minlon": -73.9716131, + "maxlat": 40.7602895, + "maxlon": -73.9714878 + }, + "nodes": [ + 9140924704, + 42448338 + ], + "geometry": [ + { "lat": 40.7602364, "lon": -73.9714878 }, + { "lat": 40.7602895, "lon": -73.9716131 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 55th Street", + "name:ru": "Восточная 55-я стрит", + "name_1": "East 55 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498928837, + "bounds": { + "minlat": 40.7596371, + "minlon": -73.9704506, + "maxlat": 40.7597974, + "maxlon": -73.9700720 + }, + "nodes": [ + 4862610026, + 10165922675, + 8254199417 + ], + "geometry": [ + { "lat": 40.7596371, "lon": -73.9700720 }, + { "lat": 40.7596858, "lon": -73.9701868 }, + { "lat": 40.7597974, "lon": -73.9704506 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 55th Street", + "name:ru": "Восточная 55-я стрит", + "name_1": "East 55 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498928838, + "bounds": { + "minlat": 40.7602895, + "minlon": -73.9717840, + "maxlat": 40.7603618, + "maxlon": -73.9716131 + }, + "nodes": [ + 42448338, + 596775907 + ], + "geometry": [ + { "lat": 40.7602895, "lon": -73.9716131 }, + { "lat": 40.7603618, "lon": -73.9717840 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "foot": "use_sidepath", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 55th Street", + "name:ru": "Восточная 55-я стрит", + "name_1": "East 55 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "9", + "wikidata": "Q2817506", + "wikipedia": "en:55th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498928839, + "bounds": { + "minlat": 40.7601854, + "minlon": -73.9716885, + "maxlat": 40.7602895, + "maxlon": -73.9716131 + }, + "nodes": [ + 12834723234, + 10168547785, + 42448338 + ], + "geometry": [ + { "lat": 40.7601854, "lon": -73.9716885 }, + { "lat": 40.7602226, "lon": -73.9716616 }, + { "lat": 40.7602895, "lon": -73.9716131 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1498928840, + "bounds": { + "minlat": 40.7602895, + "minlon": -73.9716131, + "maxlat": 40.7609096, + "maxlon": -73.9711599 + }, + "nodes": [ + 42448338, + 10125228009, + 12834723230, + 10125228007, + 42443613 + ], + "geometry": [ + { "lat": 40.7602895, "lon": -73.9716131 }, + { "lat": 40.7603407, "lon": -73.9715757 }, + { "lat": 40.7608083, "lon": -73.9712341 }, + { "lat": 40.7608505, "lon": -73.9712033 }, + { "lat": 40.7609096, "lon": -73.9711599 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1498931297, + "bounds": { + "minlat": 40.7284691, + "minlon": -73.9942044, + "maxlat": 40.7290090, + "maxlon": -73.9937470 + }, + "nodes": [ + 42428464, + 8309479143, + 8309479127 + ], + "geometry": [ + { "lat": 40.7290090, "lon": -73.9937470 }, + { "lat": 40.7289535, "lon": -73.9937940 }, + { "lat": 40.7284691, "lon": -73.9942044 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498931298, + "bounds": { + "minlat": 40.7290090, + "minlon": -73.9937470, + "maxlat": 40.7295283, + "maxlon": -73.9933066 + }, + "nodes": [ + 8309479149, + 4755898682, + 8309479142, + 42428464 + ], + "geometry": [ + { "lat": 40.7295283, "lon": -73.9933066 }, + { "lat": 40.7293228, "lon": -73.9934809 }, + { "lat": 40.7290717, "lon": -73.9936938 }, + { "lat": 40.7290090, "lon": -73.9937470 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498931299, + "bounds": { + "minlat": 40.7300149, + "minlon": -73.9928959, + "maxlat": 40.7306005, + "maxlon": -73.9924142 + }, + "nodes": [ + 42428473, + 8309479165, + 8309479158, + 42428471, + 8309479159 + ], + "geometry": [ + { "lat": 40.7306005, "lon": -73.9924142 }, + { "lat": 40.7305514, "lon": -73.9924598 }, + { "lat": 40.7301801, "lon": -73.9927564 }, + { "lat": 40.7300800, "lon": -73.9928410 }, + { "lat": 40.7300149, "lon": -73.9928959 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498931300, + "bounds": { + "minlat": 40.7290090, + "minlon": -73.9944988, + "maxlat": 40.7293820, + "maxlon": -73.9937470 + }, + "nodes": [ + 42428464, + 8309479144, + 8309479134 + ], + "geometry": [ + { "lat": 40.7290090, "lon": -73.9937470 }, + { "lat": 40.7290555, "lon": -73.9938425 }, + { "lat": 40.7293820, "lon": -73.9944988 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Washington Place", + "name:etymology:wikidata": "Q909592", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498940125, + "bounds": { + "minlat": 40.7636731, + "minlon": -73.9583002, + "maxlat": 40.7646145, + "maxlon": -73.9560793 + }, + "nodes": [ + 42427985, + 7837088635, + 9030177787, + 42437451 + ], + "geometry": [ + { "lat": 40.7636731, "lon": -73.9560793 }, + { "lat": 40.7637247, "lon": -73.9561992 }, + { "lat": 40.7645661, "lon": -73.9581840 }, + { "lat": 40.7646145, "lon": -73.9583002 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 67th Street", + "name:ru": "Восточная 67-я стрит", + "name_1": "East 67 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498943994, + "bounds": { + "minlat": 40.7246266, + "minlon": -73.9949482, + "maxlat": 40.7248899, + "maxlon": -73.9942080 + }, + "nodes": [ + 1918039869, + 5829779515, + 5829779489, + 1918039901 + ], + "geometry": [ + { "lat": 40.7248899, "lon": -73.9949482 }, + { "lat": 40.7248651, "lon": -73.9948765 }, + { "lat": 40.7246532, "lon": -73.9942826 }, + { "lat": 40.7246266, "lon": -73.9942080 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1498943995, + "bounds": { + "minlat": 40.7248899, + "minlon": -73.9953692, + "maxlat": 40.7250344, + "maxlon": -73.9949482 + }, + "nodes": [ + 1918039897, + 5799037566, + 5829779504, + 1918039869 + ], + "geometry": [ + { "lat": 40.7250344, "lon": -73.9953692 }, + { "lat": 40.7250013, "lon": -73.9952579 }, + { "lat": 40.7249112, "lon": -73.9950059 }, + { "lat": 40.7248899, "lon": -73.9949482 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1498943996, + "bounds": { + "minlat": 40.7248899, + "minlon": -73.9949482, + "maxlat": 40.7250225, + "maxlon": -73.9948867 + }, + "nodes": [ + 1918039869, + 42435491 + ], + "geometry": [ + { "lat": 40.7248899, "lon": -73.9949482 }, + { "lat": 40.7250225, "lon": -73.9948867 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Mulberry Street", + "name:en": "Mulberry Street", + "name:ko": "멀베리 스트리트", + "name:ru": "Малберри-стрит", + "name:zh": "摩比利街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1934308", + "wikipedia": "en:Mulberry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498943997, + "bounds": { + "minlat": 40.7250225, + "minlon": -73.9948867, + "maxlat": 40.7258473, + "maxlon": -73.9944754 + }, + "nodes": [ + 42435491, + 5829779498, + 12187431484, + 13791950284, + 12187431486, + 8309479011, + 1692433914 + ], + "geometry": [ + { "lat": 40.7250225, "lon": -73.9948867 }, + { "lat": 40.7251001, "lon": -73.9948505 }, + { "lat": 40.7251440, "lon": -73.9948303 }, + { "lat": 40.7253057, "lon": -73.9947493 }, + { "lat": 40.7257563, "lon": -73.9945236 }, + { "lat": 40.7257944, "lon": -73.9945035 }, + { "lat": 40.7258473, "lon": -73.9944754 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Mulberry Street", + "name:en": "Mulberry Street", + "name:ko": "멀베리 스트리트", + "name:ru": "Малберри-стрит", + "name:zh": "摩比利街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1934308", + "wikipedia": "en:Mulberry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498943998, + "bounds": { + "minlat": 40.7248113, + "minlon": -73.9949846, + "maxlat": 40.7248899, + "maxlon": -73.9949482 + }, + "nodes": [ + 5829779493, + 1918039869 + ], + "geometry": [ + { "lat": 40.7248113, "lon": -73.9949846 }, + { "lat": 40.7248899, "lon": -73.9949482 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Mulberry Street", + "name:en": "Mulberry Street", + "name:ko": "멀베리 스트리트", + "name:ru": "Малберри-стрит", + "name:zh": "摩比利街", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1934308", + "wikipedia": "en:Mulberry Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498945268, + "bounds": { + "minlat": 40.7627398, + "minlon": -73.9620616, + "maxlat": 40.7637382, + "maxlon": -73.9596948 + }, + "nodes": [ + 42431659, + 7064022542, + 8851344394, + 4918486815, + 42431661 + ], + "geometry": [ + { "lat": 40.7637382, "lon": -73.9620616 }, + { "lat": 40.7637028, "lon": -73.9619776 }, + { "lat": 40.7636871, "lon": -73.9619403 }, + { "lat": 40.7627989, "lon": -73.9598351 }, + { "lat": 40.7627398, "lon": -73.9596948 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "name": "East 64th Street", + "name:ru": "Восточная 64-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498946283, + "bounds": { + "minlat": 40.7410390, + "minlon": -73.9343110, + "maxlat": 40.7418998, + "maxlon": -73.9341355 + }, + "nodes": [ + 7127557278, + 9981973344, + 42866368 + ], + "geometry": [ + { "lat": 40.7418998, "lon": -73.9341355 }, + { "lat": 40.7411221, "lon": -73.9342940 }, + { "lat": 40.7410390, "lon": -73.9343110 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Van Dam Street", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498949378, + "bounds": { + "minlat": 40.7704340, + "minlon": -73.9602540, + "maxlat": 40.7704966, + "maxlon": -73.9601029 + }, + "nodes": [ + 42438800, + 10043925178 + ], + "geometry": [ + { "lat": 40.7704340, "lon": -73.9601029 }, + { "lat": 40.7704966, "lon": -73.9602540 } + ], + "tags": { + "cycleway:left": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 73rd Street", + "name:ru": "Восточная 73-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498949379, + "bounds": { + "minlat": 40.7703815, + "minlon": -73.9601029, + "maxlat": 40.7704340, + "maxlon": -73.9599790 + }, + "nodes": [ + 10043925176, + 42438800 + ], + "geometry": [ + { "lat": 40.7703815, "lon": -73.9599790 }, + { "lat": 40.7704340, "lon": -73.9601029 } + ], + "tags": { + "cycleway:left": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 73rd Street", + "name:ru": "Восточная 73-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498949380, + "bounds": { + "minlat": 40.7675409, + "minlon": -73.9556359, + "maxlat": 40.7685431, + "maxlon": -73.9532494 + }, + "nodes": [ + 42428010, + 6670244830, + 7136790838, + 42438805, + 7136790817 + ], + "geometry": [ + { "lat": 40.7675409, "lon": -73.9532494 }, + { "lat": 40.7675944, "lon": -73.9533769 }, + { "lat": 40.7684263, "lon": -73.9553665 }, + { "lat": 40.7684851, "lon": -73.9555018 }, + { "lat": 40.7685431, "lon": -73.9556359 } + ], + "tags": { + "cycleway:left": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 73rd Street", + "name:ru": "Восточная 73-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498949381, + "bounds": { + "minlat": 40.7704340, + "minlon": -73.9601029, + "maxlat": 40.7710148, + "maxlon": -73.9596877 + }, + "nodes": [ + 42438800, + 10043925179, + 10170793880 + ], + "geometry": [ + { "lat": 40.7704340, "lon": -73.9601029 }, + { "lat": 40.7704905, "lon": -73.9600616 }, + { "lat": 40.7710148, "lon": -73.9596877 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1498949382, + "bounds": { + "minlat": 40.7698452, + "minlon": -73.9605326, + "maxlat": 40.7704340, + "maxlon": -73.9601029 + }, + "nodes": [ + 3562587897, + 10043925177, + 42438800 + ], + "geometry": [ + { "lat": 40.7698452, "lon": -73.9605326 }, + { "lat": 40.7703751, "lon": -73.9601459 }, + { "lat": 40.7704340, "lon": -73.9601029 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1498949383, + "bounds": { + "minlat": 40.7697470, + "minlon": -73.9606044, + "maxlat": 40.7698452, + "maxlon": -73.9605326 + }, + "nodes": [ + 42436486, + 3562587897 + ], + "geometry": [ + { "lat": 40.7697470, "lon": -73.9606044 }, + { "lat": 40.7698452, "lon": -73.9605326 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1498953219, + "bounds": { + "minlat": 40.7654593, + "minlon": -73.9680718, + "maxlat": 40.7680594, + "maxlon": -73.9661741 + }, + "nodes": [ + 12834712296, + 10125112342, + 596775973, + 10125112343, + 12834712300, + 10125112336, + 596775979, + 10125112338, + 12834723204, + 10125112346, + 596776032, + 10125112347, + 12834723206, + 10125227984, + 596775963, + 10125227982, + 12834723208, + 10125227979, + 596775998 + ], + "geometry": [ + { "lat": 40.7680594, "lon": -73.9661741 }, + { "lat": 40.7680216, "lon": -73.9662018 }, + { "lat": 40.7679632, "lon": -73.9662435 }, + { "lat": 40.7679015, "lon": -73.9662865 }, + { "lat": 40.7674332, "lon": -73.9666336 }, + { "lat": 40.7673947, "lon": -73.9666621 }, + { "lat": 40.7673370, "lon": -73.9667022 }, + { "lat": 40.7672834, "lon": -73.9667390 }, + { "lat": 40.7668098, "lon": -73.9670859 }, + { "lat": 40.7667684, "lon": -73.9671145 }, + { "lat": 40.7667157, "lon": -73.9671528 }, + { "lat": 40.7666543, "lon": -73.9671988 }, + { "lat": 40.7661796, "lon": -73.9675460 }, + { "lat": 40.7661428, "lon": -73.9675736 }, + { "lat": 40.7660871, "lon": -73.9676144 }, + { "lat": 40.7660289, "lon": -73.9676568 }, + { "lat": 40.7655541, "lon": -73.9680026 }, + { "lat": 40.7655184, "lon": -73.9680286 }, + { "lat": 40.7654593, "lon": -73.9680718 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1498953220, + "bounds": { + "minlat": 40.7698355, + "minlon": -73.9679940, + "maxlat": 40.7711470, + "maxlon": -73.9648768 + }, + "nodes": [ + 42429680, + 7797650092, + 8412090721, + 10122943684, + 42429682, + 10122943685, + 10167967034, + 596776009 + ], + "geometry": [ + { "lat": 40.7711470, "lon": -73.9679940 }, + { "lat": 40.7711075, "lon": -73.9678966 }, + { "lat": 40.7708629, "lon": -73.9673149 }, + { "lat": 40.7705218, "lon": -73.9665043 }, + { "lat": 40.7704755, "lon": -73.9663944 }, + { "lat": 40.7704323, "lon": -73.9662922 }, + { "lat": 40.7698827, "lon": -73.9649886 }, + { "lat": 40.7698355, "lon": -73.9648768 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 70th Street", + "name:ru": "Восточная 70-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498955408, + "bounds": { + "minlat": 40.7544279, + "minlon": -74.0010655, + "maxlat": 40.7545174, + "maxlon": -74.0008476 + }, + "nodes": [ + 6339939229, + 11141800591, + 6636032331 + ], + "geometry": [ + { "lat": 40.7544279, "lon": -74.0008476 }, + { "lat": 40.7544879, "lon": -74.0009914 }, + { "lat": 40.7545174, "lon": -74.0010655 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498955409, + "bounds": { + "minlat": 40.7538677, + "minlon": -73.9996344, + "maxlat": 40.7539186, + "maxlon": -73.9994891 + }, + "nodes": [ + 8261122521, + 42446668 + ], + "geometry": [ + { "lat": 40.7538677, "lon": -73.9994891 }, + { "lat": 40.7539186, "lon": -73.9996344 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 33rd Street", + "name:ru": "Западная 33-я стрит", + "oneway": "yes", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498955410, + "bounds": { + "minlat": 40.7542879, + "minlon": -73.9993652, + "maxlat": 40.7545910, + "maxlon": -73.9991485 + }, + "nodes": [ + 5481855556, + 5165666207, + 42437670 + ], + "geometry": [ + { "lat": 40.7542879, "lon": -73.9993652 }, + { "lat": 40.7545025, "lon": -73.9992127 }, + { "lat": 40.7545910, "lon": -73.9991485 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498960254, + "bounds": { + "minlat": 40.7265283, + "minlon": -73.9958473, + "maxlat": 40.7272120, + "maxlon": -73.9952700 + }, + "nodes": [ + 42428454, + 8309479029, + 8309479025, + 6213204045, + 1692433919 + ], + "geometry": [ + { "lat": 40.7272120, "lon": -73.9952700 }, + { "lat": 40.7271573, "lon": -73.9953162 }, + { "lat": 40.7265820, "lon": -73.9958023 }, + { "lat": 40.7265471, "lon": -73.9958315 }, + { "lat": 40.7265283, "lon": -73.9958473 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498967346, + "bounds": { + "minlat": 40.7272378, + "minlon": -74.0027662, + "maxlat": 40.7282330, + "maxlon": -74.0006749 + }, + "nodes": [ + 3891963913, + 4679523600, + 4321748236, + 5829880520, + 1919595928, + 5829880529, + 5481866330, + 5829880526, + 1919595927, + 5829880521, + 5829880518, + 1919595918 + ], + "geometry": [ + { "lat": 40.7282330, "lon": -74.0027662 }, + { "lat": 40.7282179, "lon": -74.0026820 }, + { "lat": 40.7281737, "lon": -74.0025704 }, + { "lat": 40.7280196, "lon": -74.0022580 }, + { "lat": 40.7279861, "lon": -74.0021905 }, + { "lat": 40.7279548, "lon": -74.0021268 }, + { "lat": 40.7278041, "lon": -74.0018218 }, + { "lat": 40.7276462, "lon": -74.0015019 }, + { "lat": 40.7276175, "lon": -74.0014439 }, + { "lat": 40.7275805, "lon": -74.0013690 }, + { "lat": 40.7272710, "lon": -74.0007423 }, + { "lat": 40.7272378, "lon": -74.0006749 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1498967347, + "bounds": { + "minlat": 40.7272378, + "minlon": -74.0006749, + "maxlat": 40.7273529, + "maxlon": -74.0005803 + }, + "nodes": [ + 42436788, + 1919595918 + ], + "geometry": [ + { "lat": 40.7273529, "lon": -74.0005803 }, + { "lat": 40.7272378, "lon": -74.0006749 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Thompson Street", + "name:etymology:wikidata": "Q3568998", + "name:ko": "톰슨 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q12070954", + "wikipedia": "en:Thompson Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498975254, + "bounds": { + "minlat": 40.7671880, + "minlon": -73.9624718, + "maxlat": 40.7673544, + "maxlon": -73.9623502 + }, + "nodes": [ + 42431680, + 6670248391, + 11355879243 + ], + "geometry": [ + { "lat": 40.7671880, "lon": -73.9624718 }, + { "lat": 40.7672475, "lon": -73.9624282 }, + { "lat": 40.7673544, "lon": -73.9623502 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "parking:both": "lane", + "parking:left:orientation": "parallel", + "sidewalk": "both", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1498975255, + "bounds": { + "minlat": 40.7671880, + "minlon": -73.9657883, + "maxlat": 40.7685866, + "maxlon": -73.9624718 + }, + "nodes": [ + 596776017, + 42431677, + 8835701387, + 3278932315, + 42431678, + 3278932318, + 6670248395, + 42431680 + ], + "geometry": [ + { "lat": 40.7685866, "lon": -73.9657883 }, + { "lat": 40.7685108, "lon": -73.9656086 }, + { "lat": 40.7684655, "lon": -73.9655012 }, + { "lat": 40.7679014, "lon": -73.9641635 }, + { "lat": 40.7678647, "lon": -73.9640765 }, + { "lat": 40.7678194, "lon": -73.9639690 }, + { "lat": 40.7672495, "lon": -73.9626178 }, + { "lat": 40.7671880, "lon": -73.9624718 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 68th Street", + "name:ru": "Восточная 68-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498979974, + "bounds": { + "minlat": 40.7671313, + "minlon": -73.9611072, + "maxlat": 40.7690777, + "maxlon": -73.9564821 + }, + "nodes": [ + 42445247, + 9030177761, + 8851347580, + 42443009, + 8851344398, + 8393918887, + 10895851143, + 10122943664, + 42445236 + ], + "geometry": [ + { "lat": 40.7671313, "lon": -73.9564821 }, + { "lat": 40.7671911, "lon": -73.9566268 }, + { "lat": 40.7680779, "lon": -73.9587314 }, + { "lat": 40.7681385, "lon": -73.9588757 }, + { "lat": 40.7681844, "lon": -73.9589868 }, + { "lat": 40.7687013, "lon": -73.9602107 }, + { "lat": 40.7688501, "lon": -73.9605661 }, + { "lat": 40.7690157, "lon": -73.9609616 }, + { "lat": 40.7690777, "lon": -73.9611072 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 71st Street", + "name:ru": "Восточная 71-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498983713, + "bounds": { + "minlat": 40.7325826, + "minlon": -73.9519481, + "maxlat": 40.7325919, + "maxlon": -73.9518502 + }, + "nodes": [ + 2987758871, + 8097159343 + ], + "geometry": [ + { "lat": 40.7325826, "lon": -73.9519481 }, + { "lat": 40.7325919, "lon": -73.9518502 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "India Street", + "name:etymology:wikidata": "Q668", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1498983714, + "bounds": { + "minlat": 40.7326411, + "minlon": -73.9519871, + "maxlat": 40.7328292, + "maxlon": -73.9519578 + }, + "nodes": [ + 8097159386, + 12042056975 + ], + "geometry": [ + { "lat": 40.7326411, "lon": -73.9519578 }, + { "lat": 40.7328292, "lon": -73.9519871 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "jersey_barrier", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1498983715, + "bounds": { + "minlat": 40.7325219, + "minlon": -73.9519481, + "maxlat": 40.7325826, + "maxlon": -73.9519377 + }, + "nodes": [ + 8097159395, + 2987758871 + ], + "geometry": [ + { "lat": 40.7325219, "lon": -73.9519377 }, + { "lat": 40.7325826, "lon": -73.9519481 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "lane", + "cycleway:right:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:restriction:conditional": "no_standing @ (Mo-Fr 07:00-19:00)", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1498997287, + "bounds": { + "minlat": 40.7203018, + "minlon": -73.9939937, + "maxlat": 40.7204583, + "maxlon": -73.9939302 + }, + "nodes": [ + 1773076511, + 5296795594 + ], + "geometry": [ + { "lat": 40.7203018, "lon": -73.9939937 }, + { "lat": 40.7204583, "lon": -73.9939302 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "smoothness": "good", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 1498997288, + "bounds": { + "minlat": 40.7209449, + "minlon": -73.9938646, + "maxlat": 40.7209753, + "maxlon": -73.9937437 + }, + "nodes": [ + 42437605, + 1773076509 + ], + "geometry": [ + { "lat": 40.7209753, "lon": -73.9938646 }, + { "lat": 40.7209449, "lon": -73.9937437 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "destination", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "smoothness": "intermediate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1498998616, + "bounds": { + "minlat": 40.7591299, + "minlon": -74.0035376, + "maxlat": 40.7592811, + "maxlon": -74.0034288 + }, + "nodes": [ + 12154605947, + 247081705 + ], + "geometry": [ + { "lat": 40.7592811, "lon": -74.0034288 }, + { "lat": 40.7591299, "lon": -74.0035376 } + ], + "tags": { + "alt_name": "West Side Highway", + "alt_name:ru": "Вест-Сайд-Хайвей", + "bicycle": "no", + "foot": "use_sidepath", + "hgv": "local", + "highway": "trunk", + "lanes": "3", + "maxspeed": "30 mph", + "name": "12th Avenue", + "name:ru": "12-я Авеню", + "official_name": "Joe DiMaggio Highway", + "oneway": "yes", + "ref": "NY 9A", + "sidewalk": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1499071837, + "bounds": { + "minlat": 40.7279189, + "minlon": -73.9930858, + "maxlat": 40.7285351, + "maxlon": -73.9925758 + }, + "nodes": [ + 8309479119, + 7059780018 + ], + "geometry": [ + { "lat": 40.7279189, "lon": -73.9930858 }, + { "lat": 40.7285351, "lon": -73.9925758 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 1499071838, + "bounds": { + "minlat": 40.7285351, + "minlon": -73.9925758, + "maxlat": 40.7296573, + "maxlon": -73.9916165 + }, + "nodes": [ + 7059780018, + 4202984497 + ], + "geometry": [ + { "lat": 40.7285351, "lon": -73.9925758 }, + { "lat": 40.7296573, "lon": -73.9916165 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 1499076089, + "bounds": { + "minlat": 40.7423497, + "minlon": -73.9516211, + "maxlat": 40.7427089, + "maxlon": -73.9514944 + }, + "nodes": [ + 276317706, + 9179073040, + 597237397 + ], + "geometry": [ + { "lat": 40.7427089, "lon": -73.9514944 }, + { "lat": 40.7426143, "lon": -73.9515262 }, + { "lat": 40.7423497, "lon": -73.9516211 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "highway": "primary", + "lanes": "2", + "name": "Pulaski Bridge", + "name:etymology:wikidata": "Q381854", + "oneway": "yes", + "wikidata": "Q606796", + "wikipedia": "en:Pulaski Bridge" + } +}, +{ + "type": "way", + "id": 1499080601, + "bounds": { + "minlat": 40.7240074, + "minlon": -73.9927280, + "maxlat": 40.7240936, + "maxlon": -73.9926973 + }, + "nodes": [ + 1918039864, + 5829779512 + ], + "geometry": [ + { "lat": 40.7240936, "lon": -73.9926973 }, + { "lat": 40.7240074, "lon": -73.9927280 } + ], + "tags": { + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Bowery", + "name:en": "Bowery", + "name:ko": "바워리", + "name:ru": "Бауэри", + "name:zh": "包厘", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q785788", + "wikipedia": "en:Bowery" + } +}, +{ + "type": "way", + "id": 1499091256, + "bounds": { + "minlat": 40.8548708, + "minlon": -73.9130800, + "maxlat": 40.8560140, + "maxlon": -73.9121300 + }, + "nodes": [ + 42731718, + 13727951031, + 2808822383, + 42776770, + 2808822336, + 13727951032 + ], + "geometry": [ + { "lat": 40.8560140, "lon": -73.9121300 }, + { "lat": 40.8553514, "lon": -73.9126771 }, + { "lat": 40.8553107, "lon": -73.9127107 }, + { "lat": 40.8552510, "lon": -73.9127610 }, + { "lat": 40.8551927, "lon": -73.9128098 }, + { "lat": 40.8548708, "lon": -73.9130800 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Andrews Avenue South", + "name:etymology:wikidata": "Q56000453", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Andrews", + "tiger:name_direction_suffix": "S", + "tiger:name_type": "Ave", + "tiger:zip_left": "10453", + "tiger:zip_right": "10453" + } +}, +{ + "type": "way", + "id": 1499094106, + "bounds": { + "minlat": 40.8625451, + "minlon": -73.9090191, + "maxlat": 40.8626910, + "maxlon": -73.9090042 + }, + "nodes": [ + 5296125212, + 9903143770, + 42731023 + ], + "geometry": [ + { "lat": 40.8625451, "lon": -73.9090042 }, + { "lat": 40.8625778, "lon": -73.9090053 }, + { "lat": 40.8626910, "lon": -73.9090191 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Sedgwick Avenue", + "name:etymology:wikidata": "Q921857", + "oneway": "no", + "parking:both": "yes", + "parking:both:orientation": "parallel", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Sedgwick", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "wikidata": "Q7445265", + "wikipedia": "en:Sedgwick Avenue" + } +}, +{ + "type": "way", + "id": 1499131284, + "bounds": { + "minlat": 40.7501172, + "minlon": -73.9688692, + "maxlat": 40.7505566, + "maxlon": -73.9685478 + }, + "nodes": [ + 42453000, + 3569749112, + 9432876280 + ], + "geometry": [ + { "lat": 40.7501172, "lon": -73.9688692 }, + { "lat": 40.7501831, "lon": -73.9688224 }, + { "lat": 40.7505566, "lon": -73.9685478 } + ], + "tags": { + "alt_name": "United Nations Plaza", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1499175532, + "bounds": { + "minlat": 40.7707006, + "minlon": -73.9836980, + "maxlat": 40.7713160, + "maxlon": -73.9832518 + }, + "nodes": [ + 3262539785, + 9492556523, + 1241742563, + 9904385875, + 8695222692 + ], + "geometry": [ + { "lat": 40.7713160, "lon": -73.9832518 }, + { "lat": 40.7711779, "lon": -73.9833535 }, + { "lat": 40.7710965, "lon": -73.9834109 }, + { "lat": 40.7710347, "lon": -73.9834557 }, + { "lat": 40.7707006, "lon": -73.9836980 } + ], + "tags": { + "access": "yes", + "covered": "no", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1499176344, + "bounds": { + "minlat": 40.7303818, + "minlon": -73.9886210, + "maxlat": 40.7313284, + "maxlon": -73.9863742 + }, + "nodes": [ + 13205862066, + 4236104522, + 12183286706, + 3627218170, + 42449886 + ], + "geometry": [ + { "lat": 40.7303818, "lon": -73.9863742 }, + { "lat": 40.7304356, "lon": -73.9865022 }, + { "lat": 40.7312437, "lon": -73.9884205 }, + { "lat": 40.7312694, "lon": -73.9884813 }, + { "lat": 40.7313284, "lon": -73.9886210 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 11th Street", + "name:el": "Ανατολική 11η Οδός", + "name:ru": "Восточная 11-я стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499176345, + "bounds": { + "minlat": 40.7301479, + "minlon": -73.9894820, + "maxlat": 40.7313284, + "maxlon": -73.9886210 + }, + "nodes": [ + 42449017, + 4235733234, + 12179565615, + 12179565616, + 12179524695, + 8309479616, + 42430886, + 8309479615, + 12179524696, + 12183286704, + 3627218178, + 42449886 + ], + "geometry": [ + { "lat": 40.7301479, "lon": -73.9894820 }, + { "lat": 40.7301962, "lon": -73.9894473 }, + { "lat": 40.7302448, "lon": -73.9894126 }, + { "lat": 40.7305918, "lon": -73.9891581 }, + { "lat": 40.7306320, "lon": -73.9891290 }, + { "lat": 40.7306725, "lon": -73.9890997 }, + { "lat": 40.7307259, "lon": -73.9890608 }, + { "lat": 40.7307832, "lon": -73.9890184 }, + { "lat": 40.7308282, "lon": -73.9889869 }, + { "lat": 40.7312280, "lon": -73.9886953 }, + { "lat": 40.7312705, "lon": -73.9886638 }, + { "lat": 40.7313284, "lon": -73.9886210 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1499179514, + "bounds": { + "minlat": 40.7008329, + "minlon": -73.9423470, + "maxlat": 40.7009788, + "maxlon": -73.9421159 + }, + "nodes": [ + 9752127035, + 2568052329 + ], + "geometry": [ + { "lat": 40.7009788, "lon": -73.9423470 }, + { "lat": 40.7008329, "lon": -73.9421159 } + ], + "tags": { + "hgv": "local", + "highway": "primary", + "name": "Broadway", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Broadway", + "tiger:reviewed": "no", + "tiger:zip_left": "11207", + "wikidata": "Q4972376", + "wikipedia": "en:Broadway (Brooklyn)" + } +}, +{ + "type": "way", + "id": 1499179515, + "bounds": { + "minlat": 40.7013755, + "minlon": -73.9431403, + "maxlat": 40.7014421, + "maxlon": -73.9430887 + }, + "nodes": [ + 42467507, + 5673259241 + ], + "geometry": [ + { "lat": 40.7014421, "lon": -73.9430887 }, + { "lat": 40.7013755, "lon": -73.9431403 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "name": "Thornton Street", + "name:etymology:wikidata": "Q1368351", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Thornton", + "tiger:name_type": "St", + "tiger:reviewed": "no" + } +}, +{ + "type": "way", + "id": 1499196738, + "bounds": { + "minlat": 40.7788150, + "minlon": -73.9503368, + "maxlat": 40.7798089, + "maxlon": -73.9479508 + }, + "nodes": [ + 42436551, + 7140667643, + 7134855843, + 6176004002, + 42436549 + ], + "geometry": [ + { "lat": 40.7788150, "lon": -73.9479508 }, + { "lat": 40.7788750, "lon": -73.9481000 }, + { "lat": 40.7797546, "lon": -73.9502082 }, + { "lat": 40.7797725, "lon": -73.9502507 }, + { "lat": 40.7798089, "lon": -73.9503368 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 89th Street", + "name:ru": "Восточная 89-я стрит", + "oneway": "yes", + "parking:lane:both": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4645154", + "wikipedia": "en:89th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1499196739, + "bounds": { + "minlat": 40.7793347, + "minlon": -73.9506796, + "maxlat": 40.7798089, + "maxlon": -73.9503368 + }, + "nodes": [ + 42436549, + 7134855819, + 7941210734, + 9496052473 + ], + "geometry": [ + { "lat": 40.7798089, "lon": -73.9503368 }, + { "lat": 40.7797537, "lon": -73.9503767 }, + { "lat": 40.7796225, "lon": -73.9504716 }, + { "lat": 40.7793347, "lon": -73.9506796 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk": "both", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1499198206, + "bounds": { + "minlat": 40.7401161, + "minlon": -73.9761435, + "maxlat": 40.7401752, + "maxlon": -73.9760069 + }, + "nodes": [ + 1632878994, + 8119193326 + ], + "geometry": [ + { "lat": 40.7401752, "lon": -73.9761435 }, + { "lat": 40.7401161, "lon": -73.9760069 } + ], + "tags": { + "access": "permissive", + "description": "\"Ambulances only\" signage and security guard posted at 1st Avenue corner", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle": "private", + "name": "East 28th Street", + "name_1": "East 28 Street", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499206827, + "bounds": { + "minlat": 40.7272894, + "minlon": -73.9936231, + "maxlat": 40.7274405, + "maxlon": -73.9934931 + }, + "nodes": [ + 42431165, + 8309479051, + 5481937335 + ], + "geometry": [ + { "lat": 40.7272894, "lon": -73.9936231 }, + { "lat": 40.7273508, "lon": -73.9935702 }, + { "lat": 40.7274405, "lon": -73.9934931 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 1499206828, + "bounds": { + "minlat": 40.7278531, + "minlon": -73.9931425, + "maxlat": 40.7279189, + "maxlon": -73.9930858 + }, + "nodes": [ + 42445534, + 8309479119 + ], + "geometry": [ + { "lat": 40.7278531, "lon": -73.9931425 }, + { "lat": 40.7279189, "lon": -73.9930858 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 1499209001, + "bounds": { + "minlat": 40.7218307, + "minlon": -73.9883266, + "maxlat": 40.7225028, + "maxlon": -73.9879896 + }, + "nodes": [ + 4886266066, + 8821425914 + ], + "geometry": [ + { "lat": 40.7218307, "lon": -73.9883266 }, + { "lat": 40.7225028, "lon": -73.9879896 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 1499212034, + "bounds": { + "minlat": 40.7231321, + "minlon": -74.0062154, + "maxlat": 40.7237152, + "maxlon": -74.0061244 + }, + "nodes": [ + 4890633690, + 4890633688, + 42452015 + ], + "geometry": [ + { "lat": 40.7237152, "lon": -74.0061244 }, + { "lat": 40.7231902, "lon": -74.0062063 }, + { "lat": 40.7231321, "lon": -74.0062154 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "old_ref": "NY 1A", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 1499212035, + "bounds": { + "minlat": 40.7229860, + "minlon": -74.0062383, + "maxlat": 40.7231321, + "maxlon": -74.0062154 + }, + "nodes": [ + 42452015, + 4890633695, + 4215665529 + ], + "geometry": [ + { "lat": 40.7231321, "lon": -74.0062154 }, + { "lat": 40.7230790, "lon": -74.0062229 }, + { "lat": 40.7229860, "lon": -74.0062383 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "Varick Street", + "name:etymology:wikidata": "Q7329637", + "name:ko": "배릭 스트리트", + "name:ru": "Варик-стрит", + "old_ref": "NY 1A", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1495179", + "wikipedia": "en:Varick Street" + } +}, +{ + "type": "way", + "id": 1499212036, + "bounds": { + "minlat": 40.7230294, + "minlon": -74.0062154, + "maxlat": 40.7231321, + "maxlon": -74.0051966 + }, + "nodes": [ + 42452015, + 4890633707, + 12133691788, + 42439551, + 4890633710 + ], + "geometry": [ + { "lat": 40.7231321, "lon": -74.0062154 }, + { "lat": 40.7231191, "lon": -74.0060805 }, + { "lat": 40.7230406, "lon": -74.0052594 }, + { "lat": 40.7230395, "lon": -74.0052482 }, + { "lat": 40.7230294, "lon": -74.0051966 } + ], + "tags": { + "bicycle": "yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Grand Street", + "name:ko": "그랜드 스트리트", + "name:ru": "Гранд-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1264489", + "wikipedia": "en:Grand Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1499227875, + "bounds": { + "minlat": 40.7176161, + "minlon": -73.9859886, + "maxlat": 40.7176751, + "maxlon": -73.9858243 + }, + "nodes": [ + 7612925053, + 7476387559, + 10931550909, + 3630249566 + ], + "geometry": [ + { "lat": 40.7176751, "lon": -73.9859886 }, + { "lat": 40.7176436, "lon": -73.9859034 }, + { "lat": 40.7176286, "lon": -73.9858619 }, + { "lat": 40.7176161, "lon": -73.9858243 } + ], + "tags": { + "cycleway:left": "separate", + "cycleway:right": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "moped": "no", + "name": "Delancey Street", + "name:en": "Delancey Street", + "name:etymology:wikidata": "Q3161014", + "name:ko": "델런시 스트리트", + "name:ru": "Деланси-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q3021466", + "wikipedia": "en:Delancey Street" + } +}, +{ + "type": "way", + "id": 1499232432, + "bounds": { + "minlat": 40.7265957, + "minlon": -73.9941184, + "maxlat": 40.7266425, + "maxlon": -73.9940260 + }, + "nodes": [ + 42445520, + 11608906306 + ], + "geometry": [ + { "lat": 40.7266425, "lon": -73.9941184 }, + { "lat": 40.7265957, "lon": -73.9940260 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Mo-Fr 16:30-23:00; Sa 10:00-23:00; Su 11:30-23:00)", + "name": "Bond Street", + "name:ko": "본드 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q23091435", + "wikipedia": "en:Bond Street" + } +}, +{ + "type": "way", + "id": 1499232433, + "bounds": { + "minlat": 40.7262619, + "minlon": -73.9943951, + "maxlat": 40.7266425, + "maxlon": -73.9941184 + }, + "nodes": [ + 42421927, + 12187431470, + 8309479059, + 42445520 + ], + "geometry": [ + { "lat": 40.7262619, "lon": -73.9943951 }, + { "lat": 40.7265321, "lon": -73.9941974 }, + { "lat": 40.7265741, "lon": -73.9941674 }, + { "lat": 40.7266425, "lon": -73.9941184 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Lafayette Street", + "name:ar": "شارع لافايات", + "name:etymology:wikidata": "Q186652", + "name:ko": "라피예트 스트리트", + "name:ru": "Лафайетт-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q1592949", + "wikipedia": "en:Lafayette Street" + } +}, +{ + "type": "way", + "id": 1499234052, + "bounds": { + "minlat": 40.7060547, + "minlon": -74.0056937, + "maxlat": 40.7063813, + "maxlon": -74.0052799 + }, + "nodes": [ + 42427251, + 7139624389, + 1772140795, + 11356800972 + ], + "geometry": [ + { "lat": 40.7063813, "lon": -74.0056937 }, + { "lat": 40.7062985, "lon": -74.0055890 }, + { "lat": 40.7060786, "lon": -74.0053095 }, + { "lat": 40.7060547, "lon": -74.0052799 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Fletcher Street", + "name:etymology:wikidata": "Q4888590", + "name:ko": "플렛처 스트리트", + "name:ru": "Флетчер-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q13882294" + } +}, +{ + "type": "way", + "id": 1499234747, + "bounds": { + "minlat": 40.7640575, + "minlon": -73.9923694, + "maxlat": 40.7641132, + "maxlon": -73.9922415 + }, + "nodes": [ + 42432598, + 10168028992 + ], + "geometry": [ + { "lat": 40.7640575, "lon": -73.9922415 }, + { "lat": 40.7641132, "lon": -73.9923694 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 49th Street", + "name:ru": "Западная 49-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499234748, + "bounds": { + "minlat": 40.7628617, + "minlon": -73.9895435, + "maxlat": 40.7629214, + "maxlon": -73.9894017 + }, + "nodes": [ + 42432594, + 10171089662 + ], + "geometry": [ + { "lat": 40.7628617, "lon": -73.9894017 }, + { "lat": 40.7629214, "lon": -73.9895435 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 49th Street", + "name:ru": "Западная 49-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499234749, + "bounds": { + "minlat": 40.7629214, + "minlon": -73.9922415, + "maxlat": 40.7640575, + "maxlon": -73.9895435 + }, + "nodes": [ + 10171089662, + 10168028996, + 42432598 + ], + "geometry": [ + { "lat": 40.7629214, "lon": -73.9895435 }, + { "lat": 40.7640056, "lon": -73.9921183 }, + { "lat": 40.7640575, "lon": -73.9922415 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 49th Street", + "name:ru": "Западная 49-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499234750, + "bounds": { + "minlat": 40.7634928, + "minlon": -73.9926517, + "maxlat": 40.7640575, + "maxlon": -73.9922415 + }, + "nodes": [ + 10168029003, + 10168028998, + 12120836680, + 42432598 + ], + "geometry": [ + { "lat": 40.7634928, "lon": -73.9926517 }, + { "lat": 40.7639975, "lon": -73.9922853 }, + { "lat": 40.7640185, "lon": -73.9922700 }, + { "lat": 40.7640575, "lon": -73.9922415 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "69'6\"", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1499239356, + "bounds": { + "minlat": 40.7190347, + "minlon": -73.9879587, + "maxlat": 40.7193341, + "maxlon": -73.9878052 + }, + "nodes": [ + 4215596089, + 9408434731, + 9408434729 + ], + "geometry": [ + { "lat": 40.7190347, "lon": -73.9879587 }, + { "lat": 40.7192925, "lon": -73.9878266 }, + { "lat": 40.7193341, "lon": -73.9878052 } + ], + "tags": { + "bus:lanes:backward": "|designated", + "hgv": "destination", + "highway": "primary", + "lanes": "3", + "lanes:backward": "2", + "lanes:bus:backward": "1", + "lanes:forward": "1", + "maxspeed": "25 mph", + "name": "Essex Street", + "name:etymology:wikidata": "Q23240", + "name:ko": "에식스 스트리트", + "name:ru": "Эссекс-стрит", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4532801", + "wikipedia": "en:Essex Street" + } +}, +{ + "type": "way", + "id": 1499246903, + "bounds": { + "minlat": 40.7642687, + "minlon": -73.9689427, + "maxlat": 40.7648338, + "maxlon": -73.9685319 + }, + "nodes": [ + 596775985, + 10125227972, + 12834723214, + 11240669720 + ], + "geometry": [ + { "lat": 40.7648338, "lon": -73.9685319 }, + { "lat": 40.7647751, "lon": -73.9685745 }, + { "lat": 40.7643078, "lon": -73.9689143 }, + { "lat": 40.7642687, "lon": -73.9689427 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1499246904, + "bounds": { + "minlat": 40.7648338, + "minlon": -73.9685319, + "maxlat": 40.7654593, + "maxlon": -73.9680718 + }, + "nodes": [ + 596775998, + 10125227975, + 12834723212, + 10125227973, + 596775985 + ], + "geometry": [ + { "lat": 40.7654593, "lon": -73.9680718 }, + { "lat": 40.7654062, "lon": -73.9681108 }, + { "lat": 40.7649271, "lon": -73.9684631 }, + { "lat": 40.7648896, "lon": -73.9684907 }, + { "lat": 40.7648338, "lon": -73.9685319 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1499246905, + "bounds": { + "minlat": 40.7623289, + "minlon": -73.9703537, + "maxlat": 40.7635851, + "maxlon": -73.9694394 + }, + "nodes": [ + 6177439752, + 10125227992, + 12834723221, + 7788529749, + 596775946, + 7788529739, + 12834723225, + 10125227995, + 596775941 + ], + "geometry": [ + { "lat": 40.7635851, "lon": -73.9694394 }, + { "lat": 40.7635210, "lon": -73.9694863 }, + { "lat": 40.7630559, "lon": -73.9698249 }, + { "lat": 40.7630149, "lon": -73.9698548 }, + { "lat": 40.7629476, "lon": -73.9699030 }, + { "lat": 40.7628958, "lon": -73.9699398 }, + { "lat": 40.7624307, "lon": -73.9702811 }, + { "lat": 40.7623825, "lon": -73.9703164 }, + { "lat": 40.7623289, "lon": -73.9703537 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "4", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "toll": "yes", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1499246906, + "bounds": { + "minlat": 40.7647574, + "minlon": -73.9685319, + "maxlat": 40.7648338, + "maxlon": -73.9683491 + }, + "nodes": [ + 596775985, + 42459114 + ], + "geometry": [ + { "lat": 40.7648338, "lon": -73.9685319 }, + { "lat": 40.7647574, "lon": -73.9683491 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 62nd Street", + "name:ru": "Восточная 62-я стрит", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499246907, + "bounds": { + "minlat": 40.7648338, + "minlon": -73.9693061, + "maxlat": 40.7651585, + "maxlon": -73.9685319 + }, + "nodes": [ + 13729142541, + 12834723211, + 2792781452, + 596775985 + ], + "geometry": [ + { "lat": 40.7651585, "lon": -73.9693061 }, + { "lat": 40.7649033, "lon": -73.9686932 }, + { "lat": 40.7648779, "lon": -73.9686324 }, + { "lat": 40.7648338, "lon": -73.9685319 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 62nd Street", + "name:ru": "Восточная 62-я стрит", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499246908, + "bounds": { + "minlat": 40.7651585, + "minlon": -73.9716518, + "maxlat": 40.7661447, + "maxlon": -73.9693061 + }, + "nodes": [ + 42456683, + 7797632773, + 2792781449, + 10171134784, + 42445961, + 2792781448, + 13729142541 + ], + "geometry": [ + { "lat": 40.7661447, "lon": -73.9716518 }, + { "lat": 40.7660982, "lon": -73.9715417 }, + { "lat": 40.7655184, "lon": -73.9701659 }, + { "lat": 40.7655151, "lon": -73.9701581 }, + { "lat": 40.7654664, "lon": -73.9700424 }, + { "lat": 40.7654212, "lon": -73.9699351 }, + { "lat": 40.7651585, "lon": -73.9693061 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lit": "yes", + "name": "East 62nd Street", + "name:ru": "Восточная 62-я стрит", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499261042, + "bounds": { + "minlat": 40.7191873, + "minlon": -73.9767345, + "maxlat": 40.7192695, + "maxlon": -73.9763322 + }, + "nodes": [ + 370893396, + 3783073166, + 3655974176 + ], + "geometry": [ + { "lat": 40.7191873, "lon": -73.9763322 }, + { "lat": 40.7192087, "lon": -73.9764411 }, + { "lat": 40.7192695, "lon": -73.9767345 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "이스트 휴스턴 스트리트", + "name:pronunciation": "iːst ˈhaʊstən stɹiːt", + "name:ru": "Восточная Хаустон-стрит", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1499264015, + "bounds": { + "minlat": 40.7684416, + "minlon": -73.9648768, + "maxlat": 40.7698355, + "maxlon": -73.9615751 + }, + "nodes": [ + 596776009, + 42429685, + 10122943673, + 6747157045, + 42429688, + 6747157054, + 6747157039, + 42429690 + ], + "geometry": [ + { "lat": 40.7698355, "lon": -73.9648768 }, + { "lat": 40.7697588, "lon": -73.9646978 }, + { "lat": 40.7697112, "lon": -73.9645868 }, + { "lat": 40.7691579, "lon": -73.9632740 }, + { "lat": 40.7691137, "lon": -73.9631686 }, + { "lat": 40.7690695, "lon": -73.9630639 }, + { "lat": 40.7684986, "lon": -73.9617090 }, + { "lat": 40.7684416, "lon": -73.9615751 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 70th Street", + "name:ru": "Восточная 70-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499269118, + "bounds": { + "minlat": 40.7685431, + "minlon": -73.9578623, + "maxlat": 40.7694904, + "maxlon": -73.9556359 + }, + "nodes": [ + 7136790817, + 8250715777, + 42438802 + ], + "geometry": [ + { "lat": 40.7685431, "lon": -73.9556359 }, + { "lat": 40.7694395, "lon": -73.9577356 }, + { "lat": 40.7694904, "lon": -73.9578623 } + ], + "tags": { + "cycleway:left": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 73rd Street", + "name:ru": "Восточная 73-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499269119, + "bounds": { + "minlat": 40.7694904, + "minlon": -73.9599790, + "maxlat": 40.7703815, + "maxlon": -73.9578623 + }, + "nodes": [ + 42438802, + 3382948111, + 10043925176 + ], + "geometry": [ + { "lat": 40.7694904, "lon": -73.9578623 }, + { "lat": 40.7695431, "lon": -73.9579996 }, + { "lat": 40.7703815, "lon": -73.9599790 } + ], + "tags": { + "cycleway:left": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 73rd Street", + "name:ru": "Восточная 73-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499279190, + "bounds": { + "minlat": 40.7707623, + "minlon": -73.9591761, + "maxlat": 40.7717042, + "maxlon": -73.9569342 + }, + "nodes": [ + 42430068, + 8250715756, + 10170793891, + 42430063 + ], + "geometry": [ + { "lat": 40.7707623, "lon": -73.9569342 }, + { "lat": 40.7708183, "lon": -73.9570675 }, + { "lat": 40.7716503, "lon": -73.9590479 }, + { "lat": 40.7717042, "lon": -73.9591761 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "name": "East 75th Street", + "name:ru": "Восточная 75-я стрит", + "name_1": "East 75 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499279191, + "bounds": { + "minlat": 40.7698264, + "minlon": -73.9569342, + "maxlat": 40.7707623, + "maxlon": -73.9547063 + }, + "nodes": [ + 6689909676, + 8250715792, + 6176390171, + 42430068 + ], + "geometry": [ + { "lat": 40.7698264, "lon": -73.9547063 }, + { "lat": 40.7707101, "lon": -73.9568088 }, + { "lat": 40.7707255, "lon": -73.9568466 }, + { "lat": 40.7707623, "lon": -73.9569342 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "name": "East 75th Street", + "name:ru": "Восточная 75-я стрит", + "name_1": "East 75 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499279192, + "bounds": { + "minlat": 40.7688110, + "minlon": -73.9547063, + "maxlat": 40.7698264, + "maxlon": -73.9523297 + }, + "nodes": [ + 42428013, + 6689923820, + 6689909674, + 42430075, + 6263083538, + 6689909676 + ], + "geometry": [ + { "lat": 40.7688110, "lon": -73.9523297 }, + { "lat": 40.7688619, "lon": -73.9524491 }, + { "lat": 40.7697095, "lon": -73.9544282 }, + { "lat": 40.7697673, "lon": -73.9545657 }, + { "lat": 40.7698107, "lon": -73.9546689 }, + { "lat": 40.7698264, "lon": -73.9547063 } + ], + "tags": { + "cycleway:right": "no", + "highway": "residential", + "lit": "yes", + "name": "East 75th Street", + "name:ru": "Восточная 75-я стрит", + "name_1": "East 75 Street", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499292743, + "bounds": { + "minlat": 40.7004914, + "minlon": -73.9423533, + "maxlat": 40.7006734, + "maxlon": -73.9423138 + }, + "nodes": [ + 13729664711, + 13729664712, + 13729664713 + ], + "geometry": [ + { "lat": 40.7006734, "lon": -73.9423533 }, + { "lat": 40.7005729, "lon": -73.9423302 }, + { "lat": 40.7004914, "lon": -73.9423138 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499315655, + "bounds": { + "minlat": 40.8039665, + "minlon": -73.9337019, + "maxlat": 40.8043061, + "maxlon": -73.9333340 + }, + "nodes": [ + 13729902881, + 13729902879, + 13729902878, + 13729902877 + ], + "geometry": [ + { "lat": 40.8039665, "lon": -73.9335396 }, + { "lat": 40.8042366, "lon": -73.9333340 }, + { "lat": 40.8043061, "lon": -73.9334983 }, + { "lat": 40.8040371, "lon": -73.9337019 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499315656, + "bounds": { + "minlat": 40.8037981, + "minlon": -73.9339465, + "maxlat": 40.8040564, + "maxlon": -73.9335396 + }, + "nodes": [ + 13729902884, + 13729902883, + 13729902882, + 13729902877, + 13729902881, + 13729902880 + ], + "geometry": [ + { "lat": 40.8038007, "lon": -73.9339465 }, + { "lat": 40.8038501, "lon": -73.9339068 }, + { "lat": 40.8040564, "lon": -73.9337464 }, + { "lat": 40.8040371, "lon": -73.9337019 }, + { "lat": 40.8039665, "lon": -73.9335396 }, + { "lat": 40.8037981, "lon": -73.9336679 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499317241, + "bounds": { + "minlat": 40.8196668, + "minlon": -73.9422864, + "maxlat": 40.8199669, + "maxlon": -73.9420646 + }, + "nodes": [ + 13729911880, + 13729911879, + 13729911878 + ], + "geometry": [ + { "lat": 40.8196668, "lon": -73.9422864 }, + { "lat": 40.8197258, "lon": -73.9422403 }, + { "lat": 40.8199669, "lon": -73.9420646 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499319013, + "bounds": { + "minlat": 40.8572249, + "minlon": -73.9130704, + "maxlat": 40.8573915, + "maxlon": -73.9126156 + }, + "nodes": [ + 13729926838, + 2978124553 + ], + "geometry": [ + { "lat": 40.8573915, "lon": -73.9130704 }, + { "lat": 40.8572249, "lon": -73.9126156 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499320058, + "bounds": { + "minlat": 40.7397165, + "minlon": -73.9729308, + "maxlat": 40.7408501, + "maxlon": -73.9726175 + }, + "nodes": [ + 370913779, + 12410974720, + 370913782, + 9141034856, + 370913784 + ], + "geometry": [ + { "lat": 40.7397165, "lon": -73.9729308 }, + { "lat": 40.7400418, "lon": -73.9728288 }, + { "lat": 40.7403868, "lon": -73.9727302 }, + { "lat": 40.7406008, "lon": -73.9726694 }, + { "lat": 40.7408501, "lon": -73.9726175 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "name_1": "South Street Viaduct", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1499321314, + "bounds": { + "minlat": 40.8315484, + "minlon": -73.9102334, + "maxlat": 40.8316166, + "maxlon": -73.9100333 + }, + "nodes": [ + 13729917787, + 13729917786, + 13729917785 + ], + "geometry": [ + { "lat": 40.8316166, "lon": -73.9102334 }, + { "lat": 40.8315964, "lon": -73.9101777 }, + { "lat": 40.8315484, "lon": -73.9100333 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499321315, + "bounds": { + "minlat": 40.8316166, + "minlon": -73.9104678, + "maxlat": 40.8316954, + "maxlon": -73.9102334 + }, + "nodes": [ + 13729917788, + 13729917787 + ], + "geometry": [ + { "lat": 40.8316954, "lon": -73.9104678 }, + { "lat": 40.8316166, "lon": -73.9102334 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499321316, + "bounds": { + "minlat": 40.8316954, + "minlon": -73.9105048, + "maxlat": 40.8318618, + "maxlon": -73.9099178 + }, + "nodes": [ + 13729917794, + 13729917793, + 13729917792, + 13729917783, + 13729917791, + 13729917784, + 13729917790, + 13729917789, + 13729917788 + ], + "geometry": [ + { "lat": 40.8317535, "lon": -73.9099178 }, + { "lat": 40.8317980, "lon": -73.9100660 }, + { "lat": 40.8318488, "lon": -73.9102403 }, + { "lat": 40.8318609, "lon": -73.9103072 }, + { "lat": 40.8318618, "lon": -73.9103557 }, + { "lat": 40.8318535, "lon": -73.9103919 }, + { "lat": 40.8318335, "lon": -73.9104315 }, + { "lat": 40.8317058, "lon": -73.9105048 }, + { "lat": 40.8316954, "lon": -73.9104678 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499322022, + "bounds": { + "minlat": 40.7255130, + "minlon": -74.0040310, + "maxlat": 40.7262500, + "maxlon": -74.0037300 + }, + "nodes": [ + 42430154, + 4890320302, + 5135800965, + 8307641858, + 42430160 + ], + "geometry": [ + { "lat": 40.7255130, "lon": -74.0040310 }, + { "lat": 40.7255932, "lon": -74.0039996 }, + { "lat": 40.7257139, "lon": -74.0039491 }, + { "lat": 40.7261929, "lon": -74.0037533 }, + { "lat": 40.7262500, "lon": -74.0037300 } + ], + "tags": { + "alt_name:ko": "6번가", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "6th Avenue", + "name:en": "6th Avenue", + "name:ko": "6th 애비뉴", + "name:ru": "6-я авеню", + "official_name": "Avenue of the Americas", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109873", + "wikipedia": "en:Sixth Avenue" + } +}, +{ + "type": "way", + "id": 1499329490, + "bounds": { + "minlat": 40.7063329, + "minlon": -73.9434202, + "maxlat": 40.7064811, + "maxlon": -73.9433964 + }, + "nodes": [ + 13730006020, + 13730006019 + ], + "geometry": [ + { "lat": 40.7064811, "lon": -73.9434202 }, + { "lat": 40.7063329, "lon": -73.9433964 } + ], + "tags": { + "covered": "yes", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499329491, + "bounds": { + "minlat": 40.7064811, + "minlon": -73.9434331, + "maxlat": 40.7065655, + "maxlon": -73.9434202 + }, + "nodes": [ + 13730006022, + 13730006021, + 13730006020 + ], + "geometry": [ + { "lat": 40.7065655, "lon": -73.9434331 }, + { "lat": 40.7065115, "lon": -73.9434251 }, + { "lat": 40.7064811, "lon": -73.9434202 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499329492, + "bounds": { + "minlat": 40.7062491, + "minlon": -73.9437785, + "maxlat": 40.7063329, + "maxlon": -73.9433889 + }, + "nodes": [ + 13730006019, + 13730006018, + 13730006017 + ], + "geometry": [ + { "lat": 40.7063329, "lon": -73.9433964 }, + { "lat": 40.7062862, "lon": -73.9433889 }, + { "lat": 40.7062491, "lon": -73.9437785 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499329554, + "bounds": { + "minlat": 40.8098547, + "minlon": -73.9233576, + "maxlat": 40.8101109, + "maxlon": -73.9231755 + }, + "nodes": [ + 13729948277, + 13729948276, + 13729948275 + ], + "geometry": [ + { "lat": 40.8098547, "lon": -73.9233576 }, + { "lat": 40.8100566, "lon": -73.9232141 }, + { "lat": 40.8101109, "lon": -73.9231755 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499332314, + "bounds": { + "minlat": 40.8217486, + "minlon": -73.9352976, + "maxlat": 40.8229329, + "maxlon": -73.9348555 + }, + "nodes": [ + 42432669, + 13730005958, + 13730005957, + 13730005956, + 13730005955, + 13730005954, + 13730005953, + 13730005952 + ], + "geometry": [ + { "lat": 40.8217486, "lon": -73.9352976 }, + { "lat": 40.8217940, "lon": -73.9352378 }, + { "lat": 40.8222038, "lon": -73.9349440 }, + { "lat": 40.8222768, "lon": -73.9349560 }, + { "lat": 40.8224483, "lon": -73.9349239 }, + { "lat": 40.8225864, "lon": -73.9348555 }, + { "lat": 40.8226812, "lon": -73.9350573 }, + { "lat": 40.8229329, "lon": -73.9348944 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499333806, + "bounds": { + "minlat": 40.7107265, + "minlon": -73.9313351, + "maxlat": 40.7120182, + "maxlon": -73.9306975 + }, + "nodes": [ + 9870296984, + 13730004819, + 13730004818, + 13730004817, + 13730004816, + 13730004815, + 13730004814, + 13730004813, + 13730004812, + 13730004811, + 13730004810, + 13730004809, + 13730004808, + 13730004807 + ], + "geometry": [ + { "lat": 40.7120182, "lon": -73.9306975 }, + { "lat": 40.7119705, "lon": -73.9308026 }, + { "lat": 40.7119166, "lon": -73.9310521 }, + { "lat": 40.7118811, "lon": -73.9311889 }, + { "lat": 40.7118394, "lon": -73.9312761 }, + { "lat": 40.7117926, "lon": -73.9313176 }, + { "lat": 40.7117418, "lon": -73.9313324 }, + { "lat": 40.7116849, "lon": -73.9313351 }, + { "lat": 40.7115375, "lon": -73.9312801 }, + { "lat": 40.7114816, "lon": -73.9312707 }, + { "lat": 40.7113697, "lon": -73.9312640 }, + { "lat": 40.7109316, "lon": -73.9310803 }, + { "lat": 40.7107786, "lon": -73.9310152 }, + { "lat": 40.7107265, "lon": -73.9309532 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499337223, + "bounds": { + "minlat": 40.8545015, + "minlon": -73.9269740, + "maxlat": 40.8547354, + "maxlon": -73.9267203 + }, + "nodes": [ + 13730075776, + 13730075781, + 13730075780, + 13730075779, + 13730075778 + ], + "geometry": [ + { "lat": 40.8547354, "lon": -73.9267203 }, + { "lat": 40.8547111, "lon": -73.9267365 }, + { "lat": 40.8546532, "lon": -73.9267972 }, + { "lat": 40.8546123, "lon": -73.9269212 }, + { "lat": 40.8545015, "lon": -73.9269740 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499337224, + "bounds": { + "minlat": 40.8547354, + "minlon": -73.9267203, + "maxlat": 40.8547612, + "maxlon": -73.9267032 + }, + "nodes": [ + 13730075775, + 13730075776 + ], + "geometry": [ + { "lat": 40.8547612, "lon": -73.9267032 }, + { "lat": 40.8547354, "lon": -73.9267203 } + ], + "tags": { + "access": "private", + "highway": "service", + "tunnel": "building_passage" + } +}, +{ + "type": "way", + "id": 1499337225, + "bounds": { + "minlat": 40.8546123, + "minlon": -73.9271257, + "maxlat": 40.8547001, + "maxlon": -73.9269212 + }, + "nodes": [ + 13730075779, + 13730075777 + ], + "geometry": [ + { "lat": 40.8546123, "lon": -73.9269212 }, + { "lat": 40.8547001, "lon": -73.9271257 } + ], + "tags": { + "access": "private", + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499348371, + "bounds": { + "minlat": 40.7401352, + "minlon": -73.9792901, + "maxlat": 40.7404187, + "maxlon": -73.9790880 + }, + "nodes": [ + 42442895, + 7640871301, + 4207683798 + ], + "geometry": [ + { "lat": 40.7404187, "lon": -73.9790880 }, + { "lat": 40.7403635, "lon": -73.9791274 }, + { "lat": 40.7401352, "lon": -73.9792901 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1499486944, + "bounds": { + "minlat": 40.7377527, + "minlon": -73.9882046, + "maxlat": 40.7389341, + "maxlon": -73.9873431 + }, + "nodes": [ + 4597668039, + 10172843082, + 12181309649, + 10172843088, + 4597668028, + 10172843094, + 12181339166, + 10172843108, + 4597668038 + ], + "geometry": [ + { "lat": 40.7389341, "lon": -73.9873431 }, + { "lat": 40.7388752, "lon": -73.9873866 }, + { "lat": 40.7384430, "lon": -73.9877016 }, + { "lat": 40.7383988, "lon": -73.9877340 }, + { "lat": 40.7383383, "lon": -73.9877778 }, + { "lat": 40.7382856, "lon": -73.9878162 }, + { "lat": 40.7378537, "lon": -73.9881310 }, + { "lat": 40.7378123, "lon": -73.9881611 }, + { "lat": 40.7377527, "lon": -73.9882046 } + ], + "tags": { + "cycleway:right": "no", + "fixme": "verify that trucks are allowed", + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue South", + "name:en": "Park Avenue South", + "name:ru": "Парк-Авеню-Саут", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "width": "10", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1499498641, + "bounds": { + "minlat": 40.7635851, + "minlon": -73.9694394, + "maxlat": 40.7642687, + "maxlon": -73.9689427 + }, + "nodes": [ + 11240669720, + 596775930, + 10125227966, + 12834723217, + 10125227991, + 6177439752 + ], + "geometry": [ + { "lat": 40.7642687, "lon": -73.9689427 }, + { "lat": 40.7642073, "lon": -73.9689874 }, + { "lat": 40.7641475, "lon": -73.9690308 }, + { "lat": 40.7636789, "lon": -73.9693709 }, + { "lat": 40.7636379, "lon": -73.9694011 }, + { "lat": 40.7635851, "lon": -73.9694394 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "4", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1499498642, + "bounds": { + "minlat": 40.7635851, + "minlon": -73.9709527, + "maxlat": 40.7642357, + "maxlon": -73.9694394 + }, + "nodes": [ + 6177439752, + 10125174398, + 4796291639, + 10125174399, + 42445953 + ], + "geometry": [ + { "lat": 40.7635851, "lon": -73.9694394 }, + { "lat": 40.7636292, "lon": -73.9695433 }, + { "lat": 40.7636742, "lon": -73.9696511 }, + { "lat": 40.7641878, "lon": -73.9708386 }, + { "lat": 40.7642357, "lon": -73.9709527 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499502957, + "bounds": { + "minlat": 40.7419813, + "minlon": -73.9824654, + "maxlat": 40.7426527, + "maxlon": -73.9808707 + }, + "nodes": [ + 42446270, + 11308882992, + 12183286754, + 4234425026, + 42446275 + ], + "geometry": [ + { "lat": 40.7426527, "lon": -73.9824654 }, + { "lat": 40.7426070, "lon": -73.9823568 }, + { "lat": 40.7420625, "lon": -73.9810636 }, + { "lat": 40.7420352, "lon": -73.9809988 }, + { "lat": 40.7419813, "lon": -73.9808707 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 28th Street", + "name:ru": "Восточная 28-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499502958, + "bounds": { + "minlat": 40.7413630, + "minlon": -73.9813211, + "maxlat": 40.7419813, + "maxlon": -73.9808707 + }, + "nodes": [ + 42449918, + 4234425033, + 12183286751, + 4234425029, + 42446275 + ], + "geometry": [ + { "lat": 40.7413630, "lon": -73.9813211 }, + { "lat": 40.7414175, "lon": -73.9812815 }, + { "lat": 40.7418779, "lon": -73.9809462 }, + { "lat": 40.7419225, "lon": -73.9809137 }, + { "lat": 40.7419813, "lon": -73.9808707 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "3rd Avenue", + "name:ru": "3-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124857", + "wikipedia": "en:Third Avenue" + } +}, +{ + "type": "way", + "id": 1499504186, + "bounds": { + "minlat": 40.7756198, + "minlon": -73.9512480, + "maxlat": 40.7785510, + "maxlon": -73.9442812 + }, + "nodes": [ + 42451773, + 6352970535, + 42454200, + 7834030793, + 42428039, + 7834025549, + 7834030804, + 42454196, + 6263083529, + 7834025581, + 7134855833, + 6176003996, + 42443040 + ], + "geometry": [ + { "lat": 40.7756198, "lon": -73.9442812 }, + { "lat": 40.7756637, "lon": -73.9444099 }, + { "lat": 40.7758122, "lon": -73.9447616 }, + { "lat": 40.7765484, "lon": -73.9465052 }, + { "lat": 40.7766022, "lon": -73.9466326 }, + { "lat": 40.7766572, "lon": -73.9467628 }, + { "lat": 40.7774949, "lon": -73.9487468 }, + { "lat": 40.7775516, "lon": -73.9488810 }, + { "lat": 40.7775961, "lon": -73.9489864 }, + { "lat": 40.7776119, "lon": -73.9490238 }, + { "lat": 40.7784994, "lon": -73.9511259 }, + { "lat": 40.7785165, "lon": -73.9511664 }, + { "lat": 40.7785510, "lon": -73.9512480 } + ], + "tags": { + "highway": "residential", + "name": "East 87th Street", + "name:ru": "Восточная 87-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499504187, + "bounds": { + "minlat": 40.7784443, + "minlon": -73.9513268, + "maxlat": 40.7785510, + "maxlon": -73.9512480 + }, + "nodes": [ + 42443040, + 7134855831, + 9496052474 + ], + "geometry": [ + { "lat": 40.7785510, "lon": -73.9512480 }, + { "lat": 40.7784974, "lon": -73.9512876 }, + { "lat": 40.7784443, "lon": -73.9513268 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "parking:lane:left": "parallel", + "sidewalk": "both", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1499555770, + "bounds": { + "minlat": 40.8198920, + "minlon": -74.0009352, + "maxlat": 40.8203430, + "maxlon": -74.0003641 + }, + "nodes": [ + 13731881280, + 13731881284, + 13731881281, + 13731881282 + ], + "geometry": [ + { "lat": 40.8198920, "lon": -74.0003641 }, + { "lat": 40.8200534, "lon": -74.0007196 }, + { "lat": 40.8201606, "lon": -74.0009352 }, + { "lat": 40.8203430, "lon": -74.0007881 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499555771, + "bounds": { + "minlat": 40.8200043, + "minlon": -74.0005184, + "maxlat": 40.8201024, + "maxlon": -74.0002985 + }, + "nodes": [ + 13731881283, + 4205589207 + ], + "geometry": [ + { "lat": 40.8201024, "lon": -74.0005184 }, + { "lat": 40.8200043, "lon": -74.0002985 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1499616919, + "bounds": { + "minlat": 40.8153803, + "minlon": -73.9641546, + "maxlat": 40.8168282, + "maxlon": -73.9628934 + }, + "nodes": [ + 254484074, + 7908589090, + 254484248, + 7908589077, + 254484249, + 2329799073, + 61261069, + 7908589063, + 254484327 + ], + "geometry": [ + { "lat": 40.8168282, "lon": -73.9628934 }, + { "lat": 40.8166538, "lon": -73.9630666 }, + { "lat": 40.8164791, "lon": -73.9632306 }, + { "lat": 40.8162994, "lon": -73.9633955 }, + { "lat": 40.8161208, "lon": -73.9635551 }, + { "lat": 40.8159398, "lon": -73.9637108 }, + { "lat": 40.8157541, "lon": -73.9638624 }, + { "lat": 40.8155693, "lon": -73.9640090 }, + { "lat": 40.8153803, "lon": -73.9641546 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1499626416, + "bounds": { + "minlat": 40.7781959, + "minlon": -73.9885800, + "maxlat": 40.7788958, + "maxlon": -73.9883218 + }, + "nodes": [ + 595245836, + 9170766757, + 9170766756, + 11699290184, + 42437845 + ], + "geometry": [ + { "lat": 40.7788958, "lon": -73.9883218 }, + { "lat": 40.7788074, "lon": -73.9883606 }, + { "lat": 40.7787033, "lon": -73.9884018 }, + { "lat": 40.7782691, "lon": -73.9885546 }, + { "lat": 40.7781959, "lon": -73.9885800 } + ], + "tags": { + "covered": "no", + "cycleway:both": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Riverside Boulevard", + "oneway": "no", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499648665, + "bounds": { + "minlat": 40.7125226, + "minlon": -73.9777588, + "maxlat": 40.7155522, + "maxlon": -73.9761820 + }, + "nodes": [ + 42450820, + 42423296 + ], + "geometry": [ + { "lat": 40.7155522, "lon": -73.9761820 }, + { "lat": 40.7125226, "lon": -73.9777588 } + ], + "tags": { + "alt_name": "East River Drive", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "surface": "asphalt", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1499664531, + "bounds": { + "minlat": 40.8296741, + "minlon": -73.9516547, + "maxlat": 40.8306765, + "maxlon": -73.9510824 + }, + "nodes": [ + 587934436, + 7907957260, + 7907957236, + 7907988088, + 7907957265, + 595338298 + ], + "geometry": [ + { "lat": 40.8306765, "lon": -73.9510824 }, + { "lat": 40.8304738, "lon": -73.9511830 }, + { "lat": 40.8302733, "lon": -73.9512871 }, + { "lat": 40.8300716, "lon": -73.9514029 }, + { "lat": 40.8298690, "lon": -73.9515274 }, + { "lat": 40.8296741, "lon": -73.9516547 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1499785370, + "bounds": { + "minlat": 40.8038695, + "minlon": -73.9208251, + "maxlat": 40.8040343, + "maxlon": -73.9204250 + }, + "nodes": [ + 7038610362, + 13733745013, + 7457285512 + ], + "geometry": [ + { "lat": 40.8040343, "lon": -73.9208251 }, + { "lat": 40.8039814, "lon": -73.9206967 }, + { "lat": 40.8038695, "lon": -73.9204250 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1499785371, + "bounds": { + "minlat": 40.8043498, + "minlon": -73.9222416, + "maxlat": 40.8046296, + "maxlon": -73.9215827 + }, + "nodes": [ + 7135100759, + 7135100763, + 10168305442, + 10168305444, + 9908650931, + 42753240 + ], + "geometry": [ + { "lat": 40.8046296, "lon": -73.9222416 }, + { "lat": 40.8045416, "lon": -73.9220316 }, + { "lat": 40.8045117, "lon": -73.9219613 }, + { "lat": 40.8044258, "lon": -73.9217600 }, + { "lat": 40.8043969, "lon": -73.9216920 }, + { "lat": 40.8043498, "lon": -73.9215827 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "no", + "cycleway:right:traffic_mode": "parking", + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lanes:forward": "2", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454" + } +}, +{ + "type": "way", + "id": 1499785372, + "bounds": { + "minlat": 40.8049299, + "minlon": -73.9233118, + "maxlat": 40.8050821, + "maxlon": -73.9229539 + }, + "nodes": [ + 42725827, + 9908650928, + 13703412789, + 13733745014 + ], + "geometry": [ + { "lat": 40.8050821, "lon": -73.9233118 }, + { "lat": 40.8050371, "lon": -73.9232078 }, + { "lat": 40.8049526, "lon": -73.9230076 }, + { "lat": 40.8049299, "lon": -73.9229539 } + ], + "tags": { + "cycleway:right": "lane", + "cycleway:right:oneway": "no", + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lanes:backward": "1", + "lanes:forward": "3", + "maxspeed": "25 mph", + "name": "Bruckner Boulevard", + "name:etymology:wikidata": "Q5718745", + "oneway": "no", + "sidewalk:both": "separate", + "tiger:cfcc": "A41", + "tiger:county": "Bronx, NY", + "tiger:name_base": "Cypress", + "tiger:name_type": "Pl", + "tiger:zip_left": "10454", + "tiger:zip_right": "10454", + "turn:lanes:forward": "||right" + } +}, +{ + "type": "way", + "id": 1499796505, + "bounds": { + "minlat": 40.7635085, + "minlon": -73.9694394, + "maxlat": 40.7635851, + "maxlon": -73.9692590 + }, + "nodes": [ + 6177439750, + 6177439752 + ], + "geometry": [ + { "lat": 40.7635085, "lon": -73.9692590 }, + { "lat": 40.7635851, "lon": -73.9694394 } + ], + "tags": { + "cycleway:right": "no", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 60th Street", + "name:ru": "Восточная 60-я стрит", + "note": "thru street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499796506, + "bounds": { + "minlat": 40.7622520, + "minlon": -73.9701729, + "maxlat": 40.7635085, + "maxlon": -73.9692590 + }, + "nodes": [ + 42456598, + 10125227994, + 12834723222, + 7788529772, + 42448317, + 7788529758, + 12834723218, + 10125227993, + 6177439750 + ], + "geometry": [ + { "lat": 40.7622520, "lon": -73.9701729 }, + { "lat": 40.7623070, "lon": -73.9701331 }, + { "lat": 40.7627955, "lon": -73.9697790 }, + { "lat": 40.7628229, "lon": -73.9697591 }, + { "lat": 40.7628699, "lon": -73.9697240 }, + { "lat": 40.7629381, "lon": -73.9696725 }, + { "lat": 40.7634060, "lon": -73.9693341 }, + { "lat": 40.7634416, "lon": -73.9693084 }, + { "lat": 40.7635085, "lon": -73.9692590 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1499798563, + "bounds": { + "minlat": 40.7277329, + "minlon": -74.0021007, + "maxlat": 40.7281021, + "maxlon": -74.0013516 + }, + "nodes": [ + 42439533, + 5829880527, + 5829880524, + 42448549 + ], + "geometry": [ + { "lat": 40.7277329, "lon": -74.0013516 }, + { "lat": 40.7277606, "lon": -74.0014076 }, + { "lat": 40.7280670, "lon": -74.0020298 }, + { "lat": 40.7281021, "lon": -74.0021007 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1499798564, + "bounds": { + "minlat": 40.7240550, + "minlon": -74.0043800, + "maxlat": 40.7277329, + "maxlon": -74.0013516 + }, + "nodes": [ + 42432127, + 4890320289, + 42439524, + 8231934386, + 42439527, + 8231934385, + 8231934399, + 42439530, + 8231934398, + 5829844668, + 1919595927, + 42439533 + ], + "geometry": [ + { "lat": 40.7240550, "lon": -74.0043800 }, + { "lat": 40.7241143, "lon": -74.0043318 }, + { "lat": 40.7241840, "lon": -74.0042720 }, + { "lat": 40.7251901, "lon": -74.0034280 }, + { "lat": 40.7252520, "lon": -74.0033760 }, + { "lat": 40.7253122, "lon": -74.0033264 }, + { "lat": 40.7264503, "lon": -74.0023905 }, + { "lat": 40.7264953, "lon": -74.0023512 }, + { "lat": 40.7265400, "lon": -74.0023121 }, + { "lat": 40.7275476, "lon": -74.0015004 }, + { "lat": 40.7276175, "lon": -74.0014439 }, + { "lat": 40.7277329, "lon": -74.0013516 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Sullivan Street", + "name:etymology:wikidata": "Q886420", + "name:ko": "설리번 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q15032064", + "wikipedia": "en:Sullivan Street" + } +}, +{ + "type": "way", + "id": 1499800687, + "bounds": { + "minlat": 40.7435047, + "minlon": -73.9768235, + "maxlat": 40.7439419, + "maxlon": -73.9765073 + }, + "nodes": [ + 5696984871, + 7964920721, + 42442910 + ], + "geometry": [ + { "lat": 40.7439419, "lon": -73.9765073 }, + { "lat": 40.7435655, "lon": -73.9767795 }, + { "lat": 40.7435047, "lon": -73.9768235 } + ], + "tags": { + "alt_name:ko": "2번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "name_1": "2 Avenue", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1499817287, + "bounds": { + "minlat": 40.7859742, + "minlon": -73.9716995, + "maxlat": 40.7871744, + "maxlon": -73.9688537 + }, + "nodes": [ + 7106818623, + 7106818634, + 3718670421, + 42434158 + ], + "geometry": [ + { "lat": 40.7859742, "lon": -73.9688537 }, + { "lat": 40.7860307, "lon": -73.9689825 }, + { "lat": 40.7871153, "lon": -73.9715593 }, + { "lat": 40.7871744, "lon": -73.9716995 } + ], + "tags": { + "alt_name": "West 87 Street", + "highway": "residential", + "lanes": "1", + "name": "West 87th Street", + "name:ru": "Западная 87-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1499817288, + "bounds": { + "minlat": 40.7868277, + "minlon": -73.9719492, + "maxlat": 40.7871744, + "maxlon": -73.9716995 + }, + "nodes": [ + 42434158, + 9634645806, + 4215936661 + ], + "geometry": [ + { "lat": 40.7871744, "lon": -73.9716995 }, + { "lat": 40.7871191, "lon": -73.9717389 }, + { "lat": 40.7868277, "lon": -73.9719492 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1499854149, + "bounds": { + "minlat": 40.7413579, + "minlon": -73.9533432, + "maxlat": 40.7414312, + "maxlon": -73.9522734 + }, + "nodes": [ + 6594863446, + 11942111832, + 6166413732 + ], + "geometry": [ + { "lat": 40.7414312, "lon": -73.9533432 }, + { "lat": 40.7414078, "lon": -73.9529036 }, + { "lat": 40.7413579, "lon": -73.9522734 } + ], + "tags": { + "highway": "motorway", + "lanes": "1", + "maxspeed": "40 mph", + "name": "Long Island Expressway", + "name:etymology:wikidata": "Q18438", + "oneway": "yes", + "ref": "I 495", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1499934773, + "bounds": { + "minlat": 40.7515694, + "minlon": -73.9337792, + "maxlat": 40.7519333, + "maxlon": -73.9335473 + }, + "nodes": [ + 3573487195, + 9189020477, + 10891946385, + 42849753 + ], + "geometry": [ + { "lat": 40.7519333, "lon": -73.9335473 }, + { "lat": 40.7517663, "lon": -73.9336444 }, + { "lat": 40.7517184, "lon": -73.9336761 }, + { "lat": 40.7515694, "lon": -73.9337792 } + ], + "tags": { + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "highway": "secondary", + "maxheight": "12'6\"", + "name": "31st Street", + "oneway": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1501490140, + "bounds": { + "minlat": 40.7537960, + "minlon": -73.9181050, + "maxlat": 40.7538599, + "maxlon": -73.9176084 + }, + "nodes": [ + 9189020422, + 5540344268, + 10774472420, + 9189020418, + 9189020419, + 42885751 + ], + "geometry": [ + { "lat": 40.7537960, "lon": -73.9181050 }, + { "lat": 40.7538173, "lon": -73.9179651 }, + { "lat": 40.7538188, "lon": -73.9179532 }, + { "lat": 40.7538365, "lon": -73.9178150 }, + { "lat": 40.7538537, "lon": -73.9176776 }, + { "lat": 40.7538599, "lon": -73.9176084 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "2", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:forward": "left||" + } +}, +{ + "type": "way", + "id": 1501490141, + "bounds": { + "minlat": 40.7534037, + "minlon": -73.9199335, + "maxlat": 40.7534802, + "maxlon": -73.9195944 + }, + "nodes": [ + 12046209176, + 13746022280 + ], + "geometry": [ + { "lat": 40.7534037, "lon": -73.9199335 }, + { "lat": 40.7534802, "lon": -73.9195944 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lanes:backward": "3", + "lanes:forward": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "smoothness": "good", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1501490142, + "bounds": { + "minlat": 40.7525450, + "minlon": -73.9238351, + "maxlat": 40.7526405, + "maxlon": -73.9233881 + }, + "nodes": [ + 6828923471, + 6829040555, + 13746022284 + ], + "geometry": [ + { "lat": 40.7525450, "lon": -73.9238351 }, + { "lat": 40.7525751, "lon": -73.9237065 }, + { "lat": 40.7526405, "lon": -73.9233881 } + ], + "tags": { + "cycleway": "track", + "hgv": "designated", + "highway": "primary", + "lanes": "5", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Northern Boulevard", + "oneway": "no", + "ref": "NY 25A", + "surface": "asphalt", + "turn:lanes:backward": "left||" + } +}, +{ + "type": "way", + "id": 1502341049, + "bounds": { + "minlat": 40.8494436, + "minlon": -73.9286829, + "maxlat": 40.8495465, + "maxlon": -73.9285344 + }, + "nodes": [ + 13751377908, + 13751377909, + 13751377910, + 13751377921, + 13751377911, + 13751377920, + 748726564, + 13751377919, + 13751377912, + 13751377922, + 13751377913, + 13751377923, + 13751377914, + 13751377924, + 13751377915, + 13751377916, + 13751377917, + 13751377935, + 13751377918, + 13751377925, + 13751377908 + ], + "geometry": [ + { "lat": 40.8494720, "lon": -73.9286829 }, + { "lat": 40.8494479, "lon": -73.9286492 }, + { "lat": 40.8494620, "lon": -73.9286376 }, + { "lat": 40.8494538, "lon": -73.9286273 }, + { "lat": 40.8494479, "lon": -73.9286128 }, + { "lat": 40.8494440, "lon": -73.9285980 }, + { "lat": 40.8494436, "lon": -73.9285870 }, + { "lat": 40.8494444, "lon": -73.9285756 }, + { "lat": 40.8494504, "lon": -73.9285593 }, + { "lat": 40.8494570, "lon": -73.9285482 }, + { "lat": 40.8494658, "lon": -73.9285409 }, + { "lat": 40.8494757, "lon": -73.9285364 }, + { "lat": 40.8494861, "lon": -73.9285344 }, + { "lat": 40.8494980, "lon": -73.9285368 }, + { "lat": 40.8495076, "lon": -73.9285427 }, + { "lat": 40.8495220, "lon": -73.9285645 }, + { "lat": 40.8495284, "lon": -73.9285578 }, + { "lat": 40.8495344, "lon": -73.9285678 }, + { "lat": 40.8495465, "lon": -73.9285879 }, + { "lat": 40.8494896, "lon": -73.9286605 }, + { "lat": 40.8494720, "lon": -73.9286829 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1502367489, + "bounds": { + "minlat": 40.8672486, + "minlon": -74.0050527, + "maxlat": 40.8681926, + "maxlon": -74.0040184 + }, + "nodes": [ + 298605029, + 298606134, + 10940444135, + 10940444133, + 10940444131, + 10940444130, + 298606104, + 3876862735 + ], + "geometry": [ + { "lat": 40.8681926, "lon": -74.0040184 }, + { "lat": 40.8678734, "lon": -74.0042848 }, + { "lat": 40.8677689, "lon": -74.0044079 }, + { "lat": 40.8676700, "lon": -74.0045253 }, + { "lat": 40.8675626, "lon": -74.0046534 }, + { "lat": 40.8674592, "lon": -74.0047815 }, + { "lat": 40.8673482, "lon": -74.0049202 }, + { "lat": 40.8672486, "lon": -74.0050527 } + ], + "tags": { + "destination": "Paterson", + "destination:ref": "I 80 West", + "destination:ref:to": "GSP", + "highway": "motorway", + "junction:ref": "69", + "lanes": "2", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "ref": "I 80", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1502367490, + "bounds": { + "minlat": 40.8675024, + "minlon": -74.0053775, + "maxlat": 40.8683951, + "maxlon": -74.0040068 + }, + "nodes": [ + 298605831, + 13751654224, + 10940262020, + 10940262021, + 10940262056, + 10940262014, + 298605483, + 10940262046, + 298605484, + 3876862741 + ], + "geometry": [ + { "lat": 40.8683951, "lon": -74.0040068 }, + { "lat": 40.8681395, "lon": -74.0044564 }, + { "lat": 40.8680919, "lon": -74.0045206 }, + { "lat": 40.8679944, "lon": -74.0046527 }, + { "lat": 40.8679054, "lon": -74.0047771 }, + { "lat": 40.8678072, "lon": -74.0049152 }, + { "lat": 40.8677208, "lon": -74.0050431 }, + { "lat": 40.8676288, "lon": -74.0051810 }, + { "lat": 40.8675402, "lon": -74.0053160 }, + { "lat": 40.8675024, "lon": -74.0053775 } + ], + "tags": { + "destination": "Hackensack;Paterson", + "destination:ref": "I 80 West", + "destination:ref:to": "GSP", + "highway": "motorway", + "junction:ref": "69", + "lanes": "2", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "ref": "I 80" + } +}, +{ + "type": "way", + "id": 1502367492, + "bounds": { + "minlat": 40.8388667, + "minlon": -74.0184381, + "maxlat": 40.8390292, + "maxlon": -74.0183905 + }, + "nodes": [ + 13751654235, + 294997637 + ], + "geometry": [ + { "lat": 40.8388667, "lon": -74.0184381 }, + { "lat": 40.8390292, "lon": -74.0183905 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "destination": "George Washington Bridge", + "destination:ref": "I 95 North;NJTP North;US 46 Jct", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Eastern Spur", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15:A15;A11:A19", + "tiger:county": "Bergen, NJ:Essex, NJ:Hudson, NJ:Mercer, NJ:Mercer, NJ;Middlesex, NJ:Union, NJ", + "tiger:name_base": "I-95:I-95;New Jersey", + "tiger:name_base_1": "New Jersey:New Jersey;I-95", + "tiger:name_type": "Tpke", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1502367493, + "bounds": { + "minlat": 40.8388778, + "minlon": -74.0184798, + "maxlat": 40.8390292, + "maxlon": -74.0183905 + }, + "nodes": [ + 13751654236, + 294997637 + ], + "geometry": [ + { "lat": 40.8388778, "lon": -74.0184798 }, + { "lat": 40.8390292, "lon": -74.0183905 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095W", + "bicycle": "no", + "bridge": "yes", + "destination": "George Washington Bridge", + "destination:ref": "I 95 North;NJTP North;US 46 Jct", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Western Spur", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "tiger:cfcc": "A15", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "I-95", + "tiger:name_base_1": "New Jersey", + "tiger:name_type_1": "Tpke", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1502367494, + "bounds": { + "minlat": 40.8654835, + "minlon": -74.0069734, + "maxlat": 40.8660521, + "maxlon": -74.0061068 + }, + "nodes": [ + 9252529318, + 10938740527, + 298607105, + 10938740520, + 13751654238, + 298607109 + ], + "geometry": [ + { "lat": 40.8654835, "lon": -74.0069734 }, + { "lat": 40.8655671, "lon": -74.0068245 }, + { "lat": 40.8656508, "lon": -74.0066797 }, + { "lat": 40.8657355, "lon": -74.0065362 }, + { "lat": 40.8657701, "lon": -74.0064803 }, + { "lat": 40.8660521, "lon": -74.0061068 } + ], + "tags": { + "destination": "New York City", + "destination:ref": "I 95 North", + "destination:street": "G. Washington Bridge", + "highway": "motorway", + "lanes": "2", + "maxspeed": "55 mph", + "name": "Christopher Columbus Highway", + "oneway": "yes", + "ref": "I 80", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1502419039, + "bounds": { + "minlat": 40.8628761, + "minlon": -73.9299166, + "maxlat": 40.8629563, + "maxlon": -73.9297163 + }, + "nodes": [ + 13752065573, + 13752065569, + 13752065568, + 13752065570 + ], + "geometry": [ + { "lat": 40.8629199, "lon": -73.9299166 }, + { "lat": 40.8628761, "lon": -73.9298668 }, + { "lat": 40.8628949, "lon": -73.9297547 }, + { "lat": 40.8629563, "lon": -73.9297163 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1502419040, + "bounds": { + "minlat": 40.8629199, + "minlon": -73.9299166, + "maxlat": 40.8629838, + "maxlon": -73.9297163 + }, + "nodes": [ + 13752065570, + 13752065571, + 13752065572, + 13752065573 + ], + "geometry": [ + { "lat": 40.8629563, "lon": -73.9297163 }, + { "lat": 40.8629838, "lon": -73.9297675 }, + { "lat": 40.8629806, "lon": -73.9298751 }, + { "lat": 40.8629199, "lon": -73.9299166 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1502419041, + "bounds": { + "minlat": 40.8629155, + "minlon": -73.9300003, + "maxlat": 40.8629199, + "maxlon": -73.9299166 + }, + "nodes": [ + 13752065573, + 2052329260 + ], + "geometry": [ + { "lat": 40.8629199, "lon": -73.9299166 }, + { "lat": 40.8629155, "lon": -73.9300003 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1502419042, + "bounds": { + "minlat": 40.8629552, + "minlon": -73.9297163, + "maxlat": 40.8629563, + "maxlon": -73.9296860 + }, + "nodes": [ + 13752065570, + 13752065567 + ], + "geometry": [ + { "lat": 40.8629563, "lon": -73.9297163 }, + { "lat": 40.8629552, "lon": -73.9296860 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1502794635, + "bounds": { + "minlat": 40.8380495, + "minlon": -73.9399302, + "maxlat": 40.8381898, + "maxlon": -73.9399035 + }, + "nodes": [ + 13754597623, + 12794031055 + ], + "geometry": [ + { "lat": 40.8381898, "lon": -73.9399035 }, + { "lat": 40.8380495, "lon": -73.9399302 } + ], + "tags": { + "bicycle": "yes", + "cycleway:both": "lane", + "cycleway:both:lane": "exclusive", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "oneway": "no", + "rcn_ref": "9", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "St Nicholas", + "tiger:name_type": "Ave", + "tiger:reviewed": "no", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1503033381, + "bounds": { + "minlat": 40.8537116, + "minlon": -73.9639687, + "maxlat": 40.8538268, + "maxlon": -73.9633802 + }, + "nodes": [ + 13756544997, + 13756544998, + 13756554501 + ], + "geometry": [ + { "lat": 40.8538268, "lon": -73.9639687 }, + { "lat": 40.8537513, "lon": -73.9635825 }, + { "lat": 40.8537116, "lon": -73.9633802 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "layer": "1", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1503033382, + "bounds": { + "minlat": 40.8535384, + "minlon": -73.9633802, + "maxlat": 40.8537116, + "maxlon": -73.9624919 + }, + "nodes": [ + 13756554501, + 3959468895 + ], + "geometry": [ + { "lat": 40.8537116, "lon": -73.9633802 }, + { "lat": 40.8535384, "lon": -73.9624919 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1503345398, + "bounds": { + "minlat": 40.8241496, + "minlon": -73.9196243, + "maxlat": 40.8242735, + "maxlon": -73.9192397 + }, + "nodes": [ + 13758485757, + 13758485758, + 13758485759 + ], + "geometry": [ + { "lat": 40.8241496, "lon": -73.9192397 }, + { "lat": 40.8241856, "lon": -73.9193516 }, + { "lat": 40.8242735, "lon": -73.9196243 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1503456896, + "bounds": { + "minlat": 40.8011081, + "minlon": -73.9651949, + "maxlat": 40.8013721, + "maxlon": -73.9650040 + }, + "nodes": [ + 42432756, + 10166004026, + 13768391059 + ], + "geometry": [ + { "lat": 40.8011081, "lon": -73.9651949 }, + { "lat": 40.8011700, "lon": -73.9651499 }, + { "lat": 40.8013721, "lon": -73.9650040 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1503456897, + "bounds": { + "minlat": 40.8017391, + "minlon": -73.9647362, + "maxlat": 40.8020498, + "maxlon": -73.9645113 + }, + "nodes": [ + 13759551434, + 10165989507, + 13768253196 + ], + "geometry": [ + { "lat": 40.8017391, "lon": -73.9647362 }, + { "lat": 40.8017974, "lon": -73.9646940 }, + { "lat": 40.8020498, "lon": -73.9645113 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1503457125, + "bounds": { + "minlat": 40.8025679, + "minlon": -73.9634962, + "maxlat": 40.8028130, + "maxlon": -73.9628955 + }, + "nodes": [ + 13759576202, + 9177532572 + ], + "geometry": [ + { "lat": 40.8028130, "lon": -73.9634962 }, + { "lat": 40.8025679, "lon": -73.9628955 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:backward": "|right", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1503457526, + "bounds": { + "minlat": 40.8619210, + "minlon": -73.9746767, + "maxlat": 40.8653453, + "maxlon": -73.9742245 + }, + "nodes": [ + 13754021061, + 13759310582, + 13759580130, + 13759580131, + 13759580132, + 13759580133, + 13759580134, + 13759580135, + 13759580136, + 13759580137, + 13759580138, + 13759580139, + 13759580140, + 13759580141, + 13759580142, + 13759580143, + 13759580144, + 13759580145, + 13759580146, + 13759580147, + 13759580150, + 13759580151, + 13759580148, + 13759580149, + 298771142 + ], + "geometry": [ + { "lat": 40.8619210, "lon": -73.9745401 }, + { "lat": 40.8622278, "lon": -73.9744550 }, + { "lat": 40.8623582, "lon": -73.9744202 }, + { "lat": 40.8625017, "lon": -73.9743835 }, + { "lat": 40.8626378, "lon": -73.9743488 }, + { "lat": 40.8627715, "lon": -73.9743190 }, + { "lat": 40.8629107, "lon": -73.9742906 }, + { "lat": 40.8630414, "lon": -73.9742702 }, + { "lat": 40.8631834, "lon": -73.9742510 }, + { "lat": 40.8633283, "lon": -73.9742357 }, + { "lat": 40.8634605, "lon": -73.9742274 }, + { "lat": 40.8635975, "lon": -73.9742245 }, + { "lat": 40.8637316, "lon": -73.9742272 }, + { "lat": 40.8638705, "lon": -73.9742347 }, + { "lat": 40.8640095, "lon": -73.9742493 }, + { "lat": 40.8641521, "lon": -73.9742707 }, + { "lat": 40.8642816, "lon": -73.9742954 }, + { "lat": 40.8644174, "lon": -73.9743265 }, + { "lat": 40.8645542, "lon": -73.9743621 }, + { "lat": 40.8646859, "lon": -73.9744035 }, + { "lat": 40.8648407, "lon": -73.9744584 }, + { "lat": 40.8649626, "lon": -73.9745041 }, + { "lat": 40.8650924, "lon": -73.9745572 }, + { "lat": 40.8652192, "lon": -73.9746152 }, + { "lat": 40.8653453, "lon": -73.9746767 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "destination": "Paterson;Express Roadway", + "destination:ref": "I 95 South;NJTP South", + "destination:ref:to": "I 80;GSP", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxheight:signed": "no", + "maxspeed": "55 mph", + "maxspeed:variable": "yes", + "name": "New Jersey Turnpike Express Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "no" + } +}, +{ + "type": "way", + "id": 1503457828, + "bounds": { + "minlat": 40.8055262, + "minlon": -73.9620084, + "maxlat": 40.8057922, + "maxlon": -73.9618145 + }, + "nodes": [ + 1506445711, + 11386952279, + 13759564759 + ], + "geometry": [ + { "lat": 40.8055262, "lon": -73.9620084 }, + { "lat": 40.8055820, "lon": -73.9619677 }, + { "lat": 40.8057922, "lon": -73.9618145 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1503457829, + "bounds": { + "minlat": 40.8061528, + "minlon": -73.9615515, + "maxlat": 40.8065224, + "maxlon": -73.9612820 + }, + "nodes": [ + 42442575, + 7004386028, + 13768628849 + ], + "geometry": [ + { "lat": 40.8061528, "lon": -73.9615515 }, + { "lat": 40.8062057, "lon": -73.9615130 }, + { "lat": 40.8065224, "lon": -73.9612820 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504672039, + "bounds": { + "minlat": 40.8043529, + "minlon": -73.9628634, + "maxlat": 40.8044882, + "maxlon": -73.9627652 + }, + "nodes": [ + 13768328937, + 13768328938 + ], + "geometry": [ + { "lat": 40.8043529, "lon": -73.9628634 }, + { "lat": 40.8044882, "lon": -73.9627652 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504672040, + "bounds": { + "minlat": 40.8044882, + "minlon": -73.9627652, + "maxlat": 40.8045751, + "maxlon": -73.9627020 + }, + "nodes": [ + 13768328938, + 5689234155, + 13771613393 + ], + "geometry": [ + { "lat": 40.8044882, "lon": -73.9627652 }, + { "lat": 40.8045284, "lon": -73.9627360 }, + { "lat": 40.8045751, "lon": -73.9627020 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504672127, + "bounds": { + "minlat": 40.8039719, + "minlon": -73.9631418, + "maxlat": 40.8042605, + "maxlon": -73.9629314 + }, + "nodes": [ + 13768329861, + 6814307796, + 42437222 + ], + "geometry": [ + { "lat": 40.8039719, "lon": -73.9631418 }, + { "lat": 40.8042133, "lon": -73.9629659 }, + { "lat": 40.8042605, "lon": -73.9629314 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504672128, + "bounds": { + "minlat": 40.8042605, + "minlon": -73.9629314, + "maxlat": 40.8043529, + "maxlon": -73.9628634 + }, + "nodes": [ + 42437222, + 6814307798, + 13768328937 + ], + "geometry": [ + { "lat": 40.8042605, "lon": -73.9629314 }, + { "lat": 40.8043223, "lon": -73.9628856 }, + { "lat": 40.8043529, "lon": -73.9628634 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504672747, + "bounds": { + "minlat": 40.8026313, + "minlon": -73.9640782, + "maxlat": 40.8027618, + "maxlon": -73.9639798 + }, + "nodes": [ + 8856061691, + 13768391868 + ], + "geometry": [ + { "lat": 40.8026313, "lon": -73.9640782 }, + { "lat": 40.8027618, "lon": -73.9639798 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "none|none|right", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504673047, + "bounds": { + "minlat": 40.8020498, + "minlon": -73.9645113, + "maxlat": 40.8022172, + "maxlon": -73.9643900 + }, + "nodes": [ + 13768253196, + 8856061690 + ], + "geometry": [ + { "lat": 40.8020498, "lon": -73.9645113 }, + { "lat": 40.8022172, "lon": -73.9643900 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504673168, + "bounds": { + "minlat": 40.8013721, + "minlon": -73.9650040, + "maxlat": 40.8014696, + "maxlon": -73.9649336 + }, + "nodes": [ + 13768391059, + 13768391060 + ], + "geometry": [ + { "lat": 40.8013721, "lon": -73.9650040 }, + { "lat": 40.8014696, "lon": -73.9649336 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504673169, + "bounds": { + "minlat": 40.8014696, + "minlon": -73.9649336, + "maxlat": 40.8015462, + "maxlon": -73.9648783 + }, + "nodes": [ + 13768391060, + 13759551433 + ], + "geometry": [ + { "lat": 40.8014696, "lon": -73.9649336 }, + { "lat": 40.8015462, "lon": -73.9648783 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504673633, + "bounds": { + "minlat": 40.8007947, + "minlon": -73.9654264, + "maxlat": 40.8009526, + "maxlon": -73.9653120 + }, + "nodes": [ + 13768397315, + 8856061172 + ], + "geometry": [ + { "lat": 40.8007947, "lon": -73.9654264 }, + { "lat": 40.8009526, "lon": -73.9653120 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "motor_vehicle:conditional": "no @ (Sa-Su 10:00-17:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504678139, + "bounds": { + "minlat": 40.7993147, + "minlon": -73.9665213, + "maxlat": 40.7993953, + "maxlon": -73.9664615 + }, + "nodes": [ + 13768340352, + 13768340353 + ], + "geometry": [ + { "lat": 40.7993147, "lon": -73.9665213 }, + { "lat": 40.7993953, "lon": -73.9664615 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504678140, + "bounds": { + "minlat": 40.7993953, + "minlon": -73.9664615, + "maxlat": 40.7994858, + "maxlon": -73.9663944 + }, + "nodes": [ + 13768340353, + 10902020359 + ], + "geometry": [ + { "lat": 40.7993953, "lon": -73.9664615 }, + { "lat": 40.7994858, "lon": -73.9663944 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504678367, + "bounds": { + "minlat": 40.7985077, + "minlon": -73.9671272, + "maxlat": 40.7986963, + "maxlon": -73.9669849 + }, + "nodes": [ + 42442559, + 9654214279, + 13768371207 + ], + "geometry": [ + { "lat": 40.7985077, "lon": -73.9671272 }, + { "lat": 40.7985665, "lon": -73.9670828 }, + { "lat": 40.7986963, "lon": -73.9669849 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504678368, + "bounds": { + "minlat": 40.7986963, + "minlon": -73.9669849, + "maxlat": 40.7987889, + "maxlon": -73.9669150 + }, + "nodes": [ + 13768371207, + 13768371208 + ], + "geometry": [ + { "lat": 40.7986963, "lon": -73.9669849 }, + { "lat": 40.7987889, "lon": -73.9669150 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504678722, + "bounds": { + "minlat": 40.7981389, + "minlon": -73.9673780, + "maxlat": 40.7982284, + "maxlon": -73.9673165 + }, + "nodes": [ + 13768423635, + 13768423636 + ], + "geometry": [ + { "lat": 40.7981389, "lon": -73.9673780 }, + { "lat": 40.7982284, "lon": -73.9673165 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504678723, + "bounds": { + "minlat": 40.7982284, + "minlon": -73.9673165, + "maxlat": 40.7983602, + "maxlon": -73.9672260 + }, + "nodes": [ + 13768423636, + 9675461940 + ], + "geometry": [ + { "lat": 40.7982284, "lon": -73.9673165 }, + { "lat": 40.7983602, "lon": -73.9672260 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|through", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504679772, + "bounds": { + "minlat": 40.7974323, + "minlon": -73.9678810, + "maxlat": 40.7975240, + "maxlon": -73.9678151 + }, + "nodes": [ + 13768413586, + 13768413587 + ], + "geometry": [ + { "lat": 40.7974323, "lon": -73.9678810 }, + { "lat": 40.7975240, "lon": -73.9678151 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504679773, + "bounds": { + "minlat": 40.7975240, + "minlon": -73.9678151, + "maxlat": 40.7978705, + "maxlon": -73.9675624 + }, + "nodes": [ + 13768413587, + 10165989500, + 42442557 + ], + "geometry": [ + { "lat": 40.7975240, "lon": -73.9678151 }, + { "lat": 40.7978164, "lon": -73.9676046 }, + { "lat": 40.7978705, "lon": -73.9675624 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "yes", + "sidewalk": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504714216, + "bounds": { + "minlat": 40.8048929, + "minlon": -73.9624703, + "maxlat": 40.8053212, + "maxlon": -73.9621579 + }, + "nodes": [ + 6166969757, + 10168667111, + 13768634101 + ], + "geometry": [ + { "lat": 40.8048929, "lon": -73.9624703 }, + { "lat": 40.8049499, "lon": -73.9624288 }, + { "lat": 40.8053212, "lon": -73.9621579 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504714263, + "bounds": { + "minlat": 40.8053212, + "minlon": -73.9621579, + "maxlat": 40.8055262, + "maxlon": -73.9620084 + }, + "nodes": [ + 13768634101, + 11386952281, + 1506445711 + ], + "geometry": [ + { "lat": 40.8053212, "lon": -73.9621579 }, + { "lat": 40.8054631, "lon": -73.9620544 }, + { "lat": 40.8055262, "lon": -73.9620084 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504714467, + "bounds": { + "minlat": 40.8057922, + "minlon": -73.9618145, + "maxlat": 40.8061528, + "maxlon": -73.9615515 + }, + "nodes": [ + 13759564759, + 4384311766, + 42442575 + ], + "geometry": [ + { "lat": 40.8057922, "lon": -73.9618145 }, + { "lat": 40.8060926, "lon": -73.9615954 }, + { "lat": 40.8061528, "lon": -73.9615515 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504714548, + "bounds": { + "minlat": 40.8065224, + "minlon": -73.9612820, + "maxlat": 40.8068316, + "maxlon": -73.9610565 + }, + "nodes": [ + 13768628849, + 3907629309, + 42437142 + ], + "geometry": [ + { "lat": 40.8065224, "lon": -73.9612820 }, + { "lat": 40.8067422, "lon": -73.9611217 }, + { "lat": 40.8068316, "lon": -73.9610565 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504714945, + "bounds": { + "minlat": 40.8075609, + "minlon": -73.9605192, + "maxlat": 40.8078378, + "maxlon": -73.9603192 + }, + "nodes": [ + 8379847773, + 8379835875, + 13768609858 + ], + "geometry": [ + { "lat": 40.8075609, "lon": -73.9605192 }, + { "lat": 40.8075989, "lon": -73.9604917 }, + { "lat": 40.8078378, "lon": -73.9603192 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504714993, + "bounds": { + "minlat": 40.8078378, + "minlon": -73.9603192, + "maxlat": 40.8081275, + "maxlon": -73.9601090 + }, + "nodes": [ + 13768609858, + 8379847770, + 42442577 + ], + "geometry": [ + { "lat": 40.8078378, "lon": -73.9603192 }, + { "lat": 40.8080723, "lon": -73.9601498 }, + { "lat": 40.8081275, "lon": -73.9601090 } + ], + "tags": { + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504715062, + "bounds": { + "minlat": 40.8081275, + "minlon": -73.9601090, + "maxlat": 40.8084697, + "maxlon": -73.9598596 + }, + "nodes": [ + 42442577, + 2308955220, + 13768627563 + ], + "geometry": [ + { "lat": 40.8081275, "lon": -73.9601090 }, + { "lat": 40.8081832, "lon": -73.9600691 }, + { "lat": 40.8084697, "lon": -73.9598596 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1504753154, + "bounds": { + "minlat": 40.8473879, + "minlon": -73.9344667, + "maxlat": 40.8474364, + "maxlon": -73.9343473 + }, + "nodes": [ + 60925784, + 13768792957 + ], + "geometry": [ + { "lat": 40.8474364, "lon": -73.9344667 }, + { "lat": 40.8473879, "lon": -73.9343473 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "-1", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "yes", + "tunnel": "yes" + } +}, +{ + "type": "way", + "id": 1504753155, + "bounds": { + "minlat": 40.8472477, + "minlon": -73.9343473, + "maxlat": 40.8473879, + "maxlon": -73.9340047 + }, + "nodes": [ + 13768792957, + 13768984258, + 13768792958 + ], + "geometry": [ + { "lat": 40.8473879, "lon": -73.9343473 }, + { "lat": 40.8473859, "lon": -73.9343424 }, + { "lat": 40.8472477, "lon": -73.9340047 } + ], + "tags": { + "bicycle": "no", + "cutting": "yes", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Upper Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1504753157, + "bounds": { + "minlat": 40.8470928, + "minlon": -73.9340878, + "maxlat": 40.8471437, + "maxlon": -73.9339681 + }, + "nodes": [ + 13768792960, + 60925795 + ], + "geometry": [ + { "lat": 40.8471437, "lon": -73.9340878 }, + { "lat": 40.8470928, "lon": -73.9339681 } + ], + "tags": { + "bicycle": "no", + "destination:lanes": "Harlem River Drive;Franklin D Roosevelt East River Drive;Manhattan|none|Maj Deegan Expressway", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "layer": "-1", + "maxspeed": "45 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "tunnel": "yes", + "turn:lanes": "slight_left||" + } +}, +{ + "type": "way", + "id": 1504770029, + "bounds": { + "minlat": 40.8456343, + "minlon": -73.9304100, + "maxlat": 40.8458069, + "maxlon": -73.9293861 + }, + "nodes": [ + 60925767, + 9908548278, + 13768984267, + 13768984268, + 529799006 + ], + "geometry": [ + { "lat": 40.8458069, "lon": -73.9304100 }, + { "lat": 40.8458027, "lon": -73.9303427 }, + { "lat": 40.8457960, "lon": -73.9302825 }, + { "lat": 40.8457888, "lon": -73.9302310 }, + { "lat": 40.8456343, "lon": -73.9293861 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "bridge:name": "Alexander Hamilton Bridge", + "destination:ref:lanes": "I 95 North;I 87|I 87", + "foot": "no", + "hgv": "local", + "highway": "motorway", + "horse": "no", + "lanes": "2", + "layer": "2", + "maxspeed": "45 mph", + "maxspeed:advisory": "35 mph", + "name": "Trans-Manhattan Expressway Lower Level", + "name:etymology:wikidata": "Q11299", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt", + "toll": "no", + "wikidata": "Q621768", + "wikipedia": "en:Alexander Hamilton Bridge" + } +}, +{ + "type": "way", + "id": 1504770030, + "bounds": { + "minlat": 40.8546950, + "minlon": -73.9717973, + "maxlat": 40.8548288, + "maxlon": -73.9716578 + }, + "nodes": [ + 6964899067, + 6964899063 + ], + "geometry": [ + { "lat": 40.8546950, "lon": -73.9717973 }, + { "lat": 40.8548288, "lon": -73.9716578 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1504770031, + "bounds": { + "minlat": 40.8544924, + "minlon": -73.9716578, + "maxlat": 40.8548288, + "maxlon": -73.9708734 + }, + "nodes": [ + 6964899063, + 13768984269, + 6964899066 + ], + "geometry": [ + { "lat": 40.8548288, "lon": -73.9716578 }, + { "lat": 40.8545732, "lon": -73.9711751 }, + { "lat": 40.8544924, "lon": -73.9708734 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1505205078, + "bounds": { + "minlat": 40.8067507, + "minlon": -73.9669620, + "maxlat": 40.8075991, + "maxlon": -73.9649437 + }, + "nodes": [ + 5004570630, + 7785782257, + 1506445838, + 1506445776, + 11842918577, + 7004372896, + 42428814 + ], + "geometry": [ + { "lat": 40.8075991, "lon": -73.9669620 }, + { "lat": 40.8075475, "lon": -73.9668355 }, + { "lat": 40.8073395, "lon": -73.9663621 }, + { "lat": 40.8072783, "lon": -73.9662170 }, + { "lat": 40.8072601, "lon": -73.9661730 }, + { "lat": 40.8068009, "lon": -73.9650606 }, + { "lat": 40.8067507, "lon": -73.9649437 } + ], + "tags": { + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "name": "West 114th Street", + "name:ru": "Западная 114-я стрит", + "name_1": "West 114 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1505219120, + "bounds": { + "minlat": 40.8045751, + "minlon": -73.9627020, + "maxlat": 40.8046290, + "maxlon": -73.9626627 + }, + "nodes": [ + 13771613393, + 13771613394 + ], + "geometry": [ + { "lat": 40.8045751, "lon": -73.9627020 }, + { "lat": 40.8046290, "lon": -73.9626627 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "parking:both": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1505219121, + "bounds": { + "minlat": 40.8046290, + "minlon": -73.9626627, + "maxlat": 40.8048929, + "maxlon": -73.9624703 + }, + "nodes": [ + 13771613394, + 8251054455, + 6166969757 + ], + "geometry": [ + { "lat": 40.8046290, "lon": -73.9626627 }, + { "lat": 40.8048271, "lon": -73.9625183 }, + { "lat": 40.8048929, "lon": -73.9624703 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1505313404, + "bounds": { + "minlat": 40.8039607, + "minlon": -73.9666013, + "maxlat": 40.8041328, + "maxlon": -73.9662004 + }, + "nodes": [ + 13772572899, + 9177532568, + 10170704051, + 3579432156 + ], + "geometry": [ + { "lat": 40.8039607, "lon": -73.9662004 }, + { "lat": 40.8040654, "lon": -73.9664492 }, + { "lat": 40.8040904, "lon": -73.9665052 }, + { "lat": 40.8041328, "lon": -73.9666013 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1505313455, + "bounds": { + "minlat": 40.8038965, + "minlon": -73.9662004, + "maxlat": 40.8039607, + "maxlon": -73.9660481 + }, + "nodes": [ + 13772591454, + 1506445772, + 13772572899 + ], + "geometry": [ + { "lat": 40.8038965, "lon": -73.9660481 }, + { "lat": 40.8039024, "lon": -73.9660620 }, + { "lat": 40.8039607, "lon": -73.9662004 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "shared_lane", + "cycleway:left:lane": "pictogram", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1505326269, + "bounds": { + "minlat": 40.8029617, + "minlon": -73.9638490, + "maxlat": 40.8031114, + "maxlon": -73.9637648 + }, + "nodes": [ + 42442569, + 6814307785, + 13772615411 + ], + "geometry": [ + { "lat": 40.8029617, "lon": -73.9638490 }, + { "lat": 40.8030841, "lon": -73.9637844 }, + { "lat": 40.8031114, "lon": -73.9637648 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "4", + "motor_vehicle:conditional": "no @ (Fr 19:00-23:00; Sa-Su 11:00-23:00)", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1505714159, + "bounds": { + "minlat": 40.8108560, + "minlon": -73.9065527, + "maxlat": 40.8110327, + "maxlon": -73.9060639 + }, + "nodes": [ + 13774637985, + 13774637986, + 13774637988, + 13774637987 + ], + "geometry": [ + { "lat": 40.8110327, "lon": -73.9065527 }, + { "lat": 40.8109451, "lon": -73.9062168 }, + { "lat": 40.8109222, "lon": -73.9061776 }, + { "lat": 40.8108560, "lon": -73.9060639 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1506164757, + "bounds": { + "minlat": 40.8019772, + "minlon": -73.9628955, + "maxlat": 40.8025679, + "maxlon": -73.9614978 + }, + "nodes": [ + 9177532572, + 13777220337 + ], + "geometry": [ + { "lat": 40.8025679, "lon": -73.9628955 }, + { "lat": 40.8019772, "lon": -73.9614978 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "network": "lcn", + "route": "bicycle", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1506164940, + "bounds": { + "minlat": 40.8015161, + "minlon": -73.9612185, + "maxlat": 40.8016013, + "maxlon": -73.9611564 + }, + "nodes": [ + 13777246506, + 13777246507 + ], + "geometry": [ + { "lat": 40.8016013, "lon": -73.9611564 }, + { "lat": 40.8015161, "lon": -73.9612185 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1506164941, + "bounds": { + "minlat": 40.8011797, + "minlon": -73.9614635, + "maxlat": 40.8015161, + "maxlon": -73.9612185 + }, + "nodes": [ + 13777246507, + 10171363568, + 42443426 + ], + "geometry": [ + { "lat": 40.8015161, "lon": -73.9612185 }, + { "lat": 40.8012435, "lon": -73.9614170 }, + { "lat": 40.8011797, "lon": -73.9614635 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1506166022, + "bounds": { + "minlat": 40.8005466, + "minlon": -73.9619296, + "maxlat": 40.8007770, + "maxlon": -73.9617602 + }, + "nodes": [ + 4205830396, + 10166004017, + 42443413 + ], + "geometry": [ + { "lat": 40.8007770, "lon": -73.9617602 }, + { "lat": 40.8006139, "lon": -73.9618802 }, + { "lat": 40.8005466, "lon": -73.9619296 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "left;through|through|", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1506166300, + "bounds": { + "minlat": 40.8000226, + "minlon": -73.9623098, + "maxlat": 40.8001125, + "maxlon": -73.9622446 + }, + "nodes": [ + 13776983473, + 13776983474 + ], + "geometry": [ + { "lat": 40.8001125, "lon": -73.9622446 }, + { "lat": 40.8000226, "lon": -73.9623098 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1506166301, + "bounds": { + "minlat": 40.7999222, + "minlon": -73.9623828, + "maxlat": 40.8000226, + "maxlon": -73.9623098 + }, + "nodes": [ + 13776983474, + 10166004041, + 42432744 + ], + "geometry": [ + { "lat": 40.8000226, "lon": -73.9623098 }, + { "lat": 40.7999864, "lon": -73.9623361 }, + { "lat": 40.7999222, "lon": -73.9623828 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1506175174, + "bounds": { + "minlat": 40.7981034, + "minlon": -73.9637083, + "maxlat": 40.7982503, + "maxlon": -73.9636015 + }, + "nodes": [ + 13777220339, + 4205830389 + ], + "geometry": [ + { "lat": 40.7982503, "lon": -73.9636015 }, + { "lat": 40.7981034, "lon": -73.9637083 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Columbus Avenue", + "name:etymology:wikidata": "Q7322", + "name:ru": "Коламбус-авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130378", + "wikipedia": "en:Ninth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1506660770, + "bounds": { + "minlat": 40.7415472, + "minlon": -73.9473267, + "maxlat": 40.7418735, + "maxlon": -73.9471370 + }, + "nodes": [ + 13779772850, + 13779772849, + 13779772848, + 13779772847, + 13779772846, + 13779772843, + 13779772842, + 13779772845, + 13779772844, + 7046958202 + ], + "geometry": [ + { "lat": 40.7415472, "lon": -73.9472004 }, + { "lat": 40.7415651, "lon": -73.9472989 }, + { "lat": 40.7415748, "lon": -73.9473118 }, + { "lat": 40.7415930, "lon": -73.9473235 }, + { "lat": 40.7416071, "lon": -73.9473267 }, + { "lat": 40.7418444, "lon": -73.9472563 }, + { "lat": 40.7418658, "lon": -73.9472365 }, + { "lat": 40.7418735, "lon": -73.9472120 }, + { "lat": 40.7418695, "lon": -73.9471805 }, + { "lat": 40.7417881, "lon": -73.9471370 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1506798347, + "bounds": { + "minlat": 40.7632488, + "minlon": -73.9864391, + "maxlat": 40.7635519, + "maxlon": -73.9862211 + }, + "nodes": [ + 13780484763, + 13780484762, + 13780484761 + ], + "geometry": [ + { "lat": 40.7632488, "lon": -73.9864391 }, + { "lat": 40.7633140, "lon": -73.9863936 }, + { "lat": 40.7635519, "lon": -73.9862211 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1506799652, + "bounds": { + "minlat": 40.7648170, + "minlon": -73.9853688, + "maxlat": 40.7651596, + "maxlon": -73.9851287 + }, + "nodes": [ + 13780498257, + 13780498256, + 13780498255 + ], + "geometry": [ + { "lat": 40.7651596, "lon": -73.9851287 }, + { "lat": 40.7650989, "lon": -73.9851710 }, + { "lat": 40.7648170, "lon": -73.9853688 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1506810710, + "bounds": { + "minlat": 40.7212441, + "minlon": -73.9612055, + "maxlat": 40.7215483, + "maxlon": -73.9607019 + }, + "nodes": [ + 13780549946, + 13780549945, + 13780549944, + 13780549943 + ], + "geometry": [ + { "lat": 40.7212441, "lon": -73.9607019 }, + { "lat": 40.7213123, "lon": -73.9607833 }, + { "lat": 40.7213199, "lon": -73.9607957 }, + { "lat": 40.7215483, "lon": -73.9612055 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1507095861, + "bounds": { + "minlat": 40.8538268, + "minlon": -73.9642840, + "maxlat": 40.8538852, + "maxlon": -73.9639687 + }, + "nodes": [ + 13754077728, + 13756544997 + ], + "geometry": [ + { "lat": 40.8538852, "lon": -73.9642840 }, + { "lat": 40.8538268, "lon": -73.9639687 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "hgv:national_network": "yes", + "highway": "motorway", + "horse": "no", + "lanes": "1", + "name": "George Washington Bridge Upper Level", + "oneway": "yes", + "ref": "I 95;US 1;US 9", + "source:hgv:national_network": "NJDOT http://www.state.nj.us/transportation/about/rules/pdf/chapter32truckaccess.pdf", + "surface": "asphalt", + "toll": "yes" + } +}, +{ + "type": "way", + "id": 1507902397, + "bounds": { + "minlat": 40.7989327, + "minlon": -73.9624866, + "maxlat": 40.7990794, + "maxlon": -73.9621333 + }, + "nodes": [ + 4205830392, + 13787950059 + ], + "geometry": [ + { "lat": 40.7989327, "lon": -73.9621333 }, + { "lat": 40.7990794, "lon": -73.9624866 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lane_markings": "yes", + "lit": "yes", + "name": "West 106th Street", + "name:ru": "Западная 106-я стрит", + "name_1": "West 106 Street", + "name_2": "Duke Ellington Boulevard", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes:forward": "left|through" + } +}, +{ + "type": "way", + "id": 1507907797, + "bounds": { + "minlat": 40.8014005, + "minlon": -73.9604338, + "maxlat": 40.8015054, + "maxlon": -73.9600692 + }, + "nodes": [ + 13788017734, + 12534082091, + 12534082089 + ], + "geometry": [ + { "lat": 40.8014005, "lon": -73.9600692 }, + { "lat": 40.8014448, "lon": -73.9601697 }, + { "lat": 40.8015054, "lon": -73.9604338 } + ], + "tags": { + "alt_name": "Cathedral Parkway", + "cycleway:left": "no", + "cycleway:right": "lane", + "hgv": "local", + "highway": "secondary", + "lanes": "1", + "maxspeed": "25 mph", + "maxspeed:type": "sign", + "name": "West 110th Street", + "name:ru": "Западная 110-я стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q655136", + "wikipedia": "en:110th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1507975053, + "bounds": { + "minlat": 40.8562398, + "minlon": -73.9723822, + "maxlat": 40.8568075, + "maxlon": -73.9715182 + }, + "nodes": [ + 7925039080, + 7925039068, + 7925039074, + 3257513645, + 13765164914, + 13765164913, + 13765164912, + 76464195 + ], + "geometry": [ + { "lat": 40.8562398, "lon": -73.9715182 }, + { "lat": 40.8563096, "lon": -73.9716332 }, + { "lat": 40.8563784, "lon": -73.9717399 }, + { "lat": 40.8564494, "lon": -73.9718462 }, + { "lat": 40.8565239, "lon": -73.9719576 }, + { "lat": 40.8566665, "lon": -73.9721710 }, + { "lat": 40.8567358, "lon": -73.9722750 }, + { "lat": 40.8568075, "lon": -73.9723822 } + ], + "tags": { + "HFCS": "Urban Interstate", + "NJDOT_SRI": "00000095", + "bicycle": "no", + "foot": "no", + "hgv": "no", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxheight": "14'6\"", + "maxspeed": "45 mph", + "name": "New Jersey Turnpike Local Roadway", + "oneway": "yes", + "ref": "I 95;NJTP", + "surface": "asphalt", + "toll": "no", + "unsigned_ref": "US 46" + } +}, +{ + "type": "way", + "id": 1508560737, + "bounds": { + "minlat": 40.7252767, + "minlon": -73.9947493, + "maxlat": 40.7253057, + "maxlon": -73.9946491 + }, + "nodes": [ + 13791950285, + 13791950284 + ], + "geometry": [ + { "lat": 40.7252767, "lon": -73.9946491 }, + { "lat": 40.7253057, "lon": -73.9947493 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1508640053, + "bounds": { + "minlat": 40.8075507, + "minlon": -73.9529182, + "maxlat": 40.8077750, + "maxlon": -73.9529047 + }, + "nodes": [ + 42432905, + 10168029046, + 6431058183 + ], + "geometry": [ + { "lat": 40.8075507, "lon": -73.9529047 }, + { "lat": 40.8076240, "lon": -73.9529100 }, + { "lat": 40.8077750, "lon": -73.9529182 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Saint Nicholas Avenue", + "name:etymology:wikidata": "Q44269", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "wikidata": "Q1593583", + "wikipedia": "en:St. Nicholas Avenue" + } +}, +{ + "type": "way", + "id": 1509156692, + "bounds": { + "minlat": 40.8056055, + "minlon": -73.9603710, + "maxlat": 40.8056491, + "maxlon": -73.9603389 + }, + "nodes": [ + 7618358583, + 12005607671 + ], + "geometry": [ + { "lat": 40.8056491, "lon": -73.9603389 }, + { "lat": 40.8056055, "lon": -73.9603710 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1509156693, + "bounds": { + "minlat": 40.8053490, + "minlon": -73.9605600, + "maxlat": 40.8055682, + "maxlon": -73.9603984 + }, + "nodes": [ + 13796206800, + 7618358584 + ], + "geometry": [ + { "lat": 40.8055682, "lon": -73.9603984 }, + { "lat": 40.8053490, "lon": -73.9605600 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1509389259, + "bounds": { + "minlat": 40.8013811, + "minlon": -73.9303673, + "maxlat": 40.8025637, + "maxlon": -73.9300844 + }, + "nodes": [ + 42426799, + 9153699995, + 9153700002, + 5959713767, + 9153700003 + ], + "geometry": [ + { "lat": 40.8025637, "lon": -73.9303673 }, + { "lat": 40.8023649, "lon": -73.9303054 }, + { "lat": 40.8018706, "lon": -73.9302129 }, + { "lat": 40.8016837, "lon": -73.9301747 }, + { "lat": 40.8013811, "lon": -73.9300844 } + ], + "tags": { + "destination": "FDR Drive South", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "lit": "yes", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1509513128, + "bounds": { + "minlat": 40.7149028, + "minlon": -73.9918872, + "maxlat": 40.7155650, + "maxlon": -73.9915491 + }, + "nodes": [ + 42440792, + 8231954825, + 13798793064 + ], + "geometry": [ + { "lat": 40.7149028, "lon": -73.9918872 }, + { "lat": 40.7149786, "lon": -73.9918487 }, + { "lat": 40.7155650, "lon": -73.9915491 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 1509513129, + "bounds": { + "minlat": 40.7170065, + "minlon": -73.9908065, + "maxlat": 40.7172086, + "maxlon": -73.9907021 + }, + "nodes": [ + 13798793065, + 5043074389, + 42452076 + ], + "geometry": [ + { "lat": 40.7170065, "lon": -73.9908065 }, + { "lat": 40.7171330, "lon": -73.9907408 }, + { "lat": 40.7172086, "lon": -73.9907021 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "Orchard Street", + "name:etymology:wikidata": "Q236371", + "name:ko": "오처드 스트리트", + "name:ru": "Орчард-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4337251", + "wikipedia": "en:Orchard Street" + } +}, +{ + "type": "way", + "id": 1509721443, + "bounds": { + "minlat": 40.8405454, + "minlon": -73.9439204, + "maxlat": 40.8408348, + "maxlon": -73.9436336 + }, + "nodes": [ + 13800731495, + 13800731500, + 13800731496, + 13800731497, + 13800731499, + 13800731498 + ], + "geometry": [ + { "lat": 40.8405454, "lon": -73.9437494 }, + { "lat": 40.8406408, "lon": -73.9437040 }, + { "lat": 40.8407905, "lon": -73.9436336 }, + { "lat": 40.8408348, "lon": -73.9437601 }, + { "lat": 40.8407197, "lon": -73.9438545 }, + { "lat": 40.8406334, "lon": -73.9439204 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1509778528, + "bounds": { + "minlat": 40.7406473, + "minlon": -73.9346758, + "maxlat": 40.7410670, + "maxlon": -73.9343903 + }, + "nodes": [ + 13801396857, + 13801396861, + 13801396858, + 13801396859, + 13801396860, + 13801396865, + 13801396862, + 13801396863 + ], + "geometry": [ + { "lat": 40.7410670, "lon": -73.9345501 }, + { "lat": 40.7409770, "lon": -73.9345658 }, + { "lat": 40.7409081, "lon": -73.9345791 }, + { "lat": 40.7409140, "lon": -73.9346305 }, + { "lat": 40.7406895, "lon": -73.9346758 }, + { "lat": 40.7406744, "lon": -73.9345538 }, + { "lat": 40.7406722, "lon": -73.9345360 }, + { "lat": 40.7406473, "lon": -73.9343903 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1509778529, + "bounds": { + "minlat": 40.7406744, + "minlon": -73.9345791, + "maxlat": 40.7409081, + "maxlon": -73.9345068 + }, + "nodes": [ + 13801396858, + 13801396864, + 13801396865 + ], + "geometry": [ + { "lat": 40.7409081, "lon": -73.9345791 }, + { "lat": 40.7408975, "lon": -73.9345068 }, + { "lat": 40.7406744, "lon": -73.9345538 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1509778530, + "bounds": { + "minlat": 40.7408788, + "minlon": -73.9345068, + "maxlat": 40.7408975, + "maxlon": -73.9343433 + }, + "nodes": [ + 13801396864, + 13801396867, + 13801396866 + ], + "geometry": [ + { "lat": 40.7408975, "lon": -73.9345068 }, + { "lat": 40.7408960, "lon": -73.9344939 }, + { "lat": 40.7408788, "lon": -73.9343433 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1510437854, + "bounds": { + "minlat": 40.8044920, + "minlon": -74.0186989, + "maxlat": 40.8045451, + "maxlon": -74.0185851 + }, + "nodes": [ + 103867731, + 5344617787 + ], + "geometry": [ + { "lat": 40.8044920, "lon": -74.0185851 }, + { "lat": 40.8045451, "lon": -74.0186989 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09081246", + "highway": "tertiary", + "name": "76th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1510441129, + "bounds": { + "minlat": 40.7473151, + "minlon": -73.9545487, + "maxlat": 40.7479144, + "maxlon": -73.9543036 + }, + "nodes": [ + 13807659447, + 13807659450, + 2479521952, + 13807659448, + 13807659447 + ], + "geometry": [ + { "lat": 40.7479144, "lon": -73.9543466 }, + { "lat": 40.7473244, "lon": -73.9545487 }, + { "lat": 40.7473151, "lon": -73.9545006 }, + { "lat": 40.7479069, "lon": -73.9543036 }, + { "lat": 40.7479144, "lon": -73.9543466 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1510497252, + "bounds": { + "minlat": 40.7405569, + "minlon": -73.9798746, + "maxlat": 40.7407067, + "maxlon": -73.9797659 + }, + "nodes": [ + 13808086033, + 13808086034, + 13808086035, + 13808086036 + ], + "geometry": [ + { "lat": 40.7407067, "lon": -73.9797659 }, + { "lat": 40.7406504, "lon": -73.9798062 }, + { "lat": 40.7406292, "lon": -73.9798228 }, + { "lat": 40.7405569, "lon": -73.9798746 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1510602900, + "bounds": { + "minlat": 40.8111289, + "minlon": -73.9147293, + "maxlat": 40.8112029, + "maxlon": -73.9143134 + }, + "nodes": [ + 13809174833, + 13809174836, + 13809174837, + 13809174834, + 13809174835 + ], + "geometry": [ + { "lat": 40.8112029, "lon": -73.9147293 }, + { "lat": 40.8111693, "lon": -73.9146320 }, + { "lat": 40.8111565, "lon": -73.9145949 }, + { "lat": 40.8111301, "lon": -73.9145182 }, + { "lat": 40.8111289, "lon": -73.9143134 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1510602903, + "bounds": { + "minlat": 40.8112021, + "minlon": -73.9175345, + "maxlat": 40.8113395, + "maxlon": -73.9171169 + }, + "nodes": [ + 13809174875, + 13809174876 + ], + "geometry": [ + { "lat": 40.8112021, "lon": -73.9171169 }, + { "lat": 40.8113395, "lon": -73.9175345 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1510674111, + "bounds": { + "minlat": 40.8095162, + "minlon": -73.9238523, + "maxlat": 40.8098277, + "maxlon": -73.9236401 + }, + "nodes": [ + 13809294790, + 13809294792, + 13809294791 + ], + "geometry": [ + { "lat": 40.8095162, "lon": -73.9238523 }, + { "lat": 40.8096046, "lon": -73.9237921 }, + { "lat": 40.8098277, "lon": -73.9236401 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1510674124, + "bounds": { + "minlat": 40.8175768, + "minlon": -73.9293352, + "maxlat": 40.8179081, + "maxlon": -73.9291807 + }, + "nodes": [ + 13809338750, + 13809338752, + 13809338751 + ], + "geometry": [ + { "lat": 40.8175768, "lon": -73.9293352 }, + { "lat": 40.8177223, "lon": -73.9292674 }, + { "lat": 40.8179081, "lon": -73.9291807 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1510674126, + "bounds": { + "minlat": 40.8319116, + "minlon": -73.9316605, + "maxlat": 40.8321873, + "maxlon": -73.9314008 + }, + "nodes": [ + 13809338790, + 13809338796, + 13809338791, + 13809338792 + ], + "geometry": [ + { "lat": 40.8321873, "lon": -73.9316605 }, + { "lat": 40.8321640, "lon": -73.9315850 }, + { "lat": 40.8321072, "lon": -73.9314008 }, + { "lat": 40.8319116, "lon": -73.9315062 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1510674127, + "bounds": { + "minlat": 40.8325965, + "minlon": -73.9303417, + "maxlat": 40.8329586, + "maxlon": -73.9300838 + }, + "nodes": [ + 13809338798, + 13809338799, + 13809338800 + ], + "geometry": [ + { "lat": 40.8329586, "lon": -73.9303417 }, + { "lat": 40.8328766, "lon": -73.9300838 }, + { "lat": 40.8325965, "lon": -73.9302394 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1510777572, + "bounds": { + "minlat": 40.8041201, + "minlon": -73.9582966, + "maxlat": 40.8041204, + "maxlon": -73.9582722 + }, + "nodes": [ + 13810018575, + 11971202160 + ], + "geometry": [ + { "lat": 40.8041204, "lon": -73.9582722 }, + { "lat": 40.8041201, "lon": -73.9582966 } + ], + "tags": { + "highway": "service", + "oneway": "no", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1510778273, + "bounds": { + "minlat": 40.8056136, + "minlon": -73.9581910, + "maxlat": 40.8059575, + "maxlon": -73.9579584 + }, + "nodes": [ + 42437196, + 1792521271, + 13810018576 + ], + "geometry": [ + { "lat": 40.8056136, "lon": -73.9581910 }, + { "lat": 40.8057177, "lon": -73.9581306 }, + { "lat": 40.8059575, "lon": -73.9579584 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lcn": "yes", + "name": "Morningside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1510778287, + "bounds": { + "minlat": 40.8059575, + "minlon": -73.9579584, + "maxlat": 40.8069224, + "maxlon": -73.9572588 + }, + "nodes": [ + 13810018576, + 42440112, + 11682734543, + 11682716957, + 42440122 + ], + "geometry": [ + { "lat": 40.8059575, "lon": -73.9579584 }, + { "lat": 40.8062968, "lon": -73.9577147 }, + { "lat": 40.8063541, "lon": -73.9576729 }, + { "lat": 40.8068774, "lon": -73.9572916 }, + { "lat": 40.8069224, "lon": -73.9572588 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "lcn": "yes", + "name": "Morningside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1510778305, + "bounds": { + "minlat": 40.8069224, + "minlon": -73.9572588, + "maxlat": 40.8072325, + "maxlon": -73.9570333 + }, + "nodes": [ + 42440122, + 8250876258, + 13810018577 + ], + "geometry": [ + { "lat": 40.8069224, "lon": -73.9572588 }, + { "lat": 40.8069866, "lon": -73.9572125 }, + { "lat": 40.8072325, "lon": -73.9570333 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lcn": "yes", + "name": "Morningside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1510778333, + "bounds": { + "minlat": 40.8072325, + "minlon": -73.9570333, + "maxlat": 40.8081780, + "maxlon": -73.9563424 + }, + "nodes": [ + 13810018577, + 11993275578, + 42440125, + 11993275577, + 7004396661, + 42429747 + ], + "geometry": [ + { "lat": 40.8072325, "lon": -73.9570333 }, + { "lat": 40.8075088, "lon": -73.9568321 }, + { "lat": 40.8075511, "lon": -73.9568013 }, + { "lat": 40.8076114, "lon": -73.9567574 }, + { "lat": 40.8081262, "lon": -73.9563825 }, + { "lat": 40.8081780, "lon": -73.9563424 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "2", + "lcn": "yes", + "name": "Morningside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1510778503, + "bounds": { + "minlat": 40.8081780, + "minlon": -73.9563424, + "maxlat": 40.8084851, + "maxlon": -73.9561181 + }, + "nodes": [ + 42429747, + 7004396659, + 13810010655 + ], + "geometry": [ + { "lat": 40.8081780, "lon": -73.9563424 }, + { "lat": 40.8082400, "lon": -73.9562970 }, + { "lat": 40.8084851, "lon": -73.9561181 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lcn": "yes", + "name": "Morningside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1510778994, + "bounds": { + "minlat": 40.8097580, + "minlon": -73.9551900, + "maxlat": 40.8100609, + "maxlon": -73.9549689 + }, + "nodes": [ + 13809919578, + 5706569356, + 10168029080, + 42438923 + ], + "geometry": [ + { "lat": 40.8097580, "lon": -73.9551900 }, + { "lat": 40.8099752, "lon": -73.9550319 }, + { "lat": 40.8100051, "lon": -73.9550077 }, + { "lat": 40.8100609, "lon": -73.9549689 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "lcn": "yes", + "name": "Morningside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1510778999, + "bounds": { + "minlat": 40.8094384, + "minlon": -73.9554225, + "maxlat": 40.8097580, + "maxlon": -73.9551900 + }, + "nodes": [ + 42440134, + 12000294668, + 13809919578 + ], + "geometry": [ + { "lat": 40.8094384, "lon": -73.9554225 }, + { "lat": 40.8094879, "lon": -73.9553865 }, + { "lat": 40.8097580, "lon": -73.9551900 } + ], + "tags": { + "bicycle": "designated", + "cycleway:both": "no", + "highway": "residential", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "2", + "lanes:forward": "1", + "lcn": "yes", + "name": "Morningside Avenue", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1511166386, + "bounds": { + "minlat": 40.8381261, + "minlon": -73.9337510, + "maxlat": 40.8387380, + "maxlon": -73.9334486 + }, + "nodes": [ + 13768867418, + 13768867419, + 13768867417, + 13768867420, + 42444581 + ], + "geometry": [ + { "lat": 40.8387380, "lon": -73.9334486 }, + { "lat": 40.8384941, "lon": -73.9335668 }, + { "lat": 40.8383883, "lon": -73.9336181 }, + { "lat": 40.8382697, "lon": -73.9336778 }, + { "lat": 40.8381261, "lon": -73.9337510 } + ], + "tags": { + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "Harlem River Drive", + "name:etymology:wikidata": "Q597451", + "oneway": "yes", + "ref": "HRD", + "surface": "asphalt", + "tiger:cfcc": "A41:A63", + "tiger:county": "New York, NY", + "tiger:name_base": "Harlem River", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 1511166782, + "bounds": { + "minlat": 40.8416021, + "minlon": -73.9454687, + "maxlat": 40.8418145, + "maxlon": -73.9454066 + }, + "nodes": [ + 60928432, + 7908589044 + ], + "geometry": [ + { "lat": 40.8416021, "lon": -73.9454687 }, + { "lat": 40.8418145, "lon": -73.9454066 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "2", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "toll": "no", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1511743252, + "bounds": { + "minlat": 40.8809959, + "minlon": -73.9461666, + "maxlat": 40.8810117, + "maxlon": -73.9461454 + }, + "nodes": [ + 103220889, + 13816161558 + ], + "geometry": [ + { "lat": 40.8809959, "lon": -73.9461666 }, + { "lat": 40.8810117, "lon": -73.9461454 } + ], + "tags": { + "bicycle": "yes", + "highway": "unclassified", + "lanes": "2", + "name": "Henry Hudson Drive", + "name:etymology:wikidata": "Q179167", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Bergen, NJ", + "tiger:name_base": "Henry Hudson", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 1512307022, + "bounds": { + "minlat": 40.8089273, + "minlon": -73.9595211, + "maxlat": 40.8093443, + "maxlon": -73.9592110 + }, + "nodes": [ + 13819573954, + 7004347451, + 1504153626 + ], + "geometry": [ + { "lat": 40.8089273, "lon": -73.9595211 }, + { "lat": 40.8092431, "lon": -73.9592869 }, + { "lat": 40.8093443, "lon": -73.9592110 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1512307206, + "bounds": { + "minlat": 40.8103676, + "minlon": -73.9584627, + "maxlat": 40.8106334, + "maxlon": -73.9582686 + }, + "nodes": [ + 13819634934, + 7198971058, + 3579432162 + ], + "geometry": [ + { "lat": 40.8103676, "lon": -73.9584627 }, + { "lat": 40.8105609, "lon": -73.9583231 }, + { "lat": 40.8106334, "lon": -73.9582686 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "3", + "lanes:backward": "1", + "lanes:forward": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1512308126, + "bounds": { + "minlat": 40.8146322, + "minlon": -73.9589171, + "maxlat": 40.8146560, + "maxlon": -73.9588548 + }, + "nodes": [ + 5481847043, + 13819649098 + ], + "geometry": [ + { "lat": 40.8146560, "lon": -73.9589171 }, + { "lat": 40.8146322, "lon": -73.9588548 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1512308127, + "bounds": { + "minlat": 40.8145933, + "minlon": -73.9587812, + "maxlat": 40.8146041, + "maxlon": -73.9587537 + }, + "nodes": [ + 7732654839, + 7598688496 + ], + "geometry": [ + { "lat": 40.8146041, "lon": -73.9587812 }, + { "lat": 40.8145933, "lon": -73.9587537 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1512308213, + "bounds": { + "minlat": 40.8126984, + "minlon": -73.9574484, + "maxlat": 40.8127680, + "maxlon": -73.9574002 + }, + "nodes": [ + 7620561447, + 13819650468 + ], + "geometry": [ + { "lat": 40.8126984, "lon": -73.9574484 }, + { "lat": 40.8127680, "lon": -73.9574002 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1512308214, + "bounds": { + "minlat": 40.8128028, + "minlon": -73.9573761, + "maxlat": 40.8128425, + "maxlon": -73.9573486 + }, + "nodes": [ + 13819650469, + 7620561449 + ], + "geometry": [ + { "lat": 40.8128028, "lon": -73.9573761 }, + { "lat": 40.8128425, "lon": -73.9573486 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1512308998, + "bounds": { + "minlat": 40.8087553, + "minlon": -73.9597246, + "maxlat": 40.8087852, + "maxlon": -73.9596506 + }, + "nodes": [ + 42442578, + 13819601126 + ], + "geometry": [ + { "lat": 40.8087553, "lon": -73.9596506 }, + { "lat": 40.8087852, "lon": -73.9597246 } + ], + "tags": { + "highway": "service", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1513155012, + "bounds": { + "minlat": 40.8498486, + "minlon": -73.9349596, + "maxlat": 40.8528980, + "maxlon": -73.9327250 + }, + "nodes": [ + 42444069, + 9550791859, + 9550791868, + 42449639, + 9550791867, + 9550791876, + 42438199, + 9550791875, + 9563795510, + 42449641, + 9563795509, + 9563795522, + 42449644, + 9563795521, + 9563795404, + 42445680 + ], + "geometry": [ + { "lat": 40.8498486, "lon": -73.9349596 }, + { "lat": 40.8499236, "lon": -73.9349049 }, + { "lat": 40.8503724, "lon": -73.9345766 }, + { "lat": 40.8504170, "lon": -73.9345440 }, + { "lat": 40.8504738, "lon": -73.9345019 }, + { "lat": 40.8509586, "lon": -73.9341441 }, + { "lat": 40.8510210, "lon": -73.9340980 }, + { "lat": 40.8511094, "lon": -73.9340339 }, + { "lat": 40.8515634, "lon": -73.9337044 }, + { "lat": 40.8516150, "lon": -73.9336670 }, + { "lat": 40.8516757, "lon": -73.9336223 }, + { "lat": 40.8521456, "lon": -73.9332757 }, + { "lat": 40.8522130, "lon": -73.9332260 }, + { "lat": 40.8522903, "lon": -73.9331695 }, + { "lat": 40.8528437, "lon": -73.9327647 }, + { "lat": 40.8528980, "lon": -73.9327250 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Wadsworth Avenue", + "name:etymology:wikidata": "Q2339186", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 1513155013, + "bounds": { + "minlat": 40.8528980, + "minlon": -73.9327250, + "maxlat": 40.8535820, + "maxlon": -73.9322280 + }, + "nodes": [ + 42445680, + 9563795403, + 8740550853, + 42436293 + ], + "geometry": [ + { "lat": 40.8528980, "lon": -73.9327250 }, + { "lat": 40.8529621, "lon": -73.9326784 }, + { "lat": 40.8535095, "lon": -73.9322807 }, + { "lat": 40.8535820, "lon": -73.9322280 } + ], + "tags": { + "highway": "tertiary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Wadsworth Avenue", + "name:etymology:wikidata": "Q2339186", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Wadsworth", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_right": "10040" + } +}, +{ + "type": "way", + "id": 1513369746, + "bounds": { + "minlat": 40.7962769, + "minlon": -74.0156430, + "maxlat": 40.7964574, + "maxlon": -74.0153958 + }, + "nodes": [ + 13826822476, + 13826822477, + 13826822478, + 13826822479 + ], + "geometry": [ + { "lat": 40.7964574, "lon": -74.0153958 }, + { "lat": 40.7964142, "lon": -74.0154275 }, + { "lat": 40.7962769, "lon": -74.0155398 }, + { "lat": 40.7963212, "lon": -74.0156430 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1513717377, + "bounds": { + "minlat": 40.8429382, + "minlon": -73.9346816, + "maxlat": 40.8432972, + "maxlon": -73.9344187 + }, + "nodes": [ + 42429452, + 8723021872, + 13829077726 + ], + "geometry": [ + { "lat": 40.8429382, "lon": -73.9346816 }, + { "lat": 40.8430192, "lon": -73.9346223 }, + { "lat": 40.8432972, "lon": -73.9344187 } + ], + "tags": { + "cycleway:both:lane": "pictogram", + "cycleway:left": "lane", + "cycleway:left:oneway": "-1", + "cycleway:right": "shared_lane", + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1513717378, + "bounds": { + "minlat": 40.8432972, + "minlon": -73.9344187, + "maxlat": 40.8435820, + "maxlon": -73.9342105 + }, + "nodes": [ + 13829077726, + 8723021867, + 42442723 + ], + "geometry": [ + { "lat": 40.8432972, "lon": -73.9344187 }, + { "lat": 40.8435237, "lon": -73.9342529 }, + { "lat": 40.8435820, "lon": -73.9342105 } + ], + "tags": { + "cycleway:both": "shared_lane", + "cycleway:both:lane": "pictogram", + "hgv": "local", + "highway": "secondary", + "lanes": "4", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Amsterdam", + "tiger:name_type": "Ave", + "tiger:zip_left": "10040", + "tiger:zip_left_1": "10040", + "turn:lanes:backward": "|merge_to_left", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1513890525, + "bounds": { + "minlat": 40.7972249, + "minlon": -74.0156608, + "maxlat": 40.7973426, + "maxlon": -74.0153669 + }, + "nodes": [ + 13830089497, + 13830114703, + 13830089498, + 13830089499 + ], + "geometry": [ + { "lat": 40.7972849, "lon": -74.0153669 }, + { "lat": 40.7973090, "lon": -74.0154680 }, + { "lat": 40.7973426, "lon": -74.0155939 }, + { "lat": 40.7972249, "lon": -74.0156608 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1513890526, + "bounds": { + "minlat": 40.7973426, + "minlon": -74.0155939, + "maxlat": 40.7975015, + "maxlon": -74.0154886 + }, + "nodes": [ + 13830089498, + 13830089500, + 13830114702, + 13830114701 + ], + "geometry": [ + { "lat": 40.7973426, "lon": -74.0155939 }, + { "lat": 40.7973774, "lon": -74.0155875 }, + { "lat": 40.7974660, "lon": -74.0155154 }, + { "lat": 40.7975015, "lon": -74.0154886 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1513934402, + "bounds": { + "minlat": 40.7512083, + "minlon": -73.9725186, + "maxlat": 40.7513601, + "maxlon": -73.9724485 + }, + "nodes": [ + 13052507043, + 13830413184, + 9578369185 + ], + "geometry": [ + { "lat": 40.7513601, "lon": -73.9724485 }, + { "lat": 40.7512887, "lon": -73.9724691 }, + { "lat": 40.7512083, "lon": -73.9725186 } + ], + "tags": { + "highway": "service" + } +}, +{ + "type": "way", + "id": 1514903808, + "bounds": { + "minlat": 40.7981534, + "minlon": -73.9599664, + "maxlat": 40.7983246, + "maxlon": -73.9598317 + }, + "nodes": [ + 7784826655, + 11807757983 + ], + "geometry": [ + { "lat": 40.7981534, "lon": -73.9599664 }, + { "lat": 40.7983246, "lon": -73.9598317 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "no", + "cycleway:right": "shared_lane", + "cycleway:right:lane": "pictogram", + "cycleway:right:oneway": "yes", + "hgv": "no", + "highway": "secondary", + "lane_markings": "yes", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Central Park West", + "name:ru": "Сентрал-Парк-Уэст", + "parking:left": "lane", + "parking:left:orientation": "parallel", + "parking:right": "no", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q109951", + "wikipedia": "en:Eighth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1515002102, + "bounds": { + "minlat": 40.7353940, + "minlon": -73.9746406, + "maxlat": 40.7354629, + "maxlon": -73.9744735 + }, + "nodes": [ + 13837909551, + 13837909552, + 13837909553, + 13837909554, + 13837909555 + ], + "geometry": [ + { "lat": 40.7354629, "lon": -73.9744735 }, + { "lat": 40.7354594, "lon": -73.9745121 }, + { "lat": 40.7354497, "lon": -73.9745537 }, + { "lat": 40.7354400, "lon": -73.9745762 }, + { "lat": 40.7353940, "lon": -73.9746406 } + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1515002103, + "bounds": { + "minlat": 40.7353742, + "minlon": -73.9747878, + "maxlat": 40.7353940, + "maxlon": -73.9746406 + }, + "nodes": [ + 5137747688, + 5137714768, + 13837909598, + 13837909555 + ], + "geometry": [ + { "lat": 40.7353742, "lon": -73.9747878 }, + { "lat": 40.7353859, "lon": -73.9746898 }, + { "lat": 40.7353908, "lon": -73.9746602 }, + { "lat": 40.7353940, "lon": -73.9746406 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1515002105, + "bounds": { + "minlat": 40.7354563, + "minlon": -73.9751612, + "maxlat": 40.7359054, + "maxlon": -73.9751239 + }, + "nodes": [ + 589100228, + 9141029076, + 13837909581, + 42451021, + 9141016319, + 3360772889, + 42448714 + ], + "geometry": [ + { "lat": 40.7359054, "lon": -73.9751612 }, + { "lat": 40.7358761, "lon": -73.9751586 }, + { "lat": 40.7358438, "lon": -73.9751545 }, + { "lat": 40.7357298, "lon": -73.9751401 }, + { "lat": 40.7356380, "lon": -73.9751249 }, + { "lat": 40.7355897, "lon": -73.9751239 }, + { "lat": 40.7354563, "lon": -73.9751359 } + ], + "tags": { + "hgv": "destination", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "F D R", + "tiger:name_type": "Dr", + "tiger:reviewed": "no", + "tiger:zip_left": "10010", + "tiger:zip_left_1": "10010" + } +}, +{ + "type": "way", + "id": 1515002114, + "bounds": { + "minlat": 40.7328362, + "minlon": -73.9747361, + "maxlat": 40.7347630, + "maxlon": -73.9742508 + }, + "nodes": [ + 13837911236, + 13837911235 + ], + "geometry": [ + { "lat": 40.7347630, "lon": -73.9747361 }, + { "lat": 40.7328362, "lon": -73.9742508 } + ], + "tags": { + "access": "customers", + "covered": "yes", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1515002115, + "bounds": { + "minlat": 40.7347630, + "minlon": -73.9749302, + "maxlat": 40.7349006, + "maxlon": -73.9747361 + }, + "nodes": [ + 13837911236, + 13837911237, + 13837911238, + 5137743342 + ], + "geometry": [ + { "lat": 40.7347630, "lon": -73.9747361 }, + { "lat": 40.7348064, "lon": -73.9747653 }, + { "lat": 40.7348271, "lon": -73.9747908 }, + { "lat": 40.7349006, "lon": -73.9749302 } + ], + "tags": { + "access": "customers", + "covered": "yes", + "highway": "service", + "oneway": "yes", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1515002116, + "bounds": { + "minlat": 40.7347630, + "minlon": -73.9747361, + "maxlat": 40.7350975, + "maxlon": -73.9744981 + }, + "nodes": [ + 5137714780, + 13837911243, + 13837911244, + 13837911240, + 13837911250, + 13837911239, + 13837911281, + 13837911251, + 13837911242, + 13837911241, + 13837911236 + ], + "geometry": [ + { "lat": 40.7350975, "lon": -73.9745131 }, + { "lat": 40.7350170, "lon": -73.9744981 }, + { "lat": 40.7349687, "lon": -73.9745001 }, + { "lat": 40.7349296, "lon": -73.9745125 }, + { "lat": 40.7348838, "lon": -73.9745386 }, + { "lat": 40.7348101, "lon": -73.9745838 }, + { "lat": 40.7347940, "lon": -73.9746012 }, + { "lat": 40.7347904, "lon": -73.9746051 }, + { "lat": 40.7347850, "lon": -73.9746109 }, + { "lat": 40.7347764, "lon": -73.9746364 }, + { "lat": 40.7347630, "lon": -73.9747361 } + ], + "tags": { + "access": "customers", + "highway": "service", + "oneway": "yes", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1515002117, + "bounds": { + "minlat": 40.7350975, + "minlon": -73.9745415, + "maxlat": 40.7352079, + "maxlon": -73.9745131 + }, + "nodes": [ + 5137714773, + 5137714780 + ], + "geometry": [ + { "lat": 40.7352079, "lon": -73.9745415 }, + { "lat": 40.7350975, "lon": -73.9745131 } + ], + "tags": { + "access": "customers", + "covered": "yes", + "highway": "service", + "service": "driveway", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1515002138, + "bounds": { + "minlat": 40.7327384, + "minlon": -73.9748737, + "maxlat": 40.7328793, + "maxlon": -73.9744408 + }, + "nodes": [ + 42439191, + 13837911386, + 13837911385, + 13837911397, + 13837911382, + 13837911383, + 13837911380 + ], + "geometry": [ + { "lat": 40.7327384, "lon": -73.9744408 }, + { "lat": 40.7327667, "lon": -73.9744968 }, + { "lat": 40.7327914, "lon": -73.9745525 }, + { "lat": 40.7328062, "lon": -73.9745930 }, + { "lat": 40.7328224, "lon": -73.9746372 }, + { "lat": 40.7328372, "lon": -73.9746877 }, + { "lat": 40.7328793, "lon": -73.9748737 } + ], + "tags": { + "cycleway:left": "no", + "cycleway:right": "separate", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1515002139, + "bounds": { + "minlat": 40.7327235, + "minlon": -73.9748737, + "maxlat": 40.7328793, + "maxlon": -73.9744408 + }, + "nodes": [ + 13837911380, + 13837911384, + 13837911381, + 12179607162, + 3686061920, + 9140927084, + 9140927085, + 9140927086, + 42439191 + ], + "geometry": [ + { "lat": 40.7328793, "lon": -73.9748737 }, + { "lat": 40.7327832, "lon": -73.9746967 }, + { "lat": 40.7327631, "lon": -73.9746509 }, + { "lat": 40.7327532, "lon": -73.9746276 }, + { "lat": 40.7327333, "lon": -73.9745722 }, + { "lat": 40.7327266, "lon": -73.9745431 }, + { "lat": 40.7327235, "lon": -73.9745124 }, + { "lat": 40.7327278, "lon": -73.9744799 }, + { "lat": 40.7327384, "lon": -73.9744408 } + ], + "tags": { + "cycleway": "no", + "highway": "tertiary", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 20th Street", + "name:ru": "Восточная 20-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1515002142, + "bounds": { + "minlat": 40.7327384, + "minlon": -73.9744408, + "maxlat": 40.7327627, + "maxlon": -73.9742309 + }, + "nodes": [ + 42439191, + 13837911396, + 13837911234 + ], + "geometry": [ + { "lat": 40.7327384, "lon": -73.9744408 }, + { "lat": 40.7327506, "lon": -73.9743363 }, + { "lat": 40.7327627, "lon": -73.9742309 } + ], + "tags": { + "access": "customers", + "covered": "yes", + "highway": "service", + "service": "driveway", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1515002143, + "bounds": { + "minlat": 40.7315300, + "minlon": -73.9742508, + "maxlat": 40.7328362, + "maxlon": -73.9739062 + }, + "nodes": [ + 13837911235, + 13837911234, + 13837911402, + 13837911399 + ], + "geometry": [ + { "lat": 40.7328362, "lon": -73.9742508 }, + { "lat": 40.7327627, "lon": -73.9742309 }, + { "lat": 40.7326087, "lon": -73.9741904 }, + { "lat": 40.7315300, "lon": -73.9739062 } + ], + "tags": { + "access": "customers", + "covered": "yes", + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1515002156, + "bounds": { + "minlat": 40.7278783, + "minlon": -73.9722000, + "maxlat": 40.7293160, + "maxlon": -73.9719259 + }, + "nodes": [ + 274337154, + 589100779, + 13837911523, + 1991212095, + 1991212130, + 589100791, + 13837911515, + 13837911514, + 13837911513, + 13837911512, + 13837911511, + 1991212105 + ], + "geometry": [ + { "lat": 40.7278801, "lon": -73.9722000 }, + { "lat": 40.7278783, "lon": -73.9721155 }, + { "lat": 40.7278890, "lon": -73.9720668 }, + { "lat": 40.7279121, "lon": -73.9720203 }, + { "lat": 40.7279606, "lon": -73.9719792 }, + { "lat": 40.7280283, "lon": -73.9719585 }, + { "lat": 40.7283325, "lon": -73.9719359 }, + { "lat": 40.7284951, "lon": -73.9719309 }, + { "lat": 40.7287725, "lon": -73.9719259 }, + { "lat": 40.7290215, "lon": -73.9719333 }, + { "lat": 40.7291912, "lon": -73.9719459 }, + { "lat": 40.7293160, "lon": -73.9719616 } + ], + "tags": { + "access": "no", + "highway": "service", + "lanes": "2", + "maxspeed": "25 mph", + "name": "East 15th Street", + "name:ru": "Восточная 15-я стрит", + "name_1": "East 15 Street", + "oneway": "-1", + "surface": "paved" + } +}, +{ + "type": "way", + "id": 1515051836, + "bounds": { + "minlat": 40.8115152, + "minlon": -73.9360360, + "maxlat": 40.8119805, + "maxlon": -73.9349267 + }, + "nodes": [ + 2481877063, + 9559342280, + 7616586195, + 9902223897, + 9559342302, + 589928047 + ], + "geometry": [ + { "lat": 40.8119805, "lon": -73.9360360 }, + { "lat": 40.8119512, "lon": -73.9359770 }, + { "lat": 40.8117390, "lon": -73.9354638 }, + { "lat": 40.8115779, "lon": -73.9350771 }, + { "lat": 40.8115600, "lon": -73.9350342 }, + { "lat": 40.8115152, "lon": -73.9349267 } + ], + "tags": { + "highway": "residential", + "maxspeed": "25 mph", + "name": "East 135th Street", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1515490424, + "bounds": { + "minlat": 40.8104994, + "minlon": -73.9619636, + "maxlat": 40.8111729, + "maxlon": -73.9614867 + }, + "nodes": [ + 1504153604, + 11851500947, + 9518259636, + 561035338 + ], + "geometry": [ + { "lat": 40.8104994, "lon": -73.9619636 }, + { "lat": 40.8105956, "lon": -73.9618956 }, + { "lat": 40.8111139, "lon": -73.9615299 }, + { "lat": 40.8111729, "lon": -73.9614867 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1515490486, + "bounds": { + "minlat": 40.8111729, + "minlon": -73.9614867, + "maxlat": 40.8114371, + "maxlon": -73.9612774 + }, + "nodes": [ + 561035338, + 9518259631, + 6886294965, + 6886294955, + 13840703534 + ], + "geometry": [ + { "lat": 40.8111729, "lon": -73.9614867 }, + { "lat": 40.8112311, "lon": -73.9614440 }, + { "lat": 40.8113027, "lon": -73.9613910 }, + { "lat": 40.8114042, "lon": -73.9613049 }, + { "lat": 40.8114371, "lon": -73.9612774 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "local", + "highway": "primary", + "lane_markings": "yes", + "lanes": "3", + "name": "Broadway", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1515601389, + "bounds": { + "minlat": 40.7127851, + "minlon": -73.9853327, + "maxlat": 40.7129243, + "maxlon": -73.9850563 + }, + "nodes": [ + 13841278622, + 13841191196, + 13841191200, + 13841278609, + 13841191190 + ], + "geometry": [ + { "lat": 40.7128045, "lon": -73.9850563 }, + { "lat": 40.7127955, "lon": -73.9851418 }, + { "lat": 40.7127930, "lon": -73.9851847 }, + { "lat": 40.7127851, "lon": -73.9853188 }, + { "lat": 40.7129243, "lon": -73.9853327 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1516623741, + "bounds": { + "minlat": 40.7245406, + "minlon": -74.0077594, + "maxlat": 40.7245758, + "maxlon": -74.0074057 + }, + "nodes": [ + 13846767106, + 8304498427, + 42432116 + ], + "geometry": [ + { "lat": 40.7245406, "lon": -74.0074057 }, + { "lat": 40.7245668, "lon": -74.0076635 }, + { "lat": 40.7245758, "lon": -74.0077594 } + ], + "tags": { + "access": "destination", + "highway": "service", + "maxspeed": "20 mph", + "name": "Broome Street", + "name:etymology:wikidata": "Q1699423", + "name:ko": "브룸 스트리트", + "name:ru": "Брум-стрит", + "oneway": "no", + "surface": "paving_stones", + "wikidata": "Q917139", + "wikipedia": "en:Broome Street" + } +}, +{ + "type": "way", + "id": 1516623742, + "bounds": { + "minlat": 40.7245406, + "minlon": -74.0074057, + "maxlat": 40.7246139, + "maxlon": -74.0073944 + }, + "nodes": [ + 13846767106, + 13846767113, + 13846767107 + ], + "geometry": [ + { "lat": 40.7245406, "lon": -74.0074057 }, + { "lat": 40.7246010, "lon": -74.0073962 }, + { "lat": 40.7246139, "lon": -74.0073944 } + ], + "tags": { + "access": "private", + "highway": "service", + "service": "driveway", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1516623780, + "bounds": { + "minlat": 40.7243190, + "minlon": -74.0063047, + "maxlat": 40.7244146, + "maxlon": -74.0061317 + }, + "nodes": [ + 13846767369, + 13846767370, + 13036719839, + 13846767371, + 13846767372, + 13846767373, + 13036719840, + 13846767374, + 13846767375, + 13846767318, + 3358631893, + 13846767320, + 13846767319, + 13846767321, + 13846767376, + 3358631894, + 13846767369 + ], + "geometry": [ + { "lat": 40.7243935, "lon": -74.0062929 }, + { "lat": 40.7244146, "lon": -74.0062655 }, + { "lat": 40.7244059, "lon": -74.0061612 }, + { "lat": 40.7244056, "lon": -74.0061502 }, + { "lat": 40.7244025, "lon": -74.0061343 }, + { "lat": 40.7243977, "lon": -74.0061317 }, + { "lat": 40.7243816, "lon": -74.0061630 }, + { "lat": 40.7243199, "lon": -74.0062811 }, + { "lat": 40.7243190, "lon": -74.0063047 }, + { "lat": 40.7243357, "lon": -74.0062807 }, + { "lat": 40.7243535, "lon": -74.0062650 }, + { "lat": 40.7243638, "lon": -74.0062572 }, + { "lat": 40.7243762, "lon": -74.0062585 }, + { "lat": 40.7243852, "lon": -74.0062656 }, + { "lat": 40.7243917, "lon": -74.0062811 }, + { "lat": 40.7243929, "lon": -74.0062857 }, + { "lat": 40.7243935, "lon": -74.0062929 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1516623786, + "bounds": { + "minlat": 40.7238622, + "minlon": -74.0063215, + "maxlat": 40.7243480, + "maxlon": -74.0060560 + }, + "nodes": [ + 3358631418, + 13036657901, + 13846767459, + 13846767460, + 13846767461, + 13846767462, + 4890333644, + 13846767463, + 13846767464, + 13036626674, + 13846767465, + 13846767466, + 13846767467, + 4890633702, + 13846767395, + 3358631416, + 13036626676, + 13846767396, + 3358631417, + 13846767397, + 3358631424, + 13846767379, + 3358631423, + 13846767378, + 13846767377, + 3358631418 + ], + "geometry": [ + { "lat": 40.7242828, "lon": -74.0061942 }, + { "lat": 40.7243033, "lon": -74.0061577 }, + { "lat": 40.7243451, "lon": -74.0060794 }, + { "lat": 40.7243480, "lon": -74.0060643 }, + { "lat": 40.7243457, "lon": -74.0060568 }, + { "lat": 40.7243403, "lon": -74.0060560 }, + { "lat": 40.7242985, "lon": -74.0060657 }, + { "lat": 40.7241376, "lon": -74.0060938 }, + { "lat": 40.7239874, "lon": -74.0061285 }, + { "lat": 40.7238811, "lon": -74.0061580 }, + { "lat": 40.7238713, "lon": -74.0061607 }, + { "lat": 40.7238630, "lon": -74.0061674 }, + { "lat": 40.7238622, "lon": -74.0061788 }, + { "lat": 40.7238682, "lon": -74.0062006 }, + { "lat": 40.7239015, "lon": -74.0063215 }, + { "lat": 40.7238993, "lon": -74.0062939 }, + { "lat": 40.7239031, "lon": -74.0062662 }, + { "lat": 40.7239105, "lon": -74.0062428 }, + { "lat": 40.7239258, "lon": -74.0062204 }, + { "lat": 40.7239462, "lon": -74.0061992 }, + { "lat": 40.7239688, "lon": -74.0061909 }, + { "lat": 40.7242611, "lon": -74.0061439 }, + { "lat": 40.7242742, "lon": -74.0061478 }, + { "lat": 40.7242824, "lon": -74.0061563 }, + { "lat": 40.7242862, "lon": -74.0061744 }, + { "lat": 40.7242828, "lon": -74.0061942 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1516623790, + "bounds": { + "minlat": 40.7239174, + "minlon": -74.0065040, + "maxlat": 40.7242423, + "maxlon": -74.0062175 + }, + "nodes": [ + 13846767490, + 13846767422, + 13846767421, + 13846767446, + 13846767447, + 13846767445, + 13846767474, + 13846767473, + 13846767472, + 13846767471, + 13846767442, + 13846767468, + 13846767441, + 13846767500, + 13846767499, + 13846767498, + 13846767497, + 13846767496, + 13846767495, + 13846767494, + 13846767493, + 13846767492, + 13846767491, + 13846767490 + ], + "geometry": [ + { "lat": 40.7242204, "lon": -74.0062721 }, + { "lat": 40.7242301, "lon": -74.0062451 }, + { "lat": 40.7242423, "lon": -74.0062175 }, + { "lat": 40.7240939, "lon": -74.0062425 }, + { "lat": 40.7240743, "lon": -74.0062462 }, + { "lat": 40.7240546, "lon": -74.0062498 }, + { "lat": 40.7240088, "lon": -74.0062591 }, + { "lat": 40.7240061, "lon": -74.0062350 }, + { "lat": 40.7239607, "lon": -74.0062435 }, + { "lat": 40.7239670, "lon": -74.0062987 }, + { "lat": 40.7239174, "lon": -74.0063070 }, + { "lat": 40.7239229, "lon": -74.0063317 }, + { "lat": 40.7239283, "lon": -74.0063565 }, + { "lat": 40.7239771, "lon": -74.0063465 }, + { "lat": 40.7240009, "lon": -74.0063947 }, + { "lat": 40.7239927, "lon": -74.0064036 }, + { "lat": 40.7240245, "lon": -74.0064492 }, + { "lat": 40.7240316, "lon": -74.0064402 }, + { "lat": 40.7240555, "lon": -74.0064756 }, + { "lat": 40.7240607, "lon": -74.0065040 }, + { "lat": 40.7241042, "lon": -74.0064970 }, + { "lat": 40.7240997, "lon": -74.0064616 }, + { "lat": 40.7241448, "lon": -74.0062854 }, + { "lat": 40.7242204, "lon": -74.0062721 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "fine_gravel" + } +}, +{ + "type": "way", + "id": 1517737468, + "bounds": { + "minlat": 40.7255130, + "minlon": -74.0045513, + "maxlat": 40.7255633, + "maxlon": -74.0040310 + }, + "nodes": [ + 42430102, + 4890320304, + 42430154 + ], + "geometry": [ + { "lat": 40.7255633, "lon": -74.0045513 }, + { "lat": 40.7255275, "lon": -74.0041846 }, + { "lat": 40.7255130, "lon": -74.0040310 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "maxspeed": "25 mph", + "name": "Spring Street", + "name:ko": "스프링 스트리트", + "name:ru": "Спринг-стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q7580682", + "wikipedia": "en:Spring Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1517889817, + "bounds": { + "minlat": 40.7997050, + "minlon": -73.9701839, + "maxlat": 40.7997960, + "maxlon": -73.9699722 + }, + "nodes": [ + 42431113, + 6880029883, + 13854932483 + ], + "geometry": [ + { "lat": 40.7997050, "lon": -73.9699722 }, + { "lat": 40.7997574, "lon": -73.9700924 }, + { "lat": 40.7997960, "lon": -73.9701839 } + ], + "tags": { + "cycleway": "shared_lane", + "highway": "living_street", + "lane_markings": "no", + "maxspeed": "10 mph", + "maxspeed:conditional": "5 mph @ (08:00-20:00)", + "motor_vehicle:conditional": "destination @ (08:00-20:00)", + "name": "West 103rd Street", + "name:ru": "Западная 103-я стрит", + "oneway": "yes", + "surface": "asphalt", + "width": "8.5" + } +}, +{ + "type": "way", + "id": 1518197559, + "bounds": { + "minlat": 40.8044317, + "minlon": -74.0185851, + "maxlat": 40.8044920, + "maxlon": -74.0184303 + }, + "nodes": [ + 11499493870, + 13525592750, + 103867731 + ], + "geometry": [ + { "lat": 40.8044317, "lon": -74.0184303 }, + { "lat": 40.8044640, "lon": -74.0185132 }, + { "lat": 40.8044920, "lon": -74.0185851 } + ], + "tags": { + "HFCS": "Urban Local", + "NJDOT_SRI": "09081246", + "highway": "tertiary", + "name": "76th Street", + "tiger:cfcc": "A41", + "tiger:county": "Hudson, NJ", + "tiger:name_base": "76th", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "07047", + "tiger:zip_right": "07047" + } +}, +{ + "type": "way", + "id": 1518467582, + "bounds": { + "minlat": 40.8656310, + "minlon": -73.9284054, + "maxlat": 40.8658894, + "maxlon": -73.9282623 + }, + "nodes": [ + 5490791117, + 9561395290, + 1763749981, + 42441009 + ], + "geometry": [ + { "lat": 40.8658894, "lon": -73.9282623 }, + { "lat": 40.8657492, "lon": -73.9283721 }, + { "lat": 40.8657318, "lon": -73.9283857 }, + { "lat": 40.8656310, "lon": -73.9284054 } + ], + "tags": { + "hgv": "destination", + "highway": "secondary", + "lanes": "2", + "maxspeed": "20 mph", + "name": "Seaman Avenue", + "oneway": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Seaman", + "tiger:name_type": "Ave", + "tiger:zip_left": "10034", + "tiger:zip_right": "10034" + } +}, +{ + "type": "way", + "id": 1518467583, + "bounds": { + "minlat": 40.8658894, + "minlon": -73.9283745, + "maxlat": 40.8659429, + "maxlon": -73.9282623 + }, + "nodes": [ + 5490791118, + 9561395247, + 5490791117 + ], + "geometry": [ + { "lat": 40.8659429, "lon": -73.9283745 }, + { "lat": 40.8659348, "lon": -73.9283575 }, + { "lat": 40.8658894, "lon": -73.9282623 } + ], + "tags": { + "highway": "service", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1518467584, + "bounds": { + "minlat": 40.8655045, + "minlon": -73.9280646, + "maxlat": 40.8655549, + "maxlon": -73.9272714 + }, + "nodes": [ + 595729838, + 9561395281, + 1764661149, + 42429215 + ], + "geometry": [ + { "lat": 40.8655549, "lon": -73.9280646 }, + { "lat": 40.8655059, "lon": -73.9275315 }, + { "lat": 40.8655045, "lon": -73.9275160 }, + { "lat": 40.8655306, "lon": -73.9272714 } + ], + "tags": { + "bicycle": "designated", + "hgv": "destination", + "highway": "primary", + "name": "Riverside Drive", + "name:ru": "Риверсайд-драйв", + "network": "lcn", + "oneway": "yes", + "route": "bicycle", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "New York, NY", + "tiger:name_base": "Riverside", + "tiger:name_type": "Dr" + } +}, +{ + "type": "way", + "id": 1518515021, + "bounds": { + "minlat": 40.7521783, + "minlon": -74.0009054, + "maxlat": 40.7522461, + "maxlon": -74.0008579 + }, + "nodes": [ + 358448163, + 1701844618 + ], + "geometry": [ + { "lat": 40.7521783, "lon": -74.0009054 }, + { "lat": 40.7522461, "lon": -74.0008579 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "|||right", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1518515022, + "bounds": { + "minlat": 40.7520747, + "minlon": -74.0009801, + "maxlat": 40.7521783, + "maxlon": -74.0009054 + }, + "nodes": [ + 42437693, + 10171326405, + 358448163 + ], + "geometry": [ + { "lat": 40.7520747, "lon": -74.0009801 }, + { "lat": 40.7521228, "lon": -74.0009444 }, + { "lat": 40.7521783, "lon": -74.0009054 } + ], + "tags": { + "covered": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|||right", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1518515023, + "bounds": { + "minlat": 40.7589842, + "minlon": -73.9959405, + "maxlat": 40.7591352, + "maxlon": -73.9958288 + }, + "nodes": [ + 42455751, + 10169614504, + 13859163543 + ], + "geometry": [ + { "lat": 40.7589842, "lon": -73.9959405 }, + { "lat": 40.7590608, "lon": -73.9958827 }, + { "lat": 40.7591352, "lon": -73.9958288 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:separation": "flex_post", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left||||right", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1518515024, + "bounds": { + "minlat": 40.7596264, + "minlon": -73.9954726, + "maxlat": 40.7606089, + "maxlon": -73.9947558 + }, + "nodes": [ + 42437371, + 10168212450, + 12810580298, + 42454433, + 12810580296, + 13859163544 + ], + "geometry": [ + { "lat": 40.7596264, "lon": -73.9954726 }, + { "lat": 40.7597366, "lon": -73.9953922 }, + { "lat": 40.7602465, "lon": -73.9950199 }, + { "lat": 40.7603122, "lon": -73.9949720 }, + { "lat": 40.7603671, "lon": -73.9949320 }, + { "lat": 40.7606089, "lon": -73.9947558 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "width": "69'6\"", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1518515025, + "bounds": { + "minlat": 40.7606089, + "minlon": -73.9947558, + "maxlat": 40.7609247, + "maxlon": -73.9945259 + }, + "nodes": [ + 13859163544, + 10168047543, + 42443563 + ], + "geometry": [ + { "lat": 40.7606089, "lon": -73.9947558 }, + { "lat": 40.7608700, "lon": -73.9945655 }, + { "lat": 40.7609247, "lon": -73.9945259 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:left:traffic_mode": "parking", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lit": "yes", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "|||right", + "width": "69'6\"", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1518519212, + "bounds": { + "minlat": 40.7402910, + "minlon": -74.0061308, + "maxlat": 40.7403827, + "maxlon": -74.0059134 + }, + "nodes": [ + 4557517555, + 8262308686, + 13859173272 + ], + "geometry": [ + { "lat": 40.7402910, "lon": -74.0059134 }, + { "lat": 40.7403255, "lon": -74.0059951 }, + { "lat": 40.7403827, "lon": -74.0061308 } + ], + "tags": { + "bicycle": "designated", + "cycleway:right": "lane", + "cycleway:right:surface": "paving_stones", + "highway": "residential", + "lane_markings": "no", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:conditional": "no @ (We-Fr 14:00-22:00; Sa-Su 12:00-22:00))", + "name": "West 13th Street", + "name:ru": "Западная 13-я стрит", + "name_1": "West 13 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett" + } +}, +{ + "type": "way", + "id": 1521241702, + "bounds": { + "minlat": 40.7245983, + "minlon": -73.9177689, + "maxlat": 40.7250570, + "maxlon": -73.9176146 + }, + "nodes": [ + 13875644245, + 13875644246 + ], + "geometry": [ + { "lat": 40.7245983, "lon": -73.9177689 }, + { "lat": 40.7250570, "lon": -73.9176146 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1521339218, + "bounds": { + "minlat": 40.7208551, + "minlon": -73.9632038, + "maxlat": 40.7212565, + "maxlon": -73.9625537 + }, + "nodes": [ + 5082129666, + 1422507548 + ], + "geometry": [ + { "lat": 40.7212565, "lon": -73.9632038 }, + { "lat": 40.7208551, "lon": -73.9625537 } + ], + "tags": { + "highway": "residential", + "name": "North 7th Street", + "sidewalk": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "7th", + "tiger:name_direction_prefix": "N", + "tiger:name_type": "St", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1522184736, + "bounds": { + "minlat": 40.7898600, + "minlon": -73.9294732, + "maxlat": 40.7906410, + "maxlon": -73.9275483 + }, + "nodes": [ + 3037022334, + 7734704019, + 13247295925, + 3036361508, + 3037022333, + 7734722704, + 7734703998, + 3036361526, + 7734703997, + 7734722703, + 3036361512, + 13247295924, + 7734703996, + 3036361561, + 13880778756 + ], + "geometry": [ + { "lat": 40.7898600, "lon": -73.9275483 }, + { "lat": 40.7898905, "lon": -73.9275821 }, + { "lat": 40.7903134, "lon": -73.9280492 }, + { "lat": 40.7903313, "lon": -73.9280690 }, + { "lat": 40.7903626, "lon": -73.9281035 }, + { "lat": 40.7904101, "lon": -73.9281729 }, + { "lat": 40.7904921, "lon": -73.9282925 }, + { "lat": 40.7905470, "lon": -73.9284129 }, + { "lat": 40.7906261, "lon": -73.9285865 }, + { "lat": 40.7906347, "lon": -73.9287121 }, + { "lat": 40.7906410, "lon": -73.9288041 }, + { "lat": 40.7906229, "lon": -73.9289472 }, + { "lat": 40.7905962, "lon": -73.9291578 }, + { "lat": 40.7905676, "lon": -73.9294106 }, + { "lat": 40.7905584, "lon": -73.9294732 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Rivers Edge Road" + } +}, +{ + "type": "way", + "id": 1522184737, + "bounds": { + "minlat": 40.7904418, + "minlon": -73.9297781, + "maxlat": 40.7905695, + "maxlon": -73.9294732 + }, + "nodes": [ + 13880778756, + 13880778751, + 10899286630, + 13247295921, + 13880778752, + 13880778749 + ], + "geometry": [ + { "lat": 40.7905584, "lon": -73.9294732 }, + { "lat": 40.7905695, "lon": -73.9295592 }, + { "lat": 40.7905155, "lon": -73.9297166 }, + { "lat": 40.7905033, "lon": -73.9297417 }, + { "lat": 40.7904865, "lon": -73.9297736 }, + { "lat": 40.7904418, "lon": -73.9297781 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Rivers Edge Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1522184738, + "bounds": { + "minlat": 40.7904287, + "minlon": -73.9297781, + "maxlat": 40.7905584, + "maxlon": -73.9294732 + }, + "nodes": [ + 13880778749, + 13880778750, + 13880778754, + 13880778755, + 13247295922, + 13880778757, + 13880778756 + ], + "geometry": [ + { "lat": 40.7904418, "lon": -73.9297781 }, + { "lat": 40.7904287, "lon": -73.9297187 }, + { "lat": 40.7904432, "lon": -73.9296886 }, + { "lat": 40.7904825, "lon": -73.9295920 }, + { "lat": 40.7904927, "lon": -73.9295699 }, + { "lat": 40.7905096, "lon": -73.9295316 }, + { "lat": 40.7905584, "lon": -73.9294732 } + ], + "tags": { + "access": "private", + "highway": "service", + "name": "Rivers Edge Road", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1522867904, + "bounds": { + "minlat": 40.8451928, + "minlon": -73.9244310, + "maxlat": 40.8452504, + "maxlon": -73.9242697 + }, + "nodes": [ + 13884131390, + 42453142 + ], + "geometry": [ + { "lat": 40.8451928, "lon": -73.9242697 }, + { "lat": 40.8452504, "lon": -73.9244310 } + ], + "tags": { + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "hgv": "local", + "highway": "primary", + "lanes": "1", + "layer": "3", + "name": "Washington Bridge", + "name:etymology:wikidata": "Q23", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523051624, + "bounds": { + "minlat": 40.7724254, + "minlon": -73.9195245, + "maxlat": 40.7724388, + "maxlon": -73.9195070 + }, + "nodes": [ + 8612091315, + 7787345582 + ], + "geometry": [ + { "lat": 40.7724254, "lon": -73.9195070 }, + { "lat": 40.7724388, "lon": -73.9195245 } + ], + "tags": { + "bicycle": "yes", + "cycleway": "lane", + "hgv": "designated", + "highway": "secondary", + "lanes": "3", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "oneway": "yes", + "surface": "asphalt", + "turn:lanes": "left||" + } +}, +{ + "type": "way", + "id": 1523051625, + "bounds": { + "minlat": 40.7727429, + "minlon": -73.9201980, + "maxlat": 40.7728414, + "maxlon": -73.9200869 + }, + "nodes": [ + 7787351804, + 7787345570, + 13885263272 + ], + "geometry": [ + { "lat": 40.7728414, "lon": -73.9200869 }, + { "lat": 40.7727598, "lon": -73.9201777 }, + { "lat": 40.7727429, "lon": -73.9201980 } + ], + "tags": { + "access": "no", + "highway": "service", + "level": "-1", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1523051626, + "bounds": { + "minlat": 40.7724225, + "minlon": -73.9205841, + "maxlat": 40.7725158, + "maxlon": -73.9204657 + }, + "nodes": [ + 13885263273, + 7787345558, + 7787345539 + ], + "geometry": [ + { "lat": 40.7725158, "lon": -73.9204657 }, + { "lat": 40.7725036, "lon": -73.9204828 }, + { "lat": 40.7724225, "lon": -73.9205841 } + ], + "tags": { + "access": "no", + "highway": "service", + "level": "-1", + "service": "driveway" + } +}, +{ + "type": "way", + "id": 1523051627, + "bounds": { + "minlat": 40.7728414, + "minlon": -73.9202665, + "maxlat": 40.7729638, + "maxlon": -73.9200869 + }, + "nodes": [ + 7787351804, + 10763830026, + 42897257 + ], + "geometry": [ + { "lat": 40.7728414, "lon": -73.9200869 }, + { "lat": 40.7729268, "lon": -73.9202122 }, + { "lat": 40.7729638, "lon": -73.9202665 } + ], + "tags": { + "bicycle": "yes", + "cycleway:left": "lane", + "cycleway:left:buffer": "yes", + "cycleway:left:oneway": "no", + "hgv": "designated", + "highway": "secondary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Hoyt Avenue North", + "oneway": "yes", + "oneway:bicycle": "no", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523135786, + "bounds": { + "minlat": 40.7285628, + "minlon": -73.9908914, + "maxlat": 40.7290063, + "maxlon": -73.9905625 + }, + "nodes": [ + 10794139187, + 13886073054, + 13886073046, + 13886073045, + 13886073044, + 13886073043, + 13886073042, + 13886073041, + 13886073094, + 13899747381, + 13886073055, + 13898065341, + 13886073056, + 13886073057, + 13886073058, + 13886073059, + 13886073060, + 13886073061, + 13886073062, + 13886073063, + 13886073064, + 13886073065, + 13886073066, + 13886073067, + 13886073068, + 13886073078, + 13886073087, + 10794139197, + 10794139198, + 10794139199, + 10794139200, + 10794139201, + 10794139202, + 10794139203, + 13886073090, + 13886073069, + 10794139180, + 10794139181, + 10794139182, + 10794139183, + 10794139184, + 10794139185, + 10794139186, + 10794139187 + ], + "geometry": [ + { "lat": 40.7289981, "lon": -73.9907867 }, + { "lat": 40.7290063, "lon": -73.9907769 }, + { "lat": 40.7290063, "lon": -73.9907580 }, + { "lat": 40.7289890, "lon": -73.9907370 }, + { "lat": 40.7289716, "lon": -73.9906928 }, + { "lat": 40.7289566, "lon": -73.9906518 }, + { "lat": 40.7289577, "lon": -73.9906293 }, + { "lat": 40.7289643, "lon": -73.9906135 }, + { "lat": 40.7289413, "lon": -73.9905806 }, + { "lat": 40.7289319, "lon": -73.9905672 }, + { "lat": 40.7289286, "lon": -73.9905625 }, + { "lat": 40.7289229, "lon": -73.9905747 }, + { "lat": 40.7289073, "lon": -73.9906077 }, + { "lat": 40.7288861, "lon": -73.9906320 }, + { "lat": 40.7288582, "lon": -73.9906515 }, + { "lat": 40.7288387, "lon": -73.9906567 }, + { "lat": 40.7288152, "lon": -73.9906496 }, + { "lat": 40.7287982, "lon": -73.9906587 }, + { "lat": 40.7287756, "lon": -73.9907015 }, + { "lat": 40.7287547, "lon": -73.9907224 }, + { "lat": 40.7287300, "lon": -73.9907329 }, + { "lat": 40.7287035, "lon": -73.9907339 }, + { "lat": 40.7286903, "lon": -73.9907431 }, + { "lat": 40.7286670, "lon": -73.9907525 }, + { "lat": 40.7285628, "lon": -73.9908259 }, + { "lat": 40.7285649, "lon": -73.9908361 }, + { "lat": 40.7285694, "lon": -73.9908581 }, + { "lat": 40.7285736, "lon": -73.9908780 }, + { "lat": 40.7285925, "lon": -73.9908736 }, + { "lat": 40.7286129, "lon": -73.9908794 }, + { "lat": 40.7286333, "lon": -73.9908875 }, + { "lat": 40.7286497, "lon": -73.9908895 }, + { "lat": 40.7286677, "lon": -73.9908815 }, + { "lat": 40.7286887, "lon": -73.9908914 }, + { "lat": 40.7287065, "lon": -73.9908849 }, + { "lat": 40.7287307, "lon": -73.9908760 }, + { "lat": 40.7287336, "lon": -73.9908618 }, + { "lat": 40.7287636, "lon": -73.9908242 }, + { "lat": 40.7288110, "lon": -73.9908055 }, + { "lat": 40.7288616, "lon": -73.9908037 }, + { "lat": 40.7289103, "lon": -73.9908204 }, + { "lat": 40.7289418, "lon": -73.9907958 }, + { "lat": 40.7289677, "lon": -73.9907866 }, + { "lat": 40.7289981, "lon": -73.9907867 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian" + } +}, +{ + "type": "way", + "id": 1523176879, + "bounds": { + "minlat": 40.7308767, + "minlon": -73.9516807, + "maxlat": 40.7310121, + "maxlon": -73.9516364 + }, + "nodes": [ + 12042028861, + 2987758106, + 9996409557, + 12042028863 + ], + "geometry": [ + { "lat": 40.7308767, "lon": -73.9516364 }, + { "lat": 40.7309259, "lon": -73.9516546 }, + { "lat": 40.7309824, "lon": -73.9516725 }, + { "lat": 40.7310121, "lon": -73.9516807 } + ], + "tags": { + "bicycle:lanes": "no|no|designated", + "cycleway:lanes": "no|no|yes", + "cycleway:right": "track", + "cycleway:right:oneway": "yes", + "cycleway:right:separation": "flex_posts", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "motor_vehicle:lanes": "yes|yes|no", + "name": "McGuinness Boulevard", + "oneway": "yes", + "parking:both": "no", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q18085750", + "wikipedia": "en:McGuinness Boulevard" + } +}, +{ + "type": "way", + "id": 1523228632, + "bounds": { + "minlat": 40.7514585, + "minlon": -74.0014183, + "maxlat": 40.7519630, + "maxlon": -74.0010586 + }, + "nodes": [ + 42427821, + 8261122857, + 9421123761 + ], + "geometry": [ + { "lat": 40.7514585, "lon": -74.0014183 }, + { "lat": 40.7515061, "lon": -74.0013832 }, + { "lat": 40.7519630, "lon": -74.0010586 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523228633, + "bounds": { + "minlat": 40.7502291, + "minlon": -74.0023139, + "maxlat": 40.7508280, + "maxlon": -74.0018820 + }, + "nodes": [ + 42434821, + 8262308988, + 8262308993, + 42438674 + ], + "geometry": [ + { "lat": 40.7502291, "lon": -74.0023139 }, + { "lat": 40.7502726, "lon": -74.0022822 }, + { "lat": 40.7507760, "lon": -74.0019189 }, + { "lat": 40.7508280, "lon": -74.0018820 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "width": "69.6 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523228634, + "bounds": { + "minlat": 40.7503428, + "minlon": -74.0018820, + "maxlat": 40.7508280, + "maxlon": -74.0007230 + }, + "nodes": [ + 42438674, + 8262308991, + 4890040961 + ], + "geometry": [ + { "lat": 40.7508280, "lon": -74.0018820 }, + { "lat": 40.7507722, "lon": -74.0017476 }, + { "lat": 40.7503428, "lon": -74.0007230 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 28th Street", + "name:ru": "Западная 28-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523228635, + "bounds": { + "minlat": 40.7508280, + "minlon": -74.0024878, + "maxlat": 40.7510799, + "maxlon": -74.0018820 + }, + "nodes": [ + 2823833578, + 8262308994, + 42438674 + ], + "geometry": [ + { "lat": 40.7510799, "lon": -74.0024878 }, + { "lat": 40.7508882, "lon": -74.0020245 }, + { "lat": 40.7508280, "lon": -74.0018820 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 28th Street", + "name:ru": "Западная 28-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523228636, + "bounds": { + "minlat": 40.7510799, + "minlon": -74.0073044, + "maxlat": 40.7531186, + "maxlon": -74.0024878 + }, + "nodes": [ + 42438684, + 4872498378, + 8261123020, + 42430603, + 8261123017, + 11649717718, + 2823833578 + ], + "geometry": [ + { "lat": 40.7531186, "lon": -74.0073044 }, + { "lat": 40.7530649, "lon": -74.0071768 }, + { "lat": 40.7520907, "lon": -74.0048540 }, + { "lat": 40.7520312, "lon": -74.0047222 }, + { "lat": 40.7519718, "lon": -74.0045842 }, + { "lat": 40.7513384, "lon": -74.0030954 }, + { "lat": 40.7510799, "lon": -74.0024878 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 28th Street", + "name:ru": "Западная 28-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523248287, + "bounds": { + "minlat": 40.7785395, + "minlon": -73.9474999, + "maxlat": 40.7794315, + "maxlon": -73.9453802 + }, + "nodes": [ + 42444820, + 7140667648, + 7135169185 + ], + "geometry": [ + { "lat": 40.7794315, "lon": -73.9474999 }, + { "lat": 40.7793789, "lon": -73.9473726 }, + { "lat": 40.7785395, "lon": -73.9453802 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 90th Street", + "name:ru": "Восточная 90-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523248288, + "bounds": { + "minlat": 40.7794315, + "minlon": -73.9497517, + "maxlat": 40.7803802, + "maxlon": -73.9474999 + }, + "nodes": [ + 7132406714, + 7140667640, + 42444820 + ], + "geometry": [ + { "lat": 40.7803802, "lon": -73.9497517 }, + { "lat": 40.7794933, "lon": -73.9476469 }, + { "lat": 40.7794315, "lon": -73.9474999 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 90th Street", + "name:ru": "Восточная 90-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523248289, + "bounds": { + "minlat": 40.7803802, + "minlon": -73.9498809, + "maxlat": 40.7804348, + "maxlon": -73.9497517 + }, + "nodes": [ + 42443044, + 7132406714 + ], + "geometry": [ + { "lat": 40.7804348, "lon": -73.9498809 }, + { "lat": 40.7803802, "lon": -73.9497517 } + ], + "tags": { + "cycleway:left": "lane", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 90th Street", + "name:ru": "Восточная 90-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523248290, + "bounds": { + "minlat": 40.7794315, + "minlon": -73.9474999, + "maxlat": 40.7799106, + "maxlon": -73.9471466 + }, + "nodes": [ + 42444820, + 7140667637, + 4205865492 + ], + "geometry": [ + { "lat": 40.7794315, "lon": -73.9474999 }, + { "lat": 40.7794923, "lon": -73.9474555 }, + { "lat": 40.7799106, "lon": -73.9471466 } + ], + "tags": { + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "maxspeed": "25 mph", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "name_1": "1 Avenue", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1523302826, + "bounds": { + "minlat": 40.7335959, + "minlon": -73.9809058, + "maxlat": 40.7338271, + "maxlon": -73.9807369 + }, + "nodes": [ + 4298757029, + 4298757043, + 42437289 + ], + "geometry": [ + { "lat": 40.7335959, "lon": -73.9809058 }, + { "lat": 40.7337608, "lon": -73.9807843 }, + { "lat": 40.7338271, "lon": -73.9807369 } + ], + "tags": { + "alt_name": "1 Avenue", + "alt_name:ko": "1번가", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "4", + "lanes:bus": "1", + "lit": "yes", + "name": "1st Avenue", + "name:en": "1st Avenue", + "name:ko": "1st 애비뉴", + "name:ru": "1-я Авеню", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "turn:lanes": "through|through|through|right", + "wikidata": "Q124947" + } +}, +{ + "type": "way", + "id": 1523329087, + "bounds": { + "minlat": 40.7462999, + "minlon": -73.9728441, + "maxlat": 40.7467884, + "maxlon": -73.9716752 + }, + "nodes": [ + 5129150834, + 1577321467, + 3569749095, + 42454010 + ], + "geometry": [ + { "lat": 40.7467884, "lon": -73.9728441 }, + { "lat": 40.7465231, "lon": -73.9722094 }, + { "lat": 40.7463608, "lon": -73.9718209 }, + { "lat": 40.7462999, "lon": -73.9716752 } + ], + "tags": { + "alt_name": "E 38th st", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 38th Street", + "name:ru": "Восточная 38-я стрит", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523390070, + "bounds": { + "minlat": 40.7641545, + "minlon": -73.9683491, + "maxlat": 40.7647574, + "maxlon": -73.9669173 + }, + "nodes": [ + 42459114, + 10125227988, + 10125147531 + ], + "geometry": [ + { "lat": 40.7647574, "lon": -73.9683491 }, + { "lat": 40.7647124, "lon": -73.9682418 }, + { "lat": 40.7641545, "lon": -73.9669173 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "name": "East 62nd Street", + "name:ru": "Восточная 62-я стрит", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523390071, + "bounds": { + "minlat": 40.7647574, + "minlon": -73.9683491, + "maxlat": 40.7654467, + "maxlon": -73.9678447 + }, + "nodes": [ + 42459114, + 10125227974, + 12834723210, + 10125227976, + 42429974, + 10125227980 + ], + "geometry": [ + { "lat": 40.7647574, "lon": -73.9683491 }, + { "lat": 40.7648178, "lon": -73.9683047 }, + { "lat": 40.7652852, "lon": -73.9679620 }, + { "lat": 40.7653271, "lon": -73.9679313 }, + { "lat": 40.7653837, "lon": -73.9678898 }, + { "lat": 40.7654467, "lon": -73.9678447 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1523390072, + "bounds": { + "minlat": 40.7641300, + "minlon": -73.9688047, + "maxlat": 40.7647574, + "maxlon": -73.9683491 + }, + "nodes": [ + 42436514, + 10125227969, + 12834723213, + 10125227971, + 42459114 + ], + "geometry": [ + { "lat": 40.7641300, "lon": -73.9688047 }, + { "lat": 40.7641935, "lon": -73.9687585 }, + { "lat": 40.7646631, "lon": -73.9684174 }, + { "lat": 40.7647032, "lon": -73.9683883 }, + { "lat": 40.7647574, "lon": -73.9683491 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1523390073, + "bounds": { + "minlat": 40.7635085, + "minlon": -73.9692590, + "maxlat": 40.7641300, + "maxlon": -73.9688047 + }, + "nodes": [ + 6177439750, + 10125227990, + 12834723215, + 10125227965, + 42436514 + ], + "geometry": [ + { "lat": 40.7635085, "lon": -73.9692590 }, + { "lat": 40.7635591, "lon": -73.9692235 }, + { "lat": 40.7640354, "lon": -73.9688740 }, + { "lat": 40.7640724, "lon": -73.9688469 }, + { "lat": 40.7641300, "lon": -73.9688047 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk": "right", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1523410347, + "bounds": { + "minlat": 40.7433226, + "minlon": -74.0072380, + "maxlat": 40.7434700, + "maxlon": -74.0068872 + }, + "nodes": [ + 42449341, + 8261123441, + 2671667948 + ], + "geometry": [ + { "lat": 40.7434700, "lon": -74.0072380 }, + { "lat": 40.7434310, "lon": -74.0071451 }, + { "lat": 40.7433226, "lon": -74.0068872 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 16th Street", + "name:ru": "Западная 16-я стрит", + "name_1": "West 16 Street", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523410348, + "bounds": { + "minlat": 40.7431589, + "minlon": -74.0074665, + "maxlat": 40.7434700, + "maxlon": -74.0072380 + }, + "nodes": [ + 4783358909, + 8261123429, + 42449341 + ], + "geometry": [ + { "lat": 40.7431589, "lon": -74.0074665 }, + { "lat": 40.7434209, "lon": -74.0072740 }, + { "lat": 40.7434700, "lon": -74.0072380 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523410349, + "bounds": { + "minlat": 40.7440000, + "minlon": -74.0068551, + "maxlat": 40.7446460, + "maxlon": -74.0063850 + }, + "nodes": [ + 8261123440, + 42439286, + 8261123439, + 10168486358, + 42429664 + ], + "geometry": [ + { "lat": 40.7440000, "lon": -74.0068551 }, + { "lat": 40.7440610, "lon": -74.0068110 }, + { "lat": 40.7441242, "lon": -74.0067650 }, + { "lat": 40.7445905, "lon": -74.0064256 }, + { "lat": 40.7446460, "lon": -74.0063850 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "highway": "primary", + "lanes": "4", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523412816, + "bounds": { + "minlat": 40.7274250, + "minlon": -73.9931425, + "maxlat": 40.7278531, + "maxlon": -73.9922659 + }, + "nodes": [ + 42445534, + 5784518544, + 10049007836 + ], + "geometry": [ + { "lat": 40.7278531, "lon": -73.9931425 }, + { "lat": 40.7278061, "lon": -73.9930461 }, + { "lat": 40.7274250, "lon": -73.9922659 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 4th Street", + "name:ru": "Восточная 4-я стрит", + "name_1": "East 4 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523412817, + "bounds": { + "minlat": 40.7278531, + "minlon": -73.9942520, + "maxlat": 40.7284130, + "maxlon": -73.9931425 + }, + "nodes": [ + 42428460, + 8309479126, + 42457697, + 12187431459, + 8309479121, + 42445534 + ], + "geometry": [ + { "lat": 40.7284130, "lon": -73.9942520 }, + { "lat": 40.7283700, "lon": -73.9941668 }, + { "lat": 40.7281520, "lon": -73.9937240 }, + { "lat": 40.7279452, "lon": -73.9933314 }, + { "lat": 40.7279160, "lon": -73.9932715 }, + { "lat": 40.7278531, "lon": -73.9931425 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "East 4th Street", + "name:ru": "Восточная 4-я стрит", + "name_1": "East 4 Street", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4639456", + "wikipedia": "en:4th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523419609, + "bounds": { + "minlat": 40.7501913, + "minlon": -73.9789617, + "maxlat": 40.7505450, + "maxlon": -73.9786965 + }, + "nodes": [ + 42445653, + 8122411164, + 561042197 + ], + "geometry": [ + { "lat": 40.7501913, "lon": -73.9789617 }, + { "lat": 40.7502470, "lon": -73.9789212 }, + { "lat": 40.7505450, "lon": -73.9786965 } + ], + "tags": { + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1523465209, + "bounds": { + "minlat": 40.7967704, + "minlon": -73.9761442, + "maxlat": 40.7969242, + "maxlon": -73.9760626 + }, + "nodes": [ + 3917286380, + 9168918378 + ], + "geometry": [ + { "lat": 40.7969242, "lon": -73.9760626 }, + { "lat": 40.7967704, "lon": -73.9761442 } + ], + "tags": { + "destination:lanes": "none|none|none;West 95th Street|West 95th Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "turn:lanes": "none|none|through;slight_right|slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1523465210, + "bounds": { + "minlat": 40.7958825, + "minlon": -73.9768851, + "maxlat": 40.7962058, + "maxlon": -73.9765521 + }, + "nodes": [ + 7910052395, + 7910052385 + ], + "geometry": [ + { "lat": 40.7962058, "lon": -73.9765521 }, + { "lat": 40.7958825, "lon": -73.9768851 } + ], + "tags": { + "destination:lanes": "none|none|none;West 95th Street|West 95th Street", + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "4", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "turn:lanes": "none|none|through;slight_right|slight_right", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1523509189, + "bounds": { + "minlat": 40.7011251, + "minlon": -73.9608545, + "maxlat": 40.7014994, + "maxlon": -73.9606727 + }, + "nodes": [ + 42504249, + 9772858924, + 598035431 + ], + "geometry": [ + { "lat": 40.7011251, "lon": -73.9608545 }, + { "lat": 40.7012197, "lon": -73.9608085 }, + { "lat": 40.7014994, "lon": -73.9606727 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "lanes": "1", + "name": "Williamsburg Street East", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Williamsburg; Penn", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1523509190, + "bounds": { + "minlat": 40.6999197, + "minlon": -73.9616086, + "maxlat": 40.7011251, + "maxlon": -73.9608545 + }, + "nodes": [ + 42469395, + 9776829352, + 598035433, + 42482032, + 9772858922, + 42504249 + ], + "geometry": [ + { "lat": 40.6999197, "lon": -73.9616086 }, + { "lat": 40.6999812, "lon": -73.9615734 }, + { "lat": 40.7001168, "lon": -73.9614839 }, + { "lat": 40.7002632, "lon": -73.9612800 }, + { "lat": 40.7010353, "lon": -73.9608988 }, + { "lat": 40.7011251, "lon": -73.9608545 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lane_markings": "no", + "name": "Williamsburg Street East", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Williamsburg; Penn", + "tiger:name_direction_suffix": "E", + "tiger:name_type": "St", + "tiger:reviewed": "no", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1523901771, + "bounds": { + "minlat": 40.7565500, + "minlon": -73.9962315, + "maxlat": 40.7566370, + "maxlon": -73.9960216 + }, + "nodes": [ + 6878240308, + 427842145 + ], + "geometry": [ + { "lat": 40.7566370, "lon": -73.9962315 }, + { "lat": 40.7565500, "lon": -73.9960216 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523901772, + "bounds": { + "minlat": 40.7566370, + "minlon": -73.9973219, + "maxlat": 40.7570936, + "maxlon": -73.9962315 + }, + "nodes": [ + 42433644, + 8288270400, + 6878240308 + ], + "geometry": [ + { "lat": 40.7570936, "lon": -73.9973219 }, + { "lat": 40.7570381, "lon": -73.9971792 }, + { "lat": 40.7566370, "lon": -73.9962315 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523901773, + "bounds": { + "minlat": 40.7574671, + "minlon": -73.9985511, + "maxlat": 40.7576107, + "maxlon": -73.9982200 + }, + "nodes": [ + 593915213, + 8318644137 + ], + "geometry": [ + { "lat": 40.7576107, "lon": -73.9985511 }, + { "lat": 40.7574671, "lon": -73.9982200 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lanes": "1", + "name": "West 38th Street", + "name:ru": "Западная 38-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523943872, + "bounds": { + "minlat": 40.7232759, + "minlon": -73.9906937, + "maxlat": 40.7242224, + "maxlon": -73.9884461 + }, + "nodes": [ + 42443513, + 4241743162, + 6781557912, + 7977873324 + ], + "geometry": [ + { "lat": 40.7232759, "lon": -73.9884461 }, + { "lat": 40.7233294, "lon": -73.9885739 }, + { "lat": 40.7240755, "lon": -73.9903442 }, + { "lat": 40.7242224, "lon": -73.9906937 } + ], + "tags": { + "alt_name:ko": "이스트 1번가", + "cycleway:left": "lane", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "highway": "residential", + "lane_markings": "no", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "East 1st Street", + "name:en": "East 1st Street", + "name:ko": "이스트 1st 스트리트", + "name:ru": "Восточная 1-я стрит", + "oneway": "yes", + "oneway:bicycle": "yes", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523945330, + "bounds": { + "minlat": 40.7480643, + "minlon": -73.9734978, + "maxlat": 40.7484055, + "maxlon": -73.9732509 + }, + "nodes": [ + 3833109159, + 3833109164 + ], + "geometry": [ + { "lat": 40.7484055, "lon": -73.9732509 }, + { "lat": 40.7480643, "lon": -73.9734978 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523945331, + "bounds": { + "minlat": 40.7484055, + "minlon": -73.9732509, + "maxlat": 40.7485484, + "maxlon": -73.9731474 + }, + "nodes": [ + 42442935, + 3997454658, + 3833109159 + ], + "geometry": [ + { "lat": 40.7485484, "lon": -73.9731474 }, + { "lat": 40.7484870, "lon": -73.9731919 }, + { "lat": 40.7484055, "lon": -73.9732509 } + ], + "tags": { + "alt_name:ko": "2번가", + "bicycle": "yes", + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "lanes:bus": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "2nd Avenue", + "name:ko": "2nd 애비뉴", + "name:ru": "2-я Авеню", + "oneway": "yes", + "short_name": "2 Avenue", + "sidewalk:both": "separate", + "surface": "asphalt", + "turn:lanes": "through|through|through|through|none", + "wikidata": "Q124914", + "wikipedia": "en:Second Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523952629, + "bounds": { + "minlat": 40.7295283, + "minlon": -73.9933066, + "maxlat": 40.7295810, + "maxlon": -73.9932620 + }, + "nodes": [ + 42428468, + 8309479149 + ], + "geometry": [ + { "lat": 40.7295810, "lon": -73.9932620 }, + { "lat": 40.7295283, "lon": -73.9933066 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523952630, + "bounds": { + "minlat": 40.7295810, + "minlon": -73.9932620, + "maxlat": 40.7300149, + "maxlon": -73.9928959 + }, + "nodes": [ + 8309479159, + 4755898680, + 8309479148, + 42428468 + ], + "geometry": [ + { "lat": 40.7300149, "lon": -73.9928959 }, + { "lat": 40.7297063, "lon": -73.9931563 }, + { "lat": 40.7296345, "lon": -73.9932168 }, + { "lat": 40.7295810, "lon": -73.9932620 } + ], + "tags": { + "cycleway:left": "lane", + "cycleway:left:buffer": "no", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "2", + "maxspeed": "25 mph", + "name": "Broadway", + "name:ar": "برودواي", + "name:en": "Broadway", + "name:ja": "ブロードウェイ", + "name:ko": "브로드웨이", + "name:ru": "Бродвей", + "name:zh": "百老匯", + "name:zh-Hans": "百老汇", + "name:zh-Hant": "百老匯", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q11260", + "wikipedia": "en:Broadway (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523952631, + "bounds": { + "minlat": 40.7295810, + "minlon": -73.9940640, + "maxlat": 40.7299780, + "maxlon": -73.9932620 + }, + "nodes": [ + 42433292, + 8309479175, + 8309479150, + 42428468 + ], + "geometry": [ + { "lat": 40.7299780, "lon": -73.9940640 }, + { "lat": 40.7299525, "lon": -73.9940126 }, + { "lat": 40.7296289, "lon": -73.9933606 }, + { "lat": 40.7295810, "lon": -73.9932620 } + ], + "tags": { + "highway": "residential", + "lane_markings": "no", + "maxspeed": "25 mph", + "name": "Waverly Place", + "name:etymology:wikidata": "Q678251", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "wikidata": "Q4993391", + "wikipedia": "en:Waverly Place" + } +}, +{ + "type": "way", + "id": 1523963395, + "bounds": { + "minlat": 40.7477028, + "minlon": -74.0041638, + "maxlat": 40.7477892, + "maxlon": -74.0041026 + }, + "nodes": [ + 42437914, + 9971263901 + ], + "geometry": [ + { "lat": 40.7477028, "lon": -74.0041638 }, + { "lat": 40.7477892, "lon": -74.0041026 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "cycleway:right": "no", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "surface": "asphalt", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523963396, + "bounds": { + "minlat": 40.7483550, + "minlon": -74.0036840, + "maxlat": 40.7489740, + "maxlon": -74.0032360 + }, + "nodes": [ + 42427483, + 10173122260, + 10172817656, + 42453630 + ], + "geometry": [ + { "lat": 40.7483550, "lon": -74.0036840 }, + { "lat": 40.7484262, "lon": -74.0036325 }, + { "lat": 40.7489211, "lon": -74.0032743 }, + { "lat": 40.7489740, "lon": -74.0032360 } + ], + "tags": { + "cycleway:left": "track", + "cycleway:left:oneway": "yes", + "hgv": "local", + "highway": "primary", + "lanes": "5", + "maxspeed": "25 mph", + "name": "10th Avenue", + "name:ru": "10-я Авеню", + "oneway": "yes", + "sidewalk:left": "yes", + "sidewalk:right": "separate", + "surface": "asphalt", + "width": "69.5 ft", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523963397, + "bounds": { + "minlat": 40.7495028, + "minlon": -74.0064242, + "maxlat": 40.7495388, + "maxlon": -74.0063900 + }, + "nodes": [ + 1701920993, + 9143569894, + 1701921019 + ], + "geometry": [ + { "lat": 40.7495388, "lon": -74.0064242 }, + { "lat": 40.7495202, "lon": -74.0064110 }, + { "lat": 40.7495028, "lon": -74.0063900 } + ], + "tags": { + "highway": "unclassified", + "lanes": "1", + "maxspeed": "25 mph", + "name": "West 24th Street", + "name:ru": "Западная 24-я стрит", + "oneway": "yes", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523963398, + "bounds": { + "minlat": 40.7472251, + "minlon": -74.0036840, + "maxlat": 40.7483550, + "maxlon": -74.0009822 + }, + "nodes": [ + 42427483, + 10173122258, + 8239225234 + ], + "geometry": [ + { "lat": 40.7483550, "lon": -74.0036840 }, + { "lat": 40.7483000, "lon": -74.0035534 }, + { "lat": 40.7472251, "lon": -74.0009822 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West 24th Street", + "name:ru": "Западная 24-я стрит", + "oneway": "yes", + "parking:both": "lane", + "parking:both:orientation": "parallel", + "sidewalk:both": "separate", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523981208, + "bounds": { + "minlat": 40.7266087, + "minlon": -73.9990701, + "maxlat": 40.7269662, + "maxlon": -73.9987723 + }, + "nodes": [ + 42433581, + 5829827195, + 8505742809, + 4745829026 + ], + "geometry": [ + { "lat": 40.7266087, "lon": -73.9990701 }, + { "lat": 40.7266789, "lon": -73.9990116 }, + { "lat": 40.7266979, "lon": -73.9989958 }, + { "lat": 40.7269662, "lon": -73.9987723 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "maxspeed": "25 mph", + "name": "Wooster Street", + "name:etymology:wikidata": "Q4993246", + "name:ko": "우스터 스트리트", + "surface": "sett", + "wikidata": "Q19582621", + "wikipedia": "en:Wooster Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523981209, + "bounds": { + "minlat": 40.7264932, + "minlon": -73.9991668, + "maxlat": 40.7266087, + "maxlon": -73.9990701 + }, + "nodes": [ + 42433581, + 1919595926 + ], + "geometry": [ + { "lat": 40.7266087, "lon": -73.9990701 }, + { "lat": 40.7264932, "lon": -73.9991668 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Wooster Street", + "name:etymology:wikidata": "Q4993246", + "name:ko": "우스터 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q19582621", + "wikipedia": "en:Wooster Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523981210, + "bounds": { + "minlat": 40.7254278, + "minlon": -74.0000626, + "maxlat": 40.7264932, + "maxlon": -73.9991668 + }, + "nodes": [ + 1919595926, + 5829847195, + 8231934410 + ], + "geometry": [ + { "lat": 40.7264932, "lon": -73.9991668 }, + { "lat": 40.7264210, "lon": -73.9992275 }, + { "lat": 40.7254278, "lon": -74.0000626 } + ], + "tags": { + "highway": "residential", + "lanes": "1", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Wooster Street", + "name:etymology:wikidata": "Q4993246", + "name:ko": "우스터 스트리트", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "sett", + "wikidata": "Q19582621", + "wikipedia": "en:Wooster Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1523981211, + "bounds": { + "minlat": 40.7266087, + "minlon": -73.9994460, + "maxlat": 40.7267939, + "maxlon": -73.9990701 + }, + "nodes": [ + 42433581, + 4202908173 + ], + "geometry": [ + { "lat": 40.7266087, "lon": -73.9990701 }, + { "lat": 40.7267939, "lon": -73.9994460 } + ], + "tags": { + "hgv": "designated", + "highway": "primary", + "lanes": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "West Houston Street", + "name:etymology:wikidata": "Q651872", + "name:ko": "웨스트 휴스턴 스트리트", + "name:pronunciation": "ˌwɛst ˈhaʊstən stɹiːt", + "name:ru": "Западная Хаустон-стрит", + "oneway": "yes", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q658443", + "wikipedia": "en:Houston Street" + } +}, +{ + "type": "way", + "id": 1523985621, + "bounds": { + "minlat": 40.7680594, + "minlon": -73.9661741, + "maxlat": 40.7685866, + "maxlon": -73.9657883 + }, + "nodes": [ + 596776017, + 10125222342, + 12834712296 + ], + "geometry": [ + { "lat": 40.7685866, "lon": -73.9657883 }, + { "lat": 40.7685328, "lon": -73.9658271 }, + { "lat": 40.7680594, "lon": -73.9661741 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1523985622, + "bounds": { + "minlat": 40.7685866, + "minlon": -73.9657883, + "maxlat": 40.7691584, + "maxlon": -73.9653727 + }, + "nodes": [ + 7160272387, + 10125222341, + 596776017 + ], + "geometry": [ + { "lat": 40.7691584, "lon": -73.9653727 }, + { "lat": 40.7686440, "lon": -73.9657482 }, + { "lat": 40.7685866, "lon": -73.9657883 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1523985623, + "bounds": { + "minlat": 40.7691584, + "minlon": -73.9653727, + "maxlat": 40.7698355, + "maxlon": -73.9648768 + }, + "nodes": [ + 596776009, + 10122943676, + 7160235784, + 596776027, + 7160272387 + ], + "geometry": [ + { "lat": 40.7698355, "lon": -73.9648768 }, + { "lat": 40.7697831, "lon": -73.9649178 }, + { "lat": 40.7692698, "lon": -73.9652912 }, + { "lat": 40.7692110, "lon": -73.9653333 }, + { "lat": 40.7691584, "lon": -73.9653727 } + ], + "tags": { + "cycleway:both": "no", + "hgv": "no", + "highway": "primary", + "lanes": "3", + "lanes:forward": "3", + "lit": "yes", + "maxspeed": "25 mph", + "name": "Park Avenue", + "name:en": "Park Avenue", + "name:ru": "Парк-Авеню", + "old_name": "4th Avenue", + "oneway": "yes", + "parking:left": "no", + "parking:right": "lane", + "parking:right:orientation": "parallel", + "sidewalk:left": "no", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q109711", + "wikipedia": "en:Park Avenue" + } +}, +{ + "type": "way", + "id": 1523985624, + "bounds": { + "minlat": 40.7691818, + "minlon": -73.9673032, + "maxlat": 40.7692257, + "maxlon": -73.9672002 + }, + "nodes": [ + 42431674, + 10170844862 + ], + "geometry": [ + { "lat": 40.7692257, "lon": -73.9673032 }, + { "lat": 40.7691818, "lon": -73.9672002 } + ], + "tags": { + "highway": "residential", + "lit": "yes", + "name": "East 68th Street", + "name:ru": "Восточная 68-я стрит", + "oneway": "yes", + "sidewalk": "both", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1523991102, + "bounds": { + "minlat": 40.8448158, + "minlon": -73.9215080, + "maxlat": 40.8450081, + "maxlon": -73.9181810 + }, + "nodes": [ + 60922940, + 596668878 + ], + "geometry": [ + { "lat": 40.8448158, "lon": -73.9215080 }, + { "lat": 40.8450081, "lon": -73.9181810 } + ], + "tags": { + "bicycle": "no", + "foot": "no", + "hgv": "designated", + "highway": "motorway", + "horse": "no", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Cross Bronx Expressway", + "oneway": "yes", + "ref": "I 95;US 1", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1524004344, + "bounds": { + "minlat": 40.7593428, + "minlon": -73.9582013, + "maxlat": 40.7597420, + "maxlon": -73.9579039 + }, + "nodes": [ + 371188918, + 9142584943, + 406006393 + ], + "geometry": [ + { "lat": 40.7597420, "lon": -73.9579039 }, + { "lat": 40.7595387, "lon": -73.9580566 }, + { "lat": 40.7593428, "lon": -73.9582013 } + ], + "tags": { + "alt_name": "Franklin Delano Roosevelt Drive", + "bridge": "yes", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "layer": "1", + "maxspeed": "40 mph", + "motorcar": "designated", + "name": "FDR Drive", + "name:etymology:wikidata": "Q8007", + "name:ru": "Магистраль ФДР", + "oneway": "yes", + "ref": "FDR", + "source": "Yahoo", + "unsigned_ref": "NY 907L" + } +}, +{ + "type": "way", + "id": 1524118446, + "bounds": { + "minlat": 40.7600804, + "minlon": -73.9631700, + "maxlat": 40.7601231, + "maxlon": -73.9630585 + }, + "nodes": [ + 13348916911, + 13892069978 + ], + "geometry": [ + { "lat": 40.7601231, "lon": -73.9631700 }, + { "lat": 40.7600804, "lon": -73.9630585 } + ], + "tags": { + "cycleway": "shared_lane", + "hgv": "local", + "highway": "residential", + "lanes": "2", + "lit": "yes", + "maxspeed": "25 mph", + "motor_vehicle:backward": "destination", + "name": "East 59th Street", + "name:ru": "Восточная 59-я стрит", + "name_1": "East 59 Street", + "oneway": "no", + "parking:both": "no", + "sidewalk:left": "lane", + "sidewalk:right": "separate", + "surface": "asphalt", + "wikidata": "Q245364", + "wikipedia": "en:59th Street (Manhattan)" + } +}, +{ + "type": "way", + "id": 1524182449, + "bounds": { + "minlat": 40.7286641, + "minlon": -74.0139358, + "maxlat": 40.7290096, + "maxlon": -74.0128747 + }, + "nodes": [ + 8288262782, + 5526905147, + 5526905148 + ], + "geometry": [ + { "lat": 40.7290096, "lon": -74.0138999 }, + { "lat": 40.7287507, "lon": -74.0139358 }, + { "lat": 40.7286641, "lon": -74.0128747 } + ], + "tags": { + "highway": "service", + "layer": "1", + "service": "parking_aisle" + } +}, +{ + "type": "way", + "id": 1524187758, + "bounds": { + "minlat": 40.7228984, + "minlon": -74.0120372, + "maxlat": 40.7229858, + "maxlon": -74.0118956 + }, + "nodes": [ + 11660063303, + 11660063302, + 10612369397, + 11492239009, + 11660063230, + 11660063299, + 11660063305, + 11660063304, + 11660063303 + ], + "geometry": [ + { "lat": 40.7229858, "lon": -74.0120105 }, + { "lat": 40.7229708, "lon": -74.0118956 }, + { "lat": 40.7229203, "lon": -74.0119057 }, + { "lat": 40.7228984, "lon": -74.0119101 }, + { "lat": 40.7229135, "lon": -74.0120301 }, + { "lat": 40.7229361, "lon": -74.0120338 }, + { "lat": 40.7229583, "lon": -74.0120372 }, + { "lat": 40.7229558, "lon": -74.0120167 }, + { "lat": 40.7229858, "lon": -74.0120105 } + ], + "tags": { + "area": "yes", + "highway": "pedestrian", + "lit": "yes", + "surface": "paving_stones" + } +}, +{ + "type": "way", + "id": 1524205437, + "bounds": { + "minlat": 40.7088842, + "minlon": -73.9576080, + "maxlat": 40.7090800, + "maxlon": -73.9574880 + }, + "nodes": [ + 42482429, + 9768167563, + 13892651148 + ], + "geometry": [ + { "lat": 40.7090800, "lon": -73.9574880 }, + { "lat": 40.7090234, "lon": -73.9575227 }, + { "lat": 40.7088842, "lon": -73.9576080 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "lanes:bus": "1", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211" + } +}, +{ + "type": "way", + "id": 1524205438, + "bounds": { + "minlat": 40.7087581, + "minlon": -73.9576853, + "maxlat": 40.7088842, + "maxlon": -73.9576080 + }, + "nodes": [ + 13892651148, + 13892651149 + ], + "geometry": [ + { "lat": 40.7088842, "lon": -73.9576080 }, + { "lat": 40.7087581, "lon": -73.9576853 } + ], + "tags": { + "hgv": "local", + "highway": "secondary", + "lanes": "2", + "name": "Marcy Avenue", + "name:etymology:wikidata": "Q389258", + "oneway": "yes", + "sidewalk:both": "separate", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:county": "Kings, NY", + "tiger:name_base": "Marcy", + "tiger:name_type": "Ave", + "tiger:zip_left": "11211", + "tiger:zip_right": "11211", + "turn:lanes": "|merge_to_left" + } +}, +{ + "type": "way", + "id": 1524315986, + "bounds": { + "minlat": 40.7880027, + "minlon": -73.9827592, + "maxlat": 40.7891168, + "maxlon": -73.9822770 + }, + "nodes": [ + 42422399, + 7910052642, + 7910052662, + 7910052653, + 7910052644, + 7910052664, + 61240933 + ], + "geometry": [ + { "lat": 40.7880027, "lon": -73.9827592 }, + { "lat": 40.7882582, "lon": -73.9826549 }, + { "lat": 40.7884139, "lon": -73.9825926 }, + { "lat": 40.7885998, "lon": -73.9825141 }, + { "lat": 40.7887846, "lon": -73.9824302 }, + { "lat": 40.7889268, "lon": -73.9823648 }, + { "lat": 40.7891168, "lon": -73.9822770 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1524315987, + "bounds": { + "minlat": 40.7866776, + "minlon": -73.9832683, + "maxlat": 40.7880027, + "maxlon": -73.9827592 + }, + "nodes": [ + 7910052648, + 61244670, + 7910052667, + 7910052659, + 7910052650, + 42422399 + ], + "geometry": [ + { "lat": 40.7866776, "lon": -73.9832683 }, + { "lat": 40.7868604, "lon": -73.9831880 }, + { "lat": 40.7870525, "lon": -73.9831100 }, + { "lat": 40.7872914, "lon": -73.9830214 }, + { "lat": 40.7874886, "lon": -73.9829527 }, + { "lat": 40.7880027, "lon": -73.9827592 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1524315988, + "bounds": { + "minlat": 40.7856036, + "minlon": -73.9838819, + "maxlat": 40.7866776, + "maxlon": -73.9832683 + }, + "nodes": [ + 595295542, + 42423331, + 12162590070, + 7910063578, + 7910052657, + 61240930, + 7910052648 + ], + "geometry": [ + { "lat": 40.7856036, "lon": -73.9838819 }, + { "lat": 40.7858779, "lon": -73.9836941 }, + { "lat": 40.7860300, "lon": -73.9836018 }, + { "lat": 40.7861853, "lon": -73.9835150 }, + { "lat": 40.7863475, "lon": -73.9834264 }, + { "lat": 40.7865017, "lon": -73.9833496 }, + { "lat": 40.7866776, "lon": -73.9832683 } + ], + "tags": { + "goods": "no", + "hgv": "no", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "motorcar": "designated", + "name": "Henry Hudson Parkway", + "name:etymology:wikidata": "Q179167", + "not:name": "West Side Highway", + "oneway": "yes", + "ref": "HH;NY 9A", + "surface": "asphalt", + "unsigned_ref": "NY 907V" + } +}, +{ + "type": "way", + "id": 1524317220, + "bounds": { + "minlat": 40.8095870, + "minlon": -73.9305284, + "maxlat": 40.8102518, + "maxlon": -73.9296573 + }, + "nodes": [ + 529054850, + 529054861 + ], + "geometry": [ + { "lat": 40.8102518, "lon": -73.9305284 }, + { "lat": 40.8095870, "lon": -73.9296573 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1524317221, + "bounds": { + "minlat": 40.8102518, + "minlon": -73.9309344, + "maxlat": 40.8105676, + "maxlon": -73.9305284 + }, + "nodes": [ + 529054843, + 2408994054, + 529054847, + 529054850 + ], + "geometry": [ + { "lat": 40.8105676, "lon": -73.9309344 }, + { "lat": 40.8104887, "lon": -73.9308378 }, + { "lat": 40.8104070, "lon": -73.9307335 }, + { "lat": 40.8102518, "lon": -73.9305284 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1524317222, + "bounds": { + "minlat": 40.8105676, + "minlon": -73.9313556, + "maxlat": 40.8110718, + "maxlon": -73.9309344 + }, + "nodes": [ + 2408974717, + 529054838, + 2408994057, + 2408976656, + 2408994056, + 529054843 + ], + "geometry": [ + { "lat": 40.8110718, "lon": -73.9313556 }, + { "lat": 40.8109780, "lon": -73.9312921 }, + { "lat": 40.8108797, "lon": -73.9312181 }, + { "lat": 40.8107873, "lon": -73.9311434 }, + { "lat": 40.8106974, "lon": -73.9310649 }, + { "lat": 40.8105676, "lon": -73.9309344 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1524320163, + "bounds": { + "minlat": 40.8397410, + "minlon": -73.9293970, + "maxlat": 40.8408455, + "maxlon": -73.9287586 + }, + "nodes": [ + 60923208, + 13533533196, + 13533533197, + 13533533195, + 60920157 + ], + "geometry": [ + { "lat": 40.8408455, "lon": -73.9287586 }, + { "lat": 40.8407368, "lon": -73.9288168 }, + { "lat": 40.8406373, "lon": -73.9288724 }, + { "lat": 40.8405470, "lon": -73.9289265 }, + { "lat": 40.8397410, "lon": -73.9293970 } + ], + "tags": { + "hgv": "designated", + "highway": "motorway", + "lanes": "3", + "maxspeed": "50 mph", + "name": "Major Deegan Expressway", + "name:etymology:wikidata": "Q8009311", + "oneway": "yes", + "ref": "I 87", + "surface": "concrete" + } +}, +{ + "type": "way", + "id": 1524405741, + "bounds": { + "minlat": 40.7001896, + "minlon": -73.9871869, + "maxlat": 40.7006559, + "maxlon": -73.9869304 + }, + "nodes": [ + 42497727, + 7909208017, + 10722387747, + 42471291 + ], + "geometry": [ + { "lat": 40.7001896, "lon": -73.9869304 }, + { "lat": 40.7002686, "lon": -73.9869721 }, + { "lat": 40.7005836, "lon": -73.9871468 }, + { "lat": 40.7006559, "lon": -73.9871869 } + ], + "tags": { + "hgv": "local", + "highway": "unclassified", + "lanes": "1", + "maxspeed": "20 mph", + "name": "Jay Street", + "name:etymology:wikidata": "Q310847", + "oneway": "yes", + "sidewalk:left": "separate", + "sidewalk:right": "no", + "surface": "asphalt", + "tiger:cfcc": "A41", + "tiger:name_base": "Jay", + "tiger:name_type": "St" + } +}, +{ + "type": "way", + "id": 1524696415, + "bounds": { + "minlat": 40.8132732, + "minlon": -73.9583733, + "maxlat": 40.8133067, + "maxlon": -73.9583481 + }, + "nodes": [ + 13897041835, + 7598688500 + ], + "geometry": [ + { "lat": 40.8133067, "lon": -73.9583481 }, + { "lat": 40.8132732, "lon": -73.9583733 } + ], + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "asphalt" + } +}, +{ + "type": "way", + "id": 1524918290, + "bounds": { + "minlat": 40.8136168, + "minlon": -73.9560947, + "maxlat": 40.8140243, + "maxlon": -73.9557888 + }, + "nodes": [ + 13899248716, + 4212649297 + ], + "geometry": [ + { "lat": 40.8136168, "lon": -73.9560947 }, + { "lat": 40.8140243, "lon": -73.9557888 } + ], + "tags": { + "cycleway": "lane", + "hgv": "local", + "highway": "secondary", + "lane_markings": "yes", + "lit": "yes", + "name": "Amsterdam Avenue", + "name:etymology:wikidata": "Q727", + "name:ru": "Амстердам-авеню", + "oneway": "no", + "surface": "asphalt", + "turn:lanes:backward": "left||", + "wikidata": "Q130388", + "wikipedia": "en:Tenth Avenue (Manhattan)" + } +}, +{ + "type": "way", + "id": 1524925346, + "bounds": { + "minlat": 40.7615685, + "minlon": -74.0024119, + "maxlat": 40.7616673, + "maxlon": -74.0022207 + }, + "nodes": [ + 13899426313, + 13899426316, + 13899426317, + 13899426314 + ], + "geometry": [ + { "lat": 40.7616673, "lon": -74.0024119 }, + { "lat": 40.7616280, "lon": -74.0023937 }, + { "lat": 40.7615685, "lon": -74.0022603 }, + { "lat": 40.7615825, "lon": -74.0022207 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1524925347, + "bounds": { + "minlat": 40.7615825, + "minlon": -74.0024119, + "maxlat": 40.7616675, + "maxlon": -74.0022207 + }, + "nodes": [ + 13899426314, + 247119003, + 13899426315, + 13899426313 + ], + "geometry": [ + { "lat": 40.7615825, "lon": -74.0022207 }, + { "lat": 40.7616097, "lon": -74.0022348 }, + { "lat": 40.7616675, "lon": -74.0023670 }, + { "lat": 40.7616673, "lon": -74.0024119 } + ], + "tags": { + "highway": "service", + "oneway": "yes" + } +}, +{ + "type": "way", + "id": 1524925348, + "bounds": { + "minlat": 40.7615641, + "minlon": -74.0022207, + "maxlat": 40.7615867, + "maxlon": -74.0020269 + }, + "nodes": [ + 247086017, + 7784129807, + 13899426314 + ], + "geometry": [ + { "lat": 40.7615867, "lon": -74.0020269 }, + { "lat": 40.7615641, "lon": -74.0021816 }, + { "lat": 40.7615825, "lon": -74.0022207 } + ], + "tags": { + "highway": "service", + "oneway": "no" + } +} + + ] +} diff --git a/launch_manhattan_ui.bat b/launch_manhattan_ui.bat new file mode 100644 index 0000000..158130a --- /dev/null +++ b/launch_manhattan_ui.bat @@ -0,0 +1,35 @@ +@echo off +setlocal EnableExtensions +cd /d "%~dp0" + +set "VENV_DIR=%~dp0.venv" +set "VENV_PYTHON=%VENV_DIR%\Scripts\python.exe" +set "BOOTSTRAP_PYTHON=" + +where python >nul 2>&1 +if not errorlevel 1 ( + python -c "import sys; raise SystemExit(0 if sys.version_info >= (3, 11) else 1)" >nul 2>&1 + if not errorlevel 1 set "BOOTSTRAP_PYTHON=python" +) + +if not defined BOOTSTRAP_PYTHON ( + where py >nul 2>&1 + if not errorlevel 1 ( + py -3.11 -c "import sys; raise SystemExit(0 if sys.version_info >= (3, 11) else 1)" >nul 2>&1 + if not errorlevel 1 set "BOOTSTRAP_PYTHON=py -3.11" + ) +) + +if not defined BOOTSTRAP_PYTHON ( + echo Python 3.11 or newer is required. + pause + exit /b 1 +) + +if not exist "%VENV_PYTHON%" %BOOTSTRAP_PYTHON% -m venv "%VENV_DIR%" +"%VENV_PYTHON%" -m pip install --disable-pip-version-check --no-deps -e . +if errorlevel 1 exit /b 1 + +echo Starting the Manhattan Island fire-spread UI at http://127.0.0.1:8000 +start "" /b powershell -NoProfile -WindowStyle Hidden -Command "Start-Sleep -Seconds 2; Start-Process 'http://127.0.0.1:8000'" +"%VENV_PYTHON%" -m fire_spread.web --dataset "%~dp0data\processed\manhattan_network.json" --buildings "%~dp0data\processed\manhattan_buildings.json" --host 127.0.0.1 --port 8000 diff --git a/launch_polatli_ui.bat b/launch_polatli_ui.bat index 30daa31..b830593 100644 --- a/launch_polatli_ui.bat +++ b/launch_polatli_ui.bat @@ -54,16 +54,16 @@ if errorlevel 1 ( exit /b 1 ) -echo Starting the Polatli fire-spread UI at http://127.0.0.1:8000 +echo Starting the Manhattan Island fire-spread UI at http://127.0.0.1:8000 start "" /b powershell -NoProfile -WindowStyle Hidden -Command "Start-Sleep -Seconds 2; Start-Process 'http://127.0.0.1:8000'" "%VENV_PYTHON%" -m fire_spread.web ^ - --dataset "%~dp0data\processed\polatli_network.json" ^ - --buildings "%~dp0data\processed\polatli_buildings.json" ^ + --dataset "%~dp0data\processed\manhattan_network.json" ^ + --buildings "%~dp0data\processed\manhattan_buildings.json" ^ --host 127.0.0.1 ^ --port 8000 set "EXIT_CODE=%ERRORLEVEL%" echo. -echo Polatli UI stopped with exit code %EXIT_CODE%. +echo Manhattan Island UI stopped with exit code %EXIT_CODE%. pause exit /b %EXIT_CODE% diff --git a/src/fire_spread/buildings.py b/src/fire_spread/buildings.py index 545eecb..65c9aff 100644 --- a/src/fire_spread/buildings.py +++ b/src/fire_spread/buildings.py @@ -1,4 +1,4 @@ -"""Convert OSM building footprints and 3D tags into a 2.5D scene layer.""" +"""Convert OSM building footprints and height tags into a 3D scene layer.""" from __future__ import annotations @@ -175,6 +175,116 @@ def normalize_buildings( } +def normalize_buildings_from_osm( + payload: Mapping[str, Any], + *, + origin_lat: float, + origin_lon: float, + source: Mapping[str, Any], +) -> dict[str, Any]: + """Normalize Overpass JSON building ways with inline geometry.""" + elements = payload.get("elements", []) + if not isinstance(elements, list): + raise ValueError("OSM payload elements must be a list") + normalized: list[dict[str, Any]] = [] + height_counts = {"height_tag": 0, "levels_estimate": 0, "footprint_only": 0} + for element in elements: + if not isinstance(element, Mapping) or element.get("type") != "way": + continue + tags = element.get("tags", {}) + if not isinstance(tags, Mapping) or ("building" not in tags and "building:part" not in tags): + continue + geometry = element.get("geometry", []) + coordinates = [ + (float(point["lat"]), float(point["lon"])) + for point in geometry + if isinstance(point, Mapping) and "lat" in point and "lon" in point + ] + if len(coordinates) < 3: + continue + if coordinates[0] != coordinates[-1]: + coordinates.append(coordinates[0]) + polygon = [_local_xy(lat, lon, origin_lat, origin_lon) for lat, lon in coordinates] + area = _area_m2(polygon[:-1] if polygon[0] == polygon[-1] else polygon) + if area < 1.0: + continue + height_m, height_source, levels = _height(tags) + height_counts[height_source] += 1 + way_id = str(element.get("id", "unknown")) + normalized.append( + { + "id": f"osm:building:{way_id}", + "polygon": [[x, y] for x, y in polygon[:-1]], + "area_m2": area, + "height_m": height_m, + "min_height_m": _positive_number(tags.get("min_height")) or 0.0, + "height_source": height_source, + "levels": levels, + "building": tags.get("building"), + "building_part": tags.get("building:part"), + "roof_shape": tags.get("roof:shape"), + "roof_height_m": _positive_number(tags.get("roof:height")), + "tags": { + key: tags[key] + for key in ( + "building", + "building:part", + "building:levels", + "height", + "min_height", + "roof:shape", + "roof:height", + "roof:levels", + "name", + ) + if key in tags + }, + } + ) + source_record = dict(source) + source_record.update( + { + "origin_latitude": origin_lat, + "origin_longitude": origin_lon, + "osm_element_count": len(elements), + "building_count": len(normalized), + "height_source_counts": height_counts, + } + ) + return { + "schema_version": 1, + "coordinate_reference": { + "system": "local equirectangular projection", + "units": "meters", + "origin_latitude": origin_lat, + "origin_longitude": origin_lon, + "source_crs": "EPSG:4326", + }, + "source": source_record, + "buildings": normalized, + } + + +def convert_osm_json( + source_path: str | Path, + output_path: str | Path, + *, + origin_lat: float, + origin_lon: float, + source_metadata: Mapping[str, Any], +) -> dict[str, Any]: + """Convert an Overpass JSON building extract into the 3D layer contract.""" + payload = json.loads(Path(source_path).read_text(encoding="utf-8")) + normalized = normalize_buildings_from_osm( + payload, + origin_lat=origin_lat, + origin_lon=origin_lon, + source=source_metadata, + ) + Path(output_path).write_text(json.dumps(normalized, indent=2, sort_keys=True) + "\n", encoding="utf-8") + return normalized + + def convert_directory( tile_dir: str | Path, output_path: str | Path, @@ -197,7 +307,7 @@ def convert_directory( def build_parser() -> argparse.ArgumentParser: - parser = argparse.ArgumentParser(description="Convert OSM XML map tiles to a 2.5D building layer") + parser = argparse.ArgumentParser(description="Convert OSM XML map tiles to a 3D building layer") parser.add_argument("tile_dir") parser.add_argument("output") parser.add_argument("--origin-latitude", type=float, required=True) diff --git a/src/fire_spread/osm.py b/src/fire_spread/osm.py index f4c5155..64d98c1 100644 --- a/src/fire_spread/osm.py +++ b/src/fire_spread/osm.py @@ -137,11 +137,13 @@ def network_from_osm( node_id = _coordinate_key(lat, lon) if node_id not in nodes: x, y = _local_xy(lat, lon, origin_lat, origin_lon) + elevation = _numeric_tag(point.get("ele") or point.get("elevation")) nodes[node_id] = Node( id=node_id, x=x, y=y, kind="road_node", + elevation_m=elevation, metadata={"latitude": lat, "longitude": lon}, ) diff --git a/src/fire_spread/propagation.py b/src/fire_spread/propagation.py index 641fd2c..afeeaa2 100644 --- a/src/fire_spread/propagation.py +++ b/src/fire_spread/propagation.py @@ -94,6 +94,7 @@ def edge_speed_m_per_min( source_node: str, target_node: str, parameters: FireParameters, + wind_field: Any | None = None, ) -> float: """Return the heuristic spread speed for one oriented edge traversal. @@ -111,11 +112,17 @@ def edge_speed_m_per_min( source = network.nodes[source_node] target = network.nodes[target_node] bearing = _bearing_deg(source.x, source.y, target.x, target.y) - alignment = _wind_alignment(bearing, parameters.wind_direction_deg) + wind_speed_mps = parameters.wind_speed_mps + wind_direction_deg = parameters.wind_direction_deg + if wind_field is not None: + sample = wind_field.sample_edge(source.x, source.y, target.x, target.y) + wind_speed_mps = sample.speed_mps + wind_direction_deg = sample.direction_deg + alignment = _wind_alignment(bearing, wind_direction_deg) wind_factor = max( 0.35, - 1.0 + 0.12 * min(parameters.wind_speed_mps, 20.0) * alignment, + 1.0 + 0.12 * min(wind_speed_mps, 20.0) * alignment, ) slope_factor = max(0.50, min(1.80, 1.0 + 0.80 * oriented_slope)) width_factor = max(0.75, min(1.35, (6.0 / edge.width_m) ** 0.20)) @@ -134,11 +141,15 @@ def _edge_score( network: CityNetwork, edge: Edge, parameters: FireParameters, + wind_field: Any | None = None, ) -> float: directions = [(edge.start, edge.end)] if edge.bidirectional: directions.append((edge.end, edge.start)) - return max(edge_speed_m_per_min(network, edge, source, target, parameters) for source, target in directions) + return max( + edge_speed_m_per_min(network, edge, source, target, parameters, wind_field) + for source, target in directions + ) def simulate( @@ -146,6 +157,7 @@ def simulate( ignition_nodes: list[str] | tuple[str, ...], parameters: FireParameters | None = None, horizon_minutes: float = 60.0, + wind_field: Any | None = None, ) -> SimulationResult: """Propagate the front from ignition nodes until the time horizon.""" if horizon_minutes < 0: @@ -176,7 +188,7 @@ def simulate( if edge.id in started_edges: continue started_edges.add(edge.id) - speed = edge_speed_m_per_min(network, edge, node_id, target_id, params) + speed = edge_speed_m_per_min(network, edge, node_id, target_id, params, wind_field) travel_minutes = edge.length_m / speed completion = arrival + travel_minutes edge_arrivals.append( @@ -199,7 +211,7 @@ def simulate( edge_arrivals.sort(key=lambda item: (item.start_minute, item.edge_id, item.from_node, item.to_node)) raw_scores = { - edge.id: _edge_score(network, edge, params) + edge.id: _edge_score(network, edge, params, wind_field) for edge in sorted(network.edges.values(), key=lambda item: item.id) } minimum = min(raw_scores.values(), default=0.0) diff --git a/src/fire_spread/urban_wind.py b/src/fire_spread/urban_wind.py new file mode 100644 index 0000000..7db301a --- /dev/null +++ b/src/fire_spread/urban_wind.py @@ -0,0 +1,239 @@ +"""A lightweight QUIC-URB-inspired diagnostic urban wind field. + +This is intentionally not a reimplementation of the proprietary QUIC-URB +solver. It rasterizes the available OSM building massing onto a regular grid, +then applies local speed reduction and obstacle-aware steering to a prescribed +background wind. The field is useful as a first coupling between the 3D OSM +scene and the graph fire-front model while the full fluid solver remains out +of scope. +""" + +from __future__ import annotations + +import math +from dataclasses import dataclass +from typing import Any, Iterable, Mapping + + +def _point_in_polygon(x: float, y: float, polygon: list[tuple[float, float]]) -> bool: + """Return whether a point is inside a polygon using ray casting.""" + inside = False + previous_x, previous_y = polygon[-1] + for current_x, current_y in polygon: + crosses = (current_y > y) != (previous_y > y) + if crosses: + intersection_x = (previous_x - current_x) * (y - current_y) / ( + previous_y - current_y + ) + current_x + if x < intersection_x: + inside = not inside + previous_x, previous_y = current_x, current_y + return inside + + +def _effective_height(building: Mapping[str, Any], unknown_height_m: float) -> float: + height = max( + float(building.get("height_m") or 0.0), + float(building.get("min_height_m") or 0.0), + ) + return height if height > 0.0 else unknown_height_m + + +@dataclass(frozen=True, slots=True) +class WindSample: + """Local wind values used by the fire propagation heuristic.""" + + speed_mps: float + direction_deg: float + obstruction: float + building_height_m: float + + +@dataclass(frozen=True, slots=True) +class UrbanWindField: + """Regular-grid urban wind approximation over the OSM building layer.""" + + origin_x: float + origin_y: float + cell_size_m: float + width: int + height: int + heights: tuple[float, ...] + base_wind_speed_mps: float + base_wind_direction_deg: float + unknown_height_m: float + obstacle_cells: int + + @classmethod + def from_buildings( + cls, + buildings: Iterable[Mapping[str, Any]], + bounds: tuple[float, float, float, float], + *, + wind_speed_mps: float, + wind_direction_deg: float, + cell_size_m: float = 100.0, + unknown_height_m: float = 3.0, + ) -> "UrbanWindField": + """Build an obstacle grid from ``(min_x, max_x, min_y, max_y)``.""" + if cell_size_m <= 0: + raise ValueError("cell_size_m must be positive") + if wind_speed_mps < 0: + raise ValueError("wind_speed_mps must not be negative") + if not 0 <= wind_direction_deg < 360: + raise ValueError("wind_direction_deg must be in [0, 360)") + if unknown_height_m < 0: + raise ValueError("unknown_height_m must not be negative") + + min_x, max_x, min_y, max_y = bounds + origin_x = math.floor(min_x / cell_size_m) * cell_size_m - cell_size_m + origin_y = math.floor(min_y / cell_size_m) * cell_size_m - cell_size_m + width = max(1, math.ceil((max_x - origin_x) / cell_size_m) + 1) + height = max(1, math.ceil((max_y - origin_y) / cell_size_m) + 1) + grid = [0.0] * (width * height) + + obstacle_count = 0 + for building in buildings: + raw_polygon = building.get("polygon", []) + if not isinstance(raw_polygon, list): + continue + polygon = [ + (float(point[0]), float(point[1])) + for point in raw_polygon + if isinstance(point, (list, tuple)) and len(point) >= 2 + ] + if len(polygon) < 3: + continue + height_m = _effective_height(building, unknown_height_m) + polygon_min_x = min(point[0] for point in polygon) + polygon_max_x = max(point[0] for point in polygon) + polygon_min_y = min(point[1] for point in polygon) + polygon_max_y = max(point[1] for point in polygon) + min_cell_x = max(0, math.floor((polygon_min_x - origin_x) / cell_size_m)) + max_cell_x = min(width - 1, math.floor((polygon_max_x - origin_x) / cell_size_m)) + min_cell_y = max(0, math.floor((polygon_min_y - origin_y) / cell_size_m)) + max_cell_y = min(height - 1, math.floor((polygon_max_y - origin_y) / cell_size_m)) + + touched: set[int] = set() + for cell_y in range(min_cell_y, max_cell_y + 1): + center_y = origin_y + (cell_y + 0.5) * cell_size_m + for cell_x in range(min_cell_x, max_cell_x + 1): + center_x = origin_x + (cell_x + 0.5) * cell_size_m + if _point_in_polygon(center_x, center_y, polygon): + touched.add(cell_y * width + cell_x) + # Small footprints can fall between cell centres; retain their + # centroid cell so they still influence the local wind field. + centroid_x = sum(point[0] for point in polygon) / len(polygon) + centroid_y = sum(point[1] for point in polygon) / len(polygon) + centroid_cell_x = math.floor((centroid_x - origin_x) / cell_size_m) + centroid_cell_y = math.floor((centroid_y - origin_y) / cell_size_m) + if 0 <= centroid_cell_x < width and 0 <= centroid_cell_y < height: + touched.add(centroid_cell_y * width + centroid_cell_x) + for index in touched: + if grid[index] == 0.0: + obstacle_count += 1 + grid[index] = max(grid[index], height_m) + + return cls( + origin_x=origin_x, + origin_y=origin_y, + cell_size_m=cell_size_m, + width=width, + height=height, + heights=tuple(grid), + base_wind_speed_mps=wind_speed_mps, + base_wind_direction_deg=wind_direction_deg, + unknown_height_m=unknown_height_m, + obstacle_cells=obstacle_count, + ) + + @property + def metadata(self) -> dict[str, Any]: + return { + "enabled": True, + "name": "QUIC-URB-inspired diagnostic urban wind", + "cell_size_m": self.cell_size_m, + "grid": {"width": self.width, "height": self.height}, + "obstacle_cells": self.obstacle_cells, + "base_wind_speed_mps": self.base_wind_speed_mps, + "base_wind_direction_deg": self.base_wind_direction_deg, + "unknown_height_m": self.unknown_height_m, + "note": "Heuristic building blockage and steering; not the QUIC-URB solver.", + } + + def _cell(self, x: float, y: float) -> tuple[int, int]: + return ( + max(0, min(self.width - 1, math.floor((x - self.origin_x) / self.cell_size_m))), + max(0, min(self.height - 1, math.floor((y - self.origin_y) / self.cell_size_m))), + ) + + def _height_at_cell(self, cell_x: int, cell_y: int) -> float: + cell_x = max(0, min(self.width - 1, cell_x)) + cell_y = max(0, min(self.height - 1, cell_y)) + return self.heights[cell_y * self.width + cell_x] + + def sample(self, x: float, y: float) -> WindSample: + """Sample speed and direction at a local projected coordinate.""" + cell_x, cell_y = self._cell(x, y) + center_height = self._height_at_cell(cell_x, cell_y) + west = self._height_at_cell(cell_x - 1, cell_y) + east = self._height_at_cell(cell_x + 1, cell_y) + south = self._height_at_cell(cell_x, cell_y - 1) + north = self._height_at_cell(cell_x, cell_y + 1) + gradient_x = (east - west) / (2.0 * self.cell_size_m) + gradient_y = (north - south) / (2.0 * self.cell_size_m) + gradient_length = math.hypot(gradient_x, gradient_y) + neighbor_height = max(west, east, south, north) + obstruction = min( + 1.0, + max(center_height / 18.0, neighbor_height / 28.0), + ) + + direction_radians = math.radians(self.base_wind_direction_deg) + base_x = math.cos(direction_radians) + base_y = math.sin(direction_radians) + adjusted_x, adjusted_y = base_x, base_y + if gradient_length > 1e-9: + gradient_x /= gradient_length + gradient_y /= gradient_length + incoming = max(0.0, base_x * gradient_x + base_y * gradient_y) + # Remove the component entering a building wall and add a small + # lateral component to represent flow being diverted around it. + adjusted_x -= 0.85 * incoming * gradient_x + adjusted_y -= 0.85 * incoming * gradient_y + side = -1.0 if base_x * gradient_y - base_y * gradient_x > 0 else 1.0 + adjusted_x += side * 0.30 * incoming * (-gradient_y) + adjusted_y += side * 0.30 * incoming * gradient_x + adjusted_length = math.hypot(adjusted_x, adjusted_y) + if adjusted_length > 1e-9: + adjusted_x /= adjusted_length + adjusted_y /= adjusted_length + speed_factor = max(0.25, 1.0 - 0.50 * obstruction) + return WindSample( + speed_mps=self.base_wind_speed_mps * speed_factor, + direction_deg=math.degrees(math.atan2(adjusted_y, adjusted_x)) % 360, + obstruction=obstruction, + building_height_m=center_height, + ) + + def sample_edge( + self, + source_x: float, + source_y: float, + target_x: float, + target_y: float, + ) -> WindSample: + """Average three samples along an edge for stable graph coupling.""" + samples = [ + self.sample(source_x, source_y), + self.sample((source_x + target_x) / 2.0, (source_y + target_y) / 2.0), + self.sample(target_x, target_y), + ] + vector_x = sum(sample.speed_mps * math.cos(math.radians(sample.direction_deg)) for sample in samples) / len(samples) + vector_y = sum(sample.speed_mps * math.sin(math.radians(sample.direction_deg)) for sample in samples) / len(samples) + return WindSample( + speed_mps=math.hypot(vector_x, vector_y), + direction_deg=math.degrees(math.atan2(vector_y, vector_x)) % 360, + obstruction=sum(sample.obstruction for sample in samples) / len(samples), + building_height_m=max(sample.building_height_m for sample in samples), + ) diff --git a/src/fire_spread/web.py b/src/fire_spread/web.py index b8b974c..2820abf 100644 --- a/src/fire_spread/web.py +++ b/src/fire_spread/web.py @@ -3,7 +3,9 @@ from __future__ import annotations import argparse +import gzip import json +import math import threading from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer from pathlib import Path @@ -12,6 +14,7 @@ from .io import load_network from .models import CityNetwork from .propagation import FireParameters, SimulationResult, simulate +from .urban_wind import UrbanWindField class ScenarioService: @@ -24,6 +27,7 @@ def __init__(self, dataset_path: str | Path, buildings_path: str | Path | None = self.source = payload.get("source", {}) self.buildings_path = Path(buildings_path) if buildings_path else None self.buildings_payload = self._load_buildings() + self._prepare_building_index() self.default_ignition = min( self.network.nodes, key=lambda node_id: ( @@ -33,6 +37,11 @@ def __init__(self, dataset_path: str | Path, buildings_path: str | Path | None = ) self._lock = threading.Lock() self._last_result: SimulationResult | None = None + self._last_urban_wind: dict[str, Any] = { + "enabled": False, + "name": "QUIC-URB-inspired diagnostic urban wind", + "note": "Disabled for the current result.", + } def _load_buildings(self) -> dict[str, Any]: if self.buildings_path is None or not self.buildings_path.exists(): @@ -42,6 +51,117 @@ def _load_buildings(self) -> dict[str, Any]: raise ValueError("building dataset must contain a buildings list") return payload + def _prepare_building_index(self) -> None: + """Index building centroids for the web-only fire/building coupling.""" + self._building_cell_size = 100.0 + self._building_records: list[dict[str, Any]] = [] + self._building_index: dict[tuple[int, int], list[int]] = {} + largest_radius = 0.0 + for building in self.buildings_payload.get("buildings", []): + polygon = building.get("polygon", []) + if not isinstance(polygon, list) or len(polygon) < 3: + continue + points = [ + (float(point[0]), float(point[1])) + for point in polygon + if isinstance(point, (list, tuple)) and len(point) >= 2 + ] + if len(points) < 3: + continue + center_x = sum(point[0] for point in points) / len(points) + center_y = sum(point[1] for point in points) / len(points) + radius = max( + math.hypot(point[0] - center_x, point[1] - center_y) + for point in points + ) + record_index = len(self._building_records) + self._building_records.append( + { + "id": str(building.get("id", "")), + "x": center_x, + "y": center_y, + "radius": radius, + } + ) + largest_radius = max(largest_radius, radius) + cell = ( + math.floor(center_x / self._building_cell_size), + math.floor(center_y / self._building_cell_size), + ) + self._building_index.setdefault(cell, []).append(record_index) + self._building_search_radius = max(40.0, largest_radius + 20.0) + + def _building_candidates(self, x1: float, y1: float, x2: float | None = None, y2: float | None = None): + x2 = x1 if x2 is None else x2 + y2 = y1 if y2 is None else y2 + search = self._building_search_radius + cell_size = self._building_cell_size + min_cell_x = math.floor((min(x1, x2) - search) / cell_size) + max_cell_x = math.floor((max(x1, x2) + search) / cell_size) + min_cell_y = math.floor((min(y1, y2) - search) / cell_size) + max_cell_y = math.floor((max(y1, y2) + search) / cell_size) + seen: set[int] = set() + for cell_x in range(min_cell_x, max_cell_x + 1): + for cell_y in range(min_cell_y, max_cell_y + 1): + for record_index in self._building_index.get((cell_x, cell_y), []): + if record_index not in seen: + seen.add(record_index) + yield self._building_records[record_index] + + @staticmethod + def _point_to_segment_distance(point_x: float, point_y: float, x1: float, y1: float, x2: float, y2: float) -> float: + delta_x = x2 - x1 + delta_y = y2 - y1 + length_squared = delta_x * delta_x + delta_y * delta_y + if length_squared == 0: + return math.hypot(point_x - x1, point_y - y1) + projection = ((point_x - x1) * delta_x + (point_y - y1) * delta_y) / length_squared + projection = max(0.0, min(1.0, projection)) + closest_x = x1 + projection * delta_x + closest_y = y1 + projection * delta_y + return math.hypot(point_x - closest_x, point_y - closest_y) + + def _burning_buildings(self, result: SimulationResult) -> list[dict[str, Any]]: + """Return buildings adjacent to the advancing front. + + This is deliberately a presentation coupling: a building is lit when + its footprint centroid is within its footprint radius plus 18 m of an + activated road segment or ignition node. + """ + if not self._building_records: + return [] + fronts: list[tuple[float, float, float, float, float, str | None]] = [] + for node_id in result.ignition_nodes: + node = self.network.nodes[node_id] + fronts.append((node.x, node.y, node.x, node.y, 0.0, None)) + for arrival in result.edge_arrivals: + edge = self.network.edges.get(arrival.edge_id) + if edge is None: + continue + start = self.network.nodes[edge.start] + end = self.network.nodes[edge.end] + fronts.append((start.x, start.y, end.x, end.y, arrival.start_minute, edge.id)) + + burning: dict[str, dict[str, Any]] = {} + for x1, y1, x2, y2, ignition_minute, edge_id in fronts: + for building in self._building_candidates(x1, y1, x2, y2): + distance = self._point_to_segment_distance( + building["x"], building["y"], x1, y1, x2, y2 + ) + if distance > building["radius"] + 18.0: + continue + current = burning.get(building["id"]) + if current is None or ignition_minute < current["ignition_minute"]: + burning[building["id"]] = { + "building_id": building["id"], + "ignition_minute": ignition_minute, + "source_edge_id": edge_id, + } + return sorted( + burning.values(), + key=lambda item: (item["ignition_minute"], item["building_id"]), + ) + def status(self) -> dict[str, Any]: building_source = self.buildings_payload.get("source", {}) return { @@ -49,6 +169,7 @@ def status(self) -> dict[str, Any]: "nodes": len(self.network.nodes), "edges": len(self.network.edges), "default_ignition": self.default_ignition, + "elevation_nodes": sum(node.elevation_m is not None for node in self.network.nodes.values()), "source": dict(self.source), "buildings": len(self.buildings_payload.get("buildings", [])), "building_height_sources": dict(building_source.get("height_source_counts", {})), @@ -58,7 +179,13 @@ def status(self) -> dict[str, Any]: def network_payload(self) -> dict[str, Any]: return { "nodes": [ - {"id": node.id, "x": node.x, "y": node.y} + { + "id": node.id, + "x": node.x, + "y": node.y, + "elevation_m": node.elevation_m, + "metadata": dict(node.metadata), + } for node in self.network.nodes.values() ], "edges": [ @@ -78,6 +205,9 @@ def buildings_payload_for_web(self) -> dict[str, Any]: "height_m": building.get("height_m", 0), "min_height_m": building.get("min_height_m", 0), "height_source": building.get("height_source", "footprint_only"), + "levels": building.get("levels"), + "roof_height_m": building.get("roof_height_m"), + "roof_shape": building.get("roof_shape"), "building": building.get("building"), "building_part": building.get("building_part"), } @@ -102,22 +232,122 @@ def run(self, request: Mapping[str, Any]) -> dict[str, Any]: moisture=float(request.get("moisture", 0.0)), ) horizon_minutes = float(request.get("horizon_minutes", 60.0)) + urban_wind_enabled = request.get("urban_wind_enabled", True) is not False + cell_size_m = float(request.get("urban_wind_cell_size_m", 100.0)) + if not 25.0 <= cell_size_m <= 500.0: + raise ValueError("urban_wind_cell_size_m must be between 25 and 500") + urban_wind = None + if urban_wind_enabled and self.buildings_payload.get("buildings"): + urban_wind = UrbanWindField.from_buildings( + self.buildings_payload.get("buildings", []), + self._model_bounds(), + wind_speed_mps=parameters.wind_speed_mps, + wind_direction_deg=parameters.wind_direction_deg, + cell_size_m=cell_size_m, + ) with self._lock: + self._last_urban_wind = ( + urban_wind.metadata + if urban_wind is not None + else { + "enabled": False, + "name": "QUIC-URB-inspired diagnostic urban wind", + "note": "Disabled or no building geometry was available.", + } + ) self._last_result = simulate( self.network, ignition_nodes, parameters=parameters, horizon_minutes=horizon_minutes, + wind_field=urban_wind, ) return self._result_payload_unlocked() + def _model_bounds(self) -> tuple[float, float, float, float]: + """Return bounds covering the network and available building footprints.""" + points = [(node.x, node.y) for node in self.network.nodes.values()] + for building in self.buildings_payload.get("buildings", []): + polygon = building.get("polygon", []) + points.extend( + (float(point[0]), float(point[1])) + for point in polygon + if isinstance(point, (list, tuple)) and len(point) >= 2 + ) + if not points: + raise ValueError("cannot build urban wind field without geometry") + xs, ys = zip(*points) + return min(xs), max(xs), min(ys), max(ys) + def _result_payload_unlocked(self) -> dict[str, Any]: if self._last_result is None: raise RuntimeError("no simulation result is available") payload = self._last_result.to_dict() payload["dataset"] = self.status() + payload["burning_buildings"] = self._burning_buildings(self._last_result) + payload["building_fire_model"] = { + "description": "Buildings adjacent to an activated road segment or ignition node are highlighted.", + "proximity_m": 18.0, + } + payload["urban_wind"] = dict(self._last_urban_wind) return payload + def flow(self, request: Mapping[str, Any]) -> dict[str, Any]: + """Return a local vector field centered on one selected network node.""" + node_id = str(request.get("node_id", "")).strip() + if not node_id: + raise ValueError("node_id is required") + if node_id not in self.network.nodes: + raise ValueError(f"unknown node: {node_id}") + radius_m = float(request.get("radius_m", 2000.0)) + cell_size_m = float(request.get("cell_size_m", 100.0)) + if not 100.0 <= radius_m <= 5000.0: + raise ValueError("radius_m must be between 100 and 5000") + if not 25.0 <= cell_size_m <= 500.0: + raise ValueError("cell_size_m must be between 25 and 500") + parameters = FireParameters( + wind_direction_deg=float(request.get("wind_direction_deg", 0.0)), + wind_speed_mps=float(request.get("wind_speed_mps", 0.0)), + ) + field = UrbanWindField.from_buildings( + self.buildings_payload.get("buildings", []), + self._model_bounds(), + wind_speed_mps=parameters.wind_speed_mps, + wind_direction_deg=parameters.wind_direction_deg, + cell_size_m=cell_size_m, + ) + center = self.network.nodes[node_id] + samples: list[dict[str, Any]] = [] + extent = int(math.ceil(radius_m / cell_size_m)) + for grid_y in range(-extent, extent + 1): + local_y = grid_y * cell_size_m + for grid_x in range(-extent, extent + 1): + local_x = grid_x * cell_size_m + if math.hypot(local_x, local_y) > radius_m: + continue + sample = field.sample(center.x + local_x, center.y + local_y) + direction_radians = math.radians(sample.direction_deg) + samples.append( + { + "x_m": local_x, + "y_m": local_y, + "speed_mps": sample.speed_mps, + "direction_deg": sample.direction_deg, + "u_mps": sample.speed_mps * math.cos(direction_radians), + "v_mps": sample.speed_mps * math.sin(direction_radians), + "obstruction": sample.obstruction, + "building_height_m": sample.building_height_m, + } + ) + return { + "model": field.metadata, + "node_id": node_id, + "center": {"x": center.x, "y": center.y}, + "radius_m": radius_m, + "cell_size_m": cell_size_m, + "samples": samples, + } + def last_result(self) -> dict[str, Any] | None: with self._lock: return None if self._last_result is None else self._result_payload_unlocked() @@ -131,9 +361,18 @@ def log_message(self, format: str, *args: Any) -> None: print(f"{self.address_string()} - {format % args}") def _send_bytes(self, content: bytes, content_type: str, status: int = 200) -> None: + compressed = False + if content_type.startswith("application/json") and "gzip" in self.headers.get("Accept-Encoding", ""): + gzipped = gzip.compress(content, compresslevel=6) + if len(gzipped) < len(content): + content = gzipped + compressed = True self.send_response(status) self.send_header("Content-Type", content_type) self.send_header("Content-Length", str(len(content))) + if compressed: + self.send_header("Content-Encoding", "gzip") + self.send_header("Vary", "Accept-Encoding") self.send_header("Cache-Control", "no-store") self.end_headers() self.wfile.write(content) @@ -173,15 +412,19 @@ def do_GET(self) -> None: # noqa: N802 - stdlib handler API self._send_json({"error": "not found"}, status=404) def do_POST(self) -> None: # noqa: N802 - stdlib handler API - if self.path != "/api/simulate": + if self.path not in {"/api/simulate", "/api/flow"}: self._send_json({"error": "not found"}, status=404) return try: - result = self.service.run(self._read_json()) + request = self._read_json() + result = self.service.run(request) if self.path == "/api/simulate" else self.service.flow(request) except (json.JSONDecodeError, TypeError, ValueError) as exc: self._send_json({"error": str(exc)}, status=400) return - self._send_json({"result": result, "status": self.service.status()}) + response = {"result": result, "status": self.service.status()} + if self.path == "/api/flow": + response = {"flow": result, "status": self.service.status()} + self._send_json(response) def _serve_static(self, filename: str, content_type: str) -> None: path = self.static_dir / filename @@ -197,12 +440,12 @@ def build_parser() -> argparse.ArgumentParser: parser = argparse.ArgumentParser(description="Serve the urban fire spread web UI") parser.add_argument( "--dataset", - default="data/processed/polatli_network.json", + default="data/processed/manhattan_network.json", help="normalized network JSON path", ) parser.add_argument( "--buildings", - default="data/processed/polatli_buildings.json", + default="data/processed/manhattan_buildings.json", help="normalized building layer JSON path", ) parser.add_argument("--static-dir", default="web", help="directory containing web assets") diff --git a/tests/test_osm.py b/tests/test_osm.py index e1ee493..2b5e1d1 100644 --- a/tests/test_osm.py +++ b/tests/test_osm.py @@ -59,6 +59,26 @@ def test_intersection_shared_by_ways_is_one_graph_node(self): shared_id = "osm:39.0000000:32.0010000" self.assertEqual(len(graph.neighbors(shared_id)), 2) + def test_optional_osm_elevation_is_preserved_on_normalized_nodes(self): + payload = { + "elements": [ + { + "type": "way", + "id": 3, + "tags": {"highway": "service"}, + "geometry": [ + {"lat": 39.0, "lon": 32.0, "ele": "925 m"}, + {"lat": 39.0, "lon": 32.001, "ele": "926"}, + ], + } + ] + } + + graph = network_from_osm(payload, origin_lat=39.0, origin_lon=32.0) + + self.assertEqual(graph.nodes["osm:39.0000000:32.0000000"].elevation_m, 925.0) + self.assertEqual(graph.nodes["osm:39.0000000:32.0010000"].elevation_m, 926.0) + if __name__ == "__main__": unittest.main() diff --git a/tests/test_real_dataset.py b/tests/test_real_dataset.py index 32dc1ca..10416fb 100644 --- a/tests/test_real_dataset.py +++ b/tests/test_real_dataset.py @@ -30,6 +30,21 @@ def test_real_network_runs_from_default_center_ignition(self): self.assertEqual(result["parameters"]["base_rate_m_per_min"], 30.0) self.assertEqual(result["dataset"]["source"]["provider"], "OpenStreetMap contributors") self.assertGreaterEqual(result["dataset"]["buildings"], 10_000) + self.assertIn("burning_buildings", result) + self.assertGreater(len(result["burning_buildings"]), 0) + self.assertIn("building_fire_model", result) + self.assertTrue(result["urban_wind"]["enabled"]) + self.assertEqual(result["urban_wind"]["cell_size_m"], 100.0) + + flow = service.flow({ + "node_id": service.default_ignition, + "radius_m": 500.0, + "cell_size_m": 100.0, + "wind_speed_mps": 8.0, + }) + self.assertEqual(flow["node_id"], service.default_ignition) + self.assertGreater(len(flow["samples"]), 0) + self.assertTrue(any(sample["speed_mps"] > 0 for sample in flow["samples"])) if __name__ == "__main__": diff --git a/tests/test_urban_wind.py b/tests/test_urban_wind.py new file mode 100644 index 0000000..4d36239 --- /dev/null +++ b/tests/test_urban_wind.py @@ -0,0 +1,45 @@ +import unittest + +from fire_spread.urban_wind import UrbanWindField + + +class UrbanWindFieldTests(unittest.TestCase): + def field(self, buildings): + return UrbanWindField.from_buildings( + buildings, + (0.0, 300.0, 0.0, 300.0), + wind_speed_mps=10.0, + wind_direction_deg=0.0, + cell_size_m=50.0, + ) + + def test_open_cell_preserves_background_wind(self): + field = self.field([]) + sample = field.sample(25.0, 25.0) + + self.assertAlmostEqual(sample.speed_mps, 10.0) + self.assertAlmostEqual(sample.direction_deg, 0.0) + self.assertEqual(sample.obstruction, 0.0) + + def test_building_massing_blocks_wind(self): + field = self.field( + [{"id": "building-1", "polygon": [[100, 100], [150, 100], [150, 150], [100, 150]], "height_m": 24}] + ) + sample = field.sample(125.0, 125.0) + + self.assertGreater(sample.obstruction, 0.9) + self.assertLess(sample.speed_mps, 10.0) + self.assertEqual(field.obstacle_cells, 1) + + def test_unknown_height_uses_massing_fallback(self): + field = self.field( + [{"id": "building-1", "polygon": [[100, 100], [150, 100], [150, 150], [100, 150]]}] + ) + sample = field.sample(125.0, 125.0) + + self.assertEqual(sample.building_height_m, 3.0) + self.assertGreater(sample.obstruction, 0.0) + + +if __name__ == "__main__": + unittest.main() diff --git a/web/app.js b/web/app.js index dd5c813..4ca6cd3 100644 --- a/web/app.js +++ b/web/app.js @@ -3,24 +3,41 @@ const state = { network: null, buildings: [], result: null, - edgeElements: new Map(), - nodeElements: new Map(), - projection: null, - heightMode: "source", + scene: null, + renderer: null, + cameras: {}, + activeCamera: null, + world: null, + buildingMesh: null, + roadLines: null, + fireLines: null, + flowLines: null, + flowBoundary: null, + nodePoints: null, + selectedNodePoints: null, + selectedNodePin: null, + selectedNode: null, + ignitionPoints: null, + grid: null, + bounds: null, + burningBuildingIds: new Set(), + heightMode: "massing", verticalScale: 25, camera: { yaw: -0.68, - pitch: 0.62, - zoom: 1, - panX: 0, - panY: 0, + pitch: 0.7, + radius: 6000, + targetX: 0, + targetZ: 0, }, gesture: null, + suppressClick: false, }; -const SCENE_WIDTH = 1000; -const SCENE_HEIGHT = 700; const $ = (id) => document.getElementById(id); +const THREE = window.THREE; +const MIN_CAMERA_RADIUS = 25; +const MAX_CAMERA_RADIUS = 100000; function setRunState(label, detail = "", progress = 12) { $("run-label").textContent = label; @@ -28,6 +45,11 @@ function setRunState(label, detail = "", progress = 12) { $("progress-fill").style.width = `${progress}%`; } +function focusSceneCanvas() { + const canvas = $("building-scene"); + if (canvas) canvas.focus({preventScroll: true}); +} + function escapeText(value) { return String(value ?? "—"); } @@ -60,306 +82,547 @@ function setDatasetMetadata(status) { $("dataset-bbox").textContent = escapeText(bboxText); $("ignition").value = status.default_ignition; $("service-state").textContent = `${status.nodes.toLocaleString()} nodes / ${status.edges.toLocaleString()} links / ${Number(status.buildings || 0).toLocaleString()} buildings`; + $("terrain-status").textContent = status.elevation_nodes + ? `${Number(status.elevation_nodes).toLocaleString()} OSM elevation points` + : "No OSM terrain elevations in source"; + $("wind-model-status").textContent = "QUIC-URB-inspired (experimental)"; } -function makeSvgElement(name, attributes) { - const element = document.createElementNS("http://www.w3.org/2000/svg", name); - for (const [key, value] of Object.entries(attributes)) element.setAttribute(key, value); - return element; +function clamp(value, minimum, maximum) { + return Math.max(minimum, Math.min(maximum, value)); } -function effectiveBuildingHeight(building) { - const sourceHeight = Number(building.height_m) || 0; - if (sourceHeight > 0) return sourceHeight; - return state.heightMode === "massing" ? 3 : 0; +function colorForScore(score) { + const intensity = Math.max(0, Math.min(1, Number(score) || 0)); + const red = 180 + Math.round(intensity * 55); + const green = 208 - Math.round(intensity * 150); + const blue = 197 - Math.round(intensity * 175); + return new THREE.Color(red / 255, green / 255, blue / 255); } -function createSceneProjection() { - const {yaw, pitch} = state.camera; - let minWorldX = Infinity; - let maxWorldX = -Infinity; - let minWorldY = Infinity; - let maxWorldY = -Infinity; - const includeWorld = (x, y) => { - minWorldX = Math.min(minWorldX, x); - maxWorldX = Math.max(maxWorldX, x); - minWorldY = Math.min(minWorldY, y); - maxWorldY = Math.max(maxWorldY, y); - }; - for (const node of state.network.nodes) includeWorld(node.x, node.y); +function makeLineGeometry(segments) { + const positions = new Float32Array(segments.length * 6); + segments.forEach((segment, index) => { + positions.set(segment, index * 6); + }); + const geometry = new THREE.BufferGeometry(); + geometry.setAttribute("position", new THREE.BufferAttribute(positions, 3)); + return geometry; +} + +function networkNode(nodeId) { + return state.network.nodes.find((node) => node.id === nodeId); +} + +function buildingHeight(building) { + const sourceHeight = Math.max(0, Number(building.height_m) || 0); + const base = Math.max(0, Number(building.min_height_m) || 0); + const fallback = state.heightMode === "massing" && sourceHeight <= base ? 3 : sourceHeight; + return Math.max(base, fallback); +} + +function buildingColors(building, side = false) { + if (state.burningBuildingIds.has(building.id)) { + return side ? new THREE.Color(0xb51218) : new THREE.Color(0xff2b2b); + } + if (building.height_source === "height_tag") { + return side ? new THREE.Color(0x9d8d7e) : new THREE.Color(0xd1bca8); + } + if (building.height_source === "levels_estimate") { + return side ? new THREE.Color(0x897f73) : new THREE.Color(0xbeb2a2); + } + return side ? new THREE.Color(0x626a68) : new THREE.Color(0x919c98); +} + +function addVertex(positions, colors, point, color) { + const index = positions.length / 3; + positions.push(point.x, point.y, point.z); + colors.push(color.r, color.g, color.b); + return index; +} + +function createBuildingMesh() { + if (state.buildingMesh) { + state.world.remove(state.buildingMesh); + state.buildingMesh.geometry.dispose(); + state.buildingMesh.material.dispose(); + } + const positions = []; + const colors = []; + const indices = []; for (const building of state.buildings) { - for (const [x, y] of building.polygon) includeWorld(x, y); + const polygon = Array.isArray(building.polygon) ? building.polygon : []; + if (polygon.length < 3) continue; + const base = Math.max(0, Number(building.min_height_m) || 0); + const top = buildingHeight(building); + const topColor = buildingColors(building, false); + const sideColor = buildingColors(building, true); + const points = polygon.map(([x, y]) => ({x: Number(x), y: top, z: -Number(y)})); + const basePoints = polygon.map(([x, y]) => ({x: Number(x), y: base, z: -Number(y)})); + + const topIndices = points.map((point) => addVertex(positions, colors, point, topColor)); + const baseIndices = basePoints.map((point) => addVertex(positions, colors, point, sideColor)); + for (let index = 1; index < topIndices.length - 1; index += 1) { + indices.push(topIndices[0], topIndices[index], topIndices[index + 1]); + } + for (let index = 0; index < points.length; index += 1) { + const next = (index + 1) % points.length; + indices.push( + baseIndices[index], baseIndices[next], topIndices[next], + baseIndices[index], topIndices[next], topIndices[index], + ); + } } - const worldSpan = Math.max(maxWorldX - minWorldX, maxWorldY - minWorldY, 1); - const focal = worldSpan * 2.5; - const mode = $("view-mode").value; - const rawPoint = (x, y, z) => { - const scaledZ = z * state.verticalScale; - const horizontal = Math.cos(yaw) * x - Math.sin(yaw) * y; - const depthGround = Math.sin(yaw) * x + Math.cos(yaw) * y; - const vertical = -Math.sin(pitch) * depthGround - Math.cos(pitch) * scaledZ; - const depth = Math.cos(pitch) * depthGround - Math.sin(pitch) * scaledZ; - const factor = mode === "perspective" ? focal / (focal + depth) : 1; - return {x: horizontal * factor, y: vertical * factor, depth}; - }; + const geometry = new THREE.BufferGeometry(); + geometry.setAttribute("position", new THREE.Float32BufferAttribute(positions, 3)); + geometry.setAttribute("color", new THREE.Float32BufferAttribute(colors, 3)); + geometry.setIndex(indices); + geometry.computeVertexNormals(); + const material = new THREE.MeshStandardMaterial({ + vertexColors: true, + roughness: 0.88, + metalness: 0.02, + side: THREE.DoubleSide, + }); + state.buildingMesh = new THREE.Mesh(geometry, material); + state.world.add(state.buildingMesh); +} + +function createRoadLines() { + if (state.roadLines) { + state.world.remove(state.roadLines); + state.roadLines.geometry.dispose(); + state.roadLines.material.dispose(); + } + const nodesById = new Map(state.network.nodes.map((node) => [node.id, node])); + const segments = []; + for (const edge of state.network.edges) { + const start = nodesById.get(edge.start); + const end = nodesById.get(edge.end); + if (!start || !end) continue; + segments.push([start.x, 0.35, -start.y, end.x, 0.35, -end.y]); + } + state.roadLines = new THREE.LineSegments( + makeLineGeometry(segments), + new THREE.LineBasicMaterial({color: 0x8f9996, transparent: true, opacity: 0.7}), + ); + state.world.add(state.roadLines); +} + +function createNodePoints() { + if (state.nodePoints) { + state.world.remove(state.nodePoints); + state.nodePoints.geometry.dispose(); + state.nodePoints.material.dispose(); + } + const positions = new Float32Array(state.network.nodes.length * 3); + state.network.nodes.forEach((node, index) => { + positions.set([node.x, 0.7, -node.y], index * 3); + }); + const geometry = new THREE.BufferGeometry(); + geometry.setAttribute("position", new THREE.BufferAttribute(positions, 3)); + state.nodePoints = new THREE.Points( + geometry, + new THREE.PointsMaterial({color: 0xd7e2df, size: 6, sizeAttenuation: true, transparent: true, opacity: 0.92}), + ); + state.nodePoints.userData.nodeIds = state.network.nodes.map((node) => node.id); + state.world.add(state.nodePoints); +} + +function setSelectedNode(nodeId) { + const node = networkNode(nodeId); + if (!node) return; + state.selectedNode = node; + clearFlowField(); + if (state.selectedNodePoints) { + state.world.remove(state.selectedNodePoints); + state.selectedNodePoints.geometry.dispose(); + state.selectedNodePoints.material.dispose(); + } + if (state.selectedNodePin) { + state.world.remove(state.selectedNodePin); + state.selectedNodePin.geometry.dispose(); + state.selectedNodePin.material.dispose(); + } + const markerGeometry = new THREE.BufferGeometry(); + markerGeometry.setAttribute("position", new THREE.Float32BufferAttribute([node.x, 0.9, -node.y], 3)); + state.selectedNodePoints = new THREE.Points( + markerGeometry, + new THREE.PointsMaterial({color: 0xffd166, size: 20, sizeAttenuation: true}), + ); + const pinGeometry = makeLineGeometry([[node.x, 0.05, -node.y, node.x, 0.9, -node.y]]); + state.selectedNodePin = new THREE.Line( + pinGeometry, + new THREE.LineBasicMaterial({color: 0xffd166, transparent: true, opacity: 0.9}), + ); + state.world.add(state.selectedNodePin, state.selectedNodePoints); + const metadata = node.metadata || {}; + const coordinates = Number.isFinite(Number(metadata.latitude)) && Number.isFinite(Number(metadata.longitude)) + ? ` / ${Number(metadata.latitude).toFixed(6)}, ${Number(metadata.longitude).toFixed(6)}` + : ""; + const elevation = node.elevation_m == null ? "" : ` / ele ${Number(node.elevation_m).toFixed(1)} m`; + $("node-selection").textContent = `Selected ${node.id}${coordinates}${elevation}`; + $("selected-node-pin").classList.remove("is-hidden"); + $("selected-node-pin").querySelector(".selected-node-label").textContent = `SELECTED · ${node.id}`; + $("run-flow").disabled = false; + $("flow-status").textContent = `Selected ${node.id}; ready to run flow`; + $("ignition").value = node.id; + setRunState("Ignition selected.", node.id, state.result ? 100 : 20); + updateSelectedNodeOverlay(); +} + +function clearFlowField() { + for (const key of ["flowLines", "flowBoundary"]) { + const object = state[key]; + if (!object) continue; + state.world.remove(object); + object.geometry.dispose(); + object.material.dispose(); + state[key] = null; + } +} + +function updateSelectedNodeOverlay() { + const overlay = $("selected-node-pin"); + if (!overlay || !state.selectedNode || !state.activeCamera || !state.world) return; + const rect = $("building-scene").getBoundingClientRect(); + const projected = new THREE.Vector3(state.selectedNode.x, 0.8, -state.selectedNode.y); + state.world.localToWorld(projected); + projected.project(state.activeCamera); + const visible = projected.z >= -1 && projected.z <= 1; + if (!visible) { + overlay.classList.add("is-hidden"); + return; + } + overlay.classList.remove("is-hidden"); + overlay.style.left = `${(projected.x * 0.5 + 0.5) * rect.width}px`; + overlay.style.top = `${(-projected.y * 0.5 + 0.5) * rect.height}px`; +} + +function createGround() { + if (state.grid) { + state.world.remove(state.grid); + state.grid.geometry.dispose(); + state.grid.material.dispose(); + } + const size = Math.max(state.bounds.spanX, state.bounds.spanY) * 1.12; + const ground = new THREE.Mesh( + new THREE.PlaneGeometry(size, size), + new THREE.MeshStandardMaterial({color: 0x25302f, roughness: 1, metalness: 0}), + ); + ground.rotation.x = -Math.PI / 2; + ground.position.set(state.bounds.centerX, -0.2, -state.bounds.centerY); + state.world.add(ground); + state.grid = new THREE.GridHelper(size, 36, 0x52615d, 0x35403e); + state.grid.position.set(state.bounds.centerX, -0.16, -state.bounds.centerY); + state.world.add(state.grid); +} + +function createScene() { + if (!THREE) throw new Error("Three.js failed to load"); + const canvas = $("building-scene"); + state.renderer = new THREE.WebGLRenderer({canvas, antialias: true, logarithmicDepthBuffer: true}); + state.renderer.setPixelRatio(Math.min(window.devicePixelRatio || 1, 2)); + state.renderer.setClearColor(0x141b1b, 1); + state.renderer.outputColorSpace = THREE.SRGBColorSpace; + state.scene = new THREE.Scene(); + // The study area is already large; distance fog hides the far side of the city. + state.scene.fog = null; + state.world = new THREE.Group(); + state.scene.add(state.world); + state.scene.add(new THREE.HemisphereLight(0xc6d4d0, 0x121817, 2.1)); + const sun = new THREE.DirectionalLight(0xffe5c7, 2.4); + sun.position.set(-900, 1600, 1100); + state.scene.add(sun); + state.cameras.perspective = new THREE.PerspectiveCamera(48, 1, 0.5, 250000); + state.cameras.orthographic = new THREE.OrthographicCamera(-1000, 1000, 700, -700, 0.5, 250000); + state.activeCamera = state.cameras.perspective; + canvas.addEventListener("pointerdown", beginSceneGesture); + canvas.addEventListener("pointermove", moveSceneGesture); + canvas.addEventListener("pointerup", endSceneGesture); + canvas.addEventListener("pointercancel", endSceneGesture); + canvas.addEventListener("wheel", zoomScene, {passive: false}); + canvas.addEventListener("click", selectNodeAtPointer); + canvas.addEventListener("contextmenu", (event) => event.preventDefault()); + window.addEventListener("keydown", handleSceneKeydown); + window.addEventListener("resize", resizeScene); + resizeScene(); + requestAnimationFrame(renderFrame); +} +function calculateBounds() { let minX = Infinity; let maxX = -Infinity; let minY = Infinity; let maxY = -Infinity; - const includeSample = (x, y, z) => { - const sample = rawPoint(x, y, z); - minX = Math.min(minX, sample.x); - maxX = Math.max(maxX, sample.x); - minY = Math.min(minY, sample.y); - maxY = Math.max(maxY, sample.y); + const include = (x, y) => { + minX = Math.min(minX, x); + maxX = Math.max(maxX, x); + minY = Math.min(minY, y); + maxY = Math.max(maxY, y); }; - for (const node of state.network.nodes) includeSample(node.x, node.y, 0); + for (const node of state.network.nodes) include(Number(node.x), Number(node.y)); for (const building of state.buildings) { - const base = Number(building.min_height_m) || 0; - const top = Math.max(base, effectiveBuildingHeight(building)); - for (const [x, y] of building.polygon) { - includeSample(x, y, base); - includeSample(x, y, top); - } + for (const [x, y] of building.polygon || []) include(Number(x), Number(y)); } - const pad = 30; const spanX = Math.max(maxX - minX, 1); const spanY = Math.max(maxY - minY, 1); - const scale = Math.min((SCENE_WIDTH - 2 * pad) / spanX, (SCENE_HEIGHT - 2 * pad) / spanY) * state.camera.zoom; - const centerX = SCENE_WIDTH / 2 + state.camera.panX; - const centerY = SCENE_HEIGHT / 2 + state.camera.panY; - const centerRawX = (minX + maxX) / 2; - const centerRawY = (minY + maxY) / 2; - return (x, y, z = 0) => { - const raw = rawPoint(x, y, z); - return { - x: centerX + (raw.x - centerRawX) * scale, - y: centerY - (raw.y - centerRawY) * scale, - depth: raw.depth, - }; + state.bounds = { + minX, maxX, minY, maxY, spanX, spanY, + centerX: (minX + maxX) / 2, + centerY: (minY + maxY) / 2, + span: Math.max(spanX, spanY), }; + state.camera.targetX = state.bounds.centerX; + state.camera.targetZ = -state.bounds.centerY; + state.camera.radius = clamp(state.bounds.span * 1.25, MIN_CAMERA_RADIUS, MAX_CAMERA_RADIUS); } -function drawBuildings() { - const canvas = $("building-scene"); - const context = canvas.getContext("2d"); - context.clearRect(0, 0, SCENE_WIDTH, SCENE_HEIGHT); - if (!state.projection) return; - const ordered = state.buildings.map((building) => { - const base = Number(building.min_height_m) || 0; - const top = Math.max(base, effectiveBuildingHeight(building)); - const basePoints = building.polygon.map(([x, y]) => state.projection(x, y, base)); - const topPoints = building.polygon.map(([x, y]) => state.projection(x, y, top)); - const depth = basePoints.reduce((sum, point) => sum + point.depth, 0) / Math.max(basePoints.length, 1); - return {building, basePoints, topPoints, top, base, depth}; - }).sort((a, b) => b.depth - a.depth); - - for (const item of ordered) { - const {building, basePoints, topPoints, top, base} = item; - const hasHeight = top - base > 0.05; - context.beginPath(); - basePoints.forEach((point, index) => { - if (index === 0) context.moveTo(point.x, point.y); - else context.lineTo(point.x, point.y); - }); - context.closePath(); - context.fillStyle = hasHeight ? "#d8d3cb" : "#e6e2da"; - context.globalAlpha = hasHeight ? 0.9 : 0.62; - context.fill(); - context.strokeStyle = "#b5b0a8"; - context.lineWidth = 0.35; - context.stroke(); - if (hasHeight) { - for (let index = 0; index < topPoints.length; index += 1) { - const next = (index + 1) % topPoints.length; - context.beginPath(); - context.moveTo(basePoints[index].x, basePoints[index].y); - context.lineTo(basePoints[next].x, basePoints[next].y); - context.lineTo(topPoints[next].x, topPoints[next].y); - context.lineTo(topPoints[index].x, topPoints[index].y); - context.closePath(); - context.fillStyle = building.height_source === "footprint_only" ? "#c6c0b8" : "#b9b3aa"; - context.fill(); - context.stroke(); - } - context.beginPath(); - topPoints.forEach((point, index) => { - if (index === 0) context.moveTo(point.x, point.y); - else context.lineTo(point.x, point.y); - }); - context.closePath(); - context.fillStyle = building.height_source === "height_tag" ? "#b8b0a5" : "#cec7bd"; - context.fill(); - context.stroke(); - } +function updateCamera() { + const {yaw, pitch, radius, targetX, targetZ} = state.camera; + const target = new THREE.Vector3(targetX, 0, targetZ); + const horizontal = Math.cos(pitch) * radius; + const position = new THREE.Vector3( + targetX + Math.sin(yaw) * horizontal, + Math.sin(pitch) * radius, + targetZ + Math.cos(yaw) * horizontal, + ); + for (const camera of Object.values(state.cameras)) { + camera.position.copy(position); + camera.lookAt(target); } - context.globalAlpha = 1; + const aspect = Math.max(1, $("building-scene").clientWidth / Math.max(1, $("building-scene").clientHeight)); + state.cameras.perspective.aspect = aspect; + state.cameras.perspective.updateProjectionMatrix(); + const viewHeight = Math.max(100, radius * 0.9); + state.cameras.orthographic.left = -viewHeight * aspect; + state.cameras.orthographic.right = viewHeight * aspect; + state.cameras.orthographic.top = viewHeight; + state.cameras.orthographic.bottom = -viewHeight; + state.cameras.orthographic.updateProjectionMatrix(); } -function updateSceneGeometry() { - if (!state.network) return; - state.projection = createSceneProjection(); - const nodesById = new Map(state.network.nodes.map((node) => [node.id, node])); - for (const edge of state.network.edges) { - const line = state.edgeElements.get(edge.id); - if (!line) continue; - const start = state.projection(nodesById.get(edge.start).x, nodesById.get(edge.start).y); - const end = state.projection(nodesById.get(edge.end).x, nodesById.get(edge.end).y); - line.setAttribute("x1", start.x); - line.setAttribute("y1", start.y); - line.setAttribute("x2", end.x); - line.setAttribute("y2", end.y); - } - for (const node of state.network.nodes) { - const circle = state.nodeElements.get(node.id); - if (!circle) continue; - const point = state.projection(node.x, node.y); - circle.setAttribute("cx", point.x); - circle.setAttribute("cy", point.y); - } - drawBuildings(); +function resizeScene() { + if (!state.renderer) return; + const canvas = $("building-scene"); + const width = Math.max(1, canvas.clientWidth); + const height = Math.max(1, canvas.clientHeight); + state.renderer.setSize(width, height, false); + updateCamera(); } -function clamp(value, minimum, maximum) { - return Math.max(minimum, Math.min(maximum, value)); +function renderFrame() { + if (state.renderer && state.scene && state.activeCamera) state.renderer.render(state.scene, state.activeCamera); + updateSelectedNodeOverlay(); + requestAnimationFrame(renderFrame); } -function scenePoint(event) { - const canvas = $("building-scene"); - const rect = canvas.getBoundingClientRect(); - return { - x: (event.clientX - rect.left) * SCENE_WIDTH / rect.width, - y: (event.clientY - rect.top) * SCENE_HEIGHT / rect.height, - }; +function updateWorldScale() { + if (!state.world) return; + state.world.scale.y = state.verticalScale; + updateCamera(); } -function resetSceneView() { - state.camera = {yaw: -0.68, pitch: 0.62, zoom: 1, panX: 0, panY: 0}; - updateSceneGeometry(); - updateSceneSummary(); +function renderNetwork() { + calculateBounds(); + createGround(); + createBuildingMesh(); + createRoadLines(); + createNodePoints(); + createFireLines([]); + createIgnitionPoints([]); + updateWorldScale(); + $("map-message").textContent = "Click a junction to set ignition. WASD pan · arrows rotate · E/Q zoom."; } -function beginSceneGesture(event) { - if (event.button !== 0 && event.button !== 2) return; - const point = scenePoint(event); - state.gesture = { - pointerId: event.pointerId, - mode: event.shiftKey || event.button === 2 ? "rotate" : "pan", - x: point.x, - y: point.y, +function renderFlowField(flow) { + clearFlowField(); + const center = flow.center; + const samples = flow.samples || []; + const cellSize = Number(flow.cell_size_m) || 50; + const radius = Number(flow.radius_m) || 1; + const maxSpeed = Math.max(...samples.map((sample) => Number(sample.speed_mps) || 0), 0); + const sampleGrid = new Map( + samples.map((sample) => [`${Math.round(Number(sample.x_m) / cellSize)}:${Math.round(Number(sample.y_m) / cellSize)}`, sample]), + ); + const sampleAt = (x, y) => { + if (Math.hypot(x, y) > radius) return null; + return sampleGrid.get(`${Math.round(x / cellSize)}:${Math.round(y / cellSize)}`) || null; }; - event.currentTarget.setPointerCapture(event.pointerId); - event.currentTarget.classList.add("dragging"); - event.preventDefault(); -} - -function moveSceneGesture(event) { - if (!state.gesture || state.gesture.pointerId !== event.pointerId) return; - const point = scenePoint(event); - const deltaX = point.x - state.gesture.x; - const deltaY = point.y - state.gesture.y; - if (state.gesture.mode === "rotate") { - state.camera.yaw += deltaX * 0.01; - state.camera.pitch = clamp(state.camera.pitch + deltaY * 0.008, 0.18, 1.35); - } else { - state.camera.panX += deltaX; - state.camera.panY += deltaY; + const trace = (seedX, seedY, direction) => { + const points = []; + let x = seedX; + let y = seedY; + const stepSize = cellSize * 0.62; + const maxSteps = Math.min(100, Math.ceil(radius / stepSize) * 2 + 6); + for (let step = 0; step < maxSteps; step += 1) { + const sample = sampleAt(x, y); + if (!sample || Number(sample.speed_mps) <= 0.001) break; + points.push({x, y, sample}); + const speed = Number(sample.speed_mps); + x += direction * Number(sample.u_mps) / speed * stepSize; + y += direction * Number(sample.v_mps) / speed * stepSize; + } + return points; + }; + const positions = []; + const colors = []; + const addSegment = (x1, z1, x2, z2, color) => { + positions.push(x1, 4.0, z1, x2, 4.0, z2); + colors.push(color.r, color.g, color.b, color.r, color.g, color.b); + }; + const seedSpacing = cellSize * 3; + let streamlineCount = 0; + for (let seedY = -radius + cellSize; seedY <= radius - cellSize; seedY += seedSpacing) { + for (let seedX = -radius + cellSize; seedX <= radius - cellSize; seedX += seedSpacing) { + if (Math.hypot(seedX, seedY) > radius) continue; + const backwards = trace(seedX, seedY, -1).reverse(); + const forwards = trace(seedX, seedY, 1); + const path = backwards.concat(forwards.slice(1)); + if (path.length < 2) continue; + streamlineCount += 1; + for (let index = 1; index < path.length; index += 1) { + const previous = path[index - 1]; + const current = path[index]; + const speed = Number(current.sample.speed_mps) || 0; + const intensity = maxSpeed ? speed / maxSpeed : 0; + const color = new THREE.Color().setHSL(0.53 - 0.12 * intensity, 0.82, 0.43 + 0.15 * intensity); + addSegment( + Number(center.x) + previous.x, + -(Number(center.y) + previous.y), + Number(center.x) + current.x, + -(Number(center.y) + current.y), + color, + ); + } + } } - state.gesture.x = point.x; - state.gesture.y = point.y; - updateSceneGeometry(); - updateSceneSummary(); - event.preventDefault(); -} + const geometry = new THREE.BufferGeometry(); + geometry.setAttribute("position", new THREE.Float32BufferAttribute(positions, 3)); + geometry.setAttribute("color", new THREE.Float32BufferAttribute(colors, 3)); + state.flowLines = new THREE.LineSegments( + geometry, + new THREE.LineBasicMaterial({vertexColors: true, transparent: true, opacity: 0.92, depthTest: false}), + ); + state.world.add(state.flowLines); -function endSceneGesture(event) { - if (!state.gesture || state.gesture.pointerId !== event.pointerId) return; - if (event.currentTarget.hasPointerCapture(event.pointerId)) { - event.currentTarget.releasePointerCapture(event.pointerId); + const boundaryPoints = []; + for (let index = 0; index < 64; index += 1) { + const a = index / 64 * Math.PI * 2; + const b = (index + 1) / 64 * Math.PI * 2; + boundaryPoints.push( + Number(center.x) + Math.cos(a) * radius, 2.8, -(Number(center.y) + Math.sin(a) * radius), + Number(center.x) + Math.cos(b) * radius, 2.8, -(Number(center.y) + Math.sin(b) * radius), + ); } - state.gesture = null; - event.currentTarget.classList.remove("dragging"); + const boundaryGeometry = new THREE.BufferGeometry(); + boundaryGeometry.setAttribute("position", new THREE.Float32BufferAttribute(boundaryPoints, 3)); + state.flowBoundary = new THREE.LineSegments( + boundaryGeometry, + new THREE.LineBasicMaterial({color: 0x167a8a, transparent: true, opacity: 0.6, depthTest: false}), + ); + state.world.add(state.flowBoundary); + $("flow-status").textContent = `${flow.node_id}: ${streamlineCount.toLocaleString()} flow lines / ${radius.toFixed(0)} m radius / max ${maxSpeed.toFixed(1)} m/s`; } -function zoomScene(event) { - event.preventDefault(); - const cursor = scenePoint(event); - const oldZoom = state.camera.zoom; - const nextZoom = clamp(oldZoom * Math.exp(-event.deltaY * 0.001), 0.25, 8); - const factor = nextZoom / oldZoom; - state.camera.zoom = nextZoom; - state.camera.panX = cursor.x - (cursor.x - state.camera.panX) * factor; - state.camera.panY = cursor.y - (cursor.y - state.camera.panY) * factor; - updateSceneGeometry(); - updateSceneSummary(); +async function runFlowField() { + if (!state.selectedNode) { + $("flow-status").textContent = "Select a node first"; + return; + } + const button = $("run-flow"); + button.disabled = true; + $("flow-status").textContent = "Computing local urban flow…"; + const body = { + node_id: state.selectedNode.id, + radius_m: Number($("flow-radius").value), + cell_size_m: Number($("urban-wind-cell").value), + wind_direction_deg: Number($("wind-direction").value), + wind_speed_mps: Number($("wind-speed").value), + }; + try { + const response = await fetch("/api/flow", { + method: "POST", + headers: {"Content-Type": "application/json"}, + body: JSON.stringify(body), + }); + const payload = await response.json(); + if (!response.ok) throw new Error(payload.error || "Flow simulation failed"); + renderFlowField(payload.flow); + } catch (error) { + $("flow-status").textContent = `Flow failed: ${error.message}`; + } finally { + button.disabled = false; + focusSceneCanvas(); + } } -function renderNetwork() { - const svg = $("network-map"); - svg.replaceChildren(); - state.edgeElements.clear(); - state.nodeElements.clear(); - const nodesById = new Map(state.network.nodes.map((node) => [node.id, node])); - const edgeLayer = makeSvgElement("g", {"aria-hidden": "true"}); - const nodeLayer = makeSvgElement("g", {"aria-label": "network junctions"}); - for (const edge of state.network.edges) { - const line = makeSvgElement("line", {class: "network-link"}); - edgeLayer.appendChild(line); - state.edgeElements.set(edge.id, line); +function createFireLines(arrivals) { + if (state.fireLines) { + state.world.remove(state.fireLines); + state.fireLines.geometry.dispose(); + state.fireLines.material.dispose(); } - for (const node of state.network.nodes) { - const circle = makeSvgElement("circle", {r: 1.5, class: "map-node"}); - circle.setAttribute("tabindex", "0"); - circle.setAttribute("aria-label", `Use node ${node.id} as ignition`); - const selectNode = () => { - $("ignition").value = node.id; - for (const item of state.nodeElements.values()) item.classList.remove("selected"); - circle.classList.add("selected"); - setRunState("Ignition selected.", node.id, state.result ? 100 : 20); - }; - circle.addEventListener("click", selectNode); - circle.addEventListener("keydown", (event) => { - if (event.key === "Enter" || event.key === " ") selectNode(); - }); - nodeLayer.appendChild(circle); - state.nodeElements.set(node.id, circle); + const nodesById = new Map(state.network.nodes.map((node) => [node.id, node])); + const segments = []; + const colors = []; + for (const arrival of arrivals) { + const edge = state.network.edges.find((item) => item.id === arrival.edge_id); + if (!edge) continue; + const start = nodesById.get(edge.start); + const end = nodesById.get(edge.end); + if (!start || !end) continue; + segments.push(start.x, 1.7, -start.y, end.x, 1.7, -end.y); + const color = colorForScore(state.result?.edge_scores?.[edge.id] ?? 0.5); + colors.push(color.r, color.g, color.b, color.r, color.g, color.b); } - svg.append(edgeLayer, nodeLayer); - updateSceneGeometry(); - $("map-message").textContent = "Click a junction to set ignition."; + const geometry = new THREE.BufferGeometry(); + geometry.setAttribute("position", new THREE.Float32BufferAttribute(segments, 3)); + geometry.setAttribute("color", new THREE.Float32BufferAttribute(colors, 3)); + state.fireLines = new THREE.LineSegments( + geometry, + new THREE.LineBasicMaterial({vertexColors: true, transparent: true, opacity: 1}), + ); + state.world.add(state.fireLines); } -function colorForScore(score) { - const intensity = Math.max(0, Math.min(1, Number(score) || 0)); - const red = 180 + Math.round(intensity * 55); - const green = 208 - Math.round(intensity * 150); - const blue = 197 - Math.round(intensity * 175); - return `rgb(${red}, ${green}, ${blue})`; +function createIgnitionPoints(nodeIds) { + if (state.ignitionPoints) { + state.world.remove(state.ignitionPoints); + state.ignitionPoints.geometry.dispose(); + state.ignitionPoints.material.dispose(); + } + const nodes = nodeIds.map(networkNode).filter(Boolean); + const positions = new Float32Array(nodes.length * 3); + nodes.forEach((node, index) => positions.set([node.x, 3.2, -node.y], index * 3)); + const geometry = new THREE.BufferGeometry(); + geometry.setAttribute("position", new THREE.BufferAttribute(positions, 3)); + state.ignitionPoints = new THREE.Points( + geometry, + new THREE.PointsMaterial({color: 0xff6b46, size: 13, sizeAttenuation: true}), + ); + state.world.add(state.ignitionPoints); } function renderResult(result) { state.result = result; - const arrivals = new Map(result.edge_arrivals.map((arrival) => [arrival.edge_id, arrival])); - for (const [edgeId, line] of state.edgeElements) { - const arrival = arrivals.get(edgeId); - line.classList.toggle("active", Boolean(arrival)); - if (arrival) { - line.style.stroke = colorForScore(result.edge_scores[edgeId]); - line.style.opacity = "0.95"; - } else { - line.style.stroke = "#b7b8b2"; - line.style.opacity = "0.55"; - } - } - for (const [nodeId, circle] of state.nodeElements) { - circle.classList.toggle("selected", result.ignition_nodes.includes(nodeId)); - } + state.burningBuildingIds = new Set( + (result.burning_buildings || []).map((building) => building.building_id), + ); + createBuildingMesh(); + createFireLines(result.edge_arrivals || []); + createIgnitionPoints(result.ignition_nodes || []); $("reached-nodes").textContent = Object.keys(result.arrival_times).length.toLocaleString(); $("activated-links").textContent = result.edge_arrivals.length.toLocaleString(); + $("burning-buildings").textContent = state.burningBuildingIds.size.toLocaleString(); $("result-horizon").textContent = `${Number(result.horizon_minutes).toFixed(1)} min`; + const wind = result.urban_wind || {}; + $("wind-model-status").textContent = wind.enabled + ? `${wind.name} / ${Number(wind.cell_size_m).toFixed(0)} m grid / ${Number(wind.obstacle_cells).toLocaleString()} obstacle cells` + : "Urban wind disabled"; const rows = $("hotspot-rows"); rows.replaceChildren(); + const arrivals = new Map(result.edge_arrivals.map((arrival) => [arrival.edge_id, arrival])); const ranked = [...arrivals.keys()] .map((edgeId) => [edgeId, result.edge_scores[edgeId] ?? 0]) .sort((a, b) => { @@ -398,6 +661,8 @@ async function runScenario(event) { wind_direction_deg: Number($("wind-direction").value), wind_speed_mps: Number($("wind-speed").value), moisture: Number($("moisture").value), + urban_wind_enabled: $("urban-wind").checked, + urban_wind_cell_size_m: Number($("urban-wind-cell").value), }; try { const response = await fetch("/api/simulate", { @@ -412,6 +677,7 @@ async function runScenario(event) { setRunState("Simulation failed.", error.message, 12); } finally { button.disabled = false; + focusSceneCanvas(); } } @@ -421,23 +687,155 @@ function downloadResult() { const url = URL.createObjectURL(blob); const link = document.createElement("a"); link.href = url; - link.download = "polatli-fire-spread-result.json"; + link.download = "manhattan-fire-spread-result.json"; link.click(); URL.revokeObjectURL(url); + focusSceneCanvas(); } function updateSceneSummary() { const mode = $("view-mode").value; const heightText = state.heightMode === "massing" ? "3 m fallback enabled" : "source heights only"; const yawDegrees = Math.round(((state.camera.yaw * 180 / Math.PI) % 360 + 360) % 360); - $("scene-summary").textContent = `${mode} / ${state.camera.zoom.toFixed(2)}× zoom / ${state.verticalScale}× vertical / ${heightText} / yaw ${yawDegrees}°`; + const radiusText = state.camera.radius >= 1000 + ? `${(state.camera.radius / 1000).toFixed(1)} km radius` + : `${state.camera.radius.toFixed(0)} m radius`; + $("scene-summary").textContent = `${mode} / ${radiusText} / ${state.verticalScale}x vertical / ${heightText} / yaw ${yawDegrees} deg`; } function setSceneMode() { state.heightMode = $("height-mode").value; state.verticalScale = Number($("vertical-scale").value); - updateSceneGeometry(); + if (state.world) { + createBuildingMesh(); + updateWorldScale(); + } + state.activeCamera = state.cameras[$("view-mode").value] || state.cameras.perspective; updateSceneSummary(); + focusSceneCanvas(); +} + +function resetSceneView() { + calculateBounds(); + state.camera.yaw = -0.68; + state.camera.pitch = 0.7; + updateCamera(); + updateSceneSummary(); + focusSceneCanvas(); +} + +function beginSceneGesture(event) { + if (event.button !== 0 && event.button !== 2) return; + state.gesture = { + pointerId: event.pointerId, + mode: event.shiftKey || event.button === 2 ? "pan" : "orbit", + x: event.clientX, + y: event.clientY, + moved: false, + }; + state.suppressClick = false; + event.currentTarget.setPointerCapture(event.pointerId); + event.currentTarget.classList.add("dragging"); + event.preventDefault(); +} + +function moveSceneGesture(event) { + if (!state.gesture || state.gesture.pointerId !== event.pointerId) return; + const deltaX = event.clientX - state.gesture.x; + const deltaY = event.clientY - state.gesture.y; + if (Math.hypot(deltaX, deltaY) > 3) state.gesture.moved = true; + if (state.gesture.mode === "orbit") { + state.camera.yaw += deltaX * 0.008; + state.camera.pitch = clamp(state.camera.pitch + deltaY * 0.006, 0.12, 1.42); + } else { + const panScale = state.camera.radius * 0.0015; + state.camera.targetX -= deltaX * panScale; + state.camera.targetZ += deltaY * panScale; + } + state.gesture.x = event.clientX; + state.gesture.y = event.clientY; + updateCamera(); + updateSceneSummary(); + event.preventDefault(); +} + +function endSceneGesture(event) { + if (!state.gesture || state.gesture.pointerId !== event.pointerId) return; + const moved = state.gesture.moved; + if (event.currentTarget.hasPointerCapture(event.pointerId)) event.currentTarget.releasePointerCapture(event.pointerId); + state.gesture = null; + event.currentTarget.classList.remove("dragging"); + if (moved) { + state.suppressClick = true; + window.setTimeout(() => { state.suppressClick = false; }, 0); + } +} + +function zoomScene(event) { + event.preventDefault(); + state.camera.radius = clamp( + state.camera.radius * Math.exp(event.deltaY * 0.001), + MIN_CAMERA_RADIUS, + MAX_CAMERA_RADIUS, + ); + updateCamera(); + updateSceneSummary(); +} + +function panCamera(forward, right) { + const amount = clamp(state.camera.radius * 0.04, 20, 1200); + state.camera.targetX += (-Math.sin(state.camera.yaw) * forward + Math.cos(state.camera.yaw) * right) * amount; + state.camera.targetZ += (-Math.cos(state.camera.yaw) * forward - Math.sin(state.camera.yaw) * right) * amount; +} + +function handleSceneKeydown(event) { + if (!state.bounds || !state.activeCamera) return; + const activeElement = document.activeElement; + const editingText = activeElement && ( + ["INPUT", "TEXTAREA"].includes(activeElement.tagName) + || activeElement.isContentEditable + ); + if (editingText) return; + const key = event.key.toLowerCase(); + if (key === "w") panCamera(1, 0); + else if (key === "s") panCamera(-1, 0); + else if (key === "a") panCamera(0, -1); + else if (key === "d") panCamera(0, 1); + else if (key === "e") state.camera.radius = clamp(state.camera.radius * 0.84, MIN_CAMERA_RADIUS, MAX_CAMERA_RADIUS); + else if (key === "q") state.camera.radius = clamp(state.camera.radius * 1.19, MIN_CAMERA_RADIUS, MAX_CAMERA_RADIUS); + else if (event.key === "ArrowLeft") state.camera.yaw -= 0.08; + else if (event.key === "ArrowRight") state.camera.yaw += 0.08; + else if (event.key === "ArrowUp") state.camera.pitch = clamp(state.camera.pitch - 0.06, 0.12, 1.42); + else if (event.key === "ArrowDown") state.camera.pitch = clamp(state.camera.pitch + 0.06, 0.12, 1.42); + else return; + updateCamera(); + updateSceneSummary(); + focusSceneCanvas(); + event.preventDefault(); +} + +function selectNodeAtPointer(event) { + if (!state.nodePoints || state.gesture || state.suppressClick || event.button !== 0) return; + const rect = $("building-scene").getBoundingClientRect(); + const clickX = event.clientX - rect.left; + const clickY = event.clientY - rect.top; + const projected = new THREE.Vector3(); + let closestNode = null; + let closestDistance = 24; + for (const node of state.network.nodes) { + projected.set(node.x, 0.7, -node.y); + state.world.localToWorld(projected); + projected.project(state.activeCamera); + if (projected.z < -1 || projected.z > 1) continue; + const screenX = (projected.x * 0.5 + 0.5) * rect.width; + const screenY = (-projected.y * 0.5 + 0.5) * rect.height; + const distance = Math.hypot(screenX - clickX, screenY - clickY); + if (distance < closestDistance) { + closestDistance = distance; + closestNode = node; + } + } + if (closestNode) setSelectedNode(closestNode.id); } async function initialize() { @@ -452,29 +850,29 @@ async function initialize() { state.network = network; state.buildings = buildings.buildings || []; setDatasetMetadata(status); + createScene(); renderNetwork(); + setSelectedNode(status.default_ignition); setSceneMode(); setRunState("Ready.", "select ignition and run", 35); } catch (error) { setRunState("Dataset unavailable.", error.message, 12); - $("map-message").textContent = "Could not load network or building geometry."; + $("map-message").textContent = "Could not load the 3D network or OSM building geometry."; } } $("scenario-form").addEventListener("submit", runScenario); $("use-center").addEventListener("click", () => { if (state.status) $("ignition").value = state.status.default_ignition; + focusSceneCanvas(); }); $("view-mode").addEventListener("change", setSceneMode); $("height-mode").addEventListener("change", setSceneMode); $("vertical-scale").addEventListener("change", setSceneMode); +$("urban-wind").addEventListener("change", focusSceneCanvas); +$("urban-wind-cell").addEventListener("change", focusSceneCanvas); $("download-result").addEventListener("click", downloadResult); -const sceneCanvas = $("building-scene"); -sceneCanvas.addEventListener("pointerdown", beginSceneGesture); -sceneCanvas.addEventListener("pointermove", moveSceneGesture); -sceneCanvas.addEventListener("pointerup", endSceneGesture); -sceneCanvas.addEventListener("pointercancel", endSceneGesture); -sceneCanvas.addEventListener("wheel", zoomScene, {passive: false}); -sceneCanvas.addEventListener("contextmenu", (event) => event.preventDefault()); $("reset-view").addEventListener("click", resetSceneView); +$("run-flow").addEventListener("click", runFlowField); +$("flow-radius").addEventListener("change", focusSceneCanvas); initialize(); diff --git a/web/index.html b/web/index.html index afce82f..3198282 100644 --- a/web/index.html +++ b/web/index.html @@ -3,7 +3,7 @@ - Urban Fire Spread / Polatlı + Urban Fire Spread / Manhattan Island 3D @@ -11,7 +11,7 @@

URBAN FIRE SPREAD

-

Polatlı street network

+

Manhattan Island 3D street network

Loading dataset
@@ -50,13 +50,28 @@

Run a propagation

+
+ + +
Dataset is loading.
-

The model uses the downloaded OSM road graph and explicit heuristic modifiers. It is for scenario exploration, not life-safety decisions.

+

The experimental wind layer rasterizes OSM building massing to steer and slow the prescribed wind. It is for scenario exploration, not life-safety decisions.

@@ -68,22 +83,24 @@

Advancing front

network activated link + burning building + urban flow line ignition
- Loading building layer… + + + Select a node to run flow + Loading 3D scene…
- - +
No node selected
+ +
Loading network geometry…
-

2.5D scene from projected OSM geometry. Wheel to zoom, drag to pan, Shift-drag or right-drag to rotate, and use Reset view to return to the fitted scene.

+
+

3D OSM scene. Select a node, set wind speed/direction, then run flow to draw the local urban vector field. Wheel or E/Q to zoom, drag to orbit, Shift-drag/right-drag or WASD to pan, and use arrow keys to rotate.

@@ -116,6 +149,7 @@

Scenario result

Reached nodes
Activated links
+
Burning buildings
Horizon
@@ -141,10 +175,14 @@

Source record

Source
License
Coverage
+
Terrain
+
Wind model

Street geometry © OpenStreetMap contributors. Data is retrieved through Overpass and preserved locally with provenance.

+ + diff --git a/web/styles.css b/web/styles.css index 2b064e9..aed948b 100644 --- a/web/styles.css +++ b/web/styles.css @@ -117,6 +117,7 @@ h2 { margin-bottom: 0; font-size: 1.1rem; letter-spacing: -0.01em; } } .compact-control select:focus { outline: 2px solid var(--fire-soft); border-color: var(--fire); } .scene-summary { margin-left: auto; color: var(--muted); font-size: 0.7rem; } +.flow-status { color: var(--muted); font-size: 0.7rem; } .compact-button { min-height: 31px; padding: 5px 9px; } label { @@ -142,6 +143,9 @@ input:focus { outline: 2px solid var(--fire-soft); border-color: var(--fire); } .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 10px; } .field-grid label { margin-bottom: 12px; } +.model-options { display: flex; align-items: center; justify-content: space-between; gap: 0.9rem; margin-top: 0.1rem; padding: 0.65rem 0.75rem; border: 1px solid var(--line); background: rgba(255,255,255,0.03); } +.check-control { display: flex; align-items: center; gap: 0.5rem; margin: 0; color: var(--ink); font-size: 0.74rem; } +.check-control input { width: auto; min-height: 0; accent-color: var(--fire); } .button { min-height: 38px; @@ -174,7 +178,7 @@ input:focus { outline: 2px solid var(--fire-soft); border-color: var(--fire); } background: #fafaf8; border: 1px solid var(--line); } -#building-scene, #network-map { +#building-scene { position: absolute; inset: 0; display: block; @@ -185,12 +189,60 @@ input:focus { outline: 2px solid var(--fire-soft); border-color: var(--fire); } #building-scene { cursor: grab; touch-action: none; } #building-scene.dragging { cursor: grabbing; } #building-scene { z-index: 0; } -#network-map { z-index: 1; pointer-events: none; } -#network-map .map-node { pointer-events: auto; } -.network-link { fill: none; stroke: var(--network); stroke-width: 0.8; stroke-linecap: round; } -.network-link.active { stroke-width: 2.4; } -.map-node { fill: #fff; stroke: #9d9e98; stroke-width: 0.65; cursor: crosshair; } -.map-node:hover, .map-node.selected { fill: var(--fire); stroke: var(--fire-dark); stroke-width: 1.5; } +#building-scene:focus { outline: 2px solid var(--fire); outline-offset: -2px; } +.node-selection { + position: absolute; + top: 14px; + right: 14px; + max-width: min(420px, calc(100% - 28px)); + padding: 7px 9px; + color: #f4f4ef; + background: rgba(20, 27, 27, 0.9); + border: 1px solid rgba(214, 213, 207, 0.55); + font-size: 0.72rem; + line-height: 1.35; + pointer-events: none; +} +.selected-node-pin { + position: absolute; + z-index: 4; + display: flex; + flex-direction: column; + align-items: center; + pointer-events: none; + transform: translate(-50%, -100%); + filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.55)); +} +.selected-node-label { + max-width: 190px; + overflow: hidden; + padding: 3px 7px; + color: #fff; + background: #9f2019; + border: 2px solid #ffd166; + border-radius: 999px; + font-size: 0.68rem; + font-weight: 900; + line-height: 1.2; + text-overflow: ellipsis; + white-space: nowrap; +} +.selected-node-head { + width: 18px; + height: 18px; + margin-top: 3px; + background: #ff3b30; + border: 3px solid #fff3b0; + border-radius: 50%; + box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.42), 0 0 18px rgba(255, 59, 48, 0.95); +} +.selected-node-stem { + width: 4px; + height: 48px; + background: linear-gradient(#ff3b30, #ffd166); + border-radius: 999px; +} +.selected-node-pin.is-hidden { display: none; } .map-message { position: absolute; left: 16px; @@ -206,6 +258,8 @@ input:focus { outline: 2px solid var(--fire-soft); border-color: var(--fire); } .legend span { display: inline-flex; align-items: center; gap: 5px; } .swatch { display: inline-block; width: 13px; height: 3px; background: var(--network); } .fire-swatch { background: var(--fire); } +.building-fire-swatch { background: #ff2b2b; height: 10px; } +.flow-swatch { background: #167a8a; height: 4px; } .ignition-swatch { width: 8px; height: 8px; border: 2px solid var(--fire-dark); border-radius: 50%; background: var(--fire); } .summary-grid { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 18px; } @@ -241,7 +295,7 @@ dd { margin: 0; overflow-wrap: anywhere; font-size: 0.75rem; } .control-panel { order: 1; } .results-panel { order: 3; } .data-panel { order: 4; } - .map-frame, #network-map, #building-scene { min-height: 430px; } + .map-frame, #building-scene { min-height: 430px; } .inline-heading { display: block; } .legend { justify-content: flex-start; margin-top: 10px; } }